From 75a07360b437b5b2dbed7d4943cdc9998fc06e4e Mon Sep 17 00:00:00 2001 From: Michele Rastelli Date: Thu, 16 Dec 2021 10:51:49 +0100 Subject: [PATCH 01/10] updated test coverage settings --- arangodb-spark-commons/pom.xml | 2 +- integration-tests/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arangodb-spark-commons/pom.xml b/arangodb-spark-commons/pom.xml index fdd10a14..cfb02f41 100644 --- a/arangodb-spark-commons/pom.xml +++ b/arangodb-spark-commons/pom.xml @@ -39,7 +39,7 @@ report-aggregate - prepare-package + verify report-aggregate diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index b2574bcd..e6f185ab 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -41,7 +41,7 @@ report-aggregate - prepare-package + verify report-aggregate From 42fbb25b2fdee1f039314665505dae3724be8056 Mon Sep 17 00:00:00 2001 From: Michele Rastelli Date: Fri, 17 Dec 2021 23:24:08 +0100 Subject: [PATCH 02/10] imdb demo --- demo/README.md | 114 +- demo/docker/import.sh | 8 - demo/docker/import/edges.jsonl | 106615 +++++++++++++++++++++++++ demo/docker/import/nodes.jsonl | 62996 +++++++++++++++ demo/docker/import/users/users.json | 1000 - demo/docker/server.pem | 60 - demo/docker/start_spark_2.4.sh | 44 - demo/docker/start_spark_3.1.sh | 4 + demo/src/main/scala/Demo.scala | 192 +- demo/src/main/scala/Schemas.scala | 44 + demo/src/test/resources/log4j.xml | 24 + 11 files changed, 169832 insertions(+), 1269 deletions(-) delete mode 100755 demo/docker/import.sh create mode 100644 demo/docker/import/edges.jsonl create mode 100644 demo/docker/import/nodes.jsonl delete mode 100644 demo/docker/import/users/users.json delete mode 100644 demo/docker/server.pem delete mode 100755 demo/docker/start_spark_2.4.sh create mode 100644 demo/src/main/scala/Schemas.scala create mode 100644 demo/src/test/resources/log4j.xml diff --git a/demo/README.md b/demo/README.md index 1bfc4164..0dff41a7 100644 --- a/demo/README.md +++ b/demo/README.md @@ -1,92 +1,19 @@ # ArangoDB Spark Datasource Demo -Set ArangoDB Spark Datasource version environment variable: +Set environment variables: ```shell export ARANGO_SPARK_VERSION=1.0.0 ``` -Set Scala version: - -```shell -# Scala 2.11 is only supported by Spark 2.4 -export SCALA_VERSION=2.11 - -# Scala 2.12 is supported by both Spark 2.4 and 3.1 -export SCALA_VERSION=2.12 -``` - -Start ArangoDB cluster: +Start ArangoDB cluster with docker: ```shell STARTER_MODE=cluster ./docker/start_db.sh ``` -Import users sample data: - -```shell -./docker/import.sh -``` - -## Spark 2.4 - -Start Spark cluster: - -```shell -./docker/start_spark_2.4.sh -``` - -Test the Spark application in embedded mode: -```shell -mvn -Pspark-2.4 -Pscala-$SCALA_VERSION test -``` - -Package the application: -```shell -mvn -Pspark-2.4 -Pscala-$SCALA_VERSION -DskipTests=true package -``` - -Run Spark Shell: - -```shell -docker run -it --rm \ - -v $(pwd)/docker/.ivy2:/opt/bitnami/spark/.ivy2 \ - --network arangodb \ - docker.io/bitnami/spark:2.4.6 \ - ./bin/spark-shell --master spark://spark-master:7077 \ - --packages="com.arangodb:arangodb-spark-datasource-2.4_$SCALA_VERSION:$ARANGO_SPARK_VERSION" -``` - -Run sample code: - -```scala -val options = Map("user" -> "root", "password" -> "test", "endpoints" -> "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549") -val usersDF = spark.read.format("com.arangodb.spark").options(options + ("table" -> "users")).load() -usersDF.show() -usersDF.printSchema() -usersDF.filter(col("name.first") === "Prudence").filter(col("birthday") === "1944-06-19").show() - -// Spark SQL -usersDF.createOrReplaceTempView("users") -val californians = spark.sql("SELECT * FROM users WHERE contact.address.state = 'CA'") -californians.show() -californians.write.format("com.arangodb.spark").mode(org.apache.spark.sql.SaveMode.Overwrite).options(options + ("table" -> "californians", "confirm.truncate" -> "true")).save() -``` - -Submit demo program: - -```shell -docker run -it --rm \ - -v $(pwd):/demo \ - -v $(pwd)/docker/.ivy2:/opt/bitnami/spark/.ivy2 \ - --network arangodb \ - docker.io/bitnami/spark:2.4.6 \ - ./bin/spark-submit --master spark://spark-master:7077 \ - --packages="com.arangodb:arangodb-spark-datasource-2.4_$SCALA_VERSION:$ARANGO_SPARK_VERSION" \ - --class Demo /demo/target/demo-$ARANGO_SPARK_VERSION.jar -``` - -## Spark 3.1 +The deployed cluster will be accessible at [http://172.17.0.1:8529](http://172.17.0.1:8529) with username `root` and +password `test`. Start Spark cluster: @@ -96,39 +23,12 @@ Start Spark cluster: Test the Spark application in embedded mode: ```shell -mvn -Pspark-3.1 -Pscala-$SCALA_VERSION test +mvn -Pspark-3.1 -Pscala-2.12 test ``` Package the application: ```shell -mvn -Pspark-3.1 -Pscala-$SCALA_VERSION -DskipTests=true package -``` - -Run Spark Shell: - -```shell -docker run -it --rm \ - -v $(pwd)/docker/.ivy2:/opt/bitnami/spark/.ivy2 \ - --network arangodb \ - docker.io/bitnami/spark:3.1.2 \ - ./bin/spark-shell --master spark://spark-master:7077 \ - --packages="com.arangodb:arangodb-spark-datasource-3.1_$SCALA_VERSION:$ARANGO_SPARK_VERSION" -``` - -Run sample code: - -```scala -val options = Map("user" -> "root", "password" -> "test", "endpoints" -> "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549") -val usersDF = spark.read.format("com.arangodb.spark").options(options + ("table" -> "users")).load() -usersDF.show() -usersDF.printSchema() -usersDF.filter(col("name.first") === "Prudence").filter(col("birthday") === "1944-06-19").show() - -// Spark SQL -usersDF.createOrReplaceTempView("users") -val californians = spark.sql("SELECT * FROM users WHERE contact.address.state = 'CA'") -californians.show() -californians.write.format("com.arangodb.spark").mode(org.apache.spark.sql.SaveMode.Overwrite).options(options + ("table" -> "californians", "confirmTruncate" -> "true")).save() +mvn -Pspark-3.1 -Pscala-2.12 -DskipTests=true package ``` Submit demo program: @@ -140,6 +40,6 @@ docker run -it --rm \ --network arangodb \ docker.io/bitnami/spark:3.1.2 \ ./bin/spark-submit --master spark://spark-master:7077 \ - --packages="com.arangodb:arangodb-spark-datasource-3.1_$SCALA_VERSION:$ARANGO_SPARK_VERSION" \ + --packages="com.arangodb:arangodb-spark-datasource-3.1_2.12:$ARANGO_SPARK_VERSION" \ --class Demo /demo/target/demo-$ARANGO_SPARK_VERSION.jar ``` diff --git a/demo/docker/import.sh b/demo/docker/import.sh deleted file mode 100755 index 039c2313..00000000 --- a/demo/docker/import.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -LOCATION=$(pwd)/$(dirname "$0") - -curl -u root:test http://172.17.0.1:8529/_api/collection -d '{"name": "users", "numberOfShards": 6}' -docker run --rm -v "$LOCATION"/import:/import arangodb \ - arangoimport --server.endpoint=http+tcp://172.17.0.1:8529 --server.password=test \ - --file "/import/users/users.json" --type json --collection "users" diff --git a/demo/docker/import/edges.jsonl b/demo/docker/import/edges.jsonl new file mode 100644 index 00000000..c828b91b --- /dev/null +++ b/demo/docker/import/edges.jsonl @@ -0,0 +1,106615 @@ +{"$label":"DIRECTED","_key":"113671","_from":"1062","_to":"66986"} +{"$label":"DIRECTED","_key":"104258","_from":"1062","_to":"61341"} +{"$label":"DIRECTED","_key":"93529","_from":"1062","_to":"55058"} +{"$label":"DIRECTED","_key":"72660","_from":"1062","_to":"43788"} +{"$label":"DIRECTED","_key":"65415","_from":"1062","_to":"40561"} +{"$label":"DIRECTED","_key":"65264","_from":"1062","_to":"40511"} +{"$label":"DIRECTED","_key":"64834","_from":"1062","_to":"40332"} +{"$label":"DIRECTED","_key":"62747","_from":"1062","_to":"39448"} +{"$label":"DIRECTED","_key":"59463","_from":"1062","_to":"37556"} +{"$label":"DIRECTED","_key":"54787","_from":"1062","_to":"35055"} +{"$label":"DIRECTED","_key":"54679","_from":"1062","_to":"35014"} +{"$label":"DIRECTED","_key":"51237","_from":"1062","_to":"33417"} +{"$label":"DIRECTED","_key":"48326","_from":"1062","_to":"31735"} +{"$label":"DIRECTED","_key":"44882","_from":"1062","_to":"29854"} +{"$label":"DIRECTED","_key":"37806","_from":"1062","_to":"25635"} +{"$label":"DIRECTED","_key":"28493","_from":"1062","_to":"20373"} +{"$label":"DIRECTED","_key":"28082","_from":"1062","_to":"20133"} +{"$label":"DIRECTED","_key":"12230","_from":"1062","_to":"9578"} +{"$label":"DIRECTED","_key":"8285","_from":"1062","_to":"6789"} +{"$label":"DIRECTED","_key":"4463","_from":"1062","_to":"3810"} +{"$label":"DIRECTED","_key":"1458","_from":"1062","_to":"1234"} +{"$label":"DIRECTED","_key":"1410","_from":"1062","_to":"1190"} +{"$label":"DIRECTED","_key":"1278","_from":"1062","_to":"1061"} +{"$label":"ACTS_IN","name":"Ben Shockley","type":"Role","_key":"113665","_from":"1062","_to":"66986"} +{"$label":"ACTS_IN","name":"Philo Beddoe","type":"Role","_key":"111406","_from":"1062","_to":"65785"} +{"$label":"ACTS_IN","name":"Lieutenant Speer","type":"Role","_key":"110643","_from":"1062","_to":"65366"} +{"$label":"ACTS_IN","name":"Philo Beddoe","type":"Role","_key":"104323","_from":"1062","_to":"61379"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"104254","_from":"1062","_to":"61341"} +{"$label":"ACTS_IN","name":"Joe Kidd","type":"Role","_key":"102271","_from":"1062","_to":"60181"} +{"$label":"ACTS_IN","name":"Walt Kowalski","type":"Role","_key":"93511","_from":"1062","_to":"55058"} +{"$label":"ACTS_IN","name":"Hogan","type":"Role","_key":"72742","_from":"1062","_to":"43825"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"72656","_from":"1062","_to":"43788"} +{"$label":"ACTS_IN","name":"Capt. Wes Block","type":"Role","_key":"71680","_from":"1062","_to":"43396"} +{"$label":"ACTS_IN","name":"Sergeant First Class Kelly","type":"Role","_key":"70899","_from":"1062","_to":"43079"} +{"$label":"ACTS_IN","name":"Lt. Morris Schaffer","type":"Role","_key":"67537","_from":"1062","_to":"41582"} +{"$label":"ACTS_IN","name":"Josey Wales","type":"Role","_key":"65410","_from":"1062","_to":"40561"} +{"$label":"ACTS_IN","name":"Frank Morris","type":"Role","_key":"65328","_from":"1062","_to":"40534"} +{"$label":"ACTS_IN","name":"Mitchell Gant","type":"Role","_key":"65260","_from":"1062","_to":"40511"} +{"$label":"ACTS_IN","name":"Insp. Harry Callahan","type":"Role","_key":"64835","_from":"1062","_to":"40334"} +{"$label":"ACTS_IN","name":"Insp. Harry Callahan","type":"Role","_key":"64830","_from":"1062","_to":"40332"} +{"$label":"ACTS_IN","name":"Insp. Harry Callahan","type":"Role","_key":"64825","_from":"1062","_to":"40329"} +{"$label":"ACTS_IN","name":"Insp. Harry Callahan","type":"Role","_key":"64820","_from":"1062","_to":"40328"} +{"$label":"ACTS_IN","name":"Steve Everett","type":"Role","_key":"62748","_from":"1062","_to":"39448"} +{"$label":"ACTS_IN","name":"Gunnery Sgt. Tom 'Gunny' Highway","type":"Role","_key":"59457","_from":"1062","_to":"37556"} +{"$label":"ACTS_IN","name":"Terry McCaleb","type":"Role","_key":"54781","_from":"1062","_to":"35055"} +{"$label":"ACTS_IN","name":"Chief Red Garnett","type":"Role","_key":"54681","_from":"1062","_to":"35014"} +{"$label":"ACTS_IN","name":"Secret Service Agent Frank Horrigan","type":"Role","_key":"53514","_from":"1062","_to":"34555"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"51238","_from":"1062","_to":"33417"} +{"$label":"ACTS_IN","name":"Thunderbold","type":"Role","_key":"49224","_from":"1062","_to":"32249"} +{"$label":"ACTS_IN","name":"Nick Pulovski","type":"Role","_key":"44875","_from":"1062","_to":"29854"} +{"$label":"ACTS_IN","name":"Frank Corvin","type":"Role","_key":"37807","_from":"1062","_to":"25635"} +{"$label":"ACTS_IN","name":"Marshall Jed Cooper","type":"Role","_key":"34864","_from":"1062","_to":"23835"} +{"$label":"ACTS_IN","name":"Insp. Harry Callahan","type":"Role","_key":"11629","_from":"1062","_to":"9132"} +{"$label":"ACTS_IN","name":"Monco","type":"Role","_key":"11184","_from":"1062","_to":"8850"} +{"$label":"ACTS_IN","name":"Robert Kincaid","type":"Role","_key":"8287","_from":"1062","_to":"6789"} +{"$label":"ACTS_IN","name":"Der Namenlose\/Blondie","type":"Role","_key":"5389","_from":"1062","_to":"4577"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"4997","_from":"1062","_to":"4257"} +{"$label":"ACTS_IN","name":"Frankie Dunn","type":"Role","_key":"1460","_from":"1062","_to":"1234"} +{"$label":"ACTS_IN","name":"Luther Whitney","type":"Role","_key":"1411","_from":"1062","_to":"1190"} +{"$label":"ACTS_IN","name":"Bill Munny","type":"Role","_key":"1279","_from":"1062","_to":"1061"} +{"$label":"ACTS_IN","name":"Samson Pilot","type":"Role","_key":"431","_from":"359","_to":"345"} +{"$label":"ACTS_IN","name":"Lyle Wainfleet","type":"Role","_key":"430","_from":"358","_to":"345"} +{"$label":"ACTS_IN","name":"Dr. Max Patel","type":"Role","_key":"429","_from":"357","_to":"345"} +{"$label":"ACTS_IN","name":"Eytukan","type":"Role","_key":"428","_from":"356","_to":"345"} +{"$label":"ACTS_IN","name":"Tsu'Tey","type":"Role","_key":"427","_from":"355","_to":"345"} +{"$label":"ACTS_IN","name":"Moha","type":"Role","_key":"426","_from":"354","_to":"345"} +{"$label":"ACTS_IN","name":"Selfridge","type":"Role","_key":"425","_from":"353","_to":"345"} +{"$label":"ACTS_IN","name":"Norm Spellman","type":"Role","_key":"424","_from":"352","_to":"345"} +{"$label":"ACTS_IN","name":"Trudy Chacon","type":"Role","_key":"423","_from":"351","_to":"345"} +{"$label":"ACTS_IN","name":"Col. Quaritch","type":"Role","_key":"422","_from":"350","_to":"345"} +{"$label":"ACTS_IN","name":"Dr. Grace Augustine","type":"Role","_key":"421","_from":"349","_to":"345"} +{"$label":"ACTS_IN","name":"Neytiri","type":"Role","_key":"420","_from":"348","_to":"345"} +{"$label":"ACTS_IN","name":"Jake Sully","type":"Role","_key":"419","_from":"347","_to":"345"} +{"$label":"DIRECTED","_key":"418","_from":"346","_to":"345"} +{"$label":"DIRECTED","_key":"23298","_from":"346","_to":"16896"} +{"$label":"DIRECTED","_key":"8181","_from":"346","_to":"6737"} +{"$label":"DIRECTED","_key":"7177","_from":"346","_to":"6002"} +{"$label":"DIRECTED","_key":"3976","_from":"346","_to":"3391"} +{"$label":"DIRECTED","_key":"3133","_from":"346","_to":"2686"} +{"$label":"ACTS_IN","name":"Perseus","type":"Role","_key":"117645","_from":"347","_to":"69157"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"109592","_from":"347","_to":"64732"} +{"$label":"ACTS_IN","name":"PFC Lucas","type":"Role","_key":"97531","_from":"347","_to":"57426"} +{"$label":"ACTS_IN","name":"MacBeth","type":"Role","_key":"96312","_from":"347","_to":"56600"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"92083","_from":"347","_to":"54333"} +{"$label":"ACTS_IN","name":"as Cpl. B.J. 'Depot' Guidry","type":"Role","_key":"64363","_from":"347","_to":"40107"} +{"$label":"ACTS_IN","name":"Marcus Wright","type":"Role","_key":"6390","_from":"347","_to":"5406"} +{"$label":"ACTS_IN","name":"Kit","type":"Role","_key":"111206","_from":"348","_to":"65675"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"111089","_from":"348","_to":"65620"} +{"$label":"ACTS_IN","name":"Rachel Buff","type":"Role","_key":"102793","_from":"348","_to":"60470"} +{"$label":"ACTS_IN","name":"Laila","type":"Role","_key":"94826","_from":"348","_to":"55842"} +{"$label":"ACTS_IN","name":"Nyota Uhura","type":"Role","_key":"94688","_from":"348","_to":"55786"} +{"$label":"ACTS_IN","name":"Theresa Jones","type":"Role","_key":"71209","_from":"348","_to":"43215"} +{"$label":"ACTS_IN","name":"Eva Rodr\u00edguez","type":"Role","_key":"64083","_from":"348","_to":"39997"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"59950","_from":"348","_to":"37851"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"57259","_from":"348","_to":"36317"} +{"$label":"ACTS_IN","name":"Torres","type":"Role","_key":"7139","_from":"348","_to":"5965"} +{"$label":"ACTS_IN","name":"Anamaria","type":"Role","_key":"904","_from":"348","_to":"722"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"111876","_from":"349","_to":"66047"} +{"$label":"ACTS_IN","name":"Julia Sandburg","type":"Role","_key":"107999","_from":"349","_to":"63792"} +{"$label":"ACTS_IN","name":"Ellen Mitchell","type":"Role","_key":"70703","_from":"349","_to":"43007"} +{"$label":"ACTS_IN","name":"Jill Bryant","type":"Role","_key":"70524","_from":"349","_to":"42927"} +{"$label":"ACTS_IN","name":"Max Conners","type":"Role","_key":"66057","_from":"349","_to":"40881"} +{"$label":"ACTS_IN","name":"voice of Ship\u00b4s Computer","type":"Role","_key":"65037","_from":"349","_to":"40412"} +{"$label":"ACTS_IN","name":"Paulina Escobar","type":"Role","_key":"63885","_from":"349","_to":"39916"} +{"$label":"ACTS_IN","name":"The Narrator","type":"Role","_key":"61658","_from":"349","_to":"38847"} +{"$label":"ACTS_IN","name":"Dian Fossey","type":"Role","_key":"61104","_from":"349","_to":"38622"} +{"$label":"ACTS_IN","name":"Babe Paley","type":"Role","_key":"55437","_from":"349","_to":"35334"} +{"$label":"ACTS_IN","name":"Lady Claudia Hoffman","type":"Role","_key":"52510","_from":"349","_to":"34149"} +{"$label":"ACTS_IN","name":"Chaffee Bicknell","type":"Role","_key":"50837","_from":"349","_to":"33179"} +{"$label":"ACTS_IN","name":"Warden Walker","type":"Role","_key":"49040","_from":"349","_to":"32134"} +{"$label":"ACTS_IN","name":"Ripley","type":"Role","_key":"48129","_from":"349","_to":"31632"} +{"$label":"ACTS_IN","name":"Ripley","type":"Role","_key":"48104","_from":"349","_to":"31620"} +{"$label":"ACTS_IN","name":"Rex Brooks","type":"Role","_key":"46818","_from":"349","_to":"30888"} +{"$label":"ACTS_IN","name":"Alice Hunt","type":"Role","_key":"45240","_from":"349","_to":"30028"} +{"$label":"ACTS_IN","name":"Janey Carver","type":"Role","_key":"40306","_from":"349","_to":"27194"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"37172","_from":"349","_to":"25176"} +{"$label":"ACTS_IN","name":"Katharine Parker","type":"Role","_key":"27616","_from":"349","_to":"19802"} +{"$label":"ACTS_IN","name":"Dana Barrett","type":"Role","_key":"24634","_from":"349","_to":"17819"} +{"$label":"ACTS_IN","name":"Helen Hudson","type":"Role","_key":"15110","_from":"349","_to":"11600"} +{"$label":"ACTS_IN","name":"Queen Isabella","type":"Role","_key":"13504","_from":"349","_to":"10513"} +{"$label":"ACTS_IN","name":"Gwen DeMarco","type":"Role","_key":"11041","_from":"349","_to":"8725"} +{"$label":"ACTS_IN","name":"Alvy's Date Outside Theatre","type":"Role","_key":"8491","_from":"349","_to":"6916"} +{"$label":"ACTS_IN","name":"Lieutenant Ellen Ripley","type":"Role","_key":"8182","_from":"349","_to":"6737"} +{"$label":"ACTS_IN","name":"Dana Barrett","type":"Role","_key":"7371","_from":"349","_to":"6141"} +{"$label":"ACTS_IN","name":"Ripley","type":"Role","_key":"4786","_from":"349","_to":"4094"} +{"$label":"ACTS_IN","name":"Stonewall Jackson","type":"Role","_key":"106888","_from":"350","_to":"63012"} +{"$label":"ACTS_IN","name":"Earl Kellogg","type":"Role","_key":"99481","_from":"350","_to":"58645"} +{"$label":"ACTS_IN","name":"Harry Black","type":"Role","_key":"91458","_from":"350","_to":"53932"} +{"$label":"ACTS_IN","name":"Harold 'Happy' Loman","type":"Role","_key":"90618","_from":"350","_to":"53515"} +{"$label":"ACTS_IN","name":"Ike Clanton","type":"Role","_key":"73060","_from":"350","_to":"43963"} +{"$label":"ACTS_IN","name":"Party Crasher","type":"Role","_key":"69528","_from":"350","_to":"42467"} +{"$label":"ACTS_IN","name":"Charles Winstead","type":"Role","_key":"69128","_from":"350","_to":"42291"} +{"$label":"ACTS_IN","name":"Brigadier General Dean Hopgood","type":"Role","_key":"62542","_from":"350","_to":"39366"} +{"$label":"ACTS_IN","name":"Phil Garson","type":"Role","_key":"34743","_from":"350","_to":"23754"} +{"$label":"ACTS_IN","name":"Simon Baclg","type":"Role","_key":"27824","_from":"350","_to":"19944"} +{"$label":"ACTS_IN","name":"Diana Guzman","type":"Role","_key":"119800","_from":"351","_to":"70342"} +{"$label":"ACTS_IN","name":"Letty","type":"Role","_key":"96757","_from":"351","_to":"56916"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"93188","_from":"351","_to":"54916"} +{"$label":"ACTS_IN","name":"Nicki","type":"Role","_key":"60118","_from":"351","_to":"37933"} +{"$label":"ACTS_IN","name":"Katarin","type":"Role","_key":"58198","_from":"351","_to":"36805"} +{"$label":"ACTS_IN","name":"Letty","type":"Role","_key":"56936","_from":"351","_to":"36141"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"55187","_from":"351","_to":"35208"} +{"$label":"ACTS_IN","name":"Eden","type":"Role","_key":"52708","_from":"351","_to":"34216"} +{"$label":"ACTS_IN","name":"Chris Sanchez","type":"Role","_key":"52629","_from":"351","_to":"34193"} +{"$label":"ACTS_IN","name":"Rain Ocampo","type":"Role","_key":"13945","_from":"351","_to":"10818"} +{"$label":"ACTS_IN","name":"Cooter","type":"Role","_key":"120449","_from":"352","_to":"70756"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"116302","_from":"352","_to":"68469"} +{"$label":"ACTS_IN","name":"Joe Silverman","type":"Role","_key":"104110","_from":"352","_to":"61250"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"72701","_from":"352","_to":"43810"} +{"$label":"ACTS_IN","name":"Pound Employee","type":"Role","_key":"60189","_from":"352","_to":"37970"} +{"$label":"ACTS_IN","name":"J.P.","type":"Role","_key":"57749","_from":"352","_to":"36554"} +{"$label":"ACTS_IN","name":"Bardo","type":"Role","_key":"56775","_from":"352","_to":"36060"} +{"$label":"ACTS_IN","name":"Daniel McMann","type":"Role","_key":"116082","_from":"353","_to":"68357"} +{"$label":"ACTS_IN","name":"Peter Cochran","type":"Role","_key":"108997","_from":"353","_to":"64413"} +{"$label":"ACTS_IN","name":"Solo","type":"Role","_key":"102055","_from":"353","_to":"60044"} +{"$label":"ACTS_IN","name":"Seth Davis","type":"Role","_key":"98937","_from":"353","_to":"58292"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"95165","_from":"353","_to":"55998"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"93414","_from":"353","_to":"55011"} +{"$label":"ACTS_IN","name":"Elliott","type":"Role","_key":"72455","_from":"353","_to":"43726"} +{"$label":"ACTS_IN","name":"Alvin Karpis","type":"Role","_key":"69121","_from":"353","_to":"42291"} +{"$label":"ACTS_IN","name":"Kendall","type":"Role","_key":"65748","_from":"353","_to":"40705"} +{"$label":"ACTS_IN","name":"Filippo","type":"Role","_key":"64181","_from":"353","_to":"40046"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"58698","_from":"353","_to":"37074"} +{"$label":"ACTS_IN","name":"Kip Raines","type":"Role","_key":"55506","_from":"353","_to":"35364"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"54888","_from":"353","_to":"35099"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"50793","_from":"353","_to":"33143"} +{"$label":"ACTS_IN","name":"Miles Haley","type":"Role","_key":"45886","_from":"353","_to":"30345"} +{"$label":"ACTS_IN","name":"Dex","type":"Role","_key":"36057","_from":"353","_to":"24480"} +{"$label":"ACTS_IN","name":"Buddy Cole","type":"Role","_key":"17813","_from":"353","_to":"13278"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"13372","_from":"353","_to":"10404"} +{"$label":"ACTS_IN","name":"T-Medic Irwin Wade","type":"Role","_key":"10189","_from":"353","_to":"8132"} +{"$label":"ACTS_IN","name":"Steve \"V\"","type":"Role","_key":"7623","_from":"353","_to":"6321"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"2390","_from":"353","_to":"2102"} +{"$label":"ACTS_IN","name":"Detective Margie Francis","type":"Role","_key":"58343","_from":"354","_to":"36876"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"52328","_from":"354","_to":"34061"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"27749","_from":"354","_to":"19886"} +{"$label":"ACTS_IN","name":"Dr. Kendall","type":"Role","_key":"25993","_from":"354","_to":"18688"} +{"$label":"ACTS_IN","name":"Victoria Hendrix","type":"Role","_key":"10319","_from":"354","_to":"8203"} +{"$label":"ACTS_IN","name":"Rory","type":"Role","_key":"119545","_from":"355","_to":"70225"} +{"$label":"ACTS_IN","name":"Malcolm Moore","type":"Role","_key":"103698","_from":"355","_to":"60994"} +{"$label":"ACTS_IN","name":"Craig Lewis","type":"Role","_key":"103394","_from":"355","_to":"60821"} +{"$label":"ACTS_IN","name":"Disantos","type":"Role","_key":"98581","_from":"355","_to":"58095"} +{"$label":"ACTS_IN","name":"Fenix Rise","type":"Role","_key":"96760","_from":"355","_to":"56916"} +{"$label":"ACTS_IN","name":"Corporal Hector Negron","type":"Role","_key":"89353","_from":"355","_to":"52887"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"16736","_from":"355","_to":"12618"} +{"$label":"ACTS_IN","name":"Williams","type":"Role","_key":"6738","_from":"355","_to":"5655"} +{"$label":"ACTS_IN","name":"Opechancanough","type":"Role","_key":"69628","_from":"356","_to":"42500"} +{"$label":"ACTS_IN","name":"Magua","type":"Role","_key":"53357","_from":"356","_to":"34484"} +{"$label":"ACTS_IN","name":"Detective Casals","type":"Role","_key":"11330","_from":"356","_to":"8936"} +{"$label":"ACTS_IN","name":"Rham Jas","type":"Role","_key":"110294","_from":"357","_to":"65177"} +{"$label":"ACTS_IN","name":"Dominique Bretodeau","type":"Role","_key":"445","_from":"374","_to":"360"} +{"$label":"ACTS_IN","name":"Mr. Collignon","type":"Role","_key":"444","_from":"373","_to":"360"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"443","_from":"372","_to":"360"} +{"$label":"ACTS_IN","name":"Raymond Dufayel","type":"Role","_key":"442","_from":"371","_to":"360"} +{"$label":"ACTS_IN","name":"Amandine Poulain","type":"Role","_key":"441","_from":"370","_to":"360"} +{"$label":"ACTS_IN","name":"Madeleine Wallace","type":"Role","_key":"440","_from":"369","_to":"360"} +{"$label":"ACTS_IN","name":"Hipolito","type":"Role","_key":"439","_from":"368","_to":"360"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"438","_from":"367","_to":"360"} +{"$label":"ACTS_IN","name":"Georgette","type":"Role","_key":"437","_from":"366","_to":"360"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"436","_from":"365","_to":"360"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"435","_from":"364","_to":"360"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl Poulain","type":"Role","_key":"434","_from":"363","_to":"360"} +{"$label":"ACTS_IN","name":"Am\u00e9lie Poulain","type":"Role","_key":"433","_from":"362","_to":"360"} +{"$label":"DIRECTED","_key":"432","_from":"361","_to":"360"} +{"$label":"DIRECTED","_key":"48139","_from":"361","_to":"31632"} +{"$label":"DIRECTED","_key":"23879","_from":"361","_to":"17312"} +{"$label":"DIRECTED","_key":"10738","_from":"361","_to":"8522"} +{"$label":"DIRECTED","_key":"10625","_from":"361","_to":"8433"} +{"$label":"ACTS_IN","name":"Ang\u00e9lique","type":"Role","_key":"88089","_from":"362","_to":"52282"} +{"$label":"ACTS_IN","name":"Gabrielle 'Coco' Chanel","type":"Role","_key":"68192","_from":"362","_to":"41883"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"44689","_from":"362","_to":"29734"} +{"$label":"ACTS_IN","name":"Senay","type":"Role","_key":"27264","_from":"362","_to":"19605"} +{"$label":"ACTS_IN","name":"Camille Fauque","type":"Role","_key":"24049","_from":"362","_to":"17440"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"23880","_from":"362","_to":"17312"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"15780","_from":"362","_to":"12022"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"13762","_from":"362","_to":"10677"} +{"$label":"ACTS_IN","name":"Sophie Neveu","type":"Role","_key":"7093","_from":"362","_to":"5934"} +{"$label":"ACTS_IN","name":"Cremer","type":"Role","_key":"92130","_from":"363","_to":"54359"} +{"$label":"ACTS_IN","name":"Mordechai","type":"Role","_key":"47915","_from":"363","_to":"31519"} +{"$label":"ACTS_IN","name":"L'abb\u00e9 Girard","type":"Role","_key":"31186","_from":"363","_to":"21829"} +{"$label":"ACTS_IN","name":"Un Breton","type":"Role","_key":"23891","_from":"363","_to":"17312"} +{"$label":"ACTS_IN","name":"Gendarme","type":"Role","_key":"21287","_from":"363","_to":"15565"} +{"$label":"ACTS_IN","name":"Harmonica","type":"Role","_key":"20754","_from":"363","_to":"15175"} +{"$label":"ACTS_IN","name":"Peeler","type":"Role","_key":"10748","_from":"363","_to":"8522"} +{"$label":"ACTS_IN","name":"Robert Kube","type":"Role","_key":"10633","_from":"363","_to":"8433"} +{"$label":"ACTS_IN","name":"Karim","type":"Role","_key":"104405","_from":"364","_to":"61418"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"68665","_from":"364","_to":"42085"} +{"$label":"ACTS_IN","name":"Num\u00e9robis","type":"Role","_key":"24173","_from":"364","_to":"17515"} +{"$label":"ACTS_IN","name":"Sa\u00efd Otmari","type":"Role","_key":"17500","_from":"364","_to":"13084"} +{"$label":"ACTS_IN","name":"Simone Deblon","type":"Role","_key":"32055","_from":"365","_to":"22332"} +{"$label":"ACTS_IN","name":"Gilberte Doinel","type":"Role","_key":"2334","_from":"365","_to":"2056"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"112161","_from":"366","_to":"66233"} +{"$label":"ACTS_IN","name":"La Baronne","type":"Role","_key":"96107","_from":"366","_to":"56487"} +{"$label":"ACTS_IN","name":"Sandrine Vonnier","type":"Role","_key":"43431","_from":"366","_to":"29017"} +{"$label":"ACTS_IN","name":"Rageaud","type":"Role","_key":"40051","_from":"366","_to":"27036"} +{"$label":"ACTS_IN","name":"Reine Milliot","type":"Role","_key":"31196","_from":"366","_to":"21829"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"30755","_from":"366","_to":"21554"} +{"$label":"ACTS_IN","name":"Itin\u00e9ris","type":"Role","_key":"24177","_from":"366","_to":"17515"} +{"$label":"ACTS_IN","name":"Melvin","type":"Role","_key":"118146","_from":"367","_to":"69440"} +{"$label":"ACTS_IN","name":"Gildas","type":"Role","_key":"112141","_from":"367","_to":"66226"} +{"$label":"ACTS_IN","name":"C\u00e9sar","type":"Role","_key":"103287","_from":"367","_to":"60764"} +{"$label":"ACTS_IN","name":"Daniel Verlot","type":"Role","_key":"71437","_from":"367","_to":"43308"} +{"$label":"ACTS_IN","name":"Fredy Mazas","type":"Role","_key":"51813","_from":"367","_to":"33807"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"49252","_from":"367","_to":"32254"} +{"$label":"ACTS_IN","name":"Vriess","type":"Role","_key":"48131","_from":"367","_to":"31632"} +{"$label":"ACTS_IN","name":"Drouet","type":"Role","_key":"30234","_from":"367","_to":"21284"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"23882","_from":"367","_to":"17312"} +{"$label":"ACTS_IN","name":"Scaphandrier \/ Les Clones","type":"Role","_key":"10740","_from":"367","_to":"8522"} +{"$label":"ACTS_IN","name":"Louison","type":"Role","_key":"10626","_from":"367","_to":"8433"} +{"$label":"ACTS_IN","name":"Brassai","type":"Role","_key":"114588","_from":"368","_to":"67500"} +{"$label":"ACTS_IN","name":"Thierry","type":"Role","_key":"103331","_from":"368","_to":"60786"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"36227","_from":"368","_to":"24586"} +{"$label":"ACTS_IN","name":"S\u00e9raphine Louis, dite S\u00e9raphine de Senlis","type":"Role","_key":"100137","_from":"369","_to":"59063"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96115","_from":"369","_to":"56490"} +{"$label":"ACTS_IN","name":"La mime (Tour Eiffel)","type":"Role","_key":"19883","_from":"369","_to":"14635"} +{"$label":"ACTS_IN","name":"La comtesse d'Artelles","type":"Role","_key":"17379","_from":"369","_to":"12998"} +{"$label":"ACTS_IN","name":"Gabriel Marie","type":"Role","_key":"10747","_from":"371","_to":"8522"} +{"$label":"ACTS_IN","name":"Antoinette Pussin (Vienna)","type":"Role","_key":"99409","_from":"372","_to":"58590"} +{"$label":"ACTS_IN","name":"Virginie","type":"Role","_key":"49744","_from":"372","_to":"32543"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"118045","_from":"373","_to":"69385"} +{"$label":"ACTS_IN","name":"L'agent d'Alex Fayard","type":"Role","_key":"89329","_from":"374","_to":"52877"} +{"$label":"ACTS_IN","name":"Lieutenant Grange","type":"Role","_key":"62394","_from":"374","_to":"39307"} +{"$label":"ACTS_IN","name":"Le Psy","type":"Role","_key":"48775","_from":"374","_to":"31986"} +{"$label":"ACTS_IN","name":"Majid","type":"Role","_key":"5565","_from":"374","_to":"4740"} +{"$label":"ACTS_IN","name":"Chili","type":"Role","_key":"468","_from":"398","_to":"375"} +{"$label":"ACTS_IN","name":"ARVN Pimp","type":"Role","_key":"467","_from":"397","_to":"375"} +{"$label":"ACTS_IN","name":"VC Sniper","type":"Role","_key":"466","_from":"396","_to":"375"} +{"$label":"ACTS_IN","name":"Snowball","type":"Role","_key":"465","_from":"395","_to":"375"} +{"$label":"ACTS_IN","name":"Da Nang Hooker","type":"Role","_key":"464","_from":"394","_to":"375"} +{"$label":"ACTS_IN","name":"Donlon","type":"Role","_key":"463","_from":"393","_to":"375"} +{"$label":"ACTS_IN","name":"T.H.E. Rock","type":"Role","_key":"462","_from":"392","_to":"375"} +{"$label":"ACTS_IN","name":"Lt. Cleves","type":"Role","_key":"461","_from":"391","_to":"375"} +{"$label":"ACTS_IN","name":"Poge Colonel","type":"Role","_key":"460","_from":"390","_to":"375"} +{"$label":"ACTS_IN","name":"Doc Jay","type":"Role","_key":"459","_from":"389","_to":"375"} +{"$label":"ACTS_IN","name":"Doorgunner","type":"Role","_key":"458","_from":"388","_to":"375"} +{"$label":"ACTS_IN","name":"Payback","type":"Role","_key":"457","_from":"387","_to":"375"} +{"$label":"ACTS_IN","name":"Crazy Earl","type":"Role","_key":"456","_from":"386","_to":"375"} +{"$label":"ACTS_IN","name":"Lt. Lockhart","type":"Role","_key":"455","_from":"385","_to":"375"} +{"$label":"ACTS_IN","name":"Lt. Touchdown","type":"Role","_key":"454","_from":"384","_to":"375"} +{"$label":"ACTS_IN","name":"Pvt. Cowboy","type":"Role","_key":"453","_from":"383","_to":"375"} +{"$label":"ACTS_IN","name":"Rafterman","type":"Role","_key":"452","_from":"382","_to":"375"} +{"$label":"ACTS_IN","name":"Eightball","type":"Role","_key":"451","_from":"381","_to":"375"} +{"$label":"ACTS_IN","name":"Gny. Sgt. Hartman","type":"Role","_key":"450","_from":"380","_to":"375"} +{"$label":"ACTS_IN","name":"Pvt. Pyle","type":"Role","_key":"449","_from":"379","_to":"375"} +{"$label":"ACTS_IN","name":"Animal Mother","type":"Role","_key":"448","_from":"378","_to":"375"} +{"$label":"ACTS_IN","name":"Pvt. Joker","type":"Role","_key":"447","_from":"377","_to":"375"} +{"$label":"DIRECTED","_key":"446","_from":"376","_to":"375"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117883","_from":"376","_to":"69298"} +{"$label":"ACTS_IN","name":"Stanley Kubrick (Archivmaterial)","type":"Role","_key":"23192","_from":"376","_to":"16822"} +{"$label":"DIRECTED","_key":"61361","_from":"376","_to":"38720"} +{"$label":"DIRECTED","_key":"60057","_from":"376","_to":"37901"} +{"$label":"DIRECTED","_key":"26493","_from":"376","_to":"19048"} +{"$label":"DIRECTED","_key":"11533","_from":"376","_to":"9065"} +{"$label":"DIRECTED","_key":"11492","_from":"376","_to":"9041"} +{"$label":"DIRECTED","_key":"11163","_from":"376","_to":"8839"} +{"$label":"DIRECTED","_key":"9448","_from":"376","_to":"7628"} +{"$label":"DIRECTED","_key":"8352","_from":"376","_to":"6842"} +{"$label":"DIRECTED","_key":"4762","_from":"376","_to":"4061"} +{"$label":"DIRECTED","_key":"3571","_from":"376","_to":"3060"} +{"$label":"DIRECTED","_key":"2804","_from":"376","_to":"2429"} +{"$label":"DIRECTED","_key":"1354","_from":"376","_to":"1134"} +{"$label":"ACTS_IN","name":"Jim Green","type":"Role","_key":"117671","_from":"377","_to":"69165"} +{"$label":"ACTS_IN","name":"Joe Slovak","type":"Role","_key":"111472","_from":"377","_to":"65817"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"111421","_from":"377","_to":"65790"} +{"$label":"ACTS_IN","name":"Capt. Dennis Dearborn","type":"Role","_key":"90816","_from":"377","_to":"53591"} +{"$label":"ACTS_IN","name":"Birdy","type":"Role","_key":"68970","_from":"377","_to":"42225"} +{"$label":"ACTS_IN","name":"David's Father","type":"Role","_key":"49383","_from":"377","_to":"32335"} +{"$label":"ACTS_IN","name":"Drake Goodman","type":"Role","_key":"24757","_from":"377","_to":"17908"} +{"$label":"ACTS_IN","name":"Dr. Don Francis","type":"Role","_key":"24065","_from":"377","_to":"17452"} +{"$label":"ACTS_IN","name":"Jakob","type":"Role","_key":"22930","_from":"377","_to":"16632"} +{"$label":"ACTS_IN","name":"Fritz Gerlich","type":"Role","_key":"21767","_from":"377","_to":"15899"} +{"$label":"ACTS_IN","name":"Mike Downey","type":"Role","_key":"20389","_from":"377","_to":"14933"} +{"$label":"ACTS_IN","name":"William Shaw","type":"Role","_key":"13027","_from":"377","_to":"10160"} +{"$label":"ACTS_IN","name":"Dr. Ralph Wyman","type":"Role","_key":"8369","_from":"377","_to":"6847"} +{"$label":"ACTS_IN","name":"Officer Black","type":"Role","_key":"113784","_from":"378","_to":"67043"} +{"$label":"ACTS_IN","name":"Stillman","type":"Role","_key":"109666","_from":"378","_to":"64764"} +{"$label":"ACTS_IN","name":"Jayne","type":"Role","_key":"108694","_from":"378","_to":"64246"} +{"$label":"ACTS_IN","name":"Clark Kent \/ Superman","type":"Role","_key":"95629","_from":"378","_to":"56248"} +{"$label":"ACTS_IN","name":"Capt. Wilkins","type":"Role","_key":"17614","_from":"378","_to":"13147"} +{"$label":"ACTS_IN","name":"Garber","type":"Role","_key":"2607","_from":"378","_to":"2274"} +{"$label":"ACTS_IN","name":"Major Mitchell","type":"Role","_key":"495","_from":"378","_to":"414"} +{"$label":"ACTS_IN","name":"Robert E. Howard","type":"Role","_key":"116259","_from":"379","_to":"68444"} +{"$label":"ACTS_IN","name":"Abbie Hoffman","type":"Role","_key":"115078","_from":"379","_to":"67773"} +{"$label":"ACTS_IN","name":"Father Casey","type":"Role","_key":"110216","_from":"379","_to":"65143"} +{"$label":"ACTS_IN","name":"Dawson \/ 'Thor'","type":"Role","_key":"99829","_from":"379","_to":"58883"} +{"$label":"ACTS_IN","name":"Sam Clayton","type":"Role","_key":"90846","_from":"379","_to":"53607"} +{"$label":"ACTS_IN","name":"Pooh-Bear","type":"Role","_key":"70043","_from":"379","_to":"42710"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"68443","_from":"379","_to":"41985"} +{"$label":"ACTS_IN","name":"Dennis Grobowski","type":"Role","_key":"56481","_from":"379","_to":"35880"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"52436","_from":"379","_to":"34117"} +{"$label":"ACTS_IN","name":"Carl Rudolph Stargher","type":"Role","_key":"51033","_from":"379","_to":"33306"} +{"$label":"ACTS_IN","name":"Hathaway","type":"Role","_key":"35193","_from":"379","_to":"23980"} +{"$label":"ACTS_IN","name":"Mike Cobb","type":"Role","_key":"13685","_from":"379","_to":"10627"} +{"$label":"ACTS_IN","name":"Jason Whitney\/Jerry Ashton","type":"Role","_key":"11932","_from":"379","_to":"9354"} +{"$label":"ACTS_IN","name":"Bill Newman","type":"Role","_key":"9681","_from":"379","_to":"7763"} +{"$label":"ACTS_IN","name":"Orson Welles","type":"Role","_key":"6240","_from":"379","_to":"5281"} +{"$label":"ACTS_IN","name":"Burton Steckler","type":"Role","_key":"3982","_from":"379","_to":"3397"} +{"$label":"ACTS_IN","name":"Edgar \/ The Bug","type":"Role","_key":"572","_from":"379","_to":"483"} +{"$label":"ACTS_IN","name":"Jack (voice)","type":"Role","_key":"120524","_from":"380","_to":"70788"} +{"$label":"ACTS_IN","name":"Jimmy Lee Farnsworth","type":"Role","_key":"101182","_from":"380","_to":"59606"} +{"$label":"ACTS_IN","name":"Captain Nichols","type":"Role","_key":"94852","_from":"380","_to":"55853"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"66803","_from":"380","_to":"41269"} +{"$label":"ACTS_IN","name":"Sheriff Buck Olmstead","type":"Role","_key":"66390","_from":"380","_to":"41060"} +{"$label":"ACTS_IN","name":"Sgt. Hiles","type":"Role","_key":"65730","_from":"380","_to":"40696"} +{"$label":"ACTS_IN","name":"General Kramer","type":"Role","_key":"65447","_from":"380","_to":"40572"} +{"$label":"ACTS_IN","name":"Sheriff Hoyt","type":"Role","_key":"53437","_from":"380","_to":"34528"} +{"$label":"ACTS_IN","name":"Mayor Tilman","type":"Role","_key":"14466","_from":"380","_to":"11179"} +{"$label":"ACTS_IN","name":"Dick Mead","type":"Role","_key":"11842","_from":"380","_to":"9282"} +{"$label":"ACTS_IN","name":"Sergeant (voice)","type":"Role","_key":"10254","_from":"380","_to":"8168"} +{"$label":"ACTS_IN","name":"Police Captain","type":"Role","_key":"9507","_from":"380","_to":"7669"} +{"$label":"ACTS_IN","name":"Clyde Percy","type":"Role","_key":"8279","_from":"380","_to":"6786"} +{"$label":"ACTS_IN","name":"Older Irwin (voice)","type":"Role","_key":"111843","_from":"381","_to":"66010"} +{"$label":"ACTS_IN","name":"Juror 5","type":"Role","_key":"88766","_from":"381","_to":"52604"} +{"$label":"ACTS_IN","name":"Matthew Hallmark","type":"Role","_key":"52506","_from":"381","_to":"34148"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"24763","_from":"381","_to":"17908"} +{"$label":"ACTS_IN","name":"Rudyard Kipling","type":"Role","_key":"61095","_from":"382","_to":"38618"} +{"$label":"ACTS_IN","name":"Peter Ludlow","type":"Role","_key":"4519","_from":"383","_to":"3851"} +{"$label":"ACTS_IN","name":"Owen","type":"Role","_key":"3512","_from":"383","_to":"2983"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"58837","_from":"384","_to":"37148"} +{"$label":"ACTS_IN","name":"Colonel Perry","type":"Role","_key":"53287","_from":"384","_to":"34455"} +{"$label":"ACTS_IN","name":"Mendez","type":"Role","_key":"11230","_from":"384","_to":"8874"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"55006","_from":"385","_to":"35155"} +{"$label":"ACTS_IN","name":"Charles Thieriot","type":"Role","_key":"16920","_from":"385","_to":"12715"} +{"$label":"ACTS_IN","name":"Dude","type":"Role","_key":"31179","_from":"389","_to":"21822"} +{"$label":"ACTS_IN","name":"Pearse","type":"Role","_key":"45914","_from":"390","_to":"30362"} +{"$label":"ACTS_IN","name":"Pedro Santana","type":"Role","_key":"93430","_from":"392","_to":"55015"} +{"$label":"ACTS_IN","name":"Pretty Girl","type":"Role","_key":"482","_from":"413","_to":"399"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"481","_from":"412","_to":"399"} +{"$label":"ACTS_IN","name":"E.T. (voice)","type":"Role","_key":"480","_from":"411","_to":"399"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"479","_from":"410","_to":"399"} +{"$label":"ACTS_IN","name":"Science Teacher","type":"Role","_key":"478","_from":"409","_to":"399"} +{"$label":"ACTS_IN","name":"Schoolboy","type":"Role","_key":"477","_from":"408","_to":"399"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"476","_from":"407","_to":"399"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"475","_from":"406","_to":"399"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"474","_from":"405","_to":"399"} +{"$label":"ACTS_IN","name":"Keys","type":"Role","_key":"473","_from":"404","_to":"399"} +{"$label":"ACTS_IN","name":"Gertie","type":"Role","_key":"472","_from":"403","_to":"399"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"471","_from":"402","_to":"399"} +{"$label":"ACTS_IN","name":"Elliott","type":"Role","_key":"470","_from":"401","_to":"399"} +{"$label":"DIRECTED","_key":"469","_from":"400","_to":"399"} +{"$label":"DIRECTED","_key":"113225","_from":"400","_to":"66717"} +{"$label":"DIRECTED","_key":"103915","_from":"400","_to":"61126"} +{"$label":"DIRECTED","_key":"72253","_from":"400","_to":"43655"} +{"$label":"DIRECTED","_key":"70374","_from":"400","_to":"42868"} +{"$label":"DIRECTED","_key":"69306","_from":"400","_to":"42371"} +{"$label":"DIRECTED","_key":"60832","_from":"400","_to":"38429"} +{"$label":"DIRECTED","_key":"35971","_from":"400","_to":"24432"} +{"$label":"DIRECTED","_key":"10463","_from":"400","_to":"8318"} +{"$label":"DIRECTED","_key":"10378","_from":"400","_to":"8260"} +{"$label":"DIRECTED","_key":"10177","_from":"400","_to":"8132"} +{"$label":"DIRECTED","_key":"9913","_from":"400","_to":"7948"} +{"$label":"DIRECTED","_key":"9902","_from":"400","_to":"7937"} +{"$label":"DIRECTED","_key":"7694","_from":"400","_to":"6393"} +{"$label":"DIRECTED","_key":"7646","_from":"400","_to":"6359"} +{"$label":"DIRECTED","_key":"7241","_from":"400","_to":"6053"} +{"$label":"DIRECTED","_key":"7131","_from":"400","_to":"5965"} +{"$label":"DIRECTED","_key":"6903","_from":"400","_to":"5794"} +{"$label":"DIRECTED","_key":"5322","_from":"400","_to":"4517"} +{"$label":"DIRECTED","_key":"4524","_from":"400","_to":"3851"} +{"$label":"DIRECTED","_key":"4502","_from":"400","_to":"3842"} +{"$label":"DIRECTED","_key":"3120","_from":"400","_to":"2678"} +{"$label":"DIRECTED","_key":"2761","_from":"400","_to":"2396"} +{"$label":"DIRECTED","_key":"1706","_from":"400","_to":"1473"} +{"$label":"DIRECTED","_key":"1664","_from":"400","_to":"1431"} +{"$label":"DIRECTED","_key":"1617","_from":"400","_to":"1387"} +{"$label":"DIRECTED","_key":"1495","_from":"400","_to":"1270"} +{"$label":"ACTS_IN","name":"Popcorn-Eating Man","type":"Role","_key":"4523","_from":"400","_to":"3851"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"120505","_from":"401","_to":"70785"} +{"$label":"ACTS_IN","name":"Neil Cotton","type":"Role","_key":"114385","_from":"401","_to":"67374"} +{"$label":"ACTS_IN","name":"Greg Hayes","type":"Role","_key":"105201","_from":"401","_to":"61913"} +{"$label":"ACTS_IN","name":"Avery Chasten","type":"Role","_key":"64935","_from":"401","_to":"40373"} +{"$label":"ACTS_IN","name":"Peter Jackson","type":"Role","_key":"59277","_from":"401","_to":"37437"} +{"$label":"ACTS_IN","name":"Man of God","type":"Role","_key":"58004","_from":"401","_to":"36700"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"52826","_from":"401","_to":"34252"} +{"$label":"ACTS_IN","name":"Samuel Ludlow","type":"Role","_key":"31969","_from":"401","_to":"22291"} +{"$label":"ACTS_IN","name":"Amy Fisher","type":"Role","_key":"121087","_from":"403","_to":"71113"} +{"$label":"ACTS_IN","name":"Holly Gooding","type":"Role","_key":"117417","_from":"403","_to":"69060"} +{"$label":"ACTS_IN","name":"Chloe (voice)","type":"Role","_key":"100059","_from":"403","_to":"59023"} +{"$label":"ACTS_IN","name":"Olive (voice)","type":"Role","_key":"94196","_from":"403","_to":"55471"} +{"$label":"ACTS_IN","name":"Davidson's Receptionist","type":"Role","_key":"93104","_from":"403","_to":"54874"} +{"$label":"ACTS_IN","name":"Sally Jackson","type":"Role","_key":"89081","_from":"403","_to":"52771"} +{"$label":"ACTS_IN","name":"Lily Laronette","type":"Role","_key":"72396","_from":"403","_to":"43711"} +{"$label":"ACTS_IN","name":"Charlene 'Charlie' McGee","type":"Role","_key":"70168","_from":"403","_to":"42773"} +{"$label":"ACTS_IN","name":"Lindsey Meeks","type":"Role","_key":"69818","_from":"403","_to":"42609"} +{"$label":"ACTS_IN","name":"Josie Geller","type":"Role","_key":"69365","_from":"403","_to":"42409"} +{"$label":"ACTS_IN","name":"Sophie Fisher","type":"Role","_key":"68319","_from":"403","_to":"41934"} +{"$label":"ACTS_IN","name":"Beverly Donofrio","type":"Role","_key":"67825","_from":"403","_to":"41687"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"67220","_from":"403","_to":"41454"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"64026","_from":"403","_to":"39968"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"61510","_from":"403","_to":"38795"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"58831","_from":"403","_to":"37148"} +{"$label":"ACTS_IN","name":"Skylar Dandridge","type":"Role","_key":"55946","_from":"403","_to":"35576"} +{"$label":"ACTS_IN","name":"Dylan Sanders","type":"Role","_key":"54063","_from":"403","_to":"34775"} +{"$label":"ACTS_IN","name":"Danielle De Barbarac","type":"Role","_key":"53964","_from":"403","_to":"34718"} +{"$label":"ACTS_IN","name":"Holly Pulchik-Lincoln","type":"Role","_key":"53485","_from":"403","_to":"34545"} +{"$label":"ACTS_IN","name":"Ivy","type":"Role","_key":"52695","_from":"403","_to":"34211"} +{"$label":"ACTS_IN","name":"Akima","type":"Role","_key":"46693","_from":"403","_to":"30828"} +{"$label":"ACTS_IN","name":"Nancy Kendricks","type":"Role","_key":"46220","_from":"403","_to":"30551"} +{"$label":"ACTS_IN","name":"Bobbi Graham","type":"Role","_key":"35604","_from":"403","_to":"24197"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"34724","_from":"403","_to":"23746"} +{"$label":"ACTS_IN","name":"Dylan Sanders","type":"Role","_key":"30998","_from":"403","_to":"21713"} +{"$label":"ACTS_IN","name":"Casey Becker","type":"Role","_key":"30269","_from":"403","_to":"21306"} +{"$label":"ACTS_IN","name":"Billie Offer","type":"Role","_key":"16925","_from":"403","_to":"12718"} +{"$label":"ACTS_IN","name":"Lucy Whitmore","type":"Role","_key":"15760","_from":"403","_to":"12007"} +{"$label":"ACTS_IN","name":"Sugar","type":"Role","_key":"5255","_from":"403","_to":"4463"} +{"$label":"ACTS_IN","name":"Karen Pomeroy","type":"Role","_key":"2242","_from":"403","_to":"1972"} +{"$label":"ACTS_IN","name":"Elliot Arthur","type":"Role","_key":"117519","_from":"404","_to":"69094"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106736","_from":"404","_to":"62909"} +{"$label":"ACTS_IN","name":"Ringwald","type":"Role","_key":"106556","_from":"404","_to":"62788"} +{"$label":"ACTS_IN","name":"Thomas Krasny","type":"Role","_key":"88892","_from":"404","_to":"52664"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"63686","_from":"404","_to":"39830"} +{"$label":"ACTS_IN","name":"Bill Davis","type":"Role","_key":"62535","_from":"404","_to":"39365"} +{"$label":"ACTS_IN","name":"Reverend Sullivan","type":"Role","_key":"61832","_from":"404","_to":"38926"} +{"$label":"ACTS_IN","name":"Captain Harold C. Barnes","type":"Role","_key":"61287","_from":"404","_to":"38697"} +{"$label":"ACTS_IN","name":"President Adair T. Manning","type":"Role","_key":"59297","_from":"404","_to":"37449"} +{"$label":"ACTS_IN","name":"Herman Finch","type":"Role","_key":"57990","_from":"404","_to":"36693"} +{"$label":"ACTS_IN","name":"Watts","type":"Role","_key":"52817","_from":"404","_to":"34249"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"48561","_from":"404","_to":"31865"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30110","_from":"404","_to":"21216"} +{"$label":"ACTS_IN","name":"Don Bresler","type":"Role","_key":"17805","_from":"404","_to":"13273"} +{"$label":"ACTS_IN","name":"George Herbert","type":"Role","_key":"108409","_from":"407","_to":"64094"} +{"$label":"ACTS_IN","name":"Josh Myron","type":"Role","_key":"107098","_from":"407","_to":"63150"} +{"$label":"ACTS_IN","name":"Mark Watson","type":"Role","_key":"89179","_from":"407","_to":"52820"} +{"$label":"ACTS_IN","name":"Jim Halsey","type":"Role","_key":"54563","_from":"407","_to":"34965"} +{"$label":"ACTS_IN","name":"Paul Stevens","type":"Role","_key":"38854","_from":"407","_to":"26244"} +{"$label":"ACTS_IN","name":"Adam Vance","type":"Role","_key":"18782","_from":"407","_to":"13887"} +{"$label":"ACTS_IN","name":"Preston Webb","type":"Role","_key":"17599","_from":"407","_to":"13140"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"16724","_from":"407","_to":"12611"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"16228","_from":"407","_to":"12315"} +{"$label":"ACTS_IN","name":"Ponyboy Curtis","type":"Role","_key":"3279","_from":"407","_to":"2809"} +{"$label":"DIRECTED","_key":"108408","_from":"407","_to":"64094"} +{"$label":"DIRECTED","_key":"107097","_from":"407","_to":"63150"} +{"$label":"ACTS_IN","name":"Lynne Wood","type":"Role","_key":"89104","_from":"412","_to":"52781"} +{"$label":"ACTS_IN","name":"Karen White","type":"Role","_key":"68981","_from":"412","_to":"42233"} +{"$label":"ACTS_IN","name":"Patricia Ann Bradley","type":"Role","_key":"65726","_from":"412","_to":"40696"} +{"$label":"ACTS_IN","name":"Donna Trenton","type":"Role","_key":"63635","_from":"412","_to":"39810"} +{"$label":"ACTS_IN","name":"Ethel Hoss","type":"Role","_key":"59434","_from":"412","_to":"37532"} +{"$label":"ACTS_IN","name":"Helen Brown","type":"Role","_key":"29309","_from":"412","_to":"20816"} +{"$label":"ACTS_IN","name":"Cynthia Strode","type":"Role","_key":"18122","_from":"412","_to":"13441"} +{"$label":"ACTS_IN","name":"Elly May Clampett","type":"Role","_key":"67508","_from":"413","_to":"41572"} +{"$label":"ACTS_IN","name":"Aurora Ash","type":"Role","_key":"66090","_from":"413","_to":"40893"} +{"$label":"ACTS_IN","name":"Katherine Verdoux","type":"Role","_key":"53817","_from":"413","_to":"34672"} +{"$label":"ACTS_IN","name":"Jordan Tate","type":"Role","_key":"51051","_from":"413","_to":"33312"} +{"$label":"ACTS_IN","name":"Stephanie Potts","type":"Role","_key":"20265","_from":"413","_to":"14861"} +{"$label":"ACTS_IN","name":"Troy Casse","type":"Role","_key":"499","_from":"430","_to":"414"} +{"$label":"ACTS_IN","name":"Alicia Casse","type":"Role","_key":"498","_from":"429","_to":"414"} +{"$label":"ACTS_IN","name":"Miguel Casse","type":"Role","_key":"497","_from":"428","_to":"414"} +{"$label":"ACTS_IN","name":"Dr. Brackish Okun","type":"Role","_key":"496","_from":"427","_to":"414"} +{"$label":"ACTS_IN","name":"Marty Gilbert","type":"Role","_key":"494","_from":"426","_to":"414"} +{"$label":"ACTS_IN","name":"Albert Nimzicki","type":"Role","_key":"493","_from":"425","_to":"414"} +{"$label":"ACTS_IN","name":"Jasmine Dubrow","type":"Role","_key":"492","_from":"424","_to":"414"} +{"$label":"ACTS_IN","name":"Constance Spano","type":"Role","_key":"491","_from":"423","_to":"414"} +{"$label":"ACTS_IN","name":"Russell Casse","type":"Role","_key":"490","_from":"422","_to":"414"} +{"$label":"ACTS_IN","name":"General William Grey","type":"Role","_key":"489","_from":"421","_to":"414"} +{"$label":"ACTS_IN","name":"Julius Levinson","type":"Role","_key":"488","_from":"420","_to":"414"} +{"$label":"ACTS_IN","name":"First Lady Marilyn Whitmore","type":"Role","_key":"487","_from":"419","_to":"414"} +{"$label":"ACTS_IN","name":"David Levinson","type":"Role","_key":"486","_from":"418","_to":"414"} +{"$label":"ACTS_IN","name":"President Thomas J. Whitmore","type":"Role","_key":"485","_from":"417","_to":"414"} +{"$label":"ACTS_IN","name":"Captain Steven Hiller","type":"Role","_key":"484","_from":"416","_to":"414"} +{"$label":"DIRECTED","_key":"483","_from":"415","_to":"414"} +{"$label":"DIRECTED","_key":"98831","_from":"415","_to":"58224"} +{"$label":"DIRECTED","_key":"66435","_from":"415","_to":"41074"} +{"$label":"DIRECTED","_key":"53289","_from":"415","_to":"34455"} +{"$label":"DIRECTED","_key":"47323","_from":"415","_to":"31165"} +{"$label":"DIRECTED","_key":"45683","_from":"415","_to":"30236"} +{"$label":"DIRECTED","_key":"24357","_from":"415","_to":"17630"} +{"$label":"DIRECTED","_key":"18840","_from":"415","_to":"13914"} +{"$label":"DIRECTED","_key":"17603","_from":"415","_to":"13147"} +{"$label":"DIRECTED","_key":"11087","_from":"415","_to":"8755"} +{"$label":"DIRECTED","_key":"5461","_from":"415","_to":"4649"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"113772","_from":"416","_to":"67043"} +{"$label":"ACTS_IN","name":"Taharqa","type":"Role","_key":"91789","_from":"416","_to":"54151"} +{"$label":"ACTS_IN","name":"Tea Cake","type":"Role","_key":"88147","_from":"416","_to":"52302"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"69118","_from":"416","_to":"42289"} +{"$label":"ACTS_IN","name":"Oscar (voice)","type":"Role","_key":"64043","_from":"416","_to":"39973"} +{"$label":"ACTS_IN","name":"Robert Clayton Dean","type":"Role","_key":"56932","_from":"416","_to":"36140"} +{"$label":"ACTS_IN","name":"Det. Mike Lowrey","type":"Role","_key":"56203","_from":"416","_to":"35707"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54561","_from":"416","_to":"34963"} +{"$label":"ACTS_IN","name":"Detective Mike Lowrey","type":"Role","_key":"51715","_from":"416","_to":"33743"} +{"$label":"ACTS_IN","name":"John Hancock","type":"Role","_key":"51650","_from":"416","_to":"33701"} +{"$label":"ACTS_IN","name":"Cassius Clay","type":"Role","_key":"50068","_from":"416","_to":"32759"} +{"$label":"ACTS_IN","name":"Alex 'Hitch' Hitchens","type":"Role","_key":"50052","_from":"416","_to":"32755"} +{"$label":"ACTS_IN","name":"Capt. James West","type":"Role","_key":"50044","_from":"416","_to":"32751"} +{"$label":"ACTS_IN","name":"Robert Neville","type":"Role","_key":"43612","_from":"416","_to":"29124"} +{"$label":"ACTS_IN","name":"Bagger Vance","type":"Role","_key":"35132","_from":"416","_to":"23946"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"17840","_from":"416","_to":"13287"} +{"$label":"ACTS_IN","name":"Chris Gardner","type":"Role","_key":"12953","_from":"416","_to":"10106"} +{"$label":"ACTS_IN","name":"Agent Jay","type":"Role","_key":"586","_from":"416","_to":"498"} +{"$label":"ACTS_IN","name":"James Edwards \/ Agent J","type":"Role","_key":"570","_from":"416","_to":"483"} +{"$label":"ACTS_IN","name":"Peter Lichten","type":"Role","_key":"118636","_from":"417","_to":"69753"} +{"$label":"ACTS_IN","name":"Hank Greene","type":"Role","_key":"113714","_from":"417","_to":"67017"} +{"$label":"ACTS_IN","name":"Daryl Zero","type":"Role","_key":"107490","_from":"417","_to":"63424"} +{"$label":"ACTS_IN","name":"Bryan Denton","type":"Role","_key":"103910","_from":"417","_to":"61125"} +{"$label":"ACTS_IN","name":"Jim Barrett","type":"Role","_key":"98031","_from":"417","_to":"57725"} +{"$label":"ACTS_IN","name":"Ed Masterson","type":"Role","_key":"88375","_from":"417","_to":"52390"} +{"$label":"ACTS_IN","name":"Earl Mott","type":"Role","_key":"88328","_from":"417","_to":"52377"} +{"$label":"ACTS_IN","name":"Edmund French","type":"Role","_key":"71775","_from":"417","_to":"43442"} +{"$label":"ACTS_IN","name":"Dennis Alan","type":"Role","_key":"70214","_from":"417","_to":"42794"} +{"$label":"ACTS_IN","name":"Bob Hinson","type":"Role","_key":"68926","_from":"417","_to":"42198"} +{"$label":"ACTS_IN","name":"Krugsby","type":"Role","_key":"66681","_from":"417","_to":"41201"} +{"$label":"ACTS_IN","name":"Sam Hallaway","type":"Role","_key":"66561","_from":"417","_to":"41149"} +{"$label":"ACTS_IN","name":"Detective Pat Lakewood","type":"Role","_key":"65760","_from":"417","_to":"40707"} +{"$label":"ACTS_IN","name":"Jack Wells","type":"Role","_key":"57180","_from":"417","_to":"36281"} +{"$label":"ACTS_IN","name":"Morgan Banner","type":"Role","_key":"56518","_from":"417","_to":"35892"} +{"$label":"ACTS_IN","name":"Jason Slocumb","type":"Role","_key":"55607","_from":"417","_to":"35408"} +{"$label":"ACTS_IN","name":"Dr. James Harvey","type":"Role","_key":"51000","_from":"417","_to":"33288"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"48266","_from":"417","_to":"31704"} +{"$label":"ACTS_IN","name":"Captain Korso","type":"Role","_key":"46692","_from":"417","_to":"30828"} +{"$label":"ACTS_IN","name":"Dr. Rex Martin","type":"Role","_key":"40198","_from":"417","_to":"27133"} +{"$label":"ACTS_IN","name":"Henry Hale","type":"Role","_key":"30567","_from":"417","_to":"21488"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"19636","_from":"417","_to":"14529"} +{"$label":"ACTS_IN","name":"Jack Callaghan","type":"Role","_key":"17951","_from":"417","_to":"13353"} +{"$label":"ACTS_IN","name":"Peter Kirk","type":"Role","_key":"17098","_from":"417","_to":"12813"} +{"$label":"ACTS_IN","name":"Orin Meecham","type":"Role","_key":"11834","_from":"417","_to":"9282"} +{"$label":"ACTS_IN","name":"Lone Starr","type":"Role","_key":"11414","_from":"417","_to":"8985"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"10196","_from":"417","_to":"8139"} +{"$label":"ACTS_IN","name":"Fred Madison","type":"Role","_key":"7597","_from":"417","_to":"6321"} +{"$label":"ACTS_IN","name":"Adam Stein","type":"Role","_key":"116507","_from":"418","_to":"68578"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"115266","_from":"418","_to":"67870"} +{"$label":"ACTS_IN","name":"Mike Rudell","type":"Role","_key":"103964","_from":"418","_to":"61155"} +{"$label":"ACTS_IN","name":"Donald Ripley","type":"Role","_key":"90921","_from":"418","_to":"53634"} +{"$label":"ACTS_IN","name":"Michael Gold","type":"Role","_key":"90273","_from":"418","_to":"53368"} +{"$label":"ACTS_IN","name":"Jack Bellicec","type":"Role","_key":"72361","_from":"418","_to":"43697"} +{"$label":"ACTS_IN","name":"New Jersey","type":"Role","_key":"69505","_from":"418","_to":"42461"} +{"$label":"ACTS_IN","name":"Ed Okin","type":"Role","_key":"69215","_from":"418","_to":"42327"} +{"$label":"ACTS_IN","name":"Professor Brody","type":"Role","_key":"67149","_from":"418","_to":"41435"} +{"$label":"ACTS_IN","name":"Stewart","type":"Role","_key":"57677","_from":"418","_to":"36513"} +{"$label":"ACTS_IN","name":"Ricky Hayman","type":"Role","_key":"55932","_from":"418","_to":"35572"} +{"$label":"ACTS_IN","name":"D.H. Banes","type":"Role","_key":"55603","_from":"418","_to":"35408"} +{"$label":"ACTS_IN","name":"Seth Brundle","type":"Role","_key":"53778","_from":"418","_to":"34659"} +{"$label":"ACTS_IN","name":"Tricycle Man","type":"Role","_key":"26146","_from":"418","_to":"18778"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"19211","_from":"418","_to":"14203"} +{"$label":"ACTS_IN","name":"Lacey Party Guest","type":"Role","_key":"8487","_from":"418","_to":"6916"} +{"$label":"ACTS_IN","name":"Alistair Hennessey","type":"Role","_key":"5285","_from":"418","_to":"4483"} +{"$label":"ACTS_IN","name":"Dr. Ian Malcolm","type":"Role","_key":"4514","_from":"418","_to":"3851"} +{"$label":"ACTS_IN","name":"Dr. Ian Malcolm","type":"Role","_key":"4505","_from":"418","_to":"3842"} +{"$label":"ACTS_IN","name":"Jenny Bell","type":"Role","_key":"121230","_from":"419","_to":"71215"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"95930","_from":"419","_to":"56415"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"20400","_from":"419","_to":"14934"} +{"$label":"ACTS_IN","name":"Stands With A Fist","type":"Role","_key":"6952","_from":"419","_to":"5833"} +{"$label":"ACTS_IN","name":"Mrs. Rose Darko","type":"Role","_key":"2246","_from":"419","_to":"1972"} +{"$label":"ACTS_IN","name":"Arthur Pope \/ Paul Manfield","type":"Role","_key":"115270","_from":"420","_to":"67874"} +{"$label":"ACTS_IN","name":"Dr. Tyrone C. Berger","type":"Role","_key":"109653","_from":"420","_to":"64764"} +{"$label":"ACTS_IN","name":"Helinger","type":"Role","_key":"5645","_from":"420","_to":"4805"} +{"$label":"ACTS_IN","name":"Lt. Bennish","type":"Role","_key":"118074","_from":"421","_to":"69396"} +{"$label":"ACTS_IN","name":"Gordon Vette","type":"Role","_key":"108635","_from":"421","_to":"64202"} +{"$label":"ACTS_IN","name":"Pappy Jack","type":"Role","_key":"108149","_from":"421","_to":"63916"} +{"$label":"ACTS_IN","name":"\"Mac\" MacClaren","type":"Role","_key":"100452","_from":"421","_to":"59228"} +{"$label":"ACTS_IN","name":"Sam Ransom","type":"Role","_key":"88894","_from":"421","_to":"52664"} +{"$label":"ACTS_IN","name":"Marches Gonzaga","type":"Role","_key":"71530","_from":"421","_to":"43342"} +{"$label":"ACTS_IN","name":"Dr. Bill Raymond","type":"Role","_key":"64188","_from":"421","_to":"40047"} +{"$label":"ACTS_IN","name":"Jared Tolson","type":"Role","_key":"62300","_from":"421","_to":"39249"} +{"$label":"ACTS_IN","name":"Mackey","type":"Role","_key":"59313","_from":"421","_to":"37462"} +{"$label":"ACTS_IN","name":"Feldman","type":"Role","_key":"58166","_from":"421","_to":"36795"} +{"$label":"ACTS_IN","name":"McBainbridge","type":"Role","_key":"55934","_from":"421","_to":"35572"} +{"$label":"ACTS_IN","name":"Al Marchione","type":"Role","_key":"41620","_from":"421","_to":"27943"} +{"$label":"ACTS_IN","name":"Byron Mayo","type":"Role","_key":"22275","_from":"421","_to":"16205"} +{"$label":"ACTS_IN","name":"Angelo Pardipillo","type":"Role","_key":"22268","_from":"421","_to":"16204"} +{"$label":"ACTS_IN","name":"Michael Carlino","type":"Role","_key":"22255","_from":"421","_to":"16202"} +{"$label":"ACTS_IN","name":"MacMillan","type":"Role","_key":"19988","_from":"421","_to":"14711"} +{"$label":"ACTS_IN","name":"Eduardo Prizzi","type":"Role","_key":"18037","_from":"421","_to":"13405"} +{"$label":"ACTS_IN","name":"Jason Cutler","type":"Role","_key":"15769","_from":"421","_to":"12013"} +{"$label":"ACTS_IN","name":"Mr. Eddy \/ Dick Lauren","type":"Role","_key":"7629","_from":"421","_to":"6321"} +{"$label":"ACTS_IN","name":"Frank Lopez","type":"Role","_key":"1947","_from":"421","_to":"1689"} +{"$label":"ACTS_IN","name":"Peter Blunt","type":"Role","_key":"116465","_from":"422","_to":"68550"} +{"$label":"ACTS_IN","name":"Cappy von Trapment","type":"Role","_key":"113739","_from":"422","_to":"67025"} +{"$label":"ACTS_IN","name":"Seaman Larry Meadows","type":"Role","_key":"102319","_from":"422","_to":"60201"} +{"$label":"ACTS_IN","name":"Clell Miller","type":"Role","_key":"101543","_from":"422","_to":"59766"} +{"$label":"ACTS_IN","name":"Coach Lew Tuttle","type":"Role","_key":"98697","_from":"422","_to":"58170"} +{"$label":"ACTS_IN","name":"Reuben","type":"Role","_key":"97133","_from":"422","_to":"57139"} +{"$label":"ACTS_IN","name":"Alameda Slim","type":"Role","_key":"95961","_from":"422","_to":"56425"} +{"$label":"ACTS_IN","name":"Kenny Lee","type":"Role","_key":"95917","_from":"422","_to":"56411"} +{"$label":"ACTS_IN","name":"Michael McDougal","type":"Role","_key":"89199","_from":"422","_to":"52823"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"71815","_from":"422","_to":"43461"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"71603","_from":"422","_to":"43367"} +{"$label":"ACTS_IN","name":"Ishmael Boorg","type":"Role","_key":"70536","_from":"422","_to":"42930"} +{"$label":"ACTS_IN","name":"King Carlos IV","type":"Role","_key":"70351","_from":"422","_to":"42856"} +{"$label":"ACTS_IN","name":"Cousin Eddie","type":"Role","_key":"69749","_from":"422","_to":"42570"} +{"$label":"ACTS_IN","name":"Jimmy Booth","type":"Role","_key":"69162","_from":"422","_to":"42298"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"68838","_from":"422","_to":"42175"} +{"$label":"ACTS_IN","name":"Cousin Eddie","type":"Role","_key":"68186","_from":"422","_to":"41880"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"65295","_from":"422","_to":"40526"} +{"$label":"ACTS_IN","name":"Sheriff Loomis","type":"Role","_key":"59488","_from":"422","_to":"37565"} +{"$label":"ACTS_IN","name":"Pr\u00e4sident","type":"Role","_key":"44085","_from":"422","_to":"29393"} +{"$label":"ACTS_IN","name":"Cousin Eddie","type":"Role","_key":"39628","_from":"422","_to":"26781"} +{"$label":"ACTS_IN","name":"Ted Mirabeau","type":"Role","_key":"32894","_from":"422","_to":"22825"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"25211","_from":"422","_to":"18189"} +{"$label":"ACTS_IN","name":"Tim Dalander","type":"Role","_key":"18480","_from":"422","_to":"13689"} +{"$label":"ACTS_IN","name":"Dr. Michael McCann","type":"Role","_key":"18269","_from":"422","_to":"13554"} +{"$label":"ACTS_IN","name":"Joe Aguirre","type":"Role","_key":"2268","_from":"422","_to":"1994"} +{"$label":"ACTS_IN","name":"The First Lady","type":"Role","_key":"97880","_from":"423","_to":"57652"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"88341","_from":"423","_to":"52381"} +{"$label":"ACTS_IN","name":"Sheila O'Meara","type":"Role","_key":"31978","_from":"423","_to":"22296"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"19682","_from":"423","_to":"14552"} +{"$label":"ACTS_IN","name":"Andrea Collins","type":"Role","_key":"115780","_from":"424","_to":"68168"} +{"$label":"ACTS_IN","name":"Sergeant Louisa Morely","type":"Role","_key":"105213","_from":"424","_to":"61918"} +{"$label":"ACTS_IN","name":"Lucinda","type":"Role","_key":"100295","_from":"424","_to":"59140"} +{"$label":"ACTS_IN","name":"Dotty Tortoise (voice)","type":"Role","_key":"92041","_from":"424","_to":"54309"} +{"$label":"ACTS_IN","name":"Miss Gold","type":"Role","_key":"62701","_from":"424","_to":"39424"} +{"$label":"ACTS_IN","name":"Tamara Barclay","type":"Role","_key":"58143","_from":"424","_to":"36780"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"54659","_from":"424","_to":"35006"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"53644","_from":"424","_to":"34604"} +{"$label":"ACTS_IN","name":"Debi LeCure","type":"Role","_key":"44026","_from":"424","_to":"29363"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"22141","_from":"424","_to":"16146"} +{"$label":"ACTS_IN","name":"Ms. B. Haven","type":"Role","_key":"5264","_from":"424","_to":"4469"} +{"$label":"ACTS_IN","name":"Vernita Green\/Copperhead","type":"Role","_key":"5017","_from":"424","_to":"4270"} +{"$label":"ACTS_IN","name":"Vernita Green","type":"Role","_key":"1225","_from":"424","_to":"998"} +{"$label":"ACTS_IN","name":"FBI Agent Flynn","type":"Role","_key":"119941","_from":"425","_to":"70452"} +{"$label":"ACTS_IN","name":"William Wheaton","type":"Role","_key":"105794","_from":"425","_to":"62284"} +{"$label":"ACTS_IN","name":"William Wheaton","type":"Role","_key":"105750","_from":"425","_to":"62251"} +{"$label":"ACTS_IN","name":"Chief Lewellyn Brainard","type":"Role","_key":"98042","_from":"425","_to":"57729"} +{"$label":"ACTS_IN","name":"Fred Waters","type":"Role","_key":"97784","_from":"425","_to":"57584"} +{"$label":"ACTS_IN","name":"Mando, The Thin Man","type":"Role","_key":"66432","_from":"425","_to":"41073"} +{"$label":"ACTS_IN","name":"Sen. Bill Arnot","type":"Role","_key":"56607","_from":"425","_to":"35958"} +{"$label":"ACTS_IN","name":"Mr. Trask","type":"Role","_key":"54094","_from":"425","_to":"34781"} +{"$label":"ACTS_IN","name":"Howard Schaeffer","type":"Role","_key":"43563","_from":"425","_to":"29097"} +{"$label":"ACTS_IN","name":"Norwalk","type":"Role","_key":"41518","_from":"425","_to":"27891"} +{"$label":"ACTS_IN","name":"Jim Feingold","type":"Role","_key":"22502","_from":"425","_to":"16355"} +{"$label":"ACTS_IN","name":"Dr. Larry Banks","type":"Role","_key":"14161","_from":"425","_to":"10958"} +{"$label":"ACTS_IN","name":"Herbert Greenleaf","type":"Role","_key":"12160","_from":"425","_to":"9529"} +{"$label":"ACTS_IN","name":"Juba","type":"Role","_key":"114125","_from":"426","_to":"67211"} +{"$label":"ACTS_IN","name":"Yao","type":"Role","_key":"88976","_from":"426","_to":"52708"} +{"$label":"ACTS_IN","name":"Arnold Beckoff","type":"Role","_key":"49939","_from":"426","_to":"32693"} +{"$label":"ACTS_IN","name":"Uncle Frank Hillard","type":"Role","_key":"9278","_from":"426","_to":"7496"} +{"$label":"ACTS_IN","name":"Gil Godwyn","type":"Role","_key":"114846","_from":"427","_to":"67649"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105960","_from":"427","_to":"62384"} +{"$label":"ACTS_IN","name":"Devlin Bowman","type":"Role","_key":"97373","_from":"427","_to":"57346"} +{"$label":"ACTS_IN","name":"Brent Witherspoon","type":"Role","_key":"63481","_from":"427","_to":"39755"} +{"$label":"ACTS_IN","name":"Tommy Katzenbach","type":"Role","_key":"60946","_from":"427","_to":"38506"} +{"$label":"ACTS_IN","name":"Conan O'Brien","type":"Role","_key":"54084","_from":"427","_to":"34778"} +{"$label":"ACTS_IN","name":"Robert Gross","type":"Role","_key":"21998","_from":"427","_to":"16058"} +{"$label":"ACTS_IN","name":"Lieutenant Commander Data","type":"Role","_key":"2966","_from":"427","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"797","_from":"427","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"756","_from":"427","_to":"640"} +{"$label":"ACTS_IN","name":"Lt. Commander Data","type":"Role","_key":"742","_from":"427","_to":"629"} +{"$label":"ACTS_IN","name":"Taylor 'One Ball'","type":"Role","_key":"115166","_from":"428","_to":"67818"} +{"$label":"ACTS_IN","name":"Jordan White","type":"Role","_key":"95176","_from":"428","_to":"56000"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"91772","_from":"428","_to":"54142"} +{"$label":"ACTS_IN","name":"Blank","type":"Role","_key":"66504","_from":"428","_to":"41119"} +{"$label":"ACTS_IN","name":"Freb","type":"Role","_key":"55512","_from":"428","_to":"35364"} +{"$label":"ACTS_IN","name":"Jaime","type":"Role","_key":"28187","_from":"428","_to":"20190"} +{"$label":"ACTS_IN","name":"Dark Smith","type":"Role","_key":"15666","_from":"428","_to":"11948"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"2247","_from":"428","_to":"1972"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"101792","_from":"429","_to":"59906"} +{"$label":"ACTS_IN","name":"Lydia Hillard","type":"Role","_key":"9280","_from":"429","_to":"7496"} +{"$label":"ACTS_IN","name":"Young Male Addict","type":"Role","_key":"105115","_from":"430","_to":"61863"} +{"$label":"ACTS_IN","name":"Harper Alexander","type":"Role","_key":"66163","_from":"430","_to":"40931"} +{"$label":"ACTS_IN","name":"Stock Boy","type":"Role","_key":"57478","_from":"430","_to":"36426"} +{"$label":"ACTS_IN","name":"Lex","type":"Role","_key":"56674","_from":"430","_to":"35999"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"22540","_from":"430","_to":"16368"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"1493","_from":"430","_to":"1252"} +{"$label":"ACTS_IN","name":"Choi","type":"Role","_key":"515","_from":"447","_to":"431"} +{"$label":"ACTS_IN","name":"Rhineheart","type":"Role","_key":"514","_from":"446","_to":"431"} +{"$label":"ACTS_IN","name":"Agent Brown","type":"Role","_key":"513","_from":"445","_to":"431"} +{"$label":"ACTS_IN","name":"Dozer","type":"Role","_key":"512","_from":"444","_to":"431"} +{"$label":"ACTS_IN","name":"Mouse","type":"Role","_key":"511","_from":"443","_to":"431"} +{"$label":"ACTS_IN","name":"Cypher","type":"Role","_key":"510","_from":"442","_to":"431"} +{"$label":"ACTS_IN","name":"Switch","type":"Role","_key":"509","_from":"441","_to":"431"} +{"$label":"ACTS_IN","name":"Apoc","type":"Role","_key":"508","_from":"440","_to":"431"} +{"$label":"ACTS_IN","name":"Oracle","type":"Role","_key":"507","_from":"439","_to":"431"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"506","_from":"438","_to":"431"} +{"$label":"ACTS_IN","name":"Agent Smith","type":"Role","_key":"505","_from":"437","_to":"431"} +{"$label":"ACTS_IN","name":"Morpheus","type":"Role","_key":"504","_from":"436","_to":"431"} +{"$label":"ACTS_IN","name":"Trinity","type":"Role","_key":"503","_from":"435","_to":"431"} +{"$label":"ACTS_IN","name":"Neo","type":"Role","_key":"502","_from":"434","_to":"431"} +{"$label":"DIRECTED","_key":"501","_from":"433","_to":"431"} +{"$label":"DIRECTED","_key":"500","_from":"432","_to":"431"} +{"$label":"DIRECTED","_key":"53010","_from":"432","_to":"34330"} +{"$label":"DIRECTED","_key":"46805","_from":"432","_to":"30879"} +{"$label":"DIRECTED","_key":"551","_from":"432","_to":"461"} +{"$label":"DIRECTED","_key":"517","_from":"432","_to":"448"} +{"$label":"DIRECTED","_key":"53009","_from":"433","_to":"34330"} +{"$label":"DIRECTED","_key":"46806","_from":"433","_to":"30879"} +{"$label":"DIRECTED","_key":"550","_from":"433","_to":"461"} +{"$label":"DIRECTED","_key":"516","_from":"433","_to":"448"} +{"$label":"ACTS_IN","name":"Heaver","type":"Role","_key":"112325","_from":"434","_to":"66316"} +{"$label":"ACTS_IN","name":"Himself \/ Neo","type":"Role","_key":"100710","_from":"434","_to":"59386"} +{"$label":"ACTS_IN","name":"Jjaks Clayton","type":"Role","_key":"90844","_from":"434","_to":"53607"} +{"$label":"ACTS_IN","name":"Eddie Kasalivich","type":"Role","_key":"88155","_from":"434","_to":"52304"} +{"$label":"ACTS_IN","name":"Don Juan","type":"Role","_key":"73071","_from":"434","_to":"43966"} +{"$label":"ACTS_IN","name":"David Allen Griffin","type":"Role","_key":"65050","_from":"434","_to":"40419"} +{"$label":"ACTS_IN","name":"Shane Falco","type":"Role","_key":"62970","_from":"434","_to":"39541"} +{"$label":"ACTS_IN","name":"Klaatu","type":"Role","_key":"61660","_from":"434","_to":"38850"} +{"$label":"ACTS_IN","name":"Johnny Mnemonic","type":"Role","_key":"57607","_from":"434","_to":"36479"} +{"$label":"ACTS_IN","name":"Paul Sutton","type":"Role","_key":"54684","_from":"434","_to":"35016"} +{"$label":"ACTS_IN","name":"Neo (segment \"Kid's Story\") (voice)","type":"Role","_key":"51511","_from":"434","_to":"33580"} +{"$label":"ACTS_IN","name":"Julian Mercer","type":"Role","_key":"45392","_from":"434","_to":"30097"} +{"$label":"ACTS_IN","name":"Jonathan Harker","type":"Role","_key":"41768","_from":"434","_to":"28027"} +{"$label":"ACTS_IN","name":"Chris Nadeau","type":"Role","_key":"31959","_from":"434","_to":"22288"} +{"$label":"ACTS_IN","name":"Fred\/Bob Arctor","type":"Role","_key":"27473","_from":"434","_to":"19717"} +{"$label":"ACTS_IN","name":"Marlon James","type":"Role","_key":"25929","_from":"434","_to":"18645"} +{"$label":"ACTS_IN","name":"Donnie Barksdale","type":"Role","_key":"17814","_from":"434","_to":"13278"} +{"$label":"ACTS_IN","name":"Alex Wyler","type":"Role","_key":"17794","_from":"434","_to":"13267"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"16612","_from":"434","_to":"12548"} +{"$label":"ACTS_IN","name":"Kevin Lomax","type":"Role","_key":"15690","_from":"434","_to":"11965"} +{"$label":"ACTS_IN","name":"Siddharta","type":"Role","_key":"14939","_from":"434","_to":"11483"} +{"$label":"ACTS_IN","name":"Ted Logan \/ b\u00f6ser Ted","type":"Role","_key":"14652","_from":"434","_to":"11286"} +{"$label":"ACTS_IN","name":"Ted Logan","type":"Role","_key":"14642","_from":"434","_to":"11280"} +{"$label":"ACTS_IN","name":"Jack Traven","type":"Role","_key":"14498","_from":"434","_to":"11195"} +{"$label":"ACTS_IN","name":"Tod Higgins","type":"Role","_key":"13734","_from":"434","_to":"10659"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"13686","_from":"434","_to":"10627"} +{"$label":"ACTS_IN","name":"Detective Tom Ludlow","type":"Role","_key":"12373","_from":"434","_to":"9696"} +{"$label":"ACTS_IN","name":"FBI Special Agent John 'Johnny' Utah","type":"Role","_key":"11921","_from":"434","_to":"9350"} +{"$label":"ACTS_IN","name":"Le Chevalier Raphael Danceny","type":"Role","_key":"10212","_from":"434","_to":"8147"} +{"$label":"ACTS_IN","name":"John Constantine","type":"Role","_key":"6727","_from":"434","_to":"5655"} +{"$label":"ACTS_IN","name":"Scott Favor","type":"Role","_key":"5806","_from":"434","_to":"4938"} +{"$label":"ACTS_IN","name":"Neo","type":"Role","_key":"535","_from":"434","_to":"461"} +{"$label":"ACTS_IN","name":"Neo","type":"Role","_key":"518","_from":"434","_to":"448"} +{"$label":"ACTS_IN","name":"Detective Olivia Neal","type":"Role","_key":"118931","_from":"435","_to":"69895"} +{"$label":"ACTS_IN","name":"Diane Droggs Tennan","type":"Role","_key":"103963","_from":"435","_to":"61155"} +{"$label":"ACTS_IN","name":"Jerri Falls","type":"Role","_key":"97494","_from":"435","_to":"57409"} +{"$label":"ACTS_IN","name":"Helen Robinson","type":"Role","_key":"62396","_from":"435","_to":"39310"} +{"$label":"ACTS_IN","name":"Cmdr. Kate Bowman","type":"Role","_key":"51188","_from":"435","_to":"33388"} +{"$label":"ACTS_IN","name":"Julie Brecht","type":"Role","_key":"48692","_from":"435","_to":"31943"} +{"$label":"ACTS_IN","name":"Fran Kulok","type":"Role","_key":"48157","_from":"435","_to":"31644"} +{"$label":"ACTS_IN","name":"Kelly Hanson","type":"Role","_key":"46619","_from":"435","_to":"30792"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"4355","_from":"435","_to":"3718"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"1537","_from":"435","_to":"1307"} +{"$label":"ACTS_IN","name":"Caroline Clairmont","type":"Role","_key":"911","_from":"435","_to":"728"} +{"$label":"ACTS_IN","name":"Trinity","type":"Role","_key":"537","_from":"435","_to":"461"} +{"$label":"ACTS_IN","name":"Trinity","type":"Role","_key":"520","_from":"435","_to":"448"} +{"$label":"ACTS_IN","name":"Piper","type":"Role","_key":"116602","_from":"436","_to":"68642"} +{"$label":"ACTS_IN","name":"Othello","type":"Role","_key":"109178","_from":"436","_to":"64502"} +{"$label":"ACTS_IN","name":"Ike Turner","type":"Role","_key":"105821","_from":"436","_to":"62297"} +{"$label":"ACTS_IN","name":"Himself \/ Morpheus","type":"Role","_key":"100712","_from":"436","_to":"59386"} +{"$label":"ACTS_IN","name":"Dr. Larabee","type":"Role","_key":"96170","_from":"436","_to":"56522"} +{"$label":"ACTS_IN","name":"Archie Green","type":"Role","_key":"94258","_from":"436","_to":"55508"} +{"$label":"ACTS_IN","name":"Thrax (voice)","type":"Role","_key":"90588","_from":"436","_to":"53504"} +{"$label":"ACTS_IN","name":"Smoke","type":"Role","_key":"89057","_from":"436","_to":"52762"} +{"$label":"ACTS_IN","name":"Ahmat","type":"Role","_key":"71296","_from":"436","_to":"43254"} +{"$label":"ACTS_IN","name":"Edward Robinson","type":"Role","_key":"65370","_from":"436","_to":"40552"} +{"$label":"ACTS_IN","name":"Tad Gruzsa","type":"Role","_key":"63197","_from":"436","_to":"39632"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"60266","_from":"436","_to":"38013"} +{"$label":"ACTS_IN","name":"Lt. Charlie Stobbs","type":"Role","_key":"54977","_from":"436","_to":"35138"} +{"$label":"ACTS_IN","name":"Jimmy Jump","type":"Role","_key":"54665","_from":"436","_to":"35009"} +{"$label":"ACTS_IN","name":"Sheriff Tanny Brown","type":"Role","_key":"52338","_from":"436","_to":"34070"} +{"$label":"ACTS_IN","name":"Marion Bishop","type":"Role","_key":"51801","_from":"436","_to":"33802"} +{"$label":"ACTS_IN","name":"Captain Miller","type":"Role","_key":"49551","_from":"436","_to":"32447"} +{"$label":"ACTS_IN","name":"Cole Williams","type":"Role","_key":"47993","_from":"436","_to":"31575"} +{"$label":"ACTS_IN","name":"Baines","type":"Role","_key":"32932","_from":"436","_to":"22843"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32453","_from":"436","_to":"22571"} +{"$label":"ACTS_IN","name":"Silver Surfer (voice)","type":"Role","_key":"17155","_from":"436","_to":"12853"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"12433","_from":"436","_to":"9740"} +{"$label":"ACTS_IN","name":"Jason 'Furious' Styles","type":"Role","_key":"7760","_from":"436","_to":"6449"} +{"$label":"ACTS_IN","name":"Sergeant Whitey Powers","type":"Role","_key":"4485","_from":"436","_to":"3810"} +{"$label":"ACTS_IN","name":"Midget","type":"Role","_key":"3352","_from":"436","_to":"2869"} +{"$label":"ACTS_IN","name":"Tyrone 'Clean' Miller","type":"Role","_key":"1263","_from":"436","_to":"1039"} +{"$label":"ACTS_IN","name":"Morpheus","type":"Role","_key":"536","_from":"436","_to":"461"} +{"$label":"ACTS_IN","name":"Morpheus","type":"Role","_key":"519","_from":"436","_to":"448"} +{"$label":"ACTS_IN","name":"Eddie Rodney Fleming","type":"Role","_key":"121298","_from":"437","_to":"71269"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"102401","_from":"437","_to":"60259"} +{"$label":"ACTS_IN","name":"Himself \/ Agent Smith","type":"Role","_key":"100711","_from":"437","_to":"59386"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"96646","_from":"437","_to":"56840"} +{"$label":"ACTS_IN","name":"Lionel","type":"Role","_key":"59128","_from":"437","_to":"37329"} +{"$label":"ACTS_IN","name":"Noah the Elder","type":"Role","_key":"57337","_from":"437","_to":"36355"} +{"$label":"ACTS_IN","name":"Rex the Male Sheepdog (voice)","type":"Role","_key":"54935","_from":"437","_to":"35123"} +{"$label":"ACTS_IN","name":"Inspector Francis Abberline","type":"Role","_key":"47607","_from":"437","_to":"31370"} +{"$label":"ACTS_IN","name":"Anthony Belrose\/Mitzi Del Bra","type":"Role","_key":"23327","_from":"437","_to":"16903"} +{"$label":"ACTS_IN","name":"Megatron (voice)","type":"Role","_key":"16062","_from":"437","_to":"12202"} +{"$label":"ACTS_IN","name":"Johann Schmidt \/ The Red Skull","type":"Role","_key":"15417","_from":"437","_to":"11787"} +{"$label":"ACTS_IN","name":"William Rookwood","type":"Role","_key":"8766","_from":"437","_to":"7114"} +{"$label":"ACTS_IN","name":"Elrond","type":"Role","_key":"1036","_from":"437","_to":"826"} +{"$label":"ACTS_IN","name":"Elrond","type":"Role","_key":"1017","_from":"437","_to":"820"} +{"$label":"ACTS_IN","name":"Elrond","type":"Role","_key":"998","_from":"437","_to":"802"} +{"$label":"ACTS_IN","name":"Agent Smith","type":"Role","_key":"538","_from":"437","_to":"461"} +{"$label":"ACTS_IN","name":"Agent Smith","type":"Role","_key":"521","_from":"437","_to":"448"} +{"$label":"ACTS_IN","name":"War","type":"Role","_key":"109306","_from":"438","_to":"64573"} +{"$label":"ACTS_IN","name":"Oracle","type":"Role","_key":"522","_from":"439","_to":"448"} +{"$label":"ACTS_IN","name":"Nig Heke","type":"Role","_key":"6348","_from":"440","_to":"5366"} +{"$label":"ACTS_IN","name":"Snake","type":"Role","_key":"105497","_from":"442","_to":"62082"} +{"$label":"ACTS_IN","name":"Marshal Cosmo Renfro","type":"Role","_key":"72106","_from":"442","_to":"43588"} +{"$label":"ACTS_IN","name":"Mogan","type":"Role","_key":"71605","_from":"442","_to":"43367"} +{"$label":"ACTS_IN","name":"Norby","type":"Role","_key":"68573","_from":"442","_to":"42040"} +{"$label":"ACTS_IN","name":"Bound Man","type":"Role","_key":"57210","_from":"442","_to":"36289"} +{"$label":"ACTS_IN","name":"Captain C. Howard","type":"Role","_key":"56176","_from":"442","_to":"35707"} +{"$label":"ACTS_IN","name":"Ben Urich","type":"Role","_key":"54135","_from":"442","_to":"34788"} +{"$label":"ACTS_IN","name":"Guido","type":"Role","_key":"53268","_from":"442","_to":"34451"} +{"$label":"ACTS_IN","name":"Francis Fratelli","type":"Role","_key":"53219","_from":"442","_to":"34420"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"53006","_from":"442","_to":"34330"} +{"$label":"ACTS_IN","name":"Eddie Moscone","type":"Role","_key":"52003","_from":"442","_to":"33909"} +{"$label":"ACTS_IN","name":"Captain Howard","type":"Role","_key":"51705","_from":"442","_to":"33743"} +{"$label":"ACTS_IN","name":"Smitty","type":"Role","_key":"47314","_from":"442","_to":"31163"} +{"$label":"ACTS_IN","name":"Cosmo Renfro","type":"Role","_key":"37544","_from":"442","_to":"25451"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"36376","_from":"442","_to":"24671"} +{"$label":"ACTS_IN","name":"Teddy Gammell","type":"Role","_key":"1538","_from":"442","_to":"1307"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"96322","_from":"443","_to":"56600"} +{"$label":"ACTS_IN","name":"Pvt. Coombs","type":"Role","_key":"50646","_from":"443","_to":"33066"} +{"$label":"ACTS_IN","name":"Elan Sleazebaggano","type":"Role","_key":"711","_from":"443","_to":"601"} +{"$label":"ACTS_IN","name":"Stark","type":"Role","_key":"97350","_from":"445","_to":"57329"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"96631","_from":"445","_to":"56832"} +{"$label":"ACTS_IN","name":"Seraph","type":"Role","_key":"534","_from":"460","_to":"448"} +{"$label":"ACTS_IN","name":"Agent Thompson","type":"Role","_key":"533","_from":"459","_to":"448"} +{"$label":"ACTS_IN","name":"Commander Lock","type":"Role","_key":"532","_from":"458","_to":"448"} +{"$label":"ACTS_IN","name":"The Keymaker","type":"Role","_key":"531","_from":"457","_to":"448"} +{"$label":"ACTS_IN","name":"Agent Jackson","type":"Role","_key":"530","_from":"456","_to":"448"} +{"$label":"ACTS_IN","name":"Captain Ballard","type":"Role","_key":"529","_from":"455","_to":"448"} +{"$label":"ACTS_IN","name":"Agent Johnson","type":"Role","_key":"528","_from":"454","_to":"448"} +{"$label":"ACTS_IN","name":"Twin #1","type":"Role","_key":"527","_from":"453","_to":"448"} +{"$label":"ACTS_IN","name":"Twin #2","type":"Role","_key":"526","_from":"452","_to":"448"} +{"$label":"ACTS_IN","name":"Persephone","type":"Role","_key":"525","_from":"451","_to":"448"} +{"$label":"ACTS_IN","name":"The Merovingian","type":"Role","_key":"524","_from":"450","_to":"448"} +{"$label":"ACTS_IN","name":"The Architect","type":"Role","_key":"523","_from":"449","_to":"448"} +{"$label":"ACTS_IN","name":"The Architect","type":"Role","_key":"540","_from":"449","_to":"461"} +{"$label":"ACTS_IN","name":"Caspasian Speckler","type":"Role","_key":"111630","_from":"450","_to":"65904"} +{"$label":"ACTS_IN","name":"Docteur Emmanuel Fran\u00e7ois Xavier Bernier dit \/ Manu","type":"Role","_key":"104401","_from":"450","_to":"61415"} +{"$label":"ACTS_IN","name":"Saint-Georges","type":"Role","_key":"103284","_from":"450","_to":"60764"} +{"$label":"ACTS_IN","name":"Avery","type":"Role","_key":"97046","_from":"450","_to":"57091"} +{"$label":"ACTS_IN","name":"Finch","type":"Role","_key":"93387","_from":"450","_to":"55005"} +{"$label":"ACTS_IN","name":"Pierre Collier","type":"Role","_key":"62390","_from":"450","_to":"39307"} +{"$label":"ACTS_IN","name":"Lord Arnaut","type":"Role","_key":"54709","_from":"450","_to":"35025"} +{"$label":"ACTS_IN","name":"Darquandier","type":"Role","_key":"53474","_from":"450","_to":"34540"} +{"$label":"ACTS_IN","name":"Yves Massarde","type":"Role","_key":"46629","_from":"450","_to":"30794"} +{"$label":"ACTS_IN","name":"Racine","type":"Role","_key":"36084","_from":"450","_to":"24488"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"34381","_from":"450","_to":"23576"} +{"$label":"ACTS_IN","name":"Clerval","type":"Role","_key":"25213","_from":"450","_to":"18189"} +{"$label":"ACTS_IN","name":"Marc Duveyrier","type":"Role","_key":"23764","_from":"450","_to":"17230"} +{"$label":"ACTS_IN","name":"George Hedare","type":"Role","_key":"4368","_from":"450","_to":"3727"} +{"$label":"ACTS_IN","name":"F\u00e9lix Mar\u00e9chal","type":"Role","_key":"2637","_from":"450","_to":"2303"} +{"$label":"ACTS_IN","name":"The Merovingian","type":"Role","_key":"541","_from":"450","_to":"461"} +{"$label":"ACTS_IN","name":"Myrtille","type":"Role","_key":"118145","_from":"451","_to":"69440"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"117987","_from":"451","_to":"69354"} +{"$label":"ACTS_IN","name":"La belle vampiresse","type":"Role","_key":"96161","_from":"451","_to":"56513"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"90802","_from":"451","_to":"53582"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"90089","_from":"451","_to":"53280"} +{"$label":"ACTS_IN","name":"Malena Scordia","type":"Role","_key":"66365","_from":"451","_to":"41046"} +{"$label":"ACTS_IN","name":"Chantal Hearst","type":"Role","_key":"64095","_from":"451","_to":"40001"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"62719","_from":"451","_to":"39431"} +{"$label":"ACTS_IN","name":"Dr. Lena Fiore Kendricks","type":"Role","_key":"54741","_from":"451","_to":"35036"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"42874","_from":"451","_to":"28662"} +{"$label":"ACTS_IN","name":"Dracula's Bride # 1","type":"Role","_key":"41775","_from":"451","_to":"28027"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"35830","_from":"451","_to":"24328"} +{"$label":"ACTS_IN","name":"K\u00f6nigin","type":"Role","_key":"31749","_from":"451","_to":"22160"} +{"$label":"ACTS_IN","name":"Donna Quintano","type":"Role","_key":"29749","_from":"451","_to":"21064"} +{"$label":"ACTS_IN","name":"Cl\u00e9op\u00e2tre","type":"Role","_key":"24171","_from":"451","_to":"17515"} +{"$label":"ACTS_IN","name":"Pharaos Frau","type":"Role","_key":"21064","_from":"451","_to":"15413"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"11571","_from":"451","_to":"9092"} +{"$label":"ACTS_IN","name":"Maria Magdalena","type":"Role","_key":"7298","_from":"451","_to":"6084"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104982","_from":"455","_to":"61774"} +{"$label":"ACTS_IN","name":"Captain Ballard","type":"Role","_key":"542","_from":"455","_to":"461"} +{"$label":"ACTS_IN","name":"Grandpa Gohan","type":"Role","_key":"98856","_from":"457","_to":"58251"} +{"$label":"ACTS_IN","name":"Dr. Crab","type":"Role","_key":"16455","_from":"457","_to":"12429"} +{"$label":"ACTS_IN","name":"General Alak","type":"Role","_key":"13296","_from":"457","_to":"10353"} +{"$label":"ACTS_IN","name":"The Keymaker","type":"Role","_key":"543","_from":"457","_to":"461"} +{"$label":"ACTS_IN","name":"Det. Donald Bell","type":"Role","_key":"110775","_from":"458","_to":"65435"} +{"$label":"ACTS_IN","name":"Nathan Wright","type":"Role","_key":"101561","_from":"458","_to":"59773"} +{"$label":"ACTS_IN","name":"Tom Dilton (as Harry J. Lennix)","type":"Role","_key":"89055","_from":"458","_to":"52761"} +{"$label":"ACTS_IN","name":"FBI Agent Dray","type":"Role","_key":"57600","_from":"458","_to":"36473"} +{"$label":"ACTS_IN","name":"Robert Meary (Poetry teacher)","type":"Role","_key":"55980","_from":"458","_to":"35588"} +{"$label":"ACTS_IN","name":"Rich Charleton","type":"Role","_key":"48160","_from":"458","_to":"31644"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"16740","_from":"458","_to":"12618"} +{"$label":"ACTS_IN","name":"Joe Adams","type":"Role","_key":"14878","_from":"458","_to":"11433"} +{"$label":"ACTS_IN","name":"Commander Lock","type":"Role","_key":"544","_from":"458","_to":"461"} +{"$label":"ACTS_IN","name":"Agent Thompson","type":"Role","_key":"545","_from":"459","_to":"461"} +{"$label":"ACTS_IN","name":"Thug (as Sing Ngai)","type":"Role","_key":"117244","_from":"460","_to":"68965"} +{"$label":"ACTS_IN","name":"Wong (as Sing Ngai)","type":"Role","_key":"117047","_from":"460","_to":"68884"} +{"$label":"ACTS_IN","name":"Sung Ching Su","type":"Role","_key":"66258","_from":"460","_to":"40989"} +{"$label":"ACTS_IN","name":"Yuanjia's Father","type":"Role","_key":"47167","_from":"460","_to":"31088"} +{"$label":"ACTS_IN","name":"Jade Warlord","type":"Role","_key":"15297","_from":"460","_to":"11705"} +{"$label":"ACTS_IN","name":"Seraph","type":"Role","_key":"549","_from":"460","_to":"461"} +{"$label":"ACTS_IN","name":"Cas","type":"Role","_key":"548","_from":"465","_to":"461"} +{"$label":"ACTS_IN","name":"Niobe","type":"Role","_key":"547","_from":"464","_to":"461"} +{"$label":"ACTS_IN","name":"Link","type":"Role","_key":"546","_from":"463","_to":"461"} +{"$label":"ACTS_IN","name":"Oracle","type":"Role","_key":"539","_from":"462","_to":"461"} +{"$label":"ACTS_IN","name":"Orlando","type":"Role","_key":"110250","_from":"463","_to":"65163"} +{"$label":"ACTS_IN","name":"Julian Murch","type":"Role","_key":"107643","_from":"463","_to":"63536"} +{"$label":"ACTS_IN","name":"Monica Jones","type":"Role","_key":"101197","_from":"463","_to":"59608"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"53829","_from":"463","_to":"34676"} +{"$label":"ACTS_IN","name":"Flynn","type":"Role","_key":"13830","_from":"463","_to":"10733"} +{"$label":"ACTS_IN","name":"Mercutio","type":"Role","_key":"5665","_from":"463","_to":"4828"} +{"$label":"ACTS_IN","name":"Alex Fisher","type":"Role","_key":"97900","_from":"464","_to":"57663"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"63850","_from":"464","_to":"39906"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"54399","_from":"464","_to":"34892"} +{"$label":"ACTS_IN","name":"Stony","type":"Role","_key":"53642","_from":"464","_to":"34604"} +{"$label":"ACTS_IN","name":"Carla Purty","type":"Role","_key":"53149","_from":"464","_to":"34385"} +{"$label":"ACTS_IN","name":"Jeryline","type":"Role","_key":"52326","_from":"464","_to":"34061"} +{"$label":"ACTS_IN","name":"Sonji","type":"Role","_key":"50060","_from":"464","_to":"32759"} +{"$label":"ACTS_IN","name":"Janeane Johnson","type":"Role","_key":"20599","_from":"464","_to":"15075"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"13622","_from":"464","_to":"10587"} +{"$label":"ACTS_IN","name":"Gloria (voice)","type":"Role","_key":"11365","_from":"464","_to":"8959"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"108691","_from":"465","_to":"64246"} +{"$label":"ACTS_IN","name":"Brenda Cooper","type":"Role","_key":"100249","_from":"465","_to":"59123"} +{"$label":"ACTS_IN","name":"Aicha","type":"Role","_key":"71300","_from":"465","_to":"43254"} +{"$label":"ACTS_IN","name":"Kanuthia","type":"Role","_key":"567","_from":"482","_to":"466"} +{"$label":"ACTS_IN","name":"Belknap, farm manager","type":"Role","_key":"566","_from":"481","_to":"466"} +{"$label":"ACTS_IN","name":"Juma","type":"Role","_key":"565","_from":"480","_to":"466"} +{"$label":"ACTS_IN","name":"Sir Joseph","type":"Role","_key":"564","_from":"479","_to":"466"} +{"$label":"ACTS_IN","name":"Lord Belfield","type":"Role","_key":"563","_from":"478","_to":"466"} +{"$label":"ACTS_IN","name":"Lady Belfield","type":"Role","_key":"562","_from":"477","_to":"466"} +{"$label":"ACTS_IN","name":"Felicity","type":"Role","_key":"561","_from":"476","_to":"466"} +{"$label":"ACTS_IN","name":"Lord Delamere","type":"Role","_key":"560","_from":"475","_to":"466"} +{"$label":"ACTS_IN","name":"Kinanjui","type":"Role","_key":"559","_from":"474","_to":"466"} +{"$label":"ACTS_IN","name":"Kamante","type":"Role","_key":"558","_from":"473","_to":"466"} +{"$label":"ACTS_IN","name":"Farah","type":"Role","_key":"557","_from":"472","_to":"466"} +{"$label":"ACTS_IN","name":"Berkeley Cole","type":"Role","_key":"556","_from":"471","_to":"466"} +{"$label":"ACTS_IN","name":"Baron Bror Blixen\/Baron Hans Blixen","type":"Role","_key":"555","_from":"470","_to":"466"} +{"$label":"ACTS_IN","name":"Denys George Finch Hatton","type":"Role","_key":"554","_from":"469","_to":"466"} +{"$label":"ACTS_IN","name":"Karen Christence Dinesen Blixen","type":"Role","_key":"553","_from":"468","_to":"466"} +{"$label":"DIRECTED","_key":"552","_from":"467","_to":"466"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120136","_from":"467","_to":"70561"} +{"$label":"ACTS_IN","name":"Carl Broman","type":"Role","_key":"90641","_from":"467","_to":"53520"} +{"$label":"ACTS_IN","name":"Thomas Bailey Sr.","type":"Role","_key":"65584","_from":"467","_to":"40642"} +{"$label":"ACTS_IN","name":"Brian Sobinski","type":"Role","_key":"59974","_from":"467","_to":"37860"} +{"$label":"ACTS_IN","name":"Marty Bach","type":"Role","_key":"32757","_from":"467","_to":"22745"} +{"$label":"ACTS_IN","name":"Stephen Delano","type":"Role","_key":"13614","_from":"467","_to":"10583"} +{"$label":"ACTS_IN","name":"Victor Ziegler","type":"Role","_key":"4753","_from":"467","_to":"4061"} +{"$label":"DIRECTED","_key":"120114","_from":"467","_to":"70541"} +{"$label":"DIRECTED","_key":"90642","_from":"467","_to":"53520"} +{"$label":"DIRECTED","_key":"73015","_from":"467","_to":"43941"} +{"$label":"DIRECTED","_key":"72879","_from":"467","_to":"43895"} +{"$label":"DIRECTED","_key":"72431","_from":"467","_to":"43719"} +{"$label":"DIRECTED","_key":"68149","_from":"467","_to":"41856"} +{"$label":"DIRECTED","_key":"61860","_from":"467","_to":"38938"} +{"$label":"DIRECTED","_key":"54801","_from":"467","_to":"35059"} +{"$label":"DIRECTED","_key":"2743","_from":"467","_to":"2379"} +{"$label":"ACTS_IN","name":"Joanna Silver","type":"Role","_key":"114680","_from":"468","_to":"67558"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"113709","_from":"468","_to":"67013"} +{"$label":"ACTS_IN","name":"Sophie Zawistowski","type":"Role","_key":"105814","_from":"468","_to":"62294"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105780","_from":"468","_to":"62279"} +{"$label":"ACTS_IN","name":"Senator Eleanor Prentiss Shaw (D-VA)","type":"Role","_key":"100439","_from":"468","_to":"59224"} +{"$label":"ACTS_IN","name":"Sister Aloysius Beauvier","type":"Role","_key":"99806","_from":"468","_to":"58877"} +{"$label":"ACTS_IN","name":"Rachel Samstrat","type":"Role","_key":"96913","_from":"468","_to":"57008"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"90120","_from":"468","_to":"53294"} +{"$label":"ACTS_IN","name":"Karen Silkwood","type":"Role","_key":"89915","_from":"468","_to":"53206"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"88582","_from":"468","_to":"52494"} +{"$label":"ACTS_IN","name":"Joanna Kramer","type":"Role","_key":"88030","_from":"468","_to":"52258"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"71914","_from":"468","_to":"43508"} +{"$label":"ACTS_IN","name":"Aunt Josephine","type":"Role","_key":"71863","_from":"468","_to":"43486"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"71156","_from":"468","_to":"43190"} +{"$label":"ACTS_IN","name":"Mary Fisher","type":"Role","_key":"68197","_from":"468","_to":"41884"} +{"$label":"ACTS_IN","name":"Mrs. Fox (voice)","type":"Role","_key":"62554","_from":"468","_to":"39370"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"57833","_from":"468","_to":"36606"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"57136","_from":"468","_to":"36267"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"54455","_from":"468","_to":"34916"} +{"$label":"ACTS_IN","name":"Madeline Ashton","type":"Role","_key":"53439","_from":"468","_to":"34530"} +{"$label":"ACTS_IN","name":"Gail Hartman","type":"Role","_key":"51851","_from":"468","_to":"33833"} +{"$label":"ACTS_IN","name":"Martha Mitchell","type":"Role","_key":"51600","_from":"468","_to":"33668"} +{"$label":"ACTS_IN","name":"Lila Ross","type":"Role","_key":"41268","_from":"468","_to":"27749"} +{"$label":"ACTS_IN","name":"Kate Mundy","type":"Role","_key":"37036","_from":"468","_to":"25107"} +{"$label":"ACTS_IN","name":"Corrine Whitman","type":"Role","_key":"36018","_from":"468","_to":"24454"} +{"$label":"ACTS_IN","name":"Janine Roth","type":"Role","_key":"32226","_from":"468","_to":"22461"} +{"$label":"ACTS_IN","name":"Susan Orlean","type":"Role","_key":"23309","_from":"468","_to":"16899"} +{"$label":"ACTS_IN","name":"Lisa Metzger","type":"Role","_key":"20330","_from":"468","_to":"14890"} +{"$label":"ACTS_IN","name":"Clara del Valle Trueba","type":"Role","_key":"19777","_from":"468","_to":"14606"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"8392","_from":"468","_to":"6860"} +{"$label":"ACTS_IN","name":"Francesca Johnson","type":"Role","_key":"8286","_from":"468","_to":"6789"} +{"$label":"ACTS_IN","name":"Blue Mecha (voice)","type":"Role","_key":"7703","_from":"468","_to":"6393"} +{"$label":"ACTS_IN","name":"Clarissa Vaughan","type":"Role","_key":"7071","_from":"468","_to":"5922"} +{"$label":"ACTS_IN","name":"Miranda Priestly","type":"Role","_key":"4808","_from":"468","_to":"4111"} +{"$label":"ACTS_IN","name":"Waldo Pepper","type":"Role","_key":"121062","_from":"469","_to":"71097"} +{"$label":"ACTS_IN","name":"Paul Bratter","type":"Role","_key":"114221","_from":"469","_to":"67279"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"107238","_from":"469","_to":"63245"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"104916","_from":"469","_to":"61736"} +{"$label":"ACTS_IN","name":"Joseph Turner","type":"Role","_key":"73016","_from":"469","_to":"43941"} +{"$label":"ACTS_IN","name":"Jeremiah Johnson","type":"Role","_key":"72875","_from":"469","_to":"43895"} +{"$label":"ACTS_IN","name":"Roy Hobbs","type":"Role","_key":"69583","_from":"469","_to":"42485"} +{"$label":"ACTS_IN","name":"Norman 'Sonny' Steele","type":"Role","_key":"68145","_from":"469","_to":"41856"} +{"$label":"ACTS_IN","name":"Jay Gatsby","type":"Role","_key":"67460","_from":"469","_to":"41555"} +{"$label":"ACTS_IN","name":"Wayne Hayes","type":"Role","_key":"65384","_from":"469","_to":"40553"} +{"$label":"ACTS_IN","name":"Hubbell Gardner","type":"Role","_key":"61862","_from":"469","_to":"38938"} +{"$label":"ACTS_IN","name":"Ike the Horse","type":"Role","_key":"58983","_from":"469","_to":"37240"} +{"$label":"ACTS_IN","name":"Tom Logan","type":"Role","_key":"58233","_from":"469","_to":"36833"} +{"$label":"ACTS_IN","name":"Warren Justice","type":"Role","_key":"52999","_from":"469","_to":"34329"} +{"$label":"ACTS_IN","name":"Johnny Hooker","type":"Role","_key":"52797","_from":"469","_to":"34244"} +{"$label":"ACTS_IN","name":"Maj. Julian Cook","type":"Role","_key":"40262","_from":"469","_to":"27164"} +{"$label":"ACTS_IN","name":"Dr. Stephen Malley","type":"Role","_key":"32225","_from":"469","_to":"22461"} +{"$label":"ACTS_IN","name":"John Gage","type":"Role","_key":"31989","_from":"469","_to":"22300"} +{"$label":"ACTS_IN","name":"Martin Bishop","type":"Role","_key":"20394","_from":"469","_to":"14934"} +{"$label":"ACTS_IN","name":"Lt. Gen. Eugene Irwin","type":"Role","_key":"18303","_from":"469","_to":"13579"} +{"$label":"ACTS_IN","name":"Einar Gilkyson","type":"Role","_key":"16894","_from":"469","_to":"12705"} +{"$label":"ACTS_IN","name":"Henry Brubaker","type":"Role","_key":"14387","_from":"469","_to":"11128"} +{"$label":"ACTS_IN","name":"Nathan D. Muir","type":"Role","_key":"13599","_from":"469","_to":"10575"} +{"$label":"ACTS_IN","name":"Bob Woodward","type":"Role","_key":"10607","_from":"469","_to":"8423"} +{"$label":"ACTS_IN","name":"Sundance Kid","type":"Role","_key":"7675","_from":"469","_to":"6376"} +{"$label":"ACTS_IN","name":"Tom Booker","type":"Role","_key":"6512","_from":"469","_to":"5515"} +{"$label":"DIRECTED","_key":"109650","_from":"469","_to":"64764"} +{"$label":"DIRECTED","_key":"94725","_from":"469","_to":"55796"} +{"$label":"DIRECTED","_key":"69936","_from":"469","_to":"42673"} +{"$label":"DIRECTED","_key":"35135","_from":"469","_to":"23946"} +{"$label":"DIRECTED","_key":"32224","_from":"469","_to":"22461"} +{"$label":"DIRECTED","_key":"6532","_from":"469","_to":"5515"} +{"$label":"DIRECTED","_key":"4105","_from":"469","_to":"3506"} +{"$label":"ACTS_IN","name":"Alex Larson","type":"Role","_key":"88834","_from":"470","_to":"52638"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"72794","_from":"470","_to":"43862"} +{"$label":"ACTS_IN","name":"Hendrik Hoefgen","type":"Role","_key":"72715","_from":"470","_to":"43818"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"61396","_from":"470","_to":"38729"} +{"$label":"ACTS_IN","name":"Pascal\/Claudandus","type":"Role","_key":"51834","_from":"470","_to":"33824"} +{"$label":"ACTS_IN","name":"Kaiser Frabz Joseph","type":"Role","_key":"47282","_from":"470","_to":"31151"} +{"$label":"ACTS_IN","name":"Danton","type":"Role","_key":"30205","_from":"470","_to":"21284"} +{"$label":"ACTS_IN","name":"SS-Untersturmf\u00fchrer Max J\u00e4ger","type":"Role","_key":"68785","_from":"471","_to":"42145"} +{"$label":"ACTS_IN","name":"Bill Tanner","type":"Role","_key":"8589","_from":"471","_to":"6980"} +{"$label":"ACTS_IN","name":"Dr. Raswani","type":"Role","_key":"45271","_from":"472","_to":"30038"} +{"$label":"ACTS_IN","name":"Emeric Belasco","type":"Role","_key":"107885","_from":"475","_to":"63712"} +{"$label":"ACTS_IN","name":"Arthur Holmwood","type":"Role","_key":"72466","_from":"475","_to":"43729"} +{"$label":"ACTS_IN","name":"Schoonbacher","type":"Role","_key":"70222","_from":"475","_to":"42794"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"40903","_from":"475","_to":"27513"} +{"$label":"ACTS_IN","name":"Sir Bernard Hemmings","type":"Role","_key":"34765","_from":"475","_to":"23765"} +{"$label":"ACTS_IN","name":"Elder Gutknecht (voice)","type":"Role","_key":"28976","_from":"475","_to":"20688"} +{"$label":"ACTS_IN","name":"Notar Hardenbrook","type":"Role","_key":"22608","_from":"475","_to":"16413"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"5260","_from":"475","_to":"4469"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"5253","_from":"475","_to":"4463"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"4856","_from":"475","_to":"4154"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"3821","_from":"475","_to":"3276"} +{"$label":"ACTS_IN","name":"The Dodo","type":"Role","_key":"834","_from":"475","_to":"671"} +{"$label":"ACTS_IN","name":"Susan Walker","type":"Role","_key":"101432","_from":"476","_to":"59709"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"53065","_from":"476","_to":"34351"} +{"$label":"ACTS_IN","name":"King Ferdinand","type":"Role","_key":"121027","_from":"479","_to":"71078"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"96276","_from":"479","_to":"56572"} +{"$label":"ACTS_IN","name":"Vicar Gerald Perey","type":"Role","_key":"20648","_from":"479","_to":"15095"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"17305","_from":"479","_to":"12947"} +{"$label":"ACTS_IN","name":"Ambassador Larry Smith","type":"Role","_key":"106948","_from":"481","_to":"63051"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"56539","_from":"481","_to":"35892"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"583","_from":"497","_to":"483"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"582","_from":"496","_to":"483"} +{"$label":"ACTS_IN","name":"2nd Lt. Jake Jensen","type":"Role","_key":"581","_from":"495","_to":"483"} +{"$label":"ACTS_IN","name":"Agent D","type":"Role","_key":"580","_from":"494","_to":"483"} +{"$label":"ACTS_IN","name":"INS agent Janus","type":"Role","_key":"579","_from":"493","_to":"483"} +{"$label":"ACTS_IN","name":"Arquillian","type":"Role","_key":"578","_from":"492","_to":"483"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"577","_from":"491","_to":"483"} +{"$label":"ACTS_IN","name":"Van driver","type":"Role","_key":"576","_from":"490","_to":"483"} +{"$label":"ACTS_IN","name":"Gentle Rosenburg the Arquillian Jeweler","type":"Role","_key":"575","_from":"489","_to":"483"} +{"$label":"ACTS_IN","name":"Jack Jeebs","type":"Role","_key":"574","_from":"488","_to":"483"} +{"$label":"ACTS_IN","name":"Chief Zed","type":"Role","_key":"573","_from":"487","_to":"483"} +{"$label":"ACTS_IN","name":"Dr. Laurel Weaver \/ Agent L","type":"Role","_key":"571","_from":"486","_to":"483"} +{"$label":"ACTS_IN","name":"Agent K","type":"Role","_key":"569","_from":"485","_to":"483"} +{"$label":"DIRECTED","_key":"568","_from":"484","_to":"483"} +{"$label":"DIRECTED","_key":"54483","_from":"484","_to":"34927"} +{"$label":"DIRECTED","_key":"52090","_from":"484","_to":"33954"} +{"$label":"DIRECTED","_key":"50045","_from":"484","_to":"32751"} +{"$label":"DIRECTED","_key":"47804","_from":"484","_to":"31468"} +{"$label":"DIRECTED","_key":"24225","_from":"484","_to":"17551"} +{"$label":"DIRECTED","_key":"23324","_from":"484","_to":"16901"} +{"$label":"DIRECTED","_key":"18996","_from":"484","_to":"14034"} +{"$label":"DIRECTED","_key":"584","_from":"484","_to":"498"} +{"$label":"ACTS_IN","name":"Gary Mark Gilmore","type":"Role","_key":"119926","_from":"485","_to":"70443"} +{"$label":"ACTS_IN","name":"'Mooney' Lynn","type":"Role","_key":"109997","_from":"485","_to":"64997"} +{"$label":"ACTS_IN","name":"Dave Robicheaux","type":"Role","_key":"97916","_from":"485","_to":"57668"} +{"$label":"ACTS_IN","name":"Ranger Roland Sharp","type":"Role","_key":"94841","_from":"485","_to":"55853"} +{"$label":"ACTS_IN","name":"Woodrow F. Call","type":"Role","_key":"92237","_from":"485","_to":"54426"} +{"$label":"ACTS_IN","name":"Samuel Jones","type":"Role","_key":"88294","_from":"485","_to":"52369"} +{"$label":"ACTS_IN","name":"Marshal Samuel Gerard","type":"Role","_key":"72103","_from":"485","_to":"43588"} +{"$label":"ACTS_IN","name":"'Reverend' Roy Foltrigg","type":"Role","_key":"65310","_from":"485","_to":"40530"} +{"$label":"ACTS_IN","name":"L.T. Bonham","type":"Role","_key":"64720","_from":"485","_to":"40298"} +{"$label":"ACTS_IN","name":"Col. Hayes Lawrence \"Hodge\" Hodges II","type":"Role","_key":"63567","_from":"485","_to":"39782"} +{"$label":"ACTS_IN","name":"Travis Lehman","type":"Role","_key":"62994","_from":"485","_to":"39549"} +{"$label":"ACTS_IN","name":"Mike Roark","type":"Role","_key":"62767","_from":"485","_to":"39456"} +{"$label":"ACTS_IN","name":"Axeman","type":"Role","_key":"54453","_from":"485","_to":"34916"} +{"$label":"ACTS_IN","name":"William Stranix","type":"Role","_key":"51049","_from":"485","_to":"33312"} +{"$label":"ACTS_IN","name":"Pete Perkins","type":"Role","_key":"47888","_from":"485","_to":"31514"} +{"$label":"ACTS_IN","name":"Ed Tom Bell","type":"Role","_key":"45540","_from":"485","_to":"30156"} +{"$label":"ACTS_IN","name":"Hank Deerfield","type":"Role","_key":"45500","_from":"485","_to":"30141"} +{"$label":"ACTS_IN","name":"Brad Little","type":"Role","_key":"43547","_from":"485","_to":"29090"} +{"$label":"ACTS_IN","name":"Hawk Hawkins","type":"Role","_key":"37808","_from":"485","_to":"25635"} +{"$label":"ACTS_IN","name":"Samuel Gerard","type":"Role","_key":"37540","_from":"485","_to":"25451"} +{"$label":"ACTS_IN","name":"Brick","type":"Role","_key":"31203","_from":"485","_to":"21839"} +{"$label":"ACTS_IN","name":"Col. Chester Phillips","type":"Role","_key":"15418","_from":"485","_to":"11787"} +{"$label":"ACTS_IN","name":"Clay Shaw\/Clay Bertrand","type":"Role","_key":"9664","_from":"485","_to":"7763"} +{"$label":"ACTS_IN","name":"Two-Face\/Harvey Dent","type":"Role","_key":"5249","_from":"485","_to":"4463"} +{"$label":"ACTS_IN","name":"Warden Dwight McClusky","type":"Role","_key":"3491","_from":"485","_to":"2983"} +{"$label":"ACTS_IN","name":"Ryan Gaerity","type":"Role","_key":"2735","_from":"485","_to":"2372"} +{"$label":"ACTS_IN","name":"Kevin Brown, Agent Kay","type":"Role","_key":"585","_from":"485","_to":"498"} +{"$label":"DIRECTED","_key":"47887","_from":"485","_to":"31514"} +{"$label":"ACTS_IN","name":"Renee Jason","type":"Role","_key":"116862","_from":"486","_to":"68798"} +{"$label":"ACTS_IN","name":"Christine Lynch","type":"Role","_key":"89824","_from":"486","_to":"53152"} +{"$label":"ACTS_IN","name":"Katrina Gavin","type":"Role","_key":"72443","_from":"486","_to":"43723"} +{"$label":"ACTS_IN","name":"Kiki Bridges","type":"Role","_key":"66126","_from":"486","_to":"40908"} +{"$label":"ACTS_IN","name":"Susan Gittes","type":"Role","_key":"38855","_from":"486","_to":"26244"} +{"$label":"ACTS_IN","name":"Liberty Wallace","type":"Role","_key":"18852","_from":"486","_to":"13919"} +{"$label":"ACTS_IN","name":"Dr. Martha Briggs","type":"Role","_key":"17804","_from":"486","_to":"13273"} +{"$label":"ACTS_IN","name":"Bethany Sloane","type":"Role","_key":"15808","_from":"486","_to":"12037"} +{"$label":"ACTS_IN","name":"Scully","type":"Role","_key":"119831","_from":"487","_to":"70368"} +{"$label":"ACTS_IN","name":"Deputy Prescott","type":"Role","_key":"116869","_from":"487","_to":"68798"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"113891","_from":"487","_to":"67087"} +{"$label":"ACTS_IN","name":"Novak","type":"Role","_key":"110658","_from":"487","_to":"65370"} +{"$label":"ACTS_IN","name":"Primo Pitt","type":"Role","_key":"110647","_from":"487","_to":"65366"} +{"$label":"ACTS_IN","name":"Maax","type":"Role","_key":"109241","_from":"487","_to":"64540"} +{"$label":"ACTS_IN","name":"Edmund Collins","type":"Role","_key":"108882","_from":"487","_to":"64347"} +{"$label":"ACTS_IN","name":"Larraby","type":"Role","_key":"98543","_from":"487","_to":"58071"} +{"$label":"ACTS_IN","name":"Jim Brody","type":"Role","_key":"93091","_from":"487","_to":"54874"} +{"$label":"ACTS_IN","name":"Randall Tyson","type":"Role","_key":"90130","_from":"487","_to":"53299"} +{"$label":"ACTS_IN","name":"Bob Diamond","type":"Role","_key":"88583","_from":"487","_to":"52494"} +{"$label":"ACTS_IN","name":"Dr. George","type":"Role","_key":"68645","_from":"487","_to":"42071"} +{"$label":"ACTS_IN","name":"Patches O'Houlihan","type":"Role","_key":"54076","_from":"487","_to":"34776"} +{"$label":"ACTS_IN","name":"Lou Lo Duca","type":"Role","_key":"37863","_from":"487","_to":"25647"} +{"$label":"ACTS_IN","name":"The CEO","type":"Role","_key":"37805","_from":"487","_to":"25628"} +{"$label":"ACTS_IN","name":"Big Daddy","type":"Role","_key":"31204","_from":"487","_to":"21839"} +{"$label":"ACTS_IN","name":"Louis XV","type":"Role","_key":"16283","_from":"487","_to":"12347"} +{"$label":"ACTS_IN","name":"General Dick Panzer","type":"Role","_key":"15449","_from":"487","_to":"11805"} +{"$label":"ACTS_IN","name":"Nathan Bryce","type":"Role","_key":"11722","_from":"487","_to":"9203"} +{"$label":"ACTS_IN","name":"William Jefferson Slade","type":"Role","_key":"10554","_from":"487","_to":"8385"} +{"$label":"ACTS_IN","name":"Zed","type":"Role","_key":"587","_from":"487","_to":"498"} +{"$label":"ACTS_IN","name":"Primo","type":"Role","_key":"115301","_from":"488","_to":"67887"} +{"$label":"ACTS_IN","name":"Uncle Jocko","type":"Role","_key":"114359","_from":"488","_to":"67357"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"109715","_from":"488","_to":"64795"} +{"$label":"ACTS_IN","name":"Freddy Riedenschneider","type":"Role","_key":"65717","_from":"488","_to":"40695"} +{"$label":"ACTS_IN","name":"Frank Haddad","type":"Role","_key":"57587","_from":"488","_to":"36470"} +{"$label":"ACTS_IN","name":"Kevin Conway","type":"Role","_key":"53761","_from":"488","_to":"34653"} +{"$label":"ACTS_IN","name":"Arthur Kriticos","type":"Role","_key":"53456","_from":"488","_to":"34533"} +{"$label":"ACTS_IN","name":"Tony Shalhoub","type":"Role","_key":"51028","_from":"488","_to":"33305"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"48019","_from":"488","_to":"31583"} +{"$label":"ACTS_IN","name":"Nelson Gittes","type":"Role","_key":"35190","_from":"488","_to":"23980"} +{"$label":"ACTS_IN","name":"Sam Farrell","type":"Role","_key":"25028","_from":"488","_to":"18080"} +{"$label":"ACTS_IN","name":"Fred Kwan","type":"Role","_key":"11029","_from":"488","_to":"8725"} +{"$label":"ACTS_IN","name":"Luigi (voice)","type":"Role","_key":"10937","_from":"488","_to":"8670"} +{"$label":"ACTS_IN","name":"\"German\"","type":"Role","_key":"9208","_from":"488","_to":"7439"} +{"$label":"ACTS_IN","name":"Jack Jeebs","type":"Role","_key":"591","_from":"488","_to":"498"} +{"$label":"ACTS_IN","name":"Drunk's Friend (as Jonathan Gries)","type":"Role","_key":"115013","_from":"490","_to":"67722"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"114858","_from":"490","_to":"67657"} +{"$label":"ACTS_IN","name":"Det. Tony Montoya","type":"Role","_key":"105499","_from":"490","_to":"62082"} +{"$label":"ACTS_IN","name":"Elron","type":"Role","_key":"102342","_from":"490","_to":"60214"} +{"$label":"ACTS_IN","name":"Lazlo Hollyfeld","type":"Role","_key":"99844","_from":"490","_to":"58889"} +{"$label":"ACTS_IN","name":"Desperate Man","type":"Role","_key":"94914","_from":"490","_to":"55876"} +{"$label":"ACTS_IN","name":"Barber","type":"Role","_key":"65549","_from":"490","_to":"40621"} +{"$label":"ACTS_IN","name":"Brice Graham","type":"Role","_key":"60901","_from":"490","_to":"38475"} +{"$label":"ACTS_IN","name":"Uncle Rico","type":"Role","_key":"48293","_from":"490","_to":"31715"} +{"$label":"ACTS_IN","name":"Ronnie Wingate","type":"Role","_key":"47796","_from":"490","_to":"31468"} +{"$label":"ACTS_IN","name":"FBI Agent Killbourne","type":"Role","_key":"36238","_from":"490","_to":"24593"} +{"$label":"ACTS_IN","name":"Lurch","type":"Role","_key":"70278","_from":"492","_to":"42822"} +{"$label":"ACTS_IN","name":"Fidel","type":"Role","_key":"41465","_from":"492","_to":"27868"} +{"$label":"ACTS_IN","name":"Undertaker","type":"Role","_key":"31033","_from":"492","_to":"21724"} +{"$label":"ACTS_IN","name":"Lurch","type":"Role","_key":"24234","_from":"492","_to":"17551"} +{"$label":"ACTS_IN","name":"Lurch","type":"Role","_key":"23323","_from":"492","_to":"16901"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"115209","_from":"493","_to":"67849"} +{"$label":"ACTS_IN","name":"Lazenby","type":"Role","_key":"109658","_from":"493","_to":"64764"} +{"$label":"ACTS_IN","name":"Doc Evans","type":"Role","_key":"11844","_from":"494","_to":"9282"} +{"$label":"DIRECTED","_key":"37701","_from":"495","_to":"25566"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"57163","_from":"496","_to":"36271"} +{"$label":"ACTS_IN","name":"Robot","type":"Role","_key":"44944","_from":"496","_to":"29879"} +{"$label":"ACTS_IN","name":"\"Teddy\" Brewster","type":"Role","_key":"3062","_from":"496","_to":"2618"} +{"$label":"ACTS_IN","name":"Blanche Gunderson","type":"Role","_key":"100688","_from":"497","_to":"59369"} +{"$label":"ACTS_IN","name":"Mrs. Zuckerman","type":"Role","_key":"58992","_from":"497","_to":"37240"} +{"$label":"ACTS_IN","name":"Rita Grant","type":"Role","_key":"57568","_from":"497","_to":"36462"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"49931","_from":"497","_to":"32684"} +{"$label":"ACTS_IN","name":"Lanie","type":"Role","_key":"17075","_from":"497","_to":"12799"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"6612","_from":"497","_to":"5579"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"1153","_from":"497","_to":"926"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"597","_from":"507","_to":"498"} +{"$label":"ACTS_IN","name":"Captain Larry Bridgewater, The Motorman","type":"Role","_key":"596","_from":"506","_to":"498"} +{"$label":"ACTS_IN","name":"Hailey","type":"Role","_key":"595","_from":"505","_to":"498"} +{"$label":"ACTS_IN","name":"Newton","type":"Role","_key":"594","_from":"504","_to":"498"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"593","_from":"503","_to":"498"} +{"$label":"ACTS_IN","name":"Agent Tee","type":"Role","_key":"592","_from":"502","_to":"498"} +{"$label":"ACTS_IN","name":"Laura Vasquez","type":"Role","_key":"590","_from":"501","_to":"498"} +{"$label":"ACTS_IN","name":"Scrad\/Charlie","type":"Role","_key":"589","_from":"500","_to":"498"} +{"$label":"ACTS_IN","name":"Serleena","type":"Role","_key":"588","_from":"499","_to":"498"} +{"$label":"ACTS_IN","name":"Col Kennedy","type":"Role","_key":"117317","_from":"499","_to":"68998"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"115025","_from":"499","_to":"67733"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"113775","_from":"499","_to":"67043"} +{"$label":"ACTS_IN","name":"Kris Bolin","type":"Role","_key":"111392","_from":"499","_to":"65780"} +{"$label":"ACTS_IN","name":"Dr. Emily Paige","type":"Role","_key":"109215","_from":"499","_to":"64530"} +{"$label":"ACTS_IN","name":"Laraine Cotwell","type":"Role","_key":"68572","_from":"499","_to":"42040"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"64753","_from":"499","_to":"40305"} +{"$label":"ACTS_IN","name":"Ida Muntz","type":"Role","_key":"63496","_from":"499","_to":"39759"} +{"$label":"ACTS_IN","name":"Ann McCord","type":"Role","_key":"63232","_from":"499","_to":"39650"} +{"$label":"ACTS_IN","name":"Donna Gardner","type":"Role","_key":"62499","_from":"499","_to":"39357"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"51200","_from":"499","_to":"33391"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"44880","_from":"499","_to":"29854"} +{"$label":"ACTS_IN","name":"Rahel","type":"Role","_key":"22931","_from":"499","_to":"16632"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108512","_from":"500","_to":"64139"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98771","_from":"500","_to":"58203"} +{"$label":"ACTS_IN","name":"Ray Ray Perkins","type":"Role","_key":"95994","_from":"500","_to":"56430"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"87987","_from":"500","_to":"52244"} +{"$label":"ACTS_IN","name":"Ray Templeton","type":"Role","_key":"69385","_from":"500","_to":"42416"} +{"$label":"ACTS_IN","name":"Steve Barker","type":"Role","_key":"58201","_from":"500","_to":"36816"} +{"$label":"ACTS_IN","name":"Topper Burks","type":"Role","_key":"56791","_from":"500","_to":"36065"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51994","_from":"500","_to":"33904"} +{"$label":"ACTS_IN","name":"Luke Duke","type":"Role","_key":"43862","_from":"500","_to":"29290"} +{"$label":"ACTS_IN","name":"Eddie Leadbetter","type":"Role","_key":"18992","_from":"500","_to":"14034"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"107652","_from":"501","_to":"63537"} +{"$label":"ACTS_IN","name":"Artemis","type":"Role","_key":"104079","_from":"501","_to":"61239"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"102297","_from":"501","_to":"60192"} +{"$label":"ACTS_IN","name":"Andy Fox","type":"Role","_key":"95102","_from":"501","_to":"55970"} +{"$label":"ACTS_IN","name":"Zoe Perez","type":"Role","_key":"92104","_from":"501","_to":"54348"} +{"$label":"ACTS_IN","name":"Dina Lake","type":"Role","_key":"71604","_from":"501","_to":"43367"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"69114","_from":"501","_to":"42289"} +{"$label":"ACTS_IN","name":"Mariana","type":"Role","_key":"61327","_from":"501","_to":"38706"} +{"$label":"ACTS_IN","name":"Lala Bonilla","type":"Role","_key":"54054","_from":"501","_to":"34766"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"53243","_from":"501","_to":"34430"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"48310","_from":"501","_to":"31726"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"20154","_from":"501","_to":"14789"} +{"$label":"ACTS_IN","name":"Abernathy","type":"Role","_key":"17247","_from":"501","_to":"12920"} +{"$label":"ACTS_IN","name":"Roxane","type":"Role","_key":"17050","_from":"501","_to":"12778"} +{"$label":"ACTS_IN","name":"Mimi Marquez","type":"Role","_key":"15828","_from":"501","_to":"12045"} +{"$label":"ACTS_IN","name":"Naturelle Riviera","type":"Role","_key":"13242","_from":"501","_to":"10307"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"2858","_from":"501","_to":"2463"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"2841","_from":"501","_to":"2450"} +{"$label":"ACTS_IN","name":"Little Green Men","type":"Role","_key":"107944","_from":"502","_to":"63745"} +{"$label":"ACTS_IN","name":"Hymie","type":"Role","_key":"104829","_from":"502","_to":"61678"} +{"$label":"ACTS_IN","name":"Kronk","type":"Role","_key":"94408","_from":"502","_to":"55586"} +{"$label":"ACTS_IN","name":"Kronk (voice)","type":"Role","_key":"71580","_from":"502","_to":"43357"} +{"$label":"ACTS_IN","name":"Hymie","type":"Role","_key":"71403","_from":"502","_to":"43300"} +{"$label":"ACTS_IN","name":"The Wolf (voice)","type":"Role","_key":"67082","_from":"502","_to":"41402"} +{"$label":"ACTS_IN","name":"Alien Cop","type":"Role","_key":"58942","_from":"502","_to":"37214"} +{"$label":"ACTS_IN","name":"Blag","type":"Role","_key":"57819","_from":"502","_to":"36591"} +{"$label":"ACTS_IN","name":"Ian (voice)","type":"Role","_key":"46860","_from":"502","_to":"30900"} +{"$label":"ACTS_IN","name":"Joe Swanson","type":"Role","_key":"46098","_from":"502","_to":"30453"} +{"$label":"ACTS_IN","name":"Larry Burgess Sr.","type":"Role","_key":"46065","_from":"502","_to":"30427"} +{"$label":"ACTS_IN","name":"Cad","type":"Role","_key":"44190","_from":"502","_to":"29455"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"37853","_from":"502","_to":"25647"} +{"$label":"ACTS_IN","name":"Prinz Humperdink","type":"Role","_key":"37171","_from":"502","_to":"25176"} +{"$label":"ACTS_IN","name":"Steven Stone","type":"Role","_key":"30303","_from":"502","_to":"21314"} +{"$label":"ACTS_IN","name":"Officer Walter Kramitz","type":"Role","_key":"18987","_from":"502","_to":"14034"} +{"$label":"ACTS_IN","name":"Casanov","type":"Role","_key":"119949","_from":"503","_to":"70452"} +{"$label":"ACTS_IN","name":"Dr. Dobson","type":"Role","_key":"97237","_from":"503","_to":"57206"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"69820","_from":"503","_to":"42609"} +{"$label":"ACTS_IN","name":"Larry Hyland","type":"Role","_key":"41485","_from":"503","_to":"27874"} +{"$label":"ACTS_IN","name":"Sgt. Carlos Wiley","type":"Role","_key":"25931","_from":"503","_to":"18645"} +{"$label":"ACTS_IN","name":"Leonard Ferroni","type":"Role","_key":"18994","_from":"503","_to":"14034"} +{"$label":"ACTS_IN","name":"Guard Johnny Mack","type":"Role","_key":"7609","_from":"503","_to":"6321"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"2016","_from":"503","_to":"1750"} +{"$label":"ACTS_IN","name":"Space Station Man","type":"Role","_key":"117802","_from":"504","_to":"69246"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110305","_from":"504","_to":"65180"} +{"$label":"ACTS_IN","name":"Larry Schwartzman","type":"Role","_key":"104189","_from":"504","_to":"61297"} +{"$label":"ACTS_IN","name":"Ronnie Dobbs","type":"Role","_key":"102490","_from":"504","_to":"60304"} +{"$label":"ACTS_IN","name":"Yivo","type":"Role","_key":"91869","_from":"504","_to":"54199"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"58833","_from":"504","_to":"37148"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"57407","_from":"504","_to":"36396"} +{"$label":"ACTS_IN","name":"Gold","type":"Role","_key":"55324","_from":"504","_to":"35273"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"43596","_from":"504","_to":"29119"} +{"$label":"ACTS_IN","name":"Dwight Hartman","type":"Role","_key":"30447","_from":"504","_to":"21400"} +{"$label":"ACTS_IN","name":"Alan Ginsberg","type":"Role","_key":"28890","_from":"504","_to":"20642"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"1313","_from":"504","_to":"1086"} +{"$label":"ACTS_IN","name":"Julie Gaffney","type":"Role","_key":"68254","_from":"505","_to":"41905"} +{"$label":"ACTS_IN","name":"Ramsey","type":"Role","_key":"102815","_from":"506","_to":"60477"} +{"$label":"ACTS_IN","name":"Ecmee","type":"Role","_key":"36584","_from":"506","_to":"24794"} +{"$label":"ACTS_IN","name":"Bloodstone","type":"Role","_key":"26547","_from":"506","_to":"19073"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"61664","_from":"507","_to":"38850"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"12962","_from":"507","_to":"10106"} +{"$label":"ACTS_IN","name":"Pugsley","type":"Role","_key":"610","_from":"521","_to":"508"} +{"$label":"ACTS_IN","name":"Tangina Barrons","type":"Role","_key":"609","_from":"520","_to":"508"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"608","_from":"519","_to":"508"} +{"$label":"ACTS_IN","name":"Dr. Marty Casey","type":"Role","_key":"607","_from":"518","_to":"508"} +{"$label":"ACTS_IN","name":"Mrs. Tuthill","type":"Role","_key":"606","_from":"517","_to":"508"} +{"$label":"ACTS_IN","name":"Ben Tuthill","type":"Role","_key":"605","_from":"516","_to":"508"} +{"$label":"ACTS_IN","name":"Carol Anne Freeling","type":"Role","_key":"604","_from":"515","_to":"508"} +{"$label":"ACTS_IN","name":"Robbie Freeling","type":"Role","_key":"603","_from":"514","_to":"508"} +{"$label":"ACTS_IN","name":"Dana Freeling","type":"Role","_key":"602","_from":"513","_to":"508"} +{"$label":"ACTS_IN","name":"Dr. Lesh","type":"Role","_key":"601","_from":"512","_to":"508"} +{"$label":"ACTS_IN","name":"Diane Freeling","type":"Role","_key":"600","_from":"511","_to":"508"} +{"$label":"ACTS_IN","name":"Steve Freeling","type":"Role","_key":"599","_from":"510","_to":"508"} +{"$label":"DIRECTED","_key":"598","_from":"509","_to":"508"} +{"$label":"DIRECTED","_key":"109985","_from":"509","_to":"64987"} +{"$label":"DIRECTED","_key":"108769","_from":"509","_to":"64296"} +{"$label":"DIRECTED","_key":"99167","_from":"509","_to":"58429"} +{"$label":"DIRECTED","_key":"95207","_from":"509","_to":"56017"} +{"$label":"DIRECTED","_key":"95186","_from":"509","_to":"56004"} +{"$label":"DIRECTED","_key":"72963","_from":"509","_to":"43920"} +{"$label":"DIRECTED","_key":"69251","_from":"509","_to":"42339"} +{"$label":"DIRECTED","_key":"28079","_from":"509","_to":"20121"} +{"$label":"ACTS_IN","name":"Joe Paxton","type":"Role","_key":"115522","_from":"510","_to":"68009"} +{"$label":"ACTS_IN","name":"Nickerson","type":"Role","_key":"115152","_from":"510","_to":"67809"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"89917","_from":"510","_to":"53206"} +{"$label":"ACTS_IN","name":"Bernard Osterman","type":"Role","_key":"88921","_from":"510","_to":"52676"} +{"$label":"ACTS_IN","name":"Steve Freeling","type":"Role","_key":"68072","_from":"510","_to":"41822"} +{"$label":"ACTS_IN","name":"Peter Dellaplane","type":"Role","_key":"60934","_from":"510","_to":"38504"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"58503","_from":"510","_to":"36974"} +{"$label":"ACTS_IN","name":"Bob Parr \/ Mr. Incredible (voice)","type":"Role","_key":"56986","_from":"510","_to":"36156"} +{"$label":"ACTS_IN","name":"Kelly Stone","type":"Role","_key":"52242","_from":"510","_to":"34024"} +{"$label":"ACTS_IN","name":"Howard Hyde","type":"Role","_key":"45278","_from":"510","_to":"30040"} +{"$label":"ACTS_IN","name":"The Monster (voice)","type":"Role","_key":"28547","_from":"510","_to":"20396"} +{"$label":"ACTS_IN","name":"Major Reeves, Military Attache","type":"Role","_key":"7426","_from":"510","_to":"6188"} +{"$label":"ACTS_IN","name":"Lois Wilson","type":"Role","_key":"105655","_from":"511","_to":"62188"} +{"$label":"ACTS_IN","name":"Agnes Webb","type":"Role","_key":"92304","_from":"511","_to":"54472"} +{"$label":"ACTS_IN","name":"Karen Bowens","type":"Role","_key":"90278","_from":"511","_to":"53368"} +{"$label":"ACTS_IN","name":"Bessie Earp","type":"Role","_key":"88378","_from":"511","_to":"52390"} +{"$label":"ACTS_IN","name":"Diane Freeling","type":"Role","_key":"68071","_from":"511","_to":"41822"} +{"$label":"ACTS_IN","name":"Margo Brofman","type":"Role","_key":"62121","_from":"511","_to":"39122"} +{"$label":"ACTS_IN","name":"Lt. Gwen Harper","type":"Role","_key":"57540","_from":"511","_to":"36453"} +{"$label":"ACTS_IN","name":"Dr. Patricia Cromwell","type":"Role","_key":"53922","_from":"511","_to":"34701"} +{"$label":"ACTS_IN","name":"Nurse Nancy Bauer","type":"Role","_key":"45698","_from":"511","_to":"30247"} +{"$label":"ACTS_IN","name":"Kate Erling","type":"Role","_key":"24961","_from":"512","_to":"18031"} +{"$label":"ACTS_IN","name":"Robbie Freeling","type":"Role","_key":"68074","_from":"514","_to":"41822"} +{"$label":"ACTS_IN","name":"Carol Anne Freeling","type":"Role","_key":"68073","_from":"515","_to":"41822"} +{"$label":"ACTS_IN","name":"Carol Anne Freeling","type":"Role","_key":"62498","_from":"515","_to":"39357"} +{"$label":"ACTS_IN","name":"Uncle Rob","type":"Role","_key":"113252","_from":"519","_to":"66724"} +{"$label":"ACTS_IN","name":"Sgt. Frank \" Doc \" McDermott","type":"Role","_key":"45910","_from":"519","_to":"30362"} +{"$label":"ACTS_IN","name":"Tangina Barrons","type":"Role","_key":"68075","_from":"520","_to":"41822"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"3267","_from":"521","_to":"2788"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"631","_from":"543","_to":"522"} +{"$label":"ACTS_IN","name":"Jenny's Father","type":"Role","_key":"630","_from":"542","_to":"522"} +{"$label":"ACTS_IN","name":"Mrs. Blue, Bubba's Mother","type":"Role","_key":"629","_from":"541","_to":"522"} +{"$label":"ACTS_IN","name":"Bubba's Great-Grandmother","type":"Role","_key":"628","_from":"540","_to":"522"} +{"$label":"ACTS_IN","name":"Forrest Gump Jr.","type":"Role","_key":"627","_from":"539","_to":"522"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"626","_from":"538","_to":"522"} +{"$label":"ACTS_IN","name":"Elderly Southern Woman on Park Bench","type":"Role","_key":"625","_from":"537","_to":"522"} +{"$label":"ACTS_IN","name":"President Johnson","type":"Role","_key":"624","_from":"536","_to":"522"} +{"$label":"ACTS_IN","name":"Tex","type":"Role","_key":"623","_from":"535","_to":"522"} +{"$label":"ACTS_IN","name":"Drill Sergeant","type":"Role","_key":"622","_from":"534","_to":"522"} +{"$label":"ACTS_IN","name":"President John F. Kennedy","type":"Role","_key":"621","_from":"533","_to":"522"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"620","_from":"532","_to":"522"} +{"$label":"ACTS_IN","name":"Young Jenny Curran","type":"Role","_key":"619","_from":"531","_to":"522"} +{"$label":"ACTS_IN","name":"Elvis Presley","type":"Role","_key":"618","_from":"530","_to":"522"} +{"$label":"ACTS_IN","name":"Young Forrest Gump","type":"Role","_key":"617","_from":"529","_to":"522"} +{"$label":"ACTS_IN","name":"Mrs. Gump","type":"Role","_key":"616","_from":"528","_to":"522"} +{"$label":"ACTS_IN","name":"Bubba","type":"Role","_key":"615","_from":"527","_to":"522"} +{"$label":"ACTS_IN","name":"Lt. Dan Taylor","type":"Role","_key":"614","_from":"526","_to":"522"} +{"$label":"ACTS_IN","name":"Jenny Curran","type":"Role","_key":"613","_from":"525","_to":"522"} +{"$label":"ACTS_IN","name":"Forrest Gump","type":"Role","_key":"612","_from":"524","_to":"522"} +{"$label":"DIRECTED","_key":"611","_from":"523","_to":"522"} +{"$label":"DIRECTED","_key":"114559","_from":"523","_to":"67487"} +{"$label":"DIRECTED","_key":"100484","_from":"523","_to":"59249"} +{"$label":"DIRECTED","_key":"53443","_from":"523","_to":"34530"} +{"$label":"DIRECTED","_key":"53142","_from":"523","_to":"34383"} +{"$label":"DIRECTED","_key":"49289","_from":"523","_to":"32281"} +{"$label":"DIRECTED","_key":"22522","_from":"523","_to":"16367"} +{"$label":"DIRECTED","_key":"20283","_from":"523","_to":"14868"} +{"$label":"DIRECTED","_key":"10167","_from":"523","_to":"8126"} +{"$label":"DIRECTED","_key":"8265","_from":"523","_to":"6784"} +{"$label":"DIRECTED","_key":"2906","_from":"523","_to":"2506"} +{"$label":"DIRECTED","_key":"2553","_from":"523","_to":"2235"} +{"$label":"DIRECTED","_key":"1881","_from":"523","_to":"1636"} +{"$label":"DIRECTED","_key":"926","_from":"523","_to":"746"} +{"$label":"ACTS_IN","name":"Lawrence Whatley Bourne III","type":"Role","_key":"119421","_from":"524","_to":"70162"} +{"$label":"ACTS_IN","name":"Mr. Gable","type":"Role","_key":"108463","_from":"524","_to":"64118"} +{"$label":"ACTS_IN","name":"Robert Langdon","type":"Role","_key":"94500","_from":"524","_to":"55655"} +{"$label":"ACTS_IN","name":"Rick Gassko","type":"Role","_key":"89236","_from":"524","_to":"52840"} +{"$label":"ACTS_IN","name":"Ray Peterson","type":"Role","_key":"73085","_from":"524","_to":"43971"} +{"$label":"ACTS_IN","name":"Jimmy Dugan","type":"Role","_key":"68919","_from":"524","_to":"42198"} +{"$label":"ACTS_IN","name":"Richard Harlan Drew","type":"Role","_key":"66613","_from":"524","_to":"41179"} +{"$label":"ACTS_IN","name":"Walter Fielding, Jr.","type":"Role","_key":"63484","_from":"524","_to":"39758"} +{"$label":"ACTS_IN","name":"Woody (voice)","type":"Role","_key":"61600","_from":"524","_to":"38829"} +{"$label":"ACTS_IN","name":"Pep Streebeck","type":"Role","_key":"59525","_from":"524","_to":"37581"} +{"$label":"ACTS_IN","name":"Mr. White","type":"Role","_key":"54885","_from":"524","_to":"35099"} +{"$label":"ACTS_IN","name":"Sherman McCoy","type":"Role","_key":"54850","_from":"524","_to":"35088"} +{"$label":"ACTS_IN","name":"Joe Fox","type":"Role","_key":"54208","_from":"524","_to":"34820"} +{"$label":"ACTS_IN","name":"Chuck Noland","type":"Role","_key":"49290","_from":"524","_to":"32281"} +{"$label":"ACTS_IN","name":"Scott Turner","type":"Role","_key":"45276","_from":"524","_to":"30040"} +{"$label":"ACTS_IN","name":"Charlie Wilson","type":"Role","_key":"43998","_from":"524","_to":"29354"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38767","_from":"524","_to":"26194"} +{"$label":"ACTS_IN","name":"Professor G.H. Dorr","type":"Role","_key":"37623","_from":"524","_to":"25505"} +{"$label":"ACTS_IN","name":"Michael Sullivan","type":"Role","_key":"29767","_from":"524","_to":"21072"} +{"$label":"ACTS_IN","name":"Allen Bauer","type":"Role","_key":"22241","_from":"524","_to":"16195"} +{"$label":"ACTS_IN","name":"Joe Banks","type":"Role","_key":"21967","_from":"524","_to":"16044"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"19986","_from":"524","_to":"14711"} +{"$label":"ACTS_IN","name":"Woody (voice)","type":"Role","_key":"10257","_from":"524","_to":"8176"} +{"$label":"ACTS_IN","name":"Woody (voice)","type":"Role","_key":"10244","_from":"524","_to":"8168"} +{"$label":"ACTS_IN","name":"Sam Baldwin","type":"Role","_key":"10194","_from":"524","_to":"8139"} +{"$label":"ACTS_IN","name":"Captain John H. Miller","type":"Role","_key":"10178","_from":"524","_to":"8132"} +{"$label":"ACTS_IN","name":"Carl Hanratty","type":"Role","_key":"7648","_from":"524","_to":"6359"} +{"$label":"ACTS_IN","name":"Viktor Navorski","type":"Role","_key":"7132","_from":"524","_to":"5965"} +{"$label":"ACTS_IN","name":"Dr. Robert Langdon","type":"Role","_key":"7092","_from":"524","_to":"5934"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"1302","_from":"524","_to":"1073"} +{"$label":"ACTS_IN","name":"Paul Edgecomb","type":"Role","_key":"963","_from":"524","_to":"780"} +{"$label":"ACTS_IN","name":"Andrew Beckett - Main","type":"Role","_key":"960","_from":"524","_to":"774"} +{"$label":"ACTS_IN","name":"Jim Lovell","type":"Role","_key":"938","_from":"524","_to":"756"} +{"$label":"ACTS_IN","name":"Hobo","type":"Role","_key":"927","_from":"524","_to":"746"} +{"$label":"DIRECTED","_key":"54889","_from":"524","_to":"35099"} +{"$label":"DIRECTED","_key":"26816","_from":"524","_to":"19269"} +{"$label":"ACTS_IN","name":"Moll Flanders","type":"Role","_key":"118385","_from":"525","_to":"69596"} +{"$label":"ACTS_IN","name":"Clare","type":"Role","_key":"118149","_from":"525","_to":"69442"} +{"$label":"ACTS_IN","name":"Anne Collins","type":"Role","_key":"110771","_from":"525","_to":"65435"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106693","_from":"525","_to":"62874"} +{"$label":"ACTS_IN","name":"Stranger Lady","type":"Role","_key":"102290","_from":"525","_to":"60182"} +{"$label":"ACTS_IN","name":"Melanie McGowan","type":"Role","_key":"96673","_from":"525","_to":"56865"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"90364","_from":"525","_to":"53397"} +{"$label":"ACTS_IN","name":"Gwen Tyler","type":"Role","_key":"70973","_from":"525","_to":"43106"} +{"$label":"ACTS_IN","name":"Starr","type":"Role","_key":"67158","_from":"525","_to":"41437"} +{"$label":"ACTS_IN","name":"Theresa Osborne","type":"Role","_key":"61708","_from":"525","_to":"38866"} +{"$label":"ACTS_IN","name":"Audrey Dunn","type":"Role","_key":"56225","_from":"525","_to":"35727"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"51590","_from":"525","_to":"33665"} +{"$label":"ACTS_IN","name":"Frannie","type":"Role","_key":"36687","_from":"525","_to":"24867"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"34735","_from":"525","_to":"23750"} +{"$label":"ACTS_IN","name":"Pippa Lee","type":"Role","_key":"31957","_from":"525","_to":"22288"} +{"$label":"ACTS_IN","name":"Buttercup","type":"Role","_key":"21701","_from":"525","_to":"15866"} +{"$label":"ACTS_IN","name":"Wealthow","type":"Role","_key":"20287","_from":"525","_to":"14868"} +{"$label":"ACTS_IN","name":"Kathleen Flannery","type":"Role","_key":"14769","_from":"525","_to":"11361"} +{"$label":"ACTS_IN","name":"Liv","type":"Role","_key":"12253","_from":"525","_to":"9592"} +{"$label":"ACTS_IN","name":"Harry S. Truman","type":"Role","_key":"110394","_from":"526","_to":"65230"} +{"$label":"ACTS_IN","name":"Ebby","type":"Role","_key":"105657","_from":"526","_to":"62188"} +{"$label":"ACTS_IN","name":"Stu Redman","type":"Role","_key":"94966","_from":"526","_to":"55928"} +{"$label":"ACTS_IN","name":"Ray Ritchie","type":"Role","_key":"90740","_from":"526","_to":"53556"} +{"$label":"ACTS_IN","name":"Nathan Zuckerman","type":"Role","_key":"66768","_from":"526","_to":"41254"} +{"$label":"ACTS_IN","name":"George Milton","type":"Role","_key":"55002","_from":"526","_to":"35155"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"50668","_from":"526","_to":"33080"} +{"$label":"ACTS_IN","name":"Commander Kevin Dunne","type":"Role","_key":"50452","_from":"526","_to":"32956"} +{"$label":"ACTS_IN","name":"Shaw (voice)","type":"Role","_key":"46853","_from":"526","_to":"30900"} +{"$label":"ACTS_IN","name":"Spencer Olham","type":"Role","_key":"35188","_from":"526","_to":"23980"} +{"$label":"ACTS_IN","name":"Det. Jimmy Shaker","type":"Role","_key":"28252","_from":"526","_to":"20232"} +{"$label":"ACTS_IN","name":"Gabriel Mercer","type":"Role","_key":"18774","_from":"526","_to":"13886"} +{"$label":"ACTS_IN","name":"Jim McConnell","type":"Role","_key":"17975","_from":"526","_to":"13369"} +{"$label":"ACTS_IN","name":"Lawyer Burt Hammersmith","type":"Role","_key":"971","_from":"526","_to":"780"} +{"$label":"ACTS_IN","name":"Ken Mattingly","type":"Role","_key":"941","_from":"526","_to":"756"} +{"$label":"DIRECTED","_key":"55007","_from":"526","_to":"35155"} +{"$label":"ACTS_IN","name":"Dennis Gamble","type":"Role","_key":"61760","_from":"527","_to":"38888"} +{"$label":"ACTS_IN","name":"Don King","type":"Role","_key":"50059","_from":"527","_to":"32759"} +{"$label":"ACTS_IN","name":"Mike O'Dell","type":"Role","_key":"15082","_from":"527","_to":"11583"} +{"$label":"ACTS_IN","name":"Sergeant Drucker","type":"Role","_key":"11329","_from":"527","_to":"8936"} +{"$label":"ACTS_IN","name":"Harold Mann","type":"Role","_key":"9957","_from":"527","_to":"7967"} +{"$label":"ACTS_IN","name":"Megan Carter","type":"Role","_key":"120113","_from":"528","_to":"70541"} +{"$label":"ACTS_IN","name":"Anita Bergman","type":"Role","_key":"111427","_from":"528","_to":"65795"} +{"$label":"ACTS_IN","name":"Marina Del Ray","type":"Role","_key":"95841","_from":"528","_to":"56363"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"91138","_from":"528","_to":"53765"} +{"$label":"ACTS_IN","name":"Carrie 'Frog'","type":"Role","_key":"67235","_from":"528","_to":"41458"} +{"$label":"ACTS_IN","name":"M'Lynn Eatenton","type":"Role","_key":"66329","_from":"528","_to":"41030"} +{"$label":"ACTS_IN","name":"Rep. Victoria Rudd","type":"Role","_key":"62607","_from":"528","_to":"39388"} +{"$label":"ACTS_IN","name":"Betty Mahmoody","type":"Role","_key":"54844","_from":"528","_to":"35084"} +{"$label":"ACTS_IN","name":"Sassy","type":"Role","_key":"45015","_from":"528","_to":"29906"} +{"$label":"ACTS_IN","name":"Mary Tate Farnsworth","type":"Role","_key":"36454","_from":"528","_to":"24729"} +{"$label":"ACTS_IN","name":"May Parker","type":"Role","_key":"16723","_from":"528","_to":"12611"} +{"$label":"ACTS_IN","name":"Miranda Hillard","type":"Role","_key":"9276","_from":"528","_to":"7496"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"117422","_from":"530","_to":"69060"} +{"$label":"ACTS_IN","name":"Tommy Ray","type":"Role","_key":"113776","_from":"530","_to":"67043"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"91461","_from":"530","_to":"53932"} +{"$label":"ACTS_IN","name":"Ray Lynskey","type":"Role","_key":"65724","_from":"530","_to":"40696"} +{"$label":"ACTS_IN","name":"Judith Myers","type":"Role","_key":"18110","_from":"531","_to":"13441"} +{"$label":"ACTS_IN","name":"Cecilia Lisbon","type":"Role","_key":"13362","_from":"531","_to":"10404"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"58457","_from":"532","_to":"36947"} +{"$label":"ACTS_IN","name":"Isaac Sr.","type":"Role","_key":"110042","_from":"534","_to":"65011"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"102283","_from":"534","_to":"60182"} +{"$label":"ACTS_IN","name":"President Wagner","type":"Role","_key":"94836","_from":"534","_to":"55842"} +{"$label":"ACTS_IN","name":"Captain Midnight","type":"Role","_key":"56838","_from":"534","_to":"36088"} +{"$label":"ACTS_IN","name":"Beary Barrington (voice)","type":"Role","_key":"115868","_from":"539","_to":"68225"} +{"$label":"ACTS_IN","name":"Mowgli","type":"Role","_key":"102250","_from":"539","_to":"60169"} +{"$label":"ACTS_IN","name":"Chip","type":"Role","_key":"93890","_from":"539","_to":"55282"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"93046","_from":"539","_to":"54855"} +{"$label":"ACTS_IN","name":"Trevor McKinney","type":"Role","_key":"64817","_from":"539","_to":"40327"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"28176","_from":"539","_to":"20186"} +{"$label":"ACTS_IN","name":"Cole Sear","type":"Role","_key":"8698","_from":"539","_to":"7056"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"7695","_from":"539","_to":"6393"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"119991","_from":"543","_to":"70466"} +{"$label":"ACTS_IN","name":"Whitney Horgan","type":"Role","_key":"94980","_from":"543","_to":"55928"} +{"$label":"DIRECTED","_key":"650","_from":"563","_to":"544"} +{"$label":"ACTS_IN","name":"Half Faced Man (as Yurij Kis)","type":"Role","_key":"649","_from":"562","_to":"544"} +{"$label":"ACTS_IN","name":"Bartik","type":"Role","_key":"648","_from":"561","_to":"544"} +{"$label":"ACTS_IN","name":"Chattering Homeless Man","type":"Role","_key":"647","_from":"560","_to":"544"} +{"$label":"ACTS_IN","name":"Masked DJ's","type":"Role","_key":"646","_from":"559","_to":"544"} +{"$label":"ACTS_IN","name":"Green Light Cycle Rider","type":"Role","_key":"645","_from":"558","_to":"544"} +{"$label":"ACTS_IN","name":"Young Sam","type":"Role","_key":"644","_from":"557","_to":"544"} +{"$label":"ACTS_IN","name":"Castor \/ Zuse","type":"Role","_key":"643","_from":"556","_to":"544"} +{"$label":"ACTS_IN","name":"Sobel","type":"Role","_key":"642","_from":"555","_to":"544"} +{"$label":"ACTS_IN","name":"Young Mrs. Flynn","type":"Role","_key":"641","_from":"554","_to":"544"} +{"$label":"ACTS_IN","name":"Jarvis","type":"Role","_key":"640","_from":"553","_to":"544"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"639","_from":"552","_to":"544"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"638","_from":"551","_to":"544"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"637","_from":"550","_to":"544"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"636","_from":"549","_to":"544"} +{"$label":"ACTS_IN","name":"Alan Bradley \/ Tron","type":"Role","_key":"635","_from":"548","_to":"544"} +{"$label":"ACTS_IN","name":"Quorra","type":"Role","_key":"634","_from":"547","_to":"544"} +{"$label":"ACTS_IN","name":"Kevin Flynn \/ Clu","type":"Role","_key":"633","_from":"546","_to":"544"} +{"$label":"ACTS_IN","name":"Sam Flynn","type":"Role","_key":"632","_from":"545","_to":"544"} +{"$label":"ACTS_IN","name":"Don Billingsley","type":"Role","_key":"94401","_from":"545","_to":"55583"} +{"$label":"ACTS_IN","name":"Billy Darley","type":"Role","_key":"72269","_from":"545","_to":"43661"} +{"$label":"ACTS_IN","name":"Jack Mercer","type":"Role","_key":"48968","_from":"545","_to":"32108"} +{"$label":"ACTS_IN","name":"Murtagh","type":"Role","_key":"21672","_from":"545","_to":"15842"} +{"$label":"ACTS_IN","name":"Patroclos","type":"Role","_key":"7797","_from":"545","_to":"6469"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"110949","_from":"546","_to":"65534"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"110760","_from":"546","_to":"65430"} +{"$label":"ACTS_IN","name":"Clayton Harding","type":"Role","_key":"92526","_from":"546","_to":"54610"} +{"$label":"ACTS_IN","name":"Jack Forrester","type":"Role","_key":"88891","_from":"546","_to":"52664"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"70662","_from":"546","_to":"42995"} +{"$label":"ACTS_IN","name":"John L. Bridges","type":"Role","_key":"66846","_from":"546","_to":"41285"} +{"$label":"ACTS_IN","name":"Jack Baker","type":"Role","_key":"66409","_from":"546","_to":"41067"} +{"$label":"ACTS_IN","name":"Jack Prescott","type":"Role","_key":"65301","_from":"546","_to":"40529"} +{"$label":"ACTS_IN","name":"Captain Christopher 'Skipper' Sheldon","type":"Role","_key":"63903","_from":"546","_to":"39924"} +{"$label":"ACTS_IN","name":"Max Klein","type":"Role","_key":"63382","_from":"546","_to":"39716"} +{"$label":"ACTS_IN","name":"Bill Django","type":"Role","_key":"62539","_from":"546","_to":"39366"} +{"$label":"ACTS_IN","name":"Prince Lir (voice)","type":"Role","_key":"61250","_from":"546","_to":"38678"} +{"$label":"ACTS_IN","name":"Burt Vickerman","type":"Role","_key":"60894","_from":"546","_to":"38475"} +{"$label":"ACTS_IN","name":"Starman","type":"Role","_key":"55382","_from":"546","_to":"35308"} +{"$label":"ACTS_IN","name":"Big Z \/ Geek","type":"Role","_key":"53687","_from":"546","_to":"34627"} +{"$label":"ACTS_IN","name":"Lightfoot","type":"Role","_key":"49225","_from":"546","_to":"32249"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"45715","_from":"546","_to":"30256"} +{"$label":"ACTS_IN","name":"President Jackson Evans","type":"Role","_key":"43875","_from":"546","_to":"29296"} +{"$label":"ACTS_IN","name":"Craig Blake","type":"Role","_key":"36453","_from":"546","_to":"24729"} +{"$label":"ACTS_IN","name":"Charles Howard","type":"Role","_key":"31896","_from":"546","_to":"22252"} +{"$label":"ACTS_IN","name":"Ted Cole","type":"Role","_key":"16860","_from":"546","_to":"12685"} +{"$label":"ACTS_IN","name":"Obadiah Stane","type":"Role","_key":"15277","_from":"546","_to":"11696"} +{"$label":"ACTS_IN","name":"Barney Cousins","type":"Role","_key":"14583","_from":"546","_to":"11240"} +{"$label":"ACTS_IN","name":"Michael Faraday","type":"Role","_key":"11888","_from":"546","_to":"9323"} +{"$label":"ACTS_IN","name":"James \"Jimmy\" Dove","type":"Role","_key":"2734","_from":"546","_to":"2372"} +{"$label":"ACTS_IN","name":"Jack Lucas","type":"Role","_key":"2722","_from":"546","_to":"2363"} +{"$label":"ACTS_IN","name":"Dr. Mark Powell","type":"Role","_key":"2583","_from":"546","_to":"2259"} +{"$label":"ACTS_IN","name":"Jeffrey Lebowski","type":"Role","_key":"2003","_from":"546","_to":"1750"} +{"$label":"ACTS_IN","name":"Kevin Flynn\/Clu","type":"Role","_key":"1785","_from":"546","_to":"1545"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"63216","_from":"547","_to":"39632"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"56910","_from":"547","_to":"36124"} +{"$label":"ACTS_IN","name":"Angela Holden","type":"Role","_key":"46779","_from":"547","_to":"30852"} +{"$label":"ACTS_IN","name":"D.C. Cracker","type":"Role","_key":"121684","_from":"548","_to":"71490"} +{"$label":"ACTS_IN","name":"President John Sheridan","type":"Role","_key":"103867","_from":"548","_to":"61091"} +{"$label":"ACTS_IN","name":"Brad Kuffs","type":"Role","_key":"101037","_from":"548","_to":"59542"} +{"$label":"ACTS_IN","name":"Colin Barrow (voice)","type":"Role","_key":"93339","_from":"548","_to":"54987"} +{"$label":"ACTS_IN","name":"Capt. John J. Sheridan","type":"Role","_key":"66874","_from":"548","_to":"41295"} +{"$label":"ACTS_IN","name":"John J. Sheridan","type":"Role","_key":"66869","_from":"548","_to":"41294"} +{"$label":"ACTS_IN","name":"John J. Sheridan","type":"Role","_key":"66698","_from":"548","_to":"41207"} +{"$label":"ACTS_IN","name":"Alan Bradley\/Tron","type":"Role","_key":"1786","_from":"548","_to":"1545"} +{"$label":"ACTS_IN","name":"LaRhette","type":"Role","_key":"91360","_from":"549","_to":"53883"} +{"$label":"ACTS_IN","name":"Caya","type":"Role","_key":"104385","_from":"551","_to":"61407"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"65588","_from":"551","_to":"40642"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"56912","_from":"551","_to":"36124"} +{"$label":"ACTS_IN","name":"Frankie Raye","type":"Role","_key":"17158","_from":"551","_to":"12853"} +{"$label":"ACTS_IN","name":"Gustave Sonnenschein","type":"Role","_key":"113905","_from":"553","_to":"67089"} +{"$label":"ACTS_IN","name":"Reyes","type":"Role","_key":"73052","_from":"553","_to":"43959"} +{"$label":"ACTS_IN","name":"J.F. Villefort","type":"Role","_key":"69408","_from":"553","_to":"42425"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"68561","_from":"553","_to":"42034"} +{"$label":"ACTS_IN","name":"Alvaro de la Quadra","type":"Role","_key":"32268","_from":"553","_to":"22475"} +{"$label":"ACTS_IN","name":"Nick Cassidy","type":"Role","_key":"18780","_from":"553","_to":"13886"} +{"$label":"ACTS_IN","name":"Brandon Turner","type":"Role","_key":"119494","_from":"555","_to":"70191"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"55331","_from":"555","_to":"35273"} +{"$label":"ACTS_IN","name":"Aro","type":"Role","_key":"115508","_from":"556","_to":"67997"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"103811","_from":"556","_to":"61055"} +{"$label":"ACTS_IN","name":"Art","type":"Role","_key":"101899","_from":"556","_to":"59972"} +{"$label":"ACTS_IN","name":"Lucian","type":"Role","_key":"89481","_from":"556","_to":"52980"} +{"$label":"ACTS_IN","name":"David Frost","type":"Role","_key":"70193","_from":"556","_to":"42781"} +{"$label":"ACTS_IN","name":"Thorne Jamison","type":"Role","_key":"68120","_from":"556","_to":"41844"} +{"$label":"ACTS_IN","name":"Lord Oliver","type":"Role","_key":"54708","_from":"556","_to":"35025"} +{"$label":"ACTS_IN","name":"Trench","type":"Role","_key":"52520","_from":"556","_to":"34152"} +{"$label":"ACTS_IN","name":"Wiglaf ( voice )","type":"Role","_key":"37374","_from":"556","_to":"25326"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"13542","_from":"556","_to":"10534"} +{"$label":"ACTS_IN","name":"Simmons","type":"Role","_key":"12742","_from":"556","_to":"9942"} +{"$label":"ACTS_IN","name":"Tony Blair","type":"Role","_key":"12145","_from":"556","_to":"9522"} +{"$label":"ACTS_IN","name":"Lucian","type":"Role","_key":"9856","_from":"556","_to":"7897"} +{"$label":"ACTS_IN","name":"Lucian","type":"Role","_key":"3937","_from":"556","_to":"3364"} +{"$label":"ACTS_IN","name":"The White Rabbit","type":"Role","_key":"821","_from":"556","_to":"671"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"60325","_from":"558","_to":"38046"} +{"$label":"ACTS_IN","name":"Wedding D.J.","type":"Role","_key":"59653","_from":"558","_to":"37658"} +{"$label":"ACTS_IN","name":"Carel Fabritius","type":"Role","_key":"32634","_from":"558","_to":"22682"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"101833","_from":"560","_to":"59934"} +{"$label":"ACTS_IN","name":"Ranja","type":"Role","_key":"100836","_from":"560","_to":"59442"} +{"$label":"ACTS_IN","name":"Security Guard - Studio","type":"Role","_key":"93103","_from":"560","_to":"54874"} +{"$label":"ACTS_IN","name":"Simcoe","type":"Role","_key":"58148","_from":"560","_to":"36780"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"665","_from":"579","_to":"564"} +{"$label":"ACTS_IN","name":"Advisor to Grand Moff Tarkin","type":"Role","_key":"664","_from":"578","_to":"564"} +{"$label":"ACTS_IN","name":"Aunt Beru","type":"Role","_key":"663","_from":"577","_to":"564"} +{"$label":"ACTS_IN","name":"Uncle Owen","type":"Role","_key":"662","_from":"576","_to":"564"} +{"$label":"ACTS_IN","name":"Darth Vader (voice)","type":"Role","_key":"661","_from":"575","_to":"564"} +{"$label":"ACTS_IN","name":"Darth Vader","type":"Role","_key":"660","_from":"574","_to":"564"} +{"$label":"ACTS_IN","name":"Chewbacca","type":"Role","_key":"659","_from":"573","_to":"564"} +{"$label":"ACTS_IN","name":"Obi-Wan Kenobi","type":"Role","_key":"658","_from":"572","_to":"564"} +{"$label":"ACTS_IN","name":"R2-D2","type":"Role","_key":"657","_from":"571","_to":"564"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"656","_from":"570","_to":"564"} +{"$label":"ACTS_IN","name":"Grand Moff Tarkin","type":"Role","_key":"655","_from":"569","_to":"564"} +{"$label":"ACTS_IN","name":"Han Solo","type":"Role","_key":"654","_from":"568","_to":"564"} +{"$label":"ACTS_IN","name":"Leia Organa","type":"Role","_key":"653","_from":"567","_to":"564"} +{"$label":"ACTS_IN","name":"Luke Skywalker","type":"Role","_key":"652","_from":"566","_to":"564"} +{"$label":"DIRECTED","_key":"651","_from":"565","_to":"564"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116795","_from":"565","_to":"68752"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32454","_from":"565","_to":"22571"} +{"$label":"ACTS_IN","name":"Disappointed Man","type":"Role","_key":"4229","_from":"565","_to":"3604"} +{"$label":"DIRECTED","_key":"16348","_from":"565","_to":"12384"} +{"$label":"DIRECTED","_key":"9889","_from":"565","_to":"7929"} +{"$label":"DIRECTED","_key":"7568","_from":"565","_to":"6300"} +{"$label":"DIRECTED","_key":"700","_from":"565","_to":"601"} +{"$label":"DIRECTED","_key":"666","_from":"565","_to":"580"} +{"$label":"ACTS_IN","name":"Hawkins","type":"Role","_key":"113376","_from":"566","_to":"66785"} +{"$label":"ACTS_IN","name":"The Joker","type":"Role","_key":"111022","_from":"566","_to":"65577"} +{"$label":"ACTS_IN","name":"Judah","type":"Role","_key":"108912","_from":"566","_to":"64366"} +{"$label":"ACTS_IN","name":"Commander Taylor","type":"Role","_key":"108900","_from":"566","_to":"64360"} +{"$label":"ACTS_IN","name":"Jack Napier \/ The Joker","type":"Role","_key":"108228","_from":"566","_to":"63962"} +{"$label":"ACTS_IN","name":"Luke Skywalker","type":"Role","_key":"107307","_from":"566","_to":"63286"} +{"$label":"ACTS_IN","name":"Pvt. Griff, 1st Squad","type":"Role","_key":"107139","_from":"566","_to":"63187"} +{"$label":"ACTS_IN","name":"Threshold \/ Matthew Callahan (voice)","type":"Role","_key":"106589","_from":"566","_to":"62807"} +{"$label":"ACTS_IN","name":"Max Reed","type":"Role","_key":"102811","_from":"566","_to":"60477"} +{"$label":"ACTS_IN","name":"The Joker","type":"Role","_key":"102470","_from":"566","_to":"60297"} +{"$label":"ACTS_IN","name":"Bin","type":"Role","_key":"101514","_from":"566","_to":"59747"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98750","_from":"566","_to":"58193"} +{"$label":"ACTS_IN","name":"Cock-Knocker","type":"Role","_key":"20144","_from":"566","_to":"14786"} +{"$label":"ACTS_IN","name":"Luke Skywalker","type":"Role","_key":"16328","_from":"566","_to":"12377"} +{"$label":"ACTS_IN","name":"Luke Skywalker","type":"Role","_key":"686","_from":"566","_to":"597"} +{"$label":"ACTS_IN","name":"Monica Delancy","type":"Role","_key":"112050","_from":"567","_to":"66164"} +{"$label":"ACTS_IN","name":"Princess Leia Organa","type":"Role","_key":"107309","_from":"567","_to":"63286"} +{"$label":"ACTS_IN","name":"Bailey Smith","type":"Role","_key":"97903","_from":"567","_to":"57663"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"95081","_from":"567","_to":"55963"} +{"$label":"ACTS_IN","name":"Carol Peterson","type":"Role","_key":"73086","_from":"567","_to":"43971"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"66617","_from":"567","_to":"41179"} +{"$label":"ACTS_IN","name":"Janie","type":"Role","_key":"62901","_from":"567","_to":"39513"} +{"$label":"ACTS_IN","name":"Mary Brown","type":"Role","_key":"38805","_from":"567","_to":"26203"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"36070","_from":"567","_to":"24486"} +{"$label":"ACTS_IN","name":"Sally Hansen","type":"Role","_key":"35466","_from":"567","_to":"24121"} +{"$label":"ACTS_IN","name":"Nadine Boynton","type":"Role","_key":"30737","_from":"567","_to":"21548"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"30304","_from":"567","_to":"21314"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25406","_from":"567","_to":"18319"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"20141","_from":"567","_to":"14786"} +{"$label":"ACTS_IN","name":"Princess Leia","type":"Role","_key":"16330","_from":"567","_to":"12377"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"7641","_from":"567","_to":"6355"} +{"$label":"ACTS_IN","name":"Mystery Woman","type":"Role","_key":"6294","_from":"567","_to":"5313"} +{"$label":"ACTS_IN","name":"Princess Leia","type":"Role","_key":"688","_from":"567","_to":"597"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Barnsby","type":"Role","_key":"111941","_from":"568","_to":"66083"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"110652","_from":"568","_to":"65369"} +{"$label":"ACTS_IN","name":"Han Solo","type":"Role","_key":"107308","_from":"568","_to":"63286"} +{"$label":"ACTS_IN","name":"Max Brogan","type":"Role","_key":"105036","_from":"568","_to":"61815"} +{"$label":"ACTS_IN","name":"Dutch Van Den Broeck","type":"Role","_key":"90636","_from":"568","_to":"53520"} +{"$label":"ACTS_IN","name":"Linus Larrabee","type":"Role","_key":"72427","_from":"568","_to":"43719"} +{"$label":"ACTS_IN","name":"Sgt. Joe Gavilan","type":"Role","_key":"69480","_from":"568","_to":"42450"} +{"$label":"ACTS_IN","name":"Henry Turner","type":"Role","_key":"69421","_from":"568","_to":"42428"} +{"$label":"ACTS_IN","name":"Allie Fox","type":"Role","_key":"67988","_from":"568","_to":"41779"} +{"$label":"ACTS_IN","name":"Rozat \"Rusty\" Sabich","type":"Role","_key":"67830","_from":"568","_to":"41688"} +{"$label":"ACTS_IN","name":"Dr. Richard Walker","type":"Role","_key":"64979","_from":"568","_to":"40386"} +{"$label":"ACTS_IN","name":"Jack Ryan","type":"Role","_key":"57487","_from":"568","_to":"36435"} +{"$label":"ACTS_IN","name":"President James Marshall","type":"Role","_key":"56508","_from":"568","_to":"35891"} +{"$label":"ACTS_IN","name":"Jack Stanfield","type":"Role","_key":"56301","_from":"568","_to":"35776"} +{"$label":"ACTS_IN","name":"Jack Ryan","type":"Role","_key":"53161","_from":"568","_to":"34396"} +{"$label":"ACTS_IN","name":"Det. Capt. John Book","type":"Role","_key":"52821","_from":"568","_to":"34251"} +{"$label":"ACTS_IN","name":"Alexei Vostrikov","type":"Role","_key":"50351","_from":"568","_to":"32894"} +{"$label":"ACTS_IN","name":"Quinn Harris","type":"Role","_key":"41451","_from":"568","_to":"27866"} +{"$label":"ACTS_IN","name":"Dr. Kimble","type":"Role","_key":"37539","_from":"568","_to":"25451"} +{"$label":"ACTS_IN","name":"Lt. Shaffer","type":"Role","_key":"35055","_from":"568","_to":"23910"} +{"$label":"ACTS_IN","name":"Tom O'Meara","type":"Role","_key":"31976","_from":"568","_to":"22296"} +{"$label":"ACTS_IN","name":"Jack Trainer","type":"Role","_key":"27615","_from":"568","_to":"19802"} +{"$label":"ACTS_IN","name":"Dr. Norman Spencer","type":"Role","_key":"22523","_from":"568","_to":"16367"} +{"$label":"ACTS_IN","name":"Han Solo","type":"Role","_key":"16329","_from":"568","_to":"12377"} +{"$label":"ACTS_IN","name":"Bob Falfa","type":"Role","_key":"9901","_from":"568","_to":"7929"} +{"$label":"ACTS_IN","name":"Martin Stett","type":"Role","_key":"7113","_from":"568","_to":"5945"} +{"$label":"ACTS_IN","name":"Indiana Jones","type":"Role","_key":"3121","_from":"568","_to":"2678"} +{"$label":"ACTS_IN","name":"Indiana Jones","type":"Role","_key":"1707","_from":"568","_to":"1473"} +{"$label":"ACTS_IN","name":"Indiana Jones","type":"Role","_key":"1665","_from":"568","_to":"1431"} +{"$label":"ACTS_IN","name":"Indiana Jones","type":"Role","_key":"1618","_from":"568","_to":"1387"} +{"$label":"ACTS_IN","name":"Rick Deckard","type":"Role","_key":"1551","_from":"568","_to":"1321"} +{"$label":"ACTS_IN","name":"Colonel Lucas","type":"Role","_key":"1267","_from":"568","_to":"1039"} +{"$label":"ACTS_IN","name":"Han Solo","type":"Role","_key":"687","_from":"568","_to":"597"} +{"$label":"ACTS_IN","name":"Rev. Dr. Blyss (Capt. Clegg)","type":"Role","_key":"119205","_from":"569","_to":"70041"} +{"$label":"ACTS_IN","name":"John Banning","type":"Role","_key":"118386","_from":"569","_to":"69598"} +{"$label":"ACTS_IN","name":"Ship's Captain","type":"Role","_key":"115554","_from":"569","_to":"68028"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"113315","_from":"569","_to":"66756"} +{"$label":"ACTS_IN","name":"Dr Who","type":"Role","_key":"109019","_from":"569","_to":"64424"} +{"$label":"ACTS_IN","name":"Doctor Van Helsing","type":"Role","_key":"72464","_from":"569","_to":"43729"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"72024","_from":"569","_to":"43551"} +{"$label":"ACTS_IN","name":"Buchh\u00e4ndler","type":"Role","_key":"50710","_from":"569","_to":"33102"} +{"$label":"ACTS_IN","name":"Dr. Victor Stein","type":"Role","_key":"26209","_from":"569","_to":"18831"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"26181","_from":"569","_to":"18808"} +{"$label":"ACTS_IN","name":"Baron Victor Frankenstein aka Dr. Carl Victor","type":"Role","_key":"26105","_from":"569","_to":"18753"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"25961","_from":"569","_to":"18668"} +{"$label":"ACTS_IN","name":"Baron Viktor Frankenstein","type":"Role","_key":"25534","_from":"569","_to":"18398"} +{"$label":"ACTS_IN","name":"Baron Victor Frankenstein","type":"Role","_key":"25490","_from":"569","_to":"18377"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"107310","_from":"570","_to":"63286"} +{"$label":"ACTS_IN","name":"C-3PO (voice)","type":"Role","_key":"88504","_from":"570","_to":"52456"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"16354","_from":"570","_to":"12384"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"16333","_from":"570","_to":"12377"} +{"$label":"ACTS_IN","name":"Legolas","type":"Role","_key":"2050","_from":"570","_to":"1785"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"709","_from":"570","_to":"601"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"690","_from":"570","_to":"597"} +{"$label":"ACTS_IN","name":"C-3PO","type":"Role","_key":"671","_from":"570","_to":"580"} +{"$label":"ACTS_IN","name":"Plumed Dwarf","type":"Role","_key":"16959","_from":"571","_to":"12729"} +{"$label":"ACTS_IN","name":"R2-D2","type":"Role","_key":"16363","_from":"571","_to":"12384"} +{"$label":"ACTS_IN","name":"R2-D2","type":"Role","_key":"16336","_from":"571","_to":"12377"} +{"$label":"ACTS_IN","name":"R2-D2","type":"Role","_key":"710","_from":"571","_to":"601"} +{"$label":"ACTS_IN","name":"R2-D2 \/ Paploo","type":"Role","_key":"698","_from":"571","_to":"597"} +{"$label":"ACTS_IN","name":"R2-D2","type":"Role","_key":"672","_from":"571","_to":"580"} +{"$label":"ACTS_IN","name":"Marcus Aurelius","type":"Role","_key":"111749","_from":"572","_to":"65965"} +{"$label":"ACTS_IN","name":"George Bird","type":"Role","_key":"110603","_from":"572","_to":"65349"} +{"$label":"ACTS_IN","name":"Ben (Obi-Wan) Kenobi (archive footage) (uncredited)","type":"Role","_key":"107334","_from":"572","_to":"63286"} +{"$label":"ACTS_IN","name":"Prof. Godbole","type":"Role","_key":"106358","_from":"572","_to":"62660"} +{"$label":"ACTS_IN","name":"Jacob Marley's Ghost","type":"Role","_key":"96230","_from":"572","_to":"56558"} +{"$label":"ACTS_IN","name":"Fagin","type":"Role","_key":"66921","_from":"572","_to":"41318"} +{"$label":"ACTS_IN","name":"Bensonmum","type":"Role","_key":"41386","_from":"572","_to":"27822"} +{"$label":"ACTS_IN","name":"Professor Marcus","type":"Role","_key":"37552","_from":"572","_to":"25457"} +{"$label":"ACTS_IN","name":"Papst Innozenz III.","type":"Role","_key":"22065","_from":"572","_to":"16093"} +{"$label":"ACTS_IN","name":"The Chief Clerk","type":"Role","_key":"20169","_from":"572","_to":"14795"} +{"$label":"ACTS_IN","name":"Ben 'Obi-wan' Kenobi","type":"Role","_key":"16338","_from":"572","_to":"12377"} +{"$label":"ACTS_IN","name":"Prince Feisal","type":"Role","_key":"11287","_from":"572","_to":"8914"} +{"$label":"ACTS_IN","name":"Gen. Yevgraf Zhivago","type":"Role","_key":"10794","_from":"572","_to":"8557"} +{"$label":"ACTS_IN","name":"Col. Nicholson","type":"Role","_key":"9766","_from":"572","_to":"7831"} +{"$label":"ACTS_IN","name":"Ben 'Obi-Wan' Kenobi","type":"Role","_key":"697","_from":"572","_to":"597"} +{"$label":"ACTS_IN","name":"Chewbacca","type":"Role","_key":"107311","_from":"573","_to":"63286"} +{"$label":"ACTS_IN","name":"Chewbacca","type":"Role","_key":"16334","_from":"573","_to":"12377"} +{"$label":"ACTS_IN","name":"Chewbacca","type":"Role","_key":"691","_from":"573","_to":"597"} +{"$label":"ACTS_IN","name":"Darth Vader (uncredited) (archive footage)","type":"Role","_key":"107336","_from":"574","_to":"63286"} +{"$label":"ACTS_IN","name":"Jonathan Walker","type":"Role","_key":"38450","_from":"574","_to":"25966"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"26108","_from":"574","_to":"18753"} +{"$label":"ACTS_IN","name":"Darth Vader","type":"Role","_key":"16331","_from":"574","_to":"12377"} +{"$label":"ACTS_IN","name":"Darth Vader","type":"Role","_key":"696","_from":"574","_to":"597"} +{"$label":"ACTS_IN","name":"John Dolby","type":"Role","_key":"116979","_from":"575","_to":"68856"} +{"$label":"ACTS_IN","name":"Mr. Mertle","type":"Role","_key":"116415","_from":"575","_to":"68529"} +{"$label":"ACTS_IN","name":"Coach Couzo","type":"Role","_key":"114199","_from":"575","_to":"67268"} +{"$label":"ACTS_IN","name":"Darth Vader (voice)","type":"Role","_key":"107312","_from":"575","_to":"63286"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"96728","_from":"575","_to":"56896"} +{"$label":"ACTS_IN","name":"Papa Jenkins","type":"Role","_key":"94778","_from":"575","_to":"55823"} +{"$label":"ACTS_IN","name":"Professor Banks","type":"Role","_key":"89182","_from":"575","_to":"52820"} +{"$label":"ACTS_IN","name":"Mr. Mertle","type":"Role","_key":"70441","_from":"575","_to":"42885"} +{"$label":"ACTS_IN","name":"Earnest Moses","type":"Role","_key":"68765","_from":"575","_to":"42134"} +{"$label":"ACTS_IN","name":"Umslopogaas","type":"Role","_key":"55922","_from":"575","_to":"35568"} +{"$label":"ACTS_IN","name":"King Jaffe Joffer","type":"Role","_key":"54957","_from":"575","_to":"35132"} +{"$label":"ACTS_IN","name":"Thulsa Doom","type":"Role","_key":"53523","_from":"575","_to":"34556"} +{"$label":"ACTS_IN","name":"Admiral James Greer","type":"Role","_key":"53165","_from":"575","_to":"34396"} +{"$label":"ACTS_IN","name":"King Mufasa","type":"Role","_key":"50223","_from":"575","_to":"32826"} +{"$label":"ACTS_IN","name":"Avery Phillips","type":"Role","_key":"37675","_from":"575","_to":"25539"} +{"$label":"ACTS_IN","name":"Balthasar","type":"Role","_key":"21134","_from":"575","_to":"15473"} +{"$label":"ACTS_IN","name":"Terrence Mann","type":"Role","_key":"20407","_from":"575","_to":"14937"} +{"$label":"ACTS_IN","name":"Bernard Abbott","type":"Role","_key":"20402","_from":"575","_to":"14934"} +{"$label":"ACTS_IN","name":"Darth Vader (Voice)","type":"Role","_key":"16335","_from":"575","_to":"12377"} +{"$label":"ACTS_IN","name":"Admiral James Greer","type":"Role","_key":"14804","_from":"575","_to":"11385"} +{"$label":"ACTS_IN","name":"Judge Barry Conrad Issacs","type":"Role","_key":"11835","_from":"575","_to":"9282"} +{"$label":"ACTS_IN","name":"Voice of Darth Vader (voice)","type":"Role","_key":"692","_from":"575","_to":"597"} +{"$label":"ACTS_IN","name":"Phil, Hotel Clerk","type":"Role","_key":"119759","_from":"576","_to":"70323"} +{"$label":"ACTS_IN","name":"Roy Todwell","type":"Role","_key":"28025","_from":"576","_to":"20091"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"110574","_from":"578","_to":"65331"} +{"$label":"ACTS_IN","name":"Geoff","type":"Role","_key":"46723","_from":"578","_to":"30833"} +{"$label":"ACTS_IN","name":"Barty Crouch, Sr.","type":"Role","_key":"8099","_from":"578","_to":"6682"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"52448","_from":"579","_to":"34119"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"16346","_from":"579","_to":"12377"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"7685","_from":"579","_to":"6376"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"7372","_from":"579","_to":"6141"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"4059","_from":"579","_to":"3450"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"3484","_from":"579","_to":"2975"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"3455","_from":"579","_to":"2944"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"1630","_from":"579","_to":"1387"} +{"$label":"ACTS_IN","name":"Thrill","type":"Role","_key":"699","_from":"579","_to":"597"} +{"$label":"ACTS_IN","name":"Sach\u00e9","type":"Role","_key":"684","_from":"596","_to":"580"} +{"$label":"ACTS_IN","name":"Sab\u00e9","type":"Role","_key":"683","_from":"595","_to":"580"} +{"$label":"ACTS_IN","name":"Mace Windu","type":"Role","_key":"682","_from":"594","_to":"580"} +{"$label":"ACTS_IN","name":"Capt. Tarpals","type":"Role","_key":"681","_from":"593","_to":"580"} +{"$label":"ACTS_IN","name":"Watto","type":"Role","_key":"680","_from":"592","_to":"580"} +{"$label":"ACTS_IN","name":"Jar Jar Binks (Voice)","type":"Role","_key":"679","_from":"591","_to":"580"} +{"$label":"ACTS_IN","name":"Capt. Panaka","type":"Role","_key":"678","_from":"590","_to":"580"} +{"$label":"ACTS_IN","name":"Darth Maul","type":"Role","_key":"677","_from":"589","_to":"580"} +{"$label":"ACTS_IN","name":"Governor Bibble","type":"Role","_key":"676","_from":"588","_to":"580"} +{"$label":"ACTS_IN","name":"Yoda (voice)","type":"Role","_key":"675","_from":"587","_to":"580"} +{"$label":"ACTS_IN","name":"Shmi Skywalker","type":"Role","_key":"674","_from":"586","_to":"580"} +{"$label":"ACTS_IN","name":"Anakin Skywalker","type":"Role","_key":"673","_from":"585","_to":"580"} +{"$label":"ACTS_IN","name":"Senator Palpatine","type":"Role","_key":"670","_from":"584","_to":"580"} +{"$label":"ACTS_IN","name":"Qui-Gon Jinn","type":"Role","_key":"669","_from":"583","_to":"580"} +{"$label":"ACTS_IN","name":"Obi Wan Kenobi","type":"Role","_key":"668","_from":"582","_to":"580"} +{"$label":"ACTS_IN","name":"Queen Amidala","type":"Role","_key":"667","_from":"581","_to":"580"} +{"$label":"ACTS_IN","name":"Rifka","type":"Role","_key":"90358","_from":"581","_to":"53397"} +{"$label":"ACTS_IN","name":"Anne Boleyn","type":"Role","_key":"88552","_from":"581","_to":"52483"} +{"$label":"ACTS_IN","name":"In\u00e9s","type":"Role","_key":"70349","_from":"581","_to":"42856"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"68453","_from":"581","_to":"41990"} +{"$label":"ACTS_IN","name":"Novalee Nation","type":"Role","_key":"64102","_from":"581","_to":"40004"} +{"$label":"ACTS_IN","name":"Jane Foster","type":"Role","_key":"61614","_from":"581","_to":"38831"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53619","_from":"581","_to":"34590"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"52847","_from":"581","_to":"34256"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"46837","_from":"581","_to":"30892"} +{"$label":"ACTS_IN","name":"Grace Cahill","type":"Role","_key":"46674","_from":"581","_to":"30821"} +{"$label":"ACTS_IN","name":"Jack's Girlfriend","type":"Role","_key":"43371","_from":"581","_to":"28978"} +{"$label":"ACTS_IN","name":"Jack's X-Girlfriend","type":"Role","_key":"32441","_from":"581","_to":"22567"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"20075","_from":"581","_to":"14764"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"20062","_from":"581","_to":"14761"} +{"$label":"ACTS_IN","name":"Molly Mahoney","type":"Role","_key":"20026","_from":"581","_to":"14731"} +{"$label":"ACTS_IN","name":"Francine (Faubourg Saint-Denis)","type":"Role","_key":"19887","_from":"581","_to":"14635"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"17226","_from":"581","_to":"12902"} +{"$label":"ACTS_IN","name":"Padm\u00e9 Amidala","type":"Role","_key":"16351","_from":"581","_to":"12384"} +{"$label":"ACTS_IN","name":"Lauren Gustafson","type":"Role","_key":"11334","_from":"581","_to":"8936"} +{"$label":"ACTS_IN","name":"Evey Hammond","type":"Role","_key":"8765","_from":"581","_to":"7114"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"5075","_from":"581","_to":"4313"} +{"$label":"ACTS_IN","name":"Taffy Dale","type":"Role","_key":"1515","_from":"581","_to":"1277"} +{"$label":"ACTS_IN","name":"Mathilda","type":"Role","_key":"978","_from":"581","_to":"792"} +{"$label":"ACTS_IN","name":"Padm\u00e9 Amidala","type":"Role","_key":"702","_from":"581","_to":"601"} +{"$label":"DIRECTED","_key":"90357","_from":"581","_to":"53397"} +{"$label":"DIRECTED","_key":"89388","_from":"581","_to":"52910"} +{"$label":"ACTS_IN","name":"Dean Raymond","type":"Role","_key":"117375","_from":"582","_to":"69039"} +{"$label":"ACTS_IN","name":"Stephen Wilson","type":"Role","_key":"117074","_from":"582","_to":"68896"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"116651","_from":"582","_to":"68665"} +{"$label":"ACTS_IN","name":"Jasper Black","type":"Role","_key":"105540","_from":"582","_to":"62107"} +{"$label":"ACTS_IN","name":"Norman Warne","type":"Role","_key":"97865","_from":"582","_to":"57645"} +{"$label":"ACTS_IN","name":"Carlo Ventresca","type":"Role","_key":"94501","_from":"582","_to":"55655"} +{"$label":"ACTS_IN","name":"Jonathan McQuarry","type":"Role","_key":"92044","_from":"582","_to":"54312"} +{"$label":"ACTS_IN","name":"The Ghost","type":"Role","_key":"69827","_from":"582","_to":"42613"} +{"$label":"ACTS_IN","name":"Catcher Block","type":"Role","_key":"65243","_from":"582","_to":"40504"} +{"$label":"ACTS_IN","name":"Bob Wilton","type":"Role","_key":"62538","_from":"582","_to":"39366"} +{"$label":"ACTS_IN","name":"Ian Rider","type":"Role","_key":"58886","_from":"582","_to":"37189"} +{"$label":"ACTS_IN","name":"Rodney Copperbottom (voice)","type":"Role","_key":"58223","_from":"582","_to":"36829"} +{"$label":"ACTS_IN","name":"Alex Law","type":"Role","_key":"57827","_from":"582","_to":"36604"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"53946","_from":"582","_to":"34709"} +{"$label":"ACTS_IN","name":"Phillip Morris","type":"Role","_key":"51612","_from":"582","_to":"33675"} +{"$label":"ACTS_IN","name":"Gene Vidal","type":"Role","_key":"51476","_from":"582","_to":"33572"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"50132","_from":"582","_to":"32785"} +{"$label":"ACTS_IN","name":"Robert Lewis","type":"Role","_key":"48012","_from":"582","_to":"31583"} +{"$label":"ACTS_IN","name":"Sam Foster","type":"Role","_key":"48003","_from":"582","_to":"31581"} +{"$label":"ACTS_IN","name":"Ian Blaine","type":"Role","_key":"33993","_from":"582","_to":"23390"} +{"$label":"ACTS_IN","name":"Frank Churchill","type":"Role","_key":"27990","_from":"582","_to":"20074"} +{"$label":"ACTS_IN","name":"Martin Bells","type":"Role","_key":"19226","_from":"582","_to":"14214"} +{"$label":"ACTS_IN","name":"Obi-Wan Kenobi","type":"Role","_key":"16350","_from":"582","_to":"12384"} +{"$label":"ACTS_IN","name":"Curt Wild","type":"Role","_key":"15625","_from":"582","_to":"11924"} +{"$label":"ACTS_IN","name":"Lincoln Six Echo","type":"Role","_key":"14483","_from":"582","_to":"11190"} +{"$label":"ACTS_IN","name":"Spec. John Grimes","type":"Role","_key":"10137","_from":"582","_to":"8112"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"9725","_from":"582","_to":"7809"} +{"$label":"ACTS_IN","name":"Renton","type":"Role","_key":"7445","_from":"582","_to":"6206"} +{"$label":"ACTS_IN","name":"Younger Ed Bloom","type":"Role","_key":"7042","_from":"582","_to":"5901"} +{"$label":"ACTS_IN","name":"Joe Taylor","type":"Role","_key":"3421","_from":"582","_to":"2932"} +{"$label":"ACTS_IN","name":"Obi Wan Kenobi","type":"Role","_key":"701","_from":"582","_to":"601"} +{"$label":"ACTS_IN","name":"Zeus","type":"Role","_key":"117654","_from":"583","_to":"69157"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"115647","_from":"583","_to":"68086"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"113690","_from":"583","_to":"66996"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"113323","_from":"583","_to":"66758"} +{"$label":"ACTS_IN","name":"Martin Falcon","type":"Role","_key":"111182","_from":"583","_to":"65663"} +{"$label":"ACTS_IN","name":"Alistair Little","type":"Role","_key":"109969","_from":"583","_to":"64978"} +{"$label":"ACTS_IN","name":"Carver","type":"Role","_key":"93575","_from":"583","_to":"55109"} +{"$label":"ACTS_IN","name":"Sheriff Will Braverman","type":"Role","_key":"91444","_from":"583","_to":"53929"} +{"$label":"ACTS_IN","name":"Carl Wayne Anderson","type":"Role","_key":"90684","_from":"583","_to":"53538"} +{"$label":"ACTS_IN","name":"Robert Roy MacGregor (Rob Roy)","type":"Role","_key":"71931","_from":"583","_to":"43521"} +{"$label":"ACTS_IN","name":"Dr. David Marrow","type":"Role","_key":"71082","_from":"583","_to":"43160"} +{"$label":"ACTS_IN","name":"Gawain","type":"Role","_key":"70434","_from":"583","_to":"42880"} +{"$label":"ACTS_IN","name":"Fielding","type":"Role","_key":"69734","_from":"583","_to":"42563"} +{"$label":"ACTS_IN","name":"Alfred Kinsey","type":"Role","_key":"68386","_from":"583","_to":"41964"} +{"$label":"ACTS_IN","name":"Peter Swan","type":"Role","_key":"64837","_from":"583","_to":"40334"} +{"$label":"ACTS_IN","name":"Peyton Westlake \/ Darkman","type":"Role","_key":"54649","_from":"583","_to":"35004"} +{"$label":"ACTS_IN","name":"Bryan","type":"Role","_key":"50444","_from":"583","_to":"32952"} +{"$label":"ACTS_IN","name":"Mikhail Polenin","type":"Role","_key":"50352","_from":"583","_to":"32894"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31595","_from":"583","_to":"22064"} +{"$label":"ACTS_IN","name":"Priest Vallon","type":"Role","_key":"26222","_from":"583","_to":"18837"} +{"$label":"ACTS_IN","name":"Charles Churchill","type":"Role","_key":"22626","_from":"583","_to":"16415"} +{"$label":"ACTS_IN","name":"Aslan","type":"Role","_key":"21535","_from":"583","_to":"15744"} +{"$label":"ACTS_IN","name":"Dr. Lovell","type":"Role","_key":"16867","_from":"583","_to":"12688"} +{"$label":"ACTS_IN","name":"Michael Collins","type":"Role","_key":"15406","_from":"583","_to":"11783"} +{"$label":"ACTS_IN","name":"Godfrey de Ibelin","type":"Role","_key":"13545","_from":"583","_to":"10534"} +{"$label":"ACTS_IN","name":"Father Liam","type":"Role","_key":"13140","_from":"583","_to":"10247"} +{"$label":"ACTS_IN","name":"Kegan","type":"Role","_key":"10058","_from":"583","_to":"8047"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"6133","_from":"583","_to":"5200"} +{"$label":"ACTS_IN","name":"Oskar Schindler","type":"Role","_key":"5323","_from":"583","_to":"4517"} +{"$label":"ACTS_IN","name":"Aslan","type":"Role","_key":"5239","_from":"583","_to":"4445"} +{"$label":"ACTS_IN","name":"Henri Ducard","type":"Role","_key":"3862","_from":"583","_to":"3310"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"61206","_from":"584","_to":"38666"} +{"$label":"ACTS_IN","name":"Professor Andreev","type":"Role","_key":"48875","_from":"584","_to":"32046"} +{"$label":"ACTS_IN","name":"Dr. Lancaster","type":"Role","_key":"22606","_from":"584","_to":"16413"} +{"$label":"ACTS_IN","name":"Chancellor Palpatine","type":"Role","_key":"16352","_from":"584","_to":"12384"} +{"$label":"ACTS_IN","name":"Chancellor Palpatine","type":"Role","_key":"705","_from":"584","_to":"601"} +{"$label":"ACTS_IN","name":"The Emperor","type":"Role","_key":"694","_from":"584","_to":"597"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"106084","_from":"586","_to":"62469"} +{"$label":"ACTS_IN","name":"Shmi Skywalker","type":"Role","_key":"721","_from":"586","_to":"601"} +{"$label":"ACTS_IN","name":"Various Characters","type":"Role","_key":"93573","_from":"587","_to":"55106"} +{"$label":"ACTS_IN","name":"Miss Piggy \/ Fozzie \/ Animal \/ Bert \/ Cookie Monster \/ Ocean Breeze Soap Board Member \/ Sam the Eagle (voice)","type":"Role","_key":"72630","_from":"587","_to":"43777"} +{"$label":"ACTS_IN","name":"Aughra, A Keeper Of Secrets","type":"Role","_key":"71216","_from":"587","_to":"43219"} +{"$label":"ACTS_IN","name":"Miss Piggy \/ Fozzie Bear \/ Animal \/ Sam the Eagle \/ Doc Hopper's Men \/ Marvin Suggs (uncredited) \/ Swedish Chef (hands) (uncredited) \/ Motorcycle Guy (uncredited) (voice)","type":"Role","_key":"68337","_from":"587","_to":"41944"} +{"$label":"ACTS_IN","name":"Miss Piggy","type":"Role","_key":"61715","_from":"587","_to":"38867"} +{"$label":"ACTS_IN","name":"Test Monitor","type":"Role","_key":"52447","_from":"587","_to":"34119"} +{"$label":"ACTS_IN","name":"Robot ( voice )","type":"Role","_key":"44943","_from":"587","_to":"29879"} +{"$label":"ACTS_IN","name":"Yoda (Voice)","type":"Role","_key":"16353","_from":"587","_to":"12384"} +{"$label":"ACTS_IN","name":"Yoda (Voice)","type":"Role","_key":"16337","_from":"587","_to":"12377"} +{"$label":"ACTS_IN","name":"Fungus","type":"Role","_key":"7021","_from":"587","_to":"5882"} +{"$label":"ACTS_IN","name":"Corrections Officer","type":"Role","_key":"6325","_from":"587","_to":"5313"} +{"$label":"ACTS_IN","name":"Yoda (Voice)","type":"Role","_key":"708","_from":"587","_to":"601"} +{"$label":"ACTS_IN","name":"Yoda (voice)","type":"Role","_key":"693","_from":"587","_to":"597"} +{"$label":"DIRECTED","_key":"72628","_from":"587","_to":"43777"} +{"$label":"DIRECTED","_key":"71220","_from":"587","_to":"43219"} +{"$label":"DIRECTED","_key":"69457","_from":"587","_to":"42442"} +{"$label":"DIRECTED","_key":"69393","_from":"587","_to":"42419"} +{"$label":"DIRECTED","_key":"69311","_from":"587","_to":"42372"} +{"$label":"DIRECTED","_key":"65911","_from":"587","_to":"40773"} +{"$label":"DIRECTED","_key":"65702","_from":"587","_to":"40694"} +{"$label":"DIRECTED","_key":"63055","_from":"587","_to":"39566"} +{"$label":"DIRECTED","_key":"62340","_from":"587","_to":"39279"} +{"$label":"DIRECTED","_key":"61208","_from":"587","_to":"38666"} +{"$label":"DIRECTED","_key":"57614","_from":"587","_to":"36484"} +{"$label":"DIRECTED","_key":"19090","_from":"587","_to":"14109"} +{"$label":"ACTS_IN","name":"Prof. Carson","type":"Role","_key":"27215","_from":"588","_to":"19565"} +{"$label":"ACTS_IN","name":"Govenor Sio Bibble","type":"Role","_key":"715","_from":"588","_to":"601"} +{"$label":"ACTS_IN","name":"Brendan Mullen","type":"Role","_key":"111249","_from":"589","_to":"65695"} +{"$label":"ACTS_IN","name":"Snake Eyes","type":"Role","_key":"102232","_from":"589","_to":"60158"} +{"$label":"ACTS_IN","name":"A.J. Ross","type":"Role","_key":"64016","_from":"589","_to":"39965"} +{"$label":"ACTS_IN","name":"Sunda Kastagir","type":"Role","_key":"47757","_from":"590","_to":"31448"} +{"$label":"ACTS_IN","name":"George Bond","type":"Role","_key":"43659","_from":"590","_to":"29151"} +{"$label":"ACTS_IN","name":"Insp. Rhodes","type":"Role","_key":"27219","_from":"590","_to":"19565"} +{"$label":"ACTS_IN","name":"Watto (voice)","type":"Role","_key":"726","_from":"592","_to":"601"} +{"$label":"ACTS_IN","name":"Gustav Hansfeld","type":"Role","_key":"24284","_from":"593","_to":"17581"} +{"$label":"ACTS_IN","name":"Sloan","type":"Role","_key":"21678","_from":"593","_to":"15842"} +{"$label":"ACTS_IN","name":"Greg Meeker","type":"Role","_key":"119939","_from":"594","_to":"70452"} +{"$label":"ACTS_IN","name":"Eddie's Uncle (sketch)","type":"Role","_key":"111333","_from":"594","_to":"65744"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"110267","_from":"594","_to":"65170"} +{"$label":"ACTS_IN","name":"Langston Whitfield","type":"Role","_key":"109691","_from":"594","_to":"64785"} +{"$label":"ACTS_IN","name":"Zog (voice)","type":"Role","_key":"109575","_from":"594","_to":"64719"} +{"$label":"ACTS_IN","name":"Trip","type":"Role","_key":"107383","_from":"594","_to":"63339"} +{"$label":"ACTS_IN","name":"Afro Samurai \/ Ninja Ninja","type":"Role","_key":"101512","_from":"594","_to":"59747"} +{"$label":"ACTS_IN","name":"Louis Hinds","type":"Role","_key":"101310","_from":"594","_to":"59645"} +{"$label":"ACTS_IN","name":"Charles Morritz (Montr\u00e9al)","type":"Role","_key":"99438","_from":"594","_to":"58590"} +{"$label":"ACTS_IN","name":"William Marsh","type":"Role","_key":"98900","_from":"594","_to":"58276"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"96828","_from":"594","_to":"56940"} +{"$label":"ACTS_IN","name":"John Mills","type":"Role","_key":"95274","_from":"594","_to":"56056"} +{"$label":"ACTS_IN","name":"Abel Turner","type":"Role","_key":"93674","_from":"594","_to":"55148"} +{"$label":"ACTS_IN","name":"Tom Cutler","type":"Role","_key":"93604","_from":"594","_to":"55117"} +{"$label":"ACTS_IN","name":"Champ","type":"Role","_key":"92331","_from":"594","_to":"54491"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"89791","_from":"594","_to":"53142"} +{"$label":"ACTS_IN","name":"Mace Windu (voice)","type":"Role","_key":"88502","_from":"594","_to":"52456"} +{"$label":"ACTS_IN","name":"Agent Augustus Gibbons","type":"Role","_key":"71517","_from":"594","_to":"43338"} +{"$label":"ACTS_IN","name":"Mitch Henessey","type":"Role","_key":"69688","_from":"594","_to":"42545"} +{"$label":"ACTS_IN","name":"West","type":"Role","_key":"65747","_from":"594","_to":"40705"} +{"$label":"ACTS_IN","name":"Col. Terry L. Childers","type":"Role","_key":"63568","_from":"594","_to":"39782"} +{"$label":"ACTS_IN","name":"Dr. Harry Adams","type":"Role","_key":"61286","_from":"594","_to":"38697"} +{"$label":"ACTS_IN","name":"Nick Fury","type":"Role","_key":"61176","_from":"594","_to":"38656"} +{"$label":"ACTS_IN","name":"Lorenzo Council","type":"Role","_key":"58572","_from":"594","_to":"37011"} +{"$label":"ACTS_IN","name":"Lucius Best \/ Frozone (voice)","type":"Role","_key":"56988","_from":"594","_to":"36156"} +{"$label":"ACTS_IN","name":"Elijah Price","type":"Role","_key":"56224","_from":"594","_to":"35727"} +{"$label":"ACTS_IN","name":"Sgt. Wes Luger","type":"Role","_key":"55240","_from":"594","_to":"35235"} +{"$label":"ACTS_IN","name":"Lt. Danny Roman","type":"Role","_key":"55159","_from":"594","_to":"35201"} +{"$label":"ACTS_IN","name":"Robber","type":"Role","_key":"54963","_from":"594","_to":"35132"} +{"$label":"ACTS_IN","name":"Tat Lawson","type":"Role","_key":"54400","_from":"594","_to":"34892"} +{"$label":"ACTS_IN","name":"Sgt. Dan 'Hondo' Harrelson","type":"Role","_key":"52637","_from":"594","_to":"34193"} +{"$label":"ACTS_IN","name":"Derrick Vann","type":"Role","_key":"52406","_from":"594","_to":"34102"} +{"$label":"ACTS_IN","name":"Russell Franklin","type":"Role","_key":"51458","_from":"594","_to":"33562"} +{"$label":"ACTS_IN","name":"Octopuss","type":"Role","_key":"48830","_from":"594","_to":"32022"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"48591","_from":"594","_to":"31879"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"47883","_from":"594","_to":"31513"} +{"$label":"ACTS_IN","name":"Lazarus","type":"Role","_key":"47491","_from":"594","_to":"31289"} +{"$label":"ACTS_IN","name":"Agent Gibbons","type":"Role","_key":"46703","_from":"594","_to":"30829"} +{"$label":"ACTS_IN","name":"Ken Carter","type":"Role","_key":"45950","_from":"594","_to":"30380"} +{"$label":"ACTS_IN","name":"Trevor Garfield","type":"Role","_key":"41478","_from":"594","_to":"27874"} +{"$label":"ACTS_IN","name":"Calvin Hart","type":"Role","_key":"41470","_from":"594","_to":"27872"} +{"$label":"ACTS_IN","name":"Gerald Olin","type":"Role","_key":"25025","_from":"594","_to":"18080"} +{"$label":"ACTS_IN","name":"Jack Friar","type":"Role","_key":"17519","_from":"594","_to":"13100"} +{"$label":"ACTS_IN","name":"Mace Windu","type":"Role","_key":"16356","_from":"594","_to":"12384"} +{"$label":"ACTS_IN","name":"Nick Fury","type":"Role","_key":"15419","_from":"594","_to":"11787"} +{"$label":"ACTS_IN","name":"Carl Lee Hailey","type":"Role","_key":"14600","_from":"594","_to":"11252"} +{"$label":"ACTS_IN","name":"Elmo McElroy","type":"Role","_key":"14322","_from":"594","_to":"11086"} +{"$label":"ACTS_IN","name":"Zeus Carver","type":"Role","_key":"13902","_from":"594","_to":"10792"} +{"$label":"ACTS_IN","name":"Doyle Gipson","type":"Role","_key":"13611","_from":"594","_to":"10583"} +{"$label":"ACTS_IN","name":"Hejira Henry","type":"Role","_key":"12893","_from":"594","_to":"10063"} +{"$label":"ACTS_IN","name":"Mister Se\u00f1or Love Daddy","type":"Role","_key":"11023","_from":"594","_to":"8717"} +{"$label":"ACTS_IN","name":"Stacks Edwards","type":"Role","_key":"9041","_from":"594","_to":"7306"} +{"$label":"ACTS_IN","name":"Jules Winfield","type":"Role","_key":"8198","_from":"594","_to":"6746"} +{"$label":"ACTS_IN","name":"John Shaft","type":"Role","_key":"5874","_from":"594","_to":"4990"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"5019","_from":"594","_to":"4270"} +{"$label":"ACTS_IN","name":"Ray Arnold","type":"Role","_key":"4510","_from":"594","_to":"3842"} +{"$label":"ACTS_IN","name":"Neville Flynn","type":"Role","_key":"4488","_from":"594","_to":"3827"} +{"$label":"ACTS_IN","name":"Big Don","type":"Role","_key":"4436","_from":"594","_to":"3783"} +{"$label":"ACTS_IN","name":"Ordell Robbie","type":"Role","_key":"2793","_from":"594","_to":"2421"} +{"$label":"ACTS_IN","name":"Mace Windu","type":"Role","_key":"706","_from":"594","_to":"601"} +{"$label":"ACTS_IN","name":"Lara Antipova (ne\u00e9 Guishar)","type":"Role","_key":"118795","_from":"595","_to":"69843"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"114830","_from":"595","_to":"67641"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Joncour","type":"Role","_key":"101655","_from":"595","_to":"59832"} +{"$label":"ACTS_IN","name":"Vera Phillips","type":"Role","_key":"98331","_from":"595","_to":"57914"} +{"$label":"ACTS_IN","name":"Georgiana, The Duchess of Devonshire","type":"Role","_key":"91527","_from":"595","_to":"53952"} +{"$label":"ACTS_IN","name":"Domino Harvey","type":"Role","_key":"58120","_from":"595","_to":"36776"} +{"$label":"ACTS_IN","name":"Jackie Price","type":"Role","_key":"55419","_from":"595","_to":"35328"} +{"$label":"ACTS_IN","name":"Guinevere","type":"Role","_key":"54111","_from":"595","_to":"34783"} +{"$label":"ACTS_IN","name":"Gwyn","type":"Role","_key":"39343","_from":"595","_to":"26613"} +{"$label":"ACTS_IN","name":"Elizabeth Bennet","type":"Role","_key":"31074","_from":"595","_to":"21757"} +{"$label":"ACTS_IN","name":"Cecilia Tallis","type":"Role","_key":"31067","_from":"595","_to":"21754"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"6142","_from":"595","_to":"5200"} +{"$label":"ACTS_IN","name":"Frances 'Frankie' Almond Smith","type":"Role","_key":"5800","_from":"595","_to":"4933"} +{"$label":"ACTS_IN","name":"Juliette 'Jules' Paxton","type":"Role","_key":"5680","_from":"595","_to":"4839"} +{"$label":"ACTS_IN","name":"Elizabeth Swann","type":"Role","_key":"892","_from":"595","_to":"722"} +{"$label":"ACTS_IN","name":"Elizabeth Swann","type":"Role","_key":"860","_from":"595","_to":"706"} +{"$label":"ACTS_IN","name":"Elizabeth Swann","type":"Role","_key":"839","_from":"595","_to":"688"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32448","_from":"596","_to":"22571"} +{"$label":"ACTS_IN","name":"Mary Corleone","type":"Role","_key":"3518","_from":"596","_to":"3010"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"3356","_from":"596","_to":"2869"} +{"$label":"ACTS_IN","name":"Little Girl (as Domino)","type":"Role","_key":"3291","_from":"596","_to":"2809"} +{"$label":"DIRECTED","_key":"16279","_from":"596","_to":"12347"} +{"$label":"DIRECTED","_key":"13356","_from":"596","_to":"10404"} +{"$label":"DIRECTED","_key":"2386","_from":"596","_to":"2102"} +{"$label":"ACTS_IN","name":"Anakin Skywalker","type":"Role","_key":"695","_from":"600","_to":"597"} +{"$label":"ACTS_IN","name":"Lando Calrissian","type":"Role","_key":"689","_from":"599","_to":"597"} +{"$label":"DIRECTED","_key":"685","_from":"598","_to":"597"} +{"$label":"DIRECTED","_key":"88896","_from":"598","_to":"52664"} +{"$label":"DIRECTED","_key":"66348","_from":"598","_to":"41035"} +{"$label":"ACTS_IN","name":"Al Wheeler","type":"Role","_key":"117068","_from":"599","_to":"68895"} +{"$label":"ACTS_IN","name":"Gale Sayers","type":"Role","_key":"114769","_from":"599","_to":"67603"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"110367","_from":"599","_to":"65216"} +{"$label":"ACTS_IN","name":"Adm. Jim Perry","type":"Role","_key":"91735","_from":"599","_to":"54114"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"89559","_from":"599","_to":"53001"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"27842","_from":"599","_to":"19960"} +{"$label":"ACTS_IN","name":"Lando Calrissian","type":"Role","_key":"16332","_from":"599","_to":"12377"} +{"$label":"ACTS_IN","name":"Harvey Dent","type":"Role","_key":"3823","_from":"599","_to":"3276"} +{"$label":"ACTS_IN","name":"Beru","type":"Role","_key":"725","_from":"616","_to":"601"} +{"$label":"ACTS_IN","name":"Cliegg Lars","type":"Role","_key":"724","_from":"615","_to":"601"} +{"$label":"ACTS_IN","name":"Owen Lars","type":"Role","_key":"723","_from":"614","_to":"601"} +{"$label":"ACTS_IN","name":"Queen Jamillia","type":"Role","_key":"722","_from":"613","_to":"601"} +{"$label":"ACTS_IN","name":"Jango Fett","type":"Role","_key":"720","_from":"612","_to":"601"} +{"$label":"ACTS_IN","name":"Boba Fett","type":"Role","_key":"719","_from":"611","_to":"601"} +{"$label":"ACTS_IN","name":"Senator Bail Organa","type":"Role","_key":"718","_from":"610","_to":"601"} +{"$label":"ACTS_IN","name":"Capt. Typho","type":"Role","_key":"717","_from":"609","_to":"601"} +{"$label":"ACTS_IN","name":"Dexter Jettster","type":"Role","_key":"716","_from":"608","_to":"601"} +{"$label":"ACTS_IN","name":"Viceroy Nute Gunray","type":"Role","_key":"714","_from":"607","_to":"601"} +{"$label":"ACTS_IN","name":"Cord\u00e9","type":"Role","_key":"713","_from":"606","_to":"601"} +{"$label":"ACTS_IN","name":"Gilramos Libkath","type":"Role","_key":"712","_from":"605","_to":"601"} +{"$label":"ACTS_IN","name":"Dorm\u00e9","type":"Role","_key":"707","_from":"604","_to":"601"} +{"$label":"ACTS_IN","name":"Count Dooku","type":"Role","_key":"704","_from":"603","_to":"601"} +{"$label":"ACTS_IN","name":"Anakin Skywalker","type":"Role","_key":"703","_from":"602","_to":"601"} +{"$label":"ACTS_IN","name":"Lorenzo","type":"Role","_key":"99626","_from":"602","_to":"58736"} +{"$label":"ACTS_IN","name":"Stephen Glass","type":"Role","_key":"95099","_from":"602","_to":"55970"} +{"$label":"ACTS_IN","name":"Clay Beresford","type":"Role","_key":"94733","_from":"602","_to":"55797"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"90362","_from":"602","_to":"53397"} +{"$label":"ACTS_IN","name":"Musician","type":"Role","_key":"89146","_from":"602","_to":"52804"} +{"$label":"ACTS_IN","name":"Sam Monroe","type":"Role","_key":"69972","_from":"602","_to":"42686"} +{"$label":"ACTS_IN","name":"David Rice","type":"Role","_key":"48599","_from":"602","_to":"31879"} +{"$label":"ACTS_IN","name":"Anakin Skywalker","type":"Role","_key":"16349","_from":"602","_to":"12384"} +{"$label":"ACTS_IN","name":"Joe Hill Conley","type":"Role","_key":"13371","_from":"602","_to":"10404"} +{"$label":"ACTS_IN","name":"Kharis, the Mummy","type":"Role","_key":"118387","_from":"603","_to":"69598"} +{"$label":"ACTS_IN","name":"Billali","type":"Role","_key":"113318","_from":"603","_to":"66756"} +{"$label":"ACTS_IN","name":"Tiresias","type":"Role","_key":"111715","_from":"603","_to":"65950"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"111130","_from":"603","_to":"65637"} +{"$label":"ACTS_IN","name":"Lord Summerisle","type":"Role","_key":"108607","_from":"603","_to":"64180"} +{"$label":"ACTS_IN","name":"Victor Gannon","type":"Role","_key":"101912","_from":"603","_to":"59980"} +{"$label":"ACTS_IN","name":"Kato","type":"Role","_key":"100530","_from":"603","_to":"59294"} +{"$label":"ACTS_IN","name":"Death (voice)","type":"Role","_key":"95119","_from":"603","_to":"55975"} +{"$label":"ACTS_IN","name":"Count Frederic Regula","type":"Role","_key":"90551","_from":"603","_to":"53485"} +{"$label":"ACTS_IN","name":"Rochefort","type":"Role","_key":"89245","_from":"603","_to":"52844"} +{"$label":"ACTS_IN","name":"Count Dooku (voice)","type":"Role","_key":"88503","_from":"603","_to":"52456"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"72465","_from":"603","_to":"43729"} +{"$label":"ACTS_IN","name":"Sir Henry","type":"Role","_key":"72026","_from":"603","_to":"43551"} +{"$label":"ACTS_IN","name":"Le prince des T\u00e9n\u00e8bres","type":"Role","_key":"71984","_from":"603","_to":"43537"} +{"$label":"ACTS_IN","name":"Joseph (attache)","type":"Role","_key":"70747","_from":"603","_to":"43020"} +{"$label":"ACTS_IN","name":"Capt. Wolfgang von Kleinschmidt","type":"Role","_key":"70380","_from":"603","_to":"42868"} +{"$label":"ACTS_IN","name":"King Haggard","type":"Role","_key":"61254","_from":"603","_to":"38678"} +{"$label":"ACTS_IN","name":"Martin Wallace","type":"Role","_key":"46019","_from":"603","_to":"30412"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"38070","_from":"603","_to":"25754"} +{"$label":"ACTS_IN","name":"Mycroft Holmes","type":"Role","_key":"36357","_from":"603","_to":"24657"} +{"$label":"ACTS_IN","name":"Marquis St. Evremonde","type":"Role","_key":"33468","_from":"603","_to":"23156"} +{"$label":"ACTS_IN","name":"Sanson","type":"Role","_key":"30219","_from":"603","_to":"21284"} +{"$label":"ACTS_IN","name":"Heinrich von Garten","type":"Role","_key":"29173","_from":"603","_to":"20776"} +{"$label":"ACTS_IN","name":"Pastor Galswells (voice)","type":"Role","_key":"28970","_from":"603","_to":"20688"} +{"$label":"ACTS_IN","name":"Capt. Allerman","type":"Role","_key":"27566","_from":"603","_to":"19773"} +{"$label":"ACTS_IN","name":"Dr. Fu Man Chu","type":"Role","_key":"27414","_from":"603","_to":"19690"} +{"$label":"ACTS_IN","name":"Dr. Fu Man Chu","type":"Role","_key":"27394","_from":"603","_to":"19679"} +{"$label":"ACTS_IN","name":"Dr. Fu Man Chu","type":"Role","_key":"27373","_from":"603","_to":"19673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26675","_from":"603","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself \/ Host \/ Narrator","type":"Role","_key":"26666","_from":"603","_to":"19158"} +{"$label":"ACTS_IN","name":"The Creature","type":"Role","_key":"25536","_from":"603","_to":"18398"} +{"$label":"ACTS_IN","name":"Zindar","type":"Role","_key":"25108","_from":"603","_to":"18140"} +{"$label":"ACTS_IN","name":"Paul Allen","type":"Role","_key":"25067","_from":"603","_to":"18109"} +{"$label":"ACTS_IN","name":"Rochefort","type":"Role","_key":"24346","_from":"603","_to":"17626"} +{"$label":"ACTS_IN","name":"Pharao Ramses","type":"Role","_key":"22979","_from":"603","_to":"16666"} +{"$label":"ACTS_IN","name":"Burgomaster","type":"Role","_key":"22612","_from":"603","_to":"16413"} +{"$label":"ACTS_IN","name":"Count Dooku","type":"Role","_key":"16355","_from":"603","_to":"12384"} +{"$label":"ACTS_IN","name":"Doctor Catheter","type":"Role","_key":"11062","_from":"603","_to":"8747"} +{"$label":"ACTS_IN","name":"Francisco Scaramanga","type":"Role","_key":"8236","_from":"603","_to":"6761"} +{"$label":"ACTS_IN","name":"Saruman","type":"Role","_key":"1013","_from":"603","_to":"820"} +{"$label":"ACTS_IN","name":"Saruman","type":"Role","_key":"994","_from":"603","_to":"802"} +{"$label":"ACTS_IN","name":"Dr. Wonka","type":"Role","_key":"888","_from":"603","_to":"711"} +{"$label":"ACTS_IN","name":"The Jabberwock","type":"Role","_key":"827","_from":"603","_to":"671"} +{"$label":"ACTS_IN","name":"Rose Mortmain","type":"Role","_key":"114381","_from":"604","_to":"67374"} +{"$label":"ACTS_IN","name":"Sonja Stilano","type":"Role","_key":"106832","_from":"604","_to":"62978"} +{"$label":"ACTS_IN","name":"Roberta Knickel","type":"Role","_key":"103511","_from":"604","_to":"60898"} +{"$label":"ACTS_IN","name":"Gemma Taylor","type":"Role","_key":"102207","_from":"604","_to":"60147"} +{"$label":"ACTS_IN","name":"Diana Wayland","type":"Role","_key":"96802","_from":"604","_to":"56926"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"95167","_from":"604","_to":"55998"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"94438","_from":"604","_to":"55608"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"68546","_from":"604","_to":"42032"} +{"$label":"ACTS_IN","name":"Rastus Sommers","type":"Role","_key":"31263","_from":"604","_to":"21867"} +{"$label":"ACTS_IN","name":"Duchesse de Polignac","type":"Role","_key":"16285","_from":"604","_to":"12347"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"13827","_from":"604","_to":"10733"} +{"$label":"ACTS_IN","name":"Cassie","type":"Role","_key":"12423","_from":"604","_to":"9736"} +{"$label":"ACTS_IN","name":"Briseis","type":"Role","_key":"7796","_from":"604","_to":"6469"} +{"$label":"ACTS_IN","name":"Reece","type":"Role","_key":"93393","_from":"607","_to":"55005"} +{"$label":"ACTS_IN","name":"Katib","type":"Role","_key":"17597","_from":"607","_to":"13140"} +{"$label":"ACTS_IN","name":"Ki-Adi-Mundi \/ Nute Gunray","type":"Role","_key":"16364","_from":"607","_to":"12384"} +{"$label":"ACTS_IN","name":"Senator Turner","type":"Role","_key":"121430","_from":"609","_to":"71341"} +{"$label":"ACTS_IN","name":"Captain Typho","type":"Role","_key":"16358","_from":"609","_to":"12384"} +{"$label":"ACTS_IN","name":"Julio Gonzales","type":"Role","_key":"105501","_from":"610","_to":"62082"} +{"$label":"ACTS_IN","name":"Agemt John Travis","type":"Role","_key":"62966","_from":"610","_to":"39537"} +{"$label":"ACTS_IN","name":"Walter Stone","type":"Role","_key":"62120","_from":"610","_to":"39122"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"40658","_from":"610","_to":"27371"} +{"$label":"ACTS_IN","name":"Senator Bail Organa","type":"Role","_key":"16357","_from":"610","_to":"12384"} +{"$label":"ACTS_IN","name":"Geronimo","type":"Role","_key":"4417","_from":"610","_to":"3774"} +{"$label":"ACTS_IN","name":"Briggs","type":"Role","_key":"121406","_from":"612","_to":"71336"} +{"$label":"ACTS_IN","name":"Jake Heke","type":"Role","_key":"97315","_from":"612","_to":"57297"} +{"$label":"ACTS_IN","name":"Axel Hood","type":"Role","_key":"72461","_from":"612","_to":"43727"} +{"$label":"ACTS_IN","name":"Hangman (= Henker)","type":"Role","_key":"61744","_from":"612","_to":"38881"} +{"$label":"ACTS_IN","name":"Runi","type":"Role","_key":"59878","_from":"612","_to":"37818"} +{"$label":"ACTS_IN","name":"Jager","type":"Role","_key":"41455","_from":"612","_to":"27866"} +{"$label":"ACTS_IN","name":"Commander Cody","type":"Role","_key":"16359","_from":"612","_to":"12384"} +{"$label":"ACTS_IN","name":"Juliano","type":"Role","_key":"14514","_from":"612","_to":"11198"} +{"$label":"ACTS_IN","name":"Jake Heke","type":"Role","_key":"6346","_from":"612","_to":"5366"} +{"$label":"ACTS_IN","name":"Hameeda - Haroun's neighbor","type":"Role","_key":"56037","_from":"613","_to":"35612"} +{"$label":"ACTS_IN","name":"Asha","type":"Role","_key":"47392","_from":"613","_to":"31218"} +{"$label":"ACTS_IN","name":"Ron (voice)","type":"Role","_key":"119663","_from":"614","_to":"70284"} +{"$label":"ACTS_IN","name":"Charlie Price","type":"Role","_key":"108924","_from":"614","_to":"64373"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"108620","_from":"614","_to":"64191"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"106285","_from":"614","_to":"62608"} +{"$label":"ACTS_IN","name":"Vince Delayo","type":"Role","_key":"100032","_from":"614","_to":"59005"} +{"$label":"ACTS_IN","name":"Aaron Sherritt","type":"Role","_key":"63970","_from":"614","_to":"39951"} +{"$label":"ACTS_IN","name":"Gawain","type":"Role","_key":"54110","_from":"614","_to":"34783"} +{"$label":"ACTS_IN","name":"Frederic Schist","type":"Role","_key":"117918","_from":"615","_to":"69318"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"114782","_from":"615","_to":"67611"} +{"$label":"ACTS_IN","name":"Skippy","type":"Role","_key":"106864","_from":"615","_to":"62996"} +{"$label":"ACTS_IN","name":"Major J.F. Thomas","type":"Role","_key":"96554","_from":"615","_to":"56784"} +{"$label":"ACTS_IN","name":"Hawkwood","type":"Role","_key":"91470","_from":"615","_to":"53933"} +{"$label":"ACTS_IN","name":"Chairman, Joint Chief of Staff","type":"Role","_key":"52594","_from":"615","_to":"34175"} +{"$label":"ACTS_IN","name":"Sonny Seiler","type":"Role","_key":"48331","_from":"615","_to":"31735"} +{"$label":"ACTS_IN","name":"Neil Fletcher","type":"Role","_key":"45499","_from":"615","_to":"30139"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"35009","_from":"615","_to":"23895"} +{"$label":"ACTS_IN","name":"Bandy","type":"Role","_key":"33065","_from":"615","_to":"22904"} +{"$label":"ACTS_IN","name":"Alan Jordan","type":"Role","_key":"17887","_from":"615","_to":"13313"} +{"$label":"ACTS_IN","name":"Jack Jones","type":"Role","_key":"9954","_from":"615","_to":"7967"} +{"$label":"ACTS_IN","name":"Lt. Saavik","type":"Role","_key":"738","_from":"628","_to":"617"} +{"$label":"ACTS_IN","name":"Ambassador Sarek","type":"Role","_key":"737","_from":"627","_to":"617"} +{"$label":"ACTS_IN","name":"Dr. Gillian Taylor","type":"Role","_key":"736","_from":"626","_to":"617"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"735","_from":"625","_to":"617"} +{"$label":"ACTS_IN","name":"Cmdr. Uhura","type":"Role","_key":"734","_from":"624","_to":"617"} +{"$label":"ACTS_IN","name":"Cmdr. Pavel Chekov","type":"Role","_key":"733","_from":"623","_to":"617"} +{"$label":"ACTS_IN","name":"Cmdr. Hikaru Sulu","type":"Role","_key":"732","_from":"622","_to":"617"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"731","_from":"621","_to":"617"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"730","_from":"620","_to":"617"} +{"$label":"ACTS_IN","name":"Captain Spock","type":"Role","_key":"729","_from":"618","_to":"617"} +{"$label":"ACTS_IN","name":"Admiral\/Captain James T. Kirk","type":"Role","_key":"728","_from":"619","_to":"617"} +{"$label":"DIRECTED","_key":"727","_from":"618","_to":"617"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105955","_from":"618","_to":"62384"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"104925","_from":"618","_to":"61741"} +{"$label":"ACTS_IN","name":"Old Spock","type":"Role","_key":"94692","_from":"618","_to":"55786"} +{"$label":"ACTS_IN","name":"Dr. David Kibner","type":"Role","_key":"72359","_from":"618","_to":"43697"} +{"$label":"ACTS_IN","name":"Angus McArdle","type":"Role","_key":"24823","_from":"618","_to":"17947"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"23121","_from":"618","_to":"16763"} +{"$label":"ACTS_IN","name":"Galvatron","type":"Role","_key":"16048","_from":"618","_to":"12195"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2677","_from":"618","_to":"2329"} +{"$label":"ACTS_IN","name":"Captain Spock","type":"Role","_key":"2652","_from":"618","_to":"2311"} +{"$label":"ACTS_IN","name":"Captain Spock","type":"Role","_key":"808","_from":"618","_to":"665"} +{"$label":"ACTS_IN","name":"Mr. Spock","type":"Role","_key":"784","_from":"618","_to":"653"} +{"$label":"ACTS_IN","name":"Capt. Spock\/Elevator Voice","type":"Role","_key":"767","_from":"618","_to":"645"} +{"$label":"DIRECTED","_key":"88336","_from":"618","_to":"52381"} +{"$label":"DIRECTED","_key":"20568","_from":"618","_to":"15049"} +{"$label":"DIRECTED","_key":"765","_from":"618","_to":"645"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105958","_from":"619","_to":"62384"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100568","_from":"619","_to":"59315"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"95086","_from":"619","_to":"55965"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95080","_from":"619","_to":"55963"} +{"$label":"ACTS_IN","name":"Starkman","type":"Role","_key":"65271","_from":"619","_to":"40514"} +{"$label":"ACTS_IN","name":"Stan Fields","type":"Role","_key":"59811","_from":"619","_to":"37760"} +{"$label":"ACTS_IN","name":"Kazar","type":"Role","_key":"57809","_from":"619","_to":"36591"} +{"$label":"ACTS_IN","name":"Ozzie (voice)","type":"Role","_key":"47101","_from":"619","_to":"31057"} +{"$label":"ACTS_IN","name":"William Shatner","type":"Role","_key":"39832","_from":"619","_to":"26915"} +{"$label":"ACTS_IN","name":"Cdr. Buck Murdock","type":"Role","_key":"22577","_from":"619","_to":"16390"} +{"$label":"ACTS_IN","name":"Stan Fields","type":"Role","_key":"13516","_from":"619","_to":"10515"} +{"$label":"ACTS_IN","name":"Capt. Harrison Byers","type":"Role","_key":"9697","_from":"619","_to":"7772"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2676","_from":"619","_to":"2329"} +{"$label":"ACTS_IN","name":"Captain James T. Kirk","type":"Role","_key":"2651","_from":"619","_to":"2311"} +{"$label":"ACTS_IN","name":"Admiral James T. Kirk","type":"Role","_key":"807","_from":"619","_to":"665"} +{"$label":"ACTS_IN","name":"Captain James T. Kirk","type":"Role","_key":"783","_from":"619","_to":"653"} +{"$label":"ACTS_IN","name":"Admiral James T. Kirk","type":"Role","_key":"766","_from":"619","_to":"645"} +{"$label":"ACTS_IN","name":"james","type":"Role","_key":"747","_from":"619","_to":"629"} +{"$label":"DIRECTED","_key":"2650","_from":"619","_to":"2311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105954","_from":"620","_to":"62384"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"2678","_from":"620","_to":"2329"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"2653","_from":"620","_to":"2311"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"809","_from":"620","_to":"665"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"789","_from":"620","_to":"653"} +{"$label":"ACTS_IN","name":"Dr. Leonard McCoy","type":"Role","_key":"768","_from":"620","_to":"645"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105953","_from":"621","_to":"62384"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"2679","_from":"621","_to":"2329"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"2654","_from":"621","_to":"2311"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"810","_from":"621","_to":"665"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"786","_from":"621","_to":"653"} +{"$label":"ACTS_IN","name":"Montgomery Scott","type":"Role","_key":"769","_from":"621","_to":"645"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"748","_from":"621","_to":"629"} +{"$label":"ACTS_IN","name":"Hiroshi","type":"Role","_key":"121263","_from":"622","_to":"71235"} +{"$label":"ACTS_IN","name":"Old Man Samurai (voice)","type":"Role","_key":"109056","_from":"622","_to":"64441"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105959","_from":"622","_to":"62384"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100579","_from":"622","_to":"59315"} +{"$label":"ACTS_IN","name":"First Ancestor","type":"Role","_key":"88981","_from":"622","_to":"52708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2680","_from":"622","_to":"2329"} +{"$label":"ACTS_IN","name":"Cmdr. Hikaru Sulu","type":"Role","_key":"2655","_from":"622","_to":"2311"} +{"$label":"ACTS_IN","name":"Cmdr. Hikaru Sulu","type":"Role","_key":"811","_from":"622","_to":"665"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Hikaru Sulu","type":"Role","_key":"785","_from":"622","_to":"653"} +{"$label":"ACTS_IN","name":"Hikaru Sulu","type":"Role","_key":"770","_from":"622","_to":"645"} +{"$label":"ACTS_IN","name":"Captain Pavel Chekov","type":"Role","_key":"115443","_from":"623","_to":"67972"} +{"$label":"ACTS_IN","name":"Col. Jason Grant","type":"Role","_key":"102462","_from":"623","_to":"60293"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2682","_from":"623","_to":"2329"} +{"$label":"ACTS_IN","name":"Cmdr. Pavel Chekov","type":"Role","_key":"2657","_from":"623","_to":"2311"} +{"$label":"ACTS_IN","name":"Cmdr. Pavel Chekov","type":"Role","_key":"813","_from":"623","_to":"665"} +{"$label":"ACTS_IN","name":"Lt. Pavel Chekov","type":"Role","_key":"787","_from":"623","_to":"653"} +{"$label":"ACTS_IN","name":"Pavel Chekov","type":"Role","_key":"772","_from":"623","_to":"645"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"749","_from":"623","_to":"629"} +{"$label":"ACTS_IN","name":"Captain Nyota Uhura","type":"Role","_key":"115444","_from":"624","_to":"67972"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100575","_from":"624","_to":"59315"} +{"$label":"ACTS_IN","name":"Amelia Brooks","type":"Role","_key":"72565","_from":"624","_to":"43760"} +{"$label":"ACTS_IN","name":"Ruana","type":"Role","_key":"35556","_from":"624","_to":"24170"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2681","_from":"624","_to":"2329"} +{"$label":"ACTS_IN","name":"Cmdr. Uhura","type":"Role","_key":"2656","_from":"624","_to":"2311"} +{"$label":"ACTS_IN","name":"Cmdr. Uhura","type":"Role","_key":"812","_from":"624","_to":"665"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Uhura","type":"Role","_key":"788","_from":"624","_to":"653"} +{"$label":"ACTS_IN","name":"Cmdr. Uhura","type":"Role","_key":"771","_from":"624","_to":"645"} +{"$label":"ACTS_IN","name":"Madge Harvey","type":"Role","_key":"118159","_from":"625","_to":"69448"} +{"$label":"ACTS_IN","name":"Sondra Bizet","type":"Role","_key":"28299","_from":"625","_to":"20257"} +{"$label":"ACTS_IN","name":"Karen Barclay","type":"Role","_key":"64255","_from":"626","_to":"40075"} +{"$label":"ACTS_IN","name":"Carol Heath","type":"Role","_key":"59446","_from":"626","_to":"37549"} +{"$label":"ACTS_IN","name":"Ambassador Sarek","type":"Role","_key":"776","_from":"627","_to":"645"} +{"$label":"ACTS_IN","name":"Lt. Saavik","type":"Role","_key":"775","_from":"628","_to":"645"} +{"$label":"ACTS_IN","name":"Guinan","type":"Role","_key":"752","_from":"639","_to":"629"} +{"$label":"ACTS_IN","name":"Capt. John Harriman","type":"Role","_key":"751","_from":"638","_to":"629"} +{"$label":"ACTS_IN","name":"Dr. Tolian Soran","type":"Role","_key":"750","_from":"637","_to":"629"} +{"$label":"ACTS_IN","name":"Commander Deanna Troi","type":"Role","_key":"746","_from":"636","_to":"629"} +{"$label":"ACTS_IN","name":"Dr. Beverly Crusher","type":"Role","_key":"745","_from":"635","_to":"629"} +{"$label":"ACTS_IN","name":"Lt. Commander Worf","type":"Role","_key":"744","_from":"634","_to":"629"} +{"$label":"ACTS_IN","name":"Lt. Commander Geordi La Forge","type":"Role","_key":"743","_from":"633","_to":"629"} +{"$label":"ACTS_IN","name":"Commander William T. Riker","type":"Role","_key":"741","_from":"632","_to":"629"} +{"$label":"ACTS_IN","name":"Captain Jean-Luc Picard","type":"Role","_key":"740","_from":"631","_to":"629"} +{"$label":"DIRECTED","_key":"739","_from":"630","_to":"629"} +{"$label":"DIRECTED","_key":"46543","_from":"630","_to":"30733"} +{"$label":"ACTS_IN","name":"Sterling","type":"Role","_key":"112271","_from":"631","_to":"66294"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109933","_from":"631","_to":"64954"} +{"$label":"ACTS_IN","name":"Adventure (voice)","type":"Role","_key":"103325","_from":"631","_to":"60784"} +{"$label":"ACTS_IN","name":"The Great Prince \/ Stag (voice)","type":"Role","_key":"93465","_from":"631","_to":"55027"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"90263","_from":"631","_to":"53363"} +{"$label":"ACTS_IN","name":"Dr. Armstrong","type":"Role","_key":"72962","_from":"631","_to":"43920"} +{"$label":"ACTS_IN","name":"Leondegrance","type":"Role","_key":"70436","_from":"631","_to":"42880"} +{"$label":"ACTS_IN","name":"Narrator (English version)","type":"Role","_key":"66907","_from":"631","_to":"41306"} +{"$label":"ACTS_IN","name":"Mr. Woolensworth","type":"Role","_key":"58934","_from":"631","_to":"37214"} +{"$label":"ACTS_IN","name":"Pharaoh Seti I","type":"Role","_key":"57350","_from":"631","_to":"36365"} +{"$label":"ACTS_IN","name":"Dr. Jonas","type":"Role","_key":"50938","_from":"631","_to":"33245"} +{"$label":"ACTS_IN","name":"King Richard","type":"Role","_key":"47720","_from":"631","_to":"31431"} +{"$label":"ACTS_IN","name":"Mr. Perdue","type":"Role","_key":"18377","_from":"631","_to":"13628"} +{"$label":"ACTS_IN","name":"Max Winters (voice)","type":"Role","_key":"12438","_from":"631","_to":"9740"} +{"$label":"ACTS_IN","name":"Gurney Halleck","type":"Role","_key":"9943","_from":"631","_to":"7956"} +{"$label":"ACTS_IN","name":"Napoleon (voice)","type":"Role","_key":"9608","_from":"631","_to":"7734"} +{"$label":"ACTS_IN","name":"Captain Jean-Luc Picard","type":"Role","_key":"2965","_from":"631","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"795","_from":"631","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"754","_from":"631","_to":"640"} +{"$label":"ACTS_IN","name":"Bob Spiegel","type":"Role","_key":"113840","_from":"632","_to":"67053"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"56560","_from":"632","_to":"35892"} +{"$label":"ACTS_IN","name":"Commander William Riker","type":"Role","_key":"2971","_from":"632","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"796","_from":"632","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"755","_from":"632","_to":"640"} +{"$label":"DIRECTED","_key":"102826","_from":"632","_to":"60486"} +{"$label":"DIRECTED","_key":"101536","_from":"632","_to":"59764"} +{"$label":"DIRECTED","_key":"101138","_from":"632","_to":"59587"} +{"$label":"DIRECTED","_key":"99066","_from":"632","_to":"58364"} +{"$label":"DIRECTED","_key":"2960","_from":"632","_to":"2546"} +{"$label":"DIRECTED","_key":"753","_from":"632","_to":"640"} +{"$label":"ACTS_IN","name":"Nathanial","type":"Role","_key":"121178","_from":"633","_to":"71181"} +{"$label":"ACTS_IN","name":"Mike Timbrook","type":"Role","_key":"120378","_from":"633","_to":"70716"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105957","_from":"633","_to":"62384"} +{"$label":"ACTS_IN","name":"Tommy Price","type":"Role","_key":"40449","_from":"633","_to":"27259"} +{"$label":"ACTS_IN","name":"Commander Geordi La Forge","type":"Role","_key":"2967","_from":"633","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"798","_from":"633","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"757","_from":"633","_to":"640"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"114729","_from":"634","_to":"67574"} +{"$label":"ACTS_IN","name":"Arnold Denton","type":"Role","_key":"107195","_from":"634","_to":"63224"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105956","_from":"634","_to":"62384"} +{"$label":"ACTS_IN","name":"Sandman","type":"Role","_key":"96254","_from":"634","_to":"56561"} +{"$label":"ACTS_IN","name":"Dan Hislan","type":"Role","_key":"88895","_from":"634","_to":"52664"} +{"$label":"ACTS_IN","name":"Lieutenant Commander Worf","type":"Role","_key":"2968","_from":"634","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"799","_from":"634","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"758","_from":"634","_to":"640"} +{"$label":"ACTS_IN","name":"Wife","type":"Role","_key":"64428","_from":"635","_to":"40148"} +{"$label":"ACTS_IN","name":"Commander Beverly Crusher","type":"Role","_key":"2969","_from":"635","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"800","_from":"635","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"759","_from":"635","_to":"640"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"107201","_from":"636","_to":"63224"} +{"$label":"ACTS_IN","name":"Cindy Fielding","type":"Role","_key":"18789","_from":"636","_to":"13887"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"17139","_from":"636","_to":"12838"} +{"$label":"ACTS_IN","name":"Shereen","type":"Role","_key":"14537","_from":"636","_to":"11201"} +{"$label":"ACTS_IN","name":"Ships Counselor Commander Deanna Troi","type":"Role","_key":"2970","_from":"636","_to":"2546"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"801","_from":"636","_to":"659"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"760","_from":"636","_to":"640"} +{"$label":"ACTS_IN","name":"John Rainbird","type":"Role","_key":"121153","_from":"637","_to":"71172"} +{"$label":"ACTS_IN","name":"Dr. Calico (voice)","type":"Role","_key":"109590","_from":"637","_to":"64731"} +{"$label":"ACTS_IN","name":"Nathan Cairns","type":"Role","_key":"102978","_from":"637","_to":"60574"} +{"$label":"ACTS_IN","name":"Mick Travis","type":"Role","_key":"101806","_from":"637","_to":"59919"} +{"$label":"ACTS_IN","name":"Wizard","type":"Role","_key":"101749","_from":"637","_to":"59883"} +{"$label":"ACTS_IN","name":"Desmond Larochette","type":"Role","_key":"101024","_from":"637","_to":"59536"} +{"$label":"ACTS_IN","name":"Dr. Marcus Kane","type":"Role","_key":"94619","_from":"637","_to":"55748"} +{"$label":"ACTS_IN","name":"Dr. Calico (voice)","type":"Role","_key":"92195","_from":"637","_to":"54410"} +{"$label":"ACTS_IN","name":"Caligula","type":"Role","_key":"53959","_from":"637","_to":"34715"} +{"$label":"ACTS_IN","name":"Kesslee","type":"Role","_key":"52382","_from":"637","_to":"34087"} +{"$label":"ACTS_IN","name":"Gundars","type":"Role","_key":"49662","_from":"637","_to":"32497"} +{"$label":"ACTS_IN","name":"Col. F.E. Cochrane","type":"Role","_key":"42981","_from":"637","_to":"28715"} +{"$label":"ACTS_IN","name":"Paul Gallier","type":"Role","_key":"42613","_from":"637","_to":"28531"} +{"$label":"ACTS_IN","name":"Sheriff of Nottingham","type":"Role","_key":"39345","_from":"637","_to":"26613"} +{"$label":"ACTS_IN","name":"Prince Bolkonski","type":"Role","_key":"38429","_from":"637","_to":"25954"} +{"$label":"ACTS_IN","name":"Martin Hudson","type":"Role","_key":"28065","_from":"637","_to":"20121"} +{"$label":"ACTS_IN","name":"Boad","type":"Role","_key":"27534","_from":"637","_to":"19754"} +{"$label":"ACTS_IN","name":"Major Lee","type":"Role","_key":"24362","_from":"637","_to":"17630"} +{"$label":"ACTS_IN","name":"Dr. Loomis","type":"Role","_key":"18098","_from":"637","_to":"13441"} +{"$label":"ACTS_IN","name":"Alexander de Large","type":"Role","_key":"2805","_from":"637","_to":"2429"} +{"$label":"ACTS_IN","name":"Captain John Harriman","type":"Role","_key":"115445","_from":"638","_to":"67972"} +{"$label":"ACTS_IN","name":"Carl Brennan","type":"Role","_key":"95567","_from":"638","_to":"56195"} +{"$label":"ACTS_IN","name":"Cameron Frye","type":"Role","_key":"53450","_from":"638","_to":"34532"} +{"$label":"ACTS_IN","name":"Stephens","type":"Role","_key":"14508","_from":"638","_to":"11195"} +{"$label":"ACTS_IN","name":"Robert 'Rabbit' Nurick","type":"Role","_key":"7939","_from":"638","_to":"6576"} +{"$label":"ACTS_IN","name":"Lucy Cullins","type":"Role","_key":"110863","_from":"639","_to":"65485"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"107083","_from":"639","_to":"63141"} +{"$label":"ACTS_IN","name":"Fantasy (voice)","type":"Role","_key":"103326","_from":"639","_to":"60784"} +{"$label":"ACTS_IN","name":"Ranger Margaret (voice)","type":"Role","_key":"100314","_from":"639","_to":"59151"} +{"$label":"ACTS_IN","name":"Daniel's 'Boss'","type":"Role","_key":"94071","_from":"639","_to":"55398"} +{"$label":"ACTS_IN","name":"Sarah Mathews","type":"Role","_key":"88144","_from":"639","_to":"52302"} +{"$label":"ACTS_IN","name":"Tragedy Mask on Theater Wall","type":"Role","_key":"72064","_from":"639","_to":"43573"} +{"$label":"ACTS_IN","name":"Laurel Ayres","type":"Role","_key":"67955","_from":"639","_to":"41761"} +{"$label":"ACTS_IN","name":"Edwina 'Eddie' Franklin","type":"Role","_key":"67909","_from":"639","_to":"41725"} +{"$label":"ACTS_IN","name":"Terry Dolittle","type":"Role","_key":"66899","_from":"639","_to":"41305"} +{"$label":"ACTS_IN","name":"Buckwheat's Mom","type":"Role","_key":"66531","_from":"639","_to":"41127"} +{"$label":"ACTS_IN","name":"Corrina Washington","type":"Role","_key":"63477","_from":"639","_to":"39755"} +{"$label":"ACTS_IN","name":"Detective Susan Avery","type":"Role","_key":"63031","_from":"639","_to":"39558"} +{"$label":"ACTS_IN","name":"Stretch the Octopus (voice)","type":"Role","_key":"61605","_from":"639","_to":"38829"} +{"$label":"ACTS_IN","name":"Vera Baker","type":"Role","_key":"57696","_from":"639","_to":"36524"} +{"$label":"ACTS_IN","name":"Billy York","type":"Role","_key":"55244","_from":"639","_to":"35235"} +{"$label":"ACTS_IN","name":"Jane Deluca","type":"Role","_key":"53483","_from":"639","_to":"34545"} +{"$label":"ACTS_IN","name":"Deloris Van Cartier","type":"Role","_key":"42785","_from":"639","_to":"28626"} +{"$label":"ACTS_IN","name":"Harriet Franklin","type":"Role","_key":"28174","_from":"639","_to":"20186"} +{"$label":"ACTS_IN","name":"Valerie Owens","type":"Role","_key":"27877","_from":"639","_to":"19989"} +{"$label":"ACTS_IN","name":"Deloris Van Cartier\/Sister Mary Clarence","type":"Role","_key":"17409","_from":"639","_to":"13020"} +{"$label":"ACTS_IN","name":"Celie","type":"Role","_key":"10379","_from":"639","_to":"8260"} +{"$label":"ACTS_IN","name":"Oda Mae Brown","type":"Role","_key":"3637","_from":"639","_to":"3100"} +{"$label":"ACTS_IN","name":"Gallatin","type":"Role","_key":"764","_from":"644","_to":"640"} +{"$label":"ACTS_IN","name":"Anij","type":"Role","_key":"763","_from":"643","_to":"640"} +{"$label":"ACTS_IN","name":"Vice-Adm. Dougherty","type":"Role","_key":"762","_from":"642","_to":"640"} +{"$label":"ACTS_IN","name":"Ad'har Ru'afo","type":"Role","_key":"761","_from":"641","_to":"640"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"119284","_from":"641","_to":"70080"} +{"$label":"ACTS_IN","name":"Tommaso Buscetta","type":"Role","_key":"119150","_from":"641","_to":"70024"} +{"$label":"ACTS_IN","name":"Father Tardone","type":"Role","_key":"115835","_from":"641","_to":"68192"} +{"$label":"ACTS_IN","name":"Wolfe Sr.","type":"Role","_key":"113260","_from":"641","_to":"66728"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"109540","_from":"641","_to":"64702"} +{"$label":"ACTS_IN","name":"Chorleiter","type":"Role","_key":"69925","_from":"641","_to":"42671"} +{"$label":"ACTS_IN","name":"Josef 'Uncle Joe' Stalin","type":"Role","_key":"58863","_from":"641","_to":"37175"} +{"$label":"ACTS_IN","name":"John Practice","type":"Role","_key":"54899","_from":"641","_to":"35106"} +{"$label":"ACTS_IN","name":"Entita","type":"Role","_key":"34260","_from":"641","_to":"23511"} +{"$label":"ACTS_IN","name":"Mordechai","type":"Role","_key":"22825","_from":"641","_to":"16558"} +{"$label":"ACTS_IN","name":"Prof. Robert Crawford","type":"Role","_key":"8596","_from":"641","_to":"6989"} +{"$label":"ACTS_IN","name":"Antonio Salieri","type":"Role","_key":"3957","_from":"641","_to":"3382"} +{"$label":"ACTS_IN","name":"Bernardo Gui","type":"Role","_key":"2892","_from":"641","_to":"2486"} +{"$label":"ACTS_IN","name":"Omar Suarez","type":"Role","_key":"1949","_from":"641","_to":"1689"} +{"$label":"ACTS_IN","name":"Breed","type":"Role","_key":"112878","_from":"642","_to":"66629"} +{"$label":"ACTS_IN","name":"Matthias","type":"Role","_key":"68701","_from":"642","_to":"42097"} +{"$label":"ACTS_IN","name":"Anf\u00fchrer der Leprakolonie","type":"Role","_key":"40464","_from":"642","_to":"27261"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"22380","_from":"642","_to":"16258"} +{"$label":"ACTS_IN","name":"Laird Brunett","type":"Role","_key":"15849","_from":"642","_to":"12058"} +{"$label":"ACTS_IN","name":"Milton Krest","type":"Role","_key":"8567","_from":"642","_to":"6975"} +{"$label":"ACTS_IN","name":"Judy Braddock","type":"Role","_key":"89468","_from":"643","_to":"52971"} +{"$label":"ACTS_IN","name":"Natalie Streck","type":"Role","_key":"24187","_from":"643","_to":"17522"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"12868","_from":"643","_to":"10044"} +{"$label":"ACTS_IN","name":"Rosalie Octavius","type":"Role","_key":"6671","_from":"643","_to":"5630"} +{"$label":"ACTS_IN","name":"Sam Bouchard","type":"Role","_key":"70255","_from":"644","_to":"42814"} +{"$label":"ACTS_IN","name":"Robert Gant","type":"Role","_key":"64015","_from":"644","_to":"39965"} +{"$label":"ACTS_IN","name":"Shiff","type":"Role","_key":"52819","_from":"644","_to":"34249"} +{"$label":"ACTS_IN","name":"Jack MacReady","type":"Role","_key":"52186","_from":"644","_to":"34004"} +{"$label":"ACTS_IN","name":"Val Resnick","type":"Role","_key":"18417","_from":"644","_to":"13655"} +{"$label":"ACTS_IN","name":"Vulcan High Priestess","type":"Role","_key":"781","_from":"652","_to":"645"} +{"$label":"ACTS_IN","name":"Spock at age 25","type":"Role","_key":"780","_from":"651","_to":"645"} +{"$label":"ACTS_IN","name":"Spock...Age 17","type":"Role","_key":"779","_from":"650","_to":"645"} +{"$label":"ACTS_IN","name":"Spock...Age 13","type":"Role","_key":"778","_from":"649","_to":"645"} +{"$label":"ACTS_IN","name":"Spock...Age 9","type":"Role","_key":"777","_from":"648","_to":"645"} +{"$label":"ACTS_IN","name":"Cmdr. Kruge","type":"Role","_key":"774","_from":"647","_to":"645"} +{"$label":"ACTS_IN","name":"Dr. David Marcus","type":"Role","_key":"773","_from":"646","_to":"645"} +{"$label":"ACTS_IN","name":"Dr. David Marcus","type":"Role","_key":"816","_from":"646","_to":"665"} +{"$label":"ACTS_IN","name":"Tesselink","type":"Role","_key":"119807","_from":"647","_to":"70347"} +{"$label":"ACTS_IN","name":"Dennis Van Welker","type":"Role","_key":"113824","_from":"647","_to":"67053"} +{"$label":"ACTS_IN","name":"Professor Plum","type":"Role","_key":"103546","_from":"647","_to":"60907"} +{"$label":"ACTS_IN","name":"Mr. Dewey","type":"Role","_key":"103324","_from":"647","_to":"60784"} +{"$label":"ACTS_IN","name":"Henry Sikorsky","type":"Role","_key":"100753","_from":"647","_to":"59407"} +{"$label":"ACTS_IN","name":"Grandpa (voice)","type":"Role","_key":"97733","_from":"647","_to":"57545"} +{"$label":"ACTS_IN","name":"'Sleepy' Bill Burns","type":"Role","_key":"95182","_from":"647","_to":"56003"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"92624","_from":"647","_to":"54673"} +{"$label":"ACTS_IN","name":"Switchblade Sam","type":"Role","_key":"88252","_from":"647","_to":"52352"} +{"$label":"ACTS_IN","name":"Charlie Wilcox","type":"Role","_key":"70227","_from":"647","_to":"42798"} +{"$label":"ACTS_IN","name":"John Bigboote","type":"Role","_key":"69506","_from":"647","_to":"42461"} +{"$label":"ACTS_IN","name":"Merlock","type":"Role","_key":"66085","_from":"647","_to":"40891"} +{"$label":"ACTS_IN","name":"Oncle Martin (le Martien)","type":"Role","_key":"57469","_from":"647","_to":"36425"} +{"$label":"ACTS_IN","name":"Rasputin","type":"Role","_key":"53905","_from":"647","_to":"34698"} +{"$label":"ACTS_IN","name":"Uncle Fester","type":"Role","_key":"24228","_from":"647","_to":"17551"} +{"$label":"ACTS_IN","name":"Uncle Fester Addams","type":"Role","_key":"23321","_from":"647","_to":"16901"} +{"$label":"ACTS_IN","name":"Judge Doom","type":"Role","_key":"10169","_from":"647","_to":"8126"} +{"$label":"ACTS_IN","name":"Taber","type":"Role","_key":"6181","_from":"647","_to":"5224"} +{"$label":"ACTS_IN","name":"Pieces","type":"Role","_key":"5063","_from":"647","_to":"4307"} +{"$label":"ACTS_IN","name":"Dr. Emmett Brown","type":"Role","_key":"2908","_from":"647","_to":"2506"} +{"$label":"ACTS_IN","name":"Dr. Emmett Brown","type":"Role","_key":"2555","_from":"647","_to":"2235"} +{"$label":"ACTS_IN","name":"Dr. Emmett Brown","type":"Role","_key":"1883","_from":"647","_to":"1636"} +{"$label":"ACTS_IN","name":"Memnet","type":"Role","_key":"44959","_from":"652","_to":"29886"} +{"$label":"ACTS_IN","name":"Caroline Straulle","type":"Role","_key":"39036","_from":"652","_to":"26385"} +{"$label":"ACTS_IN","name":"Emily Brent","type":"Role","_key":"34534","_from":"652","_to":"23646"} +{"$label":"ACTS_IN","name":"Mrs. Ann Treadwell","type":"Role","_key":"16814","_from":"652","_to":"12664"} +{"$label":"ACTS_IN","name":"Big Momma","type":"Role","_key":"3762","_from":"652","_to":"3224"} +{"$label":"ACTS_IN","name":"Mrs. Danvers","type":"Role","_key":"3207","_from":"652","_to":"2748"} +{"$label":"ACTS_IN","name":"CPO Janice Rand","type":"Role","_key":"793","_from":"658","_to":"653"} +{"$label":"ACTS_IN","name":"Lieutenant Ilia","type":"Role","_key":"792","_from":"657","_to":"653"} +{"$label":"ACTS_IN","name":"Capt.\/Cmdr. Willard Decker","type":"Role","_key":"791","_from":"656","_to":"653"} +{"$label":"ACTS_IN","name":"Dr. Christine Chapel","type":"Role","_key":"790","_from":"655","_to":"653"} +{"$label":"DIRECTED","_key":"782","_from":"654","_to":"653"} +{"$label":"DIRECTED","_key":"117488","_from":"654","_to":"69086"} +{"$label":"DIRECTED","_key":"111593","_from":"654","_to":"65881"} +{"$label":"DIRECTED","_key":"103268","_from":"654","_to":"60756"} +{"$label":"DIRECTED","_key":"71848","_from":"654","_to":"43474"} +{"$label":"DIRECTED","_key":"63786","_from":"654","_to":"39883"} +{"$label":"DIRECTED","_key":"40459","_from":"654","_to":"27260"} +{"$label":"DIRECTED","_key":"15264","_from":"654","_to":"11688"} +{"$label":"DIRECTED","_key":"9786","_from":"654","_to":"7848"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105952","_from":"655","_to":"62384"} +{"$label":"ACTS_IN","name":"Miss Carrie","type":"Role","_key":"20688","_from":"655","_to":"15116"} +{"$label":"ACTS_IN","name":"Mr. Maris","type":"Role","_key":"100213","_from":"656","_to":"59107"} +{"$label":"ACTS_IN","name":"Warren Cox","type":"Role","_key":"67647","_from":"656","_to":"41626"} +{"$label":"ACTS_IN","name":"Marty Phillips","type":"Role","_key":"66900","_from":"656","_to":"41305"} +{"$label":"ACTS_IN","name":"Ambassador Walker","type":"Role","_key":"12744","_from":"656","_to":"9942"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"12296","_from":"656","_to":"9628"} +{"$label":"ACTS_IN","name":"Hugh W. Sloan, Jr.","type":"Role","_key":"10615","_from":"656","_to":"8423"} +{"$label":"ACTS_IN","name":"Persis Ray","type":"Role","_key":"45648","_from":"657","_to":"30214"} +{"$label":"ACTS_IN","name":"Commander Donatra","type":"Role","_key":"805","_from":"664","_to":"659"} +{"$label":"ACTS_IN","name":"Senator Tal'aura","type":"Role","_key":"804","_from":"663","_to":"659"} +{"$label":"ACTS_IN","name":"The Reman Viceroy","type":"Role","_key":"803","_from":"662","_to":"659"} +{"$label":"ACTS_IN","name":"Praetor Shinzon","type":"Role","_key":"802","_from":"661","_to":"659"} +{"$label":"DIRECTED","_key":"794","_from":"660","_to":"659"} +{"$label":"DIRECTED","_key":"72102","_from":"660","_to":"43588"} +{"$label":"DIRECTED","_key":"20387","_from":"660","_to":"14930"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"117845","_from":"661","_to":"69278"} +{"$label":"ACTS_IN","name":"Noel","type":"Role","_key":"116647","_from":"661","_to":"68665"} +{"$label":"ACTS_IN","name":"Charles Bronson","type":"Role","_key":"116552","_from":"661","_to":"68608"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"104565","_from":"661","_to":"61507"} +{"$label":"ACTS_IN","name":"Pierre Jackson","type":"Role","_key":"103061","_from":"661","_to":"60626"} +{"$label":"ACTS_IN","name":"Handsome Bob","type":"Role","_key":"96787","_from":"661","_to":"56924"} +{"$label":"ACTS_IN","name":"Clarkie","type":"Role","_key":"34302","_from":"661","_to":"23533"} +{"$label":"ACTS_IN","name":"Spec. Lance Twombly","type":"Role","_key":"10144","_from":"661","_to":"8112"} +{"$label":"ACTS_IN","name":"Mitchell","type":"Role","_key":"118561","_from":"662","_to":"69710"} +{"$label":"ACTS_IN","name":"Wesley","type":"Role","_key":"113222","_from":"662","_to":"66716"} +{"$label":"ACTS_IN","name":"Hellboy (voice)","type":"Role","_key":"110016","_from":"662","_to":"65008"} +{"$label":"ACTS_IN","name":"Ed Pollack","type":"Role","_key":"105360","_from":"662","_to":"61992"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"97120","_from":"662","_to":"57136"} +{"$label":"ACTS_IN","name":"Captain Skunkbeard \/ Biff Wellington (voice)","type":"Role","_key":"94092","_from":"662","_to":"55405"} +{"$label":"ACTS_IN","name":"Brother Samuel","type":"Role","_key":"93625","_from":"662","_to":"55123"} +{"$label":"ACTS_IN","name":"Hellboy (voice)","type":"Role","_key":"93459","_from":"662","_to":"55026"} +{"$label":"ACTS_IN","name":"Norman Arbuthnot","type":"Role","_key":"90029","_from":"662","_to":"53253"} +{"$label":"ACTS_IN","name":"Angel de la Guardia","type":"Role","_key":"71330","_from":"662","_to":"43266"} +{"$label":"ACTS_IN","name":"Konstantine Konali","type":"Role","_key":"70556","_from":"662","_to":"42933"} +{"$label":"ACTS_IN","name":"Hellboy","type":"Role","_key":"68816","_from":"662","_to":"42165"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"63874","_from":"662","_to":"39910"} +{"$label":"ACTS_IN","name":"Father Drake","type":"Role","_key":"61982","_from":"662","_to":"39018"} +{"$label":"ACTS_IN","name":"Zeno","type":"Role","_key":"61465","_from":"662","_to":"38771"} +{"$label":"ACTS_IN","name":"Collie Entragian","type":"Role","_key":"59281","_from":"662","_to":"37437"} +{"$label":"ACTS_IN","name":"Sayer of the Law","type":"Role","_key":"53024","_from":"662","_to":"34335"} +{"$label":"ACTS_IN","name":"Johner","type":"Role","_key":"48132","_from":"662","_to":"31632"} +{"$label":"ACTS_IN","name":"Prof. Sam Tucker","type":"Role","_key":"46697","_from":"662","_to":"30828"} +{"$label":"ACTS_IN","name":"Boltar","type":"Role","_key":"42763","_from":"662","_to":"28616"} +{"$label":"ACTS_IN","name":"Murchison","type":"Role","_key":"32984","_from":"662","_to":"22866"} +{"$label":"ACTS_IN","name":"Cemetery Caretaker","type":"Role","_key":"31023","_from":"662","_to":"21724"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30178","_from":"662","_to":"21251"} +{"$label":"ACTS_IN","name":"Norick","type":"Role","_key":"20322","_from":"662","_to":"14887"} +{"$label":"ACTS_IN","name":"Hellboy","type":"Role","_key":"13468","_from":"662","_to":"10484"} +{"$label":"ACTS_IN","name":"Amoukar","type":"Role","_key":"12092","_from":"662","_to":"9479"} +{"$label":"ACTS_IN","name":"One","type":"Role","_key":"10739","_from":"662","_to":"8522"} +{"$label":"ACTS_IN","name":"Koulikov","type":"Role","_key":"10113","_from":"662","_to":"8094"} +{"$label":"ACTS_IN","name":"Salvatore","type":"Role","_key":"2890","_from":"662","_to":"2486"} +{"$label":"ACTS_IN","name":"Anna Morgan","type":"Role","_key":"6785","_from":"663","_to":"5693"} +{"$label":"ACTS_IN","name":"Dr. Alana Geisner","type":"Role","_key":"116213","_from":"664","_to":"68425"} +{"$label":"ACTS_IN","name":"Kristin Richards","type":"Role","_key":"111179","_from":"664","_to":"65660"} +{"$label":"ACTS_IN","name":"Jennifer Jones","type":"Role","_key":"106925","_from":"664","_to":"63044"} +{"$label":"ACTS_IN","name":"Dr. Sheila Casper","type":"Role","_key":"63678","_from":"664","_to":"39828"} +{"$label":"ACTS_IN","name":"Emma Scarlett","type":"Role","_key":"57637","_from":"664","_to":"36493"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"57608","_from":"664","_to":"36479"} +{"$label":"ACTS_IN","name":"Kara","type":"Role","_key":"51006","_from":"664","_to":"33290"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"15957","_from":"664","_to":"12139"} +{"$label":"ACTS_IN","name":"Dizzy Flores","type":"Role","_key":"6755","_from":"664","_to":"5670"} +{"$label":"ACTS_IN","name":"Kerry","type":"Role","_key":"3098","_from":"664","_to":"2649"} +{"$label":"ACTS_IN","name":"Kerry","type":"Role","_key":"3084","_from":"664","_to":"2645"} +{"$label":"ACTS_IN","name":"Kerry","type":"Role","_key":"2710","_from":"664","_to":"2347"} +{"$label":"ACTS_IN","name":"Captain Clark Terrell","type":"Role","_key":"818","_from":"670","_to":"665"} +{"$label":"ACTS_IN","name":"Lt. Saavik","type":"Role","_key":"817","_from":"669","_to":"665"} +{"$label":"ACTS_IN","name":"Dr. Carol Marcus","type":"Role","_key":"815","_from":"668","_to":"665"} +{"$label":"ACTS_IN","name":"Khan Noonien Singh","type":"Role","_key":"814","_from":"667","_to":"665"} +{"$label":"DIRECTED","_key":"806","_from":"666","_to":"665"} +{"$label":"DIRECTED","_key":"119424","_from":"666","_to":"70162"} +{"$label":"DIRECTED","_key":"45695","_from":"666","_to":"30247"} +{"$label":"DIRECTED","_key":"2675","_from":"666","_to":"2329"} +{"$label":"ACTS_IN","name":"Peter Moralas","type":"Role","_key":"119046","_from":"667","_to":"69979"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"72934","_from":"667","_to":"43910"} +{"$label":"ACTS_IN","name":"Head of Council","type":"Role","_key":"57842","_from":"667","_to":"36606"} +{"$label":"ACTS_IN","name":"Armando","type":"Role","_key":"14937","_from":"667","_to":"11479"} +{"$label":"ACTS_IN","name":"Nancy Lovell","type":"Role","_key":"118107","_from":"668","_to":"69414"} +{"$label":"ACTS_IN","name":"Eve Dahlberg","type":"Role","_key":"45701","_from":"668","_to":"30247"} +{"$label":"ACTS_IN","name":"Ann Putnam","type":"Role","_key":"120237","_from":"669","_to":"70608"} +{"$label":"ACTS_IN","name":"Dr. Joyce Palmer","type":"Role","_key":"112049","_from":"669","_to":"66164"} +{"$label":"ACTS_IN","name":"Ms. Robin Elizabeth Bishop","type":"Role","_key":"101371","_from":"669","_to":"59674"} +{"$label":"ACTS_IN","name":"Dr. Susan Verner","type":"Role","_key":"88151","_from":"669","_to":"52303"} +{"$label":"ACTS_IN","name":"Mollie Ubriacco","type":"Role","_key":"73137","_from":"669","_to":"43986"} +{"$label":"ACTS_IN","name":"Gladys Leeman","type":"Role","_key":"63651","_from":"669","_to":"39819"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"62855","_from":"669","_to":"39498"} +{"$label":"ACTS_IN","name":"Sarah Renell","type":"Role","_key":"55953","_from":"669","_to":"35578"} +{"$label":"ACTS_IN","name":"Jackie Rogers","type":"Role","_key":"54324","_from":"669","_to":"34862"} +{"$label":"ACTS_IN","name":"Mollie","type":"Role","_key":"54238","_from":"669","_to":"34831"} +{"$label":"ACTS_IN","name":"Mollie Ubriacco","type":"Role","_key":"53322","_from":"669","_to":"34476"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"22340","_from":"669","_to":"16249"} +{"$label":"ACTS_IN","name":"Lucien Celine","type":"Role","_key":"70217","_from":"670","_to":"42794"} +{"$label":"ACTS_IN","name":"Louis Belgrave","type":"Role","_key":"35396","_from":"670","_to":"24086"} +{"$label":"ACTS_IN","name":"Lieutenant Ed Traxler","type":"Role","_key":"3137","_from":"670","_to":"2686"} +{"$label":"ACTS_IN","name":"Aunt Imogene","type":"Role","_key":"837","_from":"687","_to":"671"} +{"$label":"ACTS_IN","name":"Lord Ascot","type":"Role","_key":"836","_from":"686","_to":"671"} +{"$label":"ACTS_IN","name":"Helen Kingsley","type":"Role","_key":"835","_from":"685","_to":"671"} +{"$label":"ACTS_IN","name":"The Dormouse","type":"Role","_key":"833","_from":"684","_to":"671"} +{"$label":"ACTS_IN","name":"Tweedledee \/ Tweedledum","type":"Role","_key":"832","_from":"683","_to":"671"} +{"$label":"ACTS_IN","name":"The March Hare","type":"Role","_key":"831","_from":"682","_to":"671"} +{"$label":"ACTS_IN","name":"Charles Kingsley","type":"Role","_key":"830","_from":"681","_to":"671"} +{"$label":"ACTS_IN","name":"The Bloodhound","type":"Role","_key":"829","_from":"680","_to":"671"} +{"$label":"ACTS_IN","name":"The Cheshire Cat","type":"Role","_key":"828","_from":"679","_to":"671"} +{"$label":"ACTS_IN","name":"Alice Kingsley","type":"Role","_key":"826","_from":"678","_to":"671"} +{"$label":"ACTS_IN","name":"The Knave of Hearts","type":"Role","_key":"825","_from":"677","_to":"671"} +{"$label":"ACTS_IN","name":"The Caterpillar","type":"Role","_key":"824","_from":"676","_to":"671"} +{"$label":"ACTS_IN","name":"The Red Queen","type":"Role","_key":"823","_from":"675","_to":"671"} +{"$label":"ACTS_IN","name":"The White Queen","type":"Role","_key":"822","_from":"674","_to":"671"} +{"$label":"ACTS_IN","name":"The Mad Hatter","type":"Role","_key":"820","_from":"673","_to":"671"} +{"$label":"DIRECTED","_key":"819","_from":"672","_to":"671"} +{"$label":"DIRECTED","_key":"97306","_from":"672","_to":"57290"} +{"$label":"DIRECTED","_key":"38589","_from":"672","_to":"26073"} +{"$label":"DIRECTED","_key":"29737","_from":"672","_to":"21053"} +{"$label":"DIRECTED","_key":"29410","_from":"672","_to":"20869"} +{"$label":"DIRECTED","_key":"28964","_from":"672","_to":"20688"} +{"$label":"DIRECTED","_key":"22618","_from":"672","_to":"16413"} +{"$label":"DIRECTED","_key":"10347","_from":"672","_to":"8229"} +{"$label":"DIRECTED","_key":"7041","_from":"672","_to":"5901"} +{"$label":"DIRECTED","_key":"6233","_from":"672","_to":"5281"} +{"$label":"DIRECTED","_key":"4851","_from":"672","_to":"4154"} +{"$label":"DIRECTED","_key":"3817","_from":"672","_to":"3276"} +{"$label":"DIRECTED","_key":"2498","_from":"672","_to":"2195"} +{"$label":"DIRECTED","_key":"1504","_from":"672","_to":"1277"} +{"$label":"DIRECTED","_key":"875","_from":"672","_to":"711"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"114104","_from":"673","_to":"67202"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"113691","_from":"673","_to":"66997"} +{"$label":"ACTS_IN","name":"L'inconnu","type":"Role","_key":"101301","_from":"673","_to":"59643"} +{"$label":"ACTS_IN","name":"Sweeney Todd","type":"Role","_key":"97301","_from":"673","_to":"57290"} +{"$label":"ACTS_IN","name":"Himself (narrator)","type":"Role","_key":"91960","_from":"673","_to":"54250"} +{"$label":"ACTS_IN","name":"Dr. Julien Sauniere","type":"Role","_key":"90344","_from":"673","_to":"53396"} +{"$label":"ACTS_IN","name":"John Dillinger","type":"Role","_key":"69120","_from":"673","_to":"42291"} +{"$label":"ACTS_IN","name":"Axel Blackmar","type":"Role","_key":"67524","_from":"673","_to":"41579"} +{"$label":"ACTS_IN","name":"Raphael","type":"Role","_key":"58520","_from":"673","_to":"36982"} +{"$label":"ACTS_IN","name":"Wade \"Cry-Baby\" Walker","type":"Role","_key":"56485","_from":"673","_to":"35884"} +{"$label":"ACTS_IN","name":"Donnie Brasco \/ Joseph D. 'Joe' Pistone","type":"Role","_key":"53366","_from":"673","_to":"34492"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"48271","_from":"673","_to":"31706"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"47897","_from":"673","_to":"31515"} +{"$label":"ACTS_IN","name":"Rochester","type":"Role","_key":"47138","_from":"673","_to":"31080"} +{"$label":"ACTS_IN","name":"Lieutenant Victor","type":"Role","_key":"35507","_from":"673","_to":"24144"} +{"$label":"ACTS_IN","name":"George Jung","type":"Role","_key":"29703","_from":"673","_to":"21034"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"29595","_from":"673","_to":"20951"} +{"$label":"ACTS_IN","name":"Victor Van Dort (Voice)","type":"Role","_key":"28966","_from":"673","_to":"20688"} +{"$label":"ACTS_IN","name":"Commander Spencer Armacost","type":"Role","_key":"24188","_from":"673","_to":"17522"} +{"$label":"ACTS_IN","name":"Ichabod Crane","type":"Role","_key":"22605","_from":"673","_to":"16413"} +{"$label":"ACTS_IN","name":"Gene Watson","type":"Role","_key":"18169","_from":"673","_to":"13485"} +{"$label":"ACTS_IN","name":"Don Juan deMarco","type":"Role","_key":"16489","_from":"673","_to":"12457"} +{"$label":"ACTS_IN","name":"Raoul Duke","type":"Role","_key":"16204","_from":"673","_to":"12305"} +{"$label":"ACTS_IN","name":"Captain Jack Sparrow","type":"Role","_key":"16116","_from":"673","_to":"12247"} +{"$label":"ACTS_IN","name":"Gilbert Grape","type":"Role","_key":"14055","_from":"673","_to":"10899"} +{"$label":"ACTS_IN","name":"Mort Rainey","type":"Role","_key":"14049","_from":"673","_to":"10896"} +{"$label":"ACTS_IN","name":"Sands","type":"Role","_key":"13231","_from":"673","_to":"10305"} +{"$label":"ACTS_IN","name":"William Blake","type":"Role","_key":"10962","_from":"673","_to":"8689"} +{"$label":"ACTS_IN","name":"Sir James Matthew Barrie","type":"Role","_key":"10294","_from":"673","_to":"8196"} +{"$label":"ACTS_IN","name":"Private Gator Lerner","type":"Role","_key":"9347","_from":"673","_to":"7539"} +{"$label":"ACTS_IN","name":"Inspector Frederick Abberline","type":"Role","_key":"9008","_from":"673","_to":"7296"} +{"$label":"ACTS_IN","name":"Dean Corso","type":"Role","_key":"7395","_from":"673","_to":"6167"} +{"$label":"ACTS_IN","name":"Ed Wood","type":"Role","_key":"6234","_from":"673","_to":"5281"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"5755","_from":"673","_to":"4890"} +{"$label":"ACTS_IN","name":"Glen Lantz","type":"Role","_key":"4864","_from":"673","_to":"4159"} +{"$label":"ACTS_IN","name":"Edward Scissorhands","type":"Role","_key":"2499","_from":"673","_to":"2195"} +{"$label":"ACTS_IN","name":"Roux","type":"Role","_key":"910","_from":"673","_to":"728"} +{"$label":"ACTS_IN","name":"Jack Sparrow","type":"Role","_key":"890","_from":"673","_to":"722"} +{"$label":"ACTS_IN","name":"Willy Wonka","type":"Role","_key":"876","_from":"673","_to":"711"} +{"$label":"ACTS_IN","name":"Jack Sparrow","type":"Role","_key":"858","_from":"673","_to":"706"} +{"$label":"ACTS_IN","name":"Captain Jack Sparrow","type":"Role","_key":"838","_from":"673","_to":"688"} +{"$label":"DIRECTED","_key":"58517","_from":"673","_to":"36982"} +{"$label":"ACTS_IN","name":"Jean Sabin","type":"Role","_key":"109728","_from":"674","_to":"64802"} +{"$label":"ACTS_IN","name":"Kym","type":"Role","_key":"102610","_from":"674","_to":"60375"} +{"$label":"ACTS_IN","name":"Allison Lang","type":"Role","_key":"101466","_from":"674","_to":"59726"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"100284","_from":"674","_to":"59140"} +{"$label":"ACTS_IN","name":"Claire Summers","type":"Role","_key":"97663","_from":"674","_to":"57513"} +{"$label":"ACTS_IN","name":"Agent 99","type":"Role","_key":"71395","_from":"674","_to":"43300"} +{"$label":"ACTS_IN","name":"Mia Thermopolis","type":"Role","_key":"68048","_from":"674","_to":"41815"} +{"$label":"ACTS_IN","name":"Red (voice)","type":"Role","_key":"67079","_from":"674","_to":"41402"} +{"$label":"ACTS_IN","name":"Emma Allan","type":"Role","_key":"63816","_from":"674","_to":"39898"} +{"$label":"ACTS_IN","name":"Amelia \"Mia\" Thermopolis","type":"Role","_key":"57572","_from":"674","_to":"36467"} +{"$label":"ACTS_IN","name":"Jane Austen","type":"Role","_key":"24617","_from":"674","_to":"17810"} +{"$label":"ACTS_IN","name":"Andy Sachs","type":"Role","_key":"4809","_from":"674","_to":"4111"} +{"$label":"ACTS_IN","name":"Lureen Newsome","type":"Role","_key":"2270","_from":"674","_to":"1994"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"105229","_from":"675","_to":"61933"} +{"$label":"ACTS_IN","name":"Mrs. Lovett","type":"Role","_key":"97302","_from":"675","_to":"57290"} +{"$label":"ACTS_IN","name":"Bellatrix Lestrange","type":"Role","_key":"89542","_from":"675","_to":"52997"} +{"$label":"ACTS_IN","name":"Bellatrix Lestrange","type":"Role","_key":"89503","_from":"675","_to":"52992"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"69924","_from":"675","_to":"42671"} +{"$label":"ACTS_IN","name":"Lucy Honeychurch","type":"Role","_key":"68832","_from":"675","_to":"42174"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"62148","_from":"675","_to":"39139"} +{"$label":"ACTS_IN","name":"Helen Schlegel","type":"Role","_key":"48981","_from":"675","_to":"32111"} +{"$label":"ACTS_IN","name":"Morgan Le Fey","type":"Role","_key":"45831","_from":"675","_to":"30310"} +{"$label":"ACTS_IN","name":"Corpse Bride (voice)","type":"Role","_key":"28967","_from":"675","_to":"20688"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25171","_from":"675","_to":"18176"} +{"$label":"ACTS_IN","name":"Karen Knightly","type":"Role","_key":"18859","_from":"675","_to":"13922"} +{"$label":"ACTS_IN","name":"Ari","type":"Role","_key":"10338","_from":"675","_to":"8229"} +{"$label":"ACTS_IN","name":"Bellatrix Lestrange","type":"Role","_key":"8110","_from":"675","_to":"6687"} +{"$label":"ACTS_IN","name":"Younger & Older Jenny\/The Witch","type":"Role","_key":"7046","_from":"675","_to":"5901"} +{"$label":"ACTS_IN","name":"Marla Singer","type":"Role","_key":"6559","_from":"675","_to":"5541"} +{"$label":"ACTS_IN","name":"Serena","type":"Role","_key":"6394","_from":"675","_to":"5406"} +{"$label":"ACTS_IN","name":"Lady Campanula Tottington","type":"Role","_key":"6384","_from":"675","_to":"5389"} +{"$label":"ACTS_IN","name":"Mrs. Bucket","type":"Role","_key":"881","_from":"675","_to":"711"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"115815","_from":"676","_to":"68179"} +{"$label":"ACTS_IN","name":"Phil Allen","type":"Role","_key":"111509","_from":"676","_to":"65842"} +{"$label":"ACTS_IN","name":"Eli Michaelson","type":"Role","_key":"105417","_from":"676","_to":"62025"} +{"$label":"ACTS_IN","name":"Steven Spurrier","type":"Role","_key":"98029","_from":"676","_to":"57725"} +{"$label":"ACTS_IN","name":"Judge Turpin","type":"Role","_key":"97303","_from":"676","_to":"57290"} +{"$label":"ACTS_IN","name":"Joe (voice)","type":"Role","_key":"90581","_from":"676","_to":"53500"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"89543","_from":"676","_to":"52997"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"89504","_from":"676","_to":"52992"} +{"$label":"ACTS_IN","name":"Lukas Hart III","type":"Role","_key":"64493","_from":"676","_to":"40183"} +{"$label":"ACTS_IN","name":"Elliott Marston","type":"Role","_key":"54869","_from":"676","_to":"35091"} +{"$label":"ACTS_IN","name":"Sheriff von Nottingham","type":"Role","_key":"49375","_from":"676","_to":"32334"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"46735","_from":"676","_to":"30837"} +{"$label":"ACTS_IN","name":"Col. Christopher Brandon","type":"Role","_key":"32869","_from":"676","_to":"22814"} +{"$label":"ACTS_IN","name":"Metatron","type":"Role","_key":"15811","_from":"676","_to":"12037"} +{"$label":"ACTS_IN","name":"Eamon de Valera","type":"Role","_key":"15405","_from":"676","_to":"11783"} +{"$label":"ACTS_IN","name":"Richis","type":"Role","_key":"13207","_from":"676","_to":"10287"} +{"$label":"ACTS_IN","name":"Alexander Dane","type":"Role","_key":"11028","_from":"676","_to":"8725"} +{"$label":"ACTS_IN","name":"Professor Severus Snape","type":"Role","_key":"9003","_from":"676","_to":"7294"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"8108","_from":"676","_to":"6687"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"8085","_from":"676","_to":"6682"} +{"$label":"ACTS_IN","name":"Professor Snape","type":"Role","_key":"8065","_from":"676","_to":"6676"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"8057","_from":"676","_to":"6665"} +{"$label":"ACTS_IN","name":"Severus Snape","type":"Role","_key":"8036","_from":"676","_to":"6646"} +{"$label":"ACTS_IN","name":"Hans Gruber","type":"Role","_key":"6742","_from":"676","_to":"5661"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"6146","_from":"676","_to":"5200"} +{"$label":"ACTS_IN","name":"Alex Hughes","type":"Role","_key":"4354","_from":"676","_to":"3718"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"96056","_from":"677","_to":"56457"} +{"$label":"ACTS_IN","name":"6 (voice)","type":"Role","_key":"89005","_from":"677","_to":"52724"} +{"$label":"ACTS_IN","name":"Willard Stiles","type":"Role","_key":"66802","_from":"677","_to":"41269"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"56389","_from":"677","_to":"35829"} +{"$label":"ACTS_IN","name":"Thin Man","type":"Role","_key":"31005","_from":"677","_to":"21713"} +{"$label":"ACTS_IN","name":"Grendel","type":"Role","_key":"20290","_from":"677","_to":"14868"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"19067","_from":"677","_to":"14082"} +{"$label":"ACTS_IN","name":"Arlo","type":"Role","_key":"14454","_from":"677","_to":"11171"} +{"$label":"ACTS_IN","name":"Train Fireman","type":"Role","_key":"10964","_from":"677","_to":"8689"} +{"$label":"ACTS_IN","name":"Cousin Dell","type":"Role","_key":"5923","_from":"677","_to":"5031"} +{"$label":"ACTS_IN","name":"George McFly","type":"Role","_key":"1885","_from":"677","_to":"1636"} +{"$label":"ACTS_IN","name":"Lilya","type":"Role","_key":"97645","_from":"678","_to":"57493"} +{"$label":"ACTS_IN","name":"Chaya Dziencielsky","type":"Role","_key":"96825","_from":"678","_to":"56939"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"92084","_from":"678","_to":"54333"} +{"$label":"ACTS_IN","name":"Elinor Smith","type":"Role","_key":"51480","_from":"678","_to":"33572"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"111724","_from":"679","_to":"65952"} +{"$label":"ACTS_IN","name":"Minister Tormer","type":"Role","_key":"101445","_from":"679","_to":"59717"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"100613","_from":"679","_to":"59326"} +{"$label":"ACTS_IN","name":"Peter Morton","type":"Role","_key":"72019","_from":"679","_to":"43549"} +{"$label":"ACTS_IN","name":"Oscar Wilde","type":"Role","_key":"69426","_from":"679","_to":"42430"} +{"$label":"ACTS_IN","name":"Stephen Fry","type":"Role","_key":"65421","_from":"679","_to":"40563"} +{"$label":"ACTS_IN","name":"Smithers","type":"Role","_key":"58884","_from":"679","_to":"37189"} +{"$label":"ACTS_IN","name":"Patrick Curator","type":"Role","_key":"49736","_from":"679","_to":"32538"} +{"$label":"ACTS_IN","name":"Inspector Thompson","type":"Role","_key":"36873","_from":"679","_to":"24998"} +{"$label":"ACTS_IN","name":"Onno","type":"Role","_key":"12751","_from":"679","_to":"9952"} +{"$label":"ACTS_IN","name":"Gordon Deitrich","type":"Role","_key":"8768","_from":"679","_to":"7114"} +{"$label":"DIRECTED","_key":"103809","_from":"679","_to":"61055"} +{"$label":"ACTS_IN","name":"Albert Pierrepoint","type":"Role","_key":"103519","_from":"680","_to":"60901"} +{"$label":"ACTS_IN","name":"Sugarman","type":"Role","_key":"97395","_from":"680","_to":"57355"} +{"$label":"ACTS_IN","name":"Beadle","type":"Role","_key":"97304","_from":"680","_to":"57290"} +{"$label":"ACTS_IN","name":"Phil Olson","type":"Role","_key":"91021","_from":"680","_to":"53708"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"89616","_from":"680","_to":"53037"} +{"$label":"ACTS_IN","name":"Peter Pettigrew","type":"Role","_key":"89525","_from":"680","_to":"52992"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"72336","_from":"680","_to":"43687"} +{"$label":"ACTS_IN","name":"Maurice Purley","type":"Role","_key":"68209","_from":"680","_to":"41888"} +{"$label":"ACTS_IN","name":"Projectionist","type":"Role","_key":"62869","_from":"680","_to":"39502"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"46664","_from":"680","_to":"30817"} +{"$label":"ACTS_IN","name":"Gourville","type":"Role","_key":"45811","_from":"680","_to":"30302"} +{"$label":"ACTS_IN","name":"Nathaniel","type":"Role","_key":"32295","_from":"680","_to":"22492"} +{"$label":"ACTS_IN","name":"Thomas Tipp","type":"Role","_key":"16437","_from":"680","_to":"12427"} +{"$label":"ACTS_IN","name":"David 'Beano' Baggot","type":"Role","_key":"14343","_from":"680","_to":"11100"} +{"$label":"ACTS_IN","name":"Inspector Healey","type":"Role","_key":"13383","_from":"680","_to":"10415"} +{"$label":"ACTS_IN","name":"Simon Graham","type":"Role","_key":"7315","_from":"680","_to":"6096"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"64699","_from":"681","_to":"40292"} +{"$label":"ACTS_IN","name":"Sir William De Kere \/ William Decker","type":"Role","_key":"54710","_from":"681","_to":"35025"} +{"$label":"ACTS_IN","name":"Trevor Goodchild","type":"Role","_key":"48379","_from":"681","_to":"31760"} +{"$label":"ACTS_IN","name":"Yorgi","type":"Role","_key":"46702","_from":"681","_to":"30829"} +{"$label":"ACTS_IN","name":"Jarda","type":"Role","_key":"21726","_from":"681","_to":"15871"} +{"$label":"ACTS_IN","name":"Guy de Lusignan","type":"Role","_key":"13546","_from":"681","_to":"10534"} +{"$label":"ACTS_IN","name":"Danny Embling","type":"Role","_key":"121590","_from":"682","_to":"71440"} +{"$label":"ACTS_IN","name":"Hyde Park Nutter","type":"Role","_key":"107799","_from":"682","_to":"63633"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"96413","_from":"682","_to":"56686"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"95213","_from":"682","_to":"56018"} +{"$label":"ACTS_IN","name":"(Young) David Helfgott","type":"Role","_key":"47411","_from":"682","_to":"31229"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"17309","_from":"682","_to":"12952"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"17298","_from":"682","_to":"12947"} +{"$label":"ACTS_IN","name":"Edmund Ventura","type":"Role","_key":"16436","_from":"682","_to":"12427"} +{"$label":"ACTS_IN","name":"Dick Roswell","type":"Role","_key":"9245","_from":"682","_to":"7466"} +{"$label":"ACTS_IN","name":"Vladimir Wolodarsky","type":"Role","_key":"5287","_from":"682","_to":"4483"} +{"$label":"ACTS_IN","name":"Mr. Bucket","type":"Role","_key":"882","_from":"682","_to":"711"} +{"$label":"ACTS_IN","name":"Vicky Pollard","type":"Role","_key":"109314","_from":"683","_to":"64575"} +{"$label":"ACTS_IN","name":"Babs","type":"Role","_key":"119647","_from":"684","_to":"70277"} +{"$label":"ACTS_IN","name":"Goldie Locks","type":"Role","_key":"119556","_from":"684","_to":"70231"} +{"$label":"ACTS_IN","name":"Sadie Tomkins","type":"Role","_key":"119372","_from":"684","_to":"70140"} +{"$label":"ACTS_IN","name":"Nurse Sandra May","type":"Role","_key":"35759","_from":"684","_to":"24297"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"66836","_from":"685","_to":"41283"} +{"$label":"ACTS_IN","name":"Mrs. Price\/Lady Bertram","type":"Role","_key":"62999","_from":"685","_to":"39550"} +{"$label":"ACTS_IN","name":"Jane Pretorius","type":"Role","_key":"25443","_from":"685","_to":"18349"} +{"$label":"ACTS_IN","name":"Mr. Lowry","type":"Role","_key":"55398","_from":"686","_to":"35310"} +{"$label":"ACTS_IN","name":"Pegasus, Head of MI7","type":"Role","_key":"54180","_from":"686","_to":"34805"} +{"$label":"ACTS_IN","name":"Sir Stubbs","type":"Role","_key":"41676","_from":"686","_to":"27972"} +{"$label":"ACTS_IN","name":"Major General Ford","type":"Role","_key":"29627","_from":"686","_to":"20970"} +{"$label":"ACTS_IN","name":"Creedy","type":"Role","_key":"8770","_from":"686","_to":"7114"} +{"$label":"ACTS_IN","name":"Madame Olympe Maxime","type":"Role","_key":"89535","_from":"687","_to":"52992"} +{"$label":"ACTS_IN","name":"Mrs. Lintott","type":"Role","_key":"50262","_from":"687","_to":"32841"} +{"$label":"ACTS_IN","name":"Miss Bellaver","type":"Role","_key":"41379","_from":"687","_to":"27819"} +{"$label":"ACTS_IN","name":"Madame Olympe Maxime","type":"Role","_key":"8097","_from":"687","_to":"6682"} +{"$label":"DIRECTED","_key":"856","_from":"705","_to":"688"} +{"$label":"ACTS_IN","name":"Frightened Sailor","type":"Role","_key":"855","_from":"704","_to":"688"} +{"$label":"ACTS_IN","name":"Giselle","type":"Role","_key":"854","_from":"703","_to":"688"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"853","_from":"702","_to":"688"} +{"$label":"ACTS_IN","name":"Captain Bellamy","type":"Role","_key":"852","_from":"701","_to":"688"} +{"$label":"ACTS_IN","name":"Cotton","type":"Role","_key":"851","_from":"700","_to":"688"} +{"$label":"ACTS_IN","name":"Ragetti","type":"Role","_key":"850","_from":"699","_to":"688"} +{"$label":"ACTS_IN","name":"Pintel","type":"Role","_key":"849","_from":"698","_to":"688"} +{"$label":"ACTS_IN","name":"Joshamee Gibbs","type":"Role","_key":"848","_from":"697","_to":"688"} +{"$label":"ACTS_IN","name":"Captain Barbossa","type":"Role","_key":"847","_from":"696","_to":"688"} +{"$label":"ACTS_IN","name":"Tia Dalma","type":"Role","_key":"846","_from":"695","_to":"688"} +{"$label":"ACTS_IN","name":"Governor Weatherby Swann","type":"Role","_key":"845","_from":"694","_to":"688"} +{"$label":"ACTS_IN","name":"Lord Beckett","type":"Role","_key":"844","_from":"693","_to":"688"} +{"$label":"ACTS_IN","name":"Bootstrap Bill","type":"Role","_key":"843","_from":"692","_to":"688"} +{"$label":"ACTS_IN","name":"Davy Jones","type":"Role","_key":"842","_from":"691","_to":"688"} +{"$label":"ACTS_IN","name":"James Norrington","type":"Role","_key":"841","_from":"690","_to":"688"} +{"$label":"ACTS_IN","name":"Will Turner","type":"Role","_key":"840","_from":"689","_to":"688"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"90360","_from":"689","_to":"53397"} +{"$label":"ACTS_IN","name":"Joseph Byrne","type":"Role","_key":"63967","_from":"689","_to":"39951"} +{"$label":"ACTS_IN","name":"Shy","type":"Role","_key":"57250","_from":"689","_to":"36317"} +{"$label":"ACTS_IN","name":"Drew Baylor","type":"Role","_key":"55103","_from":"689","_to":"35187"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"44523","_from":"689","_to":"29646"} +{"$label":"ACTS_IN","name":"Balian de Ibelin","type":"Role","_key":"13537","_from":"689","_to":"10534"} +{"$label":"ACTS_IN","name":"Todd Blackburn","type":"Role","_key":"10154","_from":"689","_to":"8112"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"7789","_from":"689","_to":"6469"} +{"$label":"ACTS_IN","name":"Legolas","type":"Role","_key":"1031","_from":"689","_to":"826"} +{"$label":"ACTS_IN","name":"Legolas","type":"Role","_key":"1011","_from":"689","_to":"820"} +{"$label":"ACTS_IN","name":"Legolas","type":"Role","_key":"991","_from":"689","_to":"802"} +{"$label":"ACTS_IN","name":"Will Turner","type":"Role","_key":"891","_from":"689","_to":"722"} +{"$label":"ACTS_IN","name":"Will Turner","type":"Role","_key":"859","_from":"689","_to":"706"} +{"$label":"ACTS_IN","name":"Twatt","type":"Role","_key":"118264","_from":"690","_to":"69515"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"47151","_from":"690","_to":"31080"} +{"$label":"ACTS_IN","name":"LCpl. Ebert","type":"Role","_key":"46743","_from":"690","_to":"30841"} +{"$label":"ACTS_IN","name":"Edward Fletcher-Wooten","type":"Role","_key":"45371","_from":"690","_to":"30086"} +{"$label":"ACTS_IN","name":"Sergeant Roche","type":"Role","_key":"13384","_from":"690","_to":"10415"} +{"$label":"ACTS_IN","name":"Peter Smith-Kingsley","type":"Role","_key":"12159","_from":"690","_to":"9529"} +{"$label":"ACTS_IN","name":"Captain Norrington","type":"Role","_key":"894","_from":"690","_to":"722"} +{"$label":"ACTS_IN","name":"Admiral James Norrington","type":"Role","_key":"868","_from":"690","_to":"706"} +{"$label":"ACTS_IN","name":"Leonard Saber","type":"Role","_key":"120475","_from":"691","_to":"70764"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"118258","_from":"691","_to":"69515"} +{"$label":"ACTS_IN","name":"James Mortmain","type":"Role","_key":"114383","_from":"691","_to":"67374"} +{"$label":"ACTS_IN","name":"Ray (Raymond) Robertson","type":"Role","_key":"111515","_from":"691","_to":"65842"} +{"$label":"ACTS_IN","name":"Dr. Elefun (voice)","type":"Role","_key":"109569","_from":"691","_to":"64719"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"109293","_from":"691","_to":"64568"} +{"$label":"ACTS_IN","name":"Rufus Scrimgeour","type":"Role","_key":"89506","_from":"691","_to":"52992"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"89480","_from":"691","_to":"52980"} +{"$label":"ACTS_IN","name":"Whitey","type":"Role","_key":"71090","_from":"691","_to":"43161"} +{"$label":"ACTS_IN","name":"Mr Johnson","type":"Role","_key":"63586","_from":"691","_to":"39786"} +{"$label":"ACTS_IN","name":"Alan Blunt","type":"Role","_key":"58887","_from":"691","_to":"37189"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"53565","_from":"691","_to":"34569"} +{"$label":"ACTS_IN","name":"Slartibartfast","type":"Role","_key":"46734","_from":"691","_to":"30837"} +{"$label":"ACTS_IN","name":"Ronald Marsh","type":"Role","_key":"41650","_from":"691","_to":"27954"} +{"$label":"ACTS_IN","name":"Met Chief Inspector","type":"Role","_key":"33111","_from":"691","_to":"22937"} +{"$label":"ACTS_IN","name":"Friedrich Olbricht","type":"Role","_key":"19700","_from":"691","_to":"14564"} +{"$label":"ACTS_IN","name":"Sir Bernard Pellegrin","type":"Role","_key":"17179","_from":"691","_to":"12868"} +{"$label":"ACTS_IN","name":"Ray Simms","type":"Role","_key":"14342","_from":"691","_to":"11100"} +{"$label":"ACTS_IN","name":"Richard Hart","type":"Role","_key":"12304","_from":"691","_to":"9638"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"9850","_from":"691","_to":"7897"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"8731","_from":"691","_to":"7074"} +{"$label":"ACTS_IN","name":"Billy Mack","type":"Role","_key":"6128","_from":"691","_to":"5200"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"3939","_from":"691","_to":"3364"} +{"$label":"ACTS_IN","name":"Davy Jones","type":"Role","_key":"864","_from":"691","_to":"706"} +{"$label":"ACTS_IN","name":"Eddie Argo","type":"Role","_key":"103055","_from":"692","_to":"60626"} +{"$label":"ACTS_IN","name":"Birger Brosa","type":"Role","_key":"95010","_from":"692","_to":"55937"} +{"$label":"ACTS_IN","name":"Birger Brosa","type":"Role","_key":"94791","_from":"692","_to":"55826"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"94503","_from":"692","_to":"55655"} +{"$label":"ACTS_IN","name":"Father Lankester Merrin","type":"Role","_key":"91088","_from":"692","_to":"53747"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"71160","_from":"692","_to":"43190"} +{"$label":"ACTS_IN","name":"Francisco Goya","type":"Role","_key":"70350","_from":"692","_to":"42856"} +{"$label":"ACTS_IN","name":"Father Merrin","type":"Role","_key":"67376","_from":"692","_to":"41517"} +{"$label":"ACTS_IN","name":"Erik's Father","type":"Role","_key":"58811","_from":"692","_to":"37140"} +{"$label":"ACTS_IN","name":"Jim Whitlock","type":"Role","_key":"51459","_from":"692","_to":"33562"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"48319","_from":"692","_to":"31733"} +{"$label":"ACTS_IN","name":"Hrothgar","type":"Role","_key":"37364","_from":"692","_to":"25321"} +{"$label":"ACTS_IN","name":"Terence Glass","type":"Role","_key":"18932","_from":"692","_to":"13983"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"17780","_from":"692","_to":"13258"} +{"$label":"ACTS_IN","name":"Tyrone","type":"Role","_key":"17521","_from":"692","_to":"13100"} +{"$label":"ACTS_IN","name":"Captain Tupolev","type":"Role","_key":"14807","_from":"692","_to":"11385"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"6621","_from":"692","_to":"5579"} +{"$label":"ACTS_IN","name":"Prof. Gerald Lambeau","type":"Role","_key":"5946","_from":"692","_to":"5047"} +{"$label":"ACTS_IN","name":"Jan Nyman","type":"Role","_key":"2301","_from":"692","_to":"2028"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"1163","_from":"692","_to":"926"} +{"$label":"ACTS_IN","name":"Bootstrap' Bill Turner","type":"Role","_key":"866","_from":"692","_to":"706"} +{"$label":"ACTS_IN","name":"Simon Foster","type":"Role","_key":"121280","_from":"693","_to":"71254"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"116178","_from":"693","_to":"68405"} +{"$label":"ACTS_IN","name":"Charlie Willis","type":"Role","_key":"56059","_from":"693","_to":"35624"} +{"$label":"ACTS_IN","name":"Etherege","type":"Role","_key":"47144","_from":"693","_to":"31080"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"43167","_from":"693","_to":"28826"} +{"$label":"ACTS_IN","name":"Amyas Paulet","type":"Role","_key":"32249","_from":"693","_to":"22472"} +{"$label":"ACTS_IN","name":"Mr. Collins","type":"Role","_key":"31090","_from":"693","_to":"21757"} +{"$label":"ACTS_IN","name":"Lord Cutler Beckett","type":"Role","_key":"865","_from":"693","_to":"706"} +{"$label":"ACTS_IN","name":"Cardinal Louis de Rohan","type":"Role","_key":"118614","_from":"694","_to":"69747"} +{"$label":"ACTS_IN","name":"James Clavel \/ Scarpia","type":"Role","_key":"111613","_from":"694","_to":"65897"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"103646","_from":"694","_to":"60960"} +{"$label":"ACTS_IN","name":"The President of the United States","type":"Role","_key":"102230","_from":"694","_to":"60158"} +{"$label":"ACTS_IN","name":"The Right Ordinary Horatio Jackson","type":"Role","_key":"100552","_from":"694","_to":"59305"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"66902","_from":"694","_to":"41305"} +{"$label":"ACTS_IN","name":"Alistair Payne","type":"Role","_key":"65351","_from":"694","_to":"40547"} +{"$label":"ACTS_IN","name":"Rivi\u00e8re","type":"Role","_key":"63351","_from":"694","_to":"39699"} +{"$label":"ACTS_IN","name":"Cardinal Daniel Houseman","type":"Role","_key":"62505","_from":"694","_to":"39359"} +{"$label":"ACTS_IN","name":"James Lingk","type":"Role","_key":"54306","_from":"694","_to":"34857"} +{"$label":"ACTS_IN","name":"Paul Dellenbach","type":"Role","_key":"53551","_from":"694","_to":"34565"} +{"$label":"ACTS_IN","name":"Juan Per\u00f3n","type":"Role","_key":"50900","_from":"694","_to":"33220"} +{"$label":"ACTS_IN","name":"Seamus O'Rourke","type":"Role","_key":"48321","_from":"694","_to":"31733"} +{"$label":"ACTS_IN","name":"CC Frazier","type":"Role","_key":"35008","_from":"694","_to":"23895"} +{"$label":"ACTS_IN","name":"Delatombe","type":"Role","_key":"31748","_from":"694","_to":"22160"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"23120","_from":"694","_to":"16763"} +{"$label":"ACTS_IN","name":"Elliot Carver","type":"Role","_key":"8630","_from":"694","_to":"7008"} +{"$label":"ACTS_IN","name":"Sam Lowry","type":"Role","_key":"1430","_from":"694","_to":"1207"} +{"$label":"ACTS_IN","name":"Governor Weatherby Swann","type":"Role","_key":"895","_from":"694","_to":"722"} +{"$label":"ACTS_IN","name":"Governor Weatherby Swann","type":"Role","_key":"863","_from":"694","_to":"706"} +{"$label":"ACTS_IN","name":"Sarrah","type":"Role","_key":"95915","_from":"695","_to":"56401"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"64297","_from":"695","_to":"40082"} +{"$label":"ACTS_IN","name":"Jennie","type":"Role","_key":"49733","_from":"695","_to":"32538"} +{"$label":"ACTS_IN","name":"Linda Washington","type":"Role","_key":"12379","_from":"695","_to":"9696"} +{"$label":"ACTS_IN","name":"Selena","type":"Role","_key":"2619","_from":"695","_to":"2287"} +{"$label":"ACTS_IN","name":"Trudy Joplin","type":"Role","_key":"1602","_from":"695","_to":"1367"} +{"$label":"ACTS_IN","name":"Tia Dalma","type":"Role","_key":"873","_from":"695","_to":"706"} +{"$label":"ACTS_IN","name":"Angel (voice)","type":"Role","_key":"119670","_from":"696","_to":"70284"} +{"$label":"ACTS_IN","name":"Harold Fingleton","type":"Role","_key":"104568","_from":"696","_to":"61509"} +{"$label":"ACTS_IN","name":"Donovan Donaly","type":"Role","_key":"71874","_from":"696","_to":"43490"} +{"$label":"ACTS_IN","name":"Stephen H. Price","type":"Role","_key":"69493","_from":"696","_to":"42456"} +{"$label":"ACTS_IN","name":"The Marquis de Sade","type":"Role","_key":"66414","_from":"696","_to":"41070"} +{"$label":"ACTS_IN","name":"Peter Sellers","type":"Role","_key":"64497","_from":"696","_to":"40184"} +{"$label":"ACTS_IN","name":"Superintendent Francis Hare","type":"Role","_key":"63968","_from":"696","_to":"39951"} +{"$label":"ACTS_IN","name":"Zachary Welch","type":"Role","_key":"58866","_from":"696","_to":"37175"} +{"$label":"ACTS_IN","name":"John Knox","type":"Role","_key":"54436","_from":"696","_to":"34911"} +{"$label":"ACTS_IN","name":"Harry Plummer","type":"Role","_key":"52176","_from":"696","_to":"34000"} +{"$label":"ACTS_IN","name":"David Helfgott","type":"Role","_key":"47412","_from":"696","_to":"31229"} +{"$label":"ACTS_IN","name":"Sir Francis Walsingham","type":"Role","_key":"32257","_from":"696","_to":"22475"} +{"$label":"ACTS_IN","name":"Sir Francis Walsingham","type":"Role","_key":"32248","_from":"696","_to":"22472"} +{"$label":"ACTS_IN","name":"Caspar","type":"Role","_key":"31734","_from":"696","_to":"22150"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31596","_from":"696","_to":"22064"} +{"$label":"ACTS_IN","name":"Harold \" Harry \" Pendel","type":"Role","_key":"22020","_from":"696","_to":"16070"} +{"$label":"ACTS_IN","name":"Philip Henslowe","type":"Role","_key":"16757","_from":"696","_to":"12639"} +{"$label":"ACTS_IN","name":"Barbossa","type":"Role","_key":"16119","_from":"696","_to":"12247"} +{"$label":"ACTS_IN","name":"Leon Trotsky","type":"Role","_key":"12565","_from":"696","_to":"9830"} +{"$label":"ACTS_IN","name":"Ephraim","type":"Role","_key":"7248","_from":"696","_to":"6053"} +{"$label":"ACTS_IN","name":"Barbossa","type":"Role","_key":"893","_from":"696","_to":"722"} +{"$label":"ACTS_IN","name":"Barbossa","type":"Role","_key":"862","_from":"696","_to":"706"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"116448","_from":"697","_to":"68543"} +{"$label":"ACTS_IN","name":"Gerald Murphy","type":"Role","_key":"103647","_from":"697","_to":"60960"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"59723","_from":"697","_to":"37714"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"54179","_from":"697","_to":"34805"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33057","_from":"697","_to":"22898"} +{"$label":"ACTS_IN","name":"Nahor","type":"Role","_key":"22853","_from":"697","_to":"16575"} +{"$label":"ACTS_IN","name":"Carl-Friedrich Goerdeler","type":"Role","_key":"19705","_from":"697","_to":"14564"} +{"$label":"ACTS_IN","name":"Gibbs","type":"Role","_key":"16124","_from":"697","_to":"12247"} +{"$label":"ACTS_IN","name":"Mike Tinsley","type":"Role","_key":"6215","_from":"697","_to":"5259"} +{"$label":"ACTS_IN","name":"Joshamee Gibbs","type":"Role","_key":"867","_from":"697","_to":"706"} +{"$label":"ACTS_IN","name":"Pintel","type":"Role","_key":"896","_from":"698","_to":"722"} +{"$label":"ACTS_IN","name":"Pintel","type":"Role","_key":"870","_from":"698","_to":"706"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"113232","_from":"699","_to":"66717"} +{"$label":"ACTS_IN","name":"Producer","type":"Role","_key":"102777","_from":"699","_to":"60460"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"102480","_from":"699","_to":"60299"} +{"$label":"ACTS_IN","name":"Ferris","type":"Role","_key":"94152","_from":"699","_to":"55440"} +{"$label":"ACTS_IN","name":"Hidlick","type":"Role","_key":"31745","_from":"699","_to":"22160"} +{"$label":"ACTS_IN","name":"Dutch Kid","type":"Role","_key":"14349","_from":"699","_to":"11100"} +{"$label":"ACTS_IN","name":"Ragetti","type":"Role","_key":"897","_from":"699","_to":"722"} +{"$label":"ACTS_IN","name":"Ragetti","type":"Role","_key":"869","_from":"699","_to":"706"} +{"$label":"ACTS_IN","name":"Cotton","type":"Role","_key":"901","_from":"700","_to":"722"} +{"$label":"ACTS_IN","name":"Watt","type":"Role","_key":"68711","_from":"701","_to":"42100"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"114864","_from":"704","_to":"67660"} +{"$label":"ACTS_IN","name":"Zak","type":"Role","_key":"114738","_from":"704","_to":"67581"} +{"$label":"ACTS_IN","name":"Mick Jagger","type":"Role","_key":"113815","_from":"704","_to":"67050"} +{"$label":"ACTS_IN","name":"Frightened Sailor","type":"Role","_key":"905","_from":"704","_to":"722"} +{"$label":"DIRECTED","_key":"51957","_from":"705","_to":"33888"} +{"$label":"DIRECTED","_key":"45380","_from":"705","_to":"30092"} +{"$label":"DIRECTED","_key":"42834","_from":"705","_to":"28641"} +{"$label":"DIRECTED","_key":"41495","_from":"705","_to":"27879"} +{"$label":"DIRECTED","_key":"6780","_from":"705","_to":"5693"} +{"$label":"DIRECTED","_key":"906","_from":"705","_to":"722"} +{"$label":"DIRECTED","_key":"857","_from":"705","_to":"706"} +{"$label":"ACTS_IN","name":"Teague Sparrow","type":"Role","_key":"874","_from":"710","_to":"706"} +{"$label":"ACTS_IN","name":"Lieutenant Groves","type":"Role","_key":"872","_from":"709","_to":"706"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"871","_from":"708","_to":"706"} +{"$label":"ACTS_IN","name":"Captain Sao Feng","type":"Role","_key":"861","_from":"707","_to":"706"} +{"$label":"ACTS_IN","name":"Ko Chun \/ 'The God of Gamblers'","type":"Role","_key":"120245","_from":"707","_to":"70612"} +{"$label":"ACTS_IN","name":"Ken \/ Mark Lee \/ Mark 'Gor'","type":"Role","_key":"115771","_from":"707","_to":"68165"} +{"$label":"ACTS_IN","name":"Ko Chun(The God of Gamblers) \/ Chocolate","type":"Role","_key":"108412","_from":"707","_to":"64096"} +{"$label":"ACTS_IN","name":"Master Roshi","type":"Role","_key":"98864","_from":"707","_to":"58251"} +{"$label":"ACTS_IN","name":"Chen Hansheng","type":"Role","_key":"94339","_from":"707","_to":"55553"} +{"$label":"ACTS_IN","name":"nameless monk","type":"Role","_key":"72161","_from":"707","_to":"43613"} +{"$label":"ACTS_IN","name":"Insp. Yuen \/ Tequila","type":"Role","_key":"71953","_from":"707","_to":"43526"} +{"$label":"ACTS_IN","name":"John Lee","type":"Role","_key":"71658","_from":"707","_to":"43387"} +{"$label":"ACTS_IN","name":"Mark Gor\/Mark Lee","type":"Role","_key":"70061","_from":"707","_to":"42717"} +{"$label":"ACTS_IN","name":"Ah Jong","type":"Role","_key":"66074","_from":"707","_to":"40883"} +{"$label":"ACTS_IN","name":"Lieutenant Nick Chen","type":"Role","_key":"53971","_from":"707","_to":"34719"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"13529","_from":"707","_to":"10527"} +{"$label":"ACTS_IN","name":"K\u00f6nig Mongkut","type":"Role","_key":"13292","_from":"707","_to":"10353"} +{"$label":"ACTS_IN","name":"Master Li Mu Bai","type":"Role","_key":"2321","_from":"707","_to":"2046"} +{"$label":"ACTS_IN","name":"Principal Mann","type":"Role","_key":"107126","_from":"708","_to":"63173"} +{"$label":"ACTS_IN","name":"Thunder","type":"Role","_key":"96738","_from":"708","_to":"56902"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"51655","_from":"708","_to":"33701"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"119489","_from":"709","_to":"70191"} +{"$label":"ACTS_IN","name":"Creeper \/ Horror's Hand \/ Pirate #3 \/ Paperboy (voice)","type":"Role","_key":"111839","_from":"709","_to":"66010"} +{"$label":"ACTS_IN","name":"Chief Engineer Olsen","type":"Role","_key":"94695","_from":"709","_to":"55786"} +{"$label":"ACTS_IN","name":"Garmund","type":"Role","_key":"20292","_from":"709","_to":"14868"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47549","_from":"710","_to":"31332"} +{"$label":"ACTS_IN","name":"Himself (as The Rolling Stones)","type":"Role","_key":"2104","_from":"710","_to":"1840"} +{"$label":"ACTS_IN","name":"Oompa Loompa","type":"Role","_key":"889","_from":"721","_to":"711"} +{"$label":"ACTS_IN","name":"Mrs. Beauregard","type":"Role","_key":"887","_from":"720","_to":"711"} +{"$label":"ACTS_IN","name":"Mrs. Glupsch","type":"Role","_key":"886","_from":"719","_to":"711"} +{"$label":"ACTS_IN","name":"Mr. Salt","type":"Role","_key":"885","_from":"718","_to":"711"} +{"$label":"ACTS_IN","name":"Augustus Glupsch","type":"Role","_key":"884","_from":"717","_to":"711"} +{"$label":"ACTS_IN","name":"Mike Teavee","type":"Role","_key":"883","_from":"716","_to":"711"} +{"$label":"ACTS_IN","name":"Grandpa Joe","type":"Role","_key":"880","_from":"715","_to":"711"} +{"$label":"ACTS_IN","name":"Veruca Salt","type":"Role","_key":"879","_from":"714","_to":"711"} +{"$label":"ACTS_IN","name":"Violet Beauregarde","type":"Role","_key":"878","_from":"713","_to":"711"} +{"$label":"ACTS_IN","name":"Charlie Bucket","type":"Role","_key":"877","_from":"712","_to":"711"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"110088","_from":"712","_to":"65055"} +{"$label":"ACTS_IN","name":"Astro Boy (voice)","type":"Role","_key":"109571","_from":"712","_to":"64719"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"59102","_from":"712","_to":"37311"} +{"$label":"ACTS_IN","name":"Young Max Skinner","type":"Role","_key":"56047","_from":"712","_to":"35624"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"48390","_from":"712","_to":"31764"} +{"$label":"ACTS_IN","name":"August Rush","type":"Role","_key":"35992","_from":"712","_to":"24440"} +{"$label":"ACTS_IN","name":"Pantalaimon (voice)","type":"Role","_key":"19925","_from":"712","_to":"14664"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"17322","_from":"712","_to":"12958"} +{"$label":"ACTS_IN","name":"Peter Llewelyn Davies","type":"Role","_key":"10298","_from":"712","_to":"8196"} +{"$label":"ACTS_IN","name":"Opal","type":"Role","_key":"114175","_from":"713","_to":"67261"} +{"$label":"ACTS_IN","name":"Cassie Kennington","type":"Role","_key":"100765","_from":"713","_to":"59409"} +{"$label":"ACTS_IN","name":"Tara","type":"Role","_key":"99740","_from":"713","_to":"58822"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"97136","_from":"713","_to":"57141"} +{"$label":"ACTS_IN","name":"Young Millie","type":"Role","_key":"48597","_from":"713","_to":"31879"} +{"$label":"ACTS_IN","name":"Loren McConnell","type":"Role","_key":"14896","_from":"713","_to":"11449"} +{"$label":"ACTS_IN","name":"Leslie Burke","type":"Role","_key":"12356","_from":"713","_to":"9681"} +{"$label":"ACTS_IN","name":"Frank Kovak","type":"Role","_key":"95876","_from":"715","_to":"56386"} +{"$label":"ACTS_IN","name":"Michael O'Sullivan","type":"Role","_key":"61346","_from":"715","_to":"38715"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"59083","_from":"715","_to":"37302"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"45659","_from":"717","_to":"30218"} +{"$label":"ACTS_IN","name":"The Pope","type":"Role","_key":"107344","_from":"718","_to":"63306"} +{"$label":"ACTS_IN","name":"Richard Fielding","type":"Role","_key":"106360","_from":"718","_to":"62660"} +{"$label":"ACTS_IN","name":"King Haraald","type":"Role","_key":"68109","_from":"718","_to":"41834"} +{"$label":"ACTS_IN","name":"Richard Mays","type":"Role","_key":"62672","_from":"718","_to":"39416"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"61393","_from":"718","_to":"38729"} +{"$label":"ACTS_IN","name":"Gosse","type":"Role","_key":"33972","_from":"718","_to":"23380"} +{"$label":"ACTS_IN","name":"Prof. Summerlee","type":"Role","_key":"24868","_from":"718","_to":"17982"} +{"$label":"ACTS_IN","name":"Lord Darlington","type":"Role","_key":"12177","_from":"718","_to":"9544"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"100655","_from":"720","_to":"59348"} +{"$label":"ACTS_IN","name":"Raylene","type":"Role","_key":"93979","_from":"720","_to":"55341"} +{"$label":"ACTS_IN","name":"Peggy Braden","type":"Role","_key":"59539","_from":"720","_to":"37584"} +{"$label":"ACTS_IN","name":"Nadia Vole","type":"Role","_key":"58889","_from":"720","_to":"37189"} +{"$label":"ACTS_IN","name":"Roxanne","type":"Role","_key":"40839","_from":"720","_to":"27489"} +{"$label":"ACTS_IN","name":"Laliari","type":"Role","_key":"11035","_from":"720","_to":"8725"} +{"$label":"ACTS_IN","name":"General Bonesapart (voice)","type":"Role","_key":"28979","_from":"721","_to":"20688"} +{"$label":"ACTS_IN","name":"Bo'sun","type":"Role","_key":"903","_from":"727","_to":"722"} +{"$label":"ACTS_IN","name":"Twigg","type":"Role","_key":"902","_from":"726","_to":"722"} +{"$label":"ACTS_IN","name":"Mullroy","type":"Role","_key":"900","_from":"725","_to":"722"} +{"$label":"ACTS_IN","name":"Murtogg","type":"Role","_key":"899","_from":"724","_to":"722"} +{"$label":"ACTS_IN","name":"Lt. Gillette","type":"Role","_key":"898","_from":"723","_to":"722"} +{"$label":"ACTS_IN","name":"Mr. Belafonte","type":"Role","_key":"25775","_from":"725","_to":"18543"} +{"$label":"ACTS_IN","name":"Krenski","type":"Role","_key":"14088","_from":"725","_to":"10917"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"119243","_from":"727","_to":"70057"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"107199","_from":"727","_to":"63224"} +{"$label":"ACTS_IN","name":"Guillaume Blerot","type":"Role","_key":"925","_from":"745","_to":"728"} +{"$label":"ACTS_IN","name":"Madame Audel","type":"Role","_key":"924","_from":"744","_to":"728"} +{"$label":"ACTS_IN","name":"Alphonse Marceau","type":"Role","_key":"923","_from":"743","_to":"728"} +{"$label":"ACTS_IN","name":"Yvette Marceau","type":"Role","_key":"922","_from":"742","_to":"728"} +{"$label":"ACTS_IN","name":"Didi Drou","type":"Role","_key":"921","_from":"741","_to":"728"} +{"$label":"ACTS_IN","name":"Dedou Drou","type":"Role","_key":"920","_from":"740","_to":"728"} +{"$label":"ACTS_IN","name":"Anouk Rocher","type":"Role","_key":"919","_from":"739","_to":"728"} +{"$label":"ACTS_IN","name":"Luc Clairmont","type":"Role","_key":"918","_from":"738","_to":"728"} +{"$label":"ACTS_IN","name":"Serge Muscat","type":"Role","_key":"917","_from":"737","_to":"728"} +{"$label":"ACTS_IN","name":"Josephine Muscat","type":"Role","_key":"916","_from":"736","_to":"728"} +{"$label":"ACTS_IN","name":"Pere Henri","type":"Role","_key":"915","_from":"735","_to":"728"} +{"$label":"ACTS_IN","name":"Francoise Drou","type":"Role","_key":"914","_from":"734","_to":"728"} +{"$label":"ACTS_IN","name":"Jean-Marc Drou","type":"Role","_key":"913","_from":"733","_to":"728"} +{"$label":"ACTS_IN","name":"Armande Voizin","type":"Role","_key":"912","_from":"732","_to":"728"} +{"$label":"ACTS_IN","name":"Comte Paul de Reynaud","type":"Role","_key":"909","_from":"731","_to":"728"} +{"$label":"ACTS_IN","name":"Vianne Rocher","type":"Role","_key":"908","_from":"730","_to":"728"} +{"$label":"DIRECTED","_key":"907","_from":"729","_to":"728"} +{"$label":"DIRECTED","_key":"116039","_from":"729","_to":"68336"} +{"$label":"DIRECTED","_key":"57782","_from":"729","_to":"36578"} +{"$label":"DIRECTED","_key":"55552","_from":"729","_to":"35377"} +{"$label":"DIRECTED","_key":"50897","_from":"729","_to":"33215"} +{"$label":"DIRECTED","_key":"43409","_from":"729","_to":"28999"} +{"$label":"DIRECTED","_key":"16902","_from":"729","_to":"12705"} +{"$label":"DIRECTED","_key":"15160","_from":"729","_to":"11627"} +{"$label":"DIRECTED","_key":"14064","_from":"729","_to":"10899"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"115759","_from":"730","_to":"68156"} +{"$label":"ACTS_IN","name":"Anna Malan","type":"Role","_key":"109692","_from":"730","_to":"64785"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"88639","_from":"730","_to":"52522"} +{"$label":"ACTS_IN","name":"Pauline de Th\u00e9us","type":"Role","_key":"72500","_from":"730","_to":"43740"} +{"$label":"ACTS_IN","name":"Anna Barton","type":"Role","_key":"67288","_from":"730","_to":"41486"} +{"$label":"ACTS_IN","name":"Tereza","type":"Role","_key":"64801","_from":"730","_to":"40321"} +{"$label":"ACTS_IN","name":"Adrienne","type":"Role","_key":"48807","_from":"730","_to":"32011"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"48764","_from":"730","_to":"31986"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"45929","_from":"730","_to":"30370"} +{"$label":"ACTS_IN","name":"Mich\u00e8le Stalens","type":"Role","_key":"23373","_from":"730","_to":"16939"} +{"$label":"ACTS_IN","name":"Suzanne (Place des Victoires)","type":"Role","_key":"19867","_from":"730","_to":"14635"} +{"$label":"ACTS_IN","name":"Amira","type":"Role","_key":"12251","_from":"730","_to":"9592"} +{"$label":"ACTS_IN","name":"Anne Laurent","type":"Role","_key":"5561","_from":"730","_to":"4740"} +{"$label":"ACTS_IN","name":"Hana","type":"Role","_key":"5192","_from":"730","_to":"4417"} +{"$label":"ACTS_IN","name":"Julie Vignon","type":"Role","_key":"1925","_from":"730","_to":"1672"} +{"$label":"ACTS_IN","name":"Touchstone","type":"Role","_key":"118712","_from":"731","_to":"69802"} +{"$label":"ACTS_IN","name":"Snidely Whiplash","type":"Role","_key":"113727","_from":"731","_to":"67020"} +{"$label":"ACTS_IN","name":"Davide Rieti","type":"Role","_key":"111614","_from":"731","_to":"65897"} +{"$label":"ACTS_IN","name":"Ares","type":"Role","_key":"104078","_from":"731","_to":"61239"} +{"$label":"ACTS_IN","name":"Pepperidge","type":"Role","_key":"103427","_from":"731","_to":"60838"} +{"$label":"ACTS_IN","name":"Chandler Manning","type":"Role","_key":"102950","_from":"731","_to":"60559"} +{"$label":"ACTS_IN","name":"John King Fisher","type":"Role","_key":"94880","_from":"731","_to":"55861"} +{"$label":"ACTS_IN","name":"Boris Plots","type":"Role","_key":"66720","_from":"731","_to":"41220"} +{"$label":"ACTS_IN","name":"Dick Suskind","type":"Role","_key":"57792","_from":"731","_to":"36578"} +{"$label":"ACTS_IN","name":"Moody","type":"Role","_key":"54845","_from":"731","_to":"35084"} +{"$label":"ACTS_IN","name":"Sheik Amar","type":"Role","_key":"54571","_from":"731","_to":"34967"} +{"$label":"ACTS_IN","name":"Boris 'The Butcher' Blavasky","type":"Role","_key":"53720","_from":"731","_to":"34637"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"53341","_from":"731","_to":"34482"} +{"$label":"ACTS_IN","name":"Dr. Stephen Arden","type":"Role","_key":"53279","_from":"731","_to":"34454"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41734","_from":"731","_to":"28008"} +{"$label":"ACTS_IN","name":"Johann Tetzel","type":"Role","_key":"38406","_from":"731","_to":"25944"} +{"$label":"ACTS_IN","name":"Dr. Malick","type":"Role","_key":"23846","_from":"731","_to":"17287"} +{"$label":"ACTS_IN","name":"Diego Rivera","type":"Role","_key":"12556","_from":"731","_to":"9830"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"10522","_from":"731","_to":"8357"} +{"$label":"ACTS_IN","name":"Manuel Aringarosa","type":"Role","_key":"7097","_from":"731","_to":"5934"} +{"$label":"ACTS_IN","name":"Doc Ock \/ Dr. Otto Octavius","type":"Role","_key":"6668","_from":"731","_to":"5630"} +{"$label":"ACTS_IN","name":"Cezar","type":"Role","_key":"6337","_from":"731","_to":"5358"} +{"$label":"ACTS_IN","name":"Solomon Solomon","type":"Role","_key":"4587","_from":"731","_to":"3908"} +{"$label":"ACTS_IN","name":"Satipo","type":"Role","_key":"1629","_from":"731","_to":"1387"} +{"$label":"ACTS_IN","name":"Ann's Father","type":"Role","_key":"1215","_from":"731","_to":"981"} +{"$label":"ACTS_IN","name":"Queen Victoria","type":"Role","_key":"113264","_from":"732","_to":"66730"} +{"$label":"ACTS_IN","name":"Nora Doel","type":"Role","_key":"105426","_from":"732","_to":"62026"} +{"$label":"ACTS_IN","name":"Mrs. Caloway","type":"Role","_key":"95963","_from":"732","_to":"56425"} +{"$label":"ACTS_IN","name":"Iris Murdoch","type":"Role","_key":"72567","_from":"732","_to":"43761"} +{"$label":"ACTS_IN","name":"Mrs. Laura Henderson","type":"Role","_key":"65679","_from":"732","_to":"40687"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"65624","_from":"732","_to":"40670"} +{"$label":"ACTS_IN","name":"Mistress Quickly","type":"Role","_key":"65156","_from":"732","_to":"40473"} +{"$label":"ACTS_IN","name":"Hecuba","type":"Role","_key":"64002","_from":"732","_to":"39964"} +{"$label":"ACTS_IN","name":"Arabella","type":"Role","_key":"62841","_from":"732","_to":"39488"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"61630","_from":"732","_to":"38839"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"54466","_from":"732","_to":"34924"} +{"$label":"ACTS_IN","name":"Lady Bracknell","type":"Role","_key":"52105","_from":"732","_to":"33974"} +{"$label":"ACTS_IN","name":"Agnis Hamm","type":"Role","_key":"43406","_from":"732","_to":"28999"} +{"$label":"ACTS_IN","name":"Lady Catherine de Bourg","type":"Role","_key":"31091","_from":"732","_to":"21757"} +{"$label":"ACTS_IN","name":"Aereon","type":"Role","_key":"23605","_from":"732","_to":"17115"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"17570","_from":"732","_to":"13129"} +{"$label":"ACTS_IN","name":"Queen Elizabeth","type":"Role","_key":"16759","_from":"732","_to":"12639"} +{"$label":"ACTS_IN","name":"Barbara Covett","type":"Role","_key":"12302","_from":"732","_to":"9638"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8637","_from":"732","_to":"7008"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8582","_from":"732","_to":"6980"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56086","_from":"734","_to":"35624"} +{"$label":"ACTS_IN","name":"James Morland","type":"Role","_key":"114895","_from":"735","_to":"67666"} +{"$label":"ACTS_IN","name":"Graham Young","type":"Role","_key":"110575","_from":"735","_to":"65331"} +{"$label":"ACTS_IN","name":"Young Mike Blueberry","type":"Role","_key":"59881","_from":"735","_to":"37818"} +{"$label":"ACTS_IN","name":"Tessie","type":"Role","_key":"113375","_from":"736","_to":"66785"} +{"$label":"ACTS_IN","name":"Lilith Beresford","type":"Role","_key":"94736","_from":"736","_to":"55797"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"69482","_from":"736","_to":"42450"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"67588","_from":"736","_to":"41608"} +{"$label":"ACTS_IN","name":"Sabina","type":"Role","_key":"64802","_from":"736","_to":"40321"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"55541","_from":"736","_to":"35377"} +{"$label":"ACTS_IN","name":"Dr. Elizabeth 'Libbie' Bowen","type":"Role","_key":"22283","_from":"736","_to":"16209"} +{"$label":"ACTS_IN","name":"Mona Demarkov","type":"Role","_key":"18187","_from":"736","_to":"13492"} +{"$label":"ACTS_IN","name":"Liana Telfer","type":"Role","_key":"7397","_from":"736","_to":"6167"} +{"$label":"ACTS_IN","name":"David Spitz","type":"Role","_key":"116338","_from":"737","_to":"68477"} +{"$label":"ACTS_IN","name":"Carl Hamilton","type":"Role","_key":"113373","_from":"737","_to":"66785"} +{"$label":"ACTS_IN","name":"Dr. Gianetti","type":"Role","_key":"111372","_from":"737","_to":"65768"} +{"$label":"ACTS_IN","name":"Simons far","type":"Role","_key":"106093","_from":"737","_to":"62474"} +{"$label":"ACTS_IN","name":"Norman Hail","type":"Role","_key":"101259","_from":"737","_to":"59629"} +{"$label":"ACTS_IN","name":"Klemens","type":"Role","_key":"98400","_from":"737","_to":"57965"} +{"$label":"ACTS_IN","name":"Blair Collet","type":"Role","_key":"98040","_from":"737","_to":"57729"} +{"$label":"ACTS_IN","name":"Tommen","type":"Role","_key":"95461","_from":"737","_to":"56157"} +{"$label":"ACTS_IN","name":"Sergeant Hjelmstad","type":"Role","_key":"88022","_from":"737","_to":"52256"} +{"$label":"ACTS_IN","name":"Peter Wetzler","type":"Role","_key":"67291","_from":"737","_to":"41486"} +{"$label":"ACTS_IN","name":"Dr. Roth","type":"Role","_key":"58627","_from":"737","_to":"37036"} +{"$label":"ACTS_IN","name":"Snakeskin Boots","type":"Role","_key":"57213","_from":"737","_to":"36289"} +{"$label":"ACTS_IN","name":"Alexei","type":"Role","_key":"51704","_from":"737","_to":"33743"} +{"$label":"ACTS_IN","name":"Dino Velvet","type":"Role","_key":"48580","_from":"737","_to":"31873"} +{"$label":"ACTS_IN","name":"Cavaldi","type":"Role","_key":"31747","_from":"737","_to":"22160"} +{"$label":"ACTS_IN","name":"Adrik Vas","type":"Role","_key":"26235","_from":"737","_to":"18839"} +{"$label":"ACTS_IN","name":"Ernst R\u00f6hm","type":"Role","_key":"21769","_from":"737","_to":"15899"} +{"$label":"ACTS_IN","name":"Lucifer","type":"Role","_key":"6735","_from":"737","_to":"5655"} +{"$label":"ACTS_IN","name":"Dixie","type":"Role","_key":"4415","_from":"737","_to":"3774"} +{"$label":"ACTS_IN","name":"Gaear Grimsrud","type":"Role","_key":"3914","_from":"737","_to":"3344"} +{"$label":"ACTS_IN","name":"Dr. Solomon Eddie","type":"Role","_key":"2771","_from":"737","_to":"2396"} +{"$label":"ACTS_IN","name":"Nihilist #1, Uli Kunkel\/'Karl Hungus'","type":"Role","_key":"2012","_from":"737","_to":"1750"} +{"$label":"ACTS_IN","name":"Lev Andropov, Russian Cosmonaut","type":"Role","_key":"1768","_from":"737","_to":"1527"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"1147","_from":"737","_to":"926"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"62201","_from":"742","_to":"39172"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"22121","_from":"742","_to":"16130"} +{"$label":"ACTS_IN","name":"Eurybates","type":"Role","_key":"111720","_from":"743","_to":"65950"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"101153","_from":"743","_to":"59587"} +{"$label":"ACTS_IN","name":"Sam's Dad","type":"Role","_key":"60848","_from":"743","_to":"38430"} +{"$label":"ACTS_IN","name":"Mews","type":"Role","_key":"46719","_from":"743","_to":"30833"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"111769","_from":"744","_to":"65970"} +{"$label":"ACTS_IN","name":"Suzanne de Persand","type":"Role","_key":"54277","_from":"744","_to":"34846"} +{"$label":"ACTS_IN","name":"Sra. Alvaeado","type":"Role","_key":"41736","_from":"744","_to":"28008"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Lab\u00e9","type":"Role","_key":"33559","_from":"744","_to":"23204"} +{"$label":"ACTS_IN","name":"Nedeshda Krupskaja","type":"Role","_key":"30037","_from":"744","_to":"21186"} +{"$label":"ACTS_IN","name":"Lise Bouvier","type":"Role","_key":"23433","_from":"744","_to":"16993"} +{"$label":"ACTS_IN","name":"V\u00e9ra","type":"Role","_key":"13159","_from":"744","_to":"10258"} +{"$label":"ACTS_IN","name":"Prince Peter Belinskya","type":"Role","_key":"117701","_from":"745","_to":"69180"} +{"$label":"ACTS_IN","name":"Gorbunov","type":"Role","_key":"90237","_from":"745","_to":"53351"} +{"$label":"ACTS_IN","name":"Jeremy Talbott","type":"Role","_key":"66901","_from":"745","_to":"41305"} +{"$label":"ACTS_IN","name":"Christopher Riley","type":"Role","_key":"63397","_from":"745","_to":"39719"} +{"$label":"ACTS_IN","name":"Trubshaw","type":"Role","_key":"53107","_from":"745","_to":"34364"} +{"$label":"ACTS_IN","name":"Archduke Harry","type":"Role","_key":"52988","_from":"745","_to":"34323"} +{"$label":"ACTS_IN","name":"Col. Marcus","type":"Role","_key":"18860","_from":"745","_to":"13922"} +{"$label":"ACTS_IN","name":"Dr. Stephen Falken","type":"Role","_key":"10223","_from":"745","_to":"8154"} +{"$label":"ACTS_IN","name":"Bishop of Aquila","type":"Role","_key":"6344","_from":"745","_to":"5358"} +{"$label":"ACTS_IN","name":"Red Head Girl","type":"Role","_key":"936","_from":"755","_to":"746"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"935","_from":"754","_to":"746"} +{"$label":"ACTS_IN","name":"Elf Lieutenant","type":"Role","_key":"934","_from":"753","_to":"746"} +{"$label":"ACTS_IN","name":"Elf General","type":"Role","_key":"933","_from":"752","_to":"746"} +{"$label":"ACTS_IN","name":"Lonely Boy","type":"Role","_key":"932","_from":"751","_to":"746"} +{"$label":"ACTS_IN","name":"Hero Girl","type":"Role","_key":"931","_from":"750","_to":"746"} +{"$label":"ACTS_IN","name":"Toothless Boy","type":"Role","_key":"930","_from":"749","_to":"746"} +{"$label":"ACTS_IN","name":"Know-It-All","type":"Role","_key":"929","_from":"748","_to":"746"} +{"$label":"ACTS_IN","name":"Steamer","type":"Role","_key":"928","_from":"747","_to":"746"} +{"$label":"ACTS_IN","name":"Mr. Goldstone","type":"Role","_key":"114353","_from":"747","_to":"67357"} +{"$label":"ACTS_IN","name":"Toto","type":"Role","_key":"52661","_from":"747","_to":"34200"} +{"$label":"ACTS_IN","name":"Sticks Varona","type":"Role","_key":"49125","_from":"747","_to":"32184"} +{"$label":"ACTS_IN","name":"Father Ignatius","type":"Role","_key":"42790","_from":"747","_to":"28626"} +{"$label":"ACTS_IN","name":"Earl Leedy","type":"Role","_key":"35089","_from":"747","_to":"23924"} +{"$label":"ACTS_IN","name":"Avron","type":"Role","_key":"20086","_from":"747","_to":"14765"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"17860","_from":"747","_to":"13300"} +{"$label":"ACTS_IN","name":"Gerald Weems","type":"Role","_key":"17823","_from":"747","_to":"13278"} +{"$label":"ACTS_IN","name":"Ron Bumquist","type":"Role","_key":"16213","_from":"747","_to":"12305"} +{"$label":"ACTS_IN","name":"Mr. Udesky","type":"Role","_key":"4530","_from":"747","_to":"3855"} +{"$label":"ACTS_IN","name":"Homeless Cabaret Singer","type":"Role","_key":"2726","_from":"747","_to":"2363"} +{"$label":"ACTS_IN","name":"Eduard Delacroix","type":"Role","_key":"967","_from":"747","_to":"780"} +{"$label":"ACTS_IN","name":"Wesley - White Team Leader","type":"Role","_key":"114550","_from":"748","_to":"67478"} +{"$label":"ACTS_IN","name":"Jibberish","type":"Role","_key":"59218","_from":"749","_to":"37387"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"23086","_from":"749","_to":"16741"} +{"$label":"ACTS_IN","name":"Olaf","type":"Role","_key":"20306","_from":"749","_to":"14868"} +{"$label":"ACTS_IN","name":"Belinda Ali","type":"Role","_key":"50061","_from":"750","_to":"32759"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"14530","_from":"750","_to":"11201"} +{"$label":"ACTS_IN","name":"Donald Himmel","type":"Role","_key":"113834","_from":"751","_to":"67053"} +{"$label":"ACTS_IN","name":"Pontiac","type":"Role","_key":"121024","_from":"752","_to":"71078"} +{"$label":"ACTS_IN","name":"Mr. Woodson","type":"Role","_key":"89820","_from":"752","_to":"53151"} +{"$label":"ACTS_IN","name":"Mr. Stockton","type":"Role","_key":"26334","_from":"752","_to":"18912"} +{"$label":"ACTS_IN","name":"Roger Rabbit\/Benny The Cab\/Greasy\/Psycho (voice)","type":"Role","_key":"10171","_from":"752","_to":"8126"} +{"$label":"ACTS_IN","name":"Dr. King","type":"Role","_key":"4869","_from":"752","_to":"4159"} +{"$label":"ACTS_IN","name":"Steven Tyler","type":"Role","_key":"105185","_from":"753","_to":"61902"} +{"$label":"ACTS_IN","name":"Steven Tyler","type":"Role","_key":"32577","_from":"753","_to":"22640"} +{"$label":"ACTS_IN","name":"Yrsa","type":"Role","_key":"20300","_from":"754","_to":"14868"} +{"$label":"ACTS_IN","name":"Cille","type":"Role","_key":"20299","_from":"755","_to":"14868"} +{"$label":"ACTS_IN","name":"Congressman","type":"Role","_key":"955","_from":"773","_to":"756"} +{"$label":"ACTS_IN","name":"Henry Hurt","type":"Role","_key":"954","_from":"772","_to":"756"} +{"$label":"ACTS_IN","name":"NASA Director","type":"Role","_key":"953","_from":"771","_to":"756"} +{"$label":"ACTS_IN","name":"Deke Slayton","type":"Role","_key":"952","_from":"770","_to":"756"} +{"$label":"ACTS_IN","name":"Jane Conrad","type":"Role","_key":"951","_from":"769","_to":"756"} +{"$label":"ACTS_IN","name":"Pete Conrad","type":"Role","_key":"950","_from":"768","_to":"756"} +{"$label":"ACTS_IN","name":"Mary Haise","type":"Role","_key":"949","_from":"767","_to":"756"} +{"$label":"ACTS_IN","name":"Blanch Lovell","type":"Role","_key":"948","_from":"766","_to":"756"} +{"$label":"ACTS_IN","name":"Jay Lovell","type":"Role","_key":"947","_from":"765","_to":"756"} +{"$label":"ACTS_IN","name":"Jeffrey Lovell","type":"Role","_key":"946","_from":"764","_to":"756"} +{"$label":"ACTS_IN","name":"Susan Lovell","type":"Role","_key":"945","_from":"763","_to":"756"} +{"$label":"ACTS_IN","name":"Barbara Lovell","type":"Role","_key":"944","_from":"762","_to":"756"} +{"$label":"ACTS_IN","name":"Marilyn Lovell","type":"Role","_key":"943","_from":"761","_to":"756"} +{"$label":"ACTS_IN","name":"Gene Kranz","type":"Role","_key":"942","_from":"760","_to":"756"} +{"$label":"ACTS_IN","name":"Jack Swigert","type":"Role","_key":"940","_from":"759","_to":"756"} +{"$label":"ACTS_IN","name":"Fred Haise","type":"Role","_key":"939","_from":"758","_to":"756"} +{"$label":"DIRECTED","_key":"937","_from":"757","_to":"756"} +{"$label":"ACTS_IN","name":"Sam Freeman","type":"Role","_key":"121043","_from":"757","_to":"71084"} +{"$label":"ACTS_IN","name":"Winthrop Paroo","type":"Role","_key":"95806","_from":"757","_to":"56349"} +{"$label":"ACTS_IN","name":"Gillom Rogers","type":"Role","_key":"90434","_from":"757","_to":"53430"} +{"$label":"ACTS_IN","name":"Steve Bolander","type":"Role","_key":"9891","_from":"757","_to":"7929"} +{"$label":"DIRECTED","_key":"121042","_from":"757","_to":"71084"} +{"$label":"DIRECTED","_key":"101588","_from":"757","_to":"59795"} +{"$label":"DIRECTED","_key":"95935","_from":"757","_to":"56416"} +{"$label":"DIRECTED","_key":"94499","_from":"757","_to":"55655"} +{"$label":"DIRECTED","_key":"89194","_from":"757","_to":"52823"} +{"$label":"DIRECTED","_key":"88293","_from":"757","_to":"52369"} +{"$label":"DIRECTED","_key":"70198","_from":"757","_to":"42781"} +{"$label":"DIRECTED","_key":"69474","_from":"757","_to":"42449"} +{"$label":"DIRECTED","_key":"68841","_from":"757","_to":"42176"} +{"$label":"DIRECTED","_key":"62610","_from":"757","_to":"39390"} +{"$label":"DIRECTED","_key":"51191","_from":"757","_to":"33390"} +{"$label":"DIRECTED","_key":"28268","_from":"757","_to":"20232"} +{"$label":"DIRECTED","_key":"24323","_from":"757","_to":"17621"} +{"$label":"DIRECTED","_key":"22252","_from":"757","_to":"16195"} +{"$label":"DIRECTED","_key":"13741","_from":"757","_to":"10659"} +{"$label":"DIRECTED","_key":"10960","_from":"757","_to":"8677"} +{"$label":"DIRECTED","_key":"10031","_from":"757","_to":"8030"} +{"$label":"DIRECTED","_key":"7088","_from":"757","_to":"5934"} +{"$label":"DIRECTED","_key":"5635","_from":"757","_to":"4805"} +{"$label":"DIRECTED","_key":"104637","_from":"758","_to":"61552"} +{"$label":"DIRECTED","_key":"88309","_from":"758","_to":"52375"} +{"$label":"ACTS_IN","name":"Clyde the Bartender","type":"Role","_key":"101621","_from":"758","_to":"59813"} +{"$label":"ACTS_IN","name":"Jeff Tracy","type":"Role","_key":"101148","_from":"758","_to":"59587"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"98766","_from":"758","_to":"58201"} +{"$label":"ACTS_IN","name":"Colonel John Paul Vann","type":"Role","_key":"97536","_from":"758","_to":"57435"} +{"$label":"ACTS_IN","name":"Dane","type":"Role","_key":"91453","_from":"758","_to":"53931"} +{"$label":"ACTS_IN","name":"Zachary Cody","type":"Role","_key":"90028","_from":"758","_to":"53253"} +{"$label":"ACTS_IN","name":"Father Meiks","type":"Role","_key":"88310","_from":"758","_to":"52375"} +{"$label":"ACTS_IN","name":"Morgan Earp","type":"Role","_key":"73059","_from":"758","_to":"43963"} +{"$label":"ACTS_IN","name":"Severen","type":"Role","_key":"72520","_from":"758","_to":"43745"} +{"$label":"ACTS_IN","name":"Chet Donnelly","type":"Role","_key":"72142","_from":"758","_to":"43605"} +{"$label":"ACTS_IN","name":"Elliot Vaughn","type":"Role","_key":"71513","_from":"758","_to":"43337"} +{"$label":"ACTS_IN","name":"Coconut Pete","type":"Role","_key":"68602","_from":"758","_to":"42057"} +{"$label":"ACTS_IN","name":"Hank Mitchell","type":"Role","_key":"61797","_from":"758","_to":"38904"} +{"$label":"ACTS_IN","name":"Carl Ridley","type":"Role","_key":"57255","_from":"758","_to":"36317"} +{"$label":"ACTS_IN","name":"Gregg O'Hara","type":"Role","_key":"57155","_from":"758","_to":"36271"} +{"$label":"ACTS_IN","name":"Jim Reston","type":"Role","_key":"40193","_from":"758","_to":"27133"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Mike Dahlgren","type":"Role","_key":"27679","_from":"758","_to":"19835"} +{"$label":"ACTS_IN","name":"Private W. Hudson","type":"Role","_key":"8187","_from":"758","_to":"6737"} +{"$label":"ACTS_IN","name":"Bill Harding","type":"Role","_key":"7934","_from":"758","_to":"6576"} +{"$label":"ACTS_IN","name":"Brock Lovett","type":"Role","_key":"7184","_from":"758","_to":"6002"} +{"$label":"ACTS_IN","name":"Punk Leader","type":"Role","_key":"3142","_from":"758","_to":"2686"} +{"$label":"ACTS_IN","name":"Jerry Lambert","type":"Role","_key":"2606","_from":"758","_to":"2274"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"119254","_from":"759","_to":"70069"} +{"$label":"ACTS_IN","name":"Dan Hanson","type":"Role","_key":"114446","_from":"759","_to":"67420"} +{"$label":"ACTS_IN","name":"Jack Morris","type":"Role","_key":"114330","_from":"759","_to":"67342"} +{"$label":"ACTS_IN","name":"Tom Stark","type":"Role","_key":"102685","_from":"759","_to":"60412"} +{"$label":"ACTS_IN","name":"Timothy Fenwick Jr.","type":"Role","_key":"96367","_from":"759","_to":"56647"} +{"$label":"ACTS_IN","name":"Love","type":"Role","_key":"95635","_from":"759","_to":"56251"} +{"$label":"ACTS_IN","name":"Jefferson 'Jake' Edward Briggs","type":"Role","_key":"91197","_from":"759","_to":"53786"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"90363","_from":"759","_to":"53397"} +{"$label":"ACTS_IN","name":"Nick Hume","type":"Role","_key":"72268","_from":"759","_to":"43661"} +{"$label":"ACTS_IN","name":"Tom Witzky","type":"Role","_key":"70993","_from":"759","_to":"43121"} +{"$label":"ACTS_IN","name":"Jack Brennan","type":"Role","_key":"70195","_from":"759","_to":"42781"} +{"$label":"ACTS_IN","name":"Lanny","type":"Role","_key":"56131","_from":"759","_to":"35683"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"55705","_from":"759","_to":"35451"} +{"$label":"ACTS_IN","name":"Sam Mayfair","type":"Role","_key":"53714","_from":"759","_to":"34635"} +{"$label":"ACTS_IN","name":"Sebastian Caine","type":"Role","_key":"53491","_from":"759","_to":"34546"} +{"$label":"ACTS_IN","name":"Valentine McKee","type":"Role","_key":"53358","_from":"759","_to":"34487"} +{"$label":"ACTS_IN","name":"Joe Hickey","type":"Role","_key":"52211","_from":"759","_to":"34015"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"51855","_from":"759","_to":"33833"} +{"$label":"ACTS_IN","name":"Chip Diller","type":"Role","_key":"49978","_from":"759","_to":"32712"} +{"$label":"ACTS_IN","name":"Henri Young","type":"Role","_key":"49766","_from":"759","_to":"32563"} +{"$label":"ACTS_IN","name":"Jack Burrell","type":"Role","_key":"32095","_from":"759","_to":"22359"} +{"$label":"ACTS_IN","name":"Taxi Racer","type":"Role","_key":"22166","_from":"759","_to":"16161"} +{"$label":"ACTS_IN","name":"Ren McCormack","type":"Role","_key":"15531","_from":"759","_to":"11863"} +{"$label":"ACTS_IN","name":"David Labraccio","type":"Role","_key":"13728","_from":"759","_to":"10658"} +{"$label":"ACTS_IN","name":"Capt. Jack Ross","type":"Role","_key":"10483","_from":"759","_to":"8340"} +{"$label":"ACTS_IN","name":"Willie O'Keefe","type":"Role","_key":"9666","_from":"759","_to":"7763"} +{"$label":"ACTS_IN","name":"Sean Nokes","type":"Role","_key":"9647","_from":"759","_to":"7756"} +{"$label":"ACTS_IN","name":"Sergeant Ray Duquette","type":"Role","_key":"7323","_from":"759","_to":"6106"} +{"$label":"ACTS_IN","name":"Sean Devine","type":"Role","_key":"4466","_from":"759","_to":"3810"} +{"$label":"ACTS_IN","name":"Jack Walsh","type":"Role","_key":"116239","_from":"760","_to":"68437"} +{"$label":"ACTS_IN","name":"Hank Blaine (segment \"Father's Day\")","type":"Role","_key":"108478","_from":"760","_to":"64123"} +{"$label":"ACTS_IN","name":"Coach Jones","type":"Role","_key":"97503","_from":"760","_to":"57419"} +{"$label":"ACTS_IN","name":"General Starkey","type":"Role","_key":"94997","_from":"760","_to":"55928"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"94490","_from":"760","_to":"55650"} +{"$label":"ACTS_IN","name":"Eddie Lorenzo","type":"Role","_key":"93605","_from":"760","_to":"55117"} +{"$label":"ACTS_IN","name":"Virgil Cole","type":"Role","_key":"91018","_from":"760","_to":"53708"} +{"$label":"ACTS_IN","name":"Jackson Pollock","type":"Role","_key":"89953","_from":"760","_to":"53218"} +{"$label":"ACTS_IN","name":"Oates","type":"Role","_key":"89921","_from":"760","_to":"53207"} +{"$label":"ACTS_IN","name":"Lester Farley","type":"Role","_key":"66767","_from":"760","_to":"41254"} +{"$label":"ACTS_IN","name":"Sheriff Alan J. Pangborn","type":"Role","_key":"64869","_from":"760","_to":"40346"} +{"$label":"ACTS_IN","name":"Brigadier General Francis X. Hummel, USMC","type":"Role","_key":"56948","_from":"760","_to":"36143"} +{"$label":"ACTS_IN","name":"John Glenn","type":"Role","_key":"54611","_from":"760","_to":"34982"} +{"$label":"ACTS_IN","name":"Dave Moss","type":"Role","_key":"54304","_from":"760","_to":"34857"} +{"$label":"ACTS_IN","name":"Luke Harrison","type":"Role","_key":"53862","_from":"760","_to":"34690"} +{"$label":"ACTS_IN","name":"Colonel Berman","type":"Role","_key":"52580","_from":"760","_to":"34172"} +{"$label":"ACTS_IN","name":"Blair Sullivan","type":"Role","_key":"52343","_from":"760","_to":"34070"} +{"$label":"ACTS_IN","name":"Tom Wheeler","type":"Role","_key":"51846","_from":"760","_to":"33830"} +{"$label":"ACTS_IN","name":"Hotchkiss","type":"Role","_key":"50075","_from":"760","_to":"32761"} +{"$label":"ACTS_IN","name":"Mitch Wilkinson","type":"Role","_key":"44492","_from":"760","_to":"29641"} +{"$label":"ACTS_IN","name":"Detective Remy Bressant","type":"Role","_key":"33906","_from":"760","_to":"23352"} +{"$label":"ACTS_IN","name":"Virgil Brigman","type":"Role","_key":"23299","_from":"760","_to":"16896"} +{"$label":"ACTS_IN","name":"Frankie Flannery","type":"Role","_key":"14768","_from":"760","_to":"11361"} +{"$label":"ACTS_IN","name":"Ludwig van Beethoven","type":"Role","_key":"14082","_from":"760","_to":"10917"} +{"$label":"ACTS_IN","name":"Major K\u00f6nig","type":"Role","_key":"10110","_from":"760","_to":"8094"} +{"$label":"ACTS_IN","name":"Richard Brown","type":"Role","_key":"7084","_from":"760","_to":"5922"} +{"$label":"ACTS_IN","name":"William Parcher","type":"Role","_key":"5637","_from":"760","_to":"4805"} +{"$label":"ACTS_IN","name":"Seth Frank","type":"Role","_key":"1413","_from":"760","_to":"1190"} +{"$label":"ACTS_IN","name":"Carl Fogerty","type":"Role","_key":"1344","_from":"760","_to":"1120"} +{"$label":"DIRECTED","_key":"91016","_from":"760","_to":"53708"} +{"$label":"DIRECTED","_key":"89962","_from":"760","_to":"53218"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"65583","_from":"761","_to":"40642"} +{"$label":"ACTS_IN","name":"Ethel Carter","type":"Role","_key":"56845","_from":"761","_to":"36092"} +{"$label":"ACTS_IN","name":"Peters, Med Tech","type":"Role","_key":"49553","_from":"761","_to":"32447"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"35516","_from":"761","_to":"24147"} +{"$label":"ACTS_IN","name":"Bonnie Hanssen","type":"Role","_key":"29856","_from":"761","_to":"21119"} +{"$label":"ACTS_IN","name":"Amy Taylor","type":"Role","_key":"18834","_from":"761","_to":"13912"} +{"$label":"ACTS_IN","name":"Ellen Grape","type":"Role","_key":"14061","_from":"762","_to":"10899"} +{"$label":"ACTS_IN","name":"Dylan Porter","type":"Role","_key":"70967","_from":"764","_to":"43105"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"50995","_from":"764","_to":"33287"} +{"$label":"ACTS_IN","name":"Jeffrey 'Colt' Douglas","type":"Role","_key":"117945","_from":"765","_to":"69327"} +{"$label":"ACTS_IN","name":"Jeffrey 'Colt' Douglas","type":"Role","_key":"108643","_from":"765","_to":"64208"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"116088","_from":"767","_to":"68357"} +{"$label":"ACTS_IN","name":"Betty 'Betty Spaghetti' Horn - Left Field","type":"Role","_key":"68929","_from":"767","_to":"42198"} +{"$label":"ACTS_IN","name":"John Hall","type":"Role","_key":"119011","_from":"768","_to":"69954"} +{"$label":"ACTS_IN","name":"Sam Treadwell","type":"Role","_key":"105890","_from":"768","_to":"62342"} +{"$label":"ACTS_IN","name":"James Earp","type":"Role","_key":"88368","_from":"768","_to":"52390"} +{"$label":"ACTS_IN","name":"FBI Agent Pearsall","type":"Role","_key":"56221","_from":"768","_to":"35726"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"6563","_from":"768","_to":"5541"} +{"$label":"ACTS_IN","name":"Foreman","type":"Role","_key":"4874","_from":"768","_to":"4159"} +{"$label":"ACTS_IN","name":"Robert Brewster","type":"Role","_key":"4125","_from":"768","_to":"3521"} +{"$label":"ACTS_IN","name":"NSA Director","type":"Role","_key":"120483","_from":"770","_to":"70764"} +{"$label":"ACTS_IN","name":"Principal Turner","type":"Role","_key":"94638","_from":"770","_to":"55757"} +{"$label":"ACTS_IN","name":"Det. Butler","type":"Role","_key":"12502","_from":"770","_to":"9790"} +{"$label":"ACTS_IN","name":"Special Agent Witkins","type":"Role","_key":"7656","_from":"770","_to":"6359"} +{"$label":"ACTS_IN","name":"Col. J.M. Lange","type":"Role","_key":"64352","_from":"771","_to":"40107"} +{"$label":"ACTS_IN","name":"Captain Abel Stenner","type":"Role","_key":"14110","_from":"771","_to":"10931"} +{"$label":"ACTS_IN","name":"Lt. Pierson","type":"Role","_key":"115020","_from":"772","_to":"67722"} +{"$label":"ACTS_IN","name":"Mr. DeMarco","type":"Role","_key":"109477","_from":"772","_to":"64667"} +{"$label":"ACTS_IN","name":"Bowery Snax","type":"Role","_key":"102498","_from":"772","_to":"60305"} +{"$label":"ACTS_IN","name":"Railroad Foreman","type":"Role","_key":"93578","_from":"772","_to":"55109"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"57993","_from":"772","_to":"36693"} +{"$label":"ACTS_IN","name":"Preacher McMahon","type":"Role","_key":"55811","_from":"772","_to":"35512"} +{"$label":"ACTS_IN","name":"Trevor Lyle","type":"Role","_key":"54473","_from":"772","_to":"34925"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"50449","_from":"772","_to":"32952"} +{"$label":"ACTS_IN","name":"Nathan Van Cleef","type":"Role","_key":"50214","_from":"772","_to":"32820"} +{"$label":"ACTS_IN","name":"Blackwell","type":"Role","_key":"44881","_from":"772","_to":"29854"} +{"$label":"ACTS_IN","name":"Judge Moran","type":"Role","_key":"41949","_from":"772","_to":"28107"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30158","_from":"772","_to":"21251"} +{"$label":"ACTS_IN","name":"Capt. Whitaker","type":"Role","_key":"10490","_from":"772","_to":"8340"} +{"$label":"ACTS_IN","name":"Dr. Lamar","type":"Role","_key":"9203","_from":"772","_to":"7439"} +{"$label":"ACTS_IN","name":"Todd Voight","type":"Role","_key":"3975","_from":"772","_to":"3391"} +{"$label":"ACTS_IN","name":"Man in Phone Booth","type":"Role","_key":"69000","_from":"773","_to":"42233"} +{"$label":"ACTS_IN","name":"Hollywood Executive","type":"Role","_key":"30302","_from":"773","_to":"21314"} +{"$label":"ACTS_IN","name":"FBI Director Hayden Burke","type":"Role","_key":"3899","_from":"773","_to":"3326"} +{"$label":"DIRECTED","_key":"25449","_from":"773","_to":"18356"} +{"$label":"DIRECTED","_key":"961","_from":"779","_to":"774"} +{"$label":"ACTS_IN","name":"Joe Mille","type":"Role","_key":"959","_from":"778","_to":"774"} +{"$label":"ACTS_IN","name":"Miguel Alvarez","type":"Role","_key":"958","_from":"777","_to":"774"} +{"$label":"ACTS_IN","name":"Crutches","type":"Role","_key":"957","_from":"776","_to":"774"} +{"$label":"ACTS_IN","name":"Judge Tate","type":"Role","_key":"956","_from":"775","_to":"774"} +{"$label":"ACTS_IN","name":"Mrs. Wheeler","type":"Role","_key":"107207","_from":"775","_to":"63230"} +{"$label":"ACTS_IN","name":"Tracy Venable","type":"Role","_key":"90893","_from":"775","_to":"53624"} +{"$label":"ACTS_IN","name":"Ms. Alimet","type":"Role","_key":"57718","_from":"775","_to":"36527"} +{"$label":"ACTS_IN","name":"Lucille Poncelet","type":"Role","_key":"8283","_from":"775","_to":"6786"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"113321","_from":"777","_to":"66758"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"112125","_from":"777","_to":"66220"} +{"$label":"ACTS_IN","name":"Gabriel Martin","type":"Role","_key":"102625","_from":"777","_to":"60382"} +{"$label":"ACTS_IN","name":"Puss in Boots (voice)","type":"Role","_key":"94279","_from":"777","_to":"55521"} +{"$label":"ACTS_IN","name":"Pierre Dulaine","type":"Role","_key":"91358","_from":"777","_to":"53883"} +{"$label":"ACTS_IN","name":"Gregorio Cortez","type":"Role","_key":"89187","_from":"777","_to":"52822"} +{"$label":"ACTS_IN","name":"Agent Jeremiah Ecks","type":"Role","_key":"64013","_from":"777","_to":"39965"} +{"$label":"ACTS_IN","name":"Puss in Boots (voice)","type":"Role","_key":"61587","_from":"777","_to":"38823"} +{"$label":"ACTS_IN","name":"Gregorio Cortez","type":"Role","_key":"60030","_from":"777","_to":"37889"} +{"$label":"ACTS_IN","name":"Miguel Bain","type":"Role","_key":"55690","_from":"777","_to":"35443"} +{"$label":"ACTS_IN","name":"Gregorio Cortez","type":"Role","_key":"54199","_from":"777","_to":"34817"} +{"$label":"ACTS_IN","name":"Zorro","type":"Role","_key":"53227","_from":"777","_to":"34424"} +{"$label":"ACTS_IN","name":"Nicolas Bardo","type":"Role","_key":"52816","_from":"777","_to":"34249"} +{"$label":"ACTS_IN","name":"Thomas Martins","type":"Role","_key":"52673","_from":"777","_to":"34206"} +{"$label":"ACTS_IN","name":"Ch\u00e9","type":"Role","_key":"50899","_from":"777","_to":"33220"} +{"$label":"ACTS_IN","name":"Sadec","type":"Role","_key":"48513","_from":"777","_to":"31842"} +{"$label":"ACTS_IN","name":"El Mariachi","type":"Role","_key":"48027","_from":"777","_to":"31586"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"47846","_from":"777","_to":"31496"} +{"$label":"ACTS_IN","name":"Alfonso Diaz","type":"Role","_key":"31106","_from":"777","_to":"21771"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"30086","_from":"777","_to":"21209"} +{"$label":"ACTS_IN","name":"Antonio Ben\u00edtez","type":"Role","_key":"29523","_from":"777","_to":"20917"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"21627","_from":"777","_to":"15811"} +{"$label":"ACTS_IN","name":"Pedro Tercero Gareia","type":"Role","_key":"19781","_from":"777","_to":"14606"} +{"$label":"ACTS_IN","name":"Luis Antonio Vargas","type":"Role","_key":"17885","_from":"777","_to":"13313"} +{"$label":"ACTS_IN","name":"Ahmad Ibn Fadl\u0101n","type":"Role","_key":"16510","_from":"777","_to":"12471"} +{"$label":"ACTS_IN","name":"Zorro","type":"Role","_key":"14717","_from":"777","_to":"11325"} +{"$label":"ACTS_IN","name":"El Mariachi","type":"Role","_key":"13229","_from":"777","_to":"10305"} +{"$label":"ACTS_IN","name":"David Alfaro Siqueiros","type":"Role","_key":"12562","_from":"777","_to":"9830"} +{"$label":"ACTS_IN","name":"Puss in Boots (voice)","type":"Role","_key":"9546","_from":"777","_to":"7689"} +{"$label":"ACTS_IN","name":"Puss In Boots (voice)","type":"Role","_key":"9533","_from":"777","_to":"7683"} +{"$label":"ACTS_IN","name":"Armand","type":"Role","_key":"7463","_from":"777","_to":"6216"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"1071","_from":"777","_to":"846"} +{"$label":"ACTS_IN","name":"Walter Garber","type":"Role","_key":"116366","_from":"778","_to":"68507"} +{"$label":"ACTS_IN","name":"Major Bennett Ezekiel Marco","type":"Role","_key":"100438","_from":"778","_to":"59224"} +{"$label":"ACTS_IN","name":"Melvin B. Tolson","type":"Role","_key":"98265","_from":"778","_to":"57887"} +{"$label":"ACTS_IN","name":"Dr. Jerome Davenport","type":"Role","_key":"94466","_from":"778","_to":"55632"} +{"$label":"ACTS_IN","name":"Steve Biko","type":"Role","_key":"89936","_from":"778","_to":"53212"} +{"$label":"ACTS_IN","name":"Don Pedro of Aragon","type":"Role","_key":"73072","_from":"778","_to":"43966"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Nathaniel Serling","type":"Role","_key":"65044","_from":"778","_to":"40418"} +{"$label":"ACTS_IN","name":"Herman Boone","type":"Role","_key":"64761","_from":"778","_to":"40308"} +{"$label":"ACTS_IN","name":"Rubin \"Hurricane\" Carter","type":"Role","_key":"63012","_from":"778","_to":"39551"} +{"$label":"ACTS_IN","name":"Gray Grantham","type":"Role","_key":"58326","_from":"778","_to":"36873"} +{"$label":"ACTS_IN","name":"Anthony Hubbard","type":"Role","_key":"57584","_from":"778","_to":"36470"} +{"$label":"ACTS_IN","name":"Pvt. Trip","type":"Role","_key":"55407","_from":"778","_to":"35321"} +{"$label":"ACTS_IN","name":"Nick Styles","type":"Role","_key":"54590","_from":"778","_to":"34975"} +{"$label":"ACTS_IN","name":"Creasy","type":"Role","_key":"54329","_from":"778","_to":"34865"} +{"$label":"ACTS_IN","name":"Lincoln Rhyme","type":"Role","_key":"54137","_from":"778","_to":"34789"} +{"$label":"ACTS_IN","name":"Jake Shuttlesworth","type":"Role","_key":"54051","_from":"778","_to":"34766"} +{"$label":"ACTS_IN","name":"John Hobbes","type":"Role","_key":"53703","_from":"778","_to":"34632"} +{"$label":"ACTS_IN","name":"Lt. Parker Barnes","type":"Role","_key":"52753","_from":"778","_to":"34229"} +{"$label":"ACTS_IN","name":"Lt. Commander Ron Hunter","type":"Role","_key":"51718","_from":"778","_to":"33747"} +{"$label":"ACTS_IN","name":"Ezekiel 'Easy' Rawlins","type":"Role","_key":"50103","_from":"778","_to":"32780"} +{"$label":"ACTS_IN","name":"John Quincy Archibald","type":"Role","_key":"50016","_from":"778","_to":"32743"} +{"$label":"ACTS_IN","name":"Agent Doug Carlin - ATF","type":"Role","_key":"47183","_from":"778","_to":"31106"} +{"$label":"ACTS_IN","name":"Frank Lucas","type":"Role","_key":"35314","_from":"778","_to":"24057"} +{"$label":"ACTS_IN","name":"Matthias \" Lee \" Whitlock","type":"Role","_key":"18447","_from":"778","_to":"13672"} +{"$label":"ACTS_IN","name":"Alonzo Harris","type":"Role","_key":"17708","_from":"778","_to":"13216"} +{"$label":"ACTS_IN","name":"Malcolm X","type":"Role","_key":"16248","_from":"778","_to":"12327"} +{"$label":"ACTS_IN","name":"Detective Keith Frazier","type":"Role","_key":"4953","_from":"778","_to":"4222"} +{"$label":"DIRECTED","_key":"98273","_from":"778","_to":"57887"} +{"$label":"DIRECTED","_key":"94469","_from":"778","_to":"55632"} +{"$label":"DIRECTED","_key":"116241","_from":"779","_to":"68437"} +{"$label":"DIRECTED","_key":"105416","_from":"779","_to":"62024"} +{"$label":"DIRECTED","_key":"102612","_from":"779","_to":"60375"} +{"$label":"DIRECTED","_key":"100449","_from":"779","_to":"59224"} +{"$label":"DIRECTED","_key":"94481","_from":"779","_to":"55646"} +{"$label":"DIRECTED","_key":"69013","_from":"779","_to":"42244"} +{"$label":"DIRECTED","_key":"20393","_from":"779","_to":"14933"} +{"$label":"DIRECTED","_key":"3908","_from":"779","_to":"3326"} +{"$label":"ACTS_IN","name":"Dean Stanton","type":"Role","_key":"975","_from":"791","_to":"780"} +{"$label":"ACTS_IN","name":"Warden Hal Moores","type":"Role","_key":"974","_from":"790","_to":"780"} +{"$label":"ACTS_IN","name":"'Wild Bill' Wharton","type":"Role","_key":"973","_from":"789","_to":"780"} +{"$label":"ACTS_IN","name":"Percy Wetmore","type":"Role","_key":"972","_from":"788","_to":"780"} +{"$label":"ACTS_IN","name":"Old Paul Edgecomb","type":"Role","_key":"970","_from":"787","_to":"780"} +{"$label":"ACTS_IN","name":"Melinda Moores","type":"Role","_key":"969","_from":"786","_to":"780"} +{"$label":"ACTS_IN","name":"Arlen Bitterbuck","type":"Role","_key":"968","_from":"785","_to":"780"} +{"$label":"ACTS_IN","name":"Brutus \"Brutal\" Howell","type":"Role","_key":"966","_from":"784","_to":"780"} +{"$label":"ACTS_IN","name":"Jan Edgecomb","type":"Role","_key":"965","_from":"783","_to":"780"} +{"$label":"ACTS_IN","name":"John Coffey","type":"Role","_key":"964","_from":"782","_to":"780"} +{"$label":"DIRECTED","_key":"962","_from":"781","_to":"780"} +{"$label":"DIRECTED","_key":"67803","_from":"781","_to":"41672"} +{"$label":"DIRECTED","_key":"40033","_from":"781","_to":"27031"} +{"$label":"DIRECTED","_key":"3944","_from":"781","_to":"3372"} +{"$label":"ACTS_IN","name":"Balrog","type":"Role","_key":"103804","_from":"782","_to":"61054"} +{"$label":"ACTS_IN","name":"Spinks","type":"Role","_key":"100649","_from":"782","_to":"59348"} +{"$label":"ACTS_IN","name":"Sheriff Otis Jenkins","type":"Role","_key":"94783","_from":"782","_to":"55823"} +{"$label":"ACTS_IN","name":"Craps Player","type":"Role","_key":"64749","_from":"782","_to":"40300"} +{"$label":"ACTS_IN","name":"Tug","type":"Role","_key":"59408","_from":"782","_to":"37525"} +{"$label":"ACTS_IN","name":"Tug","type":"Role","_key":"59379","_from":"782","_to":"37511"} +{"$label":"ACTS_IN","name":"The Wolf","type":"Role","_key":"58780","_from":"782","_to":"37126"} +{"$label":"ACTS_IN","name":"Lesher","type":"Role","_key":"57406","_from":"782","_to":"36396"} +{"$label":"ACTS_IN","name":"Lucius Washington","type":"Role","_key":"55968","_from":"782","_to":"35579"} +{"$label":"ACTS_IN","name":"Wilson Fisk \/ The Kingpin","type":"Role","_key":"54131","_from":"782","_to":"34788"} +{"$label":"ACTS_IN","name":"T\u00fcrsteher in Roxbury","type":"Role","_key":"53804","_from":"782","_to":"34666"} +{"$label":"ACTS_IN","name":"Balthazar","type":"Role","_key":"53174","_from":"782","_to":"34399"} +{"$label":"ACTS_IN","name":"The General","type":"Role","_key":"46321","_from":"782","_to":"30610"} +{"$label":"ACTS_IN","name":"Tarik","type":"Role","_key":"37501","_from":"782","_to":"25416"} +{"$label":"ACTS_IN","name":"Nathanial Broadman","type":"Role","_key":"19907","_from":"782","_to":"14659"} +{"$label":"ACTS_IN","name":"Franklin \"Frankie Figs\" Figueroa","type":"Role","_key":"17990","_from":"782","_to":"13374"} +{"$label":"ACTS_IN","name":"Starkweather","type":"Role","_key":"14487","_from":"782","_to":"11190"} +{"$label":"ACTS_IN","name":"Attar","type":"Role","_key":"10339","_from":"782","_to":"8229"} +{"$label":"ACTS_IN","name":"Mr. Phipps","type":"Role","_key":"6452","_from":"782","_to":"5457"} +{"$label":"ACTS_IN","name":"Manute","type":"Role","_key":"5756","_from":"782","_to":"4890"} +{"$label":"ACTS_IN","name":"Manute","type":"Role","_key":"2860","_from":"782","_to":"2463"} +{"$label":"ACTS_IN","name":"Manute","type":"Role","_key":"2842","_from":"782","_to":"2450"} +{"$label":"ACTS_IN","name":"Jayotis 'Bear' Kurleenbear","type":"Role","_key":"1767","_from":"782","_to":"1527"} +{"$label":"ACTS_IN","name":"Sally Carrera","type":"Role","_key":"97560","_from":"783","_to":"57452"} +{"$label":"ACTS_IN","name":"Stella Lewis","type":"Role","_key":"92300","_from":"783","_to":"54471"} +{"$label":"ACTS_IN","name":"Wendy Judd","type":"Role","_key":"90639","_from":"783","_to":"53520"} +{"$label":"ACTS_IN","name":"Alice Newton","type":"Role","_key":"72090","_from":"783","_to":"43579"} +{"$label":"ACTS_IN","name":"White House Tour Guide","type":"Role","_key":"70711","_from":"783","_to":"43007"} +{"$label":"ACTS_IN","name":"Kate Baker","type":"Role","_key":"67241","_from":"783","_to":"41460"} +{"$label":"ACTS_IN","name":"Alice Newton","type":"Role","_key":"63359","_from":"783","_to":"39705"} +{"$label":"ACTS_IN","name":"Purple-haired doll (voice)","type":"Role","_key":"61606","_from":"783","_to":"38829"} +{"$label":"ACTS_IN","name":"Kate Baker","type":"Role","_key":"55220","_from":"783","_to":"35229"} +{"$label":"ACTS_IN","name":"Rosie (voice)","type":"Role","_key":"54191","_from":"783","_to":"34813"} +{"$label":"ACTS_IN","name":"Mrs. DeWitt, Chrissy's Mom","type":"Role","_key":"52691","_from":"783","_to":"34207"} +{"$label":"ACTS_IN","name":"Kate Corvatch","type":"Role","_key":"52319","_from":"783","_to":"34060"} +{"$label":"ACTS_IN","name":"Sarah Whittle","type":"Role","_key":"51042","_from":"783","_to":"33309"} +{"$label":"ACTS_IN","name":"Megan Dayton","type":"Role","_key":"22270","_from":"783","_to":"16204"} +{"$label":"ACTS_IN","name":"Sally Carrera (voice)","type":"Role","_key":"10934","_from":"783","_to":"8670"} +{"$label":"ACTS_IN","name":"Flint","type":"Role","_key":"7023","_from":"783","_to":"5882"} +{"$label":"ACTS_IN","name":"Sally Dibbs","type":"Role","_key":"4910","_from":"783","_to":"4182"} +{"$label":"DIRECTED","_key":"22264","_from":"783","_to":"16204"} +{"$label":"ACTS_IN","name":"Daddy","type":"Role","_key":"102282","_from":"784","_to":"60182"} +{"$label":"ACTS_IN","name":"Edgar Clenteen","type":"Role","_key":"101828","_from":"784","_to":"59933"} +{"$label":"ACTS_IN","name":"Arkin","type":"Role","_key":"97667","_from":"784","_to":"57513"} +{"$label":"ACTS_IN","name":"Palmer","type":"Role","_key":"91930","_from":"784","_to":"54232"} +{"$label":"ACTS_IN","name":"Col. Reed","type":"Role","_key":"88394","_from":"784","_to":"52392"} +{"$label":"ACTS_IN","name":"Peter Bowman","type":"Role","_key":"73143","_from":"784","_to":"43989"} +{"$label":"ACTS_IN","name":"Captain Brian Engle","type":"Role","_key":"73007","_from":"784","_to":"43937"} +{"$label":"ACTS_IN","name":"Luke \/ Daedalus","type":"Role","_key":"69694","_from":"784","_to":"42545"} +{"$label":"ACTS_IN","name":"FBI Agent Frank Hare","type":"Role","_key":"69046","_from":"784","_to":"42264"} +{"$label":"ACTS_IN","name":"Major Tom Baxter","type":"Role","_key":"56950","_from":"784","_to":"36143"} +{"$label":"ACTS_IN","name":"Cdr. Adam Beck","type":"Role","_key":"55161","_from":"784","_to":"35201"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"52763","_from":"784","_to":"34232"} +{"$label":"ACTS_IN","name":"Robert Turner","type":"Role","_key":"48693","_from":"784","_to":"31943"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"47444","_from":"784","_to":"31257"} +{"$label":"ACTS_IN","name":"Frank Nugent","type":"Role","_key":"19187","_from":"784","_to":"14181"} +{"$label":"ACTS_IN","name":"Jim Deer Jackson","type":"Role","_key":"18182","_from":"784","_to":"13490"} +{"$label":"ACTS_IN","name":"Shoe Store Cop","type":"Role","_key":"15587","_from":"784","_to":"11884"} +{"$label":"ACTS_IN","name":"Ted Arroway","type":"Role","_key":"8267","_from":"784","_to":"6784"} +{"$label":"ACTS_IN","name":"Dr. Peters","type":"Role","_key":"1369","_from":"784","_to":"1144"} +{"$label":"ACTS_IN","name":"Bill Houston","type":"Role","_key":"1146","_from":"784","_to":"926"} +{"$label":"ACTS_IN","name":"Harry Clearwater","type":"Role","_key":"115507","_from":"785","_to":"67997"} +{"$label":"ACTS_IN","name":"Joe Menzies","type":"Role","_key":"113334","_from":"785","_to":"66763"} +{"$label":"ACTS_IN","name":"Henry Sanipass","type":"Role","_key":"103512","_from":"785","_to":"60898"} +{"$label":"ACTS_IN","name":"Ongwata","type":"Role","_key":"91105","_from":"785","_to":"53749"} +{"$label":"ACTS_IN","name":"Walter Crow Horse","type":"Role","_key":"89293","_from":"785","_to":"52863"} +{"$label":"ACTS_IN","name":"Jim Burns","type":"Role","_key":"66690","_from":"785","_to":"41203"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"53340","_from":"785","_to":"34482"} +{"$label":"ACTS_IN","name":"Joe Lambert","type":"Role","_key":"13903","_from":"785","_to":"10792"} +{"$label":"ACTS_IN","name":"Kicking Bird","type":"Role","_key":"6953","_from":"785","_to":"5833"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"6506","_from":"785","_to":"5505"} +{"$label":"ACTS_IN","name":"Marietta","type":"Role","_key":"119438","_from":"786","_to":"70168"} +{"$label":"ACTS_IN","name":"Miss Dodger","type":"Role","_key":"118635","_from":"786","_to":"69753"} +{"$label":"ACTS_IN","name":"Lois","type":"Role","_key":"107813","_from":"786","_to":"63672"} +{"$label":"ACTS_IN","name":"Patty Brooks","type":"Role","_key":"99490","_from":"786","_to":"58650"} +{"$label":"ACTS_IN","name":"Carolyn","type":"Role","_key":"71456","_from":"786","_to":"43319"} +{"$label":"ACTS_IN","name":"Rachel 2","type":"Role","_key":"69143","_from":"786","_to":"42293"} +{"$label":"ACTS_IN","name":"Eleanor Fine","type":"Role","_key":"65200","_from":"786","_to":"40492"} +{"$label":"ACTS_IN","name":"Samantha Walker","type":"Role","_key":"64836","_from":"786","_to":"40334"} +{"$label":"ACTS_IN","name":"Rosalind","type":"Role","_key":"52664","_from":"786","_to":"34200"} +{"$label":"ACTS_IN","name":"Carol Anne Parrish","type":"Role","_key":"51043","_from":"786","_to":"33309"} +{"$label":"ACTS_IN","name":"Pat Allen","type":"Role","_key":"47959","_from":"786","_to":"31551"} +{"$label":"ACTS_IN","name":"Margaret White","type":"Role","_key":"46525","_from":"786","_to":"30733"} +{"$label":"ACTS_IN","name":"Mrs. Traverse","type":"Role","_key":"45251","_from":"786","_to":"30031"} +{"$label":"ACTS_IN","name":"Dr. Dagmar Berman","type":"Role","_key":"44320","_from":"786","_to":"29535"} +{"$label":"ACTS_IN","name":"Margaret Larsen","type":"Role","_key":"40713","_from":"786","_to":"27400"} +{"$label":"ACTS_IN","name":"Judy Nash","type":"Role","_key":"35595","_from":"786","_to":"24189"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"28397","_from":"786","_to":"20316"} +{"$label":"ACTS_IN","name":"Shirley Wershba","type":"Role","_key":"26766","_from":"786","_to":"19236"} +{"$label":"ACTS_IN","name":"Olivia Harris","type":"Role","_key":"17874","_from":"786","_to":"13303"} +{"$label":"ACTS_IN","name":"Sadie Burke","type":"Role","_key":"15189","_from":"786","_to":"11636"} +{"$label":"ACTS_IN","name":"Joy Burns","type":"Role","_key":"13718","_from":"786","_to":"10650"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"9739","_from":"786","_to":"7817"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"6607","_from":"786","_to":"5579"} +{"$label":"ACTS_IN","name":"Catherine Ness","type":"Role","_key":"2037","_from":"786","_to":"1772"} +{"$label":"ACTS_IN","name":"Otto Trotsberg","type":"Role","_key":"107628","_from":"787","_to":"63525"} +{"$label":"ACTS_IN","name":"Arthur Nielsen","type":"Role","_key":"18257","_from":"787","_to":"13541"} +{"$label":"ACTS_IN","name":"Henry Victor","type":"Role","_key":"106099","_from":"788","_to":"62481"} +{"$label":"ACTS_IN","name":"Loony Bin Jim","type":"Role","_key":"92230","_from":"788","_to":"54425"} +{"$label":"ACTS_IN","name":"Hoop","type":"Role","_key":"17522","_from":"788","_to":"13100"} +{"$label":"ACTS_IN","name":"Darwin the Guinea Pig (voice)","type":"Role","_key":"120466","_from":"789","_to":"70764"} +{"$label":"ACTS_IN","name":"Sam Bell","type":"Role","_key":"112210","_from":"789","_to":"66267"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"107597","_from":"789","_to":"63517"} +{"$label":"ACTS_IN","name":"Glenn Marchand","type":"Role","_key":"98313","_from":"789","_to":"57907"} +{"$label":"ACTS_IN","name":"Victor Mancini","type":"Role","_key":"97910","_from":"789","_to":"57666"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"91463","_from":"789","_to":"53932"} +{"$label":"ACTS_IN","name":"James Reston Jr.","type":"Role","_key":"70196","_from":"789","_to":"42781"} +{"$label":"ACTS_IN","name":"Jimmy Silk","type":"Role","_key":"67812","_from":"789","_to":"41677"} +{"$label":"ACTS_IN","name":"Justin Hammer","type":"Role","_key":"61173","_from":"789","_to":"38656"} +{"$label":"ACTS_IN","name":"Pero","type":"Role","_key":"52660","_from":"789","_to":"34200"} +{"$label":"ACTS_IN","name":"Zaphod Beeblebrox","type":"Role","_key":"46725","_from":"789","_to":"30837"} +{"$label":"ACTS_IN","name":"Frank Mercer","type":"Role","_key":"46137","_from":"789","_to":"30486"} +{"$label":"ACTS_IN","name":"Brad Cairn","type":"Role","_key":"40722","_from":"789","_to":"27403"} +{"$label":"ACTS_IN","name":"Chuck Barris","type":"Role","_key":"34723","_from":"789","_to":"23746"} +{"$label":"ACTS_IN","name":"Charley Ford","type":"Role","_key":"32203","_from":"789","_to":"22448"} +{"$label":"ACTS_IN","name":"Eric Knox","type":"Role","_key":"31001","_from":"789","_to":"21713"} +{"$label":"ACTS_IN","name":"Guy Fleegman","type":"Role","_key":"11030","_from":"789","_to":"8725"} +{"$label":"ACTS_IN","name":"Canter","type":"Role","_key":"121605","_from":"790","_to":"71444"} +{"$label":"ACTS_IN","name":"Ray Speight","type":"Role","_key":"104427","_from":"790","_to":"61430"} +{"$label":"ACTS_IN","name":"Walter \"Shep\" Shepherd","type":"Role","_key":"101465","_from":"790","_to":"59724"} +{"$label":"ACTS_IN","name":"Mr. Skolnick","type":"Role","_key":"98307","_from":"790","_to":"57901"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"94259","_from":"790","_to":"55508"} +{"$label":"ACTS_IN","name":"George Herbert Walker Bush","type":"Role","_key":"63833","_from":"790","_to":"39901"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"58274","_from":"790","_to":"36848"} +{"$label":"ACTS_IN","name":"Mr. M\u00fcller","type":"Role","_key":"57514","_from":"790","_to":"36442"} +{"$label":"ACTS_IN","name":"Farmer Arthur Hoggett","type":"Role","_key":"54937","_from":"790","_to":"35123"} +{"$label":"ACTS_IN","name":"Farmer Arthur Hoggett","type":"Role","_key":"53926","_from":"790","_to":"34703"} +{"$label":"ACTS_IN","name":"Warden Hazen","type":"Role","_key":"52930","_from":"790","_to":"34291"} +{"$label":"ACTS_IN","name":"William Donohue","type":"Role","_key":"52724","_from":"790","_to":"34221"} +{"$label":"ACTS_IN","name":"The Colonel","type":"Role","_key":"52068","_from":"790","_to":"33949"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"41392","_from":"790","_to":"27822"} +{"$label":"ACTS_IN","name":"Bob Gerson","type":"Role","_key":"37811","_from":"790","_to":"25635"} +{"$label":"ACTS_IN","name":"President Robert Bob Fowler","type":"Role","_key":"33002","_from":"790","_to":"22881"} +{"$label":"ACTS_IN","name":"Mr. Austen","type":"Role","_key":"24620","_from":"790","_to":"17810"} +{"$label":"ACTS_IN","name":"Cap. Dudley Liam Smith","type":"Role","_key":"18472","_from":"790","_to":"13688"} +{"$label":"ACTS_IN","name":"Cage","type":"Role","_key":"18194","_from":"790","_to":"13492"} +{"$label":"ACTS_IN","name":"Dr. Alfred Lanning","type":"Role","_key":"17837","_from":"790","_to":"13287"} +{"$label":"ACTS_IN","name":"The Priest","type":"Role","_key":"17564","_from":"790","_to":"13126"} +{"$label":"ACTS_IN","name":"Charles Keating","type":"Role","_key":"14453","_from":"790","_to":"11171"} +{"$label":"ACTS_IN","name":"Prince Philip","type":"Role","_key":"12146","_from":"790","_to":"9522"} +{"$label":"ACTS_IN","name":"Captain Stacey","type":"Role","_key":"6692","_from":"790","_to":"5637"} +{"$label":"ACTS_IN","name":"Dr. Zefram Cochrane","type":"Role","_key":"2961","_from":"790","_to":"2546"} +{"$label":"ACTS_IN","name":"Charlie Halliday","type":"Role","_key":"101463","_from":"791","_to":"59724"} +{"$label":"ACTS_IN","name":"Joe Galloway","type":"Role","_key":"64308","_from":"791","_to":"40088"} +{"$label":"ACTS_IN","name":"Rancher Shirt","type":"Role","_key":"57211","_from":"791","_to":"36289"} +{"$label":"ACTS_IN","name":"Mike Norton","type":"Role","_key":"47889","_from":"791","_to":"31514"} +{"$label":"ACTS_IN","name":"Matty Demaret","type":"Role","_key":"46897","_from":"791","_to":"30925"} +{"$label":"ACTS_IN","name":"Jonnie Goodboy Tyler","type":"Role","_key":"37466","_from":"791","_to":"25390"} +{"$label":"ACTS_IN","name":"Sergeant Mike Strank","type":"Role","_key":"28504","_from":"791","_to":"20373"} +{"$label":"ACTS_IN","name":"Funker Harold G. Bride","type":"Role","_key":"22794","_from":"791","_to":"16516"} +{"$label":"ACTS_IN","name":"Frank Slaughtery","type":"Role","_key":"13241","_from":"791","_to":"10307"} +{"$label":"ACTS_IN","name":"Private Daniel Jackson","type":"Role","_key":"10186","_from":"791","_to":"8132"} +{"$label":"ACTS_IN","name":"Mathilda's Father","type":"Role","_key":"985","_from":"801","_to":"792"} +{"$label":"ACTS_IN","name":"3 rd Stansfield man","type":"Role","_key":"984","_from":"800","_to":"792"} +{"$label":"ACTS_IN","name":"2nd Stansfield man","type":"Role","_key":"983","_from":"799","_to":"792"} +{"$label":"ACTS_IN","name":"1st Stansfield man","type":"Role","_key":"982","_from":"798","_to":"792"} +{"$label":"ACTS_IN","name":"Malky","type":"Role","_key":"981","_from":"797","_to":"792"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"980","_from":"796","_to":"792"} +{"$label":"ACTS_IN","name":"Stansfield","type":"Role","_key":"979","_from":"795","_to":"792"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"977","_from":"794","_to":"792"} +{"$label":"DIRECTED","_key":"976","_from":"793","_to":"792"} +{"$label":"DIRECTED","_key":"119128","_from":"793","_to":"70017"} +{"$label":"DIRECTED","_key":"104521","_from":"793","_to":"61482"} +{"$label":"DIRECTED","_key":"68669","_from":"793","_to":"42085"} +{"$label":"DIRECTED","_key":"64867","_from":"793","_to":"40345"} +{"$label":"DIRECTED","_key":"59896","_from":"793","_to":"37823"} +{"$label":"DIRECTED","_key":"59101","_from":"793","_to":"37311"} +{"$label":"DIRECTED","_key":"53128","_from":"793","_to":"34371"} +{"$label":"DIRECTED","_key":"2690","_from":"793","_to":"2335"} +{"$label":"DIRECTED","_key":"1173","_from":"793","_to":"953"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"121411","_from":"794","_to":"71336"} +{"$label":"ACTS_IN","name":"The Brute","type":"Role","_key":"119129","_from":"794","_to":"70017"} +{"$label":"ACTS_IN","name":"F\u00e9lix","type":"Role","_key":"115758","_from":"794","_to":"68156"} +{"$label":"ACTS_IN","name":"Milo Malakian","type":"Role","_key":"105252","_from":"794","_to":"61942"} +{"$label":"ACTS_IN","name":"Ponton","type":"Role","_key":"103424","_from":"794","_to":"60838"} +{"$label":"ACTS_IN","name":"Thibault","type":"Role","_key":"101750","_from":"794","_to":"59883"} +{"$label":"ACTS_IN","name":"Maxime - Dubreuil","type":"Role","_key":"95703","_from":"794","_to":"56295"} +{"$label":"ACTS_IN","name":"Gendarme Gilbert Ponton","type":"Role","_key":"88000","_from":"794","_to":"52246"} +{"$label":"ACTS_IN","name":"Godefroy de Papincourt","type":"Role","_key":"71569","_from":"794","_to":"43356"} +{"$label":"ACTS_IN","name":"Le Frog","type":"Role","_key":"71089","_from":"794","_to":"43161"} +{"$label":"ACTS_IN","name":"Alexi Petrovich","type":"Role","_key":"70486","_from":"794","_to":"42911"} +{"$label":"ACTS_IN","name":"Fuad","type":"Role","_key":"66187","_from":"794","_to":"40934"} +{"$label":"ACTS_IN","name":"Jean-Louis Schiffer","type":"Role","_key":"65876","_from":"794","_to":"40763"} +{"$label":"ACTS_IN","name":"Drummer","type":"Role","_key":"64866","_from":"794","_to":"40345"} +{"$label":"ACTS_IN","name":"Godefroy de Papincourt","type":"Role","_key":"62744","_from":"794","_to":"39445"} +{"$label":"ACTS_IN","name":"Capt. Thenault","type":"Role","_key":"55404","_from":"794","_to":"35310"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"53127","_from":"794","_to":"34371"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"48317","_from":"794","_to":"31733"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"46031","_from":"794","_to":"30419"} +{"$label":"ACTS_IN","name":"Quinn","type":"Role","_key":"32936","_from":"794","_to":"22843"} +{"$label":"ACTS_IN","name":"Commissaire Niemans","type":"Role","_key":"29172","_from":"794","_to":"20776"} +{"$label":"ACTS_IN","name":"Commissaire Niemans","type":"Role","_key":"29164","_from":"794","_to":"20772"} +{"$label":"ACTS_IN","name":"Hubert Fiorentini","type":"Role","_key":"18398","_from":"794","_to":"13641"} +{"$label":"ACTS_IN","name":"Franz Krieger","type":"Role","_key":"11374","_from":"794","_to":"8963"} +{"$label":"ACTS_IN","name":"Philippe Roach\u00e9","type":"Role","_key":"11073","_from":"794","_to":"8755"} +{"$label":"ACTS_IN","name":"Bezu Face","type":"Role","_key":"7096","_from":"794","_to":"5934"} +{"$label":"ACTS_IN","name":"Inspector Jean-Paul Cardon","type":"Role","_key":"5044","_from":"794","_to":"4289"} +{"$label":"ACTS_IN","name":"Sabena Airlines President, Mr. Tillens","type":"Role","_key":"2999","_from":"794","_to":"2567"} +{"$label":"ACTS_IN","name":"Enzo Molinari","type":"Role","_key":"2692","_from":"794","_to":"2335"} +{"$label":"ACTS_IN","name":"Lynch","type":"Role","_key":"118575","_from":"795","_to":"69721"} +{"$label":"ACTS_IN","name":"Rosencrantz","type":"Role","_key":"118312","_from":"795","_to":"69547"} +{"$label":"ACTS_IN","name":"Tiny Tim","type":"Role","_key":"114558","_from":"795","_to":"67487"} +{"$label":"ACTS_IN","name":"Bex Bissell","type":"Role","_key":"111809","_from":"795","_to":"66002"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"110241","_from":"795","_to":"65161"} +{"$label":"ACTS_IN","name":"Sid Vicious","type":"Role","_key":"102493","_from":"795","_to":"60305"} +{"$label":"ACTS_IN","name":"Rabbi Sendak","type":"Role","_key":"96642","_from":"795","_to":"56839"} +{"$label":"ACTS_IN","name":"Ludwig van Beethoven","type":"Role","_key":"95977","_from":"795","_to":"56429"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"90962","_from":"795","_to":"53668"} +{"$label":"ACTS_IN","name":"Sirius Black","type":"Role","_key":"89544","_from":"795","_to":"52997"} +{"$label":"ACTS_IN","name":"Rev. Arthur Dimmesdale","type":"Role","_key":"63898","_from":"795","_to":"39922"} +{"$label":"ACTS_IN","name":"Ivan Korshunov","type":"Role","_key":"56509","_from":"795","_to":"35891"} +{"$label":"ACTS_IN","name":"Mason Verger","type":"Role","_key":"56219","_from":"795","_to":"35726"} +{"$label":"ACTS_IN","name":"Glenn","type":"Role","_key":"49767","_from":"795","_to":"32563"} +{"$label":"ACTS_IN","name":"Rolfe","type":"Role","_key":"49035","_from":"795","_to":"32132"} +{"$label":"ACTS_IN","name":"Sheldon Runyon","type":"Role","_key":"43873","_from":"795","_to":"29296"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"41765","_from":"795","_to":"28027"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"20456","_from":"795","_to":"14968"} +{"$label":"ACTS_IN","name":"Spider Smith","type":"Role","_key":"18791","_from":"795","_to":"13892"} +{"$label":"ACTS_IN","name":"Jack Grimaldi","type":"Role","_key":"18186","_from":"795","_to":"13492"} +{"$label":"ACTS_IN","name":"Jackie Flannery","type":"Role","_key":"14767","_from":"795","_to":"11361"} +{"$label":"ACTS_IN","name":"Lee Harvey Oswald","type":"Role","_key":"9665","_from":"795","_to":"7763"} +{"$label":"ACTS_IN","name":"Sirius Black","type":"Role","_key":"8114","_from":"795","_to":"6687"} +{"$label":"ACTS_IN","name":"Sirius Black","type":"Role","_key":"8089","_from":"795","_to":"6682"} +{"$label":"ACTS_IN","name":"Sirius Black","type":"Role","_key":"8063","_from":"795","_to":"6676"} +{"$label":"ACTS_IN","name":"Albert Milo","type":"Role","_key":"6549","_from":"795","_to":"5534"} +{"$label":"ACTS_IN","name":"Drexl Spivey","type":"Role","_key":"4431","_from":"795","_to":"3783"} +{"$label":"ACTS_IN","name":"Jim Gordon","type":"Role","_key":"3865","_from":"795","_to":"3310"} +{"$label":"ACTS_IN","name":"James Gordon","type":"Role","_key":"2405","_from":"795","_to":"2110"} +{"$label":"ACTS_IN","name":"Jean-Baptiste Emmanuel Zorg","type":"Role","_key":"1176","_from":"795","_to":"953"} +{"$label":"ACTS_IN","name":"Vickers","type":"Role","_key":"116438","_from":"796","_to":"68533"} +{"$label":"ACTS_IN","name":"Phil Harper","type":"Role","_key":"111690","_from":"796","_to":"65944"} +{"$label":"ACTS_IN","name":"Frank Anselmo","type":"Role","_key":"67637","_from":"796","_to":"41624"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"66207","_from":"796","_to":"40960"} +{"$label":"ACTS_IN","name":"Dosmo Pizzo","type":"Role","_key":"53649","_from":"796","_to":"34605"} +{"$label":"ACTS_IN","name":"Tommy Five-Tone","type":"Role","_key":"52935","_from":"796","_to":"34303"} +{"$label":"ACTS_IN","name":"Phil Cantone","type":"Role","_key":"52475","_from":"796","_to":"34138"} +{"$label":"ACTS_IN","name":"Major Hamilton","type":"Role","_key":"28172","_from":"796","_to":"20177"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"20092","_from":"796","_to":"14770"} +{"$label":"ACTS_IN","name":"John Cammareri","type":"Role","_key":"17768","_from":"796","_to":"13252"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"11011","_from":"796","_to":"8717"} +{"$label":"ACTS_IN","name":"Police Chief Vincent Aiello","type":"Role","_key":"4316","_from":"796","_to":"3671"} +{"$label":"ACTS_IN","name":"Boyfriend","type":"Role","_key":"9661","_from":"797","_to":"7756"} +{"$label":"ACTS_IN","name":"Colonel Jenkins","type":"Role","_key":"26783","_from":"799","_to":"19236"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"65712","_from":"801","_to":"40695"} +{"$label":"ACTS_IN","name":"Joey Props","type":"Role","_key":"56018","_from":"801","_to":"35606"} +{"$label":"ACTS_IN","name":"George Nelson","type":"Role","_key":"2150","_from":"801","_to":"1879"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"1005","_from":"819","_to":"802"} +{"$label":"ACTS_IN","name":"The Ring (voice)","type":"Role","_key":"1004","_from":"818","_to":"802"} +{"$label":"ACTS_IN","name":"Sauron","type":"Role","_key":"1003","_from":"817","_to":"802"} +{"$label":"ACTS_IN","name":"Lurtz","type":"Role","_key":"1002","_from":"816","_to":"802"} +{"$label":"ACTS_IN","name":"Haldir","type":"Role","_key":"1001","_from":"815","_to":"802"} +{"$label":"ACTS_IN","name":"Bilbo Baggins","type":"Role","_key":"1000","_from":"814","_to":"802"} +{"$label":"ACTS_IN","name":"Galadriel","type":"Role","_key":"999","_from":"813","_to":"802"} +{"$label":"ACTS_IN","name":"Meriadoc 'Merry' Brandybuck","type":"Role","_key":"997","_from":"812","_to":"802"} +{"$label":"ACTS_IN","name":"Peregrin 'Pippin' Took","type":"Role","_key":"996","_from":"811","_to":"802"} +{"$label":"ACTS_IN","name":"Samwise 'Sam' Gamgee","type":"Role","_key":"995","_from":"810","_to":"802"} +{"$label":"ACTS_IN","name":"Boromir","type":"Role","_key":"993","_from":"809","_to":"802"} +{"$label":"ACTS_IN","name":"Gimli","type":"Role","_key":"992","_from":"808","_to":"802"} +{"$label":"ACTS_IN","name":"Arwen Evenstar","type":"Role","_key":"990","_from":"807","_to":"802"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"989","_from":"806","_to":"802"} +{"$label":"ACTS_IN","name":"Gandalf the Grey","type":"Role","_key":"988","_from":"805","_to":"802"} +{"$label":"ACTS_IN","name":"Frodo Baggins","type":"Role","_key":"987","_from":"804","_to":"802"} +{"$label":"DIRECTED","_key":"986","_from":"803","_to":"802"} +{"$label":"DIRECTED","_key":"65718","_from":"803","_to":"40696"} +{"$label":"DIRECTED","_key":"58636","_from":"803","_to":"37047"} +{"$label":"DIRECTED","_key":"48480","_from":"803","_to":"31825"} +{"$label":"DIRECTED","_key":"47621","_from":"803","_to":"31382"} +{"$label":"DIRECTED","_key":"11803","_from":"803","_to":"9260"} +{"$label":"DIRECTED","_key":"8954","_from":"803","_to":"7263"} +{"$label":"DIRECTED","_key":"3668","_from":"803","_to":"3147"} +{"$label":"DIRECTED","_key":"1026","_from":"803","_to":"826"} +{"$label":"DIRECTED","_key":"1006","_from":"803","_to":"820"} +{"$label":"ACTS_IN","name":"Derek \/ Robert","type":"Role","_key":"58641","_from":"803","_to":"37047"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"33125","_from":"803","_to":"22937"} +{"$label":"ACTS_IN","name":"Mercenary On Boat","type":"Role","_key":"1048","_from":"803","_to":"826"} +{"$label":"ACTS_IN","name":"Stu Simmons","type":"Role","_key":"121315","_from":"804","_to":"71281"} +{"$label":"ACTS_IN","name":"Aaron Feller","type":"Role","_key":"106687","_from":"804","_to":"62873"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"102254","_from":"804","_to":"60171"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"89009","_from":"804","_to":"52726"} +{"$label":"ACTS_IN","name":"9 (voice)","type":"Role","_key":"89001","_from":"804","_to":"52724"} +{"$label":"ACTS_IN","name":"William Avary","type":"Role","_key":"65382","_from":"804","_to":"40552"} +{"$label":"ACTS_IN","name":"Nat Cooper","type":"Role","_key":"62603","_from":"804","_to":"39386"} +{"$label":"ACTS_IN","name":"Mumble","type":"Role","_key":"57333","_from":"804","_to":"36355"} +{"$label":"ACTS_IN","name":"Casey Connor","type":"Role","_key":"52793","_from":"804","_to":"34242"} +{"$label":"ACTS_IN","name":"Mark Evans","type":"Role","_key":"52761","_from":"804","_to":"34232"} +{"$label":"ACTS_IN","name":"Matt Buckner","type":"Role","_key":"51519","_from":"804","_to":"33593"} +{"$label":"ACTS_IN","name":"Leo Beiderman","type":"Role","_key":"50329","_from":"804","_to":"32880"} +{"$label":"ACTS_IN","name":"Mikey Carver","type":"Role","_key":"40304","_from":"804","_to":"27194"} +{"$label":"ACTS_IN","name":"Michael Kaye","type":"Role","_key":"20228","_from":"804","_to":"14831"} +{"$label":"ACTS_IN","name":"Le gar\u00e7on (Quartier de la Madeleine)","type":"Role","_key":"19897","_from":"804","_to":"14635"} +{"$label":"ACTS_IN","name":"Jonathan Safran Foer","type":"Role","_key":"4678","_from":"804","_to":"3993"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"2836","_from":"804","_to":"2450"} +{"$label":"ACTS_IN","name":"Video Game Boys","type":"Role","_key":"2564","_from":"804","_to":"2235"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"1306","_from":"804","_to":"1086"} +{"$label":"ACTS_IN","name":"Frodo Baggins","type":"Role","_key":"1027","_from":"804","_to":"826"} +{"$label":"ACTS_IN","name":"Frodo Baggins","type":"Role","_key":"1007","_from":"804","_to":"820"} +{"$label":"ACTS_IN","name":"Uncle Freddie","type":"Role","_key":"120555","_from":"805","_to":"70805"} +{"$label":"ACTS_IN","name":"Zebedee","type":"Role","_key":"109291","_from":"805","_to":"64568"} +{"$label":"ACTS_IN","name":"The Toad","type":"Role","_key":"71088","_from":"805","_to":"43161"} +{"$label":"ACTS_IN","name":"Death","type":"Role","_key":"54902","_from":"805","_to":"35106"} +{"$label":"ACTS_IN","name":"Kurt Dussander","type":"Role","_key":"53915","_from":"805","_to":"34700"} +{"$label":"ACTS_IN","name":"Dr. Reinhardt Lane","type":"Role","_key":"51112","_from":"805","_to":"33346"} +{"$label":"ACTS_IN","name":"James Whale","type":"Role","_key":"25137","_from":"805","_to":"18160"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"19958","_from":"805","_to":"14696"} +{"$label":"ACTS_IN","name":"Iorek Byrnison (voice)","type":"Role","_key":"19924","_from":"805","_to":"14664"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"17577","_from":"805","_to":"13129"} +{"$label":"ACTS_IN","name":"Dr. James Kennedy","type":"Role","_key":"16985","_from":"805","_to":"12742"} +{"$label":"ACTS_IN","name":"Sir Leigh Teabing","type":"Role","_key":"7094","_from":"805","_to":"5934"} +{"$label":"ACTS_IN","name":"Gandalf the White","type":"Role","_key":"1028","_from":"805","_to":"826"} +{"$label":"ACTS_IN","name":"Gandalf the White","type":"Role","_key":"1008","_from":"805","_to":"820"} +{"$label":"ACTS_IN","name":"Diego Alatriste","type":"Role","_key":"94816","_from":"806","_to":"55839"} +{"$label":"ACTS_IN","name":"Everett Hitch","type":"Role","_key":"91017","_from":"806","_to":"53708"} +{"$label":"ACTS_IN","name":"Halder","type":"Role","_key":"89341","_from":"806","_to":"52881"} +{"$label":"ACTS_IN","name":"Samuel 'Sam' Loomis","type":"Role","_key":"68813","_from":"806","_to":"42164"} +{"$label":"ACTS_IN","name":"Roy Nord","type":"Role","_key":"68673","_from":"806","_to":"42086"} +{"$label":"ACTS_IN","name":"Eddie Boone","type":"Role","_key":"63500","_from":"806","_to":"39760"} +{"$label":"ACTS_IN","name":"Lt. Peter 'WEAPS' Ince","type":"Role","_key":"51719","_from":"806","_to":"33747"} +{"$label":"ACTS_IN","name":"Guy Foucard","type":"Role","_key":"50670","_from":"806","_to":"33080"} +{"$label":"ACTS_IN","name":"Lalin","type":"Role","_key":"41517","_from":"806","_to":"27891"} +{"$label":"ACTS_IN","name":"Master Chief John James Urgayle","type":"Role","_key":"31662","_from":"806","_to":"22099"} +{"$label":"ACTS_IN","name":"Nikolai Luzhin","type":"Role","_key":"19685","_from":"806","_to":"14558"} +{"$label":"ACTS_IN","name":"Frank Hopkins","type":"Role","_key":"17592","_from":"806","_to":"13140"} +{"$label":"ACTS_IN","name":"David Shaw","type":"Role","_key":"17031","_from":"806","_to":"12774"} +{"$label":"ACTS_IN","name":"Tom Stall","type":"Role","_key":"1339","_from":"806","_to":"1120"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"1029","_from":"806","_to":"826"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"1009","_from":"806","_to":"820"} +{"$label":"ACTS_IN","name":"Clare Cooper","type":"Role","_key":"109883","_from":"807","_to":"64928"} +{"$label":"ACTS_IN","name":"Lucy Harmon","type":"Role","_key":"100769","_from":"807","_to":"59411"} +{"$label":"ACTS_IN","name":"Corey Mason","type":"Role","_key":"95070","_from":"807","_to":"55962"} +{"$label":"ACTS_IN","name":"Pamela Abbott","type":"Role","_key":"91261","_from":"807","_to":"53818"} +{"$label":"ACTS_IN","name":"Kristen McKay","type":"Role","_key":"64928","_from":"807","_to":"40367"} +{"$label":"ACTS_IN","name":"Lady Rebecca Gibson","type":"Role","_key":"62913","_from":"807","_to":"39519"} +{"$label":"ACTS_IN","name":"Faye Dolan","type":"Role","_key":"54882","_from":"807","_to":"35099"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"54557","_from":"807","_to":"34963"} +{"$label":"ACTS_IN","name":"Emma Duvall","type":"Role","_key":"54036","_from":"807","_to":"34762"} +{"$label":"ACTS_IN","name":"Anika","type":"Role","_key":"46366","_from":"807","_to":"30637"} +{"$label":"ACTS_IN","name":"Angela Oakhurst","type":"Role","_key":"20600","_from":"807","_to":"15075"} +{"$label":"ACTS_IN","name":"Jewel Valentino","type":"Role","_key":"18698","_from":"807","_to":"13841"} +{"$label":"ACTS_IN","name":"Betty Ross","type":"Role","_key":"15256","_from":"807","_to":"11684"} +{"$label":"ACTS_IN","name":"Grace Stamper","type":"Role","_key":"1763","_from":"807","_to":"1527"} +{"$label":"ACTS_IN","name":"Arwen Evenstar","type":"Role","_key":"1030","_from":"807","_to":"826"} +{"$label":"ACTS_IN","name":"Arwen Evenstar","type":"Role","_key":"1010","_from":"807","_to":"820"} +{"$label":"ACTS_IN","name":"Thorton (voice)","type":"Role","_key":"120523","_from":"808","_to":"70788"} +{"$label":"ACTS_IN","name":"King Priam of Troy","type":"Role","_key":"119768","_from":"808","_to":"70330"} +{"$label":"ACTS_IN","name":"Yale Ericson","type":"Role","_key":"111783","_from":"808","_to":"65980"} +{"$label":"ACTS_IN","name":"Sangimel","type":"Role","_key":"110812","_from":"808","_to":"65453"} +{"$label":"ACTS_IN","name":"Mordecai","type":"Role","_key":"102680","_from":"808","_to":"60410"} +{"$label":"ACTS_IN","name":"Corky Taylor","type":"Role","_key":"91210","_from":"808","_to":"53788"} +{"$label":"ACTS_IN","name":"Andre Cassell","type":"Role","_key":"90613","_from":"808","_to":"53513"} +{"$label":"ACTS_IN","name":"The King of Thieves \/ Cassim (voice)","type":"Role","_key":"68736","_from":"808","_to":"42116"} +{"$label":"ACTS_IN","name":"Viscount Mabrey","type":"Role","_key":"68051","_from":"808","_to":"41815"} +{"$label":"ACTS_IN","name":"Cmdr. Hammerstock-Smythe","type":"Role","_key":"64508","_from":"808","_to":"40185"} +{"$label":"ACTS_IN","name":"Bruder Parvus","type":"Role","_key":"63400","_from":"808","_to":"39720"} +{"$label":"ACTS_IN","name":"Dogati","type":"Role","_key":"57358","_from":"808","_to":"36367"} +{"$label":"ACTS_IN","name":"Dr. Matthew Sallin","type":"Role","_key":"40808","_from":"808","_to":"27472"} +{"$label":"ACTS_IN","name":"Challanger","type":"Role","_key":"24688","_from":"808","_to":"17858"} +{"$label":"ACTS_IN","name":"Merick","type":"Role","_key":"20318","_from":"808","_to":"14887"} +{"$label":"ACTS_IN","name":"General Leonid Pushkin","type":"Role","_key":"8553","_from":"808","_to":"6967"} +{"$label":"ACTS_IN","name":"Sallah","type":"Role","_key":"1711","_from":"808","_to":"1473"} +{"$label":"ACTS_IN","name":"Sallah","type":"Role","_key":"1622","_from":"808","_to":"1387"} +{"$label":"ACTS_IN","name":"Gimli & Treebeard (Voice)","type":"Role","_key":"1032","_from":"808","_to":"826"} +{"$label":"ACTS_IN","name":"Gimli","type":"Role","_key":"1012","_from":"808","_to":"820"} +{"$label":"ACTS_IN","name":"Jason Locke","type":"Role","_key":"116013","_from":"809","_to":"68318"} +{"$label":"ACTS_IN","name":"Dark","type":"Role","_key":"112276","_from":"809","_to":"66298"} +{"$label":"ACTS_IN","name":"Andy McNabb","type":"Role","_key":"105940","_from":"809","_to":"62378"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"102339","_from":"809","_to":"60214"} +{"$label":"ACTS_IN","name":"Farmer Grey","type":"Role","_key":"100618","_from":"809","_to":"59333"} +{"$label":"ACTS_IN","name":"Richard Sharpe","type":"Role","_key":"92013","_from":"809","_to":"54290"} +{"$label":"ACTS_IN","name":"Patrick Koster","type":"Role","_key":"88036","_from":"809","_to":"52260"} +{"$label":"ACTS_IN","name":"Danny Bryant","type":"Role","_key":"57905","_from":"809","_to":"36634"} +{"$label":"ACTS_IN","name":"Kevin O'Donnell","type":"Role","_key":"57490","_from":"809","_to":"36435"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"55843","_from":"809","_to":"35533"} +{"$label":"ACTS_IN","name":"Captain Rich","type":"Role","_key":"53071","_from":"809","_to":"34352"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"50032","_from":"809","_to":"32748"} +{"$label":"ACTS_IN","name":"John \"The Hitcher\" Ryder","type":"Role","_key":"49515","_from":"809","_to":"32418"} +{"$label":"ACTS_IN","name":"Spence","type":"Role","_key":"48320","_from":"809","_to":"31733"} +{"$label":"ACTS_IN","name":"Errol Partridge","type":"Role","_key":"46334","_from":"809","_to":"30618"} +{"$label":"ACTS_IN","name":"Esau","type":"Role","_key":"22932","_from":"809","_to":"16632"} +{"$label":"ACTS_IN","name":"Ian Howe","type":"Role","_key":"17905","_from":"809","_to":"13324"} +{"$label":"ACTS_IN","name":"Merrick","type":"Role","_key":"14485","_from":"809","_to":"11190"} +{"$label":"ACTS_IN","name":"Jimmy Muir","type":"Role","_key":"14249","_from":"809","_to":"11023"} +{"$label":"ACTS_IN","name":"Alec Trevelyan","type":"Role","_key":"8578","_from":"809","_to":"6980"} +{"$label":"ACTS_IN","name":"Odysseus","type":"Role","_key":"7792","_from":"809","_to":"6469"} +{"$label":"ACTS_IN","name":"Christopher Da Silva","type":"Role","_key":"7054","_from":"809","_to":"5907"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"1166","_from":"809","_to":"945"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"119255","_from":"810","_to":"70069"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"113774","_from":"810","_to":"67043"} +{"$label":"ACTS_IN","name":"Kent Stock","type":"Role","_key":"105373","_from":"810","_to":"61997"} +{"$label":"ACTS_IN","name":"Matt Foster","type":"Role","_key":"103133","_from":"810","_to":"60663"} +{"$label":"ACTS_IN","name":"Daniel E. 'Rudy' Ruettiger","type":"Role","_key":"100669","_from":"810","_to":"59358"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"95142","_from":"810","_to":"55986"} +{"$label":"ACTS_IN","name":"Twoflower","type":"Role","_key":"95114","_from":"810","_to":"55975"} +{"$label":"ACTS_IN","name":"Sgt. Richard \"Rascal\" Moore","type":"Role","_key":"90821","_from":"810","_to":"53591"} +{"$label":"ACTS_IN","name":"Big Girl","type":"Role","_key":"69560","_from":"810","_to":"42473"} +{"$label":"ACTS_IN","name":"William 'Billy' Tepper","type":"Role","_key":"65443","_from":"810","_to":"40572"} +{"$label":"ACTS_IN","name":"Dave Morgan","type":"Role","_key":"63041","_from":"810","_to":"39564"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"53955","_from":"810","_to":"34714"} +{"$label":"ACTS_IN","name":"Mikey Walsh","type":"Role","_key":"53212","_from":"810","_to":"34420"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"53210","_from":"810","_to":"34418"} +{"$label":"ACTS_IN","name":"Doug Whitmore","type":"Role","_key":"15762","_from":"810","_to":"12007"} +{"$label":"ACTS_IN","name":"Sam Gamgee","type":"Role","_key":"1033","_from":"810","_to":"826"} +{"$label":"ACTS_IN","name":"Sam Gamgee","type":"Role","_key":"1014","_from":"810","_to":"820"} +{"$label":"ACTS_IN","name":"Bill Craig","type":"Role","_key":"89333","_from":"811","_to":"52879"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"68790","_from":"811","_to":"42147"} +{"$label":"ACTS_IN","name":"Barrent Bonden","type":"Role","_key":"50277","_from":"811","_to":"32851"} +{"$label":"ACTS_IN","name":"Peregrin 'Pippin' Took","type":"Role","_key":"1034","_from":"811","_to":"826"} +{"$label":"ACTS_IN","name":"Peregrin 'Pippin' Took","type":"Role","_key":"1015","_from":"811","_to":"820"} +{"$label":"ACTS_IN","name":"Chris Bradley \/ Bolt","type":"Role","_key":"18091","_from":"812","_to":"13433"} +{"$label":"ACTS_IN","name":"Meriadoc 'Merry' Brandybuck","type":"Role","_key":"1035","_from":"812","_to":"826"} +{"$label":"ACTS_IN","name":"Meriadoc 'Merry' Brandybuck","type":"Role","_key":"1016","_from":"812","_to":"820"} +{"$label":"ACTS_IN","name":"Charlotte Gray","type":"Role","_key":"90875","_from":"813","_to":"53619"} +{"$label":"ACTS_IN","name":"Connie Falzone","type":"Role","_key":"90520","_from":"813","_to":"53474"} +{"$label":"ACTS_IN","name":"Maggie Gilkeson","type":"Role","_key":"88295","_from":"813","_to":"52369"} +{"$label":"ACTS_IN","name":"Veronica Guerin","type":"Role","_key":"64702","_from":"813","_to":"40293"} +{"$label":"ACTS_IN","name":"Philippa","type":"Role","_key":"64180","_from":"813","_to":"40046"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"63848","_from":"813","_to":"39905"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"59126","_from":"813","_to":"37329"} +{"$label":"ACTS_IN","name":"Petal","type":"Role","_key":"43405","_from":"813","_to":"28999"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"34777","_from":"813","_to":"23771"} +{"$label":"ACTS_IN","name":"Jeanine","type":"Role","_key":"33124","_from":"813","_to":"22937"} +{"$label":"ACTS_IN","name":"Elisabeth I","type":"Role","_key":"32256","_from":"813","_to":"22475"} +{"$label":"ACTS_IN","name":"Elizabeth I","type":"Role","_key":"32246","_from":"813","_to":"22472"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"28881","_from":"813","_to":"20642"} +{"$label":"ACTS_IN","name":"Kate Wheeler","type":"Role","_key":"26475","_from":"813","_to":"19030"} +{"$label":"ACTS_IN","name":"Katharine Hepburn","type":"Role","_key":"21990","_from":"813","_to":"16058"} +{"$label":"ACTS_IN","name":"Annie Wilson","type":"Role","_key":"17812","_from":"813","_to":"13278"} +{"$label":"ACTS_IN","name":"Sheba Hart","type":"Role","_key":"12303","_from":"813","_to":"9638"} +{"$label":"ACTS_IN","name":"Meredith Logue","type":"Role","_key":"12157","_from":"813","_to":"9529"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"12111","_from":"813","_to":"9495"} +{"$label":"ACTS_IN","name":"Cate\/Shelly","type":"Role","_key":"10519","_from":"813","_to":"8357"} +{"$label":"ACTS_IN","name":"Jane Winslett-Richardson","type":"Role","_key":"5282","_from":"813","_to":"4483"} +{"$label":"ACTS_IN","name":"Irina Spalko","type":"Role","_key":"3122","_from":"813","_to":"2678"} +{"$label":"ACTS_IN","name":"Lena Brandt","type":"Role","_key":"2775","_from":"813","_to":"2405"} +{"$label":"ACTS_IN","name":"Galadriel","type":"Role","_key":"1044","_from":"813","_to":"826"} +{"$label":"ACTS_IN","name":"Galadriel","type":"Role","_key":"1025","_from":"813","_to":"820"} +{"$label":"ACTS_IN","name":"Edward Aylesbury","type":"Role","_key":"111067","_from":"814","_to":"65605"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103432","_from":"814","_to":"60839"} +{"$label":"ACTS_IN","name":"Dr. Putney","type":"Role","_key":"92874","_from":"814","_to":"54784"} +{"$label":"ACTS_IN","name":"Dr. Willis","type":"Role","_key":"69102","_from":"814","_to":"42284"} +{"$label":"ACTS_IN","name":"Himmelstoss","type":"Role","_key":"66678","_from":"814","_to":"41199"} +{"$label":"ACTS_IN","name":"King John","type":"Role","_key":"65791","_from":"814","_to":"40718"} +{"$label":"ACTS_IN","name":"Captain Fluellen","type":"Role","_key":"65167","_from":"814","_to":"40473"} +{"$label":"ACTS_IN","name":"Polonius","type":"Role","_key":"62147","_from":"814","_to":"39139"} +{"$label":"ACTS_IN","name":"Mitchell Stephens","type":"Role","_key":"61762","_from":"814","_to":"38889"} +{"$label":"ACTS_IN","name":"Mr. Naville","type":"Role","_key":"48021","_from":"814","_to":"31583"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41667","_from":"814","_to":"27967"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"32001","_from":"814","_to":"22303"} +{"$label":"ACTS_IN","name":"Duval","type":"Role","_key":"30059","_from":"814","_to":"21198"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"25173","_from":"814","_to":"18176"} +{"$label":"ACTS_IN","name":"Pod","type":"Role","_key":"23207","_from":"814","_to":"16831"} +{"$label":"ACTS_IN","name":"Tom Frost","type":"Role","_key":"23199","_from":"814","_to":"16826"} +{"$label":"ACTS_IN","name":"Professor Fitz","type":"Role","_key":"21995","_from":"814","_to":"16058"} +{"$label":"ACTS_IN","name":"Zerah","type":"Role","_key":"21151","_from":"814","_to":"15473"} +{"$label":"ACTS_IN","name":"Dr. Murnau","type":"Role","_key":"20167","_from":"814","_to":"14795"} +{"$label":"ACTS_IN","name":"Skinner","type":"Role","_key":"17939","_from":"814","_to":"13345"} +{"$label":"ACTS_IN","name":"Kiri Vinokur","type":"Role","_key":"16879","_from":"814","_to":"12696"} +{"$label":"ACTS_IN","name":"Simeon Weisz","type":"Role","_key":"15794","_from":"814","_to":"12028"} +{"$label":"ACTS_IN","name":"Squealer (voice)","type":"Role","_key":"9603","_from":"814","_to":"7734"} +{"$label":"ACTS_IN","name":"Sir William Gull","type":"Role","_key":"9010","_from":"814","_to":"7296"} +{"$label":"ACTS_IN","name":"Terry Rapson","type":"Role","_key":"5472","_from":"814","_to":"4649"} +{"$label":"ACTS_IN","name":"Gideon Largeman","type":"Role","_key":"5077","_from":"814","_to":"4313"} +{"$label":"ACTS_IN","name":"Ash","type":"Role","_key":"4791","_from":"814","_to":"4094"} +{"$label":"ACTS_IN","name":"Mr. M. Kurtzmann","type":"Role","_key":"1433","_from":"814","_to":"1207"} +{"$label":"ACTS_IN","name":"Victor Cornelius","type":"Role","_key":"1177","_from":"814","_to":"953"} +{"$label":"ACTS_IN","name":"Bilbo Baggins","type":"Role","_key":"1043","_from":"814","_to":"826"} +{"$label":"ACTS_IN","name":"Haldir","type":"Role","_key":"1018","_from":"815","_to":"820"} +{"$label":"ACTS_IN","name":"Gothmog & Witchking of Angmar","type":"Role","_key":"1045","_from":"816","_to":"826"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"46714","_from":"818","_to":"30833"} +{"$label":"ACTS_IN","name":"Captain Haddock","type":"Role","_key":"113230","_from":"819","_to":"66717"} +{"$label":"ACTS_IN","name":"Albert Einstein","type":"Role","_key":"102913","_from":"819","_to":"60541"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"97181","_from":"819","_to":"57169"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"71091","_from":"819","_to":"43161"} +{"$label":"ACTS_IN","name":"Richard Kneeland","type":"Role","_key":"60651","_from":"819","_to":"38293"} +{"$label":"ACTS_IN","name":"Mr. Grin","type":"Role","_key":"58891","_from":"819","_to":"37189"} +{"$label":"ACTS_IN","name":"Martin Hannett","type":"Role","_key":"23257","_from":"819","_to":"16861"} +{"$label":"ACTS_IN","name":"Capricorn","type":"Role","_key":"20275","_from":"819","_to":"14864"} +{"$label":"ACTS_IN","name":"Alley","type":"Role","_key":"12048","_from":"819","_to":"9443"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"1038","_from":"819","_to":"826"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"1020","_from":"819","_to":"820"} +{"$label":"ACTS_IN","name":"\u00c9omer","type":"Role","_key":"1024","_from":"825","_to":"820"} +{"$label":"ACTS_IN","name":"Faramir","type":"Role","_key":"1023","_from":"824","_to":"820"} +{"$label":"ACTS_IN","name":"\u00c9owyn","type":"Role","_key":"1022","_from":"823","_to":"820"} +{"$label":"ACTS_IN","name":"Gr\u00edma Wormtongue","type":"Role","_key":"1021","_from":"822","_to":"820"} +{"$label":"ACTS_IN","name":"Th\u00e9oden","type":"Role","_key":"1019","_from":"821","_to":"820"} +{"$label":"ACTS_IN","name":"Joe Bradshaw","type":"Role","_key":"117094","_from":"821","_to":"68900"} +{"$label":"ACTS_IN","name":"Susan's Father","type":"Role","_key":"102994","_from":"821","_to":"60579"} +{"$label":"ACTS_IN","name":"Edward Colt","type":"Role","_key":"72205","_from":"821","_to":"43633"} +{"$label":"ACTS_IN","name":"Dr. David Hawthorne","type":"Role","_key":"64265","_from":"821","_to":"40077"} +{"$label":"ACTS_IN","name":"Sr. Crown","type":"Role","_key":"62651","_from":"821","_to":"39410"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"60389","_from":"821","_to":"38093"} +{"$label":"ACTS_IN","name":"Philos","type":"Role","_key":"53176","_from":"821","_to":"34399"} +{"$label":"ACTS_IN","name":"Esser","type":"Role","_key":"51289","_from":"821","_to":"33450"} +{"$label":"ACTS_IN","name":"Phil Parsons","type":"Role","_key":"35223","_from":"821","_to":"23991"} +{"$label":"ACTS_IN","name":"William Cole","type":"Role","_key":"22624","_from":"821","_to":"16415"} +{"$label":"ACTS_IN","name":"John Joe","type":"Role","_key":"14073","_from":"821","_to":"10910"} +{"$label":"ACTS_IN","name":"Captain Smith","type":"Role","_key":"7185","_from":"821","_to":"6002"} +{"$label":"ACTS_IN","name":"Th\u00e9oden, King of Rohan","type":"Role","_key":"1037","_from":"821","_to":"826"} +{"$label":"ACTS_IN","name":"Al Bert","type":"Role","_key":"90048","_from":"822","_to":"53260"} +{"$label":"ACTS_IN","name":"Chucky (voice)","type":"Role","_key":"72814","_from":"822","_to":"43868"} +{"$label":"ACTS_IN","name":"Ned Schoenholtz","type":"Role","_key":"71631","_from":"822","_to":"43379"} +{"$label":"ACTS_IN","name":"James Venamun \/ The Gemini Killer","type":"Role","_key":"70877","_from":"822","_to":"43072"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"68788","_from":"822","_to":"42147"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"68415","_from":"822","_to":"41968"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"68407","_from":"822","_to":"41966"} +{"$label":"ACTS_IN","name":"Mr. Eggleston","type":"Role","_key":"66845","_from":"822","_to":"41285"} +{"$label":"ACTS_IN","name":"Charles Lee Ray","type":"Role","_key":"64258","_from":"822","_to":"40075"} +{"$label":"ACTS_IN","name":"Zealot","type":"Role","_key":"51991","_from":"822","_to":"33900"} +{"$label":"ACTS_IN","name":"Byron Stamphill","type":"Role","_key":"49771","_from":"822","_to":"32563"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"49541","_from":"822","_to":"32437"} +{"$label":"ACTS_IN","name":"Dr. Jonathan Gediman","type":"Role","_key":"48134","_from":"822","_to":"31632"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"18515","_from":"822","_to":"13705"} +{"$label":"ACTS_IN","name":"Sheriff Leigh Brackett","type":"Role","_key":"18099","_from":"822","_to":"13441"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"15145","_from":"822","_to":"11617"} +{"$label":"ACTS_IN","name":"Jack Dante","type":"Role","_key":"15091","_from":"822","_to":"11588"} +{"$label":"ACTS_IN","name":"Deputy Clinton Pell","type":"Role","_key":"14465","_from":"822","_to":"11179"} +{"$label":"ACTS_IN","name":"Piter De Vries","type":"Role","_key":"9930","_from":"822","_to":"7956"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"9360","_from":"822","_to":"7553"} +{"$label":"ACTS_IN","name":"Billy Bibbit","type":"Role","_key":"6180","_from":"822","_to":"5224"} +{"$label":"ACTS_IN","name":"Glenda Lake","type":"Role","_key":"99895","_from":"823","_to":"58914"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"72456","_from":"823","_to":"43726"} +{"$label":"ACTS_IN","name":"Marty Bell","type":"Role","_key":"50656","_from":"823","_to":"33066"} +{"$label":"ACTS_IN","name":"Mary Feur","type":"Role","_key":"22527","_from":"823","_to":"16367"} +{"$label":"ACTS_IN","name":"Penny Prior","type":"Role","_key":"12067","_from":"823","_to":"9455"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"5540","_from":"823","_to":"4722"} +{"$label":"ACTS_IN","name":"Mary-Ann","type":"Role","_key":"1498","_from":"823","_to":"1270"} +{"$label":"ACTS_IN","name":"\u00c9owyn","type":"Role","_key":"1039","_from":"823","_to":"826"} +{"$label":"ACTS_IN","name":"Eden Fletcher","type":"Role","_key":"109609","_from":"824","_to":"64744"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"109101","_from":"824","_to":"64462"} +{"$label":"ACTS_IN","name":"Jim Doyle","type":"Role","_key":"104626","_from":"824","_to":"61549"} +{"$label":"ACTS_IN","name":"Eddie Harnovey","type":"Role","_key":"102367","_from":"824","_to":"60234"} +{"$label":"ACTS_IN","name":"Brett Sprague","type":"Role","_key":"96953","_from":"824","_to":"57027"} +{"$label":"ACTS_IN","name":"John O\u00b4Brien","type":"Role","_key":"47961","_from":"824","_to":"31551"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"45841","_from":"824","_to":"30311"} +{"$label":"ACTS_IN","name":"Carl ( voice )","type":"Role","_key":"45796","_from":"824","_to":"30298"} +{"$label":"ACTS_IN","name":"Neil Fletcher","type":"Role","_key":"45496","_from":"824","_to":"30139"} +{"$label":"ACTS_IN","name":"Dilios","type":"Role","_key":"12411","_from":"824","_to":"9725"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"9729","_from":"824","_to":"7809"} +{"$label":"ACTS_IN","name":"Faramir","type":"Role","_key":"1040","_from":"824","_to":"826"} +{"$label":"ACTS_IN","name":"Harry Ballard","type":"Role","_key":"105518","_from":"825","_to":"62090"} +{"$label":"ACTS_IN","name":"Leonard 'Bones' McCoy","type":"Role","_key":"94689","_from":"825","_to":"55786"} +{"$label":"ACTS_IN","name":"Nick Harvey","type":"Role","_key":"66141","_from":"825","_to":"40912"} +{"$label":"ACTS_IN","name":"Munder","type":"Role","_key":"55251","_from":"825","_to":"35238"} +{"$label":"ACTS_IN","name":"John Grimm","type":"Role","_key":"50889","_from":"825","_to":"33214"} +{"$label":"ACTS_IN","name":"Vaako","type":"Role","_key":"23604","_from":"825","_to":"17115"} +{"$label":"ACTS_IN","name":"Kirill","type":"Role","_key":"21724","_from":"825","_to":"15871"} +{"$label":"ACTS_IN","name":"Ghost","type":"Role","_key":"13590","_from":"825","_to":"10570"} +{"$label":"ACTS_IN","name":"\u00c9omer","type":"Role","_key":"1041","_from":"825","_to":"826"} +{"$label":"ACTS_IN","name":"Deagol","type":"Role","_key":"1047","_from":"829","_to":"826"} +{"$label":"ACTS_IN","name":"King of the Dead","type":"Role","_key":"1046","_from":"828","_to":"826"} +{"$label":"ACTS_IN","name":"Denethor","type":"Role","_key":"1042","_from":"827","_to":"826"} +{"$label":"ACTS_IN","name":"Prince Admantha","type":"Role","_key":"102678","_from":"827","_to":"60410"} +{"$label":"ACTS_IN","name":"Ivan Yugorsky","type":"Role","_key":"46401","_from":"827","_to":"30650"} +{"$label":"ACTS_IN","name":"Riku","type":"Role","_key":"1055","_from":"835","_to":"830"} +{"$label":"ACTS_IN","name":"Mikkonen","type":"Role","_key":"1054","_from":"834","_to":"830"} +{"$label":"ACTS_IN","name":"Irmeli Katariina Pihlaja","type":"Role","_key":"1053","_from":"833","_to":"830"} +{"$label":"ACTS_IN","name":"Taisto Olavi Kasurinen","type":"Role","_key":"1052","_from":"832","_to":"830"} +{"$label":"DIRECTED","_key":"1051","_from":"831","_to":"830"} +{"$label":"ACTS_IN","name":"Le patron Aaltra","type":"Role","_key":"89046","_from":"831","_to":"52750"} +{"$label":"ACTS_IN","name":"Brillenverk\u00e4ufer","type":"Role","_key":"47602","_from":"831","_to":"31365"} +{"$label":"DIRECTED","_key":"70078","_from":"831","_to":"42724"} +{"$label":"DIRECTED","_key":"51843","_from":"831","_to":"33828"} +{"$label":"DIRECTED","_key":"50697","_from":"831","_to":"33098"} +{"$label":"DIRECTED","_key":"48475","_from":"831","_to":"31824"} +{"$label":"DIRECTED","_key":"47595","_from":"831","_to":"31365"} +{"$label":"DIRECTED","_key":"47583","_from":"831","_to":"31355"} +{"$label":"DIRECTED","_key":"46269","_from":"831","_to":"30585"} +{"$label":"DIRECTED","_key":"12847","_from":"831","_to":"10034"} +{"$label":"DIRECTED","_key":"1056","_from":"831","_to":"836"} +{"$label":"ACTS_IN","name":"Vladimir (Manager)","type":"Role","_key":"70074","_from":"834","_to":"42724"} +{"$label":"ACTS_IN","name":"Mika","type":"Role","_key":"4668","_from":"834","_to":"3965"} +{"$label":"ACTS_IN","name":"Nikander","type":"Role","_key":"1057","_from":"834","_to":"836"} +{"$label":"ACTS_IN","name":"Melartin","type":"Role","_key":"1059","_from":"838","_to":"836"} +{"$label":"ACTS_IN","name":"Ilona Rajam\u00e4ki","type":"Role","_key":"1058","_from":"837","_to":"836"} +{"$label":"ACTS_IN","name":"Eukko","type":"Role","_key":"107674","_from":"837","_to":"63547"} +{"$label":"ACTS_IN","name":"Ofelia","type":"Role","_key":"50700","_from":"837","_to":"33098"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"48476","_from":"837","_to":"31824"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"47584","_from":"837","_to":"31355"} +{"$label":"ACTS_IN","name":"Irma","type":"Role","_key":"46271","_from":"837","_to":"30585"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin","type":"Role","_key":"12852","_from":"837","_to":"10034"} +{"$label":"ACTS_IN","name":"P\u00e4ivi, mother of Niila","type":"Role","_key":"5552","_from":"837","_to":"4727"} +{"$label":"ACTS_IN","name":"Melartin","type":"Role","_key":"48479","_from":"838","_to":"31824"} +{"$label":"ACTS_IN","name":"Antila","type":"Role","_key":"46274","_from":"838","_to":"30585"} +{"$label":"ACTS_IN","name":"Man#2 Helsinki","type":"Role","_key":"4670","_from":"838","_to":"3965"} +{"$label":"ACTS_IN","name":"Este","type":"Role","_key":"1065","_from":"845","_to":"839"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"1064","_from":"844","_to":"839"} +{"$label":"ACTS_IN","name":"Carlos Ducas","type":"Role","_key":"1063","_from":"843","_to":"839"} +{"$label":"ACTS_IN","name":"Captain Lopez","type":"Role","_key":"1062","_from":"842","_to":"839"} +{"$label":"ACTS_IN","name":"Philip Michael Santore","type":"Role","_key":"1061","_from":"841","_to":"839"} +{"$label":"DIRECTED","_key":"1060","_from":"840","_to":"839"} +{"$label":"DIRECTED","_key":"105140","_from":"840","_to":"61871"} +{"$label":"DIRECTED","_key":"102853","_from":"840","_to":"60509"} +{"$label":"DIRECTED","_key":"56502","_from":"840","_to":"35888"} +{"$label":"DIRECTED","_key":"52263","_from":"840","_to":"34027"} +{"$label":"DIRECTED","_key":"35046","_from":"840","_to":"23909"} +{"$label":"DIRECTED","_key":"30938","_from":"840","_to":"21670"} +{"$label":"DIRECTED","_key":"23041","_from":"840","_to":"16714"} +{"$label":"DIRECTED","_key":"19808","_from":"840","_to":"14622"} +{"$label":"ACTS_IN","name":"Blaze","type":"Role","_key":"99314","_from":"841","_to":"58517"} +{"$label":"ACTS_IN","name":"Jansen","type":"Role","_key":"71344","_from":"841","_to":"43272"} +{"$label":"ACTS_IN","name":"Lui, Jacques","type":"Role","_key":"48061","_from":"841","_to":"31599"} +{"$label":"ACTS_IN","name":"Diego Mora","type":"Role","_key":"33942","_from":"841","_to":"23371"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33565","_from":"841","_to":"23204"} +{"$label":"ACTS_IN","name":"Cesar Soubeyran","type":"Role","_key":"32025","_from":"841","_to":"22316"} +{"$label":"ACTS_IN","name":"Cesar Soubeyran","type":"Role","_key":"32014","_from":"841","_to":"22309"} +{"$label":"ACTS_IN","name":"Inspecteur Grazzi","type":"Role","_key":"30920","_from":"841","_to":"21670"} +{"$label":"ACTS_IN","name":"John Proctor","type":"Role","_key":"30890","_from":"841","_to":"21653"} +{"$label":"ACTS_IN","name":"C\u00e9sar","type":"Role","_key":"27138","_from":"841","_to":"19525"} +{"$label":"ACTS_IN","name":"Z","type":"Role","_key":"23042","_from":"841","_to":"16714"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"2984","_from":"841","_to":"2556"} +{"$label":"ACTS_IN","name":"Simone Parondi","type":"Role","_key":"49618","_from":"842","_to":"32475"} +{"$label":"ACTS_IN","name":"l'h\u00f4telier","type":"Role","_key":"42087","_from":"842","_to":"28196"} +{"$label":"ACTS_IN","name":"Mario Balducci","type":"Role","_key":"39722","_from":"842","_to":"26843"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"28990","_from":"842","_to":"20698"} +{"$label":"ACTS_IN","name":"Yago","type":"Role","_key":"23053","_from":"842","_to":"16714"} +{"$label":"ACTS_IN","name":"Prof. Larsen","type":"Role","_key":"118849","_from":"843","_to":"69858"} +{"$label":"ACTS_IN","name":"Bruckner","type":"Role","_key":"44595","_from":"843","_to":"29680"} +{"$label":"ACTS_IN","name":"Col. von Ecker","type":"Role","_key":"31870","_from":"843","_to":"22236"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"120403","_from":"844","_to":"70729"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104472","_from":"844","_to":"61445"} +{"$label":"ACTS_IN","name":"Comte de Guiche","type":"Role","_key":"71476","_from":"844","_to":"43327"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33807","_from":"844","_to":"23298"} +{"$label":"ACTS_IN","name":"Olaf Pims","type":"Role","_key":"29867","_from":"844","_to":"21124"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"21208","_from":"844","_to":"15527"} +{"$label":"ACTS_IN","name":"Georges Poussin (Vienna)","type":"Role","_key":"99406","_from":"845","_to":"58590"} +{"$label":"ACTS_IN","name":"Henri Fournier","type":"Role","_key":"89157","_from":"845","_to":"52806"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"65317","_from":"845","_to":"40531"} +{"$label":"ACTS_IN","name":"Bouillon","type":"Role","_key":"33367","_from":"845","_to":"23104"} +{"$label":"ACTS_IN","name":"Sam the Bellhop","type":"Role","_key":"1093","_from":"872","_to":"846"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"1092","_from":"871","_to":"846"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"1091","_from":"870","_to":"846"} +{"$label":"ACTS_IN","name":"Juancho","type":"Role","_key":"1090","_from":"869","_to":"846"} +{"$label":"ACTS_IN","name":"TV Dancing Girl","type":"Role","_key":"1089","_from":"868","_to":"846"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"1088","_from":"867","_to":"846"} +{"$label":"ACTS_IN","name":"Wife","type":"Role","_key":"1087","_from":"866","_to":"846"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"1086","_from":"865","_to":"846"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"1085","_from":"864","_to":"846"} +{"$label":"ACTS_IN","name":"Kiva","type":"Role","_key":"1084","_from":"863","_to":"846"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"1083","_from":"862","_to":"846"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"1082","_from":"861","_to":"846"} +{"$label":"ACTS_IN","name":"Long Hair Yuppy Scum","type":"Role","_key":"1081","_from":"860","_to":"846"} +{"$label":"ACTS_IN","name":"Ted the Bellhop","type":"Role","_key":"1080","_from":"859","_to":"846"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"1079","_from":"858","_to":"846"} +{"$label":"ACTS_IN","name":"Elspeth","type":"Role","_key":"1078","_from":"857","_to":"846"} +{"$label":"ACTS_IN","name":"Corpse","type":"Role","_key":"1077","_from":"856","_to":"846"} +{"$label":"ACTS_IN","name":"Raven","type":"Role","_key":"1076","_from":"855","_to":"846"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"1075","_from":"854","_to":"846"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"1074","_from":"853","_to":"846"} +{"$label":"ACTS_IN","name":"Jezebel","type":"Role","_key":"1073","_from":"852","_to":"846"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"1072","_from":"851","_to":"846"} +{"$label":"ACTS_IN","name":"Chester Rush","type":"Role","_key":"1070","_from":"847","_to":"846"} +{"$label":"DIRECTED","_key":"1069","_from":"850","_to":"846"} +{"$label":"DIRECTED","_key":"1068","_from":"849","_to":"846"} +{"$label":"DIRECTED","_key":"1067","_from":"848","_to":"846"} +{"$label":"DIRECTED","_key":"1066","_from":"847","_to":"846"} +{"$label":"ACTS_IN","name":"Quentin Tarantino","type":"Role","_key":"120080","_from":"847","_to":"70518"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107971","_from":"847","_to":"63755"} +{"$label":"ACTS_IN","name":"Ringo","type":"Role","_key":"95621","_from":"847","_to":"56241"} +{"$label":"ACTS_IN","name":"Clarence Pool","type":"Role","_key":"64535","_from":"847","_to":"40197"} +{"$label":"ACTS_IN","name":"Pick-Up Guy","type":"Role","_key":"48033","_from":"847","_to":"31586"} +{"$label":"ACTS_IN","name":"The Rapist","type":"Role","_key":"17272","_from":"847","_to":"12925"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"17258","_from":"847","_to":"12920"} +{"$label":"ACTS_IN","name":"Richard Gecko","type":"Role","_key":"8871","_from":"847","_to":"7204"} +{"$label":"ACTS_IN","name":"Jimmie Dimmick","type":"Role","_key":"8216","_from":"847","_to":"6746"} +{"$label":"ACTS_IN","name":"Mr. Brown","type":"Role","_key":"6046","_from":"847","_to":"5129"} +{"$label":"DIRECTED","_key":"110260","_from":"847","_to":"65170"} +{"$label":"DIRECTED","_key":"64534","_from":"847","_to":"40197"} +{"$label":"DIRECTED","_key":"17243","_from":"847","_to":"12920"} +{"$label":"DIRECTED","_key":"8218","_from":"847","_to":"6746"} +{"$label":"DIRECTED","_key":"6038","_from":"847","_to":"5129"} +{"$label":"DIRECTED","_key":"5022","_from":"847","_to":"4270"} +{"$label":"DIRECTED","_key":"2831","_from":"847","_to":"2450"} +{"$label":"DIRECTED","_key":"2791","_from":"847","_to":"2421"} +{"$label":"DIRECTED","_key":"1219","_from":"847","_to":"998"} +{"$label":"DIRECTED","_key":"99024","_from":"848","_to":"58332"} +{"$label":"DIRECTED","_key":"89193","_from":"848","_to":"52822"} +{"$label":"DIRECTED","_key":"60029","_from":"848","_to":"37889"} +{"$label":"DIRECTED","_key":"54207","_from":"848","_to":"34817"} +{"$label":"DIRECTED","_key":"53377","_from":"848","_to":"34493"} +{"$label":"DIRECTED","_key":"52795","_from":"848","_to":"34242"} +{"$label":"DIRECTED","_key":"48026","_from":"848","_to":"31586"} +{"$label":"DIRECTED","_key":"17274","_from":"848","_to":"12925"} +{"$label":"DIRECTED","_key":"13238","_from":"848","_to":"10305"} +{"$label":"DIRECTED","_key":"8885","_from":"848","_to":"7204"} +{"$label":"DIRECTED","_key":"5754","_from":"848","_to":"4890"} +{"$label":"DIRECTED","_key":"2852","_from":"848","_to":"2463"} +{"$label":"DIRECTED","_key":"2830","_from":"848","_to":"2450"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"94489","_from":"851","_to":"55647"} +{"$label":"ACTS_IN","name":"Valerie Rosales","type":"Role","_key":"52168","_from":"851","_to":"33997"} +{"$label":"ACTS_IN","name":"Daphne Monet","type":"Role","_key":"50105","_from":"851","_to":"32780"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"45778","_from":"851","_to":"30289"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"17107","_from":"851","_to":"12821"} +{"$label":"ACTS_IN","name":"Alex Owens","type":"Role","_key":"6404","_from":"851","_to":"5417"} +{"$label":"ACTS_IN","name":"La fille de la vid\u00e9o","type":"Role","_key":"117984","_from":"854","_to":"69347"} +{"$label":"ACTS_IN","name":"Sarah Novak \/ Beth Holly","type":"Role","_key":"116978","_from":"854","_to":"68856"} +{"$label":"ACTS_IN","name":"Giulietta Guicciardi","type":"Role","_key":"95984","_from":"854","_to":"56429"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"95704","_from":"854","_to":"56295"} +{"$label":"ACTS_IN","name":"Grazia","type":"Role","_key":"90163","_from":"854","_to":"53310"} +{"$label":"ACTS_IN","name":"Ramada Thompson","type":"Role","_key":"54919","_from":"854","_to":"35117"} +{"$label":"ACTS_IN","name":"Ramada Rodham Hayman","type":"Role","_key":"52619","_from":"854","_to":"34186"} +{"$label":"ACTS_IN","name":"Camille Vrinks","type":"Role","_key":"46253","_from":"854","_to":"30575"} +{"$label":"ACTS_IN","name":"Nathalia Petrovna","type":"Role","_key":"43009","_from":"854","_to":"28730"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"5601","_from":"854","_to":"4770"} +{"$label":"ACTS_IN","name":"Susanna","type":"Role","_key":"4904","_from":"854","_to":"4182"} +{"$label":"ACTS_IN","name":"Paula Klaw","type":"Role","_key":"104301","_from":"855","_to":"61366"} +{"$label":"ACTS_IN","name":"Rose Fenney","type":"Role","_key":"101360","_from":"855","_to":"59667"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"100676","_from":"855","_to":"59358"} +{"$label":"ACTS_IN","name":"Hannah Marris","type":"Role","_key":"100231","_from":"855","_to":"59116"} +{"$label":"ACTS_IN","name":"Lori Wehlner","type":"Role","_key":"93169","_from":"855","_to":"54906"} +{"$label":"ACTS_IN","name":"Eleanor 'Nell' Vance","type":"Role","_key":"71085","_from":"855","_to":"43160"} +{"$label":"ACTS_IN","name":"Jojo","type":"Role","_key":"68442","_from":"855","_to":"41985"} +{"$label":"ACTS_IN","name":"Grace Stalker","type":"Role","_key":"67527","_from":"855","_to":"41579"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"63546","_from":"855","_to":"39778"} +{"$label":"ACTS_IN","name":"Maris","type":"Role","_key":"28255","_from":"855","_to":"20232"} +{"$label":"ACTS_IN","name":"Fiona Ulrich","type":"Role","_key":"28150","_from":"855","_to":"20177"} +{"$label":"ACTS_IN","name":"Jamie Wilson","type":"Role","_key":"22142","_from":"855","_to":"16146"} +{"$label":"ACTS_IN","name":"Corey Flood","type":"Role","_key":"17648","_from":"855","_to":"13169"} +{"$label":"ACTS_IN","name":"Honey Bush","type":"Role","_key":"8375","_from":"855","_to":"6847"} +{"$label":"DIRECTED","_key":"116596","_from":"857","_to":"68638"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"116535","_from":"857","_to":"68596"} +{"$label":"ACTS_IN","name":"Amber Leighton","type":"Role","_key":"91502","_from":"857","_to":"53941"} +{"$label":"ACTS_IN","name":"Mae Mordabito","type":"Role","_key":"68921","_from":"857","_to":"42198"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"61421","_from":"857","_to":"38738"} +{"$label":"ACTS_IN","name":"Princess Selenia","type":"Role","_key":"59122","_from":"857","_to":"37311"} +{"$label":"ACTS_IN","name":"Eva Per\u00f3n","type":"Role","_key":"50898","_from":"857","_to":"33220"} +{"$label":"ACTS_IN","name":"Breathless Mahoney","type":"Role","_key":"50237","_from":"857","_to":"32833"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"48256","_from":"857","_to":"31702"} +{"$label":"ACTS_IN","name":"Singing Telegram","type":"Role","_key":"40173","_from":"857","_to":"27113"} +{"$label":"ACTS_IN","name":"Rebeca Carlson","type":"Role","_key":"18727","_from":"857","_to":"13858"} +{"$label":"ACTS_IN","name":"Abbie Reynolds","type":"Role","_key":"15800","_from":"857","_to":"12033"} +{"$label":"ACTS_IN","name":"Agent Greer","type":"Role","_key":"121602","_from":"858","_to":"71444"} +{"$label":"ACTS_IN","name":"Principal Kirkpatrick","type":"Role","_key":"115169","_from":"858","_to":"67820"} +{"$label":"ACTS_IN","name":"Bo Weinberg","type":"Role","_key":"90797","_from":"858","_to":"53581"} +{"$label":"ACTS_IN","name":"Dwayne Hoover","type":"Role","_key":"89751","_from":"858","_to":"53126"} +{"$label":"ACTS_IN","name":"Ben Jordan","type":"Role","_key":"88774","_from":"858","_to":"52605"} +{"$label":"ACTS_IN","name":"Carl Roebuck","type":"Role","_key":"70952","_from":"858","_to":"43100"} +{"$label":"ACTS_IN","name":"Det. Tom Hardy","type":"Role","_key":"67719","_from":"858","_to":"41643"} +{"$label":"ACTS_IN","name":"Col. William A. McNamara","type":"Role","_key":"64344","_from":"858","_to":"40107"} +{"$label":"ACTS_IN","name":"Major-General William Devereaux","type":"Role","_key":"57586","_from":"858","_to":"36470"} +{"$label":"ACTS_IN","name":"David Dunn","type":"Role","_key":"56223","_from":"858","_to":"35727"} +{"$label":"ACTS_IN","name":"Peter Fallow","type":"Role","_key":"54851","_from":"858","_to":"35088"} +{"$label":"ACTS_IN","name":"Lieutenant A.K. Waters","type":"Role","_key":"54740","_from":"858","_to":"35036"} +{"$label":"ACTS_IN","name":"Mikey (voice)","type":"Role","_key":"54241","_from":"858","_to":"34831"} +{"$label":"ACTS_IN","name":"Dr. Ernest Menville","type":"Role","_key":"53440","_from":"858","_to":"34530"} +{"$label":"ACTS_IN","name":"Mikey (voice)","type":"Role","_key":"53323","_from":"858","_to":"34476"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"53167","_from":"858","_to":"34398"} +{"$label":"ACTS_IN","name":"Joe Hallenbeck","type":"Role","_key":"53089","_from":"858","_to":"34363"} +{"$label":"ACTS_IN","name":"Eddie 'Hudson Hawk' Hawkins","type":"Role","_key":"52934","_from":"858","_to":"34303"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51587","_from":"858","_to":"33665"} +{"$label":"ACTS_IN","name":"Art Jeffries","type":"Role","_key":"50993","_from":"858","_to":"33287"} +{"$label":"ACTS_IN","name":"Harry Rydell","type":"Role","_key":"49027","_from":"858","_to":"32126"} +{"$label":"ACTS_IN","name":"RJ (voice)","type":"Role","_key":"47097","_from":"858","_to":"31057"} +{"$label":"ACTS_IN","name":"Sonny Truelove","type":"Role","_key":"46760","_from":"858","_to":"30852"} +{"$label":"ACTS_IN","name":"Harrison Hill","type":"Role","_key":"45885","_from":"858","_to":"30345"} +{"$label":"ACTS_IN","name":"The Jackal","type":"Role","_key":"34240","_from":"858","_to":"23506"} +{"$label":"ACTS_IN","name":"Russell Duritz","type":"Role","_key":"30401","_from":"858","_to":"21378"} +{"$label":"ACTS_IN","name":"Muddy Grimes (voice)","type":"Role","_key":"26529","_from":"858","_to":"19068"} +{"$label":"ACTS_IN","name":"Joshep Blake","type":"Role","_key":"26473","_from":"858","_to":"19030"} +{"$label":"ACTS_IN","name":"Jack Mosley","type":"Role","_key":"19185","_from":"858","_to":"14181"} +{"$label":"ACTS_IN","name":"Dr. Bill Capa","type":"Role","_key":"18510","_from":"858","_to":"13705"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"18493","_from":"858","_to":"13698"} +{"$label":"ACTS_IN","name":"Jimmy \"The Tulip\" Tudeski","type":"Role","_key":"17987","_from":"858","_to":"13374"} +{"$label":"ACTS_IN","name":"Jeff Talley","type":"Role","_key":"17636","_from":"858","_to":"13162"} +{"$label":"ACTS_IN","name":"Lieutenant Muldoon","type":"Role","_key":"17273","_from":"858","_to":"12925"} +{"$label":"ACTS_IN","name":"John McClane","type":"Role","_key":"13916","_from":"858","_to":"10802"} +{"$label":"ACTS_IN","name":"John McClane","type":"Role","_key":"13900","_from":"858","_to":"10792"} +{"$label":"ACTS_IN","name":"John McClane","type":"Role","_key":"13888","_from":"858","_to":"10786"} +{"$label":"ACTS_IN","name":"Walter Davis","type":"Role","_key":"10909","_from":"858","_to":"8647"} +{"$label":"ACTS_IN","name":"Malcolm Crowe","type":"Role","_key":"8697","_from":"858","_to":"7056"} +{"$label":"ACTS_IN","name":"Butch Coolidge","type":"Role","_key":"8200","_from":"858","_to":"6746"} +{"$label":"ACTS_IN","name":"John McClane","type":"Role","_key":"6741","_from":"858","_to":"5661"} +{"$label":"ACTS_IN","name":"Hartigan","type":"Role","_key":"2832","_from":"858","_to":"2450"} +{"$label":"ACTS_IN","name":"Mr. Goodkat","type":"Role","_key":"2827","_from":"858","_to":"2445"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2534","_from":"858","_to":"2210"} +{"$label":"ACTS_IN","name":"Harry S. Stamper","type":"Role","_key":"1760","_from":"858","_to":"1527"} +{"$label":"ACTS_IN","name":"James Cole","type":"Role","_key":"1365","_from":"858","_to":"1144"} +{"$label":"ACTS_IN","name":"Korben Dallas","type":"Role","_key":"1174","_from":"858","_to":"953"} +{"$label":"ACTS_IN","name":"Myron","type":"Role","_key":"120647","_from":"859","_to":"70855"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"118822","_from":"859","_to":"69851"} +{"$label":"ACTS_IN","name":"Guildenstern","type":"Role","_key":"118313","_from":"859","_to":"69547"} +{"$label":"ACTS_IN","name":"Oliver Cromwell","type":"Role","_key":"115883","_from":"859","_to":"68229"} +{"$label":"ACTS_IN","name":"Skellig","type":"Role","_key":"110968","_from":"859","_to":"65545"} +{"$label":"ACTS_IN","name":"James Walter Wayland","type":"Role","_key":"100926","_from":"859","_to":"59495"} +{"$label":"ACTS_IN","name":"Alexander 'Stretch' Rawland","type":"Role","_key":"89818","_from":"859","_to":"53151"} +{"$label":"ACTS_IN","name":"Archibald Cunningham","type":"Role","_key":"71933","_from":"859","_to":"43521"} +{"$label":"ACTS_IN","name":"Febre the Man in Black","type":"Role","_key":"69455","_from":"859","_to":"42441"} +{"$label":"ACTS_IN","name":"Gig","type":"Role","_key":"65756","_from":"859","_to":"40707"} +{"$label":"ACTS_IN","name":"Danny Boodmann T.D. Lemon Nineteen Hundred '1900'","type":"Role","_key":"62885","_from":"859","_to":"39508"} +{"$label":"ACTS_IN","name":"Jeff Platzer","type":"Role","_key":"51977","_from":"859","_to":"33896"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"49923","_from":"859","_to":"32684"} +{"$label":"ACTS_IN","name":"Dominic Matei","type":"Role","_key":"47296","_from":"859","_to":"31157"} +{"$label":"ACTS_IN","name":"Mitchel","type":"Role","_key":"46712","_from":"859","_to":"30833"} +{"$label":"ACTS_IN","name":"Marquis de Lauzun","type":"Role","_key":"45810","_from":"859","_to":"30302"} +{"$label":"ACTS_IN","name":"Edgar Lawson","type":"Role","_key":"41380","_from":"859","_to":"27819"} +{"$label":"ACTS_IN","name":"Pete Townshend","type":"Role","_key":"39296","_from":"859","_to":"26575"} +{"$label":"ACTS_IN","name":"Marlow","type":"Role","_key":"33969","_from":"859","_to":"23380"} +{"$label":"ACTS_IN","name":"Sutter","type":"Role","_key":"27643","_from":"859","_to":"19813"} +{"$label":"ACTS_IN","name":"Emil Blonsky","type":"Role","_key":"15257","_from":"859","_to":"11684"} +{"$label":"ACTS_IN","name":"General Thade","type":"Role","_key":"10337","_from":"859","_to":"8229"} +{"$label":"ACTS_IN","name":"Pumpkin","type":"Role","_key":"8205","_from":"859","_to":"6746"} +{"$label":"ACTS_IN","name":"Mr. Orange\/Freddy Newandyke","type":"Role","_key":"6039","_from":"859","_to":"5129"} +{"$label":"ACTS_IN","name":"Diane Court","type":"Role","_key":"17646","_from":"861","_to":"13169"} +{"$label":"ACTS_IN","name":"Ms. Buns","type":"Role","_key":"112086","_from":"863","_to":"66181"} +{"$label":"ACTS_IN","name":"Caitlin Fairchild (voice)","type":"Role","_key":"106585","_from":"863","_to":"62807"} +{"$label":"ACTS_IN","name":"Cherish","type":"Role","_key":"98985","_from":"863","_to":"58316"} +{"$label":"ACTS_IN","name":"Hadley Wolfmeyer","type":"Role","_key":"69360","_from":"863","_to":"42408"} +{"$label":"ACTS_IN","name":"Kriemhild","type":"Role","_key":"68418","_from":"863","_to":"41974"} +{"$label":"ACTS_IN","name":"Natalie Simon","type":"Role","_key":"57543","_from":"863","_to":"36455"} +{"$label":"ACTS_IN","name":"Kim Cummings","type":"Role","_key":"27450","_from":"863","_to":"19709"} +{"$label":"ACTS_IN","name":"June Carver","type":"Role","_key":"22438","_from":"863","_to":"16308"} +{"$label":"ACTS_IN","name":"Gertrude Lang","type":"Role","_key":"17850","_from":"863","_to":"13293"} +{"$label":"ACTS_IN","name":"Libby","type":"Role","_key":"16440","_from":"863","_to":"12427"} +{"$label":"ACTS_IN","name":"Peace (voice)","type":"Role","_key":"108156","_from":"864","_to":"63917"} +{"$label":"ACTS_IN","name":"Mohammad","type":"Role","_key":"104883","_from":"864","_to":"61706"} +{"$label":"ACTS_IN","name":"Scally","type":"Role","_key":"18191","_from":"864","_to":"13492"} +{"$label":"ACTS_IN","name":"Tony DeVienazo","type":"Role","_key":"2975","_from":"864","_to":"2548"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"102410","_from":"865","_to":"60262"} +{"$label":"ACTS_IN","name":"Rita Abromowitz","type":"Role","_key":"101350","_from":"865","_to":"59663"} +{"$label":"ACTS_IN","name":"Natalie Hegalhuzen","type":"Role","_key":"93355","_from":"865","_to":"54992"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"90863","_from":"865","_to":"53612"} +{"$label":"ACTS_IN","name":"Martha Hackett","type":"Role","_key":"89198","_from":"865","_to":"52823"} +{"$label":"ACTS_IN","name":"Cassidy","type":"Role","_key":"88400","_from":"865","_to":"52394"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"68498","_from":"865","_to":"42015"} +{"$label":"ACTS_IN","name":"Dr. Polly Beilman","type":"Role","_key":"65051","_from":"865","_to":"40419"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"63547","_from":"865","_to":"39778"} +{"$label":"ACTS_IN","name":"Mabel Normand","type":"Role","_key":"63340","_from":"865","_to":"39698"} +{"$label":"ACTS_IN","name":"Mona Lisa Vito","type":"Role","_key":"62892","_from":"865","_to":"39510"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62565","_from":"865","_to":"39371"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"54312","_from":"865","_to":"34859"} +{"$label":"ACTS_IN","name":"Faith Corvatch","type":"Role","_key":"52317","_from":"865","_to":"34060"} +{"$label":"ACTS_IN","name":"Lexi","type":"Role","_key":"52111","_from":"865","_to":"33976"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"51101","_from":"865","_to":"33343"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"47558","_from":"865","_to":"31338"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"29321","_from":"865","_to":"20821"} +{"$label":"ACTS_IN","name":"Natalie Strout","type":"Role","_key":"17345","_from":"865","_to":"12977"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Laurel Takashima","type":"Role","_key":"66882","_from":"866","_to":"41298"} +{"$label":"ACTS_IN","name":"Mrs. Cheung","type":"Role","_key":"52148","_from":"866","_to":"33986"} +{"$label":"ACTS_IN","name":"Janet Tokada","type":"Role","_key":"5470","_from":"866","_to":"4649"} +{"$label":"ACTS_IN","name":"Dancing Witch \/ Wagon Witch #1 (voice)","type":"Role","_key":"61595","_from":"867","_to":"38823"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"116604","_from":"868","_to":"68642"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"115308","_from":"868","_to":"67891"} +{"$label":"ACTS_IN","name":"Cesca Giggles","type":"Role","_key":"89192","_from":"868","_to":"52822"} +{"$label":"ACTS_IN","name":"Lola Cirillo","type":"Role","_key":"64282","_from":"868","_to":"40082"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"61239","_from":"868","_to":"38676"} +{"$label":"ACTS_IN","name":"Nurse Rosa Harper","type":"Role","_key":"52790","_from":"868","_to":"34242"} +{"$label":"ACTS_IN","name":"Rita Escobar","type":"Role","_key":"50035","_from":"868","_to":"32751"} +{"$label":"ACTS_IN","name":"Carolina","type":"Role","_key":"48028","_from":"868","_to":"31586"} +{"$label":"ACTS_IN","name":"Anita Randazzo","type":"Role","_key":"28461","_from":"868","_to":"20352"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"17089","_from":"868","_to":"12809"} +{"$label":"ACTS_IN","name":"Isabel Fuentes","type":"Role","_key":"17073","_from":"868","_to":"12799"} +{"$label":"ACTS_IN","name":"Camilla Lopez","type":"Role","_key":"17061","_from":"868","_to":"12792"} +{"$label":"ACTS_IN","name":"Serendipity","type":"Role","_key":"15813","_from":"868","_to":"12037"} +{"$label":"ACTS_IN","name":"Carolina","type":"Role","_key":"13230","_from":"868","_to":"10305"} +{"$label":"ACTS_IN","name":"Frida Kahlo","type":"Role","_key":"12555","_from":"868","_to":"9830"} +{"$label":"ACTS_IN","name":"Martha Beck","type":"Role","_key":"12246","_from":"868","_to":"9590"} +{"$label":"ACTS_IN","name":"Santanico Pandemonium","type":"Role","_key":"8875","_from":"868","_to":"7204"} +{"$label":"ACTS_IN","name":"Sandro Guzman","type":"Role","_key":"119802","_from":"870","_to":"70342"} +{"$label":"ACTS_IN","name":"Carlos DeJesus","type":"Role","_key":"57273","_from":"870","_to":"36323"} +{"$label":"ACTS_IN","name":"Joey Dalesio","type":"Role","_key":"54671","_from":"870","_to":"35009"} +{"$label":"ACTS_IN","name":"Dellwo","type":"Role","_key":"18308","_from":"870","_to":"13579"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"8210","_from":"870","_to":"6746"} +{"$label":"ACTS_IN","name":"Cobby","type":"Role","_key":"110621","_from":"872","_to":"65354"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"109908","_from":"872","_to":"64940"} +{"$label":"ACTS_IN","name":"Rupert Stiltskin","type":"Role","_key":"105331","_from":"872","_to":"61977"} +{"$label":"ACTS_IN","name":"Salvatore Licuti","type":"Role","_key":"71056","_from":"872","_to":"43147"} +{"$label":"ACTS_IN","name":"Torpedo","type":"Role","_key":"69194","_from":"872","_to":"42317"} +{"$label":"ACTS_IN","name":"Vinnie 'The Cannon' DiMotti","type":"Role","_key":"67397","_from":"872","_to":"41521"} +{"$label":"ACTS_IN","name":"Acme VP, Stating the Obvious","type":"Role","_key":"65214","_from":"872","_to":"40495"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"29216","_from":"872","_to":"20787"} +{"$label":"ACTS_IN","name":"Jeff Farnley","type":"Role","_key":"11587","_from":"872","_to":"9099"} +{"$label":"ACTS_IN","name":"Motel Owner","type":"Role","_key":"8883","_from":"872","_to":"7204"} +{"$label":"ACTS_IN","name":"Rodney","type":"Role","_key":"8243","_from":"872","_to":"6761"} +{"$label":"ACTS_IN","name":"Slumber Inc. Attendant","type":"Role","_key":"8233","_from":"872","_to":"6753"} +{"$label":"ACTS_IN","name":"Teddy, the Kid","type":"Role","_key":"1100","_from":"880","_to":"873"} +{"$label":"ACTS_IN","name":"Sykes","type":"Role","_key":"1099","_from":"879","_to":"873"} +{"$label":"ACTS_IN","name":"Ray Cochran","type":"Role","_key":"1098","_from":"878","_to":"873"} +{"$label":"ACTS_IN","name":"Fallon","type":"Role","_key":"1097","_from":"877","_to":"873"} +{"$label":"ACTS_IN","name":"Mike Peterson","type":"Role","_key":"1096","_from":"876","_to":"873"} +{"$label":"ACTS_IN","name":"Frank Wyatt","type":"Role","_key":"1095","_from":"875","_to":"873"} +{"$label":"DIRECTED","_key":"1094","_from":"874","_to":"873"} +{"$label":"DIRECTED","_key":"64503","_from":"874","_to":"40184"} +{"$label":"DIRECTED","_key":"64259","_from":"874","_to":"40077"} +{"$label":"DIRECTED","_key":"64096","_from":"874","_to":"40001"} +{"$label":"DIRECTED","_key":"61335","_from":"874","_to":"38707"} +{"$label":"DIRECTED","_key":"18790","_from":"874","_to":"13892"} +{"$label":"DIRECTED","_key":"14898","_from":"874","_to":"11449"} +{"$label":"DIRECTED","_key":"2742","_from":"874","_to":"2372"} +{"$label":"DIRECTED","_key":"2600","_from":"874","_to":"2274"} +{"$label":"ACTS_IN","name":"Otto Maddox","type":"Role","_key":"96948","_from":"875","_to":"57026"} +{"$label":"ACTS_IN","name":"Billy the Kid","type":"Role","_key":"73040","_from":"875","_to":"43958"} +{"$label":"ACTS_IN","name":"Kirby Keger","type":"Role","_key":"70645","_from":"875","_to":"42993"} +{"$label":"ACTS_IN","name":"Coach Gordon Bombay","type":"Role","_key":"68240","_from":"875","_to":"41905"} +{"$label":"ACTS_IN","name":"Det. Bill Reimers","type":"Role","_key":"66325","_from":"875","_to":"41029"} +{"$label":"ACTS_IN","name":"Tim Fallon","type":"Role","_key":"65369","_from":"875","_to":"40552"} +{"$label":"ACTS_IN","name":"Gordon Bombay","type":"Role","_key":"65014","_from":"875","_to":"40406"} +{"$label":"ACTS_IN","name":"Gordon Bombay","type":"Role","_key":"63094","_from":"875","_to":"39586"} +{"$label":"ACTS_IN","name":"James St. James","type":"Role","_key":"61384","_from":"875","_to":"38727"} +{"$label":"ACTS_IN","name":"Bill Robinson","type":"Role","_key":"58902","_from":"875","_to":"37199"} +{"$label":"ACTS_IN","name":"Sgt. Jack Colt","type":"Role","_key":"55239","_from":"875","_to":"35235"} +{"$label":"ACTS_IN","name":"Det. Bill Reimers","type":"Role","_key":"53695","_from":"875","_to":"34630"} +{"$label":"ACTS_IN","name":"Alex Furlong","type":"Role","_key":"52802","_from":"875","_to":"34245"} +{"$label":"ACTS_IN","name":"William H. Bonney (\"Billy the Kid\")","type":"Role","_key":"52482","_from":"875","_to":"34143"} +{"$label":"ACTS_IN","name":"Officer Powell","type":"Role","_key":"39705","_from":"875","_to":"26832"} +{"$label":"ACTS_IN","name":"Andrew \"Andy\" Clark","type":"Role","_key":"18379","_from":"875","_to":"13632"} +{"$label":"ACTS_IN","name":"Keith 'Two-Bit' Mathews","type":"Role","_key":"3282","_from":"875","_to":"2809"} +{"$label":"DIRECTED","_key":"65383","_from":"875","_to":"40552"} +{"$label":"DIRECTED","_key":"61389","_from":"875","_to":"38727"} +{"$label":"ACTS_IN","name":"Mack","type":"Role","_key":"113220","_from":"876","_to":"66716"} +{"$label":"ACTS_IN","name":"Lawson Russell","type":"Role","_key":"111695","_from":"876","_to":"65946"} +{"$label":"ACTS_IN","name":"Liam Case","type":"Role","_key":"109279","_from":"876","_to":"64563"} +{"$label":"ACTS_IN","name":"Abraham Lincoln Haines","type":"Role","_key":"108148","_from":"876","_to":"63916"} +{"$label":"ACTS_IN","name":"David Wolfe","type":"Role","_key":"106447","_from":"876","_to":"62710"} +{"$label":"ACTS_IN","name":"Michael Dixon","type":"Role","_key":"102705","_from":"876","_to":"60424"} +{"$label":"ACTS_IN","name":"Charlie Hinton","type":"Role","_key":"98726","_from":"876","_to":"58185"} +{"$label":"ACTS_IN","name":"Radio","type":"Role","_key":"97502","_from":"876","_to":"57419"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"95964","_from":"876","_to":"56425"} +{"$label":"ACTS_IN","name":"Cromer","type":"Role","_key":"95294","_from":"876","_to":"56065"} +{"$label":"ACTS_IN","name":"Ian Nielsen (as Albert Lewis)","type":"Role","_key":"88361","_from":"876","_to":"52388"} +{"$label":"ACTS_IN","name":"Dr. Theo Caulder","type":"Role","_key":"88124","_from":"876","_to":"52298"} +{"$label":"ACTS_IN","name":"Senior Chief Carl Brashear","type":"Role","_key":"73115","_from":"876","_to":"43978"} +{"$label":"ACTS_IN","name":"Salim Adel","type":"Role","_key":"64423","_from":"876","_to":"40148"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"58093","_from":"876","_to":"36758"} +{"$label":"ACTS_IN","name":"Owen Templeton","type":"Role","_key":"57694","_from":"876","_to":"36524"} +{"$label":"ACTS_IN","name":"Deion Hughes","type":"Role","_key":"56354","_from":"876","_to":"35808"} +{"$label":"ACTS_IN","name":"Alex Thomas","type":"Role","_key":"56110","_from":"876","_to":"35670"} +{"$label":"ACTS_IN","name":"Jerry Robinson","type":"Role","_key":"54656","_from":"876","_to":"35006"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53616","_from":"876","_to":"34590"} +{"$label":"ACTS_IN","name":"Rod Tidwell","type":"Role","_key":"53553","_from":"876","_to":"34567"} +{"$label":"ACTS_IN","name":"Salt","type":"Role","_key":"45267","_from":"876","_to":"30038"} +{"$label":"ACTS_IN","name":"Frank Sachs","type":"Role","_key":"24162","_from":"876","_to":"17512"} +{"$label":"ACTS_IN","name":"Arlo","type":"Role","_key":"18822","_from":"876","_to":"13904"} +{"$label":"ACTS_IN","name":"Cpl. Carl Hammaker","type":"Role","_key":"10492","_from":"876","_to":"8340"} +{"$label":"ACTS_IN","name":"Petty Officer Doris Miller","type":"Role","_key":"8127","_from":"876","_to":"6692"} +{"$label":"ACTS_IN","name":"Tr\u00e9 Styles","type":"Role","_key":"7761","_from":"876","_to":"6449"} +{"$label":"ACTS_IN","name":"Francis 'Frank' O'Brien","type":"Role","_key":"121101","_from":"877","_to":"71124"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"105635","_from":"877","_to":"62176"} +{"$label":"ACTS_IN","name":"Ray Pluto","type":"Role","_key":"99976","_from":"877","_to":"58990"} +{"$label":"ACTS_IN","name":"Michael Whouley","type":"Role","_key":"98289","_from":"877","_to":"57900"} +{"$label":"ACTS_IN","name":"Gil Mars","type":"Role","_key":"70596","_from":"877","_to":"42954"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"66394","_from":"877","_to":"41064"} +{"$label":"ACTS_IN","name":"Edgar Friendly","type":"Role","_key":"56215","_from":"877","_to":"35723"} +{"$label":"ACTS_IN","name":"Francis (voice)","type":"Role","_key":"54196","_from":"877","_to":"34813"} +{"$label":"ACTS_IN","name":"Diego (voice)","type":"Role","_key":"49270","_from":"877","_to":"32270"} +{"$label":"ACTS_IN","name":"George Stacy","type":"Role","_key":"16725","_from":"877","_to":"12611"} +{"$label":"ACTS_IN","name":"Diego (voice)","type":"Role","_key":"11339","_from":"877","_to":"8941"} +{"$label":"ACTS_IN","name":"Michael McCann","type":"Role","_key":"10858","_from":"877","_to":"8607"} +{"$label":"ACTS_IN","name":"Fad King","type":"Role","_key":"7030","_from":"877","_to":"5892"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"5353","_from":"877","_to":"4540"} +{"$label":"ACTS_IN","name":"Don Ready","type":"Role","_key":"121446","_from":"878","_to":"71349"} +{"$label":"ACTS_IN","name":"Det. Steve Menteer","type":"Role","_key":"118935","_from":"878","_to":"69895"} +{"$label":"ACTS_IN","name":"Sailor - Freshman","type":"Role","_key":"115009","_from":"878","_to":"67722"} +{"$label":"ACTS_IN","name":"Alan Weiss","type":"Role","_key":"102026","_from":"878","_to":"60028"} +{"$label":"ACTS_IN","name":"James 'Droz' Andrews","type":"Role","_key":"100197","_from":"878","_to":"59099"} +{"$label":"ACTS_IN","name":"Roman","type":"Role","_key":"96795","_from":"878","_to":"56924"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"94058","_from":"878","_to":"55385"} +{"$label":"ACTS_IN","name":"Dean Gordon \"Cheese\" Pritchard","type":"Role","_key":"71193","_from":"878","_to":"43207"} +{"$label":"ACTS_IN","name":"Michael Berkow","type":"Role","_key":"59624","_from":"878","_to":"37645"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"57888","_from":"878","_to":"36625"} +{"$label":"ACTS_IN","name":"Dean Kansky","type":"Role","_key":"56647","_from":"878","_to":"35977"} +{"$label":"ACTS_IN","name":"Buddy Israel","type":"Role","_key":"47072","_from":"878","_to":"31043"} +{"$label":"ACTS_IN","name":"Arnie","type":"Role","_key":"40951","_from":"878","_to":"27547"} +{"$label":"ACTS_IN","name":"Damon Schmidt","type":"Role","_key":"31102","_from":"878","_to":"21770"} +{"$label":"ACTS_IN","name":"Ross Giggins","type":"Role","_key":"30559","_from":"878","_to":"21485"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"17653","_from":"878","_to":"13169"} +{"$label":"ACTS_IN","name":"CWO Cliff 'Elvis' Wolcott","type":"Role","_key":"10159","_from":"878","_to":"8112"} +{"$label":"ACTS_IN","name":"John Lowe","type":"Role","_key":"107188","_from":"879","_to":"63224"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"67206","_from":"879","_to":"41452"} +{"$label":"ACTS_IN","name":"Jack Baldwin","type":"Role","_key":"56114","_from":"879","_to":"35670"} +{"$label":"ACTS_IN","name":"1. Mercenary","type":"Role","_key":"27509","_from":"879","_to":"19738"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"13441","_from":"879","_to":"10458"} +{"$label":"ACTS_IN","name":"Peter Winter","type":"Role","_key":"13408","_from":"879","_to":"10434"} +{"$label":"ACTS_IN","name":"Dorian Tyrrell","type":"Role","_key":"10130","_from":"879","_to":"8101"} +{"$label":"ACTS_IN","name":"Zed","type":"Role","_key":"8207","_from":"879","_to":"6746"} +{"$label":"ACTS_IN","name":"Redfoot the Fence","type":"Role","_key":"7483","_from":"879","_to":"6221"} +{"$label":"ACTS_IN","name":"Rafael Cano","type":"Role","_key":"46413","_from":"880","_to":"30656"} +{"$label":"DIRECTED","_key":"1101","_from":"882","_to":"881"} +{"$label":"ACTS_IN","name":"Er","type":"Role","_key":"1105","_from":"887","_to":"883"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"1104","_from":"886","_to":"883"} +{"$label":"DIRECTED","_key":"1103","_from":"885","_to":"883"} +{"$label":"DIRECTED","_key":"1102","_from":"884","_to":"883"} +{"$label":"DIRECTED","_key":"3842","_from":"884","_to":"3292"} +{"$label":"ACTS_IN","name":"Gill","type":"Role","_key":"1117","_from":"900","_to":"889"} +{"$label":"ACTS_IN","name":"Phillip Sherman","type":"Role","_key":"1116","_from":"899","_to":"889"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"1115","_from":"898","_to":"889"} +{"$label":"ACTS_IN","name":"Coral","type":"Role","_key":"1114","_from":"897","_to":"889"} +{"$label":"ACTS_IN","name":"Crush","type":"Role","_key":"1113","_from":"890","_to":"889"} +{"$label":"ACTS_IN","name":"Peach","type":"Role","_key":"1112","_from":"896","_to":"889"} +{"$label":"ACTS_IN","name":"Bloat","type":"Role","_key":"1111","_from":"895","_to":"889"} +{"$label":"ACTS_IN","name":"Dory","type":"Role","_key":"1110","_from":"894","_to":"889"} +{"$label":"ACTS_IN","name":"Marlin","type":"Role","_key":"1109","_from":"893","_to":"889"} +{"$label":"ACTS_IN","name":"Nemo","type":"Role","_key":"1108","_from":"892","_to":"889"} +{"$label":"DIRECTED","_key":"1107","_from":"891","_to":"889"} +{"$label":"DIRECTED","_key":"1106","_from":"890","_to":"889"} +{"$label":"DIRECTED","_key":"65030","_from":"890","_to":"40412"} +{"$label":"DIRECTED","_key":"61599","_from":"891","_to":"38829"} +{"$label":"DIRECTED","_key":"7010","_from":"891","_to":"5882"} +{"$label":"ACTS_IN","name":"Bambi (voice)","type":"Role","_key":"93466","_from":"892","_to":"55027"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58824","_from":"892","_to":"37148"} +{"$label":"ACTS_IN","name":"Car Driver","type":"Role","_key":"103918","_from":"893","_to":"61126"} +{"$label":"ACTS_IN","name":"Aaron Altman","type":"Role","_key":"90694","_from":"893","_to":"53542"} +{"$label":"ACTS_IN","name":"Daniel Miller","type":"Role","_key":"88581","_from":"893","_to":"52494"} +{"$label":"ACTS_IN","name":"Yale Goodman","type":"Role","_key":"65638","_from":"893","_to":"40671"} +{"$label":"ACTS_IN","name":"Jerry Peyser","type":"Role","_key":"36102","_from":"893","_to":"24499"} +{"$label":"ACTS_IN","name":"Richard Ripley","type":"Role","_key":"12900","_from":"893","_to":"10063"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"1867","_from":"893","_to":"1618"} +{"$label":"DIRECTED","_key":"88580","_from":"893","_to":"52494"} +{"$label":"ACTS_IN","name":"Self","type":"Role","_key":"120273","_from":"894","_to":"70627"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"55041","_from":"894","_to":"35160"} +{"$label":"ACTS_IN","name":"Fred Bedderhead (voice)","type":"Role","_key":"115872","_from":"895","_to":"68225"} +{"$label":"ACTS_IN","name":"Mason pig","type":"Role","_key":"106247","_from":"895","_to":"62588"} +{"$label":"ACTS_IN","name":"Tank (voice)","type":"Role","_key":"105308","_from":"895","_to":"61968"} +{"$label":"ACTS_IN","name":"Chris Riley","type":"Role","_key":"68322","_from":"895","_to":"41934"} +{"$label":"ACTS_IN","name":"Auguste Gusteau","type":"Role","_key":"17942","_from":"895","_to":"13345"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"119399","_from":"896","_to":"70150"} +{"$label":"ACTS_IN","name":"Constance Miller","type":"Role","_key":"111187","_from":"896","_to":"65664"} +{"$label":"ACTS_IN","name":"Allie Stiffle","type":"Role","_key":"97491","_from":"896","_to":"57409"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"92882","_from":"896","_to":"54784"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"63649","_from":"896","_to":"39819"} +{"$label":"ACTS_IN","name":"Gladys (voice)","type":"Role","_key":"47104","_from":"896","_to":"31057"} +{"$label":"ACTS_IN","name":"Bren MacGuff","type":"Role","_key":"46438","_from":"896","_to":"30676"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"41456","_from":"896","_to":"27866"} +{"$label":"ACTS_IN","name":"Ms. Perky","type":"Role","_key":"35071","_from":"896","_to":"23914"} +{"$label":"ACTS_IN","name":"Prudy Pringleton","type":"Role","_key":"24610","_from":"896","_to":"17800"} +{"$label":"ACTS_IN","name":"Sally Lester","type":"Role","_key":"7085","_from":"896","_to":"5922"} +{"$label":"ACTS_IN","name":"Barbara Fitts","type":"Role","_key":"1127","_from":"896","_to":"901"} +{"$label":"ACTS_IN","name":"Mrs. Langley","type":"Role","_key":"120463","_from":"897","_to":"70763"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"115149","_from":"897","_to":"67807"} +{"$label":"ACTS_IN","name":"Lorie Bryer","type":"Role","_key":"114447","_from":"897","_to":"67420"} +{"$label":"ACTS_IN","name":"Joyce Sordino","type":"Role","_key":"102981","_from":"897","_to":"60576"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"71276","_from":"897","_to":"43243"} +{"$label":"ACTS_IN","name":"Mrs. Brody","type":"Role","_key":"67150","_from":"897","_to":"41435"} +{"$label":"ACTS_IN","name":"Dorey Walker","type":"Role","_key":"63753","_from":"897","_to":"39867"} +{"$label":"ACTS_IN","name":"Lily Cummings","type":"Role","_key":"63502","_from":"897","_to":"39760"} +{"$label":"ACTS_IN","name":"Dr. Emma Temple","type":"Role","_key":"62578","_from":"897","_to":"39377"} +{"$label":"ACTS_IN","name":"Judy Chapman","type":"Role","_key":"37664","_from":"897","_to":"25534"} +{"$label":"ACTS_IN","name":"Ann Kaye","type":"Role","_key":"20224","_from":"897","_to":"14831"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"19987","_from":"897","_to":"14711"} +{"$label":"ACTS_IN","name":"Wilma Flintstone","type":"Role","_key":"10569","_from":"897","_to":"8398"} +{"$label":"ACTS_IN","name":"Envy","type":"Role","_key":"115343","_from":"898","_to":"67907"} +{"$label":"ACTS_IN","name":"Clemens Metternich","type":"Role","_key":"95983","_from":"898","_to":"56429"} +{"$label":"ACTS_IN","name":"Blind Wally","type":"Role","_key":"45479","_from":"898","_to":"30131"} +{"$label":"ACTS_IN","name":"Ted Pratt","type":"Role","_key":"106395","_from":"899","_to":"62687"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"102548","_from":"899","_to":"60327"} +{"$label":"ACTS_IN","name":"Stan Coombs","type":"Role","_key":"101373","_from":"899","_to":"59675"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"96268","_from":"899","_to":"56564"} +{"$label":"ACTS_IN","name":"Major Barton","type":"Role","_key":"71265","_from":"899","_to":"43237"} +{"$label":"ACTS_IN","name":"Barry Fife","type":"Role","_key":"63064","_from":"899","_to":"39571"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"23329","_from":"899","_to":"16903"} +{"$label":"ACTS_IN","name":"Bill Heslop","type":"Role","_key":"3407","_from":"899","_to":"2917"} +{"$label":"ACTS_IN","name":"Lionel 'Elvis' Cormac","type":"Role","_key":"121426","_from":"900","_to":"71341"} +{"$label":"ACTS_IN","name":"Deputy Sheriff Ray Dolezal","type":"Role","_key":"119936","_from":"900","_to":"70452"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Virgil 'Tiger' Cole","type":"Role","_key":"117951","_from":"900","_to":"69331"} +{"$label":"ACTS_IN","name":"Commandat Klein","type":"Role","_key":"116508","_from":"900","_to":"68578"} +{"$label":"ACTS_IN","name":"He","type":"Role","_key":"113326","_from":"900","_to":"66761"} +{"$label":"ACTS_IN","name":"Raven Shaddock","type":"Role","_key":"101620","_from":"900","_to":"59813"} +{"$label":"ACTS_IN","name":"John Carpenter","type":"Role","_key":"98532","_from":"900","_to":"58070"} +{"$label":"ACTS_IN","name":"Stan Aubray","type":"Role","_key":"98038","_from":"900","_to":"57729"} +{"$label":"ACTS_IN","name":"Larry Lockner","type":"Role","_key":"93602","_from":"900","_to":"55116"} +{"$label":"ACTS_IN","name":"Gen. George Octavius Deckert","type":"Role","_key":"71516","_from":"900","_to":"43338"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"67560","_from":"900","_to":"41595"} +{"$label":"ACTS_IN","name":"Max Schreck","type":"Role","_key":"66400","_from":"900","_to":"41065"} +{"$label":"ACTS_IN","name":"Arnold Mack","type":"Role","_key":"65386","_from":"900","_to":"40553"} +{"$label":"ACTS_IN","name":"Emit Flesti","type":"Role","_key":"63333","_from":"900","_to":"39697"} +{"$label":"ACTS_IN","name":"Rat (voice)","type":"Role","_key":"62559","_from":"900","_to":"39370"} +{"$label":"ACTS_IN","name":"Eric 'Rick' Masters","type":"Role","_key":"57453","_from":"900","_to":"36419"} +{"$label":"ACTS_IN","name":"Earl Copen","type":"Role","_key":"56823","_from":"900","_to":"36088"} +{"$label":"ACTS_IN","name":"Hateful Guard at Maryland Training School for Boys","type":"Role","_key":"56490","_from":"900","_to":"35884"} +{"$label":"ACTS_IN","name":"Dr. Michael Copeland","type":"Role","_key":"55186","_from":"900","_to":"35208"} +{"$label":"ACTS_IN","name":"John Clark","type":"Role","_key":"53164","_from":"900","_to":"34396"} +{"$label":"ACTS_IN","name":"Chief of Staff","type":"Role","_key":"53034","_from":"900","_to":"34338"} +{"$label":"ACTS_IN","name":"Paul Smecker","type":"Role","_key":"49417","_from":"900","_to":"32353"} +{"$label":"ACTS_IN","name":"Charles Waechter","type":"Role","_key":"46620","_from":"900","_to":"30792"} +{"$label":"ACTS_IN","name":"Le cow-boy (Place des Victoires)","type":"Role","_key":"19872","_from":"900","_to":"14635"} +{"$label":"ACTS_IN","name":"Frank Dulaney","type":"Role","_key":"18728","_from":"900","_to":"13858"} +{"$label":"ACTS_IN","name":"Grace's Father","type":"Role","_key":"16932","_from":"900","_to":"12720"} +{"$label":"ACTS_IN","name":"Gas","type":"Role","_key":"16880","_from":"900","_to":"12696"} +{"$label":"ACTS_IN","name":"John Geiger","type":"Role","_key":"14513","_from":"900","_to":"11198"} +{"$label":"ACTS_IN","name":"Agent Alan Ward","type":"Role","_key":"14463","_from":"900","_to":"11179"} +{"$label":"ACTS_IN","name":"Barillo","type":"Role","_key":"13237","_from":"900","_to":"10305"} +{"$label":"ACTS_IN","name":"Det. Donald Kimball","type":"Role","_key":"12548","_from":"900","_to":"9822"} +{"$label":"ACTS_IN","name":"Carson Clay","type":"Role","_key":"12394","_from":"900","_to":"9711"} +{"$label":"ACTS_IN","name":"Sgt. Elias Grodin","type":"Role","_key":"9326","_from":"900","_to":"7539"} +{"$label":"ACTS_IN","name":"Green Goblin \/ Norman Osborn","type":"Role","_key":"6706","_from":"900","_to":"5637"} +{"$label":"ACTS_IN","name":"Green Goblin \/ Norman Osborn","type":"Role","_key":"6676","_from":"900","_to":"5630"} +{"$label":"ACTS_IN","name":"Green Goblin \/ Norman Osborn","type":"Role","_key":"6641","_from":"900","_to":"5608"} +{"$label":"ACTS_IN","name":"The Electrician","type":"Role","_key":"6551","_from":"900","_to":"5534"} +{"$label":"ACTS_IN","name":"Bobby Peru","type":"Role","_key":"5921","_from":"900","_to":"5031"} +{"$label":"ACTS_IN","name":"Klaus Daimler","type":"Role","_key":"5283","_from":"900","_to":"4483"} +{"$label":"ACTS_IN","name":"David Caravaggio","type":"Role","_key":"5193","_from":"900","_to":"4417"} +{"$label":"ACTS_IN","name":"Captain Darius","type":"Role","_key":"4970","_from":"900","_to":"4222"} +{"$label":"ACTS_IN","name":"Brad Dupree","type":"Role","_key":"1129","_from":"912","_to":"901"} +{"$label":"ACTS_IN","name":"Jim Berkley","type":"Role","_key":"1128","_from":"911","_to":"901"} +{"$label":"ACTS_IN","name":"Buddy Kane","type":"Role","_key":"1126","_from":"910","_to":"901"} +{"$label":"ACTS_IN","name":"Jim Olmeyer","type":"Role","_key":"1125","_from":"909","_to":"901"} +{"$label":"ACTS_IN","name":"Colonel Frank Fitts","type":"Role","_key":"1124","_from":"908","_to":"901"} +{"$label":"ACTS_IN","name":"Angela Hayes","type":"Role","_key":"1123","_from":"907","_to":"901"} +{"$label":"ACTS_IN","name":"Ricky Fitts","type":"Role","_key":"1122","_from":"906","_to":"901"} +{"$label":"ACTS_IN","name":"Jane Burnham","type":"Role","_key":"1121","_from":"905","_to":"901"} +{"$label":"ACTS_IN","name":"Carolyn Burnham","type":"Role","_key":"1120","_from":"904","_to":"901"} +{"$label":"ACTS_IN","name":"Lester Burnham","type":"Role","_key":"1119","_from":"903","_to":"901"} +{"$label":"DIRECTED","_key":"1118","_from":"902","_to":"901"} +{"$label":"DIRECTED","_key":"119409","_from":"902","_to":"70150"} +{"$label":"DIRECTED","_key":"29789","_from":"902","_to":"21081"} +{"$label":"DIRECTED","_key":"29780","_from":"902","_to":"21077"} +{"$label":"DIRECTED","_key":"29766","_from":"902","_to":"21072"} +{"$label":"DIRECTED","_key":"1240","_from":"902","_to":"1013"} +{"$label":"ACTS_IN","name":"Richard Osborn","type":"Role","_key":"114582","_from":"903","_to":"67500"} +{"$label":"ACTS_IN","name":"Robot Gerty (Voice)","type":"Role","_key":"112211","_from":"903","_to":"66267"} +{"$label":"ACTS_IN","name":"Larry Mann","type":"Role","_key":"105639","_from":"903","_to":"62181"} +{"$label":"ACTS_IN","name":"Ron Klain","type":"Role","_key":"98284","_from":"903","_to":"57900"} +{"$label":"ACTS_IN","name":"Albert T. Fitzgerald","type":"Role","_key":"95282","_from":"903","_to":"56057"} +{"$label":"ACTS_IN","name":"Michael Lynch","type":"Role","_key":"89823","_from":"903","_to":"53152"} +{"$label":"ACTS_IN","name":"David Gale","type":"Role","_key":"71065","_from":"903","_to":"43153"} +{"$label":"ACTS_IN","name":"Kirgo","type":"Role","_key":"68398","_from":"903","_to":"41965"} +{"$label":"ACTS_IN","name":"Lloyd Chasseur","type":"Role","_key":"66396","_from":"903","_to":"41064"} +{"$label":"ACTS_IN","name":"Eugene Simonet","type":"Role","_key":"64815","_from":"903","_to":"40327"} +{"$label":"ACTS_IN","name":"Larry Hooper","type":"Role","_key":"62540","_from":"903","_to":"39366"} +{"$label":"ACTS_IN","name":"Levon Wallace","type":"Role","_key":"60122","_from":"903","_to":"37937"} +{"$label":"ACTS_IN","name":"Lt. Chris Sabian","type":"Role","_key":"55160","_from":"903","_to":"35201"} +{"$label":"ACTS_IN","name":"John Williamson","type":"Role","_key":"54305","_from":"903","_to":"34857"} +{"$label":"ACTS_IN","name":"Hopper (voice)","type":"Role","_key":"54187","_from":"903","_to":"34813"} +{"$label":"ACTS_IN","name":"James Williams","type":"Role","_key":"48328","_from":"903","_to":"31735"} +{"$label":"ACTS_IN","name":"Micky Rosa","type":"Role","_key":"47991","_from":"903","_to":"31575"} +{"$label":"ACTS_IN","name":"Casey Schuler","type":"Role","_key":"45266","_from":"903","_to":"30038"} +{"$label":"ACTS_IN","name":"Bobby Darin","type":"Role","_key":"43603","_from":"903","_to":"29123"} +{"$label":"ACTS_IN","name":"Quoyle","type":"Role","_key":"43403","_from":"903","_to":"28999"} +{"$label":"ACTS_IN","name":"Clyde","type":"Role","_key":"37159","_from":"903","_to":"25172"} +{"$label":"ACTS_IN","name":"Bob Speck","type":"Role","_key":"27623","_from":"903","_to":"19802"} +{"$label":"ACTS_IN","name":"Det. Sgt. Jack Vincennes","type":"Role","_key":"18469","_from":"903","_to":"13688"} +{"$label":"ACTS_IN","name":"D.A. Rufus Buckley","type":"Role","_key":"14601","_from":"903","_to":"11252"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"13393","_from":"903","_to":"10427"} +{"$label":"ACTS_IN","name":"John Doe","type":"Role","_key":"9509","_from":"903","_to":"7669"} +{"$label":"ACTS_IN","name":"Roger 'Verbal' Kint","type":"Role","_key":"7469","_from":"903","_to":"6221"} +{"$label":"ACTS_IN","name":"Prot","type":"Role","_key":"2584","_from":"903","_to":"2259"} +{"$label":"DIRECTED","_key":"50665","_from":"903","_to":"33080"} +{"$label":"DIRECTED","_key":"43610","_from":"903","_to":"29123"} +{"$label":"ACTS_IN","name":"Julia Lambert","type":"Role","_key":"117166","_from":"904","_to":"68932"} +{"$label":"ACTS_IN","name":"Myra Langtry","type":"Role","_key":"114993","_from":"904","_to":"67722"} +{"$label":"ACTS_IN","name":"Sylvia Fowler","type":"Role","_key":"97897","_from":"904","_to":"57663"} +{"$label":"ACTS_IN","name":"Sarah Turner","type":"Role","_key":"69422","_from":"904","_to":"42428"} +{"$label":"ACTS_IN","name":"Susan Anderson","type":"Role","_key":"63108","_from":"904","_to":"39590"} +{"$label":"ACTS_IN","name":"Virginia Hill","type":"Role","_key":"62662","_from":"904","_to":"39415"} +{"$label":"ACTS_IN","name":"Sharon Bridger","type":"Role","_key":"57585","_from":"904","_to":"36470"} +{"$label":"ACTS_IN","name":"Sydney Ellen Wade","type":"Role","_key":"52487","_from":"904","_to":"34144"} +{"$label":"ACTS_IN","name":"Helen Thomas","type":"Role","_key":"51599","_from":"904","_to":"33668"} +{"$label":"ACTS_IN","name":"Deirdre Burroughs","type":"Role","_key":"46970","_from":"904","_to":"30977"} +{"$label":"ACTS_IN","name":"Kate Craig","type":"Role","_key":"22232","_from":"904","_to":"16189"} +{"$label":"ACTS_IN","name":"Sue Barlow","type":"Role","_key":"17865","_from":"904","_to":"13300"} +{"$label":"ACTS_IN","name":"Barbara Land","type":"Role","_key":"1507","_from":"904","_to":"1277"} +{"$label":"ACTS_IN","name":"Karen Cross","type":"Role","_key":"117216","_from":"905","_to":"68952"} +{"$label":"ACTS_IN","name":"Hallie O'Fallon","type":"Role","_key":"95661","_from":"905","_to":"56264"} +{"$label":"ACTS_IN","name":"Empress Savina","type":"Role","_key":"72354","_from":"905","_to":"43696"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"63368","_from":"905","_to":"39709"} +{"$label":"ACTS_IN","name":"Teeny","type":"Role","_key":"52680","_from":"905","_to":"34207"} +{"$label":"ACTS_IN","name":"Susan Thornhill","type":"Role","_key":"28072","_from":"905","_to":"20121"} +{"$label":"ACTS_IN","name":"Enid","type":"Role","_key":"13704","_from":"905","_to":"10639"} +{"$label":"ACTS_IN","name":"Liz Dunn","type":"Role","_key":"5798","_from":"905","_to":"4933"} +{"$label":"ACTS_IN","name":"Robinson","type":"Role","_key":"121242","_from":"906","_to":"71221"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"111425","_from":"906","_to":"65792"} +{"$label":"ACTS_IN","name":"Royce","type":"Role","_key":"99289","_from":"906","_to":"58508"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"94678","_from":"906","_to":"55785"} +{"$label":"ACTS_IN","name":"Jack Durrance","type":"Role","_key":"52517","_from":"906","_to":"34152"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"116963","_from":"907","_to":"68851"} +{"$label":"ACTS_IN","name":"Whore","type":"Role","_key":"115217","_from":"907","_to":"67851"} +{"$label":"ACTS_IN","name":"Kansas Hill","type":"Role","_key":"109944","_from":"907","_to":"64959"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"102058","_from":"907","_to":"60044"} +{"$label":"ACTS_IN","name":"Rachel Hoffman","type":"Role","_key":"101352","_from":"907","_to":"59663"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"98929","_from":"907","_to":"58287"} +{"$label":"ACTS_IN","name":"Brandi Boski","type":"Role","_key":"97175","_from":"907","_to":"57167"} +{"$label":"ACTS_IN","name":"Sarah Bowman","type":"Role","_key":"95418","_from":"907","_to":"56132"} +{"$label":"ACTS_IN","name":"Richie Berlin","type":"Role","_key":"89147","_from":"907","_to":"52804"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"87930","_from":"907","_to":"52214"} +{"$label":"ACTS_IN","name":"Francesca Bonacieux","type":"Role","_key":"69453","_from":"907","_to":"42441"} +{"$label":"ACTS_IN","name":"Dora Diamond","type":"Role","_key":"64791","_from":"907","_to":"40315"} +{"$label":"ACTS_IN","name":"Kimmie","type":"Role","_key":"58138","_from":"907","_to":"36776"} +{"$label":"ACTS_IN","name":"Catherine Bourne","type":"Role","_key":"49379","_from":"907","_to":"32335"} +{"$label":"ACTS_IN","name":"Lisa Parker","type":"Role","_key":"46492","_from":"907","_to":"30698"} +{"$label":"ACTS_IN","name":"Annie Huttinger","type":"Role","_key":"23684","_from":"907","_to":"17164"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"23447","_from":"907","_to":"16996"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"18359","_from":"907","_to":"13613"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"15673","_from":"907","_to":"11948"} +{"$label":"ACTS_IN","name":"Dickie Pilager","type":"Role","_key":"117214","_from":"908","_to":"68952"} +{"$label":"ACTS_IN","name":"John Hickam","type":"Role","_key":"94630","_from":"908","_to":"55757"} +{"$label":"ACTS_IN","name":"Uncle Joe","type":"Role","_key":"53699","_from":"908","_to":"34631"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"48204","_from":"908","_to":"31667"} +{"$label":"ACTS_IN","name":"Harry Allen","type":"Role","_key":"47957","_from":"908","_to":"31551"} +{"$label":"ACTS_IN","name":"Tom Smith","type":"Role","_key":"31898","_from":"908","_to":"22252"} +{"$label":"ACTS_IN","name":"Grant Sykes","type":"Role","_key":"31099","_from":"908","_to":"21770"} +{"$label":"ACTS_IN","name":"Robert Hanssen","type":"Role","_key":"29851","_from":"908","_to":"21119"} +{"$label":"ACTS_IN","name":"John Laroche","type":"Role","_key":"23310","_from":"908","_to":"16899"} +{"$label":"ACTS_IN","name":"Alexander Conklin","type":"Role","_key":"21714","_from":"908","_to":"15869"} +{"$label":"ACTS_IN","name":"Lieutenant Gerke","type":"Role","_key":"18508","_from":"908","_to":"13701"} +{"$label":"ACTS_IN","name":"Col. Harry Burwell","type":"Role","_key":"17609","_from":"908","_to":"13147"} +{"$label":"ACTS_IN","name":"Riggs","type":"Role","_key":"15426","_from":"908","_to":"11790"} +{"$label":"ACTS_IN","name":"Frank Booker","type":"Role","_key":"6517","_from":"908","_to":"5515"} +{"$label":"ACTS_IN","name":"Alvin Dewey","type":"Role","_key":"5057","_from":"908","_to":"4294"} +{"$label":"ACTS_IN","name":"Jimmy Pope","type":"Role","_key":"3317","_from":"908","_to":"2844"} +{"$label":"ACTS_IN","name":"Jay Parkins","type":"Role","_key":"108636","_from":"909","_to":"64202"} +{"$label":"ACTS_IN","name":"Officer Kurt Walker","type":"Role","_key":"69975","_from":"909","_to":"42686"} +{"$label":"ACTS_IN","name":"Brian Shepard","type":"Role","_key":"69133","_from":"909","_to":"42292"} +{"$label":"ACTS_IN","name":"Gus Cantrell","type":"Role","_key":"56505","_from":"909","_to":"35889"} +{"$label":"ACTS_IN","name":"Dr. Bob Moore","type":"Role","_key":"18514","_from":"909","_to":"13705"} +{"$label":"ACTS_IN","name":"Michael Pappas","type":"Role","_key":"120067","_from":"910","_to":"70511"} +{"$label":"ACTS_IN","name":"Jonathan Reeves","type":"Role","_key":"108821","_from":"910","_to":"64313"} +{"$label":"ACTS_IN","name":"Donald W. Blackburn, M.D.","type":"Role","_key":"69496","_from":"910","_to":"42456"} +{"$label":"ACTS_IN","name":"Jonathan Reeves","type":"Role","_key":"64085","_from":"910","_to":"39997"} +{"$label":"ACTS_IN","name":"Larry Levy","type":"Role","_key":"63032","_from":"910","_to":"39558"} +{"$label":"ACTS_IN","name":"James 'Jimmy' Ritchie","type":"Role","_key":"53718","_from":"910","_to":"34637"} +{"$label":"ACTS_IN","name":"Wynn Park","type":"Role","_key":"22771","_from":"910","_to":"16516"} +{"$label":"ACTS_IN","name":"Atty. Dennis Riley","type":"Role","_key":"19641","_from":"910","_to":"14529"} +{"$label":"ACTS_IN","name":"Peter Callaghan","type":"Role","_key":"17952","_from":"910","_to":"13353"} +{"$label":"ACTS_IN","name":"Chuck Cedar","type":"Role","_key":"17583","_from":"910","_to":"13137"} +{"$label":"ACTS_IN","name":"John Mullany","type":"Role","_key":"13052","_from":"910","_to":"10178"} +{"$label":"ACTS_IN","name":"Stormy Weathers","type":"Role","_key":"8379","_from":"910","_to":"6847"} +{"$label":"ACTS_IN","name":"David Dokos","type":"Role","_key":"69977","_from":"911","_to":"42686"} +{"$label":"ACTS_IN","name":"Regina's Assistant","type":"Role","_key":"28165","_from":"911","_to":"20177"} +{"$label":"ACTS_IN","name":"Henry Swinton","type":"Role","_key":"7697","_from":"911","_to":"6393"} +{"$label":"ACTS_IN","name":"H. B. Ailman","type":"Role","_key":"46568","_from":"912","_to":"30757"} +{"$label":"ACTS_IN","name":"Grant's Produzent","type":"Role","_key":"23597","_from":"912","_to":"17109"} +{"$label":"ACTS_IN","name":"Kane's Father","type":"Role","_key":"1142","_from":"925","_to":"913"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"1141","_from":"924","_to":"913"} +{"$label":"ACTS_IN","name":"Kane als Kind","type":"Role","_key":"1140","_from":"923","_to":"913"} +{"$label":"ACTS_IN","name":"Mr. Rawlston","type":"Role","_key":"1139","_from":"922","_to":"913"} +{"$label":"ACTS_IN","name":"Jerry Thompson","type":"Role","_key":"1138","_from":"921","_to":"913"} +{"$label":"ACTS_IN","name":"Susan Alexander Kane","type":"Role","_key":"1137","_from":"920","_to":"913"} +{"$label":"ACTS_IN","name":"Mr. Thatcher","type":"Role","_key":"1136","_from":"919","_to":"913"} +{"$label":"ACTS_IN","name":"Mr. Bernstein","type":"Role","_key":"1135","_from":"918","_to":"913"} +{"$label":"ACTS_IN","name":"Emily Norton Kane","type":"Role","_key":"1134","_from":"917","_to":"913"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"1133","_from":"916","_to":"913"} +{"$label":"ACTS_IN","name":"Charles Foster Kane","type":"Role","_key":"1132","_from":"914","_to":"913"} +{"$label":"ACTS_IN","name":"Jedediah Leland","type":"Role","_key":"1131","_from":"915","_to":"913"} +{"$label":"DIRECTED","_key":"1130","_from":"914","_to":"913"} +{"$label":"ACTS_IN","name":"Narrator \/ Nag \/ Chuchundra (voice)","type":"Role","_key":"94393","_from":"914","_to":"55580"} +{"$label":"ACTS_IN","name":"Le Chiffre","type":"Role","_key":"88690","_from":"914","_to":"52552"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"61313","_from":"914","_to":"38701"} +{"$label":"ACTS_IN","name":"Leschenhaut","type":"Role","_key":"34883","_from":"914","_to":"23838"} +{"$label":"ACTS_IN","name":"Voice on Tape","type":"Role","_key":"34503","_from":"914","_to":"23625"} +{"$label":"ACTS_IN","name":"Konsul Nordling","type":"Role","_key":"33563","_from":"914","_to":"23204"} +{"$label":"ACTS_IN","name":"Michael O'Hara","type":"Role","_key":"28685","_from":"914","_to":"20500"} +{"$label":"ACTS_IN","name":"Albert Hastler","type":"Role","_key":"24909","_from":"914","_to":"18006"} +{"$label":"ACTS_IN","name":"Markan","type":"Role","_key":"24875","_from":"914","_to":"17986"} +{"$label":"ACTS_IN","name":"Unicron (voice)","type":"Role","_key":"16050","_from":"914","_to":"12195"} +{"$label":"ACTS_IN","name":"Police Captain Hank Quinlan","type":"Role","_key":"13418","_from":"914","_to":"10442"} +{"$label":"ACTS_IN","name":"Harry Lime","type":"Role","_key":"11957","_from":"914","_to":"9373"} +{"$label":"ACTS_IN","name":"Falstaff","type":"Role","_key":"11654","_from":"914","_to":"9155"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"11477","_from":"914","_to":"9026"} +{"$label":"ACTS_IN","name":"Cardinal Wolsey","type":"Role","_key":"10396","_from":"914","_to":"8270"} +{"$label":"DIRECTED","_key":"28683","_from":"914","_to":"20500"} +{"$label":"DIRECTED","_key":"24905","_from":"914","_to":"18006"} +{"$label":"DIRECTED","_key":"13415","_from":"914","_to":"10442"} +{"$label":"DIRECTED","_key":"11653","_from":"914","_to":"9155"} +{"$label":"DIRECTED","_key":"11467","_from":"914","_to":"9026"} +{"$label":"ACTS_IN","name":"George Loomis","type":"Role","_key":"121725","_from":"915","_to":"71514"} +{"$label":"ACTS_IN","name":"Dr. Vesalius","type":"Role","_key":"114489","_from":"915","_to":"67443"} +{"$label":"ACTS_IN","name":"Brian Cameron","type":"Role","_key":"95058","_from":"915","_to":"55955"} +{"$label":"ACTS_IN","name":"Henry L. Stimson, U.S. Secretary of War","type":"Role","_key":"68258","_from":"915","_to":"41908"} +{"$label":"ACTS_IN","name":"Dr. Drew Bayliss","type":"Role","_key":"62463","_from":"915","_to":"39339"} +{"$label":"ACTS_IN","name":"Nicholas St. Downs III","type":"Role","_key":"46014","_from":"915","_to":"30412"} +{"$label":"ACTS_IN","name":"Baron Otto von Kleist \/ Alfred Becker","type":"Role","_key":"37427","_from":"915","_to":"25362"} +{"$label":"ACTS_IN","name":"Sam Flusky","type":"Role","_key":"29895","_from":"915","_to":"21141"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"26171","_from":"915","_to":"18800"} +{"$label":"ACTS_IN","name":"Coroner (uncredited)","type":"Role","_key":"13434","_from":"915","_to":"10442"} +{"$label":"ACTS_IN","name":"Holly Martins","type":"Role","_key":"11955","_from":"915","_to":"9373"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"11469","_from":"915","_to":"9026"} +{"$label":"ACTS_IN","name":"Aggie (Kildare's governess)","type":"Role","_key":"113427","_from":"916","_to":"66828"} +{"$label":"ACTS_IN","name":"Madge Rapf","type":"Role","_key":"108179","_from":"916","_to":"63933"} +{"$label":"ACTS_IN","name":"The Goose","type":"Role","_key":"103459","_from":"916","_to":"60852"} +{"$label":"ACTS_IN","name":"Nancy Ashford","type":"Role","_key":"94603","_from":"916","_to":"55738"} +{"$label":"ACTS_IN","name":"Velma Cruther","type":"Role","_key":"62462","_from":"916","_to":"39339"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"11473","_from":"916","_to":"9026"} +{"$label":"ACTS_IN","name":"Arthur Bannister","type":"Role","_key":"28686","_from":"918","_to":"20500"} +{"$label":"ACTS_IN","name":"Dr. Brock","type":"Role","_key":"16243","_from":"918","_to":"12325"} +{"$label":"ACTS_IN","name":"Cardenas","type":"Role","_key":"38704","_from":"919","_to":"26145"} +{"$label":"ACTS_IN","name":"Francine Rogers","type":"Role","_key":"28958","_from":"920","_to":"20682"} +{"$label":"ACTS_IN","name":"Charlie LeGrand","type":"Role","_key":"116926","_from":"924","_to":"68828"} +{"$label":"ACTS_IN","name":"Carl Evello","type":"Role","_key":"114665","_from":"924","_to":"67551"} +{"$label":"ACTS_IN","name":"Major \"Doc\" Kaiser (flight surgeon)","type":"Role","_key":"104686","_from":"924","_to":"61589"} +{"$label":"ACTS_IN","name":"Julio Scallini","type":"Role","_key":"41621","_from":"924","_to":"27943"} +{"$label":"ACTS_IN","name":"Qu\u00e4stor","type":"Role","_key":"21268","_from":"924","_to":"15553"} +{"$label":"ACTS_IN","name":"Smokestack the Train Engineer","type":"Role","_key":"117556","_from":"925","_to":"69116"} +{"$label":"ACTS_IN","name":"Steve Finnerty","type":"Role","_key":"109915","_from":"925","_to":"64940"} +{"$label":"ACTS_IN","name":"Cab Driver","type":"Role","_key":"28694","_from":"925","_to":"20500"} +{"$label":"ACTS_IN","name":"Chief Gould","type":"Role","_key":"13431","_from":"925","_to":"10442"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"4034","_from":"925","_to":"3434"} +{"$label":"ACTS_IN","name":"Woman on Night Shift","type":"Role","_key":"1164","_from":"944","_to":"926"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"1162","_from":"943","_to":"926"} +{"$label":"ACTS_IN","name":"Angry Man","type":"Role","_key":"1161","_from":"942","_to":"926"} +{"$label":"ACTS_IN","name":"Suzan","type":"Role","_key":"1160","_from":"941","_to":"926"} +{"$label":"ACTS_IN","name":"Defense Attorney","type":"Role","_key":"1159","_from":"940","_to":"926"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"1158","_from":"939","_to":"926"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"1157","_from":"938","_to":"926"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"1156","_from":"937","_to":"926"} +{"$label":"ACTS_IN","name":"Dr. Porkorny","type":"Role","_key":"1155","_from":"936","_to":"926"} +{"$label":"ACTS_IN","name":"District Attorney","type":"Role","_key":"1154","_from":"935","_to":"926"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"1152","_from":"934","_to":"926"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"1151","_from":"933","_to":"926"} +{"$label":"ACTS_IN","name":"Gene Jezkova","type":"Role","_key":"1150","_from":"932","_to":"926"} +{"$label":"ACTS_IN","name":"Linda Houston","type":"Role","_key":"1149","_from":"931","_to":"926"} +{"$label":"ACTS_IN","name":"Oldrich Novy","type":"Role","_key":"1148","_from":"930","_to":"926"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"1145","_from":"929","_to":"926"} +{"$label":"ACTS_IN","name":"Selma Jezkova","type":"Role","_key":"1144","_from":"928","_to":"926"} +{"$label":"DIRECTED","_key":"1143","_from":"927","_to":"926"} +{"$label":"DIRECTED","_key":"113328","_from":"927","_to":"66761"} +{"$label":"DIRECTED","_key":"89656","_from":"927","_to":"53067"} +{"$label":"DIRECTED","_key":"52372","_from":"927","_to":"34082"} +{"$label":"DIRECTED","_key":"52358","_from":"927","_to":"34076"} +{"$label":"DIRECTED","_key":"36433","_from":"927","_to":"24720"} +{"$label":"DIRECTED","_key":"16938","_from":"927","_to":"12722"} +{"$label":"DIRECTED","_key":"16929","_from":"927","_to":"12720"} +{"$label":"DIRECTED","_key":"6599","_from":"927","_to":"5579"} +{"$label":"DIRECTED","_key":"5634","_from":"927","_to":"4779"} +{"$label":"DIRECTED","_key":"2299","_from":"927","_to":"2028"} +{"$label":"ACTS_IN","name":"Himself - Obstructor \/ Lars von Trier","type":"Role","_key":"89658","_from":"927","_to":"53067"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"36443","_from":"927","_to":"24720"} +{"$label":"ACTS_IN","name":"sie selbst","type":"Role","_key":"28171","_from":"928","_to":"20177"} +{"$label":"ACTS_IN","name":"Vivianne","type":"Role","_key":"104418","_from":"929","_to":"61422"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104409","_from":"929","_to":"61420"} +{"$label":"ACTS_IN","name":"Miriam Blaylock","type":"Role","_key":"71322","_from":"929","_to":"43264"} +{"$label":"ACTS_IN","name":"Carole Ledoux","type":"Role","_key":"70104","_from":"929","_to":"42740"} +{"$label":"ACTS_IN","name":"The Queen","type":"Role","_key":"69452","_from":"929","_to":"42441"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51542","_from":"929","_to":"33614"} +{"$label":"ACTS_IN","name":"Junon","type":"Role","_key":"51343","_from":"929","_to":"33480"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Emery","type":"Role","_key":"40841","_from":"929","_to":"27492"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"39443","_from":"929","_to":"26661"} +{"$label":"ACTS_IN","name":"la princesse \"Peau d'\u00e2ne\"","type":"Role","_key":"37889","_from":"929","_to":"25666"} +{"$label":"ACTS_IN","name":"Nicole Britton","type":"Role","_key":"35392","_from":"929","_to":"24086"} +{"$label":"ACTS_IN","name":"Dany","type":"Role","_key":"34634","_from":"929","_to":"23697"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"34290","_from":"929","_to":"23529"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"30703","_from":"929","_to":"21541"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"30001","_from":"929","_to":"21173"} +{"$label":"ACTS_IN","name":"Catherine Deneuve","type":"Role","_key":"29494","_from":"929","_to":"20909"} +{"$label":"ACTS_IN","name":"Eliane Devries","type":"Role","_key":"23100","_from":"929","_to":"16748"} +{"$label":"ACTS_IN","name":"Delphine Garnier","type":"Role","_key":"21313","_from":"929","_to":"15589"} +{"$label":"ACTS_IN","name":"Amanda Weber","type":"Role","_key":"20862","_from":"929","_to":"15264"} +{"$label":"ACTS_IN","name":"Mutter (voice)","type":"Role","_key":"17459","_from":"929","_to":"13055"} +{"$label":"ACTS_IN","name":"Gaby","type":"Role","_key":"16975","_from":"929","_to":"12738"} +{"$label":"ACTS_IN","name":"Marion Steiner","type":"Role","_key":"15174","_from":"929","_to":"11631"} +{"$label":"ACTS_IN","name":"Julie Roussel\/Marion Vergano","type":"Role","_key":"14663","_from":"929","_to":"11289"} +{"$label":"ACTS_IN","name":"S\u00e9verine Serizy","type":"Role","_key":"7750","_from":"929","_to":"6441"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109934","_from":"930","_to":"64954"} +{"$label":"ACTS_IN","name":"Master of Ceremonies","type":"Role","_key":"65773","_from":"930","_to":"40710"} +{"$label":"ACTS_IN","name":"Chiun","type":"Role","_key":"64033","_from":"930","_to":"39969"} +{"$label":"ACTS_IN","name":"Burgel","type":"Role","_key":"20166","_from":"930","_to":"14795"} +{"$label":"ACTS_IN","name":"Kasia","type":"Role","_key":"48702","_from":"931","_to":"31945"} +{"$label":"ACTS_IN","name":"Amelia Kavan","type":"Role","_key":"23312","_from":"931","_to":"16899"} +{"$label":"ACTS_IN","name":"Christie","type":"Role","_key":"12549","_from":"931","_to":"9822"} +{"$label":"ACTS_IN","name":"Pat Archer","type":"Role","_key":"3018","_from":"931","_to":"2567"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"104463","_from":"933","_to":"61441"} +{"$label":"ACTS_IN","name":"Leopold Kessler","type":"Role","_key":"52368","_from":"933","_to":"34082"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"36444","_from":"933","_to":"24720"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"28358","_from":"933","_to":"20286"} +{"$label":"ACTS_IN","name":"Man with the big Hat","type":"Role","_key":"6603","_from":"933","_to":"5579"} +{"$label":"ACTS_IN","name":"Didier","type":"Role","_key":"4799","_from":"933","_to":"4099"} +{"$label":"ACTS_IN","name":"Jacques Mayol","type":"Role","_key":"2691","_from":"933","_to":"2335"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"2303","_from":"933","_to":"2028"} +{"$label":"DIRECTED","_key":"91815","_from":"933","_to":"54162"} +{"$label":"DIRECTED","_key":"64645","_from":"933","_to":"40271"} +{"$label":"ACTS_IN","name":"Eddie Jacobsen","type":"Role","_key":"110406","_from":"935","_to":"65230"} +{"$label":"ACTS_IN","name":"Lt. Col. Gary Harrell","type":"Role","_key":"10151","_from":"935","_to":"8112"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"6613","_from":"935","_to":"5579"} +{"$label":"ACTS_IN","name":"Lorenzini","type":"Role","_key":"118325","_from":"936","_to":"69555"} +{"$label":"ACTS_IN","name":"Derrick","type":"Role","_key":"111152","_from":"936","_to":"65647"} +{"$label":"ACTS_IN","name":"Radley","type":"Role","_key":"110657","_from":"936","_to":"65370"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"104935","_from":"936","_to":"61746"} +{"$label":"ACTS_IN","name":"Father Johannes","type":"Role","_key":"103592","_from":"936","_to":"60927"} +{"$label":"ACTS_IN","name":"Dr. Frank Mandel","type":"Role","_key":"72691","_from":"936","_to":"43802"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"71969","_from":"936","_to":"43534"} +{"$label":"ACTS_IN","name":"Albin Grau","type":"Role","_key":"66401","_from":"936","_to":"41065"} +{"$label":"ACTS_IN","name":"Capt. Varna","type":"Role","_key":"66095","_from":"936","_to":"40893"} +{"$label":"ACTS_IN","name":"Rev. Karl Hartman","type":"Role","_key":"59001","_from":"936","_to":"37245"} +{"$label":"ACTS_IN","name":"Head Priest","type":"Role","_key":"58340","_from":"936","_to":"36876"} +{"$label":"ACTS_IN","name":"Regal Monk","type":"Role","_key":"58182","_from":"936","_to":"36805"} +{"$label":"ACTS_IN","name":"Polidori","type":"Role","_key":"54580","_from":"936","_to":"34969"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54346","_from":"936","_to":"34866"} +{"$label":"ACTS_IN","name":"Lawrence Hartmann","type":"Role","_key":"52370","_from":"936","_to":"34082"} +{"$label":"ACTS_IN","name":"Schultz","type":"Role","_key":"51316","_from":"936","_to":"33466"} +{"$label":"ACTS_IN","name":"N\u00e1rcisz","type":"Role","_key":"50822","_from":"936","_to":"33167"} +{"$label":"ACTS_IN","name":"Dr. Krieger","type":"Role","_key":"47530","_from":"936","_to":"31322"} +{"$label":"ACTS_IN","name":"Minister \/ Kali","type":"Role","_key":"44105","_from":"936","_to":"29408"} +{"$label":"ACTS_IN","name":"Sligon","type":"Role","_key":"42761","_from":"936","_to":"28616"} +{"$label":"ACTS_IN","name":"Designer","type":"Role","_key":"36991","_from":"936","_to":"25075"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"32697","_from":"936","_to":"22714"} +{"$label":"ACTS_IN","name":"Ron Camp","type":"Role","_key":"25238","_from":"936","_to":"18207"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"25222","_from":"936","_to":"18195"} +{"$label":"ACTS_IN","name":"Dr. Lawerence","type":"Role","_key":"20050","_from":"936","_to":"14745"} +{"$label":"ACTS_IN","name":"Morgan Walker","type":"Role","_key":"18107","_from":"936","_to":"13441"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"16939","_from":"936","_to":"12722"} +{"$label":"ACTS_IN","name":"Mr. Kirspe","type":"Role","_key":"16935","_from":"936","_to":"12720"} +{"$label":"ACTS_IN","name":"Man in the Coat","type":"Role","_key":"6615","_from":"936","_to":"5579"} +{"$label":"ACTS_IN","name":"Drewitz","type":"Role","_key":"3788","_from":"936","_to":"3243"} +{"$label":"ACTS_IN","name":"Sadistic Sailor","type":"Role","_key":"2307","_from":"936","_to":"2028"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"106050","_from":"937","_to":"62450"} +{"$label":"ACTS_IN","name":"Svend E, Direktoren for det hele, Kristoffe","type":"Role","_key":"36434","_from":"937","_to":"24720"} +{"$label":"ACTS_IN","name":"Stoffer","type":"Role","_key":"5606","_from":"937","_to":"4779"} +{"$label":"ACTS_IN","name":"Chief Sidney Green","type":"Role","_key":"52218","_from":"943","_to":"34016"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"6614","_from":"943","_to":"5579"} +{"$label":"ACTS_IN","name":"Thea Barfoed","type":"Role","_key":"119627","_from":"944","_to":"70270"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"118063","_from":"944","_to":"69393"} +{"$label":"ACTS_IN","name":"Sigrid","type":"Role","_key":"106060","_from":"944","_to":"62457"} +{"$label":"ACTS_IN","name":"Moderen (voice)","type":"Role","_key":"90583","_from":"944","_to":"53500"} +{"$label":"ACTS_IN","name":"Vikaren","type":"Role","_key":"89377","_from":"944","_to":"52901"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"11797","_from":"944","_to":"9254"} +{"$label":"ACTS_IN","name":"High Class Lady","type":"Role","_key":"5616","_from":"944","_to":"4779"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"4278","_from":"944","_to":"3644"} +{"$label":"ACTS_IN","name":"Pernille","type":"Role","_key":"2222","_from":"944","_to":"1953"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"1853","_from":"944","_to":"1607"} +{"$label":"ACTS_IN","name":"Ebril","type":"Role","_key":"1172","_from":"952","_to":"945"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"1171","_from":"951","_to":"945"} +{"$label":"ACTS_IN","name":"Ebril","type":"Role","_key":"1170","_from":"950","_to":"945"} +{"$label":"ACTS_IN","name":"Dafydd","type":"Role","_key":"1169","_from":"949","_to":"945"} +{"$label":"ACTS_IN","name":"Rowan","type":"Role","_key":"1168","_from":"948","_to":"945"} +{"$label":"ACTS_IN","name":"Ad\u00e8le","type":"Role","_key":"1167","_from":"947","_to":"945"} +{"$label":"DIRECTED","_key":"1165","_from":"946","_to":"945"} +{"$label":"DIRECTED","_key":"57510","_from":"946","_to":"36439"} +{"$label":"ACTS_IN","name":"Nora Allardyce","type":"Role","_key":"117217","_from":"947","_to":"68952"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115625","_from":"947","_to":"68069"} +{"$label":"ACTS_IN","name":"Suzi Loomis","type":"Role","_key":"114835","_from":"947","_to":"67644"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"109201","_from":"947","_to":"64518"} +{"$label":"ACTS_IN","name":"Nell McLaughlin","type":"Role","_key":"98108","_from":"947","_to":"57764"} +{"$label":"ACTS_IN","name":"Abby Randall","type":"Role","_key":"93588","_from":"947","_to":"55111"} +{"$label":"ACTS_IN","name":"Natalie Belisario","type":"Role","_key":"65400","_from":"947","_to":"40556"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"61564","_from":"947","_to":"38809"} +{"$label":"ACTS_IN","name":"Dr Alex Sabian","type":"Role","_key":"51803","_from":"947","_to":"33802"} +{"$label":"ACTS_IN","name":"Lil","type":"Role","_key":"42828","_from":"947","_to":"28637"} +{"$label":"ACTS_IN","name":"Jocelyn","type":"Role","_key":"40652","_from":"947","_to":"27371"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"18418","_from":"947","_to":"13655"} +{"$label":"ACTS_IN","name":"Donna McLoughlin","type":"Role","_key":"15996","_from":"947","_to":"12161"} +{"$label":"ACTS_IN","name":"Evelyn O\u2019Connell","type":"Role","_key":"15338","_from":"947","_to":"11730"} +{"$label":"ACTS_IN","name":"Amy Rainey","type":"Role","_key":"14051","_from":"947","_to":"10896"} +{"$label":"ACTS_IN","name":"Edie Stall","type":"Role","_key":"1340","_from":"947","_to":"1120"} +{"$label":"ACTS_IN","name":"God","type":"Role","_key":"88845","_from":"949","_to":"52643"} +{"$label":"ACTS_IN","name":"Joab","type":"Role","_key":"23126","_from":"949","_to":"16763"} +{"$label":"ACTS_IN","name":"Zerak","type":"Role","_key":"22985","_from":"949","_to":"16666"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"19556","_from":"949","_to":"14466"} +{"$label":"ACTS_IN","name":"Little Rock","type":"Role","_key":"121460","_from":"952","_to":"71351"} +{"$label":"ACTS_IN","name":"Emily Rose","type":"Role","_key":"101169","_from":"952","_to":"59602"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"96249","_from":"952","_to":"56561"} +{"$label":"ACTS_IN","name":"Kira Bedik","type":"Role","_key":"94645","_from":"952","_to":"55764"} +{"$label":"ACTS_IN","name":"Nim Rusoe","type":"Role","_key":"63629","_from":"952","_to":"39806"} +{"$label":"ACTS_IN","name":"Andromeda Fitzgerald","type":"Role","_key":"59533","_from":"952","_to":"37583"} +{"$label":"ACTS_IN","name":"Rosebud","type":"Role","_key":"58777","_from":"952","_to":"37126"} +{"$label":"ACTS_IN","name":"Maya Hayes","type":"Role","_key":"49484","_from":"952","_to":"32398"} +{"$label":"ACTS_IN","name":"Kit Kittredge","type":"Role","_key":"49300","_from":"952","_to":"32288"} +{"$label":"ACTS_IN","name":"Sarah Davis","type":"Role","_key":"32943","_from":"952","_to":"22845"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"28396","_from":"952","_to":"20316"} +{"$label":"ACTS_IN","name":"Bo Hess","type":"Role","_key":"22693","_from":"952","_to":"16465"} +{"$label":"ACTS_IN","name":"Olive","type":"Role","_key":"9106","_from":"952","_to":"7360"} +{"$label":"ACTS_IN","name":"Mr. Kim","type":"Role","_key":"1187","_from":"964","_to":"953"} +{"$label":"ACTS_IN","name":"Mactilburgh","type":"Role","_key":"1186","_from":"963","_to":"953"} +{"$label":"ACTS_IN","name":"Mugger","type":"Role","_key":"1185","_from":"962","_to":"953"} +{"$label":"ACTS_IN","name":"Professor Pacoli","type":"Role","_key":"1184","_from":"961","_to":"953"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"1183","_from":"960","_to":"953"} +{"$label":"ACTS_IN","name":"Fog","type":"Role","_key":"1182","_from":"959","_to":"953"} +{"$label":"ACTS_IN","name":"President Lindberg","type":"Role","_key":"1181","_from":"958","_to":"953"} +{"$label":"ACTS_IN","name":"General Munro","type":"Role","_key":"1180","_from":"957","_to":"953"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"1179","_from":"956","_to":"953"} +{"$label":"ACTS_IN","name":"Ruby Rhod","type":"Role","_key":"1178","_from":"955","_to":"953"} +{"$label":"ACTS_IN","name":"Leeloo","type":"Role","_key":"1175","_from":"954","_to":"953"} +{"$label":"ACTS_IN","name":"Fangora \"Fanny\" Gurkel","type":"Role","_key":"114311","_from":"954","_to":"67334"} +{"$label":"ACTS_IN","name":"Maya Carlton","type":"Role","_key":"101034","_from":"954","_to":"59542"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"98338","_from":"954","_to":"57917"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"97309","_from":"954","_to":"57291"} +{"$label":"ACTS_IN","name":"Cydney","type":"Role","_key":"89303","_from":"954","_to":"52867"} +{"$label":"ACTS_IN","name":"Mildred Harris","type":"Role","_key":"63344","_from":"954","_to":"39698"} +{"$label":"ACTS_IN","name":"Jeanne d\u2019Arc","type":"Role","_key":"59897","_from":"954","_to":"37823"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"58072","_from":"954","_to":"36741"} +{"$label":"ACTS_IN","name":"Michelle Burroughs","type":"Role","_key":"54769","_from":"954","_to":"35048"} +{"$label":"ACTS_IN","name":"Dakota Burns","type":"Role","_key":"54053","_from":"954","_to":"34766"} +{"$label":"ACTS_IN","name":"Katinka","type":"Role","_key":"53609","_from":"954","_to":"34590"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51307","_from":"954","_to":"33463"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"47274","_from":"954","_to":"31150"} +{"$label":"ACTS_IN","name":"Samantha Delongpre","type":"Role","_key":"36616","_from":"954","_to":"24811"} +{"$label":"ACTS_IN","name":"Erin","type":"Role","_key":"17520","_from":"954","_to":"13100"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"13951","_from":"954","_to":"10820"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"13944","_from":"954","_to":"10818"} +{"$label":"ACTS_IN","name":"Eloise","type":"Role","_key":"4412","_from":"954","_to":"3774"} +{"$label":"ACTS_IN","name":"Johhny Booze","type":"Role","_key":"107087","_from":"955","_to":"63144"} +{"$label":"ACTS_IN","name":"Skip","type":"Role","_key":"69863","_from":"955","_to":"42631"} +{"$label":"ACTS_IN","name":"Smokey","type":"Role","_key":"64733","_from":"955","_to":"40300"} +{"$label":"ACTS_IN","name":"Franklin Hatchett","type":"Role","_key":"53728","_from":"955","_to":"34641"} +{"$label":"ACTS_IN","name":"Det. James Carter","type":"Role","_key":"36257","_from":"955","_to":"24603"} +{"$label":"ACTS_IN","name":"Det. James Carter","type":"Role","_key":"36247","_from":"955","_to":"24600"} +{"$label":"ACTS_IN","name":"Detec. James Carter","type":"Role","_key":"18389","_from":"955","_to":"13635"} +{"$label":"ACTS_IN","name":"Beaumont Livingston","type":"Role","_key":"2798","_from":"955","_to":"2421"} +{"$label":"ACTS_IN","name":"Lane Frost","type":"Role","_key":"114810","_from":"956","_to":"67628"} +{"$label":"ACTS_IN","name":"Oliver Pike","type":"Role","_key":"61704","_from":"956","_to":"38864"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"18211","_from":"956","_to":"13508"} +{"$label":"ACTS_IN","name":"Karsthans","type":"Role","_key":"91474","_from":"957","_to":"53933"} +{"$label":"ACTS_IN","name":"Krasnov","type":"Role","_key":"90909","_from":"957","_to":"53628"} +{"$label":"ACTS_IN","name":"Stubbs","type":"Role","_key":"72450","_from":"957","_to":"43724"} +{"$label":"ACTS_IN","name":"Ben Kehoe","type":"Role","_key":"70962","_from":"957","_to":"43104"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"64525","_from":"957","_to":"40189"} +{"$label":"ACTS_IN","name":"Joel Levison","type":"Role","_key":"63033","_from":"957","_to":"39558"} +{"$label":"ACTS_IN","name":"Requin","type":"Role","_key":"55086","_from":"957","_to":"35180"} +{"$label":"ACTS_IN","name":"Glen Grunski","type":"Role","_key":"38562","_from":"957","_to":"26054"} +{"$label":"ACTS_IN","name":"Anthony Lazarus","type":"Role","_key":"22258","_from":"957","_to":"16202"} +{"$label":"ACTS_IN","name":"Nassim","type":"Role","_key":"18018","_from":"957","_to":"13394"} +{"$label":"ACTS_IN","name":"Ben Kehoe","type":"Role","_key":"2378","_from":"957","_to":"2088"} +{"$label":"ACTS_IN","name":"Leon Kowalski","type":"Role","_key":"1558","_from":"957","_to":"1321"} +{"$label":"ACTS_IN","name":"Hegai, the Royal Eunuch","type":"Role","_key":"102682","_from":"958","_to":"60410"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"94351","_from":"958","_to":"55558"} +{"$label":"ACTS_IN","name":"Humvee","type":"Role","_key":"66094","_from":"958","_to":"40893"} +{"$label":"ACTS_IN","name":"Deebo","type":"Role","_key":"64735","_from":"958","_to":"40300"} +{"$label":"ACTS_IN","name":"Debo","type":"Role","_key":"63521","_from":"958","_to":"39764"} +{"$label":"ACTS_IN","name":"Cassius","type":"Role","_key":"55493","_from":"958","_to":"35362"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"2801","_from":"958","_to":"2421"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111662","_from":"959","_to":"65925"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"110370","_from":"959","_to":"65216"} +{"$label":"ACTS_IN","name":"Train","type":"Role","_key":"109297","_from":"959","_to":"64568"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106856","_from":"959","_to":"62994"} +{"$label":"ACTS_IN","name":"Sean Veil","type":"Role","_key":"90599","_from":"959","_to":"53506"} +{"$label":"ACTS_IN","name":"Delbert Butterfield","type":"Role","_key":"66729","_from":"959","_to":"41220"} +{"$label":"ACTS_IN","name":"Arthur Watson","type":"Role","_key":"64505","_from":"959","_to":"40185"} +{"$label":"ACTS_IN","name":"Lars Smuntz","type":"Role","_key":"42831","_from":"959","_to":"28641"} +{"$label":"ACTS_IN","name":"Tucker\/Norman Phipps","type":"Role","_key":"6491","_from":"959","_to":"5497"} +{"$label":"ACTS_IN","name":"Billy Reynolds","type":"Role","_key":"116017","_from":"960","_to":"68318"} +{"$label":"ACTS_IN","name":"Bhuta","type":"Role","_key":"101940","_from":"961","_to":"59994"} +{"$label":"DIRECTED","_key":"54169","_from":"962","_to":"34803"} +{"$label":"DIRECTED","_key":"53470","_from":"962","_to":"34540"} +{"$label":"DIRECTED","_key":"35217","_from":"962","_to":"23991"} +{"$label":"DIRECTED","_key":"29171","_from":"962","_to":"20772"} +{"$label":"DIRECTED","_key":"5154","_from":"962","_to":"4384"} +{"$label":"ACTS_IN","name":"Riccardo Fontana","type":"Role","_key":"52251","_from":"962","_to":"34027"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"18137","_from":"962","_to":"13461"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"7245","_from":"962","_to":"6053"} +{"$label":"ACTS_IN","name":"Le jeune skinhead","type":"Role","_key":"5167","_from":"962","_to":"4384"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"103078","_from":"963","_to":"60631"} +{"$label":"ACTS_IN","name":"Pappy","type":"Role","_key":"90496","_from":"963","_to":"53461"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"48119","_from":"963","_to":"31620"} +{"$label":"ACTS_IN","name":"Sgt. Heydrich","type":"Role","_key":"46742","_from":"963","_to":"30841"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"6381","_from":"963","_to":"5389"} +{"$label":"ACTS_IN","name":"Benny Wong","type":"Role","_key":"53970","_from":"964","_to":"34719"} +{"$label":"ACTS_IN","name":"Benny Chan","type":"Role","_key":"11264","_from":"964","_to":"8897"} +{"$label":"ACTS_IN","name":"Johann 'Joh' Fredersen","type":"Role","_key":"1202","_from":"980","_to":"965"} +{"$label":"ACTS_IN","name":"Frau im Wagen","type":"Role","_key":"1201","_from":"979","_to":"965"} +{"$label":"ACTS_IN","name":"Zeremonienmeister","type":"Role","_key":"1200","_from":"978","_to":"965"} +{"$label":"ACTS_IN","name":"Arbeiterfrau","type":"Role","_key":"1199","_from":"977","_to":"965"} +{"$label":"ACTS_IN","name":"Marinus","type":"Role","_key":"1198","_from":"976","_to":"965"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"1197","_from":"975","_to":"965"} +{"$label":"ACTS_IN","name":"Grot","type":"Role","_key":"1196","_from":"974","_to":"965"} +{"$label":"ACTS_IN","name":"No. 11811","type":"Role","_key":"1195","_from":"973","_to":"965"} +{"$label":"ACTS_IN","name":"Josaphat - Joseph","type":"Role","_key":"1194","_from":"972","_to":"965"} +{"$label":"ACTS_IN","name":"Der Schmale","type":"Role","_key":"1193","_from":"971","_to":"965"} +{"$label":"ACTS_IN","name":"C.A. Rotwang, the inventor","type":"Role","_key":"1192","_from":"970","_to":"965"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"1191","_from":"969","_to":"965"} +{"$label":"ACTS_IN","name":"Freder Fredersen","type":"Role","_key":"1190","_from":"968","_to":"965"} +{"$label":"ACTS_IN","name":"Kreativer Mensch","type":"Role","_key":"1189","_from":"967","_to":"965"} +{"$label":"DIRECTED","_key":"1188","_from":"966","_to":"965"} +{"$label":"DIRECTED","_key":"118832","_from":"966","_to":"69853"} +{"$label":"DIRECTED","_key":"111247","_from":"966","_to":"65692"} +{"$label":"DIRECTED","_key":"111005","_from":"966","_to":"65563"} +{"$label":"DIRECTED","_key":"101114","_from":"966","_to":"59577"} +{"$label":"DIRECTED","_key":"100918","_from":"966","_to":"59488"} +{"$label":"DIRECTED","_key":"88672","_from":"966","_to":"52545"} +{"$label":"DIRECTED","_key":"40970","_from":"966","_to":"27564"} +{"$label":"DIRECTED","_key":"24887","_from":"966","_to":"17994"} +{"$label":"DIRECTED","_key":"9830","_from":"966","_to":"7883"} +{"$label":"DIRECTED","_key":"6717","_from":"966","_to":"5646"} +{"$label":"ACTS_IN","name":"Fritz Lang","type":"Role","_key":"3796","_from":"966","_to":"3253"} +{"$label":"ACTS_IN","name":"Rasmussen","type":"Role","_key":"40296","_from":"967","_to":"27184"} +{"$label":"ACTS_IN","name":"Dr. Thomas Martin","type":"Role","_key":"45968","_from":"968","_to":"30392"} +{"$label":"ACTS_IN","name":"Walter K\u00f6nig","type":"Role","_key":"45341","_from":"968","_to":"30073"} +{"$label":"ACTS_IN","name":"Julien de Costa","type":"Role","_key":"44926","_from":"968","_to":"29874"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"31930","_from":"968","_to":"22272"} +{"$label":"ACTS_IN","name":"Antinea","type":"Role","_key":"27282","_from":"969","_to":"19614"} +{"$label":"ACTS_IN","name":"Bar Girl","type":"Role","_key":"24537","_from":"969","_to":"17750"} +{"$label":"ACTS_IN","name":"Alraune ten Brinken","type":"Role","_key":"24524","_from":"969","_to":"17739"} +{"$label":"ACTS_IN","name":"Dr. Mabuse","type":"Role","_key":"88673","_from":"970","_to":"52545"} +{"$label":"ACTS_IN","name":"Dr. Mabuse","type":"Role","_key":"40971","_from":"970","_to":"27564"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"3386","_from":"970","_to":"2895"} +{"$label":"ACTS_IN","name":"Ezra Maitland","type":"Role","_key":"44806","_from":"971","_to":"29804"} +{"$label":"ACTS_IN","name":"Lord Babberley","type":"Role","_key":"41020","_from":"971","_to":"27598"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"40290","_from":"971","_to":"27184"} +{"$label":"ACTS_IN","name":"Lord Godley Long","type":"Role","_key":"38153","_from":"971","_to":"25795"} +{"$label":"ACTS_IN","name":"Grundeis","type":"Role","_key":"32459","_from":"971","_to":"22575"} +{"$label":"ACTS_IN","name":"Tanner","type":"Role","_key":"27572","_from":"971","_to":"19773"} +{"$label":"ACTS_IN","name":"Walt Turner","type":"Role","_key":"24891","_from":"971","_to":"17994"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"44935","_from":"972","_to":"29874"} +{"$label":"ACTS_IN","name":"Benedikt Oberbucher","type":"Role","_key":"44428","_from":"972","_to":"29598"} +{"$label":"ACTS_IN","name":"Tiberg","type":"Role","_key":"41935","_from":"972","_to":"28098"} +{"$label":"ACTS_IN","name":"John Carstens","type":"Role","_key":"40105","_from":"972","_to":"27068"} +{"$label":"ACTS_IN","name":"Sven Friedland","type":"Role","_key":"24457","_from":"972","_to":"17686"} +{"$label":"ACTS_IN","name":"Sven Friedland","type":"Role","_key":"24448","_from":"972","_to":"17685"} +{"$label":"ACTS_IN","name":"Sven Friedland","type":"Role","_key":"24423","_from":"972","_to":"17674"} +{"$label":"ACTS_IN","name":"Sven Friedland","type":"Role","_key":"24412","_from":"972","_to":"17669"} +{"$label":"ACTS_IN","name":"Sven Friedland","type":"Role","_key":"24397","_from":"972","_to":"17653"} +{"$label":"ACTS_IN","name":"Inspector Groeber","type":"Role","_key":"9835","_from":"972","_to":"7883"} +{"$label":"ACTS_IN","name":"Nettelbeck","type":"Role","_key":"49587","_from":"974","_to":"32463"} +{"$label":"ACTS_IN","name":"Karl Alexander, Herzog von W\u00fcrttemberg","type":"Role","_key":"49583","_from":"974","_to":"32460"} +{"$label":"ACTS_IN","name":"Mieter","type":"Role","_key":"24897","_from":"978","_to":"17994"} +{"$label":"ACTS_IN","name":"Guide","type":"Role","_key":"41161","_from":"980","_to":"27693"} +{"$label":"ACTS_IN","name":"Graf Told","type":"Role","_key":"40974","_from":"980","_to":"27564"} +{"$label":"ACTS_IN","name":"Camille Mart\u00ednez","type":"Role","_key":"1214","_from":"993","_to":"981"} +{"$label":"ACTS_IN","name":"Patsy","type":"Role","_key":"1213","_from":"992","_to":"981"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"1212","_from":"991","_to":"981"} +{"$label":"ACTS_IN","name":"Dr. Thompson","type":"Role","_key":"1211","_from":"990","_to":"981"} +{"$label":"ACTS_IN","name":"Hairdresser","type":"Role","_key":"1210","_from":"989","_to":"981"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"1209","_from":"988","_to":"981"} +{"$label":"ACTS_IN","name":"Ann's Mother","type":"Role","_key":"1208","_from":"987","_to":"981"} +{"$label":"ACTS_IN","name":"Neighbor Ann","type":"Role","_key":"1207","_from":"986","_to":"981"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"1206","_from":"985","_to":"981"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"1205","_from":"984","_to":"981"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"1204","_from":"983","_to":"981"} +{"$label":"DIRECTED","_key":"1203","_from":"982","_to":"981"} +{"$label":"DIRECTED","_key":"71453","_from":"982","_to":"43319"} +{"$label":"DIRECTED","_key":"19839","_from":"982","_to":"14635"} +{"$label":"DIRECTED","_key":"2342","_from":"982","_to":"2066"} +{"$label":"ACTS_IN","name":"Jennifer 'Jenny' Wheeler","type":"Role","_key":"107209","_from":"983","_to":"63230"} +{"$label":"ACTS_IN","name":"Sally Salt","type":"Role","_key":"100547","_from":"983","_to":"59305"} +{"$label":"ACTS_IN","name":"Maren Hontvedt","type":"Role","_key":"95048","_from":"983","_to":"55951"} +{"$label":"ACTS_IN","name":"Molly Monaghan","type":"Role","_key":"94205","_from":"983","_to":"55472"} +{"$label":"ACTS_IN","name":"Clair","type":"Role","_key":"70892","_from":"983","_to":"43076"} +{"$label":"ACTS_IN","name":"Nicole Burnell","type":"Role","_key":"61764","_from":"983","_to":"38889"} +{"$label":"ACTS_IN","name":"Ronna","type":"Role","_key":"53807","_from":"983","_to":"34669"} +{"$label":"ACTS_IN","name":"Sky","type":"Role","_key":"27642","_from":"983","_to":"19813"} +{"$label":"ACTS_IN","name":"Merle","type":"Role","_key":"16885","_from":"983","_to":"12696"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"10991","_from":"983","_to":"8707"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"2343","_from":"983","_to":"2066"} +{"$label":"DIRECTED","_key":"16591","_from":"983","_to":"12537"} +{"$label":"ACTS_IN","name":"Miss Ridley","type":"Role","_key":"101722","_from":"984","_to":"59867"} +{"$label":"ACTS_IN","name":"Ramona Lutz","type":"Role","_key":"68681","_from":"984","_to":"42088"} +{"$label":"ACTS_IN","name":"Netitia 'Nettie' Cobb","type":"Role","_key":"64871","_from":"984","_to":"40346"} +{"$label":"ACTS_IN","name":"Rose Michaels","type":"Role","_key":"63379","_from":"984","_to":"39714"} +{"$label":"ACTS_IN","name":"Merrill Whooly","type":"Role","_key":"58843","_from":"984","_to":"37157"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"52808","_from":"984","_to":"34245"} +{"$label":"ACTS_IN","name":"Claudes Mutter","type":"Role","_key":"45771","_from":"984","_to":"30280"} +{"$label":"ACTS_IN","name":"Prof. Tracy","type":"Role","_key":"28073","_from":"984","_to":"20121"} +{"$label":"ACTS_IN","name":"Honey Bunny","type":"Role","_key":"8206","_from":"984","_to":"6746"} +{"$label":"ACTS_IN","name":"Vivien","type":"Role","_key":"4414","_from":"984","_to":"3774"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"2725","_from":"984","_to":"2363"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"115131","_from":"985","_to":"67800"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"114834","_from":"985","_to":"67644"} +{"$label":"ACTS_IN","name":"Dexter","type":"Role","_key":"99287","_from":"985","_to":"58508"} +{"$label":"ACTS_IN","name":"Carl Uffner","type":"Role","_key":"98039","_from":"985","_to":"57729"} +{"$label":"ACTS_IN","name":"Agent Kyle Steele","type":"Role","_key":"71518","_from":"985","_to":"43338"} +{"$label":"ACTS_IN","name":"James Hoyt","type":"Role","_key":"64929","_from":"985","_to":"40367"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"51358","_from":"985","_to":"33484"} +{"$label":"ACTS_IN","name":"Bobby Keough","type":"Role","_key":"34716","_from":"985","_to":"23744"} +{"$label":"ACTS_IN","name":"Michael Corvin","type":"Role","_key":"9846","_from":"985","_to":"7897"} +{"$label":"ACTS_IN","name":"Michael Corvin","type":"Role","_key":"3936","_from":"985","_to":"3364"} +{"$label":"ACTS_IN","name":"Lorna","type":"Role","_key":"89011","_from":"986","_to":"52726"} +{"$label":"ACTS_IN","name":"La ma\u00eetresse (Bastille)","type":"Role","_key":"19896","_from":"986","_to":"14635"} +{"$label":"ACTS_IN","name":"Cuca","type":"Role","_key":"16368","_from":"986","_to":"12387"} +{"$label":"ACTS_IN","name":"Wife of Josef's Friend","type":"Role","_key":"2353","_from":"986","_to":"2066"} +{"$label":"ACTS_IN","name":"M\u00f3nica","type":"Role","_key":"2238","_from":"986","_to":"1963"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"1374","_from":"986","_to":"1152"} +{"$label":"ACTS_IN","name":"Marcella","type":"Role","_key":"113771","_from":"987","_to":"67037"} +{"$label":"ACTS_IN","name":"Amy O'Hearn","type":"Role","_key":"71459","_from":"987","_to":"43319"} +{"$label":"ACTS_IN","name":"Velma Von Tussle","type":"Role","_key":"67580","_from":"987","_to":"41603"} +{"$label":"ACTS_IN","name":"Fastidieux","type":"Role","_key":"25922","_from":"987","_to":"18644"} +{"$label":"ACTS_IN","name":"Fastidieux","type":"Role","_key":"25847","_from":"987","_to":"18581"} +{"$label":"ACTS_IN","name":"Nicki Brand","type":"Role","_key":"9880","_from":"987","_to":"7919"} +{"$label":"ACTS_IN","name":"Connie's boyfriend","type":"Role","_key":"109399","_from":"988","_to":"64630"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"107600","_from":"988","_to":"63517"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"105964","_from":"988","_to":"62387"} +{"$label":"ACTS_IN","name":"Terry Prescott","type":"Role","_key":"99505","_from":"988","_to":"58658"} +{"$label":"ACTS_IN","name":"Chuck Aule","type":"Role","_key":"69137","_from":"988","_to":"42293"} +{"$label":"ACTS_IN","name":"Detective Malloy","type":"Role","_key":"66894","_from":"988","_to":"41302"} +{"$label":"ACTS_IN","name":"Matt Flamhaff","type":"Role","_key":"60649","_from":"988","_to":"38293"} +{"$label":"ACTS_IN","name":"David Abbott","type":"Role","_key":"51965","_from":"988","_to":"33893"} +{"$label":"ACTS_IN","name":"Dwight Arno","type":"Role","_key":"51637","_from":"988","_to":"33692"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"49137","_from":"988","_to":"32190"} +{"$label":"ACTS_IN","name":"Ricko","type":"Role","_key":"28472","_from":"988","_to":"20352"} +{"$label":"ACTS_IN","name":"Jeff Daly","type":"Role","_key":"23681","_from":"988","_to":"17164"} +{"$label":"ACTS_IN","name":"Yates","type":"Role","_key":"18305","_from":"988","_to":"13579"} +{"$label":"ACTS_IN","name":"Dave Toschi","type":"Role","_key":"16911","_from":"988","_to":"12715"} +{"$label":"ACTS_IN","name":"Adam Stanton","type":"Role","_key":"15191","_from":"988","_to":"11636"} +{"$label":"ACTS_IN","name":"Fanning","type":"Role","_key":"13623","_from":"988","_to":"10587"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"1307","_from":"988","_to":"1086"} +{"$label":"ACTS_IN","name":"Anais Nin","type":"Role","_key":"114581","_from":"989","_to":"67500"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"29350","_from":"989","_to":"20846"} +{"$label":"ACTS_IN","name":"Jenny Johnsen","type":"Role","_key":"19046","_from":"989","_to":"14066"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"8201","_from":"989","_to":"6746"} +{"$label":"ACTS_IN","name":"Nicolas Olsberg (Montr\u00e9al)","type":"Role","_key":"99443","_from":"990","_to":"58590"} +{"$label":"ACTS_IN","name":"Vagrant","type":"Role","_key":"7930","_from":"990","_to":"6564"} +{"$label":"ACTS_IN","name":"Alderson","type":"Role","_key":"5423","_from":"990","_to":"4604"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"1218","_from":"997","_to":"994"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"1217","_from":"996","_to":"994"} +{"$label":"DIRECTED","_key":"1216","_from":"995","_to":"994"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103885","_from":"995","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103879","_from":"996","_to":"61098"} +{"$label":"ACTS_IN","name":"Nikki Bell","type":"Role","_key":"1234","_from":"1012","_to":"998"} +{"$label":"ACTS_IN","name":"Pai Mei","type":"Role","_key":"1233","_from":"1011","_to":"998"} +{"$label":"ACTS_IN","name":"Boss Ozawa","type":"Role","_key":"1232","_from":"1010","_to":"998"} +{"$label":"ACTS_IN","name":"Boss Koji","type":"Role","_key":"1231","_from":"1009","_to":"998"} +{"$label":"ACTS_IN","name":"Boss Tanaka","type":"Role","_key":"1230","_from":"1008","_to":"998"} +{"$label":"ACTS_IN","name":"Sofie Fatale","type":"Role","_key":"1229","_from":"1007","_to":"998"} +{"$label":"ACTS_IN","name":"Hattori Hanzo","type":"Role","_key":"1228","_from":"1006","_to":"998"} +{"$label":"ACTS_IN","name":"Go Go Yubari","type":"Role","_key":"1227","_from":"1005","_to":"998"} +{"$label":"ACTS_IN","name":"Earl McGraw","type":"Role","_key":"1226","_from":"1004","_to":"998"} +{"$label":"ACTS_IN","name":"Elle Driver","type":"Role","_key":"1224","_from":"1003","_to":"998"} +{"$label":"ACTS_IN","name":"Budd","type":"Role","_key":"1223","_from":"1002","_to":"998"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"1222","_from":"1001","_to":"998"} +{"$label":"ACTS_IN","name":"O-Ren Ishii","type":"Role","_key":"1221","_from":"1000","_to":"998"} +{"$label":"ACTS_IN","name":"The Bride","type":"Role","_key":"1220","_from":"999","_to":"998"} +{"$label":"ACTS_IN","name":"June Miller","type":"Role","_key":"114580","_from":"999","_to":"67500"} +{"$label":"ACTS_IN","name":"Venus \/ Rose","type":"Role","_key":"100549","_from":"999","_to":"59305"} +{"$label":"ACTS_IN","name":"Dr. Emma Lloyd","type":"Role","_key":"94310","_from":"999","_to":"55539"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"92346","_from":"999","_to":"54502"} +{"$label":"ACTS_IN","name":"Glory","type":"Role","_key":"63320","_from":"999","_to":"39696"} +{"$label":"ACTS_IN","name":"Helena Robertson","type":"Role","_key":"63189","_from":"999","_to":"39631"} +{"$label":"ACTS_IN","name":"Ulla","type":"Role","_key":"57725","_from":"999","_to":"36543"} +{"$label":"ACTS_IN","name":"Dr. Rachel Porte","type":"Role","_key":"55100","_from":"999","_to":"35186"} +{"$label":"ACTS_IN","name":"Emma Peel","type":"Role","_key":"53100","_from":"999","_to":"34364"} +{"$label":"ACTS_IN","name":"Andera","type":"Role","_key":"52845","_from":"999","_to":"34256"} +{"$label":"ACTS_IN","name":"Noelle","type":"Role","_key":"51166","_from":"999","_to":"33378"} +{"$label":"ACTS_IN","name":"Anne de Montausier","type":"Role","_key":"45809","_from":"999","_to":"30302"} +{"$label":"ACTS_IN","name":"Diana Baylor","type":"Role","_key":"34231","_from":"999","_to":"23502"} +{"$label":"ACTS_IN","name":"Edie Athens","type":"Role","_key":"32573","_from":"999","_to":"22640"} +{"$label":"ACTS_IN","name":"Jenny Johnson","type":"Role","_key":"31947","_from":"999","_to":"22284"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"31597","_from":"999","_to":"22064"} +{"$label":"ACTS_IN","name":"Rafi Gardet","type":"Role","_key":"20328","_from":"999","_to":"14890"} +{"$label":"ACTS_IN","name":"C\u00e9cile de Volanges","type":"Role","_key":"10214","_from":"999","_to":"8147"} +{"$label":"ACTS_IN","name":"Irene Cassini","type":"Role","_key":"9201","_from":"999","_to":"7439"} +{"$label":"ACTS_IN","name":"Mia Wallace","type":"Role","_key":"8199","_from":"999","_to":"6746"} +{"$label":"ACTS_IN","name":"Poison Ivy","type":"Role","_key":"5266","_from":"999","_to":"4469"} +{"$label":"ACTS_IN","name":"The Bride","type":"Role","_key":"5011","_from":"999","_to":"4270"} +{"$label":"ACTS_IN","name":"Jin Ping","type":"Role","_key":"115133","_from":"1000","_to":"67802"} +{"$label":"ACTS_IN","name":"Sio","type":"Role","_key":"101513","_from":"1000","_to":"59747"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"100019","_from":"1000","_to":"59004"} +{"$label":"ACTS_IN","name":"Silvermist","type":"Role","_key":"93205","_from":"1000","_to":"54917"} +{"$label":"ACTS_IN","name":"Mei","type":"Role","_key":"88975","_from":"1000","_to":"52708"} +{"$label":"ACTS_IN","name":"Agent Sever","type":"Role","_key":"64014","_from":"1000","_to":"39965"} +{"$label":"ACTS_IN","name":"Rita Foster","type":"Role","_key":"61135","_from":"1000","_to":"38639"} +{"$label":"ACTS_IN","name":"Taryn Miles","type":"Role","_key":"58136","_from":"1000","_to":"36776"} +{"$label":"ACTS_IN","name":"Alex Munday","type":"Role","_key":"54064","_from":"1000","_to":"34775"} +{"$label":"ACTS_IN","name":"Princess Pei Pei","type":"Role","_key":"50213","_from":"1000","_to":"32820"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"33167","_from":"1000","_to":"22969"} +{"$label":"ACTS_IN","name":"Alex Munday","type":"Role","_key":"30997","_from":"1000","_to":"21713"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"18424","_from":"1000","_to":"13655"} +{"$label":"ACTS_IN","name":"Sadie Blake","type":"Role","_key":"16151","_from":"1000","_to":"12266"} +{"$label":"ACTS_IN","name":"Kitty Baxter","type":"Role","_key":"13941","_from":"1000","_to":"10805"} +{"$label":"ACTS_IN","name":"O-Ren Ishii","type":"Role","_key":"5016","_from":"1000","_to":"4270"} +{"$label":"ACTS_IN","name":"Lindsey","type":"Role","_key":"2823","_from":"1000","_to":"2445"} +{"$label":"ACTS_IN","name":"Jozek Mardulak \/ Count Dracula","type":"Role","_key":"107618","_from":"1001","_to":"63525"} +{"$label":"ACTS_IN","name":"Captain Zeb","type":"Role","_key":"104032","_from":"1001","_to":"61202"} +{"$label":"ACTS_IN","name":"Rawley Wilkes","type":"Role","_key":"102091","_from":"1001","_to":"60064"} +{"$label":"ACTS_IN","name":"Cole Younger","type":"Role","_key":"101537","_from":"1001","_to":"59766"} +{"$label":"ACTS_IN","name":"Mookoo","type":"Role","_key":"101245","_from":"1001","_to":"59626"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"95091","_from":"1001","_to":"55966"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"93697","_from":"1001","_to":"55160"} +{"$label":"ACTS_IN","name":"The Master","type":"Role","_key":"93069","_from":"1001","_to":"54866"} +{"$label":"ACTS_IN","name":"Museum Curator","type":"Role","_key":"56395","_from":"1001","_to":"35829"} +{"$label":"ACTS_IN","name":"Dark One","type":"Role","_key":"46084","_from":"1001","_to":"30444"} +{"$label":"ACTS_IN","name":"Himself \/ Cameo Appearance","type":"Role","_key":"39379","_from":"1001","_to":"26628"} +{"$label":"ACTS_IN","name":"Dave 'Socrates' (uncredited)","type":"Role","_key":"15954","_from":"1001","_to":"12128"} +{"$label":"ACTS_IN","name":"Coke Beck","type":"Role","_key":"15546","_from":"1001","_to":"11870"} +{"$label":"ACTS_IN","name":"Eugene Sorensen","type":"Role","_key":"15286","_from":"1001","_to":"11700"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"5012","_from":"1001","_to":"4270"} +{"$label":"ACTS_IN","name":"Seal","type":"Role","_key":"119772","_from":"1002","_to":"70331"} +{"$label":"ACTS_IN","name":"Blood","type":"Role","_key":"116863","_from":"1002","_to":"68798"} +{"$label":"ACTS_IN","name":"Agent Lind","type":"Role","_key":"114442","_from":"1002","_to":"67417"} +{"$label":"ACTS_IN","name":"Kilowog (voice)","type":"Role","_key":"112267","_from":"1002","_to":"66293"} +{"$label":"ACTS_IN","name":"Frank McGregor","type":"Role","_key":"102009","_from":"1002","_to":"60025"} +{"$label":"ACTS_IN","name":"Tin Man\/Officer Lawdale","type":"Role","_key":"101955","_from":"1002","_to":"60001"} +{"$label":"ACTS_IN","name":"The Gent","type":"Role","_key":"93787","_from":"1002","_to":"55216"} +{"$label":"ACTS_IN","name":"Dr. Azirra","type":"Role","_key":"88725","_from":"1002","_to":"52574"} +{"$label":"ACTS_IN","name":"Virgil Earp","type":"Role","_key":"88373","_from":"1002","_to":"52390"} +{"$label":"ACTS_IN","name":"Eddie Hall","type":"Role","_key":"67125","_from":"1002","_to":"41425"} +{"$label":"ACTS_IN","name":"Press Lenox","type":"Role","_key":"61757","_from":"1002","_to":"38888"} +{"$label":"ACTS_IN","name":"Major Blevins","type":"Role","_key":"60097","_from":"1002","_to":"37918"} +{"$label":"ACTS_IN","name":"Wallace Sebastian Blount","type":"Role","_key":"59882","_from":"1002","_to":"37818"} +{"$label":"ACTS_IN","name":"Vladimir","type":"Role","_key":"58179","_from":"1002","_to":"36805"} +{"$label":"ACTS_IN","name":"Sonny Black","type":"Role","_key":"53367","_from":"1002","_to":"34492"} +{"$label":"ACTS_IN","name":"Preston Lennox","type":"Role","_key":"53278","_from":"1002","_to":"34454"} +{"$label":"ACTS_IN","name":"Glen Greenwood","type":"Role","_key":"52403","_from":"1002","_to":"34101"} +{"$label":"ACTS_IN","name":"Detec. Harker","type":"Role","_key":"25301","_from":"1002","_to":"18235"} +{"$label":"ACTS_IN","name":"Col J.T. Colt","type":"Role","_key":"24267","_from":"1002","_to":"17581"} +{"$label":"ACTS_IN","name":"T.J.","type":"Role","_key":"23834","_from":"1002","_to":"17282"} +{"$label":"ACTS_IN","name":"Budy Travis","type":"Role","_key":"18180","_from":"1002","_to":"13490"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"14478","_from":"1002","_to":"11185"} +{"$label":"ACTS_IN","name":"Jimmy Lennox","type":"Role","_key":"13647","_from":"1002","_to":"10603"} +{"$label":"ACTS_IN","name":"Mr. Blonde\/Vic Vega","type":"Role","_key":"6040","_from":"1002","_to":"5129"} +{"$label":"ACTS_IN","name":"Maugrim","type":"Role","_key":"5246","_from":"1002","_to":"4445"} +{"$label":"ACTS_IN","name":"Budd\/Sidewinder","type":"Role","_key":"5014","_from":"1002","_to":"4270"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"2861","_from":"1002","_to":"2463"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"2848","_from":"1002","_to":"2450"} +{"$label":"ACTS_IN","name":"Cathy Featherstone","type":"Role","_key":"120068","_from":"1003","_to":"70511"} +{"$label":"ACTS_IN","name":"Crazy person","type":"Role","_key":"110125","_from":"1003","_to":"65074"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"108072","_from":"1003","_to":"63848"} +{"$label":"ACTS_IN","name":"Liz Quinlan","type":"Role","_key":"106870","_from":"1003","_to":"63003"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"102337","_from":"1003","_to":"60214"} +{"$label":"ACTS_IN","name":"Ayla","type":"Role","_key":"97225","_from":"1003","_to":"57198"} +{"$label":"ACTS_IN","name":"Lois Harlan","type":"Role","_key":"89810","_from":"1003","_to":"53150"} +{"$label":"ACTS_IN","name":"Anne White","type":"Role","_key":"89071","_from":"1003","_to":"52767"} +{"$label":"ACTS_IN","name":"Claudia Henderson","type":"Role","_key":"71002","_from":"1003","_to":"43125"} +{"$label":"ACTS_IN","name":"Roxanne Kowalski","type":"Role","_key":"70862","_from":"1003","_to":"43068"} +{"$label":"ACTS_IN","name":"Morticia Addams","type":"Role","_key":"70272","_from":"1003","_to":"42822"} +{"$label":"ACTS_IN","name":"Miss Crabtree","type":"Role","_key":"66534","_from":"1003","_to":"41127"} +{"$label":"ACTS_IN","name":"Darien Taylor","type":"Role","_key":"64970","_from":"1003","_to":"40382"} +{"$label":"ACTS_IN","name":"Cynthia Carter","type":"Role","_key":"61833","_from":"1003","_to":"38926"} +{"$label":"ACTS_IN","name":"Chelsea Deardon","type":"Role","_key":"58235","_from":"1003","_to":"36833"} +{"$label":"ACTS_IN","name":"Lizzie","type":"Role","_key":"57468","_from":"1003","_to":"36425"} +{"$label":"ACTS_IN","name":"Windy","type":"Role","_key":"30811","_from":"1003","_to":"21596"} +{"$label":"ACTS_IN","name":"Alice Monroe","type":"Role","_key":"22707","_from":"1003","_to":"16474"} +{"$label":"ACTS_IN","name":"Madison","type":"Role","_key":"22242","_from":"1003","_to":"16195"} +{"$label":"ACTS_IN","name":"Elle Driver\/California Mountain Snake","type":"Role","_key":"5013","_from":"1003","_to":"4270"} +{"$label":"ACTS_IN","name":"Pris","type":"Role","_key":"1556","_from":"1003","_to":"1321"} +{"$label":"ACTS_IN","name":"Sgt. Anderson","type":"Role","_key":"66110","_from":"1004","_to":"40897"} +{"$label":"ACTS_IN","name":"Ambrose Bierce","type":"Role","_key":"61746","_from":"1004","_to":"38881"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"21841","_from":"1004","_to":"15962"} +{"$label":"ACTS_IN","name":"Earl McGraw","type":"Role","_key":"17269","_from":"1004","_to":"12925"} +{"$label":"ACTS_IN","name":"Earl McGraw","type":"Role","_key":"17254","_from":"1004","_to":"12920"} +{"$label":"ACTS_IN","name":"Texas Ranger","type":"Role","_key":"8880","_from":"1004","_to":"7204"} +{"$label":"ACTS_IN","name":"Esteban Vihaio","type":"Role","_key":"5015","_from":"1004","_to":"4270"} +{"$label":"ACTS_IN","name":"Mitsuya (voice)","type":"Role","_key":"106224","_from":"1005","_to":"62559"} +{"$label":"ACTS_IN","name":"Kozue","type":"Role","_key":"40127","_from":"1005","_to":"27084"} +{"$label":"ACTS_IN","name":"Takako Chigusa","type":"Role","_key":"26515","_from":"1005","_to":"19058"} +{"$label":"ACTS_IN","name":"azama, Adversiting Company President","type":"Role","_key":"107301","_from":"1006","_to":"63279"} +{"$label":"ACTS_IN","name":"Makio Mimura","type":"Role","_key":"26521","_from":"1006","_to":"19063"} +{"$label":"ACTS_IN","name":"Lord Conquer","type":"Role","_key":"18586","_from":"1006","_to":"13750"} +{"$label":"ACTS_IN","name":"Francesca Mondino","type":"Role","_key":"110289","_from":"1007","_to":"65170"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"108843","_from":"1007","_to":"64330"} +{"$label":"ACTS_IN","name":"Lady Katarina","type":"Role","_key":"103602","_from":"1007","_to":"60931"} +{"$label":"ACTS_IN","name":"Yasuhisa Yoshikawa","type":"Role","_key":"67727","_from":"1008","_to":"41644"} +{"$label":"ACTS_IN","name":"Funaki","type":"Role","_key":"55775","_from":"1008","_to":"35497"} +{"$label":"ACTS_IN","name":"The controller of Planet X","type":"Role","_key":"105835","_from":"1009","_to":"62299"} +{"$label":"ACTS_IN","name":"Heihachi Edajima","type":"Role","_key":"100502","_from":"1010","_to":"59261"} +{"$label":"ACTS_IN","name":"Detective Murata","type":"Role","_key":"91240","_from":"1010","_to":"53800"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"30844","_from":"1010","_to":"21616"} +{"$label":"ACTS_IN","name":"Ti Tan","type":"Role","_key":"119002","_from":"1011","_to":"69947"} +{"$label":"ACTS_IN","name":"San Te","type":"Role","_key":"72308","_from":"1011","_to":"43677"} +{"$label":"ACTS_IN","name":"Pai Mei","type":"Role","_key":"5021","_from":"1011","_to":"4270"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"1239","_from":"1018","_to":"1013"} +{"$label":"ACTS_IN","name":"Kruger","type":"Role","_key":"1238","_from":"1017","_to":"1013"} +{"$label":"ACTS_IN","name":"D.I. Fitch","type":"Role","_key":"1237","_from":"1016","_to":"1013"} +{"$label":"ACTS_IN","name":"Anthony Swofford","type":"Role","_key":"1236","_from":"1015","_to":"1013"} +{"$label":"ACTS_IN","name":"Staff Sgt. Sykes","type":"Role","_key":"1235","_from":"1014","_to":"1013"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"121310","_from":"1014","_to":"71273"} +{"$label":"ACTS_IN","name":"Meachel","type":"Role","_key":"120188","_from":"1014","_to":"70585"} +{"$label":"ACTS_IN","name":"Nathaniel Ayers","type":"Role","_key":"111908","_from":"1014","_to":"66064"} +{"$label":"ACTS_IN","name":"Quincy Watson","type":"Role","_key":"109208","_from":"1014","_to":"64523"} +{"$label":"ACTS_IN","name":"Alvin Sanders","type":"Role","_key":"101827","_from":"1014","_to":"59933"} +{"$label":"ACTS_IN","name":"Larry Jennings","type":"Role","_key":"100887","_from":"1014","_to":"59480"} +{"$label":"ACTS_IN","name":"Lt. Henry Purcell","type":"Role","_key":"59906","_from":"1014","_to":"37824"} +{"$label":"ACTS_IN","name":"Willie Beamen","type":"Role","_key":"54720","_from":"1014","_to":"35030"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"51167","_from":"1014","_to":"33378"} +{"$label":"ACTS_IN","name":"Drew 'Bundini' Brown","type":"Role","_key":"50054","_from":"1014","_to":"32759"} +{"$label":"ACTS_IN","name":"Ronald Fleury","type":"Role","_key":"31097","_from":"1014","_to":"21770"} +{"$label":"ACTS_IN","name":"Ray Charles","type":"Role","_key":"14875","_from":"1014","_to":"11433"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"13621","_from":"1014","_to":"10587"} +{"$label":"ACTS_IN","name":"Curtis Taylor Jr.","type":"Role","_key":"12053","_from":"1014","_to":"9446"} +{"$label":"ACTS_IN","name":"Detective Ricardo \"Rico\" Tubbs","type":"Role","_key":"1599","_from":"1014","_to":"1367"} +{"$label":"ACTS_IN","name":"Pilot Kelson","type":"Role","_key":"117559","_from":"1015","_to":"69118"} +{"$label":"ACTS_IN","name":"Homer Hickam","type":"Role","_key":"94629","_from":"1015","_to":"55757"} +{"$label":"ACTS_IN","name":"Holden Worther","type":"Role","_key":"58599","_from":"1015","_to":"37025"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"56623","_from":"1015","_to":"35969"} +{"$label":"ACTS_IN","name":"Jimmy Livingston","type":"Role","_key":"55569","_from":"1015","_to":"35390"} +{"$label":"ACTS_IN","name":"Prince Dastan","type":"Role","_key":"54569","_from":"1015","_to":"34967"} +{"$label":"ACTS_IN","name":"Tommy Cahill","type":"Role","_key":"46669","_from":"1015","_to":"30821"} +{"$label":"ACTS_IN","name":"Douglas Freeman","type":"Role","_key":"36011","_from":"1015","_to":"24454"} +{"$label":"ACTS_IN","name":"Robert Graysmith","type":"Role","_key":"16910","_from":"1015","_to":"12715"} +{"$label":"ACTS_IN","name":"Danny Robbins","type":"Role","_key":"13009","_from":"1015","_to":"10137"} +{"$label":"ACTS_IN","name":"Sam Hall","type":"Role","_key":"5463","_from":"1015","_to":"4649"} +{"$label":"ACTS_IN","name":"Jack Twist","type":"Role","_key":"2267","_from":"1015","_to":"1994"} +{"$label":"ACTS_IN","name":"Donnie Darko","type":"Role","_key":"2240","_from":"1015","_to":"1972"} +{"$label":"ACTS_IN","name":"Dan Walton","type":"Role","_key":"105207","_from":"1016","_to":"61913"} +{"$label":"ACTS_IN","name":"Mike Winchell","type":"Role","_key":"94400","_from":"1017","_to":"55583"} +{"$label":"ACTS_IN","name":"Frank Wheatley","type":"Role","_key":"89895","_from":"1017","_to":"53200"} +{"$label":"ACTS_IN","name":"Nat Banyon","type":"Role","_key":"57989","_from":"1017","_to":"36693"} +{"$label":"ACTS_IN","name":"Sean Boswell","type":"Role","_key":"55063","_from":"1017","_to":"35172"} +{"$label":"ACTS_IN","name":"James Keller","type":"Role","_key":"12107","_from":"1017","_to":"9488"} +{"$label":"ACTS_IN","name":"Elrod Sykes","type":"Role","_key":"97918","_from":"1018","_to":"57668"} +{"$label":"ACTS_IN","name":"Charles 'Chuck' Lane","type":"Role","_key":"95100","_from":"1018","_to":"55970"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"94130","_from":"1018","_to":"55435"} +{"$label":"ACTS_IN","name":"Kenneth Kepesh","type":"Role","_key":"71457","_from":"1018","_to":"43319"} +{"$label":"ACTS_IN","name":"Clyde Martin","type":"Role","_key":"68389","_from":"1018","_to":"41964"} +{"$label":"ACTS_IN","name":"Luke Marshall","type":"Role","_key":"57949","_from":"1018","_to":"36665"} +{"$label":"ACTS_IN","name":"Carson","type":"Role","_key":"53070","_from":"1018","_to":"34352"} +{"$label":"ACTS_IN","name":"Vadim Radtchinko","type":"Role","_key":"50353","_from":"1018","_to":"32894"} +{"$label":"ACTS_IN","name":"Alan Smith","type":"Role","_key":"36019","_from":"1018","_to":"24454"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"5076","_from":"1018","_to":"4313"} +{"$label":"ACTS_IN","name":"John Lotter","type":"Role","_key":"3255","_from":"1018","_to":"2788"} +{"$label":"ACTS_IN","name":"Alfred Himmelman","type":"Role","_key":"1248","_from":"1027","_to":"1019"} +{"$label":"ACTS_IN","name":"Axel's Father","type":"Role","_key":"1247","_from":"1026","_to":"1019"} +{"$label":"ACTS_IN","name":"Axel's Mother","type":"Role","_key":"1246","_from":"1025","_to":"1019"} +{"$label":"ACTS_IN","name":"Menachem","type":"Role","_key":"1245","_from":"1024","_to":"1019"} +{"$label":"ACTS_IN","name":"Pia Himmelman","type":"Role","_key":"1244","_from":"1023","_to":"1019"} +{"$label":"ACTS_IN","name":"Axel Himmelman","type":"Role","_key":"1243","_from":"1022","_to":"1019"} +{"$label":"ACTS_IN","name":"Eyal","type":"Role","_key":"1242","_from":"1021","_to":"1019"} +{"$label":"DIRECTED","_key":"1241","_from":"1020","_to":"1019"} +{"$label":"ACTS_IN","name":"Carsten","type":"Role","_key":"91410","_from":"1022","_to":"53912"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"88387","_from":"1022","_to":"52391"} +{"$label":"ACTS_IN","name":"Hanne Bauer","type":"Role","_key":"36344","_from":"1023","_to":"24651"} +{"$label":"ACTS_IN","name":"Avraham","type":"Role","_key":"27092","_from":"1024","_to":"19500"} +{"$label":"ACTS_IN","name":"Rachel Rosenbauer","type":"Role","_key":"42889","_from":"1025","_to":"28665"} +{"$label":"ACTS_IN","name":"Ninon","type":"Role","_key":"39024","_from":"1025","_to":"26375"} +{"$label":"ACTS_IN","name":"Frau Wagenbach","type":"Role","_key":"36532","_from":"1025","_to":"24772"} +{"$label":"ACTS_IN","name":"Baron Margitta","type":"Role","_key":"113902","_from":"1026","_to":"67089"} +{"$label":"ACTS_IN","name":"Dr. Gregor Starndorf","type":"Role","_key":"106280","_from":"1026","_to":"62605"} +{"$label":"ACTS_IN","name":"Landsbichler","type":"Role","_key":"105164","_from":"1026","_to":"61884"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"101949","_from":"1026","_to":"59995"} +{"$label":"ACTS_IN","name":"Produzent","type":"Role","_key":"91299","_from":"1026","_to":"53845"} +{"$label":"ACTS_IN","name":"F\u00fcrst der Finsternis","type":"Role","_key":"71727","_from":"1026","_to":"43418"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"68449","_from":"1026","_to":"41988"} +{"$label":"ACTS_IN","name":"Art Dealer","type":"Role","_key":"66954","_from":"1026","_to":"41333"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66591","_from":"1026","_to":"41163"} +{"$label":"ACTS_IN","name":"Robert Lander","type":"Role","_key":"66065","_from":"1026","_to":"40882"} +{"$label":"ACTS_IN","name":"Grawitz","type":"Role","_key":"52259","_from":"1026","_to":"34027"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51324","_from":"1026","_to":"33469"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"51279","_from":"1026","_to":"33443"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"42281","_from":"1026","_to":"28312"} +{"$label":"ACTS_IN","name":"Ridzinski","type":"Role","_key":"31425","_from":"1026","_to":"21952"} +{"$label":"ACTS_IN","name":"Behmke","type":"Role","_key":"31140","_from":"1026","_to":"21794"} +{"$label":"ACTS_IN","name":"Goethe","type":"Role","_key":"30225","_from":"1026","_to":"21284"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"7246","_from":"1026","_to":"6053"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"1258","_from":"1038","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1257","_from":"1037","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1256","_from":"1036","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1255","_from":"1035","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1254","_from":"1034","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1253","_from":"1033","_to":"1028"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"1252","_from":"1032","_to":"1028"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"1251","_from":"1031","_to":"1028"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"1250","_from":"1030","_to":"1028"} +{"$label":"DIRECTED","_key":"1249","_from":"1029","_to":"1028"} +{"$label":"DIRECTED","_key":"102407","_from":"1029","_to":"60262"} +{"$label":"DIRECTED","_key":"89336","_from":"1029","_to":"52880"} +{"$label":"DIRECTED","_key":"49726","_from":"1029","_to":"32538"} +{"$label":"DIRECTED","_key":"47474","_from":"1029","_to":"31271"} +{"$label":"DIRECTED","_key":"23248","_from":"1029","_to":"16861"} +{"$label":"DIRECTED","_key":"22047","_from":"1029","_to":"16085"} +{"$label":"DIRECTED","_key":"17206","_from":"1029","_to":"12891"} +{"$label":"ACTS_IN","name":"Hughie McGowan","type":"Role","_key":"57081","_from":"1030","_to":"36223"} +{"$label":"ACTS_IN","name":"Hughie McGowan","type":"Role","_key":"56425","_from":"1030","_to":"35852"} +{"$label":"ACTS_IN","name":"Alex Thorne","type":"Role","_key":"36679","_from":"1030","_to":"24861"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"15912","_from":"1032","_to":"12111"} +{"$label":"ACTS_IN","name":"Jerry, Civilian","type":"Role","_key":"1270","_from":"1049","_to":"1039"} +{"$label":"ACTS_IN","name":"General Corman","type":"Role","_key":"1269","_from":"1048","_to":"1039"} +{"$label":"ACTS_IN","name":"Photojournalist","type":"Role","_key":"1268","_from":"1047","_to":"1039"} +{"$label":"ACTS_IN","name":"Chief Phillips","type":"Role","_key":"1266","_from":"1046","_to":"1039"} +{"$label":"ACTS_IN","name":"Jay 'Chef' Hicks","type":"Role","_key":"1265","_from":"1045","_to":"1039"} +{"$label":"ACTS_IN","name":"Lance B. Johnson","type":"Role","_key":"1264","_from":"1044","_to":"1039"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Bill Kilgore","type":"Role","_key":"1262","_from":"1043","_to":"1039"} +{"$label":"ACTS_IN","name":"Colonel Walter E. Kurtz","type":"Role","_key":"1261","_from":"1042","_to":"1039"} +{"$label":"ACTS_IN","name":"Captain Benjamin L. Willard","type":"Role","_key":"1260","_from":"1041","_to":"1039"} +{"$label":"DIRECTED","_key":"1259","_from":"1040","_to":"1039"} +{"$label":"DIRECTED","_key":"120208","_from":"1040","_to":"70592"} +{"$label":"DIRECTED","_key":"73096","_from":"1040","_to":"43974"} +{"$label":"DIRECTED","_key":"72791","_from":"1040","_to":"43862"} +{"$label":"DIRECTED","_key":"62921","_from":"1040","_to":"39523"} +{"$label":"DIRECTED","_key":"59449","_from":"1040","_to":"37549"} +{"$label":"DIRECTED","_key":"55633","_from":"1040","_to":"35413"} +{"$label":"DIRECTED","_key":"47305","_from":"1040","_to":"31157"} +{"$label":"DIRECTED","_key":"45829","_from":"1040","_to":"30306"} +{"$label":"DIRECTED","_key":"41764","_from":"1040","_to":"28027"} +{"$label":"DIRECTED","_key":"18718","_from":"1040","_to":"13856"} +{"$label":"DIRECTED","_key":"7107","_from":"1040","_to":"5945"} +{"$label":"DIRECTED","_key":"3525","_from":"1040","_to":"3010"} +{"$label":"DIRECTED","_key":"3469","_from":"1040","_to":"2975"} +{"$label":"DIRECTED","_key":"3435","_from":"1040","_to":"2944"} +{"$label":"DIRECTED","_key":"3359","_from":"1040","_to":"2869"} +{"$label":"DIRECTED","_key":"3276","_from":"1040","_to":"2809"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32446","_from":"1040","_to":"22571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26739","_from":"1040","_to":"19220"} +{"$label":"ACTS_IN","name":"Frank Hallet","type":"Role","_key":"121625","_from":"1041","_to":"71454"} +{"$label":"ACTS_IN","name":"Dante D'Enzo","type":"Role","_key":"121005","_from":"1041","_to":"71073"} +{"$label":"ACTS_IN","name":"Raymond Burke","type":"Role","_key":"108749","_from":"1041","_to":"64285"} +{"$label":"ACTS_IN","name":"Captain Hollister","type":"Role","_key":"70170","_from":"1041","_to":"42773"} +{"$label":"ACTS_IN","name":"Greg Stillson","type":"Role","_key":"69208","_from":"1041","_to":"42323"} +{"$label":"ACTS_IN","name":"Soul Hunter","type":"Role","_key":"66754","_from":"1041","_to":"41244"} +{"$label":"ACTS_IN","name":"Jack Stevens","type":"Role","_key":"65379","_from":"1041","_to":"40552"} +{"$label":"ACTS_IN","name":"Carl Fox","type":"Role","_key":"64969","_from":"1041","_to":"40382"} +{"$label":"ACTS_IN","name":"Gen. Robert E. Lee","type":"Role","_key":"64858","_from":"1041","_to":"40343"} +{"$label":"ACTS_IN","name":"Jason Wynn","type":"Role","_key":"62660","_from":"1041","_to":"39413"} +{"$label":"ACTS_IN","name":"A.J. MacInerney","type":"Role","_key":"52489","_from":"1041","_to":"34144"} +{"$label":"ACTS_IN","name":"Warren Lasky","type":"Role","_key":"50605","_from":"1041","_to":"33049"} +{"$label":"ACTS_IN","name":"Mitch Snyder","type":"Role","_key":"45286","_from":"1041","_to":"30044"} +{"$label":"ACTS_IN","name":"E.G. Sonderling","type":"Role","_key":"43969","_from":"1041","_to":"29330"} +{"$label":"ACTS_IN","name":"Alex Holbeck","type":"Role","_key":"33034","_from":"1041","_to":"22898"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32452","_from":"1041","_to":"22571"} +{"$label":"ACTS_IN","name":"George Morgan","type":"Role","_key":"31105","_from":"1041","_to":"21771"} +{"$label":"ACTS_IN","name":"Kit Carruthers","type":"Role","_key":"26248","_from":"1041","_to":"18844"} +{"$label":"ACTS_IN","name":"Aurora Skipper","type":"Role","_key":"18536","_from":"1041","_to":"13721"} +{"$label":"ACTS_IN","name":"Frank Magenta","type":"Role","_key":"17721","_from":"1041","_to":"13221"} +{"$label":"ACTS_IN","name":"Ben Parker","type":"Role","_key":"16722","_from":"1041","_to":"12611"} +{"$label":"ACTS_IN","name":"Bill Peterson","type":"Role","_key":"15120","_from":"1041","_to":"11604"} +{"$label":"ACTS_IN","name":"Cpt. Queenan","type":"Role","_key":"13182","_from":"1041","_to":"10265"} +{"$label":"ACTS_IN","name":"Vince Walker","type":"Role","_key":"9217","_from":"1041","_to":"7444"} +{"$label":"ACTS_IN","name":"Roger Strong","type":"Role","_key":"7650","_from":"1041","_to":"6359"} +{"$label":"ACTS_IN","name":"Jor-El","type":"Role","_key":"117411","_from":"1042","_to":"69059"} +{"$label":"ACTS_IN","name":"Rio","type":"Role","_key":"116937","_from":"1042","_to":"68834"} +{"$label":"ACTS_IN","name":"Marc Antony","type":"Role","_key":"114649","_from":"1042","_to":"67543"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"69460","_from":"1042","_to":"42442"} +{"$label":"ACTS_IN","name":"First Lieutnant Fletcher Christian","type":"Role","_key":"67778","_from":"1042","_to":"41668"} +{"$label":"ACTS_IN","name":"Carmine Sabatini, aka Jimmy The Toucan","type":"Role","_key":"61377","_from":"1042","_to":"38726"} +{"$label":"ACTS_IN","name":"McCarthy","type":"Role","_key":"58518","_from":"1042","_to":"36982"} +{"$label":"ACTS_IN","name":"Dr. Moreau","type":"Role","_key":"53020","_from":"1042","_to":"34335"} +{"$label":"ACTS_IN","name":"Sky Masterson","type":"Role","_key":"34245","_from":"1042","_to":"23507"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32445","_from":"1042","_to":"22571"} +{"$label":"ACTS_IN","name":"Weldon Penderton","type":"Role","_key":"27816","_from":"1042","_to":"19941"} +{"$label":"ACTS_IN","name":"Ogden Mears","type":"Role","_key":"24697","_from":"1042","_to":"17866"} +{"$label":"ACTS_IN","name":"Jor-El","type":"Role","_key":"16655","_from":"1042","_to":"12577"} +{"$label":"ACTS_IN","name":"Dr. Jack Mickler","type":"Role","_key":"16490","_from":"1042","_to":"12457"} +{"$label":"ACTS_IN","name":"Ken Wilcheck\/Bud","type":"Role","_key":"16241","_from":"1042","_to":"12325"} +{"$label":"ACTS_IN","name":"Emiliano Zapata","type":"Role","_key":"15653","_from":"1042","_to":"11939"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"14570","_from":"1042","_to":"11233"} +{"$label":"ACTS_IN","name":"Jor-El","type":"Role","_key":"13401","_from":"1042","_to":"10427"} +{"$label":"ACTS_IN","name":"Stanley Kowalski","type":"Role","_key":"8459","_from":"1042","_to":"6907"} +{"$label":"ACTS_IN","name":"Terry Malloy","type":"Role","_key":"7825","_from":"1042","_to":"6495"} +{"$label":"ACTS_IN","name":"Don Vito Corleone","type":"Role","_key":"3436","_from":"1042","_to":"2944"} +{"$label":"ACTS_IN","name":"Ned Pepper","type":"Role","_key":"112779","_from":"1043","_to":"66595"} +{"$label":"ACTS_IN","name":"John J. Anderson","type":"Role","_key":"109194","_from":"1043","_to":"64516"} +{"$label":"ACTS_IN","name":"Robert E. Lee","type":"Role","_key":"106889","_from":"1043","_to":"63012"} +{"$label":"ACTS_IN","name":"Joseph Pulitzer","type":"Role","_key":"103912","_from":"1043","_to":"61125"} +{"$label":"ACTS_IN","name":"Frank Harlan","type":"Role","_key":"102272","_from":"1043","_to":"60181"} +{"$label":"ACTS_IN","name":"Hub","type":"Role","_key":"93045","_from":"1043","_to":"54855"} +{"$label":"ACTS_IN","name":"Augustus 'Gus' McCrae","type":"Role","_key":"92236","_from":"1043","_to":"54426"} +{"$label":"ACTS_IN","name":"Karl's Father","type":"Role","_key":"89892","_from":"1043","_to":"53200"} +{"$label":"ACTS_IN","name":"Dixon Doss","type":"Role","_key":"89815","_from":"1043","_to":"53150"} +{"$label":"ACTS_IN","name":"Bernie White","type":"Role","_key":"89196","_from":"1043","_to":"52823"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"88613","_from":"1043","_to":"52508"} +{"$label":"ACTS_IN","name":"Col. Max Radl","type":"Role","_key":"69464","_from":"1043","_to":"42443"} +{"$label":"ACTS_IN","name":"Frank Hackett","type":"Role","_key":"65690","_from":"1043","_to":"40690"} +{"$label":"ACTS_IN","name":"Roger Chillingworth","type":"Role","_key":"63899","_from":"1043","_to":"39922"} +{"$label":"ACTS_IN","name":"Officer Bob Hodges","type":"Role","_key":"61080","_from":"1043","_to":"38615"} +{"$label":"ACTS_IN","name":"Buck Weston","type":"Role","_key":"58911","_from":"1043","_to":"37201"} +{"$label":"ACTS_IN","name":"Otto Halliwell","type":"Role","_key":"55509","_from":"1043","_to":"35364"} +{"$label":"ACTS_IN","name":"Jerome Facher","type":"Role","_key":"53760","_from":"1043","_to":"34653"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"53545","_from":"1043","_to":"34562"} +{"$label":"ACTS_IN","name":"Doc Brunder","type":"Role","_key":"52949","_from":"1043","_to":"34307"} +{"$label":"ACTS_IN","name":"Capt. Spurgeon 'Fish' Tanner","type":"Role","_key":"50327","_from":"1043","_to":"32880"} +{"$label":"ACTS_IN","name":"Frank Grimes","type":"Role","_key":"50017","_from":"1043","_to":"32743"} +{"$label":"ACTS_IN","name":"Dr. Griffin Weir","type":"Role","_key":"49875","_from":"1043","_to":"32650"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32450","_from":"1043","_to":"22571"} +{"$label":"ACTS_IN","name":"Euliss Dewey","type":"Role","_key":"24125","_from":"1043","_to":"17497"} +{"$label":"ACTS_IN","name":"Harry Hogge","type":"Role","_key":"18478","_from":"1043","_to":"13689"} +{"$label":"ACTS_IN","name":"Boss Spearman","type":"Role","_key":"17858","_from":"1043","_to":"13300"} +{"$label":"ACTS_IN","name":"Burt Grusinsky","type":"Role","_key":"17367","_from":"1043","_to":"12991"} +{"$label":"ACTS_IN","name":"L. C. Cheever","type":"Role","_key":"16926","_from":"1043","_to":"12718"} +{"$label":"ACTS_IN","name":"Weissberg","type":"Role","_key":"10889","_from":"1043","_to":"8626"} +{"$label":"ACTS_IN","name":"Major Franklin Archimedes 'Frank' Burns","type":"Role","_key":"7779","_from":"1043","_to":"6460"} +{"$label":"ACTS_IN","name":"THX","type":"Role","_key":"7569","_from":"1043","_to":"6300"} +{"$label":"ACTS_IN","name":"Arthur 'Boo' Radley","type":"Role","_key":"7153","_from":"1043","_to":"5978"} +{"$label":"ACTS_IN","name":"Tom Hagen","type":"Role","_key":"3471","_from":"1043","_to":"2975"} +{"$label":"ACTS_IN","name":"Tom Hagen","type":"Role","_key":"3440","_from":"1043","_to":"2944"} +{"$label":"DIRECTED","_key":"109199","_from":"1043","_to":"64516"} +{"$label":"DIRECTED","_key":"24124","_from":"1043","_to":"17497"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32455","_from":"1044","_to":"22571"} +{"$label":"ACTS_IN","name":"Dan Buttersfield","type":"Role","_key":"22180","_from":"1044","_to":"16167"} +{"$label":"ACTS_IN","name":"Lou Sr.","type":"Role","_key":"58525","_from":"1045","_to":"36982"} +{"$label":"ACTS_IN","name":"Jack Burke","type":"Role","_key":"19815","_from":"1045","_to":"14622"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"7111","_from":"1045","_to":"5945"} +{"$label":"ACTS_IN","name":"Gen. Decker","type":"Role","_key":"67269","_from":"1046","_to":"41467"} +{"$label":"ACTS_IN","name":"Degan Odell","type":"Role","_key":"50110","_from":"1046","_to":"32780"} +{"$label":"ACTS_IN","name":"Dr. Nichols","type":"Role","_key":"44498","_from":"1046","_to":"29641"} +{"$label":"ACTS_IN","name":"Baines","type":"Role","_key":"16250","_from":"1046","_to":"12327"} +{"$label":"ACTS_IN","name":"James Richardson","type":"Role","_key":"121154","_from":"1047","_to":"71172"} +{"$label":"ACTS_IN","name":"Ben Dumers","type":"Role","_key":"119793","_from":"1047","_to":"70340"} +{"$label":"ACTS_IN","name":"Father Duffy","type":"Role","_key":"119025","_from":"1047","_to":"69971"} +{"$label":"ACTS_IN","name":"Hatfield Carnes","type":"Role","_key":"116244","_from":"1047","_to":"68438"} +{"$label":"ACTS_IN","name":"Bob Roberts","type":"Role","_key":"115559","_from":"1047","_to":"68031"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"112778","_from":"1047","_to":"66595"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111815","_from":"1047","_to":"66004"} +{"$label":"ACTS_IN","name":"Flash Jensen","type":"Role","_key":"111689","_from":"1047","_to":"65944"} +{"$label":"ACTS_IN","name":"Dave Hastings","type":"Role","_key":"108136","_from":"1047","_to":"63907"} +{"$label":"ACTS_IN","name":"Mr. Reedy","type":"Role","_key":"99743","_from":"1047","_to":"58822"} +{"$label":"ACTS_IN","name":"Matty Matello","type":"Role","_key":"93413","_from":"1047","_to":"55011"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"91723","_from":"1047","_to":"54107"} +{"$label":"ACTS_IN","name":"Huey Walker","type":"Role","_key":"91232","_from":"1047","_to":"53798"} +{"$label":"ACTS_IN","name":"Richard Tremayne","type":"Role","_key":"88922","_from":"1047","_to":"52676"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"88838","_from":"1047","_to":"52640"} +{"$label":"ACTS_IN","name":"Kaufman","type":"Role","_key":"71541","_from":"1047","_to":"43346"} +{"$label":"ACTS_IN","name":"George O'Hearn","type":"Role","_key":"71458","_from":"1047","_to":"43319"} +{"$label":"ACTS_IN","name":"Tom Ripley","type":"Role","_key":"68630","_from":"1047","_to":"42069"} +{"$label":"ACTS_IN","name":"John Canyon","type":"Role","_key":"65075","_from":"1047","_to":"40431"} +{"$label":"ACTS_IN","name":"Lyle from Dallas","type":"Role","_key":"63233","_from":"1047","_to":"39650"} +{"$label":"ACTS_IN","name":"Frank Hector","type":"Role","_key":"61802","_from":"1047","_to":"38905"} +{"$label":"ACTS_IN","name":"Donald Greenleaf","type":"Role","_key":"61531","_from":"1047","_to":"38799"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"56974","_from":"1047","_to":"36151"} +{"$label":"ACTS_IN","name":"I.G. Farben","type":"Role","_key":"55812","_from":"1047","_to":"35512"} +{"$label":"ACTS_IN","name":"King Koopa","type":"Role","_key":"54993","_from":"1047","_to":"35146"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"51306","_from":"1047","_to":"33463"} +{"$label":"ACTS_IN","name":"Benny Chains","type":"Role","_key":"46906","_from":"1047","_to":"30925"} +{"$label":"ACTS_IN","name":"Shooter","type":"Role","_key":"38677","_from":"1047","_to":"26128"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38398","_from":"1047","_to":"25936"} +{"$label":"ACTS_IN","name":"Robert Nile","type":"Role","_key":"35212","_from":"1047","_to":"23986"} +{"$label":"ACTS_IN","name":"Prophet","type":"Role","_key":"34875","_from":"1047","_to":"23835"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32449","_from":"1047","_to":"22571"} +{"$label":"ACTS_IN","name":"Peter Crowford","type":"Role","_key":"18275","_from":"1047","_to":"13554"} +{"$label":"ACTS_IN","name":"Jordan \"Jordy\" Benedict III","type":"Role","_key":"15135","_from":"1047","_to":"11613"} +{"$label":"ACTS_IN","name":"Howard Payne","type":"Role","_key":"14500","_from":"1047","_to":"11195"} +{"$label":"ACTS_IN","name":"Babalugats","type":"Role","_key":"10756","_from":"1047","_to":"8527"} +{"$label":"ACTS_IN","name":"Frank Booth","type":"Role","_key":"9351","_from":"1047","_to":"7553"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"7414","_from":"1047","_to":"6181"} +{"$label":"ACTS_IN","name":"Bruno Bischofberger","type":"Role","_key":"6548","_from":"1047","_to":"5534"} +{"$label":"ACTS_IN","name":"Clifford Worley","type":"Role","_key":"4432","_from":"1047","_to":"3783"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"3347","_from":"1047","_to":"2869"} +{"$label":"ACTS_IN","name":"Goon","type":"Role","_key":"3188","_from":"1047","_to":"2725"} +{"$label":"DIRECTED","_key":"102178","_from":"1047","_to":"60132"} +{"$label":"DIRECTED","_key":"61085","_from":"1047","_to":"38615"} +{"$label":"DIRECTED","_key":"7412","_from":"1047","_to":"6181"} +{"$label":"ACTS_IN","name":"Lee's Associate","type":"Role","_key":"24844","_from":"1048","_to":"17967"} +{"$label":"ACTS_IN","name":"R.J. Hacker, President of Hacker Dynamics","type":"Role","_key":"15452","_from":"1048","_to":"11805"} +{"$label":"ACTS_IN","name":"Reverend Lemon","type":"Role","_key":"6239","_from":"1048","_to":"5281"} +{"$label":"ACTS_IN","name":"Senator Pat Geary","type":"Role","_key":"3478","_from":"1048","_to":"2975"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"12665","_from":"1049","_to":"9890"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"1275","_from":"1056","_to":"1051"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"1274","_from":"1055","_to":"1051"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"1273","_from":"1054","_to":"1051"} +{"$label":"ACTS_IN","name":"Heinz","type":"Role","_key":"1272","_from":"1053","_to":"1051"} +{"$label":"DIRECTED","_key":"1271","_from":"1052","_to":"1051"} +{"$label":"DIRECTED","_key":"51507","_from":"1052","_to":"33580"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"97942","_from":"1055","_to":"57677"} +{"$label":"ACTS_IN","name":"Arisugawa Sorata","type":"Role","_key":"111102","_from":"1056","_to":"65622"} +{"$label":"DIRECTED","_key":"1276","_from":"1058","_to":"1057"} +{"$label":"DIRECTED","_key":"110452","_from":"1058","_to":"65255"} +{"$label":"DIRECTED","_key":"1277","_from":"1060","_to":"1059"} +{"$label":"DIRECTED","_key":"51631","_from":"1060","_to":"33686"} +{"$label":"DIRECTED","_key":"2357","_from":"1060","_to":"2075"} +{"$label":"ACTS_IN","name":"Ned Logan","type":"Role","_key":"1289","_from":"1072","_to":"1061"} +{"$label":"ACTS_IN","name":"Skinny Dubois","type":"Role","_key":"1288","_from":"1071","_to":"1061"} +{"$label":"ACTS_IN","name":"Davey Bunting","type":"Role","_key":"1287","_from":"1070","_to":"1061"} +{"$label":"ACTS_IN","name":"Quick Mike","type":"Role","_key":"1286","_from":"1069","_to":"1061"} +{"$label":"ACTS_IN","name":"Strawberry Alice","type":"Role","_key":"1285","_from":"1068","_to":"1061"} +{"$label":"ACTS_IN","name":"W.W. Beauchamp","type":"Role","_key":"1284","_from":"1067","_to":"1061"} +{"$label":"ACTS_IN","name":"Delilah Fitzgerald","type":"Role","_key":"1283","_from":"1066","_to":"1061"} +{"$label":"ACTS_IN","name":"The Schofield Kid","type":"Role","_key":"1282","_from":"1065","_to":"1061"} +{"$label":"ACTS_IN","name":"English Bob","type":"Role","_key":"1281","_from":"1064","_to":"1061"} +{"$label":"ACTS_IN","name":"Little Bill Daggett","type":"Role","_key":"1280","_from":"1063","_to":"1061"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"117409","_from":"1063","_to":"69059"} +{"$label":"ACTS_IN","name":"Monroe \"Eagle\" Cole","type":"Role","_key":"110071","_from":"1063","_to":"65043"} +{"$label":"ACTS_IN","name":"Jebediah Ward","type":"Role","_key":"105848","_from":"1063","_to":"62310"} +{"$label":"ACTS_IN","name":"Lt. Col. Iceal Hambleton","type":"Role","_key":"102438","_from":"1063","_to":"60279"} +{"$label":"ACTS_IN","name":"Dr. John Whipple","type":"Role","_key":"101455","_from":"1063","_to":"59719"} +{"$label":"ACTS_IN","name":"Alex Grazier","type":"Role","_key":"89922","_from":"1063","_to":"53207"} +{"$label":"ACTS_IN","name":"Nicholas Earp","type":"Role","_key":"88367","_from":"1063","_to":"52390"} +{"$label":"ACTS_IN","name":"John Herod","type":"Role","_key":"88051","_from":"1063","_to":"52269"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"69684","_from":"1063","_to":"42544"} +{"$label":"ACTS_IN","name":"Rankin Fitch","type":"Role","_key":"69171","_from":"1063","_to":"42305"} +{"$label":"ACTS_IN","name":"Dr. Lawrence Myrick","type":"Role","_key":"69044","_from":"1063","_to":"42264"} +{"$label":"ACTS_IN","name":"Joe Moore","type":"Role","_key":"67809","_from":"1063","_to":"41677"} +{"$label":"ACTS_IN","name":"Sen. Kevin Keeley","type":"Role","_key":"67200","_from":"1063","_to":"41451"} +{"$label":"ACTS_IN","name":"William B. Tensy","type":"Role","_key":"66060","_from":"1063","_to":"40881"} +{"$label":"ACTS_IN","name":"Doyle","type":"Role","_key":"65191","_from":"1063","_to":"40491"} +{"$label":"ACTS_IN","name":"Henry Hearst","type":"Role","_key":"64092","_from":"1063","_to":"40001"} +{"$label":"ACTS_IN","name":"Jimmy McGinty","type":"Role","_key":"62971","_from":"1063","_to":"39541"} +{"$label":"ACTS_IN","name":"Defense Secretary David Brice","type":"Role","_key":"60434","_from":"1063","_to":"38128"} +{"$label":"ACTS_IN","name":"Col. Cal Rhodes","type":"Role","_key":"58671","_from":"1063","_to":"37064"} +{"$label":"ACTS_IN","name":"Brill","type":"Role","_key":"56928","_from":"1063","_to":"36140"} +{"$label":"ACTS_IN","name":"Royal Tenenbaum","type":"Role","_key":"53791","_from":"1063","_to":"34665"} +{"$label":"ACTS_IN","name":"Captain Frank Ramsey","type":"Role","_key":"51717","_from":"1063","_to":"33747"} +{"$label":"ACTS_IN","name":"General Mandible (voice)","type":"Role","_key":"51489","_from":"1063","_to":"33574"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"50117","_from":"1063","_to":"32783"} +{"$label":"ACTS_IN","name":"Harry Zimm","type":"Role","_key":"47790","_from":"1063","_to":"31468"} +{"$label":"ACTS_IN","name":"Admiral Leslie McMahon Reigart","type":"Role","_key":"47726","_from":"1063","_to":"31434"} +{"$label":"ACTS_IN","name":"Sam Cayhall","type":"Role","_key":"42986","_from":"1063","_to":"28718"} +{"$label":"ACTS_IN","name":"Arnold Margolese","type":"Role","_key":"41492","_from":"1063","_to":"27879"} +{"$label":"ACTS_IN","name":"Maj. Gen. Stanislaw F. Sosabowski","type":"Role","_key":"40260","_from":"1063","_to":"27164"} +{"$label":"ACTS_IN","name":"Norman Dale","type":"Role","_key":"38675","_from":"1063","_to":"26128"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"16656","_from":"1063","_to":"12577"} +{"$label":"ACTS_IN","name":"Agent Rupert Anderson","type":"Role","_key":"14462","_from":"1063","_to":"11179"} +{"$label":"ACTS_IN","name":"Det. Jimmy \"Popeye\" Doyle","type":"Role","_key":"11854","_from":"1063","_to":"9296"} +{"$label":"ACTS_IN","name":"Harry Caul","type":"Role","_key":"7109","_from":"1063","_to":"5945"} +{"$label":"ACTS_IN","name":"Reverand Scott","type":"Role","_key":"6570","_from":"1063","_to":"5550"} +{"$label":"ACTS_IN","name":"Buck Barrow","type":"Role","_key":"5857","_from":"1063","_to":"4973"} +{"$label":"ACTS_IN","name":"President Allen Richmond","type":"Role","_key":"1412","_from":"1063","_to":"1190"} +{"$label":"ACTS_IN","name":"Frank Machin","type":"Role","_key":"117425","_from":"1064","_to":"69063"} +{"$label":"ACTS_IN","name":"Douglas McCraken","type":"Role","_key":"115416","_from":"1064","_to":"67961"} +{"$label":"ACTS_IN","name":"Knut Straud","type":"Role","_key":"110183","_from":"1064","_to":"65118"} +{"$label":"ACTS_IN","name":"Capt. Rafer Hoxworth","type":"Role","_key":"101454","_from":"1064","_to":"59719"} +{"$label":"ACTS_IN","name":"John Morgan","type":"Role","_key":"101415","_from":"1064","_to":"59700"} +{"$label":"ACTS_IN","name":"Captain Nolan","type":"Role","_key":"91148","_from":"1064","_to":"53770"} +{"$label":"ACTS_IN","name":"Opaz (voice: English version)","type":"Role","_key":"70758","_from":"1064","_to":"43031"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Faria","type":"Role","_key":"69407","_from":"1064","_to":"42425"} +{"$label":"ACTS_IN","name":"Seaman John Mills","type":"Role","_key":"67779","_from":"1064","_to":"41668"} +{"$label":"ACTS_IN","name":"Squadron Leader Howard Barnsby RAAF","type":"Role","_key":"66667","_from":"1064","_to":"41194"} +{"$label":"ACTS_IN","name":"Richard the Lionheart","type":"Role","_key":"65789","_from":"1064","_to":"40718"} +{"$label":"ACTS_IN","name":"Capt. Rafer Janders","type":"Role","_key":"45673","_from":"1064","_to":"30229"} +{"$label":"ACTS_IN","name":"Eitan","type":"Role","_key":"27085","_from":"1064","_to":"19500"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"23020","_from":"1064","_to":"16697"} +{"$label":"ACTS_IN","name":"Abraham","type":"Role","_key":"22847","_from":"1064","_to":"16575"} +{"$label":"ACTS_IN","name":"Kain","type":"Role","_key":"21843","_from":"1064","_to":"15962"} +{"$label":"ACTS_IN","name":"Albus Dumbledore","type":"Role","_key":"8058","_from":"1064","_to":"6665"} +{"$label":"ACTS_IN","name":"Albus Dumbledore","type":"Role","_key":"8018","_from":"1064","_to":"6646"} +{"$label":"ACTS_IN","name":"Marcus Aurelius","type":"Role","_key":"1802","_from":"1064","_to":"1556"} +{"$label":"DIRECTED","_key":"27084","_from":"1064","_to":"19500"} +{"$label":"ACTS_IN","name":"Tex","type":"Role","_key":"62178","_from":"1065","_to":"39152"} +{"$label":"ACTS_IN","name":"Barroom Dancer","type":"Role","_key":"96070","_from":"1066","_to":"56457"} +{"$label":"ACTS_IN","name":"V\u00e9ra","type":"Role","_key":"89761","_from":"1066","_to":"53128"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"56180","_from":"1066","_to":"35707"} +{"$label":"ACTS_IN","name":"Darla","type":"Role","_key":"54249","_from":"1066","_to":"34832"} +{"$label":"ACTS_IN","name":"Sam Smotherman","type":"Role","_key":"66431","_from":"1067","_to":"41073"} +{"$label":"ACTS_IN","name":"Dr. Sherman","type":"Role","_key":"63283","_from":"1067","_to":"39669"} +{"$label":"ACTS_IN","name":"Jed Kramer","type":"Role","_key":"54854","_from":"1067","_to":"35088"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"46615","_from":"1067","_to":"30786"} +{"$label":"ACTS_IN","name":"Peter Lassiter","type":"Role","_key":"40946","_from":"1067","_to":"27547"} +{"$label":"ACTS_IN","name":"Lee Donowitz","type":"Role","_key":"4437","_from":"1067","_to":"3783"} +{"$label":"ACTS_IN","name":"Sara Miller","type":"Role","_key":"68122","_from":"1068","_to":"41844"} +{"$label":"ACTS_IN","name":"Connie Walsh","type":"Role","_key":"67838","_from":"1068","_to":"41689"} +{"$label":"ACTS_IN","name":"Donna Garcia","type":"Role","_key":"57569","_from":"1068","_to":"36462"} +{"$label":"ACTS_IN","name":"Evie","type":"Role","_key":"45505","_from":"1068","_to":"30141"} +{"$label":"ACTS_IN","name":"Ruth Dewitt Bukater","type":"Role","_key":"7180","_from":"1068","_to":"6002"} +{"$label":"ACTS_IN","name":"Krzysztof","type":"Role","_key":"94335","_from":"1070","_to":"55547"} +{"$label":"ACTS_IN","name":"Sergei Preminin","type":"Role","_key":"18539","_from":"1070","_to":"13721"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"3259","_from":"1070","_to":"2788"} +{"$label":"ACTS_IN","name":"The Chauffeur","type":"Role","_key":"95155","_from":"1071","_to":"55990"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"50505","_from":"1071","_to":"32983"} +{"$label":"ACTS_IN","name":"Hibble","type":"Role","_key":"118383","_from":"1072","_to":"69596"} +{"$label":"ACTS_IN","name":"Keith Ripley","type":"Role","_key":"102624","_from":"1072","_to":"60382"} +{"$label":"ACTS_IN","name":"Principal Joe Clark","type":"Role","_key":"101134","_from":"1072","_to":"59586"} +{"$label":"ACTS_IN","name":"Harry Stevenson","type":"Role","_key":"99613","_from":"1072","_to":"58730"} +{"$label":"ACTS_IN","name":"Geel Piet","type":"Role","_key":"97019","_from":"1072","_to":"57064"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"96743","_from":"1072","_to":"56907"} +{"$label":"ACTS_IN","name":"Walter Crewes","type":"Role","_key":"90739","_from":"1072","_to":"53556"} +{"$label":"ACTS_IN","name":"Paul Shannon","type":"Role","_key":"88156","_from":"1072","_to":"52304"} +{"$label":"ACTS_IN","name":"Theodore","type":"Role","_key":"72257","_from":"1072","_to":"43655"} +{"$label":"ACTS_IN","name":"Charlie Grimes","type":"Role","_key":"70669","_from":"1072","_to":"42997"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"68836","_from":"1072","_to":"42175"} +{"$label":"ACTS_IN","name":"Captain Victor Benezet","type":"Role","_key":"64093","_from":"1072","_to":"40001"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"63573","_from":"1072","_to":"39783"} +{"$label":"ACTS_IN","name":"Moses Ashford","type":"Role","_key":"60121","_from":"1072","_to":"37937"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"59580","_from":"1072","_to":"37614"} +{"$label":"ACTS_IN","name":"Sgt. Maj. John Rawlins","type":"Role","_key":"55409","_from":"1072","_to":"35321"} +{"$label":"ACTS_IN","name":"Judge Leonard White","type":"Role","_key":"54855","_from":"1072","_to":"35088"} +{"$label":"ACTS_IN","name":"Alex Cross","type":"Role","_key":"53836","_from":"1072","_to":"34681"} +{"$label":"ACTS_IN","name":"Sloan","type":"Role","_key":"51424","_from":"1072","_to":"33548"} +{"$label":"ACTS_IN","name":"President Tom Beck","type":"Role","_key":"50331","_from":"1072","_to":"32880"} +{"$label":"ACTS_IN","name":"Azeem","type":"Role","_key":"49372","_from":"1072","_to":"32334"} +{"$label":"ACTS_IN","name":"Carter Chambers","type":"Role","_key":"46602","_from":"1072","_to":"30782"} +{"$label":"ACTS_IN","name":"Billy Ford","type":"Role","_key":"45265","_from":"1072","_to":"30038"} +{"$label":"ACTS_IN","name":"Col. Abraham Curtis","type":"Role","_key":"42183","_from":"1072","_to":"28261"} +{"$label":"ACTS_IN","name":"Jack Doyle","type":"Role","_key":"33905","_from":"1072","_to":"23352"} +{"$label":"ACTS_IN","name":"DCI William Cabot","type":"Role","_key":"33001","_from":"1072","_to":"22881"} +{"$label":"ACTS_IN","name":"Angelic Boy","type":"Role","_key":"28478","_from":"1072","_to":"20352"} +{"$label":"ACTS_IN","name":"God","type":"Role","_key":"22764","_from":"1072","_to":"16511"} +{"$label":"ACTS_IN","name":"'Him'","type":"Role","_key":"20604","_from":"1072","_to":"15077"} +{"$label":"ACTS_IN","name":"Alex Cross","type":"Role","_key":"17783","_from":"1072","_to":"13263"} +{"$label":"ACTS_IN","name":"Mitch Bradley","type":"Role","_key":"16896","_from":"1072","_to":"12705"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"14795","_from":"1072","_to":"11380"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"14390","_from":"1072","_to":"11128"} +{"$label":"ACTS_IN","name":"Frank Carden","type":"Role","_key":"13330","_from":"1072","_to":"10382"} +{"$label":"ACTS_IN","name":"Detective Lt. William Somerset","type":"Role","_key":"9505","_from":"1072","_to":"7669"} +{"$label":"ACTS_IN","name":"Lt. A.Z. Drones","type":"Role","_key":"6100","_from":"1072","_to":"5178"} +{"$label":"ACTS_IN","name":"Hoke Colburn","type":"Role","_key":"5109","_from":"1072","_to":"4339"} +{"$label":"ACTS_IN","name":"God","type":"Role","_key":"4304","_from":"1072","_to":"3662"} +{"$label":"ACTS_IN","name":"Ellis Boyd 'Red' Redding","type":"Role","_key":"3946","_from":"1072","_to":"3372"} +{"$label":"ACTS_IN","name":"Lucius Fox","type":"Role","_key":"3877","_from":"1072","_to":"3310"} +{"$label":"ACTS_IN","name":"The Boss","type":"Role","_key":"2824","_from":"1072","_to":"2445"} +{"$label":"ACTS_IN","name":"Lucius Fox","type":"Role","_key":"2401","_from":"1072","_to":"2110"} +{"$label":"ACTS_IN","name":"Narrator (Voice)","type":"Role","_key":"1503","_from":"1072","_to":"1270"} +{"$label":"ACTS_IN","name":"Eddie Scrap-Iron Dupris","type":"Role","_key":"1467","_from":"1072","_to":"1234"} +{"$label":"ACTS_IN","name":"Fat Tony","type":"Role","_key":"1301","_from":"1085","_to":"1073"} +{"$label":"ACTS_IN","name":"Edna Krabappel","type":"Role","_key":"1300","_from":"1084","_to":"1073"} +{"$label":"ACTS_IN","name":"Rod Flanders","type":"Role","_key":"1299","_from":"1083","_to":"1073"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"1298","_from":"1082","_to":"1073"} +{"$label":"ACTS_IN","name":"Sideshow Bob","type":"Role","_key":"1297","_from":"1081","_to":"1073"} +{"$label":"ACTS_IN","name":"Ned Flanders","type":"Role","_key":"1296","_from":"1080","_to":"1073"} +{"$label":"ACTS_IN","name":"Moe Szyslak","type":"Role","_key":"1295","_from":"1079","_to":"1073"} +{"$label":"ACTS_IN","name":"Lisa Simpson","type":"Role","_key":"1294","_from":"1078","_to":"1073"} +{"$label":"ACTS_IN","name":"Bart Simpson","type":"Role","_key":"1293","_from":"1077","_to":"1073"} +{"$label":"ACTS_IN","name":"Marge Simpson","type":"Role","_key":"1292","_from":"1076","_to":"1073"} +{"$label":"ACTS_IN","name":"Mayor Quimby's Aide","type":"Role","_key":"1291","_from":"1075","_to":"1073"} +{"$label":"DIRECTED","_key":"1290","_from":"1074","_to":"1073"} +{"$label":"DIRECTED","_key":"7011","_from":"1074","_to":"5882"} +{"$label":"ACTS_IN","name":"Grandpa 'Steely' Phil \/ Nick Vermicelli","type":"Role","_key":"113734","_from":"1075","_to":"67021"} +{"$label":"ACTS_IN","name":"Auctioneer","type":"Role","_key":"108920","_from":"1075","_to":"64366"} +{"$label":"ACTS_IN","name":"Blue Genie","type":"Role","_key":"106509","_from":"1075","_to":"62753"} +{"$label":"ACTS_IN","name":"Mr. Mysterio \/ Woodenleg Wally (voice)","type":"Role","_key":"94084","_from":"1075","_to":"55405"} +{"$label":"ACTS_IN","name":"The Robot Devil","type":"Role","_key":"91867","_from":"1075","_to":"54199"} +{"$label":"ACTS_IN","name":"Alan Frakesh","type":"Role","_key":"12955","_from":"1075","_to":"10106"} +{"$label":"ACTS_IN","name":"Man in Chair","type":"Role","_key":"3605","_from":"1075","_to":"3082"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"69814","_from":"1076","_to":"42606"} +{"$label":"ACTS_IN","name":"Eleanor Costello","type":"Role","_key":"67232","_from":"1076","_to":"41456"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"63846","_from":"1076","_to":"39903"} +{"$label":"ACTS_IN","name":"Marion Hollander","type":"Role","_key":"63457","_from":"1076","_to":"39745"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"111931","_from":"1077","_to":"66073"} +{"$label":"ACTS_IN","name":"Putter","type":"Role","_key":"106554","_from":"1078","_to":"62788"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"58905","_from":"1078","_to":"37199"} +{"$label":"ACTS_IN","name":"Jackie Simpson","type":"Role","_key":"24165","_from":"1078","_to":"17512"} +{"$label":"ACTS_IN","name":"Bartok","type":"Role","_key":"120515","_from":"1079","_to":"70787"} +{"$label":"ACTS_IN","name":"Kahmunrah \/ The Thinker \/ Abe Lincoln","type":"Role","_key":"115890","_from":"1079","_to":"68230"} +{"$label":"ACTS_IN","name":"Daniel Collins","type":"Role","_key":"108875","_from":"1079","_to":"64347"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103731","_from":"1079","_to":"61008"} +{"$label":"ACTS_IN","name":"Charles Danner","type":"Role","_key":"103559","_from":"1079","_to":"60910"} +{"$label":"ACTS_IN","name":"Michael Kelly","type":"Role","_key":"95104","_from":"1079","_to":"55970"} +{"$label":"ACTS_IN","name":"The Blue Raja","type":"Role","_key":"57172","_from":"1079","_to":"36278"} +{"$label":"ACTS_IN","name":"Bartok","type":"Role","_key":"53906","_from":"1079","_to":"34698"} +{"$label":"ACTS_IN","name":"Bud Kent","type":"Role","_key":"52690","_from":"1079","_to":"34207"} +{"$label":"ACTS_IN","name":"Whit","type":"Role","_key":"47538","_from":"1079","_to":"31324"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"40834","_from":"1079","_to":"27489"} +{"$label":"ACTS_IN","name":"Victor 'Animal' Palotti","type":"Role","_key":"11075","_from":"1079","_to":"8755"} +{"$label":"ACTS_IN","name":"Keen Hacksaw","type":"Role","_key":"119356","_from":"1080","_to":"70136"} +{"$label":"ACTS_IN","name":"Victor Allan Miller","type":"Role","_key":"101818","_from":"1080","_to":"59926"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94147","_from":"1080","_to":"55439"} +{"$label":"ACTS_IN","name":"Derek Smalls","type":"Role","_key":"67423","_from":"1080","_to":"41533"} +{"$label":"ACTS_IN","name":"Dog Announcer","type":"Role","_key":"58939","_from":"1080","_to":"37214"} +{"$label":"ACTS_IN","name":"Charles Caiman","type":"Role","_key":"11078","_from":"1080","_to":"8755"} +{"$label":"ACTS_IN","name":"Zozi","type":"Role","_key":"120516","_from":"1081","_to":"70787"} +{"$label":"ACTS_IN","name":"Detective Brunner","type":"Role","_key":"118818","_from":"1081","_to":"69851"} +{"$label":"ACTS_IN","name":"Rothbart","type":"Role","_key":"102738","_from":"1081","_to":"60440"} +{"$label":"ACTS_IN","name":"Agent Banks","type":"Role","_key":"102338","_from":"1081","_to":"60214"} +{"$label":"ACTS_IN","name":"Maj. Gen. Partridge","type":"Role","_key":"100265","_from":"1081","_to":"59133"} +{"$label":"ACTS_IN","name":"President Andrew Boone","type":"Role","_key":"61532","_from":"1081","_to":"38799"} +{"$label":"ACTS_IN","name":"Vladimir","type":"Role","_key":"53904","_from":"1081","_to":"34698"} +{"$label":"ACTS_IN","name":"Lt. Commander Thomas \"Tom\" Dodge","type":"Role","_key":"52560","_from":"1081","_to":"34164"} +{"$label":"ACTS_IN","name":"Robert Hawkins","type":"Role","_key":"23245","_from":"1081","_to":"16859"} +{"$label":"ACTS_IN","name":"Stinky Pete the Prospector (voice)","type":"Role","_key":"10259","_from":"1081","_to":"8176"} +{"$label":"ACTS_IN","name":"Snowball (voice)","type":"Role","_key":"9602","_from":"1081","_to":"7734"} +{"$label":"ACTS_IN","name":"Marcy Dawson","type":"Role","_key":"5846","_from":"1083","_to":"4965"} +{"$label":"ACTS_IN","name":"Raymond Stone","type":"Role","_key":"120422","_from":"1085","_to":"70745"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"120364","_from":"1085","_to":"70708"} +{"$label":"ACTS_IN","name":"Man in Bar","type":"Role","_key":"115215","_from":"1085","_to":"67851"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"95355","_from":"1085","_to":"56098"} +{"$label":"ACTS_IN","name":"Jerry Weiss","type":"Role","_key":"89300","_from":"1085","_to":"52865"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"68571","_from":"1085","_to":"42040"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"63843","_from":"1085","_to":"39903"} +{"$label":"ACTS_IN","name":"Art Shirk","type":"Role","_key":"63488","_from":"1085","_to":"39758"} +{"$label":"ACTS_IN","name":"George Raft","type":"Role","_key":"62666","_from":"1085","_to":"39415"} +{"$label":"ACTS_IN","name":"Richie Ginelli","type":"Role","_key":"62353","_from":"1085","_to":"39282"} +{"$label":"ACTS_IN","name":"Tony Gardella","type":"Role","_key":"54042","_from":"1085","_to":"34763"} +{"$label":"ACTS_IN","name":"Bucky Terranova","type":"Role","_key":"53002","_from":"1085","_to":"34329"} +{"$label":"ACTS_IN","name":"Harry Flugleman","type":"Role","_key":"49475","_from":"1085","_to":"32393"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"48494","_from":"1085","_to":"31835"} +{"$label":"ACTS_IN","name":"Robert Garrett","type":"Role","_key":"18734","_from":"1085","_to":"13858"} +{"$label":"ACTS_IN","name":"Joey Zasa","type":"Role","_key":"3520","_from":"1085","_to":"3010"} +{"$label":"ACTS_IN","name":"Hollis","type":"Role","_key":"1321","_from":"1102","_to":"1086"} +{"$label":"ACTS_IN","name":"Rollerblader","type":"Role","_key":"1320","_from":"1101","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Bully","type":"Role","_key":"1319","_from":"1100","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Clementine","type":"Role","_key":"1318","_from":"1099","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Bully","type":"Role","_key":"1317","_from":"1098","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Bully","type":"Role","_key":"1316","_from":"1097","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Bully","type":"Role","_key":"1315","_from":"1096","_to":"1086"} +{"$label":"ACTS_IN","name":"Train Conducter","type":"Role","_key":"1314","_from":"1095","_to":"1086"} +{"$label":"ACTS_IN","name":"Joel's mother","type":"Role","_key":"1312","_from":"1094","_to":"1086"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"1311","_from":"1093","_to":"1086"} +{"$label":"ACTS_IN","name":"Young Joel","type":"Role","_key":"1310","_from":"1092","_to":"1086"} +{"$label":"ACTS_IN","name":"Dr. Howard Mierzwiak","type":"Role","_key":"1309","_from":"1091","_to":"1086"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"1308","_from":"1090","_to":"1086"} +{"$label":"ACTS_IN","name":"Joel Barish","type":"Role","_key":"1305","_from":"1089","_to":"1086"} +{"$label":"ACTS_IN","name":"Clementine Kruczynski","type":"Role","_key":"1304","_from":"1088","_to":"1086"} +{"$label":"DIRECTED","_key":"1303","_from":"1087","_to":"1086"} +{"$label":"DIRECTED","_key":"51561","_from":"1087","_to":"33641"} +{"$label":"DIRECTED","_key":"35084","_from":"1087","_to":"23923"} +{"$label":"DIRECTED","_key":"5537","_from":"1087","_to":"4722"} +{"$label":"DIRECTED","_key":"4187","_from":"1087","_to":"3552"} +{"$label":"DIRECTED","_key":"4089","_from":"1087","_to":"3490"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"113692","_from":"1088","_to":"66997"} +{"$label":"ACTS_IN","name":"Suki","type":"Role","_key":"112275","_from":"1088","_to":"66298"} +{"$label":"ACTS_IN","name":"Tula","type":"Role","_key":"98007","_from":"1088","_to":"57718"} +{"$label":"ACTS_IN","name":"Ruth Barron","type":"Role","_key":"96626","_from":"1088","_to":"56832"} +{"$label":"ACTS_IN","name":"Young Iris Murdoch","type":"Role","_key":"72569","_from":"1088","_to":"43761"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"71087","_from":"1088","_to":"43161"} +{"$label":"ACTS_IN","name":"Bitsey Bloom","type":"Role","_key":"71066","_from":"1088","_to":"43153"} +{"$label":"ACTS_IN","name":"Madeleine 'Maddy' LeClerc","type":"Role","_key":"66415","_from":"1088","_to":"41070"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"64004","_from":"1088","_to":"39964"} +{"$label":"ACTS_IN","name":"Hester Wallace","type":"Role","_key":"63654","_from":"1088","_to":"39821"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"61717","_from":"1088","_to":"38871"} +{"$label":"ACTS_IN","name":"Hanna Schmitz","type":"Role","_key":"47904","_from":"1088","_to":"31517"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"36067","_from":"1088","_to":"24484"} +{"$label":"ACTS_IN","name":"Marianne Dashwood","type":"Role","_key":"32865","_from":"1088","_to":"22814"} +{"$label":"ACTS_IN","name":"April Wheeler","type":"Role","_key":"29782","_from":"1088","_to":"21077"} +{"$label":"ACTS_IN","name":"Anne Stanton","type":"Role","_key":"15188","_from":"1088","_to":"11636"} +{"$label":"ACTS_IN","name":"Iris Simpkins","type":"Role","_key":"14009","_from":"1088","_to":"10865"} +{"$label":"ACTS_IN","name":"Sarah Pierce","type":"Role","_key":"13308","_from":"1088","_to":"10364"} +{"$label":"ACTS_IN","name":"Juliet Hulme","type":"Role","_key":"11805","_from":"1088","_to":"9260"} +{"$label":"ACTS_IN","name":"Sylvia Llewelyn Davies","type":"Role","_key":"10295","_from":"1088","_to":"8196"} +{"$label":"ACTS_IN","name":"Rose DeWitt Bukater","type":"Role","_key":"7178","_from":"1088","_to":"6002"} +{"$label":"ACTS_IN","name":"Bobby Todd","type":"Role","_key":"121209","_from":"1089","_to":"71198"} +{"$label":"ACTS_IN","name":"Mark Kendall","type":"Role","_key":"118584","_from":"1089","_to":"69727"} +{"$label":"ACTS_IN","name":"Ghost of Christmas Yet To Come","type":"Role","_key":"114557","_from":"1089","_to":"67487"} +{"$label":"ACTS_IN","name":"Horton","type":"Role","_key":"88796","_from":"1089","_to":"52615"} +{"$label":"ACTS_IN","name":"Count Olaf","type":"Role","_key":"71862","_from":"1089","_to":"43486"} +{"$label":"ACTS_IN","name":"Peter Appleton","type":"Role","_key":"67788","_from":"1089","_to":"41672"} +{"$label":"ACTS_IN","name":"Johnny Squares","type":"Role","_key":"64839","_from":"1089","_to":"40334"} +{"$label":"ACTS_IN","name":"Carl Allen","type":"Role","_key":"61667","_from":"1089","_to":"38852"} +{"$label":"ACTS_IN","name":"Walter Getz","type":"Role","_key":"59448","_from":"1089","_to":"37549"} +{"$label":"ACTS_IN","name":"Cable Guy","type":"Role","_key":"57669","_from":"1089","_to":"36512"} +{"$label":"ACTS_IN","name":"Ace Ventura","type":"Role","_key":"52766","_from":"1089","_to":"34234"} +{"$label":"ACTS_IN","name":"Steven Russell","type":"Role","_key":"51613","_from":"1089","_to":"33675"} +{"$label":"ACTS_IN","name":"Grinch","type":"Role","_key":"51192","_from":"1089","_to":"33390"} +{"$label":"ACTS_IN","name":"Lloyd Christmas","type":"Role","_key":"49962","_from":"1089","_to":"32706"} +{"$label":"ACTS_IN","name":"Dick Harper","type":"Role","_key":"47199","_from":"1089","_to":"31110"} +{"$label":"ACTS_IN","name":"Lane Bidlekoff","type":"Role","_key":"37576","_from":"1089","_to":"25467"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"29736","_from":"1089","_to":"21053"} +{"$label":"ACTS_IN","name":"Walter Sparrow\/Fingerling","type":"Role","_key":"28242","_from":"1089","_to":"20227"} +{"$label":"ACTS_IN","name":"Ace Ventura","type":"Role","_key":"25232","_from":"1089","_to":"18207"} +{"$label":"ACTS_IN","name":"Wiploc","type":"Role","_key":"19214","_from":"1089","_to":"14203"} +{"$label":"ACTS_IN","name":"Hank Evans","type":"Role","_key":"18502","_from":"1089","_to":"13701"} +{"$label":"ACTS_IN","name":"Andy Kaufman\/Tony Clifton","type":"Role","_key":"15974","_from":"1089","_to":"12149"} +{"$label":"ACTS_IN","name":"Fletcher Reede","type":"Role","_key":"14395","_from":"1089","_to":"11130"} +{"$label":"ACTS_IN","name":"Stanley Ipkiss","type":"Role","_key":"10124","_from":"1089","_to":"8101"} +{"$label":"ACTS_IN","name":"Riddler\/Edward Nygma","type":"Role","_key":"5251","_from":"1089","_to":"4463"} +{"$label":"ACTS_IN","name":"Bruce Nolan","type":"Role","_key":"4296","_from":"1089","_to":"3662"} +{"$label":"ACTS_IN","name":"Verena von Stefan","type":"Role","_key":"119953","_from":"1090","_to":"70456"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"110225","_from":"1090","_to":"65147"} +{"$label":"ACTS_IN","name":"Alison Olsen","type":"Role","_key":"92525","_from":"1090","_to":"54610"} +{"$label":"ACTS_IN","name":"Lizzie Bradbury","type":"Role","_key":"72201","_from":"1090","_to":"43633"} +{"$label":"ACTS_IN","name":"Betty Warren","type":"Role","_key":"72176","_from":"1090","_to":"43624"} +{"$label":"ACTS_IN","name":"Kaena (voice: English version)","type":"Role","_key":"70757","_from":"1090","_to":"43031"} +{"$label":"ACTS_IN","name":"Christy Fimple","type":"Role","_key":"70595","_from":"1090","_to":"42954"} +{"$label":"ACTS_IN","name":"Nicole Oakley","type":"Role","_key":"65080","_from":"1090","_to":"40432"} +{"$label":"ACTS_IN","name":"Amber Atkins","type":"Role","_key":"63647","_from":"1090","_to":"39819"} +{"$label":"ACTS_IN","name":"Kelly Woods","type":"Role","_key":"59946","_from":"1090","_to":"37851"} +{"$label":"ACTS_IN","name":"Claire Colburn","type":"Role","_key":"55104","_from":"1090","_to":"35187"} +{"$label":"ACTS_IN","name":"Younger Amy March","type":"Role","_key":"54861","_from":"1090","_to":"35089"} +{"$label":"ACTS_IN","name":"Erin Randall","type":"Role","_key":"53975","_from":"1090","_to":"34720"} +{"$label":"ACTS_IN","name":"Young Anastasia (voice)","type":"Role","_key":"53908","_from":"1090","_to":"34698"} +{"$label":"ACTS_IN","name":"Judy Sheperd","type":"Role","_key":"51040","_from":"1090","_to":"33309"} +{"$label":"ACTS_IN","name":"Marie Antoinette","type":"Role","_key":"16280","_from":"1090","_to":"12347"} +{"$label":"ACTS_IN","name":"Torrance Shipman","type":"Role","_key":"14065","_from":"1090","_to":"10903"} +{"$label":"ACTS_IN","name":"Lux Lisbon","type":"Role","_key":"13357","_from":"1090","_to":"10404"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"7462","_from":"1090","_to":"6216"} +{"$label":"ACTS_IN","name":"Tracy Lime","type":"Role","_key":"7033","_from":"1090","_to":"5892"} +{"$label":"ACTS_IN","name":"Mary Jane Watson","type":"Role","_key":"6689","_from":"1090","_to":"5637"} +{"$label":"ACTS_IN","name":"Mary Jane Watson","type":"Role","_key":"6685","_from":"1090","_to":"5630"} +{"$label":"ACTS_IN","name":"Mary Jane Watson","type":"Role","_key":"6642","_from":"1090","_to":"5608"} +{"$label":"DIRECTED","_key":"33094","_from":"1090","_to":"22929"} +{"$label":"ACTS_IN","name":"John Dyke","type":"Role","_key":"116014","_from":"1091","_to":"68318"} +{"$label":"ACTS_IN","name":"Howard Tully","type":"Role","_key":"109520","_from":"1091","_to":"64693"} +{"$label":"ACTS_IN","name":"Tuppy","type":"Role","_key":"103517","_from":"1091","_to":"60900"} +{"$label":"ACTS_IN","name":"Rudy Holt","type":"Role","_key":"98563","_from":"1091","_to":"58084"} +{"$label":"ACTS_IN","name":"James Baker","type":"Role","_key":"98291","_from":"1091","_to":"57900"} +{"$label":"ACTS_IN","name":"Lenny Cole","type":"Role","_key":"96788","_from":"1091","_to":"56924"} +{"$label":"ACTS_IN","name":"Sir Knolte of Marlborough","type":"Role","_key":"70049","_from":"1091","_to":"42711"} +{"$label":"ACTS_IN","name":"Paul Emmett","type":"Role","_key":"69831","_from":"1091","_to":"42613"} +{"$label":"ACTS_IN","name":"Robert Beaumont","type":"Role","_key":"64262","_from":"1091","_to":"40077"} +{"$label":"ACTS_IN","name":"Gerald","type":"Role","_key":"53787","_from":"1091","_to":"34661"} +{"$label":"ACTS_IN","name":"Dr. Chasuble","type":"Role","_key":"52106","_from":"1091","_to":"33974"} +{"$label":"ACTS_IN","name":"Pater Moore","type":"Role","_key":"50280","_from":"1091","_to":"32852"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"46996","_from":"1091","_to":"30983"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"33995","_from":"1091","_to":"23390"} +{"$label":"ACTS_IN","name":"Mr. Dashwood","type":"Role","_key":"32868","_from":"1091","_to":"22814"} +{"$label":"ACTS_IN","name":"Arthur Edens","type":"Role","_key":"32755","_from":"1091","_to":"22745"} +{"$label":"ACTS_IN","name":"Pieter Van Ruijven","type":"Role","_key":"28384","_from":"1091","_to":"20310"} +{"$label":"ACTS_IN","name":"Friedrich Fromm","type":"Role","_key":"19701","_from":"1091","_to":"14564"} +{"$label":"ACTS_IN","name":"Thomas Griffin","type":"Role","_key":"18388","_from":"1091","_to":"13635"} +{"$label":"ACTS_IN","name":"Gen. Cornwallis","type":"Role","_key":"17611","_from":"1091","_to":"13147"} +{"$label":"ACTS_IN","name":"Matt Fowler","type":"Role","_key":"17342","_from":"1091","_to":"12977"} +{"$label":"ACTS_IN","name":"Hugh Fennyman","type":"Role","_key":"16758","_from":"1091","_to":"12639"} +{"$label":"ACTS_IN","name":"Carmine Falcone","type":"Role","_key":"3875","_from":"1091","_to":"3310"} +{"$label":"ACTS_IN","name":"Joy Jordan","type":"Role","_key":"65039","_from":"1093","_to":"40416"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"31571","_from":"1093","_to":"22047"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"13329","_from":"1093","_to":"10364"} +{"$label":"ACTS_IN","name":"Eddie Lowery","type":"Role","_key":"104634","_from":"1097","_to":"61552"} +{"$label":"ACTS_IN","name":"Ace Ventura Jr.","type":"Role","_key":"104009","_from":"1097","_to":"61192"} +{"$label":"ACTS_IN","name":"Corky","type":"Role","_key":"98251","_from":"1097","_to":"57880"} +{"$label":"ACTS_IN","name":"Budderball","type":"Role","_key":"58785","_from":"1097","_to":"37126"} +{"$label":"ACTS_IN","name":"Choir Boy","type":"Role","_key":"24438","_from":"1097","_to":"17679"} +{"$label":"ACTS_IN","name":"Isabelle Malley","type":"Role","_key":"99222","_from":"1102","_to":"58470"} +{"$label":"ACTS_IN","name":"Ramiro","type":"Role","_key":"1337","_from":"1119","_to":"1103"} +{"$label":"ACTS_IN","name":"Maru","type":"Role","_key":"1336","_from":"1118","_to":"1103"} +{"$label":"ACTS_IN","name":"Leonardo","type":"Role","_key":"1335","_from":"1117","_to":"1103"} +{"$label":"ACTS_IN","name":"Mama Octavio","type":"Role","_key":"1334","_from":"1116","_to":"1103"} +{"$label":"ACTS_IN","name":"Mama Susana","type":"Role","_key":"1333","_from":"1115","_to":"1103"} +{"$label":"ACTS_IN","name":"T\u00eda Luisa","type":"Role","_key":"1332","_from":"1114","_to":"1103"} +{"$label":"ACTS_IN","name":"Mauricio","type":"Role","_key":"1331","_from":"1113","_to":"1103"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"1330","_from":"1112","_to":"1103"} +{"$label":"ACTS_IN","name":"Gustavo","type":"Role","_key":"1329","_from":"1111","_to":"1103"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"1328","_from":"1110","_to":"1103"} +{"$label":"ACTS_IN","name":"El Chivo","type":"Role","_key":"1327","_from":"1109","_to":"1103"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"1326","_from":"1108","_to":"1103"} +{"$label":"ACTS_IN","name":"Valeria","type":"Role","_key":"1325","_from":"1107","_to":"1103"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"1324","_from":"1106","_to":"1103"} +{"$label":"ACTS_IN","name":"Octavio","type":"Role","_key":"1323","_from":"1105","_to":"1103"} +{"$label":"DIRECTED","_key":"1322","_from":"1104","_to":"1103"} +{"$label":"DIRECTED","_key":"16693","_from":"1104","_to":"12595"} +{"$label":"DIRECTED","_key":"12142","_from":"1104","_to":"9495"} +{"$label":"DIRECTED","_key":"5824","_from":"1104","_to":"4954"} +{"$label":"ACTS_IN","name":"King of Ward 3","type":"Role","_key":"49139","_from":"1105","_to":"32190"} +{"$label":"ACTS_IN","name":"Mexican","type":"Role","_key":"48823","_from":"1105","_to":"32020"} +{"$label":"ACTS_IN","name":"Toto","type":"Role","_key":"33986","_from":"1105","_to":"23385"} +{"$label":"ACTS_IN","name":"Ernesto Guevara de la Serna","type":"Role","_key":"14682","_from":"1105","_to":"11304"} +{"$label":"ACTS_IN","name":"Julio Zapata","type":"Role","_key":"12916","_from":"1105","_to":"10077"} +{"$label":"ACTS_IN","name":"Santiago","type":"Role","_key":"12112","_from":"1105","_to":"9495"} +{"$label":"ACTS_IN","name":"Padre Amaro","type":"Role","_key":"6463","_from":"1105","_to":"5473"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"4172","_from":"1105","_to":"3552"} +{"$label":"ACTS_IN","name":"\u00c1ngel\/Juan\/Zahara","type":"Role","_key":"2227","_from":"1105","_to":"1963"} +{"$label":"ACTS_IN","name":"Antonio Lopez de Santa Ana","type":"Role","_key":"65325","_from":"1109","_to":"40532"} +{"$label":"ACTS_IN","name":"Shaun San Dena","type":"Role","_key":"110296","_from":"1116","_to":"65177"} +{"$label":"ACTS_IN","name":"Esperanza","type":"Role","_key":"92640","_from":"1116","_to":"54680"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"12114","_from":"1116","_to":"9495"} +{"$label":"ACTS_IN","name":"Don Amilkar","type":"Role","_key":"114053","_from":"1117","_to":"67156"} +{"$label":"ACTS_IN","name":"Manuelo","type":"Role","_key":"29863","_from":"1119","_to":"21121"} +{"$label":"ACTS_IN","name":"Charlie Roarke","type":"Role","_key":"1353","_from":"1133","_to":"1120"} +{"$label":"ACTS_IN","name":"Frank Mulligan","type":"Role","_key":"1352","_from":"1132","_to":"1120"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"1351","_from":"1131","_to":"1120"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"1350","_from":"1130","_to":"1120"} +{"$label":"ACTS_IN","name":"Judy Danvers","type":"Role","_key":"1349","_from":"1129","_to":"1120"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"1348","_from":"1128","_to":"1120"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"1347","_from":"1127","_to":"1120"} +{"$label":"ACTS_IN","name":"Leland","type":"Role","_key":"1346","_from":"1126","_to":"1120"} +{"$label":"ACTS_IN","name":"Sheriff Sam Carney","type":"Role","_key":"1345","_from":"1125","_to":"1120"} +{"$label":"ACTS_IN","name":"Richie Cusack","type":"Role","_key":"1343","_from":"1124","_to":"1120"} +{"$label":"ACTS_IN","name":"Jack Stall","type":"Role","_key":"1342","_from":"1123","_to":"1120"} +{"$label":"ACTS_IN","name":"Sarah Stall","type":"Role","_key":"1341","_from":"1122","_to":"1120"} +{"$label":"DIRECTED","_key":"1338","_from":"1121","_to":"1120"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"107213","_from":"1121","_to":"63230"} +{"$label":"ACTS_IN","name":"Father Rousell","type":"Role","_key":"62788","_from":"1121","_to":"39460"} +{"$label":"ACTS_IN","name":"Man at Lake","type":"Role","_key":"6902","_from":"1121","_to":"5792"} +{"$label":"DIRECTED","_key":"69209","_from":"1121","_to":"42323"} +{"$label":"DIRECTED","_key":"69112","_from":"1121","_to":"42288"} +{"$label":"DIRECTED","_key":"55055","_from":"1121","_to":"35170"} +{"$label":"DIRECTED","_key":"54554","_from":"1121","_to":"34961"} +{"$label":"DIRECTED","_key":"54540","_from":"1121","_to":"34950"} +{"$label":"DIRECTED","_key":"53782","_from":"1121","_to":"34659"} +{"$label":"DIRECTED","_key":"23195","_from":"1121","_to":"16826"} +{"$label":"DIRECTED","_key":"19683","_from":"1121","_to":"14558"} +{"$label":"DIRECTED","_key":"16876","_from":"1121","_to":"12696"} +{"$label":"DIRECTED","_key":"13057","_from":"1121","_to":"10181"} +{"$label":"DIRECTED","_key":"10529","_from":"1121","_to":"8373"} +{"$label":"DIRECTED","_key":"9877","_from":"1121","_to":"7919"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"99155","_from":"1123","_to":"58419"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"95891","_from":"1123","_to":"56393"} +{"$label":"ACTS_IN","name":"Simon Messerman","type":"Role","_key":"115328","_from":"1124","_to":"67904"} +{"$label":"ACTS_IN","name":"Andor Knorr","type":"Role","_key":"113899","_from":"1124","_to":"67089"} +{"$label":"ACTS_IN","name":"Walter Richmond","type":"Role","_key":"105633","_from":"1124","_to":"62176"} +{"$label":"ACTS_IN","name":"Mayor Schneer","type":"Role","_key":"105340","_from":"1124","_to":"61982"} +{"$label":"ACTS_IN","name":"Professor Will Esterhuyse","type":"Role","_key":"103178","_from":"1124","_to":"60689"} +{"$label":"ACTS_IN","name":"Ned Racine","type":"Role","_key":"100124","_from":"1124","_to":"59059"} +{"$label":"ACTS_IN","name":"Angus Tuck","type":"Role","_key":"96258","_from":"1124","_to":"56562"} +{"$label":"ACTS_IN","name":"Tom Grunick","type":"Role","_key":"90693","_from":"1124","_to":"53542"} +{"$label":"ACTS_IN","name":"Nick Carlton","type":"Role","_key":"90274","_from":"1124","_to":"53368"} +{"$label":"ACTS_IN","name":"Luis Molina","type":"Role","_key":"71659","_from":"1124","_to":"43388"} +{"$label":"ACTS_IN","name":"Professor Eddie Jessup","type":"Role","_key":"70528","_from":"1124","_to":"42928"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"69645","_from":"1124","_to":"42516"} +{"$label":"ACTS_IN","name":"Sam Farber, alias Trevor McPhee","type":"Role","_key":"62691","_from":"1124","_to":"39423"} +{"$label":"ACTS_IN","name":"Paul Benjamin","type":"Role","_key":"61243","_from":"1124","_to":"38677"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"48989","_from":"1124","_to":"32115"} +{"$label":"ACTS_IN","name":"Arkady Renko","type":"Role","_key":"48870","_from":"1124","_to":"32046"} +{"$label":"ACTS_IN","name":"Doug Tate","type":"Role","_key":"48493","_from":"1124","_to":"31835"} +{"$label":"ACTS_IN","name":"President Ashton","type":"Role","_key":"46819","_from":"1124","_to":"30888"} +{"$label":"ACTS_IN","name":"Edward Walker","type":"Role","_key":"45239","_from":"1124","_to":"30028"} +{"$label":"ACTS_IN","name":"Walt McCandless","type":"Role","_key":"40406","_from":"1124","_to":"27245"} +{"$label":"ACTS_IN","name":"Marshall","type":"Role","_key":"27181","_from":"1124","_to":"19541"} +{"$label":"ACTS_IN","name":"Harlan James","type":"Role","_key":"25928","_from":"1124","_to":"18645"} +{"$label":"ACTS_IN","name":"Prof. Waldmann","type":"Role","_key":"25313","_from":"1124","_to":"18241"} +{"$label":"ACTS_IN","name":"Frank Quinlan","type":"Role","_key":"24379","_from":"1124","_to":"17645"} +{"$label":"ACTS_IN","name":"Inspector Frank Bumstead","type":"Role","_key":"22584","_from":"1124","_to":"16394"} +{"$label":"ACTS_IN","name":"Prof. John Robinson","type":"Role","_key":"18792","_from":"1124","_to":"13892"} +{"$label":"ACTS_IN","name":"James Leeds","type":"Role","_key":"16318","_from":"1124","_to":"12369"} +{"$label":"ACTS_IN","name":"Thaddeus Ross","type":"Role","_key":"15258","_from":"1124","_to":"11684"} +{"$label":"ACTS_IN","name":"Doyle's Sponsor","type":"Role","_key":"13616","_from":"1124","_to":"10583"} +{"$label":"ACTS_IN","name":"Philip Allen","type":"Role","_key":"12209","_from":"1124","_to":"9562"} +{"$label":"ACTS_IN","name":"Duke Leto Atreides I","type":"Role","_key":"10416","_from":"1124","_to":"8289"} +{"$label":"ACTS_IN","name":"Prof. Hobby","type":"Role","_key":"7700","_from":"1124","_to":"6393"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"3319","_from":"1124","_to":"2844"} +{"$label":"ACTS_IN","name":"Butch Foster","type":"Role","_key":"64070","_from":"1125","_to":"39986"} +{"$label":"ACTS_IN","name":"Colin Seagrave","type":"Role","_key":"10535","_from":"1125","_to":"8373"} +{"$label":"ACTS_IN","name":"Captain Michaels","type":"Role","_key":"98829","_from":"1126","_to":"58224"} +{"$label":"ACTS_IN","name":"Hollis Mason \/ Nite Owl","type":"Role","_key":"93260","_from":"1126","_to":"54939"} +{"$label":"ACTS_IN","name":"James Danvers","type":"Role","_key":"58483","_from":"1126","_to":"36963"} +{"$label":"ACTS_IN","name":"Hammerson","type":"Role","_key":"29751","_from":"1126","_to":"21064"} +{"$label":"ACTS_IN","name":"Grand Inquisitor Silecio","type":"Role","_key":"12865","_from":"1126","_to":"10044"} +{"$label":"ACTS_IN","name":"Andy Sexton","type":"Role","_key":"102084","_from":"1127","_to":"60060"} +{"$label":"ACTS_IN","name":"Colonel Amos","type":"Role","_key":"100850","_from":"1127","_to":"59455"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"99291","_from":"1127","_to":"58508"} +{"$label":"ACTS_IN","name":"Lone Man","type":"Role","_key":"29752","_from":"1127","_to":"21064"} +{"$label":"ACTS_IN","name":"Nik","type":"Role","_key":"109984","_from":"1128","_to":"64985"} +{"$label":"ACTS_IN","name":"Aaron Abbot","type":"Role","_key":"58478","_from":"1128","_to":"36963"} +{"$label":"ACTS_IN","name":"Paul Rodman","type":"Role","_key":"56666","_from":"1128","_to":"35987"} +{"$label":"ACTS_IN","name":"Trout Farm Worker","type":"Role","_key":"16893","_from":"1130","_to":"12696"} +{"$label":"ACTS_IN","name":"Jim Chamberlin","type":"Role","_key":"120810","_from":"1133","_to":"70947"} +{"$label":"ACTS_IN","name":"Harlan Pyne","type":"Role","_key":"114758","_from":"1133","_to":"67595"} +{"$label":"ACTS_IN","name":"Trucker Bob","type":"Role","_key":"111118","_from":"1133","_to":"65632"} +{"$label":"ACTS_IN","name":"Sal (as Aidan Devin)","type":"Role","_key":"105687","_from":"1133","_to":"62205"} +{"$label":"ACTS_IN","name":"Dr. Bill Michaels","type":"Role","_key":"1363","_from":"1143","_to":"1134"} +{"$label":"ACTS_IN","name":"Dr. Ralph Halvorsen","type":"Role","_key":"1362","_from":"1142","_to":"1134"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"1361","_from":"1141","_to":"1134"} +{"$label":"ACTS_IN","name":"Dr. Andrei Smyslov","type":"Role","_key":"1360","_from":"1140","_to":"1134"} +{"$label":"ACTS_IN","name":"Moon-Watcher","type":"Role","_key":"1359","_from":"1139","_to":"1134"} +{"$label":"ACTS_IN","name":"Dr. Heywood R. Floyd","type":"Role","_key":"1358","_from":"1138","_to":"1134"} +{"$label":"ACTS_IN","name":"Dr. Frank Poole","type":"Role","_key":"1357","_from":"1137","_to":"1134"} +{"$label":"ACTS_IN","name":"HAL 9000 (voice)","type":"Role","_key":"1356","_from":"1136","_to":"1134"} +{"$label":"ACTS_IN","name":"Dr. Dave Bowman","type":"Role","_key":"1355","_from":"1135","_to":"1134"} +{"$label":"ACTS_IN","name":"Peter Smythe","type":"Role","_key":"110589","_from":"1135","_to":"65341"} +{"$label":"ACTS_IN","name":"Dave Bowman","type":"Role","_key":"31714","_from":"1135","_to":"22131"} +{"$label":"ACTS_IN","name":"Thorvald","type":"Role","_key":"30114","_from":"1135","_to":"21220"} +{"$label":"ACTS_IN","name":"Garry","type":"Role","_key":"29817","_from":"1135","_to":"21100"} +{"$label":"ACTS_IN","name":"Stephen Lake","type":"Role","_key":"16835","_from":"1135","_to":"12675"} +{"$label":"ACTS_IN","name":"Senator John Russell, Sr.","type":"Role","_key":"12206","_from":"1135","_to":"9562"} +{"$label":"ACTS_IN","name":"Danny Burke","type":"Role","_key":"50675","_from":"1137","_to":"33081"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"34933","_from":"1137","_to":"23859"} +{"$label":"ACTS_IN","name":"Sir Malcolm Leveridge","type":"Role","_key":"118826","_from":"1140","_to":"69852"} +{"$label":"ACTS_IN","name":"Quinlan","type":"Role","_key":"89142","_from":"1140","_to":"52801"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"31248","_from":"1140","_to":"21863"} +{"$label":"ACTS_IN","name":"Capt. John Quin","type":"Role","_key":"26507","_from":"1140","_to":"19048"} +{"$label":"ACTS_IN","name":"Proculus","type":"Role","_key":"21160","_from":"1142","_to":"15473"} +{"$label":"ACTS_IN","name":"Prof. Preston","type":"Role","_key":"26860","_from":"1143","_to":"19304"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"1372","_from":"1151","_to":"1144"} +{"$label":"ACTS_IN","name":"L.J. Washington","type":"Role","_key":"1371","_from":"1150","_to":"1144"} +{"$label":"ACTS_IN","name":"Dr. Fletcher","type":"Role","_key":"1370","_from":"1149","_to":"1144"} +{"$label":"ACTS_IN","name":"Dr. Goines","type":"Role","_key":"1368","_from":"1148","_to":"1144"} +{"$label":"ACTS_IN","name":"Dr. Kathryn Railly","type":"Role","_key":"1367","_from":"1147","_to":"1144"} +{"$label":"ACTS_IN","name":"Jeffrey Goines","type":"Role","_key":"1366","_from":"1146","_to":"1144"} +{"$label":"DIRECTED","_key":"1364","_from":"1145","_to":"1144"} +{"$label":"DIRECTED","_key":"100544","_from":"1145","_to":"59305"} +{"$label":"DIRECTED","_key":"72263","_from":"1145","_to":"43659"} +{"$label":"DIRECTED","_key":"70667","_from":"1145","_to":"42995"} +{"$label":"DIRECTED","_key":"47894","_from":"1145","_to":"31515"} +{"$label":"DIRECTED","_key":"32508","_from":"1145","_to":"22603"} +{"$label":"DIRECTED","_key":"31742","_from":"1145","_to":"22160"} +{"$label":"DIRECTED","_key":"16203","_from":"1145","_to":"12305"} +{"$label":"DIRECTED","_key":"8946","_from":"1145","_to":"7262"} +{"$label":"DIRECTED","_key":"2733","_from":"1145","_to":"2363"} +{"$label":"DIRECTED","_key":"1429","_from":"1145","_to":"1207"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72911","_from":"1145","_to":"43907"} +{"$label":"ACTS_IN","name":"Selbstverteidigende Nonne \/ Exhibitionist \/ Onkel Sam \/ Raupenfahrer \/ Schildhalter","type":"Role","_key":"52714","_from":"1145","_to":"34219"} +{"$label":"ACTS_IN","name":"Dr. Imhaus","type":"Role","_key":"52446","_from":"1145","_to":"34119"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32491","_from":"1145","_to":"22603"} +{"$label":"ACTS_IN","name":"Gorrilla Hand","type":"Role","_key":"8951","_from":"1145","_to":"7262"} +{"$label":"ACTS_IN","name":"Crucifee","type":"Role","_key":"6985","_from":"1145","_to":"5860"} +{"$label":"ACTS_IN","name":"Smoking Man (uncredited)","type":"Role","_key":"1440","_from":"1145","_to":"1207"} +{"$label":"ACTS_IN","name":"Lt. Aldo Raine","type":"Role","_key":"110261","_from":"1146","_to":"65170"} +{"$label":"ACTS_IN","name":"Sinbad","type":"Role","_key":"100118","_from":"1146","_to":"59057"} +{"$label":"ACTS_IN","name":"Detective Frank Harris","type":"Role","_key":"99220","_from":"1146","_to":"58470"} +{"$label":"ACTS_IN","name":"Billy Canton","type":"Role","_key":"66705","_from":"1146","_to":"41210"} +{"$label":"ACTS_IN","name":"Early Grayce","type":"Role","_key":"66648","_from":"1146","_to":"41190"} +{"$label":"ACTS_IN","name":"Mr. O'Brien","type":"Role","_key":"51744","_from":"1146","_to":"33765"} +{"$label":"ACTS_IN","name":"John Dean","type":"Role","_key":"51596","_from":"1146","_to":"33668"} +{"$label":"ACTS_IN","name":"Jerry Welbach","type":"Role","_key":"41488","_from":"1146","_to":"27879"} +{"$label":"ACTS_IN","name":"Chad Feldheimer","type":"Role","_key":"35020","_from":"1146","_to":"23900"} +{"$label":"ACTS_IN","name":"Benjamin Button","type":"Role","_key":"34778","_from":"1146","_to":"23771"} +{"$label":"ACTS_IN","name":"Game Show Kandidat","type":"Role","_key":"34728","_from":"1146","_to":"23746"} +{"$label":"ACTS_IN","name":"Jesse James","type":"Role","_key":"32199","_from":"1146","_to":"22448"} +{"$label":"ACTS_IN","name":"Frankie McGuire","type":"Role","_key":"31975","_from":"1146","_to":"22296"} +{"$label":"ACTS_IN","name":"Tristan Ludlow","type":"Role","_key":"31965","_from":"1146","_to":"22291"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"13646","_from":"1146","_to":"10603"} +{"$label":"ACTS_IN","name":"Tom Bishop","type":"Role","_key":"13600","_from":"1146","_to":"10575"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"12110","_from":"1146","_to":"9495"} +{"$label":"ACTS_IN","name":"Heinrich Harrer","type":"Role","_key":"11560","_from":"1146","_to":"9086"} +{"$label":"ACTS_IN","name":"Michael Sullivan","type":"Role","_key":"9650","_from":"1146","_to":"7756"} +{"$label":"ACTS_IN","name":"Detective David Mills","type":"Role","_key":"9504","_from":"1146","_to":"7669"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"9266","_from":"1146","_to":"7489"} +{"$label":"ACTS_IN","name":"Achilles","type":"Role","_key":"7788","_from":"1146","_to":"6469"} +{"$label":"ACTS_IN","name":"Louis de Pointe du Lac","type":"Role","_key":"7460","_from":"1146","_to":"6216"} +{"$label":"ACTS_IN","name":"Tyler Durden","type":"Role","_key":"6558","_from":"1146","_to":"5541"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6005","_from":"1146","_to":"5081"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"4434","_from":"1146","_to":"3783"} +{"$label":"ACTS_IN","name":"Robert \u201cRusty\u201d Charles Ryan","type":"Role","_key":"4144","_from":"1146","_to":"3539"} +{"$label":"ACTS_IN","name":"Joe Black","type":"Role","_key":"4133","_from":"1146","_to":"3530"} +{"$label":"ACTS_IN","name":"Paul Maclean","type":"Role","_key":"4106","_from":"1146","_to":"3506"} +{"$label":"ACTS_IN","name":"Rusty Ryan","type":"Role","_key":"2517","_from":"1146","_to":"2210"} +{"$label":"ACTS_IN","name":"Rusty Ryan","type":"Role","_key":"2485","_from":"1146","_to":"2184"} +{"$label":"ACTS_IN","name":"Mickey O'Neil","type":"Role","_key":"1907","_from":"1146","_to":"1658"} +{"$label":"ACTS_IN","name":"Karen Carr","type":"Role","_key":"112440","_from":"1147","_to":"66383"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99284","_from":"1147","_to":"58507"} +{"$label":"ACTS_IN","name":"Jennifer Barrett Allieghieri","type":"Role","_key":"94480","_from":"1147","_to":"55643"} +{"$label":"ACTS_IN","name":"Cody Zamora","type":"Role","_key":"72393","_from":"1147","_to":"43711"} +{"$label":"ACTS_IN","name":"Maria McGuire","type":"Role","_key":"66326","_from":"1147","_to":"41029"} +{"$label":"ACTS_IN","name":"Julie Moore","type":"Role","_key":"64304","_from":"1147","_to":"40088"} +{"$label":"ACTS_IN","name":"Cora Munro","type":"Role","_key":"53352","_from":"1147","_to":"34484"} +{"$label":"ACTS_IN","name":"Maya Olham","type":"Role","_key":"35189","_from":"1147","_to":"23980"} +{"$label":"ACTS_IN","name":"Sara Sunhill","type":"Role","_key":"19977","_from":"1147","_to":"14708"} +{"$label":"ACTS_IN","name":"Gracie","type":"Role","_key":"9745","_from":"1147","_to":"7817"} +{"$label":"ACTS_IN","name":"Sherri Shepard","type":"Role","_key":"8377","_from":"1147","_to":"6847"} +{"$label":"ACTS_IN","name":"George Hees","type":"Role","_key":"120820","_from":"1148","_to":"70947"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"119840","_from":"1148","_to":"70374"} +{"$label":"ACTS_IN","name":"Sir David Maxwell Fyfe","type":"Role","_key":"117934","_from":"1148","_to":"69324"} +{"$label":"ACTS_IN","name":"Commodus","type":"Role","_key":"111750","_from":"1148","_to":"65965"} +{"$label":"ACTS_IN","name":"William Fawcett Robinson","type":"Role","_key":"109681","_from":"1148","_to":"64780"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"108849","_from":"1148","_to":"64332"} +{"$label":"ACTS_IN","name":"P.J. Aimes","type":"Role","_key":"104849","_from":"1148","_to":"61696"} +{"$label":"ACTS_IN","name":"Flash Madden","type":"Role","_key":"103364","_from":"1148","_to":"60808"} +{"$label":"ACTS_IN","name":"Captain Von Trapp","type":"Role","_key":"103264","_from":"1148","_to":"60756"} +{"$label":"ACTS_IN","name":"Charles Muntz (voice)","type":"Role","_key":"98794","_from":"1148","_to":"58215"} +{"$label":"ACTS_IN","name":"Dr. Heller","type":"Role","_key":"98524","_from":"1148","_to":"58062"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"97738","_from":"1148","_to":"57551"} +{"$label":"ACTS_IN","name":"Mr. Massie","type":"Role","_key":"91407","_from":"1148","_to":"53909"} +{"$label":"ACTS_IN","name":"1 (voice)","type":"Role","_key":"89004","_from":"1148","_to":"52724"} +{"$label":"ACTS_IN","name":"John Mackey","type":"Role","_key":"72800","_from":"1148","_to":"43864"} +{"$label":"ACTS_IN","name":"Sir Charles Litton","type":"Role","_key":"72317","_from":"1148","_to":"43680"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"71277","_from":"1148","_to":"43243"} +{"$label":"ACTS_IN","name":"Squadron Leader Colin Harvey","type":"Role","_key":"70019","_from":"1148","_to":"42700"} +{"$label":"ACTS_IN","name":"Captain Newport","type":"Role","_key":"69625","_from":"1148","_to":"42500"} +{"$label":"ACTS_IN","name":"Matthew Van Helsing","type":"Role","_key":"64193","_from":"1148","_to":"40048"} +{"$label":"ACTS_IN","name":"Raymond Alden","type":"Role","_key":"62979","_from":"1148","_to":"39543"} +{"$label":"ACTS_IN","name":"Reverend Jonathan Whirley","type":"Role","_key":"59526","_from":"1148","_to":"37581"} +{"$label":"ACTS_IN","name":"Mike Wallace","type":"Role","_key":"51973","_from":"1148","_to":"33895"} +{"$label":"ACTS_IN","name":"Doctor Parnassus","type":"Role","_key":"47895","_from":"1148","_to":"31515"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"35292","_from":"1148","_to":"24029"} +{"$label":"ACTS_IN","name":"Freddie Chapman","type":"Role","_key":"31249","_from":"1148","_to":"21866"} +{"$label":"ACTS_IN","name":"Herodes Antipas","type":"Role","_key":"21141","_from":"1148","_to":"15473"} +{"$label":"ACTS_IN","name":"John Adams Gates","type":"Role","_key":"17907","_from":"1148","_to":"13324"} +{"$label":"ACTS_IN","name":"Simon Wyler","type":"Role","_key":"17797","_from":"1148","_to":"13267"} +{"$label":"ACTS_IN","name":"Aristotle","type":"Role","_key":"17047","_from":"1148","_to":"12778"} +{"$label":"ACTS_IN","name":"Rudyard Kipling","type":"Role","_key":"11620","_from":"1148","_to":"9125"} +{"$label":"ACTS_IN","name":"Dr. Rosen","type":"Role","_key":"5639","_from":"1148","_to":"4805"} +{"$label":"ACTS_IN","name":"Arthur Case","type":"Role","_key":"4956","_from":"1148","_to":"4222"} +{"$label":"ACTS_IN","name":"Dean Whiting","type":"Role","_key":"3320","_from":"1148","_to":"2844"} +{"$label":"ACTS_IN","name":"General Chang","type":"Role","_key":"2683","_from":"1148","_to":"2329"} +{"$label":"ACTS_IN","name":"The Riddler","type":"Role","_key":"22546","_from":"1149","_to":"16373"} +{"$label":"ACTS_IN","name":"Jesus 'Chuy' Campos","type":"Role","_key":"103067","_from":"1151","_to":"60628"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"51712","_from":"1151","_to":"33743"} +{"$label":"ACTS_IN","name":"Dominikaner","type":"Role","_key":"41525","_from":"1151","_to":"27891"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"1391","_from":"1170","_to":"1152"} +{"$label":"ACTS_IN","name":"Amparo","type":"Role","_key":"1390","_from":"1169","_to":"1152"} +{"$label":"ACTS_IN","name":"Alicia's Father","type":"Role","_key":"1389","_from":"1168","_to":"1152"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"1388","_from":"1167","_to":"1152"} +{"$label":"ACTS_IN","name":"Lydia's Sister","type":"Role","_key":"1387","_from":"1166","_to":"1152"} +{"$label":"ACTS_IN","name":"Ni\u00f1o de Valencia","type":"Role","_key":"1386","_from":"1165","_to":"1152"} +{"$label":"ACTS_IN","name":"Matilde","type":"Role","_key":"1385","_from":"1164","_to":"1152"} +{"$label":"ACTS_IN","name":"\u00c1ngela","type":"Role","_key":"1384","_from":"1163","_to":"1152"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"1383","_from":"1162","_to":"1152"} +{"$label":"ACTS_IN","name":"Singer at Party","type":"Role","_key":"1382","_from":"1161","_to":"1152"} +{"$label":"ACTS_IN","name":"Bailarine","type":"Role","_key":"1381","_from":"1160","_to":"1152"} +{"$label":"ACTS_IN","name":"Bailarine","type":"Role","_key":"1380","_from":"1159","_to":"1152"} +{"$label":"ACTS_IN","name":"Katerina Bilova","type":"Role","_key":"1379","_from":"1158","_to":"1152"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"1378","_from":"1157","_to":"1152"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"1377","_from":"1156","_to":"1152"} +{"$label":"ACTS_IN","name":"Benigno","type":"Role","_key":"1376","_from":"1155","_to":"1152"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"1375","_from":"1154","_to":"1152"} +{"$label":"DIRECTED","_key":"1373","_from":"1153","_to":"1152"} +{"$label":"DIRECTED","_key":"48558","_from":"1153","_to":"31865"} +{"$label":"DIRECTED","_key":"48542","_from":"1153","_to":"31857"} +{"$label":"DIRECTED","_key":"48520","_from":"1153","_to":"31846"} +{"$label":"DIRECTED","_key":"48509","_from":"1153","_to":"31842"} +{"$label":"DIRECTED","_key":"48168","_from":"1153","_to":"31649"} +{"$label":"DIRECTED","_key":"47844","_from":"1153","_to":"31496"} +{"$label":"DIRECTED","_key":"32156","_from":"1153","_to":"22417"} +{"$label":"DIRECTED","_key":"30906","_from":"1153","_to":"21662"} +{"$label":"DIRECTED","_key":"30084","_from":"1153","_to":"21209"} +{"$label":"DIRECTED","_key":"29521","_from":"1153","_to":"20917"} +{"$label":"DIRECTED","_key":"21625","_from":"1153","_to":"15811"} +{"$label":"DIRECTED","_key":"3800","_from":"1153","_to":"3261"} +{"$label":"DIRECTED","_key":"3146","_from":"1153","_to":"2696"} +{"$label":"DIRECTED","_key":"2226","_from":"1153","_to":"1963"} +{"$label":"DIRECTED","_key":"1811","_from":"1153","_to":"1568"} +{"$label":"ACTS_IN","name":"Passagier in Bus","type":"Role","_key":"48535","_from":"1153","_to":"31846"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"32165","_from":"1153","_to":"22417"} +{"$label":"ACTS_IN","name":"Maxi","type":"Role","_key":"106468","_from":"1155","_to":"62726"} +{"$label":"ACTS_IN","name":"Le docteur (Bastille)","type":"Role","_key":"19869","_from":"1155","_to":"14635"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"12616","_from":"1155","_to":"9858"} +{"$label":"ACTS_IN","name":"Rafi","type":"Role","_key":"12512","_from":"1155","_to":"9802"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"2345","_from":"1155","_to":"2066"} +{"$label":"ACTS_IN","name":"Paca\/Paquito","type":"Role","_key":"2236","_from":"1155","_to":"1963"} +{"$label":"ACTS_IN","name":"Cacho","type":"Role","_key":"95697","_from":"1156","_to":"56282"} +{"$label":"ACTS_IN","name":"Edurne","type":"Role","_key":"48179","_from":"1157","_to":"31649"} +{"$label":"ACTS_IN","name":"Clementina","type":"Role","_key":"3809","_from":"1157","_to":"3261"} +{"$label":"ACTS_IN","name":"Abuela de Val\u00e9re","type":"Role","_key":"119067","_from":"1158","_to":"69983"} +{"$label":"ACTS_IN","name":"Eurycleia","type":"Role","_key":"111714","_from":"1158","_to":"65950"} +{"$label":"ACTS_IN","name":"Queen Anne of Austria","type":"Role","_key":"89246","_from":"1158","_to":"52844"} +{"$label":"ACTS_IN","name":"Mme Muller","type":"Role","_key":"72731","_from":"1158","_to":"43822"} +{"$label":"ACTS_IN","name":"Mrs. Welland","type":"Role","_key":"63350","_from":"1158","_to":"39699"} +{"$label":"ACTS_IN","name":"Hannah Chaplin","type":"Role","_key":"63337","_from":"1158","_to":"39698"} +{"$label":"ACTS_IN","name":"Fortune Teller","type":"Role","_key":"58181","_from":"1158","_to":"36805"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"43995","_from":"1158","_to":"29346"} +{"$label":"ACTS_IN","name":"Ella Zielinsky","type":"Role","_key":"41322","_from":"1158","_to":"27781"} +{"$label":"ACTS_IN","name":"Opal","type":"Role","_key":"26140","_from":"1158","_to":"18778"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"24706","_from":"1158","_to":"17866"} +{"$label":"ACTS_IN","name":"Anna of Austria","type":"Role","_key":"24347","_from":"1158","_to":"17626"} +{"$label":"ACTS_IN","name":"Tonya Gromeko","type":"Role","_key":"10792","_from":"1158","_to":"8557"} +{"$label":"ACTS_IN","name":"Principessa Lherimia","type":"Role","_key":"38106","_from":"1159","_to":"25769"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"63742","_from":"1161","_to":"39854"} +{"$label":"ACTS_IN","name":"Helen Perez","type":"Role","_key":"69275","_from":"1163","_to":"42354"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"65999","_from":"1163","_to":"40841"} +{"$label":"ACTS_IN","name":"Aleera","type":"Role","_key":"45843","_from":"1163","_to":"30311"} +{"$label":"ACTS_IN","name":"Bel\u00e9n","type":"Role","_key":"12612","_from":"1163","_to":"9858"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"106469","_from":"1164","_to":"62726"} +{"$label":"ACTS_IN","name":"Lectora de labios (Lip Reader)","type":"Role","_key":"48178","_from":"1164","_to":"31649"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"16549","_from":"1164","_to":"12502"} +{"$label":"ACTS_IN","name":"Sole","type":"Role","_key":"3149","_from":"1164","_to":"2696"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"62653","_from":"1166","_to":"39410"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"106473","_from":"1167","_to":"62726"} +{"$label":"ACTS_IN","name":"Abuela","type":"Role","_key":"48545","_from":"1167","_to":"31857"} +{"$label":"ACTS_IN","name":"Sor Rata de Callej\u00f3n","type":"Role","_key":"48531","_from":"1167","_to":"31846"} +{"$label":"ACTS_IN","name":"Portera (Concierge)","type":"Role","_key":"48176","_from":"1167","_to":"31649"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"47850","_from":"1167","_to":"31496"} +{"$label":"ACTS_IN","name":"Madre de V\u00edctor","type":"Role","_key":"37929","_from":"1167","_to":"25681"} +{"$label":"ACTS_IN","name":"Madre de Leo","type":"Role","_key":"30911","_from":"1167","_to":"21662"} +{"$label":"ACTS_IN","name":"Portera Testiga de Jehov\u00e1","type":"Role","_key":"30099","_from":"1167","_to":"21209"} +{"$label":"ACTS_IN","name":"Do\u00f1a Asun","type":"Role","_key":"21662","_from":"1167","_to":"15835"} +{"$label":"ACTS_IN","name":"T\u00eda Paula","type":"Role","_key":"3152","_from":"1167","_to":"2696"} +{"$label":"ACTS_IN","name":"Caterina Sforza","type":"Role","_key":"106435","_from":"1169","_to":"62703"} +{"$label":"ACTS_IN","name":"Plaster of Paris","type":"Role","_key":"48832","_from":"1169","_to":"32022"} +{"$label":"ACTS_IN","name":"Estrella Cuevas","type":"Role","_key":"37927","_from":"1169","_to":"25681"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"23059","_from":"1169","_to":"16717"} +{"$label":"ACTS_IN","name":"Flor Moreno","type":"Role","_key":"21939","_from":"1169","_to":"16022"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"21337","_from":"1169","_to":"15602"} +{"$label":"ACTS_IN","name":"Nunik","type":"Role","_key":"20665","_from":"1169","_to":"15110"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"20603","_from":"1169","_to":"15077"} +{"$label":"ACTS_IN","name":"Luc\u00eda","type":"Role","_key":"12608","_from":"1169","_to":"9858"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"67591","_from":"1170","_to":"41608"} +{"$label":"ACTS_IN","name":"Chema","type":"Role","_key":"52980","_from":"1170","_to":"34322"} +{"$label":"ACTS_IN","name":"Pelayo","type":"Role","_key":"16427","_from":"1170","_to":"12423"} +{"$label":"ACTS_IN","name":"Otto joven","type":"Role","_key":"13067","_from":"1170","_to":"10186"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"2228","_from":"1170","_to":"1963"} +{"$label":"ACTS_IN","name":"Lily Smith","type":"Role","_key":"1409","_from":"1189","_to":"1171"} +{"$label":"ACTS_IN","name":"Shorty Mike","type":"Role","_key":"1408","_from":"1188","_to":"1171"} +{"$label":"ACTS_IN","name":"Battle DJ","type":"Role","_key":"1407","_from":"1187","_to":"1171"} +{"$label":"ACTS_IN","name":"Bouncer","type":"Role","_key":"1406","_from":"1186","_to":"1171"} +{"$label":"ACTS_IN","name":"Janeane","type":"Role","_key":"1405","_from":"1185","_to":"1171"} +{"$label":"ACTS_IN","name":"Wink","type":"Role","_key":"1404","_from":"1184","_to":"1171"} +{"$label":"ACTS_IN","name":"DJ Iz","type":"Role","_key":"1403","_from":"1183","_to":"1171"} +{"$label":"ACTS_IN","name":"Second Parking Lot Rapper","type":"Role","_key":"1402","_from":"1182","_to":"1171"} +{"$label":"ACTS_IN","name":"Lil' Tic","type":"Role","_key":"1401","_from":"1181","_to":"1171"} +{"$label":"ACTS_IN","name":"Male Lunch Truck Rapper","type":"Role","_key":"1400","_from":"1180","_to":"1171"} +{"$label":"ACTS_IN","name":"Greg Buehl","type":"Role","_key":"1399","_from":"1179","_to":"1171"} +{"$label":"ACTS_IN","name":"Sol George","type":"Role","_key":"1398","_from":"1178","_to":"1171"} +{"$label":"ACTS_IN","name":"Cheddar Bob","type":"Role","_key":"1397","_from":"1177","_to":"1171"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"1396","_from":"1176","_to":"1171"} +{"$label":"ACTS_IN","name":"Stephanie Smith","type":"Role","_key":"1395","_from":"1175","_to":"1171"} +{"$label":"ACTS_IN","name":"David 'Future' Porter","type":"Role","_key":"1394","_from":"1174","_to":"1171"} +{"$label":"ACTS_IN","name":"Jimmy B. \"Rabbit\" Smith","type":"Role","_key":"1393","_from":"1173","_to":"1171"} +{"$label":"DIRECTED","_key":"1392","_from":"1172","_to":"1171"} +{"$label":"DIRECTED","_key":"72806","_from":"1172","_to":"43867"} +{"$label":"DIRECTED","_key":"67808","_from":"1172","_to":"41676"} +{"$label":"DIRECTED","_key":"67224","_from":"1172","_to":"41455"} +{"$label":"DIRECTED","_key":"51857","_from":"1172","_to":"33833"} +{"$label":"DIRECTED","_key":"18468","_from":"1172","_to":"13688"} +{"$label":"DIRECTED","_key":"16923","_from":"1172","_to":"12718"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"94350","_from":"1173","_to":"55558"} +{"$label":"ACTS_IN","name":"Isaac Duperde","type":"Role","_key":"117448","_from":"1174","_to":"69070"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"92560","_from":"1174","_to":"54641"} +{"$label":"ACTS_IN","name":"Odin James","type":"Role","_key":"67652","_from":"1174","_to":"41627"} +{"$label":"ACTS_IN","name":"Chaz","type":"Role","_key":"59601","_from":"1174","_to":"37627"} +{"$label":"ACTS_IN","name":"Griff McReynolds","type":"Role","_key":"53028","_from":"1174","_to":"34336"} +{"$label":"ACTS_IN","name":"Tyrell","type":"Role","_key":"28310","_from":"1174","_to":"20259"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"10994","_from":"1174","_to":"8707"} +{"$label":"ACTS_IN","name":"Carolyn Carver","type":"Role","_key":"118817","_from":"1175","_to":"69851"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"112240","_from":"1175","_to":"66289"} +{"$label":"ACTS_IN","name":"Della","type":"Role","_key":"105771","_from":"1175","_to":"62270"} +{"$label":"ACTS_IN","name":"Holli Would","type":"Role","_key":"99218","_from":"1175","_to":"58470"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"88406","_from":"1175","_to":"52396"} +{"$label":"ACTS_IN","name":"Celeste Martin","type":"Role","_key":"88140","_from":"1175","_to":"52301"} +{"$label":"ACTS_IN","name":"Victoria Gray","type":"Role","_key":"69980","_from":"1175","_to":"42688"} +{"$label":"ACTS_IN","name":"Memo Paris","type":"Role","_key":"69585","_from":"1175","_to":"42485"} +{"$label":"ACTS_IN","name":"Maggie O'Connor","type":"Role","_key":"62961","_from":"1175","_to":"39537"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"60198","_from":"1175","_to":"37979"} +{"$label":"ACTS_IN","name":"Jessica Martin","type":"Role","_key":"56367","_from":"1175","_to":"35817"} +{"$label":"ACTS_IN","name":"Sarah Ballentine","type":"Role","_key":"39605","_from":"1175","_to":"26771"} +{"$label":"ACTS_IN","name":"Heather Evans","type":"Role","_key":"34230","_from":"1175","_to":"23502"} +{"$label":"ACTS_IN","name":"Kitty Potter","type":"Role","_key":"28142","_from":"1175","_to":"20177"} +{"$label":"ACTS_IN","name":"Lynn Bracken","type":"Role","_key":"18473","_from":"1175","_to":"13688"} +{"$label":"ACTS_IN","name":"Carol McCoy","type":"Role","_key":"18179","_from":"1175","_to":"13490"} +{"$label":"ACTS_IN","name":"Karen McCoy","type":"Role","_key":"17827","_from":"1175","_to":"13281"} +{"$label":"ACTS_IN","name":"Marion Cole","type":"Role","_key":"16861","_from":"1175","_to":"12685"} +{"$label":"ACTS_IN","name":"Nadia Gates","type":"Role","_key":"10908","_from":"1175","_to":"8647"} +{"$label":"ACTS_IN","name":"Vicki Vale","type":"Role","_key":"3820","_from":"1175","_to":"3276"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"116712","_from":"1176","_to":"68705"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"102596","_from":"1176","_to":"60363"} +{"$label":"ACTS_IN","name":"Molly Gunn","type":"Role","_key":"102505","_from":"1176","_to":"60309"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"102038","_from":"1176","_to":"60035"} +{"$label":"ACTS_IN","name":"Krista (The Dead Girl)","type":"Role","_key":"95172","_from":"1176","_to":"55998"} +{"$label":"ACTS_IN","name":"Colleen O'Hallahan","type":"Role","_key":"91870","_from":"1176","_to":"54199"} +{"$label":"ACTS_IN","name":"Jody Marken","type":"Role","_key":"90643","_from":"1176","_to":"53521"} +{"$label":"ACTS_IN","name":"Elisabeth Burrows","type":"Role","_key":"88037","_from":"1176","_to":"52260"} +{"$label":"ACTS_IN","name":"Sarah McNerney","type":"Role","_key":"87970","_from":"1176","_to":"52234"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"87926","_from":"1176","_to":"52214"} +{"$label":"ACTS_IN","name":"Fay Forrester","type":"Role","_key":"67828","_from":"1176","_to":"41687"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"57334","_from":"1176","_to":"36355"} +{"$label":"ACTS_IN","name":"Tai","type":"Role","_key":"54968","_from":"1176","_to":"35134"} +{"$label":"ACTS_IN","name":"Izzy","type":"Role","_key":"52169","_from":"1176","_to":"33997"} +{"$label":"ACTS_IN","name":"Emily Jackson","type":"Role","_key":"44516","_from":"1176","_to":"29646"} +{"$label":"ACTS_IN","name":"Daisy Randone","type":"Role","_key":"27880","_from":"1176","_to":"19989"} +{"$label":"ACTS_IN","name":"Shellie","type":"Role","_key":"2850","_from":"1176","_to":"2450"} +{"$label":"ACTS_IN","name":"Moe Iba","type":"Role","_key":"58049","_from":"1177","_to":"36729"} +{"$label":"ACTS_IN","name":"Private First Class Sam Train","type":"Role","_key":"89360","_from":"1178","_to":"52887"} +{"$label":"ACTS_IN","name":"Keryl","type":"Role","_key":"60072","_from":"1178","_to":"37905"} +{"$label":"ACTS_IN","name":"Vern","type":"Role","_key":"31298","_from":"1178","_to":"21887"} +{"$label":"ACTS_IN","name":"Clyde","type":"Role","_key":"120508","_from":"1179","_to":"70785"} +{"$label":"ACTS_IN","name":"Peter Evans","type":"Role","_key":"90053","_from":"1179","_to":"53263"} +{"$label":"ACTS_IN","name":"Son Hayes","type":"Role","_key":"89021","_from":"1179","_to":"52734"} +{"$label":"ACTS_IN","name":"Mundt","type":"Role","_key":"71633","_from":"1179","_to":"43379"} +{"$label":"ACTS_IN","name":"Lynard","type":"Role","_key":"57007","_from":"1179","_to":"36167"} +{"$label":"ACTS_IN","name":"Rosen","type":"Role","_key":"55710","_from":"1179","_to":"35451"} +{"$label":"ACTS_IN","name":"Floyd Poteet","type":"Role","_key":"51713","_from":"1179","_to":"33743"} +{"$label":"ACTS_IN","name":"Dex","type":"Role","_key":"47560","_from":"1179","_to":"31338"} +{"$label":"ACTS_IN","name":"John Givings","type":"Role","_key":"29787","_from":"1179","_to":"21077"} +{"$label":"ACTS_IN","name":"Dave Karnes","type":"Role","_key":"16001","_from":"1179","_to":"12161"} +{"$label":"ACTS_IN","name":"Lt. Gooz Wood","type":"Role","_key":"8138","_from":"1179","_to":"6692"} +{"$label":"ACTS_IN","name":"Big Fate","type":"Role","_key":"71638","_from":"1180","_to":"43379"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"71519","_from":"1180","_to":"43338"} +{"$label":"ACTS_IN","name":"Malcolm Moore","type":"Role","_key":"56454","_from":"1180","_to":"35870"} +{"$label":"ACTS_IN","name":"Agent Mosley Drummy","type":"Role","_key":"50950","_from":"1180","_to":"33249"} +{"$label":"ACTS_IN","name":"Terell Lessor","type":"Role","_key":"116148","_from":"1184","_to":"68391"} +{"$label":"ACTS_IN","name":"Otis Higgs","type":"Role","_key":"102689","_from":"1184","_to":"60412"} +{"$label":"ACTS_IN","name":"Cole Burris","type":"Role","_key":"68731","_from":"1184","_to":"42115"} +{"$label":"ACTS_IN","name":"Johnny 'The Kid' Pickett","type":"Role","_key":"10967","_from":"1184","_to":"8689"} +{"$label":"ACTS_IN","name":"Rizzo","type":"Role","_key":"9660","_from":"1184","_to":"7756"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"119332","_from":"1185","_to":"70114"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"113223","_from":"1185","_to":"66716"} +{"$label":"ACTS_IN","name":"Alanna","type":"Role","_key":"111090","_from":"1185","_to":"65620"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"108144","_from":"1185","_to":"63913"} +{"$label":"ACTS_IN","name":"Matilda","type":"Role","_key":"99288","_from":"1185","_to":"58508"} +{"$label":"ACTS_IN","name":"Nola","type":"Role","_key":"63551","_from":"1185","_to":"39779"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"60113","_from":"1185","_to":"37933"} +{"$label":"ACTS_IN","name":"as Himself (also archive footage)","type":"Role","_key":"95611","_from":"1188","_to":"56239"} +{"$label":"ACTS_IN","name":"Walter Sullivan","type":"Role","_key":"1420","_from":"1197","_to":"1190"} +{"$label":"ACTS_IN","name":"Christy Sullivan","type":"Role","_key":"1419","_from":"1196","_to":"1190"} +{"$label":"ACTS_IN","name":"Art Student","type":"Role","_key":"1418","_from":"1195","_to":"1190"} +{"$label":"ACTS_IN","name":"Tim Collin","type":"Role","_key":"1417","_from":"1194","_to":"1190"} +{"$label":"ACTS_IN","name":"Gloria Russell","type":"Role","_key":"1416","_from":"1193","_to":"1190"} +{"$label":"ACTS_IN","name":"Kate Whitney","type":"Role","_key":"1415","_from":"1192","_to":"1190"} +{"$label":"ACTS_IN","name":"Bill Burton","type":"Role","_key":"1414","_from":"1191","_to":"1190"} +{"$label":"ACTS_IN","name":"Jack McCain","type":"Role","_key":"116891","_from":"1191","_to":"68817"} +{"$label":"ACTS_IN","name":"Wes","type":"Role","_key":"112446","_from":"1191","_to":"66387"} +{"$label":"ACTS_IN","name":"Sinatra","type":"Role","_key":"104920","_from":"1191","_to":"61738"} +{"$label":"ACTS_IN","name":"Montgomery Wick","type":"Role","_key":"71512","_from":"1191","_to":"43337"} +{"$label":"ACTS_IN","name":"Emmett","type":"Role","_key":"70297","_from":"1191","_to":"42834"} +{"$label":"ACTS_IN","name":"Donald Rumsfeld","type":"Role","_key":"63832","_from":"1191","_to":"39901"} +{"$label":"ACTS_IN","name":"Alan Shepard","type":"Role","_key":"54610","_from":"1191","_to":"34982"} +{"$label":"ACTS_IN","name":"Sergeant Lee","type":"Role","_key":"52581","_from":"1191","_to":"34172"} +{"$label":"ACTS_IN","name":"Jack Buggit","type":"Role","_key":"43408","_from":"1191","_to":"28999"} +{"$label":"ACTS_IN","name":"Pfc. Glenn Kelly","type":"Role","_key":"26145","_from":"1191","_to":"18778"} +{"$label":"ACTS_IN","name":"John 'Axe' Adcox","type":"Role","_key":"24329","_from":"1191","_to":"17621"} +{"$label":"ACTS_IN","name":"Ezra Kramer","type":"Role","_key":"21736","_from":"1191","_to":"15873"} +{"$label":"ACTS_IN","name":"Bradley","type":"Role","_key":"18641","_from":"1191","_to":"13787"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"17710","_from":"1191","_to":"13216"} +{"$label":"ACTS_IN","name":"Commander Bart Mancuso","type":"Role","_key":"14802","_from":"1191","_to":"11385"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"14613","_from":"1191","_to":"11256"} +{"$label":"ACTS_IN","name":"Father Moody","type":"Role","_key":"13366","_from":"1191","_to":"10404"} +{"$label":"ACTS_IN","name":"Jack Crawford","type":"Role","_key":"3889","_from":"1191","_to":"3326"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"113322","_from":"1192","_to":"66758"} +{"$label":"ACTS_IN","name":"Samantha Prescott","type":"Role","_key":"99504","_from":"1192","_to":"58658"} +{"$label":"ACTS_IN","name":"Mrs. X","type":"Role","_key":"89464","_from":"1192","_to":"52971"} +{"$label":"ACTS_IN","name":"Constance Hallaway","type":"Role","_key":"71067","_from":"1192","_to":"43153"} +{"$label":"ACTS_IN","name":"Randi","type":"Role","_key":"70710","_from":"1192","_to":"43007"} +{"$label":"ACTS_IN","name":"Laura Marshall","type":"Role","_key":"69649","_from":"1192","_to":"42519"} +{"$label":"ACTS_IN","name":"Clara McMillen","type":"Role","_key":"68387","_from":"1192","_to":"41964"} +{"$label":"ACTS_IN","name":"Joan Berkman","type":"Role","_key":"65178","_from":"1192","_to":"40485"} +{"$label":"ACTS_IN","name":"Dr. Karen Ross","type":"Role","_key":"62616","_from":"1192","_to":"39391"} +{"$label":"ACTS_IN","name":"Eleanor Green","type":"Role","_key":"57675","_from":"1192","_to":"36513"} +{"$label":"ACTS_IN","name":"Erin Bruner","type":"Role","_key":"50279","_from":"1192","_to":"32852"} +{"$label":"ACTS_IN","name":"Wendy Savage","type":"Role","_key":"48699","_from":"1192","_to":"31945"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"33244","_from":"1192","_to":"23031"} +{"$label":"ACTS_IN","name":"Kate Burroughs","type":"Role","_key":"29853","_from":"1192","_to":"21119"} +{"$label":"ACTS_IN","name":"Connie Mills","type":"Role","_key":"22306","_from":"1192","_to":"16222"} +{"$label":"ACTS_IN","name":"Young Teacher","type":"Role","_key":"17437","_from":"1192","_to":"13031"} +{"$label":"ACTS_IN","name":"Janet Venable","type":"Role","_key":"14104","_from":"1192","_to":"10931"} +{"$label":"ACTS_IN","name":"Annabeth Markum","type":"Role","_key":"4486","_from":"1192","_to":"3810"} +{"$label":"ACTS_IN","name":"Geroge Sand","type":"Role","_key":"114570","_from":"1193","_to":"67493"} +{"$label":"ACTS_IN","name":"Sybylla Melvyn","type":"Role","_key":"109753","_from":"1193","_to":"64813"} +{"$label":"ACTS_IN","name":"Adela Quested","type":"Role","_key":"106357","_from":"1193","_to":"62660"} +{"$label":"ACTS_IN","name":"Dora Fingleton","type":"Role","_key":"104569","_from":"1193","_to":"61509"} +{"$label":"ACTS_IN","name":"Caroline Chasseur","type":"Role","_key":"66395","_from":"1193","_to":"41064"} +{"$label":"ACTS_IN","name":"Joan Fraser Welch","type":"Role","_key":"58861","_from":"1193","_to":"37175"} +{"$label":"ACTS_IN","name":"Marilyn Dean","type":"Role","_key":"56475","_from":"1193","_to":"35880"} +{"$label":"ACTS_IN","name":"Anna Redmond","type":"Role","_key":"55265","_from":"1193","_to":"35246"} +{"$label":"ACTS_IN","name":"Robin Simon","type":"Role","_key":"54041","_from":"1193","_to":"34763"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"48497","_from":"1193","_to":"31835"} +{"$label":"ACTS_IN","name":"Joan Frost","type":"Role","_key":"23198","_from":"1193","_to":"16826"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"22342","_from":"1193","_to":"16249"} +{"$label":"ACTS_IN","name":"Comtesse de Noailles","type":"Role","_key":"16282","_from":"1193","_to":"12347"} +{"$label":"ACTS_IN","name":"Audrey Taylor","type":"Role","_key":"4064","_from":"1193","_to":"3465"} +{"$label":"ACTS_IN","name":"Max 'Hammer' Dubois","type":"Role","_key":"117238","_from":"1194","_to":"68961"} +{"$label":"ACTS_IN","name":"Zeke McCall","type":"Role","_key":"101563","_from":"1194","_to":"59773"} +{"$label":"ACTS_IN","name":"Chief Billy Graham","type":"Role","_key":"91454","_from":"1194","_to":"53931"} +{"$label":"ACTS_IN","name":"Detective George Beaufort","type":"Role","_key":"90640","_from":"1194","_to":"53520"} +{"$label":"ACTS_IN","name":"Pedro Cerrano","type":"Role","_key":"67673","_from":"1194","_to":"41630"} +{"$label":"ACTS_IN","name":"Raymond Deagan","type":"Role","_key":"65199","_from":"1194","_to":"40492"} +{"$label":"ACTS_IN","name":"Pedro Cerrano","type":"Role","_key":"58313","_from":"1194","_to":"36867"} +{"$label":"ACTS_IN","name":"Dan Plesac","type":"Role","_key":"29854","_from":"1194","_to":"21119"} +{"$label":"ACTS_IN","name":"Nelson Mandela","type":"Role","_key":"16177","_from":"1194","_to":"12284"} +{"$label":"ACTS_IN","name":"Detective Larry McBain","type":"Role","_key":"11933","_from":"1194","_to":"9354"} +{"$label":"ACTS_IN","name":"Donald Breedan","type":"Role","_key":"11332","_from":"1194","_to":"8936"} +{"$label":"DIRECTED","_key":"102684","_from":"1195","_to":"60412"} +{"$label":"ACTS_IN","name":"Tara","type":"Role","_key":"99502","_from":"1195","_to":"58654"} +{"$label":"ACTS_IN","name":"Amanda Block","type":"Role","_key":"71683","_from":"1195","_to":"43396"} +{"$label":"ACTS_IN","name":"Mandy Nichols","type":"Role","_key":"48330","_from":"1195","_to":"31735"} +{"$label":"ACTS_IN","name":"Whitney Dunbar","type":"Role","_key":"89183","_from":"1196","_to":"52820"} +{"$label":"ACTS_IN","name":"Carol Spencer","type":"Role","_key":"72373","_from":"1196","_to":"43699"} +{"$label":"ACTS_IN","name":"Barb Fields","type":"Role","_key":"65535","_from":"1196","_to":"40621"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"44083","_from":"1196","_to":"29388"} +{"$label":"ACTS_IN","name":"Brig. Gen. Shinner","type":"Role","_key":"106202","_from":"1197","_to":"62549"} +{"$label":"ACTS_IN","name":"Lt. Colonel Rufus S. Bratton","type":"Role","_key":"68260","_from":"1197","_to":"41908"} +{"$label":"ACTS_IN","name":"Lt. Comdr. Challee","type":"Role","_key":"61451","_from":"1197","_to":"38765"} +{"$label":"ACTS_IN","name":"US-Pr\u00e4sident","type":"Role","_key":"50126","_from":"1197","_to":"32783"} +{"$label":"ACTS_IN","name":"Art Smith","type":"Role","_key":"39626","_from":"1197","_to":"26781"} +{"$label":"ACTS_IN","name":"Sam Dunstock","type":"Role","_key":"35030","_from":"1197","_to":"23901"} +{"$label":"ACTS_IN","name":"Gov. William Claiborne","type":"Role","_key":"34928","_from":"1197","_to":"23856"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33582","_from":"1197","_to":"23204"} +{"$label":"ACTS_IN","name":"Juror 4","type":"Role","_key":"4975","_from":"1197","_to":"4235"} +{"$label":"ACTS_IN","name":"Suha","type":"Role","_key":"1428","_from":"1206","_to":"1198"} +{"$label":"ACTS_IN","name":"Abu Salim","type":"Role","_key":"1427","_from":"1205","_to":"1198"} +{"$label":"ACTS_IN","name":"Abu Karem","type":"Role","_key":"1426","_from":"1204","_to":"1198"} +{"$label":"ACTS_IN","name":"Said's mother","type":"Role","_key":"1425","_from":"1203","_to":"1198"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"1424","_from":"1202","_to":"1198"} +{"$label":"ACTS_IN","name":"Khaled","type":"Role","_key":"1423","_from":"1201","_to":"1198"} +{"$label":"ACTS_IN","name":"Said","type":"Role","_key":"1422","_from":"1200","_to":"1198"} +{"$label":"DIRECTED","_key":"1421","_from":"1199","_to":"1198"} +{"$label":"ACTS_IN","name":"Omar Sadiki","type":"Role","_key":"88097","_from":"1201","_to":"52284"} +{"$label":"ACTS_IN","name":"Ziad Daud","type":"Role","_key":"47387","_from":"1201","_to":"31213"} +{"$label":"ACTS_IN","name":"Sergeant Haytham","type":"Role","_key":"31101","_from":"1201","_to":"21770"} +{"$label":"ACTS_IN","name":"Mouna Khalil","type":"Role","_key":"89724","_from":"1203","_to":"53110"} +{"$label":"ACTS_IN","name":"Selma Zidane","type":"Role","_key":"47385","_from":"1203","_to":"31213"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"46839","_from":"1203","_to":"30892"} +{"$label":"ACTS_IN","name":"La femme du jardinier","type":"Role","_key":"32277","_from":"1203","_to":"22479"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"21442","_from":"1203","_to":"15682"} +{"$label":"ACTS_IN","name":"Naima","type":"Role","_key":"116395","_from":"1206","_to":"68520"} +{"$label":"ACTS_IN","name":"Helly","type":"Role","_key":"112069","_from":"1206","_to":"66172"} +{"$label":"ACTS_IN","name":"Dr. Jaffe","type":"Role","_key":"1439","_from":"1215","_to":"1207"} +{"$label":"ACTS_IN","name":"Jill Layton","type":"Role","_key":"1438","_from":"1214","_to":"1207"} +{"$label":"ACTS_IN","name":"Mr. Helpmann","type":"Role","_key":"1437","_from":"1213","_to":"1207"} +{"$label":"ACTS_IN","name":"Mr. Warrenn","type":"Role","_key":"1436","_from":"1212","_to":"1207"} +{"$label":"ACTS_IN","name":"Jack Lint","type":"Role","_key":"1435","_from":"1211","_to":"1207"} +{"$label":"ACTS_IN","name":"Spoor","type":"Role","_key":"1434","_from":"1210","_to":"1207"} +{"$label":"ACTS_IN","name":"Mrs. Ida Lowry","type":"Role","_key":"1432","_from":"1209","_to":"1207"} +{"$label":"ACTS_IN","name":"Archibald 'Harry' Tuttle","type":"Role","_key":"1431","_from":"1208","_to":"1207"} +{"$label":"ACTS_IN","name":"Fearless Leader","type":"Role","_key":"113740","_from":"1208","_to":"67025"} +{"$label":"ACTS_IN","name":"Vincent LaMarca","type":"Role","_key":"95093","_from":"1208","_to":"55969"} +{"$label":"ACTS_IN","name":"Turk","type":"Role","_key":"94253","_from":"1208","_to":"55507"} +{"$label":"ACTS_IN","name":"Jimmy Doyle","type":"Role","_key":"90757","_from":"1208","_to":"53566"} +{"$label":"ACTS_IN","name":"Master Chief Leslie W. Sunday ('Billy')","type":"Role","_key":"73114","_from":"1208","_to":"43978"} +{"$label":"ACTS_IN","name":"Michael Vronsky","type":"Role","_key":"71910","_from":"1208","_to":"43508"} +{"$label":"ACTS_IN","name":"Rodrigo Mendoza","type":"Role","_key":"69730","_from":"1208","_to":"42563"} +{"$label":"ACTS_IN","name":"Nick Wells","type":"Role","_key":"69458","_from":"1208","_to":"42442"} +{"$label":"ACTS_IN","name":"David Callaway","type":"Role","_key":"67851","_from":"1208","_to":"41692"} +{"$label":"ACTS_IN","name":"Richard Wells","type":"Role","_key":"67602","_from":"1208","_to":"41612"} +{"$label":"ACTS_IN","name":"Leonard Lowe","type":"Role","_key":"67230","_from":"1208","_to":"41456"} +{"$label":"ACTS_IN","name":"Don Lino (voice)","type":"Role","_key":"64044","_from":"1208","_to":"39973"} +{"$label":"ACTS_IN","name":"Wayne 'Mad Dog' Dobie","type":"Role","_key":"63319","_from":"1208","_to":"39696"} +{"$label":"ACTS_IN","name":"Paul Vitti","type":"Role","_key":"58241","_from":"1208","_to":"36834"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"57138","_from":"1208","_to":"36267"} +{"$label":"ACTS_IN","name":"Gil Renard","type":"Role","_key":"54734","_from":"1208","_to":"35035"} +{"$label":"ACTS_IN","name":"Paul Vitti","type":"Role","_key":"54513","_from":"1208","_to":"34937"} +{"$label":"ACTS_IN","name":"Character","type":"Role","_key":"53701","_from":"1208","_to":"34631"} +{"$label":"ACTS_IN","name":"Jack Walsh","type":"Role","_key":"51998","_from":"1208","_to":"33909"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"51588","_from":"1208","_to":"33665"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"48316","_from":"1208","_to":"31733"} +{"$label":"ACTS_IN","name":"Dwight Hansen","type":"Role","_key":"48201","_from":"1208","_to":"31667"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"40883","_from":"1208","_to":"27510"} +{"$label":"ACTS_IN","name":"Det. Mitch Preston","type":"Role","_key":"39828","_from":"1208","_to":"26915"} +{"$label":"ACTS_IN","name":"Alfredo Berlinghieri","type":"Role","_key":"28825","_from":"1208","_to":"20607"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26740","_from":"1208","_to":"19220"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26654","_from":"1208","_to":"19158"} +{"$label":"ACTS_IN","name":"The Creature","type":"Role","_key":"25168","_from":"1208","_to":"18176"} +{"$label":"ACTS_IN","name":"Donald Rimgale","type":"Role","_key":"24325","_from":"1208","_to":"17621"} +{"$label":"ACTS_IN","name":"Detective Eddie Flemming","type":"Role","_key":"23242","_from":"1208","_to":"16859"} +{"$label":"ACTS_IN","name":"Cap. Shakespeare","type":"Role","_key":"19954","_from":"1208","_to":"14696"} +{"$label":"ACTS_IN","name":"Lt. Moe Tilden","type":"Role","_key":"18632","_from":"1208","_to":"13786"} +{"$label":"ACTS_IN","name":"Lorenzo Anello","type":"Role","_key":"14213","_from":"1208","_to":"10992"} +{"$label":"ACTS_IN","name":"Max Cady","type":"Role","_key":"14165","_from":"1208","_to":"10963"} +{"$label":"ACTS_IN","name":"Jack Byrnes","type":"Role","_key":"14155","_from":"1208","_to":"10958"} +{"$label":"ACTS_IN","name":"Jake La Motta","type":"Role","_key":"13957","_from":"1208","_to":"10823"} +{"$label":"ACTS_IN","name":"Bill Sullivan","type":"Role","_key":"12205","_from":"1208","_to":"9562"} +{"$label":"ACTS_IN","name":"Neil McCauley","type":"Role","_key":"11322","_from":"1208","_to":"8936"} +{"$label":"ACTS_IN","name":"Father Bobby","type":"Role","_key":"9649","_from":"1208","_to":"7756"} +{"$label":"ACTS_IN","name":"Jimmy Conway","type":"Role","_key":"9024","_from":"1208","_to":"7306"} +{"$label":"ACTS_IN","name":"Jack Byrnes","type":"Role","_key":"8343","_from":"1208","_to":"6834"} +{"$label":"ACTS_IN","name":"Louis Cyphre","type":"Role","_key":"7558","_from":"1208","_to":"6291"} +{"$label":"ACTS_IN","name":"Conrad Brean","type":"Role","_key":"7028","_from":"1208","_to":"5892"} +{"$label":"ACTS_IN","name":"Sam 'Ace' Rothstein","type":"Role","_key":"6268","_from":"1208","_to":"5302"} +{"$label":"ACTS_IN","name":"David 'Noodles' Aaronson","type":"Role","_key":"4308","_from":"1208","_to":"3671"} +{"$label":"ACTS_IN","name":"Rupert Pupkin","type":"Role","_key":"3769","_from":"1208","_to":"3232"} +{"$label":"ACTS_IN","name":"Vito Corleone","type":"Role","_key":"3473","_from":"1208","_to":"2975"} +{"$label":"ACTS_IN","name":"John 'Johnny Boy' Civello","type":"Role","_key":"2974","_from":"1208","_to":"2548"} +{"$label":"ACTS_IN","name":"Louis Gara","type":"Role","_key":"2803","_from":"1208","_to":"2421"} +{"$label":"ACTS_IN","name":"Al Capone","type":"Role","_key":"2030","_from":"1208","_to":"1772"} +{"$label":"ACTS_IN","name":"Travis Bickle","type":"Role","_key":"1861","_from":"1208","_to":"1618"} +{"$label":"DIRECTED","_key":"14248","_from":"1208","_to":"10992"} +{"$label":"DIRECTED","_key":"12199","_from":"1208","_to":"9562"} +{"$label":"ACTS_IN","name":"Edith Mintz","type":"Role","_key":"65739","_from":"1209","_to":"40701"} +{"$label":"ACTS_IN","name":"Mrs. Maloney","type":"Role","_key":"39858","_from":"1209","_to":"26930"} +{"$label":"ACTS_IN","name":"Desk Clerk at Mint Hotel","type":"Role","_key":"16212","_from":"1209","_to":"12305"} +{"$label":"ACTS_IN","name":"Lizzie (voice)","type":"Role","_key":"10943","_from":"1209","_to":"8670"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"121183","_from":"1210","_to":"71185"} +{"$label":"ACTS_IN","name":"C.S.M. Williams","type":"Role","_key":"114793","_from":"1210","_to":"67615"} +{"$label":"ACTS_IN","name":"Harold Shand","type":"Role","_key":"101836","_from":"1210","_to":"59937"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"101755","_from":"1210","_to":"59884"} +{"$label":"ACTS_IN","name":"Bill Nelson","type":"Role","_key":"94616","_from":"1210","_to":"55748"} +{"$label":"ACTS_IN","name":"Sir Pitt Crawley","type":"Role","_key":"71170","_from":"1210","_to":"43195"} +{"$label":"ACTS_IN","name":"Vivian Van Damm","type":"Role","_key":"65680","_from":"1210","_to":"40687"} +{"$label":"ACTS_IN","name":"Bart","type":"Role","_key":"59581","_from":"1210","_to":"37614"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"59260","_from":"1210","_to":"37434"} +{"$label":"ACTS_IN","name":"Walter Lewis","type":"Role","_key":"57910","_from":"1210","_to":"36634"} +{"$label":"ACTS_IN","name":"Mario Mario","type":"Role","_key":"54991","_from":"1210","_to":"35146"} +{"$label":"ACTS_IN","name":"Dr. Leon Patterson","type":"Role","_key":"48008","_from":"1210","_to":"31581"} +{"$label":"ACTS_IN","name":"Lionel Bloch","type":"Role","_key":"46385","_from":"1210","_to":"30646"} +{"$label":"ACTS_IN","name":"Charlie Cassotto Maffia","type":"Role","_key":"43606","_from":"1210","_to":"29123"} +{"$label":"ACTS_IN","name":"Gent","type":"Role","_key":"41797","_from":"1210","_to":"28038"} +{"$label":"ACTS_IN","name":"Lou Landsky","type":"Role","_key":"32875","_from":"1210","_to":"22815"} +{"$label":"ACTS_IN","name":"Prof. Challenger","type":"Role","_key":"24867","_from":"1210","_to":"17982"} +{"$label":"ACTS_IN","name":"Vartan Malt","type":"Role","_key":"24380","_from":"1210","_to":"17645"} +{"$label":"ACTS_IN","name":"Bob (Pigalle)","type":"Role","_key":"19878","_from":"1210","_to":"14635"} +{"$label":"ACTS_IN","name":"Owney Madden","type":"Role","_key":"18721","_from":"1210","_to":"13856"} +{"$label":"ACTS_IN","name":"Gus Klein","type":"Role","_key":"18007","_from":"1210","_to":"13387"} +{"$label":"ACTS_IN","name":"Eddie Mannix","type":"Role","_key":"12221","_from":"1210","_to":"9571"} +{"$label":"ACTS_IN","name":"Smee","type":"Role","_key":"10454","_from":"1210","_to":"8318"} +{"$label":"ACTS_IN","name":"Eddie Valiant","type":"Role","_key":"10168","_from":"1210","_to":"8126"} +{"$label":"ACTS_IN","name":"Nikita Khrushchev","type":"Role","_key":"10112","_from":"1210","_to":"8094"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"117567","_from":"1211","_to":"69119"} +{"$label":"ACTS_IN","name":"Eric Manchester","type":"Role","_key":"108991","_from":"1211","_to":"64408"} +{"$label":"ACTS_IN","name":"Adrian Malone","type":"Role","_key":"88292","_from":"1211","_to":"52367"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72916","_from":"1211","_to":"43907"} +{"$label":"ACTS_IN","name":"Dennis Cooper","type":"Role","_key":"72264","_from":"1211","_to":"43659"} +{"$label":"ACTS_IN","name":"Mann mit Kassettenrekorder \/ Phrasebook Autor \/ Arthur Pewtey \/ Selbstverteidigungs-Sch\u00fcler Nr. 2 \/ Mieter Nr. 2 \/ Portemonaie-Verlierer \/ Shrill Petrol Ansager \/ Milchmann \/ Ernest Scribbler \/ Bevis \/ Oberkellner Gilberto \/ Herbert Anchovy \/ Gervais Broo","type":"Role","_key":"52717","_from":"1211","_to":"34219"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32496","_from":"1211","_to":"22603"} +{"$label":"ACTS_IN","name":"Leader of The Knights who say NI!","type":"Role","_key":"8953","_from":"1211","_to":"7262"} +{"$label":"ACTS_IN","name":"Ken Pile","type":"Role","_key":"7408","_from":"1211","_to":"6174"} +{"$label":"ACTS_IN","name":"Wise Man #3","type":"Role","_key":"6988","_from":"1211","_to":"5860"} +{"$label":"ACTS_IN","name":"Manley","type":"Role","_key":"116107","_from":"1212","_to":"68369"} +{"$label":"ACTS_IN","name":"Lord Evelyn Gaylord","type":"Role","_key":"40052","_from":"1212","_to":"27036"} +{"$label":"ACTS_IN","name":"Sir Nigel Irvine","type":"Role","_key":"34767","_from":"1212","_to":"23765"} +{"$label":"ACTS_IN","name":"Richter Langlois","type":"Role","_key":"24625","_from":"1212","_to":"17810"} +{"$label":"ACTS_IN","name":"Mr. Book","type":"Role","_key":"22588","_from":"1212","_to":"16394"} +{"$label":"ACTS_IN","name":"Ambassador Toulon","type":"Role","_key":"13061","_from":"1212","_to":"10181"} +{"$label":"ACTS_IN","name":"Sir Charles Warren","type":"Role","_key":"9012","_from":"1212","_to":"7296"} +{"$label":"ACTS_IN","name":"P.C. Gobby","type":"Role","_key":"71859","_from":"1213","_to":"43479"} +{"$label":"ACTS_IN","name":"SS-Oberstgruppenf\u00fchrer Artur Nebe","type":"Role","_key":"68784","_from":"1213","_to":"42145"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"31600","_from":"1213","_to":"22064"} +{"$label":"ACTS_IN","name":"Alfie","type":"Role","_key":"19096","_from":"1213","_to":"14109"} +{"$label":"ACTS_IN","name":"Stevens Vater","type":"Role","_key":"12180","_from":"1213","_to":"9544"} +{"$label":"ACTS_IN","name":"Tom Hedden","type":"Role","_key":"11747","_from":"1213","_to":"9219"} +{"$label":"ACTS_IN","name":"Beth Ryan","type":"Role","_key":"72606","_from":"1214","_to":"43772"} +{"$label":"ACTS_IN","name":"Molly Graham","type":"Role","_key":"69956","_from":"1214","_to":"42679"} +{"$label":"ACTS_IN","name":"Mrs. Peacock","type":"Role","_key":"30185","_from":"1214","_to":"21268"} +{"$label":"ACTS_IN","name":"Barrister","type":"Role","_key":"120648","_from":"1215","_to":"70855"} +{"$label":"ACTS_IN","name":"King William","type":"Role","_key":"115817","_from":"1215","_to":"68180"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"109296","_from":"1215","_to":"64568"} +{"$label":"ACTS_IN","name":"The Drunken Major","type":"Role","_key":"103823","_from":"1215","_to":"61055"} +{"$label":"ACTS_IN","name":"Sir Oliver Lodge","type":"Role","_key":"102916","_from":"1215","_to":"60541"} +{"$label":"ACTS_IN","name":"John Bayley","type":"Role","_key":"72568","_from":"1215","_to":"43761"} +{"$label":"ACTS_IN","name":"Mr. Osborne","type":"Role","_key":"71168","_from":"1215","_to":"43195"} +{"$label":"ACTS_IN","name":"Lord Kelvin","type":"Role","_key":"61692","_from":"1215","_to":"38858"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"56941","_from":"1215","_to":"36142"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"56772","_from":"1215","_to":"36060"} +{"$label":"ACTS_IN","name":"Pod Clock","type":"Role","_key":"53936","_from":"1215","_to":"34706"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"53103","_from":"1215","_to":"34364"} +{"$label":"ACTS_IN","name":"Richard Nixon","type":"Role","_key":"51597","_from":"1215","_to":"33668"} +{"$label":"ACTS_IN","name":"Mr. Boo","type":"Role","_key":"50133","_from":"1215","_to":"32785"} +{"$label":"ACTS_IN","name":"Inspector Frank Butterman","type":"Role","_key":"33116","_from":"1215","_to":"22937"} +{"$label":"ACTS_IN","name":"William Tweed","type":"Role","_key":"26225","_from":"1215","_to":"18837"} +{"$label":"ACTS_IN","name":"Fenoglio","type":"Role","_key":"20278","_from":"1215","_to":"14864"} +{"$label":"ACTS_IN","name":"Zidler","type":"Role","_key":"9727","_from":"1215","_to":"7809"} +{"$label":"ACTS_IN","name":"Professor Horace Slughorn","type":"Role","_key":"8998","_from":"1215","_to":"7294"} +{"$label":"ACTS_IN","name":"Bridget's Dad","type":"Role","_key":"7545","_from":"1215","_to":"6278"} +{"$label":"ACTS_IN","name":"Professor Kirke","type":"Role","_key":"5229","_from":"1215","_to":"4445"} +{"$label":"ACTS_IN","name":"Dean Charles Stanforth","type":"Role","_key":"3127","_from":"1215","_to":"2678"} +{"$label":"ACTS_IN","name":"Rosanne Cash","type":"Role","_key":"1457","_from":"1233","_to":"1216"} +{"$label":"ACTS_IN","name":"Carlene Carter","type":"Role","_key":"1456","_from":"1232","_to":"1216"} +{"$label":"ACTS_IN","name":"Young Johnny Cash","type":"Role","_key":"1455","_from":"1231","_to":"1216"} +{"$label":"ACTS_IN","name":"Ezra Carter","type":"Role","_key":"1454","_from":"1230","_to":"1216"} +{"$label":"ACTS_IN","name":"Maybelle Carter","type":"Role","_key":"1453","_from":"1229","_to":"1216"} +{"$label":"ACTS_IN","name":"Marshall Grant","type":"Role","_key":"1452","_from":"1228","_to":"1216"} +{"$label":"ACTS_IN","name":"Luther Perkins","type":"Role","_key":"1451","_from":"1227","_to":"1216"} +{"$label":"ACTS_IN","name":"Sam Phillips","type":"Role","_key":"1450","_from":"1226","_to":"1216"} +{"$label":"ACTS_IN","name":"Jerry Lee Lewis","type":"Role","_key":"1449","_from":"1225","_to":"1216"} +{"$label":"ACTS_IN","name":"Waylon Jennings","type":"Role","_key":"1448","_from":"1224","_to":"1216"} +{"$label":"ACTS_IN","name":"Roy Orbison","type":"Role","_key":"1447","_from":"1223","_to":"1216"} +{"$label":"ACTS_IN","name":"Elvis Presley","type":"Role","_key":"1446","_from":"1222","_to":"1216"} +{"$label":"ACTS_IN","name":"Ray Cash","type":"Role","_key":"1445","_from":"1221","_to":"1216"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"1444","_from":"1220","_to":"1216"} +{"$label":"ACTS_IN","name":"June Carter","type":"Role","_key":"1443","_from":"1219","_to":"1216"} +{"$label":"ACTS_IN","name":"Johnny Cash","type":"Role","_key":"1442","_from":"1218","_to":"1216"} +{"$label":"DIRECTED","_key":"1441","_from":"1217","_to":"1216"} +{"$label":"DIRECTED","_key":"68693","_from":"1217","_to":"42094"} +{"$label":"DIRECTED","_key":"36276","_from":"1217","_to":"24605"} +{"$label":"DIRECTED","_key":"27874","_from":"1217","_to":"19989"} +{"$label":"DIRECTED","_key":"23841","_from":"1217","_to":"17287"} +{"$label":"DIRECTED","_key":"18628","_from":"1217","_to":"13786"} +{"$label":"ACTS_IN","name":"Willie Gutierrez","type":"Role","_key":"120139","_from":"1218","_to":"70564"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"96235","_from":"1218","_to":"56559"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"91484","_from":"1218","_to":"53938"} +{"$label":"ACTS_IN","name":"Doug Holt","type":"Role","_key":"91260","_from":"1218","_to":"53818"} +{"$label":"ACTS_IN","name":"Jack Morrison","type":"Role","_key":"68036","_from":"1218","_to":"41810"} +{"$label":"ACTS_IN","name":"The Abbe du Coulmier","type":"Role","_key":"66416","_from":"1218","_to":"41070"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"62805","_from":"1218","_to":"39473"} +{"$label":"ACTS_IN","name":"Lewis McBride","type":"Role","_key":"62344","_from":"1218","_to":"39280"} +{"$label":"ACTS_IN","name":"Kenai","type":"Role","_key":"59375","_from":"1218","_to":"37511"} +{"$label":"ACTS_IN","name":"Ray Elwood","type":"Role","_key":"52579","_from":"1218","_to":"34172"} +{"$label":"ACTS_IN","name":"Ethan Learner","type":"Role","_key":"51633","_from":"1218","_to":"33692"} +{"$label":"ACTS_IN","name":"Max California","type":"Role","_key":"48576","_from":"1218","_to":"31873"} +{"$label":"ACTS_IN","name":"Lucius Hunt","type":"Role","_key":"45237","_from":"1218","_to":"30028"} +{"$label":"ACTS_IN","name":"Merrill Hess","type":"Role","_key":"22691","_from":"1218","_to":"16465"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"17365","_from":"1218","_to":"12991"} +{"$label":"ACTS_IN","name":"Garry Buckman-Lampkin","type":"Role","_key":"13735","_from":"1218","_to":"10659"} +{"$label":"ACTS_IN","name":"Jimmy Emmett","type":"Role","_key":"6896","_from":"1218","_to":"5792"} +{"$label":"ACTS_IN","name":"Jack Daglish","type":"Role","_key":"2998","_from":"1218","_to":"2567"} +{"$label":"ACTS_IN","name":"Commodus","type":"Role","_key":"1799","_from":"1218","_to":"1556"} +{"$label":"ACTS_IN","name":"Lissa","type":"Role","_key":"116843","_from":"1219","_to":"68786"} +{"$label":"ACTS_IN","name":"Dani Trant","type":"Role","_key":"112355","_from":"1219","_to":"66338"} +{"$label":"ACTS_IN","name":"Susan Murphy \/ Ginormica (voice)","type":"Role","_key":"104773","_from":"1219","_to":"61645"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"88611","_from":"1219","_to":"52508"} +{"$label":"ACTS_IN","name":"Becky Sharp","type":"Role","_key":"71166","_from":"1219","_to":"43195"} +{"$label":"ACTS_IN","name":"Melanie Carmichael","type":"Role","_key":"70449","_from":"1219","_to":"42891"} +{"$label":"ACTS_IN","name":"Vanessa Lutz","type":"Role","_key":"68678","_from":"1219","_to":"42088"} +{"$label":"ACTS_IN","name":"Nicole Walker","type":"Role","_key":"63960","_from":"1219","_to":"39949"} +{"$label":"ACTS_IN","name":"Elle Woods","type":"Role","_key":"62606","_from":"1219","_to":"39388"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"55499","_from":"1219","_to":"35362"} +{"$label":"ACTS_IN","name":"Tracy Flick","type":"Role","_key":"53950","_from":"1219","_to":"34712"} +{"$label":"ACTS_IN","name":"Cecily","type":"Role","_key":"52104","_from":"1219","_to":"33974"} +{"$label":"ACTS_IN","name":"Dr. Elizabeth Masterson","type":"Role","_key":"51964","_from":"1219","_to":"33893"} +{"$label":"ACTS_IN","name":"Elle Woods","type":"Role","_key":"50941","_from":"1219","_to":"33247"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"47663","_from":"1219","_to":"31400"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"46680","_from":"1219","_to":"30824"} +{"$label":"ACTS_IN","name":"Isabella Fields El-Ibrahimi","type":"Role","_key":"36010","_from":"1219","_to":"24454"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"22532","_from":"1219","_to":"16368"} +{"$label":"ACTS_IN","name":"Evelyn Williams","type":"Role","_key":"12540","_from":"1219","_to":"9822"} +{"$label":"ACTS_IN","name":"Annette Hargrove","type":"Role","_key":"9389","_from":"1219","_to":"7576"} +{"$label":"ACTS_IN","name":"Molly Rifkin","type":"Role","_key":"106689","_from":"1220","_to":"62873"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"100170","_from":"1220","_to":"59089"} +{"$label":"ACTS_IN","name":"Cathy Feely","type":"Role","_key":"94707","_from":"1220","_to":"55789"} +{"$label":"ACTS_IN","name":"Constance Baker","type":"Role","_key":"72179","_from":"1220","_to":"43624"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"61511","_from":"1220","_to":"38795"} +{"$label":"ACTS_IN","name":"Earl Cole","type":"Role","_key":"111460","_from":"1221","_to":"65807"} +{"$label":"ACTS_IN","name":"Dr. David Benway","type":"Role","_key":"110507","_from":"1221","_to":"65293"} +{"$label":"ACTS_IN","name":"Vernon","type":"Role","_key":"109688","_from":"1221","_to":"64782"} +{"$label":"ACTS_IN","name":"Mike Rodgers","type":"Role","_key":"105198","_from":"1221","_to":"61913"} +{"$label":"ACTS_IN","name":"Gus Hayden","type":"Role","_key":"99144","_from":"1221","_to":"58416"} +{"$label":"ACTS_IN","name":"Louie (voice)","type":"Role","_key":"97726","_from":"1221","_to":"57545"} +{"$label":"ACTS_IN","name":"Sgt. John Armstrong","type":"Role","_key":"94883","_from":"1221","_to":"55861"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"87992","_from":"1221","_to":"52245"} +{"$label":"ACTS_IN","name":"Lenny Richter","type":"Role","_key":"68039","_from":"1221","_to":"41810"} +{"$label":"ACTS_IN","name":"Todd Nixon","type":"Role","_key":"62541","_from":"1221","_to":"39366"} +{"$label":"ACTS_IN","name":"Darrell Grant","type":"Role","_key":"57559","_from":"1221","_to":"36462"} +{"$label":"ACTS_IN","name":"Gary Mitchell","type":"Role","_key":"56308","_from":"1221","_to":"35776"} +{"$label":"ACTS_IN","name":"Ray Carter","type":"Role","_key":"54066","_from":"1221","_to":"34775"} +{"$label":"ACTS_IN","name":"Coach Joe Willis","type":"Role","_key":"52794","_from":"1221","_to":"34242"} +{"$label":"ACTS_IN","name":"Rome","type":"Role","_key":"51785","_from":"1221","_to":"33790"} +{"$label":"ACTS_IN","name":"Colonel Chandler Johnson","type":"Role","_key":"28503","_from":"1221","_to":"20373"} +{"$label":"ACTS_IN","name":"Kongo Shuko","type":"Role","_key":"21351","_from":"1221","_to":"15614"} +{"$label":"ACTS_IN","name":"Jack Rucker","type":"Role","_key":"18634","_from":"1221","_to":"13786"} +{"$label":"ACTS_IN","name":"Jack Aarons","type":"Role","_key":"12360","_from":"1221","_to":"9681"} +{"$label":"ACTS_IN","name":"T-1000","type":"Role","_key":"3968","_from":"1221","_to":"3391"} +{"$label":"ACTS_IN","name":"Murphy Bivens","type":"Role","_key":"50397","_from":"1222","_to":"32925"} +{"$label":"ACTS_IN","name":"Jonathan Glover (1982)","type":"Role","_key":"118148","_from":"1226","_to":"69442"} +{"$label":"ACTS_IN","name":"Uncle Ned","type":"Role","_key":"40726","_from":"1226","_to":"27403"} +{"$label":"ACTS_IN","name":"Grayson Butterfield","type":"Role","_key":"36265","_from":"1226","_to":"24605"} +{"$label":"ACTS_IN","name":"Private Shirl Kendrick","type":"Role","_key":"60755","_from":"1228","_to":"38372"} +{"$label":"ACTS_IN","name":"Richard Bach","type":"Role","_key":"41424","_from":"1230","_to":"27846"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"1466","_from":"1241","_to":"1234"} +{"$label":"ACTS_IN","name":"Mardell Fitzgerald","type":"Role","_key":"1465","_from":"1240","_to":"1234"} +{"$label":"ACTS_IN","name":"Earline Fitzgerald","type":"Role","_key":"1464","_from":"1239","_to":"1234"} +{"$label":"ACTS_IN","name":"Billie 'The Blue Bear'","type":"Role","_key":"1463","_from":"1238","_to":"1234"} +{"$label":"ACTS_IN","name":"Big Willie Little","type":"Role","_key":"1462","_from":"1237","_to":"1234"} +{"$label":"ACTS_IN","name":"Danger Barch","type":"Role","_key":"1461","_from":"1236","_to":"1234"} +{"$label":"ACTS_IN","name":"Maggie Fitzgerald","type":"Role","_key":"1459","_from":"1235","_to":"1234"} +{"$label":"ACTS_IN","name":"Jeanne St. Remy de Valois","type":"Role","_key":"118610","_from":"1235","_to":"69747"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"100171","_from":"1235","_to":"59089"} +{"$label":"ACTS_IN","name":"Sarah Barcant","type":"Role","_key":"95127","_from":"1235","_to":"55976"} +{"$label":"ACTS_IN","name":"Julie Pierce","type":"Role","_key":"68689","_from":"1235","_to":"42093"} +{"$label":"ACTS_IN","name":"Kimberly Hannah","type":"Role","_key":"61705","_from":"1235","_to":"38864"} +{"$label":"ACTS_IN","name":"Madeleine Linscott","type":"Role","_key":"55470","_from":"1235","_to":"35352"} +{"$label":"ACTS_IN","name":"Maj. Rebecca Childs","type":"Role","_key":"53222","_from":"1235","_to":"34423"} +{"$label":"ACTS_IN","name":"Buzzy","type":"Role","_key":"52829","_from":"1235","_to":"34252"} +{"$label":"ACTS_IN","name":"Amelia Earhart","type":"Role","_key":"51472","_from":"1235","_to":"33572"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"41272","_from":"1235","_to":"27753"} +{"$label":"ACTS_IN","name":"Valerie Barksdale","type":"Role","_key":"17817","_from":"1235","_to":"13278"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"14893","_from":"1235","_to":"11449"} +{"$label":"ACTS_IN","name":"Erin Gruwell","type":"Role","_key":"14611","_from":"1235","_to":"11256"} +{"$label":"ACTS_IN","name":"Ellie Burr","type":"Role","_key":"4442","_from":"1235","_to":"3790"} +{"$label":"ACTS_IN","name":"Brandon Teena","type":"Role","_key":"3253","_from":"1235","_to":"2788"} +{"$label":"ACTS_IN","name":"Oliver Whynacht","type":"Role","_key":"103510","_from":"1236","_to":"60898"} +{"$label":"ACTS_IN","name":"Andy Hayes","type":"Role","_key":"97134","_from":"1236","_to":"57139"} +{"$label":"ACTS_IN","name":"Windows","type":"Role","_key":"95077","_from":"1236","_to":"55963"} +{"$label":"ACTS_IN","name":"Hiccup","type":"Role","_key":"61570","_from":"1236","_to":"38816"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"35179","_from":"1236","_to":"23973"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"15639","_from":"1236","_to":"11928"} +{"$label":"ACTS_IN","name":"Coach Lumbly","type":"Role","_key":"92309","_from":"1239","_to":"54473"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"91489","_from":"1239","_to":"53938"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"47317","_from":"1239","_to":"31163"} +{"$label":"ACTS_IN","name":"Ma Cox","type":"Role","_key":"44099","_from":"1239","_to":"29399"} +{"$label":"ACTS_IN","name":"Carol (14\u00e8me arrondissement)","type":"Role","_key":"19899","_from":"1239","_to":"14635"} +{"$label":"ACTS_IN","name":"Sister Colleen","type":"Role","_key":"8284","_from":"1239","_to":"6786"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"116048","_from":"1240","_to":"68340"} +{"$label":"ACTS_IN","name":"Hilary","type":"Role","_key":"95368","_from":"1240","_to":"56099"} +{"$label":"ACTS_IN","name":"Janelle","type":"Role","_key":"55564","_from":"1240","_to":"35381"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"110748","_from":"1241","_to":"65426"} +{"$label":"ACTS_IN","name":"T.K. Poole","type":"Role","_key":"106643","_from":"1241","_to":"62835"} +{"$label":"ACTS_IN","name":"Garcia","type":"Role","_key":"52584","_from":"1241","_to":"34172"} +{"$label":"ACTS_IN","name":"Nick Memphis","type":"Role","_key":"46868","_from":"1241","_to":"30909"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"32228","_from":"1241","_to":"22461"} +{"$label":"ACTS_IN","name":"Will Jimeno","type":"Role","_key":"15998","_from":"1241","_to":"12161"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"14526","_from":"1241","_to":"11201"} +{"$label":"ACTS_IN","name":"John - Border Patrol","type":"Role","_key":"12135","_from":"1241","_to":"9495"} +{"$label":"ACTS_IN","name":"Billy's mother","type":"Role","_key":"1476","_from":"1251","_to":"1242"} +{"$label":"ACTS_IN","name":"Debbie Wilkinson","type":"Role","_key":"1475","_from":"1250","_to":"1242"} +{"$label":"ACTS_IN","name":"Michael Caffrey","type":"Role","_key":"1474","_from":"1249","_to":"1242"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"1473","_from":"1248","_to":"1242"} +{"$label":"ACTS_IN","name":"Jackie Elliot","type":"Role","_key":"1472","_from":"1247","_to":"1242"} +{"$label":"ACTS_IN","name":"Tony Elliot","type":"Role","_key":"1471","_from":"1246","_to":"1242"} +{"$label":"ACTS_IN","name":"Billy Elliot","type":"Role","_key":"1470","_from":"1245","_to":"1242"} +{"$label":"ACTS_IN","name":"Mrs. Wilkinson","type":"Role","_key":"1469","_from":"1244","_to":"1242"} +{"$label":"DIRECTED","_key":"1468","_from":"1243","_to":"1242"} +{"$label":"DIRECTED","_key":"47903","_from":"1243","_to":"31517"} +{"$label":"DIRECTED","_key":"7068","_from":"1243","_to":"5922"} +{"$label":"ACTS_IN","name":"Gwen Traherne","type":"Role","_key":"102712","_from":"1244","_to":"60425"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"89526","_from":"1244","_to":"52992"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"71161","_from":"1244","_to":"43190"} +{"$label":"ACTS_IN","name":"Evie Walton","type":"Role","_key":"69651","_from":"1244","_to":"42519"} +{"$label":"ACTS_IN","name":"Annie Clarke","type":"Role","_key":"50520","_from":"1244","_to":"33000"} +{"$label":"ACTS_IN","name":"Mrs. Austen","type":"Role","_key":"24619","_from":"1244","_to":"17810"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"8997","_from":"1244","_to":"7294"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"8120","_from":"1244","_to":"6687"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"8076","_from":"1244","_to":"6676"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"8055","_from":"1244","_to":"6665"} +{"$label":"ACTS_IN","name":"Molly Weasley","type":"Role","_key":"8034","_from":"1244","_to":"6646"} +{"$label":"ACTS_IN","name":"Tintin","type":"Role","_key":"113229","_from":"1245","_to":"66717"} +{"$label":"ACTS_IN","name":"Chris Munn","type":"Role","_key":"107242","_from":"1245","_to":"63247"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"97474","_from":"1245","_to":"57409"} +{"$label":"ACTS_IN","name":"Asael Bielski","type":"Role","_key":"96824","_from":"1245","_to":"56939"} +{"$label":"ACTS_IN","name":"Pfc. Charlie Shakespeare","type":"Role","_key":"90384","_from":"1245","_to":"53409"} +{"$label":"ACTS_IN","name":"Dick Dandelion","type":"Role","_key":"66680","_from":"1245","_to":"41201"} +{"$label":"ACTS_IN","name":"Griffin","type":"Role","_key":"48593","_from":"1245","_to":"31879"} +{"$label":"ACTS_IN","name":"Ralph Ignatowski","type":"Role","_key":"28499","_from":"1245","_to":"20373"} +{"$label":"ACTS_IN","name":"Hallam Foe","type":"Role","_key":"19551","_from":"1245","_to":"14466"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"49171","_from":"1246","_to":"32215"} +{"$label":"ACTS_IN","name":"Pastor Ross","type":"Role","_key":"105761","_from":"1247","_to":"62258"} +{"$label":"ACTS_IN","name":"Herman","type":"Role","_key":"103076","_from":"1247","_to":"60631"} +{"$label":"ACTS_IN","name":"Callaghan","type":"Role","_key":"102485","_from":"1247","_to":"60299"} +{"$label":"ACTS_IN","name":"Palmer","type":"Role","_key":"71373","_from":"1247","_to":"43289"} +{"$label":"ACTS_IN","name":"Mal Braithwaite","type":"Role","_key":"56424","_from":"1247","_to":"35852"} +{"$label":"ACTS_IN","name":"Skipper","type":"Role","_key":"50179","_from":"1247","_to":"32805"} +{"$label":"ACTS_IN","name":"Shanks","type":"Role","_key":"48248","_from":"1247","_to":"31694"} +{"$label":"ACTS_IN","name":"K\u00f6nig Hrothgar","type":"Role","_key":"21674","_from":"1247","_to":"15842"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"18645","_from":"1247","_to":"13787"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"12981","_from":"1247","_to":"10118"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"1494","_from":"1269","_to":"1252"} +{"$label":"ACTS_IN","name":"Mitch McCormick","type":"Role","_key":"1492","_from":"1268","_to":"1252"} +{"$label":"ACTS_IN","name":"Lawrence","type":"Role","_key":"1491","_from":"1267","_to":"1252"} +{"$label":"ACTS_IN","name":"Little Henry (as Jason Bose-Smith)","type":"Role","_key":"1490","_from":"1266","_to":"1252"} +{"$label":"ACTS_IN","name":"Rasmussen (as Joe Cortese)","type":"Role","_key":"1489","_from":"1265","_to":"1252"} +{"$label":"ACTS_IN","name":"Dennis Vinyard","type":"Role","_key":"1488","_from":"1264","_to":"1252"} +{"$label":"ACTS_IN","name":"Lamont","type":"Role","_key":"1487","_from":"1263","_to":"1252"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"1486","_from":"1262","_to":"1252"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"1485","_from":"1261","_to":"1252"} +{"$label":"ACTS_IN","name":"Cameron Alexander","type":"Role","_key":"1484","_from":"1260","_to":"1252"} +{"$label":"ACTS_IN","name":"Seth Ryan","type":"Role","_key":"1483","_from":"1259","_to":"1252"} +{"$label":"ACTS_IN","name":"Davina Vinyard","type":"Role","_key":"1482","_from":"1258","_to":"1252"} +{"$label":"ACTS_IN","name":"Dr. Bob Sweeney","type":"Role","_key":"1481","_from":"1257","_to":"1252"} +{"$label":"ACTS_IN","name":"Doris Vinyard","type":"Role","_key":"1480","_from":"1256","_to":"1252"} +{"$label":"ACTS_IN","name":"Danny Vinyard","type":"Role","_key":"1479","_from":"1255","_to":"1252"} +{"$label":"ACTS_IN","name":"Derek Vinyard","type":"Role","_key":"1478","_from":"1254","_to":"1252"} +{"$label":"DIRECTED","_key":"1477","_from":"1253","_to":"1252"} +{"$label":"ACTS_IN","name":"Walter Fane","type":"Role","_key":"99031","_from":"1254","_to":"58339"} +{"$label":"ACTS_IN","name":"Ray Tierney","type":"Role","_key":"93010","_from":"1254","_to":"54836"} +{"$label":"ACTS_IN","name":"Bill Kincaid","type":"Role","_key":"91791","_from":"1254","_to":"54152"} +{"$label":"ACTS_IN","name":"Jack Teller","type":"Role","_key":"69459","_from":"1254","_to":"42442"} +{"$label":"ACTS_IN","name":"Lester 'Worm' Murphy","type":"Role","_key":"61782","_from":"1254","_to":"38897"} +{"$label":"ACTS_IN","name":"Holden Spence","type":"Role","_key":"55945","_from":"1254","_to":"35576"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"55307","_from":"1254","_to":"35264"} +{"$label":"ACTS_IN","name":"Will Graham","type":"Role","_key":"54501","_from":"1254","_to":"34932"} +{"$label":"ACTS_IN","name":"Sheldon Mopes \/ Smoochy","type":"Role","_key":"52780","_from":"1254","_to":"34241"} +{"$label":"ACTS_IN","name":"Harlan","type":"Role","_key":"47442","_from":"1254","_to":"31257"} +{"$label":"ACTS_IN","name":"Father Brian Finn","type":"Role","_key":"35204","_from":"1254","_to":"23984"} +{"$label":"ACTS_IN","name":"Bruce Banner","type":"Role","_key":"15255","_from":"1254","_to":"11684"} +{"$label":"ACTS_IN","name":"Alan Isaacman","type":"Role","_key":"14450","_from":"1254","_to":"11171"} +{"$label":"ACTS_IN","name":"Aaron Stampler","type":"Role","_key":"14103","_from":"1254","_to":"10931"} +{"$label":"ACTS_IN","name":"K\u00f6nig Baldwin","type":"Role","_key":"13538","_from":"1254","_to":"10534"} +{"$label":"ACTS_IN","name":"Eisenheim","type":"Role","_key":"13495","_from":"1254","_to":"10508"} +{"$label":"ACTS_IN","name":"Monty Brogan","type":"Role","_key":"13239","_from":"1254","_to":"10307"} +{"$label":"ACTS_IN","name":"Nelson Rockefeller","type":"Role","_key":"12563","_from":"1254","_to":"9830"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"6557","_from":"1254","_to":"5541"} +{"$label":"DIRECTED","_key":"35202","_from":"1254","_to":"23984"} +{"$label":"ACTS_IN","name":"Jimmy Wright","type":"Role","_key":"117841","_from":"1255","_to":"69275"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"114441","_from":"1255","_to":"67417"} +{"$label":"ACTS_IN","name":"Jimmy Cuervo","type":"Role","_key":"109304","_from":"1255","_to":"64573"} +{"$label":"ACTS_IN","name":"Adam Waltz","type":"Role","_key":"102455","_from":"1255","_to":"60289"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"99208","_from":"1255","_to":"58461"} +{"$label":"ACTS_IN","name":"Pecker","type":"Role","_key":"72403","_from":"1255","_to":"43713"} +{"$label":"ACTS_IN","name":"Jeff Matthews","type":"Role","_key":"66621","_from":"1255","_to":"41181"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"61002","_from":"1255","_to":"38548"} +{"$label":"ACTS_IN","name":"Ron Decker","type":"Role","_key":"56824","_from":"1255","_to":"36088"} +{"$label":"ACTS_IN","name":"Hawk","type":"Role","_key":"56676","_from":"1255","_to":"35999"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"45716","_from":"1255","_to":"30256"} +{"$label":"ACTS_IN","name":"John Connor","type":"Role","_key":"3967","_from":"1255","_to":"3391"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"115252","_from":"1256","_to":"67870"} +{"$label":"ACTS_IN","name":"Patsy Cline","type":"Role","_key":"110009","_from":"1256","_to":"64997"} +{"$label":"ACTS_IN","name":"Mrs. Hagstrom","type":"Role","_key":"90655","_from":"1256","_to":"53522"} +{"$label":"ACTS_IN","name":"Ellen Griswold","type":"Role","_key":"69748","_from":"1256","_to":"42570"} +{"$label":"ACTS_IN","name":"Ellen Griswold","type":"Role","_key":"69742","_from":"1256","_to":"42567"} +{"$label":"ACTS_IN","name":"Ellen Griswold","type":"Role","_key":"68184","_from":"1256","_to":"41880"} +{"$label":"ACTS_IN","name":"Sheila Franklin","type":"Role","_key":"64854","_from":"1256","_to":"40341"} +{"$label":"ACTS_IN","name":"Ellen Griswold","type":"Role","_key":"39621","_from":"1256","_to":"26781"} +{"$label":"ACTS_IN","name":"Standish Logan","type":"Role","_key":"37571","_from":"1256","_to":"25467"} +{"$label":"ACTS_IN","name":"Ann Miller","type":"Role","_key":"24767","_from":"1256","_to":"17908"} +{"$label":"ACTS_IN","name":"Stella Winston","type":"Role","_key":"22155","_from":"1256","_to":"16157"} +{"$label":"ACTS_IN","name":"Dark's Mother","type":"Role","_key":"15675","_from":"1256","_to":"11948"} +{"$label":"ACTS_IN","name":"Actress in Rob's TV Show","type":"Role","_key":"8489","_from":"1256","_to":"6916"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"53933","_from":"1257","_to":"34704"} +{"$label":"ACTS_IN","name":"Detective Leon Jackson","type":"Role","_key":"23246","_from":"1257","_to":"16859"} +{"$label":"ACTS_IN","name":"Nedderman","type":"Role","_key":"93635","_from":"1259","_to":"55125"} +{"$label":"ACTS_IN","name":"Dan Bradley","type":"Role","_key":"63265","_from":"1259","_to":"39660"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"56774","_from":"1259","_to":"36060"} +{"$label":"ACTS_IN","name":"Guard Max Conlin","type":"Role","_key":"50023","_from":"1259","_to":"32743"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"33093","_from":"1259","_to":"22927"} +{"$label":"ACTS_IN","name":"Tuna","type":"Role","_key":"29705","_from":"1259","_to":"21034"} +{"$label":"ACTS_IN","name":"Willam Black","type":"Role","_key":"20124","_from":"1259","_to":"14782"} +{"$label":"ACTS_IN","name":"Fan","type":"Role","_key":"19744","_from":"1259","_to":"14591"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"12869","_from":"1259","_to":"10044"} +{"$label":"ACTS_IN","name":"Col. Vincent Kane","type":"Role","_key":"118068","_from":"1260","_to":"69396"} +{"$label":"ACTS_IN","name":"Cpt. Benjamin Hornigold","type":"Role","_key":"115904","_from":"1260","_to":"68234"} +{"$label":"ACTS_IN","name":"Tully","type":"Role","_key":"110759","_from":"1260","_to":"65430"} +{"$label":"ACTS_IN","name":"Bill Foster","type":"Role","_key":"103134","_from":"1260","_to":"60663"} +{"$label":"ACTS_IN","name":"Carl Beaumont","type":"Role","_key":"102472","_from":"1260","_to":"60297"} +{"$label":"ACTS_IN","name":"Frank James","type":"Role","_key":"101541","_from":"1260","_to":"59766"} +{"$label":"ACTS_IN","name":"Professor Haffler","type":"Role","_key":"88728","_from":"1260","_to":"52574"} +{"$label":"ACTS_IN","name":"Malloy","type":"Role","_key":"60091","_from":"1260","_to":"37917"} +{"$label":"ACTS_IN","name":"Jack O`Callahan","type":"Role","_key":"45458","_from":"1260","_to":"30120"} +{"$label":"ACTS_IN","name":"Barabbas","type":"Role","_key":"21135","_from":"1260","_to":"15473"} +{"$label":"ACTS_IN","name":"Dr. Ivan Ivanovich Ivanov","type":"Role","_key":"18742","_from":"1260","_to":"13862"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"93440","_from":"1261","_to":"55020"} +{"$label":"ACTS_IN","name":"Dorthy Gale","type":"Role","_key":"93039","_from":"1261","_to":"54853"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"71630","_from":"1261","_to":"43379"} +{"$label":"ACTS_IN","name":"Vicki Vallencourt","type":"Role","_key":"64905","_from":"1261","_to":"40359"} +{"$label":"ACTS_IN","name":"Aissa","type":"Role","_key":"53022","_from":"1261","_to":"34335"} +{"$label":"ACTS_IN","name":"Nancy Downs","type":"Role","_key":"52552","_from":"1261","_to":"34163"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"27645","_from":"1261","_to":"19813"} +{"$label":"ACTS_IN","name":"Sapphire","type":"Role","_key":"9244","_from":"1261","_to":"7466"} +{"$label":"ACTS_IN","name":"Lucinda","type":"Role","_key":"5069","_from":"1261","_to":"4307"} +{"$label":"ACTS_IN","name":"Rabbi Seth Gutterman","type":"Role","_key":"109344","_from":"1262","_to":"64596"} +{"$label":"ACTS_IN","name":"Frank Turlotte","type":"Role","_key":"109184","_from":"1262","_to":"64505"} +{"$label":"ACTS_IN","name":"Robert Caulfield","type":"Role","_key":"72834","_from":"1262","_to":"43874"} +{"$label":"ACTS_IN","name":"Cop in Pete's","type":"Role","_key":"72644","_from":"1262","_to":"43777"} +{"$label":"ACTS_IN","name":"Harry Greenberg","type":"Role","_key":"62665","_from":"1262","_to":"39415"} +{"$label":"ACTS_IN","name":"Col. Robert Stout","type":"Role","_key":"40259","_from":"1262","_to":"27164"} +{"$label":"ACTS_IN","name":"Mike McCain","type":"Role","_key":"38626","_from":"1262","_to":"26092"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"33522","_from":"1262","_to":"23182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26167","_from":"1262","_to":"18778"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15939","_from":"1262","_to":"12128"} +{"$label":"ACTS_IN","name":"Captain John Francis Xavier 'Trapper John' McIntyre","type":"Role","_key":"7776","_from":"1262","_to":"6460"} +{"$label":"ACTS_IN","name":"Reuben Tishkoff","type":"Role","_key":"4155","_from":"1262","_to":"3539"} +{"$label":"ACTS_IN","name":"Reuben Tishkoff","type":"Role","_key":"2529","_from":"1262","_to":"2210"} +{"$label":"ACTS_IN","name":"Reuben Tishkoff","type":"Role","_key":"2494","_from":"1262","_to":"2184"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"58167","_from":"1263","_to":"36795"} +{"$label":"ACTS_IN","name":"Irving Abel","type":"Role","_key":"51029","_from":"1265","_to":"33305"} +{"$label":"ACTS_IN","name":"Thomas Mirama","type":"Role","_key":"3008","_from":"1267","_to":"2567"} +{"$label":"ACTS_IN","name":"Phelps","type":"Role","_key":"97055","_from":"1268","_to":"57091"} +{"$label":"ACTS_IN","name":"Virgil de Selincourt","type":"Role","_key":"25899","_from":"1269","_to":"18633"} +{"$label":"ACTS_IN","name":"Virgil de Selincourt","type":"Role","_key":"25872","_from":"1269","_to":"18581"} +{"$label":"ACTS_IN","name":"Ferry Captain","type":"Role","_key":"1502","_from":"1276","_to":"1270"} +{"$label":"ACTS_IN","name":"News Producer","type":"Role","_key":"1501","_from":"1275","_to":"1270"} +{"$label":"ACTS_IN","name":"Harlan Ogilvy","type":"Role","_key":"1500","_from":"1274","_to":"1270"} +{"$label":"ACTS_IN","name":"Robbie Ferrier","type":"Role","_key":"1499","_from":"1273","_to":"1270"} +{"$label":"ACTS_IN","name":"Rachel Ferrier","type":"Role","_key":"1497","_from":"1272","_to":"1270"} +{"$label":"ACTS_IN","name":"Ray Ferrier","type":"Role","_key":"1496","_from":"1271","_to":"1270"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"115396","_from":"1271","_to":"67948"} +{"$label":"ACTS_IN","name":"Stefen Djordjevic","type":"Role","_key":"115151","_from":"1271","_to":"67809"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89942","_from":"1271","_to":"53213"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"73103","_from":"1271","_to":"43975"} +{"$label":"ACTS_IN","name":"Vincent Lauria","type":"Role","_key":"72492","_from":"1271","_to":"43737"} +{"$label":"ACTS_IN","name":"Joseph Donnelly","type":"Role","_key":"68842","_from":"1271","_to":"42176"} +{"$label":"ACTS_IN","name":"Cadet Captain David Shawn","type":"Role","_key":"64693","_from":"1271","_to":"40291"} +{"$label":"ACTS_IN","name":"Jerry Maguire","type":"Role","_key":"53552","_from":"1271","_to":"34567"} +{"$label":"ACTS_IN","name":"Joel Goodsen","type":"Role","_key":"53266","_from":"1271","_to":"34451"} +{"$label":"ACTS_IN","name":"Brian Flanagan","type":"Role","_key":"47117","_from":"1271","_to":"31067"} +{"$label":"ACTS_IN","name":"Senator Jasper Irving","type":"Role","_key":"32227","_from":"1271","_to":"22461"} +{"$label":"ACTS_IN","name":"Ron Kovic","type":"Role","_key":"22132","_from":"1271","_to":"16146"} +{"$label":"ACTS_IN","name":"Claus Schenk Graf von Stauffenberg","type":"Role","_key":"19696","_from":"1271","_to":"14564"} +{"$label":"ACTS_IN","name":"Cole Trickle","type":"Role","_key":"18477","_from":"1271","_to":"13689"} +{"$label":"ACTS_IN","name":"David Aames","type":"Role","_key":"16431","_from":"1271","_to":"12427"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"13620","_from":"1271","_to":"10587"} +{"$label":"ACTS_IN","name":"Ethan Hunt","type":"Role","_key":"11402","_from":"1271","_to":"8981"} +{"$label":"ACTS_IN","name":"Ethan Hunt","type":"Role","_key":"11386","_from":"1271","_to":"8971"} +{"$label":"ACTS_IN","name":"Ethan Hunt","type":"Role","_key":"11370","_from":"1271","_to":"8963"} +{"$label":"ACTS_IN","name":"Lt. Daniel Kaffee","type":"Role","_key":"10480","_from":"1271","_to":"8340"} +{"$label":"ACTS_IN","name":"Pete 'Maverick' Mitchell","type":"Role","_key":"8683","_from":"1271","_to":"7049"} +{"$label":"ACTS_IN","name":"Lestat de Lioncourt","type":"Role","_key":"7461","_from":"1271","_to":"6216"} +{"$label":"ACTS_IN","name":"Captain Nathan Algren","type":"Role","_key":"7307","_from":"1271","_to":"6096"} +{"$label":"ACTS_IN","name":"Charlie Babbitt","type":"Role","_key":"4903","_from":"1271","_to":"4182"} +{"$label":"ACTS_IN","name":"Dr. William 'Bill' Harford","type":"Role","_key":"4749","_from":"1271","_to":"4061"} +{"$label":"ACTS_IN","name":"Frank T.J. Mackey","type":"Role","_key":"4583","_from":"1271","_to":"3908"} +{"$label":"ACTS_IN","name":"Steve Randle","type":"Role","_key":"3283","_from":"1271","_to":"2809"} +{"$label":"ACTS_IN","name":"Chief John Anderton","type":"Role","_key":"2762","_from":"1271","_to":"2396"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"115510","_from":"1272","_to":"67997"} +{"$label":"ACTS_IN","name":"Anne Hagen","type":"Role","_key":"106776","_from":"1272","_to":"62951"} +{"$label":"ACTS_IN","name":"Lorraine \"Ray\" Schleine","type":"Role","_key":"102506","_from":"1272","_to":"60309"} +{"$label":"ACTS_IN","name":"Lewellen","type":"Role","_key":"102277","_from":"1272","_to":"60182"} +{"$label":"ACTS_IN","name":"Coraline Jones (voice)","type":"Role","_key":"101974","_from":"1272","_to":"60008"} +{"$label":"ACTS_IN","name":"Cassie Holmes","type":"Role","_key":"94585","_from":"1272","_to":"55732"} +{"$label":"ACTS_IN","name":"Cale Crane","type":"Role","_key":"91927","_from":"1272","_to":"54232"} +{"$label":"ACTS_IN","name":"Lily Owens","type":"Role","_key":"91809","_from":"1272","_to":"54159"} +{"$label":"ACTS_IN","name":"Emily Callaway","type":"Role","_key":"67852","_from":"1272","_to":"41692"} +{"$label":"ACTS_IN","name":"Lucy Diamond Dawson","type":"Role","_key":"66928","_from":"1272","_to":"41321"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"64276","_from":"1272","_to":"40080"} +{"$label":"ACTS_IN","name":"Fern","type":"Role","_key":"58989","_from":"1272","_to":"37240"} +{"$label":"ACTS_IN","name":"Pita","type":"Role","_key":"54330","_from":"1272","_to":"34865"} +{"$label":"ACTS_IN","name":"Abigal \"Abby\" Jennings","type":"Role","_key":"52215","_from":"1272","_to":"34015"} +{"$label":"ACTS_IN","name":"Lacey","type":"Role","_key":"33087","_from":"1272","_to":"22927"} +{"$label":"ACTS_IN","name":"Narrator\/Vivian Girls (voice)","type":"Role","_key":"16020","_from":"1272","_to":"12174"} +{"$label":"ACTS_IN","name":"Ben Pretzler","type":"Role","_key":"120932","_from":"1273","_to":"71009"} +{"$label":"ACTS_IN","name":"Goku","type":"Role","_key":"98851","_from":"1273","_to":"58251"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"97476","_from":"1273","_to":"57409"} +{"$label":"ACTS_IN","name":"Nick Powell","type":"Role","_key":"56748","_from":"1273","_to":"36045"} +{"$label":"ACTS_IN","name":"Fred Cheaver","type":"Role","_key":"106641","_from":"1274","_to":"62835"} +{"$label":"ACTS_IN","name":"David Owen","type":"Role","_key":"105338","_from":"1274","_to":"61982"} +{"$label":"ACTS_IN","name":"Loris Harrow","type":"Role","_key":"95381","_from":"1274","_to":"56102"} +{"$label":"ACTS_IN","name":"Carson J. Dyle","type":"Role","_key":"94484","_from":"1274","_to":"55646"} +{"$label":"ACTS_IN","name":"Norville Barnes","type":"Role","_key":"72830","_from":"1274","_to":"43873"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"72239","_from":"1274","_to":"43649"} +{"$label":"ACTS_IN","name":"Ed Walters","type":"Role","_key":"71905","_from":"1274","_to":"43507"} +{"$label":"ACTS_IN","name":"Nick Beam","type":"Role","_key":"71499","_from":"1274","_to":"43335"} +{"$label":"ACTS_IN","name":"Phil Blumburtt","type":"Role","_key":"64878","_from":"1274","_to":"40348"} +{"$label":"ACTS_IN","name":"Bob Roberts","type":"Role","_key":"64491","_from":"1274","_to":"40183"} +{"$label":"ACTS_IN","name":"Griffin Mill","type":"Role","_key":"63028","_from":"1274","_to":"39558"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"61355","_from":"1274","_to":"38719"} +{"$label":"ACTS_IN","name":"Gary Winston","type":"Role","_key":"59041","_from":"1274","_to":"37275"} +{"$label":"ACTS_IN","name":"Gary Cooper","type":"Role","_key":"51889","_from":"1274","_to":"33850"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"44942","_from":"1274","_to":"29879"} +{"$label":"ACTS_IN","name":"Joe Flynn","type":"Role","_key":"28155","_from":"1274","_to":"20177"} +{"$label":"ACTS_IN","name":"William Geld","type":"Role","_key":"22048","_from":"1274","_to":"16085"} +{"$label":"ACTS_IN","name":"Jacob Singer","type":"Role","_key":"20090","_from":"1274","_to":"14770"} +{"$label":"ACTS_IN","name":"Woodrow \" Woody \" Blake","type":"Role","_key":"17976","_from":"1274","_to":"13369"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"15149","_from":"1274","_to":"11617"} +{"$label":"ACTS_IN","name":"Nic Vos","type":"Role","_key":"12031","_from":"1274","_to":"9432"} +{"$label":"ACTS_IN","name":"Oliver Lang","type":"Role","_key":"11889","_from":"1274","_to":"9323"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"8692","_from":"1274","_to":"7049"} +{"$label":"ACTS_IN","name":"Gene Shepard","type":"Role","_key":"8364","_from":"1274","_to":"6847"} +{"$label":"ACTS_IN","name":"Dr. Nathan Bronfman","type":"Role","_key":"5539","_from":"1274","_to":"4722"} +{"$label":"ACTS_IN","name":"Dave Boyle","type":"Role","_key":"4465","_from":"1274","_to":"3810"} +{"$label":"ACTS_IN","name":"Ebby Calvin 'Nuke' LaLoosh","type":"Role","_key":"4009","_from":"1274","_to":"3420"} +{"$label":"ACTS_IN","name":"Andy Dufresne","type":"Role","_key":"3945","_from":"1274","_to":"3372"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"2344","_from":"1274","_to":"2066"} +{"$label":"DIRECTED","_key":"8274","_from":"1274","_to":"6786"} +{"$label":"ACTS_IN","name":"Louise Williams","type":"Role","_key":"1520","_from":"1291","_to":"1277"} +{"$label":"ACTS_IN","name":"Byron Williams","type":"Role","_key":"1519","_from":"1290","_to":"1277"} +{"$label":"ACTS_IN","name":"Martian Girl","type":"Role","_key":"1518","_from":"1289","_to":"1277"} +{"$label":"ACTS_IN","name":"Grandma Florence Norris","type":"Role","_key":"1517","_from":"1288","_to":"1277"} +{"$label":"ACTS_IN","name":"Richie Norris","type":"Role","_key":"1516","_from":"1287","_to":"1277"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"1514","_from":"1286","_to":"1277"} +{"$label":"ACTS_IN","name":"General Decker","type":"Role","_key":"1513","_from":"1285","_to":"1277"} +{"$label":"ACTS_IN","name":"Jason Stone","type":"Role","_key":"1512","_from":"1284","_to":"1277"} +{"$label":"ACTS_IN","name":"Nathalie Lake","type":"Role","_key":"1511","_from":"1283","_to":"1277"} +{"$label":"ACTS_IN","name":"Press Secretary Jerry Ross","type":"Role","_key":"1510","_from":"1282","_to":"1277"} +{"$label":"ACTS_IN","name":"Rude Gambler","type":"Role","_key":"1509","_from":"1281","_to":"1277"} +{"$label":"ACTS_IN","name":"Professor Donald Kessler","type":"Role","_key":"1508","_from":"1280","_to":"1277"} +{"$label":"ACTS_IN","name":"First Lady Marsha Dale","type":"Role","_key":"1506","_from":"1279","_to":"1277"} +{"$label":"ACTS_IN","name":"President James Dale \/ Art Land","type":"Role","_key":"1505","_from":"1278","_to":"1277"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117882","_from":"1278","_to":"69298"} +{"$label":"ACTS_IN","name":"Eugene O'Neill","type":"Role","_key":"115564","_from":"1278","_to":"68033"} +{"$label":"ACTS_IN","name":"SM1 Billy 'Bad Ass' Buddusky","type":"Role","_key":"102317","_from":"1278","_to":"60201"} +{"$label":"ACTS_IN","name":"Mark Forman","type":"Role","_key":"96914","_from":"1278","_to":"57008"} +{"$label":"ACTS_IN","name":"Bill Rorich","type":"Role","_key":"90698","_from":"1278","_to":"53542"} +{"$label":"ACTS_IN","name":"The Specialist","type":"Role","_key":"69156","_from":"1278","_to":"42295"} +{"$label":"ACTS_IN","name":"Garrett Breedlove","type":"Role","_key":"67555","_from":"1278","_to":"41594"} +{"$label":"ACTS_IN","name":"Frank Chambers","type":"Role","_key":"67382","_from":"1278","_to":"41519"} +{"$label":"ACTS_IN","name":"James R. 'Jimmy' Hoffa","type":"Role","_key":"63068","_from":"1278","_to":"39574"} +{"$label":"ACTS_IN","name":"Will Randall","type":"Role","_key":"62978","_from":"1278","_to":"39543"} +{"$label":"ACTS_IN","name":"David Locke","type":"Role","_key":"55292","_from":"1278","_to":"35259"} +{"$label":"ACTS_IN","name":"Dr. Buddy Rydell","type":"Role","_key":"54311","_from":"1278","_to":"34859"} +{"$label":"ACTS_IN","name":"Edward Cole","type":"Role","_key":"46601","_from":"1278","_to":"30782"} +{"$label":"ACTS_IN","name":"Harry Sanborn","type":"Role","_key":"45390","_from":"1278","_to":"30097"} +{"$label":"ACTS_IN","name":"Daryl Van Horne","type":"Role","_key":"41458","_from":"1278","_to":"27868"} +{"$label":"ACTS_IN","name":"Jerry Black","type":"Role","_key":"40712","_from":"1278","_to":"27400"} +{"$label":"ACTS_IN","name":"Melvin Udall","type":"Role","_key":"24159","_from":"1278","_to":"17512"} +{"$label":"ACTS_IN","name":"Warren R. Schmidt","type":"Role","_key":"23287","_from":"1278","_to":"16888"} +{"$label":"ACTS_IN","name":"Charley Partanna","type":"Role","_key":"18035","_from":"1278","_to":"13405"} +{"$label":"ACTS_IN","name":"Costello","type":"Role","_key":"13168","_from":"1278","_to":"10265"} +{"$label":"ACTS_IN","name":"Col. Nathan R. Jessep","type":"Role","_key":"10481","_from":"1278","_to":"8340"} +{"$label":"ACTS_IN","name":"Jake Gittes","type":"Role","_key":"9798","_from":"1278","_to":"7856"} +{"$label":"ACTS_IN","name":"Jack Torrance","type":"Role","_key":"8353","_from":"1278","_to":"6842"} +{"$label":"ACTS_IN","name":"George Hanson","type":"Role","_key":"7417","_from":"1278","_to":"6181"} +{"$label":"ACTS_IN","name":"Randle Patrick McMurphy","type":"Role","_key":"6162","_from":"1278","_to":"5224"} +{"$label":"ACTS_IN","name":"Joker","type":"Role","_key":"3819","_from":"1278","_to":"3276"} +{"$label":"ACTS_IN","name":"Sarah Witting","type":"Role","_key":"105785","_from":"1279","_to":"62284"} +{"$label":"ACTS_IN","name":"Sarah Wheaton","type":"Role","_key":"105744","_from":"1279","_to":"62251"} +{"$label":"ACTS_IN","name":"Carrie Johnson","type":"Role","_key":"97477","_from":"1279","_to":"57409"} +{"$label":"ACTS_IN","name":"Sarah Cooper","type":"Role","_key":"90272","_from":"1279","_to":"53368"} +{"$label":"ACTS_IN","name":"Alicia Clark","type":"Role","_key":"89197","_from":"1279","_to":"52823"} +{"$label":"ACTS_IN","name":"Teddy Barnes","type":"Role","_key":"88890","_from":"1279","_to":"52664"} +{"$label":"ACTS_IN","name":"Cruella De Vil","type":"Role","_key":"71478","_from":"1279","_to":"43329"} +{"$label":"ACTS_IN","name":"Iris Gaines","type":"Role","_key":"69584","_from":"1279","_to":"42485"} +{"$label":"ACTS_IN","name":"Jenny Fields","type":"Role","_key":"69050","_from":"1279","_to":"42265"} +{"$label":"ACTS_IN","name":"Alex Forrest","type":"Role","_key":"67187","_from":"1279","_to":"41448"} +{"$label":"ACTS_IN","name":"Granny (voice)","type":"Role","_key":"67080","_from":"1279","_to":"41402"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"64931","_from":"1279","_to":"40369"} +{"$label":"ACTS_IN","name":"Cruella de Vil","type":"Role","_key":"63577","_from":"1279","_to":"39784"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"62144","_from":"1279","_to":"39139"} +{"$label":"ACTS_IN","name":"Claire Wellington","type":"Role","_key":"57618","_from":"1279","_to":"36484"} +{"$label":"ACTS_IN","name":"Vice President Kathryn Bennett","type":"Role","_key":"56510","_from":"1279","_to":"35891"} +{"$label":"ACTS_IN","name":"Olivia Pace","type":"Role","_key":"54285","_from":"1279","_to":"34846"} +{"$label":"ACTS_IN","name":"Camille Dixon","type":"Role","_key":"54034","_from":"1279","_to":"34762"} +{"$label":"ACTS_IN","name":"Mrs. Farraday","type":"Role","_key":"52527","_from":"1279","_to":"34153"} +{"$label":"ACTS_IN","name":"Mrs. Wittenborn","type":"Role","_key":"41269","_from":"1279","_to":"27749"} +{"$label":"ACTS_IN","name":"Ferula Trueba","type":"Role","_key":"19778","_from":"1279","_to":"14606"} +{"$label":"ACTS_IN","name":"Marquise Isabelle de Merteuil","type":"Role","_key":"10208","_from":"1279","_to":"8147"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"119824","_from":"1280","_to":"70367"} +{"$label":"ACTS_IN","name":"Tom Ryan","type":"Role","_key":"93587","_from":"1280","_to":"55111"} +{"$label":"ACTS_IN","name":"Gideon","type":"Role","_key":"93576","_from":"1280","_to":"55109"} +{"$label":"ACTS_IN","name":"Danny O'Neill","type":"Role","_key":"90710","_from":"1280","_to":"53546"} +{"$label":"ACTS_IN","name":"Sam Carmichael","type":"Role","_key":"71157","_from":"1280","_to":"43190"} +{"$label":"ACTS_IN","name":"Adam Lang","type":"Role","_key":"69828","_from":"1280","_to":"42613"} +{"$label":"ACTS_IN","name":"Robinson Crusoe","type":"Role","_key":"68557","_from":"1280","_to":"42034"} +{"$label":"ACTS_IN","name":"Daniel Rafferty","type":"Role","_key":"68118","_from":"1280","_to":"41844"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"67333","_from":"1280","_to":"41501"} +{"$label":"ACTS_IN","name":"Max Burdett","type":"Role","_key":"64281","_from":"1280","_to":"40082"} +{"$label":"ACTS_IN","name":"Dr. Lawrence Angelo","type":"Role","_key":"61351","_from":"1280","_to":"38717"} +{"$label":"ACTS_IN","name":"Harry Dalton","type":"Role","_key":"55093","_from":"1280","_to":"35184"} +{"$label":"ACTS_IN","name":"Julian Noble","type":"Role","_key":"54376","_from":"1280","_to":"34876"} +{"$label":"ACTS_IN","name":"Richard Langley","type":"Role","_key":"47958","_from":"1280","_to":"31551"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"41330","_from":"1280","_to":"27781"} +{"$label":"ACTS_IN","name":"James Edward Ross","type":"Role","_key":"34760","_from":"1280","_to":"23765"} +{"$label":"ACTS_IN","name":"Andrew \" Andy \" Osnard","type":"Role","_key":"22019","_from":"1280","_to":"16070"} +{"$label":"ACTS_IN","name":"Thomas Crown","type":"Role","_key":"10856","_from":"1280","_to":"8607"} +{"$label":"ACTS_IN","name":"Stuart Dunmeyer","type":"Role","_key":"9277","_from":"1280","_to":"7496"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8629","_from":"1280","_to":"7008"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8577","_from":"1280","_to":"6980"} +{"$label":"ACTS_IN","name":"Grover Cleaver","type":"Role","_key":"120092","_from":"1281","_to":"70525"} +{"$label":"ACTS_IN","name":"Burr","type":"Role","_key":"110121","_from":"1281","_to":"65070"} +{"$label":"ACTS_IN","name":"Merl","type":"Role","_key":"106411","_from":"1281","_to":"62695"} +{"$label":"ACTS_IN","name":"Phil Cooper","type":"Role","_key":"105640","_from":"1281","_to":"62181"} +{"$label":"ACTS_IN","name":"Gastner","type":"Role","_key":"105421","_from":"1281","_to":"62025"} +{"$label":"ACTS_IN","name":"Frank Menure","type":"Role","_key":"102514","_from":"1281","_to":"60316"} +{"$label":"ACTS_IN","name":"Wayne the Pool Guy","type":"Role","_key":"100477","_from":"1281","_to":"59246"} +{"$label":"ACTS_IN","name":"Max Fairbanks","type":"Role","_key":"98229","_from":"1281","_to":"57867"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"94864","_from":"1281","_to":"55857"} +{"$label":"ACTS_IN","name":"Sam Stone","type":"Role","_key":"88323","_from":"1281","_to":"52377"} +{"$label":"ACTS_IN","name":"Deck Shifflet","type":"Role","_key":"73098","_from":"1281","_to":"43974"} +{"$label":"ACTS_IN","name":"Owen \/ Ned 'Little Ned' Lift","type":"Role","_key":"72604","_from":"1281","_to":"43772"} +{"$label":"ACTS_IN","name":"Bill Rago","type":"Role","_key":"72414","_from":"1281","_to":"43716"} +{"$label":"ACTS_IN","name":"Mickey Bergman","type":"Role","_key":"67810","_from":"1281","_to":"41677"} +{"$label":"ACTS_IN","name":"Vernon Dahlart","type":"Role","_key":"67556","_from":"1281","_to":"41594"} +{"$label":"ACTS_IN","name":"Ernest Tilley","type":"Role","_key":"66516","_from":"1281","_to":"41126"} +{"$label":"ACTS_IN","name":"Harry Wormwood","type":"Role","_key":"66036","_from":"1281","_to":"40870"} +{"$label":"ACTS_IN","name":"Harvey Wexler","type":"Role","_key":"65356","_from":"1281","_to":"40549"} +{"$label":"ACTS_IN","name":"Bobby Ciaro","type":"Role","_key":"63069","_from":"1281","_to":"39574"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"62481","_from":"1281","_to":"39351"} +{"$label":"ACTS_IN","name":"District Attorney","type":"Role","_key":"60550","_from":"1281","_to":"38218"} +{"$label":"ACTS_IN","name":"Buddy Hall","type":"Role","_key":"58713","_from":"1281","_to":"37088"} +{"$label":"ACTS_IN","name":"Vincent Benedict","type":"Role","_key":"54232","_from":"1281","_to":"34829"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"53145","_from":"1281","_to":"34383"} +{"$label":"ACTS_IN","name":"Burke Bennett","type":"Role","_key":"52782","_from":"1281","_to":"34241"} +{"$label":"ACTS_IN","name":"Martin Weir","type":"Role","_key":"47792","_from":"1281","_to":"31468"} +{"$label":"ACTS_IN","name":"Lawrence Garfield","type":"Role","_key":"43473","_from":"1281","_to":"29038"} +{"$label":"ACTS_IN","name":"Dr. Larry Arbogast","type":"Role","_key":"42801","_from":"1281","_to":"28627"} +{"$label":"ACTS_IN","name":"Martin Weir","type":"Role","_key":"32585","_from":"1281","_to":"22640"} +{"$label":"ACTS_IN","name":"Big D.","type":"Role","_key":"20614","_from":"1281","_to":"15077"} +{"$label":"ACTS_IN","name":"Mr. Swackhammer (voice)","type":"Role","_key":"20204","_from":"1281","_to":"14813"} +{"$label":"ACTS_IN","name":"Sid Hudgens","type":"Role","_key":"18471","_from":"1281","_to":"13688"} +{"$label":"ACTS_IN","name":"George Shapiro","type":"Role","_key":"15977","_from":"1281","_to":"12149"} +{"$label":"ACTS_IN","name":"Dr. Horniker","type":"Role","_key":"13367","_from":"1281","_to":"10404"} +{"$label":"ACTS_IN","name":"Martini","type":"Role","_key":"6171","_from":"1281","_to":"5224"} +{"$label":"ACTS_IN","name":"Penguin\/Oswald Cobblepot","type":"Role","_key":"4853","_from":"1281","_to":"4154"} +{"$label":"ACTS_IN","name":"Gavin D'Amato","type":"Role","_key":"3603","_from":"1281","_to":"3082"} +{"$label":"DIRECTED","_key":"72609","_from":"1281","_to":"43772"} +{"$label":"DIRECTED","_key":"66044","_from":"1281","_to":"40870"} +{"$label":"DIRECTED","_key":"63074","_from":"1281","_to":"39574"} +{"$label":"DIRECTED","_key":"52778","_from":"1281","_to":"34241"} +{"$label":"DIRECTED","_key":"46222","_from":"1281","_to":"30551"} +{"$label":"DIRECTED","_key":"3600","_from":"1281","_to":"3082"} +{"$label":"ACTS_IN","name":"Eugene Proctor","type":"Role","_key":"118586","_from":"1282","_to":"69729"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"114140","_from":"1282","_to":"67216"} +{"$label":"ACTS_IN","name":"Martin Harvey","type":"Role","_key":"99810","_from":"1282","_to":"58878"} +{"$label":"ACTS_IN","name":"Jack Frost","type":"Role","_key":"96244","_from":"1282","_to":"56561"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"95729","_from":"1282","_to":"56304"} +{"$label":"ACTS_IN","name":"Franck Eggelhoffer","type":"Role","_key":"72439","_from":"1282","_to":"43722"} +{"$label":"ACTS_IN","name":"Franck Eggelhoffer","type":"Role","_key":"72344","_from":"1282","_to":"43689"} +{"$label":"ACTS_IN","name":"Dr. Desmond Forrest Oates","type":"Role","_key":"59956","_from":"1282","_to":"37851"} +{"$label":"ACTS_IN","name":"Richard Kempster","type":"Role","_key":"53921","_from":"1282","_to":"34701"} +{"$label":"ACTS_IN","name":"B.E.N.","type":"Role","_key":"52023","_from":"1282","_to":"33920"} +{"$label":"ACTS_IN","name":"Ned Nederlander","type":"Role","_key":"49468","_from":"1282","_to":"32393"} +{"$label":"ACTS_IN","name":"Thimbletack (voice)","type":"Role","_key":"48395","_from":"1282","_to":"31764"} +{"$label":"ACTS_IN","name":"Frik","type":"Role","_key":"45834","_from":"1282","_to":"30310"} +{"$label":"ACTS_IN","name":"Clifford Daniels","type":"Role","_key":"23479","_from":"1282","_to":"17023"} +{"$label":"ACTS_IN","name":"Jack Putter","type":"Role","_key":"22212","_from":"1282","_to":"16182"} +{"$label":"ACTS_IN","name":"Lori Anderson","type":"Role","_key":"120023","_from":"1283","_to":"70488"} +{"$label":"ACTS_IN","name":"Nell Fenwick","type":"Role","_key":"113726","_from":"1283","_to":"67020"} +{"$label":"ACTS_IN","name":"Gwyn Marcus","type":"Role","_key":"112124","_from":"1283","_to":"66220"} +{"$label":"ACTS_IN","name":"Janey Glenn","type":"Role","_key":"108386","_from":"1283","_to":"64078"} +{"$label":"ACTS_IN","name":"Peggy Callas","type":"Role","_key":"92885","_from":"1283","_to":"54784"} +{"$label":"ACTS_IN","name":"Janet Hartigan","type":"Role","_key":"91873","_from":"1283","_to":"54202"} +{"$label":"ACTS_IN","name":"Betsy \/ Donna","type":"Role","_key":"90016","_from":"1283","_to":"53250"} +{"$label":"ACTS_IN","name":"Jodie Trammel","type":"Role","_key":"69045","_from":"1283","_to":"42264"} +{"$label":"ACTS_IN","name":"Jo Christman","type":"Role","_key":"67720","_from":"1283","_to":"41643"} +{"$label":"ACTS_IN","name":"Sarah Sanderson","type":"Role","_key":"63365","_from":"1283","_to":"39709"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"62594","_from":"1283","_to":"39382"} +{"$label":"ACTS_IN","name":"Carolyn McAdams","type":"Role","_key":"61022","_from":"1283","_to":"38561"} +{"$label":"ACTS_IN","name":"Meredith Morton","type":"Role","_key":"52240","_from":"1283","_to":"34024"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"44998","_from":"1283","_to":"29901"} +{"$label":"ACTS_IN","name":"Carrie Bradshaw","type":"Role","_key":"32724","_from":"1283","_to":"22725"} +{"$label":"ACTS_IN","name":"Shelly Stewart","type":"Role","_key":"24336","_from":"1283","_to":"17622"} +{"$label":"ACTS_IN","name":"SanDeE","type":"Role","_key":"18371","_from":"1283","_to":"13628"} +{"$label":"ACTS_IN","name":"Rusty","type":"Role","_key":"15536","_from":"1283","_to":"11863"} +{"$label":"ACTS_IN","name":"Dolores Fuller","type":"Role","_key":"6236","_from":"1283","_to":"5281"} +{"$label":"ACTS_IN","name":"Scott Larson","type":"Role","_key":"114546","_from":"1284","_to":"67478"} +{"$label":"ACTS_IN","name":"Jamie Conway","type":"Role","_key":"111413","_from":"1284","_to":"65786"} +{"$label":"ACTS_IN","name":"Daniel McTeague","type":"Role","_key":"91491","_from":"1284","_to":"53940"} +{"$label":"ACTS_IN","name":"Scott Howard","type":"Role","_key":"72207","_from":"1284","_to":"43634"} +{"$label":"ACTS_IN","name":"Benjamin Stone","type":"Role","_key":"72183","_from":"1284","_to":"43625"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"70694","_from":"1284","_to":"43003"} +{"$label":"ACTS_IN","name":"Nick Lang","type":"Role","_key":"69526","_from":"1284","_to":"42467"} +{"$label":"ACTS_IN","name":"Voice of Stuart Little","type":"Role","_key":"67165","_from":"1284","_to":"41441"} +{"$label":"ACTS_IN","name":"Milo James Thatch","type":"Role","_key":"66354","_from":"1284","_to":"41042"} +{"$label":"ACTS_IN","name":"Frank Bannister","type":"Role","_key":"65719","_from":"1284","_to":"40696"} +{"$label":"ACTS_IN","name":"Axel Magee","type":"Role","_key":"63455","_from":"1284","_to":"39745"} +{"$label":"ACTS_IN","name":"Private Eriksson","type":"Role","_key":"61209","_from":"1284","_to":"38667"} +{"$label":"ACTS_IN","name":"Stuart Little (voice)","type":"Role","_key":"61168","_from":"1284","_to":"38655"} +{"$label":"ACTS_IN","name":"Brantley Foster aka Carlton Whitfield","type":"Role","_key":"59513","_from":"1284","_to":"37578"} +{"$label":"ACTS_IN","name":"Lewis Rothschild","type":"Role","_key":"52488","_from":"1284","_to":"34144"} +{"$label":"ACTS_IN","name":"Doug Ireland","type":"Role","_key":"52075","_from":"1284","_to":"33954"} +{"$label":"ACTS_IN","name":"Chance","type":"Role","_key":"45013","_from":"1284","_to":"29906"} +{"$label":"ACTS_IN","name":"Pete Maloney","type":"Role","_key":"40161","_from":"1284","_to":"27113"} +{"$label":"ACTS_IN","name":"Joe Rasnick","type":"Role","_key":"18436","_from":"1284","_to":"13664"} +{"$label":"ACTS_IN","name":"Marty McFly\/Seamus McFly","type":"Role","_key":"2907","_from":"1284","_to":"2506"} +{"$label":"ACTS_IN","name":"Marty McFly Sr. \/ Marty McFly Jr. \/ Marlene McFly","type":"Role","_key":"2554","_from":"1284","_to":"2235"} +{"$label":"ACTS_IN","name":"Marty McFly","type":"Role","_key":"1882","_from":"1284","_to":"1636"} +{"$label":"ACTS_IN","name":"Mr. Joyboy","type":"Role","_key":"108558","_from":"1285","_to":"64161"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"99499","_from":"1285","_to":"58654"} +{"$label":"ACTS_IN","name":"Jud Fry","type":"Role","_key":"97577","_from":"1285","_to":"57456"} +{"$label":"ACTS_IN","name":"Father Delaney","type":"Role","_key":"69929","_from":"1285","_to":"42672"} +{"$label":"ACTS_IN","name":"Gen. Webster","type":"Role","_key":"66107","_from":"1285","_to":"40897"} +{"$label":"ACTS_IN","name":"Police Chief Bill Gillespie","type":"Role","_key":"64727","_from":"1285","_to":"40299"} +{"$label":"ACTS_IN","name":"Father Kovak","type":"Role","_key":"58341","_from":"1285","_to":"36876"} +{"$label":"ACTS_IN","name":"Paul Hoplin","type":"Role","_key":"34811","_from":"1285","_to":"23787"} +{"$label":"ACTS_IN","name":"Mynher Peperkorn","type":"Role","_key":"29565","_from":"1285","_to":"20940"} +{"$label":"ACTS_IN","name":"Louis Wormser","type":"Role","_key":"27349","_from":"1285","_to":"19658"} +{"$label":"ACTS_IN","name":"Joe Leon","type":"Role","_key":"22297","_from":"1285","_to":"16214"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"21145","_from":"1285","_to":"15473"} +{"$label":"ACTS_IN","name":"Viktor Komarovsky","type":"Role","_key":"10793","_from":"1285","_to":"8557"} +{"$label":"ACTS_IN","name":"Charlie Malloy","type":"Role","_key":"7829","_from":"1285","_to":"6495"} +{"$label":"ACTS_IN","name":"Juan Miranda","type":"Role","_key":"4610","_from":"1285","_to":"3929"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104761","_from":"1286","_to":"61625"} +{"$label":"ACTS_IN","name":"Farley","type":"Role","_key":"116177","_from":"1287","_to":"68405"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"112338","_from":"1287","_to":"66323"} +{"$label":"ACTS_IN","name":"Chuckie","type":"Role","_key":"105772","_from":"1287","_to":"62270"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"101701","_from":"1287","_to":"59855"} +{"$label":"ACTS_IN","name":"Boyd","type":"Role","_key":"91445","_from":"1287","_to":"53929"} +{"$label":"ACTS_IN","name":"George 'Bunny' Hoover","type":"Role","_key":"89756","_from":"1287","_to":"53126"} +{"$label":"ACTS_IN","name":"Henry Baines","type":"Role","_key":"60947","_from":"1287","_to":"38506"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"57465","_from":"1287","_to":"36424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53633","_from":"1287","_to":"34590"} +{"$label":"ACTS_IN","name":"Samuel Lapp","type":"Role","_key":"52824","_from":"1287","_to":"34251"} +{"$label":"ACTS_IN","name":"The Pin","type":"Role","_key":"52744","_from":"1287","_to":"34224"} +{"$label":"ACTS_IN","name":"Mike Talbot","type":"Role","_key":"19812","_from":"1287","_to":"14622"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"14785","_from":"1287","_to":"11372"} +{"$label":"ACTS_IN","name":"Katherine Grant","type":"Role","_key":"101108","_from":"1288","_to":"59577"} +{"$label":"ACTS_IN","name":"Mrs. Sylvia Verloc (as Sylvia Sydney)","type":"Role","_key":"90996","_from":"1288","_to":"53688"} +{"$label":"ACTS_IN","name":"Aunt Marion","type":"Role","_key":"65648","_from":"1288","_to":"40672"} +{"$label":"ACTS_IN","name":"Lady Crane","type":"Role","_key":"22610","_from":"1289","_to":"16413"} +{"$label":"ACTS_IN","name":"Vampira","type":"Role","_key":"6254","_from":"1289","_to":"5281"} +{"$label":"ACTS_IN","name":"Capt. Leslie Anders","type":"Role","_key":"113491","_from":"1290","_to":"66871"} +{"$label":"ACTS_IN","name":"Slammer","type":"Role","_key":"110858","_from":"1290","_to":"65484"} +{"$label":"ACTS_IN","name":"Berwell","type":"Role","_key":"61995","_from":"1290","_to":"39027"} +{"$label":"ACTS_IN","name":"Robert Jefferson","type":"Role","_key":"14689","_from":"1290","_to":"11307"} +{"$label":"ACTS_IN","name":"Fireball","type":"Role","_key":"10285","_from":"1290","_to":"8188"} +{"$label":"ACTS_IN","name":"Detective Vera Cruz","type":"Role","_key":"117966","_from":"1291","_to":"69340"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"104642","_from":"1291","_to":"61555"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"96639","_from":"1291","_to":"56832"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"69510","_from":"1291","_to":"42463"} +{"$label":"ACTS_IN","name":"Hershe Las Palamas","type":"Role","_key":"60094","_from":"1291","_to":"37917"} +{"$label":"ACTS_IN","name":"Commander Helena Braddock","type":"Role","_key":"59469","_from":"1291","_to":"37557"} +{"$label":"ACTS_IN","name":"Delores 'Jacks' Jackson","type":"Role","_key":"53587","_from":"1291","_to":"34584"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"26555","_from":"1291","_to":"19080"} +{"$label":"ACTS_IN","name":"Ms. Wardroe","type":"Role","_key":"14657","_from":"1291","_to":"11286"} +{"$label":"ACTS_IN","name":"Jackie Brown","type":"Role","_key":"2792","_from":"1291","_to":"2421"} +{"$label":"ACTS_IN","name":"Percussionist","type":"Role","_key":"1534","_from":"1306","_to":"1292"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"1533","_from":"1305","_to":"1292"} +{"$label":"ACTS_IN","name":"Guitar Player in Club","type":"Role","_key":"1532","_from":"1304","_to":"1292"} +{"$label":"ACTS_IN","name":"Belly Dancer","type":"Role","_key":"1531","_from":"1303","_to":"1292"} +{"$label":"ACTS_IN","name":"Street Poet","type":"Role","_key":"1530","_from":"1302","_to":"1292"} +{"$label":"ACTS_IN","name":"Cafe Patron","type":"Role","_key":"1529","_from":"1301","_to":"1292"} +{"$label":"ACTS_IN","name":"Palm Reader","type":"Role","_key":"1528","_from":"1300","_to":"1292"} +{"$label":"ACTS_IN","name":"Guy on Bridge","type":"Role","_key":"1527","_from":"1299","_to":"1292"} +{"$label":"ACTS_IN","name":"Guy on Bridge","type":"Role","_key":"1526","_from":"1298","_to":"1292"} +{"$label":"ACTS_IN","name":"Husband on Train","type":"Role","_key":"1525","_from":"1297","_to":"1292"} +{"$label":"ACTS_IN","name":"Wife on Train","type":"Role","_key":"1524","_from":"1296","_to":"1292"} +{"$label":"ACTS_IN","name":"C\u00e9line","type":"Role","_key":"1523","_from":"1295","_to":"1292"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"1522","_from":"1294","_to":"1292"} +{"$label":"DIRECTED","_key":"1521","_from":"1293","_to":"1292"} +{"$label":"ACTS_IN","name":"Should Have Stayed at Bus Station","type":"Role","_key":"98166","_from":"1293","_to":"57814"} +{"$label":"ACTS_IN","name":"Cool Spy","type":"Role","_key":"60035","_from":"1293","_to":"37889"} +{"$label":"DIRECTED","_key":"94015","_from":"1293","_to":"55368"} +{"$label":"DIRECTED","_key":"89310","_from":"1293","_to":"52869"} +{"$label":"DIRECTED","_key":"54774","_from":"1293","_to":"35048"} +{"$label":"DIRECTED","_key":"52459","_from":"1293","_to":"34121"} +{"$label":"DIRECTED","_key":"49017","_from":"1293","_to":"32126"} +{"$label":"DIRECTED","_key":"27483","_from":"1293","_to":"19717"} +{"$label":"DIRECTED","_key":"1572","_from":"1293","_to":"1342"} +{"$label":"ACTS_IN","name":"Edward Dalton","type":"Role","_key":"121424","_from":"1294","_to":"71341"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"105963","_from":"1294","_to":"62387"} +{"$label":"ACTS_IN","name":"Jack Conroy","type":"Role","_key":"88835","_from":"1294","_to":"52638"} +{"$label":"ACTS_IN","name":"James Costa","type":"Role","_key":"67746","_from":"1294","_to":"41652"} +{"$label":"ACTS_IN","name":"Hamlet","type":"Role","_key":"65064","_from":"1294","_to":"40428"} +{"$label":"ACTS_IN","name":"Ishmael Chambers","type":"Role","_key":"61776","_from":"1294","_to":"38895"} +{"$label":"ACTS_IN","name":"Ben Crandall","type":"Role","_key":"57511","_from":"1294","_to":"36442"} +{"$label":"ACTS_IN","name":"Finnegan Bell","type":"Role","_key":"53698","_from":"1294","_to":"34631"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"52451","_from":"1294","_to":"34121"} +{"$label":"ACTS_IN","name":"Sergeant Jake Roenick","type":"Role","_key":"51800","_from":"1294","_to":"33802"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"49028","_from":"1294","_to":"32126"} +{"$label":"ACTS_IN","name":"Lefty","type":"Role","_key":"48996","_from":"1294","_to":"32116"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"48993","_from":"1294","_to":"32115"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"47556","_from":"1294","_to":"31338"} +{"$label":"ACTS_IN","name":"Nando Parrado","type":"Role","_key":"46406","_from":"1294","_to":"30656"} +{"$label":"ACTS_IN","name":"Troy Dyer","type":"Role","_key":"23586","_from":"1294","_to":"17109"} +{"$label":"ACTS_IN","name":"Jake Hoyt","type":"Role","_key":"17709","_from":"1294","_to":"13216"} +{"$label":"ACTS_IN","name":"Jack Valentine","type":"Role","_key":"15792","_from":"1294","_to":"12028"} +{"$label":"ACTS_IN","name":"Vincent Freeman","type":"Role","_key":"9198","_from":"1294","_to":"7439"} +{"$label":"ACTS_IN","name":"Todd Anderson","type":"Role","_key":"3028","_from":"1294","_to":"2594"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"1574","_from":"1294","_to":"1342"} +{"$label":"DIRECTED","_key":"116725","_from":"1294","_to":"68707"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"95636","_from":"1295","_to":"56251"} +{"$label":"ACTS_IN","name":"Sabeth","type":"Role","_key":"61399","_from":"1295","_to":"38731"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"60067","_from":"1295","_to":"37904"} +{"$label":"ACTS_IN","name":"Nina Van Pallandt","type":"Role","_key":"57783","_from":"1295","_to":"36578"} +{"$label":"ACTS_IN","name":"Serafine Pigot","type":"Role","_key":"53676","_from":"1295","_to":"34620"} +{"$label":"ACTS_IN","name":"Celine","type":"Role","_key":"52452","_from":"1295","_to":"34121"} +{"$label":"ACTS_IN","name":"Leni","type":"Role","_key":"51900","_from":"1295","_to":"33854"} +{"$label":"ACTS_IN","name":"Erzebet Bathory","type":"Role","_key":"48988","_from":"1295","_to":"32115"} +{"$label":"ACTS_IN","name":"Caroline Frankenstein","type":"Role","_key":"25309","_from":"1295","_to":"18241"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"15921","_from":"1295","_to":"12115"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"6117","_from":"1295","_to":"5188"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"4257","_from":"1295","_to":"3629"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"1933","_from":"1295","_to":"1679"} +{"$label":"ACTS_IN","name":"C\u00e9line","type":"Role","_key":"1573","_from":"1295","_to":"1342"} +{"$label":"DIRECTED","_key":"48994","_from":"1295","_to":"32115"} +{"$label":"DIRECTED","_key":"15920","_from":"1295","_to":"12115"} +{"$label":"ACTS_IN","name":"Konecny","type":"Role","_key":"104456","_from":"1297","_to":"61435"} +{"$label":"ACTS_IN","name":"Lothar","type":"Role","_key":"42476","_from":"1297","_to":"28443"} +{"$label":"ACTS_IN","name":"Rudolf Swoboda","type":"Role","_key":"35680","_from":"1297","_to":"24242"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"91714","_from":"1300","_to":"54103"} +{"$label":"ACTS_IN","name":"Mizzi Schranz","type":"Role","_key":"31436","_from":"1300","_to":"21958"} +{"$label":"DIRECTED","_key":"16545","_from":"1301","_to":"12477"} +{"$label":"DIRECTED","_key":"3923","_from":"1301","_to":"3355"} +{"$label":"DIRECTED","_key":"3878","_from":"1301","_to":"3319"} +{"$label":"ACTS_IN","name":"Kreativling #2","type":"Role","_key":"16537","_from":"1301","_to":"12477"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40708","_from":"1305","_to":"27392"} +{"$label":"ACTS_IN","name":"Motel Guest (uncredited)","type":"Role","_key":"1549","_from":"1320","_to":"1307"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"1548","_from":"1319","_to":"1307"} +{"$label":"ACTS_IN","name":"Tattooist","type":"Role","_key":"1547","_from":"1318","_to":"1307"} +{"$label":"ACTS_IN","name":"Blonde","type":"Role","_key":"1546","_from":"1317","_to":"1307"} +{"$label":"ACTS_IN","name":"Dodd","type":"Role","_key":"1545","_from":"1316","_to":"1307"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"1544","_from":"1315","_to":"1307"} +{"$label":"ACTS_IN","name":"Mrs. Jankis","type":"Role","_key":"1543","_from":"1314","_to":"1307"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"1542","_from":"1313","_to":"1307"} +{"$label":"ACTS_IN","name":"Leonard's Wife","type":"Role","_key":"1541","_from":"1312","_to":"1307"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"1540","_from":"1311","_to":"1307"} +{"$label":"ACTS_IN","name":"Burt","type":"Role","_key":"1539","_from":"1310","_to":"1307"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"1536","_from":"1309","_to":"1307"} +{"$label":"DIRECTED","_key":"1535","_from":"1308","_to":"1307"} +{"$label":"DIRECTED","_key":"71368","_from":"1308","_to":"43282"} +{"$label":"DIRECTED","_key":"12043","_from":"1308","_to":"9443"} +{"$label":"DIRECTED","_key":"4441","_from":"1308","_to":"3790"} +{"$label":"DIRECTED","_key":"3860","_from":"1308","_to":"3310"} +{"$label":"DIRECTED","_key":"2398","_from":"1308","_to":"2110"} +{"$label":"ACTS_IN","name":"Charlie Burns","type":"Role","_key":"109605","_from":"1309","_to":"64744"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"108618","_from":"1309","_to":"64191"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"107974","_from":"1309","_to":"63771"} +{"$label":"ACTS_IN","name":"Jimmy Starks","type":"Role","_key":"106956","_from":"1309","_to":"63058"} +{"$label":"ACTS_IN","name":"Dr Bruce Laraby","type":"Role","_key":"106779","_from":"1309","_to":"62951"} +{"$label":"ACTS_IN","name":"Harry Houdini","type":"Role","_key":"97394","_from":"1309","_to":"57355"} +{"$label":"ACTS_IN","name":"Roy Clayton","type":"Role","_key":"93741","_from":"1309","_to":"55182"} +{"$label":"ACTS_IN","name":"Andy Warhol","type":"Role","_key":"89145","_from":"1309","_to":"52804"} +{"$label":"ACTS_IN","name":"Sgt. Matt Thompson","type":"Role","_key":"88392","_from":"1309","_to":"52392"} +{"$label":"ACTS_IN","name":"Fernand Mondego","type":"Role","_key":"69406","_from":"1309","_to":"42425"} +{"$label":"ACTS_IN","name":"Maj. Mark Biggs","type":"Role","_key":"63569","_from":"1309","_to":"39782"} +{"$label":"ACTS_IN","name":"Captain John Boyd","type":"Role","_key":"61732","_from":"1309","_to":"38878"} +{"$label":"ACTS_IN","name":"Kendall","type":"Role","_key":"61680","_from":"1309","_to":"38856"} +{"$label":"ACTS_IN","name":"Adam Whitely\/Felicia Jollygoodfellow","type":"Role","_key":"23328","_from":"1309","_to":"16903"} +{"$label":"ACTS_IN","name":"Alexander Hartdegen","type":"Role","_key":"18568","_from":"1309","_to":"13738"} +{"$label":"ACTS_IN","name":"Det. Lt. Edmund Jennings \" Ed \" Exley","type":"Role","_key":"18470","_from":"1309","_to":"13688"} +{"$label":"ACTS_IN","name":"Aidan McRory","type":"Role","_key":"17321","_from":"1309","_to":"12958"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"120510","_from":"1310","_to":"70785"} +{"$label":"ACTS_IN","name":"Jacques Bruno","type":"Role","_key":"61506","_from":"1310","_to":"38787"} +{"$label":"ACTS_IN","name":"Bearded Man","type":"Role","_key":"57217","_from":"1310","_to":"36289"} +{"$label":"ACTS_IN","name":"Paul Adams","type":"Role","_key":"56826","_from":"1310","_to":"36088"} +{"$label":"ACTS_IN","name":"Pvt. Peale","type":"Role","_key":"50643","_from":"1310","_to":"33066"} +{"$label":"ACTS_IN","name":"Evil","type":"Role","_key":"46372","_from":"1310","_to":"30637"} +{"$label":"ACTS_IN","name":"Beau","type":"Role","_key":"32218","_from":"1310","_to":"22456"} +{"$label":"ACTS_IN","name":"Detective Whitworth","type":"Role","_key":"7008","_from":"1310","_to":"5871"} +{"$label":"ACTS_IN","name":"Flass","type":"Role","_key":"3868","_from":"1310","_to":"3310"} +{"$label":"ACTS_IN","name":"Felicity","type":"Role","_key":"25996","_from":"1312","_to":"18688"} +{"$label":"ACTS_IN","name":"Norbert Barrington","type":"Role","_key":"115877","_from":"1313","_to":"68225"} +{"$label":"ACTS_IN","name":"McClaren","type":"Role","_key":"115813","_from":"1313","_to":"68174"} +{"$label":"ACTS_IN","name":"Jeweler","type":"Role","_key":"114996","_from":"1313","_to":"67722"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"113789","_from":"1313","_to":"67043"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"97717","_from":"1313","_to":"57539"} +{"$label":"ACTS_IN","name":"George Ruddy","type":"Role","_key":"94709","_from":"1313","_to":"55789"} +{"$label":"ACTS_IN","name":"Uncle Neil","type":"Role","_key":"93131","_from":"1313","_to":"54874"} +{"$label":"ACTS_IN","name":"Dr. Perkins","type":"Role","_key":"93076","_from":"1313","_to":"54867"} +{"$label":"ACTS_IN","name":"Jud Phillips","type":"Role","_key":"70029","_from":"1313","_to":"42703"} +{"$label":"ACTS_IN","name":"Mitch Myerson","type":"Role","_key":"54982","_from":"1313","_to":"35139"} +{"$label":"ACTS_IN","name":"Agent FBI Chuck Stupak","type":"Role","_key":"53845","_from":"1313","_to":"34683"} +{"$label":"ACTS_IN","name":"Happy Chapman","type":"Role","_key":"51500","_from":"1313","_to":"33579"} +{"$label":"ACTS_IN","name":"Mr. Henkin","type":"Role","_key":"49770","_from":"1313","_to":"32563"} +{"$label":"ACTS_IN","name":"Warren Singleton","type":"Role","_key":"22710","_from":"1313","_to":"16474"} +{"$label":"ACTS_IN","name":"Warden Holliday","type":"Role","_key":"18522","_from":"1313","_to":"13709"} +{"$label":"ACTS_IN","name":"Joe Weyburn","type":"Role","_key":"15287","_from":"1313","_to":"11700"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"13649","_from":"1313","_to":"10603"} +{"$label":"ACTS_IN","name":"Dr. Lamott","type":"Role","_key":"5103","_from":"1313","_to":"4328"} +{"$label":"ACTS_IN","name":"Ned Ryerson","type":"Role","_key":"2195","_from":"1313","_to":"1929"} +{"$label":"ACTS_IN","name":"Nurse Besson","type":"Role","_key":"65859","_from":"1314","_to":"40750"} +{"$label":"ACTS_IN","name":"Therapist","type":"Role","_key":"31289","_from":"1314","_to":"21881"} +{"$label":"ACTS_IN","name":"Ned Gold","type":"Role","_key":"110789","_from":"1315","_to":"65438"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"109438","_from":"1315","_to":"64647"} +{"$label":"ACTS_IN","name":"Roger Walker","type":"Role","_key":"54280","_from":"1315","_to":"34846"} +{"$label":"ACTS_IN","name":"Eddie the Computer","type":"Role","_key":"46733","_from":"1315","_to":"30837"} +{"$label":"ACTS_IN","name":"Craig Zwiller","type":"Role","_key":"107215","_from":"1316","_to":"63230"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"99693","_from":"1316","_to":"58779"} +{"$label":"ACTS_IN","name":"Detective Brian Larson","type":"Role","_key":"56753","_from":"1316","_to":"36045"} +{"$label":"ACTS_IN","name":"Janke Dacyshyn (2nd Abductor)","type":"Role","_key":"50952","_from":"1316","_to":"33249"} +{"$label":"ACTS_IN","name":"Jerry Bines","type":"Role","_key":"45227","_from":"1316","_to":"30022"} +{"$label":"ACTS_IN","name":"Jason Treborn","type":"Role","_key":"16947","_from":"1316","_to":"12723"} +{"$label":"ACTS_IN","name":"Hugo Carlaw","type":"Role","_key":"16883","_from":"1316","_to":"12696"} +{"$label":"ACTS_IN","name":"Zhora","type":"Role","_key":"1560","_from":"1329","_to":"1321"} +{"$label":"ACTS_IN","name":"Eldon Tyrell","type":"Role","_key":"1559","_from":"1328","_to":"1321"} +{"$label":"ACTS_IN","name":"J.F. Sebastian","type":"Role","_key":"1557","_from":"1327","_to":"1321"} +{"$label":"ACTS_IN","name":"Bryant","type":"Role","_key":"1555","_from":"1326","_to":"1321"} +{"$label":"ACTS_IN","name":"Gaff","type":"Role","_key":"1554","_from":"1325","_to":"1321"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"1553","_from":"1324","_to":"1321"} +{"$label":"ACTS_IN","name":"Roy Batty","type":"Role","_key":"1552","_from":"1323","_to":"1321"} +{"$label":"DIRECTED","_key":"1550","_from":"1322","_to":"1321"} +{"$label":"DIRECTED","_key":"118591","_from":"1322","_to":"69732"} +{"$label":"DIRECTED","_key":"88093","_from":"1322","_to":"52284"} +{"$label":"DIRECTED","_key":"73102","_from":"1322","_to":"43975"} +{"$label":"DIRECTED","_key":"63909","_from":"1322","_to":"39924"} +{"$label":"DIRECTED","_key":"56222","_from":"1322","_to":"35726"} +{"$label":"DIRECTED","_key":"56109","_from":"1322","_to":"35624"} +{"$label":"DIRECTED","_key":"46140","_from":"1322","_to":"30486"} +{"$label":"DIRECTED","_key":"35312","_from":"1322","_to":"24057"} +{"$label":"DIRECTED","_key":"31675","_from":"1322","_to":"22099"} +{"$label":"DIRECTED","_key":"29607","_from":"1322","_to":"20953"} +{"$label":"DIRECTED","_key":"13651","_from":"1322","_to":"10603"} +{"$label":"DIRECTED","_key":"13551","_from":"1322","_to":"10534"} +{"$label":"DIRECTED","_key":"13511","_from":"1322","_to":"10513"} +{"$label":"DIRECTED","_key":"10135","_from":"1322","_to":"8112"} +{"$label":"DIRECTED","_key":"4785","_from":"1322","_to":"4094"} +{"$label":"DIRECTED","_key":"1797","_from":"1322","_to":"1556"} +{"$label":"ACTS_IN","name":"Nick Parker","type":"Role","_key":"118802","_from":"1323","_to":"69847"} +{"$label":"ACTS_IN","name":"Cyrnan","type":"Role","_key":"117850","_from":"1323","_to":"69278"} +{"$label":"ACTS_IN","name":"Gen. Frank Lewis","type":"Role","_key":"117629","_from":"1323","_to":"69148"} +{"$label":"ACTS_IN","name":"Maxwell McAllister","type":"Role","_key":"114708","_from":"1323","_to":"67566"} +{"$label":"ACTS_IN","name":"A.T.","type":"Role","_key":"114103","_from":"1323","_to":"67201"} +{"$label":"ACTS_IN","name":"Thomas Burns","type":"Role","_key":"113256","_from":"1323","_to":"66728"} +{"$label":"ACTS_IN","name":"Old Frank","type":"Role","_key":"111972","_from":"1323","_to":"66095"} +{"$label":"ACTS_IN","name":"Omega Doom","type":"Role","_key":"111236","_from":"1323","_to":"65690"} +{"$label":"ACTS_IN","name":"Det. John Criton","type":"Role","_key":"104584","_from":"1323","_to":"61518"} +{"$label":"ACTS_IN","name":"Harley Stone","type":"Role","_key":"91974","_from":"1323","_to":"54263"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"91467","_from":"1323","_to":"53933"} +{"$label":"ACTS_IN","name":"John Tanner","type":"Role","_key":"88919","_from":"1323","_to":"52676"} +{"$label":"ACTS_IN","name":"SS-Sturmbannf\u00fchrer Xavier March","type":"Role","_key":"68782","_from":"1323","_to":"42145"} +{"$label":"ACTS_IN","name":"Lothos","type":"Role","_key":"61703","_from":"1323","_to":"38864"} +{"$label":"ACTS_IN","name":"Gen. Frank Lewis","type":"Role","_key":"59793","_from":"1323","_to":"37738"} +{"$label":"ACTS_IN","name":"Rudi van der Merwe","type":"Role","_key":"57083","_from":"1323","_to":"36223"} +{"$label":"ACTS_IN","name":"John Ryder","type":"Role","_key":"54564","_from":"1323","_to":"34965"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"48999","_from":"1323","_to":"32116"} +{"$label":"ACTS_IN","name":"Blane Van Niekirk","type":"Role","_key":"45650","_from":"1323","_to":"30214"} +{"$label":"ACTS_IN","name":"US Pr\u00e4sident Nelson","type":"Role","_key":"40811","_from":"1323","_to":"27472"} +{"$label":"ACTS_IN","name":"Keeler","type":"Role","_key":"34726","_from":"1323","_to":"23746"} +{"$label":"ACTS_IN","name":"Cap. Britanov","type":"Role","_key":"18535","_from":"1323","_to":"13721"} +{"$label":"ACTS_IN","name":"Frank Warren","type":"Role","_key":"18518","_from":"1323","_to":"13709"} +{"$label":"ACTS_IN","name":"Erik Lanshof","type":"Role","_key":"7526","_from":"1323","_to":"6266"} +{"$label":"ACTS_IN","name":"Captain Etienne Navarre","type":"Role","_key":"6335","_from":"1323","_to":"5358"} +{"$label":"ACTS_IN","name":"Mr. Earle","type":"Role","_key":"3867","_from":"1323","_to":"3310"} +{"$label":"ACTS_IN","name":"Cardinal Roark","type":"Role","_key":"2839","_from":"1323","_to":"2450"} +{"$label":"ACTS_IN","name":"Curtiz","type":"Role","_key":"2445","_from":"1323","_to":"2141"} +{"$label":"ACTS_IN","name":"Susan Matthews-Loomis","type":"Role","_key":"121059","_from":"1324","_to":"71095"} +{"$label":"ACTS_IN","name":"Madeline Volpe","type":"Role","_key":"119293","_from":"1324","_to":"70090"} +{"$label":"ACTS_IN","name":"Louise Cooper","type":"Role","_key":"66485","_from":"1324","_to":"41111"} +{"$label":"ACTS_IN","name":"Susan Atwell","type":"Role","_key":"60435","_from":"1324","_to":"38128"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"58999","_from":"1324","_to":"37245"} +{"$label":"ACTS_IN","name":"Billie Lee Guthries","type":"Role","_key":"43548","_from":"1324","_to":"29090"} +{"$label":"ACTS_IN","name":"Lt. Lois Einhorn\/Ray Finkel","type":"Role","_key":"25234","_from":"1324","_to":"18207"} +{"$label":"ACTS_IN","name":"Chani","type":"Role","_key":"9947","_from":"1324","_to":"7956"} +{"$label":"ACTS_IN","name":"Captain garcia","type":"Role","_key":"105989","_from":"1325","_to":"62403"} +{"$label":"ACTS_IN","name":"Diablo (voice)","type":"Role","_key":"100065","_from":"1325","_to":"59023"} +{"$label":"ACTS_IN","name":"Montoya Santana","type":"Role","_key":"93427","_from":"1325","_to":"55015"} +{"$label":"ACTS_IN","name":"Juror 11","type":"Role","_key":"88772","_from":"1325","_to":"52604"} +{"$label":"ACTS_IN","name":"Eddie Holt","type":"Role","_key":"65267","_from":"1325","_to":"40513"} +{"$label":"DIRECTED","_key":"93431","_from":"1325","_to":"55015"} +{"$label":"ACTS_IN","name":"Bert Gibson","type":"Role","_key":"119940","_from":"1326","_to":"70452"} +{"$label":"ACTS_IN","name":"Doorman","type":"Role","_key":"119283","_from":"1326","_to":"70080"} +{"$label":"ACTS_IN","name":"T.R. Polk","type":"Role","_key":"113836","_from":"1326","_to":"67053"} +{"$label":"ACTS_IN","name":"Coach Salan","type":"Role","_key":"109655","_from":"1326","_to":"64764"} +{"$label":"ACTS_IN","name":"Mort Bisby","type":"Role","_key":"107623","_from":"1326","_to":"63525"} +{"$label":"ACTS_IN","name":"Coach Turnbull","type":"Role","_key":"105126","_from":"1326","_to":"61864"} +{"$label":"ACTS_IN","name":"Tuck","type":"Role","_key":"104192","_from":"1326","_to":"61299"} +{"$label":"ACTS_IN","name":"Mickey Hopkins","type":"Role","_key":"103366","_from":"1326","_to":"60808"} +{"$label":"ACTS_IN","name":"Walt Scheel","type":"Role","_key":"95817","_from":"1326","_to":"56354"} +{"$label":"ACTS_IN","name":"Dewey Ferguson","type":"Role","_key":"90904","_from":"1326","_to":"53628"} +{"$label":"ACTS_IN","name":"Loren Visser","type":"Role","_key":"69444","_from":"1326","_to":"42438"} +{"$label":"ACTS_IN","name":"Dr. Joseph Dolan","type":"Role","_key":"56256","_from":"1326","_to":"35740"} +{"$label":"ACTS_IN","name":"Coleman","type":"Role","_key":"50036","_from":"1326","_to":"32751"} +{"$label":"ACTS_IN","name":"Group W Sergeant","type":"Role","_key":"38262","_from":"1326","_to":"25825"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"33510","_from":"1326","_to":"23176"} +{"$label":"ACTS_IN","name":"Harv","type":"Role","_key":"29310","_from":"1326","_to":"20816"} +{"$label":"ACTS_IN","name":"Lee Dollarhide","type":"Role","_key":"110005","_from":"1327","_to":"64997"} +{"$label":"ACTS_IN","name":"Joe Monday","type":"Role","_key":"53169","_from":"1327","_to":"34398"} +{"$label":"ACTS_IN","name":"Bastian","type":"Role","_key":"20324","_from":"1327","_to":"14887"} +{"$label":"ACTS_IN","name":"Paxton Warner","type":"Role","_key":"18766","_from":"1328","_to":"13879"} +{"$label":"ACTS_IN","name":"Pvt. Pierre Arnaud","type":"Role","_key":"11540","_from":"1328","_to":"9065"} +{"$label":"ACTS_IN","name":"Lloyd the Bartender","type":"Role","_key":"8359","_from":"1328","_to":"6842"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"3582","_from":"1328","_to":"3060"} +{"$label":"ACTS_IN","name":"Rose Lindsey","type":"Role","_key":"104314","_from":"1329","_to":"61374"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"89923","_from":"1329","_to":"53207"} +{"$label":"ACTS_IN","name":"Dr. Arlene Whitlock","type":"Role","_key":"59470","_from":"1329","_to":"37557"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"36460","_from":"1329","_to":"24729"} +{"$label":"ACTS_IN","name":"Irina Vassilievna","type":"Role","_key":"34762","_from":"1329","_to":"23765"} +{"$label":"ACTS_IN","name":"Mrs. Davis","type":"Role","_key":"17114","_from":"1329","_to":"12821"} +{"$label":"ACTS_IN","name":"Dolores","type":"Role","_key":"10170","_from":"1329","_to":"8126"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"1571","_from":"1341","_to":"1330"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"1570","_from":"1340","_to":"1330"} +{"$label":"ACTS_IN","name":"Old Servant","type":"Role","_key":"1569","_from":"1339","_to":"1330"} +{"$label":"ACTS_IN","name":"Scholar","type":"Role","_key":"1568","_from":"1338","_to":"1330"} +{"$label":"ACTS_IN","name":"Sky","type":"Role","_key":"1567","_from":"1337","_to":"1330"} +{"$label":"ACTS_IN","name":"King of Qin","type":"Role","_key":"1566","_from":"1336","_to":"1330"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"1565","_from":"1335","_to":"1330"} +{"$label":"ACTS_IN","name":"Flying Snow","type":"Role","_key":"1564","_from":"1334","_to":"1330"} +{"$label":"ACTS_IN","name":"Broken Sword","type":"Role","_key":"1563","_from":"1333","_to":"1330"} +{"$label":"ACTS_IN","name":"Nameless","type":"Role","_key":"1562","_from":"1332","_to":"1330"} +{"$label":"DIRECTED","_key":"1561","_from":"1331","_to":"1330"} +{"$label":"DIRECTED","_key":"99165","_from":"1331","_to":"58421"} +{"$label":"DIRECTED","_key":"89170","_from":"1331","_to":"52815"} +{"$label":"DIRECTED","_key":"63040","_from":"1331","_to":"39559"} +{"$label":"DIRECTED","_key":"54620","_from":"1331","_to":"34983"} +{"$label":"DIRECTED","_key":"13528","_from":"1331","_to":"10527"} +{"$label":"ACTS_IN","name":"Wong Fei-hung (as Lin-kit Lee)","type":"Role","_key":"117258","_from":"1332","_to":"68969"} +{"$label":"ACTS_IN","name":"Kung Wei","type":"Role","_key":"117240","_from":"1332","_to":"68965"} +{"$label":"ACTS_IN","name":"Allan Hui Ching-yeung \/ John Chang","type":"Role","_key":"117045","_from":"1332","_to":"68884"} +{"$label":"ACTS_IN","name":"Ling Wu Chung","type":"Role","_key":"117034","_from":"1332","_to":"68879"} +{"$label":"ACTS_IN","name":"Hung Hei-Kwun","type":"Role","_key":"117020","_from":"1332","_to":"68869"} +{"$label":"ACTS_IN","name":"Kit Li","type":"Role","_key":"117000","_from":"1332","_to":"68861"} +{"$label":"ACTS_IN","name":"Fong Sai Yuk","type":"Role","_key":"114036","_from":"1332","_to":"67155"} +{"$label":"ACTS_IN","name":"Chen Zhen","type":"Role","_key":"114028","_from":"1332","_to":"67151"} +{"$label":"ACTS_IN","name":"Fong Sai-Yuk","type":"Role","_key":"113470","_from":"1332","_to":"66860"} +{"$label":"ACTS_IN","name":"Jet","type":"Role","_key":"105844","_from":"1332","_to":"62308"} +{"$label":"ACTS_IN","name":"General Ma Xinyi","type":"Role","_key":"99991","_from":"1332","_to":"58993"} +{"$label":"ACTS_IN","name":"Junbao","type":"Role","_key":"68133","_from":"1332","_to":"41849"} +{"$label":"ACTS_IN","name":"Chang Mo Kei","type":"Role","_key":"66255","_from":"1332","_to":"40989"} +{"$label":"ACTS_IN","name":"Gabe Law \/ Gabriel Yulaw \/ Lawless","type":"Role","_key":"65852","_from":"1332","_to":"40750"} +{"$label":"ACTS_IN","name":"Su","type":"Role","_key":"64664","_from":"1332","_to":"40281"} +{"$label":"ACTS_IN","name":"Wong Fei-Hung","type":"Role","_key":"64625","_from":"1332","_to":"40258"} +{"$label":"ACTS_IN","name":"Wong Fei-hung","type":"Role","_key":"64618","_from":"1332","_to":"40256"} +{"$label":"ACTS_IN","name":"Huang Feihong","type":"Role","_key":"64608","_from":"1332","_to":"40250"} +{"$label":"ACTS_IN","name":"Wong Fei-hung","type":"Role","_key":"64588","_from":"1332","_to":"40235"} +{"$label":"ACTS_IN","name":"Fu","type":"Role","_key":"64568","_from":"1332","_to":"40218"} +{"$label":"ACTS_IN","name":"Rogue","type":"Role","_key":"63278","_from":"1332","_to":"39669"} +{"$label":"ACTS_IN","name":"Chieh Yuan","type":"Role","_key":"62319","_from":"1332","_to":"39263"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"59579","_from":"1332","_to":"37614"} +{"$label":"ACTS_IN","name":"Tsui Chik \/ Black Mask","type":"Role","_key":"54005","_from":"1332","_to":"34741"} +{"$label":"ACTS_IN","name":"Huo Yuanjia","type":"Role","_key":"47154","_from":"1332","_to":"31088"} +{"$label":"ACTS_IN","name":"Liu Jian","type":"Role","_key":"18611","_from":"1332","_to":"13776"} +{"$label":"ACTS_IN","name":"Hang Sing","type":"Role","_key":"18155","_from":"1332","_to":"13474"} +{"$label":"ACTS_IN","name":"Emperor Han","type":"Role","_key":"15336","_from":"1332","_to":"11730"} +{"$label":"ACTS_IN","name":"The Silent Monk\/ The Monkey King","type":"Role","_key":"15294","_from":"1332","_to":"11705"} +{"$label":"ACTS_IN","name":"Wah Sing Ku","type":"Role","_key":"11261","_from":"1332","_to":"8897"} +{"$label":"DIRECTED","_key":"105847","_from":"1332","_to":"62308"} +{"$label":"ACTS_IN","name":"Detective Lau Ching Hei","type":"Role","_key":"117890","_from":"1333","_to":"69301"} +{"$label":"ACTS_IN","name":"Lai Yiu-fai","type":"Role","_key":"115844","_from":"1333","_to":"68201"} +{"$label":"ACTS_IN","name":"Zhou Yu","type":"Role","_key":"104224","_from":"1333","_to":"61317"} +{"$label":"ACTS_IN","name":"Blind Swordsman","type":"Role","_key":"103839","_from":"1333","_to":"61067"} +{"$label":"ACTS_IN","name":"Chan Wing Yan","type":"Role","_key":"99561","_from":"1333","_to":"58693"} +{"$label":"ACTS_IN","name":"Zhou Yu","type":"Role","_key":"89223","_from":"1333","_to":"52831"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"72705","_from":"1333","_to":"43813"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"71949","_from":"1333","_to":"43526"} +{"$label":"ACTS_IN","name":"Policeman 663","type":"Role","_key":"67895","_from":"1333","_to":"41715"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"66933","_from":"1333","_to":"41322"} +{"$label":"ACTS_IN","name":"Chan Wing Yan","type":"Role","_key":"65696","_from":"1333","_to":"40692"} +{"$label":"ACTS_IN","name":"Lam","type":"Role","_key":"62151","_from":"1333","_to":"39140"} +{"$label":"ACTS_IN","name":"Herr Yi","type":"Role","_key":"32879","_from":"1333","_to":"22819"} +{"$label":"ACTS_IN","name":"Chow Mo-Wan","type":"Role","_key":"9995","_from":"1333","_to":"8006"} +{"$label":"ACTS_IN","name":"Chow Mo-Wan","type":"Role","_key":"9981","_from":"1333","_to":"7993"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"117396","_from":"1334","_to":"69050"} +{"$label":"ACTS_IN","name":"Su Li-zhen","type":"Role","_key":"115785","_from":"1334","_to":"68169"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"103838","_from":"1334","_to":"61067"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"68081","_from":"1334","_to":"41824"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"65462","_from":"1334","_to":"40581"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"52307","_from":"1334","_to":"34054"} +{"$label":"ACTS_IN","name":"Su Li-Zhen","type":"Role","_key":"9996","_from":"1334","_to":"8006"} +{"$label":"ACTS_IN","name":"Su Li-Zhen","type":"Role","_key":"9982","_from":"1334","_to":"7993"} +{"$label":"ACTS_IN","name":"Kristen","type":"Role","_key":"116326","_from":"1335","_to":"68477"} +{"$label":"ACTS_IN","name":"Empress Wan","type":"Role","_key":"100366","_from":"1335","_to":"59186"} +{"$label":"ACTS_IN","name":"Zhao Di, Young","type":"Role","_key":"89167","_from":"1335","_to":"52815"} +{"$label":"ACTS_IN","name":"Xiao Mei","type":"Role","_key":"54618","_from":"1335","_to":"34983"} +{"$label":"ACTS_IN","name":"Hu Li","type":"Role","_key":"36259","_from":"1335","_to":"24603"} +{"$label":"ACTS_IN","name":"Chiyo","type":"Role","_key":"16442","_from":"1335","_to":"12429"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"13284","_from":"1335","_to":"10334"} +{"$label":"ACTS_IN","name":"Karai (voice)","type":"Role","_key":"12439","_from":"1335","_to":"9740"} +{"$label":"ACTS_IN","name":"Bai Ling","type":"Role","_key":"10000","_from":"1335","_to":"8006"} +{"$label":"ACTS_IN","name":"Jen Yu (Mandarin) \/ Jiao Long (English)","type":"Role","_key":"2323","_from":"1335","_to":"2046"} +{"$label":"ACTS_IN","name":"Inspector Shen Chen","type":"Role","_key":"99563","_from":"1336","_to":"58693"} +{"$label":"ACTS_IN","name":"Pang Yong","type":"Role","_key":"114024","_from":"1337","_to":"67150"} +{"$label":"ACTS_IN","name":"Dragon Wong","type":"Role","_key":"106158","_from":"1337","_to":"62527"} +{"$label":"ACTS_IN","name":"Ip Man","type":"Role","_key":"101670","_from":"1337","_to":"59836"} +{"$label":"ACTS_IN","name":"Muyong Xuehu","type":"Role","_key":"100700","_from":"1337","_to":"59378"} +{"$label":"ACTS_IN","name":"Inspector Ma Kwun","type":"Role","_key":"92804","_from":"1337","_to":"54752"} +{"$label":"ACTS_IN","name":"Wong Kei-Ying","type":"Role","_key":"91505","_from":"1337","_to":"53944"} +{"$label":"ACTS_IN","name":"Chu Zhao Nan","type":"Role","_key":"65140","_from":"1337","_to":"40465"} +{"$label":"ACTS_IN","name":"Lan","type":"Role","_key":"64609","_from":"1337","_to":"40250"} +{"$label":"ACTS_IN","name":"General Lone","type":"Role","_key":"62082","_from":"1337","_to":"39097"} +{"$label":"ACTS_IN","name":"Wu Chow","type":"Role","_key":"41401","_from":"1337","_to":"27828"} +{"$label":"ACTS_IN","name":"Woman in Courtyard","type":"Role","_key":"1582","_from":"1350","_to":"1342"} +{"$label":"ACTS_IN","name":"Man at Grill","type":"Role","_key":"1581","_from":"1349","_to":"1342"} +{"$label":"ACTS_IN","name":"Boat Attendant","type":"Role","_key":"1580","_from":"1348","_to":"1342"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"1579","_from":"1347","_to":"1342"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"1578","_from":"1346","_to":"1342"} +{"$label":"ACTS_IN","name":"Journalist #2","type":"Role","_key":"1577","_from":"1345","_to":"1342"} +{"$label":"ACTS_IN","name":"Journalist #1","type":"Role","_key":"1576","_from":"1344","_to":"1342"} +{"$label":"ACTS_IN","name":"Bookstore Manager","type":"Role","_key":"1575","_from":"1343","_to":"1342"} +{"$label":"ACTS_IN","name":"Blount","type":"Role","_key":"72016","_from":"1343","_to":"43545"} +{"$label":"ACTS_IN","name":"Elder #1","type":"Role","_key":"59359","_from":"1343","_to":"37498"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"49704","_from":"1343","_to":"32523"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"44691","_from":"1343","_to":"29734"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"38661","_from":"1343","_to":"26112"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33052","_from":"1343","_to":"22898"} +{"$label":"ACTS_IN","name":"le pasteur","type":"Role","_key":"30731","_from":"1343","_to":"21545"} +{"$label":"ACTS_IN","name":"Chancellor","type":"Role","_key":"25218","_from":"1343","_to":"18189"} +{"$label":"ACTS_IN","name":"Flavius Sabinus","type":"Role","_key":"22405","_from":"1343","_to":"16258"} +{"$label":"ACTS_IN","name":"Agent Etancelin","type":"Role","_key":"13063","_from":"1343","_to":"10181"} +{"$label":"ACTS_IN","name":"Max Kalba","type":"Role","_key":"8326","_from":"1343","_to":"6815"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"1721","_from":"1343","_to":"1473"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"62492","_from":"1345","_to":"39356"} +{"$label":"ACTS_IN","name":"Mme Bouley","type":"Role","_key":"32241","_from":"1350","_to":"22464"} +{"$label":"ACTS_IN","name":"Commando (Voice)","type":"Role","_key":"1597","_from":"1366","_to":"1351"} +{"$label":"ACTS_IN","name":"Kurotowa (Voice)","type":"Role","_key":"1596","_from":"1365","_to":"1351"} +{"$label":"ACTS_IN","name":"Kushana (Voice)","type":"Role","_key":"1595","_from":"1364","_to":"1351"} +{"$label":"ACTS_IN","name":"Rastel (Voice)","type":"Role","_key":"1594","_from":"1363","_to":"1351"} +{"$label":"ACTS_IN","name":"Asbel (Voice)","type":"Role","_key":"1593","_from":"1362","_to":"1351"} +{"$label":"ACTS_IN","name":"Teto \/ Girl C (Voice)","type":"Role","_key":"1592","_from":"1361","_to":"1351"} +{"$label":"ACTS_IN","name":"Niga (Voice)","type":"Role","_key":"1591","_from":"1360","_to":"1351"} +{"$label":"ACTS_IN","name":"Gikkuri (Voice)","type":"Role","_key":"1590","_from":"1359","_to":"1351"} +{"$label":"ACTS_IN","name":"Goru (Voice)","type":"Role","_key":"1589","_from":"1358","_to":"1351"} +{"$label":"ACTS_IN","name":"Mito (Voice)","type":"Role","_key":"1588","_from":"1357","_to":"1351"} +{"$label":"ACTS_IN","name":"Yupa (Voice)","type":"Role","_key":"1587","_from":"1356","_to":"1351"} +{"$label":"ACTS_IN","name":"Oh-Baba (Voice)","type":"Role","_key":"1586","_from":"1355","_to":"1351"} +{"$label":"ACTS_IN","name":"Jihl (Voice)","type":"Role","_key":"1585","_from":"1354","_to":"1351"} +{"$label":"ACTS_IN","name":"Nausica\u00e4 (Voice)","type":"Role","_key":"1584","_from":"1353","_to":"1351"} +{"$label":"DIRECTED","_key":"1583","_from":"1352","_to":"1351"} +{"$label":"DIRECTED","_key":"110224","_from":"1352","_to":"65147"} +{"$label":"DIRECTED","_key":"104145","_from":"1352","_to":"61271"} +{"$label":"DIRECTED","_key":"89419","_from":"1352","_to":"52937"} +{"$label":"DIRECTED","_key":"71105","_from":"1352","_to":"43165"} +{"$label":"DIRECTED","_key":"66105","_from":"1352","_to":"40896"} +{"$label":"DIRECTED","_key":"63787","_from":"1352","_to":"39886"} +{"$label":"DIRECTED","_key":"49500","_from":"1352","_to":"32404"} +{"$label":"DIRECTED","_key":"34942","_from":"1352","_to":"23864"} +{"$label":"DIRECTED","_key":"2091","_from":"1352","_to":"1830"} +{"$label":"DIRECTED","_key":"2076","_from":"1352","_to":"1817"} +{"$label":"ACTS_IN","name":"Yasuko Kusakabe","type":"Role","_key":"49505","_from":"1353","_to":"32404"} +{"$label":"ACTS_IN","name":"Toki","type":"Role","_key":"2083","_from":"1353","_to":"1817"} +{"$label":"ACTS_IN","name":"Old Woman (as Naoko Kyoda)","type":"Role","_key":"110729","_from":"1355","_to":"65413"} +{"$label":"ACTS_IN","name":"Inspector Zenigata (voice)","type":"Role","_key":"104151","_from":"1356","_to":"61271"} +{"$label":"ACTS_IN","name":"Ashitaka","type":"Role","_key":"2077","_from":"1362","_to":"1817"} +{"$label":"ACTS_IN","name":"Puppenspieler","type":"Role","_key":"53131","_from":"1365","_to":"34375"} +{"$label":"ACTS_IN","name":"Detective James \"Sonny\" Crockett","type":"Role","_key":"1612","_from":"1380","_to":"1367"} +{"$label":"ACTS_IN","name":"ER Doctor","type":"Role","_key":"1611","_from":"1379","_to":"1367"} +{"$label":"ACTS_IN","name":"ER Doctor","type":"Role","_key":"1610","_from":"1378","_to":"1367"} +{"$label":"ACTS_IN","name":"Alonzo Stevens","type":"Role","_key":"1609","_from":"1377","_to":"1367"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"1608","_from":"1376","_to":"1367"} +{"$label":"ACTS_IN","name":"Switek","type":"Role","_key":"1607","_from":"1375","_to":"1367"} +{"$label":"ACTS_IN","name":"Gina Calabrese","type":"Role","_key":"1606","_from":"1374","_to":"1367"} +{"$label":"ACTS_IN","name":"Jose Yero","type":"Role","_key":"1605","_from":"1373","_to":"1367"} +{"$label":"ACTS_IN","name":"FBI Agent Fujima","type":"Role","_key":"1604","_from":"1372","_to":"1367"} +{"$label":"ACTS_IN","name":"Zito","type":"Role","_key":"1603","_from":"1371","_to":"1367"} +{"$label":"ACTS_IN","name":"Montoya","type":"Role","_key":"1601","_from":"1370","_to":"1367"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"1600","_from":"1369","_to":"1367"} +{"$label":"DIRECTED","_key":"1598","_from":"1368","_to":"1367"} +{"$label":"DIRECTED","_key":"70413","_from":"1368","_to":"42875"} +{"$label":"DIRECTED","_key":"69959","_from":"1368","_to":"42679"} +{"$label":"DIRECTED","_key":"69129","_from":"1368","_to":"42291"} +{"$label":"DIRECTED","_key":"53350","_from":"1368","_to":"34484"} +{"$label":"DIRECTED","_key":"51970","_from":"1368","_to":"33895"} +{"$label":"DIRECTED","_key":"50069","_from":"1368","_to":"32759"} +{"$label":"DIRECTED","_key":"13619","_from":"1368","_to":"10587"} +{"$label":"DIRECTED","_key":"11320","_from":"1368","_to":"8936"} +{"$label":"ACTS_IN","name":"Juxian","type":"Role","_key":"67181","_from":"1369","_to":"41446"} +{"$label":"ACTS_IN","name":"Songlian","type":"Role","_key":"63035","_from":"1369","_to":"39559"} +{"$label":"ACTS_IN","name":"Lady Zhao","type":"Role","_key":"62938","_from":"1369","_to":"39526"} +{"$label":"ACTS_IN","name":"Hatsumomo","type":"Role","_key":"16443","_from":"1369","_to":"12429"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"13530","_from":"1369","_to":"10527"} +{"$label":"ACTS_IN","name":"Su Li-Zhen","type":"Role","_key":"9997","_from":"1369","_to":"8006"} +{"$label":"ACTS_IN","name":"Pablo L\u00f3pez","type":"Role","_key":"106455","_from":"1370","_to":"62716"} +{"$label":"ACTS_IN","name":"Baptist","type":"Role","_key":"103074","_from":"1370","_to":"60631"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"13111","_from":"1370","_to":"10222"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"12904","_from":"1370","_to":"10068"} +{"$label":"DIRECTED","_key":"98568","_from":"1371","_to":"58084"} +{"$label":"ACTS_IN","name":"Bradley Lake","type":"Role","_key":"93157","_from":"1371","_to":"54901"} +{"$label":"ACTS_IN","name":"Carlo Honklin","type":"Role","_key":"92888","_from":"1371","_to":"54784"} +{"$label":"ACTS_IN","name":"Devon Berk\/Billy Side","type":"Role","_key":"15305","_from":"1371","_to":"11713"} +{"$label":"ACTS_IN","name":"Timothy Bryce","type":"Role","_key":"12541","_from":"1371","_to":"9822"} +{"$label":"ACTS_IN","name":"Adam Kesher","type":"Role","_key":"11787","_from":"1371","_to":"9247"} +{"$label":"ACTS_IN","name":"Captain Frederick Wentworth","type":"Role","_key":"110892","_from":"1372","_to":"65506"} +{"$label":"ACTS_IN","name":"Barnes","type":"Role","_key":"95711","_from":"1372","_to":"56295"} +{"$label":"ACTS_IN","name":"Aberforth Dumbledore","type":"Role","_key":"89517","_from":"1372","_to":"52992"} +{"$label":"ACTS_IN","name":"Joe Blumfield","type":"Role","_key":"88495","_from":"1372","_to":"52451"} +{"$label":"ACTS_IN","name":"John Traynor","type":"Role","_key":"64704","_from":"1372","_to":"40293"} +{"$label":"ACTS_IN","name":"Father Andy","type":"Role","_key":"60657","_from":"1372","_to":"38296"} +{"$label":"ACTS_IN","name":"Firmin","type":"Role","_key":"57295","_from":"1372","_to":"36334"} +{"$label":"ACTS_IN","name":"Rod Harper","type":"Role","_key":"50525","_from":"1372","_to":"33000"} +{"$label":"ACTS_IN","name":"Cory","type":"Role","_key":"46715","_from":"1372","_to":"30833"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"46564","_from":"1372","_to":"30757"} +{"$label":"ACTS_IN","name":"Finn McGovern","type":"Role","_key":"29772","_from":"1372","_to":"21072"} +{"$label":"ACTS_IN","name":"Herodes der Gro\u00dfe","type":"Role","_key":"21444","_from":"1372","_to":"15682"} +{"$label":"ACTS_IN","name":"Julius Foe","type":"Role","_key":"19553","_from":"1372","_to":"14466"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"7244","_from":"1372","_to":"6053"} +{"$label":"ACTS_IN","name":"Campos","type":"Role","_key":"96759","_from":"1373","_to":"56916"} +{"$label":"ACTS_IN","name":"Mr. Temple","type":"Role","_key":"91362","_from":"1373","_to":"53883"} +{"$label":"ACTS_IN","name":"Guarijo","type":"Role","_key":"41522","_from":"1373","_to":"27891"} +{"$label":"ACTS_IN","name":"Juan Abreu","type":"Role","_key":"35513","_from":"1373","_to":"24144"} +{"$label":"ACTS_IN","name":"Sheriff Eddie Morales","type":"Role","_key":"5535","_from":"1373","_to":"4716"} +{"$label":"ACTS_IN","name":"Consuela","type":"Role","_key":"96857","_from":"1374","_to":"56940"} +{"$label":"ACTS_IN","name":"Gilbert Catena","type":"Role","_key":"69127","_from":"1375","_to":"42291"} +{"$label":"ACTS_IN","name":"Leo Sullivan","type":"Role","_key":"58579","_from":"1375","_to":"37011"} +{"$label":"ACTS_IN","name":"GQ","type":"Role","_key":"52636","_from":"1375","_to":"34193"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"15734","_from":"1375","_to":"11989"} +{"$label":"ACTS_IN","name":"Nicky Zero","type":"Role","_key":"14240","_from":"1375","_to":"10992"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"117305","_from":"1376","_to":"68994"} +{"$label":"ACTS_IN","name":"Little John","type":"Role","_key":"113747","_from":"1376","_to":"67029"} +{"$label":"ACTS_IN","name":"Scudder","type":"Role","_key":"110337","_from":"1376","_to":"65199"} +{"$label":"ACTS_IN","name":"James 'Tish' Corbitt","type":"Role","_key":"103521","_from":"1376","_to":"60901"} +{"$label":"ACTS_IN","name":"Reg","type":"Role","_key":"67929","_from":"1376","_to":"41735"} +{"$label":"ACTS_IN","name":"Inspector Lestrade","type":"Role","_key":"63867","_from":"1376","_to":"39907"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"63716","_from":"1376","_to":"39839"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51657","_from":"1376","_to":"33701"} +{"$label":"ACTS_IN","name":"Josef Fischer","type":"Role","_key":"13500","_from":"1376","_to":"10508"} +{"$label":"ACTS_IN","name":"Etheridge","type":"Role","_key":"8777","_from":"1376","_to":"7114"} +{"$label":"ACTS_IN","name":"Reverend John","type":"Role","_key":"5831","_from":"1376","_to":"4954"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"2346","_from":"1376","_to":"2066"} +{"$label":"ACTS_IN","name":"Freddie Spearman","type":"Role","_key":"35320","_from":"1377","_to":"24057"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"33096","_from":"1377","_to":"22929"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"30384","_from":"1377","_to":"21367"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"28317","_from":"1377","_to":"20259"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"23845","_from":"1377","_to":"17287"} +{"$label":"ACTS_IN","name":"Richard Swersey","type":"Role","_key":"12875","_from":"1377","_to":"10047"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"88956","_from":"1378","_to":"52694"} +{"$label":"ACTS_IN","name":"Bobby Morrow (1982)","type":"Role","_key":"118147","_from":"1380","_to":"69442"} +{"$label":"ACTS_IN","name":"Lehiff","type":"Role","_key":"110606","_from":"1380","_to":"65352"} +{"$label":"ACTS_IN","name":"Jesse James","type":"Role","_key":"94818","_from":"1380","_to":"55841"} +{"$label":"ACTS_IN","name":"Jimmy Eagan","type":"Role","_key":"93012","_from":"1380","_to":"54836"} +{"$label":"ACTS_IN","name":"Alec","type":"Role","_key":"89830","_from":"1380","_to":"53152"} +{"$label":"ACTS_IN","name":"Captain Smith","type":"Role","_key":"69623","_from":"1380","_to":"42500"} +{"$label":"ACTS_IN","name":"Pvt. Roland Bozz","type":"Role","_key":"65059","_from":"1380","_to":"40427"} +{"$label":"ACTS_IN","name":"Tattooed Boy","type":"Role","_key":"64706","_from":"1380","_to":"40293"} +{"$label":"ACTS_IN","name":"Lt. Thomas W. Hart","type":"Role","_key":"64345","_from":"1380","_to":"40107"} +{"$label":"ACTS_IN","name":"Bullseye","type":"Role","_key":"54130","_from":"1380","_to":"34788"} +{"$label":"ACTS_IN","name":"Jim Street","type":"Role","_key":"52638","_from":"1380","_to":"34193"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"49009","_from":"1380","_to":"32124"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"47899","_from":"1380","_to":"31515"} +{"$label":"ACTS_IN","name":"Terry Blaine","type":"Role","_key":"33992","_from":"1380","_to":"23390"} +{"$label":"ACTS_IN","name":"Arturo Bandini","type":"Role","_key":"17060","_from":"1380","_to":"12792"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"17059","_from":"1380","_to":"12778"} +{"$label":"ACTS_IN","name":"Stu Shepard","type":"Role","_key":"15728","_from":"1380","_to":"11989"} +{"$label":"ACTS_IN","name":"James Douglas Clayton","type":"Role","_key":"14634","_from":"1380","_to":"11274"} +{"$label":"ACTS_IN","name":"Danny Witwer","type":"Role","_key":"2767","_from":"1380","_to":"2396"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"1616","_from":"1385","_to":"1381"} +{"$label":"ACTS_IN","name":"Daniel Kintner","type":"Role","_key":"1615","_from":"1384","_to":"1381"} +{"$label":"ACTS_IN","name":"Susan Watkins","type":"Role","_key":"1614","_from":"1383","_to":"1381"} +{"$label":"DIRECTED","_key":"1613","_from":"1382","_to":"1381"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"111865","_from":"1383","_to":"66040"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"13446","_from":"1385","_to":"10458"} +{"$label":"ACTS_IN","name":"Major Eaton","type":"Role","_key":"1628","_from":"1396","_to":"1387"} +{"$label":"ACTS_IN","name":"Col. Musgrove","type":"Role","_key":"1627","_from":"1395","_to":"1387"} +{"$label":"ACTS_IN","name":"Barranca \/ Monkey Man","type":"Role","_key":"1626","_from":"1394","_to":"1387"} +{"$label":"ACTS_IN","name":"Gobler","type":"Role","_key":"1625","_from":"1393","_to":"1387"} +{"$label":"ACTS_IN","name":"Colonel Dietrich","type":"Role","_key":"1624","_from":"1392","_to":"1387"} +{"$label":"ACTS_IN","name":"Dr. Marcus Brody","type":"Role","_key":"1623","_from":"1391","_to":"1387"} +{"$label":"ACTS_IN","name":"Major Toht","type":"Role","_key":"1621","_from":"1390","_to":"1387"} +{"$label":"ACTS_IN","name":"Dr. Rene Belloq","type":"Role","_key":"1620","_from":"1389","_to":"1387"} +{"$label":"ACTS_IN","name":"Marion Ravenwood","type":"Role","_key":"1619","_from":"1388","_to":"1387"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"70447","_from":"1388","_to":"42885"} +{"$label":"ACTS_IN","name":"Jenny Hayden","type":"Role","_key":"55383","_from":"1388","_to":"35308"} +{"$label":"ACTS_IN","name":"Claire Phillips","type":"Role","_key":"55261","_from":"1388","_to":"35245"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"49983","_from":"1388","_to":"32712"} +{"$label":"ACTS_IN","name":"Melissa Brown","type":"Role","_key":"18556","_from":"1388","_to":"13731"} +{"$label":"ACTS_IN","name":"Marla Keyes","type":"Role","_key":"17348","_from":"1388","_to":"12977"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"3363","_from":"1388","_to":"2876"} +{"$label":"ACTS_IN","name":"Marion Ravenwood","type":"Role","_key":"3125","_from":"1388","_to":"2678"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"101838","_from":"1389","_to":"59937"} +{"$label":"ACTS_IN","name":"Goldsmythe","type":"Role","_key":"53673","_from":"1389","_to":"34619"} +{"$label":"ACTS_IN","name":"Rev. Philip Shooter","type":"Role","_key":"33113","_from":"1389","_to":"22937"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"22402","_from":"1389","_to":"16258"} +{"$label":"ACTS_IN","name":"Cardinal","type":"Role","_key":"91473","_from":"1390","_to":"53933"} +{"$label":"ACTS_IN","name":"Colonel Pulleine","type":"Role","_key":"114792","_from":"1391","_to":"67615"} +{"$label":"ACTS_IN","name":"Morell","type":"Role","_key":"110490","_from":"1391","_to":"65277"} +{"$label":"ACTS_IN","name":"Mr. Emerson","type":"Role","_key":"68833","_from":"1391","_to":"42174"} +{"$label":"ACTS_IN","name":"George Devlin","type":"Role","_key":"25056","_from":"1391","_to":"18100"} +{"$label":"ACTS_IN","name":"Coleman","type":"Role","_key":"14376","_from":"1391","_to":"11121"} +{"$label":"ACTS_IN","name":"Dr. Marcus Brody","type":"Role","_key":"1709","_from":"1391","_to":"1473"} +{"$label":"ACTS_IN","name":"Trompeta","type":"Role","_key":"120801","_from":"1392","_to":"70946"} +{"$label":"ACTS_IN","name":"Kaiser Wilhelm II","type":"Role","_key":"71792","_from":"1392","_to":"43448"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"33536","_from":"1392","_to":"23182"} +{"$label":"ACTS_IN","name":"Geoffrey Wharton","type":"Role","_key":"111072","_from":"1393","_to":"65605"} +{"$label":"ACTS_IN","name":"Professor Rathe","type":"Role","_key":"72674","_from":"1393","_to":"43797"} +{"$label":"ACTS_IN","name":"Mr. Neville","type":"Role","_key":"66045","_from":"1393","_to":"40873"} +{"$label":"ACTS_IN","name":"Christian Hanover","type":"Role","_key":"52077","_from":"1393","_to":"33954"} +{"$label":"ACTS_IN","name":"Korah","type":"Role","_key":"22986","_from":"1393","_to":"16666"} +{"$label":"ACTS_IN","name":"Mr Ryley","type":"Role","_key":"120531","_from":"1395","_to":"70790"} +{"$label":"ACTS_IN","name":"Chuck Malarek","type":"Role","_key":"106947","_from":"1396","_to":"63051"} +{"$label":"ACTS_IN","name":"Commander Hunt (voice)","type":"Role","_key":"101952","_from":"1396","_to":"59995"} +{"$label":"ACTS_IN","name":"Lincoln Wineberg Jr.","type":"Role","_key":"69061","_from":"1396","_to":"42267"} +{"$label":"ACTS_IN","name":"John Carpenter","type":"Role","_key":"15092","_from":"1396","_to":"11588"} +{"$label":"ACTS_IN","name":"Eckhardt","type":"Role","_key":"3828","_from":"1396","_to":"3276"} +{"$label":"ACTS_IN","name":"Forscher 4","type":"Role","_key":"1663","_from":"1430","_to":"1397"} +{"$label":"ACTS_IN","name":"Forscher 3","type":"Role","_key":"1662","_from":"1429","_to":"1397"} +{"$label":"ACTS_IN","name":"Forscher 2","type":"Role","_key":"1661","_from":"1428","_to":"1397"} +{"$label":"ACTS_IN","name":"Forscher 1","type":"Role","_key":"1660","_from":"1427","_to":"1397"} +{"$label":"ACTS_IN","name":"Christoffersen","type":"Role","_key":"1659","_from":"1426","_to":"1397"} +{"$label":"ACTS_IN","name":"Mann in Plattenbausiedlung","type":"Role","_key":"1658","_from":"1425","_to":"1397"} +{"$label":"ACTS_IN","name":"Swingerclub-Frau","type":"Role","_key":"1657","_from":"1424","_to":"1397"} +{"$label":"ACTS_IN","name":"Swingerclub-Kerl","type":"Role","_key":"1656","_from":"1423","_to":"1397"} +{"$label":"ACTS_IN","name":"Kursleiter","type":"Role","_key":"1655","_from":"1422","_to":"1397"} +{"$label":"ACTS_IN","name":"Krankenhausarzt","type":"Role","_key":"1654","_from":"1421","_to":"1397"} +{"$label":"ACTS_IN","name":"Kates Lover","type":"Role","_key":"1653","_from":"1420","_to":"1397"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"1652","_from":"1419","_to":"1397"} +{"$label":"ACTS_IN","name":"Hippiefrau","type":"Role","_key":"1651","_from":"1418","_to":"1397"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"1650","_from":"1417","_to":"1397"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"1649","_from":"1416","_to":"1397"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"1648","_from":"1415","_to":"1397"} +{"$label":"ACTS_IN","name":"Hannelore","type":"Role","_key":"1647","_from":"1414","_to":"1397"} +{"$label":"ACTS_IN","name":"Sollers","type":"Role","_key":"1646","_from":"1413","_to":"1397"} +{"$label":"ACTS_IN","name":"Annabelle's Mother","type":"Role","_key":"1645","_from":"1412","_to":"1397"} +{"$label":"ACTS_IN","name":"Professor Fleisser","type":"Role","_key":"1644","_from":"1411","_to":"1397"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"1643","_from":"1410","_to":"1397"} +{"$label":"ACTS_IN","name":"Annabelle's Father","type":"Role","_key":"1642","_from":"1409","_to":"1397"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"1641","_from":"1408","_to":"1397"} +{"$label":"ACTS_IN","name":"Michael Young","type":"Role","_key":"1640","_from":"1407","_to":"1397"} +{"$label":"ACTS_IN","name":"Yogini","type":"Role","_key":"1639","_from":"1406","_to":"1397"} +{"$label":"ACTS_IN","name":"Bruno's Father","type":"Role","_key":"1638","_from":"1405","_to":"1397"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"1637","_from":"1404","_to":"1397"} +{"$label":"ACTS_IN","name":"Dr. Sch\u00e4fer","type":"Role","_key":"1636","_from":"1403","_to":"1397"} +{"$label":"ACTS_IN","name":"Annabelle","type":"Role","_key":"1635","_from":"1402","_to":"1397"} +{"$label":"ACTS_IN","name":"Christiane","type":"Role","_key":"1634","_from":"1401","_to":"1397"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"1633","_from":"1400","_to":"1397"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"1632","_from":"1399","_to":"1397"} +{"$label":"DIRECTED","_key":"1631","_from":"1398","_to":"1397"} +{"$label":"DIRECTED","_key":"69451","_from":"1398","_to":"42439"} +{"$label":"DIRECTED","_key":"65225","_from":"1398","_to":"40498"} +{"$label":"DIRECTED","_key":"63702","_from":"1398","_to":"39834"} +{"$label":"DIRECTED","_key":"51312","_from":"1398","_to":"33466"} +{"$label":"DIRECTED","_key":"16671","_from":"1398","_to":"12585"} +{"$label":"ACTS_IN","name":"Wieland Schwarz","type":"Role","_key":"55681","_from":"1399","_to":"35440"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"36525","_from":"1399","_to":"24772"} +{"$label":"ACTS_IN","name":"Herr Lehmann","type":"Role","_key":"30971","_from":"1399","_to":"21698"} +{"$label":"ACTS_IN","name":"Paul Bruhn","type":"Role","_key":"16558","_from":"1399","_to":"12511"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"117757","_from":"1400","_to":"69222"} +{"$label":"ACTS_IN","name":"Emek Yoglu","type":"Role","_key":"93600","_from":"1400","_to":"55116"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"71508","_from":"1400","_to":"43336"} +{"$label":"ACTS_IN","name":"Giancarlo","type":"Role","_key":"71141","_from":"1400","_to":"43182"} +{"$label":"ACTS_IN","name":"Nasreddin","type":"Role","_key":"64170","_from":"1400","_to":"40040"} +{"$label":"ACTS_IN","name":"Tristan","type":"Role","_key":"53751","_from":"1400","_to":"34650"} +{"$label":"ACTS_IN","name":"Valentin","type":"Role","_key":"51892","_from":"1400","_to":"33851"} +{"$label":"ACTS_IN","name":"Karl Heinrich","type":"Role","_key":"48621","_from":"1400","_to":"31888"} +{"$label":"ACTS_IN","name":"Brownie","type":"Role","_key":"47981","_from":"1400","_to":"31568"} +{"$label":"ACTS_IN","name":"Y\u00fcksel","type":"Role","_key":"46830","_from":"1400","_to":"30889"} +{"$label":"ACTS_IN","name":"Andreas Baader","type":"Role","_key":"45432","_from":"1400","_to":"30115"} +{"$label":"ACTS_IN","name":"Daniel Bannier","type":"Role","_key":"28650","_from":"1400","_to":"20478"} +{"$label":"ACTS_IN","name":"Ferzan","type":"Role","_key":"20666","_from":"1400","_to":"15110"} +{"$label":"ACTS_IN","name":"Hans-J\u00f6rg Tschirner","type":"Role","_key":"16672","_from":"1400","_to":"12585"} +{"$label":"ACTS_IN","name":"Rainer","type":"Role","_key":"16517","_from":"1400","_to":"12477"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"14014","_from":"1400","_to":"10867"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"7251","_from":"1400","_to":"6053"} +{"$label":"ACTS_IN","name":"Tarek Fahd, H\u00e4ftling Nr. 77","type":"Role","_key":"6850","_from":"1400","_to":"5751"} +{"$label":"ACTS_IN","name":"Mimi Nachtigal","type":"Role","_key":"5270","_from":"1400","_to":"4473"} +{"$label":"ACTS_IN","name":"Abdul","type":"Role","_key":"2440","_from":"1400","_to":"2141"} +{"$label":"ACTS_IN","name":"Manni","type":"Role","_key":"1873","_from":"1400","_to":"1628"} +{"$label":"ACTS_IN","name":"Sabine Kirsch","type":"Role","_key":"71506","_from":"1401","_to":"43336"} +{"$label":"ACTS_IN","name":"Clara Schumann","type":"Role","_key":"51332","_from":"1401","_to":"33476"} +{"$label":"ACTS_IN","name":"Ulrike Meinhof","type":"Role","_key":"45431","_from":"1401","_to":"30115"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"36150","_from":"1401","_to":"24525"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"36141","_from":"1401","_to":"24523"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"36130","_from":"1401","_to":"24515"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"35527","_from":"1401","_to":"24156"} +{"$label":"ACTS_IN","name":"Martha Klein","type":"Role","_key":"28407","_from":"1401","_to":"20322"} +{"$label":"ACTS_IN","name":"Hanna Schiller","type":"Role","_key":"12210","_from":"1401","_to":"9562"} +{"$label":"ACTS_IN","name":"Christa-Maria Sieland","type":"Role","_key":"6967","_from":"1401","_to":"5846"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"5379","_from":"1401","_to":"4567"} +{"$label":"ACTS_IN","name":"Jutta","type":"Role","_key":"2467","_from":"1401","_to":"2165"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"102255","_from":"1402","_to":"60171"} +{"$label":"ACTS_IN","name":"Vera Less","type":"Role","_key":"101444","_from":"1402","_to":"59717"} +{"$label":"ACTS_IN","name":"Elfie Bauer","type":"Role","_key":"89268","_from":"1402","_to":"52852"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"53655","_from":"1402","_to":"34607"} +{"$label":"ACTS_IN","name":"Simone 'Sissi' Schmidt","type":"Role","_key":"52993","_from":"1402","_to":"34328"} +{"$label":"ACTS_IN","name":"Mona Wendt","type":"Role","_key":"50184","_from":"1402","_to":"32809"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"50164","_from":"1402","_to":"32800"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"50145","_from":"1402","_to":"32793"} +{"$label":"ACTS_IN","name":"Siri Sellin","type":"Role","_key":"47170","_from":"1402","_to":"31101"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"30780","_from":"1402","_to":"21582"} +{"$label":"ACTS_IN","name":"Barbara Buckley","type":"Role","_key":"29707","_from":"1402","_to":"21034"} +{"$label":"ACTS_IN","name":"Trixie Boudain","type":"Role","_key":"25885","_from":"1402","_to":"18633"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"21725","_from":"1402","_to":"15871"} +{"$label":"ACTS_IN","name":"Marie Helena Kreutz","type":"Role","_key":"21713","_from":"1402","_to":"15869"} +{"$label":"ACTS_IN","name":"Paula Henning","type":"Role","_key":"15053","_from":"1402","_to":"11571"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"15031","_from":"1402","_to":"11560"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"1872","_from":"1402","_to":"1628"} +{"$label":"ACTS_IN","name":"Frau Hermann","type":"Role","_key":"91031","_from":"1403","_to":"53710"} +{"$label":"ACTS_IN","name":"Frau Dobbs","type":"Role","_key":"88226","_from":"1403","_to":"52345"} +{"$label":"ACTS_IN","name":"Sabine Kroeger","type":"Role","_key":"66352","_from":"1403","_to":"41038"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"65968","_from":"1403","_to":"40807"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"62876","_from":"1403","_to":"39506"} +{"$label":"ACTS_IN","name":"Anna Weller","type":"Role","_key":"61787","_from":"1403","_to":"38898"} +{"$label":"ACTS_IN","name":"Cora Dulz","type":"Role","_key":"56449","_from":"1403","_to":"35868"} +{"$label":"ACTS_IN","name":"Bettina Moll","type":"Role","_key":"54327","_from":"1403","_to":"34864"} +{"$label":"ACTS_IN","name":"Rabia","type":"Role","_key":"52651","_from":"1403","_to":"34197"} +{"$label":"ACTS_IN","name":". \tMaria","type":"Role","_key":"51894","_from":"1403","_to":"33851"} +{"$label":"ACTS_IN","name":"Eliane Richter","type":"Role","_key":"51322","_from":"1403","_to":"33469"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"44791","_from":"1403","_to":"29799"} +{"$label":"ACTS_IN","name":"Maria Rheine","type":"Role","_key":"37976","_from":"1403","_to":"25714"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"37305","_from":"1403","_to":"25277"} +{"$label":"ACTS_IN","name":"Vera Br\u00fchne","type":"Role","_key":"31132","_from":"1403","_to":"21794"} +{"$label":"ACTS_IN","name":"Madame Arnulfi","type":"Role","_key":"13216","_from":"1403","_to":"10287"} +{"$label":"ACTS_IN","name":"Magda Goebbels","type":"Role","_key":"7262","_from":"1403","_to":"6064"} +{"$label":"ACTS_IN","name":"Krankenschwester Station B","type":"Role","_key":"2452","_from":"1403","_to":"2141"} +{"$label":"ACTS_IN","name":"Anonyma","type":"Role","_key":"91778","_from":"1404","_to":"54145"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"88382","_from":"1404","_to":"52391"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51328","_from":"1404","_to":"33471"} +{"$label":"ACTS_IN","name":"Carola Lehmann","type":"Role","_key":"45425","_from":"1404","_to":"30110"} +{"$label":"ACTS_IN","name":"Rosemarie Nitribitt","type":"Role","_key":"31381","_from":"1404","_to":"21938"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"30393","_from":"1404","_to":"21376"} +{"$label":"ACTS_IN","name":"Yella","type":"Role","_key":"25181","_from":"1404","_to":"18179"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"15398","_from":"1404","_to":"11776"} +{"$label":"ACTS_IN","name":"Susis Vater","type":"Role","_key":"108437","_from":"1405","_to":"64105"} +{"$label":"ACTS_IN","name":"Franz Berger","type":"Role","_key":"70718","_from":"1405","_to":"43009"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"70154","_from":"1405","_to":"42763"} +{"$label":"ACTS_IN","name":"Maxis Vater","type":"Role","_key":"65492","_from":"1405","_to":"40600"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"63732","_from":"1405","_to":"39849"} +{"$label":"ACTS_IN","name":"Archie","type":"Role","_key":"51833","_from":"1405","_to":"33824"} +{"$label":"ACTS_IN","name":"Bodo","type":"Role","_key":"50173","_from":"1405","_to":"32800"} +{"$label":"ACTS_IN","name":"Pilgrim","type":"Role","_key":"46827","_from":"1405","_to":"30889"} +{"$label":"ACTS_IN","name":"Uwe R\u00fchle","type":"Role","_key":"44268","_from":"1405","_to":"29501"} +{"$label":"ACTS_IN","name":"Prof. Dr. Fritz Knobel","type":"Role","_key":"44009","_from":"1405","_to":"29357"} +{"$label":"ACTS_IN","name":"Leo X","type":"Role","_key":"38409","_from":"1405","_to":"25944"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"37105","_from":"1405","_to":"25144"} +{"$label":"ACTS_IN","name":"Werner M\u00fcller","type":"Role","_key":"32973","_from":"1405","_to":"22862"} +{"$label":"ACTS_IN","name":"Johann \" Hans \" Ferbach","type":"Role","_key":"31133","_from":"1405","_to":"21794"} +{"$label":"ACTS_IN","name":"Hans Pollak","type":"Role","_key":"14287","_from":"1405","_to":"11055"} +{"$label":"ACTS_IN","name":"Stilgar","type":"Role","_key":"10423","_from":"1405","_to":"8289"} +{"$label":"ACTS_IN","name":"Theo Stokowski","type":"Role","_key":"5272","_from":"1405","_to":"4473"} +{"$label":"ACTS_IN","name":"Bosun","type":"Role","_key":"4947","_from":"1405","_to":"4213"} +{"$label":"ACTS_IN","name":"Carla Sperling","type":"Role","_key":"72483","_from":"1406","_to":"43734"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"70420","_from":"1406","_to":"42879"} +{"$label":"ACTS_IN","name":"Johanna 'Jo'","type":"Role","_key":"67694","_from":"1406","_to":"41636"} +{"$label":"ACTS_IN","name":"Billie","type":"Role","_key":"64089","_from":"1406","_to":"39999"} +{"$label":"ACTS_IN","name":"Meret","type":"Role","_key":"63701","_from":"1406","_to":"39834"} +{"$label":"ACTS_IN","name":"G\u00fcnes","type":"Role","_key":"43500","_from":"1406","_to":"29052"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"35529","_from":"1406","_to":"24156"} +{"$label":"ACTS_IN","name":"Ayse","type":"Role","_key":"12535","_from":"1406","_to":"9814"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"60387","_from":"1407","_to":"38093"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"55673","_from":"1407","_to":"35440"} +{"$label":"ACTS_IN","name":"Albrecht Stein","type":"Role","_key":"53577","_from":"1407","_to":"34579"} +{"$label":"ACTS_IN","name":"Janosch Schwarze","type":"Role","_key":"53445","_from":"1407","_to":"34531"} +{"$label":"ACTS_IN","name":"Dannie","type":"Role","_key":"50189","_from":"1407","_to":"32809"} +{"$label":"ACTS_IN","name":"Krischl","type":"Role","_key":"37108","_from":"1407","_to":"25144"} +{"$label":"ACTS_IN","name":"Bennie","type":"Role","_key":"30475","_from":"1407","_to":"21421"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"20846","_from":"1407","_to":"15252"} +{"$label":"ACTS_IN","name":"Ralf Tschirner","type":"Role","_key":"16676","_from":"1407","_to":"12585"} +{"$label":"ACTS_IN","name":"Birte","type":"Role","_key":"97513","_from":"1408","_to":"57421"} +{"$label":"ACTS_IN","name":"Maischa","type":"Role","_key":"63176","_from":"1408","_to":"39627"} +{"$label":"ACTS_IN","name":"Dr. Christiane Tietz","type":"Role","_key":"12336","_from":"1408","_to":"9662"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"3844","_from":"1408","_to":"3292"} +{"$label":"ACTS_IN","name":"Opa Heinrich","type":"Role","_key":"90302","_from":"1409","_to":"53382"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44382","_from":"1409","_to":"29567"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"13200","_from":"1409","_to":"10283"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"66596","_from":"1410","_to":"41168"} +{"$label":"ACTS_IN","name":"Janin","type":"Role","_key":"52014","_from":"1410","_to":"33911"} +{"$label":"ACTS_IN","name":"Karo","type":"Role","_key":"47252","_from":"1410","_to":"31136"} +{"$label":"ACTS_IN","name":"Meike","type":"Role","_key":"46749","_from":"1410","_to":"30844"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"108436","_from":"1411","_to":"64105"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"69847","_from":"1411","_to":"42623"} +{"$label":"ACTS_IN","name":"Erwin","type":"Role","_key":"69264","_from":"1411","_to":"42350"} +{"$label":"ACTS_IN","name":"Joachim","type":"Role","_key":"63700","_from":"1411","_to":"39834"} +{"$label":"ACTS_IN","name":"Mr. B","type":"Role","_key":"50908","_from":"1411","_to":"33222"} +{"$label":"ACTS_IN","name":"Herbert","type":"Role","_key":"46449","_from":"1411","_to":"30681"} +{"$label":"ACTS_IN","name":"Benno","type":"Role","_key":"42913","_from":"1411","_to":"28680"} +{"$label":"ACTS_IN","name":"Bahnangestellter","type":"Role","_key":"42374","_from":"1411","_to":"28358"} +{"$label":"ACTS_IN","name":"Dietrich","type":"Role","_key":"39557","_from":"1411","_to":"26731"} +{"$label":"ACTS_IN","name":"Pew","type":"Role","_key":"38315","_from":"1411","_to":"25875"} +{"$label":"ACTS_IN","name":"Mario Montegasso","type":"Role","_key":"37978","_from":"1411","_to":"25714"} +{"$label":"ACTS_IN","name":"Martin Birkhoff","type":"Role","_key":"31920","_from":"1411","_to":"22264"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"30983","_from":"1411","_to":"21698"} +{"$label":"ACTS_IN","name":"Filmvorf\u00fchrer","type":"Role","_key":"30478","_from":"1411","_to":"21421"} +{"$label":"ACTS_IN","name":"Klapprath","type":"Role","_key":"4641","_from":"1411","_to":"3954"} +{"$label":"ACTS_IN","name":"Agnes Prochaska","type":"Role","_key":"58957","_from":"1412","_to":"37225"} +{"$label":"ACTS_IN","name":"Lasers Mutter","type":"Role","_key":"50193","_from":"1412","_to":"32809"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"36530","_from":"1412","_to":"24772"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"32978","_from":"1412","_to":"22862"} +{"$label":"ACTS_IN","name":"Christa Rohloff","type":"Role","_key":"31506","_from":"1412","_to":"22008"} +{"$label":"ACTS_IN","name":"Frederike M\u00f6ll","type":"Role","_key":"18981","_from":"1412","_to":"14031"} +{"$label":"ACTS_IN","name":"Giselher","type":"Role","_key":"97511","_from":"1413","_to":"57421"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Ludwig Lewerenz","type":"Role","_key":"72951","_from":"1413","_to":"43917"} +{"$label":"ACTS_IN","name":"Kamphausen","type":"Role","_key":"67908","_from":"1413","_to":"41723"} +{"$label":"ACTS_IN","name":"Rudolf Sieber","type":"Role","_key":"63103","_from":"1413","_to":"39589"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"62875","_from":"1413","_to":"39506"} +{"$label":"ACTS_IN","name":"Ralf Bischof","type":"Role","_key":"42552","_from":"1413","_to":"28483"} +{"$label":"ACTS_IN","name":"Peter Frei","type":"Role","_key":"42537","_from":"1413","_to":"28476"} +{"$label":"ACTS_IN","name":"Ehemaliger","type":"Role","_key":"33784","_from":"1413","_to":"23287"} +{"$label":"ACTS_IN","name":"Karl Simon","type":"Role","_key":"32955","_from":"1413","_to":"22852"} +{"$label":"ACTS_IN","name":"Werner Tschirner","type":"Role","_key":"16674","_from":"1413","_to":"12585"} +{"$label":"ACTS_IN","name":"Professor M\u00fcller-LaRousse","type":"Role","_key":"15052","_from":"1413","_to":"11571"} +{"$label":"ACTS_IN","name":"Gregor Hessenstein","type":"Role","_key":"6977","_from":"1413","_to":"5846"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"5590","_from":"1413","_to":"4754"} +{"$label":"ACTS_IN","name":"Lola's Father","type":"Role","_key":"1874","_from":"1413","_to":"1628"} +{"$label":"ACTS_IN","name":"Michael Mann","type":"Role","_key":"20017","_from":"1415","_to":"14724"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"90305","_from":"1416","_to":"53382"} +{"$label":"ACTS_IN","name":"Forster","type":"Role","_key":"66603","_from":"1416","_to":"41171"} +{"$label":"ACTS_IN","name":"Peter Graf Yorck v. Wartenburg","type":"Role","_key":"63123","_from":"1416","_to":"39591"} +{"$label":"ACTS_IN","name":"Reinhold","type":"Role","_key":"39716","_from":"1416","_to":"26834"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"4391","_from":"1416","_to":"3750"} +{"$label":"ACTS_IN","name":"Selina","type":"Role","_key":"68867","_from":"1417","_to":"42184"} +{"$label":"ACTS_IN","name":"Tante Hedy","type":"Role","_key":"69656","_from":"1418","_to":"42521"} +{"$label":"ACTS_IN","name":"Liselotte Petersen","type":"Role","_key":"37298","_from":"1418","_to":"25274"} +{"$label":"ACTS_IN","name":"Rainer","type":"Role","_key":"91677","_from":"1420","_to":"54072"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"43030","_from":"1420","_to":"28738"} +{"$label":"ACTS_IN","name":"Dr. Lucas","type":"Role","_key":"60347","_from":"1421","_to":"38062"} +{"$label":"ACTS_IN","name":"Jerome","type":"Role","_key":"27933","_from":"1421","_to":"20024"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"16685","_from":"1421","_to":"12585"} +{"$label":"ACTS_IN","name":"Horst Mahler","type":"Role","_key":"45435","_from":"1422","_to":"30115"} +{"$label":"ACTS_IN","name":"Jan Helsing","type":"Role","_key":"42958","_from":"1422","_to":"28701"} +{"$label":"ACTS_IN","name":"Bj\u00f6rn","type":"Role","_key":"34594","_from":"1426","_to":"23680"} +{"$label":"ACTS_IN","name":"K\u00fchne","type":"Role","_key":"47954","_from":"1429","_to":"31545"} +{"$label":"ACTS_IN","name":"Portier","type":"Role","_key":"42178","_from":"1429","_to":"28249"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"2879","_from":"1429","_to":"2468"} +{"$label":"ACTS_IN","name":"Simon Grombeck","type":"Role","_key":"55208","_from":"1430","_to":"35221"} +{"$label":"ACTS_IN","name":"Earl Weber","type":"Role","_key":"1677","_from":"1443","_to":"1431"} +{"$label":"ACTS_IN","name":"Chief Henchman","type":"Role","_key":"1676","_from":"1442","_to":"1431"} +{"$label":"ACTS_IN","name":"Maitre d'","type":"Role","_key":"1675","_from":"1441","_to":"1431"} +{"$label":"ACTS_IN","name":"Chen","type":"Role","_key":"1674","_from":"1440","_to":"1431"} +{"$label":"ACTS_IN","name":"Kao Kan","type":"Role","_key":"1673","_from":"1439","_to":"1431"} +{"$label":"ACTS_IN","name":"Wu Han","type":"Role","_key":"1672","_from":"1438","_to":"1431"} +{"$label":"ACTS_IN","name":"Lao Che","type":"Role","_key":"1671","_from":"1437","_to":"1431"} +{"$label":"ACTS_IN","name":"Captain Blumburtt","type":"Role","_key":"1670","_from":"1436","_to":"1431"} +{"$label":"ACTS_IN","name":"Chattar Lal","type":"Role","_key":"1669","_from":"1435","_to":"1431"} +{"$label":"ACTS_IN","name":"Mola Ram","type":"Role","_key":"1668","_from":"1434","_to":"1431"} +{"$label":"ACTS_IN","name":"Short Round","type":"Role","_key":"1667","_from":"1433","_to":"1431"} +{"$label":"ACTS_IN","name":"Wilhelmina \"Willie\" Scott","type":"Role","_key":"1666","_from":"1432","_to":"1431"} +{"$label":"ACTS_IN","name":"Andie Bergstrom","type":"Role","_key":"96231","_from":"1432","_to":"56559"} +{"$label":"ACTS_IN","name":"Laura Cooper","type":"Role","_key":"68626","_from":"1432","_to":"42068"} +{"$label":"ACTS_IN","name":"Laurie Armstrong","type":"Role","_key":"52340","_from":"1432","_to":"34070"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"29602","_from":"1432","_to":"20953"} +{"$label":"ACTS_IN","name":"Richard 'Data' Wang","type":"Role","_key":"53218","_from":"1433","_to":"34420"} +{"$label":"ACTS_IN","name":"Chaudhry Baldev Singh","type":"Role","_key":"120046","_from":"1434","_to":"70499"} +{"$label":"ACTS_IN","name":"Major General Khanna","type":"Role","_key":"70370","_from":"1434","_to":"42859"} +{"$label":"ACTS_IN","name":"Khan","type":"Role","_key":"9218","_from":"1434","_to":"7444"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"105856","_from":"1435","_to":"62311"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"68746","_from":"1435","_to":"42123"} +{"$label":"ACTS_IN","name":"Professor Bhandari","type":"Role","_key":"56635","_from":"1435","_to":"35969"} +{"$label":"ACTS_IN","name":"Houssein","type":"Role","_key":"54847","_from":"1435","_to":"35084"} +{"$label":"ACTS_IN","name":"Pandit Nehru","type":"Role","_key":"9213","_from":"1435","_to":"7444"} +{"$label":"ACTS_IN","name":"Mohan Rai","type":"Role","_key":"5897","_from":"1435","_to":"4997"} +{"$label":"ACTS_IN","name":"The Bishop","type":"Role","_key":"35667","_from":"1436","_to":"24239"} +{"$label":"ACTS_IN","name":"Jitro","type":"Role","_key":"22988","_from":"1436","_to":"16666"} +{"$label":"ACTS_IN","name":"Delbert Grady","type":"Role","_key":"8358","_from":"1436","_to":"6842"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"2821","_from":"1436","_to":"2429"} +{"$label":"ACTS_IN","name":"Chuck Lee","type":"Role","_key":"8540","_from":"1438","_to":"6961"} +{"$label":"ACTS_IN","name":"Mr. Kwai","type":"Role","_key":"29634","_from":"1439","_to":"20977"} +{"$label":"ACTS_IN","name":"Interrogator","type":"Role","_key":"8717","_from":"1439","_to":"7063"} +{"$label":"ACTS_IN","name":"Tanaka","type":"Role","_key":"93033","_from":"1442","_to":"54849"} +{"$label":"ACTS_IN","name":"Chinese Gunman","type":"Role","_key":"55090","_from":"1442","_to":"35180"} +{"$label":"ACTS_IN","name":"Crawford Gordon","type":"Role","_key":"120835","_from":"1443","_to":"70947"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"120262","_from":"1443","_to":"70619"} +{"$label":"ACTS_IN","name":"Capt. Tom Everett","type":"Role","_key":"116472","_from":"1443","_to":"68550"} +{"$label":"ACTS_IN","name":"President William Haney","type":"Role","_key":"113969","_from":"1443","_to":"67124"} +{"$label":"ACTS_IN","name":"Pete Wagner","type":"Role","_key":"111205","_from":"1443","_to":"65675"} +{"$label":"ACTS_IN","name":"Brian Thigh","type":"Role","_key":"108994","_from":"1443","_to":"64408"} +{"$label":"ACTS_IN","name":"Passenger\/Ambulance","type":"Role","_key":"103922","_from":"1443","_to":"61126"} +{"$label":"ACTS_IN","name":"Lord Monomark","type":"Role","_key":"103819","_from":"1443","_to":"61055"} +{"$label":"ACTS_IN","name":"Vic Frohmeyer","type":"Role","_key":"95816","_from":"1443","_to":"56354"} +{"$label":"ACTS_IN","name":"Mr. Vice President","type":"Role","_key":"93357","_from":"1443","_to":"54992"} +{"$label":"ACTS_IN","name":"Det. Ben Costikyan","type":"Role","_key":"90848","_from":"1443","_to":"53607"} +{"$label":"ACTS_IN","name":"Steven Mills","type":"Role","_key":"88139","_from":"1443","_to":"52301"} +{"$label":"ACTS_IN","name":"Judge Alvin 'J.P' Valkenheiser \/ Bobo","type":"Role","_key":"72818","_from":"1443","_to":"43870"} +{"$label":"ACTS_IN","name":"Elwood Blues","type":"Role","_key":"70728","_from":"1443","_to":"43013"} +{"$label":"ACTS_IN","name":"Sgt. Frank Tree","type":"Role","_key":"70375","_from":"1443","_to":"42868"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"69219","_from":"1443","_to":"42327"} +{"$label":"ACTS_IN","name":"Harry Sultenfuss","type":"Role","_key":"69095","_from":"1443","_to":"42283"} +{"$label":"ACTS_IN","name":"Mack Sennett","type":"Role","_key":"63339","_from":"1443","_to":"39698"} +{"$label":"ACTS_IN","name":"Sgt. Joe Friday","type":"Role","_key":"59524","_from":"1443","_to":"37581"} +{"$label":"ACTS_IN","name":"Beldar Conehead","type":"Role","_key":"55021","_from":"1443","_to":"35160"} +{"$label":"ACTS_IN","name":"Grocer","type":"Role","_key":"53833","_from":"1443","_to":"34677"} +{"$label":"ACTS_IN","name":"Governor Lewis","type":"Role","_key":"53603","_from":"1443","_to":"34589"} +{"$label":"ACTS_IN","name":"Colonel John T. Hall","type":"Role","_key":"52548","_from":"1443","_to":"34162"} +{"$label":"ACTS_IN","name":"Austin Millbarge","type":"Role","_key":"52442","_from":"1443","_to":"34119"} +{"$label":"ACTS_IN","name":"Chip","type":"Role","_key":"51485","_from":"1443","_to":"33574"} +{"$label":"ACTS_IN","name":"Harry Sultenfuss","type":"Role","_key":"29485","_from":"1443","_to":"20905"} +{"$label":"ACTS_IN","name":"Captain Phineas J. Tucker","type":"Role","_key":"27953","_from":"1443","_to":"20034"} +{"$label":"ACTS_IN","name":"Dr. Raymond Stantz","type":"Role","_key":"24633","_from":"1443","_to":"17819"} +{"$label":"ACTS_IN","name":"Chris Magruder","type":"Role","_key":"23503","_from":"1443","_to":"17030"} +{"$label":"ACTS_IN","name":"Roman Craig","type":"Role","_key":"22231","_from":"1443","_to":"16189"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"20396","_from":"1443","_to":"14934"} +{"$label":"ACTS_IN","name":"Dr. Keats","type":"Role","_key":"15764","_from":"1443","_to":"12007"} +{"$label":"ACTS_IN","name":"OPP Officer","type":"Role","_key":"15460","_from":"1443","_to":"11805"} +{"$label":"ACTS_IN","name":"Louis Winthorpe III","type":"Role","_key":"14374","_from":"1443","_to":"11121"} +{"$label":"ACTS_IN","name":"Capt. Thurman","type":"Role","_key":"8139","_from":"1443","_to":"6692"} +{"$label":"ACTS_IN","name":"Dr. Raymond Stantz","type":"Role","_key":"7364","_from":"1443","_to":"6141"} +{"$label":"ACTS_IN","name":"Elwood Blues (as Elwood)","type":"Role","_key":"6283","_from":"1443","_to":"5313"} +{"$label":"ACTS_IN","name":"Boolie Werthan","type":"Role","_key":"5111","_from":"1443","_to":"4339"} +{"$label":"DIRECTED","_key":"72827","_from":"1443","_to":"43870"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1705","_from":"1472","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1704","_from":"1471","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1703","_from":"1470","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1702","_from":"1469","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1701","_from":"1468","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1700","_from":"1467","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1699","_from":"1466","_to":"1444"} +{"$label":"ACTS_IN","name":"Dirty Dancer","type":"Role","_key":"1698","_from":"1465","_to":"1444"} +{"$label":"ACTS_IN","name":"Bus Boy","type":"Role","_key":"1697","_from":"1464","_to":"1444"} +{"$label":"ACTS_IN","name":"Staff Kid","type":"Role","_key":"1696","_from":"1463","_to":"1444"} +{"$label":"ACTS_IN","name":"Moe Pressman","type":"Role","_key":"1695","_from":"1462","_to":"1444"} +{"$label":"ACTS_IN","name":"Vivian Pressman","type":"Role","_key":"1694","_from":"1461","_to":"1444"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"1693","_from":"1460","_to":"1444"} +{"$label":"ACTS_IN","name":"Magician","type":"Role","_key":"1692","_from":"1459","_to":"1444"} +{"$label":"ACTS_IN","name":"Billy Kostecki","type":"Role","_key":"1691","_from":"1458","_to":"1444"} +{"$label":"ACTS_IN","name":"Tito Suarez","type":"Role","_key":"1690","_from":"1457","_to":"1444"} +{"$label":"ACTS_IN","name":"Mrs. Schumacher","type":"Role","_key":"1689","_from":"1456","_to":"1444"} +{"$label":"ACTS_IN","name":"Mr. Schumacher","type":"Role","_key":"1688","_from":"1455","_to":"1444"} +{"$label":"ACTS_IN","name":"Robbie Gould","type":"Role","_key":"1687","_from":"1454","_to":"1444"} +{"$label":"ACTS_IN","name":"Neil Kellerman","type":"Role","_key":"1686","_from":"1453","_to":"1444"} +{"$label":"ACTS_IN","name":"Marjorie Houseman","type":"Role","_key":"1685","_from":"1452","_to":"1444"} +{"$label":"ACTS_IN","name":"Lisa Houseman","type":"Role","_key":"1684","_from":"1451","_to":"1444"} +{"$label":"ACTS_IN","name":"Max Kellerman","type":"Role","_key":"1683","_from":"1450","_to":"1444"} +{"$label":"ACTS_IN","name":"Dr. Jake Houseman","type":"Role","_key":"1682","_from":"1449","_to":"1444"} +{"$label":"ACTS_IN","name":"Penny Johnson","type":"Role","_key":"1681","_from":"1448","_to":"1444"} +{"$label":"ACTS_IN","name":"Johnny Castle","type":"Role","_key":"1680","_from":"1447","_to":"1444"} +{"$label":"ACTS_IN","name":"Baby (Frances) Houseman","type":"Role","_key":"1679","_from":"1446","_to":"1444"} +{"$label":"DIRECTED","_key":"1678","_from":"1445","_to":"1444"} +{"$label":"DIRECTED","_key":"114347","_from":"1445","_to":"67357"} +{"$label":"DIRECTED","_key":"71154","_from":"1445","_to":"43189"} +{"$label":"DIRECTED","_key":"25384","_from":"1445","_to":"18305"} +{"$label":"DIRECTED","_key":"17408","_from":"1445","_to":"13020"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"102136","_from":"1446","_to":"60091"} +{"$label":"ACTS_IN","name":"Jeanie Bueller","type":"Role","_key":"53453","_from":"1446","_to":"34532"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"16232","_from":"1446","_to":"12315"} +{"$label":"ACTS_IN","name":"Jack Crews","type":"Role","_key":"115802","_from":"1447","_to":"68174"} +{"$label":"ACTS_IN","name":"Ben Clifton","type":"Role","_key":"114021","_from":"1447","_to":"67148"} +{"$label":"ACTS_IN","name":"Velvet Larry","type":"Role","_key":"113804","_from":"1447","_to":"67048"} +{"$label":"ACTS_IN","name":"Derek Sutton","type":"Role","_key":"112324","_from":"1447","_to":"66316"} +{"$label":"ACTS_IN","name":"Wayne Saunders","type":"Role","_key":"98486","_from":"1447","_to":"58035"} +{"$label":"ACTS_IN","name":"Allan Quatermain","type":"Role","_key":"89580","_from":"1447","_to":"53008"} +{"$label":"ACTS_IN","name":"Richard Pressburger","type":"Role","_key":"67860","_from":"1447","_to":"41695"} +{"$label":"ACTS_IN","name":"James Dalton","type":"Role","_key":"61148","_from":"1447","_to":"38646"} +{"$label":"ACTS_IN","name":"Kevin Scott","type":"Role","_key":"58674","_from":"1447","_to":"37064"} +{"$label":"ACTS_IN","name":"Cash","type":"Role","_key":"58377","_from":"1447","_to":"36888"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"55638","_from":"1447","_to":"35425"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"52835","_from":"1447","_to":"34252"} +{"$label":"ACTS_IN","name":"Vida Boheme","type":"Role","_key":"52498","_from":"1447","_to":"34147"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"37500","_from":"1447","_to":"25416"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"16227","_from":"1447","_to":"12315"} +{"$label":"ACTS_IN","name":"Bodhi","type":"Role","_key":"11920","_from":"1447","_to":"9350"} +{"$label":"ACTS_IN","name":"Sam Wheat","type":"Role","_key":"3623","_from":"1447","_to":"3100"} +{"$label":"ACTS_IN","name":"Darrel 'Darry' Curtis","type":"Role","_key":"3280","_from":"1447","_to":"2809"} +{"$label":"ACTS_IN","name":"Jim Cunningham","type":"Role","_key":"2241","_from":"1447","_to":"1972"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"65907","_from":"1448","_to":"40772"} +{"$label":"ACTS_IN","name":"Officer Karen Thompson","type":"Role","_key":"54322","_from":"1448","_to":"34862"} +{"$label":"ACTS_IN","name":"Michael Dayton","type":"Role","_key":"115258","_from":"1449","_to":"67870"} +{"$label":"ACTS_IN","name":"Capt Ronnie Donziger","type":"Role","_key":"99817","_from":"1449","_to":"58881"} +{"$label":"ACTS_IN","name":"Lumiere","type":"Role","_key":"93886","_from":"1449","_to":"55282"} +{"$label":"ACTS_IN","name":"Boyce","type":"Role","_key":"91462","_from":"1449","_to":"53932"} +{"$label":"ACTS_IN","name":"Jack Rosenthal","type":"Role","_key":"70684","_from":"1449","_to":"43000"} +{"$label":"ACTS_IN","name":"Lumiere (voice)","type":"Role","_key":"59510","_from":"1449","_to":"37572"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"27861","_from":"1449","_to":"19972"} +{"$label":"ACTS_IN","name":"George Stickel","type":"Role","_key":"121568","_from":"1450","_to":"71426"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"120772","_from":"1450","_to":"70939"} +{"$label":"ACTS_IN","name":"Struts","type":"Role","_key":"120562","_from":"1450","_to":"70809"} +{"$label":"ACTS_IN","name":"Joe Positano","type":"Role","_key":"120063","_from":"1450","_to":"70508"} +{"$label":"ACTS_IN","name":"Duke Best","type":"Role","_key":"97149","_from":"1450","_to":"57143"} +{"$label":"ACTS_IN","name":"Marty Freed","type":"Role","_key":"91128","_from":"1450","_to":"53764"} +{"$label":"ACTS_IN","name":"Oscar Baldwin","type":"Role","_key":"73038","_from":"1450","_to":"43957"} +{"$label":"ACTS_IN","name":"Det. Meyer Meyer","type":"Role","_key":"35351","_from":"1450","_to":"24069"} +{"$label":"ACTS_IN","name":"Erwin Weaver","type":"Role","_key":"10847","_from":"1450","_to":"8599"} +{"$label":"ACTS_IN","name":"Pig","type":"Role","_key":"10555","_from":"1450","_to":"8385"} +{"$label":"ACTS_IN","name":"Ray Stern","type":"Role","_key":"53661","_from":"1452","_to":"34610"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"72636","_from":"1453","_to":"43777"} +{"$label":"ACTS_IN","name":"Evil Emperor Zurg","type":"Role","_key":"107941","_from":"1460","_to":"63745"} +{"$label":"ACTS_IN","name":"Micro","type":"Role","_key":"92233","_from":"1460","_to":"54425"} +{"$label":"ACTS_IN","name":"Bob Lachman","type":"Role","_key":"62856","_from":"1460","_to":"39498"} +{"$label":"ACTS_IN","name":"Stan Podolak","type":"Role","_key":"20200","_from":"1460","_to":"14813"} +{"$label":"ACTS_IN","name":"Al the Toy Collector (voice)","type":"Role","_key":"10265","_from":"1460","_to":"8176"} +{"$label":"ACTS_IN","name":"Ed Grant","type":"Role","_key":"6901","_from":"1460","_to":"5792"} +{"$label":"ACTS_IN","name":"John Correli","type":"Role","_key":"5101","_from":"1460","_to":"4328"} +{"$label":"ACTS_IN","name":"Dennis Nedry","type":"Role","_key":"4512","_from":"1460","_to":"3842"} +{"$label":"ACTS_IN","name":"Tony Berrutti","type":"Role","_key":"11881","_from":"1462","_to":"9314"} +{"$label":"ACTS_IN","name":"Peter Pace","type":"Role","_key":"111669","_from":"1463","_to":"65929"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"66494","_from":"1463","_to":"41111"} +{"$label":"ACTS_IN","name":"Mrs. Donovan","type":"Role","_key":"1720","_from":"1484","_to":"1473"} +{"$label":"ACTS_IN","name":"Panama Hat","type":"Role","_key":"1719","_from":"1483","_to":"1473"} +{"$label":"ACTS_IN","name":"Sultan","type":"Role","_key":"1718","_from":"1482","_to":"1473"} +{"$label":"ACTS_IN","name":"Fedora","type":"Role","_key":"1717","_from":"1481","_to":"1473"} +{"$label":"ACTS_IN","name":"Grail Knight","type":"Role","_key":"1716","_from":"1480","_to":"1473"} +{"$label":"ACTS_IN","name":"Kazim","type":"Role","_key":"1715","_from":"1479","_to":"1473"} +{"$label":"ACTS_IN","name":"Vogel","type":"Role","_key":"1714","_from":"1478","_to":"1473"} +{"$label":"ACTS_IN","name":"Young Indy","type":"Role","_key":"1713","_from":"1477","_to":"1473"} +{"$label":"ACTS_IN","name":"Walter Donovan","type":"Role","_key":"1712","_from":"1476","_to":"1473"} +{"$label":"ACTS_IN","name":"Dr. Elsa Schneider","type":"Role","_key":"1710","_from":"1475","_to":"1473"} +{"$label":"ACTS_IN","name":"Professor Henry Jones","type":"Role","_key":"1708","_from":"1474","_to":"1473"} +{"$label":"ACTS_IN","name":"Michael McBride","type":"Role","_key":"117954","_from":"1474","_to":"69332"} +{"$label":"ACTS_IN","name":"Mulai Ahmed er Raisuli","type":"Role","_key":"101874","_from":"1474","_to":"59964"} +{"$label":"ACTS_IN","name":"Lt. Col. Alan Caldwell","type":"Role","_key":"72362","_from":"1474","_to":"43698"} +{"$label":"ACTS_IN","name":"Edward Pierce","type":"Role","_key":"70856","_from":"1474","_to":"43066"} +{"$label":"ACTS_IN","name":"Robin Hood","type":"Role","_key":"65786","_from":"1474","_to":"40718"} +{"$label":"ACTS_IN","name":"Jessie McMullen","type":"Role","_key":"64019","_from":"1474","_to":"39967"} +{"$label":"ACTS_IN","name":"O'Niel","type":"Role","_key":"63938","_from":"1474","_to":"39936"} +{"$label":"ACTS_IN","name":"Bartholomew 'Barley' Scott Blair","type":"Role","_key":"61390","_from":"1474","_to":"38729"} +{"$label":"ACTS_IN","name":"John Patrick Mason","type":"Role","_key":"56946","_from":"1474","_to":"36143"} +{"$label":"ACTS_IN","name":"Sir August de Wynter","type":"Role","_key":"53101","_from":"1474","_to":"34364"} +{"$label":"ACTS_IN","name":"Pvt. Flanagan","type":"Role","_key":"52898","_from":"1474","_to":"34285"} +{"$label":"ACTS_IN","name":"Dr. Robert Campbell","type":"Role","_key":"52528","_from":"1474","_to":"34154"} +{"$label":"ACTS_IN","name":"Paul Armstrong","type":"Role","_key":"52337","_from":"1474","_to":"34070"} +{"$label":"ACTS_IN","name":"Draco (voice)","type":"Role","_key":"51008","_from":"1474","_to":"33290"} +{"$label":"ACTS_IN","name":"Allan Quartermain","type":"Role","_key":"50535","_from":"1474","_to":"33007"} +{"$label":"ACTS_IN","name":"Roald Amundsen","type":"Role","_key":"47977","_from":"1474","_to":"31567"} +{"$label":"ACTS_IN","name":"Juan Sanchez Villa-Lobos Ramirez","type":"Role","_key":"47765","_from":"1474","_to":"31453"} +{"$label":"ACTS_IN","name":"Juan Sanchez Villa-Lobos Ramirez","type":"Role","_key":"47752","_from":"1474","_to":"31448"} +{"$label":"ACTS_IN","name":"Capt. John Connor","type":"Role","_key":"45629","_from":"1474","_to":"30210"} +{"$label":"ACTS_IN","name":"King Arthur","type":"Role","_key":"43868","_from":"1474","_to":"29295"} +{"$label":"ACTS_IN","name":"Maj. Gen. Robert E. Urquhart","type":"Role","_key":"40257","_from":"1474","_to":"27164"} +{"$label":"ACTS_IN","name":"Anthony Richmond","type":"Role","_key":"35487","_from":"1474","_to":"24135"} +{"$label":"ACTS_IN","name":"Zed","type":"Role","_key":"34788","_from":"1474","_to":"23775"} +{"$label":"ACTS_IN","name":"Colonel Arbuthnot","type":"Role","_key":"29906","_from":"1474","_to":"21143"} +{"$label":"ACTS_IN","name":"Robert MacDougal","type":"Role","_key":"15915","_from":"1474","_to":"12114"} +{"$label":"ACTS_IN","name":"Marko Ramius","type":"Role","_key":"14800","_from":"1474","_to":"11385"} +{"$label":"ACTS_IN","name":"Daniel Dravot","type":"Role","_key":"11618","_from":"1474","_to":"9125"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"9741","_from":"1474","_to":"7817"} +{"$label":"ACTS_IN","name":"William Forrester","type":"Role","_key":"8594","_from":"1474","_to":"6989"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8220","_from":"1474","_to":"6753"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7971","_from":"1474","_to":"6608"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7887","_from":"1474","_to":"6541"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7855","_from":"1474","_to":"6514"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7840","_from":"1474","_to":"6505"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7706","_from":"1474","_to":"6398"} +{"$label":"ACTS_IN","name":"Mark Rutland","type":"Role","_key":"6110","_from":"1474","_to":"5183"} +{"$label":"ACTS_IN","name":"William of Baskerville","type":"Role","_key":"2884","_from":"1474","_to":"2486"} +{"$label":"ACTS_IN","name":"Jim Malone","type":"Role","_key":"2029","_from":"1474","_to":"1772"} +{"$label":"ACTS_IN","name":"Elizabeth Maitland","type":"Role","_key":"89581","_from":"1475","_to":"53008"} +{"$label":"ACTS_IN","name":"Rebecca Flannery","type":"Role","_key":"67678","_from":"1475","_to":"41630"} +{"$label":"ACTS_IN","name":"80 year old Blind Man","type":"Role","_key":"57430","_from":"1476","_to":"36404"} +{"$label":"ACTS_IN","name":"Prince de Conde","type":"Role","_key":"45812","_from":"1476","_to":"30302"} +{"$label":"ACTS_IN","name":"Don Fortune","type":"Role","_key":"41300","_from":"1476","_to":"27765"} +{"$label":"ACTS_IN","name":"Joseph Haydn","type":"Role","_key":"37393","_from":"1476","_to":"25342"} +{"$label":"ACTS_IN","name":"Brian Harcourt-Smith","type":"Role","_key":"34764","_from":"1476","_to":"23765"} +{"$label":"ACTS_IN","name":"Imperial Force General Veers","type":"Role","_key":"16344","_from":"1476","_to":"12377"} +{"$label":"ACTS_IN","name":"Aristotle Kristatos","type":"Role","_key":"8422","_from":"1476","_to":"6879"} +{"$label":"ACTS_IN","name":"Danny Pope \/ Michael Manfield","type":"Role","_key":"115269","_from":"1477","_to":"67874"} +{"$label":"ACTS_IN","name":"Eddie Birdlace","type":"Role","_key":"101359","_from":"1477","_to":"59667"} +{"$label":"ACTS_IN","name":"Jeff Grant","type":"Role","_key":"89932","_from":"1477","_to":"53211"} +{"$label":"ACTS_IN","name":"Charlie Fox","type":"Role","_key":"67990","_from":"1477","_to":"41779"} +{"$label":"ACTS_IN","name":"Wolfgang M\u00fcller","type":"Role","_key":"57512","_from":"1477","_to":"36442"} +{"$label":"ACTS_IN","name":"Devo Nod","type":"Role","_key":"25927","_from":"1477","_to":"18645"} +{"$label":"ACTS_IN","name":"Carl Arbegast","type":"Role","_key":"20398","_from":"1477","_to":"14934"} +{"$label":"ACTS_IN","name":"Mike Waters","type":"Role","_key":"5805","_from":"1477","_to":"4938"} +{"$label":"ACTS_IN","name":"Chris Chambers","type":"Role","_key":"3390","_from":"1477","_to":"2903"} +{"$label":"ACTS_IN","name":"Captain Keene","type":"Role","_key":"120212","_from":"1478","_to":"70594"} +{"$label":"ACTS_IN","name":"Schroeder","type":"Role","_key":"111949","_from":"1478","_to":"66083"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"102810","_from":"1478","_to":"60475"} +{"$label":"ACTS_IN","name":"Dr. Andretti","type":"Role","_key":"43609","_from":"1478","_to":"29123"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"34711","_from":"1479","_to":"23739"} +{"$label":"ACTS_IN","name":"Zavros","type":"Role","_key":"27217","_from":"1479","_to":"19565"} +{"$label":"ACTS_IN","name":"Achmed","type":"Role","_key":"121022","_from":"1482","_to":"71078"} +{"$label":"ACTS_IN","name":"Mike Foster","type":"Role","_key":"28567","_from":"1483","_to":"20420"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"1737","_from":"1501","_to":"1485"} +{"$label":"ACTS_IN","name":"Det. McCabe","type":"Role","_key":"1736","_from":"1500","_to":"1485"} +{"$label":"ACTS_IN","name":"Det. Foster","type":"Role","_key":"1735","_from":"1499","_to":"1485"} +{"$label":"ACTS_IN","name":"Insp. Douglas Todd","type":"Role","_key":"1734","_from":"1498","_to":"1485"} +{"$label":"ACTS_IN","name":"Police Chief Hubbard","type":"Role","_key":"1733","_from":"1497","_to":"1485"} +{"$label":"ACTS_IN","name":"Mikey Tandino","type":"Role","_key":"1732","_from":"1496","_to":"1485"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"1731","_from":"1495","_to":"1485"} +{"$label":"ACTS_IN","name":"Zack, Maitland's Thug","type":"Role","_key":"1730","_from":"1494","_to":"1485"} +{"$label":"ACTS_IN","name":"Victor Maitland","type":"Role","_key":"1729","_from":"1493","_to":"1485"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"1728","_from":"1492","_to":"1485"} +{"$label":"ACTS_IN","name":"Lt. Andrew Bogomil","type":"Role","_key":"1727","_from":"1491","_to":"1485"} +{"$label":"ACTS_IN","name":"Jeannette 'Jenny' Summers","type":"Role","_key":"1726","_from":"1490","_to":"1485"} +{"$label":"ACTS_IN","name":"Det. Sgt. John Taggart","type":"Role","_key":"1725","_from":"1489","_to":"1485"} +{"$label":"ACTS_IN","name":"Det. William 'Billy' Rosewood","type":"Role","_key":"1724","_from":"1488","_to":"1485"} +{"$label":"ACTS_IN","name":"Det. Axel Foley","type":"Role","_key":"1723","_from":"1487","_to":"1485"} +{"$label":"DIRECTED","_key":"1722","_from":"1486","_to":"1485"} +{"$label":"DIRECTED","_key":"54098","_from":"1486","_to":"34781"} +{"$label":"DIRECTED","_key":"52005","_from":"1486","_to":"33909"} +{"$label":"DIRECTED","_key":"47836","_from":"1486","_to":"31493"} +{"$label":"DIRECTED","_key":"4132","_from":"1486","_to":"3530"} +{"$label":"ACTS_IN","name":"Evan Danielson","type":"Role","_key":"120997","_from":"1487","_to":"71073"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111320","_from":"1487","_to":"65744"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"103701","_from":"1487","_to":"60996"} +{"$label":"ACTS_IN","name":"Donkey (voice)","type":"Role","_key":"94277","_from":"1487","_to":"55521"} +{"$label":"ACTS_IN","name":"Guido","type":"Role","_key":"88354","_from":"1487","_to":"52387"} +{"$label":"ACTS_IN","name":"various roles","type":"Role","_key":"88055","_from":"1487","_to":"52270"} +{"$label":"ACTS_IN","name":"Pluto Nash","type":"Role","_key":"71602","_from":"1487","_to":"43367"} +{"$label":"ACTS_IN","name":"Reggie Hammond","type":"Role","_key":"70960","_from":"1487","_to":"43104"} +{"$label":"ACTS_IN","name":"Jeffernson 'Jiff' Ramsey","type":"Role","_key":"69313","_from":"1487","_to":"42372"} +{"$label":"ACTS_IN","name":"Dave Ming Chang \/ Kapit\u00e4n","type":"Role","_key":"68847","_from":"1487","_to":"42177"} +{"$label":"ACTS_IN","name":"Lieutenant T.M. Landry","type":"Role","_key":"68625","_from":"1487","_to":"42068"} +{"$label":"ACTS_IN","name":"Marcus Graham","type":"Role","_key":"67657","_from":"1487","_to":"41628"} +{"$label":"ACTS_IN","name":"Dr. John Dolittle","type":"Role","_key":"65922","_from":"1487","_to":"40778"} +{"$label":"ACTS_IN","name":"Jim Evers","type":"Role","_key":"65495","_from":"1487","_to":"40601"} +{"$label":"ACTS_IN","name":"Charlie Hinton","type":"Role","_key":"65184","_from":"1487","_to":"40488"} +{"$label":"ACTS_IN","name":"Mushu","type":"Role","_key":"64975","_from":"1487","_to":"40383"} +{"$label":"ACTS_IN","name":"Thomas Jefferson Johnson","type":"Role","_key":"63075","_from":"1487","_to":"39576"} +{"$label":"ACTS_IN","name":"Axel Foley","type":"Role","_key":"62646","_from":"1487","_to":"39409"} +{"$label":"ACTS_IN","name":"Donkey (voice)","type":"Role","_key":"61585","_from":"1487","_to":"38823"} +{"$label":"ACTS_IN","name":"Chandler Jarrell","type":"Role","_key":"61164","_from":"1487","_to":"38653"} +{"$label":"ACTS_IN","name":"Norbit","type":"Role","_key":"56349","_from":"1487","_to":"35808"} +{"$label":"ACTS_IN","name":"G","type":"Role","_key":"55931","_from":"1487","_to":"35572"} +{"$label":"ACTS_IN","name":"Prince Akeem \/ Clarence \/ Randy Watson \/ Saul","type":"Role","_key":"54955","_from":"1487","_to":"35132"} +{"$label":"ACTS_IN","name":"Buddy Love","type":"Role","_key":"53148","_from":"1487","_to":"34385"} +{"$label":"ACTS_IN","name":"Quick","type":"Role","_key":"52472","_from":"1487","_to":"34138"} +{"$label":"ACTS_IN","name":"Inspektor Scott Roper","type":"Role","_key":"51156","_from":"1487","_to":"33370"} +{"$label":"ACTS_IN","name":"Kelly Robinson","type":"Role","_key":"49658","_from":"1487","_to":"32497"} +{"$label":"ACTS_IN","name":"Rayford Gibson","type":"Role","_key":"43878","_from":"1487","_to":"29297"} +{"$label":"ACTS_IN","name":"Officer Trey Sellars","type":"Role","_key":"39830","_from":"1487","_to":"26915"} +{"$label":"ACTS_IN","name":"Dr. John Dolittle","type":"Role","_key":"25246","_from":"1487","_to":"18211"} +{"$label":"ACTS_IN","name":"Billy Ray Valentine","type":"Role","_key":"14373","_from":"1487","_to":"11121"} +{"$label":"ACTS_IN","name":"James \"Thunder\" Early","type":"Role","_key":"12055","_from":"1487","_to":"9446"} +{"$label":"ACTS_IN","name":"Donkey (voice)","type":"Role","_key":"9543","_from":"1487","_to":"7689"} +{"$label":"ACTS_IN","name":"Donkey (voice)","type":"Role","_key":"9530","_from":"1487","_to":"7683"} +{"$label":"ACTS_IN","name":"Donkey (voice)","type":"Role","_key":"9518","_from":"1487","_to":"7675"} +{"$label":"ACTS_IN","name":"Axel Foley","type":"Role","_key":"4226","_from":"1487","_to":"3604"} +{"$label":"ACTS_IN","name":"Reggie Hammond","type":"Role","_key":"2372","_from":"1487","_to":"2088"} +{"$label":"ACTS_IN","name":"Det. Axel Foley","type":"Role","_key":"1771","_from":"1487","_to":"1535"} +{"$label":"DIRECTED","_key":"52471","_from":"1487","_to":"34138"} +{"$label":"ACTS_IN","name":"Network Executive","type":"Role","_key":"119487","_from":"1488","_to":"70191"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"118472","_from":"1488","_to":"69645"} +{"$label":"ACTS_IN","name":"Dr. Mitch Snider","type":"Role","_key":"114715","_from":"1488","_to":"67571"} +{"$label":"ACTS_IN","name":"neil miller","type":"Role","_key":"96242","_from":"1488","_to":"56561"} +{"$label":"ACTS_IN","name":"Brad Hamilton","type":"Role","_key":"94019","_from":"1488","_to":"55369"} +{"$label":"ACTS_IN","name":"Ken Kessler","type":"Role","_key":"88325","_from":"1488","_to":"52377"} +{"$label":"ACTS_IN","name":"Jeffrey Chase","type":"Role","_key":"70243","_from":"1488","_to":"42808"} +{"$label":"ACTS_IN","name":"Dr. Neil Miller","type":"Role","_key":"69593","_from":"1488","_to":"42487"} +{"$label":"ACTS_IN","name":"Elmo","type":"Role","_key":"66493","_from":"1488","_to":"41111"} +{"$label":"ACTS_IN","name":"Dr. Neil Miller","type":"Role","_key":"52049","_from":"1488","_to":"33935"} +{"$label":"ACTS_IN","name":"Billy Rosewood","type":"Role","_key":"4227","_from":"1488","_to":"3604"} +{"$label":"ACTS_IN","name":"Det. William 'Billy' Rosewood","type":"Role","_key":"1772","_from":"1488","_to":"1535"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"91203","_from":"1489","_to":"53786"} +{"$label":"ACTS_IN","name":"Marvin Dorfler","type":"Role","_key":"52001","_from":"1489","_to":"33909"} +{"$label":"ACTS_IN","name":"Charlie Monroe","type":"Role","_key":"50082","_from":"1489","_to":"32761"} +{"$label":"ACTS_IN","name":"Nick Poole","type":"Role","_key":"33907","_from":"1489","_to":"23352"} +{"$label":"ACTS_IN","name":"Det. Sgt. John Taggart","type":"Role","_key":"1773","_from":"1489","_to":"1535"} +{"$label":"ACTS_IN","name":"Laurie Kessler","type":"Role","_key":"116728","_from":"1490","_to":"68712"} +{"$label":"ACTS_IN","name":"Bowman","type":"Role","_key":"99853","_from":"1490","_to":"58891"} +{"$label":"ACTS_IN","name":"Terry O'Neill","type":"Role","_key":"90713","_from":"1490","_to":"53546"} +{"$label":"ACTS_IN","name":"Casey Seeger","type":"Role","_key":"22277","_from":"1490","_to":"16205"} +{"$label":"ACTS_IN","name":"Tom Stevens","type":"Role","_key":"121000","_from":"1491","_to":"71073"} +{"$label":"ACTS_IN","name":"President Tom Kimball","type":"Role","_key":"98013","_from":"1491","_to":"57719"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"64944","_from":"1491","_to":"40375"} +{"$label":"ACTS_IN","name":"Colonel Kerby","type":"Role","_key":"64691","_from":"1491","_to":"40291"} +{"$label":"ACTS_IN","name":"Dick Jones","type":"Role","_key":"37775","_from":"1491","_to":"25618"} +{"$label":"ACTS_IN","name":"Vilos Cohaagen","type":"Role","_key":"10236","_from":"1491","_to":"8163"} +{"$label":"ACTS_IN","name":"Capt.\/Chief Andrew Bogomil","type":"Role","_key":"1775","_from":"1491","_to":"1535"} +{"$label":"ACTS_IN","name":"Modell","type":"Role","_key":"96370","_from":"1492","_to":"56647"} +{"$label":"ACTS_IN","name":"Dave, Ben's literary agent","type":"Role","_key":"88783","_from":"1492","_to":"52605"} +{"$label":"ACTS_IN","name":"Carl Harding","type":"Role","_key":"18701","_from":"1492","_to":"13841"} +{"$label":"ACTS_IN","name":"Carter J. Burke","type":"Role","_key":"8186","_from":"1492","_to":"6737"} +{"$label":"ACTS_IN","name":"Det. Jeffrey Friedman","type":"Role","_key":"1778","_from":"1492","_to":"1535"} +{"$label":"ACTS_IN","name":"Jack Pudovski","type":"Role","_key":"119634","_from":"1493","_to":"70275"} +{"$label":"ACTS_IN","name":"Charles Bess\u00e9","type":"Role","_key":"117538","_from":"1493","_to":"69106"} +{"$label":"ACTS_IN","name":"Vittorio DaSilva","type":"Role","_key":"115141","_from":"1493","_to":"67804"} +{"$label":"ACTS_IN","name":"Sgt. Jones","type":"Role","_key":"91101","_from":"1493","_to":"53749"} +{"$label":"ACTS_IN","name":"Surtayne","type":"Role","_key":"90392","_from":"1493","_to":"53411"} +{"$label":"ACTS_IN","name":"Colonel Ilya Kazak","type":"Role","_key":"72424","_from":"1493","_to":"43717"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"55296","_from":"1493","_to":"35259"} +{"$label":"ACTS_IN","name":"Sgt. Steinkampf","type":"Role","_key":"27519","_from":"1493","_to":"19747"} +{"$label":"ACTS_IN","name":"Lord Ludd","type":"Role","_key":"26502","_from":"1493","_to":"19048"} +{"$label":"ACTS_IN","name":"Lt. Col. Podovsky","type":"Role","_key":"12686","_from":"1493","_to":"9910"} +{"$label":"ACTS_IN","name":"General Orlov","type":"Role","_key":"8437","_from":"1493","_to":"6889"} +{"$label":"ACTS_IN","name":"Milos Drubnik","type":"Role","_key":"52908","_from":"1494","_to":"34287"} +{"$label":"ACTS_IN","name":"Mark Michelette","type":"Role","_key":"52806","_from":"1494","_to":"34245"} +{"$label":"ACTS_IN","name":"Hitchhiker","type":"Role","_key":"27630","_from":"1494","_to":"19805"} +{"$label":"ACTS_IN","name":"Clyde Klepper","type":"Role","_key":"22259","_from":"1494","_to":"16202"} +{"$label":"ACTS_IN","name":"Gunderson","type":"Role","_key":"9584","_from":"1494","_to":"7714"} +{"$label":"ACTS_IN","name":"Algren","type":"Role","_key":"2380","_from":"1494","_to":"2088"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"66133","_from":"1495","_to":"40908"} +{"$label":"ACTS_IN","name":"Elliot Blitzer","type":"Role","_key":"4430","_from":"1495","_to":"3783"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"4230","_from":"1495","_to":"3604"} +{"$label":"ACTS_IN","name":"Dr. Pennington","type":"Role","_key":"119774","_from":"1496","_to":"70331"} +{"$label":"ACTS_IN","name":"Engelhart","type":"Role","_key":"104878","_from":"1496","_to":"61706"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"53369","_from":"1496","_to":"34492"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"40889","_from":"1496","_to":"27510"} +{"$label":"ACTS_IN","name":"Sheriff Poole","type":"Role","_key":"17862","_from":"1496","_to":"13300"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"7402","_from":"1496","_to":"6167"} +{"$label":"ACTS_IN","name":"Richard Waters","type":"Role","_key":"5807","_from":"1496","_to":"4938"} +{"$label":"DIRECTED","_key":"110384","_from":"1497","_to":"65225"} +{"$label":"ACTS_IN","name":"Police Commissioner","type":"Role","_key":"97591","_from":"1497","_to":"57463"} +{"$label":"ACTS_IN","name":"Burt Johnson","type":"Role","_key":"95750","_from":"1497","_to":"56323"} +{"$label":"ACTS_IN","name":"Walter Bentley","type":"Role","_key":"43238","_from":"1497","_to":"28878"} +{"$label":"ACTS_IN","name":"Insp. Douglas Todd","type":"Role","_key":"4241","_from":"1498","_to":"3604"} +{"$label":"ACTS_IN","name":"Insp. Douglas Todd (as Gil Hill)","type":"Role","_key":"1779","_from":"1498","_to":"1535"} +{"$label":"ACTS_IN","name":"Sgt. Elmer J. Miller","type":"Role","_key":"45912","_from":"1501","_to":"30362"} +{"$label":"ACTS_IN","name":"Helm","type":"Role","_key":"10240","_from":"1501","_to":"8163"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"1740","_from":"1505","_to":"1502"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"1739","_from":"1504","_to":"1502"} +{"$label":"DIRECTED","_key":"1738","_from":"1503","_to":"1502"} +{"$label":"DIRECTED","_key":"39479","_from":"1503","_to":"26682"} +{"$label":"DIRECTED","_key":"39030","_from":"1503","_to":"26382"} +{"$label":"DIRECTED","_key":"37828","_from":"1503","_to":"25644"} +{"$label":"DIRECTED","_key":"32900","_from":"1503","_to":"22829"} +{"$label":"DIRECTED","_key":"32130","_from":"1503","_to":"22397"} +{"$label":"DIRECTED","_key":"9431","_from":"1503","_to":"7613"} +{"$label":"DIRECTED","_key":"7749","_from":"1503","_to":"6441"} +{"$label":"DIRECTED","_key":"7433","_from":"1503","_to":"6198"} +{"$label":"ACTS_IN","name":"Mann im Prolog","type":"Role","_key":"7434","_from":"1503","_to":"6198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"1744","_from":"1510","_to":"1506"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"1743","_from":"1509","_to":"1506"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"1742","_from":"1508","_to":"1506"} +{"$label":"DIRECTED","_key":"1741","_from":"1507","_to":"1506"} +{"$label":"ACTS_IN","name":"George Lemon","type":"Role","_key":"1755","_from":"1522","_to":"1511"} +{"$label":"ACTS_IN","name":"Dr. Matthew Smith","type":"Role","_key":"1754","_from":"1521","_to":"1511"} +{"$label":"ACTS_IN","name":"Claude Dancer","type":"Role","_key":"1753","_from":"1520","_to":"1511"} +{"$label":"ACTS_IN","name":"Mary Pilant","type":"Role","_key":"1752","_from":"1519","_to":"1511"} +{"$label":"ACTS_IN","name":"Maida Rutledge","type":"Role","_key":"1751","_from":"1518","_to":"1511"} +{"$label":"ACTS_IN","name":"Pie Eye","type":"Role","_key":"1750","_from":"1517","_to":"1511"} +{"$label":"ACTS_IN","name":"Parnell Emmett McCarthy","type":"Role","_key":"1749","_from":"1516","_to":"1511"} +{"$label":"ACTS_IN","name":"Lt. Frederick Manion","type":"Role","_key":"1748","_from":"1515","_to":"1511"} +{"$label":"ACTS_IN","name":"Laura Manion","type":"Role","_key":"1747","_from":"1514","_to":"1511"} +{"$label":"ACTS_IN","name":"Paul Biegler","type":"Role","_key":"1746","_from":"1513","_to":"1511"} +{"$label":"DIRECTED","_key":"1745","_from":"1512","_to":"1511"} +{"$label":"DIRECTED","_key":"111600","_from":"1512","_to":"65883"} +{"$label":"DIRECTED","_key":"111441","_from":"1512","_to":"65805"} +{"$label":"DIRECTED","_key":"24915","_from":"1512","_to":"18009"} +{"$label":"DIRECTED","_key":"16842","_from":"1512","_to":"12677"} +{"$label":"DIRECTED","_key":"16832","_from":"1512","_to":"12675"} +{"$label":"DIRECTED","_key":"16826","_from":"1512","_to":"12674"} +{"$label":"DIRECTED","_key":"16817","_from":"1512","_to":"12668"} +{"$label":"DIRECTED","_key":"16809","_from":"1512","_to":"12664"} +{"$label":"DIRECTED","_key":"16799","_from":"1512","_to":"12660"} +{"$label":"DIRECTED","_key":"16789","_from":"1512","_to":"12656"} +{"$label":"DIRECTED","_key":"16782","_from":"1512","_to":"12653"} +{"$label":"DIRECTED","_key":"6455","_from":"1512","_to":"5468"} +{"$label":"ACTS_IN","name":"Elvenking","type":"Role","_key":"12586","_from":"1512","_to":"9845"} +{"$label":"ACTS_IN","name":"Col. von Scherbach","type":"Role","_key":"7515","_from":"1512","_to":"6257"} +{"$label":"ACTS_IN","name":"Charles Augustus 'Slim' Lindbergh","type":"Role","_key":"117438","_from":"1513","_to":"69067"} +{"$label":"ACTS_IN","name":"Jeff Webster","type":"Role","_key":"117226","_from":"1513","_to":"68960"} +{"$label":"ACTS_IN","name":"James Hamilton 'Jimmy' Haskell","type":"Role","_key":"117169","_from":"1513","_to":"68933"} +{"$label":"ACTS_IN","name":"John Horace 'Johnny' Mason","type":"Role","_key":"116682","_from":"1513","_to":"68689"} +{"$label":"ACTS_IN","name":"Will Lockhart","type":"Role","_key":"115610","_from":"1513","_to":"68059"} +{"$label":"ACTS_IN","name":"Glenn Miller","type":"Role","_key":"113761","_from":"1513","_to":"67035"} +{"$label":"ACTS_IN","name":"David Graham","type":"Role","_key":"100946","_from":"1513","_to":"59500"} +{"$label":"ACTS_IN","name":"Lin McAdam","type":"Role","_key":"100759","_from":"1513","_to":"59408"} +{"$label":"ACTS_IN","name":"Dr. E.W. Hostetler","type":"Role","_key":"90435","_from":"1513","_to":"53430"} +{"$label":"ACTS_IN","name":"Linus Rawlings","type":"Role","_key":"72619","_from":"1513","_to":"43773"} +{"$label":"ACTS_IN","name":"Elwood P. Dowd","type":"Role","_key":"71998","_from":"1513","_to":"43540"} +{"$label":"ACTS_IN","name":"Ransom Stoddard","type":"Role","_key":"71620","_from":"1513","_to":"43376"} +{"$label":"ACTS_IN","name":"Wylie Burp","type":"Role","_key":"62905","_from":"1513","_to":"39516"} +{"$label":"ACTS_IN","name":"Capt. Frank Towns","type":"Role","_key":"61893","_from":"1513","_to":"38954"} +{"$label":"ACTS_IN","name":"Philip Stevens","type":"Role","_key":"46016","_from":"1513","_to":"30412"} +{"$label":"ACTS_IN","name":"Johnny Cobb","type":"Role","_key":"34930","_from":"1513","_to":"23859"} +{"$label":"ACTS_IN","name":"Jefferson Smith","type":"Role","_key":"25580","_from":"1513","_to":"18430"} +{"$label":"ACTS_IN","name":"Shep Henderson","type":"Role","_key":"17423","_from":"1513","_to":"13027"} +{"$label":"ACTS_IN","name":"General Sternwood","type":"Role","_key":"15713","_from":"1513","_to":"11975"} +{"$label":"ACTS_IN","name":"George Bailey","type":"Role","_key":"14034","_from":"1513","_to":"10886"} +{"$label":"ACTS_IN","name":"Rupert Cadell","type":"Role","_key":"13997","_from":"1513","_to":"10857"} +{"$label":"ACTS_IN","name":"Himself \/ John 'Scottie' Ferguson (archive footage)","type":"Role","_key":"13842","_from":"1513","_to":"10738"} +{"$label":"ACTS_IN","name":"Martin Breitner","type":"Role","_key":"11700","_from":"1513","_to":"9187"} +{"$label":"ACTS_IN","name":"Macaulay Connor","type":"Role","_key":"11594","_from":"1513","_to":"9107"} +{"$label":"ACTS_IN","name":"Dr. Ben McKenna","type":"Role","_key":"6842","_from":"1513","_to":"5742"} +{"$label":"ACTS_IN","name":"L. B. Jefferies","type":"Role","_key":"6796","_from":"1513","_to":"5700"} +{"$label":"ACTS_IN","name":"Det. John 'Scottie' Ferguson","type":"Role","_key":"5356","_from":"1513","_to":"4546"} +{"$label":"ACTS_IN","name":"Doctor Zonfeld","type":"Role","_key":"71113","_from":"1514","_to":"43170"} +{"$label":"ACTS_IN","name":"Katherine Thorn","type":"Role","_key":"9366","_from":"1514","_to":"7561"} +{"$label":"ACTS_IN","name":"Al Capone","type":"Role","_key":"117209","_from":"1515","_to":"68951"} +{"$label":"ACTS_IN","name":"Sgt. Angelo (\"Angel\")","type":"Role","_key":"106194","_from":"1515","_to":"62549"} +{"$label":"ACTS_IN","name":"michele Terranova","type":"Role","_key":"89497","_from":"1515","_to":"52988"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89386","_from":"1515","_to":"52910"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71245","_from":"1515","_to":"43224"} +{"$label":"ACTS_IN","name":"Brad Wesley","type":"Role","_key":"61151","_from":"1515","_to":"38646"} +{"$label":"ACTS_IN","name":"Jimmy Brown","type":"Role","_key":"54030","_from":"1515","_to":"34761"} +{"$label":"ACTS_IN","name":"Rhys Williams","type":"Role","_key":"24955","_from":"1515","_to":"18031"} +{"$label":"ACTS_IN","name":"Ben (Quartier Latin)","type":"Role","_key":"19876","_from":"1515","_to":"14635"} +{"$label":"ACTS_IN","name":"Andrew Wallace","type":"Role","_key":"10859","_from":"1515","_to":"8607"} +{"$label":"ACTS_IN","name":"Jack McKay","type":"Role","_key":"6609","_from":"1515","_to":"5579"} +{"$label":"ACTS_IN","name":"Jackie Treehorn","type":"Role","_key":"2019","_from":"1515","_to":"1750"} +{"$label":"ACTS_IN","name":"Pop Kwimper","type":"Role","_key":"116915","_from":"1516","_to":"68826"} +{"$label":"ACTS_IN","name":"Sam Beasley","type":"Role","_key":"101406","_from":"1516","_to":"59696"} +{"$label":"ACTS_IN","name":"Interne","type":"Role","_key":"29096","_from":"1516","_to":"20731"} +{"$label":"ACTS_IN","name":"Col. Donald Reid","type":"Role","_key":"18820","_from":"1516","_to":"13902"} +{"$label":"ACTS_IN","name":"Count Alfonso Romero","type":"Role","_key":"3596","_from":"1516","_to":"3074"} +{"$label":"ACTS_IN","name":"Ida Corwin","type":"Role","_key":"26834","_from":"1518","_to":"19283"} +{"$label":"ACTS_IN","name":"Principal McGee","type":"Role","_key":"7385","_from":"1518","_to":"6147"} +{"$label":"ACTS_IN","name":"Princess Parisa","type":"Role","_key":"104787","_from":"1519","_to":"61650"} +{"$label":"ACTS_IN","name":"Col. Franz Ritter","type":"Role","_key":"113297","_from":"1520","_to":"66745"} +{"$label":"ACTS_IN","name":"John Russell","type":"Role","_key":"95157","_from":"1520","_to":"55996"} +{"$label":"ACTS_IN","name":"Ebenezer Scrooge","type":"Role","_key":"93335","_from":"1520","_to":"54986"} +{"$label":"ACTS_IN","name":"Juror 3","type":"Role","_key":"88764","_from":"1520","_to":"52604"} +{"$label":"ACTS_IN","name":"Anthony Gethryn","type":"Role","_key":"71016","_from":"1520","_to":"43129"} +{"$label":"ACTS_IN","name":"Lt. William 'Bill' Kinderman","type":"Role","_key":"70875","_from":"1520","_to":"43072"} +{"$label":"ACTS_IN","name":"John Rainbird","type":"Role","_key":"70171","_from":"1520","_to":"42773"} +{"$label":"ACTS_IN","name":"Gen. George S. Patton Jr.","type":"Role","_key":"68510","_from":"1520","_to":"42021"} +{"$label":"ACTS_IN","name":"McLeach (voice)","type":"Role","_key":"68094","_from":"1520","_to":"41826"} +{"$label":"ACTS_IN","name":"General Harlan Bache","type":"Role","_key":"64689","_from":"1520","_to":"40291"} +{"$label":"ACTS_IN","name":"Auguste Dupin","type":"Role","_key":"42248","_from":"1520","_to":"28293"} +{"$label":"ACTS_IN","name":"Captain Edward John Smith","type":"Role","_key":"22772","_from":"1520","_to":"16516"} +{"$label":"ACTS_IN","name":"Abraham","type":"Role","_key":"21854","_from":"1520","_to":"15962"} +{"$label":"ACTS_IN","name":"Dr. Martin Kessler","type":"Role","_key":"19639","_from":"1520","_to":"14529"} +{"$label":"ACTS_IN","name":"Bert Gordon","type":"Role","_key":"11715","_from":"1520","_to":"9196"} +{"$label":"ACTS_IN","name":"General \u201eBuck\u201c Turgidson","type":"Role","_key":"11165","_from":"1520","_to":"8839"} +{"$label":"ACTS_IN","name":"Homeless Man","type":"Role","_key":"56554","_from":"1521","_to":"35892"} +{"$label":"ACTS_IN","name":"Bilbo Baggins","type":"Role","_key":"12582","_from":"1521","_to":"9845"} +{"$label":"ACTS_IN","name":"Frodo Baggins","type":"Role","_key":"12570","_from":"1521","_to":"9836"} +{"$label":"ACTS_IN","name":"Dr. Lester","type":"Role","_key":"5987","_from":"1521","_to":"5081"} +{"$label":"ACTS_IN","name":"Taschendieb","type":"Role","_key":"1758","_from":"1526","_to":"1523"} +{"$label":"ACTS_IN","name":"Taschendiebin","type":"Role","_key":"1757","_from":"1525","_to":"1523"} +{"$label":"DIRECTED","_key":"1756","_from":"1524","_to":"1523"} +{"$label":"ACTS_IN","name":"Josef von Sternberg","type":"Role","_key":"63105","_from":"1526","_to":"39589"} +{"$label":"ACTS_IN","name":"Eric Winter","type":"Role","_key":"45960","_from":"1526","_to":"30385"} +{"$label":"ACTS_IN","name":"Mann vom LKA","type":"Role","_key":"40643","_from":"1526","_to":"27367"} +{"$label":"ACTS_IN","name":"Horst Bauer","type":"Role","_key":"36343","_from":"1526","_to":"24651"} +{"$label":"ACTS_IN","name":"Dr. Heddenhorst","type":"Role","_key":"31135","_from":"1526","_to":"21794"} +{"$label":"ACTS_IN","name":"Oscar Choi","type":"Role","_key":"1769","_from":"1534","_to":"1527"} +{"$label":"ACTS_IN","name":"Colonel William Sharp, Shuttle Freedom Pilot","type":"Role","_key":"1766","_from":"1533","_to":"1527"} +{"$label":"ACTS_IN","name":"Rockhound","type":"Role","_key":"1765","_from":"1532","_to":"1527"} +{"$label":"ACTS_IN","name":"Charles 'Chick' Chapple","type":"Role","_key":"1764","_from":"1531","_to":"1527"} +{"$label":"ACTS_IN","name":"A.J. Frost","type":"Role","_key":"1762","_from":"1530","_to":"1527"} +{"$label":"ACTS_IN","name":"Dan Truman, NASA Administrator","type":"Role","_key":"1761","_from":"1529","_to":"1527"} +{"$label":"DIRECTED","_key":"1759","_from":"1528","_to":"1527"} +{"$label":"DIRECTED","_key":"56952","_from":"1528","_to":"36143"} +{"$label":"DIRECTED","_key":"56204","_from":"1528","_to":"35707"} +{"$label":"DIRECTED","_key":"51701","_from":"1528","_to":"33743"} +{"$label":"DIRECTED","_key":"49406","_from":"1528","_to":"32350"} +{"$label":"DIRECTED","_key":"16051","_from":"1528","_to":"12202"} +{"$label":"DIRECTED","_key":"14482","_from":"1528","_to":"11190"} +{"$label":"DIRECTED","_key":"8123","_from":"1528","_to":"6692"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"51714","_from":"1528","_to":"33743"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"112239","_from":"1529","_to":"66289"} +{"$label":"ACTS_IN","name":"Coach Gary Gaines","type":"Role","_key":"94399","_from":"1529","_to":"55583"} +{"$label":"ACTS_IN","name":"Morris Buttermaker","type":"Role","_key":"94016","_from":"1529","_to":"55368"} +{"$label":"ACTS_IN","name":"Jasper Woodcock","type":"Role","_key":"93631","_from":"1529","_to":"55125"} +{"$label":"ACTS_IN","name":"Thomas Morgan","type":"Role","_key":"92107","_from":"1529","_to":"54348"} +{"$label":"ACTS_IN","name":"Russell Bell","type":"Role","_key":"90519","_from":"1529","_to":"53474"} +{"$label":"ACTS_IN","name":"Karl Childers","type":"Role","_key":"89891","_from":"1529","_to":"53200"} +{"$label":"ACTS_IN","name":"Howard D. Doyle","type":"Role","_key":"71876","_from":"1529","_to":"43490"} +{"$label":"ACTS_IN","name":"Ed Crane","type":"Role","_key":"65710","_from":"1529","_to":"40695"} +{"$label":"ACTS_IN","name":"Davy Crockett","type":"Role","_key":"65322","_from":"1529","_to":"40532"} +{"$label":"ACTS_IN","name":"Jacob Mitchell","type":"Role","_key":"61799","_from":"1529","_to":"38904"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"61230","_from":"1529","_to":"38674"} +{"$label":"ACTS_IN","name":"Dr. P","type":"Role","_key":"57402","_from":"1529","_to":"36396"} +{"$label":"ACTS_IN","name":"Lightning","type":"Role","_key":"55867","_from":"1529","_to":"35537"} +{"$label":"ACTS_IN","name":"Homer Carlton","type":"Role","_key":"55123","_from":"1529","_to":"35190"} +{"$label":"ACTS_IN","name":"Richard Jemmons","type":"Role","_key":"53857","_from":"1529","_to":"34689"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"51959","_from":"1529","_to":"33889"} +{"$label":"ACTS_IN","name":"Charles Farmer","type":"Role","_key":"36236","_from":"1529","_to":"24593"} +{"$label":"ACTS_IN","name":"Day Tripper","type":"Role","_key":"31994","_from":"1529","_to":"22300"} +{"$label":"ACTS_IN","name":"Terry Lee Collins","type":"Role","_key":"26474","_from":"1529","_to":"19030"} +{"$label":"ACTS_IN","name":"Troublemaker","type":"Role","_key":"24126","_from":"1529","_to":"17497"} +{"$label":"ACTS_IN","name":"Sheriff Darl","type":"Role","_key":"18220","_from":"1529","_to":"13515"} +{"$label":"ACTS_IN","name":"Hank Grotowski","type":"Role","_key":"12619","_from":"1529","_to":"9865"} +{"$label":"ACTS_IN","name":"The US President","type":"Role","_key":"6145","_from":"1529","_to":"5200"} +{"$label":"DIRECTED","_key":"89898","_from":"1529","_to":"53200"} +{"$label":"ACTS_IN","name":"Stephen Collins","type":"Role","_key":"110768","_from":"1530","_to":"65435"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"108911","_from":"1530","_to":"64366"} +{"$label":"ACTS_IN","name":"Drew Latham","type":"Role","_key":"104928","_from":"1530","_to":"61746"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"103707","_from":"1530","_to":"61002"} +{"$label":"ACTS_IN","name":"Chesty Smith","type":"Role","_key":"101430","_from":"1530","_to":"59708"} +{"$label":"ACTS_IN","name":"Jim Young","type":"Role","_key":"98941","_from":"1530","_to":"58292"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"90332","_from":"1530","_to":"53393"} +{"$label":"ACTS_IN","name":"Buddy Amaral","type":"Role","_key":"66339","_from":"1530","_to":"41033"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"61512","_from":"1530","_to":"38795"} +{"$label":"ACTS_IN","name":"Sheriff Bryce Hammond","type":"Role","_key":"57201","_from":"1530","_to":"36288"} +{"$label":"ACTS_IN","name":"Jack Giamoro","type":"Role","_key":"56732","_from":"1530","_to":"36041"} +{"$label":"ACTS_IN","name":"Michael Jennings","type":"Role","_key":"55098","_from":"1530","_to":"35186"} +{"$label":"ACTS_IN","name":"Fred O'Bannion","type":"Role","_key":"54771","_from":"1530","_to":"35048"} +{"$label":"ACTS_IN","name":"Ollie Trinke","type":"Role","_key":"54555","_from":"1530","_to":"34963"} +{"$label":"ACTS_IN","name":"Matt Murdock \/ Daredevil","type":"Role","_key":"54128","_from":"1530","_to":"34788"} +{"$label":"ACTS_IN","name":"Larry Gigli","type":"Role","_key":"47837","_from":"1530","_to":"31493"} +{"$label":"ACTS_IN","name":"Jack Dupree","type":"Role","_key":"47073","_from":"1530","_to":"31043"} +{"$label":"ACTS_IN","name":"Jack Ryan","type":"Role","_key":"33000","_from":"1530","_to":"22881"} +{"$label":"ACTS_IN","name":"Gawking Guy","type":"Role","_key":"20152","_from":"1530","_to":"14789"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"20130","_from":"1530","_to":"14786"} +{"$label":"ACTS_IN","name":"Shannon Hamilton","type":"Role","_key":"20121","_from":"1530","_to":"14782"} +{"$label":"ACTS_IN","name":"Holden McNeil","type":"Role","_key":"19738","_from":"1530","_to":"14591"} +{"$label":"ACTS_IN","name":"Rudy Duncan","type":"Role","_key":"18773","_from":"1530","_to":"13886"} +{"$label":"ACTS_IN","name":"Ned Alleyn","type":"Role","_key":"16765","_from":"1530","_to":"12639"} +{"$label":"ACTS_IN","name":"Bartleby","type":"Role","_key":"15807","_from":"1530","_to":"12037"} +{"$label":"ACTS_IN","name":"Ben Holmes","type":"Role","_key":"14557","_from":"1530","_to":"11225"} +{"$label":"ACTS_IN","name":"Gavin Banek","type":"Role","_key":"13610","_from":"1530","_to":"10583"} +{"$label":"ACTS_IN","name":"George Reeves","type":"Role","_key":"12220","_from":"1530","_to":"9571"} +{"$label":"ACTS_IN","name":"Capt. Rafe McCawley","type":"Role","_key":"8124","_from":"1530","_to":"6692"} +{"$label":"ACTS_IN","name":"Chuckie Sullivan","type":"Role","_key":"5945","_from":"1530","_to":"5047"} +{"$label":"DIRECTED","_key":"33902","_from":"1530","_to":"23352"} +{"$label":"ACTS_IN","name":"Gibson","type":"Role","_key":"116605","_from":"1531","_to":"68642"} +{"$label":"ACTS_IN","name":"Harriston","type":"Role","_key":"101029","_from":"1531","_to":"59536"} +{"$label":"ACTS_IN","name":"Lloyd Abbott","type":"Role","_key":"91266","_from":"1531","_to":"53818"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"66131","_from":"1531","_to":"40908"} +{"$label":"ACTS_IN","name":"Bill Yoast","type":"Role","_key":"64762","_from":"1531","_to":"40308"} +{"$label":"ACTS_IN","name":"Scott Pritchard","type":"Role","_key":"60436","_from":"1531","_to":"38128"} +{"$label":"ACTS_IN","name":"General Bethlehem","type":"Role","_key":"58115","_from":"1531","_to":"36774"} +{"$label":"ACTS_IN","name":"Atlee Jackson","type":"Role","_key":"55519","_from":"1531","_to":"35364"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"51580","_from":"1531","_to":"33658"} +{"$label":"ACTS_IN","name":"Quentin Glass","type":"Role","_key":"46001","_from":"1531","_to":"30406"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"31038","_from":"1531","_to":"21724"} +{"$label":"ACTS_IN","name":"Gordon Smallwood","type":"Role","_key":"22307","_from":"1531","_to":"16222"} +{"$label":"ACTS_IN","name":"Martie","type":"Role","_key":"18192","_from":"1531","_to":"13492"} +{"$label":"ACTS_IN","name":"Hector Cruz","type":"Role","_key":"15917","_from":"1531","_to":"12114"} +{"$label":"ACTS_IN","name":"Nico Letti","type":"Role","_key":"15112","_from":"1531","_to":"11600"} +{"$label":"ACTS_IN","name":"Bucky the Hamster (voice)","type":"Role","_key":"120470","_from":"1532","_to":"70764"} +{"$label":"ACTS_IN","name":"'Hesch' Abramowics","type":"Role","_key":"103541","_from":"1532","_to":"60906"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"100250","_from":"1532","_to":"59123"} +{"$label":"ACTS_IN","name":"Jerry Cubbins","type":"Role","_key":"99983","_from":"1532","_to":"58990"} +{"$label":"ACTS_IN","name":"Scamper","type":"Role","_key":"99277","_from":"1532","_to":"58502"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"98008","_from":"1532","_to":"57718"} +{"$label":"ACTS_IN","name":"Wesley","type":"Role","_key":"95962","_from":"1532","_to":"56425"} +{"$label":"ACTS_IN","name":"Les Galantine","type":"Role","_key":"95683","_from":"1532","_to":"56281"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"95348","_from":"1532","_to":"56098"} +{"$label":"ACTS_IN","name":"Irving","type":"Role","_key":"90798","_from":"1532","_to":"53581"} +{"$label":"ACTS_IN","name":"Charlie the Barber","type":"Role","_key":"69041","_from":"1532","_to":"42262"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"61238","_from":"1532","_to":"38676"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"60092","_from":"1532","_to":"37917"} +{"$label":"ACTS_IN","name":"Templeton the Rat","type":"Role","_key":"58977","_from":"1532","_to":"37240"} +{"$label":"ACTS_IN","name":"Test Tube","type":"Role","_key":"54672","_from":"1532","_to":"35009"} +{"$label":"ACTS_IN","name":"Romero","type":"Role","_key":"54203","_from":"1532","_to":"34817"} +{"$label":"ACTS_IN","name":"Nebbercracker","type":"Role","_key":"52969","_from":"1532","_to":"34313"} +{"$label":"ACTS_IN","name":"Nick Reve","type":"Role","_key":"52391","_from":"1532","_to":"34097"} +{"$label":"ACTS_IN","name":"Homeless Guy","type":"Role","_key":"52166","_from":"1532","_to":"33995"} +{"$label":"ACTS_IN","name":"Pierre Peders","type":"Role","_key":"49559","_from":"1532","_to":"32449"} +{"$label":"ACTS_IN","name":"Buscemi","type":"Role","_key":"48031","_from":"1532","_to":"31586"} +{"$label":"ACTS_IN","name":"Willy Wilhelm","type":"Role","_key":"45639","_from":"1532","_to":"30210"} +{"$label":"ACTS_IN","name":"Dr. Robert Wilson","type":"Role","_key":"40591","_from":"1532","_to":"27336"} +{"$label":"ACTS_IN","name":"Clinton Fitzer","type":"Role","_key":"27948","_from":"1532","_to":"20034"} +{"$label":"ACTS_IN","name":"Touriste (Tuileries)","type":"Role","_key":"19859","_from":"1532","_to":"14635"} +{"$label":"ACTS_IN","name":"Off. Neil Fleming ( Voice )","type":"Role","_key":"18432","_from":"1532","_to":"13659"} +{"$label":"ACTS_IN","name":"Crazy Eyes","type":"Role","_key":"17586","_from":"1532","_to":"13137"} +{"$label":"ACTS_IN","name":"Garland Greene","type":"Role","_key":"15078","_from":"1532","_to":"11583"} +{"$label":"ACTS_IN","name":"McCord","type":"Role","_key":"14486","_from":"1532","_to":"11190"} +{"$label":"ACTS_IN","name":"Seymour","type":"Role","_key":"13706","_from":"1532","_to":"10639"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"10509","_from":"1532","_to":"8357"} +{"$label":"ACTS_IN","name":"Buddy Holly","type":"Role","_key":"8212","_from":"1532","_to":"6746"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"7016","_from":"1532","_to":"5882"} +{"$label":"ACTS_IN","name":"Mr. Pink","type":"Role","_key":"6042","_from":"1532","_to":"5129"} +{"$label":"ACTS_IN","name":"Mister Shhh","type":"Role","_key":"5068","_from":"1532","_to":"4307"} +{"$label":"ACTS_IN","name":"Mink","type":"Role","_key":"4900","_from":"1532","_to":"4175"} +{"$label":"ACTS_IN","name":"Chet","type":"Role","_key":"4068","_from":"1532","_to":"3465"} +{"$label":"ACTS_IN","name":"Carl Showalter","type":"Role","_key":"3913","_from":"1532","_to":"3344"} +{"$label":"ACTS_IN","name":"Theodore Donald Kerabatsos","type":"Role","_key":"2005","_from":"1532","_to":"1750"} +{"$label":"DIRECTED","_key":"56843","_from":"1532","_to":"36088"} +{"$label":"DIRECTED","_key":"49566","_from":"1532","_to":"32449"} +{"$label":"DIRECTED","_key":"46378","_from":"1532","_to":"30637"} +{"$label":"ACTS_IN","name":"Aaron Reilly","type":"Role","_key":"119267","_from":"1533","_to":"70077"} +{"$label":"ACTS_IN","name":"Ed Jacomoi","type":"Role","_key":"106961","_from":"1533","_to":"63058"} +{"$label":"ACTS_IN","name":"Mr. Bill Stiffle","type":"Role","_key":"97483","_from":"1533","_to":"57409"} +{"$label":"ACTS_IN","name":"Darren MacElroy","type":"Role","_key":"58502","_from":"1533","_to":"36974"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"58075","_from":"1533","_to":"36741"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"53810","_from":"1533","_to":"34669"} +{"$label":"ACTS_IN","name":"Captain Knauer","type":"Role","_key":"52922","_from":"1533","_to":"34291"} +{"$label":"ACTS_IN","name":"Law","type":"Role","_key":"50669","_from":"1533","_to":"33080"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"46338","_from":"1533","_to":"30618"} +{"$label":"ACTS_IN","name":"David \" Sully \" Sullivan","type":"Role","_key":"18554","_from":"1533","_to":"13731"} +{"$label":"ACTS_IN","name":"Flanagan","type":"Role","_key":"14550","_from":"1533","_to":"11201"} +{"$label":"ACTS_IN","name":"Roger Van Zant","type":"Role","_key":"11333","_from":"1533","_to":"8936"} +{"$label":"ACTS_IN","name":"Sfc. Jeff Sanderson","type":"Role","_key":"10140","_from":"1533","_to":"8112"} +{"$label":"ACTS_IN","name":"Kent Clark","type":"Role","_key":"8273","_from":"1533","_to":"6784"} +{"$label":"ACTS_IN","name":"Danny's Father","type":"Role","_key":"8145","_from":"1533","_to":"6692"} +{"$label":"ACTS_IN","name":"Dwayne Engelman","type":"Role","_key":"3983","_from":"1533","_to":"3397"} +{"$label":"ACTS_IN","name":"Jedediah Smith","type":"Role","_key":"115889","_from":"1534","_to":"68230"} +{"$label":"ACTS_IN","name":"John Grogan","type":"Role","_key":"99552","_from":"1534","_to":"58688"} +{"$label":"ACTS_IN","name":"Lightning McQueen","type":"Role","_key":"97558","_from":"1534","_to":"57452"} +{"$label":"ACTS_IN","name":"Dignan","type":"Role","_key":"95870","_from":"1534","_to":"56383"} +{"$label":"ACTS_IN","name":"Jack Ryan","type":"Role","_key":"90737","_from":"1534","_to":"53556"} +{"$label":"ACTS_IN","name":"Neil King","type":"Role","_key":"88534","_from":"1534","_to":"52472"} +{"$label":"ACTS_IN","name":"Luke Sanderson","type":"Role","_key":"71084","_from":"1534","_to":"43160"} +{"$label":"ACTS_IN","name":"John Beckwith","type":"Role","_key":"54420","_from":"1534","_to":"34907"} +{"$label":"ACTS_IN","name":"Eli Cash","type":"Role","_key":"53796","_from":"1534","_to":"34665"} +{"$label":"ACTS_IN","name":"Hansel","type":"Role","_key":"53606","_from":"1534","_to":"34590"} +{"$label":"ACTS_IN","name":"Ken Hutchinson","type":"Role","_key":"53497","_from":"1534","_to":"34547"} +{"$label":"ACTS_IN","name":"Gary Dixon","type":"Role","_key":"53348","_from":"1534","_to":"34483"} +{"$label":"ACTS_IN","name":"Roy O'Bannon","type":"Role","_key":"50212","_from":"1534","_to":"32820"} +{"$label":"ACTS_IN","name":"Drillbit Taylor","type":"Role","_key":"49904","_from":"1534","_to":"32673"} +{"$label":"ACTS_IN","name":"Alexander Scott","type":"Role","_key":"49659","_from":"1534","_to":"32497"} +{"$label":"ACTS_IN","name":"Lt. Chris Burnett","type":"Role","_key":"47725","_from":"1534","_to":"31434"} +{"$label":"ACTS_IN","name":"Roy O\u2019Bannon","type":"Role","_key":"41397","_from":"1534","_to":"27828"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"32434","_from":"1534","_to":"22567"} +{"$label":"ACTS_IN","name":"Dupree","type":"Role","_key":"15748","_from":"1534","_to":"11996"} +{"$label":"ACTS_IN","name":"Kevin Rawley","type":"Role","_key":"14158","_from":"1534","_to":"10958"} +{"$label":"ACTS_IN","name":"Lightning McQueen (voice)","type":"Role","_key":"10932","_from":"1534","_to":"8670"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"8350","_from":"1534","_to":"6834"} +{"$label":"ACTS_IN","name":"Ned Plimpton","type":"Role","_key":"5284","_from":"1534","_to":"4483"} +{"$label":"ACTS_IN","name":"Playboy Mansion Valet","type":"Role","_key":"1784","_from":"1544","_to":"1535"} +{"$label":"ACTS_IN","name":"Police Chief Harold Lutz","type":"Role","_key":"1783","_from":"1543","_to":"1535"} +{"$label":"ACTS_IN","name":"Playboy Playmate","type":"Role","_key":"1782","_from":"1542","_to":"1535"} +{"$label":"ACTS_IN","name":"Playboy Playmate","type":"Role","_key":"1781","_from":"1541","_to":"1535"} +{"$label":"ACTS_IN","name":"Nikos Thomopolis","type":"Role","_key":"1780","_from":"1540","_to":"1535"} +{"$label":"ACTS_IN","name":"Charles 'Chip' Cain","type":"Role","_key":"1777","_from":"1539","_to":"1535"} +{"$label":"ACTS_IN","name":"Karla Fry","type":"Role","_key":"1776","_from":"1538","_to":"1535"} +{"$label":"ACTS_IN","name":"Maxwell Dent","type":"Role","_key":"1774","_from":"1537","_to":"1535"} +{"$label":"DIRECTED","_key":"1770","_from":"1536","_to":"1535"} +{"$label":"DIRECTED","_key":"116365","_from":"1536","_to":"68507"} +{"$label":"DIRECTED","_key":"99285","_from":"1536","_to":"58507"} +{"$label":"DIRECTED","_key":"71328","_from":"1536","_to":"43264"} +{"$label":"DIRECTED","_key":"58119","_from":"1536","_to":"36776"} +{"$label":"DIRECTED","_key":"56933","_from":"1536","_to":"36140"} +{"$label":"DIRECTED","_key":"54733","_from":"1536","_to":"35035"} +{"$label":"DIRECTED","_key":"54334","_from":"1536","_to":"34865"} +{"$label":"DIRECTED","_key":"53098","_from":"1536","_to":"34363"} +{"$label":"DIRECTED","_key":"51716","_from":"1536","_to":"33747"} +{"$label":"DIRECTED","_key":"47198","_from":"1536","_to":"31106"} +{"$label":"DIRECTED","_key":"18476","_from":"1536","_to":"13689"} +{"$label":"DIRECTED","_key":"13598","_from":"1536","_to":"10575"} +{"$label":"DIRECTED","_key":"8682","_from":"1536","_to":"7049"} +{"$label":"DIRECTED","_key":"4426","_from":"1536","_to":"3783"} +{"$label":"ACTS_IN","name":"The Mage","type":"Role","_key":"110527","_from":"1537","_to":"65303"} +{"$label":"ACTS_IN","name":"The Skipper","type":"Role","_key":"90763","_from":"1537","_to":"53569"} +{"$label":"ACTS_IN","name":"David Bannon","type":"Role","_key":"67753","_from":"1537","_to":"41653"} +{"$label":"ACTS_IN","name":"Kirk","type":"Role","_key":"67611","_from":"1537","_to":"41614"} +{"$label":"ACTS_IN","name":"Baron Wolfgang von Wolfhausen","type":"Role","_key":"59025","_from":"1537","_to":"37261"} +{"$label":"ACTS_IN","name":"General Ivan Radek","type":"Role","_key":"56513","_from":"1537","_to":"35891"} +{"$label":"ACTS_IN","name":"Judge Griffin","type":"Role","_key":"54157","_from":"1537","_to":"34797"} +{"$label":"ACTS_IN","name":"Martin Kurath","type":"Role","_key":"43799","_from":"1537","_to":"29250"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"43487","_from":"1537","_to":"29044"} +{"$label":"ACTS_IN","name":"Ludwig G\u00f6tten","type":"Role","_key":"33848","_from":"1537","_to":"23320"} +{"$label":"ACTS_IN","name":"Jacob Krieg","type":"Role","_key":"30764","_from":"1537","_to":"21565"} +{"$label":"ACTS_IN","name":"Haman","type":"Role","_key":"22826","_from":"1537","_to":"16558"} +{"$label":"ACTS_IN","name":"Sutter Cane","type":"Role","_key":"22516","_from":"1537","_to":"16363"} +{"$label":"ACTS_IN","name":"Dr. Alan Paley","type":"Role","_key":"18731","_from":"1537","_to":"13858"} +{"$label":"ACTS_IN","name":"John Gregory","type":"Role","_key":"15703","_from":"1537","_to":"11967"} +{"$label":"ACTS_IN","name":"Duke Leto Atreides","type":"Role","_key":"9942","_from":"1537","_to":"7956"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Vernet","type":"Role","_key":"7101","_from":"1537","_to":"5934"} +{"$label":"ACTS_IN","name":"Major Muller","type":"Role","_key":"5199","_from":"1537","_to":"4417"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n-Leutnant Heinrich Lehmann-Willenbrock","type":"Role","_key":"4938","_from":"1537","_to":"4213"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"57524","_from":"1538","_to":"36449"} +{"$label":"ACTS_IN","name":"Red Sonja","type":"Role","_key":"55132","_from":"1538","_to":"35194"} +{"$label":"ACTS_IN","name":"Ludmilla Vobet Drago","type":"Role","_key":"12767","_from":"1538","_to":"9966"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"117677","_from":"1539","_to":"69168"} +{"$label":"ACTS_IN","name":"Donald Martin","type":"Role","_key":"114234","_from":"1539","_to":"67282"} +{"$label":"ACTS_IN","name":"Muldaur","type":"Role","_key":"106557","_from":"1539","_to":"62788"} +{"$label":"ACTS_IN","name":"Capt. Wallace B. Binghampton","type":"Role","_key":"102427","_from":"1539","_to":"60274"} +{"$label":"ACTS_IN","name":"Nick Charles Jr.","type":"Role","_key":"101008","_from":"1539","_to":"59526"} +{"$label":"ACTS_IN","name":"Bob Jenkins","type":"Role","_key":"73006","_from":"1539","_to":"43937"} +{"$label":"ACTS_IN","name":"Bob Grimes","type":"Role","_key":"57457","_from":"1539","_to":"36419"} +{"$label":"ACTS_IN","name":"Kenneth Switzer","type":"Role","_key":"37733","_from":"1539","_to":"25589"} +{"$label":"ACTS_IN","name":"Tony Russo","type":"Role","_key":"20392","_from":"1539","_to":"14933"} +{"$label":"ACTS_IN","name":"Dr. Wellington Yueh","type":"Role","_key":"9945","_from":"1539","_to":"7956"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"9354","_from":"1539","_to":"7553"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"7836","_from":"1539","_to":"6500"} +{"$label":"ACTS_IN","name":"Andrew Cassedy","type":"Role","_key":"70223","_from":"1540","_to":"42794"} +{"$label":"ACTS_IN","name":"Bill Griggs","type":"Role","_key":"67020","_from":"1540","_to":"41373"} +{"$label":"ACTS_IN","name":"Malcolm Moldovsky","type":"Role","_key":"57560","_from":"1540","_to":"36462"} +{"$label":"ACTS_IN","name":"Mike O'Brien","type":"Role","_key":"34233","_from":"1540","_to":"23502"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"28266","_from":"1540","_to":"20232"} +{"$label":"ACTS_IN","name":"Michael's Girlfriend","type":"Role","_key":"14797","_from":"1541","_to":"11383"} +{"$label":"ACTS_IN","name":"Princess","type":"Role","_key":"116012","_from":"1542","_to":"68315"} +{"$label":"ACTS_IN","name":"Hot Se\u00f1orita","type":"Role","_key":"49480","_from":"1542","_to":"32393"} +{"$label":"ACTS_IN","name":"Greenberg","type":"Role","_key":"118765","_from":"1543","_to":"69835"} +{"$label":"ACTS_IN","name":"Entertainment Magnate","type":"Role","_key":"64536","_from":"1543","_to":"40197"} +{"$label":"ACTS_IN","name":"Barnett","type":"Role","_key":"26143","_from":"1543","_to":"18778"} +{"$label":"ACTS_IN","name":"Kruger","type":"Role","_key":"11675","_from":"1543","_to":"9168"} +{"$label":"ACTS_IN","name":"William P. 'Bernie' Moran","type":"Role","_key":"7115","_from":"1543","_to":"5945"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114988","_from":"1544","_to":"67721"} +{"$label":"ACTS_IN","name":"Chris Rock","type":"Role","_key":"114169","_from":"1544","_to":"67256"} +{"$label":"ACTS_IN","name":"Chris Rock","type":"Role","_key":"114166","_from":"1544","_to":"67253"} +{"$label":"ACTS_IN","name":"Lance Barton","type":"Role","_key":"108533","_from":"1544","_to":"64148"} +{"$label":"ACTS_IN","name":"MC Gusto","type":"Role","_key":"103847","_from":"1544","_to":"61070"} +{"$label":"ACTS_IN","name":"Richard Cooper","type":"Role","_key":"100247","_from":"1544","_to":"59123"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99245","_from":"1544","_to":"58487"} +{"$label":"ACTS_IN","name":"Osmosis Jones (voice)","type":"Role","_key":"90587","_from":"1544","_to":"53504"} +{"$label":"ACTS_IN","name":"Bony T","type":"Role","_key":"67666","_from":"1544","_to":"41628"} +{"$label":"ACTS_IN","name":"Pookie","type":"Role","_key":"66939","_from":"1544","_to":"41325"} +{"$label":"ACTS_IN","name":"JB \/ Radio DJ \/ Pootie's Father","type":"Role","_key":"64553","_from":"1544","_to":"40205"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"63852","_from":"1544","_to":"39906"} +{"$label":"ACTS_IN","name":"Wesley","type":"Role","_key":"63574","_from":"1544","_to":"39783"} +{"$label":"ACTS_IN","name":"Mays Gilliam","type":"Role","_key":"56600","_from":"1544","_to":"35958"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"55111","_from":"1544","_to":"35188"} +{"$label":"ACTS_IN","name":"Caretaker","type":"Role","_key":"52910","_from":"1544","_to":"34291"} +{"$label":"ACTS_IN","name":"Mooseblood","type":"Role","_key":"37855","_from":"1544","_to":"25647"} +{"$label":"ACTS_IN","name":"Jake Hayes\/Kevin Pope\/Michael Turner","type":"Role","_key":"26233","_from":"1544","_to":"18839"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"15810","_from":"1544","_to":"12037"} +{"$label":"ACTS_IN","name":"Marty (voice)","type":"Role","_key":"11363","_from":"1544","_to":"8959"} +{"$label":"ACTS_IN","name":"Det.Lee Butters","type":"Role","_key":"11271","_from":"1544","_to":"8897"} +{"$label":"ACTS_IN","name":"Comedian (voice)","type":"Role","_key":"7704","_from":"1544","_to":"6393"} +{"$label":"DIRECTED","_key":"100246","_from":"1544","_to":"59123"} +{"$label":"DIRECTED","_key":"56620","_from":"1544","_to":"35958"} +{"$label":"DIRECTED","_key":"1796","_from":"1555","_to":"1545"} +{"$label":"ACTS_IN","name":"Expert Disc Warrior","type":"Role","_key":"1795","_from":"1554","_to":"1545"} +{"$label":"ACTS_IN","name":"Warrior #2","type":"Role","_key":"1794","_from":"1553","_to":"1545"} +{"$label":"ACTS_IN","name":"Warrior #1","type":"Role","_key":"1793","_from":"1552","_to":"1545"} +{"$label":"ACTS_IN","name":"Peter\/Sark's Lieutenant","type":"Role","_key":"1792","_from":"1551","_to":"1545"} +{"$label":"ACTS_IN","name":"Crom","type":"Role","_key":"1791","_from":"1550","_to":"1545"} +{"$label":"ACTS_IN","name":"Ram\/Popcorn Co-Worker","type":"Role","_key":"1790","_from":"1549","_to":"1545"} +{"$label":"ACTS_IN","name":"Dr. Walter Gibbs\/Dumont","type":"Role","_key":"1789","_from":"1548","_to":"1545"} +{"$label":"ACTS_IN","name":"Lora\/Yori","type":"Role","_key":"1788","_from":"1547","_to":"1545"} +{"$label":"ACTS_IN","name":"Ed Dillinger\/Sark\/Voice of Master Control Program","type":"Role","_key":"1787","_from":"1546","_to":"1545"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"102398","_from":"1546","_to":"60253"} +{"$label":"ACTS_IN","name":"Lord Downey","type":"Role","_key":"72713","_from":"1546","_to":"43814"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"72678","_from":"1546","_to":"43799"} +{"$label":"ACTS_IN","name":"Dr. Alfred Necessiter","type":"Role","_key":"70942","_from":"1546","_to":"43098"} +{"$label":"ACTS_IN","name":"Hauptmann Kiesel","type":"Role","_key":"66101","_from":"1546","_to":"40895"} +{"$label":"ACTS_IN","name":"David Nau","type":"Role","_key":"47688","_from":"1546","_to":"31415"} +{"$label":"ACTS_IN","name":"Mr. Blifil","type":"Role","_key":"39415","_from":"1546","_to":"26641"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"25410","_from":"1546","_to":"18319"} +{"$label":"ACTS_IN","name":"Summerlee","type":"Role","_key":"24689","_from":"1546","_to":"17858"} +{"$label":"ACTS_IN","name":"Dr. Wrenn","type":"Role","_key":"22517","_from":"1546","_to":"16363"} +{"$label":"ACTS_IN","name":"Henry Niles","type":"Role","_key":"11759","_from":"1546","_to":"9219"} +{"$label":"ACTS_IN","name":"Keith Jennings","type":"Role","_key":"9367","_from":"1546","_to":"7561"} +{"$label":"ACTS_IN","name":"Spicer Lovejoy","type":"Role","_key":"7186","_from":"1546","_to":"6002"} +{"$label":"ACTS_IN","name":"Chancellor Gorkon","type":"Role","_key":"2685","_from":"1546","_to":"2329"} +{"$label":"ACTS_IN","name":"St. John Talbot","type":"Role","_key":"2658","_from":"1546","_to":"2311"} +{"$label":"ACTS_IN","name":"Aurelius Hogue","type":"Role","_key":"72185","_from":"1548","_to":"43625"} +{"$label":"ACTS_IN","name":"Father Maurice","type":"Role","_key":"42788","_from":"1548","_to":"28626"} +{"$label":"ACTS_IN","name":"Mr. Rafiel","type":"Role","_key":"41369","_from":"1548","_to":"27804"} +{"$label":"ACTS_IN","name":"Doctor Helm","type":"Role","_key":"34969","_from":"1548","_to":"23872"} +{"$label":"ACTS_IN","name":"Towny","type":"Role","_key":"26103","_from":"1548","_to":"18751"} +{"$label":"ACTS_IN","name":"Billy the Kid","type":"Role","_key":"14645","_from":"1549","_to":"11280"} +{"$label":"ACTS_IN","name":"Londo Mollari","type":"Role","_key":"66885","_from":"1550","_to":"41298"} +{"$label":"ACTS_IN","name":"Dr. Rosen","type":"Role","_key":"22291","_from":"1550","_to":"16209"} +{"$label":"DIRECTED","_key":"119358","_from":"1555","_to":"70136"} +{"$label":"ACTS_IN","name":"Lucius","type":"Role","_key":"1810","_from":"1567","_to":"1556"} +{"$label":"ACTS_IN","name":"Cicero","type":"Role","_key":"1809","_from":"1566","_to":"1556"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"1808","_from":"1565","_to":"1556"} +{"$label":"ACTS_IN","name":"Quintus","type":"Role","_key":"1807","_from":"1564","_to":"1556"} +{"$label":"ACTS_IN","name":"Gaius","type":"Role","_key":"1806","_from":"1563","_to":"1556"} +{"$label":"ACTS_IN","name":"Falco","type":"Role","_key":"1805","_from":"1562","_to":"1556"} +{"$label":"ACTS_IN","name":"Juba","type":"Role","_key":"1804","_from":"1561","_to":"1556"} +{"$label":"ACTS_IN","name":"Gracchus","type":"Role","_key":"1803","_from":"1560","_to":"1556"} +{"$label":"ACTS_IN","name":"Proximo","type":"Role","_key":"1801","_from":"1559","_to":"1556"} +{"$label":"ACTS_IN","name":"Lucilla","type":"Role","_key":"1800","_from":"1558","_to":"1556"} +{"$label":"ACTS_IN","name":"Maximus","type":"Role","_key":"1798","_from":"1557","_to":"1556"} +{"$label":"ACTS_IN","name":"Cal McAffrey","type":"Role","_key":"110767","_from":"1557","_to":"65435"} +{"$label":"ACTS_IN","name":"Kim Barry","type":"Role","_key":"110684","_from":"1557","_to":"65381"} +{"$label":"ACTS_IN","name":"John Biebe","type":"Role","_key":"103558","_from":"1557","_to":"60910"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"102402","_from":"1557","_to":"60259"} +{"$label":"ACTS_IN","name":"Ed Hoffman","type":"Role","_key":"88095","_from":"1557","_to":"52284"} +{"$label":"ACTS_IN","name":"Cort","type":"Role","_key":"88052","_from":"1557","_to":"52269"} +{"$label":"ACTS_IN","name":"Terry Thorne","type":"Role","_key":"73142","_from":"1557","_to":"43989"} +{"$label":"ACTS_IN","name":"Hando","type":"Role","_key":"63081","_from":"1557","_to":"39579"} +{"$label":"ACTS_IN","name":"Max Skinner","type":"Role","_key":"56046","_from":"1557","_to":"35624"} +{"$label":"ACTS_IN","name":"SID 6.7","type":"Role","_key":"52754","_from":"1557","_to":"34229"} +{"$label":"ACTS_IN","name":"Jeffrey Wigand","type":"Role","_key":"51972","_from":"1557","_to":"33895"} +{"$label":"ACTS_IN","name":"Captain Jack Aubrey","type":"Role","_key":"50274","_from":"1557","_to":"32851"} +{"$label":"ACTS_IN","name":"Ben Wade","type":"Role","_key":"36262","_from":"1557","_to":"24605"} +{"$label":"ACTS_IN","name":"Richie Roberts","type":"Role","_key":"35313","_from":"1557","_to":"24057"} +{"$label":"ACTS_IN","name":"Bud White","type":"Role","_key":"18474","_from":"1557","_to":"13688"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"17163","_from":"1557","_to":"12858"} +{"$label":"ACTS_IN","name":"Jim Braddock","type":"Role","_key":"10945","_from":"1557","_to":"8677"} +{"$label":"ACTS_IN","name":"John Nash","type":"Role","_key":"5636","_from":"1557","_to":"4805"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"93194","_from":"1558","_to":"54916"} +{"$label":"ACTS_IN","name":"Osborne","type":"Role","_key":"65746","_from":"1558","_to":"40705"} +{"$label":"ACTS_IN","name":"Abby Durrell","type":"Role","_key":"64722","_from":"1558","_to":"40298"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"53776","_from":"1558","_to":"34657"} +{"$label":"ACTS_IN","name":"Nina Yorkin","type":"Role","_key":"53328","_from":"1558","_to":"34478"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"48997","_from":"1558","_to":"32116"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"28843","_from":"1558","_to":"20617"} +{"$label":"ACTS_IN","name":"Terri Fisher","type":"Role","_key":"17978","_from":"1558","_to":"13369"} +{"$label":"ACTS_IN","name":"Christabella Andreoli","type":"Role","_key":"15695","_from":"1558","_to":"11965"} +{"$label":"ACTS_IN","name":"Harry Cobtree","type":"Role","_key":"119208","_from":"1559","_to":"70041"} +{"$label":"ACTS_IN","name":"Bill Sikes","type":"Role","_key":"114367","_from":"1559","_to":"67368"} +{"$label":"ACTS_IN","name":"Vulcan","type":"Role","_key":"100548","_from":"1559","_to":"59305"} +{"$label":"ACTS_IN","name":"Ben Rolf","type":"Role","_key":"95145","_from":"1559","_to":"55990"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"89241","_from":"1559","_to":"52844"} +{"$label":"ACTS_IN","name":"Frank Hobbs","type":"Role","_key":"69151","_from":"1559","_to":"42295"} +{"$label":"ACTS_IN","name":"Michael Caldwell","type":"Role","_key":"40683","_from":"1559","_to":"27383"} +{"$label":"ACTS_IN","name":"Hugh Lombard","type":"Role","_key":"34493","_from":"1559","_to":"23625"} +{"$label":"ACTS_IN","name":"Vito Cipriani","type":"Role","_key":"34000","_from":"1559","_to":"23394"} +{"$label":"ACTS_IN","name":"Clubbesitzer","type":"Role","_key":"25072","_from":"1559","_to":"18109"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"24341","_from":"1559","_to":"17626"} +{"$label":"ACTS_IN","name":"Eddie Mars","type":"Role","_key":"15712","_from":"1559","_to":"11975"} +{"$label":"ACTS_IN","name":"Dr. Nathan Gross","type":"Role","_key":"116509","_from":"1560","_to":"68578"} +{"$label":"ACTS_IN","name":"Nigel Dewberry","type":"Role","_key":"114701","_from":"1560","_to":"67565"} +{"$label":"ACTS_IN","name":"The Tramp \/ Charles Dickens","type":"Role","_key":"107867","_from":"1560","_to":"63704"} +{"$label":"ACTS_IN","name":"Nicodemus (voice)","type":"Role","_key":"71664","_from":"1560","_to":"43389"} +{"$label":"ACTS_IN","name":"Franklyn Madson","type":"Role","_key":"70191","_from":"1560","_to":"42779"} +{"$label":"ACTS_IN","name":"Chorus","type":"Role","_key":"65151","_from":"1560","_to":"40473"} +{"$label":"ACTS_IN","name":"Claudius","type":"Role","_key":"64008","_from":"1560","_to":"39964"} +{"$label":"ACTS_IN","name":"Narrator ( voice )","type":"Role","_key":"37370","_from":"1560","_to":"25326"} +{"$label":"ACTS_IN","name":"Probert","type":"Role","_key":"36880","_from":"1560","_to":"24998"} +{"$label":"ACTS_IN","name":"Francis Bacon","type":"Role","_key":"35256","_from":"1560","_to":"24006"} +{"$label":"ACTS_IN","name":"Caron","type":"Role","_key":"34680","_from":"1560","_to":"23728"} +{"$label":"ACTS_IN","name":"Kurt Limmer","type":"Role","_key":"33037","_from":"1560","_to":"22898"} +{"$label":"ACTS_IN","name":"Magisterial Emissary","type":"Role","_key":"19916","_from":"1560","_to":"14664"} +{"$label":"ACTS_IN","name":"Alexander Corvinus","type":"Role","_key":"9849","_from":"1560","_to":"7897"} +{"$label":"ACTS_IN","name":"Agent Henry Carver","type":"Role","_key":"94588","_from":"1561","_to":"55732"} +{"$label":"ACTS_IN","name":"Motherland","type":"Role","_key":"89060","_from":"1561","_to":"52762"} +{"$label":"ACTS_IN","name":"Cinque","type":"Role","_key":"72256","_from":"1561","_to":"43655"} +{"$label":"ACTS_IN","name":"Mateo","type":"Role","_key":"63763","_from":"1561","_to":"39869"} +{"$label":"ACTS_IN","name":"Woodhead","type":"Role","_key":"59880","_from":"1561","_to":"37818"} +{"$label":"ACTS_IN","name":"Abou Fatma","type":"Role","_key":"52519","_from":"1561","_to":"34152"} +{"$label":"ACTS_IN","name":"Jean Roqua","type":"Role","_key":"49895","_from":"1561","_to":"32664"} +{"$label":"ACTS_IN","name":"Ajihad","type":"Role","_key":"21675","_from":"1561","_to":"15842"} +{"$label":"ACTS_IN","name":"Kosa","type":"Role","_key":"17310","_from":"1561","_to":"12952"} +{"$label":"ACTS_IN","name":"Albert Laurent","type":"Role","_key":"14484","_from":"1561","_to":"11190"} +{"$label":"ACTS_IN","name":"Solomon Vandy","type":"Role","_key":"12732","_from":"1561","_to":"9942"} +{"$label":"ACTS_IN","name":"Midnite","type":"Role","_key":"6730","_from":"1561","_to":"5655"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"26996","_from":"1562","_to":"19414"} +{"$label":"ACTS_IN","name":"Erwin von Witzleben","type":"Role","_key":"19704","_from":"1562","_to":"14564"} +{"$label":"ACTS_IN","name":"Dart Player","type":"Role","_key":"9595","_from":"1562","_to":"7723"} +{"$label":"ACTS_IN","name":"Crowley","type":"Role","_key":"101868","_from":"1563","_to":"59958"} +{"$label":"ACTS_IN","name":"Michael Kuhn","type":"Role","_key":"56525","_from":"1563","_to":"35892"} +{"$label":"ACTS_IN","name":"Admiral Bratyeev","type":"Role","_key":"50355","_from":"1563","_to":"32894"} +{"$label":"ACTS_IN","name":"Nestor","type":"Role","_key":"7799","_from":"1563","_to":"6469"} +{"$label":"ACTS_IN","name":"PR Chief","type":"Role","_key":"6160","_from":"1563","_to":"5213"} +{"$label":"ACTS_IN","name":"Aronson","type":"Role","_key":"102295","_from":"1564","_to":"60192"} +{"$label":"ACTS_IN","name":"Greg Portman","type":"Role","_key":"7357","_from":"1564","_to":"6132"} +{"$label":"ACTS_IN","name":"Warden Arnold Calgrove","type":"Role","_key":"104397","_from":"1565","_to":"61413"} +{"$label":"ACTS_IN","name":"Boyle","type":"Role","_key":"90985","_from":"1565","_to":"53683"} +{"$label":"ACTS_IN","name":"King Thorkilt","type":"Role","_key":"68425","_from":"1565","_to":"41974"} +{"$label":"ACTS_IN","name":"Brick Bardo","type":"Role","_key":"61145","_from":"1565","_to":"38640"} +{"$label":"ACTS_IN","name":"Sven Hansen","type":"Role","_key":"60710","_from":"1565","_to":"38339"} +{"$label":"ACTS_IN","name":"GR76","type":"Role","_key":"53288","_from":"1565","_to":"34455"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47533","_from":"1565","_to":"31322"} +{"$label":"ACTS_IN","name":"Officier John","type":"Role","_key":"23090","_from":"1565","_to":"16741"} +{"$label":"ACTS_IN","name":"Ulfar","type":"Role","_key":"13596","_from":"1565","_to":"10570"} +{"$label":"ACTS_IN","name":"Bleda","type":"Role","_key":"118330","_from":"1566","_to":"69556"} +{"$label":"ACTS_IN","name":"Derek (as Thomas Flannigan)","type":"Role","_key":"109283","_from":"1566","_to":"64563"} +{"$label":"ACTS_IN","name":"Williamson","type":"Role","_key":"97699","_from":"1566","_to":"57527"} +{"$label":"ACTS_IN","name":"Stranger","type":"Role","_key":"60011","_from":"1566","_to":"37876"} +{"$label":"ACTS_IN","name":"Pvt Dennis Baker","type":"Role","_key":"24270","_from":"1566","_to":"17581"} +{"$label":"ACTS_IN","name":"Mark Verheiden","type":"Role","_key":"5028","_from":"1566","_to":"4273"} +{"$label":"ACTS_IN","name":"Morrison","type":"Role","_key":"2943","_from":"1566","_to":"2514"} +{"$label":"ACTS_IN","name":"Timothy","type":"Role","_key":"69149","_from":"1567","_to":"42293"} +{"$label":"ACTS_IN","name":"Joseph Dunn","type":"Role","_key":"56226","_from":"1567","_to":"35727"} +{"$label":"ACTS_IN","name":"Grant Faraday","type":"Role","_key":"11894","_from":"1567","_to":"9323"} +{"$label":"ACTS_IN","name":"Silent Ray Harris","type":"Role","_key":"4471","_from":"1567","_to":"3810"} +{"$label":"ACTS_IN","name":"Yael","type":"Role","_key":"1826","_from":"1583","_to":"1568"} +{"$label":"ACTS_IN","name":"Malena","type":"Role","_key":"1825","_from":"1582","_to":"1568"} +{"$label":"ACTS_IN","name":"Doctor 2","type":"Role","_key":"1824","_from":"1581","_to":"1568"} +{"$label":"ACTS_IN","name":"Doctor 1","type":"Role","_key":"1823","_from":"1580","_to":"1568"} +{"$label":"ACTS_IN","name":"Actor \"Doctor\"","type":"Role","_key":"1822","_from":"1579","_to":"1568"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"1821","_from":"1578","_to":"1568"} +{"$label":"ACTS_IN","name":"Rosa's Father","type":"Role","_key":"1820","_from":"1577","_to":"1568"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"1819","_from":"1576","_to":"1568"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"1818","_from":"1575","_to":"1568"} +{"$label":"ACTS_IN","name":"Rosa's Mother","type":"Role","_key":"1817","_from":"1574","_to":"1568"} +{"$label":"ACTS_IN","name":"Agrado","type":"Role","_key":"1816","_from":"1573","_to":"1568"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"1815","_from":"1572","_to":"1568"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"1814","_from":"1571","_to":"1568"} +{"$label":"ACTS_IN","name":"Huma","type":"Role","_key":"1813","_from":"1570","_to":"1568"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"1812","_from":"1569","_to":"1568"} +{"$label":"ACTS_IN","name":"Chica","type":"Role","_key":"48554","_from":"1569","_to":"31857"} +{"$label":"ACTS_IN","name":"Merche","type":"Role","_key":"48532","_from":"1569","_to":"31846"} +{"$label":"ACTS_IN","name":"Sexilia","type":"Role","_key":"48510","_from":"1569","_to":"31842"} +{"$label":"ACTS_IN","name":"Presentadora","type":"Role","_key":"32164","_from":"1569","_to":"22417"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"32110","_from":"1569","_to":"22375"} +{"$label":"ACTS_IN","name":"Sor Esti\u00e9rcol","type":"Role","_key":"48523","_from":"1570","_to":"31846"} +{"$label":"ACTS_IN","name":"Zoila G\u00f3mez","type":"Role","_key":"32177","_from":"1570","_to":"22425"} +{"$label":"ACTS_IN","name":"Leo Mac\u00edas","type":"Role","_key":"30907","_from":"1570","_to":"21662"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"13256","_from":"1570","_to":"10315"} +{"$label":"ACTS_IN","name":"Madre di Dora","type":"Role","_key":"7593","_from":"1570","_to":"6311"} +{"$label":"ACTS_IN","name":"Juarez the Guinea Pig (voice)","type":"Role","_key":"120467","_from":"1571","_to":"70764"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"117531","_from":"1571","_to":"69106"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"111065","_from":"1571","_to":"65605"} +{"$label":"ACTS_IN","name":"Isabella Oliveira","type":"Role","_key":"101195","_from":"1571","_to":"59608"} +{"$label":"ACTS_IN","name":"Anna\/Melodia","type":"Role","_key":"94860","_from":"1571","_to":"55857"} +{"$label":"ACTS_IN","name":"Consuela Castillo","type":"Role","_key":"71454","_from":"1571","_to":"43319"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"61633","_from":"1571","_to":"38839"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"48169","_from":"1571","_to":"31649"} +{"$label":"ACTS_IN","name":"Eva Rojas","type":"Role","_key":"46625","_from":"1571","_to":"30794"} +{"$label":"ACTS_IN","name":"Mar\u00eda Elena","type":"Role","_key":"35592","_from":"1571","_to":"24189"} +{"$label":"ACTS_IN","name":"Chloe Sava","type":"Role","_key":"35221","_from":"1571","_to":"23991"} +{"$label":"ACTS_IN","name":"Silvia","type":"Role","_key":"32194","_from":"1571","_to":"22444"} +{"$label":"ACTS_IN","name":"Mirtha Jung","type":"Role","_key":"29704","_from":"1571","_to":"21034"} +{"$label":"ACTS_IN","name":"Luz","type":"Role","_key":"21656","_from":"1571","_to":"15835"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"17088","_from":"1571","_to":"12809"} +{"$label":"ACTS_IN","name":"Sofia Serrano","type":"Role","_key":"16432","_from":"1571","_to":"12427"} +{"$label":"ACTS_IN","name":"Sof\u00eda","type":"Role","_key":"16425","_from":"1571","_to":"12423"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"16118","_from":"1571","_to":"12247"} +{"$label":"ACTS_IN","name":"Pelagia","type":"Role","_key":"15238","_from":"1571","_to":"11670"} +{"$label":"ACTS_IN","name":"Josepha O'Neil","type":"Role","_key":"12596","_from":"1571","_to":"9849"} +{"$label":"ACTS_IN","name":"Isabel Plaza Caballero","type":"Role","_key":"3804","_from":"1571","_to":"3261"} +{"$label":"ACTS_IN","name":"Raimunda","type":"Role","_key":"3147","_from":"1571","_to":"2696"} +{"$label":"ACTS_IN","name":"Trini","type":"Role","_key":"21924","_from":"1572","_to":"16014"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"13112","_from":"1572","_to":"10222"} +{"$label":"ACTS_IN","name":"Caye","type":"Role","_key":"12075","_from":"1572","_to":"9465"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"13113","_from":"1574","_to":"10222"} +{"$label":"ACTS_IN","name":"Jofr\u00e9 Borgia","type":"Role","_key":"106439","_from":"1576","_to":"62703"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"32117","_from":"1577","_to":"22383"} +{"$label":"ACTS_IN","name":"Manolo","type":"Role","_key":"21659","_from":"1577","_to":"15835"} +{"$label":"ACTS_IN","name":"Iv\u00e1n","type":"Role","_key":"30095","_from":"1579","_to":"21209"} +{"$label":"ACTS_IN","name":"Inspector de polic\u00eda","type":"Role","_key":"29528","_from":"1579","_to":"20917"} +{"$label":"ACTS_IN","name":"Zamora","type":"Role","_key":"25792","_from":"1579","_to":"18564"} +{"$label":"ACTS_IN","name":"Gald\u00f3s","type":"Role","_key":"21333","_from":"1579","_to":"15592"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"28802","_from":"1580","_to":"20579"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"1848","_from":"1606","_to":"1584"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"1847","_from":"1605","_to":"1584"} +{"$label":"ACTS_IN","name":"Rory Breaker","type":"Role","_key":"1846","_from":"1604","_to":"1584"} +{"$label":"ACTS_IN","name":"Nick the Greek","type":"Role","_key":"1845","_from":"1603","_to":"1584"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"1844","_from":"1602","_to":"1584"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"1843","_from":"1601","_to":"1584"} +{"$label":"ACTS_IN","name":"Plank","type":"Role","_key":"1842","_from":"1600","_to":"1584"} +{"$label":"ACTS_IN","name":"Dog","type":"Role","_key":"1841","_from":"1599","_to":"1584"} +{"$label":"ACTS_IN","name":"'Hatchet' Harry Lonsdale","type":"Role","_key":"1840","_from":"1598","_to":"1584"} +{"$label":"ACTS_IN","name":"Little Chris","type":"Role","_key":"1839","_from":"1597","_to":"1584"} +{"$label":"ACTS_IN","name":"Barry the Baptist","type":"Role","_key":"1838","_from":"1596","_to":"1584"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"1837","_from":"1595","_to":"1584"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"1836","_from":"1594","_to":"1584"} +{"$label":"ACTS_IN","name":"J","type":"Role","_key":"1835","_from":"1593","_to":"1584"} +{"$label":"ACTS_IN","name":"JD","type":"Role","_key":"1834","_from":"1592","_to":"1584"} +{"$label":"ACTS_IN","name":"Big Chris","type":"Role","_key":"1833","_from":"1591","_to":"1584"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"1832","_from":"1590","_to":"1584"} +{"$label":"ACTS_IN","name":"Bacon","type":"Role","_key":"1831","_from":"1589","_to":"1584"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"1830","_from":"1588","_to":"1584"} +{"$label":"ACTS_IN","name":"Soap","type":"Role","_key":"1829","_from":"1587","_to":"1584"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"1828","_from":"1586","_to":"1584"} +{"$label":"DIRECTED","_key":"1827","_from":"1585","_to":"1584"} +{"$label":"DIRECTED","_key":"96784","_from":"1585","_to":"56924"} +{"$label":"DIRECTED","_key":"91503","_from":"1585","_to":"53941"} +{"$label":"DIRECTED","_key":"66232","_from":"1585","_to":"40976"} +{"$label":"DIRECTED","_key":"63860","_from":"1585","_to":"39907"} +{"$label":"DIRECTED","_key":"1905","_from":"1585","_to":"1658"} +{"$label":"ACTS_IN","name":"Man Reading Newspaper (uncredited)","type":"Role","_key":"1921","_from":"1585","_to":"1658"} +{"$label":"ACTS_IN","name":"Calibos \/ Acrisius","type":"Role","_key":"117648","_from":"1586","_to":"69157"} +{"$label":"ACTS_IN","name":"Don Roberts CEO","type":"Role","_key":"107870","_from":"1586","_to":"63704"} +{"$label":"ACTS_IN","name":"Frederick Pope (Oxford)","type":"Role","_key":"99421","_from":"1586","_to":"58590"} +{"$label":"ACTS_IN","name":"Larry Byrne","type":"Role","_key":"94960","_from":"1586","_to":"55920"} +{"$label":"ACTS_IN","name":"Stumbo","type":"Role","_key":"90494","_from":"1586","_to":"53461"} +{"$label":"ACTS_IN","name":"Bobby Beers","type":"Role","_key":"89946","_from":"1586","_to":"53214"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"71936","_from":"1586","_to":"43521"} +{"$label":"ACTS_IN","name":"Brian Cervier","type":"Role","_key":"63210","_from":"1586","_to":"39632"} +{"$label":"ACTS_IN","name":"Capt. Fleming","type":"Role","_key":"60443","_from":"1586","_to":"38129"} +{"$label":"ACTS_IN","name":"Bob Likely","type":"Role","_key":"59092","_from":"1586","_to":"37302"} +{"$label":"ACTS_IN","name":"Dr. Henry Jekyll \/ Edward Hyde","type":"Role","_key":"50541","_from":"1586","_to":"33007"} +{"$label":"ACTS_IN","name":"Cpl. Baumann","type":"Role","_key":"46740","_from":"1586","_to":"30841"} +{"$label":"ACTS_IN","name":"Thomas Button","type":"Role","_key":"34781","_from":"1586","_to":"23771"} +{"$label":"ACTS_IN","name":"Crazy Larry","type":"Role","_key":"34325","_from":"1586","_to":"23533"} +{"$label":"ACTS_IN","name":"Primus","type":"Role","_key":"19957","_from":"1586","_to":"14696"} +{"$label":"ACTS_IN","name":"Netley, the Coachman","type":"Role","_key":"9013","_from":"1586","_to":"7296"} +{"$label":"ACTS_IN","name":"Darren","type":"Role","_key":"1917","_from":"1586","_to":"1658"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"120430","_from":"1587","_to":"70750"} +{"$label":"ACTS_IN","name":"Lee McCall","type":"Role","_key":"118170","_from":"1587","_to":"69449"} +{"$label":"ACTS_IN","name":"Ned Dobb","type":"Role","_key":"91096","_from":"1587","_to":"53749"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"34317","_from":"1587","_to":"23533"} +{"$label":"ACTS_IN","name":"Thomas Ellison","type":"Role","_key":"22637","_from":"1587","_to":"16415"} +{"$label":"ACTS_IN","name":"Terry Martin","type":"Role","_key":"27823","_from":"1588","_to":"19944"} +{"$label":"ACTS_IN","name":"Pvt Alan Ives","type":"Role","_key":"24271","_from":"1588","_to":"17581"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"110391","_from":"1589","_to":"65227"} +{"$label":"ACTS_IN","name":"Chev Chelios","type":"Role","_key":"103137","_from":"1589","_to":"60667"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"94238","_from":"1589","_to":"55498"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"66233","_from":"1589","_to":"40976"} +{"$label":"ACTS_IN","name":"MVA Agent Evan Funsch","type":"Role","_key":"65850","_from":"1589","_to":"40750"} +{"$label":"ACTS_IN","name":"Handsome Rob","type":"Role","_key":"65660","_from":"1589","_to":"40679"} +{"$label":"ACTS_IN","name":"Jensen Ames","type":"Role","_key":"63593","_from":"1589","_to":"39790"} +{"$label":"ACTS_IN","name":"Special Agent Jack Crawford","type":"Role","_key":"63279","_from":"1589","_to":"39669"} +{"$label":"ACTS_IN","name":"Sgt. Jericho Butler","type":"Role","_key":"59467","_from":"1589","_to":"37557"} +{"$label":"ACTS_IN","name":"Mr. B","type":"Role","_key":"59156","_from":"1589","_to":"37349"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"59082","_from":"1589","_to":"37302"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"56380","_from":"1589","_to":"35817"} +{"$label":"ACTS_IN","name":"Handsome Rob","type":"Role","_key":"55306","_from":"1589","_to":"35264"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"53178","_from":"1589","_to":"34401"} +{"$label":"ACTS_IN","name":"Terry Leather","type":"Role","_key":"51080","_from":"1589","_to":"33334"} +{"$label":"ACTS_IN","name":"Bateman","type":"Role","_key":"47054","_from":"1589","_to":"31034"} +{"$label":"ACTS_IN","name":"Det. Quentin Conners","type":"Role","_key":"36950","_from":"1589","_to":"25052"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"29630","_from":"1589","_to":"20977"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"20317","_from":"1589","_to":"14887"} +{"$label":"ACTS_IN","name":"Chev Chelios","type":"Role","_key":"16903","_from":"1589","_to":"12710"} +{"$label":"ACTS_IN","name":"Turkish","type":"Role","_key":"1906","_from":"1589","_to":"1658"} +{"$label":"ACTS_IN","name":"Josh Tambini","type":"Role","_key":"117376","_from":"1590","_to":"69039"} +{"$label":"ACTS_IN","name":"Rolfe","type":"Role","_key":"107900","_from":"1590","_to":"63713"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"104329","_from":"1590","_to":"61380"} +{"$label":"ACTS_IN","name":"Andreas Tanis","type":"Role","_key":"89484","_from":"1590","_to":"52980"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"89344","_from":"1590","_to":"52881"} +{"$label":"ACTS_IN","name":"Zeloty","type":"Role","_key":"25878","_from":"1590","_to":"18633"} +{"$label":"ACTS_IN","name":"Gunther Zeloty","type":"Role","_key":"25811","_from":"1590","_to":"18581"} +{"$label":"ACTS_IN","name":"Andreas Tanis","type":"Role","_key":"9851","_from":"1590","_to":"7897"} +{"$label":"ACTS_IN","name":"Dr. Sullitzer","type":"Role","_key":"2347","_from":"1590","_to":"2066"} +{"$label":"ACTS_IN","name":"Mr. Hunter","type":"Role","_key":"119571","_from":"1591","_to":"70238"} +{"$label":"ACTS_IN","name":"The Extractor","type":"Role","_key":"111725","_from":"1591","_to":"65952"} +{"$label":"ACTS_IN","name":"Mike Sullivan","type":"Role","_key":"107866","_from":"1591","_to":"63704"} +{"$label":"ACTS_IN","name":"Hired Killer","type":"Role","_key":"107300","_from":"1591","_to":"63279"} +{"$label":"ACTS_IN","name":"Roddy","type":"Role","_key":"102938","_from":"1591","_to":"60550"} +{"$label":"ACTS_IN","name":"McStarley","type":"Role","_key":"101221","_from":"1591","_to":"59620"} +{"$label":"ACTS_IN","name":"Mahogany","type":"Role","_key":"61521","_from":"1591","_to":"38797"} +{"$label":"ACTS_IN","name":"Danny Meehan","type":"Role","_key":"59081","_from":"1591","_to":"37302"} +{"$label":"ACTS_IN","name":"The Sphinx","type":"Role","_key":"55518","_from":"1591","_to":"35364"} +{"$label":"ACTS_IN","name":"Dinklage","type":"Role","_key":"55323","_from":"1591","_to":"35273"} +{"$label":"ACTS_IN","name":"Bullet Tooth Tony","type":"Role","_key":"1909","_from":"1591","_to":"1658"} +{"$label":"ACTS_IN","name":"Ace Face","type":"Role","_key":"62870","_from":"1592","_to":"39502"} +{"$label":"ACTS_IN","name":"Sting","type":"Role","_key":"37860","_from":"1592","_to":"25647"} +{"$label":"ACTS_IN","name":"Feyd-Rautha","type":"Role","_key":"9944","_from":"1592","_to":"7956"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"72671","_from":"1593","_to":"43797"} +{"$label":"ACTS_IN","name":"D.I. Willis \/ Constable Frederick (as P H Moriarty)","type":"Role","_key":"107871","_from":"1598","_to":"63704"} +{"$label":"ACTS_IN","name":"Gurney Halleck","type":"Role","_key":"10424","_from":"1598","_to":"8289"} +{"$label":"ACTS_IN","name":"Jack Whomes","type":"Role","_key":"92221","_from":"1599","_to":"54418"} +{"$label":"ACTS_IN","name":"Billy Bright","type":"Role","_key":"62442","_from":"1599","_to":"39336"} +{"$label":"ACTS_IN","name":"Alan Paxton","type":"Role","_key":"5684","_from":"1599","_to":"4839"} +{"$label":"ACTS_IN","name":"Big Mike","type":"Role","_key":"108932","_from":"1603","_to":"64373"} +{"$label":"ACTS_IN","name":"Broadman","type":"Role","_key":"95122","_from":"1603","_to":"55975"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"113420","_from":"1604","_to":"66825"} +{"$label":"ACTS_IN","name":"Finny","type":"Role","_key":"60440","_from":"1604","_to":"38129"} +{"$label":"ACTS_IN","name":"Massive","type":"Role","_key":"59086","_from":"1604","_to":"37302"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"50146","_from":"1604","_to":"32793"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"103955","_from":"1605","_to":"61143"} +{"$label":"ACTS_IN","name":"The OPC","type":"Role","_key":"20635","_from":"1605","_to":"15083"} +{"$label":"ACTS_IN","name":"Piangi","type":"Role","_key":"57297","_from":"1606","_to":"36334"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"1859","_from":"1617","_to":"1607"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"1858","_from":"1616","_to":"1607"} +{"$label":"ACTS_IN","name":"Thomsen","type":"Role","_key":"1857","_from":"1615","_to":"1607"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"1856","_from":"1614","_to":"1607"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"1855","_from":"1613","_to":"1607"} +{"$label":"ACTS_IN","name":"Stine","type":"Role","_key":"1854","_from":"1612","_to":"1607"} +{"$label":"ACTS_IN","name":"Niels","type":"Role","_key":"1852","_from":"1611","_to":"1607"} +{"$label":"ACTS_IN","name":"Joachim","type":"Role","_key":"1851","_from":"1610","_to":"1607"} +{"$label":"ACTS_IN","name":"Cecilie","type":"Role","_key":"1850","_from":"1609","_to":"1607"} +{"$label":"DIRECTED","_key":"1849","_from":"1608","_to":"1607"} +{"$label":"DIRECTED","_key":"28853","_from":"1608","_to":"20622"} +{"$label":"DIRECTED","_key":"28842","_from":"1608","_to":"20617"} +{"$label":"DIRECTED","_key":"27840","_from":"1608","_to":"19951"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"117914","_from":"1609","_to":"69314"} +{"$label":"ACTS_IN","name":"Trine","type":"Role","_key":"68474","_from":"1609","_to":"42002"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"119631","_from":"1610","_to":"70275"} +{"$label":"ACTS_IN","name":"Claus Volter","type":"Role","_key":"106667","_from":"1610","_to":"62859"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"106496","_from":"1610","_to":"62740"} +{"$label":"ACTS_IN","name":"Jonas Bechmann","type":"Role","_key":"106383","_from":"1610","_to":"62681"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"102363","_from":"1610","_to":"60232"} +{"$label":"ACTS_IN","name":"Mr. Gray","type":"Role","_key":"94513","_from":"1610","_to":"55655"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"65450","_from":"1610","_to":"40575"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"61485","_from":"1610","_to":"38782"} +{"$label":"ACTS_IN","name":"Eigil","type":"Role","_key":"35233","_from":"1610","_to":"23998"} +{"$label":"ACTS_IN","name":"Jannik","type":"Role","_key":"28845","_from":"1610","_to":"20617"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"11799","_from":"1610","_to":"9254"} +{"$label":"ACTS_IN","name":"Jeppe","type":"Role","_key":"5609","_from":"1610","_to":"4779"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"3610","_from":"1610","_to":"3086"} +{"$label":"ACTS_IN","name":"Draco","type":"Role","_key":"117651","_from":"1611","_to":"69157"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"114565","_from":"1611","_to":"67490"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106678","_from":"1611","_to":"62865"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"102344","_from":"1611","_to":"60216"} +{"$label":"ACTS_IN","name":"Tonny","type":"Role","_key":"69164","_from":"1611","_to":"42301"} +{"$label":"ACTS_IN","name":"Arne","type":"Role","_key":"61484","_from":"1611","_to":"38782"} +{"$label":"ACTS_IN","name":"Tristan","type":"Role","_key":"54109","_from":"1611","_to":"34783"} +{"$label":"ACTS_IN","name":"Thomas Skepphult","type":"Role","_key":"53246","_from":"1611","_to":"34435"} +{"$label":"ACTS_IN","name":"Citron","type":"Role","_key":"51284","_from":"1611","_to":"33443"} +{"$label":"ACTS_IN","name":"Svend","type":"Role","_key":"35232","_from":"1611","_to":"23998"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"27831","_from":"1611","_to":"19951"} +{"$label":"ACTS_IN","name":"Tonny","type":"Role","_key":"17927","_from":"1611","_to":"13337"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"11795","_from":"1611","_to":"9254"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"2423","_from":"1611","_to":"2127"} +{"$label":"ACTS_IN","name":"Elly","type":"Role","_key":"106481","_from":"1613","_to":"62730"} +{"$label":"ACTS_IN","name":"Mor","type":"Role","_key":"106079","_from":"1613","_to":"62463"} +{"$label":"ACTS_IN","name":"Risberg","type":"Role","_key":"106070","_from":"1613","_to":"62460"} +{"$label":"ACTS_IN","name":"Moderen","type":"Role","_key":"4279","_from":"1613","_to":"3644"} +{"$label":"ACTS_IN","name":"Niller","type":"Role","_key":"118061","_from":"1614","_to":"69393"} +{"$label":"ACTS_IN","name":"Allentoft","type":"Role","_key":"28850","_from":"1614","_to":"20617"} +{"$label":"ACTS_IN","name":"Gunnar Torp","type":"Role","_key":"106489","_from":"1615","_to":"62738"} +{"$label":"ACTS_IN","name":"Martin Schiller","type":"Role","_key":"106385","_from":"1615","_to":"62681"} +{"$label":"ACTS_IN","name":"Inspektor W\u00f6rmer","type":"Role","_key":"43732","_from":"1615","_to":"29206"} +{"$label":"ACTS_IN","name":"Hans Erik Kolt","type":"Role","_key":"106493","_from":"1617","_to":"62738"} +{"$label":"ACTS_IN","name":"Policeman al rally","type":"Role","_key":"1870","_from":"1627","_to":"1618"} +{"$label":"ACTS_IN","name":"angry black man","type":"Role","_key":"1869","_from":"1626","_to":"1618"} +{"$label":"ACTS_IN","name":"Concession Girl","type":"Role","_key":"1868","_from":"1625","_to":"1618"} +{"$label":"ACTS_IN","name":"Senator Charles Palantine","type":"Role","_key":"1866","_from":"1624","_to":"1618"} +{"$label":"ACTS_IN","name":"Wizard","type":"Role","_key":"1865","_from":"1623","_to":"1618"} +{"$label":"ACTS_IN","name":"Iris Steensma","type":"Role","_key":"1864","_from":"1622","_to":"1618"} +{"$label":"ACTS_IN","name":"'Sport' Matthew","type":"Role","_key":"1863","_from":"1621","_to":"1618"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"1862","_from":"1620","_to":"1618"} +{"$label":"DIRECTED","_key":"1860","_from":"1619","_to":"1618"} +{"$label":"DIRECTED","_key":"118638","_from":"1619","_to":"69756"} +{"$label":"DIRECTED","_key":"107589","_from":"1619","_to":"63510"} +{"$label":"DIRECTED","_key":"97821","_from":"1619","_to":"57588"} +{"$label":"DIRECTED","_key":"90762","_from":"1619","_to":"53566"} +{"$label":"DIRECTED","_key":"72490","_from":"1619","_to":"43737"} +{"$label":"DIRECTED","_key":"69135","_from":"1619","_to":"42293"} +{"$label":"DIRECTED","_key":"67566","_from":"1619","_to":"41595"} +{"$label":"DIRECTED","_key":"66139","_from":"1619","_to":"40908"} +{"$label":"DIRECTED","_key":"63352","_from":"1619","_to":"39699"} +{"$label":"DIRECTED","_key":"56238","_from":"1619","_to":"35733"} +{"$label":"DIRECTED","_key":"55634","_from":"1619","_to":"35413"} +{"$label":"DIRECTED","_key":"50315","_from":"1619","_to":"32867"} +{"$label":"DIRECTED","_key":"47547","_from":"1619","_to":"31332"} +{"$label":"DIRECTED","_key":"39550","_from":"1619","_to":"26729"} +{"$label":"DIRECTED","_key":"26218","_from":"1619","_to":"18837"} +{"$label":"DIRECTED","_key":"22000","_from":"1619","_to":"16058"} +{"$label":"DIRECTED","_key":"14175","_from":"1619","_to":"10963"} +{"$label":"DIRECTED","_key":"13964","_from":"1619","_to":"10823"} +{"$label":"DIRECTED","_key":"13166","_from":"1619","_to":"10265"} +{"$label":"DIRECTED","_key":"9023","_from":"1619","_to":"7306"} +{"$label":"DIRECTED","_key":"6267","_from":"1619","_to":"5302"} +{"$label":"DIRECTED","_key":"3768","_from":"1619","_to":"3232"} +{"$label":"DIRECTED","_key":"2972","_from":"1619","_to":"2548"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97813","_from":"1619","_to":"57588"} +{"$label":"ACTS_IN","name":"Vincent Van Gogh","type":"Role","_key":"90005","_from":"1619","_to":"53243"} +{"$label":"ACTS_IN","name":"er selbst","type":"Role","_key":"39553","_from":"1619","_to":"26729"} +{"$label":"ACTS_IN","name":"House Owner","type":"Role","_key":"26229","_from":"1619","_to":"18837"} +{"$label":"ACTS_IN","name":"Cass","type":"Role","_key":"55272","_from":"1620","_to":"35249"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"48500","_from":"1620","_to":"31835"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"33521","_from":"1620","_to":"23182"} +{"$label":"ACTS_IN","name":"Brooke Carter","type":"Role","_key":"33503","_from":"1620","_to":"23176"} +{"$label":"ACTS_IN","name":"Daisy Miller","type":"Role","_key":"33493","_from":"1620","_to":"23170"} +{"$label":"ACTS_IN","name":"Corinne Jeffries","type":"Role","_key":"25385","_from":"1620","_to":"18305"} +{"$label":"ACTS_IN","name":"Benson","type":"Role","_key":"121106","_from":"1621","_to":"71125"} +{"$label":"ACTS_IN","name":"Feraud","type":"Role","_key":"118593","_from":"1621","_to":"69732"} +{"$label":"ACTS_IN","name":"Alonzo Scolara","type":"Role","_key":"111691","_from":"1621","_to":"65944"} +{"$label":"ACTS_IN","name":"SS-Oberscharfuhrer Eric Muhsfeldt","type":"Role","_key":"103542","_from":"1621","_to":"60906"} +{"$label":"ACTS_IN","name":"Jerry Bartowski","type":"Role","_key":"101994","_from":"1621","_to":"60016"} +{"$label":"ACTS_IN","name":"PJ Waters","type":"Role","_key":"96627","_from":"1621","_to":"56832"} +{"$label":"ACTS_IN","name":"Weldon Parish","type":"Role","_key":"90178","_from":"1621","_to":"53319"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"88277","_from":"1621","_to":"52363"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"67888","_from":"1621","_to":"41713"} +{"$label":"ACTS_IN","name":"Judas","type":"Role","_key":"67561","_from":"1621","_to":"41595"} +{"$label":"ACTS_IN","name":"Mickey Cohen","type":"Role","_key":"62663","_from":"1621","_to":"39415"} +{"$label":"ACTS_IN","name":"Augustus 'Auggie' Wren","type":"Role","_key":"61242","_from":"1621","_to":"38677"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"55491","_from":"1621","_to":"35362"} +{"$label":"ACTS_IN","name":"Jack Crawford","type":"Role","_key":"54503","_from":"1621","_to":"34932"} +{"$label":"ACTS_IN","name":"Lt. Tom Graham","type":"Role","_key":"45631","_from":"1621","_to":"30210"} +{"$label":"ACTS_IN","name":"Agent Sadusky","type":"Role","_key":"44491","_from":"1621","_to":"29641"} +{"$label":"ACTS_IN","name":"Frankie Zammeti","type":"Role","_key":"42773","_from":"1621","_to":"28621"} +{"$label":"ACTS_IN","name":"Auggie Wren","type":"Role","_key":"40178","_from":"1621","_to":"27113"} +{"$label":"ACTS_IN","name":"Nick Carr","type":"Role","_key":"32583","_from":"1621","_to":"22640"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32451","_from":"1621","_to":"22571"} +{"$label":"ACTS_IN","name":"James Hager","type":"Role","_key":"29807","_from":"1621","_to":"21092"} +{"$label":"ACTS_IN","name":"CPO Henry Klough","type":"Role","_key":"27680","_from":"1621","_to":"19835"} +{"$label":"ACTS_IN","name":"Roddy","type":"Role","_key":"27062","_from":"1621","_to":"19484"} +{"$label":"ACTS_IN","name":"Ray Donlan","type":"Role","_key":"18630","_from":"1621","_to":"13786"} +{"$label":"ACTS_IN","name":"Sadusky","type":"Role","_key":"17906","_from":"1621","_to":"13324"} +{"$label":"ACTS_IN","name":"Vince LaRocca","type":"Role","_key":"17414","_from":"1621","_to":"13020"} +{"$label":"ACTS_IN","name":"Investigator Hal Slocumb","type":"Role","_key":"13645","_from":"1621","_to":"10603"} +{"$label":"ACTS_IN","name":"Jacob Fuller","type":"Role","_key":"8872","_from":"1621","_to":"7204"} +{"$label":"ACTS_IN","name":"George Baines","type":"Role","_key":"8618","_from":"1621","_to":"7002"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"8203","_from":"1621","_to":"6746"} +{"$label":"ACTS_IN","name":"Mr. White\/Larry Dimmick","type":"Role","_key":"6047","_from":"1621","_to":"5129"} +{"$label":"ACTS_IN","name":"Roger Culkin","type":"Role","_key":"4692","_from":"1621","_to":"4008"} +{"$label":"ACTS_IN","name":"Charlie Cappa","type":"Role","_key":"2973","_from":"1621","_to":"2548"} +{"$label":"ACTS_IN","name":"Rynn Jacobs","type":"Role","_key":"121624","_from":"1622","_to":"71454"} +{"$label":"ACTS_IN","name":"Sister Assumpta","type":"Role","_key":"110215","_from":"1622","_to":"65143"} +{"$label":"ACTS_IN","name":"Annabel Andrews","type":"Role","_key":"106985","_from":"1622","_to":"63076"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"101089","_from":"1622","_to":"59565"} +{"$label":"ACTS_IN","name":"Sis a Rabbit","type":"Role","_key":"72556","_from":"1622","_to":"43753"} +{"$label":"ACTS_IN","name":"Dede Tate","type":"Role","_key":"70390","_from":"1622","_to":"42870"} +{"$label":"ACTS_IN","name":"Frannie Berry","type":"Role","_key":"69054","_from":"1622","_to":"42266"} +{"$label":"ACTS_IN","name":"Sarah Tobias","type":"Role","_key":"66371","_from":"1622","_to":"41050"} +{"$label":"ACTS_IN","name":"Alexandra Rover","type":"Role","_key":"63630","_from":"1622","_to":"39806"} +{"$label":"ACTS_IN","name":"Annabelle Bransford","type":"Role","_key":"53338","_from":"1622","_to":"34482"} +{"$label":"ACTS_IN","name":"Kyle Pratt","type":"Role","_key":"53069","_from":"1622","_to":"34352"} +{"$label":"ACTS_IN","name":"Tallulah","type":"Role","_key":"49862","_from":"1622","_to":"32644"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"34378","_from":"1622","_to":"23576"} +{"$label":"ACTS_IN","name":"Meg Altman","type":"Role","_key":"32533","_from":"1622","_to":"22626"} +{"$label":"ACTS_IN","name":"Erica Bain","type":"Role","_key":"31562","_from":"1622","_to":"22047"} +{"$label":"ACTS_IN","name":"Elodie Gordes","type":"Role","_key":"23888","_from":"1622","_to":"17312"} +{"$label":"ACTS_IN","name":"Nell Kellty","type":"Role","_key":"16866","_from":"1622","_to":"12688"} +{"$label":"ACTS_IN","name":"Anna Leonowens","type":"Role","_key":"13291","_from":"1622","_to":"10353"} +{"$label":"ACTS_IN","name":"Laurel Sommersby","type":"Role","_key":"11832","_from":"1622","_to":"9282"} +{"$label":"ACTS_IN","name":"Eleanor Arroway","type":"Role","_key":"8266","_from":"1622","_to":"6784"} +{"$label":"ACTS_IN","name":"Madeline White","type":"Role","_key":"4954","_from":"1622","_to":"4222"} +{"$label":"ACTS_IN","name":"Clarice Starling","type":"Role","_key":"3886","_from":"1622","_to":"3326"} +{"$label":"DIRECTED","_key":"70394","_from":"1622","_to":"42870"} +{"$label":"DIRECTED","_key":"52491","_from":"1622","_to":"34146"} +{"$label":"ACTS_IN","name":"Jocko Dundee","type":"Role","_key":"110115","_from":"1623","_to":"65070"} +{"$label":"ACTS_IN","name":"Jack McDermott","type":"Role","_key":"100754","_from":"1623","_to":"59407"} +{"$label":"ACTS_IN","name":"Father Time","type":"Role","_key":"96255","_from":"1623","_to":"56561"} +{"$label":"ACTS_IN","name":"Carl Lazlo, Esq.","type":"Role","_key":"91969","_from":"1623","_to":"54261"} +{"$label":"ACTS_IN","name":"Chief Orman","type":"Role","_key":"90014","_from":"1623","_to":"53250"} +{"$label":"ACTS_IN","name":"Police Chief Spiro T. Edsel","type":"Role","_key":"88902","_from":"1623","_to":"52665"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"71033","_from":"1623","_to":"43138"} +{"$label":"ACTS_IN","name":"Old Man Wickles","type":"Role","_key":"67366","_from":"1623","_to":"41514"} +{"$label":"ACTS_IN","name":"Sheppard","type":"Role","_key":"63939","_from":"1623","_to":"39936"} +{"$label":"ACTS_IN","name":"Cmdr. Lou Donnelly","type":"Role","_key":"54976","_from":"1623","_to":"35138"} +{"$label":"ACTS_IN","name":"Moe Shrevnitz","type":"Role","_key":"51111","_from":"1623","_to":"33346"} +{"$label":"ACTS_IN","name":"Calloway","type":"Role","_key":"25249","_from":"1623","_to":"18211"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"25155","_from":"1623","_to":"18167"} +{"$label":"ACTS_IN","name":"Arnold Teague","type":"Role","_key":"18327","_from":"1623","_to":"13596"} +{"$label":"ACTS_IN","name":"Ox Callaghan","type":"Role","_key":"17953","_from":"1623","_to":"13353"} +{"$label":"ACTS_IN","name":"Buck Grotowski","type":"Role","_key":"12623","_from":"1623","_to":"9865"} +{"$label":"ACTS_IN","name":"Rita Keane","type":"Role","_key":"3771","_from":"1625","_to":"3232"} +{"$label":"ACTS_IN","name":"Drill sergeant","type":"Role","_key":"71566","_from":"1626","_to":"43354"} +{"$label":"ACTS_IN","name":"Herr Kruse","type":"Role","_key":"1880","_from":"1635","_to":"1628"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"1879","_from":"1634","_to":"1628"} +{"$label":"ACTS_IN","name":"Frau J\u00e4ger","type":"Role","_key":"1878","_from":"1633","_to":"1628"} +{"$label":"ACTS_IN","name":"Homeless Man","type":"Role","_key":"1877","_from":"1632","_to":"1628"} +{"$label":"ACTS_IN","name":"Herr Schuster","type":"Role","_key":"1876","_from":"1631","_to":"1628"} +{"$label":"ACTS_IN","name":"Frau Hansen","type":"Role","_key":"1875","_from":"1630","_to":"1628"} +{"$label":"DIRECTED","_key":"1871","_from":"1629","_to":"1628"} +{"$label":"DIRECTED","_key":"68455","_from":"1629","_to":"41990"} +{"$label":"DIRECTED","_key":"66820","_from":"1629","_to":"41274"} +{"$label":"DIRECTED","_key":"64184","_from":"1629","_to":"40046"} +{"$label":"DIRECTED","_key":"52997","_from":"1629","_to":"34328"} +{"$label":"DIRECTED","_key":"35136","_from":"1629","_to":"23951"} +{"$label":"DIRECTED","_key":"19842","_from":"1629","_to":"14635"} +{"$label":"DIRECTED","_key":"13205","_from":"1629","_to":"10287"} +{"$label":"DIRECTED","_key":"9187","_from":"1629","_to":"7431"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66583","_from":"1629","_to":"41163"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"66815","_from":"1630","_to":"41274"} +{"$label":"ACTS_IN","name":"Marianne K\u00f6nig","type":"Role","_key":"50297","_from":"1630","_to":"32859"} +{"$label":"ACTS_IN","name":"Mona Knebel","type":"Role","_key":"42948","_from":"1630","_to":"28693"} +{"$label":"ACTS_IN","name":"Dagmar","type":"Role","_key":"13668","_from":"1630","_to":"10613"} +{"$label":"ACTS_IN","name":"Frau K\u00f6\u00dfner, Sekret\u00e4rin","type":"Role","_key":"8670","_from":"1630","_to":"7034"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Grabowski","type":"Role","_key":"88137","_from":"1631","_to":"52300"} +{"$label":"ACTS_IN","name":"Mathelehrer 'Rumpelstilzchen'","type":"Role","_key":"71764","_from":"1631","_to":"43439"} +{"$label":"ACTS_IN","name":"Mephisto","type":"Role","_key":"71725","_from":"1631","_to":"43418"} +{"$label":"ACTS_IN","name":"Hermann Walzer","type":"Role","_key":"70717","_from":"1631","_to":"43009"} +{"$label":"ACTS_IN","name":"Herr Mon","type":"Role","_key":"64808","_from":"1631","_to":"40322"} +{"$label":"ACTS_IN","name":"John Wallenbeck","type":"Role","_key":"60345","_from":"1631","_to":"38062"} +{"$label":"ACTS_IN","name":"Harri","type":"Role","_key":"59496","_from":"1631","_to":"37567"} +{"$label":"ACTS_IN","name":"Heiner","type":"Role","_key":"57534","_from":"1631","_to":"36450"} +{"$label":"ACTS_IN","name":"Dr. Sigi Gelber","type":"Role","_key":"55236","_from":"1631","_to":"35234"} +{"$label":"ACTS_IN","name":"Bierchen","type":"Role","_key":"55079","_from":"1631","_to":"35179"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"53823","_from":"1631","_to":"34675"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"48276","_from":"1631","_to":"31707"} +{"$label":"ACTS_IN","name":"Penner","type":"Role","_key":"42367","_from":"1631","_to":"28358"} +{"$label":"ACTS_IN","name":"Bello","type":"Role","_key":"41532","_from":"1631","_to":"27899"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"39730","_from":"1631","_to":"26850"} +{"$label":"ACTS_IN","name":"Metzger","type":"Role","_key":"2466","_from":"1631","_to":"2165"} +{"$label":"ACTS_IN","name":"Abe Wolfowitz","type":"Role","_key":"116512","_from":"1632","_to":"68578"} +{"$label":"ACTS_IN","name":"Dieter","type":"Role","_key":"66818","_from":"1632","_to":"41274"} +{"$label":"ACTS_IN","name":"Dr. Enno Winkel","type":"Role","_key":"65889","_from":"1632","_to":"40768"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"63442","_from":"1632","_to":"39741"} +{"$label":"ACTS_IN","name":"Jakob Windisch","type":"Role","_key":"55235","_from":"1632","_to":"35234"} +{"$label":"ACTS_IN","name":"Walter Riemer","type":"Role","_key":"52995","_from":"1632","_to":"34328"} +{"$label":"ACTS_IN","name":"Sportpr\u00e4fekt Fitz","type":"Role","_key":"51983","_from":"1632","_to":"33897"} +{"$label":"ACTS_IN","name":"Rudi Kipp (\"Kipp\")","type":"Role","_key":"44035","_from":"1632","_to":"29369"} +{"$label":"ACTS_IN","name":"Kommissar Matth\u00e4us","type":"Role","_key":"40638","_from":"1632","_to":"27367"} +{"$label":"ACTS_IN","name":"Rubert","type":"Role","_key":"29562","_from":"1632","_to":"20938"} +{"$label":"ACTS_IN","name":"Georg Wilsberg","type":"Role","_key":"20434","_from":"1632","_to":"14953"} +{"$label":"ACTS_IN","name":"L\u00e1szl\u00f3","type":"Role","_key":"12446","_from":"1632","_to":"9747"} +{"$label":"ACTS_IN","name":"Hannes Weber","type":"Role","_key":"8666","_from":"1632","_to":"7034"} +{"$label":"ACTS_IN","name":"Norbert Brommer","type":"Role","_key":"2464","_from":"1632","_to":"2165"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"63467","_from":"1633","_to":"39747"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"60392","_from":"1633","_to":"38093"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"50163","_from":"1633","_to":"32800"} +{"$label":"ACTS_IN","name":"Agnes Engelhardt","type":"Role","_key":"42543","_from":"1633","_to":"28476"} +{"$label":"ACTS_IN","name":"Franz Wolbert","type":"Role","_key":"88133","_from":"1634","_to":"52300"} +{"$label":"ACTS_IN","name":"Carl Seidlitz","type":"Role","_key":"63104","_from":"1634","_to":"39589"} +{"$label":"ACTS_IN","name":"Volker Bretz","type":"Role","_key":"61803","_from":"1634","_to":"38905"} +{"$label":"ACTS_IN","name":"General Philipp Turner","type":"Role","_key":"55359","_from":"1634","_to":"35294"} +{"$label":"ACTS_IN","name":"Roman Cycowski","type":"Role","_key":"54441","_from":"1634","_to":"34914"} +{"$label":"ACTS_IN","name":"Kommissar Anton Glauberg","type":"Role","_key":"44373","_from":"1634","_to":"29567"} +{"$label":"ACTS_IN","name":"Bock","type":"Role","_key":"40642","_from":"1634","_to":"27367"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"35528","_from":"1634","_to":"24156"} +{"$label":"ACTS_IN","name":"Harry Melchior","type":"Role","_key":"28034","_from":"1634","_to":"20097"} +{"$label":"ACTS_IN","name":"Marco Mullier","type":"Role","_key":"9191","_from":"1634","_to":"7431"} +{"$label":"ACTS_IN","name":"Albert Speer","type":"Role","_key":"7265","_from":"1634","_to":"6064"} +{"$label":"ACTS_IN","name":"Hermes","type":"Role","_key":"5274","_from":"1634","_to":"4473"} +{"$label":"ACTS_IN","name":"Steini","type":"Role","_key":"52996","_from":"1635","_to":"34328"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42210","_from":"1635","_to":"28267"} +{"$label":"ACTS_IN","name":"Philip Melanchton","type":"Role","_key":"38418","_from":"1635","_to":"25944"} +{"$label":"ACTS_IN","name":"Udo","type":"Role","_key":"37109","_from":"1635","_to":"25144"} +{"$label":"ACTS_IN","name":"Severin","type":"Role","_key":"11814","_from":"1635","_to":"9266"} +{"$label":"ACTS_IN","name":"Marvin Berry","type":"Role","_key":"1893","_from":"1645","_to":"1636"} +{"$label":"ACTS_IN","name":"Mr. Strickland","type":"Role","_key":"1892","_from":"1644","_to":"1636"} +{"$label":"ACTS_IN","name":"Stella Baines","type":"Role","_key":"1891","_from":"1643","_to":"1636"} +{"$label":"ACTS_IN","name":"Sam Baines","type":"Role","_key":"1890","_from":"1642","_to":"1636"} +{"$label":"ACTS_IN","name":"Linda McFly","type":"Role","_key":"1889","_from":"1641","_to":"1636"} +{"$label":"ACTS_IN","name":"Dave McFly","type":"Role","_key":"1888","_from":"1640","_to":"1636"} +{"$label":"ACTS_IN","name":"Jennifer Parker","type":"Role","_key":"1887","_from":"1639","_to":"1636"} +{"$label":"ACTS_IN","name":"Biff Tannen","type":"Role","_key":"1886","_from":"1638","_to":"1636"} +{"$label":"ACTS_IN","name":"Lorraine Baines McFly","type":"Role","_key":"1884","_from":"1637","_to":"1636"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"115153","_from":"1637","_to":"67809"} +{"$label":"ACTS_IN","name":"Maudie McMinn","type":"Role","_key":"111295","_from":"1637","_to":"65727"} +{"$label":"ACTS_IN","name":"Amanda Jones","type":"Role","_key":"103342","_from":"1637","_to":"60793"} +{"$label":"ACTS_IN","name":"Kathryn Fairly","type":"Role","_key":"96232","_from":"1637","_to":"56559"} +{"$label":"ACTS_IN","name":"Ms. Roberts","type":"Role","_key":"66538","_from":"1637","_to":"41127"} +{"$label":"ACTS_IN","name":"Beverly Switzler","type":"Role","_key":"64876","_from":"1637","_to":"40348"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"16229","_from":"1637","_to":"12315"} +{"$label":"ACTS_IN","name":"Maggie McFly\/Lorraine McFly","type":"Role","_key":"2911","_from":"1637","_to":"2506"} +{"$label":"ACTS_IN","name":"Lorraine Baines\/McFly\/Tannen","type":"Role","_key":"2556","_from":"1637","_to":"2235"} +{"$label":"ACTS_IN","name":"Eliot Hendricks","type":"Role","_key":"113829","_from":"1638","_to":"67053"} +{"$label":"ACTS_IN","name":"Officer Kornblau","type":"Role","_key":"60937","_from":"1638","_to":"38504"} +{"$label":"ACTS_IN","name":"Buford 'Mad Dog' Tannen\/Biff Tannen","type":"Role","_key":"2910","_from":"1638","_to":"2506"} +{"$label":"ACTS_IN","name":"Biff Tannen\/Griff Tannen","type":"Role","_key":"2557","_from":"1638","_to":"2235"} +{"$label":"ACTS_IN","name":"Edina","type":"Role","_key":"21281","_from":"1639","_to":"15565"} +{"$label":"ACTS_IN","name":"Boris Harris","type":"Role","_key":"106995","_from":"1640","_to":"63076"} +{"$label":"ACTS_IN","name":"Jimmy Olsen","type":"Role","_key":"54487","_from":"1640","_to":"34930"} +{"$label":"ACTS_IN","name":"Jimmy Olsen","type":"Role","_key":"50119","_from":"1640","_to":"32783"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"38807","_from":"1640","_to":"26203"} +{"$label":"ACTS_IN","name":"Dave McFly","type":"Role","_key":"2920","_from":"1640","_to":"2506"} +{"$label":"ACTS_IN","name":"Linda McFly","type":"Role","_key":"2921","_from":"1641","_to":"2506"} +{"$label":"ACTS_IN","name":"Capt. Fairbanks","type":"Role","_key":"118072","_from":"1642","_to":"69396"} +{"$label":"ACTS_IN","name":"Vincent Bugliosi","type":"Role","_key":"111491","_from":"1642","_to":"65834"} +{"$label":"ACTS_IN","name":"Stedman (as George Dicenzo)","type":"Role","_key":"70882","_from":"1642","_to":"43072"} +{"$label":"ACTS_IN","name":"Miss Milray","type":"Role","_key":"41710","_from":"1643","_to":"27984"} +{"$label":"ACTS_IN","name":"Mrs. Riley","type":"Role","_key":"30276","_from":"1643","_to":"21306"} +{"$label":"ACTS_IN","name":"Mrs. Lachance","type":"Role","_key":"3401","_from":"1643","_to":"2903"} +{"$label":"ACTS_IN","name":"Detective Lubic","type":"Role","_key":"71288","_from":"1644","_to":"43245"} +{"$label":"ACTS_IN","name":"Chief Marshal James Strickland","type":"Role","_key":"2913","_from":"1644","_to":"2506"} +{"$label":"ACTS_IN","name":"Mr. Strickland","type":"Role","_key":"2559","_from":"1644","_to":"2235"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"1904","_from":"1657","_to":"1646"} +{"$label":"ACTS_IN","name":"Hawkins","type":"Role","_key":"1903","_from":"1656","_to":"1646"} +{"$label":"ACTS_IN","name":"General Phillips","type":"Role","_key":"1902","_from":"1655","_to":"1646"} +{"$label":"ACTS_IN","name":"Poncho Ramirez","type":"Role","_key":"1901","_from":"1654","_to":"1646"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"1900","_from":"1653","_to":"1646"} +{"$label":"ACTS_IN","name":"Blain","type":"Role","_key":"1899","_from":"1652","_to":"1646"} +{"$label":"ACTS_IN","name":"Sergeant 'Mac' Eliot","type":"Role","_key":"1898","_from":"1651","_to":"1646"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"1897","_from":"1650","_to":"1646"} +{"$label":"ACTS_IN","name":"Major George Dillon","type":"Role","_key":"1896","_from":"1649","_to":"1646"} +{"$label":"ACTS_IN","name":"Major Alan 'Dutch' Schaeffer","type":"Role","_key":"1895","_from":"1648","_to":"1646"} +{"$label":"DIRECTED","_key":"1894","_from":"1647","_to":"1646"} +{"$label":"DIRECTED","_key":"70492","_from":"1647","_to":"42911"} +{"$label":"DIRECTED","_key":"65753","_from":"1647","_to":"40705"} +{"$label":"DIRECTED","_key":"54903","_from":"1647","_to":"35106"} +{"$label":"DIRECTED","_key":"52534","_from":"1647","_to":"34154"} +{"$label":"DIRECTED","_key":"16509","_from":"1647","_to":"12471"} +{"$label":"DIRECTED","_key":"14809","_from":"1647","_to":"11385"} +{"$label":"DIRECTED","_key":"13899","_from":"1647","_to":"10792"} +{"$label":"DIRECTED","_key":"10855","_from":"1647","_to":"8607"} +{"$label":"DIRECTED","_key":"6740","_from":"1647","_to":"5661"} +{"$label":"ACTS_IN","name":"Handsome Stranger","type":"Role","_key":"117017","_from":"1648","_to":"68868"} +{"$label":"ACTS_IN","name":"John Matrix","type":"Role","_key":"67191","_from":"1648","_to":"41449"} +{"$label":"ACTS_IN","name":"Jericho Cane","type":"Role","_key":"58337","_from":"1648","_to":"36876"} +{"$label":"ACTS_IN","name":"Gordy Brewer","type":"Role","_key":"57594","_from":"1648","_to":"36473"} +{"$label":"ACTS_IN","name":"Kalidor","type":"Role","_key":"55131","_from":"1648","_to":"35194"} +{"$label":"ACTS_IN","name":"Conan","type":"Role","_key":"55009","_from":"1648","_to":"35156"} +{"$label":"ACTS_IN","name":"Capt. Ivan Danko","type":"Role","_key":"54974","_from":"1648","_to":"35138"} +{"$label":"ACTS_IN","name":"Jack Slater","type":"Role","_key":"54896","_from":"1648","_to":"35106"} +{"$label":"ACTS_IN","name":"Julius Benedict","type":"Role","_key":"54231","_from":"1648","_to":"34829"} +{"$label":"ACTS_IN","name":"Conan","type":"Role","_key":"53522","_from":"1648","_to":"34556"} +{"$label":"ACTS_IN","name":"Howard Langston","type":"Role","_key":"52810","_from":"1648","_to":"34247"} +{"$label":"ACTS_IN","name":"U.S. Marshal John 'The Eraser' Kruger","type":"Role","_key":"52719","_from":"1648","_to":"34221"} +{"$label":"ACTS_IN","name":"Adam Gibson","type":"Role","_key":"49870","_from":"1648","_to":"32650"} +{"$label":"ACTS_IN","name":"Dr. Alex Hesse","type":"Role","_key":"42800","_from":"1648","_to":"28627"} +{"$label":"ACTS_IN","name":"Joe Santo","type":"Role","_key":"36455","_from":"1648","_to":"24729"} +{"$label":"ACTS_IN","name":"Hercules","type":"Role","_key":"36448","_from":"1648","_to":"24725"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36416","_from":"1648","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36316","_from":"1648","_to":"24639"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"36047","_from":"1648","_to":"24472"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30457","_from":"1648","_to":"21404"} +{"$label":"ACTS_IN","name":"Mark Kaminski alias Joseph P. Brenner","type":"Role","_key":"18291","_from":"1648","_to":"13572"} +{"$label":"ACTS_IN","name":"Hood in Augustine's office","type":"Role","_key":"15953","_from":"1648","_to":"12128"} +{"$label":"ACTS_IN","name":"Detective John Kimble","type":"Role","_key":"11347","_from":"1648","_to":"8948"} +{"$label":"ACTS_IN","name":"Ben Richards","type":"Role","_key":"10281","_from":"1648","_to":"8188"} +{"$label":"ACTS_IN","name":"Douglas Quaid\/Hauser","type":"Role","_key":"10233","_from":"1648","_to":"8163"} +{"$label":"ACTS_IN","name":"Freeze","type":"Role","_key":"5265","_from":"1648","_to":"4469"} +{"$label":"ACTS_IN","name":"Terminator","type":"Role","_key":"4121","_from":"1648","_to":"3521"} +{"$label":"ACTS_IN","name":"The Terminator \"T800\"","type":"Role","_key":"3965","_from":"1648","_to":"3391"} +{"$label":"ACTS_IN","name":"The Terminator","type":"Role","_key":"3134","_from":"1648","_to":"2686"} +{"$label":"ACTS_IN","name":"Weaver","type":"Role","_key":"111946","_from":"1649","_to":"66083"} +{"$label":"ACTS_IN","name":"Freddie Wiseman","type":"Role","_key":"65533","_from":"1649","_to":"40621"} +{"$label":"ACTS_IN","name":"Sgt. Jericho 'Action' Jackson","type":"Role","_key":"60933","_from":"1649","_to":"38504"} +{"$label":"ACTS_IN","name":"Chubbs","type":"Role","_key":"55061","_from":"1649","_to":"35171"} +{"$label":"ACTS_IN","name":"Dreamer Tatum","type":"Role","_key":"35384","_from":"1649","_to":"24080"} +{"$label":"ACTS_IN","name":"Apollo Creed","type":"Role","_key":"12766","_from":"1649","_to":"9966"} +{"$label":"ACTS_IN","name":"Apollo Creed","type":"Role","_key":"12718","_from":"1649","_to":"9935"} +{"$label":"ACTS_IN","name":"Apollo Creed","type":"Role","_key":"12655","_from":"1649","_to":"9890"} +{"$label":"ACTS_IN","name":"Apollo Creed","type":"Role","_key":"12639","_from":"1649","_to":"9878"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106695","_from":"1650","_to":"62874"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"58521","_from":"1650","_to":"36982"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"41699","_from":"1650","_to":"27974"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"2613","_from":"1650","_to":"2274"} +{"$label":"ACTS_IN","name":"Duane - Abdullah","type":"Role","_key":"104510","_from":"1651","_to":"61466"} +{"$label":"ACTS_IN","name":"Lieutenant Washington","type":"Role","_key":"67743","_from":"1651","_to":"41651"} +{"$label":"ACTS_IN","name":"Cooke","type":"Role","_key":"67196","_from":"1651","_to":"41449"} +{"$label":"ACTS_IN","name":"Chief Hinges","type":"Role","_key":"66426","_from":"1651","_to":"41071"} +{"$label":"ACTS_IN","name":"Capt. Earl Armbruster","type":"Role","_key":"60939","_from":"1651","_to":"38504"} +{"$label":"ACTS_IN","name":"Levar","type":"Role","_key":"60079","_from":"1651","_to":"37905"} +{"$label":"ACTS_IN","name":"Leon James","type":"Role","_key":"23388","_from":"1651","_to":"16947"} +{"$label":"ACTS_IN","name":"Det. Hicks","type":"Role","_key":"18420","_from":"1651","_to":"13655"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"15291","_from":"1651","_to":"11700"} +{"$label":"DIRECTED","_key":"101972","_from":"1651","_to":"60005"} +{"$label":"DIRECTED","_key":"42799","_from":"1651","_to":"28626"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110705","_from":"1652","_to":"65401"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99367","_from":"1652","_to":"58552"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70317","_from":"1652","_to":"42835"} +{"$label":"ACTS_IN","name":"Captain Freedom","type":"Role","_key":"10286","_from":"1652","_to":"8188"} +{"$label":"ACTS_IN","name":"El Coyote","type":"Role","_key":"91209","_from":"1653","_to":"53788"} +{"$label":"ACTS_IN","name":"Chink Weber","type":"Role","_key":"58759","_from":"1653","_to":"37115"} +{"$label":"ACTS_IN","name":"Billy Bear","type":"Role","_key":"2377","_from":"1653","_to":"2088"} +{"$label":"ACTS_IN","name":"Judge Simpson","type":"Role","_key":"91972","_from":"1655","_to":"54261"} +{"$label":"ACTS_IN","name":"Diehl","type":"Role","_key":"66002","_from":"1655","_to":"40843"} +{"$label":"ACTS_IN","name":"Honest John","type":"Role","_key":"54090","_from":"1655","_to":"34779"} +{"$label":"ACTS_IN","name":"Kevin MacDonald","type":"Role","_key":"44552","_from":"1655","_to":"29659"} +{"$label":"ACTS_IN","name":"Thor Erickson","type":"Role","_key":"36456","_from":"1655","_to":"24729"} +{"$label":"ACTS_IN","name":"Big Bear","type":"Role","_key":"35338","_from":"1655","_to":"24063"} +{"$label":"ACTS_IN","name":"Ben Holmes","type":"Role","_key":"24716","_from":"1655","_to":"17873"} +{"$label":"DIRECTED","_key":"36553","_from":"1656","_to":"24777"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"51869","_from":"1657","_to":"33836"} +{"$label":"ACTS_IN","name":"The Predator","type":"Role","_key":"2601","_from":"1657","_to":"2274"} +{"$label":"ACTS_IN","name":"Tyrone","type":"Role","_key":"1923","_from":"1671","_to":"1658"} +{"$label":"ACTS_IN","name":"Gorgeous George","type":"Role","_key":"1922","_from":"1670","_to":"1658"} +{"$label":"ACTS_IN","name":"Mullet","type":"Role","_key":"1920","_from":"1669","_to":"1658"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"1919","_from":"1668","_to":"1658"} +{"$label":"ACTS_IN","name":"Errol","type":"Role","_key":"1918","_from":"1667","_to":"1658"} +{"$label":"ACTS_IN","name":"Doug 'The Head' Denovitz","type":"Role","_key":"1916","_from":"1666","_to":"1658"} +{"$label":"ACTS_IN","name":"Franky Four Fingers","type":"Role","_key":"1915","_from":"1665","_to":"1658"} +{"$label":"ACTS_IN","name":"Sol","type":"Role","_key":"1914","_from":"1664","_to":"1658"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"1913","_from":"1663","_to":"1658"} +{"$label":"ACTS_IN","name":"Boris 'The Blade' Yurinov (as Rade Serbedgia)","type":"Role","_key":"1912","_from":"1662","_to":"1658"} +{"$label":"ACTS_IN","name":"Abraham 'Cousin Avi' Denovitz","type":"Role","_key":"1911","_from":"1661","_to":"1658"} +{"$label":"ACTS_IN","name":"Brick Top Polford","type":"Role","_key":"1910","_from":"1660","_to":"1658"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"1908","_from":"1659","_to":"1658"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112632","_from":"1659","_to":"66505"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"103954","_from":"1659","_to":"61143"} +{"$label":"ACTS_IN","name":"Franner","type":"Role","_key":"100883","_from":"1659","_to":"59478"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"94868","_from":"1659","_to":"55857"} +{"$label":"ACTS_IN","name":"Combo","type":"Role","_key":"72047","_from":"1659","_to":"43566"} +{"$label":"ACTS_IN","name":"Alex Martin","type":"Role","_key":"58842","_from":"1659","_to":"37157"} +{"$label":"ACTS_IN","name":"Scrum","type":"Role","_key":"16122","_from":"1659","_to":"12247"} +{"$label":"ACTS_IN","name":"Captain Adam Greer","type":"Role","_key":"108999","_from":"1661","_to":"64413"} +{"$label":"ACTS_IN","name":"Detective Burton","type":"Role","_key":"105291","_from":"1661","_to":"61959"} +{"$label":"ACTS_IN","name":"L.B.J. Deuce Fairbanks","type":"Role","_key":"104188","_from":"1661","_to":"61297"} +{"$label":"ACTS_IN","name":"Mr. Warner","type":"Role","_key":"91429","_from":"1661","_to":"53926"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"70412","_from":"1661","_to":"42875"} +{"$label":"ACTS_IN","name":"Jack Crawford","type":"Role","_key":"69957","_from":"1661","_to":"42679"} +{"$label":"ACTS_IN","name":"Coach John Bailey","type":"Role","_key":"67911","_from":"1661","_to":"41725"} +{"$label":"ACTS_IN","name":"Capt. Nick Detillo","type":"Role","_key":"67721","_from":"1661","_to":"41643"} +{"$label":"ACTS_IN","name":"Brian O'Hara","type":"Role","_key":"53693","_from":"1661","_to":"34630"} +{"$label":"ACTS_IN","name":"Richard Banger","type":"Role","_key":"52135","_from":"1661","_to":"33981"} +{"$label":"ACTS_IN","name":"Jimmy Serrano","type":"Role","_key":"52002","_from":"1661","_to":"33909"} +{"$label":"ACTS_IN","name":"O'Leary","type":"Role","_key":"48267","_from":"1661","_to":"31704"} +{"$label":"ACTS_IN","name":"Ray 'Bones' Barboni","type":"Role","_key":"47793","_from":"1661","_to":"31468"} +{"$label":"ACTS_IN","name":"Henry Desalo","type":"Role","_key":"18993","_from":"1661","_to":"14034"} +{"$label":"ACTS_IN","name":"Jack Banks","type":"Role","_key":"18776","_from":"1661","_to":"13886"} +{"$label":"ACTS_IN","name":"Marshall Sisco","type":"Role","_key":"12894","_from":"1661","_to":"10063"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Walter Anderson","type":"Role","_key":"10180","_from":"1661","_to":"8132"} +{"$label":"ACTS_IN","name":"Aleksander","type":"Role","_key":"118994","_from":"1662","_to":"69944"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"116812","_from":"1662","_to":"68771"} +{"$label":"ACTS_IN","name":"Nicky \/ Victor","type":"Role","_key":"102628","_from":"1662","_to":"60382"} +{"$label":"ACTS_IN","name":"Dr. Maric","type":"Role","_key":"93197","_from":"1662","_to":"54916"} +{"$label":"ACTS_IN","name":"Ivan Tretiak","type":"Role","_key":"59269","_from":"1662","_to":"37436"} +{"$label":"ACTS_IN","name":"Andrei Strasser","type":"Role","_key":"57154","_from":"1662","_to":"36271"} +{"$label":"ACTS_IN","name":"Simon McCullough","type":"Role","_key":"52142","_from":"1662","_to":"33986"} +{"$label":"ACTS_IN","name":"Inspector Vigot","type":"Role","_key":"48348","_from":"1662","_to":"31740"} +{"$label":"ACTS_IN","name":"Michael Sandor (as Rade Sherbedgia)","type":"Role","_key":"46876","_from":"1662","_to":"30909"} +{"$label":"ACTS_IN","name":"General Vostov","type":"Role","_key":"37817","_from":"1662","_to":"25635"} +{"$label":"ACTS_IN","name":"Arie","type":"Role","_key":"34357","_from":"1662","_to":"23562"} +{"$label":"ACTS_IN","name":"Dr. Nekhorvich","type":"Role","_key":"11393","_from":"1662","_to":"8971"} +{"$label":"ACTS_IN","name":"Pushy","type":"Role","_key":"60441","_from":"1663","_to":"38129"} +{"$label":"ACTS_IN","name":"Trojan","type":"Role","_key":"59087","_from":"1663","_to":"37302"} +{"$label":"ACTS_IN","name":"Kahn","type":"Role","_key":"3942","_from":"1663","_to":"3364"} +{"$label":"ACTS_IN","name":"Cedric Munroe","type":"Role","_key":"57909","_from":"1664","_to":"36634"} +{"$label":"ACTS_IN","name":"General Zateb Kazim","type":"Role","_key":"46628","_from":"1664","_to":"30794"} +{"$label":"ACTS_IN","name":"Enjolras","type":"Role","_key":"31607","_from":"1664","_to":"22064"} +{"$label":"ACTS_IN","name":"Alan Erasus","type":"Role","_key":"23251","_from":"1664","_to":"16861"} +{"$label":"ACTS_IN","name":"Aaron Hallam","type":"Role","_key":"64721","_from":"1665","_to":"40298"} +{"$label":"ACTS_IN","name":"Manny Rodrigo","type":"Role","_key":"63387","_from":"1665","_to":"39716"} +{"$label":"ACTS_IN","name":"Juan Primo","type":"Role","_key":"54738","_from":"1665","_to":"35035"} +{"$label":"ACTS_IN","name":"Ernesto Che Guevara","type":"Role","_key":"51249","_from":"1665","_to":"33420"} +{"$label":"ACTS_IN","name":"Che Guevara","type":"Role","_key":"51246","_from":"1665","_to":"33419"} +{"$label":"ACTS_IN","name":"Lawrence Talbot","type":"Role","_key":"47604","_from":"1665","_to":"31370"} +{"$label":"ACTS_IN","name":"Toby Jay Wadenah","type":"Role","_key":"40714","_from":"1665","_to":"27400"} +{"$label":"ACTS_IN","name":"Jerry Sunborne","type":"Role","_key":"28855","_from":"1665","_to":"20622"} +{"$label":"ACTS_IN","name":"Javier Rodriguez","type":"Role","_key":"16400","_from":"1665","_to":"12416"} +{"$label":"ACTS_IN","name":"Dr. Gonzo \/ Oscar Z. Acosta","type":"Role","_key":"16205","_from":"1665","_to":"12305"} +{"$label":"ACTS_IN","name":"Mr. Longbaugh","type":"Role","_key":"14353","_from":"1665","_to":"11110"} +{"$label":"ACTS_IN","name":"Dario","type":"Role","_key":"8571","_from":"1665","_to":"6975"} +{"$label":"ACTS_IN","name":"Fred Fenster","type":"Role","_key":"7472","_from":"1665","_to":"6221"} +{"$label":"ACTS_IN","name":"Benny Dalmau","type":"Role","_key":"6545","_from":"1665","_to":"5534"} +{"$label":"ACTS_IN","name":"Jack Jordan","type":"Role","_key":"5827","_from":"1665","_to":"4954"} +{"$label":"ACTS_IN","name":"Jackie Boy","type":"Role","_key":"2840","_from":"1665","_to":"2450"} +{"$label":"ACTS_IN","name":"Jack Winter","type":"Role","_key":"20621","_from":"1666","_to":"15083"} +{"$label":"ACTS_IN","name":"Righty","type":"Role","_key":"59595","_from":"1667","_to":"37614"} +{"$label":"ACTS_IN","name":"Steve Parr","type":"Role","_key":"57080","_from":"1668","_to":"36223"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"117306","_from":"1669","_to":"68994"} +{"$label":"ACTS_IN","name":"Coco Brice","type":"Role","_key":"88848","_from":"1669","_to":"52643"} +{"$label":"ACTS_IN","name":"Alfonz","type":"Role","_key":"50425","_from":"1669","_to":"32943"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"19557","_from":"1669","_to":"14466"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"19094","_from":"1669","_to":"14109"} +{"$label":"ACTS_IN","name":"Spec. Shawn Nelson","type":"Role","_key":"10142","_from":"1669","_to":"8112"} +{"$label":"ACTS_IN","name":"Lt. Red Winkle","type":"Role","_key":"8133","_from":"1669","_to":"6692"} +{"$label":"ACTS_IN","name":"Spud","type":"Role","_key":"7446","_from":"1669","_to":"6206"} +{"$label":"ACTS_IN","name":"Graeme Miller","type":"Role","_key":"5026","_from":"1669","_to":"4273"} +{"$label":"ACTS_IN","name":"Bog Body","type":"Role","_key":"119574","_from":"1670","_to":"70238"} +{"$label":"ACTS_IN","name":"Andress Malan","type":"Role","_key":"97029","_from":"1670","_to":"57064"} +{"$label":"ACTS_IN","name":"Immobilienmakler","type":"Role","_key":"1930","_from":"1678","_to":"1672"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"1929","_from":"1677","_to":"1672"} +{"$label":"ACTS_IN","name":"Lucille","type":"Role","_key":"1928","_from":"1676","_to":"1672"} +{"$label":"ACTS_IN","name":"Sandrine","type":"Role","_key":"1927","_from":"1675","_to":"1672"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"1926","_from":"1674","_to":"1672"} +{"$label":"DIRECTED","_key":"1924","_from":"1673","_to":"1672"} +{"$label":"DIRECTED","_key":"65466","_from":"1673","_to":"40582"} +{"$label":"DIRECTED","_key":"14212","_from":"1673","_to":"10973"} +{"$label":"DIRECTED","_key":"2069","_from":"1673","_to":"1811"} +{"$label":"DIRECTED","_key":"2064","_from":"1673","_to":"1806"} +{"$label":"DIRECTED","_key":"2063","_from":"1673","_to":"1805"} +{"$label":"DIRECTED","_key":"2056","_from":"1673","_to":"1799"} +{"$label":"DIRECTED","_key":"1937","_from":"1673","_to":"1684"} +{"$label":"DIRECTED","_key":"1931","_from":"1673","_to":"1679"} +{"$label":"ACTS_IN","name":"Alexandre Stavisky","type":"Role","_key":"35876","_from":"1674","_to":"24357"} +{"$label":"ACTS_IN","name":"F\u00e9licie","type":"Role","_key":"61882","_from":"1676","_to":"38949"} +{"$label":"ACTS_IN","name":"Vergniaud","type":"Role","_key":"24116","_from":"1676","_to":"17488"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96114","_from":"1677","_to":"56490"} +{"$label":"ACTS_IN","name":"La m\u00e8re sup\u00e9rieure","type":"Role","_key":"36235","_from":"1677","_to":"24586"} +{"$label":"ACTS_IN","name":"Helo\u00efse de Villefort","type":"Role","_key":"32557","_from":"1677","_to":"22629"} +{"$label":"ACTS_IN","name":"Madame Marielle Le Quesnoy","type":"Role","_key":"30680","_from":"1677","_to":"21530"} +{"$label":"ACTS_IN","name":"Alexandre Fabbri","type":"Role","_key":"14193","_from":"1678","_to":"10973"} +{"$label":"ACTS_IN","name":"Notar","type":"Role","_key":"1936","_from":"1683","_to":"1679"} +{"$label":"ACTS_IN","name":"Jurek","type":"Role","_key":"1935","_from":"1682","_to":"1679"} +{"$label":"ACTS_IN","name":"Miko\u0142aj","type":"Role","_key":"1934","_from":"1681","_to":"1679"} +{"$label":"ACTS_IN","name":"Karol Karol","type":"Role","_key":"1932","_from":"1680","_to":"1679"} +{"$label":"ACTS_IN","name":"Inspektor Sopel","type":"Role","_key":"40075","_from":"1680","_to":"27049"} +{"$label":"ACTS_IN","name":"Sergej","type":"Role","_key":"13782","_from":"1680","_to":"10694"} +{"$label":"ACTS_IN","name":"Antoni","type":"Role","_key":"5583","_from":"1680","_to":"4754"} +{"$label":"ACTS_IN","name":"K\u0105pielowy","type":"Role","_key":"116822","_from":"1681","_to":"68774"} +{"$label":"ACTS_IN","name":"Major Gross","type":"Role","_key":"116709","_from":"1681","_to":"68701"} +{"$label":"ACTS_IN","name":"Maks","type":"Role","_key":"120903","_from":"1682","_to":"70988"} +{"$label":"ACTS_IN","name":"Jugendaktivist","type":"Role","_key":"2073","_from":"1682","_to":"1811"} +{"$label":"ACTS_IN","name":"Le chef d'orchestre","type":"Role","_key":"14196","_from":"1683","_to":"10973"} +{"$label":"ACTS_IN","name":"Rechtsanwalt Mieczyslaw Labrador","type":"Role","_key":"2059","_from":"1683","_to":"1799"} +{"$label":"ACTS_IN","name":"Auguste Bruner","type":"Role","_key":"1941","_from":"1688","_to":"1684"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"1940","_from":"1687","_to":"1684"} +{"$label":"ACTS_IN","name":"Richter Joseph Kern","type":"Role","_key":"1939","_from":"1686","_to":"1684"} +{"$label":"ACTS_IN","name":"Valentine Dussaut","type":"Role","_key":"1938","_from":"1685","_to":"1684"} +{"$label":"ACTS_IN","name":"La m\u00e8re d'Aurore","type":"Role","_key":"117982","_from":"1685","_to":"69347"} +{"$label":"ACTS_IN","name":"Desdemona","type":"Role","_key":"109179","_from":"1685","_to":"64502"} +{"$label":"ACTS_IN","name":"Mlle Davenne","type":"Role","_key":"15519","_from":"1685","_to":"11845"} +{"$label":"ACTS_IN","name":"Weronika\/V\u00e9ronique","type":"Role","_key":"14191","_from":"1685","_to":"10973"} +{"$label":"ACTS_IN","name":"Louis Faguet","type":"Role","_key":"88706","_from":"1686","_to":"52563"} +{"$label":"ACTS_IN","name":"Silence","type":"Role","_key":"52118","_from":"1686","_to":"33979"} +{"$label":"ACTS_IN","name":"Michel Tardieu","type":"Role","_key":"49606","_from":"1686","_to":"32469"} +{"$label":"ACTS_IN","name":"Marcello Clerici","type":"Role","_key":"49571","_from":"1686","_to":"32457"} +{"$label":"ACTS_IN","name":"David Daguerre","type":"Role","_key":"40240","_from":"1686","_to":"27158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33571","_from":"1686","_to":"23204"} +{"$label":"ACTS_IN","name":"le jardinier","type":"Role","_key":"33404","_from":"1686","_to":"23120"} +{"$label":"ACTS_IN","name":"Horace Vannister","type":"Role","_key":"31228","_from":"1686","_to":"21854"} +{"$label":"ACTS_IN","name":"\u00c9ric Grandin","type":"Role","_key":"30924","_from":"1686","_to":"21670"} +{"$label":"ACTS_IN","name":"Julien Maroyeur","type":"Role","_key":"27294","_from":"1686","_to":"19624"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"27272","_from":"1686","_to":"19607"} +{"$label":"ACTS_IN","name":"Untersuchungsrichter","type":"Role","_key":"23044","_from":"1686","_to":"16714"} +{"$label":"ACTS_IN","name":"Julien Vercel","type":"Role","_key":"21540","_from":"1686","_to":"15751"} +{"$label":"ACTS_IN","name":"Paul Thomas","type":"Role","_key":"15527","_from":"1686","_to":"11859"} +{"$label":"DIRECTED","_key":"33409","_from":"1686","_to":"23120"} +{"$label":"ACTS_IN","name":"Alberto The Shadow","type":"Role","_key":"1958","_from":"1704","_to":"1689"} +{"$label":"ACTS_IN","name":"Jerry The Banker","type":"Role","_key":"1957","_from":"1703","_to":"1689"} +{"$label":"ACTS_IN","name":"Hector The Toad","type":"Role","_key":"1956","_from":"1702","_to":"1689"} +{"$label":"ACTS_IN","name":"Nick The Pig","type":"Role","_key":"1955","_from":"1701","_to":"1689"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"1954","_from":"1700","_to":"1689"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"1953","_from":"1699","_to":"1689"} +{"$label":"ACTS_IN","name":"Chi Chi","type":"Role","_key":"1952","_from":"1698","_to":"1689"} +{"$label":"ACTS_IN","name":"Mel Bernstein","type":"Role","_key":"1951","_from":"1697","_to":"1689"} +{"$label":"ACTS_IN","name":"Alejandro Sosa","type":"Role","_key":"1950","_from":"1696","_to":"1689"} +{"$label":"ACTS_IN","name":"Mama Montana","type":"Role","_key":"1948","_from":"1695","_to":"1689"} +{"$label":"ACTS_IN","name":"Gina Montana","type":"Role","_key":"1946","_from":"1694","_to":"1689"} +{"$label":"ACTS_IN","name":"Elvira Hancock","type":"Role","_key":"1945","_from":"1693","_to":"1689"} +{"$label":"ACTS_IN","name":"Manny Ribera","type":"Role","_key":"1944","_from":"1692","_to":"1689"} +{"$label":"ACTS_IN","name":"Tony Montana","type":"Role","_key":"1943","_from":"1691","_to":"1689"} +{"$label":"DIRECTED","_key":"1942","_from":"1690","_to":"1689"} +{"$label":"DIRECTED","_key":"90598","_from":"1690","_to":"53505"} +{"$label":"DIRECTED","_key":"71254","_from":"1690","_to":"43228"} +{"$label":"DIRECTED","_key":"70985","_from":"1690","_to":"43115"} +{"$label":"DIRECTED","_key":"70270","_from":"1690","_to":"42814"} +{"$label":"DIRECTED","_key":"67459","_from":"1690","_to":"41554"} +{"$label":"DIRECTED","_key":"61215","_from":"1690","_to":"38667"} +{"$label":"DIRECTED","_key":"55482","_from":"1690","_to":"35352"} +{"$label":"DIRECTED","_key":"54856","_from":"1690","_to":"35088"} +{"$label":"DIRECTED","_key":"52814","_from":"1690","_to":"34249"} +{"$label":"DIRECTED","_key":"50455","_from":"1690","_to":"32956"} +{"$label":"DIRECTED","_key":"46480","_from":"1690","_to":"30685"} +{"$label":"DIRECTED","_key":"45611","_from":"1690","_to":"30198"} +{"$label":"DIRECTED","_key":"41509","_from":"1690","_to":"27891"} +{"$label":"DIRECTED","_key":"33927","_from":"1690","_to":"23362"} +{"$label":"DIRECTED","_key":"17974","_from":"1690","_to":"13369"} +{"$label":"DIRECTED","_key":"11369","_from":"1690","_to":"8963"} +{"$label":"DIRECTED","_key":"2027","_from":"1690","_to":"1772"} +{"$label":"ACTS_IN","name":"Arthur Kirkland","type":"Role","_key":"112260","_from":"1691","_to":"66292"} +{"$label":"ACTS_IN","name":"Rooster","type":"Role","_key":"94254","_from":"1691","_to":"55507"} +{"$label":"ACTS_IN","name":"Tom Dobb","type":"Role","_key":"91094","_from":"1691","_to":"53749"} +{"$label":"ACTS_IN","name":"Frank Keller","type":"Role","_key":"88316","_from":"1691","_to":"52376"} +{"$label":"ACTS_IN","name":"Eli Wurman","type":"Role","_key":"69979","_from":"1691","_to":"42688"} +{"$label":"ACTS_IN","name":"Shylock","type":"Role","_key":"68229","_from":"1691","_to":"41901"} +{"$label":"ACTS_IN","name":"Mayor John Pappas","type":"Role","_key":"67634","_from":"1691","_to":"41624"} +{"$label":"ACTS_IN","name":"Walter Abrams","type":"Role","_key":"57884","_from":"1691","_to":"36625"} +{"$label":"ACTS_IN","name":"Tony D'Amato","type":"Role","_key":"54716","_from":"1691","_to":"35030"} +{"$label":"ACTS_IN","name":"Ricky Roma","type":"Role","_key":"54300","_from":"1691","_to":"34857"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Frank Slade","type":"Role","_key":"54097","_from":"1691","_to":"34781"} +{"$label":"ACTS_IN","name":"Benjamin 'Lefty' Ruggiero","type":"Role","_key":"53371","_from":"1691","_to":"34492"} +{"$label":"ACTS_IN","name":"Viktor Taransky","type":"Role","_key":"52958","_from":"1691","_to":"34311"} +{"$label":"ACTS_IN","name":"Officer Frank Serpico","type":"Role","_key":"52217","_from":"1691","_to":"34016"} +{"$label":"ACTS_IN","name":"Lowell Bergman","type":"Role","_key":"51971","_from":"1691","_to":"33895"} +{"$label":"ACTS_IN","name":"Big Boy Caprice","type":"Role","_key":"50236","_from":"1691","_to":"32833"} +{"$label":"ACTS_IN","name":"Starkman","type":"Role","_key":"47842","_from":"1691","_to":"31493"} +{"$label":"ACTS_IN","name":"Carlito Brigante","type":"Role","_key":"41510","_from":"1691","_to":"27891"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"28734","_from":"1691","_to":"20529"} +{"$label":"ACTS_IN","name":"Jack Gramm","type":"Role","_key":"27449","_from":"1691","_to":"19709"} +{"$label":"ACTS_IN","name":"John Milton","type":"Role","_key":"15691","_from":"1691","_to":"11965"} +{"$label":"ACTS_IN","name":"Walter Burke","type":"Role","_key":"14633","_from":"1691","_to":"11274"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"11515","_from":"1691","_to":"9052"} +{"$label":"ACTS_IN","name":"Lt. Vincent Hanna","type":"Role","_key":"11321","_from":"1691","_to":"8936"} +{"$label":"ACTS_IN","name":"Will Dormer","type":"Role","_key":"4443","_from":"1691","_to":"3790"} +{"$label":"ACTS_IN","name":"Willie Banks","type":"Role","_key":"4146","_from":"1691","_to":"3539"} +{"$label":"ACTS_IN","name":"Don Michael Corleone","type":"Role","_key":"3514","_from":"1691","_to":"3010"} +{"$label":"ACTS_IN","name":"Don Michael Corleone","type":"Role","_key":"3470","_from":"1691","_to":"2975"} +{"$label":"ACTS_IN","name":"Michael Corleone","type":"Role","_key":"3437","_from":"1691","_to":"2944"} +{"$label":"ACTS_IN","name":"Det. Frank Sigliano","type":"Role","_key":"105503","_from":"1692","_to":"62082"} +{"$label":"ACTS_IN","name":"Taj","type":"Role","_key":"103795","_from":"1692","_to":"61053"} +{"$label":"ACTS_IN","name":"General Manuel Valez","type":"Role","_key":"98199","_from":"1692","_to":"57841"} +{"$label":"ACTS_IN","name":"Captain Castel","type":"Role","_key":"55831","_from":"1692","_to":"35529"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"36561","_from":"1692","_to":"24786"} +{"$label":"ACTS_IN","name":"Joey Pinero","type":"Role","_key":"14109","_from":"1692","_to":"10931"} +{"$label":"ACTS_IN","name":"brother","type":"Role","_key":"12858","_from":"1692","_to":"10040"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"102764","_from":"1693","_to":"60460"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"102094","_from":"1693","_to":"60066"} +{"$label":"ACTS_IN","name":"Eris","type":"Role","_key":"100120","_from":"1693","_to":"59057"} +{"$label":"ACTS_IN","name":"Katie Jordan","type":"Role","_key":"88775","_from":"1693","_to":"52605"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"69218","_from":"1693","_to":"42327"} +{"$label":"ACTS_IN","name":"Ingrid Magnussen","type":"Role","_key":"67156","_from":"1693","_to":"41437"} +{"$label":"ACTS_IN","name":"Rita Harrison Williams","type":"Role","_key":"66927","_from":"1693","_to":"41321"} +{"$label":"ACTS_IN","name":"Susie Diamond","type":"Role","_key":"66410","_from":"1693","_to":"41067"} +{"$label":"ACTS_IN","name":"Ellen Olenska","type":"Role","_key":"63347","_from":"1693","_to":"39699"} +{"$label":"ACTS_IN","name":"Jo Ann","type":"Role","_key":"62986","_from":"1693","_to":"39544"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"62981","_from":"1693","_to":"39543"} +{"$label":"ACTS_IN","name":"Titania","type":"Role","_key":"61724","_from":"1693","_to":"38874"} +{"$label":"ACTS_IN","name":"Katya Orlova","type":"Role","_key":"61391","_from":"1693","_to":"38729"} +{"$label":"ACTS_IN","name":"Louanne Johnson","type":"Role","_key":"57879","_from":"1693","_to":"36623"} +{"$label":"ACTS_IN","name":"Zipporah","type":"Role","_key":"57351","_from":"1693","_to":"36365"} +{"$label":"ACTS_IN","name":"Tally Atwater","type":"Role","_key":"53000","_from":"1693","_to":"34329"} +{"$label":"ACTS_IN","name":"Stephanie Zinone","type":"Role","_key":"52197","_from":"1693","_to":"34008"} +{"$label":"ACTS_IN","name":"Melanie Parker","type":"Role","_key":"46348","_from":"1693","_to":"30625"} +{"$label":"ACTS_IN","name":"Sukie Ridgemont","type":"Role","_key":"41461","_from":"1693","_to":"27868"} +{"$label":"ACTS_IN","name":"Brenda Landers","type":"Role","_key":"38790","_from":"1693","_to":"26203"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"28733","_from":"1693","_to":"20529"} +{"$label":"ACTS_IN","name":"Velma Von Tussle","type":"Role","_key":"24602","_from":"1693","_to":"17800"} +{"$label":"ACTS_IN","name":"Claire Spencer","type":"Role","_key":"22524","_from":"1693","_to":"16367"} +{"$label":"ACTS_IN","name":"Angela de Marco","type":"Role","_key":"20388","_from":"1693","_to":"14933"} +{"$label":"ACTS_IN","name":"Lamia","type":"Role","_key":"19955","_from":"1693","_to":"14696"} +{"$label":"ACTS_IN","name":"Madame Marie de Tourvel","type":"Role","_key":"10210","_from":"1693","_to":"8147"} +{"$label":"ACTS_IN","name":"Isabeau d'Anjou","type":"Role","_key":"6336","_from":"1693","_to":"5358"} +{"$label":"ACTS_IN","name":"Catwoman\/Selina Kyle","type":"Role","_key":"4854","_from":"1693","_to":"4154"} +{"$label":"ACTS_IN","name":"Lane Bodine","type":"Role","_key":"119937","_from":"1694","_to":"70452"} +{"$label":"ACTS_IN","name":"Gayle Russell","type":"Role","_key":"116229","_from":"1694","_to":"68436"} +{"$label":"ACTS_IN","name":"Maggie Ward","type":"Role","_key":"105849","_from":"1694","_to":"62310"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"72493","_from":"1694","_to":"43737"} +{"$label":"ACTS_IN","name":"Marian","type":"Role","_key":"49374","_from":"1694","_to":"32334"} +{"$label":"ACTS_IN","name":"Lindsey Brigman","type":"Role","_key":"23300","_from":"1694","_to":"16896"} +{"$label":"ACTS_IN","name":"Linda Greenlaw","type":"Role","_key":"18558","_from":"1694","_to":"13731"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"57078","_from":"1695","_to":"36223"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"56429","_from":"1695","_to":"35852"} +{"$label":"ACTS_IN","name":"Jack Graham","type":"Role","_key":"35606","_from":"1696","_to":"24197"} +{"$label":"ACTS_IN","name":"David Madlock","type":"Role","_key":"33134","_from":"1696","_to":"22943"} +{"$label":"ACTS_IN","name":"Paulo Rocca","type":"Role","_key":"18295","_from":"1696","_to":"13572"} +{"$label":"ACTS_IN","name":"Dr. Laurence","type":"Role","_key":"2694","_from":"1696","_to":"2335"} +{"$label":"ACTS_IN","name":"David Nemerov","type":"Role","_key":"116831","_from":"1697","_to":"68776"} +{"$label":"ACTS_IN","name":"Gen. George C. Marshall","type":"Role","_key":"110401","_from":"1697","_to":"65230"} +{"$label":"ACTS_IN","name":"Leeds","type":"Role","_key":"53014","_from":"1697","_to":"34331"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"34238","_from":"1697","_to":"23502"} +{"$label":"ACTS_IN","name":"Judge Wexler","type":"Role","_key":"24640","_from":"1697","_to":"17819"} +{"$label":"ACTS_IN","name":"Admiral Quinn","type":"Role","_key":"18540","_from":"1697","_to":"13721"} +{"$label":"ACTS_IN","name":"Doug Rosselli","type":"Role","_key":"17712","_from":"1697","_to":"13216"} +{"$label":"ACTS_IN","name":"George Grierson","type":"Role","_key":"12497","_from":"1697","_to":"9790"} +{"$label":"ACTS_IN","name":"Stanley Goldkiss","type":"Role","_key":"4419","_from":"1697","_to":"3774"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"116474","_from":"1700","_to":"68550"} +{"$label":"ACTS_IN","name":"Mr. Gonzalez","type":"Role","_key":"111902","_from":"1700","_to":"66054"} +{"$label":"ACTS_IN","name":"Chuco","type":"Role","_key":"104513","_from":"1700","_to":"61466"} +{"$label":"ACTS_IN","name":"Alessandro","type":"Role","_key":"58526","_from":"1700","_to":"36982"} +{"$label":"ACTS_IN","name":"Tomas Dos Santos","type":"Role","_key":"55479","_from":"1700","_to":"35352"} +{"$label":"ACTS_IN","name":"Sgt. Pepe Gutierrez","type":"Role","_key":"45909","_from":"1700","_to":"30362"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"35988","_from":"1700","_to":"24437"} +{"$label":"ACTS_IN","name":"Bobby Fain","type":"Role","_key":"17032","_from":"1701","_to":"12774"} +{"$label":"ACTS_IN","name":"Earl Mager","type":"Role","_key":"96384","_from":"1704","_to":"56647"} +{"$label":"ACTS_IN","name":"Boris Pavlovsky","type":"Role","_key":"59000","_from":"1704","_to":"37245"} +{"$label":"ACTS_IN","name":"Leon Trett","type":"Role","_key":"33913","_from":"1704","_to":"23352"} +{"$label":"ACTS_IN","name":"Mr. Shickadance","type":"Role","_key":"25244","_from":"1704","_to":"18207"} +{"$label":"ACTS_IN","name":"Rafi Domingo","type":"Role","_key":"22028","_from":"1704","_to":"16070"} +{"$label":"ACTS_IN","name":"Fajngold","type":"Role","_key":"20087","_from":"1704","_to":"14765"} +{"$label":"ACTS_IN","name":"Father Avila","type":"Role","_key":"12864","_from":"1704","_to":"10044"} +{"$label":"ACTS_IN","name":"Heinrich Knutzhorn","type":"Role","_key":"10863","_from":"1704","_to":"8607"} +{"$label":"ACTS_IN","name":"Sol Robeson","type":"Role","_key":"5844","_from":"1704","_to":"4965"} +{"$label":"ACTS_IN","name":"Evening School Teacher","type":"Role","_key":"1977","_from":"1724","_to":"1705"} +{"$label":"ACTS_IN","name":"Lady","type":"Role","_key":"1976","_from":"1723","_to":"1705"} +{"$label":"ACTS_IN","name":"Church Singer#2 \/ Sportsman#2","type":"Role","_key":"1975","_from":"1722","_to":"1705"} +{"$label":"ACTS_IN","name":"Church Singer#1 \/ Sportsman#1","type":"Role","_key":"1974","_from":"1721","_to":"1705"} +{"$label":"ACTS_IN","name":"Marcello","type":"Role","_key":"1973","_from":"1720","_to":"1705"} +{"$label":"ACTS_IN","name":"Olympia's Father","type":"Role","_key":"1972","_from":"1719","_to":"1705"} +{"$label":"ACTS_IN","name":"Klaus Graversen","type":"Role","_key":"1971","_from":"1718","_to":"1705"} +{"$label":"ACTS_IN","name":"Karen's Mother","type":"Role","_key":"1970","_from":"1717","_to":"1705"} +{"$label":"ACTS_IN","name":"Woman in Church","type":"Role","_key":"1969","_from":"1716","_to":"1705"} +{"$label":"ACTS_IN","name":"Reverend Wredmann","type":"Role","_key":"1968","_from":"1715","_to":"1705"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"1967","_from":"1714","_to":"1705"} +{"$label":"ACTS_IN","name":"Real Estate Dealer","type":"Role","_key":"1966","_from":"1713","_to":"1705"} +{"$label":"ACTS_IN","name":"Hal-Finn","type":"Role","_key":"1965","_from":"1712","_to":"1705"} +{"$label":"ACTS_IN","name":"Olympia","type":"Role","_key":"1964","_from":"1711","_to":"1705"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"1963","_from":"1710","_to":"1705"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"1962","_from":"1709","_to":"1705"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"1961","_from":"1708","_to":"1705"} +{"$label":"ACTS_IN","name":"J\u00f8rgen Mortensen","type":"Role","_key":"1960","_from":"1707","_to":"1705"} +{"$label":"DIRECTED","_key":"1959","_from":"1706","_to":"1705"} +{"$label":"DIRECTED","_key":"2434","_from":"1706","_to":"2127"} +{"$label":"ACTS_IN","name":"Hans Christian","type":"Role","_key":"41170","_from":"1707","_to":"27703"} +{"$label":"ACTS_IN","name":"Ravn","type":"Role","_key":"36435","_from":"1707","_to":"24720"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"3613","_from":"1707","_to":"3086"} +{"$label":"ACTS_IN","name":"Pernille Margarethe Kierkegaard","type":"Role","_key":"98450","_from":"1709","_to":"58003"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106485","_from":"1710","_to":"62738"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"106476","_from":"1710","_to":"62730"} +{"$label":"ACTS_IN","name":"Thomas Deleuran","type":"Role","_key":"106072","_from":"1710","_to":"62462"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"106065","_from":"1710","_to":"62460"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"102361","_from":"1710","_to":"60232"} +{"$label":"ACTS_IN","name":"Herman","type":"Role","_key":"95497","_from":"1710","_to":"56171"} +{"$label":"ACTS_IN","name":"Freddie Svale","type":"Role","_key":"15876","_from":"1710","_to":"12080"} +{"$label":"ACTS_IN","name":"Kresten","type":"Role","_key":"2216","_from":"1710","_to":"1953"} +{"$label":"ACTS_IN","name":"Sos","type":"Role","_key":"106035","_from":"1711","_to":"62427"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"95496","_from":"1711","_to":"56171"} +{"$label":"ACTS_IN","name":"Knud","type":"Role","_key":"118065","_from":"1712","_to":"69393"} +{"$label":"ACTS_IN","name":"Farfar","type":"Role","_key":"61496","_from":"1715","_to":"38782"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"28849","_from":"1715","_to":"20617"} +{"$label":"ACTS_IN","name":"Schulleiter Lindum Svendsen","type":"Role","_key":"15875","_from":"1715","_to":"12080"} +{"$label":"ACTS_IN","name":"Bitten","type":"Role","_key":"35419","_from":"1717","_to":"24090"} +{"$label":"ACTS_IN","name":"Sebastian Pedersen","type":"Role","_key":"111038","_from":"1719","_to":"65586"} +{"$label":"ACTS_IN","name":"Carsten","type":"Role","_key":"106083","_from":"1719","_to":"62469"} +{"$label":"ACTS_IN","name":"Kaj","type":"Role","_key":"106048","_from":"1719","_to":"62450"} +{"$label":"ACTS_IN","name":"Mr. White","type":"Role","_key":"65629","_from":"1719","_to":"40670"} +{"$label":"ACTS_IN","name":"Flames Vater","type":"Role","_key":"51283","_from":"1719","_to":"33443"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"3616","_from":"1719","_to":"3086"} +{"$label":"ACTS_IN","name":"Nils Lud","type":"Role","_key":"2747","_from":"1719","_to":"2379"} +{"$label":"ACTS_IN","name":"Kleinkind","type":"Role","_key":"1989","_from":"1736","_to":"1725"} +{"$label":"ACTS_IN","name":"Vermummte Mutter","type":"Role","_key":"1988","_from":"1735","_to":"1725"} +{"$label":"ACTS_IN","name":"Komissar#2","type":"Role","_key":"1987","_from":"1734","_to":"1725"} +{"$label":"ACTS_IN","name":"Komissar#1","type":"Role","_key":"1986","_from":"1733","_to":"1725"} +{"$label":"ACTS_IN","name":"Mutter des M\u00e4dchens","type":"Role","_key":"1985","_from":"1732","_to":"1725"} +{"$label":"ACTS_IN","name":"Neuer Novize","type":"Role","_key":"1984","_from":"1731","_to":"1725"} +{"$label":"ACTS_IN","name":"Junges M\u00e4dchen","type":"Role","_key":"1983","_from":"1730","_to":"1725"} +{"$label":"ACTS_IN","name":"Novize im Fr\u00fchling","type":"Role","_key":"1982","_from":"1729","_to":"1725"} +{"$label":"ACTS_IN","name":"Novize im Sommer","type":"Role","_key":"1981","_from":"1728","_to":"1725"} +{"$label":"ACTS_IN","name":"Ehemaliger Novize im Herbst","type":"Role","_key":"1980","_from":"1726","_to":"1725"} +{"$label":"ACTS_IN","name":"Alter M\u00f6nch","type":"Role","_key":"1979","_from":"1727","_to":"1725"} +{"$label":"DIRECTED","_key":"1978","_from":"1726","_to":"1725"} +{"$label":"DIRECTED","_key":"50320","_from":"1726","_to":"32874"} +{"$label":"DIRECTED","_key":"50317","_from":"1726","_to":"32871"} +{"$label":"DIRECTED","_key":"23473","_from":"1726","_to":"17017"} +{"$label":"DIRECTED","_key":"17013","_from":"1726","_to":"12766"} +{"$label":"DIRECTED","_key":"13100","_from":"1726","_to":"10210"} +{"$label":"DIRECTED","_key":"12481","_from":"1726","_to":"9779"} +{"$label":"DIRECTED","_key":"12473","_from":"1726","_to":"9772"} +{"$label":"ACTS_IN","name":"Musician","type":"Role","_key":"12478","_from":"1727","_to":"9772"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"2001","_from":"1749","_to":"1737"} +{"$label":"ACTS_IN","name":"Elizabeth Stuckey","type":"Role","_key":"2000","_from":"1748","_to":"1737"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"1999","_from":"1747","_to":"1737"} +{"$label":"ACTS_IN","name":"David Morse","type":"Role","_key":"1998","_from":"1746","_to":"1737"} +{"$label":"ACTS_IN","name":"Kit De Luca","type":"Role","_key":"1997","_from":"1745","_to":"1737"} +{"$label":"ACTS_IN","name":"Mr. Hollister","type":"Role","_key":"1996","_from":"1744","_to":"1737"} +{"$label":"ACTS_IN","name":"Barney Thompson","type":"Role","_key":"1995","_from":"1743","_to":"1737"} +{"$label":"ACTS_IN","name":"Philip Stuckey","type":"Role","_key":"1994","_from":"1742","_to":"1737"} +{"$label":"ACTS_IN","name":"James Morse","type":"Role","_key":"1993","_from":"1741","_to":"1737"} +{"$label":"ACTS_IN","name":"Edward Lewis","type":"Role","_key":"1992","_from":"1740","_to":"1737"} +{"$label":"ACTS_IN","name":"Vivian Ward","type":"Role","_key":"1991","_from":"1739","_to":"1737"} +{"$label":"DIRECTED","_key":"1990","_from":"1738","_to":"1737"} +{"$label":"DIRECTED","_key":"116094","_from":"1738","_to":"68357"} +{"$label":"DIRECTED","_key":"105103","_from":"1738","_to":"61860"} +{"$label":"DIRECTED","_key":"93060","_from":"1738","_to":"54863"} +{"$label":"DIRECTED","_key":"68055","_from":"1738","_to":"41815"} +{"$label":"DIRECTED","_key":"65735","_from":"1738","_to":"40701"} +{"$label":"DIRECTED","_key":"57571","_from":"1738","_to":"36467"} +{"$label":"DIRECTED","_key":"34101","_from":"1738","_to":"23435"} +{"$label":"DIRECTED","_key":"32938","_from":"1738","_to":"22845"} +{"$label":"DIRECTED","_key":"28732","_from":"1738","_to":"20529"} +{"$label":"ACTS_IN","name":"Walter Harvey","type":"Role","_key":"68925","_from":"1738","_to":"42198"} +{"$label":"ACTS_IN","name":"Buck Cluck","type":"Role","_key":"58932","_from":"1738","_to":"37214"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"116038","_from":"1739","_to":"68336"} +{"$label":"ACTS_IN","name":"Daryle","type":"Role","_key":"111181","_from":"1739","_to":"65663"} +{"$label":"ACTS_IN","name":"Claire Stenwick","type":"Role","_key":"109518","_from":"1739","_to":"64693"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"103528","_from":"1739","_to":"60902"} +{"$label":"ACTS_IN","name":"Katherine Ann Watson","type":"Role","_key":"72175","_from":"1739","_to":"43624"} +{"$label":"ACTS_IN","name":"Kathleen \"Kiki\" Harrison","type":"Role","_key":"70038","_from":"1739","_to":"42709"} +{"$label":"ACTS_IN","name":"Daisy Arujo","type":"Role","_key":"68441","_from":"1739","_to":"41985"} +{"$label":"ACTS_IN","name":"Sabrina Peterson","type":"Role","_key":"66433","_from":"1739","_to":"41073"} +{"$label":"ACTS_IN","name":"Shelby Eatenton Latcherie","type":"Role","_key":"66332","_from":"1739","_to":"41030"} +{"$label":"ACTS_IN","name":"Charlotte the Spider","type":"Role","_key":"58976","_from":"1739","_to":"37240"} +{"$label":"ACTS_IN","name":"Darby Shaw","type":"Role","_key":"58325","_from":"1739","_to":"36873"} +{"$label":"ACTS_IN","name":"Hova","type":"Role","_key":"57832","_from":"1739","_to":"36606"} +{"$label":"ACTS_IN","name":"Isabel Kelly","type":"Role","_key":"53860","_from":"1739","_to":"34690"} +{"$label":"ACTS_IN","name":"Mary Reilly","type":"Role","_key":"52523","_from":"1739","_to":"34153"} +{"$label":"ACTS_IN","name":"Hilary O'Neil","type":"Role","_key":"52434","_from":"1739","_to":"34117"} +{"$label":"ACTS_IN","name":"Julianne Potter","type":"Role","_key":"51208","_from":"1739","_to":"33396"} +{"$label":"ACTS_IN","name":"Alice Sutton","type":"Role","_key":"50937","_from":"1739","_to":"33245"} +{"$label":"ACTS_IN","name":"Laura Burney","type":"Role","_key":"46652","_from":"1739","_to":"30813"} +{"$label":"ACTS_IN","name":"Lisa Waechter","type":"Role","_key":"46618","_from":"1739","_to":"30792"} +{"$label":"ACTS_IN","name":"Joanne Herring","type":"Role","_key":"44000","_from":"1739","_to":"29354"} +{"$label":"ACTS_IN","name":"Samantha Barzel","type":"Role","_key":"41489","_from":"1739","_to":"27879"} +{"$label":"ACTS_IN","name":"Patricia Watson","type":"Role","_key":"34725","_from":"1739","_to":"23746"} +{"$label":"ACTS_IN","name":"Maggie Carpenter","type":"Role","_key":"34102","_from":"1739","_to":"23435"} +{"$label":"ACTS_IN","name":"Anne Eisenhower","type":"Role","_key":"28154","_from":"1739","_to":"20177"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"20064","_from":"1739","_to":"14761"} +{"$label":"ACTS_IN","name":"Kitty Kiernan","type":"Role","_key":"15407","_from":"1739","_to":"11783"} +{"$label":"ACTS_IN","name":"Rachel Mannus","type":"Role","_key":"13727","_from":"1739","_to":"10658"} +{"$label":"ACTS_IN","name":"Tinkerbell","type":"Role","_key":"10453","_from":"1739","_to":"8318"} +{"$label":"ACTS_IN","name":"Anna Scott","type":"Role","_key":"6148","_from":"1739","_to":"5213"} +{"$label":"ACTS_IN","name":"Erin Brockovich","type":"Role","_key":"5742","_from":"1739","_to":"4882"} +{"$label":"ACTS_IN","name":"Tess Ocean","type":"Role","_key":"2519","_from":"1739","_to":"2210"} +{"$label":"ACTS_IN","name":"Tess Ocean","type":"Role","_key":"2488","_from":"1739","_to":"2184"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"109708","_from":"1740","_to":"64794"} +{"$label":"ACTS_IN","name":"Dr. Paul Flanner","type":"Role","_key":"99635","_from":"1740","_to":"58740"} +{"$label":"ACTS_IN","name":"Erroll Babbage","type":"Role","_key":"98740","_from":"1740","_to":"58191"} +{"$label":"ACTS_IN","name":"Dennis Peck","type":"Role","_key":"67624","_from":"1740","_to":"41621"} +{"$label":"ACTS_IN","name":"Dr. T","type":"Role","_key":"65616","_from":"1740","_to":"40669"} +{"$label":"ACTS_IN","name":"Will Keane","type":"Role","_key":"64785","_from":"1740","_to":"40314"} +{"$label":"ACTS_IN","name":"Clifford Irving","type":"Role","_key":"57784","_from":"1740","_to":"36578"} +{"$label":"ACTS_IN","name":"Jack Moore","type":"Role","_key":"53681","_from":"1740","_to":"34625"} +{"$label":"ACTS_IN","name":"George Putnam","type":"Role","_key":"51473","_from":"1740","_to":"33572"} +{"$label":"ACTS_IN","name":"Lancelot","type":"Role","_key":"43869","_from":"1740","_to":"29295"} +{"$label":"ACTS_IN","name":"Simon Hunt","type":"Role","_key":"37116","_from":"1740","_to":"25148"} +{"$label":"ACTS_IN","name":"Declan Mulqueen","type":"Role","_key":"34241","_from":"1740","_to":"23506"} +{"$label":"ACTS_IN","name":"Isaac Barr","type":"Role","_key":"34229","_from":"1740","_to":"23502"} +{"$label":"ACTS_IN","name":"Ike Graham","type":"Role","_key":"34103","_from":"1740","_to":"23435"} +{"$label":"ACTS_IN","name":"John Clark","type":"Role","_key":"31291","_from":"1740","_to":"21887"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"28888","_from":"1740","_to":"20642"} +{"$label":"ACTS_IN","name":"The Choreographer","type":"Role","_key":"24069","_from":"1740","_to":"17452"} +{"$label":"ACTS_IN","name":"Julian Kaye","type":"Role","_key":"23381","_from":"1740","_to":"16947"} +{"$label":"ACTS_IN","name":"John Klein","type":"Role","_key":"22305","_from":"1740","_to":"16222"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"22282","_from":"1740","_to":"16209"} +{"$label":"ACTS_IN","name":"Zack Mayo","type":"Role","_key":"22271","_from":"1740","_to":"16205"} +{"$label":"ACTS_IN","name":"Ed Sumner","type":"Role","_key":"19675","_from":"1740","_to":"14552"} +{"$label":"ACTS_IN","name":"Dixie Dwyer","type":"Role","_key":"18719","_from":"1740","_to":"13856"} +{"$label":"ACTS_IN","name":"Martin Vail","type":"Role","_key":"14102","_from":"1740","_to":"10931"} +{"$label":"ACTS_IN","name":"Billy Flynn","type":"Role","_key":"13928","_from":"1740","_to":"10805"} +{"$label":"ACTS_IN","name":"Jesse Lujack","type":"Role","_key":"11875","_from":"1740","_to":"9314"} +{"$label":"ACTS_IN","name":"John Robert Sommersby\/Horace Townsend","type":"Role","_key":"11833","_from":"1740","_to":"9282"} +{"$label":"ACTS_IN","name":"'Dan' Leeson","type":"Role","_key":"101411","_from":"1741","_to":"59697"} +{"$label":"ACTS_IN","name":"Col. Montford","type":"Role","_key":"95761","_from":"1741","_to":"56328"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26649","_from":"1741","_to":"19158"} +{"$label":"ACTS_IN","name":"Bruce Baldwin","type":"Role","_key":"25622","_from":"1741","_to":"18451"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"25470","_from":"1741","_to":"18370"} +{"$label":"ACTS_IN","name":"Randolph Duke","type":"Role","_key":"14377","_from":"1741","_to":"11121"} +{"$label":"ACTS_IN","name":"Dr. Abraham Sapirstein","type":"Role","_key":"9484","_from":"1741","_to":"7653"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"113737","_from":"1742","_to":"67025"} +{"$label":"ACTS_IN","name":"Robert Grant","type":"Role","_key":"112163","_from":"1742","_to":"66236"} +{"$label":"ACTS_IN","name":"Abis Mal (voice)","type":"Role","_key":"106506","_from":"1742","_to":"62753"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103729","_from":"1742","_to":"61008"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100567","_from":"1742","_to":"59315"} +{"$label":"ACTS_IN","name":"Lightning","type":"Role","_key":"95728","_from":"1742","_to":"56304"} +{"$label":"ACTS_IN","name":"Penguin on Belly (voice)","type":"Role","_key":"89793","_from":"1742","_to":"53142"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"89566","_from":"1742","_to":"53002"} +{"$label":"ACTS_IN","name":"Marion Sandusky","type":"Role","_key":"89200","_from":"1742","_to":"52823"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"63975","_from":"1742","_to":"39952"} +{"$label":"ACTS_IN","name":"Larry Farber","type":"Role","_key":"55035","_from":"1742","_to":"35160"} +{"$label":"ACTS_IN","name":"Geary","type":"Role","_key":"20095","_from":"1742","_to":"14770"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"116091","_from":"1743","_to":"68357"} +{"$label":"ACTS_IN","name":"Martin Naranjo","type":"Role","_key":"103187","_from":"1743","_to":"60693"} +{"$label":"ACTS_IN","name":"Greg Rishwain","type":"Role","_key":"100854","_from":"1743","_to":"59456"} +{"$label":"ACTS_IN","name":"Cobb","type":"Role","_key":"99852","_from":"1743","_to":"58891"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"68050","_from":"1743","_to":"41815"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"57576","_from":"1743","_to":"36467"} +{"$label":"ACTS_IN","name":"Bill the Crew Coach","type":"Role","_key":"49457","_from":"1743","_to":"32384"} +{"$label":"ACTS_IN","name":"Mr. Gray - Joe Welcome","type":"Role","_key":"49117","_from":"1743","_to":"32182"} +{"$label":"ACTS_IN","name":"Don Leo","type":"Role","_key":"44506","_from":"1743","_to":"29642"} +{"$label":"ACTS_IN","name":"Warden Toolman","type":"Role","_key":"43239","_from":"1743","_to":"28878"} +{"$label":"ACTS_IN","name":"Fisher","type":"Role","_key":"34106","_from":"1743","_to":"23435"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"28735","_from":"1743","_to":"20529"} +{"$label":"ACTS_IN","name":"Detective Sunday","type":"Role","_key":"23384","_from":"1743","_to":"16947"} +{"$label":"ACTS_IN","name":"Jon Flint","type":"Role","_key":"4228","_from":"1743","_to":"3604"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"121025","_from":"1744","_to":"71078"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"115211","_from":"1744","_to":"67849"} +{"$label":"ACTS_IN","name":"XR","type":"Role","_key":"107940","_from":"1744","_to":"63745"} +{"$label":"ACTS_IN","name":"Underchief \/ CIA Chief","type":"Role","_key":"104828","_from":"1744","_to":"61678"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94143","_from":"1744","_to":"55439"} +{"$label":"ACTS_IN","name":"Det. Sgt. Halsey","type":"Role","_key":"90886","_from":"1744","_to":"53623"} +{"$label":"ACTS_IN","name":"Dekan Richmond","type":"Role","_key":"88057","_from":"1744","_to":"52270"} +{"$label":"ACTS_IN","name":"Adrian Beltz","type":"Role","_key":"70229","_from":"1744","_to":"42798"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"63482","_from":"1744","_to":"39755"} +{"$label":"ACTS_IN","name":"Inspector Derek Lester","type":"Role","_key":"62857","_from":"1744","_to":"39498"} +{"$label":"ACTS_IN","name":"Fred Nickle","type":"Role","_key":"57839","_from":"1744","_to":"36606"} +{"$label":"ACTS_IN","name":"Dekan Richmond","type":"Role","_key":"53151","_from":"1744","_to":"34385"} +{"$label":"ACTS_IN","name":"Buzzwell","type":"Role","_key":"37862","_from":"1744","_to":"25647"} +{"$label":"ACTS_IN","name":"Dabney Shaw","type":"Role","_key":"36543","_from":"1744","_to":"24777"} +{"$label":"ACTS_IN","name":"Walter Stratford","type":"Role","_key":"35069","_from":"1744","_to":"23914"} +{"$label":"ACTS_IN","name":"Prof. Loman","type":"Role","_key":"26748","_from":"1744","_to":"19221"} +{"$label":"ACTS_IN","name":"The Interviewer","type":"Role","_key":"113773","_from":"1745","_to":"67043"} +{"$label":"ACTS_IN","name":"Nadine Cross","type":"Role","_key":"94974","_from":"1745","_to":"55928"} +{"$label":"ACTS_IN","name":"Crazy Cora","type":"Role","_key":"54868","_from":"1745","_to":"35091"} +{"$label":"ACTS_IN","name":"Cynthia Mullany","type":"Role","_key":"13054","_from":"1745","_to":"10178"} +{"$label":"ACTS_IN","name":"Mina Seward","type":"Role","_key":"88075","_from":"1748","_to":"52279"} +{"$label":"ACTS_IN","name":"Maid Marian","type":"Role","_key":"47712","_from":"1748","_to":"31431"} +{"$label":"ACTS_IN","name":"Peggy Brandt","type":"Role","_key":"10131","_from":"1748","_to":"8101"} +{"$label":"ACTS_IN","name":"Patricia Cornell","type":"Role","_key":"88805","_from":"1749","_to":"52618"} +{"$label":"ACTS_IN","name":"Liam O'Brien, Quintana's Partner","type":"Role","_key":"2018","_from":"1763","_to":"1750"} +{"$label":"ACTS_IN","name":"Jesus Quintana","type":"Role","_key":"2017","_from":"1762","_to":"1750"} +{"$label":"ACTS_IN","name":"Smokey","type":"Role","_key":"2015","_from":"1761","_to":"1750"} +{"$label":"ACTS_IN","name":"Nihilist #3, Franz","type":"Role","_key":"2014","_from":"1760","_to":"1750"} +{"$label":"ACTS_IN","name":"Nihilist #2, Kieffer","type":"Role","_key":"2013","_from":"1759","_to":"1750"} +{"$label":"ACTS_IN","name":"Blond Treehorn Thug","type":"Role","_key":"2011","_from":"1758","_to":"1750"} +{"$label":"ACTS_IN","name":"Woo, Treehorn Thug","type":"Role","_key":"2010","_from":"1757","_to":"1750"} +{"$label":"ACTS_IN","name":"Bunny Lebowski","type":"Role","_key":"2009","_from":"1756","_to":"1750"} +{"$label":"ACTS_IN","name":"Brandt","type":"Role","_key":"2008","_from":"1755","_to":"1750"} +{"$label":"ACTS_IN","name":"Jeffrey Lebowski - The Big Lebowski","type":"Role","_key":"2007","_from":"1754","_to":"1750"} +{"$label":"ACTS_IN","name":"Maude Lebowski","type":"Role","_key":"2006","_from":"1753","_to":"1750"} +{"$label":"ACTS_IN","name":"Walter Sobchak","type":"Role","_key":"2004","_from":"1752","_to":"1750"} +{"$label":"DIRECTED","_key":"2002","_from":"1751","_to":"1750"} +{"$label":"DIRECTED","_key":"90372","_from":"1751","_to":"53400"} +{"$label":"DIRECTED","_key":"72828","_from":"1751","_to":"43873"} +{"$label":"DIRECTED","_key":"71869","_from":"1751","_to":"43490"} +{"$label":"DIRECTED","_key":"69445","_from":"1751","_to":"42438"} +{"$label":"DIRECTED","_key":"65709","_from":"1751","_to":"40695"} +{"$label":"DIRECTED","_key":"53363","_from":"1751","_to":"34489"} +{"$label":"DIRECTED","_key":"45555","_from":"1751","_to":"30156"} +{"$label":"DIRECTED","_key":"37622","_from":"1751","_to":"25505"} +{"$label":"DIRECTED","_key":"35025","_from":"1751","_to":"23900"} +{"$label":"DIRECTED","_key":"19844","_from":"1751","_to":"14635"} +{"$label":"DIRECTED","_key":"4888","_from":"1751","_to":"4175"} +{"$label":"DIRECTED","_key":"4876","_from":"1751","_to":"4171"} +{"$label":"DIRECTED","_key":"4060","_from":"1751","_to":"3465"} +{"$label":"DIRECTED","_key":"3909","_from":"1751","_to":"3344"} +{"$label":"DIRECTED","_key":"2140","_from":"1751","_to":"1879"} +{"$label":"ACTS_IN","name":"George Wolfsbottom","type":"Role","_key":"118470","_from":"1752","_to":"69645"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"117959","_from":"1752","_to":"69337"} +{"$label":"ACTS_IN","name":"Judge Tolliver","type":"Role","_key":"108760","_from":"1752","_to":"64292"} +{"$label":"ACTS_IN","name":"Happy's Father","type":"Role","_key":"102557","_from":"1752","_to":"60337"} +{"$label":"ACTS_IN","name":"Baloo","type":"Role","_key":"102249","_from":"1752","_to":"60169"} +{"$label":"ACTS_IN","name":"Coach Harris","type":"Role","_key":"98309","_from":"1752","_to":"57901"} +{"$label":"ACTS_IN","name":"Julie 'Baby Feet' Balboni","type":"Role","_key":"97917","_from":"1752","_to":"57668"} +{"$label":"ACTS_IN","name":"Sulley (voice)","type":"Role","_key":"97549","_from":"1752","_to":"57446"} +{"$label":"ACTS_IN","name":"Pacha","type":"Role","_key":"94411","_from":"1752","_to":"55586"} +{"$label":"ACTS_IN","name":"Sherman","type":"Role","_key":"88318","_from":"1752","_to":"52376"} +{"$label":"ACTS_IN","name":"Bones Darley","type":"Role","_key":"72272","_from":"1752","_to":"43661"} +{"$label":"ACTS_IN","name":"Patcha (voice)","type":"Role","_key":"71576","_from":"1752","_to":"43357"} +{"$label":"ACTS_IN","name":"Mighty Mack McTeer","type":"Role","_key":"70726","_from":"1752","_to":"43013"} +{"$label":"ACTS_IN","name":"Al Yackey","type":"Role","_key":"69302","_from":"1752","_to":"42371"} +{"$label":"ACTS_IN","name":"Andre DeSoto","type":"Role","_key":"67391","_from":"1752","_to":"41521"} +{"$label":"ACTS_IN","name":"Ralph Hampton Gainesworth Jones","type":"Role","_key":"65902","_from":"1752","_to":"40771"} +{"$label":"ACTS_IN","name":"Roland Jones","type":"Role","_key":"63109","_from":"1752","_to":"39590"} +{"$label":"ACTS_IN","name":"Gerold","type":"Role","_key":"54298","_from":"1752","_to":"34856"} +{"$label":"ACTS_IN","name":"Ocious P. Potter","type":"Role","_key":"53935","_from":"1752","_to":"34706"} +{"$label":"ACTS_IN","name":"Jonesy","type":"Role","_key":"53704","_from":"1752","_to":"34632"} +{"$label":"ACTS_IN","name":"Larry Verber","type":"Role","_key":"50309","_from":"1752","_to":"32867"} +{"$label":"ACTS_IN","name":"Pops Racer","type":"Role","_key":"46803","_from":"1752","_to":"30879"} +{"$label":"ACTS_IN","name":"Delbert McClintock","type":"Role","_key":"43692","_from":"1752","_to":"29183"} +{"$label":"ACTS_IN","name":"Steve Blauner","type":"Role","_key":"43605","_from":"1752","_to":"29123"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"42825","_from":"1752","_to":"28637"} +{"$label":"ACTS_IN","name":"Duke Earle","type":"Role","_key":"38563","_from":"1752","_to":"26054"} +{"$label":"ACTS_IN","name":"Layton T. Montgomery","type":"Role","_key":"37854","_from":"1752","_to":"25647"} +{"$label":"ACTS_IN","name":"Congressman Long","type":"Role","_key":"22761","_from":"1752","_to":"16511"} +{"$label":"ACTS_IN","name":"Detc. Dehling","type":"Role","_key":"18703","_from":"1752","_to":"13841"} +{"$label":"ACTS_IN","name":"Fred Flintstone","type":"Role","_key":"10568","_from":"1752","_to":"8398"} +{"$label":"ACTS_IN","name":"Sullivan","type":"Role","_key":"7013","_from":"1752","_to":"5882"} +{"$label":"ACTS_IN","name":"Gale Snoats","type":"Role","_key":"4881","_from":"1752","_to":"4171"} +{"$label":"ACTS_IN","name":"Charlie Meadows","type":"Role","_key":"4063","_from":"1752","_to":"3465"} +{"$label":"ACTS_IN","name":"Big Dan Teague","type":"Role","_key":"2145","_from":"1752","_to":"1879"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"98327","_from":"1753","_to":"57911"} +{"$label":"ACTS_IN","name":"Rebecca Taylor","type":"Role","_key":"70066","_from":"1753","_to":"42720"} +{"$label":"ACTS_IN","name":"Lila Crane","type":"Role","_key":"68812","_from":"1753","_to":"42164"} +{"$label":"ACTS_IN","name":"Audrey Woods","type":"Role","_key":"68119","_from":"1753","_to":"41844"} +{"$label":"ACTS_IN","name":"Barbara Baekeland","type":"Role","_key":"65996","_from":"1753","_to":"40841"} +{"$label":"ACTS_IN","name":"Cathy Whitaker","type":"Role","_key":"65197","_from":"1753","_to":"40492"} +{"$label":"ACTS_IN","name":"Telly Paretta","type":"Role","_key":"61223","_from":"1753","_to":"38671"} +{"$label":"ACTS_IN","name":"Brenda Martin","type":"Role","_key":"58573","_from":"1753","_to":"37011"} +{"$label":"ACTS_IN","name":"Clarice Starling","type":"Role","_key":"56218","_from":"1753","_to":"35726"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"55737","_from":"1753","_to":"35462"} +{"$label":"ACTS_IN","name":"Electra","type":"Role","_key":"55691","_from":"1753","_to":"35443"} +{"$label":"ACTS_IN","name":"Cora Duvall","type":"Role","_key":"54035","_from":"1753","_to":"34762"} +{"$label":"ACTS_IN","name":"Dr. Allison Reed, CDC","type":"Role","_key":"53599","_from":"1753","_to":"34589"} +{"$label":"ACTS_IN","name":"Doctor's Wife","type":"Role","_key":"49138","_from":"1753","_to":"32190"} +{"$label":"ACTS_IN","name":"Wavey Prowse","type":"Role","_key":"43404","_from":"1753","_to":"28999"} +{"$label":"ACTS_IN","name":"Dr. Anne Eastman","type":"Role","_key":"37542","_from":"1753","_to":"25451"} +{"$label":"ACTS_IN","name":"Amber Waves - Maggie","type":"Role","_key":"35440","_from":"1753","_to":"24109"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"31960","_from":"1753","_to":"22288"} +{"$label":"ACTS_IN","name":"Ruthie","type":"Role","_key":"29598","_from":"1753","_to":"20951"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"28883","_from":"1753","_to":"20642"} +{"$label":"ACTS_IN","name":"Sharon Dulaney","type":"Role","_key":"18729","_from":"1753","_to":"13858"} +{"$label":"ACTS_IN","name":"Callie Ferris","type":"Role","_key":"15365","_from":"1753","_to":"11754"} +{"$label":"ACTS_IN","name":"Marian Wyman","type":"Role","_key":"8362","_from":"1753","_to":"6847"} +{"$label":"ACTS_IN","name":"Laura Brown","type":"Role","_key":"7070","_from":"1753","_to":"5922"} +{"$label":"ACTS_IN","name":"Linda Partridge","type":"Role","_key":"4580","_from":"1753","_to":"3908"} +{"$label":"ACTS_IN","name":"Dr. Sarah Harding","type":"Role","_key":"4515","_from":"1753","_to":"3851"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"96221","_from":"1754","_to":"56557"} +{"$label":"ACTS_IN","name":"Capt. McBride","type":"Role","_key":"71586","_from":"1754","_to":"43360"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"71072","_from":"1754","_to":"43154"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"57730","_from":"1754","_to":"36543"} +{"$label":"ACTS_IN","name":"Dr. Molyneux","type":"Role","_key":"47833","_from":"1754","_to":"31490"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"23093","_from":"1754","_to":"16741"} +{"$label":"ACTS_IN","name":"The Count","type":"Role","_key":"118256","_from":"1755","_to":"69515"} +{"$label":"ACTS_IN","name":"Wilson Joel","type":"Role","_key":"104270","_from":"1755","_to":"61347"} +{"$label":"ACTS_IN","name":"Dan Mahowny","type":"Role","_key":"104259","_from":"1755","_to":"61344"} +{"$label":"ACTS_IN","name":"Father Brendan Flynn","type":"Role","_key":"99805","_from":"1755","_to":"58877"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"92873","_from":"1755","_to":"54784"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"91447","_from":"1755","_to":"53929"} +{"$label":"ACTS_IN","name":"Allen","type":"Role","_key":"65041","_from":"1755","_to":"40416"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"63422","_from":"1755","_to":"39729"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62564","_from":"1755","_to":"39371"} +{"$label":"ACTS_IN","name":"Mitch Roman","type":"Role","_key":"62533","_from":"1755","_to":"39365"} +{"$label":"ACTS_IN","name":"Freddy Lounds","type":"Role","_key":"54505","_from":"1755","_to":"34932"} +{"$label":"ACTS_IN","name":"George Willis, Jr.","type":"Role","_key":"54096","_from":"1755","_to":"34781"} +{"$label":"ACTS_IN","name":"Jon Savage","type":"Role","_key":"48700","_from":"1755","_to":"31945"} +{"$label":"ACTS_IN","name":"Young Craps Player","type":"Role","_key":"47885","_from":"1755","_to":"31513"} +{"$label":"ACTS_IN","name":"Dean Trumbell","type":"Role","_key":"47875","_from":"1755","_to":"31510"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"47555","_from":"1755","_to":"31338"} +{"$label":"ACTS_IN","name":"Gust Avrakotos","type":"Role","_key":"43999","_from":"1755","_to":"29354"} +{"$label":"ACTS_IN","name":"Sandy Lyle","type":"Role","_key":"40831","_from":"1755","_to":"27489"} +{"$label":"ACTS_IN","name":"Scotty J.","type":"Role","_key":"35443","_from":"1755","_to":"24109"} +{"$label":"ACTS_IN","name":"Caden","type":"Role","_key":"35146","_from":"1755","_to":"23955"} +{"$label":"ACTS_IN","name":"Reverend Veasey","type":"Role","_key":"20074","_from":"1755","_to":"14764"} +{"$label":"ACTS_IN","name":"Jacob Elinsky","type":"Role","_key":"13240","_from":"1755","_to":"10307"} +{"$label":"ACTS_IN","name":"Freddie Miles","type":"Role","_key":"12158","_from":"1755","_to":"9529"} +{"$label":"ACTS_IN","name":"Owen Davian","type":"Role","_key":"11403","_from":"1755","_to":"8981"} +{"$label":"ACTS_IN","name":"Lester Bangs","type":"Role","_key":"9248","_from":"1755","_to":"7466"} +{"$label":"ACTS_IN","name":"Dustin Davis","type":"Role","_key":"7937","_from":"1755","_to":"6576"} +{"$label":"ACTS_IN","name":"Truman Capote","type":"Role","_key":"5046","_from":"1755","_to":"4294"} +{"$label":"ACTS_IN","name":"Phil Parma","type":"Role","_key":"4585","_from":"1755","_to":"3908"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"117824","_from":"1756","_to":"69258"} +{"$label":"ACTS_IN","name":"Lola Byrne","type":"Role","_key":"109308","_from":"1756","_to":"64573"} +{"$label":"ACTS_IN","name":"Lindsay \/ Lil Reno","type":"Role","_key":"102936","_from":"1756","_to":"60550"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"101747","_from":"1756","_to":"59883"} +{"$label":"ACTS_IN","name":"Sara Olswang","type":"Role","_key":"100495","_from":"1756","_to":"59260"} +{"$label":"ACTS_IN","name":"Aline Cedrac","type":"Role","_key":"88262","_from":"1756","_to":"52358"} +{"$label":"ACTS_IN","name":"Gwen Pearson","type":"Role","_key":"69944","_from":"1756","_to":"42675"} +{"$label":"ACTS_IN","name":"Sasha Thomas","type":"Role","_key":"57548","_from":"1756","_to":"36455"} +{"$label":"ACTS_IN","name":"Prom Queen","type":"Role","_key":"31034","_from":"1756","_to":"21724"} +{"$label":"ACTS_IN","name":"Lisa Taylor","type":"Role","_key":"23831","_from":"1756","_to":"17282"} +{"$label":"ACTS_IN","name":"Vicky Lathum","type":"Role","_key":"23446","_from":"1756","_to":"16996"} +{"$label":"ACTS_IN","name":"Victoria \" Vicky \" Lathum","type":"Role","_key":"18355","_from":"1756","_to":"13613"} +{"$label":"ACTS_IN","name":"Marci Greenbaum","type":"Role","_key":"9398","_from":"1756","_to":"7576"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"116965","_from":"1758","_to":"68851"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"109459","_from":"1758","_to":"64663"} +{"$label":"ACTS_IN","name":"Kyle Finch","type":"Role","_key":"28248","_from":"1758","_to":"20227"} +{"$label":"ACTS_IN","name":"Dick Hickock","type":"Role","_key":"5059","_from":"1758","_to":"4294"} +{"$label":"ACTS_IN","name":"Grunge \/ Edward Chang (voice)","type":"Role","_key":"106588","_from":"1759","_to":"62807"} +{"$label":"ACTS_IN","name":"Camonetti","type":"Role","_key":"116370","_from":"1762","_to":"68507"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"95940","_from":"1762","_to":"56416"} +{"$label":"ACTS_IN","name":"Detective Antonio Ri","type":"Role","_key":"89354","_from":"1762","_to":"52887"} +{"$label":"ACTS_IN","name":"Herbie Stempel","type":"Role","_key":"69932","_from":"1762","_to":"42673"} +{"$label":"ACTS_IN","name":"The Phantom","type":"Role","_key":"64893","_from":"1762","_to":"40353"} +{"$label":"ACTS_IN","name":"Dr. Bill Perlman","type":"Role","_key":"63386","_from":"1762","_to":"39716"} +{"$label":"ACTS_IN","name":"Joey Knish","type":"Role","_key":"61783","_from":"1762","_to":"38897"} +{"$label":"ACTS_IN","name":"Sean Amstrong","type":"Role","_key":"57598","_from":"1762","_to":"36473"} +{"$label":"ACTS_IN","name":"Carl Cody","type":"Role","_key":"57456","_from":"1762","_to":"36419"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"54315","_from":"1762","_to":"34859"} +{"$label":"ACTS_IN","name":"Dick Bell","type":"Role","_key":"51592","_from":"1762","_to":"33665"} +{"$label":"ACTS_IN","name":"Agent Simmons","type":"Role","_key":"49412","_from":"1762","_to":"32350"} +{"$label":"ACTS_IN","name":"Emilio Lopez","type":"Role","_key":"17581","_from":"1762","_to":"13137"} +{"$label":"ACTS_IN","name":"Agent Simmons","type":"Role","_key":"16058","_from":"1762","_to":"12202"} +{"$label":"ACTS_IN","name":"Pauline Carbone","type":"Role","_key":"15142","_from":"1762","_to":"11617"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"14770","_from":"1762","_to":"11361"} +{"$label":"ACTS_IN","name":"John Shooter","type":"Role","_key":"14050","_from":"1762","_to":"10896"} +{"$label":"ACTS_IN","name":"Pino","type":"Role","_key":"11024","_from":"1762","_to":"8717"} +{"$label":"ACTS_IN","name":"Bernie Bernbaum","type":"Role","_key":"4892","_from":"1762","_to":"4175"} +{"$label":"ACTS_IN","name":"Barton Fink","type":"Role","_key":"4062","_from":"1762","_to":"3465"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"2143","_from":"1762","_to":"1879"} +{"$label":"DIRECTED","_key":"98011","_from":"1762","_to":"57718"} +{"$label":"ACTS_IN","name":"Mr. Townsend","type":"Role","_key":"2026","_from":"1771","_to":"1764"} +{"$label":"ACTS_IN","name":"Eleanor Hewett","type":"Role","_key":"2025","_from":"1770","_to":"1764"} +{"$label":"ACTS_IN","name":"Alec Hewett","type":"Role","_key":"2024","_from":"1769","_to":"1764"} +{"$label":"ACTS_IN","name":"Chloe Hewett Wilton","type":"Role","_key":"2023","_from":"1768","_to":"1764"} +{"$label":"ACTS_IN","name":"Nola Rice","type":"Role","_key":"2022","_from":"1767","_to":"1764"} +{"$label":"ACTS_IN","name":"Chris Wilton","type":"Role","_key":"2021","_from":"1766","_to":"1764"} +{"$label":"DIRECTED","_key":"2020","_from":"1765","_to":"1764"} +{"$label":"DIRECTED","_key":"119428","_from":"1765","_to":"70168"} +{"$label":"DIRECTED","_key":"119203","_from":"1765","_to":"70040"} +{"$label":"DIRECTED","_key":"91357","_from":"1765","_to":"53879"} +{"$label":"DIRECTED","_key":"71567","_from":"1765","_to":"43354"} +{"$label":"DIRECTED","_key":"71116","_from":"1765","_to":"43172"} +{"$label":"DIRECTED","_key":"70685","_from":"1765","_to":"43000"} +{"$label":"DIRECTED","_key":"70677","_from":"1765","_to":"42998"} +{"$label":"DIRECTED","_key":"70129","_from":"1765","_to":"42747"} +{"$label":"DIRECTED","_key":"69926","_from":"1765","_to":"42671"} +{"$label":"DIRECTED","_key":"69524","_from":"1765","_to":"42465"} +{"$label":"DIRECTED","_key":"69214","_from":"1765","_to":"42325"} +{"$label":"DIRECTED","_key":"69023","_from":"1765","_to":"42249"} +{"$label":"DIRECTED","_key":"67417","_from":"1765","_to":"41529"} +{"$label":"DIRECTED","_key":"66210","_from":"1765","_to":"40960"} +{"$label":"DIRECTED","_key":"65359","_from":"1765","_to":"40549"} +{"$label":"DIRECTED","_key":"64131","_from":"1765","_to":"40021"} +{"$label":"DIRECTED","_key":"63453","_from":"1765","_to":"39745"} +{"$label":"DIRECTED","_key":"63375","_from":"1765","_to":"39712"} +{"$label":"DIRECTED","_key":"55949","_from":"1765","_to":"35576"} +{"$label":"DIRECTED","_key":"55672","_from":"1765","_to":"35434"} +{"$label":"DIRECTED","_key":"55656","_from":"1765","_to":"35428"} +{"$label":"DIRECTED","_key":"55632","_from":"1765","_to":"35413"} +{"$label":"DIRECTED","_key":"55600","_from":"1765","_to":"35397"} +{"$label":"DIRECTED","_key":"54039","_from":"1765","_to":"34763"} +{"$label":"DIRECTED","_key":"48857","_from":"1765","_to":"32041"} +{"$label":"DIRECTED","_key":"48491","_from":"1765","_to":"31835"} +{"$label":"DIRECTED","_key":"36068","_from":"1765","_to":"24486"} +{"$label":"DIRECTED","_key":"35590","_from":"1765","_to":"24189"} +{"$label":"DIRECTED","_key":"33991","_from":"1765","_to":"23390"} +{"$label":"DIRECTED","_key":"23489","_from":"1765","_to":"17030"} +{"$label":"DIRECTED","_key":"22352","_from":"1765","_to":"16249"} +{"$label":"DIRECTED","_key":"8470","_from":"1765","_to":"6916"} +{"$label":"DIRECTED","_key":"8386","_from":"1765","_to":"6860"} +{"$label":"DIRECTED","_key":"6204","_from":"1765","_to":"5259"} +{"$label":"ACTS_IN","name":"Kleinman","type":"Role","_key":"119197","_from":"1765","_to":"70040"} +{"$label":"ACTS_IN","name":"Danny Rose","type":"Role","_key":"91352","_from":"1765","_to":"53879"} +{"$label":"ACTS_IN","name":"Boris Grushenko","type":"Role","_key":"71563","_from":"1765","_to":"43354"} +{"$label":"ACTS_IN","name":"Victor \/ Fabrizio \/ The Fool \/ Sperm","type":"Role","_key":"71122","_from":"1765","_to":"43172"} +{"$label":"ACTS_IN","name":"Allan Felix","type":"Role","_key":"71039","_from":"1765","_to":"43140"} +{"$label":"ACTS_IN","name":"Cliff Stern","type":"Role","_key":"70678","_from":"1765","_to":"43000"} +{"$label":"ACTS_IN","name":"Miles Monroe","type":"Role","_key":"70673","_from":"1765","_to":"42998"} +{"$label":"ACTS_IN","name":"Virgil Starkwell","type":"Role","_key":"70125","_from":"1765","_to":"42747"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"69922","_from":"1765","_to":"42671"} +{"$label":"ACTS_IN","name":"Sandy Bates","type":"Role","_key":"69210","_from":"1765","_to":"42325"} +{"$label":"ACTS_IN","name":"Fielding Mellish","type":"Role","_key":"69019","_from":"1765","_to":"42249"} +{"$label":"ACTS_IN","name":"Leonard Zelig","type":"Role","_key":"67410","_from":"1765","_to":"41529"} +{"$label":"ACTS_IN","name":"David Dobel","type":"Role","_key":"65355","_from":"1765","_to":"40549"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"64132","_from":"1765","_to":"40021"} +{"$label":"ACTS_IN","name":"Walter Hollander","type":"Role","_key":"63456","_from":"1765","_to":"39745"} +{"$label":"ACTS_IN","name":"Larry Lipton","type":"Role","_key":"63370","_from":"1765","_to":"39712"} +{"$label":"ACTS_IN","name":"Val","type":"Role","_key":"55663","_from":"1765","_to":"35434"} +{"$label":"ACTS_IN","name":"Sheldon","type":"Role","_key":"55617","_from":"1765","_to":"35413"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55585","_from":"1765","_to":"35397"} +{"$label":"ACTS_IN","name":"Z","type":"Role","_key":"51484","_from":"1765","_to":"33574"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"48858","_from":"1765","_to":"32041"} +{"$label":"ACTS_IN","name":"Mickey Sachs","type":"Role","_key":"36077","_from":"1765","_to":"24486"} +{"$label":"ACTS_IN","name":"Victor Shakapopulis","type":"Role","_key":"28439","_from":"1765","_to":"20343"} +{"$label":"ACTS_IN","name":"CW Briggs","type":"Role","_key":"23490","_from":"1765","_to":"17030"} +{"$label":"ACTS_IN","name":"Harry Block","type":"Role","_key":"22339","_from":"1765","_to":"16249"} +{"$label":"ACTS_IN","name":"Howard Price","type":"Role","_key":"15251","_from":"1765","_to":"11679"} +{"$label":"ACTS_IN","name":"Alvy Singer","type":"Role","_key":"8471","_from":"1765","_to":"6916"} +{"$label":"ACTS_IN","name":"Isaac Davis","type":"Role","_key":"8388","_from":"1765","_to":"6860"} +{"$label":"ACTS_IN","name":"Sid Waterman","type":"Role","_key":"6222","_from":"1765","_to":"5259"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"108190","_from":"1766","_to":"63940"} +{"$label":"ACTS_IN","name":"Nic, aged 16","type":"Role","_key":"102993","_from":"1766","_to":"60579"} +{"$label":"ACTS_IN","name":"George Hogg","type":"Role","_key":"94337","_from":"1766","_to":"55553"} +{"$label":"ACTS_IN","name":"Chiron","type":"Role","_key":"90042","_from":"1766","_to":"53259"} +{"$label":"ACTS_IN","name":"George Osborne","type":"Role","_key":"71172","_from":"1766","_to":"43195"} +{"$label":"ACTS_IN","name":"Louis Connelly","type":"Role","_key":"35994","_from":"1766","_to":"24440"} +{"$label":"ACTS_IN","name":"Davey","type":"Role","_key":"27532","_from":"1766","_to":"19754"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"24319","_from":"1766","_to":"17618"} +{"$label":"ACTS_IN","name":"Cassander","type":"Role","_key":"17040","_from":"1766","_to":"12778"} +{"$label":"ACTS_IN","name":"Brian Slade","type":"Role","_key":"15624","_from":"1766","_to":"11924"} +{"$label":"ACTS_IN","name":"Declan","type":"Role","_key":"11406","_from":"1766","_to":"8981"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"5681","_from":"1766","_to":"4839"} +{"$label":"ACTS_IN","name":"Meg Windermere","type":"Role","_key":"103516","_from":"1767","_to":"60900"} +{"$label":"ACTS_IN","name":"Francesca Curtis","type":"Role","_key":"94889","_from":"1767","_to":"55867"} +{"$label":"ACTS_IN","name":"Annie Braddock","type":"Role","_key":"89463","_from":"1767","_to":"52971"} +{"$label":"ACTS_IN","name":"Mary Boleyn","type":"Role","_key":"88553","_from":"1767","_to":"52483"} +{"$label":"ACTS_IN","name":"Mindy (voice)","type":"Role","_key":"72281","_from":"1767","_to":"43663"} +{"$label":"ACTS_IN","name":"Birdy Abundas","type":"Role","_key":"65714","_from":"1767","_to":"40695"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"62599","_from":"1767","_to":"39382"} +{"$label":"ACTS_IN","name":"Mary Queen of Scots","type":"Role","_key":"61686","_from":"1767","_to":"38857"} +{"$label":"ACTS_IN","name":"Anna Marks","type":"Role","_key":"61515","_from":"1767","_to":"38795"} +{"$label":"ACTS_IN","name":"Natasha Romanoff \/ Black Widow","type":"Role","_key":"61172","_from":"1767","_to":"38656"} +{"$label":"ACTS_IN","name":"Pursy Will","type":"Role","_key":"58455","_from":"1767","_to":"36947"} +{"$label":"ACTS_IN","name":"Kay Lake","type":"Role","_key":"55468","_from":"1767","_to":"35352"} +{"$label":"ACTS_IN","name":"Kate Armstrong","type":"Role","_key":"52342","_from":"1767","_to":"34070"} +{"$label":"ACTS_IN","name":"Ashley Parker","type":"Role","_key":"51185","_from":"1767","_to":"33384"} +{"$label":"ACTS_IN","name":"Silken Floss","type":"Role","_key":"48829","_from":"1767","_to":"32022"} +{"$label":"ACTS_IN","name":"Cristina","type":"Role","_key":"35591","_from":"1767","_to":"24189"} +{"$label":"ACTS_IN","name":"Griet","type":"Role","_key":"28381","_from":"1767","_to":"20310"} +{"$label":"ACTS_IN","name":"Alex Foreman","type":"Role","_key":"16410","_from":"1767","_to":"12420"} +{"$label":"ACTS_IN","name":"Jordan Two Delta","type":"Role","_key":"14488","_from":"1767","_to":"11190"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"13705","_from":"1767","_to":"10639"} +{"$label":"ACTS_IN","name":"Olivia Wenscombe","type":"Role","_key":"12047","_from":"1767","_to":"9443"} +{"$label":"ACTS_IN","name":"Grace MacLean","type":"Role","_key":"6515","_from":"1767","_to":"5515"} +{"$label":"ACTS_IN","name":"Sondra Pransky","type":"Role","_key":"6206","_from":"1767","_to":"5259"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"2388","_from":"1767","_to":"2102"} +{"$label":"DIRECTED","_key":"90352","_from":"1767","_to":"53397"} +{"$label":"ACTS_IN","name":"Nina Blount","type":"Role","_key":"103812","_from":"1768","_to":"61055"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"103425","_from":"1768","_to":"60838"} +{"$label":"ACTS_IN","name":"Susan Allen","type":"Role","_key":"91899","_from":"1768","_to":"54219"} +{"$label":"ACTS_IN","name":"Laura Black","type":"Role","_key":"89299","_from":"1768","_to":"52865"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"88001","_from":"1768","_to":"52246"} +{"$label":"ACTS_IN","name":"Rachel Solando","type":"Role","_key":"69139","_from":"1768","_to":"42293"} +{"$label":"ACTS_IN","name":"Helena Patterson","type":"Role","_key":"64264","_from":"1768","_to":"40077"} +{"$label":"ACTS_IN","name":"Lizzie","type":"Role","_key":"51820","_from":"1768","_to":"33813"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"44640","_from":"1768","_to":"29706"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"44316","_from":"1768","_to":"29535"} +{"$label":"ACTS_IN","name":"Young Sophie","type":"Role","_key":"34957","_from":"1768","_to":"23864"} +{"$label":"ACTS_IN","name":"Kat Ashley","type":"Role","_key":"32266","_from":"1768","_to":"22475"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"30403","_from":"1768","_to":"21378"} +{"$label":"ACTS_IN","name":"Angelina Tyler","type":"Role","_key":"30298","_from":"1768","_to":"21314"} +{"$label":"ACTS_IN","name":"Frances (P\u00e8re-Lachaise)","type":"Role","_key":"19885","_from":"1768","_to":"14635"} +{"$label":"ACTS_IN","name":"Dakota Parker","type":"Role","_key":"14325","_from":"1768","_to":"11086"} +{"$label":"ACTS_IN","name":"Cathie Dimly","type":"Role","_key":"3424","_from":"1768","_to":"2932"} +{"$label":"ACTS_IN","name":"Minister Breteuil","type":"Role","_key":"118616","_from":"1769","_to":"69747"} +{"$label":"ACTS_IN","name":"Hermann G\u00f6ring","type":"Role","_key":"117933","_from":"1769","_to":"69324"} +{"$label":"ACTS_IN","name":"Big John Harrigan","type":"Role","_key":"117276","_from":"1769","_to":"68977"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"114798","_from":"1769","_to":"67619"} +{"$label":"ACTS_IN","name":"Joe Hamill","type":"Role","_key":"110754","_from":"1769","_to":"65429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110303","_from":"1769","_to":"65180"} +{"$label":"ACTS_IN","name":"Green Dragon (voice)","type":"Role","_key":"109057","_from":"1769","_to":"64441"} +{"$label":"ACTS_IN","name":"Frank Perry","type":"Role","_key":"102073","_from":"1769","_to":"60052"} +{"$label":"ACTS_IN","name":"Jim Morris Sr.","type":"Role","_key":"101214","_from":"1769","_to":"59618"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"95117","_from":"1769","_to":"55975"} +{"$label":"ACTS_IN","name":"Avery Ludlow","type":"Role","_key":"93432","_from":"1769","_to":"55017"} +{"$label":"ACTS_IN","name":"Killearn","type":"Role","_key":"71935","_from":"1769","_to":"43521"} +{"$label":"ACTS_IN","name":"Joe Reisert","type":"Role","_key":"69994","_from":"1769","_to":"42693"} +{"$label":"ACTS_IN","name":"Hannibal Lecktor","type":"Role","_key":"69958","_from":"1769","_to":"42679"} +{"$label":"ACTS_IN","name":"Dr. Nathan Waldman","type":"Role","_key":"69692","_from":"1769","_to":"42545"} +{"$label":"ACTS_IN","name":"Gary Barker","type":"Role","_key":"58200","_from":"1769","_to":"36816"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"55128","_from":"1769","_to":"35191"} +{"$label":"ACTS_IN","name":"Captain Jeremiah Cassidy","type":"Role","_key":"53985","_from":"1769","_to":"34724"} +{"$label":"ACTS_IN","name":"Dr. Finch","type":"Role","_key":"46971","_from":"1769","_to":"30977"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"39617","_from":"1769","_to":"26777"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"36288","_from":"1769","_to":"24618"} +{"$label":"ACTS_IN","name":"Robert McKee","type":"Role","_key":"23314","_from":"1769","_to":"16899"} +{"$label":"ACTS_IN","name":"Ward Abbott","type":"Role","_key":"21721","_from":"1769","_to":"15871"} +{"$label":"ACTS_IN","name":"Ward Abbott","type":"Role","_key":"21716","_from":"1769","_to":"15869"} +{"$label":"ACTS_IN","name":"Melvin Belli","type":"Role","_key":"16914","_from":"1769","_to":"12715"} +{"$label":"ACTS_IN","name":"Clayton Blackstone","type":"Role","_key":"15960","_from":"1769","_to":"12139"} +{"$label":"ACTS_IN","name":"James Brogan","type":"Role","_key":"13244","_from":"1769","_to":"10307"} +{"$label":"ACTS_IN","name":"K\u00f6nig Agamemnon","type":"Role","_key":"7791","_from":"1769","_to":"6469"} +{"$label":"ACTS_IN","name":"Richard Morgan","type":"Role","_key":"6784","_from":"1769","_to":"5693"} +{"$label":"ACTS_IN","name":"Argyle Wallace","type":"Role","_key":"2940","_from":"1769","_to":"2514"} +{"$label":"ACTS_IN","name":"Wendy Woods","type":"Role","_key":"89938","_from":"1770","_to":"53212"} +{"$label":"ACTS_IN","name":"Mrs. Bibby","type":"Role","_key":"50270","_from":"1770","_to":"32841"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"8727","_from":"1770","_to":"7074"} +{"$label":"ACTS_IN","name":"Mr. Hunt","type":"Role","_key":"110974","_from":"1771","_to":"65545"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"30594","_from":"1771","_to":"21496"} +{"$label":"ACTS_IN","name":"Robert Mosley","type":"Role","_key":"18153","_from":"1771","_to":"13461"} +{"$label":"ACTS_IN","name":"Officer Preseuski","type":"Role","_key":"2041","_from":"1783","_to":"1772"} +{"$label":"ACTS_IN","name":"Lt. Anderson","type":"Role","_key":"2040","_from":"1782","_to":"1772"} +{"$label":"ACTS_IN","name":"Scoop","type":"Role","_key":"2039","_from":"1781","_to":"1772"} +{"$label":"ACTS_IN","name":"Bowtie Driver","type":"Role","_key":"2038","_from":"1780","_to":"1772"} +{"$label":"ACTS_IN","name":"Frank Nitti","type":"Role","_key":"2036","_from":"1779","_to":"1772"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"2035","_from":"1778","_to":"1772"} +{"$label":"ACTS_IN","name":"Walter Payne","type":"Role","_key":"2034","_from":"1777","_to":"1772"} +{"$label":"ACTS_IN","name":"Police Chief Mike Dorsett","type":"Role","_key":"2033","_from":"1776","_to":"1772"} +{"$label":"ACTS_IN","name":"Agent Oscar Wallace","type":"Role","_key":"2032","_from":"1775","_to":"1772"} +{"$label":"ACTS_IN","name":"Agent George Stone\/Giuseppe Petri","type":"Role","_key":"2031","_from":"1774","_to":"1772"} +{"$label":"ACTS_IN","name":"Eliot Ness","type":"Role","_key":"2028","_from":"1773","_to":"1772"} +{"$label":"ACTS_IN","name":"Stephen Simmons","type":"Role","_key":"121316","_from":"1773","_to":"71281"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99282","_from":"1773","_to":"58507"} +{"$label":"ACTS_IN","name":"Marcus Sommers","type":"Role","_key":"98239","_from":"1773","_to":"57874"} +{"$label":"ACTS_IN","name":"Alex (scenes deleted)","type":"Role","_key":"90288","_from":"1773","_to":"53368"} +{"$label":"ACTS_IN","name":"Wyatt Earp","type":"Role","_key":"88365","_from":"1773","_to":"52390"} +{"$label":"ACTS_IN","name":"Thomas J. Murphy","type":"Role","_key":"88245","_from":"1773","_to":"52350"} +{"$label":"ACTS_IN","name":"Kenneth O'Donnell","type":"Role","_key":"73080","_from":"1773","_to":"43970"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"70298","_from":"1773","_to":"42834"} +{"$label":"ACTS_IN","name":"Denny Davies","type":"Role","_key":"69357","_from":"1773","_to":"42408"} +{"$label":"ACTS_IN","name":"Roy 'Tin Cup' McAvoy","type":"Role","_key":"63563","_from":"1773","_to":"39781"} +{"$label":"ACTS_IN","name":"Billy Chapel","type":"Role","_key":"62956","_from":"1773","_to":"39536"} +{"$label":"ACTS_IN","name":"Garrett Blake","type":"Role","_key":"61707","_from":"1773","_to":"38866"} +{"$label":"ACTS_IN","name":"Bud Johnson","type":"Role","_key":"61530","_from":"1773","_to":"38799"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Tom Farrell","type":"Role","_key":"60433","_from":"1773","_to":"38128"} +{"$label":"ACTS_IN","name":"Joe Darrow","type":"Role","_key":"59988","_from":"1773","_to":"37868"} +{"$label":"ACTS_IN","name":"The Postman","type":"Role","_key":"58114","_from":"1773","_to":"36774"} +{"$label":"ACTS_IN","name":"Mariner","type":"Role","_key":"56969","_from":"1773","_to":"36151"} +{"$label":"ACTS_IN","name":"Robert 'Butch' Haynes","type":"Role","_key":"54680","_from":"1773","_to":"35014"} +{"$label":"ACTS_IN","name":"Robin Hood","type":"Role","_key":"49371","_from":"1773","_to":"32334"} +{"$label":"ACTS_IN","name":"Ben Randall","type":"Role","_key":"33149","_from":"1773","_to":"22958"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"27634","_from":"1773","_to":"19805"} +{"$label":"ACTS_IN","name":"Earl Brooks","type":"Role","_key":"27178","_from":"1773","_to":"19541"} +{"$label":"ACTS_IN","name":"Beau Burroughs","type":"Role","_key":"23679","_from":"1773","_to":"17164"} +{"$label":"ACTS_IN","name":"Ray Kinsella","type":"Role","_key":"20406","_from":"1773","_to":"14937"} +{"$label":"ACTS_IN","name":"Charley Waite","type":"Role","_key":"17857","_from":"1773","_to":"13300"} +{"$label":"ACTS_IN","name":"Jim Garrison","type":"Role","_key":"9663","_from":"1773","_to":"7763"} +{"$label":"ACTS_IN","name":"Frank Farmer","type":"Role","_key":"7352","_from":"1773","_to":"6132"} +{"$label":"ACTS_IN","name":"Lieutenant John Dunbar","type":"Role","_key":"6951","_from":"1773","_to":"5833"} +{"$label":"ACTS_IN","name":"Crash Davis","type":"Role","_key":"4007","_from":"1773","_to":"3420"} +{"$label":"DIRECTED","_key":"58113","_from":"1773","_to":"36774"} +{"$label":"DIRECTED","_key":"17856","_from":"1773","_to":"13300"} +{"$label":"DIRECTED","_key":"6950","_from":"1773","_to":"5833"} +{"$label":"ACTS_IN","name":"Vicenzo","type":"Role","_key":"103426","_from":"1774","_to":"60838"} +{"$label":"ACTS_IN","name":"Michael Hunter","type":"Role","_key":"101757","_from":"1774","_to":"59885"} +{"$label":"ACTS_IN","name":"Delgado (voice)","type":"Role","_key":"100061","_from":"1774","_to":"59023"} +{"$label":"ACTS_IN","name":"Fingers","type":"Role","_key":"95638","_from":"1774","_to":"56251"} +{"$label":"ACTS_IN","name":"Mike Delmarco","type":"Role","_key":"95275","_from":"1774","_to":"56056"} +{"$label":"ACTS_IN","name":"Gray Baker","type":"Role","_key":"70188","_from":"1774","_to":"42779"} +{"$label":"ACTS_IN","name":"Raymond Avila","type":"Role","_key":"67625","_from":"1774","_to":"41621"} +{"$label":"ACTS_IN","name":"Gunther Butan","type":"Role","_key":"65395","_from":"1774","_to":"40555"} +{"$label":"ACTS_IN","name":"John Bubber","type":"Role","_key":"65126","_from":"1774","_to":"40453"} +{"$label":"ACTS_IN","name":"Michael Green","type":"Role","_key":"63418","_from":"1774","_to":"39729"} +{"$label":"ACTS_IN","name":"Sgt. John Berlin","type":"Role","_key":"63187","_from":"1774","_to":"39631"} +{"$label":"ACTS_IN","name":"Fico Fellove","type":"Role","_key":"55823","_from":"1774","_to":"35529"} +{"$label":"ACTS_IN","name":"Frank Conner","type":"Role","_key":"53984","_from":"1774","_to":"34724"} +{"$label":"ACTS_IN","name":"Stanley Locke","type":"Role","_key":"47077","_from":"1774","_to":"31043"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"29601","_from":"1774","_to":"20953"} +{"$label":"ACTS_IN","name":"Jimmy 'The Saint' Tosnia","type":"Role","_key":"5062","_from":"1774","_to":"4307"} +{"$label":"ACTS_IN","name":"Terry Benedict","type":"Role","_key":"4148","_from":"1774","_to":"3539"} +{"$label":"ACTS_IN","name":"Don Vincent 'Vinnie' Mancini-Corleone","type":"Role","_key":"3516","_from":"1774","_to":"3010"} +{"$label":"ACTS_IN","name":"Terry Benedict","type":"Role","_key":"2520","_from":"1774","_to":"2210"} +{"$label":"ACTS_IN","name":"Terry Benedict","type":"Role","_key":"2487","_from":"1774","_to":"2184"} +{"$label":"DIRECTED","_key":"55838","_from":"1774","_to":"35529"} +{"$label":"ACTS_IN","name":"Lon Gulick","type":"Role","_key":"102182","_from":"1775","_to":"60132"} +{"$label":"ACTS_IN","name":"Farley Mowat","type":"Role","_key":"99390","_from":"1775","_to":"58581"} +{"$label":"ACTS_IN","name":"Davy Johns","type":"Role","_key":"88181","_from":"1775","_to":"52321"} +{"$label":"ACTS_IN","name":"Mark Shermin","type":"Role","_key":"55384","_from":"1775","_to":"35308"} +{"$label":"ACTS_IN","name":"Capt. Weldon Mamet","type":"Role","_key":"21407","_from":"1775","_to":"15659"} +{"$label":"ACTS_IN","name":"Terry 'The Toad' Fields","type":"Role","_key":"9893","_from":"1775","_to":"7929"} +{"$label":"DIRECTED","_key":"89330","_from":"1775","_to":"52879"} +{"$label":"ACTS_IN","name":"Pyatt","type":"Role","_key":"106559","_from":"1776","_to":"62788"} +{"$label":"ACTS_IN","name":"Don Donoso Fellove","type":"Role","_key":"55824","_from":"1776","_to":"35529"} +{"$label":"ACTS_IN","name":"Scruggs","type":"Role","_key":"104515","_from":"1777","_to":"61466"} +{"$label":"ACTS_IN","name":"Tom Keough","type":"Role","_key":"52219","_from":"1777","_to":"34016"} +{"$label":"ACTS_IN","name":"Morris 'Mo' Wanchuk","type":"Role","_key":"70936","_from":"1778","_to":"43092"} +{"$label":"ACTS_IN","name":"Stark","type":"Role","_key":"47701","_from":"1778","_to":"31415"} +{"$label":"ACTS_IN","name":"Father Thomas","type":"Role","_key":"42797","_from":"1778","_to":"28626"} +{"$label":"ACTS_IN","name":"Gus, CIA Canada Desk Agent","type":"Role","_key":"15455","_from":"1778","_to":"11805"} +{"$label":"ACTS_IN","name":"Ramon Cotta","type":"Role","_key":"118653","_from":"1779","_to":"69763"} +{"$label":"ACTS_IN","name":"Asmodeus","type":"Role","_key":"118307","_from":"1779","_to":"69543"} +{"$label":"ACTS_IN","name":"The Lady","type":"Role","_key":"114710","_from":"1779","_to":"67566"} +{"$label":"ACTS_IN","name":"Black Hand Kelly","type":"Role","_key":"66498","_from":"1779","_to":"41115"} +{"$label":"ACTS_IN","name":"Papa Jupiter","type":"Role","_key":"56850","_from":"1779","_to":"36092"} +{"$label":"ACTS_IN","name":"Drake","type":"Role","_key":"46262","_from":"1779","_to":"30580"} +{"$label":"ACTS_IN","name":"Daniel Stein","type":"Role","_key":"43530","_from":"1779","_to":"29077"} +{"$label":"ACTS_IN","name":"Andy Cavanaugh","type":"Role","_key":"108504","_from":"1783","_to":"64131"} +{"$label":"ACTS_IN","name":"Kaminski","type":"Role","_key":"103798","_from":"1783","_to":"61053"} +{"$label":"ACTS_IN","name":"Michael C.","type":"Role","_key":"98045","_from":"1783","_to":"57729"} +{"$label":"ACTS_IN","name":"Cpl. Thomas E. Clark","type":"Role","_key":"61211","_from":"1783","_to":"38667"} +{"$label":"ACTS_IN","name":"Sgt. Becker","type":"Role","_key":"50650","_from":"1783","_to":"33066"} +{"$label":"DIRECTED","_key":"2055","_from":"1798","_to":"1785"} +{"$label":"ACTS_IN","name":"Elrond","type":"Role","_key":"2054","_from":"1797","_to":"1785"} +{"$label":"ACTS_IN","name":"Saruman","type":"Role","_key":"2053","_from":"1796","_to":"1785"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"2052","_from":"1795","_to":"1785"} +{"$label":"ACTS_IN","name":"Gimli","type":"Role","_key":"2051","_from":"1794","_to":"1785"} +{"$label":"ACTS_IN","name":"Boromir","type":"Role","_key":"2049","_from":"1793","_to":"1785"} +{"$label":"ACTS_IN","name":"Bilbo Beutlin","type":"Role","_key":"2048","_from":"1792","_to":"1785"} +{"$label":"ACTS_IN","name":"Pippin","type":"Role","_key":"2047","_from":"1791","_to":"1785"} +{"$label":"ACTS_IN","name":"Merry","type":"Role","_key":"2046","_from":"1790","_to":"1785"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"2045","_from":"1789","_to":"1785"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"2044","_from":"1788","_to":"1785"} +{"$label":"ACTS_IN","name":"Gandalf","type":"Role","_key":"2043","_from":"1787","_to":"1785"} +{"$label":"ACTS_IN","name":"Frodo Beutlin","type":"Role","_key":"2042","_from":"1786","_to":"1785"} +{"$label":"ACTS_IN","name":"Alec Legge","type":"Role","_key":"41680","_from":"1786","_to":"27972"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"32002","_from":"1786","_to":"22303"} +{"$label":"ACTS_IN","name":"Ray Martin","type":"Role","_key":"113288","_from":"1787","_to":"66734"} +{"$label":"ACTS_IN","name":"Braddock","type":"Role","_key":"120645","_from":"1789","_to":"70855"} +{"$label":"ACTS_IN","name":"Jellon Lamb","type":"Role","_key":"109611","_from":"1789","_to":"64744"} +{"$label":"ACTS_IN","name":"Victor Foss","type":"Role","_key":"104261","_from":"1789","_to":"61344"} +{"$label":"ACTS_IN","name":"Warren Christopher","type":"Role","_key":"98288","_from":"1789","_to":"57900"} +{"$label":"ACTS_IN","name":"Professor Trevor 'Broom' Bruttenholm (voice)","type":"Role","_key":"93461","_from":"1789","_to":"55026"} +{"$label":"ACTS_IN","name":"James morton","type":"Role","_key":"89964","_from":"1789","_to":"53222"} +{"$label":"ACTS_IN","name":"Mr. Ollivander","type":"Role","_key":"89547","_from":"1789","_to":"52997"} +{"$label":"ACTS_IN","name":"Mr. Ollivander","type":"Role","_key":"89515","_from":"1789","_to":"52992"} +{"$label":"ACTS_IN","name":"Arthur Seldom","type":"Role","_key":"89010","_from":"1789","_to":"52726"} +{"$label":"ACTS_IN","name":"Lawrence Fassett","type":"Role","_key":"88920","_from":"1789","_to":"52676"} +{"$label":"ACTS_IN","name":"Hazel (voice)","type":"Role","_key":"72284","_from":"1789","_to":"43666"} +{"$label":"ACTS_IN","name":"John Graham (Marquis of Montrose)","type":"Role","_key":"71932","_from":"1789","_to":"43521"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"69163","_from":"1789","_to":"42298"} +{"$label":"ACTS_IN","name":"Trevor Bruttenholm","type":"Role","_key":"68820","_from":"1789","_to":"42165"} +{"$label":"ACTS_IN","name":"Billy Irvine","type":"Role","_key":"66842","_from":"1789","_to":"41285"} +{"$label":"ACTS_IN","name":"Lord Percival Graves","type":"Role","_key":"65904","_from":"1789","_to":"40771"} +{"$label":"ACTS_IN","name":"Rothgar","type":"Role","_key":"63875","_from":"1789","_to":"39910"} +{"$label":"ACTS_IN","name":"Ben Devereaux","type":"Role","_key":"57950","_from":"1789","_to":"36665"} +{"$label":"ACTS_IN","name":"Winston Smith","type":"Role","_key":"53063","_from":"1789","_to":"34351"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"50229","_from":"1789","_to":"32829"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"48824","_from":"1789","_to":"32020"} +{"$label":"ACTS_IN","name":"Maitland","type":"Role","_key":"36883","_from":"1789","_to":"25001"} +{"$label":"ACTS_IN","name":"Dr. Joe Buchanan","type":"Role","_key":"25450","_from":"1789","_to":"18356"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19911","_from":"1789","_to":"14664"} +{"$label":"ACTS_IN","name":"John Merrick","type":"Role","_key":"16951","_from":"1789","_to":"12729"} +{"$label":"ACTS_IN","name":"Narrator (Voice)","type":"Role","_key":"16937","_from":"1789","_to":"12720"} +{"$label":"ACTS_IN","name":"Dr. Iannis","type":"Role","_key":"15247","_from":"1789","_to":"11670"} +{"$label":"ACTS_IN","name":"Prof. Bruttenholm","type":"Role","_key":"13471","_from":"1789","_to":"10484"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"13210","_from":"1789","_to":"10287"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"11422","_from":"1789","_to":"8985"} +{"$label":"ACTS_IN","name":"John Scholfield","type":"Role","_key":"10968","_from":"1789","_to":"8689"} +{"$label":"ACTS_IN","name":"Richard Rich","type":"Role","_key":"10399","_from":"1789","_to":"8270"} +{"$label":"ACTS_IN","name":"Chancellor Adam Sutler","type":"Role","_key":"8769","_from":"1789","_to":"7114"} +{"$label":"ACTS_IN","name":"S. R. Hadden","type":"Role","_key":"8270","_from":"1789","_to":"6784"} +{"$label":"ACTS_IN","name":"Mr. Ollivander","type":"Role","_key":"8030","_from":"1789","_to":"6646"} +{"$label":"ACTS_IN","name":"Babits","type":"Role","_key":"5841","_from":"1789","_to":"4959"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"4790","_from":"1789","_to":"4094"} +{"$label":"ACTS_IN","name":"Ox","type":"Role","_key":"3126","_from":"1789","_to":"2678"} +{"$label":"ACTS_IN","name":"Patient","type":"Role","_key":"41794","_from":"1790","_to":"28038"} +{"$label":"ACTS_IN","name":"David Nelson","type":"Role","_key":"22630","_from":"1790","_to":"16415"} +{"$label":"ACTS_IN","name":"Volksschullehrer","type":"Role","_key":"21802","_from":"1790","_to":"15899"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister von Grasse","type":"Role","_key":"13213","_from":"1790","_to":"10287"} +{"$label":"ACTS_IN","name":"Albert de Morcerf Mondego","type":"Role","_key":"32527","_from":"1791","_to":"22623"} +{"$label":"ACTS_IN","name":"Bigwig (voice)","type":"Role","_key":"72286","_from":"1793","_to":"43666"} +{"$label":"ACTS_IN","name":"Prof. Zoltan","type":"Role","_key":"26182","_from":"1795","_to":"18808"} +{"$label":"ACTS_IN","name":"Nabal","type":"Role","_key":"23136","_from":"1795","_to":"16763"} +{"$label":"ACTS_IN","name":"Doctor Watson","type":"Role","_key":"72025","_from":"1797","_to":"43551"} +{"$label":"ACTS_IN","name":"Lord Gustavos Adolphus Wendover","type":"Role","_key":"26506","_from":"1797","_to":"19048"} +{"$label":"ACTS_IN","name":"Col. Green","type":"Role","_key":"9770","_from":"1797","_to":"7831"} +{"$label":"ACTS_IN","name":"Sextus","type":"Role","_key":"7961","_from":"1797","_to":"6585"} +{"$label":"DIRECTED","_key":"108152","_from":"1798","_to":"63917"} +{"$label":"DIRECTED","_key":"102848","_from":"1798","_to":"60504"} +{"$label":"DIRECTED","_key":"90512","_from":"1798","_to":"53466"} +{"$label":"ACTS_IN","name":"Sohn Jacek Zyro","type":"Role","_key":"2062","_from":"1804","_to":"1799"} +{"$label":"ACTS_IN","name":"Dariusz Stach","type":"Role","_key":"2061","_from":"1803","_to":"1799"} +{"$label":"ACTS_IN","name":"Antoni Zyro","type":"Role","_key":"2060","_from":"1802","_to":"1799"} +{"$label":"ACTS_IN","name":"Joanna Stach","type":"Role","_key":"2058","_from":"1801","_to":"1799"} +{"$label":"ACTS_IN","name":"Ursula Zyro","type":"Role","_key":"2057","_from":"1800","_to":"1799"} +{"$label":"ACTS_IN","name":"Telimena","type":"Role","_key":"35199","_from":"1800","_to":"23983"} +{"$label":"ACTS_IN","name":"Marie Grafenstein","type":"Role","_key":"24245","_from":"1800","_to":"17560"} +{"$label":"ACTS_IN","name":"Maciek Tomczyk, Sohn des Mateusz Birkut (Der Mann aus Marmor)","type":"Role","_key":"3237","_from":"1802","_to":"2776"} +{"$label":"ACTS_IN","name":"Maciek Tomczyk","type":"Role","_key":"3222","_from":"1802","_to":"2761"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"65486","_from":"1803","_to":"40582"} +{"$label":"ACTS_IN","name":"Chauffeur des Ersten Sekret\u00e4rs","type":"Role","_key":"2068","_from":"1810","_to":"1806"} +{"$label":"ACTS_IN","name":"Streikf\u00fchrer","type":"Role","_key":"2067","_from":"1809","_to":"1806"} +{"$label":"ACTS_IN","name":"Erster Sekret\u00e4r PZPR","type":"Role","_key":"2066","_from":"1808","_to":"1806"} +{"$label":"DIRECTED","_key":"2065","_from":"1807","_to":"1806"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"2075","_from":"1816","_to":"1811"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"2074","_from":"1815","_to":"1811"} +{"$label":"ACTS_IN","name":"Werka","type":"Role","_key":"2072","_from":"1814","_to":"1811"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"2071","_from":"1813","_to":"1811"} +{"$label":"ACTS_IN","name":"Witek D\u0142ugosz","type":"Role","_key":"2070","_from":"1812","_to":"1811"} +{"$label":"ACTS_IN","name":"Franz Maurer","type":"Role","_key":"116706","_from":"1812","_to":"68701"} +{"$label":"ACTS_IN","name":"Jacek Soplica","type":"Role","_key":"35194","_from":"1812","_to":"23983"} +{"$label":"ACTS_IN","name":"Saint-Just","type":"Role","_key":"30080","_from":"1812","_to":"21206"} +{"$label":"ACTS_IN","name":"Dzidek","type":"Role","_key":"3242","_from":"1812","_to":"2776"} +{"$label":"ACTS_IN","name":"senator Wencel","type":"Role","_key":"116710","_from":"1813","_to":"68701"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"40074","_from":"1813","_to":"27049"} +{"$label":"ACTS_IN","name":"Kessler","type":"Role","_key":"6200","_from":"1813","_to":"5243"} +{"$label":"ACTS_IN","name":"Tadeusz Morawski","type":"Role","_key":"116821","_from":"1815","_to":"68774"} +{"$label":"ACTS_IN","name":"Jerzy Burski","type":"Role","_key":"3223","_from":"1816","_to":"2761"} +{"$label":"ACTS_IN","name":"Woman in Iron Town","type":"Role","_key":"2090","_from":"1829","_to":"1817"} +{"$label":"ACTS_IN","name":"Okkoto-nusi","type":"Role","_key":"2089","_from":"1828","_to":"1817"} +{"$label":"ACTS_IN","name":"Hii-sama","type":"Role","_key":"2088","_from":"1827","_to":"1817"} +{"$label":"ACTS_IN","name":"Moro-no-kimi","type":"Role","_key":"2087","_from":"1826","_to":"1817"} +{"$label":"ACTS_IN","name":"Usi-kai","type":"Role","_key":"2086","_from":"1825","_to":"1817"} +{"$label":"ACTS_IN","name":"Tatari-gami","type":"Role","_key":"2085","_from":"1824","_to":"1817"} +{"$label":"ACTS_IN","name":"Yama-inu","type":"Role","_key":"2084","_from":"1823","_to":"1817"} +{"$label":"ACTS_IN","name":"Gonza","type":"Role","_key":"2082","_from":"1822","_to":"1817"} +{"$label":"ACTS_IN","name":"Kouroku","type":"Role","_key":"2081","_from":"1821","_to":"1817"} +{"$label":"ACTS_IN","name":"Jiko-b\u00f4","type":"Role","_key":"2080","_from":"1820","_to":"1817"} +{"$label":"ACTS_IN","name":"Eboshi-gozen","type":"Role","_key":"2079","_from":"1819","_to":"1817"} +{"$label":"ACTS_IN","name":"San","type":"Role","_key":"2078","_from":"1818","_to":"1817"} +{"$label":"ACTS_IN","name":"Okiya","type":"Role","_key":"103858","_from":"1818","_to":"61079"} +{"$label":"ACTS_IN","name":"Manmayuto no shach\u00f4 (voice)","type":"Role","_key":"71104","_from":"1822","_to":"43165"} +{"$label":"ACTS_IN","name":"Uechi","type":"Role","_key":"46885","_from":"1823","_to":"30915"} +{"$label":"ACTS_IN","name":"Tesuka","type":"Role","_key":"40333","_from":"1823","_to":"27206"} +{"$label":"ACTS_IN","name":"Arechi no Majo","type":"Role","_key":"34946","_from":"1826","_to":"23864"} +{"$label":"ACTS_IN","name":"Gensuke Kishida","type":"Role","_key":"28124","_from":"1828","_to":"20161"} +{"$label":"ACTS_IN","name":"Kayako Saeki","type":"Role","_key":"17112","_from":"1829","_to":"12821"} +{"$label":"ACTS_IN","name":"Kayako Saeki","type":"Role","_key":"17101","_from":"1829","_to":"12813"} +{"$label":"ACTS_IN","name":"Lin","type":"Role","_key":"2099","_from":"1838","_to":"1830"} +{"$label":"ACTS_IN","name":"B\u00f4h","type":"Role","_key":"2098","_from":"1837","_to":"1830"} +{"$label":"ACTS_IN","name":"Aogaeru","type":"Role","_key":"2097","_from":"1836","_to":"1830"} +{"$label":"ACTS_IN","name":"Chihiro's Mother","type":"Role","_key":"2096","_from":"1835","_to":"1830"} +{"$label":"ACTS_IN","name":"Chihiro's Father","type":"Role","_key":"2095","_from":"1834","_to":"1830"} +{"$label":"ACTS_IN","name":"Yubaba","type":"Role","_key":"2094","_from":"1833","_to":"1830"} +{"$label":"ACTS_IN","name":"Haku","type":"Role","_key":"2093","_from":"1832","_to":"1830"} +{"$label":"ACTS_IN","name":"Chihiro","type":"Role","_key":"2092","_from":"1831","_to":"1830"} +{"$label":"ACTS_IN","name":"Young Mother","type":"Role","_key":"89430","_from":"1831","_to":"52937"} +{"$label":"ACTS_IN","name":"Takuro Sugie","type":"Role","_key":"114481","_from":"1834","_to":"67434"} +{"$label":"ACTS_IN","name":"Erika Shiragami","type":"Role","_key":"115691","_from":"1835","_to":"68098"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103978","_from":"1836","_to":"61158"} +{"$label":"ACTS_IN","name":"Karushif\u00e2","type":"Role","_key":"34947","_from":"1836","_to":"23864"} +{"$label":"ACTS_IN","name":"Ryusuke","type":"Role","_key":"120689","_from":"1837","_to":"70882"} +{"$label":"ACTS_IN","name":"Seiichi Kobayashi","type":"Role","_key":"107304","_from":"1837","_to":"63279"} +{"$label":"ACTS_IN","name":"Marukuru","type":"Role","_key":"34948","_from":"1837","_to":"23864"} +{"$label":"ACTS_IN","name":"Himself (uncredited)","type":"Role","_key":"2136","_from":"1874","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (uncredited)","type":"Role","_key":"2135","_from":"1842","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (uncredited)","type":"Role","_key":"2134","_from":"1841","_to":"1840"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"2133","_from":"1873","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2132","_from":"1872","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself on KFRC","type":"Role","_key":"2131","_from":"1871","_to":"1840"} +{"$label":"ACTS_IN","name":"Herself (as Jefferson Airplane)","type":"Role","_key":"2130","_from":"1870","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Santana band member)","type":"Role","_key":"2129","_from":"1869","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2128","_from":"1868","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2127","_from":"1867","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (Hell's Angel who stabs Meredith Hunter)","type":"Role","_key":"2126","_from":"1866","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Flying Burrito Brothers)","type":"Role","_key":"2125","_from":"1865","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Grateful Dead)","type":"Role","_key":"2124","_from":"1864","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Flying Burrito Brothers)","type":"Role","_key":"2123","_from":"1863","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (concert organizer)","type":"Role","_key":"2122","_from":"1862","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Flying Burrito Brothers)","type":"Role","_key":"2121","_from":"1861","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Jefferson Airplane)","type":"Role","_key":"2120","_from":"1860","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Jefferson Airplane)","type":"Role","_key":"2119","_from":"1859","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (black youth stabbed by Hell's Angel)","type":"Role","_key":"2118","_from":"1858","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Flying Burrito Brothers)","type":"Role","_key":"2117","_from":"1857","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Grateful Dead)","type":"Role","_key":"2116","_from":"1856","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Jefferson Airplane)","type":"Role","_key":"2115","_from":"1855","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2114","_from":"1854","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Flying Burrito Brotthers)","type":"Role","_key":"2113","_from":"1853","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Jefferson Airplane)","type":"Role","_key":"2112","_from":"1852","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2111","_from":"1851","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2110","_from":"1850","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2109","_from":"1849","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as Jefferson Airplane)","type":"Role","_key":"2108","_from":"1848","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Rolling Stones)","type":"Role","_key":"2107","_from":"1847","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Rolling Stones)","type":"Role","_key":"2106","_from":"1846","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Rolling Stones)","type":"Role","_key":"2105","_from":"1845","_to":"1840"} +{"$label":"ACTS_IN","name":"Himself (as The Rolling Stones)","type":"Role","_key":"2103","_from":"1844","_to":"1840"} +{"$label":"DIRECTED","_key":"2102","_from":"1843","_to":"1840"} +{"$label":"DIRECTED","_key":"2101","_from":"1842","_to":"1840"} +{"$label":"DIRECTED","_key":"2100","_from":"1841","_to":"1840"} +{"$label":"ACTS_IN","name":"Greta \/ George","type":"Role","_key":"120556","_from":"1844","_to":"70805"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93366","_from":"1844","_to":"54996"} +{"$label":"ACTS_IN","name":"Victor Vacendak","type":"Role","_key":"52803","_from":"1844","_to":"34245"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47548","_from":"1844","_to":"31332"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47550","_from":"1845","_to":"31332"} +{"$label":"ACTS_IN","name":"Holographic Band Singer (as The Jefferson Starship)","type":"Role","_key":"107316","_from":"1848","_to":"63286"} +{"$label":"ACTS_IN","name":"Driver's Mate","type":"Role","_key":"101954","_from":"1853","_to":"59995"} +{"$label":"ACTS_IN","name":"Olest Brother","type":"Role","_key":"37718","_from":"1856","_to":"25576"} +{"$label":"ACTS_IN","name":"Holographic Band Member (as The Jefferson Starship)","type":"Role","_key":"107319","_from":"1859","_to":"63286"} +{"$label":"ACTS_IN","name":"Altfeld","type":"Role","_key":"45089","_from":"1862","_to":"29936"} +{"$label":"ACTS_IN","name":"Aunty Entity","type":"Role","_key":"53315","_from":"1873","_to":"34472"} +{"$label":"ACTS_IN","name":"Hubert Humphrey","type":"Role","_key":"2139","_from":"1878","_to":"1875"} +{"$label":"ACTS_IN","name":"John F. Kennedy","type":"Role","_key":"2138","_from":"1877","_to":"1875"} +{"$label":"DIRECTED","_key":"2137","_from":"1876","_to":"1875"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99463","_from":"1877","_to":"58628"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"91074","_from":"1877","_to":"53738"} +{"$label":"ACTS_IN","name":"Blind Seer","type":"Role","_key":"2163","_from":"1899","_to":"1879"} +{"$label":"ACTS_IN","name":"Boy Hogwallop","type":"Role","_key":"2162","_from":"1898","_to":"1879"} +{"$label":"ACTS_IN","name":"Wash Hogwallop","type":"Role","_key":"2161","_from":"1897","_to":"1879"} +{"$label":"ACTS_IN","name":"Pomade Vendor","type":"Role","_key":"2160","_from":"1896","_to":"1879"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"2159","_from":"1895","_to":"1879"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"2158","_from":"1894","_to":"1879"} +{"$label":"ACTS_IN","name":"Siren","type":"Role","_key":"2157","_from":"1893","_to":"1879"} +{"$label":"ACTS_IN","name":"Sheriff Cooley","type":"Role","_key":"2156","_from":"1892","_to":"1879"} +{"$label":"ACTS_IN","name":"Vernon T. Waldrip","type":"Role","_key":"2155","_from":"1891","_to":"1879"} +{"$label":"ACTS_IN","name":"The Little Man","type":"Role","_key":"2154","_from":"1890","_to":"1879"} +{"$label":"ACTS_IN","name":"Homer Stokes","type":"Role","_key":"2153","_from":"1889","_to":"1879"} +{"$label":"ACTS_IN","name":"Pappy's Staff","type":"Role","_key":"2152","_from":"1888","_to":"1879"} +{"$label":"ACTS_IN","name":"Pappy's Staff","type":"Role","_key":"2151","_from":"1887","_to":"1879"} +{"$label":"ACTS_IN","name":"Junior O'Daniel","type":"Role","_key":"2149","_from":"1886","_to":"1879"} +{"$label":"ACTS_IN","name":"Pappy O'Daniel","type":"Role","_key":"2148","_from":"1885","_to":"1879"} +{"$label":"ACTS_IN","name":"Tommy Johnson","type":"Role","_key":"2147","_from":"1884","_to":"1879"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"2146","_from":"1883","_to":"1879"} +{"$label":"ACTS_IN","name":"Delmar","type":"Role","_key":"2144","_from":"1882","_to":"1879"} +{"$label":"ACTS_IN","name":"Everett Ulysses McGill","type":"Role","_key":"2142","_from":"1881","_to":"1879"} +{"$label":"DIRECTED","_key":"2141","_from":"1880","_to":"1879"} +{"$label":"DIRECTED","_key":"90373","_from":"1880","_to":"53400"} +{"$label":"DIRECTED","_key":"72829","_from":"1880","_to":"43873"} +{"$label":"DIRECTED","_key":"71870","_from":"1880","_to":"43490"} +{"$label":"DIRECTED","_key":"69446","_from":"1880","_to":"42438"} +{"$label":"DIRECTED","_key":"65708","_from":"1880","_to":"40695"} +{"$label":"DIRECTED","_key":"53364","_from":"1880","_to":"34489"} +{"$label":"DIRECTED","_key":"45554","_from":"1880","_to":"30156"} +{"$label":"DIRECTED","_key":"37621","_from":"1880","_to":"25505"} +{"$label":"DIRECTED","_key":"35024","_from":"1880","_to":"23900"} +{"$label":"DIRECTED","_key":"19843","_from":"1880","_to":"14635"} +{"$label":"DIRECTED","_key":"4889","_from":"1880","_to":"4175"} +{"$label":"DIRECTED","_key":"4877","_from":"1880","_to":"4171"} +{"$label":"DIRECTED","_key":"4061","_from":"1880","_to":"3465"} +{"$label":"DIRECTED","_key":"3910","_from":"1880","_to":"3344"} +{"$label":"ACTS_IN","name":"Matt Stevens","type":"Role","_key":"104606","_from":"1881","_to":"61532"} +{"$label":"ACTS_IN","name":"Miles Massey","type":"Role","_key":"71871","_from":"1881","_to":"43490"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"62567","_from":"1881","_to":"39372"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62562","_from":"1881","_to":"39371"} +{"$label":"ACTS_IN","name":"Mr. Fox (voice)","type":"Role","_key":"62553","_from":"1881","_to":"39370"} +{"$label":"ACTS_IN","name":"Lyn Cassady","type":"Role","_key":"62537","_from":"1881","_to":"39366"} +{"$label":"ACTS_IN","name":"Dr. Gouache","type":"Role","_key":"54083","_from":"1881","_to":"34778"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"53365","_from":"1881","_to":"34489"} +{"$label":"ACTS_IN","name":"Jerzy","type":"Role","_key":"52663","_from":"1881","_to":"34200"} +{"$label":"ACTS_IN","name":"Capt. Bosche","type":"Role","_key":"50633","_from":"1881","_to":"33066"} +{"$label":"ACTS_IN","name":"Jack Taylor","type":"Role","_key":"46349","_from":"1881","_to":"30625"} +{"$label":"ACTS_IN","name":"Thomas Devoe","type":"Role","_key":"44366","_from":"1881","_to":"29564"} +{"$label":"ACTS_IN","name":"Archie Gates","type":"Role","_key":"43345","_from":"1881","_to":"28963"} +{"$label":"ACTS_IN","name":"Harry Pfarrer","type":"Role","_key":"35017","_from":"1881","_to":"23900"} +{"$label":"ACTS_IN","name":"Jimmy 'Dodge' Connelly","type":"Role","_key":"35003","_from":"1881","_to":"23895"} +{"$label":"ACTS_IN","name":"Dave Klein","type":"Role","_key":"35000","_from":"1881","_to":"23893"} +{"$label":"ACTS_IN","name":"CIA Agent Jim Byrd","type":"Role","_key":"34730","_from":"1881","_to":"23746"} +{"$label":"ACTS_IN","name":"Michael Clayton","type":"Role","_key":"32754","_from":"1881","_to":"22745"} +{"$label":"ACTS_IN","name":"Fred Friendly","type":"Role","_key":"26764","_from":"1881","_to":"19236"} +{"$label":"ACTS_IN","name":"Capt. Billy Tyne","type":"Role","_key":"18550","_from":"1881","_to":"13731"} +{"$label":"ACTS_IN","name":"Chris Kelvin","type":"Role","_key":"18333","_from":"1881","_to":"13602"} +{"$label":"ACTS_IN","name":"Jack Foley","type":"Role","_key":"12890","_from":"1881","_to":"10063"} +{"$label":"ACTS_IN","name":"Seth Gecko","type":"Role","_key":"8870","_from":"1881","_to":"7204"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"5259","_from":"1881","_to":"4469"} +{"$label":"ACTS_IN","name":"Daniel Ocean","type":"Role","_key":"4143","_from":"1881","_to":"3539"} +{"$label":"ACTS_IN","name":"Bob Barnes","type":"Role","_key":"3314","_from":"1881","_to":"2844"} +{"$label":"ACTS_IN","name":"Jake Geismar","type":"Role","_key":"2774","_from":"1881","_to":"2405"} +{"$label":"ACTS_IN","name":"Danny Ocean","type":"Role","_key":"2516","_from":"1881","_to":"2210"} +{"$label":"ACTS_IN","name":"Danny Ocean","type":"Role","_key":"2484","_from":"1881","_to":"2184"} +{"$label":"DIRECTED","_key":"62560","_from":"1881","_to":"39371"} +{"$label":"DIRECTED","_key":"54880","_from":"1881","_to":"35098"} +{"$label":"DIRECTED","_key":"54449","_from":"1881","_to":"34915"} +{"$label":"DIRECTED","_key":"35002","_from":"1881","_to":"23895"} +{"$label":"DIRECTED","_key":"34722","_from":"1881","_to":"23746"} +{"$label":"DIRECTED","_key":"26784","_from":"1881","_to":"19236"} +{"$label":"ACTS_IN","name":"Perp","type":"Role","_key":"116182","_from":"1882","_to":"68405"} +{"$label":"ACTS_IN","name":"Jacobo","type":"Role","_key":"67367","_from":"1882","_to":"41514"} +{"$label":"ACTS_IN","name":"Mr. Theopolis","type":"Role","_key":"62400","_from":"1882","_to":"39310"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"58694","_from":"1882","_to":"37074"} +{"$label":"ACTS_IN","name":"Bubba","type":"Role","_key":"58602","_from":"1882","_to":"37025"} +{"$label":"ACTS_IN","name":"Dr. Pendanski","type":"Role","_key":"49042","_from":"1882","_to":"32134"} +{"$label":"ACTS_IN","name":"Uncle Tim","type":"Role","_key":"47129","_from":"1882","_to":"31069"} +{"$label":"ACTS_IN","name":"Kevin Munchak","type":"Role","_key":"36244","_from":"1882","_to":"24593"} +{"$label":"ACTS_IN","name":"Billy Deverell","type":"Role","_key":"35467","_from":"1882","_to":"24121"} +{"$label":"ACTS_IN","name":"Samuel Sterns","type":"Role","_key":"15259","_from":"1882","_to":"11684"} +{"$label":"ACTS_IN","name":"Officer LeFlore","type":"Role","_key":"8347","_from":"1882","_to":"6834"} +{"$label":"ACTS_IN","name":"Danny Dalton","type":"Role","_key":"3341","_from":"1882","_to":"2844"} +{"$label":"DIRECTED","_key":"103538","_from":"1882","_to":"60906"} +{"$label":"DIRECTED","_key":"91790","_from":"1882","_to":"54152"} +{"$label":"DIRECTED","_key":"67656","_from":"1882","_to":"41627"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"116240","_from":"1883","_to":"68437"} +{"$label":"ACTS_IN","name":"Barb","type":"Role","_key":"102039","_from":"1883","_to":"60035"} +{"$label":"ACTS_IN","name":"Jane Craig","type":"Role","_key":"90695","_from":"1883","_to":"53542"} +{"$label":"ACTS_IN","name":"Dorinda Durston","type":"Role","_key":"69301","_from":"1883","_to":"42371"} +{"$label":"ACTS_IN","name":"Melanie 'Mel' Freeland","type":"Role","_key":"67358","_from":"1883","_to":"41513"} +{"$label":"ACTS_IN","name":"Margaret Barnell","type":"Role","_key":"58693","_from":"1883","_to":"37074"} +{"$label":"ACTS_IN","name":"Helen Parr \/ Elastigirl (voice)","type":"Role","_key":"56987","_from":"1883","_to":"36156"} +{"$label":"ACTS_IN","name":"Claudia Larson","type":"Role","_key":"52492","_from":"1883","_to":"34146"} +{"$label":"ACTS_IN","name":"O'Reilly","type":"Role","_key":"48014","_from":"1883","_to":"31583"} +{"$label":"ACTS_IN","name":"M.J. Monahan","type":"Role","_key":"15111","_from":"1883","_to":"11600"} +{"$label":"ACTS_IN","name":"Helen Remington","type":"Role","_key":"10532","_from":"1883","_to":"8373"} +{"$label":"ACTS_IN","name":"Ada McGrath","type":"Role","_key":"8617","_from":"1883","_to":"7002"} +{"$label":"ACTS_IN","name":"Edwina 'Ed' McDunnough","type":"Role","_key":"4879","_from":"1883","_to":"4171"} +{"$label":"ACTS_IN","name":"Det. Storm Anderson","type":"Role","_key":"100386","_from":"1884","_to":"59199"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108887","_from":"1885","_to":"64354"} +{"$label":"ACTS_IN","name":"John Bartlett","type":"Role","_key":"104031","_from":"1885","_to":"61202"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"101689","_from":"1885","_to":"59845"} +{"$label":"ACTS_IN","name":"Charley","type":"Role","_key":"90619","_from":"1885","_to":"53515"} +{"$label":"ACTS_IN","name":"Dr. Jim McKeever","type":"Role","_key":"90597","_from":"1885","_to":"53505"} +{"$label":"ACTS_IN","name":"Waring Hudsucker","type":"Role","_key":"72833","_from":"1885","_to":"43873"} +{"$label":"ACTS_IN","name":"Doc Hopper","type":"Role","_key":"68341","_from":"1885","_to":"41944"} +{"$label":"ACTS_IN","name":"Charlie Adler","type":"Role","_key":"67980","_from":"1885","_to":"41766"} +{"$label":"ACTS_IN","name":"Deke Yablonski","type":"Role","_key":"67490","_from":"1885","_to":"41566"} +{"$label":"ACTS_IN","name":"Ross","type":"Role","_key":"66616","_from":"1885","_to":"41179"} +{"$label":"ACTS_IN","name":"The Director","type":"Role","_key":"63912","_from":"1885","_to":"39925"} +{"$label":"ACTS_IN","name":"Tom Billingsley","type":"Role","_key":"59274","_from":"1885","_to":"37437"} +{"$label":"ACTS_IN","name":"Les Nichols","type":"Role","_key":"54799","_from":"1885","_to":"35059"} +{"$label":"ACTS_IN","name":"Lt. Wm. Snyder","type":"Role","_key":"52799","_from":"1885","_to":"34244"} +{"$label":"ACTS_IN","name":"Henry Larson","type":"Role","_key":"52495","_from":"1885","_to":"34146"} +{"$label":"ACTS_IN","name":"Senator Samuel Chapman","type":"Role","_key":"50609","_from":"1885","_to":"33049"} +{"$label":"ACTS_IN","name":"O'Brien","type":"Role","_key":"47835","_from":"1885","_to":"31490"} +{"$label":"ACTS_IN","name":"Lew","type":"Role","_key":"46352","_from":"1885","_to":"30625"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"45472","_from":"1885","_to":"30120"} +{"$label":"ACTS_IN","name":"Yammi","type":"Role","_key":"20425","_from":"1885","_to":"14941"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"11677","_from":"1885","_to":"9168"} +{"$label":"ACTS_IN","name":"Det. Sgt. Eugene Moretti","type":"Role","_key":"11517","_from":"1885","_to":"9052"} +{"$label":"ACTS_IN","name":"Chief of Police","type":"Role","_key":"88658","_from":"1889","_to":"52530"} +{"$label":"ACTS_IN","name":"Coach Frank Ferguson","type":"Role","_key":"35006","_from":"1889","_to":"23895"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"72812","_from":"1890","_to":"43868"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"68402","_from":"1890","_to":"41966"} +{"$label":"ACTS_IN","name":"Howard T. Duck","type":"Role","_key":"64879","_from":"1890","_to":"40348"} +{"$label":"ACTS_IN","name":"Chucky","type":"Role","_key":"64254","_from":"1890","_to":"40075"} +{"$label":"ACTS_IN","name":"Station","type":"Role","_key":"14655","_from":"1890","_to":"11286"} +{"$label":"ACTS_IN","name":"Dink #1","type":"Role","_key":"11423","_from":"1890","_to":"8985"} +{"$label":"ACTS_IN","name":"Charlie Campion","type":"Role","_key":"94987","_from":"1891","_to":"55928"} +{"$label":"ACTS_IN","name":"Deputy Norris Ridgewick","type":"Role","_key":"64873","_from":"1891","_to":"40346"} +{"$label":"ACTS_IN","name":"Deputy C.B.","type":"Role","_key":"18225","_from":"1891","_to":"13515"} +{"$label":"ACTS_IN","name":"Webb","type":"Role","_key":"11843","_from":"1891","_to":"9282"} +{"$label":"ACTS_IN","name":"Nix","type":"Role","_key":"51772","_from":"1892","_to":"33781"} +{"$label":"ACTS_IN","name":"Theodore Hayes","type":"Role","_key":"31665","_from":"1892","_to":"22099"} +{"$label":"ACTS_IN","name":"Sam Duritz","type":"Role","_key":"30408","_from":"1892","_to":"21378"} +{"$label":"ACTS_IN","name":"Lt. Marty Nilsen","type":"Role","_key":"5102","_from":"1892","_to":"4328"} +{"$label":"ACTS_IN","name":"SWAT Communicator","type":"Role","_key":"3904","_from":"1892","_to":"3326"} +{"$label":"ACTS_IN","name":"Reza","type":"Role","_key":"59203","_from":"1894","_to":"37387"} +{"$label":"ACTS_IN","name":"Janice Weston","type":"Role","_key":"58913","_from":"1894","_to":"37201"} +{"$label":"ACTS_IN","name":"Munitia","type":"Role","_key":"50039","_from":"1894","_to":"32751"} +{"$label":"ACTS_IN","name":"Pregnant Woman #1","type":"Role","_key":"65527","_from":"1895","_to":"40608"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"45245","_from":"1897","_to":"30028"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"38587","_from":"1897","_to":"26068"} +{"$label":"ACTS_IN","name":"Strabo","type":"Role","_key":"18497","_from":"1897","_to":"13698"} +{"$label":"DIRECTED","_key":"2172","_from":"1909","_to":"1900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2171","_from":"1908","_to":"1900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2170","_from":"1907","_to":"1900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2169","_from":"1906","_to":"1900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2168","_from":"1905","_to":"1900"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"2167","_from":"1904","_to":"1900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"2166","_from":"1903","_to":"1900"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"2165","_from":"1902","_to":"1900"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"2164","_from":"1901","_to":"1900"} +{"$label":"ACTS_IN","name":"Bob Dylan","type":"Role","_key":"118637","_from":"1901","_to":"69756"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97798","_from":"1901","_to":"57588"} +{"$label":"ACTS_IN","name":"Alias","type":"Role","_key":"70838","_from":"1901","_to":"43058"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19515","_from":"1901","_to":"14434"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53993","_from":"1904","_to":"34725"} +{"$label":"DIRECTED","_key":"13843","_from":"1909","_to":"10744"} +{"$label":"ACTS_IN","name":"Armlose","type":"Role","_key":"2190","_from":"1928","_to":"1910"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"2189","_from":"1927","_to":"1910"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"2188","_from":"1926","_to":"1910"} +{"$label":"ACTS_IN","name":"der lebende Torso","type":"Role","_key":"2187","_from":"1925","_to":"1910"} +{"$label":"ACTS_IN","name":"das menschliche Skeltett","type":"Role","_key":"2186","_from":"1924","_to":"1910"} +{"$label":"ACTS_IN","name":"der Junge ohne Unterleib","type":"Role","_key":"2185","_from":"1923","_to":"1910"} +{"$label":"ACTS_IN","name":"Koo Koo","type":"Role","_key":"2184","_from":"1922","_to":"1910"} +{"$label":"ACTS_IN","name":"Zwitter","type":"Role","_key":"2183","_from":"1921","_to":"1910"} +{"$label":"ACTS_IN","name":"Schlitze","type":"Role","_key":"2182","_from":"1920","_to":"1910"} +{"$label":"ACTS_IN","name":"Siamesische Zwillinge","type":"Role","_key":"2181","_from":"1919","_to":"1910"} +{"$label":"ACTS_IN","name":"Siamesische Zwillinge","type":"Role","_key":"2180","_from":"1918","_to":"1910"} +{"$label":"ACTS_IN","name":"Madame Tetrallini","type":"Role","_key":"2179","_from":"1917","_to":"1910"} +{"$label":"ACTS_IN","name":"Hercules","type":"Role","_key":"2178","_from":"1916","_to":"1910"} +{"$label":"ACTS_IN","name":"Roscoe","type":"Role","_key":"2177","_from":"1915","_to":"1910"} +{"$label":"ACTS_IN","name":"Cleopatra","type":"Role","_key":"2176","_from":"1914","_to":"1910"} +{"$label":"ACTS_IN","name":"Venus","type":"Role","_key":"2175","_from":"1913","_to":"1910"} +{"$label":"ACTS_IN","name":"Phroso","type":"Role","_key":"2174","_from":"1912","_to":"1910"} +{"$label":"DIRECTED","_key":"2173","_from":"1911","_to":"1910"} +{"$label":"DIRECTED","_key":"2205","_from":"1911","_to":"1943"} +{"$label":"ACTS_IN","name":"Ruth Thomas","type":"Role","_key":"25119","_from":"1913","_to":"18145"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"10540","_from":"1914","_to":"8377"} +{"$label":"ACTS_IN","name":"Sturmf\u00fchrer Schultz","type":"Role","_key":"2958","_from":"1916","_to":"2535"} +{"$label":"ACTS_IN","name":"The Groundhog","type":"Role","_key":"2204","_from":"1942","_to":"1929"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"2203","_from":"1941","_to":"1929"} +{"$label":"ACTS_IN","name":"Anchorwoman","type":"Role","_key":"2202","_from":"1940","_to":"1929"} +{"$label":"ACTS_IN","name":"Doris, the Waitress","type":"Role","_key":"2201","_from":"1939","_to":"1929"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"2200","_from":"1938","_to":"1929"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"2199","_from":"1937","_to":"1929"} +{"$label":"ACTS_IN","name":"Mrs. Lancaster","type":"Role","_key":"2198","_from":"1936","_to":"1929"} +{"$label":"ACTS_IN","name":"Nancy Taylor","type":"Role","_key":"2197","_from":"1935","_to":"1929"} +{"$label":"ACTS_IN","name":"Buster Green","type":"Role","_key":"2196","_from":"1934","_to":"1929"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"2194","_from":"1933","_to":"1929"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"2193","_from":"1932","_to":"1929"} +{"$label":"ACTS_IN","name":"Phil Connors","type":"Role","_key":"2192","_from":"1931","_to":"1929"} +{"$label":"DIRECTED","_key":"2191","_from":"1930","_to":"1929"} +{"$label":"DIRECTED","_key":"73107","_from":"1930","_to":"43976"} +{"$label":"DIRECTED","_key":"68190","_from":"1930","_to":"41880"} +{"$label":"DIRECTED","_key":"58240","_from":"1930","_to":"36834"} +{"$label":"DIRECTED","_key":"54517","_from":"1930","_to":"34937"} +{"$label":"DIRECTED","_key":"53011","_from":"1930","_to":"34331"} +{"$label":"DIRECTED","_key":"51963","_from":"1930","_to":"33889"} +{"$label":"DIRECTED","_key":"14489","_from":"1930","_to":"11191"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"72235","_from":"1930","_to":"43646"} +{"$label":"ACTS_IN","name":"Steven Buchner","type":"Role","_key":"68588","_from":"1930","_to":"42053"} +{"$label":"ACTS_IN","name":"Russell Ziskey","type":"Role","_key":"66482","_from":"1930","_to":"41111"} +{"$label":"ACTS_IN","name":"Professor Bowler","type":"Role","_key":"46994","_from":"1930","_to":"30983"} +{"$label":"ACTS_IN","name":"L'Chai'm","type":"Role","_key":"44098","_from":"1930","_to":"29399"} +{"$label":"ACTS_IN","name":"Ben's Dad","type":"Role","_key":"35183","_from":"1930","_to":"23973"} +{"$label":"ACTS_IN","name":"Dr. Egon Spengler","type":"Role","_key":"24635","_from":"1930","_to":"17819"} +{"$label":"ACTS_IN","name":"Dr. Egon Spengler","type":"Role","_key":"7365","_from":"1930","_to":"6141"} +{"$label":"ACTS_IN","name":"Bill Murray","type":"Role","_key":"121461","_from":"1931","_to":"71351"} +{"$label":"ACTS_IN","name":"Ezri Stovall","type":"Role","_key":"109216","_from":"1931","_to":"64530"} +{"$label":"ACTS_IN","name":"Triipper Harrison","type":"Role","_key":"98233","_from":"1931","_to":"57868"} +{"$label":"ACTS_IN","name":"Mayor Cole","type":"Role","_key":"95378","_from":"1931","_to":"56102"} +{"$label":"ACTS_IN","name":"Dr. Hunter S. Thompson","type":"Role","_key":"91968","_from":"1931","_to":"54261"} +{"$label":"ACTS_IN","name":"Frank Detomello","type":"Role","_key":"90591","_from":"1931","_to":"53504"} +{"$label":"ACTS_IN","name":"Carl Spackler","type":"Role","_key":"73110","_from":"1931","_to":"43976"} +{"$label":"ACTS_IN","name":"Agent 13","type":"Role","_key":"71402","_from":"1931","_to":"43300"} +{"$label":"ACTS_IN","name":"Herman Blume","type":"Role","_key":"70547","_from":"1931","_to":"42932"} +{"$label":"ACTS_IN","name":"Ernie McCracken","type":"Role","_key":"70538","_from":"1931","_to":"42930"} +{"$label":"ACTS_IN","name":"John Winger","type":"Role","_key":"66481","_from":"1931","_to":"41111"} +{"$label":"ACTS_IN","name":"Grimm","type":"Role","_key":"65293","_from":"1931","_to":"40526"} +{"$label":"ACTS_IN","name":"Frank Milo","type":"Role","_key":"63321","_from":"1931","_to":"39696"} +{"$label":"ACTS_IN","name":"Badger (voice)","type":"Role","_key":"62556","_from":"1931","_to":"39370"} +{"$label":"ACTS_IN","name":"Bob 'Bobby' Wiley","type":"Role","_key":"62334","_from":"1931","_to":"39279"} +{"$label":"ACTS_IN","name":"The Writer","type":"Role","_key":"55829","_from":"1931","_to":"35529"} +{"$label":"ACTS_IN","name":"Francis Xavier Cross","type":"Role","_key":"55260","_from":"1931","_to":"35245"} +{"$label":"ACTS_IN","name":"Jeff Slater","type":"Role","_key":"54800","_from":"1931","_to":"35059"} +{"$label":"ACTS_IN","name":"Garfield (Stimme)","type":"Role","_key":"54362","_from":"1931","_to":"34872"} +{"$label":"ACTS_IN","name":"Raleigh St. Clair","type":"Role","_key":"53797","_from":"1931","_to":"34665"} +{"$label":"ACTS_IN","name":"Wallace 'Wally' Ritchie","type":"Role","_key":"53717","_from":"1931","_to":"34637"} +{"$label":"ACTS_IN","name":"Garfield (voice)","type":"Role","_key":"51501","_from":"1931","_to":"33579"} +{"$label":"ACTS_IN","name":"American","type":"Role","_key":"48822","_from":"1931","_to":"32020"} +{"$label":"ACTS_IN","name":"The Businessman","type":"Role","_key":"32437","_from":"1931","_to":"22567"} +{"$label":"ACTS_IN","name":"John Bosley","type":"Role","_key":"30999","_from":"1931","_to":"21713"} +{"$label":"ACTS_IN","name":"Dr. Peter Venkman","type":"Role","_key":"24632","_from":"1931","_to":"17819"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20207","_from":"1931","_to":"14813"} +{"$label":"ACTS_IN","name":"Bill Murray","type":"Role","_key":"10524","_from":"1931","_to":"8357"} +{"$label":"ACTS_IN","name":"Dr. Peter Venkman","type":"Role","_key":"7363","_from":"1931","_to":"6141"} +{"$label":"ACTS_IN","name":"Kenneth Bowden","type":"Role","_key":"7327","_from":"1931","_to":"6106"} +{"$label":"ACTS_IN","name":"Bunny Breckinridge","type":"Role","_key":"6241","_from":"1931","_to":"5281"} +{"$label":"ACTS_IN","name":"Steve Zissou","type":"Role","_key":"5280","_from":"1931","_to":"4483"} +{"$label":"ACTS_IN","name":"Don Johnston","type":"Role","_key":"4256","_from":"1931","_to":"3629"} +{"$label":"ACTS_IN","name":"Bob Harris","type":"Role","_key":"2387","_from":"1931","_to":"2102"} +{"$label":"DIRECTED","_key":"65300","_from":"1931","_to":"40526"} +{"$label":"ACTS_IN","name":"Kate Scales","type":"Role","_key":"116165","_from":"1932","_to":"68402"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"98927","_from":"1932","_to":"58287"} +{"$label":"ACTS_IN","name":"Bront\u00eb Mitchell Faure","type":"Role","_key":"88350","_from":"1932","_to":"52386"} +{"$label":"ACTS_IN","name":"Eileen Spenser","type":"Role","_key":"72395","_from":"1932","_to":"43711"} +{"$label":"ACTS_IN","name":"Dale Biberman","type":"Role","_key":"70652","_from":"1932","_to":"42993"} +{"$label":"ACTS_IN","name":"Miss Jane Porter","type":"Role","_key":"67216","_from":"1932","_to":"41453"} +{"$label":"ACTS_IN","name":"Etta the Hen","type":"Role","_key":"57859","_from":"1932","_to":"36614"} +{"$label":"ACTS_IN","name":"Laura Kinney","type":"Role","_key":"53013","_from":"1932","_to":"34331"} +{"$label":"ACTS_IN","name":"Anna Baragli","type":"Role","_key":"52936","_from":"1932","_to":"34303"} +{"$label":"ACTS_IN","name":"Marilyn","type":"Role","_key":"28348","_from":"1932","_to":"20286"} +{"$label":"ACTS_IN","name":"Dorothy Winters","type":"Role","_key":"24378","_from":"1932","_to":"17645"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"13051","_from":"1932","_to":"10178"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"8607","_from":"1932","_to":"6995"} +{"$label":"ACTS_IN","name":"Ann Finnigan","type":"Role","_key":"8363","_from":"1932","_to":"6847"} +{"$label":"ACTS_IN","name":"Roger the Snowplowman","type":"Role","_key":"104639","_from":"1933","_to":"61555"} +{"$label":"ACTS_IN","name":"Henson","type":"Role","_key":"30452","_from":"1933","_to":"21400"} +{"$label":"ACTS_IN","name":"Bendix","type":"Role","_key":"23306","_from":"1933","_to":"16896"} +{"$label":"ACTS_IN","name":"Dom Woganowski","type":"Role","_key":"6492","_from":"1933","_to":"5497"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"119738","_from":"1934","_to":"70316"} +{"$label":"ACTS_IN","name":"Brian Stills","type":"Role","_key":"109326","_from":"1934","_to":"64585"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"72825","_from":"1934","_to":"43870"} +{"$label":"ACTS_IN","name":"Jack Ruby","type":"Role","_key":"9679","_from":"1934","_to":"7763"} +{"$label":"ACTS_IN","name":"Shirley Pogue","type":"Role","_key":"116986","_from":"1936","_to":"68856"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"48715","_from":"1936","_to":"31948"} +{"$label":"ACTS_IN","name":"Snik","type":"Role","_key":"103319","_from":"1937","_to":"60782"} +{"$label":"ACTS_IN","name":"Art Weingartner","type":"Role","_key":"73089","_from":"1937","_to":"43971"} +{"$label":"ACTS_IN","name":"Cindy`s Dad","type":"Role","_key":"30438","_from":"1937","_to":"21394"} +{"$label":"ACTS_IN","name":"Tector Pike","type":"Role","_key":"118808","_from":"1938","_to":"69847"} +{"$label":"ACTS_IN","name":"Googie","type":"Role","_key":"95943","_from":"1938","_to":"56416"} +{"$label":"ACTS_IN","name":"Sir Roger","type":"Role","_key":"63401","_from":"1938","_to":"39720"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"121168","_from":"1941","_to":"71176"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"111883","_from":"1941","_to":"66047"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"109497","_from":"1941","_to":"64679"} +{"$label":"ACTS_IN","name":"Ted Muntz","type":"Role","_key":"99837","_from":"1941","_to":"58886"} +{"$label":"ACTS_IN","name":"Stanford","type":"Role","_key":"32729","_from":"1941","_to":"22725"} +{"$label":"ACTS_IN","name":"Guy in Restaurant","type":"Role","_key":"5998","_from":"1941","_to":"5081"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"2214","_from":"1952","_to":"1943"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"2213","_from":"1951","_to":"1943"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"2212","_from":"1950","_to":"1943"} +{"$label":"ACTS_IN","name":"Dr. Jack Seward","type":"Role","_key":"2211","_from":"1949","_to":"1943"} +{"$label":"ACTS_IN","name":"Professor Abraham Van Helsing","type":"Role","_key":"2210","_from":"1948","_to":"1943"} +{"$label":"ACTS_IN","name":"Renfield","type":"Role","_key":"2209","_from":"1947","_to":"1943"} +{"$label":"ACTS_IN","name":"John Harker","type":"Role","_key":"2208","_from":"1946","_to":"1943"} +{"$label":"ACTS_IN","name":"Mina Seward","type":"Role","_key":"2207","_from":"1945","_to":"1943"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"2206","_from":"1944","_to":"1943"} +{"$label":"ACTS_IN","name":"Dr. Richard Vollin","type":"Role","_key":"114319","_from":"1944","_to":"67337"} +{"$label":"ACTS_IN","name":"Eric Marnay","type":"Role","_key":"96602","_from":"1944","_to":"56822"} +{"$label":"ACTS_IN","name":"Bela","type":"Role","_key":"95760","_from":"1944","_to":"56328"} +{"$label":"ACTS_IN","name":"Ghoul Man","type":"Role","_key":"63778","_from":"1944","_to":"39871"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26668","_from":"1944","_to":"19158"} +{"$label":"ACTS_IN","name":"Ygor","type":"Role","_key":"25512","_from":"1944","_to":"18386"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"25501","_from":"1944","_to":"18381"} +{"$label":"ACTS_IN","name":"Ygor","type":"Role","_key":"25472","_from":"1944","_to":"18370"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"25461","_from":"1944","_to":"18361"} +{"$label":"ACTS_IN","name":"Sayer","type":"Role","_key":"25120","_from":"1944","_to":"18145"} +{"$label":"ACTS_IN","name":"Warrens Butler","type":"Role","_key":"24984","_from":"1944","_to":"18044"} +{"$label":"ACTS_IN","name":"Kommissar Razinin","type":"Role","_key":"16071","_from":"1944","_to":"12210"} +{"$label":"ACTS_IN","name":"Frank Whemple","type":"Role","_key":"106111","_from":"1946","_to":"62489"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"25506","_from":"1947","_to":"18381"} +{"$label":"ACTS_IN","name":"Villager","type":"Role","_key":"25484","_from":"1947","_to":"18370"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"25164","_from":"1947","_to":"18170"} +{"$label":"ACTS_IN","name":"Dr. Muller","type":"Role","_key":"106112","_from":"1948","_to":"62489"} +{"$label":"ACTS_IN","name":"Dr. Waldman","type":"Role","_key":"25162","_from":"1948","_to":"18170"} +{"$label":"ACTS_IN","name":"Selina","type":"Role","_key":"12994","_from":"1951","_to":"10131"} +{"$label":"ACTS_IN","name":"Lykke","type":"Role","_key":"2225","_from":"1962","_to":"1953"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"2224","_from":"1961","_to":"1953"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"2223","_from":"1960","_to":"1953"} +{"$label":"ACTS_IN","name":"Gerner","type":"Role","_key":"2221","_from":"1959","_to":"1953"} +{"$label":"ACTS_IN","name":"Bjarke","type":"Role","_key":"2220","_from":"1958","_to":"1953"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"2219","_from":"1957","_to":"1953"} +{"$label":"ACTS_IN","name":"Rud","type":"Role","_key":"2218","_from":"1956","_to":"1953"} +{"$label":"ACTS_IN","name":"Liva","type":"Role","_key":"2217","_from":"1955","_to":"1953"} +{"$label":"DIRECTED","_key":"2215","_from":"1954","_to":"1953"} +{"$label":"DIRECTED","_key":"106073","_from":"1954","_to":"62462"} +{"$label":"ACTS_IN","name":"Susanne Mortensen","type":"Role","_key":"106676","_from":"1955","_to":"62863"} +{"$label":"ACTS_IN","name":"Mille","type":"Role","_key":"65453","_from":"1955","_to":"40575"} +{"$label":"ACTS_IN","name":"Therese","type":"Role","_key":"61487","_from":"1955","_to":"38782"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"36445","_from":"1955","_to":"24720"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"35406","_from":"1955","_to":"24090"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"3528","_from":"1955","_to":"3015"} +{"$label":"ACTS_IN","name":"Torkilds Far","type":"Role","_key":"61494","_from":"1956","_to":"38782"} +{"$label":"ACTS_IN","name":"Mulle","type":"Role","_key":"118064","_from":"1957","_to":"69393"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"61486","_from":"1957","_to":"38782"} +{"$label":"ACTS_IN","name":"Kalinka","type":"Role","_key":"43734","_from":"1957","_to":"29206"} +{"$label":"ACTS_IN","name":"Kisser","type":"Role","_key":"36441","_from":"1957","_to":"24720"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"90049","_from":"1959","_to":"53260"} +{"$label":"ACTS_IN","name":"Naked Man, from \"Notater om k\u00e6rligheden\" 1989 featured in segment \"Obstruction #4 - The Perfect Human: Cartoon\"","type":"Role","_key":"89665","_from":"1959","_to":"53067"} +{"$label":"ACTS_IN","name":"Jokumsen","type":"Role","_key":"36442","_from":"1959","_to":"24720"} +{"$label":"ACTS_IN","name":"Herluf C","type":"Role","_key":"36284","_from":"1959","_to":"24611"} +{"$label":"ACTS_IN","name":"Josephine's Father","type":"Role","_key":"5619","_from":"1959","_to":"4779"} +{"$label":"ACTS_IN","name":"Enrique Serrano","type":"Role","_key":"2237","_from":"1971","_to":"1963"} +{"$label":"ACTS_IN","name":"Young Enrique","type":"Role","_key":"2235","_from":"1970","_to":"1963"} +{"$label":"ACTS_IN","name":"Young Ignacio","type":"Role","_key":"2234","_from":"1969","_to":"1963"} +{"$label":"ACTS_IN","name":"Mart\u00edn","type":"Role","_key":"2233","_from":"1968","_to":"1963"} +{"$label":"ACTS_IN","name":"Ignacio","type":"Role","_key":"2232","_from":"1967","_to":"1963"} +{"$label":"ACTS_IN","name":"Padre Jos\u00e9","type":"Role","_key":"2231","_from":"1966","_to":"1963"} +{"$label":"ACTS_IN","name":"Sr. Manuel Berenguer","type":"Role","_key":"2230","_from":"1965","_to":"1963"} +{"$label":"ACTS_IN","name":"Padre Manolo","type":"Role","_key":"2229","_from":"1964","_to":"1963"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis","type":"Role","_key":"115315","_from":"1964","_to":"67891"} +{"$label":"ACTS_IN","name":"Andres Ascencio","type":"Role","_key":"109006","_from":"1964","_to":"64418"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"106172","_from":"1964","_to":"62534"} +{"$label":"ACTS_IN","name":"Rodrigo Borgia","type":"Role","_key":"106436","_from":"1965","_to":"62703"} +{"$label":"ACTS_IN","name":"Guard Borg","type":"Role","_key":"90095","_from":"1965","_to":"53283"} +{"$label":"ACTS_IN","name":"Mateo Blanco \/ Harry Caine","type":"Role","_key":"48170","_from":"1965","_to":"31649"} +{"$label":"ACTS_IN","name":"Hilbert","type":"Role","_key":"37934","_from":"1965","_to":"25684"} +{"$label":"ACTS_IN","name":"Ismael","type":"Role","_key":"22083","_from":"1965","_to":"16102"} +{"$label":"ACTS_IN","name":"El Puerco","type":"Role","_key":"13261","_from":"1966","_to":"10315"} +{"$label":"ACTS_IN","name":"Nazario Infante","type":"Role","_key":"62656","_from":"1968","_to":"39410"} +{"$label":"ACTS_IN","name":"President Fulgencio Batista","type":"Role","_key":"55832","_from":"1968","_to":"35529"} +{"$label":"ACTS_IN","name":"Mateo Santos","type":"Role","_key":"49537","_from":"1968","_to":"32434"} +{"$label":"ACTS_IN","name":"Army Lieutenant","type":"Role","_key":"41697","_from":"1968","_to":"27974"} +{"$label":"ACTS_IN","name":"Jefe","type":"Role","_key":"12615","_from":"1968","_to":"9858"} +{"$label":"ACTS_IN","name":"Voluntario","type":"Role","_key":"12088","_from":"1971","_to":"9465"} +{"$label":"ACTS_IN","name":"Seth Devlin","type":"Role","_key":"2264","_from":"1993","_to":"1972"} +{"$label":"ACTS_IN","name":"Sean Smith","type":"Role","_key":"2263","_from":"1992","_to":"1972"} +{"$label":"ACTS_IN","name":"Anne Fisher","type":"Role","_key":"2262","_from":"1991","_to":"1972"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"2261","_from":"1990","_to":"1972"} +{"$label":"ACTS_IN","name":"Dr. Lilian Thurman","type":"Role","_key":"2260","_from":"1989","_to":"1972"} +{"$label":"ACTS_IN","name":"Emily Bates","type":"Role","_key":"2259","_from":"1988","_to":"1972"} +{"$label":"ACTS_IN","name":"Susie Bates","type":"Role","_key":"2258","_from":"1987","_to":"1972"} +{"$label":"ACTS_IN","name":"Prof. Kenneth Monnitoff","type":"Role","_key":"2257","_from":"1986","_to":"1972"} +{"$label":"ACTS_IN","name":"Principal Cole","type":"Role","_key":"2256","_from":"1985","_to":"1972"} +{"$label":"ACTS_IN","name":"Gretchen Ross","type":"Role","_key":"2255","_from":"1984","_to":"1972"} +{"$label":"ACTS_IN","name":"Kitty Farmer","type":"Role","_key":"2254","_from":"1983","_to":"1972"} +{"$label":"ACTS_IN","name":"Cherita Chen","type":"Role","_key":"2253","_from":"1982","_to":"1972"} +{"$label":"ACTS_IN","name":"Joanie James","type":"Role","_key":"2252","_from":"1981","_to":"1972"} +{"$label":"ACTS_IN","name":"Bob Garland","type":"Role","_key":"2251","_from":"1980","_to":"1972"} +{"$label":"ACTS_IN","name":"Roberty Sparrow \/ Grandma Death","type":"Role","_key":"2250","_from":"1979","_to":"1972"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"2249","_from":"1978","_to":"1972"} +{"$label":"ACTS_IN","name":"Dr. Fisher","type":"Role","_key":"2248","_from":"1977","_to":"1972"} +{"$label":"ACTS_IN","name":"Samantha Darko","type":"Role","_key":"2245","_from":"1976","_to":"1972"} +{"$label":"ACTS_IN","name":"Eddie Darko","type":"Role","_key":"2244","_from":"1975","_to":"1972"} +{"$label":"ACTS_IN","name":"Elizabeth Darko","type":"Role","_key":"2243","_from":"1974","_to":"1972"} +{"$label":"DIRECTED","_key":"2239","_from":"1973","_to":"1972"} +{"$label":"DIRECTED","_key":"33635","_from":"1973","_to":"23230"} +{"$label":"ACTS_IN","name":"LN","type":"Role","_key":"119403","_from":"1974","_to":"70150"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"99010","_from":"1974","_to":"58328"} +{"$label":"ACTS_IN","name":"Raven","type":"Role","_key":"98988","_from":"1974","_to":"58316"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"98329","_from":"1974","_to":"57911"} +{"$label":"ACTS_IN","name":"Sherry Swanson","type":"Role","_key":"92336","_from":"1974","_to":"54492"} +{"$label":"ACTS_IN","name":"Giselle Levy","type":"Role","_key":"72178","_from":"1974","_to":"43624"} +{"$label":"ACTS_IN","name":"Lee Holloway","type":"Role","_key":"67296","_from":"1974","_to":"41488"} +{"$label":"ACTS_IN","name":"Caroline Cunningham","type":"Role","_key":"23315","_from":"1974","_to":"16899"} +{"$label":"ACTS_IN","name":"Liz (Quartier des Enfants Rouges)","type":"Role","_key":"19866","_from":"1974","_to":"14635"} +{"$label":"ACTS_IN","name":"Allison Jimeno","type":"Role","_key":"15997","_from":"1974","_to":"12161"} +{"$label":"ACTS_IN","name":"Ana Pascal","type":"Role","_key":"12321","_from":"1974","_to":"9655"} +{"$label":"ACTS_IN","name":"Rachel Dawes","type":"Role","_key":"2407","_from":"1974","_to":"2110"} +{"$label":"ACTS_IN","name":"Hypnotherapist","type":"Role","_key":"62021","_from":"1975","_to":"39042"} +{"$label":"ACTS_IN","name":"Selkirk Tander","type":"Role","_key":"58792","_from":"1975","_to":"37126"} +{"$label":"ACTS_IN","name":"Richter Taylor","type":"Role","_key":"23857","_from":"1975","_to":"17287"} +{"$label":"ACTS_IN","name":"Samantha Darko","type":"Role","_key":"112794","_from":"1976","_to":"66602"} +{"$label":"ACTS_IN","name":"Lilo (voice)","type":"Role","_key":"70541","_from":"1976","_to":"42931"} +{"$label":"ACTS_IN","name":"Samara Morgan","type":"Role","_key":"6786","_from":"1976","_to":"5693"} +{"$label":"ACTS_IN","name":"Sister Margaret","type":"Role","_key":"90898","_from":"1979","_to":"53624"} +{"$label":"ACTS_IN","name":"Macabe","type":"Role","_key":"114823","_from":"1980","_to":"67629"} +{"$label":"ACTS_IN","name":"Roz Kincaid","type":"Role","_key":"119943","_from":"1983","_to":"70452"} +{"$label":"ACTS_IN","name":"Sissy Hickey","type":"Role","_key":"118675","_from":"1983","_to":"69773"} +{"$label":"ACTS_IN","name":"Carla's Mom","type":"Role","_key":"106798","_from":"1983","_to":"62951"} +{"$label":"ACTS_IN","name":"Olline","type":"Role","_key":"101212","_from":"1983","_to":"59618"} +{"$label":"ACTS_IN","name":"Dori Woodriff","type":"Role","_key":"59564","_from":"1983","_to":"37600"} +{"$label":"ACTS_IN","name":"Carla Jeans Mother","type":"Role","_key":"45550","_from":"1983","_to":"30156"} +{"$label":"ACTS_IN","name":"Dr. Inga Von Westphalen","type":"Role","_key":"33642","_from":"1983","_to":"23230"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"18265","_from":"1983","_to":"13549"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"14506","_from":"1983","_to":"11195"} +{"$label":"ACTS_IN","name":"Mother at Farm House","type":"Role","_key":"4912","_from":"1983","_to":"4182"} +{"$label":"ACTS_IN","name":"Jolie Fitch","type":"Role","_key":"106183","_from":"1984","_to":"62546"} +{"$label":"ACTS_IN","name":"Rena Grubb","type":"Role","_key":"102893","_from":"1984","_to":"60527"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"93370","_from":"1984","_to":"54999"} +{"$label":"ACTS_IN","name":"Alyssa Beck","type":"Role","_key":"69973","_from":"1984","_to":"42686"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"68179","_from":"1984","_to":"41878"} +{"$label":"ACTS_IN","name":"Heather Aubrey","type":"Role","_key":"62959","_from":"1984","_to":"39536"} +{"$label":"ACTS_IN","name":"Jeoly","type":"Role","_key":"57477","_from":"1984","_to":"36426"} +{"$label":"ACTS_IN","name":"Anna Harrison","type":"Role","_key":"53863","_from":"1984","_to":"34690"} +{"$label":"ACTS_IN","name":"Carine McCandless","type":"Role","_key":"40407","_from":"1984","_to":"27245"} +{"$label":"ACTS_IN","name":"Lydia Bennet","type":"Role","_key":"31078","_from":"1984","_to":"21757"} +{"$label":"ACTS_IN","name":"Geli Raubal","type":"Role","_key":"21765","_from":"1984","_to":"15899"} +{"$label":"ACTS_IN","name":"Flynn Carsen","type":"Role","_key":"101531","_from":"1986","_to":"59764"} +{"$label":"ACTS_IN","name":"Flynn Carsen","type":"Role","_key":"99067","_from":"1986","_to":"58364"} +{"$label":"ACTS_IN","name":"Flynn Carsen","type":"Role","_key":"99060","_from":"1986","_to":"58360"} +{"$label":"ACTS_IN","name":"Steve Jobs","type":"Role","_key":"26785","_from":"1986","_to":"19245"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"16969","_from":"1986","_to":"12733"} +{"$label":"ACTS_IN","name":"Cpl. Jeffrey Barnes","type":"Role","_key":"10491","_from":"1986","_to":"8340"} +{"$label":"ACTS_IN","name":"Joanna Eberhart","type":"Role","_key":"88802","_from":"1989","_to":"52618"} +{"$label":"ACTS_IN","name":"Laurel Scott","type":"Role","_key":"50606","_from":"1989","_to":"33049"} +{"$label":"ACTS_IN","name":"Etta Place","type":"Role","_key":"7676","_from":"1989","_to":"6376"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"8293","_from":"1991","_to":"6789"} +{"$label":"ACTS_IN","name":"Alma Jr., age 19","type":"Role","_key":"2276","_from":"2003","_to":"1994"} +{"$label":"ACTS_IN","name":"LaShawn","type":"Role","_key":"2275","_from":"2002","_to":"1994"} +{"$label":"ACTS_IN","name":"Cassie Cartwright","type":"Role","_key":"2274","_from":"2001","_to":"1994"} +{"$label":"ACTS_IN","name":"Timmy","type":"Role","_key":"2273","_from":"2000","_to":"1994"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"2272","_from":"1999","_to":"1994"} +{"$label":"ACTS_IN","name":"Jolly Minister","type":"Role","_key":"2271","_from":"1998","_to":"1994"} +{"$label":"ACTS_IN","name":"Alma Beers del Mar","type":"Role","_key":"2269","_from":"1997","_to":"1994"} +{"$label":"ACTS_IN","name":"Ennis Del Mar","type":"Role","_key":"2266","_from":"1996","_to":"1994"} +{"$label":"DIRECTED","_key":"2265","_from":"1995","_to":"1994"} +{"$label":"DIRECTED","_key":"63434","_from":"1995","_to":"39731"} +{"$label":"DIRECTED","_key":"52666","_from":"1995","_to":"34201"} +{"$label":"DIRECTED","_key":"40300","_from":"1995","_to":"27194"} +{"$label":"DIRECTED","_key":"32887","_from":"1995","_to":"22819"} +{"$label":"DIRECTED","_key":"32864","_from":"1995","_to":"22814"} +{"$label":"DIRECTED","_key":"16709","_from":"1995","_to":"12608"} +{"$label":"DIRECTED","_key":"2320","_from":"1995","_to":"2046"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"94436","_from":"1996","_to":"55608"} +{"$label":"ACTS_IN","name":"Ned Kelly","type":"Role","_key":"63966","_from":"1996","_to":"39951"} +{"$label":"ACTS_IN","name":"Skip","type":"Role","_key":"56792","_from":"1996","_to":"36065"} +{"$label":"ACTS_IN","name":"Casanova","type":"Role","_key":"55537","_from":"1996","_to":"35377"} +{"$label":"ACTS_IN","name":"Alex Bernier","type":"Role","_key":"55068","_from":"1996","_to":"35178"} +{"$label":"ACTS_IN","name":"Sir William Thatcher \/ Sir Ulrich von Lichtenstein of Gelderland","type":"Role","_key":"54099","_from":"1996","_to":"34782"} +{"$label":"ACTS_IN","name":"Harry Faversham","type":"Role","_key":"52516","_from":"1996","_to":"34152"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"47896","_from":"1996","_to":"31515"} +{"$label":"ACTS_IN","name":"Patrick Verona","type":"Role","_key":"35061","_from":"1996","_to":"23914"} +{"$label":"ACTS_IN","name":"Jacob Grimm","type":"Role","_key":"31743","_from":"1996","_to":"22160"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"31733","_from":"1996","_to":"22150"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"28882","_from":"1996","_to":"20642"} +{"$label":"ACTS_IN","name":"Gabriel Martin","type":"Role","_key":"17605","_from":"1996","_to":"13147"} +{"$label":"ACTS_IN","name":"Sonny Grotowski","type":"Role","_key":"12620","_from":"1996","_to":"9865"} +{"$label":"ACTS_IN","name":"Joker","type":"Role","_key":"2400","_from":"1996","_to":"2110"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"116723","_from":"1997","_to":"68707"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"108189","_from":"1997","_to":"63940"} +{"$label":"ACTS_IN","name":"Young Mother","type":"Role","_key":"105541","_from":"1997","_to":"62107"} +{"$label":"ACTS_IN","name":"Cecil Mills","type":"Role","_key":"93156","_from":"1997","_to":"54901"} +{"$label":"ACTS_IN","name":"S","type":"Role","_key":"92045","_from":"1997","_to":"54312"} +{"$label":"ACTS_IN","name":"Molly Cartwell","type":"Role","_key":"71487","_from":"1997","_to":"43330"} +{"$label":"ACTS_IN","name":"Dolores Chanal","type":"Role","_key":"69140","_from":"1997","_to":"42293"} +{"$label":"ACTS_IN","name":"Young Sil","type":"Role","_key":"53282","_from":"1997","_to":"34454"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"51579","_from":"1997","_to":"33658"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"35149","_from":"1997","_to":"23955"} +{"$label":"ACTS_IN","name":"Coco Rivington","type":"Role","_key":"28885","_from":"1997","_to":"20642"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"17878","_from":"1997","_to":"13303"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"14141","_from":"1997","_to":"10947"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"120966","_from":"2001","_to":"71049"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"100802","_from":"2001","_to":"59419"} +{"$label":"ACTS_IN","name":"Julie Ingram","type":"Role","_key":"97047","_from":"2001","_to":"57091"} +{"$label":"ACTS_IN","name":"Velma","type":"Role","_key":"67364","_from":"2001","_to":"41514"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"57745","_from":"2001","_to":"36554"} +{"$label":"ACTS_IN","name":"Velma Dinkley","type":"Role","_key":"55194","_from":"2001","_to":"35209"} +{"$label":"ACTS_IN","name":"Brandi","type":"Role","_key":"110747","_from":"2002","_to":"65426"} +{"$label":"ACTS_IN","name":"Jane F.","type":"Role","_key":"93141","_from":"2002","_to":"54899"} +{"$label":"ACTS_IN","name":"Nora Flannigan","type":"Role","_key":"93139","_from":"2002","_to":"54897"} +{"$label":"ACTS_IN","name":"Shelley","type":"Role","_key":"90650","_from":"2002","_to":"53522"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"72369","_from":"2002","_to":"43699"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"66503","_from":"2002","_to":"41119"} +{"$label":"ACTS_IN","name":"Samantha James","type":"Role","_key":"59702","_from":"2002","_to":"37702"} +{"$label":"ACTS_IN","name":"Serena","type":"Role","_key":"47215","_from":"2002","_to":"31117"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"31949","_from":"2002","_to":"22284"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30588","_from":"2002","_to":"21494"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"30573","_from":"2002","_to":"21490"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"30564","_from":"2002","_to":"21488"} +{"$label":"ACTS_IN","name":"Cindy Campbell","type":"Role","_key":"30560","_from":"2002","_to":"21485"} +{"$label":"ACTS_IN","name":"Cindy Campbell","type":"Role","_key":"30443","_from":"2002","_to":"21400"} +{"$label":"ACTS_IN","name":"Cindy Campbell","type":"Role","_key":"30436","_from":"2002","_to":"21394"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"2389","_from":"2002","_to":"2102"} +{"$label":"ACTS_IN","name":"Summer Jones \/ Wonder","type":"Role","_key":"98540","_from":"2003","_to":"58071"} +{"$label":"ACTS_IN","name":"Kay Matheson","type":"Role","_key":"89335","_from":"2003","_to":"52879"} +{"$label":"ACTS_IN","name":"Annie Cantrell","type":"Role","_key":"68310","_from":"2003","_to":"41931"} +{"$label":"ACTS_IN","name":"Samantha Owens","type":"Role","_key":"62415","_from":"2003","_to":"39323"} +{"$label":"ACTS_IN","name":"Bethany Cabe","type":"Role","_key":"61180","_from":"2003","_to":"38656"} +{"$label":"ACTS_IN","name":"Sarah Fenn","type":"Role","_key":"46870","_from":"2003","_to":"30909"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"44641","_from":"2003","_to":"29706"} +{"$label":"ACTS_IN","name":"Mrs. B\u00e4umer (final version)","type":"Role","_key":"2289","_from":"2017","_to":"2004"} +{"$label":"ACTS_IN","name":"Mrs. B\u00e4umer (1st version)","type":"Role","_key":"2288","_from":"2016","_to":"2004"} +{"$label":"ACTS_IN","name":"'Slim' Summerville","type":"Role","_key":"2287","_from":"2015","_to":"2004"} +{"$label":"ACTS_IN","name":"Albert Kropp","type":"Role","_key":"2286","_from":"2014","_to":"2004"} +{"$label":"ACTS_IN","name":"Walter Browne Rogers","type":"Role","_key":"2285","_from":"2013","_to":"2004"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"2284","_from":"2012","_to":"2004"} +{"$label":"ACTS_IN","name":"Leer","type":"Role","_key":"2283","_from":"2011","_to":"2004"} +{"$label":"ACTS_IN","name":"Franz Kemmerich","type":"Role","_key":"2282","_from":"2010","_to":"2004"} +{"$label":"ACTS_IN","name":"Stanislas Katczinsky","type":"Role","_key":"2281","_from":"2009","_to":"2004"} +{"$label":"ACTS_IN","name":"Himmelsto\u00df","type":"Role","_key":"2280","_from":"2008","_to":"2004"} +{"$label":"ACTS_IN","name":"Kantorek","type":"Role","_key":"2279","_from":"2007","_to":"2004"} +{"$label":"ACTS_IN","name":"Lewis Ayres","type":"Role","_key":"2278","_from":"2006","_to":"2004"} +{"$label":"DIRECTED","_key":"2277","_from":"2005","_to":"2004"} +{"$label":"DIRECTED","_key":"67787","_from":"2005","_to":"41668"} +{"$label":"DIRECTED","_key":"4171","_from":"2005","_to":"3543"} +{"$label":"ACTS_IN","name":"The Vice President","type":"Role","_key":"111449","_from":"2006","_to":"65805"} +{"$label":"ACTS_IN","name":"Edward 'Ned' Seton","type":"Role","_key":"108448","_from":"2006","_to":"64107"} +{"$label":"ACTS_IN","name":"Jason Burke","type":"Role","_key":"69240","_from":"2006","_to":"42339"} +{"$label":"ACTS_IN","name":"Bill Atherton","type":"Role","_key":"65647","_from":"2006","_to":"40672"} +{"$label":"ACTS_IN","name":"Mr. Graham","type":"Role","_key":"35610","_from":"2006","_to":"24197"} +{"$label":"ACTS_IN","name":"Com. Joseph Beckerman","type":"Role","_key":"25112","_from":"2006","_to":"18140"} +{"$label":"ACTS_IN","name":"Mandemus","type":"Role","_key":"15104","_from":"2006","_to":"11596"} +{"$label":"ACTS_IN","name":"Dr. Haines","type":"Role","_key":"28004","_from":"2008","_to":"20078"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"25004","_from":"2009","_to":"18053"} +{"$label":"ACTS_IN","name":"Mounted Officer","type":"Role","_key":"9072","_from":"2014","_to":"7317"} +{"$label":"ACTS_IN","name":"Henry Peabody","type":"Role","_key":"116579","_from":"2015","_to":"68621"} +{"$label":"ACTS_IN","name":"Gertie - Switchboard Operator","type":"Role","_key":"70827","_from":"2016","_to":"43041"} +{"$label":"ACTS_IN","name":"Gertie","type":"Role","_key":"29653","_from":"2016","_to":"20986"} +{"$label":"ACTS_IN","name":"Trina","type":"Role","_key":"12987","_from":"2016","_to":"10131"} +{"$label":"ACTS_IN","name":"Ma Powers","type":"Role","_key":"113661","_from":"2017","_to":"66979"} +{"$label":"ACTS_IN","name":"The sad man","type":"Role","_key":"2298","_from":"2027","_to":"2018"} +{"$label":"ACTS_IN","name":"The whore","type":"Role","_key":"2297","_from":"2026","_to":"2018"} +{"$label":"ACTS_IN","name":"The dying man","type":"Role","_key":"2296","_from":"2025","_to":"2018"} +{"$label":"ACTS_IN","name":"Peter Falk","type":"Role","_key":"2295","_from":"2024","_to":"2018"} +{"$label":"ACTS_IN","name":"Homer, the old poet","type":"Role","_key":"2294","_from":"2023","_to":"2018"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"2293","_from":"2022","_to":"2018"} +{"$label":"ACTS_IN","name":"Cassiel","type":"Role","_key":"2292","_from":"2021","_to":"2018"} +{"$label":"ACTS_IN","name":"Damiel","type":"Role","_key":"2291","_from":"2020","_to":"2018"} +{"$label":"DIRECTED","_key":"2290","_from":"2019","_to":"2018"} +{"$label":"DIRECTED","_key":"71925","_from":"2019","_to":"43516"} +{"$label":"DIRECTED","_key":"68639","_from":"2019","_to":"42069"} +{"$label":"DIRECTED","_key":"66069","_from":"2019","_to":"40882"} +{"$label":"DIRECTED","_key":"63335","_from":"2019","_to":"39697"} +{"$label":"DIRECTED","_key":"62696","_from":"2019","_to":"39423"} +{"$label":"DIRECTED","_key":"51305","_from":"2019","_to":"33463"} +{"$label":"DIRECTED","_key":"27639","_from":"2019","_to":"19813"} +{"$label":"DIRECTED","_key":"19158","_from":"2019","_to":"14161"} +{"$label":"DIRECTED","_key":"14139","_from":"2019","_to":"10947"} +{"$label":"DIRECTED","_key":"7833","_from":"2019","_to":"6500"} +{"$label":"DIRECTED","_key":"4996","_from":"2019","_to":"4248"} +{"$label":"DIRECTED","_key":"4425","_from":"2019","_to":"3774"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66590","_from":"2019","_to":"41163"} +{"$label":"ACTS_IN","name":"Spectator at Pauline's Theater","type":"Role","_key":"66068","_from":"2019","_to":"40882"} +{"$label":"ACTS_IN","name":"Wim Wenders","type":"Role","_key":"44409","_from":"2019","_to":"29572"} +{"$label":"ACTS_IN","name":"Regisseur","type":"Role","_key":"20503","_from":"2019","_to":"14984"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"101821","_from":"2020","_to":"59928"} +{"$label":"ACTS_IN","name":"Delp","type":"Role","_key":"100446","_from":"2020","_to":"59224"} +{"$label":"ACTS_IN","name":"Jonathan Zimmermann","type":"Role","_key":"68631","_from":"2020","_to":"42069"} +{"$label":"ACTS_IN","name":"Damiel","type":"Role","_key":"63328","_from":"2020","_to":"39697"} +{"$label":"ACTS_IN","name":"Rohl","type":"Role","_key":"47908","_from":"2020","_to":"31517"} +{"$label":"ACTS_IN","name":"Professor Stanciulescu","type":"Role","_key":"47298","_from":"2020","_to":"31157"} +{"$label":"ACTS_IN","name":"Jonathan Harker","type":"Role","_key":"43312","_from":"2020","_to":"28933"} +{"$label":"ACTS_IN","name":"Johann von Staupitz","type":"Role","_key":"38408","_from":"2020","_to":"25944"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"7260","_from":"2020","_to":"6064"} +{"$label":"ACTS_IN","name":"Fernando Girasoli","type":"Role","_key":"6583","_from":"2020","_to":"5562"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler (voice)","type":"Role","_key":"63510","_from":"2021","_to":"39763"} +{"$label":"ACTS_IN","name":"Cassiel","type":"Role","_key":"63327","_from":"2021","_to":"39697"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler (voice)","type":"Role","_key":"56233","_from":"2021","_to":"35728"} +{"$label":"ACTS_IN","name":"Monseigneur Bienvenu","type":"Role","_key":"31644","_from":"2021","_to":"22083"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"30398","_from":"2021","_to":"21376"} +{"$label":"ACTS_IN","name":"Adolf Hitler Double","type":"Role","_key":"20240","_from":"2021","_to":"14838"} +{"$label":"ACTS_IN","name":"Salzmann","type":"Role","_key":"20180","_from":"2021","_to":"14796"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"20042","_from":"2021","_to":"14741"} +{"$label":"ACTS_IN","name":"Meyn","type":"Role","_key":"7883","_from":"2021","_to":"6523"} +{"$label":"ACTS_IN","name":"Claire Tourneur","type":"Role","_key":"62690","_from":"2022","_to":"39423"} +{"$label":"DIRECTED","_key":"42697","_from":"2023","_to":"28577"} +{"$label":"ACTS_IN","name":"Pickpocket","type":"Role","_key":"4054","_from":"2023","_to":"3450"} +{"$label":"ACTS_IN","name":"Vincent J. Ricardo","type":"Role","_key":"121253","_from":"2024","_to":"71228"} +{"$label":"ACTS_IN","name":"Francis A. 'Pops' Romano","type":"Role","_key":"113720","_from":"2024","_to":"67018"} +{"$label":"ACTS_IN","name":"Guy Gisborne","type":"Role","_key":"113687","_from":"2024","_to":"66993"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"105767","_from":"2024","_to":"62266"} +{"$label":"ACTS_IN","name":"Abe 'Kid Twist' Reles","type":"Role","_key":"104169","_from":"2024","_to":"61284"} +{"$label":"ACTS_IN","name":"Mendy Ripstein","type":"Role","_key":"103065","_from":"2024","_to":"60628"} +{"$label":"ACTS_IN","name":"Lou Peckinpaugh","type":"Role","_key":"100931","_from":"2024","_to":"59497"} +{"$label":"ACTS_IN","name":"Third Cab Driver","type":"Role","_key":"70813","_from":"2024","_to":"43041"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"70785","_from":"2024","_to":"43040"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63330","_from":"2024","_to":"39697"} +{"$label":"ACTS_IN","name":"Sam Diamond","type":"Role","_key":"41385","_from":"2024","_to":"27822"} +{"$label":"ACTS_IN","name":"Theo Kerr","type":"Role","_key":"24872","_from":"2024","_to":"17982"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"21699","_from":"2024","_to":"15866"} +{"$label":"ACTS_IN","name":"Irv","type":"Role","_key":"15368","_from":"2024","_to":"11754"} +{"$label":"ACTS_IN","name":"Joy Boy","type":"Role","_key":"3593","_from":"2024","_to":"3074"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31360","_from":"2025","_to":"21924"} +{"$label":"ACTS_IN","name":"Merschmann","type":"Role","_key":"20436","_from":"2025","_to":"14953"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"72196","_from":"2026","_to":"43628"} +{"$label":"ACTS_IN","name":"Karla","type":"Role","_key":"63471","_from":"2026","_to":"39747"} +{"$label":"ACTS_IN","name":"Young Sailor","type":"Role","_key":"2319","_from":"2045","_to":"2028"} +{"$label":"ACTS_IN","name":"Man on Boat","type":"Role","_key":"2318","_from":"2044","_to":"2028"} +{"$label":"ACTS_IN","name":"Man at Lighthouse","type":"Role","_key":"2317","_from":"2043","_to":"2028"} +{"$label":"ACTS_IN","name":"Man on Bus","type":"Role","_key":"2316","_from":"2042","_to":"2028"} +{"$label":"ACTS_IN","name":"Glasgow Doctor","type":"Role","_key":"2315","_from":"2041","_to":"2028"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"2314","_from":"2040","_to":"2028"} +{"$label":"ACTS_IN","name":"Sybilla","type":"Role","_key":"2313","_from":"2039","_to":"2028"} +{"$label":"ACTS_IN","name":"An Elder","type":"Role","_key":"2312","_from":"2038","_to":"2028"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"2311","_from":"2037","_to":"2028"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"2310","_from":"2036","_to":"2028"} +{"$label":"ACTS_IN","name":"Pim","type":"Role","_key":"2309","_from":"2035","_to":"2028"} +{"$label":"ACTS_IN","name":"Pits","type":"Role","_key":"2308","_from":"2034","_to":"2028"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"2306","_from":"2033","_to":"2028"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"2305","_from":"2032","_to":"2028"} +{"$label":"ACTS_IN","name":"Dr. Richardson","type":"Role","_key":"2304","_from":"2031","_to":"2028"} +{"$label":"ACTS_IN","name":"Dodo McNeill","type":"Role","_key":"2302","_from":"2030","_to":"2028"} +{"$label":"ACTS_IN","name":"Bess McNeill","type":"Role","_key":"2300","_from":"2029","_to":"2028"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"110755","_from":"2029","_to":"65429"} +{"$label":"ACTS_IN","name":"Martha Stanley","type":"Role","_key":"109607","_from":"2029","_to":"64744"} +{"$label":"ACTS_IN","name":"Ruby Compton","type":"Role","_key":"102711","_from":"2029","_to":"60425"} +{"$label":"ACTS_IN","name":"Caroline Gil","type":"Role","_key":"101727","_from":"2029","_to":"59874"} +{"$label":"ACTS_IN","name":"Millie Warne","type":"Role","_key":"97867","_from":"2029","_to":"57645"} +{"$label":"ACTS_IN","name":"Anne Sellers","type":"Role","_key":"64499","_from":"2029","_to":"40184"} +{"$label":"ACTS_IN","name":"Angela McCourt","type":"Role","_key":"62988","_from":"2029","_to":"39545"} +{"$label":"ACTS_IN","name":"Reba McClane","type":"Role","_key":"54504","_from":"2029","_to":"34932"} +{"$label":"ACTS_IN","name":"Lena Leonard","type":"Role","_key":"47874","_from":"2029","_to":"31510"} +{"$label":"ACTS_IN","name":"Jane Lawrence","type":"Role","_key":"46621","_from":"2029","_to":"30792"} +{"$label":"ACTS_IN","name":"Mary O'Brien","type":"Role","_key":"46346","_from":"2029","_to":"30618"} +{"$label":"ACTS_IN","name":"Anne MacMorrow","type":"Role","_key":"39613","_from":"2029","_to":"26777"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"36868","_from":"2029","_to":"24998"} +{"$label":"ACTS_IN","name":"Victoria Everglot (voice)","type":"Role","_key":"28968","_from":"2029","_to":"20688"} +{"$label":"ACTS_IN","name":"Mary Vega","type":"Role","_key":"20045","_from":"2029","_to":"14745"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"118993","_from":"2030","_to":"69944"} +{"$label":"ACTS_IN","name":"Jane Livingstone","type":"Role","_key":"49168","_from":"2030","_to":"32208"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"30854","_from":"2030","_to":"21625"} +{"$label":"ACTS_IN","name":"Dark Annie Chapman","type":"Role","_key":"9014","_from":"2030","_to":"7296"} +{"$label":"ACTS_IN","name":"Arthur Kidd","type":"Role","_key":"107887","_from":"2031","_to":"63713"} +{"$label":"ACTS_IN","name":"Harbour","type":"Role","_key":"2420","_from":"2031","_to":"2127"} +{"$label":"ACTS_IN","name":"Marie Fr\u00f6hlich","type":"Role","_key":"95989","_from":"2033","_to":"56429"} +{"$label":"ACTS_IN","name":"Aslak H\u00e6tta","type":"Role","_key":"93502","_from":"2034","_to":"55052"} +{"$label":"ACTS_IN","name":"Aigin","type":"Role","_key":"18903","_from":"2034","_to":"13957"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"2331","_from":"2055","_to":"2046"} +{"$label":"ACTS_IN","name":"Police Inspector Tsai","type":"Role","_key":"2330","_from":"2054","_to":"2046"} +{"$label":"ACTS_IN","name":"Madame Yu","type":"Role","_key":"2329","_from":"2053","_to":"2046"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"2328","_from":"2052","_to":"2046"} +{"$label":"ACTS_IN","name":"Governor Yu","type":"Role","_key":"2327","_from":"2051","_to":"2046"} +{"$label":"ACTS_IN","name":"Jade Fox","type":"Role","_key":"2326","_from":"2050","_to":"2046"} +{"$label":"ACTS_IN","name":"Sir Te","type":"Role","_key":"2325","_from":"2049","_to":"2046"} +{"$label":"ACTS_IN","name":"Lo 'Dark Cloud' \/ Luo Xiao Hu","type":"Role","_key":"2324","_from":"2048","_to":"2046"} +{"$label":"ACTS_IN","name":"Yu Shu Lien","type":"Role","_key":"2322","_from":"2047","_to":"2046"} +{"$label":"ACTS_IN","name":"Mrs. Wang","type":"Role","_key":"94340","_from":"2047","_to":"55553"} +{"$label":"ACTS_IN","name":"Siu Lin","type":"Role","_key":"68134","_from":"2047","_to":"41849"} +{"$label":"ACTS_IN","name":"Insp. Jessica Yang","type":"Role","_key":"68080","_from":"2047","_to":"41824"} +{"$label":"ACTS_IN","name":"Schwester Rebecca","type":"Role","_key":"53472","_from":"2047","_to":"34540"} +{"$label":"ACTS_IN","name":"Saiva","type":"Role","_key":"50030","_from":"2047","_to":"32748"} +{"$label":"ACTS_IN","name":"Mameha","type":"Role","_key":"16448","_from":"2047","_to":"12429"} +{"$label":"ACTS_IN","name":"Zi Juan","type":"Role","_key":"15340","_from":"2047","_to":"11730"} +{"$label":"ACTS_IN","name":"Corazon","type":"Role","_key":"12425","_from":"2047","_to":"9736"} +{"$label":"ACTS_IN","name":"Wai Lin","type":"Role","_key":"8631","_from":"2047","_to":"7008"} +{"$label":"ACTS_IN","name":"Chang","type":"Role","_key":"115846","_from":"2048","_to":"68201"} +{"$label":"ACTS_IN","name":"Xiao Si'r (Zhang Zhen) (as Zhen Zhang)","type":"Role","_key":"105969","_from":"2048","_to":"62392"} +{"$label":"ACTS_IN","name":"Sun Quan","type":"Role","_key":"89222","_from":"2048","_to":"52831"} +{"$label":"ACTS_IN","name":"Chen \/ Mr. Chang \/ Zhen","type":"Role","_key":"70618","_from":"2048","_to":"42971"} +{"$label":"ACTS_IN","name":"cc 1966","type":"Role","_key":"10002","_from":"2048","_to":"8006"} +{"$label":"ACTS_IN","name":"Chu","type":"Role","_key":"63430","_from":"2049","_to":"39731"} +{"$label":"ACTS_IN","name":"Herr Gao","type":"Role","_key":"52670","_from":"2049","_to":"34201"} +{"$label":"ACTS_IN","name":"Aunt Mei","type":"Role","_key":"111317","_from":"2050","_to":"65743"} +{"$label":"ACTS_IN","name":"Sifu","type":"Role","_key":"106373","_from":"2052","_to":"62665"} +{"$label":"ACTS_IN","name":"French Teacher","type":"Role","_key":"2341","_from":"2065","_to":"2056"} +{"$label":"ACTS_IN","name":"English Teacher","type":"Role","_key":"2340","_from":"2064","_to":"2056"} +{"$label":"ACTS_IN","name":"Mme Bigey","type":"Role","_key":"2339","_from":"2063","_to":"2056"} +{"$label":"ACTS_IN","name":"Director of the school","type":"Role","_key":"2338","_from":"2062","_to":"2056"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"2337","_from":"2061","_to":"2056"} +{"$label":"ACTS_IN","name":"Mr. Bigey","type":"Role","_key":"2336","_from":"2060","_to":"2056"} +{"$label":"ACTS_IN","name":"Julien Doinel","type":"Role","_key":"2335","_from":"2059","_to":"2056"} +{"$label":"ACTS_IN","name":"Antoine Doinel","type":"Role","_key":"2333","_from":"2058","_to":"2056"} +{"$label":"DIRECTED","_key":"2332","_from":"2057","_to":"2056"} +{"$label":"DIRECTED","_key":"90413","_from":"2057","_to":"53419"} +{"$label":"DIRECTED","_key":"48055","_from":"2057","_to":"31597"} +{"$label":"DIRECTED","_key":"33377","_from":"2057","_to":"23107"} +{"$label":"DIRECTED","_key":"29958","_from":"2057","_to":"21166"} +{"$label":"DIRECTED","_key":"21547","_from":"2057","_to":"15751"} +{"$label":"DIRECTED","_key":"15782","_from":"2057","_to":"12023"} +{"$label":"DIRECTED","_key":"15736","_from":"2057","_to":"11991"} +{"$label":"DIRECTED","_key":"15211","_from":"2057","_to":"11648"} +{"$label":"DIRECTED","_key":"15172","_from":"2057","_to":"11631"} +{"$label":"DIRECTED","_key":"15151","_from":"2057","_to":"11621"} +{"$label":"DIRECTED","_key":"14845","_from":"2057","_to":"11416"} +{"$label":"DIRECTED","_key":"14748","_from":"2057","_to":"11351"} +{"$label":"DIRECTED","_key":"14661","_from":"2057","_to":"11289"} +{"$label":"DIRECTED","_key":"14437","_from":"2057","_to":"11154"} +{"$label":"DIRECTED","_key":"14428","_from":"2057","_to":"11145"} +{"$label":"DIRECTED","_key":"13154","_from":"2057","_to":"10258"} +{"$label":"DIRECTED","_key":"3733","_from":"2057","_to":"3202"} +{"$label":"DIRECTED","_key":"3719","_from":"2057","_to":"3193"} +{"$label":"DIRECTED","_key":"3692","_from":"2057","_to":"3169"} +{"$label":"DIRECTED","_key":"3670","_from":"2057","_to":"3149"} +{"$label":"ACTS_IN","name":"Julien Davenne","type":"Role","_key":"48056","_from":"2057","_to":"31597"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"39441","_from":"2057","_to":"26661"} +{"$label":"ACTS_IN","name":"Archivmaterial","type":"Role","_key":"30885","_from":"2057","_to":"21649"} +{"$label":"ACTS_IN","name":"Directeur Ferrand","type":"Role","_key":"14852","_from":"2057","_to":"11416"} +{"$label":"ACTS_IN","name":"Martines Vater","type":"Role","_key":"14757","_from":"2057","_to":"11351"} +{"$label":"ACTS_IN","name":"Dr. Jean Itard","type":"Role","_key":"14419","_from":"2057","_to":"11145"} +{"$label":"ACTS_IN","name":"Claude Lacombe","type":"Role","_key":"9915","_from":"2057","_to":"7948"} +{"$label":"ACTS_IN","name":"Newspaper Seller","type":"Role","_key":"3732","_from":"2057","_to":"3193"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106292","_from":"2058","_to":"62617"} +{"$label":"ACTS_IN","name":"Saint-Just","type":"Role","_key":"48087","_from":"2058","_to":"31610"} +{"$label":"ACTS_IN","name":"Henri Boulanger","type":"Role","_key":"47596","_from":"2058","_to":"31365"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"33599","_from":"2058","_to":"23212"} +{"$label":"ACTS_IN","name":"Jean-Pierre L\u00e9aud","type":"Role","_key":"29502","_from":"2058","_to":"20909"} +{"$label":"ACTS_IN","name":"un Spectateur","type":"Role","_key":"23569","_from":"2058","_to":"17089"} +{"$label":"ACTS_IN","name":"Alphonse","type":"Role","_key":"14847","_from":"2058","_to":"11416"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"14572","_from":"2058","_to":"11233"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"14440","_from":"2058","_to":"11162"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"12466","_from":"2058","_to":"9762"} +{"$label":"ACTS_IN","name":"Boris Golovine","type":"Role","_key":"5776","_from":"2058","_to":"4908"} +{"$label":"ACTS_IN","name":"Antoine Doinel","type":"Role","_key":"3734","_from":"2058","_to":"3202"} +{"$label":"ACTS_IN","name":"Antoine Doinel","type":"Role","_key":"3720","_from":"2058","_to":"3193"} +{"$label":"ACTS_IN","name":"Antoine Doinel","type":"Role","_key":"3693","_from":"2058","_to":"3169"} +{"$label":"ACTS_IN","name":"Antoine Doinel","type":"Role","_key":"3671","_from":"2058","_to":"3149"} +{"$label":"ACTS_IN","name":"Didont","type":"Role","_key":"27389","_from":"2059","_to":"19677"} +{"$label":"ACTS_IN","name":"Chico Saroyan","type":"Role","_key":"15744","_from":"2059","_to":"11991"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Bigey","type":"Role","_key":"3697","_from":"2061","_to":"3169"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34092","_from":"2062","_to":"23422"} +{"$label":"ACTS_IN","name":"Thibaut","type":"Role","_key":"37897","_from":"2064","_to":"25666"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"32923","_from":"2065","_to":"22838"} +{"$label":"ACTS_IN","name":"Le libraire","type":"Role","_key":"20693","_from":"2065","_to":"15127"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"2356","_from":"2074","_to":"2066"} +{"$label":"ACTS_IN","name":"Dullman","type":"Role","_key":"2355","_from":"2073","_to":"2066"} +{"$label":"ACTS_IN","name":"Dan Brown","type":"Role","_key":"2354","_from":"2072","_to":"2066"} +{"$label":"ACTS_IN","name":"Dimitri","type":"Role","_key":"2352","_from":"2071","_to":"2066"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"2351","_from":"2070","_to":"2066"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"2350","_from":"2069","_to":"2066"} +{"$label":"ACTS_IN","name":"Abdul","type":"Role","_key":"2349","_from":"2068","_to":"2066"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"2348","_from":"2067","_to":"2066"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"20656","_from":"2069","_to":"15095"} +{"$label":"ACTS_IN","name":"Allan","type":"Role","_key":"113235","_from":"2070","_to":"66717"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"89623","_from":"2070","_to":"53037"} +{"$label":"ACTS_IN","name":"Bert the Doorman","type":"Role","_key":"56055","_from":"2070","_to":"35624"} +{"$label":"ACTS_IN","name":"Dave Shilling","type":"Role","_key":"51083","_from":"2070","_to":"33334"} +{"$label":"ACTS_IN","name":"The Swordmaker","type":"Role","_key":"100531","_from":"2071","_to":"59294"} +{"$label":"ACTS_IN","name":"Dr. Jack Zac. Benjaminsen","type":"Role","_key":"67770","_from":"2071","_to":"41659"} +{"$label":"ACTS_IN","name":"Susan Harris","type":"Role","_key":"117426","_from":"2074","_to":"69064"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"90365","_from":"2074","_to":"53397"} +{"$label":"ACTS_IN","name":"Betty Logan","type":"Role","_key":"88575","_from":"2074","_to":"52493"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"64001","_from":"2074","_to":"39964"} +{"$label":"ACTS_IN","name":"Queen Aislinn","type":"Role","_key":"51007","_from":"2074","_to":"33290"} +{"$label":"ACTS_IN","name":"Bathsheba Everdene","type":"Role","_key":"27227","_from":"2074","_to":"19575"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"26168","_from":"2074","_to":"18778"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"16592","_from":"2074","_to":"12537"} +{"$label":"ACTS_IN","name":"Clarisse\/Linda Montag","type":"Role","_key":"15153","_from":"2074","_to":"11621"} +{"$label":"ACTS_IN","name":"Laura Baxter","type":"Role","_key":"11105","_from":"2074","_to":"8781"} +{"$label":"ACTS_IN","name":"Lara Antipova","type":"Role","_key":"10791","_from":"2074","_to":"8557"} +{"$label":"ACTS_IN","name":"Mrs. Emma du Maurier","type":"Role","_key":"10296","_from":"2074","_to":"8196"} +{"$label":"ACTS_IN","name":"Thetis","type":"Role","_key":"7795","_from":"2074","_to":"6469"} +{"$label":"ACTS_IN","name":"Kiyoko (No. 25) (voice)","type":"Role","_key":"2369","_from":"2087","_to":"2075"} +{"$label":"ACTS_IN","name":"Takashi (No. 26) (voice)","type":"Role","_key":"2368","_from":"2086","_to":"2075"} +{"$label":"ACTS_IN","name":"Masaru (No. 27) (voice)","type":"Role","_key":"2367","_from":"2085","_to":"2075"} +{"$label":"ACTS_IN","name":"Kai (voice)","type":"Role","_key":"2366","_from":"2084","_to":"2075"} +{"$label":"ACTS_IN","name":"Yamagata (voice)","type":"Role","_key":"2365","_from":"2083","_to":"2075"} +{"$label":"ACTS_IN","name":"Kaori (voice)","type":"Role","_key":"2364","_from":"2082","_to":"2075"} +{"$label":"ACTS_IN","name":"Priestess Miyako, Council A (voice)","type":"Role","_key":"2363","_from":"2081","_to":"2075"} +{"$label":"ACTS_IN","name":"Nezu (voice)","type":"Role","_key":"2362","_from":"2080","_to":"2075"} +{"$label":"ACTS_IN","name":"Ry\u00fbsaku (voice)","type":"Role","_key":"2361","_from":"2079","_to":"2075"} +{"$label":"ACTS_IN","name":"Kei (voice)","type":"Role","_key":"2360","_from":"2078","_to":"2075"} +{"$label":"ACTS_IN","name":"Tetsuo Shima (voice)","type":"Role","_key":"2359","_from":"2077","_to":"2075"} +{"$label":"ACTS_IN","name":"Sh\u00f4tar\u00f4 Kaneda (voice)","type":"Role","_key":"2358","_from":"2076","_to":"2075"} +{"$label":"ACTS_IN","name":"Tsumura Yasushi","type":"Role","_key":"35276","_from":"2076","_to":"24018"} +{"$label":"ACTS_IN","name":"Kasumi Karen","type":"Role","_key":"111104","_from":"2078","_to":"65622"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"71178","_from":"2078","_to":"43196"} +{"$label":"ACTS_IN","name":"Section 6 Department Chief Nakamura","type":"Role","_key":"98484","_from":"2079","_to":"58034"} +{"$label":"ACTS_IN","name":"Uchida the fan","type":"Role","_key":"63670","_from":"2083","_to":"39824"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"2385","_from":"2100","_to":"2088"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"2384","_from":"2099","_to":"2088"} +{"$label":"ACTS_IN","name":"Lisa, Blonde Hooker","type":"Role","_key":"2383","_from":"2098","_to":"2088"} +{"$label":"ACTS_IN","name":"Frizzy, Hotel Desk Clerk","type":"Role","_key":"2382","_from":"2097","_to":"2088"} +{"$label":"ACTS_IN","name":"Vanzant","type":"Role","_key":"2381","_from":"2096","_to":"2088"} +{"$label":"ACTS_IN","name":"Rosalie, Hostage Girl","type":"Role","_key":"2379","_from":"2095","_to":"2088"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"2376","_from":"2094","_to":"2088"} +{"$label":"ACTS_IN","name":"Albert Ganz","type":"Role","_key":"2375","_from":"2093","_to":"2088"} +{"$label":"ACTS_IN","name":"Haden","type":"Role","_key":"2374","_from":"2092","_to":"2088"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"2373","_from":"2091","_to":"2088"} +{"$label":"ACTS_IN","name":"Jack Cates","type":"Role","_key":"2371","_from":"2090","_to":"2088"} +{"$label":"DIRECTED","_key":"2370","_from":"2089","_to":"2088"} +{"$label":"DIRECTED","_key":"104253","_from":"2089","_to":"61340"} +{"$label":"DIRECTED","_key":"103068","_from":"2089","_to":"60628"} +{"$label":"DIRECTED","_key":"101623","_from":"2089","_to":"59813"} +{"$label":"DIRECTED","_key":"101544","_from":"2089","_to":"59766"} +{"$label":"DIRECTED","_key":"90070","_from":"2089","_to":"53272"} +{"$label":"DIRECTED","_key":"70964","_from":"2089","_to":"43104"} +{"$label":"DIRECTED","_key":"70073","_from":"2089","_to":"42721"} +{"$label":"DIRECTED","_key":"67651","_from":"2089","_to":"41626"} +{"$label":"DIRECTED","_key":"62923","_from":"2089","_to":"39523"} +{"$label":"DIRECTED","_key":"54973","_from":"2089","_to":"35138"} +{"$label":"DIRECTED","_key":"53171","_from":"2089","_to":"34398"} +{"$label":"DIRECTED","_key":"18755","_from":"2089","_to":"13876"} +{"$label":"DIRECTED","_key":"6097","_from":"2089","_to":"5178"} +{"$label":"ACTS_IN","name":"Pete Bell","type":"Role","_key":"121229","_from":"2090","_to":"71215"} +{"$label":"ACTS_IN","name":"Socrates","type":"Role","_key":"95888","_from":"2090","_to":"56393"} +{"$label":"ACTS_IN","name":"Russell Price","type":"Role","_key":"89920","_from":"2090","_to":"53207"} +{"$label":"ACTS_IN","name":"Harry Le Sabre","type":"Role","_key":"89753","_from":"2090","_to":"53126"} +{"$label":"ACTS_IN","name":"Jack Cates","type":"Role","_key":"70961","_from":"2090","_to":"43104"} +{"$label":"ACTS_IN","name":"Max Hoover","type":"Role","_key":"67122","_from":"2090","_to":"41425"} +{"$label":"ACTS_IN","name":"Peter Brackett","type":"Role","_key":"66430","_from":"2090","_to":"41073"} +{"$label":"ACTS_IN","name":"Tom Wingo","type":"Role","_key":"62639","_from":"2090","_to":"39408"} +{"$label":"ACTS_IN","name":"Jake McKenna","type":"Role","_key":"61297","_from":"2090","_to":"38700"} +{"$label":"ACTS_IN","name":"Jerry Baskin","type":"Role","_key":"58299","_from":"2090","_to":"36865"} +{"$label":"ACTS_IN","name":"Lt. Col. Tall","type":"Role","_key":"50637","_from":"2090","_to":"33066"} +{"$label":"ACTS_IN","name":"Mulgarath","type":"Role","_key":"48392","_from":"2090","_to":"31764"} +{"$label":"ACTS_IN","name":"Vincent (voice)","type":"Role","_key":"47102","_from":"2090","_to":"31057"} +{"$label":"ACTS_IN","name":"Bob Montagnet","type":"Role","_key":"41176","_from":"2090","_to":"27708"} +{"$label":"ACTS_IN","name":"Vincent (Parc Monceau)","type":"Role","_key":"19886","_from":"2090","_to":"14635"} +{"$label":"ACTS_IN","name":"Inspector Thomas Albert Cray","type":"Role","_key":"19228","_from":"2090","_to":"14214"} +{"$label":"ACTS_IN","name":"Augusto Odone","type":"Role","_key":"17432","_from":"2090","_to":"13031"} +{"$label":"ACTS_IN","name":"David Banner \/\"Absorbing Man\"","type":"Role","_key":"16713","_from":"2090","_to":"12608"} +{"$label":"ACTS_IN","name":"Sam Bowden","type":"Role","_key":"14166","_from":"2090","_to":"10963"} +{"$label":"ACTS_IN","name":"Colonel Oliver","type":"Role","_key":"2996","_from":"2090","_to":"2567"} +{"$label":"ACTS_IN","name":"Rose Fitzgerald Kennedy","type":"Role","_key":"105895","_from":"2091","_to":"62344"} +{"$label":"ACTS_IN","name":"Lana Lang","type":"Role","_key":"54488","_from":"2091","_to":"34930"} +{"$label":"ACTS_IN","name":"Alice Perrin","type":"Role","_key":"42619","_from":"2091","_to":"28531"} +{"$label":"ACTS_IN","name":"Beverly Marsh Rogan","type":"Role","_key":"22650","_from":"2091","_to":"16433"} +{"$label":"ACTS_IN","name":"Harry Noble","type":"Role","_key":"70565","_from":"2092","_to":"42937"} +{"$label":"ACTS_IN","name":"Eclipse","type":"Role","_key":"58761","_from":"2092","_to":"37115"} +{"$label":"ACTS_IN","name":"Meat Foreman","type":"Role","_key":"12661","_from":"2092","_to":"9890"} +{"$label":"ACTS_IN","name":"Sharkey","type":"Role","_key":"8568","_from":"2092","_to":"6975"} +{"$label":"ACTS_IN","name":"Gianelli","type":"Role","_key":"100757","_from":"2093","_to":"59407"} +{"$label":"ACTS_IN","name":"Dr. Paul Gregory","type":"Role","_key":"90525","_from":"2093","_to":"53475"} +{"$label":"ACTS_IN","name":"Captain Tom Murdoch","type":"Role","_key":"72416","_from":"2093","_to":"43716"} +{"$label":"ACTS_IN","name":"Ajax","type":"Role","_key":"70071","_from":"2093","_to":"42721"} +{"$label":"ACTS_IN","name":"Hugo Posh","type":"Role","_key":"64326","_from":"2093","_to":"40093"} +{"$label":"ACTS_IN","name":"Jack Duff","type":"Role","_key":"63756","_from":"2093","_to":"39867"} +{"$label":"ACTS_IN","name":"General Bratt","type":"Role","_key":"61557","_from":"2093","_to":"38803"} +{"$label":"ACTS_IN","name":"Quill","type":"Role","_key":"57199","_from":"2093","_to":"36287"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"53487","_from":"2093","_to":"34545"} +{"$label":"ACTS_IN","name":"Maxie Devine","type":"Role","_key":"52574","_from":"2093","_to":"34170"} +{"$label":"ACTS_IN","name":"Warren Feur","type":"Role","_key":"22526","_from":"2093","_to":"16367"} +{"$label":"ACTS_IN","name":"Dutch Schulz","type":"Role","_key":"18722","_from":"2093","_to":"13856"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"18521","_from":"2093","_to":"13709"} +{"$label":"ACTS_IN","name":"Larousse","type":"Role","_key":"17948","_from":"2093","_to":"13345"} +{"$label":"ACTS_IN","name":"Agent Markham","type":"Role","_key":"7002","_from":"2093","_to":"5871"} +{"$label":"ACTS_IN","name":"Gentry","type":"Role","_key":"5870","_from":"2093","_to":"4983"} +{"$label":"ACTS_IN","name":"Sully","type":"Role","_key":"67195","_from":"2094","_to":"41449"} +{"$label":"ACTS_IN","name":"T-Bird","type":"Role","_key":"54250","_from":"2094","_to":"34832"} +{"$label":"ACTS_IN","name":"Howie","type":"Role","_key":"2593","_from":"2094","_to":"2259"} +{"$label":"ACTS_IN","name":"Whitey","type":"Role","_key":"109198","_from":"2096","_to":"64516"} +{"$label":"ACTS_IN","name":"Harv","type":"Role","_key":"55048","_from":"2096","_to":"35160"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105950","_from":"2100","_to":"62384"} +{"$label":"ACTS_IN","name":"Leslie Doyle","type":"Role","_key":"99182","_from":"2100","_to":"58429"} +{"$label":"ACTS_IN","name":"Rachel Creed","type":"Role","_key":"51451","_from":"2100","_to":"33557"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37010","_from":"2100","_to":"25084"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"36564","_from":"2100","_to":"24786"} +{"$label":"ACTS_IN","name":"Bambie","type":"Role","_key":"2397","_from":"2109","_to":"2102"} +{"$label":"ACTS_IN","name":"Hiroko","type":"Role","_key":"2396","_from":"2108","_to":"2102"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"2395","_from":"2107","_to":"2102"} +{"$label":"ACTS_IN","name":"Press Agent","type":"Role","_key":"2394","_from":"2106","_to":"2102"} +{"$label":"ACTS_IN","name":"Press Agent","type":"Role","_key":"2393","_from":"2105","_to":"2102"} +{"$label":"ACTS_IN","name":"Press Agent","type":"Role","_key":"2392","_from":"2104","_to":"2102"} +{"$label":"ACTS_IN","name":"Ms. Kawasaki","type":"Role","_key":"2391","_from":"2103","_to":"2102"} +{"$label":"ACTS_IN","name":"Mayor Anthony Garcia","type":"Role","_key":"2418","_from":"2126","_to":"2110"} +{"$label":"ACTS_IN","name":"LSI VP","type":"Role","_key":"2417","_from":"2125","_to":"2110"} +{"$label":"ACTS_IN","name":"Commissioner Gillian B. Loeb","type":"Role","_key":"2416","_from":"2124","_to":"2110"} +{"$label":"ACTS_IN","name":"Det. Gerard Stephens","type":"Role","_key":"2415","_from":"2123","_to":"2110"} +{"$label":"ACTS_IN","name":"Mike Engel","type":"Role","_key":"2414","_from":"2122","_to":"2110"} +{"$label":"ACTS_IN","name":"The Chechen","type":"Role","_key":"2413","_from":"2121","_to":"2110"} +{"$label":"ACTS_IN","name":"Lau","type":"Role","_key":"2412","_from":"2120","_to":"2110"} +{"$label":"ACTS_IN","name":"Jonathan Crane \/ The Scarecrow","type":"Role","_key":"2411","_from":"2119","_to":"2110"} +{"$label":"ACTS_IN","name":"Det. Michael Wuertz","type":"Role","_key":"2410","_from":"2118","_to":"2110"} +{"$label":"ACTS_IN","name":"Det. Anna Ramirez","type":"Role","_key":"2409","_from":"2117","_to":"2110"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"2408","_from":"2116","_to":"2110"} +{"$label":"ACTS_IN","name":"Gambol","type":"Role","_key":"2406","_from":"2115","_to":"2110"} +{"$label":"ACTS_IN","name":"Harvey Dent","type":"Role","_key":"2404","_from":"2114","_to":"2110"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"2403","_from":"2113","_to":"2110"} +{"$label":"ACTS_IN","name":"Sal Maroni","type":"Role","_key":"2402","_from":"2112","_to":"2110"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"2399","_from":"2111","_to":"2110"} +{"$label":"ACTS_IN","name":"Jack 'Cowboy' Kelly","type":"Role","_key":"103909","_from":"2111","_to":"61125"} +{"$label":"ACTS_IN","name":"Jum-Jum \/ Benke","type":"Role","_key":"100527","_from":"2111","_to":"59294"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"96930","_from":"2111","_to":"57014"} +{"$label":"ACTS_IN","name":"John Rolfe","type":"Role","_key":"69626","_from":"2111","_to":"42500"} +{"$label":"ACTS_IN","name":"Melvin Purvis","type":"Role","_key":"69119","_from":"2111","_to":"42291"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"65158","_from":"2111","_to":"40473"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"63882","_from":"2111","_to":"39912"} +{"$label":"ACTS_IN","name":"Thomas Berger","type":"Role","_key":"63141","_from":"2111","_to":"39600"} +{"$label":"ACTS_IN","name":"Jim 'Jamie' Graham","type":"Role","_key":"60827","_from":"2111","_to":"38429"} +{"$label":"ACTS_IN","name":"Dieter Dengler","type":"Role","_key":"58433","_from":"2111","_to":"36932"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"54863","_from":"2111","_to":"35089"} +{"$label":"ACTS_IN","name":"Jim Luther Davis","type":"Role","_key":"47475","_from":"2111","_to":"31280"} +{"$label":"ACTS_IN","name":"John Preston","type":"Role","_key":"46332","_from":"2111","_to":"30618"} +{"$label":"ACTS_IN","name":"Quinn Abercromby","type":"Role","_key":"42778","_from":"2111","_to":"28624"} +{"$label":"ACTS_IN","name":"Dan Evans","type":"Role","_key":"36263","_from":"2111","_to":"24605"} +{"$label":"ACTS_IN","name":"Howl","type":"Role","_key":"34943","_from":"2111","_to":"23864"} +{"$label":"ACTS_IN","name":"Trevor Reznik","type":"Role","_key":"32592","_from":"2111","_to":"22651"} +{"$label":"ACTS_IN","name":"Jack\/Pastor John","type":"Role","_key":"28886","_from":"2111","_to":"20642"} +{"$label":"ACTS_IN","name":"Arthur Stuart","type":"Role","_key":"15626","_from":"2111","_to":"11924"} +{"$label":"ACTS_IN","name":"Mandras","type":"Role","_key":"15239","_from":"2111","_to":"11670"} +{"$label":"ACTS_IN","name":"Patrick Bateman","type":"Role","_key":"12539","_from":"2111","_to":"9822"} +{"$label":"ACTS_IN","name":"Alfred Borden","type":"Role","_key":"12045","_from":"2111","_to":"9443"} +{"$label":"ACTS_IN","name":"John Connor","type":"Role","_key":"6402","_from":"2111","_to":"5406"} +{"$label":"ACTS_IN","name":"Walter Wade, Jr.","type":"Role","_key":"5876","_from":"2111","_to":"4990"} +{"$label":"ACTS_IN","name":"Bruce Wayne \/ Batman","type":"Role","_key":"3861","_from":"2111","_to":"3310"} +{"$label":"ACTS_IN","name":"Merle Hench","type":"Role","_key":"121680","_from":"2112","_to":"71488"} +{"$label":"ACTS_IN","name":"Alex Grady","type":"Role","_key":"114198","_from":"2112","_to":"67268"} +{"$label":"ACTS_IN","name":"Eurymachus","type":"Role","_key":"111711","_from":"2112","_to":"65950"} +{"$label":"ACTS_IN","name":"Victor Haddock \/ Stanley Joiner","type":"Role","_key":"109823","_from":"2112","_to":"64879"} +{"$label":"ACTS_IN","name":"L.A. Guy","type":"Role","_key":"108076","_from":"2112","_to":"63848"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"105476","_from":"2112","_to":"62065"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"87931","_from":"2112","_to":"52214"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"72588","_from":"2112","_to":"43768"} +{"$label":"ACTS_IN","name":"Sheriff Jim Tanner","type":"Role","_key":"58265","_from":"2112","_to":"36848"} +{"$label":"ACTS_IN","name":"Donovan","type":"Role","_key":"52296","_from":"2112","_to":"34046"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"52170","_from":"2112","_to":"33997"} +{"$label":"ACTS_IN","name":"First Officer Mike Hogan","type":"Role","_key":"50336","_from":"2112","_to":"32881"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46324","_from":"2112","_to":"30610"} +{"$label":"ACTS_IN","name":"Jimmy Evans","type":"Role","_key":"34232","_from":"2112","_to":"23502"} +{"$label":"ACTS_IN","name":"Tomas Leon","type":"Role","_key":"22298","_from":"2112","_to":"16214"} +{"$label":"ACTS_IN","name":"Governor Baxter Thwaites","type":"Role","_key":"118823","_from":"2113","_to":"69852"} +{"$label":"ACTS_IN","name":"Sidney Bruhl","type":"Role","_key":"113272","_from":"2113","_to":"66733"} +{"$label":"ACTS_IN","name":"Captain John Colby","type":"Role","_key":"112028","_from":"2113","_to":"66149"} +{"$label":"ACTS_IN","name":"Alfie Elkins","type":"Role","_key":"105133","_from":"2113","_to":"61868"} +{"$label":"ACTS_IN","name":"Henry Lair","type":"Role","_key":"104729","_from":"2113","_to":"61613"} +{"$label":"ACTS_IN","name":"Harry Palmer","type":"Role","_key":"103678","_from":"2113","_to":"60984"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"101752","_from":"2113","_to":"59884"} +{"$label":"ACTS_IN","name":"Lt. Gonville Bromhead","type":"Role","_key":"100243","_from":"2113","_to":"59121"} +{"$label":"ACTS_IN","name":"Matthew Hollins","type":"Role","_key":"99731","_from":"2113","_to":"58819"} +{"$label":"ACTS_IN","name":"Mr. Hobbs","type":"Role","_key":"93386","_from":"2113","_to":"55005"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"93044","_from":"2113","_to":"54855"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"90422","_from":"2113","_to":"53426"} +{"$label":"ACTS_IN","name":"Squadron Leader Canfield","type":"Role","_key":"70014","_from":"2113","_to":"42700"} +{"$label":"ACTS_IN","name":"Col. Kurt Steiner","type":"Role","_key":"69462","_from":"2113","_to":"42443"} +{"$label":"ACTS_IN","name":"Doctor Robert Elliott","type":"Role","_key":"67453","_from":"2113","_to":"41554"} +{"$label":"ACTS_IN","name":"Dr. Royer-Collard","type":"Role","_key":"66417","_from":"2113","_to":"41070"} +{"$label":"ACTS_IN","name":"Charlie Croker","type":"Role","_key":"63918","_from":"2113","_to":"39928"} +{"$label":"ACTS_IN","name":"Ebenezer Scrooge","type":"Role","_key":"63353","_from":"2113","_to":"39701"} +{"$label":"ACTS_IN","name":"Lawrence Jamieson","type":"Role","_key":"61202","_from":"2113","_to":"38666"} +{"$label":"ACTS_IN","name":"Mortwell","type":"Role","_key":"59262","_from":"2113","_to":"37434"} +{"$label":"ACTS_IN","name":"Nigel Bigelow","type":"Role","_key":"56011","_from":"2113","_to":"35606"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"55736","_from":"2113","_to":"35462"} +{"$label":"ACTS_IN","name":"Michael Jennings","type":"Role","_key":"55120","_from":"2113","_to":"35190"} +{"$label":"ACTS_IN","name":"Ray Say","type":"Role","_key":"50131","_from":"2113","_to":"32785"} +{"$label":"ACTS_IN","name":"Thomas Fowler","type":"Role","_key":"48343","_from":"2113","_to":"31740"} +{"$label":"ACTS_IN","name":"Blair Maynard","type":"Role","_key":"47687","_from":"2113","_to":"31415"} +{"$label":"ACTS_IN","name":"Jim Keogh","type":"Role","_key":"45644","_from":"2113","_to":"30214"} +{"$label":"ACTS_IN","name":"Robert Spritzel","type":"Role","_key":"45382","_from":"2113","_to":"30092"} +{"$label":"ACTS_IN","name":"Lt. Col. John O.E. Vandeleur","type":"Role","_key":"40256","_from":"2113","_to":"27164"} +{"$label":"ACTS_IN","name":"Elliot","type":"Role","_key":"36071","_from":"2113","_to":"24486"} +{"$label":"ACTS_IN","name":"John Preston","type":"Role","_key":"34761","_from":"2113","_to":"23765"} +{"$label":"ACTS_IN","name":"Harry Palmer","type":"Role","_key":"34558","_from":"2113","_to":"23665"} +{"$label":"ACTS_IN","name":"Andrew Wyke","type":"Role","_key":"32288","_from":"2113","_to":"22490"} +{"$label":"ACTS_IN","name":"Capt. Nemo","type":"Role","_key":"24497","_from":"2113","_to":"17715"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"22193","_from":"2113","_to":"16174"} +{"$label":"ACTS_IN","name":"Dr. Wilbur Larch","type":"Role","_key":"15165","_from":"2113","_to":"11627"} +{"$label":"ACTS_IN","name":"Victor Melling","type":"Role","_key":"13514","_from":"2113","_to":"10515"} +{"$label":"ACTS_IN","name":"Jack Carter","type":"Role","_key":"13463","_from":"2113","_to":"10480"} +{"$label":"ACTS_IN","name":"Cutter","type":"Role","_key":"12046","_from":"2113","_to":"9443"} +{"$label":"ACTS_IN","name":"Milo Tindle","type":"Role","_key":"11739","_from":"2113","_to":"9214"} +{"$label":"ACTS_IN","name":"Peachy Carnehan","type":"Role","_key":"11619","_from":"2113","_to":"9125"} +{"$label":"ACTS_IN","name":"Nigel Powers","type":"Role","_key":"9640","_from":"2113","_to":"7752"} +{"$label":"ACTS_IN","name":"Hoagie Newcombe","type":"Role","_key":"6939","_from":"2113","_to":"5820"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"3863","_from":"2113","_to":"3310"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"105230","_from":"2114","_to":"61933"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"100939","_from":"2114","_to":"59498"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"93552","_from":"2114","_to":"55088"} +{"$label":"ACTS_IN","name":"Mr. Vuoso","type":"Role","_key":"61567","_from":"2114","_to":"38809"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"57026","_from":"2114","_to":"36182"} +{"$label":"ACTS_IN","name":"Lee Blanchard","type":"Role","_key":"55469","_from":"2114","_to":"35352"} +{"$label":"ACTS_IN","name":"James Rethrick","type":"Role","_key":"55099","_from":"2114","_to":"35186"} +{"$label":"ACTS_IN","name":"Nick Naylor","type":"Role","_key":"53541","_from":"2114","_to":"34562"} +{"$label":"ACTS_IN","name":"Dr. Josh Keyes","type":"Role","_key":"53221","_from":"2114","_to":"34423"} +{"$label":"ACTS_IN","name":"Thomas Mackelway","type":"Role","_key":"48158","_from":"2114","_to":"31644"} +{"$label":"ACTS_IN","name":"Stan Krolak","type":"Role","_key":"40718","_from":"2114","_to":"27400"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"28395","_from":"2114","_to":"20316"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"5752","_from":"2114","_to":"4882"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"111504","_from":"2115","_to":"65841"} +{"$label":"ACTS_IN","name":"George Chambers","type":"Role","_key":"103703","_from":"2115","_to":"60999"} +{"$label":"ACTS_IN","name":"SETH","type":"Role","_key":"62832","_from":"2115","_to":"39480"} +{"$label":"ACTS_IN","name":"Spawn","type":"Role","_key":"62658","_from":"2115","_to":"39413"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"47378","_from":"2117","_to":"31196"} +{"$label":"ACTS_IN","name":"Detective Lukich","type":"Role","_key":"53590","_from":"2118","_to":"34584"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"110609","_from":"2119","_to":"65352"} +{"$label":"ACTS_IN","name":"William Killick","type":"Role","_key":"98332","_from":"2119","_to":"57914"} +{"$label":"ACTS_IN","name":"John Skillpa","type":"Role","_key":"71771","_from":"2119","_to":"43442"} +{"$label":"ACTS_IN","name":"Jackson Rippner","type":"Role","_key":"69993","_from":"2119","_to":"42693"} +{"$label":"ACTS_IN","name":"Pieter","type":"Role","_key":"28383","_from":"2119","_to":"20310"} +{"$label":"ACTS_IN","name":"Patrick 'Kitten' Braden","type":"Role","_key":"13139","_from":"2119","_to":"10247"} +{"$label":"ACTS_IN","name":"Capa","type":"Role","_key":"12422","_from":"2119","_to":"9736"} +{"$label":"ACTS_IN","name":"Damien O'Donovan","type":"Role","_key":"12019","_from":"2119","_to":"9421"} +{"$label":"ACTS_IN","name":"Dr. Jonathan Crane \/ The Scarecrow","type":"Role","_key":"3866","_from":"2119","_to":"3310"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"2618","_from":"2119","_to":"2287"} +{"$label":"ACTS_IN","name":"Tenzin","type":"Role","_key":"98820","_from":"2120","_to":"58224"} +{"$label":"ACTS_IN","name":"Janos","type":"Role","_key":"10866","_from":"2121","_to":"8607"} +{"$label":"ACTS_IN","name":"Greg Gilliad","type":"Role","_key":"111051","_from":"2122","_to":"65597"} +{"$label":"ACTS_IN","name":"The Geek","type":"Role","_key":"103346","_from":"2122","_to":"60795"} +{"$label":"ACTS_IN","name":"Mr. Davidson","type":"Role","_key":"93095","_from":"2122","_to":"54874"} +{"$label":"ACTS_IN","name":"Gary Wallace","type":"Role","_key":"72139","_from":"2122","_to":"43605"} +{"$label":"ACTS_IN","name":"Rusty Griswold","type":"Role","_key":"68187","_from":"2122","_to":"41880"} +{"$label":"ACTS_IN","name":"Bill Gates","type":"Role","_key":"26788","_from":"2122","_to":"19245"} +{"$label":"ACTS_IN","name":"Brian Ralph Johnson","type":"Role","_key":"18380","_from":"2122","_to":"13632"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"2503","_from":"2122","_to":"2195"} +{"$label":"ACTS_IN","name":"Dr. Kyne (voice)","type":"Role","_key":"93352","_from":"2123","_to":"54987"} +{"$label":"ACTS_IN","name":"Kazaf","type":"Role","_key":"112299","_from":"2125","_to":"66303"} +{"$label":"ACTS_IN","name":"O","type":"Role","_key":"111053","_from":"2125","_to":"65598"} +{"$label":"ACTS_IN","name":"Ryousuke Takahashi","type":"Role","_key":"109126","_from":"2125","_to":"64472"} +{"$label":"ACTS_IN","name":"Pang","type":"Role","_key":"101882","_from":"2125","_to":"59965"} +{"$label":"ACTS_IN","name":"Officer Lau Kin Ming","type":"Role","_key":"71271","_from":"2125","_to":"43242"} +{"$label":"ACTS_IN","name":"Peachy","type":"Role","_key":"62085","_from":"2125","_to":"39097"} +{"$label":"ACTS_IN","name":"Eason","type":"Role","_key":"17105","_from":"2125","_to":"12821"} +{"$label":"ACTS_IN","name":"Seaton Brookstone","type":"Role","_key":"102167","_from":"2126","_to":"60121"} +{"$label":"ACTS_IN","name":"Luis Fellove","type":"Role","_key":"55825","_from":"2126","_to":"35529"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"2433","_from":"2140","_to":"2127"} +{"$label":"ACTS_IN","name":"Supervisor","type":"Role","_key":"2432","_from":"2139","_to":"2127"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"2431","_from":"2138","_to":"2127"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"2430","_from":"2137","_to":"2127"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"2429","_from":"2136","_to":"2127"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"2428","_from":"2135","_to":"2127"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"2427","_from":"2134","_to":"2127"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"2426","_from":"2133","_to":"2127"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"2425","_from":"2132","_to":"2127"} +{"$label":"ACTS_IN","name":"Moira","type":"Role","_key":"2424","_from":"2131","_to":"2127"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"2422","_from":"2130","_to":"2127"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"2421","_from":"2129","_to":"2127"} +{"$label":"ACTS_IN","name":"Wilbur","type":"Role","_key":"2419","_from":"2128","_to":"2127"} +{"$label":"ACTS_IN","name":"Finlay","type":"Role","_key":"44520","_from":"2128","_to":"29646"} +{"$label":"ACTS_IN","name":"Alasdair","type":"Role","_key":"19555","_from":"2128","_to":"14466"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"117633","_from":"2129","_to":"69149"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"103943","_from":"2129","_to":"61143"} +{"$label":"ACTS_IN","name":"Edythe Dubarry","type":"Role","_key":"88498","_from":"2129","_to":"52451"} +{"$label":"ACTS_IN","name":"Susannah","type":"Role","_key":"49730","_from":"2129","_to":"32538"} +{"$label":"ACTS_IN","name":"Lindsay Wilson","type":"Role","_key":"23252","_from":"2129","_to":"16861"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"7549","_from":"2129","_to":"6278"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"7455","_from":"2129","_to":"6206"} +{"$label":"ACTS_IN","name":"Elizabeth Elliot","type":"Role","_key":"97691","_from":"2131","_to":"57524"} +{"$label":"ACTS_IN","name":"Counselor","type":"Role","_key":"60847","_from":"2131","_to":"38430"} +{"$label":"ACTS_IN","name":"Laura Wood","type":"Role","_key":"24309","_from":"2132","_to":"17611"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"7453","_from":"2132","_to":"6206"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"48249","_from":"2134","_to":"31694"} +{"$label":"ACTS_IN","name":"Cathie's Flatmate","type":"Role","_key":"3433","_from":"2136","_to":"2932"} +{"$label":"ACTS_IN","name":"Regisseur","type":"Role","_key":"2460","_from":"2164","_to":"2141"} +{"$label":"ACTS_IN","name":"Polizist am Fahrstuhl","type":"Role","_key":"2459","_from":"2163","_to":"2141"} +{"$label":"ACTS_IN","name":"Puffmutter","type":"Role","_key":"2458","_from":"2162","_to":"2141"} +{"$label":"ACTS_IN","name":"Dr. Wortmann","type":"Role","_key":"2457","_from":"2161","_to":"2141"} +{"$label":"ACTS_IN","name":"Dr. Graf","type":"Role","_key":"2456","_from":"2160","_to":"2141"} +{"$label":"ACTS_IN","name":"Tankwart","type":"Role","_key":"2455","_from":"2159","_to":"2141"} +{"$label":"ACTS_IN","name":"Krankenschwester Notaufnahme","type":"Role","_key":"2454","_from":"2158","_to":"2141"} +{"$label":"ACTS_IN","name":"Polizeipsychologe","type":"Role","_key":"2453","_from":"2157","_to":"2141"} +{"$label":"ACTS_IN","name":"Krankenschwester Station A","type":"Role","_key":"2451","_from":"2156","_to":"2141"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"2450","_from":"2155","_to":"2141"} +{"$label":"ACTS_IN","name":"Autoh\u00e4ndler","type":"Role","_key":"2449","_from":"2154","_to":"2141"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"2448","_from":"2153","_to":"2141"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"2447","_from":"2152","_to":"2141"} +{"$label":"ACTS_IN","name":"Boutique Verk\u00e4uferin","type":"Role","_key":"2446","_from":"2151","_to":"2141"} +{"$label":"ACTS_IN","name":"Martins Mutter","type":"Role","_key":"2444","_from":"2150","_to":"2141"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"2443","_from":"2149","_to":"2141"} +{"$label":"ACTS_IN","name":"Kommissar Schneider","type":"Role","_key":"2442","_from":"2148","_to":"2141"} +{"$label":"ACTS_IN","name":"Frankie 'Boy' Beluga","type":"Role","_key":"2441","_from":"2147","_to":"2141"} +{"$label":"ACTS_IN","name":"Henk","type":"Role","_key":"2439","_from":"2146","_to":"2141"} +{"$label":"ACTS_IN","name":"Rudi Wurlitzer","type":"Role","_key":"2438","_from":"2145","_to":"2141"} +{"$label":"ACTS_IN","name":"Martin Brest","type":"Role","_key":"2437","_from":"2144","_to":"2141"} +{"$label":"DIRECTED","_key":"2436","_from":"2143","_to":"2141"} +{"$label":"DIRECTED","_key":"2435","_from":"2142","_to":"2141"} +{"$label":"DIRECTED","_key":"53747","_from":"2142","_to":"34649"} +{"$label":"ACTS_IN","name":"Feldwebel Hugo Stiglitz","type":"Role","_key":"110269","_from":"2144","_to":"65170"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"98521","_from":"2144","_to":"58062"} +{"$label":"ACTS_IN","name":"Hercules (Stimme)","type":"Role","_key":"73064","_from":"2144","_to":"43964"} +{"$label":"ACTS_IN","name":"Heinz Hummer","type":"Role","_key":"69951","_from":"2144","_to":"42676"} +{"$label":"ACTS_IN","name":"Lucky Luke","type":"Role","_key":"66385","_from":"2144","_to":"41056"} +{"$label":"ACTS_IN","name":"Hajo Heiermann","type":"Role","_key":"65888","_from":"2144","_to":"40768"} +{"$label":"ACTS_IN","name":"Brandenburg","type":"Role","_key":"63558","_from":"2144","_to":"39780"} +{"$label":"ACTS_IN","name":"Rock Fertig Aus","type":"Role","_key":"56979","_from":"2144","_to":"36154"} +{"$label":"ACTS_IN","name":"Stanislaus Nagy","type":"Role","_key":"56448","_from":"2144","_to":"35868"} +{"$label":"ACTS_IN","name":"Ludo Dekker","type":"Role","_key":"54353","_from":"2144","_to":"34869"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54338","_from":"2144","_to":"34866"} +{"$label":"ACTS_IN","name":"Cynric","type":"Role","_key":"54116","_from":"2144","_to":"34783"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"53115","_from":"2144","_to":"34369"} +{"$label":"ACTS_IN","name":"Steinbock","type":"Role","_key":"52735","_from":"2144","_to":"34223"} +{"$label":"ACTS_IN","name":"Werner Voss","type":"Role","_key":"49232","_from":"2144","_to":"32251"} +{"$label":"ACTS_IN","name":"Jack Carver","type":"Role","_key":"47528","_from":"2144","_to":"31322"} +{"$label":"ACTS_IN","name":"Eddie Shneider","type":"Role","_key":"46317","_from":"2144","_to":"30610"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"44883","_from":"2144","_to":"29855"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"43244","_from":"2144","_to":"28881"} +{"$label":"ACTS_IN","name":"Nick Keller","type":"Role","_key":"42358","_from":"2144","_to":"28358"} +{"$label":"ACTS_IN","name":"Ludo","type":"Role","_key":"41528","_from":"2144","_to":"27899"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"36743","_from":"2144","_to":"24915"} +{"$label":"ACTS_IN","name":"Nadler","type":"Role","_key":"31387","_from":"2144","_to":"21938"} +{"$label":"ACTS_IN","name":"Captain Red","type":"Role","_key":"26919","_from":"2144","_to":"19351"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"17311","_from":"2144","_to":"12952"} +{"$label":"ACTS_IN","name":"Freund in Bibliothek","type":"Role","_key":"16684","_from":"2144","_to":"12585"} +{"$label":"ACTS_IN","name":"Berti","type":"Role","_key":"16567","_from":"2144","_to":"12516"} +{"$label":"ACTS_IN","name":"Brute","type":"Role","_key":"5835","_from":"2144","_to":"4959"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4740","_from":"2144","_to":"4046"} +{"$label":"ACTS_IN","name":"Axel Feldheim","type":"Role","_key":"2462","_from":"2144","_to":"2165"} +{"$label":"DIRECTED","_key":"54352","_from":"2144","_to":"34869"} +{"$label":"DIRECTED","_key":"54337","_from":"2144","_to":"34866"} +{"$label":"DIRECTED","_key":"53121","_from":"2144","_to":"34369"} +{"$label":"DIRECTED","_key":"42356","_from":"2144","_to":"28358"} +{"$label":"DIRECTED","_key":"41527","_from":"2144","_to":"27899"} +{"$label":"ACTS_IN","name":"Bruno Reger","type":"Role","_key":"88135","_from":"2145","_to":"52300"} +{"$label":"ACTS_IN","name":"Hans Ewald - 1. Offizier","type":"Role","_key":"72947","_from":"2145","_to":"43917"} +{"$label":"ACTS_IN","name":"Faust","type":"Role","_key":"71724","_from":"2145","_to":"43418"} +{"$label":"ACTS_IN","name":"Markus Abt","type":"Role","_key":"68518","_from":"2145","_to":"42023"} +{"$label":"ACTS_IN","name":"Thomas Kr\u00f6mer","type":"Role","_key":"53707","_from":"2145","_to":"34633"} +{"$label":"ACTS_IN","name":"Laurenz Wagner","type":"Role","_key":"46684","_from":"2145","_to":"30826"} +{"$label":"ACTS_IN","name":"Peter Homann","type":"Role","_key":"45438","_from":"2145","_to":"30115"} +{"$label":"ACTS_IN","name":"Achim Delvental","type":"Role","_key":"29155","_from":"2145","_to":"20765"} +{"$label":"ACTS_IN","name":"Baba Can","type":"Role","_key":"65819","_from":"2146","_to":"40734"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"27652","_from":"2146","_to":"19817"} +{"$label":"ACTS_IN","name":"Pfeife","type":"Role","_key":"19022","_from":"2146","_to":"14038"} +{"$label":"ACTS_IN","name":"Felix Adelaar","type":"Role","_key":"69736","_from":"2147","_to":"42564"} +{"$label":"ACTS_IN","name":"Johnnie","type":"Role","_key":"64154","_from":"2147","_to":"40034"} +{"$label":"ACTS_IN","name":"Johnny Flodder","type":"Role","_key":"63056","_from":"2147","_to":"39569"} +{"$label":"ACTS_IN","name":"Vader van Klaas","type":"Role","_key":"37387","_from":"2147","_to":"25330"} +{"$label":"ACTS_IN","name":"Eric Visser","type":"Role","_key":"18241","_from":"2147","_to":"13532"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"63957","_from":"2148","_to":"39947"} +{"$label":"ACTS_IN","name":"Georg Wilsberg","type":"Role","_key":"47114","_from":"2148","_to":"31065"} +{"$label":"ACTS_IN","name":"Kriminalkommissar Volker V\u00f6kel","type":"Role","_key":"41982","_from":"2148","_to":"28132"} +{"$label":"ACTS_IN","name":"Printer","type":"Role","_key":"20522","_from":"2148","_to":"15010"} +{"$label":"ACTS_IN","name":"Klaus-Uwe Matthies","type":"Role","_key":"20518","_from":"2148","_to":"14984"} +{"$label":"ACTS_IN","name":"Frank Dabrock","type":"Role","_key":"67069","_from":"2149","_to":"41399"} +{"$label":"ACTS_IN","name":"Chef Werbeagentur","type":"Role","_key":"40676","_from":"2149","_to":"27376"} +{"$label":"ACTS_IN","name":"Heinz","type":"Role","_key":"16690","_from":"2149","_to":"12585"} +{"$label":"ACTS_IN","name":"Muhamer","type":"Role","_key":"5177","_from":"2149","_to":"4398"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4743","_from":"2149","_to":"4046"} +{"$label":"ACTS_IN","name":"Annie Becker","type":"Role","_key":"41194","_from":"2150","_to":"27720"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"19807","_from":"2150","_to":"14619"} +{"$label":"ACTS_IN","name":"Nick Aparo","type":"Role","_key":"113546","_from":"2151","_to":"66900"} +{"$label":"ACTS_IN","name":"Rhoda Tramitz","type":"Role","_key":"67629","_from":"2151","_to":"41622"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"59493","_from":"2151","_to":"37567"} +{"$label":"ACTS_IN","name":"Anke Wenger","type":"Role","_key":"47253","_from":"2151","_to":"31136"} +{"$label":"ACTS_IN","name":"Juli","type":"Role","_key":"28651","_from":"2151","_to":"20478"} +{"$label":"ACTS_IN","name":"Victoria Dickham","type":"Role","_key":"12402","_from":"2151","_to":"9715"} +{"$label":"ACTS_IN","name":"Pit","type":"Role","_key":"64965","_from":"2152","_to":"40380"} +{"$label":"ACTS_IN","name":"Agent Hartmann","type":"Role","_key":"61374","_from":"2152","_to":"38724"} +{"$label":"ACTS_IN","name":"Heinz Schaefer","type":"Role","_key":"32960","_from":"2152","_to":"22852"} +{"$label":"ACTS_IN","name":"Pritch","type":"Role","_key":"20998","_from":"2152","_to":"15363"} +{"$label":"ACTS_IN","name":"Hoffi","type":"Role","_key":"100000","_from":"2153","_to":"58997"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"58321","_from":"2153","_to":"36872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4748","_from":"2153","_to":"4046"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"52612","_from":"2154","_to":"34185"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"4737","_from":"2154","_to":"4046"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"69262","_from":"2155","_to":"42350"} +{"$label":"ACTS_IN","name":"Timo","type":"Role","_key":"66822","_from":"2155","_to":"41275"} +{"$label":"ACTS_IN","name":"Florian Thomas","type":"Role","_key":"54776","_from":"2155","_to":"35052"} +{"$label":"ACTS_IN","name":"Florian","type":"Role","_key":"54118","_from":"2155","_to":"34784"} +{"$label":"ACTS_IN","name":"Blocker","type":"Role","_key":"50190","_from":"2155","_to":"32809"} +{"$label":"ACTS_IN","name":"Dietmar Petersen","type":"Role","_key":"44827","_from":"2155","_to":"29813"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Bartsch im Alter","type":"Role","_key":"31266","_from":"2155","_to":"21872"} +{"$label":"ACTS_IN","name":"Ernst","type":"Role","_key":"14293","_from":"2155","_to":"11055"} +{"$label":"ACTS_IN","name":"Miriam Polischka","type":"Role","_key":"5441","_from":"2156","_to":"4627"} +{"$label":"ACTS_IN","name":"Roland Brenner","type":"Role","_key":"91523","_from":"2157","_to":"53951"} +{"$label":"ACTS_IN","name":"Wache","type":"Role","_key":"66600","_from":"2157","_to":"41171"} +{"$label":"ACTS_IN","name":"Pol","type":"Role","_key":"50182","_from":"2157","_to":"32805"} +{"$label":"ACTS_IN","name":"Hark Bohm","type":"Role","_key":"44390","_from":"2157","_to":"29572"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43849","_from":"2157","_to":"29272"} +{"$label":"ACTS_IN","name":"Prof. Peters","type":"Role","_key":"31147","_from":"2157","_to":"21794"} +{"$label":"ACTS_IN","name":"Dr. Hassler","type":"Role","_key":"20234","_from":"2157","_to":"14838"} +{"$label":"ACTS_IN","name":"Volker","type":"Role","_key":"19824","_from":"2157","_to":"14625"} +{"$label":"ACTS_IN","name":"Senkenberg","type":"Role","_key":"7908","_from":"2157","_to":"6551"} +{"$label":"ACTS_IN","name":"Taschner","type":"Role","_key":"3783","_from":"2157","_to":"3243"} +{"$label":"DIRECTED","_key":"31918","_from":"2157","_to":"22264"} +{"$label":"DIRECTED","_key":"31131","_from":"2157","_to":"21794"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"50199","_from":"2158","_to":"32814"} +{"$label":"ACTS_IN","name":"Maria Rieser","type":"Role","_key":"43698","_from":"2158","_to":"29186"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"42846","_from":"2158","_to":"28648"} +{"$label":"ACTS_IN","name":"Marlies","type":"Role","_key":"19006","_from":"2158","_to":"14038"} +{"$label":"ACTS_IN","name":"Berges","type":"Role","_key":"28113","_from":"2161","_to":"20150"} +{"$label":"DIRECTED","_key":"72774","_from":"2164","_to":"43840"} +{"$label":"DIRECTED","_key":"65886","_from":"2164","_to":"40768"} +{"$label":"DIRECTED","_key":"55074","_from":"2164","_to":"35179"} +{"$label":"DIRECTED","_key":"54297","_from":"2164","_to":"34856"} +{"$label":"DIRECTED","_key":"53824","_from":"2164","_to":"34675"} +{"$label":"DIRECTED","_key":"41109","_from":"2164","_to":"27664"} +{"$label":"DIRECTED","_key":"39728","_from":"2164","_to":"26850"} +{"$label":"DIRECTED","_key":"14286","_from":"2164","_to":"11039"} +{"$label":"DIRECTED","_key":"3998","_from":"2164","_to":"3412"} +{"$label":"DIRECTED","_key":"2461","_from":"2164","_to":"2165"} +{"$label":"ACTS_IN","name":"Gunter","type":"Role","_key":"2480","_from":"2180","_to":"2165"} +{"$label":"ACTS_IN","name":"Drag Queen","type":"Role","_key":"2479","_from":"2179","_to":"2165"} +{"$label":"ACTS_IN","name":"Else","type":"Role","_key":"2478","_from":"2178","_to":"2165"} +{"$label":"ACTS_IN","name":"Dr. Bertie","type":"Role","_key":"2477","_from":"2177","_to":"2165"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"2476","_from":"2176","_to":"2165"} +{"$label":"ACTS_IN","name":"Klaus Dieter","type":"Role","_key":"2475","_from":"2175","_to":"2165"} +{"$label":"ACTS_IN","name":"Lutz","type":"Role","_key":"2474","_from":"2174","_to":"2165"} +{"$label":"ACTS_IN","name":"Ruediger","type":"Role","_key":"2473","_from":"2173","_to":"2165"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"2472","_from":"2172","_to":"2165"} +{"$label":"ACTS_IN","name":"Elke Schmitt","type":"Role","_key":"2471","_from":"2171","_to":"2165"} +{"$label":"ACTS_IN","name":"Fr\u00e4nzchen","type":"Role","_key":"2470","_from":"2170","_to":"2165"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"2469","_from":"2169","_to":"2165"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"2468","_from":"2168","_to":"2165"} +{"$label":"ACTS_IN","name":"Walter aka 'Waltraut'","type":"Role","_key":"2465","_from":"2167","_to":"2165"} +{"$label":"ACTS_IN","name":"Doro Feldheim","type":"Role","_key":"2463","_from":"2166","_to":"2165"} +{"$label":"ACTS_IN","name":"Monika Krauss","type":"Role","_key":"71504","_from":"2166","_to":"43336"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"70419","_from":"2166","_to":"42879"} +{"$label":"ACTS_IN","name":"Frenzy","type":"Role","_key":"63175","_from":"2166","_to":"39627"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"60304","_from":"2166","_to":"38030"} +{"$label":"ACTS_IN","name":"Hella Moormann","type":"Role","_key":"57579","_from":"2166","_to":"36468"} +{"$label":"ACTS_IN","name":"Mary Cycowski","type":"Role","_key":"54447","_from":"2166","_to":"34914"} +{"$label":"ACTS_IN","name":"Barbara Blocksberg","type":"Role","_key":"52649","_from":"2166","_to":"34197"} +{"$label":"ACTS_IN","name":"Rita Hauser","type":"Role","_key":"52419","_from":"2166","_to":"34106"} +{"$label":"ACTS_IN","name":"Franziska Sommer","type":"Role","_key":"50882","_from":"2166","_to":"33211"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"48275","_from":"2166","_to":"31707"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"43354","_from":"2166","_to":"28964"} +{"$label":"ACTS_IN","name":"Lena Fischer ( 33 Jahre alt )","type":"Role","_key":"42881","_from":"2166","_to":"28665"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42219","_from":"2166","_to":"28267"} +{"$label":"ACTS_IN","name":"Carolin Winter","type":"Role","_key":"38272","_from":"2166","_to":"25853"} +{"$label":"ACTS_IN","name":"Signe Tschirner","type":"Role","_key":"16675","_from":"2166","_to":"12585"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"65493","_from":"2167","_to":"40600"} +{"$label":"ACTS_IN","name":"Pr\u00e4fekt","type":"Role","_key":"46287","_from":"2167","_to":"30593"} +{"$label":"ACTS_IN","name":"G\u00fcnter Dorn","type":"Role","_key":"31647","_from":"2167","_to":"22087"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Krauss","type":"Role","_key":"71507","_from":"2168","_to":"43336"} +{"$label":"ACTS_IN","name":"Hellmut Kehding","type":"Role","_key":"67404","_from":"2168","_to":"41528"} +{"$label":"ACTS_IN","name":"Knut Tischbein","type":"Role","_key":"64047","_from":"2168","_to":"39975"} +{"$label":"ACTS_IN","name":"Konrad von Seidlitz","type":"Role","_key":"62844","_from":"2168","_to":"39489"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"55076","_from":"2168","_to":"35179"} +{"$label":"ACTS_IN","name":"Erwin Bootz","type":"Role","_key":"54445","_from":"2168","_to":"34914"} +{"$label":"ACTS_IN","name":"Philip von Strauss","type":"Role","_key":"41745","_from":"2168","_to":"28008"} +{"$label":"ACTS_IN","name":"Nobel Schroeder (voice)","type":"Role","_key":"54372","_from":"2169","_to":"34873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51647","_from":"2173","_to":"33698"} +{"$label":"ACTS_IN","name":"Winfried","type":"Role","_key":"31773","_from":"2173","_to":"22172"} +{"$label":"ACTS_IN","name":"Zoepfel","type":"Role","_key":"31055","_from":"2173","_to":"21734"} +{"$label":"ACTS_IN","name":"Azubi","type":"Role","_key":"14022","_from":"2173","_to":"10867"} +{"$label":"ACTS_IN","name":"Volker Lommel","type":"Role","_key":"88308","_from":"2174","_to":"52374"} +{"$label":"ACTS_IN","name":"Wohnungsmakler","type":"Role","_key":"63895","_from":"2174","_to":"39920"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"16572","_from":"2174","_to":"12516"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"91066","_from":"2175","_to":"53732"} +{"$label":"ACTS_IN","name":"Erich A. Collin","type":"Role","_key":"54443","_from":"2175","_to":"34914"} +{"$label":"ACTS_IN","name":"G\u00fcnther Bienentreu","type":"Role","_key":"52645","_from":"2175","_to":"34194"} +{"$label":"ACTS_IN","name":"Gerd Falck","type":"Role","_key":"32958","_from":"2175","_to":"22852"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"31945","_from":"2175","_to":"22274"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31388","_from":"2175","_to":"21938"} +{"$label":"ACTS_IN","name":"Mani","type":"Role","_key":"20443","_from":"2175","_to":"14953"} +{"$label":"ACTS_IN","name":"IKEA Mann","type":"Role","_key":"13131","_from":"2175","_to":"10231"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"14295","_from":"2180","_to":"11055"} +{"$label":"DIRECTED","_key":"2482","_from":"2183","_to":"2181"} +{"$label":"DIRECTED","_key":"2481","_from":"2182","_to":"2181"} +{"$label":"DIRECTED","_key":"9123","_from":"2182","_to":"7375"} +{"$label":"DIRECTED","_key":"9122","_from":"2183","_to":"7375"} +{"$label":"ACTS_IN","name":"Bulldog, the Bruiser","type":"Role","_key":"2497","_from":"2194","_to":"2184"} +{"$label":"ACTS_IN","name":"Yen","type":"Role","_key":"2496","_from":"2193","_to":"2184"} +{"$label":"ACTS_IN","name":"Livingston Dell","type":"Role","_key":"2495","_from":"2192","_to":"2184"} +{"$label":"ACTS_IN","name":"Frank Catton","type":"Role","_key":"2493","_from":"2191","_to":"2184"} +{"$label":"ACTS_IN","name":"Basher Tarr (uncredited)","type":"Role","_key":"2492","_from":"2190","_to":"2184"} +{"$label":"ACTS_IN","name":"Saul Bloom","type":"Role","_key":"2491","_from":"2189","_to":"2184"} +{"$label":"ACTS_IN","name":"Turk Malloy","type":"Role","_key":"2490","_from":"2188","_to":"2184"} +{"$label":"ACTS_IN","name":"Virgil Malloy","type":"Role","_key":"2489","_from":"2187","_to":"2184"} +{"$label":"ACTS_IN","name":"Linus Caldwell","type":"Role","_key":"2486","_from":"2186","_to":"2184"} +{"$label":"DIRECTED","_key":"2483","_from":"2185","_to":"2184"} +{"$label":"DIRECTED","_key":"113624","_from":"2185","_to":"66956"} +{"$label":"DIRECTED","_key":"108983","_from":"2185","_to":"64405"} +{"$label":"DIRECTED","_key":"103530","_from":"2185","_to":"60902"} +{"$label":"DIRECTED","_key":"69130","_from":"2185","_to":"42292"} +{"$label":"DIRECTED","_key":"62950","_from":"2185","_to":"39530"} +{"$label":"DIRECTED","_key":"62569","_from":"2185","_to":"39374"} +{"$label":"DIRECTED","_key":"51247","_from":"2185","_to":"33420"} +{"$label":"DIRECTED","_key":"51245","_from":"2185","_to":"33419"} +{"$label":"DIRECTED","_key":"20162","_from":"2185","_to":"14795"} +{"$label":"DIRECTED","_key":"18332","_from":"2185","_to":"13602"} +{"$label":"DIRECTED","_key":"16398","_from":"2185","_to":"12416"} +{"$label":"DIRECTED","_key":"13050","_from":"2185","_to":"10178"} +{"$label":"DIRECTED","_key":"12902","_from":"2185","_to":"10063"} +{"$label":"DIRECTED","_key":"5741","_from":"2185","_to":"4882"} +{"$label":"DIRECTED","_key":"4161","_from":"2185","_to":"3539"} +{"$label":"DIRECTED","_key":"2773","_from":"2185","_to":"2405"} +{"$label":"DIRECTED","_key":"2515","_from":"2185","_to":"2210"} +{"$label":"ACTS_IN","name":"Interviewed on television","type":"Role","_key":"52455","_from":"2185","_to":"34121"} +{"$label":"ACTS_IN","name":"Charlie Dillon","type":"Role","_key":"101427","_from":"2186","_to":"59708"} +{"$label":"ACTS_IN","name":"Rudy Baylor","type":"Role","_key":"73097","_from":"2186","_to":"43974"} +{"$label":"ACTS_IN","name":"Mark Whitacre","type":"Role","_key":"69131","_from":"2186","_to":"42292"} +{"$label":"ACTS_IN","name":"Mike McDermott","type":"Role","_key":"61781","_from":"2186","_to":"38897"} +{"$label":"ACTS_IN","name":"Donny","type":"Role","_key":"53302","_from":"2186","_to":"34458"} +{"$label":"ACTS_IN","name":"Spirit","type":"Role","_key":"52067","_from":"2186","_to":"33949"} +{"$label":"ACTS_IN","name":"Life Magazine Reporter","type":"Role","_key":"47303","_from":"2186","_to":"31157"} +{"$label":"ACTS_IN","name":"Cale Tucker","type":"Role","_key":"46691","_from":"2186","_to":"30828"} +{"$label":"ACTS_IN","name":"Rannulph Junuh","type":"Role","_key":"35134","_from":"2186","_to":"23946"} +{"$label":"ACTS_IN","name":"Game Show Kandidat","type":"Role","_key":"34727","_from":"2186","_to":"23746"} +{"$label":"ACTS_IN","name":"Wilhelm Grimm","type":"Role","_key":"31744","_from":"2186","_to":"22160"} +{"$label":"ACTS_IN","name":"Jason Bourne","type":"Role","_key":"21729","_from":"2186","_to":"15873"} +{"$label":"ACTS_IN","name":"Jason Bourne","type":"Role","_key":"21720","_from":"2186","_to":"15871"} +{"$label":"ACTS_IN","name":"Jason Bourne","type":"Role","_key":"21712","_from":"2186","_to":"15869"} +{"$label":"ACTS_IN","name":"Exec. #2","type":"Role","_key":"19748","_from":"2186","_to":"14591"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"16962","_from":"2186","_to":"12732"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"15823","_from":"2186","_to":"12037"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"15563","_from":"2186","_to":"11881"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"13170","_from":"2186","_to":"10265"} +{"$label":"ACTS_IN","name":"Edward Bell Wilson","type":"Role","_key":"12200","_from":"2186","_to":"9562"} +{"$label":"ACTS_IN","name":"Tom Ripley","type":"Role","_key":"12154","_from":"2186","_to":"9529"} +{"$label":"ACTS_IN","name":"Privaate James Francis Ryan","type":"Role","_key":"10184","_from":"2186","_to":"8132"} +{"$label":"ACTS_IN","name":"Steven Sanderson","type":"Role","_key":"8604","_from":"2186","_to":"6989"} +{"$label":"ACTS_IN","name":"Will Hunting","type":"Role","_key":"5944","_from":"2186","_to":"5047"} +{"$label":"ACTS_IN","name":"Linus Caldwell","type":"Role","_key":"4145","_from":"2186","_to":"3539"} +{"$label":"ACTS_IN","name":"Bryan Woodman","type":"Role","_key":"3315","_from":"2186","_to":"2844"} +{"$label":"ACTS_IN","name":"Linus Caldwell","type":"Role","_key":"2526","_from":"2186","_to":"2210"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"111416","_from":"2187","_to":"65787"} +{"$label":"ACTS_IN","name":"Robert Kennedy, age 12-15","type":"Role","_key":"105894","_from":"2187","_to":"62344"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"103708","_from":"2187","_to":"61002"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"46988","_from":"2187","_to":"30983"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"46364","_from":"2187","_to":"30637"} +{"$label":"ACTS_IN","name":"Patrick Kenzie","type":"Role","_key":"33903","_from":"2187","_to":"23352"} +{"$label":"ACTS_IN","name":"Robert Ford","type":"Role","_key":"32201","_from":"2187","_to":"22448"} +{"$label":"ACTS_IN","name":"Little Kid","type":"Role","_key":"19745","_from":"2187","_to":"14591"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"16961","_from":"2187","_to":"12732"} +{"$label":"ACTS_IN","name":"Russel Hines","type":"Role","_key":"6897","_from":"2187","_to":"5792"} +{"$label":"ACTS_IN","name":"Morgan O'Mally","type":"Role","_key":"5948","_from":"2187","_to":"5047"} +{"$label":"ACTS_IN","name":"Virgil Malloy","type":"Role","_key":"4149","_from":"2187","_to":"3539"} +{"$label":"ACTS_IN","name":"Virgil Malloy","type":"Role","_key":"2521","_from":"2187","_to":"2210"} +{"$label":"DIRECTED","_key":"102059","_from":"2188","_to":"60044"} +{"$label":"ACTS_IN","name":"Casper","type":"Role","_key":"102057","_from":"2188","_to":"60044"} +{"$label":"ACTS_IN","name":"Charlie Tweeder","type":"Role","_key":"101503","_from":"2188","_to":"59741"} +{"$label":"ACTS_IN","name":"Richie O'Flaherty","type":"Role","_key":"98943","_from":"2188","_to":"58292"} +{"$label":"ACTS_IN","name":"Cole Younger","type":"Role","_key":"94819","_from":"2188","_to":"55841"} +{"$label":"ACTS_IN","name":"Carmine Mancuso","type":"Role","_key":"92320","_from":"2188","_to":"54480"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"73048","_from":"2188","_to":"43959"} +{"$label":"ACTS_IN","name":"Dooley","type":"Role","_key":"68850","_from":"2188","_to":"42177"} +{"$label":"ACTS_IN","name":"Tumbler","type":"Role","_key":"55511","_from":"2188","_to":"35364"} +{"$label":"ACTS_IN","name":"Turk Malloy","type":"Role","_key":"4150","_from":"2188","_to":"3539"} +{"$label":"ACTS_IN","name":"Turk Malloy","type":"Role","_key":"2522","_from":"2188","_to":"2210"} +{"$label":"DIRECTED","_key":"119825","_from":"2189","_to":"70368"} +{"$label":"DIRECTED","_key":"70944","_from":"2189","_to":"43098"} +{"$label":"DIRECTED","_key":"64719","_from":"2189","_to":"40297"} +{"$label":"DIRECTED","_key":"53865","_from":"2189","_to":"34691"} +{"$label":"DIRECTED","_key":"43558","_from":"2189","_to":"29093"} +{"$label":"ACTS_IN","name":"Tower Controller at Rancho Conejo","type":"Role","_key":"70828","_from":"2189","_to":"43041"} +{"$label":"ACTS_IN","name":"Juliets Butler\/Feldmarschall Wilfried von Kluck","type":"Role","_key":"53868","_from":"2189","_to":"34691"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34916","_from":"2189","_to":"23848"} +{"$label":"ACTS_IN","name":"Marlow Edison","type":"Role","_key":"15544","_from":"2189","_to":"11866"} +{"$label":"ACTS_IN","name":"Saul Bloom","type":"Role","_key":"4151","_from":"2189","_to":"3539"} +{"$label":"ACTS_IN","name":"Saul Bloom","type":"Role","_key":"2527","_from":"2189","_to":"2210"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"103534","_from":"2190","_to":"60904"} +{"$label":"ACTS_IN","name":"Dr. David Monroe","type":"Role","_key":"103165","_from":"2190","_to":"60682"} +{"$label":"ACTS_IN","name":"Pearl Madison","type":"Role","_key":"95279","_from":"2190","_to":"56057"} +{"$label":"ACTS_IN","name":"Samir Horn","type":"Role","_key":"93740","_from":"2190","_to":"55182"} +{"$label":"ACTS_IN","name":"Goldilocks","type":"Role","_key":"68767","_from":"2190","_to":"42134"} +{"$label":"ACTS_IN","name":"Pvt. Washburn","type":"Role","_key":"64843","_from":"2190","_to":"40337"} +{"$label":"ACTS_IN","name":"Henri Moor\u00e9","type":"Role","_key":"64294","_from":"2190","_to":"40082"} +{"$label":"ACTS_IN","name":"Emmit Reese","type":"Role","_key":"62770","_from":"2190","_to":"39456"} +{"$label":"ACTS_IN","name":"Col. James 'Rhodey' Rhodes \/ War Machine","type":"Role","_key":"61175","_from":"2190","_to":"38656"} +{"$label":"ACTS_IN","name":"Rocket","type":"Role","_key":"61084","_from":"2190","_to":"38615"} +{"$label":"ACTS_IN","name":"Agent J.T. Roberts","type":"Role","_key":"55896","_from":"2190","_to":"35554"} +{"$label":"ACTS_IN","name":"L.D.","type":"Role","_key":"53956","_from":"2190","_to":"34714"} +{"$label":"ACTS_IN","name":"Mouse Alexander","type":"Role","_key":"50106","_from":"2190","_to":"32780"} +{"$label":"ACTS_IN","name":"Ralph Waldo 'Petey' Greene","type":"Role","_key":"43966","_from":"2190","_to":"29330"} +{"$label":"ACTS_IN","name":"Cash","type":"Role","_key":"40945","_from":"2190","_to":"27547"} +{"$label":"ACTS_IN","name":"Buck Swope","type":"Role","_key":"35445","_from":"2190","_to":"24109"} +{"$label":"ACTS_IN","name":"Alan Johnson","type":"Role","_key":"20598","_from":"2190","_to":"15075"} +{"$label":"ACTS_IN","name":"Luke Graham","type":"Role","_key":"17977","_from":"2190","_to":"13369"} +{"$label":"ACTS_IN","name":"Montel Gordon","type":"Role","_key":"16408","_from":"2190","_to":"12416"} +{"$label":"ACTS_IN","name":"Det. Graham Waters","type":"Role","_key":"14522","_from":"2190","_to":"11201"} +{"$label":"ACTS_IN","name":"Maurice Miller","type":"Role","_key":"12901","_from":"2190","_to":"10063"} +{"$label":"ACTS_IN","name":"Bonny Simmons","type":"Role","_key":"9953","_from":"2190","_to":"7967"} +{"$label":"ACTS_IN","name":"Basher Tarr","type":"Role","_key":"4152","_from":"2190","_to":"3539"} +{"$label":"ACTS_IN","name":"Paul Rusesabagina","type":"Role","_key":"2995","_from":"2190","_to":"2567"} +{"$label":"ACTS_IN","name":"Basher Tarr","type":"Role","_key":"2525","_from":"2190","_to":"2210"} +{"$label":"ACTS_IN","name":"Dollar Bill","type":"Role","_key":"121307","_from":"2191","_to":"71273"} +{"$label":"ACTS_IN","name":"Flip","type":"Role","_key":"118667","_from":"2191","_to":"69770"} +{"$label":"ACTS_IN","name":"Mr. Johnson","type":"Role","_key":"116114","_from":"2191","_to":"68369"} +{"$label":"ACTS_IN","name":"Elston","type":"Role","_key":"109016","_from":"2191","_to":"64423"} +{"$label":"ACTS_IN","name":"Stan Ross","type":"Role","_key":"108204","_from":"2191","_to":"63954"} +{"$label":"ACTS_IN","name":"Uncle Vester","type":"Role","_key":"107086","_from":"2191","_to":"63144"} +{"$label":"ACTS_IN","name":"Floyd Henderson","type":"Role","_key":"101311","_from":"2191","_to":"59645"} +{"$label":"ACTS_IN","name":"Percy Jones","type":"Role","_key":"71207","_from":"2191","_to":"43215"} +{"$label":"ACTS_IN","name":"Pastor Clever","type":"Role","_key":"64744","_from":"2191","_to":"40300"} +{"$label":"ACTS_IN","name":"Zuba","type":"Role","_key":"63855","_from":"2191","_to":"39906"} +{"$label":"ACTS_IN","name":"Gin","type":"Role","_key":"61234","_from":"2191","_to":"38674"} +{"$label":"ACTS_IN","name":"Mitch Gilliam","type":"Role","_key":"56601","_from":"2191","_to":"35958"} +{"$label":"ACTS_IN","name":"Jimmy Bosley","type":"Role","_key":"54065","_from":"2191","_to":"34775"} +{"$label":"ACTS_IN","name":"Jangle Leg","type":"Role","_key":"43882","_from":"2191","_to":"29297"} +{"$label":"ACTS_IN","name":"Bobby Bolivia","type":"Role","_key":"16068","_from":"2191","_to":"12202"} +{"$label":"ACTS_IN","name":"Frank Catton","type":"Role","_key":"4147","_from":"2191","_to":"3539"} +{"$label":"ACTS_IN","name":"Frank Catton","type":"Role","_key":"2524","_from":"2191","_to":"2210"} +{"$label":"ACTS_IN","name":"Ron Funk","type":"Role","_key":"120438","_from":"2192","_to":"70751"} +{"$label":"ACTS_IN","name":"Ogie","type":"Role","_key":"65516","_from":"2192","_to":"40608"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"4305","_from":"2192","_to":"3662"} +{"$label":"ACTS_IN","name":"Livingston Dell","type":"Role","_key":"4154","_from":"2192","_to":"3539"} +{"$label":"ACTS_IN","name":"Livingston Dell","type":"Role","_key":"2528","_from":"2192","_to":"2210"} +{"$label":"ACTS_IN","name":"\u2018The Amazing\u2019 Yen","type":"Role","_key":"4153","_from":"2193","_to":"3539"} +{"$label":"ACTS_IN","name":"Yen","type":"Role","_key":"2523","_from":"2193","_to":"2210"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"2514","_from":"2209","_to":"2195"} +{"$label":"ACTS_IN","name":"Host TV","type":"Role","_key":"2513","_from":"2208","_to":"2195"} +{"$label":"ACTS_IN","name":"Cissy","type":"Role","_key":"2512","_from":"2207","_to":"2195"} +{"$label":"ACTS_IN","name":"Tinka","type":"Role","_key":"2511","_from":"2206","_to":"2195"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"2510","_from":"2205","_to":"2195"} +{"$label":"ACTS_IN","name":"Officer Allen","type":"Role","_key":"2509","_from":"2204","_to":"2195"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"2508","_from":"2203","_to":"2195"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"2507","_from":"2202","_to":"2195"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"2506","_from":"2201","_to":"2195"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"2505","_from":"2200","_to":"2195"} +{"$label":"ACTS_IN","name":"The Inventor","type":"Role","_key":"2504","_from":"2199","_to":"2195"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"2502","_from":"2198","_to":"2195"} +{"$label":"ACTS_IN","name":"Peg","type":"Role","_key":"2501","_from":"2197","_to":"2195"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"2500","_from":"2196","_to":"2195"} +{"$label":"ACTS_IN","name":"Cheryl Laine","type":"Role","_key":"112242","_from":"2196","_to":"66289"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"111424","_from":"2196","_to":"65792"} +{"$label":"ACTS_IN","name":"Death Nell","type":"Role","_key":"100194","_from":"2196","_to":"59097"} +{"$label":"ACTS_IN","name":"Amanda Grayson","type":"Role","_key":"94693","_from":"2196","_to":"55786"} +{"$label":"ACTS_IN","name":"Rina","type":"Role","_key":"94054","_from":"2196","_to":"55385"} +{"$label":"ACTS_IN","name":"Kelly La Fonda","type":"Role","_key":"93174","_from":"2196","_to":"54908"} +{"$label":"ACTS_IN","name":"Finn Dodd","type":"Role","_key":"72432","_from":"2196","_to":"43720"} +{"$label":"ACTS_IN","name":"Myra Gale Brown","type":"Role","_key":"70027","_from":"2196","_to":"42703"} +{"$label":"ACTS_IN","name":"Scarlet Smith","type":"Role","_key":"69558","_from":"2196","_to":"42473"} +{"$label":"ACTS_IN","name":"Charlotte Fielding","type":"Role","_key":"64786","_from":"2196","_to":"40314"} +{"$label":"ACTS_IN","name":"May Welland","type":"Role","_key":"63348","_from":"2196","_to":"39699"} +{"$label":"ACTS_IN","name":"Maya Larkin","type":"Role","_key":"62917","_from":"2196","_to":"39521"} +{"$label":"ACTS_IN","name":"Jo March","type":"Role","_key":"54857","_from":"2196","_to":"35089"} +{"$label":"ACTS_IN","name":"Nicola Anders","type":"Role","_key":"52963","_from":"2196","_to":"34311"} +{"$label":"ACTS_IN","name":"Annalee Call","type":"Role","_key":"48130","_from":"2196","_to":"31632"} +{"$label":"ACTS_IN","name":"Mina Murray \/ Elisabeta","type":"Role","_key":"41766","_from":"2196","_to":"28027"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"33095","_from":"2196","_to":"22929"} +{"$label":"ACTS_IN","name":"Charlotte Flax","type":"Role","_key":"32873","_from":"2196","_to":"22815"} +{"$label":"ACTS_IN","name":"Sandra Dulles","type":"Role","_key":"31961","_from":"2196","_to":"22288"} +{"$label":"ACTS_IN","name":"Lydia Deetz","type":"Role","_key":"29418","_from":"2196","_to":"20869"} +{"$label":"ACTS_IN","name":"Susanna Kaysen","type":"Role","_key":"27875","_from":"2196","_to":"19989"} +{"$label":"ACTS_IN","name":"Donna Hawthorne","type":"Role","_key":"27475","_from":"2196","_to":"19717"} +{"$label":"ACTS_IN","name":"Lelaina Pierce","type":"Role","_key":"23585","_from":"2196","_to":"17109"} +{"$label":"ACTS_IN","name":"Veronica Sawyer","type":"Role","_key":"22354","_from":"2196","_to":"16253"} +{"$label":"ACTS_IN","name":"Blanca Trueba","type":"Role","_key":"19780","_from":"2196","_to":"14606"} +{"$label":"ACTS_IN","name":"Babe Bennett","type":"Role","_key":"17580","_from":"2196","_to":"13137"} +{"$label":"ACTS_IN","name":"Corky","type":"Role","_key":"4646","_from":"2196","_to":"3965"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"97666","_from":"2197","_to":"57513"} +{"$label":"ACTS_IN","name":"Jane Grierson","type":"Role","_key":"70391","_from":"2197","_to":"42870"} +{"$label":"ACTS_IN","name":"Helen Sinclair","type":"Role","_key":"69520","_from":"2197","_to":"42465"} +{"$label":"ACTS_IN","name":"Sally Dugan","type":"Role","_key":"67956","_from":"2197","_to":"41761"} +{"$label":"ACTS_IN","name":"Louise Keeley","type":"Role","_key":"67202","_from":"2197","_to":"41451"} +{"$label":"ACTS_IN","name":"Annie Cassell","type":"Role","_key":"66929","_from":"2197","_to":"41321"} +{"$label":"ACTS_IN","name":"Dito's Mother","type":"Role","_key":"48311","_from":"2197","_to":"31726"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"45931","_from":"2197","_to":"30370"} +{"$label":"ACTS_IN","name":"Tante Bridget 'Jet' Owens","type":"Role","_key":"43386","_from":"2197","_to":"28988"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"36073","_from":"2197","_to":"24486"} +{"$label":"ACTS_IN","name":"Vi Moore","type":"Role","_key":"15533","_from":"2197","_to":"11863"} +{"$label":"ACTS_IN","name":"Helen Buckman Lampkin Bowman","type":"Role","_key":"13733","_from":"2197","_to":"10659"} +{"$label":"ACTS_IN","name":"Lucy Emerson","type":"Role","_key":"13694","_from":"2197","_to":"10632"} +{"$label":"ACTS_IN","name":"Diane Booker","type":"Role","_key":"6516","_from":"2197","_to":"5515"} +{"$label":"ACTS_IN","name":"Sheldon S. Kompett D.D.S.","type":"Role","_key":"121254","_from":"2198","_to":"71228"} +{"$label":"ACTS_IN","name":"Flagg Purdy","type":"Role","_key":"116556","_from":"2198","_to":"68610"} +{"$label":"ACTS_IN","name":"Murray Samuel Abromowitz","type":"Role","_key":"101349","_from":"2198","_to":"59663"} +{"$label":"ACTS_IN","name":"Arnie Klein","type":"Role","_key":"99556","_from":"2198","_to":"58688"} +{"$label":"ACTS_IN","name":"Bud Newman","type":"Role","_key":"96248","_from":"2198","_to":"56561"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"92492","_from":"2198","_to":"54598"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"71397","_from":"2198","_to":"43300"} +{"$label":"ACTS_IN","name":"Insp. Jacques Clouseau","type":"Role","_key":"70765","_from":"2198","_to":"43034"} +{"$label":"ACTS_IN","name":"Roat \/ Roat Jr. \/ Roat Sr.","type":"Role","_key":"68535","_from":"2198","_to":"42026"} +{"$label":"ACTS_IN","name":"Captain John Yossarian, (Bombardier)","type":"Role","_key":"62819","_from":"2198","_to":"39476"} +{"$label":"ACTS_IN","name":"A. 'Peevy' Peabody","type":"Role","_key":"61963","_from":"2198","_to":"39003"} +{"$label":"ACTS_IN","name":"Schmendrick (voice)","type":"Role","_key":"61249","_from":"2198","_to":"38678"} +{"$label":"ACTS_IN","name":"Arlin Forester","type":"Role","_key":"56310","_from":"2198","_to":"35776"} +{"$label":"ACTS_IN","name":"George Aaronow","type":"Role","_key":"54303","_from":"2198","_to":"34857"} +{"$label":"ACTS_IN","name":"Senator Hawkins","type":"Role","_key":"36020","_from":"2198","_to":"24454"} +{"$label":"ACTS_IN","name":"Herb Lee","type":"Role","_key":"31958","_from":"2198","_to":"22288"} +{"$label":"ACTS_IN","name":"Max Frenkfurter","type":"Role","_key":"20085","_from":"2198","_to":"14765"} +{"$label":"ACTS_IN","name":"Detective Hugo","type":"Role","_key":"9202","_from":"2198","_to":"7439"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"9110","_from":"2198","_to":"7360"} +{"$label":"ACTS_IN","name":"Oupa Decker","type":"Role","_key":"117541","_from":"2199","_to":"69109"} +{"$label":"ACTS_IN","name":"Prof. Henry Jarrod","type":"Role","_key":"116693","_from":"2199","_to":"68695"} +{"$label":"ACTS_IN","name":"Dr. Anton Phibes","type":"Role","_key":"115552","_from":"2199","_to":"68028"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114776","_from":"2199","_to":"67605"} +{"$label":"ACTS_IN","name":"Dr. Anton Phibes","type":"Role","_key":"114488","_from":"2199","_to":"67443"} +{"$label":"ACTS_IN","name":"Russell Quinton","type":"Role","_key":"113455","_from":"2199","_to":"66843"} +{"$label":"ACTS_IN","name":"Sir Walter Raleigh","type":"Role","_key":"110415","_from":"2199","_to":"65234"} +{"$label":"ACTS_IN","name":"Frederick Loren","type":"Role","_key":"106135","_from":"2199","_to":"62509"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Delambre","type":"Role","_key":"72149","_from":"2199","_to":"43608"} +{"$label":"ACTS_IN","name":"Professor Ratigan","type":"Role","_key":"59148","_from":"2199","_to":"37343"} +{"$label":"ACTS_IN","name":"(in \"The Bribe\") (archive footage)","type":"Role","_key":"53887","_from":"2199","_to":"34691"} +{"$label":"ACTS_IN","name":"Baka","type":"Role","_key":"44960","_from":"2199","_to":"29886"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"34114","_from":"2199","_to":"23436"} +{"$label":"ACTS_IN","name":"Shelby Carpenter","type":"Role","_key":"16813","_from":"2199","_to":"12664"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"14798","_from":"2199","_to":"11383"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"109196","_from":"2200","_to":"64516"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"109114","_from":"2200","_to":"64469"} +{"$label":"ACTS_IN","name":"Helen Holt","type":"Role","_key":"91265","_from":"2200","_to":"53818"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"63324","_from":"2200","_to":"39696"} +{"$label":"ACTS_IN","name":"Margie Ross","type":"Role","_key":"63191","_from":"2200","_to":"39631"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"40664","_from":"2200","_to":"27371"} +{"$label":"ACTS_IN","name":"Maggie Gresham","type":"Role","_key":"37736","_from":"2200","_to":"25595"} +{"$label":"ACTS_IN","name":"Mrs. Burden","type":"Role","_key":"15193","_from":"2200","_to":"11636"} +{"$label":"ACTS_IN","name":"Nurse Angela","type":"Role","_key":"15167","_from":"2200","_to":"11627"} +{"$label":"ACTS_IN","name":"Nick Szalinski","type":"Role","_key":"68204","_from":"2201","_to":"41885"} +{"$label":"ACTS_IN","name":"Nick Szalinski","type":"Role","_key":"53310","_from":"2201","_to":"34466"} +{"$label":"ACTS_IN","name":"Barbara Schlesinger","type":"Role","_key":"65694","_from":"2202","_to":"40690"} +{"$label":"ACTS_IN","name":"Ida Sinclair","type":"Role","_key":"45295","_from":"2202","_to":"30044"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"17587","_from":"2202","_to":"13137"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"5747","_from":"2202","_to":"4882"} +{"$label":"ACTS_IN","name":"Betty McAllister","type":"Role","_key":"2590","_from":"2202","_to":"2259"} +{"$label":"ACTS_IN","name":"Aunt Gigi","type":"Role","_key":"109206","_from":"2203","_to":"64519"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"66563","_from":"2203","_to":"41149"} +{"$label":"ACTS_IN","name":"Sharpling","type":"Role","_key":"65766","_from":"2203","_to":"40707"} +{"$label":"ACTS_IN","name":"Marilyn Mooney","type":"Role","_key":"56365","_from":"2203","_to":"35817"} +{"$label":"ACTS_IN","name":"Claudia Prinsinger","type":"Role","_key":"55982","_from":"2203","_to":"35588"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"22343","_from":"2203","_to":"16249"} +{"$label":"ACTS_IN","name":"Mr. Armstrong","type":"Role","_key":"121303","_from":"2204","_to":"71273"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"3496","_from":"2205","_to":"2983"} +{"$label":"ACTS_IN","name":"Jane Folger","type":"Role","_key":"57235","_from":"2206","_to":"36299"} +{"$label":"ACTS_IN","name":"Hakim","type":"Role","_key":"117195","_from":"2208","_to":"68941"} +{"$label":"ACTS_IN","name":"Emperor of Mars","type":"Role","_key":"28820","_from":"2208","_to":"20592"} +{"$label":"ACTS_IN","name":"Pines","type":"Role","_key":"115592","_from":"2209","_to":"68049"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"102501","_from":"2209","_to":"60305"} +{"$label":"ACTS_IN","name":"Frank McMahon","type":"Role","_key":"55807","_from":"2209","_to":"35512"} +{"$label":"ACTS_IN","name":"Gaspar LeMarque","type":"Role","_key":"2536","_from":"2217","_to":"2210"} +{"$label":"ACTS_IN","name":"Molly Star\/ Mrs. Caldwell","type":"Role","_key":"2535","_from":"2216","_to":"2210"} +{"$label":"ACTS_IN","name":"Roman Nagel","type":"Role","_key":"2533","_from":"2215","_to":"2210"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Toulour","type":"Role","_key":"2532","_from":"2214","_to":"2210"} +{"$label":"ACTS_IN","name":"van der Woude","type":"Role","_key":"2531","_from":"2213","_to":"2210"} +{"$label":"ACTS_IN","name":"Matsui","type":"Role","_key":"2530","_from":"2212","_to":"2210"} +{"$label":"ACTS_IN","name":"Isabel Lahiri","type":"Role","_key":"2518","_from":"2211","_to":"2210"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"117374","_from":"2211","_to":"69039"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"100119","_from":"2211","_to":"59057"} +{"$label":"ACTS_IN","name":"Mary McGarvie","type":"Role","_key":"97393","_from":"2211","_to":"57355"} +{"$label":"ACTS_IN","name":"Marilyn Rexroth","type":"Role","_key":"71872","_from":"2211","_to":"43490"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"71083","_from":"2211","_to":"43160"} +{"$label":"ACTS_IN","name":"Gwen Harrison","type":"Role","_key":"70040","_from":"2211","_to":"42709"} +{"$label":"ACTS_IN","name":"Elena Montero \/ Elena Murrieta","type":"Role","_key":"53228","_from":"2211","_to":"34424"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"28394","_from":"2211","_to":"20316"} +{"$label":"ACTS_IN","name":"Isabella Paradine","type":"Role","_key":"22773","_from":"2211","_to":"16516"} +{"$label":"ACTS_IN","name":"Helena Ayala","type":"Role","_key":"16405","_from":"2211","_to":"12416"} +{"$label":"ACTS_IN","name":"Virginia Baker","type":"Role","_key":"15914","_from":"2211","_to":"12114"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"14718","_from":"2211","_to":"11325"} +{"$label":"ACTS_IN","name":"Velma Kelly","type":"Role","_key":"13925","_from":"2211","_to":"10805"} +{"$label":"ACTS_IN","name":"Amelia Warren","type":"Role","_key":"7133","_from":"2211","_to":"5965"} +{"$label":"ACTS_IN","name":"Ticket Seller","type":"Role","_key":"118776","_from":"2212","_to":"69835"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"112277","_from":"2212","_to":"66298"} +{"$label":"ACTS_IN","name":"Dr. Bill Lintz","type":"Role","_key":"103451","_from":"2212","_to":"60850"} +{"$label":"ACTS_IN","name":"New York Burgher","type":"Role","_key":"91106","_from":"2212","_to":"53749"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"89520","_from":"2212","_to":"52992"} +{"$label":"ACTS_IN","name":"Charlie McManus","type":"Role","_key":"68057","_from":"2212","_to":"41817"} +{"$label":"ACTS_IN","name":"Falstaff","type":"Role","_key":"65157","_from":"2212","_to":"40473"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"59263","_from":"2212","_to":"37434"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"58883","_from":"2212","_to":"37189"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"45850","_from":"2212","_to":"30311"} +{"$label":"ACTS_IN","name":"Mr. Hyde ( voice )","type":"Role","_key":"45795","_from":"2212","_to":"30298"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"30855","_from":"2212","_to":"21625"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"30119","_from":"2212","_to":"21220"} +{"$label":"ACTS_IN","name":"Sergeant Peter Godley","type":"Role","_key":"9011","_from":"2212","_to":"7296"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"9000","_from":"2212","_to":"7294"} +{"$label":"ACTS_IN","name":"Valentin Dmitrovich Zukovsky","type":"Role","_key":"8584","_from":"2212","_to":"6980"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"8107","_from":"2212","_to":"6687"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"8086","_from":"2212","_to":"6682"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"8067","_from":"2212","_to":"6676"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"8048","_from":"2212","_to":"6665"} +{"$label":"ACTS_IN","name":"Rubeus Hagrid","type":"Role","_key":"8020","_from":"2212","_to":"6646"} +{"$label":"ACTS_IN","name":"King Alcinous","type":"Role","_key":"111713","_from":"2213","_to":"65950"} +{"$label":"ACTS_IN","name":"Anton Felix Schindler","type":"Role","_key":"95978","_from":"2213","_to":"56429"} +{"$label":"ACTS_IN","name":"Gaspar Voorsboch","type":"Role","_key":"69950","_from":"2213","_to":"42676"} +{"$label":"ACTS_IN","name":"George Frideric Handel","type":"Role","_key":"66949","_from":"2213","_to":"41331"} +{"$label":"ACTS_IN","name":"Herbert Woodruff","type":"Role","_key":"62643","_from":"2213","_to":"39408"} +{"$label":"ACTS_IN","name":"Gianni Franco","type":"Role","_key":"51173","_from":"2213","_to":"33379"} +{"$label":"ACTS_IN","name":"Dr. Charles Nichols","type":"Role","_key":"37546","_from":"2213","_to":"25451"} +{"$label":"ACTS_IN","name":"Bizzlebek","type":"Role","_key":"20168","_from":"2213","_to":"14795"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"12750","_from":"2213","_to":"9952"} +{"$label":"ACTS_IN","name":"General Georgi Koskov","type":"Role","_key":"8551","_from":"2213","_to":"6967"} +{"$label":"ACTS_IN","name":"Guus LeJeune","type":"Role","_key":"7527","_from":"2213","_to":"6266"} +{"$label":"DIRECTED","_key":"12746","_from":"2213","_to":"9952"} +{"$label":"ACTS_IN","name":"Tony Merguez (voix)","type":"Role","_key":"118727","_from":"2214","_to":"69812"} +{"$label":"ACTS_IN","name":"Jacques Mesrine","type":"Role","_key":"104125","_from":"2214","_to":"61260"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"96160","_from":"2214","_to":"56513"} +{"$label":"ACTS_IN","name":"Jacques Mesrine","type":"Role","_key":"95604","_from":"2214","_to":"56238"} +{"$label":"ACTS_IN","name":"Brisseau","type":"Role","_key":"90801","_from":"2214","_to":"53582"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"90087","_from":"2214","_to":"53280"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"63584","_from":"2214","_to":"39786"} +{"$label":"ACTS_IN","name":"Yann Le Pentrec aka Dobermann","type":"Role","_key":"62717","_from":"2214","_to":"39431"} +{"$label":"ACTS_IN","name":"Gilles de Rais","type":"Role","_key":"59901","_from":"2214","_to":"37823"} +{"$label":"ACTS_IN","name":"Mike Blueberry","type":"Role","_key":"59876","_from":"2214","_to":"37818"} +{"$label":"ACTS_IN","name":"LaRoche","type":"Role","_key":"51931","_from":"2214","_to":"33872"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois de Morangias","type":"Role","_key":"42872","_from":"2214","_to":"28662"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"42229","_from":"2214","_to":"28283"} +{"$label":"ACTS_IN","name":"D\u00e9d\u00e9","type":"Role","_key":"32685","_from":"2214","_to":"22701"} +{"$label":"ACTS_IN","name":"Duc d'Anjou","type":"Role","_key":"32263","_from":"2214","_to":"22475"} +{"$label":"ACTS_IN","name":"Max Kerkerian","type":"Role","_key":"29165","_from":"2214","_to":"20772"} +{"$label":"ACTS_IN","name":"Kirill","type":"Role","_key":"19686","_from":"2214","_to":"14558"} +{"$label":"ACTS_IN","name":"Alexei","type":"Role","_key":"18136","_from":"2214","_to":"13461"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"11572","_from":"2214","_to":"9092"} +{"$label":"ACTS_IN","name":"Monsieur Hood (voice)","type":"Role","_key":"9521","_from":"2214","_to":"7675"} +{"$label":"ACTS_IN","name":"Vinz","type":"Role","_key":"5155","_from":"2214","_to":"4384"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois \u201cThe Nightfox\u201d Toulour","type":"Role","_key":"4158","_from":"2214","_to":"3539"} +{"$label":"ACTS_IN","name":"It","type":"Role","_key":"110095","_from":"2215","_to":"65055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108137","_from":"2215","_to":"63908"} +{"$label":"ACTS_IN","name":"Dr. Schadenfreude","type":"Role","_key":"99279","_from":"2215","_to":"58502"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95346","_from":"2215","_to":"56097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95344","_from":"2215","_to":"56095"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95343","_from":"2215","_to":"56094"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95341","_from":"2215","_to":"56092"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95340","_from":"2215","_to":"56091"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95338","_from":"2215","_to":"56089"} +{"$label":"ACTS_IN","name":"Prosit","type":"Role","_key":"59887","_from":"2215","_to":"37818"} +{"$label":"ACTS_IN","name":"Nigel","type":"Role","_key":"57806","_from":"2215","_to":"36591"} +{"$label":"ACTS_IN","name":"Bailey","type":"Role","_key":"53105","_from":"2215","_to":"34364"} +{"$label":"ACTS_IN","name":"Professor Bedlam","type":"Role","_key":"31950","_from":"2215","_to":"22284"} +{"$label":"ACTS_IN","name":"Erich Fellgiebel","type":"Role","_key":"19699","_from":"2215","_to":"14564"} +{"$label":"ACTS_IN","name":"Jerry Devine","type":"Role","_key":"15628","_from":"2215","_to":"11924"} +{"$label":"ACTS_IN","name":"Roman Nagel","type":"Role","_key":"4157","_from":"2215","_to":"3539"} +{"$label":"ACTS_IN","name":"President Elect Allison Taylor","type":"Role","_key":"97986","_from":"2216","_to":"57709"} +{"$label":"ACTS_IN","name":"Grandma 'Buggy' Abbott","type":"Role","_key":"54833","_from":"2216","_to":"35080"} +{"$label":"ACTS_IN","name":"Eleanor Roosevelt","type":"Role","_key":"51479","_from":"2216","_to":"33572"} +{"$label":"ACTS_IN","name":"Mrs. Clack","type":"Role","_key":"45242","_from":"2216","_to":"30028"} +{"$label":"ACTS_IN","name":"Officer Paski","type":"Role","_key":"22694","_from":"2216","_to":"16465"} +{"$label":"ACTS_IN","name":"Cindy Montgomery","type":"Role","_key":"18445","_from":"2216","_to":"13664"} +{"$label":"ACTS_IN","name":"Liz Hammond","type":"Role","_key":"6518","_from":"2216","_to":"5515"} +{"$label":"ACTS_IN","name":"Mick Rice","type":"Role","_key":"118182","_from":"2217","_to":"69451"} +{"$label":"ACTS_IN","name":"Daddy Oliver Warbucks","type":"Role","_key":"105741","_from":"2217","_to":"62249"} +{"$label":"ACTS_IN","name":"John Newton","type":"Role","_key":"103439","_from":"2217","_to":"60841"} +{"$label":"ACTS_IN","name":"Ebenezer Scrooge","type":"Role","_key":"96226","_from":"2217","_to":"56558"} +{"$label":"ACTS_IN","name":"Kilgore Trout","type":"Role","_key":"89752","_from":"2217","_to":"53126"} +{"$label":"ACTS_IN","name":"Dewey Wilson","type":"Role","_key":"65265","_from":"2217","_to":"40513"} +{"$label":"ACTS_IN","name":"Uncle Henry Skinner","type":"Role","_key":"56048","_from":"2217","_to":"35624"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"47557","_from":"2217","_to":"31338"} +{"$label":"ACTS_IN","name":"Tom Jones","type":"Role","_key":"39403","_from":"2217","_to":"26641"} +{"$label":"ACTS_IN","name":"Mark Wallace","type":"Role","_key":"39364","_from":"2217","_to":"26621"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"29900","_from":"2217","_to":"21143"} +{"$label":"ACTS_IN","name":"Finis Everglot (voice)","type":"Role","_key":"28972","_from":"2217","_to":"20688"} +{"$label":"ACTS_IN","name":"Russian Soldier","type":"Role","_key":"24943","_from":"2217","_to":"18024"} +{"$label":"ACTS_IN","name":"Dr. Albert Hirsch","type":"Role","_key":"21737","_from":"2217","_to":"15873"} +{"$label":"ACTS_IN","name":"Older Ed Bloom","type":"Role","_key":"7043","_from":"2217","_to":"5901"} +{"$label":"ACTS_IN","name":"Ed Masry","type":"Role","_key":"5745","_from":"2217","_to":"4882"} +{"$label":"ACTS_IN","name":"Liam 'Leo' O'Bannon","type":"Role","_key":"4895","_from":"2217","_to":"4175"} +{"$label":"ACTS_IN","name":"Cat","type":"Role","_key":"2552","_from":"2234","_to":"2218"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"2551","_from":"2233","_to":"2218"} +{"$label":"ACTS_IN","name":"Sid Arbuck","type":"Role","_key":"2550","_from":"2232","_to":"2218"} +{"$label":"ACTS_IN","name":"Rusty Trawler","type":"Role","_key":"2549","_from":"2231","_to":"2218"} +{"$label":"ACTS_IN","name":"Dancer at nightclub","type":"Role","_key":"2548","_from":"2230","_to":"2218"} +{"$label":"ACTS_IN","name":"Mag Wildwood","type":"Role","_key":"2547","_from":"2229","_to":"2218"} +{"$label":"ACTS_IN","name":"Sally Tomato","type":"Role","_key":"2546","_from":"2228","_to":"2218"} +{"$label":"ACTS_IN","name":"Tiffany's salesman","type":"Role","_key":"2545","_from":"2227","_to":"2218"} +{"$label":"ACTS_IN","name":"Jos\u00e9 da Silva Pereira","type":"Role","_key":"2544","_from":"2226","_to":"2218"} +{"$label":"ACTS_IN","name":"Mr. Yunioshi","type":"Role","_key":"2543","_from":"2225","_to":"2218"} +{"$label":"ACTS_IN","name":"O. J. Berman","type":"Role","_key":"2542","_from":"2224","_to":"2218"} +{"$label":"ACTS_IN","name":"Doc Golightly","type":"Role","_key":"2541","_from":"2223","_to":"2218"} +{"$label":"ACTS_IN","name":"2-E (Mrs. Failenson)","type":"Role","_key":"2540","_from":"2222","_to":"2218"} +{"$label":"ACTS_IN","name":"Paul \u201eFred\u201c Varjak","type":"Role","_key":"2539","_from":"2221","_to":"2218"} +{"$label":"ACTS_IN","name":"Holly Golightly","type":"Role","_key":"2538","_from":"2220","_to":"2218"} +{"$label":"DIRECTED","_key":"2537","_from":"2219","_to":"2218"} +{"$label":"DIRECTED","_key":"90614","_from":"2219","_to":"53513"} +{"$label":"DIRECTED","_key":"89750","_from":"2219","_to":"53125"} +{"$label":"DIRECTED","_key":"89136","_from":"2219","_to":"52801"} +{"$label":"DIRECTED","_key":"72315","_from":"2219","_to":"43680"} +{"$label":"DIRECTED","_key":"70786","_from":"2219","_to":"43040"} +{"$label":"DIRECTED","_key":"65831","_from":"2219","_to":"40743"} +{"$label":"DIRECTED","_key":"62125","_from":"2219","_to":"39122"} +{"$label":"DIRECTED","_key":"55818","_from":"2219","_to":"35527"} +{"$label":"DIRECTED","_key":"55376","_from":"2219","_to":"35299"} +{"$label":"DIRECTED","_key":"52283","_from":"2219","_to":"34041"} +{"$label":"DIRECTED","_key":"41612","_from":"2219","_to":"27943"} +{"$label":"DIRECTED","_key":"14131","_from":"2219","_to":"10944"} +{"$label":"DIRECTED","_key":"11172","_from":"2219","_to":"8842"} +{"$label":"DIRECTED","_key":"10907","_from":"2219","_to":"8647"} +{"$label":"ACTS_IN","name":"Ariane Chavasse \/ Thin Girl","type":"Role","_key":"115755","_from":"2220","_to":"68155"} +{"$label":"ACTS_IN","name":"Jo Stockton","type":"Role","_key":"93931","_from":"2220","_to":"55315"} +{"$label":"ACTS_IN","name":"Natasha Rostova","type":"Role","_key":"71676","_from":"2220","_to":"43395"} +{"$label":"ACTS_IN","name":"Hap","type":"Role","_key":"69303","_from":"2220","_to":"42371"} +{"$label":"ACTS_IN","name":"Susy Hendrix","type":"Role","_key":"68534","_from":"2220","_to":"42026"} +{"$label":"ACTS_IN","name":"Eliza Doolittle","type":"Role","_key":"67961","_from":"2220","_to":"41762"} +{"$label":"ACTS_IN","name":"Lady Marian","type":"Role","_key":"65787","_from":"2220","_to":"40718"} +{"$label":"ACTS_IN","name":"Rachel Zachary","type":"Role","_key":"44532","_from":"2220","_to":"29653"} +{"$label":"ACTS_IN","name":"Sabrina Fairchild","type":"Role","_key":"44346","_from":"2220","_to":"29551"} +{"$label":"ACTS_IN","name":"Joanna Wallace","type":"Role","_key":"39363","_from":"2220","_to":"26621"} +{"$label":"ACTS_IN","name":"Regina Lampert","type":"Role","_key":"34125","_from":"2220","_to":"23444"} +{"$label":"ACTS_IN","name":"Elizabeth Roffe","type":"Role","_key":"24954","_from":"2220","_to":"18031"} +{"$label":"ACTS_IN","name":"Nicole Bonnet","type":"Role","_key":"24849","_from":"2220","_to":"17972"} +{"$label":"ACTS_IN","name":"Princess Ann","type":"Role","_key":"9468","_from":"2220","_to":"7643"} +{"$label":"ACTS_IN","name":"Lt. Bruno Stachel","type":"Role","_key":"121038","_from":"2221","_to":"71083"} +{"$label":"ACTS_IN","name":"Zeb Rawlings","type":"Role","_key":"72616","_from":"2221","_to":"43773"} +{"$label":"ACTS_IN","name":"Reno Davis","type":"Role","_key":"34881","_from":"2221","_to":"23838"} +{"$label":"ACTS_IN","name":"Cpl. Chase","type":"Role","_key":"24937","_from":"2221","_to":"18024"} +{"$label":"ACTS_IN","name":"Margie","type":"Role","_key":"120611","_from":"2222","_to":"70829"} +{"$label":"ACTS_IN","name":"Jewel Mae \u201eCookie\u201c Orcutt","type":"Role","_key":"54037","_from":"2222","_to":"34762"} +{"$label":"ACTS_IN","name":"Joan Ross","type":"Role","_key":"31878","_from":"2222","_to":"22241"} +{"$label":"ACTS_IN","name":"Helen Benson","type":"Role","_key":"9788","_from":"2222","_to":"7848"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"118864","_from":"2224","_to":"69863"} +{"$label":"ACTS_IN","name":"Prof. Ruzinsky","type":"Role","_key":"115247","_from":"2224","_to":"67870"} +{"$label":"ACTS_IN","name":"Mr. Beamish","type":"Role","_key":"70651","_from":"2224","_to":"42993"} +{"$label":"ACTS_IN","name":"Police Chief Mark Dutton","type":"Role","_key":"69282","_from":"2224","_to":"42356"} +{"$label":"ACTS_IN","name":"Admiral Husband E. Kimmel","type":"Role","_key":"68256","_from":"2224","_to":"41908"} +{"$label":"ACTS_IN","name":"Mr. Merriweather","type":"Role","_key":"67503","_from":"2224","_to":"41571"} +{"$label":"ACTS_IN","name":"Colonel Cathcart (CO, 256th Squadron)","type":"Role","_key":"62820","_from":"2224","_to":"39476"} +{"$label":"ACTS_IN","name":"Mr. Green - Harold Longman","type":"Role","_key":"49116","_from":"2224","_to":"32182"} +{"$label":"ACTS_IN","name":"Richard Manley","type":"Role","_key":"45489","_from":"2224","_to":"30136"} +{"$label":"ACTS_IN","name":"Sam McKeever","type":"Role","_key":"45047","_from":"2224","_to":"29922"} +{"$label":"ACTS_IN","name":"Turrisi","type":"Role","_key":"31393","_from":"2224","_to":"21940"} +{"$label":"ACTS_IN","name":"Signor Bianchi","type":"Role","_key":"29902","_from":"2224","_to":"21143"} +{"$label":"ACTS_IN","name":"Frather Howard","type":"Role","_key":"18314","_from":"2224","_to":"13585"} +{"$label":"ACTS_IN","name":"Howard Simons","type":"Role","_key":"10609","_from":"2224","_to":"8423"} +{"$label":"ACTS_IN","name":"Det. Milton Arbogast","type":"Role","_key":"6434","_from":"2224","_to":"5444"} +{"$label":"ACTS_IN","name":"Juror 1","type":"Role","_key":"4972","_from":"2224","_to":"4235"} +{"$label":"ACTS_IN","name":"Mi Taylor","type":"Role","_key":"113446","_from":"2225","_to":"66838"} +{"$label":"ACTS_IN","name":"Henry Dailey","type":"Role","_key":"111700","_from":"2225","_to":"65947"} +{"$label":"ACTS_IN","name":"Dan Troop","type":"Role","_key":"109372","_from":"2225","_to":"64615"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"95958","_from":"2225","_to":"56423"} +{"$label":"ACTS_IN","name":"Kris Kingle \/ Santa Claus","type":"Role","_key":"94305","_from":"2225","_to":"55537"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"94293","_from":"2225","_to":"55531"} +{"$label":"ACTS_IN","name":"Erik's Grandfather","type":"Role","_key":"72240","_from":"2225","_to":"43649"} +{"$label":"ACTS_IN","name":"Ding 'Dingy' Bell","type":"Role","_key":"70791","_from":"2225","_to":"43041"} +{"$label":"ACTS_IN","name":"Mr. Cherrywood (voice)","type":"Role","_key":"68751","_from":"2225","_to":"42127"} +{"$label":"ACTS_IN","name":"Lampie","type":"Role","_key":"67968","_from":"2225","_to":"41763"} +{"$label":"ACTS_IN","name":"Adult Tod (voice)","type":"Role","_key":"66914","_from":"2225","_to":"41314"} +{"$label":"ACTS_IN","name":"Fugly Floom, the Speechless Man in Hotel","type":"Role","_key":"53928","_from":"2225","_to":"34703"} +{"$label":"ACTS_IN","name":"Kaa","type":"Role","_key":"14121","_from":"2225","_to":"10934"} +{"$label":"ACTS_IN","name":"Giorgio's friend (as Jos\u00e9 De Villalonga)","type":"Role","_key":"118791","_from":"2226","_to":"69840"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33768","_from":"2226","_to":"23279"} +{"$label":"ACTS_IN","name":"Raoul Flores","type":"Role","_key":"22006","_from":"2226","_to":"16059"} +{"$label":"ACTS_IN","name":"Le photographe","type":"Role","_key":"21282","_from":"2226","_to":"15565"} +{"$label":"ACTS_IN","name":"Monsieur X","type":"Role","_key":"115757","_from":"2227","_to":"68155"} +{"$label":"ACTS_IN","name":"Mr. O'Daniel","type":"Role","_key":"26101","_from":"2227","_to":"18751"} +{"$label":"ACTS_IN","name":"Sam Thorpe","type":"Role","_key":"15541","_from":"2227","_to":"11866"} +{"$label":"ACTS_IN","name":"Sen. Thomas Jordan","type":"Role","_key":"11612","_from":"2227","_to":"9116"} +{"$label":"ACTS_IN","name":"Pancho Villa","type":"Role","_key":"15658","_from":"2228","_to":"11939"} +{"$label":"ACTS_IN","name":"Fred Hurley","type":"Role","_key":"104100","_from":"2231","_to":"61243"} +{"$label":"ACTS_IN","name":"Breezy","type":"Role","_key":"43900","_from":"2231","_to":"29302"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"2563","_from":"2240","_to":"2235"} +{"$label":"ACTS_IN","name":"Match","type":"Role","_key":"2562","_from":"2239","_to":"2235"} +{"$label":"ACTS_IN","name":"3-D","type":"Role","_key":"2561","_from":"2238","_to":"2235"} +{"$label":"ACTS_IN","name":"George McFly","type":"Role","_key":"2560","_from":"2237","_to":"2235"} +{"$label":"ACTS_IN","name":"Jennifer Parker\/McFly","type":"Role","_key":"2558","_from":"2236","_to":"2235"} +{"$label":"ACTS_IN","name":"Lindsay Bowen","type":"Role","_key":"104957","_from":"2236","_to":"61751"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"104328","_from":"2236","_to":"61380"} +{"$label":"ACTS_IN","name":"Chris Parker","type":"Role","_key":"99824","_from":"2236","_to":"58883"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"91929","_from":"2236","_to":"54232"} +{"$label":"ACTS_IN","name":"Elisabeth Shue","type":"Role","_key":"90674","_from":"2236","_to":"53527"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"88590","_from":"2236","_to":"52495"} +{"$label":"ACTS_IN","name":"Mrs. McCormick","type":"Role","_key":"68317","_from":"2236","_to":"41932"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"67854","_from":"2236","_to":"41692"} +{"$label":"ACTS_IN","name":"Emma Russell","type":"Role","_key":"59268","_from":"2236","_to":"37436"} +{"$label":"ACTS_IN","name":"Linda McKay","type":"Role","_key":"53490","_from":"2236","_to":"34546"} +{"$label":"ACTS_IN","name":"Jordan Mooney","type":"Role","_key":"47119","_from":"2236","_to":"31067"} +{"$label":"ACTS_IN","name":"Fay","type":"Role","_key":"22347","_from":"2236","_to":"16249"} +{"$label":"ACTS_IN","name":"Ali Mills","type":"Role","_key":"16275","_from":"2236","_to":"12340"} +{"$label":"ACTS_IN","name":"Sera","type":"Role","_key":"5594","_from":"2236","_to":"4770"} +{"$label":"ACTS_IN","name":"Jennifer Parker","type":"Role","_key":"2912","_from":"2236","_to":"2506"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"13184","_from":"2237","_to":"10272"} +{"$label":"ACTS_IN","name":"George McFly","type":"Role","_key":"2922","_from":"2237","_to":"2506"} +{"$label":"ACTS_IN","name":"Don Carney","type":"Role","_key":"119968","_from":"2238","_to":"70458"} +{"$label":"ACTS_IN","name":"Young Bobby Bartellemeo","type":"Role","_key":"118936","_from":"2238","_to":"69895"} +{"$label":"ACTS_IN","name":"Jerry Mitchell","type":"Role","_key":"94001","_from":"2238","_to":"55360"} +{"$label":"ACTS_IN","name":"Curley","type":"Role","_key":"55004","_from":"2238","_to":"35155"} +{"$label":"ACTS_IN","name":"Billy Tessio","type":"Role","_key":"3396","_from":"2238","_to":"2903"} +{"$label":"ACTS_IN","name":"Saylon","type":"Role","_key":"119524","_from":"2239","_to":"70212"} +{"$label":"ACTS_IN","name":"Ezra","type":"Role","_key":"110792","_from":"2239","_to":"65440"} +{"$label":"ACTS_IN","name":"Kent Krandel","type":"Role","_key":"106636","_from":"2239","_to":"62833"} +{"$label":"ACTS_IN","name":"Dr. Thomas Bradley","type":"Role","_key":"106233","_from":"2239","_to":"62573"} +{"$label":"ACTS_IN","name":"Lt. Val \"Valentine\" Kozlowski","type":"Role","_key":"90820","_from":"2239","_to":"53591"} +{"$label":"ACTS_IN","name":"Sam William Marshall","type":"Role","_key":"72164","_from":"2239","_to":"43616"} +{"$label":"ACTS_IN","name":"Kent","type":"Role","_key":"67890","_from":"2239","_to":"41713"} +{"$label":"ACTS_IN","name":"Hughie Warriner","type":"Role","_key":"63665","_from":"2239","_to":"39823"} +{"$label":"ACTS_IN","name":"Jo Dee Foster","type":"Role","_key":"63427","_from":"2239","_to":"39730"} +{"$label":"ACTS_IN","name":"Elrich","type":"Role","_key":"58184","_from":"2239","_to":"36805"} +{"$label":"ACTS_IN","name":"21st Phantom","type":"Role","_key":"57196","_from":"2239","_to":"36287"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"56285","_from":"2239","_to":"35761"} +{"$label":"ACTS_IN","name":"Richard Miller","type":"Role","_key":"54585","_from":"2239","_to":"34972"} +{"$label":"ACTS_IN","name":"The Collector","type":"Role","_key":"52324","_from":"2239","_to":"34061"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"52322","_from":"2239","_to":"34060"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"48941","_from":"2239","_to":"32087"} +{"$label":"ACTS_IN","name":"Jack Durant","type":"Role","_key":"42117","_from":"2239","_to":"28214"} +{"$label":"ACTS_IN","name":"The Thief","type":"Role","_key":"31021","_from":"2239","_to":"21724"} +{"$label":"ACTS_IN","name":"Curtis Zampf","type":"Role","_key":"29424","_from":"2239","_to":"20874"} +{"$label":"ACTS_IN","name":"Steve Elliot","type":"Role","_key":"29314","_from":"2239","_to":"20816"} +{"$label":"ACTS_IN","name":"Flt Sgt Robert Oates","type":"Role","_key":"24265","_from":"2239","_to":"17581"} +{"$label":"ACTS_IN","name":"Caledon 'Cal' Hockley","type":"Role","_key":"7181","_from":"2239","_to":"6002"} +{"$label":"DIRECTED","_key":"2581","_from":"2258","_to":"2241"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"2580","_from":"2257","_to":"2241"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"2579","_from":"2256","_to":"2241"} +{"$label":"ACTS_IN","name":"Brassac","type":"Role","_key":"2578","_from":"2255","_to":"2241"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"2577","_from":"2254","_to":"2241"} +{"$label":"ACTS_IN","name":"Guibert","type":"Role","_key":"2576","_from":"2253","_to":"2241"} +{"$label":"ACTS_IN","name":"\u00c9liane","type":"Role","_key":"2575","_from":"2252","_to":"2241"} +{"$label":"ACTS_IN","name":"P\u00e8re de Raoul","type":"Role","_key":"2574","_from":"2251","_to":"2241"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"2573","_from":"2250","_to":"2241"} +{"$label":"ACTS_IN","name":"\u00c9ric Thompson","type":"Role","_key":"2572","_from":"2249","_to":"2241"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"2571","_from":"2248","_to":"2241"} +{"$label":"ACTS_IN","name":"P\u00e9n\u00e9lope","type":"Role","_key":"2570","_from":"2247","_to":"2241"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"2569","_from":"2246","_to":"2241"} +{"$label":"ACTS_IN","name":"Poupette","type":"Role","_key":"2568","_from":"2245","_to":"2241"} +{"$label":"ACTS_IN","name":"Vic Berreton","type":"Role","_key":"2567","_from":"2244","_to":"2241"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Beretton","type":"Role","_key":"2566","_from":"2243","_to":"2241"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Beretton","type":"Role","_key":"2565","_from":"2242","_to":"2241"} +{"$label":"ACTS_IN","name":"P\u00e8re L\u00e9on","type":"Role","_key":"113635","_from":"2242","_to":"66968"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96030","_from":"2242","_to":"56448"} +{"$label":"ACTS_IN","name":"Jacky Pic","type":"Role","_key":"92120","_from":"2242","_to":"54355"} +{"$label":"ACTS_IN","name":"Servolle","type":"Role","_key":"88705","_from":"2242","_to":"52563"} +{"$label":"ACTS_IN","name":"Jacques Grumberg","type":"Role","_key":"59971","_from":"2242","_to":"37860"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"48075","_from":"2242","_to":"31605"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Murene","type":"Role","_key":"33382","_from":"2242","_to":"23107"} +{"$label":"ACTS_IN","name":"Largu\u00e9","type":"Role","_key":"31226","_from":"2242","_to":"21854"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"27127","_from":"2242","_to":"19521"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"21568","_from":"2242","_to":"15768"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Beretton","type":"Role","_key":"2634","_from":"2242","_to":"2303"} +{"$label":"ACTS_IN","name":"Yvonne de Galais","type":"Role","_key":"35568","_from":"2243","_to":"24177"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"35561","_from":"2243","_to":"24173"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"35492","_from":"2243","_to":"24138"} +{"$label":"ACTS_IN","name":"Dominique \"Waterloo\" Austerlitz","type":"Role","_key":"34412","_from":"2243","_to":"23581"} +{"$label":"ACTS_IN","name":"Bernardine","type":"Role","_key":"33797","_from":"2243","_to":"23298"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"33756","_from":"2243","_to":"23279"} +{"$label":"ACTS_IN","name":"Karen Reinhardt","type":"Role","_key":"33035","_from":"2243","_to":"22898"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"30349","_from":"2243","_to":"21343"} +{"$label":"ACTS_IN","name":"Lisa Braun","type":"Role","_key":"29547","_from":"2243","_to":"20933"} +{"$label":"ACTS_IN","name":"Brigitte Fossey","type":"Role","_key":"29499","_from":"2243","_to":"20909"} +{"$label":"ACTS_IN","name":"femme dans le train","type":"Role","_key":"29474","_from":"2243","_to":"20898"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Bigey","type":"Role","_key":"13156","_from":"2243","_to":"10258"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Beretton","type":"Role","_key":"2635","_from":"2243","_to":"2303"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"117986","_from":"2244","_to":"69354"} +{"$label":"ACTS_IN","name":"Ariane Marciac","type":"Role","_key":"105572","_from":"2244","_to":"62126"} +{"$label":"ACTS_IN","name":"Chiara","type":"Role","_key":"71006","_from":"2244","_to":"43127"} +{"$label":"ACTS_IN","name":"Elo\u00efse d'Artagnan","type":"Role","_key":"65313","_from":"2244","_to":"40531"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"63835","_from":"2244","_to":"39902"} +{"$label":"ACTS_IN","name":"Hippolyta","type":"Role","_key":"61725","_from":"2244","_to":"38874"} +{"$label":"ACTS_IN","name":"Louise Desfontaines","type":"Role","_key":"48617","_from":"2244","_to":"31888"} +{"$label":"ACTS_IN","name":"Noria","type":"Role","_key":"42932","_from":"2244","_to":"28687"} +{"$label":"ACTS_IN","name":"Marquise","type":"Role","_key":"36082","_from":"2244","_to":"24488"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"30704","_from":"2244","_to":"21541"} +{"$label":"ACTS_IN","name":"Princess Isabelle","type":"Role","_key":"2926","_from":"2244","_to":"2514"} +{"$label":"ACTS_IN","name":"Vic Beretton","type":"Role","_key":"2636","_from":"2244","_to":"2303"} +{"$label":"DIRECTED","_key":"63834","_from":"2244","_to":"39902"} +{"$label":"ACTS_IN","name":"Poupette","type":"Role","_key":"2638","_from":"2245","_to":"2303"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"2640","_from":"2246","_to":"2303"} +{"$label":"ACTS_IN","name":"P\u00e9n\u00e9lope Fontanet","type":"Role","_key":"2641","_from":"2247","_to":"2303"} +{"$label":"ACTS_IN","name":"Christiane","type":"Role","_key":"68384","_from":"2248","_to":"41963"} +{"$label":"ACTS_IN","name":"la fille de la chambre verte","type":"Role","_key":"30654","_from":"2248","_to":"21518"} +{"$label":"ACTS_IN","name":"Mme Rapons","type":"Role","_key":"29931","_from":"2248","_to":"21152"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"20865","_from":"2248","_to":"15264"} +{"$label":"ACTS_IN","name":"Madame Fonfrin","type":"Role","_key":"17626","_from":"2248","_to":"13156"} +{"$label":"ACTS_IN","name":"L'Abb\u00e9e de Vilecourt","type":"Role","_key":"91166","_from":"2249","_to":"53774"} +{"$label":"ACTS_IN","name":"L\u00e9opold","type":"Role","_key":"89758","_from":"2249","_to":"53128"} +{"$label":"ACTS_IN","name":"Paul Brandon","type":"Role","_key":"88083","_from":"2249","_to":"52280"} +{"$label":"ACTS_IN","name":"Moliere","type":"Role","_key":"36083","_from":"2249","_to":"24488"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34005","_from":"2249","_to":"23394"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"33334","_from":"2249","_to":"23092"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"30350","_from":"2249","_to":"21343"} +{"$label":"ACTS_IN","name":"Le fleuriste","type":"Role","_key":"64863","_from":"2253","_to":"40345"} +{"$label":"ACTS_IN","name":"Richard Borst","type":"Role","_key":"46713","_from":"2253","_to":"30833"} +{"$label":"ACTS_IN","name":"Charles Cuvelier","type":"Role","_key":"35880","_from":"2253","_to":"24361"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33899","_from":"2253","_to":"23348"} +{"$label":"ACTS_IN","name":"Gorodish","type":"Role","_key":"32064","_from":"2253","_to":"22337"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"30196","_from":"2253","_to":"21280"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"30127","_from":"2253","_to":"21230"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"20863","_from":"2253","_to":"15264"} +{"$label":"ACTS_IN","name":"Michel Granier","type":"Role","_key":"34003","_from":"2254","_to":"23394"} +{"$label":"ACTS_IN","name":"Henri Devereaux","type":"Role","_key":"11859","_from":"2254","_to":"9296"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Mercadier","type":"Role","_key":"88452","_from":"2255","_to":"52428"} +{"$label":"ACTS_IN","name":"Father Bernard","type":"Role","_key":"37503","_from":"2255","_to":"25416"} +{"$label":"ACTS_IN","name":"Gaston Gobet","type":"Role","_key":"21009","_from":"2255","_to":"15374"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"17634","_from":"2255","_to":"13156"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71995","_from":"2256","_to":"43537"} +{"$label":"ACTS_IN","name":"commissaire principal","type":"Role","_key":"38226","_from":"2256","_to":"25818"} +{"$label":"ACTS_IN","name":"le fermier","type":"Role","_key":"33983","_from":"2256","_to":"23383"} +{"$label":"ACTS_IN","name":"Brugeon","type":"Role","_key":"31593","_from":"2256","_to":"22058"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"28598","_from":"2256","_to":"20439"} +{"$label":"ACTS_IN","name":"P\u00e8re de Manette","type":"Role","_key":"20740","_from":"2256","_to":"15162"} +{"$label":"ACTS_IN","name":"Verleger","type":"Role","_key":"16150","_from":"2256","_to":"12264"} +{"$label":"ACTS_IN","name":"Verleger","type":"Role","_key":"16141","_from":"2256","_to":"12258"} +{"$label":"ACTS_IN","name":"Samantha Fontanet","type":"Role","_key":"2642","_from":"2257","_to":"2303"} +{"$label":"DIRECTED","_key":"2649","_from":"2258","_to":"2303"} +{"$label":"ACTS_IN","name":"Gabby Powell","type":"Role","_key":"2599","_from":"2273","_to":"2259"} +{"$label":"ACTS_IN","name":"Natalie Powell","type":"Role","_key":"2598","_from":"2272","_to":"2259"} +{"$label":"ACTS_IN","name":"Steve Becker","type":"Role","_key":"2597","_from":"2271","_to":"2259"} +{"$label":"ACTS_IN","name":"Mrs. Archer","type":"Role","_key":"2596","_from":"2270","_to":"2259"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"2595","_from":"2269","_to":"2259"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"2594","_from":"2268","_to":"2259"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"2592","_from":"2267","_to":"2259"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"2591","_from":"2266","_to":"2259"} +{"$label":"ACTS_IN","name":"Joyce Trexler","type":"Role","_key":"2589","_from":"2265","_to":"2259"} +{"$label":"ACTS_IN","name":"Navarro","type":"Role","_key":"2588","_from":"2264","_to":"2259"} +{"$label":"ACTS_IN","name":"Dr. Chakaraborty","type":"Role","_key":"2587","_from":"2263","_to":"2259"} +{"$label":"ACTS_IN","name":"Claudia Villars","type":"Role","_key":"2586","_from":"2262","_to":"2259"} +{"$label":"ACTS_IN","name":"Rachel Powell","type":"Role","_key":"2585","_from":"2261","_to":"2259"} +{"$label":"DIRECTED","_key":"2582","_from":"2260","_to":"2259"} +{"$label":"DIRECTED","_key":"90750","_from":"2260","_to":"53557"} +{"$label":"DIRECTED","_key":"63236","_from":"2260","_to":"39652"} +{"$label":"DIRECTED","_key":"57946","_from":"2260","_to":"36665"} +{"$label":"DIRECTED","_key":"20272","_from":"2260","_to":"14864"} +{"$label":"ACTS_IN","name":"Lexi","type":"Role","_key":"105353","_from":"2261","_to":"61986"} +{"$label":"ACTS_IN","name":"Donna Biebe","type":"Role","_key":"103560","_from":"2261","_to":"60910"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"103526","_from":"2261","_to":"60902"} +{"$label":"ACTS_IN","name":"Grace Finney","type":"Role","_key":"96458","_from":"2261","_to":"56725"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"59722","_from":"2261","_to":"37714"} +{"$label":"ACTS_IN","name":"Alison Stern","type":"Role","_key":"53660","_from":"2261","_to":"34610"} +{"$label":"ACTS_IN","name":"Lilly Enslin","type":"Role","_key":"25026","_from":"2261","_to":"18080"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"121174","_from":"2262","_to":"71181"} +{"$label":"ACTS_IN","name":"Alice Pratt","type":"Role","_key":"104443","_from":"2262","_to":"61433"} +{"$label":"ACTS_IN","name":"Camille Wright","type":"Role","_key":"101556","_from":"2262","_to":"59773"} +{"$label":"ACTS_IN","name":"Ms. Josephine","type":"Role","_key":"98928","_from":"2262","_to":"58287"} +{"$label":"ACTS_IN","name":"Principle Daniels","type":"Role","_key":"97504","_from":"2262","_to":"57419"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"95932","_from":"2262","_to":"56415"} +{"$label":"ACTS_IN","name":"Augustine James","type":"Role","_key":"91361","_from":"2262","_to":"53883"} +{"$label":"ACTS_IN","name":"Penny Washington","type":"Role","_key":"88592","_from":"2262","_to":"52495"} +{"$label":"ACTS_IN","name":"Plio","type":"Role","_key":"64118","_from":"2262","_to":"40012"} +{"$label":"ACTS_IN","name":"Richterin Miriam Shoat","type":"Role","_key":"14112","_from":"2262","_to":"10931"} +{"$label":"ACTS_IN","name":"Lily Sloane","type":"Role","_key":"2962","_from":"2262","_to":"2546"} +{"$label":"ACTS_IN","name":"Deep","type":"Role","_key":"94315","_from":"2263","_to":"55539"} +{"$label":"ACTS_IN","name":"Medic","type":"Role","_key":"88402","_from":"2263","_to":"52394"} +{"$label":"ACTS_IN","name":"Samir","type":"Role","_key":"13657","_from":"2263","_to":"10605"} +{"$label":"ACTS_IN","name":"Farroukh","type":"Role","_key":"5849","_from":"2263","_to":"4965"} +{"$label":"ACTS_IN","name":"Javier Cesti","type":"Role","_key":"116627","_from":"2264","_to":"68650"} +{"$label":"ACTS_IN","name":"Jose (as Vincent LaResca)","type":"Role","_key":"98343","_from":"2264","_to":"57917"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"94132","_from":"2264","_to":"55435"} +{"$label":"ACTS_IN","name":"Chino","type":"Role","_key":"56793","_from":"2264","_to":"36065"} +{"$label":"ACTS_IN","name":"Abra","type":"Role","_key":"5675","_from":"2264","_to":"4828"} +{"$label":"ACTS_IN","name":"Lisa Standing","type":"Role","_key":"23305","_from":"2265","_to":"16896"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"23499","_from":"2267","_to":"17030"} +{"$label":"ACTS_IN","name":"Captain Coughlin","type":"Role","_key":"4962","_from":"2267","_to":"4222"} +{"$label":"ACTS_IN","name":"Leland \"Lee\" Janus","type":"Role","_key":"3329","_from":"2267","_to":"2844"} +{"$label":"ACTS_IN","name":"Bunny","type":"Role","_key":"55614","_from":"2270","_to":"35408"} +{"$label":"ACTS_IN","name":"Vivian Percy","type":"Role","_key":"45243","_from":"2270","_to":"30028"} +{"$label":"ACTS_IN","name":"Hazel Cairn","type":"Role","_key":"40725","_from":"2270","_to":"27403"} +{"$label":"ACTS_IN","name":"Ludmilla Belicec","type":"Role","_key":"34428","_from":"2270","_to":"23588"} +{"$label":"ACTS_IN","name":"Katie Grinnel","type":"Role","_key":"17349","_from":"2270","_to":"12977"} +{"$label":"ACTS_IN","name":"Peg","type":"Role","_key":"13376","_from":"2270","_to":"10412"} +{"$label":"ACTS_IN","name":"Aunt Joan","type":"Role","_key":"12163","_from":"2270","_to":"9529"} +{"$label":"ACTS_IN","name":"Mary Beth Percy","type":"Role","_key":"8280","_from":"2270","_to":"6786"} +{"$label":"ACTS_IN","name":"Dr. Roger Fleming","type":"Role","_key":"117706","_from":"2271","_to":"69183"} +{"$label":"ACTS_IN","name":"Steve Kowalski","type":"Role","_key":"93518","_from":"2271","_to":"55058"} +{"$label":"ACTS_IN","name":"Carl Leffert","type":"Role","_key":"67801","_from":"2271","_to":"41672"} +{"$label":"ACTS_IN","name":"Medical Examiner","type":"Role","_key":"47195","_from":"2271","_to":"31106"} +{"$label":"ACTS_IN","name":"Jay Twistle","type":"Role","_key":"12956","_from":"2271","_to":"10106"} +{"$label":"ACTS_IN","name":"Earl Amdursky","type":"Role","_key":"7653","_from":"2271","_to":"6359"} +{"$label":"ACTS_IN","name":"El Scorpio","type":"Role","_key":"2616","_from":"2286","_to":"2274"} +{"$label":"ACTS_IN","name":"Gold Tooth","type":"Role","_key":"2615","_from":"2285","_to":"2274"} +{"$label":"ACTS_IN","name":"Irene Edwards","type":"Role","_key":"2614","_from":"2284","_to":"2274"} +{"$label":"ACTS_IN","name":"Ramon Vega","type":"Role","_key":"2612","_from":"2283","_to":"2274"} +{"$label":"ACTS_IN","name":"King Willie","type":"Role","_key":"2611","_from":"2282","_to":"2274"} +{"$label":"ACTS_IN","name":"Tony Pope","type":"Role","_key":"2610","_from":"2281","_to":"2274"} +{"$label":"ACTS_IN","name":"Captain B. Pilgrim","type":"Role","_key":"2609","_from":"2280","_to":"2274"} +{"$label":"ACTS_IN","name":"Captain Phil Heinemann","type":"Role","_key":"2608","_from":"2279","_to":"2274"} +{"$label":"ACTS_IN","name":"Leona Cantrell","type":"Role","_key":"2605","_from":"2278","_to":"2274"} +{"$label":"ACTS_IN","name":"Danny Archuleta","type":"Role","_key":"2604","_from":"2277","_to":"2274"} +{"$label":"ACTS_IN","name":"Peter Keyes","type":"Role","_key":"2603","_from":"2276","_to":"2274"} +{"$label":"ACTS_IN","name":"Lieutenant Mike Harrigan","type":"Role","_key":"2602","_from":"2275","_to":"2274"} +{"$label":"ACTS_IN","name":"Raymond Campanella","type":"Role","_key":"118587","_from":"2275","_to":"69729"} +{"$label":"ACTS_IN","name":"Cmdr. Frank 'Dooke' Camparelli","type":"Role","_key":"117950","_from":"2275","_to":"69331"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"102781","_from":"2275","_to":"60464"} +{"$label":"ACTS_IN","name":"Capt. Bartholomew Clark","type":"Role","_key":"102439","_from":"2275","_to":"60279"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"100748","_from":"2275","_to":"59405"} +{"$label":"ACTS_IN","name":"Tyrone Purvis","type":"Role","_key":"100133","_from":"2275","_to":"59062"} +{"$label":"ACTS_IN","name":"President Wilson","type":"Role","_key":"98811","_from":"2275","_to":"58224"} +{"$label":"ACTS_IN","name":"Jake Neely","type":"Role","_key":"97119","_from":"2275","_to":"57136"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"95928","_from":"2275","_to":"56415"} +{"$label":"ACTS_IN","name":"Joshua Deets","type":"Role","_key":"92238","_from":"2275","_to":"54426"} +{"$label":"ACTS_IN","name":"Walter Tortoise (voice)","type":"Role","_key":"92039","_from":"2275","_to":"54309"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"91725","_from":"2275","_to":"54107"} +{"$label":"ACTS_IN","name":"Richter Tyrone Kipler","type":"Role","_key":"73099","_from":"2275","_to":"43974"} +{"$label":"ACTS_IN","name":"Malachi 'Mal' Johnson","type":"Role","_key":"70299","_from":"2275","_to":"42834"} +{"$label":"ACTS_IN","name":"Bob Goodall","type":"Role","_key":"66392","_from":"2275","_to":"41060"} +{"$label":"ACTS_IN","name":"Ken Hollister","type":"Role","_key":"60178","_from":"2275","_to":"37970"} +{"$label":"ACTS_IN","name":"Miles the Mule","type":"Role","_key":"57856","_from":"2275","_to":"36614"} +{"$label":"ACTS_IN","name":"Ogion","type":"Role","_key":"56895","_from":"2275","_to":"36116"} +{"$label":"ACTS_IN","name":"Henry Sherman","type":"Role","_key":"53798","_from":"2275","_to":"34665"} +{"$label":"ACTS_IN","name":"Gus Green","type":"Role","_key":"52300","_from":"2275","_to":"34051"} +{"$label":"ACTS_IN","name":"Barbatus","type":"Role","_key":"51487","_from":"2275","_to":"33574"} +{"$label":"ACTS_IN","name":"Mann mit Augenklappe","type":"Role","_key":"49140","_from":"2275","_to":"32190"} +{"$label":"ACTS_IN","name":"Colonel Isaac Johnson","type":"Role","_key":"46869","_from":"2275","_to":"30909"} +{"$label":"ACTS_IN","name":"Wilhelm","type":"Role","_key":"16933","_from":"2275","_to":"12720"} +{"$label":"ACTS_IN","name":"Marty Madison","type":"Role","_key":"12056","_from":"2275","_to":"9446"} +{"$label":"ACTS_IN","name":"Roger Murtaugh","type":"Role","_key":"11258","_from":"2275","_to":"8897"} +{"$label":"ACTS_IN","name":"Roger Murtaugh","type":"Role","_key":"11251","_from":"2275","_to":"8895"} +{"$label":"ACTS_IN","name":"Sergeant Roger Murtaugh","type":"Role","_key":"11233","_from":"2275","_to":"8884"} +{"$label":"ACTS_IN","name":"Sergeant Roger Murtaugh","type":"Role","_key":"11218","_from":"2275","_to":"8874"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"10381","_from":"2275","_to":"8260"} +{"$label":"ACTS_IN","name":"Detective David Tapp","type":"Role","_key":"2708","_from":"2275","_to":"2347"} +{"$label":"ACTS_IN","name":"Bobbie Ritchie","type":"Role","_key":"120572","_from":"2276","_to":"70813"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"115979","_from":"2276","_to":"68304"} +{"$label":"ACTS_IN","name":"Uncle Red","type":"Role","_key":"114288","_from":"2276","_to":"67312"} +{"$label":"ACTS_IN","name":"Johnny Fox","type":"Role","_key":"113979","_from":"2276","_to":"67127"} +{"$label":"ACTS_IN","name":"Doc Hawkins","type":"Role","_key":"113258","_from":"2276","_to":"66728"} +{"$label":"ACTS_IN","name":"Tony De Luca","type":"Role","_key":"111684","_from":"2276","_to":"65941"} +{"$label":"ACTS_IN","name":"Krutz","type":"Role","_key":"101248","_from":"2276","_to":"59626"} +{"$label":"ACTS_IN","name":"Cmdr. Bill McKay","type":"Role","_key":"91734","_from":"2276","_to":"54114"} +{"$label":"ACTS_IN","name":"Commander McKay","type":"Role","_key":"91733","_from":"2276","_to":"54113"} +{"$label":"ACTS_IN","name":"Sheriff Larson","type":"Role","_key":"71827","_from":"2276","_to":"43469"} +{"$label":"ACTS_IN","name":"Commander Krill","type":"Role","_key":"51050","_from":"2276","_to":"33312"} +{"$label":"ACTS_IN","name":"Curly","type":"Role","_key":"49228","_from":"2276","_to":"32249"} +{"$label":"ACTS_IN","name":"Ty Moncrief","type":"Role","_key":"35087","_from":"2276","_to":"23924"} +{"$label":"ACTS_IN","name":"Highway Patrolman","type":"Role","_key":"16208","_from":"2276","_to":"12305"} +{"$label":"ACTS_IN","name":"FBI Agent Angelo Pappas","type":"Role","_key":"11922","_from":"2276","_to":"9350"} +{"$label":"ACTS_IN","name":"Mr. Joshua","type":"Role","_key":"11219","_from":"2276","_to":"8874"} +{"$label":"ACTS_IN","name":"Bill Dayton","type":"Role","_key":"7616","_from":"2276","_to":"6321"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"109195","_from":"2277","_to":"64516"} +{"$label":"ACTS_IN","name":"Sheriff Bernabe Montoya","type":"Role","_key":"94726","_from":"2277","_to":"55796"} +{"$label":"ACTS_IN","name":"Edwin Diaz","type":"Role","_key":"31979","_from":"2277","_to":"22296"} +{"$label":"ACTS_IN","name":"Lt. Hector Martinez","type":"Role","_key":"18512","_from":"2277","_to":"13705"} +{"$label":"ACTS_IN","name":"Maria Valdez","type":"Role","_key":"113793","_from":"2278","_to":"67046"} +{"$label":"ACTS_IN","name":"Louisa Gomez","type":"Role","_key":"61081","_from":"2278","_to":"38615"} +{"$label":"ACTS_IN","name":"Inez","type":"Role","_key":"60944","_from":"2278","_to":"38506"} +{"$label":"ACTS_IN","name":"Alva Restrepo","type":"Role","_key":"45777","_from":"2278","_to":"30289"} +{"$label":"ACTS_IN","name":"Transito Soto","type":"Role","_key":"19784","_from":"2278","_to":"14606"} +{"$label":"ACTS_IN","name":"Amber Mendez","type":"Role","_key":"10283","_from":"2278","_to":"8188"} +{"$label":"ACTS_IN","name":"Murdoch","type":"Role","_key":"121681","_from":"2279","_to":"71488"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"72372","_from":"2279","_to":"43699"} +{"$label":"ACTS_IN","name":"Tony Moretti","type":"Role","_key":"60938","_from":"2279","_to":"38504"} +{"$label":"ACTS_IN","name":"Jake Fratelli","type":"Role","_key":"53216","_from":"2279","_to":"34420"} +{"$label":"ACTS_IN","name":"Richard Morgan","type":"Role","_key":"39264","_from":"2279","_to":"26554"} +{"$label":"ACTS_IN","name":"Sully","type":"Role","_key":"36506","_from":"2279","_to":"24754"} +{"$label":"ACTS_IN","name":"Max Keller","type":"Role","_key":"18298","_from":"2279","_to":"13572"} +{"$label":"ACTS_IN","name":"Franz Sanchez","type":"Role","_key":"8565","_from":"2279","_to":"6975"} +{"$label":"ACTS_IN","name":"FBI Special Agent Johnson","type":"Role","_key":"6752","_from":"2279","_to":"5661"} +{"$label":"ACTS_IN","name":"Dave Unger","type":"Role","_key":"22580","_from":"2280","_to":"16390"} +{"$label":"ACTS_IN","name":"Colonel Izzi","type":"Role","_key":"54962","_from":"2282","_to":"35132"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"5925","_from":"2282","_to":"5031"} +{"$label":"ACTS_IN","name":"Sang Kung's Daughter","type":"Role","_key":"70689","_from":"2284","_to":"43001"} +{"$label":"ACTS_IN","name":"European Nurse","type":"Role","_key":"56716","_from":"2284","_to":"36022"} +{"$label":"ACTS_IN","name":"Goody","type":"Role","_key":"104512","_from":"2286","_to":"61466"} +{"$label":"ACTS_IN","name":"Bo Abodo 2","type":"Role","_key":"21358","_from":"2286","_to":"15614"} +{"$label":"ACTS_IN","name":"Seargent Farrell","type":"Role","_key":"2633","_from":"2302","_to":"2287"} +{"$label":"ACTS_IN","name":"Infected Priest","type":"Role","_key":"2632","_from":"2301","_to":"2287"} +{"$label":"ACTS_IN","name":"Scientist","type":"Role","_key":"2631","_from":"2300","_to":"2287"} +{"$label":"ACTS_IN","name":"Aktivist","type":"Role","_key":"2630","_from":"2299","_to":"2287"} +{"$label":"ACTS_IN","name":"Aktivist","type":"Role","_key":"2629","_from":"2298","_to":"2287"} +{"$label":"ACTS_IN","name":"Aktivist","type":"Role","_key":"2628","_from":"2297","_to":"2287"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"2627","_from":"2296","_to":"2287"} +{"$label":"ACTS_IN","name":"Mr. Bridges\u2019 Daughter","type":"Role","_key":"2626","_from":"2295","_to":"2287"} +{"$label":"ACTS_IN","name":"Mr. Bridges","type":"Role","_key":"2625","_from":"2294","_to":"2287"} +{"$label":"ACTS_IN","name":"Jim's mother","type":"Role","_key":"2624","_from":"2293","_to":"2287"} +{"$label":"ACTS_IN","name":"Jim's father","type":"Role","_key":"2623","_from":"2292","_to":"2287"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"2622","_from":"2291","_to":"2287"} +{"$label":"ACTS_IN","name":"Major Henry West","type":"Role","_key":"2621","_from":"2290","_to":"2287"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"2620","_from":"2289","_to":"2287"} +{"$label":"DIRECTED","_key":"2617","_from":"2288","_to":"2287"} +{"$label":"DIRECTED","_key":"94155","_from":"2288","_to":"55443"} +{"$label":"DIRECTED","_key":"89316","_from":"2288","_to":"52870"} +{"$label":"DIRECTED","_key":"57824","_from":"2288","_to":"36604"} +{"$label":"DIRECTED","_key":"48011","_from":"2288","_to":"31583"} +{"$label":"DIRECTED","_key":"16466","_from":"2288","_to":"12443"} +{"$label":"DIRECTED","_key":"12421","_from":"2288","_to":"9736"} +{"$label":"DIRECTED","_key":"7442","_from":"2288","_to":"6206"} +{"$label":"ACTS_IN","name":"Martin Cahill","type":"Role","_key":"110353","_from":"2289","_to":"65211"} +{"$label":"ACTS_IN","name":"De Jagar","type":"Role","_key":"109693","_from":"2289","_to":"64785"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"90916","_from":"2289","_to":"53631"} +{"$label":"ACTS_IN","name":"Bunny Kelly","type":"Role","_key":"90837","_from":"2289","_to":"53599"} +{"$label":"ACTS_IN","name":"Alastor 'Mad-Eye' Moody","type":"Role","_key":"89522","_from":"2289","_to":"52992"} +{"$label":"ACTS_IN","name":"Liam O'Leary","type":"Role","_key":"60655","_from":"2289","_to":"38296"} +{"$label":"ACTS_IN","name":"Sheriff Hank Keough","type":"Role","_key":"57183","_from":"2289","_to":"36281"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"49010","_from":"2289","_to":"32124"} +{"$label":"ACTS_IN","name":"August Nicholson","type":"Role","_key":"45241","_from":"2289","_to":"30028"} +{"$label":"ACTS_IN","name":"Jack van Meter","type":"Role","_key":"34718","_from":"2289","_to":"23744"} +{"$label":"ACTS_IN","name":"Monk McGinn","type":"Role","_key":"26223","_from":"2289","_to":"18837"} +{"$label":"ACTS_IN","name":"Michelangelo \" Mickie \" Abraxas","type":"Role","_key":"22023","_from":"2289","_to":"16070"} +{"$label":"ACTS_IN","name":"Wiglaf","type":"Role","_key":"20289","_from":"2289","_to":"14868"} +{"$label":"ACTS_IN","name":"Stobrod Thewes","type":"Role","_key":"20073","_from":"2289","_to":"14764"} +{"$label":"ACTS_IN","name":"Liam Tobin","type":"Role","_key":"15411","_from":"2289","_to":"11783"} +{"$label":"ACTS_IN","name":"Reynald","type":"Role","_key":"13548","_from":"2289","_to":"10534"} +{"$label":"ACTS_IN","name":"John-Joe","type":"Role","_key":"13144","_from":"2289","_to":"10247"} +{"$label":"ACTS_IN","name":"John C. McCloy","type":"Role","_key":"11392","_from":"2289","_to":"8971"} +{"$label":"ACTS_IN","name":"Alastor 'Mad\u00adEye' Moody","type":"Role","_key":"8111","_from":"2289","_to":"6687"} +{"$label":"ACTS_IN","name":"Alastor \"Mad-Eye\" Moody","type":"Role","_key":"8087","_from":"2289","_to":"6682"} +{"$label":"ACTS_IN","name":"Menelaos","type":"Role","_key":"7793","_from":"2289","_to":"6469"} +{"$label":"ACTS_IN","name":"Hamish Campbell","type":"Role","_key":"2929","_from":"2289","_to":"2514"} +{"$label":"ACTS_IN","name":"Stephen Baxter","type":"Role","_key":"120325","_from":"2290","_to":"70679"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"117752","_from":"2290","_to":"69222"} +{"$label":"ACTS_IN","name":"Destro","type":"Role","_key":"102227","_from":"2290","_to":"60158"} +{"$label":"ACTS_IN","name":"David Stephens","type":"Role","_key":"57826","_from":"2290","_to":"36604"} +{"$label":"ACTS_IN","name":"Raymond Calitri","type":"Role","_key":"55516","_from":"2290","_to":"35364"} +{"$label":"ACTS_IN","name":"Fred Noonan","type":"Role","_key":"51477","_from":"2290","_to":"33572"} +{"$label":"ACTS_IN","name":"Duke of Norfolk","type":"Role","_key":"32258","_from":"2290","_to":"22475"} +{"$label":"ACTS_IN","name":"The Rider","type":"Role","_key":"19966","_from":"2290","_to":"14703"} +{"$label":"ACTS_IN","name":"Seminar Leader","type":"Role","_key":"16884","_from":"2290","_to":"12696"} +{"$label":"ACTS_IN","name":"Charles Stewart","type":"Role","_key":"16743","_from":"2290","_to":"12628"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"98732","_from":"2291","_to":"58186"} +{"$label":"ACTS_IN","name":"Older Peter","type":"Role","_key":"5237","_from":"2291","_to":"4445"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"16477","_from":"2299","_to":"12443"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"36888","_from":"2300","_to":"25001"} +{"$label":"ACTS_IN","name":"Joe's Co-Passenger #2","type":"Role","_key":"6213","_from":"2300","_to":"5259"} +{"$label":"ACTS_IN","name":"Gavin\/US Tourist","type":"Role","_key":"7456","_from":"2302","_to":"6206"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"3428","_from":"2302","_to":"2932"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"2648","_from":"2310","_to":"2303"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"2647","_from":"2309","_to":"2303"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"2646","_from":"2308","_to":"2303"} +{"$label":"ACTS_IN","name":"Mme Fontanet","type":"Role","_key":"2645","_from":"2307","_to":"2303"} +{"$label":"ACTS_IN","name":"Portal","type":"Role","_key":"2644","_from":"2306","_to":"2303"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"2643","_from":"2305","_to":"2303"} +{"$label":"ACTS_IN","name":"Philippe Berthier","type":"Role","_key":"2639","_from":"2304","_to":"2303"} +{"$label":"ACTS_IN","name":"l'assistant","type":"Role","_key":"89121","_from":"2308","_to":"52794"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"33832","_from":"2308","_to":"23315"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"103578","_from":"2309","_to":"60921"} +{"$label":"ACTS_IN","name":"Claire Vigneaux","type":"Role","_key":"89550","_from":"2309","_to":"52998"} +{"$label":"ACTS_IN","name":"Lydie","type":"Role","_key":"42935","_from":"2309","_to":"28687"} +{"$label":"ACTS_IN","name":"Mab\u00e9","type":"Role","_key":"20185","_from":"2309","_to":"14804"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"19993","_from":"2309","_to":"14714"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"17958","_from":"2309","_to":"13356"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"17624","_from":"2309","_to":"13156"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"15590","_from":"2309","_to":"11896"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"120026","_from":"2310","_to":"70489"} +{"$label":"ACTS_IN","name":"Marie-Jeanne","type":"Role","_key":"88428","_from":"2310","_to":"52413"} +{"$label":"ACTS_IN","name":"Marie Bjorg","type":"Role","_key":"49248","_from":"2310","_to":"32254"} +{"$label":"DIRECTED","_key":"113492","_from":"2310","_to":"66872"} +{"$label":"DIRECTED","_key":"91824","_from":"2310","_to":"54170"} +{"$label":"DIRECTED","_key":"49244","_from":"2310","_to":"32254"} +{"$label":"ACTS_IN","name":"God","type":"Role","_key":"2663","_from":"2316","_to":"2311"} +{"$label":"ACTS_IN","name":"Capt. Klaa","type":"Role","_key":"2662","_from":"2315","_to":"2311"} +{"$label":"ACTS_IN","name":"Caithlin Dar","type":"Role","_key":"2661","_from":"2314","_to":"2311"} +{"$label":"ACTS_IN","name":"Gen. Korrd","type":"Role","_key":"2660","_from":"2313","_to":"2311"} +{"$label":"ACTS_IN","name":"Sybok","type":"Role","_key":"2659","_from":"2312","_to":"2311"} +{"$label":"ACTS_IN","name":"Cobb","type":"Role","_key":"118810","_from":"2313","_to":"69847"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"56155","_from":"2315","_to":"35694"} +{"$label":"ACTS_IN","name":"Judge Trimmings","type":"Role","_key":"118740","_from":"2316","_to":"69823"} +{"$label":"ACTS_IN","name":"Mate on 'Lincoln'","type":"Role","_key":"2674","_from":"2328","_to":"2317"} +{"$label":"ACTS_IN","name":"Coach Driver","type":"Role","_key":"2673","_from":"2327","_to":"2317"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"2672","_from":"2326","_to":"2317"} +{"$label":"ACTS_IN","name":"John Howard","type":"Role","_key":"2671","_from":"2325","_to":"2317"} +{"$label":"ACTS_IN","name":"Capt. Farragut","type":"Role","_key":"2670","_from":"2324","_to":"2317"} +{"$label":"ACTS_IN","name":"First Mate of the Nautilus","type":"Role","_key":"2669","_from":"2323","_to":"2317"} +{"$label":"ACTS_IN","name":"Conseil","type":"Role","_key":"2668","_from":"2322","_to":"2317"} +{"$label":"ACTS_IN","name":"Prof. Pierre Arronax","type":"Role","_key":"2667","_from":"2321","_to":"2317"} +{"$label":"ACTS_IN","name":"Captain Nemo","type":"Role","_key":"2666","_from":"2320","_to":"2317"} +{"$label":"ACTS_IN","name":"Ned Land","type":"Role","_key":"2665","_from":"2319","_to":"2317"} +{"$label":"DIRECTED","_key":"2664","_from":"2318","_to":"2317"} +{"$label":"DIRECTED","_key":"106935","_from":"2318","_to":"63050"} +{"$label":"DIRECTED","_key":"103941","_from":"2318","_to":"61142"} +{"$label":"DIRECTED","_key":"88024","_from":"2318","_to":"52257"} +{"$label":"DIRECTED","_key":"68279","_from":"2318","_to":"41908"} +{"$label":"DIRECTED","_key":"55136","_from":"2318","_to":"35194"} +{"$label":"DIRECTED","_key":"55008","_from":"2318","_to":"35156"} +{"$label":"DIRECTED","_key":"18811","_from":"2318","_to":"13902"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"121105","_from":"2319","_to":"71125"} +{"$label":"ACTS_IN","name":"Owen Waterbury","type":"Role","_key":"117175","_from":"2319","_to":"68936"} +{"$label":"ACTS_IN","name":"Cactus Jack","type":"Role","_key":"117015","_from":"2319","_to":"68868"} +{"$label":"ACTS_IN","name":"Steve Wallace","type":"Role","_key":"116676","_from":"2319","_to":"68687"} +{"$label":"ACTS_IN","name":"Dr. Rolf Pedersen","type":"Role","_key":"110182","_from":"2319","_to":"65118"} +{"$label":"ACTS_IN","name":"Marshal Matt Morgan","type":"Role","_key":"101417","_from":"2319","_to":"59701"} +{"$label":"ACTS_IN","name":"Uncle Joe McTeague","type":"Role","_key":"91492","_from":"2319","_to":"53940"} +{"$label":"ACTS_IN","name":"Peter Sandza","type":"Role","_key":"90594","_from":"2319","_to":"53505"} +{"$label":"ACTS_IN","name":"George Brougham \/ Vicar Atlee \/ Mr. Pythian \/ Arthur Henderson","type":"Role","_key":"71012","_from":"2319","_to":"43129"} +{"$label":"ACTS_IN","name":"Archie Long","type":"Role","_key":"67489","_from":"2319","_to":"41566"} +{"$label":"ACTS_IN","name":"(in \"I Walk Alone\") (archive footage)","type":"Role","_key":"53882","_from":"2319","_to":"34691"} +{"$label":"ACTS_IN","name":"Capt. Matthew Yelland","type":"Role","_key":"50604","_from":"2319","_to":"33049"} +{"$label":"ACTS_IN","name":"Col. David 'Mickey' Marcus","type":"Role","_key":"50597","_from":"2319","_to":"33046"} +{"$label":"ACTS_IN","name":"Dr. Tuttle","type":"Role","_key":"45614","_from":"2319","_to":"30198"} +{"$label":"ACTS_IN","name":"General Patton","type":"Role","_key":"33556","_from":"2319","_to":"23204"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25083","_from":"2319","_to":"18122"} +{"$label":"ACTS_IN","name":"Col. Dax","type":"Role","_key":"11534","_from":"2319","_to":"9065"} +{"$label":"ACTS_IN","name":"Spartacus","type":"Role","_key":"11493","_from":"2319","_to":"9041"} +{"$label":"ACTS_IN","name":"Whit Sterling","type":"Role","_key":"8173","_from":"2319","_to":"6726"} +{"$label":"ACTS_IN","name":"General Count von Klugermann","type":"Role","_key":"121039","_from":"2320","_to":"71083"} +{"$label":"ACTS_IN","name":"Himself - Narrator","type":"Role","_key":"118554","_from":"2320","_to":"69707"} +{"$label":"ACTS_IN","name":"Brutus","type":"Role","_key":"114650","_from":"2320","_to":"67543"} +{"$label":"ACTS_IN","name":"Timonides","type":"Role","_key":"111761","_from":"2320","_to":"65965"} +{"$label":"ACTS_IN","name":"Eduard Seibert","type":"Role","_key":"108306","_from":"2320","_to":"64019"} +{"$label":"ACTS_IN","name":"Charles Dobbs","type":"Role","_key":"101657","_from":"2320","_to":"59833"} +{"$label":"ACTS_IN","name":"Mr. Jordan","type":"Role","_key":"88576","_from":"2320","_to":"52493"} +{"$label":"ACTS_IN","name":"Sir Oliver S. Lindenbrook","type":"Role","_key":"70752","_from":"2320","_to":"43030"} +{"$label":"ACTS_IN","name":"Gentleman Brown","type":"Role","_key":"69544","_from":"2320","_to":"42470"} +{"$label":"ACTS_IN","name":"Richard K. Straker","type":"Role","_key":"69237","_from":"2320","_to":"42339"} +{"$label":"ACTS_IN","name":"Oberst Brandt","type":"Role","_key":"66100","_from":"2320","_to":"40895"} +{"$label":"ACTS_IN","name":"Sir Brack","type":"Role","_key":"42737","_from":"2320","_to":"28608"} +{"$label":"ACTS_IN","name":"himself \/ Odell Gardener","type":"Role","_key":"41635","_from":"2320","_to":"27947"} +{"$label":"ACTS_IN","name":"Jim Molner","type":"Role","_key":"34809","_from":"2320","_to":"23787"} +{"$label":"ACTS_IN","name":"Kam Ling","type":"Role","_key":"34436","_from":"2320","_to":"23592"} +{"$label":"ACTS_IN","name":"Odell Gardener","type":"Role","_key":"29996","_from":"2320","_to":"21171"} +{"$label":"ACTS_IN","name":"Norman Maine","type":"Role","_key":"26042","_from":"2320","_to":"18716"} +{"$label":"ACTS_IN","name":"Dr. John Polidori","type":"Role","_key":"25970","_from":"2320","_to":"18672"} +{"$label":"ACTS_IN","name":"Ivo Kern","type":"Role","_key":"24969","_from":"2320","_to":"18035"} +{"$label":"ACTS_IN","name":"Sir Alec Nichols","type":"Role","_key":"24956","_from":"2320","_to":"18031"} +{"$label":"ACTS_IN","name":"Tiberius","type":"Role","_key":"22369","_from":"2320","_to":"16258"} +{"$label":"ACTS_IN","name":"Joseph von Arimath\u00e4a","type":"Role","_key":"21137","_from":"2320","_to":"15473"} +{"$label":"ACTS_IN","name":"Humbert Humbert","type":"Role","_key":"9449","_from":"2320","_to":"7628"} +{"$label":"ACTS_IN","name":"Phillip Vandamm","type":"Role","_key":"3066","_from":"2320","_to":"2628"} +{"$label":"ACTS_IN","name":"Mr. Stein","type":"Role","_key":"69552","_from":"2321","_to":"42470"} +{"$label":"ACTS_IN","name":"Dr. Hartz of Prague","type":"Role","_key":"11204","_from":"2321","_to":"8861"} +{"$label":"ACTS_IN","name":"Mr. Kentaro Moto","type":"Role","_key":"117186","_from":"2322","_to":"68941"} +{"$label":"ACTS_IN","name":"Kismet","type":"Role","_key":"116951","_from":"2322","_to":"68841"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"115435","_from":"2322","_to":"67969"} +{"$label":"ACTS_IN","name":"Toady","type":"Role","_key":"104591","_from":"2322","_to":"61524"} +{"$label":"ACTS_IN","name":"Abbott","type":"Role","_key":"48416","_from":"2322","_to":"31779"} +{"$label":"ACTS_IN","name":"Otto Fuessli","type":"Role","_key":"45343","_from":"2322","_to":"30073"} +{"$label":"ACTS_IN","name":"Steward","type":"Role","_key":"24147","_from":"2322","_to":"17503"} +{"$label":"ACTS_IN","name":"Der \u201eGeneral\u201c","type":"Role","_key":"23340","_from":"2322","_to":"16912"} +{"$label":"ACTS_IN","name":"Comm. Lucius Emery","type":"Role","_key":"18803","_from":"2322","_to":"13896"} +{"$label":"ACTS_IN","name":"Joel Cairo","type":"Role","_key":"11446","_from":"2322","_to":"9009"} +{"$label":"ACTS_IN","name":"Bildreporter Johnny","type":"Role","_key":"9865","_from":"2322","_to":"7904"} +{"$label":"ACTS_IN","name":"Hans Beckert","type":"Role","_key":"9831","_from":"2322","_to":"7883"} +{"$label":"ACTS_IN","name":"Ugarte","type":"Role","_key":"4048","_from":"2322","_to":"3450"} +{"$label":"ACTS_IN","name":"Dr. Einstein","type":"Role","_key":"3056","_from":"2322","_to":"2618"} +{"$label":"ACTS_IN","name":"Guard captain","type":"Role","_key":"11509","_from":"2323","_to":"9041"} +{"$label":"ACTS_IN","name":"Jim Pierce","type":"Role","_key":"4036","_from":"2323","_to":"3434"} +{"$label":"ACTS_IN","name":"'Doc' Penny","type":"Role","_key":"120628","_from":"2324","_to":"70847"} +{"$label":"ACTS_IN","name":"Sidney Broome","type":"Role","_key":"28688","_from":"2324","_to":"20500"} +{"$label":"ACTS_IN","name":"Randy Kennan","type":"Role","_key":"3578","_from":"2324","_to":"3060"} +{"$label":"ACTS_IN","name":"Charles Conliffe","type":"Role","_key":"95766","_from":"2326","_to":"56328"} +{"$label":"ACTS_IN","name":"Johnny Gallagher","type":"Role","_key":"9061","_from":"2326","_to":"7317"} +{"$label":"ACTS_IN","name":"Heraldic Messenger","type":"Role","_key":"115234","_from":"2327","_to":"67853"} +{"$label":"ACTS_IN","name":"Doc Kennedy","type":"Role","_key":"114677","_from":"2327","_to":"67551"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"111590","_from":"2327","_to":"65881"} +{"$label":"ACTS_IN","name":"Martia","type":"Role","_key":"2689","_from":"2334","_to":"2329"} +{"$label":"ACTS_IN","name":"Federation President","type":"Role","_key":"2688","_from":"2333","_to":"2329"} +{"$label":"ACTS_IN","name":"Admiral Cartwright","type":"Role","_key":"2687","_from":"2332","_to":"2329"} +{"$label":"ACTS_IN","name":"Azetbur","type":"Role","_key":"2686","_from":"2331","_to":"2329"} +{"$label":"ACTS_IN","name":"Lieutenant Valeris","type":"Role","_key":"2684","_from":"2330","_to":"2329"} +{"$label":"ACTS_IN","name":"Caroline Wagner","type":"Role","_key":"111208","_from":"2330","_to":"65675"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"91975","_from":"2330","_to":"54263"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"69830","_from":"2330","_to":"42613"} +{"$label":"ACTS_IN","name":"Honeywell","type":"Role","_key":"61919","_from":"2330","_to":"38961"} +{"$label":"ACTS_IN","name":"Jane O'Leary","type":"Role","_key":"60656","_from":"2330","_to":"38296"} +{"$label":"ACTS_IN","name":"Ema 'Emmy' Hesire","type":"Role","_key":"59499","_from":"2330","_to":"37569"} +{"$label":"ACTS_IN","name":"Judy McCoy","type":"Role","_key":"54853","_from":"2330","_to":"35088"} +{"$label":"ACTS_IN","name":"Cadet Karen Thompson","type":"Role","_key":"53184","_from":"2330","_to":"34404"} +{"$label":"ACTS_IN","name":"Gracie Law","type":"Role","_key":"45557","_from":"2330","_to":"30161"} +{"$label":"ACTS_IN","name":"Samantha Jones","type":"Role","_key":"32725","_from":"2330","_to":"22725"} +{"$label":"ACTS_IN","name":"Joyce Donnovan","type":"Role","_key":"16845","_from":"2330","_to":"12677"} +{"$label":"ACTS_IN","name":"Connie Valenzuela","type":"Role","_key":"109673","_from":"2331","_to":"64770"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"64022","_from":"2331","_to":"39967"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"72498","_from":"2332","_to":"43738"} +{"$label":"ACTS_IN","name":"Dr. Graham","type":"Role","_key":"41361","_from":"2332","_to":"27804"} +{"$label":"ACTS_IN","name":"Crowne","type":"Role","_key":"16822","_from":"2332","_to":"12668"} +{"$label":"ACTS_IN","name":"Tom Robinson","type":"Role","_key":"7158","_from":"2332","_to":"5978"} +{"$label":"ACTS_IN","name":"Prison Director Poe","type":"Role","_key":"87955","_from":"2333","_to":"52231"} +{"$label":"ACTS_IN","name":"Ckarence Boddicker","type":"Role","_key":"37776","_from":"2333","_to":"25618"} +{"$label":"ACTS_IN","name":"Griggs","type":"Role","_key":"12702","_from":"2333","_to":"9923"} +{"$label":"ACTS_IN","name":"Mr. Perry","type":"Role","_key":"3036","_from":"2333","_to":"2594"} +{"$label":"ACTS_IN","name":"Black Beauty","type":"Role","_key":"33974","_from":"2334","_to":"23380"} +{"$label":"ACTS_IN","name":"Jacques Father","type":"Role","_key":"2704","_from":"2346","_to":"2335"} +{"$label":"ACTS_IN","name":"Young Enzo","type":"Role","_key":"2703","_from":"2345","_to":"2335"} +{"$label":"ACTS_IN","name":"Young Jacques","type":"Role","_key":"2702","_from":"2344","_to":"2335"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"2701","_from":"2343","_to":"2335"} +{"$label":"ACTS_IN","name":"Bonita","type":"Role","_key":"2700","_from":"2342","_to":"2335"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"2699","_from":"2341","_to":"2335"} +{"$label":"ACTS_IN","name":"Duffy","type":"Role","_key":"2698","_from":"2340","_to":"2335"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"2697","_from":"2339","_to":"2335"} +{"$label":"ACTS_IN","name":"Uncle Louis","type":"Role","_key":"2696","_from":"2338","_to":"2335"} +{"$label":"ACTS_IN","name":"Novelli","type":"Role","_key":"2695","_from":"2337","_to":"2335"} +{"$label":"ACTS_IN","name":"Johana Baker","type":"Role","_key":"2693","_from":"2336","_to":"2335"} +{"$label":"ACTS_IN","name":"Nicole Baker","type":"Role","_key":"119928","_from":"2336","_to":"70443"} +{"$label":"ACTS_IN","name":"Lydia Ann Layton","type":"Role","_key":"100852","_from":"2336","_to":"59456"} +{"$label":"ACTS_IN","name":"Dr. Rubin","type":"Role","_key":"90778","_from":"2336","_to":"53571"} +{"$label":"ACTS_IN","name":"Marcy Franklin","type":"Role","_key":"66123","_from":"2336","_to":"40908"} +{"$label":"ACTS_IN","name":"Clydie Anderson","type":"Role","_key":"63089","_from":"2336","_to":"39584"} +{"$label":"ACTS_IN","name":"Wendy Balsam","type":"Role","_key":"54032","_from":"2336","_to":"34761"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"52301","_from":"2336","_to":"34051"} +{"$label":"ACTS_IN","name":"Roberta Glass","type":"Role","_key":"48257","_from":"2336","_to":"31702"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"38798","_from":"2336","_to":"26203"} +{"$label":"ACTS_IN","name":"Sophie Oseransky","type":"Role","_key":"17989","_from":"2336","_to":"13374"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"10534","_from":"2336","_to":"8373"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"8208","_from":"2336","_to":"6746"} +{"$label":"ACTS_IN","name":"Giancarlo Iacovoni","type":"Role","_key":"116441","_from":"2337","_to":"68535"} +{"$label":"ACTS_IN","name":"Enzo Ferrari","type":"Role","_key":"104571","_from":"2337","_to":"61510"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"28409","_from":"2337","_to":"20322"} +{"$label":"ACTS_IN","name":"King Miraz","type":"Role","_key":"21524","_from":"2337","_to":"15744"} +{"$label":"ACTS_IN","name":"Le mari (Bastille)","type":"Role","_key":"19870","_from":"2337","_to":"14635"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"119131","_from":"2338","_to":"70017"} +{"$label":"ACTS_IN","name":"Le ministre","type":"Role","_key":"66867","_from":"2338","_to":"41293"} +{"$label":"ACTS_IN","name":"le journaliste","type":"Role","_key":"42084","_from":"2338","_to":"28196"} +{"$label":"ACTS_IN","name":"Inspecteur Boulard","type":"Role","_key":"38006","_from":"2338","_to":"25724"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"33958","_from":"2338","_to":"23371"} +{"$label":"ACTS_IN","name":"le r\u00e9dacteur","type":"Role","_key":"33822","_from":"2338","_to":"23307"} +{"$label":"ACTS_IN","name":"Maurice Duplay","type":"Role","_key":"30231","_from":"2338","_to":"21284"} +{"$label":"ACTS_IN","name":"Francois","type":"Role","_key":"27363","_from":"2338","_to":"19664"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"27120","_from":"2338","_to":"19519"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"27108","_from":"2338","_to":"19515"} +{"$label":"ACTS_IN","name":"Georges Pirou","type":"Role","_key":"23054","_from":"2338","_to":"16714"} +{"$label":"ACTS_IN","name":"Bouteiller","type":"Role","_key":"20835","_from":"2338","_to":"15239"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"53124","_from":"2339","_to":"34371"} +{"$label":"ACTS_IN","name":"Inspecteur","type":"Role","_key":"5168","_from":"2339","_to":"4384"} +{"$label":"DIRECTED","_key":"120458","_from":"2340","_to":"70763"} +{"$label":"DIRECTED","_key":"94324","_from":"2340","_to":"55539"} +{"$label":"DIRECTED","_key":"43390","_from":"2340","_to":"28988"} +{"$label":"DIRECTED","_key":"17893","_from":"2340","_to":"13319"} +{"$label":"ACTS_IN","name":"Tommy Kelly","type":"Role","_key":"110116","_from":"2340","_to":"65070"} +{"$label":"ACTS_IN","name":"Auditioner","type":"Role","_key":"72068","_from":"2340","_to":"43573"} +{"$label":"ACTS_IN","name":"Paul Hackett","type":"Role","_key":"66122","_from":"2340","_to":"40908"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"38792","_from":"2340","_to":"26203"} +{"$label":"ACTS_IN","name":"Mr. Jake Bixler","type":"Role","_key":"29488","_from":"2340","_to":"20905"} +{"$label":"ACTS_IN","name":"Jack Goodman","type":"Role","_key":"9591","_from":"2340","_to":"7723"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"50732","_from":"2342","_to":"33114"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"2889","_from":"2342","_to":"2486"} +{"$label":"ACTS_IN","name":"Trisha 'Trish' Jarvis","type":"Role","_key":"56147","_from":"2343","_to":"35690"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"2721","_from":"2362","_to":"2347"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"2720","_from":"2361","_to":"2347"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"2719","_from":"2360","_to":"2347"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"2718","_from":"2359","_to":"2347"} +{"$label":"ACTS_IN","name":"Alison Gordon","type":"Role","_key":"2717","_from":"2358","_to":"2347"} +{"$label":"ACTS_IN","name":"Diana Gordon","type":"Role","_key":"2716","_from":"2357","_to":"2347"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"2715","_from":"2356","_to":"2347"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"2714","_from":"2355","_to":"2347"} +{"$label":"ACTS_IN","name":"Zep Hindle","type":"Role","_key":"2713","_from":"2354","_to":"2347"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"2712","_from":"2353","_to":"2347"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"2711","_from":"2352","_to":"2347"} +{"$label":"ACTS_IN","name":"Detective Steven Sing","type":"Role","_key":"2709","_from":"2351","_to":"2347"} +{"$label":"ACTS_IN","name":"Dr. Lawrence Gordon","type":"Role","_key":"2707","_from":"2350","_to":"2347"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"2706","_from":"2349","_to":"2347"} +{"$label":"DIRECTED","_key":"2705","_from":"2348","_to":"2347"} +{"$label":"DIRECTED","_key":"98046","_from":"2348","_to":"57732"} +{"$label":"DIRECTED","_key":"72273","_from":"2348","_to":"43661"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"114656","_from":"2349","_to":"67545"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"113228","_from":"2350","_to":"66717"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"100286","_from":"2350","_to":"59140"} +{"$label":"ACTS_IN","name":"Lt. Col. James Burton","type":"Role","_key":"100266","_from":"2350","_to":"59133"} +{"$label":"ACTS_IN","name":"Capt. Kenneth Shine","type":"Role","_key":"97632","_from":"2350","_to":"57491"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"93059","_from":"2350","_to":"54863"} +{"$label":"ACTS_IN","name":"Fritz Arno Wagner","type":"Role","_key":"66402","_from":"2350","_to":"41065"} +{"$label":"ACTS_IN","name":"Captain William Boone","type":"Role","_key":"65203","_from":"2350","_to":"40494"} +{"$label":"ACTS_IN","name":"D.A. Jack Reigert","type":"Role","_key":"60126","_from":"2350","_to":"37937"} +{"$label":"ACTS_IN","name":"Maj. Cabot Forbes","type":"Role","_key":"55408","_from":"2350","_to":"35321"} +{"$label":"ACTS_IN","name":"Lt. Kent Gregory","type":"Role","_key":"54918","_from":"2350","_to":"35117"} +{"$label":"ACTS_IN","name":": Det. Nick Ruskin","type":"Role","_key":"53838","_from":"2350","_to":"34681"} +{"$label":"ACTS_IN","name":"Robin Hood","type":"Role","_key":"47709","_from":"2350","_to":"31431"} +{"$label":"ACTS_IN","name":"Lord Arthur Helmwood","type":"Role","_key":"41771","_from":"2350","_to":"28027"} +{"$label":"ACTS_IN","name":"Westley","type":"Role","_key":"21700","_from":"2350","_to":"15866"} +{"$label":"ACTS_IN","name":"Russ Weehler","type":"Role","_key":"18481","_from":"2350","_to":"13689"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"14398","_from":"2350","_to":"11130"} +{"$label":"ACTS_IN","name":"Dr. Jonas Miller","type":"Role","_key":"7935","_from":"2350","_to":"6576"} +{"$label":"ACTS_IN","name":"Liam Liu","type":"Role","_key":"104107","_from":"2351","_to":"61250"} +{"$label":"ACTS_IN","name":"Sang","type":"Role","_key":"18386","_from":"2351","_to":"13635"} +{"$label":"ACTS_IN","name":"Mr. Jackson","type":"Role","_key":"60451","_from":"2352","_to":"38129"} +{"$label":"ACTS_IN","name":"Harrigan","type":"Role","_key":"14726","_from":"2354","_to":"11325"} +{"$label":"ACTS_IN","name":"Bosco","type":"Role","_key":"9750","_from":"2354","_to":"7817"} +{"$label":"ACTS_IN","name":"Officer Jones","type":"Role","_key":"58804","_from":"2355","_to":"37140"} +{"$label":"ACTS_IN","name":"Ramsey","type":"Role","_key":"56122","_from":"2355","_to":"35670"} +{"$label":"ACTS_IN","name":"Dr. Julio Ruiz","type":"Role","_key":"45270","_from":"2355","_to":"30038"} +{"$label":"ACTS_IN","name":"Julie Lawry","type":"Role","_key":"94982","_from":"2356","_to":"55928"} +{"$label":"ACTS_IN","name":"Amanda Young","type":"Role","_key":"72749","_from":"2356","_to":"43828"} +{"$label":"ACTS_IN","name":"Meg Penny","type":"Role","_key":"54941","_from":"2356","_to":"35126"} +{"$label":"ACTS_IN","name":"Dr.Sullivan","type":"Role","_key":"17138","_from":"2356","_to":"12838"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"3090","_from":"2356","_to":"2649"} +{"$label":"ACTS_IN","name":"Amanda Young","type":"Role","_key":"3086","_from":"2356","_to":"2645"} +{"$label":"ACTS_IN","name":"Paige Hardwicke","type":"Role","_key":"92306","_from":"2357","_to":"54472"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"59540","_from":"2357","_to":"37584"} +{"$label":"ACTS_IN","name":"Annie Campbell","type":"Role","_key":"40947","_from":"2357","_to":"27547"} +{"$label":"ACTS_IN","name":"Nancy (11 Years)","type":"Role","_key":"2849","_from":"2357","_to":"2450"} +{"$label":"ACTS_IN","name":"Emma Collingwood","type":"Role","_key":"116051","_from":"2358","_to":"68340"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"43165","_from":"2358","_to":"28826"} +{"$label":"ACTS_IN","name":"Jezzie Flannigan","type":"Role","_key":"17784","_from":"2358","_to":"13263"} +{"$label":"ACTS_IN","name":"Tricia Poe","type":"Role","_key":"15087","_from":"2358","_to":"11583"} +{"$label":"ACTS_IN","name":"Snowplow Driver","type":"Role","_key":"99157","_from":"2359","_to":"58419"} +{"$label":"ACTS_IN","name":"Ooq-Yu-Fay Taqnufmini \/ Zubleh","type":"Role","_key":"93359","_from":"2359","_to":"54992"} +{"$label":"ACTS_IN","name":"Tom Fiori","type":"Role","_key":"63267","_from":"2359","_to":"39660"} +{"$label":"ACTS_IN","name":"Phil Grimes","type":"Role","_key":"59045","_from":"2359","_to":"37275"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46326","_from":"2359","_to":"30610"} +{"$label":"ACTS_IN","name":"Evans","type":"Role","_key":"13338","_from":"2359","_to":"10382"} +{"$label":"ACTS_IN","name":"Dr. Tom Mason","type":"Role","_key":"6250","_from":"2359","_to":"5281"} +{"$label":"ACTS_IN","name":"Derek Mantini","type":"Role","_key":"5990","_from":"2359","_to":"5081"} +{"$label":"ACTS_IN","name":"Professor Erwin Buckton","type":"Role","_key":"116214","_from":"2362","_to":"68425"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"115376","_from":"2362","_to":"67934"} +{"$label":"ACTS_IN","name":"John Kramer","type":"Role","_key":"72750","_from":"2362","_to":"43828"} +{"$label":"ACTS_IN","name":"Mendoza","type":"Role","_key":"53520","_from":"2362","_to":"34555"} +{"$label":"ACTS_IN","name":"Earl Leemus","type":"Role","_key":"19643","_from":"2362","_to":"14529"} +{"$label":"ACTS_IN","name":"Jigsaw\/John","type":"Role","_key":"7917","_from":"2362","_to":"6564"} +{"$label":"ACTS_IN","name":"Jigsaw","type":"Role","_key":"3089","_from":"2362","_to":"2649"} +{"$label":"ACTS_IN","name":"John Kramer","type":"Role","_key":"3082","_from":"2362","_to":"2645"} +{"$label":"ACTS_IN","name":"Parry's Wife","type":"Role","_key":"2732","_from":"2371","_to":"2363"} +{"$label":"ACTS_IN","name":"TV Executive","type":"Role","_key":"2731","_from":"2370","_to":"2363"} +{"$label":"ACTS_IN","name":"Lou Rosen","type":"Role","_key":"2730","_from":"2369","_to":"2363"} +{"$label":"ACTS_IN","name":"Radio Engineer","type":"Role","_key":"2729","_from":"2368","_to":"2363"} +{"$label":"ACTS_IN","name":"Crazy video customer","type":"Role","_key":"2728","_from":"2367","_to":"2363"} +{"$label":"ACTS_IN","name":"Sondra","type":"Role","_key":"2727","_from":"2366","_to":"2363"} +{"$label":"ACTS_IN","name":"Anne Napolitano","type":"Role","_key":"2724","_from":"2365","_to":"2363"} +{"$label":"ACTS_IN","name":"Henry Sagan 'Parry'","type":"Role","_key":"2723","_from":"2364","_to":"2363"} +{"$label":"ACTS_IN","name":"Teddy Roosevelt","type":"Role","_key":"115891","_from":"2364","_to":"68230"} +{"$label":"ACTS_IN","name":"Batty Koda (voice)","type":"Role","_key":"93534","_from":"2364","_to":"55072"} +{"$label":"ACTS_IN","name":"Dale Putley","type":"Role","_key":"89899","_from":"2364","_to":"53201"} +{"$label":"ACTS_IN","name":"Chris Nielsen","type":"Role","_key":"88360","_from":"2364","_to":"52388"} +{"$label":"ACTS_IN","name":"Leslie Zevo","type":"Role","_key":"70970","_from":"2364","_to":"43106"} +{"$label":"ACTS_IN","name":"Doctor Cozy Carlisle","type":"Role","_key":"70189","_from":"2364","_to":"42779"} +{"$label":"ACTS_IN","name":"Popeye","type":"Role","_key":"69201","_from":"2364","_to":"42322"} +{"$label":"ACTS_IN","name":"T.S. Garp","type":"Role","_key":"69048","_from":"2364","_to":"42265"} +{"$label":"ACTS_IN","name":"Genie (voice)","type":"Role","_key":"68733","_from":"2364","_to":"42116"} +{"$label":"ACTS_IN","name":"Alan W. Hakman","type":"Role","_key":"67867","_from":"2364","_to":"41699"} +{"$label":"ACTS_IN","name":"Dr. Malcolm Sayer","type":"Role","_key":"67231","_from":"2364","_to":"41456"} +{"$label":"ACTS_IN","name":"Armand Goldman","type":"Role","_key":"67199","_from":"2364","_to":"41451"} +{"$label":"ACTS_IN","name":"Osric","type":"Role","_key":"64005","_from":"2364","_to":"39964"} +{"$label":"ACTS_IN","name":"Hunter 'Patch' Adams","type":"Role","_key":"62532","_from":"2364","_to":"39365"} +{"$label":"ACTS_IN","name":"Joey O'Brien","type":"Role","_key":"61354","_from":"2364","_to":"38719"} +{"$label":"ACTS_IN","name":"Paul Barnell","type":"Role","_key":"58692","_from":"2364","_to":"37074"} +{"$label":"ACTS_IN","name":"Fender (voice)","type":"Role","_key":"58222","_from":"2364","_to":"36829"} +{"$label":"ACTS_IN","name":"Tom Dobbs","type":"Role","_key":"57673","_from":"2364","_to":"36513"} +{"$label":"ACTS_IN","name":"Ramon \/ Lovelace","type":"Role","_key":"57329","_from":"2364","_to":"36355"} +{"$label":"ACTS_IN","name":"Gabriel Noone","type":"Role","_key":"56696","_from":"2364","_to":"36013"} +{"$label":"ACTS_IN","name":"Professor Philip Brainard","type":"Role","_key":"54788","_from":"2364","_to":"35058"} +{"$label":"ACTS_IN","name":"Bob Munro","type":"Role","_key":"54477","_from":"2364","_to":"34927"} +{"$label":"ACTS_IN","name":"Seymour Parrish","type":"Role","_key":"53327","_from":"2364","_to":"34478"} +{"$label":"ACTS_IN","name":"Rainbow Randolph","type":"Role","_key":"52779","_from":"2364","_to":"34241"} +{"$label":"ACTS_IN","name":"Alan Parrish","type":"Role","_key":"51039","_from":"2364","_to":"33309"} +{"$label":"ACTS_IN","name":"Jack Charles Powell","type":"Role","_key":"45822","_from":"2364","_to":"30306"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39527","_from":"2364","_to":"26695"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"39458","_from":"2364","_to":"26674"} +{"$label":"ACTS_IN","name":"Tom Dobbs","type":"Role","_key":"39294","_from":"2364","_to":"26558"} +{"$label":"ACTS_IN","name":"Maxwell \"Wizard\" Wallace","type":"Role","_key":"35996","_from":"2364","_to":"24440"} +{"$label":"ACTS_IN","name":"Reverend Frank","type":"Role","_key":"24433","_from":"2364","_to":"17679"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"20077","_from":"2364","_to":"14765"} +{"$label":"ACTS_IN","name":"Andrew Martin","type":"Role","_key":"19980","_from":"2364","_to":"14709"} +{"$label":"ACTS_IN","name":"Theodore Roosevelt","type":"Role","_key":"14119","_from":"2364","_to":"10934"} +{"$label":"ACTS_IN","name":"Peter Banning","type":"Role","_key":"10451","_from":"2364","_to":"8318"} +{"$label":"ACTS_IN","name":"Genie (voice)","type":"Role","_key":"9563","_from":"2364","_to":"7702"} +{"$label":"ACTS_IN","name":"Adrian Cronauer","type":"Role","_key":"9444","_from":"2364","_to":"7625"} +{"$label":"ACTS_IN","name":"Mrs. Doubtfire","type":"Role","_key":"9275","_from":"2364","_to":"7496"} +{"$label":"ACTS_IN","name":"Dr. Know (voice)","type":"Role","_key":"7701","_from":"2364","_to":"6393"} +{"$label":"ACTS_IN","name":"Sean Maguire","type":"Role","_key":"5943","_from":"2364","_to":"5047"} +{"$label":"ACTS_IN","name":"Walter Finch","type":"Role","_key":"4444","_from":"2364","_to":"3790"} +{"$label":"ACTS_IN","name":"John Keating","type":"Role","_key":"3027","_from":"2364","_to":"2594"} +{"$label":"ACTS_IN","name":"Kay","type":"Role","_key":"105430","_from":"2365","_to":"62026"} +{"$label":"ACTS_IN","name":"Mrs. Baskin","type":"Role","_key":"19991","_from":"2365","_to":"14711"} +{"$label":"ACTS_IN","name":"Sunny St. Cloud (voice)","type":"Role","_key":"94091","_from":"2367","_to":"55405"} +{"$label":"ACTS_IN","name":"Minister of Summer","type":"Role","_key":"93214","_from":"2367","_to":"54917"} +{"$label":"ACTS_IN","name":"Mary (voice)","type":"Role","_key":"65038","_from":"2367","_to":"40412"} +{"$label":"ACTS_IN","name":"Mary Sanderson","type":"Role","_key":"63366","_from":"2367","_to":"39709"} +{"$label":"ACTS_IN","name":"Aunt Taqqiq","type":"Role","_key":"59403","_from":"2367","_to":"37525"} +{"$label":"ACTS_IN","name":"Sister Mary Patrick","type":"Role","_key":"42786","_from":"2367","_to":"28626"} +{"$label":"ACTS_IN","name":"Geri","type":"Role","_key":"17533","_from":"2367","_to":"13103"} +{"$label":"ACTS_IN","name":"Sister Mary Patrick","type":"Role","_key":"17411","_from":"2367","_to":"13020"} +{"$label":"ACTS_IN","name":"The Narrator","type":"Role","_key":"111484","_from":"2369","_to":"65827"} +{"$label":"ACTS_IN","name":"Emperor Zombie (voice)","type":"Role","_key":"105130","_from":"2369","_to":"61866"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"103527","_from":"2369","_to":"60902"} +{"$label":"ACTS_IN","name":"Drix (voice)","type":"Role","_key":"90589","_from":"2369","_to":"53504"} +{"$label":"ACTS_IN","name":"Peter MacMannus","type":"Role","_key":"65245","_from":"2369","_to":"40504"} +{"$label":"ACTS_IN","name":"Dr. Delbert Doppler","type":"Role","_key":"52020","_from":"2369","_to":"33920"} +{"$label":"ACTS_IN","name":"Theater Guy","type":"Role","_key":"45788","_from":"2369","_to":"30289"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"18896","_from":"2369","_to":"13951"} +{"$label":"ACTS_IN","name":"Dennis Reed","type":"Role","_key":"10205","_from":"2369","_to":"8139"} +{"$label":"ACTS_IN","name":"Colonel John 'Jack' Lynch (voice)","type":"Role","_key":"106586","_from":"2370","_to":"62807"} +{"$label":"ACTS_IN","name":"Alex Reeves","type":"Role","_key":"101199","_from":"2370","_to":"59608"} +{"$label":"ACTS_IN","name":"Dr. Quentin Morris","type":"Role","_key":"88609","_from":"2370","_to":"52505"} +{"$label":"ACTS_IN","name":"Lord John Roxton","type":"Role","_key":"24820","_from":"2370","_to":"17947"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2741","_from":"2378","_to":"2372"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2740","_from":"2377","_to":"2372"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2739","_from":"2376","_to":"2372"} +{"$label":"ACTS_IN","name":"Kate Dove","type":"Role","_key":"2738","_from":"2375","_to":"2372"} +{"$label":"ACTS_IN","name":"Anthony Franklin","type":"Role","_key":"2737","_from":"2374","_to":"2372"} +{"$label":"ACTS_IN","name":"Max O'Bannon","type":"Role","_key":"2736","_from":"2373","_to":"2372"} +{"$label":"ACTS_IN","name":"Fred Clarkson","type":"Role","_key":"117480","_from":"2373","_to":"69085"} +{"$label":"ACTS_IN","name":"Clifford Sterling","type":"Role","_key":"68207","_from":"2373","_to":"41885"} +{"$label":"ACTS_IN","name":"Adm. Thomas 'Tug' Benson","type":"Role","_key":"54920","_from":"2373","_to":"35117"} +{"$label":"ACTS_IN","name":"President Thomas 'Tug' Benson","type":"Role","_key":"52618","_from":"2373","_to":"34186"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"30072","_from":"2373","_to":"21200"} +{"$label":"ACTS_IN","name":"Ben Dixon","type":"Role","_key":"29078","_from":"2373","_to":"20726"} +{"$label":"ACTS_IN","name":"Dutch Seymour","type":"Role","_key":"25550","_from":"2373","_to":"18410"} +{"$label":"ACTS_IN","name":"Steven McCroskey","type":"Role","_key":"22573","_from":"2373","_to":"16390"} +{"$label":"ACTS_IN","name":"Samuel Harvey Graynamore","type":"Role","_key":"21969","_from":"2373","_to":"16044"} +{"$label":"ACTS_IN","name":"McCroskey","type":"Role","_key":"9576","_from":"2373","_to":"7714"} +{"$label":"ACTS_IN","name":"Deputy Marshal Harvey Pell","type":"Role","_key":"4026","_from":"2373","_to":"3434"} +{"$label":"ACTS_IN","name":"Clyde Snow","type":"Role","_key":"118819","_from":"2374","_to":"69851"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"116540","_from":"2374","_to":"68599"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"113802","_from":"2374","_to":"67048"} +{"$label":"ACTS_IN","name":"Ira (voice)","type":"Role","_key":"109398","_from":"2374","_to":"64630"} +{"$label":"ACTS_IN","name":"Charlie Archenault","type":"Role","_key":"106778","_from":"2374","_to":"62951"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"104139","_from":"2374","_to":"61265"} +{"$label":"ACTS_IN","name":"Abe Holt","type":"Role","_key":"103281","_from":"2374","_to":"60763"} +{"$label":"ACTS_IN","name":"Dr. James Farmer Sr.","type":"Role","_key":"98268","_from":"2374","_to":"57887"} +{"$label":"ACTS_IN","name":"Happiness","type":"Role","_key":"95642","_from":"2374","_to":"56251"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"69538","_from":"2374","_to":"42469"} +{"$label":"ACTS_IN","name":"Dan Smithson, Empath","type":"Role","_key":"53280","_from":"2374","_to":"34454"} +{"$label":"ACTS_IN","name":"Nate Pope","type":"Role","_key":"52948","_from":"2374","_to":"34307"} +{"$label":"ACTS_IN","name":"Howard Lewis","type":"Role","_key":"46817","_from":"2374","_to":"30888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37481","_from":"2374","_to":"25394"} +{"$label":"ACTS_IN","name":"Ker","type":"Role","_key":"37467","_from":"2374","_to":"25390"} +{"$label":"ACTS_IN","name":"Ghost Dog","type":"Role","_key":"34191","_from":"2374","_to":"23484"} +{"$label":"ACTS_IN","name":"Major Collins","type":"Role","_key":"33630","_from":"2374","_to":"23223"} +{"$label":"ACTS_IN","name":"Burnham","type":"Role","_key":"32535","_from":"2374","_to":"22626"} +{"$label":"ACTS_IN","name":"Cy Bianco","type":"Role","_key":"28151","_from":"2374","_to":"20177"} +{"$label":"ACTS_IN","name":"Captain Ed Ramey","type":"Role","_key":"15730","_from":"2374","_to":"11989"} +{"$label":"ACTS_IN","name":"Idi Amin","type":"Role","_key":"13578","_from":"2374","_to":"10561"} +{"$label":"ACTS_IN","name":"Captain Jack Wander","type":"Role","_key":"12374","_from":"2374","_to":"9696"} +{"$label":"ACTS_IN","name":"Edward Montesque Garlick","type":"Role","_key":"9445","_from":"2374","_to":"7625"} +{"$label":"ACTS_IN","name":"Big Harold","type":"Role","_key":"9327","_from":"2374","_to":"7539"} +{"$label":"ACTS_IN","name":"Dr. Steven Fisher","type":"Role","_key":"6101","_from":"2374","_to":"5178"} +{"$label":"DIRECTED","_key":"97882","_from":"2374","_to":"57652"} +{"$label":"DIRECTED","_key":"55944","_from":"2374","_to":"35575"} +{"$label":"ACTS_IN","name":"Edie Finneran","type":"Role","_key":"7477","_from":"2375","_to":"6221"} +{"$label":"ACTS_IN","name":"Lizzy Calvert","type":"Role","_key":"7189","_from":"2375","_to":"6002"} +{"$label":"ACTS_IN","name":"Valerian","type":"Role","_key":"10044","_from":"2377","_to":"8038"} +{"$label":"ACTS_IN","name":"FBI Agent Lewis","type":"Role","_key":"2760","_from":"2395","_to":"2379"} +{"$label":"ACTS_IN","name":"FBI Agent King","type":"Role","_key":"2759","_from":"2394","_to":"2379"} +{"$label":"ACTS_IN","name":"Jean Gamba","type":"Role","_key":"2758","_from":"2393","_to":"2379"} +{"$label":"ACTS_IN","name":"Ajene Xola","type":"Role","_key":"2757","_from":"2392","_to":"2379"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"2756","_from":"2391","_to":"2379"} +{"$label":"ACTS_IN","name":"Mo","type":"Role","_key":"2755","_from":"2390","_to":"2379"} +{"$label":"ACTS_IN","name":"Simon Broome","type":"Role","_key":"2754","_from":"2389","_to":"2379"} +{"$label":"ACTS_IN","name":"Rory Robb","type":"Role","_key":"2753","_from":"2388","_to":"2379"} +{"$label":"ACTS_IN","name":"Police Chief Lee Wu","type":"Role","_key":"2752","_from":"2387","_to":"2379"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"2751","_from":"2386","_to":"2379"} +{"$label":"ACTS_IN","name":"Kuman-Kuman","type":"Role","_key":"2750","_from":"2385","_to":"2379"} +{"$label":"ACTS_IN","name":"Dr. Zuwanie","type":"Role","_key":"2749","_from":"2384","_to":"2379"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"2748","_from":"2383","_to":"2379"} +{"$label":"ACTS_IN","name":"Dot Woods","type":"Role","_key":"2746","_from":"2382","_to":"2379"} +{"$label":"ACTS_IN","name":"Tobin Keller","type":"Role","_key":"2745","_from":"2381","_to":"2379"} +{"$label":"ACTS_IN","name":"Silvia Broome","type":"Role","_key":"2744","_from":"2380","_to":"2379"} +{"$label":"ACTS_IN","name":"Diane Arbus","type":"Role","_key":"116828","_from":"2380","_to":"68776"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"112088","_from":"2380","_to":"66182"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"98036","_from":"2380","_to":"57728"} +{"$label":"ACTS_IN","name":"Drew Preston","type":"Role","_key":"90795","_from":"2380","_to":"53581"} +{"$label":"ACTS_IN","name":"Shannon Christie","type":"Role","_key":"68843","_from":"2380","_to":"42176"} +{"$label":"ACTS_IN","name":"Faunia Farley","type":"Role","_key":"66766","_from":"2380","_to":"41254"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"65360","_from":"2380","_to":"40550"} +{"$label":"ACTS_IN","name":"Rae Ingram","type":"Role","_key":"63663","_from":"2380","_to":"39823"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"61635","_from":"2380","_to":"38839"} +{"$label":"ACTS_IN","name":"Joanna Eberhart","type":"Role","_key":"57615","_from":"2380","_to":"36484"} +{"$label":"ACTS_IN","name":"Norma Jean","type":"Role","_key":"57336","_from":"2380","_to":"36355"} +{"$label":"ACTS_IN","name":"Isabel Bigelow","type":"Role","_key":"56008","_from":"2380","_to":"35606"} +{"$label":"ACTS_IN","name":"Lady Sarah Ashley","type":"Role","_key":"45493","_from":"2380","_to":"30139"} +{"$label":"ACTS_IN","name":"Julia Kelly","type":"Role","_key":"44367","_from":"2380","_to":"29564"} +{"$label":"ACTS_IN","name":"Gillian Owens","type":"Role","_key":"43383","_from":"2380","_to":"28988"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"34421","_from":"2380","_to":"23588"} +{"$label":"ACTS_IN","name":"Ada Monroe","type":"Role","_key":"20070","_from":"2380","_to":"14764"} +{"$label":"ACTS_IN","name":"Marisa Coutter","type":"Role","_key":"19909","_from":"2380","_to":"14664"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"19635","_from":"2380","_to":"14529"} +{"$label":"ACTS_IN","name":"Dr. Claire Lewicki","type":"Role","_key":"18479","_from":"2380","_to":"13689"} +{"$label":"ACTS_IN","name":"Sophie alias Nadia","type":"Role","_key":"18134","_from":"2380","_to":"13461"} +{"$label":"ACTS_IN","name":"Grace Stewart","type":"Role","_key":"16742","_from":"2380","_to":"12628"} +{"$label":"ACTS_IN","name":"Satine","type":"Role","_key":"9724","_from":"2380","_to":"7809"} +{"$label":"ACTS_IN","name":"Virginia Woolf","type":"Role","_key":"7069","_from":"2380","_to":"5922"} +{"$label":"ACTS_IN","name":"Suzanne Stone Maretto","type":"Role","_key":"6894","_from":"2380","_to":"5792"} +{"$label":"ACTS_IN","name":"Grace Margaret Mulligan","type":"Role","_key":"6600","_from":"2380","_to":"5579"} +{"$label":"ACTS_IN","name":"Dr. Chase Meridian","type":"Role","_key":"5250","_from":"2380","_to":"4463"} +{"$label":"ACTS_IN","name":"Alice Harford","type":"Role","_key":"4750","_from":"2380","_to":"4061"} +{"$label":"ACTS_IN","name":"Brad Whitewood Jr.","type":"Role","_key":"96043","_from":"2381","_to":"56457"} +{"$label":"ACTS_IN","name":"Mick O'Brien","type":"Role","_key":"95557","_from":"2381","_to":"56195"} +{"$label":"ACTS_IN","name":"Thomas Janes","type":"Role","_key":"95045","_from":"2381","_to":"55951"} +{"$label":"ACTS_IN","name":"Jeff Spicoli","type":"Role","_key":"94017","_from":"2381","_to":"55369"} +{"$label":"ACTS_IN","name":"Marciello","type":"Role","_key":"91486","_from":"2381","_to":"53938"} +{"$label":"ACTS_IN","name":"Sam Dawson","type":"Role","_key":"66926","_from":"2381","_to":"41321"} +{"$label":"ACTS_IN","name":"Cadet Captain Alex Dwyer","type":"Role","_key":"64692","_from":"2381","_to":"40291"} +{"$label":"ACTS_IN","name":"Bobby Cooper","type":"Role","_key":"61296","_from":"2381","_to":"38700"} +{"$label":"ACTS_IN","name":"Sgt. Tony Meserve","type":"Role","_key":"61210","_from":"2381","_to":"38667"} +{"$label":"ACTS_IN","name":"Harvey Milk","type":"Role","_key":"61184","_from":"2381","_to":"38659"} +{"$label":"ACTS_IN","name":"Officer Danny McGavin","type":"Role","_key":"61079","_from":"2381","_to":"38615"} +{"$label":"ACTS_IN","name":"Emmet Ray","type":"Role","_key":"55591","_from":"2381","_to":"35397"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"51745","_from":"2381","_to":"33765"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51589","_from":"2381","_to":"33665"} +{"$label":"ACTS_IN","name":"1st Sgt. Welsh","type":"Role","_key":"50629","_from":"2381","_to":"33066"} +{"$label":"ACTS_IN","name":"David Kleinfeld","type":"Role","_key":"41511","_from":"2381","_to":"27891"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"40884","_from":"2381","_to":"27510"} +{"$label":"ACTS_IN","name":"Cuco Sanchez","type":"Role","_key":"35508","_from":"2381","_to":"24144"} +{"$label":"ACTS_IN","name":"Conrad Van Orton","type":"Role","_key":"22500","_from":"2381","_to":"16355"} +{"$label":"ACTS_IN","name":"Willie Stark","type":"Role","_key":"15186","_from":"2381","_to":"11636"} +{"$label":"ACTS_IN","name":"Terry Noonan","type":"Role","_key":"14766","_from":"2381","_to":"11361"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"12509","_from":"2381","_to":"9800"} +{"$label":"ACTS_IN","name":"Samuel Bicke","type":"Role","_key":"9951","_from":"2381","_to":"7967"} +{"$label":"ACTS_IN","name":"Matthew Poncelet","type":"Role","_key":"8276","_from":"2381","_to":"6786"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6004","_from":"2381","_to":"5081"} +{"$label":"ACTS_IN","name":"Paul Rivers","type":"Role","_key":"5825","_from":"2381","_to":"4954"} +{"$label":"ACTS_IN","name":"Jimmy Markum","type":"Role","_key":"4464","_from":"2381","_to":"3810"} +{"$label":"DIRECTED","_key":"40711","_from":"2381","_to":"27400"} +{"$label":"DIRECTED","_key":"40403","_from":"2381","_to":"27245"} +{"$label":"DIRECTED","_key":"16699","_from":"2381","_to":"12595"} +{"$label":"ACTS_IN","name":"Mary Weston","type":"Role","_key":"111909","_from":"2382","_to":"66064"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"109393","_from":"2382","_to":"64630"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"103525","_from":"2382","_to":"60902"} +{"$label":"ACTS_IN","name":"Gertrude Baniszewski","type":"Role","_key":"91995","_from":"2382","_to":"54274"} +{"$label":"ACTS_IN","name":"Brie Marschz","type":"Role","_key":"90664","_from":"2382","_to":"53527"} +{"$label":"ACTS_IN","name":"Elaine Christian","type":"Role","_key":"52960","_from":"2382","_to":"34311"} +{"$label":"ACTS_IN","name":"Nora Wells","type":"Role","_key":"52781","_from":"2382","_to":"34241"} +{"$label":"ACTS_IN","name":"Nicole Springer","type":"Role","_key":"52392","_from":"2382","_to":"34097"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"51922","_from":"2382","_to":"33869"} +{"$label":"ACTS_IN","name":"Amy Welles","type":"Role","_key":"48581","_from":"2382","_to":"31873"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"45316","_from":"2382","_to":"30057"} +{"$label":"ACTS_IN","name":"Jan Burres","type":"Role","_key":"40409","_from":"2382","_to":"27245"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"35150","_from":"2382","_to":"23955"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"12895","_from":"2382","_to":"10063"} +{"$label":"ACTS_IN","name":"Maxine Lund","type":"Role","_key":"5988","_from":"2382","_to":"5081"} +{"$label":"ACTS_IN","name":"Harper Lee","type":"Role","_key":"5053","_from":"2382","_to":"4294"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108310","_from":"2383","_to":"64021"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"101302","_from":"2383","_to":"59643"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"101298","_from":"2383","_to":"59642"} +{"$label":"ACTS_IN","name":"Yvan","type":"Role","_key":"101290","_from":"2383","_to":"59641"} +{"$label":"ACTS_IN","name":"Francois Taillandier","type":"Role","_key":"71007","_from":"2383","_to":"43127"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"36251","_from":"2383","_to":"24600"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"7255","_from":"2383","_to":"6053"} +{"$label":"DIRECTED","_key":"101303","_from":"2383","_to":"59643"} +{"$label":"DIRECTED","_key":"101288","_from":"2383","_to":"59641"} +{"$label":"DIRECTED","_key":"90351","_from":"2383","_to":"53397"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"34306","_from":"2385","_to":"23533"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"24786","_from":"2385","_to":"17924"} +{"$label":"ACTS_IN","name":"Osman Atto","type":"Role","_key":"10162","_from":"2385","_to":"8112"} +{"$label":"ACTS_IN","name":"Victor Duncan","type":"Role","_key":"60429","_from":"2386","_to":"38126"} +{"$label":"ACTS_IN","name":"Clinton","type":"Role","_key":"3373","_from":"2386","_to":"2876"} +{"$label":"ACTS_IN","name":"Mr. Agasa","type":"Role","_key":"22184","_from":"2387","_to":"16167"} +{"$label":"ACTS_IN","name":"Jack Finney","type":"Role","_key":"107835","_from":"2388","_to":"63677"} +{"$label":"ACTS_IN","name":"Foreman","type":"Role","_key":"93113","_from":"2388","_to":"54874"} +{"$label":"ACTS_IN","name":"Leevie","type":"Role","_key":"63295","_from":"2388","_to":"39669"} +{"$label":"ACTS_IN","name":"Rick McCarthy","type":"Role","_key":"42197","_from":"2388","_to":"28261"} +{"$label":"ACTS_IN","name":"Black Billy Jack","type":"Role","_key":"22789","_from":"2388","_to":"16516"} +{"$label":"ACTS_IN","name":"Moly","type":"Role","_key":"63228","_from":"2390","_to":"39644"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"108007","_from":"2392","_to":"63792"} +{"$label":"ACTS_IN","name":"Nathan with Bicycle","type":"Role","_key":"2772","_from":"2404","_to":"2396"} +{"$label":"ACTS_IN","name":"Lara Clarke Anderton","type":"Role","_key":"2770","_from":"2403","_to":"2396"} +{"$label":"ACTS_IN","name":"Dr. Iris Hineman","type":"Role","_key":"2769","_from":"2402","_to":"2396"} +{"$label":"ACTS_IN","name":"Agatha","type":"Role","_key":"2768","_from":"2401","_to":"2396"} +{"$label":"ACTS_IN","name":"Evanna","type":"Role","_key":"2766","_from":"2400","_to":"2396"} +{"$label":"ACTS_IN","name":"Officer Jeff Knott","type":"Role","_key":"2765","_from":"2399","_to":"2396"} +{"$label":"ACTS_IN","name":"Jad","type":"Role","_key":"2764","_from":"2398","_to":"2396"} +{"$label":"ACTS_IN","name":"Pre-Crime Director Lamar Burgess","type":"Role","_key":"2763","_from":"2397","_to":"2396"} +{"$label":"ACTS_IN","name":"Johan Borg","type":"Role","_key":"115853","_from":"2397","_to":"68205"} +{"$label":"ACTS_IN","name":"Major Karl von Steiner","type":"Role","_key":"112030","_from":"2397","_to":"66149"} +{"$label":"ACTS_IN","name":"Rev. Abner Hale","type":"Role","_key":"101453","_from":"2397","_to":"59719"} +{"$label":"ACTS_IN","name":"Dr. Alexandr Bukhanovsky","type":"Role","_key":"90234","_from":"2397","_to":"53351"} +{"$label":"ACTS_IN","name":"Albert Lewis (as the tracker)","type":"Role","_key":"88363","_from":"2397","_to":"52388"} +{"$label":"ACTS_IN","name":"G. Joubert","type":"Role","_key":"73019","_from":"2397","_to":"43941"} +{"$label":"ACTS_IN","name":"T\u00f6re","type":"Role","_key":"71335","_from":"2397","_to":"43269"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"70998","_from":"2397","_to":"43123"} +{"$label":"ACTS_IN","name":"Pater Lancaster Merrin","type":"Role","_key":"70873","_from":"2397","_to":"43071"} +{"$label":"ACTS_IN","name":"Dr. Jeremiah Naehring","type":"Role","_key":"69141","_from":"2397","_to":"42293"} +{"$label":"ACTS_IN","name":"Eyvind","type":"Role","_key":"68421","_from":"2397","_to":"41974"} +{"$label":"ACTS_IN","name":"Lassefar","type":"Role","_key":"68327","_from":"2397","_to":"41937"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"66313","_from":"2397","_to":"41023"} +{"$label":"ACTS_IN","name":"Leland Gaunt","type":"Role","_key":"64868","_from":"2397","_to":"40346"} +{"$label":"ACTS_IN","name":"Henry Farber","type":"Role","_key":"62693","_from":"2397","_to":"39423"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61479","_from":"2397","_to":"38771"} +{"$label":"ACTS_IN","name":"Sm\u00e5lands-Pelle","type":"Role","_key":"55258","_from":"2397","_to":"35239"} +{"$label":"ACTS_IN","name":"Father Merrin","type":"Role","_key":"54626","_from":"2397","_to":"34989"} +{"$label":"ACTS_IN","name":"Chief Justice Fargo","type":"Role","_key":"54158","_from":"2397","_to":"34797"} +{"$label":"ACTS_IN","name":"King Osric","type":"Role","_key":"53524","_from":"2397","_to":"34556"} +{"$label":"ACTS_IN","name":"Varden Reynard","type":"Role","_key":"36250","_from":"2397","_to":"24600"} +{"$label":"ACTS_IN","name":"Frederick","type":"Role","_key":"36075","_from":"2397","_to":"24486"} +{"$label":"ACTS_IN","name":"Kaiser Ming","type":"Role","_key":"28341","_from":"2397","_to":"20283"} +{"$label":"ACTS_IN","name":"Gerald Mortenhoe","type":"Role","_key":"27064","_from":"2397","_to":"19484"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"21243","_from":"2397","_to":"15553"} +{"$label":"ACTS_IN","name":"Admiral Chernavin","type":"Role","_key":"18537","_from":"2397","_to":"13721"} +{"$label":"ACTS_IN","name":"Papinou","type":"Role","_key":"17482","_from":"2397","_to":"13069"} +{"$label":"ACTS_IN","name":"Dr. Kynes","type":"Role","_key":"9946","_from":"2397","_to":"7956"} +{"$label":"ACTS_IN","name":"Henrik \u00c5kerman","type":"Role","_key":"7290","_from":"2397","_to":"6077"} +{"$label":"ACTS_IN","name":"Antonius Block","type":"Role","_key":"5961","_from":"2397","_to":"5059"} +{"$label":"ACTS_IN","name":"Special Agent George Aiken","type":"Role","_key":"111227","_from":"2398","_to":"65683"} +{"$label":"ACTS_IN","name":"Det. Briggs","type":"Role","_key":"109001","_from":"2398","_to":"64413"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"107932","_from":"2398","_to":"63743"} +{"$label":"ACTS_IN","name":"Scott Percival","type":"Role","_key":"96816","_from":"2398","_to":"56936"} +{"$label":"ACTS_IN","name":"Bison","type":"Role","_key":"103803","_from":"2399","_to":"61054"} +{"$label":"ACTS_IN","name":"Max Archer","type":"Role","_key":"93742","_from":"2399","_to":"55182"} +{"$label":"ACTS_IN","name":"Jay Hamilton","type":"Role","_key":"69386","_from":"2399","_to":"42416"} +{"$label":"ACTS_IN","name":"Private Reich","type":"Role","_key":"61736","_from":"2399","_to":"38878"} +{"$label":"ACTS_IN","name":"Frank Gordon","type":"Role","_key":"54705","_from":"2399","_to":"35025"} +{"$label":"ACTS_IN","name":"Leutnant Esteridge","type":"Role","_key":"49518","_from":"2399","_to":"32418"} +{"$label":"ACTS_IN","name":"Daniel Fleming","type":"Role","_key":"39899","_from":"2399","_to":"26959"} +{"$label":"ACTS_IN","name":"Skinner","type":"Role","_key":"33155","_from":"2399","_to":"22958"} +{"$label":"ACTS_IN","name":"Captain Severance","type":"Role","_key":"28498","_from":"2399","_to":"20373"} +{"$label":"ACTS_IN","name":"Jon Forster","type":"Role","_key":"27456","_from":"2399","_to":"19709"} +{"$label":"ACTS_IN","name":"1st Lt. Lynn 'Buck' Compton","type":"Role","_key":"26812","_from":"2399","_to":"19258"} +{"$label":"ACTS_IN","name":"Lieutenant Hawk","type":"Role","_key":"2964","_from":"2399","_to":"2546"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"117524","_from":"2401","_to":"69102"} +{"$label":"ACTS_IN","name":"Morvern Callar","type":"Role","_key":"116783","_from":"2401","_to":"68748"} +{"$label":"ACTS_IN","name":"Marilyn Monroe","type":"Role","_key":"107342","_from":"2401","_to":"63306"} +{"$label":"ACTS_IN","name":"Sarah Carraclough","type":"Role","_key":"101017","_from":"2401","_to":"59532"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"100396","_from":"2401","_to":"59203"} +{"$label":"ACTS_IN","name":"Harriet Smith","type":"Role","_key":"89069","_from":"2401","_to":"52764"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"63760","_from":"2401","_to":"39869"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"53559","_from":"2401","_to":"34569"} +{"$label":"ACTS_IN","name":"Debbie Curtis","type":"Role","_key":"38772","_from":"2401","_to":"26197"} +{"$label":"ACTS_IN","name":"Hazel","type":"Role","_key":"35147","_from":"2401","_to":"23955"} +{"$label":"ACTS_IN","name":"Queen Mary","type":"Role","_key":"32253","_from":"2401","_to":"22472"} +{"$label":"ACTS_IN","name":"Maria Gonzales","type":"Role","_key":"22051","_from":"2401","_to":"16085"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"119799","_from":"2402","_to":"70340"} +{"$label":"ACTS_IN","name":"Lou Wheaton","type":"Role","_key":"105792","_from":"2402","_to":"62284"} +{"$label":"ACTS_IN","name":"Orna","type":"Role","_key":"20565","_from":"2402","_to":"15049"} +{"$label":"ACTS_IN","name":"Helen Bessolo","type":"Role","_key":"12222","_from":"2402","_to":"9571"} +{"$label":"ACTS_IN","name":"Helen's Mother","type":"Role","_key":"8281","_from":"2402","_to":"6786"} +{"$label":"ACTS_IN","name":"Meg Greene","type":"Role","_key":"7938","_from":"2402","_to":"6576"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"3175","_from":"2402","_to":"2714"} +{"$label":"ACTS_IN","name":"Sara Moore","type":"Role","_key":"109638","_from":"2403","_to":"64758"} +{"$label":"ACTS_IN","name":"Evan Carroll","type":"Role","_key":"116232","_from":"2404","_to":"68436"} +{"$label":"ACTS_IN","name":"Jackson Fargo","type":"Role","_key":"116140","_from":"2404","_to":"68383"} +{"$label":"ACTS_IN","name":"Jake Tanner","type":"Role","_key":"102163","_from":"2404","_to":"60121"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"100719","_from":"2404","_to":"59387"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"95892","_from":"2404","_to":"56393"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"58754","_from":"2404","_to":"37102"} +{"$label":"ACTS_IN","name":"Colonel Muller","type":"Role","_key":"2779","_from":"2409","_to":"2405"} +{"$label":"ACTS_IN","name":"Bernie Teitel","type":"Role","_key":"2778","_from":"2408","_to":"2405"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"2777","_from":"2407","_to":"2405"} +{"$label":"ACTS_IN","name":"Tully","type":"Role","_key":"2776","_from":"2406","_to":"2405"} +{"$label":"ACTS_IN","name":"James Leer","type":"Role","_key":"67226","_from":"2406","_to":"41455"} +{"$label":"ACTS_IN","name":"Chuck Bolger","type":"Role","_key":"48208","_from":"2406","_to":"31667"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"46682","_from":"2406","_to":"30825"} +{"$label":"ACTS_IN","name":"Billy Chaka","type":"Role","_key":"46679","_from":"2406","_to":"30824"} +{"$label":"ACTS_IN","name":"Capt. Sam Cahill","type":"Role","_key":"46675","_from":"2406","_to":"30821"} +{"$label":"ACTS_IN","name":"Paul Hood","type":"Role","_key":"40307","_from":"2406","_to":"27194"} +{"$label":"ACTS_IN","name":"Red Pollard","type":"Role","_key":"31899","_from":"2406","_to":"22252"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"22531","_from":"2406","_to":"16368"} +{"$label":"ACTS_IN","name":"Harvey Stern\/Harry's Character","type":"Role","_key":"22350","_from":"2406","_to":"16249"} +{"$label":"ACTS_IN","name":"Hitchhiker","type":"Role","_key":"16206","_from":"2406","_to":"12305"} +{"$label":"ACTS_IN","name":"Homer Wells","type":"Role","_key":"15161","_from":"2406","_to":"11627"} +{"$label":"ACTS_IN","name":"Spider-Man \/ Peter Parker","type":"Role","_key":"6688","_from":"2406","_to":"5637"} +{"$label":"ACTS_IN","name":"Spider-Man \/ Peter Parker","type":"Role","_key":"6667","_from":"2406","_to":"5630"} +{"$label":"ACTS_IN","name":"Spider-Man \/ Peter Parker","type":"Role","_key":"6640","_from":"2406","_to":"5608"} +{"$label":"ACTS_IN","name":"Lt. Delcourt","type":"Role","_key":"113233","_from":"2407","_to":"66717"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"110915","_from":"2407","_to":"65519"} +{"$label":"ACTS_IN","name":"William Reeds","type":"Role","_key":"97048","_from":"2407","_to":"57091"} +{"$label":"ACTS_IN","name":"Clyde Henderson","type":"Role","_key":"71671","_from":"2407","_to":"43391"} +{"$label":"ACTS_IN","name":"Rodney Skinner (The Invisible Man)","type":"Role","_key":"50538","_from":"2407","_to":"33007"} +{"$label":"ACTS_IN","name":"Hondscioh","type":"Role","_key":"37366","_from":"2407","_to":"25321"} +{"$label":"ACTS_IN","name":"Marcus Corvinus","type":"Role","_key":"9847","_from":"2407","_to":"7897"} +{"$label":"ACTS_IN","name":"Det. Andrew Hollinsworth","type":"Role","_key":"62784","_from":"2408","_to":"39460"} +{"$label":"ACTS_IN","name":"Charles Moore","type":"Role","_key":"59622","_from":"2408","_to":"37645"} +{"$label":"ACTS_IN","name":"Richard Thompson","type":"Role","_key":"54142","_from":"2408","_to":"34789"} +{"$label":"ACTS_IN","name":"Larry Purvis","type":"Role","_key":"48137","_from":"2408","_to":"31632"} +{"$label":"ACTS_IN","name":"Interrogator","type":"Role","_key":"119764","_from":"2409","_to":"70329"} +{"$label":"ACTS_IN","name":"G.W. Nethercott","type":"Role","_key":"118673","_from":"2409","_to":"69773"} +{"$label":"ACTS_IN","name":"Harvey Bellinger","type":"Role","_key":"100851","_from":"2409","_to":"59456"} +{"$label":"ACTS_IN","name":"BB Hensley","type":"Role","_key":"92177","_from":"2409","_to":"54404"} +{"$label":"ACTS_IN","name":"Hank Landry","type":"Role","_key":"91956","_from":"2409","_to":"54247"} +{"$label":"ACTS_IN","name":"Major General Hank Landry","type":"Role","_key":"91908","_from":"2409","_to":"54222"} +{"$label":"ACTS_IN","name":"Mr. Win Berry","type":"Role","_key":"69056","_from":"2409","_to":"42266"} +{"$label":"ACTS_IN","name":"Frank Baker","type":"Role","_key":"66411","_from":"2409","_to":"41067"} +{"$label":"ACTS_IN","name":"Mike Ramsay","type":"Role","_key":"45048","_from":"2409","_to":"29922"} +{"$label":"ACTS_IN","name":"Leonard Vole","type":"Role","_key":"40897","_from":"2409","_to":"27513"} +{"$label":"ACTS_IN","name":"Philippe \/ Louis XIV","type":"Role","_key":"30064","_from":"2409","_to":"21200"} +{"$label":"ACTS_IN","name":"Sam Woods","type":"Role","_key":"2783","_from":"2409","_to":"2410"} +{"$label":"ACTS_IN","name":"Councelor","type":"Role","_key":"2790","_from":"2420","_to":"2410"} +{"$label":"ACTS_IN","name":"Putnam","type":"Role","_key":"2789","_from":"2419","_to":"2410"} +{"$label":"ACTS_IN","name":"Bateman","type":"Role","_key":"2788","_from":"2418","_to":"2410"} +{"$label":"ACTS_IN","name":"Christine Bateman","type":"Role","_key":"2787","_from":"2417","_to":"2410"} +{"$label":"ACTS_IN","name":"Tate","type":"Role","_key":"2786","_from":"2416","_to":"2410"} +{"$label":"ACTS_IN","name":"Haley","type":"Role","_key":"2785","_from":"2415","_to":"2410"} +{"$label":"ACTS_IN","name":"Nick Woods","type":"Role","_key":"2784","_from":"2414","_to":"2410"} +{"$label":"ACTS_IN","name":"Jimmy Woods","type":"Role","_key":"2782","_from":"2413","_to":"2410"} +{"$label":"ACTS_IN","name":"Corey Woods","type":"Role","_key":"2781","_from":"2412","_to":"2410"} +{"$label":"DIRECTED","_key":"2780","_from":"2411","_to":"2410"} +{"$label":"DIRECTED","_key":"60775","_from":"2411","_to":"38393"} +{"$label":"ACTS_IN","name":"Mover #1","type":"Role","_key":"57757","_from":"2411","_to":"36554"} +{"$label":"ACTS_IN","name":"Brian Stevenson","type":"Role","_key":"103315","_from":"2412","_to":"60782"} +{"$label":"ACTS_IN","name":"Steven Goodson","type":"Role","_key":"58734","_from":"2412","_to":"37102"} +{"$label":"ACTS_IN","name":"Grandson","type":"Role","_key":"21708","_from":"2412","_to":"15866"} +{"$label":"ACTS_IN","name":"A Junkie Named Marc","type":"Role","_key":"15649","_from":"2412","_to":"11928"} +{"$label":"ACTS_IN","name":"Number Three","type":"Role","_key":"9641","_from":"2412","_to":"7752"} +{"$label":"DIRECTED","_key":"98725","_from":"2412","_to":"58185"} +{"$label":"ACTS_IN","name":"Darius Bettus","type":"Role","_key":"106185","_from":"2413","_to":"62546"} +{"$label":"ACTS_IN","name":"Wes","type":"Role","_key":"28074","_from":"2413","_to":"20121"} +{"$label":"ACTS_IN","name":"Jimmy Dolan","type":"Role","_key":"121240","_from":"2414","_to":"71221"} +{"$label":"ACTS_IN","name":"J.D. Reston","type":"Role","_key":"109639","_from":"2414","_to":"64758"} +{"$label":"ACTS_IN","name":"Binx","type":"Role","_key":"106553","_from":"2414","_to":"62788"} +{"$label":"ACTS_IN","name":"Winston Churchill","type":"Role","_key":"101103","_from":"2414","_to":"59575"} +{"$label":"ACTS_IN","name":"George Kuffs","type":"Role","_key":"101033","_from":"2414","_to":"59542"} +{"$label":"ACTS_IN","name":"Pollen","type":"Role","_key":"100840","_from":"2414","_to":"59452"} +{"$label":"ACTS_IN","name":"Pips (voice)","type":"Role","_key":"93533","_from":"2414","_to":"55072"} +{"$label":"ACTS_IN","name":"Edward Carnby","type":"Role","_key":"88261","_from":"2414","_to":"52358"} +{"$label":"ACTS_IN","name":"Hanson","type":"Role","_key":"88247","_from":"2414","_to":"52350"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"68837","_from":"2414","_to":"42175"} +{"$label":"ACTS_IN","name":"Daryl Timmons","type":"Role","_key":"65380","_from":"2414","_to":"40552"} +{"$label":"ACTS_IN","name":"Daniel Clemens","type":"Role","_key":"62758","_from":"2414","_to":"39453"} +{"$label":"ACTS_IN","name":"Tom Hanson","type":"Role","_key":"62298","_from":"2414","_to":"39249"} +{"$label":"ACTS_IN","name":"Bob Maconel","type":"Role","_key":"61922","_from":"2414","_to":"38966"} +{"$label":"ACTS_IN","name":"Robert Boyd","type":"Role","_key":"59623","_from":"2414","_to":"37645"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53614","_from":"2414","_to":"34590"} +{"$label":"ACTS_IN","name":"Capt. Riley Hale","type":"Role","_key":"52587","_from":"2414","_to":"34175"} +{"$label":"ACTS_IN","name":"Arkansas Dave Rudabaugh","type":"Role","_key":"52485","_from":"2414","_to":"34143"} +{"$label":"ACTS_IN","name":"Michael Griffin","type":"Role","_key":"51907","_from":"2414","_to":"33857"} +{"$label":"ACTS_IN","name":"James Stamphill","type":"Role","_key":"49765","_from":"2414","_to":"32563"} +{"$label":"ACTS_IN","name":"Mark Hunter","type":"Role","_key":"49666","_from":"2414","_to":"32500"} +{"$label":"ACTS_IN","name":"Will Scarlett","type":"Role","_key":"49373","_from":"2414","_to":"32334"} +{"$label":"ACTS_IN","name":"Reginald Webster","type":"Role","_key":"43876","_from":"2414","_to":"29296"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"22355","_from":"2414","_to":"16253"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"12854","_from":"2414","_to":"10040"} +{"$label":"ACTS_IN","name":"Daniel Malloy","type":"Role","_key":"7464","_from":"2414","_to":"6216"} +{"$label":"ACTS_IN","name":"Clarence Worley","type":"Role","_key":"4427","_from":"2414","_to":"3783"} +{"$label":"ACTS_IN","name":"Adso of Melk","type":"Role","_key":"2885","_from":"2414","_to":"2486"} +{"$label":"ACTS_IN","name":"Rita Faldes","type":"Role","_key":"116633","_from":"2415","_to":"68653"} +{"$label":"ACTS_IN","name":"Esta Siegel","type":"Role","_key":"62667","_from":"2417","_to":"39415"} +{"$label":"ACTS_IN","name":"Struthers","type":"Role","_key":"110962","_from":"2418","_to":"65539"} +{"$label":"ACTS_IN","name":"Chief Troutman","type":"Role","_key":"65763","_from":"2418","_to":"40707"} +{"$label":"ACTS_IN","name":"Morris Frost","type":"Role","_key":"18376","_from":"2418","_to":"13628"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"4883","_from":"2418","_to":"4171"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"2802","_from":"2428","_to":"2421"} +{"$label":"ACTS_IN","name":"Sheronda","type":"Role","_key":"2800","_from":"2427","_to":"2421"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"2799","_from":"2426","_to":"2421"} +{"$label":"ACTS_IN","name":"Mark Dargus","type":"Role","_key":"2797","_from":"2425","_to":"2421"} +{"$label":"ACTS_IN","name":"Ray Nicolette","type":"Role","_key":"2796","_from":"2424","_to":"2421"} +{"$label":"ACTS_IN","name":"Melanie Ralston","type":"Role","_key":"2795","_from":"2423","_to":"2421"} +{"$label":"ACTS_IN","name":"Max Cherry","type":"Role","_key":"2794","_from":"2422","_to":"2421"} +{"$label":"ACTS_IN","name":"Lt. Weber","type":"Role","_key":"102627","_from":"2422","_to":"60382"} +{"$label":"ACTS_IN","name":"Arlo Grange","type":"Role","_key":"93611","_from":"2422","_to":"55117"} +{"$label":"ACTS_IN","name":"Sergeant Volkom","type":"Role","_key":"90256","_from":"2422","_to":"53362"} +{"$label":"ACTS_IN","name":"Detective Charlie Moore","type":"Role","_key":"71003","_from":"2422","_to":"43125"} +{"$label":"ACTS_IN","name":"Morgan Price","type":"Role","_key":"65396","_from":"2422","_to":"40555"} +{"$label":"ACTS_IN","name":"A.J. Marley","type":"Role","_key":"62926","_from":"2422","_to":"39523"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"62015","_from":"2422","_to":"39042"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"59312","_from":"2422","_to":"37462"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"56309","_from":"2422","_to":"35776"} +{"$label":"ACTS_IN","name":"Capt. Dan Holland","type":"Role","_key":"54759","_from":"2422","_to":"35046"} +{"$label":"ACTS_IN","name":"Campbell","type":"Role","_key":"37676","_from":"2422","_to":"25539"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"16156","_from":"2422","_to":"12266"} +{"$label":"ACTS_IN","name":"Harry McKnight","type":"Role","_key":"11788","_from":"2422","_to":"9247"} +{"$label":"ACTS_IN","name":"Nathan's Father","type":"Role","_key":"5544","_from":"2422","_to":"4722"} +{"$label":"ACTS_IN","name":"Snow Queen","type":"Role","_key":"107817","_from":"2423","_to":"63675"} +{"$label":"ACTS_IN","name":"Nancy Lee Nicholson","type":"Role","_key":"72190","_from":"2423","_to":"43625"} +{"$label":"ACTS_IN","name":"Janet Livermore","type":"Role","_key":"67682","_from":"2423","_to":"41633"} +{"$label":"ACTS_IN","name":"Marybeth Cogan","type":"Role","_key":"67636","_from":"2423","_to":"41624"} +{"$label":"ACTS_IN","name":"Yvonne Biasi","type":"Role","_key":"64887","_from":"2423","_to":"40352"} +{"$label":"ACTS_IN","name":"Maggie Hayward","type":"Role","_key":"63687","_from":"2423","_to":"39831"} +{"$label":"ACTS_IN","name":"Eleanor Lightbody","type":"Role","_key":"63491","_from":"2423","_to":"39759"} +{"$label":"ACTS_IN","name":"Sarah Mitchell","type":"Role","_key":"61798","_from":"2423","_to":"38904"} +{"$label":"ACTS_IN","name":"Kelly Scott","type":"Role","_key":"57181","_from":"2423","_to":"36281"} +{"$label":"ACTS_IN","name":"Allison 'Allie' Jones","type":"Role","_key":"54978","_from":"2423","_to":"35139"} +{"$label":"ACTS_IN","name":"Jessica Kamen","type":"Role","_key":"18612","_from":"2423","_to":"13776"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"14940","_from":"2423","_to":"11483"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"8990","_from":"2423","_to":"7287"} +{"$label":"ACTS_IN","name":"Grace Hamilton","type":"Role","_key":"3522","_from":"2423","_to":"3010"} +{"$label":"ACTS_IN","name":"Johnny Dangerously","type":"Role","_key":"110114","_from":"2424","_to":"65070"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"103302","_from":"2424","_to":"60773"} +{"$label":"ACTS_IN","name":"Bill Blazejowski","type":"Role","_key":"101590","_from":"2424","_to":"59795"} +{"$label":"ACTS_IN","name":"Billy Caufield","type":"Role","_key":"100752","_from":"2424","_to":"59407"} +{"$label":"ACTS_IN","name":"President Mackenzie","type":"Role","_key":"97879","_from":"2424","_to":"57652"} +{"$label":"ACTS_IN","name":"Hunt Stevenson","type":"Role","_key":"95936","_from":"2424","_to":"56416"} +{"$label":"ACTS_IN","name":"Jack Butler","type":"Role","_key":"92616","_from":"2424","_to":"54673"} +{"$label":"ACTS_IN","name":"Henry Hackett","type":"Role","_key":"89195","_from":"2424","_to":"52823"} +{"$label":"ACTS_IN","name":"Dogberry","type":"Role","_key":"73073","_from":"2424","_to":"43966"} +{"$label":"ACTS_IN","name":"Jonathan Rivers","type":"Role","_key":"72084","_from":"2424","_to":"43578"} +{"$label":"ACTS_IN","name":"Ray Peyton Sr.","type":"Role","_key":"69938","_from":"2424","_to":"42674"} +{"$label":"ACTS_IN","name":"Ken (voice)","type":"Role","_key":"61604","_from":"2424","_to":"38829"} +{"$label":"ACTS_IN","name":"Jack Frost","type":"Role","_key":"56234","_from":"2424","_to":"35731"} +{"$label":"ACTS_IN","name":"Peter McCabe","type":"Role","_key":"53983","_from":"2424","_to":"34724"} +{"$label":"ACTS_IN","name":"Doug Kinney","type":"Role","_key":"53012","_from":"2424","_to":"34331"} +{"$label":"ACTS_IN","name":"Beetlejuice","type":"Role","_key":"29411","_from":"2424","_to":"20869"} +{"$label":"ACTS_IN","name":"Carter Hayes","type":"Role","_key":"24758","_from":"2424","_to":"17908"} +{"$label":"ACTS_IN","name":"Ray Nicolette","type":"Role","_key":"12892","_from":"2424","_to":"10063"} +{"$label":"ACTS_IN","name":"Batman\/Bruce Wayne","type":"Role","_key":"4852","_from":"2424","_to":"4154"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"3818","_from":"2424","_to":"3276"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"116284","_from":"2425","_to":"68456"} +{"$label":"ACTS_IN","name":"Morton","type":"Role","_key":"116046","_from":"2425","_to":"68340"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"110510","_from":"2425","_to":"65293"} +{"$label":"ACTS_IN","name":"FBI Driver","type":"Role","_key":"64288","_from":"2425","_to":"40082"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"63199","_from":"2425","_to":"39632"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42113","_from":"2425","_to":"28214"} +{"$label":"ACTS_IN","name":"Rick Spector","type":"Role","_key":"4589","_from":"2425","_to":"3908"} +{"$label":"ACTS_IN","name":"Pashek","type":"Role","_key":"90974","_from":"2426","_to":"53678"} +{"$label":"ACTS_IN","name":"Donar","type":"Role","_key":"46091","_from":"2426","_to":"30444"} +{"$label":"ACTS_IN","name":"Captain Spaulding","type":"Role","_key":"22555","_from":"2426","_to":"16381"} +{"$label":"ACTS_IN","name":"Chester Chesterfield","type":"Role","_key":"18121","_from":"2426","_to":"13441"} +{"$label":"ACTS_IN","name":"Captain Spaulding\/James Cutter","type":"Role","_key":"14991","_from":"2426","_to":"11531"} +{"$label":"ACTS_IN","name":"NCH","type":"Role","_key":"7575","_from":"2426","_to":"6300"} +{"$label":"ACTS_IN","name":"Delilah","type":"Role","_key":"100134","_from":"2427","_to":"59062"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"72067","_from":"2427","_to":"43573"} +{"$label":"ACTS_IN","name":"Bonnie Beechum","type":"Role","_key":"62750","_from":"2427","_to":"39448"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"2820","_from":"2444","_to":"2429"} +{"$label":"ACTS_IN","name":"Billy Boy (gang leader)","type":"Role","_key":"2819","_from":"2443","_to":"2429"} +{"$label":"ACTS_IN","name":"Lodger","type":"Role","_key":"2818","_from":"2442","_to":"2429"} +{"$label":"ACTS_IN","name":"Prison Chaplain","type":"Role","_key":"2817","_from":"2441","_to":"2429"} +{"$label":"ACTS_IN","name":"Mr. P. R. Deltoid","type":"Role","_key":"2816","_from":"2440","_to":"2429"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"2815","_from":"2439","_to":"2429"} +{"$label":"ACTS_IN","name":"Catlady","type":"Role","_key":"2814","_from":"2438","_to":"2429"} +{"$label":"ACTS_IN","name":"Tramp","type":"Role","_key":"2813","_from":"2437","_to":"2429"} +{"$label":"ACTS_IN","name":"Dr. Brodsky","type":"Role","_key":"2812","_from":"2436","_to":"2429"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"2811","_from":"2435","_to":"2429"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"2810","_from":"2434","_to":"2429"} +{"$label":"ACTS_IN","name":"Dim","type":"Role","_key":"2809","_from":"2433","_to":"2429"} +{"$label":"ACTS_IN","name":"Chief Guard","type":"Role","_key":"2808","_from":"2432","_to":"2429"} +{"$label":"ACTS_IN","name":"Mrs. Alexander","type":"Role","_key":"2807","_from":"2431","_to":"2429"} +{"$label":"ACTS_IN","name":"Mr. Alexander","type":"Role","_key":"2806","_from":"2430","_to":"2429"} +{"$label":"ACTS_IN","name":"Ebenezer Balfour","type":"Role","_key":"91801","_from":"2430","_to":"54153"} +{"$label":"ACTS_IN","name":"The Chevalier de Balibari","type":"Role","_key":"26501","_from":"2430","_to":"19048"} +{"$label":"ACTS_IN","name":"Lady Carter","type":"Role","_key":"16853","_from":"2431","_to":"12677"} +{"$label":"ACTS_IN","name":"Inspector Clarke","type":"Role","_key":"115347","_from":"2432","_to":"67907"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"111516","_from":"2433","_to":"65842"} +{"$label":"ACTS_IN","name":"Pavel Upenskoy","type":"Role","_key":"65263","_from":"2433","_to":"40511"} +{"$label":"ACTS_IN","name":"Colonel von Horst","type":"Role","_key":"50713","_from":"2433","_to":"33102"} +{"$label":"ACTS_IN","name":"Konstantin","type":"Role","_key":"33040","_from":"2433","_to":"22898"} +{"$label":"ACTS_IN","name":"Ednan","type":"Role","_key":"21063","_from":"2433","_to":"15413"} +{"$label":"ACTS_IN","name":"Mrs. Rogers","type":"Role","_key":"96703","_from":"2438","_to":"56883"} +{"$label":"ACTS_IN","name":"Mrs. Joe","type":"Role","_key":"28105","_from":"2438","_to":"20145"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"19772","_from":"2438","_to":"14601"} +{"$label":"ACTS_IN","name":"Harry Dix","type":"Role","_key":"71234","_from":"2440","_to":"43224"} +{"$label":"ACTS_IN","name":"Capt. Grogan","type":"Role","_key":"26500","_from":"2441","_to":"19048"} +{"$label":"DIRECTED","_key":"2828","_from":"2449","_to":"2445"} +{"$label":"ACTS_IN","name":"Det. Brikowski","type":"Role","_key":"2826","_from":"2448","_to":"2445"} +{"$label":"ACTS_IN","name":"The Rabbi","type":"Role","_key":"2825","_from":"2447","_to":"2445"} +{"$label":"ACTS_IN","name":"Slevin","type":"Role","_key":"2822","_from":"2446","_to":"2445"} +{"$label":"ACTS_IN","name":"Brian Allen","type":"Role","_key":"111510","_from":"2446","_to":"65842"} +{"$label":"ACTS_IN","name":"Tom Sterling","type":"Role","_key":"95901","_from":"2446","_to":"56401"} +{"$label":"ACTS_IN","name":"Jasper Arnold","type":"Role","_key":"95111","_from":"2446","_to":"55973"} +{"$label":"ACTS_IN","name":"Erik Kenman Jr.","type":"Role","_key":"92332","_from":"2446","_to":"54491"} +{"$label":"ACTS_IN","name":"John Tate","type":"Role","_key":"71485","_from":"2446","_to":"43330"} +{"$label":"ACTS_IN","name":"Det. K.C. Calden","type":"Role","_key":"69481","_from":"2446","_to":"42450"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"68545","_from":"2446","_to":"42032"} +{"$label":"ACTS_IN","name":"Hugo Goulding","type":"Role","_key":"67653","_from":"2446","_to":"41627"} +{"$label":"ACTS_IN","name":"Dwight 'Bucky' Bleichert","type":"Role","_key":"55467","_from":"2446","_to":"35352"} +{"$label":"ACTS_IN","name":"Zeke Tyler","type":"Role","_key":"52788","_from":"2446","_to":"34242"} +{"$label":"ACTS_IN","name":"Eben Oleson","type":"Role","_key":"32214","_from":"2446","_to":"22456"} +{"$label":"ACTS_IN","name":"Matt Sulivan","type":"Role","_key":"23261","_from":"2446","_to":"16868"} +{"$label":"ACTS_IN","name":"Trip Fontaine","type":"Role","_key":"13360","_from":"2446","_to":"10404"} +{"$label":"ACTS_IN","name":"SSgt. Matt Eversmann","type":"Role","_key":"10136","_from":"2446","_to":"8112"} +{"$label":"ACTS_IN","name":"Capt. Danny Walker","type":"Role","_key":"8125","_from":"2446","_to":"6692"} +{"$label":"ACTS_IN","name":"The Salesman","type":"Role","_key":"2837","_from":"2446","_to":"2450"} +{"$label":"ACTS_IN","name":"Fergus","type":"Role","_key":"113353","_from":"2447","_to":"66775"} +{"$label":"ACTS_IN","name":"The Hood","type":"Role","_key":"101156","_from":"2447","_to":"59587"} +{"$label":"ACTS_IN","name":"Dr. Squires","type":"Role","_key":"97994","_from":"2447","_to":"57710"} +{"$label":"ACTS_IN","name":"Man in the Yellow Suit","type":"Role","_key":"96262","_from":"2447","_to":"56562"} +{"$label":"ACTS_IN","name":"Walken \/ The Viceroy","type":"Role","_key":"93362","_from":"2447","_to":"54992"} +{"$label":"ACTS_IN","name":"Dr. John Watson","type":"Role","_key":"90423","_from":"2447","_to":"53426"} +{"$label":"ACTS_IN","name":"Guru Tugginmypuddha","type":"Role","_key":"88488","_from":"2447","_to":"52448"} +{"$label":"ACTS_IN","name":"Don Logan","type":"Role","_key":"72229","_from":"2447","_to":"43644"} +{"$label":"ACTS_IN","name":"David Kepesh","type":"Role","_key":"71455","_from":"2447","_to":"43319"} +{"$label":"ACTS_IN","name":"Vice-President Nance","type":"Role","_key":"70707","_from":"2447","_to":"43007"} +{"$label":"ACTS_IN","name":"Dr. John Cawley","type":"Role","_key":"69138","_from":"2447","_to":"42293"} +{"$label":"ACTS_IN","name":"Behrani","type":"Role","_key":"67836","_from":"2447","_to":"41689"} +{"$label":"ACTS_IN","name":"Dr. Roberto Miranda","type":"Role","_key":"63886","_from":"2447","_to":"39916"} +{"$label":"ACTS_IN","name":"Ambassador Mourain","type":"Role","_key":"63570","_from":"2447","_to":"39782"} +{"$label":"ACTS_IN","name":"Meyer Lansky","type":"Role","_key":"62664","_from":"2447","_to":"39415"} +{"$label":"ACTS_IN","name":"Charles Hatton","type":"Role","_key":"60350","_from":"2447","_to":"38062"} +{"$label":"ACTS_IN","name":"Kagan","type":"Role","_key":"58186","_from":"2447","_to":"36805"} +{"$label":"ACTS_IN","name":"Ambrosinus","type":"Role","_key":"55872","_from":"2447","_to":"35542"} +{"$label":"ACTS_IN","name":"Nizam","type":"Role","_key":"54573","_from":"2447","_to":"34967"} +{"$label":"ACTS_IN","name":"Xavier Fitch","type":"Role","_key":"53277","_from":"2447","_to":"34454"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"48263","_from":"2447","_to":"31704"} +{"$label":"ACTS_IN","name":"Benjamin O'Ryan","type":"Role","_key":"48159","_from":"2447","_to":"31644"} +{"$label":"ACTS_IN","name":"Grinko","type":"Role","_key":"44644","_from":"2447","_to":"29706"} +{"$label":"ACTS_IN","name":"Lenin","type":"Role","_key":"30035","_from":"2447","_to":"21186"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"22977","_from":"2447","_to":"16666"} +{"$label":"ACTS_IN","name":"Potifar","type":"Role","_key":"21057","_from":"2447","_to":"15413"} +{"$label":"ACTS_IN","name":"Cosmo","type":"Role","_key":"20401","_from":"2447","_to":"14934"} +{"$label":"ACTS_IN","name":"Mahatma Gandhi","type":"Role","_key":"9210","_from":"2447","_to":"7444"} +{"$label":"ACTS_IN","name":"Specialist (voice)","type":"Role","_key":"7702","_from":"2447","_to":"6393"} +{"$label":"ACTS_IN","name":"Itzhak Stern","type":"Role","_key":"5324","_from":"2447","_to":"4517"} +{"$label":"ACTS_IN","name":"Fagin","type":"Role","_key":"3700","_from":"2447","_to":"3173"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"119737","_from":"2448","_to":"70316"} +{"$label":"ACTS_IN","name":"Secondo","type":"Role","_key":"115300","_from":"2448","_to":"67887"} +{"$label":"ACTS_IN","name":"Adolf Eichmann","type":"Role","_key":"91877","_from":"2448","_to":"54204"} +{"$label":"ACTS_IN","name":"Muerte","type":"Role","_key":"90885","_from":"2448","_to":"53623"} +{"$label":"ACTS_IN","name":"Lucky Luciano","type":"Role","_key":"90799","_from":"2448","_to":"53581"} +{"$label":"ACTS_IN","name":"Senator","type":"Role","_key":"72082","_from":"2448","_to":"43576"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"65298","_from":"2448","_to":"40526"} +{"$label":"ACTS_IN","name":"Stanley Kubrick","type":"Role","_key":"64501","_from":"2448","_to":"40184"} +{"$label":"ACTS_IN","name":"Puck","type":"Role","_key":"61722","_from":"2448","_to":"38874"} +{"$label":"ACTS_IN","name":"Martin Fox","type":"Role","_key":"61533","_from":"2448","_to":"38799"} +{"$label":"ACTS_IN","name":"Dr. Conrad Zimsky","type":"Role","_key":"53224","_from":"2448","_to":"34423"} +{"$label":"ACTS_IN","name":"Scott Solomon","type":"Role","_key":"51591","_from":"2448","_to":"33665"} +{"$label":"ACTS_IN","name":"Uncle Hendrick","type":"Role","_key":"49303","_from":"2448","_to":"32288"} +{"$label":"ACTS_IN","name":"Elliot Zweikel","type":"Role","_key":"48017","_from":"2448","_to":"31583"} +{"$label":"ACTS_IN","name":"George Harvey","type":"Role","_key":"47626","_from":"2448","_to":"31382"} +{"$label":"ACTS_IN","name":"Jerry Siegel","type":"Role","_key":"46383","_from":"2448","_to":"30646"} +{"$label":"ACTS_IN","name":"Frank Zioli","type":"Role","_key":"41474","_from":"2448","_to":"27872"} +{"$label":"ACTS_IN","name":"Link","type":"Role","_key":"31295","_from":"2448","_to":"21887"} +{"$label":"ACTS_IN","name":"Frank Nitti","type":"Role","_key":"29777","_from":"2448","_to":"21072"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"22207","_from":"2448","_to":"16177"} +{"$label":"ACTS_IN","name":"Arthur Herk","type":"Role","_key":"18990","_from":"2448","_to":"14034"} +{"$label":"ACTS_IN","name":"Abraham Erskine","type":"Role","_key":"15421","_from":"2448","_to":"11787"} +{"$label":"ACTS_IN","name":"Frank Dixon","type":"Role","_key":"7134","_from":"2448","_to":"5965"} +{"$label":"ACTS_IN","name":"Nigel","type":"Role","_key":"4810","_from":"2448","_to":"4111"} +{"$label":"DIRECTED","_key":"94584","_from":"2449","_to":"55732"} +{"$label":"DIRECTED","_key":"88849","_from":"2449","_to":"52643"} +{"$label":"DIRECTED","_key":"68550","_from":"2449","_to":"42032"} +{"$label":"DIRECTED","_key":"62974","_from":"2449","_to":"39542"} +{"$label":"ACTS_IN","name":"Lucille","type":"Role","_key":"2851","_from":"2461","_to":"2450"} +{"$label":"ACTS_IN","name":"Roark Jr.\/The Yellow Bastard","type":"Role","_key":"2847","_from":"2460","_to":"2450"} +{"$label":"ACTS_IN","name":"The Customer","type":"Role","_key":"2846","_from":"2459","_to":"2450"} +{"$label":"ACTS_IN","name":"Senator Roark","type":"Role","_key":"2845","_from":"2458","_to":"2450"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"2844","_from":"2457","_to":"2450"} +{"$label":"ACTS_IN","name":"Miho","type":"Role","_key":"2843","_from":"2456","_to":"2450"} +{"$label":"ACTS_IN","name":"Goldie\/Wendy","type":"Role","_key":"2838","_from":"2455","_to":"2450"} +{"$label":"ACTS_IN","name":"Nancy Callahan","type":"Role","_key":"2835","_from":"2454","_to":"2450"} +{"$label":"ACTS_IN","name":"Dwight","type":"Role","_key":"2834","_from":"2453","_to":"2450"} +{"$label":"ACTS_IN","name":"Marv","type":"Role","_key":"2833","_from":"2452","_to":"2450"} +{"$label":"DIRECTED","_key":"2829","_from":"2451","_to":"2450"} +{"$label":"DIRECTED","_key":"48834","_from":"2451","_to":"32022"} +{"$label":"DIRECTED","_key":"5753","_from":"2451","_to":"4890"} +{"$label":"DIRECTED","_key":"2853","_from":"2451","_to":"2463"} +{"$label":"ACTS_IN","name":"Gorman Lennox","type":"Role","_key":"119938","_from":"2452","_to":"70452"} +{"$label":"ACTS_IN","name":"John Gray","type":"Role","_key":"115138","_from":"2452","_to":"67804"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"112241","_from":"2452","_to":"66289"} +{"$label":"ACTS_IN","name":"Armand 'The Blackbird' Degas","type":"Role","_key":"107649","_from":"2452","_to":"63537"} +{"$label":"ACTS_IN","name":"Butch 'Bullet' Stein","type":"Role","_key":"100471","_from":"2452","_to":"59242"} +{"$label":"ACTS_IN","name":"Teddy Lewis","type":"Role","_key":"100129","_from":"2452","_to":"59059"} +{"$label":"ACTS_IN","name":"Robert 'Boogie' Sheftell","type":"Role","_key":"96366","_from":"2452","_to":"56647"} +{"$label":"ACTS_IN","name":"Johnny Walker","type":"Role","_key":"91542","_from":"2452","_to":"53960"} +{"$label":"ACTS_IN","name":"Randy Robinson","type":"Role","_key":"88401","_from":"2452","_to":"52394"} +{"$label":"ACTS_IN","name":"The Cook","type":"Role","_key":"87925","_from":"2452","_to":"52214"} +{"$label":"ACTS_IN","name":"Bruiser Stone","type":"Role","_key":"73101","_from":"2452","_to":"43974"} +{"$label":"ACTS_IN","name":"Capt. Stanley White","type":"Role","_key":"67316","_from":"2452","_to":"41493"} +{"$label":"ACTS_IN","name":"Henry Chinaski","type":"Role","_key":"66848","_from":"2452","_to":"41286"} +{"$label":"ACTS_IN","name":"Cyrus Paice","type":"Role","_key":"63451","_from":"2452","_to":"39744"} +{"$label":"ACTS_IN","name":"Whiplash","type":"Role","_key":"61171","_from":"2452","_to":"38656"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"60197","_from":"2452","_to":"37979"} +{"$label":"ACTS_IN","name":"Darrius Sayle","type":"Role","_key":"58890","_from":"2452","_to":"37189"} +{"$label":"ACTS_IN","name":"Ed Mosbey","type":"Role","_key":"58121","_from":"2452","_to":"36776"} +{"$label":"ACTS_IN","name":"Jan the Actress","type":"Role","_key":"56828","_from":"2452","_to":"36088"} +{"$label":"ACTS_IN","name":"Bookmacher","type":"Role","_key":"54031","_from":"2452","_to":"34761"} +{"$label":"ACTS_IN","name":"Stavros","type":"Role","_key":"53672","_from":"2452","_to":"34619"} +{"$label":"ACTS_IN","name":"Jim Olstad","type":"Role","_key":"40720","_from":"2452","_to":"27400"} +{"$label":"ACTS_IN","name":"Harley","type":"Role","_key":"21510","_from":"2452","_to":"15740"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"13233","_from":"2452","_to":"10305"} +{"$label":"ACTS_IN","name":"Harry Angel","type":"Role","_key":"7557","_from":"2452","_to":"6291"} +{"$label":"ACTS_IN","name":"Johnny Handsome","type":"Role","_key":"6098","_from":"2452","_to":"5178"} +{"$label":"ACTS_IN","name":"The Motorcycle Boy","type":"Role","_key":"3345","_from":"2452","_to":"2869"} +{"$label":"ACTS_IN","name":"Marv","type":"Role","_key":"2855","_from":"2452","_to":"2463"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"120553","_from":"2453","_to":"70805"} +{"$label":"ACTS_IN","name":"Ray Koval","type":"Role","_key":"109517","_from":"2453","_to":"64693"} +{"$label":"ACTS_IN","name":"Jack Manfred","type":"Role","_key":"91146","_from":"2453","_to":"53767"} +{"$label":"ACTS_IN","name":"Nick Callahan","type":"Role","_key":"57363","_from":"2453","_to":"36369"} +{"$label":"ACTS_IN","name":"Theo Faron","type":"Role","_key":"55721","_from":"2453","_to":"35462"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"54107","_from":"2453","_to":"34783"} +{"$label":"ACTS_IN","name":"Charles Schine","type":"Role","_key":"51932","_from":"2453","_to":"33872"} +{"$label":"ACTS_IN","name":"Robert Parks","type":"Role","_key":"36860","_from":"2453","_to":"24998"} +{"$label":"ACTS_IN","name":"Louis Salinger","type":"Role","_key":"35137","_from":"2453","_to":"23951"} +{"$label":"ACTS_IN","name":"Sir Walter Raleigh","type":"Role","_key":"32247","_from":"2453","_to":"22472"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"29748","_from":"2453","_to":"21064"} +{"$label":"ACTS_IN","name":"Will Graham","type":"Role","_key":"27531","_from":"2453","_to":"19754"} +{"$label":"ACTS_IN","name":"The Professor","type":"Role","_key":"21715","_from":"2453","_to":"15869"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"20065","_from":"2453","_to":"14761"} +{"$label":"ACTS_IN","name":"Dalton Russell","type":"Role","_key":"4955","_from":"2453","_to":"4222"} +{"$label":"ACTS_IN","name":"Dwight","type":"Role","_key":"2856","_from":"2453","_to":"2463"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"113832","_from":"2454","_to":"67053"} +{"$label":"ACTS_IN","name":"Sam Lockwood","type":"Role","_key":"94734","_from":"2454","_to":"55797"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"93553","_from":"2454","_to":"55088"} +{"$label":"ACTS_IN","name":"Liz Anne Blazer","type":"Role","_key":"93179","_from":"2454","_to":"54908"} +{"$label":"ACTS_IN","name":"Jane Bullard","type":"Role","_key":"88483","_from":"2454","_to":"52448"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"73047","_from":"2454","_to":"43959"} +{"$label":"ACTS_IN","name":"Cam Wexler","type":"Role","_key":"59642","_from":"2454","_to":"37658"} +{"$label":"ACTS_IN","name":"Honey Daniels","type":"Role","_key":"59600","_from":"2454","_to":"37627"} +{"$label":"ACTS_IN","name":"Sue Storm","type":"Role","_key":"56206","_from":"2454","_to":"35722"} +{"$label":"ACTS_IN","name":"Sydney Wells","type":"Role","_key":"52139","_from":"2454","_to":"33986"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"44025","_from":"2454","_to":"29363"} +{"$label":"ACTS_IN","name":"Sue Richards \/ Invisible Woman","type":"Role","_key":"17151","_from":"2454","_to":"12853"} +{"$label":"ACTS_IN","name":"Nancy Callahan","type":"Role","_key":"2854","_from":"2454","_to":"2463"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"115535","_from":"2455","_to":"68014"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"111315","_from":"2455","_to":"65743"} +{"$label":"ACTS_IN","name":"Sarah Palmer","type":"Role","_key":"100258","_from":"2455","_to":"59126"} +{"$label":"ACTS_IN","name":"Heather Vandergeld","type":"Role","_key":"88332","_from":"2455","_to":"52379"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"72159","_from":"2455","_to":"43613"} +{"$label":"ACTS_IN","name":"Alexandria","type":"Role","_key":"57889","_from":"2455","_to":"36625"} +{"$label":"ACTS_IN","name":"Kristina Jung","type":"Role","_key":"29724","_from":"2455","_to":"21034"} +{"$label":"ACTS_IN","name":"Nurse Betty Bayer","type":"Role","_key":"8134","_from":"2455","_to":"6692"} +{"$label":"ACTS_IN","name":"Goldie\/Wendy","type":"Role","_key":"2857","_from":"2455","_to":"2463"} +{"$label":"ACTS_IN","name":"Cpl. Valerie Duval","type":"Role","_key":"93627","_from":"2456","_to":"55123"} +{"$label":"ACTS_IN","name":"Kira Yanagawa","type":"Role","_key":"63281","_from":"2456","_to":"39669"} +{"$label":"ACTS_IN","name":"Kasumi","type":"Role","_key":"52291","_from":"2456","_to":"34046"} +{"$label":"ACTS_IN","name":"Suki","type":"Role","_key":"7003","_from":"2456","_to":"5871"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"6454","_from":"2456","_to":"5457"} +{"$label":"ACTS_IN","name":"Miho","type":"Role","_key":"2859","_from":"2456","_to":"2463"} +{"$label":"ACTS_IN","name":"Winnie Foster","type":"Role","_key":"96257","_from":"2457","_to":"56562"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"61535","_from":"2457","_to":"38801"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"56654","_from":"2457","_to":"35987"} +{"$label":"ACTS_IN","name":"Lex Luther","type":"Role","_key":"119702","_from":"2458","_to":"70306"} +{"$label":"ACTS_IN","name":"Flavius Aetius","type":"Role","_key":"118329","_from":"2458","_to":"69556"} +{"$label":"ACTS_IN","name":"Jim Van Scoyoc","type":"Role","_key":"105372","_from":"2458","_to":"61997"} +{"$label":"ACTS_IN","name":"President Noah Daniels","type":"Role","_key":"97989","_from":"2458","_to":"57709"} +{"$label":"ACTS_IN","name":"Cpl. Charles Hardin","type":"Role","_key":"90067","_from":"2458","_to":"53272"} +{"$label":"ACTS_IN","name":"FBI-Agent Wesley Doyle","type":"Role","_key":"88312","_from":"2458","_to":"52375"} +{"$label":"ACTS_IN","name":"Jacques D'Arc","type":"Role","_key":"72881","_from":"2458","_to":"43899"} +{"$label":"ACTS_IN","name":"Bill Markham","type":"Role","_key":"70465","_from":"2458","_to":"42897"} +{"$label":"ACTS_IN","name":"Sheriff Virgil Potter","type":"Role","_key":"61299","_from":"2458","_to":"38700"} +{"$label":"ACTS_IN","name":"Joshua Foss","type":"Role","_key":"52505","_from":"2458","_to":"34148"} +{"$label":"ACTS_IN","name":"Diane Weston","type":"Role","_key":"109942","_from":"2459","_to":"64959"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"102507","_from":"2459","_to":"60309"} +{"$label":"ACTS_IN","name":"Brooke Kingsley","type":"Role","_key":"99659","_from":"2459","_to":"58758"} +{"$label":"ACTS_IN","name":"Cleo","type":"Role","_key":"89307","_from":"2459","_to":"52867"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"70444","_from":"2459","_to":"42885"} +{"$label":"ACTS_IN","name":"Kate Davies","type":"Role","_key":"67088","_from":"2459","_to":"41406"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"55571","_from":"2459","_to":"35390"} +{"$label":"ACTS_IN","name":"Arianna","type":"Role","_key":"46992","_from":"2459","_to":"30983"} +{"$label":"ACTS_IN","name":"Mary O`Callahan","type":"Role","_key":"45454","_from":"2459","_to":"30120"} +{"$label":"ACTS_IN","name":"Margaret Henderson","type":"Role","_key":"22536","_from":"2459","_to":"16368"} +{"$label":"ACTS_IN","name":"Natalie Arden","type":"Role","_key":"17565","_from":"2459","_to":"13126"} +{"$label":"ACTS_IN","name":"Dr. Dakota Block","type":"Role","_key":"17264","_from":"2459","_to":"12925"} +{"$label":"ACTS_IN","name":"Dakota McGraw","type":"Role","_key":"17255","_from":"2459","_to":"12920"} +{"$label":"ACTS_IN","name":"Isaac Knott","type":"Role","_key":"105345","_from":"2460","_to":"61983"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"101699","_from":"2460","_to":"59855"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"99739","_from":"2460","_to":"58822"} +{"$label":"ACTS_IN","name":"Jinx","type":"Role","_key":"95087","_from":"2460","_to":"55966"} +{"$label":"ACTS_IN","name":"Charles E. 'Chuck' Norstadt","type":"Role","_key":"63710","_from":"2460","_to":"39837"} +{"$label":"ACTS_IN","name":"Bobby Kent","type":"Role","_key":"54406","_from":"2460","_to":"34894"} +{"$label":"ACTS_IN","name":"Gavin Strick","type":"Role","_key":"53770","_from":"2460","_to":"34656"} +{"$label":"ACTS_IN","name":"Pfc - Beade","type":"Role","_key":"50655","_from":"2460","_to":"33066"} +{"$label":"ACTS_IN","name":"Frank Fowler","type":"Role","_key":"17344","_from":"2460","_to":"12977"} +{"$label":"ACTS_IN","name":"John Connor","type":"Role","_key":"4122","_from":"2460","_to":"3521"} +{"$label":"ACTS_IN","name":"Leslie Marcus","type":"Role","_key":"112129","_from":"2461","_to":"66220"} +{"$label":"ACTS_IN","name":"Dr. Alex Friedman","type":"Role","_key":"97139","_from":"2461","_to":"57141"} +{"$label":"ACTS_IN","name":"Karen Corelli","type":"Role","_key":"94250","_from":"2461","_to":"55507"} +{"$label":"ACTS_IN","name":"Rebecca Warner","type":"Role","_key":"93452","_from":"2461","_to":"55025"} +{"$label":"ACTS_IN","name":"Sally Jupiter \/ Silk Spectre","type":"Role","_key":"93254","_from":"2461","_to":"54939"} +{"$label":"ACTS_IN","name":"Ingrid Cortez","type":"Role","_key":"89188","_from":"2461","_to":"52822"} +{"$label":"ACTS_IN","name":"T.K. Law","type":"Role","_key":"65851","_from":"2461","_to":"40750"} +{"$label":"ACTS_IN","name":"Ingrid Cortez","type":"Role","_key":"60031","_from":"2461","_to":"37889"} +{"$label":"ACTS_IN","name":"Ingrid Cortez","type":"Role","_key":"54200","_from":"2461","_to":"34817"} +{"$label":"ACTS_IN","name":"Julia Costello","type":"Role","_key":"50454","_from":"2461","_to":"32956"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"48658","_from":"2461","_to":"31916"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"48207","_from":"2461","_to":"31667"} +{"$label":"ACTS_IN","name":"Laurie Roberts","type":"Role","_key":"35322","_from":"2461","_to":"24057"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"16153","_from":"2461","_to":"12266"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"14118","_from":"2461","_to":"10934"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"2862","_from":"2464","_to":"2463"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"109311","_from":"2464","_to":"64573"} +{"$label":"ACTS_IN","name":"Derelict","type":"Role","_key":"104361","_from":"2464","_to":"61395"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"93148","_from":"2464","_to":"54899"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"90986","_from":"2464","_to":"53683"} +{"$label":"ACTS_IN","name":"Johnny Six Toes","type":"Role","_key":"66644","_from":"2464","_to":"41189"} +{"$label":"ACTS_IN","name":"Chink's Gang Member","type":"Role","_key":"58772","_from":"2464","_to":"37115"} +{"$label":"ACTS_IN","name":"Vito","type":"Role","_key":"56825","_from":"2464","_to":"36088"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"55572","_from":"2464","_to":"35390"} +{"$label":"ACTS_IN","name":"Machete Cortez","type":"Role","_key":"54205","_from":"2464","_to":"34817"} +{"$label":"ACTS_IN","name":"Navajas","type":"Role","_key":"48036","_from":"2464","_to":"31586"} +{"$label":"ACTS_IN","name":"Apache","type":"Role","_key":"46264","_from":"2464","_to":"30580"} +{"$label":"ACTS_IN","name":"Jumpy","type":"Role","_key":"18778","_from":"2464","_to":"13886"} +{"$label":"ACTS_IN","name":"Ismael Cruz","type":"Role","_key":"18108","_from":"2464","_to":"13441"} +{"$label":"ACTS_IN","name":"Johnny Beca","type":"Role","_key":"15083","_from":"2464","_to":"11583"} +{"$label":"ACTS_IN","name":"Rondo","type":"Role","_key":"15003","_from":"2464","_to":"11531"} +{"$label":"ACTS_IN","name":"Cucuy","type":"Role","_key":"13234","_from":"2464","_to":"10305"} +{"$label":"ACTS_IN","name":"Razor Charlie","type":"Role","_key":"8877","_from":"2464","_to":"7204"} +{"$label":"DIRECTED","_key":"2864","_from":"2467","_to":"2465"} +{"$label":"DIRECTED","_key":"2863","_from":"2466","_to":"2465"} +{"$label":"ACTS_IN","name":"Anhalterin","type":"Role","_key":"2882","_from":"2485","_to":"2468"} +{"$label":"ACTS_IN","name":"Managerin Restaurant","type":"Role","_key":"2881","_from":"2484","_to":"2468"} +{"$label":"ACTS_IN","name":"Heinrichs Freund","type":"Role","_key":"2880","_from":"2483","_to":"2468"} +{"$label":"ACTS_IN","name":"M\u00e4dchen in der Schule","type":"Role","_key":"2878","_from":"2482","_to":"2468"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"2877","_from":"2481","_to":"2468"} +{"$label":"ACTS_IN","name":"Schl\u00e4ger","type":"Role","_key":"2876","_from":"2480","_to":"2468"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"2875","_from":"2479","_to":"2468"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"2874","_from":"2478","_to":"2468"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"2873","_from":"2477","_to":"2468"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"2872","_from":"2476","_to":"2468"} +{"$label":"ACTS_IN","name":"Paulina","type":"Role","_key":"2871","_from":"2475","_to":"2468"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"2870","_from":"2474","_to":"2468"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"2869","_from":"2473","_to":"2468"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"2868","_from":"2472","_to":"2468"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"2867","_from":"2471","_to":"2468"} +{"$label":"DIRECTED","_key":"2866","_from":"2470","_to":"2468"} +{"$label":"DIRECTED","_key":"2865","_from":"2469","_to":"2468"} +{"$label":"DIRECTED","_key":"88380","_from":"2469","_to":"52391"} +{"$label":"DIRECTED","_key":"25180","_from":"2469","_to":"18179"} +{"$label":"DIRECTED","_key":"12005","_from":"2469","_to":"9411"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66589","_from":"2469","_to":"41163"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"53447","_from":"2471","_to":"34531"} +{"$label":"ACTS_IN","name":"Telsa","type":"Role","_key":"14763","_from":"2471","_to":"11358"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"12006","_from":"2471","_to":"9411"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"107285","_from":"2472","_to":"63270"} +{"$label":"ACTS_IN","name":"Caroline Wiethoeft","type":"Role","_key":"63138","_from":"2472","_to":"39598"} +{"$label":"ACTS_IN","name":"Lydia Kominka","type":"Role","_key":"61789","_from":"2472","_to":"38898"} +{"$label":"ACTS_IN","name":"Lena Droemer","type":"Role","_key":"43948","_from":"2472","_to":"29317"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"42861","_from":"2472","_to":"28655"} +{"$label":"ACTS_IN","name":"Elisa","type":"Role","_key":"40025","_from":"2472","_to":"27025"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Sch\u00e4fer","type":"Role","_key":"38276","_from":"2472","_to":"25853"} +{"$label":"ACTS_IN","name":"Irmgard Bode","type":"Role","_key":"31677","_from":"2472","_to":"22105"} +{"$label":"ACTS_IN","name":"Barbara Gunthen","type":"Role","_key":"25185","_from":"2472","_to":"18179"} +{"$label":"ACTS_IN","name":"Billy Hayes","type":"Role","_key":"66436","_from":"2473","_to":"41074"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"62877","_from":"2473","_to":"39506"} +{"$label":"ACTS_IN","name":"Dieter Krosmansky","type":"Role","_key":"57581","_from":"2473","_to":"36468"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"51060","_from":"2473","_to":"33315"} +{"$label":"ACTS_IN","name":"Frank Kolakowski","type":"Role","_key":"50615","_from":"2473","_to":"33053"} +{"$label":"ACTS_IN","name":"Albert Koch","type":"Role","_key":"46754","_from":"2473","_to":"30844"} +{"$label":"ACTS_IN","name":"Milan Sova","type":"Role","_key":"46706","_from":"2473","_to":"30829"} +{"$label":"ACTS_IN","name":"Black Dog","type":"Role","_key":"38313","_from":"2473","_to":"25875"} +{"$label":"ACTS_IN","name":"Kowalski","type":"Role","_key":"12534","_from":"2473","_to":"9814"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"71712","_from":"2475","_to":"43407"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"65437","_from":"2475","_to":"40569"} +{"$label":"ACTS_IN","name":"Kinodate","type":"Role","_key":"3882","_from":"2475","_to":"3319"} +{"$label":"ACTS_IN","name":"Pastor Dibelius","type":"Role","_key":"52258","_from":"2476","_to":"34027"} +{"$label":"ACTS_IN","name":"Dr. Wagner","type":"Role","_key":"42971","_from":"2476","_to":"28710"} +{"$label":"ACTS_IN","name":"Virgil Winter","type":"Role","_key":"42732","_from":"2476","_to":"28599"} +{"$label":"ACTS_IN","name":"Gunnar Mosbach","type":"Role","_key":"42474","_from":"2476","_to":"28443"} +{"$label":"ACTS_IN","name":"Annas Vater","type":"Role","_key":"40673","_from":"2476","_to":"27376"} +{"$label":"ACTS_IN","name":"Maries Vater","type":"Role","_key":"30399","_from":"2476","_to":"21376"} +{"$label":"ACTS_IN","name":"Von Planetz","type":"Role","_key":"30041","_from":"2476","_to":"21186"} +{"$label":"ACTS_IN","name":"Dr. Herman Kallenbach","type":"Role","_key":"9228","_from":"2476","_to":"7444"} +{"$label":"ACTS_IN","name":"Xaver Friedmann","type":"Role","_key":"5979","_from":"2476","_to":"5074"} +{"$label":"ACTS_IN","name":"Worzig","type":"Role","_key":"50194","_from":"2481","_to":"32809"} +{"$label":"ACTS_IN","name":"Harry Beluga","type":"Role","_key":"42533","_from":"2481","_to":"28471"} +{"$label":"ACTS_IN","name":"Kriechbaum\/Navigator","type":"Role","_key":"4943","_from":"2481","_to":"4213"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"43286","_from":"2484","_to":"28910"} +{"$label":"ACTS_IN","name":"Berengar","type":"Role","_key":"2898","_from":"2497","_to":"2486"} +{"$label":"ACTS_IN","name":"Venantius","type":"Role","_key":"2897","_from":"2496","_to":"2486"} +{"$label":"ACTS_IN","name":"Adelmo","type":"Role","_key":"2896","_from":"2495","_to":"2486"} +{"$label":"ACTS_IN","name":"Malachias","type":"Role","_key":"2895","_from":"2494","_to":"2486"} +{"$label":"ACTS_IN","name":"The Abbot","type":"Role","_key":"2894","_from":"2493","_to":"2486"} +{"$label":"ACTS_IN","name":"Adso as Old Man (voice)","type":"Role","_key":"2893","_from":"2492","_to":"2486"} +{"$label":"ACTS_IN","name":"Cardinal Bertrand","type":"Role","_key":"2891","_from":"2491","_to":"2486"} +{"$label":"ACTS_IN","name":"Jorge de Burgos","type":"Role","_key":"2888","_from":"2490","_to":"2486"} +{"$label":"ACTS_IN","name":"Severinus","type":"Role","_key":"2887","_from":"2489","_to":"2486"} +{"$label":"ACTS_IN","name":"Remigio de Varagine","type":"Role","_key":"2886","_from":"2488","_to":"2486"} +{"$label":"DIRECTED","_key":"2883","_from":"2487","_to":"2486"} +{"$label":"DIRECTED","_key":"67164","_from":"2487","_to":"41439"} +{"$label":"DIRECTED","_key":"65824","_from":"2487","_to":"40738"} +{"$label":"DIRECTED","_key":"20839","_from":"2487","_to":"15247"} +{"$label":"DIRECTED","_key":"17319","_from":"2487","_to":"12958"} +{"$label":"DIRECTED","_key":"12096","_from":"2487","_to":"9479"} +{"$label":"DIRECTED","_key":"11559","_from":"2487","_to":"9086"} +{"$label":"DIRECTED","_key":"10107","_from":"2487","_to":"8094"} +{"$label":"ACTS_IN","name":"Oberst Fedor Fedorowitsch Ganiew","type":"Role","_key":"44589","_from":"2488","_to":"29676"} +{"$label":"ACTS_IN","name":"Ike Bykovsky","type":"Role","_key":"94639","_from":"2489","_to":"55757"} +{"$label":"ACTS_IN","name":"Cardinal","type":"Role","_key":"94512","_from":"2489","_to":"55655"} +{"$label":"ACTS_IN","name":"Burciaga","type":"Role","_key":"71030","_from":"2489","_to":"43134"} +{"$label":"ACTS_IN","name":"Mr. Ditkovitch","type":"Role","_key":"6707","_from":"2489","_to":"5637"} +{"$label":"ACTS_IN","name":"Mr. Ditkovich","type":"Role","_key":"6682","_from":"2489","_to":"5630"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"17772","_from":"2490","_to":"13252"} +{"$label":"ACTS_IN","name":"Le juge Souftries","type":"Role","_key":"89991","_from":"2493","_to":"53238"} +{"$label":"ACTS_IN","name":"Opaz (voice: French version)","type":"Role","_key":"70760","_from":"2493","_to":"43031"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"48324","_from":"2493","_to":"31733"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37845","_from":"2493","_to":"25644"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"35253","_from":"2493","_to":"24004"} +{"$label":"ACTS_IN","name":"Lebel","type":"Role","_key":"34673","_from":"2493","_to":"23728"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"34632","_from":"2493","_to":"23697"} +{"$label":"ACTS_IN","name":"Bodley","type":"Role","_key":"33038","_from":"2493","_to":"22898"} +{"$label":"ACTS_IN","name":"Inspecteur Bertrand","type":"Role","_key":"31379","_from":"2493","_to":"21929"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"30699","_from":"2493","_to":"21536"} +{"$label":"ACTS_IN","name":"Morane","type":"Role","_key":"29972","_from":"2493","_to":"21166"} +{"$label":"ACTS_IN","name":"Edouard Loriebat","type":"Role","_key":"21600","_from":"2493","_to":"15787"} +{"$label":"ACTS_IN","name":"le vicomte Prony","type":"Role","_key":"17387","_from":"2493","_to":"12998"} +{"$label":"ACTS_IN","name":"Hugo Drax","type":"Role","_key":"8407","_from":"2493","_to":"6873"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"7258","_from":"2493","_to":"6053"} +{"$label":"ACTS_IN","name":"Georges Tabard","type":"Role","_key":"3674","_from":"2493","_to":"3149"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"19017","_from":"2494","_to":"14038"} +{"$label":"ACTS_IN","name":"Lucullus (voice: German version)","type":"Role","_key":"53392","_from":"2497","_to":"34500"} +{"$label":"ACTS_IN","name":"Adolphe J. Giron","type":"Role","_key":"2905","_from":"2505","_to":"2498"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Filiba","type":"Role","_key":"2904","_from":"2504","_to":"2498"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"2903","_from":"2503","_to":"2498"} +{"$label":"ACTS_IN","name":"Gaton Monescu","type":"Role","_key":"2902","_from":"2502","_to":"2498"} +{"$label":"ACTS_IN","name":"Mariette Colet","type":"Role","_key":"2901","_from":"2501","_to":"2498"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"2900","_from":"2500","_to":"2498"} +{"$label":"DIRECTED","_key":"2899","_from":"2499","_to":"2498"} +{"$label":"DIRECTED","_key":"117257","_from":"2499","_to":"68967"} +{"$label":"DIRECTED","_key":"16079","_from":"2499","_to":"12210"} +{"$label":"DIRECTED","_key":"2948","_from":"2499","_to":"2535"} +{"$label":"ACTS_IN","name":"Siegmund Lachmann","type":"Role","_key":"10767","_from":"2499","_to":"8536"} +{"$label":"ACTS_IN","name":"Julia Hayne","type":"Role","_key":"114144","_from":"2500","_to":"67220"} +{"$label":"ACTS_IN","name":"Maude Brown","type":"Role","_key":"39127","_from":"2500","_to":"26449"} +{"$label":"ACTS_IN","name":"Ivy Pearson","type":"Role","_key":"25015","_from":"2500","_to":"18072"} +{"$label":"ACTS_IN","name":"Joan Ames","type":"Role","_key":"95598","_from":"2501","_to":"56232"} +{"$label":"ACTS_IN","name":"Robert Crosbie","type":"Role","_key":"113983","_from":"2502","_to":"67129"} +{"$label":"ACTS_IN","name":"Charles Manning","type":"Role","_key":"90634","_from":"2502","_to":"53518"} +{"$label":"ACTS_IN","name":"Insp. Charas","type":"Role","_key":"72150","_from":"2502","_to":"43608"} +{"$label":"ACTS_IN","name":"Mr. Charles Tremayne","type":"Role","_key":"16803","_from":"2502","_to":"12660"} +{"$label":"ACTS_IN","name":"Charles McKendrick","type":"Role","_key":"119143","_from":"2503","_to":"70021"} +{"$label":"ACTS_IN","name":"Major Horace Applegate","type":"Role","_key":"10721","_from":"2503","_to":"8505"} +{"$label":"ACTS_IN","name":"Professor Nick Potter","type":"Role","_key":"108443","_from":"2504","_to":"64107"} +{"$label":"ACTS_IN","name":"Mr. Dinckler","type":"Role","_key":"70821","_from":"2504","_to":"43041"} +{"$label":"ACTS_IN","name":"Alexander P. \" Lovey \" Lovett","type":"Role","_key":"28300","_from":"2504","_to":"20257"} +{"$label":"ACTS_IN","name":"Horace Hardwick","type":"Role","_key":"25545","_from":"2504","_to":"18404"} +{"$label":"ACTS_IN","name":"Hutchins","type":"Role","_key":"3597","_from":"2504","_to":"3074"} +{"$label":"ACTS_IN","name":"Mr. Witherspoon","type":"Role","_key":"3059","_from":"2504","_to":"2618"} +{"$label":"ACTS_IN","name":"Colonel Burr MacFay","type":"Role","_key":"100962","_from":"2505","_to":"59504"} +{"$label":"ACTS_IN","name":"General Sir John Mandrake","type":"Role","_key":"34538","_from":"2505","_to":"23646"} +{"$label":"ACTS_IN","name":"Bishop Manners","type":"Role","_key":"25040","_from":"2505","_to":"18088"} +{"$label":"ACTS_IN","name":"Colonel Julyan","type":"Role","_key":"3219","_from":"2505","_to":"2748"} +{"$label":"ACTS_IN","name":"Einstein","type":"Role","_key":"2919","_from":"2513","_to":"2506"} +{"$label":"ACTS_IN","name":"Copernicus","type":"Role","_key":"2918","_from":"2512","_to":"2506"} +{"$label":"ACTS_IN","name":"Buford's Gang Member #3","type":"Role","_key":"2917","_from":"2511","_to":"2506"} +{"$label":"ACTS_IN","name":"Buford's Gang Member #2","type":"Role","_key":"2916","_from":"2510","_to":"2506"} +{"$label":"ACTS_IN","name":"Buford's Gang Member #1\/Needles' Gang Member #1","type":"Role","_key":"2915","_from":"2509","_to":"2506"} +{"$label":"ACTS_IN","name":"Chester the Bartender","type":"Role","_key":"2914","_from":"2508","_to":"2506"} +{"$label":"ACTS_IN","name":"Clara Clayton","type":"Role","_key":"2909","_from":"2507","_to":"2506"} +{"$label":"ACTS_IN","name":"Geneva","type":"Role","_key":"120365","_from":"2507","_to":"70708"} +{"$label":"ACTS_IN","name":"Grace Paxton","type":"Role","_key":"115521","_from":"2507","_to":"68009"} +{"$label":"ACTS_IN","name":"Dr. Cheryl Blaine","type":"Role","_key":"111140","_from":"2507","_to":"65639"} +{"$label":"ACTS_IN","name":"Sarah Michaelson","type":"Role","_key":"105419","_from":"2507","_to":"62025"} +{"$label":"ACTS_IN","name":"Bootsie Robicheaux","type":"Role","_key":"97920","_from":"2507","_to":"57668"} +{"$label":"ACTS_IN","name":"Beverley, Leah's Mother","type":"Role","_key":"95168","_from":"2507","_to":"55998"} +{"$label":"ACTS_IN","name":"Ginny Hanks Grainger","type":"Role","_key":"94197","_from":"2507","_to":"55472"} +{"$label":"ACTS_IN","name":"Jessie Caldwell","type":"Role","_key":"90918","_from":"2507","_to":"53634"} +{"$label":"ACTS_IN","name":"Kate's Mom","type":"Role","_key":"88614","_from":"2507","_to":"52508"} +{"$label":"ACTS_IN","name":"Nancy Huff","type":"Role","_key":"88210","_from":"2507","_to":"52337"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65238","_from":"2507","_to":"40502"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"48862","_from":"2507","_to":"32041"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"31566","_from":"2507","_to":"22047"} +{"$label":"ACTS_IN","name":"Sarah Davis","type":"Role","_key":"23481","_from":"2507","_to":"17023"} +{"$label":"ACTS_IN","name":"Betty Carver","type":"Role","_key":"14059","_from":"2507","_to":"10899"} +{"$label":"ACTS_IN","name":"Karen Buckman","type":"Role","_key":"13737","_from":"2507","_to":"10659"} +{"$label":"ACTS_IN","name":"Corp. Jellicoe","type":"Role","_key":"106198","_from":"2508","_to":"62549"} +{"$label":"ACTS_IN","name":"Honore Thibideaux","type":"Role","_key":"66012","_from":"2508","_to":"40846"} +{"$label":"ACTS_IN","name":"Red Plainclothesman","type":"Role","_key":"18759","_from":"2508","_to":"13876"} +{"$label":"ACTS_IN","name":"Roy Purcell","type":"Role","_key":"14393","_from":"2508","_to":"11128"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"38470","_from":"2509","_to":"25988"} +{"$label":"ACTS_IN","name":"Andy Warhol","type":"Role","_key":"28477","_from":"2510","_to":"20352"} +{"$label":"ACTS_IN","name":"Stephen, Irish Fighter","type":"Role","_key":"2947","_from":"2534","_to":"2514"} +{"$label":"ACTS_IN","name":"Robert Bruce Sr.","type":"Role","_key":"2946","_from":"2533","_to":"2514"} +{"$label":"ACTS_IN","name":"MacGregor","type":"Role","_key":"2945","_from":"2532","_to":"2514"} +{"$label":"ACTS_IN","name":"Lord Bottoms","type":"Role","_key":"2944","_from":"2531","_to":"2514"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"2942","_from":"2530","_to":"2514"} +{"$label":"ACTS_IN","name":"Edward, Prince of Wales","type":"Role","_key":"2941","_from":"2529","_to":"2514"} +{"$label":"ACTS_IN","name":"Young Hamish Campbell","type":"Role","_key":"2939","_from":"2528","_to":"2514"} +{"$label":"ACTS_IN","name":"Elder Stewart","type":"Role","_key":"2938","_from":"2527","_to":"2514"} +{"$label":"ACTS_IN","name":"John Wallace","type":"Role","_key":"2937","_from":"2526","_to":"2514"} +{"$label":"ACTS_IN","name":"Malcolm Wallace","type":"Role","_key":"2936","_from":"2525","_to":"2514"} +{"$label":"ACTS_IN","name":"Nicolette","type":"Role","_key":"2935","_from":"2524","_to":"2514"} +{"$label":"ACTS_IN","name":"Young Murron MacClannough","type":"Role","_key":"2934","_from":"2523","_to":"2514"} +{"$label":"ACTS_IN","name":"Mother MacClannough","type":"Role","_key":"2933","_from":"2522","_to":"2514"} +{"$label":"ACTS_IN","name":"MacClannough","type":"Role","_key":"2932","_from":"2521","_to":"2514"} +{"$label":"ACTS_IN","name":"Campbell","type":"Role","_key":"2931","_from":"2520","_to":"2514"} +{"$label":"ACTS_IN","name":"Young William Wallace","type":"Role","_key":"2930","_from":"2519","_to":"2514"} +{"$label":"ACTS_IN","name":"Robert the Bruce","type":"Role","_key":"2928","_from":"2518","_to":"2514"} +{"$label":"ACTS_IN","name":"King Edward","type":"Role","_key":"2927","_from":"2517","_to":"2514"} +{"$label":"ACTS_IN","name":"Murron MacClannough","type":"Role","_key":"2925","_from":"2516","_to":"2514"} +{"$label":"ACTS_IN","name":"William Wallace","type":"Role","_key":"2924","_from":"2515","_to":"2514"} +{"$label":"DIRECTED","_key":"2923","_from":"2515","_to":"2514"} +{"$label":"ACTS_IN","name":"Thomas Craven","type":"Role","_key":"88649","_from":"2515","_to":"52530"} +{"$label":"ACTS_IN","name":"Gene Ryack","type":"Role","_key":"72408","_from":"2515","_to":"43714"} +{"$label":"ACTS_IN","name":"Frank Dunne","type":"Role","_key":"71261","_from":"2515","_to":"43237"} +{"$label":"ACTS_IN","name":"Guy Hamilton","type":"Role","_key":"70523","_from":"2515","_to":"42927"} +{"$label":"ACTS_IN","name":"Lt. Col. Hal Moore","type":"Role","_key":"64302","_from":"2515","_to":"40088"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"63878","_from":"2515","_to":"39912"} +{"$label":"ACTS_IN","name":"Justin McLeod","type":"Role","_key":"63709","_from":"2515","_to":"39837"} +{"$label":"ACTS_IN","name":"Dale \"Mac\" McKussic","type":"Role","_key":"62983","_from":"2515","_to":"39544"} +{"$label":"ACTS_IN","name":"Capt. Daniel McCormick","type":"Role","_key":"62601","_from":"2515","_to":"39386"} +{"$label":"ACTS_IN","name":"Hamlet","type":"Role","_key":"62143","_from":"2515","_to":"39139"} +{"$label":"ACTS_IN","name":"'Mad' Max Rockatansky","type":"Role","_key":"55364","_from":"2515","_to":"35296"} +{"$label":"ACTS_IN","name":"Bret Maverick","type":"Role","_key":"53337","_from":"2515","_to":"34482"} +{"$label":"ACTS_IN","name":"Max Rockatansky","type":"Role","_key":"53314","_from":"2515","_to":"34472"} +{"$label":"ACTS_IN","name":"Jerry Fletcher","type":"Role","_key":"50936","_from":"2515","_to":"33245"} +{"$label":"ACTS_IN","name":"Max Rockatansky","type":"Role","_key":"50877","_from":"2515","_to":"33209"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"46660","_from":"2515","_to":"30817"} +{"$label":"ACTS_IN","name":"Scollop","type":"Role","_key":"39046","_from":"2515","_to":"26392"} +{"$label":"ACTS_IN","name":"Nick Marshall","type":"Role","_key":"29320","_from":"2515","_to":"20821"} +{"$label":"ACTS_IN","name":"Tom Mullen","type":"Role","_key":"28251","_from":"2515","_to":"20232"} +{"$label":"ACTS_IN","name":"Rev. Graham Hess","type":"Role","_key":"22690","_from":"2515","_to":"16465"} +{"$label":"ACTS_IN","name":"Fletcher Christian","type":"Role","_key":"22619","_from":"2515","_to":"16415"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"18415","_from":"2515","_to":"13655"} +{"$label":"ACTS_IN","name":"Benjamin Martin","type":"Role","_key":"17604","_from":"2515","_to":"13147"} +{"$label":"ACTS_IN","name":"Rick Jarmin","type":"Role","_key":"15283","_from":"2515","_to":"11700"} +{"$label":"ACTS_IN","name":"Martin Riggs","type":"Role","_key":"11257","_from":"2515","_to":"8897"} +{"$label":"ACTS_IN","name":"Martin Riggs","type":"Role","_key":"11250","_from":"2515","_to":"8895"} +{"$label":"ACTS_IN","name":"Martin Riggs","type":"Role","_key":"11232","_from":"2515","_to":"8884"} +{"$label":"ACTS_IN","name":"Sergeant Martin Riggs","type":"Role","_key":"11217","_from":"2515","_to":"8874"} +{"$label":"ACTS_IN","name":"Detective Skinner","type":"Role","_key":"4411","_from":"2515","_to":"3774"} +{"$label":"DIRECTED","_key":"63713","_from":"2515","_to":"39837"} +{"$label":"DIRECTED","_key":"13967","_from":"2515","_to":"10827"} +{"$label":"DIRECTED","_key":"7293","_from":"2515","_to":"6084"} +{"$label":"ACTS_IN","name":"Kristina Baumgarten \/ Tosca","type":"Role","_key":"111615","_from":"2516","_to":"65897"} +{"$label":"ACTS_IN","name":"Jean Janes","type":"Role","_key":"95046","_from":"2516","_to":"55951"} +{"$label":"ACTS_IN","name":"Sonia Rand","type":"Role","_key":"60352","_from":"2516","_to":"38062"} +{"$label":"ACTS_IN","name":"Bislane Tasuiev","type":"Role","_key":"53549","_from":"2516","_to":"34565"} +{"$label":"ACTS_IN","name":"Veronica Franco","type":"Role","_key":"50204","_from":"2516","_to":"32818"} +{"$label":"ACTS_IN","name":"Christina 'Chrissy' Mundy","type":"Role","_key":"37037","_from":"2516","_to":"25107"} +{"$label":"ACTS_IN","name":"Francesca Deane","type":"Role","_key":"22025","_from":"2516","_to":"16070"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"13829","_from":"2516","_to":"10733"} +{"$label":"ACTS_IN","name":"Elizabeth Hadley","type":"Role","_key":"13601","_from":"2516","_to":"10575"} +{"$label":"ACTS_IN","name":"Doctor Eric Kiviat","type":"Role","_key":"121060","_from":"2517","_to":"71095"} +{"$label":"ACTS_IN","name":"David Jones","type":"Role","_key":"113490","_from":"2517","_to":"66871"} +{"$label":"ACTS_IN","name":"Andrew McDhui","type":"Role","_key":"103110","_from":"2517","_to":"60651"} +{"$label":"ACTS_IN","name":"Roger Devereau","type":"Role","_key":"70657","_from":"2517","_to":"42994"} +{"$label":"ACTS_IN","name":"Major Cabot","type":"Role","_key":"66695","_from":"2517","_to":"41205"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"65329","_from":"2517","_to":"40534"} +{"$label":"ACTS_IN","name":"Dr. Paul Ruth","type":"Role","_key":"54538","_from":"2517","_to":"34950"} +{"$label":"ACTS_IN","name":"Billy Bones","type":"Role","_key":"52025","_from":"2517","_to":"33920"} +{"$label":"ACTS_IN","name":"Fouchet","type":"Role","_key":"30057","_from":"2517","_to":"21198"} +{"$label":"ACTS_IN","name":"Blackbeard","type":"Role","_key":"115900","_from":"2518","_to":"68234"} +{"$label":"ACTS_IN","name":"Jonathan Dennison \/ Simon Phillips","type":"Role","_key":"101830","_from":"2518","_to":"59934"} +{"$label":"ACTS_IN","name":"Big Al","type":"Role","_key":"98339","_from":"2518","_to":"57917"} +{"$label":"ACTS_IN","name":"Dupont","type":"Role","_key":"46339","_from":"2518","_to":"30618"} +{"$label":"ACTS_IN","name":"Jeff Reinhart","type":"Role","_key":"3083","_from":"2518","_to":"2645"} +{"$label":"ACTS_IN","name":"Galder Weatherwax","type":"Role","_key":"95118","_from":"2520","_to":"55975"} +{"$label":"ACTS_IN","name":"Finlay Murray","type":"Role","_key":"56338","_from":"2520","_to":"35796"} +{"$label":"ACTS_IN","name":"Hrothgar","type":"Role","_key":"55884","_from":"2520","_to":"35542"} +{"$label":"ACTS_IN","name":"Angus MacLeod","type":"Role","_key":"47760","_from":"2520","_to":"31448"} +{"$label":"ACTS_IN","name":"Brenden","type":"Role","_key":"41413","_from":"2520","_to":"27839"} +{"$label":"ACTS_IN","name":"Mr. Weston","type":"Role","_key":"27993","_from":"2520","_to":"20074"} +{"$label":"ACTS_IN","name":"Dawson","type":"Role","_key":"19970","_from":"2520","_to":"14703"} +{"$label":"ACTS_IN","name":"McLean","type":"Role","_key":"15493","_from":"2520","_to":"11830"} +{"$label":"ACTS_IN","name":"Glaucus","type":"Role","_key":"7801","_from":"2520","_to":"6469"} +{"$label":"ACTS_IN","name":"Mr. Renton","type":"Role","_key":"7451","_from":"2520","_to":"6206"} +{"$label":"ACTS_IN","name":"Father Christmas","type":"Role","_key":"5231","_from":"2520","_to":"4445"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"110355","_from":"2521","_to":"65211"} +{"$label":"ACTS_IN","name":"Detective Louis Emeric","type":"Role","_key":"90600","_from":"2521","_to":"53506"} +{"$label":"ACTS_IN","name":"Declan Murray","type":"Role","_key":"60659","_from":"2521","_to":"38296"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"15414","_from":"2521","_to":"11783"} +{"$label":"ACTS_IN","name":"Lamar Sanders","type":"Role","_key":"114345","_from":"2525","_to":"67354"} +{"$label":"ACTS_IN","name":"Ion","type":"Role","_key":"120393","_from":"2530","_to":"70723"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"64201","_from":"2530","_to":"40050"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25903","_from":"2530","_to":"18639"} +{"$label":"ACTS_IN","name":"Luzifer","type":"Role","_key":"71755","_from":"2533","_to":"43433"} +{"$label":"ACTS_IN","name":"Sir Edith Moser","type":"Role","_key":"63613","_from":"2533","_to":"39797"} +{"$label":"ACTS_IN","name":"Jackie O'Shea","type":"Role","_key":"61345","_from":"2533","_to":"38715"} +{"$label":"ACTS_IN","name":"Gabelle","type":"Role","_key":"33462","_from":"2533","_to":"23156"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"27910","_from":"2533","_to":"20003"} +{"$label":"ACTS_IN","name":"Amos","type":"Role","_key":"21152","_from":"2533","_to":"15473"} +{"$label":"ACTS_IN","name":"Michael Canaris","type":"Role","_key":"94618","_from":"2534","_to":"55748"} +{"$label":"ACTS_IN","name":"Albert Runcorn","type":"Role","_key":"89537","_from":"2534","_to":"52992"} +{"$label":"ACTS_IN","name":"Donnchadh (as David Patrick O'Hara)","type":"Role","_key":"52247","_from":"2534","_to":"34026"} +{"$label":"ACTS_IN","name":"Mr. X","type":"Role","_key":"51430","_from":"2534","_to":"33548"} +{"$label":"ACTS_IN","name":"John Banning","type":"Role","_key":"39086","_from":"2534","_to":"26424"} +{"$label":"ACTS_IN","name":"Martin MacDuf","type":"Role","_key":"31987","_from":"2534","_to":"22296"} +{"$label":"ACTS_IN","name":"John the Baptist","type":"Role","_key":"20457","_from":"2534","_to":"14968"} +{"$label":"ACTS_IN","name":"Fitzy","type":"Role","_key":"13175","_from":"2534","_to":"10265"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"3013","_from":"2534","_to":"2567"} +{"$label":"ACTS_IN","name":"Anna, Garderobiere","type":"Role","_key":"2959","_from":"2545","_to":"2535"} +{"$label":"ACTS_IN","name":"Dobosh, Regisseur","type":"Role","_key":"2957","_from":"2544","_to":"2535"} +{"$label":"ACTS_IN","name":"Bronski","type":"Role","_key":"2956","_from":"2543","_to":"2535"} +{"$label":"ACTS_IN","name":"SS-Gruppenf\u00fchrer Ehrhardt","type":"Role","_key":"2955","_from":"2542","_to":"2535"} +{"$label":"ACTS_IN","name":"Professor Alexander Siletsky","type":"Role","_key":"2954","_from":"2541","_to":"2535"} +{"$label":"ACTS_IN","name":"Rawitch","type":"Role","_key":"2953","_from":"2540","_to":"2535"} +{"$label":"ACTS_IN","name":"Greenberg","type":"Role","_key":"2952","_from":"2539","_to":"2535"} +{"$label":"ACTS_IN","name":"Leutnant Stanislav Sobinski","type":"Role","_key":"2951","_from":"2538","_to":"2535"} +{"$label":"ACTS_IN","name":"Joseph Tura","type":"Role","_key":"2950","_from":"2537","_to":"2535"} +{"$label":"ACTS_IN","name":"Maria Tura","type":"Role","_key":"2949","_from":"2536","_to":"2535"} +{"$label":"ACTS_IN","name":"Jane Mason","type":"Role","_key":"116681","_from":"2536","_to":"68689"} +{"$label":"ACTS_IN","name":"Irene Bullock","type":"Role","_key":"95220","_from":"2536","_to":"56023"} +{"$label":"ACTS_IN","name":"Man in Car in Desert (uncredited)","type":"Role","_key":"70832","_from":"2537","_to":"43041"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34910","_from":"2537","_to":"23848"} +{"$label":"ACTS_IN","name":"Chandler Young","type":"Role","_key":"116462","_from":"2538","_to":"68550"} +{"$label":"ACTS_IN","name":"John Sullivan","type":"Role","_key":"113848","_from":"2538","_to":"67061"} +{"$label":"ACTS_IN","name":"Maj. Gen. Joseph W. Stilwell","type":"Role","_key":"70382","_from":"2538","_to":"42868"} +{"$label":"ACTS_IN","name":"MacGregor","type":"Role","_key":"58673","_from":"2538","_to":"37064"} +{"$label":"ACTS_IN","name":"Kyle Hadley","type":"Role","_key":"40624","_from":"2538","_to":"27357"} +{"$label":"ACTS_IN","name":"Dr Tom Baker","type":"Role","_key":"34135","_from":"2538","_to":"23449"} +{"$label":"ACTS_IN","name":"General Sibert","type":"Role","_key":"33562","_from":"2538","_to":"23204"} +{"$label":"ACTS_IN","name":"ATF Agent Flemming (voice)","type":"Role","_key":"26531","_from":"2538","_to":"19068"} +{"$label":"ACTS_IN","name":"Dr. Ellison","type":"Role","_key":"21973","_from":"2538","_to":"16044"} +{"$label":"ACTS_IN","name":"Otto von Rohn","type":"Role","_key":"11703","_from":"2538","_to":"9187"} +{"$label":"ACTS_IN","name":"Rex Kramer","type":"Role","_key":"9580","_from":"2538","_to":"7714"} +{"$label":"ACTS_IN","name":"Buljanoff","type":"Role","_key":"16073","_from":"2539","_to":"12210"} +{"$label":"ACTS_IN","name":"Gerichtsvollzieher","type":"Role","_key":"10787","_from":"2539","_to":"8549"} +{"$label":"ACTS_IN","name":"Moriarty","type":"Role","_key":"117199","_from":"2540","_to":"68947"} +{"$label":"ACTS_IN","name":"Dr. Jerry Xavier","type":"Role","_key":"28000","_from":"2540","_to":"20078"} +{"$label":"ACTS_IN","name":"Aenz","type":"Role","_key":"25956","_from":"2540","_to":"18663"} +{"$label":"ACTS_IN","name":"Krogh","type":"Role","_key":"25513","_from":"2540","_to":"18386"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"25500","_from":"2540","_to":"18381"} +{"$label":"ACTS_IN","name":"Dr. Bohmer","type":"Role","_key":"25471","_from":"2540","_to":"18370"} +{"$label":"ACTS_IN","name":"Martin T. Fleming, Attorney","type":"Role","_key":"119997","_from":"2541","_to":"70472"} +{"$label":"ACTS_IN","name":"Prof. George Kingsley \/ Red Cannon","type":"Role","_key":"96603","_from":"2541","_to":"56822"} +{"$label":"ACTS_IN","name":"Dr. Leopold X. Steinberg","type":"Role","_key":"72864","_from":"2542","_to":"43887"} +{"$label":"ACTS_IN","name":"Mr. Beckstein","type":"Role","_key":"28201","_from":"2542","_to":"20193"} +{"$label":"ACTS_IN","name":"Burgomeister Hussman","type":"Role","_key":"25959","_from":"2542","_to":"18663"} +{"$label":"ACTS_IN","name":"Iranoff","type":"Role","_key":"16072","_from":"2542","_to":"12210"} +{"$label":"ACTS_IN","name":"Sgt. Schulz","type":"Role","_key":"7521","_from":"2542","_to":"6257"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"70716","_from":"2543","_to":"43007"} +{"$label":"ACTS_IN","name":"Chamberlain","type":"Role","_key":"50745","_from":"2543","_to":"33114"} +{"$label":"ACTS_IN","name":"A.V. Smith","type":"Role","_key":"117509","_from":"2544","_to":"69090"} +{"$label":"ACTS_IN","name":"Dr. Rupert Bulfinch","type":"Role","_key":"28236","_from":"2544","_to":"20222"} +{"$label":"ACTS_IN","name":"Borg Queen","type":"Role","_key":"2963","_from":"2547","_to":"2546"} +{"$label":"ACTS_IN","name":"Zo","type":"Role","_key":"102020","_from":"2547","_to":"60027"} +{"$label":"ACTS_IN","name":"Lady Jessica Atreides","type":"Role","_key":"99670","_from":"2547","_to":"58761"} +{"$label":"ACTS_IN","name":"Lady Russell","type":"Role","_key":"97689","_from":"2547","_to":"57524"} +{"$label":"ACTS_IN","name":"Isabelle Morton","type":"Role","_key":"89966","_from":"2547","_to":"53222"} +{"$label":"ACTS_IN","name":"Mary Brady","type":"Role","_key":"69804","_from":"2547","_to":"42601"} +{"$label":"ACTS_IN","name":"Tully Sorenson","type":"Role","_key":"66850","_from":"2547","_to":"41286"} +{"$label":"ACTS_IN","name":"Sybil Gordon (Abrahams Frau)","type":"Role","_key":"53901","_from":"2547","_to":"34695"} +{"$label":"ACTS_IN","name":"Rahel","type":"Role","_key":"21062","_from":"2547","_to":"15413"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"13332","_from":"2547","_to":"10382"} +{"$label":"ACTS_IN","name":"Christabella","type":"Role","_key":"7059","_from":"2547","_to":"5907"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"2982","_from":"2555","_to":"2548"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"2981","_from":"2554","_to":"2548"} +{"$label":"ACTS_IN","name":"Joey 'Clams' Scala","type":"Role","_key":"2980","_from":"2553","_to":"2548"} +{"$label":"ACTS_IN","name":"Mario (as Vic Argo)","type":"Role","_key":"2979","_from":"2552","_to":"2548"} +{"$label":"ACTS_IN","name":"Giovanni Cappa","type":"Role","_key":"2978","_from":"2551","_to":"2548"} +{"$label":"ACTS_IN","name":"Michael Longo","type":"Role","_key":"2977","_from":"2550","_to":"2548"} +{"$label":"ACTS_IN","name":"Teresa Ronchelli","type":"Role","_key":"2976","_from":"2549","_to":"2548"} +{"$label":"ACTS_IN","name":"Weehawk (voice)","type":"Role","_key":"108155","_from":"2550","_to":"63917"} +{"$label":"ACTS_IN","name":"Mayor Carmine DePasto","type":"Role","_key":"49992","_from":"2551","_to":"32712"} +{"$label":"ACTS_IN","name":"Count Elmo Mancini","type":"Role","_key":"18289","_from":"2551","_to":"13569"} +{"$label":"ACTS_IN","name":"Lt. Spigot","type":"Role","_key":"99979","_from":"2552","_to":"58990"} +{"$label":"ACTS_IN","name":"Beat Cop","type":"Role","_key":"88278","_from":"2552","_to":"52363"} +{"$label":"ACTS_IN","name":"Diner Cashier","type":"Role","_key":"66136","_from":"2552","_to":"40908"} +{"$label":"ACTS_IN","name":"Roy Bishop","type":"Role","_key":"54666","_from":"2552","_to":"35009"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"40170","_from":"2552","_to":"27113"} +{"$label":"ACTS_IN","name":"Carl Pogue","type":"Role","_key":"39839","_from":"2552","_to":"26919"} +{"$label":"ACTS_IN","name":"Vinny","type":"Role","_key":"34195","_from":"2552","_to":"23484"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"101998","_from":"2553","_to":"60016"} +{"$label":"ACTS_IN","name":"Ice Rink Attendant","type":"Role","_key":"12646","_from":"2553","_to":"9878"} +{"$label":"ACTS_IN","name":"Bill O'Brien","type":"Role","_key":"2993","_from":"2566","_to":"2556"} +{"$label":"ACTS_IN","name":"Hernandez","type":"Role","_key":"2992","_from":"2565","_to":"2556"} +{"$label":"ACTS_IN","name":"Smerloff","type":"Role","_key":"2991","_from":"2564","_to":"2556"} +{"$label":"ACTS_IN","name":"Bernardo","type":"Role","_key":"2990","_from":"2563","_to":"2556"} +{"$label":"ACTS_IN","name":"Camp Chief","type":"Role","_key":"2989","_from":"2562","_to":"2556"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"2988","_from":"2561","_to":"2556"} +{"$label":"ACTS_IN","name":"Camp","type":"Role","_key":"2987","_from":"2560","_to":"2556"} +{"$label":"ACTS_IN","name":"Bimba","type":"Role","_key":"2986","_from":"2559","_to":"2556"} +{"$label":"ACTS_IN","name":"M. Jo","type":"Role","_key":"2985","_from":"2558","_to":"2556"} +{"$label":"DIRECTED","_key":"2983","_from":"2557","_to":"2556"} +{"$label":"DIRECTED","_key":"9772","_from":"2557","_to":"7837"} +{"$label":"ACTS_IN","name":"Charles Fournier","type":"Role","_key":"89156","_from":"2558","_to":"52806"} +{"$label":"ACTS_IN","name":"Alfred Fichet, le commissaire","type":"Role","_key":"9776","_from":"2558","_to":"7837"} +{"$label":"ACTS_IN","name":"Bertani","type":"Role","_key":"4928","_from":"2558","_to":"4200"} +{"$label":"ACTS_IN","name":"Maj. Bob Anders","type":"Role","_key":"118848","_from":"2559","_to":"69858"} +{"$label":"ACTS_IN","name":"Major Bill Tern","type":"Role","_key":"118843","_from":"2559","_to":"69856"} +{"$label":"ACTS_IN","name":"Henry B. Travers","type":"Role","_key":"118829","_from":"2559","_to":"69853"} +{"$label":"ACTS_IN","name":"Gen. Von Brock","type":"Role","_key":"106197","_from":"2559","_to":"62549"} +{"$label":"ACTS_IN","name":"Hans-Dieter Mundt","type":"Role","_key":"95309","_from":"2559","_to":"56070"} +{"$label":"ACTS_IN","name":"Fribert","type":"Role","_key":"31310","_from":"2559","_to":"21896"} +{"$label":"ACTS_IN","name":"Christina Delassalle","type":"Role","_key":"9774","_from":"2561","_to":"7837"} +{"$label":"ACTS_IN","name":"Captain Bill Martin","type":"Role","_key":"49694","_from":"2566","_to":"32506"} +{"$label":"ACTS_IN","name":"Alice the Waitress","type":"Role","_key":"3021","_from":"2588","_to":"2567"} +{"$label":"ACTS_IN","name":"Hutu Captain","type":"Role","_key":"3020","_from":"2587","_to":"2567"} +{"$label":"ACTS_IN","name":"Hutu Lieutenant","type":"Role","_key":"3019","_from":"2586","_to":"2567"} +{"$label":"ACTS_IN","name":"Gregoire's Girlfriend","type":"Role","_key":"3017","_from":"2585","_to":"2567"} +{"$label":"ACTS_IN","name":"Chloe, Prostitute","type":"Role","_key":"3016","_from":"2584","_to":"2567"} +{"$label":"ACTS_IN","name":"Benedict","type":"Role","_key":"3015","_from":"2583","_to":"2567"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"3014","_from":"2582","_to":"2567"} +{"$label":"ACTS_IN","name":"Elys Rusesabagina","type":"Role","_key":"3012","_from":"2581","_to":"2567"} +{"$label":"ACTS_IN","name":"Carine","type":"Role","_key":"3011","_from":"2580","_to":"2567"} +{"$label":"ACTS_IN","name":"Anais","type":"Role","_key":"3010","_from":"2579","_to":"2567"} +{"$label":"ACTS_IN","name":"Fedens","type":"Role","_key":"3009","_from":"2578","_to":"2567"} +{"$label":"ACTS_IN","name":"Odette","type":"Role","_key":"3007","_from":"2577","_to":"2567"} +{"$label":"ACTS_IN","name":"General Bizimungu","type":"Role","_key":"3006","_from":"2576","_to":"2567"} +{"$label":"ACTS_IN","name":"Gregoire","type":"Role","_key":"3005","_from":"2575","_to":"2567"} +{"$label":"ACTS_IN","name":"George Rutaganda","type":"Role","_key":"3004","_from":"2574","_to":"2567"} +{"$label":"ACTS_IN","name":"Dube","type":"Role","_key":"3003","_from":"2573","_to":"2567"} +{"$label":"ACTS_IN","name":"Jean Jacques","type":"Role","_key":"3002","_from":"2572","_to":"2567"} +{"$label":"ACTS_IN","name":"Diane Rusesabagina","type":"Role","_key":"3001","_from":"2571","_to":"2567"} +{"$label":"ACTS_IN","name":"Roger Rusesabagina","type":"Role","_key":"3000","_from":"2570","_to":"2567"} +{"$label":"ACTS_IN","name":"Tatiana Rusesabagina","type":"Role","_key":"2997","_from":"2569","_to":"2567"} +{"$label":"DIRECTED","_key":"2994","_from":"2568","_to":"2567"} +{"$label":"DIRECTED","_key":"51632","_from":"2568","_to":"33692"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"116654","_from":"2569","_to":"68665"} +{"$label":"ACTS_IN","name":"May Boatwright","type":"Role","_key":"91812","_from":"2569","_to":"54159"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"58888","_from":"2569","_to":"37189"} +{"$label":"ACTS_IN","name":"Sithandra","type":"Role","_key":"48381","_from":"2569","_to":"31760"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"36029","_from":"2569","_to":"24460"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"27266","_from":"2569","_to":"19605"} +{"$label":"ACTS_IN","name":"Anthony Marston","type":"Role","_key":"34517","_from":"2572","_to":"23628"} +{"$label":"ACTS_IN","name":"Miso","type":"Role","_key":"20343","_from":"2573","_to":"14897"} +{"$label":"ACTS_IN","name":"Colonel Ike Dubaku","type":"Role","_key":"97992","_from":"2574","_to":"57709"} +{"$label":"ACTS_IN","name":"Yesterday","type":"Role","_key":"45188","_from":"2578","_to":"29983"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"45190","_from":"2588","_to":"29983"} +{"$label":"DIRECTED","_key":"3025","_from":"2593","_to":"2589"} +{"$label":"ACTS_IN","name":"D\u00e4nin Mette-Sophie Gad","type":"Role","_key":"3024","_from":"2592","_to":"2589"} +{"$label":"ACTS_IN","name":"Camille Pissarro","type":"Role","_key":"3023","_from":"2591","_to":"2589"} +{"$label":"ACTS_IN","name":"Paul Gauguin","type":"Role","_key":"3022","_from":"2590","_to":"2589"} +{"$label":"ACTS_IN","name":"Sonny Gilstrap","type":"Role","_key":"119085","_from":"2590","_to":"69998"} +{"$label":"ACTS_IN","name":"Tad Allagash","type":"Role","_key":"111414","_from":"2590","_to":"65786"} +{"$label":"ACTS_IN","name":"Raistlin Majere (Voice)","type":"Role","_key":"110946","_from":"2590","_to":"65533"} +{"$label":"ACTS_IN","name":"General W.R. Monger (voice)","type":"Role","_key":"104776","_from":"2590","_to":"61645"} +{"$label":"ACTS_IN","name":"Jack Bauer","type":"Role","_key":"97984","_from":"2590","_to":"57709"} +{"$label":"ACTS_IN","name":"Nutcracker Prince (voice)","type":"Role","_key":"96198","_from":"2590","_to":"56544"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"96054","_from":"2590","_to":"56457"} +{"$label":"ACTS_IN","name":"Ben Carson","type":"Role","_key":"94955","_from":"2590","_to":"55920"} +{"$label":"ACTS_IN","name":"John Buckner","type":"Role","_key":"91233","_from":"2590","_to":"53798"} +{"$label":"ACTS_IN","name":"Josiah Gordon 'Doc' Scurlock","type":"Role","_key":"73041","_from":"2590","_to":"43958"} +{"$label":"ACTS_IN","name":"Bob Wolverton","type":"Role","_key":"68677","_from":"2590","_to":"42088"} +{"$label":"ACTS_IN","name":"Christopher Hart","type":"Role","_key":"67747","_from":"2590","_to":"41652"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"60063","_from":"2590","_to":"37904"} +{"$label":"ACTS_IN","name":"Samson","type":"Role","_key":"57804","_from":"2590","_to":"36591"} +{"$label":"ACTS_IN","name":"Josiah Gordon Scurlock (\"Doc\")","type":"Role","_key":"52483","_from":"2590","_to":"34143"} +{"$label":"ACTS_IN","name":"David Breckinridge","type":"Role","_key":"39604","_from":"2590","_to":"26771"} +{"$label":"ACTS_IN","name":"William S. Burroughs","type":"Role","_key":"26523","_from":"2590","_to":"19066"} +{"$label":"ACTS_IN","name":"Dr. Daniel P. Schreber","type":"Role","_key":"22585","_from":"2590","_to":"16394"} +{"$label":"ACTS_IN","name":"Arthur Banks","type":"Role","_key":"18260","_from":"2590","_to":"13549"} +{"$label":"ACTS_IN","name":"Sam Stanley","type":"Role","_key":"16647","_from":"2590","_to":"12568"} +{"$label":"ACTS_IN","name":"Der Anrufer","type":"Role","_key":"15729","_from":"2590","_to":"11989"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"15581","_from":"2590","_to":"11884"} +{"$label":"ACTS_IN","name":"Reardon","type":"Role","_key":"15489","_from":"2590","_to":"11830"} +{"$label":"ACTS_IN","name":"Freddie Lee Cobb","type":"Role","_key":"14604","_from":"2590","_to":"11252"} +{"$label":"ACTS_IN","name":"Jeff Harriman","type":"Role","_key":"14582","_from":"2590","_to":"11240"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"13726","_from":"2590","_to":"10658"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"13696","_from":"2590","_to":"10632"} +{"$label":"ACTS_IN","name":"Lt. Jonathan Kendrick","type":"Role","_key":"10484","_from":"2590","_to":"8340"} +{"$label":"ACTS_IN","name":"Ace Merrill","type":"Role","_key":"3393","_from":"2590","_to":"2903"} +{"$label":"ACTS_IN","name":"Reuben Smith","type":"Role","_key":"100622","_from":"2591","_to":"59333"} +{"$label":"ACTS_IN","name":"Capshaw","type":"Role","_key":"95547","_from":"2591","_to":"56192"} +{"$label":"ACTS_IN","name":"Thrasher","type":"Role","_key":"91978","_from":"2591","_to":"54263"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"91488","_from":"2591","_to":"53938"} +{"$label":"ACTS_IN","name":"Cardinal Jinette","type":"Role","_key":"45846","_from":"2591","_to":"30311"} +{"$label":"ACTS_IN","name":"Cardinal Jinetta ( voice )","type":"Role","_key":"45801","_from":"2591","_to":"30298"} +{"$label":"ACTS_IN","name":"Onkel Garrow","type":"Role","_key":"21673","_from":"2591","_to":"15842"} +{"$label":"ACTS_IN","name":"Torquil","type":"Role","_key":"10055","_from":"2591","_to":"8047"} +{"$label":"ACTS_IN","name":"Daisy McConnahay","type":"Role","_key":"91107","_from":"2592","_to":"53749"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"90627","_from":"2592","_to":"53516"} +{"$label":"ACTS_IN","name":"Collette Andrews","type":"Role","_key":"89902","_from":"2592","_to":"53201"} +{"$label":"ACTS_IN","name":"Tess Durbeyfield","type":"Role","_key":"67992","_from":"2592","_to":"41780"} +{"$label":"ACTS_IN","name":"Raphaela","type":"Role","_key":"63329","_from":"2592","_to":"39697"} +{"$label":"ACTS_IN","name":"Chris Morrow","type":"Role","_key":"52311","_from":"2592","_to":"34057"} +{"$label":"ACTS_IN","name":"Irena Gallier","type":"Role","_key":"42612","_from":"2592","_to":"28531"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"17777","_from":"2592","_to":"13258"} +{"$label":"ACTS_IN","name":"The Lawyer","type":"Role","_key":"9759","_from":"2592","_to":"7817"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"7835","_from":"2592","_to":"6500"} +{"$label":"ACTS_IN","name":"Dr. Hager","type":"Role","_key":"3039","_from":"2605","_to":"2594"} +{"$label":"ACTS_IN","name":"McAllister","type":"Role","_key":"3038","_from":"2604","_to":"2594"} +{"$label":"ACTS_IN","name":"Mrs. Perry","type":"Role","_key":"3037","_from":"2603","_to":"2594"} +{"$label":"ACTS_IN","name":"Mr. Nolan","type":"Role","_key":"3035","_from":"2602","_to":"2594"} +{"$label":"ACTS_IN","name":"Gerard Pitts","type":"Role","_key":"3034","_from":"2601","_to":"2594"} +{"$label":"ACTS_IN","name":"Steven Meeks","type":"Role","_key":"3033","_from":"2600","_to":"2594"} +{"$label":"ACTS_IN","name":"Richard Cameron","type":"Role","_key":"3032","_from":"2599","_to":"2594"} +{"$label":"ACTS_IN","name":"Knox Overstreet","type":"Role","_key":"3031","_from":"2598","_to":"2594"} +{"$label":"ACTS_IN","name":"Charlie Dalton","type":"Role","_key":"3030","_from":"2597","_to":"2594"} +{"$label":"ACTS_IN","name":"Neil Perry","type":"Role","_key":"3029","_from":"2596","_to":"2594"} +{"$label":"DIRECTED","_key":"3026","_from":"2595","_to":"2594"} +{"$label":"DIRECTED","_key":"88348","_from":"2595","_to":"52386"} +{"$label":"DIRECTED","_key":"71266","_from":"2595","_to":"43237"} +{"$label":"DIRECTED","_key":"70527","_from":"2595","_to":"42927"} +{"$label":"DIRECTED","_key":"67987","_from":"2595","_to":"41779"} +{"$label":"DIRECTED","_key":"67336","_from":"2595","_to":"41503"} +{"$label":"DIRECTED","_key":"63388","_from":"2595","_to":"39716"} +{"$label":"DIRECTED","_key":"52820","_from":"2595","_to":"34251"} +{"$label":"DIRECTED","_key":"50278","_from":"2595","_to":"32851"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"70895","_from":"2596","_to":"43076"} +{"$label":"ACTS_IN","name":"Demille","type":"Role","_key":"63557","_from":"2596","_to":"39780"} +{"$label":"ACTS_IN","name":"Peter M\u00fcller","type":"Role","_key":"63140","_from":"2596","_to":"39600"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"116172","_from":"2598","_to":"68405"} +{"$label":"ACTS_IN","name":"Bryan","type":"Role","_key":"104315","_from":"2598","_to":"61374"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"64751","_from":"2598","_to":"40305"} +{"$label":"ACTS_IN","name":"T.J. McCabe","type":"Role","_key":"52631","_from":"2598","_to":"34193"} +{"$label":"ACTS_IN","name":"Det. Fowler","type":"Role","_key":"48970","_from":"2598","_to":"32108"} +{"$label":"ACTS_IN","name":"Mr. Garmes","type":"Role","_key":"29886","_from":"2602","_to":"21135"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53402","_from":"2605","_to":"34505"} +{"$label":"ACTS_IN","name":"Kurt Kanz","type":"Role","_key":"3050","_from":"2617","_to":"2606"} +{"$label":"ACTS_IN","name":"Bew\u00e4hrungshelferin","type":"Role","_key":"3049","_from":"2616","_to":"2606"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"3048","_from":"2615","_to":"2606"} +{"$label":"ACTS_IN","name":"Rokko","type":"Role","_key":"3047","_from":"2614","_to":"2606"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"3046","_from":"2613","_to":"2606"} +{"$label":"ACTS_IN","name":"Ludmilla","type":"Role","_key":"3045","_from":"2612","_to":"2606"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"3044","_from":"2611","_to":"2606"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"3043","_from":"2610","_to":"2606"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"3042","_from":"2609","_to":"2606"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"3041","_from":"2608","_to":"2606"} +{"$label":"DIRECTED","_key":"3040","_from":"2607","_to":"2606"} +{"$label":"ACTS_IN","name":"Gunnar Bieske","type":"Role","_key":"44826","_from":"2608","_to":"29813"} +{"$label":"ACTS_IN","name":"Wilfried Berger","type":"Role","_key":"44056","_from":"2608","_to":"29371"} +{"$label":"ACTS_IN","name":"John Lindquist","type":"Role","_key":"43293","_from":"2608","_to":"28917"} +{"$label":"ACTS_IN","name":"Axel Bode","type":"Role","_key":"31682","_from":"2608","_to":"22105"} +{"$label":"ACTS_IN","name":"Paola Brunetti","type":"Role","_key":"89216","_from":"2609","_to":"52828"} +{"$label":"ACTS_IN","name":"Regina Pries","type":"Role","_key":"71889","_from":"2609","_to":"43491"} +{"$label":"ACTS_IN","name":"Nina Steenhagen","type":"Role","_key":"62363","_from":"2609","_to":"39289"} +{"$label":"ACTS_IN","name":"Holger Tewe","type":"Role","_key":"50381","_from":"2610","_to":"32914"} +{"$label":"ACTS_IN","name":"Walter R\u00f6sler","type":"Role","_key":"49213","_from":"2610","_to":"32242"} +{"$label":"ACTS_IN","name":"Bernd","type":"Role","_key":"16526","_from":"2610","_to":"12477"} +{"$label":"ACTS_IN","name":"Maik","type":"Role","_key":"5580","_from":"2610","_to":"4754"} +{"$label":"ACTS_IN","name":"Radu","type":"Role","_key":"36529","_from":"2611","_to":"24772"} +{"$label":"ACTS_IN","name":"Pegahs Gro\u00dfvater","type":"Role","_key":"16533","_from":"2611","_to":"12477"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"42308","_from":"2613","_to":"28327"} +{"$label":"ACTS_IN","name":"Der Franzose","type":"Role","_key":"41958","_from":"2613","_to":"28111"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"41052","_from":"2613","_to":"27614"} +{"$label":"ACTS_IN","name":"Stefan K\u00f6hler","type":"Role","_key":"20857","_from":"2613","_to":"15252"} +{"$label":"ACTS_IN","name":"Bastian Hoffman","type":"Role","_key":"100337","_from":"2614","_to":"59165"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"42163","_from":"2614","_to":"28239"} +{"$label":"ACTS_IN","name":"Computerstimme","type":"Role","_key":"24111","_from":"2616","_to":"17475"} +{"$label":"ACTS_IN","name":"Hauptfeldwebel Kramm","type":"Role","_key":"88228","_from":"2617","_to":"52345"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43450","_from":"2617","_to":"29026"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"37256","_from":"2617","_to":"25242"} +{"$label":"ACTS_IN","name":"Police Sgt. Brophy","type":"Role","_key":"3061","_from":"2627","_to":"2618"} +{"$label":"ACTS_IN","name":"Officer Sanders","type":"Role","_key":"3060","_from":"2626","_to":"2618"} +{"$label":"ACTS_IN","name":"Officer Patrick O'Hara","type":"Role","_key":"3058","_from":"2625","_to":"2618"} +{"$label":"ACTS_IN","name":"Elaine Harper Brewster","type":"Role","_key":"3057","_from":"2624","_to":"2618"} +{"$label":"ACTS_IN","name":"Jonathan Brewster","type":"Role","_key":"3055","_from":"2623","_to":"2618"} +{"$label":"ACTS_IN","name":"Tante Martha Brewster","type":"Role","_key":"3054","_from":"2622","_to":"2618"} +{"$label":"ACTS_IN","name":"Tante Abby Brewster","type":"Role","_key":"3053","_from":"2621","_to":"2618"} +{"$label":"ACTS_IN","name":"Mortimer Brewster","type":"Role","_key":"3052","_from":"2620","_to":"2618"} +{"$label":"DIRECTED","_key":"3051","_from":"2619","_to":"2618"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99474","_from":"2619","_to":"58635"} +{"$label":"DIRECTED","_key":"28297","_from":"2619","_to":"20257"} +{"$label":"DIRECTED","_key":"25578","_from":"2619","_to":"18430"} +{"$label":"DIRECTED","_key":"25523","_from":"2619","_to":"18391"} +{"$label":"DIRECTED","_key":"15433","_from":"2619","_to":"11796"} +{"$label":"DIRECTED","_key":"14048","_from":"2619","_to":"10886"} +{"$label":"DIRECTED","_key":"3589","_from":"2619","_to":"3074"} +{"$label":"ACTS_IN","name":"Dudley","type":"Role","_key":"120189","_from":"2620","_to":"70587"} +{"$label":"ACTS_IN","name":"John 'Johnny' Case","type":"Role","_key":"108441","_from":"2620","_to":"64107"} +{"$label":"ACTS_IN","name":"Jerry Warriner","type":"Role","_key":"101410","_from":"2620","_to":"59697"} +{"$label":"ACTS_IN","name":"Philip Shayne","type":"Role","_key":"91155","_from":"2620","_to":"53771"} +{"$label":"ACTS_IN","name":"Johnnie","type":"Role","_key":"69998","_from":"2620","_to":"42694"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Matt T. Sherman","type":"Role","_key":"55369","_from":"2620","_to":"35299"} +{"$label":"ACTS_IN","name":"(in \"Suspicion\") (archive footage)","type":"Role","_key":"53876","_from":"2620","_to":"34691"} +{"$label":"ACTS_IN","name":"Nickie Ferrante","type":"Role","_key":"49275","_from":"2620","_to":"32271"} +{"$label":"ACTS_IN","name":"Peter Joshua","type":"Role","_key":"34124","_from":"2620","_to":"23444"} +{"$label":"ACTS_IN","name":"Walter Burns","type":"Role","_key":"25620","_from":"2620","_to":"18451"} +{"$label":"ACTS_IN","name":"Tom Winters","type":"Role","_key":"12807","_from":"2620","_to":"9995"} +{"$label":"ACTS_IN","name":"C. K. Dexter Haven","type":"Role","_key":"11592","_from":"2620","_to":"9107"} +{"$label":"ACTS_IN","name":"Dr. David Huxley","type":"Role","_key":"10718","_from":"2620","_to":"8505"} +{"$label":"ACTS_IN","name":"John Robie","type":"Role","_key":"4923","_from":"2620","_to":"4200"} +{"$label":"ACTS_IN","name":"T.R. Devlin","type":"Role","_key":"4212","_from":"2620","_to":"3590"} +{"$label":"ACTS_IN","name":"Roger O. Thornhill","type":"Role","_key":"3064","_from":"2620","_to":"2628"} +{"$label":"ACTS_IN","name":"Veta Louise Simmons","type":"Role","_key":"71999","_from":"2621","_to":"43540"} +{"$label":"ACTS_IN","name":"Dist. Attorney Frank Lalor","type":"Role","_key":"111242","_from":"2623","_to":"65692"} +{"$label":"ACTS_IN","name":"John Cabal \/ Oswald Cabal","type":"Role","_key":"28270","_from":"2623","_to":"20238"} +{"$label":"ACTS_IN","name":"John Brown","type":"Role","_key":"15205","_from":"2623","_to":"11641"} +{"$label":"ACTS_IN","name":"Adam Trask","type":"Role","_key":"3170","_from":"2623","_to":"2714"} +{"$label":"ACTS_IN","name":"Wally Fay","type":"Role","_key":"26832","_from":"2625","_to":"19283"} +{"$label":"ACTS_IN","name":"Matt Libby","type":"Role","_key":"26043","_from":"2625","_to":"18716"} +{"$label":"ACTS_IN","name":"Gooper","type":"Role","_key":"3763","_from":"2625","_to":"3224"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"120004","_from":"2626","_to":"70472"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"105993","_from":"2626","_to":"62406"} +{"$label":"ACTS_IN","name":"Eddie Mars","type":"Role","_key":"10822","_from":"2626","_to":"8581"} +{"$label":"ACTS_IN","name":"Charley - Chicago Policeman","type":"Role","_key":"3080","_from":"2644","_to":"2628"} +{"$label":"ACTS_IN","name":"Captain Junket","type":"Role","_key":"3079","_from":"2643","_to":"2628"} +{"$label":"ACTS_IN","name":"Sergeant Flamm","type":"Role","_key":"3078","_from":"2642","_to":"2628"} +{"$label":"ACTS_IN","name":"Auctioneer","type":"Role","_key":"3077","_from":"2641","_to":"2628"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"3076","_from":"2640","_to":"2628"} +{"$label":"ACTS_IN","name":"Licht","type":"Role","_key":"3075","_from":"2639","_to":"2628"} +{"$label":"ACTS_IN","name":"Victor Larrabee","type":"Role","_key":"3074","_from":"2638","_to":"2628"} +{"$label":"ACTS_IN","name":"Valerian","type":"Role","_key":"3073","_from":"2637","_to":"2628"} +{"$label":"ACTS_IN","name":"Lester Townsend","type":"Role","_key":"3072","_from":"2636","_to":"2628"} +{"$label":"ACTS_IN","name":"The Professor","type":"Role","_key":"3071","_from":"2635","_to":"2628"} +{"$label":"ACTS_IN","name":"Vandamm's Sister aka Mrs. Townsend","type":"Role","_key":"3070","_from":"2634","_to":"2628"} +{"$label":"ACTS_IN","name":"Maggie - Thornhill's Secretary","type":"Role","_key":"3069","_from":"2633","_to":"2628"} +{"$label":"ACTS_IN","name":"Dr. Cross","type":"Role","_key":"3068","_from":"2632","_to":"2628"} +{"$label":"ACTS_IN","name":"Clara Thornhill","type":"Role","_key":"3067","_from":"2631","_to":"2628"} +{"$label":"ACTS_IN","name":"Eve Kendall","type":"Role","_key":"3065","_from":"2630","_to":"2628"} +{"$label":"DIRECTED","_key":"3063","_from":"2629","_to":"2628"} +{"$label":"DIRECTED","_key":"102699","_from":"2629","_to":"60415"} +{"$label":"DIRECTED","_key":"93944","_from":"2629","_to":"55317"} +{"$label":"DIRECTED","_key":"90995","_from":"2629","_to":"53688"} +{"$label":"DIRECTED","_key":"70012","_from":"2629","_to":"42694"} +{"$label":"DIRECTED","_key":"68617","_from":"2629","_to":"42064"} +{"$label":"DIRECTED","_key":"48414","_from":"2629","_to":"31779"} +{"$label":"DIRECTED","_key":"39851","_from":"2629","_to":"26930"} +{"$label":"DIRECTED","_key":"39462","_from":"2629","_to":"26678"} +{"$label":"DIRECTED","_key":"29898","_from":"2629","_to":"21141"} +{"$label":"DIRECTED","_key":"29879","_from":"2629","_to":"21135"} +{"$label":"DIRECTED","_key":"23347","_from":"2629","_to":"16918"} +{"$label":"DIRECTED","_key":"23337","_from":"2629","_to":"16912"} +{"$label":"DIRECTED","_key":"23330","_from":"2629","_to":"16905"} +{"$label":"DIRECTED","_key":"20715","_from":"2629","_to":"15136"} +{"$label":"DIRECTED","_key":"17148","_from":"2629","_to":"12847"} +{"$label":"DIRECTED","_key":"14007","_from":"2629","_to":"10857"} +{"$label":"DIRECTED","_key":"11201","_from":"2629","_to":"8861"} +{"$label":"DIRECTED","_key":"10007","_from":"2629","_to":"8013"} +{"$label":"DIRECTED","_key":"6840","_from":"2629","_to":"5742"} +{"$label":"DIRECTED","_key":"6828","_from":"2629","_to":"5730"} +{"$label":"DIRECTED","_key":"6817","_from":"2629","_to":"5715"} +{"$label":"DIRECTED","_key":"6793","_from":"2629","_to":"5700"} +{"$label":"DIRECTED","_key":"6478","_from":"2629","_to":"5489"} +{"$label":"DIRECTED","_key":"6428","_from":"2629","_to":"5444"} +{"$label":"DIRECTED","_key":"6227","_from":"2629","_to":"5277"} +{"$label":"DIRECTED","_key":"6108","_from":"2629","_to":"5183"} +{"$label":"DIRECTED","_key":"5355","_from":"2629","_to":"4546"} +{"$label":"DIRECTED","_key":"4922","_from":"2629","_to":"4200"} +{"$label":"DIRECTED","_key":"4211","_from":"2629","_to":"3590"} +{"$label":"DIRECTED","_key":"3744","_from":"2629","_to":"3210"} +{"$label":"DIRECTED","_key":"3203","_from":"2629","_to":"2748"} +{"$label":"ACTS_IN","name":"Archivmaterial","type":"Role","_key":"30886","_from":"2629","_to":"21649"} +{"$label":"ACTS_IN","name":"Man outside phone booth","type":"Role","_key":"3218","_from":"2629","_to":"2748"} +{"$label":"ACTS_IN","name":"Miss Franny","type":"Role","_key":"114177","_from":"2630","_to":"67261"} +{"$label":"ACTS_IN","name":"Howard's Mutter","type":"Role","_key":"27648","_from":"2630","_to":"19813"} +{"$label":"ACTS_IN","name":"Hazel Foley","type":"Role","_key":"22774","_from":"2630","_to":"16516"} +{"$label":"ACTS_IN","name":"Kitty Fremont","type":"Role","_key":"16828","_from":"2630","_to":"12674"} +{"$label":"ACTS_IN","name":"Martha Kent","type":"Role","_key":"13400","_from":"2630","_to":"10427"} +{"$label":"ACTS_IN","name":"Edie Doyle","type":"Role","_key":"7828","_from":"2630","_to":"6495"} +{"$label":"ACTS_IN","name":"Jessie Stevens","type":"Role","_key":"4925","_from":"2631","_to":"4200"} +{"$label":"ACTS_IN","name":"Jim Crossman","type":"Role","_key":"118167","_from":"2632","_to":"69448"} +{"$label":"ACTS_IN","name":"Mrs. Hollingsworth","type":"Role","_key":"34970","_from":"2633","_to":"23872"} +{"$label":"ACTS_IN","name":"Elizabeth Conroy","type":"Role","_key":"121751","_from":"2634","_to":"71524"} +{"$label":"ACTS_IN","name":"Elsa von Frankenstein","type":"Role","_key":"25514","_from":"2634","_to":"18386"} +{"$label":"ACTS_IN","name":"Rev. Dr. Mosby","type":"Role","_key":"119145","_from":"2635","_to":"70021"} +{"$label":"ACTS_IN","name":"Captain Melbeck","type":"Role","_key":"70007","_from":"2635","_to":"42694"} +{"$label":"ACTS_IN","name":"Prof. Gerald Deemer","type":"Role","_key":"52424","_from":"2635","_to":"34108"} +{"$label":"ACTS_IN","name":"Alexander Waverley","type":"Role","_key":"42929","_from":"2635","_to":"28685"} +{"$label":"ACTS_IN","name":"Felix Ducotel","type":"Role","_key":"40969","_from":"2635","_to":"27561"} +{"$label":"ACTS_IN","name":"Onkel Bill Swift","type":"Role","_key":"31856","_from":"2635","_to":"22230"} +{"$label":"ACTS_IN","name":"Dr. Murchison","type":"Role","_key":"29884","_from":"2635","_to":"21135"} +{"$label":"ACTS_IN","name":"Bertil Jacobsson","type":"Role","_key":"29463","_from":"2635","_to":"20892"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"25612","_from":"2635","_to":"18444"} +{"$label":"ACTS_IN","name":"Sen. Morton","type":"Role","_key":"10011","_from":"2635","_to":"8013"} +{"$label":"ACTS_IN","name":"Dr. Baker","type":"Role","_key":"3212","_from":"2635","_to":"2748"} +{"$label":"ACTS_IN","name":"Nicholas Simmons","type":"Role","_key":"94034","_from":"2636","_to":"55371"} +{"$label":"ACTS_IN","name":"Larry Gordon","type":"Role","_key":"100917","_from":"2637","_to":"59488"} +{"$label":"ACTS_IN","name":"Celam","type":"Role","_key":"25832","_from":"2637","_to":"18581"} +{"$label":"ACTS_IN","name":"Ray Fremick","type":"Role","_key":"3189","_from":"2638","_to":"2725"} +{"$label":"ACTS_IN","name":"Geppetto","type":"Role","_key":"118322","_from":"2640","_to":"69555"} +{"$label":"ACTS_IN","name":"Mr. Donald Blakemore","type":"Role","_key":"116106","_from":"2640","_to":"68369"} +{"$label":"ACTS_IN","name":"Dr. Thadius Moxley","type":"Role","_key":"113994","_from":"2640","_to":"67134"} +{"$label":"ACTS_IN","name":"Sul","type":"Role","_key":"95379","_from":"2640","_to":"56102"} +{"$label":"ACTS_IN","name":"2 (voice)","type":"Role","_key":"89006","_from":"2640","_to":"52724"} +{"$label":"ACTS_IN","name":"Judah Rosenthal","type":"Role","_key":"70679","_from":"2640","_to":"43000"} +{"$label":"ACTS_IN","name":"Harry Trimble","type":"Role","_key":"67793","_from":"2640","_to":"41672"} +{"$label":"ACTS_IN","name":"Rufo","type":"Role","_key":"48230","_from":"2640","_to":"31682"} +{"$label":"ACTS_IN","name":"Kaiphas","type":"Role","_key":"21254","_from":"2640","_to":"15553"} +{"$label":"ACTS_IN","name":"Jakob","type":"Role","_key":"21061","_from":"2640","_to":"15413"} +{"$label":"ACTS_IN","name":"Alex Parsons","type":"Role","_key":"10314","_from":"2640","_to":"8203"} +{"$label":"ACTS_IN","name":"Alvin Kurtzweil","type":"Role","_key":"10023","_from":"2640","_to":"8022"} +{"$label":"ACTS_IN","name":"Bela Lugosi","type":"Role","_key":"6235","_from":"2640","_to":"5281"} +{"$label":"ACTS_IN","name":"Father (voice)","type":"Role","_key":"94394","_from":"2641","_to":"55580"} +{"$label":"ACTS_IN","name":"General Mann","type":"Role","_key":"51779","_from":"2641","_to":"33785"} +{"$label":"ACTS_IN","name":"Prof. Theodore Gettell","type":"Role","_key":"45516","_from":"2641","_to":"30146"} +{"$label":"ACTS_IN","name":"Thompson","type":"Role","_key":"16303","_from":"2641","_to":"12354"} +{"$label":"ACTS_IN","name":"Sen. Burkette","type":"Role","_key":"9693","_from":"2643","_to":"7772"} +{"$label":"ACTS_IN","name":"Col. Jack Grady","type":"Role","_key":"6062","_from":"2643","_to":"5141"} +{"$label":"ACTS_IN","name":"Juror 6","type":"Role","_key":"4977","_from":"2643","_to":"4235"} +{"$label":"ACTS_IN","name":"Dr. Lynn Denlon","type":"Role","_key":"3087","_from":"2648","_to":"2645"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"3085","_from":"2647","_to":"2645"} +{"$label":"DIRECTED","_key":"3081","_from":"2646","_to":"2645"} +{"$label":"DIRECTED","_key":"99789","_from":"2646","_to":"58864"} +{"$label":"DIRECTED","_key":"7931","_from":"2646","_to":"6564"} +{"$label":"DIRECTED","_key":"3088","_from":"2646","_to":"2649"} +{"$label":"ACTS_IN","name":"SWAT Member Joe","type":"Role","_key":"3103","_from":"2661","_to":"2649"} +{"$label":"ACTS_IN","name":"SWAT Member Pete","type":"Role","_key":"3102","_from":"2660","_to":"2649"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"3101","_from":"2659","_to":"2649"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"3100","_from":"2658","_to":"2649"} +{"$label":"ACTS_IN","name":"Rigg","type":"Role","_key":"3099","_from":"2657","_to":"2649"} +{"$label":"ACTS_IN","name":"Obi","type":"Role","_key":"3097","_from":"2656","_to":"2649"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"3096","_from":"2655","_to":"2649"} +{"$label":"ACTS_IN","name":"Addison","type":"Role","_key":"3095","_from":"2654","_to":"2649"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"3094","_from":"2653","_to":"2649"} +{"$label":"ACTS_IN","name":"Xavier","type":"Role","_key":"3093","_from":"2652","_to":"2649"} +{"$label":"ACTS_IN","name":"Daniel Matthews","type":"Role","_key":"3092","_from":"2651","_to":"2649"} +{"$label":"ACTS_IN","name":"Eric Matthews","type":"Role","_key":"3091","_from":"2650","_to":"2649"} +{"$label":"ACTS_IN","name":"Detective Moran","type":"Role","_key":"105966","_from":"2650","_to":"62387"} +{"$label":"ACTS_IN","name":"Jim Lipton","type":"Role","_key":"98048","_from":"2650","_to":"57732"} +{"$label":"ACTS_IN","name":"Detective Ted Riley","type":"Role","_key":"94251","_from":"2650","_to":"55507"} +{"$label":"ACTS_IN","name":"Lt. Burton","type":"Role","_key":"93668","_from":"2650","_to":"55142"} +{"$label":"ACTS_IN","name":"Douglas 'Duddits' Cavell","type":"Role","_key":"42189","_from":"2650","_to":"28261"} +{"$label":"ACTS_IN","name":"Andy Burnett","type":"Role","_key":"41845","_from":"2650","_to":"28074"} +{"$label":"ACTS_IN","name":"Cubby Barnes","type":"Role","_key":"28258","_from":"2650","_to":"20232"} +{"$label":"ACTS_IN","name":"C. Carwood Lipton","type":"Role","_key":"26806","_from":"2650","_to":"19258"} +{"$label":"ACTS_IN","name":"Vincent Grey","type":"Role","_key":"8702","_from":"2650","_to":"7056"} +{"$label":"ACTS_IN","name":"Jeremy Rander","type":"Role","_key":"97322","_from":"2651","_to":"57305"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"98892","_from":"2653","_to":"58269"} +{"$label":"ACTS_IN","name":"James Smith","type":"Role","_key":"65895","_from":"2653","_to":"40769"} +{"$label":"ACTS_IN","name":"Pernell","type":"Role","_key":"54398","_from":"2653","_to":"34892"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"28741","_from":"2653","_to":"20529"} +{"$label":"ACTS_IN","name":"Jaguar Owner","type":"Role","_key":"14503","_from":"2653","_to":"11195"} +{"$label":"ACTS_IN","name":"Jeriko One","type":"Role","_key":"3985","_from":"2653","_to":"3397"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"121241","_from":"2654","_to":"71221"} +{"$label":"ACTS_IN","name":"Sheriff Annie Flynn","type":"Role","_key":"104382","_from":"2654","_to":"61407"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"100538","_from":"2654","_to":"59298"} +{"$label":"ACTS_IN","name":"The Cat","type":"Role","_key":"60983","_from":"2654","_to":"38538"} +{"$label":"ACTS_IN","name":"Valerie Constantin","type":"Role","_key":"47529","_from":"2654","_to":"31322"} +{"$label":"ACTS_IN","name":"Susie","type":"Role","_key":"23264","_from":"2654","_to":"16868"} +{"$label":"ACTS_IN","name":"Rigg","type":"Role","_key":"7921","_from":"2657","_to":"6564"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"108764","_from":"2658","_to":"64293"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"28488","_from":"2658","_to":"20352"} +{"$label":"ACTS_IN","name":"Stu","type":"Role","_key":"92788","_from":"2659","_to":"54733"} +{"$label":"ACTS_IN","name":"Foxy","type":"Role","_key":"71546","_from":"2659","_to":"43346"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"48978","_from":"2659","_to":"32108"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"3119","_from":"2677","_to":"2662"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"3118","_from":"2676","_to":"2662"} +{"$label":"ACTS_IN","name":"Eugen","type":"Role","_key":"3117","_from":"2663","_to":"2662"} +{"$label":"ACTS_IN","name":"Herr Angermayer","type":"Role","_key":"3116","_from":"2675","_to":"2662"} +{"$label":"ACTS_IN","name":"Frau Munchmeyer","type":"Role","_key":"3115","_from":"2674","_to":"2662"} +{"$label":"ACTS_IN","name":"Bardame","type":"Role","_key":"3114","_from":"2673","_to":"2662"} +{"$label":"ACTS_IN","name":"Hedwig","type":"Role","_key":"3113","_from":"2672","_to":"2662"} +{"$label":"ACTS_IN","name":"Frau Angermayer","type":"Role","_key":"3112","_from":"2671","_to":"2662"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"3111","_from":"2670","_to":"2662"} +{"$label":"ACTS_IN","name":"Frau Ellis","type":"Role","_key":"3110","_from":"2669","_to":"2662"} +{"$label":"ACTS_IN","name":"Frau Kargus","type":"Role","_key":"3109","_from":"2668","_to":"2662"} +{"$label":"ACTS_IN","name":"Krista","type":"Role","_key":"3108","_from":"2667","_to":"2662"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"3107","_from":"2666","_to":"2662"} +{"$label":"ACTS_IN","name":"Ali (El Hedi ben Salem M'Barek Mohammed Mustapha)","type":"Role","_key":"3106","_from":"2665","_to":"2662"} +{"$label":"ACTS_IN","name":"Emmi Kurowski (Emanuela ben Salem M'Barek Mohammed Mustapha)","type":"Role","_key":"3105","_from":"2664","_to":"2662"} +{"$label":"DIRECTED","_key":"3104","_from":"2663","_to":"2662"} +{"$label":"ACTS_IN","name":"Polizeileutnant Jansen","type":"Role","_key":"90570","_from":"2663","_to":"53494"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"89773","_from":"2663","_to":"53133"} +{"$label":"ACTS_IN","name":"Pornokunde","type":"Role","_key":"61906","_from":"2663","_to":"38955"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"61840","_from":"2663","_to":"38929"} +{"$label":"ACTS_IN","name":"Jorgos","type":"Role","_key":"47264","_from":"2663","_to":"31145"} +{"$label":"ACTS_IN","name":"Rainer Werner Fassbinder","type":"Role","_key":"44392","_from":"2663","_to":"29572"} +{"$label":"ACTS_IN","name":"Heini","type":"Role","_key":"31770","_from":"2663","_to":"22172"} +{"$label":"ACTS_IN","name":"Kinog\u00e4nger","type":"Role","_key":"19806","_from":"2663","_to":"14619"} +{"$label":"DIRECTED","_key":"90400","_from":"2663","_to":"53412"} +{"$label":"DIRECTED","_key":"89774","_from":"2663","_to":"53133"} +{"$label":"DIRECTED","_key":"62523","_from":"2663","_to":"39364"} +{"$label":"DIRECTED","_key":"62522","_from":"2663","_to":"39363"} +{"$label":"DIRECTED","_key":"62513","_from":"2663","_to":"39362"} +{"$label":"DIRECTED","_key":"62507","_from":"2663","_to":"39360"} +{"$label":"DIRECTED","_key":"61898","_from":"2663","_to":"38955"} +{"$label":"DIRECTED","_key":"47262","_from":"2663","_to":"31145"} +{"$label":"DIRECTED","_key":"19816","_from":"2663","_to":"14625"} +{"$label":"DIRECTED","_key":"19798","_from":"2663","_to":"14619"} +{"$label":"DIRECTED","_key":"8515","_from":"2663","_to":"6950"} +{"$label":"DIRECTED","_key":"7911","_from":"2663","_to":"6551"} +{"$label":"DIRECTED","_key":"3779","_from":"2663","_to":"3243"} +{"$label":"ACTS_IN","name":"Kathe, Servant","type":"Role","_key":"71703","_from":"2664","_to":"43406"} +{"$label":"ACTS_IN","name":"Frau Hinze","type":"Role","_key":"41834","_from":"2664","_to":"28067"} +{"$label":"ACTS_IN","name":"Rose Schuh","type":"Role","_key":"40392","_from":"2664","_to":"27239"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"62526","_from":"2666","_to":"39364"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43106","_from":"2666","_to":"28790"} +{"$label":"ACTS_IN","name":"Erika Schrillmann","type":"Role","_key":"33443","_from":"2666","_to":"23146"} +{"$label":"ACTS_IN","name":"Marietta Tripelli, S\u00e4ngerin","type":"Role","_key":"8532","_from":"2666","_to":"6950"} +{"$label":"ACTS_IN","name":"Frau Hirschfu\u00df","type":"Role","_key":"106272","_from":"2667","_to":"62603"} +{"$label":"ACTS_IN","name":"Witwe","type":"Role","_key":"91780","_from":"2667","_to":"54145"} +{"$label":"ACTS_IN","name":"Irmgard Epp","type":"Role","_key":"62515","_from":"2667","_to":"39362"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"61905","_from":"2667","_to":"38955"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"61848","_from":"2667","_to":"38929"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"47270","_from":"2667","_to":"31145"} +{"$label":"ACTS_IN","name":"Germanikus Mutter","type":"Role","_key":"46295","_from":"2667","_to":"30593"} +{"$label":"ACTS_IN","name":"Irm Hermann","type":"Role","_key":"44396","_from":"2667","_to":"29572"} +{"$label":"ACTS_IN","name":"Frau Speck","type":"Role","_key":"34555","_from":"2667","_to":"23661"} +{"$label":"ACTS_IN","name":"Hedwig","type":"Role","_key":"33435","_from":"2667","_to":"23140"} +{"$label":"ACTS_IN","name":"Frl. Engelhart","type":"Role","_key":"29575","_from":"2667","_to":"20940"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"8522","_from":"2667","_to":"6950"} +{"$label":"ACTS_IN","name":"Lissy","type":"Role","_key":"43753","_from":"2668","_to":"29221"} +{"$label":"ACTS_IN","name":"Anka","type":"Role","_key":"42649","_from":"2668","_to":"28548"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"40583","_from":"2668","_to":"27326"} +{"$label":"ACTS_IN","name":"Rezeptionistin","type":"Role","_key":"33452","_from":"2668","_to":"23146"} +{"$label":"ACTS_IN","name":"Frau Kant","type":"Role","_key":"31779","_from":"2669","_to":"22172"} +{"$label":"ACTS_IN","name":"Frau Krause","type":"Role","_key":"44571","_from":"2670","_to":"29666"} +{"$label":"ACTS_IN","name":"Retta","type":"Role","_key":"43093","_from":"2670","_to":"28781"} +{"$label":"ACTS_IN","name":"Frau Kn\u00f6pfle","type":"Role","_key":"40364","_from":"2670","_to":"27219"} +{"$label":"ACTS_IN","name":"Gunda","type":"Role","_key":"47272","_from":"2671","_to":"31145"} +{"$label":"ACTS_IN","name":"Galina Krakowskaja","type":"Role","_key":"42017","_from":"2672","_to":"28144"} +{"$label":"ACTS_IN","name":"Kollegin im B\u00fcro","type":"Role","_key":"62511","_from":"2674","_to":"39360"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"61909","_from":"2674","_to":"38955"} +{"$label":"ACTS_IN","name":"Luise von Briest","type":"Role","_key":"8519","_from":"2674","_to":"6950"} +{"$label":"ACTS_IN","name":"Frau Ehmke","type":"Role","_key":"7910","_from":"2674","_to":"6551"} +{"$label":"ACTS_IN","name":"Grindel","type":"Role","_key":"43750","_from":"2675","_to":"29215"} +{"$label":"ACTS_IN","name":"Kruse","type":"Role","_key":"8524","_from":"2676","_to":"6950"} +{"$label":"ACTS_IN","name":"Vetter Dagobert","type":"Role","_key":"8531","_from":"2677","_to":"6950"} +{"$label":"ACTS_IN","name":"Cemetery Warrior","type":"Role","_key":"3132","_from":"2685","_to":"2678"} +{"$label":"ACTS_IN","name":"General Ross","type":"Role","_key":"3131","_from":"2684","_to":"2678"} +{"$label":"ACTS_IN","name":"Russian Soldier","type":"Role","_key":"3130","_from":"2683","_to":"2678"} +{"$label":"ACTS_IN","name":"Colonel Dovchenko","type":"Role","_key":"3129","_from":"2682","_to":"2678"} +{"$label":"ACTS_IN","name":"Russian Soldier","type":"Role","_key":"3128","_from":"2681","_to":"2678"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"3124","_from":"2680","_to":"2678"} +{"$label":"ACTS_IN","name":"Mutt","type":"Role","_key":"3123","_from":"2679","_to":"2678"} +{"$label":"ACTS_IN","name":"Francis Ouimet","type":"Role","_key":"104632","_from":"2679","_to":"61552"} +{"$label":"ACTS_IN","name":"Jerry Shaw","type":"Role","_key":"92102","_from":"2679","_to":"54348"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"90359","_from":"2679","_to":"53397"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"65375","_from":"2679","_to":"40552"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"54071","_from":"2679","_to":"34775"} +{"$label":"ACTS_IN","name":"Cody Maverick","type":"Role","_key":"53686","_from":"2679","_to":"34627"} +{"$label":"ACTS_IN","name":"Sam Witwicky","type":"Role","_key":"49407","_from":"2679","_to":"32350"} +{"$label":"ACTS_IN","name":"Stanley Yelnats\/Caveman","type":"Role","_key":"49044","_from":"2679","_to":"32134"} +{"$label":"ACTS_IN","name":"Kale Brecht","type":"Role","_key":"48690","_from":"2679","_to":"31943"} +{"$label":"ACTS_IN","name":"Young Dito","type":"Role","_key":"48305","_from":"2679","_to":"31726"} +{"$label":"ACTS_IN","name":"Farber","type":"Role","_key":"17839","_from":"2679","_to":"13287"} +{"$label":"ACTS_IN","name":"Sam 'Spike' Witwicky","type":"Role","_key":"16052","_from":"2679","_to":"12202"} +{"$label":"ACTS_IN","name":"Chas Kramer","type":"Role","_key":"6729","_from":"2679","_to":"5655"} +{"$label":"ACTS_IN","name":"Ray Kreed","type":"Role","_key":"114611","_from":"2680","_to":"67516"} +{"$label":"ACTS_IN","name":"Blakely","type":"Role","_key":"113221","_from":"2680","_to":"66716"} +{"$label":"ACTS_IN","name":"Captain Morris Stanley","type":"Role","_key":"109606","_from":"2680","_to":"64744"} +{"$label":"ACTS_IN","name":"Soldier Sam","type":"Role","_key":"109299","_from":"2680","_to":"64568"} +{"$label":"ACTS_IN","name":"Mr. Billy","type":"Role","_key":"104758","_from":"2680","_to":"61625"} +{"$label":"ACTS_IN","name":"Darius Jedburgh","type":"Role","_key":"88650","_from":"2680","_to":"52530"} +{"$label":"ACTS_IN","name":"Gary \u201eGal\u201c Dove","type":"Role","_key":"72228","_from":"2680","_to":"43644"} +{"$label":"ACTS_IN","name":"Reeves","type":"Role","_key":"66951","_from":"2680","_to":"41333"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"62871","_from":"2680","_to":"39502"} +{"$label":"ACTS_IN","name":"Bors","type":"Role","_key":"54114","_from":"2680","_to":"34783"} +{"$label":"ACTS_IN","name":"Moe Fitch","type":"Role","_key":"50424","_from":"2680","_to":"32943"} +{"$label":"ACTS_IN","name":"Pedersen","type":"Role","_key":"43169","_from":"2680","_to":"28826"} +{"$label":"ACTS_IN","name":"Dragon","type":"Role","_key":"20284","_from":"2680","_to":"14868"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"14262","_from":"2680","_to":"11026"} +{"$label":"ACTS_IN","name":"Mr. French","type":"Role","_key":"13172","_from":"2680","_to":"10265"} +{"$label":"ACTS_IN","name":"Bruno Fella","type":"Role","_key":"12257","_from":"2680","_to":"9592"} +{"$label":"ACTS_IN","name":"Mr. Beaver","type":"Role","_key":"5240","_from":"2680","_to":"4445"} +{"$label":"ACTS_IN","name":"Det. Tyler","type":"Role","_key":"113251","_from":"2681","_to":"66724"} +{"$label":"ACTS_IN","name":"The Djinn","type":"Role","_key":"90513","_from":"2681","_to":"53471"} +{"$label":"ACTS_IN","name":"Luis Cali","type":"Role","_key":"65446","_from":"2681","_to":"40572"} +{"$label":"ACTS_IN","name":"The Djinn","type":"Role","_key":"62737","_from":"2681","_to":"39441"} +{"$label":"ACTS_IN","name":"Ujis-Aka","type":"Role","_key":"59202","_from":"2681","_to":"37387"} +{"$label":"ACTS_IN","name":"Mikhail","type":"Role","_key":"116310","_from":"2682","_to":"68473"} +{"$label":"ACTS_IN","name":"Vassily","type":"Role","_key":"119248","_from":"2683","_to":"70057"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"34573","_from":"2683","_to":"23668"} +{"$label":"ACTS_IN","name":"Manito","type":"Role","_key":"61329","_from":"2685","_to":"38706"} +{"$label":"ACTS_IN","name":"Prince Tarn","type":"Role","_key":"55135","_from":"2685","_to":"35194"} +{"$label":"ACTS_IN","name":"Zing","type":"Role","_key":"36261","_from":"2685","_to":"24603"} +{"$label":"ACTS_IN","name":"Keno","type":"Role","_key":"13557","_from":"2685","_to":"10542"} +{"$label":"ACTS_IN","name":"Pawnshop Clerk","type":"Role","_key":"3145","_from":"2695","_to":"2686"} +{"$label":"ACTS_IN","name":"Future Terminator","type":"Role","_key":"3144","_from":"2694","_to":"2686"} +{"$label":"ACTS_IN","name":"Punk","type":"Role","_key":"3143","_from":"2693","_to":"2686"} +{"$label":"ACTS_IN","name":"Matt Buchanan","type":"Role","_key":"3141","_from":"2692","_to":"2686"} +{"$label":"ACTS_IN","name":"Dr. Peter Silberman","type":"Role","_key":"3140","_from":"2691","_to":"2686"} +{"$label":"ACTS_IN","name":"Ginger Ventura","type":"Role","_key":"3139","_from":"2690","_to":"2686"} +{"$label":"ACTS_IN","name":"Detective Vukovich","type":"Role","_key":"3138","_from":"2689","_to":"2686"} +{"$label":"ACTS_IN","name":"Sarah Connor","type":"Role","_key":"3136","_from":"2688","_to":"2686"} +{"$label":"ACTS_IN","name":"Kyle Reese","type":"Role","_key":"3135","_from":"2687","_to":"2686"} +{"$label":"ACTS_IN","name":"Agent Brown","type":"Role","_key":"121036","_from":"2687","_to":"71082"} +{"$label":"ACTS_IN","name":"Petros Angelo","type":"Role","_key":"117605","_from":"2687","_to":"69139"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"104871","_from":"2687","_to":"61706"} +{"$label":"ACTS_IN","name":"Henry Gates","type":"Role","_key":"102831","_from":"2687","_to":"60486"} +{"$label":"ACTS_IN","name":"Lt. James Curran","type":"Role","_key":"91450","_from":"2687","_to":"53931"} +{"$label":"ACTS_IN","name":"Sherrif Brent Marken","type":"Role","_key":"90645","_from":"2687","_to":"53521"} +{"$label":"ACTS_IN","name":"Russell Quinn","type":"Role","_key":"67752","_from":"2687","_to":"41653"} +{"$label":"ACTS_IN","name":"Lt. Hiram Coffey","type":"Role","_key":"23301","_from":"2687","_to":"16896"} +{"$label":"ACTS_IN","name":"Sheriff Hague","type":"Role","_key":"17261","_from":"2687","_to":"12925"} +{"$label":"ACTS_IN","name":"Corporal Dwayne Hicks","type":"Role","_key":"8184","_from":"2687","_to":"6737"} +{"$label":"ACTS_IN","name":"Elisabeth Vincken","type":"Role","_key":"113432","_from":"2688","_to":"66832"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"97121","_from":"2688","_to":"57136"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"66001","_from":"2688","_to":"40843"} +{"$label":"ACTS_IN","name":"Rachel Wando","type":"Role","_key":"55094","_from":"2688","_to":"35184"} +{"$label":"ACTS_IN","name":"Elena Koslov","type":"Role","_key":"38608","_from":"2688","_to":"26084"} +{"$label":"ACTS_IN","name":"Ellen Jane Burrows\/Robertson","type":"Role","_key":"22194","_from":"2688","_to":"16174"} +{"$label":"ACTS_IN","name":"Sarah Connor","type":"Role","_key":"3966","_from":"2688","_to":"3391"} +{"$label":"ACTS_IN","name":"Brainiac","type":"Role","_key":"119704","_from":"2689","_to":"70306"} +{"$label":"ACTS_IN","name":"The Old Man","type":"Role","_key":"111864","_from":"2689","_to":"66040"} +{"$label":"ACTS_IN","name":"Dr. Franks","type":"Role","_key":"111551","_from":"2689","_to":"65857"} +{"$label":"ACTS_IN","name":"James Monte","type":"Role","_key":"110541","_from":"2689","_to":"65312"} +{"$label":"ACTS_IN","name":"Connor Pritchett","type":"Role","_key":"102453","_from":"2689","_to":"60289"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"102087","_from":"2689","_to":"60060"} +{"$label":"ACTS_IN","name":"Tin Man (voice)","type":"Role","_key":"101963","_from":"2689","_to":"60001"} +{"$label":"ACTS_IN","name":"The Host","type":"Role","_key":"91085","_from":"2689","_to":"53744"} +{"$label":"ACTS_IN","name":"Ring Shelton","type":"Role","_key":"91022","_from":"2689","_to":"53708"} +{"$label":"ACTS_IN","name":"Abner Lundbert","type":"Role","_key":"90983","_from":"2689","_to":"53683"} +{"$label":"ACTS_IN","name":"Sheriff Doug Barnum","type":"Role","_key":"90920","_from":"2689","_to":"53634"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"88893","_from":"2689","_to":"52664"} +{"$label":"ACTS_IN","name":"Jesse Hooker","type":"Role","_key":"72519","_from":"2689","_to":"43745"} +{"$label":"ACTS_IN","name":"Sergeant Neff","type":"Role","_key":"65644","_from":"2689","_to":"40672"} +{"$label":"ACTS_IN","name":"The Father","type":"Role","_key":"63408","_from":"2689","_to":"39725"} +{"$label":"ACTS_IN","name":"Sgt. Freddy Ross","type":"Role","_key":"63188","_from":"2689","_to":"39631"} +{"$label":"ACTS_IN","name":"Ziegler Dane","type":"Role","_key":"59420","_from":"2689","_to":"37532"} +{"$label":"ACTS_IN","name":"Stockton","type":"Role","_key":"50789","_from":"2689","_to":"33143"} +{"$label":"ACTS_IN","name":"Bishop II","type":"Role","_key":"48111","_from":"2689","_to":"31620"} +{"$label":"ACTS_IN","name":"John Milton","type":"Role","_key":"30299","_from":"2689","_to":"21314"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"18516","_from":"2689","_to":"13705"} +{"$label":"ACTS_IN","name":"Emil Fouchon","type":"Role","_key":"17548","_from":"2689","_to":"13116"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"11532","_from":"2689","_to":"9052"} +{"$label":"ACTS_IN","name":"Cole Wilson","type":"Role","_key":"10965","_from":"2689","_to":"8689"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"9925","_from":"2689","_to":"7948"} +{"$label":"ACTS_IN","name":"L. Bishop","type":"Role","_key":"8185","_from":"2689","_to":"6737"} +{"$label":"ACTS_IN","name":"Rafe Garrett","type":"Role","_key":"6103","_from":"2689","_to":"5178"} +{"$label":"ACTS_IN","name":"Charles Bishop Weyland","type":"Role","_key":"5033","_from":"2689","_to":"4273"} +{"$label":"ACTS_IN","name":"Taurus","type":"Role","_key":"112186","_from":"2691","_to":"66249"} +{"$label":"ACTS_IN","name":"Dr. Peter Silberman","type":"Role","_key":"4127","_from":"2691","_to":"3521"} +{"$label":"ACTS_IN","name":"Dr. Peter Silberman","type":"Role","_key":"3969","_from":"2691","_to":"3391"} +{"$label":"ACTS_IN","name":"Leary","type":"Role","_key":"91452","_from":"2692","_to":"53931"} +{"$label":"ACTS_IN","name":"Chris McConnell","type":"Role","_key":"70863","_from":"2692","_to":"43068"} +{"$label":"ACTS_IN","name":"Slider","type":"Role","_key":"8691","_from":"2692","_to":"7049"} +{"$label":"ACTS_IN","name":"Kirill","type":"Role","_key":"109084","_from":"2693","_to":"64451"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"107198","_from":"2693","_to":"63224"} +{"$label":"ACTS_IN","name":"Night Slasher","type":"Role","_key":"57527","_from":"2693","_to":"36449"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"53639","_from":"2693","_to":"34600"} +{"$label":"ACTS_IN","name":"Brok","type":"Role","_key":"51011","_from":"2693","_to":"33290"} +{"$label":"ACTS_IN","name":"German's Other Friend","type":"Role","_key":"49478","_from":"2693","_to":"32393"} +{"$label":"ACTS_IN","name":"Jake O`Neal","type":"Role","_key":"24361","_from":"2693","_to":"17630"} +{"$label":"ACTS_IN","name":"Kabal","type":"Role","_key":"16197","_from":"2693","_to":"12297"} +{"$label":"ACTS_IN","name":"Pictish Scout","type":"Role","_key":"53533","_from":"2694","_to":"34556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"36480","_from":"2694","_to":"24738"} +{"$label":"ACTS_IN","name":"Franco Orsini","type":"Role","_key":"36462","_from":"2694","_to":"24729"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36417","_from":"2694","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36317","_from":"2694","_to":"24639"} +{"$label":"ACTS_IN","name":"Franco Armando Beretta","type":"Role","_key":"36045","_from":"2694","_to":"24472"} +{"$label":"ACTS_IN","name":"Aldo Paccione","type":"Role","_key":"36033","_from":"2694","_to":"24463"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30458","_from":"2694","_to":"21404"} +{"$label":"ACTS_IN","name":"911 Security Officer","type":"Role","_key":"10292","_from":"2694","_to":"8188"} +{"$label":"ACTS_IN","name":"Charles 'Chuckie' Sol","type":"Role","_key":"102478","_from":"2695","_to":"60297"} +{"$label":"ACTS_IN","name":"Palm Club Owner","type":"Role","_key":"90761","_from":"2695","_to":"53566"} +{"$label":"ACTS_IN","name":"Walter Paisley - Bookstore Owner","type":"Role","_key":"69002","_from":"2695","_to":"42233"} +{"$label":"ACTS_IN","name":"Diner Waiter (Pete)","type":"Role","_key":"66138","_from":"2695","_to":"40908"} +{"$label":"ACTS_IN","name":"Murray Futterman","type":"Role","_key":"11071","_from":"2695","_to":"8747"} +{"$label":"ACTS_IN","name":"Murray Futterman","type":"Role","_key":"11055","_from":"2695","_to":"8736"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3166","_from":"2713","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3165","_from":"2712","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3164","_from":"2711","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3163","_from":"2710","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3162","_from":"2709","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3161","_from":"2708","_to":"2696"} +{"$label":"ACTS_IN","name":"Vecina","type":"Role","_key":"3160","_from":"2707","_to":"2696"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"3159","_from":"2706","_to":"2696"} +{"$label":"ACTS_IN","name":"Presentadora TV","type":"Role","_key":"3158","_from":"2705","_to":"2696"} +{"$label":"ACTS_IN","name":"Auxiliar","type":"Role","_key":"3157","_from":"2704","_to":"2696"} +{"$label":"ACTS_IN","name":"In\u00e9s","type":"Role","_key":"3156","_from":"2703","_to":"2696"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"3155","_from":"2702","_to":"2696"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"3154","_from":"2701","_to":"2696"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"3153","_from":"2700","_to":"2696"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"3151","_from":"2699","_to":"2696"} +{"$label":"ACTS_IN","name":"Agustina","type":"Role","_key":"3150","_from":"2698","_to":"2696"} +{"$label":"ACTS_IN","name":"Abuela Irene","type":"Role","_key":"3148","_from":"2697","_to":"2696"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"70084","_from":"2697","_to":"42731"} +{"$label":"ACTS_IN","name":"Madame Aurol","type":"Role","_key":"49380","_from":"2697","_to":"32335"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"48543","_from":"2697","_to":"31857"} +{"$label":"ACTS_IN","name":"Sor Perdida","type":"Role","_key":"48525","_from":"2697","_to":"31846"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"47851","_from":"2697","_to":"31496"} +{"$label":"ACTS_IN","name":"Mrs. Breitberg","type":"Role","_key":"46840","_from":"2697","_to":"30892"} +{"$label":"ACTS_IN","name":"Pepi","type":"Role","_key":"32157","_from":"2697","_to":"22417"} +{"$label":"ACTS_IN","name":"Pepa","type":"Role","_key":"30085","_from":"2697","_to":"21209"} +{"$label":"ACTS_IN","name":"Tina Quintero","type":"Role","_key":"29524","_from":"2697","_to":"20917"} +{"$label":"ACTS_IN","name":"The Nun","type":"Role","_key":"24777","_from":"2697","_to":"17914"} +{"$label":"ACTS_IN","name":"Judit Garc\u00eda","type":"Role","_key":"48171","_from":"2698","_to":"31649"} +{"$label":"ACTS_IN","name":"Abogada","type":"Role","_key":"21344","_from":"2698","_to":"15602"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"28797","_from":"2700","_to":"20579"} +{"$label":"ACTS_IN","name":"Joven","type":"Role","_key":"21930","_from":"2700","_to":"16014"} +{"$label":"ACTS_IN","name":"Mar\u00eda Antonia","type":"Role","_key":"51253","_from":"2702","_to":"33420"} +{"$label":"ACTS_IN","name":"Mother in Law","type":"Role","_key":"13996","_from":"2702","_to":"10827"} +{"$label":"ACTS_IN","name":"Hermano de Lola","type":"Role","_key":"21647","_from":"2706","_to":"15811"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"12087","_from":"2712","_to":"9465"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"3178","_from":"2724","_to":"2714"} +{"$label":"ACTS_IN","name":"Rantani","type":"Role","_key":"3177","_from":"2723","_to":"2714"} +{"$label":"ACTS_IN","name":"Gustav Albrecht","type":"Role","_key":"3176","_from":"2722","_to":"2714"} +{"$label":"ACTS_IN","name":"Will Hamilton","type":"Role","_key":"3174","_from":"2721","_to":"2714"} +{"$label":"ACTS_IN","name":"Sam the Sheriff","type":"Role","_key":"3173","_from":"2720","_to":"2714"} +{"$label":"ACTS_IN","name":"Kate Trask","type":"Role","_key":"3172","_from":"2719","_to":"2714"} +{"$label":"ACTS_IN","name":"Aron Trask","type":"Role","_key":"3171","_from":"2718","_to":"2714"} +{"$label":"ACTS_IN","name":"Abra","type":"Role","_key":"3169","_from":"2717","_to":"2714"} +{"$label":"ACTS_IN","name":"Caleb Trask","type":"Role","_key":"3168","_from":"2716","_to":"2714"} +{"$label":"DIRECTED","_key":"3167","_from":"2715","_to":"2714"} +{"$label":"DIRECTED","_key":"118168","_from":"2715","_to":"69448"} +{"$label":"DIRECTED","_key":"15652","_from":"2715","_to":"11939"} +{"$label":"DIRECTED","_key":"8457","_from":"2715","_to":"6907"} +{"$label":"DIRECTED","_key":"7824","_from":"2715","_to":"6495"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38390","_from":"2716","_to":"25936"} +{"$label":"ACTS_IN","name":"Jett Rink","type":"Role","_key":"15130","_from":"2716","_to":"11613"} +{"$label":"ACTS_IN","name":"Jim Stark","type":"Role","_key":"3180","_from":"2716","_to":"2725"} +{"$label":"ACTS_IN","name":"Eleanor 'Nell' Lance","type":"Role","_key":"71838","_from":"2717","_to":"43474"} +{"$label":"ACTS_IN","name":"Edna Davis","type":"Role","_key":"63054","_from":"2717","_to":"39566"} +{"$label":"ACTS_IN","name":"Reggie Delesseps","type":"Role","_key":"62730","_from":"2717","_to":"39438"} +{"$label":"ACTS_IN","name":"Roz Carr","type":"Role","_key":"61106","_from":"2717","_to":"38622"} +{"$label":"ACTS_IN","name":"Alison Langdon","type":"Role","_key":"27818","_from":"2717","_to":"19941"} +{"$label":"ACTS_IN","name":"Pvt. Gutowski","type":"Role","_key":"70908","_from":"2718","_to":"43079"} +{"$label":"ACTS_IN","name":"Blind Dick","type":"Role","_key":"10763","_from":"2718","_to":"8527"} +{"$label":"ACTS_IN","name":"Madame Dioz","type":"Role","_key":"70111","_from":"2719","_to":"42742"} +{"$label":"ACTS_IN","name":"Arletta","type":"Role","_key":"10760","_from":"2719","_to":"8527"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"118348","_from":"2720","_to":"69573"} +{"$label":"ACTS_IN","name":"Narrator\/Sam the Snowman","type":"Role","_key":"94212","_from":"2720","_to":"55478"} +{"$label":"ACTS_IN","name":"Rufus Hannassey","type":"Role","_key":"89914","_from":"2720","_to":"53205"} +{"$label":"ACTS_IN","name":"Mr. McGraw","type":"Role","_key":"38491","_from":"2720","_to":"26003"} +{"$label":"ACTS_IN","name":"Sheriff Earl Hawkins","type":"Role","_key":"36610","_from":"2720","_to":"24811"} +{"$label":"ACTS_IN","name":"Narrator (Voice)","type":"Role","_key":"16259","_from":"2720","_to":"12330"} +{"$label":"ACTS_IN","name":"Harvey \u201eBig Daddy\u201d Pollitt","type":"Role","_key":"3761","_from":"2720","_to":"3224"} +{"$label":"ACTS_IN","name":"Dr. G.E. Soberin","type":"Role","_key":"114664","_from":"2721","_to":"67551"} +{"$label":"ACTS_IN","name":"Dr. Lawrence J. Hockstader","type":"Role","_key":"101479","_from":"2721","_to":"59731"} +{"$label":"ACTS_IN","name":"Big Jim Colfax","type":"Role","_key":"101231","_from":"2721","_to":"59623"} +{"$label":"ACTS_IN","name":"Cap. Rucker (Texas Ranger)","type":"Role","_key":"44291","_from":"2721","_to":"29517"} +{"$label":"ACTS_IN","name":"Dr. Alexander Thorkel","type":"Role","_key":"28233","_from":"2721","_to":"20222"} +{"$label":"ACTS_IN","name":"Madero","type":"Role","_key":"15660","_from":"2722","_to":"11939"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"114672","_from":"2723","_to":"67551"} +{"$label":"ACTS_IN","name":"Dionysius","type":"Role","_key":"11510","_from":"2723","_to":"9041"} +{"$label":"ACTS_IN","name":"Pablo Gonzales","type":"Role","_key":"8463","_from":"2723","_to":"6907"} +{"$label":"ACTS_IN","name":"Lord High 'n Low","type":"Role","_key":"115226","_from":"2724","_to":"67853"} +{"$label":"ACTS_IN","name":"Pvt. Maurice Ferol","type":"Role","_key":"11541","_from":"2724","_to":"9065"} +{"$label":"ACTS_IN","name":"Nikki Arcane","type":"Role","_key":"3581","_from":"2724","_to":"3060"} +{"$label":"ACTS_IN","name":"Crawford family maid","type":"Role","_key":"3200","_from":"2744","_to":"2725"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"3199","_from":"2743","_to":"2725"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"3198","_from":"2742","_to":"2725"} +{"$label":"ACTS_IN","name":"Chick","type":"Role","_key":"3197","_from":"2741","_to":"2725"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"3196","_from":"2740","_to":"2725"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"3195","_from":"2739","_to":"2725"} +{"$label":"ACTS_IN","name":"Crunch","type":"Role","_key":"3194","_from":"2738","_to":"2725"} +{"$label":"ACTS_IN","name":"Dr. Minton (lecturer at planetarium)","type":"Role","_key":"3193","_from":"2737","_to":"2725"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"3192","_from":"2736","_to":"2725"} +{"$label":"ACTS_IN","name":"Mrs. Stark, Jim's grandmother","type":"Role","_key":"3191","_from":"2735","_to":"2725"} +{"$label":"ACTS_IN","name":"Mil","type":"Role","_key":"3190","_from":"2734","_to":"2725"} +{"$label":"ACTS_IN","name":"Judy's Mother","type":"Role","_key":"3187","_from":"2733","_to":"2725"} +{"$label":"ACTS_IN","name":"Judy's Father","type":"Role","_key":"3186","_from":"2732","_to":"2725"} +{"$label":"ACTS_IN","name":"Buzz Gunderson","type":"Role","_key":"3185","_from":"2731","_to":"2725"} +{"$label":"ACTS_IN","name":"Frank Stark","type":"Role","_key":"3184","_from":"2730","_to":"2725"} +{"$label":"ACTS_IN","name":"Mrs. Carol Stark","type":"Role","_key":"3183","_from":"2729","_to":"2725"} +{"$label":"ACTS_IN","name":"John 'Plato' Crawford","type":"Role","_key":"3182","_from":"2728","_to":"2725"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"3181","_from":"2727","_to":"2725"} +{"$label":"DIRECTED","_key":"3179","_from":"2726","_to":"2725"} +{"$label":"DIRECTED","_key":"110998","_from":"2726","_to":"65556"} +{"$label":"ACTS_IN","name":"Derwatt","type":"Role","_key":"68634","_from":"2726","_to":"42069"} +{"$label":"ACTS_IN","name":"Karen Brace","type":"Role","_key":"102947","_from":"2727","_to":"60558"} +{"$label":"ACTS_IN","name":"Maggie Dubois","type":"Role","_key":"70784","_from":"2727","_to":"43040"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"38401","_from":"2727","_to":"25936"} +{"$label":"ACTS_IN","name":"Debbie Edwards (older)","type":"Role","_key":"26073","_from":"2727","_to":"18734"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"15265","_from":"2727","_to":"11688"} +{"$label":"ACTS_IN","name":"Urija","type":"Role","_key":"21260","_from":"2728","_to":"15553"} +{"$label":"ACTS_IN","name":"Angel Obreg\u00f3n II","type":"Role","_key":"15136","_from":"2728","_to":"11613"} +{"$label":"ACTS_IN","name":"Dr. Milo","type":"Role","_key":"14928","_from":"2728","_to":"11474"} +{"$label":"ACTS_IN","name":"Elsie Hazlip","type":"Role","_key":"28912","_from":"2729","_to":"20657"} +{"$label":"ACTS_IN","name":"Ebenezer Scrooge\/Mr. Magoo","type":"Role","_key":"114405","_from":"2730","_to":"67389"} +{"$label":"ACTS_IN","name":"Tyler Fitzgerald","type":"Role","_key":"70803","_from":"2730","_to":"43041"} +{"$label":"ACTS_IN","name":"Colonel Robert Calder","type":"Role","_key":"103152","_from":"2732","_to":"60676"} +{"$label":"ACTS_IN","name":"Mrs. Booth","type":"Role","_key":"120007","_from":"2735","_to":"70472"} +{"$label":"ACTS_IN","name":"Geoffrey 'Pinky'","type":"Role","_key":"114325","_from":"2737","_to":"67337"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"28916","_from":"2737","_to":"20657"} +{"$label":"ACTS_IN","name":"Burton White","type":"Role","_key":"24686","_from":"2737","_to":"17851"} +{"$label":"ACTS_IN","name":"PTO","type":"Role","_key":"7573","_from":"2737","_to":"6300"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121619","_from":"2741","_to":"71450"} +{"$label":"ACTS_IN","name":"Tony Walters","type":"Role","_key":"35080","_from":"2741","_to":"23921"} +{"$label":"ACTS_IN","name":"Dr. Bowen","type":"Role","_key":"26394","_from":"2741","_to":"18962"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"3202","_from":"2747","_to":"2745"} +{"$label":"DIRECTED","_key":"3201","_from":"2746","_to":"2745"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"3217","_from":"2760","_to":"2748"} +{"$label":"ACTS_IN","name":"Chalcroft","type":"Role","_key":"3216","_from":"2759","_to":"2748"} +{"$label":"ACTS_IN","name":"Frith","type":"Role","_key":"3215","_from":"2758","_to":"2748"} +{"$label":"ACTS_IN","name":"Tabbs","type":"Role","_key":"3214","_from":"2757","_to":"2748"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"3213","_from":"2756","_to":"2748"} +{"$label":"ACTS_IN","name":"Mrs. Edythe Van Hopper","type":"Role","_key":"3211","_from":"2755","_to":"2748"} +{"$label":"ACTS_IN","name":"Beatrice Lacy","type":"Role","_key":"3210","_from":"2754","_to":"2748"} +{"$label":"ACTS_IN","name":"Frank Crawley","type":"Role","_key":"3209","_from":"2753","_to":"2748"} +{"$label":"ACTS_IN","name":"Major Giles Lacy","type":"Role","_key":"3208","_from":"2752","_to":"2748"} +{"$label":"ACTS_IN","name":"Jack Favell","type":"Role","_key":"3206","_from":"2751","_to":"2748"} +{"$label":"ACTS_IN","name":"Mrs. de Winter (2nd)","type":"Role","_key":"3205","_from":"2750","_to":"2748"} +{"$label":"ACTS_IN","name":"'Maxim' de Winter","type":"Role","_key":"3204","_from":"2749","_to":"2748"} +{"$label":"ACTS_IN","name":"Archie Rice","type":"Role","_key":"118176","_from":"2749","_to":"69451"} +{"$label":"ACTS_IN","name":"Piotr Ilyich Kamenev","type":"Role","_key":"113521","_from":"2749","_to":"66883"} +{"$label":"ACTS_IN","name":"Ezra Lieberman","type":"Role","_key":"108305","_from":"2749","_to":"64019"} +{"$label":"ACTS_IN","name":"Cantor Rabinovitch","type":"Role","_key":"103939","_from":"2749","_to":"61142"} +{"$label":"ACTS_IN","name":"Air Chief Marshal Sir Hugh Dowding","type":"Role","_key":"70018","_from":"2749","_to":"42700"} +{"$label":"ACTS_IN","name":"Christian Szell","type":"Role","_key":"63799","_from":"2749","_to":"39894"} +{"$label":"ACTS_IN","name":"Zeus","type":"Role","_key":"62585","_from":"2749","_to":"39379"} +{"$label":"ACTS_IN","name":"Dr. Jan Spaander","type":"Role","_key":"40265","_from":"2749","_to":"27164"} +{"$label":"ACTS_IN","name":"Dr. Totenkopf","type":"Role","_key":"36062","_from":"2749","_to":"24480"} +{"$label":"ACTS_IN","name":"Heathcliff","type":"Role","_key":"25606","_from":"2749","_to":"18444"} +{"$label":"ACTS_IN","name":"Admiral Hood","type":"Role","_key":"22621","_from":"2749","_to":"16415"} +{"$label":"ACTS_IN","name":"Nikodemus","type":"Role","_key":"21139","_from":"2749","_to":"15473"} +{"$label":"ACTS_IN","name":"Supt. Newhouse","type":"Role","_key":"16833","_from":"2749","_to":"12675"} +{"$label":"ACTS_IN","name":"Andrew Wyke","type":"Role","_key":"11738","_from":"2749","_to":"9214"} +{"$label":"ACTS_IN","name":"Marcus Licinius Crassus","type":"Role","_key":"11494","_from":"2749","_to":"9041"} +{"$label":"ACTS_IN","name":"Lina","type":"Role","_key":"69999","_from":"2750","_to":"42694"} +{"$label":"ACTS_IN","name":"Dr. Susan Hiller","type":"Role","_key":"18801","_from":"2750","_to":"13896"} +{"$label":"ACTS_IN","name":"Lisa Berndle","type":"Role","_key":"11273","_from":"2750","_to":"8902"} +{"$label":"ACTS_IN","name":"Eric Norvel","type":"Role","_key":"117190","_from":"2751","_to":"68941"} +{"$label":"ACTS_IN","name":"Lord Henry Wotton","type":"Role","_key":"109522","_from":"2751","_to":"64694"} +{"$label":"ACTS_IN","name":"Gordon Zellaby","type":"Role","_key":"71849","_from":"2751","_to":"43479"} +{"$label":"ACTS_IN","name":"Shere Khan","type":"Role","_key":"53137","_from":"2751","_to":"34379"} +{"$label":"ACTS_IN","name":"Celestial Body","type":"Role","_key":"28282","_from":"2751","_to":"20238"} +{"$label":"ACTS_IN","name":"Alexander 'Alex' Joyce","type":"Role","_key":"23234","_from":"2751","_to":"16852"} +{"$label":"ACTS_IN","name":"Benjamin Ballon","type":"Role","_key":"14134","_from":"2751","_to":"10944"} +{"$label":"ACTS_IN","name":"Addison DeWitt","type":"Role","_key":"8507","_from":"2751","_to":"6942"} +{"$label":"ACTS_IN","name":"Doctor Watson","type":"Role","_key":"117198","_from":"2752","_to":"68947"} +{"$label":"ACTS_IN","name":"Dr. Watson","type":"Role","_key":"112380","_from":"2752","_to":"66350"} +{"$label":"ACTS_IN","name":"Beaky","type":"Role","_key":"70001","_from":"2752","_to":"42694"} +{"$label":"ACTS_IN","name":"Dr. John H. Watson","type":"Role","_key":"21415","_from":"2752","_to":"15664"} +{"$label":"ACTS_IN","name":"Duke of Rudling","type":"Role","_key":"19151","_from":"2752","_to":"14153"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"25052","_from":"2753","_to":"18093"} +{"$label":"ACTS_IN","name":"Police Chief","type":"Role","_key":"24153","_from":"2753","_to":"17503"} +{"$label":"ACTS_IN","name":"Mrs. Hamilton","type":"Role","_key":"120194","_from":"2754","_to":"70587"} +{"$label":"ACTS_IN","name":"Mrs. Murdock","type":"Role","_key":"15894","_from":"2755","_to":"12094"} +{"$label":"ACTS_IN","name":"Burton","type":"Role","_key":"70009","_from":"2756","_to":"42694"} +{"$label":"ACTS_IN","name":"Beamish","type":"Role","_key":"118410","_from":"2759","_to":"69607"} +{"$label":"ACTS_IN","name":"Honesty Nutall","type":"Role","_key":"110434","_from":"2759","_to":"65236"} +{"$label":"ACTS_IN","name":"Twiddle","type":"Role","_key":"95767","_from":"2759","_to":"56328"} +{"$label":"ACTS_IN","name":"Ingenieur Moniak, Vertreter Witkas auf der Baustelle Huta Katowice","type":"Role","_key":"3235","_from":"2775","_to":"2761"} +{"$label":"ACTS_IN","name":"Richter bei Witeks Prozess","type":"Role","_key":"3234","_from":"2774","_to":"2761"} +{"$label":"ACTS_IN","name":"Sekretarka","type":"Role","_key":"3233","_from":"2773","_to":"2761"} +{"$label":"ACTS_IN","name":"pulkownik","type":"Role","_key":"3232","_from":"2772","_to":"2761"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"3231","_from":"2771","_to":"2761"} +{"$label":"ACTS_IN","name":"Agnieszkas Vater","type":"Role","_key":"3230","_from":"2770","_to":"2761"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"3229","_from":"2769","_to":"2761"} +{"$label":"ACTS_IN","name":"Hanka Tomczyk","type":"Role","_key":"3228","_from":"2768","_to":"2761"} +{"$label":"ACTS_IN","name":"Sekret\u00e4r Jod\u0142a","type":"Role","_key":"3227","_from":"2767","_to":"2761"} +{"$label":"ACTS_IN","name":"Michalak","type":"Role","_key":"3226","_from":"2766","_to":"2761"} +{"$label":"ACTS_IN","name":"Witek","type":"Role","_key":"3225","_from":"2765","_to":"2761"} +{"$label":"ACTS_IN","name":"Jerzy Burski (young)","type":"Role","_key":"3224","_from":"2764","_to":"2761"} +{"$label":"ACTS_IN","name":"Agnieszka","type":"Role","_key":"3221","_from":"2763","_to":"2761"} +{"$label":"DIRECTED","_key":"3220","_from":"2762","_to":"2761"} +{"$label":"DIRECTED","_key":"95422","_from":"2762","_to":"56133"} +{"$label":"DIRECTED","_key":"50803","_from":"2762","_to":"33152"} +{"$label":"DIRECTED","_key":"35689","_from":"2762","_to":"24252"} +{"$label":"DIRECTED","_key":"35201","_from":"2762","_to":"23983"} +{"$label":"DIRECTED","_key":"30074","_from":"2762","_to":"21206"} +{"$label":"DIRECTED","_key":"20030","_from":"2762","_to":"14741"} +{"$label":"DIRECTED","_key":"6186","_from":"2762","_to":"5243"} +{"$label":"DIRECTED","_key":"3236","_from":"2762","_to":"2776"} +{"$label":"ACTS_IN","name":"Antonina Dziwisz","type":"Role","_key":"116820","_from":"2763","_to":"68774"} +{"$label":"ACTS_IN","name":"Barbara Bruckner","type":"Role","_key":"72716","_from":"2763","_to":"43818"} +{"$label":"ACTS_IN","name":"Dorota","type":"Role","_key":"65485","_from":"2763","_to":"40582"} +{"$label":"ACTS_IN","name":"Ehefrau von Maciek Tomczyk, Filmregisseurin in \"Der Mann aus Marmor\"","type":"Role","_key":"3238","_from":"2763","_to":"2776"} +{"$label":"ACTS_IN","name":"Hanka Tomczyk","type":"Role","_key":"3248","_from":"2768","_to":"2776"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin beim Fernsehen","type":"Role","_key":"3251","_from":"2787","_to":"2776"} +{"$label":"ACTS_IN","name":"Personalchef","type":"Role","_key":"3250","_from":"2786","_to":"2776"} +{"$label":"ACTS_IN","name":"Mundek","type":"Role","_key":"3249","_from":"2785","_to":"2776"} +{"$label":"ACTS_IN","name":"Schauspielerin die Mi\u0142oszas Gedicht rezitiert","type":"Role","_key":"3247","_from":"2784","_to":"2776"} +{"$label":"ACTS_IN","name":"Antoniak","type":"Role","_key":"3246","_from":"2783","_to":"2776"} +{"$label":"ACTS_IN","name":"Grzenda","type":"Role","_key":"3245","_from":"2782","_to":"2776"} +{"$label":"ACTS_IN","name":"Wirski","type":"Role","_key":"3244","_from":"2781","_to":"2776"} +{"$label":"ACTS_IN","name":"Badecki","type":"Role","_key":"3243","_from":"2780","_to":"2776"} +{"$label":"ACTS_IN","name":"Wies\u0142awa Hulewicz","type":"Role","_key":"3241","_from":"2779","_to":"2776"} +{"$label":"ACTS_IN","name":"Mutter Hulewicz","type":"Role","_key":"3240","_from":"2778","_to":"2776"} +{"$label":"ACTS_IN","name":"Redakteur Winkel","type":"Role","_key":"3239","_from":"2777","_to":"2776"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"35195","_from":"2781","_to":"23983"} +{"$label":"ACTS_IN","name":"Robespierre","type":"Role","_key":"30210","_from":"2781","_to":"21284"} +{"$label":"ACTS_IN","name":"Maks Baum","type":"Role","_key":"6189","_from":"2781","_to":"5243"} +{"$label":"ACTS_IN","name":"Julian Scherner","type":"Role","_key":"5333","_from":"2781","_to":"4517"} +{"$label":"ACTS_IN","name":"Olo","type":"Role","_key":"116707","_from":"2782","_to":"68701"} +{"$label":"ACTS_IN","name":"Graf","type":"Role","_key":"35198","_from":"2782","_to":"23983"} +{"$label":"ACTS_IN","name":"Car Aleksy","type":"Role","_key":"116702","_from":"2783","_to":"68697"} +{"$label":"ACTS_IN","name":"Trainer","type":"Role","_key":"40077","_from":"2783","_to":"27049"} +{"$label":"ACTS_IN","name":"Clerk","type":"Role","_key":"3275","_from":"2808","_to":"2788"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"3274","_from":"2807","_to":"2788"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"3273","_from":"2806","_to":"2788"} +{"$label":"ACTS_IN","name":"Girl in Car","type":"Role","_key":"3272","_from":"2805","_to":"2788"} +{"$label":"ACTS_IN","name":"Nerdy Teen","type":"Role","_key":"3271","_from":"2804","_to":"2788"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"3270","_from":"2803","_to":"2788"} +{"$label":"ACTS_IN","name":"Sam Phillips","type":"Role","_key":"3269","_from":"2802","_to":"2788"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"3268","_from":"2801","_to":"2788"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"3266","_from":"2800","_to":"2788"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"3265","_from":"2799","_to":"2788"} +{"$label":"ACTS_IN","name":"Trucker in Kwik Stop","type":"Role","_key":"3264","_from":"2798","_to":"2788"} +{"$label":"ACTS_IN","name":"Kwik Stop Cashier","type":"Role","_key":"3263","_from":"2797","_to":"2788"} +{"$label":"ACTS_IN","name":"Trucker","type":"Role","_key":"3262","_from":"2796","_to":"2788"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"3261","_from":"2795","_to":"2788"} +{"$label":"ACTS_IN","name":"Lonny","type":"Role","_key":"3260","_from":"2794","_to":"2788"} +{"$label":"ACTS_IN","name":"Lana's Mom","type":"Role","_key":"3258","_from":"2793","_to":"2788"} +{"$label":"ACTS_IN","name":"Candace","type":"Role","_key":"3257","_from":"2792","_to":"2788"} +{"$label":"ACTS_IN","name":"Tom Nissen","type":"Role","_key":"3256","_from":"2791","_to":"2788"} +{"$label":"ACTS_IN","name":"Lana Tisdel","type":"Role","_key":"3254","_from":"2790","_to":"2788"} +{"$label":"DIRECTED","_key":"3252","_from":"2789","_to":"2788"} +{"$label":"DIRECTED","_key":"51858","_from":"2789","_to":"33835"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"116076","_from":"2790","_to":"68353"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"110674","_from":"2790","_to":"65380"} +{"$label":"ACTS_IN","name":"Caitlin Avey","type":"Role","_key":"95101","_from":"2790","_to":"55970"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"91118","_from":"2790","_to":"53759"} +{"$label":"ACTS_IN","name":"Laurel","type":"Role","_key":"55648","_from":"2790","_to":"35428"} +{"$label":"ACTS_IN","name":"Jennie","type":"Role","_key":"53242","_from":"2790","_to":"34430"} +{"$label":"ACTS_IN","name":"Philomena","type":"Role","_key":"16936","_from":"2790","_to":"12720"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"16916","_from":"2790","_to":"12715"} +{"$label":"ACTS_IN","name":"Gitsy","type":"Role","_key":"13086","_from":"2790","_to":"10201"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"12544","_from":"2790","_to":"9822"} +{"$label":"ACTS_IN","name":"Liz Henson","type":"Role","_key":"6619","_from":"2790","_to":"5579"} +{"$label":"ACTS_IN","name":"Carmen's Assistant","type":"Role","_key":"4270","_from":"2790","_to":"3629"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"108026","_from":"2791","_to":"63792"} +{"$label":"ACTS_IN","name":"Ludlow","type":"Role","_key":"105926","_from":"2791","_to":"62366"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"67019","_from":"2791","_to":"41373"} +{"$label":"ACTS_IN","name":"Pfc. Richard 'Alphabet' Kowalewski","type":"Role","_key":"10160","_from":"2791","_to":"8112"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"91560","_from":"2792","_to":"53977"} +{"$label":"ACTS_IN","name":"Lydia Mertz","type":"Role","_key":"6899","_from":"2792","_to":"5792"} +{"$label":"ACTS_IN","name":"M.I.T. Student #1","type":"Role","_key":"5957","_from":"2792","_to":"5047"} +{"$label":"ACTS_IN","name":"Sydney","type":"Role","_key":"99267","_from":"2793","_to":"58498"} +{"$label":"ACTS_IN","name":"Sandra Parker","type":"Role","_key":"106279","_from":"2795","_to":"62605"} +{"$label":"ACTS_IN","name":"Professor Canutti","type":"Role","_key":"11730","_from":"2802","_to":"9203"} +{"$label":"ACTS_IN","name":"Emma Prescott","type":"Role","_key":"103031","_from":"2808","_to":"60608"} +{"$label":"ACTS_IN","name":"Emma Prescott","type":"Role","_key":"59065","_from":"2808","_to":"37284"} +{"$label":"ACTS_IN","name":"Store Clerk","type":"Role","_key":"3292","_from":"2820","_to":"2809"} +{"$label":"ACTS_IN","name":"Buck Merrill","type":"Role","_key":"3290","_from":"2819","_to":"2809"} +{"$label":"ACTS_IN","name":"Jerry Wood","type":"Role","_key":"3289","_from":"2818","_to":"2809"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"3288","_from":"2817","_to":"2809"} +{"$label":"ACTS_IN","name":"Randy Anderson","type":"Role","_key":"3287","_from":"2816","_to":"2809"} +{"$label":"ACTS_IN","name":"Bob Sheldon","type":"Role","_key":"3286","_from":"2815","_to":"2809"} +{"$label":"ACTS_IN","name":"Sherri 'Cherry' Valance","type":"Role","_key":"3285","_from":"2814","_to":"2809"} +{"$label":"ACTS_IN","name":"Tim Shepard","type":"Role","_key":"3284","_from":"2813","_to":"2809"} +{"$label":"ACTS_IN","name":"Sodapop Curtis","type":"Role","_key":"3281","_from":"2812","_to":"2809"} +{"$label":"ACTS_IN","name":"Johnny Cade","type":"Role","_key":"3278","_from":"2811","_to":"2809"} +{"$label":"ACTS_IN","name":"Dallas 'Dally' Winston","type":"Role","_key":"3277","_from":"2810","_to":"2809"} +{"$label":"ACTS_IN","name":"Patton Dubois","type":"Role","_key":"101224","_from":"2810","_to":"59622"} +{"$label":"ACTS_IN","name":"Trip Murphy","type":"Role","_key":"69939","_from":"2810","_to":"42674"} +{"$label":"ACTS_IN","name":"David Walsh","type":"Role","_key":"69702","_from":"2810","_to":"42552"} +{"$label":"ACTS_IN","name":"Cameron Drake","type":"Role","_key":"65915","_from":"2810","_to":"40773"} +{"$label":"ACTS_IN","name":"Henry Chinaski","type":"Role","_key":"63545","_from":"2810","_to":"39778"} +{"$label":"ACTS_IN","name":"Tommy 'Birdman' Rowland","type":"Role","_key":"52840","_from":"2810","_to":"34256"} +{"$label":"ACTS_IN","name":"Dova","type":"Role","_key":"50666","_from":"2810","_to":"33080"} +{"$label":"ACTS_IN","name":"Mike Cochrane","type":"Role","_key":"32935","_from":"2810","_to":"22843"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"18697","_from":"2810","_to":"13841"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"15749","_from":"2810","_to":"11996"} +{"$label":"ACTS_IN","name":"Officer John Ryan","type":"Role","_key":"14523","_from":"2810","_to":"11201"} +{"$label":"ACTS_IN","name":"Sam Lombardo","type":"Role","_key":"7322","_from":"2810","_to":"6106"} +{"$label":"ACTS_IN","name":"Larry Maretto","type":"Role","_key":"6895","_from":"2810","_to":"5792"} +{"$label":"ACTS_IN","name":"Pat Healy","type":"Role","_key":"6490","_from":"2810","_to":"5497"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"5864","_from":"2810","_to":"4983"} +{"$label":"ACTS_IN","name":"Rusty James","type":"Role","_key":"3344","_from":"2810","_to":"2869"} +{"$label":"ACTS_IN","name":"Eugene Martone","type":"Role","_key":"104250","_from":"2811","_to":"61340"} +{"$label":"ACTS_IN","name":"Maz","type":"Role","_key":"98672","_from":"2811","_to":"58151"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"72060","_from":"2811","_to":"43573"} +{"$label":"ACTS_IN","name":"Daniel LaRusso","type":"Role","_key":"63672","_from":"2811","_to":"39827"} +{"$label":"ACTS_IN","name":"William 'Billy' Gambini","type":"Role","_key":"62891","_from":"2811","_to":"39510"} +{"$label":"ACTS_IN","name":"Daniel LaRusso","type":"Role","_key":"51139","_from":"2811","_to":"33359"} +{"$label":"ACTS_IN","name":"Daniel LaRusso","type":"Role","_key":"16271","_from":"2811","_to":"12340"} +{"$label":"ACTS_IN","name":"Danny Martin","type":"Role","_key":"115147","_from":"2812","_to":"67807"} +{"$label":"ACTS_IN","name":"Dean Youngblood","type":"Role","_key":"112322","_from":"2812","_to":"66316"} +{"$label":"ACTS_IN","name":"Nick Andros","type":"Role","_key":"94972","_from":"2812","_to":"55928"} +{"$label":"ACTS_IN","name":"Billy Hicks","type":"Role","_key":"70646","_from":"2812","_to":"42993"} +{"$label":"ACTS_IN","name":"John Berry","type":"Role","_key":"69053","_from":"2812","_to":"42266"} +{"$label":"ACTS_IN","name":"Hoodlum","type":"Role","_key":"67140","_from":"2812","_to":"41425"} +{"$label":"ACTS_IN","name":"Benjamin Kane","type":"Role","_key":"51198","_from":"2812","_to":"33391"} +{"$label":"ACTS_IN","name":"Young Number Two","type":"Role","_key":"9627","_from":"2812","_to":"7750"} +{"$label":"ACTS_IN","name":"Richard Rank","type":"Role","_key":"8271","_from":"2812","_to":"6784"} +{"$label":"ACTS_IN","name":"Biff Wilcox","type":"Role","_key":"3354","_from":"2813","_to":"2869"} +{"$label":"ACTS_IN","name":"Liz Earl","type":"Role","_key":"120459","_from":"2814","_to":"70763"} +{"$label":"ACTS_IN","name":"Ellen Morris","type":"Role","_key":"114329","_from":"2814","_to":"67342"} +{"$label":"ACTS_IN","name":"Carmen Colson","type":"Role","_key":"107650","_from":"2814","_to":"63537"} +{"$label":"ACTS_IN","name":"Ellen Aim","type":"Role","_key":"101617","_from":"2814","_to":"59813"} +{"$label":"ACTS_IN","name":"Adrienne Willis","type":"Role","_key":"99634","_from":"2814","_to":"58740"} +{"$label":"ACTS_IN","name":"Lorena Wood","type":"Role","_key":"92239","_from":"2814","_to":"54426"} +{"$label":"ACTS_IN","name":"Sarah Nolan","type":"Role","_key":"71274","_from":"2814","_to":"43243"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"66834","_from":"2814","_to":"41283"} +{"$label":"ACTS_IN","name":"Judge Hershey","type":"Role","_key":"54154","_from":"2814","_to":"34797"} +{"$label":"ACTS_IN","name":"Agent Nina Chance","type":"Role","_key":"53723","_from":"2814","_to":"34638"} +{"$label":"ACTS_IN","name":"Mary Rice","type":"Role","_key":"48592","_from":"2814","_to":"31879"} +{"$label":"ACTS_IN","name":"Agent Jennifer Marsh","type":"Role","_key":"48193","_from":"2814","_to":"31662"} +{"$label":"ACTS_IN","name":"Karen Powell","type":"Role","_key":"45823","_from":"2814","_to":"30306"} +{"$label":"ACTS_IN","name":"Kathy Sheppard","type":"Role","_key":"39352","_from":"2814","_to":"26617"} +{"$label":"ACTS_IN","name":"Connie Sumner","type":"Role","_key":"19674","_from":"2814","_to":"14552"} +{"$label":"ACTS_IN","name":"Erin Glass","type":"Role","_key":"18933","_from":"2814","_to":"13983"} +{"$label":"ACTS_IN","name":"Vera Cicero","type":"Role","_key":"18720","_from":"2814","_to":"13856"} +{"$label":"ACTS_IN","name":"Christina \" Chris \" Cotter","type":"Role","_key":"18552","_from":"2814","_to":"13731"} +{"$label":"ACTS_IN","name":"Toni Mannix","type":"Role","_key":"12219","_from":"2814","_to":"9571"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"3346","_from":"2814","_to":"2869"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96471","_from":"2815","_to":"56725"} +{"$label":"ACTS_IN","name":"Cruiser Cop #4","type":"Role","_key":"31043","_from":"2815","_to":"21724"} +{"$label":"ACTS_IN","name":"Prewitt","type":"Role","_key":"107100","_from":"2816","_to":"63150"} +{"$label":"ACTS_IN","name":"Daryl","type":"Role","_key":"16230","_from":"2816","_to":"12315"} +{"$label":"ACTS_IN","name":"Jordan Cochran","type":"Role","_key":"99842","_from":"2817","_to":"58889"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"98303","_from":"2817","_to":"57901"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"118203","_from":"2818","_to":"69472"} +{"$label":"ACTS_IN","name":"Judge Block","type":"Role","_key":"116990","_from":"2818","_to":"68856"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"115004","_from":"2818","_to":"67722"} +{"$label":"ACTS_IN","name":"Chef Paul","type":"Role","_key":"67399","_from":"2818","_to":"41521"} +{"$label":"ACTS_IN","name":"Floyd Chisolm","type":"Role","_key":"41421","_from":"2818","_to":"27846"} +{"$label":"ACTS_IN","name":"Ed Roberts","type":"Role","_key":"26794","_from":"2818","_to":"19245"} +{"$label":"ACTS_IN","name":"Gary Buckner","type":"Role","_key":"17831","_from":"2818","_to":"13281"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113591","_from":"2819","_to":"66935"} +{"$label":"ACTS_IN","name":"Kneller","type":"Role","_key":"93424","_from":"2819","_to":"55013"} +{"$label":"ACTS_IN","name":"Himself \/ S\u00e8 stesso","type":"Role","_key":"66170","_from":"2819","_to":"40934"} +{"$label":"ACTS_IN","name":"Himself\/Singer in bar (uncredited)","type":"Role","_key":"62692","_from":"2819","_to":"39423"} +{"$label":"ACTS_IN","name":"Devil","type":"Role","_key":"47901","_from":"2819","_to":"31515"} +{"$label":"ACTS_IN","name":"Renfield","type":"Role","_key":"41773","_from":"2819","_to":"28027"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"13755","_from":"2819","_to":"10676"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"10511","_from":"2819","_to":"8357"} +{"$label":"ACTS_IN","name":"Earl Piggot","type":"Role","_key":"8384","_from":"2819","_to":"6847"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"3355","_from":"2819","_to":"2869"} +{"$label":"ACTS_IN","name":"Jack Wilson","type":"Role","_key":"111411","_from":"2820","_to":"65785"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"55521","_from":"2820","_to":"35367"} +{"$label":"ACTS_IN","name":"Conan's Father","type":"Role","_key":"53531","_from":"2820","_to":"34556"} +{"$label":"ACTS_IN","name":"Capt. Joe Wilkes","type":"Role","_key":"30867","_from":"2820","_to":"21633"} +{"$label":"ACTS_IN","name":"Village Boy","type":"Role","_key":"25487","_from":"2820","_to":"18370"} +{"$label":"ACTS_IN","name":"Patterson the Cop","type":"Role","_key":"3358","_from":"2820","_to":"2869"} +{"$label":"ACTS_IN","name":"Professor Raths Dienstm\u00e4dchen","type":"Role","_key":"3309","_from":"2838","_to":"2821"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"3308","_from":"2837","_to":"2821"} +{"$label":"ACTS_IN","name":"K\u00e4ptain","type":"Role","_key":"3307","_from":"2836","_to":"2821"} +{"$label":"ACTS_IN","name":"Gastwirt","type":"Role","_key":"3306","_from":"2835","_to":"2821"} +{"$label":"ACTS_IN","name":"Sch\u00fcler Goldstaub","type":"Role","_key":"3305","_from":"2834","_to":"2821"} +{"$label":"ACTS_IN","name":"Sch\u00fcler Ertzum","type":"Role","_key":"3304","_from":"2833","_to":"2821"} +{"$label":"ACTS_IN","name":"Sch\u00fcler Lohmann","type":"Role","_key":"3303","_from":"2832","_to":"2821"} +{"$label":"ACTS_IN","name":"Sch\u00fcler Angst","type":"Role","_key":"3302","_from":"2831","_to":"2821"} +{"$label":"ACTS_IN","name":"Schulhausmeister","type":"Role","_key":"3301","_from":"2830","_to":"2821"} +{"$label":"ACTS_IN","name":"Schuldirektor","type":"Role","_key":"3300","_from":"2829","_to":"2821"} +{"$label":"ACTS_IN","name":"Clown","type":"Role","_key":"3299","_from":"2828","_to":"2821"} +{"$label":"ACTS_IN","name":"Mazeppa","type":"Role","_key":"3298","_from":"2827","_to":"2821"} +{"$label":"ACTS_IN","name":"Guste, Frau des Magiers","type":"Role","_key":"3297","_from":"2826","_to":"2821"} +{"$label":"ACTS_IN","name":"Kiepert der Magier","type":"Role","_key":"3296","_from":"2825","_to":"2821"} +{"$label":"ACTS_IN","name":"Lola Lola","type":"Role","_key":"3295","_from":"2824","_to":"2821"} +{"$label":"ACTS_IN","name":"Professor Immanuel Rath","type":"Role","_key":"3294","_from":"2823","_to":"2821"} +{"$label":"DIRECTED","_key":"3293","_from":"2822","_to":"2821"} +{"$label":"DIRECTED","_key":"10537","_from":"2822","_to":"8377"} +{"$label":"DIRECTED","_key":"10406","_from":"2822","_to":"8280"} +{"$label":"ACTS_IN","name":"Mephisto","type":"Role","_key":"65289","_from":"2823","_to":"40525"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"40922","_from":"2823","_to":"27534"} +{"$label":"ACTS_IN","name":"Danton","type":"Role","_key":"30142","_from":"2823","_to":"21242"} +{"$label":"ACTS_IN","name":"Micheline","type":"Role","_key":"41938","_from":"2824","_to":"28098"} +{"$label":"ACTS_IN","name":"Saloon Hostess","type":"Role","_key":"24143","_from":"2824","_to":"17503"} +{"$label":"ACTS_IN","name":"Charlotte Inwood","type":"Role","_key":"17142","_from":"2824","_to":"12847"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"13432","_from":"2824","_to":"10442"} +{"$label":"ACTS_IN","name":"Shanghai Lily","type":"Role","_key":"10407","_from":"2824","_to":"8280"} +{"$label":"ACTS_IN","name":"Mrs. Bertholt","type":"Role","_key":"9689","_from":"2824","_to":"7772"} +{"$label":"DIRECTED","_key":"23537","_from":"2825","_to":"17071"} +{"$label":"ACTS_IN","name":"Rechtsanwalt Kalmus","type":"Role","_key":"10785","_from":"2825","_to":"8549"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"4781","_from":"2825","_to":"4082"} +{"$label":"ACTS_IN","name":"Frau Kochanke","type":"Role","_key":"41158","_from":"2826","_to":"27693"} +{"$label":"ACTS_IN","name":"Baron M\u00fcnchhausen","type":"Role","_key":"71135","_from":"2827","_to":"43180"} +{"$label":"ACTS_IN","name":"Hannes Kroeger","type":"Role","_key":"64175","_from":"2827","_to":"40043"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"42039","_from":"2827","_to":"28168"} +{"$label":"ACTS_IN","name":"Baron Gisbert von Bomberg","type":"Role","_key":"42000","_from":"2827","_to":"28144"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Jonny Jensen","type":"Role","_key":"39972","_from":"2827","_to":"27002"} +{"$label":"ACTS_IN","name":"Fernlastfahrer Heinrich Schl\u00fcter","type":"Role","_key":"31787","_from":"2827","_to":"22186"} +{"$label":"ACTS_IN","name":"Flieger Ellissen","type":"Role","_key":"9862","_from":"2827","_to":"7904"} +{"$label":"ACTS_IN","name":"Schliemke","type":"Role","_key":"45126","_from":"2828","_to":"29944"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44463","_from":"2829","_to":"29617"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"42048","_from":"2829","_to":"28168"} +{"$label":"ACTS_IN","name":"Genaral Westermann","type":"Role","_key":"30147","_from":"2829","_to":"21242"} +{"$label":"ACTS_IN","name":"Hildebrandt","type":"Role","_key":"19253","_from":"2829","_to":"14225"} +{"$label":"ACTS_IN","name":"Jean Martin","type":"Role","_key":"42028","_from":"2835","_to":"28155"} +{"$label":"ACTS_IN","name":"Roferbauer Sen.","type":"Role","_key":"43061","_from":"2836","_to":"28755"} +{"$label":"ACTS_IN","name":"le pr\u00e9sident du tribunal","type":"Role","_key":"31554","_from":"2837","_to":"22027"} +{"$label":"ACTS_IN","name":"Schmiths Vater","type":"Role","_key":"19445","_from":"2837","_to":"14382"} +{"$label":"ACTS_IN","name":"Frau Lohmann","type":"Role","_key":"45119","_from":"2838","_to":"29944"} +{"$label":"ACTS_IN","name":"Frau Giesicke","type":"Role","_key":"23633","_from":"2838","_to":"17129"} +{"$label":"ACTS_IN","name":"Dr. Henry Frankenstein","type":"Role","_key":"3312","_from":"2842","_to":"2839"} +{"$label":"ACTS_IN","name":"Frankensteins Monster","type":"Role","_key":"3311","_from":"2841","_to":"2839"} +{"$label":"DIRECTED","_key":"3310","_from":"2840","_to":"2839"} +{"$label":"DIRECTED","_key":"65798","_from":"2840","_to":"40720"} +{"$label":"DIRECTED","_key":"25157","_from":"2840","_to":"18170"} +{"$label":"ACTS_IN","name":"Byron Orlok","type":"Role","_key":"119972","_from":"2841","_to":"70461"} +{"$label":"ACTS_IN","name":"Edmond Bateman","type":"Role","_key":"114318","_from":"2841","_to":"67337"} +{"$label":"ACTS_IN","name":"Baron Boris von Frankenstein","type":"Role","_key":"111763","_from":"2841","_to":"65967"} +{"$label":"ACTS_IN","name":"Im-ho-tep \/ Ardath Bey","type":"Role","_key":"106109","_from":"2841","_to":"62489"} +{"$label":"ACTS_IN","name":"Dr. Ernest Sovac","type":"Role","_key":"96601","_from":"2841","_to":"56822"} +{"$label":"ACTS_IN","name":"Narrator \/ The Grinch (voice)","type":"Role","_key":"94192","_from":"2841","_to":"55465"} +{"$label":"ACTS_IN","name":"Dr. Fu Man Chu","type":"Role","_key":"27405","_from":"2841","_to":"19685"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26659","_from":"2841","_to":"19158"} +{"$label":"ACTS_IN","name":"Baron Viktor von Frankenstein","type":"Role","_key":"26435","_from":"2841","_to":"18993"} +{"$label":"ACTS_IN","name":"Dr. Niemann","type":"Role","_key":"25951","_from":"2841","_to":"18663"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"25511","_from":"2841","_to":"18386"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"25161","_from":"2841","_to":"18170"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25049","_from":"2841","_to":"18093"} +{"$label":"ACTS_IN","name":"Gaffney","type":"Role","_key":"10435","_from":"2841","_to":"8296"} +{"$label":"ACTS_IN","name":"Dr. Henry Frankenstein (Archive)","type":"Role","_key":"25488","_from":"2842","_to":"18370"} +{"$label":"ACTS_IN","name":"Dr. Henry Frankenstein","type":"Role","_key":"25158","_from":"2842","_to":"18170"} +{"$label":"ACTS_IN","name":"Nasir's Wife","type":"Role","_key":"3343","_from":"2868","_to":"2844"} +{"$label":"ACTS_IN","name":"Mussawi","type":"Role","_key":"3342","_from":"2867","_to":"2844"} +{"$label":"ACTS_IN","name":"Farooq","type":"Role","_key":"3340","_from":"2866","_to":"2844"} +{"$label":"ACTS_IN","name":"Prince Meshal Al-Subaai","type":"Role","_key":"3339","_from":"2865","_to":"2844"} +{"$label":"ACTS_IN","name":"Emir Hamed Al-Subaai","type":"Role","_key":"3338","_from":"2864","_to":"2844"} +{"$label":"ACTS_IN","name":"Robby Barnes","type":"Role","_key":"3337","_from":"2863","_to":"2844"} +{"$label":"ACTS_IN","name":"Division Chief","type":"Role","_key":"3336","_from":"2862","_to":"2844"} +{"$label":"ACTS_IN","name":"Chinese Engineer","type":"Role","_key":"3335","_from":"2861","_to":"2844"} +{"$label":"ACTS_IN","name":"Pakistani Translator","type":"Role","_key":"3334","_from":"2860","_to":"2844"} +{"$label":"ACTS_IN","name":"Saleem Ahmed Khan","type":"Role","_key":"3333","_from":"2859","_to":"2844"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"3332","_from":"2858","_to":"2844"} +{"$label":"ACTS_IN","name":"Wasim Khan","type":"Role","_key":"3331","_from":"2857","_to":"2844"} +{"$label":"ACTS_IN","name":"Bryan's Boss","type":"Role","_key":"3330","_from":"2856","_to":"2844"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"3328","_from":"2855","_to":"2844"} +{"$label":"ACTS_IN","name":"Max Woodman","type":"Role","_key":"3327","_from":"2854","_to":"2844"} +{"$label":"ACTS_IN","name":"Riley Woodman","type":"Role","_key":"3326","_from":"2853","_to":"2844"} +{"$label":"ACTS_IN","name":"Sydney Hewitt","type":"Role","_key":"3325","_from":"2852","_to":"2844"} +{"$label":"ACTS_IN","name":"Tommy Barton","type":"Role","_key":"3324","_from":"2851","_to":"2844"} +{"$label":"ACTS_IN","name":"Mohammed Sheik Agiza","type":"Role","_key":"3323","_from":"2850","_to":"2844"} +{"$label":"ACTS_IN","name":"Arash","type":"Role","_key":"3322","_from":"2849","_to":"2844"} +{"$label":"ACTS_IN","name":"Prince Nasir Al-Subaai","type":"Role","_key":"3321","_from":"2848","_to":"2844"} +{"$label":"ACTS_IN","name":"Julie Woodman","type":"Role","_key":"3318","_from":"2847","_to":"2844"} +{"$label":"ACTS_IN","name":"Bennett Holiday","type":"Role","_key":"3316","_from":"2846","_to":"2844"} +{"$label":"DIRECTED","_key":"3313","_from":"2845","_to":"2844"} +{"$label":"DIRECTED","_key":"106583","_from":"2845","_to":"62806"} +{"$label":"ACTS_IN","name":"CPL Al Melvin","type":"Role","_key":"100444","_from":"2846","_to":"59224"} +{"$label":"ACTS_IN","name":"Muddy Waters","type":"Role","_key":"99516","_from":"2846","_to":"58668"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"65627","_from":"2846","_to":"40670"} +{"$label":"ACTS_IN","name":"Mr. Dury","type":"Role","_key":"55782","_from":"2846","_to":"35507"} +{"$label":"ACTS_IN","name":"Howard Bingham","type":"Role","_key":"50058","_from":"2846","_to":"32759"} +{"$label":"ACTS_IN","name":"Dr. Galeano","type":"Role","_key":"34424","_from":"2846","_to":"23588"} +{"$label":"ACTS_IN","name":"Jean Michel Basquiat","type":"Role","_key":"6543","_from":"2846","_to":"5534"} +{"$label":"ACTS_IN","name":"Peoples Hernandez","type":"Role","_key":"5875","_from":"2846","_to":"4990"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"4261","_from":"2846","_to":"3629"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110307","_from":"2847","_to":"65180"} +{"$label":"ACTS_IN","name":"Stacy Reilly","type":"Role","_key":"105965","_from":"2847","_to":"62387"} +{"$label":"ACTS_IN","name":"Phoenix","type":"Role","_key":"104846","_from":"2847","_to":"61694"} +{"$label":"ACTS_IN","name":"Jane Bannister","type":"Role","_key":"100494","_from":"2847","_to":"59260"} +{"$label":"ACTS_IN","name":"Kate Curtis","type":"Role","_key":"98809","_from":"2847","_to":"58224"} +{"$label":"ACTS_IN","name":"Sofia Kowalski","type":"Role","_key":"93162","_from":"2847","_to":"54904"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"63264","_from":"2847","_to":"39660"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"55655","_from":"2847","_to":"35428"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"55605","_from":"2847","_to":"35408"} +{"$label":"ACTS_IN","name":"Emily Friehl","type":"Role","_key":"51791","_from":"2847","_to":"33797"} +{"$label":"ACTS_IN","name":"ASAC Dakota Whitney","type":"Role","_key":"50948","_from":"2847","_to":"33249"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"46360","_from":"2847","_to":"30625"} +{"$label":"ACTS_IN","name":"Marin","type":"Role","_key":"45394","_from":"2847","_to":"30097"} +{"$label":"ACTS_IN","name":"Harlee","type":"Role","_key":"36025","_from":"2847","_to":"24460"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30106","_from":"2847","_to":"21216"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"23844","_from":"2847","_to":"17287"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"18495","_from":"2847","_to":"13698"} +{"$label":"ACTS_IN","name":"Jill St. Claire","type":"Role","_key":"17993","_from":"2847","_to":"13374"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"9753","_from":"2847","_to":"7817"} +{"$label":"ACTS_IN","name":"PM John Hatcher","type":"Role","_key":"94617","_from":"2848","_to":"55748"} +{"$label":"ACTS_IN","name":"Theodorus Andronikos","type":"Role","_key":"55882","_from":"2848","_to":"35542"} +{"$label":"ACTS_IN","name":"Ajay","type":"Role","_key":"42782","_from":"2848","_to":"28624"} +{"$label":"ACTS_IN","name":"Der Engel Gabriel","type":"Role","_key":"21447","_from":"2848","_to":"15682"} +{"$label":"ACTS_IN","name":"Nasir","type":"Role","_key":"13540","_from":"2848","_to":"10534"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"113703","_from":"2851","_to":"67009"} +{"$label":"ACTS_IN","name":"Paul Buher","type":"Role","_key":"65643","_from":"2851","_to":"40672"} +{"$label":"ACTS_IN","name":"Dr. Victor Frankenstein","type":"Role","_key":"25415","_from":"2851","_to":"18324"} +{"$label":"ACTS_IN","name":"Grayer Addison X","type":"Role","_key":"89467","_from":"2853","_to":"52971"} +{"$label":"ACTS_IN","name":"Tim Everett","type":"Role","_key":"51087","_from":"2856","_to":"33334"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Victor Bandini","type":"Role","_key":"116298","_from":"2858","_to":"68466"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"112159","_from":"2858","_to":"66233"} +{"$label":"ACTS_IN","name":"Lebrun","type":"Role","_key":"95717","_from":"2858","_to":"56295"} +{"$label":"ACTS_IN","name":"Paul Nerteaux","type":"Role","_key":"65878","_from":"2858","_to":"40763"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"50921","_from":"2858","_to":"33232"} +{"$label":"ACTS_IN","name":"Louis-Arnault","type":"Role","_key":"33288","_from":"2858","_to":"23064"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"13833","_from":"2859","_to":"10733"} +{"$label":"ACTS_IN","name":"Z","type":"Role","_key":"98415","_from":"2861","_to":"57976"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"64634","_from":"2861","_to":"40258"} +{"$label":"ACTS_IN","name":"Randall Flagg","type":"Role","_key":"94968","_from":"2862","_to":"55928"} +{"$label":"ACTS_IN","name":"Jim Carver","type":"Role","_key":"40309","_from":"2862","_to":"27194"} +{"$label":"ACTS_IN","name":"Agent George Scanlon","type":"Role","_key":"18266","_from":"2862","_to":"13549"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"120363","_from":"2863","_to":"70708"} +{"$label":"ACTS_IN","name":"Jerome","type":"Role","_key":"56769","_from":"2863","_to":"36060"} +{"$label":"ACTS_IN","name":"Regu","type":"Role","_key":"22877","_from":"2864","_to":"16575"} +{"$label":"ACTS_IN","name":"Melchior","type":"Role","_key":"21448","_from":"2864","_to":"15682"} +{"$label":"ACTS_IN","name":"Rajiv","type":"Role","_key":"41009","_from":"2866","_to":"27583"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"116658","_from":"2867","_to":"68665"} +{"$label":"ACTS_IN","name":"Sir John Conroy","type":"Role","_key":"115818","_from":"2867","_to":"68180"} +{"$label":"ACTS_IN","name":"Archy","type":"Role","_key":"96798","_from":"2867","_to":"56924"} +{"$label":"ACTS_IN","name":"Manny Miesel","type":"Role","_key":"96712","_from":"2867","_to":"56883"} +{"$label":"ACTS_IN","name":"Bouhler","type":"Role","_key":"89343","_from":"2867","_to":"52881"} +{"$label":"ACTS_IN","name":"Mr. Knightley","type":"Role","_key":"89067","_from":"2867","_to":"52764"} +{"$label":"ACTS_IN","name":"Hani","type":"Role","_key":"88096","_from":"2867","_to":"52284"} +{"$label":"ACTS_IN","name":"Sorter","type":"Role","_key":"66237","_from":"2867","_to":"40976"} +{"$label":"ACTS_IN","name":"Lord Blackwood","type":"Role","_key":"63864","_from":"2867","_to":"39907"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"53477","_from":"2867","_to":"34540"} +{"$label":"ACTS_IN","name":"Septimus","type":"Role","_key":"19961","_from":"2867","_to":"14696"} +{"$label":"ACTS_IN","name":"Dusty","type":"Role","_key":"15491","_from":"2867","_to":"11830"} +{"$label":"ACTS_IN","name":"Pinbacker","type":"Role","_key":"12430","_from":"2867","_to":"9736"} +{"$label":"ACTS_IN","name":"Hooker on Strip","type":"Role","_key":"3357","_from":"2875","_to":"2869"} +{"$label":"ACTS_IN","name":"Mr. Harrigan","type":"Role","_key":"3353","_from":"2874","_to":"2869"} +{"$label":"ACTS_IN","name":"B.J. Jackson (as Christopher Penn)","type":"Role","_key":"3351","_from":"2873","_to":"2869"} +{"$label":"ACTS_IN","name":"Smokey","type":"Role","_key":"3350","_from":"2872","_to":"2869"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"3349","_from":"2871","_to":"2869"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"3348","_from":"2870","_to":"2869"} +{"$label":"ACTS_IN","name":"Bess Truman","type":"Role","_key":"110395","_from":"2870","_to":"65230"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"105336","_from":"2870","_to":"61980"} +{"$label":"ACTS_IN","name":"Maureen Coyle","type":"Role","_key":"90891","_from":"2870","_to":"53624"} +{"$label":"ACTS_IN","name":"Sandra Cooper","type":"Role","_key":"54827","_from":"2870","_to":"35077"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"44841","_from":"2870","_to":"29826"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"22525","_from":"2870","_to":"16367"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"13087","_from":"2870","_to":"10201"} +{"$label":"ACTS_IN","name":"Zophael","type":"Role","_key":"51987","_from":"2871","_to":"33900"} +{"$label":"ACTS_IN","name":"Antonio Balbi","type":"Role","_key":"46407","_from":"2871","_to":"30656"} +{"$label":"ACTS_IN","name":"Nick Rinaldi","type":"Role","_key":"15423","_from":"2871","_to":"11790"} +{"$label":"ACTS_IN","name":"Speckles the Mole (voice)","type":"Role","_key":"120471","_from":"2872","_to":"70764"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"118552","_from":"2872","_to":"69706"} +{"$label":"ACTS_IN","name":"Dr. Tenma (voice)","type":"Role","_key":"109567","_from":"2872","_to":"64719"} +{"$label":"ACTS_IN","name":"John Koestler","type":"Role","_key":"96801","_from":"2872","_to":"56926"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"93284","_from":"2872","_to":"54950"} +{"$label":"ACTS_IN","name":"Jack Singer","type":"Role","_key":"90012","_from":"2872","_to":"53250"} +{"$label":"ACTS_IN","name":"Sergeant Joe Enders","type":"Role","_key":"88020","_from":"2872","_to":"52256"} +{"$label":"ACTS_IN","name":"Terence McDonagh","type":"Role","_key":"71640","_from":"2872","_to":"43379"} +{"$label":"ACTS_IN","name":"Sergeant Al Columbato","type":"Role","_key":"68971","_from":"2872","_to":"42225"} +{"$label":"ACTS_IN","name":"Charlie Lang","type":"Role","_key":"64886","_from":"2872","_to":"40352"} +{"$label":"ACTS_IN","name":"Michael Williams","type":"Role","_key":"63230","_from":"2872","_to":"39650"} +{"$label":"ACTS_IN","name":"Charlie Bodell","type":"Role","_key":"59444","_from":"2872","_to":"37549"} +{"$label":"ACTS_IN","name":"Zoc","type":"Role","_key":"57834","_from":"2872","_to":"36606"} +{"$label":"ACTS_IN","name":"Dr. Stanley Goodspeed","type":"Role","_key":"56947","_from":"2872","_to":"36143"} +{"$label":"ACTS_IN","name":"Edward Malus","type":"Role","_key":"55909","_from":"2872","_to":"35563"} +{"$label":"ACTS_IN","name":"Randall 'Memphis' Raines","type":"Role","_key":"55505","_from":"2872","_to":"35364"} +{"$label":"ACTS_IN","name":"Rick Santoro","type":"Role","_key":"50451","_from":"2872","_to":"32956"} +{"$label":"ACTS_IN","name":"Frank Pierce","type":"Role","_key":"50307","_from":"2872","_to":"32867"} +{"$label":"ACTS_IN","name":"Tom Welles","type":"Role","_key":"48575","_from":"2872","_to":"31873"} +{"$label":"ACTS_IN","name":"Roy Waller","type":"Role","_key":"46136","_from":"2872","_to":"30486"} +{"$label":"ACTS_IN","name":"Peter Loew","type":"Role","_key":"45776","_from":"2872","_to":"30289"} +{"$label":"ACTS_IN","name":"David Spritz","type":"Role","_key":"45381","_from":"2872","_to":"30092"} +{"$label":"ACTS_IN","name":"Ben Gates","type":"Role","_key":"44489","_from":"2872","_to":"29641"} +{"$label":"ACTS_IN","name":"Doug Chesnic","type":"Role","_key":"43559","_from":"2872","_to":"29097"} +{"$label":"ACTS_IN","name":"Jake Preston","type":"Role","_key":"43546","_from":"2872","_to":"29090"} +{"$label":"ACTS_IN","name":"Little Junior Brown","type":"Role","_key":"41471","_from":"2872","_to":"27872"} +{"$label":"ACTS_IN","name":"Jack Campbell","type":"Role","_key":"40943","_from":"2872","_to":"27547"} +{"$label":"ACTS_IN","name":"Charlie\/Donald Kaufman","type":"Role","_key":"23308","_from":"2872","_to":"16899"} +{"$label":"ACTS_IN","name":"Vincent Dwyer","type":"Role","_key":"18723","_from":"2872","_to":"13856"} +{"$label":"ACTS_IN","name":"Ben Gates","type":"Role","_key":"17903","_from":"2872","_to":"13324"} +{"$label":"ACTS_IN","name":"Ronny Cammareri","type":"Role","_key":"17765","_from":"2872","_to":"13252"} +{"$label":"ACTS_IN","name":"John McLoughlin","type":"Role","_key":"15995","_from":"2872","_to":"12161"} +{"$label":"ACTS_IN","name":"Yuri Orlov","type":"Role","_key":"15789","_from":"2872","_to":"12028"} +{"$label":"ACTS_IN","name":"Cris Johnson","type":"Role","_key":"15364","_from":"2872","_to":"11754"} +{"$label":"ACTS_IN","name":"Captain Antonio Corelli","type":"Role","_key":"15237","_from":"2872","_to":"11670"} +{"$label":"ACTS_IN","name":"Cameron Poe","type":"Role","_key":"15073","_from":"2872","_to":"11583"} +{"$label":"ACTS_IN","name":"Johnny Blaze\/Ghost Rider","type":"Role","_key":"12224","_from":"2872","_to":"9573"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"9377","_from":"2872","_to":"7568"} +{"$label":"ACTS_IN","name":"Castor Troy","type":"Role","_key":"8853","_from":"2872","_to":"7192"} +{"$label":"ACTS_IN","name":"Sailor Ripley","type":"Role","_key":"5919","_from":"2872","_to":"5031"} +{"$label":"ACTS_IN","name":"Ben Sanderson","type":"Role","_key":"5593","_from":"2872","_to":"4770"} +{"$label":"ACTS_IN","name":"H.I. McDunnough","type":"Role","_key":"4878","_from":"2872","_to":"4171"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"116184","_from":"2873","_to":"68405"} +{"$label":"ACTS_IN","name":"Travis Brickley","type":"Role","_key":"114200","_from":"2873","_to":"67268"} +{"$label":"ACTS_IN","name":"Peter Romano","type":"Role","_key":"113722","_from":"2873","_to":"67018"} +{"$label":"ACTS_IN","name":"Detective Phillip Braxton","type":"Role","_key":"100929","_from":"2873","_to":"59495"} +{"$label":"ACTS_IN","name":"Tommy Whitewood","type":"Role","_key":"96046","_from":"2873","_to":"56457"} +{"$label":"ACTS_IN","name":"David Loach","type":"Role","_key":"91432","_from":"2873","_to":"53926"} +{"$label":"ACTS_IN","name":"Arthur Relyea","type":"Role","_key":"67126","_from":"2873","_to":"41425"} +{"$label":"ACTS_IN","name":"Rowdy Fan","type":"Role","_key":"64290","_from":"2873","_to":"40082"} +{"$label":"ACTS_IN","name":"Josh LaHood","type":"Role","_key":"51241","_from":"2873","_to":"33417"} +{"$label":"ACTS_IN","name":"Clive Cod","type":"Role","_key":"18391","_from":"2873","_to":"13635"} +{"$label":"ACTS_IN","name":"Willard Hewitt","type":"Role","_key":"15534","_from":"2873","_to":"11863"} +{"$label":"ACTS_IN","name":"Jerry Kaiser","type":"Role","_key":"8372","_from":"2873","_to":"6847"} +{"$label":"ACTS_IN","name":"Nice Guy Eddie Cabot","type":"Role","_key":"6041","_from":"2873","_to":"5129"} +{"$label":"ACTS_IN","name":"Neville","type":"Role","_key":"111704","_from":"2874","_to":"65947"} +{"$label":"ACTS_IN","name":"Reynolds","type":"Role","_key":"48867","_from":"2874","_to":"32041"} +{"$label":"ACTS_IN","name":"Doctor Fowler","type":"Role","_key":"7563","_from":"2874","_to":"6291"} +{"$label":"ACTS_IN","name":"Terri Perri","type":"Role","_key":"3379","_from":"2894","_to":"2876"} +{"$label":"ACTS_IN","name":"Peppy Dio","type":"Role","_key":"3378","_from":"2893","_to":"2876"} +{"$label":"ACTS_IN","name":"Joey's Mom","type":"Role","_key":"3377","_from":"2892","_to":"2876"} +{"$label":"ACTS_IN","name":"Teddy Wong","type":"Role","_key":"3376","_from":"2891","_to":"2876"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"3375","_from":"2890","_to":"2876"} +{"$label":"ACTS_IN","name":"Marine Recruiter","type":"Role","_key":"3374","_from":"2889","_to":"2876"} +{"$label":"ACTS_IN","name":"Chubby Galasso","type":"Role","_key":"3372","_from":"2888","_to":"2876"} +{"$label":"ACTS_IN","name":"Mr. Sharp","type":"Role","_key":"3371","_from":"2887","_to":"2876"} +{"$label":"ACTS_IN","name":"Terror","type":"Role","_key":"3370","_from":"2886","_to":"2876"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"3369","_from":"2885","_to":"2876"} +{"$label":"ACTS_IN","name":"Peewee","type":"Role","_key":"3368","_from":"2884","_to":"2876"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"3367","_from":"2883","_to":"2876"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"3366","_from":"2882","_to":"2876"} +{"$label":"ACTS_IN","name":"Turkey","type":"Role","_key":"3365","_from":"2881","_to":"2876"} +{"$label":"ACTS_IN","name":"Despie Galasso","type":"Role","_key":"3364","_from":"2880","_to":"2876"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"3362","_from":"2879","_to":"2876"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"3361","_from":"2878","_to":"2876"} +{"$label":"DIRECTED","_key":"3360","_from":"2877","_to":"2876"} +{"$label":"DIRECTED","_key":"114590","_from":"2877","_to":"67500"} +{"$label":"DIRECTED","_key":"95272","_from":"2877","_to":"56056"} +{"$label":"DIRECTED","_key":"72356","_from":"2877","_to":"43697"} +{"$label":"DIRECTED","_key":"66421","_from":"2877","_to":"41070"} +{"$label":"DIRECTED","_key":"64804","_from":"2877","_to":"40321"} +{"$label":"DIRECTED","_key":"54615","_from":"2877","_to":"34982"} +{"$label":"DIRECTED","_key":"45628","_from":"2877","_to":"30210"} +{"$label":"DIRECTED","_key":"45414","_from":"2877","_to":"30103"} +{"$label":"ACTS_IN","name":"Zorich","type":"Role","_key":"30809","_from":"2879","_to":"21596"} +{"$label":"ACTS_IN","name":"Meat","type":"Role","_key":"61918","_from":"2883","_to":"38961"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"109710","_from":"2884","_to":"64794"} +{"$label":"ACTS_IN","name":"Dynamo","type":"Role","_key":"10287","_from":"2886","_to":"8188"} +{"$label":"ACTS_IN","name":"Louie the Bartender","type":"Role","_key":"115996","_from":"2887","_to":"68313"} +{"$label":"ACTS_IN","name":"Jim McCarthy","type":"Role","_key":"8845","_from":"2887","_to":"7183"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"115136","_from":"2892","_to":"67802"} +{"$label":"ACTS_IN","name":"Madam Chairwoman, Armed Services Committee","type":"Role","_key":"100275","_from":"2892","_to":"59133"} +{"$label":"ACTS_IN","name":"Margie Carsen","type":"Role","_key":"99071","_from":"2892","_to":"58364"} +{"$label":"ACTS_IN","name":"Phyllis","type":"Role","_key":"92305","_from":"2892","_to":"54472"} +{"$label":"ACTS_IN","name":"Mother Babette","type":"Role","_key":"72883","_from":"2892","_to":"43899"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"54239","_from":"2892","_to":"34831"} +{"$label":"ACTS_IN","name":"Rita Mosley","type":"Role","_key":"53715","_from":"2892","_to":"34635"} +{"$label":"ACTS_IN","name":"Sophia Vitello","type":"Role","_key":"45456","_from":"2892","_to":"30120"} +{"$label":"ACTS_IN","name":"Personaldirektor","type":"Role","_key":"27625","_from":"2892","_to":"19802"} +{"$label":"ACTS_IN","name":"Principal Helen Jacobi","type":"Role","_key":"17848","_from":"2892","_to":"13293"} +{"$label":"ACTS_IN","name":"Rose Castorini","type":"Role","_key":"17767","_from":"2892","_to":"13252"} +{"$label":"ACTS_IN","name":"Marian","type":"Role","_key":"16595","_from":"2892","_to":"12537"} +{"$label":"ACTS_IN","name":"Dr. Caligari","type":"Role","_key":"3387","_from":"2902","_to":"2895"} +{"$label":"ACTS_IN","name":"Dr. Olsen","type":"Role","_key":"3385","_from":"2901","_to":"2895"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"3384","_from":"2900","_to":"2895"} +{"$label":"ACTS_IN","name":"Jane Olsen","type":"Role","_key":"3383","_from":"2899","_to":"2895"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"3382","_from":"2898","_to":"2895"} +{"$label":"ACTS_IN","name":"Cesare","type":"Role","_key":"3381","_from":"2897","_to":"2895"} +{"$label":"DIRECTED","_key":"3380","_from":"2896","_to":"2895"} +{"$label":"DIRECTED","_key":"24591","_from":"2896","_to":"17795"} +{"$label":"ACTS_IN","name":"Jaffar","type":"Role","_key":"88866","_from":"2897","_to":"52654"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"41850","_from":"2897","_to":"28078"} +{"$label":"ACTS_IN","name":"Mr. O`Connor","type":"Role","_key":"24980","_from":"2897","_to":"18044"} +{"$label":"ACTS_IN","name":"Orlac","type":"Role","_key":"24592","_from":"2897","_to":"17795"} +{"$label":"ACTS_IN","name":"Maj. Strasser","type":"Role","_key":"4046","_from":"2897","_to":"3450"} +{"$label":"ACTS_IN","name":"German officer with Yvonne","type":"Role","_key":"4057","_from":"2900","_to":"3450"} +{"$label":"ACTS_IN","name":"Josef Geiringer","type":"Role","_key":"49933","_from":"2902","_to":"32690"} +{"$label":"ACTS_IN","name":"Rabbi Loew","type":"Role","_key":"49582","_from":"2902","_to":"32460"} +{"$label":"ACTS_IN","name":"Wilhelm Hartmann","type":"Role","_key":"44421","_from":"2902","_to":"29590"} +{"$label":"ACTS_IN","name":"Robespierre","type":"Role","_key":"30143","_from":"2902","_to":"21242"} +{"$label":"ACTS_IN","name":"Mayor Grundy","type":"Role","_key":"3404","_from":"2916","_to":"2903"} +{"$label":"ACTS_IN","name":"Milo Pressman","type":"Role","_key":"3403","_from":"2915","_to":"2903"} +{"$label":"ACTS_IN","name":"Mr. Quidacioluo","type":"Role","_key":"3402","_from":"2914","_to":"2903"} +{"$label":"ACTS_IN","name":"Mr. Lachance","type":"Role","_key":"3400","_from":"2913","_to":"2903"} +{"$label":"ACTS_IN","name":"Vince Desjardins","type":"Role","_key":"3399","_from":"2912","_to":"2903"} +{"$label":"ACTS_IN","name":"Eyeball Chambers","type":"Role","_key":"3398","_from":"2911","_to":"2903"} +{"$label":"ACTS_IN","name":"Charlie Hogan","type":"Role","_key":"3397","_from":"2910","_to":"2903"} +{"$label":"ACTS_IN","name":"Gordon Lachance als Erwachsener","type":"Role","_key":"3395","_from":"2909","_to":"2903"} +{"$label":"ACTS_IN","name":"Denny Lachance","type":"Role","_key":"3394","_from":"2908","_to":"2903"} +{"$label":"ACTS_IN","name":"Vern Tessio","type":"Role","_key":"3392","_from":"2907","_to":"2903"} +{"$label":"ACTS_IN","name":"Teddy Duchamp","type":"Role","_key":"3391","_from":"2906","_to":"2903"} +{"$label":"ACTS_IN","name":"Gordie Lachance","type":"Role","_key":"3389","_from":"2905","_to":"2903"} +{"$label":"DIRECTED","_key":"3388","_from":"2904","_to":"2903"} +{"$label":"DIRECTED","_key":"114059","_from":"2904","_to":"67169"} +{"$label":"DIRECTED","_key":"88788","_from":"2904","_to":"52605"} +{"$label":"DIRECTED","_key":"67446","_from":"2904","_to":"41533"} +{"$label":"DIRECTED","_key":"52490","_from":"2904","_to":"34144"} +{"$label":"DIRECTED","_key":"51891","_from":"2904","_to":"33850"} +{"$label":"DIRECTED","_key":"46600","_from":"2904","_to":"30782"} +{"$label":"DIRECTED","_key":"23677","_from":"2904","_to":"17164"} +{"$label":"DIRECTED","_key":"21698","_from":"2904","_to":"15866"} +{"$label":"DIRECTED","_key":"15063","_from":"2904","_to":"11579"} +{"$label":"DIRECTED","_key":"10479","_from":"2904","_to":"8340"} +{"$label":"DIRECTED","_key":"7638","_from":"2904","_to":"6355"} +{"$label":"ACTS_IN","name":"Screwie (voice)","type":"Role","_key":"103617","_from":"2904","_to":"60944"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96485","_from":"2904","_to":"56725"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"88776","_from":"2904","_to":"52605"} +{"$label":"ACTS_IN","name":"Marty DiBergi","type":"Role","_key":"67418","_from":"2904","_to":"41533"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"15070","_from":"2904","_to":"11579"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"10203","_from":"2904","_to":"8139"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105961","_from":"2905","_to":"62384"} +{"$label":"ACTS_IN","name":"Joseph 'Joey' Trotta","type":"Role","_key":"65444","_from":"2905","_to":"40572"} +{"$label":"ACTS_IN","name":"Bobby Keller","type":"Role","_key":"103336","_from":"2906","_to":"60792"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96481","_from":"2906","_to":"56725"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"96016","_from":"2906","_to":"56441"} +{"$label":"ACTS_IN","name":"Edgar Frog","type":"Role","_key":"94772","_from":"2906","_to":"55817"} +{"$label":"ACTS_IN","name":"Ricky Butler","type":"Role","_key":"73090","_from":"2906","_to":"43971"} +{"$label":"ACTS_IN","name":"Tommy Jarvis","type":"Role","_key":"56149","_from":"2906","_to":"35690"} +{"$label":"ACTS_IN","name":"Clark 'Mouth' Devereaux","type":"Role","_key":"53215","_from":"2906","_to":"34420"} +{"$label":"ACTS_IN","name":"Edgar Frog","type":"Role","_key":"13693","_from":"2906","_to":"10632"} +{"$label":"ACTS_IN","name":"Donatello (Voice)","type":"Role","_key":"13569","_from":"2906","_to":"10547"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"115023","_from":"2907","_to":"67733"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"111919","_from":"2907","_to":"66069"} +{"$label":"ACTS_IN","name":"Businessman","type":"Role","_key":"102553","_from":"2907","_to":"60336"} +{"$label":"ACTS_IN","name":"Michael Penorisi","type":"Role","_key":"100493","_from":"2907","_to":"59260"} +{"$label":"ACTS_IN","name":"David Collins","type":"Role","_key":"93080","_from":"2907","_to":"54870"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"73011","_from":"2907","_to":"43939"} +{"$label":"ACTS_IN","name":"Michael Delaney jack","type":"Role","_key":"64810","_from":"2907","_to":"40325"} +{"$label":"ACTS_IN","name":"Charlie Carbone","type":"Role","_key":"64695","_from":"2907","_to":"40292"} +{"$label":"ACTS_IN","name":"Lucas Dylan","type":"Role","_key":"60040","_from":"2907","_to":"37890"} +{"$label":"ACTS_IN","name":"David Lilly","type":"Role","_key":"56740","_from":"2907","_to":"36041"} +{"$label":"ACTS_IN","name":"Derek Feldman","type":"Role","_key":"30288","_from":"2907","_to":"21313"} +{"$label":"ACTS_IN","name":"Phil Ohlmyer","type":"Role","_key":"17985","_from":"2907","_to":"13369"} +{"$label":"ACTS_IN","name":"Roy Dillon","type":"Role","_key":"114992","_from":"2908","_to":"67722"} +{"$label":"ACTS_IN","name":"Myrl Redding","type":"Role","_key":"108759","_from":"2908","_to":"64292"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"103347","_from":"2908","_to":"60795"} +{"$label":"ACTS_IN","name":"Dan Bartlett","type":"Role","_key":"100451","_from":"2908","_to":"59228"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"99272","_from":"2908","_to":"58502"} +{"$label":"ACTS_IN","name":"Jackson Curtis","type":"Role","_key":"98808","_from":"2908","_to":"58224"} +{"$label":"ACTS_IN","name":"Lane Meyer","type":"Role","_key":"95772","_from":"2908","_to":"56331"} +{"$label":"ACTS_IN","name":"Peter Burton","type":"Role","_key":"95268","_from":"2908","_to":"56055"} +{"$label":"ACTS_IN","name":"Max Rothman","type":"Role","_key":"95212","_from":"2908","_to":"56018"} +{"$label":"ACTS_IN","name":"George 'Buck' Weaver","type":"Role","_key":"95181","_from":"2908","_to":"56003"} +{"$label":"ACTS_IN","name":"Brand Hauser","type":"Role","_key":"93353","_from":"2908","_to":"54992"} +{"$label":"ACTS_IN","name":"Nick Falzone","type":"Role","_key":"90518","_from":"2908","_to":"53474"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"71275","_from":"2908","_to":"43243"} +{"$label":"ACTS_IN","name":"Eddie Thomas","type":"Role","_key":"70041","_from":"2908","_to":"42709"} +{"$label":"ACTS_IN","name":"David Shayne","type":"Role","_key":"69519","_from":"2908","_to":"42465"} +{"$label":"ACTS_IN","name":"Nicholas Easter","type":"Role","_key":"69170","_from":"2908","_to":"42305"} +{"$label":"ACTS_IN","name":"Stanley Philipps","type":"Role","_key":"68221","_from":"2908","_to":"41893"} +{"$label":"ACTS_IN","name":"Deputy Mayor Kevin Calhoun","type":"Role","_key":"67635","_from":"2908","_to":"41624"} +{"$label":"ACTS_IN","name":"Charles Ossining","type":"Role","_key":"63493","_from":"2908","_to":"39759"} +{"$label":"ACTS_IN","name":"Jonathan Trager","type":"Role","_key":"56637","_from":"2908","_to":"35977"} +{"$label":"ACTS_IN","name":"Dimitri","type":"Role","_key":"53902","_from":"2908","_to":"34698"} +{"$label":"ACTS_IN","name":"Martin Q. Blank","type":"Role","_key":"53831","_from":"2908","_to":"34677"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"51958","_from":"2908","_to":"33889"} +{"$label":"ACTS_IN","name":"Walter (Gib) Gibson","type":"Role","_key":"51885","_from":"2908","_to":"33850"} +{"$label":"ACTS_IN","name":"Capt. Gaff","type":"Role","_key":"50634","_from":"2908","_to":"33066"} +{"$label":"ACTS_IN","name":"John Kelso","type":"Role","_key":"48327","_from":"2908","_to":"31735"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"36023","_from":"2908","_to":"24460"} +{"$label":"ACTS_IN","name":"Mike Enslin","type":"Role","_key":"25024","_from":"2908","_to":"18080"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"23842","_from":"2908","_to":"17287"} +{"$label":"ACTS_IN","name":"Lloyd Dobler","type":"Role","_key":"17645","_from":"2908","_to":"13169"} +{"$label":"ACTS_IN","name":"Marshal Vince Larkin","type":"Role","_key":"15074","_from":"2908","_to":"11583"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"13331","_from":"2908","_to":"10382"} +{"$label":"ACTS_IN","name":"Craig Schwartz","type":"Role","_key":"5984","_from":"2908","_to":"5081"} +{"$label":"ACTS_IN","name":"Rob Gordon","type":"Role","_key":"3527","_from":"2908","_to":"3015"} +{"$label":"ACTS_IN","name":"Bobby Bartellemeo \/ Narrator","type":"Role","_key":"118927","_from":"2909","_to":"69895"} +{"$label":"ACTS_IN","name":"Jay Trotter","type":"Role","_key":"118761","_from":"2909","_to":"69835"} +{"$label":"ACTS_IN","name":"The Player","type":"Role","_key":"118314","_from":"2909","_to":"69547"} +{"$label":"ACTS_IN","name":"Chuck Raven","type":"Role","_key":"117215","_from":"2909","_to":"68952"} +{"$label":"ACTS_IN","name":"Man on sidewalk talking to girl in red sweater (uncredited)","type":"Role","_key":"115267","_from":"2909","_to":"67870"} +{"$label":"ACTS_IN","name":"Elliot Garfield","type":"Role","_key":"101572","_from":"2909","_to":"59785"} +{"$label":"ACTS_IN","name":"Pug Rothbaum","type":"Role","_key":"91793","_from":"2909","_to":"54152"} +{"$label":"ACTS_IN","name":"Pete Sandich","type":"Role","_key":"69300","_from":"2909","_to":"42371"} +{"$label":"ACTS_IN","name":"Bill 'BB' Babowsky","type":"Role","_key":"66515","_from":"2909","_to":"41126"} +{"$label":"ACTS_IN","name":"Det. Chris Lecce","type":"Role","_key":"66324","_from":"2909","_to":"41029"} +{"$label":"ACTS_IN","name":"Tausendf\u00fcssler","type":"Role","_key":"63935","_from":"2909","_to":"39934"} +{"$label":"ACTS_IN","name":"Dick Cheney","type":"Role","_key":"63831","_from":"2909","_to":"39901"} +{"$label":"ACTS_IN","name":"Dr. Leo Marvin","type":"Role","_key":"62335","_from":"2909","_to":"39279"} +{"$label":"ACTS_IN","name":"David 'Dave' Whiteman","type":"Role","_key":"58301","_from":"2909","_to":"36865"} +{"$label":"ACTS_IN","name":"Det. Chris Lecce","type":"Role","_key":"53696","_from":"2909","_to":"34630"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26741","_from":"2909","_to":"19220"} +{"$label":"ACTS_IN","name":"Glenn Holland","type":"Role","_key":"17845","_from":"2909","_to":"13293"} +{"$label":"ACTS_IN","name":"Roy Neary","type":"Role","_key":"9914","_from":"2909","_to":"7948"} +{"$label":"ACTS_IN","name":"Curt Henderson","type":"Role","_key":"9890","_from":"2909","_to":"7929"} +{"$label":"ACTS_IN","name":"Matt Hooper","type":"Role","_key":"6906","_from":"2909","_to":"5794"} +{"$label":"ACTS_IN","name":"Richard Nelson","type":"Role","_key":"6076","_from":"2909","_to":"5157"} +{"$label":"ACTS_IN","name":"Bobby Cogdill","type":"Role","_key":"105202","_from":"2911","_to":"61913"} +{"$label":"ACTS_IN","name":"Leshing","type":"Role","_key":"98255","_from":"2913","_to":"57880"} +{"$label":"ACTS_IN","name":"Carl Mace","type":"Role","_key":"95359","_from":"2913","_to":"56098"} +{"$label":"ACTS_IN","name":"Principal Rocker","type":"Role","_key":"90672","_from":"2913","_to":"53527"} +{"$label":"ACTS_IN","name":"Amy's Dad","type":"Role","_key":"60043","_from":"2913","_to":"37890"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"58519","_from":"2913","_to":"36982"} +{"$label":"ACTS_IN","name":"Admiral","type":"Role","_key":"58435","_from":"2913","_to":"36932"} +{"$label":"ACTS_IN","name":"Gil Reynolds","type":"Role","_key":"36675","_from":"2913","_to":"24857"} +{"$label":"ACTS_IN","name":"Staatsanwalt","type":"Role","_key":"23853","_from":"2913","_to":"17287"} +{"$label":"ACTS_IN","name":"George\/Kuato","type":"Role","_key":"10238","_from":"2913","_to":"8163"} +{"$label":"ACTS_IN","name":"David Van Arckle","type":"Role","_key":"3419","_from":"2931","_to":"2917"} +{"$label":"ACTS_IN","name":"Coach Ken Blundell","type":"Role","_key":"3418","_from":"2930","_to":"2917"} +{"$label":"ACTS_IN","name":"Brice Nobes","type":"Role","_key":"3417","_from":"2929","_to":"2917"} +{"$label":"ACTS_IN","name":"Deidre Chambers","type":"Role","_key":"3416","_from":"2928","_to":"2917"} +{"$label":"ACTS_IN","name":"Joanie Heslop","type":"Role","_key":"3415","_from":"2927","_to":"2917"} +{"$label":"ACTS_IN","name":"Perry Heslop","type":"Role","_key":"3414","_from":"2926","_to":"2917"} +{"$label":"ACTS_IN","name":"Betty Heslop","type":"Role","_key":"3413","_from":"2925","_to":"2917"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"3412","_from":"2924","_to":"2917"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"3411","_from":"2923","_to":"2917"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"3410","_from":"2922","_to":"2917"} +{"$label":"ACTS_IN","name":"Tania Degano","type":"Role","_key":"3409","_from":"2921","_to":"2917"} +{"$label":"ACTS_IN","name":"Rhonda Epinstalk","type":"Role","_key":"3408","_from":"2920","_to":"2917"} +{"$label":"ACTS_IN","name":"Muriel Heslop \/ Mariel Heslop-Van Arckle","type":"Role","_key":"3406","_from":"2919","_to":"2917"} +{"$label":"DIRECTED","_key":"3405","_from":"2918","_to":"2917"} +{"$label":"DIRECTED","_key":"64450","_from":"2918","_to":"40159"} +{"$label":"DIRECTED","_key":"51207","_from":"2918","_to":"33396"} +{"$label":"ACTS_IN","name":"Wendy Robinson","type":"Role","_key":"110683","_from":"2919","_to":"65381"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"105405","_from":"2919","_to":"62019"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"96954","_from":"2919","_to":"57027"} +{"$label":"ACTS_IN","name":"Arden","type":"Role","_key":"95163","_from":"2919","_to":"55998"} +{"$label":"ACTS_IN","name":"Rose Feller","type":"Role","_key":"72808","_from":"2919","_to":"43867"} +{"$label":"ACTS_IN","name":"Griselda","type":"Role","_key":"69189","_from":"2919","_to":"42313"} +{"$label":"ACTS_IN","name":"Melina","type":"Role","_key":"61563","_from":"2919","_to":"38809"} +{"$label":"ACTS_IN","name":"Donna D. Logand","type":"Role","_key":"56695","_from":"2919","_to":"36013"} +{"$label":"ACTS_IN","name":"Maggie Mollison","type":"Role","_key":"50684","_from":"2919","_to":"33088"} +{"$label":"ACTS_IN","name":"Nina Mars","type":"Role","_key":"41261","_from":"2919","_to":"27749"} +{"$label":"ACTS_IN","name":"Harriet Smith","type":"Role","_key":"27991","_from":"2919","_to":"20074"} +{"$label":"ACTS_IN","name":"Mandy Slade","type":"Role","_key":"15627","_from":"2919","_to":"11924"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"13613","_from":"2919","_to":"10583"} +{"$label":"ACTS_IN","name":"Sheryl","type":"Role","_key":"9107","_from":"2919","_to":"7360"} +{"$label":"ACTS_IN","name":"Lynn Sear","type":"Role","_key":"8699","_from":"2919","_to":"7056"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"7083","_from":"2919","_to":"5922"} +{"$label":"ACTS_IN","name":"Diane Palmieri","type":"Role","_key":"5879","_from":"2919","_to":"4990"} +{"$label":"ACTS_IN","name":"Fiona Brewer","type":"Role","_key":"3543","_from":"2919","_to":"3028"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"111514","_from":"2920","_to":"65842"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"108619","_from":"2920","_to":"64191"} +{"$label":"ACTS_IN","name":"Lorri Morris","type":"Role","_key":"101211","_from":"2920","_to":"59618"} +{"$label":"ACTS_IN","name":"Constable Anna Welch","type":"Role","_key":"58865","_from":"2920","_to":"37175"} +{"$label":"ACTS_IN","name":"Director Gordon","type":"Role","_key":"56410","_from":"2920","_to":"35840"} +{"$label":"ACTS_IN","name":"Ermine Jung","type":"Role","_key":"29708","_from":"2920","_to":"21034"} +{"$label":"ACTS_IN","name":"Tracy Kerrigan","type":"Role","_key":"97208","_from":"2921","_to":"57181"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"96629","_from":"2921","_to":"56832"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"96419","_from":"2921","_to":"56686"} +{"$label":"ACTS_IN","name":"Kathleen Whitta","type":"Role","_key":"97448","_from":"2922","_to":"57379"} +{"$label":"ACTS_IN","name":"Miss Nolan","type":"Role","_key":"36716","_from":"2922","_to":"24888"} +{"$label":"ACTS_IN","name":"Robert Greenhill","type":"Role","_key":"106819","_from":"2926","_to":"62970"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"96630","_from":"2926","_to":"56832"} +{"$label":"ACTS_IN","name":"Cackles","type":"Role","_key":"63086","_from":"2926","_to":"39579"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"107976","_from":"2929","_to":"63771"} +{"$label":"ACTS_IN","name":"Jerry Burke","type":"Role","_key":"6225","_from":"2929","_to":"5259"} +{"$label":"ACTS_IN","name":"Robert Knopwood","type":"Role","_key":"106822","_from":"2930","_to":"62970"} +{"$label":"ACTS_IN","name":"Corporal Sharp","type":"Role","_key":"96560","_from":"2930","_to":"56784"} +{"$label":"ACTS_IN","name":"Major Ashley-Pitt","type":"Role","_key":"54870","_from":"2930","_to":"35091"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"33252","_from":"2930","_to":"23031"} +{"$label":"ACTS_IN","name":"Scott Wright","type":"Role","_key":"109116","_from":"2931","_to":"64469"} +{"$label":"ACTS_IN","name":"Marc the Doorman","type":"Role","_key":"28467","_from":"2931","_to":"20352"} +{"$label":"ACTS_IN","name":"Mrs. Gordon","type":"Role","_key":"3434","_from":"2943","_to":"2932"} +{"$label":"ACTS_IN","name":"Freight Supervisor","type":"Role","_key":"3432","_from":"2942","_to":"2932"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"3431","_from":"2941","_to":"2932"} +{"$label":"ACTS_IN","name":"Bob M'bussi","type":"Role","_key":"3430","_from":"2940","_to":"2932"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"3429","_from":"2939","_to":"2932"} +{"$label":"ACTS_IN","name":"Daniel Gordon","type":"Role","_key":"3427","_from":"2938","_to":"2932"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"3426","_from":"2937","_to":"2932"} +{"$label":"ACTS_IN","name":"Jim Gault","type":"Role","_key":"3425","_from":"2936","_to":"2932"} +{"$label":"ACTS_IN","name":"Les Gault","type":"Role","_key":"3423","_from":"2935","_to":"2932"} +{"$label":"ACTS_IN","name":"Ella Gault","type":"Role","_key":"3422","_from":"2934","_to":"2932"} +{"$label":"DIRECTED","_key":"3420","_from":"2933","_to":"2932"} +{"$label":"DIRECTED","_key":"121486","_from":"2933","_to":"71364"} +{"$label":"DIRECTED","_key":"19550","_from":"2933","_to":"14466"} +{"$label":"ACTS_IN","name":"The White Witch","type":"Role","_key":"61196","_from":"2934","_to":"38660"} +{"$label":"ACTS_IN","name":"Orlando","type":"Role","_key":"52985","_from":"2934","_to":"34323"} +{"$label":"ACTS_IN","name":"Blonde","type":"Role","_key":"48821","_from":"2934","_to":"32020"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"46609","_from":"2934","_to":"30786"} +{"$label":"ACTS_IN","name":"Muriel Belcher","type":"Role","_key":"35258","_from":"2934","_to":"24006"} +{"$label":"ACTS_IN","name":"Katie Cox","type":"Role","_key":"35019","_from":"2934","_to":"23900"} +{"$label":"ACTS_IN","name":"Elizabeth Abbott","type":"Role","_key":"34779","_from":"2934","_to":"23771"} +{"$label":"ACTS_IN","name":"Karen Crowder","type":"Role","_key":"32756","_from":"2934","_to":"22745"} +{"$label":"ACTS_IN","name":"Valerie Thomas","type":"Role","_key":"23311","_from":"2934","_to":"16899"} +{"$label":"ACTS_IN","name":"White Witch","type":"Role","_key":"21537","_from":"2934","_to":"15744"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"16469","_from":"2934","_to":"12443"} +{"$label":"ACTS_IN","name":"Rebecca Dearborn","type":"Role","_key":"16438","_from":"2934","_to":"12427"} +{"$label":"ACTS_IN","name":"Audrey Cobb","type":"Role","_key":"13684","_from":"2934","_to":"10627"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"6734","_from":"2934","_to":"5655"} +{"$label":"ACTS_IN","name":"White Witch","type":"Role","_key":"5227","_from":"2934","_to":"4445"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"4259","_from":"2934","_to":"3629"} +{"$label":"ACTS_IN","name":"Brookes","type":"Role","_key":"103072","_from":"2935","_to":"60631"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"101627","_from":"2935","_to":"59814"} +{"$label":"ACTS_IN","name":"William Hannigan","type":"Role","_key":"99011","_from":"2935","_to":"58328"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"89825","_from":"2935","_to":"53152"} +{"$label":"ACTS_IN","name":"Ian's dad","type":"Role","_key":"89332","_from":"2935","_to":"52879"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"67015","_from":"2935","_to":"41373"} +{"$label":"ACTS_IN","name":"Odoacer","type":"Role","_key":"55874","_from":"2935","_to":"35542"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"50177","_from":"2935","_to":"32805"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"48243","_from":"2935","_to":"31694"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"41005","_from":"2935","_to":"27583"} +{"$label":"ACTS_IN","name":"Swanney","type":"Role","_key":"7450","_from":"2935","_to":"6206"} +{"$label":"DIRECTED","_key":"48217","_from":"2935","_to":"31677"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"51819","_from":"2936","_to":"33813"} +{"$label":"ACTS_IN","name":"Morag McPherson","type":"Role","_key":"56340","_from":"2937","_to":"35796"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"46717","_from":"2938","_to":"30833"} +{"$label":"ACTS_IN","name":"1. Offizier William Murdoch","type":"Role","_key":"7198","_from":"2938","_to":"6002"} +{"$label":"ACTS_IN","name":"Moby","type":"Role","_key":"100882","_from":"2941","_to":"59478"} +{"$label":"ACTS_IN","name":"Crateros","type":"Role","_key":"17058","_from":"2941","_to":"12778"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"18650","_from":"2943","_to":"13787"} +{"$label":"ACTS_IN","name":"Bruno Tattaglia","type":"Role","_key":"3454","_from":"2960","_to":"2944"} +{"$label":"ACTS_IN","name":"Philip Tattaglia","type":"Role","_key":"3453","_from":"2959","_to":"2944"} +{"$label":"ACTS_IN","name":"Apollonia Vitelli-Corleone","type":"Role","_key":"3452","_from":"2958","_to":"2944"} +{"$label":"ACTS_IN","name":"Johnny Fontane","type":"Role","_key":"3451","_from":"2957","_to":"2944"} +{"$label":"ACTS_IN","name":"Carmine Cuneo","type":"Role","_key":"3450","_from":"2956","_to":"2944"} +{"$label":"ACTS_IN","name":"Jack Woltz","type":"Role","_key":"3449","_from":"2955","_to":"2944"} +{"$label":"ACTS_IN","name":"Fredo Corleone","type":"Role","_key":"3448","_from":"2954","_to":"2944"} +{"$label":"ACTS_IN","name":"Carlo Rizzi","type":"Role","_key":"3447","_from":"2953","_to":"2944"} +{"$label":"ACTS_IN","name":"Connie Corleone Rizzi","type":"Role","_key":"3446","_from":"2952","_to":"2944"} +{"$label":"ACTS_IN","name":"Salvatore \"Sally\" Tessio","type":"Role","_key":"3445","_from":"2951","_to":"2944"} +{"$label":"ACTS_IN","name":"Kay Adams","type":"Role","_key":"3444","_from":"2950","_to":"2944"} +{"$label":"ACTS_IN","name":"Virgil 'Der T\u00fcrke' Sollozzo","type":"Role","_key":"3443","_from":"2949","_to":"2944"} +{"$label":"ACTS_IN","name":"Emilio Barzini","type":"Role","_key":"3442","_from":"2948","_to":"2944"} +{"$label":"ACTS_IN","name":"Capt. Mark McCluskey","type":"Role","_key":"3441","_from":"2947","_to":"2944"} +{"$label":"ACTS_IN","name":"Pete Clemenza","type":"Role","_key":"3439","_from":"2946","_to":"2944"} +{"$label":"ACTS_IN","name":"Santino 'Sonny' Corleone","type":"Role","_key":"3438","_from":"2945","_to":"2944"} +{"$label":"ACTS_IN","name":"Frank Olchin","type":"Role","_key":"120141","_from":"2945","_to":"70564"} +{"$label":"ACTS_IN","name":"Salvatore Palmeri","type":"Role","_key":"120032","_from":"2945","_to":"70492"} +{"$label":"ACTS_IN","name":"Roy Sweeney","type":"Role","_key":"116620","_from":"2945","_to":"68648"} +{"$label":"ACTS_IN","name":"Sam Winters","type":"Role","_key":"115035","_from":"2945","_to":"67739"} +{"$label":"ACTS_IN","name":"Brian Piccolo","type":"Role","_key":"114768","_from":"2945","_to":"67603"} +{"$label":"ACTS_IN","name":"Tommy Korman","type":"Role","_key":"90011","_from":"2945","_to":"53250"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"71401","_from":"2945","_to":"43300"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"70406","_from":"2945","_to":"42875"} +{"$label":"ACTS_IN","name":"Jonathan E.","type":"Role","_key":"70121","_from":"2945","_to":"42746"} +{"$label":"ACTS_IN","name":"Frank Colton","type":"Role","_key":"65257","_from":"2945","_to":"40509"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"65232","_from":"2945","_to":"40502"} +{"$label":"ACTS_IN","name":"Frank Vitale","type":"Role","_key":"61291","_from":"2945","_to":"38698"} +{"$label":"ACTS_IN","name":"Det. Sgt. Matthew Sykes","type":"Role","_key":"61092","_from":"2945","_to":"38618"} +{"$label":"ACTS_IN","name":"U.S. Marshal Robert Deguerin","type":"Role","_key":"52720","_from":"2945","_to":"34221"} +{"$label":"ACTS_IN","name":"Spaldoni","type":"Role","_key":"50241","_from":"2945","_to":"32833"} +{"$label":"ACTS_IN","name":"Mississippi","type":"Role","_key":"44547","_from":"2945","_to":"29659"} +{"$label":"ACTS_IN","name":"Sgt. Eddie Dohun","type":"Role","_key":"40255","_from":"2945","_to":"27164"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15956","_from":"2945","_to":"12139"} +{"$label":"ACTS_IN","name":"Paul Sheldon","type":"Role","_key":"15064","_from":"2945","_to":"11579"} +{"$label":"ACTS_IN","name":"Joe Sarno","type":"Role","_key":"14356","_from":"2945","_to":"11110"} +{"$label":"ACTS_IN","name":"The Big Man","type":"Role","_key":"6606","_from":"2945","_to":"5579"} +{"$label":"ACTS_IN","name":"Det. Lt. Sims","type":"Role","_key":"120625","_from":"2947","_to":"70847"} +{"$label":"ACTS_IN","name":"Russell Tinsworthy","type":"Role","_key":"120224","_from":"2947","_to":"70600"} +{"$label":"ACTS_IN","name":"Capt. John Nelson","type":"Role","_key":"117553","_from":"2947","_to":"69116"} +{"$label":"ACTS_IN","name":"Sheriff Tod Shaw","type":"Role","_key":"116032","_from":"2947","_to":"68332"} +{"$label":"ACTS_IN","name":"Dix Handley","type":"Role","_key":"110614","_from":"2947","_to":"65354"} +{"$label":"ACTS_IN","name":"Sir Gawain","type":"Role","_key":"42741","_from":"2947","_to":"28608"} +{"$label":"ACTS_IN","name":"Leo Dalco","type":"Role","_key":"28831","_from":"2947","_to":"20607"} +{"$label":"ACTS_IN","name":"Lt. William Doyle","type":"Role","_key":"16607","_from":"2947","_to":"12545"} +{"$label":"ACTS_IN","name":"Roger Wade","type":"Role","_key":"15941","_from":"2947","_to":"12128"} +{"$label":"ACTS_IN","name":"Brigade General Jack D. Ripper","type":"Role","_key":"11166","_from":"2947","_to":"8839"} +{"$label":"ACTS_IN","name":"Johnny Clay","type":"Role","_key":"3572","_from":"2947","_to":"3060"} +{"$label":"ACTS_IN","name":"Mel Phillips","type":"Role","_key":"121750","_from":"2948","_to":"71524"} +{"$label":"ACTS_IN","name":"William H. 'Bill' O'Connell","type":"Role","_key":"115278","_from":"2948","_to":"67879"} +{"$label":"ACTS_IN","name":"The Millionaire","type":"Role","_key":"24779","_from":"2948","_to":"17914"} +{"$label":"ACTS_IN","name":"Barabbas","type":"Role","_key":"21249","_from":"2948","_to":"15553"} +{"$label":"ACTS_IN","name":"Anthony 'Tony' Bergdorf","type":"Role","_key":"4166","_from":"2948","_to":"3543"} +{"$label":"ACTS_IN","name":"Frank Barella","type":"Role","_key":"67573","_from":"2949","_to":"41602"} +{"$label":"ACTS_IN","name":"Rudy Butler","type":"Role","_key":"40419","_from":"2949","_to":"27250"} +{"$label":"ACTS_IN","name":"Elizabeth Tate","type":"Role","_key":"116080","_from":"2950","_to":"68357"} +{"$label":"ACTS_IN","name":"Louise Bryant","type":"Role","_key":"115562","_from":"2950","_to":"68033"} +{"$label":"ACTS_IN","name":"Marilyn Cooper","type":"Role","_key":"109885","_from":"2950","_to":"64928"} +{"$label":"ACTS_IN","name":"Jan Mannus","type":"Role","_key":"93137","_from":"2950","_to":"54897"} +{"$label":"ACTS_IN","name":"Bridget Cardigan","type":"Role","_key":"87938","_from":"2950","_to":"52222"} +{"$label":"ACTS_IN","name":"Nina Banks","type":"Role","_key":"72438","_from":"2950","_to":"43722"} +{"$label":"ACTS_IN","name":"Nina Banks","type":"Role","_key":"72341","_from":"2950","_to":"43689"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"71564","_from":"2950","_to":"43354"} +{"$label":"ACTS_IN","name":"Linda Christie","type":"Role","_key":"71040","_from":"2950","_to":"43140"} +{"$label":"ACTS_IN","name":"Luna Schlosser","type":"Role","_key":"70674","_from":"2950","_to":"42998"} +{"$label":"ACTS_IN","name":"J.C. Wiatt","type":"Role","_key":"68586","_from":"2950","_to":"42053"} +{"$label":"ACTS_IN","name":"Carol Lipton","type":"Role","_key":"63371","_from":"2950","_to":"39712"} +{"$label":"ACTS_IN","name":"Georgia Mozell","type":"Role","_key":"62929","_from":"2950","_to":"39524"} +{"$label":"ACTS_IN","name":"Bessie","type":"Role","_key":"57135","_from":"2950","_to":"36267"} +{"$label":"ACTS_IN","name":"Sybil Stone","type":"Role","_key":"52237","_from":"2950","_to":"34024"} +{"$label":"ACTS_IN","name":"Erica Barry","type":"Role","_key":"45391","_from":"2950","_to":"30097"} +{"$label":"ACTS_IN","name":"Annie Paradis","type":"Role","_key":"24333","_from":"2950","_to":"17622"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"12290","_from":"2950","_to":"9628"} +{"$label":"ACTS_IN","name":"Annie Hall","type":"Role","_key":"8472","_from":"2950","_to":"6916"} +{"$label":"ACTS_IN","name":"Mary Wilkie","type":"Role","_key":"8389","_from":"2950","_to":"6860"} +{"$label":"ACTS_IN","name":"Kay Adams Michelson","type":"Role","_key":"3515","_from":"2950","_to":"3010"} +{"$label":"ACTS_IN","name":"Kay Corleone","type":"Role","_key":"3472","_from":"2950","_to":"2975"} +{"$label":"DIRECTED","_key":"62932","_from":"2950","_to":"39524"} +{"$label":"ACTS_IN","name":"Judge Powell","type":"Role","_key":"119739","_from":"2951","_to":"70316"} +{"$label":"ACTS_IN","name":"Salvatore 'Sal the Wheezer' Valestra","type":"Role","_key":"102473","_from":"2951","_to":"60297"} +{"$label":"ACTS_IN","name":"Ishbo's Mother","type":"Role","_key":"101246","_from":"2952","_to":"59626"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"97146","_from":"2952","_to":"57143"} +{"$label":"ACTS_IN","name":"Jaime's Mother","type":"Role","_key":"28188","_from":"2952","_to":"20190"} +{"$label":"ACTS_IN","name":"Mrs. Silver","type":"Role","_key":"14188","_from":"2952","_to":"10966"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"12780","_from":"2952","_to":"9974"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"12764","_from":"2952","_to":"9966"} +{"$label":"ACTS_IN","name":"Adrianna \"Adrian\" Pennino Balboa","type":"Role","_key":"12716","_from":"2952","_to":"9935"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"12653","_from":"2952","_to":"9890"} +{"$label":"ACTS_IN","name":"Adrianna \"Adrian\" Pennino","type":"Role","_key":"12637","_from":"2952","_to":"9878"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"12191","_from":"2952","_to":"9548"} +{"$label":"ACTS_IN","name":"Connie Corleone-Rizzi","type":"Role","_key":"3517","_from":"2952","_to":"3010"} +{"$label":"ACTS_IN","name":"Connie Corleone","type":"Role","_key":"3475","_from":"2952","_to":"2975"} +{"$label":"ACTS_IN","name":"Clippers Fan","type":"Role","_key":"64292","_from":"2953","_to":"40082"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"71911","_from":"2954","_to":"43508"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"11516","_from":"2954","_to":"9052"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"7110","_from":"2954","_to":"5945"} +{"$label":"ACTS_IN","name":"Fredo Corleone","type":"Role","_key":"3474","_from":"2954","_to":"2975"} +{"$label":"ACTS_IN","name":"Phil Cavalleri","type":"Role","_key":"52351","_from":"2955","_to":"34075"} +{"$label":"ACTS_IN","name":"Richard Forst","type":"Role","_key":"8841","_from":"2955","_to":"7183"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"8462","_from":"2956","_to":"6907"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"4984","_from":"2956","_to":"4235"} +{"$label":"ACTS_IN","name":"Cotbi","type":"Role","_key":"21880","_from":"2958","_to":"15979"} +{"$label":"ACTS_IN","name":"Spats' henchman","type":"Role","_key":"3468","_from":"2974","_to":"2961"} +{"$label":"ACTS_IN","name":"Toothpick Charlie","type":"Role","_key":"3467","_from":"2973","_to":"2961"} +{"$label":"ACTS_IN","name":"Det. Mulligan","type":"Role","_key":"3466","_from":"2972","_to":"2961"} +{"$label":"ACTS_IN","name":"Johnny Paradise","type":"Role","_key":"3465","_from":"2971","_to":"2961"} +{"$label":"ACTS_IN","name":"Nellie","type":"Role","_key":"3464","_from":"2970","_to":"2961"} +{"$label":"ACTS_IN","name":"Sweet Sue","type":"Role","_key":"3463","_from":"2969","_to":"2961"} +{"$label":"ACTS_IN","name":"Little Bonaparte","type":"Role","_key":"3462","_from":"2968","_to":"2961"} +{"$label":"ACTS_IN","name":"Osgood Fielding III","type":"Role","_key":"3461","_from":"2967","_to":"2961"} +{"$label":"ACTS_IN","name":"Spats Colombo","type":"Role","_key":"3460","_from":"2966","_to":"2961"} +{"$label":"ACTS_IN","name":"Jerry (Daphne)","type":"Role","_key":"3459","_from":"2965","_to":"2961"} +{"$label":"ACTS_IN","name":"Joe (Josephine)","type":"Role","_key":"3458","_from":"2964","_to":"2961"} +{"$label":"ACTS_IN","name":"Sugar Kane Kowalczyk","type":"Role","_key":"3457","_from":"2963","_to":"2961"} +{"$label":"DIRECTED","_key":"3456","_from":"2962","_to":"2961"} +{"$label":"DIRECTED","_key":"117437","_from":"2962","_to":"69067"} +{"$label":"DIRECTED","_key":"115753","_from":"2962","_to":"68155"} +{"$label":"DIRECTED","_key":"90085","_from":"2962","_to":"53278"} +{"$label":"DIRECTED","_key":"64850","_from":"2962","_to":"40339"} +{"$label":"DIRECTED","_key":"44344","_from":"2962","_to":"29551"} +{"$label":"DIRECTED","_key":"36360","_from":"2962","_to":"24657"} +{"$label":"DIRECTED","_key":"22718","_from":"2962","_to":"16480"} +{"$label":"DIRECTED","_key":"16295","_from":"2962","_to":"12354"} +{"$label":"DIRECTED","_key":"11772","_from":"2962","_to":"9238"} +{"$label":"DIRECTED","_key":"11669","_from":"2962","_to":"9168"} +{"$label":"DIRECTED","_key":"7512","_from":"2962","_to":"6257"} +{"$label":"DIRECTED","_key":"7224","_from":"2962","_to":"6037"} +{"$label":"DIRECTED","_key":"5399","_from":"2962","_to":"4586"} +{"$label":"DIRECTED","_key":"3997","_from":"2962","_to":"3403"} +{"$label":"ACTS_IN","name":"Rose Loomis","type":"Role","_key":"121724","_from":"2963","_to":"71514"} +{"$label":"ACTS_IN","name":"Angela Phinlay","type":"Role","_key":"110620","_from":"2963","_to":"65354"} +{"$label":"ACTS_IN","name":"Roberta 'Bobbie' Stevens","type":"Role","_key":"107007","_from":"2963","_to":"63087"} +{"$label":"ACTS_IN","name":"Roslyn Taber","type":"Role","_key":"70494","_from":"2963","_to":"42914"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"64846","_from":"2963","_to":"40339"} +{"$label":"ACTS_IN","name":"Pola Debevoise","type":"Role","_key":"62450","_from":"2963","_to":"39337"} +{"$label":"ACTS_IN","name":"Kay Weston","type":"Role","_key":"16784","_from":"2963","_to":"12653"} +{"$label":"ACTS_IN","name":"Lorelei Lee","type":"Role","_key":"8915","_from":"2963","_to":"7234"} +{"$label":"ACTS_IN","name":"Miss Caswell","type":"Role","_key":"8513","_from":"2963","_to":"6942"} +{"$label":"ACTS_IN","name":"Carl Fisher","type":"Role","_key":"72061","_from":"2964","_to":"43573"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"71011","_from":"2964","_to":"43129"} +{"$label":"ACTS_IN","name":"The Great Leslie","type":"Role","_key":"70783","_from":"2964","_to":"43040"} +{"$label":"ACTS_IN","name":"John 'Joker' Jackson","type":"Role","_key":"69707","_from":"2964","_to":"42555"} +{"$label":"ACTS_IN","name":"Lt. (j.g.) Nicholas Holden","type":"Role","_key":"55372","_from":"2964","_to":"35299"} +{"$label":"ACTS_IN","name":"Charles Cartwright","type":"Role","_key":"41703","_from":"2964","_to":"27984"} +{"$label":"ACTS_IN","name":"Martin N. Fenn","type":"Role","_key":"41323","_from":"2964","_to":"27781"} +{"$label":"ACTS_IN","name":"Aziru \/ Dr. Mohassid","type":"Role","_key":"39336","_from":"2964","_to":"26608"} +{"$label":"ACTS_IN","name":"Wald","type":"Role","_key":"39333","_from":"2964","_to":"26602"} +{"$label":"ACTS_IN","name":"Stephen Moore","type":"Role","_key":"39265","_from":"2964","_to":"26554"} +{"$label":"ACTS_IN","name":"Fernand Morcerf Mondego","type":"Role","_key":"32526","_from":"2964","_to":"22623"} +{"$label":"ACTS_IN","name":"Giacomo \u00b4\/ Casanova","type":"Role","_key":"31441","_from":"2964","_to":"21964"} +{"$label":"ACTS_IN","name":"Carlo Cofield","type":"Role","_key":"25267","_from":"2964","_to":"18220"} +{"$label":"ACTS_IN","name":"Sidney Falco","type":"Role","_key":"11544","_from":"2964","_to":"9070"} +{"$label":"ACTS_IN","name":"Antoninus","type":"Role","_key":"11513","_from":"2964","_to":"9041"} +{"$label":"ACTS_IN","name":"Mel Edison","type":"Role","_key":"119270","_from":"2965","_to":"70080"} +{"$label":"ACTS_IN","name":"Herb Sullivan","type":"Role","_key":"114843","_from":"2965","_to":"67649"} +{"$label":"ACTS_IN","name":"President Russell P. Kramer","type":"Role","_key":"113967","_from":"2965","_to":"67124"} +{"$label":"ACTS_IN","name":"John Gustafson","type":"Role","_key":"105151","_from":"2965","_to":"61877"} +{"$label":"ACTS_IN","name":"Ed Horman","type":"Role","_key":"105137","_from":"2965","_to":"61871"} +{"$label":"ACTS_IN","name":"Wendell Armbruster, Jr.","type":"Role","_key":"90079","_from":"2965","_to":"53278"} +{"$label":"ACTS_IN","name":"Juror 8","type":"Role","_key":"88769","_from":"2965","_to":"52604"} +{"$label":"ACTS_IN","name":"Prof. Fate","type":"Role","_key":"70782","_from":"2965","_to":"43040"} +{"$label":"ACTS_IN","name":"John Gustafson","type":"Role","_key":"70385","_from":"2965","_to":"42869"} +{"$label":"ACTS_IN","name":"Felix Ungar","type":"Role","_key":"69370","_from":"2965","_to":"42411"} +{"$label":"ACTS_IN","name":"Marcellus","type":"Role","_key":"64006","_from":"2965","_to":"39964"} +{"$label":"ACTS_IN","name":"Shelley Levene","type":"Role","_key":"54301","_from":"2965","_to":"34857"} +{"$label":"ACTS_IN","name":"Capt. Don Gallagher","type":"Role","_key":"46011","_from":"2965","_to":"30412"} +{"$label":"ACTS_IN","name":"Sam Bissel","type":"Role","_key":"24929","_from":"2965","_to":"18019"} +{"$label":"ACTS_IN","name":"Nestor Patou","type":"Role","_key":"22719","_from":"2965","_to":"16480"} +{"$label":"ACTS_IN","name":"Nicky Holroyd","type":"Role","_key":"17425","_from":"2965","_to":"13027"} +{"$label":"ACTS_IN","name":"Harry Hinkle","type":"Role","_key":"16296","_from":"2965","_to":"12354"} +{"$label":"ACTS_IN","name":"Jack Godell","type":"Role","_key":"11687","_from":"2965","_to":"9177"} +{"$label":"ACTS_IN","name":"Hildebrand Johnson","type":"Role","_key":"11670","_from":"2965","_to":"9168"} +{"$label":"ACTS_IN","name":"Jack Martin","type":"Role","_key":"9668","_from":"2965","_to":"7763"} +{"$label":"ACTS_IN","name":"Paul Finnigan","type":"Role","_key":"8365","_from":"2965","_to":"6847"} +{"$label":"ACTS_IN","name":"C.C. Baxter","type":"Role","_key":"3987","_from":"2965","_to":"3403"} +{"$label":"ACTS_IN","name":"Joe Fabrini","type":"Role","_key":"110563","_from":"2966","_to":"65329"} +{"$label":"ACTS_IN","name":"Saloon Bouncer","type":"Role","_key":"24148","_from":"2966","_to":"17503"} +{"$label":"ACTS_IN","name":"Guino Rinaldo","type":"Role","_key":"10433","_from":"2966","_to":"8296"} +{"$label":"ACTS_IN","name":"Union Official","type":"Role","_key":"70805","_from":"2967","_to":"43041"} +{"$label":"ACTS_IN","name":"Stationmaster","type":"Role","_key":"24150","_from":"2967","_to":"17503"} +{"$label":"ACTS_IN","name":"Papa Mousekewitz","type":"Role","_key":"62908","_from":"2968","_to":"39516"} +{"$label":"ACTS_IN","name":"Reb Mendel 'Papa'","type":"Role","_key":"62219","_from":"2968","_to":"39187"} +{"$label":"ACTS_IN","name":"Papa Mousekewitz","type":"Role","_key":"35284","_from":"2968","_to":"24029"} +{"$label":"ACTS_IN","name":"Schemia","type":"Role","_key":"21261","_from":"2968","_to":"15553"} +{"$label":"ACTS_IN","name":"Amazon Annie","type":"Role","_key":"22726","_from":"2969","_to":"16480"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"3995","_from":"2969","_to":"3403"} +{"$label":"ACTS_IN","name":"Jerry Connolly","type":"Role","_key":"95924","_from":"2972","_to":"56413"} +{"$label":"ACTS_IN","name":"Matt Brown","type":"Role","_key":"15435","_from":"2972","_to":"11796"} +{"$label":"ACTS_IN","name":"Andy Lee","type":"Role","_key":"25371","_from":"2973","_to":"18284"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"119043","_from":"2974","_to":"69977"} +{"$label":"ACTS_IN","name":"Pierson (guard)","type":"Role","_key":"104595","_from":"2974","_to":"61524"} +{"$label":"ACTS_IN","name":"Miner","type":"Role","_key":"70824","_from":"2974","_to":"43041"} +{"$label":"ACTS_IN","name":"Moose Malloy","type":"Role","_key":"15840","_from":"2974","_to":"12050"} +{"$label":"ACTS_IN","name":"Don Francesco Ciccio","type":"Role","_key":"3483","_from":"2982","_to":"2975"} +{"$label":"ACTS_IN","name":"Don Fanucci","type":"Role","_key":"3482","_from":"2981","_to":"2975"} +{"$label":"ACTS_IN","name":"junger Vito Andolini","type":"Role","_key":"3481","_from":"2980","_to":"2975"} +{"$label":"ACTS_IN","name":"die Mutter des jungen Vito","type":"Role","_key":"3480","_from":"2979","_to":"2975"} +{"$label":"ACTS_IN","name":"Al Neri","type":"Role","_key":"3479","_from":"2978","_to":"2975"} +{"$label":"ACTS_IN","name":"Frankie Pentangeli","type":"Role","_key":"3477","_from":"2977","_to":"2975"} +{"$label":"ACTS_IN","name":"Hyman Roth","type":"Role","_key":"3476","_from":"2976","_to":"2975"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"40422","_from":"2978","_to":"27250"} +{"$label":"ACTS_IN","name":"Osvaldo","type":"Role","_key":"114553","_from":"2981","_to":"67482"} +{"$label":"ACTS_IN","name":"Manganiello","type":"Role","_key":"49573","_from":"2981","_to":"32457"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"46950","_from":"2981","_to":"30961"} +{"$label":"ACTS_IN","name":"Il barone","type":"Role","_key":"35933","_from":"2981","_to":"24402"} +{"$label":"ACTS_IN","name":"London Boy","type":"Role","_key":"3513","_from":"3009","_to":"2983"} +{"$label":"ACTS_IN","name":"Wayne Gale","type":"Role","_key":"3511","_from":"3008","_to":"2983"} +{"$label":"ACTS_IN","name":"Deputy Sparky","type":"Role","_key":"3510","_from":"3007","_to":"2983"} +{"$label":"ACTS_IN","name":"Deputy Napalatoni","type":"Role","_key":"3509","_from":"3006","_to":"2983"} +{"$label":"ACTS_IN","name":"Smithy","type":"Role","_key":"3508","_from":"3005","_to":"2983"} +{"$label":"ACTS_IN","name":"Deputy Sheriff Duncan Homolka","type":"Role","_key":"3507","_from":"3004","_to":"2983"} +{"$label":"ACTS_IN","name":"Dr. Emil Reingold","type":"Role","_key":"3506","_from":"3003","_to":"2983"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"3505","_from":"3002","_to":"2983"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"3504","_from":"3001","_to":"2983"} +{"$label":"ACTS_IN","name":"Dale Wrigley","type":"Role","_key":"3503","_from":"3000","_to":"2983"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"3502","_from":"2999","_to":"2983"} +{"$label":"ACTS_IN","name":"Soundman","type":"Role","_key":"3501","_from":"2998","_to":"2983"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"3500","_from":"2997","_to":"2983"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"3499","_from":"2996","_to":"2983"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"3498","_from":"2995","_to":"2983"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"3497","_from":"2994","_to":"2983"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"3495","_from":"2993","_to":"2983"} +{"$label":"ACTS_IN","name":"Old Indian","type":"Role","_key":"3494","_from":"2992","_to":"2983"} +{"$label":"ACTS_IN","name":"Mallory's Mom","type":"Role","_key":"3493","_from":"2991","_to":"2983"} +{"$label":"ACTS_IN","name":"Deputy Warden Kavanaugh","type":"Role","_key":"3492","_from":"2990","_to":"2983"} +{"$label":"ACTS_IN","name":"Deputy Warden Wurlitzer","type":"Role","_key":"3490","_from":"2989","_to":"2983"} +{"$label":"ACTS_IN","name":"Mallory's Dad","type":"Role","_key":"3489","_from":"2988","_to":"2983"} +{"$label":"ACTS_IN","name":"Det. Jack Scagnetti","type":"Role","_key":"3488","_from":"2987","_to":"2983"} +{"$label":"ACTS_IN","name":"Mallory Knox","type":"Role","_key":"3487","_from":"2986","_to":"2983"} +{"$label":"ACTS_IN","name":"Mickey Knox","type":"Role","_key":"3486","_from":"2985","_to":"2983"} +{"$label":"DIRECTED","_key":"3485","_from":"2984","_to":"2983"} +{"$label":"DIRECTED","_key":"66323","_from":"2984","_to":"41028"} +{"$label":"DIRECTED","_key":"64966","_from":"2984","_to":"40382"} +{"$label":"DIRECTED","_key":"63922","_from":"2984","_to":"39931"} +{"$label":"DIRECTED","_key":"63825","_from":"2984","_to":"39901"} +{"$label":"DIRECTED","_key":"61295","_from":"2984","_to":"38700"} +{"$label":"DIRECTED","_key":"61133","_from":"2984","_to":"38638"} +{"$label":"DIRECTED","_key":"54715","_from":"2984","_to":"35030"} +{"$label":"DIRECTED","_key":"41700","_from":"2984","_to":"27974"} +{"$label":"DIRECTED","_key":"22145","_from":"2984","_to":"16146"} +{"$label":"DIRECTED","_key":"17036","_from":"2984","_to":"12778"} +{"$label":"DIRECTED","_key":"15994","_from":"2984","_to":"12161"} +{"$label":"DIRECTED","_key":"9662","_from":"2984","_to":"7763"} +{"$label":"DIRECTED","_key":"9324","_from":"2984","_to":"7539"} +{"$label":"ACTS_IN","name":"Betrunkener","type":"Role","_key":"12527","_from":"2984","_to":"9808"} +{"$label":"ACTS_IN","name":"Alpha Company major in bunker","type":"Role","_key":"9345","_from":"2984","_to":"7539"} +{"$label":"ACTS_IN","name":"Tallahassee","type":"Role","_key":"121457","_from":"2985","_to":"71351"} +{"$label":"ACTS_IN","name":"Pepper Lewis","type":"Role","_key":"119084","_from":"2985","_to":"69998"} +{"$label":"ACTS_IN","name":"Bob Wilson","type":"Role","_key":"111440","_from":"2985","_to":"65798"} +{"$label":"ACTS_IN","name":"One Eyed Jack Faro","type":"Role","_key":"104186","_from":"2985","_to":"61297"} +{"$label":"ACTS_IN","name":"Flynn","type":"Role","_key":"102409","_from":"2985","_to":"60262"} +{"$label":"ACTS_IN","name":"Roy Arnie","type":"Role","_key":"100391","_from":"2985","_to":"59203"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"99742","_from":"2985","_to":"58822"} +{"$label":"ACTS_IN","name":"Charlie Frost","type":"Role","_key":"98813","_from":"2985","_to":"58224"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"97087","_from":"2985","_to":"57110"} +{"$label":"ACTS_IN","name":"Monix","type":"Role","_key":"93651","_from":"2985","_to":"55135"} +{"$label":"ACTS_IN","name":"Carter Page III","type":"Role","_key":"93596","_from":"2985","_to":"55116"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"93189","_from":"2985","_to":"54916"} +{"$label":"ACTS_IN","name":"Hank Gordon","type":"Role","_key":"72186","_from":"2985","_to":"43625"} +{"$label":"ACTS_IN","name":"Roy Munson","type":"Role","_key":"70535","_from":"2985","_to":"42930"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"70355","_from":"2985","_to":"42858"} +{"$label":"ACTS_IN","name":"Ray Pekurny","type":"Role","_key":"69476","_from":"2985","_to":"42449"} +{"$label":"ACTS_IN","name":"Ezra Turner","type":"Role","_key":"69116","_from":"2985","_to":"42289"} +{"$label":"ACTS_IN","name":"Stan Lloyd","type":"Role","_key":"64283","_from":"2985","_to":"40082"} +{"$label":"ACTS_IN","name":"Billy Hoyle","type":"Role","_key":"61321","_from":"2985","_to":"38705"} +{"$label":"ACTS_IN","name":"Raymond Barnell","type":"Role","_key":"58696","_from":"2985","_to":"37074"} +{"$label":"ACTS_IN","name":"Bill White","type":"Role","_key":"55844","_from":"2985","_to":"35533"} +{"$label":"ACTS_IN","name":"Dusty","type":"Role","_key":"54451","_from":"2985","_to":"34916"} +{"$label":"ACTS_IN","name":"Galaxia \/ Security Guard Gary","type":"Role","_key":"54314","_from":"2985","_to":"34859"} +{"$label":"ACTS_IN","name":"Sgt. Keck","type":"Role","_key":"50635","_from":"2985","_to":"33066"} +{"$label":"ACTS_IN","name":"Carson Wells","type":"Role","_key":"45543","_from":"2985","_to":"30156"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"44639","_from":"2985","_to":"29706"} +{"$label":"ACTS_IN","name":"John Woody Vallery","type":"Role","_key":"32994","_from":"2985","_to":"22876"} +{"$label":"ACTS_IN","name":"David Murphy","type":"Role","_key":"31991","_from":"2985","_to":"22300"} +{"$label":"ACTS_IN","name":"Ernie Luckman","type":"Role","_key":"27476","_from":"2985","_to":"19717"} +{"$label":"ACTS_IN","name":"Larry Flynt","type":"Role","_key":"14448","_from":"2985","_to":"11171"} +{"$label":"ACTS_IN","name":"Big Boy Matson","type":"Role","_key":"12594","_from":"2985","_to":"9849"} +{"$label":"ACTS_IN","name":"Sergeant William Schumann","type":"Role","_key":"7037","_from":"2985","_to":"5892"} +{"$label":"ACTS_IN","name":"Joleen","type":"Role","_key":"116180","_from":"2986","_to":"68405"} +{"$label":"ACTS_IN","name":"Carla Tate","type":"Role","_key":"116079","_from":"2986","_to":"68357"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"95786","_from":"2986","_to":"56339"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"91403","_from":"2986","_to":"53909"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"71651","_from":"2986","_to":"43385"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"71194","_from":"2986","_to":"43207"} +{"$label":"ACTS_IN","name":"Amanda Sue Bradley","type":"Role","_key":"66704","_from":"2986","_to":"41210"} +{"$label":"ACTS_IN","name":"Adele Corners","type":"Role","_key":"66647","_from":"2986","_to":"41190"} +{"$label":"ACTS_IN","name":"Maria Sullivan","type":"Role","_key":"59877","_from":"2986","_to":"37818"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"53501","_from":"2986","_to":"34547"} +{"$label":"ACTS_IN","name":"Audry Griswold","type":"Role","_key":"39622","_from":"2986","_to":"26781"} +{"$label":"ACTS_IN","name":"Sheri","type":"Role","_key":"18189","_from":"2986","_to":"13492"} +{"$label":"ACTS_IN","name":"Ginny","type":"Role","_key":"16967","_from":"2986","_to":"12733"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"14355","_from":"2986","_to":"11110"} +{"$label":"ACTS_IN","name":"Danielle Bowden","type":"Role","_key":"14168","_from":"2986","_to":"10963"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"14057","_from":"2986","_to":"10899"} +{"$label":"ACTS_IN","name":"Kate Fuller","type":"Role","_key":"8873","_from":"2986","_to":"7204"} +{"$label":"ACTS_IN","name":"Faith Justin","type":"Role","_key":"3981","_from":"2986","_to":"3397"} +{"$label":"ACTS_IN","name":"Detective Cunningham","type":"Role","_key":"105988","_from":"2987","_to":"62403"} +{"$label":"ACTS_IN","name":"Large Bills","type":"Role","_key":"104879","_from":"2987","_to":"61706"} +{"$label":"ACTS_IN","name":"Michael McCormack","type":"Role","_key":"93434","_from":"2987","_to":"55017"} +{"$label":"ACTS_IN","name":"Milo Peck","type":"Role","_key":"88591","_from":"2987","_to":"52495"} +{"$label":"ACTS_IN","name":"Bat Masterson","type":"Role","_key":"88377","_from":"2987","_to":"52390"} +{"$label":"ACTS_IN","name":"Det. Danny Detillo","type":"Role","_key":"67722","_from":"2987","_to":"41643"} +{"$label":"ACTS_IN","name":"Lt. Vincent D'Agosta","type":"Role","_key":"67301","_from":"2987","_to":"41490"} +{"$label":"ACTS_IN","name":"Pierce","type":"Role","_key":"60883","_from":"2987","_to":"38466"} +{"$label":"ACTS_IN","name":"Dallas","type":"Role","_key":"58760","_from":"2987","_to":"37115"} +{"$label":"ACTS_IN","name":"Wool Cap","type":"Role","_key":"54228","_from":"2987","_to":"34828"} +{"$label":"ACTS_IN","name":"Dr. Quinn Burchenal","type":"Role","_key":"51190","_from":"2987","_to":"33388"} +{"$label":"ACTS_IN","name":"Tom Wolls","type":"Role","_key":"50311","_from":"2987","_to":"32867"} +{"$label":"ACTS_IN","name":"DeWitt Albright","type":"Role","_key":"50104","_from":"2987","_to":"32780"} +{"$label":"ACTS_IN","name":"Lt. Owen Underhill","type":"Role","_key":"42188","_from":"2987","_to":"28261"} +{"$label":"ACTS_IN","name":"Chance Wilder","type":"Role","_key":"21517","_from":"2987","_to":"15740"} +{"$label":"ACTS_IN","name":"Snake Dupree","type":"Role","_key":"18991","_from":"2987","_to":"14034"} +{"$label":"ACTS_IN","name":"Seith Georg","type":"Role","_key":"18044","_from":"2987","_to":"13409"} +{"$label":"ACTS_IN","name":"Michael Cheritto","type":"Role","_key":"11325","_from":"2987","_to":"8936"} +{"$label":"ACTS_IN","name":"Technical Sergeant Michael Horvath","type":"Role","_key":"10179","_from":"2987","_to":"8132"} +{"$label":"ACTS_IN","name":"Lt. Col. Danny McKnight","type":"Role","_key":"10139","_from":"2987","_to":"8112"} +{"$label":"ACTS_IN","name":"Sgt. Earl Sistern","type":"Role","_key":"8130","_from":"2987","_to":"6692"} +{"$label":"ACTS_IN","name":"Cody Nicholson","type":"Role","_key":"4435","_from":"2987","_to":"3783"} +{"$label":"ACTS_IN","name":"Max Peltier","type":"Role","_key":"3980","_from":"2987","_to":"3397"} +{"$label":"ACTS_IN","name":"Chester Lee","type":"Role","_key":"118657","_from":"2988","_to":"69764"} +{"$label":"ACTS_IN","name":"Monty Capuletti","type":"Role","_key":"115992","_from":"2988","_to":"68313"} +{"$label":"ACTS_IN","name":"Thornton Melon","type":"Role","_key":"105119","_from":"2988","_to":"61864"} +{"$label":"ACTS_IN","name":"Al Czervik","type":"Role","_key":"73109","_from":"2988","_to":"43976"} +{"$label":"ACTS_IN","name":"Lucifer","type":"Role","_key":"55494","_from":"2988","_to":"35362"} +{"$label":"ACTS_IN","name":"Ben Dexter","type":"Role","_key":"98580","_from":"2990","_to":"58095"} +{"$label":"ACTS_IN","name":"Lou Girard","type":"Role","_key":"97924","_from":"2990","_to":"57668"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"66854","_from":"2990","_to":"41286"} +{"$label":"ACTS_IN","name":"Max Tooney","type":"Role","_key":"62886","_from":"2990","_to":"39508"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"52214","_from":"2990","_to":"34015"} +{"$label":"ACTS_IN","name":"Malcolm Rivers","type":"Role","_key":"23863","_from":"2990","_to":"17287"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"20094","_from":"2990","_to":"14770"} +{"$label":"ACTS_IN","name":"Lee Bowers","type":"Role","_key":"9673","_from":"2990","_to":"7763"} +{"$label":"ACTS_IN","name":"Father Hennessy","type":"Role","_key":"6732","_from":"2990","_to":"5655"} +{"$label":"ACTS_IN","name":"The Queen","type":"Role","_key":"101737","_from":"2991","_to":"59878"} +{"$label":"ACTS_IN","name":"Mother Disguisey","type":"Role","_key":"97378","_from":"2991","_to":"57346"} +{"$label":"ACTS_IN","name":"Mrs. Gertrude","type":"Role","_key":"96495","_from":"2991","_to":"56725"} +{"$label":"ACTS_IN","name":"Peggy Jones \/ Sea Salt Sally (voice)","type":"Role","_key":"94090","_from":"2991","_to":"55405"} +{"$label":"ACTS_IN","name":"Aunt Irene","type":"Role","_key":"92284","_from":"2991","_to":"54460"} +{"$label":"ACTS_IN","name":"Helen Shyres","type":"Role","_key":"46476","_from":"2991","_to":"30685"} +{"$label":"ACTS_IN","name":"Chastity Pariah","type":"Role","_key":"38584","_from":"2991","_to":"26068"} +{"$label":"ACTS_IN","name":"Mrs. Burns","type":"Role","_key":"4110","_from":"2991","_to":"3506"} +{"$label":"ACTS_IN","name":"Powhatan","type":"Role","_key":"63881","_from":"2992","_to":"39912"} +{"$label":"ACTS_IN","name":"Chingachgook","type":"Role","_key":"53353","_from":"2992","_to":"34484"} +{"$label":"ACTS_IN","name":"Pathfinder","type":"Role","_key":"13592","_from":"2992","_to":"10570"} +{"$label":"ACTS_IN","name":"Big Al","type":"Role","_key":"55866","_from":"2993","_to":"35537"} +{"$label":"ACTS_IN","name":"Mr. Nathan","type":"Role","_key":"22704","_from":"2993","_to":"16465"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"11836","_from":"2993","_to":"9282"} +{"$label":"ACTS_IN","name":"Poke","type":"Role","_key":"94995","_from":"2994","_to":"55928"} +{"$label":"ACTS_IN","name":"Norwood","type":"Role","_key":"14507","_from":"2994","_to":"11195"} +{"$label":"ACTS_IN","name":"Innkeeper","type":"Role","_key":"6792","_from":"2994","_to":"5693"} +{"$label":"ACTS_IN","name":"Ofcr. Marvin Nash","type":"Role","_key":"6049","_from":"2995","_to":"5129"} +{"$label":"ACTS_IN","name":"Audrey Timmonds","type":"Role","_key":"11074","_from":"2997","_to":"8755"} +{"$label":"ACTS_IN","name":"Rickie","type":"Role","_key":"36550","_from":"2998","_to":"24777"} +{"$label":"ACTS_IN","name":"Dr. German Stone","type":"Role","_key":"113895","_from":"3000","_to":"67087"} +{"$label":"ACTS_IN","name":"Lt. Col. Briggs","type":"Role","_key":"45274","_from":"3000","_to":"30038"} +{"$label":"ACTS_IN","name":"A.K. McNeil","type":"Role","_key":"43550","_from":"3000","_to":"29090"} +{"$label":"ACTS_IN","name":"Col. Robert Sink","type":"Role","_key":"26807","_from":"3000","_to":"19258"} +{"$label":"ACTS_IN","name":"Frank Barnes","type":"Role","_key":"11378","_from":"3000","_to":"8963"} +{"$label":"ACTS_IN","name":"Capt. Harris","type":"Role","_key":"9344","_from":"3000","_to":"7539"} +{"$label":"ACTS_IN","name":"Harry Goldenblatt","type":"Role","_key":"32732","_from":"3001","_to":"22725"} +{"$label":"ACTS_IN","name":"Miles Roberts","type":"Role","_key":"28259","_from":"3001","_to":"20232"} +{"$label":"ACTS_IN","name":"RCMP Officer at Headquarters","type":"Role","_key":"15454","_from":"3003","_to":"11805"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"10506","_from":"3003","_to":"8357"} +{"$label":"ACTS_IN","name":"Bandleader","type":"Role","_key":"71924","_from":"3004","_to":"43508"} +{"$label":"ACTS_IN","name":"J.B. Donaldo","type":"Role","_key":"67648","_from":"3004","_to":"41626"} +{"$label":"ACTS_IN","name":"Manny Feldstein","type":"Role","_key":"46355","_from":"3004","_to":"30625"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"25390","_from":"3004","_to":"18305"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"4695","_from":"3004","_to":"4008"} +{"$label":"ACTS_IN","name":"Rollin","type":"Role","_key":"38682","_from":"3006","_to":"26128"} +{"$label":"ACTS_IN","name":"Strausz","type":"Role","_key":"7481","_from":"3007","_to":"6221"} +{"$label":"ACTS_IN","name":"Lionel Sweeney","type":"Role","_key":"116829","_from":"3008","_to":"68776"} +{"$label":"ACTS_IN","name":"Steve Lopez","type":"Role","_key":"111907","_from":"3008","_to":"66064"} +{"$label":"ACTS_IN","name":"Jack Jericho","type":"Role","_key":"111688","_from":"3008","_to":"65944"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"105122","_from":"3008","_to":"61864"} +{"$label":"ACTS_IN","name":"Julian Wells","type":"Role","_key":"96010","_from":"3008","_to":"56439"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"90625","_from":"3008","_to":"53516"} +{"$label":"ACTS_IN","name":"Clyde Pell","type":"Role","_key":"89809","_from":"3008","_to":"53150"} +{"$label":"ACTS_IN","name":"Thomas Reilly","type":"Role","_key":"88587","_from":"3008","_to":"52495"} +{"$label":"ACTS_IN","name":"Billy Covington","type":"Role","_key":"72409","_from":"3008","_to":"43714"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"72145","_from":"3008","_to":"43605"} +{"$label":"ACTS_IN","name":"John Royce","type":"Role","_key":"72105","_from":"3008","_to":"43588"} +{"$label":"ACTS_IN","name":"Jerry Renfro","type":"Role","_key":"69321","_from":"3008","_to":"42372"} +{"$label":"ACTS_IN","name":"Terry Crabtree","type":"Role","_key":"67228","_from":"3008","_to":"41455"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"63861","_from":"3008","_to":"39907"} +{"$label":"ACTS_IN","name":"Charles Spencer Chaplin","type":"Role","_key":"63336","_from":"3008","_to":"39698"} +{"$label":"ACTS_IN","name":"Iron Man","type":"Role","_key":"61170","_from":"3008","_to":"38656"} +{"$label":"ACTS_IN","name":"Dr. Kozak","type":"Role","_key":"60180","_from":"3008","_to":"37970"} +{"$label":"ACTS_IN","name":"Tommy Larson","type":"Role","_key":"52493","_from":"3008","_to":"34146"} +{"$label":"ACTS_IN","name":"Peter Wright \/ Damon Bradley","type":"Role","_key":"52318","_from":"3008","_to":"34060"} +{"$label":"ACTS_IN","name":"Schulleiter Gardner","type":"Role","_key":"50394","_from":"3008","_to":"32925"} +{"$label":"ACTS_IN","name":"Dito","type":"Role","_key":"48304","_from":"3008","_to":"31726"} +{"$label":"ACTS_IN","name":"Kirk Lazarus","type":"Role","_key":"46678","_from":"3008","_to":"30823"} +{"$label":"ACTS_IN","name":"Harry Lockhart","type":"Role","_key":"36538","_from":"3008","_to":"24777"} +{"$label":"ACTS_IN","name":"Pete Graham","type":"Role","_key":"35219","_from":"3008","_to":"23991"} +{"$label":"ACTS_IN","name":"James Barris","type":"Role","_key":"27474","_from":"3008","_to":"19717"} +{"$label":"ACTS_IN","name":"Joe Wershba","type":"Role","_key":"26765","_from":"3008","_to":"19236"} +{"$label":"ACTS_IN","name":"Alex Finch","type":"Role","_key":"25386","_from":"3008","_to":"18305"} +{"$label":"ACTS_IN","name":"Telephone Jack","type":"Role","_key":"16928","_from":"3008","_to":"12718"} +{"$label":"ACTS_IN","name":"Paul Avery","type":"Role","_key":"16912","_from":"3008","_to":"12715"} +{"$label":"ACTS_IN","name":"Tony Stark","type":"Role","_key":"15275","_from":"3008","_to":"11696"} +{"$label":"ACTS_IN","name":"Bill Bush","type":"Role","_key":"8376","_from":"3008","_to":"6847"} +{"$label":"ACTS_IN","name":"Michael Foulicker","type":"Role","_key":"114316","_from":"3009","_to":"67334"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"107702","_from":"3009","_to":"63574"} +{"$label":"ACTS_IN","name":"John Willie","type":"Role","_key":"104298","_from":"3009","_to":"61366"} +{"$label":"ACTS_IN","name":"False Peter","type":"Role","_key":"96676","_from":"3009","_to":"56865"} +{"$label":"ACTS_IN","name":"Goatee Smoker","type":"Role","_key":"55792","_from":"3009","_to":"35507"} +{"$label":"ACTS_IN","name":"Russel","type":"Role","_key":"55604","_from":"3009","_to":"35408"} +{"$label":"ACTS_IN","name":"Jimmy Rose","type":"Role","_key":"40166","_from":"3009","_to":"27113"} +{"$label":"ACTS_IN","name":"Alan Furnace","type":"Role","_key":"24317","_from":"3009","_to":"17618"} +{"$label":"ACTS_IN","name":"Older Will Robinson","type":"Role","_key":"18798","_from":"3009","_to":"13892"} +{"$label":"ACTS_IN","name":"Mac McGrath","type":"Role","_key":"17585","_from":"3009","_to":"13137"} +{"$label":"ACTS_IN","name":"Benmont Tench","type":"Role","_key":"10972","_from":"3009","_to":"8689"} +{"$label":"ACTS_IN","name":"Anthony Vito Corleone\/Turiddu (auch 'Cavalleria Rusticana')","type":"Role","_key":"3524","_from":"3014","_to":"3010"} +{"$label":"ACTS_IN","name":"Cardinal Lamberto","type":"Role","_key":"3523","_from":"3013","_to":"3010"} +{"$label":"ACTS_IN","name":"B.J. Harrison","type":"Role","_key":"3521","_from":"3012","_to":"3010"} +{"$label":"ACTS_IN","name":"Don Altobello","type":"Role","_key":"3519","_from":"3011","_to":"3010"} +{"$label":"ACTS_IN","name":"Vern Damico","type":"Role","_key":"119929","_from":"3011","_to":"70443"} +{"$label":"ACTS_IN","name":"Detective Gatz","type":"Role","_key":"115257","_from":"3011","_to":"67870"} +{"$label":"ACTS_IN","name":"Seymour Warburton","type":"Role","_key":"93140","_from":"3011","_to":"54897"} +{"$label":"ACTS_IN","name":"Cacopoulos","type":"Role","_key":"72495","_from":"3011","_to":"43738"} +{"$label":"ACTS_IN","name":"Guido","type":"Role","_key":"70497","_from":"3011","_to":"42914"} +{"$label":"ACTS_IN","name":"Der General","type":"Role","_key":"69546","_from":"3011","_to":"42470"} +{"$label":"ACTS_IN","name":"Donald Fallon","type":"Role","_key":"67957","_from":"3011","_to":"41761"} +{"$label":"ACTS_IN","name":"Leon B. Little","type":"Role","_key":"67493","_from":"3011","_to":"41566"} +{"$label":"ACTS_IN","name":"Frank Latella","type":"Role","_key":"45985","_from":"3011","_to":"30398"} +{"$label":"ACTS_IN","name":"Ritchie Blumenthal","type":"Role","_key":"40450","_from":"3011","_to":"27259"} +{"$label":"ACTS_IN","name":"Rabbi Ben Lewis","type":"Role","_key":"35207","_from":"3011","_to":"23984"} +{"$label":"ACTS_IN","name":"Shah of Khwarezm","type":"Role","_key":"34437","_from":"3011","_to":"23592"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26744","_from":"3011","_to":"19220"} +{"$label":"ACTS_IN","name":"Sgt. Craig","type":"Role","_key":"24942","_from":"3011","_to":"18024"} +{"$label":"ACTS_IN","name":"Davis Leland","type":"Role","_key":"24851","_from":"3011","_to":"17972"} +{"$label":"ACTS_IN","name":"Calvera","type":"Role","_key":"11480","_from":"3011","_to":"9032"} +{"$label":"ACTS_IN","name":"Tuco","type":"Role","_key":"5388","_from":"3011","_to":"4577"} +{"$label":"ACTS_IN","name":"Don Diego Vega \/ Zorro \/ Bunny Wigglesworth \/ The Gay Blade \/ Ramon Vega","type":"Role","_key":"119678","_from":"3012","_to":"70293"} +{"$label":"ACTS_IN","name":"Count Vladimir Dracula","type":"Role","_key":"118292","_from":"3012","_to":"69534"} +{"$label":"ACTS_IN","name":"Dick Bennett","type":"Role","_key":"97952","_from":"3012","_to":"57685"} +{"$label":"ACTS_IN","name":"Doctor Halberstrom","type":"Role","_key":"72189","_from":"3012","_to":"43625"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"55661","_from":"3012","_to":"35434"} +{"$label":"ACTS_IN","name":"Dorrit Bentley","type":"Role","_key":"35051","_from":"3012","_to":"23910"} +{"$label":"ACTS_IN","name":"Trower","type":"Role","_key":"24940","_from":"3012","_to":"18024"} +{"$label":"ACTS_IN","name":"Count Ord\u00f3\u00f1ez","type":"Role","_key":"109697","_from":"3013","_to":"64787"} +{"$label":"ACTS_IN","name":"Marino Bello","type":"Role","_key":"45486","_from":"3013","_to":"30136"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32807","_from":"3013","_to":"22779"} +{"$label":"ACTS_IN","name":"George Nikolaos","type":"Role","_key":"16852","_from":"3013","_to":"12677"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"3529","_from":"3017","_to":"3015"} +{"$label":"DIRECTED","_key":"3526","_from":"3016","_to":"3015"} +{"$label":"DIRECTED","_key":"120650","_from":"3016","_to":"70855"} +{"$label":"DIRECTED","_key":"114990","_from":"3016","_to":"67722"} +{"$label":"DIRECTED","_key":"90917","_from":"3016","_to":"53631"} +{"$label":"DIRECTED","_key":"72332","_from":"3016","_to":"43683"} +{"$label":"DIRECTED","_key":"68750","_from":"3016","_to":"42123"} +{"$label":"DIRECTED","_key":"65686","_from":"3016","_to":"40687"} +{"$label":"DIRECTED","_key":"65128","_from":"3016","_to":"40453"} +{"$label":"DIRECTED","_key":"27262","_from":"3016","_to":"19605"} +{"$label":"DIRECTED","_key":"12592","_from":"3016","_to":"9849"} +{"$label":"DIRECTED","_key":"12143","_from":"3016","_to":"9522"} +{"$label":"DIRECTED","_key":"10207","_from":"3016","_to":"8147"} +{"$label":"DIRECTED","_key":"104269","_from":"3017","_to":"61347"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"97968","_from":"3017","_to":"57685"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"57410","_from":"3017","_to":"36396"} +{"$label":"ACTS_IN","name":"Charles Weston","type":"Role","_key":"3538","_from":"3027","_to":"3018"} +{"$label":"ACTS_IN","name":"Briggs","type":"Role","_key":"3537","_from":"3026","_to":"3018"} +{"$label":"ACTS_IN","name":"Witch King","type":"Role","_key":"3536","_from":"3025","_to":"3018"} +{"$label":"ACTS_IN","name":"Skull Island nation leader","type":"Role","_key":"3535","_from":"3024","_to":"3018"} +{"$label":"ACTS_IN","name":"John 'Jack' Driscoll","type":"Role","_key":"3534","_from":"3023","_to":"3018"} +{"$label":"ACTS_IN","name":"Carl Denham","type":"Role","_key":"3533","_from":"3022","_to":"3018"} +{"$label":"ACTS_IN","name":"Ann Darrow","type":"Role","_key":"3532","_from":"3021","_to":"3018"} +{"$label":"DIRECTED","_key":"3531","_from":"3020","_to":"3018"} +{"$label":"DIRECTED","_key":"3530","_from":"3019","_to":"3018"} +{"$label":"DIRECTED","_key":"28232","_from":"3020","_to":"20222"} +{"$label":"DIRECTED","_key":"17289","_from":"3020","_to":"12944"} +{"$label":"ACTS_IN","name":"Screaming door bell (voice) (archive sound)","type":"Role","_key":"41394","_from":"3021","_to":"27822"} +{"$label":"ACTS_IN","name":"Joanne Xavier","type":"Role","_key":"28001","_from":"3021","_to":"20078"} +{"$label":"ACTS_IN","name":"Eve Trowbridge","type":"Role","_key":"17291","_from":"3021","_to":"12944"} +{"$label":"ACTS_IN","name":"Alice Pope","type":"Role","_key":"16606","_from":"3021","_to":"12545"} +{"$label":"ACTS_IN","name":"Terris","type":"Role","_key":"114000","_from":"3022","_to":"67136"} +{"$label":"ACTS_IN","name":"Martin Trowbridge","type":"Role","_key":"17293","_from":"3022","_to":"12944"} +{"$label":"ACTS_IN","name":"Jeff Surrett","type":"Role","_key":"113507","_from":"3023","_to":"66878"} +{"$label":"ACTS_IN","name":"Kirby Dawson","type":"Role","_key":"101111","_from":"3023","_to":"59577"} +{"$label":"ACTS_IN","name":"Albert R. Saxby","type":"Role","_key":"8225","_from":"3023","_to":"6753"} +{"$label":"ACTS_IN","name":"Brophy","type":"Role","_key":"29364","_from":"3026","_to":"20852"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"3559","_from":"3048","_to":"3028"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"3558","_from":"3047","_to":"3028"} +{"$label":"ACTS_IN","name":"Lindsey's Mum","type":"Role","_key":"3557","_from":"3046","_to":"3028"} +{"$label":"ACTS_IN","name":"Will's Dad","type":"Role","_key":"3556","_from":"3045","_to":"3028"} +{"$label":"ACTS_IN","name":"Lindsey","type":"Role","_key":"3555","_from":"3044","_to":"3028"} +{"$label":"ACTS_IN","name":"Maitre D'","type":"Role","_key":"3554","_from":"3043","_to":"3028"} +{"$label":"ACTS_IN","name":"Louie, Angie's Kid","type":"Role","_key":"3553","_from":"3042","_to":"3028"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"3552","_from":"3041","_to":"3028"} +{"$label":"ACTS_IN","name":"Ellie","type":"Role","_key":"3551","_from":"3040","_to":"3028"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"3550","_from":"3039","_to":"3028"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"3549","_from":"3038","_to":"3028"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"3548","_from":"3037","_to":"3028"} +{"$label":"ACTS_IN","name":"Imogen","type":"Role","_key":"3547","_from":"3036","_to":"3028"} +{"$label":"ACTS_IN","name":"Imogen","type":"Role","_key":"3546","_from":"3035","_to":"3028"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"3545","_from":"3034","_to":"3028"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"3544","_from":"3033","_to":"3028"} +{"$label":"ACTS_IN","name":"Marcus Brewer","type":"Role","_key":"3542","_from":"3032","_to":"3028"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"3541","_from":"3031","_to":"3028"} +{"$label":"DIRECTED","_key":"3540","_from":"3030","_to":"3028"} +{"$label":"DIRECTED","_key":"3539","_from":"3029","_to":"3028"} +{"$label":"DIRECTED","_key":"115517","_from":"3029","_to":"67997"} +{"$label":"DIRECTED","_key":"108531","_from":"3029","_to":"64148"} +{"$label":"DIRECTED","_key":"19908","_from":"3029","_to":"14664"} +{"$label":"DIRECTED","_key":"18349","_from":"3029","_to":"13613"} +{"$label":"ACTS_IN","name":"Martin Coleman","type":"Role","_key":"9271","_from":"3029","_to":"7489"} +{"$label":"DIRECTED","_key":"108532","_from":"3030","_to":"64148"} +{"$label":"DIRECTED","_key":"53037","_from":"3030","_to":"34338"} +{"$label":"DIRECTED","_key":"18348","_from":"3030","_to":"13613"} +{"$label":"DIRECTED","_key":"16422","_from":"3030","_to":"12420"} +{"$label":"ACTS_IN","name":"Frederic Chopin","type":"Role","_key":"114571","_from":"3031","_to":"67493"} +{"$label":"ACTS_IN","name":"Anthony Campion","type":"Role","_key":"90018","_from":"3031","_to":"53251"} +{"$label":"ACTS_IN","name":"Samuel Faulkner","type":"Role","_key":"70065","_from":"3031","_to":"42720"} +{"$label":"ACTS_IN","name":"Lord James D'Ampton","type":"Role","_key":"69269","_from":"3031","_to":"42352"} +{"$label":"ACTS_IN","name":"Dr. Guy Luthan","type":"Role","_key":"69043","_from":"3031","_to":"42264"} +{"$label":"ACTS_IN","name":"Alex Fletcher","type":"Role","_key":"68320","_from":"3031","_to":"41934"} +{"$label":"ACTS_IN","name":"Reginald Anson","type":"Role","_key":"64516","_from":"3031","_to":"40187"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"64152","_from":"3031","_to":"40021"} +{"$label":"ACTS_IN","name":"Nigel","type":"Role","_key":"63683","_from":"3031","_to":"39830"} +{"$label":"ACTS_IN","name":"Michael Felgate","type":"Role","_key":"61290","_from":"3031","_to":"38698"} +{"$label":"ACTS_IN","name":"Daniel Cleaver","type":"Role","_key":"56944","_from":"3031","_to":"36142"} +{"$label":"ACTS_IN","name":"Martin Tweed","type":"Role","_key":"53031","_from":"3031","_to":"34338"} +{"$label":"ACTS_IN","name":"Charles Heidsieck","type":"Role","_key":"39357","_from":"3031","_to":"26619"} +{"$label":"ACTS_IN","name":"Edward Ferrars","type":"Role","_key":"32867","_from":"3031","_to":"22814"} +{"$label":"ACTS_IN","name":"George Wade","type":"Role","_key":"22437","_from":"3031","_to":"16308"} +{"$label":"ACTS_IN","name":"Cardinal","type":"Role","_key":"12179","_from":"3031","_to":"9544"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"8606","_from":"3031","_to":"6995"} +{"$label":"ACTS_IN","name":"Daniel Cleaver","type":"Role","_key":"7541","_from":"3031","_to":"6278"} +{"$label":"ACTS_IN","name":"William Thacker","type":"Role","_key":"6149","_from":"3031","_to":"5213"} +{"$label":"ACTS_IN","name":"The Prime Minister","type":"Role","_key":"6143","_from":"3031","_to":"5200"} +{"$label":"ACTS_IN","name":"Ralph Compton - 14 years","type":"Role","_key":"102713","_from":"3032","_to":"60425"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"45385","_from":"3032","_to":"30092"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"113909","_from":"3033","_to":"67089"} +{"$label":"ACTS_IN","name":"Petula","type":"Role","_key":"106431","_from":"3033","_to":"62701"} +{"$label":"ACTS_IN","name":"Dr. Lily Sinclair","type":"Role","_key":"88157","_from":"3033","_to":"52304"} +{"$label":"ACTS_IN","name":"Marlee","type":"Role","_key":"69173","_from":"3033","_to":"42305"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"65392","_from":"3033","_to":"40555"} +{"$label":"ACTS_IN","name":"Summer Hartley","type":"Role","_key":"49487","_from":"3033","_to":"32398"} +{"$label":"ACTS_IN","name":"Abigail Salmon","type":"Role","_key":"47622","_from":"3033","_to":"31382"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"37153","_from":"3033","_to":"25172"} +{"$label":"ACTS_IN","name":"Stimme von Saphira","type":"Role","_key":"21676","_from":"3033","_to":"15842"} +{"$label":"ACTS_IN","name":"Sue Lynne","type":"Role","_key":"17224","_from":"3033","_to":"12902"} +{"$label":"ACTS_IN","name":"Tessa Quayle","type":"Role","_key":"17177","_from":"3033","_to":"12868"} +{"$label":"ACTS_IN","name":"Amy Foster","type":"Role","_key":"16983","_from":"3033","_to":"12742"} +{"$label":"ACTS_IN","name":"Evelyn Carnahan O'Connell\/Princess Nefertiri","type":"Role","_key":"15328","_from":"3033","_to":"11726"} +{"$label":"ACTS_IN","name":"Junior Executive","type":"Role","_key":"15099","_from":"3033","_to":"11588"} +{"$label":"ACTS_IN","name":"Izzi","type":"Role","_key":"12862","_from":"3033","_to":"10044"} +{"$label":"ACTS_IN","name":"Tania Chernova","type":"Role","_key":"10109","_from":"3033","_to":"8094"} +{"$label":"ACTS_IN","name":"Evelyn Carnahan","type":"Role","_key":"6772","_from":"3033","_to":"5683"} +{"$label":"ACTS_IN","name":"Angela Dodson \/ Isabel Dodson","type":"Role","_key":"6728","_from":"3033","_to":"5655"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"51817","_from":"3034","_to":"33813"} +{"$label":"ACTS_IN","name":"Nymphadora Tonks","type":"Role","_key":"89529","_from":"3040","_to":"52992"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"65685","_from":"3040","_to":"40687"} +{"$label":"ACTS_IN","name":"Helene de Sisi","type":"Role","_key":"121082","_from":"3046","_to":"71109"} +{"$label":"ACTS_IN","name":"Evelyn Barnes","type":"Role","_key":"33532","_from":"3046","_to":"23182"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"114688","_from":"3047","_to":"67560"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"50439","_from":"3048","_to":"32948"} +{"$label":"ACTS_IN","name":"Kneipenbesitzer","type":"Role","_key":"3570","_from":"3059","_to":"3049"} +{"$label":"ACTS_IN","name":"Ogi","type":"Role","_key":"3569","_from":"3058","_to":"3049"} +{"$label":"ACTS_IN","name":"Ginzo","type":"Role","_key":"3568","_from":"3057","_to":"3049"} +{"$label":"ACTS_IN","name":"Hattoris Frau","type":"Role","_key":"3567","_from":"3056","_to":"3049"} +{"$label":"ACTS_IN","name":"Geisha O-Kinu","type":"Role","_key":"3566","_from":"3055","_to":"3049"} +{"$label":"ACTS_IN","name":"Geisha O-Sei","type":"Role","_key":"3565","_from":"3054","_to":"3049"} +{"$label":"ACTS_IN","name":"Shinkichi","type":"Role","_key":"3564","_from":"3053","_to":"3049"} +{"$label":"ACTS_IN","name":"Tante O-Ume","type":"Role","_key":"3563","_from":"3052","_to":"3049"} +{"$label":"ACTS_IN","name":"Hattori, der Leibw\u00e4chter","type":"Role","_key":"3562","_from":"3051","_to":"3049"} +{"$label":"ACTS_IN","name":"Zat\u00f4ichi","type":"Role","_key":"3561","_from":"3050","_to":"3049"} +{"$label":"DIRECTED","_key":"3560","_from":"3050","_to":"3049"} +{"$label":"DIRECTED","_key":"90682","_from":"3050","_to":"53535"} +{"$label":"DIRECTED","_key":"88414","_from":"3050","_to":"52403"} +{"$label":"DIRECTED","_key":"46896","_from":"3050","_to":"30915"} +{"$label":"DIRECTED","_key":"40328","_from":"3050","_to":"27206"} +{"$label":"DIRECTED","_key":"30846","_from":"3050","_to":"21616"} +{"$label":"DIRECTED","_key":"10348","_from":"3050","_to":"8235"} +{"$label":"DIRECTED","_key":"4489","_from":"3050","_to":"3829"} +{"$label":"ACTS_IN","name":"Azuma","type":"Role","_key":"90678","_from":"3050","_to":"53535"} +{"$label":"ACTS_IN","name":"Machisu","type":"Role","_key":"88415","_from":"3050","_to":"52403"} +{"$label":"ACTS_IN","name":"Sgt. Gengo Hara","type":"Role","_key":"72907","_from":"3050","_to":"43905"} +{"$label":"ACTS_IN","name":"Takahashi","type":"Role","_key":"57609","_from":"3050","_to":"36479"} +{"$label":"ACTS_IN","name":"Aniki Murakawa","type":"Role","_key":"46883","_from":"3050","_to":"30915"} +{"$label":"ACTS_IN","name":"Nishi Yoshitaka","type":"Role","_key":"40329","_from":"3050","_to":"27206"} +{"$label":"ACTS_IN","name":"Kikujiro","type":"Role","_key":"30834","_from":"3050","_to":"21616"} +{"$label":"ACTS_IN","name":"Kitano","type":"Role","_key":"26518","_from":"3050","_to":"19063"} +{"$label":"ACTS_IN","name":"Kitano","type":"Role","_key":"26511","_from":"3050","_to":"19058"} +{"$label":"ACTS_IN","name":"Aniki Yamamoto","type":"Role","_key":"4490","_from":"3050","_to":"3829"} +{"$label":"ACTS_IN","name":"Aman","type":"Role","_key":"107290","_from":"3051","_to":"63279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103973","_from":"3051","_to":"61158"} +{"$label":"ACTS_IN","name":"Temudjin","type":"Role","_key":"89014","_from":"3051","_to":"52727"} +{"$label":"ACTS_IN","name":"Kenji","type":"Role","_key":"71018","_from":"3051","_to":"43130"} +{"$label":"ACTS_IN","name":"Kakihara","type":"Role","_key":"55764","_from":"3051","_to":"35497"} +{"$label":"ACTS_IN","name":"Masaos Mutter","type":"Role","_key":"30837","_from":"3055","_to":"21616"} +{"$label":"ACTS_IN","name":"Young Ryoko","type":"Role","_key":"10357","_from":"3055","_to":"8235"} +{"$label":"ACTS_IN","name":"Shizu\/Mitsu","type":"Role","_key":"100399","_from":"3056","_to":"59206"} +{"$label":"ACTS_IN","name":"Shoji Takahashi","type":"Role","_key":"117270","_from":"3057","_to":"68972"} +{"$label":"ACTS_IN","name":"Tatsuya Kobayashi","type":"Role","_key":"107294","_from":"3057","_to":"63279"} +{"$label":"ACTS_IN","name":"Counselor","type":"Role","_key":"118582","_from":"3059","_to":"69723"} +{"$label":"ACTS_IN","name":"Narrator (uncredited)","type":"Role","_key":"3588","_from":"3073","_to":"3060"} +{"$label":"ACTS_IN","name":"Mr. Grimes","type":"Role","_key":"3587","_from":"3072","_to":"3060"} +{"$label":"ACTS_IN","name":"Mrs. Ruthie O'Reilly","type":"Role","_key":"3586","_from":"3071","_to":"3060"} +{"$label":"ACTS_IN","name":"Joe Piano - motel manager","type":"Role","_key":"3585","_from":"3070","_to":"3060"} +{"$label":"ACTS_IN","name":"Maurice Oboukhoff","type":"Role","_key":"3584","_from":"3069","_to":"3060"} +{"$label":"ACTS_IN","name":"Leo the Loanshark","type":"Role","_key":"3583","_from":"3068","_to":"3060"} +{"$label":"ACTS_IN","name":"Track Parking Attendant","type":"Role","_key":"3580","_from":"3067","_to":"3060"} +{"$label":"ACTS_IN","name":"Mike O'Reilly","type":"Role","_key":"3579","_from":"3066","_to":"3060"} +{"$label":"ACTS_IN","name":"Sherry Peatty","type":"Role","_key":"3577","_from":"3065","_to":"3060"} +{"$label":"ACTS_IN","name":"George Peatty","type":"Role","_key":"3576","_from":"3064","_to":"3060"} +{"$label":"ACTS_IN","name":"Marvin Unger","type":"Role","_key":"3575","_from":"3063","_to":"3060"} +{"$label":"ACTS_IN","name":"Val Cannon","type":"Role","_key":"3574","_from":"3062","_to":"3060"} +{"$label":"ACTS_IN","name":"Fay","type":"Role","_key":"3573","_from":"3061","_to":"3060"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"119040","_from":"3061","_to":"69977"} +{"$label":"ACTS_IN","name":"Fen","type":"Role","_key":"25693","_from":"3061","_to":"18490"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"118185","_from":"3062","_to":"69456"} +{"$label":"ACTS_IN","name":"Hawk","type":"Role","_key":"46127","_from":"3062","_to":"30480"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"24944","_from":"3062","_to":"18024"} +{"$label":"DIRECTED","_key":"55216","_from":"3062","_to":"35225"} +{"$label":"ACTS_IN","name":"Marshall Rube Morris","type":"Role","_key":"117231","_from":"3063","_to":"68960"} +{"$label":"ACTS_IN","name":"Luther Yerkes","type":"Role","_key":"39140","_from":"3063","_to":"26456"} +{"$label":"ACTS_IN","name":"Mr. Pittman","type":"Role","_key":"34936","_from":"3063","_to":"23859"} +{"$label":"ACTS_IN","name":"Watson Pritchard","type":"Role","_key":"106138","_from":"3064","_to":"62509"} +{"$label":"ACTS_IN","name":"Mickey Crawford","type":"Role","_key":"104099","_from":"3064","_to":"61243"} +{"$label":"ACTS_IN","name":"Gordon 'Weasel' Phillips","type":"Role","_key":"69242","_from":"3064","_to":"42339"} +{"$label":"ACTS_IN","name":"Frank 'Stonewall' Torrey","type":"Role","_key":"26027","_from":"3064","_to":"18705"} +{"$label":"ACTS_IN","name":"Wilmer Cook","type":"Role","_key":"11454","_from":"3064","_to":"9009"} +{"$label":"ACTS_IN","name":"Harry Jones","type":"Role","_key":"10830","_from":"3064","_to":"8581"} +{"$label":"ACTS_IN","name":"Mr. Nicklas","type":"Role","_key":"9487","_from":"3064","_to":"7653"} +{"$label":"ACTS_IN","name":"Goldie","type":"Role","_key":"115674","_from":"3065","_to":"68096"} +{"$label":"ACTS_IN","name":"Mrs Murphy","type":"Role","_key":"106996","_from":"3065","_to":"63076"} +{"$label":"ACTS_IN","name":"Eva Miller","type":"Role","_key":"69250","_from":"3065","_to":"42339"} +{"$label":"ACTS_IN","name":"Frank Daylon","type":"Role","_key":"120173","_from":"3066","_to":"70580"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"110943","_from":"3066","_to":"65529"} +{"$label":"ACTS_IN","name":"Sgt. Gateson","type":"Role","_key":"29397","_from":"3066","_to":"20861"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"28700","_from":"3066","_to":"20507"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"107582","_from":"3067","_to":"63475"} +{"$label":"ACTS_IN","name":"Cpl. Allen Melvin","type":"Role","_key":"11614","_from":"3067","_to":"9116"} +{"$label":"ACTS_IN","name":"Laura's Maid","type":"Role","_key":"16815","_from":"3071","_to":"12664"} +{"$label":"ACTS_IN","name":"Gottesmann","type":"Role","_key":"39099","_from":"3072","_to":"26427"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"3599","_from":"3081","_to":"3074"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"3598","_from":"3080","_to":"3074"} +{"$label":"ACTS_IN","name":"Carlos Romero","type":"Role","_key":"3595","_from":"3079","_to":"3074"} +{"$label":"ACTS_IN","name":"Judge Henry G. Blake","type":"Role","_key":"3594","_from":"3078","_to":"3074"} +{"$label":"ACTS_IN","name":"Elizabeth \"Queenie\" Martin","type":"Role","_key":"3592","_from":"3077","_to":"3074"} +{"$label":"ACTS_IN","name":"Dave 'the Dude' Conway","type":"Role","_key":"3591","_from":"3076","_to":"3074"} +{"$label":"ACTS_IN","name":"Apple Annie","type":"Role","_key":"3590","_from":"3075","_to":"3074"} +{"$label":"ACTS_IN","name":"Leslie Crosbie","type":"Role","_key":"113982","_from":"3075","_to":"67129"} +{"$label":"ACTS_IN","name":"Gabrielle Maple","type":"Role","_key":"110939","_from":"3075","_to":"65529"} +{"$label":"ACTS_IN","name":"Queen Elizabeth","type":"Role","_key":"110411","_from":"3075","_to":"65234"} +{"$label":"ACTS_IN","name":"Letha","type":"Role","_key":"101911","_from":"3075","_to":"59980"} +{"$label":"ACTS_IN","name":"Aunt Elizabeth","type":"Role","_key":"95147","_from":"3075","_to":"55990"} +{"$label":"ACTS_IN","name":"Charlotte Hollis","type":"Role","_key":"62460","_from":"3075","_to":"39339"} +{"$label":"ACTS_IN","name":"Baby Jane Hudson","type":"Role","_key":"61888","_from":"3075","_to":"38952"} +{"$label":"ACTS_IN","name":"(in \"Deception\") (archive footage)","type":"Role","_key":"53879","_from":"3075","_to":"34691"} +{"$label":"ACTS_IN","name":"Marie van Schuyler","type":"Role","_key":"41598","_from":"3075","_to":"27940"} +{"$label":"ACTS_IN","name":"Carrie Louise Serrocold","type":"Role","_key":"41373","_from":"3075","_to":"27819"} +{"$label":"ACTS_IN","name":"Marie Van Schuyler","type":"Role","_key":"29979","_from":"3075","_to":"21170"} +{"$label":"ACTS_IN","name":"Julie Marsden","type":"Role","_key":"17119","_from":"3075","_to":"12831"} +{"$label":"ACTS_IN","name":"Margo Channing","type":"Role","_key":"8505","_from":"3075","_to":"6942"} +{"$label":"ACTS_IN","name":"Det. Sgt. Dave Bannion","type":"Role","_key":"100908","_from":"3076","_to":"59488"} +{"$label":"ACTS_IN","name":"Ben Wade","type":"Role","_key":"98876","_from":"3076","_to":"58264"} +{"$label":"ACTS_IN","name":"Rear Admiral Raymond A. Spruance","type":"Role","_key":"69766","_from":"3076","_to":"42583"} +{"$label":"ACTS_IN","name":"Tom Wolcott","type":"Role","_key":"35050","_from":"3076","_to":"23910"} +{"$label":"ACTS_IN","name":"General Bradley","type":"Role","_key":"33594","_from":"3076","_to":"23204"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"29026","_from":"3076","_to":"20709"} +{"$label":"ACTS_IN","name":"Johnny Farrell","type":"Role","_key":"28696","_from":"3076","_to":"20507"} +{"$label":"ACTS_IN","name":"Jonathan Kent","type":"Role","_key":"16660","_from":"3076","_to":"12577"} +{"$label":"ACTS_IN","name":"Jim Killan","type":"Role","_key":"15547","_from":"3076","_to":"11870"} +{"$label":"ACTS_IN","name":"Elliott Nash","type":"Role","_key":"15539","_from":"3076","_to":"11866"} +{"$label":"ACTS_IN","name":"Joanna Kersey","type":"Role","_key":"97586","_from":"3077","_to":"57463"} +{"$label":"ACTS_IN","name":"Cheryl Walsh","type":"Role","_key":"59454","_from":"3077","_to":"37551"} +{"$label":"ACTS_IN","name":"Mrs. Williams","type":"Role","_key":"9353","_from":"3077","_to":"7553"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114775","_from":"3078","_to":"67605"} +{"$label":"ACTS_IN","name":"Henry Barnard","type":"Role","_key":"28301","_from":"3078","_to":"20257"} +{"$label":"ACTS_IN","name":"Diz Moore","type":"Role","_key":"25584","_from":"3078","_to":"18430"} +{"$label":"ACTS_IN","name":"Uncle Billy","type":"Role","_key":"14037","_from":"3078","_to":"10886"} +{"$label":"ACTS_IN","name":"Doc Boone","type":"Role","_key":"11765","_from":"3078","_to":"9231"} +{"$label":"ACTS_IN","name":"Gerald O'Hara","type":"Role","_key":"9046","_from":"3078","_to":"7317"} +{"$label":"ACTS_IN","name":"Mayor Jonas Henderson","type":"Role","_key":"4025","_from":"3078","_to":"3434"} +{"$label":"ACTS_IN","name":"Hunk Houghton","type":"Role","_key":"105489","_from":"3080","_to":"62078"} +{"$label":"ACTS_IN","name":"Peter Boggs","type":"Role","_key":"43901","_from":"3080","_to":"29302"} +{"$label":"ACTS_IN","name":"Charming Jones","type":"Role","_key":"117016","_from":"3081","_to":"68868"} +{"$label":"ACTS_IN","name":"Barbara Mitchell","type":"Role","_key":"116735","_from":"3081","_to":"68714"} +{"$label":"ACTS_IN","name":"Ariel Gustafson","type":"Role","_key":"105152","_from":"3081","_to":"61877"} +{"$label":"ACTS_IN","name":"Medda Larkson","type":"Role","_key":"103911","_from":"3081","_to":"61125"} +{"$label":"ACTS_IN","name":"Jezebel Dezire","type":"Role","_key":"100932","_from":"3081","_to":"59497"} +{"$label":"ACTS_IN","name":"Sylvia Newman","type":"Role","_key":"96247","_from":"3081","_to":"56561"} +{"$label":"ACTS_IN","name":"Ariel Truax","type":"Role","_key":"70387","_from":"3081","_to":"42869"} +{"$label":"ACTS_IN","name":"Nora Walker Hobbs","type":"Role","_key":"69152","_from":"3081","_to":"42295"} +{"$label":"ACTS_IN","name":"Wendy Meyers","type":"Role","_key":"56479","_from":"3081","_to":"35880"} +{"$label":"ACTS_IN","name":"Rusty Martin","type":"Role","_key":"18286","_from":"3081","_to":"13569"} +{"$label":"ACTS_IN","name":"Melba Nile","type":"Role","_key":"10550","_from":"3081","_to":"8385"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"3604","_from":"3085","_to":"3082"} +{"$label":"ACTS_IN","name":"Oliver Rose","type":"Role","_key":"3602","_from":"3084","_to":"3082"} +{"$label":"ACTS_IN","name":"Barbara Rose","type":"Role","_key":"3601","_from":"3083","_to":"3082"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"114136","_from":"3083","_to":"67216"} +{"$label":"ACTS_IN","name":"Matty Walker","type":"Role","_key":"100125","_from":"3083","_to":"59059"} +{"$label":"ACTS_IN","name":"Ms. Kornblut","type":"Role","_key":"99555","_from":"3083","_to":"58688"} +{"$label":"ACTS_IN","name":"Jane Blue","type":"Role","_key":"90882","_from":"3083","_to":"53623"} +{"$label":"ACTS_IN","name":"Dana Coles","type":"Role","_key":"72065","_from":"3083","_to":"43573"} +{"$label":"ACTS_IN","name":"Beverly Sutphin","type":"Role","_key":"70945","_from":"3083","_to":"43099"} +{"$label":"ACTS_IN","name":"Dolores Benedict","type":"Role","_key":"70941","_from":"3083","_to":"43098"} +{"$label":"ACTS_IN","name":"Joan Wilder","type":"Role","_key":"62480","_from":"3083","_to":"39351"} +{"$label":"ACTS_IN","name":"Peggy Sue","type":"Role","_key":"59443","_from":"3083","_to":"37549"} +{"$label":"ACTS_IN","name":"Joan Wilder","type":"Role","_key":"53144","_from":"3083","_to":"34383"} +{"$label":"ACTS_IN","name":"Irene Walker","type":"Role","_key":"18036","_from":"3083","_to":"13405"} +{"$label":"ACTS_IN","name":"Mrs. Lisbon","type":"Role","_key":"13359","_from":"3083","_to":"10404"} +{"$label":"ACTS_IN","name":"Superior Court Judge Steven R. Hardin","type":"Role","_key":"90732","_from":"3084","_to":"53554"} +{"$label":"ACTS_IN","name":"Uncle Wayne","type":"Role","_key":"90252","_from":"3084","_to":"53362"} +{"$label":"ACTS_IN","name":"Nathan R. Conrad","type":"Role","_key":"88035","_from":"3084","_to":"52260"} +{"$label":"ACTS_IN","name":"Dr. Mark Bellows","type":"Role","_key":"68642","_from":"3084","_to":"42071"} +{"$label":"ACTS_IN","name":"Prof. Grady Tripp","type":"Role","_key":"67225","_from":"3084","_to":"41455"} +{"$label":"ACTS_IN","name":"Dan Gallagher","type":"Role","_key":"67186","_from":"3084","_to":"41448"} +{"$label":"ACTS_IN","name":"Gordon Gekko","type":"Role","_key":"64968","_from":"3084","_to":"40382"} +{"$label":"ACTS_IN","name":"Charles Remington","type":"Role","_key":"64260","_from":"3084","_to":"40077"} +{"$label":"ACTS_IN","name":"Jack Colton","type":"Role","_key":"62479","_from":"3084","_to":"39351"} +{"$label":"ACTS_IN","name":"Jack T. Colton","type":"Role","_key":"53143","_from":"3084","_to":"34383"} +{"$label":"ACTS_IN","name":"Andrew Shepherd","type":"Role","_key":"52486","_from":"3084","_to":"34144"} +{"$label":"ACTS_IN","name":"Tom Sanders","type":"Role","_key":"51835","_from":"3084","_to":"33826"} +{"$label":"ACTS_IN","name":"Pete Garrison","type":"Role","_key":"39603","_from":"3084","_to":"26771"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"38880","_from":"3084","_to":"26262"} +{"$label":"ACTS_IN","name":"Steve Tobias","type":"Role","_key":"36101","_from":"3084","_to":"24499"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"29600","_from":"3084","_to":"20953"} +{"$label":"ACTS_IN","name":"Nicholas Van Orton","type":"Role","_key":"22499","_from":"3084","_to":"16355"} +{"$label":"ACTS_IN","name":"Mr. Burmeister","type":"Role","_key":"18700","_from":"3084","_to":"13841"} +{"$label":"ACTS_IN","name":"Steven Taylor","type":"Role","_key":"17029","_from":"3084","_to":"12774"} +{"$label":"ACTS_IN","name":"Robert Wakefield","type":"Role","_key":"16399","_from":"3084","_to":"12416"} +{"$label":"ACTS_IN","name":"Mr. Thompson","type":"Role","_key":"15750","_from":"3084","_to":"11996"} +{"$label":"ACTS_IN","name":"Zach","type":"Role","_key":"15716","_from":"3084","_to":"11977"} +{"$label":"ACTS_IN","name":"Richard Adams","type":"Role","_key":"11688","_from":"3084","_to":"9177"} +{"$label":"ACTS_IN","name":"Det. Nick Curran","type":"Role","_key":"5092","_from":"3084","_to":"4328"} +{"$label":"ACTS_IN","name":"Dr. Leidzinger","type":"Role","_key":"36557","_from":"3085","_to":"24784"} +{"$label":"ACTS_IN","name":"Reporterin","type":"Role","_key":"33455","_from":"3085","_to":"23146"} +{"$label":"ACTS_IN","name":"Jasmin M\u00fcnchgstettner","type":"Role","_key":"27748","_from":"3085","_to":"19886"} +{"$label":"ACTS_IN","name":"M\u00e8re Barberin","type":"Role","_key":"20962","_from":"3085","_to":"15337"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"3621","_from":"3099","_to":"3086"} +{"$label":"ACTS_IN","name":"Preben","type":"Role","_key":"3620","_from":"3098","_to":"3086"} +{"$label":"ACTS_IN","name":"Ratko","type":"Role","_key":"3619","_from":"3097","_to":"3086"} +{"$label":"ACTS_IN","name":"Erling","type":"Role","_key":"3618","_from":"3096","_to":"3086"} +{"$label":"ACTS_IN","name":"J\u00f8rgen","type":"Role","_key":"3617","_from":"3095","_to":"3086"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"3615","_from":"3094","_to":"3086"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"3614","_from":"3093","_to":"3086"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"3612","_from":"3092","_to":"3086"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"3611","_from":"3091","_to":"3086"} +{"$label":"ACTS_IN","name":"Vuk","type":"Role","_key":"3609","_from":"3090","_to":"3086"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"3608","_from":"3089","_to":"3086"} +{"$label":"ACTS_IN","name":"Arvid","type":"Role","_key":"3607","_from":"3088","_to":"3086"} +{"$label":"DIRECTED","_key":"3606","_from":"3087","_to":"3086"} +{"$label":"DIRECTED","_key":"65455","_from":"3087","_to":"40575"} +{"$label":"DIRECTED","_key":"35401","_from":"3087","_to":"24090"} +{"$label":"ACTS_IN","name":"Pierre Duret","type":"Role","_key":"119599","_from":"3088","_to":"70250"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"102365","_from":"3088","_to":"60232"} +{"$label":"ACTS_IN","name":"Petar Ivkovic","type":"Role","_key":"31124","_from":"3088","_to":"21783"} +{"$label":"ACTS_IN","name":"Michael Larsen","type":"Role","_key":"116673","_from":"3089","_to":"68683"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"114564","_from":"3089","_to":"67490"} +{"$label":"ACTS_IN","name":"J\u00f8rgen","type":"Role","_key":"106466","_from":"3089","_to":"62723"} +{"$label":"ACTS_IN","name":"Claes Kiehlert","type":"Role","_key":"106382","_from":"3089","_to":"62681"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"106090","_from":"3089","_to":"62474"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"65449","_from":"3089","_to":"40575"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"43730","_from":"3089","_to":"29206"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"35402","_from":"3089","_to":"24090"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"17933","_from":"3089","_to":"13337"} +{"$label":"ACTS_IN","name":"Vuk","type":"Role","_key":"65451","_from":"3090","_to":"40575"} +{"$label":"DIRECTED","_key":"119640","_from":"3091","_to":"70275"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"65454","_from":"3091","_to":"40575"} +{"$label":"ACTS_IN","name":"H\u00e5ndv\u00e6rker","type":"Role","_key":"35240","_from":"3091","_to":"23998"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"35231","_from":"3092","_to":"23998"} +{"$label":"ACTS_IN","name":"Onklen","type":"Role","_key":"4295","_from":"3095","_to":"3644"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"35415","_from":"3097","_to":"24090"} +{"$label":"ACTS_IN","name":"Radovan","type":"Role","_key":"17926","_from":"3097","_to":"13337"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"107075","_from":"3099","_to":"63130"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"106081","_from":"3099","_to":"62463"} +{"$label":"ACTS_IN","name":"Pia","type":"Role","_key":"4280","_from":"3099","_to":"3644"} +{"$label":"ACTS_IN","name":"Carl Bruner","type":"Role","_key":"3636","_from":"3114","_to":"3100"} +{"$label":"ACTS_IN","name":"Woman Ghost","type":"Role","_key":"3635","_from":"3113","_to":"3100"} +{"$label":"ACTS_IN","name":"Emergency Room Ghost","type":"Role","_key":"3634","_from":"3112","_to":"3100"} +{"$label":"ACTS_IN","name":"Willie Lopez","type":"Role","_key":"3633","_from":"3111","_to":"3100"} +{"$label":"ACTS_IN","name":"Ortisha's Friend","type":"Role","_key":"3632","_from":"3110","_to":"3100"} +{"$label":"ACTS_IN","name":"Orlando","type":"Role","_key":"3631","_from":"3109","_to":"3100"} +{"$label":"ACTS_IN","name":"Rosa Santiago","type":"Role","_key":"3630","_from":"3108","_to":"3100"} +{"$label":"ACTS_IN","name":"Police Sgt.","type":"Role","_key":"3629","_from":"3107","_to":"3100"} +{"$label":"ACTS_IN","name":"Oda Mae's Sister","type":"Role","_key":"3628","_from":"3106","_to":"3100"} +{"$label":"ACTS_IN","name":"Oda Mae's Sister","type":"Role","_key":"3627","_from":"3105","_to":"3100"} +{"$label":"ACTS_IN","name":"Ortisha","type":"Role","_key":"3626","_from":"3104","_to":"3100"} +{"$label":"ACTS_IN","name":"Subway Ghost","type":"Role","_key":"3625","_from":"3103","_to":"3100"} +{"$label":"ACTS_IN","name":"Molly Jensen","type":"Role","_key":"3624","_from":"3102","_to":"3100"} +{"$label":"DIRECTED","_key":"3622","_from":"3101","_to":"3100"} +{"$label":"DIRECTED","_key":"88320","_from":"3101","_to":"52377"} +{"$label":"DIRECTED","_key":"57693","_from":"3101","_to":"36524"} +{"$label":"DIRECTED","_key":"50707","_from":"3101","_to":"33102"} +{"$label":"DIRECTED","_key":"43872","_from":"3101","_to":"29295"} +{"$label":"DIRECTED","_key":"9587","_from":"3101","_to":"7714"} +{"$label":"ACTS_IN","name":"Martha Marie \/ 'Marty' Talridge","type":"Role","_key":"119268","_from":"3102","_to":"70077"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"115146","_from":"3102","_to":"67807"} +{"$label":"ACTS_IN","name":"Nicole 'Nikki' Hollis","type":"Role","_key":"99735","_from":"3102","_to":"58819"} +{"$label":"ACTS_IN","name":"Laura Quinn","type":"Role","_key":"93385","_from":"3102","_to":"55005"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"89571","_from":"3102","_to":"53002"} +{"$label":"ACTS_IN","name":"Diane Lightson","type":"Role","_key":"72820","_from":"3102","_to":"43870"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"70647","_from":"3102","_to":"42993"} +{"$label":"ACTS_IN","name":"Abby Quinn","type":"Role","_key":"67751","_from":"3102","_to":"41653"} +{"$label":"ACTS_IN","name":"Virginia Fallon","type":"Role","_key":"65378","_from":"3102","_to":"40552"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"63974","_from":"3102","_to":"39952"} +{"$label":"ACTS_IN","name":"Hester Prynne","type":"Role","_key":"63897","_from":"3102","_to":"39922"} +{"$label":"ACTS_IN","name":"Erin Grant,","type":"Role","_key":"57555","_from":"3102","_to":"36462"} +{"$label":"ACTS_IN","name":"Rachel Carlson","type":"Role","_key":"56333","_from":"3102","_to":"35796"} +{"$label":"ACTS_IN","name":"Annie Laird","type":"Role","_key":"55113","_from":"3102","_to":"35189"} +{"$label":"ACTS_IN","name":"Madison Lee","type":"Role","_key":"54067","_from":"3102","_to":"34775"} +{"$label":"ACTS_IN","name":"Samantha Albertson","type":"Role","_key":"52683","_from":"3102","_to":"34207"} +{"$label":"ACTS_IN","name":"Meredith Johnson","type":"Role","_key":"51836","_from":"3102","_to":"33826"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"40885","_from":"3102","_to":"27510"} +{"$label":"ACTS_IN","name":"Diana Murphy","type":"Role","_key":"31990","_from":"3102","_to":"22300"} +{"$label":"ACTS_IN","name":"Lieutenant Jordan O'Neil","type":"Role","_key":"31661","_from":"3102","_to":"22099"} +{"$label":"ACTS_IN","name":"Det. Tracy Atwood","type":"Role","_key":"27179","_from":"3102","_to":"19541"} +{"$label":"ACTS_IN","name":"Dallas Grimes (voice)","type":"Role","_key":"26530","_from":"3102","_to":"19068"} +{"$label":"ACTS_IN","name":"Lt. Cdr. JoAnne Galloway","type":"Role","_key":"10482","_from":"3102","_to":"8340"} +{"$label":"ACTS_IN","name":"Mr. Paradise","type":"Role","_key":"104574","_from":"3103","_to":"61510"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97368","_from":"3103","_to":"57336"} +{"$label":"ACTS_IN","name":"Mr. Vargas","type":"Role","_key":"94025","_from":"3103","_to":"55369"} +{"$label":"ACTS_IN","name":"Don Luigi","type":"Role","_key":"17281","_from":"3103","_to":"12932"} +{"$label":"ACTS_IN","name":"Maynard Smith","type":"Role","_key":"15982","_from":"3103","_to":"12149"} +{"$label":"ACTS_IN","name":"Chester","type":"Role","_key":"14455","_from":"3103","_to":"11171"} +{"$label":"ACTS_IN","name":"Dr. Kaufman","type":"Role","_key":"8636","_from":"3103","_to":"7008"} +{"$label":"ACTS_IN","name":"Fredrickson","type":"Role","_key":"6184","_from":"3103","_to":"5224"} +{"$label":"ACTS_IN","name":"Fred Franklin","type":"Role","_key":"121008","_from":"3107","_to":"71073"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"120437","_from":"3107","_to":"70751"} +{"$label":"ACTS_IN","name":"Zeb (voice)","type":"Role","_key":"115875","_from":"3107","_to":"68225"} +{"$label":"ACTS_IN","name":"Dr. Freeman","type":"Role","_key":"104938","_from":"3107","_to":"61746"} +{"$label":"ACTS_IN","name":"Chode (voice)","type":"Role","_key":"102070","_from":"3107","_to":"60047"} +{"$label":"ACTS_IN","name":"Sculptor","type":"Role","_key":"93067","_from":"3107","_to":"54864"} +{"$label":"ACTS_IN","name":"Glover","type":"Role","_key":"87943","_from":"3107","_to":"52222"} +{"$label":"ACTS_IN","name":"KC","type":"Role","_key":"59719","_from":"3107","_to":"37702"} +{"$label":"ACTS_IN","name":"Talent Scout","type":"Role","_key":"58376","_from":"3107","_to":"36888"} +{"$label":"ACTS_IN","name":"Man who hires Wells","type":"Role","_key":"45548","_from":"3107","_to":"30156"} +{"$label":"ACTS_IN","name":"Suds","type":"Role","_key":"35007","_from":"3107","_to":"23895"} +{"$label":"ACTS_IN","name":"Milton","type":"Role","_key":"13653","_from":"3107","_to":"10605"} +{"$label":"ACTS_IN","name":"Rat Man","type":"Role","_key":"94978","_from":"3111","_to":"55928"} +{"$label":"ACTS_IN","name":"Gatesman","type":"Role","_key":"56971","_from":"3111","_to":"36151"} +{"$label":"ACTS_IN","name":"John Collingwood","type":"Role","_key":"116052","_from":"3114","_to":"68340"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"115834","_from":"3114","_to":"68192"} +{"$label":"ACTS_IN","name":"Clark Clifford","type":"Role","_key":"110399","_from":"3114","_to":"65230"} +{"$label":"ACTS_IN","name":"Ted Bukovsky","type":"Role","_key":"101039","_from":"3114","_to":"59542"} +{"$label":"ACTS_IN","name":"Michael Drucker","type":"Role","_key":"49872","_from":"3114","_to":"32650"} +{"$label":"ACTS_IN","name":"Colonel Bagley","type":"Role","_key":"7312","_from":"3114","_to":"6096"} +{"$label":"DIRECTED","_key":"90868","_from":"3114","_to":"53612"} +{"$label":"DIRECTED","_key":"47001","_from":"3114","_to":"30983"} +{"$label":"ACTS_IN","name":"Mr. Slugworth","type":"Role","_key":"3654","_from":"3132","_to":"3115"} +{"$label":"ACTS_IN","name":"Henrietta Salt","type":"Role","_key":"3653","_from":"3131","_to":"3115"} +{"$label":"ACTS_IN","name":"The Tinker","type":"Role","_key":"3652","_from":"3130","_to":"3115"} +{"$label":"ACTS_IN","name":"Mr. Turkentine","type":"Role","_key":"3651","_from":"3129","_to":"3115"} +{"$label":"ACTS_IN","name":"Bill, Candy Shop Owner","type":"Role","_key":"3650","_from":"3128","_to":"3115"} +{"$label":"ACTS_IN","name":"Mrs. Bucket","type":"Role","_key":"3649","_from":"3127","_to":"3115"} +{"$label":"ACTS_IN","name":"Mrs. Gloop","type":"Role","_key":"3648","_from":"3126","_to":"3115"} +{"$label":"ACTS_IN","name":"Mike Teevee","type":"Role","_key":"3647","_from":"3125","_to":"3115"} +{"$label":"ACTS_IN","name":"Mrs. Teevee","type":"Role","_key":"3646","_from":"3124","_to":"3115"} +{"$label":"ACTS_IN","name":"Violet Beauregarde","type":"Role","_key":"3645","_from":"3123","_to":"3115"} +{"$label":"ACTS_IN","name":"Mr. Sam Beauregarde","type":"Role","_key":"3644","_from":"3122","_to":"3115"} +{"$label":"ACTS_IN","name":"Veruca Salt","type":"Role","_key":"3643","_from":"3121","_to":"3115"} +{"$label":"ACTS_IN","name":"Mr. Henry Salt","type":"Role","_key":"3642","_from":"3120","_to":"3115"} +{"$label":"ACTS_IN","name":"Charlie Bucket","type":"Role","_key":"3641","_from":"3119","_to":"3115"} +{"$label":"ACTS_IN","name":"Grandpa Joe","type":"Role","_key":"3640","_from":"3118","_to":"3115"} +{"$label":"ACTS_IN","name":"Willy Wonka","type":"Role","_key":"3639","_from":"3117","_to":"3115"} +{"$label":"DIRECTED","_key":"3638","_from":"3116","_to":"3115"} +{"$label":"DIRECTED","_key":"71246","_from":"3116","_to":"43224"} +{"$label":"DIRECTED","_key":"19792","_from":"3116","_to":"14615"} +{"$label":"ACTS_IN","name":"Claude \/ Philippe","type":"Role","_key":"121074","_from":"3117","_to":"71109"} +{"$label":"ACTS_IN","name":"Avram","type":"Role","_key":"110651","_from":"3117","_to":"65369"} +{"$label":"ACTS_IN","name":"Dr. Doug Ross","type":"Role","_key":"71118","_from":"3117","_to":"43172"} +{"$label":"ACTS_IN","name":"George Caldwell","type":"Role","_key":"70654","_from":"3117","_to":"42994"} +{"$label":"ACTS_IN","name":"Dave Lyons","type":"Role","_key":"68396","_from":"3117","_to":"41965"} +{"$label":"ACTS_IN","name":"Jim, aka \"The Waco Kid\"","type":"Role","_key":"67703","_from":"3117","_to":"41639"} +{"$label":"ACTS_IN","name":"Teddy Pierce","type":"Role","_key":"40851","_from":"3117","_to":"27498"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26409","_from":"3117","_to":"18965"} +{"$label":"ACTS_IN","name":"Dr. Frederick Frankenstein","type":"Role","_key":"25149","_from":"3117","_to":"18167"} +{"$label":"ACTS_IN","name":"Eugene Grizzard","type":"Role","_key":"5856","_from":"3117","_to":"4973"} +{"$label":"DIRECTED","_key":"40850","_from":"3117","_to":"27498"} +{"$label":"ACTS_IN","name":"Hunter (Amos Slade) (voice)","type":"Role","_key":"66917","_from":"3118","_to":"41314"} +{"$label":"ACTS_IN","name":"Manny Rosen","type":"Role","_key":"6577","_from":"3118","_to":"5550"} +{"$label":"ACTS_IN","name":"Algernon","type":"Role","_key":"101939","_from":"3120","_to":"59994"} +{"$label":"ACTS_IN","name":"Adam Scarr","type":"Role","_key":"101663","_from":"3120","_to":"59833"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"27581","_from":"3120","_to":"19780"} +{"$label":"ACTS_IN","name":"Planchet","type":"Role","_key":"24353","_from":"3120","_to":"17626"} +{"$label":"ACTS_IN","name":"Internatsleiterin","type":"Role","_key":"31340","_from":"3126","_to":"21912"} +{"$label":"ACTS_IN","name":"Goldsmith","type":"Role","_key":"114511","_from":"3128","_to":"67443"} +{"$label":"ACTS_IN","name":"Ergo","type":"Role","_key":"10056","_from":"3129","_to":"8047"} +{"$label":"ACTS_IN","name":"Vanetti","type":"Role","_key":"38143","_from":"3130","_to":"25789"} +{"$label":"ACTS_IN","name":"Mishkin","type":"Role","_key":"5412","_from":"3130","_to":"4586"} +{"$label":"ACTS_IN","name":"New Matron","type":"Role","_key":"119563","_from":"3131","_to":"70231"} +{"$label":"ACTS_IN","name":"Professor Holl","type":"Role","_key":"30945","_from":"3132","_to":"21676"} +{"$label":"ACTS_IN","name":"Quarrel Jr.","type":"Role","_key":"3667","_from":"3146","_to":"3133"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"3666","_from":"3145","_to":"3133"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"3665","_from":"3144","_to":"3133"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"3664","_from":"3143","_to":"3133"} +{"$label":"ACTS_IN","name":"Rosie Carver","type":"Role","_key":"3663","_from":"3142","_to":"3133"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"3662","_from":"3141","_to":"3133"} +{"$label":"ACTS_IN","name":"Baron Samedi","type":"Role","_key":"3661","_from":"3140","_to":"3133"} +{"$label":"ACTS_IN","name":"Tee Hee","type":"Role","_key":"3660","_from":"3139","_to":"3133"} +{"$label":"ACTS_IN","name":"Sheriff J.W. Pepper","type":"Role","_key":"3659","_from":"3138","_to":"3133"} +{"$label":"ACTS_IN","name":"Solitaire","type":"Role","_key":"3658","_from":"3137","_to":"3133"} +{"$label":"ACTS_IN","name":"Kananga\/Mr. Big","type":"Role","_key":"3657","_from":"3136","_to":"3133"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"3656","_from":"3135","_to":"3133"} +{"$label":"DIRECTED","_key":"3655","_from":"3134","_to":"3133"} +{"$label":"DIRECTED","_key":"115162","_from":"3134","_to":"67814"} +{"$label":"DIRECTED","_key":"111954","_from":"3134","_to":"66083"} +{"$label":"DIRECTED","_key":"110482","_from":"3134","_to":"65275"} +{"$label":"DIRECTED","_key":"70020","_from":"3134","_to":"42700"} +{"$label":"DIRECTED","_key":"64039","_from":"3134","_to":"39969"} +{"$label":"DIRECTED","_key":"41639","_from":"3134","_to":"27947"} +{"$label":"DIRECTED","_key":"41320","_from":"3134","_to":"27781"} +{"$label":"DIRECTED","_key":"29988","_from":"3134","_to":"21171"} +{"$label":"DIRECTED","_key":"8234","_from":"3134","_to":"6761"} +{"$label":"DIRECTED","_key":"8219","_from":"3134","_to":"6753"} +{"$label":"DIRECTED","_key":"7867","_from":"3134","_to":"6514"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41633","_from":"3134","_to":"27947"} +{"$label":"ACTS_IN","name":"Capt. Gavin Stewart","type":"Role","_key":"120794","_from":"3135","_to":"70946"} +{"$label":"ACTS_IN","name":"Sir George","type":"Role","_key":"70152","_from":"3135","_to":"42763"} +{"$label":"ACTS_IN","name":"Seymour Goldfarb, Jr.","type":"Role","_key":"68906","_from":"3135","_to":"42196"} +{"$label":"ACTS_IN","name":"Lloyd Faversham","type":"Role","_key":"54661","_from":"3135","_to":"35006"} +{"$label":"ACTS_IN","name":"Lord Edgar Dobbs","type":"Role","_key":"52573","_from":"3135","_to":"34170"} +{"$label":"ACTS_IN","name":"Lt. Shawn Fynn","type":"Role","_key":"45672","_from":"3135","_to":"30229"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"41801","_from":"3135","_to":"28038"} +{"$label":"ACTS_IN","name":"Patrick Simmons","type":"Role","_key":"41286","_from":"3135","_to":"27759"} +{"$label":"ACTS_IN","name":"Harold Pelham","type":"Role","_key":"34704","_from":"3135","_to":"23739"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26742","_from":"3135","_to":"19220"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8534","_from":"3135","_to":"6961"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8432","_from":"3135","_to":"6889"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8418","_from":"3135","_to":"6879"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8405","_from":"3135","_to":"6873"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8313","_from":"3135","_to":"6815"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8235","_from":"3135","_to":"6761"} +{"$label":"ACTS_IN","name":"Smokey James","type":"Role","_key":"101995","_from":"3136","_to":"60016"} +{"$label":"ACTS_IN","name":"Det. Harry Lowes","type":"Role","_key":"90734","_from":"3136","_to":"53554"} +{"$label":"ACTS_IN","name":"FBI Agent Alonzo Mosely","type":"Role","_key":"52000","_from":"3136","_to":"33909"} +{"$label":"ACTS_IN","name":"Richard 'Dickie' Coombes","type":"Role","_key":"14388","_from":"3136","_to":"11128"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"10852","_from":"3136","_to":"8599"} +{"$label":"ACTS_IN","name":"William Laughlin","type":"Role","_key":"10284","_from":"3136","_to":"8188"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"4792","_from":"3136","_to":"4094"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"111091","_from":"3137","_to":"65620"} +{"$label":"ACTS_IN","name":"Elise McKenna","type":"Role","_key":"109680","_from":"3137","_to":"64780"} +{"$label":"ACTS_IN","name":"Dr. Evans","type":"Role","_key":"93077","_from":"3137","_to":"54867"} +{"$label":"ACTS_IN","name":"Princess Farah","type":"Role","_key":"72868","_from":"3137","_to":"43890"} +{"$label":"ACTS_IN","name":"Kathleen Cleary","type":"Role","_key":"54425","_from":"3137","_to":"34907"} +{"$label":"ACTS_IN","name":"Marie-Antoinette","type":"Role","_key":"30208","_from":"3137","_to":"21284"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26743","_from":"3137","_to":"19220"} +{"$label":"ACTS_IN","name":"Agatha","type":"Role","_key":"25973","_from":"3137","_to":"18672"} +{"$label":"ACTS_IN","name":"M.A.A.","type":"Role","_key":"102320","_from":"3138","_to":"60201"} +{"$label":"ACTS_IN","name":"Lorrimer","type":"Role","_key":"71811","_from":"3138","_to":"43458"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"50127","_from":"3138","_to":"32783"} +{"$label":"ACTS_IN","name":"Butch Lovemaiden","type":"Role","_key":"40513","_from":"3138","_to":"27278"} +{"$label":"ACTS_IN","name":"Carr","type":"Role","_key":"10761","_from":"3138","_to":"8527"} +{"$label":"ACTS_IN","name":"Sheriff J.W. Pepper","type":"Role","_key":"8240","_from":"3138","_to":"6761"} +{"$label":"ACTS_IN","name":"Boan","type":"Role","_key":"65306","_from":"3139","_to":"40529"} +{"$label":"ACTS_IN","name":"Capt. Bollin","type":"Role","_key":"6014","_from":"3139","_to":"5098"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"113711","_from":"3140","_to":"67014"} +{"$label":"ACTS_IN","name":"Lt. Ware","type":"Role","_key":"106221","_from":"3141","_to":"62557"} +{"$label":"ACTS_IN","name":"Andre Delambre","type":"Role","_key":"72147","_from":"3141","_to":"43608"} +{"$label":"ACTS_IN","name":"Ed Malone","type":"Role","_key":"24679","_from":"3141","_to":"17851"} +{"$label":"ACTS_IN","name":"Porcius Festus","type":"Role","_key":"22366","_from":"3141","_to":"16258"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"8569","_from":"3141","_to":"6975"} +{"$label":"ACTS_IN","name":"Sydney","type":"Role","_key":"115572","_from":"3142","_to":"68036"} +{"$label":"ACTS_IN","name":"Charles Foreman","type":"Role","_key":"113744","_from":"3143","_to":"67027"} +{"$label":"ACTS_IN","name":"Captain Dove - M.S. Africa Shell","type":"Role","_key":"113280","_from":"3143","_to":"66734"} +{"$label":"ACTS_IN","name":"Patmore","type":"Role","_key":"95312","_from":"3143","_to":"56070"} +{"$label":"ACTS_IN","name":"Sergeant Paine","type":"Role","_key":"11959","_from":"3143","_to":"9373"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8410","_from":"3143","_to":"6873"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8320","_from":"3143","_to":"6815"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8244","_from":"3143","_to":"6761"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8230","_from":"3143","_to":"6753"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7992","_from":"3143","_to":"6617"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7978","_from":"3143","_to":"6608"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7895","_from":"3143","_to":"6541"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7861","_from":"3143","_to":"6514"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7844","_from":"3143","_to":"6505"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"7710","_from":"3143","_to":"6398"} +{"$label":"ACTS_IN","name":"Grace Markway","type":"Role","_key":"71844","_from":"3144","_to":"43474"} +{"$label":"ACTS_IN","name":"Nurse Mary Lore","type":"Role","_key":"9453","_from":"3144","_to":"7628"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8544","_from":"3144","_to":"6961"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8442","_from":"3144","_to":"6889"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8428","_from":"3144","_to":"6879"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8413","_from":"3144","_to":"6873"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8327","_from":"3144","_to":"6815"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8245","_from":"3144","_to":"6761"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8232","_from":"3144","_to":"6753"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7990","_from":"3144","_to":"6617"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7979","_from":"3144","_to":"6608"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7897","_from":"3144","_to":"6541"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7865","_from":"3144","_to":"6514"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7850","_from":"3144","_to":"6505"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"7715","_from":"3144","_to":"6398"} +{"$label":"ACTS_IN","name":"Ann Darrow","type":"Role","_key":"3669","_from":"3148","_to":"3147"} +{"$label":"ACTS_IN","name":"Jennifer Evans","type":"Role","_key":"118556","_from":"3148","_to":"69710"} +{"$label":"ACTS_IN","name":"Ellie Parker","type":"Role","_key":"109456","_from":"3148","_to":"64663"} +{"$label":"ACTS_IN","name":"Kitty Fane","type":"Role","_key":"99033","_from":"3148","_to":"58339"} +{"$label":"ACTS_IN","name":"Meredith Mainwaring","type":"Role","_key":"66722","_from":"3148","_to":"41220"} +{"$label":"ACTS_IN","name":"Julia Cook","type":"Role","_key":"63969","_from":"3148","_to":"39951"} +{"$label":"ACTS_IN","name":"Rachel Keller","type":"Role","_key":"62576","_from":"3148","_to":"39377"} +{"$label":"ACTS_IN","name":"Roxeanne de Persand","type":"Role","_key":"54274","_from":"3148","_to":"34846"} +{"$label":"ACTS_IN","name":"Jet Gir","type":"Role","_key":"52381","_from":"3148","_to":"34087"} +{"$label":"ACTS_IN","name":"Giulia De Lezze","type":"Role","_key":"50208","_from":"3148","_to":"32818"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"49922","_from":"3148","_to":"32684"} +{"$label":"ACTS_IN","name":"Lila Culpepper","type":"Role","_key":"48005","_from":"3148","_to":"31581"} +{"$label":"ACTS_IN","name":"Eleanor Whitman","type":"Role","_key":"35138","_from":"3148","_to":"23951"} +{"$label":"ACTS_IN","name":"Anna Khitrova","type":"Role","_key":"19684","_from":"3148","_to":"14558"} +{"$label":"ACTS_IN","name":"Dawn Campbell","type":"Role","_key":"14181","_from":"3148","_to":"10966"} +{"$label":"ACTS_IN","name":"Betty Elms","type":"Role","_key":"11783","_from":"3148","_to":"9247"} +{"$label":"ACTS_IN","name":"Marie Bicke","type":"Role","_key":"9952","_from":"3148","_to":"7967"} +{"$label":"ACTS_IN","name":"Rachel Keller","type":"Role","_key":"6781","_from":"3148","_to":"5693"} +{"$label":"ACTS_IN","name":"Cristina Peck","type":"Role","_key":"5826","_from":"3148","_to":"4954"} +{"$label":"ACTS_IN","name":"Vendeuse","type":"Role","_key":"3691","_from":"3168","_to":"3149"} +{"$label":"ACTS_IN","name":"Mademoiselle Ida","type":"Role","_key":"3690","_from":"3167","_to":"3149"} +{"$label":"ACTS_IN","name":"M. Albani","type":"Role","_key":"3689","_from":"3166","_to":"3149"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"3688","_from":"3165","_to":"3149"} +{"$label":"ACTS_IN","name":"Tall girl","type":"Role","_key":"3687","_from":"3164","_to":"3149"} +{"$label":"ACTS_IN","name":"Prostitute 2","type":"Role","_key":"3686","_from":"3163","_to":"3149"} +{"$label":"ACTS_IN","name":"Prostitute 1","type":"Role","_key":"3685","_from":"3162","_to":"3149"} +{"$label":"ACTS_IN","name":"Neighbour, Dentist","type":"Role","_key":"3684","_from":"3161","_to":"3149"} +{"$label":"ACTS_IN","name":"Adjudant Picard","type":"Role","_key":"3683","_from":"3160","_to":"3149"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"3682","_from":"3159","_to":"3149"} +{"$label":"ACTS_IN","name":"Unknown Man","type":"Role","_key":"3681","_from":"3158","_to":"3149"} +{"$label":"ACTS_IN","name":"G\u00e9rante","type":"Role","_key":"3680","_from":"3157","_to":"3149"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"3679","_from":"3156","_to":"3149"} +{"$label":"ACTS_IN","name":"Monsieur Blady","type":"Role","_key":"3678","_from":"3155","_to":"3149"} +{"$label":"ACTS_IN","name":"Monsieur Henri","type":"Role","_key":"3677","_from":"3154","_to":"3149"} +{"$label":"ACTS_IN","name":"Madame Darbon","type":"Role","_key":"3676","_from":"3153","_to":"3149"} +{"$label":"ACTS_IN","name":"Monsieur Darbon","type":"Role","_key":"3675","_from":"3152","_to":"3149"} +{"$label":"ACTS_IN","name":"Fabienne Tabard","type":"Role","_key":"3673","_from":"3151","_to":"3149"} +{"$label":"ACTS_IN","name":"Christine Darbon","type":"Role","_key":"3672","_from":"3150","_to":"3149"} +{"$label":"ACTS_IN","name":"Claire Mallois","type":"Role","_key":"89591","_from":"3150","_to":"53014"} +{"$label":"ACTS_IN","name":"la com\u00e9dienne","type":"Role","_key":"89117","_from":"3150","_to":"52794"} +{"$label":"ACTS_IN","name":"Elle","type":"Role","_key":"46170","_from":"3150","_to":"30515"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"39442","_from":"3150","_to":"26661"} +{"$label":"ACTS_IN","name":"Liliane","type":"Role","_key":"38056","_from":"3150","_to":"25746"} +{"$label":"ACTS_IN","name":"Sylvie Guyot","type":"Role","_key":"35824","_from":"3150","_to":"24323"} +{"$label":"ACTS_IN","name":"Athene","type":"Role","_key":"35059","_from":"3150","_to":"23913"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33298","_from":"3150","_to":"23070"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"31409","_from":"3150","_to":"21948"} +{"$label":"ACTS_IN","name":"Louise de La Valli\u00e8re","type":"Role","_key":"29693","_from":"3150","_to":"21025"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29539","_from":"3150","_to":"20930"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29533","_from":"3150","_to":"20924"} +{"$label":"ACTS_IN","name":"Claude Jade","type":"Role","_key":"29495","_from":"3150","_to":"20909"} +{"$label":"ACTS_IN","name":"Sh\u00e9h\u00e9razade","type":"Role","_key":"26063","_from":"3150","_to":"18729"} +{"$label":"ACTS_IN","name":"Solange","type":"Role","_key":"23871","_from":"3150","_to":"17304"} +{"$label":"ACTS_IN","name":"Luce","type":"Role","_key":"23865","_from":"3150","_to":"17298"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise jeune","type":"Role","_key":"23809","_from":"3150","_to":"17263"} +{"$label":"ACTS_IN","name":"Emma Nazarova","type":"Role","_key":"23772","_from":"3150","_to":"17234"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"23750","_from":"3150","_to":"17221"} +{"$label":"ACTS_IN","name":"Armande de Montcourtet","type":"Role","_key":"23694","_from":"3150","_to":"17174"} +{"$label":"ACTS_IN","name":"Gis\u00e8le","type":"Role","_key":"23659","_from":"3150","_to":"17153"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"23649","_from":"3150","_to":"17146"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"23641","_from":"3150","_to":"17139"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"23177","_from":"3150","_to":"16809"} +{"$label":"ACTS_IN","name":"Ispettore Girl","type":"Role","_key":"22965","_from":"3150","_to":"16655"} +{"$label":"ACTS_IN","name":"Colomba","type":"Role","_key":"22683","_from":"3150","_to":"16459"} +{"$label":"ACTS_IN","name":"Clarisse","type":"Role","_key":"22675","_from":"3150","_to":"16453"} +{"$label":"ACTS_IN","name":"Lucrezia","type":"Role","_key":"21548","_from":"3150","_to":"15752"} +{"$label":"ACTS_IN","name":"Agathe","type":"Role","_key":"21504","_from":"3150","_to":"15736"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"21498","_from":"3150","_to":"15730"} +{"$label":"ACTS_IN","name":"Agn\u00e8s Jalamet","type":"Role","_key":"21483","_from":"3150","_to":"15717"} +{"$label":"ACTS_IN","name":"la prof de philo","type":"Role","_key":"21361","_from":"3150","_to":"15621"} +{"$label":"ACTS_IN","name":"Suzan Frend","type":"Role","_key":"21326","_from":"3150","_to":"15592"} +{"$label":"ACTS_IN","name":"Lise \/ Laura","type":"Role","_key":"21303","_from":"3150","_to":"15580"} +{"$label":"ACTS_IN","name":"Anne \/ Juliette","type":"Role","_key":"21296","_from":"3150","_to":"15575"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"21277","_from":"3150","_to":"15565"} +{"$label":"ACTS_IN","name":"Marelle","type":"Role","_key":"21232","_from":"3150","_to":"15545"} +{"$label":"ACTS_IN","name":"Lucile Desmoulins","type":"Role","_key":"21221","_from":"3150","_to":"15537"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"21210","_from":"3150","_to":"15527"} +{"$label":"ACTS_IN","name":"C\u00e9lim\u00e8ne","type":"Role","_key":"21125","_from":"3150","_to":"15470"} +{"$label":"ACTS_IN","name":"Evelyn Droste","type":"Role","_key":"21110","_from":"3150","_to":"15455"} +{"$label":"ACTS_IN","name":"Maria Teresa","type":"Role","_key":"21097","_from":"3150","_to":"15442"} +{"$label":"ACTS_IN","name":"Segment \"La Rampe\"","type":"Role","_key":"21036","_from":"3150","_to":"15398"} +{"$label":"ACTS_IN","name":"Marie-Th\u00e9r\u00e8se","type":"Role","_key":"21028","_from":"3150","_to":"15392"} +{"$label":"ACTS_IN","name":"Lucienne des Grassins","type":"Role","_key":"21019","_from":"3150","_to":"15383"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"21012","_from":"3150","_to":"15378"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"21005","_from":"3150","_to":"15374"} +{"$label":"ACTS_IN","name":"Belle Dame","type":"Role","_key":"20964","_from":"3150","_to":"15337"} +{"$label":"ACTS_IN","name":"Eleonore","type":"Role","_key":"20948","_from":"3150","_to":"15329"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"20936","_from":"3150","_to":"15318"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Valouin","type":"Role","_key":"20921","_from":"3150","_to":"15307"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"20913","_from":"3150","_to":"15302"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"20903","_from":"3150","_to":"15294"} +{"$label":"ACTS_IN","name":"Mich\u00e8le","type":"Role","_key":"20897","_from":"3150","_to":"15289"} +{"$label":"ACTS_IN","name":"Gabrielle Martin","type":"Role","_key":"20879","_from":"3150","_to":"15276"} +{"$label":"ACTS_IN","name":"Penny Vanderwood","type":"Role","_key":"20871","_from":"3150","_to":"15269"} +{"$label":"ACTS_IN","name":"Laura Boursault","type":"Role","_key":"20830","_from":"3150","_to":"15239"} +{"$label":"ACTS_IN","name":"Inessa Armand","type":"Role","_key":"20824","_from":"3150","_to":"15234"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"20817","_from":"3150","_to":"15229"} +{"$label":"ACTS_IN","name":"C\u00e9cile","type":"Role","_key":"20810","_from":"3150","_to":"15223"} +{"$label":"ACTS_IN","name":"V\u00e9ronique d'Hergemont","type":"Role","_key":"20800","_from":"3150","_to":"15214"} +{"$label":"ACTS_IN","name":"Caroline Winberg","type":"Role","_key":"20784","_from":"3150","_to":"15200"} +{"$label":"ACTS_IN","name":"Dominique Benech","type":"Role","_key":"20773","_from":"3150","_to":"15193"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"20764","_from":"3150","_to":"15185"} +{"$label":"ACTS_IN","name":"Reine Schmaltz","type":"Role","_key":"20751","_from":"3150","_to":"15175"} +{"$label":"ACTS_IN","name":"Manette","type":"Role","_key":"20735","_from":"3150","_to":"15162"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"20719","_from":"3150","_to":"15149"} +{"$label":"ACTS_IN","name":"Mich\u00e8le Picard","type":"Role","_key":"20701","_from":"3150","_to":"15136"} +{"$label":"ACTS_IN","name":"Christine Doinel","type":"Role","_key":"3736","_from":"3150","_to":"3202"} +{"$label":"ACTS_IN","name":"Christine Doinel","type":"Role","_key":"3721","_from":"3150","_to":"3193"} +{"$label":"ACTS_IN","name":"la f\u00e9e","type":"Role","_key":"37892","_from":"3151","_to":"25666"} +{"$label":"ACTS_IN","name":"Colette","type":"Role","_key":"34675","_from":"3151","_to":"23728"} +{"$label":"ACTS_IN","name":"Mme Thevenot","type":"Role","_key":"32902","_from":"3151","_to":"22829"} +{"$label":"ACTS_IN","name":"Delphine Seyrig","type":"Role","_key":"29501","_from":"3151","_to":"20909"} +{"$label":"ACTS_IN","name":"A","type":"Role","_key":"29448","_from":"3151","_to":"20889"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"88120","_from":"3152","_to":"52295"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"34083","_from":"3152","_to":"23422"} +{"$label":"ACTS_IN","name":"Commissaire","type":"Role","_key":"29517","_from":"3152","_to":"20910"} +{"$label":"ACTS_IN","name":"Stephan","type":"Role","_key":"16314","_from":"3152","_to":"12364"} +{"$label":"ACTS_IN","name":"Cl\u00e9ment","type":"Role","_key":"15215","_from":"3152","_to":"11648"} +{"$label":"ACTS_IN","name":"Monsieur Darbon","type":"Role","_key":"3722","_from":"3152","_to":"3193"} +{"$label":"ACTS_IN","name":"Catherine Delage","type":"Role","_key":"34069","_from":"3153","_to":"23415"} +{"$label":"ACTS_IN","name":"Jane Swolfs","type":"Role","_key":"34057","_from":"3153","_to":"23411"} +{"$label":"ACTS_IN","name":"la femme du wagon-restaurant","type":"Role","_key":"33950","_from":"3153","_to":"23371"} +{"$label":"ACTS_IN","name":"Madame Darbon","type":"Role","_key":"3723","_from":"3153","_to":"3193"} +{"$label":"ACTS_IN","name":"Moulard","type":"Role","_key":"31373","_from":"3154","_to":"21929"} +{"$label":"ACTS_IN","name":"Ribeyrolles","type":"Role","_key":"38225","_from":"3155","_to":"25818"} +{"$label":"ACTS_IN","name":"le ministre","type":"Role","_key":"34027","_from":"3155","_to":"23403"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33767","_from":"3155","_to":"23279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33590","_from":"3155","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31413","_from":"3155","_to":"21948"} +{"$label":"ACTS_IN","name":"Pierre Bayen","type":"Role","_key":"29437","_from":"3155","_to":"20878"} +{"$label":"ACTS_IN","name":"Mathelin","type":"Role","_key":"27122","_from":"3155","_to":"19519"} +{"$label":"ACTS_IN","name":"Le ministre","type":"Role","_key":"8930","_from":"3155","_to":"7242"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71980","_from":"3157","_to":"43534"} +{"$label":"ACTS_IN","name":"Landlady","type":"Role","_key":"14666","_from":"3157","_to":"11289"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33583","_from":"3158","_to":"23204"} +{"$label":"ACTS_IN","name":"le contr\u00f4leur du train","type":"Role","_key":"30937","_from":"3158","_to":"21670"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"30604","_from":"3158","_to":"21501"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"29967","_from":"3158","_to":"21166"} +{"$label":"ACTS_IN","name":"Serge Rousseau","type":"Role","_key":"29508","_from":"3158","_to":"20909"} +{"$label":"ACTS_IN","name":"M. Rivolani","type":"Role","_key":"30931","_from":"3159","_to":"21670"} +{"$label":"ACTS_IN","name":"Prosper","type":"Role","_key":"23828","_from":"3159","_to":"17263"} +{"$label":"ACTS_IN","name":"Journaliste","type":"Role","_key":"14416","_from":"3159","_to":"11135"} +{"$label":"ACTS_IN","name":"Colette's father","type":"Role","_key":"3696","_from":"3160","_to":"3169"} +{"$label":"ACTS_IN","name":"Madame Leclou, Juliens Mutter","type":"Role","_key":"14753","_from":"3167","_to":"11351"} +{"$label":"ACTS_IN","name":"La tante L\u00e9a Rouleau","type":"Role","_key":"50765","_from":"3168","_to":"33128"} +{"$label":"ACTS_IN","name":"Albert Tazzi","type":"Role","_key":"3698","_from":"3172","_to":"3169"} +{"$label":"ACTS_IN","name":"Colette's mother","type":"Role","_key":"3695","_from":"3171","_to":"3169"} +{"$label":"ACTS_IN","name":"Colette","type":"Role","_key":"3694","_from":"3170","_to":"3169"} +{"$label":"ACTS_IN","name":"Karine","type":"Role","_key":"38045","_from":"3170","_to":"25743"} +{"$label":"ACTS_IN","name":"Colette Lecoudray","type":"Role","_key":"31225","_from":"3170","_to":"21854"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"30600","_from":"3170","_to":"21501"} +{"$label":"ACTS_IN","name":"Clawdia Chauchat","type":"Role","_key":"29566","_from":"3170","_to":"20940"} +{"$label":"ACTS_IN","name":"gjfgj","type":"Role","_key":"13740","_from":"3170","_to":"10659"} +{"$label":"ACTS_IN","name":"Colette Tazzi","type":"Role","_key":"3735","_from":"3170","_to":"3202"} +{"$label":"ACTS_IN","name":"Bettine, soeur de Benjamin","type":"Role","_key":"20737","_from":"3171","_to":"15162"} +{"$label":"ACTS_IN","name":"Claude Vandal","type":"Role","_key":"40251","_from":"3172","_to":"27158"} +{"$label":"DIRECTED","_key":"3718","_from":"3192","_to":"3173"} +{"$label":"ACTS_IN","name":"Bookseller","type":"Role","_key":"3717","_from":"3191","_to":"3173"} +{"$label":"ACTS_IN","name":"Mr. Sowerberry","type":"Role","_key":"3716","_from":"3190","_to":"3173"} +{"$label":"ACTS_IN","name":"Mrs. Sowerberry","type":"Role","_key":"3715","_from":"3189","_to":"3173"} +{"$label":"ACTS_IN","name":"Mr. Bumble","type":"Role","_key":"3714","_from":"3188","_to":"3173"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"3713","_from":"3187","_to":"3173"} +{"$label":"ACTS_IN","name":"Charley Bates","type":"Role","_key":"3712","_from":"3186","_to":"3173"} +{"$label":"ACTS_IN","name":"Bullseye (Dog)","type":"Role","_key":"3711","_from":"3185","_to":"3173"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"3710","_from":"3184","_to":"3173"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"3709","_from":"3183","_to":"3173"} +{"$label":"ACTS_IN","name":"Mr. Gamfield","type":"Role","_key":"3708","_from":"3182","_to":"3173"} +{"$label":"ACTS_IN","name":"Noah Claypole","type":"Role","_key":"3707","_from":"3181","_to":"3173"} +{"$label":"ACTS_IN","name":"Parson","type":"Role","_key":"3706","_from":"3180","_to":"3173"} +{"$label":"ACTS_IN","name":"Mr. Limbkins","type":"Role","_key":"3705","_from":"3179","_to":"3173"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"3704","_from":"3178","_to":"3173"} +{"$label":"ACTS_IN","name":"Mr. Brownlow","type":"Role","_key":"3703","_from":"3177","_to":"3173"} +{"$label":"ACTS_IN","name":"The Artful Dodger","type":"Role","_key":"3702","_from":"3176","_to":"3173"} +{"$label":"ACTS_IN","name":"Bill Sikes","type":"Role","_key":"3701","_from":"3175","_to":"3173"} +{"$label":"ACTS_IN","name":"Oliver Twist","type":"Role","_key":"3699","_from":"3174","_to":"3173"} +{"$label":"ACTS_IN","name":"Lenny Taylor","type":"Role","_key":"62976","_from":"3175","_to":"39542"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"62447","_from":"3175","_to":"39336"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"34303","_from":"3175","_to":"23533"} +{"$label":"ACTS_IN","name":"Mickser","type":"Role","_key":"27535","_from":"3175","_to":"19754"} +{"$label":"ACTS_IN","name":"China MacFarlane","type":"Role","_key":"20644","_from":"3175","_to":"15095"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"114828","_from":"3176","_to":"67641"} +{"$label":"ACTS_IN","name":"Young Joe Scott","type":"Role","_key":"96702","_from":"3176","_to":"56883"} +{"$label":"ACTS_IN","name":"Gov. John Bellingham","type":"Role","_key":"63901","_from":"3177","_to":"39922"} +{"$label":"ACTS_IN","name":"Earl of Arundel","type":"Role","_key":"32265","_from":"3177","_to":"22475"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"24787","_from":"3177","_to":"17924"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109935","_from":"3179","_to":"64954"} +{"$label":"ACTS_IN","name":"The Inspector","type":"Role","_key":"107763","_from":"3179","_to":"63633"} +{"$label":"ACTS_IN","name":"Bill Humphries","type":"Role","_key":"105433","_from":"3179","_to":"62026"} +{"$label":"ACTS_IN","name":"Hugh The Sideburns","type":"Role","_key":"104434","_from":"3179","_to":"61430"} +{"$label":"ACTS_IN","name":"Baron Vladimir Harkonnen","type":"Role","_key":"99664","_from":"3179","_to":"58761"} +{"$label":"ACTS_IN","name":"Dr. Gerhard Klopfer","type":"Role","_key":"91879","_from":"3179","_to":"54204"} +{"$label":"ACTS_IN","name":"Forensic Profiler Saul Seger","type":"Role","_key":"90601","_from":"3179","_to":"53506"} +{"$label":"ACTS_IN","name":"Raymond Price","type":"Role","_key":"72087","_from":"3179","_to":"43578"} +{"$label":"ACTS_IN","name":"George Garrad","type":"Role","_key":"64519","_from":"3179","_to":"40187"} +{"$label":"ACTS_IN","name":"Fulton Greenwall","type":"Role","_key":"52767","_from":"3179","_to":"34234"} +{"$label":"ACTS_IN","name":"Blinder Andenkenverk\u00e4ufer","type":"Role","_key":"50720","_from":"3179","_to":"33102"} +{"$label":"ACTS_IN","name":"Mayhew","type":"Role","_key":"48018","_from":"3179","_to":"31583"} +{"$label":"ACTS_IN","name":"Baron Vladimir Harkonnen","type":"Role","_key":"10419","_from":"3179","_to":"8289"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"89627","_from":"3180","_to":"53037"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"21092","_from":"3180","_to":"15413"} +{"$label":"ACTS_IN","name":"Joseph Prescott","type":"Role","_key":"115910","_from":"3184","_to":"68234"} +{"$label":"ACTS_IN","name":"Bob Elf","type":"Role","_key":"37157","_from":"3188","_to":"25172"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31602","_from":"3189","_to":"22064"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"119302","_from":"3192","_to":"70095"} +{"$label":"ACTS_IN","name":"Young Boy (voice)","type":"Role","_key":"70211","_from":"3192","_to":"42792"} +{"$label":"ACTS_IN","name":"Trelkovsky","type":"Role","_key":"70113","_from":"3192","_to":"42742"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38745","_from":"3192","_to":"26175"} +{"$label":"ACTS_IN","name":"Det. Revi","type":"Role","_key":"36252","_from":"3192","_to":"24600"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"25274","_from":"3192","_to":"18221"} +{"$label":"ACTS_IN","name":"Mann mit Messer","type":"Role","_key":"9806","_from":"3192","_to":"7856"} +{"$label":"DIRECTED","_key":"70213","_from":"3192","_to":"42792"} +{"$label":"DIRECTED","_key":"70119","_from":"3192","_to":"42743"} +{"$label":"DIRECTED","_key":"70114","_from":"3192","_to":"42742"} +{"$label":"DIRECTED","_key":"70108","_from":"3192","_to":"42740"} +{"$label":"DIRECTED","_key":"69826","_from":"3192","_to":"42613"} +{"$label":"DIRECTED","_key":"69093","_from":"3192","_to":"42281"} +{"$label":"DIRECTED","_key":"67996","_from":"3192","_to":"41780"} +{"$label":"DIRECTED","_key":"64978","_from":"3192","_to":"40386"} +{"$label":"DIRECTED","_key":"63891","_from":"3192","_to":"39916"} +{"$label":"DIRECTED","_key":"63682","_from":"3192","_to":"39830"} +{"$label":"DIRECTED","_key":"33915","_from":"3192","_to":"23357"} +{"$label":"DIRECTED","_key":"25272","_from":"3192","_to":"18221"} +{"$label":"DIRECTED","_key":"9797","_from":"3192","_to":"7856"} +{"$label":"DIRECTED","_key":"9478","_from":"3192","_to":"7653"} +{"$label":"DIRECTED","_key":"7393","_from":"3192","_to":"6167"} +{"$label":"DIRECTED","_key":"5307","_from":"3192","_to":"4502"} +{"$label":"ACTS_IN","name":"Drunken Man","type":"Role","_key":"3731","_from":"3201","_to":"3193"} +{"$label":"ACTS_IN","name":"Madame Martin","type":"Role","_key":"3730","_from":"3200","_to":"3193"} +{"$label":"ACTS_IN","name":"Ginette","type":"Role","_key":"3729","_from":"3199","_to":"3193"} +{"$label":"ACTS_IN","name":"L'\u00e9trangleur","type":"Role","_key":"3728","_from":"3198","_to":"3193"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"3727","_from":"3197","_to":"3193"} +{"$label":"ACTS_IN","name":"Silvana","type":"Role","_key":"3726","_from":"3196","_to":"3193"} +{"$label":"ACTS_IN","name":"T\u00e9nor","type":"Role","_key":"3725","_from":"3195","_to":"3193"} +{"$label":"ACTS_IN","name":"Kyoko","type":"Role","_key":"3724","_from":"3194","_to":"3193"} +{"$label":"ACTS_IN","name":"Delvaux","type":"Role","_key":"29964","_from":"3195","_to":"21166"} +{"$label":"ACTS_IN","name":"Police Inspector Vital","type":"Role","_key":"3834","_from":"3195","_to":"3283"} +{"$label":"ACTS_IN","name":"Mrs Evans","type":"Role","_key":"33326","_from":"3196","_to":"23089"} +{"$label":"ACTS_IN","name":"Florence Golden","type":"Role","_key":"33386","_from":"3199","_to":"23107"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"65194","_from":"3201","_to":"40491"} +{"$label":"ACTS_IN","name":"Razoumikhine","type":"Role","_key":"35562","_from":"3201","_to":"24173"} +{"$label":"ACTS_IN","name":"Gendarme","type":"Role","_key":"34685","_from":"3201","_to":"23728"} +{"$label":"ACTS_IN","name":"le vendeur de Citro\u00ebn","type":"Role","_key":"33764","_from":"3201","_to":"23279"} +{"$label":"ACTS_IN","name":"Clovis","type":"Role","_key":"33384","_from":"3201","_to":"23107"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"29759","_from":"3201","_to":"21066"} +{"$label":"ACTS_IN","name":"Alphonse Doinel","type":"Role","_key":"3743","_from":"3209","_to":"3202"} +{"$label":"ACTS_IN","name":"Divorce Lawyer Dardignat","type":"Role","_key":"3742","_from":"3208","_to":"3202"} +{"$label":"ACTS_IN","name":"Raoul Lecorps","type":"Role","_key":"3741","_from":"3207","_to":"3202"} +{"$label":"ACTS_IN","name":"Monsieur Lucien","type":"Role","_key":"3740","_from":"3206","_to":"3202"} +{"$label":"ACTS_IN","name":"Xavier Barnerias","type":"Role","_key":"3739","_from":"3205","_to":"3202"} +{"$label":"ACTS_IN","name":"Sabine Barnerias","type":"Role","_key":"3738","_from":"3204","_to":"3202"} +{"$label":"ACTS_IN","name":"Liliane","type":"Role","_key":"3737","_from":"3203","_to":"3202"} +{"$label":"ACTS_IN","name":"Claudie","type":"Role","_key":"59986","_from":"3203","_to":"37860"} +{"$label":"ACTS_IN","name":"Lina","type":"Role","_key":"21007","_from":"3203","_to":"15374"} +{"$label":"ACTS_IN","name":"Liliane","type":"Role","_key":"14850","_from":"3203","_to":"11416"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"34344","_from":"3205","_to":"23558"} +{"$label":"ACTS_IN","name":"Fouquier-Tinville","type":"Role","_key":"31185","_from":"3205","_to":"21829"} +{"$label":"ACTS_IN","name":"Coudein","type":"Role","_key":"20750","_from":"3205","_to":"15175"} +{"$label":"ACTS_IN","name":"Edouard","type":"Role","_key":"49648","_from":"3206","_to":"32488"} +{"$label":"ACTS_IN","name":"Richter (Zug)","type":"Role","_key":"39478","_from":"3206","_to":"26682"} +{"$label":"ACTS_IN","name":"le premier pr\u00e9fet de police","type":"Role","_key":"37830","_from":"3206","_to":"25644"} +{"$label":"ACTS_IN","name":"Verlac","type":"Role","_key":"33350","_from":"3206","_to":"23096"} +{"$label":"ACTS_IN","name":"Monseigneur Dufour","type":"Role","_key":"32907","_from":"3206","_to":"22829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30698","_from":"3207","_to":"21536"} +{"$label":"ACTS_IN","name":"Anatole","type":"Role","_key":"30603","_from":"3207","_to":"21501"} +{"$label":"ACTS_IN","name":"Un inspecteur","type":"Role","_key":"23186","_from":"3207","_to":"16809"} +{"$label":"ACTS_IN","name":"Innkeeper's Wife","type":"Role","_key":"3757","_from":"3223","_to":"3210"} +{"$label":"ACTS_IN","name":"The Milkman","type":"Role","_key":"3756","_from":"3222","_to":"3210"} +{"$label":"ACTS_IN","name":"Patricia Jordan","type":"Role","_key":"3755","_from":"3221","_to":"3210"} +{"$label":"ACTS_IN","name":"Mr. Jordan's Maid","type":"Role","_key":"3754","_from":"3220","_to":"3210"} +{"$label":"ACTS_IN","name":"Mr. Memory","type":"Role","_key":"3753","_from":"3219","_to":"3210"} +{"$label":"ACTS_IN","name":"Sheriff Watson","type":"Role","_key":"3752","_from":"3218","_to":"3210"} +{"$label":"ACTS_IN","name":"John Crofter","type":"Role","_key":"3751","_from":"3217","_to":"3210"} +{"$label":"ACTS_IN","name":"Margaret Crofter","type":"Role","_key":"3750","_from":"3216","_to":"3210"} +{"$label":"ACTS_IN","name":"Mrs. Louisa Jordan","type":"Role","_key":"3749","_from":"3215","_to":"3210"} +{"$label":"ACTS_IN","name":"Professor Jordan","type":"Role","_key":"3748","_from":"3214","_to":"3210"} +{"$label":"ACTS_IN","name":"Annabelle Smith","type":"Role","_key":"3747","_from":"3213","_to":"3210"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"3746","_from":"3212","_to":"3210"} +{"$label":"ACTS_IN","name":"Richard Hannay","type":"Role","_key":"3745","_from":"3211","_to":"3210"} +{"$label":"ACTS_IN","name":"Elsa Carrington","type":"Role","_key":"23341","_from":"3212","_to":"16912"} +{"$label":"ACTS_IN","name":"Marie Hartmann","type":"Role","_key":"44160","_from":"3213","_to":"29437"} +{"$label":"ACTS_IN","name":"Anna Schl\u00fcter","type":"Role","_key":"31789","_from":"3213","_to":"22186"} +{"$label":"ACTS_IN","name":"The cook","type":"Role","_key":"16841","_from":"3213","_to":"12675"} +{"$label":"ACTS_IN","name":"Mrs. Moore","type":"Role","_key":"106359","_from":"3216","_to":"62660"} +{"$label":"ACTS_IN","name":"Hilda Bloggs","type":"Role","_key":"66315","_from":"3216","_to":"41025"} +{"$label":"ACTS_IN","name":"Agatha Christie","type":"Role","_key":"41666","_from":"3216","_to":"27967"} +{"$label":"ACTS_IN","name":"Darrow","type":"Role","_key":"114512","_from":"3217","_to":"67443"} +{"$label":"ACTS_IN","name":"Khalifa","type":"Role","_key":"64123","_from":"3217","_to":"40015"} +{"$label":"ACTS_IN","name":"Joseph Macroon","type":"Role","_key":"109800","_from":"3219","_to":"64855"} +{"$label":"ACTS_IN","name":"Spicer","type":"Role","_key":"94232","_from":"3219","_to":"55491"} +{"$label":"ACTS_IN","name":"Adele Ainsworth","type":"Role","_key":"113988","_from":"3221","_to":"67129"} +{"$label":"ACTS_IN","name":"Servant","type":"Role","_key":"3767","_from":"3231","_to":"3224"} +{"$label":"ACTS_IN","name":"Dr. Baugh","type":"Role","_key":"3766","_from":"3230","_to":"3224"} +{"$label":"ACTS_IN","name":"Deacon Davis","type":"Role","_key":"3765","_from":"3229","_to":"3224"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"3764","_from":"3228","_to":"3224"} +{"$label":"ACTS_IN","name":"Brick","type":"Role","_key":"3760","_from":"3227","_to":"3224"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"3759","_from":"3226","_to":"3224"} +{"$label":"DIRECTED","_key":"3758","_from":"3225","_to":"3224"} +{"$label":"DIRECTED","_key":"118008","_from":"3225","_to":"69362"} +{"$label":"DIRECTED","_key":"69555","_from":"3225","_to":"42470"} +{"$label":"ACTS_IN","name":"Velvet Brown","type":"Role","_key":"113448","_from":"3226","_to":"66838"} +{"$label":"ACTS_IN","name":"Catherine Holly","type":"Role","_key":"101476","_from":"3226","_to":"59731"} +{"$label":"ACTS_IN","name":"Cleopatra","type":"Role","_key":"48226","_from":"3226","_to":"31682"} +{"$label":"ACTS_IN","name":"Marina Rudd","type":"Role","_key":"41327","_from":"3226","_to":"27781"} +{"$label":"ACTS_IN","name":"Leonora","type":"Role","_key":"27815","_from":"3226","_to":"19941"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26990","_from":"3226","_to":"19409"} +{"$label":"ACTS_IN","name":"Priscilla","type":"Role","_key":"19148","_from":"3226","_to":"14153"} +{"$label":"ACTS_IN","name":"Leslie Lynnton Benedict","type":"Role","_key":"15128","_from":"3226","_to":"11613"} +{"$label":"ACTS_IN","name":"Pearl Slaghoople","type":"Role","_key":"10574","_from":"3226","_to":"8398"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"5037","_from":"3226","_to":"4282"} +{"$label":"ACTS_IN","name":"Michael Colin Gallagher","type":"Role","_key":"120112","_from":"3227","_to":"70541"} +{"$label":"ACTS_IN","name":"Paul Newman","type":"Role","_key":"114853","_from":"3227","_to":"67656"} +{"$label":"ACTS_IN","name":"Himself (Narrator)","type":"Role","_key":"110650","_from":"3227","_to":"65367"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"107236","_from":"3227","_to":"63245"} +{"$label":"ACTS_IN","name":"Doc Hudson","type":"Role","_key":"97561","_from":"3227","_to":"57452"} +{"$label":"ACTS_IN","name":"Sidney J. Mussburger","type":"Role","_key":"72832","_from":"3227","_to":"43873"} +{"$label":"ACTS_IN","name":"Fast Eddie Felson","type":"Role","_key":"72491","_from":"3227","_to":"43737"} +{"$label":"ACTS_IN","name":"Sully Sullivan","type":"Role","_key":"70951","_from":"3227","_to":"43100"} +{"$label":"ACTS_IN","name":"Reggie 'Reg' Dunlop","type":"Role","_key":"70925","_from":"3227","_to":"43092"} +{"$label":"ACTS_IN","name":"Dodge Blake","type":"Role","_key":"61709","_from":"3227","_to":"38866"} +{"$label":"ACTS_IN","name":"Henry Gondorff","type":"Role","_key":"52796","_from":"3227","_to":"34244"} +{"$label":"ACTS_IN","name":"Doug Roberts","type":"Role","_key":"40432","_from":"3227","_to":"27256"} +{"$label":"ACTS_IN","name":"Michael Armstrong","type":"Role","_key":"39463","_from":"3227","_to":"26678"} +{"$label":"ACTS_IN","name":"John Rooney","type":"Role","_key":"29770","_from":"3227","_to":"21072"} +{"$label":"ACTS_IN","name":"Andrew Craig","type":"Role","_key":"29454","_from":"3227","_to":"20892"} +{"$label":"ACTS_IN","name":"Ari Ben Canaan","type":"Role","_key":"16827","_from":"3227","_to":"12674"} +{"$label":"ACTS_IN","name":"Eddie Felson","type":"Role","_key":"11712","_from":"3227","_to":"9196"} +{"$label":"ACTS_IN","name":"Doc Hudson (voice)","type":"Role","_key":"10933","_from":"3227","_to":"8670"} +{"$label":"ACTS_IN","name":"Luke Jackson","type":"Role","_key":"10751","_from":"3227","_to":"8527"} +{"$label":"ACTS_IN","name":"Butch Cassidy","type":"Role","_key":"7674","_from":"3227","_to":"6376"} +{"$label":"ACTS_IN","name":"Mr. Shores (narrator)","type":"Role","_key":"105490","_from":"3229","_to":"62078"} +{"$label":"ACTS_IN","name":"George Lowery","type":"Role","_key":"6439","_from":"3229","_to":"5444"} +{"$label":"ACTS_IN","name":"Dr. Dan 'Danny' Kauffman","type":"Role","_key":"70578","_from":"3230","_to":"42941"} +{"$label":"ACTS_IN","name":"Eric Endicott","type":"Role","_key":"64730","_from":"3230","_to":"40299"} +{"$label":"ACTS_IN","name":"Stage Door Fan","type":"Role","_key":"3778","_from":"3240","_to":"3232"} +{"$label":"ACTS_IN","name":"Stage Door Fan","type":"Role","_key":"3777","_from":"3239","_to":"3232"} +{"$label":"ACTS_IN","name":"Stage Door Fan","type":"Role","_key":"3776","_from":"3238","_to":"3232"} +{"$label":"ACTS_IN","name":"Band leader","type":"Role","_key":"3775","_from":"3237","_to":"3232"} +{"$label":"ACTS_IN","name":"Ed Herlihy","type":"Role","_key":"3774","_from":"3236","_to":"3232"} +{"$label":"ACTS_IN","name":"Cathy Long","type":"Role","_key":"3773","_from":"3235","_to":"3232"} +{"$label":"ACTS_IN","name":"Masha","type":"Role","_key":"3772","_from":"3234","_to":"3232"} +{"$label":"ACTS_IN","name":"Jerry Langford","type":"Role","_key":"3770","_from":"3233","_to":"3232"} +{"$label":"ACTS_IN","name":"Cinderfella","type":"Role","_key":"118321","_from":"3233","_to":"69553"} +{"$label":"ACTS_IN","name":"Buddy Love","type":"Role","_key":"115849","_from":"3233","_to":"68204"} +{"$label":"ACTS_IN","name":"Stanley \/ Himself","type":"Role","_key":"105907","_from":"3233","_to":"62353"} +{"$label":"ACTS_IN","name":"Sidney L. Pythias","type":"Role","_key":"105896","_from":"3233","_to":"62345"} +{"$label":"ACTS_IN","name":"Driver Who Runs Over Hat (uncredited)","type":"Role","_key":"70833","_from":"3233","_to":"43041"} +{"$label":"ACTS_IN","name":"Leo Sweetie","type":"Role","_key":"67525","_from":"3233","_to":"41579"} +{"$label":"DIRECTED","_key":"115851","_from":"3233","_to":"68204"} +{"$label":"DIRECTED","_key":"105914","_from":"3233","_to":"62353"} +{"$label":"ACTS_IN","name":"Sandra Bernhard","type":"Role","_key":"37020","_from":"3234","_to":"25093"} +{"$label":"ACTS_IN","name":"Dallas Adair","type":"Role","_key":"31259","_from":"3234","_to":"21867"} +{"$label":"ACTS_IN","name":"Sandy Sands","type":"Role","_key":"31024","_from":"3234","_to":"21724"} +{"$label":"ACTS_IN","name":"Street Stranger (as Shelly Hack)","type":"Role","_key":"8488","_from":"3235","_to":"6916"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"63461","_from":"3236","_to":"39745"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"45618","_from":"3238","_to":"30198"} +{"$label":"ACTS_IN","name":"Blonsky","type":"Role","_key":"3790","_from":"3252","_to":"3243"} +{"$label":"ACTS_IN","name":"Prosel","type":"Role","_key":"3789","_from":"3251","_to":"3243"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"3787","_from":"3250","_to":"3243"} +{"$label":"ACTS_IN","name":"David Mendelssohn","type":"Role","_key":"3786","_from":"3249","_to":"3243"} +{"$label":"ACTS_IN","name":"von Strehlow","type":"Role","_key":"3785","_from":"3248","_to":"3243"} +{"$label":"ACTS_IN","name":"Henkel","type":"Role","_key":"3784","_from":"3247","_to":"3243"} +{"$label":"ACTS_IN","name":"Miriam Mendelsson","type":"Role","_key":"3782","_from":"3246","_to":"3243"} +{"$label":"ACTS_IN","name":"Robert Mendelsson","type":"Role","_key":"3781","_from":"3245","_to":"3243"} +{"$label":"ACTS_IN","name":"Willie Bunterberg","type":"Role","_key":"3780","_from":"3244","_to":"3243"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"89770","_from":"3244","_to":"53133"} +{"$label":"ACTS_IN","name":"Karin Thimm","type":"Role","_key":"62519","_from":"3244","_to":"39363"} +{"$label":"ACTS_IN","name":"Anna Epp, Hans's sister","type":"Role","_key":"62516","_from":"3244","_to":"39362"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"61900","_from":"3244","_to":"38955"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"47263","_from":"3244","_to":"31145"} +{"$label":"ACTS_IN","name":"Pauline Kropp","type":"Role","_key":"20031","_from":"3244","_to":"14741"} +{"$label":"ACTS_IN","name":"Susanne Staub","type":"Role","_key":"17492","_from":"3244","_to":"13075"} +{"$label":"ACTS_IN","name":"Effi Briest","type":"Role","_key":"8516","_from":"3244","_to":"6950"} +{"$label":"ACTS_IN","name":"Maria Braun","type":"Role","_key":"7901","_from":"3244","_to":"6551"} +{"$label":"ACTS_IN","name":"Albert Rua","type":"Role","_key":"67590","_from":"3245","_to":"41608"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Mathis","type":"Role","_key":"65625","_from":"3245","_to":"40670"} +{"$label":"ACTS_IN","name":"Alberto Arag\u00f3n","type":"Role","_key":"54686","_from":"3245","_to":"35016"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"35155","_from":"3245","_to":"23957"} +{"$label":"ACTS_IN","name":"Branco","type":"Role","_key":"34256","_from":"3245","_to":"23511"} +{"$label":"ACTS_IN","name":"Tullio Hermil","type":"Role","_key":"30789","_from":"3245","_to":"21588"} +{"$label":"ACTS_IN","name":"Laban","type":"Role","_key":"22936","_from":"3245","_to":"16632"} +{"$label":"ACTS_IN","name":"Emperor Shaddam IV","type":"Role","_key":"10420","_from":"3245","_to":"8289"} +{"$label":"ACTS_IN","name":"Ulla Scherzer","type":"Role","_key":"45088","_from":"3246","_to":"29936"} +{"$label":"ACTS_IN","name":"Christel","type":"Role","_key":"44777","_from":"3246","_to":"29778"} +{"$label":"ACTS_IN","name":"Evi","type":"Role","_key":"44743","_from":"3246","_to":"29769"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"39022","_from":"3246","_to":"26375"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"35098","_from":"3246","_to":"23927"} +{"$label":"ACTS_IN","name":"Debby","type":"Role","_key":"27751","_from":"3246","_to":"19886"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"19826","_from":"3246","_to":"14625"} +{"$label":"ACTS_IN","name":"Stromminger","type":"Role","_key":"43105","_from":"3247","_to":"28790"} +{"$label":"ACTS_IN","name":"Don Page","type":"Role","_key":"43635","_from":"3248","_to":"29135"} +{"$label":"ACTS_IN","name":"Dr. Edel","type":"Role","_key":"19803","_from":"3248","_to":"14619"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"121582","_from":"3249","_to":"71435"} +{"$label":"ACTS_IN","name":"Cleander","type":"Role","_key":"111754","_from":"3249","_to":"65965"} +{"$label":"ACTS_IN","name":"Prince Andrei Bolkonsky","type":"Role","_key":"71678","_from":"3249","_to":"43395"} +{"$label":"ACTS_IN","name":"Professor Carter","type":"Role","_key":"50467","_from":"3249","_to":"32963"} +{"$label":"ACTS_IN","name":"Benson Thacker","type":"Role","_key":"34863","_from":"3249","_to":"23833"} +{"$label":"ACTS_IN","name":"Cornelius A. Woaegen","type":"Role","_key":"29434","_from":"3249","_to":"20878"} +{"$label":"ACTS_IN","name":"Dr. Cook","type":"Role","_key":"15986","_from":"3249","_to":"12154"} +{"$label":"ACTS_IN","name":"Kurt Wallmann","type":"Role","_key":"41994","_from":"3250","_to":"28139"} +{"$label":"ACTS_IN","name":"Botschafter Trautmann","type":"Role","_key":"40596","_from":"3250","_to":"27336"} +{"$label":"ACTS_IN","name":"Franz Bauer","type":"Role","_key":"34180","_from":"3250","_to":"23469"} +{"$label":"ACTS_IN","name":"Paolo Naldini","type":"Role","_key":"26610","_from":"3250","_to":"19123"} +{"$label":"ACTS_IN","name":"Eliezer","type":"Role","_key":"22852","_from":"3250","_to":"16575"} +{"$label":"ACTS_IN","name":"General Arkady Grigorovich Ourumov","type":"Role","_key":"8583","_from":"3250","_to":"6980"} +{"$label":"ACTS_IN","name":"Willi Klenze","type":"Role","_key":"7907","_from":"3250","_to":"6551"} +{"$label":"ACTS_IN","name":"'Schorsch' Bernbacher","type":"Role","_key":"89859","_from":"3251","_to":"53171"} +{"$label":"ACTS_IN","name":"Sirene","type":"Role","_key":"3799","_from":"3260","_to":"3253"} +{"$label":"ACTS_IN","name":"Langs Assistant Director","type":"Role","_key":"3798","_from":"3254","_to":"3253"} +{"$label":"ACTS_IN","name":"Cameraman","type":"Role","_key":"3797","_from":"3259","_to":"3253"} +{"$label":"ACTS_IN","name":"Francesca Vanini","type":"Role","_key":"3795","_from":"3258","_to":"3253"} +{"$label":"ACTS_IN","name":"Jeremy Prokosch","type":"Role","_key":"3794","_from":"3257","_to":"3253"} +{"$label":"ACTS_IN","name":"Paul Javal","type":"Role","_key":"3793","_from":"3256","_to":"3253"} +{"$label":"ACTS_IN","name":"Camille Javal","type":"Role","_key":"3792","_from":"3255","_to":"3253"} +{"$label":"DIRECTED","_key":"3791","_from":"3254","_to":"3253"} +{"$label":"DIRECTED","_key":"48084","_from":"3254","_to":"31610"} +{"$label":"DIRECTED","_key":"48077","_from":"3254","_to":"31606"} +{"$label":"DIRECTED","_key":"48073","_from":"3254","_to":"31605"} +{"$label":"DIRECTED","_key":"48069","_from":"3254","_to":"31604"} +{"$label":"DIRECTED","_key":"48060","_from":"3254","_to":"31599"} +{"$label":"DIRECTED","_key":"33607","_from":"3254","_to":"23212"} +{"$label":"DIRECTED","_key":"23558","_from":"3254","_to":"17089"} +{"$label":"DIRECTED","_key":"14438","_from":"3254","_to":"11162"} +{"$label":"DIRECTED","_key":"14407","_from":"3254","_to":"11135"} +{"$label":"DIRECTED","_key":"3831","_from":"3254","_to":"3283"} +{"$label":"ACTS_IN","name":"The Informist","type":"Role","_key":"3839","_from":"3254","_to":"3283"} +{"$label":"ACTS_IN","name":"Maria I","type":"Role","_key":"72051","_from":"3255","_to":"43571"} +{"$label":"ACTS_IN","name":"Juliette Hardy","type":"Role","_key":"49605","_from":"3255","_to":"32469"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39493","_from":"3255","_to":"26693"} +{"$label":"ACTS_IN","name":"Girl in a groupe","type":"Role","_key":"33606","_from":"3255","_to":"23212"} +{"$label":"DIRECTED","_key":"116442","_from":"3256","_to":"68538"} +{"$label":"ACTS_IN","name":"Husson","type":"Role","_key":"112079","_from":"3256","_to":"66176"} +{"$label":"ACTS_IN","name":"Jean-Paul Chance","type":"Role","_key":"104535","_from":"3256","_to":"61489"} +{"$label":"ACTS_IN","name":"Edouard Frenhofer","type":"Role","_key":"90700","_from":"3256","_to":"53543"} +{"$label":"ACTS_IN","name":"Bertrand Malair","type":"Role","_key":"89127","_from":"3256","_to":"52799"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"60717","_from":"3256","_to":"38342"} +{"$label":"ACTS_IN","name":"Themroc","type":"Role","_key":"45708","_from":"3256","_to":"30252"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37846","_from":"3256","_to":"25644"} +{"$label":"ACTS_IN","name":"Max Baumstein","type":"Role","_key":"35746","_from":"3256","_to":"24292"} +{"$label":"ACTS_IN","name":"l'inspecteur des douanes","type":"Role","_key":"33952","_from":"3256","_to":"23371"} +{"$label":"ACTS_IN","name":"Edgar Pisani","type":"Role","_key":"33561","_from":"3256","_to":"23204"} +{"$label":"ACTS_IN","name":"Le Ministre","type":"Role","_key":"32909","_from":"3256","_to":"22829"} +{"$label":"ACTS_IN","name":"Werner Kreuz","type":"Role","_key":"31233","_from":"3256","_to":"21855"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Cabourg","type":"Role","_key":"30923","_from":"3256","_to":"21670"} +{"$label":"ACTS_IN","name":"James Putnam","type":"Role","_key":"30899","_from":"3256","_to":"21653"} +{"$label":"ACTS_IN","name":"Edmond Leroyer","type":"Role","_key":"30661","_from":"3256","_to":"21523"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"28989","_from":"3256","_to":"20698"} +{"$label":"ACTS_IN","name":"Georges Sarret","type":"Role","_key":"27319","_from":"3256","_to":"19639"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"27149","_from":"3256","_to":"19528"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler (Stimme)","type":"Role","_key":"27148","_from":"3256","_to":"19525"} +{"$label":"ACTS_IN","name":"Simon L\u00e9otard","type":"Role","_key":"27114","_from":"3256","_to":"19519"} +{"$label":"ACTS_IN","name":"Pierre B\u00e9rard","type":"Role","_key":"27105","_from":"3256","_to":"19515"} +{"$label":"ACTS_IN","name":"George Sarrassin","type":"Role","_key":"24815","_from":"3256","_to":"17944"} +{"$label":"ACTS_IN","name":"Ginko","type":"Role","_key":"24807","_from":"3256","_to":"17940"} +{"$label":"ACTS_IN","name":"Simon Dame","type":"Role","_key":"21319","_from":"3256","_to":"15589"} +{"$label":"ACTS_IN","name":"Jacques Granville","type":"Role","_key":"20705","_from":"3256","_to":"15136"} +{"$label":"ACTS_IN","name":"Bernard Rougerie","type":"Role","_key":"17913","_from":"3256","_to":"13327"} +{"$label":"ACTS_IN","name":"Milou","type":"Role","_key":"15497","_from":"3256","_to":"11836"} +{"$label":"ACTS_IN","name":"Henri Husson","type":"Role","_key":"7751","_from":"3256","_to":"6441"} +{"$label":"ACTS_IN","name":"Lester Blaine","type":"Role","_key":"119057","_from":"3257","_to":"69982"} +{"$label":"ACTS_IN","name":"Mercy","type":"Role","_key":"109234","_from":"3257","_to":"64535"} +{"$label":"ACTS_IN","name":"Duke Page","type":"Role","_key":"69066","_from":"3257","_to":"42268"} +{"$label":"ACTS_IN","name":"Yves Perret","type":"Role","_key":"55085","_from":"3257","_to":"35180"} +{"$label":"ACTS_IN","name":"Mr. Kitch","type":"Role","_key":"33515","_from":"3257","_to":"23177"} +{"$label":"ACTS_IN","name":"Rudi Cox","type":"Role","_key":"27750","_from":"3257","_to":"19886"} +{"$label":"ACTS_IN","name":"Jack Wilson","type":"Role","_key":"26023","_from":"3257","_to":"18705"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25055","_from":"3257","_to":"18100"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"18331","_from":"3257","_to":"13596"} +{"$label":"ACTS_IN","name":"Curly Washburn","type":"Role","_key":"12998","_from":"3257","_to":"10137"} +{"$label":"ACTS_IN","name":"Carl Grissom","type":"Role","_key":"3824","_from":"3257","_to":"3276"} +{"$label":"ACTS_IN","name":"Basketball Player","type":"Role","_key":"3816","_from":"3275","_to":"3261"} +{"$label":"ACTS_IN","name":"Basketball Player","type":"Role","_key":"3815","_from":"3274","_to":"3261"} +{"$label":"ACTS_IN","name":"Basketball Player","type":"Role","_key":"3814","_from":"3273","_to":"3261"} +{"$label":"ACTS_IN","name":"Ni\u00f1a","type":"Role","_key":"3813","_from":"3272","_to":"3261"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"3812","_from":"3271","_to":"3261"} +{"$label":"ACTS_IN","name":"Josep","type":"Role","_key":"3811","_from":"3270","_to":"3261"} +{"$label":"ACTS_IN","name":"Chica","type":"Role","_key":"3810","_from":"3269","_to":"3261"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"3808","_from":"3268","_to":"3261"} +{"$label":"ACTS_IN","name":"Do\u00f1a Centro de Mesa","type":"Role","_key":"3807","_from":"3267","_to":"3261"} +{"$label":"ACTS_IN","name":"Sancho","type":"Role","_key":"3806","_from":"3266","_to":"3261"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"3805","_from":"3265","_to":"3261"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"3803","_from":"3264","_to":"3261"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"3802","_from":"3263","_to":"3261"} +{"$label":"ACTS_IN","name":"V\u00edctor Plaza","type":"Role","_key":"3801","_from":"3262","_to":"3261"} +{"$label":"ACTS_IN","name":"Valentina de Santis","type":"Role","_key":"98021","_from":"3263","_to":"57719"} +{"$label":"ACTS_IN","name":"Delia","type":"Role","_key":"89398","_from":"3263","_to":"52916"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"66196","_from":"3263","_to":"40953"} +{"$label":"ACTS_IN","name":"Selena Perrini","type":"Role","_key":"57595","_from":"3263","_to":"36473"} +{"$label":"ACTS_IN","name":"Benito Gonz\u00e1lez","type":"Role","_key":"94180","_from":"3264","_to":"55446"} +{"$label":"ACTS_IN","name":"Lorenzo","type":"Role","_key":"70348","_from":"3264","_to":"42856"} +{"$label":"ACTS_IN","name":"Romeo Dolorosa","type":"Role","_key":"57448","_from":"3264","_to":"36418"} +{"$label":"ACTS_IN","name":"Anton Chigurh","type":"Role","_key":"45541","_from":"3264","_to":"30156"} +{"$label":"ACTS_IN","name":"Florentino Ariza","type":"Role","_key":"44502","_from":"3264","_to":"29642"} +{"$label":"ACTS_IN","name":"Juan Antonio Gonzalo","type":"Role","_key":"35593","_from":"3264","_to":"24189"} +{"$label":"ACTS_IN","name":"Reinaldo Arenas","type":"Role","_key":"35504","_from":"3264","_to":"24144"} +{"$label":"ACTS_IN","name":"Ra\u00fal","type":"Role","_key":"32191","_from":"3264","_to":"22444"} +{"$label":"ACTS_IN","name":"Ram\u00f3n Sampedro","type":"Role","_key":"16547","_from":"3264","_to":"12502"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"12903","_from":"3264","_to":"10068"} +{"$label":"ACTS_IN","name":"Cristina","type":"Role","_key":"119068","_from":"3265","_to":"69983"} +{"$label":"ACTS_IN","name":"Vanozza","type":"Role","_key":"106441","_from":"3265","_to":"62703"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"88204","_from":"3265","_to":"52332"} +{"$label":"ACTS_IN","name":"Madre de Lena (Lena's Mother)","type":"Role","_key":"48175","_from":"3265","_to":"31649"} +{"$label":"ACTS_IN","name":"Conchita II","type":"Role","_key":"39475","_from":"3265","_to":"26682"} +{"$label":"ACTS_IN","name":"Ismene","type":"Role","_key":"20668","_from":"3265","_to":"15110"} +{"$label":"ACTS_IN","name":"Beatrix","type":"Role","_key":"13506","_from":"3265","_to":"10513"} +{"$label":"ACTS_IN","name":"Dr. Samuel Leon","type":"Role","_key":"90469","_from":"3266","_to":"53450"} +{"$label":"ACTS_IN","name":"Andre Vishniac","type":"Role","_key":"19051","_from":"3266","_to":"14066"} +{"$label":"ACTS_IN","name":"Chuchupe","type":"Role","_key":"121237","_from":"3267","_to":"71217"} +{"$label":"ACTS_IN","name":"Paulina","type":"Role","_key":"21397","_from":"3267","_to":"15644"} +{"$label":"ACTS_IN","name":"Cura","type":"Role","_key":"65250","_from":"3268","_to":"40506"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"21925","_from":"3268","_to":"16014"} +{"$label":"ACTS_IN","name":"Dr. Ferreiro","type":"Role","_key":"13106","_from":"3268","_to":"10215"} +{"$label":"ACTS_IN","name":"Alexander Knox","type":"Role","_key":"3830","_from":"3282","_to":"3276"} +{"$label":"ACTS_IN","name":"Rotelli","type":"Role","_key":"3829","_from":"3281","_to":"3276"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"3827","_from":"3280","_to":"3276"} +{"$label":"ACTS_IN","name":"Bob the Goon","type":"Role","_key":"3826","_from":"3279","_to":"3276"} +{"$label":"ACTS_IN","name":"Alicia Grissom","type":"Role","_key":"3825","_from":"3278","_to":"3276"} +{"$label":"ACTS_IN","name":"Commissioner James Gordon","type":"Role","_key":"3822","_from":"3277","_to":"3276"} +{"$label":"ACTS_IN","name":"Bobo Justus","type":"Role","_key":"115007","_from":"3277","_to":"67722"} +{"$label":"ACTS_IN","name":"Joesphson","type":"Role","_key":"113667","_from":"3277","_to":"66986"} +{"$label":"ACTS_IN","name":"Boss Tom Pendergast","type":"Role","_key":"110400","_from":"3277","_to":"65230"} +{"$label":"ACTS_IN","name":"Gus Eicholtz","type":"Role","_key":"101027","_from":"3277","_to":"59536"} +{"$label":"ACTS_IN","name":"Edward Roundfield","type":"Role","_key":"67649","_from":"3277","_to":"41626"} +{"$label":"ACTS_IN","name":"Chief Jannings","type":"Role","_key":"64832","_from":"3277","_to":"40332"} +{"$label":"ACTS_IN","name":"Hendershot","type":"Role","_key":"58903","_from":"3277","_to":"37199"} +{"$label":"ACTS_IN","name":"Mr. Dennit, Sr.","type":"Role","_key":"55971","_from":"3277","_to":"35579"} +{"$label":"ACTS_IN","name":"Judge Adam Fenton","type":"Role","_key":"34867","_from":"3277","_to":"23835"} +{"$label":"ACTS_IN","name":"Judge Dennis Bradford","type":"Role","_key":"5881","_from":"3277","_to":"4990"} +{"$label":"ACTS_IN","name":"Commissioner James Gordon","type":"Role","_key":"5261","_from":"3277","_to":"4469"} +{"$label":"ACTS_IN","name":"Commissioner Gordon","type":"Role","_key":"5254","_from":"3277","_to":"4463"} +{"$label":"ACTS_IN","name":"Commissioner James Gordon","type":"Role","_key":"4857","_from":"3277","_to":"4154"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"45689","_from":"3278","_to":"30236"} +{"$label":"ACTS_IN","name":"Roy White","type":"Role","_key":"102458","_from":"3279","_to":"60289"} +{"$label":"ACTS_IN","name":"Uncle Patch Whitewood","type":"Role","_key":"96049","_from":"3279","_to":"56457"} +{"$label":"ACTS_IN","name":"FBI Agent Bill","type":"Role","_key":"66041","_from":"3279","_to":"40870"} +{"$label":"ACTS_IN","name":"Malak","type":"Role","_key":"55012","_from":"3279","_to":"35156"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"13002","_from":"3279","_to":"10137"} +{"$label":"ACTS_IN","name":"Actor in Rob's TV Show","type":"Role","_key":"8490","_from":"3279","_to":"6916"} +{"$label":"ACTS_IN","name":"Lamar","type":"Role","_key":"3896","_from":"3279","_to":"3326"} +{"$label":"ACTS_IN","name":"Larry Hockett","type":"Role","_key":"4011","_from":"3282","_to":"3420"} +{"$label":"ACTS_IN","name":"Cal Zombach","type":"Role","_key":"3841","_from":"3291","_to":"3283"} +{"$label":"ACTS_IN","name":"Tolmatchoff","type":"Role","_key":"3840","_from":"3290","_to":"3283"} +{"$label":"ACTS_IN","name":"Claudius Mansard","type":"Role","_key":"3838","_from":"3289","_to":"3283"} +{"$label":"ACTS_IN","name":"The Journalist","type":"Role","_key":"3837","_from":"3288","_to":"3283"} +{"$label":"ACTS_IN","name":"Antonio Berrutti","type":"Role","_key":"3836","_from":"3287","_to":"3283"} +{"$label":"ACTS_IN","name":"Parvulesco","type":"Role","_key":"3835","_from":"3286","_to":"3283"} +{"$label":"ACTS_IN","name":"Patricia Franchini","type":"Role","_key":"3833","_from":"3285","_to":"3283"} +{"$label":"ACTS_IN","name":"Michel Poiccard","type":"Role","_key":"3832","_from":"3284","_to":"3283"} +{"$label":"ACTS_IN","name":"Bob Saint-Clair","type":"Role","_key":"120384","_from":"3284","_to":"70722"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"100055","_from":"3284","_to":"59021"} +{"$label":"ACTS_IN","name":"Alexandre Dupr\u00e9","type":"Role","_key":"90144","_from":"3284","_to":"53304"} +{"$label":"ACTS_IN","name":"Commissaire Philippe Jordan","type":"Role","_key":"89926","_from":"3284","_to":"53209"} +{"$label":"ACTS_IN","name":"Ako","type":"Role","_key":"72976","_from":"3284","_to":"43926"} +{"$label":"ACTS_IN","name":"Roger Pilard, dit l'Alpagueur","type":"Role","_key":"70328","_from":"3284","_to":"42850"} +{"$label":"ACTS_IN","name":"Mike Gaucher \/ Bruno Ferrari","type":"Role","_key":"50749","_from":"3284","_to":"33125"} +{"$label":"ACTS_IN","name":"Fernand","type":"Role","_key":"34287","_from":"3284","_to":"23529"} +{"$label":"ACTS_IN","name":"Yvon Morandat","type":"Role","_key":"33551","_from":"3284","_to":"23204"} +{"$label":"ACTS_IN","name":"Nicolas Philibert","type":"Role","_key":"30716","_from":"3284","_to":"21545"} +{"$label":"ACTS_IN","name":"Adrien Dufourquet","type":"Role","_key":"29511","_from":"3284","_to":"20910"} +{"$label":"ACTS_IN","name":"Ferdinand-Pierrot","type":"Role","_key":"23559","_from":"3284","_to":"17089"} +{"$label":"ACTS_IN","name":"Joss Beaumont","type":"Role","_key":"14826","_from":"3284","_to":"11398"} +{"$label":"ACTS_IN","name":"Louis Mah\u00e9","type":"Role","_key":"14662","_from":"3284","_to":"11289"} +{"$label":"ACTS_IN","name":"Helen Kokintz","type":"Role","_key":"90808","_from":"3285","_to":"53584"} +{"$label":"ACTS_IN","name":"Ruth Miller","type":"Role","_key":"88475","_from":"3285","_to":"52443"} +{"$label":"ACTS_IN","name":"Tanya Livingston","type":"Role","_key":"64956","_from":"3285","_to":"40379"} +{"$label":"ACTS_IN","name":"Cecile","type":"Role","_key":"16790","_from":"3285","_to":"12656"} +{"$label":"DIRECTED","_key":"104243","_from":"3286","_to":"61334"} +{"$label":"DIRECTED","_key":"104218","_from":"3286","_to":"61316"} +{"$label":"DIRECTED","_key":"71347","_from":"3286","_to":"43272"} +{"$label":"DIRECTED","_key":"37596","_from":"3286","_to":"25485"} +{"$label":"ACTS_IN","name":"Georges Mandel","type":"Role","_key":"30032","_from":"3286","_to":"21177"} +{"$label":"ACTS_IN","name":"A. Cyriaque, 'Dromadaire'","type":"Role","_key":"27158","_from":"3287","_to":"19528"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"27145","_from":"3287","_to":"19525"} +{"$label":"ACTS_IN","name":"Commissaire Guillaume","type":"Role","_key":"23741","_from":"3287","_to":"17206"} +{"$label":"ACTS_IN","name":"Stra\u00dfens\u00e4nger","type":"Role","_key":"44172","_from":"3288","_to":"29437"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34699","_from":"3288","_to":"23728"} +{"$label":"ACTS_IN","name":"Jan Rouffer","type":"Role","_key":"34056","_from":"3288","_to":"23411"} +{"$label":"ACTS_IN","name":"Inspecteur","type":"Role","_key":"29971","_from":"3288","_to":"21166"} +{"$label":"ACTS_IN","name":"l'avocat de Landru","type":"Role","_key":"30028","_from":"3289","_to":"21177"} +{"$label":"ACTS_IN","name":"Marcelot","type":"Role","_key":"22011","_from":"3289","_to":"16059"} +{"$label":"ACTS_IN","name":"Momo","type":"Role","_key":"15742","_from":"3289","_to":"11991"} +{"$label":"ACTS_IN","name":"Picard","type":"Role","_key":"35873","_from":"3291","_to":"24357"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"35659","_from":"3291","_to":"24235"} +{"$label":"ACTS_IN","name":"Inspecteur Borelli","type":"Role","_key":"30803","_from":"3291","_to":"21591"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"3847","_from":"3296","_to":"3292"} +{"$label":"ACTS_IN","name":"Edna","type":"Role","_key":"3846","_from":"3295","_to":"3292"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"3845","_from":"3294","_to":"3292"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"3843","_from":"3293","_to":"3292"} +{"$label":"ACTS_IN","name":"Inga\/Anne","type":"Role","_key":"90299","_from":"3294","_to":"53382"} +{"$label":"ACTS_IN","name":"Kati","type":"Role","_key":"64756","_from":"3294","_to":"40306"} +{"$label":"ACTS_IN","name":"Heike","type":"Role","_key":"49212","_from":"3294","_to":"32242"} +{"$label":"ACTS_IN","name":"Silvia Brandt","type":"Role","_key":"42538","_from":"3294","_to":"28476"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"17007","_from":"3294","_to":"12760"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"54161","_from":"3296","_to":"34798"} +{"$label":"ACTS_IN","name":"Knotas","type":"Role","_key":"3859","_from":"3309","_to":"3297"} +{"$label":"ACTS_IN","name":"Sturkas","type":"Role","_key":"3858","_from":"3308","_to":"3297"} +{"$label":"ACTS_IN","name":"Lill-Klippen","type":"Role","_key":"3857","_from":"3307","_to":"3297"} +{"$label":"ACTS_IN","name":"Fjosok","type":"Role","_key":"3856","_from":"3306","_to":"3297"} +{"$label":"ACTS_IN","name":"Skalle-Per","type":"Role","_key":"3855","_from":"3305","_to":"3297"} +{"$label":"ACTS_IN","name":"Undis","type":"Role","_key":"3854","_from":"3304","_to":"3297"} +{"$label":"ACTS_IN","name":"Borka","type":"Role","_key":"3853","_from":"3303","_to":"3297"} +{"$label":"ACTS_IN","name":"Lovis","type":"Role","_key":"3852","_from":"3302","_to":"3297"} +{"$label":"ACTS_IN","name":"Mattis","type":"Role","_key":"3851","_from":"3301","_to":"3297"} +{"$label":"ACTS_IN","name":"Birk","type":"Role","_key":"3850","_from":"3300","_to":"3297"} +{"$label":"ACTS_IN","name":"Ronja","type":"Role","_key":"3849","_from":"3299","_to":"3297"} +{"$label":"DIRECTED","_key":"3848","_from":"3298","_to":"3297"} +{"$label":"ACTS_IN","name":"Olsson","type":"Role","_key":"111083","_from":"3298","_to":"65612"} +{"$label":"DIRECTED","_key":"111075","_from":"3298","_to":"65612"} +{"$label":"ACTS_IN","name":"Wilhelm Rahmberg","type":"Role","_key":"53249","_from":"3301","_to":"34435"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"91347","_from":"3302","_to":"53876"} +{"$label":"ACTS_IN","name":"Bertha","type":"Role","_key":"42433","_from":"3302","_to":"28411"} +{"$label":"ACTS_IN","name":"Orvar","type":"Role","_key":"68952","_from":"3303","_to":"42214"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26563","_from":"3303","_to":"19088"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"72901","_from":"3305","_to":"43904"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"72896","_from":"3305","_to":"43903"} +{"$label":"ACTS_IN","name":"Anton Svensson","type":"Role","_key":"72891","_from":"3305","_to":"43900"} +{"$label":"ACTS_IN","name":"Mattias","type":"Role","_key":"68949","_from":"3305","_to":"42214"} +{"$label":"ACTS_IN","name":"Herr Nilsson","type":"Role","_key":"49858","_from":"3305","_to":"32635"} +{"$label":"ACTS_IN","name":"Oscar Ekdahl","type":"Role","_key":"40778","_from":"3305","_to":"27445"} +{"$label":"ACTS_IN","name":"Gotham Society Dame","type":"Role","_key":"3876","_from":"3318","_to":"3310"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"3874","_from":"3317","_to":"3310"} +{"$label":"ACTS_IN","name":"Victor Zsasz","type":"Role","_key":"3873","_from":"3316","_to":"3310"} +{"$label":"ACTS_IN","name":"Martha Wayne","type":"Role","_key":"3872","_from":"3315","_to":"3310"} +{"$label":"ACTS_IN","name":"Joe Chill","type":"Role","_key":"3871","_from":"3314","_to":"3310"} +{"$label":"ACTS_IN","name":"Thomas Wayne","type":"Role","_key":"3870","_from":"3313","_to":"3310"} +{"$label":"ACTS_IN","name":"Ra's al Ghul (Decoy)","type":"Role","_key":"3869","_from":"3312","_to":"3310"} +{"$label":"ACTS_IN","name":"Rachel Dawes","type":"Role","_key":"3864","_from":"3311","_to":"3310"} +{"$label":"ACTS_IN","name":"Katie Burke","type":"Role","_key":"106578","_from":"3311","_to":"62806"} +{"$label":"ACTS_IN","name":"Samantha Mackenzie","type":"Role","_key":"97877","_from":"3311","_to":"57652"} +{"$label":"ACTS_IN","name":"Jackie Truman","type":"Role","_key":"87940","_from":"3311","_to":"52222"} +{"$label":"ACTS_IN","name":"Leigh Ann Watson","type":"Role","_key":"62698","_from":"3311","_to":"39424"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"53806","_from":"3311","_to":"34669"} +{"$label":"ACTS_IN","name":"Rachel Wagner","type":"Role","_key":"53769","_from":"3311","_to":"34656"} +{"$label":"ACTS_IN","name":"Heather Holloway","type":"Role","_key":"53543","_from":"3311","_to":"34562"} +{"$label":"ACTS_IN","name":"Libbets Casey","type":"Role","_key":"40303","_from":"3311","_to":"27194"} +{"$label":"ACTS_IN","name":"Jessica King","type":"Role","_key":"17815","_from":"3311","_to":"13278"} +{"$label":"ACTS_IN","name":"Pamela McFadden","type":"Role","_key":"15732","_from":"3311","_to":"11989"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"13716","_from":"3311","_to":"10650"} +{"$label":"ACTS_IN","name":"Gun","type":"Role","_key":"72250","_from":"3312","_to":"43652"} +{"$label":"ACTS_IN","name":"The Chairman","type":"Role","_key":"16447","_from":"3312","_to":"12429"} +{"$label":"ACTS_IN","name":"General Tadamichi Kuribayashi","type":"Role","_key":"12231","_from":"3312","_to":"9578"} +{"$label":"ACTS_IN","name":"Katsumoto","type":"Role","_key":"7308","_from":"3312","_to":"6096"} +{"$label":"ACTS_IN","name":"Capt. Peter A. Ross","type":"Role","_key":"64349","_from":"3313","_to":"40107"} +{"$label":"ACTS_IN","name":"Henry Bauford","type":"Role","_key":"57365","_from":"3313","_to":"36369"} +{"$label":"ACTS_IN","name":"Ronald Perkins","type":"Role","_key":"115641","_from":"3314","_to":"68078"} +{"$label":"ACTS_IN","name":"Prior","type":"Role","_key":"52032","_from":"3314","_to":"33922"} +{"$label":"ACTS_IN","name":"Scott Ridley","type":"Role","_key":"15096","_from":"3314","_to":"11588"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"49737","_from":"3315","_to":"32538"} +{"$label":"ACTS_IN","name":"Miss Desjarden","type":"Role","_key":"46526","_from":"3317","_to":"30733"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"3885","_from":"3325","_to":"3319"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"3884","_from":"3324","_to":"3319"} +{"$label":"ACTS_IN","name":"Kinokassiererin","type":"Role","_key":"3883","_from":"3323","_to":"3319"} +{"$label":"ACTS_IN","name":"Jochen","type":"Role","_key":"3881","_from":"3322","_to":"3319"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"3880","_from":"3321","_to":"3319"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"3879","_from":"3320","_to":"3319"} +{"$label":"ACTS_IN","name":"Fredrick Zoller","type":"Role","_key":"110282","_from":"3320","_to":"65170"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"103073","_from":"3320","_to":"60631"} +{"$label":"ACTS_IN","name":"Horst Mayer","type":"Role","_key":"71372","_from":"3320","_to":"43289"} +{"$label":"ACTS_IN","name":"Markus Baasweiler","type":"Role","_key":"54729","_from":"3320","_to":"35032"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"54468","_from":"3320","_to":"34924"} +{"$label":"ACTS_IN","name":"Checo","type":"Role","_key":"50188","_from":"3320","_to":"32809"} +{"$label":"ACTS_IN","name":"Istvan Thurzo","type":"Role","_key":"48990","_from":"3320","_to":"32115"} +{"$label":"ACTS_IN","name":"Arbo","type":"Role","_key":"42914","_from":"3320","_to":"28680"} +{"$label":"ACTS_IN","name":"Dr. Rosen","type":"Role","_key":"40592","_from":"3320","_to":"27336"} +{"$label":"ACTS_IN","name":"Tonda","type":"Role","_key":"33026","_from":"3320","_to":"22895"} +{"$label":"ACTS_IN","name":"Martin Kreutz","type":"Role","_key":"21739","_from":"3320","_to":"15873"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"19071","_from":"3320","_to":"14091"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"17020","_from":"3320","_to":"12770"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"17006","_from":"3320","_to":"12760"} +{"$label":"ACTS_IN","name":"Salvador Puig Antich","type":"Role","_key":"16365","_from":"3320","_to":"12387"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"15923","_from":"3320","_to":"12115"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"4634","_from":"3320","_to":"3954"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"3924","_from":"3320","_to":"3355"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"13788","_from":"3322","_to":"10694"} +{"$label":"ACTS_IN","name":"FBI Agent","type":"Role","_key":"3907","_from":"3343","_to":"3326"} +{"$label":"ACTS_IN","name":"FBI Agent in Memphis","type":"Role","_key":"3906","_from":"3342","_to":"3326"} +{"$label":"ACTS_IN","name":"State Trooper","type":"Role","_key":"3905","_from":"3341","_to":"3326"} +{"$label":"ACTS_IN","name":"SWAT Commander","type":"Role","_key":"3903","_from":"3340","_to":"3326"} +{"$label":"ACTS_IN","name":"Spooked Memphis Cop","type":"Role","_key":"3902","_from":"3339","_to":"3326"} +{"$label":"ACTS_IN","name":"Officer Murray","type":"Role","_key":"3901","_from":"3338","_to":"3326"} +{"$label":"ACTS_IN","name":"Lt. Boyle","type":"Role","_key":"3900","_from":"3337","_to":"3326"} +{"$label":"ACTS_IN","name":"Senator Ruth Martin","type":"Role","_key":"3898","_from":"3336","_to":"3326"} +{"$label":"ACTS_IN","name":"TV Anchorman","type":"Role","_key":"3897","_from":"3335","_to":"3326"} +{"$label":"ACTS_IN","name":"Agent Terry","type":"Role","_key":"3895","_from":"3334","_to":"3326"} +{"$label":"ACTS_IN","name":"Friendly Psychopath in Cell","type":"Role","_key":"3894","_from":"3333","_to":"3326"} +{"$label":"ACTS_IN","name":"Catherine Martin","type":"Role","_key":"3893","_from":"3332","_to":"3326"} +{"$label":"ACTS_IN","name":"Ardelia Mapp","type":"Role","_key":"3892","_from":"3331","_to":"3326"} +{"$label":"ACTS_IN","name":"Barney Matthews","type":"Role","_key":"3891","_from":"3330","_to":"3326"} +{"$label":"ACTS_IN","name":"Jame Gumb, \"Buffalo Bill\"","type":"Role","_key":"3890","_from":"3329","_to":"3326"} +{"$label":"ACTS_IN","name":"Dr. Frederick Chilton","type":"Role","_key":"3888","_from":"3328","_to":"3326"} +{"$label":"ACTS_IN","name":"Dr. Hannibal Lecter","type":"Role","_key":"3887","_from":"3327","_to":"3326"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"118374","_from":"3327","_to":"69592"} +{"$label":"ACTS_IN","name":"Felix Bonhoeffer","type":"Role","_key":"116878","_from":"3327","_to":"68807"} +{"$label":"ACTS_IN","name":"Errol Wallace","type":"Role","_key":"110677","_from":"3327","_to":"65381"} +{"$label":"ACTS_IN","name":"Frank P. Doel","type":"Role","_key":"105425","_from":"3327","_to":"62026"} +{"$label":"ACTS_IN","name":"Titus Andronicus","type":"Role","_key":"90040","_from":"3327","_to":"53259"} +{"$label":"ACTS_IN","name":"Dr. Ethan Powell","type":"Role","_key":"88123","_from":"3327","_to":"52298"} +{"$label":"ACTS_IN","name":"John Quincy Adams","type":"Role","_key":"72255","_from":"3327","_to":"43655"} +{"$label":"ACTS_IN","name":"Ted Brautigan","type":"Role","_key":"69078","_from":"3327","_to":"42274"} +{"$label":"ACTS_IN","name":"Coleman Silk","type":"Role","_key":"66765","_from":"3327","_to":"41254"} +{"$label":"ACTS_IN","name":"Richard Nixon","type":"Role","_key":"66319","_from":"3327","_to":"41028"} +{"$label":"ACTS_IN","name":"John Casey","type":"Role","_key":"65372","_from":"3327","_to":"40552"} +{"$label":"ACTS_IN","name":"Dr. John Harvey Kellogg","type":"Role","_key":"63490","_from":"3327","_to":"39759"} +{"$label":"ACTS_IN","name":"C. S. 'Jack' Lewis","type":"Role","_key":"63395","_from":"3327","_to":"39719"} +{"$label":"ACTS_IN","name":"George Hayden","type":"Role","_key":"63338","_from":"3327","_to":"39698"} +{"$label":"ACTS_IN","name":"Odin","type":"Role","_key":"61615","_from":"3327","_to":"38831"} +{"$label":"ACTS_IN","name":"Burt Munro","type":"Role","_key":"57926","_from":"3327","_to":"36647"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"56622","_from":"3327","_to":"35969"} +{"$label":"ACTS_IN","name":"Hannibal Lecter","type":"Role","_key":"56217","_from":"3327","_to":"35726"} +{"$label":"ACTS_IN","name":"Dr. Hannibal Lecter","type":"Role","_key":"54500","_from":"3327","_to":"34932"} +{"$label":"ACTS_IN","name":"Charles Morse","type":"Role","_key":"53827","_from":"3327","_to":"34676"} +{"$label":"ACTS_IN","name":"Don Diego de la Vega \/ Zorro","type":"Role","_key":"53226","_from":"3327","_to":"34424"} +{"$label":"ACTS_IN","name":"Ian McCandless","type":"Role","_key":"52805","_from":"3327","_to":"34245"} +{"$label":"ACTS_IN","name":"Henry J. Wilcox","type":"Role","_key":"48983","_from":"3327","_to":"32111"} +{"$label":"ACTS_IN","name":"Sir John Talbot","type":"Role","_key":"47605","_from":"3327","_to":"31370"} +{"$label":"ACTS_IN","name":"Theodore Crawford","type":"Role","_key":"41941","_from":"3327","_to":"28107"} +{"$label":"ACTS_IN","name":"Professor Van Helsing","type":"Role","_key":"41767","_from":"3327","_to":"28027"} +{"$label":"ACTS_IN","name":"Lt. Col. John D. Frost","type":"Role","_key":"40261","_from":"3327","_to":"27164"} +{"$label":"ACTS_IN","name":"Col. William Ludlow","type":"Role","_key":"31966","_from":"3327","_to":"22291"} +{"$label":"ACTS_IN","name":"Officer Oakes","type":"Role","_key":"26232","_from":"3327","_to":"18839"} +{"$label":"ACTS_IN","name":"Lieutenant William Bligh","type":"Role","_key":"22620","_from":"3327","_to":"16415"} +{"$label":"ACTS_IN","name":"Hrothgar","type":"Role","_key":"20286","_from":"3327","_to":"14868"} +{"$label":"ACTS_IN","name":"Old Ptolemy","type":"Role","_key":"17041","_from":"3327","_to":"12778"} +{"$label":"ACTS_IN","name":"Dr. Frederick Treves","type":"Role","_key":"16950","_from":"3327","_to":"12729"} +{"$label":"ACTS_IN","name":"Judge Irwin","type":"Role","_key":"15192","_from":"3327","_to":"11636"} +{"$label":"ACTS_IN","name":"Stephens","type":"Role","_key":"12175","_from":"3327","_to":"9544"} +{"$label":"ACTS_IN","name":"William Parrish","type":"Role","_key":"4134","_from":"3327","_to":"3530"} +{"$label":"DIRECTED","_key":"116882","_from":"3327","_to":"68807"} +{"$label":"ACTS_IN","name":"Dean Van Horne","type":"Role","_key":"56815","_from":"3328","_to":"36070"} +{"$label":"ACTS_IN","name":"Simon Canton","type":"Role","_key":"53981","_from":"3328","_to":"34723"} +{"$label":"ACTS_IN","name":"Daniel Longdale","type":"Role","_key":"48579","_from":"3328","_to":"31873"} +{"$label":"ACTS_IN","name":"Colonel Howard","type":"Role","_key":"100448","_from":"3329","_to":"59224"} +{"$label":"ACTS_IN","name":"Officer John Hunton","type":"Role","_key":"95209","_from":"3329","_to":"56017"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"69144","_from":"3329","_to":"42293"} +{"$label":"ACTS_IN","name":"Mr. Dunston","type":"Role","_key":"63091","_from":"3329","_to":"39584"} +{"$label":"ACTS_IN","name":"Big Bob Carter","type":"Role","_key":"56852","_from":"3329","_to":"36092"} +{"$label":"ACTS_IN","name":"General Russell Woodman","type":"Role","_key":"53602","_from":"3329","_to":"34589"} +{"$label":"ACTS_IN","name":"General 'Bloodbath' McGrath","type":"Role","_key":"50037","_from":"3329","_to":"32751"} +{"$label":"ACTS_IN","name":"Sam Nico","type":"Role","_key":"35470","_from":"3329","_to":"24121"} +{"$label":"ACTS_IN","name":"Lou Toback","type":"Role","_key":"35318","_from":"3329","_to":"24057"} +{"$label":"ACTS_IN","name":"Sheriff James Timberlak","type":"Role","_key":"32205","_from":"3329","_to":"22448"} +{"$label":"ACTS_IN","name":"Colonel Derricks","type":"Role","_key":"16457","_from":"3329","_to":"12429"} +{"$label":"ACTS_IN","name":"Bosko","type":"Role","_key":"11331","_from":"3329","_to":"8936"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110867","_from":"3330","_to":"65485"} +{"$label":"ACTS_IN","name":"Whitney Daniels","type":"Role","_key":"108537","_from":"3330","_to":"64148"} +{"$label":"ACTS_IN","name":"Elliott Gordon","type":"Role","_key":"88333","_from":"3330","_to":"52379"} +{"$label":"ACTS_IN","name":"Handy","type":"Role","_key":"58907","_from":"3330","_to":"37199"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"54960","_from":"3330","_to":"35132"} +{"$label":"ACTS_IN","name":"Det. Brandt","type":"Role","_key":"42618","_from":"3330","_to":"28531"} +{"$label":"ACTS_IN","name":"Corwin","type":"Role","_key":"16418","_from":"3330","_to":"12420"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"11841","_from":"3330","_to":"9282"} +{"$label":"ACTS_IN","name":"Coconut Sid","type":"Role","_key":"11020","_from":"3330","_to":"8717"} +{"$label":"ACTS_IN","name":"Detective Paretti","type":"Role","_key":"10860","_from":"3330","_to":"8607"} +{"$label":"ACTS_IN","name":"Angry Black Woman","type":"Role","_key":"58037","_from":"3331","_to":"36714"} +{"$label":"ACTS_IN","name":"Bernadette 'Bernie' Walsh","type":"Role","_key":"54474","_from":"3331","_to":"34925"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"45780","_from":"3331","_to":"30289"} +{"$label":"DIRECTED","_key":"43965","_from":"3331","_to":"29330"} +{"$label":"ACTS_IN","name":"Dawn","type":"Role","_key":"120275","_from":"3332","_to":"70628"} +{"$label":"ACTS_IN","name":"Cassie","type":"Role","_key":"55651","_from":"3332","_to":"35428"} +{"$label":"ACTS_IN","name":"Officer Swanson","type":"Role","_key":"26242","_from":"3332","_to":"18839"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"6411","_from":"3333","_to":"5417"} +{"$label":"ACTS_IN","name":"Blink Willie, Informant","type":"Role","_key":"102526","_from":"3335","_to":"60318"} +{"$label":"ACTS_IN","name":"Lt. Theodore 'Ted' Sawyer","type":"Role","_key":"90887","_from":"3335","_to":"53623"} +{"$label":"ACTS_IN","name":"Zacharias","type":"Role","_key":"64291","_from":"3335","_to":"40082"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"60949","_from":"3335","_to":"38506"} +{"$label":"ACTS_IN","name":"Dr. Haskins","type":"Role","_key":"52144","_from":"3335","_to":"33986"} +{"$label":"ACTS_IN","name":"Dean Carl Cain","type":"Role","_key":"49452","_from":"3335","_to":"32384"} +{"$label":"ACTS_IN","name":"Willie Long","type":"Role","_key":"43880","_from":"3335","_to":"29297"} +{"$label":"ACTS_IN","name":"Ellas","type":"Role","_key":"121631","_from":"3336","_to":"71457"} +{"$label":"ACTS_IN","name":"Shela","type":"Role","_key":"120769","_from":"3336","_to":"70939"} +{"$label":"ACTS_IN","name":"Jenny Lindenbrook","type":"Role","_key":"70754","_from":"3336","_to":"43030"} +{"$label":"ACTS_IN","name":"Jenny Baker","type":"Role","_key":"38489","_from":"3336","_to":"26003"} +{"$label":"ACTS_IN","name":"Emily Stratman","type":"Role","_key":"29457","_from":"3336","_to":"20892"} +{"$label":"ACTS_IN","name":"Margot Frank","type":"Role","_key":"22035","_from":"3336","_to":"16074"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"15968","_from":"3336","_to":"12144"} +{"$label":"ACTS_IN","name":"Mrs. Bennett","type":"Role","_key":"14567","_from":"3336","_to":"11227"} +{"$label":"ACTS_IN","name":"Lil Mainwaring","type":"Role","_key":"6111","_from":"3336","_to":"5183"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"119740","_from":"3337","_to":"70316"} +{"$label":"ACTS_IN","name":"Gloucester Hebbing","type":"Role","_key":"115014","_from":"3337","_to":"67722"} +{"$label":"ACTS_IN","name":"Sgt. Bill Henderson","type":"Role","_key":"102527","_from":"3337","_to":"60318"} +{"$label":"ACTS_IN","name":"Agent Williams","type":"Role","_key":"39269","_from":"3337","_to":"26554"} +{"$label":"ACTS_IN","name":"Iverson","type":"Role","_key":"39145","_from":"3337","_to":"26456"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"39104","_from":"3337","_to":"26431"} +{"$label":"ACTS_IN","name":"Harry Sledge","type":"Role","_key":"38975","_from":"3337","_to":"26338"} +{"$label":"ACTS_IN","name":"Baxter","type":"Role","_key":"38942","_from":"3337","_to":"26303"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38528","_from":"3337","_to":"26023"} +{"$label":"ACTS_IN","name":"Sheriff Harper","type":"Role","_key":"30818","_from":"3337","_to":"21601"} +{"$label":"ACTS_IN","name":"Marshall Murdock","type":"Role","_key":"12685","_from":"3337","_to":"9910"} +{"$label":"ACTS_IN","name":"Man on Porch","type":"Role","_key":"66389","_from":"3338","_to":"41060"} +{"$label":"ACTS_IN","name":"Detective #1","type":"Role","_key":"31044","_from":"3338","_to":"21724"} +{"$label":"ACTS_IN","name":"Conrad Brooks","type":"Role","_key":"6244","_from":"3338","_to":"5281"} +{"$label":"ACTS_IN","name":"Mr. Berman","type":"Role","_key":"10983","_from":"3339","_to":"8695"} +{"$label":"ACTS_IN","name":"Les Price","type":"Role","_key":"112246","_from":"3340","_to":"66289"} +{"$label":"ACTS_IN","name":"Vaughn Stickles","type":"Role","_key":"95996","_from":"3340","_to":"56430"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"14941","_from":"3340","_to":"11483"} +{"$label":"DIRECTED","_key":"108476","_from":"3342","_to":"64123"} +{"$label":"DIRECTED","_key":"92090","_from":"3342","_to":"54339"} +{"$label":"DIRECTED","_key":"71538","_from":"3342","_to":"43346"} +{"$label":"DIRECTED","_key":"62731","_from":"3342","_to":"39438"} +{"$label":"DIRECTED","_key":"62625","_from":"3342","_to":"39394"} +{"$label":"DIRECTED","_key":"49530","_from":"3342","_to":"32426"} +{"$label":"DIRECTED","_key":"10977","_from":"3342","_to":"8695"} +{"$label":"ACTS_IN","name":"Washington Reporter","type":"Role","_key":"62636","_from":"3342","_to":"39394"} +{"$label":"ACTS_IN","name":"Tommy Leonetti","type":"Role","_key":"58275","_from":"3343","_to":"36848"} +{"$label":"ACTS_IN","name":"Mike Yanagita","type":"Role","_key":"3922","_from":"3354","_to":"3344"} +{"$label":"ACTS_IN","name":"Shep Proudfoot","type":"Role","_key":"3921","_from":"3353","_to":"3344"} +{"$label":"ACTS_IN","name":"Irate Customer's Wife","type":"Role","_key":"3920","_from":"3352","_to":"3344"} +{"$label":"ACTS_IN","name":"Norm Gunderson","type":"Role","_key":"3919","_from":"3351","_to":"3344"} +{"$label":"ACTS_IN","name":"Irate Customer","type":"Role","_key":"3918","_from":"3350","_to":"3344"} +{"$label":"ACTS_IN","name":"Scotty Lundegaard","type":"Role","_key":"3917","_from":"3349","_to":"3344"} +{"$label":"ACTS_IN","name":"Wade Gustafson","type":"Role","_key":"3916","_from":"3348","_to":"3344"} +{"$label":"ACTS_IN","name":"Jean Lundegaard","type":"Role","_key":"3915","_from":"3347","_to":"3344"} +{"$label":"ACTS_IN","name":"Marge Gunderson","type":"Role","_key":"3912","_from":"3346","_to":"3344"} +{"$label":"ACTS_IN","name":"Jerry Lundegaard","type":"Role","_key":"3911","_from":"3345","_to":"3344"} +{"$label":"ACTS_IN","name":"Edmond","type":"Role","_key":"115214","_from":"3345","_to":"67851"} +{"$label":"ACTS_IN","name":"Charlie Berns","type":"Role","_key":"109341","_from":"3345","_to":"64596"} +{"$label":"ACTS_IN","name":"Lefty Maginnis (Voice)","type":"Role","_key":"103616","_from":"3345","_to":"60944"} +{"$label":"ACTS_IN","name":"Glenn","type":"Role","_key":"94070","_from":"3345","_to":"55398"} +{"$label":"ACTS_IN","name":"Milton Arbogast","type":"Role","_key":"68814","_from":"3345","_to":"42164"} +{"$label":"ACTS_IN","name":"Dudley Frank","type":"Role","_key":"68496","_from":"3345","_to":"42015"} +{"$label":"ACTS_IN","name":"Stoddard","type":"Role","_key":"68300","_from":"3345","_to":"41929"} +{"$label":"ACTS_IN","name":"Bernie Lootz","type":"Role","_key":"65398","_from":"3345","_to":"40556"} +{"$label":"ACTS_IN","name":"Paul Ebbers","type":"Role","_key":"65377","_from":"3345","_to":"40552"} +{"$label":"ACTS_IN","name":"Gene Shelby","type":"Role","_key":"61934","_from":"3345","_to":"38966"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"61237","_from":"3345","_to":"38676"} +{"$label":"ACTS_IN","name":"The Shoveler","type":"Role","_key":"57174","_from":"3345","_to":"36278"} +{"$label":"ACTS_IN","name":"Major Caldwell","type":"Role","_key":"56512","_from":"3345","_to":"35891"} +{"$label":"ACTS_IN","name":"Sgt. Bob Mooney","type":"Role","_key":"56382","_from":"3345","_to":"35817"} +{"$label":"ACTS_IN","name":"James Gordon","type":"Role","_key":"53762","_from":"3345","_to":"34653"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"52658","_from":"3345","_to":"34200"} +{"$label":"ACTS_IN","name":"Bill McNeill","type":"Role","_key":"49769","_from":"3345","_to":"32563"} +{"$label":"ACTS_IN","name":"Admiral Jim Sandecker","type":"Role","_key":"46627","_from":"3345","_to":"30794"} +{"$label":"ACTS_IN","name":"Little Bill","type":"Role","_key":"35444","_from":"3345","_to":"24109"} +{"$label":"ACTS_IN","name":"Tick Tock McGlaughlin","type":"Role","_key":"31902","_from":"3345","_to":"22252"} +{"$label":"ACTS_IN","name":"George Parker","type":"Role","_key":"22533","_from":"3345","_to":"16368"} +{"$label":"ACTS_IN","name":"Vice Principal Gene Wolters","type":"Role","_key":"17849","_from":"3345","_to":"13293"} +{"$label":"ACTS_IN","name":"Announcer","type":"Role","_key":"15312","_from":"3345","_to":"11713"} +{"$label":"ACTS_IN","name":"CIA Agent Charles Young","type":"Role","_key":"7034","_from":"3345","_to":"5892"} +{"$label":"ACTS_IN","name":"Donnie Smith","type":"Role","_key":"4581","_from":"3345","_to":"3908"} +{"$label":"ACTS_IN","name":"Paul Kirby","type":"Role","_key":"4526","_from":"3345","_to":"3855"} +{"$label":"DIRECTED","_key":"61236","_from":"3345","_to":"38676"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"96929","_from":"3346","_to":"57014"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"95095","_from":"3346","_to":"55969"} +{"$label":"ACTS_IN","name":"Guinevere Pettigrew","type":"Role","_key":"88492","_from":"3346","_to":"52451"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"69442","_from":"3346","_to":"42438"} +{"$label":"ACTS_IN","name":"Dean Sara Gaskell","type":"Role","_key":"67227","_from":"3346","_to":"41455"} +{"$label":"ACTS_IN","name":"Doris Crane","type":"Role","_key":"65711","_from":"3346","_to":"40695"} +{"$label":"ACTS_IN","name":"Glory","type":"Role","_key":"55842","_from":"3346","_to":"35533"} +{"$label":"ACTS_IN","name":"Julie Hastings","type":"Role","_key":"54650","_from":"3346","_to":"35004"} +{"$label":"ACTS_IN","name":"Handler","type":"Role","_key":"48385","_from":"3346","_to":"31760"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"45393","_from":"3346","_to":"30097"} +{"$label":"ACTS_IN","name":"Linda Litzke","type":"Role","_key":"35018","_from":"3346","_to":"23900"} +{"$label":"ACTS_IN","name":"Andy Bowman","type":"Role","_key":"16162","_from":"3346","_to":"12272"} +{"$label":"ACTS_IN","name":"Mrs. Pell","type":"Role","_key":"14464","_from":"3346","_to":"11179"} +{"$label":"ACTS_IN","name":"Dr. Molly Arrington","type":"Role","_key":"14106","_from":"3346","_to":"10931"} +{"$label":"ACTS_IN","name":"Elaine Miller","type":"Role","_key":"9238","_from":"3346","_to":"7466"} +{"$label":"ACTS_IN","name":"Betty Weathers","type":"Role","_key":"8378","_from":"3346","_to":"6847"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"4884","_from":"3346","_to":"4171"} +{"$label":"ACTS_IN","name":"Dr. Howard","type":"Role","_key":"116262","_from":"3348","_to":"68444"} +{"$label":"ACTS_IN","name":"Preston Blake","type":"Role","_key":"17589","_from":"3348","_to":"13137"} +{"$label":"ACTS_IN","name":"General George C. Marshall","type":"Role","_key":"10182","_from":"3348","_to":"8132"} +{"$label":"ACTS_IN","name":"Victor Lazarro","type":"Role","_key":"8859","_from":"3348","_to":"7192"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"109044","_from":"3349","_to":"64440"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"103833","_from":"3349","_to":"61064"} +{"$label":"ACTS_IN","name":"Newmar","type":"Role","_key":"60735","_from":"3349","_to":"38355"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"41230","_from":"3349","_to":"27735"} +{"$label":"ACTS_IN","name":"John McLaughlin","type":"Role","_key":"93263","_from":"3350","_to":"54939"} +{"$label":"ACTS_IN","name":"Professor Barrow","type":"Role","_key":"56627","_from":"3350","_to":"35969"} +{"$label":"ACTS_IN","name":"Nazi","type":"Role","_key":"6329","_from":"3350","_to":"5313"} +{"$label":"ACTS_IN","name":"Barber","type":"Role","_key":"93513","_from":"3351","_to":"55058"} +{"$label":"ACTS_IN","name":"Deputy Warden McPherson","type":"Role","_key":"69145","_from":"3351","_to":"42293"} +{"$label":"ACTS_IN","name":"Shades","type":"Role","_key":"69060","_from":"3351","_to":"42267"} +{"$label":"ACTS_IN","name":"Jack Field, Your Store Manager","type":"Role","_key":"58598","_from":"3351","_to":"37025"} +{"$label":"ACTS_IN","name":"Mr. Livingston","type":"Role","_key":"55573","_from":"3351","_to":"35390"} +{"$label":"ACTS_IN","name":"Stick's Driver","type":"Role","_key":"49128","_from":"3351","_to":"32184"} +{"$label":"ACTS_IN","name":"Sheriff Ryan","type":"Role","_key":"35222","_from":"3351","_to":"23991"} +{"$label":"ACTS_IN","name":"Arthur Leigh Allen","type":"Role","_key":"16917","_from":"3351","_to":"12715"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"8861","_from":"3351","_to":"7192"} +{"$label":"ACTS_IN","name":"Darla Riordan, Clermont Resident","type":"Role","_key":"5133","_from":"3352","_to":"4349"} +{"$label":"ACTS_IN","name":"Baby Face Bob","type":"Role","_key":"52920","_from":"3353","_to":"34291"} +{"$label":"ACTS_IN","name":"Mule","type":"Role","_key":"45582","_from":"3353","_to":"30170"} +{"$label":"ACTS_IN","name":"Globalisierungsgegner","type":"Role","_key":"3932","_from":"3363","_to":"3355"} +{"$label":"ACTS_IN","name":"Sohn","type":"Role","_key":"3931","_from":"3362","_to":"3355"} +{"$label":"ACTS_IN","name":"Tochter","type":"Role","_key":"3930","_from":"3361","_to":"3355"} +{"$label":"ACTS_IN","name":"Villenbesitzerin","type":"Role","_key":"3929","_from":"3360","_to":"3355"} +{"$label":"ACTS_IN","name":"Villenbesitzer","type":"Role","_key":"3928","_from":"3359","_to":"3355"} +{"$label":"ACTS_IN","name":"Justus Hardenberg","type":"Role","_key":"3927","_from":"3358","_to":"3355"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"3926","_from":"3357","_to":"3355"} +{"$label":"ACTS_IN","name":"Jule","type":"Role","_key":"3925","_from":"3356","_to":"3355"} +{"$label":"ACTS_IN","name":"L\u00edza","type":"Role","_key":"90241","_from":"3356","_to":"53353"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"47288","_from":"3356","_to":"31151"} +{"$label":"ACTS_IN","name":"Gina Franke","type":"Role","_key":"46683","_from":"3356","_to":"30826"} +{"$label":"ACTS_IN","name":"Inna","type":"Role","_key":"29556","_from":"3356","_to":"20938"} +{"$label":"ACTS_IN","name":"Sophie Magdalena Scholl","type":"Role","_key":"18456","_from":"3356","_to":"13678"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"34457","_from":"3357","_to":"23601"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"16501","_from":"3357","_to":"12463"} +{"$label":"ACTS_IN","name":"Dr. Frank Norbert Stein","type":"Role","_key":"12340","_from":"3357","_to":"9662"} +{"$label":"ACTS_IN","name":"Hermann Droemer","type":"Role","_key":"43946","_from":"3358","_to":"29317"} +{"$label":"ACTS_IN","name":"Herbert Neumann","type":"Role","_key":"34552","_from":"3358","_to":"23661"} +{"$label":"ACTS_IN","name":"Dr. Gunthen","type":"Role","_key":"25184","_from":"3358","_to":"18179"} +{"$label":"ACTS_IN","name":"Weber","type":"Role","_key":"13785","_from":"3358","_to":"10694"} +{"$label":"ACTS_IN","name":"Prof. Udo Keller","type":"Role","_key":"12339","_from":"3358","_to":"9662"} +{"$label":"ACTS_IN","name":"Karl Klingler","type":"Role","_key":"6257","_from":"3358","_to":"5291"} +{"$label":"ACTS_IN","name":"Alex' Vater","type":"Role","_key":"4640","_from":"3358","_to":"3954"} +{"$label":"ACTS_IN","name":"Jo\u0308rg Schuhmann-Wei","type":"Role","_key":"71708","_from":"3359","_to":"43407"} +{"$label":"ACTS_IN","name":"Helga K\u00f6ster","type":"Role","_key":"72764","_from":"3360","_to":"43838"} +{"$label":"ACTS_IN","name":"Reporter of 'Abendzeitung'","type":"Role","_key":"58964","_from":"3360","_to":"37225"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"42863","_from":"3360","_to":"28655"} +{"$label":"ACTS_IN","name":"Maklerin","type":"Role","_key":"36535","_from":"3360","_to":"24772"} +{"$label":"ACTS_IN","name":"Sebastian Werner","type":"Role","_key":"52285","_from":"3362","_to":"34043"} +{"$label":"ACTS_IN","name":"Kr\u00fcger","type":"Role","_key":"70338","_from":"3363","_to":"42854"} +{"$label":"ACTS_IN","name":"Geldbote Holger","type":"Role","_key":"55684","_from":"3363","_to":"35440"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"50142","_from":"3363","_to":"32788"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"46307","_from":"3363","_to":"30602"} +{"$label":"ACTS_IN","name":"Dr. Lockwood","type":"Role","_key":"3943","_from":"3371","_to":"3364"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"3941","_from":"3370","_to":"3364"} +{"$label":"ACTS_IN","name":"Singe","type":"Role","_key":"3940","_from":"3369","_to":"3364"} +{"$label":"ACTS_IN","name":"Kraven","type":"Role","_key":"3938","_from":"3368","_to":"3364"} +{"$label":"ACTS_IN","name":"Selene","type":"Role","_key":"3935","_from":"3367","_to":"3364"} +{"$label":"DIRECTED","_key":"3934","_from":"3366","_to":"3364"} +{"$label":"DIRECTED","_key":"3933","_from":"3365","_to":"3364"} +{"$label":"DIRECTED","_key":"13898","_from":"3365","_to":"10786"} +{"$label":"DIRECTED","_key":"9860","_from":"3365","_to":"7897"} +{"$label":"DIRECTED","_key":"96595","_from":"3366","_to":"56784"} +{"$label":"ACTS_IN","name":"Christina Mariell","type":"Role","_key":"117510","_from":"3367","_to":"69093"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"116759","_from":"3367","_to":"68730"} +{"$label":"ACTS_IN","name":"Darlene Davis","type":"Role","_key":"113713","_from":"3367","_to":"67017"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"110675","_from":"3367","_to":"65380"} +{"$label":"ACTS_IN","name":"Carla Davenport","type":"Role","_key":"106780","_from":"3367","_to":"62951"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103433","_from":"3367","_to":"60839"} +{"$label":"ACTS_IN","name":"Rachel Armstrong","type":"Role","_key":"101223","_from":"3367","_to":"59622"} +{"$label":"ACTS_IN","name":"Annie Marchand","type":"Role","_key":"98312","_from":"3367","_to":"57907"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"96931","_from":"3367","_to":"57014"} +{"$label":"ACTS_IN","name":"Emma Woodhouse","type":"Role","_key":"89065","_from":"3367","_to":"52764"} +{"$label":"ACTS_IN","name":"Amy Fox","type":"Role","_key":"62429","_from":"3367","_to":"39330"} +{"$label":"ACTS_IN","name":"Sara Thomas","type":"Role","_key":"56638","_from":"3367","_to":"35977"} +{"$label":"ACTS_IN","name":"Donna Newman","type":"Role","_key":"53207","_from":"3367","_to":"34418"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"49038","_from":"3367","_to":"32132"} +{"$label":"ACTS_IN","name":"Anna Valerious","type":"Role","_key":"45838","_from":"3367","_to":"30311"} +{"$label":"ACTS_IN","name":"Ava Gardner","type":"Role","_key":"21992","_from":"3367","_to":"16058"} +{"$label":"ACTS_IN","name":"Barbarella","type":"Role","_key":"15495","_from":"3367","_to":"11835"} +{"$label":"ACTS_IN","name":"Selene","type":"Role","_key":"9845","_from":"3367","_to":"7897"} +{"$label":"ACTS_IN","name":"Nurse Lt. Evelyn Johnson","type":"Role","_key":"8126","_from":"3367","_to":"6692"} +{"$label":"ACTS_IN","name":"Kraven","type":"Role","_key":"89483","_from":"3368","_to":"52980"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"60038","_from":"3368","_to":"37890"} +{"$label":"ACTS_IN","name":"Kraven","type":"Role","_key":"9848","_from":"3368","_to":"7897"} +{"$label":"ACTS_IN","name":"The Psychopath","type":"Role","_key":"118090","_from":"3369","_to":"69406"} +{"$label":"ACTS_IN","name":"Tankwart","type":"Role","_key":"41053","_from":"3369","_to":"27614"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40704","_from":"3369","_to":"27392"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"4944","_from":"3369","_to":"4213"} +{"$label":"ACTS_IN","name":"Lady Penelope","type":"Role","_key":"101152","_from":"3370","_to":"59587"} +{"$label":"ACTS_IN","name":"Freya","type":"Role","_key":"63872","_from":"3370","_to":"39910"} +{"$label":"ACTS_IN","name":"Susan \"Susie\" Price","type":"Role","_key":"63008","_from":"3370","_to":"39550"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"56770","_from":"3370","_to":"36060"} +{"$label":"ACTS_IN","name":"Isolde","type":"Role","_key":"52245","_from":"3370","_to":"34026"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"19552","_from":"3370","_to":"14466"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"9857","_from":"3370","_to":"7897"} +{"$label":"ACTS_IN","name":"David Scott","type":"Role","_key":"88810","_from":"3371","_to":"52620"} +{"$label":"ACTS_IN","name":"Young Coleman Silk","type":"Role","_key":"66769","_from":"3371","_to":"41254"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"3955","_from":"3381","_to":"3372"} +{"$label":"ACTS_IN","name":"Guard Dekins","type":"Role","_key":"3954","_from":"3380","_to":"3372"} +{"$label":"ACTS_IN","name":"Andy Dufresne's Wife","type":"Role","_key":"3953","_from":"3379","_to":"3372"} +{"$label":"ACTS_IN","name":"Brooks Hatlen","type":"Role","_key":"3952","_from":"3378","_to":"3372"} +{"$label":"ACTS_IN","name":"Bogs Diamond","type":"Role","_key":"3951","_from":"3377","_to":"3372"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"3950","_from":"3376","_to":"3372"} +{"$label":"ACTS_IN","name":"Captain Byron T. Hadley","type":"Role","_key":"3949","_from":"3375","_to":"3372"} +{"$label":"ACTS_IN","name":"Heywood","type":"Role","_key":"3948","_from":"3374","_to":"3372"} +{"$label":"ACTS_IN","name":"Warden Samuel Norton","type":"Role","_key":"3947","_from":"3373","_to":"3372"} +{"$label":"ACTS_IN","name":"Hugh Moreland","type":"Role","_key":"114973","_from":"3373","_to":"67709"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"110931","_from":"3373","_to":"65527"} +{"$label":"ACTS_IN","name":"Edward Ashen","type":"Role","_key":"98049","_from":"3373","_to":"57732"} +{"$label":"ACTS_IN","name":"Ethan Kanin","type":"Role","_key":"97987","_from":"3373","_to":"57709"} +{"$label":"ACTS_IN","name":"Father Ezra","type":"Role","_key":"97045","_from":"3373","_to":"57091"} +{"$label":"ACTS_IN","name":"Dr. Alexander McCabe","type":"Role","_key":"63679","_from":"3373","_to":"39828"} +{"$label":"ACTS_IN","name":"Dean Walcott","type":"Role","_key":"62534","_from":"3373","_to":"39365"} +{"$label":"ACTS_IN","name":"Frank Deverell","type":"Role","_key":"55127","_from":"3373","_to":"35191"} +{"$label":"ACTS_IN","name":"Pritchett","type":"Role","_key":"52590","_from":"3373","_to":"34175"} +{"$label":"ACTS_IN","name":"Finley Largent","type":"Role","_key":"48340","_from":"3373","_to":"31735"} +{"$label":"ACTS_IN","name":"Alexander McAnally III","type":"Role","_key":"18555","_from":"3373","_to":"13731"} +{"$label":"ACTS_IN","name":"Uncle Rodney","type":"Role","_key":"117843","_from":"3374","_to":"69275"} +{"$label":"ACTS_IN","name":"Rober Lampert","type":"Role","_key":"116152","_from":"3374","_to":"68391"} +{"$label":"ACTS_IN","name":"Dick Brian","type":"Role","_key":"113972","_from":"3374","_to":"67125"} +{"$label":"ACTS_IN","name":"Phil Palmer","type":"Role","_key":"106764","_from":"3374","_to":"62941"} +{"$label":"ACTS_IN","name":"Frank Sutton","type":"Role","_key":"102183","_from":"3374","_to":"60132"} +{"$label":"ACTS_IN","name":"Senator Vernon Trent","type":"Role","_key":"54753","_from":"3374","_to":"35043"} +{"$label":"ACTS_IN","name":"Frank Brayker","type":"Role","_key":"52325","_from":"3374","_to":"34061"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"40041","_from":"3374","_to":"27031"} +{"$label":"ACTS_IN","name":"Thomas Novacek","type":"Role","_key":"35997","_from":"3374","_to":"24440"} +{"$label":"ACTS_IN","name":"Sensenmann \/ Mitglied der englischen Familie","type":"Role","_key":"14658","_from":"3374","_to":"11286"} +{"$label":"ACTS_IN","name":"Colonel Stuart","type":"Role","_key":"13918","_from":"3374","_to":"10802"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"111021","_from":"3375","_to":"65577"} +{"$label":"ACTS_IN","name":"John Clay","type":"Role","_key":"106100","_from":"3375","_to":"62481"} +{"$label":"ACTS_IN","name":"Viking Lofgren","type":"Role","_key":"95563","_from":"3375","_to":"56195"} +{"$label":"ACTS_IN","name":"Mr. Krabs (voice)","type":"Role","_key":"72276","_from":"3375","_to":"43663"} +{"$label":"ACTS_IN","name":"Sheriff Gus Gilbert","type":"Role","_key":"66623","_from":"3375","_to":"41181"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"55954","_from":"3375","_to":"35578"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"54792","_from":"3375","_to":"35058"} +{"$label":"ACTS_IN","name":"Nick Mann","type":"Role","_key":"54225","_from":"3375","_to":"34828"} +{"$label":"ACTS_IN","name":"Victor 'The Kurgan' Kruger","type":"Role","_key":"47751","_from":"3375","_to":"31448"} +{"$label":"ACTS_IN","name":"Captain William Hadley","type":"Role","_key":"33154","_from":"3375","_to":"22958"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"13593","_from":"3375","_to":"10570"} +{"$label":"ACTS_IN","name":"Career Sergeant Zim","type":"Role","_key":"6759","_from":"3375","_to":"5670"} +{"$label":"ACTS_IN","name":"Joey One-Way","type":"Role","_key":"117717","_from":"3376","_to":"69199"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"112127","_from":"3376","_to":"66220"} +{"$label":"ACTS_IN","name":"Lloyd Walker","type":"Role","_key":"106871","_from":"3376","_to":"63003"} +{"$label":"ACTS_IN","name":"Frank Trammell","type":"Role","_key":"97991","_from":"3376","_to":"57709"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"93170","_from":"3376","_to":"54906"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"52514","_from":"3376","_to":"34149"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"45387","_from":"3376","_to":"30092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"119340","_from":"3377","_to":"70121"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"118756","_from":"3377","_to":"69832"} +{"$label":"ACTS_IN","name":"J. Scar","type":"Role","_key":"52730","_from":"3377","_to":"34221"} +{"$label":"ACTS_IN","name":"Kellaway","type":"Role","_key":"40810","_from":"3377","_to":"27472"} +{"$label":"ACTS_IN","name":"Stef","type":"Role","_key":"37793","_from":"3377","_to":"25621"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"11240","_from":"3377","_to":"8884"} +{"$label":"ACTS_IN","name":"Private M. Drake","type":"Role","_key":"8191","_from":"3377","_to":"6737"} +{"$label":"ACTS_IN","name":"Gus Minissi","type":"Role","_key":"110617","_from":"3378","_to":"65354"} +{"$label":"ACTS_IN","name":"Levi","type":"Role","_key":"90689","_from":"3378","_to":"53539"} +{"$label":"ACTS_IN","name":"Vice Admiral William F. 'Bull' Halsey Jr.","type":"Role","_key":"68261","_from":"3378","_to":"41908"} +{"$label":"ACTS_IN","name":"Stan Keller","type":"Role","_key":"67798","_from":"3378","_to":"41672"} +{"$label":"ACTS_IN","name":"Sgt. Ben Peterson","type":"Role","_key":"67700","_from":"3378","_to":"41637"} +{"$label":"ACTS_IN","name":"Dr. Albert Frock","type":"Role","_key":"67303","_from":"3378","_to":"41490"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"34977","_from":"3378","_to":"23877"} +{"$label":"ACTS_IN","name":"Chief Insp. Charles Kane","type":"Role","_key":"34903","_from":"3378","_to":"23845"} +{"$label":"ACTS_IN","name":"Philip Tenhausen","type":"Role","_key":"24731","_from":"3378","_to":"17888"} +{"$label":"ACTS_IN","name":"Detective O'Connor","type":"Role","_key":"31577","_from":"3380","_to":"22047"} +{"$label":"ACTS_IN","name":"Mrs. Weber","type":"Role","_key":"3964","_from":"3390","_to":"3382"} +{"$label":"ACTS_IN","name":"Emperor Joseph II","type":"Role","_key":"3963","_from":"3389","_to":"3382"} +{"$label":"ACTS_IN","name":"Katerina Cavalieri","type":"Role","_key":"3962","_from":"3388","_to":"3382"} +{"$label":"ACTS_IN","name":"Emanuel Schikaneder","type":"Role","_key":"3961","_from":"3387","_to":"3382"} +{"$label":"ACTS_IN","name":"Leopold Mozart","type":"Role","_key":"3960","_from":"3386","_to":"3382"} +{"$label":"ACTS_IN","name":"Constanze Mozart","type":"Role","_key":"3959","_from":"3385","_to":"3382"} +{"$label":"ACTS_IN","name":"Wolfgang Amadeus Mozart","type":"Role","_key":"3958","_from":"3384","_to":"3382"} +{"$label":"DIRECTED","_key":"3956","_from":"3383","_to":"3382"} +{"$label":"ACTS_IN","name":"Dimitri","type":"Role","_key":"96921","_from":"3383","_to":"57008"} +{"$label":"ACTS_IN","name":"Father Havel","type":"Role","_key":"35209","_from":"3383","_to":"23984"} +{"$label":"DIRECTED","_key":"70352","_from":"3383","_to":"42856"} +{"$label":"DIRECTED","_key":"64855","_from":"3383","_to":"40341"} +{"$label":"DIRECTED","_key":"15973","_from":"3383","_to":"12149"} +{"$label":"DIRECTED","_key":"14456","_from":"3383","_to":"11171"} +{"$label":"DIRECTED","_key":"6161","_from":"3383","_to":"5224"} +{"$label":"ACTS_IN","name":"Quasimodo","type":"Role","_key":"89568","_from":"3384","_to":"53002"} +{"$label":"ACTS_IN","name":"Quasimodo","type":"Role","_key":"63973","_from":"3384","_to":"39952"} +{"$label":"ACTS_IN","name":"Brillstein","type":"Role","_key":"63385","_from":"3384","_to":"39716"} +{"$label":"ACTS_IN","name":"Larry Kroger","type":"Role","_key":"50012","_from":"3384","_to":"32712"} +{"$label":"ACTS_IN","name":"Henry Clerval","type":"Role","_key":"25170","_from":"3384","_to":"18176"} +{"$label":"ACTS_IN","name":"Amy Harper","type":"Role","_key":"95188","_from":"3385","_to":"56004"} +{"$label":"ACTS_IN","name":"Anton Pamchenko","type":"Role","_key":"109548","_from":"3386","_to":"64707"} +{"$label":"ACTS_IN","name":"The Evil Fuckaire","type":"Role","_key":"101735","_from":"3386","_to":"59878"} +{"$label":"ACTS_IN","name":"Zanuck","type":"Role","_key":"70233","_from":"3386","_to":"42798"} +{"$label":"ACTS_IN","name":"Haddo","type":"Role","_key":"101867","_from":"3387","_to":"59958"} +{"$label":"ACTS_IN","name":"Father Henry","type":"Role","_key":"94798","_from":"3387","_to":"55826"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"57296","_from":"3387","_to":"36334"} +{"$label":"ACTS_IN","name":"Vincent Cadby","type":"Role","_key":"52768","_from":"3387","_to":"34234"} +{"$label":"ACTS_IN","name":"Tilney","type":"Role","_key":"16764","_from":"3387","_to":"12639"} +{"$label":"ACTS_IN","name":"Gareth","type":"Role","_key":"8609","_from":"3387","_to":"6995"} +{"$label":"ACTS_IN","name":"Arlene Aldrich","type":"Role","_key":"116391","_from":"3388","_to":"68518"} +{"$label":"ACTS_IN","name":"Tessie Tura","type":"Role","_key":"114352","_from":"3388","_to":"67357"} +{"$label":"ACTS_IN","name":"Regina Rich","type":"Role","_key":"67286","_from":"3388","_to":"41485"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"63614","_from":"3388","_to":"39797"} +{"$label":"ACTS_IN","name":"Loralie Brown","type":"Role","_key":"57471","_from":"3388","_to":"36425"} +{"$label":"ACTS_IN","name":"Clive Barlow","type":"Role","_key":"116000","_from":"3389","_to":"68313"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"114438","_from":"3389","_to":"67413"} +{"$label":"ACTS_IN","name":"Inspector Lestrade","type":"Role","_key":"90424","_from":"3389","_to":"53426"} +{"$label":"ACTS_IN","name":"Eliot Draisen","type":"Role","_key":"71747","_from":"3389","_to":"43432"} +{"$label":"ACTS_IN","name":"Dr. Walter Jenning","type":"Role","_key":"64877","_from":"3389","_to":"40348"} +{"$label":"ACTS_IN","name":"Col. Hart","type":"Role","_key":"61741","_from":"3389","_to":"38878"} +{"$label":"ACTS_IN","name":"Ed Rooney","type":"Role","_key":"53452","_from":"3389","_to":"34532"} +{"$label":"ACTS_IN","name":"Vice President","type":"Role","_key":"49456","_from":"3389","_to":"32384"} +{"$label":"ACTS_IN","name":"Reverend Steenwyck","type":"Role","_key":"22615","_from":"3389","_to":"16413"} +{"$label":"ACTS_IN","name":"Eddie Barzoon","type":"Role","_key":"15693","_from":"3389","_to":"11965"} +{"$label":"ACTS_IN","name":"Criswell","type":"Role","_key":"6238","_from":"3389","_to":"5281"} +{"$label":"ACTS_IN","name":"Janelle Voight","type":"Role","_key":"3974","_from":"3396","_to":"3391"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"3973","_from":"3395","_to":"3391"} +{"$label":"ACTS_IN","name":"Enrique Salceda","type":"Role","_key":"3972","_from":"3394","_to":"3391"} +{"$label":"ACTS_IN","name":"Tarissa Dyson","type":"Role","_key":"3971","_from":"3393","_to":"3391"} +{"$label":"ACTS_IN","name":"Dr. Miles Bennett Dyson","type":"Role","_key":"3970","_from":"3392","_to":"3391"} +{"$label":"ACTS_IN","name":"Jon Harper","type":"Role","_key":"102563","_from":"3392","_to":"60339"} +{"$label":"ACTS_IN","name":"Cab Chamberlain","type":"Role","_key":"70725","_from":"3392","_to":"43013"} +{"$label":"ACTS_IN","name":"Hugh Campbell","type":"Role","_key":"59989","_from":"3392","_to":"37868"} +{"$label":"ACTS_IN","name":"Capt. Dick Marshfield","type":"Role","_key":"59909","_from":"3392","_to":"37824"} +{"$label":"ACTS_IN","name":"Ashe","type":"Role","_key":"56697","_from":"3392","_to":"36013"} +{"$label":"ACTS_IN","name":"Chauncey Eskridge","type":"Role","_key":"50063","_from":"3392","_to":"32759"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"49174","_from":"3392","_to":"32215"} +{"$label":"ACTS_IN","name":"Sherman Reese","type":"Role","_key":"24184","_from":"3392","_to":"17522"} +{"$label":"ACTS_IN","name":"Sergeant 'Cappy' Matheny","type":"Role","_key":"20382","_from":"3392","_to":"14930"} +{"$label":"ACTS_IN","name":"Winn","type":"Role","_key":"15431","_from":"3392","_to":"11790"} +{"$label":"ACTS_IN","name":"Capt. McMahon","type":"Role","_key":"14502","_from":"3392","_to":"11195"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"47494","_from":"3393","_to":"31289"} +{"$label":"ACTS_IN","name":"Nurse Marian","type":"Role","_key":"110509","_from":"3396","_to":"65293"} +{"$label":"ACTS_IN","name":"Officer Meagan Shapiro","type":"Role","_key":"11241","_from":"3396","_to":"8884"} +{"$label":"ACTS_IN","name":"Private J. Vasquez","type":"Role","_key":"8189","_from":"3396","_to":"6737"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"3986","_from":"3402","_to":"3397"} +{"$label":"ACTS_IN","name":"Philo Gant","type":"Role","_key":"3984","_from":"3401","_to":"3397"} +{"$label":"ACTS_IN","name":"Lornette 'Mace' Mason","type":"Role","_key":"3979","_from":"3400","_to":"3397"} +{"$label":"ACTS_IN","name":"Lenny Nero","type":"Role","_key":"3978","_from":"3399","_to":"3397"} +{"$label":"DIRECTED","_key":"3977","_from":"3398","_to":"3397"} +{"$label":"DIRECTED","_key":"95050","_from":"3398","_to":"55951"} +{"$label":"DIRECTED","_key":"88388","_from":"3398","_to":"52392"} +{"$label":"DIRECTED","_key":"72521","_from":"3398","_to":"43745"} +{"$label":"DIRECTED","_key":"54230","_from":"3398","_to":"34828"} +{"$label":"DIRECTED","_key":"50380","_from":"3398","_to":"32894"} +{"$label":"DIRECTED","_key":"11919","_from":"3398","_to":"9350"} +{"$label":"ACTS_IN","name":"Todd Jackson","type":"Role","_key":"117693","_from":"3399","_to":"69180"} +{"$label":"ACTS_IN","name":"Hades","type":"Role","_key":"117646","_from":"3399","_to":"69157"} +{"$label":"ACTS_IN","name":"Ignatz\/Adam\/Ivan Sors","type":"Role","_key":"113911","_from":"3399","_to":"67089"} +{"$label":"ACTS_IN","name":"Stephen Tulloch","type":"Role","_key":"111066","_from":"3399","_to":"65605"} +{"$label":"ACTS_IN","name":"Mayor Michael Ebbs","type":"Role","_key":"97484","_from":"3399","_to":"57409"} +{"$label":"ACTS_IN","name":"Duke of Devonshire","type":"Role","_key":"91528","_from":"3399","_to":"53952"} +{"$label":"ACTS_IN","name":"Lord Voldemort","type":"Role","_key":"89509","_from":"3399","_to":"52992"} +{"$label":"ACTS_IN","name":"Mercenary Team Leader","type":"Role","_key":"88393","_from":"3399","_to":"52392"} +{"$label":"ACTS_IN","name":"Charles Van Doren","type":"Role","_key":"69934","_from":"3399","_to":"42673"} +{"$label":"ACTS_IN","name":"Ramesses II","type":"Role","_key":"57349","_from":"3399","_to":"36365"} +{"$label":"ACTS_IN","name":"Spider","type":"Role","_key":"55050","_from":"3399","_to":"35170"} +{"$label":"ACTS_IN","name":"Francis Dolarhyde","type":"Role","_key":"54502","_from":"3399","_to":"34932"} +{"$label":"ACTS_IN","name":"John Steed","type":"Role","_key":"53099","_from":"3399","_to":"34364"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"49011","_from":"3399","_to":"32124"} +{"$label":"ACTS_IN","name":"Michael Berg","type":"Role","_key":"47905","_from":"3399","_to":"31517"} +{"$label":"ACTS_IN","name":"Christopher Marshall","type":"Role","_key":"46381","_from":"3399","_to":"30646"} +{"$label":"ACTS_IN","name":"The Bishop's Son","type":"Role","_key":"35666","_from":"3399","_to":"24239"} +{"$label":"ACTS_IN","name":"Justin Quayle","type":"Role","_key":"17176","_from":"3399","_to":"12868"} +{"$label":"ACTS_IN","name":"Lord Voldemort","type":"Role","_key":"8106","_from":"3399","_to":"6687"} +{"$label":"ACTS_IN","name":"Lord Voldemort","type":"Role","_key":"8083","_from":"3399","_to":"6682"} +{"$label":"ACTS_IN","name":"Victor Quartermaine","type":"Role","_key":"6385","_from":"3399","_to":"5389"} +{"$label":"ACTS_IN","name":"Amon Goeth","type":"Role","_key":"5325","_from":"3399","_to":"4517"} +{"$label":"ACTS_IN","name":"Count L\u00e1szl\u00f3 de Alm\u00e1sy","type":"Role","_key":"5191","_from":"3399","_to":"4417"} +{"$label":"ACTS_IN","name":"Brenda Brown","type":"Role","_key":"109922","_from":"3400","_to":"64948"} +{"$label":"ACTS_IN","name":"Maureen \"Mo\" Simmons","type":"Role","_key":"108205","_from":"3400","_to":"63954"} +{"$label":"ACTS_IN","name":"Anna Mae Bullock \/ Tina Turner","type":"Role","_key":"105820","_from":"3400","_to":"62297"} +{"$label":"ACTS_IN","name":"Bonnie Benjamin","type":"Role","_key":"101225","_from":"3400","_to":"59622"} +{"$label":"ACTS_IN","name":"Voletta Wallace","type":"Role","_key":"100111","_from":"3400","_to":"59044"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"96171","_from":"3400","_to":"56522"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"90047","_from":"3400","_to":"53260"} +{"$label":"ACTS_IN","name":"Detective Rita Veder","type":"Role","_key":"88355","_from":"3400","_to":"52387"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"69461","_from":"3400","_to":"42442"} +{"$label":"ACTS_IN","name":"Dr. Kaela Evers","type":"Role","_key":"62925","_from":"3400","_to":"39523"} +{"$label":"ACTS_IN","name":"Dr. Betty Shabazz","type":"Role","_key":"16249","_from":"3400","_to":"12327"} +{"$label":"ACTS_IN","name":"Mildred (voice)","type":"Role","_key":"12389","_from":"3400","_to":"9706"} +{"$label":"ACTS_IN","name":"Reva Devereaux","type":"Role","_key":"7764","_from":"3400","_to":"6449"} +{"$label":"ACTS_IN","name":"Hayes","type":"Role","_key":"93577","_from":"3401","_to":"55109"} +{"$label":"ACTS_IN","name":"Armand Dorleac","type":"Role","_key":"69410","_from":"3401","_to":"42425"} +{"$label":"ACTS_IN","name":"Top Dollar","type":"Role","_key":"54246","_from":"3401","_to":"34832"} +{"$label":"ACTS_IN","name":"Scroop","type":"Role","_key":"52026","_from":"3401","_to":"33920"} +{"$label":"ACTS_IN","name":"Michael Korda","type":"Role","_key":"51163","_from":"3401","_to":"33370"} +{"$label":"ACTS_IN","name":"Frank Elgyn","type":"Role","_key":"48133","_from":"3401","_to":"31632"} +{"$label":"ACTS_IN","name":"Herberto Zorilla Ochoa","type":"Role","_key":"35509","_from":"3401","_to":"24144"} +{"$label":"ACTS_IN","name":"Garry Sone","type":"Role","_key":"17785","_from":"3401","_to":"13263"} +{"$label":"ACTS_IN","name":"Adrian de Moxica","type":"Role","_key":"13508","_from":"3401","_to":"10513"} +{"$label":"ACTS_IN","name":"Conway Twill","type":"Role","_key":"10966","_from":"3401","_to":"8689"} +{"$label":"ACTS_IN","name":"Julius Bicke","type":"Role","_key":"9956","_from":"3401","_to":"7967"} +{"$label":"ACTS_IN","name":"Rene Ricard","type":"Role","_key":"6544","_from":"3401","_to":"5534"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"36981","_from":"3402","_to":"25064"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"36857","_from":"3402","_to":"24987"} +{"$label":"ACTS_IN","name":"Alex Winters","type":"Role","_key":"36825","_from":"3402","_to":"24969"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36790","_from":"3402","_to":"24943"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"36513","_from":"3402","_to":"24766"} +{"$label":"ACTS_IN","name":"Karl Matuschka","type":"Role","_key":"3996","_from":"3411","_to":"3403"} +{"$label":"ACTS_IN","name":"Miss Olsen","type":"Role","_key":"3994","_from":"3410","_to":"3403"} +{"$label":"ACTS_IN","name":"Mrs. Margie MacDougall","type":"Role","_key":"3993","_from":"3409","_to":"3403"} +{"$label":"ACTS_IN","name":"Mrs. Mildred Dreyfuss","type":"Role","_key":"3992","_from":"3408","_to":"3403"} +{"$label":"ACTS_IN","name":"Dr. Dreyfuss","type":"Role","_key":"3991","_from":"3407","_to":"3403"} +{"$label":"ACTS_IN","name":"Joe Dobisch","type":"Role","_key":"3990","_from":"3406","_to":"3403"} +{"$label":"ACTS_IN","name":"Jeff D. Sheldrake","type":"Role","_key":"3989","_from":"3405","_to":"3403"} +{"$label":"ACTS_IN","name":"Fran Kubelik","type":"Role","_key":"3988","_from":"3404","_to":"3403"} +{"$label":"ACTS_IN","name":"Ethel Ann","type":"Role","_key":"97737","_from":"3404","_to":"57551"} +{"$label":"ACTS_IN","name":"Shirley MacLaine","type":"Role","_key":"88585","_from":"3404","_to":"52494"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"72923","_from":"3404","_to":"43910"} +{"$label":"ACTS_IN","name":"Madame de Beaurevoir","type":"Role","_key":"72884","_from":"3404","_to":"43899"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"72741","_from":"3404","_to":"43825"} +{"$label":"ACTS_IN","name":"Aurora Greenway","type":"Role","_key":"67553","_from":"3404","_to":"41594"} +{"$label":"ACTS_IN","name":"Ouiser Boudreaux","type":"Role","_key":"66331","_from":"3404","_to":"41030"} +{"$label":"ACTS_IN","name":"Eve Rand","type":"Role","_key":"62581","_from":"3404","_to":"39378"} +{"$label":"ACTS_IN","name":"Iris Smythson \/ Endora","type":"Role","_key":"56010","_from":"3404","_to":"35606"} +{"$label":"ACTS_IN","name":"Tess Carlisle","type":"Role","_key":"43560","_from":"3404","_to":"29097"} +{"$label":"ACTS_IN","name":"Grandmother Mirabeau","type":"Role","_key":"32890","_from":"3404","_to":"22825"} +{"$label":"ACTS_IN","name":"Princess Aouda","type":"Role","_key":"24151","_from":"3404","_to":"17503"} +{"$label":"ACTS_IN","name":"Katharine Richelieu","type":"Role","_key":"23680","_from":"3404","_to":"17164"} +{"$label":"ACTS_IN","name":"Irma La Douce","type":"Role","_key":"22720","_from":"3404","_to":"16480"} +{"$label":"ACTS_IN","name":"Prof. Ned Brainard","type":"Role","_key":"114561","_from":"3405","_to":"67489"} +{"$label":"ACTS_IN","name":"Lt. Thomas 'Tom' Keefer","type":"Role","_key":"61447","_from":"3405","_to":"38765"} +{"$label":"ACTS_IN","name":"(in \"Double Indemnity\") (archive footage)","type":"Role","_key":"53883","_from":"3405","_to":"34691"} +{"$label":"ACTS_IN","name":"Walter Neff","type":"Role","_key":"11773","_from":"3405","_to":"9238"} +{"$label":"ACTS_IN","name":"Luther Billis","type":"Role","_key":"111992","_from":"3406","_to":"66106"} +{"$label":"ACTS_IN","name":"Burton Timmer","type":"Role","_key":"97147","_from":"3406","_to":"57143"} +{"$label":"ACTS_IN","name":"Glen Bateman","type":"Role","_key":"94977","_from":"3406","_to":"55928"} +{"$label":"ACTS_IN","name":"Mr. Hand","type":"Role","_key":"94023","_from":"3406","_to":"55369"} +{"$label":"ACTS_IN","name":"Walter Adams","type":"Role","_key":"70274","_from":"3406","_to":"42822"} +{"$label":"ACTS_IN","name":"Poopdeck Pappy","type":"Role","_key":"69203","_from":"3406","_to":"42322"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"55003","_from":"3406","_to":"35155"} +{"$label":"ACTS_IN","name":"CWO Sam Jacobs","type":"Role","_key":"45517","_from":"3407","_to":"30146"} +{"$label":"ACTS_IN","name":"Agent Charles Pope","type":"Role","_key":"34814","_from":"3407","_to":"23787"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"22724","_from":"3409","_to":"16480"} +{"$label":"ACTS_IN","name":"Monica Crump","type":"Role","_key":"70800","_from":"3410","_to":"43041"} +{"$label":"ACTS_IN","name":"Mrs. Tempest Stoner","type":"Role","_key":"69963","_from":"3410","_to":"42680"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4005","_from":"3419","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4004","_from":"3418","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4003","_from":"3417","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4002","_from":"3416","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4001","_from":"3415","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4000","_from":"3414","_to":"3412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"3999","_from":"3413","_to":"3412"} +{"$label":"ACTS_IN","name":"Millie","type":"Role","_key":"4021","_from":"3433","_to":"3420"} +{"$label":"ACTS_IN","name":"Whitey Sherrard","type":"Role","_key":"4020","_from":"3432","_to":"3420"} +{"$label":"ACTS_IN","name":"Teddy Cullinane","type":"Role","_key":"4019","_from":"3431","_to":"3420"} +{"$label":"ACTS_IN","name":"Mr. Laloosh","type":"Role","_key":"4018","_from":"3430","_to":"3420"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"4017","_from":"3429","_to":"3420"} +{"$label":"ACTS_IN","name":"Mickey McFee","type":"Role","_key":"4016","_from":"3428","_to":"3420"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"4015","_from":"3427","_to":"3420"} +{"$label":"ACTS_IN","name":"Deke","type":"Role","_key":"4014","_from":"3426","_to":"3420"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"4013","_from":"3425","_to":"3420"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"4012","_from":"3424","_to":"3420"} +{"$label":"ACTS_IN","name":"Joe Riggins","type":"Role","_key":"4010","_from":"3423","_to":"3420"} +{"$label":"ACTS_IN","name":"Annie Savoy","type":"Role","_key":"4008","_from":"3422","_to":"3420"} +{"$label":"DIRECTED","_key":"4006","_from":"3421","_to":"3420"} +{"$label":"DIRECTED","_key":"69479","_from":"3421","_to":"42450"} +{"$label":"DIRECTED","_key":"63562","_from":"3421","_to":"39781"} +{"$label":"DIRECTED","_key":"61319","_from":"3421","_to":"38705"} +{"$label":"DIRECTED","_key":"34714","_from":"3421","_to":"23744"} +{"$label":"ACTS_IN","name":"Mary Beth","type":"Role","_key":"121063","_from":"3422","_to":"71097"} +{"$label":"ACTS_IN","name":"Rhonda Berry","type":"Role","_key":"120929","_from":"3422","_to":"71009"} +{"$label":"ACTS_IN","name":"Sophie Hartley","type":"Role","_key":"117771","_from":"3422","_to":"69233"} +{"$label":"ACTS_IN","name":"Coco LaBouche","type":"Role","_key":"108771","_from":"3422","_to":"64298"} +{"$label":"ACTS_IN","name":"Princess Wensicia Corrino","type":"Role","_key":"99666","_from":"3422","_to":"58761"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"98006","_from":"3422","_to":"57718"} +{"$label":"ACTS_IN","name":"Beverly Farley","type":"Role","_key":"93633","_from":"3422","_to":"55125"} +{"$label":"ACTS_IN","name":"Daisy Kincaid","type":"Role","_key":"91792","_from":"3422","_to":"54152"} +{"$label":"ACTS_IN","name":"Fanny Crill","type":"Role","_key":"71773","_from":"3422","_to":"43442"} +{"$label":"ACTS_IN","name":"Dr. Sarah Roberts","type":"Role","_key":"71324","_from":"3422","_to":"43264"} +{"$label":"ACTS_IN","name":"Regina \"Reggie\" Love","type":"Role","_key":"65309","_from":"3422","_to":"40530"} +{"$label":"ACTS_IN","name":"Miss Spider","type":"Role","_key":"63934","_from":"3422","_to":"39934"} +{"$label":"ACTS_IN","name":"Mimi Slocumb","type":"Role","_key":"55608","_from":"3422","_to":"35408"} +{"$label":"ACTS_IN","name":"Hollie Baylor","type":"Role","_key":"55105","_from":"3422","_to":"35187"} +{"$label":"ACTS_IN","name":"Mrs. Abigail \"Marmee\" March","type":"Role","_key":"54865","_from":"3422","_to":"35089"} +{"$label":"ACTS_IN","name":"Jackie Harrison","type":"Role","_key":"53861","_from":"3422","_to":"34690"} +{"$label":"ACTS_IN","name":"Lavinia","type":"Role","_key":"52175","_from":"3422","_to":"34000"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"47624","_from":"3422","_to":"31382"} +{"$label":"ACTS_IN","name":"Mom Racer","type":"Role","_key":"46801","_from":"3422","_to":"30879"} +{"$label":"ACTS_IN","name":"Joan Deerfield","type":"Role","_key":"45502","_from":"3422","_to":"30141"} +{"$label":"ACTS_IN","name":"Jane Spofford","type":"Role","_key":"41460","_from":"3422","_to":"27868"} +{"$label":"ACTS_IN","name":"Queen Narissa","type":"Role","_key":"32297","_from":"3422","_to":"22492"} +{"$label":"ACTS_IN","name":"Beverly Clark","type":"Role","_key":"31293","_from":"3422","_to":"21887"} +{"$label":"ACTS_IN","name":"Livilla","type":"Role","_key":"22376","_from":"3422","_to":"16258"} +{"$label":"ACTS_IN","name":"Michaela Odone","type":"Role","_key":"17431","_from":"3422","_to":"13031"} +{"$label":"ACTS_IN","name":"Louise Elizabeth Sawyer","type":"Role","_key":"13643","_from":"3422","_to":"10603"} +{"$label":"ACTS_IN","name":"Peggy Grant","type":"Role","_key":"11672","_from":"3422","_to":"9168"} +{"$label":"ACTS_IN","name":"Sister Helen Prejean","type":"Role","_key":"8275","_from":"3422","_to":"6786"} +{"$label":"ACTS_IN","name":"Nathan Arizona Huffhines, Sr.","type":"Role","_key":"4880","_from":"3423","_to":"4171"} +{"$label":"ACTS_IN","name":"Capt. Rick Mullican","type":"Role","_key":"66981","_from":"3424","_to":"41351"} +{"$label":"ACTS_IN","name":"Ethan Tarrant","type":"Role","_key":"66009","_from":"3424","_to":"40846"} +{"$label":"ACTS_IN","name":"Tex","type":"Role","_key":"9334","_from":"3425","_to":"7539"} +{"$label":"ACTS_IN","name":"Station Master (uncredited)","type":"Role","_key":"4040","_from":"3449","_to":"3434"} +{"$label":"ACTS_IN","name":"Trumbull (uncredited)","type":"Role","_key":"4039","_from":"3448","_to":"3434"} +{"$label":"ACTS_IN","name":"Charlie - Drunk in Jail (uncredited)","type":"Role","_key":"4038","_from":"3447","_to":"3434"} +{"$label":"ACTS_IN","name":"Ben Miller","type":"Role","_key":"4037","_from":"3446","_to":"3434"} +{"$label":"ACTS_IN","name":"Jack Colby","type":"Role","_key":"4035","_from":"3445","_to":"3434"} +{"$label":"ACTS_IN","name":"Dr. Mahin, minister","type":"Role","_key":"4033","_from":"3444","_to":"3434"} +{"$label":"ACTS_IN","name":"Mildred Fuller","type":"Role","_key":"4032","_from":"3443","_to":"3434"} +{"$label":"ACTS_IN","name":"Frank Miller","type":"Role","_key":"4031","_from":"3442","_to":"3434"} +{"$label":"ACTS_IN","name":"Sam Fuller","type":"Role","_key":"4030","_from":"3441","_to":"3434"} +{"$label":"ACTS_IN","name":"Martin Howe","type":"Role","_key":"4029","_from":"3440","_to":"3434"} +{"$label":"ACTS_IN","name":"Judge Percy Mettrick","type":"Role","_key":"4028","_from":"3439","_to":"3434"} +{"$label":"ACTS_IN","name":"Helen Ram\u00edrez","type":"Role","_key":"4027","_from":"3438","_to":"3434"} +{"$label":"ACTS_IN","name":"Amy Fowler Kane","type":"Role","_key":"4024","_from":"3437","_to":"3434"} +{"$label":"ACTS_IN","name":"Marshal Will Kane","type":"Role","_key":"4023","_from":"3436","_to":"3434"} +{"$label":"DIRECTED","_key":"4022","_from":"3435","_to":"3434"} +{"$label":"DIRECTED","_key":"97573","_from":"3435","_to":"57456"} +{"$label":"DIRECTED","_key":"69795","_from":"3435","_to":"42595"} +{"$label":"DIRECTED","_key":"34671","_from":"3435","_to":"23728"} +{"$label":"DIRECTED","_key":"16247","_from":"3435","_to":"12325"} +{"$label":"DIRECTED","_key":"10391","_from":"3435","_to":"8270"} +{"$label":"DIRECTED","_key":"4774","_from":"3435","_to":"4082"} +{"$label":"ACTS_IN","name":"Henry Louis 'Lou' Gehrig","type":"Role","_key":"118875","_from":"3436","_to":"69866"} +{"$label":"ACTS_IN","name":"Frank Flannagan","type":"Role","_key":"115754","_from":"3436","_to":"68155"} +{"$label":"ACTS_IN","name":"Alvin C. York","type":"Role","_key":"109244","_from":"3436","_to":"64541"} +{"$label":"ACTS_IN","name":"Cole Harden","type":"Role","_key":"101506","_from":"3436","_to":"59743"} +{"$label":"ACTS_IN","name":"Link Jones","type":"Role","_key":"101403","_from":"3436","_to":"59696"} +{"$label":"ACTS_IN","name":"Benjamin Trane","type":"Role","_key":"91392","_from":"3436","_to":"53906"} +{"$label":"ACTS_IN","name":"Tracy Samantha Lord","type":"Role","_key":"69776","_from":"3437","_to":"42588"} +{"$label":"ACTS_IN","name":"Georgie Elgin","type":"Role","_key":"21372","_from":"3437","_to":"15629"} +{"$label":"ACTS_IN","name":"Lisa Carol Fremont","type":"Role","_key":"6795","_from":"3437","_to":"5700"} +{"$label":"ACTS_IN","name":"Margot Mary Wendice","type":"Role","_key":"6229","_from":"3437","_to":"5277"} +{"$label":"ACTS_IN","name":"Frances Stevens","type":"Role","_key":"4924","_from":"3437","_to":"4200"} +{"$label":"ACTS_IN","name":"Maria Longworth","type":"Role","_key":"116939","_from":"3438","_to":"68834"} +{"$label":"ACTS_IN","name":"Assistant District Attorney Van Slack","type":"Role","_key":"100961","_from":"3439","_to":"59504"} +{"$label":"ACTS_IN","name":"Edward Randolph","type":"Role","_key":"94604","_from":"3439","_to":"55738"} +{"$label":"ACTS_IN","name":"Amthor","type":"Role","_key":"15842","_from":"3439","_to":"12050"} +{"$label":"ACTS_IN","name":"Willie (as Lon Chaney)","type":"Role","_key":"116952","_from":"3440","_to":"68841"} +{"$label":"ACTS_IN","name":"The Wolf Man \/ Larry Talbot","type":"Role","_key":"95757","_from":"3440","_to":"56328"} +{"$label":"ACTS_IN","name":"Big Sam","type":"Role","_key":"69712","_from":"3440","_to":"42555"} +{"$label":"ACTS_IN","name":"Akhoba","type":"Role","_key":"28226","_from":"3440","_to":"20214"} +{"$label":"ACTS_IN","name":"Groton","type":"Role","_key":"26192","_from":"3440","_to":"18816"} +{"$label":"ACTS_IN","name":"Lawrence Talbot","type":"Role","_key":"25952","_from":"3440","_to":"18663"} +{"$label":"ACTS_IN","name":"The Wolf Man","type":"Role","_key":"25508","_from":"3440","_to":"18381"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"25481","_from":"3440","_to":"18370"} +{"$label":"ACTS_IN","name":"The Wolf Man","type":"Role","_key":"25460","_from":"3440","_to":"18361"} +{"$label":"ACTS_IN","name":"Bill Womack","type":"Role","_key":"121648","_from":"3441","_to":"71463"} +{"$label":"ACTS_IN","name":"Cully","type":"Role","_key":"117121","_from":"3441","_to":"68912"} +{"$label":"ACTS_IN","name":"Sheriff McCoy","type":"Role","_key":"116995","_from":"3441","_to":"68858"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"115672","_from":"3441","_to":"68096"} +{"$label":"ACTS_IN","name":"Chummy MacGregor","type":"Role","_key":"113763","_from":"3441","_to":"67035"} +{"$label":"ACTS_IN","name":"Olly Perkins","type":"Role","_key":"70773","_from":"3441","_to":"43036"} +{"$label":"ACTS_IN","name":"Captain Gannon","type":"Role","_key":"59527","_from":"3441","_to":"37581"} +{"$label":"ACTS_IN","name":"Judge Mel","type":"Role","_key":"16487","_from":"3441","_to":"12454"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"117335","_from":"3445","_to":"69009"} +{"$label":"ACTS_IN","name":"Sergio Danielo Christophero","type":"Role","_key":"117145","_from":"3445","_to":"68921"} +{"$label":"ACTS_IN","name":"Jonathan Corbett","type":"Role","_key":"109779","_from":"3445","_to":"64846"} +{"$label":"ACTS_IN","name":"Billy Joe Cudlip","type":"Role","_key":"91322","_from":"3445","_to":"53862"} +{"$label":"ACTS_IN","name":"Rock-Skipping Grandfather","type":"Role","_key":"88901","_from":"3445","_to":"52665"} +{"$label":"ACTS_IN","name":"Police Commissioner Bob Hauk","type":"Role","_key":"11982","_from":"3445","_to":"9392"} +{"$label":"ACTS_IN","name":"Col. Douglas Mortimer","type":"Role","_key":"11185","_from":"3445","_to":"8850"} +{"$label":"ACTS_IN","name":"Sentenza\/Angel Eyes","type":"Role","_key":"5390","_from":"3445","_to":"4577"} +{"$label":"ACTS_IN","name":"Cletus","type":"Role","_key":"38679","_from":"3446","_to":"26128"} +{"$label":"ACTS_IN","name":"Jug May","type":"Role","_key":"115671","_from":"3447","_to":"68096"} +{"$label":"ACTS_IN","name":"Chris Boldt","type":"Role","_key":"115616","_from":"3447","_to":"68059"} +{"$label":"ACTS_IN","name":"Charlie Max","type":"Role","_key":"114674","_from":"3447","_to":"67551"} +{"$label":"ACTS_IN","name":"Doctor Nikolas Van Helsing","type":"Role","_key":"72931","_from":"3447","_to":"43910"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"70774","_from":"3447","_to":"43036"} +{"$label":"ACTS_IN","name":"Col. Dustin 'Dusty' McHowell","type":"Role","_key":"70232","_from":"3447","_to":"42798"} +{"$label":"ACTS_IN","name":"Doctor Nikolas Van Helsing","type":"Role","_key":"68911","_from":"3447","_to":"42196"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"37589","_from":"3447","_to":"25473"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"34997","_from":"3447","_to":"23888"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"34937","_from":"3447","_to":"23859"} +{"$label":"ACTS_IN","name":"Snaky (member of Frank's gang)","type":"Role","_key":"4604","_from":"3447","_to":"3919"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"4058","_from":"3464","_to":"3450"} +{"$label":"ACTS_IN","name":"Jan Brandel","type":"Role","_key":"4056","_from":"3463","_to":"3450"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"4055","_from":"3462","_to":"3450"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"4053","_from":"3461","_to":"3450"} +{"$label":"ACTS_IN","name":"Berger","type":"Role","_key":"4052","_from":"3460","_to":"3450"} +{"$label":"ACTS_IN","name":"Annina Brandel","type":"Role","_key":"4051","_from":"3459","_to":"3450"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"4050","_from":"3458","_to":"3450"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"4049","_from":"3457","_to":"3450"} +{"$label":"ACTS_IN","name":"Signor Ferrari","type":"Role","_key":"4047","_from":"3456","_to":"3450"} +{"$label":"ACTS_IN","name":"Capt. Renault","type":"Role","_key":"4045","_from":"3455","_to":"3450"} +{"$label":"ACTS_IN","name":"Victor Laszlo","type":"Role","_key":"4044","_from":"3454","_to":"3450"} +{"$label":"ACTS_IN","name":"Ilsa Lund","type":"Role","_key":"4043","_from":"3453","_to":"3450"} +{"$label":"ACTS_IN","name":"Rick Blaine","type":"Role","_key":"4042","_from":"3452","_to":"3450"} +{"$label":"DIRECTED","_key":"4041","_from":"3451","_to":"3450"} +{"$label":"DIRECTED","_key":"116929","_from":"3451","_to":"68828"} +{"$label":"DIRECTED","_key":"115429","_from":"3451","_to":"67969"} +{"$label":"DIRECTED","_key":"114147","_from":"3451","_to":"67220"} +{"$label":"DIRECTED","_key":"113508","_from":"3451","_to":"66878"} +{"$label":"DIRECTED","_key":"110422","_from":"3451","_to":"65236"} +{"$label":"DIRECTED","_key":"110416","_from":"3451","_to":"65234"} +{"$label":"DIRECTED","_key":"95922","_from":"3451","_to":"56413"} +{"$label":"DIRECTED","_key":"94127","_from":"3451","_to":"55432"} +{"$label":"DIRECTED","_key":"66640","_from":"3451","_to":"41182"} +{"$label":"DIRECTED","_key":"40961","_from":"3451","_to":"27561"} +{"$label":"DIRECTED","_key":"27999","_from":"3451","_to":"20078"} +{"$label":"DIRECTED","_key":"26841","_from":"3451","_to":"19283"} +{"$label":"DIRECTED","_key":"25652","_from":"3451","_to":"18469"} +{"$label":"DIRECTED","_key":"24507","_from":"3451","_to":"17723"} +{"$label":"DIRECTED","_key":"15198","_from":"3451","_to":"11641"} +{"$label":"ACTS_IN","name":"Joseph 'Duke' Berne","type":"Role","_key":"119993","_from":"3452","_to":"70472"} +{"$label":"ACTS_IN","name":"Rick Leland","type":"Role","_key":"117506","_from":"3452","_to":"69090"} +{"$label":"ACTS_IN","name":"Sergeant Joe Gunn","type":"Role","_key":"117478","_from":"3452","_to":"69085"} +{"$label":"ACTS_IN","name":"Glenn Griffin","type":"Role","_key":"116801","_from":"3452","_to":"68770"} +{"$label":"ACTS_IN","name":"Jean Matrac","type":"Role","_key":"115430","_from":"3452","_to":"67969"} +{"$label":"ACTS_IN","name":"'Rocks' Valentine","type":"Role","_key":"114205","_from":"3452","_to":"67273"} +{"$label":"ACTS_IN","name":"John Murrell","type":"Role","_key":"114146","_from":"3452","_to":"67220"} +{"$label":"ACTS_IN","name":"Dixon Steele","type":"Role","_key":"110986","_from":"3452","_to":"65556"} +{"$label":"ACTS_IN","name":"Duke Mantee","type":"Role","_key":"110942","_from":"3452","_to":"65529"} +{"$label":"ACTS_IN","name":"Paul Fabrini","type":"Role","_key":"110566","_from":"3452","_to":"65329"} +{"$label":"ACTS_IN","name":"Vincent Parry","type":"Role","_key":"108176","_from":"3452","_to":"63933"} +{"$label":"ACTS_IN","name":"James Frazier","type":"Role","_key":"95925","_from":"3452","_to":"56413"} +{"$label":"ACTS_IN","name":"Frank McCloud","type":"Role","_key":"67304","_from":"3452","_to":"41491"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Philip Francis Queeg","type":"Role","_key":"61444","_from":"3452","_to":"38765"} +{"$label":"ACTS_IN","name":"(in \"The Big Sleep\" \/ \"In a Lonely Place\" \/ \"Dark Passage\") (archive footage)","type":"Role","_key":"53875","_from":"3452","_to":"34691"} +{"$label":"ACTS_IN","name":"Linus Larrabee","type":"Role","_key":"44345","_from":"3452","_to":"29551"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"40962","_from":"3452","_to":"27561"} +{"$label":"ACTS_IN","name":"Dr. Maurice Xavier","type":"Role","_key":"28011","_from":"3452","_to":"20085"} +{"$label":"ACTS_IN","name":"Fred C. Dobbs","type":"Role","_key":"25705","_from":"3452","_to":"18497"} +{"$label":"ACTS_IN","name":"Sam Spade","type":"Role","_key":"11445","_from":"3452","_to":"9009"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"10821","_from":"3452","_to":"8581"} +{"$label":"ACTS_IN","name":"Charlie Allnut","type":"Role","_key":"5934","_from":"3452","_to":"5038"} +{"$label":"ACTS_IN","name":"Paula Alquist","type":"Role","_key":"95057","_from":"3453","_to":"55955"} +{"$label":"ACTS_IN","name":"Charlotte Andergast","type":"Role","_key":"91345","_from":"3453","_to":"53876"} +{"$label":"ACTS_IN","name":"(in \"Notorious\") (archive footage)","type":"Role","_key":"53877","_from":"3453","_to":"34691"} +{"$label":"ACTS_IN","name":"Greta Ohlson","type":"Role","_key":"29903","_from":"3453","_to":"21143"} +{"$label":"ACTS_IN","name":"Lady Henrietta Flusky","type":"Role","_key":"29894","_from":"3453","_to":"21141"} +{"$label":"ACTS_IN","name":"Dr. Constance Petersen","type":"Role","_key":"29880","_from":"3453","_to":"21135"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"29875","_from":"3453","_to":"21131"} +{"$label":"ACTS_IN","name":"Ivy Peterson","type":"Role","_key":"25036","_from":"3453","_to":"18088"} +{"$label":"ACTS_IN","name":"Katherine Joyce","type":"Role","_key":"23233","_from":"3453","_to":"16852"} +{"$label":"ACTS_IN","name":"Alicia Huberman","type":"Role","_key":"4213","_from":"3453","_to":"3590"} +{"$label":"ACTS_IN","name":"Commandant Paul G. Vogel","type":"Role","_key":"104589","_from":"3454","_to":"61524"} +{"$label":"ACTS_IN","name":"Nikko Regas","type":"Role","_key":"34208","_from":"3454","_to":"23489"} +{"$label":"ACTS_IN","name":"Captain Freycinet","type":"Role","_key":"115431","_from":"3455","_to":"67969"} +{"$label":"ACTS_IN","name":"Erique Claudin","type":"Role","_key":"106132","_from":"3455","_to":"62504"} +{"$label":"ACTS_IN","name":"Arthur 'Fred' Martingale","type":"Role","_key":"104590","_from":"3455","_to":"61524"} +{"$label":"ACTS_IN","name":"Sir John Talbot","type":"Role","_key":"95758","_from":"3455","_to":"56328"} +{"$label":"ACTS_IN","name":"Prince John","type":"Role","_key":"66629","_from":"3455","_to":"41182"} +{"$label":"ACTS_IN","name":"The Invisible Man","type":"Role","_key":"65794","_from":"3455","_to":"40720"} +{"$label":"ACTS_IN","name":"Sen. Joseph Harrison Paine","type":"Role","_key":"25581","_from":"3455","_to":"18430"} +{"$label":"ACTS_IN","name":"Prof. George Edward Challenger","type":"Role","_key":"24680","_from":"3455","_to":"17851"} +{"$label":"ACTS_IN","name":"Herodes der Gro\u00dfe","type":"Role","_key":"21264","_from":"3455","_to":"15553"} +{"$label":"ACTS_IN","name":"Mr. Dryden","type":"Role","_key":"11291","_from":"3455","_to":"8914"} +{"$label":"ACTS_IN","name":"Alexander Sebastian","type":"Role","_key":"4214","_from":"3455","_to":"3590"} +{"$label":"ACTS_IN","name":"Dr. Lorenz","type":"Role","_key":"117508","_from":"3456","_to":"69090"} +{"$label":"ACTS_IN","name":"Major Duval","type":"Role","_key":"115434","_from":"3456","_to":"67969"} +{"$label":"ACTS_IN","name":"Alexander Yardley","type":"Role","_key":"95790","_from":"3456","_to":"56341"} +{"$label":"ACTS_IN","name":"Kasper Gutman","type":"Role","_key":"11451","_from":"3456","_to":"9009"} +{"$label":"ACTS_IN","name":"Mlle Lambert","type":"Role","_key":"38061","_from":"3457","_to":"25746"} +{"$label":"ACTS_IN","name":"Madeleine, l'attrice francese","type":"Role","_key":"5302","_from":"3457","_to":"4493"} +{"$label":"ACTS_IN","name":"Julius Seton","type":"Role","_key":"121741","_from":"3460","_to":"71516"} +{"$label":"ACTS_IN","name":"Logger","type":"Role","_key":"43899","_from":"3460","_to":"29302"} +{"$label":"ACTS_IN","name":"Ed Fuddle","type":"Role","_key":"29015","_from":"3460","_to":"20706"} +{"$label":"ACTS_IN","name":"Lars Jorgensen","type":"Role","_key":"26075","_from":"3460","_to":"18734"} +{"$label":"ACTS_IN","name":"Earl Williams","type":"Role","_key":"25633","_from":"3460","_to":"18451"} +{"$label":"ACTS_IN","name":"Muley Graves","type":"Role","_key":"7174","_from":"3460","_to":"5991"} +{"$label":"ACTS_IN","name":"Sylvanian Agitator","type":"Role","_key":"25381","_from":"3461","_to":"18294"} +{"$label":"ACTS_IN","name":"Father Cluzeot","type":"Role","_key":"106209","_from":"3462","_to":"62552"} +{"$label":"ACTS_IN","name":"Mafel","type":"Role","_key":"71960","_from":"3462","_to":"43528"} +{"$label":"ACTS_IN","name":"Baron St. Foritanel","type":"Role","_key":"44352","_from":"3462","_to":"29551"} +{"$label":"ACTS_IN","name":"Monsieur Pierrot","type":"Role","_key":"35081","_from":"3462","_to":"23921"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"31860","_from":"3462","_to":"22230"} +{"$label":"ACTS_IN","name":"Senior Paravideo","type":"Role","_key":"24855","_from":"3462","_to":"17972"} +{"$label":"ACTS_IN","name":"Saint-Pierre","type":"Role","_key":"21284","_from":"3462","_to":"15565"} +{"$label":"ACTS_IN","name":"Lt. Rosenthal","type":"Role","_key":"9155","_from":"3462","_to":"7397"} +{"$label":"ACTS_IN","name":"Robert de la Cheyniest","type":"Role","_key":"9142","_from":"3462","_to":"7386"} +{"$label":"ACTS_IN","name":"Rabbi Jacob","type":"Role","_key":"8928","_from":"3462","_to":"7242"} +{"$label":"ACTS_IN","name":"Garou","type":"Role","_key":"115437","_from":"3463","_to":"67969"} +{"$label":"ACTS_IN","name":"Felix Bassenak","type":"Role","_key":"95792","_from":"3464","_to":"56341"} +{"$label":"ACTS_IN","name":"Schwab","type":"Role","_key":"25671","_from":"3464","_to":"18469"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"4073","_from":"3473","_to":"3465"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"4072","_from":"3472","_to":"3465"} +{"$label":"ACTS_IN","name":"Detective Deutsch","type":"Role","_key":"4071","_from":"3471","_to":"3465"} +{"$label":"ACTS_IN","name":"Detective Mastrionotti","type":"Role","_key":"4070","_from":"3470","_to":"3465"} +{"$label":"ACTS_IN","name":"Garland Stanford","type":"Role","_key":"4069","_from":"3469","_to":"3465"} +{"$label":"ACTS_IN","name":"Lou Breeze","type":"Role","_key":"4067","_from":"3468","_to":"3465"} +{"$label":"ACTS_IN","name":"W.P. Mayhew","type":"Role","_key":"4066","_from":"3467","_to":"3465"} +{"$label":"ACTS_IN","name":"Jack Lipnick","type":"Role","_key":"4065","_from":"3466","_to":"3465"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"101365","_from":"3466","_to":"59669"} +{"$label":"ACTS_IN","name":"Mr. Katz","type":"Role","_key":"67385","_from":"3466","_to":"41519"} +{"$label":"ACTS_IN","name":"Mr. Channing","type":"Role","_key":"57472","_from":"3466","_to":"36425"} +{"$label":"ACTS_IN","name":"Bugsy Calhoune","type":"Role","_key":"52476","_from":"3466","_to":"34138"} +{"$label":"ACTS_IN","name":"Henry Lydell","type":"Role","_key":"50073","_from":"3466","_to":"32761"} +{"$label":"ACTS_IN","name":"Marvin Berstein","type":"Role","_key":"44526","_from":"3466","_to":"29646"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"20266","_from":"3466","_to":"14861"} +{"$label":"ACTS_IN","name":"Mayor Ebert","type":"Role","_key":"11077","_from":"3466","_to":"8755"} +{"$label":"ACTS_IN","name":"Papi","type":"Role","_key":"94413","_from":"3467","_to":"55586"} +{"$label":"ACTS_IN","name":"Judge Matthew Bishop Helms","type":"Role","_key":"90685","_from":"3467","_to":"53538"} +{"$label":"ACTS_IN","name":"Moe Adams","type":"Role","_key":"66518","_from":"3467","_to":"41126"} +{"$label":"ACTS_IN","name":"Brady","type":"Role","_key":"61394","_from":"3467","_to":"38729"} +{"$label":"ACTS_IN","name":"Grebs \/ Drunk Scout \/ Additional Voices (voice)","type":"Role","_key":"51491","_from":"3467","_to":"33574"} +{"$label":"ACTS_IN","name":"Poppy","type":"Role","_key":"45932","_from":"3467","_to":"30370"} +{"$label":"ACTS_IN","name":"Grant Gubler","type":"Role","_key":"23595","_from":"3467","_to":"17109"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"17770","_from":"3467","_to":"13252"} +{"$label":"ACTS_IN","name":"James Court","type":"Role","_key":"17647","_from":"3467","_to":"13169"} +{"$label":"ACTS_IN","name":"John Shaughnessy","type":"Role","_key":"14105","_from":"3467","_to":"10931"} +{"$label":"ACTS_IN","name":"Jimmy the Photographer","type":"Role","_key":"102554","_from":"3468","_to":"60336"} +{"$label":"ACTS_IN","name":"Moe Fingers","type":"Role","_key":"91544","_from":"3468","_to":"53960"} +{"$label":"ACTS_IN","name":"Creighton Tolliver","type":"Role","_key":"65715","_from":"3468","_to":"40695"} +{"$label":"ACTS_IN","name":"Larry Rosenbaum","type":"Role","_key":"63060","_from":"3468","_to":"39569"} +{"$label":"ACTS_IN","name":"Agent Hymes","type":"Role","_key":"57426","_from":"3468","_to":"36404"} +{"$label":"ACTS_IN","name":"Gideon","type":"Role","_key":"54255","_from":"3468","_to":"34832"} +{"$label":"ACTS_IN","name":"Det. Walter Bedsoe","type":"Role","_key":"47755","_from":"3468","_to":"31448"} +{"$label":"ACTS_IN","name":"Wolf 1","type":"Role","_key":"37176","_from":"3468","_to":"25176"} +{"$label":"ACTS_IN","name":"Johnny Caspar","type":"Role","_key":"4893","_from":"3468","_to":"4175"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103968","_from":"3470","_to":"61156"} +{"$label":"ACTS_IN","name":"Minister of Autumn","type":"Role","_key":"93215","_from":"3470","_to":"54917"} +{"$label":"ACTS_IN","name":"Max Novardis","type":"Role","_key":"58413","_from":"3470","_to":"36916"} +{"$label":"ACTS_IN","name":"Narron","type":"Role","_key":"45887","_from":"3470","_to":"30345"} +{"$label":"ACTS_IN","name":"Handsome Frank","type":"Role","_key":"34200","_from":"3470","_to":"23484"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"17416","_from":"3470","_to":"13020"} +{"$label":"ACTS_IN","name":"Captain Salazar","type":"Role","_key":"11357","_from":"3470","_to":"8948"} +{"$label":"ACTS_IN","name":"Eddie Arkadian","type":"Role","_key":"97581","_from":"3471","_to":"57459"} +{"$label":"ACTS_IN","name":"Darryl Virostko","type":"Role","_key":"4088","_from":"3489","_to":"3474"} +{"$label":"ACTS_IN","name":"Kelly Slater","type":"Role","_key":"4087","_from":"3488","_to":"3474"} +{"$label":"ACTS_IN","name":"Evan Slater","type":"Role","_key":"4086","_from":"3487","_to":"3474"} +{"$label":"ACTS_IN","name":"Greg Noll","type":"Role","_key":"4085","_from":"3486","_to":"3474"} +{"$label":"ACTS_IN","name":"Mickey Munoz","type":"Role","_key":"4084","_from":"3485","_to":"3474"} +{"$label":"ACTS_IN","name":"Gerry Lopez","type":"Role","_key":"4083","_from":"3484","_to":"3474"} +{"$label":"ACTS_IN","name":"Titus Kinimaka","type":"Role","_key":"4082","_from":"3483","_to":"3474"} +{"$label":"ACTS_IN","name":"Buzzy Kerbox","type":"Role","_key":"4081","_from":"3482","_to":"3474"} +{"$label":"ACTS_IN","name":"Brian L. Keaulana","type":"Role","_key":"4080","_from":"3481","_to":"3474"} +{"$label":"ACTS_IN","name":"Dave Kalama","type":"Role","_key":"4079","_from":"3480","_to":"3474"} +{"$label":"ACTS_IN","name":"Dave Kalama","type":"Role","_key":"4078","_from":"3479","_to":"3474"} +{"$label":"ACTS_IN","name":"Laird John Hamilton","type":"Role","_key":"4077","_from":"3478","_to":"3474"} +{"$label":"ACTS_IN","name":"Darrick Doerner","type":"Role","_key":"4076","_from":"3477","_to":"3474"} +{"$label":"ACTS_IN","name":"Jeff Clark","type":"Role","_key":"4075","_from":"3476","_to":"3474"} +{"$label":"DIRECTED","_key":"4074","_from":"3475","_to":"3474"} +{"$label":"DIRECTED","_key":"116539","_from":"3475","_to":"68599"} +{"$label":"DIRECTED","_key":"12508","_from":"3475","_to":"9800"} +{"$label":"ACTS_IN","name":"Stacy Peralta","type":"Role","_key":"12856","_from":"3475","_to":"10040"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103889","_from":"3477","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103891","_from":"3478","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103892","_from":"3479","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103896","_from":"3484","_to":"61098"} +{"$label":"ACTS_IN","name":"Subotai","type":"Role","_key":"53528","_from":"3484","_to":"34556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103908","_from":"3488","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101332","_from":"3488","_to":"59656"} +{"$label":"ACTS_IN","name":"Jill Scott","type":"Role","_key":"4104","_from":"3505","_to":"3490"} +{"$label":"ACTS_IN","name":"Kanye West","type":"Role","_key":"4103","_from":"3504","_to":"3490"} +{"$label":"ACTS_IN","name":"Ahmir '?uestlove' Thompson","type":"Role","_key":"4102","_from":"3503","_to":"3490"} +{"$label":"ACTS_IN","name":"Tiffany Limos","type":"Role","_key":"4101","_from":"3502","_to":"3490"} +{"$label":"ACTS_IN","name":"Wyclef Jean","type":"Role","_key":"4100","_from":"3501","_to":"3490"} +{"$label":"ACTS_IN","name":"Leonard 'Hub' Hubbard","type":"Role","_key":"4099","_from":"3500","_to":"3490"} +{"$label":"ACTS_IN","name":"Lauryn Hill","type":"Role","_key":"4098","_from":"3499","_to":"3490"} +{"$label":"ACTS_IN","name":"James 'Kamal' Gray","type":"Role","_key":"4097","_from":"3498","_to":"3490"} +{"$label":"ACTS_IN","name":"Cody Chestnutt","type":"Role","_key":"4096","_from":"3497","_to":"3490"} +{"$label":"ACTS_IN","name":"Lil' Cease","type":"Role","_key":"4095","_from":"3496","_to":"3490"} +{"$label":"ACTS_IN","name":"Bilal","type":"Role","_key":"4094","_from":"3495","_to":"3490"} +{"$label":"ACTS_IN","name":"Mos Def","type":"Role","_key":"4093","_from":"3494","_to":"3490"} +{"$label":"ACTS_IN","name":"Common","type":"Role","_key":"4092","_from":"3493","_to":"3490"} +{"$label":"ACTS_IN","name":"Erykah Badu","type":"Role","_key":"4091","_from":"3492","_to":"3490"} +{"$label":"ACTS_IN","name":"Dave Chappelle","type":"Role","_key":"4090","_from":"3491","_to":"3490"} +{"$label":"ACTS_IN","name":"Rusty P. Hayes","type":"Role","_key":"120091","_from":"3491","_to":"70525"} +{"$label":"ACTS_IN","name":"Dave Chappelle","type":"Role","_key":"108450","_from":"3491","_to":"64111"} +{"$label":"ACTS_IN","name":"Disco Cabbie","type":"Role","_key":"103709","_from":"3491","_to":"61002"} +{"$label":"ACTS_IN","name":"Conspiracy Brother","type":"Role","_key":"89178","_from":"3491","_to":"52818"} +{"$label":"ACTS_IN","name":"Tulley","type":"Role","_key":"67207","_from":"3491","_to":"41452"} +{"$label":"ACTS_IN","name":"Thurgood Jenkins \/ Sir Smoke-a-Lot","type":"Role","_key":"54213","_from":"3491","_to":"34822"} +{"$label":"ACTS_IN","name":"Reggie Warrington","type":"Role","_key":"53152","_from":"3491","_to":"34385"} +{"$label":"ACTS_IN","name":"Ahchoo","type":"Role","_key":"47714","_from":"3491","_to":"31431"} +{"$label":"ACTS_IN","name":"Joe Parker","type":"Role","_key":"15081","_from":"3491","_to":"11583"} +{"$label":"ACTS_IN","name":"Rose Rose","type":"Role","_key":"15168","_from":"3492","_to":"11627"} +{"$label":"ACTS_IN","name":"Gunsmith","type":"Role","_key":"51427","_from":"3493","_to":"33548"} +{"$label":"ACTS_IN","name":"Green Latern","type":"Role","_key":"48165","_from":"3493","_to":"31646"} +{"$label":"ACTS_IN","name":"Sir Ivy","type":"Role","_key":"47075","_from":"3493","_to":"31043"} +{"$label":"ACTS_IN","name":"Turner Lucas","type":"Role","_key":"35323","_from":"3493","_to":"24057"} +{"$label":"ACTS_IN","name":"Coates","type":"Role","_key":"12380","_from":"3493","_to":"9696"} +{"$label":"ACTS_IN","name":"Barnes","type":"Role","_key":"6395","_from":"3493","_to":"5406"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"114803","_from":"3494","_to":"67620"} +{"$label":"ACTS_IN","name":"Wemba","type":"Role","_key":"104919","_from":"3494","_to":"61738"} +{"$label":"ACTS_IN","name":"Chuck Berry","type":"Role","_key":"99522","_from":"3494","_to":"58668"} +{"$label":"ACTS_IN","name":"Dead Romeos (as Dante Smith)","type":"Role","_key":"69530","_from":"3494","_to":"42467"} +{"$label":"ACTS_IN","name":"Left Ear","type":"Role","_key":"65662","_from":"3494","_to":"40679"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"61240","_from":"3494","_to":"38676"} +{"$label":"ACTS_IN","name":"Sgt. Lucas","type":"Role","_key":"55712","_from":"3494","_to":"35451"} +{"$label":"ACTS_IN","name":"Left Ear","type":"Role","_key":"55310","_from":"3494","_to":"35264"} +{"$label":"ACTS_IN","name":"Ford Prefect","type":"Role","_key":"46726","_from":"3494","_to":"30837"} +{"$label":"ACTS_IN","name":"Eddie Bunker","type":"Role","_key":"19186","_from":"3494","_to":"14181"} +{"$label":"ACTS_IN","name":"Ryrus Cooper","type":"Role","_key":"12627","_from":"3494","_to":"9865"} +{"$label":"ACTS_IN","name":"Rita Louise Watson","type":"Role","_key":"42796","_from":"3499","_to":"28626"} +{"$label":"ACTS_IN","name":"Emmett Ducasse (as Nelust Wyclef Jean)","type":"Role","_key":"103092","_from":"3501","_to":"60638"} +{"$label":"ACTS_IN","name":"Richie Effs","type":"Role","_key":"97097","_from":"3501","_to":"57114"} +{"$label":"ACTS_IN","name":"Baine","type":"Role","_key":"64425","_from":"3501","_to":"40148"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"91229","_from":"3502","_to":"53795"} +{"$label":"ACTS_IN","name":"Peaches","type":"Role","_key":"45766","_from":"3502","_to":"30280"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120593","_from":"3504","_to":"70825"} +{"$label":"ACTS_IN","name":"Precious Ramotswe","type":"Role","_key":"115465","_from":"3505","_to":"67984"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"111502","_from":"3505","_to":"65841"} +{"$label":"ACTS_IN","name":"Big mma thorton","type":"Role","_key":"102287","_from":"3505","_to":"60182"} +{"$label":"ACTS_IN","name":"Jessie Burns","type":"Role","_key":"4115","_from":"3514","_to":"3506"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"4114","_from":"3513","_to":"3506"} +{"$label":"ACTS_IN","name":"Rawhide","type":"Role","_key":"4113","_from":"3512","_to":"3506"} +{"$label":"ACTS_IN","name":"Young Paul","type":"Role","_key":"4112","_from":"3511","_to":"3506"} +{"$label":"ACTS_IN","name":"Neal Burns","type":"Role","_key":"4111","_from":"3510","_to":"3506"} +{"$label":"ACTS_IN","name":"Mrs. Maclean","type":"Role","_key":"4109","_from":"3509","_to":"3506"} +{"$label":"ACTS_IN","name":"Rev. Maclean","type":"Role","_key":"4108","_from":"3508","_to":"3506"} +{"$label":"ACTS_IN","name":"Norman Maclean","type":"Role","_key":"4107","_from":"3507","_to":"3506"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"119842","_from":"3507","_to":"70375"} +{"$label":"ACTS_IN","name":"Joe Kane","type":"Role","_key":"115038","_from":"3507","_to":"67739"} +{"$label":"ACTS_IN","name":"Kenneth","type":"Role","_key":"105773","_from":"3507","_to":"62270"} +{"$label":"ACTS_IN","name":"Allan Dallis","type":"Role","_key":"105199","_from":"3507","_to":"61913"} +{"$label":"ACTS_IN","name":"Morton","type":"Role","_key":"100842","_from":"3507","_to":"59452"} +{"$label":"ACTS_IN","name":"Det. Joseph Thorne","type":"Role","_key":"90523","_from":"3507","_to":"53475"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"67891","_from":"3507","_to":"41713"} +{"$label":"ACTS_IN","name":"Professor Lowell","type":"Role","_key":"64202","_from":"3507","_to":"40050"} +{"$label":"DIRECTED","_key":"100648","_from":"3507","_to":"59348"} +{"$label":"ACTS_IN","name":"Dr. Radley Tate","type":"Role","_key":"116081","_from":"3508","_to":"68357"} +{"$label":"ACTS_IN","name":"Emmett","type":"Role","_key":"109893","_from":"3508","_to":"64931"} +{"$label":"ACTS_IN","name":"Cmdr. Zach Bergstrom","type":"Role","_key":"96237","_from":"3508","_to":"56559"} +{"$label":"ACTS_IN","name":"Richard Dukes","type":"Role","_key":"94876","_from":"3508","_to":"55861"} +{"$label":"ACTS_IN","name":"Sheriff George Bannerman","type":"Role","_key":"69207","_from":"3508","_to":"42323"} +{"$label":"ACTS_IN","name":"Bruce Gardner","type":"Role","_key":"62496","_from":"3508","_to":"39357"} +{"$label":"ACTS_IN","name":"John Edward Marinville","type":"Role","_key":"59273","_from":"3508","_to":"37437"} +{"$label":"ACTS_IN","name":"Darryl Cooper","type":"Role","_key":"52696","_from":"3508","_to":"34211"} +{"$label":"ACTS_IN","name":"Eugene Ackerman","type":"Role","_key":"44879","_from":"3508","_to":"29854"} +{"$label":"ACTS_IN","name":"Frank Sedman","type":"Role","_key":"39353","_from":"3508","_to":"26617"} +{"$label":"ACTS_IN","name":"Ham McDonald","type":"Role","_key":"36505","_from":"3508","_to":"24754"} +{"$label":"ACTS_IN","name":"Det. Bert Kling","type":"Role","_key":"35350","_from":"3508","_to":"24069"} +{"$label":"ACTS_IN","name":"Charles Montgomery","type":"Role","_key":"22157","_from":"3508","_to":"16157"} +{"$label":"ACTS_IN","name":"Viper","type":"Role","_key":"8687","_from":"3508","_to":"7049"} +{"$label":"ACTS_IN","name":"David Drumlin","type":"Role","_key":"8272","_from":"3508","_to":"6784"} +{"$label":"ACTS_IN","name":"Captain Augustus Bedford 'Duke' Forrest","type":"Role","_key":"7777","_from":"3508","_to":"6460"} +{"$label":"ACTS_IN","name":"Dallas","type":"Role","_key":"4787","_from":"3508","_to":"4094"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"116141","_from":"3509","_to":"68384"} +{"$label":"ACTS_IN","name":"Mama Heffalump (voice)","type":"Role","_key":"95864","_from":"3509","_to":"56376"} +{"$label":"ACTS_IN","name":"Cynthia Rose Purley","type":"Role","_key":"68211","_from":"3509","_to":"41888"} +{"$label":"ACTS_IN","name":"Betty Rhys-Jones","type":"Role","_key":"66719","_from":"3509","_to":"41220"} +{"$label":"ACTS_IN","name":"Judy Romanoff","type":"Role","_key":"55977","_from":"3509","_to":"35588"} +{"$label":"ACTS_IN","name":"Mari Hoff","type":"Role","_key":"50130","_from":"3509","_to":"32785"} +{"$label":"ACTS_IN","name":"Polly Cassotto","type":"Role","_key":"43607","_from":"3509","_to":"29123"} +{"$label":"ACTS_IN","name":"M\u00e1rja Dmitrijewna Achros\u00edmowa","type":"Role","_key":"38441","_from":"3509","_to":"25954"} +{"$label":"ACTS_IN","name":"Mrs. Bennet","type":"Role","_key":"31081","_from":"3509","_to":"21757"} +{"$label":"ACTS_IN","name":"Grace Turner","type":"Role","_key":"31071","_from":"3509","_to":"21754"} +{"$label":"ACTS_IN","name":"Grace Trevethyn","type":"Role","_key":"20640","_from":"3509","_to":"15095"} +{"$label":"ACTS_IN","name":"Alice Lidell Hargreaves","type":"Role","_key":"108871","_from":"3514","_to":"64343"} +{"$label":"ACTS_IN","name":"Annie McGee","type":"Role","_key":"102415","_from":"3514","_to":"60262"} +{"$label":"ACTS_IN","name":"Annie Doherty","type":"Role","_key":"14250","_from":"3514","_to":"11023"} +{"$label":"DIRECTED","_key":"4119","_from":"3519","_to":"3515"} +{"$label":"ACTS_IN","name":"Frances Parker","type":"Role","_key":"4118","_from":"3518","_to":"3515"} +{"$label":"ACTS_IN","name":"Cay Rivvers","type":"Role","_key":"4117","_from":"3517","_to":"3515"} +{"$label":"ACTS_IN","name":"Vivian Bell","type":"Role","_key":"4116","_from":"3516","_to":"3515"} +{"$label":"ACTS_IN","name":"Virginia Tremayne","type":"Role","_key":"88925","_from":"3516","_to":"52676"} +{"$label":"ACTS_IN","name":"Janelle","type":"Role","_key":"72494","_from":"3516","_to":"43737"} +{"$label":"ACTS_IN","name":"Clair Lewis","type":"Role","_key":"68628","_from":"3516","_to":"42068"} +{"$label":"ACTS_IN","name":"Kate 'White' Reilly","type":"Role","_key":"67690","_from":"3516","_to":"41634"} +{"$label":"ACTS_IN","name":"Sandy Moose","type":"Role","_key":"60800","_from":"3516","_to":"38408"} +{"$label":"ACTS_IN","name":"Dana Martin","type":"Role","_key":"40195","_from":"3517","_to":"27133"} +{"$label":"ACTS_IN","name":"Bill's Girlfriend","type":"Role","_key":"4131","_from":"3529","_to":"3521"} +{"$label":"ACTS_IN","name":"Brewser's Aide","type":"Role","_key":"4130","_from":"3528","_to":"3521"} +{"$label":"ACTS_IN","name":"Chief Engineer","type":"Role","_key":"4129","_from":"3527","_to":"3521"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"4128","_from":"3526","_to":"3521"} +{"$label":"ACTS_IN","name":"Scott Petersen","type":"Role","_key":"4126","_from":"3525","_to":"3521"} +{"$label":"ACTS_IN","name":"T-X","type":"Role","_key":"4124","_from":"3524","_to":"3521"} +{"$label":"ACTS_IN","name":"Kate Brewster","type":"Role","_key":"4123","_from":"3523","_to":"3521"} +{"$label":"DIRECTED","_key":"4120","_from":"3522","_to":"3521"} +{"$label":"DIRECTED","_key":"121609","_from":"3522","_to":"71444"} +{"$label":"DIRECTED","_key":"27677","_from":"3522","_to":"19835"} +{"$label":"DIRECTED","_key":"18831","_from":"3522","_to":"13912"} +{"$label":"ACTS_IN","name":"Alice Marano","type":"Role","_key":"113712","_from":"3523","_to":"67017"} +{"$label":"ACTS_IN","name":"Julie Barnes","type":"Role","_key":"108996","_from":"3523","_to":"64413"} +{"$label":"ACTS_IN","name":"Allison Lowry","type":"Role","_key":"98741","_from":"3523","_to":"58191"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"91485","_from":"3523","_to":"53938"} +{"$label":"ACTS_IN","name":"Sonja Jones","type":"Role","_key":"89312","_from":"3523","_to":"52869"} +{"$label":"ACTS_IN","name":"Kelly Riker","type":"Role","_key":"73100","_from":"3523","_to":"43974"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"61300","_from":"3523","_to":"38700"} +{"$label":"ACTS_IN","name":"Sookie Sapperstein","type":"Role","_key":"55602","_from":"3523","_to":"35408"} +{"$label":"ACTS_IN","name":"Beth March","type":"Role","_key":"54862","_from":"3523","_to":"35089"} +{"$label":"ACTS_IN","name":"Kitt Larson","type":"Role","_key":"52496","_from":"3523","_to":"34146"} +{"$label":"ACTS_IN","name":"Julie Morton","type":"Role","_key":"52236","_from":"3523","_to":"34024"} +{"$label":"ACTS_IN","name":"Ann Grant","type":"Role","_key":"41260","_from":"3523","_to":"27749"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31598","_from":"3523","_to":"22064"} +{"$label":"ACTS_IN","name":"Mirabelle Buttersfield","type":"Role","_key":"22176","_from":"3523","_to":"16167"} +{"$label":"ACTS_IN","name":"Yvaine","type":"Role","_key":"19953","_from":"3523","_to":"14696"} +{"$label":"ACTS_IN","name":"Julia Vaughan","type":"Role","_key":"7086","_from":"3523","_to":"5922"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"5663","_from":"3523","_to":"4828"} +{"$label":"ACTS_IN","name":"Brunnhild","type":"Role","_key":"68426","_from":"3524","_to":"41974"} +{"$label":"ACTS_IN","name":"Rayne","type":"Role","_key":"58197","_from":"3524","_to":"36805"} +{"$label":"ACTS_IN","name":"Elora","type":"Role","_key":"20325","_from":"3524","_to":"14887"} +{"$label":"ACTS_IN","name":"Doug Caruthers","type":"Role","_key":"58633","_from":"3525","_to":"37036"} +{"$label":"ACTS_IN","name":"Arleen Bar","type":"Role","_key":"18839","_from":"3526","_to":"13912"} +{"$label":"ACTS_IN","name":"Sgt. Adams","type":"Role","_key":"52070","_from":"3527","_to":"33949"} +{"$label":"ACTS_IN","name":"The Parrish's Butler","type":"Role","_key":"4142","_from":"3538","_to":"3530"} +{"$label":"ACTS_IN","name":"Jamaican Woman's Daughter","type":"Role","_key":"4141","_from":"3537","_to":"3530"} +{"$label":"ACTS_IN","name":"Jamaican Woman","type":"Role","_key":"4140","_from":"3536","_to":"3530"} +{"$label":"ACTS_IN","name":"Eddie Sloane","type":"Role","_key":"4139","_from":"3535","_to":"3530"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"4138","_from":"3534","_to":"3530"} +{"$label":"ACTS_IN","name":"Allison Parrish","type":"Role","_key":"4137","_from":"3533","_to":"3530"} +{"$label":"ACTS_IN","name":"Quince","type":"Role","_key":"4136","_from":"3532","_to":"3530"} +{"$label":"ACTS_IN","name":"Susan Parrish","type":"Role","_key":"4135","_from":"3531","_to":"3530"} +{"$label":"ACTS_IN","name":"Ruth Davies","type":"Role","_key":"96711","_from":"3531","_to":"56883"} +{"$label":"ACTS_IN","name":"Isabella Parish","type":"Role","_key":"90180","_from":"3531","_to":"53319"} +{"$label":"ACTS_IN","name":"Nicole James","type":"Role","_key":"64506","_from":"3531","_to":"40185"} +{"$label":"ACTS_IN","name":"Jennifer Burrows","type":"Role","_key":"64159","_from":"3531","_to":"40035"} +{"$label":"ACTS_IN","name":"Alice Poulson","type":"Role","_key":"59042","_from":"3531","_to":"37275"} +{"$label":"ACTS_IN","name":"Shannon Dunham","type":"Role","_key":"51520","_from":"3531","_to":"33593"} +{"$label":"ACTS_IN","name":"Solana","type":"Role","_key":"20327","_from":"3531","_to":"14887"} +{"$label":"ACTS_IN","name":"Brandi Svenning","type":"Role","_key":"20120","_from":"3531","_to":"14782"} +{"$label":"ACTS_IN","name":"Verity Foe","type":"Role","_key":"19554","_from":"3531","_to":"14466"} +{"$label":"ACTS_IN","name":"Gina Cardinale","type":"Role","_key":"6547","_from":"3531","_to":"5534"} +{"$label":"ACTS_IN","name":"Sid Garner","type":"Role","_key":"117495","_from":"3532","_to":"69087"} +{"$label":"ACTS_IN","name":"Dr. Feldman","type":"Role","_key":"94371","_from":"3532","_to":"55568"} +{"$label":"ACTS_IN","name":"Mr. Rice","type":"Role","_key":"94006","_from":"3532","_to":"55360"} +{"$label":"ACTS_IN","name":"Jinx","type":"Role","_key":"92623","_from":"3532","_to":"54673"} +{"$label":"ACTS_IN","name":"Dr. Whitby","type":"Role","_key":"72755","_from":"3532","_to":"43830"} +{"$label":"ACTS_IN","name":"King Neptune (voice)","type":"Role","_key":"72280","_from":"3532","_to":"43663"} +{"$label":"ACTS_IN","name":"Tom Manning","type":"Role","_key":"68818","_from":"3532","_to":"42165"} +{"$label":"ACTS_IN","name":"Coach 'Spanky' Wenchell","type":"Role","_key":"62699","_from":"3532","_to":"39424"} +{"$label":"ACTS_IN","name":"Mayor Augustus Maywho","type":"Role","_key":"51194","_from":"3532","_to":"33390"} +{"$label":"ACTS_IN","name":"Vance Crasswell","type":"Role","_key":"43904","_from":"3532","_to":"29304"} +{"$label":"ACTS_IN","name":"Dr. Melvin Potts","type":"Role","_key":"27883","_from":"3532","_to":"19989"} +{"$label":"ACTS_IN","name":"Dr. Fish","type":"Role","_key":"25253","_from":"3532","_to":"18211"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"23833","_from":"3532","_to":"17282"} +{"$label":"ACTS_IN","name":"Tom Manning","type":"Role","_key":"13472","_from":"3532","_to":"10484"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"13006","_from":"3532","_to":"10137"} +{"$label":"ACTS_IN","name":"Sully","type":"Role","_key":"6494","_from":"3532","_to":"5497"} +{"$label":"ACTS_IN","name":"Grace Sutherland","type":"Role","_key":"110072","_from":"3533","_to":"65043"} +{"$label":"ACTS_IN","name":"Janet Huttenson","type":"Role","_key":"104140","_from":"3533","_to":"61265"} +{"$label":"ACTS_IN","name":"Megan Stark","type":"Role","_key":"102686","_from":"3533","_to":"60412"} +{"$label":"ACTS_IN","name":"Melora","type":"Role","_key":"95170","_from":"3533","_to":"55998"} +{"$label":"ACTS_IN","name":"Lee Krasner","type":"Role","_key":"89954","_from":"3533","_to":"53218"} +{"$label":"ACTS_IN","name":"Miss Cheevus","type":"Role","_key":"63913","_from":"3533","_to":"39925"} +{"$label":"ACTS_IN","name":"Edith Irving","type":"Role","_key":"57793","_from":"3533","_to":"36578"} +{"$label":"ACTS_IN","name":"Diane Powell","type":"Role","_key":"56750","_from":"3533","_to":"36045"} +{"$label":"ACTS_IN","name":"Dr. Sara Jean Reynolds","type":"Role","_key":"54789","_from":"3533","_to":"35058"} +{"$label":"ACTS_IN","name":"Dr. Samantha Hawkins","type":"Role","_key":"53986","_from":"3533","_to":"34724"} +{"$label":"ACTS_IN","name":"Billie McCandless","type":"Role","_key":"40405","_from":"3533","_to":"27245"} +{"$label":"ACTS_IN","name":"Mrs. Carmody","type":"Role","_key":"40035","_from":"3533","_to":"27031"} +{"$label":"ACTS_IN","name":"Sara Holland","type":"Role","_key":"37812","_from":"3533","_to":"25635"} +{"$label":"ACTS_IN","name":"Verna Bernbaum","type":"Role","_key":"4891","_from":"3533","_to":"4175"} +{"$label":"ACTS_IN","name":"Celeste Boyle","type":"Role","_key":"4467","_from":"3533","_to":"3810"} +{"$label":"ACTS_IN","name":"Bobby Davis","type":"Role","_key":"109200","_from":"3534","_to":"64518"} +{"$label":"ACTS_IN","name":"Robert Hartley","type":"Role","_key":"101610","_from":"3534","_to":"59810"} +{"$label":"ACTS_IN","name":"King Henry","type":"Role","_key":"50209","_from":"3534","_to":"32818"} +{"$label":"ACTS_IN","name":"Lt. Hirsch","type":"Role","_key":"27684","_from":"3534","_to":"19835"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"10993","_from":"3534","_to":"8707"} +{"$label":"ACTS_IN","name":"Frank Jeffers","type":"Role","_key":"28867","_from":"3538","_to":"20624"} +{"$label":"ACTS_IN","name":"C\u00e9line Dion","type":"Role","_key":"4160","_from":"3542","_to":"3539"} +{"$label":"ACTS_IN","name":"FBI Agent","type":"Role","_key":"4159","_from":"3541","_to":"3539"} +{"$label":"ACTS_IN","name":"Abigail Sponder","type":"Role","_key":"4156","_from":"3540","_to":"3539"} +{"$label":"ACTS_IN","name":"Beth Schreiber","type":"Role","_key":"96369","_from":"3540","_to":"56647"} +{"$label":"ACTS_IN","name":"Joyce Victor","type":"Role","_key":"92329","_from":"3540","_to":"54486"} +{"$label":"ACTS_IN","name":"Diane Roberts","type":"Role","_key":"90864","_from":"3540","_to":"53612"} +{"$label":"ACTS_IN","name":"Helen Cruger","type":"Role","_key":"88317","_from":"3540","_to":"52376"} +{"$label":"ACTS_IN","name":"Penny Priddy","type":"Role","_key":"69504","_from":"3540","_to":"42461"} +{"$label":"ACTS_IN","name":"Anne Osborne","type":"Role","_key":"67389","_from":"3540","_to":"41521"} +{"$label":"ACTS_IN","name":"Annette Atkins","type":"Role","_key":"63648","_from":"3540","_to":"39819"} +{"$label":"ACTS_IN","name":"Amanda Brooks","type":"Role","_key":"62119","_from":"3540","_to":"39122"} +{"$label":"ACTS_IN","name":"Jewel Stern","type":"Role","_key":"54736","_from":"3540","_to":"35035"} +{"$label":"ACTS_IN","name":"Caroline Wolff Hansen","type":"Role","_key":"48203","_from":"3540","_to":"31667"} +{"$label":"ACTS_IN","name":"Det. Catherine Palmer","type":"Role","_key":"36669","_from":"3540","_to":"24857"} +{"$label":"ACTS_IN","name":"Waitress at North Star Cafe","type":"Role","_key":"16207","_from":"3540","_to":"12305"} +{"$label":"ACTS_IN","name":"Laurette","type":"Role","_key":"13759","_from":"3540","_to":"10676"} +{"$label":"ACTS_IN","name":"Sunny Boyd","type":"Role","_key":"6099","_from":"3540","_to":"5178"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105516","_from":"3542","_to":"62089"} +{"$label":"ACTS_IN","name":"Josh Howard","type":"Role","_key":"4170","_from":"3551","_to":"3543"} +{"$label":"ACTS_IN","name":"'Mushy' O'Connors","type":"Role","_key":"4169","_from":"3550","_to":"3543"} +{"$label":"ACTS_IN","name":"Adele Ekstrom","type":"Role","_key":"4168","_from":"3549","_to":"3543"} +{"$label":"ACTS_IN","name":"Duke Santos","type":"Role","_key":"4167","_from":"3548","_to":"3543"} +{"$label":"ACTS_IN","name":"Beatrice Ocean","type":"Role","_key":"4165","_from":"3547","_to":"3543"} +{"$label":"ACTS_IN","name":"Jimmy Foster","type":"Role","_key":"4164","_from":"3546","_to":"3543"} +{"$label":"ACTS_IN","name":"Sam Harmon","type":"Role","_key":"4163","_from":"3545","_to":"3543"} +{"$label":"ACTS_IN","name":"Danny Ocean","type":"Role","_key":"4162","_from":"3544","_to":"3543"} +{"$label":"ACTS_IN","name":"First Sgt. Mike Merry","type":"Role","_key":"116491","_from":"3544","_to":"68567"} +{"$label":"ACTS_IN","name":"John Baron","type":"Role","_key":"116031","_from":"3544","_to":"68332"} +{"$label":"ACTS_IN","name":"Clarence Doolittle","type":"Role","_key":"114230","_from":"3544","_to":"67282"} +{"$label":"ACTS_IN","name":"Robbo","type":"Role","_key":"113683","_from":"3544","_to":"66993"} +{"$label":"ACTS_IN","name":"Zack Thomas","type":"Role","_key":"113672","_from":"3544","_to":"66988"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"72937","_from":"3544","_to":"43910"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"71015","_from":"3544","_to":"43129"} +{"$label":"ACTS_IN","name":"Pvt. Angelo Maggio","type":"Role","_key":"69793","_from":"3544","_to":"42595"} +{"$label":"ACTS_IN","name":"Mike Connor","type":"Role","_key":"69777","_from":"3544","_to":"42588"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"34246","_from":"3544","_to":"23507"} +{"$label":"ACTS_IN","name":"Capt. Tom Reynolds","type":"Role","_key":"34204","_from":"3544","_to":"23489"} +{"$label":"ACTS_IN","name":"Saloon Pianist","type":"Role","_key":"24144","_from":"3544","_to":"17503"} +{"$label":"ACTS_IN","name":"Capt.\/Maj. Bennett Marco","type":"Role","_key":"11605","_from":"3544","_to":"9116"} +{"$label":"ACTS_IN","name":"Frankie Machine","type":"Role","_key":"6456","_from":"3544","_to":"5468"} +{"$label":"ACTS_IN","name":"Sgt. Chip Deal","type":"Role","_key":"116492","_from":"3545","_to":"68567"} +{"$label":"ACTS_IN","name":"Little John","type":"Role","_key":"113684","_from":"3545","_to":"66993"} +{"$label":"ACTS_IN","name":"Joe Jarrett","type":"Role","_key":"113673","_from":"3545","_to":"66988"} +{"$label":"ACTS_IN","name":"Tom Elder","type":"Role","_key":"108135","_from":"3545","_to":"63907"} +{"$label":"ACTS_IN","name":"Jamie Blake","type":"Role","_key":"72921","_from":"3545","_to":"43910"} +{"$label":"ACTS_IN","name":"Jamie Blake","type":"Role","_key":"68908","_from":"3545","_to":"42196"} +{"$label":"ACTS_IN","name":"Capt. Vernon Demerest","type":"Role","_key":"64955","_from":"3545","_to":"40379"} +{"$label":"ACTS_IN","name":"Van Morgan","type":"Role","_key":"35430","_from":"3545","_to":"24107"} +{"$label":"ACTS_IN","name":"Matt Helm","type":"Role","_key":"25281","_from":"3545","_to":"18225"} +{"$label":"ACTS_IN","name":"Dude ('Borach\u00f3n')","type":"Role","_key":"4190","_from":"3545","_to":"3567"} +{"$label":"ACTS_IN","name":"Sgt. Larry Barrett","type":"Role","_key":"116494","_from":"3546","_to":"68567"} +{"$label":"ACTS_IN","name":"Senator Lafe Smith","type":"Role","_key":"111446","_from":"3546","_to":"65805"} +{"$label":"ACTS_IN","name":"David Stone","type":"Role","_key":"109526","_from":"3546","_to":"64694"} +{"$label":"ACTS_IN","name":"Paul Benn","type":"Role","_key":"45488","_from":"3546","_to":"30136"} +{"$label":"ACTS_IN","name":"Capt. Grey Travis","type":"Role","_key":"34206","_from":"3546","_to":"23489"} +{"$label":"ACTS_IN","name":"Lord Carter","type":"Role","_key":"16851","_from":"3546","_to":"12677"} +{"$label":"ACTS_IN","name":"Maj. Caldwell","type":"Role","_key":"16831","_from":"3546","_to":"12674"} +{"$label":"ACTS_IN","name":"Mrs. Ingrid Tyson","type":"Role","_key":"72430","_from":"3547","_to":"43719"} +{"$label":"ACTS_IN","name":"Kate Miller","type":"Role","_key":"67454","_from":"3547","_to":"41554"} +{"$label":"ACTS_IN","name":"Emma Marcus","type":"Role","_key":"50599","_from":"3547","_to":"33046"} +{"$label":"ACTS_IN","name":"Laura Breckenridge","type":"Role","_key":"50498","_from":"3547","_to":"32983"} +{"$label":"ACTS_IN","name":"Eileen Kelly","type":"Role","_key":"34813","_from":"3547","_to":"23787"} +{"$label":"ACTS_IN","name":"Feathers","type":"Role","_key":"4193","_from":"3547","_to":"3567"} +{"$label":"ACTS_IN","name":"Marquis Andre de Lage","type":"Role","_key":"106208","_from":"3548","_to":"62552"} +{"$label":"ACTS_IN","name":"Marquis Henri de Labordere","type":"Role","_key":"91395","_from":"3548","_to":"53906"} +{"$label":"ACTS_IN","name":"Chris Jorgenson","type":"Role","_key":"27671","_from":"3548","_to":"19823"} +{"$label":"ACTS_IN","name":"Mike Madigan","type":"Role","_key":"26299","_from":"3548","_to":"18886"} +{"$label":"ACTS_IN","name":"The Joker","type":"Role","_key":"22544","_from":"3548","_to":"16373"} +{"$label":"ACTS_IN","name":"Eddie's Father","type":"Role","_key":"118103","_from":"3550","_to":"69414"} +{"$label":"ACTS_IN","name":"Sgt.-Maj. Roger Boswell","type":"Role","_key":"116495","_from":"3550","_to":"68567"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34917","_from":"3550","_to":"23848"} +{"$label":"ACTS_IN","name":"Jonah Williams","type":"Role","_key":"116493","_from":"3551","_to":"68567"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"113685","_from":"3551","_to":"66993"} +{"$label":"ACTS_IN","name":"Little Mo","type":"Role","_key":"109530","_from":"3551","_to":"64698"} +{"$label":"ACTS_IN","name":"Morris Fenderbaum","type":"Role","_key":"72922","_from":"3551","_to":"43910"} +{"$label":"ACTS_IN","name":"Morris Fenderbaum","type":"Role","_key":"68910","_from":"3551","_to":"42196"} +{"$label":"ACTS_IN","name":"Sportin' Life","type":"Role","_key":"16820","_from":"3551","_to":"12668"} +{"$label":"ACTS_IN","name":"Policier","type":"Role","_key":"4186","_from":"3566","_to":"3552"} +{"$label":"ACTS_IN","name":"Pr\u00e9sentateur JT","type":"Role","_key":"4185","_from":"3565","_to":"3552"} +{"$label":"ACTS_IN","name":"Policier qui joue au piano","type":"Role","_key":"4184","_from":"3564","_to":"3552"} +{"$label":"ACTS_IN","name":"Ivana","type":"Role","_key":"4183","_from":"3563","_to":"3552"} +{"$label":"ACTS_IN","name":"M. Persinnet","type":"Role","_key":"4182","_from":"3562","_to":"3552"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"4181","_from":"3561","_to":"3552"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"4180","_from":"3560","_to":"3552"} +{"$label":"ACTS_IN","name":"Mr. Pouchet","type":"Role","_key":"4179","_from":"3559","_to":"3552"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"4178","_from":"3558","_to":"3552"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"4177","_from":"3557","_to":"3552"} +{"$label":"ACTS_IN","name":"Zo\u00e9","type":"Role","_key":"4176","_from":"3556","_to":"3552"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"4175","_from":"3555","_to":"3552"} +{"$label":"ACTS_IN","name":"Christine Miroux","type":"Role","_key":"4174","_from":"3554","_to":"3552"} +{"$label":"ACTS_IN","name":"St\u00e9phanie","type":"Role","_key":"4173","_from":"3553","_to":"3552"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"121572","_from":"3553","_to":"71429"} +{"$label":"ACTS_IN","name":"She","type":"Role","_key":"113327","_from":"3553","_to":"66761"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"101945","_from":"3553","_to":"59995"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"101300","_from":"3553","_to":"59643"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"101289","_from":"3553","_to":"59641"} +{"$label":"ACTS_IN","name":"Janine Castang","type":"Role","_key":"50760","_from":"3553","_to":"33128"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"31635","_from":"3553","_to":"22083"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"28884","_from":"3553","_to":"20642"} +{"$label":"ACTS_IN","name":"Lucy Reed","type":"Role","_key":"17276","_from":"3553","_to":"12932"} +{"$label":"ACTS_IN","name":"B\u00e9n\u00e9dicte Getty","type":"Role","_key":"14383","_from":"3553","_to":"11124"} +{"$label":"ACTS_IN","name":"Mary Rivers","type":"Role","_key":"5833","_from":"3553","_to":"4954"} +{"$label":"ACTS_IN","name":"Laure Guignebont","type":"Role","_key":"105220","_from":"3554","_to":"61923"} +{"$label":"ACTS_IN","name":"Judith Rosenfeld","type":"Role","_key":"104465","_from":"3554","_to":"61444"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"70096","_from":"3554","_to":"42735"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"66693","_from":"3554","_to":"41205"} +{"$label":"ACTS_IN","name":"Eliane","type":"Role","_key":"62388","_from":"3554","_to":"39307"} +{"$label":"ACTS_IN","name":"Voisine","type":"Role","_key":"45709","_from":"3554","_to":"30252"} +{"$label":"ACTS_IN","name":"Nicole Kunstler","type":"Role","_key":"42438","_from":"3554","_to":"28418"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"42081","_from":"3554","_to":"28196"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"29839","_from":"3554","_to":"21113"} +{"$label":"ACTS_IN","name":"Marie-Ange","type":"Role","_key":"29472","_from":"3554","_to":"20898"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"28983","_from":"3554","_to":"20696"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"15498","_from":"3554","_to":"11836"} +{"$label":"ACTS_IN","name":"Antoinette Pivert","type":"Role","_key":"8933","_from":"3554","_to":"7242"} +{"$label":"ACTS_IN","name":"Luis Costa","type":"Role","_key":"121570","_from":"3555","_to":"71429"} +{"$label":"ACTS_IN","name":"Stanislas de la Tour-Maubourg","type":"Role","_key":"113634","_from":"3555","_to":"66968"} +{"$label":"ACTS_IN","name":"Serge Karamazov","type":"Role","_key":"103158","_from":"3555","_to":"60680"} +{"$label":"ACTS_IN","name":"Gilles Gabriel","type":"Role","_key":"100085","_from":"3555","_to":"59036"} +{"$label":"ACTS_IN","name":"La voix off","type":"Role","_key":"96118","_from":"3555","_to":"56494"} +{"$label":"ACTS_IN","name":"Bruno Deschamps","type":"Role","_key":"65114","_from":"3555","_to":"40447"} +{"$label":"ACTS_IN","name":"Laurent Lafaye","type":"Role","_key":"32034","_from":"3555","_to":"22318"} +{"$label":"ACTS_IN","name":"Julius Ceasar","type":"Role","_key":"24172","_from":"3555","_to":"17515"} +{"$label":"DIRECTED","_key":"24168","_from":"3555","_to":"17515"} +{"$label":"ACTS_IN","name":"Empress Eugenia","type":"Role","_key":"17484","_from":"3556","_to":"13069"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"91648","_from":"3557","_to":"54047"} +{"$label":"ACTS_IN","name":"Nikola\u00ef","type":"Role","_key":"67872","_from":"3558","_to":"41702"} +{"$label":"ACTS_IN","name":"le p\u00e8re d'Antoine","type":"Role","_key":"56170","_from":"3559","_to":"35705"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33569","_from":"3559","_to":"23204"} +{"$label":"ACTS_IN","name":"Harold (scenes deleted)","type":"Role","_key":"4199","_from":"3577","_to":"3567"} +{"$label":"ACTS_IN","name":"Joe Burdette","type":"Role","_key":"4198","_from":"3576","_to":"3567"} +{"$label":"ACTS_IN","name":"Consuela Robante","type":"Role","_key":"4197","_from":"3575","_to":"3567"} +{"$label":"ACTS_IN","name":"Carlos Robante","type":"Role","_key":"4196","_from":"3574","_to":"3567"} +{"$label":"ACTS_IN","name":"Nathan Burdette","type":"Role","_key":"4195","_from":"3573","_to":"3567"} +{"$label":"ACTS_IN","name":"Pat Wheeler","type":"Role","_key":"4194","_from":"3572","_to":"3567"} +{"$label":"ACTS_IN","name":"Stumpy","type":"Role","_key":"4192","_from":"3571","_to":"3567"} +{"$label":"ACTS_IN","name":"Colorado Ryan","type":"Role","_key":"4191","_from":"3570","_to":"3567"} +{"$label":"ACTS_IN","name":"Sheriff John T. Chance","type":"Role","_key":"4189","_from":"3569","_to":"3567"} +{"$label":"DIRECTED","_key":"4188","_from":"3568","_to":"3567"} +{"$label":"DIRECTED","_key":"109248","_from":"3568","_to":"64541"} +{"$label":"DIRECTED","_key":"106002","_from":"3568","_to":"62406"} +{"$label":"DIRECTED","_key":"69536","_from":"3568","_to":"42468"} +{"$label":"DIRECTED","_key":"65785","_from":"3568","_to":"40713"} +{"$label":"DIRECTED","_key":"44544","_from":"3568","_to":"29659"} +{"$label":"DIRECTED","_key":"25687","_from":"3568","_to":"18490"} +{"$label":"DIRECTED","_key":"25619","_from":"3568","_to":"18451"} +{"$label":"DIRECTED","_key":"10820","_from":"3568","_to":"8581"} +{"$label":"DIRECTED","_key":"10716","_from":"3568","_to":"8505"} +{"$label":"DIRECTED","_key":"10427","_from":"3568","_to":"8296"} +{"$label":"DIRECTED","_key":"8923","_from":"3568","_to":"7234"} +{"$label":"ACTS_IN","name":"Col. John Henry Thomas","type":"Role","_key":"118319","_from":"3569","_to":"69552"} +{"$label":"ACTS_IN","name":"Sgt John M Stryker","type":"Role","_key":"117218","_from":"3569","_to":"68953"} +{"$label":"ACTS_IN","name":"Dan Roman","type":"Role","_key":"113845","_from":"3569","_to":"67061"} +{"$label":"ACTS_IN","name":"Col John Marlowe","type":"Role","_key":"113514","_from":"3569","_to":"66881"} +{"$label":"ACTS_IN","name":"Reuben J. \"Rooster\" Cogburn","type":"Role","_key":"112876","_from":"3569","_to":"66629"} +{"$label":"ACTS_IN","name":"Marshall Reuben J. 'Rooster' Cogburn","type":"Role","_key":"112775","_from":"3569","_to":"66595"} +{"$label":"ACTS_IN","name":"John Elder","type":"Role","_key":"108134","_from":"3569","_to":"63907"} +{"$label":"ACTS_IN","name":"George Abitbol","type":"Role","_key":"107235","_from":"3569","_to":"63245"} +{"$label":"ACTS_IN","name":"Michael Patrick Donovan","type":"Role","_key":"106204","_from":"3569","_to":"62552"} +{"$label":"ACTS_IN","name":"Wil Andersen","type":"Role","_key":"104966","_from":"3569","_to":"61763"} +{"$label":"ACTS_IN","name":"John Breen","type":"Role","_key":"103789","_from":"3569","_to":"61050"} +{"$label":"ACTS_IN","name":"Rocklin","type":"Role","_key":"103780","_from":"3569","_to":"61041"} +{"$label":"ACTS_IN","name":"George Washington McLintock","type":"Role","_key":"103775","_from":"3569","_to":"61040"} +{"$label":"ACTS_IN","name":"Capt. Nathan Cutting Brittles","type":"Role","_key":"97387","_from":"3569","_to":"57354"} +{"$label":"ACTS_IN","name":"John Bernard Books","type":"Role","_key":"90432","_from":"3569","_to":"53430"} +{"$label":"ACTS_IN","name":"Gen. William Tecumseh Sherman","type":"Role","_key":"72621","_from":"3569","_to":"43773"} +{"$label":"ACTS_IN","name":"Tom Doniphon","type":"Role","_key":"71619","_from":"3569","_to":"43376"} +{"$label":"ACTS_IN","name":"Lt. Col. Kirby Yorke","type":"Role","_key":"71076","_from":"3569","_to":"43158"} +{"$label":"ACTS_IN","name":"Sean Mercer","type":"Role","_key":"69532","_from":"3569","_to":"42468"} +{"$label":"ACTS_IN","name":"Col. Davy Crockett","type":"Role","_key":"68551","_from":"3569","_to":"42033"} +{"$label":"ACTS_IN","name":"Col. Benjamin Vandervoort","type":"Role","_key":"52895","_from":"3569","_to":"34285"} +{"$label":"ACTS_IN","name":"Cole Thornton","type":"Role","_key":"44545","_from":"3569","_to":"29659"} +{"$label":"ACTS_IN","name":"Hondo Lane","type":"Role","_key":"43951","_from":"3569","_to":"29320"} +{"$label":"ACTS_IN","name":"Sam McCord","type":"Role","_key":"43892","_from":"3569","_to":"29302"} +{"$label":"ACTS_IN","name":"Ethan Edwards","type":"Role","_key":"26070","_from":"3569","_to":"18734"} +{"$label":"ACTS_IN","name":"Sean Thornton","type":"Role","_key":"26000","_from":"3569","_to":"18693"} +{"$label":"ACTS_IN","name":"Thomas Dunson","type":"Role","_key":"25689","_from":"3569","_to":"18490"} +{"$label":"ACTS_IN","name":"Der Zenturio","type":"Role","_key":"21269","_from":"3569","_to":"15553"} +{"$label":"ACTS_IN","name":"The Ringo Kid","type":"Role","_key":"11762","_from":"3569","_to":"9231"} +{"$label":"DIRECTED","_key":"68556","_from":"3569","_to":"42033"} +{"$label":"ACTS_IN","name":"Sam Blake","type":"Role","_key":"118878","_from":"3571","_to":"69866"} +{"$label":"ACTS_IN","name":"Ben Tatum","type":"Role","_key":"117228","_from":"3571","_to":"68960"} +{"$label":"ACTS_IN","name":"Pastor Rosier Pile","type":"Role","_key":"109245","_from":"3571","_to":"64541"} +{"$label":"ACTS_IN","name":"Judge Roy Bean","type":"Role","_key":"101507","_from":"3571","_to":"59743"} +{"$label":"ACTS_IN","name":"'Bugs' Meyers","type":"Role","_key":"101113","_from":"3571","_to":"59577"} +{"$label":"ACTS_IN","name":"Doc T.R. Velie Jr.","type":"Role","_key":"100776","_from":"3571","_to":"59412"} +{"$label":"ACTS_IN","name":"Pa Danby","type":"Role","_key":"70772","_from":"3571","_to":"43036"} +{"$label":"ACTS_IN","name":"'Groot' Nadine","type":"Role","_key":"25692","_from":"3571","_to":"18490"} +{"$label":"ACTS_IN","name":"Old Man Clanton","type":"Role","_key":"25677","_from":"3571","_to":"18485"} +{"$label":"ACTS_IN","name":"Lov Bensey","type":"Role","_key":"116580","_from":"3572","_to":"68621"} +{"$label":"ACTS_IN","name":"Insp. Charles Weber","type":"Role","_key":"115600","_from":"3572","_to":"68053"} +{"$label":"ACTS_IN","name":"'Judge' Robert Garvey","type":"Role","_key":"103782","_from":"3572","_to":"61041"} +{"$label":"ACTS_IN","name":"Bufallo Baker","type":"Role","_key":"43953","_from":"3572","_to":"29320"} +{"$label":"ACTS_IN","name":"Rev. Capt. Samuel Johnston Clayton","type":"Role","_key":"26074","_from":"3572","_to":"18734"} +{"$label":"ACTS_IN","name":"Father Peter Lonergan","type":"Role","_key":"26003","_from":"3572","_to":"18693"} +{"$label":"ACTS_IN","name":"Morgan Earp","type":"Role","_key":"25679","_from":"3572","_to":"18485"} +{"$label":"ACTS_IN","name":"Townley","type":"Role","_key":"15209","_from":"3572","_to":"11641"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"14044","_from":"3572","_to":"10886"} +{"$label":"ACTS_IN","name":"Det. Tom Polhaus","type":"Role","_key":"11452","_from":"3572","_to":"9009"} +{"$label":"ACTS_IN","name":"Tom - Yankee Captain","type":"Role","_key":"9062","_from":"3572","_to":"7317"} +{"$label":"ACTS_IN","name":"Otis Hopper","type":"Role","_key":"25603","_from":"3573","_to":"18430"} +{"$label":"ACTS_IN","name":"Gonzalez","type":"Role","_key":"113856","_from":"3574","_to":"67061"} +{"$label":"ACTS_IN","name":"Juanita Lopez","type":"Role","_key":"26309","_from":"3575","_to":"18891"} +{"$label":"ACTS_IN","name":"Sheriff Warren A. Butcher","type":"Role","_key":"104096","_from":"3576","_to":"61243"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"90772","_from":"3576","_to":"53570"} +{"$label":"ACTS_IN","name":"Mack","type":"Role","_key":"69714","_from":"3576","_to":"42555"} +{"$label":"ACTS_IN","name":"Horrible","type":"Role","_key":"61455","_from":"3576","_to":"38765"} +{"$label":"ACTS_IN","name":"Aldo","type":"Role","_key":"15107","_from":"3576","_to":"11596"} +{"$label":"ACTS_IN","name":"Ben Lane","type":"Role","_key":"14843","_from":"3576","_to":"11407"} +{"$label":"ACTS_IN","name":"2nd Lt. Ross Pennell","type":"Role","_key":"97392","_from":"3577","_to":"57354"} +{"$label":"ACTS_IN","name":"George Martin","type":"Role","_key":"44783","_from":"3577","_to":"29790"} +{"$label":"ACTS_IN","name":"Brad Jorgensen","type":"Role","_key":"26079","_from":"3577","_to":"18734"} +{"$label":"ACTS_IN","name":"Dan Latimer","type":"Role","_key":"25697","_from":"3577","_to":"18490"} +{"$label":"ACTS_IN","name":"Mr. Anderson","type":"Role","_key":"11049","_from":"3577","_to":"8736"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"4210","_from":"3589","_to":"3578"} +{"$label":"ACTS_IN","name":"Waitress at Cafe","type":"Role","_key":"4209","_from":"3588","_to":"3578"} +{"$label":"ACTS_IN","name":"Second Man","type":"Role","_key":"4208","_from":"3587","_to":"3578"} +{"$label":"ACTS_IN","name":"First Man","type":"Role","_key":"4207","_from":"3586","_to":"3578"} +{"$label":"ACTS_IN","name":"Marcel's Daughter","type":"Role","_key":"4206","_from":"3585","_to":"3578"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"4205","_from":"3584","_to":"3578"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"4204","_from":"3583","_to":"3578"} +{"$label":"ACTS_IN","name":"John Bosload","type":"Role","_key":"4203","_from":"3582","_to":"3578"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"4202","_from":"3581","_to":"3578"} +{"$label":"ACTS_IN","name":"Sarah Morton","type":"Role","_key":"4201","_from":"3580","_to":"3578"} +{"$label":"DIRECTED","_key":"4200","_from":"3579","_to":"3578"} +{"$label":"DIRECTED","_key":"89762","_from":"3579","_to":"53128"} +{"$label":"DIRECTED","_key":"72073","_from":"3579","_to":"43575"} +{"$label":"DIRECTED","_key":"35254","_from":"3579","_to":"24004"} +{"$label":"DIRECTED","_key":"35241","_from":"3579","_to":"24002"} +{"$label":"DIRECTED","_key":"21975","_from":"3579","_to":"16047"} +{"$label":"DIRECTED","_key":"16973","_from":"3579","_to":"12738"} +{"$label":"ACTS_IN","name":"Wall Street Belle","type":"Role","_key":"92062","_from":"3580","_to":"54312"} +{"$label":"ACTS_IN","name":"Lady Spencer","type":"Role","_key":"91532","_from":"3580","_to":"53952"} +{"$label":"ACTS_IN","name":"Rachel Bedford","type":"Role","_key":"91149","_from":"3580","_to":"53770"} +{"$label":"ACTS_IN","name":"Hermione","type":"Role","_key":"72076","_from":"3580","_to":"43575"} +{"$label":"ACTS_IN","name":"Dorrie","type":"Role","_key":"69211","_from":"3580","_to":"42325"} +{"$label":"ACTS_IN","name":"Mrs. Fitzwaring","type":"Role","_key":"56245","_from":"3580","_to":"35738"} +{"$label":"ACTS_IN","name":"Hohepriesterin","type":"Role","_key":"53475","_from":"3580","_to":"34540"} +{"$label":"ACTS_IN","name":"Bertrand Lannier","type":"Role","_key":"49708","_from":"3580","_to":"32530"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"49435","_from":"3580","_to":"32365"} +{"$label":"ACTS_IN","name":"Alice d'Abanville","type":"Role","_key":"40050","_from":"3580","_to":"27036"} +{"$label":"ACTS_IN","name":"Elma Turner","type":"Role","_key":"37822","_from":"3580","_to":"25637"} +{"$label":"ACTS_IN","name":"Marie Drillon","type":"Role","_key":"35242","_from":"3580","_to":"24002"} +{"$label":"ACTS_IN","name":"Consuella","type":"Role","_key":"34789","_from":"3580","_to":"23775"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"27533","_from":"3580","_to":"19754"} +{"$label":"ACTS_IN","name":"Milena Gardosh","type":"Role","_key":"25725","_from":"3580","_to":"18508"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"22076","_from":"3580","_to":"16102"} +{"$label":"ACTS_IN","name":"Mrs. Helen Grayle alias Velma","type":"Role","_key":"15846","_from":"3580","_to":"12058"} +{"$label":"ACTS_IN","name":"Alice Pollock","type":"Role","_key":"14384","_from":"3580","_to":"11124"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"13636","_from":"3580","_to":"10596"} +{"$label":"ACTS_IN","name":"Margaret Krusemark","type":"Role","_key":"7560","_from":"3580","_to":"6291"} +{"$label":"ACTS_IN","name":"Sylvie Jeanjacquot","type":"Role","_key":"104126","_from":"3581","_to":"61260"} +{"$label":"ACTS_IN","name":"G\u00e9raldine","type":"Role","_key":"101293","_from":"3581","_to":"59641"} +{"$label":"ACTS_IN","name":"Julie Pommeraye","type":"Role","_key":"100353","_from":"3581","_to":"59177"} +{"$label":"ACTS_IN","name":"Hannah Golda Stirn \/ Grinberg","type":"Role","_key":"96099","_from":"3581","_to":"56486"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"89760","_from":"3581","_to":"53128"} +{"$label":"ACTS_IN","name":"Gabrielle Deneige","type":"Role","_key":"37909","_from":"3581","_to":"25672"} +{"$label":"ACTS_IN","name":"Claire (Parc Monceau)","type":"Role","_key":"19892","_from":"3581","_to":"14635"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"16980","_from":"3581","_to":"12738"} +{"$label":"ACTS_IN","name":"Wing Commander Bentley","type":"Role","_key":"106017","_from":"3582","_to":"62417"} +{"$label":"ACTS_IN","name":"Michael Harbinson","type":"Role","_key":"98323","_from":"3582","_to":"57908"} +{"$label":"ACTS_IN","name":"Sardo Numspa","type":"Role","_key":"61165","_from":"3582","_to":"38653"} +{"$label":"ACTS_IN","name":"Benedict","type":"Role","_key":"54898","_from":"3582","_to":"35106"} +{"$label":"ACTS_IN","name":"Clemens","type":"Role","_key":"48106","_from":"3582","_to":"31620"} +{"$label":"ACTS_IN","name":"Moderator","type":"Role","_key":"40054","_from":"3582","_to":"27036"} +{"$label":"ACTS_IN","name":"Lord Raymond Stockbridge","type":"Role","_key":"36874","_from":"3582","_to":"24998"} +{"$label":"DIRECTED","_key":"54470","_from":"3582","_to":"34924"} +{"$label":"ACTS_IN","name":"Mademoiselle Bismuth","type":"Role","_key":"10746","_from":"3585","_to":"8522"} +{"$label":"ACTS_IN","name":"Dr. Julio Barbosa","type":"Role","_key":"4225","_from":"3601","_to":"3590"} +{"$label":"ACTS_IN","name":"Commodore (as Sir Charles Mendl)","type":"Role","_key":"4224","_from":"3600","_to":"3590"} +{"$label":"ACTS_IN","name":"Mr. Hopkins","type":"Role","_key":"4223","_from":"3599","_to":"3590"} +{"$label":"ACTS_IN","name":"Walter Beardsley","type":"Role","_key":"4222","_from":"3598","_to":"3590"} +{"$label":"ACTS_IN","name":"John Huberman","type":"Role","_key":"4221","_from":"3597","_to":"3590"} +{"$label":"ACTS_IN","name":"Emil Hupka","type":"Role","_key":"4220","_from":"3596","_to":"3590"} +{"$label":"ACTS_IN","name":"Joseph, Sebastian's Butler","type":"Role","_key":"4219","_from":"3595","_to":"3590"} +{"$label":"ACTS_IN","name":"Eric Mathis","type":"Role","_key":"4218","_from":"3594","_to":"3590"} +{"$label":"ACTS_IN","name":"Dr. Anderson","type":"Role","_key":"4217","_from":"3593","_to":"3590"} +{"$label":"ACTS_IN","name":"Madame Anna Sebastian","type":"Role","_key":"4216","_from":"3592","_to":"3590"} +{"$label":"ACTS_IN","name":"Captain Paul Prescott","type":"Role","_key":"4215","_from":"3591","_to":"3590"} +{"$label":"ACTS_IN","name":"Julius Caesar","type":"Role","_key":"114652","_from":"3591","_to":"67543"} +{"$label":"ACTS_IN","name":"Alonzo D. Emmerich","type":"Role","_key":"110615","_from":"3591","_to":"65354"} +{"$label":"ACTS_IN","name":"Uncle Willie","type":"Role","_key":"69780","_from":"3591","_to":"42588"} +{"$label":"ACTS_IN","name":"Ambassador Trentino of Sylvania","type":"Role","_key":"25379","_from":"3591","_to":"18294"} +{"$label":"ACTS_IN","name":"Cortot","type":"Role","_key":"27257","_from":"3595","_to":"19597"} +{"$label":"ACTS_IN","name":"Dr. Laradetti","type":"Role","_key":"94613","_from":"3597","_to":"55738"} +{"$label":"ACTS_IN","name":"Ralph Henry","type":"Role","_key":"111221","_from":"3598","_to":"65677"} +{"$label":"ACTS_IN","name":"Inspector Peterson","type":"Role","_key":"26838","_from":"3598","_to":"19283"} +{"$label":"DIRECTED","_key":"4242","_from":"3615","_to":"3604"} +{"$label":"ACTS_IN","name":"McKee","type":"Role","_key":"4240","_from":"3614","_to":"3604"} +{"$label":"ACTS_IN","name":"Nixon","type":"Role","_key":"4239","_from":"3613","_to":"3604"} +{"$label":"ACTS_IN","name":"Pederson","type":"Role","_key":"4238","_from":"3612","_to":"3604"} +{"$label":"ACTS_IN","name":"Rondell","type":"Role","_key":"4237","_from":"3611","_to":"3604"} +{"$label":"ACTS_IN","name":"Leppert","type":"Role","_key":"4236","_from":"3610","_to":"3604"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"4235","_from":"3609","_to":"3604"} +{"$label":"ACTS_IN","name":"Giolito","type":"Role","_key":"4234","_from":"3608","_to":"3604"} +{"$label":"ACTS_IN","name":"Levine","type":"Role","_key":"4233","_from":"3607","_to":"3604"} +{"$label":"ACTS_IN","name":"Bar Patron","type":"Role","_key":"4232","_from":"3606","_to":"3604"} +{"$label":"ACTS_IN","name":"Jailer","type":"Role","_key":"4231","_from":"3605","_to":"3604"} +{"$label":"DIRECTED","_key":"103917","_from":"3605","_to":"61126"} +{"$label":"DIRECTED","_key":"73084","_from":"3605","_to":"43971"} +{"$label":"DIRECTED","_key":"70598","_from":"3605","_to":"42954"} +{"$label":"DIRECTED","_key":"68980","_from":"3605","_to":"42233"} +{"$label":"DIRECTED","_key":"65215","_from":"3605","_to":"40495"} +{"$label":"DIRECTED","_key":"57516","_from":"3605","_to":"36442"} +{"$label":"DIRECTED","_key":"38781","_from":"3605","_to":"26203"} +{"$label":"DIRECTED","_key":"22219","_from":"3605","_to":"16182"} +{"$label":"DIRECTED","_key":"11056","_from":"3605","_to":"8747"} +{"$label":"DIRECTED","_key":"11042","_from":"3605","_to":"8736"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38523","_from":"3605","_to":"26023"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30173","_from":"3605","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26578","_from":"3605","_to":"19099"} +{"$label":"DIRECTED","_key":"121252","_from":"3606","_to":"71228"} +{"$label":"DIRECTED","_key":"70658","_from":"3606","_to":"42994"} +{"$label":"DIRECTED","_key":"68401","_from":"3606","_to":"41965"} +{"$label":"DIRECTED","_key":"52353","_from":"3606","_to":"34075"} +{"$label":"DIRECTED","_key":"43240","_from":"3606","_to":"28878"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"121438","_from":"3607","_to":"71342"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"17074","_from":"3607","_to":"12799"} +{"$label":"ACTS_IN","name":"Butch","type":"Role","_key":"38794","_from":"3608","_to":"26203"} +{"$label":"ACTS_IN","name":"Capt. Amy Jennings","type":"Role","_key":"117628","_from":"3609","_to":"69148"} +{"$label":"ACTS_IN","name":"Capt. Amy Jennings","type":"Role","_key":"59784","_from":"3609","_to":"37738"} +{"$label":"ACTS_IN","name":"Theresa Burnett","type":"Role","_key":"56179","_from":"3609","_to":"35707"} +{"$label":"ACTS_IN","name":"Raye","type":"Role","_key":"54673","_from":"3609","_to":"35009"} +{"$label":"ACTS_IN","name":"Theresa Burnett","type":"Role","_key":"51708","_from":"3609","_to":"33743"} +{"$label":"ACTS_IN","name":"Juanita Jordan","type":"Role","_key":"20203","_from":"3609","_to":"14813"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"16254","_from":"3609","_to":"12327"} +{"$label":"ACTS_IN","name":"Lt. Thomas","type":"Role","_key":"52596","_from":"3612","_to":"34175"} +{"$label":"ACTS_IN","name":"Department Store Manager","type":"Role","_key":"119294","_from":"3615","_to":"70090"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"93709","_from":"3615","_to":"55160"} +{"$label":"ACTS_IN","name":"Leonard Winesop","type":"Role","_key":"72649","_from":"3615","_to":"43777"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38525","_from":"3615","_to":"26023"} +{"$label":"ACTS_IN","name":"Trooper La Fong","type":"Role","_key":"6326","_from":"3615","_to":"5313"} +{"$label":"DIRECTED","_key":"103916","_from":"3615","_to":"61126"} +{"$label":"DIRECTED","_key":"72576","_from":"3615","_to":"43762"} +{"$label":"DIRECTED","_key":"70979","_from":"3615","_to":"43107"} +{"$label":"DIRECTED","_key":"70724","_from":"3615","_to":"43013"} +{"$label":"DIRECTED","_key":"69220","_from":"3615","_to":"42327"} +{"$label":"DIRECTED","_key":"54964","_from":"3615","_to":"35132"} +{"$label":"DIRECTED","_key":"52449","_from":"3615","_to":"34119"} +{"$label":"DIRECTED","_key":"50015","_from":"3615","_to":"32712"} +{"$label":"DIRECTED","_key":"49482","_from":"3615","_to":"32393"} +{"$label":"DIRECTED","_key":"38784","_from":"3615","_to":"26203"} +{"$label":"DIRECTED","_key":"14796","_from":"3615","_to":"11383"} +{"$label":"DIRECTED","_key":"14381","_from":"3615","_to":"11121"} +{"$label":"DIRECTED","_key":"9588","_from":"3615","_to":"7723"} +{"$label":"DIRECTED","_key":"6282","_from":"3615","_to":"5313"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"4254","_from":"3628","_to":"3616"} +{"$label":"ACTS_IN","name":"Lauretta, sorella di Pina","type":"Role","_key":"4253","_from":"3627","_to":"3616"} +{"$label":"ACTS_IN","name":"Il capitano Hartmann","type":"Role","_key":"4252","_from":"3626","_to":"3616"} +{"$label":"ACTS_IN","name":"Il desertore austriaco","type":"Role","_key":"4251","_from":"3625","_to":"3616"} +{"$label":"ACTS_IN","name":"Marcello, figlio di Pina","type":"Role","_key":"4250","_from":"3624","_to":"3616"} +{"$label":"ACTS_IN","name":"Marina Mari","type":"Role","_key":"4249","_from":"3623","_to":"3616"} +{"$label":"ACTS_IN","name":"Il maggiore Fritz Bergmann","type":"Role","_key":"4248","_from":"3622","_to":"3616"} +{"$label":"ACTS_IN","name":"Luigi Ferrari, alias Giorgio Manfredi","type":"Role","_key":"4247","_from":"3621","_to":"3616"} +{"$label":"ACTS_IN","name":"Francesco","type":"Role","_key":"4246","_from":"3620","_to":"3616"} +{"$label":"ACTS_IN","name":"Pina","type":"Role","_key":"4245","_from":"3619","_to":"3616"} +{"$label":"ACTS_IN","name":"Don Pietro Pellegrini","type":"Role","_key":"4244","_from":"3618","_to":"3616"} +{"$label":"DIRECTED","_key":"4243","_from":"3617","_to":"3616"} +{"$label":"DIRECTED","_key":"49697","_from":"3617","_to":"32523"} +{"$label":"DIRECTED","_key":"49678","_from":"3617","_to":"32506"} +{"$label":"DIRECTED","_key":"47818","_from":"3617","_to":"31481"} +{"$label":"DIRECTED","_key":"29874","_from":"3617","_to":"21131"} +{"$label":"DIRECTED","_key":"23230","_from":"3617","_to":"16852"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"49690","_from":"3623","_to":"32506"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30627","_from":"3623","_to":"21508"} +{"$label":"ACTS_IN","name":"Rosas Mutter","type":"Role","_key":"14576","_from":"3623","_to":"11233"} +{"$label":"ACTS_IN","name":"Prostituierte","type":"Role","_key":"14577","_from":"3628","_to":"11233"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"4273","_from":"3643","_to":"3629"} +{"$label":"ACTS_IN","name":"Kid in Car","type":"Role","_key":"4272","_from":"3642","_to":"3629"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"4271","_from":"3641","_to":"3629"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"4269","_from":"3640","_to":"3629"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"4268","_from":"3639","_to":"3629"} +{"$label":"ACTS_IN","name":"Young Man on Bus","type":"Role","_key":"4267","_from":"3638","_to":"3629"} +{"$label":"ACTS_IN","name":"Sun Green","type":"Role","_key":"4266","_from":"3637","_to":"3629"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"4265","_from":"3636","_to":"3629"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"4264","_from":"3635","_to":"3629"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"4263","_from":"3634","_to":"3629"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"4262","_from":"3633","_to":"3629"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"4260","_from":"3632","_to":"3629"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"4258","_from":"3631","_to":"3629"} +{"$label":"DIRECTED","_key":"4255","_from":"3630","_to":"3629"} +{"$label":"DIRECTED","_key":"69042","_from":"3630","_to":"42262"} +{"$label":"DIRECTED","_key":"48819","_from":"3630","_to":"32020"} +{"$label":"DIRECTED","_key":"34190","_from":"3630","_to":"23484"} +{"$label":"DIRECTED","_key":"13754","_from":"3630","_to":"10676"} +{"$label":"DIRECTED","_key":"10961","_from":"3630","_to":"8689"} +{"$label":"DIRECTED","_key":"10504","_from":"3630","_to":"8357"} +{"$label":"DIRECTED","_key":"5823","_from":"3630","_to":"4944"} +{"$label":"DIRECTED","_key":"4676","_from":"3630","_to":"3965"} +{"$label":"ACTS_IN","name":"Amos Dade","type":"Role","_key":"55814","_from":"3630","_to":"35512"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"40164","_from":"3630","_to":"27113"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"121035","_from":"3631","_to":"71082"} +{"$label":"ACTS_IN","name":"Sally Tyler \/ Cauffield","type":"Role","_key":"119108","_from":"3631","_to":"70011"} +{"$label":"ACTS_IN","name":"Linda Metzger","type":"Role","_key":"114450","_from":"3631","_to":"67420"} +{"$label":"ACTS_IN","name":"Leah Tilson","type":"Role","_key":"91401","_from":"3631","_to":"53909"} +{"$label":"ACTS_IN","name":"Ellen \u201eThe Lady\u201c","type":"Role","_key":"88050","_from":"3631","_to":"52269"} +{"$label":"ACTS_IN","name":"Nicole Horner","type":"Role","_key":"67112","_from":"3631","_to":"41420"} +{"$label":"ACTS_IN","name":"Miriam Ebbers","type":"Role","_key":"65381","_from":"3631","_to":"40552"} +{"$label":"ACTS_IN","name":"Claire Mattson","type":"Role","_key":"64272","_from":"3631","_to":"40078"} +{"$label":"ACTS_IN","name":"Dr. Elizabeth 'Beth' Halperin","type":"Role","_key":"61285","_from":"3631","_to":"38697"} +{"$label":"ACTS_IN","name":"Patrice Dellaplane","type":"Role","_key":"60936","_from":"3631","_to":"38504"} +{"$label":"ACTS_IN","name":"Jesse Huston","type":"Role","_key":"57356","_from":"3631","_to":"36367"} +{"$label":"ACTS_IN","name":"Gwen Dillon","type":"Role","_key":"57148","_from":"3631","_to":"36270"} +{"$label":"ACTS_IN","name":"Jesse Huston","type":"Role","_key":"55921","_from":"3631","_to":"35568"} +{"$label":"ACTS_IN","name":"Sara Toscani","type":"Role","_key":"53589","_from":"3631","_to":"34584"} +{"$label":"ACTS_IN","name":"Katharine Graham","type":"Role","_key":"51598","_from":"3631","_to":"33668"} +{"$label":"ACTS_IN","name":"Princess Bala (voice)","type":"Role","_key":"51495","_from":"3631","_to":"33574"} +{"$label":"ACTS_IN","name":"Olivia Mazursky","type":"Role","_key":"46778","_from":"3631","_to":"30852"} +{"$label":"ACTS_IN","name":"Jane Rockett","type":"Role","_key":"33164","_from":"3631","_to":"22969"} +{"$label":"ACTS_IN","name":"Dolores","type":"Role","_key":"30104","_from":"3631","_to":"21216"} +{"$label":"ACTS_IN","name":"Catherine Tramell","type":"Role","_key":"25723","_from":"3631","_to":"18508"} +{"$label":"ACTS_IN","name":"May Munro","type":"Role","_key":"22295","_from":"3631","_to":"16214"} +{"$label":"ACTS_IN","name":"Carly Norris","type":"Role","_key":"10308","_from":"3631","_to":"8203"} +{"$label":"ACTS_IN","name":"Lori","type":"Role","_key":"10234","_from":"3631","_to":"8163"} +{"$label":"ACTS_IN","name":"Ginger McKenna","type":"Role","_key":"6269","_from":"3631","_to":"5302"} +{"$label":"ACTS_IN","name":"Catherine Tramell","type":"Role","_key":"5093","_from":"3631","_to":"4328"} +{"$label":"ACTS_IN","name":"Laurel Hedare","type":"Role","_key":"4367","_from":"3631","_to":"3727"} +{"$label":"ACTS_IN","name":"Martha Baring","type":"Role","_key":"114433","_from":"3632","_to":"67412"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"110220","_from":"3632","_to":"65144"} +{"$label":"ACTS_IN","name":"Arvilla","type":"Role","_key":"109898","_from":"3632","_to":"64931"} +{"$label":"ACTS_IN","name":"Mrs. Wurtzel","type":"Role","_key":"108191","_from":"3632","_to":"63940"} +{"$label":"ACTS_IN","name":"Tamora","type":"Role","_key":"90041","_from":"3632","_to":"53259"} +{"$label":"ACTS_IN","name":"Mary MacGregor","type":"Role","_key":"71937","_from":"3632","_to":"43521"} +{"$label":"ACTS_IN","name":"Cora Papadakis","type":"Role","_key":"67383","_from":"3632","_to":"41519"} +{"$label":"ACTS_IN","name":"Dwan","type":"Role","_key":"65302","_from":"3632","_to":"40529"} +{"$label":"ACTS_IN","name":"Julie Nichols","type":"Role","_key":"54796","_from":"3632","_to":"35059"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"31202","_from":"3632","_to":"21839"} +{"$label":"ACTS_IN","name":"Doreen","type":"Role","_key":"27641","_from":"3632","_to":"19813"} +{"$label":"ACTS_IN","name":"Frances Farmer","type":"Role","_key":"27626","_from":"3632","_to":"19805"} +{"$label":"ACTS_IN","name":"Ann Talbot","type":"Role","_key":"19809","_from":"3632","_to":"14622"} +{"$label":"ACTS_IN","name":"Leigh Bowden","type":"Role","_key":"14167","_from":"3632","_to":"10963"} +{"$label":"ACTS_IN","name":"Older Sandra Bloom","type":"Role","_key":"7045","_from":"3632","_to":"5901"} +{"$label":"ACTS_IN","name":"Dr. Moss","type":"Role","_key":"55912","_from":"3633","_to":"35563"} +{"$label":"ACTS_IN","name":"Catherine Butterfield","type":"Role","_key":"22179","_from":"3633","_to":"16167"} +{"$label":"ACTS_IN","name":"Miss Greythorne","type":"Role","_key":"19974","_from":"3633","_to":"14703"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"4369","_from":"3633","_to":"3727"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"102968","_from":"3634","_to":"60564"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"94718","_from":"3634","_to":"55790"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"92880","_from":"3634","_to":"54784"} +{"$label":"ACTS_IN","name":"Tris","type":"Role","_key":"88525","_from":"3634","_to":"52467"} +{"$label":"ACTS_IN","name":"Alexis Dziena","type":"Role","_key":"50423","_from":"3634","_to":"32943"} +{"$label":"ACTS_IN","name":"Bobbi Prescott","type":"Role","_key":"66562","_from":"3637","_to":"41149"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"110930","_from":"3639","_to":"65527"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"103751","_from":"3639","_to":"61014"} +{"$label":"ACTS_IN","name":"Travis Cole","type":"Role","_key":"100897","_from":"3639","_to":"59482"} +{"$label":"ACTS_IN","name":"Dean Simmons","type":"Role","_key":"90654","_from":"3639","_to":"53522"} +{"$label":"ACTS_IN","name":"Bryce Arbogast","type":"Role","_key":"87945","_from":"3639","_to":"52222"} +{"$label":"ACTS_IN","name":"Lou Landers","type":"Role","_key":"72756","_from":"3639","_to":"43830"} +{"$label":"ACTS_IN","name":"Lieutenant Meyerson","type":"Role","_key":"72425","_from":"3639","_to":"43717"} +{"$label":"ACTS_IN","name":"Mitch Gibson","type":"Role","_key":"63261","_from":"3639","_to":"39660"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"58165","_from":"3639","_to":"36795"} +{"$label":"ACTS_IN","name":"Shooter McGavin","type":"Role","_key":"55058","_from":"3639","_to":"35171"} +{"$label":"ACTS_IN","name":"Wilson Croft","type":"Role","_key":"54790","_from":"3639","_to":"35058"} +{"$label":"ACTS_IN","name":"Kerr","type":"Role","_key":"52313","_from":"3639","_to":"34057"} +{"$label":"ACTS_IN","name":"Mr. Stifler","type":"Role","_key":"48758","_from":"3639","_to":"31982"} +{"$label":"ACTS_IN","name":"Mr. Stifler","type":"Role","_key":"48734","_from":"3639","_to":"31964"} +{"$label":"ACTS_IN","name":"Senator Dixon","type":"Role","_key":"36508","_from":"3639","_to":"24754"} +{"$label":"ACTS_IN","name":"Louie Jeffries","type":"Role","_key":"25388","_from":"3639","_to":"18305"} +{"$label":"ACTS_IN","name":"Roger McManus","type":"Role","_key":"23683","_from":"3639","_to":"17164"} +{"$label":"ACTS_IN","name":"Stewart Gleick","type":"Role","_key":"17806","_from":"3639","_to":"13273"} +{"$label":"ACTS_IN","name":"Darryl Dickinson","type":"Role","_key":"13648","_from":"3639","_to":"10603"} +{"$label":"ACTS_IN","name":"Tappy Tibbons","type":"Role","_key":"7671","_from":"3639","_to":"6372"} +{"$label":"ACTS_IN","name":"Irving Klaw","type":"Role","_key":"104297","_from":"3640","_to":"61366"} +{"$label":"ACTS_IN","name":"Bad Eye","type":"Role","_key":"56831","_from":"3640","_to":"36088"} +{"$label":"ACTS_IN","name":"Ace - Pool Player","type":"Role","_key":"55590","_from":"3640","_to":"35397"} +{"$label":"ACTS_IN","name":"George Higgins","type":"Role","_key":"48578","_from":"3640","_to":"31873"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"17085","_from":"3640","_to":"12799"} +{"$label":"ACTS_IN","name":"Ivan Dubov","type":"Role","_key":"8868","_from":"3640","_to":"7192"} +{"$label":"ACTS_IN","name":"William Harding","type":"Role","_key":"116716","_from":"3641","_to":"68707"} +{"$label":"ACTS_IN","name":"Scooby Livingston","type":"Role","_key":"109478","_from":"3641","_to":"64667"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"104210","_from":"3641","_to":"61310"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"101685","_from":"3641","_to":"59845"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"56842","_from":"3641","_to":"36088"} +{"$label":"ACTS_IN","name":"Man Behind the Gate","type":"Role","_key":"111676","_from":"3643","_to":"65929"} +{"$label":"ACTS_IN","name":"Craig McManus","type":"Role","_key":"67021","_from":"3643","_to":"41373"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"59015","_from":"3643","_to":"37245"} +{"$label":"DIRECTED","_key":"105367","_from":"3643","_to":"61992"} +{"$label":"DIRECTED","_key":"26627","_from":"3643","_to":"19138"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4294","_from":"3661","_to":"3644"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4293","_from":"3660","_to":"3644"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4292","_from":"3659","_to":"3644"} +{"$label":"ACTS_IN","name":"Taxidriver","type":"Role","_key":"4291","_from":"3645","_to":"3644"} +{"$label":"ACTS_IN","name":"Farmor","type":"Role","_key":"4290","_from":"3658","_to":"3644"} +{"$label":"ACTS_IN","name":"Farfar","type":"Role","_key":"4289","_from":"3657","_to":"3644"} +{"$label":"ACTS_IN","name":"Birthe","type":"Role","_key":"4288","_from":"3656","_to":"3644"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"4287","_from":"3655","_to":"3644"} +{"$label":"ACTS_IN","name":"Receptionisten","type":"Role","_key":"4286","_from":"3654","_to":"3644"} +{"$label":"ACTS_IN","name":"Gbatokai","type":"Role","_key":"4285","_from":"3653","_to":"3644"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"4284","_from":"3652","_to":"3644"} +{"$label":"ACTS_IN","name":"Toastmasteren","type":"Role","_key":"4283","_from":"3651","_to":"3644"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"4282","_from":"3650","_to":"3644"} +{"$label":"ACTS_IN","name":"Mette","type":"Role","_key":"4281","_from":"3649","_to":"3644"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"4277","_from":"3648","_to":"3644"} +{"$label":"ACTS_IN","name":"Faderen Helge Klingenfeldt","type":"Role","_key":"4276","_from":"3647","_to":"3644"} +{"$label":"ACTS_IN","name":"Christian Klingenfeldt","type":"Role","_key":"4275","_from":"3646","_to":"3644"} +{"$label":"DIRECTED","_key":"4274","_from":"3645","_to":"3644"} +{"$label":"DIRECTED","_key":"106098","_from":"3645","_to":"62476"} +{"$label":"DIRECTED","_key":"91490","_from":"3645","_to":"53938"} +{"$label":"DIRECTED","_key":"66684","_from":"3645","_to":"41201"} +{"$label":"ACTS_IN","name":"Tonny","type":"Role","_key":"106666","_from":"3646","_to":"62859"} +{"$label":"ACTS_IN","name":"Mikael","type":"Role","_key":"106059","_from":"3646","_to":"62457"} +{"$label":"ACTS_IN","name":"Jesper","type":"Role","_key":"89378","_from":"3646","_to":"52901"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"61483","_from":"3646","_to":"38782"} +{"$label":"ACTS_IN","name":"Harry Hass","type":"Role","_key":"51319","_from":"3646","_to":"33466"} +{"$label":"ACTS_IN","name":"Dr. Martin Fisher","type":"Role","_key":"47171","_from":"3646","_to":"31101"} +{"$label":"ACTS_IN","name":"Jonas Skarssen","type":"Role","_key":"35140","_from":"3646","_to":"23951"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"28844","_from":"3646","_to":"20617"} +{"$label":"ACTS_IN","name":"Dr Robert Zachman","type":"Role","_key":"27499","_from":"3646","_to":"19733"} +{"$label":"ACTS_IN","name":"Mikhail Belicoff","type":"Role","_key":"14365","_from":"3646","_to":"11114"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"11796","_from":"3646","_to":"9254"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"106480","_from":"3648","_to":"62730"} +{"$label":"ACTS_IN","name":"Per","type":"Role","_key":"35407","_from":"3648","_to":"24090"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"106078","_from":"3649","_to":"62463"} +{"$label":"ACTS_IN","name":"Torkilds Mor","type":"Role","_key":"61495","_from":"3649","_to":"38782"} +{"$label":"ACTS_IN","name":"Doktor Zerlang","type":"Role","_key":"106467","_from":"3654","_to":"62723"} +{"$label":"ACTS_IN","name":"Frederik","type":"Role","_key":"106062","_from":"3654","_to":"62457"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"106052","_from":"3654","_to":"62450"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"68470","_from":"3654","_to":"42002"} +{"$label":"DIRECTED","_key":"4306","_from":"3670","_to":"3662"} +{"$label":"ACTS_IN","name":"Dallas Coleman","type":"Role","_key":"4303","_from":"3669","_to":"3662"} +{"$label":"ACTS_IN","name":"Ally Loman","type":"Role","_key":"4302","_from":"3668","_to":"3662"} +{"$label":"ACTS_IN","name":"Evan Baxter","type":"Role","_key":"4301","_from":"3667","_to":"3662"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"4300","_from":"3666","_to":"3662"} +{"$label":"ACTS_IN","name":"Susan Ortega","type":"Role","_key":"4299","_from":"3665","_to":"3662"} +{"$label":"ACTS_IN","name":"Jack Baylor","type":"Role","_key":"4298","_from":"3664","_to":"3662"} +{"$label":"ACTS_IN","name":"Grace Connelly","type":"Role","_key":"4297","_from":"3663","_to":"3662"} +{"$label":"ACTS_IN","name":"Nina Borowski","type":"Role","_key":"111183","_from":"3663","_to":"65664"} +{"$label":"ACTS_IN","name":"Jennifer Grogan","type":"Role","_key":"99553","_from":"3663","_to":"58688"} +{"$label":"ACTS_IN","name":"Emily Poule","type":"Role","_key":"89945","_from":"3663","_to":"53214"} +{"$label":"ACTS_IN","name":"Tory Reding","type":"Role","_key":"72121","_from":"3663","_to":"43597"} +{"$label":"ACTS_IN","name":"Renee Donati Fitzpatrick","type":"Role","_key":"69419","_from":"3663","_to":"42427"} +{"$label":"ACTS_IN","name":"Annie Hughes (voice)","type":"Role","_key":"62933","_from":"3663","_to":"39525"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"61508","_from":"3663","_to":"38795"} +{"$label":"ACTS_IN","name":"Justine Last","type":"Role","_key":"58595","_from":"3663","_to":"37025"} +{"$label":"ACTS_IN","name":"Brooke Meyers","type":"Role","_key":"56470","_from":"3663","_to":"35880"} +{"$label":"ACTS_IN","name":"Kate Mosley","type":"Role","_key":"53712","_from":"3663","_to":"34635"} +{"$label":"ACTS_IN","name":"Lucinda Harris","type":"Role","_key":"51935","_from":"3663","_to":"33872"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"51929","_from":"3663","_to":"33869"} +{"$label":"ACTS_IN","name":"Polly Prince","type":"Role","_key":"40830","_from":"3663","_to":"27489"} +{"$label":"ACTS_IN","name":"Sarah Huttinger","type":"Role","_key":"23678","_from":"3663","_to":"17164"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"13656","_from":"3663","_to":"10605"} +{"$label":"DIRECTED","_key":"36685","_from":"3663","_to":"24867"} +{"$label":"ACTS_IN","name":"Vernon Maxwell","type":"Role","_key":"111886","_from":"3664","_to":"66047"} +{"$label":"ACTS_IN","name":"Captain Smith","type":"Role","_key":"102954","_from":"3664","_to":"60559"} +{"$label":"ACTS_IN","name":"Detective Mulvahill","type":"Role","_key":"94007","_from":"3664","_to":"55360"} +{"$label":"ACTS_IN","name":"Father James","type":"Role","_key":"62920","_from":"3664","_to":"39521"} +{"$label":"ACTS_IN","name":"Lance Strictland","type":"Role","_key":"60187","_from":"3664","_to":"37970"} +{"$label":"ACTS_IN","name":"Father Callaway","type":"Role","_key":"60148","_from":"3664","_to":"37948"} +{"$label":"ACTS_IN","name":"Mr. Randy","type":"Role","_key":"54389","_from":"3664","_to":"34876"} +{"$label":"ACTS_IN","name":"Roman","type":"Role","_key":"48268","_from":"3664","_to":"31704"} +{"$label":"ACTS_IN","name":"Sydney","type":"Role","_key":"47880","_from":"3664","_to":"31513"} +{"$label":"ACTS_IN","name":"Capt. William Diel","type":"Role","_key":"36254","_from":"3664","_to":"24600"} +{"$label":"ACTS_IN","name":"Eugene Kalb","type":"Role","_key":"16415","_from":"3664","_to":"12420"} +{"$label":"ACTS_IN","name":"Alvin MacCarron","type":"Role","_key":"12162","_from":"3664","_to":"9529"} +{"$label":"ACTS_IN","name":"Tom Edison Senior","type":"Role","_key":"6610","_from":"3664","_to":"5579"} +{"$label":"ACTS_IN","name":"Jimmy Gator","type":"Role","_key":"4584","_from":"3664","_to":"3908"} +{"$label":"ACTS_IN","name":"Elizabeth Wintern","type":"Role","_key":"47307","_from":"3665","_to":"31161"} +{"$label":"ACTS_IN","name":"Claudine","type":"Role","_key":"67913","_from":"3666","_to":"41725"} +{"$label":"ACTS_IN","name":"Sgt. Burch","type":"Role","_key":"60042","_from":"3666","_to":"37890"} +{"$label":"ACTS_IN","name":"Chessy, la bonne des Parker","type":"Role","_key":"57144","_from":"3666","_to":"36269"} +{"$label":"ACTS_IN","name":"Bobbie","type":"Role","_key":"31294","_from":"3666","_to":"21887"} +{"$label":"ACTS_IN","name":"The Mayor of Whoville (voice)","type":"Role","_key":"88797","_from":"3667","_to":"52615"} +{"$label":"ACTS_IN","name":"Tesio","type":"Role","_key":"72597","_from":"3667","_to":"43769"} +{"$label":"ACTS_IN","name":"Maxwell Smart","type":"Role","_key":"71394","_from":"3667","_to":"43300"} +{"$label":"ACTS_IN","name":"Brick Tamland","type":"Role","_key":"58646","_from":"3667","_to":"37052"} +{"$label":"ACTS_IN","name":"Officer Sherman","type":"Role","_key":"57659","_from":"3667","_to":"36500"} +{"$label":"ACTS_IN","name":"Uncle Arthur","type":"Role","_key":"56020","_from":"3667","_to":"35606"} +{"$label":"ACTS_IN","name":"Brick Tamland","type":"Role","_key":"50547","_from":"3667","_to":"33010"} +{"$label":"ACTS_IN","name":"Hammy (voice)","type":"Role","_key":"47099","_from":"3667","_to":"31057"} +{"$label":"ACTS_IN","name":"Dan Burns","type":"Role","_key":"45928","_from":"3667","_to":"30370"} +{"$label":"ACTS_IN","name":"Andy Stitzer","type":"Role","_key":"45315","_from":"3667","_to":"30057"} +{"$label":"ACTS_IN","name":"Evan Baxter","type":"Role","_key":"22759","_from":"3667","_to":"16511"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"9111","_from":"3667","_to":"7360"} +{"$label":"ACTS_IN","name":"Mrs. Pearlman","type":"Role","_key":"116174","_from":"3668","_to":"68405"} +{"$label":"ACTS_IN","name":"Ellita Sanchez","type":"Role","_key":"102529","_from":"3668","_to":"60318"} +{"$label":"ACTS_IN","name":"Judge Abramovitz","type":"Role","_key":"68123","_from":"3668","_to":"41844"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"61552","_from":"3668","_to":"38803"} +{"$label":"ACTS_IN","name":"Adriana Cruz","type":"Role","_key":"43350","_from":"3668","_to":"28963"} +{"$label":"ACTS_IN","name":"Ginny","type":"Role","_key":"27620","_from":"3668","_to":"19802"} +{"$label":"ACTS_IN","name":"Dr. Fayn","type":"Role","_key":"13191","_from":"3668","_to":"10277"} +{"$label":"ACTS_IN","name":"Deke","type":"Role","_key":"108506","_from":"3669","_to":"64131"} +{"$label":"DIRECTED","_key":"62531","_from":"3670","_to":"39365"} +{"$label":"DIRECTED","_key":"59987","_from":"3670","_to":"37868"} +{"$label":"DIRECTED","_key":"53153","_from":"3670","_to":"34385"} +{"$label":"DIRECTED","_key":"26745","_from":"3670","_to":"19221"} +{"$label":"DIRECTED","_key":"25231","_from":"3670","_to":"18207"} +{"$label":"DIRECTED","_key":"22758","_from":"3670","_to":"16511"} +{"$label":"DIRECTED","_key":"14406","_from":"3670","_to":"11130"} +{"$label":"ACTS_IN","name":"Young 'Fat' Moe Gelly","type":"Role","_key":"4325","_from":"3688","_to":"3671"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"4324","_from":"3687","_to":"3671"} +{"$label":"ACTS_IN","name":"Dominic","type":"Role","_key":"4323","_from":"3686","_to":"3671"} +{"$label":"ACTS_IN","name":"Young Patsy","type":"Role","_key":"4322","_from":"3685","_to":"3671"} +{"$label":"ACTS_IN","name":"Young Cockeye","type":"Role","_key":"4321","_from":"3684","_to":"3671"} +{"$label":"ACTS_IN","name":"Young Max \/ David Bailey","type":"Role","_key":"4320","_from":"3683","_to":"3671"} +{"$label":"ACTS_IN","name":"Young Noodles","type":"Role","_key":"4319","_from":"3682","_to":"3671"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"4318","_from":"3681","_to":"3671"} +{"$label":"ACTS_IN","name":"Philip 'Cockeye' Stein","type":"Role","_key":"4317","_from":"3680","_to":"3671"} +{"$label":"ACTS_IN","name":"'Fat' Moe Gelly","type":"Role","_key":"4315","_from":"3679","_to":"3671"} +{"$label":"ACTS_IN","name":"Frankie Minaldi","type":"Role","_key":"4314","_from":"3678","_to":"3671"} +{"$label":"ACTS_IN","name":"Patrick 'Patsy' Goldberg","type":"Role","_key":"4313","_from":"3677","_to":"3671"} +{"$label":"ACTS_IN","name":"James Conway O'Donnell","type":"Role","_key":"4312","_from":"3676","_to":"3671"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"4311","_from":"3675","_to":"3671"} +{"$label":"ACTS_IN","name":"Deborah Gelly","type":"Role","_key":"4310","_from":"3674","_to":"3671"} +{"$label":"ACTS_IN","name":"Maximilian 'Max' Bercovicz","type":"Role","_key":"4309","_from":"3673","_to":"3671"} +{"$label":"DIRECTED","_key":"4307","_from":"3672","_to":"3671"} +{"$label":"DIRECTED","_key":"66697","_from":"3672","_to":"41205"} +{"$label":"DIRECTED","_key":"54092","_from":"3672","_to":"34779"} +{"$label":"DIRECTED","_key":"11183","_from":"3672","_to":"8850"} +{"$label":"DIRECTED","_key":"5387","_from":"3672","_to":"4577"} +{"$label":"DIRECTED","_key":"5010","_from":"3672","_to":"4257"} +{"$label":"DIRECTED","_key":"4608","_from":"3672","_to":"3929"} +{"$label":"DIRECTED","_key":"4596","_from":"3672","_to":"3919"} +{"$label":"ACTS_IN","name":"Gabriel Caine","type":"Role","_key":"118890","_from":"3673","_to":"69879"} +{"$label":"ACTS_IN","name":"Bill Wilson","type":"Role","_key":"105654","_from":"3673","_to":"62188"} +{"$label":"ACTS_IN","name":"Pops","type":"Role","_key":"102292","_from":"3673","_to":"60192"} +{"$label":"ACTS_IN","name":"Detective Lt. John Moss, NYPD","type":"Role","_key":"69527","_from":"3673","_to":"42467"} +{"$label":"ACTS_IN","name":"The Evil Falcon (voice)","type":"Role","_key":"67173","_from":"3673","_to":"41441"} +{"$label":"ACTS_IN","name":"Richard 'Dick' Morrison","type":"Role","_key":"64027","_from":"3673","_to":"39968"} +{"$label":"ACTS_IN","name":"Joseph Scott","type":"Role","_key":"63343","_from":"3673","_to":"39698"} +{"$label":"ACTS_IN","name":"Alan Mann","type":"Role","_key":"62751","_from":"3673","_to":"39448"} +{"$label":"ACTS_IN","name":"Frankie McVeigh","type":"Role","_key":"61863","_from":"3673","_to":"38938"} +{"$label":"ACTS_IN","name":"Jack Crow","type":"Role","_key":"58331","_from":"3673","_to":"36874"} +{"$label":"ACTS_IN","name":"Vaughn Stevens","type":"Role","_key":"56112","_from":"3673","_to":"35670"} +{"$label":"ACTS_IN","name":"Dr. Harvey Mandrake","type":"Role","_key":"54719","_from":"3673","_to":"35030"} +{"$label":"ACTS_IN","name":"Dr. Raymond Turner","type":"Role","_key":"50022","_from":"3673","_to":"32743"} +{"$label":"ACTS_IN","name":"Richard Boyle","type":"Role","_key":"41685","_from":"3673","_to":"27974"} +{"$label":"ACTS_IN","name":"Cleve","type":"Role","_key":"33130","_from":"3673","_to":"22943"} +{"$label":"ACTS_IN","name":"Tommy Athens","type":"Role","_key":"32586","_from":"3673","_to":"22640"} +{"$label":"ACTS_IN","name":"Father McFeely","type":"Role","_key":"30453","_from":"3673","_to":"21400"} +{"$label":"ACTS_IN","name":"Ned Trent","type":"Role","_key":"22296","_from":"3673","_to":"16214"} +{"$label":"ACTS_IN","name":"General Hein (voice)","type":"Role","_key":"18434","_from":"3673","_to":"13659"} +{"$label":"ACTS_IN","name":"Jack Benyon","type":"Role","_key":"18181","_from":"3673","_to":"13490"} +{"$label":"ACTS_IN","name":"Mr. Lisbon","type":"Role","_key":"13358","_from":"3673","_to":"10404"} +{"$label":"ACTS_IN","name":"Max Renn","type":"Role","_key":"9878","_from":"3673","_to":"7919"} +{"$label":"ACTS_IN","name":"Michael Kitz","type":"Role","_key":"8269","_from":"3673","_to":"6784"} +{"$label":"ACTS_IN","name":"Lester Diamond","type":"Role","_key":"6271","_from":"3673","_to":"5302"} +{"$label":"ACTS_IN","name":"Jeannine Pratt","type":"Role","_key":"109656","_from":"3674","_to":"64764"} +{"$label":"ACTS_IN","name":"Kristen 'Kristy' Briggs","type":"Role","_key":"91198","_from":"3674","_to":"53786"} +{"$label":"ACTS_IN","name":"Mrs. Berman","type":"Role","_key":"52583","_from":"3674","_to":"34172"} +{"$label":"ACTS_IN","name":"Donna McCarty","type":"Role","_key":"6102","_from":"3674","_to":"5178"} +{"$label":"ACTS_IN","name":"Nora Clayton","type":"Role","_key":"90850","_from":"3675","_to":"53607"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"70407","_from":"3675","_to":"42875"} +{"$label":"ACTS_IN","name":"Christian Rudd","type":"Role","_key":"10552","_from":"3675","_to":"8385"} +{"$label":"ACTS_IN","name":"Cpl. Chuck 'Stretch' Sitarski","type":"Role","_key":"70383","_from":"3676","_to":"42868"} +{"$label":"ACTS_IN","name":"Colonel Nathan Fitzgerald","type":"Role","_key":"67127","_from":"3676","_to":"41425"} +{"$label":"ACTS_IN","name":"George Berger","type":"Role","_key":"64852","_from":"3676","_to":"40341"} +{"$label":"ACTS_IN","name":"Xander Drax","type":"Role","_key":"57197","_from":"3676","_to":"36287"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"55662","_from":"3676","_to":"35434"} +{"$label":"ACTS_IN","name":"John Finnegan","type":"Role","_key":"53979","_from":"3676","_to":"34723"} +{"$label":"ACTS_IN","name":"Jack Fuller Sr.","type":"Role","_key":"52132","_from":"3676","_to":"33981"} +{"$label":"ACTS_IN","name":"Billy Burke","type":"Role","_key":"31980","_from":"3676","_to":"22296"} +{"$label":"ACTS_IN","name":"Critical Bill","type":"Role","_key":"5066","_from":"3676","_to":"4307"} +{"$label":"ACTS_IN","name":"Oscar Henner","type":"Role","_key":"118100","_from":"3678","_to":"69414"} +{"$label":"ACTS_IN","name":"Nicky Cerone","type":"Role","_key":"115993","_from":"3678","_to":"68313"} +{"$label":"ACTS_IN","name":"Simon Wilder","type":"Role","_key":"108525","_from":"3678","_to":"64146"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"97950","_from":"3678","_to":"57685"} +{"$label":"ACTS_IN","name":"Mr. Big","type":"Role","_key":"93365","_from":"3678","_to":"54996"} +{"$label":"ACTS_IN","name":"Vincent 'Vinny' Gambini","type":"Role","_key":"62890","_from":"3678","_to":"39510"} +{"$label":"ACTS_IN","name":"Joe Waters","type":"Role","_key":"52299","_from":"3678","_to":"34051"} +{"$label":"ACTS_IN","name":"Carmine","type":"Role","_key":"14222","_from":"3678","_to":"10992"} +{"$label":"ACTS_IN","name":"Joey La Motta","type":"Role","_key":"13958","_from":"3678","_to":"10823"} +{"$label":"ACTS_IN","name":"Joseph Palmi","type":"Role","_key":"12208","_from":"3678","_to":"9562"} +{"$label":"ACTS_IN","name":"Leo Getz","type":"Role","_key":"11259","_from":"3678","_to":"8897"} +{"$label":"ACTS_IN","name":"Leo Getz","type":"Role","_key":"11252","_from":"3678","_to":"8895"} +{"$label":"ACTS_IN","name":"Leo Getz","type":"Role","_key":"11234","_from":"3678","_to":"8884"} +{"$label":"ACTS_IN","name":"David Ferrie","type":"Role","_key":"9671","_from":"3678","_to":"7763"} +{"$label":"ACTS_IN","name":"Harry Lime","type":"Role","_key":"9094","_from":"3678","_to":"7357"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"9078","_from":"3678","_to":"7343"} +{"$label":"ACTS_IN","name":"Tommy DeVito","type":"Role","_key":"9026","_from":"3678","_to":"7306"} +{"$label":"ACTS_IN","name":"Nicky Santoro","type":"Role","_key":"6270","_from":"3678","_to":"5302"} +{"$label":"ACTS_IN","name":"Det. Torrance","type":"Role","_key":"113253","_from":"3680","_to":"66724"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"104874","_from":"3680","_to":"61706"} +{"$label":"ACTS_IN","name":"Sammy Gravano","type":"Role","_key":"101772","_from":"3680","_to":"59894"} +{"$label":"ACTS_IN","name":"Richie Madano","type":"Role","_key":"99816","_from":"3680","_to":"58881"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"93428","_from":"3680","_to":"55015"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"63307","_from":"3680","_to":"39679"} +{"$label":"ACTS_IN","name":"Det. Chuck Fowler","type":"Role","_key":"63023","_from":"3680","_to":"39557"} +{"$label":"ACTS_IN","name":"Boyle","type":"Role","_key":"58576","_from":"3680","_to":"37011"} +{"$label":"ACTS_IN","name":"Special Agent Ernest Paxton","type":"Role","_key":"56951","_from":"3680","_to":"36143"} +{"$label":"ACTS_IN","name":"William Cochran","type":"Role","_key":"52756","_from":"3680","_to":"34229"} +{"$label":"ACTS_IN","name":"Flattop","type":"Role","_key":"50242","_from":"3680","_to":"32833"} +{"$label":"ACTS_IN","name":"Arthur Kressler","type":"Role","_key":"34804","_from":"3680","_to":"23785"} +{"$label":"ACTS_IN","name":"Frank Parks","type":"Role","_key":"27453","_from":"3680","_to":"19709"} +{"$label":"ACTS_IN","name":"Ronnie White","type":"Role","_key":"18104","_from":"3680","_to":"13441"} +{"$label":"ACTS_IN","name":"Sheriff John Quincy Wydel","type":"Role","_key":"14994","_from":"3680","_to":"11531"} +{"$label":"ACTS_IN","name":"Franchise","type":"Role","_key":"5064","_from":"3680","_to":"4307"} +{"$label":"ACTS_IN","name":"Evelle Snoats","type":"Role","_key":"4882","_from":"3680","_to":"4171"} +{"$label":"ACTS_IN","name":"General Noriega","type":"Role","_key":"119007","_from":"3681","_to":"69951"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"118104","_from":"3681","_to":"69414"} +{"$label":"ACTS_IN","name":"Anthony Montelli","type":"Role","_key":"108232","_from":"3681","_to":"63963"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"105121","_from":"3681","_to":"61864"} +{"$label":"ACTS_IN","name":"Big Joe","type":"Role","_key":"91460","_from":"3681","_to":"53932"} +{"$label":"ACTS_IN","name":"J.T. Bates","type":"Role","_key":"63306","_from":"3681","_to":"39679"} +{"$label":"ACTS_IN","name":"Vito Graziosi","type":"Role","_key":"61293","_from":"3681","_to":"38698"} +{"$label":"ACTS_IN","name":"Pig Pen \/ Love Machine","type":"Role","_key":"54840","_from":"3681","_to":"35082"} +{"$label":"ACTS_IN","name":"Vincent Domenici","type":"Role","_key":"45987","_from":"3681","_to":"30398"} +{"$label":"ACTS_IN","name":"Sherman","type":"Role","_key":"14144","_from":"3681","_to":"10947"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12781","_from":"3681","_to":"9974"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12765","_from":"3681","_to":"9966"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12717","_from":"3681","_to":"9935"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12654","_from":"3681","_to":"9890"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12638","_from":"3681","_to":"9878"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"12185","_from":"3681","_to":"9548"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"6508","_from":"3681","_to":"5505"} +{"$label":"ACTS_IN","name":"Dr. Bridget Thorne","type":"Role","_key":"118436","_from":"3687","_to":"69627"} +{"$label":"ACTS_IN","name":"Anna Costanzo","type":"Role","_key":"105496","_from":"3687","_to":"62082"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"58762","_from":"3687","_to":"37115"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin Spielwarenladen","type":"Role","_key":"4353","_from":"3717","_to":"3689"} +{"$label":"ACTS_IN","name":"Professor Musikhochschule","type":"Role","_key":"4352","_from":"3716","_to":"3689"} +{"$label":"ACTS_IN","name":"Professorin Musikhochschule","type":"Role","_key":"4351","_from":"3715","_to":"3689"} +{"$label":"ACTS_IN","name":"Giora Feidman","type":"Role","_key":"4350","_from":"3714","_to":"3689"} +{"$label":"ACTS_IN","name":"Mitarbeiterin Musikhochschule","type":"Role","_key":"4349","_from":"3713","_to":"3689"} +{"$label":"ACTS_IN","name":"Konzertbesucherin","type":"Role","_key":"4348","_from":"3712","_to":"3689"} +{"$label":"ACTS_IN","name":"Mitarbeiter Musikhochschule","type":"Role","_key":"4347","_from":"3711","_to":"3689"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin Musikhochschule","type":"Role","_key":"4346","_from":"3710","_to":"3689"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"4345","_from":"3709","_to":"3689"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"4344","_from":"3708","_to":"3689"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"4343","_from":"3707","_to":"3689"} +{"$label":"ACTS_IN","name":"Clarissa als Kind","type":"Role","_key":"4342","_from":"3706","_to":"3689"} +{"$label":"ACTS_IN","name":"Martin als Kind","type":"Role","_key":"4341","_from":"3705","_to":"3689"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"4340","_from":"3704","_to":"3689"} +{"$label":"ACTS_IN","name":"Bankbeamter","type":"Role","_key":"4339","_from":"3703","_to":"3689"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Mertens","type":"Role","_key":"4338","_from":"3702","_to":"3689"} +{"$label":"ACTS_IN","name":"Herr G\u00e4rtner","type":"Role","_key":"4337","_from":"3701","_to":"3689"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"4336","_from":"3700","_to":"3689"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"4335","_from":"3699","_to":"3689"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"4334","_from":"3698","_to":"3689"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"4333","_from":"3697","_to":"3689"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"4332","_from":"3696","_to":"3689"} +{"$label":"ACTS_IN","name":"Clarissa","type":"Role","_key":"4331","_from":"3695","_to":"3689"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"4330","_from":"3694","_to":"3689"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"4329","_from":"3693","_to":"3689"} +{"$label":"ACTS_IN","name":"Lara als Kind","type":"Role","_key":"4328","_from":"3692","_to":"3689"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"4327","_from":"3691","_to":"3689"} +{"$label":"DIRECTED","_key":"4326","_from":"3690","_to":"3689"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66588","_from":"3690","_to":"41163"} +{"$label":"DIRECTED","_key":"51320","_from":"3690","_to":"33469"} +{"$label":"DIRECTED","_key":"14091","_from":"3690","_to":"10923"} +{"$label":"DIRECTED","_key":"9420","_from":"3690","_to":"7605"} +{"$label":"ACTS_IN","name":"Irene Thompson","type":"Role","_key":"118001","_from":"3691","_to":"69361"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"103999","_from":"3691","_to":"61187"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Quoirez dite Sagan","type":"Role","_key":"100781","_from":"3691","_to":"59413"} +{"$label":"ACTS_IN","name":"Segment \"Lucie\"","type":"Role","_key":"21034","_from":"3691","_to":"15398"} +{"$label":"ACTS_IN","name":"M\u00f4mone","type":"Role","_key":"13016","_from":"3691","_to":"10151"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"9426","_from":"3691","_to":"7605"} +{"$label":"ACTS_IN","name":"(France)","type":"Role","_key":"16703","_from":"3694","_to":"12595"} +{"$label":"ACTS_IN","name":"Gabrielle Hackmann","type":"Role","_key":"53822","_from":"3695","_to":"34675"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"30784","_from":"3695","_to":"21582"} +{"$label":"ACTS_IN","name":"Frida","type":"Role","_key":"28411","_from":"3695","_to":"20322"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"37309","_from":"3696","_to":"25277"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"22080","_from":"3696","_to":"16102"} +{"$label":"ACTS_IN","name":"S\u00fc\u00dfkind","type":"Role","_key":"14095","_from":"3696","_to":"10923"} +{"$label":"ACTS_IN","name":"General Paulus","type":"Role","_key":"10116","_from":"3696","_to":"8094"} +{"$label":"ACTS_IN","name":"Prof. Dr. Werner Haase","type":"Role","_key":"7279","_from":"3696","_to":"6064"} +{"$label":"ACTS_IN","name":"Oma Sl\u00e4ttberg","type":"Role","_key":"45663","_from":"3699","_to":"30218"} +{"$label":"ACTS_IN","name":"Lena Fischer ( 90 Jahre alt )","type":"Role","_key":"42883","_from":"3699","_to":"28665"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"19802","_from":"3699","_to":"14619"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32104","_from":"3700","_to":"22365"} +{"$label":"ACTS_IN","name":"Polizei Chef","type":"Role","_key":"36753","_from":"3701","_to":"24915"} +{"$label":"ACTS_IN","name":"Pr. Ballach","type":"Role","_key":"31160","_from":"3701","_to":"21794"} +{"$label":"ACTS_IN","name":"Ulrike Meinhof","type":"Role","_key":"52539","_from":"3702","_to":"34158"} +{"$label":"ACTS_IN","name":"Sylvia Glauberg","type":"Role","_key":"44375","_from":"3702","_to":"29567"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"42503","_from":"3702","_to":"28457"} +{"$label":"ACTS_IN","name":"Jutta Falken","type":"Role","_key":"37506","_from":"3702","_to":"25419"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"37296","_from":"3702","_to":"25274"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Cabanon","type":"Role","_key":"91525","_from":"3703","_to":"53951"} +{"$label":"ACTS_IN","name":"Martins Vater","type":"Role","_key":"65945","_from":"3703","_to":"40793"} +{"$label":"ACTS_IN","name":"Lutz Lenarth","type":"Role","_key":"43860","_from":"3703","_to":"29272"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"37294","_from":"3703","_to":"25274"} +{"$label":"ACTS_IN","name":"Gregor Karges","type":"Role","_key":"36348","_from":"3703","_to":"24651"} +{"$label":"ACTS_IN","name":"Jochen Maiwald","type":"Role","_key":"13783","_from":"3703","_to":"10694"} +{"$label":"DIRECTED","_key":"4363","_from":"3726","_to":"3718"} +{"$label":"ACTS_IN","name":"Rookie Cop","type":"Role","_key":"4362","_from":"3725","_to":"3718"} +{"$label":"ACTS_IN","name":"Diane Wooton","type":"Role","_key":"4361","_from":"3724","_to":"3718"} +{"$label":"ACTS_IN","name":"Clyde","type":"Role","_key":"4360","_from":"3723","_to":"3718"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"4359","_from":"3722","_to":"3718"} +{"$label":"ACTS_IN","name":"Vivienne Freeman","type":"Role","_key":"4358","_from":"3721","_to":"3718"} +{"$label":"ACTS_IN","name":"Dirk Freeman","type":"Role","_key":"4357","_from":"3720","_to":"3718"} +{"$label":"ACTS_IN","name":"Ellen Freeman","type":"Role","_key":"4356","_from":"3719","_to":"3718"} +{"$label":"ACTS_IN","name":"Mrs. Cherrywood (voice)","type":"Role","_key":"68759","_from":"3719","_to":"42127"} +{"$label":"ACTS_IN","name":"Mrs. White","type":"Role","_key":"49206","_from":"3719","_to":"32232"} +{"$label":"ACTS_IN","name":"Miss Wimsey","type":"Role","_key":"24613","_from":"3719","_to":"17800"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"11001","_from":"3719","_to":"8707"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"108037","_from":"3720","_to":"63815"} +{"$label":"ACTS_IN","name":"Professor French","type":"Role","_key":"70629","_from":"3720","_to":"42977"} +{"$label":"ACTS_IN","name":"Osgood","type":"Role","_key":"46243","_from":"3720","_to":"30564"} +{"$label":"ACTS_IN","name":"Ronald Greaver","type":"Role","_key":"14153","_from":"3720","_to":"10952"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"112339","_from":"3721","_to":"66323"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"56898","_from":"3721","_to":"36116"} +{"$label":"ACTS_IN","name":"Deputy Dana","type":"Role","_key":"49952","_from":"3723","_to":"32695"} +{"$label":"ACTS_IN","name":"Joanna's Mum","type":"Role","_key":"60849","_from":"3724","_to":"38430"} +{"$label":"DIRECTED","_key":"106903","_from":"3726","_to":"63027"} +{"$label":"DIRECTED","_key":"88167","_from":"3726","_to":"52313"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"4376","_from":"3737","_to":"3727"} +{"$label":"ACTS_IN","name":"Dr. Ivan Slavicky","type":"Role","_key":"4375","_from":"3736","_to":"3727"} +{"$label":"ACTS_IN","name":"Rocker","type":"Role","_key":"4374","_from":"3735","_to":"3727"} +{"$label":"ACTS_IN","name":"Drina","type":"Role","_key":"4373","_from":"3734","_to":"3727"} +{"$label":"ACTS_IN","name":"Wesley","type":"Role","_key":"4372","_from":"3733","_to":"3727"} +{"$label":"ACTS_IN","name":"Armando","type":"Role","_key":"4371","_from":"3732","_to":"3727"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"4370","_from":"3731","_to":"3727"} +{"$label":"ACTS_IN","name":"Tom Lone","type":"Role","_key":"4366","_from":"3730","_to":"3727"} +{"$label":"ACTS_IN","name":"Patience Phillips","type":"Role","_key":"4365","_from":"3729","_to":"3727"} +{"$label":"DIRECTED","_key":"4364","_from":"3728","_to":"3727"} +{"$label":"DIRECTED","_key":"110819","_from":"3728","_to":"65453"} +{"$label":"DIRECTED","_key":"54931","_from":"3728","_to":"35122"} +{"$label":"ACTS_IN","name":"Nisi","type":"Role","_key":"116105","_from":"3729","_to":"68369"} +{"$label":"ACTS_IN","name":"Autumn Haley","type":"Role","_key":"115036","_from":"3729","_to":"67739"} +{"$label":"ACTS_IN","name":"Janie Starks","type":"Role","_key":"112052","_from":"3729","_to":"66166"} +{"$label":"ACTS_IN","name":"Angela Lewis","type":"Role","_key":"67659","_from":"3729","_to":"41628"} +{"$label":"ACTS_IN","name":"Cappy (voice)","type":"Role","_key":"58224","_from":"3729","_to":"36829"} +{"$label":"ACTS_IN","name":"Ginger Knowles","type":"Role","_key":"55895","_from":"3729","_to":"35554"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"53954","_from":"3729","_to":"34714"} +{"$label":"ACTS_IN","name":"Cory","type":"Role","_key":"53093","_from":"3729","_to":"34363"} +{"$label":"ACTS_IN","name":"Nefertiti","type":"Role","_key":"50326","_from":"3729","_to":"32879"} +{"$label":"ACTS_IN","name":"Rowena Price","type":"Role","_key":"45884","_from":"3729","_to":"30345"} +{"$label":"ACTS_IN","name":"Miranda Grey","type":"Role","_key":"35218","_from":"3729","_to":"23991"} +{"$label":"ACTS_IN","name":"Audrey Burke","type":"Role","_key":"28854","_from":"3729","_to":"20622"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"20380","_from":"3729","_to":"14930"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"15146","_from":"3729","_to":"11617"} +{"$label":"ACTS_IN","name":"Leticia Musgrove","type":"Role","_key":"12618","_from":"3729","_to":"9865"} +{"$label":"ACTS_IN","name":"Rosetta Stone","type":"Role","_key":"10573","_from":"3729","_to":"8398"} +{"$label":"ACTS_IN","name":"Wade Handler","type":"Role","_key":"106579","_from":"3730","_to":"62806"} +{"$label":"ACTS_IN","name":"Dr. Jeremy Stone","type":"Role","_key":"99545","_from":"3730","_to":"58686"} +{"$label":"ACTS_IN","name":"Lt. Colonel Mucci","type":"Role","_key":"97520","_from":"3730","_to":"57426"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"55857","_from":"3730","_to":"35537"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"55708","_from":"3730","_to":"35451"} +{"$label":"ACTS_IN","name":"Lt. Ted Santen","type":"Role","_key":"51189","_from":"3730","_to":"33388"} +{"$label":"ACTS_IN","name":"Juvenal Urbino","type":"Role","_key":"44504","_from":"3730","_to":"29642"} +{"$label":"ACTS_IN","name":"Ben Cooper","type":"Role","_key":"15802","_from":"3730","_to":"12033"} +{"$label":"ACTS_IN","name":"Matt Schramm","type":"Role","_key":"13687","_from":"3730","_to":"10627"} +{"$label":"ACTS_IN","name":"Eric Matthews","type":"Role","_key":"13513","_from":"3730","_to":"10515"} +{"$label":"ACTS_IN","name":"Miss Ungermeyer","type":"Role","_key":"117286","_from":"3731","_to":"68981"} +{"$label":"ACTS_IN","name":"Lois Griffin","type":"Role","_key":"99039","_from":"3731","_to":"58342"} +{"$label":"ACTS_IN","name":"Mrs. Lange","type":"Role","_key":"48661","_from":"3731","_to":"31916"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"46094","_from":"3731","_to":"30453"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"26768","_from":"3731","_to":"19236"} +{"$label":"ACTS_IN","name":"Doctor Bruce Banner","type":"Role","_key":"101080","_from":"3732","_to":"59562"} +{"$label":"ACTS_IN","name":"Bruce Banner","type":"Role","_key":"101068","_from":"3732","_to":"59555"} +{"$label":"ACTS_IN","name":"Gage","type":"Role","_key":"90708","_from":"3732","_to":"53545"} +{"$label":"ACTS_IN","name":"Funboy","type":"Role","_key":"54253","_from":"3732","_to":"34832"} +{"$label":"ACTS_IN","name":"Adrian Geiger","type":"Role","_key":"36705","_from":"3732","_to":"24881"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"7603","_from":"3732","_to":"6321"} +{"$label":"ACTS_IN","name":"Jai Li","type":"Role","_key":"104120","_from":"3733","_to":"61250"} +{"$label":"ACTS_IN","name":"Quan","type":"Role","_key":"99263","_from":"3733","_to":"58498"} +{"$label":"ACTS_IN","name":"Sunti","type":"Role","_key":"90152","_from":"3733","_to":"53305"} +{"$label":"ACTS_IN","name":"Mr. Wong","type":"Role","_key":"60991","_from":"3733","_to":"38538"} +{"$label":"ACTS_IN","name":"Koh","type":"Role","_key":"54292","_from":"3733","_to":"34851"} +{"$label":"ACTS_IN","name":"Bobby Vu","type":"Role","_key":"53969","_from":"3733","_to":"34719"} +{"$label":"ACTS_IN","name":"Lin Dan","type":"Role","_key":"53684","_from":"3733","_to":"34625"} +{"$label":"ACTS_IN","name":"Ernst Kaltenbrunner","type":"Role","_key":"117937","_from":"3735","_to":"69324"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"115511","_from":"3735","_to":"67997"} +{"$label":"ACTS_IN","name":"Smiley","type":"Role","_key":"27958","_from":"3735","_to":"20039"} +{"$label":"ACTS_IN","name":"Methos","type":"Role","_key":"94104","_from":"3736","_to":"55414"} +{"$label":"ACTS_IN","name":"The Sin Eater","type":"Role","_key":"58010","_from":"3736","_to":"36700"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"4387","_from":"3749","_to":"3738"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"4386","_from":"3748","_to":"3738"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"4385","_from":"3747","_to":"3738"} +{"$label":"ACTS_IN","name":"The Vegetable","type":"Role","_key":"4384","_from":"3746","_to":"3738"} +{"$label":"ACTS_IN","name":"Kirk","type":"Role","_key":"4383","_from":"3745","_to":"3738"} +{"$label":"ACTS_IN","name":"The Old Man","type":"Role","_key":"4382","_from":"3744","_to":"3738"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"4381","_from":"3743","_to":"3738"} +{"$label":"ACTS_IN","name":"Billie","type":"Role","_key":"4380","_from":"3742","_to":"3738"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"4379","_from":"3741","_to":"3738"} +{"$label":"ACTS_IN","name":"Varla","type":"Role","_key":"4378","_from":"3740","_to":"3738"} +{"$label":"DIRECTED","_key":"4377","_from":"3739","_to":"3738"} +{"$label":"DIRECTED","_key":"39172","_from":"3739","_to":"26480"} +{"$label":"DIRECTED","_key":"39162","_from":"3739","_to":"26475"} +{"$label":"DIRECTED","_key":"39136","_from":"3739","_to":"26456"} +{"$label":"DIRECTED","_key":"39123","_from":"3739","_to":"26449"} +{"$label":"DIRECTED","_key":"39101","_from":"3739","_to":"26431"} +{"$label":"DIRECTED","_key":"39090","_from":"3739","_to":"26427"} +{"$label":"DIRECTED","_key":"38987","_from":"3739","_to":"26345"} +{"$label":"DIRECTED","_key":"38973","_from":"3739","_to":"26338"} +{"$label":"DIRECTED","_key":"38932","_from":"3739","_to":"26303"} +{"$label":"DIRECTED","_key":"38919","_from":"3739","_to":"26293"} +{"$label":"DIRECTED","_key":"38904","_from":"3739","_to":"26281"} +{"$label":"DIRECTED","_key":"38890","_from":"3739","_to":"26274"} +{"$label":"DIRECTED","_key":"38820","_from":"3739","_to":"26224"} +{"$label":"DIRECTED","_key":"38510","_from":"3739","_to":"26019"} +{"$label":"DIRECTED","_key":"38442","_from":"3739","_to":"25966"} +{"$label":"DIRECTED","_key":"38369","_from":"3739","_to":"25922"} +{"$label":"DIRECTED","_key":"38367","_from":"3739","_to":"25920"} +{"$label":"DIRECTED","_key":"38364","_from":"3739","_to":"25918"} +{"$label":"DIRECTED","_key":"38351","_from":"3739","_to":"25907"} +{"$label":"DIRECTED","_key":"38348","_from":"3739","_to":"25905"} +{"$label":"DIRECTED","_key":"38332","_from":"3739","_to":"25894"} +{"$label":"DIRECTED","_key":"38320","_from":"3739","_to":"25883"} +{"$label":"DIRECTED","_key":"38281","_from":"3739","_to":"25856"} +{"$label":"DIRECTED","_key":"37637","_from":"3739","_to":"25514"} +{"$label":"DIRECTED","_key":"36181","_from":"3739","_to":"24549"} +{"$label":"ACTS_IN","name":"Thanks","type":"Role","_key":"39122","_from":"3739","_to":"26438"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39089","_from":"3739","_to":"26426"} +{"$label":"ACTS_IN","name":"Motel Manager","type":"Role","_key":"38985","_from":"3739","_to":"26338"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"38930","_from":"3739","_to":"26293"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"38913","_from":"3739","_to":"26281"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38903","_from":"3739","_to":"26274"} +{"$label":"ACTS_IN","name":"Fetischist","type":"Role","_key":"38843","_from":"3739","_to":"26224"} +{"$label":"ACTS_IN","name":"\u00c4lterer Fetischist","type":"Role","_key":"38817","_from":"3739","_to":"26215"} +{"$label":"ACTS_IN","name":"Video Salesman","type":"Role","_key":"38804","_from":"3739","_to":"26203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38769","_from":"3739","_to":"26194"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38758","_from":"3739","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38744","_from":"3739","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38547","_from":"3739","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38519","_from":"3739","_to":"26023"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38513","_from":"3739","_to":"26019"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38503","_from":"3739","_to":"26013"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38499","_from":"3739","_to":"26007"} +{"$label":"ACTS_IN","name":"Hitchcok","type":"Role","_key":"38386","_from":"3739","_to":"25922"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38366","_from":"3739","_to":"25918"} +{"$label":"ACTS_IN","name":"Audience Member","type":"Role","_key":"38361","_from":"3739","_to":"25907"} +{"$label":"ACTS_IN","name":"Fotograf","type":"Role","_key":"38327","_from":"3739","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37652","_from":"3739","_to":"25514"} +{"$label":"ACTS_IN","name":"Foto","type":"Role","_key":"17257","_from":"3739","_to":"12920"} +{"$label":"ACTS_IN","name":"Alina Cordova","type":"Role","_key":"46638","_from":"3741","_to":"30797"} +{"$label":"ACTS_IN","name":"Catalyst","type":"Role","_key":"39176","_from":"3741","_to":"26480"} +{"$label":"ACTS_IN","name":"Super Haji","type":"Role","_key":"38982","_from":"3741","_to":"26338"} +{"$label":"ACTS_IN","name":"Cat Woman","type":"Role","_key":"38945","_from":"3741","_to":"26303"} +{"$label":"ACTS_IN","name":"Ruby Bronner","type":"Role","_key":"38911","_from":"3741","_to":"26281"} +{"$label":"ACTS_IN","name":"Burt","type":"Role","_key":"39180","_from":"3744","_to":"26480"} +{"$label":"ACTS_IN","name":"Lute Wade","type":"Role","_key":"38898","_from":"3744","_to":"26274"} +{"$label":"ACTS_IN","name":"The Man from Small Town","type":"Role","_key":"36184","_from":"3744","_to":"24549"} +{"$label":"ACTS_IN","name":"Dr. Ross","type":"Role","_key":"39169","_from":"3748","_to":"26475"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"39003","_from":"3748","_to":"26345"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"38928","_from":"3748","_to":"26293"} +{"$label":"ACTS_IN","name":"Calif McKinney","type":"Role","_key":"38893","_from":"3748","_to":"26274"} +{"$label":"ACTS_IN","name":"Customer","type":"Role","_key":"37649","_from":"3748","_to":"25514"} +{"$label":"ACTS_IN","name":"Thurmond Pate","type":"Role","_key":"38902","_from":"3749","_to":"26274"} +{"$label":"ACTS_IN","name":"Semper Fidelis","type":"Role","_key":"36185","_from":"3749","_to":"24549"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"4399","_from":"3761","_to":"3750"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"4398","_from":"3760","_to":"3750"} +{"$label":"ACTS_IN","name":"Zahnarzt","type":"Role","_key":"4397","_from":"3759","_to":"3750"} +{"$label":"ACTS_IN","name":"Maklerin 2","type":"Role","_key":"4396","_from":"3758","_to":"3750"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"4395","_from":"3757","_to":"3750"} +{"$label":"ACTS_IN","name":"Bauunternehmer","type":"Role","_key":"4394","_from":"3756","_to":"3750"} +{"$label":"ACTS_IN","name":"Janko","type":"Role","_key":"4393","_from":"3755","_to":"3750"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"4392","_from":"3754","_to":"3750"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"4390","_from":"3753","_to":"3750"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"4389","_from":"3752","_to":"3750"} +{"$label":"DIRECTED","_key":"4388","_from":"3751","_to":"3750"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66585","_from":"3751","_to":"41163"} +{"$label":"DIRECTED","_key":"65460","_from":"3751","_to":"40576"} +{"$label":"DIRECTED","_key":"61731","_from":"3751","_to":"38875"} +{"$label":"DIRECTED","_key":"54326","_from":"3751","_to":"34864"} +{"$label":"DIRECTED","_key":"51412","_from":"3751","_to":"33540"} +{"$label":"DIRECTED","_key":"10651","_from":"3751","_to":"8455"} +{"$label":"DIRECTED","_key":"10640","_from":"3751","_to":"8447"} +{"$label":"DIRECTED","_key":"5210","_from":"3751","_to":"4433"} +{"$label":"ACTS_IN","name":"Kerstin","type":"Role","_key":"90308","_from":"3752","_to":"53382"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"51413","_from":"3752","_to":"33540"} +{"$label":"ACTS_IN","name":"Mutter Anna","type":"Role","_key":"47948","_from":"3752","_to":"31545"} +{"$label":"ACTS_IN","name":"Trinkerin aus dem Elefanten","type":"Role","_key":"30994","_from":"3752","_to":"21698"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"54357","_from":"3753","_to":"34870"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"49392","_from":"3753","_to":"32341"} +{"$label":"ACTS_IN","name":"Tante Helga","type":"Role","_key":"46758","_from":"3753","_to":"30844"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"39710","_from":"3753","_to":"26834"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"10641","_from":"3753","_to":"8447"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"68155","_from":"3754","_to":"41857"} +{"$label":"ACTS_IN","name":"General von Hoeppner","type":"Role","_key":"49241","_from":"3754","_to":"32251"} +{"$label":"ACTS_IN","name":"Willis Vater","type":"Role","_key":"45665","_from":"3754","_to":"30218"} +{"$label":"ACTS_IN","name":"Piet Hatzky","type":"Role","_key":"38459","_from":"3754","_to":"25979"} +{"$label":"ACTS_IN","name":"Hans Moll","type":"Role","_key":"33781","_from":"3754","_to":"23287"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31942","_from":"3754","_to":"22274"} +{"$label":"ACTS_IN","name":"Willenbrock","type":"Role","_key":"10652","_from":"3754","_to":"8455"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"10642","_from":"3754","_to":"8447"} +{"$label":"ACTS_IN","name":"Pelda's Mother","type":"Role","_key":"4410","_from":"3773","_to":"3762"} +{"$label":"ACTS_IN","name":"Profesor Muha","type":"Role","_key":"4409","_from":"3772","_to":"3762"} +{"$label":"ACTS_IN","name":"Puska","type":"Role","_key":"4408","_from":"3771","_to":"3762"} +{"$label":"ACTS_IN","name":"Saran","type":"Role","_key":"4407","_from":"3770","_to":"3762"} +{"$label":"ACTS_IN","name":"Cenga","type":"Role","_key":"4406","_from":"3769","_to":"3762"} +{"$label":"ACTS_IN","name":"Sabina","type":"Role","_key":"4405","_from":"3768","_to":"3762"} +{"$label":"ACTS_IN","name":"Samir","type":"Role","_key":"4404","_from":"3767","_to":"3762"} +{"$label":"ACTS_IN","name":"Pelda","type":"Role","_key":"4403","_from":"3766","_to":"3762"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"4402","_from":"3765","_to":"3762"} +{"$label":"ACTS_IN","name":"Esma","type":"Role","_key":"4401","_from":"3764","_to":"3762"} +{"$label":"DIRECTED","_key":"4400","_from":"3763","_to":"3762"} +{"$label":"ACTS_IN","name":"Chefin","type":"Role","_key":"69469","_from":"3764","_to":"42444"} +{"$label":"ACTS_IN","name":"Ruza","type":"Role","_key":"63148","_from":"3764","_to":"39603"} +{"$label":"ACTS_IN","name":"Dr. Lukic","type":"Role","_key":"31123","_from":"3770","_to":"21783"} +{"$label":"ACTS_IN","name":"Jean Swift","type":"Role","_key":"4424","_from":"3782","_to":"3774"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"4423","_from":"3781","_to":"3774"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"4422","_from":"3780","_to":"3774"} +{"$label":"ACTS_IN","name":"Charley Best","type":"Role","_key":"4421","_from":"3779","_to":"3774"} +{"$label":"ACTS_IN","name":"Stix","type":"Role","_key":"4420","_from":"3778","_to":"3774"} +{"$label":"ACTS_IN","name":"Terence Scopey","type":"Role","_key":"4418","_from":"3777","_to":"3774"} +{"$label":"ACTS_IN","name":"Shorty","type":"Role","_key":"4416","_from":"3776","_to":"3774"} +{"$label":"ACTS_IN","name":"Tom Tom","type":"Role","_key":"4413","_from":"3775","_to":"3774"} +{"$label":"ACTS_IN","name":"Ray Aibelli","type":"Role","_key":"113300","_from":"3775","_to":"66746"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"67297","_from":"3775","_to":"41488"} +{"$label":"ACTS_IN","name":"Private Toffler","type":"Role","_key":"61735","_from":"3775","_to":"38878"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"58444","_from":"3775","_to":"36932"} +{"$label":"ACTS_IN","name":"Snow","type":"Role","_key":"18336","_from":"3775","_to":"13602"} +{"$label":"ACTS_IN","name":"Niels","type":"Role","_key":"16934","_from":"3775","_to":"12720"} +{"$label":"ACTS_IN","name":"Billy Fisher","type":"Role","_key":"16872","_from":"3775","_to":"12688"} +{"$label":"ACTS_IN","name":"Corporal Timothy Upham","type":"Role","_key":"10190","_from":"3775","_to":"8132"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"7945","_from":"3775","_to":"6576"} +{"$label":"ACTS_IN","name":"Bill Henson","type":"Role","_key":"6608","_from":"3775","_to":"5579"} +{"$label":"ACTS_IN","name":"Edgar (voice)","type":"Role","_key":"120530","_from":"3776","_to":"70790"} +{"$label":"ACTS_IN","name":"Neely","type":"Role","_key":"102341","_from":"3776","_to":"60214"} +{"$label":"ACTS_IN","name":"Howard Putzel","type":"Role","_key":"89957","_from":"3776","_to":"53218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36422","_from":"3776","_to":"24708"} +{"$label":"ACTS_IN","name":"Shopkeeper","type":"Role","_key":"31029","_from":"3776","_to":"21724"} +{"$label":"ACTS_IN","name":"John Doe Jersey","type":"Role","_key":"15816","_from":"3776","_to":"12037"} +{"$label":"ACTS_IN","name":"Bill Ubell","type":"Role","_key":"5288","_from":"3776","_to":"4483"} +{"$label":"ACTS_IN","name":"Harold Parker Chasen","type":"Role","_key":"4721","_from":"3776","_to":"4035"} +{"$label":"ACTS_IN","name":"Franz Liszt","type":"Role","_key":"114574","_from":"3777","_to":"67493"} +{"$label":"ACTS_IN","name":"Adult Nic","type":"Role","_key":"102987","_from":"3777","_to":"60579"} +{"$label":"ACTS_IN","name":"Nick Hardaway","type":"Role","_key":"102640","_from":"3777","_to":"60385"} +{"$label":"ACTS_IN","name":"Manuel Romasanta","type":"Role","_key":"90829","_from":"3777","_to":"53594"} +{"$label":"ACTS_IN","name":"Warlock","type":"Role","_key":"69231","_from":"3777","_to":"42338"} +{"$label":"ACTS_IN","name":"George Emerson","type":"Role","_key":"68834","_from":"3777","_to":"42174"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"68419","_from":"3777","_to":"41974"} +{"$label":"ACTS_IN","name":"Snakehead","type":"Role","_key":"64507","_from":"3777","_to":"40185"} +{"$label":"ACTS_IN","name":"Das Phantom","type":"Role","_key":"64364","_from":"3777","_to":"40115"} +{"$label":"ACTS_IN","name":"Louis XIV","type":"Role","_key":"45813","_from":"3777","_to":"30302"} +{"$label":"ACTS_IN","name":"Doctor James Atherton","type":"Role","_key":"43693","_from":"3777","_to":"29183"} +{"$label":"ACTS_IN","name":"Dr. Dominik Broussard","type":"Role","_key":"36673","_from":"3777","_to":"24857"} +{"$label":"ACTS_IN","name":"Yves Cloquet","type":"Role","_key":"23200","_from":"3777","_to":"16826"} +{"$label":"ACTS_IN","name":"Jon Swain","type":"Role","_key":"7425","_from":"3777","_to":"6188"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"5595","_from":"3777","_to":"4770"} +{"$label":"ACTS_IN","name":"Christophe","type":"Role","_key":"70219","_from":"3778","_to":"42794"} +{"$label":"ACTS_IN","name":"Mr. Haddy","type":"Role","_key":"67991","_from":"3778","_to":"41779"} +{"$label":"ACTS_IN","name":"Troy (voice)","type":"Role","_key":"120520","_from":"3779","_to":"70788"} +{"$label":"ACTS_IN","name":"Stew Albert","type":"Role","_key":"115082","_from":"3779","_to":"67773"} +{"$label":"ACTS_IN","name":"Bunting","type":"Role","_key":"102953","_from":"3779","_to":"60559"} +{"$label":"ACTS_IN","name":"Alex Balder","type":"Role","_key":"92180","_from":"3779","_to":"54404"} +{"$label":"ACTS_IN","name":"Alex Lowe","type":"Role","_key":"63260","_from":"3779","_to":"39660"} +{"$label":"ACTS_IN","name":"Jack Houriskey","type":"Role","_key":"51966","_from":"3779","_to":"33893"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"51161","_from":"3779","_to":"33370"} +{"$label":"ACTS_IN","name":"Priest Brian Norris","type":"Role","_key":"34109","_from":"3779","_to":"23435"} +{"$label":"ACTS_IN","name":"Dr. Gunter Janek","type":"Role","_key":"20403","_from":"3779","_to":"14934"} +{"$label":"ACTS_IN","name":"Pug","type":"Role","_key":"18777","_from":"3779","_to":"13886"} +{"$label":"ACTS_IN","name":"Dan Scott","type":"Role","_key":"17613","_from":"3779","_to":"13147"} +{"$label":"ACTS_IN","name":"Dan Miller","type":"Role","_key":"89955","_from":"3780","_to":"53218"} +{"$label":"ACTS_IN","name":"Pat McDonough","type":"Role","_key":"71637","_from":"3780","_to":"43379"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"56849","_from":"3780","_to":"36092"} +{"$label":"ACTS_IN","name":"Tom Fender","type":"Role","_key":"25820","_from":"3780","_to":"18581"} +{"$label":"ACTS_IN","name":"Bull Hardwick","type":"Role","_key":"18226","_from":"3780","_to":"13515"} +{"$label":"ACTS_IN","name":"Arnie Burns","type":"Role","_key":"15959","_from":"3780","_to":"12139"} +{"$label":"ACTS_IN","name":"Flora Cranley","type":"Role","_key":"65795","_from":"3781","_to":"40720"} +{"$label":"ACTS_IN","name":"Old Rose","type":"Role","_key":"7183","_from":"3781","_to":"6002"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"114452","_from":"3782","_to":"67420"} +{"$label":"ACTS_IN","name":"Mildred Muhammad","type":"Role","_key":"60802","_from":"3782","_to":"38408"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"4440","_from":"3789","_to":"3783"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"4439","_from":"3788","_to":"3783"} +{"$label":"ACTS_IN","name":"Virgil","type":"Role","_key":"4438","_from":"3787","_to":"3783"} +{"$label":"ACTS_IN","name":"Vincenzo Coccotti","type":"Role","_key":"4433","_from":"3786","_to":"3783"} +{"$label":"ACTS_IN","name":"Dick Ritchie","type":"Role","_key":"4429","_from":"3785","_to":"3783"} +{"$label":"ACTS_IN","name":"Alabama Whitman","type":"Role","_key":"4428","_from":"3784","_to":"3783"} +{"$label":"ACTS_IN","name":"Frankie Paige","type":"Role","_key":"62503","_from":"3784","_to":"39359"} +{"$label":"ACTS_IN","name":"Kristen Parker","type":"Role","_key":"60263","_from":"3784","_to":"38013"} +{"$label":"ACTS_IN","name":"Valerie Veran","type":"Role","_key":"55490","_from":"3784","_to":"35362"} +{"$label":"ACTS_IN","name":"Mary Burke","type":"Role","_key":"50308","_from":"3784","_to":"32867"} +{"$label":"ACTS_IN","name":"Miss Kathryn Barlow","type":"Role","_key":"49043","_from":"3784","_to":"32134"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"49036","_from":"3784","_to":"32132"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"49025","_from":"3784","_to":"32126"} +{"$label":"ACTS_IN","name":"Havana","type":"Role","_key":"20560","_from":"3784","_to":"15049"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"19227","_from":"3784","_to":"14214"} +{"$label":"ACTS_IN","name":"Scarlett","type":"Role","_key":"18221","_from":"3784","_to":"13515"} +{"$label":"ACTS_IN","name":"Nancy Coplin","type":"Role","_key":"18027","_from":"3784","_to":"13403"} +{"$label":"ACTS_IN","name":"Arline Greenbaum","type":"Role","_key":"17698","_from":"3784","_to":"13208"} +{"$label":"ACTS_IN","name":"Laura Bowman","type":"Role","_key":"16161","_from":"3784","_to":"12272"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"12595","_from":"3784","_to":"9849"} +{"$label":"ACTS_IN","name":"Renee Madison","type":"Role","_key":"7598","_from":"3784","_to":"6321"} +{"$label":"ACTS_IN","name":"Kathy O'Hara","type":"Role","_key":"6237","_from":"3784","_to":"5281"} +{"$label":"ACTS_IN","name":"Lila Jute","type":"Role","_key":"5538","_from":"3784","_to":"4722"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"102296","_from":"3785","_to":"60192"} +{"$label":"ACTS_IN","name":"Les","type":"Role","_key":"97234","_from":"3785","_to":"57206"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"65758","_from":"3785","_to":"40707"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"64135","_from":"3785","_to":"40021"} +{"$label":"ACTS_IN","name":"Mailman with Tax Notice","type":"Role","_key":"63528","_from":"3785","_to":"39764"} +{"$label":"ACTS_IN","name":"Paul Kirkwood","type":"Role","_key":"52848","_from":"3785","_to":"34256"} +{"$label":"ACTS_IN","name":"Tom \"Scoggs\" Scoggins","type":"Role","_key":"51457","_from":"3785","_to":"33562"} +{"$label":"ACTS_IN","name":"Kevin McCall","type":"Role","_key":"51160","_from":"3785","_to":"33370"} +{"$label":"ACTS_IN","name":"Hank Morgan","type":"Role","_key":"49871","_from":"3785","_to":"32650"} +{"$label":"ACTS_IN","name":"Dr. Edward Bliss, jr","type":"Role","_key":"49124","_from":"3785","_to":"32184"} +{"$label":"ACTS_IN","name":"Putney","type":"Role","_key":"47086","_from":"3785","_to":"31049"} +{"$label":"ACTS_IN","name":"Ronnie Gannon","type":"Role","_key":"41475","_from":"3785","_to":"27872"} +{"$label":"ACTS_IN","name":"Murray \" Superboy \" Babitch","type":"Role","_key":"18635","_from":"3785","_to":"13786"} +{"$label":"ACTS_IN","name":"Sgt. Toomey","type":"Role","_key":"119965","_from":"3786","_to":"70458"} +{"$label":"ACTS_IN","name":"Count Cagliostro","type":"Role","_key":"118612","_from":"3786","_to":"69747"} +{"$label":"ACTS_IN","name":"Reed Thimple","type":"Role","_key":"115876","_from":"3786","_to":"68225"} +{"$label":"ACTS_IN","name":"Det. Rizzo","type":"Role","_key":"115251","_from":"3786","_to":"67870"} +{"$label":"ACTS_IN","name":"Jacob Witting","type":"Role","_key":"105786","_from":"3786","_to":"62284"} +{"$label":"ACTS_IN","name":"Jacob Witting","type":"Role","_key":"105745","_from":"3786","_to":"62251"} +{"$label":"ACTS_IN","name":"Turner Lair","type":"Role","_key":"104727","_from":"3786","_to":"61613"} +{"$label":"ACTS_IN","name":"Michael Brace","type":"Role","_key":"102946","_from":"3786","_to":"60558"} +{"$label":"ACTS_IN","name":"Brad Whitewood Sr.","type":"Role","_key":"96044","_from":"3786","_to":"56457"} +{"$label":"ACTS_IN","name":"Kyril Montana","type":"Role","_key":"94731","_from":"3786","_to":"55796"} +{"$label":"ACTS_IN","name":"Wesley Pendergass","type":"Role","_key":"91543","_from":"3786","_to":"53960"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"73125","_from":"3786","_to":"43981"} +{"$label":"ACTS_IN","name":"Nikanor \u201eNick\u201c Chevotarevich","type":"Role","_key":"71913","_from":"3786","_to":"43508"} +{"$label":"ACTS_IN","name":"Calvin Webber","type":"Role","_key":"71109","_from":"3786","_to":"43169"} +{"$label":"ACTS_IN","name":"Johnny Smith","type":"Role","_key":"69205","_from":"3786","_to":"42323"} +{"$label":"ACTS_IN","name":"Nathan D. Champion","type":"Role","_key":"66841","_from":"3786","_to":"41285"} +{"$label":"ACTS_IN","name":"Frank Featherbed","type":"Role","_key":"66721","_from":"3786","_to":"41220"} +{"$label":"ACTS_IN","name":"Carlo Bartolucci","type":"Role","_key":"64934","_from":"3786","_to":"40373"} +{"$label":"ACTS_IN","name":"Salvatore 'Sal' Maggio","type":"Role","_key":"64698","_from":"3786","_to":"40292"} +{"$label":"ACTS_IN","name":"Hatcher","type":"Role","_key":"61328","_from":"3786","_to":"38706"} +{"$label":"ACTS_IN","name":"Mark Heiss","type":"Role","_key":"58139","_from":"3786","_to":"36776"} +{"$label":"ACTS_IN","name":"Jack Menken","type":"Role","_key":"57674","_from":"3786","_to":"36513"} +{"$label":"ACTS_IN","name":"Mike Wellington","type":"Role","_key":"57619","_from":"3786","_to":"36484"} +{"$label":"ACTS_IN","name":"Feng","type":"Role","_key":"56269","_from":"3786","_to":"35746"} +{"$label":"ACTS_IN","name":"Frank White","type":"Role","_key":"54663","_from":"3786","_to":"35009"} +{"$label":"ACTS_IN","name":"Secretary William Cleary","type":"Role","_key":"54422","_from":"3786","_to":"34907"} +{"$label":"ACTS_IN","name":"Rayburn","type":"Role","_key":"54333","_from":"3786","_to":"34865"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"53208","_from":"3786","_to":"34418"} +{"$label":"ACTS_IN","name":"Hickey","type":"Role","_key":"53170","_from":"3786","_to":"34398"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"52167","_from":"3786","_to":"33997"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"51986","_from":"3786","_to":"33900"} +{"$label":"ACTS_IN","name":"Colonel Cutter (voice)","type":"Role","_key":"51496","_from":"3786","_to":"33574"} +{"$label":"ACTS_IN","name":"Bobby Cahn","type":"Role","_key":"51205","_from":"3786","_to":"33394"} +{"$label":"ACTS_IN","name":"Nat","type":"Role","_key":"30102","_from":"3786","_to":"21216"} +{"$label":"ACTS_IN","name":"Wilbur Turnblad","type":"Role","_key":"24603","_from":"3786","_to":"17800"} +{"$label":"ACTS_IN","name":"Der hessische Reiter","type":"Role","_key":"22609","_from":"3786","_to":"16413"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"18172","_from":"3786","_to":"13485"} +{"$label":"ACTS_IN","name":"Max Zorin","type":"Role","_key":"8535","_from":"3786","_to":"6961"} +{"$label":"ACTS_IN","name":"Duane Hall","type":"Role","_key":"8479","_from":"3786","_to":"6916"} +{"$label":"ACTS_IN","name":"Captain Koons","type":"Role","_key":"8213","_from":"3786","_to":"6746"} +{"$label":"ACTS_IN","name":"Frank Abagnale, Sr.","type":"Role","_key":"7649","_from":"3786","_to":"6359"} +{"$label":"ACTS_IN","name":"The Interviewer","type":"Role","_key":"6550","_from":"3786","_to":"5534"} +{"$label":"ACTS_IN","name":"The Man with the Plan","type":"Role","_key":"5071","_from":"3786","_to":"4307"} +{"$label":"ACTS_IN","name":"Max Shreck","type":"Role","_key":"4855","_from":"3786","_to":"4154"} +{"$label":"ACTS_IN","name":"Lt Gen. George Miller","type":"Role","_key":"121282","_from":"3787","_to":"71254"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"116371","_from":"3787","_to":"68507"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"109396","_from":"3787","_to":"64630"} +{"$label":"ACTS_IN","name":"Tom Valco","type":"Role","_key":"104929","_from":"3787","_to":"61746"} +{"$label":"ACTS_IN","name":"Nick Murder","type":"Role","_key":"98005","_from":"3787","_to":"57718"} +{"$label":"ACTS_IN","name":"Juror 6","type":"Role","_key":"88767","_from":"3787","_to":"52604"} +{"$label":"ACTS_IN","name":"Big Dave Brewster","type":"Role","_key":"65713","_from":"3787","_to":"40695"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"55117","_from":"3787","_to":"35189"} +{"$label":"ACTS_IN","name":"Ben Pinkwater","type":"Role","_key":"52312","_from":"3787","_to":"34057"} +{"$label":"ACTS_IN","name":"Lt. Bobby Dougherty","type":"Role","_key":"51720","_from":"3787","_to":"33747"} +{"$label":"ACTS_IN","name":"Eddie Poole","type":"Role","_key":"48577","_from":"3787","_to":"31873"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"47795","_from":"3787","_to":"31468"} +{"$label":"ACTS_IN","name":"Winston Baldry","type":"Role","_key":"41490","_from":"3787","_to":"27879"} +{"$label":"ACTS_IN","name":"Col. Winter","type":"Role","_key":"18304","_from":"3787","_to":"13579"} +{"$label":"ACTS_IN","name":"Tiny Duffy","type":"Role","_key":"15190","_from":"3787","_to":"11636"} +{"$label":"ACTS_IN","name":"Charles Hildebrandt","type":"Role","_key":"12245","_from":"3787","_to":"9590"} +{"$label":"ACTS_IN","name":"Phil Radda","type":"Role","_key":"58409","_from":"3788","_to":"36916"} +{"$label":"ACTS_IN","name":"Bodyguard","type":"Role","_key":"34202","_from":"3788","_to":"23484"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"25240","_from":"3788","_to":"18207"} +{"$label":"ACTS_IN","name":"Anthony Stabile","type":"Role","_key":"9035","_from":"3788","_to":"7306"} +{"$label":"ACTS_IN","name":"Cleon","type":"Role","_key":"100458","_from":"3789","_to":"59228"} +{"$label":"ACTS_IN","name":"Hap Eckhart","type":"Role","_key":"4446","_from":"3792","_to":"3790"} +{"$label":"ACTS_IN","name":"Rachel Clement","type":"Role","_key":"4445","_from":"3791","_to":"3790"} +{"$label":"ACTS_IN","name":"Noreen","type":"Role","_key":"119942","_from":"3791","_to":"70452"} +{"$label":"ACTS_IN","name":"Det. Madeline Foster","type":"Role","_key":"116664","_from":"3791","_to":"68677"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"112257","_from":"3791","_to":"66291"} +{"$label":"ACTS_IN","name":"Sharon Derns","type":"Role","_key":"111400","_from":"3791","_to":"65780"} +{"$label":"ACTS_IN","name":"Dr. Sally Mannis","type":"Role","_key":"110073","_from":"3791","_to":"65043"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"93650","_from":"3791","_to":"55135"} +{"$label":"ACTS_IN","name":"Lorraine Mendon","type":"Role","_key":"92295","_from":"3791","_to":"54469"} +{"$label":"ACTS_IN","name":"Lynn Powell","type":"Role","_key":"88126","_from":"3791","_to":"52298"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"50841","_from":"3791","_to":"33179"} +{"$label":"ACTS_IN","name":"Bridget Cahill","type":"Role","_key":"14558","_from":"3791","_to":"11225"} +{"$label":"ACTS_IN","name":"Audrey Reede","type":"Role","_key":"14396","_from":"3791","_to":"11130"} +{"$label":"ACTS_IN","name":"Naomi Chance","type":"Role","_key":"14113","_from":"3791","_to":"10931"} +{"$label":"ACTS_IN","name":"Peter Campbell","type":"Role","_key":"117474","_from":"3792","_to":"69081"} +{"$label":"ACTS_IN","name":"Highway Patrolman","type":"Role","_key":"99156","_from":"3792","_to":"58419"} +{"$label":"ACTS_IN","name":"Pastor Skip","type":"Role","_key":"93376","_from":"3792","_to":"54999"} +{"$label":"ACTS_IN","name":"Bill Truitt","type":"Role","_key":"57444","_from":"3792","_to":"36416"} +{"$label":"ACTS_IN","name":"Paul Deer","type":"Role","_key":"57032","_from":"3792","_to":"36185"} +{"$label":"DIRECTED","_key":"37057","_from":"3792","_to":"25115"} +{"$label":"ACTS_IN","name":"M\u00e9lanie","type":"Role","_key":"4462","_from":"3809","_to":"3793"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"4461","_from":"3808","_to":"3793"} +{"$label":"ACTS_IN","name":"Father Carmignani","type":"Role","_key":"4460","_from":"3807","_to":"3793"} +{"$label":"ACTS_IN","name":"Johnny Christofaro","type":"Role","_key":"4459","_from":"3806","_to":"3793"} +{"$label":"ACTS_IN","name":"Giorgio","type":"Role","_key":"4458","_from":"3805","_to":"3793"} +{"$label":"ACTS_IN","name":"Rosetta","type":"Role","_key":"4457","_from":"3804","_to":"3793"} +{"$label":"ACTS_IN","name":"Yolanda\/Woman in Airplane\/Jolene","type":"Role","_key":"4456","_from":"3803","_to":"3793"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"4455","_from":"3802","_to":"3793"} +{"$label":"ACTS_IN","name":"Pina Lunetti","type":"Role","_key":"4454","_from":"3801","_to":"3793"} +{"$label":"ACTS_IN","name":"Anna Barberini","type":"Role","_key":"4453","_from":"3800","_to":"3793"} +{"$label":"ACTS_IN","name":"Nino Paventi","type":"Role","_key":"4452","_from":"3799","_to":"3793"} +{"$label":"ACTS_IN","name":"Lina Paventi","type":"Role","_key":"4451","_from":"3798","_to":"3793"} +{"$label":"ACTS_IN","name":"Gino Barberini","type":"Role","_key":"4450","_from":"3797","_to":"3793"} +{"$label":"ACTS_IN","name":"Maria Barberini","type":"Role","_key":"4449","_from":"3796","_to":"3793"} +{"$label":"ACTS_IN","name":"Angelo Barberini","type":"Role","_key":"4448","_from":"3795","_to":"3793"} +{"$label":"DIRECTED","_key":"4447","_from":"3794","_to":"3793"} +{"$label":"ACTS_IN","name":"Jake Hollander","type":"Role","_key":"113338","_from":"3795","_to":"66763"} +{"$label":"ACTS_IN","name":"Ray Dokes","type":"Role","_key":"66687","_from":"3795","_to":"41203"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"68113","_from":"3796","_to":"41837"} +{"$label":"ACTS_IN","name":"Colonel Malcolm Grommett Spears","type":"Role","_key":"116436","_from":"3797","_to":"68533"} +{"$label":"ACTS_IN","name":"Constantine Kiamos","type":"Role","_key":"106184","_from":"3797","_to":"62546"} +{"$label":"ACTS_IN","name":"Rotti Largo","type":"Role","_key":"99791","_from":"3797","_to":"58864"} +{"$label":"ACTS_IN","name":"Henry Kissinger","type":"Role","_key":"66322","_from":"3797","_to":"41028"} +{"$label":"ACTS_IN","name":"Buddy Stafford","type":"Role","_key":"65402","_from":"3797","_to":"40556"} +{"$label":"ACTS_IN","name":"Eddie Valentine","type":"Role","_key":"61965","_from":"3797","_to":"39003"} +{"$label":"ACTS_IN","name":"Guy Cipriani","type":"Role","_key":"53731","_from":"3797","_to":"34641"} +{"$label":"ACTS_IN","name":"Lips Manlis","type":"Role","_key":"50246","_from":"3797","_to":"32833"} +{"$label":"ACTS_IN","name":"Paul Cicero","type":"Role","_key":"9028","_from":"3797","_to":"7306"} +{"$label":"ACTS_IN","name":"Fulgencio Capulet","type":"Role","_key":"5667","_from":"3797","_to":"4828"} +{"$label":"ACTS_IN","name":"FBI Agent Louisa Acevedo","type":"Role","_key":"113552","_from":"3800","_to":"66900"} +{"$label":"ACTS_IN","name":"First Lover","type":"Role","_key":"67520","_from":"3801","_to":"41573"} +{"$label":"ACTS_IN","name":"Pittsy","type":"Role","_key":"92235","_from":"3806","_to":"54425"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"4484","_from":"3826","_to":"3810"} +{"$label":"ACTS_IN","name":"Lauren Devine","type":"Role","_key":"4483","_from":"3825","_to":"3810"} +{"$label":"ACTS_IN","name":"Michael Boyle","type":"Role","_key":"4482","_from":"3824","_to":"3810"} +{"$label":"ACTS_IN","name":"Sean's Father","type":"Role","_key":"4481","_from":"3823","_to":"3810"} +{"$label":"ACTS_IN","name":"Jimmy's Father","type":"Role","_key":"4480","_from":"3822","_to":"3810"} +{"$label":"ACTS_IN","name":"Young Sean","type":"Role","_key":"4479","_from":"3821","_to":"3810"} +{"$label":"ACTS_IN","name":"Young Jimmy","type":"Role","_key":"4478","_from":"3820","_to":"3810"} +{"$label":"ACTS_IN","name":"Young Dave","type":"Role","_key":"4477","_from":"3819","_to":"3810"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"4476","_from":"3818","_to":"3810"} +{"$label":"ACTS_IN","name":"Esther Harris","type":"Role","_key":"4475","_from":"3817","_to":"3810"} +{"$label":"ACTS_IN","name":"Kevin Savage","type":"Role","_key":"4474","_from":"3816","_to":"3810"} +{"$label":"ACTS_IN","name":"Nick Savage","type":"Role","_key":"4473","_from":"3815","_to":"3810"} +{"$label":"ACTS_IN","name":"John O'Shea","type":"Role","_key":"4472","_from":"3814","_to":"3810"} +{"$label":"ACTS_IN","name":"Katie Markum","type":"Role","_key":"4470","_from":"3813","_to":"3810"} +{"$label":"ACTS_IN","name":"Brendan Harris","type":"Role","_key":"4469","_from":"3812","_to":"3810"} +{"$label":"ACTS_IN","name":"Val Savage","type":"Role","_key":"4468","_from":"3811","_to":"3810"} +{"$label":"ACTS_IN","name":"Carl Swanson","type":"Role","_key":"92496","_from":"3811","_to":"54598"} +{"$label":"ACTS_IN","name":"Southie","type":"Role","_key":"57890","_from":"3811","_to":"36625"} +{"$label":"ACTS_IN","name":"Detective McGahey","type":"Role","_key":"57216","_from":"3811","_to":"36289"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"55278","_from":"3811","_to":"35249"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"16416","_from":"3811","_to":"12420"} +{"$label":"ACTS_IN","name":"'Frosty' Frost","type":"Role","_key":"119957","_from":"3812","_to":"70456"} +{"$label":"ACTS_IN","name":"Shawn Russ","type":"Role","_key":"108462","_from":"3812","_to":"64116"} +{"$label":"ACTS_IN","name":"Joe Jr.","type":"Role","_key":"101364","_from":"3812","_to":"59669"} +{"$label":"ACTS_IN","name":"Scotty Smalls","type":"Role","_key":"70439","_from":"3812","_to":"42885"} +{"$label":"ACTS_IN","name":"Pvt. Cantwell","type":"Role","_key":"65062","_from":"3812","_to":"40427"} +{"$label":"ACTS_IN","name":"Ted Trigger Fitzgerald","type":"Role","_key":"27686","_from":"3812","_to":"19835"} +{"$label":"ACTS_IN","name":"SSgt. Ed Yurek","type":"Role","_key":"10147","_from":"3812","_to":"8112"} +{"$label":"ACTS_IN","name":"Bulma","type":"Role","_key":"98854","_from":"3813","_to":"58251"} +{"$label":"ACTS_IN","name":"Christine Daa\u00e9","type":"Role","_key":"57291","_from":"3813","_to":"36334"} +{"$label":"ACTS_IN","name":"Jennifer Ramsey","type":"Role","_key":"6079","_from":"3813","_to":"5157"} +{"$label":"ACTS_IN","name":"Laura Chapman","type":"Role","_key":"5464","_from":"3813","_to":"4649"} +{"$label":"ACTS_IN","name":"Lazio","type":"Role","_key":"13179","_from":"3816","_to":"10265"} +{"$label":"ACTS_IN","name":"Dotty Dodge","type":"Role","_key":"108422","_from":"3817","_to":"64098"} +{"$label":"ACTS_IN","name":"Coach Colasanti","type":"Role","_key":"104959","_from":"3818","_to":"61751"} +{"$label":"ACTS_IN","name":"Paul Finnegan","type":"Role","_key":"99264","_from":"3818","_to":"58498"} +{"$label":"ACTS_IN","name":"Young Alexander","type":"Role","_key":"17044","_from":"3821","_to":"12778"} +{"$label":"ACTS_IN","name":"Steven McLoughlin","type":"Role","_key":"16010","_from":"3821","_to":"12161"} +{"$label":"ACTS_IN","name":"Ben Reynolds","type":"Role","_key":"100764","_from":"3824","_to":"59409"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"99019","_from":"3824","_to":"58332"} +{"$label":"DIRECTED","_key":"4487","_from":"3828","_to":"3827"} +{"$label":"DIRECTED","_key":"121476","_from":"3828","_to":"71354"} +{"$label":"DIRECTED","_key":"118760","_from":"3828","_to":"69832"} +{"$label":"DIRECTED","_key":"56383","_from":"3828","_to":"35817"} +{"$label":"DIRECTED","_key":"53336","_from":"3828","_to":"34480"} +{"$label":"ACTS_IN","name":"Rossi","type":"Role","_key":"4501","_from":"3840","_to":"3829"} +{"$label":"ACTS_IN","name":"Latifa","type":"Role","_key":"4500","_from":"3839","_to":"3829"} +{"$label":"ACTS_IN","name":"Sugimoto","type":"Role","_key":"4499","_from":"3838","_to":"3829"} +{"$label":"ACTS_IN","name":"Ishihara","type":"Role","_key":"4498","_from":"3837","_to":"3829"} +{"$label":"ACTS_IN","name":"Harada","type":"Role","_key":"4497","_from":"3836","_to":"3829"} +{"$label":"ACTS_IN","name":"Mo","type":"Role","_key":"4496","_from":"3835","_to":"3829"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"4495","_from":"3834","_to":"3829"} +{"$label":"ACTS_IN","name":"Shirase","type":"Role","_key":"4494","_from":"3833","_to":"3829"} +{"$label":"ACTS_IN","name":"Kato","type":"Role","_key":"4493","_from":"3832","_to":"3829"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"4492","_from":"3831","_to":"3829"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"4491","_from":"3830","_to":"3829"} +{"$label":"ACTS_IN","name":"Darnell Jefferson","type":"Role","_key":"115037","_from":"3830","_to":"67739"} +{"$label":"ACTS_IN","name":"Lincoln Hayes","type":"Role","_key":"108998","_from":"3830","_to":"64413"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"107606","_from":"3830","_to":"63522"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"107379","_from":"3830","_to":"63339"} +{"$label":"ACTS_IN","name":"Quincy McCall","type":"Role","_key":"101555","_from":"3830","_to":"59773"} +{"$label":"ACTS_IN","name":"Willie Mays Hayes","type":"Role","_key":"67675","_from":"3830","_to":"41630"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"64198","_from":"3830","_to":"40048"} +{"$label":"ACTS_IN","name":"Marlon","type":"Role","_key":"51102","_from":"3830","_to":"33343"} +{"$label":"ACTS_IN","name":"Satoru Kawashima","type":"Role","_key":"114480","_from":"3832","_to":"67434"} +{"$label":"ACTS_IN","name":"Suzuki (as Sabu)","type":"Role","_key":"55768","_from":"3832","_to":"35497"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"51630","_from":"3832","_to":"33686"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"46887","_from":"3832","_to":"30915"} +{"$label":"ACTS_IN","name":"Nakamura","type":"Role","_key":"40332","_from":"3832","_to":"27206"} +{"$label":"ACTS_IN","name":"Ryuji Hanada","type":"Role","_key":"54293","_from":"3833","_to":"34851"} +{"$label":"ACTS_IN","name":"Aragami","type":"Role","_key":"39764","_from":"3833","_to":"26870"} +{"$label":"ACTS_IN","name":"Raul","type":"Role","_key":"57328","_from":"3835","_to":"36355"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30160","_from":"3835","_to":"21251"} +{"$label":"ACTS_IN","name":"Toyotarou Kouda","type":"Role","_key":"89881","_from":"3836","_to":"53188"} +{"$label":"ACTS_IN","name":"Katagiri","type":"Role","_key":"46888","_from":"3836","_to":"30915"} +{"$label":"ACTS_IN","name":"Horibe","type":"Role","_key":"40331","_from":"3836","_to":"27206"} +{"$label":"ACTS_IN","name":"Warden Tsuchiya","type":"Role","_key":"93901","_from":"3837","_to":"55285"} +{"$label":"ACTS_IN","name":"Detective Kuroda","type":"Role","_key":"91239","_from":"3837","_to":"53800"} +{"$label":"ACTS_IN","name":"Shigeharu Aoyama","type":"Role","_key":"67724","_from":"3837","_to":"41644"} +{"$label":"ACTS_IN","name":"Shiro Yanagawa","type":"Role","_key":"63284","_from":"3837","_to":"39669"} +{"$label":"ACTS_IN","name":"Danny Kohana","type":"Role","_key":"117969","_from":"3838","_to":"69342"} +{"$label":"ACTS_IN","name":"Joseph Yoshinobu Takagi","type":"Role","_key":"6751","_from":"3838","_to":"5661"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"114932","_from":"3839","_to":"67695"} +{"$label":"ACTS_IN","name":"Eddie's Sister (sketch)","type":"Role","_key":"111321","_from":"3839","_to":"65744"} +{"$label":"ACTS_IN","name":"Mr. D.N.A. (voice)","type":"Role","_key":"4513","_from":"3850","_to":"3842"} +{"$label":"ACTS_IN","name":"Donald Gennaro","type":"Role","_key":"4511","_from":"3849","_to":"3842"} +{"$label":"ACTS_IN","name":"Robert Muldoon","type":"Role","_key":"4509","_from":"3848","_to":"3842"} +{"$label":"ACTS_IN","name":"Lex Murphy","type":"Role","_key":"4508","_from":"3847","_to":"3842"} +{"$label":"ACTS_IN","name":"Tim Murphy","type":"Role","_key":"4507","_from":"3846","_to":"3842"} +{"$label":"ACTS_IN","name":"John Hammond","type":"Role","_key":"4506","_from":"3845","_to":"3842"} +{"$label":"ACTS_IN","name":"Dr. Ellie Sattler","type":"Role","_key":"4504","_from":"3844","_to":"3842"} +{"$label":"ACTS_IN","name":"Dr. Alan Grant","type":"Role","_key":"4503","_from":"3843","_to":"3842"} +{"$label":"ACTS_IN","name":"Charles Bromley","type":"Role","_key":"121425","_from":"3843","_to":"71341"} +{"$label":"ACTS_IN","name":"Victor Komarovsky","type":"Role","_key":"118797","_from":"3843","_to":"69843"} +{"$label":"ACTS_IN","name":"craig","type":"Role","_key":"117772","_from":"3843","_to":"69233"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"115284","_from":"3843","_to":"67881"} +{"$label":"ACTS_IN","name":"Dean Spanley","type":"Role","_key":"114940","_from":"3843","_to":"67698"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"114797","_from":"3843","_to":"67617"} +{"$label":"ACTS_IN","name":"Harry Beecham","type":"Role","_key":"109741","_from":"3843","_to":"64813"} +{"$label":"ACTS_IN","name":"Norman Lindsay","type":"Role","_key":"90020","_from":"3843","_to":"53251"} +{"$label":"ACTS_IN","name":"Dennis Bradbury","type":"Role","_key":"72203","_from":"3843","_to":"43633"} +{"$label":"ACTS_IN","name":"Th\u00e9o","type":"Role","_key":"72075","_from":"3843","_to":"43575"} +{"$label":"ACTS_IN","name":"Damien Thorn","type":"Role","_key":"65652","_from":"3843","_to":"40676"} +{"$label":"ACTS_IN","name":"Colonel Geofferey Brydon","type":"Role","_key":"65205","_from":"3843","_to":"40494"} +{"$label":"ACTS_IN","name":"John Ingram","type":"Role","_key":"63664","_from":"3843","_to":"39823"} +{"$label":"ACTS_IN","name":"The Jockey","type":"Role","_key":"59127","_from":"3843","_to":"37329"} +{"$label":"ACTS_IN","name":"David 'Dave' Hoyle, aka Agent 'Nine'","type":"Role","_key":"58862","_from":"3843","_to":"37175"} +{"$label":"ACTS_IN","name":"Lord Friedrich Hoffman","type":"Role","_key":"52511","_from":"3843","_to":"34149"} +{"$label":"ACTS_IN","name":"Dr. William Weir","type":"Role","_key":"49552","_from":"3843","_to":"32447"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"45830","_from":"3843","_to":"30310"} +{"$label":"ACTS_IN","name":"Cliff Buxton","type":"Role","_key":"36714","_from":"3843","_to":"24888"} +{"$label":"ACTS_IN","name":"Bergman","type":"Role","_key":"34380","_from":"3843","_to":"23576"} +{"$label":"ACTS_IN","name":"Dimitri Vasilikov","type":"Role","_key":"33036","_from":"3843","_to":"22898"} +{"$label":"ACTS_IN","name":"Marquis de La Fayatte","type":"Role","_key":"30216","_from":"3843","_to":"21284"} +{"$label":"ACTS_IN","name":"David Jenkins","type":"Role","_key":"22708","_from":"3843","_to":"16474"} +{"$label":"ACTS_IN","name":"John Trent","type":"Role","_key":"22514","_from":"3843","_to":"16363"} +{"$label":"ACTS_IN","name":"Richard Martin","type":"Role","_key":"19981","_from":"3843","_to":"14709"} +{"$label":"ACTS_IN","name":"Henry Bell","type":"Role","_key":"18858","_from":"3843","_to":"13922"} +{"$label":"ACTS_IN","name":"Captain Vasily Borodin","type":"Role","_key":"14803","_from":"3843","_to":"11385"} +{"$label":"ACTS_IN","name":"Alisdair Stewart","type":"Role","_key":"8619","_from":"3843","_to":"7002"} +{"$label":"ACTS_IN","name":"Robert MacLean","type":"Role","_key":"6514","_from":"3843","_to":"5515"} +{"$label":"ACTS_IN","name":"Dr. Alan Grant","type":"Role","_key":"4525","_from":"3843","_to":"3855"} +{"$label":"ACTS_IN","name":"Katherine Harris","type":"Role","_key":"98287","_from":"3844","_to":"57900"} +{"$label":"ACTS_IN","name":"Bret","type":"Role","_key":"95285","_from":"3844","_to":"56059"} +{"$label":"ACTS_IN","name":"Miss Riley","type":"Role","_key":"94631","_from":"3844","_to":"55757"} +{"$label":"ACTS_IN","name":"Diana Adams","type":"Role","_key":"68346","_from":"3844","_to":"41949"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"65619","_from":"3844","_to":"40669"} +{"$label":"ACTS_IN","name":"Sally Gerber","type":"Role","_key":"54682","_from":"3844","_to":"35014"} +{"$label":"ACTS_IN","name":"Sharon Ann, Maggie's daughter","type":"Role","_key":"35339","_from":"3844","_to":"24063"} +{"$label":"ACTS_IN","name":"Nikki Grace\/Susan Blue","type":"Role","_key":"15303","_from":"3844","_to":"11713"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"12248","_from":"3844","_to":"9590"} +{"$label":"ACTS_IN","name":"Sandy Williams","type":"Role","_key":"9352","_from":"3844","_to":"7553"} +{"$label":"ACTS_IN","name":"Lula Fortune","type":"Role","_key":"5920","_from":"3844","_to":"5031"} +{"$label":"ACTS_IN","name":"Dr. Ellie Sattler","type":"Role","_key":"4533","_from":"3844","_to":"3855"} +{"$label":"ACTS_IN","name":"John Holden","type":"Role","_key":"113743","_from":"3845","_to":"67027"} +{"$label":"ACTS_IN","name":"Albert Blossom","type":"Role","_key":"106938","_from":"3845","_to":"63050"} +{"$label":"ACTS_IN","name":"Pinkie Brown","type":"Role","_key":"94227","_from":"3845","_to":"55491"} +{"$label":"ACTS_IN","name":"English Ambassador","type":"Role","_key":"64009","_from":"3845","_to":"39964"} +{"$label":"ACTS_IN","name":"Kris Kringle","type":"Role","_key":"63752","_from":"3845","_to":"39867"} +{"$label":"ACTS_IN","name":"Lew Moran","type":"Role","_key":"61894","_from":"3845","_to":"38954"} +{"$label":"ACTS_IN","name":"Roger Bartlett","type":"Role","_key":"40471","_from":"3845","_to":"27264"} +{"$label":"ACTS_IN","name":"Frenchy Burgoyne","type":"Role","_key":"40455","_from":"3845","_to":"27260"} +{"$label":"ACTS_IN","name":"Judge Arthur Cannon","type":"Role","_key":"34495","_from":"3845","_to":"23625"} +{"$label":"ACTS_IN","name":"Sir William Cecil","type":"Role","_key":"32260","_from":"3845","_to":"22475"} +{"$label":"ACTS_IN","name":"Bill Savage","type":"Role","_key":"25719","_from":"3845","_to":"18504"} +{"$label":"ACTS_IN","name":"Edward Sloat","type":"Role","_key":"16844","_from":"3845","_to":"12677"} +{"$label":"ACTS_IN","name":"John Hammond","type":"Role","_key":"4517","_from":"3845","_to":"3851"} +{"$label":"DIRECTED","_key":"97753","_from":"3845","_to":"57551"} +{"$label":"DIRECTED","_key":"89940","_from":"3845","_to":"53212"} +{"$label":"DIRECTED","_key":"63399","_from":"3845","_to":"39719"} +{"$label":"DIRECTED","_key":"63345","_from":"3845","_to":"39698"} +{"$label":"DIRECTED","_key":"40253","_from":"3845","_to":"27164"} +{"$label":"DIRECTED","_key":"15715","_from":"3845","_to":"11977"} +{"$label":"DIRECTED","_key":"9209","_from":"3845","_to":"7444"} +{"$label":"ACTS_IN","name":"Roarke","type":"Role","_key":"51853","_from":"3846","_to":"33833"} +{"$label":"ACTS_IN","name":"Tim Murphy","type":"Role","_key":"4521","_from":"3846","_to":"3851"} +{"$label":"ACTS_IN","name":"Lex Murphy","type":"Role","_key":"4522","_from":"3847","_to":"3851"} +{"$label":"ACTS_IN","name":"Crandall","type":"Role","_key":"95953","_from":"3849","_to":"56416"} +{"$label":"ACTS_IN","name":"Tommy Carlo","type":"Role","_key":"47799","_from":"3849","_to":"31468"} +{"$label":"ACTS_IN","name":"Second Motel Clerk","type":"Role","_key":"22170","_from":"3849","_to":"16161"} +{"$label":"ACTS_IN","name":"Kelly Curtis Malcolm","type":"Role","_key":"4520","_from":"3854","_to":"3851"} +{"$label":"ACTS_IN","name":"Nick Van Owen","type":"Role","_key":"4518","_from":"3853","_to":"3851"} +{"$label":"ACTS_IN","name":"Roland Tembo","type":"Role","_key":"4516","_from":"3852","_to":"3851"} +{"$label":"ACTS_IN","name":"Quinlan","type":"Role","_key":"97743","_from":"3852","_to":"57551"} +{"$label":"ACTS_IN","name":"Paulsen","type":"Role","_key":"91979","_from":"3852","_to":"54263"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"53944","_from":"3852","_to":"34709"} +{"$label":"ACTS_IN","name":"Veeck","type":"Role","_key":"51979","_from":"3852","_to":"33896"} +{"$label":"ACTS_IN","name":"Gilbert of Glockenspur","type":"Role","_key":"51005","_from":"3852","_to":"33290"} +{"$label":"ACTS_IN","name":"Keeper","type":"Role","_key":"48383","_from":"3852","_to":"31760"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"48107","_from":"3852","_to":"31620"} +{"$label":"ACTS_IN","name":"Giuseppe Conlon","type":"Role","_key":"47654","_from":"3852","_to":"31397"} +{"$label":"ACTS_IN","name":"Tert Card","type":"Role","_key":"43407","_from":"3852","_to":"28999"} +{"$label":"ACTS_IN","name":"Dr. Lorbeer aka Dr. Brandt","type":"Role","_key":"17181","_from":"3852","_to":"12868"} +{"$label":"ACTS_IN","name":"Ken Jackson","type":"Role","_key":"14252","_from":"3852","_to":"11023"} +{"$label":"ACTS_IN","name":"Farmer Jones (voice)","type":"Role","_key":"9606","_from":"3852","_to":"7734"} +{"$label":"ACTS_IN","name":"Father Brennan","type":"Role","_key":"9495","_from":"3852","_to":"7661"} +{"$label":"ACTS_IN","name":"Kobayashi","type":"Role","_key":"7475","_from":"3852","_to":"6221"} +{"$label":"ACTS_IN","name":"Sincai","type":"Role","_key":"5840","_from":"3852","_to":"4959"} +{"$label":"ACTS_IN","name":"Father Laurence","type":"Role","_key":"5666","_from":"3852","_to":"4828"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"121396","_from":"3853","_to":"71336"} +{"$label":"ACTS_IN","name":"Ricky Slade","type":"Role","_key":"105764","_from":"3853","_to":"62266"} +{"$label":"ACTS_IN","name":"Rick Schwartz","type":"Role","_key":"104425","_from":"3853","_to":"61430"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"88612","_from":"3853","_to":"52508"} +{"$label":"ACTS_IN","name":"Beanie","type":"Role","_key":"71189","_from":"3853","_to":"43207"} +{"$label":"ACTS_IN","name":"Norman Bates","type":"Role","_key":"68810","_from":"3853","_to":"42164"} +{"$label":"ACTS_IN","name":"John 'Sheriff' Volgecherev","type":"Role","_key":"62342","_from":"3853","_to":"39280"} +{"$label":"ACTS_IN","name":"Trent Walker.","type":"Role","_key":"61772","_from":"3853","_to":"38893"} +{"$label":"ACTS_IN","name":"Gary Grobowski","type":"Role","_key":"56469","_from":"3853","_to":"35880"} +{"$label":"ACTS_IN","name":"Jeremy Grey","type":"Role","_key":"54421","_from":"3853","_to":"34907"} +{"$label":"ACTS_IN","name":"Peter La Fleur","type":"Role","_key":"54073","_from":"3853","_to":"34776"} +{"$label":"ACTS_IN","name":"Reese Feldman","type":"Role","_key":"53500","_from":"3853","_to":"34547"} +{"$label":"ACTS_IN","name":"Peter Novak","type":"Role","_key":"51034","_from":"3853","_to":"33306"} +{"$label":"ACTS_IN","name":"Wayne Westerberg","type":"Role","_key":"40410","_from":"3853","_to":"27245"} +{"$label":"ACTS_IN","name":"Fred Claus","type":"Role","_key":"37149","_from":"3853","_to":"25172"} +{"$label":"ACTS_IN","name":"Raji","type":"Role","_key":"32574","_from":"3853","_to":"22640"} +{"$label":"ACTS_IN","name":"Mr. Geary","type":"Role","_key":"13688","_from":"3853","_to":"10627"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"9267","_from":"3853","_to":"7489"} +{"$label":"DIRECTED","_key":"4535","_from":"3862","_to":"3855"} +{"$label":"ACTS_IN","name":"Mark Degler","type":"Role","_key":"4534","_from":"3861","_to":"3855"} +{"$label":"ACTS_IN","name":"M.B. Nash","type":"Role","_key":"4532","_from":"3860","_to":"3855"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"4531","_from":"3859","_to":"3855"} +{"$label":"ACTS_IN","name":"Billy Brennan","type":"Role","_key":"4529","_from":"3858","_to":"3855"} +{"$label":"ACTS_IN","name":"Erik Kirby","type":"Role","_key":"4528","_from":"3857","_to":"3855"} +{"$label":"ACTS_IN","name":"Amanda Kirby","type":"Role","_key":"4527","_from":"3856","_to":"3855"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"91593","_from":"3856","_to":"54001"} +{"$label":"ACTS_IN","name":"Jilli Hopper","type":"Role","_key":"69982","_from":"3856","_to":"42688"} +{"$label":"ACTS_IN","name":"Julie Mott","type":"Role","_key":"56174","_from":"3856","_to":"35707"} +{"$label":"ACTS_IN","name":"Ellie","type":"Role","_key":"55657","_from":"3856","_to":"35434"} +{"$label":"ACTS_IN","name":"Jenny Lerner","type":"Role","_key":"50328","_from":"3856","_to":"32880"} +{"$label":"ACTS_IN","name":"Laurel","type":"Role","_key":"48264","_from":"3856","_to":"31704"} +{"$label":"ACTS_IN","name":"Jane Harper","type":"Role","_key":"47200","_from":"3856","_to":"31110"} +{"$label":"ACTS_IN","name":"Kate Reynolds","type":"Role","_key":"40944","_from":"3856","_to":"27547"} +{"$label":"ACTS_IN","name":"Deborah Clasky","type":"Role","_key":"21938","_from":"3856","_to":"16022"} +{"$label":"ACTS_IN","name":"Tina Kalb","type":"Role","_key":"18028","_from":"3856","_to":"13403"} +{"$label":"ACTS_IN","name":"Rocky Merric","type":"Role","_key":"89205","_from":"3857","_to":"52824"} +{"$label":"ACTS_IN","name":"John Talia Jr.","type":"Role","_key":"20418","_from":"3857","_to":"14941"} +{"$label":"ACTS_IN","name":"Rhett Baker","type":"Role","_key":"18931","_from":"3857","_to":"13983"} +{"$label":"ACTS_IN","name":"Nathan Martin","type":"Role","_key":"17619","_from":"3857","_to":"13147"} +{"$label":"ACTS_IN","name":"Tommy Tammisimo","type":"Role","_key":"8703","_from":"3857","_to":"7056"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"116844","_from":"3858","_to":"68786"} +{"$label":"ACTS_IN","name":"Ad Exec","type":"Role","_key":"116183","_from":"3858","_to":"68405"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"108001","_from":"3858","_to":"63792"} +{"$label":"ACTS_IN","name":"Ian McKnight","type":"Role","_key":"96933","_from":"3858","_to":"57014"} +{"$label":"ACTS_IN","name":"John Philipps","type":"Role","_key":"68222","_from":"3858","_to":"41893"} +{"$label":"ACTS_IN","name":"Boy Capel","type":"Role","_key":"68194","_from":"3858","_to":"41883"} +{"$label":"ACTS_IN","name":"Tim Hayes","type":"Role","_key":"65387","_from":"3858","_to":"40553"} +{"$label":"ACTS_IN","name":"Mr. Henry Crawford","type":"Role","_key":"63007","_from":"3858","_to":"39550"} +{"$label":"ACTS_IN","name":"Gavin Harris","type":"Role","_key":"57084","_from":"3858","_to":"36223"} +{"$label":"ACTS_IN","name":"Gavin Harris","type":"Role","_key":"56421","_from":"3858","_to":"35852"} +{"$label":"ACTS_IN","name":"Dr. Paul Faulkner","type":"Role","_key":"52140","_from":"3858","_to":"33986"} +{"$label":"ACTS_IN","name":"Albert Morris","type":"Role","_key":"32889","_from":"3858","_to":"22825"} +{"$label":"ACTS_IN","name":"Flynn","type":"Role","_key":"30103","_from":"3858","_to":"21216"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"13373","_from":"3858","_to":"10412"} +{"$label":"ACTS_IN","name":"Pollux Troy","type":"Role","_key":"8856","_from":"3858","_to":"7192"} +{"$label":"ACTS_IN","name":"Keith Heading","type":"Role","_key":"89054","_from":"3859","_to":"52761"} +{"$label":"ACTS_IN","name":"Mr. Garson","type":"Role","_key":"88929","_from":"3859","_to":"52677"} +{"$label":"ACTS_IN","name":"Cruiser","type":"Role","_key":"66489","_from":"3859","_to":"41111"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"50791","_from":"3859","_to":"33143"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"47447","_from":"3859","_to":"31257"} +{"$label":"ACTS_IN","name":"Lt. Kawalsky","type":"Role","_key":"18847","_from":"3859","_to":"13914"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18771","_from":"3859","_to":"13879"} +{"$label":"ACTS_IN","name":"Billy Killer Boy","type":"Role","_key":"15606","_from":"3859","_to":"11901"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"14142","_from":"3859","_to":"10947"} +{"$label":"ACTS_IN","name":"Les Birk","type":"Role","_key":"12598","_from":"3859","_to":"9849"} +{"$label":"ACTS_IN","name":"Andrews","type":"Role","_key":"5098","_from":"3860","_to":"4328"} +{"$label":"ACTS_IN","name":"Ted Boynton","type":"Role","_key":"110011","_from":"3861","_to":"65007"} +{"$label":"ACTS_IN","name":"Charlie Black","type":"Role","_key":"104242","_from":"3861","_to":"61330"} +{"$label":"ACTS_IN","name":"Sorrow's Father","type":"Role","_key":"95645","_from":"3861","_to":"56251"} +{"$label":"DIRECTED","_key":"94628","_from":"3862","_to":"55757"} +{"$label":"DIRECTED","_key":"61967","_from":"3862","_to":"39003"} +{"$label":"DIRECTED","_key":"53313","_from":"3862","_to":"34466"} +{"$label":"DIRECTED","_key":"51047","_from":"3862","_to":"33309"} +{"$label":"DIRECTED","_key":"47603","_from":"3862","_to":"31370"} +{"$label":"DIRECTED","_key":"17591","_from":"3862","_to":"13140"} +{"$label":"DIRECTED","_key":"15415","_from":"3862","_to":"11787"} +{"$label":"ACTS_IN","name":"Famous Identifier of Sea Planes","type":"Role","_key":"4551","_from":"3879","_to":"3863"} +{"$label":"ACTS_IN","name":"Famous Villain with Deadly Hat","type":"Role","_key":"4550","_from":"3878","_to":"3863"} +{"$label":"ACTS_IN","name":"Famous Big Guy with Silver Teeth","type":"Role","_key":"4549","_from":"3877","_to":"3863"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"4548","_from":"3876","_to":"3863"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"4547","_from":"3875","_to":"3863"} +{"$label":"ACTS_IN","name":"Artemus Bradford","type":"Role","_key":"4546","_from":"3874","_to":"3863"} +{"$label":"ACTS_IN","name":"Gadgetmobile (voice)","type":"Role","_key":"4545","_from":"3873","_to":"3863"} +{"$label":"ACTS_IN","name":"Chief Quimby","type":"Role","_key":"4544","_from":"3872","_to":"3863"} +{"$label":"ACTS_IN","name":"Sikes","type":"Role","_key":"4543","_from":"3871","_to":"3863"} +{"$label":"ACTS_IN","name":"Mayor Wilson","type":"Role","_key":"4542","_from":"3870","_to":"3863"} +{"$label":"ACTS_IN","name":"Kramer","type":"Role","_key":"4541","_from":"3869","_to":"3863"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"4540","_from":"3868","_to":"3863"} +{"$label":"ACTS_IN","name":"Brenda \/ Robobrenda","type":"Role","_key":"4539","_from":"3867","_to":"3863"} +{"$label":"ACTS_IN","name":"Sanford Scolex","type":"Role","_key":"4538","_from":"3866","_to":"3863"} +{"$label":"ACTS_IN","name":"Inspector Gadget \/ Robo Gadget \/ John Brown","type":"Role","_key":"4537","_from":"3865","_to":"3863"} +{"$label":"DIRECTED","_key":"4536","_from":"3864","_to":"3863"} +{"$label":"ACTS_IN","name":"Eugene Morris Jerome","type":"Role","_key":"119964","_from":"3865","_to":"70458"} +{"$label":"ACTS_IN","name":"Jimmy Garrett","type":"Role","_key":"116059","_from":"3865","_to":"68347"} +{"$label":"ACTS_IN","name":"Brian Everett","type":"Role","_key":"99506","_from":"3865","_to":"58658"} +{"$label":"ACTS_IN","name":"Ben Green","type":"Role","_key":"93404","_from":"3865","_to":"55010"} +{"$label":"ACTS_IN","name":"Roger Beekman","type":"Role","_key":"92886","_from":"3865","_to":"54784"} +{"$label":"ACTS_IN","name":"Taylor Peters","type":"Role","_key":"92293","_from":"3865","_to":"54469"} +{"$label":"ACTS_IN","name":"Simba","type":"Role","_key":"69816","_from":"3865","_to":"42606"} +{"$label":"ACTS_IN","name":"Adam McMullen","type":"Role","_key":"64021","_from":"3865","_to":"39967"} +{"$label":"ACTS_IN","name":"William Lightbody","type":"Role","_key":"63492","_from":"3865","_to":"39759"} +{"$label":"ACTS_IN","name":"Despereaux","type":"Role","_key":"61656","_from":"3865","_to":"38847"} +{"$label":"ACTS_IN","name":"Clark Kellogg","type":"Role","_key":"61378","_from":"3865","_to":"38726"} +{"$label":"ACTS_IN","name":"Steve Finch","type":"Role","_key":"58714","_from":"3865","_to":"37088"} +{"$label":"ACTS_IN","name":"Leo Bloom","type":"Role","_key":"57724","_from":"3865","_to":"36543"} +{"$label":"ACTS_IN","name":"Steven M. Kovacs","type":"Role","_key":"57670","_from":"3865","_to":"36512"} +{"$label":"ACTS_IN","name":"Walter Kresby","type":"Role","_key":"57616","_from":"3865","_to":"36484"} +{"$label":"ACTS_IN","name":"Simba","type":"Role","_key":"56157","_from":"3865","_to":"35699"} +{"$label":"ACTS_IN","name":"Col. Robert Gould Shaw","type":"Role","_key":"55406","_from":"3865","_to":"35321"} +{"$label":"ACTS_IN","name":"Jim McAllister","type":"Role","_key":"53949","_from":"3865","_to":"34712"} +{"$label":"ACTS_IN","name":"Ferris Bueller","type":"Role","_key":"53449","_from":"3865","_to":"34532"} +{"$label":"ACTS_IN","name":"Adult Simba","type":"Role","_key":"50222","_from":"3865","_to":"32826"} +{"$label":"ACTS_IN","name":"Alan Simon","type":"Role","_key":"49941","_from":"3865","_to":"32693"} +{"$label":"ACTS_IN","name":"Adam Flayman","type":"Role","_key":"37852","_from":"3865","_to":"25647"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"17895","_from":"3865","_to":"13319"} +{"$label":"ACTS_IN","name":"Richard Feynman","type":"Role","_key":"17697","_from":"3865","_to":"13208"} +{"$label":"ACTS_IN","name":"Michael McPhae","type":"Role","_key":"15575","_from":"3865","_to":"11884"} +{"$label":"ACTS_IN","name":"Dr. Niko Tatopoulos","type":"Role","_key":"11072","_from":"3865","_to":"8755"} +{"$label":"ACTS_IN","name":"David Lightman","type":"Role","_key":"10221","_from":"3865","_to":"8154"} +{"$label":"ACTS_IN","name":"Phillipe Gaston","type":"Role","_key":"6334","_from":"3865","_to":"5358"} +{"$label":"DIRECTED","_key":"17696","_from":"3865","_to":"13208"} +{"$label":"ACTS_IN","name":"Leo Cauffield","type":"Role","_key":"119109","_from":"3866","_to":"70011"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"105636","_from":"3866","_to":"62179"} +{"$label":"ACTS_IN","name":"Camilla Fritton \/ Carnaby Fritton","type":"Role","_key":"65417","_from":"3866","_to":"40563"} +{"$label":"ACTS_IN","name":"Oberon","type":"Role","_key":"61723","_from":"3866","_to":"38874"} +{"$label":"ACTS_IN","name":"Algernon Moncrieff (\u201eAlgy\u201c)","type":"Role","_key":"52102","_from":"3866","_to":"33974"} +{"$label":"ACTS_IN","name":"George Downes","type":"Role","_key":"51211","_from":"3866","_to":"33396"} +{"$label":"ACTS_IN","name":"Jack Lowenthal","type":"Role","_key":"28145","_from":"3866","_to":"20177"} +{"$label":"ACTS_IN","name":"Paul Neville","type":"Role","_key":"24318","_from":"3866","_to":"17618"} +{"$label":"ACTS_IN","name":"Christopher Marlowe","type":"Role","_key":"16768","_from":"3866","_to":"12639"} +{"$label":"ACTS_IN","name":"Robert Whittaker","type":"Role","_key":"15801","_from":"3866","_to":"12033"} +{"$label":"ACTS_IN","name":"Prince Charming (voice)","type":"Role","_key":"9548","_from":"3866","_to":"7689"} +{"$label":"ACTS_IN","name":"Prince Charming (voice)","type":"Role","_key":"9535","_from":"3866","_to":"7683"} +{"$label":"ACTS_IN","name":"Fox","type":"Role","_key":"5242","_from":"3866","_to":"4445"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"115332","_from":"3868","_to":"67904"} +{"$label":"ACTS_IN","name":"Maggie O'Donnell","type":"Role","_key":"110787","_from":"3868","_to":"65438"} +{"$label":"ACTS_IN","name":"Casey Carlyle","type":"Role","_key":"94162","_from":"3868","_to":"55445"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"68315","_from":"3868","_to":"41932"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"55337","_from":"3868","_to":"35281"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"53300","_from":"3868","_to":"34458"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"43629","_from":"3868","_to":"29130"} +{"$label":"ACTS_IN","name":"Taddy","type":"Role","_key":"121562","_from":"3869","_to":"71425"} +{"$label":"ACTS_IN","name":"Dylan \/ Curious Shark (voice)","type":"Role","_key":"120521","_from":"3869","_to":"70788"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"102746","_from":"3869","_to":"60442"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100592","_from":"3869","_to":"59319"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100570","_from":"3869","_to":"59315"} +{"$label":"ACTS_IN","name":"Jack Kaufman","type":"Role","_key":"89730","_from":"3869","_to":"53116"} +{"$label":"ACTS_IN","name":"Toilet Bowl Referee","type":"Role","_key":"65550","_from":"3869","_to":"40621"} +{"$label":"ACTS_IN","name":"Lon","type":"Role","_key":"56879","_from":"3869","_to":"36109"} +{"$label":"ACTS_IN","name":"Mambo","type":"Role","_key":"37164","_from":"3869","_to":"25176"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"66574","_from":"3870","_to":"41149"} +{"$label":"ACTS_IN","name":"Doreen Nickle","type":"Role","_key":"57840","_from":"3870","_to":"36606"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"14516","_from":"3871","_to":"11198"} +{"$label":"ACTS_IN","name":"Franklin M. Hart Jr.","type":"Role","_key":"120223","_from":"3872","_to":"70600"} +{"$label":"ACTS_IN","name":"Mark Winslow","type":"Role","_key":"109323","_from":"3872","_to":"64585"} +{"$label":"ACTS_IN","name":"Martin Price","type":"Role","_key":"72640","_from":"3872","_to":"43777"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"66614","_from":"3872","_to":"41179"} +{"$label":"ACTS_IN","name":"Drake Bishop","type":"Role","_key":"58131","_from":"3872","_to":"36776"} +{"$label":"ACTS_IN","name":"Ron Carlisle","type":"Role","_key":"54798","_from":"3872","_to":"35059"} +{"$label":"ACTS_IN","name":"Gerald Ellis","type":"Role","_key":"23482","_from":"3872","_to":"17023"} +{"$label":"ACTS_IN","name":"Dr. John McKittrick","type":"Role","_key":"10222","_from":"3872","_to":"8154"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"90858","_from":"3873","_to":"53609"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"108921","_from":"3874","_to":"64366"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"91971","_from":"3874","_to":"54261"} +{"$label":"ACTS_IN","name":"Roy Bagley","type":"Role","_key":"65305","_from":"3874","_to":"40529"} +{"$label":"ACTS_IN","name":"Louis (voice)","type":"Role","_key":"61218","_from":"3874","_to":"38669"} +{"$label":"ACTS_IN","name":"Father Mulcahy","type":"Role","_key":"7781","_from":"3874","_to":"6460"} +{"$label":"ACTS_IN","name":"Arizona Motel Clerk","type":"Role","_key":"115019","_from":"3875","_to":"67722"} +{"$label":"ACTS_IN","name":"Nanna","type":"Role","_key":"60886","_from":"3875","_to":"38466"} +{"$label":"ACTS_IN","name":"Mrs. Steiner","type":"Role","_key":"57642","_from":"3875","_to":"36493"} +{"$label":"ACTS_IN","name":"Grandma Gilmore","type":"Role","_key":"55060","_from":"3875","_to":"35171"} +{"$label":"ACTS_IN","name":"Mrs. Darmsetter","type":"Role","_key":"37674","_from":"3875","_to":"25539"} +{"$label":"ACTS_IN","name":"Dottie","type":"Role","_key":"17540","_from":"3875","_to":"13103"} +{"$label":"ACTS_IN","name":"Mrs. Tremond (Chalfont)","type":"Role","_key":"16651","_from":"3875","_to":"12568"} +{"$label":"ACTS_IN","name":"Aunt Barbara","type":"Role","_key":"9357","_from":"3875","_to":"7553"} +{"$label":"ACTS_IN","name":"Clubber Lang","type":"Role","_key":"12721","_from":"3876","_to":"9935"} +{"$label":"ACTS_IN","name":"Drazak","type":"Role","_key":"111947","_from":"3877","_to":"66083"} +{"$label":"ACTS_IN","name":"Arnold, Mitsubishi Driver","type":"Role","_key":"72932","_from":"3877","_to":"43910"} +{"$label":"ACTS_IN","name":"Club","type":"Role","_key":"51244","_from":"3877","_to":"33417"} +{"$label":"ACTS_IN","name":"Big G","type":"Role","_key":"22477","_from":"3877","_to":"16337"} +{"$label":"ACTS_IN","name":"Jaws","type":"Role","_key":"8409","_from":"3877","_to":"6873"} +{"$label":"ACTS_IN","name":"Jaws","type":"Role","_key":"8316","_from":"3877","_to":"6815"} +{"$label":"ACTS_IN","name":"Old Wizard","type":"Role","_key":"59217","_from":"3878","_to":"37387"} +{"$label":"ACTS_IN","name":"Foul Phil - Suit (as Robert Bell)","type":"Role","_key":"100308","_from":"3879","_to":"59141"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"4578","_from":"3907","_to":"3880"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"4577","_from":"3906","_to":"3880"} +{"$label":"ACTS_IN","name":"Bobby's Sister","type":"Role","_key":"4576","_from":"3905","_to":"3880"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"4575","_from":"3904","_to":"3880"} +{"$label":"ACTS_IN","name":"Rahul's Friend at Wedding","type":"Role","_key":"4574","_from":"3903","_to":"3880"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"4573","_from":"3902","_to":"3880"} +{"$label":"ACTS_IN","name":"Young Rahul","type":"Role","_key":"4572","_from":"3901","_to":"3880"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"4571","_from":"3900","_to":"3880"} +{"$label":"ACTS_IN","name":"Bobby's Mom","type":"Role","_key":"4570","_from":"3899","_to":"3880"} +{"$label":"ACTS_IN","name":"Stevie Sood (as Damon D'Olivera)","type":"Role","_key":"4569","_from":"3898","_to":"3880"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"4568","_from":"3897","_to":"3880"} +{"$label":"ACTS_IN","name":"Ronica","type":"Role","_key":"4567","_from":"3896","_to":"3880"} +{"$label":"ACTS_IN","name":"Daddy ji","type":"Role","_key":"4566","_from":"3895","_to":"3880"} +{"$label":"ACTS_IN","name":"Killer Khalsa (as Killer Khalsa)","type":"Role","_key":"4565","_from":"3894","_to":"3880"} +{"$label":"ACTS_IN","name":"Mrs. Singh","type":"Role","_key":"4564","_from":"3893","_to":"3880"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"4563","_from":"3892","_to":"3880"} +{"$label":"ACTS_IN","name":"Go (Govind)","type":"Role","_key":"4562","_from":"3891","_to":"3880"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"4561","_from":"3890","_to":"3880"} +{"$label":"ACTS_IN","name":"Twinky","type":"Role","_key":"4560","_from":"3889","_to":"3880"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"4559","_from":"3888","_to":"3880"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"4558","_from":"3887","_to":"3880"} +{"$label":"ACTS_IN","name":"Mr. Singh","type":"Role","_key":"4557","_from":"3886","_to":"3880"} +{"$label":"ACTS_IN","name":"Grandma ji","type":"Role","_key":"4556","_from":"3885","_to":"3880"} +{"$label":"ACTS_IN","name":"Mummy ji","type":"Role","_key":"4555","_from":"3884","_to":"3880"} +{"$label":"ACTS_IN","name":"Sue (Sunita) Singh","type":"Role","_key":"4554","_from":"3883","_to":"3880"} +{"$label":"ACTS_IN","name":"Rahul Seth","type":"Role","_key":"4553","_from":"3882","_to":"3880"} +{"$label":"DIRECTED","_key":"4552","_from":"3881","_to":"3880"} +{"$label":"DIRECTED","_key":"46961","_from":"3881","_to":"30971"} +{"$label":"DIRECTED","_key":"46924","_from":"3881","_to":"30943"} +{"$label":"DIRECTED","_key":"6226","_from":"3881","_to":"5276"} +{"$label":"ACTS_IN","name":"Vikram Joshi","type":"Role","_key":"120788","_from":"3882","_to":"70943"} +{"$label":"ACTS_IN","name":"Fleur","type":"Role","_key":"117718","_from":"3883","_to":"69199"} +{"$label":"ACTS_IN","name":"Etta Parr","type":"Role","_key":"66689","_from":"3883","_to":"41203"} +{"$label":"ACTS_IN","name":"Kalyani","type":"Role","_key":"46962","_from":"3883","_to":"30971"} +{"$label":"ACTS_IN","name":"Bhuvan's mother","type":"Role","_key":"106307","_from":"3885","_to":"62621"} +{"$label":"ACTS_IN","name":"Raja Puran Singh","type":"Role","_key":"120841","_from":"3886","_to":"70961"} +{"$label":"ACTS_IN","name":"Imam Din","type":"Role","_key":"46931","_from":"3886","_to":"30943"} +{"$label":"ACTS_IN","name":"Victoria 'Tori' Moller","type":"Role","_key":"113330","_from":"3888","_to":"66763"} +{"$label":"ACTS_IN","name":"Chandramukhi 'Candy' Unadkat","type":"Role","_key":"111860","_from":"3889","_to":"66033"} +{"$label":"ACTS_IN","name":"Snehalata","type":"Role","_key":"46969","_from":"3889","_to":"30971"} +{"$label":"ACTS_IN","name":"Rajeev Singh","type":"Role","_key":"120755","_from":"3907","_to":"70935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108798","_from":"3907","_to":"64303"} +{"$label":"ACTS_IN","name":"Sidhartha","type":"Role","_key":"101646","_from":"3907","_to":"59825"} +{"$label":"ACTS_IN","name":"MP Raja Uday Singh","type":"Role","_key":"98775","_from":"3907","_to":"58204"} +{"$label":"ACTS_IN","name":"Worm","type":"Role","_key":"4595","_from":"3918","_to":"3908"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"4594","_from":"3917","_to":"3908"} +{"$label":"ACTS_IN","name":"Gwenovier","type":"Role","_key":"4593","_from":"3916","_to":"3908"} +{"$label":"ACTS_IN","name":"Rose Gator","type":"Role","_key":"4592","_from":"3915","_to":"3908"} +{"$label":"ACTS_IN","name":"Dixon","type":"Role","_key":"4591","_from":"3914","_to":"3908"} +{"$label":"ACTS_IN","name":"Stanley Spector","type":"Role","_key":"4590","_from":"3913","_to":"3908"} +{"$label":"ACTS_IN","name":"Claudia Wilson Gator","type":"Role","_key":"4588","_from":"3912","_to":"3908"} +{"$label":"ACTS_IN","name":"Earl Partridge","type":"Role","_key":"4586","_from":"3911","_to":"3908"} +{"$label":"ACTS_IN","name":"Jim Kurring","type":"Role","_key":"4582","_from":"3910","_to":"3908"} +{"$label":"DIRECTED","_key":"4579","_from":"3909","_to":"3908"} +{"$label":"DIRECTED","_key":"47879","_from":"3909","_to":"31513"} +{"$label":"DIRECTED","_key":"47872","_from":"3909","_to":"31510"} +{"$label":"DIRECTED","_key":"46560","_from":"3909","_to":"30757"} +{"$label":"DIRECTED","_key":"35436","_from":"3909","_to":"24109"} +{"$label":"ACTS_IN","name":"Richard Gaddis","type":"Role","_key":"99008","_from":"3910","_to":"58328"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"95287","_from":"3910","_to":"56059"} +{"$label":"ACTS_IN","name":"Richard Wehlner","type":"Role","_key":"93167","_from":"3910","_to":"54906"} +{"$label":"ACTS_IN","name":"5 (voice)","type":"Role","_key":"89002","_from":"3910","_to":"52724"} +{"$label":"ACTS_IN","name":"Dale Doback","type":"Role","_key":"88209","_from":"3910","_to":"52337"} +{"$label":"ACTS_IN","name":"Pete Connelly","type":"Role","_key":"63072","_from":"3910","_to":"39574"} +{"$label":"ACTS_IN","name":"Tigers catcher Gus Sinski","type":"Role","_key":"62958","_from":"3910","_to":"39536"} +{"$label":"ACTS_IN","name":"Private Herbert Hatcher","type":"Role","_key":"61212","_from":"3910","_to":"38667"} +{"$label":"ACTS_IN","name":"Phil Last","type":"Role","_key":"58601","_from":"3910","_to":"37025"} +{"$label":"ACTS_IN","name":"Cal Naughton, Jr.","type":"Role","_key":"55956","_from":"3910","_to":"35579"} +{"$label":"ACTS_IN","name":"Mr. Murray","type":"Role","_key":"51976","_from":"3910","_to":"33896"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"51856","_from":"3910","_to":"33833"} +{"$label":"ACTS_IN","name":"Sgt. Storm","type":"Role","_key":"50638","_from":"3910","_to":"33066"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"47882","_from":"3910","_to":"31513"} +{"$label":"ACTS_IN","name":"Dewey Cox","type":"Role","_key":"44093","_from":"3910","_to":"29399"} +{"$label":"ACTS_IN","name":"Young Monk","type":"Role","_key":"40891","_from":"3910","_to":"27510"} +{"$label":"ACTS_IN","name":"Reed Rothchild","type":"Role","_key":"35439","_from":"3910","_to":"24109"} +{"$label":"ACTS_IN","name":"Happy Jack","type":"Role","_key":"26224","_from":"3910","_to":"18837"} +{"$label":"ACTS_IN","name":"Noah Dietrich","type":"Role","_key":"21991","_from":"3910","_to":"16058"} +{"$label":"ACTS_IN","name":"Dale \" Murp \" Murphy","type":"Role","_key":"18553","_from":"3910","_to":"13731"} +{"$label":"ACTS_IN","name":"Buck Bretherton","type":"Role","_key":"18483","_from":"3910","_to":"13689"} +{"$label":"ACTS_IN","name":"Stevie McGuire","type":"Role","_key":"14771","_from":"3910","_to":"11361"} +{"$label":"ACTS_IN","name":"Tucker Van Dyke","type":"Role","_key":"14062","_from":"3910","_to":"10899"} +{"$label":"ACTS_IN","name":"Amos Hart","type":"Role","_key":"13933","_from":"3910","_to":"10805"} +{"$label":"ACTS_IN","name":"Dan Brown","type":"Role","_key":"7081","_from":"3910","_to":"5922"} +{"$label":"ACTS_IN","name":"Coleman Ettinger","type":"Role","_key":"103338","_from":"3911","_to":"60792"} +{"$label":"ACTS_IN","name":"Graham Keighley","type":"Role","_key":"89202","_from":"3911","_to":"52823"} +{"$label":"ACTS_IN","name":"Gunther Beckdorff","type":"Role","_key":"71805","_from":"3911","_to":"43458"} +{"$label":"ACTS_IN","name":"Lt. General Walter C. Short","type":"Role","_key":"68263","_from":"3911","_to":"41908"} +{"$label":"ACTS_IN","name":"Chief Rotzinger","type":"Role","_key":"65296","_from":"3911","_to":"40526"} +{"$label":"ACTS_IN","name":"Dr. Russell Oakes","type":"Role","_key":"45696","_from":"3911","_to":"30247"} +{"$label":"ACTS_IN","name":"Lou Craddock","type":"Role","_key":"34748","_from":"3911","_to":"23755"} +{"$label":"ACTS_IN","name":"Max Dunga","type":"Role","_key":"15573","_from":"3911","_to":"11884"} +{"$label":"ACTS_IN","name":"Ben Bradlee","type":"Role","_key":"10614","_from":"3911","_to":"8423"} +{"$label":"ACTS_IN","name":"Cheyenne","type":"Role","_key":"4599","_from":"3911","_to":"3919"} +{"$label":"ACTS_IN","name":"Melinda","type":"Role","_key":"109217","_from":"3912","_to":"64530"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"102340","_from":"3912","_to":"60214"} +{"$label":"ACTS_IN","name":"Jimmy's Girl","type":"Role","_key":"47886","_from":"3912","_to":"31513"} +{"$label":"ACTS_IN","name":"Bennie Harper","type":"Role","_key":"18261","_from":"3912","_to":"13549"} +{"$label":"ACTS_IN","name":"Andrea Treborn","type":"Role","_key":"16943","_from":"3912","_to":"12723"} +{"$label":"ACTS_IN","name":"Mrs. Rogers","type":"Role","_key":"98019","_from":"3915","_to":"57719"} +{"$label":"ACTS_IN","name":"Savannah Wingo","type":"Role","_key":"62644","_from":"3915","_to":"39408"} +{"$label":"ACTS_IN","name":"Nancy Henderson","type":"Role","_key":"51866","_from":"3915","_to":"33836"} +{"$label":"ACTS_IN","name":"Mrs. Parker","type":"Role","_key":"10066","_from":"3915","_to":"8057"} +{"$label":"ACTS_IN","name":"Gillian Guiler","type":"Role","_key":"9917","_from":"3915","_to":"7948"} +{"$label":"ACTS_IN","name":"Ellie Brilliard","type":"Role","_key":"59298","_from":"3916","_to":"37449"} +{"$label":"ACTS_IN","name":"TV Personality","type":"Role","_key":"43617","_from":"3916","_to":"29124"} +{"$label":"ACTS_IN","name":"Mae Simmons","type":"Role","_key":"9958","_from":"3916","_to":"7967"} +{"$label":"ACTS_IN","name":"Valery","type":"Role","_key":"9738","_from":"3916","_to":"7817"} +{"$label":"ACTS_IN","name":"Ms. Joyce","type":"Role","_key":"8599","_from":"3916","_to":"6989"} +{"$label":"ACTS_IN","name":"Dr. Leslie Archer","type":"Role","_key":"6739","_from":"3916","_to":"5655"} +{"$label":"ACTS_IN","name":"Hillary Lichten","type":"Role","_key":"118633","_from":"3917","_to":"69753"} +{"$label":"ACTS_IN","name":"Merry","type":"Role","_key":"95827","_from":"3917","_to":"56354"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"93057","_from":"3917","_to":"54863"} +{"$label":"ACTS_IN","name":"Lindsay Davis","type":"Role","_key":"32946","_from":"3917","_to":"22845"} +{"$label":"ACTS_IN","name":"Bree","type":"Role","_key":"6501","_from":"3917","_to":"5505"} +{"$label":"ACTS_IN","name":"Daryl Chase","type":"Role","_key":"117665","_from":"3918","_to":"69164"} +{"$label":"ACTS_IN","name":"Dr. Lee","type":"Role","_key":"94827","_from":"3918","_to":"55842"} +{"$label":"ACTS_IN","name":"Soul Train","type":"Role","_key":"89059","_from":"3918","_to":"52762"} +{"$label":"ACTS_IN","name":"Clifford Franklin","type":"Role","_key":"62973","_from":"3918","_to":"39541"} +{"$label":"ACTS_IN","name":"Prof. Harry Phineas Block","type":"Role","_key":"53600","_from":"3918","_to":"34589"} +{"$label":"ACTS_IN","name":"Steven Johnson","type":"Role","_key":"30763","_from":"3918","_to":"21565"} +{"$label":"ACTS_IN","name":"Daniel\/Dan\/Danny, Esteban, Beach Jock, Lamar Garrett, Dr. Ngegitigegitibaba","type":"Role","_key":"14493","_from":"3918","_to":"11191"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"4607","_from":"3928","_to":"3919"} +{"$label":"ACTS_IN","name":"Brett McBain","type":"Role","_key":"4606","_from":"3927","_to":"3919"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"4605","_from":"3926","_to":"3919"} +{"$label":"ACTS_IN","name":"Stony (member of Frank's gang)","type":"Role","_key":"4603","_from":"3925","_to":"3919"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"4602","_from":"3924","_to":"3919"} +{"$label":"ACTS_IN","name":"Morton (railroad baron)","type":"Role","_key":"4601","_from":"3923","_to":"3919"} +{"$label":"ACTS_IN","name":"Harmonica","type":"Role","_key":"4600","_from":"3922","_to":"3919"} +{"$label":"ACTS_IN","name":"Jill McBain","type":"Role","_key":"4598","_from":"3921","_to":"3919"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"4597","_from":"3920","_to":"3919"} +{"$label":"ACTS_IN","name":"Robert Leffingwell","type":"Role","_key":"111442","_from":"3920","_to":"65805"} +{"$label":"ACTS_IN","name":"Lt Col Kiley","type":"Role","_key":"95023","_from":"3920","_to":"55943"} +{"$label":"ACTS_IN","name":"Jethro Stuart","type":"Role","_key":"72612","_from":"3920","_to":"43773"} +{"$label":"ACTS_IN","name":"Norman Thayer Jr.","type":"Role","_key":"72153","_from":"3920","_to":"43611"} +{"$label":"ACTS_IN","name":"Pierre Bezukhov","type":"Role","_key":"71677","_from":"3920","_to":"43395"} +{"$label":"ACTS_IN","name":"Adm. Chester W. Nimitz","type":"Role","_key":"69764","_from":"3920","_to":"42583"} +{"$label":"ACTS_IN","name":"Simon Davenport","type":"Role","_key":"64950","_from":"3920","_to":"40377"} +{"$label":"ACTS_IN","name":"Jack Beauregard","type":"Role","_key":"54088","_from":"3920","_to":"34779"} +{"$label":"ACTS_IN","name":"Brig. Gen. Theodore Roosevelt jr.","type":"Role","_key":"52897","_from":"3920","_to":"34285"} +{"$label":"ACTS_IN","name":"Bob Larkin","type":"Role","_key":"34931","_from":"3920","_to":"23859"} +{"$label":"ACTS_IN","name":"Commissioner Anthony X. Russell","type":"Role","_key":"34899","_from":"3920","_to":"23845"} +{"$label":"ACTS_IN","name":"Wyatt Earp","type":"Role","_key":"25673","_from":"3920","_to":"18485"} +{"$label":"ACTS_IN","name":"Charles Pike","type":"Role","_key":"25641","_from":"3920","_to":"18462"} +{"$label":"ACTS_IN","name":"Preston Dillard","type":"Role","_key":"17120","_from":"3920","_to":"12831"} +{"$label":"ACTS_IN","name":"Gil Carter","type":"Role","_key":"11580","_from":"3920","_to":"9099"} +{"$label":"ACTS_IN","name":"Tom Joad","type":"Role","_key":"7167","_from":"3920","_to":"5991"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"6057","_from":"3920","_to":"5141"} +{"$label":"ACTS_IN","name":"Juror 8 (Mr. Davis)","type":"Role","_key":"4979","_from":"3920","_to":"4235"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120639","_from":"3921","_to":"70851"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"53236","_from":"3921","_to":"34426"} +{"$label":"ACTS_IN","name":"Ginetta","type":"Role","_key":"49622","_from":"3921","_to":"32475"} +{"$label":"ACTS_IN","name":"Nurse Valeria","type":"Role","_key":"47978","_from":"3921","_to":"31567"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39496","_from":"3921","_to":"26693"} +{"$label":"ACTS_IN","name":"Lucia Esposito","type":"Role","_key":"34035","_from":"3921","_to":"23407"} +{"$label":"ACTS_IN","name":"Duchesse de Polignac","type":"Role","_key":"30217","_from":"3921","_to":"21284"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"25268","_from":"3921","_to":"18220"} +{"$label":"ACTS_IN","name":"Die Ehebrecherin","type":"Role","_key":"21132","_from":"3921","_to":"15473"} +{"$label":"ACTS_IN","name":"Angelica Sedara\/Bertiana","type":"Role","_key":"11823","_from":"3921","_to":"9274"} +{"$label":"ACTS_IN","name":"Princess Dala","type":"Role","_key":"11177","_from":"3921","_to":"8842"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"5297","_from":"3921","_to":"4493"} +{"$label":"ACTS_IN","name":"Ben Hastings","type":"Role","_key":"120629","_from":"3922","_to":"70847"} +{"$label":"ACTS_IN","name":"Arthur Bishop","type":"Role","_key":"120033","_from":"3922","_to":"70493"} +{"$label":"ACTS_IN","name":"Lew Nyack","type":"Role","_key":"117099","_from":"3922","_to":"68902"} +{"$label":"ACTS_IN","name":"Leo Kessler","type":"Role","_key":"116727","_from":"3922","_to":"68712"} +{"$label":"ACTS_IN","name":"Matson","type":"Role","_key":"113676","_from":"3922","_to":"66988"} +{"$label":"ACTS_IN","name":"Paul Kersey","type":"Role","_key":"99856","_from":"3922","_to":"58893"} +{"$label":"ACTS_IN","name":"Paul Kersey","type":"Role","_key":"97585","_from":"3922","_to":"57463"} +{"$label":"ACTS_IN","name":"Maj. Wolenski","type":"Role","_key":"95031","_from":"3922","_to":"55943"} +{"$label":"ACTS_IN","name":"Pittsburgh","type":"Role","_key":"91398","_from":"3922","_to":"53906"} +{"$label":"ACTS_IN","name":"Link Stuart","type":"Role","_key":"72310","_from":"3922","_to":"43679"} +{"$label":"ACTS_IN","name":"Gifford Hoyt","type":"Role","_key":"71802","_from":"3922","_to":"43458"} +{"$label":"ACTS_IN","name":"Jeb Maynard","type":"Role","_key":"50070","_from":"3922","_to":"32761"} +{"$label":"ACTS_IN","name":"Deakin","type":"Role","_key":"47828","_from":"3922","_to":"31490"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"43579","_from":"3922","_to":"29106"} +{"$label":"ACTS_IN","name":"Flight Lt. Danny Velinski","type":"Role","_key":"40473","_from":"3922","_to":"27264"} +{"$label":"ACTS_IN","name":"Franz Propp","type":"Role","_key":"34410","_from":"3922","_to":"23581"} +{"$label":"ACTS_IN","name":"Sgt. John Danforth","type":"Role","_key":"34212","_from":"3922","_to":"23489"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"33320","_from":"3922","_to":"23089"} +{"$label":"ACTS_IN","name":"Russian Agent","type":"Role","_key":"31882","_from":"3922","_to":"22241"} +{"$label":"ACTS_IN","name":"Joseph Wladislaw","type":"Role","_key":"14688","_from":"3922","_to":"11307"} +{"$label":"ACTS_IN","name":"Bernardo O'Reilly","type":"Role","_key":"11482","_from":"3922","_to":"9032"} +{"$label":"ACTS_IN","name":"Sandro","type":"Role","_key":"36193","_from":"3923","_to":"24558"} +{"$label":"ACTS_IN","name":"Giacomo Puccini","type":"Role","_key":"28420","_from":"3923","_to":"20326"} +{"$label":"ACTS_IN","name":"Pablo Moncada","type":"Role","_key":"26966","_from":"3923","_to":"19397"} +{"$label":"ACTS_IN","name":"Lot","type":"Role","_key":"21857","_from":"3923","_to":"15962"} +{"$label":"ACTS_IN","name":"Marc Ange Draco","type":"Role","_key":"7987","_from":"3923","_to":"6617"} +{"$label":"ACTS_IN","name":"Pope Alexander III","type":"Role","_key":"104341","_from":"3924","_to":"61385"} +{"$label":"ACTS_IN","name":"Giovanni Ricordi","type":"Role","_key":"28425","_from":"3924","_to":"20326"} +{"$label":"ACTS_IN","name":"Don Calogero Sedara","type":"Role","_key":"11824","_from":"3924","_to":"9274"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"90073","_from":"3925","_to":"53274"} +{"$label":"ACTS_IN","name":"King of Ethiopia","type":"Role","_key":"44971","_from":"3925","_to":"29886"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"44277","_from":"3925","_to":"29509"} +{"$label":"ACTS_IN","name":"Sengal","type":"Role","_key":"34442","_from":"3925","_to":"23592"} +{"$label":"ACTS_IN","name":"Draba","type":"Role","_key":"11503","_from":"3925","_to":"9041"} +{"$label":"ACTS_IN","name":"Harry McKenna ['Big Harry']","type":"Role","_key":"120035","_from":"3926","_to":"70493"} +{"$label":"ACTS_IN","name":"Ronnie Hastings","type":"Role","_key":"117176","_from":"3926","_to":"68936"} +{"$label":"ACTS_IN","name":"Clarence 'Clinker' Krause","type":"Role","_key":"101007","_from":"3926","_to":"59526"} +{"$label":"ACTS_IN","name":"Winter Warlock","type":"Role","_key":"94306","_from":"3926","_to":"55537"} +{"$label":"ACTS_IN","name":"Novak","type":"Role","_key":"91152","_from":"3926","_to":"53770"} +{"$label":"ACTS_IN","name":"Alonzo P Hawk","type":"Role","_key":"66379","_from":"3926","_to":"41053"} +{"$label":"ACTS_IN","name":"Captain Cully \/ Harpy","type":"Role","_key":"61257","_from":"3926","_to":"38678"} +{"$label":"ACTS_IN","name":"Jed Curry","type":"Role","_key":"34992","_from":"3926","_to":"23888"} +{"$label":"ACTS_IN","name":"Mr. Green","type":"Role","_key":"26156","_from":"3926","_to":"18778"} +{"$label":"ACTS_IN","name":"Marcia Linnekar's attorney (uncredited)","type":"Role","_key":"13438","_from":"3926","_to":"10442"} +{"$label":"ACTS_IN","name":"Colonel Bat Guano","type":"Role","_key":"11168","_from":"3926","_to":"8839"} +{"$label":"ACTS_IN","name":"Sheriff Burnett","type":"Role","_key":"52120","_from":"3927","_to":"33979"} +{"$label":"ACTS_IN","name":"Grr","type":"Role","_key":"47856","_from":"3927","_to":"31498"} +{"$label":"ACTS_IN","name":"Paola's husband","type":"Role","_key":"26984","_from":"3927","_to":"19403"} +{"$label":"ACTS_IN","name":"The Guru Brahmin","type":"Role","_key":"108571","_from":"3928","_to":"64161"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"91326","_from":"3928","_to":"53862"} +{"$label":"ACTS_IN","name":"Tony Harwell","type":"Role","_key":"90758","_from":"3928","_to":"53566"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"33918","_from":"3928","_to":"23357"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"28604","_from":"3928","_to":"20444"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"4618","_from":"3938","_to":"3929"} +{"$label":"ACTS_IN","name":"John's friend Sean Nolan","type":"Role","_key":"4617","_from":"3937","_to":"3929"} +{"$label":"ACTS_IN","name":"John's girlfriend","type":"Role","_key":"4616","_from":"3936","_to":"3929"} +{"$label":"ACTS_IN","name":"Gutierez\/Col. G\u00fcnther Reza","type":"Role","_key":"4615","_from":"3935","_to":"3929"} +{"$label":"ACTS_IN","name":"Dr. Villega","type":"Role","_key":"4614","_from":"3934","_to":"3929"} +{"$label":"ACTS_IN","name":"General Huerta","type":"Role","_key":"4613","_from":"3933","_to":"3929"} +{"$label":"ACTS_IN","name":"Santerna","type":"Role","_key":"4612","_from":"3932","_to":"3929"} +{"$label":"ACTS_IN","name":"Adelita","type":"Role","_key":"4611","_from":"3931","_to":"3929"} +{"$label":"ACTS_IN","name":"John H. Mallory","type":"Role","_key":"4609","_from":"3930","_to":"3929"} +{"$label":"ACTS_IN","name":"Immigration Officer","type":"Role","_key":"108561","_from":"3930","_to":"64161"} +{"$label":"ACTS_IN","name":"James 'Thunder Jack' Johnson","type":"Role","_key":"72563","_from":"3930","_to":"43760"} +{"$label":"ACTS_IN","name":"Sheriff Pat Garrett","type":"Role","_key":"70836","_from":"3930","_to":"43058"} +{"$label":"ACTS_IN","name":"Capt. Vinton Maddox","type":"Role","_key":"69765","_from":"3930","_to":"42583"} +{"$label":"ACTS_IN","name":"Unteroffizier \/ Feldwebel Rolf Steiner","type":"Role","_key":"66098","_from":"3930","_to":"40895"} +{"$label":"ACTS_IN","name":"Commodore Duvall","type":"Role","_key":"53342","_from":"3930","_to":"34482"} +{"$label":"ACTS_IN","name":"Harlan Hartley","type":"Role","_key":"53150","_from":"3930","_to":"34385"} +{"$label":"ACTS_IN","name":"George Kaplan","type":"Role","_key":"52937","_from":"3930","_to":"34303"} +{"$label":"ACTS_IN","name":"WitSec Chief Beller","type":"Role","_key":"52722","_from":"3930","_to":"34221"} +{"$label":"ACTS_IN","name":"Mr. Crisp","type":"Role","_key":"42787","_from":"3930","_to":"28626"} +{"$label":"ACTS_IN","name":"Flying Officer Louis Sedgwick \"The Manufacturer\"","type":"Role","_key":"40475","_from":"3930","_to":"27264"} +{"$label":"ACTS_IN","name":"Tex Panthollow","type":"Role","_key":"34127","_from":"3930","_to":"23444"} +{"$label":"ACTS_IN","name":"Britt","type":"Role","_key":"11485","_from":"3930","_to":"9032"} +{"$label":"ACTS_IN","name":"Waternoose","type":"Role","_key":"7017","_from":"3930","_to":"5882"} +{"$label":"ACTS_IN","name":"Mrs. Erickson","type":"Role","_key":"44227","_from":"3931","_to":"29470"} +{"$label":"ACTS_IN","name":"Captain Lazaro Verdoja","type":"Role","_key":"119170","_from":"3932","_to":"70030"} +{"$label":"ACTS_IN","name":"Captain Lazoro Verdoja","type":"Role","_key":"119162","_from":"3932","_to":"70028"} +{"$label":"ACTS_IN","name":"The Schut Nirwan","type":"Role","_key":"90227","_from":"3932","_to":"53349"} +{"$label":"ACTS_IN","name":"Murdoch","type":"Role","_key":"64771","_from":"3932","_to":"40310"} +{"$label":"ACTS_IN","name":"Rollins","type":"Role","_key":"45749","_from":"3932","_to":"30269"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34505","_from":"3932","_to":"23625"} +{"$label":"ACTS_IN","name":"Sambigliong","type":"Role","_key":"33703","_from":"3932","_to":"23254"} +{"$label":"ACTS_IN","name":"Hoteldirektor","type":"Role","_key":"44343","_from":"3934","_to":"29549"} +{"$label":"ACTS_IN","name":"padre di Girogio","type":"Role","_key":"34015","_from":"3934","_to":"23398"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"28834","_from":"3934","_to":"20607"} +{"$label":"ACTS_IN","name":"Pater Pirrone","type":"Role","_key":"11827","_from":"3934","_to":"9274"} +{"$label":"ACTS_IN","name":"Schweick","type":"Role","_key":"119219","_from":"3935","_to":"70047"} +{"$label":"ACTS_IN","name":"Gardien","type":"Role","_key":"40244","_from":"3935","_to":"27158"} +{"$label":"ACTS_IN","name":"Deutscher Soldat","type":"Role","_key":"27371","_from":"3935","_to":"19664"} +{"$label":"ACTS_IN","name":"Dr. John McCabe","type":"Role","_key":"119217","_from":"3937","_to":"70047"} +{"$label":"ACTS_IN","name":"Sir Charles Walker","type":"Role","_key":"38444","_from":"3937","_to":"25966"} +{"$label":"DIRECTED","_key":"4632","_from":"3953","_to":"3939"} +{"$label":"ACTS_IN","name":"Momo \u00e0 30 ans","type":"Role","_key":"4631","_from":"3952","_to":"3939"} +{"$label":"ACTS_IN","name":"Policier","type":"Role","_key":"4630","_from":"3951","_to":"3939"} +{"$label":"ACTS_IN","name":"R\u00e9alisateur","type":"Role","_key":"4629","_from":"3950","_to":"3939"} +{"$label":"ACTS_IN","name":"Vendeur de Voitures","type":"Role","_key":"4628","_from":"3949","_to":"3939"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"4627","_from":"3948","_to":"3939"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"4626","_from":"3947","_to":"3939"} +{"$label":"ACTS_IN","name":"Fatou","type":"Role","_key":"4625","_from":"3946","_to":"3939"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"4624","_from":"3945","_to":"3939"} +{"$label":"ACTS_IN","name":"Myriam","type":"Role","_key":"4623","_from":"3944","_to":"3939"} +{"$label":"ACTS_IN","name":"M\u00e8re de Momo","type":"Role","_key":"4622","_from":"3943","_to":"3939"} +{"$label":"ACTS_IN","name":"P\u00e8re de Momo","type":"Role","_key":"4621","_from":"3942","_to":"3939"} +{"$label":"ACTS_IN","name":"Mo\u00efse","type":"Role","_key":"4620","_from":"3941","_to":"3939"} +{"$label":"ACTS_IN","name":"Monsieur Ibrahim","type":"Role","_key":"4619","_from":"3940","_to":"3939"} +{"$label":"ACTS_IN","name":"Colorado","type":"Role","_key":"114944","_from":"3940","_to":"67699"} +{"$label":"ACTS_IN","name":"Konstantine","type":"Role","_key":"113544","_from":"3940","_to":"66900"} +{"$label":"ACTS_IN","name":"Sohamus","type":"Role","_key":"111753","_from":"3940","_to":"65965"} +{"$label":"ACTS_IN","name":"Nick Arnstein","type":"Role","_key":"107001","_from":"3940","_to":"63082"} +{"$label":"ACTS_IN","name":"Prince Memucan","type":"Role","_key":"102679","_from":"3940","_to":"60410"} +{"$label":"ACTS_IN","name":"Agent Cedric","type":"Role","_key":"50717","_from":"3940","_to":"33102"} +{"$label":"ACTS_IN","name":"Hans Canon","type":"Role","_key":"47285","_from":"3940","_to":"31151"} +{"$label":"ACTS_IN","name":"Temujin alias Genghis Khan","type":"Role","_key":"34433","_from":"3940","_to":"23592"} +{"$label":"ACTS_IN","name":"Ivo Palazzi","type":"Role","_key":"24959","_from":"3940","_to":"18031"} +{"$label":"ACTS_IN","name":"Sheikh Riyadh","type":"Role","_key":"17594","_from":"3940","_to":"13140"} +{"$label":"ACTS_IN","name":"Sherif Ali","type":"Role","_key":"11290","_from":"3940","_to":"8914"} +{"$label":"ACTS_IN","name":"Dr. Yuri Zhivago","type":"Role","_key":"10790","_from":"3940","_to":"8557"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"68667","_from":"3942","_to":"42085"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"44681","_from":"3942","_to":"29726"} +{"$label":"ACTS_IN","name":"Francois","type":"Role","_key":"43684","_from":"3942","_to":"29177"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"4798","_from":"3942","_to":"4099"} +{"$label":"ACTS_IN","name":"Isabelle Tellier","type":"Role","_key":"12262","_from":"3943","_to":"9597"} +{"$label":"ACTS_IN","name":"Marijo","type":"Role","_key":"88462","_from":"3946","_to":"52431"} +{"$label":"ACTS_IN","name":"Josie","type":"Role","_key":"42235","_from":"3947","_to":"28283"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"108454","_from":"3948","_to":"64113"} +{"$label":"ACTS_IN","name":"Viviane Denvers","type":"Role","_key":"101296","_from":"3948","_to":"59642"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"91312","_from":"3948","_to":"53854"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"91305","_from":"3948","_to":"53848"} +{"$label":"ACTS_IN","name":"Shirra Assel","type":"Role","_key":"91126","_from":"3948","_to":"53764"} +{"$label":"ACTS_IN","name":"Camille Claudel","type":"Role","_key":"71695","_from":"3948","_to":"43404"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"70109","_from":"3948","_to":"42742"} +{"$label":"ACTS_IN","name":"Mia Baran","type":"Role","_key":"67113","_from":"3948","_to":"41420"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e9na","type":"Role","_key":"64861","_from":"3948","_to":"40345"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"63435","_from":"3948","_to":"39735"} +{"$label":"ACTS_IN","name":"Eliane dite 'Elle'","type":"Role","_key":"52224","_from":"3948","_to":"34019"} +{"$label":"ACTS_IN","name":"Lucy Harker","type":"Role","_key":"43311","_from":"3948","_to":"28933"} +{"$label":"ACTS_IN","name":"The Player","type":"Role","_key":"18757","_from":"3948","_to":"13876"} +{"$label":"ACTS_IN","name":"Ad\u00e8le Hugo","type":"Role","_key":"15783","_from":"3948","_to":"12023"} +{"$label":"ACTS_IN","name":"Max Perdelli","type":"Role","_key":"118053","_from":"3949","_to":"69385"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"59976","_from":"3949","_to":"37860"} +{"$label":"ACTS_IN","name":"Homme 2","type":"Role","_key":"26365","_from":"3949","_to":"18936"} +{"$label":"ACTS_IN","name":"Castagnier","type":"Role","_key":"20881","_from":"3949","_to":"15276"} +{"$label":"ACTS_IN","name":"Vergennes","type":"Role","_key":"16291","_from":"3949","_to":"12347"} +{"$label":"DIRECTED","_key":"88457","_from":"3953","_to":"52431"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin HO-Markt","type":"Role","_key":"4645","_from":"3964","_to":"3954"} +{"$label":"ACTS_IN","name":"Das K\u00fcken","type":"Role","_key":"4644","_from":"3963","_to":"3954"} +{"$label":"ACTS_IN","name":"Herr Ganske","type":"Role","_key":"4643","_from":"3962","_to":"3954"} +{"$label":"ACTS_IN","name":"Frau Sch\u00e4fer","type":"Role","_key":"4642","_from":"3961","_to":"3954"} +{"$label":"ACTS_IN","name":"Rainer","type":"Role","_key":"4639","_from":"3960","_to":"3954"} +{"$label":"ACTS_IN","name":"Denis","type":"Role","_key":"4638","_from":"3959","_to":"3954"} +{"$label":"ACTS_IN","name":"Ariane Kerner","type":"Role","_key":"4637","_from":"3958","_to":"3954"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"4636","_from":"3957","_to":"3954"} +{"$label":"ACTS_IN","name":"Mutter (Christiane Kerner)","type":"Role","_key":"4635","_from":"3956","_to":"3954"} +{"$label":"DIRECTED","_key":"4633","_from":"3955","_to":"3954"} +{"$label":"ACTS_IN","name":"Gertrud","type":"Role","_key":"51315","_from":"3956","_to":"33466"} +{"$label":"ACTS_IN","name":"Frau Kubitschek","type":"Role","_key":"10644","_from":"3956","_to":"8447"} +{"$label":"ACTS_IN","name":"Yelena","type":"Role","_key":"90342","_from":"3957","_to":"53394"} +{"$label":"ACTS_IN","name":"Rosa Braun","type":"Role","_key":"67641","_from":"3957","_to":"41625"} +{"$label":"ACTS_IN","name":"Mamlakat","type":"Role","_key":"64171","_from":"3957","_to":"40040"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"48103","_from":"3957","_to":"31613"} +{"$label":"ACTS_IN","name":"Silvija","type":"Role","_key":"42595","_from":"3957","_to":"28516"} +{"$label":"ACTS_IN","name":"Lia","type":"Role","_key":"42468","_from":"3957","_to":"28438"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"48992","_from":"3958","_to":"32115"} +{"$label":"ACTS_IN","name":"Katrin Bischof","type":"Role","_key":"42550","_from":"3958","_to":"28483"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"38410","_from":"3958","_to":"25944"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"34455","_from":"3958","_to":"23601"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"5586","_from":"3958","_to":"4754"} +{"$label":"ACTS_IN","name":"Andreas Hinterstoisser","type":"Role","_key":"109220","_from":"3959","_to":"64531"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"97507","_from":"3959","_to":"57421"} +{"$label":"ACTS_IN","name":"Dazlak","type":"Role","_key":"62187","_from":"3959","_to":"39161"} +{"$label":"ACTS_IN","name":"Trainer Carsten","type":"Role","_key":"53204","_from":"3959","_to":"34414"} +{"$label":"ACTS_IN","name":"Reza","type":"Role","_key":"53118","_from":"3959","_to":"34369"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"39732","_from":"3959","_to":"26850"} +{"$label":"ACTS_IN","name":"Schleifer","type":"Role","_key":"31698","_from":"3959","_to":"22122"} +{"$label":"ACTS_IN","name":"Clemens","type":"Role","_key":"31466","_from":"3959","_to":"21972"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"27713","_from":"3959","_to":"19859"} +{"$label":"ACTS_IN","name":"Steffen Hagen","type":"Role","_key":"16560","_from":"3959","_to":"12511"} +{"$label":"ACTS_IN","name":"Ricco","type":"Role","_key":"14761","_from":"3959","_to":"11358"} +{"$label":"ACTS_IN","name":"M\u00fccke","type":"Role","_key":"13797","_from":"3959","_to":"10704"} +{"$label":"ACTS_IN","name":"Tobias Hansen","type":"Role","_key":"13627","_from":"3959","_to":"10589"} +{"$label":"ACTS_IN","name":"Vincenz","type":"Role","_key":"91056","_from":"3960","_to":"53726"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"89271","_from":"3960","_to":"52854"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"65438","_from":"3960","_to":"40569"} +{"$label":"ACTS_IN","name":"Pierre Bezukhov","type":"Role","_key":"38428","_from":"3960","_to":"25954"} +{"$label":"ACTS_IN","name":"Walter Hoesdorff","type":"Role","_key":"20430","_from":"3960","_to":"14947"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"19579","_from":"3960","_to":"14478"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"13197","_from":"3960","_to":"10283"} +{"$label":"ACTS_IN","name":"Oma Christa","type":"Role","_key":"90301","_from":"3961","_to":"53382"} +{"$label":"ACTS_IN","name":"Margot Pippig","type":"Role","_key":"66556","_from":"3961","_to":"41143"} +{"$label":"ACTS_IN","name":"Silvia","type":"Role","_key":"44797","_from":"3961","_to":"29799"} +{"$label":"ACTS_IN","name":"Marions Mutter","type":"Role","_key":"34468","_from":"3961","_to":"23601"} +{"$label":"ACTS_IN","name":"Helga Berking","type":"Role","_key":"20161","_from":"3961","_to":"14791"} +{"$label":"ACTS_IN","name":"junge Frau","type":"Role","_key":"19330","_from":"3961","_to":"14285"} +{"$label":"ACTS_IN","name":"Veit","type":"Role","_key":"93831","_from":"3962","_to":"55237"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"92508","_from":"3962","_to":"54601"} +{"$label":"ACTS_IN","name":"Herr Klotz","type":"Role","_key":"33791","_from":"3962","_to":"23287"} +{"$label":"ACTS_IN","name":"Jakob","type":"Role","_key":"19567","_from":"3962","_to":"14467"} +{"$label":"ACTS_IN","name":"Erich Sass","type":"Role","_key":"69069","_from":"3963","_to":"42269"} +{"$label":"ACTS_IN","name":"Max Grundeis","type":"Role","_key":"64049","_from":"3963","_to":"39975"} +{"$label":"ACTS_IN","name":"Jan Nebel","type":"Role","_key":"59492","_from":"3963","_to":"37567"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"59220","_from":"3963","_to":"37399"} +{"$label":"ACTS_IN","name":"Levin Graber","type":"Role","_key":"57580","_from":"3963","_to":"36468"} +{"$label":"ACTS_IN","name":"Ingo","type":"Role","_key":"55075","_from":"3963","_to":"35179"} +{"$label":"ACTS_IN","name":"Nils Jakkelsen","type":"Role","_key":"53045","_from":"3963","_to":"34339"} +{"$label":"ACTS_IN","name":"Rainer Wenger","type":"Role","_key":"47249","_from":"3963","_to":"31136"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"44885","_from":"3963","_to":"29855"} +{"$label":"ACTS_IN","name":"Arthur von Eschenbach","type":"Role","_key":"42886","_from":"3963","_to":"28665"} +{"$label":"ACTS_IN","name":"Jonas Birke","type":"Role","_key":"42495","_from":"3963","_to":"28455"} +{"$label":"ACTS_IN","name":"Hausmeister","type":"Role","_key":"42368","_from":"3963","_to":"28358"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Vogel","type":"Role","_key":"41529","_from":"3963","_to":"27899"} +{"$label":"ACTS_IN","name":"Israel Hands","type":"Role","_key":"38309","_from":"3963","_to":"25875"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"17019","_from":"3963","_to":"12770"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"15397","_from":"3963","_to":"11776"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"13664","_from":"3963","_to":"10613"} +{"$label":"ACTS_IN","name":"Markus Hansen","type":"Role","_key":"13628","_from":"3963","_to":"10589"} +{"$label":"ACTS_IN","name":"Helmut Grokenberger","type":"Role","_key":"4675","_from":"3992","_to":"3965"} +{"$label":"ACTS_IN","name":"Factory Worker#2","type":"Role","_key":"4674","_from":"3991","_to":"3965"} +{"$label":"ACTS_IN","name":"Factory Worker#1","type":"Role","_key":"4673","_from":"3990","_to":"3965"} +{"$label":"ACTS_IN","name":"Dispatcher Helsinki","type":"Role","_key":"4672","_from":"3989","_to":"3965"} +{"$label":"ACTS_IN","name":"Man#3 Helsinki","type":"Role","_key":"4671","_from":"3988","_to":"3965"} +{"$label":"ACTS_IN","name":"Man#1 Helsinki","type":"Role","_key":"4669","_from":"3987","_to":"3965"} +{"$label":"ACTS_IN","name":"Dispatcher Rome","type":"Role","_key":"4667","_from":"3986","_to":"3965"} +{"$label":"ACTS_IN","name":"Angry Driver","type":"Role","_key":"4666","_from":"3985","_to":"3965"} +{"$label":"ACTS_IN","name":"Lover","type":"Role","_key":"4665","_from":"3984","_to":"3965"} +{"$label":"ACTS_IN","name":"Lover","type":"Role","_key":"4664","_from":"3983","_to":"3965"} +{"$label":"ACTS_IN","name":"Transvestite#2","type":"Role","_key":"4663","_from":"3982","_to":"3965"} +{"$label":"ACTS_IN","name":"Transvestite#1","type":"Role","_key":"4662","_from":"3981","_to":"3965"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"4661","_from":"3980","_to":"3965"} +{"$label":"ACTS_IN","name":"Cab Driver Rome","type":"Role","_key":"4660","_from":"3979","_to":"3965"} +{"$label":"ACTS_IN","name":"Man in Accident","type":"Role","_key":"4659","_from":"3978","_to":"3965"} +{"$label":"ACTS_IN","name":"Motorcyclist","type":"Role","_key":"4658","_from":"3977","_to":"3965"} +{"$label":"ACTS_IN","name":"Passenger#2","type":"Role","_key":"4657","_from":"3976","_to":"3965"} +{"$label":"ACTS_IN","name":"Passenger#1","type":"Role","_key":"4656","_from":"3975","_to":"3965"} +{"$label":"ACTS_IN","name":"Blind Woman","type":"Role","_key":"4655","_from":"3974","_to":"3965"} +{"$label":"ACTS_IN","name":"Cab Driver Paris","type":"Role","_key":"4654","_from":"3973","_to":"3965"} +{"$label":"ACTS_IN","name":"Cab Driver New York","type":"Role","_key":"4653","_from":"3972","_to":"3965"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"4652","_from":"3971","_to":"3965"} +{"$label":"ACTS_IN","name":"YoYo","type":"Role","_key":"4651","_from":"3970","_to":"3965"} +{"$label":"ACTS_IN","name":"Rock Musician#2","type":"Role","_key":"4650","_from":"3969","_to":"3965"} +{"$label":"ACTS_IN","name":"Rock Musician#1","type":"Role","_key":"4649","_from":"3968","_to":"3965"} +{"$label":"ACTS_IN","name":"Rock Manager","type":"Role","_key":"4648","_from":"3967","_to":"3965"} +{"$label":"ACTS_IN","name":"Victoria Snelling","type":"Role","_key":"4647","_from":"3966","_to":"3965"} +{"$label":"ACTS_IN","name":"Vivien Wilder-Mann","type":"Role","_key":"93990","_from":"3966","_to":"55349"} +{"$label":"ACTS_IN","name":"Mrs. Rebecca Asher","type":"Role","_key":"67748","_from":"3966","_to":"41652"} +{"$label":"ACTS_IN","name":"Allie Calhoun","type":"Role","_key":"67476","_from":"3966","_to":"41562"} +{"$label":"ACTS_IN","name":"Gloria Swenson","type":"Role","_key":"66476","_from":"3966","_to":"41109"} +{"$label":"ACTS_IN","name":"Violet Devereaux","type":"Role","_key":"57948","_from":"3966","_to":"36665"} +{"$label":"ACTS_IN","name":"Gram","type":"Role","_key":"57151","_from":"3966","_to":"36270"} +{"$label":"ACTS_IN","name":"Ramona Calvert","type":"Role","_key":"55942","_from":"3966","_to":"35575"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"45052","_from":"3966","_to":"29922"} +{"$label":"ACTS_IN","name":"Gena (Quartier Latin)","type":"Role","_key":"19890","_from":"3966","_to":"14635"} +{"$label":"ACTS_IN","name":"Janette Rasnick","type":"Role","_key":"18437","_from":"3966","_to":"13664"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"9740","_from":"3966","_to":"7817"} +{"$label":"ACTS_IN","name":"Jeannie Rapp","type":"Role","_key":"8840","_from":"3966","_to":"7183"} +{"$label":"ACTS_IN","name":"Heather McNamara","type":"Role","_key":"22357","_from":"3967","_to":"16253"} +{"$label":"ACTS_IN","name":"Senator Dillings","type":"Role","_key":"112085","_from":"3970","_to":"66181"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"96827","_from":"3970","_to":"56940"} +{"$label":"ACTS_IN","name":"Little Jeff","type":"Role","_key":"89100","_from":"3970","_to":"52779"} +{"$label":"ACTS_IN","name":"Bugs Raplin","type":"Role","_key":"64492","_from":"3970","_to":"40183"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"61244","_from":"3970","_to":"38677"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"54670","_from":"3970","_to":"35009"} +{"$label":"ACTS_IN","name":"Cassius Clay, Sr.","type":"Role","_key":"50067","_from":"3970","_to":"32759"} +{"$label":"ACTS_IN","name":"Tommy Finelli","type":"Role","_key":"40167","_from":"3970","_to":"27113"} +{"$label":"ACTS_IN","name":"Jimmy Jiles","type":"Role","_key":"21514","_from":"3970","_to":"15740"} +{"$label":"ACTS_IN","name":"Buggin Out","type":"Role","_key":"11012","_from":"3970","_to":"8717"} +{"$label":"ACTS_IN","name":"Jack Baer, FBI","type":"Role","_key":"7476","_from":"3970","_to":"6221"} +{"$label":"ACTS_IN","name":"Marina De La Pena","type":"Role","_key":"114785","_from":"3971","_to":"67613"} +{"$label":"ACTS_IN","name":"Muriel Lang","type":"Role","_key":"64888","_from":"3971","_to":"40352"} +{"$label":"ACTS_IN","name":"Chel","type":"Role","_key":"63705","_from":"3971","_to":"39835"} +{"$label":"ACTS_IN","name":"Carla Rodrigo","type":"Role","_key":"63384","_from":"3971","_to":"39716"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"61544","_from":"3971","_to":"38803"} +{"$label":"ACTS_IN","name":"Gloria Clement","type":"Role","_key":"61322","_from":"3971","_to":"38705"} +{"$label":"ACTS_IN","name":"Perdita","type":"Role","_key":"57447","_from":"3971","_to":"36418"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"11018","_from":"3971","_to":"8717"} +{"$label":"ACTS_IN","name":"Factory Worker","type":"Role","_key":"5820","_from":"3972","_to":"4944"} +{"$label":"ACTS_IN","name":"Roscoe Wasz","type":"Role","_key":"110378","_from":"3973","_to":"65220"} +{"$label":"ACTS_IN","name":"Abasi","type":"Role","_key":"93196","_from":"3973","_to":"54916"} +{"$label":"ACTS_IN","name":"Creole Gas Station Owner","type":"Role","_key":"57963","_from":"3973","_to":"36665"} +{"$label":"ACTS_IN","name":"Lone Man","type":"Role","_key":"48820","_from":"3973","_to":"32020"} +{"$label":"ACTS_IN","name":"Mfumu","type":"Role","_key":"33971","_from":"3973","_to":"23380"} +{"$label":"ACTS_IN","name":"Laurent","type":"Role","_key":"17483","_from":"3973","_to":"13069"} +{"$label":"ACTS_IN","name":"Timothy","type":"Role","_key":"16931","_from":"3973","_to":"12720"} +{"$label":"ACTS_IN","name":"Isaach","type":"Role","_key":"10518","_from":"3973","_to":"8357"} +{"$label":"ACTS_IN","name":"La Femme","type":"Role","_key":"93870","_from":"3974","_to":"55271"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"73159","_from":"3974","_to":"43998"} +{"$label":"ACTS_IN","name":"Lassong","type":"Role","_key":"19109","_from":"3976","_to":"14114"} +{"$label":"ACTS_IN","name":"L'inspecteur Gr\u00e9goire","type":"Role","_key":"113644","_from":"3978","_to":"66968"} +{"$label":"DIRECTED","_key":"91483","_from":"3979","_to":"53935"} +{"$label":"DIRECTED","_key":"66167","_from":"3979","_to":"40934"} +{"$label":"DIRECTED","_key":"64435","_from":"3979","_to":"40156"} +{"$label":"DIRECTED","_key":"7583","_from":"3979","_to":"6311"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"91476","_from":"3979","_to":"53935"} +{"$label":"ACTS_IN","name":"Attilio de Giovanni","type":"Role","_key":"66168","_from":"3979","_to":"40934"} +{"$label":"ACTS_IN","name":"Pinocchio","type":"Role","_key":"64436","_from":"3979","_to":"40156"} +{"$label":"ACTS_IN","name":"Lucius Detritus","type":"Role","_key":"54726","_from":"3979","_to":"35031"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"13757","_from":"3979","_to":"10676"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"10505","_from":"3979","_to":"8357"} +{"$label":"ACTS_IN","name":"Guido Orefice","type":"Role","_key":"7585","_from":"3979","_to":"6311"} +{"$label":"ACTS_IN","name":"D'Agata","type":"Role","_key":"91478","_from":"3980","_to":"53935"} +{"$label":"ACTS_IN","name":"Kamal","type":"Role","_key":"90148","_from":"3980","_to":"53304"} +{"$label":"ACTS_IN","name":"the Duke","type":"Role","_key":"37082","_from":"3980","_to":"25127"} +{"$label":"ACTS_IN","name":"Zinoviev","type":"Role","_key":"30044","_from":"3980","_to":"21186"} +{"$label":"ACTS_IN","name":"Melchisedek","type":"Role","_key":"22862","_from":"3980","_to":"16575"} +{"$label":"ACTS_IN","name":"Morelli","type":"Role","_key":"17725","_from":"3980","_to":"13221"} +{"$label":"ACTS_IN","name":"Igor (Village Idiot)","type":"Role","_key":"70075","_from":"3987","_to":"42724"} +{"$label":"ACTS_IN","name":"Lauri Polonius","type":"Role","_key":"50702","_from":"3987","_to":"33098"} +{"$label":"ACTS_IN","name":"Lauri","type":"Role","_key":"48477","_from":"3987","_to":"31824"} +{"$label":"ACTS_IN","name":"Arbeiter","type":"Role","_key":"47593","_from":"3991","_to":"31355"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"97013","_from":"3992","_to":"57064"} +{"$label":"ACTS_IN","name":"Straus","type":"Role","_key":"94502","_from":"3992","_to":"55655"} +{"$label":"ACTS_IN","name":"Hans Koenig","type":"Role","_key":"89967","_from":"3992","_to":"53222"} +{"$label":"ACTS_IN","name":"Juror 4","type":"Role","_key":"88765","_from":"3992","_to":"52604"} +{"$label":"ACTS_IN","name":"Dimitri Vertikoff","type":"Role","_key":"44369","_from":"3992","_to":"29564"} +{"$label":"ACTS_IN","name":"Herr Winter","type":"Role","_key":"38274","_from":"3992","_to":"25853"} +{"$label":"ACTS_IN","name":"Wilhelm Wexler","type":"Role","_key":"35139","_from":"3992","_to":"23951"} +{"$label":"ACTS_IN","name":"Armin Mueller-Stahl","type":"Role","_key":"22730","_from":"3992","_to":"16483"} +{"$label":"ACTS_IN","name":"Anson Baer","type":"Role","_key":"22504","_from":"3992","_to":"16355"} +{"$label":"ACTS_IN","name":"Uncle Wilhelm","type":"Role","_key":"20562","_from":"3992","_to":"15049"} +{"$label":"ACTS_IN","name":"Johann Buddenbrook","type":"Role","_key":"20467","_from":"3992","_to":"14974"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"20454","_from":"3992","_to":"14968"} +{"$label":"ACTS_IN","name":"von Leeb","type":"Role","_key":"20429","_from":"3992","_to":"14947"} +{"$label":"ACTS_IN","name":"Nicoli Seroff","type":"Role","_key":"20417","_from":"3992","_to":"14941"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater Randolph","type":"Role","_key":"20366","_from":"3992","_to":"14918"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"20358","_from":"3992","_to":"14911"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"20351","_from":"3992","_to":"14905"} +{"$label":"ACTS_IN","name":"Bertold \" Barry \" B\u00f6hmer","type":"Role","_key":"20339","_from":"3992","_to":"14897"} +{"$label":"ACTS_IN","name":"Mr. Linzer","type":"Role","_key":"20267","_from":"3992","_to":"14861"} +{"$label":"ACTS_IN","name":"Gandhi","type":"Role","_key":"20256","_from":"3992","_to":"14852"} +{"$label":"ACTS_IN","name":"Henris Vater","type":"Role","_key":"20244","_from":"3992","_to":"14844"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"20232","_from":"3992","_to":"14838"} +{"$label":"ACTS_IN","name":"Sam Krichinsky","type":"Role","_key":"20223","_from":"3992","_to":"14831"} +{"$label":"ACTS_IN","name":"Andreas Roth","type":"Role","_key":"20214","_from":"3992","_to":"14821"} +{"$label":"ACTS_IN","name":"Kinoerz\u00e4hler","type":"Role","_key":"20173","_from":"3992","_to":"14796"} +{"$label":"ACTS_IN","name":"Grubach","type":"Role","_key":"20165","_from":"3992","_to":"14795"} +{"$label":"ACTS_IN","name":"Oberleutnant Heide","type":"Role","_key":"20160","_from":"3992","_to":"14791"} +{"$label":"ACTS_IN","name":"Prof. Dr. Kirschbaum","type":"Role","_key":"20078","_from":"3992","_to":"14765"} +{"$label":"ACTS_IN","name":"Mayer","type":"Role","_key":"20033","_from":"3992","_to":"14741"} +{"$label":"ACTS_IN","name":"Thomas Mann","type":"Role","_key":"20005","_from":"3992","_to":"14724"} +{"$label":"ACTS_IN","name":"Chef der Grauen","type":"Role","_key":"19831","_from":"3992","_to":"14628"} +{"$label":"ACTS_IN","name":"von Bohm","type":"Role","_key":"19818","_from":"3992","_to":"14625"} +{"$label":"ACTS_IN","name":"Mike Lazlo","type":"Role","_key":"19810","_from":"3992","_to":"14622"} +{"$label":"ACTS_IN","name":"Max Rehbein","type":"Role","_key":"19805","_from":"3992","_to":"14619"} +{"$label":"ACTS_IN","name":"Severo del Valle","type":"Role","_key":"19782","_from":"3992","_to":"14606"} +{"$label":"ACTS_IN","name":"Baron Kaspar Joachim von Utz","type":"Role","_key":"19767","_from":"3992","_to":"14601"} +{"$label":"ACTS_IN","name":"Semyon","type":"Role","_key":"19687","_from":"3992","_to":"14558"} +{"$label":"ACTS_IN","name":"Slavovitz","type":"Role","_key":"19465","_from":"3992","_to":"14395"} +{"$label":"ACTS_IN","name":"Dr. Schmith","type":"Role","_key":"19443","_from":"3992","_to":"14382"} +{"$label":"ACTS_IN","name":"Wolfgang Schmidt","type":"Role","_key":"19429","_from":"3992","_to":"14373"} +{"$label":"ACTS_IN","name":"H\u00f6fel","type":"Role","_key":"19412","_from":"3992","_to":"14363"} +{"$label":"ACTS_IN","name":"Dr. Achim Engelhardt","type":"Role","_key":"19396","_from":"3992","_to":"14352"} +{"$label":"ACTS_IN","name":"Sowjetischer Arzt","type":"Role","_key":"19380","_from":"3992","_to":"14337"} +{"$label":"ACTS_IN","name":"Quintana","type":"Role","_key":"19367","_from":"3992","_to":"14329"} +{"$label":"ACTS_IN","name":"Dr. Brock","type":"Role","_key":"19336","_from":"3992","_to":"14297"} +{"$label":"ACTS_IN","name":"Blinder","type":"Role","_key":"19318","_from":"3992","_to":"14285"} +{"$label":"ACTS_IN","name":"Dechant","type":"Role","_key":"19302","_from":"3992","_to":"14272"} +{"$label":"ACTS_IN","name":"Ulli","type":"Role","_key":"19290","_from":"3992","_to":"14262"} +{"$label":"ACTS_IN","name":"Pierre, der Franzose","type":"Role","_key":"19274","_from":"3992","_to":"14252"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"19257","_from":"3992","_to":"14239"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"19254","_from":"3992","_to":"14225"} +{"$label":"ACTS_IN","name":"Roman Schlamm","type":"Role","_key":"19139","_from":"3992","_to":"14143"} +{"$label":"ACTS_IN","name":"Ramier Beck","type":"Role","_key":"17984","_from":"3992","_to":"13369"} +{"$label":"ACTS_IN","name":"Hannon Fuller\/Grierson","type":"Role","_key":"11930","_from":"3992","_to":"9354"} +{"$label":"ACTS_IN","name":"Conrad Strughold","type":"Role","_key":"10030","_from":"3992","_to":"8022"} +{"$label":"DIRECTED","_key":"20231","_from":"3992","_to":"14838"} +{"$label":"ACTS_IN","name":"Young Lista","type":"Role","_key":"4691","_from":"4007","_to":"3993"} +{"$label":"ACTS_IN","name":"Young Grandfather","type":"Role","_key":"4690","_from":"4006","_to":"3993"} +{"$label":"ACTS_IN","name":"Augustine","type":"Role","_key":"4689","_from":"4005","_to":"3993"} +{"$label":"ACTS_IN","name":"Lista","type":"Role","_key":"4688","_from":"4004","_to":"3993"} +{"$label":"ACTS_IN","name":"Young Jonathan","type":"Role","_key":"4687","_from":"4003","_to":"3993"} +{"$label":"ACTS_IN","name":"Alex's Mother","type":"Role","_key":"4686","_from":"4002","_to":"3993"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"4685","_from":"4001","_to":"3993"} +{"$label":"ACTS_IN","name":"Alexander Perchov, Father","type":"Role","_key":"4684","_from":"4000","_to":"3993"} +{"$label":"ACTS_IN","name":"Jonathan's Grandfather Safran","type":"Role","_key":"4683","_from":"3999","_to":"3993"} +{"$label":"ACTS_IN","name":"Leaf Blower","type":"Role","_key":"4682","_from":"3998","_to":"3993"} +{"$label":"ACTS_IN","name":"Jonathan's Grandmother","type":"Role","_key":"4681","_from":"3997","_to":"3993"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"4680","_from":"3996","_to":"3993"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"4679","_from":"3995","_to":"3993"} +{"$label":"DIRECTED","_key":"4677","_from":"3994","_to":"3993"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"105193","_from":"3994","_to":"61907"} +{"$label":"ACTS_IN","name":"Congressman Raymond Prentiss Shaw (D-NY)","type":"Role","_key":"100440","_from":"3994","_to":"59224"} +{"$label":"ACTS_IN","name":"Charlie Townsend","type":"Role","_key":"99035","_from":"3994","_to":"58339"} +{"$label":"ACTS_IN","name":"Zus Bielski","type":"Role","_key":"96823","_from":"3994","_to":"56939"} +{"$label":"ACTS_IN","name":"Ray Johnson","type":"Role","_key":"93178","_from":"3994","_to":"54908"} +{"$label":"ACTS_IN","name":"Stuart Besser","type":"Role","_key":"68696","_from":"3994","_to":"42094"} +{"$label":"ACTS_IN","name":"Sam Chaiton","type":"Role","_key":"63015","_from":"3994","_to":"39551"} +{"$label":"ACTS_IN","name":"Dr. Ted Fielding","type":"Role","_key":"61288","_from":"3994","_to":"38697"} +{"$label":"ACTS_IN","name":"Lotario Thurgot","type":"Role","_key":"44507","_from":"3994","_to":"29642"} +{"$label":"ACTS_IN","name":"John Clark","type":"Role","_key":"33004","_from":"3994","_to":"22881"} +{"$label":"ACTS_IN","name":"Cotton Weay","type":"Role","_key":"30309","_from":"3994","_to":"21314"} +{"$label":"ACTS_IN","name":"Cotton Weary","type":"Role","_key":"30274","_from":"3994","_to":"21306"} +{"$label":"ACTS_IN","name":"Clark Barnes","type":"Role","_key":"28257","_from":"3994","_to":"20232"} +{"$label":"ACTS_IN","name":"Ernst Hanfstaengl","type":"Role","_key":"21768","_from":"3994","_to":"15899"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"20088","_from":"3994","_to":"14765"} +{"$label":"ACTS_IN","name":"Victor Creed \/ Sabretooth","type":"Role","_key":"18086","_from":"3994","_to":"13433"} +{"$label":"ACTS_IN","name":"Robert Thorn","type":"Role","_key":"9491","_from":"3994","_to":"7661"} +{"$label":"ACTS_IN","name":"A.K.","type":"Role","_key":"116597","_from":"3995","_to":"68638"} +{"$label":"ACTS_IN","name":"Fantasy Cabbie","type":"Role","_key":"45782","_from":"3996","_to":"30289"} +{"$label":"DIRECTED","_key":"4702","_from":"4017","_to":"4008"} +{"$label":"ACTS_IN","name":"Li Huang","type":"Role","_key":"4701","_from":"4016","_to":"4008"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"4700","_from":"4015","_to":"4008"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"4699","_from":"4014","_to":"4008"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"4698","_from":"4013","_to":"4008"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"4697","_from":"4012","_to":"4008"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"4696","_from":"4011","_to":"4008"} +{"$label":"ACTS_IN","name":"Vincent Harris","type":"Role","_key":"4694","_from":"4010","_to":"4008"} +{"$label":"ACTS_IN","name":"Alice Parker","type":"Role","_key":"4693","_from":"4009","_to":"4008"} +{"$label":"ACTS_IN","name":"Nelly","type":"Role","_key":"114467","_from":"4009","_to":"67433"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"114465","_from":"4009","_to":"67432"} +{"$label":"ACTS_IN","name":"Janet Belhmer","type":"Role","_key":"108842","_from":"4009","_to":"64330"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104411","_from":"4009","_to":"61420"} +{"$label":"ACTS_IN","name":"France Navarre","type":"Role","_key":"96103","_from":"4009","_to":"56487"} +{"$label":"ACTS_IN","name":"Nelly","type":"Role","_key":"90827","_from":"4009","_to":"53592"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"90702","_from":"4009","_to":"53543"} +{"$label":"ACTS_IN","name":"Manon","type":"Role","_key":"32026","_from":"4009","_to":"22316"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"16977","_from":"4009","_to":"12738"} +{"$label":"ACTS_IN","name":"Claire Phelps","type":"Role","_key":"11372","_from":"4009","_to":"8963"} +{"$label":"ACTS_IN","name":"Shepard","type":"Role","_key":"121376","_from":"4010","_to":"71326"} +{"$label":"ACTS_IN","name":"Swain","type":"Role","_key":"109281","_from":"4010","_to":"64563"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"93442","_from":"4010","_to":"55020"} +{"$label":"ACTS_IN","name":"Murphy McManus","type":"Role","_key":"49418","_from":"4010","_to":"32353"} +{"$label":"ACTS_IN","name":"Polizist Schmitz","type":"Role","_key":"49104","_from":"4010","_to":"32177"} +{"$label":"ACTS_IN","name":"Warren Anderson","type":"Role","_key":"48582","_from":"4010","_to":"31873"} +{"$label":"ACTS_IN","name":"Lucien Carr","type":"Role","_key":"26526","_from":"4010","_to":"19066"} +{"$label":"ACTS_IN","name":"Dwan","type":"Role","_key":"51594","_from":"4011","_to":"33665"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"28401","_from":"4011","_to":"20316"} +{"$label":"ACTS_IN","name":"Kim Diamond","type":"Role","_key":"70460","_from":"4012","_to":"42894"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"47093","_from":"4012","_to":"31049"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"4959","_from":"4012","_to":"4222"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"20099","_from":"4013","_to":"14770"} +{"$label":"ACTS_IN","name":"James Washington","type":"Role","_key":"58418","_from":"4015","_to":"36916"} +{"$label":"ACTS_IN","name":"Oli","type":"Role","_key":"4718","_from":"4034","_to":"4018"} +{"$label":"ACTS_IN","name":"Niels","type":"Role","_key":"4717","_from":"4033","_to":"4018"} +{"$label":"ACTS_IN","name":"Nils","type":"Role","_key":"4716","_from":"4032","_to":"4018"} +{"$label":"ACTS_IN","name":"Flasche","type":"Role","_key":"4715","_from":"4031","_to":"4018"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"4714","_from":"4030","_to":"4018"} +{"$label":"ACTS_IN","name":"Ferdl","type":"Role","_key":"4713","_from":"4029","_to":"4018"} +{"$label":"ACTS_IN","name":"Malte","type":"Role","_key":"4712","_from":"4028","_to":"4018"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"4711","_from":"4027","_to":"4018"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"4710","_from":"4026","_to":"4018"} +{"$label":"ACTS_IN","name":"Georg \"Schorsi\"","type":"Role","_key":"4709","_from":"4025","_to":"4018"} +{"$label":"ACTS_IN","name":"Hansi","type":"Role","_key":"4708","_from":"4024","_to":"4018"} +{"$label":"ACTS_IN","name":"Anke","type":"Role","_key":"4707","_from":"4023","_to":"4018"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"4706","_from":"4022","_to":"4018"} +{"$label":"ACTS_IN","name":"Tobi","type":"Role","_key":"4705","_from":"4021","_to":"4018"} +{"$label":"DIRECTED","_key":"4704","_from":"4020","_to":"4018"} +{"$label":"DIRECTED","_key":"4703","_from":"4019","_to":"4018"} +{"$label":"DIRECTED","_key":"88201","_from":"4019","_to":"52329"} +{"$label":"DIRECTED","_key":"33024","_from":"4019","_to":"22895"} +{"$label":"DIRECTED","_key":"29858","_from":"4019","_to":"21121"} +{"$label":"ACTS_IN","name":"Engel","type":"Role","_key":"69073","_from":"4021","_to":"42272"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"65439","_from":"4021","_to":"40569"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"55674","_from":"4021","_to":"35440"} +{"$label":"ACTS_IN","name":"Benjamin Lebert","type":"Role","_key":"53444","_from":"4021","_to":"34531"} +{"$label":"ACTS_IN","name":"Wilhelm II","type":"Role","_key":"47284","_from":"4021","_to":"31151"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"37127","_from":"4021","_to":"25155"} +{"$label":"ACTS_IN","name":"Lyschko","type":"Role","_key":"33027","_from":"4021","_to":"22895"} +{"$label":"ACTS_IN","name":"Breslin","type":"Role","_key":"20845","_from":"4021","_to":"15252"} +{"$label":"ACTS_IN","name":"Wuschel","type":"Role","_key":"19584","_from":"4021","_to":"14478"} +{"$label":"ACTS_IN","name":"Lasse","type":"Role","_key":"97510","_from":"4022","_to":"57421"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"42662","_from":"4022","_to":"28559"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"70025","_from":"4023","_to":"42701"} +{"$label":"ACTS_IN","name":"Zosia","type":"Role","_key":"35200","_from":"4023","_to":"23983"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"29862","_from":"4023","_to":"21121"} +{"$label":"ACTS_IN","name":"Bodo Kaufmann","type":"Role","_key":"42534","_from":"4024","_to":"28471"} +{"$label":"ACTS_IN","name":"Alfred Dorstreiter","type":"Role","_key":"15021","_from":"4024","_to":"11548"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"60399","_from":"4027","_to":"38093"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"55676","_from":"4027","_to":"35440"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"88197","_from":"4028","_to":"52329"} +{"$label":"ACTS_IN","name":"Leutnant Lehmann","type":"Role","_key":"49238","_from":"4028","_to":"32251"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"47243","_from":"4028","_to":"31133"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"33028","_from":"4028","_to":"22895"} +{"$label":"ACTS_IN","name":"Willi Hauser","type":"Role","_key":"15049","_from":"4028","_to":"11571"} +{"$label":"ACTS_IN","name":"Funktion\u00e4r der FDJ","type":"Role","_key":"43845","_from":"4034","_to":"29272"} +{"$label":"ACTS_IN","name":"Benedikt Lehmann","type":"Role","_key":"6981","_from":"4034","_to":"5846"} +{"$label":"ACTS_IN","name":"Mrs. Chasen","type":"Role","_key":"4729","_from":"4045","_to":"4035"} +{"$label":"ACTS_IN","name":"Edith Phern","type":"Role","_key":"4728","_from":"4044","_to":"4035"} +{"$label":"ACTS_IN","name":"Candy Gulf","type":"Role","_key":"4727","_from":"4043","_to":"4035"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"4726","_from":"4042","_to":"4035"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"4725","_from":"4041","_to":"4035"} +{"$label":"ACTS_IN","name":"Sunshine Dor\u00e9","type":"Role","_key":"4724","_from":"4040","_to":"4035"} +{"$label":"ACTS_IN","name":"Uncle Victor","type":"Role","_key":"4723","_from":"4039","_to":"4035"} +{"$label":"ACTS_IN","name":"Glaucus","type":"Role","_key":"4722","_from":"4038","_to":"4035"} +{"$label":"ACTS_IN","name":"Maude","type":"Role","_key":"4720","_from":"4037","_to":"4035"} +{"$label":"DIRECTED","_key":"4719","_from":"4036","_to":"4035"} +{"$label":"DIRECTED","_key":"102328","_from":"4036","_to":"60201"} +{"$label":"DIRECTED","_key":"62584","_from":"4036","_to":"39378"} +{"$label":"ACTS_IN","name":"Senovia 'Ma' Boggs","type":"Role","_key":"111410","_from":"4037","_to":"65785"} +{"$label":"ACTS_IN","name":"Ma Boggs","type":"Role","_key":"104325","_from":"4037","_to":"61379"} +{"$label":"ACTS_IN","name":"Minnie Castevet","type":"Role","_key":"9481","_from":"4037","_to":"7653"} +{"$label":"ACTS_IN","name":"Control","type":"Role","_key":"95308","_from":"4038","_to":"56070"} +{"$label":"ACTS_IN","name":"Charrington","type":"Role","_key":"53066","_from":"4038","_to":"34351"} +{"$label":"ACTS_IN","name":"Gunsmith","type":"Role","_key":"34688","_from":"4038","_to":"23728"} +{"$label":"ACTS_IN","name":"Rosser","type":"Role","_key":"34578","_from":"4038","_to":"23672"} +{"$label":"ACTS_IN","name":"Fauchlevent","type":"Role","_key":"32005","_from":"4038","_to":"22303"} +{"$label":"ACTS_IN","name":"Jehuda","type":"Role","_key":"21149","_from":"4038","_to":"15473"} +{"$label":"ACTS_IN","name":"Matto","type":"Role","_key":"15234","_from":"4038","_to":"11665"} +{"$label":"ACTS_IN","name":"The Captain","type":"Role","_key":"15154","_from":"4038","_to":"11621"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"12882","_from":"4040","_to":"10047"} +{"$label":"ACTS_IN","name":"Dr. James Longstreet","type":"Role","_key":"64482","_from":"4041","_to":"40178"} +{"$label":"ACTS_IN","name":"Joycie","type":"Role","_key":"16114","_from":"4045","_to":"12238"} +{"$label":"ACTS_IN","name":"Mark Kampmann","type":"Role","_key":"4747","_from":"4060","_to":"4046"} +{"$label":"ACTS_IN","name":"Pornoregisseur Uwe","type":"Role","_key":"4746","_from":"4059","_to":"4046"} +{"$label":"ACTS_IN","name":"Ratte","type":"Role","_key":"4745","_from":"4058","_to":"4046"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4744","_from":"4047","_to":"4046"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"4742","_from":"4057","_to":"4046"} +{"$label":"ACTS_IN","name":"Arne","type":"Role","_key":"4741","_from":"4056","_to":"4046"} +{"$label":"ACTS_IN","name":"Franky","type":"Role","_key":"4739","_from":"4055","_to":"4046"} +{"$label":"ACTS_IN","name":"Manuela Grabowski","type":"Role","_key":"4738","_from":"4054","_to":"4046"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"4736","_from":"4053","_to":"4046"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"4735","_from":"4052","_to":"4046"} +{"$label":"ACTS_IN","name":"Schlucke","type":"Role","_key":"4734","_from":"4051","_to":"4046"} +{"$label":"ACTS_IN","name":"Werner Kampmann","type":"Role","_key":"4733","_from":"4050","_to":"4046"} +{"$label":"ACTS_IN","name":"Karl-Heinz \"Kalle\" Grabowski","type":"Role","_key":"4732","_from":"4049","_to":"4046"} +{"$label":"ACTS_IN","name":"Keek","type":"Role","_key":"4731","_from":"4048","_to":"4046"} +{"$label":"DIRECTED","_key":"4730","_from":"4047","_to":"4046"} +{"$label":"DIRECTED","_key":"52615","_from":"4047","_to":"34185"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"52613","_from":"4047","_to":"34185"} +{"$label":"ACTS_IN","name":"Bernhardt","type":"Role","_key":"26917","_from":"4047","_to":"19351"} +{"$label":"ACTS_IN","name":"Oliver Dretzke","type":"Role","_key":"68866","_from":"4048","_to":"42184"} +{"$label":"ACTS_IN","name":"Oliver Dretzke","type":"Role","_key":"67906","_from":"4048","_to":"41723"} +{"$label":"ACTS_IN","name":"Oliver Dretzke","type":"Role","_key":"64441","_from":"4048","_to":"40158"} +{"$label":"ACTS_IN","name":"Ekki","type":"Role","_key":"47115","_from":"4048","_to":"31065"} +{"$label":"ACTS_IN","name":"Niklas","type":"Role","_key":"27650","_from":"4048","_to":"19817"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"26918","_from":"4048","_to":"19351"} +{"$label":"ACTS_IN","name":"Harald \"Bullet Harry\" Grabowski","type":"Role","_key":"69664","_from":"4049","_to":"42524"} +{"$label":"ACTS_IN","name":"Hyde","type":"Role","_key":"69449","_from":"4049","_to":"42439"} +{"$label":"ACTS_IN","name":"Hermann Pacholke","type":"Role","_key":"66548","_from":"4049","_to":"41143"} +{"$label":"ACTS_IN","name":"Zivilpolizist","type":"Role","_key":"53120","_from":"4049","_to":"34369"} +{"$label":"ACTS_IN","name":"Kalle","type":"Role","_key":"52610","_from":"4049","_to":"34185"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"43984","_from":"4049","_to":"29336"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"18883","_from":"4049","_to":"13933"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"14288","_from":"4049","_to":"11055"} +{"$label":"ACTS_IN","name":"Frenssen","type":"Role","_key":"4950","_from":"4049","_to":"4213"} +{"$label":"ACTS_IN","name":"Fernfahrer","type":"Role","_key":"71598","_from":"4050","_to":"43365"} +{"$label":"ACTS_IN","name":"Willi Rummel","type":"Role","_key":"34371","_from":"4050","_to":"23569"} +{"$label":"ACTS_IN","name":"Golfplatzbesitzer","type":"Role","_key":"88241","_from":"4051","_to":"52346"} +{"$label":"ACTS_IN","name":"Dealer","type":"Role","_key":"45925","_from":"4051","_to":"30364"} +{"$label":"ACTS_IN","name":"Dave Ogden","type":"Role","_key":"39665","_from":"4051","_to":"26806"} +{"$label":"ACTS_IN","name":"Kruse","type":"Role","_key":"27659","_from":"4051","_to":"19817"} +{"$label":"ACTS_IN","name":"Heinzi","type":"Role","_key":"19009","_from":"4051","_to":"14038"} +{"$label":"ACTS_IN","name":"Manni Moneto","type":"Role","_key":"16682","_from":"4051","_to":"12585"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"12404","_from":"4051","_to":"9715"} +{"$label":"ACTS_IN","name":"2WO","type":"Role","_key":"4942","_from":"4051","_to":"4213"} +{"$label":"ACTS_IN","name":"Claudi","type":"Role","_key":"72805","_from":"4052","_to":"43865"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"69663","_from":"4052","_to":"42524"} +{"$label":"ACTS_IN","name":"Tine","type":"Role","_key":"68507","_from":"4052","_to":"42019"} +{"$label":"ACTS_IN","name":"Anica","type":"Role","_key":"66823","_from":"4052","_to":"41275"} +{"$label":"ACTS_IN","name":"Vera Rehbein-Kischewski","type":"Role","_key":"66786","_from":"4052","_to":"41259"} +{"$label":"ACTS_IN","name":"Melissa Schroeder","type":"Role","_key":"63660","_from":"4052","_to":"39822"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"54953","_from":"4052","_to":"35131"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"42363","_from":"4052","_to":"28358"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"40668","_from":"4052","_to":"27376"} +{"$label":"ACTS_IN","name":"Isabell","type":"Role","_key":"35537","_from":"4052","_to":"24156"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"14019","_from":"4052","_to":"10867"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"26912","_from":"4053","_to":"19351"} +{"$label":"ACTS_IN","name":"Gisi","type":"Role","_key":"42526","_from":"4054","_to":"28471"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"99999","_from":"4055","_to":"58997"} +{"$label":"ACTS_IN","name":"Unteroffizier Manfred Rohleder","type":"Role","_key":"67885","_from":"4055","_to":"41712"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"28657","_from":"4055","_to":"20478"} +{"$label":"ACTS_IN","name":"Scooter Bailey","type":"Role","_key":"24364","_from":"4055","_to":"17630"} +{"$label":"ACTS_IN","name":"Fahrlehrer","type":"Role","_key":"18879","_from":"4055","_to":"13933"} +{"$label":"ACTS_IN","name":"Snake","type":"Role","_key":"14764","_from":"4055","_to":"11358"} +{"$label":"ACTS_IN","name":"K\u00f6hler Michel","type":"Role","_key":"10596","_from":"4055","_to":"8414"} +{"$label":"ACTS_IN","name":"Lothar","type":"Role","_key":"8669","_from":"4055","_to":"7034"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"91524","_from":"4056","_to":"53951"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"46026","_from":"4056","_to":"30414"} +{"$label":"ACTS_IN","name":"Godfrey","type":"Role","_key":"24790","_from":"4056","_to":"17924"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"10601","_from":"4056","_to":"8414"} +{"$label":"ACTS_IN","name":"Hakan","type":"Role","_key":"16571","_from":"4057","_to":"12516"} +{"$label":"ACTS_IN","name":"Kommissar","type":"Role","_key":"44040","_from":"4058","_to":"29369"} +{"$label":"ACTS_IN","name":"Franks Vater","type":"Role","_key":"16505","_from":"4058","_to":"12463"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"46663","_from":"4059","_to":"30817"} +{"$label":"ACTS_IN","name":"Moderator","type":"Role","_key":"18707","_from":"4059","_to":"13845"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"89076","_from":"4060","_to":"52768"} +{"$label":"ACTS_IN","name":"Uwe Brehme","type":"Role","_key":"72949","_from":"4060","_to":"43917"} +{"$label":"ACTS_IN","name":"'Stuffz' Hubert","type":"Role","_key":"67070","_from":"4060","_to":"41399"} +{"$label":"ACTS_IN","name":"Officer in Charge","type":"Role","_key":"46335","_from":"4060","_to":"30618"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"37321","_from":"4060","_to":"25284"} +{"$label":"ACTS_IN","name":"Domino","type":"Role","_key":"4761","_from":"4071","_to":"4061"} +{"$label":"ACTS_IN","name":"Marion Nathanson","type":"Role","_key":"4760","_from":"4070","_to":"4061"} +{"$label":"ACTS_IN","name":"Amanda 'Mandy' Curran","type":"Role","_key":"4759","_from":"4069","_to":"4061"} +{"$label":"ACTS_IN","name":"Sandor Szavost","type":"Role","_key":"4758","_from":"4068","_to":"4061"} +{"$label":"ACTS_IN","name":"Ziegler's Secretary","type":"Role","_key":"4757","_from":"4067","_to":"4061"} +{"$label":"ACTS_IN","name":"Nick Nightingale","type":"Role","_key":"4756","_from":"4066","_to":"4061"} +{"$label":"ACTS_IN","name":"Bandleader","type":"Role","_key":"4755","_from":"4065","_to":"4061"} +{"$label":"ACTS_IN","name":"Illona Ziegler","type":"Role","_key":"4754","_from":"4064","_to":"4061"} +{"$label":"ACTS_IN","name":"Roz","type":"Role","_key":"4752","_from":"4063","_to":"4061"} +{"$label":"ACTS_IN","name":"Helena Harford","type":"Role","_key":"4751","_from":"4062","_to":"4061"} +{"$label":"ACTS_IN","name":"Foreman","type":"Role","_key":"110844","_from":"4065","_to":"65478"} +{"$label":"ACTS_IN","name":"David Schreiner","type":"Role","_key":"111474","_from":"4066","_to":"65817"} +{"$label":"ACTS_IN","name":"Austin Walker \/ Donovan Miller","type":"Role","_key":"57636","_from":"4066","_to":"36493"} +{"$label":"ACTS_IN","name":"Tim 'Beltzer' Lewis","type":"Role","_key":"7942","_from":"4066","_to":"6576"} +{"$label":"DIRECTED","_key":"17341","_from":"4066","_to":"12977"} +{"$label":"DIRECTED","_key":"13306","_from":"4066","_to":"10364"} +{"$label":"ACTS_IN","name":"Benno Kischewski","type":"Role","_key":"66791","_from":"4068","_to":"41259"} +{"$label":"ACTS_IN","name":"William der Letzte \/ Santa Maria","type":"Role","_key":"56980","_from":"4068","_to":"36154"} +{"$label":"ACTS_IN","name":"Ernesto","type":"Role","_key":"55355","_from":"4068","_to":"35292"} +{"$label":"ACTS_IN","name":"Santa Maria","type":"Role","_key":"49368","_from":"4068","_to":"32333"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"119032","_from":"4069","_to":"69971"} +{"$label":"ACTS_IN","name":"Maja","type":"Role","_key":"41166","_from":"4070","_to":"27703"} +{"$label":"ACTS_IN","name":"Kimberly Mullen","type":"Role","_key":"118661","_from":"4071","_to":"69764"} +{"$label":"ACTS_IN","name":"Agent Kate Russo","type":"Role","_key":"113719","_from":"4071","_to":"67018"} +{"$label":"ACTS_IN","name":"Sally St. Claire","type":"Role","_key":"98993","_from":"4071","_to":"58317"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"62808","_from":"4071","_to":"39473"} +{"$label":"ACTS_IN","name":"Lynn Carter","type":"Role","_key":"56846","_from":"4071","_to":"36092"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"49173","_from":"4071","_to":"32215"} +{"$label":"ACTS_IN","name":"Emmy Nelson","type":"Role","_key":"36270","_from":"4071","_to":"24605"} +{"$label":"ACTS_IN","name":"Shino","type":"Role","_key":"4771","_from":"4081","_to":"4072"} +{"$label":"ACTS_IN","name":"Katsushiro Okamoto","type":"Role","_key":"4770","_from":"4080","_to":"4072"} +{"$label":"ACTS_IN","name":"Shichiroji","type":"Role","_key":"4769","_from":"4079","_to":"4072"} +{"$label":"ACTS_IN","name":"Heihachi Hayashida","type":"Role","_key":"4768","_from":"4078","_to":"4072"} +{"$label":"ACTS_IN","name":"Kyuzo","type":"Role","_key":"4767","_from":"4077","_to":"4072"} +{"$label":"ACTS_IN","name":"Gorobei Katayama","type":"Role","_key":"4766","_from":"4076","_to":"4072"} +{"$label":"ACTS_IN","name":"Kambei Shimada","type":"Role","_key":"4765","_from":"4075","_to":"4072"} +{"$label":"ACTS_IN","name":"Kikuchiyo","type":"Role","_key":"4764","_from":"4074","_to":"4072"} +{"$label":"DIRECTED","_key":"4763","_from":"4073","_to":"4072"} +{"$label":"DIRECTED","_key":"114569","_from":"4073","_to":"67492"} +{"$label":"DIRECTED","_key":"97313","_from":"4073","_to":"57294"} +{"$label":"DIRECTED","_key":"90006","_from":"4073","_to":"53243"} +{"$label":"DIRECTED","_key":"89848","_from":"4073","_to":"53168"} +{"$label":"DIRECTED","_key":"72957","_from":"4073","_to":"43918"} +{"$label":"DIRECTED","_key":"72516","_from":"4073","_to":"43743"} +{"$label":"DIRECTED","_key":"71717","_from":"4073","_to":"43413"} +{"$label":"DIRECTED","_key":"71255","_from":"4073","_to":"43232"} +{"$label":"DIRECTED","_key":"56447","_from":"4073","_to":"35857"} +{"$label":"DIRECTED","_key":"28717","_from":"4073","_to":"20517"} +{"$label":"DIRECTED","_key":"28712","_from":"4073","_to":"20514"} +{"$label":"DIRECTED","_key":"28706","_from":"4073","_to":"20511"} +{"$label":"DIRECTED","_key":"11882","_from":"4073","_to":"9321"} +{"$label":"DIRECTED","_key":"6533","_from":"4073","_to":"5529"} +{"$label":"ACTS_IN","name":"Toranosuke Shimada","type":"Role","_key":"121355","_from":"4074","_to":"71310"} +{"$label":"ACTS_IN","name":"Lord Yoshi Toranaga","type":"Role","_key":"109442","_from":"4074","_to":"64655"} +{"$label":"ACTS_IN","name":"Kingo Gondo","type":"Role","_key":"89849","_from":"4074","_to":"53168"} +{"$label":"ACTS_IN","name":"Rikyu Sen-no","type":"Role","_key":"89689","_from":"4074","_to":"53088"} +{"$label":"ACTS_IN","name":"Sanjuro Kuwabatake \/ The Samurai","type":"Role","_key":"72510","_from":"4074","_to":"43743"} +{"$label":"ACTS_IN","name":"Kuroda Jubie","type":"Role","_key":"72312","_from":"4074","_to":"43679"} +{"$label":"ACTS_IN","name":"Sanj\u00fbr\u00f4 Tsubaki \/ The Samurai","type":"Role","_key":"71713","_from":"4074","_to":"43413"} +{"$label":"ACTS_IN","name":"Dr. Kyojio Niide","type":"Role","_key":"28713","_from":"4074","_to":"20514"} +{"$label":"ACTS_IN","name":"Taketori Washizu","type":"Role","_key":"28707","_from":"4074","_to":"20511"} +{"$label":"ACTS_IN","name":"Rokurota Makabe","type":"Role","_key":"11883","_from":"4074","_to":"9321"} +{"$label":"ACTS_IN","name":"Taj\u00f4maru","type":"Role","_key":"6534","_from":"4074","_to":"5529"} +{"$label":"ACTS_IN","name":"Tokuemon, sake brewer","type":"Role","_key":"72515","_from":"4075","_to":"43743"} +{"$label":"ACTS_IN","name":"Kanji Watanabe","type":"Role","_key":"28718","_from":"4075","_to":"20517"} +{"$label":"ACTS_IN","name":"Tokubei Izumiya","type":"Role","_key":"28715","_from":"4075","_to":"20514"} +{"$label":"ACTS_IN","name":"Noriyasu Odagura","type":"Role","_key":"28711","_from":"4075","_to":"20511"} +{"$label":"ACTS_IN","name":"Axis Scientist","type":"Role","_key":"26400","_from":"4075","_to":"18962"} +{"$label":"ACTS_IN","name":"Kyohei Yamane-hakase","type":"Role","_key":"14881","_from":"4075","_to":"11435"} +{"$label":"ACTS_IN","name":"Izumi Nagakura","type":"Role","_key":"11884","_from":"4075","_to":"9321"} +{"$label":"ACTS_IN","name":"Woodcutter","type":"Role","_key":"6537","_from":"4075","_to":"5529"} +{"$label":"ACTS_IN","name":"Tahei","type":"Role","_key":"11885","_from":"4078","_to":"9321"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"6538","_from":"4078","_to":"5529"} +{"$label":"ACTS_IN","name":"Inokichi","type":"Role","_key":"72514","_from":"4079","_to":"43743"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"6541","_from":"4079","_to":"5529"} +{"$label":"ACTS_IN","name":"Detective Arai","type":"Role","_key":"89853","_from":"4080","_to":"53168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"4784","_from":"4093","_to":"4082"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"4783","_from":"4092","_to":"4082"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4782","_from":"4091","_to":"4082"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4780","_from":"4090","_to":"4082"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4779","_from":"4089","_to":"4082"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"4778","_from":"4088","_to":"4082"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4777","_from":"4087","_to":"4082"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"4776","_from":"4086","_to":"4082"} +{"$label":"DIRECTED","_key":"4775","_from":"4085","_to":"4082"} +{"$label":"DIRECTED","_key":"4773","_from":"4084","_to":"4082"} +{"$label":"DIRECTED","_key":"4772","_from":"4083","_to":"4082"} +{"$label":"DIRECTED","_key":"26569","_from":"4083","_to":"19095"} +{"$label":"DIRECTED","_key":"119172","_from":"4084","_to":"70030"} +{"$label":"DIRECTED","_key":"119166","_from":"4084","_to":"70028"} +{"$label":"DIRECTED","_key":"101241","_from":"4084","_to":"59623"} +{"$label":"DIRECTED","_key":"90231","_from":"4084","_to":"53349"} +{"$label":"DIRECTED","_key":"70750","_from":"4084","_to":"43020"} +{"$label":"DIRECTED","_key":"27270","_from":"4085","_to":"19607"} +{"$label":"ACTS_IN","name":"Pijma","type":"Role","_key":"118790","_from":"4091","_to":"69840"} +{"$label":"ACTS_IN","name":"M\u00e4dchen von der Gasse","type":"Role","_key":"24532","_from":"4091","_to":"17739"} +{"$label":"ACTS_IN","name":"Josef Reindorfer","type":"Role","_key":"44709","_from":"4092","_to":"29749"} +{"$label":"ACTS_IN","name":"Gottlieb Peukert","type":"Role","_key":"44417","_from":"4092","_to":"29590"} +{"$label":"ACTS_IN","name":"Spediteur Carl Falk","type":"Role","_key":"31790","_from":"4092","_to":"22186"} +{"$label":"ACTS_IN","name":"Polizeikommandant","type":"Role","_key":"10091","_from":"4092","_to":"8075"} +{"$label":"ACTS_IN","name":"Mother (voice)","type":"Role","_key":"4794","_from":"4098","_to":"4094"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"4793","_from":"4097","_to":"4094"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"4789","_from":"4096","_to":"4094"} +{"$label":"ACTS_IN","name":"Lambert","type":"Role","_key":"4788","_from":"4095","_to":"4094"} +{"$label":"ACTS_IN","name":"Nancy Bellicec","type":"Role","_key":"72360","_from":"4095","_to":"43697"} +{"$label":"ACTS_IN","name":"Helen Freeman","type":"Role","_key":"61020","_from":"4095","_to":"38561"} +{"$label":"ACTS_IN","name":"Felicia Alden","type":"Role","_key":"41462","_from":"4095","_to":"27868"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37463","_from":"4095","_to":"25381"} +{"$label":"ACTS_IN","name":"Wendy Lenk","type":"Role","_key":"34426","_from":"4095","_to":"23588"} +{"$label":"ACTS_IN","name":"Cathy Brenner","type":"Role","_key":"6813","_from":"4095","_to":"5715"} +{"$label":"ACTS_IN","name":"Billy Ray","type":"Role","_key":"108744","_from":"4096","_to":"64283"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"96949","_from":"4096","_to":"57026"} +{"$label":"ACTS_IN","name":"Gideon","type":"Role","_key":"94199","_from":"4096","_to":"55472"} +{"$label":"ACTS_IN","name":"Skip Summers","type":"Role","_key":"88536","_from":"4096","_to":"52472"} +{"$label":"ACTS_IN","name":"Pvt. Willard (as Dean Stanton)","type":"Role","_key":"70911","_from":"4096","_to":"43079"} +{"$label":"ACTS_IN","name":"Jack Walsh","type":"Role","_key":"70398","_from":"4096","_to":"42871"} +{"$label":"ACTS_IN","name":"Paulus","type":"Role","_key":"67564","_from":"4096","_to":"41595"} +{"$label":"ACTS_IN","name":"1st Sgt. Jim Ballard","type":"Role","_key":"65637","_from":"4096","_to":"40671"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"56522","_from":"4096","_to":"35892"} +{"$label":"ACTS_IN","name":"Lt. Howard","type":"Role","_key":"52563","_from":"4096","_to":"34164"} +{"$label":"ACTS_IN","name":"Rudolph Junkins","type":"Role","_key":"50775","_from":"4096","_to":"33134"} +{"$label":"ACTS_IN","name":"Cosmo Gadabeeti","type":"Role","_key":"46769","_from":"4096","_to":"30852"} +{"$label":"ACTS_IN","name":"Brother Bud Sanders","type":"Role","_key":"44780","_from":"4096","_to":"29790"} +{"$label":"ACTS_IN","name":"Vincent Ferriman","type":"Role","_key":"27063","_from":"4096","_to":"19484"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"16218","_from":"4096","_to":"12305"} +{"$label":"ACTS_IN","name":"Billy Rolfe","type":"Role","_key":"15850","_from":"4096","_to":"12058"} +{"$label":"ACTS_IN","name":"Freddie Howard","type":"Role","_key":"15306","_from":"4096","_to":"11713"} +{"$label":"ACTS_IN","name":"Harold 'Brain' Helman","type":"Role","_key":"11986","_from":"4096","_to":"9392"} +{"$label":"ACTS_IN","name":"Tramp","type":"Role","_key":"10755","_from":"4096","_to":"8527"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"7834","_from":"4096","_to":"6500"} +{"$label":"ACTS_IN","name":"Johnnie Farragut","type":"Role","_key":"5927","_from":"4096","_to":"5031"} +{"$label":"ACTS_IN","name":"Lyle Straight, Alvin's Brother","type":"Role","_key":"5140","_from":"4096","_to":"4349"} +{"$label":"ACTS_IN","name":"Billiard Player","type":"Role","_key":"4807","_from":"4110","_to":"4099"} +{"$label":"ACTS_IN","name":"Laura's New Friend","type":"Role","_key":"4806","_from":"4109","_to":"4099"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"4805","_from":"4108","_to":"4099"} +{"$label":"ACTS_IN","name":"Micha\u00ebl","type":"Role","_key":"4804","_from":"4107","_to":"4099"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"4803","_from":"4106","_to":"4099"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"4802","_from":"4105","_to":"4099"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"4801","_from":"4104","_to":"4099"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"4800","_from":"4103","_to":"4099"} +{"$label":"ACTS_IN","name":"B\u00e9atrix","type":"Role","_key":"4797","_from":"4102","_to":"4099"} +{"$label":"DIRECTED","_key":"4796","_from":"4101","_to":"4099"} +{"$label":"DIRECTED","_key":"4795","_from":"4100","_to":"4099"} +{"$label":"DIRECTED","_key":"104018","_from":"4100","_to":"61197"} +{"$label":"DIRECTED","_key":"104019","_from":"4101","_to":"61197"} +{"$label":"ACTS_IN","name":"Sarah Bellinsky","type":"Role","_key":"106057","_from":"4102","_to":"62456"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"66195","_from":"4102","_to":"40953"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"62389","_from":"4102","_to":"39307"} +{"$label":"ACTS_IN","name":"Nathalie Auzet","type":"Role","_key":"56068","_from":"4102","_to":"35624"} +{"$label":"ACTS_IN","name":"Marcelline","type":"Role","_key":"43005","_from":"4102","_to":"28730"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"35248","_from":"4102","_to":"24004"} +{"$label":"ACTS_IN","name":"Jany","type":"Role","_key":"21978","_from":"4102","_to":"16047"} +{"$label":"ACTS_IN","name":"Segment \"Drugstore\"","type":"Role","_key":"21037","_from":"4102","_to":"15398"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"7252","_from":"4102","_to":"6053"} +{"$label":"DIRECTED","_key":"43018","_from":"4102","_to":"28730"} +{"$label":"ACTS_IN","name":"Monsieur Prouvost","type":"Role","_key":"49745","_from":"4103","_to":"32543"} +{"$label":"DIRECTED","_key":"4821","_from":"4122","_to":"4111"} +{"$label":"ACTS_IN","name":"Jacqueline Follet","type":"Role","_key":"4820","_from":"4121","_to":"4111"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4819","_from":"4120","_to":"4111"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"4818","_from":"4119","_to":"4111"} +{"$label":"ACTS_IN","name":"Serena","type":"Role","_key":"4817","_from":"4118","_to":"4111"} +{"$label":"ACTS_IN","name":"James Holt","type":"Role","_key":"4816","_from":"4117","_to":"4111"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"4815","_from":"4116","_to":"4111"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"4814","_from":"4115","_to":"4111"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"4813","_from":"4114","_to":"4111"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"4812","_from":"4113","_to":"4111"} +{"$label":"ACTS_IN","name":"Christian Thompson","type":"Role","_key":"4811","_from":"4112","_to":"4111"} +{"$label":"ACTS_IN","name":"R\u00e9taux de Vilette","type":"Role","_key":"118611","_from":"4112","_to":"69747"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"102957","_from":"4112","_to":"60559"} +{"$label":"ACTS_IN","name":"Roderick Blank","type":"Role","_key":"100193","_from":"4112","_to":"59097"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"71539","_from":"4112","_to":"43346"} +{"$label":"ACTS_IN","name":"Max Rourke","type":"Role","_key":"62577","_from":"4112","_to":"39377"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"39552","_from":"4112","_to":"26729"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"117773","_from":"4113","_to":"69233"} +{"$label":"ACTS_IN","name":"Young Victoria","type":"Role","_key":"115816","_from":"4113","_to":"68180"} +{"$label":"ACTS_IN","name":"Valerie Brennan","type":"Role","_key":"108465","_from":"4113","_to":"64118"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"99154","_from":"4113","_to":"58419"} +{"$label":"ACTS_IN","name":"Norah Lorkowski","type":"Role","_key":"92491","_from":"4113","_to":"54598"} +{"$label":"ACTS_IN","name":"Tamsin","type":"Role","_key":"55916","_from":"4113","_to":"35565"} +{"$label":"ACTS_IN","name":"Gwen Conliffe","type":"Role","_key":"47606","_from":"4113","_to":"31370"} +{"$label":"ACTS_IN","name":"Ruthie Draper","type":"Role","_key":"45933","_from":"4113","_to":"30370"} +{"$label":"ACTS_IN","name":"Prudie","type":"Role","_key":"40653","_from":"4113","_to":"27371"} +{"$label":"ACTS_IN","name":"Chase Hammond","type":"Role","_key":"100214","_from":"4114","_to":"59107"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"98986","_from":"4114","_to":"58316"} +{"$label":"ACTS_IN","name":"Pvt. Daniel E. Abrams","type":"Role","_key":"64354","_from":"4114","_to":"40107"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"17251","_from":"4115","_to":"12920"} +{"$label":"ACTS_IN","name":"Joanne Jefferson","type":"Role","_key":"15832","_from":"4115","_to":"12045"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"90258","_from":"4117","_to":"53362"} +{"$label":"ACTS_IN","name":"Officer Carew","type":"Role","_key":"26243","_from":"4117","_to":"18839"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"67532","_from":"4118","_to":"41580"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"111512","_from":"4119","_to":"65842"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53622","_from":"4119","_to":"34590"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28482","_from":"4119","_to":"20352"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"36290","_from":"4121","_to":"24618"} +{"$label":"DIRECTED","_key":"112130","_from":"4122","_to":"66220"} +{"$label":"DIRECTED","_key":"99557","_from":"4122","_to":"58688"} +{"$label":"DIRECTED","_key":"26820","_from":"4122","_to":"19275"} +{"$label":"DIRECTED","_key":"26818","_from":"4122","_to":"19272"} +{"$label":"ACTS_IN","name":"Frau#5","type":"Role","_key":"4840","_from":"4142","_to":"4123"} +{"$label":"ACTS_IN","name":"Frau#4","type":"Role","_key":"4839","_from":"4141","_to":"4123"} +{"$label":"ACTS_IN","name":"Frau#3","type":"Role","_key":"4838","_from":"4140","_to":"4123"} +{"$label":"ACTS_IN","name":"Frau#2","type":"Role","_key":"4837","_from":"4139","_to":"4123"} +{"$label":"ACTS_IN","name":"Frau#1","type":"Role","_key":"4836","_from":"4138","_to":"4123"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister \/ Wehrleiter","type":"Role","_key":"4835","_from":"4137","_to":"4123"} +{"$label":"ACTS_IN","name":"Freund#3","type":"Role","_key":"4834","_from":"4136","_to":"4123"} +{"$label":"ACTS_IN","name":"Freund#2","type":"Role","_key":"4833","_from":"4135","_to":"4123"} +{"$label":"ACTS_IN","name":"Freund#1","type":"Role","_key":"4832","_from":"4134","_to":"4123"} +{"$label":"ACTS_IN","name":"Onkel","type":"Role","_key":"4831","_from":"4133","_to":"4123"} +{"$label":"ACTS_IN","name":"Tante","type":"Role","_key":"4830","_from":"4132","_to":"4123"} +{"$label":"ACTS_IN","name":"Nachbar","type":"Role","_key":"4829","_from":"4131","_to":"4123"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"4828","_from":"4130","_to":"4123"} +{"$label":"ACTS_IN","name":"Nachbarsjunge","type":"Role","_key":"4827","_from":"4129","_to":"4123"} +{"$label":"ACTS_IN","name":"Oma","type":"Role","_key":"4826","_from":"4128","_to":"4123"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"4825","_from":"4127","_to":"4123"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"4824","_from":"4126","_to":"4123"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"4823","_from":"4125","_to":"4123"} +{"$label":"DIRECTED","_key":"4822","_from":"4124","_to":"4123"} +{"$label":"DIRECTED","_key":"4850","_from":"4153","_to":"4143"} +{"$label":"ACTS_IN","name":"Birsen G\u00fcner\/ Mutter","type":"Role","_key":"4849","_from":"4152","_to":"4143"} +{"$label":"ACTS_IN","name":"Yilmaz G\u00fcner\/ Bruder","type":"Role","_key":"4848","_from":"4151","_to":"4143"} +{"$label":"ACTS_IN","name":"Yunus G\u00fcner\/ Vater","type":"Role","_key":"4847","_from":"4150","_to":"4143"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"4846","_from":"4149","_to":"4143"} +{"$label":"ACTS_IN","name":"Selma","type":"Role","_key":"4845","_from":"4148","_to":"4143"} +{"$label":"ACTS_IN","name":"Seref","type":"Role","_key":"4844","_from":"4147","_to":"4143"} +{"$label":"ACTS_IN","name":"Maren","type":"Role","_key":"4843","_from":"4146","_to":"4143"} +{"$label":"ACTS_IN","name":"Sibel G\u00fcner","type":"Role","_key":"4842","_from":"4145","_to":"4143"} +{"$label":"ACTS_IN","name":"Cahit Tomruk","type":"Role","_key":"4841","_from":"4144","_to":"4143"} +{"$label":"ACTS_IN","name":"Club Doyen","type":"Role","_key":"28660","_from":"4144","_to":"20478"} +{"$label":"ACTS_IN","name":"Die Italienerin","type":"Role","_key":"17404","_from":"4145","_to":"13011"} +{"$label":"ACTS_IN","name":"Osman","type":"Role","_key":"57303","_from":"4147","_to":"36335"} +{"$label":"ACTS_IN","name":"Rauf","type":"Role","_key":"34543","_from":"4147","_to":"23652"} +{"$label":"ACTS_IN","name":"Mehmet","type":"Role","_key":"17399","_from":"4147","_to":"13011"} +{"$label":"ACTS_IN","name":"Gerd","type":"Role","_key":"16570","_from":"4149","_to":"12516"} +{"$label":"ACTS_IN","name":"Grenzwache","type":"Role","_key":"28658","_from":"4151","_to":"20478"} +{"$label":"ACTS_IN","name":"Altin","type":"Role","_key":"17406","_from":"4151","_to":"13011"} +{"$label":"ACTS_IN","name":"Gabriels Bruder","type":"Role","_key":"5178","_from":"4151","_to":"4398"} +{"$label":"DIRECTED","_key":"90348","_from":"4153","_to":"53397"} +{"$label":"DIRECTED","_key":"71139","_from":"4153","_to":"43182"} +{"$label":"DIRECTED","_key":"51842","_from":"4153","_to":"33828"} +{"$label":"DIRECTED","_key":"28649","_from":"4153","_to":"20478"} +{"$label":"DIRECTED","_key":"17488","_from":"4153","_to":"13075"} +{"$label":"DIRECTED","_key":"5171","_from":"4153","_to":"4398"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54348","_from":"4153","_to":"34866"} +{"$label":"ACTS_IN","name":"Rum\u00e4nischer Grenzbeamter","type":"Role","_key":"28655","_from":"4153","_to":"20478"} +{"$label":"ACTS_IN","name":"Ex-Gott","type":"Role","_key":"27662","_from":"4153","_to":"19817"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"6878","_from":"4153","_to":"5751"} +{"$label":"ACTS_IN","name":"Ice Princess","type":"Role","_key":"4861","_from":"4158","_to":"4154"} +{"$label":"ACTS_IN","name":"Mrs. Cobblepot\/Penguin's Mother","type":"Role","_key":"4860","_from":"4157","_to":"4154"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"4859","_from":"4156","_to":"4154"} +{"$label":"ACTS_IN","name":"Mr. Cobblepot\/ Penguin's Father","type":"Role","_key":"4858","_from":"4155","_to":"4154"} +{"$label":"ACTS_IN","name":"Professor Spatz","type":"Role","_key":"103454","_from":"4155","_to":"60850"} +{"$label":"ACTS_IN","name":"Pee-wee Herman","type":"Role","_key":"95415","_from":"4155","_to":"56129"} +{"$label":"ACTS_IN","name":"Fife","type":"Role","_key":"93891","_from":"4155","_to":"55282"} +{"$label":"ACTS_IN","name":"FBI Agent Bob","type":"Role","_key":"66040","_from":"4155","_to":"40870"} +{"$label":"ACTS_IN","name":"Amilyn","type":"Role","_key":"61702","_from":"4155","_to":"38864"} +{"$label":"ACTS_IN","name":"Trimaxion \/ Max","type":"Role","_key":"61018","_from":"4155","_to":"38561"} +{"$label":"ACTS_IN","name":"Spleen","type":"Role","_key":"57178","_from":"4155","_to":"36278"} +{"$label":"ACTS_IN","name":"Pee-wee Herman","type":"Role","_key":"38590","_from":"4155","_to":"26073"} +{"$label":"ACTS_IN","name":"Derek Foreal","type":"Role","_key":"29709","_from":"4155","_to":"21034"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"6313","_from":"4155","_to":"5313"} +{"$label":"ACTS_IN","name":"Dr. Doover","type":"Role","_key":"116982","_from":"4156","_to":"68856"} +{"$label":"ACTS_IN","name":"Lt. Don Parker","type":"Role","_key":"90032","_from":"4156","_to":"53256"} +{"$label":"ACTS_IN","name":"Pete Curtis","type":"Role","_key":"70526","_from":"4156","_to":"42927"} +{"$label":"ACTS_IN","name":"Frank Adamic","type":"Role","_key":"45597","_from":"4156","_to":"30182"} +{"$label":"ACTS_IN","name":"Ambassador Thomas Kelly","type":"Role","_key":"41687","_from":"4156","_to":"27974"} +{"$label":"ACTS_IN","name":"John Triplette","type":"Role","_key":"26149","_from":"4156","_to":"18778"} +{"$label":"ACTS_IN","name":"Aubrey","type":"Role","_key":"16593","_from":"4156","_to":"12537"} +{"$label":"ACTS_IN","name":"Alfred Miller","type":"Role","_key":"15250","_from":"4156","_to":"11679"} +{"$label":"ACTS_IN","name":"Yale","type":"Role","_key":"8390","_from":"4156","_to":"6860"} +{"$label":"ACTS_IN","name":"Capt. Ezekiel Bradbury 'Me Lai' Marston IV","type":"Role","_key":"7786","_from":"4156","_to":"6460"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"101254","_from":"4157","_to":"59627"} +{"$label":"ACTS_IN","name":"The Mother","type":"Role","_key":"57389","_from":"4157","_to":"36384"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"38593","_from":"4157","_to":"26073"} +{"$label":"DIRECTED","_key":"4875","_from":"4170","_to":"4159"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"4873","_from":"4169","_to":"4159"} +{"$label":"ACTS_IN","name":"Sgt. Garcia","type":"Role","_key":"4872","_from":"4168","_to":"4159"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"4871","_from":"4167","_to":"4159"} +{"$label":"ACTS_IN","name":"Sgt. Parker","type":"Role","_key":"4870","_from":"4166","_to":"4159"} +{"$label":"ACTS_IN","name":"Rod Lane","type":"Role","_key":"4868","_from":"4165","_to":"4159"} +{"$label":"ACTS_IN","name":"Tina Gray","type":"Role","_key":"4867","_from":"4164","_to":"4159"} +{"$label":"ACTS_IN","name":"Lt. Thompson","type":"Role","_key":"4866","_from":"4163","_to":"4159"} +{"$label":"ACTS_IN","name":"Marge Thompson","type":"Role","_key":"4865","_from":"4162","_to":"4159"} +{"$label":"ACTS_IN","name":"Nancy Thompson","type":"Role","_key":"4863","_from":"4161","_to":"4159"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"4862","_from":"4160","_to":"4159"} +{"$label":"ACTS_IN","name":"Professor Gordon Crowley","type":"Role","_key":"108034","_from":"4160","_to":"63815"} +{"$label":"ACTS_IN","name":"William 'Bill' Gartley","type":"Role","_key":"95208","_from":"4160","_to":"56017"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"91999","_from":"4160","_to":"54275"} +{"$label":"ACTS_IN","name":"Freddy Krueger \/ Himself","type":"Role","_key":"70966","_from":"4160","_to":"43105"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"68891","_from":"4160","_to":"42190"} +{"$label":"ACTS_IN","name":"Doc Halloran","type":"Role","_key":"66986","_from":"4160","_to":"41353"} +{"$label":"ACTS_IN","name":"Mayor Buckman","type":"Role","_key":"66161","_from":"4160","_to":"40931"} +{"$label":"ACTS_IN","name":"Raymond Beaumont","type":"Role","_key":"62739","_from":"4160","_to":"39441"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"61330","_from":"4160","_to":"38707"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"61110","_from":"4160","_to":"38625"} +{"$label":"ACTS_IN","name":"Sheriff Berger","type":"Role","_key":"61048","_from":"4160","_to":"38583"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"60264","_from":"4160","_to":"38013"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"59455","_from":"4160","_to":"37551"} +{"$label":"ACTS_IN","name":"Freddy Krueger","type":"Role","_key":"43509","_from":"4160","_to":"29059"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"36457","_from":"4160","_to":"24729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30175","_from":"4160","_to":"21251"} +{"$label":"ACTS_IN","name":"Herself \/ Nancy Thompson","type":"Role","_key":"70965","_from":"4161","_to":"43105"} +{"$label":"ACTS_IN","name":"Nancy Thompson","type":"Role","_key":"60267","_from":"4161","_to":"38013"} +{"$label":"ACTS_IN","name":"Barbara Jean","type":"Role","_key":"26137","_from":"4162","_to":"18778"} +{"$label":"ACTS_IN","name":"The Connection","type":"Role","_key":"18758","_from":"4162","_to":"13876"} +{"$label":"ACTS_IN","name":"Lieutenant Kenneth Fuller","type":"Role","_key":"110591","_from":"4163","_to":"65341"} +{"$label":"ACTS_IN","name":"Luis Chama","type":"Role","_key":"102273","_from":"4163","_to":"60181"} +{"$label":"ACTS_IN","name":"Lt. Donald Thompson","type":"Role","_key":"60268","_from":"4163","_to":"38013"} +{"$label":"ACTS_IN","name":"Roper","type":"Role","_key":"54016","_from":"4163","_to":"34748"} +{"$label":"ACTS_IN","name":"Norman Hopper","type":"Role","_key":"50486","_from":"4163","_to":"32975"} +{"$label":"ACTS_IN","name":"Johnny Portugal","type":"Role","_key":"44534","_from":"4163","_to":"29653"} +{"$label":"ACTS_IN","name":"Chiledu","type":"Role","_key":"36625","_from":"4163","_to":"24814"} +{"$label":"ACTS_IN","name":"Benny Rampell","type":"Role","_key":"24924","_from":"4163","_to":"18009"} +{"$label":"ACTS_IN","name":"Mr. Kingstreet","type":"Role","_key":"24723","_from":"4163","_to":"17883"} +{"$label":"ACTS_IN","name":"Harry Thropen","type":"Role","_key":"19127","_from":"4163","_to":"14136"} +{"$label":"ACTS_IN","name":"FBI Agent","type":"Role","_key":"8882","_from":"4163","_to":"7204"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"117679","_from":"4165","_to":"69168"} +{"$label":"ACTS_IN","name":"David de La Paz","type":"Role","_key":"89788","_from":"4165","_to":"53138"} +{"$label":"ACTS_IN","name":"Capt. Tony Nadal","type":"Role","_key":"64311","_from":"4165","_to":"40088"} +{"$label":"ACTS_IN","name":"Ernesto \"Che\" Guevarra","type":"Role","_key":"55833","_from":"4165","_to":"35529"} +{"$label":"ACTS_IN","name":"Jorge Sotus","type":"Role","_key":"51257","_from":"4165","_to":"33420"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"40836","_from":"4165","_to":"27489"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"36898","_from":"4166","_to":"25008"} +{"$label":"ACTS_IN","name":"Sheriff Burke","type":"Role","_key":"30270","_from":"4166","_to":"21306"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"111401","_from":"4167","_to":"65780"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"104365","_from":"4167","_to":"61395"} +{"$label":"ACTS_IN","name":"Ms. Harding","type":"Role","_key":"95444","_from":"4167","_to":"56146"} +{"$label":"ACTS_IN","name":"Laura Harrington","type":"Role","_key":"69797","_from":"4167","_to":"42596"} +{"$label":"ACTS_IN","name":"Granny Boone","type":"Role","_key":"66162","_from":"4167","_to":"40931"} +{"$label":"ACTS_IN","name":"Mrs. Bruce","type":"Role","_key":"56678","_from":"4167","_to":"35999"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"29317","_from":"4167","_to":"20816"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"6493","_from":"4167","_to":"5497"} +{"$label":"ACTS_IN","name":"Mr. Towne","type":"Role","_key":"100431","_from":"4168","_to":"59216"} +{"$label":"ACTS_IN","name":"Bubba","type":"Role","_key":"57641","_from":"4168","_to":"36493"} +{"$label":"DIRECTED","_key":"114374","_from":"4170","_to":"67370"} +{"$label":"DIRECTED","_key":"104799","_from":"4170","_to":"61659"} +{"$label":"DIRECTED","_key":"92799","_from":"4170","_to":"54745"} +{"$label":"DIRECTED","_key":"90038","_from":"4170","_to":"53256"} +{"$label":"DIRECTED","_key":"89101","_from":"4170","_to":"52781"} +{"$label":"DIRECTED","_key":"88353","_from":"4170","_to":"52387"} +{"$label":"DIRECTED","_key":"70969","_from":"4170","_to":"43105"} +{"$label":"DIRECTED","_key":"70225","_from":"4170","_to":"42794"} +{"$label":"DIRECTED","_key":"69997","_from":"4170","_to":"42693"} +{"$label":"DIRECTED","_key":"59442","_from":"4170","_to":"37547"} +{"$label":"DIRECTED","_key":"50788","_from":"4170","_to":"33143"} +{"$label":"DIRECTED","_key":"30290","_from":"4170","_to":"21314"} +{"$label":"DIRECTED","_key":"30280","_from":"4170","_to":"21313"} +{"$label":"DIRECTED","_key":"30260","_from":"4170","_to":"21306"} +{"$label":"DIRECTED","_key":"19851","_from":"4170","_to":"14635"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70968","_from":"4170","_to":"43105"} +{"$label":"ACTS_IN","name":"Fred the Janitor","type":"Role","_key":"30279","_from":"4170","_to":"21306"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30169","_from":"4170","_to":"21251"} +{"$label":"ACTS_IN","name":"Florence Arizona","type":"Role","_key":"4887","_from":"4174","_to":"4171"} +{"$label":"ACTS_IN","name":"Nathan Arizona, Jr.","type":"Role","_key":"4886","_from":"4173","_to":"4171"} +{"$label":"ACTS_IN","name":"Leonard Smalls","type":"Role","_key":"4885","_from":"4172","_to":"4171"} +{"$label":"ACTS_IN","name":"Wolf Forrester","type":"Role","_key":"118895","_from":"4172","_to":"69879"} +{"$label":"ACTS_IN","name":"Slag","type":"Role","_key":"118809","_from":"4172","_to":"69847"} +{"$label":"ACTS_IN","name":"Ben Dover","type":"Role","_key":"101184","_from":"4172","_to":"59606"} +{"$label":"ACTS_IN","name":"Sailor","type":"Role","_key":"58676","_from":"4172","_to":"37064"} +{"$label":"ACTS_IN","name":"Gruff Man","type":"Role","_key":"25245","_from":"4172","_to":"18207"} +{"$label":"ACTS_IN","name":"O'Doole","type":"Role","_key":"4899","_from":"4181","_to":"4175"} +{"$label":"ACTS_IN","name":"Mayor Dale Levander","type":"Role","_key":"4898","_from":"4180","_to":"4175"} +{"$label":"ACTS_IN","name":"Tic-Tac","type":"Role","_key":"4897","_from":"4179","_to":"4175"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"4896","_from":"4178","_to":"4175"} +{"$label":"ACTS_IN","name":"Eddie Dane","type":"Role","_key":"4894","_from":"4177","_to":"4175"} +{"$label":"ACTS_IN","name":"Tom Reagan","type":"Role","_key":"4890","_from":"4176","_to":"4175"} +{"$label":"ACTS_IN","name":"Harry Compton","type":"Role","_key":"102710","_from":"4176","_to":"60425"} +{"$label":"ACTS_IN","name":"Charlie Miller","type":"Role","_key":"100885","_from":"4176","_to":"59480"} +{"$label":"ACTS_IN","name":"Jack Deebs","type":"Role","_key":"99219","_from":"4176","_to":"58470"} +{"$label":"ACTS_IN","name":"The Marquess of Steyne","type":"Role","_key":"71169","_from":"4176","_to":"43195"} +{"$label":"ACTS_IN","name":"Uther Pendragon","type":"Role","_key":"70431","_from":"4176","_to":"42880"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"63688","_from":"4176","_to":"39831"} +{"$label":"ACTS_IN","name":"Father Andrew Kiernan","type":"Role","_key":"62504","_from":"4176","_to":"39359"} +{"$label":"ACTS_IN","name":"Satan","type":"Role","_key":"58338","_from":"4176","_to":"36876"} +{"$label":"ACTS_IN","name":"Brill","type":"Role","_key":"56931","_from":"4176","_to":"36140"} +{"$label":"ACTS_IN","name":"Captain Sean Murphy","type":"Role","_key":"55246","_from":"4176","_to":"35238"} +{"$label":"ACTS_IN","name":"Bill Cleg","type":"Role","_key":"55052","_from":"4176","_to":"35170"} +{"$label":"ACTS_IN","name":"Friedrich Bhaer","type":"Role","_key":"54858","_from":"4176","_to":"35089"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"53060","_from":"4176","_to":"34349"} +{"$label":"ACTS_IN","name":"The Mechanic","type":"Role","_key":"53043","_from":"4176","_to":"34339"} +{"$label":"ACTS_IN","name":"Captain Marcus Duvall","type":"Role","_key":"51802","_from":"4176","_to":"33802"} +{"$label":"ACTS_IN","name":"Stewart","type":"Role","_key":"33245","_from":"4176","_to":"23031"} +{"$label":"ACTS_IN","name":"Philip Parker","type":"Role","_key":"20427","_from":"4176","_to":"14947"} +{"$label":"ACTS_IN","name":"Charlie Dickinson","type":"Role","_key":"10971","_from":"4176","_to":"8689"} +{"$label":"ACTS_IN","name":"Dean Keaton","type":"Role","_key":"7471","_from":"4176","_to":"6221"} +{"$label":"ACTS_IN","name":"Lt. Quinn","type":"Role","_key":"15115","_from":"4177","_to":"11600"} +{"$label":"ACTS_IN","name":"Marcelles Santos","type":"Role","_key":"5922","_from":"4177","_to":"5031"} +{"$label":"ACTS_IN","name":"Crocker","type":"Role","_key":"98891","_from":"4178","_to":"58269"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"63323","_from":"4178","_to":"39696"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"59561","_from":"4178","_to":"37600"} +{"$label":"ACTS_IN","name":"Det. Russ Millard","type":"Role","_key":"55472","_from":"4178","_to":"35352"} +{"$label":"ACTS_IN","name":"Joe Mentaliano","type":"Role","_key":"49965","_from":"4178","_to":"32706"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"28190","_from":"4178","_to":"20190"} +{"$label":"ACTS_IN","name":"Sgt. Zikowski","type":"Role","_key":"20269","_from":"4178","_to":"14861"} +{"$label":"ACTS_IN","name":"Frenchy","type":"Role","_key":"9033","_from":"4178","_to":"7306"} +{"$label":"ACTS_IN","name":"Tony Scipelli","type":"Role","_key":"7358","_from":"4178","_to":"6132"} +{"$label":"ACTS_IN","name":"Georgie Weiss","type":"Role","_key":"6242","_from":"4178","_to":"5281"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"4921","_from":"4199","_to":"4182"} +{"$label":"ACTS_IN","name":"Patient in Waiting Room","type":"Role","_key":"4920","_from":"4198","_to":"4182"} +{"$label":"ACTS_IN","name":"Minister at Funeral","type":"Role","_key":"4919","_from":"4197","_to":"4182"} +{"$label":"ACTS_IN","name":"Secretary Dr. Bruner","type":"Role","_key":"4918","_from":"4196","_to":"4182"} +{"$label":"ACTS_IN","name":"Farm Kid#6","type":"Role","_key":"4917","_from":"4195","_to":"4182"} +{"$label":"ACTS_IN","name":"Farm Kid#5","type":"Role","_key":"4916","_from":"4194","_to":"4182"} +{"$label":"ACTS_IN","name":"Farm Kid#3","type":"Role","_key":"4915","_from":"4193","_to":"4182"} +{"$label":"ACTS_IN","name":"Farm Kid#2","type":"Role","_key":"4914","_from":"4192","_to":"4182"} +{"$label":"ACTS_IN","name":"Farm Kid#1","type":"Role","_key":"4913","_from":"4191","_to":"4182"} +{"$label":"ACTS_IN","name":"Township Doctor","type":"Role","_key":"4911","_from":"4190","_to":"4182"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"4909","_from":"4189","_to":"4182"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"4908","_from":"4188","_to":"4182"} +{"$label":"ACTS_IN","name":"Vern","type":"Role","_key":"4907","_from":"4187","_to":"4182"} +{"$label":"ACTS_IN","name":"John Mooney","type":"Role","_key":"4906","_from":"4186","_to":"4182"} +{"$label":"ACTS_IN","name":"Dr. Bruner","type":"Role","_key":"4905","_from":"4185","_to":"4182"} +{"$label":"ACTS_IN","name":"Raymond Babbitt","type":"Role","_key":"4902","_from":"4184","_to":"4182"} +{"$label":"DIRECTED","_key":"4901","_from":"4183","_to":"4182"} +{"$label":"DIRECTED","_key":"96409","_from":"4183","_to":"56647"} +{"$label":"DIRECTED","_key":"72675","_from":"4183","_to":"43797"} +{"$label":"DIRECTED","_key":"70974","_from":"4183","_to":"43106"} +{"$label":"DIRECTED","_key":"69587","_from":"4183","_to":"42485"} +{"$label":"DIRECTED","_key":"66519","_from":"4183","_to":"41126"} +{"$label":"DIRECTED","_key":"62669","_from":"4183","_to":"39415"} +{"$label":"DIRECTED","_key":"61283","_from":"4183","_to":"38697"} +{"$label":"DIRECTED","_key":"57672","_from":"4183","_to":"36513"} +{"$label":"DIRECTED","_key":"51841","_from":"4183","_to":"33826"} +{"$label":"DIRECTED","_key":"51586","_from":"4183","_to":"33665"} +{"$label":"DIRECTED","_key":"26483","_from":"4183","_to":"19030"} +{"$label":"DIRECTED","_key":"20219","_from":"4183","_to":"14831"} +{"$label":"DIRECTED","_key":"9646","_from":"4183","_to":"7756"} +{"$label":"DIRECTED","_key":"9443","_from":"4183","_to":"7625"} +{"$label":"DIRECTED","_key":"7026","_from":"4183","_to":"5892"} +{"$label":"ACTS_IN","name":"Martin Benson","type":"Role","_key":"37857","_from":"4183","_to":"25647"} +{"$label":"ACTS_IN","name":"Harvey Shine","type":"Role","_key":"109111","_from":"4184","_to":"64469"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"107237","_from":"4184","_to":"63245"} +{"$label":"ACTS_IN","name":"Chuck Clarke","type":"Role","_key":"91125","_from":"4184","_to":"53764"} +{"$label":"ACTS_IN","name":"Dutch Schultz","type":"Role","_key":"90794","_from":"4184","_to":"53581"} +{"$label":"ACTS_IN","name":"Willy Loman","type":"Role","_key":"90615","_from":"4184","_to":"53515"} +{"$label":"ACTS_IN","name":"Ted Kramer","type":"Role","_key":"88029","_from":"4184","_to":"52258"} +{"$label":"ACTS_IN","name":"Wendell Rohr","type":"Role","_key":"69172","_from":"4184","_to":"42305"} +{"$label":"ACTS_IN","name":"Jack Crabb","type":"Role","_key":"67500","_from":"4184","_to":"41571"} +{"$label":"ACTS_IN","name":"Winston King","type":"Role","_key":"65394","_from":"4184","_to":"40555"} +{"$label":"ACTS_IN","name":"Bernard 'Bernie' Laplante","type":"Role","_key":"65124","_from":"4184","_to":"40453"} +{"$label":"ACTS_IN","name":"Vito McMullen","type":"Role","_key":"64020","_from":"4184","_to":"39967"} +{"$label":"ACTS_IN","name":"Thomas Babington \u201aBabe\u2018 Levy","type":"Role","_key":"63798","_from":"4184","_to":"39894"} +{"$label":"ACTS_IN","name":"Roscuro","type":"Role","_key":"61657","_from":"4184","_to":"38847"} +{"$label":"ACTS_IN","name":"Dr. Norman Goodman","type":"Role","_key":"61284","_from":"4184","_to":"38697"} +{"$label":"ACTS_IN","name":"Das Gewissen","type":"Role","_key":"59898","_from":"4184","_to":"37823"} +{"$label":"ACTS_IN","name":"Max Brackett","type":"Role","_key":"56499","_from":"4184","_to":"35888"} +{"$label":"ACTS_IN","name":"Meyer Lansky","type":"Role","_key":"55828","_from":"4184","_to":"35529"} +{"$label":"ACTS_IN","name":"Dorothy Michaels","type":"Role","_key":"54795","_from":"4184","_to":"35059"} +{"$label":"ACTS_IN","name":"Mumbles","type":"Role","_key":"50240","_from":"4184","_to":"32833"} +{"$label":"ACTS_IN","name":"Sam Daniels","type":"Role","_key":"45263","_from":"4184","_to":"30038"} +{"$label":"ACTS_IN","name":"Louis Dega","type":"Role","_key":"40461","_from":"4184","_to":"27261"} +{"$label":"ACTS_IN","name":"Jason Fister","type":"Role","_key":"26300","_from":"4184","_to":"18886"} +{"$label":"ACTS_IN","name":"'Ratso' Rizzo","type":"Role","_key":"26098","_from":"4184","_to":"18751"} +{"$label":"ACTS_IN","name":"Mr. Edward Magorium","type":"Role","_key":"20019","_from":"4184","_to":"14731"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"14177","_from":"4184","_to":"10966"} +{"$label":"ACTS_IN","name":"Giuseppe Baldini","type":"Role","_key":"13208","_from":"4184","_to":"10287"} +{"$label":"ACTS_IN","name":"Professor Jules Hilbert","type":"Role","_key":"12322","_from":"4184","_to":"9655"} +{"$label":"ACTS_IN","name":"David Sumner","type":"Role","_key":"11745","_from":"4184","_to":"9219"} +{"$label":"ACTS_IN","name":"Carl Bernstein","type":"Role","_key":"10606","_from":"4184","_to":"8423"} +{"$label":"ACTS_IN","name":"Captain James S. Hook","type":"Role","_key":"10452","_from":"4184","_to":"8318"} +{"$label":"ACTS_IN","name":"Charles Frohman","type":"Role","_key":"10297","_from":"4184","_to":"8196"} +{"$label":"ACTS_IN","name":"Danny Snyder","type":"Role","_key":"9653","_from":"4184","_to":"7756"} +{"$label":"ACTS_IN","name":"Bernie Focker","type":"Role","_key":"8344","_from":"4184","_to":"6834"} +{"$label":"ACTS_IN","name":"Stanley Motss","type":"Role","_key":"7027","_from":"4184","_to":"5892"} +{"$label":"ACTS_IN","name":"Roscoe","type":"Role","_key":"61462","_from":"4187","_to":"38771"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"118771","_from":"4188","_to":"69835"} +{"$label":"ACTS_IN","name":"Creasy","type":"Role","_key":"56265","_from":"4188","_to":"35740"} +{"$label":"ACTS_IN","name":"Trina Walsh","type":"Role","_key":"96683","_from":"4189","_to":"56865"} +{"$label":"ACTS_IN","name":"Heidi Halleck","type":"Role","_key":"62354","_from":"4189","_to":"39282"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"45717","_from":"4189","_to":"30256"} +{"$label":"ACTS_IN","name":"Germaine","type":"Role","_key":"4930","_from":"4204","_to":"4200"} +{"$label":"ACTS_IN","name":"Foussard","type":"Role","_key":"4929","_from":"4203","_to":"4200"} +{"$label":"ACTS_IN","name":"H. H. Hughson","type":"Role","_key":"4927","_from":"4202","_to":"4200"} +{"$label":"ACTS_IN","name":"Danielle Foussard","type":"Role","_key":"4926","_from":"4201","_to":"4200"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise a\u00een\u00e9e","type":"Role","_key":"23810","_from":"4201","_to":"17263"} +{"$label":"ACTS_IN","name":"Thomas Fairchild","type":"Role","_key":"44349","_from":"4202","_to":"29551"} +{"$label":"ACTS_IN","name":"Emil Blake","type":"Role","_key":"32470","_from":"4202","_to":"22584"} +{"$label":"ACTS_IN","name":"Chief Insp. Hubbard","type":"Role","_key":"6231","_from":"4202","_to":"5277"} +{"$label":"ACTS_IN","name":"C\u00e9sar (voice)","type":"Role","_key":"53509","_from":"4203","_to":"34548"} +{"$label":"ACTS_IN","name":"Vidocq","type":"Role","_key":"32351","_from":"4203","_to":"22527"} +{"$label":"ACTS_IN","name":"Le chef de la P.J.","type":"Role","_key":"31841","_from":"4203","_to":"22219"} +{"$label":"ACTS_IN","name":"\u00c9tienne Duplessis","type":"Role","_key":"21222","_from":"4203","_to":"15537"} +{"$label":"ACTS_IN","name":"Madame Berval","type":"Role","_key":"34076","_from":"4204","_to":"23415"} +{"$label":"ACTS_IN","name":"Bob Pitchlynn","type":"Role","_key":"4937","_from":"4212","_to":"4205"} +{"$label":"ACTS_IN","name":"Roberto Pepper","type":"Role","_key":"4936","_from":"4211","_to":"4205"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"4935","_from":"4210","_to":"4205"} +{"$label":"ACTS_IN","name":"Hotel Clerk","type":"Role","_key":"4934","_from":"4209","_to":"4205"} +{"$label":"ACTS_IN","name":"Walt Curtis","type":"Role","_key":"4933","_from":"4208","_to":"4205"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"4932","_from":"4207","_to":"4205"} +{"$label":"DIRECTED","_key":"4931","_from":"4206","_to":"4205"} +{"$label":"DIRECTED","_key":"68809","_from":"4206","_to":"42164"} +{"$label":"DIRECTED","_key":"61183","_from":"4206","_to":"38659"} +{"$label":"DIRECTED","_key":"19841","_from":"4206","_to":"14635"} +{"$label":"DIRECTED","_key":"17227","_from":"4206","_to":"12905"} +{"$label":"DIRECTED","_key":"16960","_from":"4206","_to":"12732"} +{"$label":"DIRECTED","_key":"15608","_from":"4206","_to":"11909"} +{"$label":"DIRECTED","_key":"14783","_from":"4206","_to":"11372"} +{"$label":"DIRECTED","_key":"8593","_from":"4206","_to":"6989"} +{"$label":"DIRECTED","_key":"6893","_from":"4206","_to":"5792"} +{"$label":"DIRECTED","_key":"5942","_from":"4206","_to":"5047"} +{"$label":"DIRECTED","_key":"5863","_from":"4206","_to":"4983"} +{"$label":"DIRECTED","_key":"5804","_from":"4206","_to":"4938"} +{"$label":"DIRECTED","_key":"4951","_from":"4221","_to":"4213"} +{"$label":"ACTS_IN","name":"Pilgrim","type":"Role","_key":"4949","_from":"4220","_to":"4213"} +{"$label":"ACTS_IN","name":"Ario","type":"Role","_key":"4948","_from":"4219","_to":"4213"} +{"$label":"ACTS_IN","name":"Hinrich","type":"Role","_key":"4946","_from":"4218","_to":"4213"} +{"$label":"ACTS_IN","name":"Ullmann","type":"Role","_key":"4945","_from":"4217","_to":"4213"} +{"$label":"ACTS_IN","name":"1WO","type":"Role","_key":"4941","_from":"4216","_to":"4213"} +{"$label":"ACTS_IN","name":"Der Leitende\/Fritz Grade","type":"Role","_key":"4940","_from":"4215","_to":"4213"} +{"$label":"ACTS_IN","name":"Leutnant Werner","type":"Role","_key":"4939","_from":"4214","_to":"4213"} +{"$label":"ACTS_IN","name":"Morduch Halsman","type":"Role","_key":"67865","_from":"4218","_to":"41695"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"59775","_from":"4218","_to":"37734"} +{"$label":"ACTS_IN","name":"Brummboss","type":"Role","_key":"56954","_from":"4218","_to":"36144"} +{"$label":"ACTS_IN","name":"Kommissar Seiler","type":"Role","_key":"49112","_from":"4218","_to":"32177"} +{"$label":"ACTS_IN","name":"Laila","type":"Role","_key":"40091","_from":"4218","_to":"27060"} +{"$label":"ACTS_IN","name":"Bernd Helmer","type":"Role","_key":"32957","_from":"4218","_to":"22852"} +{"$label":"ACTS_IN","name":"Prottengeier","type":"Role","_key":"19007","_from":"4218","_to":"14038"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"18713","_from":"4218","_to":"13845"} +{"$label":"ACTS_IN","name":"Laurenz Schmidt","type":"Role","_key":"16562","_from":"4218","_to":"12511"} +{"$label":"ACTS_IN","name":"Kreisleiter","type":"Role","_key":"61100","_from":"4219","_to":"38620"} +{"$label":"ACTS_IN","name":"Schleimer","type":"Role","_key":"19008","_from":"4219","_to":"14038"} +{"$label":"ACTS_IN","name":"Hinnerk","type":"Role","_key":"66557","_from":"4220","_to":"41143"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"31926","_from":"4220","_to":"22264"} +{"$label":"DIRECTED","_key":"72447","_from":"4221","_to":"43724"} +{"$label":"DIRECTED","_key":"56515","_from":"4221","_to":"35891"} +{"$label":"DIRECTED","_key":"53521","_from":"4221","_to":"34555"} +{"$label":"DIRECTED","_key":"45275","_from":"4221","_to":"30038"} +{"$label":"DIRECTED","_key":"43798","_from":"4221","_to":"29250"} +{"$label":"DIRECTED","_key":"38863","_from":"4221","_to":"26248"} +{"$label":"DIRECTED","_key":"18549","_from":"4221","_to":"13731"} +{"$label":"DIRECTED","_key":"18005","_from":"4221","_to":"13387"} +{"$label":"DIRECTED","_key":"7787","_from":"4221","_to":"6469"} +{"$label":"DIRECTED","_key":"6074","_from":"4221","_to":"5157"} +{"$label":"ACTS_IN","name":"Bank Guard#2","type":"Role","_key":"4969","_from":"4234","_to":"4222"} +{"$label":"ACTS_IN","name":"Bank Guard#1","type":"Role","_key":"4968","_from":"4233","_to":"4222"} +{"$label":"ACTS_IN","name":"Herman Gluck","type":"Role","_key":"4967","_from":"4232","_to":"4222"} +{"$label":"ACTS_IN","name":"Vikram Walia","type":"Role","_key":"4966","_from":"4231","_to":"4222"} +{"$label":"ACTS_IN","name":"Peter Hammond","type":"Role","_key":"4965","_from":"4230","_to":"4222"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"4964","_from":"4229","_to":"4222"} +{"$label":"ACTS_IN","name":"Sergeant Collins","type":"Role","_key":"4963","_from":"4228","_to":"4222"} +{"$label":"ACTS_IN","name":"Chaim","type":"Role","_key":"4961","_from":"4227","_to":"4222"} +{"$label":"ACTS_IN","name":"Steve-O","type":"Role","_key":"4960","_from":"4226","_to":"4222"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"4958","_from":"4225","_to":"4222"} +{"$label":"ACTS_IN","name":"Detective Bill Mitchell","type":"Role","_key":"4957","_from":"4224","_to":"4222"} +{"$label":"DIRECTED","_key":"4952","_from":"4223","_to":"4222"} +{"$label":"DIRECTED","_key":"89350","_from":"4223","_to":"52887"} +{"$label":"DIRECTED","_key":"62350","_from":"4223","_to":"39281"} +{"$label":"DIRECTED","_key":"54050","_from":"4223","_to":"34766"} +{"$label":"DIRECTED","_key":"16256","_from":"4223","_to":"12327"} +{"$label":"DIRECTED","_key":"15138","_from":"4223","_to":"11617"} +{"$label":"DIRECTED","_key":"13247","_from":"4223","_to":"10307"} +{"$label":"DIRECTED","_key":"11009","_from":"4223","_to":"8717"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63998","_from":"4223","_to":"39959"} +{"$label":"ACTS_IN","name":"Shorty","type":"Role","_key":"16253","_from":"4223","_to":"12327"} +{"$label":"ACTS_IN","name":"Cyrus","type":"Role","_key":"15139","_from":"4223","_to":"11617"} +{"$label":"ACTS_IN","name":"Mookie","type":"Role","_key":"11014","_from":"4223","_to":"8717"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"108925","_from":"4224","_to":"64373"} +{"$label":"ACTS_IN","name":"The Operative","type":"Role","_key":"108699","_from":"4224","_to":"64246"} +{"$label":"ACTS_IN","name":"President Thabo Mbeki","type":"Role","_key":"103175","_from":"4224","_to":"60689"} +{"$label":"ACTS_IN","name":"Adrian Helmsley","type":"Role","_key":"98810","_from":"4224","_to":"58224"} +{"$label":"ACTS_IN","name":"Alex Mpondo","type":"Role","_key":"95126","_from":"4224","_to":"55976"} +{"$label":"ACTS_IN","name":"Mike Terry","type":"Role","_key":"89296","_from":"4224","_to":"52865"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"55740","_from":"4224","_to":"35462"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"49000","_from":"4224","_to":"32116"} +{"$label":"ACTS_IN","name":"Victor Sweet","type":"Role","_key":"48973","_from":"4224","_to":"32108"} +{"$label":"ACTS_IN","name":"Dewey Hughes","type":"Role","_key":"43967","_from":"4224","_to":"29330"} +{"$label":"ACTS_IN","name":"Huey Lucas","type":"Role","_key":"35315","_from":"4224","_to":"24057"} +{"$label":"ACTS_IN","name":"Okwe","type":"Role","_key":"27263","_from":"4224","_to":"19605"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"6140","_from":"4224","_to":"5200"} +{"$label":"ACTS_IN","name":"Right Hand","type":"Role","_key":"48032","_from":"4225","_to":"31586"} +{"$label":"ACTS_IN","name":"Tate","type":"Role","_key":"45765","_from":"4226","_to":"30280"} +{"$label":"ACTS_IN","name":"Security","type":"Role","_key":"43372","_from":"4231","_to":"28978"} +{"$label":"ACTS_IN","name":"Theodore","type":"Role","_key":"58420","_from":"4232","_to":"36916"} +{"$label":"ACTS_IN","name":"The Accused","type":"Role","_key":"4987","_from":"4247","_to":"4235"} +{"$label":"ACTS_IN","name":"Court Clerk","type":"Role","_key":"4986","_from":"4246","_to":"4235"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"4985","_from":"4245","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 12","type":"Role","_key":"4983","_from":"4244","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 11","type":"Role","_key":"4982","_from":"4243","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 10","type":"Role","_key":"4981","_from":"4242","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 9 (Mr. McCardle)","type":"Role","_key":"4980","_from":"4241","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 7","type":"Role","_key":"4978","_from":"4240","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 5","type":"Role","_key":"4976","_from":"4239","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 3","type":"Role","_key":"4974","_from":"4238","_to":"4235"} +{"$label":"ACTS_IN","name":"Juror 2","type":"Role","_key":"4973","_from":"4237","_to":"4235"} +{"$label":"DIRECTED","_key":"4971","_from":"4236","_to":"4235"} +{"$label":"DIRECTED","_key":"115272","_from":"4236","_to":"67874"} +{"$label":"DIRECTED","_key":"101669","_from":"4236","_to":"59833"} +{"$label":"DIRECTED","_key":"65695","_from":"4236","_to":"40690"} +{"$label":"DIRECTED","_key":"64025","_from":"4236","_to":"39967"} +{"$label":"DIRECTED","_key":"58402","_from":"4236","_to":"36916"} +{"$label":"DIRECTED","_key":"52223","_from":"4236","_to":"34016"} +{"$label":"DIRECTED","_key":"47570","_from":"4236","_to":"31338"} +{"$label":"DIRECTED","_key":"34739","_from":"4236","_to":"23754"} +{"$label":"DIRECTED","_key":"29899","_from":"4236","_to":"21143"} +{"$label":"DIRECTED","_key":"11514","_from":"4236","_to":"9052"} +{"$label":"DIRECTED","_key":"6056","_from":"4236","_to":"5141"} +{"$label":"ACTS_IN","name":"Piglet (voice)","type":"Role","_key":"109075","_from":"4237","_to":"64447"} +{"$label":"ACTS_IN","name":"Piglet (voice)","type":"Role","_key":"105319","_from":"4237","_to":"61972"} +{"$label":"ACTS_IN","name":"Piglet (voice)","type":"Role","_key":"102393","_from":"4237","_to":"60253"} +{"$label":"ACTS_IN","name":"Piglet (voice)","type":"Role","_key":"102310","_from":"4237","_to":"60199"} +{"$label":"ACTS_IN","name":"Piglet (voice)","type":"Role","_key":"95859","_from":"4237","_to":"56376"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"94414","_from":"4237","_to":"55586"} +{"$label":"ACTS_IN","name":"Sexson the mouse","type":"Role","_key":"72555","_from":"4237","_to":"43753"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"69372","_from":"4237","_to":"42411"} +{"$label":"ACTS_IN","name":"Inspector Koch","type":"Role","_key":"119752","_from":"4238","_to":"70323"} +{"$label":"ACTS_IN","name":"Chief Harold F. 'Robbie' Robinson","type":"Role","_key":"118160","_from":"4238","_to":"69448"} +{"$label":"ACTS_IN","name":"Dock Tobin","type":"Role","_key":"101405","_from":"4238","_to":"59696"} +{"$label":"ACTS_IN","name":"Marshal Lou Ramsey","type":"Role","_key":"72611","_from":"4238","_to":"43773"} +{"$label":"ACTS_IN","name":"Lt. Kinderman","type":"Role","_key":"54627","_from":"4238","_to":"34989"} +{"$label":"ACTS_IN","name":"Barak Ben Canaan","type":"Role","_key":"16829","_from":"4238","_to":"12674"} +{"$label":"ACTS_IN","name":"Johnny Friendly","type":"Role","_key":"7826","_from":"4238","_to":"6495"} +{"$label":"ACTS_IN","name":"Stu Sandmann","type":"Role","_key":"45051","_from":"4239","_to":"29922"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"34816","_from":"4239","_to":"23787"} +{"$label":"ACTS_IN","name":"Yeoman 1st Class Mueller","type":"Role","_key":"117486","_from":"4240","_to":"69086"} +{"$label":"ACTS_IN","name":"Coach George Halas","type":"Role","_key":"114770","_from":"4240","_to":"67603"} +{"$label":"ACTS_IN","name":"Judge Francis Rayford","type":"Role","_key":"112261","_from":"4240","_to":"66292"} +{"$label":"ACTS_IN","name":"Dr. William Dedham","type":"Role","_key":"106206","_from":"4240","_to":"62552"} +{"$label":"ACTS_IN","name":"'Pops' McKenna","type":"Role","_key":"100894","_from":"4240","_to":"59482"} +{"$label":"ACTS_IN","name":"Roy L. Fuchs \/ Luke Fuchs","type":"Role","_key":"100483","_from":"4240","_to":"59249"} +{"$label":"ACTS_IN","name":"Hubert 'Bad Hair' Wimberly","type":"Role","_key":"95919","_from":"4240","_to":"56411"} +{"$label":"ACTS_IN","name":"Max Corkle","type":"Role","_key":"88579","_from":"4240","_to":"52493"} +{"$label":"ACTS_IN","name":"Sgt. Maj. Ross Maclure","type":"Role","_key":"72365","_from":"4240","_to":"43698"} +{"$label":"ACTS_IN","name":"Big Ben","type":"Role","_key":"67735","_from":"4240","_to":"41649"} +{"$label":"ACTS_IN","name":"President 'Bobby'","type":"Role","_key":"62583","_from":"4240","_to":"39378"} +{"$label":"ACTS_IN","name":"Dr. Ludwig Bessner","type":"Role","_key":"41610","_from":"4240","_to":"27940"} +{"$label":"ACTS_IN","name":"Moe","type":"Role","_key":"34744","_from":"4240","_to":"23754"} +{"$label":"ACTS_IN","name":"Dr. Ludwig Bessner","type":"Role","_key":"29986","_from":"4240","_to":"21170"} +{"$label":"ACTS_IN","name":"Nerva","type":"Role","_key":"22379","_from":"4240","_to":"16258"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"17954","_from":"4240","_to":"13353"} +{"$label":"ACTS_IN","name":"Harry M. Rosenfeld","type":"Role","_key":"10608","_from":"4240","_to":"8423"} +{"$label":"ACTS_IN","name":"Joe Heff","type":"Role","_key":"5067","_from":"4240","_to":"4307"} +{"$label":"ACTS_IN","name":"Paul Harris","type":"Role","_key":"118166","_from":"4242","_to":"69448"} +{"$label":"ACTS_IN","name":"Preacher Broyles","type":"Role","_key":"34935","_from":"4242","_to":"23859"} +{"$label":"ACTS_IN","name":"Captain Wilson","type":"Role","_key":"34866","_from":"4242","_to":"23835"} +{"$label":"ACTS_IN","name":"General Midwinter","type":"Role","_key":"34561","_from":"4242","_to":"23665"} +{"$label":"ACTS_IN","name":"East German Defense Attorney","type":"Role","_key":"95306","_from":"4243","_to":"56070"} +{"$label":"ACTS_IN","name":"Sappensly","type":"Role","_key":"72872","_from":"4244","_to":"43892"} +{"$label":"ACTS_IN","name":"Col. Clay Thornbush","type":"Role","_key":"65635","_from":"4244","_to":"40671"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"52282","_from":"4244","_to":"34041"} +{"$label":"ACTS_IN","name":"Philippe Douvier","type":"Role","_key":"41618","_from":"4244","_to":"27943"} +{"$label":"ACTS_IN","name":"Rod Prescott","type":"Role","_key":"25270","_from":"4244","_to":"18220"} +{"$label":"ACTS_IN","name":"General Denton","type":"Role","_key":"14698","_from":"4244","_to":"11307"} +{"$label":"ACTS_IN","name":"Ricardo","type":"Role","_key":"4995","_from":"4256","_to":"4248"} +{"$label":"ACTS_IN","name":"Beta","type":"Role","_key":"4994","_from":"4255","_to":"4248"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"4993","_from":"4254","_to":"4248"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"4992","_from":"4253","_to":"4248"} +{"$label":"ACTS_IN","name":"Z\u00e9","type":"Role","_key":"4991","_from":"4252","_to":"4248"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"4990","_from":"4251","_to":"4248"} +{"$label":"ACTS_IN","name":"Friedrich Monroe","type":"Role","_key":"4989","_from":"4250","_to":"4248"} +{"$label":"ACTS_IN","name":"Phillip Winter","type":"Role","_key":"4988","_from":"4249","_to":"4248"} +{"$label":"ACTS_IN","name":"Jakofalvy","type":"Role","_key":"113901","_from":"4249","_to":"67089"} +{"$label":"ACTS_IN","name":"Georg Krimmler","type":"Role","_key":"106270","_from":"4249","_to":"62603"} +{"$label":"ACTS_IN","name":"Eckhart","type":"Role","_key":"91781","_from":"4249","_to":"54145"} +{"$label":"ACTS_IN","name":"Bruno Winter","type":"Role","_key":"66064","_from":"4249","_to":"40882"} +{"$label":"ACTS_IN","name":"Phillip Winter","type":"Role","_key":"63332","_from":"4249","_to":"39697"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"42154","_from":"4249","_to":"28239"} +{"$label":"ACTS_IN","name":"Phil Winter","type":"Role","_key":"19160","_from":"4249","_to":"14161"} +{"$label":"ACTS_IN","name":"Dr. Henning","type":"Role","_key":"15041","_from":"4249","_to":"11560"} +{"$label":"ACTS_IN","name":"Nikolai","type":"Role","_key":"119236","_from":"4250","_to":"70057"} +{"$label":"ACTS_IN","name":"Gregory Talbot","type":"Role","_key":"105662","_from":"4250","_to":"62189"} +{"$label":"ACTS_IN","name":"The Perfect Man \/ Speaker \/ Speaker","type":"Role","_key":"89663","_from":"4250","_to":"53067"} +{"$label":"ACTS_IN","name":"Dr. Arnold","type":"Role","_key":"55750","_from":"4250","_to":"35483"} +{"$label":"ACTS_IN","name":"Yoram Sussman","type":"Role","_key":"38857","_from":"4250","_to":"26244"} +{"$label":"ACTS_IN","name":"Edouard","type":"Role","_key":"34345","_from":"4250","_to":"23558"} +{"$label":"ACTS_IN","name":"Adrien","type":"Role","_key":"34334","_from":"4250","_to":"23551"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33044","_from":"4250","_to":"22898"} +{"$label":"ACTS_IN","name":"Stephen Altman","type":"Role","_key":"32538","_from":"4250","_to":"22626"} +{"$label":"ACTS_IN","name":"Dr. Luc Montagnier","type":"Role","_key":"24067","_from":"4250","_to":"17452"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"13047","_from":"4250","_to":"10175"} +{"$label":"ACTS_IN","name":"Scarpine","type":"Role","_key":"8539","_from":"4250","_to":"6961"} +{"$label":"ACTS_IN","name":"Piripero, der Sargtischler","type":"Role","_key":"5009","_from":"4269","_to":"4257"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"5008","_from":"4268","_to":"4257"} +{"$label":"ACTS_IN","name":"Rubio","type":"Role","_key":"5007","_from":"4267","_to":"4257"} +{"$label":"ACTS_IN","name":"Antonio Baxter","type":"Role","_key":"5006","_from":"4266","_to":"4257"} +{"$label":"ACTS_IN","name":"Juli\u00e1n","type":"Role","_key":"5005","_from":"4265","_to":"4257"} +{"$label":"ACTS_IN","name":"Consuelo Baxter","type":"Role","_key":"5004","_from":"4264","_to":"4257"} +{"$label":"ACTS_IN","name":"Don Miguel Rojo","type":"Role","_key":"5003","_from":"4263","_to":"4257"} +{"$label":"ACTS_IN","name":"Esteban Rojo","type":"Role","_key":"5002","_from":"4262","_to":"4257"} +{"$label":"ACTS_IN","name":"Ram\u00f3n Rojo","type":"Role","_key":"5001","_from":"4261","_to":"4257"} +{"$label":"ACTS_IN","name":"Silvanito","type":"Role","_key":"5000","_from":"4260","_to":"4257"} +{"$label":"ACTS_IN","name":"John Baxter","type":"Role","_key":"4999","_from":"4259","_to":"4257"} +{"$label":"ACTS_IN","name":"Marisol","type":"Role","_key":"4998","_from":"4258","_to":"4257"} +{"$label":"ACTS_IN","name":"Dorothea 'Diddo' Geiss","type":"Role","_key":"68966","_from":"4258","_to":"42224"} +{"$label":"ACTS_IN","name":"Elizabeth Kelly","type":"Role","_key":"27592","_from":"4258","_to":"19788"} +{"$label":"ACTS_IN","name":"Stephan Judd","type":"Role","_key":"55173","_from":"4259","_to":"35203"} +{"$label":"ACTS_IN","name":"Dr. Finz","type":"Role","_key":"45360","_from":"4259","_to":"30082"} +{"$label":"ACTS_IN","name":"Kaiser Wilhelm II","type":"Role","_key":"44734","_from":"4259","_to":"29760"} +{"$label":"ACTS_IN","name":"Oberwachmeister Jeschke","type":"Role","_key":"32512","_from":"4259","_to":"22612"} +{"$label":"ACTS_IN","name":"Don Amalio","type":"Role","_key":"32136","_from":"4260","_to":"22397"} +{"$label":"ACTS_IN","name":"Vogel","type":"Role","_key":"71343","_from":"4261","_to":"43272"} +{"$label":"ACTS_IN","name":"Tarath","type":"Role","_key":"27280","_from":"4261","_to":"19607"} +{"$label":"ACTS_IN","name":"El Indio","type":"Role","_key":"11186","_from":"4261","_to":"8850"} +{"$label":"ACTS_IN","name":"Le lieutenant Sturmer","type":"Role","_key":"48907","_from":"4262","_to":"32047"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"40013","_from":"4262","_to":"27017"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"27597","_from":"4262","_to":"19788"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"32137","_from":"4264","_to":"22397"} +{"$label":"ACTS_IN","name":"Baptistine","type":"Role","_key":"32029","_from":"4264","_to":"22316"} +{"$label":"ACTS_IN","name":"Baptistine","type":"Role","_key":"32018","_from":"4264","_to":"22309"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"11192","_from":"4267","_to":"8850"} +{"$label":"ACTS_IN","name":"One-Eye","type":"Role","_key":"117337","_from":"4268","_to":"69009"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"52123","_from":"4268","_to":"33979"} +{"$label":"ACTS_IN","name":"Grendel","type":"Role","_key":"37660","_from":"4268","_to":"25529"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44909","_from":"4269","_to":"29857"} +{"$label":"ACTS_IN","name":"Oberst Wedel","type":"Role","_key":"44591","_from":"4269","_to":"29676"} +{"$label":"ACTS_IN","name":"Draxltoni","type":"Role","_key":"15378","_from":"4269","_to":"11757"} +{"$label":"ACTS_IN","name":"Old Prophet","type":"Role","_key":"11190","_from":"4269","_to":"8850"} +{"$label":"ACTS_IN","name":"B.B. Kiddo","type":"Role","_key":"5020","_from":"4272","_to":"4270"} +{"$label":"ACTS_IN","name":"Tommy Plympton","type":"Role","_key":"5018","_from":"4271","_to":"4270"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"89338","_from":"4272","_to":"52880"} +{"$label":"ACTS_IN","name":"Annie Haskins","type":"Role","_key":"48199","_from":"4272","_to":"31662"} +{"$label":"ACTS_IN","name":"Penny Marko","type":"Role","_key":"6705","_from":"4272","_to":"5637"} +{"$label":"ACTS_IN","name":"Thomas Parks","type":"Role","_key":"5032","_from":"4281","_to":"4273"} +{"$label":"ACTS_IN","name":"Rusten Quinn","type":"Role","_key":"5031","_from":"4280","_to":"4273"} +{"$label":"ACTS_IN","name":"Adele Rousseau","type":"Role","_key":"5030","_from":"4279","_to":"4273"} +{"$label":"ACTS_IN","name":"Joe Connors","type":"Role","_key":"5029","_from":"4278","_to":"4273"} +{"$label":"ACTS_IN","name":"Maxwell Stafford","type":"Role","_key":"5027","_from":"4277","_to":"4273"} +{"$label":"ACTS_IN","name":"Sebastian de Rosa","type":"Role","_key":"5025","_from":"4276","_to":"4273"} +{"$label":"ACTS_IN","name":"Alexa Woods","type":"Role","_key":"5024","_from":"4275","_to":"4273"} +{"$label":"DIRECTED","_key":"5023","_from":"4274","_to":"4273"} +{"$label":"DIRECTED","_key":"63592","_from":"4274","_to":"39790"} +{"$label":"DIRECTED","_key":"53777","_from":"4274","_to":"34657"} +{"$label":"DIRECTED","_key":"53056","_from":"4274","_to":"34342"} +{"$label":"DIRECTED","_key":"49550","_from":"4274","_to":"32447"} +{"$label":"DIRECTED","_key":"13950","_from":"4274","_to":"10818"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"107645","_from":"4275","_to":"63536"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"107615","_from":"4275","_to":"63522"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"104445","_from":"4275","_to":"61433"} +{"$label":"ACTS_IN","name":"Kenya Denise McQueen","type":"Role","_key":"104130","_from":"4275","_to":"61261"} +{"$label":"ACTS_IN","name":"Monica Wright","type":"Role","_key":"101554","_from":"4275","_to":"59773"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"43889","_from":"4275","_to":"29297"} +{"$label":"ACTS_IN","name":"Ann Merai Harrison","type":"Role","_key":"18454","_from":"4275","_to":"13672"} +{"$label":"ACTS_IN","name":"Marcello","type":"Role","_key":"66837","_from":"4276","_to":"41283"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"100489","_from":"4277","_to":"59250"} +{"$label":"ACTS_IN","name":"Paul Budiansky","type":"Role","_key":"92232","_from":"4277","_to":"54425"} +{"$label":"ACTS_IN","name":"Detective Mountjoy","type":"Role","_key":"90602","_from":"4277","_to":"53506"} +{"$label":"ACTS_IN","name":"Hakim Jamal","type":"Role","_key":"51098","_from":"4277","_to":"33334"} +{"$label":"ACTS_IN","name":"One","type":"Role","_key":"13949","_from":"4277","_to":"10818"} +{"$label":"ACTS_IN","name":"Charles Robinson","type":"Role","_key":"8640","_from":"4277","_to":"7008"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"8805","_from":"4278","_to":"7114"} +{"$label":"ACTS_IN","name":"Coach Wolf Stansson","type":"Role","_key":"68244","_from":"4280","_to":"41905"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36836","_from":"4280","_to":"24974"} +{"$label":"ACTS_IN","name":"Ridgeley","type":"Role","_key":"31706","_from":"4280","_to":"22122"} +{"$label":"ACTS_IN","name":"Honey","type":"Role","_key":"5040","_from":"4288","_to":"4282"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"5039","_from":"4287","_to":"4282"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"5038","_from":"4286","_to":"4282"} +{"$label":"DIRECTED","_key":"5036","_from":"4285","_to":"4282"} +{"$label":"DIRECTED","_key":"5035","_from":"4284","_to":"4282"} +{"$label":"DIRECTED","_key":"5034","_from":"4283","_to":"4282"} +{"$label":"DIRECTED","_key":"119963","_from":"4285","_to":"70458"} +{"$label":"DIRECTED","_key":"96928","_from":"4285","_to":"57008"} +{"$label":"DIRECTED","_key":"89919","_from":"4285","_to":"53206"} +{"$label":"DIRECTED","_key":"69425","_from":"4285","_to":"42428"} +{"$label":"DIRECTED","_key":"67198","_from":"4285","_to":"41451"} +{"$label":"DIRECTED","_key":"63111","_from":"4285","_to":"39590"} +{"$label":"DIRECTED","_key":"62982","_from":"4285","_to":"39543"} +{"$label":"DIRECTED","_key":"62828","_from":"4285","_to":"39476"} +{"$label":"DIRECTED","_key":"53854","_from":"4285","_to":"34689"} +{"$label":"DIRECTED","_key":"43997","_from":"4285","_to":"29354"} +{"$label":"DIRECTED","_key":"27613","_from":"4285","_to":"19802"} +{"$label":"DIRECTED","_key":"20061","_from":"4285","_to":"14761"} +{"$label":"ACTS_IN","name":"Thomas Becket","type":"Role","_key":"104337","_from":"4286","_to":"61385"} +{"$label":"ACTS_IN","name":"Rev. Dr. T. Lawrence Shannon","type":"Role","_key":"101484","_from":"4286","_to":"59732"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"100245","_from":"4286","_to":"59121"} +{"$label":"ACTS_IN","name":"Alec Leamas","type":"Role","_key":"95302","_from":"4286","_to":"56070"} +{"$label":"ACTS_IN","name":"John Morlar","type":"Role","_key":"71111","_from":"4286","_to":"43170"} +{"$label":"ACTS_IN","name":"Pater Philip Lamont","type":"Role","_key":"70871","_from":"4286","_to":"43071"} +{"$label":"ACTS_IN","name":"Maj. Jonathan Smith, MC","type":"Role","_key":"67536","_from":"4286","_to":"41582"} +{"$label":"ACTS_IN","name":"Sgt. Steiner","type":"Role","_key":"66106","_from":"4286","_to":"40897"} +{"$label":"ACTS_IN","name":"O'Brien","type":"Role","_key":"53064","_from":"4286","_to":"34351"} +{"$label":"ACTS_IN","name":"Flight Officer David Campbell","type":"Role","_key":"52899","_from":"4286","_to":"34285"} +{"$label":"ACTS_IN","name":"Marcus Antonius","type":"Role","_key":"48227","_from":"4286","_to":"31682"} +{"$label":"ACTS_IN","name":"Col. Allen Faulkner","type":"Role","_key":"45671","_from":"4286","_to":"30229"} +{"$label":"ACTS_IN","name":"Leon Trotsky","type":"Role","_key":"33478","_from":"4286","_to":"23163"} +{"$label":"ACTS_IN","name":"Man In Strip Club","type":"Role","_key":"28456","_from":"4286","_to":"20343"} +{"$label":"ACTS_IN","name":"Horror (voice)","type":"Role","_key":"111846","_from":"4287","_to":"66010"} +{"$label":"ACTS_IN","name":"Lt. Phil Hartman","type":"Role","_key":"106193","_from":"4287","_to":"62549"} +{"$label":"ACTS_IN","name":"Tony Delgatto","type":"Role","_key":"98825","_from":"4287","_to":"58224"} +{"$label":"ACTS_IN","name":"Harry Calder","type":"Role","_key":"64947","_from":"4287","_to":"40377"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"54240","_from":"4287","_to":"34831"} +{"$label":"ACTS_IN","name":"Dr. Tony 'Shiv' Parelli","type":"Role","_key":"35366","_from":"4287","_to":"24074"} +{"$label":"ACTS_IN","name":"Ed Coplin","type":"Role","_key":"18031","_from":"4287","_to":"13403"} +{"$label":"DIRECTED","_key":"5045","_from":"4293","_to":"4289"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"5043","_from":"4292","_to":"4289"} +{"$label":"ACTS_IN","name":"Luc Teyssier","type":"Role","_key":"5042","_from":"4291","_to":"4289"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"5041","_from":"4290","_to":"4289"} +{"$label":"ACTS_IN","name":"Kay Davies","type":"Role","_key":"116618","_from":"4290","_to":"68648"} +{"$label":"ACTS_IN","name":"Deidre Hearn","type":"Role","_key":"109342","_from":"4290","_to":"64596"} +{"$label":"ACTS_IN","name":"Sarah Hardwicke","type":"Role","_key":"92301","_from":"4290","_to":"54472"} +{"$label":"ACTS_IN","name":"Alice Bowman","type":"Role","_key":"73141","_from":"4290","_to":"43989"} +{"$label":"ACTS_IN","name":"Donna Caldwell","type":"Role","_key":"72364","_from":"4290","_to":"43698"} +{"$label":"ACTS_IN","name":"Catherine Boyd","type":"Role","_key":"71906","_from":"4290","_to":"43507"} +{"$label":"ACTS_IN","name":"Kate McKay","type":"Role","_key":"68694","_from":"4290","_to":"42094"} +{"$label":"ACTS_IN","name":"Frannie","type":"Role","_key":"66893","_from":"4290","_to":"41302"} +{"$label":"ACTS_IN","name":"Captain Karen Emma Walden","type":"Role","_key":"65045","_from":"4290","_to":"40418"} +{"$label":"ACTS_IN","name":"Pamela Courson","type":"Role","_key":"63927","_from":"4290","_to":"39931"} +{"$label":"ACTS_IN","name":"Alice Green","type":"Role","_key":"63419","_from":"4290","_to":"39729"} +{"$label":"ACTS_IN","name":"Eve Mozell Marks","type":"Role","_key":"62928","_from":"4290","_to":"39524"} +{"$label":"ACTS_IN","name":"Sydney Fuller","type":"Role","_key":"56244","_from":"4290","_to":"35738"} +{"$label":"ACTS_IN","name":"Kathleen Kelly","type":"Role","_key":"54209","_from":"4290","_to":"34820"} +{"$label":"ACTS_IN","name":"Anastasia","type":"Role","_key":"53903","_from":"4290","_to":"34698"} +{"$label":"ACTS_IN","name":"Marthy Durand","type":"Role","_key":"52672","_from":"4290","_to":"34206"} +{"$label":"ACTS_IN","name":"Jackie Kallen","type":"Role","_key":"51026","_from":"4290","_to":"33305"} +{"$label":"ACTS_IN","name":"Maggie Cavanaugh","type":"Role","_key":"22256","_from":"4290","_to":"16202"} +{"$label":"ACTS_IN","name":"Lydia Maxwell","type":"Role","_key":"22214","_from":"4290","_to":"16182"} +{"$label":"ACTS_IN","name":"Rita Boyle","type":"Role","_key":"22201","_from":"4290","_to":"16177"} +{"$label":"ACTS_IN","name":"DeDe\/Angelica Graynamore\/Patricia Graynamore","type":"Role","_key":"21968","_from":"4290","_to":"16044"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"17894","_from":"4290","_to":"13319"} +{"$label":"ACTS_IN","name":"Annie Reed","type":"Role","_key":"10195","_from":"4290","_to":"8139"} +{"$label":"ACTS_IN","name":"Maggie Rice","type":"Role","_key":"9378","_from":"4290","_to":"7568"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"8693","_from":"4290","_to":"7049"} +{"$label":"ACTS_IN","name":"Sally Albright","type":"Role","_key":"7639","_from":"4290","_to":"6355"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"118708","_from":"4291","_to":"69802"} +{"$label":"ACTS_IN","name":"William Hundert","type":"Role","_key":"111468","_from":"4291","_to":"65815"} +{"$label":"ACTS_IN","name":"Nathan Landau","type":"Role","_key":"105815","_from":"4291","_to":"62294"} +{"$label":"ACTS_IN","name":"The Pirate King","type":"Role","_key":"105591","_from":"4291","_to":"62139"} +{"$label":"ACTS_IN","name":"Cole Porter","type":"Role","_key":"103644","_from":"4291","_to":"60960"} +{"$label":"ACTS_IN","name":"Mack","type":"Role","_key":"95929","_from":"4291","_to":"56415"} +{"$label":"ACTS_IN","name":"Harold Cooper","type":"Role","_key":"90275","_from":"4291","_to":"53368"} +{"$label":"ACTS_IN","name":"Donald Woods","type":"Role","_key":"89937","_from":"4291","_to":"53212"} +{"$label":"ACTS_IN","name":"Phoebus","type":"Role","_key":"89570","_from":"4291","_to":"53002"} +{"$label":"ACTS_IN","name":"Rod McCain","type":"Role","_key":"88290","_from":"4291","_to":"52367"} +{"$label":"ACTS_IN","name":"Chief Inspector Dreyfus","type":"Role","_key":"87998","_from":"4291","_to":"52246"} +{"$label":"ACTS_IN","name":"Bill Mitchell","type":"Role","_key":"70702","_from":"4291","_to":"43007"} +{"$label":"ACTS_IN","name":"Paden","type":"Role","_key":"70296","_from":"4291","_to":"42834"} +{"$label":"ACTS_IN","name":"George Monroe","type":"Role","_key":"69970","_from":"4291","_to":"42686"} +{"$label":"ACTS_IN","name":"Howard Brackett","type":"Role","_key":"65912","_from":"4291","_to":"40773"} +{"$label":"ACTS_IN","name":"Phoebus","type":"Role","_key":"63976","_from":"4291","_to":"39952"} +{"$label":"ACTS_IN","name":"Tulio","type":"Role","_key":"63704","_from":"4291","_to":"39835"} +{"$label":"ACTS_IN","name":"Douglas Fairbanks","type":"Role","_key":"63342","_from":"4291","_to":"39698"} +{"$label":"ACTS_IN","name":"Guy Noir","type":"Role","_key":"54458","_from":"4291","_to":"34916"} +{"$label":"ACTS_IN","name":"U.S. Marshal Artemus Gordon","type":"Role","_key":"50033","_from":"4291","_to":"32751"} +{"$label":"ACTS_IN","name":"Hampton Roth","type":"Role","_key":"49488","_from":"4291","_to":"32398"} +{"$label":"ACTS_IN","name":"Ben Hood","type":"Role","_key":"40301","_from":"4291","_to":"27194"} +{"$label":"ACTS_IN","name":"Ray Sheridan","type":"Role","_key":"29859","_from":"4291","_to":"21121"} +{"$label":"ACTS_IN","name":"Joey Boca","type":"Role","_key":"25924","_from":"4291","_to":"18645"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"7407","_from":"4291","_to":"6174"} +{"$label":"ACTS_IN","name":"Matthew Kragen","type":"Role","_key":"112084","_from":"4292","_to":"66181"} +{"$label":"ACTS_IN","name":"Peter Derns","type":"Role","_key":"111391","_from":"4292","_to":"65780"} +{"$label":"ACTS_IN","name":"Conrad Jarrett","type":"Role","_key":"109654","_from":"4292","_to":"64764"} +{"$label":"ACTS_IN","name":"Richard Ledge","type":"Role","_key":"97633","_from":"4292","_to":"57491"} +{"$label":"ACTS_IN","name":"David Norton","type":"Role","_key":"95874","_from":"4292","_to":"56386"} +{"$label":"ACTS_IN","name":"Raymond Blossom","type":"Role","_key":"90706","_from":"4292","_to":"53545"} +{"$label":"ACTS_IN","name":"Sidney Kroll","type":"Role","_key":"69837","_from":"4292","_to":"42613"} +{"$label":"ACTS_IN","name":"Paul Gebhard","type":"Role","_key":"68390","_from":"4292","_to":"41964"} +{"$label":"ACTS_IN","name":"Cadet Major Brian Moreland","type":"Role","_key":"64690","_from":"4292","_to":"40291"} +{"$label":"ACTS_IN","name":"George Stark","type":"Role","_key":"62727","_from":"4292","_to":"39438"} +{"$label":"ACTS_IN","name":"Willie Conway","type":"Role","_key":"52844","_from":"4292","_to":"34256"} +{"$label":"ACTS_IN","name":"Col. William Kent","type":"Role","_key":"19978","_from":"4292","_to":"14708"} +{"$label":"ACTS_IN","name":"David Wilder","type":"Role","_key":"19904","_from":"4292","_to":"14659"} +{"$label":"ACTS_IN","name":"Ted Milner","type":"Role","_key":"14052","_from":"4292","_to":"10896"} +{"$label":"DIRECTED","_key":"100130","_from":"4293","_to":"59059"} +{"$label":"DIRECTED","_key":"95927","_from":"4293","_to":"56415"} +{"$label":"DIRECTED","_key":"90289","_from":"4293","_to":"53368"} +{"$label":"DIRECTED","_key":"88364","_from":"4293","_to":"52390"} +{"$label":"DIRECTED","_key":"70301","_from":"4293","_to":"42834"} +{"$label":"DIRECTED","_key":"42182","_from":"4293","_to":"28261"} +{"$label":"DIRECTED","_key":"25938","_from":"4293","_to":"18645"} +{"$label":"DIRECTED","_key":"5060","_from":"4305","_to":"4294"} +{"$label":"ACTS_IN","name":"Perry Smith","type":"Role","_key":"5058","_from":"4304","_to":"4294"} +{"$label":"ACTS_IN","name":"Nancy Clutter","type":"Role","_key":"5056","_from":"4303","_to":"4294"} +{"$label":"ACTS_IN","name":"Car Rental Agent","type":"Role","_key":"5055","_from":"4302","_to":"4294"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"5054","_from":"4301","_to":"4294"} +{"$label":"ACTS_IN","name":"Williams","type":"Role","_key":"5052","_from":"4300","_to":"4294"} +{"$label":"ACTS_IN","name":"Grayson","type":"Role","_key":"5051","_from":"4299","_to":"4294"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"5050","_from":"4298","_to":"4294"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"5049","_from":"4297","_to":"4294"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"5048","_from":"4296","_to":"4294"} +{"$label":"ACTS_IN","name":"Laura Kinney","type":"Role","_key":"5047","_from":"4295","_to":"4294"} +{"$label":"ACTS_IN","name":"Beth Peters","type":"Role","_key":"57624","_from":"4298","_to":"36484"} +{"$label":"ACTS_IN","name":"Deputy Adams","type":"Role","_key":"88271","_from":"4301","_to":"52358"} +{"$label":"ACTS_IN","name":"Stingray","type":"Role","_key":"116328","_from":"4304","_to":"68477"} +{"$label":"ACTS_IN","name":"Vince Sherman","type":"Role","_key":"109635","_from":"4304","_to":"64758"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"92498","_from":"4304","_to":"54598"} +{"$label":"ACTS_IN","name":"Step","type":"Role","_key":"90333","_from":"4304","_to":"53393"} +{"$label":"ACTS_IN","name":"Nino Gomez","type":"Role","_key":"87957","_from":"4304","_to":"52231"} +{"$label":"ACTS_IN","name":"Pvt. Miter","type":"Role","_key":"65061","_from":"4304","_to":"40427"} +{"$label":"ACTS_IN","name":"Officer Armando Sancho","type":"Role","_key":"64415","_from":"4304","_to":"40148"} +{"$label":"ACTS_IN","name":"Major Cavazos","type":"Role","_key":"46670","_from":"4304","_to":"30821"} +{"$label":"ACTS_IN","name":"Cesar Sanchez","type":"Role","_key":"41481","_from":"4304","_to":"27874"} +{"$label":"ACTS_IN","name":"Cp. Ramov Aguilar","type":"Role","_key":"18312","_from":"4304","_to":"13579"} +{"$label":"ACTS_IN","name":"Rupert","type":"Role","_key":"15644","_from":"4304","_to":"11928"} +{"$label":"ACTS_IN","name":"Officer at Border Crossing","type":"Role","_key":"12133","_from":"4304","_to":"9495"} +{"$label":"ACTS_IN","name":"Meg","type":"Role","_key":"5073","_from":"4312","_to":"4307"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"5072","_from":"4311","_to":"4307"} +{"$label":"ACTS_IN","name":"Dagney","type":"Role","_key":"5070","_from":"4310","_to":"4307"} +{"$label":"ACTS_IN","name":"Easy Wind","type":"Role","_key":"5065","_from":"4309","_to":"4307"} +{"$label":"DIRECTED","_key":"5061","_from":"4308","_to":"4307"} +{"$label":"DIRECTED","_key":"88034","_from":"4308","_to":"52260"} +{"$label":"DIRECTED","_key":"69169","_from":"4308","_to":"42305"} +{"$label":"DIRECTED","_key":"53835","_from":"4308","_to":"34681"} +{"$label":"DIRECTED","_key":"35187","_from":"4308","_to":"23980"} +{"$label":"ACTS_IN","name":"Reverend Ellis","type":"Role","_key":"66010","_from":"4309","_to":"40846"} +{"$label":"ACTS_IN","name":"Danny Boodmann","type":"Role","_key":"62888","_from":"4309","_to":"39508"} +{"$label":"ACTS_IN","name":"Joe Musto","type":"Role","_key":"60778","_from":"4309","_to":"38393"} +{"$label":"ACTS_IN","name":"Lt. Eddie Souther","type":"Role","_key":"17415","_from":"4309","_to":"13020"} +{"$label":"ACTS_IN","name":"Kabral Jabar","type":"Role","_key":"15451","_from":"4309","_to":"11805"} +{"$label":"ACTS_IN","name":"Radio Raheem","type":"Role","_key":"11016","_from":"4309","_to":"8717"} +{"$label":"ACTS_IN","name":"Joseph Robertson","type":"Role","_key":"6697","_from":"4309","_to":"5637"} +{"$label":"ACTS_IN","name":"Joseph 'Robbie' Robertson","type":"Role","_key":"6684","_from":"4309","_to":"5630"} +{"$label":"ACTS_IN","name":"Joseph 'Robbie' Robertson","type":"Role","_key":"6649","_from":"4309","_to":"5608"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"107945","_from":"4310","_to":"63746"} +{"$label":"ACTS_IN","name":"Beth Patterson","type":"Role","_key":"106930","_from":"4310","_to":"63044"} +{"$label":"ACTS_IN","name":"Emily Davenport","type":"Role","_key":"99068","_from":"4310","_to":"58364"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"54095","_from":"4310","_to":"34781"} +{"$label":"ACTS_IN","name":"Andy Hart","type":"Role","_key":"52076","_from":"4310","_to":"33954"} +{"$label":"ACTS_IN","name":"Marti Malone","type":"Role","_key":"33626","_from":"4310","_to":"23223"} +{"$label":"DIRECTED","_key":"5091","_from":"4314","_to":"4313"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"5090","_from":"4327","_to":"4313"} +{"$label":"ACTS_IN","name":"Aunt Sylvia Largeman","type":"Role","_key":"5089","_from":"4326","_to":"4313"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"5088","_from":"4325","_to":"4313"} +{"$label":"ACTS_IN","name":"Titembay","type":"Role","_key":"5087","_from":"4324","_to":"4313"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"5086","_from":"4323","_to":"4313"} +{"$label":"ACTS_IN","name":"Karl Benson","type":"Role","_key":"5085","_from":"4322","_to":"4313"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"5084","_from":"4321","_to":"4313"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"5083","_from":"4320","_to":"4313"} +{"$label":"ACTS_IN","name":"Dr. Cohen","type":"Role","_key":"5082","_from":"4319","_to":"4313"} +{"$label":"ACTS_IN","name":"Young Hollywood Guy","type":"Role","_key":"5081","_from":"4318","_to":"4313"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"5080","_from":"4317","_to":"4313"} +{"$label":"ACTS_IN","name":"Restaurant Manager","type":"Role","_key":"5079","_from":"4316","_to":"4313"} +{"$label":"ACTS_IN","name":"Busboy","type":"Role","_key":"5078","_from":"4315","_to":"4313"} +{"$label":"ACTS_IN","name":"Andrew Largeman","type":"Role","_key":"5074","_from":"4314","_to":"4313"} +{"$label":"ACTS_IN","name":"Tom Reilly","type":"Role","_key":"93161","_from":"4314","_to":"54904"} +{"$label":"ACTS_IN","name":"Chicken Little","type":"Role","_key":"58931","_from":"4314","_to":"37214"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"46986","_from":"4314","_to":"30983"} +{"$label":"DIRECTED","_key":"99633","_from":"4316","_to":"58740"} +{"$label":"ACTS_IN","name":"Captain Esteban","type":"Role","_key":"119681","_from":"4319","_to":"70293"} +{"$label":"ACTS_IN","name":"Lou Schoichet","type":"Role","_key":"114315","_from":"4319","_to":"67334"} +{"$label":"ACTS_IN","name":"Freddie Ugo, Rhinestone Owner","type":"Role","_key":"109483","_from":"4319","_to":"64671"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"100234","_from":"4320","_to":"59116"} +{"$label":"ACTS_IN","name":"Classmate","type":"Role","_key":"57417","_from":"4321","_to":"36396"} +{"$label":"ACTS_IN","name":"Empfangsmitarbeiter","type":"Role","_key":"20611","_from":"4321","_to":"15077"} +{"$label":"ACTS_IN","name":"McKenzie","type":"Role","_key":"121481","_from":"4322","_to":"71361"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"58206","_from":"4322","_to":"36816"} +{"$label":"ACTS_IN","name":"Flipper Boy","type":"Role","_key":"55580","_from":"4322","_to":"35390"} +{"$label":"ACTS_IN","name":"Melanie McQueen","type":"Role","_key":"109284","_from":"4323","_to":"64563"} +{"$label":"ACTS_IN","name":"Laura Brandston","type":"Role","_key":"104640","_from":"4323","_to":"61555"} +{"$label":"ACTS_IN","name":"Kate Sanderson","type":"Role","_key":"65010","_from":"4323","_to":"40403"} +{"$label":"ACTS_IN","name":"Deirdre Lefever","type":"Role","_key":"30406","_from":"4323","_to":"21378"} +{"$label":"ACTS_IN","name":"Mrs. Hooten","type":"Role","_key":"14185","_from":"4323","_to":"10966"} +{"$label":"ACTS_IN","name":"Muggsy","type":"Role","_key":"90854","_from":"4325","_to":"53609"} +{"$label":"ACTS_IN","name":"Silas P. Silas","type":"Role","_key":"49450","_from":"4325","_to":"32384"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"96000","_from":"4326","_to":"56430"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"108006","_from":"4327","_to":"63792"} +{"$label":"DIRECTED","_key":"5107","_from":"4338","_to":"4328"} +{"$label":"ACTS_IN","name":"Johnny Boz","type":"Role","_key":"5106","_from":"4337","_to":"4328"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"5105","_from":"4336","_to":"4328"} +{"$label":"ACTS_IN","name":"Harrigan","type":"Role","_key":"5104","_from":"4335","_to":"4328"} +{"$label":"ACTS_IN","name":"Hazel Dobkins","type":"Role","_key":"5100","_from":"4334","_to":"4328"} +{"$label":"ACTS_IN","name":"Capt. Talcott","type":"Role","_key":"5099","_from":"4333","_to":"4328"} +{"$label":"ACTS_IN","name":"Roxy","type":"Role","_key":"5097","_from":"4332","_to":"4328"} +{"$label":"ACTS_IN","name":"Lt. Philip Walker","type":"Role","_key":"5096","_from":"4331","_to":"4328"} +{"$label":"ACTS_IN","name":"Dr. Beth Garner","type":"Role","_key":"5095","_from":"4330","_to":"4328"} +{"$label":"ACTS_IN","name":"Gus Moran","type":"Role","_key":"5094","_from":"4329","_to":"4328"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"111029","_from":"4329","_to":"65577"} +{"$label":"ACTS_IN","name":"Dr. Gregory Belson","type":"Role","_key":"105980","_from":"4329","_to":"62398"} +{"$label":"ACTS_IN","name":"Daskal","type":"Role","_key":"103797","_from":"4329","_to":"61053"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"71915","_from":"4329","_to":"43508"} +{"$label":"ACTS_IN","name":"Cully Sawyer","type":"Role","_key":"69243","_from":"4329","_to":"42339"} +{"$label":"ACTS_IN","name":"Steve Loparino","type":"Role","_key":"68627","_from":"4329","_to":"42068"} +{"$label":"ACTS_IN","name":"Hal Griffith","type":"Role","_key":"57880","_from":"4329","_to":"36623"} +{"$label":"ACTS_IN","name":"Johanna Lawrenson","type":"Role","_key":"115080","_from":"4330","_to":"67773"} +{"$label":"ACTS_IN","name":"Doris Hagen","type":"Role","_key":"106781","_from":"4330","_to":"62951"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"91501","_from":"4330","_to":"53941"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"61755","_from":"4330","_to":"38887"} +{"$label":"ACTS_IN","name":"Gina Vitale","type":"Role","_key":"61292","_from":"4330","_to":"38698"} +{"$label":"ACTS_IN","name":"Lois Berkow","type":"Role","_key":"59626","_from":"4330","_to":"37645"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"56973","_from":"4330","_to":"36151"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"33104","_from":"4330","_to":"22931"} +{"$label":"ACTS_IN","name":"William Avery","type":"Role","_key":"99265","_from":"4331","_to":"58498"} +{"$label":"ACTS_IN","name":"CIA Director Weylon Armitage","type":"Role","_key":"59292","_from":"4331","_to":"37449"} +{"$label":"ACTS_IN","name":"Police Chief Krupa","type":"Role","_key":"116334","_from":"4333","_to":"68477"} +{"$label":"ACTS_IN","name":"Leonard Dalton","type":"Role","_key":"110297","_from":"4333","_to":"65177"} +{"$label":"ACTS_IN","name":"Eddie Harris","type":"Role","_key":"58316","_from":"4333","_to":"36867"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"38681","_from":"4333","_to":"26128"} +{"$label":"ACTS_IN","name":"Kenneth King","type":"Role","_key":"17821","_from":"4333","_to":"13278"} +{"$label":"ACTS_IN","name":"Dr. Sullivan","type":"Role","_key":"43833","_from":"4334","_to":"29268"} +{"$label":"ACTS_IN","name":"Marylee Hadley","type":"Role","_key":"40625","_from":"4334","_to":"27357"} +{"$label":"ACTS_IN","name":"Acme Bookstore proprietress","type":"Role","_key":"10824","_from":"4334","_to":"8581"} +{"$label":"ACTS_IN","name":"Clyde Smith","type":"Role","_key":"116263","_from":"4335","_to":"68444"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"119746","_from":"4336","_to":"70316"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"47997","_from":"4336","_to":"31575"} +{"$label":"ACTS_IN","name":"Hunter (voice)","type":"Role","_key":"46864","_from":"4336","_to":"30900"} +{"$label":"ACTS_IN","name":"Mickey McGee, the Carpenter","type":"Role","_key":"11248","_from":"4336","_to":"8884"} +{"$label":"ACTS_IN","name":"Policeman #1","type":"Role","_key":"38596","_from":"4337","_to":"26073"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"38585","_from":"4337","_to":"26068"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38572","_from":"4337","_to":"26062"} +{"$label":"DIRECTED","_key":"91475","_from":"4338","_to":"53933"} +{"$label":"DIRECTED","_key":"65891","_from":"4338","_to":"40769"} +{"$label":"DIRECTED","_key":"53495","_from":"4338","_to":"34546"} +{"$label":"DIRECTED","_key":"52417","_from":"4338","_to":"34105"} +{"$label":"DIRECTED","_key":"37772","_from":"4338","_to":"25618"} +{"$label":"DIRECTED","_key":"10232","_from":"4338","_to":"8163"} +{"$label":"DIRECTED","_key":"7525","_from":"4338","_to":"6266"} +{"$label":"DIRECTED","_key":"6753","_from":"4338","_to":"5670"} +{"$label":"ACTS_IN","name":"Beulah","type":"Role","_key":"5118","_from":"4348","_to":"4339"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"5117","_from":"4347","_to":"4339"} +{"$label":"ACTS_IN","name":"Nonie","type":"Role","_key":"5116","_from":"4346","_to":"4339"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"5115","_from":"4345","_to":"4339"} +{"$label":"ACTS_IN","name":"Miss McClatchey","type":"Role","_key":"5114","_from":"4344","_to":"4339"} +{"$label":"ACTS_IN","name":"Idella","type":"Role","_key":"5113","_from":"4343","_to":"4339"} +{"$label":"ACTS_IN","name":"Florine Werthan","type":"Role","_key":"5112","_from":"4342","_to":"4339"} +{"$label":"ACTS_IN","name":"Daisy Werthan","type":"Role","_key":"5110","_from":"4341","_to":"4339"} +{"$label":"DIRECTED","_key":"5108","_from":"4340","_to":"4339"} +{"$label":"DIRECTED","_key":"96599","_from":"4340","_to":"56784"} +{"$label":"DIRECTED","_key":"62998","_from":"4340","_to":"39549"} +{"$label":"DIRECTED","_key":"13344","_from":"4340","_to":"10382"} +{"$label":"ACTS_IN","name":"Beryl Peoples","type":"Role","_key":"70954","_from":"4341","_to":"43100"} +{"$label":"ACTS_IN","name":"Faye Riley","type":"Role","_key":"70564","_from":"4341","_to":"42937"} +{"$label":"ACTS_IN","name":"Ninny Threadgoode","type":"Role","_key":"14470","_from":"4341","_to":"11180"} +{"$label":"ACTS_IN","name":"Lydia Brenner","type":"Role","_key":"6816","_from":"4341","_to":"5715"} +{"$label":"ACTS_IN","name":"Alex's Mother","type":"Role","_key":"90285","_from":"4347","_to":"53368"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"5142","_from":"4371","_to":"4349"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"5141","_from":"4370","_to":"4349"} +{"$label":"ACTS_IN","name":"Farmer on Tractor","type":"Role","_key":"5139","_from":"4369","_to":"4349"} +{"$label":"ACTS_IN","name":"Bar Patron","type":"Role","_key":"5138","_from":"4368","_to":"4349"} +{"$label":"ACTS_IN","name":"Thorvald Olsen","type":"Role","_key":"5137","_from":"4367","_to":"4349"} +{"$label":"ACTS_IN","name":"Harald Olsen","type":"Role","_key":"5136","_from":"4366","_to":"4349"} +{"$label":"ACTS_IN","name":"Johnny Johnson, Clermont Resident","type":"Role","_key":"5135","_from":"4365","_to":"4349"} +{"$label":"ACTS_IN","name":"Janet Johnson, Clermont Resident","type":"Role","_key":"5134","_from":"4364","_to":"4349"} +{"$label":"ACTS_IN","name":"Danny Riordan, Clermont Resident","type":"Role","_key":"5132","_from":"4363","_to":"4349"} +{"$label":"ACTS_IN","name":"Tom the John Deere Dealer","type":"Role","_key":"5131","_from":"4362","_to":"4349"} +{"$label":"ACTS_IN","name":"Woman on Bus","type":"Role","_key":"5130","_from":"4361","_to":"4349"} +{"$label":"ACTS_IN","name":"Sun Ray Tours Bus Driver","type":"Role","_key":"5129","_from":"4360","_to":"4349"} +{"$label":"ACTS_IN","name":"Apple","type":"Role","_key":"5128","_from":"4359","_to":"4349"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"5127","_from":"4358","_to":"4349"} +{"$label":"ACTS_IN","name":"Doctor Gibbons","type":"Role","_key":"5126","_from":"4357","_to":"4349"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"5125","_from":"4356","_to":"4349"} +{"$label":"ACTS_IN","name":"Sig","type":"Role","_key":"5124","_from":"4355","_to":"4349"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"5123","_from":"4354","_to":"4349"} +{"$label":"ACTS_IN","name":"Dorothy, Straight's Next-Door Neighbor","type":"Role","_key":"5122","_from":"4353","_to":"4349"} +{"$label":"ACTS_IN","name":"Rose Straight","type":"Role","_key":"5121","_from":"4352","_to":"4349"} +{"$label":"ACTS_IN","name":"Alvin Straight","type":"Role","_key":"5120","_from":"4351","_to":"4349"} +{"$label":"DIRECTED","_key":"5119","_from":"4350","_to":"4349"} +{"$label":"DIRECTED","_key":"16949","_from":"4350","_to":"12729"} +{"$label":"DIRECTED","_key":"16637","_from":"4350","_to":"12568"} +{"$label":"DIRECTED","_key":"15302","_from":"4350","_to":"11713"} +{"$label":"DIRECTED","_key":"11782","_from":"4350","_to":"9247"} +{"$label":"DIRECTED","_key":"11642","_from":"4350","_to":"9145"} +{"$label":"DIRECTED","_key":"9927","_from":"4350","_to":"7956"} +{"$label":"DIRECTED","_key":"9348","_from":"4350","_to":"7553"} +{"$label":"DIRECTED","_key":"7596","_from":"4350","_to":"6321"} +{"$label":"DIRECTED","_key":"5918","_from":"4350","_to":"5031"} +{"$label":"ACTS_IN","name":"Gordon Cole","type":"Role","_key":"16646","_from":"4350","_to":"12568"} +{"$label":"ACTS_IN","name":"Noah, Jake's Father","type":"Role","_key":"109482","_from":"4351","_to":"64671"} +{"$label":"ACTS_IN","name":"Chariot Driver","type":"Role","_key":"44978","_from":"4351","_to":"29886"} +{"$label":"ACTS_IN","name":"John C. Coble","type":"Role","_key":"40427","_from":"4351","_to":"27254"} +{"$label":"ACTS_IN","name":"Buster","type":"Role","_key":"15066","_from":"4351","_to":"11579"} +{"$label":"ACTS_IN","name":"Alice Glover","type":"Role","_key":"118150","_from":"4352","_to":"69442"} +{"$label":"ACTS_IN","name":"Loretta Lynn","type":"Role","_key":"109996","_from":"4352","_to":"64997"} +{"$label":"ACTS_IN","name":"Beth Horman","type":"Role","_key":"105138","_from":"4352","_to":"61871"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"100905","_from":"4352","_to":"59485"} +{"$label":"ACTS_IN","name":"Mae Tuck","type":"Role","_key":"96259","_from":"4352","_to":"56562"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"88616","_from":"4352","_to":"52508"} +{"$label":"ACTS_IN","name":"Helen Thomas Webber","type":"Role","_key":"71110","_from":"4352","_to":"43169"} +{"$label":"ACTS_IN","name":"Marie Powell","type":"Role","_key":"60296","_from":"4352","_to":"38026"} +{"$label":"ACTS_IN","name":"Lucy Bell","type":"Role","_key":"59355","_from":"4352","_to":"37498"} +{"$label":"ACTS_IN","name":"Alice Aimes","type":"Role","_key":"55847","_from":"4352","_to":"35533"} +{"$label":"ACTS_IN","name":"Carrie White","type":"Role","_key":"46457","_from":"4352","_to":"30685"} +{"$label":"ACTS_IN","name":"Holly Sargis","type":"Role","_key":"26249","_from":"4352","_to":"18844"} +{"$label":"ACTS_IN","name":"Ruth Fowler","type":"Role","_key":"17343","_from":"4352","_to":"12977"} +{"$label":"ACTS_IN","name":"Liz Garrison","type":"Role","_key":"9670","_from":"4352","_to":"7763"} +{"$label":"ACTS_IN","name":"TRG","type":"Role","_key":"7581","_from":"4359","_to":"6300"} +{"$label":"ACTS_IN","name":"Reverend Lowe","type":"Role","_key":"114289","_from":"4362","_to":"67312"} +{"$label":"ACTS_IN","name":"Major Malcolm A. Powers","type":"Role","_key":"59459","_from":"4362","_to":"37556"} +{"$label":"ACTS_IN","name":"Penn","type":"Role","_key":"27506","_from":"4362","_to":"19738"} +{"$label":"ACTS_IN","name":"Naoh","type":"Role","_key":"12093","_from":"4362","_to":"9479"} +{"$label":"ACTS_IN","name":"Stilgar","type":"Role","_key":"9938","_from":"4362","_to":"7956"} +{"$label":"ACTS_IN","name":"Ed Killifer","type":"Role","_key":"8573","_from":"4362","_to":"6975"} +{"$label":"ACTS_IN","name":"Don Pearson","type":"Role","_key":"55848","_from":"4363","_to":"35533"} +{"$label":"ACTS_IN","name":"Valet","type":"Role","_key":"96511","_from":"4366","_to":"56725"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"60986","_from":"4366","_to":"38538"} +{"$label":"ACTS_IN","name":"Kevin \" Bear \" Cutterback","type":"Role","_key":"18921","_from":"4366","_to":"13972"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"96462","_from":"4367","_to":"56725"} +{"$label":"ACTS_IN","name":"Swan","type":"Role","_key":"60987","_from":"4367","_to":"38538"} +{"$label":"ACTS_IN","name":"Swimmer Boy","type":"Role","_key":"58548","_from":"4367","_to":"36989"} +{"$label":"ACTS_IN","name":"Scooter","type":"Role","_key":"18924","_from":"4367","_to":"13972"} +{"$label":"ACTS_IN","name":"uncredited","type":"Role","_key":"5153","_from":"4383","_to":"4372"} +{"$label":"ACTS_IN","name":"uncredited","type":"Role","_key":"5152","_from":"4382","_to":"4372"} +{"$label":"ACTS_IN","name":"uncredited","type":"Role","_key":"5151","_from":"4381","_to":"4372"} +{"$label":"ACTS_IN","name":"uncredited","type":"Role","_key":"5150","_from":"4380","_to":"4372"} +{"$label":"ACTS_IN","name":"La Suorina","type":"Role","_key":"5149","_from":"4379","_to":"4372"} +{"$label":"ACTS_IN","name":"La Vedova","type":"Role","_key":"5148","_from":"4378","_to":"4372"} +{"$label":"ACTS_IN","name":"Il Signor Giraffa","type":"Role","_key":"5147","_from":"4377","_to":"4372"} +{"$label":"ACTS_IN","name":"Il 'Matto'","type":"Role","_key":"5146","_from":"4376","_to":"4372"} +{"$label":"ACTS_IN","name":"Gelsomina","type":"Role","_key":"5145","_from":"4375","_to":"4372"} +{"$label":"ACTS_IN","name":"Zampan\u00f2","type":"Role","_key":"5144","_from":"4374","_to":"4372"} +{"$label":"DIRECTED","_key":"5143","_from":"4373","_to":"4372"} +{"$label":"DIRECTED","_key":"120111","_from":"4373","_to":"70540"} +{"$label":"DIRECTED","_key":"118785","_from":"4373","_to":"69840"} +{"$label":"DIRECTED","_key":"90189","_from":"4373","_to":"53321"} +{"$label":"DIRECTED","_key":"72846","_from":"4373","_to":"43875"} +{"$label":"DIRECTED","_key":"68239","_from":"4373","_to":"41902"} +{"$label":"DIRECTED","_key":"67471","_from":"4373","_to":"41556"} +{"$label":"DIRECTED","_key":"47334","_from":"4373","_to":"31174"} +{"$label":"DIRECTED","_key":"38098","_from":"4373","_to":"25769"} +{"$label":"DIRECTED","_key":"5517","_from":"4373","_to":"4704"} +{"$label":"DIRECTED","_key":"5306","_from":"4373","_to":"4493"} +{"$label":"ACTS_IN","name":"Kiril Lakota","type":"Role","_key":"113519","_from":"4374","_to":"66883"} +{"$label":"ACTS_IN","name":"Craig Belden","type":"Role","_key":"101418","_from":"4374","_to":"59701"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99283","_from":"4374","_to":"58507"} +{"$label":"ACTS_IN","name":"Quasimodo","type":"Role","_key":"70956","_from":"4374","_to":"43101"} +{"$label":"ACTS_IN","name":"Col. Andrea Stavros","type":"Role","_key":"66660","_from":"4374","_to":"41194"} +{"$label":"ACTS_IN","name":"Alexis Zorba","type":"Role","_key":"64458","_from":"4374","_to":"40162"} +{"$label":"ACTS_IN","name":"Tony Vivaldi","type":"Role","_key":"54901","_from":"4374","_to":"35106"} +{"$label":"ACTS_IN","name":"Don Pedro Arag\u00f3n","type":"Role","_key":"54685","_from":"4374","_to":"35016"} +{"$label":"ACTS_IN","name":"Nick Acropolis","type":"Role","_key":"22189","_from":"4374","_to":"16172"} +{"$label":"ACTS_IN","name":"Kaiphas","type":"Role","_key":"21142","_from":"4374","_to":"15473"} +{"$label":"ACTS_IN","name":"Eufemio Zapata","type":"Role","_key":"15655","_from":"4374","_to":"11939"} +{"$label":"ACTS_IN","name":"Lou Carbone","type":"Role","_key":"15144","_from":"4374","_to":"11617"} +{"$label":"ACTS_IN","name":"Juan Mart\u00ednez\/Francisco Morez","type":"Role","_key":"11583","_from":"4374","_to":"9099"} +{"$label":"ACTS_IN","name":"Auda abu Tayi","type":"Role","_key":"11288","_from":"4374","_to":"8914"} +{"$label":"DIRECTED","_key":"34920","_from":"4374","_to":"23856"} +{"$label":"ACTS_IN","name":"Giulietta Boldrini","type":"Role","_key":"118786","_from":"4375","_to":"69840"} +{"$label":"ACTS_IN","name":"George S. Headley","type":"Role","_key":"109415","_from":"4376","_to":"64642"} +{"$label":"ACTS_IN","name":"Ishmael","type":"Role","_key":"62680","_from":"4376","_to":"39417"} +{"$label":"ACTS_IN","name":"Lt. Rennick","type":"Role","_key":"31865","_from":"4376","_to":"22236"} +{"$label":"ACTS_IN","name":"l'Officier de Police","type":"Role","_key":"5170","_from":"4397","_to":"4384"} +{"$label":"ACTS_IN","name":"Le chef de la police","type":"Role","_key":"5169","_from":"4396","_to":"4384"} +{"$label":"ACTS_IN","name":"Le chauffeur de taxi","type":"Role","_key":"5166","_from":"4395","_to":"4384"} +{"$label":"ACTS_IN","name":"L'homme saoul","type":"Role","_key":"5165","_from":"4394","_to":"4384"} +{"$label":"ACTS_IN","name":"Beno\u00eet","type":"Role","_key":"5164","_from":"4393","_to":"4384"} +{"$label":"ACTS_IN","name":"Darty","type":"Role","_key":"5163","_from":"4392","_to":"4384"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix","type":"Role","_key":"5162","_from":"4391","_to":"4384"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"5161","_from":"4390","_to":"4384"} +{"$label":"ACTS_IN","name":"Ordinary Guy","type":"Role","_key":"5160","_from":"4389","_to":"4384"} +{"$label":"ACTS_IN","name":"Santo","type":"Role","_key":"5159","_from":"4388","_to":"4384"} +{"$label":"ACTS_IN","name":"Abdel","type":"Role","_key":"5158","_from":"4387","_to":"4384"} +{"$label":"ACTS_IN","name":"Sa\u00efd","type":"Role","_key":"5157","_from":"4386","_to":"4384"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"5156","_from":"4385","_to":"4384"} +{"$label":"ACTS_IN","name":"Arnold Bluhm","type":"Role","_key":"17183","_from":"4385","_to":"12868"} +{"$label":"ACTS_IN","name":"Breaker","type":"Role","_key":"102226","_from":"4386","_to":"60158"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"93743","_from":"4386","_to":"55182"} +{"$label":"ACTS_IN","name":"Bilal","type":"Role","_key":"61718","_from":"4386","_to":"38871"} +{"$label":"ACTS_IN","name":"Suarez","type":"Role","_key":"46823","_from":"4386","_to":"30888"} +{"$label":"ACTS_IN","name":"Sami","type":"Role","_key":"42776","_from":"4386","_to":"28621"} +{"$label":"ACTS_IN","name":"Paulo","type":"Role","_key":"41180","_from":"4386","_to":"27708"} +{"$label":"ACTS_IN","name":"Lazare","type":"Role","_key":"103289","_from":"4391","_to":"60764"} +{"$label":"ACTS_IN","name":"Pete the Barman","type":"Role","_key":"59893","_from":"4391","_to":"37818"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"49255","_from":"4391","_to":"32254"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"20486","_from":"4392","_to":"14980"} +{"$label":"ACTS_IN","name":"Didier","type":"Role","_key":"112070","_from":"4393","_to":"66172"} +{"$label":"ACTS_IN","name":"Le commissaire","type":"Role","_key":"96157","_from":"4393","_to":"56512"} +{"$label":"ACTS_IN","name":"Terrien","type":"Role","_key":"94895","_from":"4393","_to":"55872"} +{"$label":"ACTS_IN","name":"Alex Fayard","type":"Role","_key":"89326","_from":"4393","_to":"52877"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Vasseur","type":"Role","_key":"66809","_from":"4393","_to":"41272"} +{"$label":"ACTS_IN","name":"Capitaine Antoine \"Walk'n\" Marchelli","type":"Role","_key":"65870","_from":"4393","_to":"40762"} +{"$label":"ACTS_IN","name":"Paul Gaudens","type":"Role","_key":"37910","_from":"4393","_to":"25672"} +{"$label":"ACTS_IN","name":"Momo Groseille","type":"Role","_key":"30676","_from":"4393","_to":"21530"} +{"$label":"ACTS_IN","name":"Reda","type":"Role","_key":"29174","_from":"4393","_to":"20776"} +{"$label":"ACTS_IN","name":"Walter Klemmer","type":"Role","_key":"15558","_from":"4393","_to":"11877"} +{"$label":"ACTS_IN","name":"Marc Thiriez","type":"Role","_key":"110797","_from":"4394","_to":"65443"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"105583","_from":"4394","_to":"62132"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"101334","_from":"4394","_to":"59657"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"100785","_from":"4394","_to":"59416"} +{"$label":"ACTS_IN","name":"Lian-Chu","type":"Role","_key":"65882","_from":"4394","_to":"40764"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"17959","_from":"4394","_to":"13356"} +{"$label":"ACTS_IN","name":"Fernand","type":"Role","_key":"17628","_from":"4394","_to":"13156"} +{"$label":"ACTS_IN","name":"le gar\u00e7on du restaurant","type":"Role","_key":"48613","_from":"4395","_to":"31880"} +{"$label":"ACTS_IN","name":"Pompier","type":"Role","_key":"20195","_from":"4395","_to":"14804"} +{"$label":"ACTS_IN","name":"Professeur Schneider","type":"Role","_key":"112142","_from":"4396","_to":"66226"} +{"$label":"ACTS_IN","name":"Le Collectionneur","type":"Role","_key":"103299","_from":"4396","_to":"60769"} +{"$label":"ACTS_IN","name":"Charles Subra","type":"Role","_key":"101717","_from":"4396","_to":"59865"} +{"$label":"ACTS_IN","name":"Le Seigneur Arnold","type":"Role","_key":"65884","_from":"4396","_to":"40764"} +{"$label":"ACTS_IN","name":"Le tueur","type":"Role","_key":"61817","_from":"4396","_to":"38914"} +{"$label":"ACTS_IN","name":"Barberin","type":"Role","_key":"20966","_from":"4396","_to":"15337"} +{"$label":"ACTS_IN","name":"le boucher","type":"Role","_key":"13879","_from":"4396","_to":"10778"} +{"$label":"ACTS_IN","name":"le boucher","type":"Role","_key":"13869","_from":"4396","_to":"10769"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"11575","_from":"4396","_to":"9092"} +{"$label":"ACTS_IN","name":"L'homme au bonnet","type":"Role","_key":"95809","_from":"4397","_to":"56350"} +{"$label":"ACTS_IN","name":"Djamel","type":"Role","_key":"72971","_from":"4397","_to":"43923"} +{"$label":"ACTS_IN","name":"Mourad","type":"Role","_key":"48772","_from":"4397","_to":"31986"} +{"$label":"ACTS_IN","name":"Momo","type":"Role","_key":"48611","_from":"4397","_to":"31880"} +{"$label":"ACTS_IN","name":"Prince Hakim","type":"Role","_key":"30752","_from":"4397","_to":"21554"} +{"$label":"ACTS_IN","name":"Der Vater des entf\u00fchrten M\u00e4dchens","type":"Role","_key":"21467","_from":"4397","_to":"15682"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"5181","_from":"4406","_to":"4398"} +{"$label":"ACTS_IN","name":"Gabriels Vater","type":"Role","_key":"5180","_from":"4405","_to":"4398"} +{"$label":"ACTS_IN","name":"Waffenh\u00e4ndler","type":"Role","_key":"5179","_from":"4404","_to":"4398"} +{"$label":"ACTS_IN","name":"Ceyda","type":"Role","_key":"5176","_from":"4403","_to":"4398"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"5175","_from":"4402","_to":"4398"} +{"$label":"ACTS_IN","name":"Costa","type":"Role","_key":"5174","_from":"4401","_to":"4398"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"5173","_from":"4400","_to":"4398"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"5172","_from":"4399","_to":"4398"} +{"$label":"ACTS_IN","name":"Isa","type":"Role","_key":"28652","_from":"4399","_to":"20478"} +{"$label":"ACTS_IN","name":"Vittorio Castanza","type":"Role","_key":"28040","_from":"4399","_to":"20097"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"15399","_from":"4399","_to":"11776"} +{"$label":"ACTS_IN","name":"Dr. Livesay","type":"Role","_key":"38311","_from":"4400","_to":"25875"} +{"$label":"ACTS_IN","name":"Valid","type":"Role","_key":"17400","_from":"4401","_to":"13011"} +{"$label":"ACTS_IN","name":"Christin","type":"Role","_key":"53738","_from":"4402","_to":"34646"} +{"$label":"ACTS_IN","name":"Nadja","type":"Role","_key":"46828","_from":"4402","_to":"30889"} +{"$label":"ACTS_IN","name":"Melek","type":"Role","_key":"28653","_from":"4403","_to":"20478"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"28414","_from":"4403","_to":"20322"} +{"$label":"ACTS_IN","name":"Marie Hamdan","type":"Role","_key":"26614","_from":"4403","_to":"19123"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"29163","_from":"4404","_to":"20765"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"14289","_from":"4404","_to":"11055"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"90380","_from":"4406","_to":"53408"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"30396","_from":"4406","_to":"21376"} +{"$label":"ACTS_IN","name":"Boris Wecker","type":"Role","_key":"20849","_from":"4406","_to":"15252"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"5190","_from":"4416","_to":"4407"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"5189","_from":"4415","_to":"4407"} +{"$label":"ACTS_IN","name":"Happy","type":"Role","_key":"5188","_from":"4414","_to":"4407"} +{"$label":"ACTS_IN","name":"Sneezy","type":"Role","_key":"5187","_from":"4413","_to":"4407"} +{"$label":"ACTS_IN","name":"Bird Sounds and Warbling","type":"Role","_key":"5186","_from":"4412","_to":"4407"} +{"$label":"ACTS_IN","name":"Sleepy\/Grumpy","type":"Role","_key":"5185","_from":"4411","_to":"4407"} +{"$label":"ACTS_IN","name":"Dopey","type":"Role","_key":"5184","_from":"4410","_to":"4407"} +{"$label":"ACTS_IN","name":"Snow White","type":"Role","_key":"5183","_from":"4409","_to":"4407"} +{"$label":"DIRECTED","_key":"5182","_from":"4408","_to":"4407"} +{"$label":"DIRECTED","_key":"26464","_from":"4408","_to":"19021"} +{"$label":"ACTS_IN","name":"Cuckoo Clock Birds (voice)","type":"Role","_key":"66511","_from":"4412","_to":"41120"} +{"$label":"ACTS_IN","name":"Joe Pettibone","type":"Role","_key":"25635","_from":"4413","_to":"18451"} +{"$label":"ACTS_IN","name":"Field Marshal Herring","type":"Role","_key":"10872","_from":"4413","_to":"8611"} +{"$label":"DIRECTED","_key":"5209","_from":"4432","_to":"4417"} +{"$label":"ACTS_IN","name":"Corporal Dade","type":"Role","_key":"5208","_from":"4431","_to":"4417"} +{"$label":"ACTS_IN","name":"Rupert Douglas","type":"Role","_key":"5207","_from":"4430","_to":"4417"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"5206","_from":"4429","_to":"4417"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"5205","_from":"4428","_to":"4417"} +{"$label":"ACTS_IN","name":"Bermann","type":"Role","_key":"5204","_from":"4427","_to":"4417"} +{"$label":"ACTS_IN","name":"Fouad","type":"Role","_key":"5203","_from":"4426","_to":"4417"} +{"$label":"ACTS_IN","name":"D'Agostino","type":"Role","_key":"5202","_from":"4425","_to":"4417"} +{"$label":"ACTS_IN","name":"Fenelon-Barnes","type":"Role","_key":"5201","_from":"4424","_to":"4417"} +{"$label":"ACTS_IN","name":"Hardy","type":"Role","_key":"5200","_from":"4423","_to":"4417"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"5198","_from":"4422","_to":"4417"} +{"$label":"ACTS_IN","name":"Madox","type":"Role","_key":"5197","_from":"4421","_to":"4417"} +{"$label":"ACTS_IN","name":"Geoffrey Clifton","type":"Role","_key":"5196","_from":"4420","_to":"4417"} +{"$label":"ACTS_IN","name":"Sikh Kip","type":"Role","_key":"5195","_from":"4419","_to":"4417"} +{"$label":"ACTS_IN","name":"Katharine Clifton","type":"Role","_key":"5194","_from":"4418","_to":"4417"} +{"$label":"ACTS_IN","name":"Iona Aylesbury","type":"Role","_key":"111070","_from":"4418","_to":"65605"} +{"$label":"ACTS_IN","name":"Mrs. Whittaker","type":"Role","_key":"110387","_from":"4418","_to":"65225"} +{"$label":"ACTS_IN","name":"Ann Ferguson","type":"Role","_key":"100044","_from":"4418","_to":"59019"} +{"$label":"ACTS_IN","name":"L'antiquaire","type":"Role","_key":"96158","_from":"4418","_to":"56512"} +{"$label":"ACTS_IN","name":"Lynn Lockner","type":"Role","_key":"93597","_from":"4418","_to":"55116"} +{"$label":"ACTS_IN","name":"Kay Chandler","type":"Role","_key":"90637","_from":"4418","_to":"53520"} +{"$label":"ACTS_IN","name":"Lady Elizabeth Boleyn","type":"Role","_key":"88557","_from":"4418","_to":"52483"} +{"$label":"ACTS_IN","name":"Jos\u00e9phine","type":"Role","_key":"70519","_from":"4418","_to":"42926"} +{"$label":"ACTS_IN","name":"Robin Kimball","type":"Role","_key":"69971","_from":"4418","_to":"42686"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Perkins","type":"Role","_key":"65839","_from":"4418","_to":"40747"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"63684","_from":"4418","_to":"39830"} +{"$label":"ACTS_IN","name":"Elena Van Den Ende","type":"Role","_key":"60487","_from":"4418","_to":"38170"} +{"$label":"ACTS_IN","name":"Gloria Goodfellow","type":"Role","_key":"55636","_from":"4418","_to":"35425"} +{"$label":"ACTS_IN","name":"Matty Crompton","type":"Role","_key":"49866","_from":"4418","_to":"32648"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"48742","_from":"4418","_to":"31971"} +{"$label":"ACTS_IN","name":"Sylvia McCordle","type":"Role","_key":"36864","_from":"4418","_to":"24998"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"20866","_from":"4418","_to":"15264"} +{"$label":"ACTS_IN","name":"Imogen Staxton-Billing","type":"Role","_key":"18864","_from":"4418","_to":"13922"} +{"$label":"ACTS_IN","name":"Sarah Davies","type":"Role","_key":"11376","_from":"4418","_to":"8963"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"8611","_from":"4418","_to":"6995"} +{"$label":"ACTS_IN","name":"Annie MacLean","type":"Role","_key":"6513","_from":"4418","_to":"5515"} +{"$label":"ACTS_IN","name":"Balraj Bingley","type":"Role","_key":"90176","_from":"4419","_to":"53317"} +{"$label":"ACTS_IN","name":"Sanjay","type":"Role","_key":"70485","_from":"4419","_to":"42911"} +{"$label":"ACTS_IN","name":"Pindi","type":"Role","_key":"57158","_from":"4419","_to":"36271"} +{"$label":"ACTS_IN","name":"David Kirmani","type":"Role","_key":"31565","_from":"4419","_to":"22047"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"17260","_from":"4419","_to":"12925"} +{"$label":"ACTS_IN","name":"Mr. Whittaker","type":"Role","_key":"110388","_from":"4420","_to":"65225"} +{"$label":"ACTS_IN","name":"Mr. Darcy","type":"Role","_key":"101458","_from":"4420","_to":"59721"} +{"$label":"ACTS_IN","name":"Richard Bratton","type":"Role","_key":"94309","_from":"4420","_to":"55539"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"93403","_from":"4420","_to":"55010"} +{"$label":"ACTS_IN","name":"Dr. Wilhelm Stuckart","type":"Role","_key":"91878","_from":"4420","_to":"54204"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"89337","_from":"4420","_to":"52880"} +{"$label":"ACTS_IN","name":"Harry Bright","type":"Role","_key":"71159","_from":"4420","_to":"43190"} +{"$label":"ACTS_IN","name":"Mr. Brown","type":"Role","_key":"68886","_from":"4420","_to":"42189"} +{"$label":"ACTS_IN","name":"Geoffrey Thwaites","type":"Role","_key":"65416","_from":"4420","_to":"40563"} +{"$label":"ACTS_IN","name":"Henry Dashwood","type":"Role","_key":"65349","_from":"4420","_to":"40547"} +{"$label":"ACTS_IN","name":"Mark Darcy","type":"Role","_key":"56943","_from":"4420","_to":"36142"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"56132","_from":"4420","_to":"35683"} +{"$label":"ACTS_IN","name":"Aurelius","type":"Role","_key":"55871","_from":"4420","_to":"35542"} +{"$label":"ACTS_IN","name":"John Worthing (\u201eJack\u201c)","type":"Role","_key":"52103","_from":"4420","_to":"33974"} +{"$label":"ACTS_IN","name":"Adrian LeDuc","type":"Role","_key":"37051","_from":"4420","_to":"25115"} +{"$label":"ACTS_IN","name":"Johannes Vermeer","type":"Role","_key":"28382","_from":"4420","_to":"20310"} +{"$label":"ACTS_IN","name":"Lord Wessex","type":"Role","_key":"16761","_from":"4420","_to":"12639"} +{"$label":"ACTS_IN","name":"Paul Ashworth","type":"Role","_key":"14265","_from":"4420","_to":"11035"} +{"$label":"ACTS_IN","name":"Mark Darcy","type":"Role","_key":"7540","_from":"4420","_to":"6278"} +{"$label":"ACTS_IN","name":"Jamie Bennett","type":"Role","_key":"6131","_from":"4420","_to":"5200"} +{"$label":"ACTS_IN","name":"Andrew Darcy","type":"Role","_key":"119110","_from":"4421","_to":"70011"} +{"$label":"ACTS_IN","name":"Charles Bingham","type":"Role","_key":"102717","_from":"4421","_to":"60425"} +{"$label":"ACTS_IN","name":"Rogers","type":"Role","_key":"59736","_from":"4421","_to":"37714"} +{"$label":"ACTS_IN","name":"Hunt","type":"Role","_key":"52031","_from":"4421","_to":"33922"} +{"$label":"ACTS_IN","name":"Hauptmann Karl Mayr","type":"Role","_key":"21798","_from":"4421","_to":"15899"} +{"$label":"ACTS_IN","name":"Headmaster (Ger.: Rektor)","type":"Role","_key":"50269","_from":"4424","_to":"32841"} +{"$label":"ACTS_IN","name":"William Godwin","type":"Role","_key":"26999","_from":"4424","_to":"19414"} +{"$label":"ACTS_IN","name":"Quentin Rhodes","type":"Role","_key":"20662","_from":"4424","_to":"15095"} +{"$label":"ACTS_IN","name":"Dr. Henry Hulme","type":"Role","_key":"11809","_from":"4424","_to":"9260"} +{"$label":"ACTS_IN","name":"Bellhop","type":"Role","_key":"71450","_from":"4425","_to":"43316"} +{"$label":"ACTS_IN","name":"Carlo Bianchi","type":"Role","_key":"68657","_from":"4425","_to":"42077"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"40842","_from":"4425","_to":"27492"} +{"$label":"ACTS_IN","name":"Alg\u00f6ver","type":"Role","_key":"31514","_from":"4427","_to":"22008"} +{"$label":"ACTS_IN","name":"Tankwart","type":"Role","_key":"28792","_from":"4427","_to":"20565"} +{"$label":"ACTS_IN","name":"Archie Christie","type":"Role","_key":"41750","_from":"4430","_to":"28015"} +{"$label":"DIRECTED","_key":"115467","_from":"4432","_to":"67984"} +{"$label":"DIRECTED","_key":"20068","_from":"4432","_to":"14764"} +{"$label":"DIRECTED","_key":"12249","_from":"4432","_to":"9592"} +{"$label":"DIRECTED","_key":"12153","_from":"4432","_to":"9529"} +{"$label":"ACTS_IN","name":"Apotheker","type":"Role","_key":"5221","_from":"4444","_to":"4433"} +{"$label":"ACTS_IN","name":"Chefin Agentur","type":"Role","_key":"5220","_from":"4443","_to":"4433"} +{"$label":"ACTS_IN","name":"Barbara Bachmann\t ..","type":"Role","_key":"5219","_from":"4442","_to":"4433"} +{"$label":"ACTS_IN","name":"Herr Neumann","type":"Role","_key":"5218","_from":"4441","_to":"4433"} +{"$label":"ACTS_IN","name":"Oskar","type":"Role","_key":"5217","_from":"4440","_to":"4433"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"5216","_from":"4439","_to":"4433"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"5215","_from":"4438","_to":"4433"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"5214","_from":"4437","_to":"4433"} +{"$label":"ACTS_IN","name":"Ronald","type":"Role","_key":"5213","_from":"4436","_to":"4433"} +{"$label":"ACTS_IN","name":"Nike","type":"Role","_key":"5212","_from":"4435","_to":"4433"} +{"$label":"ACTS_IN","name":"Katrin Engel","type":"Role","_key":"5211","_from":"4434","_to":"4433"} +{"$label":"ACTS_IN","name":"Martins Mutter","type":"Role","_key":"65944","_from":"4434","_to":"40793"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"10653","_from":"4434","_to":"8455"} +{"$label":"ACTS_IN","name":"Young Anna","type":"Role","_key":"107277","_from":"4435","_to":"63270"} +{"$label":"ACTS_IN","name":"Helga Wolbert","type":"Role","_key":"88136","_from":"4435","_to":"52300"} +{"$label":"ACTS_IN","name":"Katja D\u00f6bbelin","type":"Role","_key":"68515","_from":"4435","_to":"42023"} +{"$label":"ACTS_IN","name":"Tatjana","type":"Role","_key":"63694","_from":"4435","_to":"39833"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"63443","_from":"4435","_to":"39741"} +{"$label":"ACTS_IN","name":"Brigitte Mohnhaupt","type":"Role","_key":"45441","_from":"4435","_to":"30115"} +{"$label":"ACTS_IN","name":"Paula Reinhardt - BKA Beamtin","type":"Role","_key":"44374","_from":"4435","_to":"29567"} +{"$label":"ACTS_IN","name":"Franzi","type":"Role","_key":"43455","_from":"4435","_to":"29031"} +{"$label":"ACTS_IN","name":"Nele","type":"Role","_key":"36746","_from":"4435","_to":"24915"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"48363","_from":"4436","_to":"31748"} +{"$label":"ACTS_IN","name":"Zilinski","type":"Role","_key":"47405","_from":"4436","_to":"31223"} +{"$label":"ACTS_IN","name":"Gurki","type":"Role","_key":"46303","_from":"4436","_to":"30602"} +{"$label":"ACTS_IN","name":"Vasile","type":"Role","_key":"41050","_from":"4436","_to":"27614"} +{"$label":"ACTS_IN","name":"Winnie","type":"Role","_key":"37509","_from":"4436","_to":"25419"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"45661","_from":"4437","_to":"30218"} +{"$label":"ACTS_IN","name":"Meta","type":"Role","_key":"65072","_from":"4439","_to":"40429"} +{"$label":"ACTS_IN","name":"Karin Durst","type":"Role","_key":"47685","_from":"4443","_to":"31413"} +{"$label":"ACTS_IN","name":"Mimi Mann-Kanova","type":"Role","_key":"20016","_from":"4443","_to":"14724"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"5245","_from":"4462","_to":"4445"} +{"$label":"ACTS_IN","name":"Philip the Horse","type":"Role","_key":"5244","_from":"4461","_to":"4445"} +{"$label":"ACTS_IN","name":"Gryphon","type":"Role","_key":"5243","_from":"4460","_to":"4445"} +{"$label":"ACTS_IN","name":"Mrs. Beaver","type":"Role","_key":"5241","_from":"4459","_to":"4445"} +{"$label":"ACTS_IN","name":"Older Susan","type":"Role","_key":"5238","_from":"4458","_to":"4445"} +{"$label":"ACTS_IN","name":"Older Edmund","type":"Role","_key":"5236","_from":"4457","_to":"4445"} +{"$label":"ACTS_IN","name":"Older Lucy","type":"Role","_key":"5235","_from":"4456","_to":"4445"} +{"$label":"ACTS_IN","name":"Oreius","type":"Role","_key":"5234","_from":"4455","_to":"4445"} +{"$label":"ACTS_IN","name":"Mrs. MacReady","type":"Role","_key":"5233","_from":"4454","_to":"4445"} +{"$label":"ACTS_IN","name":"Mrs. Pevensie","type":"Role","_key":"5232","_from":"4453","_to":"4445"} +{"$label":"ACTS_IN","name":"Ginarrbrik","type":"Role","_key":"5230","_from":"4452","_to":"4445"} +{"$label":"ACTS_IN","name":"Mr. Tumnus, the Faun","type":"Role","_key":"5228","_from":"4451","_to":"4445"} +{"$label":"ACTS_IN","name":"Susan Pevensie","type":"Role","_key":"5226","_from":"4450","_to":"4445"} +{"$label":"ACTS_IN","name":"Peter Pevensie","type":"Role","_key":"5225","_from":"4449","_to":"4445"} +{"$label":"ACTS_IN","name":"Edmund Pevensie","type":"Role","_key":"5224","_from":"4448","_to":"4445"} +{"$label":"ACTS_IN","name":"Lucy Pevensie","type":"Role","_key":"5223","_from":"4447","_to":"4445"} +{"$label":"DIRECTED","_key":"5222","_from":"4446","_to":"4445"} +{"$label":"DIRECTED","_key":"61189","_from":"4446","_to":"38660"} +{"$label":"DIRECTED","_key":"21538","_from":"4446","_to":"15744"} +{"$label":"DIRECTED","_key":"9526","_from":"4446","_to":"7683"} +{"$label":"DIRECTED","_key":"9515","_from":"4446","_to":"7675"} +{"$label":"ACTS_IN","name":"Lucy Pevensie","type":"Role","_key":"61191","_from":"4447","_to":"38660"} +{"$label":"ACTS_IN","name":"Lucy Pevensie","type":"Role","_key":"21520","_from":"4447","_to":"15744"} +{"$label":"ACTS_IN","name":"Enzo Ferrari (At 8 years)","type":"Role","_key":"104582","_from":"4448","_to":"61510"} +{"$label":"ACTS_IN","name":"Edmund Prevensie","type":"Role","_key":"61190","_from":"4448","_to":"38660"} +{"$label":"ACTS_IN","name":"Edmund Pevensie","type":"Role","_key":"21521","_from":"4448","_to":"15744"} +{"$label":"ACTS_IN","name":"Peter Pevensie","type":"Role","_key":"21522","_from":"4449","_to":"15744"} +{"$label":"ACTS_IN","name":"Maertge","type":"Role","_key":"28392","_from":"4450","_to":"20310"} +{"$label":"ACTS_IN","name":"Susan Pevensie","type":"Role","_key":"21523","_from":"4450","_to":"15744"} +{"$label":"ACTS_IN","name":"Simon Balcairn","type":"Role","_key":"103813","_from":"4451","_to":"61055"} +{"$label":"ACTS_IN","name":"Leto Atreides II","type":"Role","_key":"99662","_from":"4451","_to":"58761"} +{"$label":"ACTS_IN","name":"Brian Jackson","type":"Role","_key":"98316","_from":"4451","_to":"57908"} +{"$label":"ACTS_IN","name":"Carl Colt","type":"Role","_key":"72204","_from":"4451","_to":"43633"} +{"$label":"ACTS_IN","name":"Wesley Gibson","type":"Role","_key":"51423","_from":"4451","_to":"33548"} +{"$label":"ACTS_IN","name":"Johnny\/Max","type":"Role","_key":"47659","_from":"4451","_to":"31400"} +{"$label":"ACTS_IN","name":"Robbie Turner","type":"Role","_key":"31068","_from":"4451","_to":"21754"} +{"$label":"ACTS_IN","name":"Tom Lefroy","type":"Role","_key":"24618","_from":"4451","_to":"17810"} +{"$label":"ACTS_IN","name":"Dr. Nicholas Garrigan","type":"Role","_key":"13579","_from":"4451","_to":"10561"} +{"$label":"ACTS_IN","name":"Judy Burke","type":"Role","_key":"12366","_from":"4453","_to":"9681"} +{"$label":"ACTS_IN","name":"Magda Rees-Jones","type":"Role","_key":"65731","_from":"4454","_to":"40696"} +{"$label":"ACTS_IN","name":"Lucy Ikos","type":"Role","_key":"32222","_from":"4454","_to":"22456"} +{"$label":"ACTS_IN","name":"Tane","type":"Role","_key":"108872","_from":"4455","_to":"64343"} +{"$label":"ACTS_IN","name":"Miss Forcible (voice)","type":"Role","_key":"101977","_from":"4459","_to":"60008"} +{"$label":"ACTS_IN","name":"Die Therapeutin","type":"Role","_key":"44524","_from":"4459","_to":"29646"} +{"$label":"ACTS_IN","name":"Gossip Gerty","type":"Role","_key":"5257","_from":"4468","_to":"4463"} +{"$label":"ACTS_IN","name":"Spice","type":"Role","_key":"5256","_from":"4467","_to":"4463"} +{"$label":"ACTS_IN","name":"Robin\/Dick Grayson","type":"Role","_key":"5252","_from":"4466","_to":"4463"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"5248","_from":"4465","_to":"4463"} +{"$label":"DIRECTED","_key":"5247","_from":"4464","_to":"4463"} +{"$label":"DIRECTED","_key":"89719","_from":"4464","_to":"53109"} +{"$label":"DIRECTED","_key":"70653","_from":"4464","_to":"42993"} +{"$label":"DIRECTED","_key":"65308","_from":"4464","_to":"40530"} +{"$label":"DIRECTED","_key":"65063","_from":"4464","_to":"40427"} +{"$label":"DIRECTED","_key":"64707","_from":"4464","_to":"40293"} +{"$label":"DIRECTED","_key":"57298","_from":"4464","_to":"36334"} +{"$label":"DIRECTED","_key":"52440","_from":"4464","_to":"34117"} +{"$label":"DIRECTED","_key":"48574","_from":"4464","_to":"31873"} +{"$label":"DIRECTED","_key":"28241","_from":"4464","_to":"20227"} +{"$label":"DIRECTED","_key":"26231","_from":"4464","_to":"18839"} +{"$label":"DIRECTED","_key":"15735","_from":"4464","_to":"11989"} +{"$label":"DIRECTED","_key":"14610","_from":"4464","_to":"11252"} +{"$label":"DIRECTED","_key":"13731","_from":"4464","_to":"10658"} +{"$label":"DIRECTED","_key":"13691","_from":"4464","_to":"10632"} +{"$label":"DIRECTED","_key":"5258","_from":"4464","_to":"4469"} +{"$label":"ACTS_IN","name":"Detective Andy Devereaux","type":"Role","_key":"121033","_from":"4465","_to":"71082"} +{"$label":"ACTS_IN","name":"Jake Harris","type":"Role","_key":"109636","_from":"4465","_to":"64758"} +{"$label":"ACTS_IN","name":"Virgil Adamson","type":"Role","_key":"104910","_from":"4465","_to":"61735"} +{"$label":"ACTS_IN","name":"La Mangouste","type":"Role","_key":"100848","_from":"4465","_to":"59455"} +{"$label":"ACTS_IN","name":"Henderson","type":"Role","_key":"100766","_from":"4465","_to":"59409"} +{"$label":"ACTS_IN","name":"Chris Knight","type":"Role","_key":"99840","_from":"4465","_to":"58889"} +{"$label":"ACTS_IN","name":"John Cologne","type":"Role","_key":"98704","_from":"4465","_to":"58173"} +{"$label":"ACTS_IN","name":"MacPherson","type":"Role","_key":"93620","_from":"4465","_to":"55122"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"92024","_from":"4465","_to":"54296"} +{"$label":"ACTS_IN","name":"Willem DeKooning","type":"Role","_key":"89959","_from":"4465","_to":"53218"} +{"$label":"ACTS_IN","name":"Ray Levoi","type":"Role","_key":"89291","_from":"4465","_to":"52863"} +{"$label":"ACTS_IN","name":"Doc Holliday","type":"Role","_key":"73057","_from":"4465","_to":"43963"} +{"$label":"ACTS_IN","name":"Stevie Pruit","type":"Role","_key":"71641","_from":"4465","_to":"43379"} +{"$label":"ACTS_IN","name":"Danny Parker","type":"Role","_key":"70042","_from":"4465","_to":"42710"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"68298","_from":"4465","_to":"41929"} +{"$label":"ACTS_IN","name":"Col. John Henry Patterson","type":"Role","_key":"64261","_from":"4465","_to":"40077"} +{"$label":"ACTS_IN","name":"Jim Morrison","type":"Role","_key":"63923","_from":"4465","_to":"39931"} +{"$label":"ACTS_IN","name":"Simon Templar","type":"Role","_key":"59267","_from":"4465","_to":"37436"} +{"$label":"ACTS_IN","name":"Moses\/God","type":"Role","_key":"57348","_from":"4465","_to":"36365"} +{"$label":"ACTS_IN","name":"Montgomery","type":"Role","_key":"53021","_from":"4465","_to":"34335"} +{"$label":"ACTS_IN","name":"Robby Gallagher","type":"Role","_key":"51187","_from":"4465","_to":"33388"} +{"$label":"ACTS_IN","name":"Nick Rivers","type":"Role","_key":"50708","_from":"4465","_to":"33102"} +{"$label":"ACTS_IN","name":"Agent Paul Pryzwarra - FBI","type":"Role","_key":"47185","_from":"4465","_to":"31106"} +{"$label":"ACTS_IN","name":"Philippe Huron","type":"Role","_key":"42247","_from":"4465","_to":"28293"} +{"$label":"ACTS_IN","name":"El Cabillo","type":"Role","_key":"37497","_from":"4465","_to":"25416"} +{"$label":"ACTS_IN","name":"Gay Perry","type":"Role","_key":"36539","_from":"4465","_to":"24777"} +{"$label":"ACTS_IN","name":"John Holmes","type":"Role","_key":"35459","_from":"4465","_to":"24121"} +{"$label":"ACTS_IN","name":"J.T. Baker","type":"Role","_key":"17828","_from":"4465","_to":"13281"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"17038","_from":"4465","_to":"12778"} +{"$label":"ACTS_IN","name":"Chris Shiherlis","type":"Role","_key":"11323","_from":"4465","_to":"8936"} +{"$label":"ACTS_IN","name":"Madmartigan","type":"Role","_key":"10033","_from":"4465","_to":"8030"} +{"$label":"ACTS_IN","name":"Tom 'Iceman' Kazanski","type":"Role","_key":"8685","_from":"4465","_to":"7049"} +{"$label":"ACTS_IN","name":"Chris Reece","type":"Role","_key":"101428","_from":"4466","_to":"59708"} +{"$label":"ACTS_IN","name":"Jason Colvin","type":"Role","_key":"92179","_from":"4466","_to":"54404"} +{"$label":"ACTS_IN","name":"Peter Garrett","type":"Role","_key":"71510","_from":"4466","_to":"43337"} +{"$label":"ACTS_IN","name":"Wardell Pomeroy","type":"Role","_key":"68388","_from":"4466","_to":"41964"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"60064","_from":"4466","_to":"37904"} +{"$label":"ACTS_IN","name":"Charlie Simms","type":"Role","_key":"54093","_from":"4466","_to":"34781"} +{"$label":"ACTS_IN","name":"Mr. Kittredge","type":"Role","_key":"49301","_from":"4466","_to":"32288"} +{"$label":"ACTS_IN","name":"Adam Hall","type":"Role","_key":"42985","_from":"4466","_to":"28718"} +{"$label":"ACTS_IN","name":"Jimmie Shannon","type":"Role","_key":"17559","_from":"4466","_to":"13126"} +{"$label":"ACTS_IN","name":"Dick Grayson","type":"Role","_key":"5268","_from":"4466","_to":"4469"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"97905","_from":"4467","_to":"57663"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"95068","_from":"4467","_to":"55962"} +{"$label":"ACTS_IN","name":"Steena","type":"Role","_key":"65673","_from":"4467","_to":"40682"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"65076","_from":"4467","_to":"40431"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"32581","_from":"4467","_to":"22640"} +{"$label":"ACTS_IN","name":"Kozy, S&M Girl","type":"Role","_key":"15679","_from":"4467","_to":"11948"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"9039","_from":"4467","_to":"7306"} +{"$label":"ACTS_IN","name":"Barbara Wilson","type":"Role","_key":"5267","_from":"4472","_to":"4469"} +{"$label":"ACTS_IN","name":"Dr. Jason Woodrue","type":"Role","_key":"5263","_from":"4471","_to":"4469"} +{"$label":"ACTS_IN","name":"Julie Madison","type":"Role","_key":"5262","_from":"4470","_to":"4469"} +{"$label":"ACTS_IN","name":"Sheela","type":"Role","_key":"90021","_from":"4470","_to":"53251"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"62596","_from":"4470","_to":"39382"} +{"$label":"ACTS_IN","name":"Mickey Morse","type":"Role","_key":"53828","_from":"4470","_to":"34676"} +{"$label":"ACTS_IN","name":"Model","type":"Role","_key":"48507","_from":"4470","_to":"31835"} +{"$label":"ACTS_IN","name":"Alan Raimy","type":"Role","_key":"116737","_from":"4471","_to":"68714"} +{"$label":"ACTS_IN","name":"Wynn Scott","type":"Role","_key":"106945","_from":"4471","_to":"63051"} +{"$label":"ACTS_IN","name":"Bryce Cummings","type":"Role","_key":"55262","_from":"4471","_to":"35245"} +{"$label":"ACTS_IN","name":"Magnavolt Salesman","type":"Role","_key":"37787","_from":"4471","_to":"25621"} +{"$label":"ACTS_IN","name":"Sheb Sheppard","type":"Role","_key":"37737","_from":"4471","_to":"25595"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"18422","_from":"4471","_to":"13655"} +{"$label":"ACTS_IN","name":"Daniel Clamp","type":"Role","_key":"11059","_from":"4471","_to":"8747"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"98926","_from":"4472","_to":"58287"} +{"$label":"ACTS_IN","name":"Eve Rustikoff","type":"Role","_key":"71108","_from":"4472","_to":"43169"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"67368","_from":"4472","_to":"41514"} +{"$label":"ACTS_IN","name":"Jack Starbright","type":"Role","_key":"58892","_from":"4472","_to":"37189"} +{"$label":"ACTS_IN","name":"Cher Horowitz","type":"Role","_key":"54966","_from":"4472","_to":"35134"} +{"$label":"ACTS_IN","name":"Sheila Rilo","type":"Role","_key":"32992","_from":"4472","_to":"22876"} +{"$label":"ACTS_IN","name":"Charon","type":"Role","_key":"5279","_from":"4481","_to":"4473"} +{"$label":"ACTS_IN","name":"Robby Gediner","type":"Role","_key":"5278","_from":"4480","_to":"4473"} +{"$label":"ACTS_IN","name":"Psychotherapeut","type":"Role","_key":"5277","_from":"4479","_to":"4473"} +{"$label":"ACTS_IN","name":"Kalypso","type":"Role","_key":"5276","_from":"4478","_to":"4473"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"5275","_from":"4477","_to":"4473"} +{"$label":"ACTS_IN","name":"Helena Stokowski","type":"Role","_key":"5273","_from":"4476","_to":"4473"} +{"$label":"ACTS_IN","name":"Venus Morgenstern","type":"Role","_key":"5271","_from":"4475","_to":"4473"} +{"$label":"DIRECTED","_key":"5269","_from":"4474","_to":"4473"} +{"$label":"DIRECTED","_key":"72479","_from":"4474","_to":"43734"} +{"$label":"DIRECTED","_key":"55230","_from":"4474","_to":"35234"} +{"$label":"DIRECTED","_key":"44016","_from":"4474","_to":"29357"} +{"$label":"ACTS_IN","name":"Tonya Gromyko Zhivago","type":"Role","_key":"118798","_from":"4475","_to":"69843"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"117634","_from":"4475","_to":"69149"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"52614","_from":"4475","_to":"34185"} +{"$label":"ACTS_IN","name":"Ilana","type":"Role","_key":"47907","_from":"4475","_to":"31517"} +{"$label":"ACTS_IN","name":"Veronica \/ Laura","type":"Role","_key":"47297","_from":"4475","_to":"31157"} +{"$label":"ACTS_IN","name":"Petra Schelm","type":"Role","_key":"45440","_from":"4475","_to":"30115"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"44884","_from":"4475","_to":"29855"} +{"$label":"ACTS_IN","name":"Annik Honor\u00e9","type":"Role","_key":"38773","_from":"4475","_to":"26197"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"36524","_from":"4475","_to":"24772"} +{"$label":"ACTS_IN","name":"Lotte Lohmann","type":"Role","_key":"28037","_from":"4475","_to":"20097"} +{"$label":"ACTS_IN","name":"Annette","type":"Role","_key":"15396","_from":"4475","_to":"11776"} +{"$label":"ACTS_IN","name":"Traudl Junge","type":"Role","_key":"7261","_from":"4475","_to":"6064"} +{"$label":"ACTS_IN","name":"Milas Mutter","type":"Role","_key":"71765","_from":"4476","_to":"43439"} +{"$label":"ACTS_IN","name":"Wutz","type":"Role","_key":"65959","_from":"4476","_to":"40802"} +{"$label":"ACTS_IN","name":"Frau Senator","type":"Role","_key":"46288","_from":"4476","_to":"30593"} +{"$label":"ACTS_IN","name":"Doris Dubinsky","type":"Role","_key":"46211","_from":"4476","_to":"30544"} +{"$label":"ACTS_IN","name":"Chefin","type":"Role","_key":"13121","_from":"4476","_to":"10231"} +{"$label":"ACTS_IN","name":"Baron von Otter","type":"Role","_key":"52262","_from":"4477","_to":"34027"} +{"$label":"ACTS_IN","name":"Thomas Weber","type":"Role","_key":"47174","_from":"4477","_to":"31101"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"45918","_from":"4477","_to":"30364"} +{"$label":"ACTS_IN","name":"Volker Sebald","type":"Role","_key":"42551","_from":"4477","_to":"28483"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"37297","_from":"4477","_to":"25274"} +{"$label":"ACTS_IN","name":"Siegfried H\u00fchnerberg","type":"Role","_key":"31468","_from":"4477","_to":"21972"} +{"$label":"ACTS_IN","name":"Sven Hansen","type":"Role","_key":"29156","_from":"4477","_to":"20765"} +{"$label":"ACTS_IN","name":"Bendix Gr\u00fcnlich","type":"Role","_key":"20470","_from":"4477","_to":"14974"} +{"$label":"ACTS_IN","name":"Preuss","type":"Role","_key":"20082","_from":"4477","_to":"14765"} +{"$label":"ACTS_IN","name":"General der Infanterie Wilhelm Burgdorf","type":"Role","_key":"7271","_from":"4477","_to":"6064"} +{"$label":"ACTS_IN","name":"Berus","type":"Role","_key":"6862","_from":"4477","_to":"5751"} +{"$label":"DIRECTED","_key":"29153","_from":"4477","_to":"20765"} +{"$label":"ACTS_IN","name":"Conrad 'Conny' Scheffer","type":"Role","_key":"72481","_from":"4479","_to":"43734"} +{"$label":"ACTS_IN","name":"Bischoff","type":"Role","_key":"71048","_from":"4479","_to":"43142"} +{"$label":"ACTS_IN","name":"Tilmann Dilling","type":"Role","_key":"100371","_from":"4480","_to":"59188"} +{"$label":"ACTS_IN","name":"Julius","type":"Role","_key":"71303","_from":"4480","_to":"43257"} +{"$label":"ACTS_IN","name":"Berater von William","type":"Role","_key":"56984","_from":"4480","_to":"36154"} +{"$label":"ACTS_IN","name":"Butler Alfons Hatler","type":"Role","_key":"46213","_from":"4480","_to":"30544"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"44887","_from":"4480","_to":"29855"} +{"$label":"ACTS_IN","name":"Therapeut","type":"Role","_key":"36534","_from":"4480","_to":"24772"} +{"$label":"ACTS_IN","name":"Alfons Hatler","type":"Role","_key":"12403","_from":"4480","_to":"9715"} +{"$label":"ACTS_IN","name":"Prof. Reinhold Radwanski","type":"Role","_key":"12337","_from":"4480","_to":"9662"} +{"$label":"DIRECTED","_key":"5295","_from":"4492","_to":"4483"} +{"$label":"ACTS_IN","name":"Anne-Marie Sakowitz","type":"Role","_key":"5294","_from":"4491","_to":"4483"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"5293","_from":"4490","_to":"4483"} +{"$label":"ACTS_IN","name":"Antonia Cook","type":"Role","_key":"5292","_from":"4489","_to":"4483"} +{"$label":"ACTS_IN","name":"Festival Director","type":"Role","_key":"5291","_from":"4488","_to":"4483"} +{"$label":"ACTS_IN","name":"Intern 1","type":"Role","_key":"5290","_from":"4487","_to":"4483"} +{"$label":"ACTS_IN","name":"Pel\u00e9 dos Santos","type":"Role","_key":"5289","_from":"4486","_to":"4483"} +{"$label":"ACTS_IN","name":"Oseary Drakoulias","type":"Role","_key":"5286","_from":"4485","_to":"4483"} +{"$label":"ACTS_IN","name":"Eleanor Zissou","type":"Role","_key":"5281","_from":"4484","_to":"4483"} +{"$label":"ACTS_IN","name":"The Supreme Leader","type":"Role","_key":"120203","_from":"4484","_to":"70592"} +{"$label":"ACTS_IN","name":"Lilly Dillon","type":"Role","_key":"114991","_from":"4484","_to":"67722"} +{"$label":"ACTS_IN","name":"Agnes Browne","type":"Role","_key":"104749","_from":"4484","_to":"61625"} +{"$label":"ACTS_IN","name":"Vivianne","type":"Role","_key":"102803","_from":"4484","_to":"60475"} +{"$label":"ACTS_IN","name":"Ida J. Mancini","type":"Role","_key":"97908","_from":"4484","_to":"57666"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"94714","_from":"4484","_to":"55790"} +{"$label":"ACTS_IN","name":"Madame Louise","type":"Role","_key":"93582","_from":"4484","_to":"55109"} +{"$label":"ACTS_IN","name":"Queen Clarion","type":"Role","_key":"93211","_from":"4484","_to":"54917"} +{"$label":"ACTS_IN","name":"Clara Allen","type":"Role","_key":"92241","_from":"4484","_to":"54426"} +{"$label":"ACTS_IN","name":"Queen of the Selenites (voice: English version)","type":"Role","_key":"70759","_from":"4484","_to":"43031"} +{"$label":"ACTS_IN","name":"Dolores Paley","type":"Role","_key":"70680","_from":"4484","_to":"43000"} +{"$label":"ACTS_IN","name":"Polly Deutsch","type":"Role","_key":"67442","_from":"4484","_to":"41533"} +{"$label":"ACTS_IN","name":"Madge","type":"Role","_key":"67386","_from":"4484","_to":"41519"} +{"$label":"ACTS_IN","name":"Marcia Fox","type":"Role","_key":"63374","_from":"4484","_to":"39712"} +{"$label":"ACTS_IN","name":"Maida","type":"Role","_key":"61463","_from":"4484","_to":"38771"} +{"$label":"ACTS_IN","name":"Miss Eva Ernst","type":"Role","_key":"61365","_from":"4484","_to":"38721"} +{"$label":"ACTS_IN","name":"Fabiella","type":"Role","_key":"60945","_from":"4484","_to":"38506"} +{"$label":"ACTS_IN","name":"Art History Teacher","type":"Role","_key":"56777","_from":"4484","_to":"36060"} +{"$label":"ACTS_IN","name":"Dr. Bonnie Fox","type":"Role","_key":"54783","_from":"4484","_to":"35055"} +{"$label":"ACTS_IN","name":"Baroness Rodmilla De Ghent","type":"Role","_key":"53966","_from":"4484","_to":"34718"} +{"$label":"ACTS_IN","name":"Etheline Tenenbaum","type":"Role","_key":"53792","_from":"4484","_to":"34665"} +{"$label":"ACTS_IN","name":"Mimi","type":"Role","_key":"36030","_from":"4484","_to":"24460"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"32438","_from":"4484","_to":"22567"} +{"$label":"ACTS_IN","name":"Morticia Addams","type":"Role","_key":"24226","_from":"4484","_to":"17551"} +{"$label":"ACTS_IN","name":"Dr. Betsy Reisz","type":"Role","_key":"24068","_from":"4484","_to":"17452"} +{"$label":"ACTS_IN","name":"Morticia Addams","type":"Role","_key":"23319","_from":"4484","_to":"16901"} +{"$label":"ACTS_IN","name":"Maerose Prizzi","type":"Role","_key":"18041","_from":"4484","_to":"13405"} +{"$label":"ACTS_IN","name":"Woman on Pier","type":"Role","_key":"6185","_from":"4484","_to":"5224"} +{"$label":"DIRECTED","_key":"104764","_from":"4484","_to":"61625"} +{"$label":"ACTS_IN","name":"Jimmie Langton","type":"Role","_key":"117165","_from":"4485","_to":"68932"} +{"$label":"ACTS_IN","name":"Cornell","type":"Role","_key":"116981","_from":"4485","_to":"68856"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"101045","_from":"4485","_to":"59545"} +{"$label":"ACTS_IN","name":"Alan Weigert","type":"Role","_key":"94867","_from":"4485","_to":"55857"} +{"$label":"ACTS_IN","name":"Lord Marchmain","type":"Role","_key":"90323","_from":"4485","_to":"53388"} +{"$label":"ACTS_IN","name":"Albus Bumbledore","type":"Role","_key":"89545","_from":"4485","_to":"52997"} +{"$label":"ACTS_IN","name":"Albus Dumbledore","type":"Role","_key":"89508","_from":"4485","_to":"52992"} +{"$label":"ACTS_IN","name":"Lt. General Leland Zevo","type":"Role","_key":"70971","_from":"4485","_to":"43106"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"67332","_from":"4485","_to":"41501"} +{"$label":"ACTS_IN","name":"Franklin Bean (voice)","type":"Role","_key":"62558","_from":"4485","_to":"39370"} +{"$label":"ACTS_IN","name":"Kerrigan","type":"Role","_key":"59725","_from":"4485","_to":"37714"} +{"$label":"ACTS_IN","name":"Marys Vater","type":"Role","_key":"52526","_from":"4485","_to":"34153"} +{"$label":"ACTS_IN","name":"Albert Spica","type":"Role","_key":"46710","_from":"4485","_to":"30833"} +{"$label":"ACTS_IN","name":"Father Jack Mundy","type":"Role","_key":"37041","_from":"4485","_to":"25107"} +{"$label":"ACTS_IN","name":"William McCordle","type":"Role","_key":"36865","_from":"4485","_to":"24998"} +{"$label":"ACTS_IN","name":"Paley","type":"Role","_key":"36060","_from":"4485","_to":"24480"} +{"$label":"ACTS_IN","name":"Eddie Temple","type":"Role","_key":"34328","_from":"4485","_to":"23533"} +{"$label":"ACTS_IN","name":"Baltus Van Tassel","type":"Role","_key":"22614","_from":"4485","_to":"16413"} +{"$label":"ACTS_IN","name":"Denton Baxter","type":"Role","_key":"17859","_from":"4485","_to":"13300"} +{"$label":"ACTS_IN","name":"Dr. Fredericks","type":"Role","_key":"12207","_from":"4485","_to":"9562"} +{"$label":"ACTS_IN","name":"Bugenhagen","type":"Role","_key":"9500","_from":"4485","_to":"7661"} +{"$label":"ACTS_IN","name":"Professor Albus Dumbledore","type":"Role","_key":"9001","_from":"4485","_to":"7294"} +{"$label":"ACTS_IN","name":"Albus Dumbledore","type":"Role","_key":"8105","_from":"4485","_to":"6687"} +{"$label":"ACTS_IN","name":"Albus Dumbledore","type":"Role","_key":"8084","_from":"4485","_to":"6682"} +{"$label":"ACTS_IN","name":"Professor Dumbledore","type":"Role","_key":"8066","_from":"4485","_to":"6676"} +{"$label":"ACTS_IN","name":"Viv Batista","type":"Role","_key":"102076","_from":"4486","_to":"60052"} +{"$label":"ACTS_IN","name":"Man\u00e9 Galinha","type":"Role","_key":"7218","_from":"4486","_to":"6020"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"121482","_from":"4487","_to":"71361"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"43600","_from":"4487","_to":"29119"} +{"$label":"ACTS_IN","name":"Alvin","type":"Role","_key":"121173","_from":"4490","_to":"71181"} +{"$label":"ACTS_IN","name":"Tony 'Mouth' Donato","type":"Role","_key":"118930","_from":"4490","_to":"69895"} +{"$label":"ACTS_IN","name":"Dirt","type":"Role","_key":"98677","_from":"4490","_to":"58151"} +{"$label":"ACTS_IN","name":"Uncle Jack","type":"Role","_key":"91430","_from":"4490","_to":"53926"} +{"$label":"ACTS_IN","name":"Tony Cataracts","type":"Role","_key":"90015","_from":"4490","_to":"53250"} +{"$label":"ACTS_IN","name":"Skunker","type":"Role","_key":"88836","_from":"4490","_to":"52638"} +{"$label":"ACTS_IN","name":"Boyd Fullbright","type":"Role","_key":"88537","_from":"4490","_to":"52472"} +{"$label":"ACTS_IN","name":"Bert Fischer","type":"Role","_key":"70549","_from":"4490","_to":"42932"} +{"$label":"ACTS_IN","name":"Lt. Seeman","type":"Role","_key":"56827","_from":"4490","_to":"36088"} +{"$label":"ACTS_IN","name":"Governer Jerry Haskins","type":"Role","_key":"54842","_from":"4490","_to":"35082"} +{"$label":"ACTS_IN","name":"Sam Catchem","type":"Role","_key":"50243","_from":"4490","_to":"32833"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"46368","_from":"4490","_to":"30637"} +{"$label":"ACTS_IN","name":"Mr. Shackleford","type":"Role","_key":"31992","_from":"4490","_to":"22300"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"23092","_from":"4490","_to":"16741"} +{"$label":"ACTS_IN","name":"Morty O'Reilly","type":"Role","_key":"15567","_from":"4490","_to":"11881"} +{"$label":"ACTS_IN","name":"Chet","type":"Role","_key":"8843","_from":"4490","_to":"7183"} +{"$label":"DIRECTED","_key":"70089","_from":"4491","_to":"42734"} +{"$label":"DIRECTED","_key":"68670","_from":"4491","_to":"42086"} +{"$label":"DIRECTED","_key":"63186","_from":"4491","_to":"39629"} +{"$label":"DIRECTED","_key":"59903","_from":"4491","_to":"37824"} +{"$label":"DIRECTED","_key":"56938","_from":"4491","_to":"36141"} +{"$label":"DIRECTED","_key":"51002","_from":"4491","_to":"33290"} +{"$label":"DIRECTED","_key":"46699","_from":"4491","_to":"30829"} +{"$label":"DIRECTED","_key":"39088","_from":"4491","_to":"26426"} +{"$label":"DIRECTED","_key":"15342","_from":"4491","_to":"11730"} +{"$label":"DIRECTED","_key":"95873","_from":"4492","_to":"56383"} +{"$label":"DIRECTED","_key":"70545","_from":"4492","_to":"42932"} +{"$label":"DIRECTED","_key":"62552","_from":"4492","_to":"39370"} +{"$label":"DIRECTED","_key":"53790","_from":"4492","_to":"34665"} +{"$label":"DIRECTED","_key":"43369","_from":"4492","_to":"28978"} +{"$label":"DIRECTED","_key":"32433","_from":"4492","_to":"22567"} +{"$label":"ACTS_IN","name":"Pace, il produttore","type":"Role","_key":"5305","_from":"4501","_to":"4493"} +{"$label":"ACTS_IN","name":"La Saraghina","type":"Role","_key":"5304","_from":"4500","_to":"4493"} +{"$label":"ACTS_IN","name":"La signora misteriosa","type":"Role","_key":"5303","_from":"4499","_to":"4493"} +{"$label":"ACTS_IN","name":"Gloria Morin","type":"Role","_key":"5301","_from":"4498","_to":"4493"} +{"$label":"ACTS_IN","name":"Rossella","type":"Role","_key":"5300","_from":"4497","_to":"4493"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"5299","_from":"4496","_to":"4493"} +{"$label":"ACTS_IN","name":"Luisa Anselmi","type":"Role","_key":"5298","_from":"4495","_to":"4493"} +{"$label":"ACTS_IN","name":"Guido Anselmi","type":"Role","_key":"5296","_from":"4494","_to":"4493"} +{"$label":"ACTS_IN","name":"Sn\u00e0poraz","type":"Role","_key":"72842","_from":"4494","_to":"43875"} +{"$label":"ACTS_IN","name":"Marcello","type":"Role","_key":"60715","_from":"4494","_to":"38342"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31659","_from":"4494","_to":"22091"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"28138","_from":"4494","_to":"20177"} +{"$label":"ACTS_IN","name":"Major Andrea Rossi-Colombotti","type":"Role","_key":"27556","_from":"4494","_to":"19767"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"16100","_from":"4494","_to":"12233"} +{"$label":"ACTS_IN","name":"Marcello Rubini","type":"Role","_key":"5518","_from":"4494","_to":"4704"} +{"$label":"ACTS_IN","name":"Simone Lowenthal","type":"Role","_key":"28144","_from":"4495","_to":"20177"} +{"$label":"ACTS_IN","name":"Maddalena","type":"Role","_key":"5520","_from":"4495","_to":"4704"} +{"$label":"ACTS_IN","name":"Suzy \/ Iris \/ Fanny","type":"Role","_key":"118787","_from":"4496","_to":"69840"} +{"$label":"ACTS_IN","name":"Elena Marchi","type":"Role","_key":"28619","_from":"4497","_to":"20452"} +{"$label":"ACTS_IN","name":"himsekf","type":"Role","_key":"38520","_from":"4498","_to":"26023"} +{"$label":"ACTS_IN","name":"Signora Castelli","type":"Role","_key":"37099","_from":"4499","_to":"25127"} +{"$label":"ACTS_IN","name":"Anna Fassbender","type":"Role","_key":"28444","_from":"4500","_to":"20343"} +{"$label":"ACTS_IN","name":"le patron d'imprimerie","type":"Role","_key":"33338","_from":"4501","_to":"23092"} +{"$label":"ACTS_IN","name":"Director de la prisi\u00f3n","type":"Role","_key":"32152","_from":"4501","_to":"22408"} +{"$label":"ACTS_IN","name":"Monsignore","type":"Role","_key":"27562","_from":"4501","_to":"19767"} +{"$label":"ACTS_IN","name":"Il monsignore","type":"Role","_key":"27100","_from":"4501","_to":"19509"} +{"$label":"ACTS_IN","name":"Marek G\u0119bczy\u0144ski","type":"Role","_key":"5321","_from":"4516","_to":"4502"} +{"$label":"ACTS_IN","name":"SS Officer","type":"Role","_key":"5320","_from":"4515","_to":"4502"} +{"$label":"ACTS_IN","name":"Feather Woman","type":"Role","_key":"5319","_from":"4514","_to":"4502"} +{"$label":"ACTS_IN","name":"Mr. Lipa","type":"Role","_key":"5318","_from":"4513","_to":"4502"} +{"$label":"ACTS_IN","name":"SS Slapping Father","type":"Role","_key":"5317","_from":"4512","_to":"4502"} +{"$label":"ACTS_IN","name":"Jurek","type":"Role","_key":"5316","_from":"4511","_to":"4502"} +{"$label":"ACTS_IN","name":"Halina","type":"Role","_key":"5315","_from":"4510","_to":"4502"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"5314","_from":"4509","_to":"4502"} +{"$label":"ACTS_IN","name":"Henryk","type":"Role","_key":"5313","_from":"4508","_to":"4502"} +{"$label":"ACTS_IN","name":"Dorota","type":"Role","_key":"5312","_from":"4507","_to":"4502"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"5311","_from":"4506","_to":"4502"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"5310","_from":"4505","_to":"4502"} +{"$label":"ACTS_IN","name":"Captain Wilm Hosenfeld","type":"Role","_key":"5309","_from":"4504","_to":"4502"} +{"$label":"ACTS_IN","name":"Wladyslaw Szpilman","type":"Role","_key":"5308","_from":"4503","_to":"4502"} +{"$label":"ACTS_IN","name":"Count Nicolas De La Motte","type":"Role","_key":"118615","_from":"4503","_to":"69747"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"116665","_from":"4503","_to":"68677"} +{"$label":"ACTS_IN","name":"Steven Schoichet","type":"Role","_key":"114310","_from":"4503","_to":"67334"} +{"$label":"ACTS_IN","name":"Ruby Stein","type":"Role","_key":"100473","_from":"4503","_to":"59242"} +{"$label":"ACTS_IN","name":"Leonard Chess","type":"Role","_key":"99515","_from":"4503","_to":"58668"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"62347","_from":"4503","_to":"39281"} +{"$label":"ACTS_IN","name":"Jack Starks","type":"Role","_key":"55418","_from":"4503","_to":"35328"} +{"$label":"ACTS_IN","name":"Cpl. Fife","type":"Role","_key":"50630","_from":"4503","_to":"33066"} +{"$label":"ACTS_IN","name":"Noah Percy","type":"Role","_key":"45238","_from":"4503","_to":"30028"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"32436","_from":"4503","_to":"22567"} +{"$label":"ACTS_IN","name":"Louis Simo","type":"Role","_key":"12218","_from":"4503","_to":"9571"} +{"$label":"ACTS_IN","name":"Major Thomas Bietrich","type":"Role","_key":"117533","_from":"4504","_to":"69106"} +{"$label":"ACTS_IN","name":"Adolf Eichmann","type":"Role","_key":"101442","_from":"4504","_to":"59717"} +{"$label":"ACTS_IN","name":"Lt. Hans von Witzland","type":"Role","_key":"67884","_from":"4504","_to":"41712"} +{"$label":"ACTS_IN","name":"Oliver Hartwin","type":"Role","_key":"55207","_from":"4504","_to":"35221"} +{"$label":"ACTS_IN","name":"Thomas Kretschmann","type":"Role","_key":"54354","_from":"4504","_to":"34869"} +{"$label":"ACTS_IN","name":"Cross","type":"Role","_key":"51425","_from":"4504","_to":"33548"} +{"$label":"ACTS_IN","name":"Myassa","type":"Role","_key":"44643","_from":"4504","_to":"29706"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"43375","_from":"4504","_to":"28980"} +{"$label":"ACTS_IN","name":"Thagnar","type":"Role","_key":"42759","_from":"4504","_to":"28616"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40633","_from":"4504","_to":"27360"} +{"$label":"ACTS_IN","name":"Alcide Nikopol","type":"Role","_key":"37821","_from":"4504","_to":"25637"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"37112","_from":"4504","_to":"25144"} +{"$label":"ACTS_IN","name":"Aron","type":"Role","_key":"29555","_from":"4504","_to":"20938"} +{"$label":"ACTS_IN","name":"Capt. Lt. Gunther Wassner","type":"Role","_key":"27683","_from":"4504","_to":"19835"} +{"$label":"ACTS_IN","name":"Victor Helios","type":"Role","_key":"25298","_from":"4504","_to":"18235"} +{"$label":"ACTS_IN","name":"K\u00f6nig Xerxes","type":"Role","_key":"22827","_from":"4504","_to":"16558"} +{"$label":"ACTS_IN","name":"Otto Ernst Remer","type":"Role","_key":"19703","_from":"4504","_to":"14564"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"15367","_from":"4504","_to":"11754"} +{"$label":"ACTS_IN","name":"Major Cain","type":"Role","_key":"13954","_from":"4504","_to":"10820"} +{"$label":"ACTS_IN","name":"SS-Gruppenf\u00fchrer Hermann Fegelein","type":"Role","_key":"7267","_from":"4504","_to":"6064"} +{"$label":"ACTS_IN","name":"Dr. Hans Fallada","type":"Role","_key":"72960","_from":"4505","_to":"43920"} +{"$label":"ACTS_IN","name":"Supt. Weaver","type":"Role","_key":"70766","_from":"4505","_to":"43034"} +{"$label":"ACTS_IN","name":"Fr. Geoghagen","type":"Role","_key":"45678","_from":"4505","_to":"30229"} +{"$label":"ACTS_IN","name":"Canarsky","type":"Role","_key":"33039","_from":"4505","_to":"22898"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"27907","_from":"4505","_to":"20003"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"24343","_from":"4505","_to":"17626"} +{"$label":"ACTS_IN","name":"Vincent Amafi","type":"Role","_key":"6020","_from":"4505","_to":"5106"} +{"$label":"ACTS_IN","name":"Countess Esmeralda","type":"Role","_key":"121020","_from":"4506","_to":"71078"} +{"$label":"ACTS_IN","name":"Cassandra, Princess of Troy","type":"Role","_key":"119770","_from":"4507","_to":"70330"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"98950","_from":"4507","_to":"58293"} +{"$label":"ACTS_IN","name":"Sister Jean","type":"Role","_key":"96717","_from":"4507","_to":"56883"} +{"$label":"ACTS_IN","name":"Sharon Pintey","type":"Role","_key":"88814","_from":"4507","_to":"52622"} +{"$label":"ACTS_IN","name":"Nancy Browning","type":"Role","_key":"66171","_from":"4507","_to":"40934"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"116817","_from":"4508","_to":"68771"} +{"$label":"ACTS_IN","name":"Ferrari's Alter Ego","type":"Role","_key":"104572","_from":"4508","_to":"61510"} +{"$label":"ACTS_IN","name":"Bridey Flyte","type":"Role","_key":"90324","_from":"4508","_to":"53388"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"60386","_from":"4508","_to":"38093"} +{"$label":"ACTS_IN","name":"Tadeusz Soplica","type":"Role","_key":"35196","_from":"4511","_to":"23983"} +{"$label":"ACTS_IN","name":"Janeck Hausmann","type":"Role","_key":"47175","_from":"4512","_to":"31101"} +{"$label":"ACTS_IN","name":"Joachim","type":"Role","_key":"39658","_from":"4512","_to":"26800"} +{"$label":"ACTS_IN","name":"Sprenger","type":"Role","_key":"25187","_from":"4512","_to":"18179"} +{"$label":"ACTS_IN","name":"Bunst","type":"Role","_key":"31751","_from":"4513","_to":"22160"} +{"$label":"ACTS_IN","name":"Ivan Nevski","type":"Role","_key":"21002","_from":"4516","_to":"15363"} +{"$label":"ACTS_IN","name":"Rabbi Menasha Lewartow","type":"Role","_key":"5348","_from":"4539","_to":"4517"} +{"$label":"ACTS_IN","name":"Leo Rosner","type":"Role","_key":"5347","_from":"4538","_to":"4517"} +{"$label":"ACTS_IN","name":"Manci Rosner","type":"Role","_key":"5346","_from":"4537","_to":"4517"} +{"$label":"ACTS_IN","name":"Henry Rosner","type":"Role","_key":"5345","_from":"4536","_to":"4517"} +{"$label":"ACTS_IN","name":"Mrs. Nussbaum","type":"Role","_key":"5344","_from":"4535","_to":"4517"} +{"$label":"ACTS_IN","name":"Mr. Nussbaum","type":"Role","_key":"5343","_from":"4534","_to":"4517"} +{"$label":"ACTS_IN","name":"Mordecai Wulkan","type":"Role","_key":"5342","_from":"4533","_to":"4517"} +{"$label":"ACTS_IN","name":"Danka Dresner","type":"Role","_key":"5341","_from":"4532","_to":"4517"} +{"$label":"ACTS_IN","name":"Chaja Dresner","type":"Role","_key":"5340","_from":"4531","_to":"4517"} +{"$label":"ACTS_IN","name":"Juda Dresner","type":"Role","_key":"5339","_from":"4530","_to":"4517"} +{"$label":"ACTS_IN","name":"Mila Pfefferberg","type":"Role","_key":"5338","_from":"4529","_to":"4517"} +{"$label":"ACTS_IN","name":"Albert Hujar","type":"Role","_key":"5337","_from":"4528","_to":"4517"} +{"$label":"ACTS_IN","name":"Leo John","type":"Role","_key":"5336","_from":"4527","_to":"4517"} +{"$label":"ACTS_IN","name":"Herman Toffel","type":"Role","_key":"5335","_from":"4526","_to":"4517"} +{"$label":"ACTS_IN","name":"Rolf Czurda","type":"Role","_key":"5334","_from":"4525","_to":"4517"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"5332","_from":"4524","_to":"4517"} +{"$label":"ACTS_IN","name":"Marcel Goldberg","type":"Role","_key":"5331","_from":"4523","_to":"4517"} +{"$label":"ACTS_IN","name":"Wilek Chilowicz","type":"Role","_key":"5330","_from":"4522","_to":"4517"} +{"$label":"ACTS_IN","name":"Victoria Klonowska","type":"Role","_key":"5329","_from":"4521","_to":"4517"} +{"$label":"ACTS_IN","name":"Helen Hirsch","type":"Role","_key":"5328","_from":"4520","_to":"4517"} +{"$label":"ACTS_IN","name":"Poldek Pfefferberg","type":"Role","_key":"5327","_from":"4519","_to":"4517"} +{"$label":"ACTS_IN","name":"Emilie Schindler","type":"Role","_key":"5326","_from":"4518","_to":"4517"} +{"$label":"ACTS_IN","name":"Igraine","type":"Role","_key":"102807","_from":"4518","_to":"60475"} +{"$label":"ACTS_IN","name":"Mrs. Parker","type":"Role","_key":"97486","_from":"4518","_to":"57409"} +{"$label":"ACTS_IN","name":"Dr. Alice Sheldon","type":"Role","_key":"63904","_from":"4518","_to":"39924"} +{"$label":"ACTS_IN","name":"Ms. Claire","type":"Role","_key":"57263","_from":"4518","_to":"36317"} +{"$label":"ACTS_IN","name":"Moira Banning","type":"Role","_key":"10455","_from":"4518","_to":"8318"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"90440","_from":"4519","_to":"53431"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"64249","_from":"4519","_to":"40074"} +{"$label":"ACTS_IN","name":"Momo \/ Bobbie","type":"Role","_key":"64242","_from":"4519","_to":"40071"} +{"$label":"ACTS_IN","name":"Bobby \/ Momo","type":"Role","_key":"64234","_from":"4519","_to":"40068"} +{"$label":"ACTS_IN","name":"Momo \/ Bobby","type":"Role","_key":"64230","_from":"4519","_to":"40064"} +{"$label":"ACTS_IN","name":"Momo \/ Bobbie","type":"Role","_key":"64222","_from":"4519","_to":"40060"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"111470","_from":"4520","_to":"65815"} +{"$label":"ACTS_IN","name":"Lydia Jaspersen","type":"Role","_key":"106789","_from":"4520","_to":"62951"} +{"$label":"ACTS_IN","name":"Mallory Doss","type":"Role","_key":"89808","_from":"4520","_to":"53150"} +{"$label":"ACTS_IN","name":"Miss Jennifer \"Jenny\" Honey","type":"Role","_key":"66037","_from":"4520","_to":"40870"} +{"$label":"ACTS_IN","name":"Mary Crawford","type":"Role","_key":"63006","_from":"4520","_to":"39550"} +{"$label":"ACTS_IN","name":"Kalina Oretzia","type":"Role","_key":"53457","_from":"4520","_to":"34533"} +{"$label":"ACTS_IN","name":"Mary McCasslin","type":"Role","_key":"49768","_from":"4520","_to":"32563"} +{"$label":"ACTS_IN","name":"Jennifer Crawford","type":"Role","_key":"41944","_from":"4520","_to":"28107"} +{"$label":"ACTS_IN","name":"Little Miss","type":"Role","_key":"19982","_from":"4520","_to":"14709"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"13375","_from":"4520","_to":"10412"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"8984","_from":"4520","_to":"7287"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"7552","_from":"4520","_to":"6278"} +{"$label":"ACTS_IN","name":"Dr. Philippa Horwood","type":"Role","_key":"5803","_from":"4520","_to":"4933"} +{"$label":"ACTS_IN","name":"Afgar Outpost Soldier","type":"Role","_key":"113238","_from":"4523","_to":"66717"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"37122","_from":"4523","_to":"25148"} +{"$label":"ACTS_IN","name":"Gersteins Vater","type":"Role","_key":"52256","_from":"4525","_to":"34027"} +{"$label":"ACTS_IN","name":"Dr. Fehse","type":"Role","_key":"43466","_from":"4525","_to":"29036"} +{"$label":"ACTS_IN","name":"Raynor","type":"Role","_key":"41507","_from":"4525","_to":"27881"} +{"$label":"ACTS_IN","name":"Nick Winter","type":"Role","_key":"39675","_from":"4525","_to":"26810"} +{"$label":"ACTS_IN","name":"General Erich Ludendorff","type":"Role","_key":"21770","_from":"4525","_to":"15899"} +{"$label":"ACTS_IN","name":"The Head","type":"Role","_key":"111238","_from":"4528","_to":"65690"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"104740","_from":"4528","_to":"61613"} +{"$label":"ACTS_IN","name":"Alaskan surveyor","type":"Role","_key":"98025","_from":"4528","_to":"57719"} +{"$label":"ACTS_IN","name":"Scientist 1","type":"Role","_key":"94514","_from":"4528","_to":"55655"} +{"$label":"ACTS_IN","name":"German's Friend","type":"Role","_key":"49477","_from":"4528","_to":"32393"} +{"$label":"ACTS_IN","name":"Nili","type":"Role","_key":"43226","_from":"4531","_to":"28864"} +{"$label":"DIRECTED","_key":"35075","_from":"4534","_to":"23921"} +{"$label":"ACTS_IN","name":"Roman Mirga","type":"Role","_key":"16083","_from":"4538","_to":"12216"} +{"$label":"ACTS_IN","name":"Soto","type":"Role","_key":"5354","_from":"4545","_to":"4540"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"5352","_from":"4544","_to":"4540"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"5351","_from":"4543","_to":"4540"} +{"$label":"DIRECTED","_key":"5350","_from":"4542","_to":"4540"} +{"$label":"DIRECTED","_key":"5349","_from":"4541","_to":"4540"} +{"$label":"ACTS_IN","name":"Scrat (voice)","type":"Role","_key":"114483","_from":"4541","_to":"67438"} +{"$label":"ACTS_IN","name":"Scrat","type":"Role","_key":"94247","_from":"4541","_to":"55505"} +{"$label":"DIRECTED","_key":"58220","_from":"4541","_to":"36829"} +{"$label":"DIRECTED","_key":"58221","_from":"4542","_to":"36829"} +{"$label":"DIRECTED","_key":"49267","_from":"4542","_to":"32270"} +{"$label":"DIRECTED","_key":"11346","_from":"4542","_to":"8941"} +{"$label":"ACTS_IN","name":"Harold 'Handy' Harrison","type":"Role","_key":"110070","_from":"4543","_to":"65043"} +{"$label":"ACTS_IN","name":"Skip Collins","type":"Role","_key":"108881","_from":"4543","_to":"64347"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"71648","_from":"4543","_to":"43385"} +{"$label":"ACTS_IN","name":"Manny (voice)","type":"Role","_key":"49268","_from":"4543","_to":"32270"} +{"$label":"ACTS_IN","name":"Manny (voice)","type":"Role","_key":"11337","_from":"4543","_to":"8941"} +{"$label":"ACTS_IN","name":"Freek","type":"Role","_key":"116426","_from":"4544","_to":"68531"} +{"$label":"ACTS_IN","name":"Felix De La Pena","type":"Role","_key":"114783","_from":"4544","_to":"67613"} +{"$label":"ACTS_IN","name":"Pestario 'Pest' Vargas","type":"Role","_key":"114437","_from":"4544","_to":"67413"} +{"$label":"ACTS_IN","name":"TC","type":"Role","_key":"102595","_from":"4544","_to":"60363"} +{"$label":"ACTS_IN","name":"Berger","type":"Role","_key":"98230","_from":"4544","_to":"57867"} +{"$label":"ACTS_IN","name":"Detective Simon Perez","type":"Role","_key":"94255","_from":"4544","_to":"55507"} +{"$label":"ACTS_IN","name":"Victor Rosa","type":"Role","_key":"94129","_from":"4544","_to":"55435"} +{"$label":"ACTS_IN","name":"Michael Beltran","type":"Role","_key":"92341","_from":"4544","_to":"54499"} +{"$label":"ACTS_IN","name":"Enrico","type":"Role","_key":"89357","_from":"4544","_to":"52887"} +{"$label":"ACTS_IN","name":"Spider Mike","type":"Role","_key":"87927","_from":"4544","_to":"52214"} +{"$label":"ACTS_IN","name":"Cholo","type":"Role","_key":"71540","_from":"4544","_to":"43346"} +{"$label":"ACTS_IN","name":"Clown","type":"Role","_key":"62659","_from":"4544","_to":"39413"} +{"$label":"ACTS_IN","name":"Vinny","type":"Role","_key":"62346","_from":"4544","_to":"39281"} +{"$label":"ACTS_IN","name":"Private Antonio Diaz","type":"Role","_key":"61213","_from":"4544","_to":"38667"} +{"$label":"ACTS_IN","name":"Felix Ramirez","type":"Role","_key":"57599","_from":"4544","_to":"36473"} +{"$label":"ACTS_IN","name":"Luigi Mario","type":"Role","_key":"54992","_from":"4544","_to":"35146"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"54737","_from":"4544","_to":"35035"} +{"$label":"ACTS_IN","name":"Chi-Chi Rodriguez","type":"Role","_key":"52500","_from":"4544","_to":"34147"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"51805","_from":"4544","_to":"33802"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"50292","_from":"4544","_to":"32858"} +{"$label":"ACTS_IN","name":"Sid (voice)","type":"Role","_key":"49269","_from":"4544","_to":"32270"} +{"$label":"ACTS_IN","name":"Gune","type":"Role","_key":"46694","_from":"4544","_to":"30828"} +{"$label":"ACTS_IN","name":"Lorenzo Daza","type":"Role","_key":"44510","_from":"4544","_to":"29642"} +{"$label":"ACTS_IN","name":"Benny Blanco","type":"Role","_key":"41513","_from":"4544","_to":"27891"} +{"$label":"ACTS_IN","name":"Captain Rat","type":"Role","_key":"20381","_from":"4544","_to":"14930"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"20264","_from":"4544","_to":"14861"} +{"$label":"ACTS_IN","name":"Sid (voice)","type":"Role","_key":"11338","_from":"4544","_to":"8941"} +{"$label":"ACTS_IN","name":"Henri de Toulouse-Lautrec","type":"Role","_key":"9728","_from":"4544","_to":"7809"} +{"$label":"ACTS_IN","name":"Tybalt","type":"Role","_key":"5664","_from":"4544","_to":"4828"} +{"$label":"ACTS_IN","name":"Risto Bavic","type":"Role","_key":"102413","_from":"4545","_to":"60262"} +{"$label":"ACTS_IN","name":"Mark Miller","type":"Role","_key":"58347","_from":"4545","_to":"36877"} +{"$label":"ACTS_IN","name":"Jimmy Angelov","type":"Role","_key":"43387","_from":"4545","_to":"28988"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"15315","_from":"4545","_to":"11716"} +{"$label":"ACTS_IN","name":"Car owner mistaken for Madeleine","type":"Role","_key":"5364","_from":"4554","_to":"4546"} +{"$label":"ACTS_IN","name":"Pop Leibel","type":"Role","_key":"5363","_from":"4553","_to":"4546"} +{"$label":"ACTS_IN","name":"Manager of McKittrick Hotel","type":"Role","_key":"5362","_from":"4552","_to":"4546"} +{"$label":"ACTS_IN","name":"Scottie's doctor","type":"Role","_key":"5361","_from":"4551","_to":"4546"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"5360","_from":"4550","_to":"4546"} +{"$label":"ACTS_IN","name":"Gavin Elster","type":"Role","_key":"5359","_from":"4549","_to":"4546"} +{"$label":"ACTS_IN","name":"Marjorie 'Midge' Wood","type":"Role","_key":"5358","_from":"4548","_to":"4546"} +{"$label":"ACTS_IN","name":"Madeleine Elster\/Judy Barton","type":"Role","_key":"5357","_from":"4547","_to":"4546"} +{"$label":"ACTS_IN","name":"Lola Brewster","type":"Role","_key":"41326","_from":"4547","_to":"27781"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"34118","_from":"4547","_to":"23436"} +{"$label":"ACTS_IN","name":"Gil Holroyd","type":"Role","_key":"17424","_from":"4547","_to":"13027"} +{"$label":"ACTS_IN","name":"Herself \/ Madeleine Elster \/ Judy Burton (archive footage)","type":"Role","_key":"13840","_from":"4547","_to":"10738"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"6457","_from":"4547","_to":"5468"} +{"$label":"ACTS_IN","name":"Wila Stutsman","type":"Role","_key":"113602","_from":"4548","_to":"66951"} +{"$label":"ACTS_IN","name":"Anthony Bridewell","type":"Role","_key":"18564","_from":"4549","_to":"13733"} +{"$label":"ACTS_IN","name":"Ez","type":"Role","_key":"115676","_from":"4550","_to":"68096"} +{"$label":"ACTS_IN","name":"Sims","type":"Role","_key":"114999","_from":"4550","_to":"67722"} +{"$label":"ACTS_IN","name":"Henry Jackson","type":"Role","_key":"70775","_from":"4550","_to":"43036"} +{"$label":"ACTS_IN","name":"Bike Salesman","type":"Role","_key":"7678","_from":"4550","_to":"6376"} +{"$label":"ACTS_IN","name":"Mrs. Devlin","type":"Role","_key":"112153","_from":"4552","_to":"66231"} +{"$label":"ACTS_IN","name":"Miss McCardie","type":"Role","_key":"44355","_from":"4552","_to":"29551"} +{"$label":"ACTS_IN","name":"Hazel Squires","type":"Role","_key":"34996","_from":"4552","_to":"23888"} +{"$label":"ACTS_IN","name":"Liz Torrey","type":"Role","_key":"26030","_from":"4552","_to":"18705"} +{"$label":"ACTS_IN","name":"Doris Upson","type":"Role","_key":"108833","_from":"4554","_to":"64318"} +{"$label":"ACTS_IN","name":"Mrs. Maggie Biederhof","type":"Role","_key":"26837","_from":"4554","_to":"19283"} +{"$label":"ACTS_IN","name":"Effie Perine","type":"Role","_key":"11450","_from":"4554","_to":"9009"} +{"$label":"ACTS_IN","name":"Braces dealer","type":"Role","_key":"5376","_from":"4566","_to":"4555"} +{"$label":"ACTS_IN","name":"Gerald Arpel","type":"Role","_key":"5375","_from":"4565","_to":"4555"} +{"$label":"ACTS_IN","name":"Madame Pichard","type":"Role","_key":"5374","_from":"4564","_to":"4555"} +{"$label":"ACTS_IN","name":"Georgette","type":"Role","_key":"5373","_from":"4563","_to":"4555"} +{"$label":"ACTS_IN","name":"Voison","type":"Role","_key":"5372","_from":"4562","_to":"4555"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"5371","_from":"4561","_to":"4555"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"5370","_from":"4560","_to":"4555"} +{"$label":"ACTS_IN","name":"Monsieur Pichard","type":"Role","_key":"5369","_from":"4559","_to":"4555"} +{"$label":"ACTS_IN","name":"Madame Arpel","type":"Role","_key":"5368","_from":"4558","_to":"4555"} +{"$label":"ACTS_IN","name":"Monsieur Arpel","type":"Role","_key":"5367","_from":"4556","_to":"4555"} +{"$label":"ACTS_IN","name":"Monsieur Hulot","type":"Role","_key":"5366","_from":"4557","_to":"4555"} +{"$label":"DIRECTED","_key":"5365","_from":"4556","_to":"4555"} +{"$label":"DIRECTED","_key":"69501","_from":"4556","_to":"42457"} +{"$label":"DIRECTED","_key":"61819","_from":"4556","_to":"38917"} +{"$label":"DIRECTED","_key":"32922","_from":"4556","_to":"22838"} +{"$label":"DIRECTED","_key":"9159","_from":"4556","_to":"7405"} +{"$label":"ACTS_IN","name":"Monsieur Hulot","type":"Role","_key":"69497","_from":"4556","_to":"42457"} +{"$label":"ACTS_IN","name":"Monsieur Hulot","type":"Role","_key":"61820","_from":"4556","_to":"38917"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"32924","_from":"4556","_to":"22838"} +{"$label":"ACTS_IN","name":"Monsieur Hulot","type":"Role","_key":"9160","_from":"4556","_to":"7405"} +{"$label":"ACTS_IN","name":"Octave","type":"Role","_key":"27392","_from":"4557","_to":"19677"} +{"$label":"ACTS_IN","name":"Hotelbesitzer","type":"Role","_key":"9166","_from":"4559","_to":"7405"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"5386","_from":"4576","_to":"4567"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"5385","_from":"4575","_to":"4567"} +{"$label":"ACTS_IN","name":"Grietje","type":"Role","_key":"5384","_from":"4574","_to":"4567"} +{"$label":"ACTS_IN","name":"NIls","type":"Role","_key":"5383","_from":"4573","_to":"4567"} +{"$label":"ACTS_IN","name":"Livia","type":"Role","_key":"5382","_from":"4572","_to":"4567"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"5381","_from":"4571","_to":"4567"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"5380","_from":"4570","_to":"4567"} +{"$label":"DIRECTED","_key":"5378","_from":"4569","_to":"4567"} +{"$label":"DIRECTED","_key":"5377","_from":"4568","_to":"4567"} +{"$label":"DIRECTED","_key":"45586","_from":"4568","_to":"30180"} +{"$label":"ACTS_IN","name":"CNN Newscaster #1","type":"Role","_key":"69835","_from":"4570","_to":"42613"} +{"$label":"ACTS_IN","name":"Greg O'Neil","type":"Role","_key":"50904","_from":"4570","_to":"33222"} +{"$label":"ACTS_IN","name":"Ruth Weinstein ( 8. Jahre alt )","type":"Role","_key":"42885","_from":"4572","_to":"28665"} +{"$label":"ACTS_IN","name":"Blandine Ebinger","type":"Role","_key":"21779","_from":"4574","_to":"15899"} +{"$label":"ACTS_IN","name":"Thomas 'Shorty' Larson (uncredited)","type":"Role","_key":"5398","_from":"4585","_to":"4577"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"5397","_from":"4584","_to":"4577"} +{"$label":"ACTS_IN","name":"Jackson\/Bill Carson","type":"Role","_key":"5396","_from":"4583","_to":"4577"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"5395","_from":"4582","_to":"4577"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"5394","_from":"4581","_to":"4577"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"5393","_from":"4580","_to":"4577"} +{"$label":"ACTS_IN","name":"Father Pablo Ramirez","type":"Role","_key":"5392","_from":"4579","_to":"4577"} +{"$label":"ACTS_IN","name":"Alcoholic Union Captain","type":"Role","_key":"5391","_from":"4578","_to":"4577"} +{"$label":"ACTS_IN","name":"Armando","type":"Role","_key":"39724","_from":"4578","_to":"26843"} +{"$label":"ACTS_IN","name":"Inspector Stavros","type":"Role","_key":"110139","_from":"4579","_to":"65080"} +{"$label":"ACTS_IN","name":"Marcello Angiotti","type":"Role","_key":"89998","_from":"4579","_to":"53238"} +{"$label":"ACTS_IN","name":"Pollicut","type":"Role","_key":"52121","_from":"4579","_to":"33979"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"37436","_from":"4579","_to":"25365"} +{"$label":"ACTS_IN","name":"Poliziotto","type":"Role","_key":"22964","_from":"4579","_to":"16655"} +{"$label":"ACTS_IN","name":"Groggy","type":"Role","_key":"11189","_from":"4579","_to":"8850"} +{"$label":"ACTS_IN","name":"Sangarre","type":"Role","_key":"72014","_from":"4580","_to":"43545"} +{"$label":"ACTS_IN","name":"Christina Hoffmann","type":"Role","_key":"37430","_from":"4580","_to":"25362"} +{"$label":"ACTS_IN","name":"\u00c4gypter","type":"Role","_key":"21883","_from":"4581","_to":"15979"} +{"$label":"ACTS_IN","name":"Commodio","type":"Role","_key":"38848","_from":"4582","_to":"26238"} +{"$label":"ACTS_IN","name":"Tommy MacNamara","type":"Role","_key":"5417","_from":"4603","_to":"4586"} +{"$label":"ACTS_IN","name":"Cindy MacNamara","type":"Role","_key":"5416","_from":"4602","_to":"4586"} +{"$label":"ACTS_IN","name":"Zeidlitz","type":"Role","_key":"5415","_from":"4601","_to":"4586"} +{"$label":"ACTS_IN","name":"Dr. Bauer","type":"Role","_key":"5414","_from":"4600","_to":"4586"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"5413","_from":"4599","_to":"4586"} +{"$label":"ACTS_IN","name":"Melanie Hazeltine","type":"Role","_key":"5411","_from":"4598","_to":"4586"} +{"$label":"ACTS_IN","name":"Count von Droste Schattenburg","type":"Role","_key":"5410","_from":"4597","_to":"4586"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"5409","_from":"4596","_to":"4586"} +{"$label":"ACTS_IN","name":"Borodenko","type":"Role","_key":"5408","_from":"4595","_to":"4586"} +{"$label":"ACTS_IN","name":"Peripetchikoff","type":"Role","_key":"5407","_from":"4594","_to":"4586"} +{"$label":"ACTS_IN","name":"Schlemmer","type":"Role","_key":"5406","_from":"4593","_to":"4586"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Ingeborg","type":"Role","_key":"5405","_from":"4592","_to":"4586"} +{"$label":"ACTS_IN","name":"Wendell P. Hazeltine","type":"Role","_key":"5404","_from":"4591","_to":"4586"} +{"$label":"ACTS_IN","name":"Phyllis MacNamara","type":"Role","_key":"5403","_from":"4590","_to":"4586"} +{"$label":"ACTS_IN","name":"Scarlett Hazeltine","type":"Role","_key":"5402","_from":"4589","_to":"4586"} +{"$label":"ACTS_IN","name":"Otto Ludwig Piffl","type":"Role","_key":"5401","_from":"4588","_to":"4586"} +{"$label":"ACTS_IN","name":"C.R. MacNamara","type":"Role","_key":"5400","_from":"4587","_to":"4586"} +{"$label":"ACTS_IN","name":"Ralph Cotter","type":"Role","_key":"115597","_from":"4587","_to":"68053"} +{"$label":"ACTS_IN","name":"Robert Emmett 'Bob' Sharkey","type":"Role","_key":"115276","_from":"4587","_to":"67879"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"114520","_from":"4587","_to":"67457"} +{"$label":"ACTS_IN","name":"Tom Powers","type":"Role","_key":"113655","_from":"4587","_to":"66979"} +{"$label":"ACTS_IN","name":"Arthur 'Cody' Jarrett","type":"Role","_key":"105929","_from":"4587","_to":"62369"} +{"$label":"ACTS_IN","name":"Rocky Sullivan","type":"Role","_key":"95923","_from":"4587","_to":"56413"} +{"$label":"ACTS_IN","name":"(in \"White Heat\") (archive footage)","type":"Role","_key":"53884","_from":"4587","_to":"34691"} +{"$label":"ACTS_IN","name":"George M. Cohan","type":"Role","_key":"25653","_from":"4587","_to":"18469"} +{"$label":"ACTS_IN","name":"Tony Baker","type":"Role","_key":"63334","_from":"4588","_to":"39697"} +{"$label":"ACTS_IN","name":"Freddy Borchert","type":"Role","_key":"44202","_from":"4588","_to":"29461"} +{"$label":"ACTS_IN","name":"Tony Mecenas","type":"Role","_key":"35809","_from":"4588","_to":"24317"} +{"$label":"ACTS_IN","name":"Leichmann","type":"Role","_key":"17757","_from":"4588","_to":"13247"} +{"$label":"ACTS_IN","name":"Harry Laird","type":"Role","_key":"17749","_from":"4588","_to":"13242"} +{"$label":"ACTS_IN","name":"Schotten","type":"Role","_key":"17737","_from":"4588","_to":"13233"} +{"$label":"ACTS_IN","name":"Limey Pimlet","type":"Role","_key":"17727","_from":"4588","_to":"13221"} +{"$label":"ACTS_IN","name":"Iwanowitsch Nechljudoff","type":"Role","_key":"17676","_from":"4588","_to":"13189"} +{"$label":"ACTS_IN","name":"Felix Krull","type":"Role","_key":"17665","_from":"4588","_to":"13181"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"16127","_from":"4588","_to":"12250"} +{"$label":"ACTS_IN","name":"Emerich Weber","type":"Role","_key":"16094","_from":"4588","_to":"12227"} +{"$label":"ACTS_IN","name":"Dymitr Mirga","type":"Role","_key":"16081","_from":"4588","_to":"12216"} +{"$label":"ACTS_IN","name":"Miguel de Cervantes","type":"Role","_key":"16037","_from":"4588","_to":"12192"} +{"$label":"ACTS_IN","name":"Jonny","type":"Role","_key":"16028","_from":"4588","_to":"12182"} +{"$label":"ACTS_IN","name":"K\u00f6nig Tabor","type":"Role","_key":"15984","_from":"4588","_to":"12154"} +{"$label":"ACTS_IN","name":"Naturam Godse","type":"Role","_key":"15970","_from":"4588","_to":"12144"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"11486","_from":"4588","_to":"9032"} +{"$label":"ACTS_IN","name":"Dottore Lessing","type":"Role","_key":"7591","_from":"4588","_to":"6311"} +{"$label":"ACTS_IN","name":"Police Capt. Turley","type":"Role","_key":"10016","_from":"4591","_to":"8013"} +{"$label":"ACTS_IN","name":"Piroschka","type":"Role","_key":"67845","_from":"4592","_to":"41691"} +{"$label":"ACTS_IN","name":"Alma Winkel","type":"Role","_key":"65890","_from":"4592","_to":"40768"} +{"$label":"ACTS_IN","name":"Comtesse Franziska von Sandau","type":"Role","_key":"45099","_from":"4592","_to":"29943"} +{"$label":"ACTS_IN","name":"Hilda","type":"Role","_key":"33727","_from":"4592","_to":"23267"} +{"$label":"ACTS_IN","name":"Zasa","type":"Role","_key":"17667","_from":"4592","_to":"13181"} +{"$label":"ACTS_IN","name":"Bellkamp","type":"Role","_key":"39789","_from":"4593","_to":"26876"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"30967","_from":"4594","_to":"21695"} +{"$label":"ACTS_IN","name":"Hadschi Halef Omar","type":"Role","_key":"119186","_from":"4595","_to":"70038"} +{"$label":"ACTS_IN","name":"Hadschi Halef Omar","type":"Role","_key":"119174","_from":"4595","_to":"70032"} +{"$label":"ACTS_IN","name":"Hadschi Halef Omar","type":"Role","_key":"90226","_from":"4595","_to":"53349"} +{"$label":"ACTS_IN","name":"Sam Hawkens","type":"Role","_key":"64772","_from":"4595","_to":"40310"} +{"$label":"ACTS_IN","name":"Sam Hawkens","type":"Role","_key":"55147","_from":"4595","_to":"35197"} +{"$label":"ACTS_IN","name":"Miraculix (voice: German version)","type":"Role","_key":"53387","_from":"4595","_to":"34500"} +{"$label":"ACTS_IN","name":"Friseur","type":"Role","_key":"46059","_from":"4595","_to":"30425"} +{"$label":"ACTS_IN","name":"Sam Hawkens","type":"Role","_key":"45750","_from":"4595","_to":"30269"} +{"$label":"ACTS_IN","name":"Felix Klein","type":"Role","_key":"45354","_from":"4595","_to":"30082"} +{"$label":"ACTS_IN","name":"Rixner","type":"Role","_key":"45307","_from":"4595","_to":"30050"} +{"$label":"ACTS_IN","name":"R\u00e4uber","type":"Role","_key":"45113","_from":"4595","_to":"29943"} +{"$label":"ACTS_IN","name":"Baderaumw\u00e4rter","type":"Role","_key":"45074","_from":"4595","_to":"29929"} +{"$label":"ACTS_IN","name":"Dr. Kobalt","type":"Role","_key":"43940","_from":"4595","_to":"29311"} +{"$label":"ACTS_IN","name":"Balduin","type":"Role","_key":"41830","_from":"4595","_to":"28067"} +{"$label":"ACTS_IN","name":"Hausverwalter","type":"Role","_key":"41252","_from":"4595","_to":"27738"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41223","_from":"4595","_to":"27727"} +{"$label":"ACTS_IN","name":"Sam Hawkens","type":"Role","_key":"38218","_from":"4595","_to":"25817"} +{"$label":"ACTS_IN","name":"Kaminski","type":"Role","_key":"30944","_from":"4595","_to":"21676"} +{"$label":"ACTS_IN","name":"Sam Hawkens","type":"Role","_key":"28522","_from":"4595","_to":"20386"} +{"$label":"ACTS_IN","name":"Schulze","type":"Role","_key":"20034","_from":"4595","_to":"14741"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"45078","_from":"4596","_to":"29929"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40634","_from":"4596","_to":"27360"} +{"$label":"ACTS_IN","name":"Radensky","type":"Role","_key":"39910","_from":"4596","_to":"26965"} +{"$label":"ACTS_IN","name":"Jack MacCampbell","type":"Role","_key":"39663","_from":"4596","_to":"26806"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"32361","_from":"4596","_to":"22533"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31334","_from":"4596","_to":"21905"} +{"$label":"ACTS_IN","name":"Walloschek","type":"Role","_key":"46596","_from":"4597","_to":"30780"} +{"$label":"ACTS_IN","name":"Oberst von Teckel","type":"Role","_key":"45109","_from":"4597","_to":"29943"} +{"$label":"ACTS_IN","name":"Jawassis","type":"Role","_key":"45030","_from":"4597","_to":"29913"} +{"$label":"ACTS_IN","name":"Dr. Zwyfalt","type":"Role","_key":"43930","_from":"4597","_to":"29311"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"42009","_from":"4597","_to":"28144"} +{"$label":"ACTS_IN","name":"Der Junge de Bli","type":"Role","_key":"41939","_from":"4597","_to":"28098"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41926","_from":"4597","_to":"28097"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41913","_from":"4597","_to":"28096"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41903","_from":"4597","_to":"28094"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41890","_from":"4597","_to":"28093"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41877","_from":"4597","_to":"28092"} +{"$label":"ACTS_IN","name":"Direktor Weber","type":"Role","_key":"41810","_from":"4597","_to":"28050"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41222","_from":"4597","_to":"27727"} +{"$label":"ACTS_IN","name":"Monsieur Terrier","type":"Role","_key":"41202","_from":"4597","_to":"27720"} +{"$label":"ACTS_IN","name":"Kleye","type":"Role","_key":"31322","_from":"4597","_to":"21896"} +{"$label":"ACTS_IN","name":"Tadd\u00e4us von Zylinski","type":"Role","_key":"15380","_from":"4597","_to":"11757"} +{"$label":"ACTS_IN","name":"Vinzenz","type":"Role","_key":"43086","_from":"4599","_to":"28781"} +{"$label":"ACTS_IN","name":"Frick","type":"Role","_key":"40492","_from":"4599","_to":"27264"} +{"$label":"ACTS_IN","name":"Ritter","type":"Role","_key":"13864","_from":"4599","_to":"10746"} +{"$label":"ACTS_IN","name":"Dr. Adolph Engelborg","type":"Role","_key":"9829","_from":"4601","_to":"7874"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"5425","_from":"4611","_to":"4604"} +{"$label":"ACTS_IN","name":"Rennes","type":"Role","_key":"5424","_from":"4610","_to":"4604"} +{"$label":"ACTS_IN","name":"Kazan","type":"Role","_key":"5422","_from":"4609","_to":"4604"} +{"$label":"ACTS_IN","name":"Worth","type":"Role","_key":"5421","_from":"4608","_to":"4604"} +{"$label":"ACTS_IN","name":"Holloway","type":"Role","_key":"5420","_from":"4607","_to":"4604"} +{"$label":"ACTS_IN","name":"Leaven","type":"Role","_key":"5419","_from":"4606","_to":"4604"} +{"$label":"DIRECTED","_key":"5418","_from":"4605","_to":"4604"} +{"$label":"DIRECTED","_key":"67078","_from":"4605","_to":"41401"} +{"$label":"DIRECTED","_key":"61140","_from":"4605","_to":"38639"} +{"$label":"DIRECTED","_key":"19847","_from":"4605","_to":"14635"} +{"$label":"ACTS_IN","name":"Mrs. Petersen","type":"Role","_key":"44326","_from":"4607","_to":"29535"} +{"$label":"ACTS_IN","name":"Distressed Woman","type":"Role","_key":"7066","_from":"4607","_to":"5907"} +{"$label":"DIRECTED","_key":"116877","_from":"4608","_to":"68802"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"116870","_from":"4608","_to":"68802"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"67074","_from":"4608","_to":"41401"} +{"$label":"ACTS_IN","name":"Virgil C. Dunn","type":"Role","_key":"61138","_from":"4608","_to":"38639"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"67075","_from":"4609","_to":"41401"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"30116","_from":"4609","_to":"21220"} +{"$label":"ACTS_IN","name":"Harry Dickens","type":"Role","_key":"94206","_from":"4610","_to":"55472"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"93310","_from":"4610","_to":"54964"} +{"$label":"ACTS_IN","name":"Jack Hargrove","type":"Role","_key":"71835","_from":"4610","_to":"43469"} +{"$label":"ACTS_IN","name":"Frank (voice)","type":"Role","_key":"68095","_from":"4610","_to":"41826"} +{"$label":"DIRECTED","_key":"5438","_from":"4626","_to":"4613"} +{"$label":"ACTS_IN","name":"Uncle Albert","type":"Role","_key":"5437","_from":"4625","_to":"4613"} +{"$label":"ACTS_IN","name":"Admiral Boom","type":"Role","_key":"5436","_from":"4624","_to":"4613"} +{"$label":"ACTS_IN","name":"Constable Jones","type":"Role","_key":"5435","_from":"4623","_to":"4613"} +{"$label":"ACTS_IN","name":"Katie Nanna","type":"Role","_key":"5434","_from":"4622","_to":"4613"} +{"$label":"ACTS_IN","name":"Michael Banks","type":"Role","_key":"5433","_from":"4621","_to":"4613"} +{"$label":"ACTS_IN","name":"Jane Banks","type":"Role","_key":"5432","_from":"4620","_to":"4613"} +{"$label":"ACTS_IN","name":"Mrs. Brill","type":"Role","_key":"5431","_from":"4619","_to":"4613"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"5430","_from":"4618","_to":"4613"} +{"$label":"ACTS_IN","name":"Mrs. Winifred Banks","type":"Role","_key":"5429","_from":"4617","_to":"4613"} +{"$label":"ACTS_IN","name":"Mr. George W. Banks","type":"Role","_key":"5428","_from":"4616","_to":"4613"} +{"$label":"ACTS_IN","name":"Bert\/Mr. Dawes, Sr.","type":"Role","_key":"5427","_from":"4615","_to":"4613"} +{"$label":"ACTS_IN","name":"Mary poppins","type":"Role","_key":"5426","_from":"4614","_to":"4613"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"103263","_from":"4614","_to":"60756"} +{"$label":"ACTS_IN","name":"Jerusha Bromley","type":"Role","_key":"101452","_from":"4614","_to":"59719"} +{"$label":"ACTS_IN","name":"Count Victor Grezhinski","type":"Role","_key":"90608","_from":"4614","_to":"53513"} +{"$label":"ACTS_IN","name":"Queen Clarisse Renaldi","type":"Role","_key":"68049","_from":"4614","_to":"41815"} +{"$label":"ACTS_IN","name":"Queen (voice)","type":"Role","_key":"61588","_from":"4614","_to":"38823"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Clarisse Renaldi","type":"Role","_key":"57573","_from":"4614","_to":"36467"} +{"$label":"ACTS_IN","name":"Samantha Taylor","type":"Role","_key":"52280","_from":"4614","_to":"34041"} +{"$label":"ACTS_IN","name":"Sarah Sherman","type":"Role","_key":"39464","_from":"4614","_to":"26678"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"32299","_from":"4614","_to":"22492"} +{"$label":"ACTS_IN","name":"Queen Lillian (voice)","type":"Role","_key":"9545","_from":"4614","_to":"7689"} +{"$label":"ACTS_IN","name":"Queen (voice)","type":"Role","_key":"9532","_from":"4614","_to":"7683"} +{"$label":"ACTS_IN","name":"Caractacus Potts","type":"Role","_key":"71685","_from":"4615","_to":"43398"} +{"$label":"ACTS_IN","name":"Mr. Bloomsberry","type":"Role","_key":"58827","_from":"4615","_to":"37148"} +{"$label":"ACTS_IN","name":"D.A. Fletcher","type":"Role","_key":"50244","_from":"4615","_to":"32833"} +{"$label":"ACTS_IN","name":"Cecil Fredericks","type":"Role","_key":"14120","_from":"4615","_to":"10934"} +{"$label":"ACTS_IN","name":"Peter Thorndyke","type":"Role","_key":"98669","_from":"4616","_to":"58148"} +{"$label":"ACTS_IN","name":"Emelius","type":"Role","_key":"89274","_from":"4616","_to":"52856"} +{"$label":"ACTS_IN","name":"Lord Fellamar","type":"Role","_key":"39410","_from":"4616","_to":"26641"} +{"$label":"ACTS_IN","name":"Sir Roger Avery","type":"Role","_key":"27430","_from":"4616","_to":"19693"} +{"$label":"ACTS_IN","name":"Maid Jean","type":"Role","_key":"72295","_from":"4617","_to":"43672"} +{"$label":"ACTS_IN","name":"Rose Chasseur","type":"Role","_key":"66397","_from":"4617","_to":"41064"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"17955","_from":"4617","_to":"13353"} +{"$label":"ACTS_IN","name":"Ida Arnold","type":"Role","_key":"94229","_from":"4618","_to":"55491"} +{"$label":"ACTS_IN","name":"Mrs. Cratchit","type":"Role","_key":"93329","_from":"4618","_to":"54981"} +{"$label":"ACTS_IN","name":"Mrs. Halcyon Maxwell","type":"Role","_key":"94032","_from":"4619","_to":"55371"} +{"$label":"ACTS_IN","name":"Mary McDhui","type":"Role","_key":"103112","_from":"4620","_to":"60651"} +{"$label":"ACTS_IN","name":"Louise Patterson","type":"Role","_key":"121645","_from":"4622","_to":"71463"} +{"$label":"ACTS_IN","name":"Matilda","type":"Role","_key":"120195","_from":"4622","_to":"70587"} +{"$label":"ACTS_IN","name":"Mrs. Smerrling","type":"Role","_key":"119049","_from":"4622","_to":"69979"} +{"$label":"ACTS_IN","name":"Emily Stowecroft","type":"Role","_key":"108342","_from":"4622","_to":"64045"} +{"$label":"ACTS_IN","name":"Jessica Marbles","type":"Role","_key":"41395","_from":"4622","_to":"27822"} +{"$label":"ACTS_IN","name":"Mrs. Carraclough","type":"Role","_key":"19147","_from":"4622","_to":"14153"} +{"$label":"ACTS_IN","name":"Aunt Queenie Holroyd","type":"Role","_key":"17428","_from":"4622","_to":"13027"} +{"$label":"ACTS_IN","name":"Lord Canterville","type":"Role","_key":"120160","_from":"4624","_to":"70573"} +{"$label":"ACTS_IN","name":"Stryver","type":"Role","_key":"114118","_from":"4624","_to":"67208"} +{"$label":"ACTS_IN","name":"Fritz Pfeffer","type":"Role","_key":"22038","_from":"4625","_to":"16074"} +{"$label":"ACTS_IN","name":"Der alte Aram","type":"Role","_key":"21271","_from":"4625","_to":"15553"} +{"$label":"DIRECTED","_key":"117957","_from":"4626","_to":"69332"} +{"$label":"DIRECTED","_key":"114563","_from":"4626","_to":"67489"} +{"$label":"DIRECTED","_key":"108348","_from":"4626","_to":"64045"} +{"$label":"DIRECTED","_key":"98670","_from":"4626","_to":"58148"} +{"$label":"DIRECTED","_key":"89277","_from":"4626","_to":"52856"} +{"$label":"DIRECTED","_key":"66381","_from":"4626","_to":"41053"} +{"$label":"ACTS_IN","name":"Rainer","type":"Role","_key":"5460","_from":"4648","_to":"4627"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"5459","_from":"4647","_to":"4627"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"5458","_from":"4646","_to":"4627"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"5457","_from":"4645","_to":"4627"} +{"$label":"ACTS_IN","name":"Vater Mangold","type":"Role","_key":"5456","_from":"4644","_to":"4627"} +{"$label":"ACTS_IN","name":"Erols Freundin","type":"Role","_key":"5455","_from":"4643","_to":"4627"} +{"$label":"ACTS_IN","name":"Hotte","type":"Role","_key":"5454","_from":"4642","_to":"4627"} +{"$label":"ACTS_IN","name":"Captain Nemo","type":"Role","_key":"5453","_from":"4641","_to":"4627"} +{"$label":"ACTS_IN","name":"Erols Gang Mitglied#3","type":"Role","_key":"5452","_from":"4640","_to":"4627"} +{"$label":"ACTS_IN","name":"Lehrer Radke","type":"Role","_key":"5451","_from":"4639","_to":"4627"} +{"$label":"ACTS_IN","name":"Erols Gang Mitglied#2","type":"Role","_key":"5450","_from":"4638","_to":"4627"} +{"$label":"ACTS_IN","name":"Erols Gang Mitglied#1","type":"Role","_key":"5449","_from":"4637","_to":"4627"} +{"$label":"ACTS_IN","name":"Dr. Peters","type":"Role","_key":"5448","_from":"4636","_to":"4627"} +{"$label":"ACTS_IN","name":"Kommissar Gerber","type":"Role","_key":"5447","_from":"4635","_to":"4627"} +{"$label":"ACTS_IN","name":"Matze","type":"Role","_key":"5446","_from":"4634","_to":"4627"} +{"$label":"ACTS_IN","name":"Crille","type":"Role","_key":"5445","_from":"4633","_to":"4627"} +{"$label":"ACTS_IN","name":"Barut","type":"Role","_key":"5444","_from":"4632","_to":"4627"} +{"$label":"ACTS_IN","name":"Erol","type":"Role","_key":"5443","_from":"4631","_to":"4627"} +{"$label":"ACTS_IN","name":"Hamal","type":"Role","_key":"5442","_from":"4630","_to":"4627"} +{"$label":"ACTS_IN","name":"Michael Polischka","type":"Role","_key":"5440","_from":"4629","_to":"4627"} +{"$label":"DIRECTED","_key":"5439","_from":"4628","_to":"4627"} +{"$label":"ACTS_IN","name":"Oberst Kalt","type":"Role","_key":"70341","_from":"4628","_to":"42854"} +{"$label":"ACTS_IN","name":"Hagen Koch","type":"Role","_key":"67408","_from":"4628","_to":"41528"} +{"$label":"ACTS_IN","name":"Wusch","type":"Role","_key":"64778","_from":"4628","_to":"40312"} +{"$label":"ACTS_IN","name":"Hammer-Gerd","type":"Role","_key":"52736","_from":"4628","_to":"34223"} +{"$label":"ACTS_IN","name":"Skinhead","type":"Role","_key":"44039","_from":"4628","_to":"29369"} +{"$label":"ACTS_IN","name":"Der beste Freund Karl","type":"Role","_key":"30973","_from":"4628","_to":"21698"} +{"$label":"ACTS_IN","name":"ABV","type":"Role","_key":"19585","_from":"4628","_to":"14478"} +{"$label":"ACTS_IN","name":"G\u00fcnter W\u00fcst","type":"Role","_key":"19221","_from":"4628","_to":"14207"} +{"$label":"DIRECTED","_key":"64779","_from":"4628","_to":"40312"} +{"$label":"DIRECTED","_key":"62367","_from":"4628","_to":"39289"} +{"$label":"DIRECTED","_key":"53752","_from":"4628","_to":"34650"} +{"$label":"DIRECTED","_key":"52740","_from":"4628","_to":"34223"} +{"$label":"DIRECTED","_key":"44041","_from":"4628","_to":"29369"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"47910","_from":"4629","_to":"31517"} +{"$label":"ACTS_IN","name":"Krabat","type":"Role","_key":"33025","_from":"4629","_to":"22895"} +{"$label":"ACTS_IN","name":"Areg","type":"Role","_key":"65965","_from":"4630","_to":"40807"} +{"$label":"ACTS_IN","name":"Achmed","type":"Role","_key":"88238","_from":"4631","_to":"52346"} +{"$label":"ACTS_IN","name":"Nebi","type":"Role","_key":"48430","_from":"4631","_to":"31785"} +{"$label":"ACTS_IN","name":"Birol","type":"Role","_key":"20847","_from":"4631","_to":"15252"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"17023","_from":"4631","_to":"12770"} +{"$label":"ACTS_IN","name":"\u00d6zg\u00fcr","type":"Role","_key":"17405","_from":"4632","_to":"13011"} +{"$label":"ACTS_IN","name":"Achmed","type":"Role","_key":"27940","_from":"4633","_to":"20024"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"47986","_from":"4635","_to":"31568"} +{"$label":"ACTS_IN","name":"Thilo","type":"Role","_key":"40667","_from":"4636","_to":"27376"} +{"$label":"ACTS_IN","name":"Herr Mux","type":"Role","_key":"34591","_from":"4636","_to":"23680"} +{"$label":"ACTS_IN","name":"Oberfeldwebel Keller","type":"Role","_key":"31701","_from":"4636","_to":"22122"} +{"$label":"ACTS_IN","name":"Julia \"Kroko\" Fiedler","type":"Role","_key":"68428","_from":"4645","_to":"41976"} +{"$label":"ACTS_IN","name":"Melanie Pr\u00f6schle","type":"Role","_key":"43423","_from":"4646","_to":"29010"} +{"$label":"ACTS_IN","name":"Sabine G\u00fcrtler","type":"Role","_key":"42556","_from":"4646","_to":"28483"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"42317","_from":"4646","_to":"28335"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin","type":"Role","_key":"42312","_from":"4646","_to":"28327"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"41051","_from":"4646","_to":"27614"} +{"$label":"ACTS_IN","name":"Saudi Translator","type":"Role","_key":"5476","_from":"4660","_to":"4649"} +{"$label":"ACTS_IN","name":"Vice President Becker","type":"Role","_key":"5475","_from":"4659","_to":"4649"} +{"$label":"ACTS_IN","name":"Venezuelan Delegate","type":"Role","_key":"5474","_from":"4658","_to":"4649"} +{"$label":"ACTS_IN","name":"Saudi Delegate","type":"Role","_key":"5473","_from":"4657","_to":"4649"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"5471","_from":"4656","_to":"4649"} +{"$label":"ACTS_IN","name":"Brian Parks","type":"Role","_key":"5469","_from":"4655","_to":"4649"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"5468","_from":"4654","_to":"4649"} +{"$label":"ACTS_IN","name":"Dr. Lucy Hall","type":"Role","_key":"5467","_from":"4653","_to":"4649"} +{"$label":"ACTS_IN","name":"Frank Harris","type":"Role","_key":"5466","_from":"4652","_to":"4649"} +{"$label":"ACTS_IN","name":"Jason Evans","type":"Role","_key":"5465","_from":"4651","_to":"4649"} +{"$label":"ACTS_IN","name":"Jack Hall","type":"Role","_key":"5462","_from":"4650","_to":"4649"} +{"$label":"ACTS_IN","name":"Payton","type":"Role","_key":"121371","_from":"4650","_to":"71326"} +{"$label":"ACTS_IN","name":"Lar","type":"Role","_key":"118032","_from":"4650","_to":"69382"} +{"$label":"ACTS_IN","name":"Arlis Sweeney","type":"Role","_key":"116619","_from":"4650","_to":"68648"} +{"$label":"ACTS_IN","name":"Aidan Breslin","type":"Role","_key":"116325","_from":"4650","_to":"68477"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"116037","_from":"4650","_to":"68336"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Brody","type":"Role","_key":"113677","_from":"4650","_to":"66989"} +{"$label":"ACTS_IN","name":"General Hawk","type":"Role","_key":"102221","_from":"4650","_to":"60158"} +{"$label":"ACTS_IN","name":"Ed Miller","type":"Role","_key":"101542","_from":"4650","_to":"59766"} +{"$label":"ACTS_IN","name":"Jimmy Morris","type":"Role","_key":"101210","_from":"4650","_to":"59618"} +{"$label":"ACTS_IN","name":"Ben Schwartzwalder","type":"Role","_key":"99631","_from":"4650","_to":"58739"} +{"$label":"ACTS_IN","name":"Frank Beardsley","type":"Role","_key":"94856","_from":"4650","_to":"55856"} +{"$label":"ACTS_IN","name":"Lawrence Wetherhold","type":"Role","_key":"91872","_from":"4650","_to":"54202"} +{"$label":"ACTS_IN","name":"Cooper Tilson","type":"Role","_key":"91400","_from":"4650","_to":"53909"} +{"$label":"ACTS_IN","name":"Jefferson 'Jeff' Blue","type":"Role","_key":"90883","_from":"4650","_to":"53623"} +{"$label":"ACTS_IN","name":"Eddie Sanger","type":"Role","_key":"90683","_from":"4650","_to":"53538"} +{"$label":"ACTS_IN","name":"Doc Holliday","type":"Role","_key":"88366","_from":"4650","_to":"52390"} +{"$label":"ACTS_IN","name":"Frank Towns","type":"Role","_key":"72453","_from":"4650","_to":"43726"} +{"$label":"ACTS_IN","name":"Willis Davidge","type":"Role","_key":"72448","_from":"4650","_to":"43724"} +{"$label":"ACTS_IN","name":"Jerry Lee Lewis","type":"Role","_key":"70026","_from":"4650","_to":"42703"} +{"$label":"ACTS_IN","name":"Remy McSwain","type":"Role","_key":"67388","_from":"4650","_to":"41521"} +{"$label":"ACTS_IN","name":"Frank LaCrosse","type":"Role","_key":"66391","_from":"4650","_to":"41060"} +{"$label":"ACTS_IN","name":"Sam Houston","type":"Role","_key":"65321","_from":"4650","_to":"40532"} +{"$label":"ACTS_IN","name":"Frank Whitaker","type":"Role","_key":"65198","_from":"4650","_to":"40492"} +{"$label":"ACTS_IN","name":"Frank Sullivan","type":"Role","_key":"64062","_from":"4650","_to":"39986"} +{"$label":"ACTS_IN","name":"Nick Parker","type":"Role","_key":"57141","_from":"4650","_to":"36269"} +{"$label":"ACTS_IN","name":"Dexter Cornell","type":"Role","_key":"56243","_from":"4650","_to":"35738"} +{"$label":"ACTS_IN","name":"Jack 'Cap' Rooney","type":"Role","_key":"54718","_from":"4650","_to":"35030"} +{"$label":"ACTS_IN","name":"Gordon Cooper","type":"Role","_key":"54612","_from":"4650","_to":"34982"} +{"$label":"ACTS_IN","name":"President Staton","type":"Role","_key":"53032","_from":"4650","_to":"34338"} +{"$label":"ACTS_IN","name":"Bowen","type":"Role","_key":"51003","_from":"4650","_to":"33290"} +{"$label":"ACTS_IN","name":"Barnes","type":"Role","_key":"46815","_from":"4650","_to":"30888"} +{"$label":"ACTS_IN","name":"Lt. Tuck Pendleton","type":"Role","_key":"22213","_from":"4650","_to":"16182"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"17776","_from":"4650","_to":"13258"} +{"$label":"ACTS_IN","name":"Dan Foreman","type":"Role","_key":"16411","_from":"4650","_to":"12420"} +{"$label":"ACTS_IN","name":"Arnie Metzger","type":"Role","_key":"16406","_from":"4650","_to":"12416"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"9737","_from":"4650","_to":"7817"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"93419","_from":"4651","_to":"55011"} +{"$label":"ACTS_IN","name":"Martin Soap","type":"Role","_key":"92234","_from":"4651","_to":"54425"} +{"$label":"ACTS_IN","name":"Trey Falcon","type":"Role","_key":"60783","_from":"4651","_to":"38393"} +{"$label":"ACTS_IN","name":"Rusty McGee","type":"Role","_key":"52113","_from":"4651","_to":"33976"} +{"$label":"ACTS_IN","name":"Alpha Male","type":"Role","_key":"43618","_from":"4651","_to":"29124"} +{"$label":"ACTS_IN","name":"Bolan","type":"Role","_key":"37672","_from":"4651","_to":"25539"} +{"$label":"ACTS_IN","name":"Mr. Frying Pan","type":"Role","_key":"36542","_from":"4651","_to":"24777"} +{"$label":"ACTS_IN","name":"Gary Sidwell","type":"Role","_key":"34721","_from":"4651","_to":"23744"} +{"$label":"ACTS_IN","name":"Benvolio","type":"Role","_key":"5674","_from":"4651","_to":"4828"} +{"$label":"ACTS_IN","name":"Whitehouse","type":"Role","_key":"88657","_from":"4652","_to":"52530"} +{"$label":"ACTS_IN","name":"Douglas Duncan","type":"Role","_key":"60798","_from":"4652","_to":"38408"} +{"$label":"ACTS_IN","name":"Russ","type":"Role","_key":"47381","_from":"4652","_to":"31196"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"47321","_from":"4652","_to":"31163"} +{"$label":"ACTS_IN","name":"Kyle Craig","type":"Role","_key":"17789","_from":"4652","_to":"13263"} +{"$label":"ACTS_IN","name":"Lou Ivon","type":"Role","_key":"9674","_from":"4652","_to":"7763"} +{"$label":"ACTS_IN","name":"Susan Harding","type":"Role","_key":"121433","_from":"4653","_to":"71342"} +{"$label":"ACTS_IN","name":"Jeannie Miller","type":"Role","_key":"65001","_from":"4653","_to":"40401"} +{"$label":"ACTS_IN","name":"Helen Kimble","type":"Role","_key":"37541","_from":"4653","_to":"25451"} +{"$label":"ACTS_IN","name":"Pretty Woman in Bar","type":"Role","_key":"34110","_from":"4653","_to":"23435"} +{"$label":"ACTS_IN","name":"Helen Randall","type":"Role","_key":"33151","_from":"4653","_to":"22958"} +{"$label":"ACTS_IN","name":"Billie Auster","type":"Role","_key":"28465","_from":"4653","_to":"20352"} +{"$label":"ACTS_IN","name":"Carla Hardwick","type":"Role","_key":"18222","_from":"4653","_to":"13515"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"112247","_from":"4654","_to":"66289"} +{"$label":"ACTS_IN","name":"Jerry Armstrong","type":"Role","_key":"58048","_from":"4654","_to":"36729"} +{"$label":"ACTS_IN","name":"Tanner","type":"Role","_key":"105275","_from":"4655","_to":"61948"} +{"$label":"ACTS_IN","name":"Bill Vance","type":"Role","_key":"113543","_from":"4659","_to":"66900"} +{"$label":"ACTS_IN","name":"Doc Nagobads","type":"Role","_key":"99493","_from":"4659","_to":"58650"} +{"$label":"ACTS_IN","name":"Provost Higgins","type":"Role","_key":"58484","_from":"4659","_to":"36963"} +{"$label":"ACTS_IN","name":"Morris","type":"Role","_key":"51356","_from":"4659","_to":"33484"} +{"$label":"ACTS_IN","name":"Dr. Mueller","type":"Role","_key":"50283","_from":"4659","_to":"32852"} +{"$label":"ACTS_IN","name":"Robert Bradford","type":"Role","_key":"48977","_from":"4659","_to":"32108"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46325","_from":"4659","_to":"30610"} +{"$label":"ACTS_IN","name":"Tom Malone","type":"Role","_key":"9317","_from":"4659","_to":"7527"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"5492","_from":"4677","_to":"4661"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"5491","_from":"4676","_to":"4661"} +{"$label":"ACTS_IN","name":"Pharmacist","type":"Role","_key":"5490","_from":"4675","_to":"4661"} +{"$label":"ACTS_IN","name":"Pellet Maker","type":"Role","_key":"5489","_from":"4674","_to":"4661"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"5488","_from":"4673","_to":"4661"} +{"$label":"ACTS_IN","name":"Rosita","type":"Role","_key":"5487","_from":"4672","_to":"4661"} +{"$label":"ACTS_IN","name":"Diana \u00c1lvarez","type":"Role","_key":"5486","_from":"4671","_to":"4661"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"5485","_from":"4670","_to":"4661"} +{"$label":"ACTS_IN","name":"Felipe","type":"Role","_key":"5484","_from":"4669","_to":"4661"} +{"$label":"ACTS_IN","name":"Supervisor","type":"Role","_key":"5483","_from":"4668","_to":"4661"} +{"$label":"ACTS_IN","name":"Juana","type":"Role","_key":"5482","_from":"4667","_to":"4661"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"5481","_from":"4666","_to":"4661"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"5480","_from":"4665","_to":"4661"} +{"$label":"ACTS_IN","name":"Lucy D\u00edaz","type":"Role","_key":"5479","_from":"4664","_to":"4661"} +{"$label":"ACTS_IN","name":"Mar\u00eda \u00c1lvarez","type":"Role","_key":"5478","_from":"4663","_to":"4661"} +{"$label":"DIRECTED","_key":"5477","_from":"4662","_to":"4661"} +{"$label":"DIRECTED","_key":"90354","_from":"4662","_to":"53397"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"116721","_from":"4663","_to":"68707"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"104922","_from":"4663","_to":"61738"} +{"$label":"ACTS_IN","name":"Blanca Bosco","type":"Role","_key":"62648","_from":"4663","_to":"39410"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"49018","_from":"4663","_to":"32126"} +{"$label":"ACTS_IN","name":"Hildebranda Sanchez","type":"Role","_key":"44505","_from":"4663","_to":"29642"} +{"$label":"ACTS_IN","name":"Ana (Loin du 16e)","type":"Role","_key":"19884","_from":"4663","_to":"14635"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"17718","_from":"4673","_to":"13216"} +{"$label":"ACTS_IN","name":"Dr. Phil Rosenzweig","type":"Role","_key":"5505","_from":"4691","_to":"4678"} +{"$label":"ACTS_IN","name":"Tracton","type":"Role","_key":"5504","_from":"4690","_to":"4678"} +{"$label":"ACTS_IN","name":"The General","type":"Role","_key":"5503","_from":"4689","_to":"4678"} +{"$label":"ACTS_IN","name":"Colonel Maguire","type":"Role","_key":"5502","_from":"4688","_to":"4678"} +{"$label":"ACTS_IN","name":"Becky Young","type":"Role","_key":"5501","_from":"4687","_to":"4678"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"5500","_from":"4686","_to":"4678"} +{"$label":"ACTS_IN","name":"Mrs. Paley","type":"Role","_key":"5499","_from":"4685","_to":"4678"} +{"$label":"ACTS_IN","name":"Jerry Whitehall","type":"Role","_key":"5498","_from":"4684","_to":"4678"} +{"$label":"ACTS_IN","name":"Max Reisler","type":"Role","_key":"5497","_from":"4683","_to":"4678"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"5496","_from":"4682","_to":"4678"} +{"$label":"ACTS_IN","name":"Simon Grady","type":"Role","_key":"5495","_from":"4681","_to":"4678"} +{"$label":"ACTS_IN","name":"Kate Filmore","type":"Role","_key":"5494","_from":"4680","_to":"4678"} +{"$label":"DIRECTED","_key":"5493","_from":"4679","_to":"4678"} +{"$label":"ACTS_IN","name":"Marla Allen","type":"Role","_key":"98243","_from":"4680","_to":"57875"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"61139","_from":"4680","_to":"38639"} +{"$label":"ACTS_IN","name":"Dr. Zin","type":"Role","_key":"114017","_from":"4681","_to":"67145"} +{"$label":"ACTS_IN","name":"Daniels","type":"Role","_key":"65272","_from":"4681","_to":"40514"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"113340","_from":"4682","_to":"66763"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"16602","_from":"4682","_to":"12537"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"105685","_from":"4683","_to":"62205"} +{"$label":"ACTS_IN","name":"Danuta","type":"Role","_key":"54553","_from":"4685","_to":"34961"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"116629","_from":"4686","_to":"68650"} +{"$label":"ACTS_IN","name":"Rodney Miller","type":"Role","_key":"49208","_from":"4688","_to":"32232"} +{"$label":"ACTS_IN","name":"Sky Marshal Dienes","type":"Role","_key":"6767","_from":"4688","_to":"5670"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"94681","_from":"4689","_to":"55785"} +{"$label":"ACTS_IN","name":"Captain Harlan","type":"Role","_key":"64387","_from":"4689","_to":"40118"} +{"$label":"ACTS_IN","name":"Owen","type":"Role","_key":"5516","_from":"4703","_to":"4692"} +{"$label":"ACTS_IN","name":"Jellico","type":"Role","_key":"5515","_from":"4702","_to":"4692"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"5514","_from":"4701","_to":"4692"} +{"$label":"ACTS_IN","name":"Bartok","type":"Role","_key":"5513","_from":"4700","_to":"4692"} +{"$label":"ACTS_IN","name":"Meyerhold","type":"Role","_key":"5512","_from":"4699","_to":"4692"} +{"$label":"ACTS_IN","name":"Dodd","type":"Role","_key":"5511","_from":"4698","_to":"4692"} +{"$label":"ACTS_IN","name":"Haskell","type":"Role","_key":"5510","_from":"4697","_to":"4692"} +{"$label":"ACTS_IN","name":"Jax","type":"Role","_key":"5509","_from":"4696","_to":"4692"} +{"$label":"ACTS_IN","name":"Cassandra Rains","type":"Role","_key":"5508","_from":"4695","_to":"4692"} +{"$label":"ACTS_IN","name":"Eric Wynn","type":"Role","_key":"5507","_from":"4694","_to":"4692"} +{"$label":"DIRECTED","_key":"5506","_from":"4693","_to":"4692"} +{"$label":"DIRECTED","_key":"111314","_from":"4693","_to":"65743"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"62265","_from":"4694","_to":"39219"} +{"$label":"ACTS_IN","name":"Mike Bartholomy","type":"Role","_key":"111657","_from":"4696","_to":"65920"} +{"$label":"ACTS_IN","name":"Loan Officer","type":"Role","_key":"48670","_from":"4697","_to":"31916"} +{"$label":"ACTS_IN","name":"Mr. Tuttle","type":"Role","_key":"48663","_from":"4698","_to":"31916"} +{"$label":"ACTS_IN","name":"Ford Bond","type":"Role","_key":"10951","_from":"4698","_to":"8677"} +{"$label":"ACTS_IN","name":"Angus Petherbridge","type":"Role","_key":"119113","_from":"4700","_to":"70011"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"12870","_from":"4700","_to":"10044"} +{"$label":"ACTS_IN","name":"Clancy","type":"Role","_key":"98344","_from":"4703","_to":"57917"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"5530","_from":"4715","_to":"4704"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"5529","_from":"4714","_to":"4704"} +{"$label":"ACTS_IN","name":"Debutante of the Year","type":"Role","_key":"5528","_from":"4713","_to":"4704"} +{"$label":"ACTS_IN","name":"Riccardo, the Villa Owner","type":"Role","_key":"5527","_from":"4712","_to":"4704"} +{"$label":"ACTS_IN","name":"Paola","type":"Role","_key":"5526","_from":"4711","_to":"4704"} +{"$label":"ACTS_IN","name":"Paparazzo","type":"Role","_key":"5525","_from":"4710","_to":"4704"} +{"$label":"ACTS_IN","name":"Marcello's father","type":"Role","_key":"5524","_from":"4709","_to":"4704"} +{"$label":"ACTS_IN","name":"Steiner","type":"Role","_key":"5523","_from":"4708","_to":"4704"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"5522","_from":"4707","_to":"4704"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"5521","_from":"4706","_to":"4704"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"5519","_from":"4705","_to":"4704"} +{"$label":"ACTS_IN","name":"Elya Carlson","type":"Role","_key":"113674","_from":"4705","_to":"66988"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71243","_from":"4705","_to":"43224"} +{"$label":"ACTS_IN","name":"Amanda Beatrice Cross","type":"Role","_key":"41291","_from":"4705","_to":"27765"} +{"$label":"ACTS_IN","name":"Gilda Larsen","type":"Role","_key":"118850","_from":"4706","_to":"69858"} +{"$label":"ACTS_IN","name":"Isobel Banning \/ Princess Ananka","type":"Role","_key":"118388","_from":"4706","_to":"69598"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Ledoux","type":"Role","_key":"70107","_from":"4706","_to":"42740"} +{"$label":"ACTS_IN","name":"Merc\u00e9d\u00e8s","type":"Role","_key":"32342","_from":"4706","_to":"22527"} +{"$label":"ACTS_IN","name":"Gradisca","type":"Role","_key":"47337","_from":"4707","_to":"31174"} +{"$label":"ACTS_IN","name":"Nicks Schwester","type":"Role","_key":"23051","_from":"4707","_to":"16714"} +{"$label":"ACTS_IN","name":"Krawatten Annie","type":"Role","_key":"16134","_from":"4707","_to":"12250"} +{"$label":"ACTS_IN","name":"Viviane","type":"Role","_key":"11158","_from":"4707","_to":"8831"} +{"$label":"ACTS_IN","name":"Louis-Prosper Claudel","type":"Role","_key":"71698","_from":"4708","_to":"43404"} +{"$label":"ACTS_IN","name":"Claude Frollo","type":"Role","_key":"70958","_from":"4708","_to":"43101"} +{"$label":"ACTS_IN","name":"Henri Tournier","type":"Role","_key":"22005","_from":"4708","_to":"16059"} +{"$label":"ACTS_IN","name":"Lampourde","type":"Role","_key":"33724","_from":"4712","_to":"23260"} +{"$label":"ACTS_IN","name":"Mattaeo Cirini","type":"Role","_key":"26303","_from":"4712","_to":"18886"} +{"$label":"ACTS_IN","name":"Lisa Baumer","type":"Role","_key":"110137","_from":"4713","_to":"65080"} +{"$label":"ACTS_IN","name":"Kara Ben Nemsi","type":"Role","_key":"119185","_from":"4714","_to":"70038"} +{"$label":"ACTS_IN","name":"Kara Ben Nemsi","type":"Role","_key":"119173","_from":"4714","_to":"70032"} +{"$label":"ACTS_IN","name":"Dr. Karl Sternau","type":"Role","_key":"119167","_from":"4714","_to":"70030"} +{"$label":"ACTS_IN","name":"Dr. Karl Sternau","type":"Role","_key":"119161","_from":"4714","_to":"70028"} +{"$label":"ACTS_IN","name":"Joe Como","type":"Role","_key":"118838","_from":"4714","_to":"69855"} +{"$label":"ACTS_IN","name":"Joe Como","type":"Role","_key":"118834","_from":"4714","_to":"69854"} +{"$label":"ACTS_IN","name":"Roger Mont Elise","type":"Role","_key":"90550","_from":"4714","_to":"53485"} +{"$label":"ACTS_IN","name":"Kara Ben Nemsi","type":"Role","_key":"90224","_from":"4714","_to":"53349"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"64767","_from":"4714","_to":"40310"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"55143","_from":"4714","_to":"35197"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"54597","_from":"4714","_to":"34977"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"45746","_from":"4714","_to":"30269"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"38212","_from":"4714","_to":"25817"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"28525","_from":"4714","_to":"20392"} +{"$label":"ACTS_IN","name":"Old Shatterhand","type":"Role","_key":"28517","_from":"4714","_to":"20386"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Dalbret","type":"Role","_key":"39367","_from":"4715","_to":"26621"} +{"$label":"ACTS_IN","name":"Giulia Grisi","type":"Role","_key":"28423","_from":"4715","_to":"20326"} +{"$label":"ACTS_IN","name":"Molly O'Brien","type":"Role","_key":"5536","_from":"4721","_to":"4716"} +{"$label":"ACTS_IN","name":"Kelly O'Brien","type":"Role","_key":"5534","_from":"4720","_to":"4716"} +{"$label":"ACTS_IN","name":"Dallas Howard","type":"Role","_key":"5533","_from":"4719","_to":"4716"} +{"$label":"DIRECTED","_key":"5532","_from":"4718","_to":"4716"} +{"$label":"DIRECTED","_key":"5531","_from":"4717","_to":"4716"} +{"$label":"ACTS_IN","name":"Jack Manning","type":"Role","_key":"58737","_from":"4719","_to":"37102"} +{"$label":"ACTS_IN","name":"Audrey Levine","type":"Role","_key":"57706","_from":"4720","_to":"36527"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"27185","_from":"4720","_to":"19541"} +{"$label":"ACTS_IN","name":"Puff","type":"Role","_key":"5545","_from":"4726","_to":"4722"} +{"$label":"ACTS_IN","name":"Nathan's Mother","type":"Role","_key":"5543","_from":"4725","_to":"4722"} +{"$label":"ACTS_IN","name":"Young Puff","type":"Role","_key":"5542","_from":"4724","_to":"4722"} +{"$label":"ACTS_IN","name":"Young Lila Jute","type":"Role","_key":"5541","_from":"4723","_to":"4722"} +{"$label":"ACTS_IN","name":"Lucy Diamond","type":"Role","_key":"121322","_from":"4723","_to":"71285"} +{"$label":"ACTS_IN","name":"Lizzie McGuire","type":"Role","_key":"117281","_from":"4723","_to":"68981"} +{"$label":"ACTS_IN","name":"Holly Hamilton","type":"Role","_key":"105298","_from":"4723","_to":"61964"} +{"$label":"ACTS_IN","name":"Teresa 'Terri' Fletcher","type":"Role","_key":"98182","_from":"4723","_to":"57831"} +{"$label":"ACTS_IN","name":"Kelly Collins","type":"Role","_key":"98096","_from":"4723","_to":"57760"} +{"$label":"ACTS_IN","name":"Yonica Babyyeah","type":"Role","_key":"93354","_from":"4723","_to":"54992"} +{"$label":"ACTS_IN","name":"Shasta O'Neil","type":"Role","_key":"69557","_from":"4723","_to":"42473"} +{"$label":"ACTS_IN","name":"Sam Montgomery","type":"Role","_key":"68775","_from":"4723","_to":"42142"} +{"$label":"ACTS_IN","name":"Lorraine Baker","type":"Role","_key":"67244","_from":"4723","_to":"41460"} +{"$label":"ACTS_IN","name":"Natalie Connors","type":"Role","_key":"66773","_from":"4723","_to":"41256"} +{"$label":"ACTS_IN","name":"Tanzie Marchetta","type":"Role","_key":"60942","_from":"4723","_to":"38506"} +{"$label":"ACTS_IN","name":"Lorraine","type":"Role","_key":"109324","_from":"4725","_to":"64585"} +{"$label":"ACTS_IN","name":"Katherine Harvey","type":"Role","_key":"99811","_from":"4725","_to":"58878"} +{"$label":"ACTS_IN","name":"Mrs. Murdo","type":"Role","_key":"95377","_from":"4725","_to":"56102"} +{"$label":"ACTS_IN","name":"Meg Jones","type":"Role","_key":"90276","_from":"4725","_to":"53368"} +{"$label":"ACTS_IN","name":"Pvt. Mary Lou Glass","type":"Role","_key":"65636","_from":"4725","_to":"40671"} +{"$label":"ACTS_IN","name":"Guard Witch (voice)","type":"Role","_key":"61596","_from":"4725","_to":"38823"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"46367","_from":"4725","_to":"30637"} +{"$label":"ACTS_IN","name":"Barbara Gilcrest","type":"Role","_key":"27889","_from":"4725","_to":"19989"} +{"$label":"ACTS_IN","name":"Floris","type":"Role","_key":"5986","_from":"4725","_to":"5081"} +{"$label":"ACTS_IN","name":"Gavin","type":"Role","_key":"118257","_from":"4726","_to":"69515"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"114613","_from":"4726","_to":"67516"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"112245","_from":"4726","_to":"66289"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"111068","_from":"4726","_to":"65605"} +{"$label":"ACTS_IN","name":"Jeremy Lewis","type":"Role","_key":"103986","_from":"4726","_to":"61172"} +{"$label":"ACTS_IN","name":"Danny Morgan","type":"Role","_key":"99894","_from":"4726","_to":"58914"} +{"$label":"ACTS_IN","name":"Xenophilius Lovegood","type":"Role","_key":"89510","_from":"4726","_to":"52992"} +{"$label":"ACTS_IN","name":"William Dobbin","type":"Role","_key":"71171","_from":"4726","_to":"43195"} +{"$label":"ACTS_IN","name":"Eyeball Paul","type":"Role","_key":"64412","_from":"4726","_to":"40145"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"55492","_from":"4726","_to":"35362"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"53564","_from":"4726","_to":"34569"} +{"$label":"ACTS_IN","name":"Gerry Evans","type":"Role","_key":"37042","_from":"4726","_to":"25107"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"36885","_from":"4726","_to":"25001"} +{"$label":"ACTS_IN","name":"Robert Reston","type":"Role","_key":"32251","_from":"4726","_to":"22472"} +{"$label":"ACTS_IN","name":"Dr. Curt Connors \/ The Lizard","type":"Role","_key":"16721","_from":"4726","_to":"12611"} +{"$label":"ACTS_IN","name":"Iki","type":"Role","_key":"14329","_from":"4726","_to":"11086"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"6151","_from":"4726","_to":"5213"} +{"$label":"ACTS_IN","name":"Communist girl","type":"Role","_key":"5558","_from":"4739","_to":"4727"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"5557","_from":"4738","_to":"4727"} +{"$label":"ACTS_IN","name":"Signe","type":"Role","_key":"5556","_from":"4737","_to":"4727"} +{"$label":"ACTS_IN","name":"Birger","type":"Role","_key":"5555","_from":"4736","_to":"4727"} +{"$label":"ACTS_IN","name":"Greger","type":"Role","_key":"5554","_from":"4735","_to":"4727"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"5553","_from":"4734","_to":"4727"} +{"$label":"ACTS_IN","name":"Isak, father of Niila","type":"Role","_key":"5551","_from":"4733","_to":"4727"} +{"$label":"ACTS_IN","name":"Niila (age 15)","type":"Role","_key":"5550","_from":"4732","_to":"4727"} +{"$label":"ACTS_IN","name":"Niila (age 7)","type":"Role","_key":"5549","_from":"4731","_to":"4727"} +{"$label":"ACTS_IN","name":"Matti (age 15)","type":"Role","_key":"5548","_from":"4730","_to":"4727"} +{"$label":"ACTS_IN","name":"Matti (age 7)","type":"Role","_key":"5547","_from":"4729","_to":"4727"} +{"$label":"DIRECTED","_key":"5546","_from":"4728","_to":"4727"} +{"$label":"ACTS_IN","name":"Raimo","type":"Role","_key":"50664","_from":"4733","_to":"33075"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"36040","_from":"4733","_to":"24463"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53254","_from":"4736","_to":"34435"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"8647","_from":"4737","_to":"7016"} +{"$label":"ACTS_IN","name":"Stor-Erik Marklund","type":"Role","_key":"111045","_from":"4738","_to":"65590"} +{"$label":"ACTS_IN","name":"Birger","type":"Role","_key":"8659","_from":"4738","_to":"7016"} +{"$label":"ACTS_IN","name":"Le policier 2","type":"Role","_key":"5573","_from":"4753","_to":"4740"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de Georges jeune","type":"Role","_key":"5572","_from":"4752","_to":"4740"} +{"$label":"ACTS_IN","name":"L'infirmi\u00e8re","type":"Role","_key":"5571","_from":"4751","_to":"4740"} +{"$label":"ACTS_IN","name":"Chantal","type":"Role","_key":"5570","_from":"4750","_to":"4740"} +{"$label":"ACTS_IN","name":"Yvon","type":"Role","_key":"5569","_from":"4749","_to":"4740"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"5568","_from":"4748","_to":"4740"} +{"$label":"ACTS_IN","name":"Pierrot Laurent","type":"Role","_key":"5567","_from":"4747","_to":"4740"} +{"$label":"ACTS_IN","name":"Le fils de Majid","type":"Role","_key":"5566","_from":"4746","_to":"4740"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"5564","_from":"4745","_to":"4740"} +{"$label":"ACTS_IN","name":"Le r\u00e9dacteur en chef","type":"Role","_key":"5563","_from":"4744","_to":"4740"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Georges","type":"Role","_key":"5562","_from":"4743","_to":"4740"} +{"$label":"ACTS_IN","name":"Georges Laurent","type":"Role","_key":"5560","_from":"4742","_to":"4740"} +{"$label":"DIRECTED","_key":"5559","_from":"4741","_to":"4740"} +{"$label":"DIRECTED","_key":"61850","_from":"4741","_to":"38933"} +{"$label":"DIRECTED","_key":"49921","_from":"4741","_to":"32684"} +{"$label":"DIRECTED","_key":"17201","_from":"4741","_to":"12888"} +{"$label":"DIRECTED","_key":"15555","_from":"4741","_to":"11877"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"113493","_from":"4742","_to":"66872"} +{"$label":"ACTS_IN","name":"Antoine Letoux","type":"Role","_key":"110558","_from":"4742","_to":"65327"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"105522","_from":"4742","_to":"62092"} +{"$label":"ACTS_IN","name":"Schneider","type":"Role","_key":"101711","_from":"4742","_to":"59865"} +{"$label":"ACTS_IN","name":"Jean-Christian Ranu","type":"Role","_key":"100087","_from":"4742","_to":"59036"} +{"$label":"ACTS_IN","name":"Romuald Blindet","type":"Role","_key":"70099","_from":"4742","_to":"42738"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Pignon","type":"Role","_key":"69870","_from":"4742","_to":"42634"} +{"$label":"ACTS_IN","name":"Henri de Navarre","type":"Role","_key":"63436","_from":"4742","_to":"39735"} +{"$label":"ACTS_IN","name":"Gabor","type":"Role","_key":"63019","_from":"4742","_to":"39553"} +{"$label":"ACTS_IN","name":"Philippe Le Tallec","type":"Role","_key":"62404","_from":"4742","_to":"39313"} +{"$label":"ACTS_IN","name":"Leo Vrinks","type":"Role","_key":"46249","_from":"4742","_to":"30575"} +{"$label":"ACTS_IN","name":"Peintre","type":"Role","_key":"32273","_from":"4742","_to":"22479"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"32235","_from":"4742","_to":"22464"} +{"$label":"ACTS_IN","name":"Ugolin","type":"Role","_key":"32027","_from":"4742","_to":"22316"} +{"$label":"ACTS_IN","name":"Ugolin","type":"Role","_key":"32016","_from":"4742","_to":"22309"} +{"$label":"ACTS_IN","name":"Duclaux","type":"Role","_key":"31229","_from":"4742","_to":"21854"} +{"$label":"ACTS_IN","name":"Abargadon","type":"Role","_key":"30688","_from":"4742","_to":"21536"} +{"$label":"ACTS_IN","name":"Martial Pasquier","type":"Role","_key":"17623","_from":"4742","_to":"13156"} +{"$label":"ACTS_IN","name":"Bernadette Daubray-Lacaze","type":"Role","_key":"70455","_from":"4743","_to":"42892"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"49617","_from":"4743","_to":"32475"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"37984","_from":"4743","_to":"25718"} +{"$label":"ACTS_IN","name":"Marie-Louise Boursault","type":"Role","_key":"20828","_from":"4743","_to":"15239"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"15557","_from":"4743","_to":"11877"} +{"$label":"ACTS_IN","name":"Walcott \/ Granger","type":"Role","_key":"96125","_from":"4744","_to":"56497"} +{"$label":"ACTS_IN","name":"G\u00e9rard Vasseur","type":"Role","_key":"66812","_from":"4744","_to":"41272"} +{"$label":"ACTS_IN","name":"Christian Licht","type":"Role","_key":"49247","_from":"4744","_to":"32254"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"42080","_from":"4744","_to":"28196"} +{"$label":"ACTS_IN","name":"Th\u00e9o","type":"Role","_key":"33747","_from":"4744","_to":"23273"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"27141","_from":"4744","_to":"19525"} +{"$label":"ACTS_IN","name":"Jean-Paul Boursault","type":"Role","_key":"20831","_from":"4744","_to":"15239"} +{"$label":"ACTS_IN","name":"Walter Gassman","type":"Role","_key":"104074","_from":"4745","_to":"61236"} +{"$label":"ACTS_IN","name":"P\u00e8re d\u2019Antoine","type":"Role","_key":"47864","_from":"4745","_to":"31503"} +{"$label":"ACTS_IN","name":"Eddy Valence","type":"Role","_key":"46254","_from":"4745","_to":"30575"} +{"$label":"ACTS_IN","name":"P\u00e8re","type":"Role","_key":"21979","_from":"4745","_to":"16047"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"20895","_from":"4745","_to":"15289"} +{"$label":"ACTS_IN","name":"Charlotte de Persand","type":"Role","_key":"54284","_from":"4748","_to":"34846"} +{"$label":"ACTS_IN","name":"Labouret","type":"Role","_key":"108455","_from":"4749","_to":"64113"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104470","_from":"4749","_to":"61445"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me","type":"Role","_key":"49714","_from":"4749","_to":"32530"} +{"$label":"ACTS_IN","name":"Sophie (Place des F\u00eates)","type":"Role","_key":"19880","_from":"4750","_to":"14635"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"12264","_from":"4750","_to":"9597"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"29344","_from":"4751","_to":"20840"} +{"$label":"ACTS_IN","name":"Jambier","type":"Role","_key":"46034","_from":"4753","_to":"30419"} +{"$label":"DIRECTED","_key":"5592","_from":"4769","_to":"4754"} +{"$label":"ACTS_IN","name":"Wilke","type":"Role","_key":"5591","_from":"4768","_to":"4754"} +{"$label":"ACTS_IN","name":"Beata","type":"Role","_key":"5589","_from":"4767","_to":"4754"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"5588","_from":"4766","_to":"4754"} +{"$label":"ACTS_IN","name":"Christoph","type":"Role","_key":"5587","_from":"4765","_to":"4754"} +{"$label":"ACTS_IN","name":"Marysia","type":"Role","_key":"5585","_from":"4764","_to":"4754"} +{"$label":"ACTS_IN","name":"Milena","type":"Role","_key":"5584","_from":"4763","_to":"4754"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"5582","_from":"4762","_to":"4754"} +{"$label":"ACTS_IN","name":"Ingo","type":"Role","_key":"5581","_from":"4761","_to":"4754"} +{"$label":"ACTS_IN","name":"Marko","type":"Role","_key":"5579","_from":"4760","_to":"4754"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"5578","_from":"4759","_to":"4754"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"5577","_from":"4758","_to":"4754"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"5576","_from":"4757","_to":"4754"} +{"$label":"ACTS_IN","name":"Dimitri","type":"Role","_key":"5575","_from":"4756","_to":"4754"} +{"$label":"ACTS_IN","name":"Kolja","type":"Role","_key":"5574","_from":"4755","_to":"4754"} +{"$label":"ACTS_IN","name":"Valeri Sikorski","type":"Role","_key":"90339","_from":"4755","_to":"53394"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"46811","_from":"4755","_to":"30882"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"49391","_from":"4758","_to":"32341"} +{"$label":"ACTS_IN","name":"Kolya Karloff","type":"Role","_key":"47404","_from":"4758","_to":"31223"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Bartsch als Junge","type":"Role","_key":"31274","_from":"4758","_to":"21872"} +{"$label":"ACTS_IN","name":"Regine Weyler","type":"Role","_key":"47682","_from":"4759","_to":"31413"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"20573","_from":"4759","_to":"15054"} +{"$label":"ACTS_IN","name":"Tommek","type":"Role","_key":"66594","_from":"4760","_to":"41168"} +{"$label":"ACTS_IN","name":"Manager Elektronische Zwerge","type":"Role","_key":"55686","_from":"4760","_to":"35440"} +{"$label":"ACTS_IN","name":"Hurwitz","type":"Role","_key":"69657","_from":"4761","_to":"42521"} +{"$label":"ACTS_IN","name":"Richard Sammer","type":"Role","_key":"47683","_from":"4761","_to":"31413"} +{"$label":"ACTS_IN","name":"Herzog","type":"Role","_key":"47400","_from":"4761","_to":"31223"} +{"$label":"ACTS_IN","name":"Henkel","type":"Role","_key":"36750","_from":"4761","_to":"24915"} +{"$label":"ACTS_IN","name":"Fenstermacher","type":"Role","_key":"35306","_from":"4761","_to":"24038"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"30394","_from":"4761","_to":"21376"} +{"$label":"ACTS_IN","name":"Lehmann","type":"Role","_key":"29160","_from":"4761","_to":"20765"} +{"$label":"ACTS_IN","name":"Philipp","type":"Role","_key":"25182","_from":"4761","_to":"18179"} +{"$label":"ACTS_IN","name":"Sachbearbeiterin","type":"Role","_key":"88385","_from":"4762","_to":"52391"} +{"$label":"ACTS_IN","name":"Olivers Mutter","type":"Role","_key":"65946","_from":"4762","_to":"40793"} +{"$label":"ACTS_IN","name":"Heimleiterin","type":"Role","_key":"12012","_from":"4762","_to":"9411"} +{"$label":"ACTS_IN","name":"Christian Becker","type":"Role","_key":"68373","_from":"4765","_to":"41957"} +{"$label":"ACTS_IN","name":"Axel Werner","type":"Role","_key":"67072","_from":"4765","_to":"41399"} +{"$label":"ACTS_IN","name":"Roth","type":"Role","_key":"52703","_from":"4765","_to":"34212"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"45429","_from":"4765","_to":"30110"} +{"$label":"ACTS_IN","name":"Kaspar","type":"Role","_key":"34460","_from":"4765","_to":"23601"} +{"$label":"ACTS_IN","name":"Kristall-Rainer","type":"Role","_key":"30974","_from":"4765","_to":"21698"} +{"$label":"ACTS_IN","name":"Sturmbannf\u00fchrer Dieter Hellstrom","type":"Role","_key":"110283","_from":"4766","_to":"65170"} +{"$label":"ACTS_IN","name":"Gerd","type":"Role","_key":"91788","_from":"4766","_to":"54145"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"87932","_from":"4766","_to":"52217"} +{"$label":"ACTS_IN","name":"Untersturmf\u00fchrer Gebhardt","type":"Role","_key":"68464","_from":"4766","_to":"41999"} +{"$label":"ACTS_IN","name":"Marc Schrader","type":"Role","_key":"57874","_from":"4766","_to":"36622"} +{"$label":"ACTS_IN","name":"Hugo Wimmer (jung)","type":"Role","_key":"51129","_from":"4766","_to":"33353"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"47736","_from":"4766","_to":"31437"} +{"$label":"ACTS_IN","name":"Martin Wegner","type":"Role","_key":"47679","_from":"4766","_to":"31413"} +{"$label":"ACTS_IN","name":"Burger","type":"Role","_key":"47399","_from":"4766","_to":"31223"} +{"$label":"ACTS_IN","name":"Robert Fabry","type":"Role","_key":"38273","_from":"4766","_to":"25853"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"34456","_from":"4766","_to":"23601"} +{"$label":"ACTS_IN","name":"Christian Buddenbrook","type":"Role","_key":"20468","_from":"4766","_to":"14974"} +{"$label":"ACTS_IN","name":"G\u00fcnther","type":"Role","_key":"17005","_from":"4766","_to":"12760"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"15056","_from":"4766","_to":"11571"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"13779","_from":"4766","_to":"10694"} +{"$label":"ACTS_IN","name":"Kriminalsekret\u00e4r Fabich","type":"Role","_key":"69070","_from":"4768","_to":"42269"} +{"$label":"ACTS_IN","name":"Otto Kullberg","type":"Role","_key":"54328","_from":"4768","_to":"34864"} +{"$label":"ACTS_IN","name":"Oskar Boroschnin","type":"Role","_key":"51893","_from":"4768","_to":"33851"} +{"$label":"ACTS_IN","name":"Jochen Gauditz","type":"Role","_key":"43145","_from":"4768","_to":"28811"} +{"$label":"ACTS_IN","name":"Hauptkommissar Robert Nebe","type":"Role","_key":"41980","_from":"4768","_to":"28132"} +{"$label":"ACTS_IN","name":"Sch\u00fcltke","type":"Role","_key":"37255","_from":"4768","_to":"25242"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"19581","_from":"4768","_to":"14478"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"19135","_from":"4768","_to":"14143"} +{"$label":"ACTS_IN","name":"Jackie Zucker","type":"Role","_key":"5729","_from":"4768","_to":"4870"} +{"$label":"DIRECTED","_key":"53448","_from":"4769","_to":"34531"} +{"$label":"DIRECTED","_key":"30779","_from":"4769","_to":"21582"} +{"$label":"DIRECTED","_key":"13777","_from":"4769","_to":"10694"} +{"$label":"DIRECTED","_key":"6255","_from":"4769","_to":"5291"} +{"$label":"DIRECTED","_key":"5604","_from":"4778","_to":"4770"} +{"$label":"ACTS_IN","name":"Hooker at bar","type":"Role","_key":"5603","_from":"4777","_to":"4770"} +{"$label":"ACTS_IN","name":"L.A. Bartender","type":"Role","_key":"5602","_from":"4776","_to":"4770"} +{"$label":"ACTS_IN","name":"Man At Bar","type":"Role","_key":"5600","_from":"4775","_to":"4770"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"5599","_from":"4774","_to":"4770"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"5598","_from":"4773","_to":"4770"} +{"$label":"ACTS_IN","name":"Marc Nussbaum","type":"Role","_key":"5597","_from":"4772","_to":"4770"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"5596","_from":"4771","_to":"4770"} +{"$label":"ACTS_IN","name":"Prince John","type":"Role","_key":"47710","_from":"4771","_to":"31431"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"38560","_from":"4771","_to":"26054"} +{"$label":"ACTS_IN","name":"Pierrot","type":"Role","_key":"27245","_from":"4771","_to":"19591"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"112270","_from":"4772","_to":"66294"} +{"$label":"ACTS_IN","name":"Brad Montroe","type":"Role","_key":"111395","_from":"4772","_to":"65780"} +{"$label":"ACTS_IN","name":"Simeon","type":"Role","_key":"108919","_from":"4772","_to":"64366"} +{"$label":"ACTS_IN","name":"Duncan Allanbrook","type":"Role","_key":"104913","_from":"4772","_to":"61735"} +{"$label":"ACTS_IN","name":"Frank Spivey","type":"Role","_key":"103275","_from":"4772","_to":"60760"} +{"$label":"ACTS_IN","name":"Samael","type":"Role","_key":"102204","_from":"4772","_to":"60140"} +{"$label":"ACTS_IN","name":"Jonathan Harker","type":"Role","_key":"88079","_from":"4772","_to":"52279"} +{"$label":"ACTS_IN","name":"Steve Ames","type":"Role","_key":"59272","_from":"4772","_to":"37437"} +{"$label":"ACTS_IN","name":"Sam Rawson","type":"Role","_key":"54980","_from":"4772","_to":"35139"} +{"$label":"ACTS_IN","name":"Policeman in Alley","type":"Role","_key":"31045","_from":"4772","_to":"21724"} +{"$label":"ACTS_IN","name":"Leah Fuller","type":"Role","_key":"70698","_from":"4774","_to":"43005"} +{"$label":"ACTS_IN","name":"Julie Rubins","type":"Role","_key":"70245","_from":"4774","_to":"42808"} +{"$label":"ACTS_IN","name":"Cutler","type":"Role","_key":"115807","_from":"4776","_to":"68174"} +{"$label":"ACTS_IN","name":"Rizzo","type":"Role","_key":"67209","_from":"4776","_to":"41452"} +{"$label":"ACTS_IN","name":"John Taylor","type":"Role","_key":"63190","_from":"4776","_to":"39631"} +{"$label":"ACTS_IN","name":"Adm. Chester W. Nimitz","type":"Role","_key":"8148","_from":"4776","_to":"6692"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"116404","_from":"4777","_to":"68524"} +{"$label":"ACTS_IN","name":"Myra Okubo","type":"Role","_key":"57188","_from":"4777","_to":"36281"} +{"$label":"DIRECTED","_key":"102986","_from":"4778","_to":"60579"} +{"$label":"DIRECTED","_key":"91408","_from":"4778","_to":"53909"} +{"$label":"DIRECTED","_key":"90628","_from":"4778","_to":"53516"} +{"$label":"DIRECTED","_key":"67628","_from":"4778","_to":"41621"} +{"$label":"DIRECTED","_key":"22292","_from":"4778","_to":"16209"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"22284","_from":"4778","_to":"16209"} +{"$label":"ACTS_IN","name":"Axel's Wife","type":"Role","_key":"5633","_from":"4804","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen's Sister Britta","type":"Role","_key":"5632","_from":"4803","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen's Sister Louise","type":"Role","_key":"5631","_from":"4802","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen's Grandfather","type":"Role","_key":"5630","_from":"4801","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen's Mother","type":"Role","_key":"5629","_from":"4800","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen's Husband Anders","type":"Role","_key":"5628","_from":"4799","_to":"4779"} +{"$label":"ACTS_IN","name":"Rocker Girl Linda","type":"Role","_key":"5627","_from":"4798","_to":"4779"} +{"$label":"ACTS_IN","name":"Rocker #3","type":"Role","_key":"5626","_from":"4797","_to":"4779"} +{"$label":"ACTS_IN","name":"Rocker #2","type":"Role","_key":"5625","_from":"4796","_to":"4779"} +{"$label":"ACTS_IN","name":"Rocker #1","type":"Role","_key":"5624","_from":"4795","_to":"4779"} +{"$label":"ACTS_IN","name":"Man in Morning-Jacket","type":"Role","_key":"5623","_from":"4794","_to":"4779"} +{"$label":"ACTS_IN","name":"Boss at Advertising Agency","type":"Role","_key":"5622","_from":"4793","_to":"4779"} +{"$label":"ACTS_IN","name":"Guide at Factory","type":"Role","_key":"5621","_from":"4792","_to":"4779"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"5620","_from":"4791","_to":"4779"} +{"$label":"ACTS_IN","name":"Man from Municipality","type":"Role","_key":"5618","_from":"4790","_to":"4779"} +{"$label":"ACTS_IN","name":"Stoffer's Uncle Svend","type":"Role","_key":"5617","_from":"4789","_to":"4779"} +{"$label":"ACTS_IN","name":"Katrine","type":"Role","_key":"5615","_from":"4788","_to":"4779"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"5614","_from":"4787","_to":"4779"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"5613","_from":"4786","_to":"4779"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"5612","_from":"4785","_to":"4779"} +{"$label":"ACTS_IN","name":"Ped","type":"Role","_key":"5611","_from":"4784","_to":"4779"} +{"$label":"ACTS_IN","name":"Josephine","type":"Role","_key":"5610","_from":"4783","_to":"4779"} +{"$label":"ACTS_IN","name":"Henrik","type":"Role","_key":"5608","_from":"4782","_to":"4779"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"5607","_from":"4781","_to":"4779"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"5605","_from":"4780","_to":"4779"} +{"$label":"ACTS_IN","name":"Gunvor","type":"Role","_key":"36282","_from":"4780","_to":"24611"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"35236","_from":"4780","_to":"23998"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"106077","_from":"4782","_to":"62463"} +{"$label":"ACTS_IN","name":"Theodor","type":"Role","_key":"103372","_from":"4782","_to":"60810"} +{"$label":"ACTS_IN","name":"J\u00f8rgen","type":"Role","_key":"102345","_from":"4782","_to":"60216"} +{"$label":"ACTS_IN","name":"Mette","type":"Role","_key":"36440","_from":"4783","_to":"24720"} +{"$label":"ACTS_IN","name":"Nalle","type":"Role","_key":"36437","_from":"4784","_to":"24720"} +{"$label":"ACTS_IN","name":"Frits Mutter Stine","type":"Role","_key":"15878","_from":"4788","_to":"12080"} +{"$label":"ACTS_IN","name":"Frits Vater Peder","type":"Role","_key":"15877","_from":"4793","_to":"12080"} +{"$label":"ACTS_IN","name":"Toiletpasser","type":"Role","_key":"106053","_from":"4794","_to":"62450"} +{"$label":"ACTS_IN","name":"Police officer (as Henrik Clemmesen)","type":"Role","_key":"119601","_from":"4799","_to":"70250"} +{"$label":"ACTS_IN","name":"John Nash Young Man","type":"Role","_key":"5661","_from":"4827","_to":"4805"} +{"$label":"ACTS_IN","name":"John Nash Teenager","type":"Role","_key":"5660","_from":"4826","_to":"4805"} +{"$label":"ACTS_IN","name":"Princeton Professor","type":"Role","_key":"5659","_from":"4825","_to":"4805"} +{"$label":"ACTS_IN","name":"Harvard Administrator","type":"Role","_key":"5658","_from":"4824","_to":"4805"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"5657","_from":"4823","_to":"4805"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"5656","_from":"4822","_to":"4805"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"5655","_from":"4821","_to":"4805"} +{"$label":"ACTS_IN","name":"MIT Student","type":"Role","_key":"5654","_from":"4820","_to":"4805"} +{"$label":"ACTS_IN","name":"Analyst","type":"Role","_key":"5653","_from":"4819","_to":"4805"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"5652","_from":"4818","_to":"4805"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"5651","_from":"4817","_to":"4805"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"5650","_from":"4816","_to":"4805"} +{"$label":"ACTS_IN","name":"Prof. Horner","type":"Role","_key":"5649","_from":"4815","_to":"4805"} +{"$label":"ACTS_IN","name":"Bar Co-Ed","type":"Role","_key":"5648","_from":"4814","_to":"4805"} +{"$label":"ACTS_IN","name":"Marcee","type":"Role","_key":"5647","_from":"4813","_to":"4805"} +{"$label":"ACTS_IN","name":"Thomas King","type":"Role","_key":"5646","_from":"4812","_to":"4805"} +{"$label":"ACTS_IN","name":"Ainsley","type":"Role","_key":"5644","_from":"4811","_to":"4805"} +{"$label":"ACTS_IN","name":"Bender","type":"Role","_key":"5643","_from":"4810","_to":"4805"} +{"$label":"ACTS_IN","name":"Hansen","type":"Role","_key":"5642","_from":"4809","_to":"4805"} +{"$label":"ACTS_IN","name":"Sol","type":"Role","_key":"5641","_from":"4808","_to":"4805"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"5640","_from":"4807","_to":"4805"} +{"$label":"ACTS_IN","name":"Alicia Nash","type":"Role","_key":"5638","_from":"4806","_to":"4805"} +{"$label":"ACTS_IN","name":"Josie McClellan","type":"Role","_key":"108417","_from":"4806","_to":"64098"} +{"$label":"ACTS_IN","name":"Gloria Harper","type":"Role","_key":"102181","_from":"4806","_to":"60132"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"95372","_from":"4806","_to":"56100"} +{"$label":"ACTS_IN","name":"Eleanor Abbott","type":"Role","_key":"91262","_from":"4806","_to":"53818"} +{"$label":"ACTS_IN","name":"Ruth Kligman","type":"Role","_key":"89956","_from":"4806","_to":"53218"} +{"$label":"ACTS_IN","name":"7 (voice)","type":"Role","_key":"89003","_from":"4806","_to":"52724"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"67835","_from":"4806","_to":"41689"} +{"$label":"ACTS_IN","name":"Allison Pond","type":"Role","_key":"67128","_from":"4806","_to":"41425"} +{"$label":"ACTS_IN","name":"Jenny Blake","type":"Role","_key":"61962","_from":"4806","_to":"39003"} +{"$label":"ACTS_IN","name":"Helen Benson","type":"Role","_key":"61661","_from":"4806","_to":"38850"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"61509","_from":"4806","_to":"38795"} +{"$label":"ACTS_IN","name":"Dahlia Williams","type":"Role","_key":"51975","_from":"4806","_to":"33896"} +{"$label":"ACTS_IN","name":"Grace Learner","type":"Role","_key":"51634","_from":"4806","_to":"33692"} +{"$label":"ACTS_IN","name":"Emma Murdoch","type":"Role","_key":"22586","_from":"4806","_to":"16394"} +{"$label":"ACTS_IN","name":"Dr. Betty Ross","type":"Role","_key":"16711","_from":"4806","_to":"12608"} +{"$label":"ACTS_IN","name":"Kathy Adamson","type":"Role","_key":"13310","_from":"4806","_to":"10364"} +{"$label":"ACTS_IN","name":"Maddy Bowen","type":"Role","_key":"12733","_from":"4806","_to":"9942"} +{"$label":"ACTS_IN","name":"Marion Silver","type":"Role","_key":"7669","_from":"4806","_to":"6372"} +{"$label":"ACTS_IN","name":"Lord Melbourne","type":"Role","_key":"115819","_from":"4807","_to":"68180"} +{"$label":"ACTS_IN","name":"Peter Colt","type":"Role","_key":"72202","_from":"4807","_to":"43633"} +{"$label":"ACTS_IN","name":"younger Gangster","type":"Role","_key":"62977","_from":"4807","_to":"39542"} +{"$label":"ACTS_IN","name":"Bill Cox","type":"Role","_key":"56302","_from":"4807","_to":"35776"} +{"$label":"ACTS_IN","name":"Geoffrey Chaucer","type":"Role","_key":"54102","_from":"4807","_to":"34782"} +{"$label":"ACTS_IN","name":"Dr. Stephen Maturin","type":"Role","_key":"50275","_from":"4807","_to":"32851"} +{"$label":"ACTS_IN","name":"Dustfinger","type":"Role","_key":"20277","_from":"4807","_to":"14864"} +{"$label":"ACTS_IN","name":"Silas","type":"Role","_key":"7095","_from":"4807","_to":"5934"} +{"$label":"ACTS_IN","name":"Tom Edison","type":"Role","_key":"6604","_from":"4807","_to":"5579"} +{"$label":"ACTS_IN","name":"The Hebrew Hammer","type":"Role","_key":"119148","_from":"4808","_to":"70022"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"107698","_from":"4808","_to":"63574"} +{"$label":"ACTS_IN","name":"Mars Psychiatrist","type":"Role","_key":"98469","_from":"4808","_to":"58017"} +{"$label":"ACTS_IN","name":"Kujo","type":"Role","_key":"70044","_from":"4808","_to":"42710"} +{"$label":"ACTS_IN","name":"Miller Banks","type":"Role","_key":"60209","_from":"4808","_to":"37980"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"58070","_from":"4808","_to":"36740"} +{"$label":"ACTS_IN","name":"Phil Balow","type":"Role","_key":"56738","_from":"4808","_to":"36041"} +{"$label":"ACTS_IN","name":"Mike Newhouse","type":"Role","_key":"54768","_from":"4808","_to":"35048"} +{"$label":"ACTS_IN","name":"One of Four Men","type":"Role","_key":"52454","_from":"4808","_to":"34121"} +{"$label":"ACTS_IN","name":"Dr. Alexander Denny","type":"Role","_key":"47187","_from":"4808","_to":"31106"} +{"$label":"ACTS_IN","name":"Detec. Michael Sloane","type":"Role","_key":"25299","_from":"4808","_to":"18235"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"15922","_from":"4808","_to":"12115"} +{"$label":"ACTS_IN","name":"Private Stanley Mellish","type":"Role","_key":"10188","_from":"4808","_to":"8132"} +{"$label":"ACTS_IN","name":"Deel Munn","type":"Role","_key":"107248","_from":"4809","_to":"63247"} +{"$label":"ACTS_IN","name":"Jason Lair","type":"Role","_key":"104731","_from":"4809","_to":"61613"} +{"$label":"ACTS_IN","name":"Rich Janes","type":"Role","_key":"95049","_from":"4809","_to":"55951"} +{"$label":"ACTS_IN","name":"Officer Tom McGonigle","type":"Role","_key":"71774","_from":"4809","_to":"43442"} +{"$label":"ACTS_IN","name":"Jake Perry","type":"Role","_key":"70450","_from":"4809","_to":"42891"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"67018","_from":"4809","_to":"41373"} +{"$label":"ACTS_IN","name":"Lt. Ben Gannon","type":"Role","_key":"59904","_from":"4809","_to":"37824"} +{"$label":"ACTS_IN","name":"Don Haskins","type":"Role","_key":"58045","_from":"4809","_to":"36729"} +{"$label":"ACTS_IN","name":"Felipe Restano","type":"Role","_key":"46416","_from":"4809","_to":"30656"} +{"$label":"ACTS_IN","name":"Ron Launius","type":"Role","_key":"35462","_from":"4809","_to":"24121"} +{"$label":"ACTS_IN","name":"Crane Curtis","type":"Role","_key":"16898","_from":"4809","_to":"12705"} +{"$label":"ACTS_IN","name":"Major Glenn Talbot","type":"Role","_key":"16714","_from":"4809","_to":"12608"} +{"$label":"ACTS_IN","name":"Craig McDermott","type":"Role","_key":"12542","_from":"4809","_to":"9822"} +{"$label":"ACTS_IN","name":"Dylan Johns","type":"Role","_key":"6077","_from":"4809","_to":"5157"} +{"$label":"ACTS_IN","name":"Daryl Coopersmith","type":"Role","_key":"99827","_from":"4810","_to":"58883"} +{"$label":"ACTS_IN","name":"Mark Cohen","type":"Role","_key":"15826","_from":"4810","_to":"12045"} +{"$label":"ACTS_IN","name":"Lieutenant Harold Schrier","type":"Role","_key":"28501","_from":"4811","_to":"20373"} +{"$label":"ACTS_IN","name":"Alex Mason, Sr.","type":"Role","_key":"119920","_from":"4812","_to":"70418"} +{"$label":"ACTS_IN","name":"Gus Falk","type":"Role","_key":"116560","_from":"4812","_to":"68610"} +{"$label":"ACTS_IN","name":"Richter Paul Z. Graff","type":"Role","_key":"113890","_from":"4812","_to":"67087"} +{"$label":"ACTS_IN","name":"Mr. McConkey","type":"Role","_key":"102510","_from":"4812","_to":"60309"} +{"$label":"ACTS_IN","name":"Umbrella Santa \/ Marty","type":"Role","_key":"95822","_from":"4812","_to":"56354"} +{"$label":"ACTS_IN","name":"Chef Oscar","type":"Role","_key":"63459","_from":"4812","_to":"39745"} +{"$label":"ACTS_IN","name":"Frederick Larrabee","type":"Role","_key":"45261","_from":"4812","_to":"30037"} +{"$label":"ACTS_IN","name":"Earl Fowler","type":"Role","_key":"43561","_from":"4812","_to":"29097"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"28189","_from":"4812","_to":"20190"} +{"$label":"ACTS_IN","name":"Howard Marner","type":"Role","_key":"22149","_from":"4812","_to":"16152"} +{"$label":"ACTS_IN","name":"Earl Williams","type":"Role","_key":"11676","_from":"4812","_to":"9168"} +{"$label":"ACTS_IN","name":"Mitchell","type":"Role","_key":"107601","_from":"4825","_to":"63517"} +{"$label":"ACTS_IN","name":"Dr. Godfrey","type":"Role","_key":"92794","_from":"4825","_to":"54739"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"17871","_from":"4825","_to":"13303"} +{"$label":"ACTS_IN","name":"Raphael","type":"Role","_key":"13561","_from":"4825","_to":"10547"} +{"$label":"DIRECTED","_key":"5678","_from":"4838","_to":"4828"} +{"$label":"ACTS_IN","name":"Dave Paris","type":"Role","_key":"5677","_from":"4837","_to":"4828"} +{"$label":"ACTS_IN","name":"Anchorwoman","type":"Role","_key":"5676","_from":"4836","_to":"4828"} +{"$label":"ACTS_IN","name":"Sampson","type":"Role","_key":"5673","_from":"4835","_to":"4828"} +{"$label":"ACTS_IN","name":"Zak Orth","type":"Role","_key":"5672","_from":"4834","_to":"4828"} +{"$label":"ACTS_IN","name":"Gloria Capulet","type":"Role","_key":"5671","_from":"4833","_to":"4828"} +{"$label":"ACTS_IN","name":"The Nurse","type":"Role","_key":"5670","_from":"4832","_to":"4828"} +{"$label":"ACTS_IN","name":"Captain Prince","type":"Role","_key":"5669","_from":"4831","_to":"4828"} +{"$label":"ACTS_IN","name":"Ted Montague","type":"Role","_key":"5668","_from":"4830","_to":"4828"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"5662","_from":"4829","_to":"4828"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"91112","_from":"4829","_to":"53754"} +{"$label":"ACTS_IN","name":"Roger Ferris","type":"Role","_key":"88094","_from":"4829","_to":"52284"} +{"$label":"ACTS_IN","name":"Fee Herod \u201eThe Kid\u201c","type":"Role","_key":"88053","_from":"4829","_to":"52269"} +{"$label":"ACTS_IN","name":"Teddy Daniels","type":"Role","_key":"69136","_from":"4829","_to":"42293"} +{"$label":"ACTS_IN","name":"Jim Carroll","type":"Role","_key":"63541","_from":"4829","_to":"39775"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"57137","_from":"4829","_to":"36267"} +{"$label":"ACTS_IN","name":"Brandon","type":"Role","_key":"54043","_from":"4829","_to":"34763"} +{"$label":"ACTS_IN","name":"King Louis XIV \/ Philippe","type":"Role","_key":"53057","_from":"4829","_to":"34349"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"52698","_from":"4829","_to":"34211"} +{"$label":"ACTS_IN","name":"Tobias Wolff","type":"Role","_key":"48202","_from":"4829","_to":"31667"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"34272","_from":"4829","_to":"23516"} +{"$label":"ACTS_IN","name":"Frank Wheeler","type":"Role","_key":"29781","_from":"4829","_to":"21077"} +{"$label":"ACTS_IN","name":"Amsterdam Vallon","type":"Role","_key":"26219","_from":"4829","_to":"18837"} +{"$label":"ACTS_IN","name":"Howard Hughes","type":"Role","_key":"21989","_from":"4829","_to":"16058"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"16467","_from":"4829","_to":"12443"} +{"$label":"ACTS_IN","name":"Arnie Grape","type":"Role","_key":"14056","_from":"4829","_to":"10899"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"13167","_from":"4829","_to":"10265"} +{"$label":"ACTS_IN","name":"Danny Archer","type":"Role","_key":"12731","_from":"4829","_to":"9942"} +{"$label":"ACTS_IN","name":"Frank Abagnale Jr.","type":"Role","_key":"7647","_from":"4829","_to":"6359"} +{"$label":"ACTS_IN","name":"Jack Dawson","type":"Role","_key":"7179","_from":"4829","_to":"6002"} +{"$label":"ACTS_IN","name":"Stourley Kracklite","type":"Role","_key":"111628","_from":"4830","_to":"65904"} +{"$label":"ACTS_IN","name":"Leo McCarthy","type":"Role","_key":"110127","_from":"4830","_to":"65075"} +{"$label":"ACTS_IN","name":"Jimmy Horn","type":"Role","_key":"108150","_from":"4830","_to":"63916"} +{"$label":"ACTS_IN","name":"Fergie","type":"Role","_key":"105330","_from":"4830","_to":"61977"} +{"$label":"ACTS_IN","name":"Babe Ruth (voice)","type":"Role","_key":"103618","_from":"4830","_to":"60944"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"99394","_from":"4830","_to":"58581"} +{"$label":"ACTS_IN","name":"Harrison","type":"Role","_key":"97838","_from":"4830","_to":"57625"} +{"$label":"ACTS_IN","name":"Lieutentant Hingis","type":"Role","_key":"94252","_from":"4830","_to":"55507"} +{"$label":"ACTS_IN","name":"Agent Horvath","type":"Role","_key":"93411","_from":"4830","_to":"55011"} +{"$label":"ACTS_IN","name":"Thomas 'Big Tom' Callahan","type":"Role","_key":"69516","_from":"4830","_to":"42464"} +{"$label":"ACTS_IN","name":"Raymond Horgan","type":"Role","_key":"67831","_from":"4830","_to":"41688"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"62614","_from":"4830","_to":"39390"} +{"$label":"ACTS_IN","name":"Cavanaugh","type":"Role","_key":"58236","_from":"4830","_to":"36833"} +{"$label":"ACTS_IN","name":"Lt. Leo McCarthy","type":"Role","_key":"57518","_from":"4830","_to":"36445"} +{"$label":"ACTS_IN","name":"Sargeant Jasper O'Shea","type":"Role","_key":"51806","_from":"4830","_to":"33802"} +{"$label":"ACTS_IN","name":"William Kirwill","type":"Role","_key":"48872","_from":"4830","_to":"32046"} +{"$label":"ACTS_IN","name":"Frizzoli","type":"Role","_key":"37577","_from":"4830","_to":"25467"} +{"$label":"ACTS_IN","name":"T.J. Lambert","type":"Role","_key":"35383","_from":"4830","_to":"24080"} +{"$label":"ACTS_IN","name":"Dennis Meechum","type":"Role","_key":"33131","_from":"4830","_to":"22943"} +{"$label":"ACTS_IN","name":"Django","type":"Role","_key":"17941","_from":"4830","_to":"13345"} +{"$label":"ACTS_IN","name":"Hope Sheriff Will Teasle","type":"Role","_key":"12669","_from":"4830","_to":"9895"} +{"$label":"DIRECTED","_key":"89822","_from":"4831","_to":"53151"} +{"$label":"DIRECTED","_key":"65111","_from":"4831","_to":"40444"} +{"$label":"DIRECTED","_key":"58023","_from":"4831","_to":"36714"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"59157","_from":"4831","_to":"37349"} +{"$label":"ACTS_IN","name":"Chief Sam Rhodes","type":"Role","_key":"52593","_from":"4831","_to":"34175"} +{"$label":"ACTS_IN","name":"Sunny Jim Kelsey","type":"Role","_key":"43972","_from":"4831","_to":"29330"} +{"$label":"ACTS_IN","name":"Ticket Girl","type":"Role","_key":"120535","_from":"4832","_to":"70790"} +{"$label":"ACTS_IN","name":"Rose Sonnenschein","type":"Role","_key":"113900","_from":"4832","_to":"67089"} +{"$label":"ACTS_IN","name":"Nanette Streicherov\u00e1","type":"Role","_key":"95982","_from":"4832","_to":"56429"} +{"$label":"ACTS_IN","name":"Sophie the Castle Maid","type":"Role","_key":"67152","_from":"4832","_to":"41435"} +{"$label":"ACTS_IN","name":"Thelma & Selma","type":"Role","_key":"66732","_from":"4832","_to":"41220"} +{"$label":"ACTS_IN","name":"Peg Sellers","type":"Role","_key":"64502","_from":"4832","_to":"40184"} +{"$label":"ACTS_IN","name":"Tante Schwamm","type":"Role","_key":"63933","_from":"4832","_to":"39934"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"58344","_from":"4832","_to":"36876"} +{"$label":"ACTS_IN","name":"Mrs. Astrakhan","type":"Role","_key":"57340","_from":"4832","_to":"36355"} +{"$label":"ACTS_IN","name":"Fly the Female Sheepdog (voice)","type":"Role","_key":"54933","_from":"4832","_to":"35123"} +{"$label":"ACTS_IN","name":"Joey's Mother","type":"Role","_key":"25933","_from":"4832","_to":"18645"} +{"$label":"ACTS_IN","name":"Realtor","type":"Role","_key":"24770","_from":"4832","_to":"17908"} +{"$label":"ACTS_IN","name":"Sylvia Vadalos","type":"Role","_key":"104875","_from":"4833","_to":"61706"} +{"$label":"ACTS_IN","name":"Rebecca Neff","type":"Role","_key":"65266","_from":"4833","_to":"40513"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"65066","_from":"4833","_to":"40428"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"57519","_from":"4833","_to":"36445"} +{"$label":"ACTS_IN","name":"Liane Wigand","type":"Role","_key":"51974","_from":"4833","_to":"33895"} +{"$label":"ACTS_IN","name":"Major Valentina Koslova","type":"Role","_key":"34243","_from":"4833","_to":"23506"} +{"$label":"ACTS_IN","name":"Corinna","type":"Role","_key":"22385","_from":"4833","_to":"16258"} +{"$label":"ACTS_IN","name":"Justine Hanna","type":"Role","_key":"11326","_from":"4833","_to":"8936"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"97568","_from":"4834","_to":"57454"} +{"$label":"ACTS_IN","name":"Wendall Wimms","type":"Role","_key":"93158","_from":"4834","_to":"54901"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"64793","_from":"4834","_to":"40315"} +{"$label":"ACTS_IN","name":"Butch","type":"Role","_key":"57289","_from":"4834","_to":"36323"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"55652","_from":"4834","_to":"35428"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"20332","_from":"4834","_to":"14890"} +{"$label":"ACTS_IN","name":"J.J.","type":"Role","_key":"18899","_from":"4834","_to":"13951"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"98945","_from":"4835","_to":"58292"} +{"$label":"ACTS_IN","name":"B-Rad","type":"Role","_key":"94363","_from":"4835","_to":"55568"} +{"$label":"ACTS_IN","name":"Justin Schumacher","type":"Role","_key":"93691","_from":"4835","_to":"55157"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"69316","_from":"4835","_to":"42372"} +{"$label":"ACTS_IN","name":"The Mask","type":"Role","_key":"61748","_from":"4835","_to":"38884"} +{"$label":"ACTS_IN","name":"Walter Wogaman","type":"Role","_key":"43351","_from":"4835","_to":"28963"} +{"$label":"ACTS_IN","name":"Randy Meeks","type":"Role","_key":"30306","_from":"4835","_to":"21314"} +{"$label":"ACTS_IN","name":"Randy Meeks","type":"Role","_key":"30285","_from":"4835","_to":"21313"} +{"$label":"ACTS_IN","name":"Randy Meeks","type":"Role","_key":"30267","_from":"4835","_to":"21306"} +{"$label":"ACTS_IN","name":"Hunt","type":"Role","_key":"112253","_from":"4837","_to":"66291"} +{"$label":"ACTS_IN","name":"George Hanson","type":"Role","_key":"111184","_from":"4837","_to":"65664"} +{"$label":"ACTS_IN","name":"Peter Klaven","type":"Role","_key":"109423","_from":"4837","_to":"64647"} +{"$label":"ACTS_IN","name":"Derek (voice)","type":"Role","_key":"104775","_from":"4837","_to":"61645"} +{"$label":"ACTS_IN","name":"Danny Donahue","type":"Role","_key":"104156","_from":"4837","_to":"61278"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"103717","_from":"4837","_to":"61002"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"102765","_from":"4837","_to":"60460"} +{"$label":"ACTS_IN","name":"Jack Chase","type":"Role","_key":"100479","_from":"4837","_to":"59246"} +{"$label":"ACTS_IN","name":"Jeff Reigert","type":"Role","_key":"93171","_from":"4837","_to":"54908"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"93065","_from":"4837","_to":"54864"} +{"$label":"ACTS_IN","name":"Tommy Doyle","type":"Role","_key":"67108","_from":"4837","_to":"41418"} +{"$label":"ACTS_IN","name":"Brian Fantana","type":"Role","_key":"58645","_from":"4837","_to":"37052"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"57497","_from":"4837","_to":"36436"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"54969","_from":"4837","_to":"35134"} +{"$label":"ACTS_IN","name":"Brian Fantana","type":"Role","_key":"50545","_from":"4837","_to":"33010"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"45317","_from":"4837","_to":"30057"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"35177","_from":"4837","_to":"23973"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"18901","_from":"4837","_to":"13951"} +{"$label":"ACTS_IN","name":"Wally Worthington","type":"Role","_key":"15164","_from":"4837","_to":"11627"} +{"$label":"DIRECTED","_key":"63067","_from":"4838","_to":"39571"} +{"$label":"DIRECTED","_key":"45492","_from":"4838","_to":"30139"} +{"$label":"DIRECTED","_key":"9723","_from":"4838","_to":"7809"} +{"$label":"DIRECTED","_key":"5688","_from":"4846","_to":"4839"} +{"$label":"ACTS_IN","name":"Pinky Bhamra","type":"Role","_key":"5687","_from":"4845","_to":"4839"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"5686","_from":"4844","_to":"4839"} +{"$label":"ACTS_IN","name":"Paula Paxton","type":"Role","_key":"5685","_from":"4843","_to":"4839"} +{"$label":"ACTS_IN","name":"Mrs. Bhamra","type":"Role","_key":"5683","_from":"4842","_to":"4839"} +{"$label":"ACTS_IN","name":"Mr. Bhamra","type":"Role","_key":"5682","_from":"4841","_to":"4839"} +{"$label":"ACTS_IN","name":"Jesminder 'Jess' Kaur Bhamra","type":"Role","_key":"5679","_from":"4840","_to":"4839"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"120431","_from":"4840","_to":"70750"} +{"$label":"ACTS_IN","name":"Areida","type":"Role","_key":"100296","_from":"4840","_to":"59140"} +{"$label":"ACTS_IN","name":"Prakash Rathod","type":"Role","_key":"120933","_from":"4841","_to":"71017"} +{"$label":"ACTS_IN","name":"Jeetu's Father","type":"Role","_key":"120718","_from":"4841","_to":"70898"} +{"$label":"ACTS_IN","name":"Dharamvir Malhotra","type":"Role","_key":"120048","_from":"4841","_to":"70499"} +{"$label":"ACTS_IN","name":"Mr. Saxena\/Sirjee","type":"Role","_key":"110712","_from":"4841","_to":"65406"} +{"$label":"ACTS_IN","name":"Kake","type":"Role","_key":"70366","_from":"4841","_to":"42859"} +{"$label":"ACTS_IN","name":"Geeta's Grandfather","type":"Role","_key":"56029","_from":"4841","_to":"35612"} +{"$label":"ACTS_IN","name":"Indischer Juwelier","type":"Role","_key":"32883","_from":"4841","_to":"22819"} +{"$label":"ACTS_IN","name":"Zakir Ahmed","type":"Role","_key":"30497","_from":"4841","_to":"21432"} +{"$label":"ACTS_IN","name":"Malhotra","type":"Role","_key":"29835","_from":"4841","_to":"21106"} +{"$label":"ACTS_IN","name":"Jagit's Mother","type":"Role","_key":"56030","_from":"4842","_to":"35612"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"115814","_from":"4843","_to":"68179"} +{"$label":"ACTS_IN","name":"Annie Pierrepoint","type":"Role","_key":"103520","_from":"4843","_to":"60901"} +{"$label":"ACTS_IN","name":"Diana Vreeland","type":"Role","_key":"55446","_from":"4843","_to":"35334"} +{"$label":"ACTS_IN","name":"Casting Girl","type":"Role","_key":"102776","_from":"4845","_to":"60460"} +{"$label":"ACTS_IN","name":"Chandra Dawkin","type":"Role","_key":"93749","_from":"4845","_to":"55182"} +{"$label":"ACTS_IN","name":"Gemma","type":"Role","_key":"56108","_from":"4845","_to":"35624"} +{"$label":"ACTS_IN","name":"Asra Q. Nomani","type":"Role","_key":"17219","_from":"4845","_to":"12891"} +{"$label":"DIRECTED","_key":"91006","_from":"4846","_to":"53699"} +{"$label":"DIRECTED","_key":"90177","_from":"4846","_to":"53317"} +{"$label":"DIRECTED","_key":"56040","_from":"4846","_to":"35612"} +{"$label":"DIRECTED","_key":"19840","_from":"4846","_to":"14635"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"5702","_from":"4862","_to":"4848"} +{"$label":"ACTS_IN","name":"Marschall Radetzky","type":"Role","_key":"5701","_from":"4861","_to":"4848"} +{"$label":"ACTS_IN","name":"Graf Gr\u00fcnne","type":"Role","_key":"5700","_from":"4860","_to":"4848"} +{"$label":"ACTS_IN","name":"Baronin Wulffen","type":"Role","_key":"5699","_from":"4859","_to":"4848"} +{"$label":"ACTS_IN","name":"Erzherzog Karl-Ludwig","type":"Role","_key":"5698","_from":"4858","_to":"4848"} +{"$label":"ACTS_IN","name":"Erzherzog Franz Karl","type":"Role","_key":"5697","_from":"4857","_to":"4848"} +{"$label":"ACTS_IN","name":"Gendarmeriemajor Boeckl","type":"Role","_key":"5696","_from":"4856","_to":"4848"} +{"$label":"ACTS_IN","name":"Erzherzogin Sophie","type":"Role","_key":"5695","_from":"4855","_to":"4848"} +{"$label":"ACTS_IN","name":"Herzog Max","type":"Role","_key":"5694","_from":"4854","_to":"4848"} +{"$label":"ACTS_IN","name":"Prinzessin Helene","type":"Role","_key":"5693","_from":"4853","_to":"4848"} +{"$label":"ACTS_IN","name":"Herzogin Ludovika","type":"Role","_key":"5692","_from":"4852","_to":"4848"} +{"$label":"ACTS_IN","name":"Kaiser Franz Joseph","type":"Role","_key":"5691","_from":"4851","_to":"4848"} +{"$label":"ACTS_IN","name":"Prinzessin Elisabeth","type":"Role","_key":"5690","_from":"4850","_to":"4848"} +{"$label":"DIRECTED","_key":"5689","_from":"4849","_to":"4848"} +{"$label":"DIRECTED","_key":"44722","_from":"4849","_to":"29760"} +{"$label":"DIRECTED","_key":"5728","_from":"4849","_to":"4867"} +{"$label":"DIRECTED","_key":"5703","_from":"4849","_to":"4863"} +{"$label":"ACTS_IN","name":"Begleiterin von Freddy (unkreditiert)","type":"Role","_key":"62816","_from":"4850","_to":"39474"} +{"$label":"ACTS_IN","name":"Evchen Forster","type":"Role","_key":"45524","_from":"4850","_to":"30151"} +{"$label":"ACTS_IN","name":"Constanze \" Stanzi \" H\u00fcbner","type":"Role","_key":"44724","_from":"4850","_to":"29760"} +{"$label":"ACTS_IN","name":"Anna Oberholzer","type":"Role","_key":"42324","_from":"4850","_to":"28337"} +{"$label":"ACTS_IN","name":"Elsa Wiener \/ Lina Baumstein","type":"Role","_key":"35745","_from":"4850","_to":"24292"} +{"$label":"ACTS_IN","name":"Chantal Martinaud","type":"Role","_key":"35743","_from":"4850","_to":"24291"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"35114","_from":"4850","_to":"23944"} +{"$label":"ACTS_IN","name":"Manuela von Meinhardis","type":"Role","_key":"35095","_from":"4850","_to":"23927"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"35047","_from":"4850","_to":"23909"} +{"$label":"ACTS_IN","name":"Margot Santorini","type":"Role","_key":"35042","_from":"4850","_to":"23908"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"35037","_from":"4850","_to":"23906"} +{"$label":"ACTS_IN","name":"Gita Samuels","type":"Role","_key":"33480","_from":"4850","_to":"23163"} +{"$label":"ACTS_IN","name":"Nicole Dassau","type":"Role","_key":"31430","_from":"4850","_to":"21958"} +{"$label":"ACTS_IN","name":"The Countess","type":"Role","_key":"31252","_from":"4850","_to":"21866"} +{"$label":"ACTS_IN","name":"Imogen","type":"Role","_key":"31243","_from":"4850","_to":"21863"} +{"$label":"ACTS_IN","name":"Francesca Anderson","type":"Role","_key":"31237","_from":"4850","_to":"21859"} +{"$label":"ACTS_IN","name":"Julia Kreuz","type":"Role","_key":"31232","_from":"4850","_to":"21855"} +{"$label":"ACTS_IN","name":"Emma Eckhert","type":"Role","_key":"31224","_from":"4850","_to":"21854"} +{"$label":"ACTS_IN","name":"Carole Werner","type":"Role","_key":"28440","_from":"4850","_to":"20343"} +{"$label":"ACTS_IN","name":"Clara Dandieu","type":"Role","_key":"27362","_from":"4850","_to":"19664"} +{"$label":"ACTS_IN","name":"Julie Wormser","type":"Role","_key":"27348","_from":"4850","_to":"19658"} +{"$label":"ACTS_IN","name":"Elisabeth von \u00d6sterreich","type":"Role","_key":"27331","_from":"4850","_to":"19647"} +{"$label":"ACTS_IN","name":"Philomena Schmidt","type":"Role","_key":"27320","_from":"4850","_to":"19639"} +{"$label":"ACTS_IN","name":"Nadine Chevalier","type":"Role","_key":"27306","_from":"4850","_to":"19632"} +{"$label":"ACTS_IN","name":"Anna Kupfer","type":"Role","_key":"27295","_from":"4850","_to":"19624"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"27150","_from":"4850","_to":"19528"} +{"$label":"ACTS_IN","name":"Rosalie","type":"Role","_key":"27139","_from":"4850","_to":"19525"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"27125","_from":"4850","_to":"19521"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"27123","_from":"4850","_to":"19519"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"27106","_from":"4850","_to":"19515"} +{"$label":"ACTS_IN","name":"La Califfa","type":"Role","_key":"27095","_from":"4850","_to":"19509"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"27086","_from":"4850","_to":"19500"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"27071","_from":"4850","_to":"19487"} +{"$label":"ACTS_IN","name":"Catherine Mortenhoe","type":"Role","_key":"27061","_from":"4850","_to":"19484"} +{"$label":"ACTS_IN","name":"Helene Martin","type":"Role","_key":"24957","_from":"4850","_to":"18031"} +{"$label":"ACTS_IN","name":"Regine","type":"Role","_key":"24938","_from":"4850","_to":"18024"} +{"$label":"ACTS_IN","name":"Janet Lagerlof","type":"Role","_key":"24930","_from":"4850","_to":"18019"} +{"$label":"ACTS_IN","name":"Annemarie von Hartman","type":"Role","_key":"24917","_from":"4850","_to":"18009"} +{"$label":"ACTS_IN","name":"Leni","type":"Role","_key":"24908","_from":"4850","_to":"18006"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"24902","_from":"4850","_to":"18002"} +{"$label":"ACTS_IN","name":"Sissi, Kaiserin Elisabeth von \u00d6sterreich","type":"Role","_key":"5715","_from":"4850","_to":"4867"} +{"$label":"ACTS_IN","name":"Sissi, Kaiserin Elisabeth von \u00d6sterreich","type":"Role","_key":"5704","_from":"4850","_to":"4863"} +{"$label":"ACTS_IN","name":"Mark Lewis","type":"Role","_key":"68287","_from":"4851","_to":"41924"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"62524","_from":"4851","_to":"39364"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35887","_from":"4851","_to":"24366"} +{"$label":"ACTS_IN","name":"Frank Braun","type":"Role","_key":"24554","_from":"4851","_to":"17763"} +{"$label":"ACTS_IN","name":"Wullersdorf","type":"Role","_key":"8523","_from":"4851","_to":"6950"} +{"$label":"ACTS_IN","name":"Franz Joseph, Kaiser von \u00d6sterreich","type":"Role","_key":"5716","_from":"4851","_to":"4867"} +{"$label":"ACTS_IN","name":"Franz Joseph, Kaiser von \u00d6sterreich","type":"Role","_key":"5705","_from":"4851","_to":"4863"} +{"$label":"ACTS_IN","name":"Therese Forster","type":"Role","_key":"45523","_from":"4852","_to":"30151"} +{"$label":"ACTS_IN","name":"Vera J\u00fcttner","type":"Role","_key":"44852","_from":"4852","_to":"29829"} +{"$label":"ACTS_IN","name":"Therese H\u00fcbner","type":"Role","_key":"44725","_from":"4852","_to":"29760"} +{"$label":"ACTS_IN","name":"Mutter Dassau","type":"Role","_key":"31431","_from":"4852","_to":"21958"} +{"$label":"ACTS_IN","name":"Flox Winter","type":"Role","_key":"23625","_from":"4852","_to":"17129"} +{"$label":"ACTS_IN","name":"Herzogin Ludovika von Bayern","type":"Role","_key":"5717","_from":"4852","_to":"4867"} +{"$label":"ACTS_IN","name":"Herzogin Ludovika von Bayern","type":"Role","_key":"5706","_from":"4852","_to":"4863"} +{"$label":"ACTS_IN","name":"N\u00e9n\u00e9, Prinzessin Helene von Bayern","type":"Role","_key":"5719","_from":"4853","_to":"4867"} +{"$label":"ACTS_IN","name":"N\u00e9n\u00e9, Prinzessin Helene von Bayern","type":"Role","_key":"5714","_from":"4853","_to":"4863"} +{"$label":"ACTS_IN","name":"Istvan Racz","type":"Role","_key":"67848","_from":"4854","_to":"41691"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41209","_from":"4854","_to":"27727"} +{"$label":"ACTS_IN","name":"Henry Brinkmann","type":"Role","_key":"40608","_from":"4854","_to":"27349"} +{"$label":"ACTS_IN","name":"Oschi Rasmus","type":"Role","_key":"40103","_from":"4854","_to":"27068"} +{"$label":"ACTS_IN","name":"Herzog Max von Bayern","type":"Role","_key":"5718","_from":"4854","_to":"4867"} +{"$label":"ACTS_IN","name":"Herzog Max von Bayern","type":"Role","_key":"5708","_from":"4854","_to":"4863"} +{"$label":"ACTS_IN","name":"Erzherzogin Sophie","type":"Role","_key":"5721","_from":"4855","_to":"4867"} +{"$label":"ACTS_IN","name":"Erzherzogin Sophie","type":"Role","_key":"5707","_from":"4855","_to":"4863"} +{"$label":"ACTS_IN","name":"Pater Clemens","type":"Role","_key":"44860","_from":"4856","_to":"29837"} +{"$label":"ACTS_IN","name":"Hofrat Hofwirt","type":"Role","_key":"44733","_from":"4856","_to":"29760"} +{"$label":"ACTS_IN","name":"Dr. Leitner","type":"Role","_key":"44630","_from":"4856","_to":"29701"} +{"$label":"ACTS_IN","name":"Vater Dassau","type":"Role","_key":"31432","_from":"4856","_to":"21958"} +{"$label":"ACTS_IN","name":"Major B\u00f6ckl","type":"Role","_key":"5722","_from":"4856","_to":"4867"} +{"$label":"ACTS_IN","name":"Major B\u00f6ckl","type":"Role","_key":"5710","_from":"4856","_to":"4863"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44673","_from":"4857","_to":"29716"} +{"$label":"ACTS_IN","name":"Erzherzog Franz-Karl","type":"Role","_key":"5724","_from":"4857","_to":"4867"} +{"$label":"ACTS_IN","name":"Erzherzog Franz-Karl","type":"Role","_key":"5712","_from":"4857","_to":"4863"} +{"$label":"ACTS_IN","name":"Benedikt","type":"Role","_key":"44245","_from":"4858","_to":"29476"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"43212","_from":"4858","_to":"28859"} +{"$label":"ACTS_IN","name":"Axel Enders","type":"Role","_key":"41197","_from":"4858","_to":"27720"} +{"$label":"ACTS_IN","name":"Charly Hupach","type":"Role","_key":"37316","_from":"4858","_to":"25282"} +{"$label":"ACTS_IN","name":"Chefredakteur Keller","type":"Role","_key":"19224","_from":"4858","_to":"14207"} +{"$label":"DIRECTED","_key":"43151","_from":"4858","_to":"28819"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44769","_from":"4860","_to":"29778"} +{"$label":"ACTS_IN","name":"Jankowitz","type":"Role","_key":"44667","_from":"4862","_to":"29716"} +{"$label":"ACTS_IN","name":"Dr. Seeburger","type":"Role","_key":"5713","_from":"4866","_to":"4863"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Bellegarde","type":"Role","_key":"5711","_from":"4865","_to":"4863"} +{"$label":"ACTS_IN","name":"Graf Andrassy","type":"Role","_key":"5709","_from":"4864","_to":"4863"} +{"$label":"ACTS_IN","name":"Graf Andrassy","type":"Role","_key":"5720","_from":"4864","_to":"4867"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Bellegarde","type":"Role","_key":"5723","_from":"4865","_to":"4867"} +{"$label":"ACTS_IN","name":"Dr. Seeburger","type":"Role","_key":"5725","_from":"4866","_to":"4867"} +{"$label":"ACTS_IN","name":"Prinz Ludwig","type":"Role","_key":"5727","_from":"4869","_to":"4867"} +{"$label":"ACTS_IN","name":"Henriette Mendel","type":"Role","_key":"5726","_from":"4868","_to":"4867"} +{"$label":"DIRECTED","_key":"5740","_from":"4881","_to":"4870"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"5739","_from":"4880","_to":"4870"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"5738","_from":"4879","_to":"4870"} +{"$label":"ACTS_IN","name":"Rabbi Ginsberg","type":"Role","_key":"5737","_from":"4878","_to":"4870"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"5736","_from":"4877","_to":"4870"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"5735","_from":"4876","_to":"4870"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"5734","_from":"4875","_to":"4870"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"5733","_from":"4874","_to":"4870"} +{"$label":"ACTS_IN","name":"Golda","type":"Role","_key":"5732","_from":"4873","_to":"4870"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"5731","_from":"4872","_to":"4870"} +{"$label":"ACTS_IN","name":"Marlene","type":"Role","_key":"5730","_from":"4871","_to":"4870"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Ponelle","type":"Role","_key":"67842","_from":"4871","_to":"41690"} +{"$label":"ACTS_IN","name":"Hanna Flanders","type":"Role","_key":"63698","_from":"4871","_to":"39834"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54345","_from":"4871","_to":"34866"} +{"$label":"ACTS_IN","name":"Constanze","type":"Role","_key":"45735","_from":"4871","_to":"30264"} +{"$label":"ACTS_IN","name":"Trudi","type":"Role","_key":"43454","_from":"4871","_to":"29031"} +{"$label":"ACTS_IN","name":"Comtesse Rostova","type":"Role","_key":"38435","_from":"4871","_to":"25954"} +{"$label":"ACTS_IN","name":"Gerlinde von Habermann","type":"Role","_key":"34774","_from":"4871","_to":"23768"} +{"$label":"ACTS_IN","name":"Marga Hartog","type":"Role","_key":"31384","_from":"4871","_to":"21938"} +{"$label":"ACTS_IN","name":"Monika Winkler","type":"Role","_key":"16031","_from":"4871","_to":"12182"} +{"$label":"ACTS_IN","name":"Daumer","type":"Role","_key":"90727","_from":"4872","_to":"53552"} +{"$label":"ACTS_IN","name":"Luigi Mackeroni","type":"Role","_key":"63953","_from":"4872","_to":"39947"} +{"$label":"ACTS_IN","name":"Herr Lange","type":"Role","_key":"20177","_from":"4872","_to":"14796"} +{"$label":"ACTS_IN","name":"Dr. Blonskij","type":"Role","_key":"15561","_from":"4872","_to":"11877"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"49957","_from":"4874","_to":"32701"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"43505","_from":"4874","_to":"29052"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"37260","_from":"4874","_to":"25242"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"17025","_from":"4874","_to":"12770"} +{"$label":"ACTS_IN","name":"Kerstin Cantz","type":"Role","_key":"42559","_from":"4875","_to":"28483"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"51336","_from":"4876","_to":"33478"} +{"$label":"ACTS_IN","name":"Maik","type":"Role","_key":"36745","_from":"4876","_to":"24915"} +{"$label":"ACTS_IN","name":"Caspar","type":"Role","_key":"15035","_from":"4876","_to":"11560"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"69488","_from":"4877","_to":"42452"} +{"$label":"ACTS_IN","name":"Petra Troester","type":"Role","_key":"42946","_from":"4877","_to":"28693"} +{"$label":"ACTS_IN","name":"Wellness-Angestellte","type":"Role","_key":"41542","_from":"4877","_to":"27899"} +{"$label":"ACTS_IN","name":"Erwin Kuhn","type":"Role","_key":"102236","_from":"4878","_to":"60159"} +{"$label":"ACTS_IN","name":"T\u00e1bornagy","type":"Role","_key":"72718","_from":"4878","_to":"43818"} +{"$label":"ACTS_IN","name":"kr\u00e1l","type":"Role","_key":"50560","_from":"4878","_to":"33017"} +{"$label":"ACTS_IN","name":"Karl Lentz","type":"Role","_key":"44012","_from":"4878","_to":"29357"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37973","_from":"4878","_to":"25710"} +{"$label":"ACTS_IN","name":"James Besham","type":"Role","_key":"35581","_from":"4878","_to":"24182"} +{"$label":"ACTS_IN","name":"Bashan","type":"Role","_key":"27779","_from":"4878","_to":"19908"} +{"$label":"ACTS_IN","name":"Amadeus Bergk","type":"Role","_key":"24243","_from":"4878","_to":"17560"} +{"$label":"ACTS_IN","name":"Olo Tal","type":"Role","_key":"24099","_from":"4878","_to":"17475"} +{"$label":"ACTS_IN","name":"Shorty","type":"Role","_key":"19462","_from":"4878","_to":"14395"} +{"$label":"ACTS_IN","name":"Der Runde","type":"Role","_key":"19450","_from":"4878","_to":"14382"} +{"$label":"ACTS_IN","name":"Ritter G\u00f6tz von Bredow","type":"Role","_key":"19308","_from":"4878","_to":"14272"} +{"$label":"ACTS_IN","name":"Silkes Mutter","type":"Role","_key":"65948","_from":"4879","_to":"40793"} +{"$label":"ACTS_IN","name":"Annarina","type":"Role","_key":"62364","_from":"4879","_to":"39289"} +{"$label":"ACTS_IN","name":"Karla Kolumna","type":"Role","_key":"52653","_from":"4879","_to":"34197"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"40670","_from":"4879","_to":"27376"} +{"$label":"DIRECTED","_key":"42198","_from":"4881","_to":"28267"} +{"$label":"ACTS_IN","name":"Mrs. Morales","type":"Role","_key":"5751","_from":"4889","_to":"4882"} +{"$label":"ACTS_IN","name":"Defendant","type":"Role","_key":"5750","_from":"4888","_to":"4882"} +{"$label":"ACTS_IN","name":"Defending Lawyer","type":"Role","_key":"5749","_from":"4887","_to":"4882"} +{"$label":"ACTS_IN","name":"Los Angeles Judge","type":"Role","_key":"5748","_from":"4886","_to":"4882"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"5746","_from":"4885","_to":"4882"} +{"$label":"ACTS_IN","name":"Rosalind","type":"Role","_key":"5744","_from":"4884","_to":"4882"} +{"$label":"ACTS_IN","name":"Dr. Jaffe","type":"Role","_key":"5743","_from":"4883","_to":"4882"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"55865","_from":"4885","_to":"35537"} +{"$label":"ACTS_IN","name":"Helicopter Co-Pilot","type":"Role","_key":"51464","_from":"4885","_to":"33562"} +{"$label":"ACTS_IN","name":"Carducci","type":"Role","_key":"50742","_from":"4887","_to":"33114"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44259","_from":"4887","_to":"29492"} +{"$label":"ACTS_IN","name":"Morrissey","type":"Role","_key":"22712","_from":"4887","_to":"16474"} +{"$label":"ACTS_IN","name":"Mason Strode","type":"Role","_key":"18116","_from":"4887","_to":"13441"} +{"$label":"DIRECTED","_key":"5772","_from":"4907","_to":"4891"} +{"$label":"ACTS_IN","name":"Tore","type":"Role","_key":"5771","_from":"4906","_to":"4891"} +{"$label":"ACTS_IN","name":"Holmfrid","type":"Role","_key":"5770","_from":"4905","_to":"4891"} +{"$label":"ACTS_IN","name":"Siv","type":"Role","_key":"5769","_from":"4904","_to":"4891"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"5768","_from":"4903","_to":"4891"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"5767","_from":"4902","_to":"4891"} +{"$label":"ACTS_IN","name":"Stig","type":"Role","_key":"5766","_from":"4901","_to":"4891"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"5765","_from":"4900","_to":"4891"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"5764","_from":"4899","_to":"4891"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"5763","_from":"4898","_to":"4891"} +{"$label":"ACTS_IN","name":"Loredana","type":"Role","_key":"5762","_from":"4897","_to":"4891"} +{"$label":"ACTS_IN","name":"Inger","type":"Role","_key":"5761","_from":"4896","_to":"4891"} +{"$label":"ACTS_IN","name":"Arne","type":"Role","_key":"5760","_from":"4895","_to":"4891"} +{"$label":"ACTS_IN","name":"Gabriella","type":"Role","_key":"5759","_from":"4894","_to":"4891"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"5758","_from":"4893","_to":"4891"} +{"$label":"ACTS_IN","name":"Daniel Dar\u00e9us","type":"Role","_key":"5757","_from":"4892","_to":"4891"} +{"$label":"ACTS_IN","name":"Mikael Blomkvist","type":"Role","_key":"104548","_from":"4892","_to":"61500"} +{"$label":"ACTS_IN","name":"Magnus Folkesson","type":"Role","_key":"94792","_from":"4892","_to":"55826"} +{"$label":"ACTS_IN","name":"Lars Levi Laestadius","type":"Role","_key":"93507","_from":"4892","_to":"55052"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"8648","_from":"4892","_to":"7016"} +{"$label":"ACTS_IN","name":"\u00c5ke","type":"Role","_key":"6824","_from":"4892","_to":"5721"} +{"$label":"ACTS_IN","name":"Sven-Erik Marklund","type":"Role","_key":"111042","_from":"4895","_to":"65590"} +{"$label":"ACTS_IN","name":"Jocke","type":"Role","_key":"93858","_from":"4905","_to":"55253"} +{"$label":"ACTS_IN","name":"Nils Geting","type":"Role","_key":"110209","_from":"4906","_to":"65137"} +{"$label":"DIRECTED","_key":"5786","_from":"4921","_to":"4908"} +{"$label":"ACTS_IN","name":"M. Weber","type":"Role","_key":"5785","_from":"4920","_to":"4908"} +{"$label":"ACTS_IN","name":"Mme Weber","type":"Role","_key":"5784","_from":"4919","_to":"4908"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"5783","_from":"4918","_to":"4908"} +{"$label":"ACTS_IN","name":"Maetitia","type":"Role","_key":"5782","_from":"4917","_to":"4908"} +{"$label":"ACTS_IN","name":"Ca-Pe","type":"Role","_key":"5781","_from":"4916","_to":"4908"} +{"$label":"ACTS_IN","name":"La m\u00e8re","type":"Role","_key":"5780","_from":"4915","_to":"4908"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"5779","_from":"4914","_to":"4908"} +{"$label":"ACTS_IN","name":"Le p\u00e8re","type":"Role","_key":"5778","_from":"4913","_to":"4908"} +{"$label":"ACTS_IN","name":"Anne-Marie","type":"Role","_key":"5777","_from":"4912","_to":"4908"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"5775","_from":"4911","_to":"4908"} +{"$label":"ACTS_IN","name":"Etienne Chicot","type":"Role","_key":"5774","_from":"4910","_to":"4908"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"5773","_from":"4909","_to":"4908"} +{"$label":"ACTS_IN","name":"Denis Deneige","type":"Role","_key":"37915","_from":"4910","_to":"25672"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33770","_from":"4910","_to":"23279"} +{"$label":"ACTS_IN","name":"Lt. Collet","type":"Role","_key":"7100","_from":"4910","_to":"5934"} +{"$label":"ACTS_IN","name":"French","type":"Role","_key":"48828","_from":"4913","_to":"32020"} +{"$label":"ACTS_IN","name":"Sardis","type":"Role","_key":"42878","_from":"4913","_to":"28662"} +{"$label":"ACTS_IN","name":"Dambiel","type":"Role","_key":"30664","_from":"4913","_to":"21523"} +{"$label":"ACTS_IN","name":"Legendre","type":"Role","_key":"30235","_from":"4913","_to":"21284"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois","type":"Role","_key":"14857","_from":"4913","_to":"11416"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois Richet, l'instituteur","type":"Role","_key":"14749","_from":"4913","_to":"11351"} +{"$label":"ACTS_IN","name":"Herminie Poitevin","type":"Role","_key":"71986","_from":"4921","_to":"43537"} +{"$label":"ACTS_IN","name":"Erz\u00e4hlerin","type":"Role","_key":"17392","_from":"4921","_to":"13008"} +{"$label":"ACTS_IN","name":"Mouchette","type":"Role","_key":"14573","_from":"4921","_to":"11233"} +{"$label":"DIRECTED","_key":"51523","_from":"4921","_to":"33596"} +{"$label":"DIRECTED","_key":"17388","_from":"4921","_to":"13008"} +{"$label":"DIRECTED","_key":"17374","_from":"4921","_to":"12998"} +{"$label":"DIRECTED","_key":"14457","_from":"4921","_to":"11174"} +{"$label":"DIRECTED","_key":"6802","_from":"4921","_to":"5706"} +{"$label":"ACTS_IN","name":"Trina","type":"Role","_key":"5796","_from":"4932","_to":"4922"} +{"$label":"ACTS_IN","name":"Holly Gruneman","type":"Role","_key":"5795","_from":"4931","_to":"4922"} +{"$label":"ACTS_IN","name":"Tom Gruneman","type":"Role","_key":"5794","_from":"4930","_to":"4922"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"5793","_from":"4929","_to":"4922"} +{"$label":"ACTS_IN","name":"Arlyn Page","type":"Role","_key":"5792","_from":"4928","_to":"4922"} +{"$label":"ACTS_IN","name":"Frank Ligourin","type":"Role","_key":"5791","_from":"4927","_to":"4922"} +{"$label":"ACTS_IN","name":"Peter Cable","type":"Role","_key":"5790","_from":"4926","_to":"4922"} +{"$label":"ACTS_IN","name":"John Klute","type":"Role","_key":"5789","_from":"4925","_to":"4922"} +{"$label":"ACTS_IN","name":"Bree Daniels","type":"Role","_key":"5788","_from":"4924","_to":"4922"} +{"$label":"DIRECTED","_key":"5787","_from":"4923","_to":"4922"} +{"$label":"DIRECTED","_key":"112067","_from":"4923","_to":"66169"} +{"$label":"DIRECTED","_key":"105819","_from":"4923","_to":"62294"} +{"$label":"DIRECTED","_key":"67834","_from":"4923","_to":"41688"} +{"$label":"DIRECTED","_key":"58324","_from":"4923","_to":"36873"} +{"$label":"DIRECTED","_key":"31974","_from":"4923","_to":"22296"} +{"$label":"DIRECTED","_key":"10605","_from":"4923","_to":"8423"} +{"$label":"ACTS_IN","name":"Judy Bernly","type":"Role","_key":"120220","_from":"4924","_to":"70600"} +{"$label":"ACTS_IN","name":"Corie Bratter","type":"Role","_key":"114222","_from":"4924","_to":"67279"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"93055","_from":"4924","_to":"54863"} +{"$label":"ACTS_IN","name":"Chelsea Thayer Wayne","type":"Role","_key":"72154","_from":"4924","_to":"43611"} +{"$label":"ACTS_IN","name":"Catherine 'Cat' Ballou","type":"Role","_key":"71608","_from":"4924","_to":"43370"} +{"$label":"ACTS_IN","name":"Alice 'Hallie' Martin","type":"Role","_key":"68146","_from":"4924","_to":"41856"} +{"$label":"ACTS_IN","name":"Elle, Susanne","type":"Role","_key":"48062","_from":"4924","_to":"31599"} +{"$label":"ACTS_IN","name":"Barbarella","type":"Role","_key":"48043","_from":"4924","_to":"31592"} +{"$label":"ACTS_IN","name":"Viola Fields","type":"Role","_key":"31280","_from":"4924","_to":"21881"} +{"$label":"ACTS_IN","name":"Kimberly Wells","type":"Role","_key":"11686","_from":"4924","_to":"9177"} +{"$label":"ACTS_IN","name":"Charles \/ Pierre","type":"Role","_key":"121075","_from":"4925","_to":"71109"} +{"$label":"ACTS_IN","name":"Ogden C. Osborne","type":"Role","_key":"120460","_from":"4925","_to":"70763"} +{"$label":"ACTS_IN","name":"Calvin Jarrett","type":"Role","_key":"109651","_from":"4925","_to":"64764"} +{"$label":"ACTS_IN","name":"General Stone (voice)","type":"Role","_key":"109570","_from":"4925","_to":"64719"} +{"$label":"ACTS_IN","name":"Carl Wilk","type":"Role","_key":"104141","_from":"4925","_to":"61265"} +{"$label":"ACTS_IN","name":"Sgt. Maj. Peasy","type":"Role","_key":"91095","_from":"4925","_to":"53749"} +{"$label":"ACTS_IN","name":"Col. Mikhail Fetisov","type":"Role","_key":"90233","_from":"4925","_to":"53351"} +{"$label":"ACTS_IN","name":"Ben Hillard","type":"Role","_key":"88125","_from":"4925","_to":"52298"} +{"$label":"ACTS_IN","name":"Dr. Matthew Bennell","type":"Role","_key":"72357","_from":"4925","_to":"43697"} +{"$label":"ACTS_IN","name":"Sgt. Oddball (tank commander)","type":"Role","_key":"70903","_from":"4925","_to":"43079"} +{"$label":"ACTS_IN","name":"Robert Agar","type":"Role","_key":"70857","_from":"4925","_to":"43066"} +{"$label":"ACTS_IN","name":"Douglas Thomas","type":"Role","_key":"69613","_from":"4925","_to":"42495"} +{"$label":"ACTS_IN","name":"Liam Devlin","type":"Role","_key":"69463","_from":"4925","_to":"42443"} +{"$label":"ACTS_IN","name":"Henry Faber","type":"Role","_key":"66344","_from":"4925","_to":"41035"} +{"$label":"ACTS_IN","name":"Merrick Jamison-Smythe","type":"Role","_key":"61701","_from":"4925","_to":"38864"} +{"$label":"ACTS_IN","name":"John Bell","type":"Role","_key":"59354","_from":"4925","_to":"37498"} +{"$label":"ACTS_IN","name":"Warden Drumgoole","type":"Role","_key":"58757","_from":"4925","_to":"37115"} +{"$label":"ACTS_IN","name":"John Bridger","type":"Role","_key":"55311","_from":"4925","_to":"35264"} +{"$label":"ACTS_IN","name":"Captain Robert Everton","type":"Role","_key":"53766","_from":"4925","_to":"34654"} +{"$label":"ACTS_IN","name":"Lt. Stanton","type":"Role","_key":"53705","_from":"4925","_to":"34632"} +{"$label":"ACTS_IN","name":"Bob Garvin","type":"Role","_key":"51837","_from":"4925","_to":"33826"} +{"$label":"ACTS_IN","name":"Nigel Honeycutt","type":"Role","_key":"50422","_from":"4925","_to":"32943"} +{"$label":"ACTS_IN","name":"Dave Jennings","type":"Role","_key":"49977","_from":"4925","_to":"32712"} +{"$label":"ACTS_IN","name":"Donald McClintock","type":"Role","_key":"45268","_from":"4925","_to":"30038"} +{"$label":"ACTS_IN","name":"Jerry O`Neill","type":"Role","_key":"37809","_from":"4925","_to":"25635"} +{"$label":"ACTS_IN","name":"Homer Simpson","type":"Role","_key":"35982","_from":"4925","_to":"24437"} +{"$label":"ACTS_IN","name":"Scientist at computer","type":"Role","_key":"34566","_from":"4925","_to":"23665"} +{"$label":"ACTS_IN","name":"Rosario Sarracino","type":"Role","_key":"34255","_from":"4925","_to":"23511"} +{"$label":"ACTS_IN","name":"Mr. Bennet","type":"Role","_key":"31080","_from":"4925","_to":"21757"} +{"$label":"ACTS_IN","name":"Attila","type":"Role","_key":"28829","_from":"4925","_to":"20607"} +{"$label":"ACTS_IN","name":"Capt. Walton","type":"Role","_key":"25312","_from":"4925","_to":"18241"} +{"$label":"ACTS_IN","name":"Ronald Bartel","type":"Role","_key":"24326","_from":"4925","_to":"17621"} +{"$label":"ACTS_IN","name":"Richter Raines","type":"Role","_key":"20602","_from":"4925","_to":"15075"} +{"$label":"ACTS_IN","name":"Dr. Cid ( voice )","type":"Role","_key":"18428","_from":"4925","_to":"13659"} +{"$label":"ACTS_IN","name":"Hellfrick","type":"Role","_key":"17062","_from":"4925","_to":"12792"} +{"$label":"ACTS_IN","name":"Brian Costello","type":"Role","_key":"15577","_from":"4925","_to":"11884"} +{"$label":"ACTS_IN","name":"Vernon Pinkley","type":"Role","_key":"14691","_from":"4925","_to":"11307"} +{"$label":"ACTS_IN","name":"Lucien Wilbanks","type":"Role","_key":"14603","_from":"4925","_to":"11252"} +{"$label":"ACTS_IN","name":"John Baxter","type":"Role","_key":"11106","_from":"4925","_to":"8781"} +{"$label":"ACTS_IN","name":"X","type":"Role","_key":"9677","_from":"4925","_to":"7763"} +{"$label":"ACTS_IN","name":"Captain Benjamin Franklin 'Hawkeye' Pierce","type":"Role","_key":"7775","_from":"4925","_to":"6460"} +{"$label":"ACTS_IN","name":"Pop","type":"Role","_key":"115154","_from":"4926","_to":"67809"} +{"$label":"ACTS_IN","name":"Vic Androzzi","type":"Role","_key":"5911","_from":"4926","_to":"5022"} +{"$label":"ACTS_IN","name":"Harry Mitchell","type":"Role","_key":"116734","_from":"4927","_to":"68714"} +{"$label":"ACTS_IN","name":"Joe Gideon","type":"Role","_key":"110219","_from":"4927","_to":"65144"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"108075","_from":"4927","_to":"63848"} +{"$label":"ACTS_IN","name":"Cardinal Siqueros","type":"Role","_key":"64220","_from":"4927","_to":"40055"} +{"$label":"ACTS_IN","name":"Cardinal Siqueros","type":"Role","_key":"64209","_from":"4927","_to":"40050"} +{"$label":"ACTS_IN","name":"Henry David \u201aDoc\u2018 Levy","type":"Role","_key":"63800","_from":"4927","_to":"39894"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"61392","_from":"4927","_to":"38729"} +{"$label":"ACTS_IN","name":"Frank Murphy","type":"Role","_key":"42978","_from":"4927","_to":"28715"} +{"$label":"ACTS_IN","name":"Dr. Heywood Floyd","type":"Role","_key":"31710","_from":"4927","_to":"22131"} +{"$label":"ACTS_IN","name":"Doctor Benway","type":"Role","_key":"23201","_from":"4927","_to":"16826"} +{"$label":"ACTS_IN","name":"Don Falcone","type":"Role","_key":"18190","_from":"4927","_to":"13492"} +{"$label":"ACTS_IN","name":"Det. Buddy \"Cloudy\" Russo","type":"Role","_key":"11855","_from":"4927","_to":"9296"} +{"$label":"ACTS_IN","name":"Police Chief Martin Brody","type":"Role","_key":"6920","_from":"4927","_to":"5808"} +{"$label":"ACTS_IN","name":"Police Chief Martin Brody","type":"Role","_key":"6904","_from":"4927","_to":"5794"} +{"$label":"ACTS_IN","name":"Martyn Taylor","type":"Role","_key":"5802","_from":"4937","_to":"4933"} +{"$label":"ACTS_IN","name":"Geoff Bingham","type":"Role","_key":"5801","_from":"4936","_to":"4933"} +{"$label":"ACTS_IN","name":"Mike Steel","type":"Role","_key":"5799","_from":"4935","_to":"4933"} +{"$label":"DIRECTED","_key":"5797","_from":"4934","_to":"4933"} +{"$label":"DIRECTED","_key":"67605","_from":"4934","_to":"41612"} +{"$label":"DIRECTED","_key":"43164","_from":"4934","_to":"28826"} +{"$label":"ACTS_IN","name":"Sam Cutter","type":"Role","_key":"111294","_from":"4935","_to":"65727"} +{"$label":"ACTS_IN","name":"Kenneth Winslow","type":"Role","_key":"110655","_from":"4935","_to":"65370"} +{"$label":"ACTS_IN","name":"Sp4 Bill Beck","type":"Role","_key":"64319","_from":"4935","_to":"40088"} +{"$label":"ACTS_IN","name":"Chris Flynn","type":"Role","_key":"57778","_from":"4935","_to":"36576"} +{"$label":"ACTS_IN","name":"Jack Ferriman","type":"Role","_key":"55248","_from":"4935","_to":"35238"} +{"$label":"ACTS_IN","name":"Capt. Bramwell Jennings","type":"Role","_key":"90387","_from":"4936","_to":"53409"} +{"$label":"ACTS_IN","name":"Mr. Wisley","type":"Role","_key":"24624","_from":"4936","_to":"17810"} +{"$label":"ACTS_IN","name":"SS Major Kessler","type":"Role","_key":"24272","_from":"4936","_to":"17581"} +{"$label":"ACTS_IN","name":"Jack Favor","type":"Role","_key":"5812","_from":"4943","_to":"4938"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"5811","_from":"4942","_to":"4938"} +{"$label":"ACTS_IN","name":"Carmella","type":"Role","_key":"5810","_from":"4941","_to":"4938"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"5809","_from":"4940","_to":"4938"} +{"$label":"ACTS_IN","name":"Bob Pigeon","type":"Role","_key":"5808","_from":"4939","_to":"4938"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"105671","_from":"4941","_to":"62198"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"91671","_from":"4941","_to":"54065"} +{"$label":"ACTS_IN","name":"Mrs Funk","type":"Role","_key":"120435","_from":"4942","_to":"70751"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"96212","_from":"4942","_to":"56552"} +{"$label":"ACTS_IN","name":"Grace Poole","type":"Role","_key":"68408","_from":"4942","_to":"41966"} +{"$label":"ACTS_IN","name":"Mama","type":"Role","_key":"67396","_from":"4942","_to":"41521"} +{"$label":"ACTS_IN","name":"Helen Raines","type":"Role","_key":"55517","_from":"4942","_to":"35364"} +{"$label":"ACTS_IN","name":"Grandma Jones","type":"Role","_key":"24441","_from":"4942","_to":"17679"} +{"$label":"ACTS_IN","name":"Esther Pokrifiki","type":"Role","_key":"22280","_from":"4942","_to":"16205"} +{"$label":"ACTS_IN","name":"Mrs. Quarre","type":"Role","_key":"17524","_from":"4942","_to":"13100"} +{"$label":"ACTS_IN","name":"Emma Williams","type":"Role","_key":"17097","_from":"4942","_to":"12813"} +{"$label":"ACTS_IN","name":"Sarah Palmer","type":"Role","_key":"16650","_from":"4942","_to":"12568"} +{"$label":"ACTS_IN","name":"Juana Durango","type":"Role","_key":"5928","_from":"4942","_to":"5031"} +{"$label":"ACTS_IN","name":"Bob's Mother","type":"Role","_key":"5868","_from":"4942","_to":"4983"} +{"$label":"ACTS_IN","name":"Cpl. Job","type":"Role","_key":"70910","_from":"4943","_to":"43079"} +{"$label":"ACTS_IN","name":"Poker player","type":"Role","_key":"5822","_from":"4953","_to":"4944"} +{"$label":"ACTS_IN","name":"Poker player","type":"Role","_key":"5821","_from":"4952","_to":"4944"} +{"$label":"ACTS_IN","name":"Airline Agent","type":"Role","_key":"5819","_from":"4951","_to":"4944"} +{"$label":"ACTS_IN","name":"Man with money","type":"Role","_key":"5818","_from":"4950","_to":"4944"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"5817","_from":"4949","_to":"4944"} +{"$label":"ACTS_IN","name":"Aunt Lotte","type":"Role","_key":"5816","_from":"4948","_to":"4944"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"5815","_from":"4947","_to":"4944"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"5814","_from":"4946","_to":"4944"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"5813","_from":"4945","_to":"4944"} +{"$label":"ACTS_IN","name":"Saxophone player","type":"Role","_key":"40172","_from":"4945","_to":"27113"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"13756","_from":"4945","_to":"10676"} +{"$label":"ACTS_IN","name":"Skeets","type":"Role","_key":"119741","_from":"4947","_to":"70316"} +{"$label":"ACTS_IN","name":"Johnny Casino","type":"Role","_key":"118767","_from":"4947","_to":"69835"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"98713","_from":"4947","_to":"58173"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"14147","_from":"4947","_to":"10947"} +{"$label":"ACTS_IN","name":"Vito","type":"Role","_key":"11013","_from":"4947","_to":"8717"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"9331","_from":"4947","_to":"7539"} +{"$label":"DIRECTED","_key":"99990","_from":"4951","_to":"58990"} +{"$label":"ACTS_IN","name":"Big Rand","type":"Role","_key":"56832","_from":"4952","_to":"36088"} +{"$label":"ACTS_IN","name":"Marianne Jordan","type":"Role","_key":"5832","_from":"4958","_to":"4954"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"5830","_from":"4957","_to":"4954"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"5829","_from":"4956","_to":"4954"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"5828","_from":"4955","_to":"4954"} +{"$label":"ACTS_IN","name":"Arthur Burns","type":"Role","_key":"109608","_from":"4955","_to":"64744"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"88651","_from":"4955","_to":"52530"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"65362","_from":"4955","_to":"40550"} +{"$label":"ACTS_IN","name":"Marlow","type":"Role","_key":"32217","_from":"4955","_to":"22456"} +{"$label":"ACTS_IN","name":"Isaac French\/Dr. Miles Phoenix","type":"Role","_key":"28245","_from":"4955","_to":"20227"} +{"$label":"ACTS_IN","name":"Jack Frye","type":"Role","_key":"21999","_from":"4955","_to":"16058"} +{"$label":"ACTS_IN","name":"William Stryker","type":"Role","_key":"18087","_from":"4955","_to":"13433"} +{"$label":"ACTS_IN","name":"Sandy Woodrow","type":"Role","_key":"17178","_from":"4955","_to":"12868"} +{"$label":"ACTS_IN","name":"Agnes Lessor","type":"Role","_key":"116150","_from":"4958","_to":"68391"} +{"$label":"ACTS_IN","name":"Mrs. Miller","type":"Role","_key":"88930","_from":"4958","_to":"52677"} +{"$label":"ACTS_IN","name":"Ray Eddy","type":"Role","_key":"61498","_from":"4958","_to":"38787"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"47892","_from":"4958","_to":"31514"} +{"$label":"ACTS_IN","name":"Jorgu","type":"Role","_key":"5839","_from":"4964","_to":"4959"} +{"$label":"ACTS_IN","name":"Moscu","type":"Role","_key":"5838","_from":"4963","_to":"4959"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"5837","_from":"4962","_to":"4959"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"5836","_from":"4961","_to":"4959"} +{"$label":"DIRECTED","_key":"5834","_from":"4960","_to":"4959"} +{"$label":"ACTS_IN","name":"Mary McGregor","type":"Role","_key":"68559","_from":"4961","_to":"42034"} +{"$label":"ACTS_IN","name":"Jane Fairfax","type":"Role","_key":"27998","_from":"4961","_to":"20074"} +{"$label":"ACTS_IN","name":"Vida Warren","type":"Role","_key":"10311","_from":"4961","_to":"8203"} +{"$label":"ACTS_IN","name":"Jenna's Mom","type":"Role","_key":"5851","_from":"4972","_to":"4965"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"5850","_from":"4971","_to":"4965"} +{"$label":"ACTS_IN","name":"Devi","type":"Role","_key":"5848","_from":"4970","_to":"4965"} +{"$label":"ACTS_IN","name":"Rabbi Cohen","type":"Role","_key":"5847","_from":"4969","_to":"4965"} +{"$label":"ACTS_IN","name":"Lenny Meyer","type":"Role","_key":"5845","_from":"4968","_to":"4965"} +{"$label":"ACTS_IN","name":"Maximillian Cohen","type":"Role","_key":"5843","_from":"4967","_to":"4965"} +{"$label":"DIRECTED","_key":"5842","_from":"4966","_to":"4965"} +{"$label":"DIRECTED","_key":"88398","_from":"4966","_to":"52394"} +{"$label":"DIRECTED","_key":"12860","_from":"4966","_to":"10044"} +{"$label":"DIRECTED","_key":"7666","_from":"4966","_to":"6372"} +{"$label":"ACTS_IN","name":"As Himself","type":"Role","_key":"57766","_from":"4967","_to":"36565"} +{"$label":"ACTS_IN","name":"Dr. Freddy Epner","type":"Role","_key":"93405","_from":"4968","_to":"55010"} +{"$label":"ACTS_IN","name":"Dr. Brett Rushton","type":"Role","_key":"51968","_from":"4968","_to":"33893"} +{"$label":"ACTS_IN","name":"Dr. Schiller","type":"Role","_key":"13912","_from":"4969","_to":"10792"} +{"$label":"ACTS_IN","name":"Bonnie's mother","type":"Role","_key":"5862","_from":"4982","_to":"4973"} +{"$label":"ACTS_IN","name":"Velma Davis","type":"Role","_key":"5861","_from":"4981","_to":"4973"} +{"$label":"ACTS_IN","name":"Ivan Moss","type":"Role","_key":"5860","_from":"4980","_to":"4973"} +{"$label":"ACTS_IN","name":"Frank Hamer","type":"Role","_key":"5859","_from":"4979","_to":"4973"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"5858","_from":"4978","_to":"4973"} +{"$label":"ACTS_IN","name":"C.W. Moss","type":"Role","_key":"5855","_from":"4977","_to":"4973"} +{"$label":"ACTS_IN","name":"Bonnie Parker","type":"Role","_key":"5854","_from":"4976","_to":"4973"} +{"$label":"ACTS_IN","name":"Clyde Barrow","type":"Role","_key":"5853","_from":"4975","_to":"4973"} +{"$label":"DIRECTED","_key":"5852","_from":"4974","_to":"4973"} +{"$label":"DIRECTED","_key":"67505","_from":"4974","_to":"41571"} +{"$label":"DIRECTED","_key":"38239","_from":"4974","_to":"25825"} +{"$label":"DIRECTED","_key":"27382","_from":"4974","_to":"19677"} +{"$label":"DIRECTED","_key":"12102","_from":"4974","_to":"9482"} +{"$label":"DIRECTED","_key":"115565","_from":"4975","_to":"68033"} +{"$label":"DIRECTED","_key":"88572","_from":"4975","_to":"52493"} +{"$label":"DIRECTED","_key":"53957","_from":"4975","_to":"34714"} +{"$label":"DIRECTED","_key":"50247","_from":"4975","_to":"32833"} +{"$label":"ACTS_IN","name":"John Reed","type":"Role","_key":"115563","_from":"4975","_to":"68033"} +{"$label":"ACTS_IN","name":"Joseph Frady","type":"Role","_key":"112061","_from":"4975","_to":"66169"} +{"$label":"ACTS_IN","name":"Lyle Rogers","type":"Role","_key":"91124","_from":"4975","_to":"53764"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"88840","_from":"4975","_to":"52640"} +{"$label":"ACTS_IN","name":"Joe Pendleton","type":"Role","_key":"88574","_from":"4975","_to":"52493"} +{"$label":"ACTS_IN","name":"Ben 'Bugsy' Siegel","type":"Role","_key":"62661","_from":"4975","_to":"39415"} +{"$label":"ACTS_IN","name":"Senator Jay Billington Bulworth","type":"Role","_key":"53953","_from":"4975","_to":"34714"} +{"$label":"ACTS_IN","name":"Dick Tracy","type":"Role","_key":"50235","_from":"4975","_to":"32833"} +{"$label":"ACTS_IN","name":"Kitty Olchin","type":"Role","_key":"120143","_from":"4976","_to":"70564"} +{"$label":"ACTS_IN","name":"Mrs. Dubrow","type":"Role","_key":"112164","_from":"4976","_to":"66236"} +{"$label":"ACTS_IN","name":"Charlene Towne","type":"Role","_key":"111397","_from":"4976","_to":"65780"} +{"$label":"ACTS_IN","name":"Joan Crawford","type":"Role","_key":"105335","_from":"4976","_to":"61980"} +{"$label":"ACTS_IN","name":"Milady","type":"Role","_key":"89247","_from":"4976","_to":"52844"} +{"$label":"ACTS_IN","name":"Kathy Hale","type":"Role","_key":"73017","_from":"4976","_to":"43941"} +{"$label":"ACTS_IN","name":"Elaine Stalker","type":"Role","_key":"67526","_from":"4976","_to":"41579"} +{"$label":"ACTS_IN","name":"Mrs. Louise Pendrake","type":"Role","_key":"67501","_from":"4976","_to":"41571"} +{"$label":"ACTS_IN","name":"Wanda Wilcox","type":"Role","_key":"66849","_from":"4976","_to":"41286"} +{"$label":"ACTS_IN","name":"Diana Christensen","type":"Role","_key":"65687","_from":"4976","_to":"40690"} +{"$label":"ACTS_IN","name":"Jolanda von Arag\u00f3n","type":"Role","_key":"59899","_from":"4976","_to":"37823"} +{"$label":"ACTS_IN","name":"Selena","type":"Role","_key":"55286","_from":"4976","_to":"35258"} +{"$label":"ACTS_IN","name":"Janet Boudreaux","type":"Role","_key":"50667","_from":"4976","_to":"33080"} +{"$label":"ACTS_IN","name":"Lee Cayhall Bowen","type":"Role","_key":"42987","_from":"4976","_to":"28718"} +{"$label":"ACTS_IN","name":"Charlotta Adams","type":"Role","_key":"41648","_from":"4976","_to":"27954"} +{"$label":"ACTS_IN","name":"Susan Franklin","type":"Role","_key":"40433","_from":"4976","_to":"27256"} +{"$label":"ACTS_IN","name":"Lady de Winter","type":"Role","_key":"24344","_from":"4976","_to":"17626"} +{"$label":"ACTS_IN","name":"Marilyn Mickler","type":"Role","_key":"16491","_from":"4976","_to":"12457"} +{"$label":"ACTS_IN","name":"Mrs. Denton","type":"Role","_key":"15646","_from":"4976","_to":"11928"} +{"$label":"ACTS_IN","name":"The Psychiatrist","type":"Role","_key":"10864","_from":"4976","_to":"8607"} +{"$label":"ACTS_IN","name":"Vicki Anderson","type":"Role","_key":"10845","_from":"4976","_to":"8599"} +{"$label":"ACTS_IN","name":"Evelyn Cross Mulwray","type":"Role","_key":"9799","_from":"4976","_to":"7856"} +{"$label":"ACTS_IN","name":"The Rat Catcher","type":"Role","_key":"91976","_from":"4977","_to":"54263"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"70868","_from":"4977","_to":"43068"} +{"$label":"ACTS_IN","name":"Owen","type":"Role","_key":"55089","_from":"4977","_to":"35180"} +{"$label":"ACTS_IN","name":"Stucky","type":"Role","_key":"22567","_from":"4977","_to":"16381"} +{"$label":"ACTS_IN","name":"Gus Snider","type":"Role","_key":"120633","_from":"4980","_to":"70847"} +{"$label":"ACTS_IN","name":"Doc Schultz","type":"Role","_key":"115677","_from":"4980","_to":"68096"} +{"$label":"ACTS_IN","name":"Walker","type":"Role","_key":"95150","_from":"4980","_to":"55990"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"5872","_from":"4989","_to":"4983"} +{"$label":"ACTS_IN","name":"Trousinski","type":"Role","_key":"5871","_from":"4988","_to":"4983"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"5869","_from":"4987","_to":"4983"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"5867","_from":"4986","_to":"4983"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"5866","_from":"4985","_to":"4983"} +{"$label":"ACTS_IN","name":"Dianne","type":"Role","_key":"5865","_from":"4984","_to":"4983"} +{"$label":"ACTS_IN","name":"Callie Scheffer","type":"Role","_key":"89256","_from":"4984","_to":"52848"} +{"$label":"ACTS_IN","name":"Grey Ellison","type":"Role","_key":"72595","_from":"4984","_to":"43769"} +{"$label":"ACTS_IN","name":"Dr. Elizabeth Clay","type":"Role","_key":"61149","_from":"4984","_to":"38646"} +{"$label":"ACTS_IN","name":"Jean Price","type":"Role","_key":"55422","_from":"4984","_to":"35328"} +{"$label":"ACTS_IN","name":"Luanne LeSeur \/ Prunella Pegula","type":"Role","_key":"53842","_from":"4984","_to":"34683"} +{"$label":"ACTS_IN","name":"Madison Carter","type":"Role","_key":"52755","_from":"4984","_to":"34229"} +{"$label":"ACTS_IN","name":"Connie Czapski","type":"Role","_key":"36374","_from":"4984","_to":"24671"} +{"$label":"ACTS_IN","name":"Vivian Wood","type":"Role","_key":"31002","_from":"4984","_to":"21713"} +{"$label":"ACTS_IN","name":"Palmer","type":"Role","_key":"120456","_from":"4985","_to":"70761"} +{"$label":"ACTS_IN","name":"Casher","type":"Role","_key":"113779","_from":"4985","_to":"67043"} +{"$label":"ACTS_IN","name":"James Hoffman","type":"Role","_key":"105361","_from":"4985","_to":"61992"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"103416","_from":"4985","_to":"60834"} +{"$label":"ACTS_IN","name":"Billy Hill","type":"Role","_key":"57027","_from":"4985","_to":"36182"} +{"$label":"ACTS_IN","name":"Chad Palomino","type":"Role","_key":"52394","_from":"4985","_to":"34097"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"13189","_from":"4985","_to":"10277"} +{"$label":"ACTS_IN","name":"Roach","type":"Role","_key":"11925","_from":"4985","_to":"9350"} +{"$label":"ACTS_IN","name":"Emily Forrester","type":"Role","_key":"118894","_from":"4986","_to":"69879"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"117493","_from":"4986","_to":"69087"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"115022","_from":"4986","_to":"67733"} +{"$label":"ACTS_IN","name":"Georgina Salt","type":"Role","_key":"102048","_from":"4986","_to":"60038"} +{"$label":"ACTS_IN","name":"Gray Baldwin","type":"Role","_key":"102031","_from":"4986","_to":"60031"} +{"$label":"ACTS_IN","name":"Aunt","type":"Role","_key":"100767","_from":"4986","_to":"59409"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"99820","_from":"4986","_to":"58882"} +{"$label":"ACTS_IN","name":"Rose Phipps","type":"Role","_key":"98354","_from":"4986","_to":"57925"} +{"$label":"ACTS_IN","name":"Mercedes Lane","type":"Role","_key":"96018","_from":"4986","_to":"56441"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"69314","_from":"4986","_to":"42372"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"65371","_from":"4986","_to":"40552"} +{"$label":"ACTS_IN","name":"Kendra","type":"Role","_key":"54318","_from":"4986","_to":"34859"} +{"$label":"ACTS_IN","name":"Sharonna","type":"Role","_key":"52110","_from":"4986","_to":"33976"} +{"$label":"ACTS_IN","name":"Brandy alias Rollergirl","type":"Role","_key":"35442","_from":"4986","_to":"24109"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"25936","_from":"4986","_to":"18645"} +{"$label":"ACTS_IN","name":"Dr. Judy Robinson","type":"Role","_key":"18795","_from":"4986","_to":"13892"} +{"$label":"ACTS_IN","name":"Annie Blackburn","type":"Role","_key":"16644","_from":"4986","_to":"12568"} +{"$label":"ACTS_IN","name":"Lilith","type":"Role","_key":"15672","_from":"4986","_to":"11948"} +{"$label":"ACTS_IN","name":"Felicity Shagwell","type":"Role","_key":"9624","_from":"4986","_to":"7750"} +{"$label":"ACTS_IN","name":"Mary Kelly","type":"Role","_key":"9009","_from":"4986","_to":"7296"} +{"$label":"ACTS_IN","name":"Lou Jr.","type":"Role","_key":"58523","_from":"4987","_to":"36982"} +{"$label":"ACTS_IN","name":"Assistant Undertaker","type":"Role","_key":"31031","_from":"4987","_to":"21724"} +{"$label":"ACTS_IN","name":"Deputy Kerrigan","type":"Role","_key":"30825","_from":"4987","_to":"21601"} +{"$label":"ACTS_IN","name":"Kevin Dulli","type":"Role","_key":"29714","_from":"4987","_to":"21034"} +{"$label":"ACTS_IN","name":"Highway Cop","type":"Role","_key":"14592","_from":"4988","_to":"11240"} +{"$label":"ACTS_IN","name":"Carmen Vasquez","type":"Role","_key":"5883","_from":"4996","_to":"4990"} +{"$label":"ACTS_IN","name":"Walter Wade Senior","type":"Role","_key":"5882","_from":"4995","_to":"4990"} +{"$label":"ACTS_IN","name":"(Uncle) John Shaft","type":"Role","_key":"5880","_from":"4994","_to":"4990"} +{"$label":"ACTS_IN","name":"Jack Roselli","type":"Role","_key":"5878","_from":"4993","_to":"4990"} +{"$label":"ACTS_IN","name":"Rasaan","type":"Role","_key":"5877","_from":"4992","_to":"4990"} +{"$label":"DIRECTED","_key":"5873","_from":"4991","_to":"4990"} +{"$label":"DIRECTED","_key":"107640","_from":"4991","_to":"63534"} +{"$label":"DIRECTED","_key":"48964","_from":"4991","_to":"32108"} +{"$label":"DIRECTED","_key":"48963","_from":"4991","_to":"32087"} +{"$label":"DIRECTED","_key":"7759","_from":"4991","_to":"6449"} +{"$label":"DIRECTED","_key":"6995","_from":"4991","_to":"5871"} +{"$label":"ACTS_IN","name":"Reptar Wagon (voice)","type":"Role","_key":"100323","_from":"4992","_to":"59151"} +{"$label":"ACTS_IN","name":"Freddie Harris","type":"Role","_key":"69858","_from":"4992","_to":"42628"} +{"$label":"ACTS_IN","name":"Terrell Wallace","type":"Role","_key":"8598","_from":"4992","_to":"6989"} +{"$label":"ACTS_IN","name":"Mike 'The Brick' Donatelli","type":"Role","_key":"118929","_from":"4993","_to":"69895"} +{"$label":"ACTS_IN","name":"Lt. McBain","type":"Role","_key":"118560","_from":"4993","_to":"69710"} +{"$label":"ACTS_IN","name":"Gabe","type":"Role","_key":"106765","_from":"4993","_to":"62941"} +{"$label":"ACTS_IN","name":"Captain Logan","type":"Role","_key":"105498","_from":"4993","_to":"62082"} +{"$label":"ACTS_IN","name":"Settimo","type":"Role","_key":"103947","_from":"4993","_to":"61143"} +{"$label":"ACTS_IN","name":"Guy Blank","type":"Role","_key":"92877","_from":"4993","_to":"54784"} +{"$label":"ACTS_IN","name":"Det. Molinari","type":"Role","_key":"71682","_from":"4993","_to":"43396"} +{"$label":"ACTS_IN","name":"Lieutenant Allegrezza","type":"Role","_key":"71327","_from":"4993","_to":"43264"} +{"$label":"ACTS_IN","name":"Julian Marty","type":"Role","_key":"69443","_from":"4993","_to":"42438"} +{"$label":"ACTS_IN","name":"Detective Garnet Wallace","type":"Role","_key":"68680","_from":"4993","_to":"42088"} +{"$label":"ACTS_IN","name":"Frank Kraft","type":"Role","_key":"68674","_from":"4993","_to":"42086"} +{"$label":"ACTS_IN","name":"Arius","type":"Role","_key":"67193","_from":"4993","_to":"41449"} +{"$label":"ACTS_IN","name":"General Martin Perez","type":"Role","_key":"48136","_from":"4993","_to":"31632"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"48016","_from":"4993","_to":"31583"} +{"$label":"ACTS_IN","name":"Dan Hedaya","type":"Role","_key":"28264","_from":"4993","_to":"20232"} +{"$label":"ACTS_IN","name":"Loan Officer","type":"Role","_key":"24769","_from":"4993","_to":"17908"} +{"$label":"ACTS_IN","name":"Morton Cushman","type":"Role","_key":"24335","_from":"4993","_to":"17622"} +{"$label":"ACTS_IN","name":"Tully Alford","type":"Role","_key":"24232","_from":"4993","_to":"17551"} +{"$label":"ACTS_IN","name":"Frank Waturi","type":"Role","_key":"21970","_from":"4993","_to":"16044"} +{"$label":"ACTS_IN","name":"Vincenzo Castigliane","type":"Role","_key":"11786","_from":"4993","_to":"9247"} +{"$label":"ACTS_IN","name":"Sgt. Jeffrey 'Jeff' Rabin","type":"Role","_key":"7478","_from":"4993","_to":"6221"} +{"$label":"ACTS_IN","name":"Joe Maretto","type":"Role","_key":"6900","_from":"4993","_to":"5792"} +{"$label":"ACTS_IN","name":"Commissioner Pike","type":"Role","_key":"99236","_from":"4994","_to":"58479"} +{"$label":"ACTS_IN","name":"Miles Quade","type":"Role","_key":"68008","_from":"4994","_to":"41786"} +{"$label":"ACTS_IN","name":"Lee Marvin","type":"Role","_key":"59314","_from":"4994","_to":"37462"} +{"$label":"ACTS_IN","name":"Lyle Barton","type":"Role","_key":"59043","_from":"4994","_to":"37275"} +{"$label":"ACTS_IN","name":"Assistant V.P. Trueman","type":"Role","_key":"52745","_from":"4994","_to":"34224"} +{"$label":"ACTS_IN","name":"Onkel Joe","type":"Role","_key":"51133","_from":"4994","_to":"33354"} +{"$label":"ACTS_IN","name":"Serpenius","type":"Role","_key":"22375","_from":"4994","_to":"16258"} +{"$label":"ACTS_IN","name":"Dist. Atty. Martin Talbot","type":"Role","_key":"9513","_from":"4994","_to":"7669"} +{"$label":"ACTS_IN","name":"John Shaft","type":"Role","_key":"6019","_from":"4994","_to":"5106"} +{"$label":"ACTS_IN","name":"John Shaft","type":"Role","_key":"6008","_from":"4994","_to":"5098"} +{"$label":"ACTS_IN","name":"John Shaft","type":"Role","_key":"5909","_from":"4994","_to":"5022"} +{"$label":"ACTS_IN","name":"Lt. Ray Silak, NYPD","type":"Role","_key":"110130","_from":"4995","_to":"65075"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"58581","_from":"4995","_to":"37011"} +{"$label":"ACTS_IN","name":"Lenny Savage","type":"Role","_key":"48701","_from":"4995","_to":"31945"} +{"$label":"ACTS_IN","name":"Oren Trask","type":"Role","_key":"27619","_from":"4995","_to":"19802"} +{"$label":"ACTS_IN","name":"Dr. Curtis Franklin","type":"Role","_key":"16319","_from":"4995","_to":"12369"} +{"$label":"ACTS_IN","name":"Lori Strother","type":"Role","_key":"121004","_from":"4996","_to":"71073"} +{"$label":"ACTS_IN","name":"Dorothy Johnson","type":"Role","_key":"118646","_from":"4996","_to":"69761"} +{"$label":"ACTS_IN","name":"Ruby Sinclair","type":"Role","_key":"114363","_from":"4996","_to":"67366"} +{"$label":"ACTS_IN","name":"Dr. April Sommers","type":"Role","_key":"111853","_from":"4996","_to":"66031"} +{"$label":"ACTS_IN","name":"Calypso","type":"Role","_key":"111716","_from":"4996","_to":"65950"} +{"$label":"ACTS_IN","name":"Rae, Girl with Dog","type":"Role","_key":"111692","_from":"4996","_to":"65944"} +{"$label":"ACTS_IN","name":"Alexandra 'Alex' Torres","type":"Role","_key":"108909","_from":"4996","_to":"64365"} +{"$label":"ACTS_IN","name":"Queen of Trash","type":"Role","_key":"107118","_from":"4996","_to":"63166"} +{"$label":"ACTS_IN","name":"Anne-Marie McCoy","type":"Role","_key":"54475","_from":"4996","_to":"34925"} +{"$label":"ACTS_IN","name":"Lee Cullen","type":"Role","_key":"52721","_from":"4996","_to":"34221"} +{"$label":"ACTS_IN","name":"Lulu Daniels","type":"Role","_key":"21515","_from":"4996","_to":"15740"} +{"$label":"ACTS_IN","name":"Ria Verma","type":"Role","_key":"5898","_from":"5011","_to":"4997"} +{"$label":"ACTS_IN","name":"Saroj Rai","type":"Role","_key":"5896","_from":"5010","_to":"4997"} +{"$label":"ACTS_IN","name":"Rahul Chadha","type":"Role","_key":"5895","_from":"5009","_to":"4997"} +{"$label":"ACTS_IN","name":"Varun Verma","type":"Role","_key":"5894","_from":"5008","_to":"4997"} +{"$label":"ACTS_IN","name":"Aliya Verma","type":"Role","_key":"5893","_from":"5007","_to":"4997"} +{"$label":"ACTS_IN","name":"Ayesha Verma","type":"Role","_key":"5892","_from":"5006","_to":"4997"} +{"$label":"ACTS_IN","name":"Vikram Mehta","type":"Role","_key":"5891","_from":"5005","_to":"4997"} +{"$label":"ACTS_IN","name":"Hemant Rai","type":"Role","_key":"5890","_from":"5004","_to":"4997"} +{"$label":"ACTS_IN","name":"Aditi Verma","type":"Role","_key":"5889","_from":"5003","_to":"4997"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"5888","_from":"5002","_to":"4997"} +{"$label":"ACTS_IN","name":"Parabatlal Kanhaiyalal 'P.K.' Dubey","type":"Role","_key":"5887","_from":"5001","_to":"4997"} +{"$label":"ACTS_IN","name":"Pimmi Verma","type":"Role","_key":"5886","_from":"5000","_to":"4997"} +{"$label":"ACTS_IN","name":"Lalit Verma","type":"Role","_key":"5885","_from":"4999","_to":"4997"} +{"$label":"DIRECTED","_key":"5884","_from":"4998","_to":"4997"} +{"$label":"DIRECTED","_key":"109964","_from":"4998","_to":"64968"} +{"$label":"DIRECTED","_key":"90349","_from":"4998","_to":"53397"} +{"$label":"DIRECTED","_key":"71173","_from":"4998","_to":"43195"} +{"$label":"DIRECTED","_key":"51481","_from":"4998","_to":"33572"} +{"$label":"DIRECTED","_key":"48270","_from":"4998","_to":"31706"} +{"$label":"DIRECTED","_key":"16697","_from":"4998","_to":"12595"} +{"$label":"ACTS_IN","name":"The Anonymous Caller","type":"Role","_key":"120934","_from":"4999","_to":"71017"} +{"$label":"ACTS_IN","name":"Bhaisaab","type":"Role","_key":"101496","_from":"4999","_to":"59735"} +{"$label":"ACTS_IN","name":"Brigadier Shekhar Sharma","type":"Role","_key":"98654","_from":"4999","_to":"58139"} +{"$label":"ACTS_IN","name":"Police Commander Tariq Ali","type":"Role","_key":"98417","_from":"4999","_to":"57978"} +{"$label":"ACTS_IN","name":"Captain Nemo","type":"Role","_key":"50536","_from":"4999","_to":"33007"} +{"$label":"ACTS_IN","name":"Yeti","type":"Role","_key":"47808","_from":"4999","_to":"31472"} +{"$label":"ACTS_IN","name":"Madam","type":"Role","_key":"49893","_from":"5000","_to":"32652"} +{"$label":"ACTS_IN","name":"Jaswinder Kapoor","type":"Role","_key":"30532","_from":"5000","_to":"21461"} +{"$label":"ACTS_IN","name":"Anna Mausi","type":"Role","_key":"30510","_from":"5000","_to":"21443"} +{"$label":"ACTS_IN","name":"Murli","type":"Role","_key":"105296","_from":"5001","_to":"61962"} +{"$label":"ACTS_IN","name":"Nandini","type":"Role","_key":"70371","_from":"5011","_to":"42859"} +{"$label":"ACTS_IN","name":"Santacana","type":"Role","_key":"5907","_from":"5021","_to":"5012"} +{"$label":"ACTS_IN","name":"Patri","type":"Role","_key":"5906","_from":"5020","_to":"5012"} +{"$label":"ACTS_IN","name":"Paz Padilla","type":"Role","_key":"5905","_from":"5019","_to":"5012"} +{"$label":"ACTS_IN","name":"Muriel Moreno","type":"Role","_key":"5904","_from":"5018","_to":"5012"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"5903","_from":"5017","_to":"5012"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"5902","_from":"5016","_to":"5012"} +{"$label":"ACTS_IN","name":"Richi","type":"Role","_key":"5901","_from":"5015","_to":"5012"} +{"$label":"ACTS_IN","name":"Tono","type":"Role","_key":"5900","_from":"5014","_to":"5012"} +{"$label":"DIRECTED","_key":"5899","_from":"5013","_to":"5012"} +{"$label":"ACTS_IN","name":"Alejandro","type":"Role","_key":"66312","_from":"5016","_to":"41023"} +{"$label":"ACTS_IN","name":"Secretaria","type":"Role","_key":"30092","_from":"5017","_to":"21209"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"21628","_from":"5017","_to":"15811"} +{"$label":"ACTS_IN","name":"Rollie","type":"Role","_key":"5917","_from":"5030","_to":"5022"} +{"$label":"ACTS_IN","name":"Marcy","type":"Role","_key":"5916","_from":"5029","_to":"5022"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"5915","_from":"5028","_to":"5022"} +{"$label":"ACTS_IN","name":"Sergeant Tom Hannon","type":"Role","_key":"5914","_from":"5027","_to":"5022"} +{"$label":"ACTS_IN","name":"Ellie Moore","type":"Role","_key":"5913","_from":"5026","_to":"5022"} +{"$label":"ACTS_IN","name":"Ben Buford","type":"Role","_key":"5912","_from":"5025","_to":"5022"} +{"$label":"ACTS_IN","name":"Bumpy Jonas","type":"Role","_key":"5910","_from":"5024","_to":"5022"} +{"$label":"DIRECTED","_key":"5908","_from":"5023","_to":"5022"} +{"$label":"DIRECTED","_key":"6007","_from":"5023","_to":"5098"} +{"$label":"ACTS_IN","name":"Maj. Nammack","type":"Role","_key":"118073","_from":"5024","_to":"69396"} +{"$label":"ACTS_IN","name":"Detective Turner","type":"Role","_key":"108237","_from":"5024","_to":"63963"} +{"$label":"ACTS_IN","name":"Staff Sergeant Webster","type":"Role","_key":"59460","_from":"5024","_to":"37556"} +{"$label":"ACTS_IN","name":"Bumpy Jonas","type":"Role","_key":"6009","_from":"5024","_to":"5098"} +{"$label":"ACTS_IN","name":"Dr. Nils Hellstrom","type":"Role","_key":"114171","_from":"5027","_to":"67258"} +{"$label":"ACTS_IN","name":"Whitfield","type":"Role","_key":"113896","_from":"5027","_to":"67087"} +{"$label":"ACTS_IN","name":"Mr. Fisher","type":"Role","_key":"59634","_from":"5027","_to":"37645"} +{"$label":"ACTS_IN","name":"J. C. Berg","type":"Role","_key":"10769","_from":"5028","_to":"8536"} +{"$label":"ACTS_IN","name":"Die Gute Fee","type":"Role","_key":"5932","_from":"5037","_to":"5031"} +{"$label":"ACTS_IN","name":"Pace Fortune","type":"Role","_key":"5931","_from":"5036","_to":"5031"} +{"$label":"ACTS_IN","name":"Unfall-M\u00e4dchen","type":"Role","_key":"5930","_from":"5035","_to":"5031"} +{"$label":"ACTS_IN","name":"Mr. Reindeer","type":"Role","_key":"5929","_from":"5034","_to":"5031"} +{"$label":"ACTS_IN","name":"Perdita Durango","type":"Role","_key":"5926","_from":"5033","_to":"5031"} +{"$label":"ACTS_IN","name":"Marietta Fortune","type":"Role","_key":"5924","_from":"5032","_to":"5031"} +{"$label":"ACTS_IN","name":"Etta","type":"Role","_key":"119797","_from":"5032","_to":"70340"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"114693","_from":"5032","_to":"67561"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"47131","_from":"5032","_to":"31069"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"40515","_from":"5032","_to":"27278"} +{"$label":"ACTS_IN","name":"Nora Griswold","type":"Role","_key":"39625","_from":"5032","_to":"26781"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"35337","_from":"5032","_to":"24063"} +{"$label":"ACTS_IN","name":"Marilyn Levens","type":"Role","_key":"15308","_from":"5032","_to":"11713"} +{"$label":"ACTS_IN","name":"Ida Sessions","type":"Role","_key":"9804","_from":"5032","_to":"7856"} +{"$label":"ACTS_IN","name":"Julia Waters","type":"Role","_key":"116758","_from":"5033","_to":"68729"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"111709","_from":"5033","_to":"65950"} +{"$label":"ACTS_IN","name":"Darya Greenwood","type":"Role","_key":"106944","_from":"5033","_to":"63051"} +{"$label":"ACTS_IN","name":"Anna Marie Erd\u00f6dy","type":"Role","_key":"95979","_from":"5033","_to":"56429"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"94487","_from":"5033","_to":"55647"} +{"$label":"ACTS_IN","name":"Greta Bollenbecker","type":"Role","_key":"94322","_from":"5033","_to":"55539"} +{"$label":"ACTS_IN","name":"La Colombiana","type":"Role","_key":"94133","_from":"5033","_to":"55435"} +{"$label":"ACTS_IN","name":"Big Nose Kate","type":"Role","_key":"88376","_from":"5033","_to":"52390"} +{"$label":"ACTS_IN","name":"Laura Klein","type":"Role","_key":"63383","_from":"5033","_to":"39716"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"62807","_from":"5033","_to":"39473"} +{"$label":"ACTS_IN","name":"High Priestess Thar","type":"Role","_key":"56894","_from":"5033","_to":"36116"} +{"$label":"ACTS_IN","name":"Lisle von Rhoman","type":"Role","_key":"53442","_from":"5033","_to":"34530"} +{"$label":"ACTS_IN","name":"Nimue","type":"Role","_key":"45833","_from":"5033","_to":"30310"} +{"$label":"ACTS_IN","name":"Madame Moitessier","type":"Role","_key":"25921","_from":"5033","_to":"18644"} +{"$label":"ACTS_IN","name":"Madame Moitessier","type":"Role","_key":"25884","_from":"5033","_to":"18633"} +{"$label":"ACTS_IN","name":"Mme. Moitessier","type":"Role","_key":"25863","_from":"5033","_to":"18581"} +{"$label":"ACTS_IN","name":"Dorothy Vallens","type":"Role","_key":"9349","_from":"5033","_to":"7553"} +{"$label":"ACTS_IN","name":"Vincent Talbot","type":"Role","_key":"38580","_from":"5034","_to":"26068"} +{"$label":"ACTS_IN","name":"Katie Barnes","type":"Role","_key":"107191","_from":"5035","_to":"63224"} +{"$label":"ACTS_IN","name":"Keri Johnson","type":"Role","_key":"59487","_from":"5035","_to":"37565"} +{"$label":"ACTS_IN","name":"Curley's Wife","type":"Role","_key":"55005","_from":"5035","_to":"35155"} +{"$label":"ACTS_IN","name":"April Delongpre","type":"Role","_key":"36607","_from":"5035","_to":"24811"} +{"$label":"ACTS_IN","name":"Ellen Armstrong","type":"Role","_key":"36375","_from":"5035","_to":"24671"} +{"$label":"ACTS_IN","name":"Sophie Zieten","type":"Role","_key":"18045","_from":"5035","_to":"13409"} +{"$label":"ACTS_IN","name":"Young Dimitri (voice)","type":"Role","_key":"53911","_from":"5036","_to":"34698"} +{"$label":"ACTS_IN","name":"Astrid Kirchherr","type":"Role","_key":"90749","_from":"5037","_to":"53557"} +{"$label":"ACTS_IN","name":"Katrina","type":"Role","_key":"58333","_from":"5037","_to":"36874"} +{"$label":"ACTS_IN","name":"Kate Lyons","type":"Role","_key":"36968","_from":"5037","_to":"25061"} +{"$label":"ACTS_IN","name":"Kate Lyons","type":"Role","_key":"36815","_from":"5037","_to":"24964"} +{"$label":"ACTS_IN","name":"Kate Lyons","type":"Role","_key":"36599","_from":"5037","_to":"24806"} +{"$label":"ACTS_IN","name":"Kate Lyons","type":"Role","_key":"36589","_from":"5037","_to":"24794"} +{"$label":"ACTS_IN","name":"Batseba","type":"Role","_key":"23122","_from":"5037","_to":"16763"} +{"$label":"ACTS_IN","name":"Laura Palmer","type":"Role","_key":"16638","_from":"5037","_to":"12568"} +{"$label":"ACTS_IN","name":"Second Officer of Shona","type":"Role","_key":"5941","_from":"5046","_to":"5038"} +{"$label":"ACTS_IN","name":"First Officer of Shona","type":"Role","_key":"5940","_from":"5045","_to":"5038"} +{"$label":"ACTS_IN","name":"Second Officer","type":"Role","_key":"5939","_from":"5044","_to":"5038"} +{"$label":"ACTS_IN","name":"First Officer","type":"Role","_key":"5938","_from":"5043","_to":"5038"} +{"$label":"ACTS_IN","name":"Captain of Louisa","type":"Role","_key":"5937","_from":"5042","_to":"5038"} +{"$label":"ACTS_IN","name":"Rev. Samuel Sayer","type":"Role","_key":"5936","_from":"5041","_to":"5038"} +{"$label":"ACTS_IN","name":"Rose Sayer","type":"Role","_key":"5935","_from":"5040","_to":"5038"} +{"$label":"DIRECTED","_key":"5933","_from":"5039","_to":"5038"} +{"$label":"DIRECTED","_key":"117505","_from":"5039","_to":"69090"} +{"$label":"DIRECTED","_key":"112047","_from":"5039","_to":"66149"} +{"$label":"DIRECTED","_key":"110758","_from":"5039","_to":"65430"} +{"$label":"DIRECTED","_key":"110629","_from":"5039","_to":"65354"} +{"$label":"DIRECTED","_key":"105738","_from":"5039","_to":"62249"} +{"$label":"DIRECTED","_key":"101483","_from":"5039","_to":"59732"} +{"$label":"DIRECTED","_key":"88684","_from":"5039","_to":"52552"} +{"$label":"DIRECTED","_key":"71017","_from":"5039","_to":"43129"} +{"$label":"DIRECTED","_key":"70501","_from":"5039","_to":"42914"} +{"$label":"DIRECTED","_key":"67309","_from":"5039","_to":"41491"} +{"$label":"DIRECTED","_key":"66657","_from":"5039","_to":"41192"} +{"$label":"DIRECTED","_key":"62678","_from":"5039","_to":"39417"} +{"$label":"DIRECTED","_key":"44530","_from":"5039","_to":"29653"} +{"$label":"DIRECTED","_key":"27814","_from":"5039","_to":"19941"} +{"$label":"DIRECTED","_key":"25704","_from":"5039","_to":"18497"} +{"$label":"DIRECTED","_key":"21866","_from":"5039","_to":"15962"} +{"$label":"DIRECTED","_key":"18034","_from":"5039","_to":"13405"} +{"$label":"DIRECTED","_key":"11617","_from":"5039","_to":"9125"} +{"$label":"DIRECTED","_key":"11443","_from":"5039","_to":"9009"} +{"$label":"ACTS_IN","name":"John Hay","type":"Role","_key":"101877","_from":"5039","_to":"59964"} +{"$label":"ACTS_IN","name":"American in Tampico in White Suit (uncredited)","type":"Role","_key":"25716","_from":"5039","_to":"18497"} +{"$label":"ACTS_IN","name":"Kardinal Glennon","type":"Role","_key":"24918","_from":"5039","_to":"18009"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"21845","_from":"5039","_to":"15962"} +{"$label":"ACTS_IN","name":"Meister Hora","type":"Role","_key":"19837","_from":"5039","_to":"14628"} +{"$label":"ACTS_IN","name":"Gandalf the Grey","type":"Role","_key":"12585","_from":"5039","_to":"9845"} +{"$label":"ACTS_IN","name":"Gandalf","type":"Role","_key":"12573","_from":"5039","_to":"9836"} +{"$label":"ACTS_IN","name":"Noah Cross","type":"Role","_key":"9800","_from":"5039","_to":"7856"} +{"$label":"ACTS_IN","name":"Eleanor of Aquitaine","type":"Role","_key":"118373","_from":"5040","_to":"69592"} +{"$label":"ACTS_IN","name":"Eula Goodnight","type":"Role","_key":"112877","_from":"5040","_to":"66629"} +{"$label":"ACTS_IN","name":"Linda Seton","type":"Role","_key":"108440","_from":"5040","_to":"64107"} +{"$label":"ACTS_IN","name":"Mrs. Violet Venable","type":"Role","_key":"101477","_from":"5040","_to":"59731"} +{"$label":"ACTS_IN","name":"Ethel Thayer","type":"Role","_key":"72152","_from":"5040","_to":"43611"} +{"$label":"ACTS_IN","name":"Christina Drayton","type":"Role","_key":"16222","_from":"5040","_to":"12311"} +{"$label":"ACTS_IN","name":"Tracy Lord","type":"Role","_key":"11593","_from":"5040","_to":"9107"} +{"$label":"ACTS_IN","name":"Susan Vance","type":"Role","_key":"10717","_from":"5040","_to":"8505"} +{"$label":"ACTS_IN","name":"Sir Ambrose Abercombie","type":"Role","_key":"108569","_from":"5041","_to":"64161"} +{"$label":"ACTS_IN","name":"Lord Rawnsley","type":"Role","_key":"62674","_from":"5041","_to":"39416"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"41292","_from":"5041","_to":"27765"} +{"$label":"ACTS_IN","name":"Colonel Roberts","type":"Role","_key":"37564","_from":"5041","_to":"25461"} +{"$label":"ACTS_IN","name":"Cedric Page","type":"Role","_key":"35674","_from":"5041","_to":"24241"} +{"$label":"ACTS_IN","name":"Emeror of China","type":"Role","_key":"34438","_from":"5041","_to":"23592"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"24138","_from":"5041","_to":"17503"} +{"$label":"ACTS_IN","name":"Col. Cunliffe","type":"Role","_key":"18364","_from":"5041","_to":"13621"} +{"$label":"ACTS_IN","name":"P.K. Mussardi","type":"Role","_key":"15971","_from":"5041","_to":"12144"} +{"$label":"ACTS_IN","name":"Hector Enderby","type":"Role","_key":"8749","_from":"5041","_to":"7102"} +{"$label":"ACTS_IN","name":"Botschafter De Sadesky","type":"Role","_key":"11169","_from":"5042","_to":"8839"} +{"$label":"ACTS_IN","name":"Heinie Schwaffer","type":"Role","_key":"106216","_from":"5043","_to":"62557"} +{"$label":"ACTS_IN","name":"Sheriff Max Muller","type":"Role","_key":"69709","_from":"5043","_to":"42555"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"12571","_from":"5043","_to":"9836"} +{"$label":"ACTS_IN","name":"Jack Brewster","type":"Role","_key":"44990","_from":"5044","_to":"29895"} +{"$label":"ACTS_IN","name":"Erik the Old","type":"Role","_key":"42766","_from":"5044","_to":"28616"} +{"$label":"ACTS_IN","name":"General Anatol Gogol","type":"Role","_key":"8560","_from":"5044","_to":"6967"} +{"$label":"ACTS_IN","name":"General Anatol Gogol","type":"Role","_key":"8545","_from":"5044","_to":"6961"} +{"$label":"ACTS_IN","name":"General Anatol Gogol","type":"Role","_key":"8444","_from":"5044","_to":"6889"} +{"$label":"ACTS_IN","name":"General Anatol Gogol","type":"Role","_key":"8431","_from":"5044","_to":"6879"} +{"$label":"ACTS_IN","name":"General Anatol Gogol","type":"Role","_key":"8318","_from":"5044","_to":"6815"} +{"$label":"ACTS_IN","name":"Morzeny","type":"Role","_key":"7846","_from":"5044","_to":"6505"} +{"$label":"ACTS_IN","name":"Vopo Captain","type":"Role","_key":"95319","_from":"5046","_to":"56070"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"34580","_from":"5046","_to":"23672"} +{"$label":"ACTS_IN","name":"M.I.T. Student #3","type":"Role","_key":"5959","_from":"5058","_to":"5047"} +{"$label":"ACTS_IN","name":"M.I.T. Student #2","type":"Role","_key":"5958","_from":"5057","_to":"5047"} +{"$label":"ACTS_IN","name":"Barbershop Quartet #4","type":"Role","_key":"5956","_from":"5056","_to":"5047"} +{"$label":"ACTS_IN","name":"Barbershop Quartet #3","type":"Role","_key":"5955","_from":"5055","_to":"5047"} +{"$label":"ACTS_IN","name":"Barbershop Quartet #2","type":"Role","_key":"5954","_from":"5054","_to":"5047"} +{"$label":"ACTS_IN","name":"Barbershop Quartet #1","type":"Role","_key":"5953","_from":"5053","_to":"5047"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"5952","_from":"5052","_to":"5047"} +{"$label":"ACTS_IN","name":"Krystyn","type":"Role","_key":"5951","_from":"5051","_to":"5047"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"5950","_from":"5050","_to":"5047"} +{"$label":"ACTS_IN","name":"Billy McBride","type":"Role","_key":"5949","_from":"5049","_to":"5047"} +{"$label":"ACTS_IN","name":"Skylar","type":"Role","_key":"5947","_from":"5048","_to":"5047"} +{"$label":"ACTS_IN","name":"Phyllis","type":"Role","_key":"115303","_from":"5048","_to":"67887"} +{"$label":"ACTS_IN","name":"Belinda","type":"Role","_key":"104260","_from":"5048","_to":"61344"} +{"$label":"ACTS_IN","name":"Mandy","type":"Role","_key":"100291","_from":"5048","_to":"59140"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"97593","_from":"5048","_to":"57466"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"68839","_from":"5048","_to":"42175"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"59721","_from":"5048","_to":"37714"} +{"$label":"ACTS_IN","name":"Carlotta","type":"Role","_key":"57294","_from":"5048","_to":"36334"} +{"$label":"ACTS_IN","name":"Brooke Shields","type":"Role","_key":"54085","_from":"5048","_to":"34778"} +{"$label":"ACTS_IN","name":"Debi Newberry","type":"Role","_key":"53832","_from":"5048","_to":"34677"} +{"$label":"ACTS_IN","name":"Grace Briggs","type":"Role","_key":"22266","_from":"5048","_to":"16204"} +{"$label":"ACTS_IN","name":"Carol Martinez","type":"Role","_key":"9652","_from":"5048","_to":"7756"} +{"$label":"ACTS_IN","name":"Bo Laramie","type":"Role","_key":"105289","_from":"5049","_to":"61959"} +{"$label":"ACTS_IN","name":"William Cartwright","type":"Role","_key":"104448","_from":"5049","_to":"61433"} +{"$label":"ACTS_IN","name":"Young Bram","type":"Role","_key":"101205","_from":"5049","_to":"59615"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"94257","_from":"5049","_to":"55508"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"91562","_from":"5049","_to":"53977"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"67157","_from":"5049","_to":"41437"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"64433","_from":"5049","_to":"40148"} +{"$label":"ACTS_IN","name":"Staff Sgt. Vic W. Bedford","type":"Role","_key":"64348","_from":"5049","_to":"40107"} +{"$label":"ACTS_IN","name":"Lupus Grobowski","type":"Role","_key":"56472","_from":"5049","_to":"35880"} +{"$label":"ACTS_IN","name":"James 'Red' Atkins","type":"Role","_key":"54742","_from":"5049","_to":"35036"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"52230","_from":"5049","_to":"34021"} +{"$label":"ACTS_IN","name":"William J. Johns","type":"Role","_key":"23577","_from":"5049","_to":"17102"} +{"$label":"ACTS_IN","name":"Little Boy Matson","type":"Role","_key":"12597","_from":"5049","_to":"9849"} +{"$label":"ACTS_IN","name":"Carter Verone","type":"Role","_key":"6999","_from":"5049","_to":"5871"} +{"$label":"ACTS_IN","name":"Male Assistant","type":"Role","_key":"16888","_from":"5058","_to":"12696"} +{"$label":"ACTS_IN","name":"Jonas Skat","type":"Role","_key":"5974","_from":"5073","_to":"5059"} +{"$label":"ACTS_IN","name":"Albertus Picto, Kirchenmaler","type":"Role","_key":"5973","_from":"5072","_to":"5059"} +{"$label":"ACTS_IN","name":"Schmied Plog","type":"Role","_key":"5972","_from":"5071","_to":"5059"} +{"$label":"ACTS_IN","name":"M\u00f6nch","type":"Role","_key":"5971","_from":"5070","_to":"5059"} +{"$label":"ACTS_IN","name":"Raval","type":"Role","_key":"5970","_from":"5069","_to":"5059"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"5969","_from":"5068","_to":"5059"} +{"$label":"ACTS_IN","name":"Karin, Blocks Frau","type":"Role","_key":"5968","_from":"5067","_to":"5059"} +{"$label":"ACTS_IN","name":"Hexe","type":"Role","_key":"5967","_from":"5066","_to":"5059"} +{"$label":"ACTS_IN","name":"Lisa, Frau des Schmiedes","type":"Role","_key":"5966","_from":"5065","_to":"5059"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"5965","_from":"5064","_to":"5059"} +{"$label":"ACTS_IN","name":"Jof","type":"Role","_key":"5964","_from":"5063","_to":"5059"} +{"$label":"ACTS_IN","name":"Der Tod","type":"Role","_key":"5963","_from":"5062","_to":"5059"} +{"$label":"ACTS_IN","name":"J\u00f6ns","type":"Role","_key":"5962","_from":"5061","_to":"5059"} +{"$label":"DIRECTED","_key":"5960","_from":"5060","_to":"5059"} +{"$label":"DIRECTED","_key":"115852","_from":"5060","_to":"68205"} +{"$label":"DIRECTED","_key":"91351","_from":"5060","_to":"53876"} +{"$label":"DIRECTED","_key":"71647","_from":"5060","_to":"43382"} +{"$label":"DIRECTED","_key":"71340","_from":"5060","_to":"43269"} +{"$label":"DIRECTED","_key":"71000","_from":"5060","_to":"43123"} +{"$label":"DIRECTED","_key":"70252","_from":"5060","_to":"42811"} +{"$label":"DIRECTED","_key":"61871","_from":"5060","_to":"38945"} +{"$label":"DIRECTED","_key":"56166","_from":"5060","_to":"35702"} +{"$label":"DIRECTED","_key":"40784","_from":"5060","_to":"27445"} +{"$label":"DIRECTED","_key":"9401","_from":"5060","_to":"7587"} +{"$label":"DIRECTED","_key":"7283","_from":"5060","_to":"6077"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"70997","_from":"5061","_to":"43123"} +{"$label":"ACTS_IN","name":"Herr Vogler","type":"Role","_key":"9405","_from":"5061","_to":"7587"} +{"$label":"ACTS_IN","name":"Evald Borg","type":"Role","_key":"7287","_from":"5061","_to":"6077"} +{"$label":"ACTS_IN","name":"Mother Rikkissa","type":"Role","_key":"95009","_from":"5064","_to":"55937"} +{"$label":"ACTS_IN","name":"Mother Rikissa","type":"Role","_key":"94796","_from":"5064","_to":"55826"} +{"$label":"ACTS_IN","name":"Katarina","type":"Role","_key":"56164","_from":"5064","_to":"35702"} +{"$label":"ACTS_IN","name":"Ellen Grange","type":"Role","_key":"12966","_from":"5064","_to":"10112"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"9402","_from":"5064","_to":"7587"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"7285","_from":"5064","_to":"6077"} +{"$label":"ACTS_IN","name":"Isabella Vanger","type":"Role","_key":"104558","_from":"5068","_to":"61500"} +{"$label":"ACTS_IN","name":"Ingeri","type":"Role","_key":"71337","_from":"5068","_to":"43269"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"70248","_from":"5068","_to":"42811"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"42432","_from":"5068","_to":"28411"} +{"$label":"ACTS_IN","name":"Karins Liebhaber","type":"Role","_key":"7291","_from":"5071","_to":"6077"} +{"$label":"ACTS_IN","name":"Kathi Solinger","type":"Role","_key":"5981","_from":"5080","_to":"5074"} +{"$label":"ACTS_IN","name":"Erna Solinger","type":"Role","_key":"5980","_from":"5079","_to":"5074"} +{"$label":"ACTS_IN","name":"Hanna Solinger","type":"Role","_key":"5978","_from":"5078","_to":"5074"} +{"$label":"ACTS_IN","name":"Maikis Chassanoglou","type":"Role","_key":"5977","_from":"5077","_to":"5074"} +{"$label":"ACTS_IN","name":"Christos Chassanoglou","type":"Role","_key":"5976","_from":"5076","_to":"5074"} +{"$label":"DIRECTED","_key":"5975","_from":"5075","_to":"5074"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"65956","_from":"5077","_to":"40798"} +{"$label":"ACTS_IN","name":"Sabine Ammann","type":"Role","_key":"88307","_from":"5078","_to":"52374"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"63505","_from":"5078","_to":"39761"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"41534","_from":"5078","_to":"27899"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"40639","_from":"5078","_to":"27367"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41990","_from":"5079","_to":"28132"} +{"$label":"ACTS_IN","name":"Carola","type":"Role","_key":"67712","_from":"5080","_to":"41641"} +{"$label":"ACTS_IN","name":"Pia","type":"Role","_key":"63739","_from":"5080","_to":"39849"} +{"$label":"ACTS_IN","name":"Herzelinde","type":"Role","_key":"54341","_from":"5080","_to":"34866"} +{"$label":"ACTS_IN","name":"Christopher Bing","type":"Role","_key":"6006","_from":"5097","_to":"5081"} +{"$label":"ACTS_IN","name":"Derek Mantini's Assistant for Emily Dickinson Puppet","type":"Role","_key":"6003","_from":"5082","_to":"5081"} +{"$label":"ACTS_IN","name":"Mr. Hiroshi","type":"Role","_key":"6002","_from":"5096","_to":"5081"} +{"$label":"ACTS_IN","name":"Sad Man in Line","type":"Role","_key":"6001","_from":"5095","_to":"5081"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"6000","_from":"5094","_to":"5081"} +{"$label":"ACTS_IN","name":"First J.M. Inc. Customer","type":"Role","_key":"5999","_from":"5093","_to":"5081"} +{"$label":"ACTS_IN","name":"Cab Driver","type":"Role","_key":"5997","_from":"5092","_to":"5081"} +{"$label":"ACTS_IN","name":"Tiny Woman","type":"Role","_key":"5996","_from":"5091","_to":"5081"} +{"$label":"ACTS_IN","name":"Captain Mertin","type":"Role","_key":"5995","_from":"5090","_to":"5081"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"5994","_from":"5089","_to":"5081"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"5993","_from":"5088","_to":"5081"} +{"$label":"ACTS_IN","name":"Daughter at Puppet Show","type":"Role","_key":"5992","_from":"5087","_to":"5081"} +{"$label":"ACTS_IN","name":"Father at Puppet Show","type":"Role","_key":"5991","_from":"5086","_to":"5081"} +{"$label":"ACTS_IN","name":"Woman in Elevator","type":"Role","_key":"5989","_from":"5085","_to":"5081"} +{"$label":"ACTS_IN","name":"Lotte Schwartz","type":"Role","_key":"5985","_from":"5084","_to":"5081"} +{"$label":"ACTS_IN","name":"John Horatio Malkovich","type":"Role","_key":"5983","_from":"5083","_to":"5081"} +{"$label":"DIRECTED","_key":"5982","_from":"5082","_to":"5081"} +{"$label":"DIRECTED","_key":"109392","_from":"5082","_to":"64630"} +{"$label":"DIRECTED","_key":"103581","_from":"5082","_to":"60925"} +{"$label":"DIRECTED","_key":"23307","_from":"5082","_to":"16899"} +{"$label":"ACTS_IN","name":"Conrad Vig","type":"Role","_key":"43348","_from":"5082","_to":"28963"} +{"$label":"ACTS_IN","name":"Clown","type":"Role","_key":"119202","_from":"5083","_to":"70040"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"110245","_from":"5083","_to":"65163"} +{"$label":"ACTS_IN","name":"Buck Howard","type":"Role","_key":"108464","_from":"5083","_to":"64118"} +{"$label":"ACTS_IN","name":"Alan Conway","type":"Role","_key":"96745","_from":"5083","_to":"56911"} +{"$label":"ACTS_IN","name":"Constanine","type":"Role","_key":"93630","_from":"5083","_to":"55123"} +{"$label":"ACTS_IN","name":"Biff Loman","type":"Role","_key":"90617","_from":"5083","_to":"53515"} +{"$label":"ACTS_IN","name":"David Lurie","type":"Role","_key":"89346","_from":"5083","_to":"52883"} +{"$label":"ACTS_IN","name":"General Thomas Timms","type":"Role","_key":"67131","_from":"5083","_to":"41425"} +{"$label":"ACTS_IN","name":"Tom Ripley","type":"Role","_key":"66952","_from":"5083","_to":"41333"} +{"$label":"ACTS_IN","name":"F. W. Murnau","type":"Role","_key":"66399","_from":"5083","_to":"41065"} +{"$label":"ACTS_IN","name":"Agent St. Anne","type":"Role","_key":"63193","_from":"5083","_to":"39631"} +{"$label":"ACTS_IN","name":"Basie","type":"Role","_key":"60828","_from":"5083","_to":"38429"} +{"$label":"ACTS_IN","name":"Charles VII.","type":"Role","_key":"59900","_from":"5083","_to":"37823"} +{"$label":"ACTS_IN","name":"Professor Sandiford","type":"Role","_key":"56771","_from":"5083","_to":"36060"} +{"$label":"ACTS_IN","name":"Lennie Small","type":"Role","_key":"55001","_from":"5083","_to":"35155"} +{"$label":"ACTS_IN","name":"Exorcist","type":"Role","_key":"54528","_from":"5083","_to":"34943"} +{"$label":"ACTS_IN","name":"Pascal Sauvage, the Greedy Frenchman","type":"Role","_key":"54171","_from":"5083","_to":"34805"} +{"$label":"ACTS_IN","name":"Mitch Leary","type":"Role","_key":"53515","_from":"5083","_to":"34555"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"53061","_from":"5083","_to":"34349"} +{"$label":"ACTS_IN","name":"Dr. Henry Jekyll \/ Edward Hyde","type":"Role","_key":"52524","_from":"5083","_to":"34153"} +{"$label":"ACTS_IN","name":"Charles II","type":"Role","_key":"47140","_from":"5083","_to":"31080"} +{"$label":"ACTS_IN","name":"Teddy Deserve","type":"Role","_key":"46901","_from":"5083","_to":"30925"} +{"$label":"ACTS_IN","name":"Humma Kavula","type":"Role","_key":"46724","_from":"5083","_to":"30837"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"46417","_from":"5083","_to":"30656"} +{"$label":"ACTS_IN","name":"Ozzie Cox","type":"Role","_key":"35023","_from":"5083","_to":"23900"} +{"$label":"ACTS_IN","name":"Kurtz","type":"Role","_key":"33970","_from":"5083","_to":"23380"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31633","_from":"5083","_to":"22083"} +{"$label":"ACTS_IN","name":"Gustav Briegleb","type":"Role","_key":"28085","_from":"5083","_to":"20133"} +{"$label":"ACTS_IN","name":"K\u00f6nig Galbatorix","type":"Role","_key":"21671","_from":"5083","_to":"15842"} +{"$label":"ACTS_IN","name":"Unferth","type":"Role","_key":"20288","_from":"5083","_to":"14868"} +{"$label":"ACTS_IN","name":"Garrett Goodrich","type":"Role","_key":"15482","_from":"5083","_to":"11827"} +{"$label":"ACTS_IN","name":"Cyrus Grissom","type":"Role","_key":"15075","_from":"5083","_to":"11583"} +{"$label":"ACTS_IN","name":"Vicomte S\u00e9bastien de Valmont","type":"Role","_key":"10209","_from":"5083","_to":"8147"} +{"$label":"ACTS_IN","name":"Alan 'Al' Rockoff, Photographer","type":"Role","_key":"7424","_from":"5083","_to":"6188"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"117750","_from":"5084","_to":"69222"} +{"$label":"ACTS_IN","name":"Princess Fiona (voice)","type":"Role","_key":"94278","_from":"5084","_to":"55521"} +{"$label":"ACTS_IN","name":"Freddie Clayton","type":"Role","_key":"90845","_from":"5084","_to":"53607"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"90024","_from":"5084","_to":"53253"} +{"$label":"ACTS_IN","name":"Maggie Feller","type":"Role","_key":"72807","_from":"5084","_to":"43867"} +{"$label":"ACTS_IN","name":"Christina Walters","type":"Role","_key":"72129","_from":"5084","_to":"43602"} +{"$label":"ACTS_IN","name":"Heather Davis","type":"Role","_key":"69418","_from":"5084","_to":"42427"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"67889","_from":"5084","_to":"41713"} +{"$label":"ACTS_IN","name":"Princess Fiona (voice)","type":"Role","_key":"61586","_from":"5084","_to":"38823"} +{"$label":"ACTS_IN","name":"Laura Garrety","type":"Role","_key":"59640","_from":"5084","_to":"37645"} +{"$label":"ACTS_IN","name":"Sara Fitzgerald","type":"Role","_key":"59531","_from":"5084","_to":"37583"} +{"$label":"ACTS_IN","name":"Christina Pagniacci","type":"Role","_key":"54717","_from":"5084","_to":"35030"} +{"$label":"ACTS_IN","name":"Natalie Cook","type":"Role","_key":"54062","_from":"5084","_to":"34775"} +{"$label":"ACTS_IN","name":"Joy McNally","type":"Role","_key":"52129","_from":"5084","_to":"33981"} +{"$label":"ACTS_IN","name":"Kimberly Wallace","type":"Role","_key":"51210","_from":"5084","_to":"33396"} +{"$label":"ACTS_IN","name":"Celine Naville","type":"Role","_key":"48013","_from":"5084","_to":"31583"} +{"$label":"ACTS_IN","name":"Natalie Cook","type":"Role","_key":"30996","_from":"5084","_to":"21713"} +{"$label":"ACTS_IN","name":"Jenny Everdeane","type":"Role","_key":"26221","_from":"5084","_to":"18837"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"16433","_from":"5084","_to":"12427"} +{"$label":"ACTS_IN","name":"Blonde TV Reporter","type":"Role","_key":"16211","_from":"5084","_to":"12305"} +{"$label":"ACTS_IN","name":"Amanda Woods","type":"Role","_key":"14008","_from":"5084","_to":"10865"} +{"$label":"ACTS_IN","name":"Tina Carlyle","type":"Role","_key":"10125","_from":"5084","_to":"8101"} +{"$label":"ACTS_IN","name":"Princess Fiona (voice)","type":"Role","_key":"9544","_from":"5084","_to":"7689"} +{"$label":"ACTS_IN","name":"Princess Fiona (voice)","type":"Role","_key":"9531","_from":"5084","_to":"7683"} +{"$label":"ACTS_IN","name":"Princess Fiona (voice)","type":"Role","_key":"9519","_from":"5084","_to":"7675"} +{"$label":"ACTS_IN","name":"Mary Jensen","type":"Role","_key":"6488","_from":"5084","_to":"5497"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"94710","_from":"5085","_to":"55789"} +{"$label":"ACTS_IN","name":"Landlady (as Octavia L. Spencer)","type":"Role","_key":"55559","_from":"5085","_to":"35381"} +{"$label":"ACTS_IN","name":"Check-In Girl","type":"Role","_key":"6663","_from":"5085","_to":"5608"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"48024","_from":"5088","_to":"31583"} +{"$label":"ACTS_IN","name":"Simkins","type":"Role","_key":"6654","_from":"5088","_to":"5608"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"92561","_from":"5092","_to":"54641"} +{"$label":"ACTS_IN","name":"Jimbo","type":"Role","_key":"58695","_from":"5093","_to":"37074"} +{"$label":"ACTS_IN","name":"Kenneth Jones","type":"Role","_key":"30268","_from":"5093","_to":"21306"} +{"$label":"ACTS_IN","name":"Warren Jensen","type":"Role","_key":"6497","_from":"5093","_to":"5497"} +{"$label":"ACTS_IN","name":"Daniel 'Dan' Saxon","type":"Role","_key":"116861","_from":"5094","_to":"68798"} +{"$label":"ACTS_IN","name":"Oscar 'Hap' Felsch","type":"Role","_key":"95183","_from":"5094","_to":"56003"} +{"$label":"ACTS_IN","name":"Cappie","type":"Role","_key":"94053","_from":"5094","_to":"55385"} +{"$label":"ACTS_IN","name":"Lt. (j.g.) Dale Hawkins","type":"Role","_key":"91449","_from":"5094","_to":"53931"} +{"$label":"ACTS_IN","name":"Bob Rogers, Jr.","type":"Role","_key":"90738","_from":"5094","_to":"53556"} +{"$label":"ACTS_IN","name":"Dick Brewer","type":"Role","_key":"73043","_from":"5094","_to":"43958"} +{"$label":"ACTS_IN","name":"Rick 'Wild Thing' Vaughn","type":"Role","_key":"67670","_from":"5094","_to":"41630"} +{"$label":"ACTS_IN","name":"Jackson Hammond","type":"Role","_key":"65096","_from":"5094","_to":"40441"} +{"$label":"ACTS_IN","name":"Bud Fox","type":"Role","_key":"64967","_from":"5094","_to":"40382"} +{"$label":"ACTS_IN","name":"Zane Zaminski","type":"Role","_key":"63986","_from":"5094","_to":"39957"} +{"$label":"ACTS_IN","name":"Carl Taylor","type":"Role","_key":"61383","_from":"5094","_to":"38727"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"60062","_from":"5094","_to":"37904"} +{"$label":"ACTS_IN","name":"Jake Kesey \/ The Wraith","type":"Role","_key":"59485","_from":"5094","_to":"37565"} +{"$label":"ACTS_IN","name":"Rick 'Wild Thing' Vaughn","type":"Role","_key":"58307","_from":"5094","_to":"36867"} +{"$label":"ACTS_IN","name":"Lt. Topper Harley","type":"Role","_key":"54917","_from":"5094","_to":"35117"} +{"$label":"ACTS_IN","name":"James Russell","type":"Role","_key":"53729","_from":"5094","_to":"34641"} +{"$label":"ACTS_IN","name":"Boy in Police Station","type":"Role","_key":"53454","_from":"5094","_to":"34532"} +{"$label":"ACTS_IN","name":"Topper Harley","type":"Role","_key":"52617","_from":"5094","_to":"34186"} +{"$label":"ACTS_IN","name":"Richard \u201eDitch\u201c Brodie","type":"Role","_key":"52310","_from":"5094","_to":"34057"} +{"$label":"ACTS_IN","name":"David Ackerman","type":"Role","_key":"44876","_from":"5094","_to":"29854"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30592","_from":"5094","_to":"21494"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"30556","_from":"5094","_to":"21485"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"16231","_from":"5094","_to":"12315"} +{"$label":"ACTS_IN","name":"Jake Peterson","type":"Role","_key":"15118","_from":"5094","_to":"11604"} +{"$label":"ACTS_IN","name":"Pvt. Chris Taylor","type":"Role","_key":"9325","_from":"5094","_to":"7539"} +{"$label":"DIRECTED","_key":"48128","_from":"5097","_to":"31620"} +{"$label":"DIRECTED","_key":"34776","_from":"5097","_to":"23771"} +{"$label":"DIRECTED","_key":"32541","_from":"5097","_to":"22626"} +{"$label":"DIRECTED","_key":"22498","_from":"5097","_to":"16355"} +{"$label":"DIRECTED","_key":"16909","_from":"5097","_to":"12715"} +{"$label":"DIRECTED","_key":"9503","_from":"5097","_to":"7669"} +{"$label":"DIRECTED","_key":"6556","_from":"5097","_to":"5541"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"6017","_from":"5105","_to":"5098"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"6016","_from":"5104","_to":"5098"} +{"$label":"ACTS_IN","name":"Arna Asby","type":"Role","_key":"6015","_from":"5103","_to":"5098"} +{"$label":"ACTS_IN","name":"Johnny Kelly","type":"Role","_key":"6013","_from":"5102","_to":"5098"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"6012","_from":"5101","_to":"5098"} +{"$label":"ACTS_IN","name":"Gus Mascola","type":"Role","_key":"6011","_from":"5100","_to":"5098"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"6010","_from":"5099","_to":"5098"} +{"$label":"ACTS_IN","name":"Len Peterson","type":"Role","_key":"6923","_from":"5100","_to":"5808"} +{"$label":"ACTS_IN","name":"Clubber Lang's manager","type":"Role","_key":"12725","_from":"5102","_to":"9935"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"117073","_from":"5104","_to":"68895"} +{"$label":"ACTS_IN","name":"Lt. Raymond Walsh","type":"Role","_key":"89053","_from":"5104","_to":"52761"} +{"$label":"ACTS_IN","name":"Barry Layton","type":"Role","_key":"36474","_from":"5104","_to":"24738"} +{"$label":"ACTS_IN","name":"Pino","type":"Role","_key":"6028","_from":"5115","_to":"5106"} +{"$label":"ACTS_IN","name":"Oyo","type":"Role","_key":"6027","_from":"5114","_to":"5106"} +{"$label":"ACTS_IN","name":"Ziba","type":"Role","_key":"6026","_from":"5113","_to":"5106"} +{"$label":"ACTS_IN","name":"Perreau","type":"Role","_key":"6025","_from":"5112","_to":"5106"} +{"$label":"ACTS_IN","name":"Marco Sassari","type":"Role","_key":"6024","_from":"5111","_to":"5106"} +{"$label":"ACTS_IN","name":"Wassa","type":"Role","_key":"6023","_from":"5110","_to":"5106"} +{"$label":"ACTS_IN","name":"Jazar","type":"Role","_key":"6022","_from":"5109","_to":"5106"} +{"$label":"ACTS_IN","name":"Aleme","type":"Role","_key":"6021","_from":"5108","_to":"5106"} +{"$label":"DIRECTED","_key":"6018","_from":"5107","_to":"5106"} +{"$label":"DIRECTED","_key":"121041","_from":"5107","_to":"71083"} +{"$label":"DIRECTED","_key":"106203","_from":"5107","_to":"62549"} +{"$label":"DIRECTED","_key":"65307","_from":"5107","_to":"40529"} +{"$label":"DIRECTED","_key":"41611","_from":"5107","_to":"27940"} +{"$label":"DIRECTED","_key":"40436","_from":"5107","_to":"27256"} +{"$label":"DIRECTED","_key":"34895","_from":"5107","_to":"23838"} +{"$label":"DIRECTED","_key":"29973","_from":"5107","_to":"21170"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"52122","_from":"5108","_to":"33979"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"33980","_from":"5109","_to":"23383"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"62482","_from":"5111","_to":"39351"} +{"$label":"ACTS_IN","name":"Vincenzo Parondi","type":"Role","_key":"49620","_from":"5111","_to":"32475"} +{"$label":"ACTS_IN","name":"Masoud","type":"Role","_key":"12703","_from":"5111","_to":"9923"} +{"$label":"ACTS_IN","name":"Grand-p\u00e8re M\u00e9nard","type":"Role","_key":"120405","_from":"5112","_to":"70729"} +{"$label":"ACTS_IN","name":"Papa Duflot","type":"Role","_key":"56069","_from":"5112","_to":"35624"} +{"$label":"ACTS_IN","name":"Magier","type":"Role","_key":"21878","_from":"5112","_to":"15979"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"6033","_from":"5122","_to":"5117"} +{"$label":"ACTS_IN","name":"Luenell","type":"Role","_key":"6032","_from":"5121","_to":"5117"} +{"$label":"ACTS_IN","name":"Azamat Bagatov","type":"Role","_key":"6031","_from":"5120","_to":"5117"} +{"$label":"ACTS_IN","name":"Borat Sagdiyev","type":"Role","_key":"6030","_from":"5119","_to":"5117"} +{"$label":"DIRECTED","_key":"6029","_from":"5118","_to":"5117"} +{"$label":"DIRECTED","_key":"116346","_from":"5118","_to":"68485"} +{"$label":"DIRECTED","_key":"91987","_from":"5118","_to":"54269"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"116343","_from":"5119","_to":"68485"} +{"$label":"ACTS_IN","name":"Ali G","type":"Role","_key":"114155","_from":"5119","_to":"67242"} +{"$label":"ACTS_IN","name":"Ali G","type":"Role","_key":"111726","_from":"5119","_to":"65953"} +{"$label":"ACTS_IN","name":"Pirelli","type":"Role","_key":"97305","_from":"5119","_to":"57290"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"63857","_from":"5119","_to":"39906"} +{"$label":"ACTS_IN","name":"Jean Girard","type":"Role","_key":"55973","_from":"5119","_to":"35579"} +{"$label":"ACTS_IN","name":"Ali G \/ Borat","type":"Role","_key":"52974","_from":"5119","_to":"34318"} +{"$label":"ACTS_IN","name":"Julien (voice)","type":"Role","_key":"11366","_from":"5119","_to":"8959"} +{"$label":"ACTS_IN","name":"Ardesh Kezian","type":"Role","_key":"101321","_from":"5120","_to":"59645"} +{"$label":"ACTS_IN","name":"Xerxes","type":"Role","_key":"46192","_from":"5120","_to":"30529"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"106238","_from":"5122","_to":"62580"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100583","_from":"5122","_to":"59319"} +{"$label":"ACTS_IN","name":"Invisible Girl","type":"Role","_key":"72757","_from":"5122","_to":"43830"} +{"$label":"ACTS_IN","name":"Barbara Kopetski","type":"Role","_key":"72460","_from":"5122","_to":"43727"} +{"$label":"ACTS_IN","name":"Dee Twiddle","type":"Role","_key":"60981","_from":"5122","_to":"38538"} +{"$label":"ACTS_IN","name":"Becca","type":"Role","_key":"30553","_from":"5122","_to":"21485"} +{"$label":"ACTS_IN","name":"Ang\u00e8le","type":"Role","_key":"6037","_from":"5128","_to":"5124"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"6036","_from":"5127","_to":"5124"} +{"$label":"ACTS_IN","name":"Cl\u00e9o Victoire, Florence","type":"Role","_key":"6035","_from":"5126","_to":"5124"} +{"$label":"DIRECTED","_key":"6034","_from":"5125","_to":"5124"} +{"$label":"DIRECTED","_key":"21321","_from":"5125","_to":"15589"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"36334","_from":"5126","_to":"24646"} +{"$label":"ACTS_IN","name":"l'homme du wagon-restaurant","type":"Role","_key":"33951","_from":"5127","_to":"23371"} +{"$label":"ACTS_IN","name":"frodo","type":"Role","_key":"6048","_from":"5133","_to":"5129"} +{"$label":"ACTS_IN","name":"Mr. Blue","type":"Role","_key":"6045","_from":"5132","_to":"5129"} +{"$label":"ACTS_IN","name":"Holdaway","type":"Role","_key":"6044","_from":"5131","_to":"5129"} +{"$label":"ACTS_IN","name":"Joe Cabot","type":"Role","_key":"6043","_from":"5130","_to":"5129"} +{"$label":"ACTS_IN","name":"Man in Coffee Shop","type":"Role","_key":"95755","_from":"5130","_to":"56323"} +{"$label":"ACTS_IN","name":"Ron Delaney","type":"Role","_key":"61082","_from":"5131","_to":"38615"} +{"$label":"ACTS_IN","name":"Buzzard","type":"Role","_key":"56835","_from":"5132","_to":"36088"} +{"$label":"ACTS_IN","name":"Oliver Brandon","type":"Role","_key":"64545","_from":"5133","_to":"40197"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6055","_from":"5140","_to":"5134"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6054","_from":"5139","_to":"5134"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6053","_from":"5138","_to":"5134"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"6052","_from":"5137","_to":"5134"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"6051","_from":"5136","_to":"5134"} +{"$label":"DIRECTED","_key":"6050","_from":"5135","_to":"5134"} +{"$label":"ACTS_IN","name":"Father Umbrillo","type":"Role","_key":"107345","_from":"5135","_to":"63306"} +{"$label":"ACTS_IN","name":"The German","type":"Role","_key":"104187","_from":"5135","_to":"61297"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"50404","_from":"5135","_to":"32931"} +{"$label":"ACTS_IN","name":"Werner Herzog","type":"Role","_key":"44397","_from":"5135","_to":"29572"} +{"$label":"ACTS_IN","name":"Totengr\u00e4ber","type":"Role","_key":"43332","_from":"5135","_to":"28933"} +{"$label":"DIRECTED","_key":"88444","_from":"5135","_to":"52427"} +{"$label":"DIRECTED","_key":"72655","_from":"5135","_to":"43783"} +{"$label":"DIRECTED","_key":"71700","_from":"5135","_to":"43406"} +{"$label":"DIRECTED","_key":"71629","_from":"5135","_to":"43379"} +{"$label":"DIRECTED","_key":"71628","_from":"5135","_to":"43377"} +{"$label":"DIRECTED","_key":"70337","_from":"5135","_to":"42852"} +{"$label":"DIRECTED","_key":"62570","_from":"5135","_to":"39375"} +{"$label":"DIRECTED","_key":"58432","_from":"5135","_to":"36932"} +{"$label":"DIRECTED","_key":"53237","_from":"5135","_to":"34426"} +{"$label":"DIRECTED","_key":"50403","_from":"5135","_to":"32931"} +{"$label":"DIRECTED","_key":"49540","_from":"5135","_to":"32437"} +{"$label":"DIRECTED","_key":"43309","_from":"5135","_to":"28933"} +{"$label":"DIRECTED","_key":"17353","_from":"5135","_to":"12982"} +{"$label":"ACTS_IN","name":"Betty Black","type":"Role","_key":"6073","_from":"5156","_to":"5141"} +{"$label":"ACTS_IN","name":"Sullivan","type":"Role","_key":"6072","_from":"5155","_to":"5141"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"6071","_from":"5154","_to":"5141"} +{"$label":"ACTS_IN","name":"Ilsa Wolfe","type":"Role","_key":"6070","_from":"5153","_to":"5141"} +{"$label":"ACTS_IN","name":"Congressman Raskob","type":"Role","_key":"6069","_from":"5152","_to":"5141"} +{"$label":"ACTS_IN","name":"Knapp","type":"Role","_key":"6068","_from":"5151","_to":"5141"} +{"$label":"ACTS_IN","name":"TSgt. Collins","type":"Role","_key":"6067","_from":"5150","_to":"5141"} +{"$label":"ACTS_IN","name":"Helen Grady","type":"Role","_key":"6066","_from":"5149","_to":"5141"} +{"$label":"ACTS_IN","name":"Gen. Stark","type":"Role","_key":"6065","_from":"5148","_to":"5141"} +{"$label":"ACTS_IN","name":"Defense Secretary Swenson","type":"Role","_key":"6064","_from":"5147","_to":"5141"} +{"$label":"ACTS_IN","name":"Brig. Gen. Warren A. Black","type":"Role","_key":"6063","_from":"5146","_to":"5141"} +{"$label":"ACTS_IN","name":"Gen. Bogan","type":"Role","_key":"6061","_from":"5145","_to":"5141"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"6060","_from":"5144","_to":"5141"} +{"$label":"ACTS_IN","name":"Col. Cascio","type":"Role","_key":"6059","_from":"5143","_to":"5141"} +{"$label":"ACTS_IN","name":"Prof. Groeteschele","type":"Role","_key":"6058","_from":"5142","_to":"5141"} +{"$label":"ACTS_IN","name":"Ted Caselle","type":"Role","_key":"120770","_from":"5142","_to":"70939"} +{"$label":"ACTS_IN","name":"Maxie Fields","type":"Role","_key":"116921","_from":"5142","_to":"68828"} +{"$label":"ACTS_IN","name":"Charlie Gordon","type":"Role","_key":"114844","_from":"5142","_to":"67649"} +{"$label":"ACTS_IN","name":"Willy Clark","type":"Role","_key":"109534","_from":"5142","_to":"64702"} +{"$label":"ACTS_IN","name":"Max Goldman","type":"Role","_key":"105150","_from":"5142","_to":"61877"} +{"$label":"ACTS_IN","name":"Horace Vandergelder","type":"Role","_key":"98222","_from":"5142","_to":"57864"} +{"$label":"ACTS_IN","name":"Mr. George Wilson","type":"Role","_key":"88249","_from":"5142","_to":"52352"} +{"$label":"ACTS_IN","name":"Albert Einstein","type":"Role","_key":"71907","_from":"5142","_to":"43507"} +{"$label":"ACTS_IN","name":"Max Goldman","type":"Role","_key":"70386","_from":"5142","_to":"42869"} +{"$label":"ACTS_IN","name":"Captain Thomas Bartholomew Red","type":"Role","_key":"70115","_from":"5142","_to":"42743"} +{"$label":"ACTS_IN","name":"Oscar Madison","type":"Role","_key":"69371","_from":"5142","_to":"42411"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"68013","_from":"5142","_to":"41786"} +{"$label":"ACTS_IN","name":"Lou Mozell","type":"Role","_key":"62931","_from":"5142","_to":"39524"} +{"$label":"ACTS_IN","name":"Lt. Zachary Garber","type":"Role","_key":"49114","_from":"5142","_to":"32182"} +{"$label":"ACTS_IN","name":"Paul Manning","type":"Role","_key":"34905","_from":"5142","_to":"23848"} +{"$label":"ACTS_IN","name":"Hamilton Bartholemew","type":"Role","_key":"34126","_from":"5142","_to":"23444"} +{"$label":"ACTS_IN","name":"Willie Gingrich","type":"Role","_key":"16297","_from":"5142","_to":"12354"} +{"$label":"ACTS_IN","name":"Walter Burns\/Otto Fishbine","type":"Role","_key":"11671","_from":"5142","_to":"9168"} +{"$label":"ACTS_IN","name":"Senator Long","type":"Role","_key":"9675","_from":"5142","_to":"7763"} +{"$label":"ACTS_IN","name":"Alex Harris","type":"Role","_key":"117427","_from":"5143","_to":"69064"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"34964","_from":"5143","_to":"23872"} +{"$label":"ACTS_IN","name":"John Reynolds","type":"Role","_key":"10861","_from":"5143","_to":"8607"} +{"$label":"ACTS_IN","name":"Sheriff Heck Tate","type":"Role","_key":"7155","_from":"5145","_to":"5978"} +{"$label":"ACTS_IN","name":"Judge Millard Isham","type":"Role","_key":"116245","_from":"5146","_to":"68438"} +{"$label":"ACTS_IN","name":"Grig","type":"Role","_key":"72533","_from":"5146","_to":"43750"} +{"$label":"ACTS_IN","name":"Conal Cochran","type":"Role","_key":"64985","_from":"5146","_to":"40388"} +{"$label":"ACTS_IN","name":"The Old Man","type":"Role","_key":"37783","_from":"5146","_to":"25618"} +{"$label":"ACTS_IN","name":"Prof. Waldman","type":"Role","_key":"25422","_from":"5147","_to":"18324"} +{"$label":"ACTS_IN","name":"The Pope","type":"Role","_key":"110120","_from":"5150","_to":"65070"} +{"$label":"ACTS_IN","name":"Melvin P. Thorpe","type":"Role","_key":"108889","_from":"5150","_to":"64354"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"91136","_from":"5150","_to":"53765"} +{"$label":"ACTS_IN","name":"Mr. B","type":"Role","_key":"89560","_from":"5150","_to":"53001"} +{"$label":"ACTS_IN","name":"Victor Prinzim","type":"Role","_key":"72920","_from":"5150","_to":"43910"} +{"$label":"ACTS_IN","name":"Jeremy (voice)","type":"Role","_key":"71667","_from":"5150","_to":"43389"} +{"$label":"ACTS_IN","name":"Itchy Itchiford","type":"Role","_key":"70180","_from":"5150","_to":"42776"} +{"$label":"ACTS_IN","name":"Victor Prinzim \/ Captain Chaos","type":"Role","_key":"68909","_from":"5150","_to":"42196"} +{"$label":"ACTS_IN","name":"Dom Bell","type":"Role","_key":"66996","_from":"5150","_to":"41360"} +{"$label":"ACTS_IN","name":"Father Drobney","type":"Role","_key":"63460","_from":"5150","_to":"39745"} +{"$label":"ACTS_IN","name":"Dr. Animal Cannibal Pizza","type":"Role","_key":"63426","_from":"5150","_to":"39730"} +{"$label":"ACTS_IN","name":"Emperor Nero","type":"Role","_key":"61303","_from":"5150","_to":"38701"} +{"$label":"ACTS_IN","name":"Don Giovanni","type":"Role","_key":"47721","_from":"5150","_to":"31431"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"35283","_from":"5150","_to":"24029"} +{"$label":"ACTS_IN","name":"Mr. Qua","type":"Role","_key":"121732","_from":"5151","_to":"71514"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"106217","_from":"5151","_to":"62557"} +{"$label":"ACTS_IN","name":"Bill Clarke","type":"Role","_key":"34978","_from":"5151","_to":"23877"} +{"$label":"ACTS_IN","name":"Mr Dilk","type":"Role","_key":"106991","_from":"5152","_to":"63076"} +{"$label":"ACTS_IN","name":"Alton","type":"Role","_key":"34965","_from":"5152","_to":"23872"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"38270","_from":"5155","_to":"25825"} +{"$label":"ACTS_IN","name":"Chief Officer Reynolds","type":"Role","_key":"6086","_from":"5166","_to":"5157"} +{"$label":"ACTS_IN","name":"Lucky Larry","type":"Role","_key":"6085","_from":"5165","_to":"5157"} +{"$label":"ACTS_IN","name":"Valentin","type":"Role","_key":"6084","_from":"5164","_to":"5157"} +{"$label":"ACTS_IN","name":"Captain Bradford","type":"Role","_key":"6083","_from":"5163","_to":"5157"} +{"$label":"ACTS_IN","name":"Conor James","type":"Role","_key":"6082","_from":"5162","_to":"5157"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"6081","_from":"5161","_to":"5157"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"6080","_from":"5160","_to":"5157"} +{"$label":"ACTS_IN","name":"Maggie James","type":"Role","_key":"6078","_from":"5159","_to":"5157"} +{"$label":"ACTS_IN","name":"Robert Ramsey","type":"Role","_key":"6075","_from":"5158","_to":"5157"} +{"$label":"ACTS_IN","name":"Mike 'Lucky' Lockhart","type":"Role","_key":"116236","_from":"5158","_to":"68437"} +{"$label":"ACTS_IN","name":"Michael Carr","type":"Role","_key":"112438","_from":"5158","_to":"66383"} +{"$label":"ACTS_IN","name":"Rudolph 'Rudy' Russo","type":"Role","_key":"100482","_from":"5158","_to":"59249"} +{"$label":"ACTS_IN","name":"Captain Ron","type":"Role","_key":"99809","_from":"5158","_to":"58878"} +{"$label":"ACTS_IN","name":"Herb Brooks","type":"Role","_key":"99489","_from":"5158","_to":"58650"} +{"$label":"ACTS_IN","name":"Ben Crane","type":"Role","_key":"91926","_from":"5158","_to":"54232"} +{"$label":"ACTS_IN","name":"Drew Stephens","type":"Role","_key":"89916","_from":"5158","_to":"53206"} +{"$label":"ACTS_IN","name":"Michael Zane","type":"Role","_key":"88244","_from":"5158","_to":"52350"} +{"$label":"ACTS_IN","name":"Wyatt Earp","type":"Role","_key":"73056","_from":"5158","_to":"43963"} +{"$label":"ACTS_IN","name":"Steve Stronghold","type":"Role","_key":"69985","_from":"5158","_to":"42690"} +{"$label":"ACTS_IN","name":"Adult Copper (voice)","type":"Role","_key":"66915","_from":"5158","_to":"41314"} +{"$label":"ACTS_IN","name":"Dean Proffitt","type":"Role","_key":"65737","_from":"5158","_to":"40701"} +{"$label":"ACTS_IN","name":"Nick Frescia","type":"Role","_key":"62984","_from":"5158","_to":"39544"} +{"$label":"ACTS_IN","name":"Snake Plissken","type":"Role","_key":"60090","_from":"5158","_to":"37917"} +{"$label":"ACTS_IN","name":"Gabriel 'Gabe' Cash","type":"Role","_key":"55083","_from":"5158","_to":"35180"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"53773","_from":"5158","_to":"34657"} +{"$label":"ACTS_IN","name":"Jack Burton","type":"Role","_key":"45556","_from":"5158","_to":"30161"} +{"$label":"ACTS_IN","name":"Eldon Perry","type":"Role","_key":"34715","_from":"5158","_to":"23744"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"33088","_from":"5158","_to":"22927"} +{"$label":"ACTS_IN","name":"Dennis McCaffrey","type":"Role","_key":"24324","_from":"5158","_to":"17621"} +{"$label":"ACTS_IN","name":"David Grant","type":"Role","_key":"20378","_from":"5158","_to":"14930"} +{"$label":"ACTS_IN","name":"Colonel Jonathan O'Neil","type":"Role","_key":"18841","_from":"5158","_to":"13914"} +{"$label":"ACTS_IN","name":"Jeffrey \" Jeff \" Taylor","type":"Role","_key":"18832","_from":"5158","_to":"13912"} +{"$label":"ACTS_IN","name":"Stuntman Mike","type":"Role","_key":"17244","_from":"5158","_to":"12920"} +{"$label":"ACTS_IN","name":"Dr. Curtis McCabe","type":"Role","_key":"16434","_from":"5158","_to":"12427"} +{"$label":"ACTS_IN","name":"Snake Plissken","type":"Role","_key":"11981","_from":"5158","_to":"9392"} +{"$label":"ACTS_IN","name":"R.J. MacReady","type":"Role","_key":"11942","_from":"5158","_to":"9363"} +{"$label":"ACTS_IN","name":"Maxine Ratliffe","type":"Role","_key":"109959","_from":"5159","_to":"64968"} +{"$label":"ACTS_IN","name":"Heather Wallace (segment \"The Locket\")","type":"Role","_key":"108664","_from":"5159","_to":"64215"} +{"$label":"ACTS_IN","name":"Linda Morrison","type":"Role","_key":"68038","_from":"5159","_to":"41810"} +{"$label":"ACTS_IN","name":"Steena Paulsson","type":"Role","_key":"66770","_from":"5159","_to":"41254"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"57404","_from":"5159","_to":"36396"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"46987","_from":"5159","_to":"30983"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"116968","_from":"5160","_to":"68851"} +{"$label":"ACTS_IN","name":"Trip Carlyle","type":"Role","_key":"111454","_from":"5160","_to":"65807"} +{"$label":"ACTS_IN","name":"Ian Stone","type":"Role","_key":"88440","_from":"5160","_to":"52422"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"56661","_from":"5160","_to":"35987"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"53434","_from":"5160","_to":"34528"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"45897","_from":"5160","_to":"30348"} +{"$label":"ACTS_IN","name":"Maria Puerto","type":"Role","_key":"104853","_from":"5161","_to":"61696"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"57991","_from":"5161","_to":"36693"} +{"$label":"ACTS_IN","name":"Chichina Ferreyra","type":"Role","_key":"14685","_from":"5161","_to":"11304"} +{"$label":"ACTS_IN","name":"Cristina Kahlo","type":"Role","_key":"12557","_from":"5161","_to":"9830"} +{"$label":"ACTS_IN","name":"Roo (voice)","type":"Role","_key":"109073","_from":"5162","_to":"64447"} +{"$label":"ACTS_IN","name":"Roo (voice)","type":"Role","_key":"102307","_from":"5162","_to":"60199"} +{"$label":"ACTS_IN","name":"Michael Lutz","type":"Role","_key":"60147","_from":"5162","_to":"37948"} +{"$label":"ACTS_IN","name":"Andy Stanfield","type":"Role","_key":"56305","_from":"5162","_to":"35776"} +{"$label":"ACTS_IN","name":"Ryan Baxter","type":"Role","_key":"22762","_from":"5162","_to":"16511"} +{"$label":"ACTS_IN","name":"Tommy Smith","type":"Role","_key":"17638","_from":"5162","_to":"13162"} +{"$label":"ACTS_IN","name":"Reggie Kane","type":"Role","_key":"114837","_from":"5163","_to":"67644"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"97665","_from":"5163","_to":"57513"} +{"$label":"ACTS_IN","name":"Satch DeLeon","type":"Role","_key":"64066","_from":"5163","_to":"39986"} +{"$label":"ACTS_IN","name":"Norton","type":"Role","_key":"40042","_from":"5163","_to":"27031"} +{"$label":"ACTS_IN","name":"General Hager","type":"Role","_key":"17160","_from":"5163","_to":"12853"} +{"$label":"ACTS_IN","name":"Tommy Goodman","type":"Role","_key":"14108","_from":"5163","_to":"10931"} +{"$label":"ACTS_IN","name":"Cassiel","type":"Role","_key":"9379","_from":"5163","_to":"7568"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"101467","_from":"5164","_to":"59726"} +{"$label":"ACTS_IN","name":"Rupert Garcia (voice)","type":"Role","_key":"94093","_from":"5164","_to":"55405"} +{"$label":"ACTS_IN","name":"Manolin","type":"Role","_key":"91931","_from":"5164","_to":"54232"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"69864","_from":"5164","_to":"42631"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"55787","_from":"5164","_to":"35507"} +{"$label":"ACTS_IN","name":"Pedro Arag\u00f3n, Jr.","type":"Role","_key":"54688","_from":"5164","_to":"35016"} +{"$label":"ACTS_IN","name":"Mike Alonzo","type":"Role","_key":"47476","_from":"5164","_to":"31280"} +{"$label":"ACTS_IN","name":"El Wray","type":"Role","_key":"17270","_from":"5164","_to":"12925"} +{"$label":"ACTS_IN","name":"John Densmore","type":"Role","_key":"63925","_from":"5165","_to":"39931"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"63410","_from":"5165","_to":"39725"} +{"$label":"ACTS_IN","name":"Brian Flagg","type":"Role","_key":"54940","_from":"5165","_to":"35126"} +{"$label":"ACTS_IN","name":"Bunny","type":"Role","_key":"9328","_from":"5165","_to":"7539"} +{"$label":"ACTS_IN","name":"Det. Frank Shaw","type":"Role","_key":"111868","_from":"5166","_to":"66041"} +{"$label":"ACTS_IN","name":"Justy","type":"Role","_key":"6096","_from":"5177","_to":"5167"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"6095","_from":"5176","_to":"5167"} +{"$label":"ACTS_IN","name":"Lawyer","type":"Role","_key":"6094","_from":"5175","_to":"5167"} +{"$label":"ACTS_IN","name":"Will\/Daddy \"John\"","type":"Role","_key":"6093","_from":"5174","_to":"5167"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"6092","_from":"5173","_to":"5167"} +{"$label":"ACTS_IN","name":"Vincent Corey","type":"Role","_key":"6091","_from":"5172","_to":"5167"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"6090","_from":"5171","_to":"5167"} +{"$label":"ACTS_IN","name":"Selby","type":"Role","_key":"6089","_from":"5170","_to":"5167"} +{"$label":"ACTS_IN","name":"Aileen","type":"Role","_key":"6088","_from":"5169","_to":"5167"} +{"$label":"DIRECTED","_key":"6087","_from":"5168","_to":"5167"} +{"$label":"ACTS_IN","name":"Erica Soltz","type":"Role","_key":"120140","_from":"5169","_to":"70564"} +{"$label":"ACTS_IN","name":"Gilda Bess\u00e9","type":"Role","_key":"117530","_from":"5169","_to":"69106"} +{"$label":"ACTS_IN","name":"Billie Tyler","type":"Role","_key":"113887","_from":"5169","_to":"67087"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"109576","_from":"5169","_to":"64719"} +{"$label":"ACTS_IN","name":"Joleen","type":"Role","_key":"99741","_from":"5169","_to":"58822"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"93190","_from":"5169","_to":"54916"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"88407","_from":"5169","_to":"52396"} +{"$label":"ACTS_IN","name":"Gwen Sunday","type":"Role","_key":"73116","_from":"5169","_to":"43978"} +{"$label":"ACTS_IN","name":"Stella Bridger","type":"Role","_key":"65661","_from":"5169","_to":"40679"} +{"$label":"ACTS_IN","name":"Britt Ekland","type":"Role","_key":"64498","_from":"5169","_to":"40184"} +{"$label":"ACTS_IN","name":"Jill Young","type":"Role","_key":"57153","_from":"5169","_to":"36271"} +{"$label":"ACTS_IN","name":"Josey Aimes","type":"Role","_key":"55839","_from":"5169","_to":"35533"} +{"$label":"ACTS_IN","name":"Stella Bridger","type":"Role","_key":"55305","_from":"5169","_to":"35264"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"54886","_from":"5169","_to":"35099"} +{"$label":"ACTS_IN","name":"Supermodel","type":"Role","_key":"54044","_from":"5169","_to":"34763"} +{"$label":"ACTS_IN","name":"Karen Jennings","type":"Role","_key":"52210","_from":"5169","_to":"34015"} +{"$label":"ACTS_IN","name":"Mary Embrey","type":"Role","_key":"51651","_from":"5169","_to":"33701"} +{"$label":"ACTS_IN","name":"\u00c6on Flux","type":"Role","_key":"48378","_from":"5169","_to":"31760"} +{"$label":"ACTS_IN","name":"Detective Emily Sanders","type":"Role","_key":"45501","_from":"5169","_to":"30141"} +{"$label":"ACTS_IN","name":"Adele Invergordon","type":"Role","_key":"35133","_from":"5169","_to":"23946"} +{"$label":"ACTS_IN","name":"Glenda Bledsoe","type":"Role","_key":"35001","_from":"5169","_to":"23893"} +{"$label":"ACTS_IN","name":"Jillian Armacost","type":"Role","_key":"24183","_from":"5169","_to":"17522"} +{"$label":"ACTS_IN","name":"Laura Kensington","type":"Role","_key":"23529","_from":"5169","_to":"17030"} +{"$label":"ACTS_IN","name":"Rose Hearn","type":"Role","_key":"23243","_from":"5169","_to":"16859"} +{"$label":"ACTS_IN","name":"Ashley Mercer","type":"Role","_key":"18775","_from":"5169","_to":"13886"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"16613","_from":"5169","_to":"12548"} +{"$label":"ACTS_IN","name":"Mary Ann Lomax","type":"Role","_key":"15692","_from":"5169","_to":"11965"} +{"$label":"ACTS_IN","name":"Candy Kendall","type":"Role","_key":"15162","_from":"5169","_to":"11627"} +{"$label":"ACTS_IN","name":"Elizabeth Wurtzel","type":"Role","_key":"108186","_from":"5170","_to":"63940"} +{"$label":"ACTS_IN","name":"Val","type":"Role","_key":"103716","_from":"5170","_to":"61002"} +{"$label":"ACTS_IN","name":"Sarah Schivino","type":"Role","_key":"98903","_from":"5170","_to":"58276"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"91724","_from":"5170","_to":"54107"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"90361","_from":"5170","_to":"53397"} +{"$label":"ACTS_IN","name":"Shelley","type":"Role","_key":"72404","_from":"5170","_to":"43713"} +{"$label":"ACTS_IN","name":"Cassie Grant","type":"Role","_key":"66888","_from":"5170","_to":"41301"} +{"$label":"ACTS_IN","name":"Amanda Chase","type":"Role","_key":"65354","_from":"5170","_to":"40549"} +{"$label":"ACTS_IN","name":"Cheri Post","type":"Role","_key":"62965","_from":"5170","_to":"39537"} +{"$label":"ACTS_IN","name":"Ellie","type":"Role","_key":"59438","_from":"5170","_to":"37547"} +{"$label":"ACTS_IN","name":"Dede Truitt","type":"Role","_key":"57443","_from":"5170","_to":"36416"} +{"$label":"ACTS_IN","name":"Carolyn McDuffy","type":"Role","_key":"55975","_from":"5170","_to":"35588"} +{"$label":"ACTS_IN","name":"Layla","type":"Role","_key":"54029","_from":"5170","_to":"34761"} +{"$label":"ACTS_IN","name":"Young Roberta Martin","type":"Role","_key":"52678","_from":"5170","_to":"34207"} +{"$label":"ACTS_IN","name":"Kathleen 'Kat' Harvey","type":"Role","_key":"51001","_from":"5170","_to":"33288"} +{"$label":"ACTS_IN","name":"Penelope Wilhern","type":"Role","_key":"47658","_from":"5170","_to":"31400"} +{"$label":"ACTS_IN","name":"Rae","type":"Role","_key":"47492","_from":"5170","_to":"31289"} +{"$label":"ACTS_IN","name":"Trixie","type":"Role","_key":"46799","_from":"5170","_to":"30879"} +{"$label":"ACTS_IN","name":"Wendy Hood","type":"Role","_key":"40302","_from":"5170","_to":"27194"} +{"$label":"ACTS_IN","name":"Kate Flax","type":"Role","_key":"32874","_from":"5170","_to":"22815"} +{"$label":"ACTS_IN","name":"Teenage Hooker","type":"Role","_key":"31026","_from":"5170","_to":"21724"} +{"$label":"ACTS_IN","name":"Wednesday Addams","type":"Role","_key":"24229","_from":"5170","_to":"17551"} +{"$label":"ACTS_IN","name":"Wednesday Addams","type":"Role","_key":"23322","_from":"5170","_to":"16901"} +{"$label":"ACTS_IN","name":"Katrina Van Tassel","type":"Role","_key":"22617","_from":"5170","_to":"16413"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"16209","_from":"5170","_to":"12305"} +{"$label":"ACTS_IN","name":"John Gillon","type":"Role","_key":"118892","_from":"5171","_to":"69879"} +{"$label":"ACTS_IN","name":"Ellis Brawley","type":"Role","_key":"114972","_from":"5171","_to":"67709"} +{"$label":"ACTS_IN","name":"Easy","type":"Role","_key":"106883","_from":"5171","_to":"63011"} +{"$label":"ACTS_IN","name":"Long Hair","type":"Role","_key":"104968","_from":"5171","_to":"61763"} +{"$label":"ACTS_IN","name":"Captain Perez","type":"Role","_key":"104033","_from":"5171","_to":"61202"} +{"$label":"ACTS_IN","name":"Mark Rumsfield","type":"Role","_key":"73088","_from":"5171","_to":"43971"} +{"$label":"ACTS_IN","name":"Joe Danby","type":"Role","_key":"70776","_from":"5171","_to":"43036"} +{"$label":"ACTS_IN","name":"Tom Buchanan","type":"Role","_key":"67462","_from":"5171","_to":"41555"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"67138","_from":"5171","_to":"41425"} +{"$label":"ACTS_IN","name":"Sheriff Ed Galt","type":"Role","_key":"53168","_from":"5171","_to":"34398"} +{"$label":"ACTS_IN","name":"Rear Admiral Yancy Graham","type":"Role","_key":"52564","_from":"5171","_to":"34164"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"47446","_from":"5171","_to":"31257"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"39853","_from":"5171","_to":"26930"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"36242","_from":"5171","_to":"24593"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"34869","_from":"5171","_to":"23835"} +{"$label":"ACTS_IN","name":"Begleiter","type":"Role","_key":"18934","_from":"5171","_to":"13983"} +{"$label":"ACTS_IN","name":"The Detective","type":"Role","_key":"18756","_from":"5171","_to":"13876"} +{"$label":"ACTS_IN","name":"Rafe Quint","type":"Role","_key":"14871","_from":"5171","_to":"11429"} +{"$label":"ACTS_IN","name":"Freeman Lowell","type":"Role","_key":"9553","_from":"5171","_to":"7694"} +{"$label":"ACTS_IN","name":"Daniel Royer","type":"Role","_key":"94663","_from":"5172","_to":"55765"} +{"$label":"ACTS_IN","name":"Drew Halbert","type":"Role","_key":"116520","_from":"5173","_to":"68581"} +{"$label":"ACTS_IN","name":"Officer Ferguson","type":"Role","_key":"60906","_from":"5173","_to":"38475"} +{"$label":"ACTS_IN","name":"Caroline Johnson","type":"Role","_key":"8288","_from":"5173","_to":"6789"} +{"$label":"ACTS_IN","name":"Sheriff Reilly","type":"Role","_key":"58622","_from":"5174","_to":"37036"} +{"$label":"ACTS_IN","name":"Noah Trafficante","type":"Role","_key":"56191","_from":"5174","_to":"35707"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"100430","_from":"5177","_to":"59216"} +{"$label":"ACTS_IN","name":"Sister Luke","type":"Role","_key":"6107","_from":"5182","_to":"5178"} +{"$label":"ACTS_IN","name":"Mr. Bonet","type":"Role","_key":"6106","_from":"5181","_to":"5178"} +{"$label":"ACTS_IN","name":"Vic Dumask","type":"Role","_key":"6105","_from":"5180","_to":"5178"} +{"$label":"ACTS_IN","name":"Mikey Chalmette","type":"Role","_key":"6104","_from":"5179","_to":"5178"} +{"$label":"ACTS_IN","name":"Capt. Billy Cutshaw","type":"Role","_key":"118069","_from":"5179","_to":"69396"} +{"$label":"ACTS_IN","name":"Richard 'Dick' Hickcock","type":"Role","_key":"118007","_from":"5179","_to":"69362"} +{"$label":"ACTS_IN","name":"Warden Gasque","type":"Role","_key":"93071","_from":"5179","_to":"54866"} +{"$label":"ACTS_IN","name":"Dr. Temple","type":"Role","_key":"70880","_from":"5179","_to":"43072"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"66987","_from":"5179","_to":"41353"} +{"$label":"ACTS_IN","name":"Lowell Fowler","type":"Role","_key":"47128","_from":"5179","_to":"31069"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"13377","_from":"5179","_to":"10412"} +{"$label":"ACTS_IN","name":"Kaplan Farlely","type":"Role","_key":"8282","_from":"5179","_to":"6786"} +{"$label":"ACTS_IN","name":"Ambassador Swanbeck","type":"Role","_key":"7317","_from":"5179","_to":"6096"} +{"$label":"ACTS_IN","name":"Lufkin","type":"Role","_key":"118768","_from":"5180","_to":"69835"} +{"$label":"ACTS_IN","name":"Suit","type":"Role","_key":"104942","_from":"5181","_to":"61746"} +{"$label":"ACTS_IN","name":"Engineer McSimms","type":"Role","_key":"59475","_from":"5181","_to":"37557"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"49135","_from":"5181","_to":"32186"} +{"$label":"ACTS_IN","name":"Mr. Paul","type":"Role","_key":"22518","_from":"5181","_to":"16363"} +{"$label":"ACTS_IN","name":"Mr. Rutland","type":"Role","_key":"6114","_from":"5187","_to":"5183"} +{"$label":"ACTS_IN","name":"Bernice Edgar","type":"Role","_key":"6113","_from":"5186","_to":"5183"} +{"$label":"ACTS_IN","name":"Sidney Strutt","type":"Role","_key":"6112","_from":"5185","_to":"5183"} +{"$label":"ACTS_IN","name":"Marnie Edgar\/Margaret Edgar\/Peggy Nicholson\/Mary Taylor","type":"Role","_key":"6109","_from":"5184","_to":"5183"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"31214","_from":"5184","_to":"21841"} +{"$label":"ACTS_IN","name":"Maylinda Austed","type":"Role","_key":"31022","_from":"5184","_to":"21724"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"31015","_from":"5184","_to":"21717"} +{"$label":"ACTS_IN","name":"Florence Peters","type":"Role","_key":"24765","_from":"5184","_to":"17908"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"24746","_from":"5184","_to":"17901"} +{"$label":"ACTS_IN","name":"Margaret Tenhausen","type":"Role","_key":"24732","_from":"5184","_to":"17888"} +{"$label":"ACTS_IN","name":"Mrs. Kingstreet","type":"Role","_key":"24724","_from":"5184","_to":"17883"} +{"$label":"ACTS_IN","name":"Marla Oates","type":"Role","_key":"24719","_from":"5184","_to":"17880"} +{"$label":"ACTS_IN","name":"Rita Armstrong","type":"Role","_key":"24711","_from":"5184","_to":"17873"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"24699","_from":"5184","_to":"17866"} +{"$label":"ACTS_IN","name":"Mary Jane Hutchinson","type":"Role","_key":"14189","_from":"5184","_to":"10966"} +{"$label":"ACTS_IN","name":"Melanie Daniels","type":"Role","_key":"6811","_from":"5184","_to":"5715"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38389","_from":"5185","_to":"25936"} +{"$label":"ACTS_IN","name":"Dr. Max J. Eggelhofer","type":"Role","_key":"11679","_from":"5185","_to":"9168"} +{"$label":"ACTS_IN","name":"Mrs. Foster","type":"Role","_key":"71800","_from":"5186","_to":"43454"} +{"$label":"ACTS_IN","name":"Mrs. Looby","type":"Role","_key":"35975","_from":"5186","_to":"24432"} +{"$label":"ACTS_IN","name":"Martha Culpepper","type":"Role","_key":"35335","_from":"5186","_to":"24063"} +{"$label":"ACTS_IN","name":"Dulcie (midwife)","type":"Role","_key":"34941","_from":"5186","_to":"23859"} +{"$label":"ACTS_IN","name":"Dr. Scott","type":"Role","_key":"108965","_from":"5187","_to":"64390"} +{"$label":"ACTS_IN","name":"British Club Official","type":"Role","_key":"108563","_from":"5187","_to":"64161"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"22549","_from":"5187","_to":"16373"} +{"$label":"ACTS_IN","name":"Jock","type":"Role","_key":"19154","_from":"5187","_to":"14153"} +{"$label":"ACTS_IN","name":"Martina","type":"Role","_key":"6126","_from":"5199","_to":"5188"} +{"$label":"ACTS_IN","name":"Bellboy","type":"Role","_key":"6125","_from":"5198","_to":"5188"} +{"$label":"ACTS_IN","name":"Cab Driver","type":"Role","_key":"6124","_from":"5197","_to":"5188"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"6123","_from":"5196","_to":"5188"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"6122","_from":"5195","_to":"5188"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"6121","_from":"5194","_to":"5188"} +{"$label":"ACTS_IN","name":"Ricardo","type":"Role","_key":"6120","_from":"5193","_to":"5188"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"6119","_from":"5192","_to":"5188"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"6118","_from":"5191","_to":"5188"} +{"$label":"ACTS_IN","name":"Zed","type":"Role","_key":"6116","_from":"5190","_to":"5188"} +{"$label":"DIRECTED","_key":"6115","_from":"5189","_to":"5188"} +{"$label":"ACTS_IN","name":"Franklin Brauner","type":"Role","_key":"98875","_from":"5189","_to":"58263"} +{"$label":"DIRECTED","_key":"15633","_from":"5189","_to":"11928"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"119843","_from":"5190","_to":"70375"} +{"$label":"ACTS_IN","name":"Thurman Parks III","type":"Role","_key":"111698","_from":"5190","_to":"65946"} +{"$label":"ACTS_IN","name":"Keith Nelson","type":"Role","_key":"103340","_from":"5190","_to":"60793"} +{"$label":"ACTS_IN","name":"Sgt. Danny \"Danny Boy\" Daly","type":"Role","_key":"90817","_from":"5190","_to":"53591"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"73128","_from":"5190","_to":"43981"} +{"$label":"ACTS_IN","name":"Jake Briggs","type":"Role","_key":"72058","_from":"5190","_to":"43573"} +{"$label":"ACTS_IN","name":"Alan MacDonald","type":"Role","_key":"71934","_from":"5190","_to":"43521"} +{"$label":"ACTS_IN","name":"Roy L.'Rocky' Dennis","type":"Role","_key":"68344","_from":"5190","_to":"41949"} +{"$label":"ACTS_IN","name":"Martin Brundle","type":"Role","_key":"62704","_from":"5190","_to":"39426"} +{"$label":"ACTS_IN","name":"John Brooke","type":"Role","_key":"54864","_from":"5190","_to":"35089"} +{"$label":"ACTS_IN","name":"Dr. Steven Cale","type":"Role","_key":"53347","_from":"5190","_to":"34483"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"8204","_from":"5190","_to":"6746"} +{"$label":"ACTS_IN","name":"Vincent Granec","type":"Role","_key":"90825","_from":"5191","_to":"53592"} +{"$label":"ACTS_IN","name":"Zorg","type":"Role","_key":"73158","_from":"5191","_to":"43998"} +{"$label":"ACTS_IN","name":"Sebastien","type":"Role","_key":"66336","_from":"5191","_to":"41032"} +{"$label":"ACTS_IN","name":"Roller skater","type":"Role","_key":"64865","_from":"5191","_to":"40345"} +{"$label":"ACTS_IN","name":"Charles IX","type":"Role","_key":"63437","_from":"5191","_to":"39735"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"20243","_from":"5191","_to":"14844"} +{"$label":"ACTS_IN","name":"Simon Burke","type":"Role","_key":"103874","_from":"5193","_to":"61091"} +{"$label":"ACTS_IN","name":"Eduardo","type":"Role","_key":"88950","_from":"5193","_to":"52694"} +{"$label":"ACTS_IN","name":"Phillip L'Merchant \/ John Merchant \/ Dr. Paul Merchant","type":"Role","_key":"50731","_from":"5193","_to":"33114"} +{"$label":"ACTS_IN","name":"Carlitos P\u00e1ez","type":"Role","_key":"46408","_from":"5193","_to":"30656"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"98569","_from":"5195","_to":"58086"} +{"$label":"ACTS_IN","name":"Sy Spector","type":"Role","_key":"7355","_from":"5196","_to":"6132"} +{"$label":"DIRECTED","_key":"18748","_from":"5199","_to":"13869"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"6144","_from":"5212","_to":"5200"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"6141","_from":"5211","_to":"5200"} +{"$label":"ACTS_IN","name":"Just Judy","type":"Role","_key":"6139","_from":"5210","_to":"5200"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"6138","_from":"5209","_to":"5200"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"6137","_from":"5208","_to":"5200"} +{"$label":"ACTS_IN","name":"Colin Frissell","type":"Role","_key":"6136","_from":"5207","_to":"5200"} +{"$label":"ACTS_IN","name":"Daisy, her daughter","type":"Role","_key":"6135","_from":"5206","_to":"5200"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"6134","_from":"5205","_to":"5200"} +{"$label":"ACTS_IN","name":"Jamie's Girlfriend","type":"Role","_key":"6132","_from":"5204","_to":"5200"} +{"$label":"ACTS_IN","name":"Engineer","type":"Role","_key":"6130","_from":"5203","_to":"5200"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"6129","_from":"5202","_to":"5200"} +{"$label":"DIRECTED","_key":"6127","_from":"5201","_to":"5200"} +{"$label":"DIRECTED","_key":"118254","_from":"5201","_to":"69515"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"119765","_from":"5204","_to":"70330"} +{"$label":"ACTS_IN","name":"Kathleen Crown","type":"Role","_key":"62649","_from":"5204","_to":"39410"} +{"$label":"ACTS_IN","name":"Arya","type":"Role","_key":"21669","_from":"5204","_to":"15842"} +{"$label":"ACTS_IN","name":"Resa","type":"Role","_key":"20274","_from":"5204","_to":"14864"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"18573","_from":"5204","_to":"13738"} +{"$label":"ACTS_IN","name":"Jill Valentine","type":"Role","_key":"13952","_from":"5204","_to":"10820"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"118259","_from":"5205","_to":"69515"} +{"$label":"ACTS_IN","name":"Kate Walker","type":"Role","_key":"109112","_from":"5205","_to":"64469"} +{"$label":"ACTS_IN","name":"Lady Marchmain","type":"Role","_key":"90322","_from":"5205","_to":"53388"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"73069","_from":"5205","_to":"43966"} +{"$label":"ACTS_IN","name":"Maggie Chester","type":"Role","_key":"72021","_from":"5205","_to":"43549"} +{"$label":"ACTS_IN","name":"Margaret Strauss","type":"Role","_key":"70187","_from":"5205","_to":"42779"} +{"$label":"ACTS_IN","name":"Nanny McPhee","type":"Role","_key":"68885","_from":"5205","_to":"42189"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"65155","_from":"5205","_to":"40473"} +{"$label":"ACTS_IN","name":"Susan Stanton","type":"Role","_key":"53856","_from":"5205","_to":"34689"} +{"$label":"ACTS_IN","name":"Captain Amelia","type":"Role","_key":"52021","_from":"5205","_to":"33920"} +{"$label":"ACTS_IN","name":"Margaret Schlegel","type":"Role","_key":"48982","_from":"5205","_to":"32111"} +{"$label":"ACTS_IN","name":"Gareth Peirce","type":"Role","_key":"47653","_from":"5205","_to":"31397"} +{"$label":"ACTS_IN","name":"Dr. Diana Reddin","type":"Role","_key":"42802","_from":"5205","_to":"28627"} +{"$label":"ACTS_IN","name":"Elinor Dashwood","type":"Role","_key":"32866","_from":"5205","_to":"22814"} +{"$label":"ACTS_IN","name":"Karen Eiffel","type":"Role","_key":"12330","_from":"5205","_to":"9655"} +{"$label":"ACTS_IN","name":"Miss Kenton","type":"Role","_key":"12176","_from":"5205","_to":"9544"} +{"$label":"ACTS_IN","name":"Professor Trelawney","type":"Role","_key":"8070","_from":"5205","_to":"6676"} +{"$label":"ACTS_IN","name":"Castleton","type":"Role","_key":"52521","_from":"5207","_to":"34152"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"19101","_from":"5207","_to":"14109"} +{"$label":"ACTS_IN","name":"Madeline","type":"Role","_key":"114867","_from":"5208","_to":"67660"} +{"$label":"ACTS_IN","name":"Renate Reger","type":"Role","_key":"88134","_from":"5208","_to":"52300"} +{"$label":"ACTS_IN","name":"Leonora Gr\u00e4fin zu Etepetete","type":"Role","_key":"71304","_from":"5208","_to":"43257"} +{"$label":"ACTS_IN","name":"Hildegard Knef","type":"Role","_key":"69845","_from":"5208","_to":"42623"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"64088","_from":"5208","_to":"39999"} +{"$label":"ACTS_IN","name":"Alicia Wallenbeck","type":"Role","_key":"60344","_from":"5208","_to":"38062"} +{"$label":"ACTS_IN","name":"Margarete Steiff","type":"Role","_key":"54045","_from":"5208","_to":"34764"} +{"$label":"ACTS_IN","name":"Isolde","type":"Role","_key":"53748","_from":"5208","_to":"34650"} +{"$label":"ACTS_IN","name":"Maren Krummsieg","type":"Role","_key":"52738","_from":"5208","_to":"34223"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"28351","_from":"5208","_to":"20286"} +{"$label":"ACTS_IN","name":"Katinka Sirena","type":"Role","_key":"27651","_from":"5208","_to":"19817"} +{"$label":"ACTS_IN","name":"Kl\u00e4rchen","type":"Role","_key":"19219","_from":"5208","_to":"14207"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"15394","_from":"5208","_to":"11776"} +{"$label":"ACTS_IN","name":"Viktoria","type":"Role","_key":"15054","_from":"5208","_to":"11571"} +{"$label":"ACTS_IN","name":"Dr. Lisa Addison","type":"Role","_key":"13948","_from":"5208","_to":"10818"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"13629","_from":"5208","_to":"10589"} +{"$label":"ACTS_IN","name":"Fleck","type":"Role","_key":"112279","_from":"5209","_to":"66298"} +{"$label":"ACTS_IN","name":"Chris Ashworth","type":"Role","_key":"111728","_from":"5209","_to":"65955"} +{"$label":"ACTS_IN","name":"Gary Shaller","type":"Role","_key":"94861","_from":"5209","_to":"55857"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"60834","_from":"5209","_to":"38430"} +{"$label":"ACTS_IN","name":"Arthur Dent","type":"Role","_key":"46732","_from":"5209","_to":"30837"} +{"$label":"ACTS_IN","name":"Met Sergeant","type":"Role","_key":"33110","_from":"5209","_to":"22937"} +{"$label":"ACTS_IN","name":"Rembrandt van Rijn","type":"Role","_key":"32632","_from":"5209","_to":"22682"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"12254","_from":"5209","_to":"9592"} +{"$label":"ACTS_IN","name":"Ann Crook","type":"Role","_key":"9022","_from":"5210","_to":"7296"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"116650","_from":"5211","_to":"68665"} +{"$label":"ACTS_IN","name":"Jeff King","type":"Role","_key":"6159","_from":"5223","_to":"5213"} +{"$label":"ACTS_IN","name":"Honey","type":"Role","_key":"6158","_from":"5222","_to":"5213"} +{"$label":"ACTS_IN","name":"Anna's Publicist","type":"Role","_key":"6157","_from":"5221","_to":"5213"} +{"$label":"ACTS_IN","name":"'Time Out' Journalist","type":"Role","_key":"6156","_from":"5220","_to":"5213"} +{"$label":"ACTS_IN","name":"Ritz Concierge","type":"Role","_key":"6155","_from":"5219","_to":"5213"} +{"$label":"ACTS_IN","name":"Annoying Customer","type":"Role","_key":"6154","_from":"5218","_to":"5213"} +{"$label":"ACTS_IN","name":"Rufus the Thief","type":"Role","_key":"6153","_from":"5217","_to":"5213"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"6152","_from":"5216","_to":"5213"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"6150","_from":"5215","_to":"5213"} +{"$label":"DIRECTED","_key":"6147","_from":"5214","_to":"5213"} +{"$label":"DIRECTED","_key":"110906","_from":"5214","_to":"65506"} +{"$label":"DIRECTED","_key":"96308","_from":"5214","_to":"56572"} +{"$label":"DIRECTED","_key":"53568","_from":"5214","_to":"34569"} +{"$label":"DIRECTED","_key":"13618","_from":"5214","_to":"10583"} +{"$label":"ACTS_IN","name":"Frank Dyson","type":"Role","_key":"102912","_from":"5215","_to":"60541"} +{"$label":"ACTS_IN","name":"Bloefeldt","type":"Role","_key":"32642","_from":"5215","_to":"22682"} +{"$label":"ACTS_IN","name":"Horace","type":"Role","_key":"25897","_from":"5215","_to":"18633"} +{"$label":"ACTS_IN","name":"Arthur \"Ham\" Hammond","type":"Role","_key":"17182","_from":"5215","_to":"12868"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97931","_from":"5217","_to":"57670"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95336","_from":"5217","_to":"56087"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"47539","_from":"5217","_to":"31324"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"8725","_from":"5217","_to":"7074"} +{"$label":"ACTS_IN","name":"Frank Lovett","type":"Role","_key":"36683","_from":"5218","_to":"24861"} +{"$label":"ACTS_IN","name":"Bamatabois","type":"Role","_key":"31608","_from":"5220","_to":"22064"} +{"$label":"ACTS_IN","name":"Mr. Pimms","type":"Role","_key":"17304","_from":"5220","_to":"12947"} +{"$label":"ACTS_IN","name":"Supreme Court Justice Robert H. Jackson","type":"Role","_key":"117932","_from":"5223","_to":"69324"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"111554","_from":"5223","_to":"65860"} +{"$label":"ACTS_IN","name":"Mr. Conductor","type":"Role","_key":"107111","_from":"5223","_to":"63163"} +{"$label":"ACTS_IN","name":"Martin Tennan","type":"Role","_key":"103961","_from":"5223","_to":"61155"} +{"$label":"ACTS_IN","name":"Frederick J. Frenger Jr.","type":"Role","_key":"102519","_from":"5223","_to":"60318"} +{"$label":"ACTS_IN","name":"Old Man Dunphy","type":"Role","_key":"100902","_from":"5223","_to":"59484"} +{"$label":"ACTS_IN","name":"Professor Turner","type":"Role","_key":"95364","_from":"5223","_to":"56099"} +{"$label":"ACTS_IN","name":"Archie Knox","type":"Role","_key":"95042","_from":"5223","_to":"55950"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"92315","_from":"5223","_to":"54480"} +{"$label":"ACTS_IN","name":"Davis McDonald","type":"Role","_key":"91199","_from":"5223","_to":"53786"} +{"$label":"ACTS_IN","name":"Dennis (voice)","type":"Role","_key":"72282","_from":"5223","_to":"43663"} +{"$label":"ACTS_IN","name":"Jimmy Swaggart","type":"Role","_key":"70030","_from":"5223","_to":"42703"} +{"$label":"ACTS_IN","name":"Shelly Kaplow","type":"Role","_key":"65399","_from":"5223","_to":"40556"} +{"$label":"ACTS_IN","name":"Quinn","type":"Role","_key":"64274","_from":"5223","_to":"40080"} +{"$label":"ACTS_IN","name":"Makunga","type":"Role","_key":"63856","_from":"5223","_to":"39906"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"61131","_from":"5223","_to":"38638"} +{"$label":"ACTS_IN","name":"Campbell Alexander","type":"Role","_key":"59532","_from":"5223","_to":"37583"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"55114","_from":"5223","_to":"35189"} +{"$label":"ACTS_IN","name":"Phil DeVoss","type":"Role","_key":"55106","_from":"5223","_to":"35187"} +{"$label":"ACTS_IN","name":"Blake","type":"Role","_key":"54302","_from":"5223","_to":"34857"} +{"$label":"ACTS_IN","name":"Robert Green","type":"Role","_key":"53826","_from":"5223","_to":"34676"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"53799","_from":"5223","_to":"34665"} +{"$label":"ACTS_IN","name":"Lamont Cranston\/The Shadow","type":"Role","_key":"51108","_from":"5223","_to":"33346"} +{"$label":"ACTS_IN","name":"Nicholas Kudrow","type":"Role","_key":"50994","_from":"5223","_to":"33287"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"48495","_from":"5223","_to":"31835"} +{"$label":"ACTS_IN","name":"Jack McCallister","type":"Role","_key":"47201","_from":"5223","_to":"31110"} +{"$label":"ACTS_IN","name":"Norman Burroughs","type":"Role","_key":"46975","_from":"5223","_to":"30977"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"40833","_from":"5223","_to":"27489"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"29412","_from":"5223","_to":"20869"} +{"$label":"ACTS_IN","name":"Mick Dugan","type":"Role","_key":"27617","_from":"5223","_to":"19802"} +{"$label":"ACTS_IN","name":"Peter Hoskins","type":"Role","_key":"22202","_from":"5223","_to":"16177"} +{"$label":"ACTS_IN","name":"Juan Trippe","type":"Role","_key":"21993","_from":"5223","_to":"16058"} +{"$label":"ACTS_IN","name":"Frank de Marco","type":"Role","_key":"20391","_from":"5223","_to":"14933"} +{"$label":"ACTS_IN","name":"Dr. Jed Hill","type":"Role","_key":"19637","_from":"5223","_to":"14529"} +{"$label":"ACTS_IN","name":"Cap. Gray Edwards ( voice )","type":"Role","_key":"18430","_from":"5223","_to":"13659"} +{"$label":"ACTS_IN","name":"Carter \" Doc \" McCoy","type":"Role","_key":"18178","_from":"5223","_to":"13490"} +{"$label":"ACTS_IN","name":"Jack Ryan","type":"Role","_key":"14801","_from":"5223","_to":"11385"} +{"$label":"ACTS_IN","name":"Ellerby","type":"Role","_key":"13174","_from":"5223","_to":"10265"} +{"$label":"ACTS_IN","name":"Sam Murach","type":"Role","_key":"12201","_from":"5223","_to":"9562"} +{"$label":"ACTS_IN","name":"Lt. Col. James Doolittle","type":"Role","_key":"8129","_from":"5223","_to":"6692"} +{"$label":"ACTS_IN","name":"Chief Bromden","type":"Role","_key":"6183","_from":"5242","_to":"5224"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"6182","_from":"5241","_to":"5224"} +{"$label":"ACTS_IN","name":"Night Nurse","type":"Role","_key":"6179","_from":"5240","_to":"5224"} +{"$label":"ACTS_IN","name":"Charlie Cheswick","type":"Role","_key":"6178","_from":"5239","_to":"5224"} +{"$label":"ACTS_IN","name":"Harbormaster","type":"Role","_key":"6177","_from":"5238","_to":"5224"} +{"$label":"ACTS_IN","name":"Beans Garfield","type":"Role","_key":"6176","_from":"5237","_to":"5224"} +{"$label":"ACTS_IN","name":"Attendant Washington","type":"Role","_key":"6175","_from":"5236","_to":"5224"} +{"$label":"ACTS_IN","name":"Nurse Itsu","type":"Role","_key":"6174","_from":"5235","_to":"5224"} +{"$label":"ACTS_IN","name":"Bancini","type":"Role","_key":"6173","_from":"5234","_to":"5224"} +{"$label":"ACTS_IN","name":"Jim Sefelt","type":"Role","_key":"6172","_from":"5233","_to":"5224"} +{"$label":"ACTS_IN","name":"Attendant Warren","type":"Role","_key":"6170","_from":"5232","_to":"5224"} +{"$label":"ACTS_IN","name":"Orderly Turkle","type":"Role","_key":"6169","_from":"5231","_to":"5224"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"6168","_from":"5230","_to":"5224"} +{"$label":"ACTS_IN","name":"Dr. John Spivey","type":"Role","_key":"6167","_from":"5229","_to":"5224"} +{"$label":"ACTS_IN","name":"Colonel Matterson","type":"Role","_key":"6166","_from":"5228","_to":"5224"} +{"$label":"ACTS_IN","name":"Ellis","type":"Role","_key":"6165","_from":"5227","_to":"5224"} +{"$label":"ACTS_IN","name":"Harding","type":"Role","_key":"6164","_from":"5226","_to":"5224"} +{"$label":"ACTS_IN","name":"Nurse Mildred Ratched","type":"Role","_key":"6163","_from":"5225","_to":"5224"} +{"$label":"ACTS_IN","name":"Lillian Reynolds","type":"Role","_key":"102948","_from":"5225","_to":"60558"} +{"$label":"ACTS_IN","name":"Marlene DuChard","type":"Role","_key":"100936","_from":"5225","_to":"59497"} +{"$label":"ACTS_IN","name":"Dr. Gene Tuskin","type":"Role","_key":"70872","_from":"5225","_to":"43071"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"67139","_from":"5225","_to":"41425"} +{"$label":"ACTS_IN","name":"Miz Elda","type":"Role","_key":"58003","_from":"5225","_to":"36700"} +{"$label":"ACTS_IN","name":"Shirley Turner","type":"Role","_key":"54227","_from":"5225","_to":"34828"} +{"$label":"ACTS_IN","name":"Schuldirektorin Evelyn Doyle","type":"Role","_key":"53027","_from":"5225","_to":"34336"} +{"$label":"ACTS_IN","name":"Elizabeth Deane","type":"Role","_key":"52758","_from":"5225","_to":"34229"} +{"$label":"ACTS_IN","name":"Belle Delongpre","type":"Role","_key":"36609","_from":"5225","_to":"24811"} +{"$label":"ACTS_IN","name":"Mrs. Perdue","type":"Role","_key":"26126","_from":"5225","_to":"18769"} +{"$label":"ACTS_IN","name":"Helen Rosemond","type":"Role","_key":"9391","_from":"5225","_to":"7576"} +{"$label":"ACTS_IN","name":"Sam Kreutzer","type":"Role","_key":"97589","_from":"5226","_to":"57463"} +{"$label":"ACTS_IN","name":"Cap. Bill Owens","type":"Role","_key":"18817","_from":"5226","_to":"13902"} +{"$label":"ACTS_IN","name":"Sgt. Ferguson","type":"Role","_key":"12969","_from":"5226","_to":"10112"} +{"$label":"ACTS_IN","name":"Col. Petrov","type":"Role","_key":"121710","_from":"5227","_to":"71499"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"104888","_from":"5227","_to":"61709"} +{"$label":"ACTS_IN","name":"Lisker","type":"Role","_key":"102816","_from":"5227","_to":"60477"} +{"$label":"ACTS_IN","name":"Pluto","type":"Role","_key":"89109","_from":"5227","_to":"52781"} +{"$label":"ACTS_IN","name":"Skull Cowboy (scenes deleted)","type":"Role","_key":"54257","_from":"5227","_to":"34832"} +{"$label":"ACTS_IN","name":"Clevon","type":"Role","_key":"15007","_from":"5227","_to":"11531"} +{"$label":"ACTS_IN","name":"Gottfried","type":"Role","_key":"26575","_from":"5228","_to":"19095"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"11507","_from":"5228","_to":"9041"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117885","_from":"5231","_to":"69298"} +{"$label":"ACTS_IN","name":"Pop Byrd","type":"Role","_key":"115573","_from":"5231","_to":"68036"} +{"$label":"ACTS_IN","name":"Scat Cat","type":"Role","_key":"60857","_from":"5231","_to":"38442"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"36465","_from":"5231","_to":"24729"} +{"$label":"ACTS_IN","name":"Dick Hallorann","type":"Role","_key":"8356","_from":"5231","_to":"6842"} +{"$label":"ACTS_IN","name":"Old Character","type":"Role","_key":"98893","_from":"5233","_to":"58269"} +{"$label":"ACTS_IN","name":"Mr. Fromm","type":"Role","_key":"46466","_from":"5239","_to":"30685"} +{"$label":"ACTS_IN","name":"Myra","type":"Role","_key":"93703","_from":"5241","_to":"55160"} +{"$label":"ACTS_IN","name":"Tall Eagle","type":"Role","_key":"91208","_from":"5242","_to":"53788"} +{"$label":"ACTS_IN","name":"Umilak","type":"Role","_key":"91150","_from":"5242","_to":"53770"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"68077","_from":"5242","_to":"41822"} +{"$label":"ACTS_IN","name":"Stein","type":"Role","_key":"6203","_from":"5258","_to":"5243"} +{"$label":"ACTS_IN","name":"Horn","type":"Role","_key":"6202","_from":"5257","_to":"5243"} +{"$label":"ACTS_IN","name":"Zucker","type":"Role","_key":"6201","_from":"5256","_to":"5243"} +{"$label":"ACTS_IN","name":"Karol's Father","type":"Role","_key":"6199","_from":"5255","_to":"5243"} +{"$label":"ACTS_IN","name":"Wilczek","type":"Role","_key":"6198","_from":"5254","_to":"5243"} +{"$label":"ACTS_IN","name":"Trawinski","type":"Role","_key":"6197","_from":"5253","_to":"5243"} +{"$label":"ACTS_IN","name":"Maks' Father","type":"Role","_key":"6196","_from":"5252","_to":"5243"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"6195","_from":"5251","_to":"5243"} +{"$label":"ACTS_IN","name":"Gr\u00fcnspan","type":"Role","_key":"6194","_from":"5250","_to":"5243"} +{"$label":"ACTS_IN","name":"Herman Bucholz","type":"Role","_key":"6193","_from":"5249","_to":"5243"} +{"$label":"ACTS_IN","name":"Mada M\u00fcller","type":"Role","_key":"6192","_from":"5248","_to":"5243"} +{"$label":"ACTS_IN","name":"Anka","type":"Role","_key":"6191","_from":"5247","_to":"5243"} +{"$label":"ACTS_IN","name":"Lucy Zuckerowa","type":"Role","_key":"6190","_from":"5246","_to":"5243"} +{"$label":"ACTS_IN","name":"Moryc Welt","type":"Role","_key":"6188","_from":"5245","_to":"5243"} +{"$label":"ACTS_IN","name":"Karol Borowiecki","type":"Role","_key":"6187","_from":"5244","_to":"5243"} +{"$label":"ACTS_IN","name":"Gerwazy","type":"Role","_key":"35197","_from":"5244","_to":"23983"} +{"$label":"ACTS_IN","name":"Wiktorczyk","type":"Role","_key":"20035","_from":"5244","_to":"14741"} +{"$label":"ACTS_IN","name":"Jan Bronski","type":"Role","_key":"7873","_from":"5244","_to":"6523"} +{"$label":"ACTS_IN","name":"Benedict","type":"Role","_key":"40073","_from":"5245","_to":"27049"} +{"$label":"ACTS_IN","name":"Maximilien Robespierre","type":"Role","_key":"30076","_from":"5245","_to":"21206"} +{"$label":"ACTS_IN","name":"La femme barjol\u00e9e","type":"Role","_key":"14195","_from":"5246","_to":"10973"} +{"$label":"ACTS_IN","name":"ch\u0142opka","type":"Role","_key":"116824","_from":"5248","_to":"68774"} +{"$label":"ACTS_IN","name":"Szejk pustelnik","type":"Role","_key":"50864","_from":"5252","_to":"33197"} +{"$label":"ACTS_IN","name":"Prof. Merdenpot","type":"Role","_key":"116704","_from":"5254","_to":"68697"} +{"$label":"ACTS_IN","name":"W\u0142oski \u017co\u0142nierz","type":"Role","_key":"108287","_from":"5257","_to":"64004"} +{"$label":"ACTS_IN","name":"Ramses XIII","type":"Role","_key":"35599","_from":"5258","_to":"24192"} +{"$label":"ACTS_IN","name":"Stagehand","type":"Role","_key":"6224","_from":"5275","_to":"5259"} +{"$label":"ACTS_IN","name":"Splendini\u2019s Assistant","type":"Role","_key":"6223","_from":"5274","_to":"5259"} +{"$label":"ACTS_IN","name":"Vivian's Brother","type":"Role","_key":"6221","_from":"5273","_to":"5259"} +{"$label":"ACTS_IN","name":"Vivian's Mother","type":"Role","_key":"6220","_from":"5272","_to":"5259"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"6219","_from":"5271","_to":"5259"} +{"$label":"ACTS_IN","name":"Funeral Speaker","type":"Role","_key":"6218","_from":"5270","_to":"5259"} +{"$label":"ACTS_IN","name":"Tinsley's Fan #2","type":"Role","_key":"6217","_from":"5269","_to":"5259"} +{"$label":"ACTS_IN","name":"Tinsley\u2019s Fan #1","type":"Role","_key":"6216","_from":"5268","_to":"5259"} +{"$label":"ACTS_IN","name":"Joe's Co-Passenger #3","type":"Role","_key":"6214","_from":"5267","_to":"5259"} +{"$label":"ACTS_IN","name":"Joe's Co-Passenger #1","type":"Role","_key":"6212","_from":"5266","_to":"5259"} +{"$label":"ACTS_IN","name":"Jane Cook","type":"Role","_key":"6211","_from":"5265","_to":"5259"} +{"$label":"ACTS_IN","name":"Joe Strombel","type":"Role","_key":"6210","_from":"5264","_to":"5259"} +{"$label":"ACTS_IN","name":"Strombel's Co-Worker","type":"Role","_key":"6209","_from":"5263","_to":"5259"} +{"$label":"ACTS_IN","name":"Strombel's Co-Worker","type":"Role","_key":"6208","_from":"5262","_to":"5259"} +{"$label":"ACTS_IN","name":"Strombel's Co-Worker","type":"Role","_key":"6207","_from":"5261","_to":"5259"} +{"$label":"ACTS_IN","name":"Peter Lyman","type":"Role","_key":"6205","_from":"5260","_to":"5259"} +{"$label":"ACTS_IN","name":"Wyatt Bose","type":"Role","_key":"92043","_from":"5260","_to":"54312"} +{"$label":"ACTS_IN","name":"Eddie Alden","type":"Role","_key":"90862","_from":"5260","_to":"53612"} +{"$label":"ACTS_IN","name":"Roddy","type":"Role","_key":"71086","_from":"5260","_to":"43161"} +{"$label":"ACTS_IN","name":"Leopold","type":"Role","_key":"68695","_from":"5260","_to":"42094"} +{"$label":"ACTS_IN","name":"Memphis","type":"Role","_key":"57335","_from":"5260","_to":"36355"} +{"$label":"ACTS_IN","name":"Stanley Jobson","type":"Role","_key":"55894","_from":"5260","_to":"35554"} +{"$label":"ACTS_IN","name":"Imagin\u00e4rer Freund","type":"Role","_key":"46667","_from":"5260","_to":"30820"} +{"$label":"ACTS_IN","name":"Van Helsing","type":"Role","_key":"45837","_from":"5260","_to":"30311"} +{"$label":"ACTS_IN","name":"Gabriel Van Helsing ( voice )","type":"Role","_key":"45794","_from":"5260","_to":"30298"} +{"$label":"ACTS_IN","name":"The Drover","type":"Role","_key":"45494","_from":"5260","_to":"30139"} +{"$label":"ACTS_IN","name":"Logan \/ Wolverine","type":"Role","_key":"18085","_from":"5260","_to":"13433"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"12861","_from":"5260","_to":"10044"} +{"$label":"ACTS_IN","name":"Robert Angier","type":"Role","_key":"12044","_from":"5260","_to":"9443"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"113419","_from":"5261","_to":"66825"} +{"$label":"ACTS_IN","name":"Ratchett","type":"Role","_key":"59088","_from":"5261","_to":"37302"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"36096","_from":"5261","_to":"24494"} +{"$label":"ACTS_IN","name":"Arnie Ryan","type":"Role","_key":"27540","_from":"5261","_to":"19754"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"20626","_from":"5261","_to":"15083"} +{"$label":"ACTS_IN","name":"Kaspar Anton Carl van Beethoven","type":"Role","_key":"95986","_from":"5262","_to":"56429"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"94160","_from":"5262","_to":"55443"} +{"$label":"ACTS_IN","name":"Teddy Bass","type":"Role","_key":"72230","_from":"5264","_to":"43644"} +{"$label":"ACTS_IN","name":"Charlie Cartwright","type":"Role","_key":"71228","_from":"5264","_to":"43224"} +{"$label":"ACTS_IN","name":"Sgt. Pilot Andy","type":"Role","_key":"70017","_from":"5264","_to":"42700"} +{"$label":"ACTS_IN","name":"Paul Griffen","type":"Role","_key":"68309","_from":"5264","_to":"41931"} +{"$label":"ACTS_IN","name":"Robert Bryson","type":"Role","_key":"66755","_from":"5264","_to":"41244"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"63595","_from":"5264","_to":"39790"} +{"$label":"ACTS_IN","name":"Frank Powell","type":"Role","_key":"60299","_from":"5264","_to":"38026"} +{"$label":"ACTS_IN","name":"Prefet de police","type":"Role","_key":"42252","_from":"5264","_to":"28293"} +{"$label":"ACTS_IN","name":"Fouquet","type":"Role","_key":"30068","_from":"5264","_to":"21200"} +{"$label":"ACTS_IN","name":"Sejanus","type":"Role","_key":"22370","_from":"5264","_to":"16258"} +{"$label":"ACTS_IN","name":"Judas Ischarioth","type":"Role","_key":"21138","_from":"5264","_to":"15473"} +{"$label":"ACTS_IN","name":"Merriman Lyon","type":"Role","_key":"19965","_from":"5264","_to":"14703"} +{"$label":"ACTS_IN","name":"Ragnar Sturlusson ( Voice )","type":"Role","_key":"19913","_from":"5264","_to":"14664"} +{"$label":"ACTS_IN","name":"Blackbeard","type":"Role","_key":"16117","_from":"5264","_to":"12247"} +{"$label":"ACTS_IN","name":"Agatha","type":"Role","_key":"103818","_from":"5265","_to":"61055"} +{"$label":"ACTS_IN","name":"June Broughton","type":"Role","_key":"102718","_from":"5265","_to":"60425"} +{"$label":"ACTS_IN","name":"Miss Cleaver","type":"Role","_key":"65428","_from":"5265","_to":"40563"} +{"$label":"ACTS_IN","name":"Miss Chauhan","type":"Role","_key":"66857","_from":"5267","_to":"41287"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"118709","_from":"5271","_to":"69802"} +{"$label":"ACTS_IN","name":"Cassandra Mortmain","type":"Role","_key":"114380","_from":"5271","_to":"67374"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"113320","_from":"5271","_to":"66758"} +{"$label":"ACTS_IN","name":"Barbara Spooner","type":"Role","_key":"103438","_from":"5271","_to":"60841"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"72074","_from":"5271","_to":"43575"} +{"$label":"ACTS_IN","name":"Katey Miller","type":"Role","_key":"65000","_from":"5271","_to":"40401"} +{"$label":"ACTS_IN","name":"Ilona Tasuiev","type":"Role","_key":"53550","_from":"5271","_to":"34565"} +{"$label":"ACTS_IN","name":"Briony- 18 years old","type":"Role","_key":"31069","_from":"5271","_to":"21754"} +{"$label":"ACTS_IN","name":"Charles Alexander Swann aka Captain Lesgate","type":"Role","_key":"6232","_from":"5280","_to":"5277"} +{"$label":"ACTS_IN","name":"Mark Halliday","type":"Role","_key":"6230","_from":"5279","_to":"5277"} +{"$label":"ACTS_IN","name":"Tony Wendice","type":"Role","_key":"6228","_from":"5278","_to":"5277"} +{"$label":"ACTS_IN","name":"George Stroud","type":"Role","_key":"121640","_from":"5278","_to":"71463"} +{"$label":"ACTS_IN","name":"Jason Crockett","type":"Role","_key":"115627","_from":"5278","_to":"68070"} +{"$label":"ACTS_IN","name":"Roderick Fitzgerald","type":"Role","_key":"108959","_from":"5278","_to":"64390"} +{"$label":"ACTS_IN","name":"Aristotle Bolt","type":"Role","_key":"101907","_from":"5278","_to":"59978"} +{"$label":"ACTS_IN","name":"(in \"The Lost Weekend\") (archive footage)","type":"Role","_key":"53872","_from":"5278","_to":"34691"} +{"$label":"ACTS_IN","name":"Oliver Barrett III","type":"Role","_key":"52352","_from":"5278","_to":"34075"} +{"$label":"ACTS_IN","name":"Professor Dent","type":"Role","_key":"7711","_from":"5280","_to":"6398"} +{"$label":"ACTS_IN","name":"Tony McCoy","type":"Role","_key":"6253","_from":"5290","_to":"5281"} +{"$label":"ACTS_IN","name":"Camera Assistant","type":"Role","_key":"6252","_from":"5289","_to":"5281"} +{"$label":"ACTS_IN","name":"Soundman","type":"Role","_key":"6251","_from":"5288","_to":"5281"} +{"$label":"ACTS_IN","name":"Makeup Man Harry","type":"Role","_key":"6249","_from":"5287","_to":"5281"} +{"$label":"ACTS_IN","name":"Cameraman Bill","type":"Role","_key":"6248","_from":"5286","_to":"5281"} +{"$label":"ACTS_IN","name":"Ed Reynolds","type":"Role","_key":"6247","_from":"5285","_to":"5281"} +{"$label":"ACTS_IN","name":"Loretta King","type":"Role","_key":"6246","_from":"5284","_to":"5281"} +{"$label":"ACTS_IN","name":"Tor Johnson","type":"Role","_key":"6245","_from":"5283","_to":"5281"} +{"$label":"ACTS_IN","name":"Paul Marco","type":"Role","_key":"6243","_from":"5282","_to":"5281"} +{"$label":"ACTS_IN","name":"Dr. Brown","type":"Role","_key":"113894","_from":"5282","_to":"67087"} +{"$label":"ACTS_IN","name":"Zini","type":"Role","_key":"64120","_from":"5282","_to":"40012"} +{"$label":"ACTS_IN","name":"Mack Steiner","type":"Role","_key":"35010","_from":"5282","_to":"23895"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119924","_from":"5283","_to":"70418"} +{"$label":"ACTS_IN","name":"Mary Shelley King","type":"Role","_key":"63301","_from":"5284","_to":"39679"} +{"$label":"ACTS_IN","name":"Kay","type":"Role","_key":"52432","_from":"5286","_to":"34114"} +{"$label":"ACTS_IN","name":"Willie Lambert","type":"Role","_key":"50079","_from":"5286","_to":"32761"} +{"$label":"ACTS_IN","name":"Kranix\/Arblus (voice)","type":"Role","_key":"16043","_from":"5286","_to":"12195"} +{"$label":"ACTS_IN","name":"Angelo Rizzo","type":"Role","_key":"67319","_from":"5287","_to":"41493"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"7607","_from":"5287","_to":"6321"} +{"$label":"ACTS_IN","name":"Charles Brooks","type":"Role","_key":"108056","_from":"5289","_to":"63815"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"6266","_from":"5301","_to":"5291"} +{"$label":"ACTS_IN","name":"Heimleiterin","type":"Role","_key":"6265","_from":"5300","_to":"5291"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"6264","_from":"5299","_to":"5291"} +{"$label":"ACTS_IN","name":"Martin Borchert","type":"Role","_key":"6263","_from":"5298","_to":"5291"} +{"$label":"ACTS_IN","name":"Gerhart Landauer","type":"Role","_key":"6262","_from":"5297","_to":"5291"} +{"$label":"ACTS_IN","name":"Stefan Weiser","type":"Role","_key":"6261","_from":"5296","_to":"5291"} +{"$label":"ACTS_IN","name":"Hanna Imhof","type":"Role","_key":"6260","_from":"5295","_to":"5291"} +{"$label":"ACTS_IN","name":"Helga Klingler","type":"Role","_key":"6259","_from":"5294","_to":"5291"} +{"$label":"ACTS_IN","name":"Marianne Klingler","type":"Role","_key":"6258","_from":"5293","_to":"5291"} +{"$label":"ACTS_IN","name":"Michaela Klingler","type":"Role","_key":"6256","_from":"5292","_to":"5291"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"38959","_from":"5292","_to":"26324"} +{"$label":"ACTS_IN","name":"Hannelore Walzer","type":"Role","_key":"70721","_from":"5293","_to":"43009"} +{"$label":"ACTS_IN","name":"Dr. Bl\u00f6chinger","type":"Role","_key":"42364","_from":"5293","_to":"28358"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"29134","_from":"5296","_to":"20749"} +{"$label":"ACTS_IN","name":"Burkhard Wagner","type":"Role","_key":"49209","_from":"5298","_to":"32242"} +{"$label":"ACTS_IN","name":"Lehmanns Vater","type":"Role","_key":"30979","_from":"5299","_to":"21698"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"31061","_from":"5301","_to":"21748"} +{"$label":"ACTS_IN","name":"Black Jack-Groupier","type":"Role","_key":"6281","_from":"5312","_to":"5302"} +{"$label":"ACTS_IN","name":"Ichikawa","type":"Role","_key":"6280","_from":"5311","_to":"5302"} +{"$label":"ACTS_IN","name":"Oscar Goodman","type":"Role","_key":"6279","_from":"5310","_to":"5302"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"6278","_from":"5309","_to":"5302"} +{"$label":"ACTS_IN","name":"Andy Stone","type":"Role","_key":"6277","_from":"5308","_to":"5302"} +{"$label":"ACTS_IN","name":"Artie Piscano","type":"Role","_key":"6276","_from":"5307","_to":"5302"} +{"$label":"ACTS_IN","name":"Billy Sherbert","type":"Role","_key":"6275","_from":"5306","_to":"5302"} +{"$label":"ACTS_IN","name":"Phillip Green","type":"Role","_key":"6274","_from":"5305","_to":"5302"} +{"$label":"ACTS_IN","name":"Remo Gaggi","type":"Role","_key":"6273","_from":"5304","_to":"5302"} +{"$label":"ACTS_IN","name":"Frank Marino","type":"Role","_key":"6272","_from":"5303","_to":"5302"} +{"$label":"ACTS_IN","name":"Mike Tucci","type":"Role","_key":"15143","_from":"5303","_to":"11617"} +{"$label":"ACTS_IN","name":"Salvy Batts","type":"Role","_key":"13960","_from":"5303","_to":"10823"} +{"$label":"ACTS_IN","name":"Billy Batts","type":"Role","_key":"9034","_from":"5303","_to":"7306"} +{"$label":"ACTS_IN","name":"Ned Beindorf","type":"Role","_key":"117799","_from":"5305","_to":"69242"} +{"$label":"ACTS_IN","name":"Rosenheim","type":"Role","_key":"116980","_from":"5305","_to":"68856"} +{"$label":"ACTS_IN","name":"Gerry Lefcourt","type":"Role","_key":"115081","_from":"5305","_to":"67773"} +{"$label":"ACTS_IN","name":"Jordan Marcus","type":"Role","_key":"112128","_from":"5305","_to":"66220"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"111141","_from":"5305","_to":"65639"} +{"$label":"ACTS_IN","name":"Tom Gilbert","type":"Role","_key":"105387","_from":"5305","_to":"62004"} +{"$label":"ACTS_IN","name":"Elmo Broth","type":"Role","_key":"104818","_from":"5305","_to":"61674"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100577","_from":"5305","_to":"59315"} +{"$label":"ACTS_IN","name":"Cupid","type":"Role","_key":"96252","_from":"5305","_to":"56561"} +{"$label":"ACTS_IN","name":"Bobby Chicago","type":"Role","_key":"58342","_from":"5305","_to":"36876"} +{"$label":"ACTS_IN","name":"Det. Larry Doyle","type":"Role","_key":"54593","_from":"5305","_to":"34975"} +{"$label":"ACTS_IN","name":"Cupid","type":"Role","_key":"52052","_from":"5305","_to":"33935"} +{"$label":"ACTS_IN","name":"Izzy Kirke","type":"Role","_key":"20230","_from":"5305","_to":"14831"} +{"$label":"ACTS_IN","name":"Lazlo","type":"Role","_key":"18496","_from":"5305","_to":"13698"} +{"$label":"ACTS_IN","name":"Frank Swan","type":"Role","_key":"18378","_from":"5305","_to":"13628"} +{"$label":"ACTS_IN","name":"Janni Pytor Gogolak","type":"Role","_key":"17991","_from":"5305","_to":"13374"} +{"$label":"ACTS_IN","name":"Walter Smith","type":"Role","_key":"17637","_from":"5305","_to":"13162"} +{"$label":"ACTS_IN","name":"Dr. John Dojny","type":"Role","_key":"17538","_from":"5305","_to":"13103"} +{"$label":"ACTS_IN","name":"Stuart Smiley, National Security Advisor","type":"Role","_key":"15448","_from":"5305","_to":"11805"} +{"$label":"ACTS_IN","name":"Lt. Sam Weinberg","type":"Role","_key":"10485","_from":"5305","_to":"8340"} +{"$label":"ACTS_IN","name":"Todd Hockney","type":"Role","_key":"7473","_from":"5305","_to":"6221"} +{"$label":"ACTS_IN","name":"Quartermaster 1st Class Ruby","type":"Role","_key":"117487","_from":"5306","_to":"69086"} +{"$label":"ACTS_IN","name":"Mr. Hamilton","type":"Role","_key":"100896","_from":"5306","_to":"59482"} +{"$label":"ACTS_IN","name":"Staff Sergeant \"Crapgame\"","type":"Role","_key":"70901","_from":"5306","_to":"43079"} +{"$label":"ACTS_IN","name":"Mr. Potato Head (voice)","type":"Role","_key":"61609","_from":"5306","_to":"38829"} +{"$label":"ACTS_IN","name":"Mr. Potato Head (voice)","type":"Role","_key":"10260","_from":"5306","_to":"8176"} +{"$label":"ACTS_IN","name":"Mr. Potato Head (voice)","type":"Role","_key":"10247","_from":"5306","_to":"8168"} +{"$label":"ACTS_IN","name":"Graziedei","type":"Role","_key":"58408","_from":"5307","_to":"36916"} +{"$label":"ACTS_IN","name":"Vinny","type":"Role","_key":"10513","_from":"5307","_to":"8357"} +{"$label":"ACTS_IN","name":"Dr. Vinnie Donatti","type":"Role","_key":"64028","_from":"5308","_to":"39968"} +{"$label":"ACTS_IN","name":"Mr. Roboto","type":"Role","_key":"9644","_from":"5311","_to":"7752"} +{"$label":"ACTS_IN","name":"\"Bones\" Malone","type":"Role","_key":"6332","_from":"5357","_to":"5313"} +{"$label":"ACTS_IN","name":"Choir","type":"Role","_key":"6331","_from":"5356","_to":"5313"} +{"$label":"ACTS_IN","name":"Cocktail Waitress","type":"Role","_key":"6330","_from":"5355","_to":"5313"} +{"$label":"ACTS_IN","name":"Charming Trooper","type":"Role","_key":"6328","_from":"5354","_to":"5313"} +{"$label":"ACTS_IN","name":"Head Nazi","type":"Role","_key":"6327","_from":"5353","_to":"5313"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"6324","_from":"5352","_to":"5313"} +{"$label":"ACTS_IN","name":"Nazi","type":"Role","_key":"6323","_from":"5351","_to":"5313"} +{"$label":"ACTS_IN","name":"Nazi","type":"Role","_key":"6322","_from":"5350","_to":"5313"} +{"$label":"ACTS_IN","name":"Nazi","type":"Role","_key":"6321","_from":"5349","_to":"5313"} +{"$label":"ACTS_IN","name":"Gruppenf\u00fchrer","type":"Role","_key":"6320","_from":"5348","_to":"5313"} +{"$label":"ACTS_IN","name":"Sommelier","type":"Role","_key":"6319","_from":"5347","_to":"5313"} +{"$label":"ACTS_IN","name":"Daughter #3","type":"Role","_key":"6318","_from":"5346","_to":"5313"} +{"$label":"ACTS_IN","name":"Daughter #2","type":"Role","_key":"6317","_from":"5345","_to":"5313"} +{"$label":"ACTS_IN","name":"Daughter #1","type":"Role","_key":"6316","_from":"5344","_to":"5313"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"6315","_from":"5343","_to":"5313"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"6314","_from":"5342","_to":"5313"} +{"$label":"ACTS_IN","name":"Mr. Fabulous","type":"Role","_key":"6312","_from":"5341","_to":"5313"} +{"$label":"ACTS_IN","name":"Cocktail Waitress","type":"Role","_key":"6311","_from":"5340","_to":"5313"} +{"$label":"ACTS_IN","name":"Mrs. Tarantino","type":"Role","_key":"6310","_from":"5339","_to":"5313"} +{"$label":"ACTS_IN","name":"The Cheese Whiz","type":"Role","_key":"6309","_from":"5338","_to":"5313"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"6308","_from":"5337","_to":"5313"} +{"$label":"ACTS_IN","name":"Man in Toy Store","type":"Role","_key":"6307","_from":"5336","_to":"5313"} +{"$label":"ACTS_IN","name":"Sales Girl","type":"Role","_key":"6306","_from":"5335","_to":"5313"} +{"$label":"ACTS_IN","name":"Trooper Mount","type":"Role","_key":"6305","_from":"5334","_to":"5313"} +{"$label":"ACTS_IN","name":"Trooper Daniel","type":"Role","_key":"6304","_from":"5333","_to":"5313"} +{"$label":"ACTS_IN","name":"Choir Soloist","type":"Role","_key":"6303","_from":"5332","_to":"5313"} +{"$label":"ACTS_IN","name":"Choirmaster","type":"Role","_key":"6302","_from":"5331","_to":"5313"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"6301","_from":"5330","_to":"5313"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"6300","_from":"5329","_to":"5313"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"6299","_from":"5328","_to":"5313"} +{"$label":"ACTS_IN","name":"Schwester Mary Stigmata ('Die Pinguin-Tante')","type":"Role","_key":"6298","_from":"5327","_to":"5313"} +{"$label":"ACTS_IN","name":"Matt 'Guitar' Murphy","type":"Role","_key":"6297","_from":"5326","_to":"5313"} +{"$label":"ACTS_IN","name":"'Blue Lou' Marini","type":"Role","_key":"6296","_from":"5325","_to":"5313"} +{"$label":"ACTS_IN","name":"John Lee Hooker","type":"Role","_key":"6295","_from":"5324","_to":"5313"} +{"$label":"ACTS_IN","name":"Burton Mercer","type":"Role","_key":"6293","_from":"5323","_to":"5313"} +{"$label":"ACTS_IN","name":"Willie 'Too Big' Hall","type":"Role","_key":"6292","_from":"5322","_to":"5313"} +{"$label":"ACTS_IN","name":"Murphy 'Murph' Dunne","type":"Role","_key":"6291","_from":"5321","_to":"5313"} +{"$label":"ACTS_IN","name":"Donald 'Duck' Dunn","type":"Role","_key":"6290","_from":"5320","_to":"5313"} +{"$label":"ACTS_IN","name":"Steve 'The Colonel' Cropper","type":"Role","_key":"6289","_from":"5319","_to":"5313"} +{"$label":"ACTS_IN","name":"Mrs. Murphy","type":"Role","_key":"6288","_from":"5318","_to":"5313"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"6287","_from":"5317","_to":"5313"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"6286","_from":"5316","_to":"5313"} +{"$label":"ACTS_IN","name":"Reverend Cleophus James","type":"Role","_key":"6285","_from":"5315","_to":"5313"} +{"$label":"ACTS_IN","name":"'Joliet' Jake Blues (as Jake)","type":"Role","_key":"6284","_from":"5314","_to":"5313"} +{"$label":"ACTS_IN","name":"Earl Keese","type":"Role","_key":"120259","_from":"5314","_to":"70619"} +{"$label":"ACTS_IN","name":"Ron Decline","type":"Role","_key":"108993","_from":"5314","_to":"64408"} +{"$label":"ACTS_IN","name":"Capt. Wild Bill Kelso","type":"Role","_key":"70377","_from":"5314","_to":"42868"} +{"$label":"ACTS_IN","name":"John Blutarski","type":"Role","_key":"49973","_from":"5314","_to":"32712"} +{"$label":"ACTS_IN","name":"Robert Thompson, Sr.","type":"Role","_key":"119979","_from":"5315","_to":"70461"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63996","_from":"5315","_to":"39959"} +{"$label":"ACTS_IN","name":"The Godfather of Soul","type":"Role","_key":"12776","_from":"5315","_to":"9966"} +{"$label":"ACTS_IN","name":"Yeller","type":"Role","_key":"10556","_from":"5316","_to":"8385"} +{"$label":"ACTS_IN","name":"Gov. Rob McCallum","type":"Role","_key":"22329","_from":"5321","_to":"16222"} +{"$label":"ACTS_IN","name":"Jack Chester","type":"Role","_key":"119827","_from":"5323","_to":"70368"} +{"$label":"ACTS_IN","name":"Tom Tuttle","type":"Role","_key":"119422","_from":"5323","_to":"70162"} +{"$label":"ACTS_IN","name":"Charlie Cronan","type":"Role","_key":"88897","_from":"5323","_to":"52665"} +{"$label":"ACTS_IN","name":"Dennis \/ Eldona","type":"Role","_key":"72819","_from":"5323","_to":"43870"} +{"$label":"ACTS_IN","name":"Den","type":"Role","_key":"72236","_from":"5323","_to":"43646"} +{"$label":"ACTS_IN","name":"Harry Crumb","type":"Role","_key":"71746","_from":"5323","_to":"43432"} +{"$label":"ACTS_IN","name":"Pvt. Foley","type":"Role","_key":"70384","_from":"5323","_to":"42868"} +{"$label":"ACTS_IN","name":"Lasky, Guard at Walleyworld","type":"Role","_key":"68189","_from":"5323","_to":"41880"} +{"$label":"ACTS_IN","name":"Wilbur (voice)","type":"Role","_key":"68091","_from":"5323","_to":"41826"} +{"$label":"ACTS_IN","name":"Spike Nolan","type":"Role","_key":"67645","_from":"5323","_to":"41626"} +{"$label":"ACTS_IN","name":"Dewey 'Ox' Oxberger","type":"Role","_key":"66486","_from":"5323","_to":"41111"} +{"$label":"ACTS_IN","name":"Frank Dooley","type":"Role","_key":"22253","_from":"5323","_to":"16202"} +{"$label":"ACTS_IN","name":"Freddie Bauer","type":"Role","_key":"22244","_from":"5323","_to":"16195"} +{"$label":"ACTS_IN","name":"Chet Ripley","type":"Role","_key":"22230","_from":"5323","_to":"16189"} +{"$label":"ACTS_IN","name":"Buck Russell","type":"Role","_key":"22220","_from":"5323","_to":"16185"} +{"$label":"ACTS_IN","name":"Danny Muldoon","type":"Role","_key":"22186","_from":"5323","_to":"16172"} +{"$label":"ACTS_IN","name":"Del Griffith","type":"Role","_key":"22162","_from":"5323","_to":"16161"} +{"$label":"ACTS_IN","name":"Sheriff Bud B. Boomer","type":"Role","_key":"15445","_from":"5323","_to":"11805"} +{"$label":"ACTS_IN","name":"Barfolemew 'Barf'","type":"Role","_key":"11416","_from":"5323","_to":"8985"} +{"$label":"ACTS_IN","name":"Irving 'Irv' Blitzer","type":"Role","_key":"10273","_from":"5323","_to":"8178"} +{"$label":"ACTS_IN","name":"Dean Andrews","type":"Role","_key":"9672","_from":"5323","_to":"7763"} +{"$label":"ACTS_IN","name":"Gus Polinski","type":"Role","_key":"9087","_from":"5323","_to":"7343"} +{"$label":"ACTS_IN","name":"Mrs. Perkins","type":"Role","_key":"115678","_from":"5327","_to":"68096"} +{"$label":"ACTS_IN","name":"Lena Nordqvist","type":"Role","_key":"43898","_from":"5327","_to":"29302"} +{"$label":"ACTS_IN","name":"Microwave Marge","type":"Role","_key":"11067","_from":"5327","_to":"8747"} +{"$label":"ACTS_IN","name":"Robert Walenski","type":"Role","_key":"95575","_from":"5348","_to":"56195"} +{"$label":"ACTS_IN","name":"Wilbur","type":"Role","_key":"103457","_from":"5353","_to":"60852"} +{"$label":"ACTS_IN","name":"Dr. Eugene Nortz","type":"Role","_key":"89716","_from":"5353","_to":"53109"} +{"$label":"ACTS_IN","name":"Dr. Werner Klopek","type":"Role","_key":"73092","_from":"5353","_to":"43971"} +{"$label":"ACTS_IN","name":"Father O'Neil","type":"Role","_key":"54427","_from":"5353","_to":"34907"} +{"$label":"ACTS_IN","name":"Haven Hamilton","type":"Role","_key":"26144","_from":"5353","_to":"18778"} +{"$label":"ACTS_IN","name":"Dr. Verringer","type":"Role","_key":"15946","_from":"5353","_to":"12128"} +{"$label":"ACTS_IN","name":"ER Doctor","type":"Role","_key":"51668","_from":"5354","_to":"33701"} +{"$label":"ACTS_IN","name":"Charming Guy With Guitar","type":"Role","_key":"49996","_from":"5354","_to":"32712"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97816","_from":"5357","_to":"57588"} +{"$label":"ACTS_IN","name":"Insane Prisoner","type":"Role","_key":"6343","_from":"5365","_to":"5358"} +{"$label":"ACTS_IN","name":"Mr. Pitou","type":"Role","_key":"6342","_from":"5364","_to":"5358"} +{"$label":"ACTS_IN","name":"Jehan","type":"Role","_key":"6341","_from":"5363","_to":"5358"} +{"$label":"ACTS_IN","name":"Fornac","type":"Role","_key":"6340","_from":"5362","_to":"5358"} +{"$label":"ACTS_IN","name":"Marquet","type":"Role","_key":"6339","_from":"5361","_to":"5358"} +{"$label":"ACTS_IN","name":"Father Imperius","type":"Role","_key":"6338","_from":"5360","_to":"5358"} +{"$label":"DIRECTED","_key":"6333","_from":"5359","_to":"5358"} +{"$label":"DIRECTED","_key":"55704","_from":"5359","_to":"35443"} +{"$label":"DIRECTED","_key":"55259","_from":"5359","_to":"35245"} +{"$label":"DIRECTED","_key":"54714","_from":"5359","_to":"35025"} +{"$label":"DIRECTED","_key":"53343","_from":"5359","_to":"34482"} +{"$label":"DIRECTED","_key":"53220","_from":"5359","_to":"34420"} +{"$label":"DIRECTED","_key":"50935","_from":"5359","_to":"33245"} +{"$label":"DIRECTED","_key":"19184","_from":"5359","_to":"14181"} +{"$label":"DIRECTED","_key":"16670","_from":"5359","_to":"12577"} +{"$label":"DIRECTED","_key":"11256","_from":"5359","_to":"8897"} +{"$label":"DIRECTED","_key":"11249","_from":"5359","_to":"8895"} +{"$label":"DIRECTED","_key":"11231","_from":"5359","_to":"8884"} +{"$label":"DIRECTED","_key":"11216","_from":"5359","_to":"8874"} +{"$label":"DIRECTED","_key":"9364","_from":"5359","_to":"7561"} +{"$label":"ACTS_IN","name":"Clang","type":"Role","_key":"101936","_from":"5360","_to":"59994"} +{"$label":"ACTS_IN","name":"Insp. Curry","type":"Role","_key":"41375","_from":"5360","_to":"27819"} +{"$label":"ACTS_IN","name":"Paddy Button","type":"Role","_key":"38634","_from":"5360","_to":"26098"} +{"$label":"ACTS_IN","name":"Old Bailey","type":"Role","_key":"33470","_from":"5360","_to":"23156"} +{"$label":"ACTS_IN","name":"Simoneva","type":"Role","_key":"18365","_from":"5360","_to":"13621"} +{"$label":"ACTS_IN","name":"Thomas Cromwell","type":"Role","_key":"10394","_from":"5360","_to":"8270"} +{"$label":"ACTS_IN","name":"Norman Scutt","type":"Role","_key":"11752","_from":"5361","_to":"9219"} +{"$label":"ACTS_IN","name":"Aufseher","type":"Role","_key":"23032","_from":"5363","_to":"16697"} +{"$label":"ACTS_IN","name":"Kampfsportlehrer","type":"Role","_key":"23005","_from":"5363","_to":"16666"} +{"$label":"ACTS_IN","name":"Sgt. Ben Engleman","type":"Role","_key":"37198","_from":"5365","_to":"25199"} +{"$label":"DIRECTED","_key":"6361","_from":"5381","_to":"5366"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"6360","_from":"5380","_to":"5366"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"6359","_from":"5379","_to":"5366"} +{"$label":"ACTS_IN","name":"King Hitter","type":"Role","_key":"6358","_from":"5378","_to":"5366"} +{"$label":"ACTS_IN","name":"Taka","type":"Role","_key":"6357","_from":"5377","_to":"5366"} +{"$label":"ACTS_IN","name":"Toot","type":"Role","_key":"6356","_from":"5376","_to":"5366"} +{"$label":"ACTS_IN","name":"Mavis","type":"Role","_key":"6355","_from":"5375","_to":"5366"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"6354","_from":"5374","_to":"5366"} +{"$label":"ACTS_IN","name":"Dooley","type":"Role","_key":"6353","_from":"5373","_to":"5366"} +{"$label":"ACTS_IN","name":"Bully","type":"Role","_key":"6352","_from":"5372","_to":"5366"} +{"$label":"ACTS_IN","name":"Huata Heke","type":"Role","_key":"6351","_from":"5371","_to":"5366"} +{"$label":"ACTS_IN","name":"Polly Heke","type":"Role","_key":"6350","_from":"5370","_to":"5366"} +{"$label":"ACTS_IN","name":"Mark 'Boogie' Heke","type":"Role","_key":"6349","_from":"5369","_to":"5366"} +{"$label":"ACTS_IN","name":"Grace Heke","type":"Role","_key":"6347","_from":"5368","_to":"5366"} +{"$label":"ACTS_IN","name":"Beth Heke","type":"Role","_key":"6345","_from":"5367","_to":"5366"} +{"$label":"ACTS_IN","name":"Soul","type":"Role","_key":"91753","_from":"5369","_to":"54126"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"11914","_from":"5369","_to":"9338"} +{"$label":"ACTS_IN","name":"Hamid Baraheri","type":"Role","_key":"105040","_from":"5372","_to":"61815"} +{"$label":"ACTS_IN","name":"Hook","type":"Role","_key":"94590","_from":"5372","_to":"55732"} +{"$label":"ACTS_IN","name":"Claudio Perrini","type":"Role","_key":"57597","_from":"5372","_to":"36473"} +{"$label":"ACTS_IN","name":"Cy Coates","type":"Role","_key":"50314","_from":"5372","_to":"32867"} +{"$label":"ACTS_IN","name":"Tic-Tic","type":"Role","_key":"47326","_from":"5372","_to":"31165"} +{"$label":"ACTS_IN","name":"Amir Abdullah","type":"Role","_key":"43349","_from":"5372","_to":"28963"} +{"$label":"ACTS_IN","name":"Detective Flores","type":"Role","_key":"41946","_from":"5372","_to":"28107"} +{"$label":"ACTS_IN","name":"Pablo Escobar","type":"Role","_key":"29711","_from":"5372","_to":"21034"} +{"$label":"ACTS_IN","name":"Smiley","type":"Role","_key":"17713","_from":"5372","_to":"13216"} +{"$label":"ACTS_IN","name":"Bowman","type":"Role","_key":"13896","_from":"5372","_to":"10786"} +{"$label":"ACTS_IN","name":"Searle","type":"Role","_key":"12426","_from":"5372","_to":"9736"} +{"$label":"ACTS_IN","name":"Porourangi","type":"Role","_key":"11910","_from":"5372","_to":"9338"} +{"$label":"ACTS_IN","name":"Mana","type":"Role","_key":"8624","_from":"5372","_to":"7002"} +{"$label":"ACTS_IN","name":"Darcy","type":"Role","_key":"106403","_from":"5373","_to":"62687"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"96960","_from":"5373","_to":"57027"} +{"$label":"ACTS_IN","name":"Api","type":"Role","_key":"61431","_from":"5373","_to":"38750"} +{"$label":"ACTS_IN","name":"Rebel Leader Ramon","type":"Role","_key":"25129","_from":"5373","_to":"18152"} +{"$label":"ACTS_IN","name":"Hone","type":"Role","_key":"8626","_from":"5373","_to":"7002"} +{"$label":"DIRECTED","_key":"97314","_from":"5379","_to":"57297"} +{"$label":"ACTS_IN","name":"Reverend","type":"Role","_key":"8623","_from":"5379","_to":"7002"} +{"$label":"DIRECTED","_key":"71515","_from":"5381","_to":"43338"} +{"$label":"DIRECTED","_key":"67143","_from":"5381","_to":"41425"} +{"$label":"DIRECTED","_key":"53825","_from":"5381","_to":"34676"} +{"$label":"DIRECTED","_key":"17782","_from":"5381","_to":"13263"} +{"$label":"DIRECTED","_key":"15371","_from":"5381","_to":"11754"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"6363","_from":"5386","_to":"5384"} +{"$label":"DIRECTED","_key":"6362","_from":"5385","_to":"5384"} +{"$label":"DIRECTED","_key":"100347","_from":"5385","_to":"59173"} +{"$label":"DIRECTED","_key":"67067","_from":"5385","_to":"41398"} +{"$label":"DIRECTED","_key":"46659","_from":"5385","_to":"30817"} +{"$label":"DIRECTED","_key":"6369","_from":"5385","_to":"5389"} +{"$label":"DIRECTED","_key":"6366","_from":"5385","_to":"5388"} +{"$label":"DIRECTED","_key":"6364","_from":"5385","_to":"5387"} +{"$label":"ACTS_IN","name":"Wallace (voice)","type":"Role","_key":"100348","_from":"5386","_to":"59173"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"67068","_from":"5386","_to":"41398"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"40902","_from":"5386","_to":"27513"} +{"$label":"ACTS_IN","name":"Wallace \/ Hutch","type":"Role","_key":"6388","_from":"5386","_to":"5389"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"6367","_from":"5386","_to":"5388"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"6365","_from":"5386","_to":"5387"} +{"$label":"ACTS_IN","name":"PC Mackintosh","type":"Role","_key":"6387","_from":"5405","_to":"5389"} +{"$label":"ACTS_IN","name":"Miss Blight","type":"Role","_key":"6386","_from":"5404","_to":"5389"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"6383","_from":"5403","_to":"5389"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"6382","_from":"5402","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Leaching","type":"Role","_key":"6380","_from":"5401","_to":"5389"} +{"$label":"ACTS_IN","name":"Mrs. Girdling","type":"Role","_key":"6379","_from":"5400","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Crock","type":"Role","_key":"6378","_from":"5399","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Dibber","type":"Role","_key":"6377","_from":"5398","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Mulch","type":"Role","_key":"6376","_from":"5397","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Growbag","type":"Role","_key":"6375","_from":"5396","_to":"5389"} +{"$label":"ACTS_IN","name":"Miss Thripp","type":"Role","_key":"6374","_from":"5395","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Caliche","type":"Role","_key":"6373","_from":"5394","_to":"5389"} +{"$label":"ACTS_IN","name":"Mr. Windfall","type":"Role","_key":"6372","_from":"5393","_to":"5389"} +{"$label":"ACTS_IN","name":"Mrs. Mulch","type":"Role","_key":"6371","_from":"5392","_to":"5389"} +{"$label":"ACTS_IN","name":"Reverend Clement Hedges","type":"Role","_key":"6370","_from":"5391","_to":"5389"} +{"$label":"DIRECTED","_key":"6368","_from":"5390","_to":"5389"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"25091","_from":"5391","_to":"18122"} +{"$label":"ACTS_IN","name":"Garce","type":"Role","_key":"46720","_from":"5392","_to":"30833"} +{"$label":"ACTS_IN","name":"Mary Louise McKinney","type":"Role","_key":"37053","_from":"5392","_to":"25115"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"23250","_from":"5393","_to":"16861"} +{"$label":"ACTS_IN","name":"Sister Bridget","type":"Role","_key":"48224","_from":"5395","_to":"31677"} +{"$label":"ACTS_IN","name":"Mirjam","type":"Role","_key":"22984","_from":"5395","_to":"16666"} +{"$label":"ACTS_IN","name":"Many Characters","type":"Role","_key":"120994","_from":"5404","_to":"71072"} +{"$label":"ACTS_IN","name":"Kenyon","type":"Role","_key":"41753","_from":"5404","_to":"28015"} +{"$label":"ACTS_IN","name":"Hilary Briss \/ Mickey Michaels \/ Val Denton \/ Les McQueen \/ Lance Longthorne \/ Alvin Steele \/ Phil Proctor \/ Mrs Beasley \/ Mick McNamara \/ Neds \/ Lotte Lipp \/ Brian Morgan \/ Dr Chinnery \/ Iris Krell \/ Bobbin","type":"Role","_key":"38685","_from":"5404","_to":"26132"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"18145","_from":"5404","_to":"13461"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"6401","_from":"5416","_to":"5406"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"6400","_from":"5415","_to":"5406"} +{"$label":"ACTS_IN","name":"Morrison","type":"Role","_key":"6399","_from":"5414","_to":"5406"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"6398","_from":"5413","_to":"5406"} +{"$label":"ACTS_IN","name":"General Ashdown","type":"Role","_key":"6397","_from":"5412","_to":"5406"} +{"$label":"ACTS_IN","name":"Prototype T-800","type":"Role","_key":"6396","_from":"5411","_to":"5406"} +{"$label":"ACTS_IN","name":"Kate Connor","type":"Role","_key":"6393","_from":"5410","_to":"5406"} +{"$label":"ACTS_IN","name":"Blair Williams","type":"Role","_key":"6392","_from":"5409","_to":"5406"} +{"$label":"ACTS_IN","name":"Kyle Reese","type":"Role","_key":"6391","_from":"5408","_to":"5406"} +{"$label":"DIRECTED","_key":"6389","_from":"5407","_to":"5406"} +{"$label":"DIRECTED","_key":"68312","_from":"5407","_to":"41931"} +{"$label":"DIRECTED","_key":"54072","_from":"5407","_to":"34775"} +{"$label":"DIRECTED","_key":"31010","_from":"5407","_to":"21713"} +{"$label":"ACTS_IN","name":"Dorian Spitz","type":"Role","_key":"120931","_from":"5408","_to":"71009"} +{"$label":"ACTS_IN","name":"Finn Earl","type":"Role","_key":"120461","_from":"5408","_to":"70763"} +{"$label":"ACTS_IN","name":"Pavel Chekov","type":"Role","_key":"94686","_from":"5408","_to":"55786"} +{"$label":"ACTS_IN","name":"Robert 'Bobby' Garfield","type":"Role","_key":"69079","_from":"5408","_to":"42274"} +{"$label":"ACTS_IN","name":"Charlie Bartlett","type":"Role","_key":"50393","_from":"5408","_to":"32925"} +{"$label":"ACTS_IN","name":"Zack Mazursky","type":"Role","_key":"46776","_from":"5408","_to":"30852"} +{"$label":"ACTS_IN","name":"Dimitri Storodubov","type":"Role","_key":"17788","_from":"5408","_to":"13263"} +{"$label":"ACTS_IN","name":"Det. Maya Sunee","type":"Role","_key":"103805","_from":"5409","_to":"61054"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"52191","_from":"5409","_to":"34007"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"51793","_from":"5409","_to":"33797"} +{"$label":"ACTS_IN","name":"Starfire","type":"Role","_key":"13591","_from":"5409","_to":"10570"} +{"$label":"ACTS_IN","name":"Rosalind","type":"Role","_key":"118707","_from":"5410","_to":"69802"} +{"$label":"ACTS_IN","name":"Video Store Customer (uncredited)","type":"Role","_key":"101698","_from":"5410","_to":"59845"} +{"$label":"ACTS_IN","name":"Story","type":"Role","_key":"55781","_from":"5410","_to":"35507"} +{"$label":"ACTS_IN","name":"Ivy Walker","type":"Role","_key":"45236","_from":"5410","_to":"30028"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"16930","_from":"5410","_to":"12720"} +{"$label":"ACTS_IN","name":"Gwen Stacey","type":"Role","_key":"6694","_from":"5410","_to":"5637"} +{"$label":"ACTS_IN","name":"CIA Director","type":"Role","_key":"120819","_from":"5412","_to":"70947"} +{"$label":"ACTS_IN","name":"Gunter Steinberg","type":"Role","_key":"118558","_from":"5412","_to":"69710"} +{"$label":"ACTS_IN","name":"Tyler (voice)","type":"Role","_key":"108170","_from":"5412","_to":"63928"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"100419","_from":"5412","_to":"59213"} +{"$label":"ACTS_IN","name":"Guy X","type":"Role","_key":"100082","_from":"5412","_to":"59035"} +{"$label":"ACTS_IN","name":"Captain Nathan Norcross","type":"Role","_key":"97635","_from":"5412","_to":"57491"} +{"$label":"ACTS_IN","name":"Colonel Dugan","type":"Role","_key":"68690","_from":"5412","_to":"42093"} +{"$label":"ACTS_IN","name":"Lt. Col. Stone","type":"Role","_key":"67271","_from":"5412","_to":"41467"} +{"$label":"ACTS_IN","name":"Billings","type":"Role","_key":"66568","_from":"5412","_to":"41149"} +{"$label":"ACTS_IN","name":"Mark 'Doc' Jordan","type":"Role","_key":"62167","_from":"5412","_to":"39152"} +{"$label":"ACTS_IN","name":"Walnut","type":"Role","_key":"57994","_from":"5412","_to":"36693"} +{"$label":"ACTS_IN","name":"Muco","type":"Role","_key":"56323","_from":"5412","_to":"35784"} +{"$label":"ACTS_IN","name":"Gen. Katana","type":"Role","_key":"47767","_from":"5412","_to":"31453"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"32596","_from":"5412","_to":"22651"} +{"$label":"ACTS_IN","name":"Dial","type":"Role","_key":"14480","_from":"5412","_to":"11185"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"10237","_from":"5412","_to":"8163"} +{"$label":"ACTS_IN","name":"Jester","type":"Role","_key":"8688","_from":"5412","_to":"7049"} +{"$label":"ACTS_IN","name":"Lieutenant Jean Rasczak","type":"Role","_key":"6760","_from":"5412","_to":"5670"} +{"$label":"ACTS_IN","name":"Gertrude Nemerov","type":"Role","_key":"116832","_from":"5413","_to":"68776"} +{"$label":"ACTS_IN","name":"Addy","type":"Role","_key":"110645","_from":"5413","_to":"65366"} +{"$label":"ACTS_IN","name":"Margaret Phelps","type":"Role","_key":"88031","_from":"5413","_to":"52258"} +{"$label":"ACTS_IN","name":"Nurse Edna","type":"Role","_key":"15166","_from":"5413","_to":"11627"} +{"$label":"ACTS_IN","name":"Lillian Gray","type":"Role","_key":"14389","_from":"5413","_to":"11128"} +{"$label":"ACTS_IN","name":"Judy Hoback","type":"Role","_key":"10611","_from":"5413","_to":"8423"} +{"$label":"ACTS_IN","name":"Dr. Grasnik","type":"Role","_key":"6788","_from":"5413","_to":"5693"} +{"$label":"ACTS_IN","name":"Frank Szabo","type":"Role","_key":"6410","_from":"5424","_to":"5417"} +{"$label":"ACTS_IN","name":"Cecil","type":"Role","_key":"6409","_from":"5423","_to":"5417"} +{"$label":"ACTS_IN","name":"Jeanie Szabo","type":"Role","_key":"6408","_from":"5422","_to":"5417"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"6407","_from":"5421","_to":"5417"} +{"$label":"ACTS_IN","name":"Hanna Long","type":"Role","_key":"6406","_from":"5420","_to":"5417"} +{"$label":"ACTS_IN","name":"Nick Hurley","type":"Role","_key":"6405","_from":"5419","_to":"5417"} +{"$label":"DIRECTED","_key":"6403","_from":"5418","_to":"5417"} +{"$label":"DIRECTED","_key":"67185","_from":"5418","_to":"41448"} +{"$label":"DIRECTED","_key":"60196","_from":"5418","_to":"37979"} +{"$label":"DIRECTED","_key":"56493","_from":"5418","_to":"35887"} +{"$label":"DIRECTED","_key":"31988","_from":"5418","_to":"22300"} +{"$label":"DIRECTED","_key":"20089","_from":"5418","_to":"14770"} +{"$label":"DIRECTED","_key":"19673","_from":"5418","_to":"14552"} +{"$label":"ACTS_IN","name":"Juan Luis","type":"Role","_key":"117144","_from":"5419","_to":"68921"} +{"$label":"ACTS_IN","name":"Chairman Bergen","type":"Role","_key":"115528","_from":"5419","_to":"68009"} +{"$label":"ACTS_IN","name":"Lt. Col. Louis","type":"Role","_key":"98017","_from":"5419","_to":"57719"} +{"$label":"ACTS_IN","name":"Tom Beck","type":"Role","_key":"89737","_from":"5419","_to":"53117"} +{"$label":"ACTS_IN","name":"Dr. Spence","type":"Role","_key":"8601","_from":"5419","_to":"6989"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"7147","_from":"5419","_to":"5965"} +{"$label":"ACTS_IN","name":"Frank Barstow","type":"Role","_key":"72590","_from":"5421","_to":"43768"} +{"$label":"ACTS_IN","name":"Otter's Co-Ed","type":"Role","_key":"49993","_from":"5422","_to":"32712"} +{"$label":"ACTS_IN","name":"Moochie Welch","type":"Role","_key":"50780","_from":"5423","_to":"33134"} +{"$label":"ACTS_IN","name":"Dr. Mendel Craven","type":"Role","_key":"11082","_from":"5423","_to":"8755"} +{"$label":"ACTS_IN","name":"Dilhoefer","type":"Role","_key":"121068","_from":"5424","_to":"71097"} +{"$label":"DIRECTED","_key":"6412","_from":"5426","_to":"5425"} +{"$label":"DIRECTED","_key":"6426","_from":"5441","_to":"5427"} +{"$label":"ACTS_IN","name":"L'aide-soignante","type":"Role","_key":"6425","_from":"5440","_to":"5427"} +{"$label":"ACTS_IN","name":"Pedro Lombardi","type":"Role","_key":"6424","_from":"5439","_to":"5427"} +{"$label":"ACTS_IN","name":"Le m\u00e9decin","type":"Role","_key":"6423","_from":"5438","_to":"5427"} +{"$label":"ACTS_IN","name":"Rose Diakit\u00e9","type":"Role","_key":"6422","_from":"5437","_to":"5427"} +{"$label":"ACTS_IN","name":"Le dragueur cours de tango","type":"Role","_key":"6421","_from":"5436","_to":"5427"} +{"$label":"ACTS_IN","name":"La secr\u00e9taire","type":"Role","_key":"6420","_from":"5435","_to":"5427"} +{"$label":"ACTS_IN","name":"Soeur de Fran\u00e7oise","type":"Role","_key":"6419","_from":"5434","_to":"5427"} +{"$label":"ACTS_IN","name":"M\u00e8re de Fran\u00e7oise","type":"Role","_key":"6418","_from":"5433","_to":"5427"} +{"$label":"ACTS_IN","name":"Jean-Yves, Fils de Jean-Claude","type":"Role","_key":"6417","_from":"5432","_to":"5427"} +{"$label":"ACTS_IN","name":"Thierry, Fianc\u00e9 de Fran\u00e7oise","type":"Role","_key":"6416","_from":"5431","_to":"5427"} +{"$label":"ACTS_IN","name":"P\u00e8re de Jean-Claude","type":"Role","_key":"6415","_from":"5430","_to":"5427"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"6414","_from":"5429","_to":"5427"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"6413","_from":"5428","_to":"5427"} +{"$label":"ACTS_IN","name":"Bruno Caprice","type":"Role","_key":"104057","_from":"5428","_to":"61222"} +{"$label":"ACTS_IN","name":"Gr\u00e9goire","type":"Role","_key":"92137","_from":"5428","_to":"54363"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"35169","_from":"5428","_to":"23966"} +{"$label":"ACTS_IN","name":"Herman","type":"Role","_key":"31183","_from":"5428","_to":"21829"} +{"$label":"ACTS_IN","name":"Dr. Lepage","type":"Role","_key":"17477","_from":"5428","_to":"13069"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"105589","_from":"5429","_to":"62135"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"92127","_from":"5429","_to":"54359"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"62392","_from":"5429","_to":"39307"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"51344","_from":"5429","_to":"33480"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Klein","type":"Role","_key":"46258","_from":"5429","_to":"30575"} +{"$label":"ACTS_IN","name":"Val\u00e9rie Dupr\u00e8s","type":"Role","_key":"40595","_from":"5429","_to":"27336"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"20186","_from":"5429","_to":"14804"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"17476","_from":"5429","_to":"13069"} +{"$label":"ACTS_IN","name":"Floridor","type":"Role","_key":"36089","_from":"5430","_to":"24488"} +{"$label":"ACTS_IN","name":"Le Commissaire","type":"Role","_key":"27152","_from":"5430","_to":"19528"} +{"$label":"ACTS_IN","name":"Treville","type":"Role","_key":"24352","_from":"5430","_to":"17626"} +{"$label":"ACTS_IN","name":"B\u00e2tonnier","type":"Role","_key":"20923","_from":"5430","_to":"15307"} +{"$label":"ACTS_IN","name":"Charly, le directeur de l'auto-\u00e9cole","type":"Role","_key":"119464","_from":"5431","_to":"70178"} +{"$label":"ACTS_IN","name":"Beno\u00eet","type":"Role","_key":"105086","_from":"5431","_to":"61852"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"101294","_from":"5431","_to":"59641"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"62408","_from":"5431","_to":"39313"} +{"$label":"ACTS_IN","name":"Shlomo","type":"Role","_key":"47914","_from":"5431","_to":"31519"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"95709","_from":"5432","_to":"56295"} +{"$label":"ACTS_IN","name":"Mme Duphot","type":"Role","_key":"100140","_from":"5433","_to":"59063"} +{"$label":"ACTS_IN","name":"Mme Duplessis","type":"Role","_key":"30232","_from":"5433","_to":"21284"} +{"$label":"ACTS_IN","name":"Guite Bonfils","type":"Role","_key":"17919","_from":"5433","_to":"13327"} +{"$label":"ACTS_IN","name":"Mrs. Bolton","type":"Role","_key":"27742","_from":"5434","_to":"19880"} +{"$label":"ACTS_IN","name":"Perez","type":"Role","_key":"114217","_from":"5437","_to":"67274"} +{"$label":"DIRECTED","_key":"6427","_from":"5443","_to":"5442"} +{"$label":"ACTS_IN","name":"California Charlie","type":"Role","_key":"6442","_from":"5456","_to":"5444"} +{"$label":"ACTS_IN","name":"Highway Patrol Officer","type":"Role","_key":"6441","_from":"5455","_to":"5444"} +{"$label":"ACTS_IN","name":"Mrs. Chambers","type":"Role","_key":"6440","_from":"5454","_to":"5444"} +{"$label":"ACTS_IN","name":"Caroline (as Pat Hitchcock)","type":"Role","_key":"6438","_from":"5453","_to":"5444"} +{"$label":"ACTS_IN","name":"Tom Cassidy","type":"Role","_key":"6437","_from":"5452","_to":"5444"} +{"$label":"ACTS_IN","name":"Dr. Fred Richman","type":"Role","_key":"6436","_from":"5451","_to":"5444"} +{"$label":"ACTS_IN","name":"Sheriff Al Chambers","type":"Role","_key":"6435","_from":"5450","_to":"5444"} +{"$label":"ACTS_IN","name":"Marion Crane","type":"Role","_key":"6433","_from":"5449","_to":"5444"} +{"$label":"ACTS_IN","name":"Sam Loomis","type":"Role","_key":"6432","_from":"5448","_to":"5444"} +{"$label":"ACTS_IN","name":"Lila Crane","type":"Role","_key":"6431","_from":"5447","_to":"5444"} +{"$label":"ACTS_IN","name":"Norman Bates","type":"Role","_key":"6430","_from":"5446","_to":"5444"} +{"$label":"DIRECTED","_key":"6429","_from":"5445","_to":"5444"} +{"$label":"ACTS_IN","name":"Robert Macklin","type":"Role","_key":"104538","_from":"5446","_to":"61490"} +{"$label":"ACTS_IN","name":"Norman Bates","type":"Role","_key":"90890","_from":"5446","_to":"53624"} +{"$label":"ACTS_IN","name":"Norman Bates","type":"Role","_key":"64185","_from":"5446","_to":"40047"} +{"$label":"ACTS_IN","name":"Chaplain Capt. A.T. Tappman","type":"Role","_key":"62826","_from":"5446","_to":"39476"} +{"$label":"ACTS_IN","name":"Dr. Alex Durant","type":"Role","_key":"54758","_from":"5446","_to":"35046"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33567","_from":"5446","_to":"23204"} +{"$label":"ACTS_IN","name":"Laurence Jeffries","type":"Role","_key":"33321","_from":"5446","_to":"23089"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31999","_from":"5446","_to":"22303"} +{"$label":"ACTS_IN","name":"Hector MacQueen","type":"Role","_key":"29909","_from":"5446","_to":"21143"} +{"$label":"ACTS_IN","name":"Sean McAvoy","type":"Role","_key":"27843","_from":"5446","_to":"19960"} +{"$label":"ACTS_IN","name":"Josef K.","type":"Role","_key":"24906","_from":"5446","_to":"18006"} +{"$label":"DIRECTED","_key":"90902","_from":"5446","_to":"53624"} +{"$label":"ACTS_IN","name":"Hallie Stoddard","type":"Role","_key":"71621","_from":"5447","_to":"43376"} +{"$label":"ACTS_IN","name":"Lila Loomis","type":"Role","_key":"64186","_from":"5447","_to":"40047"} +{"$label":"ACTS_IN","name":"Laurie Jorgensen","type":"Role","_key":"26072","_from":"5447","_to":"18734"} +{"$label":"ACTS_IN","name":"Brian Younger","type":"Role","_key":"90631","_from":"5448","_to":"53518"} +{"$label":"ACTS_IN","name":"Julius Caesar","type":"Role","_key":"11498","_from":"5448","_to":"9041"} +{"$label":"ACTS_IN","name":"Norma Watson","type":"Role","_key":"71492","_from":"5449","_to":"43330"} +{"$label":"ACTS_IN","name":"Princess Aleta","type":"Role","_key":"42738","_from":"5449","_to":"28608"} +{"$label":"ACTS_IN","name":"Susan 'Susie' Vargas","type":"Role","_key":"13417","_from":"5449","_to":"10442"} +{"$label":"ACTS_IN","name":"Eugenie Rose Chaney","type":"Role","_key":"11606","_from":"5449","_to":"9116"} +{"$label":"ACTS_IN","name":"Kathy Williams","type":"Role","_key":"9304","_from":"5449","_to":"7517"} +{"$label":"ACTS_IN","name":"Judge Gannon","type":"Role","_key":"117230","_from":"5450","_to":"68960"} +{"$label":"ACTS_IN","name":"Judge Parker","type":"Role","_key":"112880","_from":"5450","_to":"66629"} +{"$label":"ACTS_IN","name":"Police Commissioner Hardy","type":"Role","_key":"110619","_from":"5450","_to":"65354"} +{"$label":"ACTS_IN","name":"Mr. Judson","type":"Role","_key":"66378","_from":"5450","_to":"41053"} +{"$label":"ACTS_IN","name":"Amos Reed","type":"Role","_key":"45280","_from":"5450","_to":"30040"} +{"$label":"ACTS_IN","name":"Lt. Detective William Flaherty Tobin","type":"Role","_key":"104172","_from":"5451","_to":"61284"} +{"$label":"ACTS_IN","name":"Tony Vincenzo","type":"Role","_key":"104094","_from":"5451","_to":"61243"} +{"$label":"ACTS_IN","name":"Lieutenant Schrank","type":"Role","_key":"15270","_from":"5451","_to":"11688"} +{"$label":"ACTS_IN","name":"Captain Sam Bennett","type":"Role","_key":"10890","_from":"5451","_to":"8626"} +{"$label":"ACTS_IN","name":"Lt. J.G. Crain","type":"Role","_key":"106219","_from":"5452","_to":"62557"} +{"$label":"ACTS_IN","name":"Sam Wainwright","type":"Role","_key":"14047","_from":"5452","_to":"10886"} +{"$label":"ACTS_IN","name":"Court Lady","type":"Role","_key":"44980","_from":"5453","_to":"29886"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"30881","_from":"5453","_to":"21649"} +{"$label":"ACTS_IN","name":"Barbara Morton","type":"Role","_key":"10012","_from":"5453","_to":"8013"} +{"$label":"ACTS_IN","name":"Mrs. Kettering","type":"Role","_key":"121731","_from":"5454","_to":"71514"} +{"$label":"ACTS_IN","name":"Mrs. Natalie Miller","type":"Role","_key":"94033","_from":"5454","_to":"55371"} +{"$label":"ACTS_IN","name":"Mother Hinkle","type":"Role","_key":"16301","_from":"5454","_to":"12354"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"39472","_from":"5455","_to":"26678"} +{"$label":"ACTS_IN","name":"Al Schwartz - District Attorney's Assistant","type":"Role","_key":"13425","_from":"5455","_to":"10442"} +{"$label":"ACTS_IN","name":"Ase Beck","type":"Role","_key":"15553","_from":"5456","_to":"11870"} +{"$label":"ACTS_IN","name":"Ninotchka Kaprova","type":"Role","_key":"6453","_from":"5467","_to":"5457"} +{"$label":"ACTS_IN","name":"Mrs. Petrie","type":"Role","_key":"6451","_from":"5466","_to":"5457"} +{"$label":"ACTS_IN","name":"Scud","type":"Role","_key":"6450","_from":"5465","_to":"5457"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"6449","_from":"5464","_to":"5457"} +{"$label":"ACTS_IN","name":"Bobby Matthews","type":"Role","_key":"6448","_from":"5463","_to":"5457"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"6447","_from":"5462","_to":"5457"} +{"$label":"ACTS_IN","name":"Lucy Diamond","type":"Role","_key":"6446","_from":"5461","_to":"5457"} +{"$label":"ACTS_IN","name":"Max Brewer","type":"Role","_key":"6445","_from":"5460","_to":"5457"} +{"$label":"ACTS_IN","name":"Amy Bradshaw","type":"Role","_key":"6444","_from":"5459","_to":"5457"} +{"$label":"DIRECTED","_key":"6443","_from":"5458","_to":"5457"} +{"$label":"DIRECTED","_key":"69942","_from":"5458","_to":"42674"} +{"$label":"ACTS_IN","name":"Melinda","type":"Role","_key":"100537","_from":"5459","_to":"59298"} +{"$label":"ACTS_IN","name":"Nancy Hayes","type":"Role","_key":"90742","_from":"5459","_to":"53556"} +{"$label":"ACTS_IN","name":"Naomi Phillips","type":"Role","_key":"100716","_from":"5460","_to":"59387"} +{"$label":"ACTS_IN","name":"Romy","type":"Role","_key":"96643","_from":"5460","_to":"56839"} +{"$label":"ACTS_IN","name":"Prudence","type":"Role","_key":"88486","_from":"5460","_to":"52448"} +{"$label":"ACTS_IN","name":"Luba","type":"Role","_key":"72748","_from":"5460","_to":"43828"} +{"$label":"ACTS_IN","name":"Kid #2","type":"Role","_key":"64745","_from":"5460","_to":"40300"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"58025","_from":"5460","_to":"36714"} +{"$label":"ACTS_IN","name":"Kara","type":"Role","_key":"52746","_from":"5460","_to":"34224"} +{"$label":"ACTS_IN","name":"Cece","type":"Role","_key":"45881","_from":"5460","_to":"30341"} +{"$label":"ACTS_IN","name":"Shelley Baum","type":"Role","_key":"45176","_from":"5460","_to":"29971"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"16731","_from":"5460","_to":"12618"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"117751","_from":"5461","_to":"69222"} +{"$label":"ACTS_IN","name":"Mia Toretto","type":"Role","_key":"96758","_from":"5461","_to":"56916"} +{"$label":"ACTS_IN","name":"Chrissie","type":"Role","_key":"65741","_from":"5461","_to":"40702"} +{"$label":"ACTS_IN","name":"Mia Toretto","type":"Role","_key":"56937","_from":"5461","_to":"36141"} +{"$label":"ACTS_IN","name":"Delilah Profitt","type":"Role","_key":"52785","_from":"5461","_to":"34242"} +{"$label":"ACTS_IN","name":"Shoshana Kapowski","type":"Role","_key":"33643","_from":"5464","_to":"23230"} +{"$label":"ACTS_IN","name":"Phineus","type":"Role","_key":"60205","_from":"5465","_to":"37980"} +{"$label":"ACTS_IN","name":"Prudence","type":"Role","_key":"98603","_from":"5466","_to":"58106"} +{"$label":"ACTS_IN","name":"Sarah Briggs","type":"Role","_key":"91201","_from":"5466","_to":"53786"} +{"$label":"ACTS_IN","name":"Captain Rubio","type":"Role","_key":"90377","_from":"5466","_to":"53406"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"48501","_from":"5466","_to":"31835"} +{"$label":"ACTS_IN","name":"Bunny","type":"Role","_key":"45375","_from":"5466","_to":"30086"} +{"$label":"ACTS_IN","name":"Katherine Horner","type":"Role","_key":"44087","_from":"5466","_to":"29393"} +{"$label":"ACTS_IN","name":"Schwiefka","type":"Role","_key":"6461","_from":"5472","_to":"5468"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"6460","_from":"5471","_to":"5468"} +{"$label":"ACTS_IN","name":"Sparrow","type":"Role","_key":"6459","_from":"5470","_to":"5468"} +{"$label":"ACTS_IN","name":"Zosch Machine","type":"Role","_key":"6458","_from":"5469","_to":"5468"} +{"$label":"ACTS_IN","name":"The Baroness","type":"Role","_key":"103265","_from":"5469","_to":"60756"} +{"$label":"ACTS_IN","name":"Mike Damon","type":"Role","_key":"105897","_from":"5471","_to":"62345"} +{"$label":"ACTS_IN","name":"Carl Kolchak","type":"Role","_key":"104092","_from":"5471","_to":"61243"} +{"$label":"ACTS_IN","name":"General Fleming","type":"Role","_key":"98016","_from":"5471","_to":"57719"} +{"$label":"ACTS_IN","name":"Brian Madison","type":"Role","_key":"67311","_from":"5471","_to":"41492"} +{"$label":"ACTS_IN","name":"Stan Buchek","type":"Role","_key":"46018","_from":"5471","_to":"30412"} +{"$label":"ACTS_IN","name":"Chief Harry Shannon","type":"Role","_key":"18293","_from":"5471","_to":"13572"} +{"$label":"ACTS_IN","name":"The Old Man (Mr. Parker)","type":"Role","_key":"10067","_from":"5471","_to":"8057"} +{"$label":"ACTS_IN","name":"Blackie","type":"Role","_key":"117123","_from":"5472","_to":"68912"} +{"$label":"ACTS_IN","name":"Stanislas Kasava","type":"Role","_key":"7516","_from":"5472","_to":"6257"} +{"$label":"ACTS_IN","name":"Padre Galv\u00e1n","type":"Role","_key":"6477","_from":"5488","_to":"5473"} +{"$label":"ACTS_IN","name":"Don Paco de la Rosa","type":"Role","_key":"6476","_from":"5487","_to":"5473"} +{"$label":"ACTS_IN","name":"Padre Mauro","type":"Role","_key":"6475","_from":"5486","_to":"5473"} +{"$label":"ACTS_IN","name":"Amparito","type":"Role","_key":"6474","_from":"5485","_to":"5473"} +{"$label":"ACTS_IN","name":"Chato Aguilar","type":"Role","_key":"6473","_from":"5484","_to":"5473"} +{"$label":"ACTS_IN","name":"Getseman\u00ed","type":"Role","_key":"6472","_from":"5483","_to":"5473"} +{"$label":"ACTS_IN","name":"El Presidente Municipal Gordo","type":"Role","_key":"6471","_from":"5482","_to":"5473"} +{"$label":"ACTS_IN","name":"Rub\u00e9n de la Rosa","type":"Role","_key":"6470","_from":"5481","_to":"5473"} +{"$label":"ACTS_IN","name":"Padre Natalio P\u00e9rez","type":"Role","_key":"6469","_from":"5480","_to":"5473"} +{"$label":"ACTS_IN","name":"Mart\u00edn","type":"Role","_key":"6468","_from":"5479","_to":"5473"} +{"$label":"ACTS_IN","name":"Obispo","type":"Role","_key":"6467","_from":"5478","_to":"5473"} +{"$label":"ACTS_IN","name":"Augustina Sanjuanera","type":"Role","_key":"6466","_from":"5477","_to":"5473"} +{"$label":"ACTS_IN","name":"Padre Benito D\u00edaz","type":"Role","_key":"6465","_from":"5476","_to":"5473"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"6464","_from":"5475","_to":"5473"} +{"$label":"DIRECTED","_key":"6462","_from":"5474","_to":"5473"} +{"$label":"ACTS_IN","name":"Amy (as Ana Claudia Talancon)","type":"Role","_key":"115323","_from":"5475","_to":"67901"} +{"$label":"ACTS_IN","name":"Catalina Guzman","type":"Role","_key":"109005","_from":"5475","_to":"64418"} +{"$label":"ACTS_IN","name":"Paulina Cabos","type":"Role","_key":"100038","_from":"5475","_to":"59014"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"49020","_from":"5475","_to":"32126"} +{"$label":"ACTS_IN","name":"Taylor Anthony","type":"Role","_key":"45170","_from":"5475","_to":"29971"} +{"$label":"ACTS_IN","name":"Olympia Zuleta","type":"Role","_key":"44511","_from":"5475","_to":"29642"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"90448","_from":"5477","_to":"53436"} +{"$label":"ACTS_IN","name":"Mar\u00eda Jos\u00e9 Arag\u00f3n","type":"Role","_key":"54687","_from":"5477","_to":"35016"} +{"$label":"ACTS_IN","name":"Don Ru","type":"Role","_key":"115306","_from":"5478","_to":"67891"} +{"$label":"ACTS_IN","name":"Arturo Xuncax","type":"Role","_key":"112236","_from":"5478","_to":"66286"} +{"$label":"ACTS_IN","name":"Gobernador","type":"Role","_key":"100228","_from":"5478","_to":"59110"} +{"$label":"ACTS_IN","name":"Juan Vargas","type":"Role","_key":"100220","_from":"5480","_to":"59110"} +{"$label":"ACTS_IN","name":"Lord Sopespian","type":"Role","_key":"21530","_from":"5480","_to":"15744"} +{"$label":"ACTS_IN","name":"L\u00f3pez","type":"Role","_key":"100221","_from":"5482","_to":"59110"} +{"$label":"ACTS_IN","name":"Oscar Cabos","type":"Role","_key":"100039","_from":"5482","_to":"59014"} +{"$label":"ACTS_IN","name":"Col. Mateo","type":"Role","_key":"41707","_from":"5482","_to":"27984"} +{"$label":"ACTS_IN","name":"Reinaldos Gro\u00dfvater","type":"Role","_key":"35512","_from":"5482","_to":"24144"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"27209","_from":"5482","_to":"19549"} +{"$label":"ACTS_IN","name":"Governor Riley","type":"Role","_key":"14727","_from":"5482","_to":"11325"} +{"$label":"ACTS_IN","name":"President Hector Lopez","type":"Role","_key":"8575","_from":"5482","_to":"6975"} +{"$label":"ACTS_IN","name":"Mr. Crewe (the artist)","type":"Role","_key":"6485","_from":"5496","_to":"5489"} +{"$label":"ACTS_IN","name":"Mr. White","type":"Role","_key":"6484","_from":"5495","_to":"5489"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"6483","_from":"5494","_to":"5489"} +{"$label":"ACTS_IN","name":"Det. Frank Webber","type":"Role","_key":"6482","_from":"5493","_to":"5489"} +{"$label":"ACTS_IN","name":"Mrs. White","type":"Role","_key":"6481","_from":"5492","_to":"5489"} +{"$label":"ACTS_IN","name":"Alice White","type":"Role","_key":"6480","_from":"5491","_to":"5489"} +{"$label":"DIRECTED","_key":"6479","_from":"5490","_to":"5489"} +{"$label":"ACTS_IN","name":"Mrs. Higgins","type":"Role","_key":"25042","_from":"5492","_to":"18088"} +{"$label":"ACTS_IN","name":"Det. Insp. Kent","type":"Role","_key":"23354","_from":"5493","_to":"16918"} +{"$label":"ACTS_IN","name":"Brant - Nora's Escort","type":"Role","_key":"102694","_from":"5494","_to":"60415"} +{"$label":"ACTS_IN","name":"Elrond","type":"Role","_key":"12587","_from":"5496","_to":"9845"} +{"$label":"ACTS_IN","name":"Brett Favre","type":"Role","_key":"6499","_from":"5504","_to":"5497"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"6498","_from":"5503","_to":"5497"} +{"$label":"ACTS_IN","name":"Charlie Jensen","type":"Role","_key":"6496","_from":"5502","_to":"5497"} +{"$label":"ACTS_IN","name":"Sheila Jensen","type":"Role","_key":"6495","_from":"5501","_to":"5497"} +{"$label":"ACTS_IN","name":"Ted Stroehmann","type":"Role","_key":"6489","_from":"5500","_to":"5497"} +{"$label":"DIRECTED","_key":"6487","_from":"5499","_to":"5497"} +{"$label":"DIRECTED","_key":"6486","_from":"5498","_to":"5497"} +{"$label":"DIRECTED","_key":"90593","_from":"5498","_to":"53504"} +{"$label":"DIRECTED","_key":"70533","_from":"5498","_to":"42930"} +{"$label":"DIRECTED","_key":"69824","_from":"5498","_to":"42609"} +{"$label":"DIRECTED","_key":"57611","_from":"5498","_to":"36483"} +{"$label":"DIRECTED","_key":"52209","_from":"5498","_to":"34014"} +{"$label":"DIRECTED","_key":"49967","_from":"5498","_to":"32706"} +{"$label":"DIRECTED","_key":"18501","_from":"5498","_to":"13701"} +{"$label":"DIRECTED","_key":"15569","_from":"5498","_to":"11881"} +{"$label":"DIRECTED","_key":"70534","_from":"5499","_to":"42930"} +{"$label":"DIRECTED","_key":"69825","_from":"5499","_to":"42609"} +{"$label":"DIRECTED","_key":"57612","_from":"5499","_to":"36483"} +{"$label":"DIRECTED","_key":"52208","_from":"5499","_to":"34014"} +{"$label":"DIRECTED","_key":"49966","_from":"5499","_to":"32706"} +{"$label":"DIRECTED","_key":"18500","_from":"5499","_to":"13701"} +{"$label":"DIRECTED","_key":"15570","_from":"5499","_to":"11881"} +{"$label":"ACTS_IN","name":"Larry Daley","type":"Role","_key":"115887","_from":"5500","_to":"68230"} +{"$label":"ACTS_IN","name":"Steve Arlo","type":"Role","_key":"107491","_from":"5500","_to":"63424"} +{"$label":"ACTS_IN","name":"Tony Perkis","type":"Role","_key":"101889","_from":"5500","_to":"59969"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100580","_from":"5500","_to":"59315"} +{"$label":"ACTS_IN","name":"Chris Honeywell","type":"Role","_key":"100457","_from":"5500","_to":"59228"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89943","_from":"5500","_to":"53213"} +{"$label":"ACTS_IN","name":"Tim Dingman","type":"Role","_key":"65190","_from":"5500","_to":"40490"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"63849","_from":"5500","_to":"39906"} +{"$label":"ACTS_IN","name":"Bwick Elias","type":"Role","_key":"62597","_from":"5500","_to":"39382"} +{"$label":"ACTS_IN","name":"Dainty","type":"Role","_key":"60831","_from":"5500","_to":"38429"} +{"$label":"ACTS_IN","name":"Lonnie","type":"Role","_key":"57411","_from":"5500","_to":"36396"} +{"$label":"ACTS_IN","name":"Furious","type":"Role","_key":"57177","_from":"5500","_to":"36278"} +{"$label":"ACTS_IN","name":"White Goodman","type":"Role","_key":"54075","_from":"5500","_to":"34776"} +{"$label":"ACTS_IN","name":"Chas Tenenbaum","type":"Role","_key":"53793","_from":"5500","_to":"34665"} +{"$label":"ACTS_IN","name":"Derek Zoolander","type":"Role","_key":"53605","_from":"5500","_to":"34590"} +{"$label":"ACTS_IN","name":"David Starsky","type":"Role","_key":"53496","_from":"5500","_to":"34547"} +{"$label":"ACTS_IN","name":"Eddie Cantrow","type":"Role","_key":"52203","_from":"5500","_to":"34014"} +{"$label":"ACTS_IN","name":"Speedman","type":"Role","_key":"46677","_from":"5500","_to":"30823"} +{"$label":"ACTS_IN","name":"Alex Rose","type":"Role","_key":"46219","_from":"5500","_to":"30551"} +{"$label":"ACTS_IN","name":"Reuben Feffer","type":"Role","_key":"40829","_from":"5500","_to":"27489"} +{"$label":"ACTS_IN","name":"Rabbi Jake Schram","type":"Role","_key":"35203","_from":"5500","_to":"23984"} +{"$label":"ACTS_IN","name":"Michael Grates","type":"Role","_key":"23589","_from":"5500","_to":"17109"} +{"$label":"ACTS_IN","name":"Mel Coplin","type":"Role","_key":"18026","_from":"5500","_to":"13403"} +{"$label":"ACTS_IN","name":"Gaylord \"Greg\" Focker","type":"Role","_key":"14154","_from":"5500","_to":"10958"} +{"$label":"ACTS_IN","name":"Larry Daley","type":"Role","_key":"14116","_from":"5500","_to":"10934"} +{"$label":"ACTS_IN","name":"Alex (voice)","type":"Role","_key":"11362","_from":"5500","_to":"8959"} +{"$label":"ACTS_IN","name":"Gaylord Focker","type":"Role","_key":"8341","_from":"5500","_to":"6834"} +{"$label":"DIRECTED","_key":"53634","_from":"5500","_to":"34590"} +{"$label":"DIRECTED","_key":"46676","_from":"5500","_to":"30823"} +{"$label":"DIRECTED","_key":"23600","_from":"5500","_to":"17109"} +{"$label":"ACTS_IN","name":"Lt. Waters","type":"Role","_key":"102882","_from":"5502","_to":"60513"} +{"$label":"ACTS_IN","name":"Cat (voice)","type":"Role","_key":"101978","_from":"5502","_to":"60008"} +{"$label":"ACTS_IN","name":"Colonel Norton","type":"Role","_key":"101784","_from":"5502","_to":"59899"} +{"$label":"ACTS_IN","name":"Alphonso","type":"Role","_key":"100459","_from":"5502","_to":"59228"} +{"$label":"ACTS_IN","name":"Judge B. Bennet Galloway","type":"Role","_key":"100185","_from":"5502","_to":"59094"} +{"$label":"ACTS_IN","name":"Max \"Coolbreeze\" Templeton","type":"Role","_key":"98412","_from":"5502","_to":"57976"} +{"$label":"ACTS_IN","name":"Commander Scott Boytano","type":"Role","_key":"98191","_from":"5502","_to":"57841"} +{"$label":"ACTS_IN","name":"John Garnett","type":"Role","_key":"97779","_from":"5502","_to":"57579"} +{"$label":"ACTS_IN","name":"Voxem (voice: English version)","type":"Role","_key":"70762","_from":"5502","_to":"43031"} +{"$label":"ACTS_IN","name":"Kirby","type":"Role","_key":"69862","_from":"5502","_to":"42631"} +{"$label":"ACTS_IN","name":"Powerhouse","type":"Role","_key":"69305","_from":"5502","_to":"42371"} +{"$label":"ACTS_IN","name":"CIA Director","type":"Role","_key":"66775","_from":"5502","_to":"41256"} +{"$label":"ACTS_IN","name":"Captain Spain","type":"Role","_key":"64421","_from":"5502","_to":"40148"} +{"$label":"ACTS_IN","name":"Dr. Facilier","type":"Role","_key":"61648","_from":"5502","_to":"38843"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"61412","_from":"5502","_to":"38737"} +{"$label":"ACTS_IN","name":"Louis Fedders","type":"Role","_key":"61386","_from":"5502","_to":"38727"} +{"$label":"ACTS_IN","name":"MCPO Scott Boytano","type":"Role","_key":"59294","_from":"5502","_to":"37449"} +{"$label":"ACTS_IN","name":"Bernard Cooper","type":"Role","_key":"56608","_from":"5502","_to":"35958"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"49132","_from":"5502","_to":"32186"} +{"$label":"ACTS_IN","name":"Jackie Robinson","type":"Role","_key":"40176","_from":"5502","_to":"27113"} +{"$label":"ACTS_IN","name":"Detective Huggins","type":"Role","_key":"34234","_from":"5502","_to":"23502"} +{"$label":"ACTS_IN","name":"Abu al-Walid (Voice)","type":"Role","_key":"23620","_from":"5502","_to":"17126"} +{"$label":"ACTS_IN","name":"Abu \"Imam\" al-Walid","type":"Role","_key":"23609","_from":"5502","_to":"17115"} +{"$label":"ACTS_IN","name":"Abu \"Imam\" al-Walid","type":"Role","_key":"23582","_from":"5502","_to":"17102"} +{"$label":"ACTS_IN","name":"Barricade (voice)","type":"Role","_key":"16063","_from":"5502","_to":"12202"} +{"$label":"ACTS_IN","name":"Lt. Dixon","type":"Role","_key":"14547","_from":"5502","_to":"11201"} +{"$label":"ACTS_IN","name":"Childs","type":"Role","_key":"11946","_from":"5502","_to":"9363"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"9333","_from":"5502","_to":"7539"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"9270","_from":"5502","_to":"7489"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100589","_from":"5503","_to":"59319"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100578","_from":"5503","_to":"59315"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"92299","_from":"5503","_to":"54471"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"57405","_from":"5503","_to":"36396"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"6511","_from":"5514","_to":"5505"} +{"$label":"ACTS_IN","name":"New York City Cop","type":"Role","_key":"6510","_from":"5513","_to":"5505"} +{"$label":"ACTS_IN","name":"Sydney","type":"Role","_key":"6509","_from":"5512","_to":"5505"} +{"$label":"ACTS_IN","name":"Hitchhiker","type":"Role","_key":"6507","_from":"5511","_to":"5505"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"6505","_from":"5510","_to":"5505"} +{"$label":"ACTS_IN","name":"Dr. Spikowsky","type":"Role","_key":"6504","_from":"5509","_to":"5505"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"6503","_from":"5508","_to":"5505"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"6502","_from":"5507","_to":"5505"} +{"$label":"DIRECTED","_key":"6500","_from":"5506","_to":"5505"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"113355","_from":"5507","_to":"66775"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"110248","_from":"5507","_to":"65163"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"101206","_from":"5507","_to":"59615"} +{"$label":"ACTS_IN","name":"Connor Shepard \/ Concussion","type":"Role","_key":"98539","_from":"5507","_to":"58071"} +{"$label":"ACTS_IN","name":"Trey","type":"Role","_key":"40660","_from":"5507","_to":"27371"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"10998","_from":"5507","_to":"8707"} +{"$label":"ACTS_IN","name":"Rosie Morales","type":"Role","_key":"109672","_from":"5508","_to":"64770"} +{"$label":"ACTS_IN","name":"Leticia Narnjo","type":"Role","_key":"103183","_from":"5508","_to":"60693"} +{"$label":"ACTS_IN","name":"Isabel Parades","type":"Role","_key":"98358","_from":"5508","_to":"57925"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"89494","_from":"5508","_to":"52985"} +{"$label":"ACTS_IN","name":"Marisa Esteval","type":"Role","_key":"70566","_from":"5508","_to":"42937"} +{"$label":"ACTS_IN","name":"Agent Linda Perez","type":"Role","_key":"62018","_from":"5508","_to":"39042"} +{"$label":"ACTS_IN","name":"Rosa Maria","type":"Role","_key":"57076","_from":"5508","_to":"36223"} +{"$label":"ACTS_IN","name":"Tracy Perez","type":"Role","_key":"54226","_from":"5508","_to":"34828"} +{"$label":"ACTS_IN","name":"Gale","type":"Role","_key":"47449","_from":"5508","_to":"31257"} +{"$label":"ACTS_IN","name":"Jezebel","type":"Role","_key":"20091","_from":"5508","_to":"14770"} +{"$label":"ACTS_IN","name":"Emaciated Smoker","type":"Role","_key":"55793","_from":"5511","_to":"35507"} +{"$label":"ACTS_IN","name":"Idalyn Greaves","type":"Role","_key":"35131","_from":"5512","_to":"23946"} +{"$label":"ACTS_IN","name":"Gino Mascarpone","type":"Role","_key":"58407","_from":"5513","_to":"36916"} +{"$label":"ACTS_IN","name":"Goon #1","type":"Role","_key":"38728","_from":"5513","_to":"26159"} +{"$label":"DIRECTED","_key":"38665","_from":"5513","_to":"26119"} +{"$label":"ACTS_IN","name":"Tillie","type":"Role","_key":"61671","_from":"5514","_to":"38852"} +{"$label":"ACTS_IN","name":"Annie O'Shea","type":"Role","_key":"61347","_from":"5514","_to":"38715"} +{"$label":"ACTS_IN","name":"'Teensy' Melissa Whitman","type":"Role","_key":"54831","_from":"5514","_to":"35080"} +{"$label":"ACTS_IN","name":"Evelyn Mercer","type":"Role","_key":"48972","_from":"5514","_to":"32108"} +{"$label":"ACTS_IN","name":"Mrs. Bertha Mills","type":"Role","_key":"16754","_from":"5514","_to":"12628"} +{"$label":"ACTS_IN","name":"Catarine Towani","type":"Role","_key":"16268","_from":"5514","_to":"12330"} +{"$label":"ACTS_IN","name":"Barn Dance Vocalist","type":"Role","_key":"6531","_from":"5528","_to":"5515"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"6530","_from":"5527","_to":"5515"} +{"$label":"ACTS_IN","name":"Park Ranger","type":"Role","_key":"6529","_from":"5526","_to":"5515"} +{"$label":"ACTS_IN","name":"Local Tracker","type":"Role","_key":"6528","_from":"5525","_to":"5515"} +{"$label":"ACTS_IN","name":"Lester Petersen","type":"Role","_key":"6527","_from":"5524","_to":"5515"} +{"$label":"ACTS_IN","name":"Annie's Assistant Lucy","type":"Role","_key":"6526","_from":"5523","_to":"5515"} +{"$label":"ACTS_IN","name":"Smokey","type":"Role","_key":"6525","_from":"5522","_to":"5515"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"6524","_from":"5521","_to":"5515"} +{"$label":"ACTS_IN","name":"Ellen Booker","type":"Role","_key":"6523","_from":"5520","_to":"5515"} +{"$label":"ACTS_IN","name":"Twin #2","type":"Role","_key":"6522","_from":"5519","_to":"5515"} +{"$label":"ACTS_IN","name":"Twin #1","type":"Role","_key":"6521","_from":"5518","_to":"5515"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"6520","_from":"5517","_to":"5515"} +{"$label":"ACTS_IN","name":"Joe Booker","type":"Role","_key":"6519","_from":"5516","_to":"5515"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"108000","_from":"5517","_to":"63792"} +{"$label":"ACTS_IN","name":"Rosalee Futch","type":"Role","_key":"94701","_from":"5517","_to":"55789"} +{"$label":"ACTS_IN","name":"Anne Marie Chadwick","type":"Role","_key":"52706","_from":"5517","_to":"34216"} +{"$label":"ACTS_IN","name":"Jill Taylor","type":"Role","_key":"47992","_from":"5517","_to":"31575"} +{"$label":"ACTS_IN","name":"Sandra Dee (Mrs Darin)","type":"Role","_key":"43604","_from":"5517","_to":"29123"} +{"$label":"ACTS_IN","name":"Dawn Schiller","type":"Role","_key":"35461","_from":"5517","_to":"24121"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"15638","_from":"5517","_to":"11928"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"13395","_from":"5517","_to":"10427"} +{"$label":"ACTS_IN","name":"Bertha Duncan","type":"Role","_key":"100913","_from":"5520","_to":"59488"} +{"$label":"ACTS_IN","name":"Rose MacIntosh","type":"Role","_key":"36476","_from":"5520","_to":"24738"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"42857","_from":"5523","_to":"28653"} +{"$label":"ACTS_IN","name":"Medium","type":"Role","_key":"6540","_from":"5533","_to":"5529"} +{"$label":"ACTS_IN","name":"Commoner","type":"Role","_key":"6539","_from":"5532","_to":"5529"} +{"$label":"ACTS_IN","name":"Takehiro","type":"Role","_key":"6536","_from":"5531","_to":"5529"} +{"$label":"ACTS_IN","name":"Masako","type":"Role","_key":"6535","_from":"5530","_to":"5529"} +{"$label":"ACTS_IN","name":"Lady Wakasa","type":"Role","_key":"101472","_from":"5530","_to":"59727"} +{"$label":"ACTS_IN","name":"Genjur\u00f4","type":"Role","_key":"101471","_from":"5531","_to":"59727"} +{"$label":"ACTS_IN","name":"Matilde Basquiat","type":"Role","_key":"6555","_from":"5540","_to":"5534"} +{"$label":"ACTS_IN","name":"Big Pink","type":"Role","_key":"6554","_from":"5539","_to":"5534"} +{"$label":"ACTS_IN","name":"Mary Boone","type":"Role","_key":"6553","_from":"5538","_to":"5534"} +{"$label":"ACTS_IN","name":"Shenge","type":"Role","_key":"6552","_from":"5537","_to":"5534"} +{"$label":"ACTS_IN","name":"Andy Warhol","type":"Role","_key":"6546","_from":"5536","_to":"5534"} +{"$label":"DIRECTED","_key":"6542","_from":"5535","_to":"5534"} +{"$label":"DIRECTED","_key":"35502","_from":"5535","_to":"24144"} +{"$label":"DIRECTED","_key":"17472","_from":"5535","_to":"13069"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110176","_from":"5536","_to":"65101"} +{"$label":"ACTS_IN","name":"Jareth","type":"Role","_key":"95371","_from":"5536","_to":"56100"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94291","_from":"5536","_to":"55529"} +{"$label":"ACTS_IN","name":"Maj. Jack 'Strafer' Celliers","type":"Role","_key":"72904","_from":"5536","_to":"43905"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"71323","_from":"5536","_to":"43264"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"67563","_from":"5536","_to":"41595"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54878","_from":"5536","_to":"35093"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53625","_from":"5536","_to":"34590"} +{"$label":"ACTS_IN","name":"Phillip Jeffries","type":"Role","_key":"16642","_from":"5536","_to":"12568"} +{"$label":"ACTS_IN","name":"Nikolas Tesla","type":"Role","_key":"12049","_from":"5536","_to":"9443"} +{"$label":"ACTS_IN","name":"Thomas Jerome Newton","type":"Role","_key":"11721","_from":"5536","_to":"9203"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"96831","_from":"5537","_to":"56940"} +{"$label":"ACTS_IN","name":"Becky St. Germaine","type":"Role","_key":"117659","_from":"5538","_to":"69161"} +{"$label":"ACTS_IN","name":"Rhonda","type":"Role","_key":"110910","_from":"5538","_to":"65512"} +{"$label":"ACTS_IN","name":"Priscilla Chase","type":"Role","_key":"100476","_from":"5538","_to":"59246"} +{"$label":"ACTS_IN","name":"Meg Swan","type":"Role","_key":"96608","_from":"5538","_to":"56824"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94149","_from":"5538","_to":"55439"} +{"$label":"ACTS_IN","name":"Nora Wilder","type":"Role","_key":"93987","_from":"5538","_to":"55349"} +{"$label":"ACTS_IN","name":"Serena","type":"Role","_key":"68121","_from":"5538","_to":"41844"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"55038","_from":"5538","_to":"35160"} +{"$label":"ACTS_IN","name":"Darla Marks","type":"Role","_key":"54773","_from":"5538","_to":"35048"} +{"$label":"ACTS_IN","name":"Helen Wells","type":"Role","_key":"52141","_from":"5538","_to":"33986"} +{"$label":"ACTS_IN","name":"Jennifer Jolie","type":"Role","_key":"30295","_from":"5538","_to":"21314"} +{"$label":"ACTS_IN","name":"Detec. Carson O`Conner","type":"Role","_key":"25296","_from":"5538","_to":"18235"} +{"$label":"ACTS_IN","name":"Kitty Kowalski","type":"Role","_key":"13397","_from":"5538","_to":"10427"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"103712","_from":"5539","_to":"61002"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"102502","_from":"5539","_to":"60305"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100591","_from":"5539","_to":"59319"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97366","_from":"5539","_to":"57336"} +{"$label":"ACTS_IN","name":"Rhonda the Waitress","type":"Role","_key":"90849","_from":"5539","_to":"53607"} +{"$label":"ACTS_IN","name":"Velma","type":"Role","_key":"55798","_from":"5539","_to":"35512"} +{"$label":"ACTS_IN","name":"Cheryl Hickey","type":"Role","_key":"52212","_from":"5539","_to":"34015"} +{"$label":"ACTS_IN","name":"Joan Vollmer Burroughs","type":"Role","_key":"26524","_from":"5539","_to":"19066"} +{"$label":"ACTS_IN","name":"Lynne Margulies","type":"Role","_key":"15975","_from":"5539","_to":"12149"} +{"$label":"ACTS_IN","name":"Althea Leasure","type":"Role","_key":"14449","_from":"5539","_to":"11171"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"6568","_from":"5549","_to":"5541"} +{"$label":"ACTS_IN","name":"Angel Face","type":"Role","_key":"6567","_from":"5548","_to":"5541"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"6566","_from":"5547","_to":"5541"} +{"$label":"ACTS_IN","name":"The Mechanic","type":"Role","_key":"6565","_from":"5546","_to":"5541"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"6564","_from":"5545","_to":"5541"} +{"$label":"ACTS_IN","name":"Intern","type":"Role","_key":"6562","_from":"5544","_to":"5541"} +{"$label":"ACTS_IN","name":"Richard Chesler","type":"Role","_key":"6561","_from":"5543","_to":"5541"} +{"$label":"ACTS_IN","name":"Robert 'Bob' Paulson","type":"Role","_key":"6560","_from":"5542","_to":"5541"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"115803","_from":"5542","_to":"68174"} +{"$label":"ACTS_IN","name":"Hoover","type":"Role","_key":"91446","_from":"5542","_to":"53929"} +{"$label":"ACTS_IN","name":"Leonid","type":"Role","_key":"58185","_from":"5542","_to":"36805"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"41800","_from":"5542","_to":"28038"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18711","_from":"5542","_to":"13845"} +{"$label":"ACTS_IN","name":"The Lizard","type":"Role","_key":"14326","_from":"5542","_to":"11086"} +{"$label":"ACTS_IN","name":"Ivan Dzasokhov","type":"Role","_key":"66337","_from":"5543","_to":"41032"} +{"$label":"ACTS_IN","name":"Squad Leader","type":"Role","_key":"58452","_from":"5543","_to":"36932"} +{"$label":"ACTS_IN","name":"Professor Cardiff","type":"Role","_key":"55563","_from":"5543","_to":"35381"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"7946","_from":"5543","_to":"6576"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"65579","_from":"5544","_to":"40642"} +{"$label":"ACTS_IN","name":"Deputy Cooper","type":"Role","_key":"57463","_from":"5544","_to":"36424"} +{"$label":"ACTS_IN","name":"Moe","type":"Role","_key":"18213","_from":"5544","_to":"13508"} +{"$label":"ACTS_IN","name":"Sam Whitemoon","type":"Role","_key":"108502","_from":"5546","_to":"64131"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"90492","_from":"5546","_to":"53461"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"48127","_from":"5546","_to":"31620"} +{"$label":"ACTS_IN","name":"Bobby Whitman","type":"Role","_key":"109634","_from":"5547","_to":"64758"} +{"$label":"ACTS_IN","name":"Jann Wenner","type":"Role","_key":"9258","_from":"5547","_to":"7466"} +{"$label":"ACTS_IN","name":"Jack Hayes","type":"Role","_key":"117561","_from":"5548","_to":"69118"} +{"$label":"ACTS_IN","name":"Paul Gardener","type":"Role","_key":"57544","_from":"5548","_to":"36455"} +{"$label":"ACTS_IN","name":"2nd Lt. Whyte","type":"Role","_key":"50653","_from":"5548","_to":"33066"} +{"$label":"ACTS_IN","name":"Mark David Chapman","type":"Role","_key":"49002","_from":"5548","_to":"32119"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"32537","_from":"5548","_to":"22626"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"27881","_from":"5548","_to":"19989"} +{"$label":"ACTS_IN","name":"Hephaistion","type":"Role","_key":"17039","_from":"5548","_to":"12778"} +{"$label":"ACTS_IN","name":"Vitaly Orlov","type":"Role","_key":"15791","_from":"5548","_to":"12028"} +{"$label":"ACTS_IN","name":"Paul Allen","type":"Role","_key":"12547","_from":"5548","_to":"9822"} +{"$label":"ACTS_IN","name":"Raymond Martinez Fernandez","type":"Role","_key":"12247","_from":"5548","_to":"9590"} +{"$label":"ACTS_IN","name":"Harry Goldfarb","type":"Role","_key":"7668","_from":"5548","_to":"6372"} +{"$label":"ACTS_IN","name":"Mr. Linarcos","type":"Role","_key":"6581","_from":"5561","_to":"5550"} +{"$label":"ACTS_IN","name":"Robin Shelby","type":"Role","_key":"6580","_from":"5560","_to":"5550"} +{"$label":"ACTS_IN","name":"Susan Shelby","type":"Role","_key":"6579","_from":"5559","_to":"5550"} +{"$label":"ACTS_IN","name":"Captain Harrison","type":"Role","_key":"6578","_from":"5558","_to":"5550"} +{"$label":"ACTS_IN","name":"Belle Rosen","type":"Role","_key":"6576","_from":"5557","_to":"5550"} +{"$label":"ACTS_IN","name":"Linda Rogo","type":"Role","_key":"6575","_from":"5556","_to":"5550"} +{"$label":"ACTS_IN","name":"Acres","type":"Role","_key":"6574","_from":"5555","_to":"5550"} +{"$label":"ACTS_IN","name":"Nonnie Parry","type":"Role","_key":"6573","_from":"5554","_to":"5550"} +{"$label":"ACTS_IN","name":"James Martin","type":"Role","_key":"6572","_from":"5553","_to":"5550"} +{"$label":"ACTS_IN","name":"Mike Rogo","type":"Role","_key":"6571","_from":"5552","_to":"5550"} +{"$label":"DIRECTED","_key":"6569","_from":"5551","_to":"5550"} +{"$label":"DIRECTED","_key":"96225","_from":"5551","_to":"56558"} +{"$label":"DIRECTED","_key":"36292","_from":"5551","_to":"24620"} +{"$label":"ACTS_IN","name":"Thurmond Prescott","type":"Role","_key":"121685","_from":"5552","_to":"71490"} +{"$label":"ACTS_IN","name":"Boris Vaslov","type":"Role","_key":"113489","_from":"5552","_to":"66871"} +{"$label":"ACTS_IN","name":"Marty Piletti","type":"Role","_key":"106320","_from":"5552","_to":"62635"} +{"$label":"ACTS_IN","name":"Admiral Quinton McHale Sr.","type":"Role","_key":"102433","_from":"5552","_to":"60274"} +{"$label":"ACTS_IN","name":"Coley Trimble","type":"Role","_key":"100777","_from":"5552","_to":"59412"} +{"$label":"ACTS_IN","name":"Milas","type":"Role","_key":"99149","_from":"5552","_to":"58416"} +{"$label":"ACTS_IN","name":"Donnegan","type":"Role","_key":"91397","_from":"5552","_to":"53906"} +{"$label":"ACTS_IN","name":"Sgt. James R. 'Fatso' Judson","type":"Role","_key":"69794","_from":"5552","_to":"42595"} +{"$label":"ACTS_IN","name":"Willy Dunlop","type":"Role","_key":"69192","_from":"5552","_to":"42317"} +{"$label":"ACTS_IN","name":"Stanislaus Katczinsky","type":"Role","_key":"66676","_from":"5552","_to":"41199"} +{"$label":"ACTS_IN","name":"Trucker Cobb","type":"Role","_key":"61897","_from":"5552","_to":"38954"} +{"$label":"ACTS_IN","name":"Rolling Star","type":"Role","_key":"59879","_from":"5552","_to":"37818"} +{"$label":"ACTS_IN","name":"Sheriff Lyle Wallace aka Cottonmouth","type":"Role","_key":"54839","_from":"5552","_to":"35082"} +{"$label":"ACTS_IN","name":"Harry Booth","type":"Role","_key":"54761","_from":"5552","_to":"35046"} +{"$label":"ACTS_IN","name":"Santuro","type":"Role","_key":"35397","_from":"5552","_to":"24086"} +{"$label":"ACTS_IN","name":"Der Zenturio","type":"Role","_key":"21131","_from":"5552","_to":"15473"} +{"$label":"ACTS_IN","name":"Bischof","type":"Role","_key":"19170","_from":"5552","_to":"14169"} +{"$label":"ACTS_IN","name":"Old Man (USA)","type":"Role","_key":"16701","_from":"5552","_to":"12595"} +{"$label":"ACTS_IN","name":"Maj. Gen. Worden","type":"Role","_key":"14687","_from":"5552","_to":"11307"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"11983","_from":"5552","_to":"9392"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"9207","_from":"5552","_to":"7439"} +{"$label":"ACTS_IN","name":"Dutch Engstrom","type":"Role","_key":"6883","_from":"5552","_to":"5781"} +{"$label":"ACTS_IN","name":"Arnie Jordan","type":"Role","_key":"88784","_from":"5553","_to":"52605"} +{"$label":"ACTS_IN","name":"Pockets","type":"Role","_key":"69535","_from":"5553","_to":"42468"} +{"$label":"ACTS_IN","name":"Hoagy","type":"Role","_key":"67969","_from":"5553","_to":"41763"} +{"$label":"ACTS_IN","name":"Pvt. John Steele","type":"Role","_key":"52900","_from":"5553","_to":"34285"} +{"$label":"ACTS_IN","name":"Arthur Landauer","type":"Role","_key":"45485","_from":"5553","_to":"30136"} +{"$label":"ACTS_IN","name":"Ashley Norman","type":"Role","_key":"38752","_from":"5553","_to":"26184"} +{"$label":"ACTS_IN","name":"Gail Foster","type":"Role","_key":"104093","_from":"5554","_to":"61243"} +{"$label":"ACTS_IN","name":"Mona Fermoyle","type":"Role","_key":"24919","_from":"5554","_to":"18009"} +{"$label":"ACTS_IN","name":"Ann Lake","type":"Role","_key":"16834","_from":"5554","_to":"12675"} +{"$label":"ACTS_IN","name":"Ken McLaughlin","type":"Role","_key":"118391","_from":"5555","_to":"69599"} +{"$label":"ACTS_IN","name":"Peter Vincent","type":"Role","_key":"114854","_from":"5555","_to":"67657"} +{"$label":"ACTS_IN","name":"Himself - Hosted by (also archive footage)","type":"Role","_key":"111663","_from":"5555","_to":"65926"} +{"$label":"ACTS_IN","name":"D.J.Jr.","type":"Role","_key":"108568","_from":"5555","_to":"64161"} +{"$label":"ACTS_IN","name":"Benjamin Franklin Fischer","type":"Role","_key":"107880","_from":"5555","_to":"63712"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"90633","_from":"5555","_to":"53518"} +{"$label":"ACTS_IN","name":"Mr. Jelk","type":"Role","_key":"89275","_from":"5555","_to":"52856"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"72553","_from":"5555","_to":"43753"} +{"$label":"ACTS_IN","name":"Peter Vincent","type":"Role","_key":"72042","_from":"5555","_to":"43562"} +{"$label":"ACTS_IN","name":"Octavian","type":"Role","_key":"48229","_from":"5555","_to":"31682"} +{"$label":"ACTS_IN","name":"himself \/ Rex Brewster","type":"Role","_key":"41636","_from":"5555","_to":"27947"} +{"$label":"ACTS_IN","name":"Nick Evers","type":"Role","_key":"35433","_from":"5555","_to":"24107"} +{"$label":"ACTS_IN","name":"Agent Adam","type":"Role","_key":"32358","_from":"5555","_to":"22533"} +{"$label":"ACTS_IN","name":"Rex Brewster","type":"Role","_key":"29995","_from":"5555","_to":"21171"} +{"$label":"ACTS_IN","name":"Levi Matth\u00e4us","type":"Role","_key":"21258","_from":"5555","_to":"15553"} +{"$label":"ACTS_IN","name":"Joe Carraclough","type":"Role","_key":"19145","_from":"5555","_to":"14153"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"15103","_from":"5555","_to":"11596"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"14934","_from":"5555","_to":"11479"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"14922","_from":"5555","_to":"11474"} +{"$label":"ACTS_IN","name":"Samwise Gamgee","type":"Role","_key":"12574","_from":"5555","_to":"9836"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"10359","_from":"5555","_to":"8244"} +{"$label":"ACTS_IN","name":"Stella Purdy","type":"Role","_key":"115850","_from":"5556","_to":"68204"} +{"$label":"ACTS_IN","name":"Robin Gantner","type":"Role","_key":"105710","_from":"5556","_to":"62228"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"38753","_from":"5556","_to":"26184"} +{"$label":"ACTS_IN","name":"Bianca Jarin \" The Dragon Lady \"","type":"Role","_key":"18601","_from":"5556","_to":"13766"} +{"$label":"ACTS_IN","name":"Mrs. Collins","type":"Role","_key":"119749","_from":"5557","_to":"70316"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"107121","_from":"5557","_to":"63169"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"105134","_from":"5557","_to":"61868"} +{"$label":"ACTS_IN","name":"Lola Manners","type":"Role","_key":"100760","_from":"5557","_to":"59408"} +{"$label":"ACTS_IN","name":"Lena Gogan","type":"Role","_key":"67970","_from":"5557","_to":"41763"} +{"$label":"ACTS_IN","name":"Mrs. Forrest","type":"Role","_key":"45534","_from":"5557","_to":"30154"} +{"$label":"ACTS_IN","name":"Willa Harper","type":"Role","_key":"26053","_from":"5557","_to":"18722"} +{"$label":"ACTS_IN","name":"Auguste Van Pels","type":"Role","_key":"22031","_from":"5557","_to":"16074"} +{"$label":"ACTS_IN","name":"Frau aus dem Volk","type":"Role","_key":"21270","_from":"5557","_to":"15553"} +{"$label":"ACTS_IN","name":"Charlotte Haze","type":"Role","_key":"9451","_from":"5557","_to":"7628"} +{"$label":"ACTS_IN","name":"Richard Vickers (segment \"Something To Tide You Over\")","type":"Role","_key":"108477","_from":"5558","_to":"64123"} +{"$label":"ACTS_IN","name":"Mr. Dunbar","type":"Role","_key":"89184","_from":"5558","_to":"52820"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"88073","_from":"5558","_to":"52279"} +{"$label":"ACTS_IN","name":"Uncle Albert Adams","type":"Role","_key":"72754","_from":"5558","_to":"43830"} +{"$label":"ACTS_IN","name":"Father Jebedaiah Mayii","type":"Role","_key":"70304","_from":"5558","_to":"42835"} +{"$label":"ACTS_IN","name":"Harry Haber","type":"Role","_key":"70242","_from":"5558","_to":"42808"} +{"$label":"ACTS_IN","name":"Lucio Cinico","type":"Role","_key":"69195","_from":"5558","_to":"42318"} +{"$label":"ACTS_IN","name":"Dick Steele","type":"Role","_key":"63910","_from":"5558","_to":"39925"} +{"$label":"ACTS_IN","name":"Mr. Quincy Magoo","type":"Role","_key":"53841","_from":"5558","_to":"34683"} +{"$label":"ACTS_IN","name":"Ryan Harrison","type":"Role","_key":"53733","_from":"5558","_to":"34643"} +{"$label":"ACTS_IN","name":"Richard \" Dick \" Dix","type":"Role","_key":"46236","_from":"5558","_to":"30564"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30591","_from":"5558","_to":"21494"} +{"$label":"ACTS_IN","name":"President Harris","type":"Role","_key":"30575","_from":"5558","_to":"21490"} +{"$label":"ACTS_IN","name":"Pr\u00e4s. Baxter Harris","type":"Role","_key":"30569","_from":"5558","_to":"21488"} +{"$label":"ACTS_IN","name":"Commander John J. Adams","type":"Role","_key":"9812","_from":"5558","_to":"7862"} +{"$label":"ACTS_IN","name":"Dr. Rumack","type":"Role","_key":"9578","_from":"5558","_to":"7714"} +{"$label":"DIRECTED","_key":"6598","_from":"5578","_to":"5562"} +{"$label":"ACTS_IN","name":"Costantino's Mother","type":"Role","_key":"6597","_from":"5577","_to":"5562"} +{"$label":"ACTS_IN","name":"Eliseo","type":"Role","_key":"6596","_from":"5576","_to":"5562"} +{"$label":"ACTS_IN","name":"Sami","type":"Role","_key":"6595","_from":"5575","_to":"5562"} +{"$label":"ACTS_IN","name":"Lello","type":"Role","_key":"6594","_from":"5574","_to":"5562"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"6593","_from":"5573","_to":"5562"} +{"$label":"ACTS_IN","name":"Salvo","type":"Role","_key":"6592","_from":"5572","_to":"5562"} +{"$label":"ACTS_IN","name":"Nic","type":"Role","_key":"6591","_from":"5571","_to":"5562"} +{"$label":"ACTS_IN","name":"Woman in Car","type":"Role","_key":"6590","_from":"5570","_to":"5562"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"6589","_from":"5569","_to":"5562"} +{"$label":"ACTS_IN","name":"Ketty","type":"Role","_key":"6588","_from":"5568","_to":"5562"} +{"$label":"ACTS_IN","name":"Fermo","type":"Role","_key":"6587","_from":"5567","_to":"5562"} +{"$label":"ACTS_IN","name":"Grazia","type":"Role","_key":"6586","_from":"5566","_to":"5562"} +{"$label":"ACTS_IN","name":"Mimmo Barletta","type":"Role","_key":"6585","_from":"5565","_to":"5562"} +{"$label":"ACTS_IN","name":"Costantino","type":"Role","_key":"6584","_from":"5564","_to":"5562"} +{"$label":"ACTS_IN","name":"Rosalba Barletta","type":"Role","_key":"6582","_from":"5563","_to":"5562"} +{"$label":"ACTS_IN","name":"Agata","type":"Role","_key":"98443","_from":"5563","_to":"58003"} +{"$label":"ACTS_IN","name":"Andrea Negri","type":"Role","_key":"115388","_from":"5564","_to":"67943"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"98444","_from":"5564","_to":"58003"} +{"$label":"ACTS_IN","name":"Vito","type":"Role","_key":"91750","_from":"5564","_to":"54117"} +{"$label":"ACTS_IN","name":"Ermanno","type":"Role","_key":"66172","_from":"5564","_to":"40934"} +{"$label":"ACTS_IN","name":"Ines Silvestri","type":"Role","_key":"98446","_from":"5566","_to":"58003"} +{"$label":"ACTS_IN","name":"Dottore","type":"Role","_key":"98455","_from":"5574","_to":"58003"} +{"$label":"ACTS_IN","name":"\u00c4gyptischer Hauptmann","type":"Role","_key":"22871","_from":"5574","_to":"16575"} +{"$label":"ACTS_IN","name":"Romeo's mother","type":"Role","_key":"98456","_from":"5577","_to":"58003"} +{"$label":"DIRECTED","_key":"98458","_from":"5578","_to":"58003"} +{"$label":"DIRECTED","_key":"91740","_from":"5578","_to":"54117"} +{"$label":"DIRECTED","_key":"29341","_from":"5578","_to":"20840"} +{"$label":"ACTS_IN","name":"Dahlia","type":"Role","_key":"6626","_from":"5592","_to":"5579"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"6625","_from":"5591","_to":"5579"} +{"$label":"ACTS_IN","name":"Pandora","type":"Role","_key":"6624","_from":"5590","_to":"5579"} +{"$label":"ACTS_IN","name":"Olympia","type":"Role","_key":"6623","_from":"5589","_to":"5579"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"6622","_from":"5588","_to":"5579"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"6620","_from":"5587","_to":"5579"} +{"$label":"ACTS_IN","name":"Mr. Henson","type":"Role","_key":"6618","_from":"5586","_to":"5579"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"6617","_from":"5585","_to":"5579"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"6616","_from":"5584","_to":"5579"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"6611","_from":"5583","_to":"5579"} +{"$label":"ACTS_IN","name":"Mrs. Henson","type":"Role","_key":"6605","_from":"5582","_to":"5579"} +{"$label":"ACTS_IN","name":"Ma Ginger","type":"Role","_key":"6602","_from":"5581","_to":"5579"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"6601","_from":"5580","_to":"5579"} +{"$label":"ACTS_IN","name":"Ann Dobbs","type":"Role","_key":"101660","_from":"5580","_to":"59833"} +{"$label":"ACTS_IN","name":"Petra the Maid","type":"Role","_key":"71645","_from":"5580","_to":"43382"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"70996","_from":"5580","_to":"43123"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"61872","_from":"5580","_to":"38945"} +{"$label":"ACTS_IN","name":"Irene Jansen","type":"Role","_key":"108177","_from":"5581","_to":"63933"} +{"$label":"ACTS_IN","name":"Natalie Van Miter","type":"Role","_key":"93598","_from":"5581","_to":"55116"} +{"$label":"ACTS_IN","name":"Bond Rogers","type":"Role","_key":"90433","_from":"5581","_to":"53430"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89387","_from":"5581","_to":"52910"} +{"$label":"ACTS_IN","name":"Nora Temple","type":"Role","_key":"67306","_from":"5581","_to":"41491"} +{"$label":"ACTS_IN","name":"Eleanor","type":"Role","_key":"65363","_from":"5581","_to":"40550"} +{"$label":"ACTS_IN","name":"Schatze Page","type":"Role","_key":"62451","_from":"5581","_to":"39337"} +{"$label":"ACTS_IN","name":"Lucy Moore Hadley","type":"Role","_key":"40623","_from":"5581","_to":"27357"} +{"$label":"ACTS_IN","name":"Witch of the Waste","type":"Role","_key":"34955","_from":"5581","_to":"23864"} +{"$label":"ACTS_IN","name":"Lady Westholme","type":"Role","_key":"30736","_from":"5581","_to":"21548"} +{"$label":"ACTS_IN","name":"Mrs. Harriet Belinda Hubbard","type":"Role","_key":"29901","_from":"5581","_to":"21143"} +{"$label":"ACTS_IN","name":"Slim Chrysler","type":"Role","_key":"28156","_from":"5581","_to":"20177"} +{"$label":"ACTS_IN","name":"Marcia Sindell","type":"Role","_key":"15068","_from":"5581","_to":"11579"} +{"$label":"ACTS_IN","name":"Vivian Sternwood Rutledge","type":"Role","_key":"10825","_from":"5581","_to":"8581"} +{"$label":"ACTS_IN","name":"Hildy","type":"Role","_key":"114684","_from":"5582","_to":"67558"} +{"$label":"ACTS_IN","name":"Emily Jessup","type":"Role","_key":"70529","_from":"5582","_to":"42928"} +{"$label":"ACTS_IN","name":"Dr. Anne Caruthers","type":"Role","_key":"37818","_from":"5582","_to":"25635"} +{"$label":"ACTS_IN","name":"Hans Akkermans","type":"Role","_key":"52414","_from":"5583","_to":"34105"} +{"$label":"ACTS_IN","name":"Officer Garden","type":"Role","_key":"117502","_from":"5584","_to":"69087"} +{"$label":"ACTS_IN","name":"Police Liaison Officer","type":"Role","_key":"61555","_from":"5584","_to":"38803"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"54256","_from":"5586","_to":"34832"} +{"$label":"ACTS_IN","name":"Anky","type":"Role","_key":"59361","_from":"5587","_to":"37498"} +{"$label":"ACTS_IN","name":"Melanie 1","type":"Role","_key":"57431","_from":"5587","_to":"36404"} +{"$label":"ACTS_IN","name":"Ivan or Psolt\u00f5","type":"Role","_key":"6630","_from":"5597","_to":"5593"} +{"$label":"ACTS_IN","name":"Veikko","type":"Role","_key":"6629","_from":"5596","_to":"5593"} +{"$label":"ACTS_IN","name":"Anni","type":"Role","_key":"6628","_from":"5595","_to":"5593"} +{"$label":"DIRECTED","_key":"6627","_from":"5594","_to":"5593"} +{"$label":"DIRECTED","_key":"29620","_from":"5594","_to":"20957"} +{"$label":"DIRECTED","_key":"17689","_from":"5594","_to":"13201"} +{"$label":"ACTS_IN","name":"Elen Skum","type":"Role","_key":"93500","_from":"5595","_to":"55052"} +{"$label":"ACTS_IN","name":"Luca","type":"Role","_key":"6638","_from":"5606","_to":"5598"} +{"$label":"ACTS_IN","name":"Dr. K\u00f6nig","type":"Role","_key":"6637","_from":"5605","_to":"5598"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"6636","_from":"5604","_to":"5598"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"6635","_from":"5603","_to":"5598"} +{"$label":"ACTS_IN","name":"Dr. Sacha Tarkova","type":"Role","_key":"6634","_from":"5602","_to":"5598"} +{"$label":"ACTS_IN","name":"Alex Buler","type":"Role","_key":"6633","_from":"5601","_to":"5598"} +{"$label":"DIRECTED","_key":"6632","_from":"5600","_to":"5598"} +{"$label":"DIRECTED","_key":"6631","_from":"5599","_to":"5598"} +{"$label":"ACTS_IN","name":"Cop at Carjacking","type":"Role","_key":"6665","_from":"5629","_to":"5608"} +{"$label":"ACTS_IN","name":"Subway Guitarist","type":"Role","_key":"6664","_from":"5628","_to":"5608"} +{"$label":"ACTS_IN","name":"Bone Saw McGraw","type":"Role","_key":"6662","_from":"5627","_to":"5608"} +{"$label":"ACTS_IN","name":"Houseman","type":"Role","_key":"6661","_from":"5626","_to":"5608"} +{"$label":"ACTS_IN","name":"Hoffman","type":"Role","_key":"6660","_from":"5625","_to":"5608"} +{"$label":"ACTS_IN","name":"Tugboat Captain","type":"Role","_key":"6659","_from":"5624","_to":"5608"} +{"$label":"ACTS_IN","name":"Punk Rock Girl","type":"Role","_key":"6658","_from":"5623","_to":"5608"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"6657","_from":"5622","_to":"5608"} +{"$label":"ACTS_IN","name":"Miss Brant","type":"Role","_key":"6656","_from":"5621","_to":"5608"} +{"$label":"ACTS_IN","name":"Henry Balkan","type":"Role","_key":"6655","_from":"5620","_to":"5608"} +{"$label":"ACTS_IN","name":"Carjacker","type":"Role","_key":"6653","_from":"5619","_to":"5608"} +{"$label":"ACTS_IN","name":"Dr. Mendell Stromm","type":"Role","_key":"6652","_from":"5618","_to":"5608"} +{"$label":"ACTS_IN","name":"General Slocum","type":"Role","_key":"6651","_from":"5617","_to":"5608"} +{"$label":"ACTS_IN","name":"Ring Announcer","type":"Role","_key":"6650","_from":"5616","_to":"5608"} +{"$label":"ACTS_IN","name":"Maximilian Fargas","type":"Role","_key":"6648","_from":"5615","_to":"5608"} +{"$label":"ACTS_IN","name":"May Parker","type":"Role","_key":"6647","_from":"5614","_to":"5608"} +{"$label":"ACTS_IN","name":"Flash Thompson","type":"Role","_key":"6646","_from":"5613","_to":"5608"} +{"$label":"ACTS_IN","name":"J. Jonah Jameson","type":"Role","_key":"6645","_from":"5612","_to":"5608"} +{"$label":"ACTS_IN","name":"Harry Osborn","type":"Role","_key":"6644","_from":"5611","_to":"5608"} +{"$label":"ACTS_IN","name":"Ben Parker","type":"Role","_key":"6643","_from":"5610","_to":"5608"} +{"$label":"DIRECTED","_key":"6639","_from":"5609","_to":"5608"} +{"$label":"DIRECTED","_key":"110290","_from":"5609","_to":"65177"} +{"$label":"DIRECTED","_key":"88049","_from":"5609","_to":"52269"} +{"$label":"DIRECTED","_key":"62960","_from":"5609","_to":"39536"} +{"$label":"DIRECTED","_key":"61801","_from":"5609","_to":"38904"} +{"$label":"DIRECTED","_key":"54655","_from":"5609","_to":"35004"} +{"$label":"DIRECTED","_key":"18997","_from":"5609","_to":"14035"} +{"$label":"DIRECTED","_key":"17825","_from":"5609","_to":"13278"} +{"$label":"DIRECTED","_key":"8982","_from":"5609","_to":"7287"} +{"$label":"DIRECTED","_key":"8972","_from":"5609","_to":"7279"} +{"$label":"DIRECTED","_key":"8965","_from":"5609","_to":"7274"} +{"$label":"DIRECTED","_key":"6687","_from":"5609","_to":"5637"} +{"$label":"DIRECTED","_key":"6666","_from":"5609","_to":"5630"} +{"$label":"ACTS_IN","name":"Bobby Terry","type":"Role","_key":"95000","_from":"5609","_to":"55928"} +{"$label":"ACTS_IN","name":"Hitchhiking Fisherman","type":"Role","_key":"8971","_from":"5609","_to":"7274"} +{"$label":"ACTS_IN","name":"Wing Commander Roy Grant","type":"Role","_key":"106338","_from":"5610","_to":"62650"} +{"$label":"ACTS_IN","name":"Alex Terson","type":"Role","_key":"102949","_from":"5610","_to":"60558"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"89777","_from":"5610","_to":"53135"} +{"$label":"ACTS_IN","name":"J. Higgins","type":"Role","_key":"73018","_from":"5610","_to":"43941"} +{"$label":"ACTS_IN","name":"Pete Jordan","type":"Role","_key":"34473","_from":"5610","_to":"23608"} +{"$label":"ACTS_IN","name":"Michael Courtland","type":"Role","_key":"33928","_from":"5610","_to":"23362"} +{"$label":"ACTS_IN","name":"David Frazer","type":"Role","_key":"24812","_from":"5610","_to":"17944"} +{"$label":"ACTS_IN","name":"Ben Parker","type":"Role","_key":"6698","_from":"5610","_to":"5637"} +{"$label":"ACTS_IN","name":"Ben Parker","type":"Role","_key":"6677","_from":"5610","_to":"5630"} +{"$label":"ACTS_IN","name":"Chris Campbell","type":"Role","_key":"108163","_from":"5611","_to":"63922"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"103966","_from":"5611","_to":"61156"} +{"$label":"ACTS_IN","name":"Captain Prince","type":"Role","_key":"97534","_from":"5611","_to":"57426"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"95166","_from":"5611","_to":"55998"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"95094","_from":"5611","_to":"55969"} +{"$label":"ACTS_IN","name":"Jake Huard","type":"Role","_key":"93667","_from":"5611","_to":"55142"} +{"$label":"ACTS_IN","name":"Saul Silver","type":"Role","_key":"61541","_from":"5611","_to":"38803"} +{"$label":"ACTS_IN","name":"Scott Smith","type":"Role","_key":"61186","_from":"5611","_to":"38659"} +{"$label":"ACTS_IN","name":"Blaine Rawlings","type":"Role","_key":"55390","_from":"5611","_to":"35310"} +{"$label":"ACTS_IN","name":"Tristan","type":"Role","_key":"52244","_from":"5611","_to":"34026"} +{"$label":"ACTS_IN","name":"Sergeant Carnelli","type":"Role","_key":"45503","_from":"5611","_to":"30141"} +{"$label":"ACTS_IN","name":"James Dean","type":"Role","_key":"18620","_from":"5611","_to":"13782"} +{"$label":"ACTS_IN","name":"New Goblin \/ Harry Osborn","type":"Role","_key":"6702","_from":"5611","_to":"5637"} +{"$label":"ACTS_IN","name":"Harry Osborn","type":"Role","_key":"6686","_from":"5611","_to":"5630"} +{"$label":"DIRECTED","_key":"103970","_from":"5611","_to":"61156"} +{"$label":"ACTS_IN","name":"Mr. Wroblewski","type":"Role","_key":"121699","_from":"5612","_to":"71494"} +{"$label":"ACTS_IN","name":"Oswald Klaven","type":"Role","_key":"109432","_from":"5612","_to":"64647"} +{"$label":"ACTS_IN","name":"Vacaro","type":"Role","_key":"106958","_from":"5612","_to":"63058"} +{"$label":"ACTS_IN","name":"Sergeant Mitchell","type":"Role","_key":"106448","_from":"5612","_to":"62710"} +{"$label":"ACTS_IN","name":"Stu Kopenhafer","type":"Role","_key":"100687","_from":"5612","_to":"59369"} +{"$label":"ACTS_IN","name":"James McLaughlin","type":"Role","_key":"94664","_from":"5612","_to":"55765"} +{"$label":"ACTS_IN","name":"Agent Richards","type":"Role","_key":"47480","_from":"5612","_to":"31280"} +{"$label":"ACTS_IN","name":"Mac MacGuff","type":"Role","_key":"46439","_from":"5612","_to":"30676"} +{"$label":"ACTS_IN","name":"Ted Slocum","type":"Role","_key":"41491","_from":"5612","_to":"27879"} +{"$label":"ACTS_IN","name":"Garth Pancake","type":"Role","_key":"37626","_from":"5612","_to":"25505"} +{"$label":"ACTS_IN","name":"Lee Mayer","type":"Role","_key":"36017","_from":"5612","_to":"24454"} +{"$label":"ACTS_IN","name":"CIA Superior","type":"Role","_key":"35022","_from":"5612","_to":"23900"} +{"$label":"ACTS_IN","name":"FBI Agent T. I. Witherspoon","type":"Role","_key":"34244","_from":"5612","_to":"23506"} +{"$label":"ACTS_IN","name":"Sheriff Pearl Johnson","type":"Role","_key":"17820","_from":"5612","_to":"13278"} +{"$label":"ACTS_IN","name":"Buffalo Bill Cody","type":"Role","_key":"17600","_from":"5612","_to":"13140"} +{"$label":"ACTS_IN","name":"J. Jonah Jameson","type":"Role","_key":"6690","_from":"5612","_to":"5637"} +{"$label":"ACTS_IN","name":"J. Jonah Jameson","type":"Role","_key":"6670","_from":"5612","_to":"5630"} +{"$label":"ACTS_IN","name":"Matt Cooper","type":"Role","_key":"98758","_from":"5613","_to":"58198"} +{"$label":"ACTS_IN","name":"LT. Sean Macklin","type":"Role","_key":"98192","_from":"5613","_to":"57841"} +{"$label":"ACTS_IN","name":"Flash Thompson","type":"Role","_key":"6713","_from":"5613","_to":"5637"} +{"$label":"ACTS_IN","name":"Valerie Sors","type":"Role","_key":"113910","_from":"5614","_to":"67089"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"111517","_from":"5614","_to":"65842"} +{"$label":"ACTS_IN","name":"Nanette","type":"Role","_key":"47564","_from":"5614","_to":"31338"} +{"$label":"ACTS_IN","name":"Annie's Granny","type":"Role","_key":"17819","_from":"5614","_to":"13278"} +{"$label":"ACTS_IN","name":"May Parker","type":"Role","_key":"6691","_from":"5614","_to":"5637"} +{"$label":"ACTS_IN","name":"May Parker","type":"Role","_key":"6669","_from":"5614","_to":"5630"} +{"$label":"ACTS_IN","name":"Stanley Kaufman","type":"Role","_key":"15978","_from":"5615","_to":"12149"} +{"$label":"ACTS_IN","name":"Robert Van Helsing","type":"Role","_key":"107620","_from":"5616","_to":"63525"} +{"$label":"ACTS_IN","name":"Carl Greig","type":"Role","_key":"103132","_from":"5616","_to":"60663"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"103119","_from":"5616","_to":"60654"} +{"$label":"ACTS_IN","name":"Ray Tanner","type":"Role","_key":"102463","_from":"5616","_to":"60293"} +{"$label":"ACTS_IN","name":"Virgil","type":"Role","_key":"102428","_from":"5616","_to":"60274"} +{"$label":"ACTS_IN","name":"Dr. Ivan Hood","type":"Role","_key":"102424","_from":"5616","_to":"60271"} +{"$label":"ACTS_IN","name":"Jack Forrest","type":"Role","_key":"99235","_from":"5616","_to":"58479"} +{"$label":"ACTS_IN","name":"Gordon Moore","type":"Role","_key":"91437","_from":"5616","_to":"53928"} +{"$label":"ACTS_IN","name":"Coach Boomer","type":"Role","_key":"69990","_from":"5616","_to":"42690"} +{"$label":"ACTS_IN","name":"Fugax","type":"Role","_key":"57836","_from":"5616","_to":"36606"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"55904","_from":"5616","_to":"35560"} +{"$label":"ACTS_IN","name":"Final Shemp","type":"Role","_key":"54654","_from":"5616","_to":"35004"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30163","_from":"5616","_to":"21251"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"18998","_from":"5616","_to":"14035"} +{"$label":"ACTS_IN","name":"William Cole","type":"Role","_key":"18738","_from":"5616","_to":"13862"} +{"$label":"ACTS_IN","name":"Bruce Campbell","type":"Role","_key":"16997","_from":"5616","_to":"12754"} +{"$label":"ACTS_IN","name":"Ash","type":"Role","_key":"8983","_from":"5616","_to":"7287"} +{"$label":"ACTS_IN","name":"Ashley 'Ash' J. Williams","type":"Role","_key":"8973","_from":"5616","_to":"7279"} +{"$label":"ACTS_IN","name":"Ashley 'Ash' J. Williams","type":"Role","_key":"8966","_from":"5616","_to":"7274"} +{"$label":"ACTS_IN","name":"Ma\u00eetre d","type":"Role","_key":"6699","_from":"5616","_to":"5637"} +{"$label":"ACTS_IN","name":"Snooty Usher","type":"Role","_key":"6680","_from":"5616","_to":"5630"} +{"$label":"DIRECTED","_key":"18737","_from":"5616","_to":"13862"} +{"$label":"DIRECTED","_key":"16996","_from":"5616","_to":"12754"} +{"$label":"ACTS_IN","name":"Bill Weller","type":"Role","_key":"114451","_from":"5617","_to":"67420"} +{"$label":"ACTS_IN","name":"Bob Riley","type":"Role","_key":"30409","_from":"5617","_to":"21378"} +{"$label":"ACTS_IN","name":"Edwin S. Simon, NBS News Anchor","type":"Role","_key":"15456","_from":"5617","_to":"11805"} +{"$label":"ACTS_IN","name":"Dr. Archer Scobee","type":"Role","_key":"11895","_from":"5617","_to":"9323"} +{"$label":"ACTS_IN","name":"Guard Papajohn","type":"Role","_key":"52927","_from":"5619","_to":"34291"} +{"$label":"ACTS_IN","name":"WitSec Agent Schiffer","type":"Role","_key":"52728","_from":"5619","_to":"34221"} +{"$label":"ACTS_IN","name":"Dennis Carradine \/ Carjacker","type":"Role","_key":"6712","_from":"5619","_to":"5637"} +{"$label":"ACTS_IN","name":"Boris Karloff","type":"Role","_key":"25145","_from":"5620","_to":"18160"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"104157","_from":"5621","_to":"61278"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"99297","_from":"5621","_to":"58511"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"93554","_from":"5621","_to":"55088"} +{"$label":"ACTS_IN","name":"Caroline Swann","type":"Role","_key":"93155","_from":"5621","_to":"54901"} +{"$label":"ACTS_IN","name":"Debi","type":"Role","_key":"91499","_from":"5621","_to":"53941"} +{"$label":"ACTS_IN","name":"Janet Cantrell","type":"Role","_key":"71311","_from":"5621","_to":"43258"} +{"$label":"ACTS_IN","name":"Gina Morrison","type":"Role","_key":"68848","_from":"5621","_to":"42177"} +{"$label":"ACTS_IN","name":"Laura Bush","type":"Role","_key":"63827","_from":"5621","_to":"39901"} +{"$label":"ACTS_IN","name":"Miri","type":"Role","_key":"62773","_from":"5621","_to":"39457"} +{"$label":"ACTS_IN","name":"Starla Grant","type":"Role","_key":"52185","_from":"5621","_to":"34004"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"49485","_from":"5621","_to":"32398"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"45322","_from":"5621","_to":"30057"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"37156","_from":"5621","_to":"25172"} +{"$label":"ACTS_IN","name":"Marcela Howard","type":"Role","_key":"31900","_from":"5621","_to":"22252"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"7661","_from":"5621","_to":"6359"} +{"$label":"ACTS_IN","name":"Miss Brant","type":"Role","_key":"6700","_from":"5621","_to":"5637"} +{"$label":"ACTS_IN","name":"Miss Brant","type":"Role","_key":"6679","_from":"5621","_to":"5630"} +{"$label":"ACTS_IN","name":"Goldmoon (voice)","type":"Role","_key":"110947","_from":"5623","_to":"65533"} +{"$label":"ACTS_IN","name":"Aspen","type":"Role","_key":"61682","_from":"5623","_to":"38856"} +{"$label":"ACTS_IN","name":"Mary Jensen","type":"Role","_key":"51753","_from":"5623","_to":"33768"} +{"$label":"ACTS_IN","name":"Lt. Rizzo","type":"Role","_key":"50478","_from":"5624","_to":"32971"} +{"$label":"ACTS_IN","name":"Mark Butler","type":"Role","_key":"50465","_from":"5624","_to":"32963"} +{"$label":"ACTS_IN","name":"Harold Monroe","type":"Role","_key":"50457","_from":"5624","_to":"32957"} +{"$label":"ACTS_IN","name":"Dr. Coffee","type":"Role","_key":"111274","_from":"5625","_to":"65712"} +{"$label":"ACTS_IN","name":"Pac Man","type":"Role","_key":"90036","_from":"5625","_to":"53256"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"18740","_from":"5625","_to":"13862"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"17100","_from":"5625","_to":"12813"} +{"$label":"ACTS_IN","name":"Wing","type":"Role","_key":"16999","_from":"5625","_to":"12754"} +{"$label":"ACTS_IN","name":"Cowardly Warrior\/Second Supportive Villager\/S-Mart Clerk","type":"Role","_key":"8992","_from":"5625","_to":"7287"} +{"$label":"ACTS_IN","name":"Possessed Henrietta","type":"Role","_key":"8981","_from":"5625","_to":"7279"} +{"$label":"ACTS_IN","name":"Hoffman","type":"Role","_key":"6701","_from":"5625","_to":"5637"} +{"$label":"ACTS_IN","name":"Hoffman","type":"Role","_key":"6678","_from":"5625","_to":"5630"} +{"$label":"ACTS_IN","name":"Houseman","type":"Role","_key":"6709","_from":"5626","_to":"5637"} +{"$label":"ACTS_IN","name":"Thug (voice)","type":"Role","_key":"92204","_from":"5627","_to":"54410"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"106885","_from":"5628","_to":"63011"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"17879","_from":"5628","_to":"13303"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"6683","_from":"5636","_to":"5630"} +{"$label":"ACTS_IN","name":"Dr. Davis","type":"Role","_key":"6681","_from":"5635","_to":"5630"} +{"$label":"ACTS_IN","name":"Mr. Aziz","type":"Role","_key":"6675","_from":"5634","_to":"5630"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"6674","_from":"5633","_to":"5630"} +{"$label":"ACTS_IN","name":"Dr. Curt Connors","type":"Role","_key":"6673","_from":"5632","_to":"5630"} +{"$label":"ACTS_IN","name":"John Jameson","type":"Role","_key":"6672","_from":"5631","_to":"5630"} +{"$label":"ACTS_IN","name":"Gary Dexter","type":"Role","_key":"98579","_from":"5631","_to":"58095"} +{"$label":"ACTS_IN","name":"John Jameson","type":"Role","_key":"6693","_from":"5631","_to":"5637"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"107812","_from":"5632","_to":"63672"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"101208","_from":"5632","_to":"59615"} +{"$label":"ACTS_IN","name":"Robert McNamara","type":"Role","_key":"73083","_from":"5632","_to":"43970"} +{"$label":"ACTS_IN","name":"Bill Maplewood","type":"Role","_key":"65042","_from":"5632","_to":"40416"} +{"$label":"ACTS_IN","name":"Bill Robinson","type":"Role","_key":"62397","_from":"5632","_to":"39310"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"57006","_from":"5632","_to":"36167"} +{"$label":"ACTS_IN","name":"Martin Geller","type":"Role","_key":"56602","_from":"5632","_to":"35958"} +{"$label":"ACTS_IN","name":"Philip Blackburn","type":"Role","_key":"51838","_from":"5632","_to":"33826"} +{"$label":"ACTS_IN","name":"Owen","type":"Role","_key":"22165","_from":"5632","_to":"16161"} +{"$label":"ACTS_IN","name":"Ollie McArthur","type":"Role","_key":"17786","_from":"5632","_to":"13263"} +{"$label":"ACTS_IN","name":"Dr. Curt Connors","type":"Role","_key":"6696","_from":"5632","_to":"5637"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"105382","_from":"5633","_to":"61998"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"94846","_from":"5633","_to":"55853"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"58095","_from":"5633","_to":"36758"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"17248","_from":"5633","_to":"12920"} +{"$label":"ACTS_IN","name":"Bob Spaulding","type":"Role","_key":"115527","_from":"5634","_to":"68009"} +{"$label":"ACTS_IN","name":"Dr. Prashar","type":"Role","_key":"91602","_from":"5634","_to":"54001"} +{"$label":"ACTS_IN","name":"Commander Zhao","type":"Role","_key":"61625","_from":"5634","_to":"38834"} +{"$label":"ACTS_IN","name":"Dr. Anil Chatterjee","type":"Role","_key":"58580","_from":"5634","_to":"37011"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"88352","_from":"5635","_to":"52386"} +{"$label":"ACTS_IN","name":"Galaxie Executive","type":"Role","_key":"55660","_from":"5635","_to":"35434"} +{"$label":"ACTS_IN","name":"Richard Pierce","type":"Role","_key":"13311","_from":"5635","_to":"10364"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"6708","_from":"5636","_to":"5637"} +{"$label":"ACTS_IN","name":"Jennifer Dugan","type":"Role","_key":"6716","_from":"5645","_to":"5637"} +{"$label":"ACTS_IN","name":"Anchorman","type":"Role","_key":"6715","_from":"5644","_to":"5637"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"6714","_from":"5643","_to":"5637"} +{"$label":"ACTS_IN","name":"Man in Times Square","type":"Role","_key":"6711","_from":"5642","_to":"5637"} +{"$label":"ACTS_IN","name":"Mrs. Stacy","type":"Role","_key":"6710","_from":"5641","_to":"5637"} +{"$label":"ACTS_IN","name":"Venom \/ Eddie Brock","type":"Role","_key":"6704","_from":"5640","_to":"5637"} +{"$label":"ACTS_IN","name":"Sandman \/ Flint Marko","type":"Role","_key":"6703","_from":"5639","_to":"5637"} +{"$label":"ACTS_IN","name":"Mrs. Marko","type":"Role","_key":"6695","_from":"5638","_to":"5637"} +{"$label":"ACTS_IN","name":"Catharine Petersen","type":"Role","_key":"119791","_from":"5638","_to":"70340"} +{"$label":"ACTS_IN","name":"Sarah Graham","type":"Role","_key":"108354","_from":"5638","_to":"64047"} +{"$label":"ACTS_IN","name":"Lina Moebius","type":"Role","_key":"29423","_from":"5638","_to":"20874"} +{"$label":"ACTS_IN","name":"Gabriela","type":"Role","_key":"20164","_from":"5638","_to":"14795"} +{"$label":"ACTS_IN","name":"Sandra Van Ryan","type":"Role","_key":"7326","_from":"5638","_to":"6106"} +{"$label":"ACTS_IN","name":"Johnny Whitefeather","type":"Role","_key":"120998","_from":"5639","_to":"71073"} +{"$label":"ACTS_IN","name":"Chuck Wetherhold","type":"Role","_key":"91875","_from":"5639","_to":"54202"} +{"$label":"ACTS_IN","name":"Lyle van de Groot","type":"Role","_key":"64454","_from":"5639","_to":"40161"} +{"$label":"ACTS_IN","name":"Brooks the Crow","type":"Role","_key":"58984","_from":"5639","_to":"37240"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"55463","_from":"5639","_to":"35351"} +{"$label":"ACTS_IN","name":"Dwayne (voice)","type":"Role","_key":"47103","_from":"5639","_to":"31057"} +{"$label":"ACTS_IN","name":"Clay (voice) (uncredited)","type":"Role","_key":"102130","_from":"5640","_to":"60066"} +{"$label":"ACTS_IN","name":"Pete Monash","type":"Role","_key":"94702","_from":"5640","_to":"55789"} +{"$label":"ACTS_IN","name":"Tommy Donegal","type":"Role","_key":"72180","_from":"5640","_to":"43624"} +{"$label":"ACTS_IN","name":"Carter Duryea","type":"Role","_key":"16409","_from":"5640","_to":"12420"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"99638","_from":"5641","_to":"58740"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"56708","_from":"5641","_to":"36013"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"113798","_from":"5642","_to":"67046"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"17161","_from":"5642","_to":"12853"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"16715","_from":"5642","_to":"12608"} +{"$label":"ACTS_IN","name":"Minister of Spring","type":"Role","_key":"93213","_from":"5643","_to":"54917"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"6725","_from":"5654","_to":"5646"} +{"$label":"ACTS_IN","name":"Paquita","type":"Role","_key":"6724","_from":"5653","_to":"5646"} +{"$label":"ACTS_IN","name":"Edith Potter","type":"Role","_key":"6723","_from":"5652","_to":"5646"} +{"$label":"ACTS_IN","name":"Miss Robey","type":"Role","_key":"6722","_from":"5651","_to":"5646"} +{"$label":"ACTS_IN","name":"Caroline Lamphere","type":"Role","_key":"6721","_from":"5650","_to":"5646"} +{"$label":"ACTS_IN","name":"Mark Lamphere","type":"Role","_key":"6720","_from":"5649","_to":"5646"} +{"$label":"ACTS_IN","name":"Celia Lamphere","type":"Role","_key":"6719","_from":"5648","_to":"5646"} +{"$label":"DIRECTED","_key":"6718","_from":"5647","_to":"5646"} +{"$label":"ACTS_IN","name":"Alice Reed","type":"Role","_key":"111241","_from":"5648","_to":"65692"} +{"$label":"ACTS_IN","name":"Katharine 'Kitty' March","type":"Role","_key":"111000","_from":"5648","_to":"65563"} +{"$label":"ACTS_IN","name":"Madame Blanc","type":"Role","_key":"72693","_from":"5648","_to":"43802"} +{"$label":"ACTS_IN","name":"Amelie Ducotel","type":"Role","_key":"40965","_from":"5648","_to":"27561"} +{"$label":"ACTS_IN","name":"Mrs. Graham","type":"Role","_key":"35608","_from":"5648","_to":"24197"} +{"$label":"ACTS_IN","name":"The Uncle","type":"Role","_key":"108952","_from":"5649","_to":"64386"} +{"$label":"ACTS_IN","name":"Ruxton Towers Reformatory governor","type":"Role","_key":"107102","_from":"5649","_to":"63151"} +{"$label":"ACTS_IN","name":"Maxwell Frere","type":"Role","_key":"95332","_from":"5649","_to":"56079"} +{"$label":"ACTS_IN","name":"Dr. B.N. Wallis","type":"Role","_key":"93490","_from":"5649","_to":"55047"} +{"$label":"ACTS_IN","name":"Danvers","type":"Role","_key":"25086","_from":"5649","_to":"18122"} +{"$label":"ACTS_IN","name":"Gen. O'Connor","type":"Role","_key":"17173","_from":"5649","_to":"12865"} +{"$label":"ACTS_IN","name":"Gilbert Redman","type":"Role","_key":"11203","_from":"5649","_to":"8861"} +{"$label":"ACTS_IN","name":"Mrs. Brown","type":"Role","_key":"113449","_from":"5650","_to":"66838"} +{"$label":"ACTS_IN","name":"Anna Davis","type":"Role","_key":"112425","_from":"5650","_to":"66378"} +{"$label":"ACTS_IN","name":"Crazy Mary","type":"Role","_key":"100997","_from":"5650","_to":"59522"} +{"$label":"ACTS_IN","name":"Mrs. Catherine Tremayne","type":"Role","_key":"16804","_from":"5651","_to":"12660"} +{"$label":"ACTS_IN","name":"Ellen O'Hara","type":"Role","_key":"9048","_from":"5651","_to":"7317"} +{"$label":"ACTS_IN","name":"Detective Weiss","type":"Role","_key":"6737","_from":"5660","_to":"5655"} +{"$label":"ACTS_IN","name":"Scavenger","type":"Role","_key":"6736","_from":"5659","_to":"5655"} +{"$label":"ACTS_IN","name":"Balthazar","type":"Role","_key":"6733","_from":"5658","_to":"5655"} +{"$label":"ACTS_IN","name":"Beeman","type":"Role","_key":"6731","_from":"5657","_to":"5655"} +{"$label":"DIRECTED","_key":"6726","_from":"5656","_to":"5655"} +{"$label":"DIRECTED","_key":"43611","_from":"5656","_to":"29124"} +{"$label":"ACTS_IN","name":"Vin","type":"Role","_key":"109721","_from":"5657","_to":"64795"} +{"$label":"ACTS_IN","name":"Roboter","type":"Role","_key":"18574","_from":"5657","_to":"13738"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"95089","_from":"5658","_to":"55966"} +{"$label":"ACTS_IN","name":"Isidor","type":"Role","_key":"119697","_from":"5660","_to":"70302"} +{"$label":"ACTS_IN","name":"Lt. Perez","type":"Role","_key":"96832","_from":"5660","_to":"56940"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"61245","_from":"5660","_to":"38677"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"40169","_from":"5660","_to":"27113"} +{"$label":"ACTS_IN","name":"David Torres","type":"Role","_key":"28263","_from":"5660","_to":"20232"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"6750","_from":"5669","_to":"5661"} +{"$label":"ACTS_IN","name":"Harry Ellis","type":"Role","_key":"6749","_from":"5668","_to":"5661"} +{"$label":"ACTS_IN","name":"Argyle","type":"Role","_key":"6748","_from":"5667","_to":"5661"} +{"$label":"ACTS_IN","name":"Richard Thornburg","type":"Role","_key":"6747","_from":"5666","_to":"5661"} +{"$label":"ACTS_IN","name":"Deputy Police Chief Dwayne T. Robinson","type":"Role","_key":"6746","_from":"5665","_to":"5661"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"6745","_from":"5664","_to":"5661"} +{"$label":"ACTS_IN","name":"Holly Gennero McClane","type":"Role","_key":"6744","_from":"5663","_to":"5661"} +{"$label":"ACTS_IN","name":"Sgt. Al Powell","type":"Role","_key":"6743","_from":"5662","_to":"5661"} +{"$label":"ACTS_IN","name":"Det. David Sutton","type":"Role","_key":"45282","_from":"5662","_to":"30040"} +{"$label":"ACTS_IN","name":"Sgt. Al Powell","type":"Role","_key":"13922","_from":"5662","_to":"10802"} +{"$label":"ACTS_IN","name":"Latrelle Williamson","type":"Role","_key":"118678","_from":"5663","_to":"69773"} +{"$label":"ACTS_IN","name":"Susan Norton","type":"Role","_key":"69239","_from":"5663","_to":"42339"} +{"$label":"ACTS_IN","name":"Barbara Sabich","type":"Role","_key":"67833","_from":"5663","_to":"41688"} +{"$label":"ACTS_IN","name":"Polly Chalmers","type":"Role","_key":"64870","_from":"5663","_to":"40346"} +{"$label":"ACTS_IN","name":"Holly McClane","type":"Role","_key":"13917","_from":"5663","_to":"10802"} +{"$label":"ACTS_IN","name":"Max Beissart","type":"Role","_key":"63486","_from":"5664","_to":"39758"} +{"$label":"ACTS_IN","name":"Sheriff Halderman","type":"Role","_key":"59421","_from":"5665","_to":"37532"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"34667","_from":"5665","_to":"23722"} +{"$label":"ACTS_IN","name":"Richard Vernon","type":"Role","_key":"18383","_from":"5665","_to":"13632"} +{"$label":"ACTS_IN","name":"Bagwell","type":"Role","_key":"15127","_from":"5665","_to":"11604"} +{"$label":"ACTS_IN","name":"Clarence Beeks","type":"Role","_key":"14379","_from":"5665","_to":"11121"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"121688","_from":"5666","_to":"71490"} +{"$label":"ACTS_IN","name":"Prof. Jerry Hathaway","type":"Role","_key":"99843","_from":"5666","_to":"58889"} +{"$label":"ACTS_IN","name":"Dr. Ira Gold","type":"Role","_key":"58997","_from":"5666","_to":"37245"} +{"$label":"ACTS_IN","name":"Bob Gminski","type":"Role","_key":"58328","_from":"5666","_to":"36873"} +{"$label":"ACTS_IN","name":"Dr. Noah Faulkner","type":"Role","_key":"54522","_from":"5666","_to":"34938"} +{"$label":"ACTS_IN","name":"Nathan Randall","type":"Role","_key":"53976","_from":"5666","_to":"34720"} +{"$label":"ACTS_IN","name":"Tod Hackett","type":"Role","_key":"35981","_from":"5666","_to":"24437"} +{"$label":"ACTS_IN","name":"Clovis Michael Poplin","type":"Role","_key":"35973","_from":"5666","_to":"24432"} +{"$label":"ACTS_IN","name":"Walter Peck","type":"Role","_key":"7368","_from":"5666","_to":"6141"} +{"$label":"ACTS_IN","name":"Winchester Rep","type":"Role","_key":"7309","_from":"5666","_to":"6096"} +{"$label":"DIRECTED","_key":"106417","_from":"5668","_to":"62695"} +{"$label":"DIRECTED","_key":"100201","_from":"5668","_to":"59099"} +{"$label":"DIRECTED","_key":"53030","_from":"5668","_to":"34336"} +{"$label":"ACTS_IN","name":"City Councilman Arthur Reeves","type":"Role","_key":"102471","_from":"5668","_to":"60297"} +{"$label":"ACTS_IN","name":"Professor Solomon","type":"Role","_key":"88700","_from":"5668","_to":"52559"} +{"$label":"ACTS_IN","name":"Jack Carney","type":"Role","_key":"37050","_from":"5668","_to":"25115"} +{"$label":"ACTS_IN","name":"Niles Pender","type":"Role","_key":"22198","_from":"5668","_to":"16174"} +{"$label":"ACTS_IN","name":"Hank Willford","type":"Role","_key":"18854","_from":"5668","_to":"13919"} +{"$label":"ACTS_IN","name":"Klete","type":"Role","_key":"99256","_from":"5669","_to":"58489"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"19041","_from":"5669","_to":"14055"} +{"$label":"ACTS_IN","name":"Cadet Lumbreiser","type":"Role","_key":"6769","_from":"5682","_to":"5670"} +{"$label":"ACTS_IN","name":"Sky Marshal Tehat Meru","type":"Role","_key":"6768","_from":"5681","_to":"5670"} +{"$label":"ACTS_IN","name":"Corporal Birdie","type":"Role","_key":"6766","_from":"5680","_to":"5670"} +{"$label":"ACTS_IN","name":"Lieutenant Willy","type":"Role","_key":"6765","_from":"5679","_to":"5670"} +{"$label":"ACTS_IN","name":"Katrina McIntire","type":"Role","_key":"6764","_from":"5678","_to":"5670"} +{"$label":"ACTS_IN","name":"Biology Teacher","type":"Role","_key":"6763","_from":"5677","_to":"5670"} +{"$label":"ACTS_IN","name":"Private Sugar Watkins","type":"Role","_key":"6762","_from":"5676","_to":"5670"} +{"$label":"ACTS_IN","name":"Zander Barcalow","type":"Role","_key":"6761","_from":"5675","_to":"5670"} +{"$label":"ACTS_IN","name":"Colonel Carl Jenkins","type":"Role","_key":"6758","_from":"5674","_to":"5670"} +{"$label":"ACTS_IN","name":"Private Ace Levy","type":"Role","_key":"6757","_from":"5673","_to":"5670"} +{"$label":"ACTS_IN","name":"Carmen Ibanez","type":"Role","_key":"6756","_from":"5672","_to":"5670"} +{"$label":"ACTS_IN","name":"Johnny Rico","type":"Role","_key":"6754","_from":"5671","_to":"5670"} +{"$label":"ACTS_IN","name":"Luke Rivers","type":"Role","_key":"121683","_from":"5671","_to":"71490"} +{"$label":"ACTS_IN","name":"Danny Freemont","type":"Role","_key":"102976","_from":"5671","_to":"60574"} +{"$label":"ACTS_IN","name":"Johnny Rico","type":"Role","_key":"68031","_from":"5671","_to":"41806"} +{"$label":"ACTS_IN","name":"Capt. Abraham Van Helsing","type":"Role","_key":"66089","_from":"5671","_to":"40893"} +{"$label":"ACTS_IN","name":"Capt. Ramsey","type":"Role","_key":"62169","_from":"5671","_to":"39152"} +{"$label":"ACTS_IN","name":"Tom Merrick","type":"Role","_key":"47306","_from":"5671","_to":"31161"} +{"$label":"ACTS_IN","name":"Brom Van Brunt","type":"Role","_key":"22607","_from":"5671","_to":"16413"} +{"$label":"ACTS_IN","name":"B-Girl","type":"Role","_key":"115216","_from":"5672","_to":"67851"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"94131","_from":"5672","_to":"55435"} +{"$label":"ACTS_IN","name":"White She Devil","type":"Role","_key":"89174","_from":"5672","_to":"52818"} +{"$label":"ACTS_IN","name":"Paige Prescott","type":"Role","_key":"67086","_from":"5672","_to":"41406"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"65806","_from":"5672","_to":"40722"} +{"$label":"ACTS_IN","name":"Rebecca Ann \"Becky\" Leeman","type":"Role","_key":"63650","_from":"5672","_to":"39819"} +{"$label":"ACTS_IN","name":"Dawn St. Dom","type":"Role","_key":"60982","_from":"5672","_to":"38538"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"30562","_from":"5672","_to":"21485"} +{"$label":"ACTS_IN","name":"Jana, Lucifer's Sister","type":"Role","_key":"15674","_from":"5672","_to":"11948"} +{"$label":"ACTS_IN","name":"Kelly Lanier Van Ryan","type":"Role","_key":"7324","_from":"5672","_to":"6106"} +{"$label":"ACTS_IN","name":"Beaumont","type":"Role","_key":"120183","_from":"5673","_to":"70585"} +{"$label":"ACTS_IN","name":"Officer Treen","type":"Role","_key":"95821","_from":"5673","_to":"56354"} +{"$label":"ACTS_IN","name":"Angus Montier","type":"Role","_key":"89084","_from":"5673","_to":"52771"} +{"$label":"ACTS_IN","name":"Johnny Charles Bartlett","type":"Role","_key":"65721","_from":"5673","_to":"40696"} +{"$label":"ACTS_IN","name":"Kyle Brenner","type":"Role","_key":"64812","_from":"5673","_to":"40325"} +{"$label":"ACTS_IN","name":"Robert Maine","type":"Role","_key":"23850","_from":"5673","_to":"17287"} +{"$label":"ACTS_IN","name":"Billy \/ ... (3 episodes, 2008)","type":"Role","_key":"99525","_from":"5674","_to":"58670"} +{"$label":"ACTS_IN","name":"Barry Allen \/ The Flash (voice)","type":"Role","_key":"98101","_from":"5674","_to":"57762"} +{"$label":"ACTS_IN","name":"Neil Patrick Harris","type":"Role","_key":"93973","_from":"5674","_to":"55341"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"89177","_from":"5674","_to":"52818"} +{"$label":"ACTS_IN","name":"The Dauphin, later King Charles VII of France","type":"Role","_key":"72882","_from":"5674","_to":"43899"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68880","_from":"5674","_to":"42187"} +{"$label":"ACTS_IN","name":"Jack Addison","type":"Role","_key":"118965","_from":"5675","_to":"69921"} +{"$label":"ACTS_IN","name":"Dan 'Dash' Dashiell","type":"Role","_key":"111852","_from":"5675","_to":"66031"} +{"$label":"ACTS_IN","name":"Coach Walsh","type":"Role","_key":"46496","_from":"5679","_to":"30698"} +{"$label":"ACTS_IN","name":"Lt. Col. Joe Cribbs","type":"Role","_key":"10149","_from":"5679","_to":"8112"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"7643","_from":"5679","_to":"6355"} +{"$label":"ACTS_IN","name":"Olivia Biggs","type":"Role","_key":"54525","_from":"5681","_to":"34938"} +{"$label":"ACTS_IN","name":"Bank Teller","type":"Role","_key":"20404","_from":"5681","_to":"14934"} +{"$label":"ACTS_IN","name":"Jenny (segment \"The Hook\")","type":"Role","_key":"108666","_from":"5682","_to":"64215"} +{"$label":"ACTS_IN","name":"Jessica Donovan","type":"Role","_key":"106634","_from":"5682","_to":"62833"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"103138","_from":"5682","_to":"60667"} +{"$label":"ACTS_IN","name":"Jules Harbor","type":"Role","_key":"101499","_from":"5682","_to":"59741"} +{"$label":"ACTS_IN","name":"Jane Weston","type":"Role","_key":"100901","_from":"5682","_to":"59484"} +{"$label":"ACTS_IN","name":"Joy","type":"Role","_key":"95889","_from":"5682","_to":"56393"} +{"$label":"ACTS_IN","name":"Angela Carson","type":"Role","_key":"94957","_from":"5682","_to":"55920"} +{"$label":"ACTS_IN","name":"Nurse Betty","type":"Role","_key":"94708","_from":"5682","_to":"55789"} +{"$label":"ACTS_IN","name":"Jamie Palamino","type":"Role","_key":"59701","_from":"5682","_to":"37702"} +{"$label":"ACTS_IN","name":"Beth Wagner","type":"Role","_key":"52858","_from":"5682","_to":"34260"} +{"$label":"ACTS_IN","name":"Kayleigh Miller","type":"Role","_key":"16942","_from":"5682","_to":"12723"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"16904","_from":"5682","_to":"12710"} +{"$label":"ACTS_IN","name":"Captain Winston Havlock","type":"Role","_key":"6779","_from":"5692","_to":"5683"} +{"$label":"ACTS_IN","name":"Dr. Terrence Bey","type":"Role","_key":"6778","_from":"5691","_to":"5683"} +{"$label":"ACTS_IN","name":"Dr. Allen Chamberlain","type":"Role","_key":"6777","_from":"5690","_to":"5683"} +{"$label":"ACTS_IN","name":"Ardeth Bay","type":"Role","_key":"6776","_from":"5689","_to":"5683"} +{"$label":"ACTS_IN","name":"Beni Gabor","type":"Role","_key":"6775","_from":"5688","_to":"5683"} +{"$label":"ACTS_IN","name":"High Priest Imhotep","type":"Role","_key":"6774","_from":"5687","_to":"5683"} +{"$label":"ACTS_IN","name":"Jonathan Carnahan","type":"Role","_key":"6773","_from":"5686","_to":"5683"} +{"$label":"ACTS_IN","name":"Richard O'Connell","type":"Role","_key":"6771","_from":"5685","_to":"5683"} +{"$label":"DIRECTED","_key":"6770","_from":"5684","_to":"5683"} +{"$label":"DIRECTED","_key":"102235","_from":"5684","_to":"60158"} +{"$label":"DIRECTED","_key":"65207","_from":"5684","_to":"40494"} +{"$label":"DIRECTED","_key":"53978","_from":"5684","_to":"34723"} +{"$label":"DIRECTED","_key":"45836","_from":"5684","_to":"30311"} +{"$label":"DIRECTED","_key":"15326","_from":"5684","_to":"11726"} +{"$label":"ACTS_IN","name":"Dudley Do-Right","type":"Role","_key":"113725","_from":"5685","_to":"67020"} +{"$label":"ACTS_IN","name":"Montgomery 'Monty' Kessler","type":"Role","_key":"108526","_from":"5685","_to":"64146"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"104918","_from":"5685","_to":"61738"} +{"$label":"ACTS_IN","name":"David Greene","type":"Role","_key":"101426","_from":"5685","_to":"59708"} +{"$label":"ACTS_IN","name":"Pleasure","type":"Role","_key":"95637","_from":"5685","_to":"56251"} +{"$label":"ACTS_IN","name":"Chester 'Chazz' Darvey","type":"Role","_key":"95347","_from":"5685","_to":"56098"} +{"$label":"ACTS_IN","name":"Adam Webber","type":"Role","_key":"71107","_from":"5685","_to":"43169"} +{"$label":"ACTS_IN","name":"Trevor Anderson","type":"Role","_key":"70600","_from":"5685","_to":"42955"} +{"$label":"ACTS_IN","name":"DJ Drake","type":"Role","_key":"65208","_from":"5685","_to":"40495"} +{"$label":"ACTS_IN","name":"George of the Jungle","type":"Role","_key":"64452","_from":"5685","_to":"40161"} +{"$label":"ACTS_IN","name":"Link","type":"Role","_key":"63042","_from":"5685","_to":"39564"} +{"$label":"ACTS_IN","name":"Alden Pyle","type":"Role","_key":"48344","_from":"5685","_to":"31740"} +{"$label":"ACTS_IN","name":"Clayton Boone","type":"Role","_key":"25138","_from":"5685","_to":"18160"} +{"$label":"ACTS_IN","name":"Mo 'Silvertongue' Folchart","type":"Role","_key":"20273","_from":"5685","_to":"14864"} +{"$label":"ACTS_IN","name":"Richard O'Connell","type":"Role","_key":"15335","_from":"5685","_to":"11730"} +{"$label":"ACTS_IN","name":"Richard O'Connell","type":"Role","_key":"15327","_from":"5685","_to":"11726"} +{"$label":"ACTS_IN","name":"Rick Cabot","type":"Role","_key":"14529","_from":"5685","_to":"11201"} +{"$label":"ACTS_IN","name":"Elliot","type":"Role","_key":"14491","_from":"5685","_to":"11191"} +{"$label":"ACTS_IN","name":"James Hamilton","type":"Role","_key":"61753","_from":"5686","_to":"38887"} +{"$label":"ACTS_IN","name":"Nestor","type":"Role","_key":"55876","_from":"5686","_to":"35542"} +{"$label":"ACTS_IN","name":"Jonathan Carnahan","type":"Role","_key":"15337","_from":"5686","_to":"11730"} +{"$label":"ACTS_IN","name":"Jonathan Carnahan","type":"Role","_key":"15329","_from":"5686","_to":"11726"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"8610","_from":"5686","_to":"6995"} +{"$label":"ACTS_IN","name":"Darkman \/ Dr. Peyton Westlake","type":"Role","_key":"118435","_from":"5687","_to":"69627"} +{"$label":"ACTS_IN","name":"Darkman \/ Peyton Westlake","type":"Role","_key":"118431","_from":"5687","_to":"69624"} +{"$label":"ACTS_IN","name":"King Augustin","type":"Role","_key":"110813","_from":"5687","_to":"65453"} +{"$label":"ACTS_IN","name":"Zartan","type":"Role","_key":"102233","_from":"5687","_to":"60158"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"36565","_from":"5687","_to":"24786"} +{"$label":"ACTS_IN","name":"Pik van Cleef","type":"Role","_key":"17547","_from":"5687","_to":"13116"} +{"$label":"ACTS_IN","name":"High Priest Imhotep","type":"Role","_key":"15330","_from":"5687","_to":"11726"} +{"$label":"ACTS_IN","name":"Colonel Coetzee","type":"Role","_key":"12735","_from":"5687","_to":"9942"} +{"$label":"ACTS_IN","name":"Matt Neely","type":"Role","_key":"110132","_from":"5688","_to":"65075"} +{"$label":"ACTS_IN","name":"Woody","type":"Role","_key":"107596","_from":"5688","_to":"63511"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"107185","_from":"5688","_to":"63219"} +{"$label":"ACTS_IN","name":"Doctor Mindbender","type":"Role","_key":"102234","_from":"5688","_to":"60158"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"93580","_from":"5688","_to":"55109"} +{"$label":"ACTS_IN","name":"Stephano","type":"Role","_key":"63411","_from":"5688","_to":"39725"} +{"$label":"ACTS_IN","name":"Joey Pantucci","type":"Role","_key":"53982","_from":"5688","_to":"34723"} +{"$label":"ACTS_IN","name":"Philip Swann","type":"Role","_key":"51773","_from":"5688","_to":"33781"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"46565","_from":"5688","_to":"30757"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"45845","_from":"5688","_to":"30311"} +{"$label":"ACTS_IN","name":"Charles Landon","type":"Role","_key":"30778","_from":"5688","_to":"21575"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"25147","_from":"5688","_to":"18160"} +{"$label":"ACTS_IN","name":"Telstar","type":"Role","_key":"18830","_from":"5688","_to":"13904"} +{"$label":"ACTS_IN","name":"Roy Boy","type":"Role","_key":"15450","_from":"5688","_to":"11805"} +{"$label":"ACTS_IN","name":"Antoine Laconte","type":"Role","_key":"69953","_from":"5689","_to":"42676"} +{"$label":"ACTS_IN","name":"Antoine Laconte","type":"Role","_key":"63026","_from":"5689","_to":"39557"} +{"$label":"ACTS_IN","name":"Carlos Olivera","type":"Role","_key":"47275","_from":"5689","_to":"31150"} +{"$label":"ACTS_IN","name":"Ardeth Bay","type":"Role","_key":"15331","_from":"5689","_to":"11726"} +{"$label":"ACTS_IN","name":"Carlos Olivera","type":"Role","_key":"13953","_from":"5689","_to":"10820"} +{"$label":"ACTS_IN","name":"Hunter Van Pelt","type":"Role","_key":"51041","_from":"5690","_to":"33309"} +{"$label":"ACTS_IN","name":"Prince John","type":"Role","_key":"39350","_from":"5690","_to":"26613"} +{"$label":"ACTS_IN","name":"Tigellinus","type":"Role","_key":"22397","_from":"5690","_to":"16258"} +{"$label":"ACTS_IN","name":"Turner","type":"Role","_key":"13335","_from":"5690","_to":"10382"} +{"$label":"ACTS_IN","name":"Bruce Ismay","type":"Role","_key":"7188","_from":"5690","_to":"6002"} +{"$label":"ACTS_IN","name":"Samad","type":"Role","_key":"103799","_from":"5691","_to":"61053"} +{"$label":"ACTS_IN","name":"Prescott","type":"Role","_key":"90114","_from":"5691","_to":"53291"} +{"$label":"ACTS_IN","name":"Avi Perlman","type":"Role","_key":"44006","_from":"5691","_to":"29354"} +{"$label":"ACTS_IN","name":"Habib","type":"Role","_key":"23089","_from":"5691","_to":"16741"} +{"$label":"ACTS_IN","name":"Cecil Anderson","type":"Role","_key":"17584","_from":"5691","_to":"13137"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"96211","_from":"5692","_to":"56552"} +{"$label":"ACTS_IN","name":"Chairman \/ Doctor (voice)","type":"Role","_key":"68098","_from":"5692","_to":"41826"} +{"$label":"ACTS_IN","name":"Col. Archibald Gracie","type":"Role","_key":"7197","_from":"5692","_to":"6002"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"6791","_from":"5699","_to":"5693"} +{"$label":"ACTS_IN","name":"Katie Embry","type":"Role","_key":"6790","_from":"5698","_to":"5693"} +{"$label":"ACTS_IN","name":"Ruth Embry","type":"Role","_key":"6789","_from":"5697","_to":"5693"} +{"$label":"ACTS_IN","name":"Rebecca Kotler","type":"Role","_key":"6787","_from":"5696","_to":"5693"} +{"$label":"ACTS_IN","name":"Aidan Keller","type":"Role","_key":"6783","_from":"5695","_to":"5693"} +{"$label":"ACTS_IN","name":"Noah Clay","type":"Role","_key":"6782","_from":"5694","_to":"5693"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"93187","_from":"5694","_to":"54916"} +{"$label":"ACTS_IN","name":"William Darcy","type":"Role","_key":"90174","_from":"5694","_to":"53317"} +{"$label":"ACTS_IN","name":"Cary Ford","type":"Role","_key":"65226","_from":"5694","_to":"40500"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"59129","_from":"5694","_to":"37329"} +{"$label":"ACTS_IN","name":"Hollis Elmore","type":"Role","_key":"47074","_from":"5694","_to":"31043"} +{"$label":"ACTS_IN","name":"Aidan Keller","type":"Role","_key":"62579","_from":"5695","_to":"39377"} +{"$label":"ACTS_IN","name":"Emmit","type":"Role","_key":"49908","_from":"5695","_to":"32673"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"117842","_from":"5696","_to":"69275"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"117661","_from":"5698","_to":"69161"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"116303","_from":"5698","_to":"68469"} +{"$label":"ACTS_IN","name":"Sarah Russell","type":"Role","_key":"116228","_from":"5698","_to":"68436"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"109613","_from":"5698","_to":"64747"} +{"$label":"ACTS_IN","name":"Tibby","type":"Role","_key":"61536","_from":"5698","_to":"38801"} +{"$label":"ACTS_IN","name":"Tibby","type":"Role","_key":"56653","_from":"5698","_to":"35987"} +{"$label":"ACTS_IN","name":"Aubrey Davis","type":"Role","_key":"17104","_from":"5698","_to":"12821"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"88957","_from":"5699","_to":"52694"} +{"$label":"ACTS_IN","name":"Miss Lonelyheart","type":"Role","_key":"6800","_from":"5705","_to":"5700"} +{"$label":"ACTS_IN","name":"Lars Thorwald","type":"Role","_key":"6799","_from":"5704","_to":"5700"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"6798","_from":"5703","_to":"5700"} +{"$label":"ACTS_IN","name":"Det. Lt. Thomas J. Doyle","type":"Role","_key":"6797","_from":"5702","_to":"5700"} +{"$label":"DIRECTED","_key":"6794","_from":"5701","_to":"5700"} +{"$label":"ACTS_IN","name":"Walter (Tex) Warner","type":"Role","_key":"116564","_from":"5702","_to":"68613"} +{"$label":"ACTS_IN","name":"Maude Young","type":"Role","_key":"109413","_from":"5703","_to":"64642"} +{"$label":"ACTS_IN","name":"Isabelle Steers","type":"Role","_key":"70496","_from":"5703","_to":"42914"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"35079","_from":"5703","_to":"23921"} +{"$label":"ACTS_IN","name":"Elizabeth Stroud","type":"Role","_key":"10699","_from":"5703","_to":"8495"} +{"$label":"ACTS_IN","name":"Birdie Coonan","type":"Role","_key":"8514","_from":"5703","_to":"6942"} +{"$label":"ACTS_IN","name":"Judge D.C. Simonton","type":"Role","_key":"22578","_from":"5704","_to":"16390"} +{"$label":"ACTS_IN","name":"Inspektor Pope","type":"Role","_key":"16608","_from":"5704","_to":"12545"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"6809","_from":"5714","_to":"5706"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Fernando","type":"Role","_key":"6808","_from":"5713","_to":"5706"} +{"$label":"ACTS_IN","name":"P\u00e8re","type":"Role","_key":"6807","_from":"5712","_to":"5706"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"6806","_from":"5711","_to":"5706"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"6805","_from":"5710","_to":"5706"} +{"$label":"ACTS_IN","name":"Elena Pingot","type":"Role","_key":"6804","_from":"5709","_to":"5706"} +{"$label":"ACTS_IN","name":"Ana\u00efs Pingot","type":"Role","_key":"6803","_from":"5708","_to":"5706"} +{"$label":"DIRECTED","_key":"6801","_from":"5707","_to":"5706"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96163","_from":"5709","_to":"56513"} +{"$label":"ACTS_IN","name":"Hermangarde","type":"Role","_key":"17376","_from":"5709","_to":"12998"} +{"$label":"ACTS_IN","name":"Ani","type":"Role","_key":"108850","_from":"5711","_to":"64332"} +{"$label":"ACTS_IN","name":"Streetcar Mother","type":"Role","_key":"107217","_from":"5711","_to":"63230"} +{"$label":"ACTS_IN","name":"Publishing Executive","type":"Role","_key":"56141","_from":"5711","_to":"35683"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"51360","_from":"5711","_to":"33484"} +{"$label":"ACTS_IN","name":"Armineh","type":"Role","_key":"20669","_from":"5711","_to":"15110"} +{"$label":"ACTS_IN","name":"Suora","type":"Role","_key":"66198","_from":"5713","_to":"40953"} +{"$label":"ACTS_IN","name":"Wife from Bath","type":"Role","_key":"38657","_from":"5713","_to":"26112"} +{"$label":"ACTS_IN","name":"Anna Fossati","type":"Role","_key":"37441","_from":"5713","_to":"25365"} +{"$label":"ACTS_IN","name":"Emilia, the servant","type":"Role","_key":"37078","_from":"5713","_to":"25123"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"28828","_from":"5713","_to":"20607"} +{"$label":"DIRECTED","_key":"6818","_from":"5720","_to":"5715"} +{"$label":"ACTS_IN","name":"Sebastian Sholes","type":"Role","_key":"6815","_from":"5719","_to":"5715"} +{"$label":"ACTS_IN","name":"Mrs. Bundy","type":"Role","_key":"6814","_from":"5718","_to":"5715"} +{"$label":"ACTS_IN","name":"Annie Hayworth","type":"Role","_key":"6812","_from":"5717","_to":"5715"} +{"$label":"ACTS_IN","name":"Mitch Brenner","type":"Role","_key":"6810","_from":"5716","_to":"5715"} +{"$label":"ACTS_IN","name":"Winston Churchill","type":"Role","_key":"110277","_from":"5716","_to":"65170"} +{"$label":"ACTS_IN","name":"Pongo","type":"Role","_key":"88850","_from":"5716","_to":"52647"} +{"$label":"ACTS_IN","name":"Daddy-O","type":"Role","_key":"45476","_from":"5716","_to":"30131"} +{"$label":"ACTS_IN","name":"Steve Donegin","type":"Role","_key":"44987","_from":"5716","_to":"29895"} +{"$label":"ACTS_IN","name":"Lee Allen","type":"Role","_key":"24847","_from":"5716","_to":"17967"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"18560","_from":"5716","_to":"13733"} +{"$label":"ACTS_IN","name":"Patience","type":"Role","_key":"115670","_from":"5717","_to":"68096"} +{"$label":"ACTS_IN","name":"Jo Anne Baker","type":"Role","_key":"108341","_from":"5717","_to":"64045"} +{"$label":"ACTS_IN","name":"Sam Perkins","type":"Role","_key":"71227","_from":"5717","_to":"43224"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"40446","_from":"5717","_to":"27258"} +{"$label":"ACTS_IN","name":"Det. Stan Simon","type":"Role","_key":"115655","_from":"5719","_to":"68087"} +{"$label":"ACTS_IN","name":"Police Chief Ed Masterson","type":"Role","_key":"104097","_from":"5719","_to":"61243"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"101238","_from":"5719","_to":"59623"} +{"$label":"ACTS_IN","name":"Lt. Matthews","type":"Role","_key":"70825","_from":"5719","_to":"43041"} +{"$label":"ACTS_IN","name":"Capt. Frank Gibbons","type":"Role","_key":"69710","_from":"5719","_to":"42555"} +{"$label":"ACTS_IN","name":"(in The Killers) (archive footage)","type":"Role","_key":"53891","_from":"5719","_to":"34691"} +{"$label":"ACTS_IN","name":"Dr. Stovall","type":"Role","_key":"44293","_from":"5719","_to":"29517"} +{"$label":"ACTS_IN","name":"Sheriff Ray Calhoun","type":"Role","_key":"34870","_from":"5719","_to":"23835"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"34752","_from":"5719","_to":"23755"} +{"$label":"ACTS_IN","name":"Marcellus","type":"Role","_key":"11505","_from":"5719","_to":"9041"} +{"$label":"ACTS_IN","name":"Gammel Mand","type":"Role","_key":"6827","_from":"5729","_to":"5721"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"6826","_from":"5728","_to":"5721"} +{"$label":"ACTS_IN","name":"Kollega","type":"Role","_key":"6825","_from":"5727","_to":"5721"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"6823","_from":"5726","_to":"5721"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"6822","_from":"5725","_to":"5721"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"6821","_from":"5724","_to":"5721"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"6820","_from":"5723","_to":"5721"} +{"$label":"DIRECTED","_key":"6819","_from":"5722","_to":"5721"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"96310","_from":"5723","_to":"56598"} +{"$label":"ACTS_IN","name":"Hairdresser","type":"Role","_key":"95435","_from":"5723","_to":"56139"} +{"$label":"ACTS_IN","name":"Line","type":"Role","_key":"103492","_from":"5726","_to":"60873"} +{"$label":"ACTS_IN","name":"Gladys","type":"Role","_key":"6839","_from":"5741","_to":"5730"} +{"$label":"ACTS_IN","name":"Johnny Porter","type":"Role","_key":"6838","_from":"5740","_to":"5730"} +{"$label":"ACTS_IN","name":"Mrs. Oxford","type":"Role","_key":"6837","_from":"5739","_to":"5730"} +{"$label":"ACTS_IN","name":"Monica Barling","type":"Role","_key":"6836","_from":"5738","_to":"5730"} +{"$label":"ACTS_IN","name":"Felix Forsythe","type":"Role","_key":"6835","_from":"5737","_to":"5730"} +{"$label":"ACTS_IN","name":"Brenda Margaret Blaney","type":"Role","_key":"6834","_from":"5736","_to":"5730"} +{"$label":"ACTS_IN","name":"Barbara Jane ('Babs') Milligan","type":"Role","_key":"6833","_from":"5735","_to":"5730"} +{"$label":"ACTS_IN","name":"Hetty Porter","type":"Role","_key":"6832","_from":"5734","_to":"5730"} +{"$label":"ACTS_IN","name":"Robert Rusk","type":"Role","_key":"6831","_from":"5733","_to":"5730"} +{"$label":"ACTS_IN","name":"Chief Inspector Oxford","type":"Role","_key":"6830","_from":"5732","_to":"5730"} +{"$label":"ACTS_IN","name":"Richard Ian Blaney","type":"Role","_key":"6829","_from":"5731","_to":"5730"} +{"$label":"ACTS_IN","name":"Macbeth","type":"Role","_key":"69089","_from":"5731","_to":"42281"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41600","_from":"5731","_to":"27940"} +{"$label":"ACTS_IN","name":"James Ferguson","type":"Role","_key":"29982","_from":"5731","_to":"21170"} +{"$label":"ACTS_IN","name":"Lt. Henry Becker","type":"Role","_key":"26276","_from":"5731","_to":"18865"} +{"$label":"ACTS_IN","name":"Brown, House Master","type":"Role","_key":"107105","_from":"5732","_to":"63151"} +{"$label":"ACTS_IN","name":"Bishop of Ely","type":"Role","_key":"65162","_from":"5732","_to":"40473"} +{"$label":"ACTS_IN","name":"Henry Pulling","type":"Role","_key":"36327","_from":"5732","_to":"24646"} +{"$label":"ACTS_IN","name":"Thomas Balfour","type":"Role","_key":"45681","_from":"5733","_to":"30229"} +{"$label":"ACTS_IN","name":"Queen Marie","type":"Role","_key":"121078","_from":"5734","_to":"71109"} +{"$label":"ACTS_IN","name":"Madame LeClerc","type":"Role","_key":"66418","_from":"5734","_to":"41070"} +{"$label":"ACTS_IN","name":"Joyce Cooper","type":"Role","_key":"33112","_from":"5734","_to":"22937"} +{"$label":"ACTS_IN","name":"Mrs. Baylock","type":"Role","_key":"9368","_from":"5734","_to":"7561"} +{"$label":"ACTS_IN","name":"English Teacher","type":"Role","_key":"106026","_from":"5735","_to":"62417"} +{"$label":"ACTS_IN","name":"Helen Stephens","type":"Role","_key":"68289","_from":"5735","_to":"41924"} +{"$label":"ACTS_IN","name":"Older Agatha Christie","type":"Role","_key":"41749","_from":"5735","_to":"28015"} +{"$label":"ACTS_IN","name":"Mrs. Shike","type":"Role","_key":"32600","_from":"5735","_to":"22651"} +{"$label":"ACTS_IN","name":"Elvira Smollett","type":"Role","_key":"16837","_from":"5735","_to":"12675"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39500","_from":"5736","_to":"26693"} +{"$label":"ACTS_IN","name":"Mordecai Mendoza","type":"Role","_key":"121019","_from":"5737","_to":"71078"} +{"$label":"ACTS_IN","name":"Job","type":"Role","_key":"113316","_from":"5737","_to":"66756"} +{"$label":"ACTS_IN","name":"Tom Campbell","type":"Role","_key":"109020","_from":"5737","_to":"64424"} +{"$label":"ACTS_IN","name":"Mutley","type":"Role","_key":"104428","_from":"5737","_to":"61430"} +{"$label":"ACTS_IN","name":"Joanna Russell","type":"Role","_key":"95160","_from":"5738","_to":"55996"} +{"$label":"ACTS_IN","name":"Nurse Wilson\/Mombi","type":"Role","_key":"93042","_from":"5738","_to":"54853"} +{"$label":"ACTS_IN","name":"Anna von Hagen","type":"Role","_key":"68786","_from":"5738","_to":"42145"} +{"$label":"ACTS_IN","name":"Queen Bavmorda","type":"Role","_key":"10035","_from":"5738","_to":"8030"} +{"$label":"ACTS_IN","name":"Reine Maria Theresa","type":"Role","_key":"30060","_from":"5739","_to":"21198"} +{"$label":"ACTS_IN","name":"Insp. Richardson","type":"Role","_key":"28095","_from":"5740","_to":"20137"} +{"$label":"ACTS_IN","name":"Louis Bernard","type":"Role","_key":"6849","_from":"5750","_to":"5742"} +{"$label":"ACTS_IN","name":"Hank McKenna","type":"Role","_key":"6848","_from":"5749","_to":"5742"} +{"$label":"ACTS_IN","name":"Jan Peterson","type":"Role","_key":"6847","_from":"5748","_to":"5742"} +{"$label":"ACTS_IN","name":"Val Parnell","type":"Role","_key":"6846","_from":"5747","_to":"5742"} +{"$label":"ACTS_IN","name":"Edward Drayton","type":"Role","_key":"6845","_from":"5746","_to":"5742"} +{"$label":"ACTS_IN","name":"Lucy Drayton","type":"Role","_key":"6844","_from":"5745","_to":"5742"} +{"$label":"ACTS_IN","name":"Jo McKenna","type":"Role","_key":"6843","_from":"5744","_to":"5742"} +{"$label":"DIRECTED","_key":"6841","_from":"5743","_to":"5742"} +{"$label":"ACTS_IN","name":"Marjorie Winfield","type":"Role","_key":"120496","_from":"5744","_to":"70781"} +{"$label":"ACTS_IN","name":"Kate Robinson Mackay","type":"Role","_key":"120057","_from":"5744","_to":"70508"} +{"$label":"ACTS_IN","name":"Calamity Jane","type":"Role","_key":"98560","_from":"5744","_to":"58081"} +{"$label":"ACTS_IN","name":"Cathy Timberlake","type":"Role","_key":"91156","_from":"5744","_to":"53771"} +{"$label":"ACTS_IN","name":"Kit Preston","type":"Role","_key":"90629","_from":"5744","_to":"53518"} +{"$label":"ACTS_IN","name":"Jan Morrow","type":"Role","_key":"35077","_from":"5744","_to":"23921"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"34981","_from":"5744","_to":"23881"} +{"$label":"ACTS_IN","name":"Phoebe Rice","type":"Role","_key":"118177","_from":"5745","_to":"69451"} +{"$label":"ACTS_IN","name":"Maggie Hobson","type":"Role","_key":"109122","_from":"5745","_to":"64471"} +{"$label":"ACTS_IN","name":"Angela Dunning","type":"Role","_key":"11178","_from":"5745","_to":"8842"} +{"$label":"ACTS_IN","name":"Sir John Hay","type":"Role","_key":"109390","_from":"5747","_to":"64625"} +{"$label":"ACTS_IN","name":"Tommy Gray","type":"Role","_key":"95225","_from":"5747","_to":"56023"} +{"$label":"ACTS_IN","name":"Granville Thorndyke","type":"Role","_key":"25680","_from":"5747","_to":"18485"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33572","_from":"5750","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32808","_from":"5750","_to":"22779"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"31818","_from":"5750","_to":"22208"} +{"$label":"ACTS_IN","name":"le v\u00e9t\u00e9rinaire","type":"Role","_key":"30935","_from":"5750","_to":"21670"} +{"$label":"ACTS_IN","name":"Docteur Mavial","type":"Role","_key":"30679","_from":"5750","_to":"21530"} +{"$label":"ACTS_IN","name":"Flic","type":"Role","_key":"21286","_from":"5750","_to":"15565"} +{"$label":"DIRECTED","_key":"6881","_from":"5780","_to":"5751"} +{"$label":"ACTS_IN","name":"Assistent","type":"Role","_key":"6880","_from":"5779","_to":"5751"} +{"$label":"ACTS_IN","name":"Nachrichtensprecherin","type":"Role","_key":"6879","_from":"5778","_to":"5751"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"6877","_from":"5777","_to":"5751"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"6876","_from":"5776","_to":"5751"} +{"$label":"ACTS_IN","name":"Ziegler","type":"Role","_key":"6875","_from":"5775","_to":"5751"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"6874","_from":"5774","_to":"5751"} +{"$label":"ACTS_IN","name":"Assistent","type":"Role","_key":"6873","_from":"5773","_to":"5751"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"6872","_from":"5772","_to":"5751"} +{"$label":"ACTS_IN","name":"Dr. Jutta Grimm","type":"Role","_key":"6871","_from":"5771","_to":"5751"} +{"$label":"ACTS_IN","name":"Prof. Dr. Klaus Thon","type":"Role","_key":"6870","_from":"5770","_to":"5751"} +{"$label":"ACTS_IN","name":"Amandy","type":"Role","_key":"6869","_from":"5769","_to":"5751"} +{"$label":"ACTS_IN","name":"Stock","type":"Role","_key":"6868","_from":"5768","_to":"5751"} +{"$label":"ACTS_IN","name":"Gl\u00e4ser","type":"Role","_key":"6867","_from":"5767","_to":"5751"} +{"$label":"ACTS_IN","name":"Renzel","type":"Role","_key":"6866","_from":"5766","_to":"5751"} +{"$label":"ACTS_IN","name":"Bosch","type":"Role","_key":"6865","_from":"5765","_to":"5751"} +{"$label":"ACTS_IN","name":"Eckert","type":"Role","_key":"6864","_from":"5764","_to":"5751"} +{"$label":"ACTS_IN","name":"Kamps","type":"Role","_key":"6863","_from":"5763","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 94","type":"Role","_key":"6861","_from":"5762","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 86","type":"Role","_key":"6860","_from":"5761","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 11","type":"Role","_key":"6859","_from":"5760","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 74","type":"Role","_key":"6858","_from":"5759","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 15","type":"Role","_key":"6857","_from":"5758","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 21","type":"Role","_key":"6856","_from":"5757","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 40","type":"Role","_key":"6855","_from":"5756","_to":"5751"} +{"$label":"ACTS_IN","name":"H\u00e4ftling Nr. 53","type":"Role","_key":"6854","_from":"5755","_to":"5751"} +{"$label":"ACTS_IN","name":"Joe, H\u00e4ftling Nr. 69","type":"Role","_key":"6853","_from":"5754","_to":"5751"} +{"$label":"ACTS_IN","name":"Sch\u00fctte, H\u00e4ftling Nr. 82","type":"Role","_key":"6852","_from":"5753","_to":"5751"} +{"$label":"ACTS_IN","name":"Steinhoff, H\u00e4ftling Nr. 38","type":"Role","_key":"6851","_from":"5752","_to":"5751"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"110280","_from":"5752","_to":"65170"} +{"$label":"ACTS_IN","name":"Innensenator Helmut Schmidt","type":"Role","_key":"68522","_from":"5752","_to":"42023"} +{"$label":"ACTS_IN","name":"Lang","type":"Role","_key":"63444","_from":"5752","_to":"39741"} +{"$label":"ACTS_IN","name":"Hoffmann","type":"Role","_key":"51276","_from":"5752","_to":"33443"} +{"$label":"ACTS_IN","name":"Rudolf","type":"Role","_key":"40004","_from":"5752","_to":"27014"} +{"$label":"ACTS_IN","name":"Vinkelmeyer","type":"Role","_key":"20431","_from":"5752","_to":"14947"} +{"$label":"ACTS_IN","name":"Albrecht Ritter Mertz von Quirnheim","type":"Role","_key":"19706","_from":"5752","_to":"14564"} +{"$label":"ACTS_IN","name":"Prof. Dr. Ernst-G\u00fcnter Schenck","type":"Role","_key":"7266","_from":"5752","_to":"6064"} +{"$label":"ACTS_IN","name":"Dieter Striesow","type":"Role","_key":"68151","_from":"5753","_to":"41857"} +{"$label":"ACTS_IN","name":"Merles Vater","type":"Role","_key":"57536","_from":"5753","_to":"36450"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"52544","_from":"5753","_to":"34160"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39749","_from":"5753","_to":"26850"} +{"$label":"ACTS_IN","name":"Salomon","type":"Role","_key":"29559","_from":"5753","_to":"20938"} +{"$label":"ACTS_IN","name":"Young Bower's Father","type":"Role","_key":"121382","_from":"5754","_to":"71326"} +{"$label":"ACTS_IN","name":"Ingo Schmitz","type":"Role","_key":"69660","_from":"5754","_to":"42524"} +{"$label":"ACTS_IN","name":"Michael Martens","type":"Role","_key":"49110","_from":"5754","_to":"32177"} +{"$label":"ACTS_IN","name":"Dominik","type":"Role","_key":"45917","_from":"5754","_to":"30364"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39750","_from":"5754","_to":"26850"} +{"$label":"ACTS_IN","name":"Fabian","type":"Role","_key":"39654","_from":"5754","_to":"26800"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"34463","_from":"5754","_to":"23601"} +{"$label":"ACTS_IN","name":"Michael Gleiwitz","type":"Role","_key":"30134","_from":"5754","_to":"21234"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"26911","_from":"5754","_to":"19351"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"15058","_from":"5754","_to":"11571"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"14021","_from":"5754","_to":"10867"} +{"$label":"ACTS_IN","name":"Young Priest","type":"Role","_key":"31271","_from":"5755","_to":"21872"} +{"$label":"ACTS_IN","name":"Yuppie","type":"Role","_key":"51064","_from":"5760","_to":"33315"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"14025","_from":"5760","_to":"10867"} +{"$label":"ACTS_IN","name":"Volker Reichel","type":"Role","_key":"44360","_from":"5763","_to":"29557"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"42504","_from":"5763","_to":"28457"} +{"$label":"ACTS_IN","name":"Schorsch","type":"Role","_key":"29158","_from":"5765","_to":"20765"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"14762","_from":"5765","_to":"11358"} +{"$label":"ACTS_IN","name":"Sch\u00f6ngeist","type":"Role","_key":"14020","_from":"5765","_to":"10867"} +{"$label":"ACTS_IN","name":"Jekyll","type":"Role","_key":"69447","_from":"5770","_to":"42439"} +{"$label":"ACTS_IN","name":"Helmut Hartmeyer","type":"Role","_key":"34187","_from":"5770","_to":"23469"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"27655","_from":"5771","_to":"19817"} +{"$label":"ACTS_IN","name":"Golo Mann","type":"Role","_key":"20018","_from":"5772","_to":"14724"} +{"$label":"ACTS_IN","name":"Max T\u00e4schner","type":"Role","_key":"50869","_from":"5775","_to":"33205"} +{"$label":"ACTS_IN","name":"Uncle Dieter","type":"Role","_key":"88303","_from":"5776","_to":"52370"} +{"$label":"ACTS_IN","name":"Kneipier","type":"Role","_key":"13803","_from":"5776","_to":"10704"} +{"$label":"ACTS_IN","name":"Carl Mauth","type":"Role","_key":"68527","_from":"5777","_to":"42024"} +{"$label":"ACTS_IN","name":"Alexander Claussen","type":"Role","_key":"68519","_from":"5777","_to":"42023"} +{"$label":"ACTS_IN","name":"Harald Kehding","type":"Role","_key":"67406","_from":"5777","_to":"41528"} +{"$label":"ACTS_IN","name":"Oskar Reiter","type":"Role","_key":"55233","_from":"5777","_to":"35234"} +{"$label":"ACTS_IN","name":"Hanno Hackmann","type":"Role","_key":"53820","_from":"5777","_to":"34675"} +{"$label":"ACTS_IN","name":"Oberst","type":"Role","_key":"53740","_from":"5777","_to":"34646"} +{"$label":"ACTS_IN","name":"Mark Popp","type":"Role","_key":"50183","_from":"5777","_to":"32809"} +{"$label":"ACTS_IN","name":"Toni Kowitz","type":"Role","_key":"40087","_from":"5777","_to":"27060"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39741","_from":"5777","_to":"26850"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"33282","_from":"5777","_to":"23060"} +{"$label":"ACTS_IN","name":"Konrad Hartog","type":"Role","_key":"31382","_from":"5777","_to":"21938"} +{"$label":"ACTS_IN","name":"Rami Hamdan","type":"Role","_key":"26606","_from":"5777","_to":"19123"} +{"$label":"DIRECTED","_key":"40086","_from":"5777","_to":"27060"} +{"$label":"DIRECTED","_key":"109972","_from":"5780","_to":"64978"} +{"$label":"DIRECTED","_key":"34420","_from":"5780","_to":"23588"} +{"$label":"DIRECTED","_key":"7281","_from":"5780","_to":"6064"} +{"$label":"ACTS_IN","name":"T.C","type":"Role","_key":"6892","_from":"5791","_to":"5781"} +{"$label":"ACTS_IN","name":"Coffer","type":"Role","_key":"6891","_from":"5790","_to":"5781"} +{"$label":"ACTS_IN","name":"Gen. Mapache","type":"Role","_key":"6890","_from":"5789","_to":"5781"} +{"$label":"ACTS_IN","name":"Tector Gorch","type":"Role","_key":"6889","_from":"5788","_to":"5781"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"6888","_from":"5787","_to":"5781"} +{"$label":"ACTS_IN","name":"Lyle Gorch","type":"Role","_key":"6887","_from":"5786","_to":"5781"} +{"$label":"ACTS_IN","name":"Freddie Sykes","type":"Role","_key":"6886","_from":"5785","_to":"5781"} +{"$label":"ACTS_IN","name":"Deke Thornton","type":"Role","_key":"6885","_from":"5784","_to":"5781"} +{"$label":"ACTS_IN","name":"Pike Bishop","type":"Role","_key":"6884","_from":"5783","_to":"5781"} +{"$label":"DIRECTED","_key":"6882","_from":"5782","_to":"5781"} +{"$label":"DIRECTED","_key":"116252","_from":"5782","_to":"68441"} +{"$label":"DIRECTED","_key":"88927","_from":"5782","_to":"52676"} +{"$label":"DIRECTED","_key":"72874","_from":"5782","_to":"43892"} +{"$label":"DIRECTED","_key":"70840","_from":"5782","_to":"43058"} +{"$label":"DIRECTED","_key":"66104","_from":"5782","_to":"40895"} +{"$label":"DIRECTED","_key":"54843","_from":"5782","_to":"35082"} +{"$label":"DIRECTED","_key":"40508","_from":"5782","_to":"27276"} +{"$label":"DIRECTED","_key":"40424","_from":"5782","_to":"27250"} +{"$label":"DIRECTED","_key":"11744","_from":"5782","_to":"9219"} +{"$label":"ACTS_IN","name":"Major 'Hank' Kendall","type":"Role","_key":"113515","_from":"5783","_to":"66881"} +{"$label":"ACTS_IN","name":"Max Schumacher","type":"Role","_key":"65688","_from":"5783","_to":"40690"} +{"$label":"ACTS_IN","name":"Richard Thorn","type":"Role","_key":"65640","_from":"5783","_to":"40672"} +{"$label":"ACTS_IN","name":"David Larrabee","type":"Role","_key":"44347","_from":"5783","_to":"29551"} +{"$label":"ACTS_IN","name":"James Duncan","type":"Role","_key":"40435","_from":"5783","_to":"27256"} +{"$label":"ACTS_IN","name":"Bernie Dodd","type":"Role","_key":"21373","_from":"5783","_to":"15629"} +{"$label":"ACTS_IN","name":"Cmdr. Shears","type":"Role","_key":"9764","_from":"5783","_to":"7831"} +{"$label":"ACTS_IN","name":"Sefton","type":"Role","_key":"7513","_from":"5783","_to":"6257"} +{"$label":"ACTS_IN","name":"Joe Gillis","type":"Role","_key":"7227","_from":"5783","_to":"6037"} +{"$label":"ACTS_IN","name":"Stoker","type":"Role","_key":"111585","_from":"5784","_to":"65881"} +{"$label":"ACTS_IN","name":"Reno Smith","type":"Role","_key":"100774","_from":"5784","_to":"59412"} +{"$label":"ACTS_IN","name":"General Grey","type":"Role","_key":"95025","_from":"5784","_to":"55943"} +{"$label":"ACTS_IN","name":"John Claggart","type":"Role","_key":"37058","_from":"5784","_to":"25120"} +{"$label":"ACTS_IN","name":"Col. Everett Dasher Breed","type":"Role","_key":"14696","_from":"5784","_to":"11307"} +{"$label":"ACTS_IN","name":"Frank Bigelow","type":"Role","_key":"118413","_from":"5785","_to":"69611"} +{"$label":"ACTS_IN","name":"Vic Pardo","type":"Role","_key":"105931","_from":"5785","_to":"62369"} +{"$label":"ACTS_IN","name":"Jim Reardon","type":"Role","_key":"101230","_from":"5785","_to":"59623"} +{"$label":"ACTS_IN","name":"(in \"White Heat\") (archive footage)","type":"Role","_key":"53896","_from":"5785","_to":"34691"} +{"$label":"ACTS_IN","name":"Gen. Carter","type":"Role","_key":"18814","_from":"5785","_to":"13902"} +{"$label":"ACTS_IN","name":"Winston Smith","type":"Role","_key":"17171","_from":"5785","_to":"12865"} +{"$label":"ACTS_IN","name":"Tom Gaddis","type":"Role","_key":"10703","_from":"5785","_to":"8495"} +{"$label":"ACTS_IN","name":"Colbee","type":"Role","_key":"90771","_from":"5786","_to":"53570"} +{"$label":"ACTS_IN","name":"Bennie","type":"Role","_key":"72870","_from":"5786","_to":"43892"} +{"$label":"ACTS_IN","name":"Sgt. Hulka","type":"Role","_key":"66483","_from":"5786","_to":"41111"} +{"$label":"ACTS_IN","name":"Off. Sam Wood","type":"Role","_key":"64728","_from":"5786","_to":"40299"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"45415","_from":"5786","_to":"30103"} +{"$label":"ACTS_IN","name":"Jack Braddock","type":"Role","_key":"42979","_from":"5786","_to":"28715"} +{"$label":"ACTS_IN","name":"Holly's Father","type":"Role","_key":"26250","_from":"5786","_to":"18844"} +{"$label":"ACTS_IN","name":"Bob Amory","type":"Role","_key":"116941","_from":"5788","_to":"68834"} +{"$label":"ACTS_IN","name":"Sgt. Tyree","type":"Role","_key":"97391","_from":"5788","_to":"57354"} +{"$label":"ACTS_IN","name":"Trooper Travis Tyree","type":"Role","_key":"71078","_from":"5788","_to":"43158"} +{"$label":"ACTS_IN","name":"Pearce","type":"Role","_key":"47829","_from":"5788","_to":"31490"} +{"$label":"ACTS_IN","name":"Buck Roan","type":"Role","_key":"40504","_from":"5788","_to":"27276"} +{"$label":"ACTS_IN","name":"Sheriff Strong","type":"Role","_key":"40451","_from":"5788","_to":"27259"} +{"$label":"ACTS_IN","name":"Jack Beynon","type":"Role","_key":"40418","_from":"5788","_to":"27250"} +{"$label":"ACTS_IN","name":"Captain Harlin Tanner","type":"Role","_key":"35974","_from":"5788","_to":"24432"} +{"$label":"ACTS_IN","name":"Marty Hollinger","type":"Role","_key":"35393","_from":"5788","_to":"24086"} +{"$label":"ACTS_IN","name":"Marshal Dave Bliss","type":"Role","_key":"34868","_from":"5788","_to":"23835"} +{"$label":"ACTS_IN","name":"Chris Calloway","type":"Role","_key":"26024","_from":"5788","_to":"18705"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"14867","_from":"5788","_to":"11429"} +{"$label":"ACTS_IN","name":"Francisco Lorca","type":"Role","_key":"90775","_from":"5789","_to":"53570"} +{"$label":"DIRECTED","_key":"27190","_from":"5789","_to":"19549"} +{"$label":"ACTS_IN","name":"Parson","type":"Role","_key":"116251","_from":"5790","_to":"68441"} +{"$label":"ACTS_IN","name":"Shanghai McCoy","type":"Role","_key":"112883","_from":"5790","_to":"66629"} +{"$label":"ACTS_IN","name":"Joe McGrath","type":"Role","_key":"70926","_from":"5790","_to":"43092"} +{"$label":"ACTS_IN","name":"Arnold Stoner","type":"Role","_key":"69962","_from":"5790","_to":"42680"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"10759","_from":"5790","_to":"8527"} +{"$label":"ACTS_IN","name":"Percy Garris","type":"Role","_key":"7677","_from":"5790","_to":"6376"} +{"$label":"ACTS_IN","name":"Chuck Akers","type":"Role","_key":"54452","_from":"5791","_to":"34916"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"34873","_from":"5791","_to":"23835"} +{"$label":"ACTS_IN","name":"Porn Stud","type":"Role","_key":"34758","_from":"5791","_to":"23755"} +{"$label":"DIRECTED","_key":"34745","_from":"5791","_to":"23755"} +{"$label":"ACTS_IN","name":"Janice Maretto","type":"Role","_key":"6898","_from":"5793","_to":"5792"} +{"$label":"ACTS_IN","name":"Heidi Schoichet","type":"Role","_key":"114312","_from":"5793","_to":"67334"} +{"$label":"ACTS_IN","name":"Kate Lawson","type":"Role","_key":"104817","_from":"5793","_to":"61674"} +{"$label":"ACTS_IN","name":"Lisa Weil","type":"Role","_key":"70995","_from":"5793","_to":"43121"} +{"$label":"ACTS_IN","name":"Christine Jacobson","type":"Role","_key":"33168","_from":"5793","_to":"22969"} +{"$label":"ACTS_IN","name":"Lori Davis","type":"Role","_key":"14172","_from":"5793","_to":"10963"} +{"$label":"ACTS_IN","name":"Medical Examiner","type":"Role","_key":"6918","_from":"5807","_to":"5794"} +{"$label":"ACTS_IN","name":"Ben Gardner","type":"Role","_key":"6917","_from":"5806","_to":"5794"} +{"$label":"ACTS_IN","name":"Alex M. Kintner","type":"Role","_key":"6916","_from":"5805","_to":"5794"} +{"$label":"ACTS_IN","name":"Mrs. Kintner","type":"Role","_key":"6915","_from":"5804","_to":"5794"} +{"$label":"ACTS_IN","name":"Sean Brody","type":"Role","_key":"6914","_from":"5803","_to":"5794"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Brody","type":"Role","_key":"6913","_from":"5802","_to":"5794"} +{"$label":"ACTS_IN","name":"Tom Cassidy","type":"Role","_key":"6912","_from":"5801","_to":"5794"} +{"$label":"ACTS_IN","name":"Christine 'Chrissie' Watkins","type":"Role","_key":"6911","_from":"5800","_to":"5794"} +{"$label":"ACTS_IN","name":"Deputy Leonard 'Lenny' Hendricks","type":"Role","_key":"6910","_from":"5799","_to":"5794"} +{"$label":"ACTS_IN","name":"Ben Meadows","type":"Role","_key":"6909","_from":"5798","_to":"5794"} +{"$label":"ACTS_IN","name":"Mayor Larry Vaughn","type":"Role","_key":"6908","_from":"5797","_to":"5794"} +{"$label":"ACTS_IN","name":"Ellen Brody","type":"Role","_key":"6907","_from":"5796","_to":"5794"} +{"$label":"ACTS_IN","name":"Quint","type":"Role","_key":"6905","_from":"5795","_to":"5794"} +{"$label":"ACTS_IN","name":"Maj. Keith Mallory","type":"Role","_key":"111942","_from":"5795","_to":"66083"} +{"$label":"ACTS_IN","name":"Col Hessler","type":"Role","_key":"95024","_from":"5795","_to":"55943"} +{"$label":"ACTS_IN","name":"Sheriff of Nottingham","type":"Role","_key":"65788","_from":"5795","_to":"40718"} +{"$label":"ACTS_IN","name":"Doyle Lonnegan","type":"Role","_key":"52798","_from":"5795","_to":"34244"} +{"$label":"ACTS_IN","name":"Mr. Blue - Bernard Ryder","type":"Role","_key":"49115","_from":"5795","_to":"32182"} +{"$label":"ACTS_IN","name":"Markenkov","type":"Role","_key":"17741","_from":"5795","_to":"13233"} +{"$label":"ACTS_IN","name":"King Henry VIII","type":"Role","_key":"10395","_from":"5795","_to":"8270"} +{"$label":"ACTS_IN","name":"Donovan 'Red' Grant","type":"Role","_key":"7843","_from":"5795","_to":"6505"} +{"$label":"ACTS_IN","name":"Miss Beverly Hills","type":"Role","_key":"104519","_from":"5796","_to":"61466"} +{"$label":"ACTS_IN","name":"Joan Douglas","type":"Role","_key":"70378","_from":"5796","_to":"42868"} +{"$label":"ACTS_IN","name":"Ellen Brody","type":"Role","_key":"6936","_from":"5796","_to":"5820"} +{"$label":"ACTS_IN","name":"Ellen Brody","type":"Role","_key":"6921","_from":"5796","_to":"5808"} +{"$label":"ACTS_IN","name":"Bud Gurney","type":"Role","_key":"117439","_from":"5797","_to":"69067"} +{"$label":"ACTS_IN","name":"Fred Ferguson","type":"Role","_key":"71230","_from":"5797","_to":"43224"} +{"$label":"ACTS_IN","name":"Claude Crumn","type":"Role","_key":"70379","_from":"5797","_to":"42868"} +{"$label":"ACTS_IN","name":"John Deach","type":"Role","_key":"14391","_from":"5797","_to":"11128"} +{"$label":"ACTS_IN","name":"Capt. Alan Wilson","type":"Role","_key":"12812","_from":"5797","_to":"9995"} +{"$label":"ACTS_IN","name":"Findley","type":"Role","_key":"11717","_from":"5797","_to":"9196"} +{"$label":"ACTS_IN","name":"Mayor Larry Vaughn","type":"Role","_key":"6922","_from":"5797","_to":"5808"} +{"$label":"DIRECTED","_key":"118038","_from":"5798","_to":"69382"} +{"$label":"DIRECTED","_key":"38782","_from":"5798","_to":"26203"} +{"$label":"ACTS_IN","name":"Iron Balls McGinty","type":"Role","_key":"43557","_from":"5798","_to":"29093"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"68874","_from":"5799","_to":"42186"} +{"$label":"ACTS_IN","name":"Deputy Jeff Hendricks","type":"Role","_key":"6924","_from":"5799","_to":"5808"} +{"$label":"ACTS_IN","name":"Young Sean Brody","type":"Role","_key":"6944","_from":"5803","_to":"5820"} +{"$label":"ACTS_IN","name":"Timmy Weldon","type":"Role","_key":"6934","_from":"5819","_to":"5808"} +{"$label":"ACTS_IN","name":"Paul 'Polo' Loman","type":"Role","_key":"6933","_from":"5818","_to":"5808"} +{"$label":"ACTS_IN","name":"Eddie Marchand","type":"Role","_key":"6932","_from":"5817","_to":"5808"} +{"$label":"ACTS_IN","name":"Jackie Peters","type":"Role","_key":"6931","_from":"5816","_to":"5808"} +{"$label":"ACTS_IN","name":"Andy Nicholas","type":"Role","_key":"6930","_from":"5815","_to":"5808"} +{"$label":"ACTS_IN","name":"Grace Witherspoon","type":"Role","_key":"6929","_from":"5814","_to":"5808"} +{"$label":"ACTS_IN","name":"Tom Andrews","type":"Role","_key":"6928","_from":"5813","_to":"5808"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Brody","type":"Role","_key":"6927","_from":"5812","_to":"5808"} +{"$label":"ACTS_IN","name":"Tina Wilcox","type":"Role","_key":"6926","_from":"5811","_to":"5808"} +{"$label":"ACTS_IN","name":"Dr. Lureen Elkins","type":"Role","_key":"6925","_from":"5810","_to":"5808"} +{"$label":"DIRECTED","_key":"6919","_from":"5809","_to":"5808"} +{"$label":"DIRECTED","_key":"109684","_from":"5809","_to":"64780"} +{"$label":"DIRECTED","_key":"96224","_from":"5809","_to":"56557"} +{"$label":"DIRECTED","_key":"55291","_from":"5809","_to":"35258"} +{"$label":"DIRECTED","_key":"42246","_from":"5809","_to":"28293"} +{"$label":"DIRECTED","_key":"33033","_from":"5809","_to":"22898"} +{"$label":"ACTS_IN","name":"Mayella Violet Ewell","type":"Role","_key":"7162","_from":"5810","_to":"5978"} +{"$label":"ACTS_IN","name":"Holly Barnes","type":"Role","_key":"43830","_from":"5811","_to":"29268"} +{"$label":"ACTS_IN","name":"Phylon","type":"Role","_key":"121632","_from":"5813","_to":"71457"} +{"$label":"ACTS_IN","name":"Aunt Elizabeth","type":"Role","_key":"69728","_from":"5814","_to":"42559"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"11530","_from":"5815","_to":"9052"} +{"$label":"ACTS_IN","name":"Mrs. Taft","type":"Role","_key":"6949","_from":"5832","_to":"5820"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"6948","_from":"5831","_to":"5820"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"6947","_from":"5830","_to":"5820"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"6946","_from":"5829","_to":"5820"} +{"$label":"ACTS_IN","name":"Clarence","type":"Role","_key":"6945","_from":"5828","_to":"5820"} +{"$label":"ACTS_IN","name":"Sean Brody","type":"Role","_key":"6943","_from":"5827","_to":"5820"} +{"$label":"ACTS_IN","name":"Louisa","type":"Role","_key":"6942","_from":"5826","_to":"5820"} +{"$label":"ACTS_IN","name":"Thea Brody","type":"Role","_key":"6941","_from":"5825","_to":"5820"} +{"$label":"ACTS_IN","name":"Carla Brody","type":"Role","_key":"6940","_from":"5824","_to":"5820"} +{"$label":"ACTS_IN","name":"Mr. Witherspoon","type":"Role","_key":"6938","_from":"5823","_to":"5820"} +{"$label":"ACTS_IN","name":"Michael Brody","type":"Role","_key":"6937","_from":"5822","_to":"5820"} +{"$label":"DIRECTED","_key":"6935","_from":"5821","_to":"5820"} +{"$label":"DIRECTED","_key":"120240","_from":"5821","_to":"70608"} +{"$label":"DIRECTED","_key":"105798","_from":"5821","_to":"62284"} +{"$label":"DIRECTED","_key":"101819","_from":"5821","_to":"59927"} +{"$label":"DIRECTED","_key":"49113","_from":"5821","_to":"32182"} +{"$label":"DIRECTED","_key":"35340","_from":"5821","_to":"24063"} +{"$label":"DIRECTED","_key":"22881","_from":"5821","_to":"16575"} +{"$label":"ACTS_IN","name":"Alex Rogan","type":"Role","_key":"72532","_from":"5822","_to":"43750"} +{"$label":"ACTS_IN","name":"Jimmy Lloyd","type":"Role","_key":"68875","_from":"5822","_to":"42186"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"89096","_from":"5823","_to":"52779"} +{"$label":"ACTS_IN","name":"Corporal 'Stitch' Jones","type":"Role","_key":"59461","_from":"5823","_to":"37556"} +{"$label":"ACTS_IN","name":"Captain Davis","type":"Role","_key":"55281","_from":"5823","_to":"35249"} +{"$label":"ACTS_IN","name":"Malcolm X","type":"Role","_key":"50056","_from":"5823","_to":"32759"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"47781","_from":"5823","_to":"31463"} +{"$label":"ACTS_IN","name":"der junge Sweetback","type":"Role","_key":"39608","_from":"5823","_to":"26774"} +{"$label":"DIRECTED","_key":"66940","_from":"5823","_to":"41325"} +{"$label":"DIRECTED","_key":"55285","_from":"5823","_to":"35249"} +{"$label":"DIRECTED","_key":"39611","_from":"5823","_to":"26774"} +{"$label":"ACTS_IN","name":"The Singer","type":"Role","_key":"105691","_from":"5824","_to":"62205"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"36672","_from":"5824","_to":"24857"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"13637","_from":"5824","_to":"10596"} +{"$label":"ACTS_IN","name":"Ducky","type":"Role","_key":"88284","_from":"5825","_to":"52365"} +{"$label":"ACTS_IN","name":"Anne-Marie","type":"Role","_key":"70181","_from":"5825","_to":"42776"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"110025","_from":"5826","_to":"65011"} +{"$label":"ACTS_IN","name":"Sgt. Ladd","type":"Role","_key":"89734","_from":"5826","_to":"53116"} +{"$label":"ACTS_IN","name":"Debra Lassiter","type":"Role","_key":"56604","_from":"5826","_to":"35958"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"52302","_from":"5826","_to":"34051"} +{"$label":"ACTS_IN","name":"Pretty Shield","type":"Role","_key":"6965","_from":"5845","_to":"5833"} +{"$label":"ACTS_IN","name":"Spivey","type":"Role","_key":"6964","_from":"5844","_to":"5833"} +{"$label":"ACTS_IN","name":"Worm","type":"Role","_key":"6963","_from":"5843","_to":"5833"} +{"$label":"ACTS_IN","name":"Otter","type":"Role","_key":"6962","_from":"5842","_to":"5833"} +{"$label":"ACTS_IN","name":"Smiles A Lot","type":"Role","_key":"6961","_from":"5841","_to":"5833"} +{"$label":"ACTS_IN","name":"Stone Calf","type":"Role","_key":"6960","_from":"5840","_to":"5833"} +{"$label":"ACTS_IN","name":"Major Fambrough","type":"Role","_key":"6959","_from":"5839","_to":"5833"} +{"$label":"ACTS_IN","name":"Lieutenant Elgin","type":"Role","_key":"6958","_from":"5838","_to":"5833"} +{"$label":"ACTS_IN","name":"Timmons","type":"Role","_key":"6957","_from":"5837","_to":"5833"} +{"$label":"ACTS_IN","name":"Black Shawl","type":"Role","_key":"6956","_from":"5836","_to":"5833"} +{"$label":"ACTS_IN","name":"Ten Bears","type":"Role","_key":"6955","_from":"5835","_to":"5833"} +{"$label":"ACTS_IN","name":"Wind In His Hair","type":"Role","_key":"6954","_from":"5834","_to":"5833"} +{"$label":"ACTS_IN","name":"Tres","type":"Role","_key":"59474","_from":"5834","_to":"37557"} +{"$label":"ACTS_IN","name":"Jamuga","type":"Role","_key":"36623","_from":"5834","_to":"24814"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"58531","_from":"5835","_to":"36982"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"116393","_from":"5837","_to":"68518"} +{"$label":"ACTS_IN","name":"Oliver Greening","type":"Role","_key":"114137","_from":"5837","_to":"67216"} +{"$label":"ACTS_IN","name":"Johnny Casteleone","type":"Role","_key":"52723","_from":"5837","_to":"34221"} +{"$label":"ACTS_IN","name":"Joey Bustamente","type":"Role","_key":"42793","_from":"5837","_to":"28626"} +{"$label":"ACTS_IN","name":"Joe Loop","type":"Role","_key":"32578","_from":"5837","_to":"22640"} +{"$label":"ACTS_IN","name":"Huey Driscoll","type":"Role","_key":"24382","_from":"5837","_to":"17645"} +{"$label":"ACTS_IN","name":"Frank Perlin","type":"Role","_key":"104262","_from":"5839","_to":"61344"} +{"$label":"ACTS_IN","name":"Bailey Pruitt","type":"Role","_key":"103564","_from":"5839","_to":"60910"} +{"$label":"ACTS_IN","name":"Frank Capella","type":"Role","_key":"69614","_from":"5839","_to":"42495"} +{"$label":"ACTS_IN","name":"Wendell","type":"Role","_key":"61768","_from":"5839","_to":"38889"} +{"$label":"ACTS_IN","name":"Sally Sanmarco","type":"Role","_key":"56136","_from":"5839","_to":"35683"} +{"$label":"ACTS_IN","name":"Matthew Terell","type":"Role","_key":"50107","_from":"5839","_to":"32780"} +{"$label":"ACTS_IN","name":"Buchhalter","type":"Role","_key":"49145","_from":"5839","_to":"32190"} +{"$label":"ACTS_IN","name":"Tod Johnson","type":"Role","_key":"48022","_from":"5839","_to":"31583"} +{"$label":"ACTS_IN","name":"Alexander Falko","type":"Role","_key":"42833","_from":"5839","_to":"28641"} +{"$label":"ACTS_IN","name":"Roger Keane","type":"Role","_key":"30876","_from":"5839","_to":"21643"} +{"$label":"ACTS_IN","name":"Burt Arthus","type":"Role","_key":"26556","_from":"5839","_to":"19080"} +{"$label":"ACTS_IN","name":"Conrad Greene","type":"Role","_key":"15918","_from":"5839","_to":"12114"} +{"$label":"ACTS_IN","name":"John Reed","type":"Role","_key":"13029","_from":"5839","_to":"10160"} +{"$label":"ACTS_IN","name":"One Bull","type":"Role","_key":"94655","_from":"5841","_to":"55765"} +{"$label":"ACTS_IN","name":"Dog Star","type":"Role","_key":"113980","_from":"5842","_to":"67127"} +{"$label":"ACTS_IN","name":"Nowack","type":"Role","_key":"6980","_from":"5859","_to":"5846"} +{"$label":"ACTS_IN","name":"Axel Stigler","type":"Role","_key":"6979","_from":"5858","_to":"5846"} +{"$label":"ACTS_IN","name":"Frau Meineke","type":"Role","_key":"6978","_from":"5857","_to":"5846"} +{"$label":"ACTS_IN","name":"Udo","type":"Role","_key":"6976","_from":"5856","_to":"5846"} +{"$label":"ACTS_IN","name":"H\u00e4ftling 227","type":"Role","_key":"6975","_from":"5855","_to":"5846"} +{"$label":"ACTS_IN","name":"Karl Wallner","type":"Role","_key":"6974","_from":"5854","_to":"5846"} +{"$label":"ACTS_IN","name":"Albert Jerska","type":"Role","_key":"6973","_from":"5853","_to":"5846"} +{"$label":"ACTS_IN","name":"Paul Hauser","type":"Role","_key":"6972","_from":"5852","_to":"5846"} +{"$label":"ACTS_IN","name":"Bruno Hempf","type":"Role","_key":"6971","_from":"5851","_to":"5846"} +{"$label":"ACTS_IN","name":"Anton Grubitz","type":"Role","_key":"6970","_from":"5850","_to":"5846"} +{"$label":"ACTS_IN","name":"Georg Dreyman","type":"Role","_key":"6969","_from":"5849","_to":"5846"} +{"$label":"ACTS_IN","name":"Gerd Wiesler","type":"Role","_key":"6968","_from":"5848","_to":"5846"} +{"$label":"DIRECTED","_key":"6966","_from":"5847","_to":"5846"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"61851","_from":"5848","_to":"38933"} +{"$label":"ACTS_IN","name":"Eschbach","type":"Role","_key":"53709","_from":"5848","_to":"34633"} +{"$label":"ACTS_IN","name":"Dr. Heinrich G\u00fctzkow","type":"Role","_key":"52849","_from":"5848","_to":"34257"} +{"$label":"ACTS_IN","name":"SS-Arzt","type":"Role","_key":"52252","_from":"5848","_to":"34027"} +{"$label":"ACTS_IN","name":"Dr. Wieland","type":"Role","_key":"44011","_from":"5848","_to":"29357"} +{"$label":"ACTS_IN","name":"Prof. Adolf Israel Gr\u00fcnbaum","type":"Role","_key":"42200","_from":"5848","_to":"28267"} +{"$label":"ACTS_IN","name":"Kn\u00f6vel","type":"Role","_key":"29558","_from":"5848","_to":"20938"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"23111","_from":"5848","_to":"16754"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"17204","_from":"5848","_to":"12888"} +{"$label":"ACTS_IN","name":"Andreas Baader","type":"Role","_key":"69015","_from":"5849","_to":"42247"} +{"$label":"ACTS_IN","name":"Robert 'Nichtraucher' Uthofft","type":"Role","_key":"63803","_from":"5849","_to":"39895"} +{"$label":"ACTS_IN","name":"Oberst Claus Graf Schenk v. Stauffenberg","type":"Role","_key":"63113","_from":"5849","_to":"39591"} +{"$label":"ACTS_IN","name":"Ludwig M\u00fcntze","type":"Role","_key":"52413","_from":"5849","_to":"34105"} +{"$label":"ACTS_IN","name":"H\u00f6ss","type":"Role","_key":"52260","_from":"5849","_to":"34027"} +{"$label":"ACTS_IN","name":"Cosmo","type":"Role","_key":"50441","_from":"5849","_to":"32948"} +{"$label":"ACTS_IN","name":"Matthis Hiller","type":"Role","_key":"28036","_from":"5849","_to":"20097"} +{"$label":"ACTS_IN","name":"Klaus Mann","type":"Role","_key":"20009","_from":"5849","_to":"14724"} +{"$label":"ACTS_IN","name":"Henry Arau","type":"Role","_key":"109224","_from":"5850","_to":"64531"} +{"$label":"ACTS_IN","name":"Nick Nickelby","type":"Role","_key":"102856","_from":"5850","_to":"60509"} +{"$label":"ACTS_IN","name":"Wilhelm Uhde","type":"Role","_key":"100138","_from":"5850","_to":"59063"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"88060","_from":"5850","_to":"52271"} +{"$label":"ACTS_IN","name":"Willi Graf","type":"Role","_key":"67596","_from":"5850","_to":"41609"} +{"$label":"ACTS_IN","name":"Henning v. Tresckow","type":"Role","_key":"63114","_from":"5850","_to":"39591"} +{"$label":"ACTS_IN","name":"General Lucius Dubignon Clay Jr.","type":"Role","_key":"55361","_from":"5850","_to":"35294"} +{"$label":"ACTS_IN","name":"Kurt Gerstein","type":"Role","_key":"52250","_from":"5850","_to":"34027"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"51830","_from":"5850","_to":"33824"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"43355","_from":"5850","_to":"28964"} +{"$label":"ACTS_IN","name":"John Rabe","type":"Role","_key":"40589","_from":"5850","_to":"27336"} +{"$label":"ACTS_IN","name":"Fred Tonndorf","type":"Role","_key":"18982","_from":"5850","_to":"14031"} +{"$label":"ACTS_IN","name":"Gibarian","type":"Role","_key":"18337","_from":"5850","_to":"13602"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42500","_from":"5851","_to":"28455"} +{"$label":"ACTS_IN","name":"Rudi Kr\u00f6ll","type":"Role","_key":"31939","_from":"5851","_to":"22274"} +{"$label":"ACTS_IN","name":"Martin Bormann","type":"Role","_key":"7277","_from":"5851","_to":"6064"} +{"$label":"ACTS_IN","name":"Van Devil","type":"Role","_key":"53465","_from":"5853","_to":"34535"} +{"$label":"ACTS_IN","name":"Kurt Hillerich","type":"Role","_key":"20439","_from":"5853","_to":"14953"} +{"$label":"ACTS_IN","name":"Hugo Borke","type":"Role","_key":"19729","_from":"5853","_to":"14580"} +{"$label":"ACTS_IN","name":"Wendt","type":"Role","_key":"19453","_from":"5853","_to":"14382"} +{"$label":"ACTS_IN","name":"Tassilo","type":"Role","_key":"42916","_from":"5854","_to":"28680"} +{"$label":"ACTS_IN","name":"Bauer","type":"Role","_key":"20584","_from":"5854","_to":"15054"} +{"$label":"ACTS_IN","name":"Jan Carl Raspe","type":"Role","_key":"52540","_from":"5855","_to":"34158"} +{"$label":"ACTS_IN","name":"Pfleger Raffael","type":"Role","_key":"48280","_from":"5856","_to":"31707"} +{"$label":"ACTS_IN","name":"Klaus Heinemann","type":"Role","_key":"45920","_from":"5856","_to":"30364"} +{"$label":"ACTS_IN","name":"Michal","type":"Role","_key":"33032","_from":"5856","_to":"22895"} +{"$label":"ACTS_IN","name":"Kassiererin","type":"Role","_key":"88386","_from":"5857","_to":"52391"} +{"$label":"ACTS_IN","name":"Rita Struutz","type":"Role","_key":"71595","_from":"5857","_to":"43365"} +{"$label":"ACTS_IN","name":"Rita Struutz","type":"Role","_key":"68295","_from":"5857","_to":"41927"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"67045","_from":"5857","_to":"41385"} +{"$label":"ACTS_IN","name":"Frau Pockrandt","type":"Role","_key":"47952","_from":"5857","_to":"31545"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"46454","_from":"5857","_to":"30681"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"13203","_from":"5857","_to":"10283"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"68430","_from":"5858","_to":"41976"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42225","_from":"5858","_to":"28267"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"25183","_from":"5858","_to":"18179"} +{"$label":"ACTS_IN","name":"Henner","type":"Role","_key":"13665","_from":"5858","_to":"10613"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43846","_from":"5859","_to":"29272"} +{"$label":"ACTS_IN","name":"Pilate's Wife","type":"Role","_key":"6994","_from":"5870","_to":"5860"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"6993","_from":"5869","_to":"5860"} +{"$label":"ACTS_IN","name":"Mrs. Big Nose","type":"Role","_key":"6992","_from":"5868","_to":"5860"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"6991","_from":"5867","_to":"5860"} +{"$label":"ACTS_IN","name":"Mrs. Gregory","type":"Role","_key":"6990","_from":"5866","_to":"5860"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"6989","_from":"5865","_to":"5860"} +{"$label":"ACTS_IN","name":"Mandy Cohan","type":"Role","_key":"6987","_from":"5861","_to":"5860"} +{"$label":"ACTS_IN","name":"Mr. Cheeky","type":"Role","_key":"6986","_from":"5864","_to":"5860"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"6984","_from":"5863","_to":"5860"} +{"$label":"ACTS_IN","name":"Brian Cohan","type":"Role","_key":"6983","_from":"5862","_to":"5860"} +{"$label":"DIRECTED","_key":"6982","_from":"5861","_to":"5860"} +{"$label":"ACTS_IN","name":"Professor MacKrill (voice)","type":"Role","_key":"90582","_from":"5861","_to":"53500"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72915","_from":"5861","_to":"43907"} +{"$label":"ACTS_IN","name":"King Arnulf","type":"Role","_key":"72242","_from":"5861","_to":"43649"} +{"$label":"ACTS_IN","name":"Inspizient \/ Tabakh\u00e4ndler \/ Zweiter Ungare \/ Gutsherr \/ Selbstverteidigungs-Sch\u00fcler Nr. 3 \/ Mieter Nr. 1 \/ Exhibitionist \/ M\u00e4use Organist Ken Ewing \/ Dicker Soldat \/ Ober \/ Nackter Organist \/ Brian \/ Nigel Incubator Jones","type":"Role","_key":"52716","_from":"5861","_to":"34219"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32495","_from":"5861","_to":"22603"} +{"$label":"ACTS_IN","name":"Prince Herbert","type":"Role","_key":"8952","_from":"5861","_to":"7262"} +{"$label":"DIRECTED","_key":"72238","_from":"5861","_to":"43649"} +{"$label":"DIRECTED","_key":"32507","_from":"5861","_to":"22603"} +{"$label":"DIRECTED","_key":"8947","_from":"5861","_to":"7262"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"117566","_from":"5862","_to":"69119"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72913","_from":"5862","_to":"43907"} +{"$label":"ACTS_IN","name":"Dotterbart","type":"Role","_key":"71032","_from":"5862","_to":"43138"} +{"$label":"ACTS_IN","name":"Bruder \/ Britischer Fu\u00dfg\u00e4nger \/ Mr. Harrison (Apricot) \/ Sergeant-Major \/ 'Hell's Grannies' Polizist \/ Jimmy Blankensop \/ Sir Edward Ross \/ Restaurantgast Nr. 1 \/ Briefschreiber \/ Oliver St. John Mollusk","type":"Role","_key":"52713","_from":"5862","_to":"34219"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32492","_from":"5862","_to":"22603"} +{"$label":"ACTS_IN","name":"Hiccoughing Guard","type":"Role","_key":"8948","_from":"5862","_to":"7262"} +{"$label":"ACTS_IN","name":"Himself - Various","type":"Role","_key":"117564","_from":"5863","_to":"69119"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111813","_from":"5863","_to":"66004"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"110242","_from":"5863","_to":"65161"} +{"$label":"ACTS_IN","name":"Chief Inspector Dreyfus","type":"Role","_key":"103430","_from":"5863","_to":"60838"} +{"$label":"ACTS_IN","name":"Dr. Glickenstein","type":"Role","_key":"99276","_from":"5863","_to":"58502"} +{"$label":"ACTS_IN","name":"Rollo Lee","type":"Role","_key":"88288","_from":"5863","_to":"52367"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72912","_from":"5863","_to":"43907"} +{"$label":"ACTS_IN","name":"Brian Stimpson","type":"Role","_key":"72852","_from":"5863","_to":"43882"} +{"$label":"ACTS_IN","name":"Sheriff John T. Langston","type":"Role","_key":"70300","_from":"5863","_to":"42834"} +{"$label":"ACTS_IN","name":"Dr. Julien Plumford","type":"Role","_key":"65206","_from":"5863","_to":"40494"} +{"$label":"ACTS_IN","name":"An Ape Named 'Ape' (voice)","type":"Role","_key":"64455","_from":"5863","_to":"40161"} +{"$label":"ACTS_IN","name":"King (voice)","type":"Role","_key":"61590","_from":"5863","_to":"38823"} +{"$label":"ACTS_IN","name":"Samuel the Sheep","type":"Role","_key":"58978","_from":"5863","_to":"37240"} +{"$label":"ACTS_IN","name":"Dr. Primkin","type":"Role","_key":"56734","_from":"5863","_to":"36041"} +{"$label":"ACTS_IN","name":"Mr. Munday","type":"Role","_key":"54068","_from":"5863","_to":"34775"} +{"$label":"ACTS_IN","name":"Ansager \/ Ungarischer Man \/ Selbstverteidigungs-Lehrer \/ Sir George Head \/ Polizist \/ Interviewer \/ Mr. Praline \/ Zweiter General \/ Christopher Columbus \/ Mungo der Koch \/ Bankr\u00e4uber \/ Buchhalter Nr. 2 \/ Berufsberater \/ Vivian Smith Smythe Smith","type":"Role","_key":"52712","_from":"5863","_to":"34219"} +{"$label":"ACTS_IN","name":"Mr. Mersault","type":"Role","_key":"51763","_from":"5863","_to":"33774"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"41568","_from":"5863","_to":"27920"} +{"$label":"ACTS_IN","name":"Stuart Stu Stein","type":"Role","_key":"32995","_from":"5863","_to":"22876"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32493","_from":"5863","_to":"22603"} +{"$label":"ACTS_IN","name":"Prof. Waldman","type":"Role","_key":"25175","_from":"5863","_to":"18176"} +{"$label":"ACTS_IN","name":"King Harold (voice)","type":"Role","_key":"9547","_from":"5863","_to":"7689"} +{"$label":"ACTS_IN","name":"King (voice)","type":"Role","_key":"9534","_from":"5863","_to":"7683"} +{"$label":"ACTS_IN","name":"Tim the Enchanter","type":"Role","_key":"8949","_from":"5863","_to":"7262"} +{"$label":"ACTS_IN","name":"Nearly Headless Nick","type":"Role","_key":"8047","_from":"5863","_to":"6665"} +{"$label":"ACTS_IN","name":"Archie Leach","type":"Role","_key":"7405","_from":"5863","_to":"6174"} +{"$label":"ACTS_IN","name":"Prospector","type":"Role","_key":"113728","_from":"5864","_to":"67020"} +{"$label":"ACTS_IN","name":"Dirk McQuickly","type":"Role","_key":"108987","_from":"5864","_to":"64408"} +{"$label":"ACTS_IN","name":"Desmond \/ Berthold","type":"Role","_key":"100546","_from":"5864","_to":"59305"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"100292","_from":"5864","_to":"59140"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72914","_from":"5864","_to":"43907"} +{"$label":"ACTS_IN","name":"Brian Hope","type":"Role","_key":"68056","_from":"5864","_to":"41817"} +{"$label":"ACTS_IN","name":"Staatsanwalt \/ Eheberater \/ Arthur Nudge \/ Selbstverteidigungs-Sch\u00fcler Nr. 4 \/ 'Hell's Grannies' Analytiker \/ Arthur Wilson \/ Arthur Wilson 2 \/ Nachtclub Moderator \/ Linkman \/ Erster General \/ Restaurant Manager \/ Dessous-Ladenbesitzer \/ Buchhalter Nr. 1","type":"Role","_key":"52715","_from":"5864","_to":"34219"} +{"$label":"ACTS_IN","name":"Paul 'Dibbs' Plutzker","type":"Role","_key":"50999","_from":"5864","_to":"33288"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32494","_from":"5864","_to":"22603"} +{"$label":"ACTS_IN","name":"Merlin (voice)","type":"Role","_key":"9549","_from":"5864","_to":"7689"} +{"$label":"ACTS_IN","name":"Brother Maynard","type":"Role","_key":"8950","_from":"5864","_to":"7262"} +{"$label":"DIRECTED","_key":"108985","_from":"5864","_to":"64408"} +{"$label":"ACTS_IN","name":"Macduff","type":"Role","_key":"69092","_from":"5865","_to":"42281"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72918","_from":"5866","_to":"43907"} +{"$label":"ACTS_IN","name":"Diverse Rollen","type":"Role","_key":"32497","_from":"5866","_to":"22603"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"47598","_from":"5867","_to":"31365"} +{"$label":"ACTS_IN","name":"Imperial Force Admiral Piett","type":"Role","_key":"16345","_from":"5867","_to":"12377"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"7009","_from":"5881","_to":"5871"} +{"$label":"ACTS_IN","name":"Agent Dunn","type":"Role","_key":"7007","_from":"5880","_to":"5871"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"7006","_from":"5879","_to":"5871"} +{"$label":"ACTS_IN","name":"Slap Jack","type":"Role","_key":"7005","_from":"5878","_to":"5871"} +{"$label":"ACTS_IN","name":"Orange Julius","type":"Role","_key":"7004","_from":"5877","_to":"5871"} +{"$label":"ACTS_IN","name":"Agent Bilkins","type":"Role","_key":"7001","_from":"5876","_to":"5871"} +{"$label":"ACTS_IN","name":"Tej","type":"Role","_key":"7000","_from":"5875","_to":"5871"} +{"$label":"ACTS_IN","name":"Monica Fuentes","type":"Role","_key":"6998","_from":"5874","_to":"5871"} +{"$label":"ACTS_IN","name":"Roman Pearce","type":"Role","_key":"6997","_from":"5873","_to":"5871"} +{"$label":"ACTS_IN","name":"Brian O'Conner","type":"Role","_key":"6996","_from":"5872","_to":"5871"} +{"$label":"ACTS_IN","name":"Lance Habor","type":"Role","_key":"101501","_from":"5872","_to":"59741"} +{"$label":"ACTS_IN","name":"Ben Garvey","type":"Role","_key":"97043","_from":"5872","_to":"57091"} +{"$label":"ACTS_IN","name":"Brian O'Conner","type":"Role","_key":"96756","_from":"5872","_to":"56916"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"73046","_from":"5872","_to":"43959"} +{"$label":"ACTS_IN","name":"Caleb Mandrake","type":"Role","_key":"70091","_from":"5872","_to":"42734"} +{"$label":"ACTS_IN","name":"Lewis Thomas","type":"Role","_key":"66361","_from":"5872","_to":"41044"} +{"$label":"ACTS_IN","name":"Tim Kearney","type":"Role","_key":"63196","_from":"5872","_to":"39632"} +{"$label":"ACTS_IN","name":"Dean Sampson","type":"Role","_key":"62547","_from":"5872","_to":"39367"} +{"$label":"ACTS_IN","name":"Brian O'Conner","type":"Role","_key":"56934","_from":"5872","_to":"36141"} +{"$label":"ACTS_IN","name":"Chris Johnston","type":"Role","_key":"54699","_from":"5872","_to":"35025"} +{"$label":"ACTS_IN","name":"Jerry Shepard","type":"Role","_key":"52189","_from":"5872","_to":"34007"} +{"$label":"ACTS_IN","name":"Joey Gazelle","type":"Role","_key":"46389","_from":"5872","_to":"30650"} +{"$label":"ACTS_IN","name":"Mike Strank","type":"Role","_key":"28497","_from":"5872","_to":"20373"} +{"$label":"ACTS_IN","name":"Adell Baldwin","type":"Role","_key":"114784","_from":"5873","_to":"67613"} +{"$label":"ACTS_IN","name":"Joseph Summers","type":"Role","_key":"107634","_from":"5873","_to":"63534"} +{"$label":"ACTS_IN","name":"A.J.","type":"Role","_key":"72454","_from":"5873","_to":"43726"} +{"$label":"ACTS_IN","name":"Machine Gun Joe Mason","type":"Role","_key":"63596","_from":"5873","_to":"39790"} +{"$label":"ACTS_IN","name":"O2","type":"Role","_key":"58024","_from":"5873","_to":"36714"} +{"$label":"ACTS_IN","name":"USAF Tech Sergeant Epps","type":"Role","_key":"49411","_from":"5873","_to":"32350"} +{"$label":"ACTS_IN","name":"Angel Mercer","type":"Role","_key":"48966","_from":"5873","_to":"32108"} +{"$label":"ACTS_IN","name":"USAF Master Sgt. Epps","type":"Role","_key":"16056","_from":"5873","_to":"12202"} +{"$label":"ACTS_IN","name":"Crystal Allen","type":"Role","_key":"97898","_from":"5874","_to":"57663"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"97701","_from":"5874","_to":"57527"} +{"$label":"ACTS_IN","name":"Ann Norcut","type":"Role","_key":"93606","_from":"5874","_to":"55117"} +{"$label":"ACTS_IN","name":"Vanessa Valdeon","type":"Role","_key":"88702","_from":"5874","_to":"52559"} +{"$label":"ACTS_IN","name":"Doreen","type":"Role","_key":"88532","_from":"5874","_to":"52472"} +{"$label":"ACTS_IN","name":"Frankie Donnenfeld","type":"Role","_key":"71642","_from":"5874","_to":"43379"} +{"$label":"ACTS_IN","name":"Sara Melas","type":"Role","_key":"50046","_from":"5874","_to":"32755"} +{"$label":"ACTS_IN","name":"Sand Saref","type":"Role","_key":"48831","_from":"5874","_to":"32022"} +{"$label":"ACTS_IN","name":"Alex Diaz Whitlock","type":"Role","_key":"18448","_from":"5874","_to":"13672"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"17716","_from":"5874","_to":"13216"} +{"$label":"ACTS_IN","name":"Amanda Juarez","type":"Role","_key":"17368","_from":"5874","_to":"12991"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"15565","_from":"5874","_to":"11881"} +{"$label":"ACTS_IN","name":"Ajedrez","type":"Role","_key":"13232","_from":"5874","_to":"10305"} +{"$label":"ACTS_IN","name":"Roxanne Simpson","type":"Role","_key":"12225","_from":"5874","_to":"9573"} +{"$label":"ACTS_IN","name":"Humanez Brother","type":"Role","_key":"116421","_from":"5875","_to":"68531"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"96799","_from":"5875","_to":"56924"} +{"$label":"ACTS_IN","name":"Jim Bravura","type":"Role","_key":"92178","_from":"5875","_to":"54404"} +{"$label":"ACTS_IN","name":"DJ Donnie","type":"Role","_key":"37160","_from":"5875","_to":"25172"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"14533","_from":"5875","_to":"11201"} +{"$label":"ACTS_IN","name":"Frank \"Pops\" Morgan","type":"Role","_key":"56506","_from":"5876","_to":"35889"} +{"$label":"ACTS_IN","name":"Jack Lupino","type":"Role","_key":"92181","_from":"5877","_to":"54404"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"58543","_from":"5877","_to":"36989"} +{"$label":"ACTS_IN","name":"Palmer","type":"Role","_key":"32934","_from":"5877","_to":"22843"} +{"$label":"ACTS_IN","name":"ACWO Jorge \"Fig\" Figueroa","type":"Role","_key":"16067","_from":"5877","_to":"12202"} +{"$label":"ACTS_IN","name":"Detective Cosmo Santos","type":"Role","_key":"12381","_from":"5877","_to":"9696"} +{"$label":"ACTS_IN","name":"Tea Cake","type":"Role","_key":"112054","_from":"5878","_to":"66166"} +{"$label":"ACTS_IN","name":"Sergeant Bishop Cummings","type":"Role","_key":"89352","_from":"5878","_to":"52887"} +{"$label":"ACTS_IN","name":"Ben's Brother","type":"Role","_key":"69117","_from":"5878","_to":"42289"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"13190","_from":"5878","_to":"10277"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"7025","_from":"5891","_to":"5882"} +{"$label":"ACTS_IN","name":"Bile","type":"Role","_key":"7024","_from":"5890","_to":"5882"} +{"$label":"ACTS_IN","name":"Floor Manager","type":"Role","_key":"7022","_from":"5889","_to":"5882"} +{"$label":"ACTS_IN","name":"Yeti","type":"Role","_key":"7020","_from":"5888","_to":"5882"} +{"$label":"ACTS_IN","name":"Roz","type":"Role","_key":"7019","_from":"5887","_to":"5882"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"7018","_from":"5886","_to":"5882"} +{"$label":"ACTS_IN","name":"Boo","type":"Role","_key":"7015","_from":"5885","_to":"5882"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"7014","_from":"5884","_to":"5882"} +{"$label":"DIRECTED","_key":"7012","_from":"5883","_to":"5882"} +{"$label":"DIRECTED","_key":"98791","_from":"5883","_to":"58215"} +{"$label":"DIRECTED","_key":"97546","_from":"5883","_to":"57446"} +{"$label":"ACTS_IN","name":"Rugs Turkell","type":"Role","_key":"119355","_from":"5884","_to":"70136"} +{"$label":"ACTS_IN","name":"Danny Costanzo","type":"Role","_key":"105502","_from":"5884","_to":"62082"} +{"$label":"ACTS_IN","name":"Mike (voice)","type":"Role","_key":"97548","_from":"5884","_to":"57446"} +{"$label":"ACTS_IN","name":"Jack Lawrence","type":"Role","_key":"89900","_from":"5884","_to":"53201"} +{"$label":"ACTS_IN","name":"Larry Donner","type":"Role","_key":"72605","_from":"5884","_to":"43772"} +{"$label":"ACTS_IN","name":"Lee Phillips","type":"Role","_key":"70039","_from":"5884","_to":"42709"} +{"$label":"ACTS_IN","name":"Mitch Robbins","type":"Role","_key":"69063","_from":"5884","_to":"42268"} +{"$label":"ACTS_IN","name":"Morty the Mime","type":"Role","_key":"67435","_from":"5884","_to":"41533"} +{"$label":"ACTS_IN","name":"Mickey Gordon","type":"Role","_key":"63841","_from":"5884","_to":"39903"} +{"$label":"ACTS_IN","name":"Dr. Ben Sobel","type":"Role","_key":"58242","_from":"5884","_to":"36834"} +{"$label":"ACTS_IN","name":"Dr. Ben Sobel","type":"Role","_key":"54514","_from":"5884","_to":"34937"} +{"$label":"ACTS_IN","name":"Calcifer","type":"Role","_key":"34959","_from":"5884","_to":"23864"} +{"$label":"ACTS_IN","name":"Larry\/The Devil","type":"Role","_key":"22341","_from":"5884","_to":"16249"} +{"$label":"ACTS_IN","name":"Miracle Max","type":"Role","_key":"21706","_from":"5884","_to":"15866"} +{"$label":"ACTS_IN","name":"Mitch Robbins","type":"Role","_key":"12995","_from":"5884","_to":"10137"} +{"$label":"ACTS_IN","name":"Harry Burns","type":"Role","_key":"7640","_from":"5884","_to":"6355"} +{"$label":"DIRECTED","_key":"63847","_from":"5884","_to":"39903"} +{"$label":"ACTS_IN","name":"Ferris 'aka Maureen' Lowenstein","type":"Role","_key":"118932","_from":"5886","_to":"69895"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"118762","_from":"5886","_to":"69835"} +{"$label":"ACTS_IN","name":"Marika","type":"Role","_key":"116011","_from":"5886","_to":"68315"} +{"$label":"ACTS_IN","name":"Cathryn Richmond","type":"Role","_key":"105634","_from":"5886","_to":"62176"} +{"$label":"ACTS_IN","name":"Lynn Holden","type":"Role","_key":"103958","_from":"5886","_to":"61152"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"95972","_from":"5886","_to":"56425"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"89072","_from":"5886","_to":"52767"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"88148","_from":"5886","_to":"52302"} +{"$label":"ACTS_IN","name":"Jennifer Tilly: Tiffany","type":"Role","_key":"72813","_from":"5886","_to":"43868"} +{"$label":"ACTS_IN","name":"Queen Gunhilda","type":"Role","_key":"70663","_from":"5886","_to":"42995"} +{"$label":"ACTS_IN","name":"Olive Neal","type":"Role","_key":"69521","_from":"5886","_to":"42465"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68789","_from":"5886","_to":"42147"} +{"$label":"ACTS_IN","name":"Karen \"Razor\" Jones","type":"Role","_key":"67978","_from":"5886","_to":"41766"} +{"$label":"ACTS_IN","name":"Madame Leota","type":"Role","_key":"65499","_from":"5886","_to":"40601"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"53004","_from":"5886","_to":"34330"} +{"$label":"ACTS_IN","name":"Fran Carvey","type":"Role","_key":"18183","_from":"5886","_to":"13490"} +{"$label":"ACTS_IN","name":"Samantha Cole","type":"Role","_key":"14400","_from":"5886","_to":"11130"} +{"$label":"ACTS_IN","name":"Dug \/ Alpha (voice)","type":"Role","_key":"98796","_from":"5887","_to":"58215"} +{"$label":"ACTS_IN","name":"Geri (voice)","type":"Role","_key":"97543","_from":"5887","_to":"57442"} +{"$label":"DIRECTED","_key":"98792","_from":"5887","_to":"58215"} +{"$label":"ACTS_IN","name":"Construction Foreman Tom (voice)","type":"Role","_key":"98799","_from":"5888","_to":"58215"} +{"$label":"ACTS_IN","name":"voice of John","type":"Role","_key":"65036","_from":"5888","_to":"40412"} +{"$label":"ACTS_IN","name":"Hamm (voice)","type":"Role","_key":"61608","_from":"5888","_to":"38829"} +{"$label":"ACTS_IN","name":"Mustafa","type":"Role","_key":"17944","_from":"5888","_to":"13345"} +{"$label":"ACTS_IN","name":"Rebel Force Major Derlin","type":"Role","_key":"16347","_from":"5888","_to":"12377"} +{"$label":"ACTS_IN","name":"Abominable Snow Plow (voice)","type":"Role","_key":"10944","_from":"5888","_to":"8670"} +{"$label":"ACTS_IN","name":"Hamm the Piggy Bank (voice)","type":"Role","_key":"10263","_from":"5888","_to":"8176"} +{"$label":"ACTS_IN","name":"Hamm (voice)","type":"Role","_key":"10250","_from":"5888","_to":"8168"} +{"$label":"ACTS_IN","name":"A.D.","type":"Role","_key":"7040","_from":"5900","_to":"5892"} +{"$label":"ACTS_IN","name":"Amy Cain","type":"Role","_key":"7039","_from":"5899","_to":"5892"} +{"$label":"ACTS_IN","name":"President","type":"Role","_key":"7038","_from":"5898","_to":"5892"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"7036","_from":"5897","_to":"5892"} +{"$label":"ACTS_IN","name":"John Levy","type":"Role","_key":"7035","_from":"5896","_to":"5892"} +{"$label":"ACTS_IN","name":"Liz Butsky","type":"Role","_key":"7032","_from":"5895","_to":"5892"} +{"$label":"ACTS_IN","name":"Johnny Dean","type":"Role","_key":"7031","_from":"5894","_to":"5892"} +{"$label":"ACTS_IN","name":"Winifred Ames","type":"Role","_key":"7029","_from":"5893","_to":"5892"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"121488","_from":"5893","_to":"71364"} +{"$label":"ACTS_IN","name":"Dr. Sterling","type":"Role","_key":"108188","_from":"5893","_to":"63940"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"95630","_from":"5893","_to":"56248"} +{"$label":"ACTS_IN","name":"Marion Crane","type":"Role","_key":"68811","_from":"5893","_to":"42164"} +{"$label":"ACTS_IN","name":"Dr. Amy Barnes","type":"Role","_key":"62768","_from":"5893","_to":"39456"} +{"$label":"ACTS_IN","name":"Beth Eastern","type":"Role","_key":"62343","_from":"5893","_to":"39280"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"55116","_from":"5893","_to":"35189"} +{"$label":"ACTS_IN","name":"Maggie Pistone","type":"Role","_key":"53370","_from":"5893","_to":"34492"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"51849","_from":"5893","_to":"33830"} +{"$label":"ACTS_IN","name":"Rebecca Payne","type":"Role","_key":"50018","_from":"5893","_to":"32743"} +{"$label":"ACTS_IN","name":"Robin Monroe","type":"Role","_key":"41452","_from":"5893","_to":"27866"} +{"$label":"ACTS_IN","name":"Melissa Egan","type":"Role","_key":"28293","_from":"5893","_to":"20249"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105838","_from":"5894","_to":"62306"} +{"$label":"ACTS_IN","name":"Farmer Bob","type":"Role","_key":"97086","_from":"5894","_to":"57110"} +{"$label":"ACTS_IN","name":"Okla","type":"Role","_key":"70408","_from":"5894","_to":"42875"} +{"$label":"ACTS_IN","name":"Wendell Hickson","type":"Role","_key":"68148","_from":"5894","_to":"41856"} +{"$label":"ACTS_IN","name":"Billy 'Catch' Pooler","type":"Role","_key":"52303","_from":"5894","_to":"34051"} +{"$label":"ACTS_IN","name":"Miss Cratchitt","type":"Role","_key":"114354","_from":"5895","_to":"67357"} +{"$label":"ACTS_IN","name":"Phyllis 'Phyl' Carlson","type":"Role","_key":"110593","_from":"5895","_to":"65341"} +{"$label":"ACTS_IN","name":"Phyllis Stein","type":"Role","_key":"94331","_from":"5895","_to":"55547"} +{"$label":"ACTS_IN","name":"Anda","type":"Role","_key":"59401","_from":"5895","_to":"37525"} +{"$label":"ACTS_IN","name":"Kiss Me-Feel Me","type":"Role","_key":"57732","_from":"5895","_to":"36543"} +{"$label":"ACTS_IN","name":"Barbara 'Ms. Mac' MacHenry","type":"Role","_key":"55341","_from":"5895","_to":"35281"} +{"$label":"ACTS_IN","name":"Phlegmenkoff \/ Old Woman (voice)","type":"Role","_key":"53910","_from":"5895","_to":"34698"} +{"$label":"ACTS_IN","name":"Aunt Voula","type":"Role","_key":"49198","_from":"5895","_to":"32232"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"28178","_from":"5895","_to":"20186"} +{"$label":"ACTS_IN","name":"Therapist #1","type":"Role","_key":"121403","_from":"5896","_to":"71336"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"103202","_from":"5896","_to":"60705"} +{"$label":"ACTS_IN","name":"Scott Donlan","type":"Role","_key":"96620","_from":"5896","_to":"56824"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94148","_from":"5896","_to":"55439"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"61676","_from":"5896","_to":"38852"} +{"$label":"ACTS_IN","name":"Richard Meyers","type":"Role","_key":"56478","_from":"5896","_to":"35880"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"47204","_from":"5896","_to":"31110"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"45783","_from":"5896","_to":"30289"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"37151","_from":"5896","_to":"25172"} +{"$label":"ACTS_IN","name":"Stabschef","type":"Role","_key":"31666","_from":"5896","_to":"22099"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"22763","_from":"5896","_to":"16511"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"110085","_from":"5897","_to":"65054"} +{"$label":"ACTS_IN","name":"Russ","type":"Role","_key":"119228","_from":"5900","_to":"70052"} +{"$label":"ACTS_IN","name":"Karl the Giant","type":"Role","_key":"7050","_from":"5906","_to":"5901"} +{"$label":"ACTS_IN","name":"Older Dr. Bennett","type":"Role","_key":"7049","_from":"5905","_to":"5901"} +{"$label":"ACTS_IN","name":"Josephine","type":"Role","_key":"7048","_from":"5904","_to":"5901"} +{"$label":"ACTS_IN","name":"Younger Sandra Bloom","type":"Role","_key":"7047","_from":"5903","_to":"5901"} +{"$label":"ACTS_IN","name":"Will Bloom","type":"Role","_key":"7044","_from":"5902","_to":"5901"} +{"$label":"ACTS_IN","name":"Henry Roth","type":"Role","_key":"98564","_from":"5902","_to":"58084"} +{"$label":"ACTS_IN","name":"Tobey","type":"Role","_key":"98328","_from":"5902","_to":"57911"} +{"$label":"ACTS_IN","name":"Jon Osterman \/ Dr. Manhattan","type":"Role","_key":"93253","_from":"5902","_to":"54939"} +{"$label":"ACTS_IN","name":"Jacey Holt","type":"Role","_key":"91263","_from":"5902","_to":"53818"} +{"$label":"ACTS_IN","name":"J. Edgar Hoover","type":"Role","_key":"69122","_from":"5902","_to":"42291"} +{"$label":"ACTS_IN","name":"Pete Calder","type":"Role","_key":"12593","_from":"5902","_to":"9849"} +{"$label":"ACTS_IN","name":"Arch Cummings","type":"Role","_key":"12204","_from":"5902","_to":"9562"} +{"$label":"ACTS_IN","name":"Musgrave","type":"Role","_key":"11405","_from":"5902","_to":"8981"} +{"$label":"ACTS_IN","name":"Tommy Marcano","type":"Role","_key":"9648","_from":"5902","_to":"7756"} +{"$label":"ACTS_IN","name":"Russell Hammond","type":"Role","_key":"9237","_from":"5902","_to":"7466"} +{"$label":"ACTS_IN","name":"Trace","type":"Role","_key":"116423","_from":"5903","_to":"68531"} +{"$label":"ACTS_IN","name":"Christine Brown","type":"Role","_key":"110291","_from":"5903","_to":"65177"} +{"$label":"ACTS_IN","name":"atherine \"Katy\" McLaughlin","type":"Role","_key":"98107","_from":"5903","_to":"57764"} +{"$label":"ACTS_IN","name":"K'Harma Leeds","type":"Role","_key":"95685","_from":"5903","_to":"56281"} +{"$label":"ACTS_IN","name":"Astrid Magnussen","type":"Role","_key":"67155","_from":"5903","_to":"41437"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"58697","_from":"5903","_to":"37074"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"56133","_from":"5903","_to":"35683"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"46138","_from":"5903","_to":"30486"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"28857","_from":"5903","_to":"20622"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"20291","_from":"5903","_to":"14868"} +{"$label":"ACTS_IN","name":"C\u00e9line \/ La chanteuse du r\u00eave","type":"Role","_key":"101548","_from":"5904","_to":"59770"} +{"$label":"ACTS_IN","name":"Isabelle\/Alice","type":"Role","_key":"96123","_from":"5904","_to":"56497"} +{"$label":"ACTS_IN","name":"Billie Frechette","type":"Role","_key":"69125","_from":"5904","_to":"42291"} +{"$label":"ACTS_IN","name":"Luisa Contini","type":"Role","_key":"61632","_from":"5904","_to":"38839"} +{"$label":"ACTS_IN","name":"Fanny Chenal","type":"Role","_key":"56049","_from":"5904","_to":"35624"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"50590","_from":"5904","_to":"33043"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"49635","_from":"5904","_to":"32481"} +{"$label":"ACTS_IN","name":"Tina Lombardi","type":"Role","_key":"23886","_from":"5904","_to":"17312"} +{"$label":"ACTS_IN","name":"Lilly Bertineau","type":"Role","_key":"20477","_from":"5904","_to":"14979"} +{"$label":"ACTS_IN","name":"Lilly Bertineau","type":"Role","_key":"20463","_from":"5904","_to":"14973"} +{"$label":"ACTS_IN","name":"Lilly Bertineau","type":"Role","_key":"20446","_from":"5904","_to":"14961"} +{"$label":"ACTS_IN","name":"Edith Piaf","type":"Role","_key":"13015","_from":"5904","_to":"10151"} +{"$label":"ACTS_IN","name":"Hawkins","type":"Role","_key":"112329","_from":"5905","_to":"66317"} +{"$label":"ACTS_IN","name":"Dr. Frank Napier","type":"Role","_key":"101136","_from":"5905","_to":"59586"} +{"$label":"ACTS_IN","name":"Ted Reed","type":"Role","_key":"68764","_from":"5905","_to":"42134"} +{"$label":"ACTS_IN","name":"Human Sasquatch","type":"Role","_key":"55582","_from":"5906","_to":"35390"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"14996","_from":"5906","_to":"11531"} +{"$label":"ACTS_IN","name":"Red Pyramid\/Janitor\/Colin","type":"Role","_key":"7067","_from":"5921","_to":"5907"} +{"$label":"ACTS_IN","name":"Gas Attendant","type":"Role","_key":"7065","_from":"5920","_to":"5907"} +{"$label":"ACTS_IN","name":"Sister Margaret","type":"Role","_key":"7064","_from":"5919","_to":"5907"} +{"$label":"ACTS_IN","name":"Young Police Officer","type":"Role","_key":"7063","_from":"5918","_to":"5907"} +{"$label":"ACTS_IN","name":"Old Mechanic","type":"Role","_key":"7062","_from":"5917","_to":"5907"} +{"$label":"ACTS_IN","name":"Archivist","type":"Role","_key":"7061","_from":"5916","_to":"5907"} +{"$label":"ACTS_IN","name":"Sharon\/Alessa","type":"Role","_key":"7060","_from":"5915","_to":"5907"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"7058","_from":"5914","_to":"5907"} +{"$label":"ACTS_IN","name":"Officer Thomas Gucci","type":"Role","_key":"7057","_from":"5913","_to":"5907"} +{"$label":"ACTS_IN","name":"Dahlia Gillespie","type":"Role","_key":"7056","_from":"5912","_to":"5907"} +{"$label":"ACTS_IN","name":"Cybil Bennett","type":"Role","_key":"7055","_from":"5911","_to":"5907"} +{"$label":"ACTS_IN","name":"Rose Da Silva","type":"Role","_key":"7053","_from":"5910","_to":"5907"} +{"$label":"DIRECTED","_key":"7052","_from":"5909","_to":"5907"} +{"$label":"DIRECTED","_key":"7051","_from":"5908","_to":"5907"} +{"$label":"DIRECTED","_key":"54294","_from":"5909","_to":"34851"} +{"$label":"DIRECTED","_key":"42879","_from":"5909","_to":"28662"} +{"$label":"ACTS_IN","name":"Peters","type":"Role","_key":"121603","_from":"5910","_to":"71444"} +{"$label":"ACTS_IN","name":"Alexandra Korolenko","type":"Role","_key":"102626","_from":"5910","_to":"60382"} +{"$label":"ACTS_IN","name":"Diana Croce","type":"Role","_key":"99615","_from":"5910","_to":"58730"} +{"$label":"ACTS_IN","name":"Lee Pearson","type":"Role","_key":"94338","_from":"5910","_to":"55553"} +{"$label":"ACTS_IN","name":"Dawn Stupek","type":"Role","_key":"92638","_from":"5910","_to":"54680"} +{"$label":"ACTS_IN","name":"Kate Ryan","type":"Role","_key":"92081","_from":"5910","_to":"54333"} +{"$label":"ACTS_IN","name":"Melinda Robacheau","type":"Role","_key":"55645","_from":"5910","_to":"35428"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"54332","_from":"5910","_to":"34865"} +{"$label":"ACTS_IN","name":"Carolyn Fry","type":"Role","_key":"23576","_from":"5910","_to":"17102"} +{"$label":"ACTS_IN","name":"Kelly Shephard","type":"Role","_key":"15731","_from":"5910","_to":"11989"} +{"$label":"ACTS_IN","name":"Mary Ansell Barrie","type":"Role","_key":"10299","_from":"5910","_to":"8196"} +{"$label":"ACTS_IN","name":"Adele Stanton","type":"Role","_key":"67792","_from":"5911","_to":"41672"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"40036","_from":"5911","_to":"27031"} +{"$label":"ACTS_IN","name":"Bekkie Stander","type":"Role","_key":"118171","_from":"5912","_to":"69449"} +{"$label":"ACTS_IN","name":"Carole Kovacs","type":"Role","_key":"113907","_from":"5912","_to":"67089"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"111153","_from":"5912","_to":"65647"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"108763","_from":"5912","_to":"64293"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"102555","_from":"5912","_to":"60336"} +{"$label":"ACTS_IN","name":"Sarah Tate","type":"Role","_key":"72086","_from":"5912","_to":"43578"} +{"$label":"ACTS_IN","name":"Lisa Peters","type":"Role","_key":"63014","_from":"5912","_to":"39551"} +{"$label":"ACTS_IN","name":"Georgianna","type":"Role","_key":"58460","_from":"5912","_to":"36947"} +{"$label":"ACTS_IN","name":"Alex Johnson \/ Sarah","type":"Role","_key":"47782","_from":"5912","_to":"31463"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"27454","_from":"5912","_to":"19709"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"22501","_from":"5912","_to":"16355"} +{"$label":"ACTS_IN","name":"Mrs. Lynn Porter","type":"Role","_key":"18421","_from":"5912","_to":"13655"} +{"$label":"ACTS_IN","name":"Catherine Ballard","type":"Role","_key":"10531","_from":"5912","_to":"8373"} +{"$label":"ACTS_IN","name":"Carl Roderick","type":"Role","_key":"119523","_from":"5913","_to":"70212"} +{"$label":"ACTS_IN","name":"Skinner McGraw","type":"Role","_key":"109282","_from":"5913","_to":"64563"} +{"$label":"ACTS_IN","name":"Zo","type":"Role","_key":"99133","_from":"5913","_to":"58414"} +{"$label":"ACTS_IN","name":"Chet","type":"Role","_key":"53096","_from":"5913","_to":"34363"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"37468","_from":"5913","_to":"25390"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"17864","_from":"5913","_to":"13300"} +{"$label":"ACTS_IN","name":"MSgt. Tim \"Griz\" Martin","type":"Role","_key":"10156","_from":"5913","_to":"8112"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"18853","_from":"5914","_to":"13919"} +{"$label":"ACTS_IN","name":"Emily Bishop","type":"Role","_key":"104398","_from":"5915","_to":"61413"} +{"$label":"ACTS_IN","name":"Jeliza-Rose","type":"Role","_key":"70659","_from":"5915","_to":"42995"} +{"$label":"ACTS_IN","name":"Michael Rollins","type":"Role","_key":"58661","_from":"5915","_to":"37053"} +{"$label":"ACTS_IN","name":"Young Carrie White","type":"Role","_key":"46539","_from":"5915","_to":"30733"} +{"$label":"ACTS_IN","name":"Louis Waters","type":"Role","_key":"7087","_from":"5933","_to":"5922"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"7082","_from":"5932","_to":"5922"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"7080","_from":"5931","_to":"5922"} +{"$label":"ACTS_IN","name":"Ralph Partridge","type":"Role","_key":"7079","_from":"5930","_to":"5922"} +{"$label":"ACTS_IN","name":"Nelly Boxall","type":"Role","_key":"7078","_from":"5929","_to":"5922"} +{"$label":"ACTS_IN","name":"Lottie Hope","type":"Role","_key":"7077","_from":"5928","_to":"5922"} +{"$label":"ACTS_IN","name":"Angelica Bell","type":"Role","_key":"7076","_from":"5927","_to":"5922"} +{"$label":"ACTS_IN","name":"Julian Bell","type":"Role","_key":"7075","_from":"5926","_to":"5922"} +{"$label":"ACTS_IN","name":"Quentin Bell","type":"Role","_key":"7074","_from":"5925","_to":"5922"} +{"$label":"ACTS_IN","name":"Vanessa Bell","type":"Role","_key":"7073","_from":"5924","_to":"5922"} +{"$label":"ACTS_IN","name":"Leonard Woolf","type":"Role","_key":"7072","_from":"5923","_to":"5922"} +{"$label":"ACTS_IN","name":"Jakob Beer","type":"Role","_key":"116813","_from":"5923","_to":"68771"} +{"$label":"ACTS_IN","name":"Harry Vardon","type":"Role","_key":"104633","_from":"5923","_to":"61552"} +{"$label":"ACTS_IN","name":"Dr. Harris","type":"Role","_key":"102702","_from":"5923","_to":"60423"} +{"$label":"ACTS_IN","name":"Michael Henderson","type":"Role","_key":"102408","_from":"5923","_to":"60262"} +{"$label":"ACTS_IN","name":"Noel Quigley","type":"Role","_key":"89826","_from":"5923","_to":"53152"} +{"$label":"ACTS_IN","name":"Simon Kirkman","type":"Role","_key":"66890","_from":"5923","_to":"41301"} +{"$label":"ACTS_IN","name":"Brooks Baekeland","type":"Role","_key":"65997","_from":"5923","_to":"40841"} +{"$label":"ACTS_IN","name":"Mr. Allen","type":"Role","_key":"57256","_from":"5923","_to":"36317"} +{"$label":"ACTS_IN","name":"Glen Foy","type":"Role","_key":"57073","_from":"5923","_to":"36223"} +{"$label":"ACTS_IN","name":"Glen Foy","type":"Role","_key":"56423","_from":"5923","_to":"35852"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"54112","_from":"5923","_to":"34783"} +{"$label":"ACTS_IN","name":"Charles Harker","type":"Role","_key":"13602","_from":"5923","_to":"10575"} +{"$label":"ACTS_IN","name":"Duchess of Kent","type":"Role","_key":"115820","_from":"5924","_to":"68180"} +{"$label":"ACTS_IN","name":"Lady of the Lake","type":"Role","_key":"115285","_from":"5924","_to":"67881"} +{"$label":"ACTS_IN","name":"Veronica Scott","type":"Role","_key":"106566","_from":"5924","_to":"62792"} +{"$label":"ACTS_IN","name":"Lauren Compton","type":"Role","_key":"102714","_from":"5924","_to":"60425"} +{"$label":"ACTS_IN","name":"Sylvia Lake","type":"Role","_key":"102208","_from":"5924","_to":"60147"} +{"$label":"ACTS_IN","name":"Rita Skeeter","type":"Role","_key":"89516","_from":"5924","_to":"52992"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"69539","_from":"5924","_to":"42469"} +{"$label":"ACTS_IN","name":"Charlie Maguire","type":"Role","_key":"68783","_from":"5924","_to":"42145"} +{"$label":"ACTS_IN","name":"Queen Rosalind","type":"Role","_key":"68108","_from":"5924","_to":"41834"} +{"$label":"ACTS_IN","name":"Ingrid Fleming","type":"Role","_key":"67289","_from":"5924","_to":"41486"} +{"$label":"ACTS_IN","name":"Gloria Carter","type":"Role","_key":"63449","_from":"5924","_to":"39744"} +{"$label":"ACTS_IN","name":"Mrs. Victor","type":"Role","_key":"60829","_from":"5924","_to":"38429"} +{"$label":"ACTS_IN","name":"Madame Giry","type":"Role","_key":"57293","_from":"5924","_to":"36334"} +{"$label":"ACTS_IN","name":"Yvonne \/ Mrs. Cleg","type":"Role","_key":"55051","_from":"5924","_to":"35170"} +{"$label":"ACTS_IN","name":"Mrs. Tweedy","type":"Role","_key":"46662","_from":"5924","_to":"30817"} +{"$label":"ACTS_IN","name":"Mab, Queen of the Old Ways \/ The Lady of the Lake","type":"Role","_key":"45832","_from":"5924","_to":"30310"} +{"$label":"ACTS_IN","name":"Annette Claus","type":"Role","_key":"37152","_from":"5924","_to":"25172"} +{"$label":"ACTS_IN","name":"Toosie","type":"Role","_key":"24129","_from":"5924","_to":"17497"} +{"$label":"ACTS_IN","name":"Crone","type":"Role","_key":"22613","_from":"5924","_to":"16413"} +{"$label":"ACTS_IN","name":"La femme au trench rouge (Bastille)","type":"Role","_key":"19891","_from":"5924","_to":"14635"} +{"$label":"ACTS_IN","name":"Rita Skeeter","type":"Role","_key":"8088","_from":"5924","_to":"6682"} +{"$label":"ACTS_IN","name":"Faith Myers","type":"Role","_key":"108327","_from":"5928","_to":"64036"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"108928","_from":"5929","_to":"64373"} +{"$label":"ACTS_IN","name":"Ella Khan","type":"Role","_key":"64052","_from":"5929","_to":"39979"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"50522","_from":"5929","_to":"33000"} +{"$label":"ACTS_IN","name":"Tom Marvolo Riddle","type":"Role","_key":"8050","_from":"5930","_to":"6665"} +{"$label":"ACTS_IN","name":"Rupert","type":"Role","_key":"117168","_from":"5931","_to":"68932"} +{"$label":"ACTS_IN","name":"Jakob Hotscevar","type":"Role","_key":"95988","_from":"5931","_to":"56429"} +{"$label":"ACTS_IN","name":"Herman Wormskerck","type":"Role","_key":"32648","_from":"5931","_to":"22682"} +{"$label":"ACTS_IN","name":"Anselmus","type":"Role","_key":"20046","_from":"5931","_to":"14745"} +{"$label":"ACTS_IN","name":"Young Chris","type":"Role","_key":"108024","_from":"5932","_to":"63792"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"46374","_from":"5932","_to":"30637"} +{"$label":"ACTS_IN","name":"Jerry Farlander","type":"Role","_key":"119398","_from":"5933","_to":"70150"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"114174","_from":"5933","_to":"67261"} +{"$label":"ACTS_IN","name":"Charles 'Charlie' Tuttle","type":"Role","_key":"113886","_from":"5933","_to":"67087"} +{"$label":"ACTS_IN","name":"Senator George Fergus","type":"Role","_key":"110773","_from":"5933","_to":"65435"} +{"$label":"ACTS_IN","name":"Joshua Lawrence Chamberlain","type":"Role","_key":"106887","_from":"5933","_to":"63012"} +{"$label":"ACTS_IN","name":"Dr. Gerard Plecki","type":"Role","_key":"106182","_from":"5933","_to":"62546"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"96915","_from":"5933","_to":"57008"} +{"$label":"ACTS_IN","name":"Mert Rosenbloom","type":"Role","_key":"93138","_from":"5933","_to":"54897"} +{"$label":"ACTS_IN","name":"Zartog","type":"Role","_key":"72081","_from":"5933","_to":"43576"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"71479","_from":"5933","_to":"43329"} +{"$label":"ACTS_IN","name":"Charles Driggs","type":"Role","_key":"69009","_from":"5933","_to":"42244"} +{"$label":"ACTS_IN","name":"Thomas \"Tom\" Alden","type":"Role","_key":"67729","_from":"5933","_to":"41647"} +{"$label":"ACTS_IN","name":"Flap Horton","type":"Role","_key":"67557","_from":"5933","_to":"41594"} +{"$label":"ACTS_IN","name":"Tom Baxter \/ Gil Shepherd","type":"Role","_key":"66206","_from":"5933","_to":"40960"} +{"$label":"ACTS_IN","name":"Bernard Berkman","type":"Role","_key":"65177","_from":"5933","_to":"40485"} +{"$label":"ACTS_IN","name":"Col. Joshua Chamberlain","type":"Role","_key":"64856","_from":"5933","_to":"40343"} +{"$label":"ACTS_IN","name":"Tim O'Hara","type":"Role","_key":"57466","_from":"5933","_to":"36425"} +{"$label":"ACTS_IN","name":"Jasper 'Buddy' Noone","type":"Role","_key":"54782","_from":"5933","_to":"35055"} +{"$label":"ACTS_IN","name":"Travis Gornicke","type":"Role","_key":"54481","_from":"5933","_to":"34927"} +{"$label":"ACTS_IN","name":"Alvin Strayer","type":"Role","_key":"53651","_from":"5933","_to":"34605"} +{"$label":"ACTS_IN","name":"Harry Dune","type":"Role","_key":"49963","_from":"5933","_to":"32706"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"48655","_from":"5933","_to":"31916"} +{"$label":"ACTS_IN","name":"Dr. Ross Jennings","type":"Role","_key":"43690","_from":"5933","_to":"29183"} +{"$label":"ACTS_IN","name":"Sig Mickelson","type":"Role","_key":"26767","_from":"5933","_to":"19236"} +{"$label":"ACTS_IN","name":"Bill Johnson","type":"Role","_key":"22535","_from":"5933","_to":"16368"} +{"$label":"ACTS_IN","name":"Harold 'Harry' Temple","type":"Role","_key":"14501","_from":"5933","_to":"11195"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"7106","_from":"5944","_to":"5934"} +{"$label":"ACTS_IN","name":"Father of Silas","type":"Role","_key":"7105","_from":"5943","_to":"5934"} +{"$label":"ACTS_IN","name":"Mother of Silas","type":"Role","_key":"7104","_from":"5942","_to":"5934"} +{"$label":"ACTS_IN","name":"Ritual Priestress","type":"Role","_key":"7103","_from":"5941","_to":"5934"} +{"$label":"ACTS_IN","name":"Soeur Sandrine","type":"Role","_key":"7102","_from":"5940","_to":"5934"} +{"$label":"ACTS_IN","name":"Jacques Saunier","type":"Role","_key":"7099","_from":"5939","_to":"5934"} +{"$label":"ACTS_IN","name":"R\u00e9my Jean","type":"Role","_key":"7098","_from":"5938","_to":"5934"} +{"$label":"DIRECTED","_key":"7091","_from":"5937","_to":"5934"} +{"$label":"DIRECTED","_key":"7090","_from":"5936","_to":"5934"} +{"$label":"DIRECTED","_key":"7089","_from":"5935","_to":"5934"} +{"$label":"ACTS_IN","name":"Coutant Repentigny","type":"Role","_key":"34404","_from":"5938","_to":"23576"} +{"$label":"ACTS_IN","name":"Comte Axel de Fersen","type":"Role","_key":"30220","_from":"5938","_to":"21284"} +{"$label":"ACTS_IN","name":"Andrea Conti","type":"Role","_key":"26608","_from":"5938","_to":"19123"} +{"$label":"ACTS_IN","name":"Salomon Bellinsky","type":"Role","_key":"106056","_from":"5939","_to":"62456"} +{"$label":"ACTS_IN","name":"DUSSART","type":"Role","_key":"104000","_from":"5939","_to":"61187"} +{"$label":"ACTS_IN","name":"Abraham","type":"Role","_key":"91036","_from":"5939","_to":"53717"} +{"$label":"ACTS_IN","name":"Monsieur Fonfrin","type":"Role","_key":"17625","_from":"5939","_to":"13156"} +{"$label":"ACTS_IN","name":"Phillipine","type":"Role","_key":"91041","_from":"5941","_to":"53717"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"33324","_from":"5941","_to":"23089"} +{"$label":"ACTS_IN","name":"Colette Barnier","type":"Role","_key":"23668","_from":"5941","_to":"17159"} +{"$label":"ACTS_IN","name":"Meredith","type":"Role","_key":"7116","_from":"5949","_to":"5945"} +{"$label":"ACTS_IN","name":"Amy Fredericks","type":"Role","_key":"7114","_from":"5948","_to":"5945"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"7112","_from":"5947","_to":"5945"} +{"$label":"DIRECTED","_key":"7108","_from":"5946","_to":"5945"} +{"$label":"ACTS_IN","name":"Natalie Devlin","type":"Role","_key":"110083","_from":"5947","_to":"65054"} +{"$label":"ACTS_IN","name":"Arlene Stewart","type":"Role","_key":"44779","_from":"5947","_to":"29790"} +{"$label":"ACTS_IN","name":"Tooley","type":"Role","_key":"36330","_from":"5947","_to":"24646"} +{"$label":"ACTS_IN","name":"Regina Malloy","type":"Role","_key":"35605","_from":"5947","_to":"24197"} +{"$label":"ACTS_IN","name":"Laurie Henderson","type":"Role","_key":"9894","_from":"5947","_to":"7929"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"118764","_from":"5948","_to":"69835"} +{"$label":"ACTS_IN","name":"Claire's Mother","type":"Role","_key":"117526","_from":"5948","_to":"69102"} +{"$label":"ACTS_IN","name":"Testy True (as Terry Garr)","type":"Role","_key":"115240","_from":"5948","_to":"67853"} +{"$label":"ACTS_IN","name":"Alec's Mother","type":"Role","_key":"111701","_from":"5948","_to":"65947"} +{"$label":"ACTS_IN","name":"Caroline Butler","type":"Role","_key":"92617","_from":"5948","_to":"54673"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"66127","_from":"5948","_to":"40908"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"54797","_from":"5948","_to":"35059"} +{"$label":"ACTS_IN","name":"Louise Hamilton","type":"Role","_key":"28161","_from":"5948","_to":"20177"} +{"$label":"ACTS_IN","name":"Inga","type":"Role","_key":"25156","_from":"5948","_to":"18167"} +{"$label":"ACTS_IN","name":"Judge Esther Newberg","type":"Role","_key":"24383","_from":"5948","_to":"17645"} +{"$label":"ACTS_IN","name":"Ronnie Neary","type":"Role","_key":"9916","_from":"5948","_to":"7948"} +{"$label":"ACTS_IN","name":"Kris Kelvin","type":"Role","_key":"7130","_from":"5964","_to":"5950"} +{"$label":"ACTS_IN","name":"Prof. Messenger","type":"Role","_key":"7129","_from":"5963","_to":"5950"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"7128","_from":"5962","_to":"5950"} +{"$label":"ACTS_IN","name":"Kelvin's Mother","type":"Role","_key":"7127","_from":"5961","_to":"5950"} +{"$label":"ACTS_IN","name":"Dr. Gibarian","type":"Role","_key":"7126","_from":"5960","_to":"5950"} +{"$label":"ACTS_IN","name":"Kelvin's Father","type":"Role","_key":"7125","_from":"5959","_to":"5950"} +{"$label":"ACTS_IN","name":"Henri Berton","type":"Role","_key":"7124","_from":"5958","_to":"5950"} +{"$label":"ACTS_IN","name":"Dr. Sartorius","type":"Role","_key":"7123","_from":"5957","_to":"5950"} +{"$label":"ACTS_IN","name":"Dr. Snaut","type":"Role","_key":"7122","_from":"5956","_to":"5950"} +{"$label":"ACTS_IN","name":"Hari","type":"Role","_key":"7121","_from":"5955","_to":"5950"} +{"$label":"DIRECTED","_key":"7120","_from":"5954","_to":"5950"} +{"$label":"DIRECTED","_key":"7119","_from":"5953","_to":"5950"} +{"$label":"DIRECTED","_key":"7118","_from":"5952","_to":"5950"} +{"$label":"DIRECTED","_key":"7117","_from":"5951","_to":"5950"} +{"$label":"DIRECTED","_key":"12946","_from":"5951","_to":"10102"} +{"$label":"DIRECTED","_key":"12935","_from":"5951","_to":"10095"} +{"$label":"DIRECTED","_key":"12927","_from":"5951","_to":"10088"} +{"$label":"DIRECTED","_key":"10662","_from":"5951","_to":"8464"} +{"$label":"ACTS_IN","name":"Nadezha","type":"Role","_key":"12938","_from":"5954","_to":"10095"} +{"$label":"ACTS_IN","name":"Schriftsteller","type":"Role","_key":"12949","_from":"5957","_to":"10102"} +{"$label":"ACTS_IN","name":"Andrej Rubljow","type":"Role","_key":"10663","_from":"5957","_to":"8464"} +{"$label":"ACTS_IN","name":"Hermolin","type":"Role","_key":"20724","_from":"5959","_to":"15149"} +{"$label":"ACTS_IN","name":"Wissenschaftler","type":"Role","_key":"12950","_from":"5959","_to":"10102"} +{"$label":"ACTS_IN","name":"Direktor","type":"Role","_key":"12941","_from":"5959","_to":"10095"} +{"$label":"ACTS_IN","name":"Danil Chorny","type":"Role","_key":"10665","_from":"5959","_to":"8464"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41760","_from":"5961","_to":"28020"} +{"$label":"ACTS_IN","name":"Niania\/S\u0105siadka\/Dziwna kobieta","type":"Role","_key":"12944","_from":"5962","_to":"10095"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"7148","_from":"5977","_to":"5965"} +{"$label":"ACTS_IN","name":"Milodragovich","type":"Role","_key":"7146","_from":"5976","_to":"5965"} +{"$label":"ACTS_IN","name":"Steward First Class","type":"Role","_key":"7145","_from":"5975","_to":"5965"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"7144","_from":"5974","_to":"5965"} +{"$label":"ACTS_IN","name":"Bobby Alima","type":"Role","_key":"7143","_from":"5973","_to":"5965"} +{"$label":"ACTS_IN","name":"Waylin","type":"Role","_key":"7142","_from":"5972","_to":"5965"} +{"$label":"ACTS_IN","name":"Karl Iverson","type":"Role","_key":"7141","_from":"5971","_to":"5965"} +{"$label":"ACTS_IN","name":"Salchak","type":"Role","_key":"7140","_from":"5970","_to":"5965"} +{"$label":"ACTS_IN","name":"Gupta Rajan","type":"Role","_key":"7138","_from":"5969","_to":"5965"} +{"$label":"ACTS_IN","name":"Thurman","type":"Role","_key":"7137","_from":"5968","_to":"5965"} +{"$label":"ACTS_IN","name":"Enrique Cruz","type":"Role","_key":"7136","_from":"5967","_to":"5965"} +{"$label":"ACTS_IN","name":"Mulroy","type":"Role","_key":"7135","_from":"5966","_to":"5965"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"103210","_from":"5966","_to":"60705"} +{"$label":"ACTS_IN","name":"Curtis Smith","type":"Role","_key":"100715","_from":"5966","_to":"59387"} +{"$label":"ACTS_IN","name":"Pastor Arthur Mitchell","type":"Role","_key":"100188","_from":"5966","_to":"59094"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"92562","_from":"5966","_to":"54641"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"89176","_from":"5966","_to":"52818"} +{"$label":"ACTS_IN","name":"Cyrus","type":"Role","_key":"65722","_from":"5966","_to":"40696"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"60247","_from":"5966","_to":"38004"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"57004","_from":"5966","_to":"36167"} +{"$label":"ACTS_IN","name":"Donny Astricky","type":"Role","_key":"55515","_from":"5966","_to":"35364"} +{"$label":"ACTS_IN","name":"Tommy B. Jordan","type":"Role","_key":"50996","_from":"5966","_to":"33287"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"47219","_from":"5966","_to":"31117"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"30405","_from":"5966","_to":"21378"} +{"$label":"ACTS_IN","name":"Michael Jackson","type":"Role","_key":"107341","_from":"5967","_to":"63306"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"99009","_from":"5967","_to":"58328"} +{"$label":"ACTS_IN","name":"Lolo","type":"Role","_key":"70639","_from":"5967","_to":"42987"} +{"$label":"ACTS_IN","name":"Javier Suarez","type":"Role","_key":"64999","_from":"5967","_to":"40401"} +{"$label":"ACTS_IN","name":"Sancho","type":"Role","_key":"64473","_from":"5967","_to":"40170"} +{"$label":"ACTS_IN","name":"Jack Lira","type":"Role","_key":"61188","_from":"5967","_to":"38659"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"35503","_from":"5967","_to":"24144"} +{"$label":"ACTS_IN","name":"Beto","type":"Role","_key":"33987","_from":"5967","_to":"23385"} +{"$label":"ACTS_IN","name":"Button","type":"Role","_key":"17861","_from":"5967","_to":"13300"} +{"$label":"ACTS_IN","name":"Tenoch Iturbide","type":"Role","_key":"12917","_from":"5967","_to":"10077"} +{"$label":"ACTS_IN","name":"Alejandro","type":"Role","_key":"12559","_from":"5967","_to":"9830"} +{"$label":"ACTS_IN","name":"Tuck","type":"Role","_key":"116329","_from":"5968","_to":"68477"} +{"$label":"ACTS_IN","name":"Gene Stavitz","type":"Role","_key":"110778","_from":"5968","_to":"65435"} +{"$label":"ACTS_IN","name":"Herbert Muhammad","type":"Role","_key":"50066","_from":"5968","_to":"32759"} +{"$label":"ACTS_IN","name":"Councilman Douglas","type":"Role","_key":"48975","_from":"5968","_to":"32108"} +{"$label":"ACTS_IN","name":"Pokerface","type":"Role","_key":"43885","_from":"5968","_to":"29297"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"20610","_from":"5969","_to":"15077"} +{"$label":"ACTS_IN","name":"Mintz","type":"Role","_key":"115001","_from":"5970","_to":"67722"} +{"$label":"ACTS_IN","name":"William McKenna","type":"Role","_key":"67322","_from":"5970","_to":"41493"} +{"$label":"ACTS_IN","name":"Samuel D. Riddle","type":"Role","_key":"31904","_from":"5970","_to":"22252"} +{"$label":"ACTS_IN","name":"Mr. Earl","type":"Role","_key":"56612","_from":"5971","_to":"35958"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"46616","_from":"5971","_to":"30786"} +{"$label":"ACTS_IN","name":"Inspector Fields","type":"Role","_key":"16016","_from":"5971","_to":"12161"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"96840","_from":"5973","_to":"56940"} +{"$label":"ACTS_IN","name":"Scarface","type":"Role","_key":"54216","_from":"5973","_to":"34822"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"15678","_from":"5973","_to":"11948"} +{"$label":"ACTS_IN","name":"Ian Massey","type":"Role","_key":"26558","_from":"5975","_to":"19080"} +{"$label":"ACTS_IN","name":"Ilya Tretiak","type":"Role","_key":"59270","_from":"5976","_to":"37436"} +{"$label":"ACTS_IN","name":"Prosecutor Mr. Gilmer","type":"Role","_key":"7164","_from":"5990","_to":"5978"} +{"$label":"ACTS_IN","name":"Robert E. Lee 'Bob' Ewell","type":"Role","_key":"7163","_from":"5989","_to":"5978"} +{"$label":"ACTS_IN","name":"Judge Taylor","type":"Role","_key":"7161","_from":"5988","_to":"5978"} +{"$label":"ACTS_IN","name":"Aunt Stephanie Crawford","type":"Role","_key":"7160","_from":"5987","_to":"5978"} +{"$label":"ACTS_IN","name":"Calpurnia","type":"Role","_key":"7159","_from":"5986","_to":"5978"} +{"$label":"ACTS_IN","name":"Mrs. Dubose","type":"Role","_key":"7157","_from":"5985","_to":"5978"} +{"$label":"ACTS_IN","name":"Maudie Atkinson","type":"Role","_key":"7156","_from":"5984","_to":"5978"} +{"$label":"ACTS_IN","name":"Charles Baker 'Dill' Harris","type":"Role","_key":"7154","_from":"5983","_to":"5978"} +{"$label":"ACTS_IN","name":"Jeremy 'Jem' Finch","type":"Role","_key":"7152","_from":"5982","_to":"5978"} +{"$label":"ACTS_IN","name":"Jean Louise 'Scout' Finch","type":"Role","_key":"7151","_from":"5981","_to":"5978"} +{"$label":"ACTS_IN","name":"Atticus Finch","type":"Role","_key":"7150","_from":"5980","_to":"5978"} +{"$label":"DIRECTED","_key":"7149","_from":"5979","_to":"5978"} +{"$label":"DIRECTED","_key":"112356","_from":"5979","_to":"66338"} +{"$label":"ACTS_IN","name":"Col. Lewis Pugh","type":"Role","_key":"120793","_from":"5980","_to":"70946"} +{"$label":"ACTS_IN","name":"David Stillwell","type":"Role","_key":"120768","_from":"5980","_to":"70939"} +{"$label":"ACTS_IN","name":"Penny Baxter","type":"Role","_key":"118542","_from":"5980","_to":"69698"} +{"$label":"ACTS_IN","name":"Marshal MacKenna","type":"Role","_key":"114943","_from":"5980","_to":"67699"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114774","_from":"5980","_to":"67605"} +{"$label":"ACTS_IN","name":"Jimmy Ringo","type":"Role","_key":"112145","_from":"5980","_to":"66231"} +{"$label":"ACTS_IN","name":"Dr. Josef Mengele","type":"Role","_key":"108304","_from":"5980","_to":"64019"} +{"$label":"ACTS_IN","name":"Brigadier General Frank Savage","type":"Role","_key":"104680","_from":"5980","_to":"61589"} +{"$label":"ACTS_IN","name":"James McKay","type":"Role","_key":"89910","_from":"5980","_to":"53205"} +{"$label":"ACTS_IN","name":"Cleve Van Valen","type":"Role","_key":"72615","_from":"5980","_to":"43773"} +{"$label":"ACTS_IN","name":"Sam Bowden","type":"Role","_key":"69278","_from":"5980","_to":"42356"} +{"$label":"ACTS_IN","name":"Capt. Keith Mallory","type":"Role","_key":"66658","_from":"5980","_to":"41194"} +{"$label":"ACTS_IN","name":"Captain Ahab","type":"Role","_key":"62679","_from":"5980","_to":"39417"} +{"$label":"ACTS_IN","name":"Andrew Jorgenson","type":"Role","_key":"43474","_from":"5980","_to":"29038"} +{"$label":"ACTS_IN","name":"Harry Street","type":"Role","_key":"31852","_from":"5980","_to":"22230"} +{"$label":"ACTS_IN","name":"John Ballantine","type":"Role","_key":"29881","_from":"5980","_to":"21135"} +{"$label":"ACTS_IN","name":"Lee Heller","type":"Role","_key":"14171","_from":"5980","_to":"10963"} +{"$label":"ACTS_IN","name":"Joe Bradley","type":"Role","_key":"9467","_from":"5980","_to":"7643"} +{"$label":"ACTS_IN","name":"Robert Thorn","type":"Role","_key":"9365","_from":"5980","_to":"7561"} +{"$label":"ACTS_IN","name":"Miss Pritchard","type":"Role","_key":"63464","_from":"5984","_to":"39745"} +{"$label":"ACTS_IN","name":"Miss Reba","type":"Role","_key":"40512","_from":"5985","_to":"27278"} +{"$label":"ACTS_IN","name":"Madame Sophie","type":"Role","_key":"34871","_from":"5985","_to":"23835"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"70277","_from":"5987","_to":"42822"} +{"$label":"ACTS_IN","name":"Phil Byrnes \/ Ralph West","type":"Role","_key":"100956","_from":"5988","_to":"59500"} +{"$label":"ACTS_IN","name":"Dr. Miller","type":"Role","_key":"44549","_from":"5988","_to":"29659"} +{"$label":"ACTS_IN","name":"Major Sherry","type":"Role","_key":"43960","_from":"5988","_to":"29320"} +{"$label":"ACTS_IN","name":"Dr. Mendoza","type":"Role","_key":"28239","_from":"5988","_to":"20222"} +{"$label":"ACTS_IN","name":"Teeler Yacey","type":"Role","_key":"25699","_from":"5988","_to":"18490"} +{"$label":"ACTS_IN","name":"Cafe Owner","type":"Role","_key":"24843","_from":"5988","_to":"17967"} +{"$label":"ACTS_IN","name":"Russ Bainbridge","type":"Role","_key":"91200","_from":"5990","_to":"53786"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"14927","_from":"5990","_to":"11474"} +{"$label":"ACTS_IN","name":"Reverend Powell","type":"Role","_key":"11837","_from":"5990","_to":"9282"} +{"$label":"ACTS_IN","name":"Grandma Joad","type":"Role","_key":"7176","_from":"6001","_to":"5991"} +{"$label":"ACTS_IN","name":"Connie Rivers","type":"Role","_key":"7175","_from":"6000","_to":"5991"} +{"$label":"ACTS_IN","name":"Al Joad","type":"Role","_key":"7173","_from":"5999","_to":"5991"} +{"$label":"ACTS_IN","name":"Pa Joad","type":"Role","_key":"7172","_from":"5998","_to":"5991"} +{"$label":"ACTS_IN","name":"Rose-of-Sharon Rivers","type":"Role","_key":"7171","_from":"5997","_to":"5991"} +{"$label":"ACTS_IN","name":"Grandpa Joad","type":"Role","_key":"7170","_from":"5996","_to":"5991"} +{"$label":"ACTS_IN","name":"Casy","type":"Role","_key":"7169","_from":"5995","_to":"5991"} +{"$label":"ACTS_IN","name":"Ma Joad","type":"Role","_key":"7168","_from":"5994","_to":"5991"} +{"$label":"DIRECTED","_key":"7166","_from":"5993","_to":"5991"} +{"$label":"DIRECTED","_key":"7165","_from":"5992","_to":"5991"} +{"$label":"DIRECTED","_key":"116583","_from":"5992","_to":"68621"} +{"$label":"DIRECTED","_key":"113518","_from":"5992","_to":"66881"} +{"$label":"DIRECTED","_key":"97386","_from":"5992","_to":"57354"} +{"$label":"DIRECTED","_key":"72623","_from":"5992","_to":"43773"} +{"$label":"DIRECTED","_key":"71623","_from":"5992","_to":"43376"} +{"$label":"DIRECTED","_key":"71080","_from":"5992","_to":"43158"} +{"$label":"DIRECTED","_key":"26069","_from":"5992","_to":"18734"} +{"$label":"DIRECTED","_key":"25999","_from":"5992","_to":"18693"} +{"$label":"DIRECTED","_key":"25672","_from":"5992","_to":"18485"} +{"$label":"DIRECTED","_key":"11760","_from":"5992","_to":"9231"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38770","_from":"5992","_to":"26194"} +{"$label":"ACTS_IN","name":"Kate Nelson","type":"Role","_key":"25683","_from":"5994","_to":"18485"} +{"$label":"ACTS_IN","name":"Jenny Grier","type":"Role","_key":"11584","_from":"5994","_to":"9099"} +{"$label":"ACTS_IN","name":"Mrs. Merriwether","type":"Role","_key":"9074","_from":"5994","_to":"7317"} +{"$label":"ACTS_IN","name":"Danforth \/ Richard Burke","type":"Role","_key":"117189","_from":"5995","_to":"68941"} +{"$label":"ACTS_IN","name":"Fr. Francis Matthew Halloran","type":"Role","_key":"115253","_from":"5995","_to":"67870"} +{"$label":"ACTS_IN","name":"Long Jack","type":"Role","_key":"109373","_from":"5995","_to":"64615"} +{"$label":"ACTS_IN","name":"Orange Povey","type":"Role","_key":"104295","_from":"5995","_to":"61363"} +{"$label":"ACTS_IN","name":"Dr. Bernardo","type":"Role","_key":"71119","_from":"5995","_to":"43172"} +{"$label":"ACTS_IN","name":"Erle Kenton","type":"Role","_key":"68987","_from":"5995","_to":"42233"} +{"$label":"ACTS_IN","name":"Supreme Commander","type":"Role","_key":"61466","_from":"5995","_to":"38771"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"44961","_from":"5995","_to":"29886"} +{"$label":"ACTS_IN","name":"Himself \/ Host","type":"Role","_key":"39378","_from":"5995","_to":"26628"} +{"$label":"ACTS_IN","name":"Andoheb","type":"Role","_key":"39083","_from":"5995","_to":"26424"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"25953","_from":"5995","_to":"18663"} +{"$label":"ACTS_IN","name":"Col. Proctor Stamp","type":"Role","_key":"24146","_from":"5995","_to":"17503"} +{"$label":"ACTS_IN","name":"Hatfield","type":"Role","_key":"11764","_from":"5995","_to":"9231"} +{"$label":"ACTS_IN","name":"Jeeter Lester","type":"Role","_key":"116573","_from":"5996","_to":"68621"} +{"$label":"ACTS_IN","name":"California Joe","type":"Role","_key":"112097","_from":"5996","_to":"66188"} +{"$label":"ACTS_IN","name":"Gramp Maple","type":"Role","_key":"110945","_from":"5996","_to":"65529"} +{"$label":"ACTS_IN","name":"Uncle Salters","type":"Role","_key":"109371","_from":"5996","_to":"64615"} +{"$label":"ACTS_IN","name":"Uncle Henry","type":"Role","_key":"7495","_from":"5996","_to":"6228"} +{"$label":"ACTS_IN","name":"John Simpson","type":"Role","_key":"25686","_from":"5998","_to":"18485"} +{"$label":"ACTS_IN","name":"Bishop of Durham","type":"Role","_key":"118381","_from":"5999","_to":"69592"} +{"$label":"ACTS_IN","name":"Conway (pilot)","type":"Role","_key":"116685","_from":"6000","_to":"68689"} +{"$label":"ACTS_IN","name":"Grandma Lester","type":"Role","_key":"116582","_from":"6001","_to":"68621"} +{"$label":"ACTS_IN","name":"Slowakischer Junge","type":"Role","_key":"7206","_from":"6019","_to":"6002"} +{"$label":"ACTS_IN","name":"Cora Cartmell","type":"Role","_key":"7205","_from":"6018","_to":"6002"} +{"$label":"ACTS_IN","name":"Jack Phillips","type":"Role","_key":"7204","_from":"6017","_to":"6002"} +{"$label":"ACTS_IN","name":"Reginald Lee","type":"Role","_key":"7203","_from":"6016","_to":"6002"} +{"$label":"ACTS_IN","name":"Frederick Fleet","type":"Role","_key":"7202","_from":"6015","_to":"6002"} +{"$label":"ACTS_IN","name":"6. Offizier James P. Moody","type":"Role","_key":"7201","_from":"6014","_to":"6002"} +{"$label":"ACTS_IN","name":"2. Offizier Charles Lightoller","type":"Role","_key":"7200","_from":"6013","_to":"6002"} +{"$label":"ACTS_IN","name":"5. Offizier Harold Lowe","type":"Role","_key":"7199","_from":"6012","_to":"6002"} +{"$label":"ACTS_IN","name":"John Jacob Astor IV","type":"Role","_key":"7196","_from":"6011","_to":"6002"} +{"$label":"ACTS_IN","name":"Isidore Strauss","type":"Role","_key":"7195","_from":"6010","_to":"6002"} +{"$label":"ACTS_IN","name":"Benjamin Guggenheim","type":"Role","_key":"7194","_from":"6009","_to":"6002"} +{"$label":"ACTS_IN","name":"Tommy Ryan","type":"Role","_key":"7193","_from":"6008","_to":"6002"} +{"$label":"ACTS_IN","name":"Fabrizio","type":"Role","_key":"7192","_from":"6007","_to":"6002"} +{"$label":"ACTS_IN","name":"Bobby Buell","type":"Role","_key":"7191","_from":"6006","_to":"6002"} +{"$label":"ACTS_IN","name":"Lewis Bodine","type":"Role","_key":"7190","_from":"6005","_to":"6002"} +{"$label":"ACTS_IN","name":"Thomas Andrews","type":"Role","_key":"7187","_from":"6004","_to":"6002"} +{"$label":"ACTS_IN","name":"Molly Brown","type":"Role","_key":"7182","_from":"6003","_to":"6002"} +{"$label":"ACTS_IN","name":"Margene","type":"Role","_key":"109889","_from":"6003","_to":"64931"} +{"$label":"ACTS_IN","name":"Charlotte Cartwright","type":"Role","_key":"104442","_from":"6003","_to":"61433"} +{"$label":"ACTS_IN","name":"Mary Ann Bankhead","type":"Role","_key":"104273","_from":"6003","_to":"61347"} +{"$label":"ACTS_IN","name":"Agnes Menure","type":"Role","_key":"102515","_from":"6003","_to":"60316"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"102096","_from":"6003","_to":"60066"} +{"$label":"ACTS_IN","name":"Kippie Kann","type":"Role","_key":"102040","_from":"6003","_to":"60035"} +{"$label":"ACTS_IN","name":"Rae Flowers","type":"Role","_key":"94996","_from":"6003","_to":"55928"} +{"$label":"ACTS_IN","name":"Ma James","type":"Role","_key":"94823","_from":"6003","_to":"55841"} +{"$label":"ACTS_IN","name":"Dolores Claiborne","type":"Role","_key":"72797","_from":"6003","_to":"43864"} +{"$label":"ACTS_IN","name":"Det. Shirley Vogel","type":"Role","_key":"67115","_from":"6003","_to":"41420"} +{"$label":"ACTS_IN","name":"Mama Boucher","type":"Role","_key":"64904","_from":"6003","_to":"40359"} +{"$label":"ACTS_IN","name":"Mrs. Belmont","type":"Role","_key":"59992","_from":"6003","_to":"37868"} +{"$label":"ACTS_IN","name":"Bitsy the Cow","type":"Role","_key":"58982","_from":"6003","_to":"37240"} +{"$label":"ACTS_IN","name":"Libby Holden","type":"Role","_key":"53858","_from":"6003","_to":"34689"} +{"$label":"ACTS_IN","name":"Mrs. Green","type":"Role","_key":"50245","_from":"6003","_to":"32833"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"45003","_from":"6003","_to":"29901"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"41278","_from":"6003","_to":"27753"} +{"$label":"ACTS_IN","name":"Janet Benson","type":"Role","_key":"37856","_from":"6003","_to":"25647"} +{"$label":"ACTS_IN","name":"Christine Chapman","type":"Role","_key":"37663","_from":"6003","_to":"25534"} +{"$label":"ACTS_IN","name":"Mother Claus","type":"Role","_key":"37154","_from":"6003","_to":"25172"} +{"$label":"ACTS_IN","name":"Mrs. Helen Givings","type":"Role","_key":"29783","_from":"6003","_to":"21077"} +{"$label":"ACTS_IN","name":"Roberta Hertzel","type":"Role","_key":"23288","_from":"6003","_to":"16888"} +{"$label":"ACTS_IN","name":"Leah Blier","type":"Role","_key":"22204","_from":"6003","_to":"16177"} +{"$label":"ACTS_IN","name":"Miss Swaffer","type":"Role","_key":"16986","_from":"6003","_to":"12742"} +{"$label":"ACTS_IN","name":"Annie Wilkes","type":"Role","_key":"15065","_from":"6003","_to":"11579"} +{"$label":"ACTS_IN","name":"Evelyn Couch","type":"Role","_key":"14468","_from":"6003","_to":"11180"} +{"$label":"ACTS_IN","name":"Monsignor De Angelis","type":"Role","_key":"113540","_from":"6004","_to":"66900"} +{"$label":"ACTS_IN","name":"Sinestro (voice)","type":"Role","_key":"112266","_from":"6004","_to":"66293"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110865","_from":"6004","_to":"65485"} +{"$label":"ACTS_IN","name":"Robert Foster","type":"Role","_key":"96264","_from":"6004","_to":"56562"} +{"$label":"ACTS_IN","name":"Professor Callahan","type":"Role","_key":"50945","_from":"6004","_to":"33247"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"10200","_from":"6004","_to":"8139"} +{"$label":"ACTS_IN","name":"Vincent Sforza","type":"Role","_key":"121155","_from":"6007","_to":"71172"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"103944","_from":"6007","_to":"61143"} +{"$label":"ACTS_IN","name":"WitSec Deputy Monroe","type":"Role","_key":"52725","_from":"6007","_to":"34221"} +{"$label":"ACTS_IN","name":"Hugo D\u00edaz","type":"Role","_key":"46414","_from":"6007","_to":"30656"} +{"$label":"ACTS_IN","name":"Officer Giraldi","type":"Role","_key":"16000","_from":"6007","_to":"12161"} +{"$label":"ACTS_IN","name":"Professor David Wallace","type":"Role","_key":"119572","_from":"6008","_to":"70238"} +{"$label":"ACTS_IN","name":"Valentine","type":"Role","_key":"100609","_from":"6008","_to":"59326"} +{"$label":"ACTS_IN","name":"Dr. Howard Phillips","type":"Role","_key":"69809","_from":"6008","_to":"42603"} +{"$label":"ACTS_IN","name":"The Reverend","type":"Role","_key":"110540","_from":"6009","_to":"65312"} +{"$label":"ACTS_IN","name":"Chet Parker","type":"Role","_key":"69725","_from":"6009","_to":"42559"} +{"$label":"ACTS_IN","name":"Beringer's Aide","type":"Role","_key":"10231","_from":"6009","_to":"8154"} +{"$label":"ACTS_IN","name":"Reese Paxton","type":"Role","_key":"110791","_from":"6011","_to":"65440"} +{"$label":"ACTS_IN","name":"Dr Charles Forbin","type":"Role","_key":"101820","_from":"6011","_to":"59927"} +{"$label":"ACTS_IN","name":"Captain Drangel","type":"Role","_key":"38754","_from":"6011","_to":"26184"} +{"$label":"ACTS_IN","name":"Dr. Otto Hasslein","type":"Role","_key":"14926","_from":"6011","_to":"11474"} +{"$label":"ACTS_IN","name":"Horatio Hornblower","type":"Role","_key":"120209","_from":"6012","_to":"70594"} +{"$label":"ACTS_IN","name":"Sir Benjamin","type":"Role","_key":"114685","_from":"6012","_to":"67560"} +{"$label":"ACTS_IN","name":"Richard McCallister","type":"Role","_key":"111877","_from":"6012","_to":"66047"} +{"$label":"ACTS_IN","name":"William Wilberforce","type":"Role","_key":"103437","_from":"6012","_to":"60841"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"102299","_from":"6012","_to":"60192"} +{"$label":"ACTS_IN","name":"Dan Blakeley","type":"Role","_key":"66889","_from":"6012","_to":"41301"} +{"$label":"ACTS_IN","name":"Tony Blair","type":"Role","_key":"63829","_from":"6012","_to":"39901"} +{"$label":"ACTS_IN","name":"Kevin Shepherd","type":"Role","_key":"63578","_from":"6012","_to":"39784"} +{"$label":"ACTS_IN","name":"Reed Richards","type":"Role","_key":"56205","_from":"6012","_to":"35722"} +{"$label":"ACTS_IN","name":"Lancelot","type":"Role","_key":"54108","_from":"6012","_to":"34783"} +{"$label":"ACTS_IN","name":"Reed Richards \/ Mr. Fantastic","type":"Role","_key":"17150","_from":"6012","_to":"12853"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"62432","_from":"6015","_to":"39330"} +{"$label":"ACTS_IN","name":"Fil\u00e9-com-Fritas","type":"Role","_key":"7223","_from":"6036","_to":"6020"} +{"$label":"ACTS_IN","name":"Buscap\u00e9 Crian\u00e7a","type":"Role","_key":"7222","_from":"6035","_to":"6020"} +{"$label":"ACTS_IN","name":"Berenice","type":"Role","_key":"7221","_from":"6034","_to":"6020"} +{"$label":"ACTS_IN","name":"Ang\u00e9lica","type":"Role","_key":"7220","_from":"6033","_to":"6020"} +{"$label":"ACTS_IN","name":"Alicate","type":"Role","_key":"7219","_from":"6032","_to":"6020"} +{"$label":"ACTS_IN","name":"Sandro Cenoura","type":"Role","_key":"7217","_from":"6031","_to":"6020"} +{"$label":"ACTS_IN","name":"Cabeleira","type":"Role","_key":"7216","_from":"6030","_to":"6020"} +{"$label":"ACTS_IN","name":"Dadinho","type":"Role","_key":"7215","_from":"6029","_to":"6020"} +{"$label":"ACTS_IN","name":"Ben\u00e9","type":"Role","_key":"7214","_from":"6028","_to":"6020"} +{"$label":"ACTS_IN","name":"Z\u00e9 Pequeno","type":"Role","_key":"7213","_from":"6027","_to":"6020"} +{"$label":"ACTS_IN","name":"Buscap\u00e9","type":"Role","_key":"7212","_from":"6026","_to":"6020"} +{"$label":"DIRECTED","_key":"7211","_from":"6025","_to":"6020"} +{"$label":"DIRECTED","_key":"7210","_from":"6024","_to":"6020"} +{"$label":"DIRECTED","_key":"7209","_from":"6023","_to":"6020"} +{"$label":"DIRECTED","_key":"7208","_from":"6022","_to":"6020"} +{"$label":"DIRECTED","_key":"7207","_from":"6021","_to":"6020"} +{"$label":"DIRECTED","_key":"49843","_from":"6021","_to":"32626"} +{"$label":"DIRECTED","_key":"49136","_from":"6021","_to":"32190"} +{"$label":"DIRECTED","_key":"17175","_from":"6021","_to":"12868"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89454","_from":"6028","_to":"52964"} +{"$label":"ACTS_IN","name":"Acerola \u00b4Ace\u00b4","type":"Role","_key":"46545","_from":"6029","_to":"30743"} +{"$label":"ACTS_IN","name":"Madrugad\u00e3o \u00b4Midnight`","type":"Role","_key":"46547","_from":"6030","_to":"30743"} +{"$label":"ACTS_IN","name":"Nazda","type":"Role","_key":"104924","_from":"6031","_to":"61738"} +{"$label":"ACTS_IN","name":"Isa\u00edas","type":"Role","_key":"7970","_from":"6031","_to":"6599"} +{"$label":"DIRECTED","_key":"51526","_from":"6031","_to":"33599"} +{"$label":"ACTS_IN","name":"Mireya Sanchez","type":"Role","_key":"105041","_from":"6033","_to":"61815"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"104921","_from":"6033","_to":"61738"} +{"$label":"ACTS_IN","name":"Sondra Terry","type":"Role","_key":"89298","_from":"6033","_to":"52865"} +{"$label":"ACTS_IN","name":"Karinna","type":"Role","_key":"49833","_from":"6033","_to":"32617"} +{"$label":"ACTS_IN","name":"Frau mit Sonnenbrille","type":"Role","_key":"49141","_from":"6033","_to":"32190"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"43613","_from":"6033","_to":"29124"} +{"$label":"ACTS_IN","name":"Laranjinha `Wallace\u00b4","type":"Role","_key":"46546","_from":"6036","_to":"30743"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"7240","_from":"6052","_to":"6037"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"7239","_from":"6051","_to":"6037"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"7238","_from":"6050","_to":"6037"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"7237","_from":"6049","_to":"6037"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"7236","_from":"6048","_to":"6037"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"7235","_from":"6047","_to":"6037"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"7234","_from":"6046","_to":"6037"} +{"$label":"ACTS_IN","name":"Artie Green","type":"Role","_key":"7233","_from":"6045","_to":"6037"} +{"$label":"ACTS_IN","name":"Morino","type":"Role","_key":"7232","_from":"6044","_to":"6037"} +{"$label":"ACTS_IN","name":"Sheldrake","type":"Role","_key":"7231","_from":"6043","_to":"6037"} +{"$label":"ACTS_IN","name":"Betty Schaefer","type":"Role","_key":"7230","_from":"6042","_to":"6037"} +{"$label":"ACTS_IN","name":"Max von Mayerling","type":"Role","_key":"7229","_from":"6041","_to":"6037"} +{"$label":"ACTS_IN","name":"Norma Desmond","type":"Role","_key":"7228","_from":"6040","_to":"6037"} +{"$label":"DIRECTED","_key":"7226","_from":"6039","_to":"6037"} +{"$label":"DIRECTED","_key":"7225","_from":"6038","_to":"6037"} +{"$label":"DIRECTED","_key":"31863","_from":"6039","_to":"22236"} +{"$label":"DIRECTED","_key":"16604","_from":"6039","_to":"12545"} +{"$label":"ACTS_IN","name":"Jacob ten Brinken","type":"Role","_key":"24553","_from":"6041","_to":"17763"} +{"$label":"ACTS_IN","name":"Capt. von Rauffenstein","type":"Role","_key":"9150","_from":"6041","_to":"7397"} +{"$label":"DIRECTED","_key":"12986","_from":"6041","_to":"10131"} +{"$label":"ACTS_IN","name":"Betsy Carlisle","type":"Role","_key":"114562","_from":"6042","_to":"67489"} +{"$label":"ACTS_IN","name":"Secretary at Ford Motor Company","type":"Role","_key":"54793","_from":"6042","_to":"35058"} +{"$label":"ACTS_IN","name":"Frank Hugo","type":"Role","_key":"117864","_from":"6043","_to":"69289"} +{"$label":"ACTS_IN","name":"Dwight Babcock","type":"Role","_key":"108826","_from":"6043","_to":"64318"} +{"$label":"ACTS_IN","name":"Daniel Winston","type":"Role","_key":"105936","_from":"6043","_to":"62369"} +{"$label":"ACTS_IN","name":"Waldo Brewster","type":"Role","_key":"62456","_from":"6043","_to":"39337"} +{"$label":"ACTS_IN","name":"Roberts","type":"Role","_key":"112428","_from":"6044","_to":"66378"} +{"$label":"ACTS_IN","name":"Norm","type":"Role","_key":"16244","_from":"6045","_to":"12325"} +{"$label":"ACTS_IN","name":"Erronius","type":"Role","_key":"113877","_from":"6046","_to":"67081"} +{"$label":"ACTS_IN","name":"Jimmy the Crook","type":"Role","_key":"70834","_from":"6046","_to":"43041"} +{"$label":"ACTS_IN","name":"Train Conductor","type":"Role","_key":"24145","_from":"6046","_to":"17503"} +{"$label":"ACTS_IN","name":"Sherlock, Jr.","type":"Role","_key":"11732","_from":"6046","_to":"9210"} +{"$label":"ACTS_IN","name":"Johnny Gray","type":"Role","_key":"11426","_from":"6046","_to":"8993"} +{"$label":"ACTS_IN","name":"William McKay","type":"Role","_key":"8455","_from":"6046","_to":"6897"} +{"$label":"DIRECTED","_key":"11731","_from":"6046","_to":"9210"} +{"$label":"DIRECTED","_key":"11425","_from":"6046","_to":"8993"} +{"$label":"DIRECTED","_key":"8447","_from":"6046","_to":"6897"} +{"$label":"DIRECTED","_key":"44950","_from":"6047","_to":"29886"} +{"$label":"ACTS_IN","name":"Chang","type":"Role","_key":"28303","_from":"6052","_to":"20257"} +{"$label":"ACTS_IN","name":"Sen. Agnew","type":"Role","_key":"25601","_from":"6052","_to":"18430"} +{"$label":"ACTS_IN","name":"Mr. Gower","type":"Role","_key":"14046","_from":"6052","_to":"10886"} +{"$label":"ACTS_IN","name":"Mahmoud Hamshari","type":"Role","_key":"7259","_from":"6063","_to":"6053"} +{"$label":"ACTS_IN","name":"General Zamir","type":"Role","_key":"7257","_from":"6062","_to":"6053"} +{"$label":"ACTS_IN","name":"Golda Meir","type":"Role","_key":"7256","_from":"6061","_to":"6053"} +{"$label":"ACTS_IN","name":"Jeanette","type":"Role","_key":"7254","_from":"6060","_to":"6053"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"7253","_from":"6059","_to":"6053"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"7250","_from":"6058","_to":"6053"} +{"$label":"ACTS_IN","name":"Avner's Mother","type":"Role","_key":"7249","_from":"6057","_to":"6053"} +{"$label":"ACTS_IN","name":"Daphna","type":"Role","_key":"7247","_from":"6056","_to":"6053"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"7243","_from":"6055","_to":"6053"} +{"$label":"ACTS_IN","name":"Avner","type":"Role","_key":"7242","_from":"6054","_to":"6053"} +{"$label":"ACTS_IN","name":"Con Petropoulous","type":"Role","_key":"97211","_from":"6054","_to":"57181"} +{"$label":"ACTS_IN","name":"Nero","type":"Role","_key":"94685","_from":"6054","_to":"55786"} +{"$label":"ACTS_IN","name":"Henry Tudor","type":"Role","_key":"88554","_from":"6054","_to":"52483"} +{"$label":"ACTS_IN","name":"Mark Brandon 'Chopper' Read","type":"Role","_key":"54408","_from":"6054","_to":"34896"} +{"$label":"ACTS_IN","name":"Lotto","type":"Role","_key":"43186","_from":"6054","_to":"28840"} +{"$label":"ACTS_IN","name":"Huck Cheever","type":"Role","_key":"16924","_from":"6054","_to":"12718"} +{"$label":"ACTS_IN","name":"Dr. Bruce Banner \/ The Hulk","type":"Role","_key":"16710","_from":"6054","_to":"12608"} +{"$label":"ACTS_IN","name":"Sfc. Norm 'Hoot' Hooten","type":"Role","_key":"10141","_from":"6054","_to":"8112"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"7805","_from":"6054","_to":"6469"} +{"$label":"ACTS_IN","name":"Red Rackham","type":"Role","_key":"113226","_from":"6055","_to":"66717"} +{"$label":"ACTS_IN","name":"Sergeant Botha","type":"Role","_key":"97031","_from":"6055","_to":"57064"} +{"$label":"ACTS_IN","name":"Tuvia Bielski","type":"Role","_key":"96822","_from":"6055","_to":"56939"} +{"$label":"ACTS_IN","name":"Joe Scott","type":"Role","_key":"96701","_from":"6055","_to":"56883"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"65621","_from":"6055","_to":"40670"} +{"$label":"ACTS_IN","name":"Perry Smith","type":"Role","_key":"55449","_from":"6055","_to":"35334"} +{"$label":"ACTS_IN","name":"Rudy Mackenzie","type":"Role","_key":"55424","_from":"6055","_to":"35328"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"53558","_from":"6055","_to":"34569"} +{"$label":"ACTS_IN","name":"Barth\u00e9l\u00e9my Karas","type":"Role","_key":"53548","_from":"6055","_to":"34565"} +{"$label":"ACTS_IN","name":"George Dyer","type":"Role","_key":"35257","_from":"6055","_to":"24006"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"34422","_from":"6055","_to":"23588"} +{"$label":"ACTS_IN","name":"XXXX","type":"Role","_key":"34301","_from":"6055","_to":"23533"} +{"$label":"ACTS_IN","name":"John Ballard","type":"Role","_key":"32271","_from":"6055","_to":"22475"} +{"$label":"ACTS_IN","name":"Connor Rooney","type":"Role","_key":"29771","_from":"6055","_to":"21072"} +{"$label":"ACTS_IN","name":"Lord Asriel","type":"Role","_key":"19910","_from":"6055","_to":"14664"} +{"$label":"ACTS_IN","name":"Alex West","type":"Role","_key":"17299","_from":"6055","_to":"12947"} +{"$label":"ACTS_IN","name":"Michaela","type":"Role","_key":"116815","_from":"6056","_to":"68771"} +{"$label":"ACTS_IN","name":"Gina Grey","type":"Role","_key":"116510","_from":"6056","_to":"68578"} +{"$label":"ACTS_IN","name":"Vittoria Vetra","type":"Role","_key":"94505","_from":"6056","_to":"55655"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"46820","_from":"6056","_to":"30888"} +{"$label":"ACTS_IN","name":"Serge Schaeffer","type":"Role","_key":"110799","_from":"6058","_to":"65443"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Besse","type":"Role","_key":"104127","_from":"6058","_to":"61260"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Grimbert at 37 years old","type":"Role","_key":"96101","_from":"6058","_to":"56486"} +{"$label":"ACTS_IN","name":"Dominic Greene","type":"Role","_key":"65623","_from":"6058","_to":"40670"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"51346","_from":"6058","_to":"33480"} +{"$label":"ACTS_IN","name":"Denis","type":"Role","_key":"43007","_from":"6058","_to":"28730"} +{"$label":"ACTS_IN","name":"Jean-Dominique Bauby","type":"Role","_key":"17473","_from":"6058","_to":"13069"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"72773","_from":"6059","_to":"43840"} +{"$label":"ACTS_IN","name":"Sophie Paulsen","type":"Role","_key":"72765","_from":"6059","_to":"43838"} +{"$label":"ACTS_IN","name":"Musiklehrerin","type":"Role","_key":"68160","_from":"6059","_to":"41857"} +{"$label":"ACTS_IN","name":"Moni","type":"Role","_key":"59495","_from":"6059","_to":"37567"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen","type":"Role","_key":"56232","_from":"6059","_to":"35728"} +{"$label":"ACTS_IN","name":"Zillie Watussnik","type":"Role","_key":"55237","_from":"6059","_to":"35234"} +{"$label":"ACTS_IN","name":"Herta","type":"Role","_key":"55078","_from":"6059","_to":"35179"} +{"$label":"ACTS_IN","name":"Erna Eggstein","type":"Role","_key":"54446","_from":"6059","_to":"34914"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42217","_from":"6059","_to":"28267"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"35530","_from":"6059","_to":"24156"} +{"$label":"ACTS_IN","name":"Angelika \" Sunny \" Schaefer","type":"Role","_key":"32963","_from":"6059","_to":"22852"} +{"$label":"ACTS_IN","name":"Elli Gast","type":"Role","_key":"9425","_from":"6059","_to":"7605"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"113496","_from":"6060","_to":"66872"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"108852","_from":"6060","_to":"64332"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"67077","_from":"6060","_to":"41401"} +{"$label":"ACTS_IN","name":"Margot Beck","type":"Role","_key":"65838","_from":"6060","_to":"40747"} +{"$label":"ACTS_IN","name":"Pregnant Woman","type":"Role","_key":"65135","_from":"6060","_to":"40459"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"62246","_from":"6060","_to":"39206"} +{"$label":"ACTS_IN","name":"C\u00e9cile","type":"Role","_key":"56169","_from":"6060","_to":"35705"} +{"$label":"ACTS_IN","name":"Henriette Durand","type":"Role","_key":"17475","_from":"6060","_to":"13069"} +{"$label":"ACTS_IN","name":"Trudy Epner","type":"Role","_key":"93406","_from":"6061","_to":"55010"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"32736","_from":"6061","_to":"22725"} +{"$label":"ACTS_IN","name":"Patty at the Good to Go","type":"Role","_key":"17875","_from":"6061","_to":"13303"} +{"$label":"ACTS_IN","name":"Abasi Fawal","type":"Role","_key":"36014","_from":"6063","_to":"24454"} +{"$label":"ACTS_IN","name":"Walter Hewel","type":"Role","_key":"7280","_from":"6076","_to":"6064"} +{"$label":"ACTS_IN","name":"Peter Kranz","type":"Role","_key":"7278","_from":"6075","_to":"6064"} +{"$label":"ACTS_IN","name":"Kammerdiener Heinz Linge","type":"Role","_key":"7276","_from":"6074","_to":"6064"} +{"$label":"ACTS_IN","name":"SS-Hauptsturmf\u00fchrer Otto G\u00fcnsche","type":"Role","_key":"7275","_from":"6073","_to":"6064"} +{"$label":"ACTS_IN","name":"Generaloberst Alfred Jodl","type":"Role","_key":"7274","_from":"6072","_to":"6064"} +{"$label":"ACTS_IN","name":"SS-Brigadef\u00fchrer Wilhelm Mohnke","type":"Role","_key":"7273","_from":"6071","_to":"6064"} +{"$label":"ACTS_IN","name":"General der Artillerie Helmuth Weidling","type":"Role","_key":"7272","_from":"6070","_to":"6064"} +{"$label":"ACTS_IN","name":"General der Infanterie Hans Krebs","type":"Role","_key":"7270","_from":"6069","_to":"6064"} +{"$label":"ACTS_IN","name":"Gerda Christian","type":"Role","_key":"7269","_from":"6068","_to":"6064"} +{"$label":"ACTS_IN","name":"Reichsf\u00fchrer SS Heinrich Himmler","type":"Role","_key":"7268","_from":"6067","_to":"6064"} +{"$label":"ACTS_IN","name":"Eva Braun","type":"Role","_key":"7264","_from":"6066","_to":"6064"} +{"$label":"ACTS_IN","name":"Joseph Goebbels","type":"Role","_key":"7263","_from":"6065","_to":"6064"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"90300","_from":"6065","_to":"53382"} +{"$label":"ACTS_IN","name":"Jan-Carl Raspe","type":"Role","_key":"69017","_from":"6065","_to":"42247"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Henri Kremer","type":"Role","_key":"68463","_from":"6065","_to":"41999"} +{"$label":"ACTS_IN","name":"TV showmaster","type":"Role","_key":"58965","_from":"6065","_to":"37225"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"9188","_from":"6065","_to":"7431"} +{"$label":"ACTS_IN","name":"Ruth Edelson","type":"Role","_key":"116515","_from":"6066","_to":"68578"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"91786","_from":"6066","_to":"54145"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"90309","_from":"6066","_to":"53382"} +{"$label":"ACTS_IN","name":"Alex Niemann","type":"Role","_key":"38460","_from":"6066","_to":"25979"} +{"$label":"ACTS_IN","name":"Lilly \" Aimee \" W\u00fcst","type":"Role","_key":"19217","_from":"6066","_to":"14207"} +{"$label":"ACTS_IN","name":"Jettel Redlich","type":"Role","_key":"14092","_from":"6066","_to":"10923"} +{"$label":"ACTS_IN","name":"Bettina Pogge","type":"Role","_key":"9423","_from":"6066","_to":"7605"} +{"$label":"ACTS_IN","name":"Peter Hoffman","type":"Role","_key":"100334","_from":"6067","_to":"59165"} +{"$label":"ACTS_IN","name":"Herr Taschenbier","type":"Role","_key":"64805","_from":"6067","_to":"40322"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"64087","_from":"6067","_to":"39999"} +{"$label":"ACTS_IN","name":"Dr. Johann 'Justus' B\u00f6kh","type":"Role","_key":"63802","_from":"6067","_to":"39895"} +{"$label":"ACTS_IN","name":"Axel Kielberg","type":"Role","_key":"55362","_from":"6067","_to":"35294"} +{"$label":"ACTS_IN","name":"Harry Frommermann","type":"Role","_key":"54442","_from":"6067","_to":"34914"} +{"$label":"ACTS_IN","name":"Bernhard Blocksberg","type":"Role","_key":"52650","_from":"6067","_to":"34197"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"43356","_from":"6067","_to":"28964"} +{"$label":"ACTS_IN","name":"Heinrich Himmler","type":"Role","_key":"42204","_from":"6067","_to":"28267"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"39634","_from":"6067","_to":"26786"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"37304","_from":"6067","_to":"25277"} +{"$label":"ACTS_IN","name":"Oberstaatsanwalt B\u00f6ck","type":"Role","_key":"31134","_from":"6067","_to":"21794"} +{"$label":"ACTS_IN","name":"Prof. Olivari","type":"Role","_key":"27717","_from":"6067","_to":"19859"} +{"$label":"ACTS_IN","name":"Mizzi Kaspar","type":"Role","_key":"47287","_from":"6068","_to":"31151"} +{"$label":"ACTS_IN","name":"Karolin","type":"Role","_key":"43458","_from":"6068","_to":"29031"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"13795","_from":"6068","_to":"10704"} +{"$label":"ACTS_IN","name":"Grenouilles Mutter","type":"Role","_key":"13223","_from":"6068","_to":"10287"} +{"$label":"ACTS_IN","name":"Cardinal Bessarion","type":"Role","_key":"118525","_from":"6069","_to":"69685"} +{"$label":"ACTS_IN","name":"Dr. Stauffer","type":"Role","_key":"70080","_from":"6070","_to":"42727"} +{"$label":"ACTS_IN","name":"Viktor Czernetzky","type":"Role","_key":"62845","_from":"6070","_to":"39489"} +{"$label":"ACTS_IN","name":"Gerd F\u00fcrst","type":"Role","_key":"42588","_from":"6070","_to":"28509"} +{"$label":"ACTS_IN","name":"Heinrich Keller","type":"Role","_key":"42361","_from":"6070","_to":"28358"} +{"$label":"ACTS_IN","name":"Bauer Moser","type":"Role","_key":"40647","_from":"6070","_to":"27367"} +{"$label":"ACTS_IN","name":"Nulf","type":"Role","_key":"10602","_from":"6070","_to":"8414"} +{"$label":"ACTS_IN","name":"Hunter Leader","type":"Role","_key":"121377","_from":"6071","_to":"71326"} +{"$label":"ACTS_IN","name":"Leon (as Andr\u00e9 M. Hennicke)","type":"Role","_key":"88384","_from":"6071","_to":"52391"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"65221","_from":"6071","_to":"40498"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"59222","_from":"6071","_to":"37399"} +{"$label":"ACTS_IN","name":"Gabriel Engel","type":"Role","_key":"49106","_from":"6071","_to":"32177"} +{"$label":"ACTS_IN","name":"Friedrich","type":"Role","_key":"48473","_from":"6071","_to":"31822"} +{"$label":"ACTS_IN","name":"Dr. Josef Rudolf","type":"Role","_key":"47299","_from":"6071","_to":"31157"} +{"$label":"ACTS_IN","name":"Mark L\u00f6wenthal","type":"Role","_key":"37977","_from":"6071","_to":"25714"} +{"$label":"ACTS_IN","name":"Richter Dr. Roland Freisler","type":"Role","_key":"18460","_from":"6071","_to":"13678"} +{"$label":"ACTS_IN","name":"Minks","type":"Role","_key":"57875","_from":"6072","_to":"36622"} +{"$label":"ACTS_IN","name":"Polizeichef Renz","type":"Role","_key":"49628","_from":"6072","_to":"32478"} +{"$label":"ACTS_IN","name":"Brilli","type":"Role","_key":"39738","_from":"6072","_to":"26850"} +{"$label":"ACTS_IN","name":"Bones","type":"Role","_key":"38318","_from":"6072","_to":"25875"} +{"$label":"ACTS_IN","name":"Meister - Evil Sorcerer","type":"Role","_key":"33029","_from":"6072","_to":"22895"} +{"$label":"ACTS_IN","name":"Erich Rohloff","type":"Role","_key":"31505","_from":"6072","_to":"22008"} +{"$label":"ACTS_IN","name":"Yellas Vater","type":"Role","_key":"25188","_from":"6072","_to":"18179"} +{"$label":"ACTS_IN","name":"Zorbek","type":"Role","_key":"68128","_from":"6073","_to":"41845"} +{"$label":"ACTS_IN","name":"Laszlo Voros","type":"Role","_key":"56519","_from":"6073","_to":"35892"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"37356","_from":"6073","_to":"25315"} +{"$label":"ACTS_IN","name":"Roman Sikorski","type":"Role","_key":"27900","_from":"6073","_to":"19995"} +{"$label":"ACTS_IN","name":"Stamper","type":"Role","_key":"8634","_from":"6073","_to":"7008"} +{"$label":"ACTS_IN","name":"Egon","type":"Role","_key":"15356","_from":"6074","_to":"11733"} +{"$label":"ACTS_IN","name":"Alois Kugler","type":"Role","_key":"110872","_from":"6076","_to":"65486"} +{"$label":"ACTS_IN","name":"Steinbauer","type":"Role","_key":"99187","_from":"6076","_to":"58439"} +{"$label":"ACTS_IN","name":"Robert Mertens","type":"Role","_key":"91342","_from":"6076","_to":"53871"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"31146","_from":"6076","_to":"21794"} +{"$label":"ACTS_IN","name":"Robert Mohr","type":"Role","_key":"18458","_from":"6076","_to":"13678"} +{"$label":"ACTS_IN","name":"Eva \u00c5kerman","type":"Role","_key":"7292","_from":"6083","_to":"6077"} +{"$label":"ACTS_IN","name":"Sten Alman","type":"Role","_key":"7289","_from":"6082","_to":"6077"} +{"$label":"ACTS_IN","name":"Agda","type":"Role","_key":"7288","_from":"6081","_to":"6077"} +{"$label":"ACTS_IN","name":"Marianne Borg","type":"Role","_key":"7286","_from":"6080","_to":"6077"} +{"$label":"ACTS_IN","name":"Professor Isak Borg","type":"Role","_key":"7284","_from":"6079","_to":"6077"} +{"$label":"DIRECTED","_key":"7282","_from":"6078","_to":"6077"} +{"$label":"ACTS_IN","name":"Lennart","type":"Role","_key":"111079","_from":"6078","_to":"65612"} +{"$label":"ACTS_IN","name":"Faust","type":"Role","_key":"65288","_from":"6078","_to":"40525"} +{"$label":"ACTS_IN","name":"Ester","type":"Role","_key":"70247","_from":"6080","_to":"42811"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"61873","_from":"6080","_to":"38945"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"33943","_from":"6080","_to":"23371"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"21869","_from":"6080","_to":"15979"} +{"$label":"ACTS_IN","name":"Hannas","type":"Role","_key":"7305","_from":"6095","_to":"6084"} +{"$label":"ACTS_IN","name":"Satan","type":"Role","_key":"7304","_from":"6094","_to":"6084"} +{"$label":"ACTS_IN","name":"Abenader","type":"Role","_key":"7303","_from":"6093","_to":"6084"} +{"$label":"ACTS_IN","name":"Claudia Procula","type":"Role","_key":"7302","_from":"6092","_to":"6084"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"7301","_from":"6091","_to":"6084"} +{"$label":"ACTS_IN","name":"Judas Ischarioth","type":"Role","_key":"7300","_from":"6090","_to":"6084"} +{"$label":"ACTS_IN","name":"Kaiphas","type":"Role","_key":"7299","_from":"6089","_to":"6084"} +{"$label":"ACTS_IN","name":"Simon Petrus","type":"Role","_key":"7297","_from":"6088","_to":"6084"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"7296","_from":"6087","_to":"6084"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"7295","_from":"6086","_to":"6084"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"7294","_from":"6085","_to":"6084"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"104279","_from":"6085","_to":"61352"} +{"$label":"ACTS_IN","name":"Tom Chapman","type":"Role","_key":"70670","_from":"6085","_to":"42997"} +{"$label":"ACTS_IN","name":"Edmond Dantes","type":"Role","_key":"69405","_from":"6085","_to":"42425"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"67869","_from":"6085","_to":"41699"} +{"$label":"ACTS_IN","name":"John Sullivan","type":"Role","_key":"64063","_from":"6085","_to":"39986"} +{"$label":"ACTS_IN","name":"Kainan","type":"Role","_key":"63871","_from":"6085","_to":"39910"} +{"$label":"ACTS_IN","name":"Jean Jacket","type":"Role","_key":"57207","_from":"6085","_to":"36289"} +{"$label":"ACTS_IN","name":"Pvt. Witt","type":"Role","_key":"50631","_from":"6085","_to":"33066"} +{"$label":"ACTS_IN","name":"Carroll Oerstadt","type":"Role","_key":"47186","_from":"6085","_to":"31106"} +{"$label":"ACTS_IN","name":"Steven \"Catch\" Lambert","type":"Role","_key":"39835","_from":"6085","_to":"26919"} +{"$label":"ACTS_IN","name":"Slov","type":"Role","_key":"31672","_from":"6085","_to":"22099"} +{"$label":"ACTS_IN","name":"Maia Morgenstern","type":"Role","_key":"49431","_from":"6086","_to":"32360"} +{"$label":"ACTS_IN","name":"Sarkis","type":"Role","_key":"20674","_from":"6087","_to":"15110"} +{"$label":"ACTS_IN","name":"Gargano","type":"Role","_key":"111623","_from":"6088","_to":"65897"} +{"$label":"ACTS_IN","name":"Judge Quinzi","type":"Role","_key":"119158","_from":"6089","_to":"70024"} +{"$label":"ACTS_IN","name":"Furstenberg","type":"Role","_key":"30045","_from":"6089","_to":"21186"} +{"$label":"ACTS_IN","name":"Mamre","type":"Role","_key":"22863","_from":"6089","_to":"16575"} +{"$label":"ACTS_IN","name":"Michele","type":"Role","_key":"105676","_from":"6090","_to":"62198"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"104281","_from":"6091","_to":"61352"} +{"$label":"ACTS_IN","name":"Isman","type":"Role","_key":"20673","_from":"6091","_to":"15110"} +{"$label":"ACTS_IN","name":"Elisa","type":"Role","_key":"105446","_from":"6092","_to":"62031"} +{"$label":"ACTS_IN","name":"Valeria Adacher","type":"Role","_key":"66463","_from":"6092","_to":"41092"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"105725","_from":"6094","_to":"62239"} +{"$label":"ACTS_IN","name":"Patricia Scardi, italienische Feuerwehrfrau","type":"Role","_key":"27897","_from":"6094","_to":"19995"} +{"$label":"ACTS_IN","name":"Vasili","type":"Role","_key":"38433","_from":"6095","_to":"25954"} +{"$label":"ACTS_IN","name":"Ujio","type":"Role","_key":"7320","_from":"6105","_to":"6096"} +{"$label":"ACTS_IN","name":"Nobutada","type":"Role","_key":"7319","_from":"6104","_to":"6096"} +{"$label":"ACTS_IN","name":"Nakao","type":"Role","_key":"7318","_from":"6103","_to":"6096"} +{"$label":"ACTS_IN","name":"General Hasegawa","type":"Role","_key":"7316","_from":"6102","_to":"6096"} +{"$label":"ACTS_IN","name":"Taka","type":"Role","_key":"7314","_from":"6101","_to":"6096"} +{"$label":"ACTS_IN","name":"Emperor Mutsuhito","type":"Role","_key":"7313","_from":"6100","_to":"6096"} +{"$label":"ACTS_IN","name":"Zebulon Gant","type":"Role","_key":"7311","_from":"6099","_to":"6096"} +{"$label":"ACTS_IN","name":"Winchester Rep Assistant","type":"Role","_key":"7310","_from":"6098","_to":"6096"} +{"$label":"DIRECTED","_key":"7306","_from":"6097","_to":"6096"} +{"$label":"DIRECTED","_key":"115150","_from":"6097","_to":"67807"} +{"$label":"DIRECTED","_key":"96821","_from":"6097","_to":"56939"} +{"$label":"DIRECTED","_key":"65048","_from":"6097","_to":"40418"} +{"$label":"DIRECTED","_key":"57583","_from":"6097","_to":"36470"} +{"$label":"DIRECTED","_key":"55411","_from":"6097","_to":"35321"} +{"$label":"DIRECTED","_key":"31964","_from":"6097","_to":"22291"} +{"$label":"DIRECTED","_key":"12730","_from":"6097","_to":"9942"} +{"$label":"ACTS_IN","name":"Joe David West","type":"Role","_key":"101215","_from":"6098","_to":"59618"} +{"$label":"ACTS_IN","name":"O'Dell","type":"Role","_key":"94634","_from":"6098","_to":"55757"} +{"$label":"ACTS_IN","name":"Delgado Fitzhugh","type":"Role","_key":"118825","_from":"6099","_to":"69852"} +{"$label":"ACTS_IN","name":"John Brown","type":"Role","_key":"113265","_from":"6099","_to":"66730"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103741","_from":"6099","_to":"61008"} +{"$label":"ACTS_IN","name":"Billy Bones","type":"Role","_key":"66407","_from":"6099","_to":"41066"} +{"$label":"ACTS_IN","name":"Fido","type":"Role","_key":"62395","_from":"6099","_to":"39310"} +{"$label":"ACTS_IN","name":"Steve Myers","type":"Role","_key":"55264","_from":"6099","_to":"35246"} +{"$label":"ACTS_IN","name":"Professor E.A. Johnston","type":"Role","_key":"54702","_from":"6099","_to":"35025"} +{"$label":"ACTS_IN","name":"Dargis","type":"Role","_key":"54365","_from":"6099","_to":"34872"} +{"$label":"ACTS_IN","name":"Father Joseph Crissman","type":"Role","_key":"50949","_from":"6099","_to":"33249"} +{"$label":"ACTS_IN","name":"II Duce","type":"Role","_key":"49423","_from":"6099","_to":"32353"} +{"$label":"ACTS_IN","name":"McSquizzy (voice)","type":"Role","_key":"46855","_from":"6099","_to":"30900"} +{"$label":"ACTS_IN","name":"Auction M.C.","type":"Role","_key":"31995","_from":"6099","_to":"22300"} +{"$label":"ACTS_IN","name":"Hughie","type":"Role","_key":"14340","_from":"6099","_to":"11100"} +{"$label":"ACTS_IN","name":"Asuka Saegusa","type":"Role","_key":"39760","_from":"6101","_to":"26869"} +{"$label":"ACTS_IN","name":"Kakuro Ozu","type":"Role","_key":"120541","_from":"6102","_to":"70795"} +{"$label":"ACTS_IN","name":"Japanese scuba diver","type":"Role","_key":"107791","_from":"6102","_to":"63633"} +{"$label":"ACTS_IN","name":"Makino","type":"Role","_key":"39580","_from":"6102","_to":"26738"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"22049","_from":"6102","_to":"16085"} +{"$label":"ACTS_IN","name":"Tanaka","type":"Role","_key":"16460","_from":"6102","_to":"12429"} +{"$label":"ACTS_IN","name":"Onihige","type":"Role","_key":"100503","_from":"6103","_to":"59261"} +{"$label":"ACTS_IN","name":"Inspecteur Fuji","type":"Role","_key":"89328","_from":"6103","_to":"52877"} +{"$label":"ACTS_IN","name":"Takayama","type":"Role","_key":"55769","_from":"6103","_to":"35497"} +{"$label":"ACTS_IN","name":"Matsuda","type":"Role","_key":"117695","_from":"6105","_to":"69180"} +{"$label":"ACTS_IN","name":"Jin-wu","type":"Role","_key":"117580","_from":"6105","_to":"69128"} +{"$label":"ACTS_IN","name":"Seibei Iguchi","type":"Role","_key":"89878","_from":"6105","_to":"53188"} +{"$label":"ACTS_IN","name":"Mr. Musha","type":"Role","_key":"46804","_from":"6105","_to":"30879"} +{"$label":"ACTS_IN","name":"Kenji","type":"Role","_key":"36249","_from":"6105","_to":"24600"} +{"$label":"ACTS_IN","name":"Ryuji Takayama","type":"Role","_key":"22667","_from":"6105","_to":"16443"} +{"$label":"ACTS_IN","name":"General Guangming","type":"Role","_key":"17444","_from":"6105","_to":"13036"} +{"$label":"ACTS_IN","name":"Kaneda","type":"Role","_key":"12427","_from":"6105","_to":"9736"} +{"$label":"ACTS_IN","name":"Barbara Baxter","type":"Role","_key":"7332","_from":"6113","_to":"6106"} +{"$label":"ACTS_IN","name":"Frankie Condo","type":"Role","_key":"7331","_from":"6112","_to":"6106"} +{"$label":"ACTS_IN","name":"District Attorney Bryce Hunter","type":"Role","_key":"7330","_from":"6111","_to":"6106"} +{"$label":"ACTS_IN","name":"Detective Gloria Perez","type":"Role","_key":"7329","_from":"6110","_to":"6106"} +{"$label":"ACTS_IN","name":"Tom Baxter","type":"Role","_key":"7328","_from":"6109","_to":"6106"} +{"$label":"ACTS_IN","name":"Suzie Marie Toller","type":"Role","_key":"7325","_from":"6108","_to":"6106"} +{"$label":"DIRECTED","_key":"7321","_from":"6107","_to":"6106"} +{"$label":"DIRECTED","_key":"109218","_from":"6107","_to":"64530"} +{"$label":"DIRECTED","_key":"65089","_from":"6107","_to":"40434"} +{"$label":"DIRECTED","_key":"63326","_from":"6107","_to":"39696"} +{"$label":"ACTS_IN","name":"Abi","type":"Role","_key":"117632","_from":"6108","_to":"69149"} +{"$label":"ACTS_IN","name":"Ellen Minnola","type":"Role","_key":"102517","_from":"6108","_to":"60316"} +{"$label":"ACTS_IN","name":"Princess Elizabeth","type":"Role","_key":"101104","_from":"6108","_to":"59575"} +{"$label":"ACTS_IN","name":"Margaret Stilwell","type":"Role","_key":"101056","_from":"6108","_to":"59551"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"97741","_from":"6108","_to":"57551"} +{"$label":"ACTS_IN","name":"Amy Post","type":"Role","_key":"64098","_from":"6108","_to":"40002"} +{"$label":"ACTS_IN","name":"Adult Kiara","type":"Role","_key":"56159","_from":"6108","_to":"35699"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"52553","_from":"6108","_to":"34163"} +{"$label":"ACTS_IN","name":"Sidney Prescott","type":"Role","_key":"30292","_from":"6108","_to":"21314"} +{"$label":"ACTS_IN","name":"Sidney Prescott","type":"Role","_key":"30282","_from":"6108","_to":"21313"} +{"$label":"ACTS_IN","name":"Sidney Prescott","type":"Role","_key":"30261","_from":"6108","_to":"21306"} +{"$label":"ACTS_IN","name":"Julie Black","type":"Role","_key":"28463","_from":"6108","_to":"20352"} +{"$label":"ACTS_IN","name":"Gifford \"Giff\" Rogers","type":"Role","_key":"109411","_from":"6109","_to":"64642"} +{"$label":"ACTS_IN","name":"Taylor Moss","type":"Role","_key":"103367","_from":"6109","_to":"60808"} +{"$label":"ACTS_IN","name":"Bill Krieger","type":"Role","_key":"63183","_from":"6109","_to":"39629"} +{"$label":"ACTS_IN","name":"Prinz Eisenherz","type":"Role","_key":"42739","_from":"6109","_to":"28608"} +{"$label":"ACTS_IN","name":"George Lytton","type":"Role","_key":"11175","_from":"6109","_to":"8842"} +{"$label":"ACTS_IN","name":"Number two","type":"Role","_key":"9645","_from":"6109","_to":"7752"} +{"$label":"ACTS_IN","name":"Number Two","type":"Role","_key":"9626","_from":"6109","_to":"7750"} +{"$label":"ACTS_IN","name":"Number two","type":"Role","_key":"9620","_from":"6109","_to":"7742"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"115012","_from":"6111","_to":"67722"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"120185","_from":"6112","_to":"70585"} +{"$label":"ACTS_IN","name":"Gen. Robert E. Lee","type":"Role","_key":"7349","_from":"6131","_to":"6114"} +{"$label":"ACTS_IN","name":"Gen. Ulysses S. Grant","type":"Role","_key":"7348","_from":"6130","_to":"6114"} +{"$label":"ACTS_IN","name":"Duke Cameron","type":"Role","_key":"7347","_from":"6129","_to":"6114"} +{"$label":"ACTS_IN","name":"Wade Cameron","type":"Role","_key":"7346","_from":"6128","_to":"6114"} +{"$label":"ACTS_IN","name":"Phil Stoneman","type":"Role","_key":"7345","_from":"6127","_to":"6114"} +{"$label":"ACTS_IN","name":"Silas Lynch","type":"Role","_key":"7344","_from":"6126","_to":"6114"} +{"$label":"ACTS_IN","name":"Mammy","type":"Role","_key":"7343","_from":"6125","_to":"6114"} +{"$label":"ACTS_IN","name":"Dr. Cameron","type":"Role","_key":"7342","_from":"6124","_to":"6114"} +{"$label":"ACTS_IN","name":"Mrs. Cameron","type":"Role","_key":"7341","_from":"6123","_to":"6114"} +{"$label":"ACTS_IN","name":"Abraham Lincoln","type":"Role","_key":"7340","_from":"6122","_to":"6114"} +{"$label":"ACTS_IN","name":"Austin Stoneman","type":"Role","_key":"7339","_from":"6121","_to":"6114"} +{"$label":"ACTS_IN","name":"Lydia Brown","type":"Role","_key":"7338","_from":"6120","_to":"6114"} +{"$label":"ACTS_IN","name":"Margaret Cameron","type":"Role","_key":"7337","_from":"6119","_to":"6114"} +{"$label":"ACTS_IN","name":"Col. Ben Cameron","type":"Role","_key":"7336","_from":"6118","_to":"6114"} +{"$label":"ACTS_IN","name":"Flora Cameron","type":"Role","_key":"7335","_from":"6117","_to":"6114"} +{"$label":"ACTS_IN","name":"Elsie Stoneman","type":"Role","_key":"7334","_from":"6116","_to":"6114"} +{"$label":"DIRECTED","_key":"7333","_from":"6115","_to":"6114"} +{"$label":"DIRECTED","_key":"25317","_from":"6115","_to":"18250"} +{"$label":"DIRECTED","_key":"10708","_from":"6115","_to":"8500"} +{"$label":"ACTS_IN","name":"Mattilda Zachary","type":"Role","_key":"44535","_from":"6116","_to":"29653"} +{"$label":"ACTS_IN","name":"Rachel Cooper","type":"Role","_key":"26054","_from":"6116","_to":"18722"} +{"$label":"ACTS_IN","name":"The Woman Who Rocks the Cradle","type":"Role","_key":"25318","_from":"6116","_to":"18250"} +{"$label":"ACTS_IN","name":"Lucy Burrows","type":"Role","_key":"10709","_from":"6116","_to":"8500"} +{"$label":"ACTS_IN","name":"The Dear One (Modern Story)","type":"Role","_key":"25319","_from":"6117","_to":"18250"} +{"$label":"ACTS_IN","name":"Brown Eyes' Father (French Story)","type":"Role","_key":"25330","_from":"6124","_to":"18250"} +{"$label":"ACTS_IN","name":"The Rhapsode (Babylonian Story)","type":"Role","_key":"25332","_from":"6127","_to":"18250"} +{"$label":"ACTS_IN","name":"The Spying One","type":"Role","_key":"10714","_from":"6128","_to":"8500"} +{"$label":"ACTS_IN","name":"Alec Waggoman","type":"Role","_key":"115612","_from":"6130","_to":"68059"} +{"$label":"ACTS_IN","name":"Police Inspector Lewis Lane","type":"Role","_key":"114207","_from":"6130","_to":"67273"} +{"$label":"ACTS_IN","name":"Mr. Brown","type":"Role","_key":"113447","_from":"6130","_to":"66838"} +{"$label":"ACTS_IN","name":"Francis Bacon","type":"Role","_key":"110413","_from":"6130","_to":"65234"} +{"$label":"ACTS_IN","name":"Commander Beech","type":"Role","_key":"108961","_from":"6130","_to":"64390"} +{"$label":"ACTS_IN","name":"King Aguar","type":"Role","_key":"42743","_from":"6130","_to":"28608"} +{"$label":"ACTS_IN","name":"Dr. Kenneth","type":"Role","_key":"25609","_from":"6130","_to":"18444"} +{"$label":"ACTS_IN","name":"Sir Emery","type":"Role","_key":"25038","_from":"6130","_to":"18088"} +{"$label":"ACTS_IN","name":"Sam Carraclough","type":"Role","_key":"19146","_from":"6130","_to":"14153"} +{"$label":"ACTS_IN","name":"Dr. Livingstone","type":"Role","_key":"17123","_from":"6130","_to":"12831"} +{"$label":"ACTS_IN","name":"Battling Burrows","type":"Role","_key":"10711","_from":"6130","_to":"8500"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"7361","_from":"6140","_to":"6132"} +{"$label":"ACTS_IN","name":"Fletcher Marron","type":"Role","_key":"7360","_from":"6139","_to":"6132"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"7359","_from":"6138","_to":"6132"} +{"$label":"ACTS_IN","name":"Bill Devaney","type":"Role","_key":"7356","_from":"6137","_to":"6132"} +{"$label":"ACTS_IN","name":"Herb Farmer","type":"Role","_key":"7354","_from":"6136","_to":"6132"} +{"$label":"ACTS_IN","name":"Nicki Marron","type":"Role","_key":"7353","_from":"6135","_to":"6132"} +{"$label":"ACTS_IN","name":"Rachel Marron","type":"Role","_key":"7351","_from":"6134","_to":"6132"} +{"$label":"DIRECTED","_key":"7350","_from":"6133","_to":"6132"} +{"$label":"DIRECTED","_key":"101726","_from":"6133","_to":"59874"} +{"$label":"DIRECTED","_key":"62766","_from":"6133","_to":"39456"} +{"$label":"DIRECTED","_key":"18369","_from":"6133","_to":"13628"} +{"$label":"ACTS_IN","name":"Grandpa Ventura","type":"Role","_key":"104016","_from":"6136","_to":"61192"} +{"$label":"ACTS_IN","name":"Houston Jones","type":"Role","_key":"119125","_from":"6137","_to":"70016"} +{"$label":"ACTS_IN","name":"Mr. Theophillis 'Ted' Hamilton","type":"Role","_key":"101171","_from":"6137","_to":"59602"} +{"$label":"ACTS_IN","name":"Cobb","type":"Role","_key":"55277","_from":"6137","_to":"35249"} +{"$label":"ACTS_IN","name":"Estes","type":"Role","_key":"28315","_from":"6137","_to":"20259"} +{"$label":"ACTS_IN","name":"Jim Toller","type":"Role","_key":"16971","_from":"6137","_to":"12733"} +{"$label":"ACTS_IN","name":"Reginald","type":"Role","_key":"14122","_from":"6137","_to":"10934"} +{"$label":"ACTS_IN","name":"Madame","type":"Role","_key":"110227","_from":"6140","_to":"65147"} +{"$label":"ACTS_IN","name":"Charlotte A. Cavatica","type":"Role","_key":"103456","_from":"6140","_to":"60852"} +{"$label":"ACTS_IN","name":"Lilith 'Lily' Prescott","type":"Role","_key":"72618","_from":"6140","_to":"43773"} +{"$label":"ACTS_IN","name":"Nell Nash","type":"Role","_key":"15540","_from":"6140","_to":"11866"} +{"$label":"ACTS_IN","name":"Kathy Selden","type":"Role","_key":"10373","_from":"6140","_to":"8252"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"7370","_from":"6146","_to":"6141"} +{"$label":"ACTS_IN","name":"Winston Zeddmore","type":"Role","_key":"7369","_from":"6145","_to":"6141"} +{"$label":"ACTS_IN","name":"Janine Melnitz","type":"Role","_key":"7367","_from":"6144","_to":"6141"} +{"$label":"ACTS_IN","name":"Louis Tully","type":"Role","_key":"7366","_from":"6143","_to":"6141"} +{"$label":"DIRECTED","_key":"7362","_from":"6142","_to":"6141"} +{"$label":"DIRECTED","_key":"98238","_from":"6142","_to":"57868"} +{"$label":"DIRECTED","_key":"89903","_from":"6142","_to":"53201"} +{"$label":"DIRECTED","_key":"70701","_from":"6142","_to":"43007"} +{"$label":"DIRECTED","_key":"66495","_from":"6142","_to":"41111"} +{"$label":"DIRECTED","_key":"58239","_from":"6142","_to":"36833"} +{"$label":"DIRECTED","_key":"54236","_from":"6142","_to":"34829"} +{"$label":"DIRECTED","_key":"53604","_from":"6142","_to":"34589"} +{"$label":"DIRECTED","_key":"42804","_from":"6142","_to":"28627"} +{"$label":"DIRECTED","_key":"41457","_from":"6142","_to":"27866"} +{"$label":"DIRECTED","_key":"31946","_from":"6142","_to":"22284"} +{"$label":"DIRECTED","_key":"24631","_from":"6142","_to":"17819"} +{"$label":"DIRECTED","_key":"11361","_from":"6142","_to":"8948"} +{"$label":"ACTS_IN","name":"Barney Coopersmith","type":"Role","_key":"109010","_from":"6143","_to":"64421"} +{"$label":"ACTS_IN","name":"Billy Fish","type":"Role","_key":"101618","_from":"6143","_to":"59813"} +{"$label":"ACTS_IN","name":"Bob McKenzie","type":"Role","_key":"91935","_from":"6143","_to":"54234"} +{"$label":"ACTS_IN","name":"Wayne Szalinski","type":"Role","_key":"69784","_from":"6143","_to":"42592"} +{"$label":"ACTS_IN","name":"Wayne Szalinski","type":"Role","_key":"68202","_from":"6143","_to":"41885"} +{"$label":"ACTS_IN","name":"Seymour Krelborn","type":"Role","_key":"65703","_from":"6143","_to":"40694"} +{"$label":"ACTS_IN","name":"Rutt","type":"Role","_key":"59399","_from":"6143","_to":"37525"} +{"$label":"ACTS_IN","name":"Rutt","type":"Role","_key":"59376","_from":"6143","_to":"37511"} +{"$label":"ACTS_IN","name":"Wayne Szalinski","type":"Role","_key":"53305","_from":"6143","_to":"34466"} +{"$label":"ACTS_IN","name":"Louis Tully","type":"Role","_key":"24636","_from":"6143","_to":"17819"} +{"$label":"ACTS_IN","name":"Dark Helmet","type":"Role","_key":"11413","_from":"6143","_to":"8985"} +{"$label":"ACTS_IN","name":"Barney Rubble","type":"Role","_key":"10570","_from":"6143","_to":"8398"} +{"$label":"DIRECTED","_key":"91936","_from":"6143","_to":"54234"} +{"$label":"ACTS_IN","name":"Helen Downing","type":"Role","_key":"71748","_from":"6144","_to":"43432"} +{"$label":"ACTS_IN","name":"Janine Melnitz","type":"Role","_key":"24638","_from":"6144","_to":"17819"} +{"$label":"ACTS_IN","name":"Bo Peep (voice)","type":"Role","_key":"10264","_from":"6144","_to":"8176"} +{"$label":"ACTS_IN","name":"Bo Peep (voice)","type":"Role","_key":"10251","_from":"6144","_to":"8168"} +{"$label":"ACTS_IN","name":"Officer Sam 'Mad Dog' Shaw","type":"Role","_key":"119087","_from":"6145","_to":"69998"} +{"$label":"ACTS_IN","name":"P.T.","type":"Role","_key":"118473","_from":"6145","_to":"69645"} +{"$label":"ACTS_IN","name":"Roscoe","type":"Role","_key":"104360","_from":"6145","_to":"61395"} +{"$label":"ACTS_IN","name":"Justin Jones","type":"Role","_key":"99850","_from":"6145","_to":"58891"} +{"$label":"ACTS_IN","name":"Master Mutaito","type":"Role","_key":"98857","_from":"6145","_to":"58251"} +{"$label":"ACTS_IN","name":"Sergeant O'Malley","type":"Role","_key":"95357","_from":"6145","_to":"56098"} +{"$label":"ACTS_IN","name":"Solomon","type":"Role","_key":"67807","_from":"6145","_to":"41676"} +{"$label":"ACTS_IN","name":"Jackson Jones","type":"Role","_key":"66691","_from":"6145","_to":"41203"} +{"$label":"ACTS_IN","name":"FBI Special Agent in Charge Mike Ibby","type":"Role","_key":"65052","_from":"6145","_to":"40419"} +{"$label":"ACTS_IN","name":"Captain Munro Kelly","type":"Role","_key":"62618","_from":"6145","_to":"39391"} +{"$label":"ACTS_IN","name":"Sergeant Albrecht","type":"Role","_key":"54245","_from":"6145","_to":"34832"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"50850","_from":"6145","_to":"33193"} +{"$label":"ACTS_IN","name":"Dawson","type":"Role","_key":"38567","_from":"6145","_to":"26054"} +{"$label":"ACTS_IN","name":"Winston Zeddemore","type":"Role","_key":"24637","_from":"6145","_to":"17819"} +{"$label":"ACTS_IN","name":"Harry McDonald","type":"Role","_key":"13517","_from":"6145","_to":"10515"} +{"$label":"ACTS_IN","name":"Dr. Levy","type":"Role","_key":"67458","_from":"6146","_to":"41554"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"60200","_from":"6146","_to":"37979"} +{"$label":"ACTS_IN","name":"Mayor Lenny","type":"Role","_key":"24641","_from":"6146","_to":"17819"} +{"$label":"ACTS_IN","name":"Leo, Scorpions member","type":"Role","_key":"7392","_from":"6166","_to":"6147"} +{"$label":"ACTS_IN","name":"Cha Cha DiGregorio","type":"Role","_key":"7391","_from":"6165","_to":"6147"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"7390","_from":"6164","_to":"6147"} +{"$label":"ACTS_IN","name":"Patty Simcox","type":"Role","_key":"7389","_from":"6163","_to":"6147"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"7388","_from":"6162","_to":"6147"} +{"$label":"ACTS_IN","name":"Coach Calhoun","type":"Role","_key":"7387","_from":"6161","_to":"6147"} +{"$label":"ACTS_IN","name":"Vince Fontaine","type":"Role","_key":"7386","_from":"6160","_to":"6147"} +{"$label":"ACTS_IN","name":"Marty Maraschino","type":"Role","_key":"7384","_from":"6159","_to":"6147"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"7383","_from":"6158","_to":"6147"} +{"$label":"ACTS_IN","name":"Putzie","type":"Role","_key":"7382","_from":"6157","_to":"6147"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"7381","_from":"6156","_to":"6147"} +{"$label":"ACTS_IN","name":"Doody","type":"Role","_key":"7380","_from":"6155","_to":"6147"} +{"$label":"ACTS_IN","name":"Frenchy","type":"Role","_key":"7379","_from":"6154","_to":"6147"} +{"$label":"ACTS_IN","name":"Kenickie","type":"Role","_key":"7378","_from":"6153","_to":"6147"} +{"$label":"ACTS_IN","name":"Betty Rizzo","type":"Role","_key":"7377","_from":"6152","_to":"6147"} +{"$label":"ACTS_IN","name":"Sandy Olsson","type":"Role","_key":"7376","_from":"6151","_to":"6147"} +{"$label":"ACTS_IN","name":"Danny Zuko","type":"Role","_key":"7375","_from":"6150","_to":"6147"} +{"$label":"DIRECTED","_key":"7374","_from":"6149","_to":"6147"} +{"$label":"DIRECTED","_key":"7373","_from":"6148","_to":"6147"} +{"$label":"DIRECTED","_key":"97822","_from":"6148","_to":"57588"} +{"$label":"DIRECTED","_key":"88833","_from":"6149","_to":"52638"} +{"$label":"DIRECTED","_key":"68208","_from":"6149","_to":"41885"} +{"$label":"DIRECTED","_key":"61023","_from":"6149","_to":"38561"} +{"$label":"DIRECTED","_key":"57549","_from":"6149","_to":"36458"} +{"$label":"DIRECTED","_key":"38631","_from":"6149","_to":"26098"} +{"$label":"ACTS_IN","name":"Bobby's Doctor","type":"Role","_key":"39310","_from":"6149","_to":"26583"} +{"$label":"ACTS_IN","name":"Ryder","type":"Role","_key":"116367","_from":"6150","_to":"68507"} +{"$label":"ACTS_IN","name":"Bud Davis","type":"Role","_key":"112444","_from":"6150","_to":"66387"} +{"$label":"ACTS_IN","name":"Bolt (voice)","type":"Role","_key":"92191","_from":"6150","_to":"54410"} +{"$label":"ACTS_IN","name":"James Ubriacco","type":"Role","_key":"73136","_from":"6150","_to":"43986"} +{"$label":"ACTS_IN","name":"Jack Terry","type":"Role","_key":"71247","_from":"6150","_to":"43228"} +{"$label":"ACTS_IN","name":"Frank Morrison","type":"Role","_key":"69965","_from":"6150","_to":"42682"} +{"$label":"ACTS_IN","name":"Woody Stevens","type":"Role","_key":"68494","_from":"6150","_to":"42015"} +{"$label":"ACTS_IN","name":"Captain Mike Kennedy","type":"Role","_key":"68037","_from":"6150","_to":"41810"} +{"$label":"ACTS_IN","name":"Tony Manero","type":"Role","_key":"67273","_from":"6150","_to":"41479"} +{"$label":"ACTS_IN","name":"Tony Manero","type":"Role","_key":"65906","_from":"6150","_to":"40772"} +{"$label":"ACTS_IN","name":"Russ Richards","type":"Role","_key":"65754","_from":"6150","_to":"40707"} +{"$label":"ACTS_IN","name":"Hardy","type":"Role","_key":"65745","_from":"6150","_to":"40705"} +{"$label":"ACTS_IN","name":"Bobby Long","type":"Role","_key":"58454","_from":"6150","_to":"36947"} +{"$label":"ACTS_IN","name":"Tod Lubitch","type":"Role","_key":"57550","_from":"6150","_to":"36458"} +{"$label":"ACTS_IN","name":"Sam Baily","type":"Role","_key":"56498","_from":"6150","_to":"35888"} +{"$label":"ACTS_IN","name":"Gabriel Shear","type":"Role","_key":"55893","_from":"6150","_to":"35554"} +{"$label":"ACTS_IN","name":"James Ubriacco","type":"Role","_key":"54237","_from":"6150","_to":"34831"} +{"$label":"ACTS_IN","name":"Jack Stanton","type":"Role","_key":"53855","_from":"6150","_to":"34689"} +{"$label":"ACTS_IN","name":"Jan Schlichtmann","type":"Role","_key":"53759","_from":"6150","_to":"34653"} +{"$label":"ACTS_IN","name":"James Ubriacco","type":"Role","_key":"53321","_from":"6150","_to":"34476"} +{"$label":"ACTS_IN","name":"George Malley","type":"Role","_key":"52946","_from":"6150","_to":"34307"} +{"$label":"ACTS_IN","name":"Maj. Vic 'Deak' Deakins","type":"Role","_key":"52586","_from":"6150","_to":"34175"} +{"$label":"ACTS_IN","name":"Brig. Gen. Quintard","type":"Role","_key":"50639","_from":"6150","_to":"33066"} +{"$label":"ACTS_IN","name":"Chili Palmer","type":"Role","_key":"47789","_from":"6150","_to":"31468"} +{"$label":"ACTS_IN","name":"Billy Nolan","type":"Role","_key":"46463","_from":"6150","_to":"30685"} +{"$label":"ACTS_IN","name":"Howard Saint","type":"Role","_key":"46000","_from":"6150","_to":"30406"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37479","_from":"6150","_to":"25394"} +{"$label":"ACTS_IN","name":"Terl","type":"Role","_key":"37465","_from":"6150","_to":"25390"} +{"$label":"ACTS_IN","name":"Chili Palmer","type":"Role","_key":"32572","_from":"6150","_to":"22640"} +{"$label":"ACTS_IN","name":"Edna Turnblad","type":"Role","_key":"24601","_from":"6150","_to":"17800"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"24377","_from":"6150","_to":"17645"} +{"$label":"ACTS_IN","name":"Paul Brenner","type":"Role","_key":"19976","_from":"6150","_to":"14708"} +{"$label":"ACTS_IN","name":"Elmer C. Robinson","type":"Role","_key":"12244","_from":"6150","_to":"9590"} +{"$label":"ACTS_IN","name":"Sean Archer","type":"Role","_key":"8852","_from":"6150","_to":"7192"} +{"$label":"ACTS_IN","name":"Vincent Vega","type":"Role","_key":"8197","_from":"6150","_to":"6746"} +{"$label":"ACTS_IN","name":"Bitsy Mae Harling","type":"Role","_key":"118669","_from":"6151","_to":"69773"} +{"$label":"ACTS_IN","name":"Kira","type":"Role","_key":"105368","_from":"6151","_to":"61996"} +{"$label":"ACTS_IN","name":"Kitty Baxter","type":"Role","_key":"118853","_from":"6152","_to":"69859"} +{"$label":"ACTS_IN","name":"Mrs. Allworthy","type":"Role","_key":"118384","_from":"6152","_to":"69596"} +{"$label":"ACTS_IN","name":"Olive Cowie","type":"Role","_key":"115135","_from":"6152","_to":"67802"} +{"$label":"ACTS_IN","name":"Deborah Connors","type":"Role","_key":"109719","_from":"6152","_to":"64795"} +{"$label":"ACTS_IN","name":"Mrs. Melrose Ape","type":"Role","_key":"103815","_from":"6152","_to":"61055"} +{"$label":"ACTS_IN","name":"Julie Siegel","type":"Role","_key":"96917","_from":"6152","_to":"57008"} +{"$label":"ACTS_IN","name":"Thelma 'Sister' Husband","type":"Role","_key":"64104","_from":"6152","_to":"40004"} +{"$label":"ACTS_IN","name":"Marcia McGrath","type":"Role","_key":"53001","_from":"6152","_to":"34329"} +{"$label":"ACTS_IN","name":"Carol Ann","type":"Role","_key":"52501","_from":"6152","_to":"34147"} +{"$label":"ACTS_IN","name":"Tante Frances 'Fran' Owens","type":"Role","_key":"43385","_from":"6152","_to":"28988"} +{"$label":"ACTS_IN","name":"Klara Hitler","type":"Role","_key":"21764","_from":"6152","_to":"15899"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96523","_from":"6153","_to":"56725"} +{"$label":"ACTS_IN","name":"Zack Allen","type":"Role","_key":"66752","_from":"6153","_to":"41244"} +{"$label":"ACTS_IN","name":"Zack Allen","type":"Role","_key":"66700","_from":"6153","_to":"41207"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"38582","_from":"6153","_to":"26068"} +{"$label":"ACTS_IN","name":"Dr. Bay","type":"Role","_key":"29719","_from":"6156","_to":"21034"} +{"$label":"ACTS_IN","name":"Pvt. Johnson, 1st Squad","type":"Role","_key":"107142","_from":"6157","_to":"63187"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"109657","_from":"6159","_to":"64764"} +{"$label":"ACTS_IN","name":"Ezra Dezire","type":"Role","_key":"100937","_from":"6161","_to":"59497"} +{"$label":"ACTS_IN","name":"Melville Crump, DDS","type":"Role","_key":"70789","_from":"6161","_to":"43041"} +{"$label":"ACTS_IN","name":"Studio Chief","type":"Role","_key":"66997","_from":"6161","_to":"41360"} +{"$label":"ACTS_IN","name":"Chief Caveman","type":"Role","_key":"61311","_from":"6161","_to":"38701"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34912","_from":"6161","_to":"23848"} +{"$label":"ACTS_IN","name":"Joe Capone","type":"Role","_key":"27431","_from":"6161","_to":"19693"} +{"$label":"ACTS_IN","name":"Miss Revecca Miller ( voice )","type":"Role","_key":"26203","_from":"6162","_to":"18824"} +{"$label":"ACTS_IN","name":"Mrs. Stimler","type":"Role","_key":"22245","_from":"6162","_to":"16195"} +{"$label":"ACTS_IN","name":"Mrs. Litke","type":"Role","_key":"15578","_from":"6162","_to":"11884"} +{"$label":"ACTS_IN","name":"Pablo & Pedro Ceniza\/1st & 2nd Workmen","type":"Role","_key":"7401","_from":"6173","_to":"6167"} +{"$label":"ACTS_IN","name":"Victor Fargas","type":"Role","_key":"7400","_from":"6172","_to":"6167"} +{"$label":"ACTS_IN","name":"Baroness Kessler","type":"Role","_key":"7399","_from":"6171","_to":"6167"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"7398","_from":"6170","_to":"6167"} +{"$label":"ACTS_IN","name":"Boris Balkan","type":"Role","_key":"7396","_from":"6169","_to":"6167"} +{"$label":"DIRECTED","_key":"7394","_from":"6168","_to":"6167"} +{"$label":"ACTS_IN","name":"Jimmy Stevens","type":"Role","_key":"109183","_from":"6169","_to":"64505"} +{"$label":"ACTS_IN","name":"Detective Hayden","type":"Role","_key":"99209","_from":"6169","_to":"58461"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"92340","_from":"6169","_to":"54496"} +{"$label":"ACTS_IN","name":"Skeletor","type":"Role","_key":"71281","_from":"6169","_to":"43245"} +{"$label":"ACTS_IN","name":"Bob Alexander","type":"Role","_key":"70704","_from":"6169","_to":"43007"} +{"$label":"ACTS_IN","name":"Richard Nixon","type":"Role","_key":"70194","_from":"6169","_to":"42781"} +{"$label":"ACTS_IN","name":"Wild Bill Burgess","type":"Role","_key":"67910","_from":"6169","_to":"41725"} +{"$label":"ACTS_IN","name":"Clare Quilty.","type":"Role","_key":"56497","_from":"6169","_to":"35887"} +{"$label":"ACTS_IN","name":"Noah Banes","type":"Role","_key":"42803","_from":"6169","_to":"28627"} +{"$label":"ACTS_IN","name":"William Paley","type":"Role","_key":"26781","_from":"6169","_to":"19236"} +{"$label":"ACTS_IN","name":"Pharao Mernefta","type":"Role","_key":"22978","_from":"6169","_to":"16666"} +{"$label":"ACTS_IN","name":"Jeffrey Roston","type":"Role","_key":"18732","_from":"6169","_to":"13858"} +{"$label":"ACTS_IN","name":"Edgar Price","type":"Role","_key":"16618","_from":"6169","_to":"12548"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"13398","_from":"6169","_to":"10427"} +{"$label":"ACTS_IN","name":"Dawg","type":"Role","_key":"13028","_from":"6169","_to":"10160"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"64981","_from":"6170","_to":"40386"} +{"$label":"ACTS_IN","name":"Mimi","type":"Role","_key":"63685","_from":"6170","_to":"39830"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"50725","_from":"6170","_to":"33108"} +{"$label":"ACTS_IN","name":"C\u00e9line Desmoulins","type":"Role","_key":"17474","_from":"6170","_to":"13069"} +{"$label":"ACTS_IN","name":"Titine","type":"Role","_key":"13019","_from":"6170","_to":"10151"} +{"$label":"ACTS_IN","name":"Ildebranda Cuffari","type":"Role","_key":"38100","_from":"6171","_to":"25769"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"53535","_from":"6172","_to":"34556"} +{"$label":"ACTS_IN","name":"Quincey Morris","type":"Role","_key":"38076","_from":"6172","_to":"25754"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27927","_from":"6172","_to":"20017"} +{"$label":"ACTS_IN","name":"Portia","type":"Role","_key":"7411","_from":"6180","_to":"6174"} +{"$label":"ACTS_IN","name":"Georges Thomason","type":"Role","_key":"7410","_from":"6179","_to":"6174"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"7409","_from":"6178","_to":"6174"} +{"$label":"ACTS_IN","name":"Wanda Gershwitz","type":"Role","_key":"7406","_from":"6177","_to":"6174"} +{"$label":"DIRECTED","_key":"7404","_from":"6176","_to":"6174"} +{"$label":"DIRECTED","_key":"7403","_from":"6175","_to":"6174"} +{"$label":"DIRECTED","_key":"95324","_from":"6175","_to":"56079"} +{"$label":"ACTS_IN","name":"Janet Beindorf","type":"Role","_key":"117798","_from":"6177","_to":"69242"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107969","_from":"6177","_to":"63755"} +{"$label":"ACTS_IN","name":"Aunt Viv","type":"Role","_key":"100067","_from":"6177","_to":"59023"} +{"$label":"ACTS_IN","name":"Nora Krank","type":"Role","_key":"95815","_from":"6177","_to":"56354"} +{"$label":"ACTS_IN","name":"Willa Weston","type":"Role","_key":"88289","_from":"6177","_to":"52367"} +{"$label":"ACTS_IN","name":"Laurie Strode","type":"Role","_key":"71484","_from":"6177","_to":"43330"} +{"$label":"ACTS_IN","name":"Laurie Strode","type":"Role","_key":"69856","_from":"6177","_to":"42628"} +{"$label":"ACTS_IN","name":"Shelly Sultenfuss","type":"Role","_key":"69096","_from":"6177","_to":"42283"} +{"$label":"ACTS_IN","name":"Laurie Strode","type":"Role","_key":"68871","_from":"6177","_to":"42186"} +{"$label":"ACTS_IN","name":"Tess Coleman","type":"Role","_key":"62621","_from":"6177","_to":"39392"} +{"$label":"ACTS_IN","name":"Claire Cooper","type":"Role","_key":"62602","_from":"6177","_to":"39386"} +{"$label":"ACTS_IN","name":"Megan Turner","type":"Role","_key":"54223","_from":"6177","_to":"34828"} +{"$label":"ACTS_IN","name":"Kelly Foster","type":"Role","_key":"53764","_from":"6177","_to":"34654"} +{"$label":"ACTS_IN","name":"Shelly DeVoto","type":"Role","_key":"29486","_from":"6177","_to":"20905"} +{"$label":"ACTS_IN","name":"Louisa Pendel","type":"Role","_key":"22021","_from":"6177","_to":"16070"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"14375","_from":"6177","_to":"11121"} +{"$label":"ACTS_IN","name":"Laurie Strode","type":"Role","_key":"11303","_from":"6177","_to":"8922"} +{"$label":"ACTS_IN","name":"Elizabeth Solley","type":"Role","_key":"9303","_from":"6177","_to":"7517"} +{"$label":"ACTS_IN","name":"Geoffrey Day","type":"Role","_key":"114887","_from":"6179","_to":"67663"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"7420","_from":"6187","_to":"6181"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"7419","_from":"6186","_to":"6181"} +{"$label":"ACTS_IN","name":"Stranger on Highway","type":"Role","_key":"7418","_from":"6185","_to":"6181"} +{"$label":"ACTS_IN","name":"Connection","type":"Role","_key":"7416","_from":"6184","_to":"6181"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"7415","_from":"6183","_to":"6181"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"7413","_from":"6182","_to":"6181"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"118475","_from":"6182","_to":"69646"} +{"$label":"ACTS_IN","name":"Edward Dennison","type":"Role","_key":"110547","_from":"6182","_to":"65319"} +{"$label":"ACTS_IN","name":"Grandpa Burnett Stone","type":"Role","_key":"107112","_from":"6182","_to":"63163"} +{"$label":"ACTS_IN","name":"Chief Biker","type":"Role","_key":"68917","_from":"6182","_to":"42196"} +{"$label":"ACTS_IN","name":"Chuck Browning","type":"Role","_key":"64780","_from":"6182","_to":"40313"} +{"$label":"ACTS_IN","name":"Terry Valentine","type":"Role","_key":"62949","_from":"6182","_to":"39530"} +{"$label":"ACTS_IN","name":"Pipeline","type":"Role","_key":"60093","_from":"6182","_to":"37917"} +{"$label":"ACTS_IN","name":"Byron McElroy","type":"Role","_key":"36266","_from":"6182","_to":"24605"} +{"$label":"ACTS_IN","name":"Weaver","type":"Role","_key":"24941","_from":"6182","_to":"18024"} +{"$label":"ACTS_IN","name":"Mephistopheles","type":"Role","_key":"12226","_from":"6182","_to":"9573"} +{"$label":"ACTS_IN","name":"Boss Paul","type":"Role","_key":"10753","_from":"6185","_to":"8527"} +{"$label":"ACTS_IN","name":"Marian Rolf","type":"Role","_key":"95144","_from":"6186","_to":"55990"} +{"$label":"ACTS_IN","name":"Myrtle Wilson","type":"Role","_key":"67463","_from":"6186","_to":"41555"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"39854","_from":"6186","_to":"26930"} +{"$label":"ACTS_IN","name":"Faye Greener","type":"Role","_key":"35983","_from":"6186","_to":"24437"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"34664","_from":"6186","_to":"23722"} +{"$label":"ACTS_IN","name":"Whip Lady","type":"Role","_key":"31037","_from":"6186","_to":"21724"} +{"$label":"ACTS_IN","name":"Connie White","type":"Role","_key":"26136","_from":"6186","_to":"18778"} +{"$label":"ACTS_IN","name":"Mother Firefly","type":"Role","_key":"22558","_from":"6186","_to":"16381"} +{"$label":"ACTS_IN","name":"Phat: Khmer Rouge leader: 2nd village","type":"Role","_key":"7432","_from":"6197","_to":"6188"} +{"$label":"ACTS_IN","name":"Sarun, Sydney's Driver","type":"Role","_key":"7431","_from":"6196","_to":"6188"} +{"$label":"ACTS_IN","name":"Titony: Dith Pran's son","type":"Role","_key":"7430","_from":"6195","_to":"6188"} +{"$label":"ACTS_IN","name":"Ser Moeum: Dith Pran's wife","type":"Role","_key":"7429","_from":"6194","_to":"6188"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"7428","_from":"6193","_to":"6188"} +{"$label":"ACTS_IN","name":"United States consul","type":"Role","_key":"7427","_from":"6192","_to":"6188"} +{"$label":"ACTS_IN","name":"Dith Pran","type":"Role","_key":"7423","_from":"6191","_to":"6188"} +{"$label":"ACTS_IN","name":"Sydney Schanberg","type":"Role","_key":"7422","_from":"6190","_to":"6188"} +{"$label":"DIRECTED","_key":"7421","_from":"6189","_to":"6188"} +{"$label":"DIRECTED","_key":"98577","_from":"6189","_to":"58095"} +{"$label":"DIRECTED","_key":"69735","_from":"6189","_to":"42563"} +{"$label":"DIRECTED","_key":"63902","_from":"6189","_to":"39922"} +{"$label":"DIRECTED","_key":"45807","_from":"6189","_to":"30302"} +{"$label":"ACTS_IN","name":"Lt. Col. Peter Willis","type":"Role","_key":"72837","_from":"6190","_to":"43874"} +{"$label":"ACTS_IN","name":"Eugene Sutphin","type":"Role","_key":"70946","_from":"6190","_to":"43099"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"70683","_from":"6190","_to":"43000"} +{"$label":"ACTS_IN","name":"Frank Canton","type":"Role","_key":"66844","_from":"6190","_to":"41285"} +{"$label":"ACTS_IN","name":"Chester Walker","type":"Role","_key":"54279","_from":"6190","_to":"34846"} +{"$label":"ACTS_IN","name":"Dr. Richard Milstein","type":"Role","_key":"105107","_from":"6192","_to":"61860"} +{"$label":"ACTS_IN","name":"Jeremy Watt","type":"Role","_key":"16164","_from":"6192","_to":"12272"} +{"$label":"ACTS_IN","name":"Professor Fisher","type":"Role","_key":"110335","_from":"6193","_to":"65199"} +{"$label":"ACTS_IN","name":"Mr. Ryder","type":"Role","_key":"90329","_from":"6193","_to":"53388"} +{"$label":"ACTS_IN","name":"Commissioner Daly","type":"Role","_key":"89829","_from":"6193","_to":"53152"} +{"$label":"ACTS_IN","name":"Sir Francis Walsingham","type":"Role","_key":"72005","_from":"6193","_to":"43543"} +{"$label":"ACTS_IN","name":"Leland Perkins","type":"Role","_key":"69693","_from":"6193","_to":"42545"} +{"$label":"ACTS_IN","name":"Delben\u00e9","type":"Role","_key":"66419","_from":"6193","_to":"41070"} +{"$label":"ACTS_IN","name":"Ainstee","type":"Role","_key":"13030","_from":"6193","_to":"10160"} +{"$label":"ACTS_IN","name":"Seminarist","type":"Role","_key":"7441","_from":"6205","_to":"6198"} +{"$label":"ACTS_IN","name":"Hermaphrodite","type":"Role","_key":"7440","_from":"6204","_to":"6198"} +{"$label":"ACTS_IN","name":"Seminarist","type":"Role","_key":"7439","_from":"6203","_to":"6198"} +{"$label":"ACTS_IN","name":"Junger Mann","type":"Role","_key":"7438","_from":"6202","_to":"6198"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"7437","_from":"6201","_to":"6198"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"7436","_from":"6200","_to":"6198"} +{"$label":"ACTS_IN","name":"Seminarist","type":"Role","_key":"7435","_from":"6199","_to":"6198"} +{"$label":"ACTS_IN","name":"Begbie","type":"Role","_key":"7458","_from":"6215","_to":"6206"} +{"$label":"ACTS_IN","name":"Mikey Forrester","type":"Role","_key":"7457","_from":"6214","_to":"6206"} +{"$label":"ACTS_IN","name":"Lizzy","type":"Role","_key":"7454","_from":"6213","_to":"6206"} +{"$label":"ACTS_IN","name":"Mrs. Renton","type":"Role","_key":"7452","_from":"6212","_to":"6206"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"7449","_from":"6211","_to":"6206"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"7448","_from":"6210","_to":"6206"} +{"$label":"ACTS_IN","name":"Sick Boy","type":"Role","_key":"7447","_from":"6209","_to":"6206"} +{"$label":"DIRECTED","_key":"7444","_from":"6208","_to":"6206"} +{"$label":"DIRECTED","_key":"7443","_from":"6207","_to":"6206"} +{"$label":"ACTS_IN","name":"Jonny","type":"Role","_key":"114609","_from":"6209","_to":"67516"} +{"$label":"ACTS_IN","name":"Lucas Harper","type":"Role","_key":"109637","_from":"6209","_to":"64758"} +{"$label":"ACTS_IN","name":"Simon Sheppard","type":"Role","_key":"64194","_from":"6209","_to":"40048"} +{"$label":"ACTS_IN","name":"Dade Murphy \/ 'Crash Override' \/ 'Zero Cool'","type":"Role","_key":"63237","_from":"6209","_to":"39652"} +{"$label":"ACTS_IN","name":"Edmund Bertram","type":"Role","_key":"63009","_from":"6209","_to":"39550"} +{"$label":"ACTS_IN","name":"Captain James Macleane","type":"Role","_key":"62911","_from":"6209","_to":"39519"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"55647","_from":"6209","_to":"35428"} +{"$label":"ACTS_IN","name":"Oren Goodchild","type":"Role","_key":"48380","_from":"6209","_to":"31760"} +{"$label":"ACTS_IN","name":"Pvt. Cooper","type":"Role","_key":"72523","_from":"6210","_to":"43746"} +{"$label":"ACTS_IN","name":"Colin McMurray","type":"Role","_key":"65577","_from":"6210","_to":"40642"} +{"$label":"ACTS_IN","name":"Wulfila","type":"Role","_key":"55875","_from":"6210","_to":"35542"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"110972","_from":"6211","_to":"65545"} +{"$label":"ACTS_IN","name":"Deirdre","type":"Role","_key":"110608","_from":"6211","_to":"65352"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"102991","_from":"6211","_to":"60579"} +{"$label":"ACTS_IN","name":"Kelly Drummond","type":"Role","_key":"97919","_from":"6211","_to":"57668"} +{"$label":"ACTS_IN","name":"Paige Marshall","type":"Role","_key":"97909","_from":"6211","_to":"57666"} +{"$label":"ACTS_IN","name":"Evangeline","type":"Role","_key":"68887","_from":"6211","_to":"42189"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"49734","_from":"6211","_to":"32538"} +{"$label":"ACTS_IN","name":"Carla Jean Moss","type":"Role","_key":"45544","_from":"6211","_to":"30156"} +{"$label":"ACTS_IN","name":"Mary Maceachran","type":"Role","_key":"36866","_from":"6211","_to":"24998"} +{"$label":"ACTS_IN","name":"Isabel Knollys","type":"Role","_key":"32269","_from":"6211","_to":"22475"} +{"$label":"ACTS_IN","name":"Peter Pan","type":"Role","_key":"10305","_from":"6211","_to":"8196"} +{"$label":"ACTS_IN","name":"Danny Devine","type":"Role","_key":"118576","_from":"6215","_to":"69721"} +{"$label":"ACTS_IN","name":"Sergei Karpovich","type":"Role","_key":"114376","_from":"6215","_to":"67373"} +{"$label":"ACTS_IN","name":"Carl Benton","type":"Role","_key":"97985","_from":"6215","_to":"57709"} +{"$label":"ACTS_IN","name":"John MacCormick","type":"Role","_key":"89331","_from":"6215","_to":"52879"} +{"$label":"ACTS_IN","name":"Malachy McCourt","type":"Role","_key":"62989","_from":"6215","_to":"39545"} +{"$label":"ACTS_IN","name":"Will Plunkett","type":"Role","_key":"62912","_from":"6215","_to":"39519"} +{"$label":"ACTS_IN","name":"F.W. Colqhoun","type":"Role","_key":"61733","_from":"6215","_to":"38878"} +{"$label":"ACTS_IN","name":"Gaz","type":"Role","_key":"53783","_from":"6215","_to":"34661"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"42854","_from":"6215","_to":"28653"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"21763","_from":"6215","_to":"15899"} +{"$label":"ACTS_IN","name":"Durza","type":"Role","_key":"21670","_from":"6215","_to":"15842"} +{"$label":"ACTS_IN","name":"George Lennox","type":"Role","_key":"18639","_from":"6215","_to":"13787"} +{"$label":"ACTS_IN","name":"Daffy","type":"Role","_key":"16474","_from":"6215","_to":"12443"} +{"$label":"ACTS_IN","name":"Campbell","type":"Role","_key":"15488","_from":"6215","_to":"11830"} +{"$label":"ACTS_IN","name":"Felix DeSouza","type":"Role","_key":"14323","_from":"6215","_to":"11086"} +{"$label":"ACTS_IN","name":"Eric Wirral","type":"Role","_key":"14257","_from":"6215","_to":"11026"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"13834","_from":"6215","_to":"10733"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"7467","_from":"6220","_to":"6216"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"7466","_from":"6219","_to":"6216"} +{"$label":"ACTS_IN","name":"Santiago","type":"Role","_key":"7465","_from":"6218","_to":"6216"} +{"$label":"DIRECTED","_key":"7459","_from":"6217","_to":"6216"} +{"$label":"DIRECTED","_key":"72682","_from":"6217","_to":"43799"} +{"$label":"DIRECTED","_key":"69537","_from":"6217","_to":"42469"} +{"$label":"DIRECTED","_key":"59265","_from":"6217","_to":"37434"} +{"$label":"DIRECTED","_key":"41172","_from":"6217","_to":"27708"} +{"$label":"DIRECTED","_key":"40882","_from":"6217","_to":"27510"} +{"$label":"DIRECTED","_key":"31580","_from":"6217","_to":"22047"} +{"$label":"DIRECTED","_key":"15600","_from":"6217","_to":"11901"} +{"$label":"DIRECTED","_key":"15404","_from":"6217","_to":"11783"} +{"$label":"DIRECTED","_key":"13138","_from":"6217","_to":"10247"} +{"$label":"ACTS_IN","name":"Thomas Bardo","type":"Role","_key":"97176","_from":"6218","_to":"57167"} +{"$label":"ACTS_IN","name":"Lt. Viktor Burakov","type":"Role","_key":"90232","_from":"6218","_to":"53351"} +{"$label":"ACTS_IN","name":"Young Groom","type":"Role","_key":"72681","_from":"6218","_to":"43799"} +{"$label":"ACTS_IN","name":"Doctor Newman","type":"Role","_key":"70894","_from":"6218","_to":"43076"} +{"$label":"ACTS_IN","name":"Fergus","type":"Role","_key":"69540","_from":"6218","_to":"42469"} +{"$label":"ACTS_IN","name":"Cardinal Richelieu","type":"Role","_key":"69454","_from":"6218","_to":"42441"} +{"$label":"ACTS_IN","name":"McCaran","type":"Role","_key":"62760","_from":"6218","_to":"39453"} +{"$label":"ACTS_IN","name":"Dr. Arlo Penner","type":"Role","_key":"55188","_from":"6218","_to":"35208"} +{"$label":"ACTS_IN","name":"Alistair Pratt","type":"Role","_key":"54579","_from":"6218","_to":"34969"} +{"$label":"ACTS_IN","name":"Colm","type":"Role","_key":"28350","_from":"6218","_to":"20286"} +{"$label":"ACTS_IN","name":"Milo O'Brannigan","type":"Role","_key":"28143","_from":"6218","_to":"20177"} +{"$label":"ACTS_IN","name":"Ned Broy","type":"Role","_key":"15409","_from":"6218","_to":"11783"} +{"$label":"ACTS_IN","name":"Pater Costigan","type":"Role","_key":"14897","_from":"6218","_to":"11449"} +{"$label":"ACTS_IN","name":"Tony Costello","type":"Role","_key":"14339","_from":"6218","_to":"11100"} +{"$label":"ACTS_IN","name":"Bertie","type":"Role","_key":"13143","_from":"6218","_to":"10247"} +{"$label":"ACTS_IN","name":"Chief Inspector Eric Finch","type":"Role","_key":"8767","_from":"6218","_to":"7114"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"100886","_from":"6219","_to":"59480"} +{"$label":"ACTS_IN","name":"Laura Wilson","type":"Role","_key":"98812","_from":"6219","_to":"58224"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"96796","_from":"6219","_to":"56924"} +{"$label":"ACTS_IN","name":"Regina Lambert","type":"Role","_key":"94483","_from":"6219","_to":"55646"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"92524","_from":"6219","_to":"54610"} +{"$label":"ACTS_IN","name":"Barbara 'Cookie' Cook","type":"Role","_key":"89819","_from":"6219","_to":"53151"} +{"$label":"ACTS_IN","name":"Condoleezza Rice","type":"Role","_key":"63830","_from":"6219","_to":"39901"} +{"$label":"ACTS_IN","name":"Kate Thomas","type":"Role","_key":"56350","_from":"6219","_to":"35808"} +{"$label":"ACTS_IN","name":"Libby","type":"Role","_key":"47537","_from":"6219","_to":"31324"} +{"$label":"ACTS_IN","name":"Dame Vaako","type":"Role","_key":"23606","_from":"6219","_to":"17115"} +{"$label":"ACTS_IN","name":"Christine Thayer","type":"Role","_key":"14534","_from":"6219","_to":"11201"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"12954","_from":"6219","_to":"10106"} +{"$label":"ACTS_IN","name":"Nyah Nordoff-Hall","type":"Role","_key":"11388","_from":"6219","_to":"8971"} +{"$label":"ACTS_IN","name":"Eugenia","type":"Role","_key":"12930","_from":"6220","_to":"10088"} +{"$label":"ACTS_IN","name":"Smuggler","type":"Role","_key":"7482","_from":"6227","_to":"6221"} +{"$label":"ACTS_IN","name":"Dr. Walters","type":"Role","_key":"7480","_from":"6226","_to":"6221"} +{"$label":"ACTS_IN","name":"Dr. Plummer","type":"Role","_key":"7479","_from":"6225","_to":"6221"} +{"$label":"ACTS_IN","name":"Dave Kujan, US Customs","type":"Role","_key":"7474","_from":"6224","_to":"6221"} +{"$label":"ACTS_IN","name":"Michael McManus","type":"Role","_key":"7470","_from":"6223","_to":"6221"} +{"$label":"DIRECTED","_key":"7468","_from":"6222","_to":"6221"} +{"$label":"DIRECTED","_key":"53914","_from":"6222","_to":"34700"} +{"$label":"DIRECTED","_key":"19695","_from":"6222","_to":"14564"} +{"$label":"DIRECTED","_key":"13406","_from":"6222","_to":"10427"} +{"$label":"ACTS_IN","name":"Dodge","type":"Role","_key":"116603","_from":"6223","_to":"68642"} +{"$label":"ACTS_IN","name":"Tuff Hedeman","type":"Role","_key":"114811","_from":"6223","_to":"67628"} +{"$label":"ACTS_IN","name":"Daniel Gray","type":"Role","_key":"107815","_from":"6223","_to":"63674"} +{"$label":"ACTS_IN","name":"John Redding","type":"Role","_key":"106146","_from":"6223","_to":"62517"} +{"$label":"ACTS_IN","name":"Golikov","type":"Role","_key":"103794","_from":"6223","_to":"61053"} +{"$label":"ACTS_IN","name":"Lefty","type":"Role","_key":"103634","_from":"6223","_to":"60950"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"91465","_from":"6223","_to":"53932"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"64752","_from":"6223","_to":"40305"} +{"$label":"ACTS_IN","name":"Doyle Johnson","type":"Role","_key":"54519","_from":"6223","_to":"34938"} +{"$label":"ACTS_IN","name":"Weed","type":"Role","_key":"37762","_from":"6223","_to":"25613"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"36674","_from":"6223","_to":"24857"} +{"$label":"ACTS_IN","name":"Billy Vorsovich","type":"Role","_key":"22139","_from":"6223","_to":"16146"} +{"$label":"ACTS_IN","name":"Agent Victor \" Vic \" Cooper","type":"Role","_key":"18202","_from":"6223","_to":"13500"} +{"$label":"ACTS_IN","name":"Barney Rubble","type":"Role","_key":"10581","_from":"6223","_to":"8403"} +{"$label":"ACTS_IN","name":"Giovanni Falcone","type":"Role","_key":"119149","_from":"6224","_to":"70024"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"108535","_from":"6224","_to":"64148"} +{"$label":"ACTS_IN","name":"Yonkers Joe","type":"Role","_key":"101362","_from":"6224","_to":"59669"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"99498","_from":"6224","_to":"58654"} +{"$label":"ACTS_IN","name":"Matt Gavin","type":"Role","_key":"72444","_from":"6224","_to":"43723"} +{"$label":"ACTS_IN","name":"Cheech","type":"Role","_key":"69522","_from":"6224","_to":"42465"} +{"$label":"ACTS_IN","name":"Elleroy Coolidge","type":"Role","_key":"67124","_from":"6224","_to":"41425"} +{"$label":"ACTS_IN","name":"Guy Baran","type":"Role","_key":"67114","_from":"6224","_to":"41420"} +{"$label":"ACTS_IN","name":"Kassada","type":"Role","_key":"61996","_from":"6224","_to":"39027"} +{"$label":"ACTS_IN","name":"Primo Sidone","type":"Role","_key":"54516","_from":"6224","_to":"34937"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"48308","_from":"6224","_to":"31726"} +{"$label":"ACTS_IN","name":"Detective Rydell","type":"Role","_key":"46392","_from":"6224","_to":"30650"} +{"$label":"ACTS_IN","name":"Sonny LoSpecchio","type":"Role","_key":"14214","_from":"6224","_to":"10992"} +{"$label":"ACTS_IN","name":"Vance","type":"Role","_key":"121483","_from":"6226","_to":"71361"} +{"$label":"ACTS_IN","name":"Lord High Charlie","type":"Role","_key":"97911","_from":"6226","_to":"57666"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"95640","_from":"6226","_to":"56251"} +{"$label":"ACTS_IN","name":"Capt. Tom Metsker","type":"Role","_key":"64309","_from":"6226","_to":"40088"} +{"$label":"ACTS_IN","name":"Ben Johnson","type":"Role","_key":"60013","_from":"6226","_to":"37876"} +{"$label":"ACTS_IN","name":"Officer Hannagan","type":"Role","_key":"52830","_from":"6226","_to":"34252"} +{"$label":"ACTS_IN","name":"Mark Steckle","type":"Role","_key":"16414","_from":"6226","_to":"12420"} +{"$label":"DIRECTED","_key":"97915","_from":"6226","_to":"57666"} +{"$label":"ACTS_IN","name":"Mr. Jamison","type":"Role","_key":"116475","_from":"6227","_to":"68550"} +{"$label":"ACTS_IN","name":"Frankenstein's Doctor","type":"Role","_key":"93711","_from":"6227","_to":"55160"} +{"$label":"DIRECTED","_key":"93696","_from":"6227","_to":"55160"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"7498","_from":"6242","_to":"6228"} +{"$label":"ACTS_IN","name":"Mayor of Munchkin City","type":"Role","_key":"7497","_from":"6241","_to":"6228"} +{"$label":"ACTS_IN","name":"Auntie Em","type":"Role","_key":"7496","_from":"6240","_to":"6228"} +{"$label":"ACTS_IN","name":"The Wicked Witch of the West","type":"Role","_key":"7494","_from":"6239","_to":"6228"} +{"$label":"ACTS_IN","name":"Glinda, the Good Witch of the North","type":"Role","_key":"7493","_from":"6238","_to":"6228"} +{"$label":"ACTS_IN","name":"The Tin Man","type":"Role","_key":"7492","_from":"6237","_to":"6228"} +{"$label":"ACTS_IN","name":"The Cowardly Lion","type":"Role","_key":"7491","_from":"6236","_to":"6228"} +{"$label":"ACTS_IN","name":"The Scarecrow","type":"Role","_key":"7490","_from":"6235","_to":"6228"} +{"$label":"ACTS_IN","name":"Emerald City doorman","type":"Role","_key":"7489","_from":"6234","_to":"6228"} +{"$label":"ACTS_IN","name":"Dorothy Gale","type":"Role","_key":"7488","_from":"6233","_to":"6228"} +{"$label":"DIRECTED","_key":"7487","_from":"6232","_to":"6228"} +{"$label":"DIRECTED","_key":"7486","_from":"6231","_to":"6228"} +{"$label":"DIRECTED","_key":"7485","_from":"6230","_to":"6228"} +{"$label":"DIRECTED","_key":"7484","_from":"6229","_to":"6228"} +{"$label":"DIRECTED","_key":"71675","_from":"6229","_to":"43395"} +{"$label":"DIRECTED","_key":"25349","_from":"6229","_to":"18275"} +{"$label":"DIRECTED","_key":"25336","_from":"6229","_to":"18263"} +{"$label":"DIRECTED","_key":"121621","_from":"6230","_to":"71450"} +{"$label":"DIRECTED","_key":"71099","_from":"6230","_to":"43162"} +{"$label":"DIRECTED","_key":"108449","_from":"6231","_to":"64107"} +{"$label":"DIRECTED","_key":"95062","_from":"6231","_to":"55955"} +{"$label":"DIRECTED","_key":"67965","_from":"6231","_to":"41762"} +{"$label":"DIRECTED","_key":"36325","_from":"6231","_to":"24646"} +{"$label":"DIRECTED","_key":"26040","_from":"6231","_to":"18716"} +{"$label":"DIRECTED","_key":"11591","_from":"6231","_to":"9107"} +{"$label":"DIRECTED","_key":"109366","_from":"6232","_to":"64615"} +{"$label":"DIRECTED","_key":"25034","_from":"6232","_to":"18088"} +{"$label":"DIRECTED","_key":"9042","_from":"6232","_to":"7317"} +{"$label":"ACTS_IN","name":"Marilyn Miller","type":"Role","_key":"117162","_from":"6233","_to":"68931"} +{"$label":"ACTS_IN","name":"Vicki Lester (Esther Blodgett)","type":"Role","_key":"26041","_from":"6233","_to":"18716"} +{"$label":"ACTS_IN","name":"Esther Smith","type":"Role","_key":"10806","_from":"6233","_to":"8568"} +{"$label":"ACTS_IN","name":"Mrs. Irene Hoffman Wallner","type":"Role","_key":"9691","_from":"6233","_to":"7772"} +{"$label":"ACTS_IN","name":"Prof. Viktor Roth","type":"Role","_key":"11702","_from":"6234","_to":"9187"} +{"$label":"ACTS_IN","name":"Angry driver","type":"Role","_key":"7511","_from":"6256","_to":"6243"} +{"$label":"ACTS_IN","name":"Manager of Hair Salon","type":"Role","_key":"7510","_from":"6255","_to":"6243"} +{"$label":"ACTS_IN","name":"The Obliging Gentleman","type":"Role","_key":"7509","_from":"6254","_to":"6243"} +{"$label":"ACTS_IN","name":"The Obtrusive Gentleman","type":"Role","_key":"7508","_from":"6253","_to":"6243"} +{"$label":"ACTS_IN","name":"The Manicure Gir","type":"Role","_key":"7507","_from":"6252","_to":"6243"} +{"$label":"ACTS_IN","name":"The Barber","type":"Role","_key":"7506","_from":"6251","_to":"6243"} +{"$label":"ACTS_IN","name":"The Photographer","type":"Role","_key":"7505","_from":"6250","_to":"6243"} +{"$label":"ACTS_IN","name":"The Maid","type":"Role","_key":"7504","_from":"6249","_to":"6243"} +{"$label":"ACTS_IN","name":"The Woman from the City","type":"Role","_key":"7503","_from":"6248","_to":"6243"} +{"$label":"ACTS_IN","name":"The Wife (Indre)","type":"Role","_key":"7502","_from":"6247","_to":"6243"} +{"$label":"ACTS_IN","name":"The Man (Anses)","type":"Role","_key":"7501","_from":"6246","_to":"6243"} +{"$label":"DIRECTED","_key":"7500","_from":"6245","_to":"6243"} +{"$label":"DIRECTED","_key":"7499","_from":"6244","_to":"6243"} +{"$label":"DIRECTED","_key":"65292","_from":"6244","_to":"40525"} +{"$label":"DIRECTED","_key":"44910","_from":"6244","_to":"29866"} +{"$label":"DIRECTED","_key":"41849","_from":"6244","_to":"28078"} +{"$label":"DIRECTED","_key":"40921","_from":"6244","_to":"27534"} +{"$label":"DIRECTED","_key":"24979","_from":"6244","_to":"18044"} +{"$label":"DIRECTED","_key":"11553","_from":"6244","_to":"9080"} +{"$label":"DIRECTED","_key":"7806","_from":"6244","_to":"6477"} +{"$label":"ACTS_IN","name":"Zirkusdirektor","type":"Role","_key":"69396","_from":"6245","_to":"42422"} +{"$label":"ACTS_IN","name":"Irene Graham","type":"Role","_key":"114521","_from":"6248","_to":"67457"} +{"$label":"ACTS_IN","name":"Mac the barman","type":"Role","_key":"25685","_from":"6250","_to":"18485"} +{"$label":"ACTS_IN","name":"'Flash' Farrell","type":"Role","_key":"109774","_from":"6254","_to":"64835"} +{"$label":"ACTS_IN","name":"Villager","type":"Role","_key":"95769","_from":"6256","_to":"56328"} +{"$label":"ACTS_IN","name":"John McTeague","type":"Role","_key":"12988","_from":"6256","_to":"10131"} +{"$label":"ACTS_IN","name":"Simon Buquet","type":"Role","_key":"11462","_from":"6256","_to":"9017"} +{"$label":"ACTS_IN","name":"Bagradian","type":"Role","_key":"7524","_from":"6265","_to":"6257"} +{"$label":"ACTS_IN","name":"Clarence Harvey Cook","type":"Role","_key":"7523","_from":"6264","_to":"6257"} +{"$label":"ACTS_IN","name":"Marko the Mailman","type":"Role","_key":"7522","_from":"6263","_to":"6257"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"7520","_from":"6262","_to":"6257"} +{"$label":"ACTS_IN","name":"Price","type":"Role","_key":"7519","_from":"6261","_to":"6257"} +{"$label":"ACTS_IN","name":"Hoffy","type":"Role","_key":"7518","_from":"6260","_to":"6257"} +{"$label":"ACTS_IN","name":"Harry Shapiro","type":"Role","_key":"7517","_from":"6259","_to":"6257"} +{"$label":"ACTS_IN","name":"Lt. Dunbar","type":"Role","_key":"7514","_from":"6258","_to":"6257"} +{"$label":"DIRECTED","_key":"65650","_from":"6258","_to":"40672"} +{"$label":"DIRECTED","_key":"50612","_from":"6258","_to":"33049"} +{"$label":"DIRECTED","_key":"43827","_from":"6258","_to":"29268"} +{"$label":"DIRECTED","_key":"38606","_from":"6258","_to":"26084"} +{"$label":"DIRECTED","_key":"14932","_from":"6258","_to":"11474"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37591","_from":"6259","_to":"25473"} +{"$label":"ACTS_IN","name":"Colonel Edward F. French","type":"Role","_key":"68276","_from":"6260","_to":"41908"} +{"$label":"ACTS_IN","name":"Chester","type":"Role","_key":"19034","_from":"6260","_to":"14055"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"16245","_from":"6260","_to":"12325"} +{"$label":"ACTS_IN","name":"Sir Henry","type":"Role","_key":"29821","_from":"6261","_to":"21100"} +{"$label":"ACTS_IN","name":"Ben Harper","type":"Role","_key":"26057","_from":"6261","_to":"18722"} +{"$label":"ACTS_IN","name":"Capt. Clarence Oveur","type":"Role","_key":"22575","_from":"6261","_to":"16390"} +{"$label":"ACTS_IN","name":"Tom Collins","type":"Role","_key":"22476","_from":"6261","_to":"16337"} +{"$label":"ACTS_IN","name":"Captain Oveur","type":"Role","_key":"9577","_from":"6261","_to":"7714"} +{"$label":"ACTS_IN","name":"Chester","type":"Role","_key":"118420","_from":"6262","_to":"69611"} +{"$label":"ACTS_IN","name":"Maj. Marvin Groper","type":"Role","_key":"118071","_from":"6262","_to":"69396"} +{"$label":"ACTS_IN","name":"Lieutenant Harold Kaminsky","type":"Role","_key":"68275","_from":"6262","_to":"41908"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"34812","_from":"6262","_to":"23787"} +{"$label":"ACTS_IN","name":"Bull Ransom","type":"Role","_key":"10700","_from":"6262","_to":"8495"} +{"$label":"ACTS_IN","name":"Resistance Leader","type":"Role","_key":"7538","_from":"6277","_to":"6266"} +{"$label":"ACTS_IN","name":"Gestapo-man Breitner","type":"Role","_key":"7537","_from":"6276","_to":"6266"} +{"$label":"ACTS_IN","name":"Will Dostgaarde","type":"Role","_key":"7536","_from":"6275","_to":"6266"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"7535","_from":"6274","_to":"6266"} +{"$label":"ACTS_IN","name":"Robby Froost","type":"Role","_key":"7534","_from":"6273","_to":"6266"} +{"$label":"ACTS_IN","name":"Jack Ten Brinck","type":"Role","_key":"7533","_from":"6272","_to":"6266"} +{"$label":"ACTS_IN","name":"Jan Weinberg","type":"Role","_key":"7532","_from":"6271","_to":"6266"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"7531","_from":"6270","_to":"6266"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"7530","_from":"6269","_to":"6266"} +{"$label":"ACTS_IN","name":"Colonel Rafelli","type":"Role","_key":"7529","_from":"6268","_to":"6266"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"7528","_from":"6267","_to":"6266"} +{"$label":"ACTS_IN","name":"Kathy Jacquard","type":"Role","_key":"111557","_from":"6267","_to":"65862"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"111944","_from":"6268","_to":"66083"} +{"$label":"ACTS_IN","name":"King Arthur","type":"Role","_key":"42760","_from":"6268","_to":"28616"} +{"$label":"ACTS_IN","name":"Inspector Craddock","type":"Role","_key":"41324","_from":"6268","_to":"27781"} +{"$label":"ACTS_IN","name":"Lt. Gen. Brian G. Horrocks","type":"Role","_key":"40258","_from":"6268","_to":"27164"} +{"$label":"ACTS_IN","name":"the Jackal","type":"Role","_key":"34672","_from":"6268","_to":"23728"} +{"$label":"ACTS_IN","name":"Captain Greetham","type":"Role","_key":"22622","_from":"6268","_to":"16415"} +{"$label":"ACTS_IN","name":"Joe Brody","type":"Role","_key":"15714","_from":"6268","_to":"11975"} +{"$label":"ACTS_IN","name":"General Dyer","type":"Role","_key":"9220","_from":"6268","_to":"7444"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"64803","_from":"6270","_to":"40321"} +{"$label":"ACTS_IN","name":"Dr. Mandrakis","type":"Role","_key":"60014","_from":"6270","_to":"37876"} +{"$label":"ACTS_IN","name":"Anton Steenwijk","type":"Role","_key":"23270","_from":"6270","_to":"16872"} +{"$label":"ACTS_IN","name":"Van Heerden","type":"Role","_key":"45649","_from":"6276","_to":"30214"} +{"$label":"ACTS_IN","name":"Stadtbeamter","type":"Role","_key":"43319","_from":"6276","_to":"28933"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"40222","_from":"6276","_to":"27143"} +{"$label":"DIRECTED","_key":"7555","_from":"6290","_to":"6278"} +{"$label":"ACTS_IN","name":"as Himself","type":"Role","_key":"7554","_from":"6289","_to":"6278"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"7553","_from":"6288","_to":"6278"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"7551","_from":"6287","_to":"6278"} +{"$label":"ACTS_IN","name":"Shazza","type":"Role","_key":"7550","_from":"6286","_to":"6278"} +{"$label":"ACTS_IN","name":"Perpetua","type":"Role","_key":"7548","_from":"6285","_to":"6278"} +{"$label":"ACTS_IN","name":"Mr. Fitzherbert","type":"Role","_key":"7547","_from":"6284","_to":"6278"} +{"$label":"ACTS_IN","name":"Mrs. Darcy","type":"Role","_key":"7546","_from":"6283","_to":"6278"} +{"$label":"ACTS_IN","name":"Uncle Geoffrey","type":"Role","_key":"7544","_from":"6282","_to":"6278"} +{"$label":"ACTS_IN","name":"Una Alconbury","type":"Role","_key":"7543","_from":"6281","_to":"6278"} +{"$label":"ACTS_IN","name":"Bridget's Mum","type":"Role","_key":"7542","_from":"6280","_to":"6278"} +{"$label":"ACTS_IN","name":"Bridget Jones","type":"Role","_key":"7539","_from":"6279","_to":"6278"} +{"$label":"ACTS_IN","name":"Novalyne Price","type":"Role","_key":"116260","_from":"6279","_to":"68444"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"110021","_from":"6279","_to":"65010"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"100928","_from":"6279","_to":"59495"} +{"$label":"ACTS_IN","name":"Lucy Hill","type":"Role","_key":"100685","_from":"6279","_to":"59369"} +{"$label":"ACTS_IN","name":"Beatrix Potter","type":"Role","_key":"97866","_from":"6279","_to":"57645"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"95072","_from":"6279","_to":"55962"} +{"$label":"ACTS_IN","name":"Allie","type":"Role","_key":"91019","_from":"6279","_to":"53708"} +{"$label":"ACTS_IN","name":"Barbara Novak","type":"Role","_key":"65242","_from":"6279","_to":"40504"} +{"$label":"ACTS_IN","name":"Angie (voice)","type":"Role","_key":"64045","_from":"6279","_to":"39973"} +{"$label":"ACTS_IN","name":"Betty Sizemore","type":"Role","_key":"63572","_from":"6279","_to":"39783"} +{"$label":"ACTS_IN","name":"Bridget Jones","type":"Role","_key":"56939","_from":"6279","_to":"36142"} +{"$label":"ACTS_IN","name":"Dorothy Boyd","type":"Role","_key":"53554","_from":"6279","_to":"34567"} +{"$label":"ACTS_IN","name":"Vanessa Bloome","type":"Role","_key":"37851","_from":"6279","_to":"25647"} +{"$label":"ACTS_IN","name":"Lexie Littleton","type":"Role","_key":"35004","_from":"6279","_to":"23895"} +{"$label":"ACTS_IN","name":"Tami","type":"Role","_key":"23593","_from":"6279","_to":"17109"} +{"$label":"ACTS_IN","name":"Ruby Thewes","type":"Role","_key":"20071","_from":"6279","_to":"14764"} +{"$label":"ACTS_IN","name":"Irene P. Waters","type":"Role","_key":"18503","_from":"6279","_to":"13701"} +{"$label":"ACTS_IN","name":"Anne Arden","type":"Role","_key":"17560","_from":"6279","_to":"13126"} +{"$label":"ACTS_IN","name":"Roxie Hart","type":"Role","_key":"13926","_from":"6279","_to":"10805"} +{"$label":"ACTS_IN","name":"Mae Braddock","type":"Role","_key":"10946","_from":"6279","_to":"8677"} +{"$label":"ACTS_IN","name":"Mrs. Folder","type":"Role","_key":"69276","_from":"6280","_to":"42354"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"56940","_from":"6280","_to":"36142"} +{"$label":"ACTS_IN","name":"Lady Riva Hardwick","type":"Role","_key":"102715","_from":"6281","_to":"60425"} +{"$label":"ACTS_IN","name":"Hausmutter","type":"Role","_key":"65430","_from":"6281","_to":"40563"} +{"$label":"ACTS_IN","name":"Homily Clock","type":"Role","_key":"53937","_from":"6281","_to":"34706"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"50526","_from":"6281","_to":"33000"} +{"$label":"ACTS_IN","name":"Kate MacLeod","type":"Role","_key":"47761","_from":"6281","_to":"31448"} +{"$label":"ACTS_IN","name":"Mrs. Moritz","type":"Role","_key":"25178","_from":"6281","_to":"18176"} +{"$label":"ACTS_IN","name":"Tessa","type":"Role","_key":"13673","_from":"6281","_to":"10618"} +{"$label":"ACTS_IN","name":"Cardinal Guillaume D'Estouteville","type":"Role","_key":"118524","_from":"6282","_to":"69685"} +{"$label":"ACTS_IN","name":"Uncle Geoffrey","type":"Role","_key":"56942","_from":"6282","_to":"36142"} +{"$label":"ACTS_IN","name":"Guy Singer","type":"Role","_key":"51084","_from":"6282","_to":"33334"} +{"$label":"ACTS_IN","name":"Nicholas Farrel","type":"Role","_key":"35215","_from":"6282","_to":"23986"} +{"$label":"ACTS_IN","name":"Bill\/Victor Hugenay","type":"Role","_key":"31500","_from":"6282","_to":"21998"} +{"$label":"ACTS_IN","name":"Smith Jamison","type":"Role","_key":"14371","_from":"6282","_to":"11114"} +{"$label":"ACTS_IN","name":"Lord Darling","type":"Role","_key":"91104","_from":"6284","_to":"53749"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"20650","_from":"6284","_to":"15095"} +{"$label":"ACTS_IN","name":"Clipboard Nazi","type":"Role","_key":"92523","_from":"6285","_to":"54610"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"60841","_from":"6285","_to":"38430"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"119481","_from":"6286","_to":"70188"} +{"$label":"ACTS_IN","name":"Tracey","type":"Role","_key":"59090","_from":"6286","_to":"37302"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"18140","_from":"6286","_to":"13461"} +{"$label":"ACTS_IN","name":"Menelaus","type":"Role","_key":"119769","_from":"6287","_to":"70330"} +{"$label":"ACTS_IN","name":"Haman, the Agagite","type":"Role","_key":"102681","_from":"6287","_to":"60410"} +{"$label":"ACTS_IN","name":"Dr. Masani","type":"Role","_key":"93408","_from":"6289","_to":"55010"} +{"$label":"DIRECTED","_key":"105543","_from":"6290","_to":"62107"} +{"$label":"ACTS_IN","name":"Winesnap","type":"Role","_key":"7567","_from":"6299","_to":"6291"} +{"$label":"ACTS_IN","name":"Spider Simpson","type":"Role","_key":"7566","_from":"6298","_to":"6291"} +{"$label":"ACTS_IN","name":"Sterne","type":"Role","_key":"7565","_from":"6297","_to":"6291"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"7564","_from":"6296","_to":"6291"} +{"$label":"ACTS_IN","name":"Toots Sweet","type":"Role","_key":"7562","_from":"6295","_to":"6291"} +{"$label":"ACTS_IN","name":"Ethan Krusemark","type":"Role","_key":"7561","_from":"6294","_to":"6291"} +{"$label":"ACTS_IN","name":"Epiphany Proudfoot","type":"Role","_key":"7559","_from":"6293","_to":"6291"} +{"$label":"DIRECTED","_key":"7556","_from":"6292","_to":"6291"} +{"$label":"DIRECTED","_key":"88039","_from":"6292","_to":"52261"} +{"$label":"DIRECTED","_key":"71383","_from":"6292","_to":"43295"} +{"$label":"DIRECTED","_key":"71064","_from":"6292","_to":"43153"} +{"$label":"DIRECTED","_key":"69158","_from":"6292","_to":"42298"} +{"$label":"DIRECTED","_key":"68974","_from":"6292","_to":"42225"} +{"$label":"DIRECTED","_key":"63497","_from":"6292","_to":"39759"} +{"$label":"DIRECTED","_key":"62993","_from":"6292","_to":"39545"} +{"$label":"DIRECTED","_key":"50902","_from":"6292","_to":"33220"} +{"$label":"DIRECTED","_key":"49860","_from":"6292","_to":"32644"} +{"$label":"DIRECTED","_key":"27688","_from":"6292","_to":"19838"} +{"$label":"DIRECTED","_key":"14467","_from":"6292","_to":"11179"} +{"$label":"ACTS_IN","name":"Queenie","type":"Role","_key":"89061","_from":"6293","_to":"52762"} +{"$label":"ACTS_IN","name":"Rachel Banks","type":"Role","_key":"56930","_from":"6293","_to":"36140"} +{"$label":"ACTS_IN","name":"Dr. Ellman","type":"Role","_key":"33936","_from":"6294","_to":"23362"} +{"$label":"ACTS_IN","name":"Randal Poe","type":"Role","_key":"17551","_from":"6297","_to":"13116"} +{"$label":"ACTS_IN","name":"Mr. Slate","type":"Role","_key":"10575","_from":"6299","_to":"8398"} +{"$label":"ACTS_IN","name":"Shell Dweller","type":"Role","_key":"7582","_from":"6310","_to":"6300"} +{"$label":"ACTS_IN","name":"JOT","type":"Role","_key":"7580","_from":"6309","_to":"6300"} +{"$label":"ACTS_IN","name":"OUE","type":"Role","_key":"7579","_from":"6308","_to":"6300"} +{"$label":"ACTS_IN","name":"CAM","type":"Role","_key":"7578","_from":"6307","_to":"6300"} +{"$label":"ACTS_IN","name":"IMM","type":"Role","_key":"7577","_from":"6306","_to":"6300"} +{"$label":"ACTS_IN","name":"DWY","type":"Role","_key":"7576","_from":"6305","_to":"6300"} +{"$label":"ACTS_IN","name":"TWA","type":"Role","_key":"7574","_from":"6304","_to":"6300"} +{"$label":"ACTS_IN","name":"LUH","type":"Role","_key":"7572","_from":"6303","_to":"6300"} +{"$label":"ACTS_IN","name":"SRT","type":"Role","_key":"7571","_from":"6302","_to":"6300"} +{"$label":"ACTS_IN","name":"SEN","type":"Role","_key":"7570","_from":"6301","_to":"6300"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"119200","_from":"6301","_to":"70040"} +{"$label":"ACTS_IN","name":"Lucas Deranian","type":"Role","_key":"101908","_from":"6301","_to":"59978"} +{"$label":"ACTS_IN","name":"Isaac Q. Cumber","type":"Role","_key":"99874","_from":"6301","_to":"58899"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"69399","_from":"6301","_to":"42424"} +{"$label":"ACTS_IN","name":"Dr. Sam Loomis","type":"Role","_key":"69375","_from":"6301","_to":"42413"} +{"$label":"ACTS_IN","name":"Dr. Sam Loomis","type":"Role","_key":"68872","_from":"6301","_to":"42186"} +{"$label":"ACTS_IN","name":"Dr. Sam Loomis","type":"Role","_key":"67107","_from":"6301","_to":"41418"} +{"$label":"ACTS_IN","name":"Kantorek","type":"Role","_key":"66677","_from":"6301","_to":"41199"} +{"$label":"ACTS_IN","name":"Vater Loomis","type":"Role","_key":"51121","_from":"6301","_to":"33352"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"45135","_from":"6301","_to":"29948"} +{"$label":"ACTS_IN","name":"Mr. Myers","type":"Role","_key":"40898","_from":"6301","_to":"27513"} +{"$label":"ACTS_IN","name":"Flight Lt. Colin Blythe \"The Forger\"","type":"Role","_key":"40474","_from":"6301","_to":"27264"} +{"$label":"ACTS_IN","name":"Mr. Justice Lawrence Wargrave","type":"Role","_key":"34508","_from":"6301","_to":"23628"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"33916","_from":"6301","_to":"23357"} +{"$label":"ACTS_IN","name":"Barsad","type":"Role","_key":"33469","_from":"6301","_to":"23156"} +{"$label":"ACTS_IN","name":"Danglars","type":"Role","_key":"32532","_from":"6301","_to":"22623"} +{"$label":"ACTS_IN","name":"Insp. Calhoun","type":"Role","_key":"28089","_from":"6301","_to":"20137"} +{"$label":"ACTS_IN","name":"Pere Dominic","type":"Role","_key":"25262","_from":"6301","_to":"18218"} +{"$label":"ACTS_IN","name":"Fred Smudge","type":"Role","_key":"25087","_from":"6301","_to":"18122"} +{"$label":"ACTS_IN","name":"Satan","type":"Role","_key":"21262","_from":"6301","_to":"15553"} +{"$label":"ACTS_IN","name":"Melchior","type":"Role","_key":"21140","_from":"6301","_to":"15473"} +{"$label":"ACTS_IN","name":"Dr. Michaels","type":"Role","_key":"18815","_from":"6301","_to":"13902"} +{"$label":"ACTS_IN","name":"R. Parsons","type":"Role","_key":"17174","_from":"6301","_to":"12865"} +{"$label":"ACTS_IN","name":"Preacher Quint","type":"Role","_key":"14868","_from":"6301","_to":"11429"} +{"$label":"ACTS_IN","name":"President of the United States","type":"Role","_key":"11984","_from":"6301","_to":"9392"} +{"$label":"ACTS_IN","name":"Dr. Sam Loomis","type":"Role","_key":"11302","_from":"6301","_to":"8922"} +{"$label":"ACTS_IN","name":"Ernst Stavro Blofeld","type":"Role","_key":"7977","_from":"6301","_to":"6608"} +{"$label":"ACTS_IN","name":"Larry, the Duck","type":"Role","_key":"95970","_from":"6304","_to":"56425"} +{"$label":"ACTS_IN","name":"Nurse Shelley","type":"Role","_key":"114924","_from":"6306","_to":"67685"} +{"$label":"ACTS_IN","name":"Vittorino","type":"Role","_key":"7595","_from":"6320","_to":"6311"} +{"$label":"ACTS_IN","name":"Direttrice","type":"Role","_key":"7594","_from":"6319","_to":"6311"} +{"$label":"ACTS_IN","name":"Bartolomeo","type":"Role","_key":"7592","_from":"6318","_to":"6311"} +{"$label":"ACTS_IN","name":"Signora Guicciardini","type":"Role","_key":"7590","_from":"6317","_to":"6311"} +{"$label":"ACTS_IN","name":"Ferruccio","type":"Role","_key":"7589","_from":"6316","_to":"6311"} +{"$label":"ACTS_IN","name":"Rodolfo","type":"Role","_key":"7588","_from":"6315","_to":"6311"} +{"$label":"ACTS_IN","name":"Eliseo Orefice","type":"Role","_key":"7587","_from":"6314","_to":"6311"} +{"$label":"ACTS_IN","name":"Giosu\u00e9 Orefice","type":"Role","_key":"7586","_from":"6313","_to":"6311"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"7584","_from":"6312","_to":"6311"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"91477","_from":"6312","_to":"53935"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"69040","_from":"6312","_to":"42262"} +{"$label":"ACTS_IN","name":"Vittoria","type":"Role","_key":"66169","_from":"6312","_to":"40934"} +{"$label":"ACTS_IN","name":"Blue Fairy","type":"Role","_key":"64437","_from":"6312","_to":"40156"} +{"$label":"ACTS_IN","name":"Nicoletta","type":"Role","_key":"13758","_from":"6312","_to":"10676"} +{"$label":"ACTS_IN","name":"Joe Maistersinger","type":"Role","_key":"25871","_from":"6320","_to":"18581"} +{"$label":"ACTS_IN","name":"Porno Star #2","type":"Role","_key":"7637","_from":"6354","_to":"6321"} +{"$label":"ACTS_IN","name":"Porno Star #1","type":"Role","_key":"7636","_from":"6353","_to":"6321"} +{"$label":"ACTS_IN","name":"Raquel","type":"Role","_key":"7635","_from":"6352","_to":"6321"} +{"$label":"ACTS_IN","name":"Marian","type":"Role","_key":"7634","_from":"6351","_to":"6321"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"7633","_from":"6350","_to":"6321"} +{"$label":"ACTS_IN","name":"Tail Gate Driver","type":"Role","_key":"7632","_from":"6349","_to":"6321"} +{"$label":"ACTS_IN","name":"Assistent #2","type":"Role","_key":"7631","_from":"6348","_to":"6321"} +{"$label":"ACTS_IN","name":"Assistent #1","type":"Role","_key":"7630","_from":"6347","_to":"6321"} +{"$label":"ACTS_IN","name":"Arnie","type":"Role","_key":"7628","_from":"6346","_to":"6321"} +{"$label":"ACTS_IN","name":"Junkie Girl","type":"Role","_key":"7627","_from":"6345","_to":"6321"} +{"$label":"ACTS_IN","name":"Girl #1","type":"Role","_key":"7626","_from":"6344","_to":"6321"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"7625","_from":"6343","_to":"6321"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"7624","_from":"6342","_to":"6321"} +{"$label":"ACTS_IN","name":"Lanie","type":"Role","_key":"7622","_from":"6341","_to":"6321"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"7621","_from":"6340","_to":"6321"} +{"$label":"ACTS_IN","name":"The Dog","type":"Role","_key":"7620","_from":"6339","_to":"6321"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"7619","_from":"6338","_to":"6321"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"7618","_from":"6337","_to":"6321"} +{"$label":"ACTS_IN","name":"Candace Dayton","type":"Role","_key":"7617","_from":"6336","_to":"6321"} +{"$label":"ACTS_IN","name":"Prison Official #2","type":"Role","_key":"7615","_from":"6335","_to":"6321"} +{"$label":"ACTS_IN","name":"Prison Official #1","type":"Role","_key":"7614","_from":"6334","_to":"6321"} +{"$label":"ACTS_IN","name":"Captain Luneau","type":"Role","_key":"7613","_from":"6333","_to":"6321"} +{"$label":"ACTS_IN","name":"Pete Dayton","type":"Role","_key":"7612","_from":"6332","_to":"6321"} +{"$label":"ACTS_IN","name":"Warden Clements","type":"Role","_key":"7611","_from":"6331","_to":"6321"} +{"$label":"ACTS_IN","name":"Doctor Smordin","type":"Role","_key":"7610","_from":"6330","_to":"6321"} +{"$label":"ACTS_IN","name":"Guard Ivory","type":"Role","_key":"7608","_from":"6329","_to":"6321"} +{"$label":"ACTS_IN","name":"Forewoman","type":"Role","_key":"7606","_from":"6328","_to":"6321"} +{"$label":"ACTS_IN","name":"Guard Mike","type":"Role","_key":"7605","_from":"6327","_to":"6321"} +{"$label":"ACTS_IN","name":"Guard Henry","type":"Role","_key":"7604","_from":"6326","_to":"6321"} +{"$label":"ACTS_IN","name":"Party Girl","type":"Role","_key":"7602","_from":"6325","_to":"6321"} +{"$label":"ACTS_IN","name":"Mystery Man","type":"Role","_key":"7601","_from":"6324","_to":"6321"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"7600","_from":"6323","_to":"6321"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"7599","_from":"6322","_to":"6321"} +{"$label":"ACTS_IN","name":"Reardon","type":"Role","_key":"118769","_from":"6322","_to":"69835"} +{"$label":"ACTS_IN","name":"Perry Smith","type":"Role","_key":"118006","_from":"6324","_to":"69362"} +{"$label":"ACTS_IN","name":"Donald Patterson","type":"Role","_key":"70357","_from":"6324","_to":"42858"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"27024","_from":"6324","_to":"19441"} +{"$label":"ACTS_IN","name":"Mexican Boy Selling Lottery Tickets (uncredited)","type":"Role","_key":"25715","_from":"6324","_to":"18497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120582","_from":"6326","_to":"70822"} +{"$label":"ACTS_IN","name":"Henry Rollins","type":"Role","_key":"115624","_from":"6326","_to":"68068"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106683","_from":"6326","_to":"62867"} +{"$label":"ACTS_IN","name":"Dale Murphy","type":"Role","_key":"93302","_from":"6326","_to":"54964"} +{"$label":"ACTS_IN","name":"Officer Dobbs (lead chase car driver)","type":"Role","_key":"65099","_from":"6326","_to":"40441"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"60224","_from":"6326","_to":"37994"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"12511","_from":"6326","_to":"9800"} +{"$label":"ACTS_IN","name":"Sandra Sullivan","type":"Role","_key":"99359","_from":"6328","_to":"58545"} +{"$label":"ACTS_IN","name":"Taffy Davenport","type":"Role","_key":"99340","_from":"6328","_to":"58537"} +{"$label":"ACTS_IN","name":"Peggy Gravel","type":"Role","_key":"99321","_from":"6328","_to":"58520"} +{"$label":"ACTS_IN","name":"Mrs. Sylvia Mallory","type":"Role","_key":"98990","_from":"6328","_to":"58316"} +{"$label":"ACTS_IN","name":"Marge the Neuter","type":"Role","_key":"95998","_from":"6328","_to":"56430"} +{"$label":"ACTS_IN","name":"Wolfies Mutter","type":"Role","_key":"26714","_from":"6328","_to":"19193"} +{"$label":"ACTS_IN","name":"Connie Marble","type":"Role","_key":"8333","_from":"6328","_to":"6823"} +{"$label":"ACTS_IN","name":"David Wheeler","type":"Role","_key":"113975","_from":"6332","_to":"67127"} +{"$label":"ACTS_IN","name":"Little J","type":"Role","_key":"113777","_from":"6332","_to":"67043"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"66188","_from":"6332","_to":"40949"} +{"$label":"ACTS_IN","name":"Bozo","type":"Role","_key":"60223","_from":"6332","_to":"37994"} +{"$label":"ACTS_IN","name":"Hostage","type":"Role","_key":"47884","_from":"6333","_to":"31513"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"111398","_from":"6342","_to":"65780"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"109457","_from":"6342","_to":"64663"} +{"$label":"ACTS_IN","name":"Wilkins","type":"Role","_key":"11793","_from":"6342","_to":"9247"} +{"$label":"DIRECTED","_key":"109463","_from":"6342","_to":"64663"} +{"$label":"ACTS_IN","name":"Zoey","type":"Role","_key":"64471","_from":"6343","_to":"40170"} +{"$label":"ACTS_IN","name":"Violet Madison","type":"Role","_key":"57639","_from":"6343","_to":"36493"} +{"$label":"ACTS_IN","name":"Julie Rubels","type":"Role","_key":"53029","_from":"6343","_to":"34336"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"50792","_from":"6343","_to":"33143"} +{"$label":"ACTS_IN","name":"Barbara Richardson","type":"Role","_key":"35469","_from":"6343","_to":"24121"} +{"$label":"ACTS_IN","name":"Deputy Mina","type":"Role","_key":"90648","_from":"6344","_to":"53521"} +{"$label":"ACTS_IN","name":"Casting Chick","type":"Role","_key":"109458","_from":"6345","_to":"64663"} +{"$label":"ACTS_IN","name":"Daddy Rich","type":"Role","_key":"104505","_from":"6346","_to":"61466"} +{"$label":"ACTS_IN","name":"Zeke Brown","type":"Role","_key":"101993","_from":"6346","_to":"60016"} +{"$label":"ACTS_IN","name":"Grover Muldoon","type":"Role","_key":"70656","_from":"6346","_to":"42994"} +{"$label":"ACTS_IN","name":"Wallace 'Wally' Karue","type":"Role","_key":"68395","_from":"6346","_to":"41965"} +{"$label":"ACTS_IN","name":"Montgomery Brewster","type":"Role","_key":"67644","_from":"6346","_to":"41626"} +{"$label":"ACTS_IN","name":"Gus Gorman","type":"Role","_key":"54485","_from":"6346","_to":"34930"} +{"$label":"ACTS_IN","name":"Sugar Ray","type":"Role","_key":"52473","_from":"6346","_to":"34138"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19794","_from":"6346","_to":"14615"} +{"$label":"ACTS_IN","name":"Eliot Cook","type":"Role","_key":"99181","_from":"6349","_to":"58429"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"116403","_from":"6350","_to":"68524"} +{"$label":"ACTS_IN","name":"Julian Ward","type":"Role","_key":"102187","_from":"6350","_to":"60132"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"66851","_from":"6350","_to":"41286"} +{"$label":"ACTS_IN","name":"Henry Spencer","type":"Role","_key":"11643","_from":"6350","_to":"9145"} +{"$label":"ACTS_IN","name":"Capt. Iakin Nefud","type":"Role","_key":"9940","_from":"6350","_to":"7956"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"9361","_from":"6350","_to":"7553"} +{"$label":"ACTS_IN","name":"Girl Decoy","type":"Role","_key":"56190","_from":"6351","_to":"35707"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"36804","_from":"6351","_to":"24953"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110168","_from":"6353","_to":"65101"} +{"$label":"ACTS_IN","name":"Juan Ton","type":"Role","_key":"16155","_from":"6353","_to":"12266"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"13088","_from":"6353","_to":"10201"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110173","_from":"6354","_to":"65101"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105081","_from":"6354","_to":"61842"} +{"$label":"ACTS_IN","name":"Amanda Reese","type":"Role","_key":"7645","_from":"6358","_to":"6355"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"7644","_from":"6357","_to":"6355"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"7642","_from":"6356","_to":"6355"} +{"$label":"ACTS_IN","name":"Marty Lewis","type":"Role","_key":"91970","_from":"6356","_to":"54261"} +{"$label":"ACTS_IN","name":"Tommy Pischedda","type":"Role","_key":"67422","_from":"6356","_to":"41533"} +{"$label":"ACTS_IN","name":"Victor Ray","type":"Role","_key":"61379","_from":"6356","_to":"38726"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"53368","_from":"6356","_to":"34492"} +{"$label":"ACTS_IN","name":"Jimmy Fante","type":"Role","_key":"50071","_from":"6356","_to":"32761"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"40887","_from":"6356","_to":"27510"} +{"$label":"ACTS_IN","name":"Harry Schacht","type":"Role","_key":"24734","_from":"6356","_to":"17888"} +{"$label":"ACTS_IN","name":"Ed Furillo","type":"Role","_key":"12997","_from":"6356","_to":"10137"} +{"$label":"ACTS_IN","name":"Shakes' Father","type":"Role","_key":"9658","_from":"6356","_to":"7756"} +{"$label":"ACTS_IN","name":"McCabe","type":"Role","_key":"67392","_from":"6357","_to":"41521"} +{"$label":"ACTS_IN","name":"Lisa Farber","type":"Role","_key":"55036","_from":"6357","_to":"35160"} +{"$label":"ACTS_IN","name":"Mary Ann Webster","type":"Role","_key":"51890","_from":"6357","_to":"33850"} +{"$label":"ACTS_IN","name":"Paula Abagnale","type":"Role","_key":"7665","_from":"6371","_to":"6359"} +{"$label":"ACTS_IN","name":"Principal Evans","type":"Role","_key":"7664","_from":"6370","_to":"6359"} +{"$label":"ACTS_IN","name":"Darcy","type":"Role","_key":"7663","_from":"6369","_to":"6359"} +{"$label":"ACTS_IN","name":"Warden Garren","type":"Role","_key":"7662","_from":"6368","_to":"6359"} +{"$label":"ACTS_IN","name":"Marci","type":"Role","_key":"7660","_from":"6367","_to":"6359"} +{"$label":"ACTS_IN","name":"Carol Strong","type":"Role","_key":"7659","_from":"6366","_to":"6359"} +{"$label":"ACTS_IN","name":"Cheryl Ann","type":"Role","_key":"7658","_from":"6365","_to":"6359"} +{"$label":"ACTS_IN","name":"Assistant Director Marsh","type":"Role","_key":"7657","_from":"6364","_to":"6359"} +{"$label":"ACTS_IN","name":"Paul Morgan","type":"Role","_key":"7655","_from":"6363","_to":"6359"} +{"$label":"ACTS_IN","name":"Tom Fox","type":"Role","_key":"7654","_from":"6362","_to":"6359"} +{"$label":"ACTS_IN","name":"Jack Barnes","type":"Role","_key":"7652","_from":"6361","_to":"6359"} +{"$label":"ACTS_IN","name":"Brenda Strong","type":"Role","_key":"7651","_from":"6360","_to":"6359"} +{"$label":"ACTS_IN","name":"Amelia Earhart","type":"Role","_key":"115888","_from":"6360","_to":"68230"} +{"$label":"ACTS_IN","name":"Sister James","type":"Role","_key":"99804","_from":"6360","_to":"58877"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"98874","_from":"6360","_to":"58263"} +{"$label":"ACTS_IN","name":"Rose Lorkowski","type":"Role","_key":"92490","_from":"6360","_to":"54598"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"91439","_from":"6360","_to":"53928"} +{"$label":"ACTS_IN","name":"Delysia Lafosse","type":"Role","_key":"88493","_from":"6360","_to":"52451"} +{"$label":"ACTS_IN","name":"Alexis","type":"Role","_key":"58735","_from":"6360","_to":"37102"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"55960","_from":"6360","_to":"35579"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"45370","_from":"6360","_to":"30086"} +{"$label":"ACTS_IN","name":"Pollys voice","type":"Role","_key":"44199","_from":"6360","_to":"29455"} +{"$label":"ACTS_IN","name":"Bonnie Bach","type":"Role","_key":"44001","_from":"6360","_to":"29354"} +{"$label":"ACTS_IN","name":"Kathryn Merteuil","type":"Role","_key":"37268","_from":"6360","_to":"25250"} +{"$label":"ACTS_IN","name":"Giselle","type":"Role","_key":"32293","_from":"6360","_to":"22492"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"13374","_from":"6360","_to":"10412"} +{"$label":"ACTS_IN","name":"Ben Selleck","type":"Role","_key":"121448","_from":"6361","_to":"71349"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"109117","_from":"6361","_to":"64469"} +{"$label":"ACTS_IN","name":"Fabbrizio Disguisey","type":"Role","_key":"97376","_from":"6361","_to":"57346"} +{"$label":"ACTS_IN","name":"Col. Charles Brubaker","type":"Role","_key":"72835","_from":"6361","_to":"43874"} +{"$label":"ACTS_IN","name":"George Lutz","type":"Role","_key":"69927","_from":"6361","_to":"42672"} +{"$label":"ACTS_IN","name":"Ken Cooper","type":"Role","_key":"54824","_from":"6361","_to":"35077"} +{"$label":"ACTS_IN","name":"Himself - as PeeWee","type":"Role","_key":"38603","_from":"6361","_to":"26073"} +{"$label":"ACTS_IN","name":"Franklin Harris","type":"Role","_key":"37118","_from":"6361","_to":"25148"} +{"$label":"ACTS_IN","name":"John Blane","type":"Role","_key":"20678","_from":"6361","_to":"15116"} +{"$label":"ACTS_IN","name":"Techniker","type":"Role","_key":"18819","_from":"6361","_to":"13902"} +{"$label":"ACTS_IN","name":"Casper","type":"Role","_key":"56186","_from":"6362","_to":"35707"} +{"$label":"ACTS_IN","name":"SSgt. William 'Wild Bill' Guarnere","type":"Role","_key":"26808","_from":"6362","_to":"19258"} +{"$label":"ACTS_IN","name":"Detective Hines","type":"Role","_key":"60016","_from":"6363","_to":"37876"} +{"$label":"ACTS_IN","name":"Ty Frost","type":"Role","_key":"49536","_from":"6363","_to":"32434"} +{"$label":"ACTS_IN","name":"Guard Falzon","type":"Role","_key":"15085","_from":"6363","_to":"11583"} +{"$label":"ACTS_IN","name":"Bob Hannagan","type":"Role","_key":"110405","_from":"6364","_to":"65230"} +{"$label":"ACTS_IN","name":"Ted Chenoweth","type":"Role","_key":"64724","_from":"6364","_to":"40298"} +{"$label":"ACTS_IN","name":"Gray","type":"Role","_key":"95782","_from":"6365","_to":"56339"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"90260","_from":"6365","_to":"53363"} +{"$label":"ACTS_IN","name":"Jenny Perotti","type":"Role","_key":"90251","_from":"6365","_to":"53362"} +{"$label":"ACTS_IN","name":"Jenna Rink","type":"Role","_key":"60648","_from":"6365","_to":"38293"} +{"$label":"ACTS_IN","name":"Elektra","type":"Role","_key":"58346","_from":"6365","_to":"36877"} +{"$label":"ACTS_IN","name":"Elektra Natchios","type":"Role","_key":"54129","_from":"6365","_to":"34788"} +{"$label":"ACTS_IN","name":"Stacey Sampanahoditra","type":"Role","_key":"53847","_from":"6365","_to":"34683"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"51153","_from":"6365","_to":"33367"} +{"$label":"ACTS_IN","name":"Vanessa Loring","type":"Role","_key":"46436","_from":"6365","_to":"30676"} +{"$label":"ACTS_IN","name":"Janet Mayes","type":"Role","_key":"31098","_from":"6365","_to":"21770"} +{"$label":"ACTS_IN","name":"Nurse Sandra","type":"Role","_key":"8136","_from":"6365","_to":"6692"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"71190","_from":"6367","_to":"43207"} +{"$label":"ACTS_IN","name":"Karen Page","type":"Role","_key":"54132","_from":"6367","_to":"34788"} +{"$label":"ACTS_IN","name":"Rose Capuletti (as Candy Azzara)","type":"Role","_key":"115995","_from":"6369","_to":"68313"} +{"$label":"ACTS_IN","name":"Sydelle Feller","type":"Role","_key":"72810","_from":"6369","_to":"43867"} +{"$label":"ACTS_IN","name":"Mr. Wilson","type":"Role","_key":"22290","_from":"6370","_to":"16209"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116274","_from":"6371","_to":"68455"} +{"$label":"ACTS_IN","name":"Odile M\u00e9nard","type":"Role","_key":"92140","_from":"6371","_to":"54363"} +{"$label":"ACTS_IN","name":"Nina Coline","type":"Role","_key":"89135","_from":"6371","_to":"52799"} +{"$label":"ACTS_IN","name":"Anne Charpin-Vasseur","type":"Role","_key":"66813","_from":"6371","_to":"41272"} +{"$label":"ACTS_IN","name":"Cecilia Mandel","type":"Role","_key":"48059","_from":"6371","_to":"31597"} +{"$label":"ACTS_IN","name":"Bertrande de Rols","type":"Role","_key":"32051","_from":"6371","_to":"22322"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"30202","_from":"6371","_to":"21280"} +{"$label":"ACTS_IN","name":"la fille aux cerises","type":"Role","_key":"28993","_from":"6371","_to":"20698"} +{"$label":"ACTS_IN","name":"Dr. Fran\u00e7oise Barre","type":"Role","_key":"24072","_from":"6371","_to":"17452"} +{"$label":"ACTS_IN","name":"Joelle","type":"Role","_key":"14865","_from":"6371","_to":"11416"} +{"$label":"ACTS_IN","name":"Martine Desdoits","type":"Role","_key":"13165","_from":"6371","_to":"10258"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"7672","_from":"6375","_to":"6372"} +{"$label":"ACTS_IN","name":"Tyrone C. Love","type":"Role","_key":"7670","_from":"6374","_to":"6372"} +{"$label":"ACTS_IN","name":"Sara Goldfarb","type":"Role","_key":"7667","_from":"6373","_to":"6372"} +{"$label":"ACTS_IN","name":"Val Handler","type":"Role","_key":"120142","_from":"6373","_to":"70564"} +{"$label":"ACTS_IN","name":"Alice Wyatt","type":"Role","_key":"107588","_from":"6373","_to":"63510"} +{"$label":"ACTS_IN","name":"Hagar","type":"Role","_key":"101203","_from":"6373","_to":"59615"} +{"$label":"ACTS_IN","name":"Hy Dodd","type":"Role","_key":"72434","_from":"6373","_to":"43720"} +{"$label":"ACTS_IN","name":"Barbara Bush","type":"Role","_key":"63828","_from":"6373","_to":"39901"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"63420","_from":"6373","_to":"39729"} +{"$label":"ACTS_IN","name":"Sister Summersisle","type":"Role","_key":"55910","_from":"6373","_to":"35563"} +{"$label":"ACTS_IN","name":"Viviane Joan 'Vivi' Abbott Walker","type":"Role","_key":"54830","_from":"6373","_to":"35080"} +{"$label":"ACTS_IN","name":"Chris MacNeil","type":"Role","_key":"54625","_from":"6373","_to":"34989"} +{"$label":"ACTS_IN","name":"Frau O'Neil","type":"Role","_key":"52439","_from":"6373","_to":"34117"} +{"$label":"ACTS_IN","name":"Dr. Lillian Guzetti","type":"Role","_key":"12863","_from":"6373","_to":"10044"} +{"$label":"ACTS_IN","name":"Mildred","type":"Role","_key":"9747","_from":"6373","_to":"7817"} +{"$label":"ACTS_IN","name":"Bugaloo","type":"Role","_key":"118668","_from":"6374","_to":"69770"} +{"$label":"ACTS_IN","name":"Ripcord","type":"Role","_key":"102223","_from":"6374","_to":"60158"} +{"$label":"ACTS_IN","name":"Darryl Witherspoon","type":"Role","_key":"90127","_from":"6374","_to":"53299"} +{"$label":"ACTS_IN","name":"Seymour Stewart","type":"Role","_key":"89056","_from":"6374","_to":"52761"} +{"$label":"ACTS_IN","name":"Marcus Copeland","type":"Role","_key":"88331","_from":"6374","_to":"52379"} +{"$label":"ACTS_IN","name":"Loc Dog","type":"Role","_key":"64486","_from":"6374","_to":"40179"} +{"$label":"ACTS_IN","name":"Buster","type":"Role","_key":"56361","_from":"6374","_to":"35808"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"52396","_from":"6374","_to":"34098"} +{"$label":"ACTS_IN","name":"Gawain MacSam","type":"Role","_key":"37625","_from":"6374","_to":"25505"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30576","_from":"6374","_to":"21490"} +{"$label":"ACTS_IN","name":"Shorty Meeks","type":"Role","_key":"30444","_from":"6374","_to":"21400"} +{"$label":"ACTS_IN","name":"Shorty Meeks","type":"Role","_key":"30440","_from":"6374","_to":"21394"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"69020","_from":"6375","_to":"42249"} +{"$label":"ACTS_IN","name":"Masseuse","type":"Role","_key":"28454","_from":"6375","_to":"20343"} +{"$label":"ACTS_IN","name":"Macon","type":"Role","_key":"7684","_from":"6383","_to":"6376"} +{"$label":"ACTS_IN","name":"Marshal","type":"Role","_key":"7683","_from":"6382","_to":"6376"} +{"$label":"ACTS_IN","name":"Harvey Logan","type":"Role","_key":"7682","_from":"6381","_to":"6376"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"7681","_from":"6380","_to":"6376"} +{"$label":"ACTS_IN","name":"Woodcock","type":"Role","_key":"7680","_from":"6379","_to":"6376"} +{"$label":"ACTS_IN","name":"Sheriff Ray Bledsoe","type":"Role","_key":"7679","_from":"6378","_to":"6376"} +{"$label":"DIRECTED","_key":"7673","_from":"6377","_to":"6376"} +{"$label":"DIRECTED","_key":"121070","_from":"6377","_to":"71097"} +{"$label":"DIRECTED","_key":"120777","_from":"6377","_to":"70940"} +{"$label":"DIRECTED","_key":"101451","_from":"6377","_to":"59719"} +{"$label":"DIRECTED","_key":"70939","_from":"6377","_to":"43092"} +{"$label":"DIRECTED","_key":"69052","_from":"6377","_to":"42265"} +{"$label":"DIRECTED","_key":"52800","_from":"6377","_to":"34244"} +{"$label":"ACTS_IN","name":"Tim Murphy","type":"Role","_key":"118396","_from":"6378","_to":"69599"} +{"$label":"ACTS_IN","name":"'Blinky' Franklin","type":"Role","_key":"101240","_from":"6378","_to":"59623"} +{"$label":"ACTS_IN","name":"Craccus","type":"Role","_key":"97681","_from":"6378","_to":"57516"} +{"$label":"ACTS_IN","name":"(in \"The Killers\") (archive footage)","type":"Role","_key":"53892","_from":"6378","_to":"34691"} +{"$label":"ACTS_IN","name":"Lou Baird","type":"Role","_key":"15289","_from":"6378","_to":"11700"} +{"$label":"ACTS_IN","name":"Hoban","type":"Role","_key":"10557","_from":"6378","_to":"8385"} +{"$label":"ACTS_IN","name":"Dr. Phil Osterman","type":"Role","_key":"35372","_from":"6379","_to":"24074"} +{"$label":"ACTS_IN","name":"Christina Bailey","type":"Role","_key":"114670","_from":"6380","_to":"67551"} +{"$label":"ACTS_IN","name":"Helga(voice)","type":"Role","_key":"106591","_from":"6380","_to":"62807"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"97904","_from":"6380","_to":"57663"} +{"$label":"ACTS_IN","name":"Nurse Charlotte Diesel","type":"Role","_key":"90107","_from":"6380","_to":"53290"} +{"$label":"ACTS_IN","name":"Tante Louise Trends","type":"Role","_key":"88180","_from":"6380","_to":"52321"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"67509","_from":"6380","_to":"41572"} +{"$label":"ACTS_IN","name":"Mrs. Lynley Tensedge (voice)","type":"Role","_key":"62936","_from":"6380","_to":"39525"} +{"$label":"ACTS_IN","name":"Madame Defarge","type":"Role","_key":"61306","_from":"6380","_to":"38701"} +{"$label":"ACTS_IN","name":"Great Gam Gam","type":"Role","_key":"59024","_from":"6380","_to":"37261"} +{"$label":"ACTS_IN","name":"Lynette","type":"Role","_key":"52931","_from":"6380","_to":"34291"} +{"$label":"ACTS_IN","name":"Grandma Albertson","type":"Role","_key":"52688","_from":"6380","_to":"34207"} +{"$label":"ACTS_IN","name":"Queen Hippolyte","type":"Role","_key":"38755","_from":"6380","_to":"26184"} +{"$label":"ACTS_IN","name":"Mrs. Ezra Miller","type":"Role","_key":"33495","_from":"6380","_to":"23170"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26408","_from":"6380","_to":"18965"} +{"$label":"ACTS_IN","name":"Frau Bl\u00fccher","type":"Role","_key":"25152","_from":"6380","_to":"18167"} +{"$label":"ACTS_IN","name":"Evelyn Wright","type":"Role","_key":"21940","_from":"6380","_to":"16022"} +{"$label":"ACTS_IN","name":"Vultan ( Voice )","type":"Role","_key":"28435","_from":"6381","_to":"20334"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"111927","_from":"6382","_to":"66073"} +{"$label":"ACTS_IN","name":"Stanton Boyd","type":"Role","_key":"56259","_from":"6382","_to":"35740"} +{"$label":"ACTS_IN","name":"Hugh Simon","type":"Role","_key":"45260","_from":"6382","_to":"30037"} +{"$label":"ACTS_IN","name":"Oberst Van Blasko","type":"Role","_key":"38756","_from":"6382","_to":"26184"} +{"$label":"ACTS_IN","name":"Insp. Hans Wilhelm Friedrich Kamp","type":"Role","_key":"25153","_from":"6382","_to":"18167"} +{"$label":"ACTS_IN","name":"Woman With Baby Carriage","type":"Role","_key":"7693","_from":"6392","_to":"6384"} +{"$label":"ACTS_IN","name":"Petty Officer","type":"Role","_key":"7692","_from":"6391","_to":"6384"} +{"$label":"ACTS_IN","name":"Militant Sailor","type":"Role","_key":"7691","_from":"6390","_to":"6384"} +{"$label":"ACTS_IN","name":"Young Sailor","type":"Role","_key":"7690","_from":"6389","_to":"6384"} +{"$label":"ACTS_IN","name":"Chief Officer Giliarovsky","type":"Role","_key":"7689","_from":"6388","_to":"6384"} +{"$label":"ACTS_IN","name":"Commander Golikov","type":"Role","_key":"7688","_from":"6387","_to":"6384"} +{"$label":"ACTS_IN","name":"Grigory Vakulinchuk","type":"Role","_key":"7687","_from":"6386","_to":"6384"} +{"$label":"DIRECTED","_key":"7686","_from":"6385","_to":"6384"} +{"$label":"DIRECTED","_key":"61855","_from":"6385","_to":"38934"} +{"$label":"DIRECTED","_key":"8397","_from":"6385","_to":"6866"} +{"$label":"DIRECTED","_key":"8396","_from":"6388","_to":"6866"} +{"$label":"ACTS_IN","name":"Gigolo Joe","type":"Role","_key":"7699","_from":"6396","_to":"6393"} +{"$label":"ACTS_IN","name":"Martin Swinton","type":"Role","_key":"7698","_from":"6395","_to":"6393"} +{"$label":"ACTS_IN","name":"Monica Swinton","type":"Role","_key":"7696","_from":"6394","_to":"6393"} +{"$label":"ACTS_IN","name":"Laura Owens","type":"Role","_key":"115145","_from":"6394","_to":"67805"} +{"$label":"ACTS_IN","name":"Tanya Harnovey","type":"Role","_key":"102372","_from":"6394","_to":"60234"} +{"$label":"ACTS_IN","name":"Fanny Price","type":"Role","_key":"63010","_from":"6394","_to":"39550"} +{"$label":"ACTS_IN","name":"Kate Ericson","type":"Role","_key":"54700","_from":"6394","_to":"35025"} +{"$label":"ACTS_IN","name":"Gwendolen Fairfax","type":"Role","_key":"52107","_from":"6394","_to":"33974"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"14492","_from":"6394","_to":"11191"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"121689","_from":"6395","_to":"71490"} +{"$label":"ACTS_IN","name":"Matt McGuire","type":"Role","_key":"117285","_from":"6395","_to":"68981"} +{"$label":"ACTS_IN","name":"Michael Banning","type":"Role","_key":"30822","_from":"6395","_to":"21601"} +{"$label":"ACTS_IN","name":"Stormtropper","type":"Role","_key":"120557","_from":"6396","_to":"70805"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"114610","_from":"6396","_to":"67516"} +{"$label":"ACTS_IN","name":"Lemony Snicket","type":"Role","_key":"71864","_from":"6396","_to":"43486"} +{"$label":"ACTS_IN","name":"Lord Alfred 'Bosie' Douglas","type":"Role","_key":"69427","_from":"6396","_to":"42430"} +{"$label":"ACTS_IN","name":"Dr. John Watson","type":"Role","_key":"63863","_from":"6396","_to":"39907"} +{"$label":"ACTS_IN","name":"Alfie","type":"Role","_key":"51100","_from":"6396","_to":"33343"} +{"$label":"ACTS_IN","name":"Billy Carl Hanson","type":"Role","_key":"48329","_from":"6396","_to":"31735"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"47898","_from":"6396","_to":"31515"} +{"$label":"ACTS_IN","name":"Sky Captain","type":"Role","_key":"36055","_from":"6396","_to":"24480"} +{"$label":"ACTS_IN","name":"Milo Tindle","type":"Role","_key":"32287","_from":"6396","_to":"22490"} +{"$label":"ACTS_IN","name":"Harlen Maguire","type":"Role","_key":"29776","_from":"6396","_to":"21072"} +{"$label":"ACTS_IN","name":"Errol Flynn","type":"Role","_key":"21996","_from":"6396","_to":"16058"} +{"$label":"ACTS_IN","name":"Inman","type":"Role","_key":"20069","_from":"6396","_to":"14764"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"20063","_from":"6396","_to":"14761"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"17222","_from":"6396","_to":"12902"} +{"$label":"ACTS_IN","name":"Ted Pikul","type":"Role","_key":"16878","_from":"6396","_to":"12696"} +{"$label":"ACTS_IN","name":"Jack Burden","type":"Role","_key":"15187","_from":"6396","_to":"11636"} +{"$label":"ACTS_IN","name":"Brad Stand","type":"Role","_key":"14179","_from":"6396","_to":"10966"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"14010","_from":"6396","_to":"10865"} +{"$label":"ACTS_IN","name":"Steven Grlscz","type":"Role","_key":"13381","_from":"6396","_to":"10415"} +{"$label":"ACTS_IN","name":"Will Francis","type":"Role","_key":"12250","_from":"6396","_to":"9592"} +{"$label":"ACTS_IN","name":"Dickie Greenleaf","type":"Role","_key":"12156","_from":"6396","_to":"9529"} +{"$label":"ACTS_IN","name":"Vassili Zaitsev","type":"Role","_key":"10108","_from":"6396","_to":"8094"} +{"$label":"ACTS_IN","name":"Jerome Eugene Morrow","type":"Role","_key":"9199","_from":"6396","_to":"7439"} +{"$label":"ACTS_IN","name":"Major Boothroyd","type":"Role","_key":"7716","_from":"6406","_to":"6398"} +{"$label":"ACTS_IN","name":"Sylvia Trench","type":"Role","_key":"7714","_from":"6405","_to":"6398"} +{"$label":"ACTS_IN","name":"Quarrel","type":"Role","_key":"7713","_from":"6404","_to":"6398"} +{"$label":"ACTS_IN","name":"Miss Taro","type":"Role","_key":"7712","_from":"6403","_to":"6398"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"7709","_from":"6402","_to":"6398"} +{"$label":"ACTS_IN","name":"Dr. No","type":"Role","_key":"7708","_from":"6401","_to":"6398"} +{"$label":"ACTS_IN","name":"Honey Ryder","type":"Role","_key":"7707","_from":"6400","_to":"6398"} +{"$label":"DIRECTED","_key":"7705","_from":"6399","_to":"6398"} +{"$label":"DIRECTED","_key":"72314","_from":"6399","_to":"43679"} +{"$label":"DIRECTED","_key":"68538","_from":"6399","_to":"42026"} +{"$label":"DIRECTED","_key":"31258","_from":"6399","_to":"21866"} +{"$label":"DIRECTED","_key":"24953","_from":"6399","_to":"18031"} +{"$label":"DIRECTED","_key":"7900","_from":"6399","_to":"6541"} +{"$label":"DIRECTED","_key":"7854","_from":"6399","_to":"6505"} +{"$label":"ACTS_IN","name":"Countess Kaeti von Klugermann","type":"Role","_key":"121040","_from":"6400","_to":"71083"} +{"$label":"ACTS_IN","name":"Marguerita Dauphin","type":"Role","_key":"117130","_from":"6400","_to":"68915"} +{"$label":"ACTS_IN","name":"Maxine Richter","type":"Role","_key":"113675","_from":"6400","_to":"66988"} +{"$label":"ACTS_IN","name":"Ayesha","type":"Role","_key":"113314","_from":"6400","_to":"66756"} +{"$label":"ACTS_IN","name":"007","type":"Role","_key":"88689","_from":"6400","_to":"52552"} +{"$label":"ACTS_IN","name":"Cristina","type":"Role","_key":"72311","_from":"6400","_to":"43679"} +{"$label":"ACTS_IN","name":"Aphrodite","type":"Role","_key":"62590","_from":"6400","_to":"39379"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39492","_from":"6400","_to":"26693"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"33512","_from":"6400","_to":"23177"} +{"$label":"ACTS_IN","name":"Louise de La Valli\u00e8re","type":"Role","_key":"30065","_from":"6400","_to":"21200"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"28442","_from":"6400","_to":"20343"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"26977","_from":"6400","_to":"19403"} +{"$label":"ACTS_IN","name":"Marina Zenavo","type":"Role","_key":"17996","_from":"6400","_to":"13377"} +{"$label":"ACTS_IN","name":"Abe Kelsey","type":"Role","_key":"44537","_from":"6401","_to":"29653"} +{"$label":"ACTS_IN","name":"Draco","type":"Role","_key":"28756","_from":"6401","_to":"20542"} +{"$label":"ACTS_IN","name":"Fernanfo","type":"Role","_key":"15656","_from":"6401","_to":"11939"} +{"$label":"ACTS_IN","name":"Coaley","type":"Role","_key":"101407","_from":"6402","_to":"59696"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"26211","_from":"6405","_to":"18831"} +{"$label":"ACTS_IN","name":"Sylvia Trench","type":"Role","_key":"7845","_from":"6405","_to":"6505"} +{"$label":"ACTS_IN","name":"Captain - 'First Destroyer'","type":"Role","_key":"117466","_from":"6406","_to":"69075"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"7740","_from":"6431","_to":"6407"} +{"$label":"ACTS_IN","name":"Yazoo","type":"Role","_key":"7739","_from":"6430","_to":"6407"} +{"$label":"ACTS_IN","name":"Marlene Wallace","type":"Role","_key":"7738","_from":"6429","_to":"6407"} +{"$label":"ACTS_IN","name":"Barret Wallace","type":"Role","_key":"7737","_from":"6428","_to":"6407"} +{"$label":"ACTS_IN","name":"Vincent Valentine","type":"Role","_key":"7736","_from":"6427","_to":"6407"} +{"$label":"ACTS_IN","name":"Tseng","type":"Role","_key":"7735","_from":"6426","_to":"6407"} +{"$label":"ACTS_IN","name":"Cait Sith","type":"Role","_key":"7734","_from":"6425","_to":"6407"} +{"$label":"ACTS_IN","name":"Rufus Shinra","type":"Role","_key":"7733","_from":"6424","_to":"6407"} +{"$label":"ACTS_IN","name":"Rude","type":"Role","_key":"7732","_from":"6423","_to":"6407"} +{"$label":"ACTS_IN","name":"Red XIII","type":"Role","_key":"7731","_from":"6422","_to":"6407"} +{"$label":"ACTS_IN","name":"Loz","type":"Role","_key":"7730","_from":"6421","_to":"6407"} +{"$label":"ACTS_IN","name":"Yuffie Kisaragi","type":"Role","_key":"7729","_from":"6420","_to":"6407"} +{"$label":"ACTS_IN","name":"Kadaj","type":"Role","_key":"7728","_from":"6419","_to":"6407"} +{"$label":"ACTS_IN","name":"Cid Highwind","type":"Role","_key":"7727","_from":"6418","_to":"6407"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"7726","_from":"6417","_to":"6407"} +{"$label":"ACTS_IN","name":"Aerith Gainsborough","type":"Role","_key":"7725","_from":"6416","_to":"6407"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"7724","_from":"6415","_to":"6407"} +{"$label":"ACTS_IN","name":"Denzel","type":"Role","_key":"7723","_from":"6414","_to":"6407"} +{"$label":"ACTS_IN","name":"Reno","type":"Role","_key":"7722","_from":"6413","_to":"6407"} +{"$label":"ACTS_IN","name":"Tifa Lockhart","type":"Role","_key":"7721","_from":"6412","_to":"6407"} +{"$label":"ACTS_IN","name":"Sephiroth","type":"Role","_key":"7720","_from":"6411","_to":"6407"} +{"$label":"ACTS_IN","name":"Cloud Strife","type":"Role","_key":"7719","_from":"6410","_to":"6407"} +{"$label":"DIRECTED","_key":"7718","_from":"6409","_to":"6407"} +{"$label":"DIRECTED","_key":"7717","_from":"6408","_to":"6407"} +{"$label":"DIRECTED","_key":"93665","_from":"6408","_to":"55140"} +{"$label":"ACTS_IN","name":"Izuru Kira","type":"Role","_key":"105004","_from":"6410","_to":"61775"} +{"$label":"ACTS_IN","name":"Ryo (voice)","type":"Role","_key":"94267","_from":"6410","_to":"55509"} +{"$label":"ACTS_IN","name":"Isshin Kurosaki","type":"Role","_key":"105009","_from":"6411","_to":"61775"} +{"$label":"ACTS_IN","name":"Y\u00f4ko Kuno","type":"Role","_key":"109788","_from":"6412","_to":"64849"} +{"$label":"ACTS_IN","name":"Ageha","type":"Role","_key":"49656","_from":"6412","_to":"32492"} +{"$label":"ACTS_IN","name":"Benge","type":"Role","_key":"106606","_from":"6413","_to":"62814"} +{"$label":"ACTS_IN","name":"Winry Rockbell","type":"Role","_key":"98059","_from":"6415","_to":"57739"} +{"$label":"ACTS_IN","name":"Hitomi Kanzaki","type":"Role","_key":"110720","_from":"6416","_to":"65413"} +{"$label":"ACTS_IN","name":"Shikamaru Nara","type":"Role","_key":"110467","_from":"6419","_to":"65262"} +{"$label":"ACTS_IN","name":"Juushirou Ukitake","type":"Role","_key":"111362","_from":"6425","_to":"65761"} +{"$label":"ACTS_IN","name":"Tereus","type":"Role","_key":"97949","_from":"6430","_to":"57677"} +{"$label":"ACTS_IN","name":"Ludovic","type":"Role","_key":"7748","_from":"6440","_to":"6432"} +{"$label":"ACTS_IN","name":"Ad\u00e9la\u00efde","type":"Role","_key":"7747","_from":"6439","_to":"6432"} +{"$label":"ACTS_IN","name":"F\u00e9licie","type":"Role","_key":"7746","_from":"6438","_to":"6432"} +{"$label":"ACTS_IN","name":"Le p\u00e8re","type":"Role","_key":"7745","_from":"6437","_to":"6432"} +{"$label":"ACTS_IN","name":"La Belle","type":"Role","_key":"7744","_from":"6436","_to":"6432"} +{"$label":"ACTS_IN","name":"Avenant \/ La B\u00eate \/ Le Prince","type":"Role","_key":"7743","_from":"6435","_to":"6432"} +{"$label":"DIRECTED","_key":"7742","_from":"6434","_to":"6432"} +{"$label":"DIRECTED","_key":"7741","_from":"6433","_to":"6432"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"104248","_from":"6433","_to":"61334"} +{"$label":"DIRECTED","_key":"32668","_from":"6433","_to":"22696"} +{"$label":"DIRECTED","_key":"62818","_from":"6434","_to":"39474"} +{"$label":"DIRECTED","_key":"39416","_from":"6434","_to":"26646"} +{"$label":"DIRECTED","_key":"35491","_from":"6434","_to":"24138"} +{"$label":"DIRECTED","_key":"33549","_from":"6434","_to":"23204"} +{"$label":"ACTS_IN","name":"Joseph Balsamo","type":"Role","_key":"71968","_from":"6435","_to":"43534"} +{"$label":"ACTS_IN","name":"R\u00e9my Marsay","type":"Role","_key":"39418","_from":"6435","_to":"26646"} +{"$label":"ACTS_IN","name":"le roi","type":"Role","_key":"37891","_from":"6435","_to":"25666"} +{"$label":"ACTS_IN","name":"Fracasse alias Sigognac","type":"Role","_key":"33708","_from":"6435","_to":"23260"} +{"$label":"ACTS_IN","name":"Orph\u00e9e","type":"Role","_key":"32669","_from":"6435","_to":"22696"} +{"$label":"ACTS_IN","name":"Antoine Donadieu","type":"Role","_key":"28569","_from":"6435","_to":"20423"} +{"$label":"ACTS_IN","name":"Fantomas","type":"Role","_key":"16181","_from":"6435","_to":"12287"} +{"$label":"ACTS_IN","name":"Fandor","type":"Role","_key":"16144","_from":"6435","_to":"12264"} +{"$label":"ACTS_IN","name":"Fantomas","type":"Role","_key":"16136","_from":"6435","_to":"12258"} +{"$label":"ACTS_IN","name":"Docteur Charles Tannard","type":"Role","_key":"34070","_from":"6437","_to":"23415"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve de Marras","type":"Role","_key":"9137","_from":"6438","_to":"7386"} +{"$label":"ACTS_IN","name":"Violetta","type":"Role","_key":"15530","_from":"6439","_to":"11859"} +{"$label":"ACTS_IN","name":"Colonel Rolland","type":"Role","_key":"34677","_from":"6440","_to":"23728"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"33596","_from":"6440","_to":"23210"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"33041","_from":"6440","_to":"22898"} +{"$label":"ACTS_IN","name":"Prince","type":"Role","_key":"30721","_from":"6440","_to":"21545"} +{"$label":"ACTS_IN","name":"Michel Saint-Claude","type":"Role","_key":"29429","_from":"6440","_to":"20878"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"21304","_from":"6440","_to":"15580"} +{"$label":"ACTS_IN","name":"Villefort","type":"Role","_key":"20907","_from":"6440","_to":"15294"} +{"$label":"ACTS_IN","name":"Hyppolite","type":"Role","_key":"7758","_from":"6448","_to":"6441"} +{"$label":"ACTS_IN","name":"Graf","type":"Role","_key":"7757","_from":"6447","_to":"6441"} +{"$label":"ACTS_IN","name":"Ren\u00e9e","type":"Role","_key":"7756","_from":"6446","_to":"6441"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"7755","_from":"6445","_to":"6441"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"7754","_from":"6444","_to":"6441"} +{"$label":"ACTS_IN","name":"Madame Anais","type":"Role","_key":"7753","_from":"6443","_to":"6441"} +{"$label":"ACTS_IN","name":"Pierre Serizy","type":"Role","_key":"7752","_from":"6442","_to":"6441"} +{"$label":"ACTS_IN","name":"Bastien-Thiry","type":"Role","_key":"34681","_from":"6442","_to":"23728"} +{"$label":"ACTS_IN","name":"Dr. George Dumurrier","type":"Role","_key":"24795","_from":"6442","_to":"17933"} +{"$label":"ACTS_IN","name":"Princess Urraca","type":"Role","_key":"109698","_from":"6443","_to":"64787"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"64657","_from":"6443","_to":"40271"} +{"$label":"ACTS_IN","name":"Gabrielle Valadon","type":"Role","_key":"36356","_from":"6443","_to":"24657"} +{"$label":"ACTS_IN","name":"Lino","type":"Role","_key":"49578","_from":"6444","_to":"32457"} +{"$label":"ACTS_IN","name":"H\u00e9bert","type":"Role","_key":"31188","_from":"6444","_to":"21829"} +{"$label":"ACTS_IN","name":"A sailor from the Potemkin","type":"Role","_key":"13807","_from":"6444","_to":"10714"} +{"$label":"ACTS_IN","name":"Virginia Pollywood","type":"Role","_key":"46949","_from":"6445","_to":"30961"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"35251","_from":"6445","_to":"24004"} +{"$label":"ACTS_IN","name":"Aurore","type":"Role","_key":"33796","_from":"6445","_to":"23298"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"32765","_from":"6445","_to":"22749"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"32355","_from":"6446","_to":"22533"} +{"$label":"ACTS_IN","name":"General Keller","type":"Role","_key":"20924","_from":"6447","_to":"15307"} +{"$label":"ACTS_IN","name":"Antoine d'Hergemont","type":"Role","_key":"20803","_from":"6447","_to":"15214"} +{"$label":"ACTS_IN","name":"Ezequiel","type":"Role","_key":"66077","_from":"6448","_to":"40886"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35652","_from":"6448","_to":"24231"} +{"$label":"ACTS_IN","name":"William Lombard","type":"Role","_key":"33227","_from":"6448","_to":"23015"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"32134","_from":"6448","_to":"22397"} +{"$label":"ACTS_IN","name":"M\u00e1ximo Espejo","type":"Role","_key":"21632","_from":"6448","_to":"15811"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"16041","_from":"6448","_to":"12192"} +{"$label":"ACTS_IN","name":"Shalika","type":"Role","_key":"7772","_from":"6459","_to":"6449"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"7771","_from":"6458","_to":"6449"} +{"$label":"ACTS_IN","name":"Officer Coffey","type":"Role","_key":"7770","_from":"6457","_to":"6449"} +{"$label":"ACTS_IN","name":"Lewis Crump, USC Recruiter","type":"Role","_key":"7769","_from":"6456","_to":"6449"} +{"$label":"ACTS_IN","name":"Young Tr\u00e9 Styles","type":"Role","_key":"7768","_from":"6455","_to":"6449"} +{"$label":"ACTS_IN","name":"Mad Dog","type":"Role","_key":"7767","_from":"6454","_to":"6449"} +{"$label":"ACTS_IN","name":"Brenda Baker","type":"Role","_key":"7766","_from":"6453","_to":"6449"} +{"$label":"ACTS_IN","name":"Brandi","type":"Role","_key":"7765","_from":"6452","_to":"6449"} +{"$label":"ACTS_IN","name":"Ricky Baker","type":"Role","_key":"7763","_from":"6451","_to":"6449"} +{"$label":"ACTS_IN","name":"Darin 'Doughboy' Baker","type":"Role","_key":"7762","_from":"6450","_to":"6449"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"121313","_from":"6450","_to":"71273"} +{"$label":"ACTS_IN","name":"Durell","type":"Role","_key":"100180","_from":"6450","_to":"59094"} +{"$label":"ACTS_IN","name":"Bucum","type":"Role","_key":"97697","_from":"6450","_to":"57527"} +{"$label":"ACTS_IN","name":"Curtis Plummer","type":"Role","_key":"95298","_from":"6450","_to":"56068"} +{"$label":"ACTS_IN","name":"Nick Persons","type":"Role","_key":"71200","_from":"6450","_to":"43214"} +{"$label":"ACTS_IN","name":"Trey","type":"Role","_key":"65227","_from":"6450","_to":"40500"} +{"$label":"ACTS_IN","name":"Craig Jones","type":"Role","_key":"64732","_from":"6450","_to":"40300"} +{"$label":"ACTS_IN","name":"Calvin Palmer","type":"Role","_key":"64510","_from":"6450","_to":"40186"} +{"$label":"ACTS_IN","name":"Craig Jones","type":"Role","_key":"63512","_from":"6450","_to":"39764"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"63217","_from":"6450","_to":"39644"} +{"$label":"ACTS_IN","name":"Nick Persons","type":"Role","_key":"61405","_from":"6450","_to":"38734"} +{"$label":"ACTS_IN","name":"James 'Desolation' Williams","type":"Role","_key":"59466","_from":"6450","_to":"37557"} +{"$label":"ACTS_IN","name":"Danny Rich","type":"Role","_key":"53345","_from":"6450","_to":"34483"} +{"$label":"ACTS_IN","name":"Chief Elgin","type":"Role","_key":"43347","_from":"6450","_to":"28963"} +{"$label":"DIRECTED","_key":"121301","_from":"6450","_to":"71273"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"109209","_from":"6451","_to":"64523"} +{"$label":"ACTS_IN","name":"Lance Sullivan","type":"Role","_key":"107642","_from":"6451","_to":"63536"} +{"$label":"ACTS_IN","name":"Dave Johnson","type":"Role","_key":"101965","_from":"6451","_to":"60005"} +{"$label":"ACTS_IN","name":"Travis Sanders","type":"Role","_key":"95847","_from":"6451","_to":"56368"} +{"$label":"ACTS_IN","name":"Tommy Drake","type":"Role","_key":"68040","_from":"6451","_to":"41810"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"65393","_from":"6451","_to":"40555"} +{"$label":"ACTS_IN","name":"Donald Robert Johnson","type":"Role","_key":"61370","_from":"6451","_to":"38724"} +{"$label":"ACTS_IN","name":"Top Buchanan","type":"Role","_key":"52232","_from":"6451","_to":"34021"} +{"$label":"ACTS_IN","name":"McCool","type":"Role","_key":"31670","_from":"6451","_to":"22099"} +{"$label":"ACTS_IN","name":"Bobby Zachs","type":"Role","_key":"27508","_from":"6451","_to":"19738"} +{"$label":"ACTS_IN","name":"Rae","type":"Role","_key":"120180","_from":"6452","_to":"70585"} +{"$label":"ACTS_IN","name":"Jordan Armstrong","type":"Role","_key":"107641","_from":"6452","_to":"63536"} +{"$label":"ACTS_IN","name":"Abbie Halpert","type":"Role","_key":"98939","_from":"6452","_to":"58292"} +{"$label":"ACTS_IN","name":"Zora Mathews","type":"Role","_key":"88146","_from":"6452","_to":"52302"} +{"$label":"ACTS_IN","name":"Suzanne Kingston","type":"Role","_key":"71201","_from":"6452","_to":"43214"} +{"$label":"ACTS_IN","name":"Sherri","type":"Role","_key":"70697","_from":"6452","_to":"43005"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"64734","_from":"6452","_to":"40300"} +{"$label":"ACTS_IN","name":"Donna Chadway","type":"Role","_key":"62506","_from":"6452","_to":"39359"} +{"$label":"ACTS_IN","name":"Suzanne Persons","type":"Role","_key":"61406","_from":"6452","_to":"38734"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"58619","_from":"6452","_to":"37036"} +{"$label":"ACTS_IN","name":"Sherry Pierce","type":"Role","_key":"54948","_from":"6452","_to":"35128"} +{"$label":"ACTS_IN","name":"Rhonda Deane","type":"Role","_key":"61323","_from":"6453","_to":"38705"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"48939","_from":"6453","_to":"32087"} +{"$label":"ACTS_IN","name":"Uncle Earl","type":"Role","_key":"48952","_from":"6456","_to":"32087"} +{"$label":"ACTS_IN","name":"Reverend R. L.","type":"Role","_key":"47495","_from":"6456","_to":"31289"} +{"$label":"ACTS_IN","name":"Sontee Jenkins","type":"Role","_key":"108534","_from":"6459","_to":"64148"} +{"$label":"ACTS_IN","name":"Lisa Whitfield Moore","type":"Role","_key":"103697","_from":"6459","_to":"60994"} +{"$label":"ACTS_IN","name":"Layla","type":"Role","_key":"95286","_from":"6459","_to":"56059"} +{"$label":"ACTS_IN","name":"Rhonda","type":"Role","_key":"68779","_from":"6459","_to":"42142"} +{"$label":"ACTS_IN","name":"Kim Hinton","type":"Role","_key":"65187","_from":"6459","_to":"40488"} +{"$label":"ACTS_IN","name":"Dana Jones","type":"Role","_key":"64738","_from":"6459","_to":"40300"} +{"$label":"ACTS_IN","name":"Grace Rossiter","type":"Role","_key":"62608","_from":"6459","_to":"39388"} +{"$label":"ACTS_IN","name":"Sam Fuller","type":"Role","_key":"59809","_from":"6459","_to":"37760"} +{"$label":"ACTS_IN","name":"Kreela","type":"Role","_key":"57837","_from":"6459","_to":"36606"} +{"$label":"ACTS_IN","name":"Cecily Banks","type":"Role","_key":"57156","_from":"6459","_to":"36271"} +{"$label":"ACTS_IN","name":"Iesha","type":"Role","_key":"48937","_from":"6459","_to":"32087"} +{"$label":"ACTS_IN","name":"Margie Hendricks","type":"Role","_key":"14877","_from":"6459","_to":"11433"} +{"$label":"ACTS_IN","name":"Capt. Oliver Harmon 'Spearchucker' Jones","type":"Role","_key":"7785","_from":"6468","_to":"6460"} +{"$label":"ACTS_IN","name":"Cpl. Walter 'Radar' O'Reilly","type":"Role","_key":"7784","_from":"6467","_to":"6460"} +{"$label":"ACTS_IN","name":"Lt. Maria 'Dish' Schneider","type":"Role","_key":"7783","_from":"6466","_to":"6460"} +{"$label":"ACTS_IN","name":"SSgt. Wade Douglas Vollmer\/PA Announcer","type":"Role","_key":"7782","_from":"6465","_to":"6460"} +{"$label":"ACTS_IN","name":"Lt. Col. Henry Barymore Adlai Blake","type":"Role","_key":"7780","_from":"6464","_to":"6460"} +{"$label":"ACTS_IN","name":"Major Margaret 'Hot Lips' O'Houlihan","type":"Role","_key":"7778","_from":"6463","_to":"6460"} +{"$label":"DIRECTED","_key":"7774","_from":"6462","_to":"6460"} +{"$label":"DIRECTED","_key":"7773","_from":"6461","_to":"6460"} +{"$label":"DIRECTED","_key":"89816","_from":"6462","_to":"53150"} +{"$label":"DIRECTED","_key":"69200","_from":"6462","_to":"42322"} +{"$label":"DIRECTED","_key":"65620","_from":"6462","_to":"40669"} +{"$label":"DIRECTED","_key":"63034","_from":"6462","_to":"39558"} +{"$label":"DIRECTED","_key":"54459","_from":"6462","_to":"34916"} +{"$label":"DIRECTED","_key":"54038","_from":"6462","_to":"34762"} +{"$label":"DIRECTED","_key":"38387","_from":"6462","_to":"25936"} +{"$label":"DIRECTED","_key":"36858","_from":"6462","_to":"24998"} +{"$label":"DIRECTED","_key":"28137","_from":"6462","_to":"20177"} +{"$label":"DIRECTED","_key":"26132","_from":"6462","_to":"18778"} +{"$label":"DIRECTED","_key":"15938","_from":"6462","_to":"12128"} +{"$label":"DIRECTED","_key":"8361","_from":"6462","_to":"6847"} +{"$label":"ACTS_IN","name":"Dr. Diane Turner","type":"Role","_key":"105123","_from":"6463","_to":"61864"} +{"$label":"ACTS_IN","name":"Vera Malevich","type":"Role","_key":"38607","_from":"6463","_to":"26084"} +{"$label":"ACTS_IN","name":"Sissy Wanamaker","type":"Role","_key":"28159","_from":"6463","_to":"20177"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"26133","_from":"6465","_to":"18778"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"15943","_from":"6465","_to":"12128"} +{"$label":"ACTS_IN","name":"Eugene Bachinski","type":"Role","_key":"10619","_from":"6465","_to":"8423"} +{"$label":"ACTS_IN","name":"Captain Doby","type":"Role","_key":"53499","_from":"6468","_to":"34547"} +{"$label":"ACTS_IN","name":"Frost","type":"Role","_key":"8879","_from":"6468","_to":"7204"} +{"$label":"ACTS_IN","name":"Priam","type":"Role","_key":"7804","_from":"6476","_to":"6469"} +{"$label":"ACTS_IN","name":"Ajax","type":"Role","_key":"7803","_from":"6475","_to":"6469"} +{"$label":"ACTS_IN","name":"Eudorus","type":"Role","_key":"7802","_from":"6474","_to":"6469"} +{"$label":"ACTS_IN","name":"Polydora","type":"Role","_key":"7800","_from":"6473","_to":"6469"} +{"$label":"ACTS_IN","name":"Botenjunge","type":"Role","_key":"7798","_from":"6472","_to":"6469"} +{"$label":"ACTS_IN","name":"Andromache","type":"Role","_key":"7794","_from":"6471","_to":"6469"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"7790","_from":"6470","_to":"6469"} +{"$label":"ACTS_IN","name":"Cl\u00e9mence (voix)","type":"Role","_key":"118730","_from":"6470","_to":"69812"} +{"$label":"ACTS_IN","name":"Bridget von Hammersmark","type":"Role","_key":"110264","_from":"6470","_to":"65170"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108452","_from":"6470","_to":"64112"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"100786","_from":"6470","_to":"59416"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"90779","_from":"6470","_to":"53571"} +{"$label":"ACTS_IN","name":"La call-girl","type":"Role","_key":"72986","_from":"6470","_to":"43928"} +{"$label":"ACTS_IN","name":"Anna Sorensen","type":"Role","_key":"71369","_from":"6470","_to":"43289"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"68548","_from":"6470","_to":"42032"} +{"$label":"ACTS_IN","name":"Julie Wood","type":"Role","_key":"64165","_from":"6470","_to":"40036"} +{"$label":"ACTS_IN","name":"Abigail Chase","type":"Role","_key":"44493","_from":"6470","_to":"29641"} +{"$label":"ACTS_IN","name":"Marjana","type":"Role","_key":"37119","_from":"6470","_to":"25148"} +{"$label":"ACTS_IN","name":"Abigail Chase","type":"Role","_key":"17904","_from":"6470","_to":"13324"} +{"$label":"ACTS_IN","name":"Gloria Gregory","type":"Role","_key":"16178","_from":"6470","_to":"12284"} +{"$label":"ACTS_IN","name":"Anna Holtz","type":"Role","_key":"14083","_from":"6470","_to":"10917"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"117248","_from":"6471","_to":"68966"} +{"$label":"ACTS_IN","name":"Melody","type":"Role","_key":"110377","_from":"6471","_to":"65220"} +{"$label":"ACTS_IN","name":"English \/ Italian Twin","type":"Role","_key":"102988","_from":"6471","_to":"60579"} +{"$label":"ACTS_IN","name":"Claire Romilly","type":"Role","_key":"63655","_from":"6471","_to":"39821"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. 'Angel' Devereaux","type":"Role","_key":"62733","_from":"6471","_to":"39439"} +{"$label":"ACTS_IN","name":"Dr. Susan McCallister","type":"Role","_key":"51455","_from":"6471","_to":"33562"} +{"$label":"ACTS_IN","name":"Martine Love","type":"Role","_key":"51081","_from":"6471","_to":"33334"} +{"$label":"ACTS_IN","name":"Donna Remar","type":"Role","_key":"20601","_from":"6471","_to":"15075"} +{"$label":"ACTS_IN","name":"Gracie","type":"Role","_key":"12564","_from":"6471","_to":"9830"} +{"$label":"ACTS_IN","name":"Jake Baker","type":"Role","_key":"67247","_from":"6472","_to":"41460"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"59993","_from":"6472","_to":"37868"} +{"$label":"ACTS_IN","name":"Nadasdy","type":"Role","_key":"103598","_from":"6474","_to":"60931"} +{"$label":"ACTS_IN","name":"Percival, Leo's Chief Henchman","type":"Role","_key":"70050","_from":"6474","_to":"42711"} +{"$label":"ACTS_IN","name":"Raffles","type":"Role","_key":"59582","_from":"6474","_to":"37614"} +{"$label":"ACTS_IN","name":"Artemis","type":"Role","_key":"12414","_from":"6474","_to":"9725"} +{"$label":"ACTS_IN","name":"Michael Myers","type":"Role","_key":"18101","_from":"6475","_to":"13441"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"15015","_from":"6475","_to":"11531"} +{"$label":"ACTS_IN","name":"Henry II","type":"Role","_key":"118372","_from":"6476","_to":"69592"} +{"$label":"ACTS_IN","name":"Fisk Senior","type":"Role","_key":"114942","_from":"6476","_to":"67698"} +{"$label":"ACTS_IN","name":"Lord Chelmsford","type":"Role","_key":"114794","_from":"6476","_to":"67615"} +{"$label":"ACTS_IN","name":"King Henry II","type":"Role","_key":"104338","_from":"6476","_to":"61385"} +{"$label":"ACTS_IN","name":"Samuel, the Prophet","type":"Role","_key":"102676","_from":"6476","_to":"60410"} +{"$label":"ACTS_IN","name":"The Duke","type":"Role","_key":"101016","_from":"6476","_to":"59532"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"96275","_from":"6476","_to":"56572"} +{"$label":"ACTS_IN","name":"Bishop Cauchon","type":"Role","_key":"72885","_from":"6476","_to":"43899"} +{"$label":"ACTS_IN","name":"Lord Jim","type":"Role","_key":"69543","_from":"6476","_to":"42470"} +{"$label":"ACTS_IN","name":"Sir Cedric Charles Willingham","type":"Role","_key":"65903","_from":"6476","_to":"40771"} +{"$label":"ACTS_IN","name":"Dr. Timothy Flyte","type":"Role","_key":"57202","_from":"6476","_to":"36288"} +{"$label":"ACTS_IN","name":"Zaltar","type":"Role","_key":"55288","_from":"6476","_to":"35258"} +{"$label":"ACTS_IN","name":"Tiberius","type":"Role","_key":"53962","_from":"6476","_to":"34715"} +{"$label":"ACTS_IN","name":"Michael James","type":"Role","_key":"28437","_from":"6476","_to":"20343"} +{"$label":"ACTS_IN","name":"Simon Dermott","type":"Role","_key":"24850","_from":"6476","_to":"17972"} +{"$label":"ACTS_IN","name":"The Three Angels","type":"Role","_key":"21865","_from":"6476","_to":"15962"} +{"$label":"ACTS_IN","name":"Reichspr\u00e4sident Paul von Hindenburg","type":"Role","_key":"21771","_from":"6476","_to":"15899"} +{"$label":"ACTS_IN","name":"King of Stormhold","type":"Role","_key":"19962","_from":"6476","_to":"14696"} +{"$label":"ACTS_IN","name":"Anton Ego","type":"Role","_key":"17943","_from":"6476","_to":"13345"} +{"$label":"ACTS_IN","name":"Larry Martin","type":"Role","_key":"16843","_from":"6476","_to":"12677"} +{"$label":"ACTS_IN","name":"T.E. Lawrence","type":"Role","_key":"11286","_from":"6476","_to":"8914"} +{"$label":"ACTS_IN","name":"Reginal Flemming Johnson","type":"Role","_key":"8710","_from":"6476","_to":"7063"} +{"$label":"ACTS_IN","name":"Krankenschwester im Hospital","type":"Role","_key":"7823","_from":"6494","_to":"6477"} +{"$label":"ACTS_IN","name":"Seemann","type":"Role","_key":"7822","_from":"6493","_to":"6477"} +{"$label":"ACTS_IN","name":"W\u00e4rter im Irrenhaus","type":"Role","_key":"7821","_from":"6492","_to":"6477"} +{"$label":"ACTS_IN","name":"Matrose","type":"Role","_key":"7820","_from":"6491","_to":"6477"} +{"$label":"ACTS_IN","name":"Arzt im Hospital","type":"Role","_key":"7819","_from":"6490","_to":"6477"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"7818","_from":"6489","_to":"6477"} +{"$label":"ACTS_IN","name":"Matrose 2","type":"Role","_key":"7817","_from":"6488","_to":"6477"} +{"$label":"ACTS_IN","name":"Matrose 1","type":"Role","_key":"7816","_from":"6487","_to":"6477"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n der Demeter","type":"Role","_key":"7815","_from":"6486","_to":"6477"} +{"$label":"ACTS_IN","name":"Professor Sievers, der Arzt","type":"Role","_key":"7814","_from":"6485","_to":"6477"} +{"$label":"ACTS_IN","name":"Professor Bulwer","type":"Role","_key":"7813","_from":"6484","_to":"6477"} +{"$label":"ACTS_IN","name":"Lucy Westenra","type":"Role","_key":"7812","_from":"6483","_to":"6477"} +{"$label":"ACTS_IN","name":"Westenra","type":"Role","_key":"7811","_from":"6482","_to":"6477"} +{"$label":"ACTS_IN","name":"Knock","type":"Role","_key":"7810","_from":"6481","_to":"6477"} +{"$label":"ACTS_IN","name":"Ellen Hutter","type":"Role","_key":"7809","_from":"6480","_to":"6477"} +{"$label":"ACTS_IN","name":"Hutter","type":"Role","_key":"7808","_from":"6479","_to":"6477"} +{"$label":"ACTS_IN","name":"Graf Orlok","type":"Role","_key":"7807","_from":"6478","_to":"6477"} +{"$label":"ACTS_IN","name":"Chesterfield","type":"Role","_key":"28054","_from":"6478","_to":"20104"} +{"$label":"ACTS_IN","name":"Hans Windegger","type":"Role","_key":"24892","_from":"6479","_to":"17994"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24429","_from":"6479","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24403","_from":"6479","_to":"17653"} +{"$label":"DIRECTED","_key":"19240","_from":"6479","_to":"14225"} +{"$label":"ACTS_IN","name":"M\u00e4dchen mit der Rose","type":"Role","_key":"24576","_from":"6480","_to":"17772"} +{"$label":"ACTS_IN","name":"Kopalski","type":"Role","_key":"16074","_from":"6481","_to":"12210"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24987","_from":"6485","_to":"18044"} +{"$label":"ACTS_IN","name":"Generaldirektor Rosenow","type":"Role","_key":"49938","_from":"6491","_to":"32690"} +{"$label":"ACTS_IN","name":"Dr. Krause","type":"Role","_key":"42723","_from":"6491","_to":"28591"} +{"$label":"ACTS_IN","name":"Big Mac","type":"Role","_key":"7832","_from":"6499","_to":"6495"} +{"$label":"ACTS_IN","name":"Glover","type":"Role","_key":"7831","_from":"6498","_to":"6495"} +{"$label":"ACTS_IN","name":"Timothy Dugan","type":"Role","_key":"7830","_from":"6497","_to":"6495"} +{"$label":"ACTS_IN","name":"Father Barry","type":"Role","_key":"7827","_from":"6496","_to":"6495"} +{"$label":"ACTS_IN","name":"Sheriff Dad Longworth","type":"Role","_key":"116938","_from":"6496","_to":"68834"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"112149","_from":"6496","_to":"66231"} +{"$label":"ACTS_IN","name":"Det. Lt. Thomas","type":"Role","_key":"111599","_from":"6496","_to":"65883"} +{"$label":"ACTS_IN","name":"Zebulon Prescott","type":"Role","_key":"72614","_from":"6496","_to":"43773"} +{"$label":"ACTS_IN","name":"Gen. Omar N. Bradley","type":"Role","_key":"68511","_from":"6496","_to":"42021"} +{"$label":"ACTS_IN","name":"Herb Brooks","type":"Role","_key":"45219","_from":"6496","_to":"30015"} +{"$label":"ACTS_IN","name":"Tom Fitch","type":"Role","_key":"40443","_from":"6496","_to":"27258"} +{"$label":"ACTS_IN","name":"Leo Newbigen","type":"Role","_key":"34560","_from":"6496","_to":"23665"} +{"$label":"ACTS_IN","name":"Sgt. Ernie Guelvada","type":"Role","_key":"31880","_from":"6496","_to":"22241"} +{"$label":"ACTS_IN","name":"Harvey Shoemaker","type":"Role","_key":"10698","_from":"6496","_to":"8495"} +{"$label":"ACTS_IN","name":"Shooter","type":"Role","_key":"10551","_from":"6496","_to":"8385"} +{"$label":"ACTS_IN","name":"Harold Mitchell","type":"Role","_key":"8461","_from":"6496","_to":"6907"} +{"$label":"ACTS_IN","name":"The Major","type":"Role","_key":"120773","_from":"6498","_to":"70939"} +{"$label":"ACTS_IN","name":"Joe Lean","type":"Role","_key":"18252","_from":"6498","_to":"13541"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"34876","_from":"6499","_to":"23835"} +{"$label":"ACTS_IN","name":"Jess Younger","type":"Role","_key":"10707","_from":"6499","_to":"8495"} +{"$label":"ACTS_IN","name":"Doctor Ulmer","type":"Role","_key":"7839","_from":"6503","_to":"6500"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"7838","_from":"6502","_to":"6500"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"7837","_from":"6501","_to":"6500"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33301","_from":"6502","_to":"23070"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"17662","_from":"6502","_to":"13175"} +{"$label":"ACTS_IN","name":"Duchesse de Char","type":"Role","_key":"16293","_from":"6502","_to":"12347"} +{"$label":"ACTS_IN","name":"Hoseason","type":"Role","_key":"91802","_from":"6503","_to":"54153"} +{"$label":"ACTS_IN","name":"Polizeikommissar \u00d6sterreich","type":"Role","_key":"29553","_from":"6503","_to":"20933"} +{"$label":"ACTS_IN","name":"Dr. Borg","type":"Role","_key":"20036","_from":"6503","_to":"14741"} +{"$label":"DIRECTED","_key":"52894","_from":"6503","_to":"34285"} +{"$label":"DIRECTED","_key":"13844","_from":"6503","_to":"10746"} +{"$label":"ACTS_IN","name":"Ali Kerim Bey","type":"Role","_key":"7853","_from":"6513","_to":"6505"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"7852","_from":"6512","_to":"6505"} +{"$label":"ACTS_IN","name":"Vida","type":"Role","_key":"7851","_from":"6511","_to":"6505"} +{"$label":"ACTS_IN","name":"Kerim's Girl","type":"Role","_key":"7849","_from":"6510","_to":"6505"} +{"$label":"ACTS_IN","name":"Train Conductor","type":"Role","_key":"7848","_from":"6509","_to":"6505"} +{"$label":"ACTS_IN","name":"Vavra","type":"Role","_key":"7847","_from":"6508","_to":"6505"} +{"$label":"ACTS_IN","name":"Rosa Klebb","type":"Role","_key":"7842","_from":"6507","_to":"6505"} +{"$label":"ACTS_IN","name":"Tatiana Romanova","type":"Role","_key":"7841","_from":"6506","_to":"6505"} +{"$label":"ACTS_IN","name":"Carla Pelf","type":"Role","_key":"35381","_from":"6507","_to":"24080"} +{"$label":"ACTS_IN","name":"Spirit of Christmas Present","type":"Role","_key":"93333","_from":"6508","_to":"54981"} +{"$label":"ACTS_IN","name":"Agrippa","type":"Role","_key":"35792","_from":"6508","_to":"24306"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"25069","_from":"6508","_to":"18109"} +{"$label":"ACTS_IN","name":"Simon der Pharis\u00e4er","type":"Role","_key":"21191","_from":"6508","_to":"15473"} +{"$label":"ACTS_IN","name":"Helen Philipps","type":"Role","_key":"44633","_from":"6510","_to":"29701"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8638","_from":"6512","_to":"7008"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8587","_from":"6512","_to":"6980"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8574","_from":"6512","_to":"6975"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8557","_from":"6512","_to":"6967"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8543","_from":"6512","_to":"6961"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8440","_from":"6512","_to":"6889"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8429","_from":"6512","_to":"6879"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8412","_from":"6512","_to":"6873"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8324","_from":"6512","_to":"6815"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8246","_from":"6512","_to":"6761"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"8231","_from":"6512","_to":"6753"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"7994","_from":"6512","_to":"6617"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"7980","_from":"6512","_to":"6608"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"7896","_from":"6512","_to":"6541"} +{"$label":"ACTS_IN","name":"Q","type":"Role","_key":"7866","_from":"6512","_to":"6514"} +{"$label":"ACTS_IN","name":"Simmons","type":"Role","_key":"7864","_from":"6522","_to":"6514"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"7863","_from":"6521","_to":"6514"} +{"$label":"ACTS_IN","name":"Martin Solo","type":"Role","_key":"7862","_from":"6520","_to":"6514"} +{"$label":"ACTS_IN","name":"Oddjob","type":"Role","_key":"7860","_from":"6519","_to":"6514"} +{"$label":"ACTS_IN","name":"Tilly Masterson","type":"Role","_key":"7859","_from":"6518","_to":"6514"} +{"$label":"ACTS_IN","name":"Jill Masterson","type":"Role","_key":"7858","_from":"6517","_to":"6514"} +{"$label":"ACTS_IN","name":"Auric Goldfinger","type":"Role","_key":"7857","_from":"6516","_to":"6514"} +{"$label":"ACTS_IN","name":"Pussy Galore","type":"Role","_key":"7856","_from":"6515","_to":"6514"} +{"$label":"ACTS_IN","name":"Mrs. Liz Lucas","type":"Role","_key":"67002","_from":"6515","_to":"41361"} +{"$label":"ACTS_IN","name":"Kommissar Lohmann","type":"Role","_key":"118833","_from":"6516","_to":"69854"} +{"$label":"ACTS_IN","name":"Kriminalkommissar Kras","type":"Role","_key":"118830","_from":"6516","_to":"69853"} +{"$label":"ACTS_IN","name":"Baron Bomburst","type":"Role","_key":"71688","_from":"6516","_to":"43398"} +{"$label":"ACTS_IN","name":"Kriminalkommissar Lohmann","type":"Role","_key":"63389","_from":"6516","_to":"39717"} +{"$label":"ACTS_IN","name":"Colonel Manfred von Holstein","type":"Role","_key":"62675","_from":"6516","_to":"39416"} +{"$label":"ACTS_IN","name":"Sgt. Kaffekanne","type":"Role","_key":"52902","_from":"6516","_to":"34285"} +{"$label":"ACTS_IN","name":"Gustav-Eberhard M\u00fchlberg","type":"Role","_key":"42005","_from":"6516","_to":"28144"} +{"$label":"ACTS_IN","name":"Jabowski","type":"Role","_key":"39981","_from":"6516","_to":"27002"} +{"$label":"ACTS_IN","name":"Abel Bellamy","type":"Role","_key":"38164","_from":"6516","_to":"25798"} +{"$label":"ACTS_IN","name":"Wilhelm Blore","type":"Role","_key":"34499","_from":"6516","_to":"23625"} +{"$label":"ACTS_IN","name":"Von Choltitz","type":"Role","_key":"33554","_from":"6516","_to":"23204"} +{"$label":"ACTS_IN","name":"Sorbier","type":"Role","_key":"31757","_from":"6516","_to":"22162"} +{"$label":"ACTS_IN","name":"Bruster","type":"Role","_key":"31312","_from":"6516","_to":"21896"} +{"$label":"ACTS_IN","name":"Colonel Steinhager","type":"Role","_key":"31250","_from":"6516","_to":"21866"} +{"$label":"ACTS_IN","name":"Father Hoffmann","type":"Role","_key":"27334","_from":"6516","_to":"19647"} +{"$label":"ACTS_IN","name":"Inspector Max Hornung","type":"Role","_key":"24962","_from":"6516","_to":"18031"} +{"$label":"ACTS_IN","name":"Schrott","type":"Role","_key":"10092","_from":"6516","_to":"8075"} +{"$label":"ACTS_IN","name":"Ann Clyde","type":"Role","_key":"34446","_from":"6517","_to":"23596"} +{"$label":"ACTS_IN","name":"Mr. Montero","type":"Role","_key":"120807","_from":"6520","_to":"70946"} +{"$label":"ACTS_IN","name":"Kralahome","type":"Role","_key":"109385","_from":"6520","_to":"64625"} +{"$label":"ACTS_IN","name":"Pharis\u00e4er","type":"Role","_key":"21199","_from":"6520","_to":"15473"} +{"$label":"ACTS_IN","name":"Father Spiletto","type":"Role","_key":"9371","_from":"6520","_to":"7561"} +{"$label":"ACTS_IN","name":"Carson","type":"Role","_key":"31808","_from":"6521","_to":"22198"} +{"$label":"ACTS_IN","name":"Cantwell","type":"Role","_key":"26859","_from":"6522","_to":"19304"} +{"$label":"ACTS_IN","name":"Roswitha","type":"Role","_key":"7886","_from":"6540","_to":"6523"} +{"$label":"ACTS_IN","name":"Bebra","type":"Role","_key":"7885","_from":"6539","_to":"6523"} +{"$label":"ACTS_IN","name":"Sigismund Markus","type":"Role","_key":"7884","_from":"6538","_to":"6523"} +{"$label":"ACTS_IN","name":"Mutter Truczinski","type":"Role","_key":"7882","_from":"6537","_to":"6523"} +{"$label":"ACTS_IN","name":"Scheffler","type":"Role","_key":"7881","_from":"6536","_to":"6523"} +{"$label":"ACTS_IN","name":"Gretchen Scheffler","type":"Role","_key":"7880","_from":"6535","_to":"6523"} +{"$label":"ACTS_IN","name":"Greff","type":"Role","_key":"7879","_from":"6534","_to":"6523"} +{"$label":"ACTS_IN","name":"Lina Greff","type":"Role","_key":"7878","_from":"6533","_to":"6523"} +{"$label":"ACTS_IN","name":"Onkel Vinzenz","type":"Role","_key":"7877","_from":"6532","_to":"6523"} +{"$label":"ACTS_IN","name":"Joseph Koljaiczek","type":"Role","_key":"7876","_from":"6531","_to":"6523"} +{"$label":"ACTS_IN","name":"Anna Koljaiczek (alt)","type":"Role","_key":"7875","_from":"6530","_to":"6523"} +{"$label":"ACTS_IN","name":"Anna Koljaiczek (jung)","type":"Role","_key":"7874","_from":"6529","_to":"6523"} +{"$label":"ACTS_IN","name":"Maria Matzerath","type":"Role","_key":"7872","_from":"6528","_to":"6523"} +{"$label":"ACTS_IN","name":"Oskar Matzerath","type":"Role","_key":"7871","_from":"6527","_to":"6523"} +{"$label":"ACTS_IN","name":"Agnes Matzerath","type":"Role","_key":"7870","_from":"6526","_to":"6523"} +{"$label":"ACTS_IN","name":"Alfred Matzerath","type":"Role","_key":"7869","_from":"6525","_to":"6523"} +{"$label":"DIRECTED","_key":"7868","_from":"6524","_to":"6523"} +{"$label":"DIRECTED","_key":"90621","_from":"6524","_to":"53515"} +{"$label":"DIRECTED","_key":"90406","_from":"6524","_to":"53412"} +{"$label":"DIRECTED","_key":"68469","_from":"6524","_to":"41999"} +{"$label":"DIRECTED","_key":"63697","_from":"6524","_to":"39833"} +{"$label":"DIRECTED","_key":"61403","_from":"6524","_to":"38731"} +{"$label":"DIRECTED","_key":"33843","_from":"6524","_to":"23320"} +{"$label":"DIRECTED","_key":"22092","_from":"6524","_to":"16116"} +{"$label":"ACTS_IN","name":"Paolo Rossini","type":"Role","_key":"55232","_from":"6525","_to":"35234"} +{"$label":"ACTS_IN","name":"Spion SB 3","type":"Role","_key":"53409","_from":"6525","_to":"34508"} +{"$label":"ACTS_IN","name":"Capt. Sigmund Lukas","type":"Role","_key":"53044","_from":"6525","_to":"34339"} +{"$label":"ACTS_IN","name":"Blaubart","type":"Role","_key":"51831","_from":"6525","_to":"33824"} +{"$label":"ACTS_IN","name":"Pap","type":"Role","_key":"47857","_from":"6525","_to":"31498"} +{"$label":"ACTS_IN","name":"El Diabolo","type":"Role","_key":"46948","_from":"6525","_to":"30961"} +{"$label":"ACTS_IN","name":"Francesco Serboli","type":"Role","_key":"42668","_from":"6525","_to":"28564"} +{"$label":"ACTS_IN","name":"Gorian","type":"Role","_key":"38711","_from":"6525","_to":"26151"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"35812","_from":"6525","_to":"24317"} +{"$label":"ACTS_IN","name":"Joseph Grohmann","type":"Role","_key":"34453","_from":"6525","_to":"23596"} +{"$label":"ACTS_IN","name":"Kommissar Beizmenne","type":"Role","_key":"33846","_from":"6525","_to":"23320"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"31314","_from":"6525","_to":"21896"} +{"$label":"ACTS_IN","name":"Santer","type":"Role","_key":"28519","_from":"6525","_to":"20386"} +{"$label":"ACTS_IN","name":"Pedro Ortiz","type":"Role","_key":"27591","_from":"6525","_to":"19788"} +{"$label":"ACTS_IN","name":"Traffic cop","type":"Role","_key":"26985","_from":"6525","_to":"19403"} +{"$label":"ACTS_IN","name":"Nicola","type":"Role","_key":"19830","_from":"6525","_to":"14628"} +{"$label":"ACTS_IN","name":"Schuckert","type":"Role","_key":"19827","_from":"6525","_to":"14625"} +{"$label":"ACTS_IN","name":"Willi Butzbach","type":"Role","_key":"19003","_from":"6525","_to":"14038"} +{"$label":"ACTS_IN","name":"Heinz L\u00fcckert","type":"Role","_key":"18979","_from":"6525","_to":"14031"} +{"$label":"ACTS_IN","name":"Antigone","type":"Role","_key":"90395","_from":"6526","_to":"53412"} +{"$label":"ACTS_IN","name":"Katharina Blum","type":"Role","_key":"33845","_from":"6526","_to":"23320"} +{"$label":"ACTS_IN","name":"Lucile Desmoulins","type":"Role","_key":"30078","_from":"6526","_to":"21206"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"17203","_from":"6526","_to":"12888"} +{"$label":"ACTS_IN","name":"Honeythorn Gump","type":"Role","_key":"73106","_from":"6527","_to":"43975"} +{"$label":"ACTS_IN","name":"Comtesse Hochberg","type":"Role","_key":"90729","_from":"6528","_to":"53552"} +{"$label":"ACTS_IN","name":"R\u00f6ntgenschwester Inge","type":"Role","_key":"70346","_from":"6528","_to":"42854"} +{"$label":"ACTS_IN","name":"Volksschulrektorin B\u00f6hm","type":"Role","_key":"42558","_from":"6528","_to":"28483"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"37944","_from":"6528","_to":"25691"} +{"$label":"ACTS_IN","name":"Frau Moll","type":"Role","_key":"33782","_from":"6528","_to":"23287"} +{"$label":"ACTS_IN","name":"Lisa Gabler","type":"Role","_key":"31419","_from":"6528","_to":"21952"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"19578","_from":"6528","_to":"14478"} +{"$label":"ACTS_IN","name":"Chefin Deutsches Haus","type":"Role","_key":"46310","_from":"6529","_to":"30602"} +{"$label":"ACTS_IN","name":"Dr. Buschalla ( Psychologin )","type":"Role","_key":"42852","_from":"6529","_to":"28648"} +{"$label":"ACTS_IN","name":"Regine","type":"Role","_key":"20570","_from":"6529","_to":"15054"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"20176","_from":"6529","_to":"14796"} +{"$label":"ACTS_IN","name":"Frau Schrott","type":"Role","_key":"10093","_from":"6530","_to":"8075"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne - la m\u00e8re d'Adrienne","type":"Role","_key":"105247","_from":"6533","_to":"61936"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"60719","_from":"6533","_to":"38342"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34695","_from":"6533","_to":"23728"} +{"$label":"ACTS_IN","name":"The Baker's Wife","type":"Role","_key":"31445","_from":"6533","_to":"21964"} +{"$label":"ACTS_IN","name":"Noemie","type":"Role","_key":"27327","_from":"6533","_to":"19639"} +{"$label":"ACTS_IN","name":"Arlette Guillaume","type":"Role","_key":"15177","_from":"6533","_to":"11631"} +{"$label":"ACTS_IN","name":"Hugo Wimmer (alt)","type":"Role","_key":"51127","_from":"6534","_to":"33353"} +{"$label":"ACTS_IN","name":"Lawrence Redding","type":"Role","_key":"41312","_from":"6534","_to":"27774"} +{"$label":"ACTS_IN","name":"Dr. Blorna, Anwalt","type":"Role","_key":"33849","_from":"6534","_to":"23320"} +{"$label":"ACTS_IN","name":"Lucas Steiner","type":"Role","_key":"15182","_from":"6534","_to":"11631"} +{"$label":"ACTS_IN","name":"Frau Gerti V\u00f6lpel","type":"Role","_key":"31421","_from":"6535","_to":"21952"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"23797","_from":"6535","_to":"17255"} +{"$label":"ACTS_IN","name":"Miss Finley","type":"Role","_key":"14811","_from":"6535","_to":"11387"} +{"$label":"ACTS_IN","name":"Heimo Germer","type":"Role","_key":"31923","_from":"6536","_to":"22264"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"41310","_from":"6537","_to":"27774"} +{"$label":"ACTS_IN","name":"Mizzi Buntje","type":"Role","_key":"40932","_from":"6537","_to":"27539"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40400","_from":"6537","_to":"27239"} +{"$label":"ACTS_IN","name":"Gundula","type":"Role","_key":"19172","_from":"6537","_to":"14169"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"108848","_from":"6538","_to":"64332"} +{"$label":"ACTS_IN","name":"Michel Raven","type":"Role","_key":"34496","_from":"6538","_to":"23625"} +{"$label":"ACTS_IN","name":"Naphta","type":"Role","_key":"29569","_from":"6538","_to":"20940"} +{"$label":"ACTS_IN","name":"Charles Aznavour","type":"Role","_key":"29506","_from":"6538","_to":"20909"} +{"$label":"ACTS_IN","name":"Charlie Kohler\/Edouard Saroyan","type":"Role","_key":"15737","_from":"6538","_to":"11991"} +{"$label":"ACTS_IN","name":"Number 10","type":"Role","_key":"7899","_from":"6550","_to":"6541"} +{"$label":"ACTS_IN","name":"Foreign Secretary","type":"Role","_key":"7898","_from":"6549","_to":"6541"} +{"$label":"ACTS_IN","name":"Paula Caplan","type":"Role","_key":"7894","_from":"6548","_to":"6541"} +{"$label":"ACTS_IN","name":"Patricia Fearing","type":"Role","_key":"7893","_from":"6547","_to":"6541"} +{"$label":"ACTS_IN","name":"Count Lippe","type":"Role","_key":"7892","_from":"6546","_to":"6541"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"7891","_from":"6545","_to":"6541"} +{"$label":"ACTS_IN","name":"Fiona Volpe","type":"Role","_key":"7890","_from":"6544","_to":"6541"} +{"$label":"ACTS_IN","name":"Emilio Largo","type":"Role","_key":"7889","_from":"6543","_to":"6541"} +{"$label":"ACTS_IN","name":"Dominique 'Domino' Derval","type":"Role","_key":"7888","_from":"6542","_to":"6541"} +{"$label":"ACTS_IN","name":"Renata","type":"Role","_key":"37435","_from":"6542","_to":"25365"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"31251","_from":"6542","_to":"21866"} +{"$label":"ACTS_IN","name":"Esmerelda","type":"Role","_key":"26979","_from":"6542","_to":"19403"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"69850","_from":"6543","_to":"42625"} +{"$label":"ACTS_IN","name":"le m\u00e9d\u00e9cin","type":"Role","_key":"37838","_from":"6543","_to":"25644"} +{"$label":"ACTS_IN","name":"General Andr\u00e9 Salv\u00e9","type":"Role","_key":"34500","_from":"6543","_to":"23625"} +{"$label":"ACTS_IN","name":"Se\u00f1or Mario De Castro","type":"Role","_key":"29515","_from":"6543","_to":"20910"} +{"$label":"ACTS_IN","name":"Ralph Valmont","type":"Role","_key":"24808","_from":"6543","_to":"17940"} +{"$label":"ACTS_IN","name":"Konsul","type":"Role","_key":"22069","_from":"6543","_to":"16093"} +{"$label":"ACTS_IN","name":"Jole Scarpa","type":"Role","_key":"33518","_from":"6544","_to":"23177"} +{"$label":"ACTS_IN","name":"Ross","type":"Role","_key":"103680","_from":"6546","_to":"60984"} +{"$label":"ACTS_IN","name":"Colonel Ross","type":"Role","_key":"34563","_from":"6546","_to":"23665"} +{"$label":"ACTS_IN","name":"Nupondi","type":"Role","_key":"28219","_from":"6548","_to":"20209"} +{"$label":"ACTS_IN","name":"Commander Bride","type":"Role","_key":"109252","_from":"6549","_to":"64542"} +{"$label":"ACTS_IN","name":"Mr. (Rudolph) Deutsch","type":"Role","_key":"107883","_from":"6549","_to":"63712"} +{"$label":"ACTS_IN","name":"Eliot Foley","type":"Role","_key":"95328","_from":"6549","_to":"56079"} +{"$label":"ACTS_IN","name":"Mr. Lombard","type":"Role","_key":"16797","_from":"6549","_to":"12656"} +{"$label":"ACTS_IN","name":"Sgt. Fran\u00e7ois Chevalier","type":"Role","_key":"72326","_from":"6550","_to":"43680"} +{"$label":"ACTS_IN","name":"Sgt. Chevalier","type":"Role","_key":"41622","_from":"6550","_to":"27943"} +{"$label":"ACTS_IN","name":"Hans Wetzel","type":"Role","_key":"7909","_from":"6557","_to":"6551"} +{"$label":"ACTS_IN","name":"Betti Klenze","type":"Role","_key":"7906","_from":"6556","_to":"6551"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"7905","_from":"6555","_to":"6551"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"7904","_from":"6554","_to":"6551"} +{"$label":"ACTS_IN","name":"Karl Oswald","type":"Role","_key":"7903","_from":"6553","_to":"6551"} +{"$label":"ACTS_IN","name":"Hermann Braun","type":"Role","_key":"7902","_from":"6552","_to":"6551"} +{"$label":"ACTS_IN","name":"Uffz. Kr\u00fcger","type":"Role","_key":"66109","_from":"6552","_to":"40897"} +{"$label":"ACTS_IN","name":"Unteroffizier Kr\u00fcger","type":"Role","_key":"66102","_from":"6552","_to":"40895"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"61841","_from":"6552","_to":"38929"} +{"$label":"ACTS_IN","name":"Manowsky","type":"Role","_key":"36749","_from":"6552","_to":"24915"} +{"$label":"ACTS_IN","name":"Hans Schloss","type":"Role","_key":"16859","_from":"6552","_to":"12677"} +{"$label":"ACTS_IN","name":"Gregor Marmara","type":"Role","_key":"31890","_from":"6553","_to":"22247"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31389","_from":"6553","_to":"21938"} +{"$label":"ACTS_IN","name":"Jeweller","type":"Role","_key":"24963","_from":"6553","_to":"18031"} +{"$label":"ACTS_IN","name":"Wittich","type":"Role","_key":"19822","_from":"6553","_to":"14625"} +{"$label":"ACTS_IN","name":"Grim \/ Sperg \/ Pirate #6 (voice)","type":"Role","_key":"111833","_from":"6554","_to":"66010"} +{"$label":"ACTS_IN","name":"Mrs. Tilling, geb. Lebanon","type":"Role","_key":"55178","_from":"6555","_to":"35204"} +{"$label":"ACTS_IN","name":"\"Bella\" Anna Wittstock","type":"Role","_key":"40621","_from":"6555","_to":"27349"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"72698","_from":"6556","_to":"43807"} +{"$label":"ACTS_IN","name":"Elisabeth Schnittgens","type":"Role","_key":"20038","_from":"6556","_to":"14741"} +{"$label":"ACTS_IN","name":"Herr Arnold","type":"Role","_key":"91290","_from":"6557","_to":"53836"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"43653","_from":"6557","_to":"29135"} +{"$label":"ACTS_IN","name":"Scholten","type":"Role","_key":"41992","_from":"6557","_to":"28139"} +{"$label":"ACTS_IN","name":"Der Wissenschaftler","type":"Role","_key":"7916","_from":"6563","_to":"6558"} +{"$label":"ACTS_IN","name":"Der Mann","type":"Role","_key":"7915","_from":"6562","_to":"6558"} +{"$label":"ACTS_IN","name":"Die Frau","type":"Role","_key":"7914","_from":"6561","_to":"6558"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"7913","_from":"6560","_to":"6558"} +{"$label":"DIRECTED","_key":"7912","_from":"6559","_to":"6558"} +{"$label":"DIRECTED","_key":"13835","_from":"6559","_to":"10738"} +{"$label":"ACTS_IN","name":"Spitzer","type":"Role","_key":"70330","_from":"6560","_to":"42850"} +{"$label":"ACTS_IN","name":"Corbett","type":"Role","_key":"7929","_from":"6575","_to":"6564"} +{"$label":"ACTS_IN","name":"Cecill","type":"Role","_key":"7928","_from":"6574","_to":"6564"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"7927","_from":"6573","_to":"6564"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"7926","_from":"6572","_to":"6564"} +{"$label":"ACTS_IN","name":"Fisk","type":"Role","_key":"7925","_from":"6571","_to":"6564"} +{"$label":"ACTS_IN","name":"Lamanna","type":"Role","_key":"7924","_from":"6570","_to":"6564"} +{"$label":"ACTS_IN","name":"Agent Perez","type":"Role","_key":"7923","_from":"6569","_to":"6564"} +{"$label":"ACTS_IN","name":"Art","type":"Role","_key":"7922","_from":"6568","_to":"6564"} +{"$label":"ACTS_IN","name":"Hoffman","type":"Role","_key":"7920","_from":"6567","_to":"6564"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"7919","_from":"6566","_to":"6564"} +{"$label":"ACTS_IN","name":"Agent Strahm","type":"Role","_key":"7918","_from":"6565","_to":"6564"} +{"$label":"ACTS_IN","name":"Gil Davis","type":"Role","_key":"116780","_from":"6565","_to":"68745"} +{"$label":"ACTS_IN","name":"Jordan Leigh-Jenson","type":"Role","_key":"117670","_from":"6566","_to":"69165"} +{"$label":"ACTS_IN","name":"Tomboy","type":"Role","_key":"19032","_from":"6566","_to":"14055"} +{"$label":"ACTS_IN","name":"Dick Sydney","type":"Role","_key":"30817","_from":"6567","_to":"21601"} +{"$label":"ACTS_IN","name":"Hondshew","type":"Role","_key":"20305","_from":"6567","_to":"14868"} +{"$label":"ACTS_IN","name":"Colonel Ferrus","type":"Role","_key":"99550","_from":"6568","_to":"58686"} +{"$label":"ACTS_IN","name":"Howard Purnell","type":"Role","_key":"46874","_from":"6568","_to":"30909"} +{"$label":"ACTS_IN","name":"Frank Jr.","type":"Role","_key":"45986","_from":"6568","_to":"30398"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"11005","_from":"6568","_to":"8707"} +{"$label":"ACTS_IN","name":"Bob Harper","type":"Role","_key":"94680","_from":"6570","_to":"55785"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"14638","_from":"6571","_to":"11274"} +{"$label":"ACTS_IN","name":"Iris Ward","type":"Role","_key":"102943","_from":"6573","_to":"60556"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"7947","_from":"6584","_to":"6576"} +{"$label":"ACTS_IN","name":"Haynes","type":"Role","_key":"7944","_from":"6583","_to":"6576"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"7943","_from":"6582","_to":"6576"} +{"$label":"ACTS_IN","name":"Jason 'Preacher' Rowe","type":"Role","_key":"7941","_from":"6581","_to":"6576"} +{"$label":"ACTS_IN","name":"Allan Sanders","type":"Role","_key":"7940","_from":"6580","_to":"6576"} +{"$label":"ACTS_IN","name":"Dr. Melissa Reeves","type":"Role","_key":"7936","_from":"6579","_to":"6576"} +{"$label":"ACTS_IN","name":"Dr. Jo Harding","type":"Role","_key":"7933","_from":"6578","_to":"6576"} +{"$label":"DIRECTED","_key":"7932","_from":"6577","_to":"6576"} +{"$label":"DIRECTED","_key":"71081","_from":"6577","_to":"43160"} +{"$label":"DIRECTED","_key":"17306","_from":"6577","_to":"12952"} +{"$label":"DIRECTED","_key":"14519","_from":"6577","_to":"11198"} +{"$label":"DIRECTED","_key":"14510","_from":"6577","_to":"11195"} +{"$label":"ACTS_IN","name":"Teri Macdonald","type":"Role","_key":"116060","_from":"6578","_to":"68347"} +{"$label":"ACTS_IN","name":"Lynne Stone","type":"Role","_key":"108388","_from":"6578","_to":"64078"} +{"$label":"ACTS_IN","name":"Stella Erlynne","type":"Role","_key":"103515","_from":"6578","_to":"60900"} +{"$label":"ACTS_IN","name":"April Epner","type":"Role","_key":"93401","_from":"6578","_to":"55010"} +{"$label":"ACTS_IN","name":"Bree","type":"Role","_key":"65617","_from":"6578","_to":"40669"} +{"$label":"ACTS_IN","name":"Samantha Stevens","type":"Role","_key":"65373","_from":"6578","_to":"40552"} +{"$label":"ACTS_IN","name":"Tracy Calder","type":"Role","_key":"64952","_from":"6578","_to":"40377"} +{"$label":"ACTS_IN","name":"Arlene McKinney","type":"Role","_key":"64816","_from":"6578","_to":"40327"} +{"$label":"ACTS_IN","name":"Rose Pondell","type":"Role","_key":"64496","_from":"6578","_to":"40183"} +{"$label":"ACTS_IN","name":"Kelly Frears","type":"Role","_key":"49291","_from":"6578","_to":"32281"} +{"$label":"ACTS_IN","name":"Bev Kilmartin","type":"Role","_key":"41472","_from":"6578","_to":"27872"} +{"$label":"ACTS_IN","name":"Leena","type":"Role","_key":"38550","_from":"6578","_to":"26048"} +{"$label":"ACTS_IN","name":"Darcy McGuire","type":"Role","_key":"29319","_from":"6578","_to":"20821"} +{"$label":"ACTS_IN","name":"Carol Connelly","type":"Role","_key":"24160","_from":"6578","_to":"17512"} +{"$label":"ACTS_IN","name":"Betty Ann Fitzgerald","type":"Role","_key":"23491","_from":"6578","_to":"17030"} +{"$label":"DIRECTED","_key":"93409","_from":"6578","_to":"55010"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"118753","_from":"6579","_to":"69830"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"104252","_from":"6579","_to":"61340"} +{"$label":"ACTS_IN","name":"Rosalie","type":"Role","_key":"101636","_from":"6579","_to":"59820"} +{"$label":"ACTS_IN","name":"Blair","type":"Role","_key":"96009","_from":"6579","_to":"56439"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"13697","_from":"6579","_to":"10632"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"113351","_from":"6580","_to":"66772"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"56886","_from":"6580","_to":"36109"} +{"$label":"ACTS_IN","name":"McMacy","type":"Role","_key":"44030","_from":"6580","_to":"29363"} +{"$label":"ACTS_IN","name":"Pasqual","type":"Role","_key":"31009","_from":"6580","_to":"21713"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"94024","_from":"6581","_to":"55369"} +{"$label":"ACTS_IN","name":"Cadet Chad Copeland","type":"Role","_key":"53196","_from":"6581","_to":"34404"} +{"$label":"ACTS_IN","name":"Steve Wozniak","type":"Role","_key":"26786","_from":"6582","_to":"19245"} +{"$label":"ACTS_IN","name":"Sailor - Spooney","type":"Role","_key":"115010","_from":"6584","_to":"67722"} +{"$label":"ACTS_IN","name":"Sgt. Scott Galentine","type":"Role","_key":"10150","_from":"6584","_to":"8112"} +{"$label":"ACTS_IN","name":"Tiberius Caesar","type":"Role","_key":"7960","_from":"6598","_to":"6585"} +{"$label":"ACTS_IN","name":"Balthasar","type":"Role","_key":"7959","_from":"6597","_to":"6585"} +{"$label":"ACTS_IN","name":"Malluch","type":"Role","_key":"7958","_from":"6596","_to":"6585"} +{"$label":"ACTS_IN","name":"Simonides","type":"Role","_key":"7957","_from":"6595","_to":"6585"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"7956","_from":"6594","_to":"6585"} +{"$label":"ACTS_IN","name":"Tirzah","type":"Role","_key":"7955","_from":"6593","_to":"6585"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"7954","_from":"6592","_to":"6585"} +{"$label":"ACTS_IN","name":"Scheich Ildirim","type":"Role","_key":"7953","_from":"6591","_to":"6585"} +{"$label":"ACTS_IN","name":"Messala","type":"Role","_key":"7952","_from":"6590","_to":"6585"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"7951","_from":"6589","_to":"6585"} +{"$label":"ACTS_IN","name":"Quintus Arrius","type":"Role","_key":"7950","_from":"6588","_to":"6585"} +{"$label":"ACTS_IN","name":"Judah Ben-Hur","type":"Role","_key":"7949","_from":"6587","_to":"6585"} +{"$label":"DIRECTED","_key":"7948","_from":"6586","_to":"6585"} +{"$label":"DIRECTED","_key":"118351","_from":"6586","_to":"69576"} +{"$label":"DIRECTED","_key":"116810","_from":"6586","_to":"68770"} +{"$label":"DIRECTED","_key":"113992","_from":"6586","_to":"67129"} +{"$label":"DIRECTED","_key":"107002","_from":"6586","_to":"63082"} +{"$label":"DIRECTED","_key":"101511","_from":"6586","_to":"59743"} +{"$label":"DIRECTED","_key":"89909","_from":"6586","_to":"53205"} +{"$label":"DIRECTED","_key":"25604","_from":"6586","_to":"18444"} +{"$label":"DIRECTED","_key":"24848","_from":"6586","_to":"17972"} +{"$label":"DIRECTED","_key":"17130","_from":"6586","_to":"12831"} +{"$label":"DIRECTED","_key":"10558","_from":"6586","_to":"8390"} +{"$label":"DIRECTED","_key":"9466","_from":"6586","_to":"7643"} +{"$label":"ACTS_IN","name":"Himself - 'Taylor' (also archive footage)","type":"Role","_key":"111664","_from":"6587","_to":"65926"} +{"$label":"ACTS_IN","name":"El Cid","type":"Role","_key":"109695","_from":"6587","_to":"64787"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"96729","_from":"6587","_to":"56898"} +{"$label":"ACTS_IN","name":"Steve Leech","type":"Role","_key":"89913","_from":"6587","_to":"53205"} +{"$label":"ACTS_IN","name":"Detective Robert Thorn","type":"Role","_key":"88025","_from":"6587","_to":"52257"} +{"$label":"ACTS_IN","name":"Capt. Matthew Garth","type":"Role","_key":"69762","_from":"6587","_to":"42583"} +{"$label":"ACTS_IN","name":"Robert Neville","type":"Role","_key":"68700","_from":"6587","_to":"42097"} +{"$label":"ACTS_IN","name":"Stewart Graff","type":"Role","_key":"68003","_from":"6587","_to":"41786"} +{"$label":"ACTS_IN","name":"Player King","type":"Role","_key":"64007","_from":"6587","_to":"39964"} +{"$label":"ACTS_IN","name":"Capt. Peter Holly","type":"Role","_key":"45045","_from":"6587","_to":"29922"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"44951","_from":"6587","_to":"29886"} +{"$label":"ACTS_IN","name":"Togrul","type":"Role","_key":"36626","_from":"6587","_to":"24814"} +{"$label":"ACTS_IN","name":"Gen. Andrew Jackson","type":"Role","_key":"34924","_from":"6587","_to":"23856"} +{"$label":"ACTS_IN","name":"Cardinal Richelieu","type":"Role","_key":"24350","_from":"6587","_to":"17626"} +{"$label":"ACTS_IN","name":"Jackson Harglow","type":"Role","_key":"22519","_from":"6587","_to":"16363"} +{"$label":"ACTS_IN","name":"Johannes der T\u00e4ufer","type":"Role","_key":"21253","_from":"6587","_to":"15553"} +{"$label":"ACTS_IN","name":"Adm. Skeet Kelso","type":"Role","_key":"18326","_from":"6587","_to":"13596"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"14905","_from":"6587","_to":"11457"} +{"$label":"ACTS_IN","name":"Will Penny","type":"Role","_key":"14866","_from":"6587","_to":"11429"} +{"$label":"ACTS_IN","name":"Ramon Miguel Vargas","type":"Role","_key":"13416","_from":"6587","_to":"10442"} +{"$label":"ACTS_IN","name":"George Taylor","type":"Role","_key":"10358","_from":"6587","_to":"8244"} +{"$label":"ACTS_IN","name":"Zaius","type":"Role","_key":"10345","_from":"6587","_to":"8229"} +{"$label":"ACTS_IN","name":"Ericson","type":"Role","_key":"110488","_from":"6588","_to":"65277"} +{"$label":"ACTS_IN","name":"Rev. Otto Witt","type":"Role","_key":"100240","_from":"6588","_to":"59121"} +{"$label":"ACTS_IN","name":"Marlow","type":"Role","_key":"69548","_from":"6588","_to":"42470"} +{"$label":"ACTS_IN","name":"Colonel Drexel","type":"Role","_key":"24813","_from":"6588","_to":"17944"} +{"$label":"ACTS_IN","name":"General Lord Edmund Allenby","type":"Role","_key":"11289","_from":"6588","_to":"8914"} +{"$label":"ACTS_IN","name":"Maj. Warden","type":"Role","_key":"9765","_from":"6588","_to":"7831"} +{"$label":"ACTS_IN","name":"Queen Antinea","type":"Role","_key":"27273","_from":"6589","_to":"19607"} +{"$label":"ACTS_IN","name":"Livius","type":"Role","_key":"111748","_from":"6590","_to":"65965"} +{"$label":"ACTS_IN","name":"Yamuga","type":"Role","_key":"34435","_from":"6590","_to":"23592"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"26970","_from":"6590","_to":"19402"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"26956","_from":"6590","_to":"19391"} +{"$label":"ACTS_IN","name":"Nimrod","type":"Role","_key":"21853","_from":"6590","_to":"15962"} +{"$label":"ACTS_IN","name":"Grant","type":"Role","_key":"18812","_from":"6590","_to":"13902"} +{"$label":"ACTS_IN","name":"King Louis","type":"Role","_key":"121076","_from":"6591","_to":"71109"} +{"$label":"ACTS_IN","name":"Rabbi","type":"Role","_key":"114510","_from":"6591","_to":"67443"} +{"$label":"ACTS_IN","name":"Alexander Smith","type":"Role","_key":"67780","_from":"6591","_to":"41668"} +{"$label":"ACTS_IN","name":"The Pigman","type":"Role","_key":"45538","_from":"6591","_to":"30154"} +{"$label":"ACTS_IN","name":"Squire Western","type":"Role","_key":"39405","_from":"6591","_to":"26641"} +{"$label":"ACTS_IN","name":"Sir January","type":"Role","_key":"38656","_from":"6591","_to":"26112"} +{"$label":"ACTS_IN","name":"The Caliph","type":"Role","_key":"31448","_from":"6591","_to":"21964"} +{"$label":"ACTS_IN","name":"Charles Bonnet","type":"Role","_key":"24852","_from":"6591","_to":"17972"} +{"$label":"ACTS_IN","name":"Eleanor 'Ellie' Hilliard","type":"Role","_key":"116804","_from":"6592","_to":"68770"} +{"$label":"ACTS_IN","name":"Yochabel","type":"Role","_key":"44958","_from":"6592","_to":"29886"} +{"$label":"ACTS_IN","name":"Ellen Norson","type":"Role","_key":"115649","_from":"6593","_to":"68087"} +{"$label":"ACTS_IN","name":"Barbara Waggoman","type":"Role","_key":"115613","_from":"6593","_to":"68059"} +{"$label":"ACTS_IN","name":"Wilma Cameron","type":"Role","_key":"10564","_from":"6593","_to":"8390"} +{"$label":"ACTS_IN","name":"Mayor Galimard","type":"Role","_key":"115282","_from":"6595","_to":"67879"} +{"$label":"ACTS_IN","name":"Doc Erwin Riedenschneider","type":"Role","_key":"110618","_from":"6595","_to":"65354"} +{"$label":"ACTS_IN","name":"Dr. Francis Kittridge Hunter","type":"Role","_key":"104593","_from":"6595","_to":"61524"} +{"$label":"ACTS_IN","name":"Bookman","type":"Role","_key":"89276","_from":"6595","_to":"52856"} +{"$label":"ACTS_IN","name":"Singleton","type":"Role","_key":"35554","_from":"6595","_to":"24170"} +{"$label":"ACTS_IN","name":"High Lama","type":"Role","_key":"28304","_from":"6595","_to":"20257"} +{"$label":"ACTS_IN","name":"Prof. Jacob Barnhardt","type":"Role","_key":"9790","_from":"6595","_to":"7848"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44234","_from":"6596","_to":"29476"} +{"$label":"ACTS_IN","name":"Senator","type":"Role","_key":"111756","_from":"6597","_to":"65965"} +{"$label":"ACTS_IN","name":"Whist Partner","type":"Role","_key":"24137","_from":"6597","_to":"17503"} +{"$label":"ACTS_IN","name":"The doll maker","type":"Role","_key":"16839","_from":"6597","_to":"12675"} +{"$label":"ACTS_IN","name":"Old Enderby","type":"Role","_key":"8756","_from":"6597","_to":"7102"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"7969","_from":"6607","_to":"6599"} +{"$label":"ACTS_IN","name":"Pedr\u00e3o","type":"Role","_key":"7968","_from":"6606","_to":"6599"} +{"$label":"ACTS_IN","name":"Cesar","type":"Role","_key":"7967","_from":"6605","_to":"6599"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"7966","_from":"6604","_to":"6599"} +{"$label":"ACTS_IN","name":"Josu\u00e9","type":"Role","_key":"7965","_from":"6603","_to":"6599"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"7964","_from":"6602","_to":"6599"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"7963","_from":"6601","_to":"6599"} +{"$label":"DIRECTED","_key":"7962","_from":"6600","_to":"6599"} +{"$label":"DIRECTED","_key":"51980","_from":"6600","_to":"33896"} +{"$label":"DIRECTED","_key":"51395","_from":"6600","_to":"33521"} +{"$label":"DIRECTED","_key":"19853","_from":"6600","_to":"14635"} +{"$label":"DIRECTED","_key":"14681","_from":"6600","_to":"11304"} +{"$label":"ACTS_IN","name":"Transito Ariza","type":"Role","_key":"44508","_from":"6601","_to":"29642"} +{"$label":"ACTS_IN","name":"Dario","type":"Role","_key":"51396","_from":"6603","_to":"33521"} +{"$label":"DIRECTED","_key":"7983","_from":"6616","_to":"6608"} +{"$label":"ACTS_IN","name":"Ling","type":"Role","_key":"7982","_from":"6615","_to":"6608"} +{"$label":"ACTS_IN","name":"Dikko Henderson","type":"Role","_key":"7981","_from":"6614","_to":"6608"} +{"$label":"ACTS_IN","name":"Mr. Osato","type":"Role","_key":"7976","_from":"6613","_to":"6608"} +{"$label":"ACTS_IN","name":"Tiger Tanaka","type":"Role","_key":"7975","_from":"6612","_to":"6608"} +{"$label":"ACTS_IN","name":"Kissy Suzuki","type":"Role","_key":"7974","_from":"6611","_to":"6608"} +{"$label":"ACTS_IN","name":"Helga Brandt","type":"Role","_key":"7973","_from":"6610","_to":"6608"} +{"$label":"ACTS_IN","name":"Aki","type":"Role","_key":"7972","_from":"6609","_to":"6608"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105824","_from":"6609","_to":"62298"} +{"$label":"ACTS_IN","name":"Liane Martin","type":"Role","_key":"118839","_from":"6610","_to":"69855"} +{"$label":"ACTS_IN","name":"Baroness Lilian von Brabant","type":"Role","_key":"90552","_from":"6610","_to":"53485"} +{"$label":"ACTS_IN","name":"Mabel Kingsley","type":"Role","_key":"64769","_from":"6610","_to":"40310"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44936","_from":"6610","_to":"29874"} +{"$label":"ACTS_IN","name":"Brigitte Giesecke","type":"Role","_key":"44894","_from":"6610","_to":"29857"} +{"$label":"ACTS_IN","name":"Frau Winter","type":"Role","_key":"38275","_from":"6610","_to":"25853"} +{"$label":"ACTS_IN","name":"Nicole Monnier","type":"Role","_key":"38223","_from":"6610","_to":"25818"} +{"$label":"ACTS_IN","name":"Ellen Pattersson","type":"Role","_key":"38215","_from":"6610","_to":"25817"} +{"$label":"ACTS_IN","name":"Gwendolin","type":"Role","_key":"38196","_from":"6610","_to":"25812"} +{"$label":"ACTS_IN","name":"Claridge Dorsett","type":"Role","_key":"38187","_from":"6610","_to":"25808"} +{"$label":"ACTS_IN","name":"Jane Clifton","type":"Role","_key":"38176","_from":"6610","_to":"25804"} +{"$label":"ACTS_IN","name":"Valerie Howett Bellamy","type":"Role","_key":"38163","_from":"6610","_to":"25798"} +{"$label":"ACTS_IN","name":"Nora Sanders","type":"Role","_key":"38151","_from":"6610","_to":"25795"} +{"$label":"ACTS_IN","name":"Brunhild","type":"Role","_key":"38032","_from":"6610","_to":"25742"} +{"$label":"ACTS_IN","name":"Brunhild","type":"Role","_key":"38012","_from":"6610","_to":"25728"} +{"$label":"ACTS_IN","name":"Ribanna","type":"Role","_key":"28527","_from":"6610","_to":"20392"} +{"$label":"ACTS_IN","name":"Maria Muller Janssen","type":"Role","_key":"27374","_from":"6610","_to":"19673"} +{"$label":"ACTS_IN","name":"Maleva Kerstein","type":"Role","_key":"26700","_from":"6610","_to":"19185"} +{"$label":"ACTS_IN","name":"Juanita de Cordoba","type":"Role","_key":"20703","_from":"6610","_to":"15136"} +{"$label":"ACTS_IN","name":"Oj\u00eesan Jinpei Katakuri","type":"Role","_key":"107917","_from":"6612","_to":"63729"} +{"$label":"ACTS_IN","name":"Benson","type":"Role","_key":"24817","_from":"6614","_to":"17944"} +{"$label":"ACTS_IN","name":"Ernst Stavro Blofeld","type":"Role","_key":"8222","_from":"6614","_to":"6753"} +{"$label":"ACTS_IN","name":"Madame Lu","type":"Role","_key":"107828","_from":"6615","_to":"63677"} +{"$label":"ACTS_IN","name":"Lin Tang","type":"Role","_key":"27422","_from":"6615","_to":"19690"} +{"$label":"ACTS_IN","name":"Lin Tang","type":"Role","_key":"27402","_from":"6615","_to":"19679"} +{"$label":"ACTS_IN","name":"Lin Tang","type":"Role","_key":"27379","_from":"6615","_to":"19673"} +{"$label":"ACTS_IN","name":"Auntie","type":"Role","_key":"16445","_from":"6615","_to":"12429"} +{"$label":"DIRECTED","_key":"117514","_from":"6616","_to":"69093"} +{"$label":"DIRECTED","_key":"117450","_from":"6616","_to":"69075"} +{"$label":"DIRECTED","_key":"105132","_from":"6616","_to":"61868"} +{"$label":"DIRECTED","_key":"29822","_from":"6616","_to":"21103"} +{"$label":"DIRECTED","_key":"29814","_from":"6616","_to":"21100"} +{"$label":"DIRECTED","_key":"8404","_from":"6616","_to":"6873"} +{"$label":"DIRECTED","_key":"8328","_from":"6616","_to":"6815"} +{"$label":"DIRECTED","_key":"7997","_from":"6627","_to":"6617"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"7996","_from":"6626","_to":"6617"} +{"$label":"ACTS_IN","name":"Grunther","type":"Role","_key":"7995","_from":"6625","_to":"6617"} +{"$label":"ACTS_IN","name":"Campbell","type":"Role","_key":"7993","_from":"6624","_to":"6617"} +{"$label":"ACTS_IN","name":"Sir Hilary Bray","type":"Role","_key":"7991","_from":"6623","_to":"6617"} +{"$label":"ACTS_IN","name":"Ruby Bartlett","type":"Role","_key":"7989","_from":"6622","_to":"6617"} +{"$label":"ACTS_IN","name":"Irma Bunt","type":"Role","_key":"7988","_from":"6621","_to":"6617"} +{"$label":"ACTS_IN","name":"Ernst Stavro Blofeld","type":"Role","_key":"7986","_from":"6620","_to":"6617"} +{"$label":"ACTS_IN","name":"Tracy Di Vicenzo","type":"Role","_key":"7985","_from":"6619","_to":"6617"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"7984","_from":"6618","_to":"6617"} +{"$label":"ACTS_IN","name":"herself \/ Arlena Stuart Marshall","type":"Role","_key":"41629","_from":"6619","_to":"27947"} +{"$label":"ACTS_IN","name":"Christine Vole","type":"Role","_key":"40894","_from":"6619","_to":"27513"} +{"$label":"ACTS_IN","name":"Arlena Stuart Marshall","type":"Role","_key":"29993","_from":"6619","_to":"21171"} +{"$label":"ACTS_IN","name":"Sgt. Guffy","type":"Role","_key":"95036","_from":"6620","_to":"55943"} +{"$label":"ACTS_IN","name":"Hymie Kaplan","type":"Role","_key":"72924","_from":"6620","_to":"43910"} +{"$label":"ACTS_IN","name":"Albain","type":"Role","_key":"72840","_from":"6620","_to":"43874"} +{"$label":"ACTS_IN","name":"Master Sergeant \"Big Joe\"","type":"Role","_key":"70900","_from":"6620","_to":"43079"} +{"$label":"ACTS_IN","name":"Private Detective Charles Sievers","type":"Role","_key":"69283","_from":"6620","_to":"42356"} +{"$label":"ACTS_IN","name":"Count De Fanzini","type":"Role","_key":"42927","_from":"6620","_to":"28685"} +{"$label":"ACTS_IN","name":"Vince Carden","type":"Role","_key":"38700","_from":"6620","_to":"26145"} +{"$label":"ACTS_IN","name":"Leandro","type":"Role","_key":"37412","_from":"6620","_to":"25355"} +{"$label":"ACTS_IN","name":"Dr. Dominic Riccio","type":"Role","_key":"35362","_from":"6620","_to":"24074"} +{"$label":"ACTS_IN","name":"Shan","type":"Role","_key":"34439","_from":"6620","_to":"23592"} +{"$label":"ACTS_IN","name":"Lt. Dawson","type":"Role","_key":"27862","_from":"6620","_to":"19972"} +{"$label":"ACTS_IN","name":"Pontius Pilatus","type":"Role","_key":"21266","_from":"6620","_to":"15553"} +{"$label":"ACTS_IN","name":"Archer Maggott","type":"Role","_key":"14692","_from":"6620","_to":"11307"} +{"$label":"ACTS_IN","name":"Feto Gomez","type":"Role","_key":"10702","_from":"6620","_to":"8495"} +{"$label":"ACTS_IN","name":"Lady Patricia","type":"Role","_key":"38198","_from":"6621","_to":"25812"} +{"$label":"ACTS_IN","name":"Captain Benson","type":"Role","_key":"8321","_from":"6623","_to":"6815"} +{"$label":"ACTS_IN","name":"Claudine","type":"Role","_key":"72319","_from":"6626","_to":"43680"} +{"$label":"ACTS_IN","name":"Mauban","type":"Role","_key":"15324","_from":"6626","_to":"11720"} +{"$label":"ACTS_IN","name":"Nanook's son","type":"Role","_key":"8003","_from":"6634","_to":"6628"} +{"$label":"ACTS_IN","name":"Nanook's son","type":"Role","_key":"8002","_from":"6633","_to":"6628"} +{"$label":"ACTS_IN","name":"Nanook's wife","type":"Role","_key":"8001","_from":"6632","_to":"6628"} +{"$label":"ACTS_IN","name":"Nanook's wife, the smiling one","type":"Role","_key":"8000","_from":"6631","_to":"6628"} +{"$label":"ACTS_IN","name":"Nanook","type":"Role","_key":"7999","_from":"6630","_to":"6628"} +{"$label":"DIRECTED","_key":"7998","_from":"6629","_to":"6628"} +{"$label":"ACTS_IN","name":"Mi-do","type":"Role","_key":"8013","_from":"6645","_to":"6635"} +{"$label":"ACTS_IN","name":"Park Cheol-woong","type":"Role","_key":"8012","_from":"6644","_to":"6635"} +{"$label":"ACTS_IN","name":"Lee Soo-ah","type":"Role","_key":"8011","_from":"6643","_to":"6635"} +{"$label":"ACTS_IN","name":"Young Joo-hwan","type":"Role","_key":"8010","_from":"6642","_to":"6635"} +{"$label":"ACTS_IN","name":"Young Dae-su","type":"Role","_key":"8009","_from":"6641","_to":"6635"} +{"$label":"ACTS_IN","name":"Mr. Han","type":"Role","_key":"8008","_from":"6640","_to":"6635"} +{"$label":"ACTS_IN","name":"No Joo-hwan","type":"Role","_key":"8007","_from":"6639","_to":"6635"} +{"$label":"ACTS_IN","name":"Lee Woo-jin","type":"Role","_key":"8006","_from":"6638","_to":"6635"} +{"$label":"ACTS_IN","name":"Oh Dae-su","type":"Role","_key":"8005","_from":"6637","_to":"6635"} +{"$label":"DIRECTED","_key":"8004","_from":"6636","_to":"6635"} +{"$label":"DIRECTED","_key":"37442","_from":"6636","_to":"25368"} +{"$label":"DIRECTED","_key":"33423","_from":"6636","_to":"23136"} +{"$label":"DIRECTED","_key":"32566","_from":"6636","_to":"22637"} +{"$label":"DIRECTED","_key":"21381","_from":"6636","_to":"15637"} +{"$label":"ACTS_IN","name":"Kang-jae","type":"Role","_key":"117181","_from":"6637","_to":"68939"} +{"$label":"ACTS_IN","name":"Jang Seung-up","type":"Role","_key":"115763","_from":"6637","_to":"68158"} +{"$label":"ACTS_IN","name":"Park Mu-young","type":"Role","_key":"62752","_from":"6637","_to":"39449"} +{"$label":"ACTS_IN","name":"Mr. Baek","type":"Role","_key":"32567","_from":"6637","_to":"22637"} +{"$label":"ACTS_IN","name":"Sergeant Jang Young-soo","type":"Role","_key":"107424","_from":"6641","_to":"63364"} +{"$label":"ACTS_IN","name":"Yeo-il","type":"Role","_key":"102599","_from":"6645","_to":"60364"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"8035","_from":"6664","_to":"6646"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8033","_from":"6663","_to":"6646"} +{"$label":"ACTS_IN","name":"Percy Weasley","type":"Role","_key":"8032","_from":"6662","_to":"6646"} +{"$label":"ACTS_IN","name":"Ginny Weasley","type":"Role","_key":"8031","_from":"6661","_to":"6646"} +{"$label":"ACTS_IN","name":"Griphook the Goblin","type":"Role","_key":"8029","_from":"6660","_to":"6646"} +{"$label":"ACTS_IN","name":"Mrs. Lily Potter","type":"Role","_key":"8028","_from":"6659","_to":"6646"} +{"$label":"ACTS_IN","name":"Diagon Alley Boy","type":"Role","_key":"8027","_from":"6658","_to":"6646"} +{"$label":"ACTS_IN","name":"Professor Quirinus Quirrell","type":"Role","_key":"8026","_from":"6657","_to":"6646"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"8025","_from":"6656","_to":"6646"} +{"$label":"ACTS_IN","name":"Uncle Vernon Dursley","type":"Role","_key":"8024","_from":"6655","_to":"6646"} +{"$label":"ACTS_IN","name":"Dudley Dursley","type":"Role","_key":"8023","_from":"6654","_to":"6646"} +{"$label":"ACTS_IN","name":"Aunt Petunia Dursley","type":"Role","_key":"8022","_from":"6653","_to":"6646"} +{"$label":"ACTS_IN","name":"Baby Harry Potter","type":"Role","_key":"8021","_from":"6652","_to":"6646"} +{"$label":"ACTS_IN","name":"Professor Minerva McGonagall","type":"Role","_key":"8019","_from":"6651","_to":"6646"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8017","_from":"6650","_to":"6646"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8016","_from":"6649","_to":"6646"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8015","_from":"6648","_to":"6646"} +{"$label":"DIRECTED","_key":"8014","_from":"6647","_to":"6646"} +{"$label":"DIRECTED","_key":"121290","_from":"6647","_to":"71261"} +{"$label":"DIRECTED","_key":"99832","_from":"6647","_to":"58883"} +{"$label":"DIRECTED","_key":"70064","_from":"6647","_to":"42720"} +{"$label":"DIRECTED","_key":"53859","_from":"6647","_to":"34690"} +{"$label":"DIRECTED","_key":"22191","_from":"6647","_to":"16172"} +{"$label":"DIRECTED","_key":"19985","_from":"6647","_to":"14709"} +{"$label":"DIRECTED","_key":"15825","_from":"6647","_to":"12045"} +{"$label":"DIRECTED","_key":"9274","_from":"6647","_to":"7496"} +{"$label":"DIRECTED","_key":"9092","_from":"6647","_to":"7357"} +{"$label":"DIRECTED","_key":"9076","_from":"6647","_to":"7343"} +{"$label":"DIRECTED","_key":"8037","_from":"6647","_to":"6665"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"89540","_from":"6648","_to":"52997"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"89501","_from":"6648","_to":"52992"} +{"$label":"ACTS_IN","name":"Maps","type":"Role","_key":"33061","_from":"6648","_to":"22904"} +{"$label":"ACTS_IN","name":"Mark Pendel","type":"Role","_key":"22026","_from":"6648","_to":"16070"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8993","_from":"6648","_to":"7294"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8102","_from":"6648","_to":"6687"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8080","_from":"6648","_to":"6682"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8060","_from":"6648","_to":"6676"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"8038","_from":"6648","_to":"6665"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"89546","_from":"6649","_to":"52997"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"89511","_from":"6649","_to":"52992"} +{"$label":"ACTS_IN","name":"Ben Marshall","type":"Role","_key":"69650","_from":"6649","_to":"42519"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8994","_from":"6649","_to":"7294"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8103","_from":"6649","_to":"6687"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8081","_from":"6649","_to":"6682"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8061","_from":"6649","_to":"6676"} +{"$label":"ACTS_IN","name":"Ron Weasley","type":"Role","_key":"8039","_from":"6649","_to":"6665"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"89541","_from":"6650","_to":"52997"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"89502","_from":"6650","_to":"52992"} +{"$label":"ACTS_IN","name":"Princess Pea","type":"Role","_key":"61655","_from":"6650","_to":"38847"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8995","_from":"6650","_to":"7294"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8104","_from":"6650","_to":"6687"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8082","_from":"6650","_to":"6682"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8062","_from":"6650","_to":"6676"} +{"$label":"ACTS_IN","name":"Hermione Granger","type":"Role","_key":"8040","_from":"6650","_to":"6665"} +{"$label":"ACTS_IN","name":"Charlotte Bartlett","type":"Role","_key":"68831","_from":"6651","_to":"42174"} +{"$label":"ACTS_IN","name":"Mrs. Medlock","type":"Role","_key":"68725","_from":"6651","_to":"42113"} +{"$label":"ACTS_IN","name":"Lady Hester Random","type":"Role","_key":"62840","_from":"6651","_to":"39488"} +{"$label":"ACTS_IN","name":"Thetis","type":"Role","_key":"62587","_from":"6651","_to":"39379"} +{"$label":"ACTS_IN","name":"Grace Hawkins","type":"Role","_key":"55637","_from":"6651","_to":"35425"} +{"$label":"ACTS_IN","name":"Caro Eliza Bennett","type":"Role","_key":"54835","_from":"6651","_to":"35080"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"54467","_from":"6651","_to":"34924"} +{"$label":"ACTS_IN","name":"Mother Superior","type":"Role","_key":"42795","_from":"6651","_to":"28626"} +{"$label":"ACTS_IN","name":"herself \/ Daphne Castle","type":"Role","_key":"41628","_from":"6651","_to":"27947"} +{"$label":"ACTS_IN","name":"Miss Bowers","type":"Role","_key":"41608","_from":"6651","_to":"27940"} +{"$label":"ACTS_IN","name":"Dore Charleston","type":"Role","_key":"41389","_from":"6651","_to":"27822"} +{"$label":"ACTS_IN","name":"Constance Trentham","type":"Role","_key":"36861","_from":"6651","_to":"24998"} +{"$label":"ACTS_IN","name":"Augusta Bertram","type":"Role","_key":"36326","_from":"6651","_to":"24646"} +{"$label":"ACTS_IN","name":"Jean Brodie","type":"Role","_key":"36293","_from":"6651","_to":"24620"} +{"$label":"ACTS_IN","name":"Daphne Castle","type":"Role","_key":"29992","_from":"6651","_to":"21171"} +{"$label":"ACTS_IN","name":"Miss Bowers","type":"Role","_key":"29984","_from":"6651","_to":"21170"} +{"$label":"ACTS_IN","name":"Lady Gresham","type":"Role","_key":"24621","_from":"6651","_to":"17810"} +{"$label":"ACTS_IN","name":"Gunilla Garson Goldberg","type":"Role","_key":"24334","_from":"6651","_to":"17622"} +{"$label":"ACTS_IN","name":"Mother Superior","type":"Role","_key":"17410","_from":"6651","_to":"13020"} +{"$label":"ACTS_IN","name":"Granny Wendy","type":"Role","_key":"10461","_from":"6651","_to":"8318"} +{"$label":"ACTS_IN","name":"Professor Minerva McGonagall","type":"Role","_key":"9002","_from":"6651","_to":"7294"} +{"$label":"ACTS_IN","name":"Minerva McGonagall","type":"Role","_key":"8109","_from":"6651","_to":"6687"} +{"$label":"ACTS_IN","name":"Minerva McGonagall","type":"Role","_key":"8094","_from":"6651","_to":"6682"} +{"$label":"ACTS_IN","name":"Professor McGonagall","type":"Role","_key":"8071","_from":"6651","_to":"6676"} +{"$label":"ACTS_IN","name":"Mrs. Croft","type":"Role","_key":"110895","_from":"6653","_to":"65506"} +{"$label":"ACTS_IN","name":"Paulina Novacek","type":"Role","_key":"90884","_from":"6653","_to":"53623"} +{"$label":"ACTS_IN","name":"Aunt Petunia","type":"Role","_key":"89528","_from":"6653","_to":"52992"} +{"$label":"ACTS_IN","name":"Ramona Linscott","type":"Role","_key":"55473","_from":"6653","_to":"35352"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"53104","_from":"6653","_to":"34364"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"51747","_from":"6653","_to":"33765"} +{"$label":"ACTS_IN","name":"Judge Robinson","type":"Role","_key":"41947","_from":"6653","_to":"28107"} +{"$label":"ACTS_IN","name":"Aunt Petunia","type":"Role","_key":"8115","_from":"6653","_to":"6687"} +{"$label":"ACTS_IN","name":"Dudley Dursley","type":"Role","_key":"89534","_from":"6654","_to":"52992"} +{"$label":"ACTS_IN","name":"Dudley Dursley","type":"Role","_key":"8122","_from":"6654","_to":"6687"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"96292","_from":"6655","_to":"56572"} +{"$label":"ACTS_IN","name":"Montague Withnail (Uncle Monty)","type":"Role","_key":"94495","_from":"6655","_to":"55653"} +{"$label":"ACTS_IN","name":"Vernon Dursley","type":"Role","_key":"89532","_from":"6655","_to":"52992"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"50261","_from":"6655","_to":"32841"} +{"$label":"ACTS_IN","name":"Dr. Bourdelot","type":"Role","_key":"45816","_from":"6655","_to":"30302"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Phillipse","type":"Role","_key":"22616","_from":"6655","_to":"16413"} +{"$label":"ACTS_IN","name":"King George II","type":"Role","_key":"16121","_from":"6655","_to":"12247"} +{"$label":"ACTS_IN","name":"Uncle Vernon","type":"Role","_key":"8112","_from":"6655","_to":"6687"} +{"$label":"ACTS_IN","name":"Uncle Vernon","type":"Role","_key":"8074","_from":"6655","_to":"6676"} +{"$label":"ACTS_IN","name":"Uncle Vernon Dursley","type":"Role","_key":"8054","_from":"6655","_to":"6665"} +{"$label":"ACTS_IN","name":"Dr. Watson","type":"Role","_key":"105637","_from":"6657","_to":"62179"} +{"$label":"ACTS_IN","name":"John Lennon","type":"Role","_key":"90745","_from":"6657","_to":"53557"} +{"$label":"ACTS_IN","name":"Daniel Defoe","type":"Role","_key":"68560","_from":"6657","_to":"42034"} +{"$label":"ACTS_IN","name":"Steve Davis","type":"Role","_key":"24321","_from":"6657","_to":"17618"} +{"$label":"ACTS_IN","name":"Joe O`Reilly","type":"Role","_key":"15410","_from":"6657","_to":"11783"} +{"$label":"ACTS_IN","name":"Sir Arthur Conan Doyle","type":"Role","_key":"10304","_from":"6657","_to":"8196"} +{"$label":"ACTS_IN","name":"Dr. Samantha Graham","type":"Role","_key":"36903","_from":"6659","_to":"25014"} +{"$label":"ACTS_IN","name":"Louisa Stockbridge","type":"Role","_key":"36862","_from":"6659","_to":"24998"} +{"$label":"ACTS_IN","name":"Lily Potter","type":"Role","_key":"8119","_from":"6659","_to":"6687"} +{"$label":"ACTS_IN","name":"Lily Potter","type":"Role","_key":"8095","_from":"6659","_to":"6682"} +{"$label":"ACTS_IN","name":"Lily Potter","type":"Role","_key":"8075","_from":"6659","_to":"6676"} +{"$label":"ACTS_IN","name":"Coach Punch Cherkov","type":"Role","_key":"88490","_from":"6660","_to":"52448"} +{"$label":"ACTS_IN","name":"Dr. Phreak","type":"Role","_key":"55574","_from":"6660","_to":"35390"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"23094","_from":"6660","_to":"16741"} +{"$label":"ACTS_IN","name":"Mini Me","type":"Role","_key":"16576","_from":"6660","_to":"12521"} +{"$label":"ACTS_IN","name":"Mini Me","type":"Role","_key":"9639","_from":"6660","_to":"7752"} +{"$label":"ACTS_IN","name":"Mini-Me","type":"Role","_key":"9630","_from":"6660","_to":"7750"} +{"$label":"ACTS_IN","name":"Ginny Weasley","type":"Role","_key":"89512","_from":"6661","_to":"52992"} +{"$label":"ACTS_IN","name":"Young Agatha Christie","type":"Role","_key":"41755","_from":"6661","_to":"28015"} +{"$label":"ACTS_IN","name":"Ginny Weasley","type":"Role","_key":"8072","_from":"6661","_to":"6676"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"89507","_from":"6663","_to":"52992"} +{"$label":"ACTS_IN","name":"Peagreen Clock","type":"Role","_key":"53938","_from":"6663","_to":"34706"} +{"$label":"ACTS_IN","name":"Louis Leonowens","type":"Role","_key":"13294","_from":"6663","_to":"10353"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8996","_from":"6663","_to":"7294"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8117","_from":"6663","_to":"6687"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8098","_from":"6663","_to":"6682"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8068","_from":"6663","_to":"6676"} +{"$label":"ACTS_IN","name":"Draco Malfoy","type":"Role","_key":"8059","_from":"6663","_to":"6665"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"89505","_from":"6664","_to":"52992"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"9004","_from":"6664","_to":"7294"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"8121","_from":"6664","_to":"6687"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"8096","_from":"6664","_to":"6682"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"8078","_from":"6664","_to":"6676"} +{"$label":"ACTS_IN","name":"Neville Longbottom","type":"Role","_key":"8056","_from":"6664","_to":"6665"} +{"$label":"ACTS_IN","name":"Alicia Spinnet","type":"Role","_key":"8053","_from":"6675","_to":"6665"} +{"$label":"ACTS_IN","name":"Katie Bell","type":"Role","_key":"8052","_from":"6674","_to":"6665"} +{"$label":"ACTS_IN","name":"Filius Flitwick","type":"Role","_key":"8051","_from":"6673","_to":"6665"} +{"$label":"ACTS_IN","name":"Susan Bones","type":"Role","_key":"8049","_from":"6672","_to":"6665"} +{"$label":"ACTS_IN","name":"Mrs Mason","type":"Role","_key":"8046","_from":"6671","_to":"6665"} +{"$label":"ACTS_IN","name":"Gilderoy Lockhart","type":"Role","_key":"8045","_from":"6670","_to":"6665"} +{"$label":"ACTS_IN","name":"Argus Filch","type":"Role","_key":"8044","_from":"6669","_to":"6665"} +{"$label":"ACTS_IN","name":"Oliver Wood","type":"Role","_key":"8043","_from":"6668","_to":"6665"} +{"$label":"ACTS_IN","name":"Mrs Granger","type":"Role","_key":"8042","_from":"6667","_to":"6665"} +{"$label":"ACTS_IN","name":"Young Rubeus Hagrid","type":"Role","_key":"8041","_from":"6666","_to":"6665"} +{"$label":"ACTS_IN","name":"Ben Willis","type":"Role","_key":"88813","_from":"6668","_to":"52622"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"111521","_from":"6669","_to":"65842"} +{"$label":"ACTS_IN","name":"Cohen the Barbarian","type":"Role","_key":"95121","_from":"6669","_to":"55975"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"94224","_from":"6669","_to":"55490"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"64524","_from":"6669","_to":"40189"} +{"$label":"DIRECTED","_key":"118714","_from":"6670","_to":"69802"} +{"$label":"DIRECTED","_key":"73067","_from":"6670","_to":"43966"} +{"$label":"DIRECTED","_key":"72023","_from":"6670","_to":"43549"} +{"$label":"DIRECTED","_key":"70192","_from":"6670","_to":"42779"} +{"$label":"DIRECTED","_key":"65170","_from":"6670","_to":"40473"} +{"$label":"DIRECTED","_key":"64012","_from":"6670","_to":"39964"} +{"$label":"DIRECTED","_key":"61618","_from":"6670","_to":"38831"} +{"$label":"DIRECTED","_key":"32286","_from":"6670","_to":"22490"} +{"$label":"DIRECTED","_key":"25167","_from":"6670","_to":"18176"} +{"$label":"ACTS_IN","name":"Dormandy","type":"Role","_key":"118261","_from":"6670","_to":"69515"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"113696","_from":"6670","_to":"66999"} +{"$label":"ACTS_IN","name":"Uncle Albert","type":"Role","_key":"110094","_from":"6670","_to":"65055"} +{"$label":"ACTS_IN","name":"Iago","type":"Role","_key":"109180","_from":"6670","_to":"64502"} +{"$label":"ACTS_IN","name":"Peter McGowan","type":"Role","_key":"96672","_from":"6670","_to":"56865"} +{"$label":"ACTS_IN","name":"Reinhard Heydrich","type":"Role","_key":"91876","_from":"6670","_to":"54204"} +{"$label":"ACTS_IN","name":"Rick Magruder","type":"Role","_key":"89807","_from":"6670","_to":"53150"} +{"$label":"ACTS_IN","name":"Benedikt","type":"Role","_key":"73068","_from":"6670","_to":"43966"} +{"$label":"ACTS_IN","name":"Andrew Benson","type":"Role","_key":"72018","_from":"6670","_to":"43549"} +{"$label":"ACTS_IN","name":"Roman Strauss","type":"Role","_key":"70186","_from":"6670","_to":"42779"} +{"$label":"ACTS_IN","name":"Henry V","type":"Role","_key":"65150","_from":"6670","_to":"40473"} +{"$label":"ACTS_IN","name":"Hamlet","type":"Role","_key":"64000","_from":"6670","_to":"39964"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"63703","_from":"6670","_to":"39835"} +{"$label":"ACTS_IN","name":"A. O. Neville","type":"Role","_key":"54646","_from":"6670","_to":"35000"} +{"$label":"ACTS_IN","name":"Lee Simon","type":"Role","_key":"54040","_from":"6670","_to":"34763"} +{"$label":"ACTS_IN","name":"Dr. Arliss Loveless","type":"Role","_key":"50034","_from":"6670","_to":"32751"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26737","_from":"6670","_to":"19220"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26651","_from":"6670","_to":"19158"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"25169","_from":"6670","_to":"18176"} +{"$label":"ACTS_IN","name":"Henning von Tresckow","type":"Role","_key":"19698","_from":"6670","_to":"14564"} +{"$label":"ACTS_IN","name":"Leprechaun","type":"Role","_key":"119543","_from":"6673","_to":"70225"} +{"$label":"ACTS_IN","name":"Leprechaun","type":"Role","_key":"119536","_from":"6673","_to":"70221"} +{"$label":"ACTS_IN","name":"Leprechaun","type":"Role","_key":"119528","_from":"6673","_to":"70216"} +{"$label":"ACTS_IN","name":"Leprechaun","type":"Role","_key":"114633","_from":"6673","_to":"67527"} +{"$label":"ACTS_IN","name":"The Leprechaun","type":"Role","_key":"114624","_from":"6673","_to":"67521"} +{"$label":"ACTS_IN","name":"Griphook","type":"Role","_key":"89518","_from":"6673","_to":"52992"} +{"$label":"ACTS_IN","name":"Leprechaun","type":"Role","_key":"72120","_from":"6673","_to":"43597"} +{"$label":"ACTS_IN","name":"Wicket","type":"Role","_key":"62860","_from":"6673","_to":"39499"} +{"$label":"ACTS_IN","name":"Pechet","type":"Role","_key":"42764","_from":"6673","_to":"28616"} +{"$label":"ACTS_IN","name":"Nikabrik","type":"Role","_key":"21527","_from":"6673","_to":"15744"} +{"$label":"ACTS_IN","name":"Wicket W. Warrick","type":"Role","_key":"16262","_from":"6673","_to":"12330"} +{"$label":"ACTS_IN","name":"Willow Ufgood","type":"Role","_key":"10032","_from":"6673","_to":"8030"} +{"$label":"DIRECTED","_key":"8079","_from":"6681","_to":"6676"} +{"$label":"ACTS_IN","name":"Fred Weasley","type":"Role","_key":"8077","_from":"6680","_to":"6676"} +{"$label":"ACTS_IN","name":"Aunt Marge","type":"Role","_key":"8073","_from":"6679","_to":"6676"} +{"$label":"ACTS_IN","name":"Gregory Goyle","type":"Role","_key":"8069","_from":"6678","_to":"6676"} +{"$label":"ACTS_IN","name":"Professor Lupin","type":"Role","_key":"8064","_from":"6677","_to":"6676"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"100873","_from":"6677","_to":"59473"} +{"$label":"ACTS_IN","name":"Jerry Barker","type":"Role","_key":"100619","_from":"6677","_to":"59333"} +{"$label":"ACTS_IN","name":"Remus Lupin","type":"Role","_key":"89521","_from":"6677","_to":"52992"} +{"$label":"ACTS_IN","name":"Cyrus Crabb","type":"Role","_key":"88809","_from":"6677","_to":"52620"} +{"$label":"ACTS_IN","name":"Freddie Mays","type":"Role","_key":"62975","_from":"6677","_to":"39542"} +{"$label":"ACTS_IN","name":"Robert Doniger","type":"Role","_key":"54703","_from":"6677","_to":"35025"} +{"$label":"ACTS_IN","name":"Edward Douglas","type":"Role","_key":"53023","_from":"6677","_to":"34335"} +{"$label":"ACTS_IN","name":"King Einon","type":"Role","_key":"51004","_from":"6677","_to":"33290"} +{"$label":"ACTS_IN","name":"Roy Washburn","type":"Role","_key":"25726","_from":"6677","_to":"18508"} +{"$label":"ACTS_IN","name":"Peter Aufschnaiter","type":"Role","_key":"11562","_from":"6677","_to":"9086"} +{"$label":"ACTS_IN","name":"Keith Jennings","type":"Role","_key":"9494","_from":"6677","_to":"7661"} +{"$label":"ACTS_IN","name":"Gregory Goyle","type":"Role","_key":"8093","_from":"6678","_to":"6682"} +{"$label":"ACTS_IN","name":"Grace Poole","type":"Role","_key":"104840","_from":"6679","_to":"61687"} +{"$label":"ACTS_IN","name":"Agatha Trunchbull","type":"Role","_key":"66039","_from":"6679","_to":"40870"} +{"$label":"ACTS_IN","name":"Tommy Cotter","type":"Role","_key":"52784","_from":"6679","_to":"34241"} +{"$label":"ACTS_IN","name":"Fred Weasley","type":"Role","_key":"89530","_from":"6680","_to":"52992"} +{"$label":"DIRECTED","_key":"118706","_from":"6681","_to":"69800"} +{"$label":"DIRECTED","_key":"55742","_from":"6681","_to":"35462"} +{"$label":"DIRECTED","_key":"53702","_from":"6681","_to":"34631"} +{"$label":"DIRECTED","_key":"19846","_from":"6681","_to":"14635"} +{"$label":"DIRECTED","_key":"12915","_from":"6681","_to":"10077"} +{"$label":"DIRECTED","_key":"8100","_from":"6686","_to":"6682"} +{"$label":"ACTS_IN","name":"Fleur Delacour","type":"Role","_key":"8092","_from":"6685","_to":"6682"} +{"$label":"ACTS_IN","name":"Viktor Krum","type":"Role","_key":"8091","_from":"6684","_to":"6682"} +{"$label":"ACTS_IN","name":"Cedric Diggory","type":"Role","_key":"8090","_from":"6683","_to":"6682"} +{"$label":"ACTS_IN","name":"Art","type":"Role","_key":"120942","_from":"6683","_to":"71032"} +{"$label":"ACTS_IN","name":"Edward Cullen","type":"Role","_key":"115485","_from":"6683","_to":"67997"} +{"$label":"ACTS_IN","name":"Giselher","type":"Role","_key":"68422","_from":"6683","_to":"41974"} +{"$label":"ACTS_IN","name":"Edward Cullen","type":"Role","_key":"51736","_from":"6683","_to":"33761"} +{"$label":"ACTS_IN","name":"Miroslav","type":"Role","_key":"14961","_from":"6684","_to":"11494"} +{"$label":"ACTS_IN","name":"Fleur Delacour","type":"Role","_key":"89513","_from":"6685","_to":"52992"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"49012","_from":"6685","_to":"32124"} +{"$label":"ACTS_IN","name":"Natascha Rostova","type":"Role","_key":"38427","_from":"6685","_to":"25954"} +{"$label":"DIRECTED","_key":"90522","_from":"6686","_to":"53474"} +{"$label":"DIRECTED","_key":"72174","_from":"6686","_to":"43624"} +{"$label":"DIRECTED","_key":"54568","_from":"6686","_to":"34967"} +{"$label":"DIRECTED","_key":"53372","_from":"6686","_to":"34492"} +{"$label":"DIRECTED","_key":"44501","_from":"6686","_to":"29642"} +{"$label":"DIRECTED","_key":"30054","_from":"6686","_to":"21198"} +{"$label":"DIRECTED","_key":"8605","_from":"6686","_to":"6995"} +{"$label":"ACTS_IN","name":"Cornelius Fudge","type":"Role","_key":"8118","_from":"6691","_to":"6687"} +{"$label":"ACTS_IN","name":"Dolores Umbridge","type":"Role","_key":"8116","_from":"6690","_to":"6687"} +{"$label":"ACTS_IN","name":"Lucius Malfoy","type":"Role","_key":"8113","_from":"6689","_to":"6687"} +{"$label":"DIRECTED","_key":"8101","_from":"6688","_to":"6687"} +{"$label":"DIRECTED","_key":"89548","_from":"6688","_to":"52997"} +{"$label":"DIRECTED","_key":"89539","_from":"6688","_to":"52992"} +{"$label":"DIRECTED","_key":"9005","_from":"6688","_to":"7294"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106692","_from":"6689","_to":"62874"} +{"$label":"ACTS_IN","name":"Mr. Parker","type":"Role","_key":"97490","_from":"6689","_to":"57409"} +{"$label":"ACTS_IN","name":"Lucius Malfoy","type":"Role","_key":"89514","_from":"6689","_to":"52992"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"89342","_from":"6689","_to":"52881"} +{"$label":"ACTS_IN","name":"Clark Devlin","type":"Role","_key":"65672","_from":"6689","_to":"40682"} +{"$label":"ACTS_IN","name":"Mr. Darling","type":"Role","_key":"64446","_from":"6689","_to":"40159"} +{"$label":"ACTS_IN","name":"Colonel Mekum","type":"Role","_key":"53775","_from":"6689","_to":"34657"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"51923","_from":"6689","_to":"33869"} +{"$label":"ACTS_IN","name":"Lord Felton","type":"Role","_key":"51012","_from":"6689","_to":"33290"} +{"$label":"ACTS_IN","name":"D.J.","type":"Role","_key":"49557","_from":"6689","_to":"32447"} +{"$label":"ACTS_IN","name":"Col. William Tavington","type":"Role","_key":"17607","_from":"6689","_to":"13147"} +{"$label":"ACTS_IN","name":"Chaz","type":"Role","_key":"16614","_from":"6689","_to":"12548"} +{"$label":"ACTS_IN","name":"Capt. Mike Steele","type":"Role","_key":"10138","_from":"6689","_to":"8112"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"116166","_from":"6690","_to":"68402"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"114703","_from":"6690","_to":"67565"} +{"$label":"ACTS_IN","name":"Mrs. Sucksby","type":"Role","_key":"105112","_from":"6690","_to":"61861"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"104432","_from":"6690","_to":"61430"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"102483","_from":"6690","_to":"60299"} +{"$label":"ACTS_IN","name":"Dolores Umbridge","type":"Role","_key":"89527","_from":"6690","_to":"52992"} +{"$label":"ACTS_IN","name":"Mary Charleston","type":"Role","_key":"72022","_from":"6690","_to":"43549"} +{"$label":"ACTS_IN","name":"Vera Drake","type":"Role","_key":"67926","_from":"6690","_to":"41735"} +{"$label":"ACTS_IN","name":"Ambassador Cochran","type":"Role","_key":"57969","_from":"6690","_to":"36679"} +{"$label":"ACTS_IN","name":"Bunty","type":"Role","_key":"46665","_from":"6690","_to":"30817"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"16760","_from":"6690","_to":"12639"} +{"$label":"ACTS_IN","name":"Margaret Campbell","type":"Role","_key":"14614","_from":"6690","_to":"11256"} +{"$label":"ACTS_IN","name":"Dick Carlton","type":"Role","_key":"95311","_from":"6691","_to":"56070"} +{"$label":"ACTS_IN","name":"Prof. Krempe","type":"Role","_key":"25176","_from":"6691","_to":"18176"} +{"$label":"ACTS_IN","name":"Training Captain","type":"Role","_key":"8147","_from":"6704","_to":"6692"} +{"$label":"ACTS_IN","name":"Rafe's Father","type":"Role","_key":"8146","_from":"6703","_to":"6692"} +{"$label":"ACTS_IN","name":"Young Danny","type":"Role","_key":"8144","_from":"6702","_to":"6692"} +{"$label":"ACTS_IN","name":"Young Rafe","type":"Role","_key":"8143","_from":"6701","_to":"6692"} +{"$label":"ACTS_IN","name":"Adm. Isoroku Yamamoto","type":"Role","_key":"8142","_from":"6700","_to":"6692"} +{"$label":"ACTS_IN","name":"Nishikura","type":"Role","_key":"8141","_from":"6699","_to":"6692"} +{"$label":"ACTS_IN","name":"Adm. Husband E. Kimmel","type":"Role","_key":"8140","_from":"6698","_to":"6692"} +{"$label":"ACTS_IN","name":"Nurse Martha","type":"Role","_key":"8137","_from":"6697","_to":"6692"} +{"$label":"ACTS_IN","name":"Nurse Barbara","type":"Role","_key":"8135","_from":"6696","_to":"6692"} +{"$label":"ACTS_IN","name":"Lt. Anthony Fusco","type":"Role","_key":"8132","_from":"6695","_to":"6692"} +{"$label":"ACTS_IN","name":"Lt. Billy Thompson","type":"Role","_key":"8131","_from":"6694","_to":"6692"} +{"$label":"ACTS_IN","name":"President Franklin Delano Roosevelt","type":"Role","_key":"8128","_from":"6693","_to":"6692"} +{"$label":"ACTS_IN","name":"Inspector Ned Kenny","type":"Role","_key":"110358","_from":"6693","_to":"65211"} +{"$label":"ACTS_IN","name":"Jacob Samuelson","type":"Role","_key":"102258","_from":"6693","_to":"60174"} +{"$label":"ACTS_IN","name":"Coach Bud Kilmer","type":"Role","_key":"101500","_from":"6693","_to":"59741"} +{"$label":"ACTS_IN","name":"Senator Thomas Jordan (D-CT)","type":"Role","_key":"100442","_from":"6693","_to":"59224"} +{"$label":"ACTS_IN","name":"Francis Tierney, Sr.","type":"Role","_key":"93011","_from":"6693","_to":"54836"} +{"$label":"ACTS_IN","name":"Oscar 'Manny' Manheim","type":"Role","_key":"72591","_from":"6693","_to":"43768"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"64941","_from":"6693","_to":"40375"} +{"$label":"ACTS_IN","name":"Adolph Rupp","type":"Role","_key":"58047","_from":"6693","_to":"36729"} +{"$label":"ACTS_IN","name":"Reynolds","type":"Role","_key":"56929","_from":"6693","_to":"36140"} +{"$label":"ACTS_IN","name":"Larry Zoolander","type":"Role","_key":"53612","_from":"6693","_to":"34590"} +{"$label":"ACTS_IN","name":"Paul Sarone","type":"Role","_key":"53346","_from":"6693","_to":"34483"} +{"$label":"ACTS_IN","name":"Howard Cosell","type":"Role","_key":"50055","_from":"6693","_to":"32759"} +{"$label":"ACTS_IN","name":"Marion Sevillo","type":"Role","_key":"49041","_from":"6693","_to":"32134"} +{"$label":"ACTS_IN","name":"Patrick Gates","type":"Role","_key":"44490","_from":"6693","_to":"29641"} +{"$label":"ACTS_IN","name":"Joe Buck","type":"Role","_key":"26099","_from":"6693","_to":"18751"} +{"$label":"ACTS_IN","name":"Patrick Henry Gates","type":"Role","_key":"17910","_from":"6693","_to":"13324"} +{"$label":"ACTS_IN","name":"Lord Richard Croft","type":"Role","_key":"17296","_from":"6693","_to":"12947"} +{"$label":"ACTS_IN","name":"John Keller","type":"Role","_key":"16057","_from":"6693","_to":"12202"} +{"$label":"ACTS_IN","name":"Jim Phelps","type":"Role","_key":"11371","_from":"6693","_to":"8963"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"11324","_from":"6693","_to":"8936"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"102203","_from":"6694","_to":"60140"} +{"$label":"ACTS_IN","name":"Roy Lee","type":"Role","_key":"94633","_from":"6694","_to":"55757"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"55510","_from":"6694","_to":"35364"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"23849","_from":"6694","_to":"17287"} +{"$label":"ACTS_IN","name":"Tommy Miller","type":"Role","_key":"16945","_from":"6694","_to":"12723"} +{"$label":"ACTS_IN","name":"Young Anton Freeman","type":"Role","_key":"9205","_from":"6694","_to":"7439"} +{"$label":"ACTS_IN","name":"Charlie Ross","type":"Role","_key":"110397","_from":"6698","_to":"65230"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Linoge","type":"Role","_key":"105736","_from":"6698","_to":"62248"} +{"$label":"ACTS_IN","name":"Auctioneer (Montr\u00e9al)","type":"Role","_key":"99439","_from":"6698","_to":"58590"} +{"$label":"ACTS_IN","name":"Henry Taylor","type":"Role","_key":"97988","_from":"6698","_to":"57709"} +{"$label":"ACTS_IN","name":"General Sherman","type":"Role","_key":"94653","_from":"6698","_to":"55765"} +{"$label":"ACTS_IN","name":"Detective Frank McDuff","type":"Role","_key":"67742","_from":"6698","_to":"41651"} +{"$label":"ACTS_IN","name":"Hank Weiss","type":"Role","_key":"62301","_from":"6698","_to":"39249"} +{"$label":"ACTS_IN","name":"Karl Gunderson","type":"Role","_key":"50285","_from":"6698","_to":"32852"} +{"$label":"ACTS_IN","name":"Lord Marshal","type":"Role","_key":"23603","_from":"6698","_to":"17115"} +{"$label":"ACTS_IN","name":"Pshenishny","type":"Role","_key":"18538","_from":"6698","_to":"13721"} +{"$label":"ACTS_IN","name":"Harrison","type":"Role","_key":"13934","_from":"6698","_to":"10805"} +{"$label":"ACTS_IN","name":"Jordan","type":"Role","_key":"9381","_from":"6698","_to":"7568"} +{"$label":"ACTS_IN","name":"Dr. Malcolm Walsh","type":"Role","_key":"8860","_from":"6698","_to":"7192"} +{"$label":"ACTS_IN","name":"Mr. Uwatsum","type":"Role","_key":"96213","_from":"6699","_to":"56552"} +{"$label":"ACTS_IN","name":"Kamasuka","type":"Role","_key":"43267","_from":"6699","_to":"28899"} +{"$label":"ACTS_IN","name":"Herbert","type":"Role","_key":"119449","_from":"6700","_to":"70174"} +{"$label":"ACTS_IN","name":"The Wizard \/ Narrator","type":"Role","_key":"53529","_from":"6700","_to":"34556"} +{"$label":"ACTS_IN","name":"Nakano","type":"Role","_key":"47783","_from":"6700","_to":"31463"} +{"$label":"ACTS_IN","name":"Yoshida-san","type":"Role","_key":"45634","_from":"6700","_to":"30210"} +{"$label":"ACTS_IN","name":"Po-Han","type":"Role","_key":"40458","_from":"6700","_to":"27260"} +{"$label":"ACTS_IN","name":"Kanemitsu","type":"Role","_key":"37801","_from":"6700","_to":"25628"} +{"$label":"ACTS_IN","name":"Toshio Watanabe","type":"Role","_key":"24759","_from":"6700","_to":"17908"} +{"$label":"ACTS_IN","name":"Master Splinter (voice)","type":"Role","_key":"12436","_from":"6700","_to":"9740"} +{"$label":"ACTS_IN","name":"Kungo Tsarong","type":"Role","_key":"11564","_from":"6700","_to":"9086"} +{"$label":"ACTS_IN","name":"Jeff Magruder","type":"Role","_key":"89814","_from":"6701","_to":"53150"} +{"$label":"ACTS_IN","name":"Billy Lutz","type":"Role","_key":"60144","_from":"6701","_to":"37948"} +{"$label":"ACTS_IN","name":"Young George","type":"Role","_key":"29715","_from":"6701","_to":"21034"} +{"$label":"ACTS_IN","name":"MVA Supervisor","type":"Role","_key":"65857","_from":"6703","_to":"40750"} +{"$label":"ACTS_IN","name":"Mitch Kowalski","type":"Role","_key":"93515","_from":"6704","_to":"55058"} +{"$label":"ACTS_IN","name":"Veeko","type":"Role","_key":"68574","_from":"6704","_to":"42040"} +{"$label":"ACTS_IN","name":"Ansager","type":"Role","_key":"8169","_from":"6725","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8168","_from":"6724","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8167","_from":"6723","_to":"6705"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"8166","_from":"6706","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8165","_from":"6722","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8164","_from":"6721","_to":"6705"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"8163","_from":"6720","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8162","_from":"6719","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8161","_from":"6718","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8160","_from":"6717","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8159","_from":"6716","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8158","_from":"6715","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8157","_from":"6714","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8156","_from":"6713","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8155","_from":"6712","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8154","_from":"6711","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8153","_from":"6710","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8152","_from":"6709","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8151","_from":"6708","_to":"6705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8150","_from":"6707","_to":"6705"} +{"$label":"DIRECTED","_key":"8149","_from":"6706","_to":"6705"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"47642","_from":"6706","_to":"31393"} +{"$label":"DIRECTED","_key":"47640","_from":"6706","_to":"31393"} +{"$label":"DIRECTED","_key":"8247","_from":"6706","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8248","_from":"6708","_to":"6767"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"88910","_from":"6712","_to":"52666"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"9464","_from":"6712","_to":"7637"} +{"$label":"ACTS_IN","name":"Leonard Eels","type":"Role","_key":"8180","_from":"6736","_to":"6726"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"8179","_from":"6735","_to":"6726"} +{"$label":"ACTS_IN","name":"Joe Stephanos","type":"Role","_key":"8178","_from":"6734","_to":"6726"} +{"$label":"ACTS_IN","name":"Ann Miller","type":"Role","_key":"8177","_from":"6733","_to":"6726"} +{"$label":"ACTS_IN","name":"Jack Fisher","type":"Role","_key":"8176","_from":"6732","_to":"6726"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"8175","_from":"6731","_to":"6726"} +{"$label":"ACTS_IN","name":"Meta Carson","type":"Role","_key":"8174","_from":"6730","_to":"6726"} +{"$label":"ACTS_IN","name":"Kathie Moffat","type":"Role","_key":"8172","_from":"6729","_to":"6726"} +{"$label":"ACTS_IN","name":"Jeff Bailey","type":"Role","_key":"8171","_from":"6728","_to":"6726"} +{"$label":"DIRECTED","_key":"8170","_from":"6727","_to":"6726"} +{"$label":"ACTS_IN","name":"Lt. Duke Halliday","type":"Role","_key":"121735","_from":"6728","_to":"71516"} +{"$label":"ACTS_IN","name":"Lucas Doolin","type":"Role","_key":"119857","_from":"6728","_to":"70384"} +{"$label":"ACTS_IN","name":"Capt. Murrell","type":"Role","_key":"106214","_from":"6728","_to":"62557"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"71014","_from":"6728","_to":"43129"} +{"$label":"ACTS_IN","name":"Vice Adm. William F. 'Bull' Halsey Jr.","type":"Role","_key":"69768","_from":"6728","_to":"42583"} +{"$label":"ACTS_IN","name":"Max Cady","type":"Role","_key":"69279","_from":"6728","_to":"42356"} +{"$label":"ACTS_IN","name":"Brig. Gen. Norman Cota","type":"Role","_key":"52896","_from":"6728","_to":"34285"} +{"$label":"ACTS_IN","name":"Sheriff J.P. Harrah","type":"Role","_key":"44546","_from":"6728","_to":"29659"} +{"$label":"ACTS_IN","name":"Martin Brady","type":"Role","_key":"44288","_from":"6728","_to":"29517"} +{"$label":"ACTS_IN","name":"Reverend Jonathan Rudd","type":"Role","_key":"35431","_from":"6728","_to":"24107"} +{"$label":"ACTS_IN","name":"Harry Powell","type":"Role","_key":"26052","_from":"6728","_to":"18722"} +{"$label":"ACTS_IN","name":"Frank Jessup","type":"Role","_key":"16800","_from":"6728","_to":"12660"} +{"$label":"ACTS_IN","name":"Matt Calder","type":"Role","_key":"16783","_from":"6728","_to":"12653"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15845","_from":"6728","_to":"12058"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15706","_from":"6728","_to":"11975"} +{"$label":"ACTS_IN","name":"Lieutenant Elgart","type":"Role","_key":"14170","_from":"6728","_to":"10963"} +{"$label":"ACTS_IN","name":"John Dickinson","type":"Role","_key":"10969","_from":"6728","_to":"8689"} +{"$label":"ACTS_IN","name":"Joan 'Chiquita' Graham","type":"Role","_key":"121736","_from":"6729","_to":"71516"} +{"$label":"ACTS_IN","name":"Mary Carmichael","type":"Role","_key":"29883","_from":"6730","_to":"21135"} +{"$label":"ACTS_IN","name":"Nat Sperling","type":"Role","_key":"121649","_from":"6731","_to":"71463"} +{"$label":"ACTS_IN","name":"Radio Man","type":"Role","_key":"108590","_from":"6731","_to":"64167"} +{"$label":"ACTS_IN","name":"Sir Galahad","type":"Role","_key":"42750","_from":"6731","_to":"28608"} +{"$label":"ACTS_IN","name":"Joe 'Jinx' Raynor","type":"Role","_key":"115603","_from":"6732","_to":"68053"} +{"$label":"ACTS_IN","name":"Tucker Garvey","type":"Role","_key":"115426","_from":"6732","_to":"67964"} +{"$label":"ACTS_IN","name":"Chief Budge","type":"Role","_key":"61458","_from":"6732","_to":"38765"} +{"$label":"ACTS_IN","name":"Jocko","type":"Role","_key":"26449","_from":"6732","_to":"19001"} +{"$label":"ACTS_IN","name":"Ann Taylor","type":"Role","_key":"119060","_from":"6733","_to":"69982"} +{"$label":"ACTS_IN","name":"Private T. Crowe","type":"Role","_key":"8196","_from":"6745","_to":"6737"} +{"$label":"ACTS_IN","name":"Private R. Frost","type":"Role","_key":"8195","_from":"6744","_to":"6737"} +{"$label":"ACTS_IN","name":"Corporal C. Dietrich","type":"Role","_key":"8194","_from":"6743","_to":"6737"} +{"$label":"ACTS_IN","name":"Private D. Spunkmeyer","type":"Role","_key":"8193","_from":"6742","_to":"6737"} +{"$label":"ACTS_IN","name":"Corporal C. Ferro","type":"Role","_key":"8192","_from":"6741","_to":"6737"} +{"$label":"ACTS_IN","name":"Sergeant A. Apone","type":"Role","_key":"8190","_from":"6740","_to":"6737"} +{"$label":"ACTS_IN","name":"Lieutenant S. Gorman","type":"Role","_key":"8188","_from":"6739","_to":"6737"} +{"$label":"ACTS_IN","name":"Rebecca \"Newt\" Jorden","type":"Role","_key":"8183","_from":"6738","_to":"6737"} +{"$label":"ACTS_IN","name":"Agent Fletcher","type":"Role","_key":"98934","_from":"6739","_to":"58290"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"98735","_from":"6739","_to":"58186"} +{"$label":"ACTS_IN","name":"John Standish","type":"Role","_key":"63866","_from":"6739","_to":"39907"} +{"$label":"ACTS_IN","name":"Kyle MacRae","type":"Role","_key":"52365","_from":"6739","_to":"34079"} +{"$label":"ACTS_IN","name":"Johnathan Tensor","type":"Role","_key":"43567","_from":"6739","_to":"29099"} +{"$label":"ACTS_IN","name":"Counselor Silverstein","type":"Role","_key":"108036","_from":"6742","_to":"63815"} +{"$label":"ACTS_IN","name":"Jeffrey Altman","type":"Role","_key":"62764","_from":"6742","_to":"39453"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"62177","_from":"6742","_to":"39152"} +{"$label":"ACTS_IN","name":"Hogan","type":"Role","_key":"20359","_from":"6742","_to":"14911"} +{"$label":"ACTS_IN","name":"Man No. 4","type":"Role","_key":"8217","_from":"6752","_to":"6746"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"8215","_from":"6751","_to":"6746"} +{"$label":"ACTS_IN","name":"Raquel","type":"Role","_key":"8214","_from":"6750","_to":"6746"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"8211","_from":"6749","_to":"6746"} +{"$label":"ACTS_IN","name":"Maynard","type":"Role","_key":"8209","_from":"6748","_to":"6746"} +{"$label":"ACTS_IN","name":"Marsellus Wallace","type":"Role","_key":"8202","_from":"6747","_to":"6746"} +{"$label":"ACTS_IN","name":"Prophet","type":"Role","_key":"121606","_from":"6747","_to":"71444"} +{"$label":"ACTS_IN","name":"Jibby Newsome","type":"Role","_key":"121447","_from":"6747","_to":"71349"} +{"$label":"ACTS_IN","name":"Sonny Liston","type":"Role","_key":"116690","_from":"6747","_to":"68694"} +{"$label":"ACTS_IN","name":"PASTOR ARMSTRONG CANE","type":"Role","_key":"110343","_from":"6747","_to":"65202"} +{"$label":"ACTS_IN","name":"Agent Dave Grant","type":"Role","_key":"108748","_from":"6747","_to":"64285"} +{"$label":"ACTS_IN","name":"Melvin 'Mel'","type":"Role","_key":"107637","_from":"6747","_to":"63534"} +{"$label":"ACTS_IN","name":"George 'Iceman' Chambers","type":"Role","_key":"103064","_from":"6747","_to":"60628"} +{"$label":"ACTS_IN","name":"Spats","type":"Role","_key":"96874","_from":"6747","_to":"56966"} +{"$label":"ACTS_IN","name":"James 'Animal' Allen","type":"Role","_key":"93444","_from":"6747","_to":"55021"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"92803","_from":"6747","_to":"54745"} +{"$label":"ACTS_IN","name":"Duane Stevenson","type":"Role","_key":"70706","_from":"6747","_to":"43007"} +{"$label":"ACTS_IN","name":"Animal","type":"Role","_key":"61993","_from":"6747","_to":"39027"} +{"$label":"ACTS_IN","name":"Lt. Reilly","type":"Role","_key":"61214","_from":"6747","_to":"38667"} +{"$label":"ACTS_IN","name":"Shad","type":"Role","_key":"57558","_from":"6747","_to":"36462"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"50310","_from":"6747","_to":"32867"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"41476","_from":"6747","_to":"27872"} +{"$label":"ACTS_IN","name":"Arthur Holland","type":"Role","_key":"34719","_from":"6747","_to":"23744"} +{"$label":"ACTS_IN","name":"Fred G. Duncan","type":"Role","_key":"27947","_from":"6747","_to":"20034"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"20098","_from":"6747","_to":"14770"} +{"$label":"ACTS_IN","name":"Sgt. Ryan Whitaker","type":"Role","_key":"18431","_from":"6747","_to":"13659"} +{"$label":"ACTS_IN","name":"Aaron Thibadeaux","type":"Role","_key":"15916","_from":"6747","_to":"12114"} +{"$label":"ACTS_IN","name":"Nathan Jones","type":"Role","_key":"15076","_from":"6747","_to":"11583"} +{"$label":"ACTS_IN","name":"Buddy Bragg","type":"Role","_key":"12896","_from":"6747","_to":"10063"} +{"$label":"ACTS_IN","name":"Luther Stickell","type":"Role","_key":"11404","_from":"6747","_to":"8981"} +{"$label":"ACTS_IN","name":"Luther Stickell","type":"Role","_key":"11389","_from":"6747","_to":"8971"} +{"$label":"ACTS_IN","name":"Luther Stickell","type":"Role","_key":"11375","_from":"6747","_to":"8963"} +{"$label":"ACTS_IN","name":"Kenneth","type":"Role","_key":"10992","_from":"6747","_to":"8707"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"87993","_from":"6748","_to":"52245"} +{"$label":"ACTS_IN","name":"Boss Man","type":"Role","_key":"60239","_from":"6748","_to":"37994"} +{"$label":"ACTS_IN","name":"Dr. Bankhead","type":"Role","_key":"15013","_from":"6748","_to":"11531"} +{"$label":"ACTS_IN","name":"Jim Dodge","type":"Role","_key":"108418","_from":"6749","_to":"64098"} +{"$label":"ACTS_IN","name":"Brent Sykes","type":"Role","_key":"106929","_from":"6749","_to":"63044"} +{"$label":"ACTS_IN","name":"Wade Chandling","type":"Role","_key":"98595","_from":"6749","_to":"58103"} +{"$label":"ACTS_IN","name":"Medic Chamberlain","type":"Role","_key":"97569","_from":"6749","_to":"57454"} +{"$label":"ACTS_IN","name":"Robby Krieger","type":"Role","_key":"63926","_from":"6749","_to":"39931"} +{"$label":"ACTS_IN","name":"Arvid","type":"Role","_key":"63142","_from":"6749","_to":"39600"} +{"$label":"ACTS_IN","name":"Steve Bushak","type":"Role","_key":"61381","_from":"6749","_to":"38726"} +{"$label":"ACTS_IN","name":"Giles Prentice","type":"Role","_key":"52591","_from":"6749","_to":"34175"} +{"$label":"ACTS_IN","name":"Timmy","type":"Role","_key":"22144","_from":"6749","_to":"16146"} +{"$label":"ACTS_IN","name":"Archie Graham","type":"Role","_key":"20412","_from":"6749","_to":"14937"} +{"$label":"ACTS_IN","name":"Chuck Sereika","type":"Role","_key":"16006","_from":"6749","_to":"12161"} +{"$label":"ACTS_IN","name":"Jenny Gibbs","type":"Role","_key":"102832","_from":"6750","_to":"60486"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"55040","_from":"6750","_to":"35160"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"121198","_from":"6752","_to":"71193"} +{"$label":"ACTS_IN","name":"Georgette","type":"Role","_key":"91464","_from":"6752","_to":"53932"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"64754","_from":"6752","_to":"40305"} +{"$label":"ACTS_IN","name":"McHacker","type":"Role","_key":"37764","_from":"6752","_to":"25613"} +{"$label":"ACTS_IN","name":"Prof. Dr. Metz","type":"Role","_key":"8229","_from":"6760","_to":"6753"} +{"$label":"ACTS_IN","name":"Felix Leiter","type":"Role","_key":"8228","_from":"6759","_to":"6753"} +{"$label":"ACTS_IN","name":"Mr. Wint","type":"Role","_key":"8227","_from":"6758","_to":"6753"} +{"$label":"ACTS_IN","name":"Mr. Kidd","type":"Role","_key":"8226","_from":"6757","_to":"6753"} +{"$label":"ACTS_IN","name":"Willard Whyte","type":"Role","_key":"8224","_from":"6756","_to":"6753"} +{"$label":"ACTS_IN","name":"Plenty O'Toole","type":"Role","_key":"8223","_from":"6755","_to":"6753"} +{"$label":"ACTS_IN","name":"Tiffany Case","type":"Role","_key":"8221","_from":"6754","_to":"6753"} +{"$label":"ACTS_IN","name":"Jennifer Holmes","type":"Role","_key":"24678","_from":"6754","_to":"17851"} +{"$label":"ACTS_IN","name":"Debbie Edwards (younger)","type":"Role","_key":"26087","_from":"6755","_to":"18734"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26458","_from":"6758","_to":"19008"} +{"$label":"ACTS_IN","name":"Duffy","type":"Role","_key":"9808","_from":"6758","_to":"7856"} +{"$label":"ACTS_IN","name":"Lazar Straulle","type":"Role","_key":"39040","_from":"6760","_to":"26385"} +{"$label":"ACTS_IN","name":"Lieutenant Hip","type":"Role","_key":"8242","_from":"6766","_to":"6761"} +{"$label":"ACTS_IN","name":"Hai Fat","type":"Role","_key":"8241","_from":"6765","_to":"6761"} +{"$label":"ACTS_IN","name":"Nick Nack","type":"Role","_key":"8239","_from":"6764","_to":"6761"} +{"$label":"ACTS_IN","name":"Andrea Anders","type":"Role","_key":"8238","_from":"6763","_to":"6761"} +{"$label":"ACTS_IN","name":"Mary Goodnight","type":"Role","_key":"8237","_from":"6762","_to":"6761"} +{"$label":"ACTS_IN","name":"Gina Vanucci aka \"Gina Romantica\"","type":"Role","_key":"118863","_from":"6762","_to":"69863"} +{"$label":"ACTS_IN","name":"Willow","type":"Role","_key":"108608","_from":"6762","_to":"64180"} +{"$label":"ACTS_IN","name":"Countess Trivulzi","type":"Role","_key":"31449","_from":"6762","_to":"21964"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"13465","_from":"6762","_to":"10480"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"70123","_from":"6763","_to":"42746"} +{"$label":"ACTS_IN","name":"Octopussy","type":"Role","_key":"8433","_from":"6763","_to":"6889"} +{"$label":"ACTS_IN","name":"Smiley","type":"Role","_key":"36618","_from":"6764","_to":"24811"} +{"$label":"ACTS_IN","name":"Colonel Yin","type":"Role","_key":"91367","_from":"6766","_to":"53887"} +{"$label":"ACTS_IN","name":"Fa Zhou","type":"Role","_key":"88985","_from":"6766","_to":"52708"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8264","_from":"6783","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8263","_from":"6782","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8262","_from":"6781","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8261","_from":"6780","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8260","_from":"6779","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8259","_from":"6778","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8258","_from":"6777","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8257","_from":"6776","_to":"6767"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"8256","_from":"6775","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8255","_from":"6774","_to":"6767"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"8254","_from":"6773","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8253","_from":"6772","_to":"6767"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"8252","_from":"6771","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8251","_from":"6770","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8250","_from":"6769","_to":"6767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8249","_from":"6768","_to":"6767"} +{"$label":"ACTS_IN","name":"Palmer Joss","type":"Role","_key":"8268","_from":"6785","_to":"6784"} +{"$label":"ACTS_IN","name":"Vilmer Slaughter","type":"Role","_key":"110022","_from":"6785","_to":"65010"} +{"$label":"ACTS_IN","name":"Steve Addington","type":"Role","_key":"97084","_from":"6785","_to":"57110"} +{"$label":"ACTS_IN","name":"Connor Mead","type":"Role","_key":"90250","_from":"6785","_to":"53362"} +{"$label":"ACTS_IN","name":"Adam Meiks","type":"Role","_key":"88311","_from":"6785","_to":"52375"} +{"$label":"ACTS_IN","name":"Ed 'Eddie' Pekurny","type":"Role","_key":"69475","_from":"6785","_to":"42449"} +{"$label":"ACTS_IN","name":"Jack Lengyel","type":"Role","_key":"68305","_from":"6785","_to":"41931"} +{"$label":"ACTS_IN","name":"Benjamin Barry","type":"Role","_key":"58067","_from":"6785","_to":"36740"} +{"$label":"ACTS_IN","name":"Brandon Lang","type":"Role","_key":"57885","_from":"6785","_to":"36625"} +{"$label":"ACTS_IN","name":"David Wooderson","type":"Role","_key":"54770","_from":"6785","_to":"35048"} +{"$label":"ACTS_IN","name":"Abe Lincoln","type":"Role","_key":"53486","_from":"6785","_to":"34545"} +{"$label":"ACTS_IN","name":"Ben 'Finn' Finnegan","type":"Role","_key":"50420","_from":"6785","_to":"32943"} +{"$label":"ACTS_IN","name":"Steven Bedalia","type":"Role","_key":"49037","_from":"6785","_to":"32132"} +{"$label":"ACTS_IN","name":"Dirk Pitt","type":"Role","_key":"46624","_from":"6785","_to":"30794"} +{"$label":"ACTS_IN","name":"Tripp","type":"Role","_key":"44997","_from":"6785","_to":"29901"} +{"$label":"ACTS_IN","name":"Denton Van Zan","type":"Role","_key":"42779","_from":"6785","_to":"28624"} +{"$label":"ACTS_IN","name":"Lt. Andrew Tyler","type":"Role","_key":"27678","_from":"6785","_to":"19835"} +{"$label":"ACTS_IN","name":"Steve Edison","type":"Role","_key":"17529","_from":"6785","_to":"13103"} +{"$label":"ACTS_IN","name":"Jake Tyler Brigance","type":"Role","_key":"14598","_from":"6785","_to":"11252"} +{"$label":"ACTS_IN","name":"Earl Delacroix","type":"Role","_key":"8278","_from":"6788","_to":"6786"} +{"$label":"ACTS_IN","name":"Hilton Barber","type":"Role","_key":"8277","_from":"6787","_to":"6786"} +{"$label":"ACTS_IN","name":"Inspector Fenwick","type":"Role","_key":"113729","_from":"6787","_to":"67020"} +{"$label":"ACTS_IN","name":"Ernie Merriman","type":"Role","_key":"90696","_from":"6787","_to":"53542"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"70410","_from":"6787","_to":"42875"} +{"$label":"ACTS_IN","name":"Daniel Christie","type":"Role","_key":"68845","_from":"6787","_to":"42176"} +{"$label":"ACTS_IN","name":"Will Darnell","type":"Role","_key":"50774","_from":"6787","_to":"33134"} +{"$label":"ACTS_IN","name":"E. Garner Goodman","type":"Role","_key":"42988","_from":"6787","_to":"28718"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"22238","_from":"6787","_to":"16189"} +{"$label":"ACTS_IN","name":"Grandpa Fred","type":"Role","_key":"11060","_from":"6787","_to":"8747"} +{"$label":"ACTS_IN","name":"Jonathan Lundy","type":"Role","_key":"9283","_from":"6787","_to":"7496"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"72824","_from":"6788","_to":"43870"} +{"$label":"ACTS_IN","name":"Louis Bukowski","type":"Role","_key":"67320","_from":"6788","_to":"41493"} +{"$label":"ACTS_IN","name":"Chester Hoenicker","type":"Role","_key":"54791","_from":"6788","_to":"35058"} +{"$label":"ACTS_IN","name":"Vizepr\u00e4sident Daniel Bender","type":"Role","_key":"52507","_from":"6788","_to":"34148"} +{"$label":"ACTS_IN","name":"Pa Cox","type":"Role","_key":"44097","_from":"6788","_to":"29399"} +{"$label":"ACTS_IN","name":"Figura","type":"Role","_key":"25875","_from":"6788","_to":"18633"} +{"$label":"ACTS_IN","name":"Stephen Figura","type":"Role","_key":"25812","_from":"6788","_to":"18581"} +{"$label":"ACTS_IN","name":"Mr. Kovic","type":"Role","_key":"22133","_from":"6788","_to":"16146"} +{"$label":"ACTS_IN","name":"Bullhorn Bob","type":"Role","_key":"13328","_from":"6788","_to":"10364"} +{"$label":"ACTS_IN","name":"Kurt Hemphill","type":"Role","_key":"10274","_from":"6788","_to":"8178"} +{"$label":"ACTS_IN","name":"Lucy Redfield","type":"Role","_key":"8296","_from":"6796","_to":"6789"} +{"$label":"ACTS_IN","name":"Lawyer Peterson","type":"Role","_key":"8295","_from":"6795","_to":"6789"} +{"$label":"ACTS_IN","name":"Madge","type":"Role","_key":"8294","_from":"6794","_to":"6789"} +{"$label":"ACTS_IN","name":"Michael as a young boy","type":"Role","_key":"8292","_from":"6793","_to":"6789"} +{"$label":"ACTS_IN","name":"Caroline as a young girl","type":"Role","_key":"8291","_from":"6792","_to":"6789"} +{"$label":"ACTS_IN","name":"Richard Johnson","type":"Role","_key":"8290","_from":"6791","_to":"6789"} +{"$label":"ACTS_IN","name":"Michael Johnson","type":"Role","_key":"8289","_from":"6790","_to":"6789"} +{"$label":"ACTS_IN","name":"Colson","type":"Role","_key":"63824","_from":"6790","_to":"39898"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"43624","_from":"6790","_to":"29130"} +{"$label":"ACTS_IN","name":"Mr. Scott","type":"Role","_key":"16167","_from":"6790","_to":"12272"} +{"$label":"ACTS_IN","name":"Captain Malone","type":"Role","_key":"119988","_from":"6791","_to":"70466"} +{"$label":"ACTS_IN","name":"Deputy Kingsolving","type":"Role","_key":"94993","_from":"6791","_to":"55928"} +{"$label":"ACTS_IN","name":"Sheriff Ira","type":"Role","_key":"69805","_from":"6791","_to":"42601"} +{"$label":"ACTS_IN","name":"Lick Me-Bite Me","type":"Role","_key":"57731","_from":"6794","_to":"36543"} +{"$label":"ACTS_IN","name":"Mrs. Wegman","type":"Role","_key":"52086","_from":"6794","_to":"33954"} +{"$label":"ACTS_IN","name":"Aunt Dorothy","type":"Role","_key":"22210","_from":"6794","_to":"16177"} +{"$label":"ACTS_IN","name":"Poet","type":"Role","_key":"8306","_from":"6807","_to":"6797"} +{"$label":"ACTS_IN","name":"Mitglied der Schauspielertruppe, Pylades","type":"Role","_key":"8305","_from":"6806","_to":"6797"} +{"$label":"ACTS_IN","name":"Orestis","type":"Role","_key":"8304","_from":"6805","_to":"6797"} +{"$label":"ACTS_IN","name":"J\u00fcngere Schwester","type":"Role","_key":"8303","_from":"6804","_to":"6797"} +{"$label":"ACTS_IN","name":"Spitzel","type":"Role","_key":"8302","_from":"6803","_to":"6797"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"8301","_from":"6802","_to":"6797"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"8300","_from":"6801","_to":"6797"} +{"$label":"ACTS_IN","name":"Elektra","type":"Role","_key":"8299","_from":"6800","_to":"6797"} +{"$label":"DIRECTED","_key":"8298","_from":"6799","_to":"6797"} +{"$label":"DIRECTED","_key":"8297","_from":"6798","_to":"6797"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"8312","_from":"6814","_to":"6808"} +{"$label":"ACTS_IN","name":"La m\u00e8re","type":"Role","_key":"8311","_from":"6813","_to":"6808"} +{"$label":"ACTS_IN","name":"L'inspecteur principal","type":"Role","_key":"8310","_from":"6812","_to":"6808"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"8309","_from":"6811","_to":"6808"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"8308","_from":"6810","_to":"6808"} +{"$label":"DIRECTED","_key":"8307","_from":"6809","_to":"6808"} +{"$label":"DIRECTED","_key":"103676","_from":"6809","_to":"60977"} +{"$label":"DIRECTED","_key":"13824","_from":"6809","_to":"10726"} +{"$label":"ACTS_IN","name":"Sheikh Hosein","type":"Role","_key":"8325","_from":"6822","_to":"6815"} +{"$label":"ACTS_IN","name":"Felicca","type":"Role","_key":"8323","_from":"6821","_to":"6815"} +{"$label":"ACTS_IN","name":"Sergei Barsov","type":"Role","_key":"8322","_from":"6820","_to":"6815"} +{"$label":"ACTS_IN","name":"Sir Frederick Gray","type":"Role","_key":"8319","_from":"6819","_to":"6815"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"8317","_from":"6818","_to":"6815"} +{"$label":"ACTS_IN","name":"Karl Stromberg","type":"Role","_key":"8315","_from":"6817","_to":"6815"} +{"$label":"ACTS_IN","name":"Major Anya Amasova","type":"Role","_key":"8314","_from":"6816","_to":"6815"} +{"$label":"ACTS_IN","name":"Maritza Petrovich","type":"Role","_key":"111943","_from":"6816","_to":"66083"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n von Stolberg","type":"Role","_key":"106215","_from":"6817","_to":"62557"} +{"$label":"ACTS_IN","name":"Baron von Richter","type":"Role","_key":"70016","_from":"6817","_to":"42700"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"69545","_from":"6817","_to":"42470"} +{"$label":"ACTS_IN","name":"Gen. Harry Harras","type":"Role","_key":"68965","_from":"6817","_to":"42224"} +{"$label":"ACTS_IN","name":"Maj. Gen. Gunther Blumentritt","type":"Role","_key":"52901","_from":"6817","_to":"34285"} +{"$label":"ACTS_IN","name":"Eric Carradine","type":"Role","_key":"49607","_from":"6817","_to":"32469"} +{"$label":"ACTS_IN","name":"Carl van Kesser","type":"Role","_key":"42925","_from":"6817","_to":"28685"} +{"$label":"ACTS_IN","name":"Kommissar Canisius","type":"Role","_key":"40389","_from":"6817","_to":"27239"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Markus Jolly","type":"Role","_key":"40009","_from":"6817","_to":"27017"} +{"$label":"ACTS_IN","name":"Konrad Johannsen","type":"Role","_key":"39951","_from":"6817","_to":"26992"} +{"$label":"ACTS_IN","name":"Dr. Jan Diffring","type":"Role","_key":"39800","_from":"6817","_to":"26893"} +{"$label":"ACTS_IN","name":"le Baron","type":"Role","_key":"33730","_from":"6817","_to":"23267"} +{"$label":"ACTS_IN","name":"Wilfrid","type":"Role","_key":"30645","_from":"6817","_to":"21518"} +{"$label":"ACTS_IN","name":"der Mann im Rollstuhl","type":"Role","_key":"30416","_from":"6817","_to":"21382"} +{"$label":"ACTS_IN","name":"Legraine","type":"Role","_key":"20717","_from":"6817","_to":"15149"} +{"$label":"ACTS_IN","name":"Hans Collin","type":"Role","_key":"20209","_from":"6817","_to":"14821"} +{"$label":"ACTS_IN","name":"Baron de Choisis","type":"Role","_key":"16107","_from":"6817","_to":"12238"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"118334","_from":"6818","_to":"69559"} +{"$label":"ACTS_IN","name":"Victoria Phibes","type":"Role","_key":"114517","_from":"6818","_to":"67443"} +{"$label":"ACTS_IN","name":"Margiana","type":"Role","_key":"114278","_from":"6818","_to":"67308"} +{"$label":"ACTS_IN","name":"A.C.N.S.","type":"Role","_key":"117455","_from":"6819","_to":"69075"} +{"$label":"ACTS_IN","name":"Kendall","type":"Role","_key":"104038","_from":"6819","_to":"61204"} +{"$label":"ACTS_IN","name":"Sir Frederick Gray","type":"Role","_key":"8559","_from":"6819","_to":"6967"} +{"$label":"ACTS_IN","name":"Sir Frederick Gray","type":"Role","_key":"8546","_from":"6819","_to":"6961"} +{"$label":"ACTS_IN","name":"Sir Frederick Gray","type":"Role","_key":"8430","_from":"6819","_to":"6879"} +{"$label":"ACTS_IN","name":"Sir Frederick Gray","type":"Role","_key":"8411","_from":"6819","_to":"6873"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"8339","_from":"6833","_to":"6823"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"8338","_from":"6832","_to":"6823"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"8337","_from":"6831","_to":"6823"} +{"$label":"ACTS_IN","name":"Channing","type":"Role","_key":"8336","_from":"6830","_to":"6823"} +{"$label":"ACTS_IN","name":"Edie","type":"Role","_key":"8335","_from":"6829","_to":"6823"} +{"$label":"ACTS_IN","name":"Crackers","type":"Role","_key":"8334","_from":"6828","_to":"6823"} +{"$label":"ACTS_IN","name":"Cotton","type":"Role","_key":"8332","_from":"6827","_to":"6823"} +{"$label":"ACTS_IN","name":"Raymond Marble","type":"Role","_key":"8331","_from":"6826","_to":"6823"} +{"$label":"ACTS_IN","name":"Divine","type":"Role","_key":"8330","_from":"6825","_to":"6823"} +{"$label":"DIRECTED","_key":"8329","_from":"6824","_to":"6823"} +{"$label":"DIRECTED","_key":"99352","_from":"6824","_to":"58545"} +{"$label":"DIRECTED","_key":"99337","_from":"6824","_to":"58537"} +{"$label":"DIRECTED","_key":"99336","_from":"6824","_to":"58520"} +{"$label":"DIRECTED","_key":"98992","_from":"6824","_to":"58316"} +{"$label":"DIRECTED","_key":"95992","_from":"6824","_to":"56430"} +{"$label":"DIRECTED","_key":"72407","_from":"6824","_to":"43713"} +{"$label":"DIRECTED","_key":"70949","_from":"6824","_to":"43099"} +{"$label":"DIRECTED","_key":"67581","_from":"6824","_to":"41603"} +{"$label":"DIRECTED","_key":"56492","_from":"6824","_to":"35884"} +{"$label":"ACTS_IN","name":"Captain Alfred Taylor","type":"Role","_key":"96555","_from":"6824","_to":"56784"} +{"$label":"ACTS_IN","name":"Pete Peters","type":"Role","_key":"68793","_from":"6824","_to":"42147"} +{"$label":"ACTS_IN","name":"Black Ops Doctor","type":"Role","_key":"59919","_from":"6824","_to":"37824"} +{"$label":"ACTS_IN","name":"Francine Fishpaw","type":"Role","_key":"99353","_from":"6825","_to":"58545"} +{"$label":"ACTS_IN","name":"Dawn Davenport \/ Earl Peterson","type":"Role","_key":"99338","_from":"6825","_to":"58537"} +{"$label":"ACTS_IN","name":"Edna Turnblad","type":"Role","_key":"67579","_from":"6825","_to":"41603"} +{"$label":"ACTS_IN","name":"Donna Dasher","type":"Role","_key":"99339","_from":"6827","_to":"58537"} +{"$label":"ACTS_IN","name":"Princess Coo-Coo","type":"Role","_key":"99324","_from":"6827","_to":"58520"} +{"$label":"ACTS_IN","name":"Cuddles Kovinsky","type":"Role","_key":"99355","_from":"6829","_to":"58545"} +{"$label":"ACTS_IN","name":"Ida Nelson","type":"Role","_key":"99341","_from":"6829","_to":"58537"} +{"$label":"ACTS_IN","name":"Queen Carlotta","type":"Role","_key":"99323","_from":"6829","_to":"58520"} +{"$label":"ACTS_IN","name":"Concetta","type":"Role","_key":"99342","_from":"6831","_to":"58537"} +{"$label":"ACTS_IN","name":"Chicklette","type":"Role","_key":"99343","_from":"6832","_to":"58537"} +{"$label":"ACTS_IN","name":"Jorge Villalobos","type":"Role","_key":"8351","_from":"6841","_to":"6834"} +{"$label":"ACTS_IN","name":"Judge Ira","type":"Role","_key":"8349","_from":"6840","_to":"6834"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"8348","_from":"6839","_to":"6834"} +{"$label":"ACTS_IN","name":"Dina Byrnes","type":"Role","_key":"8346","_from":"6838","_to":"6834"} +{"$label":"ACTS_IN","name":"Rozalin Focker","type":"Role","_key":"8345","_from":"6837","_to":"6834"} +{"$label":"ACTS_IN","name":"Pam Byrnes","type":"Role","_key":"8342","_from":"6836","_to":"6834"} +{"$label":"DIRECTED","_key":"8340","_from":"6835","_to":"6834"} +{"$label":"DIRECTED","_key":"103557","_from":"6835","_to":"60910"} +{"$label":"DIRECTED","_key":"98283","_from":"6835","_to":"57900"} +{"$label":"DIRECTED","_key":"14164","_from":"6835","_to":"10958"} +{"$label":"DIRECTED","_key":"9633","_from":"6835","_to":"7752"} +{"$label":"DIRECTED","_key":"9622","_from":"6835","_to":"7750"} +{"$label":"DIRECTED","_key":"9621","_from":"6835","_to":"7742"} +{"$label":"ACTS_IN","name":"Barbara Lonigan","type":"Role","_key":"101760","_from":"6836","_to":"59885"} +{"$label":"ACTS_IN","name":"Char","type":"Role","_key":"63991","_from":"6836","_to":"39957"} +{"$label":"ACTS_IN","name":"Charlotte Jordan","type":"Role","_key":"57364","_from":"6836","_to":"36369"} +{"$label":"ACTS_IN","name":"Grace Dawkins","type":"Role","_key":"25992","_from":"6836","_to":"18688"} +{"$label":"ACTS_IN","name":"Pam Byrnes","type":"Role","_key":"14156","_from":"6836","_to":"10958"} +{"$label":"ACTS_IN","name":"Esther Hoffman","type":"Role","_key":"120570","_from":"6837","_to":"70813"} +{"$label":"ACTS_IN","name":"Fanny Brice","type":"Role","_key":"107000","_from":"6837","_to":"63082"} +{"$label":"ACTS_IN","name":"Dolly Levi","type":"Role","_key":"98221","_from":"6837","_to":"57864"} +{"$label":"ACTS_IN","name":"Susan Lowenstein","type":"Role","_key":"62640","_from":"6837","_to":"39408"} +{"$label":"ACTS_IN","name":"Yentl","type":"Role","_key":"62216","_from":"6837","_to":"39187"} +{"$label":"ACTS_IN","name":"Katie Morosky","type":"Role","_key":"61861","_from":"6837","_to":"38938"} +{"$label":"ACTS_IN","name":"Judy Maxwell","type":"Role","_key":"45257","_from":"6837","_to":"30037"} +{"$label":"DIRECTED","_key":"62645","_from":"6837","_to":"39408"} +{"$label":"DIRECTED","_key":"62221","_from":"6837","_to":"39187"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"117753","_from":"6838","_to":"69222"} +{"$label":"ACTS_IN","name":"Tracy Ballard","type":"Role","_key":"64781","_from":"6838","_to":"40313"} +{"$label":"ACTS_IN","name":"Sally Wingo","type":"Role","_key":"62641","_from":"6838","_to":"39408"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"48496","_from":"6838","_to":"31835"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"46995","_from":"6838","_to":"30983"} +{"$label":"ACTS_IN","name":"Madame Suliman","type":"Role","_key":"34956","_from":"6838","_to":"23864"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"14560","_from":"6838","_to":"11225"} +{"$label":"ACTS_IN","name":"Dina Byrnes","type":"Role","_key":"14157","_from":"6838","_to":"10958"} +{"$label":"ACTS_IN","name":"Jana Cassidy","type":"Role","_key":"10028","_from":"6838","_to":"8022"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"103207","_from":"6839","_to":"60705"} +{"$label":"ACTS_IN","name":"Dander","type":"Role","_key":"97195","_from":"6839","_to":"57172"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"92286","_from":"6839","_to":"54460"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"47223","_from":"6839","_to":"31117"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"42798","_from":"6839","_to":"28626"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103732","_from":"6840","_to":"61008"} +{"$label":"ACTS_IN","name":"Tiny Guzman","type":"Role","_key":"119804","_from":"6841","_to":"70342"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"8360","_from":"6846","_to":"6842"} +{"$label":"ACTS_IN","name":"Stuart Ullman","type":"Role","_key":"8357","_from":"6845","_to":"6842"} +{"$label":"ACTS_IN","name":"Danny Torrance","type":"Role","_key":"8355","_from":"6844","_to":"6842"} +{"$label":"ACTS_IN","name":"Wendy Torrance","type":"Role","_key":"8354","_from":"6843","_to":"6842"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"117886","_from":"6843","_to":"69298"} +{"$label":"ACTS_IN","name":"Dixie","type":"Role","_key":"70864","_from":"6843","_to":"43068"} +{"$label":"ACTS_IN","name":"Jenny Wilcox","type":"Role","_key":"70228","_from":"6843","_to":"42798"} +{"$label":"ACTS_IN","name":"Olive Oyl","type":"Role","_key":"69202","_from":"6843","_to":"42322"} +{"$label":"ACTS_IN","name":"Mrs. Stein","type":"Role","_key":"26332","_from":"6843","_to":"18912"} +{"$label":"ACTS_IN","name":"Marthe aka \"L. A. Joan\"","type":"Role","_key":"26142","_from":"6843","_to":"18778"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"8476","_from":"6843","_to":"6916"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117884","_from":"6844","_to":"69298"} +{"$label":"ACTS_IN","name":"Paul Clarke","type":"Role","_key":"100975","_from":"6845","_to":"59510"} +{"$label":"ACTS_IN","name":"Hal Carter","type":"Role","_key":"34963","_from":"6845","_to":"23872"} +{"$label":"ACTS_IN","name":"Mildred Aldrich","type":"Role","_key":"116390","_from":"6846","_to":"68518"} +{"$label":"ACTS_IN","name":"Chad Weathers","type":"Role","_key":"8385","_from":"6859","_to":"6847"} +{"$label":"ACTS_IN","name":"Doreen Piggot","type":"Role","_key":"8383","_from":"6858","_to":"6847"} +{"$label":"ACTS_IN","name":"Sandy Shepard","type":"Role","_key":"8382","_from":"6857","_to":"6847"} +{"$label":"ACTS_IN","name":"Will Shepard","type":"Role","_key":"8381","_from":"6856","_to":"6847"} +{"$label":"ACTS_IN","name":"Austin Shepard","type":"Role","_key":"8380","_from":"6855","_to":"6847"} +{"$label":"ACTS_IN","name":"Josette Kaiser","type":"Role","_key":"8374","_from":"6854","_to":"6847"} +{"$label":"ACTS_IN","name":"Joe Kaiser","type":"Role","_key":"8373","_from":"6853","_to":"6847"} +{"$label":"ACTS_IN","name":"Lois Kaiser","type":"Role","_key":"8371","_from":"6852","_to":"6847"} +{"$label":"ACTS_IN","name":"Stuart Kane","type":"Role","_key":"8370","_from":"6851","_to":"6847"} +{"$label":"ACTS_IN","name":"Casey Finnigan","type":"Role","_key":"8368","_from":"6850","_to":"6847"} +{"$label":"ACTS_IN","name":"Howard Finnigan","type":"Role","_key":"8367","_from":"6849","_to":"6847"} +{"$label":"ACTS_IN","name":"Claire Kane","type":"Role","_key":"8366","_from":"6848","_to":"6847"} +{"$label":"ACTS_IN","name":"Professor Molly McCarthy","type":"Role","_key":"94848","_from":"6848","_to":"55853"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"92027","_from":"6848","_to":"54296"} +{"$label":"ACTS_IN","name":"Vonda Volkom","type":"Role","_key":"90257","_from":"6848","_to":"53362"} +{"$label":"ACTS_IN","name":"Eleanor Hooks","type":"Role","_key":"69615","_from":"6848","_to":"42495"} +{"$label":"ACTS_IN","name":"Beth Gallagher","type":"Role","_key":"67188","_from":"6848","_to":"41448"} +{"$label":"ACTS_IN","name":"Dr. Caroline \"Cathy\" Ryan","type":"Role","_key":"57488","_from":"6848","_to":"36435"} +{"$label":"ACTS_IN","name":"The First Lady","type":"Role","_key":"56116","_from":"6848","_to":"35670"} +{"$label":"ACTS_IN","name":"Cathy Ryan","type":"Role","_key":"53162","_from":"6848","_to":"34396"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"35517","_from":"6848","_to":"24147"} +{"$label":"ACTS_IN","name":"Joanne Braslow","type":"Role","_key":"18730","_from":"6848","_to":"13858"} +{"$label":"ACTS_IN","name":"Carol Jacobs","type":"Role","_key":"13193","_from":"6848","_to":"10277"} +{"$label":"ACTS_IN","name":"Interrogator","type":"Role","_key":"119762","_from":"6849","_to":"70329"} +{"$label":"ACTS_IN","name":"Professor Lazlo","type":"Role","_key":"101534","_from":"6849","_to":"59764"} +{"$label":"ACTS_IN","name":"Leah's Father","type":"Role","_key":"95169","_from":"6849","_to":"55998"} +{"$label":"ACTS_IN","name":"Tom Oakley","type":"Role","_key":"65082","_from":"6849","_to":"40432"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"64527","_from":"6849","_to":"40189"} +{"$label":"ACTS_IN","name":"Richard Bowden","type":"Role","_key":"53917","_from":"6849","_to":"34700"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"52445","_from":"6849","_to":"34119"} +{"$label":"ACTS_IN","name":"Ambassador Harrington","type":"Role","_key":"46278","_from":"6849","_to":"30589"} +{"$label":"ACTS_IN","name":"Archibald 'Biscuits' Touie","type":"Role","_key":"116238","_from":"6851","_to":"68437"} +{"$label":"ACTS_IN","name":"Henry Miller","type":"Role","_key":"114579","_from":"6851","_to":"67500"} +{"$label":"ACTS_IN","name":"Leo Corrigan","type":"Role","_key":"113723","_from":"6851","_to":"67018"} +{"$label":"ACTS_IN","name":"Lieutenant Bill Strayton","type":"Role","_key":"106582","_from":"6851","_to":"62806"} +{"$label":"ACTS_IN","name":"Sgt. Hoke Moseley","type":"Role","_key":"102521","_from":"6851","_to":"60318"} +{"$label":"ACTS_IN","name":"Roone Dimmick","type":"Role","_key":"91171","_from":"6851","_to":"53776"} +{"$label":"ACTS_IN","name":"Cpl. Lonnie Reece","type":"Role","_key":"90068","_from":"6851","_to":"53272"} +{"$label":"ACTS_IN","name":"Jack Milton","type":"Role","_key":"89294","_from":"6851","_to":"52863"} +{"$label":"ACTS_IN","name":"FBI Agent Leon Ford","type":"Role","_key":"88158","_from":"6851","_to":"52304"} +{"$label":"ACTS_IN","name":"Earl Bassett","type":"Role","_key":"67688","_from":"6851","_to":"41634"} +{"$label":"ACTS_IN","name":"John Anglin","type":"Role","_key":"65330","_from":"6851","_to":"40534"} +{"$label":"ACTS_IN","name":"Remo Williams","type":"Role","_key":"64038","_from":"6851","_to":"39969"} +{"$label":"ACTS_IN","name":"Walter Stuckel","type":"Role","_key":"63030","_from":"6851","_to":"39558"} +{"$label":"ACTS_IN","name":"Wilkes","type":"Role","_key":"58672","_from":"6851","_to":"37064"} +{"$label":"ACTS_IN","name":"Gus Grissom","type":"Role","_key":"54613","_from":"6851","_to":"34982"} +{"$label":"ACTS_IN","name":"Earl Bassett","type":"Role","_key":"53359","_from":"6851","_to":"34487"} +{"$label":"ACTS_IN","name":"Sheldon Bart","type":"Role","_key":"44781","_from":"6851","_to":"29790"} +{"$label":"ACTS_IN","name":"Duncan Ashcroft","type":"Role","_key":"32937","_from":"6851","_to":"22843"} +{"$label":"ACTS_IN","name":"Jupiter","type":"Role","_key":"16970","_from":"6851","_to":"12733"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"117675","_from":"6852","_to":"69168"} +{"$label":"ACTS_IN","name":"Allison Capuletti","type":"Role","_key":"116002","_from":"6852","_to":"68313"} +{"$label":"ACTS_IN","name":"Susie Waggoner","type":"Role","_key":"102520","_from":"6852","_to":"60318"} +{"$label":"ACTS_IN","name":"Stacy Hamilton","type":"Role","_key":"94018","_from":"6852","_to":"55369"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"91468","_from":"6852","_to":"53933"} +{"$label":"ACTS_IN","name":"Tralala","type":"Role","_key":"91459","_from":"6852","_to":"53932"} +{"$label":"ACTS_IN","name":"Amy Archer","type":"Role","_key":"72831","_from":"6852","_to":"43873"} +{"$label":"ACTS_IN","name":"Selena St. George","type":"Role","_key":"72798","_from":"6852","_to":"43864"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"66895","_from":"6852","_to":"41302"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"64529","_from":"6852","_to":"40189"} +{"$label":"ACTS_IN","name":"Dr. Beth Lorenson","type":"Role","_key":"55421","_from":"6852","_to":"35328"} +{"$label":"ACTS_IN","name":"Hedra 'Hedy' Carlson","type":"Role","_key":"54979","_from":"6852","_to":"35139"} +{"$label":"ACTS_IN","name":"Nash","type":"Role","_key":"54565","_from":"6852","_to":"34965"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"35148","_from":"6852","_to":"23955"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"32593","_from":"6852","_to":"22651"} +{"$label":"ACTS_IN","name":"Annie Sullivan","type":"Role","_key":"29768","_from":"6852","_to":"21072"} +{"$label":"ACTS_IN","name":"Jennifer Vaitkus","type":"Role","_key":"24328","_from":"6852","_to":"17621"} +{"$label":"ACTS_IN","name":"Allegra Geller","type":"Role","_key":"16877","_from":"6852","_to":"12696"} +{"$label":"ACTS_IN","name":"Violet Newstead","type":"Role","_key":"120221","_from":"6858","_to":"70600"} +{"$label":"ACTS_IN","name":"Prostituierte","type":"Role","_key":"119201","_from":"6858","_to":"70040"} +{"$label":"ACTS_IN","name":"Abigail Delorean","type":"Role","_key":"93601","_from":"6858","_to":"55116"} +{"$label":"ACTS_IN","name":"Rose Shelton","type":"Role","_key":"91170","_from":"6858","_to":"53776"} +{"$label":"ACTS_IN","name":"Judith Beasley","type":"Role","_key":"89713","_from":"6858","_to":"53109"} +{"$label":"ACTS_IN","name":"Miss Jane Hathaway","type":"Role","_key":"67510","_from":"6858","_to":"41572"} +{"$label":"ACTS_IN","name":"Edwina Cutwater","type":"Role","_key":"64715","_from":"6858","_to":"40297"} +{"$label":"ACTS_IN","name":"Georgie Rockwell","type":"Role","_key":"62842","_from":"6858","_to":"39488"} +{"$label":"ACTS_IN","name":"Mommo","type":"Role","_key":"57838","_from":"6858","_to":"36606"} +{"$label":"ACTS_IN","name":"Waffle eater","type":"Role","_key":"40165","_from":"6858","_to":"27113"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"30404","_from":"6858","_to":"21378"} +{"$label":"ACTS_IN","name":"Linnea Reese","type":"Role","_key":"26154","_from":"6858","_to":"18778"} +{"$label":"ACTS_IN","name":"Mary Schlichting","type":"Role","_key":"18032","_from":"6858","_to":"13403"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"14178","_from":"6858","_to":"10966"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"8395","_from":"6865","_to":"6860"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"8394","_from":"6864","_to":"6860"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"8393","_from":"6863","_to":"6860"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"8391","_from":"6862","_to":"6860"} +{"$label":"DIRECTED","_key":"8387","_from":"6861","_to":"6860"} +{"$label":"ACTS_IN","name":"Minnie Vautrin","type":"Role","_key":"111437","_from":"6862","_to":"65798"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"104034","_from":"6862","_to":"61202"} +{"$label":"ACTS_IN","name":"Laura Barnes","type":"Role","_key":"99868","_from":"6862","_to":"58898"} +{"$label":"ACTS_IN","name":"Beth Kramer","type":"Role","_key":"22346","_from":"6862","_to":"16249"} +{"$label":"ACTS_IN","name":"Bolshevik","type":"Role","_key":"8403","_from":"6872","_to":"6866"} +{"$label":"ACTS_IN","name":"Kishkin","type":"Role","_key":"8402","_from":"6871","_to":"6866"} +{"$label":"ACTS_IN","name":"Minister Terestsenko","type":"Role","_key":"8401","_from":"6870","_to":"6866"} +{"$label":"ACTS_IN","name":"Konovalov","type":"Role","_key":"8400","_from":"6869","_to":"6866"} +{"$label":"ACTS_IN","name":"Lenin","type":"Role","_key":"8399","_from":"6868","_to":"6866"} +{"$label":"ACTS_IN","name":"Aleksandr Kerensky","type":"Role","_key":"8398","_from":"6867","_to":"6866"} +{"$label":"ACTS_IN","name":"Dolly","type":"Role","_key":"8416","_from":"6878","_to":"6873"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"8415","_from":"6877","_to":"6873"} +{"$label":"ACTS_IN","name":"Chang","type":"Role","_key":"8414","_from":"6876","_to":"6873"} +{"$label":"ACTS_IN","name":"Corinne Dufour","type":"Role","_key":"8408","_from":"6875","_to":"6873"} +{"$label":"ACTS_IN","name":"Dr. Holly Goodhead","type":"Role","_key":"8406","_from":"6874","_to":"6873"} +{"$label":"ACTS_IN","name":"Annie Lansing","type":"Role","_key":"108498","_from":"6874","_to":"64131"} +{"$label":"ACTS_IN","name":"Katrina Brandt","type":"Role","_key":"88952","_from":"6874","_to":"52694"} +{"$label":"ACTS_IN","name":"Linnet Ridgeway","type":"Role","_key":"41597","_from":"6874","_to":"27940"} +{"$label":"ACTS_IN","name":"Linnet Ridgeway Doyle","type":"Role","_key":"29977","_from":"6874","_to":"21170"} +{"$label":"ACTS_IN","name":"O","type":"Role","_key":"32696","_from":"6875","_to":"22714"} +{"$label":"ACTS_IN","name":"Sir Timothy Havelock","type":"Role","_key":"8427","_from":"6888","_to":"6879"} +{"$label":"ACTS_IN","name":"Erich Kriegler","type":"Role","_key":"8426","_from":"6887","_to":"6879"} +{"$label":"ACTS_IN","name":"Emile Leopold Locque","type":"Role","_key":"8425","_from":"6886","_to":"6879"} +{"$label":"ACTS_IN","name":"Jacoba Brink","type":"Role","_key":"8424","_from":"6885","_to":"6879"} +{"$label":"ACTS_IN","name":"Countess Lisl von Schlaf","type":"Role","_key":"8423","_from":"6884","_to":"6879"} +{"$label":"ACTS_IN","name":"Bibi Dahl","type":"Role","_key":"8421","_from":"6883","_to":"6879"} +{"$label":"ACTS_IN","name":"Milos Columbo","type":"Role","_key":"8420","_from":"6882","_to":"6879"} +{"$label":"ACTS_IN","name":"Melina Havelock","type":"Role","_key":"8419","_from":"6881","_to":"6879"} +{"$label":"DIRECTED","_key":"8417","_from":"6880","_to":"6879"} +{"$label":"DIRECTED","_key":"17756","_from":"6880","_to":"13247"} +{"$label":"DIRECTED","_key":"8562","_from":"6880","_to":"6975"} +{"$label":"DIRECTED","_key":"8548","_from":"6880","_to":"6967"} +{"$label":"DIRECTED","_key":"8533","_from":"6880","_to":"6961"} +{"$label":"DIRECTED","_key":"8445","_from":"6880","_to":"6889"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"49717","_from":"6881","_to":"32530"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"46176","_from":"6881","_to":"30520"} +{"$label":"ACTS_IN","name":"Conchita I","type":"Role","_key":"39474","_from":"6881","_to":"26682"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"39020","_from":"6881","_to":"26375"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"18401","_from":"6881","_to":"13641"} +{"$label":"ACTS_IN","name":"Tevye","type":"Role","_key":"101861","_from":"6882","_to":"59950"} +{"$label":"ACTS_IN","name":"Dr. Hans Zarkov","type":"Role","_key":"28342","_from":"6882","_to":"20283"} +{"$label":"ACTS_IN","name":"Hoherpriester","type":"Role","_key":"22906","_from":"6888","_to":"16608"} +{"$label":"ACTS_IN","name":"Penelope Smallbone","type":"Role","_key":"8443","_from":"6896","_to":"6889"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8441","_from":"6895","_to":"6889"} +{"$label":"ACTS_IN","name":"Twin Two","type":"Role","_key":"8439","_from":"6894","_to":"6889"} +{"$label":"ACTS_IN","name":"Twin One","type":"Role","_key":"8438","_from":"6893","_to":"6889"} +{"$label":"ACTS_IN","name":"Gobinda","type":"Role","_key":"8436","_from":"6892","_to":"6889"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"8435","_from":"6891","_to":"6889"} +{"$label":"ACTS_IN","name":"Kamal Khan","type":"Role","_key":"8434","_from":"6890","_to":"6889"} +{"$label":"ACTS_IN","name":"Dr. Anton Arcane","type":"Role","_key":"114368","_from":"6890","_to":"67370"} +{"$label":"ACTS_IN","name":"Gaston Lachaille","type":"Role","_key":"111771","_from":"6890","_to":"65970"} +{"$label":"ACTS_IN","name":"Villefort","type":"Role","_key":"32528","_from":"6890","_to":"22623"} +{"$label":"ACTS_IN","name":"Edmond Dant\u00e8s","type":"Role","_key":"32341","_from":"6890","_to":"22527"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"30058","_from":"6890","_to":"21198"} +{"$label":"ACTS_IN","name":"Kardinal Acquaviva","type":"Role","_key":"16040","_from":"6890","_to":"12192"} +{"$label":"ACTS_IN","name":"Stefan Brand","type":"Role","_key":"11274","_from":"6890","_to":"8902"} +{"$label":"ACTS_IN","name":"Sorceress","type":"Role","_key":"59209","_from":"6891","_to":"37387"} +{"$label":"ACTS_IN","name":"Akbar","type":"Role","_key":"103800","_from":"6892","_to":"61053"} +{"$label":"ACTS_IN","name":"Arnold Talbot","type":"Role","_key":"37069","_from":"6895","_to":"25120"} +{"$label":"ACTS_IN","name":"Akhoba","type":"Role","_key":"28218","_from":"6895","_to":"20209"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8576","_from":"6895","_to":"6975"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8558","_from":"6895","_to":"6967"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"8547","_from":"6895","_to":"6961"} +{"$label":"ACTS_IN","name":"Willie McKay - 21 Years Old","type":"Role","_key":"8456","_from":"6906","_to":"6897"} +{"$label":"ACTS_IN","name":"Aunt Mary","type":"Role","_key":"8454","_from":"6905","_to":"6897"} +{"$label":"ACTS_IN","name":"The Engineer","type":"Role","_key":"8453","_from":"6904","_to":"6897"} +{"$label":"ACTS_IN","name":"The Parson","type":"Role","_key":"8452","_from":"6903","_to":"6897"} +{"$label":"ACTS_IN","name":"Lee Canfield","type":"Role","_key":"8451","_from":"6902","_to":"6897"} +{"$label":"ACTS_IN","name":"Clayton Canfield","type":"Role","_key":"8450","_from":"6901","_to":"6897"} +{"$label":"ACTS_IN","name":"Virginia Canfield","type":"Role","_key":"8449","_from":"6900","_to":"6897"} +{"$label":"ACTS_IN","name":"Joseph Canfield","type":"Role","_key":"8448","_from":"6899","_to":"6897"} +{"$label":"DIRECTED","_key":"8446","_from":"6898","_to":"6897"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112702","_from":"6899","_to":"66550"} +{"$label":"ACTS_IN","name":"John Webster","type":"Role","_key":"16762","_from":"6899","_to":"12639"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"120598","_from":"6903","_to":"70829"} +{"$label":"ACTS_IN","name":"Girl's Father","type":"Role","_key":"11734","_from":"6904","_to":"9210"} +{"$label":"ACTS_IN","name":"Union general","type":"Role","_key":"11433","_from":"6904","_to":"8993"} +{"$label":"ACTS_IN","name":"Bride's mother","type":"Role","_key":"60683","_from":"6905","_to":"38311"} +{"$label":"ACTS_IN","name":"A Sailor","type":"Role","_key":"8469","_from":"6915","_to":"6907"} +{"$label":"ACTS_IN","name":"The Mexican Woman","type":"Role","_key":"8468","_from":"6914","_to":"6907"} +{"$label":"ACTS_IN","name":"The Matron","type":"Role","_key":"8467","_from":"6913","_to":"6907"} +{"$label":"ACTS_IN","name":"A Doctor","type":"Role","_key":"8466","_from":"6912","_to":"6907"} +{"$label":"ACTS_IN","name":"A Collector","type":"Role","_key":"8465","_from":"6911","_to":"6907"} +{"$label":"ACTS_IN","name":"Eunice","type":"Role","_key":"8464","_from":"6910","_to":"6907"} +{"$label":"ACTS_IN","name":"Stella Kowalski","type":"Role","_key":"8460","_from":"6909","_to":"6907"} +{"$label":"ACTS_IN","name":"Blanche DuBois","type":"Role","_key":"8458","_from":"6908","_to":"6907"} +{"$label":"ACTS_IN","name":"Scarlett O'Hara","type":"Role","_key":"9043","_from":"6908","_to":"7317"} +{"$label":"ACTS_IN","name":"Betty Harty","type":"Role","_key":"48335","_from":"6909","_to":"31735"} +{"$label":"ACTS_IN","name":"Dr. Zira","type":"Role","_key":"14923","_from":"6909","_to":"11474"} +{"$label":"ACTS_IN","name":"Dr. Zira","type":"Role","_key":"14907","_from":"6909","_to":"11457"} +{"$label":"ACTS_IN","name":"Zira","type":"Role","_key":"10360","_from":"6909","_to":"8244"} +{"$label":"ACTS_IN","name":"Matt, as a boy","type":"Role","_key":"25701","_from":"6915","_to":"18490"} +{"$label":"ACTS_IN","name":"Beau Wilkes","type":"Role","_key":"9068","_from":"6915","_to":"7317"} +{"$label":"ACTS_IN","name":"Truman Capote Look-Alike (uncredited)","type":"Role","_key":"8492","_from":"6929","_to":"6916"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8486","_from":"6928","_to":"6916"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8485","_from":"6927","_to":"6916"} +{"$label":"ACTS_IN","name":"Alvy Singer - Age 9","type":"Role","_key":"8484","_from":"6926","_to":"6916"} +{"$label":"ACTS_IN","name":"Mrs. Singer","type":"Role","_key":"8483","_from":"6925","_to":"6916"} +{"$label":"ACTS_IN","name":"Mr. Singer","type":"Role","_key":"8482","_from":"6924","_to":"6916"} +{"$label":"ACTS_IN","name":"Grammy Hall","type":"Role","_key":"8481","_from":"6923","_to":"6916"} +{"$label":"ACTS_IN","name":"Mr. Hall","type":"Role","_key":"8480","_from":"6922","_to":"6916"} +{"$label":"ACTS_IN","name":"Mrs. Hall","type":"Role","_key":"8478","_from":"6921","_to":"6916"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"8477","_from":"6920","_to":"6916"} +{"$label":"ACTS_IN","name":"Tony Lacey","type":"Role","_key":"8475","_from":"6919","_to":"6916"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"8474","_from":"6918","_to":"6916"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"8473","_from":"6917","_to":"6916"} +{"$label":"ACTS_IN","name":"Dick Christie","type":"Role","_key":"71041","_from":"6917","_to":"43140"} +{"$label":"ACTS_IN","name":"Arnold Freidkin","type":"Role","_key":"62123","_from":"6917","_to":"39122"} +{"$label":"ACTS_IN","name":"Maxwell","type":"Role","_key":"48861","_from":"6917","_to":"32041"} +{"$label":"ACTS_IN","name":"Ms. Sherwood","type":"Role","_key":"117965","_from":"6918","_to":"69340"} +{"$label":"ACTS_IN","name":"Shaldeen","type":"Role","_key":"109014","_from":"6918","_to":"64421"} +{"$label":"ACTS_IN","name":"Young Whore","type":"Role","_key":"102321","_from":"6918","_to":"60201"} +{"$label":"ACTS_IN","name":"Mrs. Anderson","type":"Role","_key":"96017","_from":"6918","_to":"56441"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"91234","_from":"6918","_to":"53798"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"91130","_from":"6918","_to":"53764"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"66903","_from":"6918","_to":"41305"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"21707","_from":"6918","_to":"15866"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"11524","_from":"6918","_to":"9052"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"70126","_from":"6920","_to":"42747"} +{"$label":"ACTS_IN","name":"The Prosecutor","type":"Role","_key":"24643","_from":"6920","_to":"17819"} +{"$label":"ACTS_IN","name":"Maria von Bethanien","type":"Role","_key":"21256","_from":"6920","_to":"15553"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"104969","_from":"6921","_to":"61763"} +{"$label":"ACTS_IN","name":"Estelle Whittier","type":"Role","_key":"52437","_from":"6921","_to":"34117"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"22364","_from":"6921","_to":"16258"} +{"$label":"ACTS_IN","name":"Marcellino","type":"Role","_key":"18301","_from":"6924","_to":"13572"} +{"$label":"ACTS_IN","name":"Lionel Twain","type":"Role","_key":"41383","_from":"6929","_to":"27822"} +{"$label":"ACTS_IN","name":"Police Inspector","type":"Role","_key":"8503","_from":"6941","_to":"6930"} +{"$label":"ACTS_IN","name":"Millie","type":"Role","_key":"8502","_from":"6940","_to":"6930"} +{"$label":"ACTS_IN","name":"T.V. director","type":"Role","_key":"8501","_from":"6939","_to":"6930"} +{"$label":"ACTS_IN","name":"Shake","type":"Role","_key":"8500","_from":"6938","_to":"6930"} +{"$label":"ACTS_IN","name":"Norm","type":"Role","_key":"8499","_from":"6937","_to":"6930"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"8498","_from":"6936","_to":"6930"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8497","_from":"6935","_to":"6930"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8496","_from":"6934","_to":"6930"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8495","_from":"6933","_to":"6930"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"8494","_from":"6932","_to":"6930"} +{"$label":"DIRECTED","_key":"8493","_from":"6931","_to":"6930"} +{"$label":"DIRECTED","_key":"113874","_from":"6931","_to":"67081"} +{"$label":"DIRECTED","_key":"101942","_from":"6931","_to":"59994"} +{"$label":"DIRECTED","_key":"89248","_from":"6931","_to":"52844"} +{"$label":"DIRECTED","_key":"65793","_from":"6931","_to":"40718"} +{"$label":"DIRECTED","_key":"54493","_from":"6931","_to":"34930"} +{"$label":"DIRECTED","_key":"50128","_from":"6931","_to":"32783"} +{"$label":"DIRECTED","_key":"37569","_from":"6931","_to":"25467"} +{"$label":"DIRECTED","_key":"24356","_from":"6931","_to":"17626"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"101934","_from":"6932","_to":"59994"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"101933","_from":"6933","_to":"59994"} +{"$label":"ACTS_IN","name":"The Interviewer","type":"Role","_key":"108995","_from":"6934","_to":"64408"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"101941","_from":"6934","_to":"59994"} +{"$label":"ACTS_IN","name":"Atouk","type":"Role","_key":"118031","_from":"6935","_to":"69382"} +{"$label":"ACTS_IN","name":"Ringo","type":"Role","_key":"101935","_from":"6935","_to":"59994"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97802","_from":"6935","_to":"57588"} +{"$label":"ACTS_IN","name":"Det.Sgt. Rigers","type":"Role","_key":"28090","_from":"6937","_to":"20137"} +{"$label":"ACTS_IN","name":"One Eyed Truck Driver","type":"Role","_key":"117909","_from":"6938","_to":"69304"} +{"$label":"ACTS_IN","name":"Duke d'Escargot","type":"Role","_key":"121079","_from":"6939","_to":"71109"} +{"$label":"ACTS_IN","name":"Prof. Foot","type":"Role","_key":"101938","_from":"6939","_to":"59994"} +{"$label":"ACTS_IN","name":"Baroness Bomburst","type":"Role","_key":"71689","_from":"6940","_to":"43398"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"8512","_from":"6949","_to":"6942"} +{"$label":"ACTS_IN","name":"Max Fabian","type":"Role","_key":"8511","_from":"6948","_to":"6942"} +{"$label":"ACTS_IN","name":"Lloyd Richards","type":"Role","_key":"8510","_from":"6947","_to":"6942"} +{"$label":"ACTS_IN","name":"Bill Sampson","type":"Role","_key":"8509","_from":"6946","_to":"6942"} +{"$label":"ACTS_IN","name":"Karen Richards","type":"Role","_key":"8508","_from":"6945","_to":"6942"} +{"$label":"ACTS_IN","name":"Eve Harrington","type":"Role","_key":"8506","_from":"6944","_to":"6942"} +{"$label":"DIRECTED","_key":"8504","_from":"6943","_to":"6942"} +{"$label":"DIRECTED","_key":"121756","_from":"6943","_to":"71524"} +{"$label":"DIRECTED","_key":"101482","_from":"6943","_to":"59731"} +{"$label":"DIRECTED","_key":"48225","_from":"6943","_to":"31682"} +{"$label":"DIRECTED","_key":"34253","_from":"6943","_to":"23507"} +{"$label":"DIRECTED","_key":"11737","_from":"6943","_to":"9214"} +{"$label":"ACTS_IN","name":"Nofretete","type":"Role","_key":"44952","_from":"6944","_to":"29886"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"11471","_from":"6944","_to":"9026"} +{"$label":"ACTS_IN","name":"Liz Imbrie","type":"Role","_key":"69778","_from":"6945","_to":"42588"} +{"$label":"ACTS_IN","name":"Gideon Spilitt","type":"Role","_key":"118401","_from":"6946","_to":"69604"} +{"$label":"ACTS_IN","name":"Tommy Scalise","type":"Role","_key":"111596","_from":"6946","_to":"65883"} +{"$label":"ACTS_IN","name":"Colonel Keith Davenport","type":"Role","_key":"104682","_from":"6946","_to":"61589"} +{"$label":"ACTS_IN","name":"Major Colton","type":"Role","_key":"44290","_from":"6946","_to":"29517"} +{"$label":"ACTS_IN","name":"Col. Devlin","type":"Role","_key":"31866","_from":"6946","_to":"22236"} +{"$label":"ACTS_IN","name":"Richard Morton","type":"Role","_key":"31843","_from":"6946","_to":"22225"} +{"$label":"ACTS_IN","name":"Adam Dunn","type":"Role","_key":"118783","_from":"6947","_to":"69838"} +{"$label":"ACTS_IN","name":"Dr. Russell A. Marvin","type":"Role","_key":"115096","_from":"6947","_to":"67783"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel Ben Gately","type":"Role","_key":"104681","_from":"6947","_to":"61589"} +{"$label":"ACTS_IN","name":"Col. Darly","type":"Role","_key":"10817","_from":"6947","_to":"8568"} +{"$label":"ACTS_IN","name":"Roy Comstock","type":"Role","_key":"10704","_from":"6947","_to":"8495"} +{"$label":"ACTS_IN","name":"Tom Stevens","type":"Role","_key":"9789","_from":"6947","_to":"7848"} +{"$label":"ACTS_IN","name":"Frau Pasche","type":"Role","_key":"8530","_from":"6960","_to":"6950"} +{"$label":"ACTS_IN","name":"Hulda","type":"Role","_key":"8529","_from":"6959","_to":"6950"} +{"$label":"ACTS_IN","name":"Pastor Niemeyer","type":"Role","_key":"8528","_from":"6958","_to":"6950"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"8527","_from":"6957","_to":"6950"} +{"$label":"ACTS_IN","name":"Geheimrat Rummsch\u00fcttel","type":"Role","_key":"8526","_from":"6956","_to":"6950"} +{"$label":"ACTS_IN","name":"K\u00f6chin","type":"Role","_key":"8525","_from":"6955","_to":"6950"} +{"$label":"ACTS_IN","name":"Roswitha","type":"Role","_key":"8521","_from":"6954","_to":"6950"} +{"$label":"ACTS_IN","name":"Herr von Briest","type":"Role","_key":"8520","_from":"6953","_to":"6950"} +{"$label":"ACTS_IN","name":"Major Crampas","type":"Role","_key":"8518","_from":"6952","_to":"6950"} +{"$label":"ACTS_IN","name":"Baron Geert von Instetten","type":"Role","_key":"8517","_from":"6951","_to":"6950"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"42969","_from":"6951","_to":"28701"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"89769","_from":"6952","_to":"53133"} +{"$label":"ACTS_IN","name":"Der kleine Prinz","type":"Role","_key":"61847","_from":"6952","_to":"38929"} +{"$label":"ACTS_IN","name":"Johannes K\u00fcblb\u00f6ck","type":"Role","_key":"54923","_from":"6952","_to":"35118"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"39128","_from":"6952","_to":"26449"} +{"$label":"DIRECTED","_key":"54926","_from":"6952","_to":"35118"} +{"$label":"DIRECTED","_key":"39183","_from":"6952","_to":"26487"} +{"$label":"ACTS_IN","name":"Basia","type":"Role","_key":"50804","_from":"6955","_to":"33152"} +{"$label":"ACTS_IN","name":"Dagmar","type":"Role","_key":"39962","_from":"6955","_to":"26992"} +{"$label":"ACTS_IN","name":"Hubert Gerold","type":"Role","_key":"91707","_from":"6956","_to":"54103"} +{"$label":"ACTS_IN","name":"Ferdi","type":"Role","_key":"44646","_from":"6956","_to":"29707"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"42571","_from":"6956","_to":"28496"} +{"$label":"ACTS_IN","name":"Renate Epp, Hans's daughter","type":"Role","_key":"62517","_from":"6957","_to":"39362"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"71625","_from":"6959","_to":"43377"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"62572","_from":"6959","_to":"39375"} +{"$label":"ACTS_IN","name":"Gabriele von Kant","type":"Role","_key":"62521","_from":"6959","_to":"39363"} +{"$label":"ACTS_IN","name":"Fotografin","type":"Role","_key":"61101","_from":"6959","_to":"38620"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"49522","_from":"6959","_to":"32424"} +{"$label":"ACTS_IN","name":"Frau Fritzsche","type":"Role","_key":"20178","_from":"6959","_to":"14796"} +{"$label":"ACTS_IN","name":"Nulfin","type":"Role","_key":"10603","_from":"6959","_to":"8414"} +{"$label":"ACTS_IN","name":"Mother Filipov","type":"Role","_key":"10114","_from":"6959","_to":"8094"} +{"$label":"ACTS_IN","name":"Dr. Carl Mortner","type":"Role","_key":"8542","_from":"6966","_to":"6961"} +{"$label":"ACTS_IN","name":"Pola Ivanova","type":"Role","_key":"8541","_from":"6965","_to":"6961"} +{"$label":"ACTS_IN","name":"Sir Godfrey Tibbett","type":"Role","_key":"8538","_from":"6964","_to":"6961"} +{"$label":"ACTS_IN","name":"May Day","type":"Role","_key":"8537","_from":"6963","_to":"6961"} +{"$label":"ACTS_IN","name":"Stacey Sutton","type":"Role","_key":"8536","_from":"6962","_to":"6961"} +{"$label":"ACTS_IN","name":"Kiri","type":"Role","_key":"109240","_from":"6962","_to":"64540"} +{"$label":"ACTS_IN","name":"Strang\u00e9","type":"Role","_key":"67663","_from":"6963","_to":"41628"} +{"$label":"ACTS_IN","name":"Sonya","type":"Role","_key":"55813","_from":"6963","_to":"35512"} +{"$label":"ACTS_IN","name":"Zula","type":"Role","_key":"55010","_from":"6963","_to":"35156"} +{"$label":"ACTS_IN","name":"Major 'Yogi' Crossley","type":"Role","_key":"120798","_from":"6964","_to":"70946"} +{"$label":"ACTS_IN","name":"Lieutenant Commander Medley - R.N.","type":"Role","_key":"113285","_from":"6964","_to":"66734"} +{"$label":"ACTS_IN","name":"Dr. George Waggner","type":"Role","_key":"68982","_from":"6964","_to":"42233"} +{"$label":"ACTS_IN","name":"Sir Denis Eton-Hogg","type":"Role","_key":"67431","_from":"6964","_to":"41533"} +{"$label":"ACTS_IN","name":"Invisible Jones (voice)","type":"Role","_key":"53102","_from":"6964","_to":"34364"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38498","_from":"6964","_to":"26007"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8561","_from":"6974","_to":"6967"} +{"$label":"ACTS_IN","name":"Saunders","type":"Role","_key":"8556","_from":"6973","_to":"6967"} +{"$label":"ACTS_IN","name":"Necros","type":"Role","_key":"8555","_from":"6972","_to":"6967"} +{"$label":"ACTS_IN","name":"Kamran Shah","type":"Role","_key":"8554","_from":"6971","_to":"6967"} +{"$label":"ACTS_IN","name":"Brad Whitaker","type":"Role","_key":"8552","_from":"6970","_to":"6967"} +{"$label":"ACTS_IN","name":"Kara Milovy","type":"Role","_key":"8550","_from":"6969","_to":"6967"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8549","_from":"6968","_to":"6967"} +{"$label":"ACTS_IN","name":"Philip II","type":"Role","_key":"118377","_from":"6968","_to":"69592"} +{"$label":"ACTS_IN","name":"Boris Pochenko","type":"Role","_key":"114259","_from":"6968","_to":"67297"} +{"$label":"ACTS_IN","name":"Allan Pinkerton","type":"Role","_key":"94824","_from":"6968","_to":"55841"} +{"$label":"ACTS_IN","name":"Elliot Price","type":"Role","_key":"72063","_from":"6968","_to":"43573"} +{"$label":"ACTS_IN","name":"Damien Drake","type":"Role","_key":"65211","_from":"6968","_to":"40495"} +{"$label":"ACTS_IN","name":"Neville Sinclair","type":"Role","_key":"61964","_from":"6968","_to":"39003"} +{"$label":"ACTS_IN","name":"Simon Skinner","type":"Role","_key":"33115","_from":"6968","_to":"22937"} +{"$label":"ACTS_IN","name":"Prince Barin","type":"Role","_key":"28344","_from":"6968","_to":"20283"} +{"$label":"ACTS_IN","name":"James Bond","type":"Role","_key":"8563","_from":"6968","_to":"6975"} +{"$label":"ACTS_IN","name":"Queen Rosalind","type":"Role","_key":"105099","_from":"6969","_to":"61857"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"36580","_from":"6969","_to":"24794"} +{"$label":"ACTS_IN","name":"Bill Calhoun","type":"Role","_key":"99145","_from":"6970","_to":"58416"} +{"$label":"ACTS_IN","name":"Olaf Andersen","type":"Role","_key":"63078","_from":"6970","_to":"39576"} +{"$label":"ACTS_IN","name":"Chief Jerry Karlin","type":"Role","_key":"56252","_from":"6970","_to":"35740"} +{"$label":"ACTS_IN","name":"Curly Bonner","type":"Role","_key":"40506","_from":"6970","_to":"27276"} +{"$label":"ACTS_IN","name":"Tom Pierce","type":"Role","_key":"23592","_from":"6970","_to":"17109"} +{"$label":"ACTS_IN","name":"P.J. Parker","type":"Role","_key":"15963","_from":"6970","_to":"12139"} +{"$label":"ACTS_IN","name":"Claude Kersek","type":"Role","_key":"14169","_from":"6970","_to":"10963"} +{"$label":"ACTS_IN","name":"Jack Wade","type":"Role","_key":"8635","_from":"6970","_to":"7008"} +{"$label":"ACTS_IN","name":"Jack Wade","type":"Role","_key":"8581","_from":"6970","_to":"6980"} +{"$label":"ACTS_IN","name":"Raj Khanna","type":"Role","_key":"91657","_from":"6971","_to":"54052"} +{"$label":"ACTS_IN","name":"Tarrant","type":"Role","_key":"51291","_from":"6971","_to":"33450"} +{"$label":"ACTS_IN","name":"Singh","type":"Role","_key":"47613","_from":"6971","_to":"31370"} +{"$label":"ACTS_IN","name":"Pollux","type":"Role","_key":"94750","_from":"6972","_to":"55802"} +{"$label":"ACTS_IN","name":"Weyland","type":"Role","_key":"15095","_from":"6972","_to":"11588"} +{"$label":"ACTS_IN","name":"Truman-Lodge","type":"Role","_key":"8572","_from":"6979","_to":"6975"} +{"$label":"ACTS_IN","name":"Professor Joe Butcher","type":"Role","_key":"8570","_from":"6978","_to":"6975"} +{"$label":"ACTS_IN","name":"Lupe Lamora","type":"Role","_key":"8566","_from":"6977","_to":"6975"} +{"$label":"ACTS_IN","name":"Pam Bouvier","type":"Role","_key":"8564","_from":"6976","_to":"6975"} +{"$label":"ACTS_IN","name":"Maggie Abbott Baldwin","type":"Role","_key":"10204","_from":"6976","_to":"8139"} +{"$label":"ACTS_IN","name":"Rayne Gant","type":"Role","_key":"64017","_from":"6977","_to":"39965"} +{"$label":"ACTS_IN","name":"Kitana","type":"Role","_key":"57168","_from":"6977","_to":"36274"} +{"$label":"ACTS_IN","name":"Princess Kitana","type":"Role","_key":"53051","_from":"6977","_to":"34342"} +{"$label":"ACTS_IN","name":"Do\u00f1a Julia","type":"Role","_key":"16495","_from":"6977","_to":"12457"} +{"$label":"ACTS_IN","name":"Julian Grendel","type":"Role","_key":"54603","_from":"6978","_to":"34978"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47071","_from":"6978","_to":"31043"} +{"$label":"ACTS_IN","name":"Dr. Robert Taylor","type":"Role","_key":"115028","_from":"6979","_to":"67733"} +{"$label":"ACTS_IN","name":"Chad Finletter","type":"Role","_key":"104616","_from":"6979","_to":"61532"} +{"$label":"ACTS_IN","name":"Father Luke Brophy","type":"Role","_key":"70305","_from":"6979","_to":"42835"} +{"$label":"DIRECTED","_key":"8592","_from":"6988","_to":"6980"} +{"$label":"ACTS_IN","name":"Severnaya Duty Officer","type":"Role","_key":"8591","_from":"6987","_to":"6980"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"8590","_from":"6986","_to":"6980"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8588","_from":"6985","_to":"6980"} +{"$label":"ACTS_IN","name":"Defense Minister Dmitri Mishkin","type":"Role","_key":"8586","_from":"6984","_to":"6980"} +{"$label":"ACTS_IN","name":"Boris Grishenko","type":"Role","_key":"8585","_from":"6983","_to":"6980"} +{"$label":"ACTS_IN","name":"Xenia Onatopp","type":"Role","_key":"8580","_from":"6982","_to":"6980"} +{"$label":"ACTS_IN","name":"Natalya Fyodorovna Simonova","type":"Role","_key":"8579","_from":"6981","_to":"6980"} +{"$label":"ACTS_IN","name":"Monique Aubertine","type":"Role","_key":"71514","_from":"6981","_to":"43337"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"67377","_from":"6981","_to":"41517"} +{"$label":"ACTS_IN","name":"Alex Jensen","type":"Role","_key":"42780","_from":"6981","_to":"28624"} +{"$label":"ACTS_IN","name":"Judy Arnolds","type":"Role","_key":"108879","_from":"6982","_to":"64347"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"105765","_from":"6982","_to":"62266"} +{"$label":"ACTS_IN","name":"Marnie Watson","type":"Role","_key":"98512","_from":"6982","_to":"58054"} +{"$label":"ACTS_IN","name":"Kristin Squires","type":"Role","_key":"97995","_from":"6982","_to":"57710"} +{"$label":"ACTS_IN","name":"Leeanne Magruder","type":"Role","_key":"89812","_from":"6982","_to":"53150"} +{"$label":"ACTS_IN","name":"Evelyn Stockard-Price","type":"Role","_key":"69494","_from":"6982","_to":"42456"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"67853","_from":"6982","_to":"41692"} +{"$label":"ACTS_IN","name":"Trillian St. James","type":"Role","_key":"53980","_from":"6982","_to":"34723"} +{"$label":"ACTS_IN","name":"Miss Elizabeth Burke","type":"Role","_key":"52791","_from":"6982","_to":"34242"} +{"$label":"ACTS_IN","name":"Lenore","type":"Role","_key":"50445","_from":"6982","_to":"32952"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"49660","_from":"6982","_to":"32497"} +{"$label":"ACTS_IN","name":"Dick Croner, Trudy's Assistant","type":"Role","_key":"103452","_from":"6983","_to":"60850"} +{"$label":"ACTS_IN","name":"Black Beauty (voice)","type":"Role","_key":"100627","_from":"6983","_to":"59333"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"61749","_from":"6983","_to":"38884"} +{"$label":"ACTS_IN","name":"Fegan Floop","type":"Role","_key":"60034","_from":"6983","_to":"37889"} +{"$label":"ACTS_IN","name":"Sandy Frink","type":"Role","_key":"55016","_from":"6983","_to":"35158"} +{"$label":"ACTS_IN","name":"Mr. Elton","type":"Role","_key":"27994","_from":"6983","_to":"20074"} +{"$label":"ACTS_IN","name":"Mick Jagged","type":"Role","_key":"10587","_from":"6983","_to":"8403"} +{"$label":"ACTS_IN","name":"B. B.","type":"Role","_key":"118144","_from":"6984","_to":"69440"} +{"$label":"ACTS_IN","name":"Le duc de Journiac","type":"Role","_key":"100100","_from":"6984","_to":"59039"} +{"$label":"ACTS_IN","name":"Vincent Cochet","type":"Role","_key":"95200","_from":"6984","_to":"56012"} +{"$label":"ACTS_IN","name":"Cmmdre. James 'Paladin' Taggart","type":"Role","_key":"62735","_from":"6984","_to":"39439"} +{"$label":"ACTS_IN","name":"Inspecteur Sauveur Cristini","type":"Role","_key":"62718","_from":"6984","_to":"39431"} +{"$label":"ACTS_IN","name":"Jean de Dunois","type":"Role","_key":"59902","_from":"6984","_to":"37823"} +{"$label":"ACTS_IN","name":"Uncle","type":"Role","_key":"59886","_from":"6984","_to":"37818"} +{"$label":"ACTS_IN","name":"Fouchet","type":"Role","_key":"56175","_from":"6984","_to":"35707"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"41177","_from":"6984","_to":"27708"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"36582","_from":"6984","_to":"24794"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"20842","_from":"6984","_to":"15247"} +{"$label":"ACTS_IN","name":"Aram","type":"Role","_key":"20671","_from":"6984","_to":"15110"} +{"$label":"ACTS_IN","name":"Jacques Chevalier","type":"Role","_key":"20643","_from":"6984","_to":"15095"} +{"$label":"ACTS_IN","name":"Insp. Richard","type":"Role","_key":"18613","_from":"6984","_to":"13776"} +{"$label":"ACTS_IN","name":"Anton Depeux","type":"Role","_key":"17897","_from":"6984","_to":"13319"} +{"$label":"ACTS_IN","name":"Jean Villeneuve","type":"Role","_key":"17608","_from":"6984","_to":"13147"} +{"$label":"ACTS_IN","name":"Prinzo","type":"Role","_key":"13510","_from":"6984","_to":"10513"} +{"$label":"ACTS_IN","name":"Dorothy Nettle","type":"Role","_key":"114702","_from":"6985","_to":"67565"} +{"$label":"ACTS_IN","name":"Caroline Dupayne","type":"Role","_key":"113609","_from":"6985","_to":"66954"} +{"$label":"ACTS_IN","name":"Mrs. Weston","type":"Role","_key":"89068","_from":"6985","_to":"52764"} +{"$label":"ACTS_IN","name":"Miss Moneypenny","type":"Role","_key":"8639","_from":"6985","_to":"7008"} +{"$label":"ACTS_IN","name":"Charles Richmond","type":"Role","_key":"112283","_from":"6987","_to":"66300"} +{"$label":"ACTS_IN","name":"Martin, le majordome de James","type":"Role","_key":"57145","_from":"6987","_to":"36269"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"40060","_from":"6987","_to":"27036"} +{"$label":"DIRECTED","_key":"88648","_from":"6988","_to":"52530"} +{"$label":"DIRECTED","_key":"71509","_from":"6988","_to":"43337"} +{"$label":"DIRECTED","_key":"63412","_from":"6988","_to":"39725"} +{"$label":"DIRECTED","_key":"57361","_from":"6988","_to":"36369"} +{"$label":"DIRECTED","_key":"53231","_from":"6988","_to":"34424"} +{"$label":"DIRECTED","_key":"14733","_from":"6988","_to":"11325"} +{"$label":"ACTS_IN","name":"Massie","type":"Role","_key":"8603","_from":"6994","_to":"6989"} +{"$label":"ACTS_IN","name":"Janice Wallace","type":"Role","_key":"8602","_from":"6993","_to":"6989"} +{"$label":"ACTS_IN","name":"John Coleridge","type":"Role","_key":"8600","_from":"6992","_to":"6989"} +{"$label":"ACTS_IN","name":"Claire Spence","type":"Role","_key":"8597","_from":"6991","_to":"6989"} +{"$label":"ACTS_IN","name":"Jamal Wallace","type":"Role","_key":"8595","_from":"6990","_to":"6989"} +{"$label":"ACTS_IN","name":"Ernie Davis","type":"Role","_key":"99630","_from":"6990","_to":"58739"} +{"$label":"ACTS_IN","name":"Rock","type":"Role","_key":"91359","_from":"6990","_to":"53883"} +{"$label":"ACTS_IN","name":"Kenyon Stone","type":"Role","_key":"45951","_from":"6990","_to":"30380"} +{"$label":"ACTS_IN","name":"Elaine Goodale","type":"Role","_key":"94648","_from":"6991","_to":"55765"} +{"$label":"ACTS_IN","name":"Chloe Hamon","type":"Role","_key":"91832","_from":"6991","_to":"54174"} +{"$label":"ACTS_IN","name":"Amy Alden","type":"Role","_key":"67730","_from":"6991","_to":"41647"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"67587","_from":"6991","_to":"41608"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"65182","_from":"6991","_to":"40485"} +{"$label":"ACTS_IN","name":"Mackenzie Siler","type":"Role","_key":"62549","_from":"6991","_to":"39367"} +{"$label":"ACTS_IN","name":"Robyn Lee","type":"Role","_key":"52582","_from":"6991","_to":"34172"} +{"$label":"ACTS_IN","name":"Mary D'Annunzio","type":"Role","_key":"13243","_from":"6991","_to":"10307"} +{"$label":"ACTS_IN","name":"Polexia Aphrodisia","type":"Role","_key":"9243","_from":"6991","_to":"7466"} +{"$label":"ACTS_IN","name":"Flora McGrath","type":"Role","_key":"8620","_from":"6991","_to":"7002"} +{"$label":"ACTS_IN","name":"Herv\u00e9 Joncour","type":"Role","_key":"101656","_from":"6992","_to":"59832"} +{"$label":"ACTS_IN","name":"Toby Grace","type":"Role","_key":"95684","_from":"6992","_to":"56281"} +{"$label":"ACTS_IN","name":"Justin Pendleton","type":"Role","_key":"72586","_from":"6992","_to":"43767"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"49924","_from":"6992","_to":"32684"} +{"$label":"ACTS_IN","name":"Blake","type":"Role","_key":"14784","_from":"6992","_to":"11372"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"12460","_from":"6992","_to":"9762"} +{"$label":"ACTS_IN","name":"Carly","type":"Role","_key":"34432","_from":"6993","_to":"23588"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"120282","_from":"6994","_to":"70628"} +{"$label":"ACTS_IN","name":"Greg Lanser","type":"Role","_key":"116151","_from":"6994","_to":"68391"} +{"$label":"ACTS_IN","name":"Drake","type":"Role","_key":"29426","_from":"6994","_to":"20874"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"8706","_from":"6994","_to":"7056"} +{"$label":"ACTS_IN","name":"Angus","type":"Role","_key":"8616","_from":"7001","_to":"6995"} +{"$label":"ACTS_IN","name":"Henrietta","type":"Role","_key":"8615","_from":"7000","_to":"6995"} +{"$label":"ACTS_IN","name":"Father Gerald","type":"Role","_key":"8614","_from":"6999","_to":"6995"} +{"$label":"ACTS_IN","name":"Scarlett","type":"Role","_key":"8613","_from":"6998","_to":"6995"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"8612","_from":"6997","_to":"6995"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"8608","_from":"6996","_to":"6995"} +{"$label":"ACTS_IN","name":"Alan the Pipe","type":"Role","_key":"104433","_from":"6996","_to":"61430"} +{"$label":"ACTS_IN","name":"Richard Cannerly","type":"Role","_key":"90876","_from":"6996","_to":"53619"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"64413","_from":"6996","_to":"40145"} +{"$label":"ACTS_IN","name":"Winnie","type":"Role","_key":"110578","_from":"6998","_to":"65331"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"116271","_from":"6999","_to":"68452"} +{"$label":"ACTS_IN","name":"Reverend Walter Goodfellow","type":"Role","_key":"55635","_from":"6999","_to":"35425"} +{"$label":"ACTS_IN","name":"Emile Mondavarious","type":"Role","_key":"55195","_from":"6999","_to":"35209"} +{"$label":"ACTS_IN","name":"Johnny English","type":"Role","_key":"54170","_from":"6999","_to":"34805"} +{"$label":"ACTS_IN","name":"Dexter Hayman","type":"Role","_key":"52621","_from":"6999","_to":"34186"} +{"$label":"ACTS_IN","name":"Zazu the Hornbill","type":"Role","_key":"50227","_from":"6999","_to":"32826"} +{"$label":"ACTS_IN","name":"Mr. Bean","type":"Role","_key":"12493","_from":"6999","_to":"9790"} +{"$label":"ACTS_IN","name":"Mr. Bean","type":"Role","_key":"12393","_from":"6999","_to":"9711"} +{"$label":"ACTS_IN","name":"Molly Cartwright","type":"Role","_key":"116167","_from":"7000","_to":"68402"} +{"$label":"ACTS_IN","name":"Miss Bagstock","type":"Role","_key":"65429","_from":"7000","_to":"40563"} +{"$label":"ACTS_IN","name":"Questular Rontok","type":"Role","_key":"46729","_from":"7000","_to":"30837"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"12463","_from":"7000","_to":"9762"} +{"$label":"DIRECTED","_key":"8628","_from":"7007","_to":"7002"} +{"$label":"ACTS_IN","name":"Chief Nihe","type":"Role","_key":"8627","_from":"7006","_to":"7002"} +{"$label":"ACTS_IN","name":"Nessie","type":"Role","_key":"8625","_from":"7005","_to":"7002"} +{"$label":"ACTS_IN","name":"Aunt Morag","type":"Role","_key":"8622","_from":"7004","_to":"7002"} +{"$label":"ACTS_IN","name":"Hira","type":"Role","_key":"8621","_from":"7003","_to":"7002"} +{"$label":"ACTS_IN","name":"Puss","type":"Role","_key":"96634","_from":"7004","_to":"56832"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"9736","_from":"7004","_to":"7809"} +{"$label":"ACTS_IN","name":"Auntie Diane","type":"Role","_key":"97642","_from":"7005","_to":"57493"} +{"$label":"ACTS_IN","name":"Nola","type":"Role","_key":"96976","_from":"7005","_to":"57043"} +{"$label":"DIRECTED","_key":"96640","_from":"7007","_to":"56832"} +{"$label":"DIRECTED","_key":"66898","_from":"7007","_to":"41302"} +{"$label":"DIRECTED","_key":"24079","_from":"7007","_to":"17460"} +{"$label":"DIRECTED","_key":"8644","_from":"7014","_to":"7008"} +{"$label":"ACTS_IN","name":"General Bukharin","type":"Role","_key":"8643","_from":"7013","_to":"7008"} +{"$label":"ACTS_IN","name":"Minister of Defence","type":"Role","_key":"8642","_from":"7012","_to":"7008"} +{"$label":"ACTS_IN","name":"Admiral Roebuck","type":"Role","_key":"8641","_from":"7011","_to":"7008"} +{"$label":"ACTS_IN","name":"Henry Gupta","type":"Role","_key":"8633","_from":"7010","_to":"7008"} +{"$label":"ACTS_IN","name":"Paris Carver","type":"Role","_key":"8632","_from":"7009","_to":"7008"} +{"$label":"ACTS_IN","name":"Mother \/ Other Mother (voice)","type":"Role","_key":"101975","_from":"7009","_to":"60008"} +{"$label":"ACTS_IN","name":"Andrea Flak","type":"Role","_key":"92334","_from":"7009","_to":"54491"} +{"$label":"ACTS_IN","name":"Katherine 'Kiki' Tango","type":"Role","_key":"55084","_from":"7009","_to":"35180"} +{"$label":"ACTS_IN","name":"Becky Foxx","type":"Role","_key":"53652","_from":"7009","_to":"34605"} +{"$label":"ACTS_IN","name":"Jordan Ripps","type":"Role","_key":"36703","_from":"7009","_to":"24881"} +{"$label":"ACTS_IN","name":"Kurt Longjohn","type":"Role","_key":"35447","_from":"7010","_to":"24109"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"14790","_from":"7010","_to":"11372"} +{"$label":"ACTS_IN","name":"Henry Ponsonby","type":"Role","_key":"113266","_from":"7011","_to":"66730"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103431","_from":"7011","_to":"60839"} +{"$label":"ACTS_IN","name":"Lord John Bradley","type":"Role","_key":"13304","_from":"7011","_to":"10353"} +{"$label":"ACTS_IN","name":"Nigel Jenkins","type":"Role","_key":"121061","_from":"7012","_to":"71095"} +{"$label":"ACTS_IN","name":"Desmond Arding","type":"Role","_key":"63398","_from":"7012","_to":"39719"} +{"$label":"ACTS_IN","name":"Henry Hobbs","type":"Role","_key":"116023","_from":"7013","_to":"68318"} +{"$label":"DIRECTED","_key":"94341","_from":"7014","_to":"55553"} +{"$label":"DIRECTED","_key":"89925","_from":"7014","_to":"53207"} +{"$label":"DIRECTED","_key":"72412","_from":"7014","_to":"43714"} +{"$label":"DIRECTED","_key":"57537","_from":"7014","_to":"36453"} +{"$label":"DIRECTED","_key":"55950","_from":"7014","_to":"35578"} +{"$label":"DIRECTED","_key":"49876","_from":"7014","_to":"32650"} +{"$label":"DIRECTED","_key":"45284","_from":"7014","_to":"30040"} +{"$label":"DIRECTED","_key":"24064","_from":"7014","_to":"17452"} +{"$label":"ACTS_IN","name":"Sigvard","type":"Role","_key":"8664","_from":"7033","_to":"7016"} +{"$label":"ACTS_IN","name":"M\u00e5ne","type":"Role","_key":"8663","_from":"7032","_to":"7016"} +{"$label":"ACTS_IN","name":"Fredrik","type":"Role","_key":"8662","_from":"7031","_to":"7016"} +{"$label":"ACTS_IN","name":"Margit","type":"Role","_key":"8661","_from":"7030","_to":"7016"} +{"$label":"ACTS_IN","name":"Ragnar","type":"Role","_key":"8660","_from":"7029","_to":"7016"} +{"$label":"ACTS_IN","name":"Signe","type":"Role","_key":"8658","_from":"7028","_to":"7016"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"8657","_from":"7027","_to":"7016"} +{"$label":"ACTS_IN","name":"Lasse","type":"Role","_key":"8656","_from":"7026","_to":"7016"} +{"$label":"ACTS_IN","name":"Klas","type":"Role","_key":"8655","_from":"7025","_to":"7016"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"8654","_from":"7024","_to":"7016"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"8653","_from":"7023","_to":"7016"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"8652","_from":"7022","_to":"7016"} +{"$label":"ACTS_IN","name":"G\u00f6ran","type":"Role","_key":"8651","_from":"7021","_to":"7016"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"8650","_from":"7020","_to":"7016"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"8649","_from":"7019","_to":"7016"} +{"$label":"DIRECTED","_key":"8646","_from":"7018","_to":"7016"} +{"$label":"DIRECTED","_key":"8645","_from":"7017","_to":"7016"} +{"$label":"DIRECTED","_key":"87980","_from":"7017","_to":"52238"} +{"$label":"DIRECTED","_key":"71180","_from":"7017","_to":"43201"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"90578","_from":"7021","_to":"53496"} +{"$label":"ACTS_IN","name":"Ake Larstam","type":"Role","_key":"41171","_from":"7021","_to":"27703"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109902","_from":"7027","_to":"64936"} +{"$label":"ACTS_IN","name":"Pierre Tanguy","type":"Role","_key":"68477","_from":"7031","_to":"42004"} +{"$label":"ACTS_IN","name":"Karen Higgens","type":"Role","_key":"8681","_from":"7048","_to":"7034"} +{"$label":"ACTS_IN","name":"Wettkampfleiter","type":"Role","_key":"8680","_from":"7047","_to":"7034"} +{"$label":"ACTS_IN","name":"Lako's Lover","type":"Role","_key":"8679","_from":"7046","_to":"7034"} +{"$label":"ACTS_IN","name":"Schr\u00f6der, Fahrplanexperte","type":"Role","_key":"8678","_from":"7045","_to":"7034"} +{"$label":"ACTS_IN","name":"Schwedische Polizistin","type":"Role","_key":"8677","_from":"7044","_to":"7034"} +{"$label":"ACTS_IN","name":"Karl-Heinz, Inari-Fan","type":"Role","_key":"8676","_from":"7043","_to":"7034"} +{"$label":"ACTS_IN","name":"Lako, Schlafwagenschaffner","type":"Role","_key":"8675","_from":"7042","_to":"7034"} +{"$label":"ACTS_IN","name":"Harry, Assistent","type":"Role","_key":"8674","_from":"7041","_to":"7034"} +{"$label":"ACTS_IN","name":"Schachspielerin","type":"Role","_key":"8673","_from":"7040","_to":"7034"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"8672","_from":"7039","_to":"7034"} +{"$label":"ACTS_IN","name":"Kalle, Entlassener","type":"Role","_key":"8671","_from":"7038","_to":"7034"} +{"$label":"ACTS_IN","name":"Kommissar Franck","type":"Role","_key":"8668","_from":"7037","_to":"7034"} +{"$label":"ACTS_IN","name":"Sirpa Salonen","type":"Role","_key":"8667","_from":"7036","_to":"7034"} +{"$label":"DIRECTED","_key":"8665","_from":"7035","_to":"7034"} +{"$label":"ACTS_IN","name":"Richard Lorentz","type":"Role","_key":"68368","_from":"7037","_to":"41957"} +{"$label":"ACTS_IN","name":"Sam Hanks","type":"Role","_key":"63954","_from":"7037","_to":"39947"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"54359","_from":"7037","_to":"34870"} +{"$label":"ACTS_IN","name":"Paula's Vater","type":"Role","_key":"46916","_from":"7037","_to":"30934"} +{"$label":"ACTS_IN","name":"Co-Pilot","type":"Role","_key":"37113","_from":"7037","_to":"25144"} +{"$label":"ACTS_IN","name":"Richard Lubanski","type":"Role","_key":"14269","_from":"7037","_to":"11039"} +{"$label":"ACTS_IN","name":"Ali \u00d6zkan","type":"Role","_key":"88383","_from":"7041","_to":"52391"} +{"$label":"ACTS_IN","name":"B\u00f6ller","type":"Role","_key":"71390","_from":"7041","_to":"43298"} +{"$label":"ACTS_IN","name":"Tarik","type":"Role","_key":"68541","_from":"7041","_to":"42028"} +{"$label":"ACTS_IN","name":"Hermes","type":"Role","_key":"67715","_from":"7041","_to":"41641"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"55451","_from":"7041","_to":"35342"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"54461","_from":"7041","_to":"34920"} +{"$label":"ACTS_IN","name":"Kommissar Menemenci","type":"Role","_key":"52702","_from":"7041","_to":"34212"} +{"$label":"ACTS_IN","name":"K\u00fcmmel","type":"Role","_key":"52611","_from":"7041","_to":"34185"} +{"$label":"ACTS_IN","name":"R\u00f6mischer Sklavenj\u00e4ger","type":"Role","_key":"46292","_from":"7041","_to":"30593"} +{"$label":"ACTS_IN","name":"Einsatzleiter Feuerwehr","type":"Role","_key":"13130","_from":"7041","_to":"10231"} +{"$label":"ACTS_IN","name":"Herr Hauser","type":"Role","_key":"49216","_from":"7042","_to":"32242"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71894","_from":"7043","_to":"43491"} +{"$label":"ACTS_IN","name":"Heinz","type":"Role","_key":"66817","_from":"7043","_to":"41274"} +{"$label":"ACTS_IN","name":"Senator R\u00f6der","type":"Role","_key":"40029","_from":"7043","_to":"27025"} +{"$label":"ACTS_IN","name":"Sepp Herberger","type":"Role","_key":"14274","_from":"7043","_to":"11039"} +{"$label":"ACTS_IN","name":"Seff","type":"Role","_key":"10600","_from":"7043","_to":"8414"} +{"$label":"ACTS_IN","name":"Juha","type":"Role","_key":"50663","_from":"7046","_to":"33075"} +{"$label":"ACTS_IN","name":"Chipper","type":"Role","_key":"8695","_from":"7055","_to":"7049"} +{"$label":"ACTS_IN","name":"Hollywood","type":"Role","_key":"8694","_from":"7054","_to":"7049"} +{"$label":"ACTS_IN","name":"Wolfman","type":"Role","_key":"8690","_from":"7053","_to":"7049"} +{"$label":"ACTS_IN","name":"Cougar","type":"Role","_key":"8689","_from":"7052","_to":"7049"} +{"$label":"ACTS_IN","name":"Nick 'Goose' Bradshaw","type":"Role","_key":"8686","_from":"7051","_to":"7049"} +{"$label":"ACTS_IN","name":"Charlotte 'Charlie' Blackwood","type":"Role","_key":"8684","_from":"7050","_to":"7049"} +{"$label":"ACTS_IN","name":"Jennie Adamson","type":"Role","_key":"104912","_from":"7050","_to":"61735"} +{"$label":"ACTS_IN","name":"A.D.A. Kathryn Murphy","type":"Role","_key":"66370","_from":"7050","_to":"41050"} +{"$label":"ACTS_IN","name":"Rachel Lapp","type":"Role","_key":"52822","_from":"7050","_to":"34251"} +{"$label":"ACTS_IN","name":"Kim Taft","type":"Role","_key":"30828","_from":"7050","_to":"21608"} +{"$label":"ACTS_IN","name":"Brains","type":"Role","_key":"101157","_from":"7051","_to":"59587"} +{"$label":"ACTS_IN","name":"Gilbert Lowell","type":"Role","_key":"98296","_from":"7051","_to":"57901"} +{"$label":"ACTS_IN","name":"Chase Matthews","type":"Role","_key":"66622","_from":"7051","_to":"41181"} +{"$label":"ACTS_IN","name":"Jim Paretta","type":"Role","_key":"61224","_from":"7051","_to":"38671"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"51887","_from":"7051","_to":"33850"} +{"$label":"ACTS_IN","name":"Bill Armstrong","type":"Role","_key":"16913","_from":"7051","_to":"12715"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"9746","_from":"7051","_to":"7817"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Harlan","type":"Role","_key":"115558","_from":"7052","_to":"68031"} +{"$label":"ACTS_IN","name":"Dennis Guilder","type":"Role","_key":"50772","_from":"7052","_to":"33134"} +{"$label":"DIRECTED","_key":"73045","_from":"7052","_to":"43959"} +{"$label":"DIRECTED","_key":"65084","_from":"7052","_to":"40432"} +{"$label":"DIRECTED","_key":"56923","_from":"7052","_to":"36124"} +{"$label":"DIRECTED","_key":"52705","_from":"7052","_to":"34216"} +{"$label":"ACTS_IN","name":"Hubie","type":"Role","_key":"106558","_from":"7053","_to":"62788"} +{"$label":"ACTS_IN","name":"Sergeant Baker","type":"Role","_key":"20384","_from":"7054","_to":"14930"} +{"$label":"ACTS_IN","name":"Caleb Colton","type":"Role","_key":"72517","_from":"7055","_to":"43745"} +{"$label":"ACTS_IN","name":"Frankie Taglialucci","type":"Role","_key":"41516","_from":"7055","_to":"27891"} +{"$label":"ACTS_IN","name":"Detec. Vernon Coyle","type":"Role","_key":"25990","_from":"7055","_to":"18688"} +{"$label":"ACTS_IN","name":"Stanley Cunningham","type":"Role","_key":"8707","_from":"7062","_to":"7056"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"8705","_from":"7061","_to":"7056"} +{"$label":"ACTS_IN","name":"Mr. Collins","type":"Role","_key":"8704","_from":"7060","_to":"7056"} +{"$label":"ACTS_IN","name":"Kyra Collins","type":"Role","_key":"8701","_from":"7059","_to":"7056"} +{"$label":"ACTS_IN","name":"Anna Crowe","type":"Role","_key":"8700","_from":"7058","_to":"7056"} +{"$label":"DIRECTED","_key":"8696","_from":"7057","_to":"7056"} +{"$label":"DIRECTED","_key":"61619","_from":"7057","_to":"38834"} +{"$label":"DIRECTED","_key":"56228","_from":"7057","_to":"35727"} +{"$label":"DIRECTED","_key":"55795","_from":"7057","_to":"35507"} +{"$label":"DIRECTED","_key":"50289","_from":"7057","_to":"32858"} +{"$label":"DIRECTED","_key":"45235","_from":"7057","_to":"30028"} +{"$label":"DIRECTED","_key":"22689","_from":"7057","_to":"16465"} +{"$label":"ACTS_IN","name":"Vick Ran","type":"Role","_key":"55786","_from":"7057","_to":"35507"} +{"$label":"ACTS_IN","name":"Ray Reddy","type":"Role","_key":"22695","_from":"7057","_to":"16465"} +{"$label":"ACTS_IN","name":"Lady Anne Fairfax","type":"Role","_key":"115885","_from":"7058","_to":"68229"} +{"$label":"ACTS_IN","name":"Jane Austen","type":"Role","_key":"114870","_from":"7058","_to":"67661"} +{"$label":"ACTS_IN","name":"Grace Scott","type":"Role","_key":"96706","_from":"7058","_to":"56883"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"90489","_from":"7058","_to":"53461"} +{"$label":"ACTS_IN","name":"Rosemary Cross","type":"Role","_key":"70548","_from":"7058","_to":"42932"} +{"$label":"ACTS_IN","name":"Ruth Lang","type":"Role","_key":"69839","_from":"7058","_to":"42613"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"58118","_from":"7058","_to":"36774"} +{"$label":"ACTS_IN","name":"Agatha Christie","type":"Role","_key":"41748","_from":"7058","_to":"28015"} +{"$label":"ACTS_IN","name":"Ria","type":"Role","_key":"28349","_from":"7058","_to":"20286"} +{"$label":"ACTS_IN","name":"Francesca Fachini","type":"Role","_key":"115168","_from":"7059","_to":"67820"} +{"$label":"ACTS_IN","name":"Mary 'Mouse' Bedford","type":"Role","_key":"113331","_from":"7059","_to":"66763"} +{"$label":"ACTS_IN","name":"Sam Walczak","type":"Role","_key":"108761","_from":"7059","_to":"64293"} +{"$label":"ACTS_IN","name":"Kristen Taylor","type":"Role","_key":"100480","_from":"7059","_to":"59246"} +{"$label":"ACTS_IN","name":"Pampinea","type":"Role","_key":"99627","_from":"7059","_to":"58736"} +{"$label":"ACTS_IN","name":"Young Ethel Ann","type":"Role","_key":"97750","_from":"7059","_to":"57551"} +{"$label":"ACTS_IN","name":"JJ French","type":"Role","_key":"65423","_from":"7059","_to":"40563"} +{"$label":"ACTS_IN","name":"Yoshioka","type":"Role","_key":"8719","_from":"7073","_to":"7063"} +{"$label":"ACTS_IN","name":"Chang","type":"Role","_key":"8718","_from":"7072","_to":"7063"} +{"$label":"ACTS_IN","name":"Eastern Jewel","type":"Role","_key":"8716","_from":"7071","_to":"7063"} +{"$label":"ACTS_IN","name":"Chen Pao Shen","type":"Role","_key":"8715","_from":"7070","_to":"7063"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"8714","_from":"7069","_to":"7063"} +{"$label":"ACTS_IN","name":"Amakasu","type":"Role","_key":"8713","_from":"7068","_to":"7063"} +{"$label":"ACTS_IN","name":"Big Li","type":"Role","_key":"8712","_from":"7067","_to":"7063"} +{"$label":"ACTS_IN","name":"Wang Jung","type":"Role","_key":"8711","_from":"7066","_to":"7063"} +{"$label":"ACTS_IN","name":"Pu Yi","type":"Role","_key":"8709","_from":"7065","_to":"7063"} +{"$label":"DIRECTED","_key":"8708","_from":"7064","_to":"7063"} +{"$label":"DIRECTED","_key":"100772","_from":"7064","_to":"59411"} +{"$label":"DIRECTED","_key":"49570","_from":"7064","_to":"32457"} +{"$label":"DIRECTED","_key":"28823","_from":"7064","_to":"20607"} +{"$label":"DIRECTED","_key":"14942","_from":"7064","_to":"11483"} +{"$label":"DIRECTED","_key":"14569","_from":"7064","_to":"11233"} +{"$label":"DIRECTED","_key":"12472","_from":"7064","_to":"9762"} +{"$label":"ACTS_IN","name":"Joey Tai","type":"Role","_key":"67317","_from":"7065","_to":"41493"} +{"$label":"ACTS_IN","name":"Li Chang","type":"Role","_key":"63280","_from":"7065","_to":"39669"} +{"$label":"ACTS_IN","name":"Shiwan Khan","type":"Role","_key":"51109","_from":"7065","_to":"33346"} +{"$label":"ACTS_IN","name":"Song Liling","type":"Role","_key":"13059","_from":"7065","_to":"10181"} +{"$label":"ACTS_IN","name":"Hwei-Lan Gao - Ma","type":"Role","_key":"119676","_from":"7066","_to":"70290"} +{"$label":"ACTS_IN","name":"Masu","type":"Role","_key":"55121","_from":"7066","_to":"35190"} +{"$label":"ACTS_IN","name":"Frau Yi","type":"Role","_key":"32881","_from":"7066","_to":"22819"} +{"$label":"ACTS_IN","name":"Noelle","type":"Role","_key":"18520","_from":"7066","_to":"13709"} +{"$label":"DIRECTED","_key":"64789","_from":"7066","_to":"40314"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"51125","_from":"7067","_to":"33352"} +{"$label":"ACTS_IN","name":"Wang Chi","type":"Role","_key":"45558","_from":"7067","_to":"30161"} +{"$label":"ACTS_IN","name":"Capt. Yonoi","type":"Role","_key":"72906","_from":"7068","_to":"43905"} +{"$label":"ACTS_IN","name":"Grandpa Mori Shintaro","type":"Role","_key":"117944","_from":"7070","_to":"69327"} +{"$label":"ACTS_IN","name":"Grandpa Mori Tanaka","type":"Role","_key":"108641","_from":"7070","_to":"64208"} +{"$label":"ACTS_IN","name":"Harry Yung","type":"Role","_key":"67324","_from":"7070","_to":"41493"} +{"$label":"ACTS_IN","name":"Howard Birack","type":"Role","_key":"51123","_from":"7070","_to":"33352"} +{"$label":"ACTS_IN","name":"Egg Shen","type":"Role","_key":"45560","_from":"7070","_to":"30161"} +{"$label":"ACTS_IN","name":"Chinese 'Amban'","type":"Role","_key":"11569","_from":"7070","_to":"9086"} +{"$label":"ACTS_IN","name":"Brushogun","type":"Role","_key":"108282","_from":"7072","_to":"63995"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"106333","_from":"7072","_to":"62646"} +{"$label":"ACTS_IN","name":"Funekei Yoshida","type":"Role","_key":"93031","_from":"7072","_to":"54849"} +{"$label":"ACTS_IN","name":"Roshi","type":"Role","_key":"58349","_from":"7072","_to":"36877"} +{"$label":"ACTS_IN","name":"Shang Tsung","type":"Role","_key":"53049","_from":"7072","_to":"34342"} +{"$label":"ACTS_IN","name":"Eddie Sakamura","type":"Role","_key":"45632","_from":"7072","_to":"30210"} +{"$label":"ACTS_IN","name":"The Baron","type":"Role","_key":"16453","_from":"7072","_to":"12429"} +{"$label":"ACTS_IN","name":"Krull","type":"Role","_key":"10343","_from":"7072","_to":"8229"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"8732","_from":"7084","_to":"7074"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"8730","_from":"7083","_to":"7074"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"8729","_from":"7082","_to":"7074"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"8728","_from":"7081","_to":"7074"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"8726","_from":"7080","_to":"7074"} +{"$label":"ACTS_IN","name":"Dianne","type":"Role","_key":"8724","_from":"7079","_to":"7074"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"8723","_from":"7078","_to":"7074"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"8722","_from":"7077","_to":"7074"} +{"$label":"ACTS_IN","name":"Shaun","type":"Role","_key":"8721","_from":"7076","_to":"7074"} +{"$label":"DIRECTED","_key":"8720","_from":"7075","_to":"7074"} +{"$label":"ACTS_IN","name":"Photo Booth Zombie","type":"Role","_key":"71555","_from":"7075","_to":"43346"} +{"$label":"ACTS_IN","name":"Shelf Stacker","type":"Role","_key":"33127","_from":"7075","_to":"22937"} +{"$label":"DIRECTED","_key":"33107","_from":"7075","_to":"22937"} +{"$label":"ACTS_IN","name":"Inspector Thompson","type":"Role","_key":"113227","_from":"7076","_to":"66717"} +{"$label":"ACTS_IN","name":"Odd","type":"Role","_key":"100392","_from":"7076","_to":"59203"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"94863","_from":"7076","_to":"55857"} +{"$label":"ACTS_IN","name":"Scotty","type":"Role","_key":"94687","_from":"7076","_to":"55786"} +{"$label":"ACTS_IN","name":"Sidney Young","type":"Role","_key":"92517","_from":"7076","_to":"54610"} +{"$label":"ACTS_IN","name":"Photo Booth Zombie","type":"Role","_key":"71554","_from":"7076","_to":"43346"} +{"$label":"ACTS_IN","name":"Mr Nice","type":"Role","_key":"63587","_from":"7076","_to":"39786"} +{"$label":"ACTS_IN","name":"Reepicheep (Voice)","type":"Role","_key":"61193","_from":"7076","_to":"38660"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"57424","_from":"7076","_to":"36404"} +{"$label":"ACTS_IN","name":"Buck (voice)","type":"Role","_key":"49272","_from":"7076","_to":"32270"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"47536","_from":"7076","_to":"31324"} +{"$label":"ACTS_IN","name":"Nicholas Angel","type":"Role","_key":"33108","_from":"7076","_to":"22937"} +{"$label":"ACTS_IN","name":"Benji","type":"Role","_key":"11410","_from":"7076","_to":"8981"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"118260","_from":"7077","_to":"69515"} +{"$label":"ACTS_IN","name":"Thomson","type":"Role","_key":"113231","_from":"7077","_to":"66717"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"108927","_from":"7077","_to":"64373"} +{"$label":"ACTS_IN","name":"PC Danny Butterman","type":"Role","_key":"33109","_from":"7077","_to":"22937"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"114866","_from":"7078","_to":"67660"} +{"$label":"ACTS_IN","name":"Rhiannon","type":"Role","_key":"101047","_from":"7078","_to":"59545"} +{"$label":"ACTS_IN","name":"Mrs Hardy","type":"Role","_key":"63589","_from":"7078","_to":"39786"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"57382","_from":"7078","_to":"36369"} +{"$label":"ACTS_IN","name":"Chloe McCallister","type":"Role","_key":"111882","_from":"7079","_to":"66047"} +{"$label":"ACTS_IN","name":"Sctanley","type":"Role","_key":"121407","_from":"7080","_to":"71336"} +{"$label":"ACTS_IN","name":"Many Characters","type":"Role","_key":"120996","_from":"7083","_to":"71072"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"97182","_from":"7083","_to":"57169"} +{"$label":"ACTS_IN","name":"Benjamin Denton \/ Papa Lazarou \/ Pamela Doove \/ Ross Gaines \/ Cathy Carter-Smith \/ Ollie Plimsoles \/ Vinnie Whytenshawe \/ Mr Lisgoe \/ Bernice Woodall \/ Dean Tavalouris \/ Edward Tattsyrup \/ Geoff Tipps \/ Judee Levinson","type":"Role","_key":"38683","_from":"7083","_to":"26132"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"18151","_from":"7083","_to":"13461"} +{"$label":"ACTS_IN","name":"Cath","type":"Role","_key":"117307","_from":"7084","_to":"68994"} +{"$label":"ACTS_IN","name":"Mary Proudfoot (as Jessica Stevenson)","type":"Role","_key":"93640","_from":"7084","_to":"55126"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"60835","_from":"7084","_to":"38430"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"60371","_from":"7084","_to":"38073"} +{"$label":"ACTS_IN","name":"Hillman","type":"Role","_key":"8746","_from":"7101","_to":"7087"} +{"$label":"ACTS_IN","name":"Albert Ackenthorpe","type":"Role","_key":"8745","_from":"7100","_to":"7087"} +{"$label":"ACTS_IN","name":"Alexander Eastley","type":"Role","_key":"8744","_from":"7099","_to":"7087"} +{"$label":"ACTS_IN","name":"Jim Stringer","type":"Role","_key":"8743","_from":"7098","_to":"7087"} +{"$label":"ACTS_IN","name":"Mrs. Kidder","type":"Role","_key":"8742","_from":"7097","_to":"7087"} +{"$label":"ACTS_IN","name":"Brian Eastley","type":"Role","_key":"8741","_from":"7096","_to":"7087"} +{"$label":"ACTS_IN","name":"Harold Ackenthorpe","type":"Role","_key":"8740","_from":"7095","_to":"7087"} +{"$label":"ACTS_IN","name":"Inspector Craddock","type":"Role","_key":"8739","_from":"7094","_to":"7087"} +{"$label":"ACTS_IN","name":"Cedric Ackenthorpe","type":"Role","_key":"8738","_from":"7093","_to":"7087"} +{"$label":"ACTS_IN","name":"Luther Ackenthorpe","type":"Role","_key":"8737","_from":"7092","_to":"7087"} +{"$label":"ACTS_IN","name":"Emma Ackenthorpe","type":"Role","_key":"8736","_from":"7091","_to":"7087"} +{"$label":"ACTS_IN","name":"Dr. Paul Quimper","type":"Role","_key":"8735","_from":"7090","_to":"7087"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"8734","_from":"7089","_to":"7087"} +{"$label":"DIRECTED","_key":"8733","_from":"7088","_to":"7087"} +{"$label":"DIRECTED","_key":"109272","_from":"7088","_to":"64542"} +{"$label":"DIRECTED","_key":"34444","_from":"7088","_to":"23596"} +{"$label":"DIRECTED","_key":"8905","_from":"7088","_to":"7227"} +{"$label":"DIRECTED","_key":"8896","_from":"7088","_to":"7221"} +{"$label":"DIRECTED","_key":"8763","_from":"7088","_to":"7102"} +{"$label":"ACTS_IN","name":"Madame Arcati","type":"Role","_key":"118599","_from":"7089","_to":"69736"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41301","_from":"7089","_to":"27765"} +{"$label":"ACTS_IN","name":"Miss Gaulswallow","type":"Role","_key":"24702","_from":"7089","_to":"17866"} +{"$label":"ACTS_IN","name":"Mistress Quickly","type":"Role","_key":"11656","_from":"7089","_to":"9155"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"8906","_from":"7089","_to":"7227"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"8897","_from":"7089","_to":"7221"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"8747","_from":"7089","_to":"7102"} +{"$label":"ACTS_IN","name":"John Waldron","type":"Role","_key":"118162","_from":"7090","_to":"69448"} +{"$label":"ACTS_IN","name":"Bart Hunter","type":"Role","_key":"118029","_from":"7090","_to":"69380"} +{"$label":"ACTS_IN","name":"Deputy Sheriff Jesse Bard","type":"Role","_key":"116803","_from":"7090","_to":"68770"} +{"$label":"ACTS_IN","name":"Vic Hansbro","type":"Role","_key":"115611","_from":"7090","_to":"68059"} +{"$label":"ACTS_IN","name":"Monsignor Franchino","type":"Role","_key":"115254","_from":"7090","_to":"67870"} +{"$label":"ACTS_IN","name":"Ned Sharp","type":"Role","_key":"112096","_from":"7090","_to":"66188"} +{"$label":"ACTS_IN","name":"Bombardier","type":"Role","_key":"105995","_from":"7090","_to":"62406"} +{"$label":"ACTS_IN","name":"Bill Bowdre","type":"Role","_key":"40445","_from":"7090","_to":"27258"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"35425","_from":"7090","_to":"24102"} +{"$label":"ACTS_IN","name":"Dr. Duval","type":"Role","_key":"18816","_from":"7090","_to":"13902"} +{"$label":"ACTS_IN","name":"Jackson Bentley","type":"Role","_key":"11294","_from":"7090","_to":"8914"} +{"$label":"ACTS_IN","name":"Commodore Jensen \/ Prologue Narrator","type":"Role","_key":"66666","_from":"7092","_to":"41194"} +{"$label":"ACTS_IN","name":"Captain Boomer","type":"Role","_key":"62682","_from":"7092","_to":"39417"} +{"$label":"ACTS_IN","name":"Sir Charles","type":"Role","_key":"27376","_from":"7092","_to":"19673"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"111135","_from":"7093","_to":"65637"} +{"$label":"ACTS_IN","name":"Frank Bellamy","type":"Role","_key":"34712","_from":"7093","_to":"23739"} +{"$label":"ACTS_IN","name":"Dr. Hertz","type":"Role","_key":"25963","_from":"7093","_to":"18668"} +{"$label":"ACTS_IN","name":"Insp. Fritsch","type":"Role","_key":"25494","_from":"7093","_to":"18377"} +{"$label":"ACTS_IN","name":"Alan Kent","type":"Role","_key":"111137","_from":"7094","_to":"65637"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"97470","_from":"7094","_to":"57394"} +{"$label":"ACTS_IN","name":"Lawrence Hammill","type":"Role","_key":"97221","_from":"7094","_to":"57181"} +{"$label":"ACTS_IN","name":"Lt. Col. Denny","type":"Role","_key":"96594","_from":"7094","_to":"56784"} +{"$label":"ACTS_IN","name":"Inspektor Craddock","type":"Role","_key":"8908","_from":"7094","_to":"7227"} +{"$label":"ACTS_IN","name":"Inspektor Craddock","type":"Role","_key":"8899","_from":"7094","_to":"7221"} +{"$label":"ACTS_IN","name":"Inspektor Craddock","type":"Role","_key":"8751","_from":"7094","_to":"7102"} +{"$label":"ACTS_IN","name":"Lady in Bookstore","type":"Role","_key":"29829","_from":"7097","_to":"21103"} +{"$label":"ACTS_IN","name":"Mr. Stringer","type":"Role","_key":"41305","_from":"7098","_to":"27765"} +{"$label":"ACTS_IN","name":"Mr. Stringer","type":"Role","_key":"8914","_from":"7098","_to":"7227"} +{"$label":"ACTS_IN","name":"Mr. Stringer","type":"Role","_key":"8904","_from":"7098","_to":"7221"} +{"$label":"ACTS_IN","name":"Mr. Stringer","type":"Role","_key":"8748","_from":"7098","_to":"7102"} +{"$label":"ACTS_IN","name":"Michael Shane","type":"Role","_key":"8762","_from":"7113","_to":"7102"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"8761","_from":"7112","_to":"7102"} +{"$label":"ACTS_IN","name":"Polizeifotograf","type":"Role","_key":"8760","_from":"7111","_to":"7102"} +{"$label":"ACTS_IN","name":"Nachtportier","type":"Role","_key":"8759","_from":"7110","_to":"7102"} +{"$label":"ACTS_IN","name":"Dr. Markwell","type":"Role","_key":"8758","_from":"7109","_to":"7102"} +{"$label":"ACTS_IN","name":"Hillman","type":"Role","_key":"8757","_from":"7108","_to":"7102"} +{"$label":"ACTS_IN","name":"Mr. Trundell","type":"Role","_key":"8755","_from":"7107","_to":"7102"} +{"$label":"ACTS_IN","name":"Rosamund Shane","type":"Role","_key":"8754","_from":"7106","_to":"7102"} +{"$label":"ACTS_IN","name":"George Crossfield","type":"Role","_key":"8753","_from":"7105","_to":"7102"} +{"$label":"ACTS_IN","name":"Sergeant Bacon","type":"Role","_key":"8752","_from":"7104","_to":"7102"} +{"$label":"ACTS_IN","name":"Miss Milchrest","type":"Role","_key":"8750","_from":"7103","_to":"7102"} +{"$label":"ACTS_IN","name":"Sister Philippa","type":"Role","_key":"109059","_from":"7103","_to":"64443"} +{"$label":"ACTS_IN","name":"the Prioress","type":"Role","_key":"32008","_from":"7103","_to":"22303"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"25608","_from":"7103","_to":"18444"} +{"$label":"ACTS_IN","name":"Countess Estelle","type":"Role","_key":"25264","_from":"7103","_to":"18218"} +{"$label":"ACTS_IN","name":"Paul Krempe","type":"Role","_key":"25535","_from":"7105","_to":"18398"} +{"$label":"ACTS_IN","name":"Ernest Defargue","type":"Role","_key":"33472","_from":"7108","_to":"23156"} +{"$label":"ACTS_IN","name":"Karlstaad","type":"Role","_key":"26183","_from":"7108","_to":"18808"} +{"$label":"ACTS_IN","name":"The Prisoner","type":"Role","_key":"25965","_from":"7108","_to":"18668"} +{"$label":"ACTS_IN","name":"Sergt. Grimes","type":"Role","_key":"25062","_from":"7108","_to":"18100"} +{"$label":"ACTS_IN","name":"Wells","type":"Role","_key":"109025","_from":"7111","_to":"64424"} +{"$label":"ACTS_IN","name":"Major Kramer","type":"Role","_key":"108410","_from":"7112","_to":"64094"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"41299","_from":"7113","_to":"27765"} +{"$label":"ACTS_IN","name":"Hendrickson","type":"Role","_key":"31247","_from":"7113","_to":"21863"} +{"$label":"ACTS_IN","name":"Radio Man","type":"Role","_key":"8839","_from":"7182","_to":"7114"} +{"$label":"ACTS_IN","name":"Parliament General","type":"Role","_key":"8838","_from":"7181","_to":"7114"} +{"$label":"ACTS_IN","name":"Parliament Lieutenant","type":"Role","_key":"8837","_from":"7180","_to":"7114"} +{"$label":"ACTS_IN","name":"Victoria Station Fingerman","type":"Role","_key":"8836","_from":"7179","_to":"7114"} +{"$label":"ACTS_IN","name":"Little Glasses Girl Fingerman","type":"Role","_key":"8835","_from":"7178","_to":"7114"} +{"$label":"ACTS_IN","name":"Convenience Store V","type":"Role","_key":"8834","_from":"7177","_to":"7114"} +{"$label":"ACTS_IN","name":"Finch's Fedco Man","type":"Role","_key":"8833","_from":"7176","_to":"7114"} +{"$label":"ACTS_IN","name":"Surveillance Man","type":"Role","_key":"8832","_from":"7175","_to":"7114"} +{"$label":"ACTS_IN","name":"Surveillance Man","type":"Role","_key":"8831","_from":"7174","_to":"7114"} +{"$label":"ACTS_IN","name":"Three Waters News Poppet","type":"Role","_key":"8830","_from":"7173","_to":"7114"} +{"$label":"ACTS_IN","name":"Quarantine News Poppet","type":"Role","_key":"8829","_from":"7172","_to":"7114"} +{"$label":"ACTS_IN","name":"Avian Flu News Poppet","type":"Role","_key":"8828","_from":"7171","_to":"7114"} +{"$label":"ACTS_IN","name":"Water Shortage News Poppet","type":"Role","_key":"8827","_from":"7170","_to":"7114"} +{"$label":"ACTS_IN","name":"Civil War News Poppet","type":"Role","_key":"8826","_from":"7169","_to":"7114"} +{"$label":"ACTS_IN","name":"Young Black Detainee","type":"Role","_key":"8825","_from":"7168","_to":"7114"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"8824","_from":"7167","_to":"7114"} +{"$label":"ACTS_IN","name":"Tube Station News Poppet","type":"Role","_key":"8823","_from":"7166","_to":"7114"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"8822","_from":"7165","_to":"7114"} +{"$label":"ACTS_IN","name":"Valerie's Mother","type":"Role","_key":"8821","_from":"7164","_to":"7114"} +{"$label":"ACTS_IN","name":"Valerie's Father","type":"Role","_key":"8820","_from":"7163","_to":"7114"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"8819","_from":"7162","_to":"7114"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"8818","_from":"7161","_to":"7114"} +{"$label":"ACTS_IN","name":"Biology Teacher","type":"Role","_key":"8817","_from":"7160","_to":"7114"} +{"$label":"ACTS_IN","name":"Young Valerie","type":"Role","_key":"8816","_from":"7159","_to":"7114"} +{"$label":"ACTS_IN","name":"Operator","type":"Role","_key":"8815","_from":"7158","_to":"7114"} +{"$label":"ACTS_IN","name":"Operator","type":"Role","_key":"8814","_from":"7157","_to":"7114"} +{"$label":"ACTS_IN","name":"Denis","type":"Role","_key":"8813","_from":"7156","_to":"7114"} +{"$label":"ACTS_IN","name":"Bureaucrat","type":"Role","_key":"8812","_from":"7155","_to":"7114"} +{"$label":"ACTS_IN","name":"Evey's Father","type":"Role","_key":"8811","_from":"7154","_to":"7114"} +{"$label":"ACTS_IN","name":"Evey's Mother","type":"Role","_key":"8810","_from":"7153","_to":"7114"} +{"$label":"ACTS_IN","name":"Young Evey","type":"Role","_key":"8809","_from":"7152","_to":"7114"} +{"$label":"ACTS_IN","name":"Evey's Brother","type":"Role","_key":"8808","_from":"7151","_to":"7114"} +{"$label":"ACTS_IN","name":"Major Wilson","type":"Role","_key":"8807","_from":"7150","_to":"7114"} +{"$label":"ACTS_IN","name":"News Anchor","type":"Role","_key":"8806","_from":"7149","_to":"7114"} +{"$label":"ACTS_IN","name":"Studio Technician","type":"Role","_key":"8804","_from":"7148","_to":"7114"} +{"$label":"ACTS_IN","name":"TV Executive","type":"Role","_key":"8803","_from":"7147","_to":"7114"} +{"$label":"ACTS_IN","name":"Middle Class Mum","type":"Role","_key":"8802","_from":"7146","_to":"7114"} +{"$label":"ACTS_IN","name":"Middle Class Sister","type":"Role","_key":"8801","_from":"7145","_to":"7114"} +{"$label":"ACTS_IN","name":"Middle Class Boy","type":"Role","_key":"8800","_from":"7144","_to":"7114"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"8799","_from":"7143","_to":"7114"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"8798","_from":"7142","_to":"7114"} +{"$label":"ACTS_IN","name":"Barfly","type":"Role","_key":"8797","_from":"7141","_to":"7114"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"8796","_from":"7140","_to":"7114"} +{"$label":"ACTS_IN","name":"Little Glasses Girl Dad","type":"Role","_key":"8795","_from":"7139","_to":"7114"} +{"$label":"ACTS_IN","name":"Little Glasses Girl Mum","type":"Role","_key":"8794","_from":"7138","_to":"7114"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"8793","_from":"7137","_to":"7114"} +{"$label":"ACTS_IN","name":"Wardrobe Mistress","type":"Role","_key":"8792","_from":"7136","_to":"7114"} +{"$label":"ACTS_IN","name":"Laser Lass","type":"Role","_key":"8791","_from":"7135","_to":"7114"} +{"$label":"ACTS_IN","name":"Storm Saxon","type":"Role","_key":"8790","_from":"7134","_to":"7114"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"8789","_from":"7133","_to":"7114"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"8788","_from":"7132","_to":"7114"} +{"$label":"ACTS_IN","name":"BTN News Poppet","type":"Role","_key":"8787","_from":"7131","_to":"7114"} +{"$label":"ACTS_IN","name":"BTN News Poppet","type":"Role","_key":"8786","_from":"7130","_to":"7114"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"8785","_from":"7129","_to":"7114"} +{"$label":"ACTS_IN","name":"Heyer","type":"Role","_key":"8784","_from":"7128","_to":"7114"} +{"$label":"ACTS_IN","name":"Little Glasses Girl","type":"Role","_key":"8783","_from":"7127","_to":"7114"} +{"$label":"ACTS_IN","name":"Baldy Fingerman","type":"Role","_key":"8782","_from":"7126","_to":"7114"} +{"$label":"ACTS_IN","name":"Willy Fingerman","type":"Role","_key":"8781","_from":"7125","_to":"7114"} +{"$label":"ACTS_IN","name":"Tweed Coat Fingerman","type":"Role","_key":"8780","_from":"7124","_to":"7114"} +{"$label":"ACTS_IN","name":"Guy Fawkes Lover","type":"Role","_key":"8779","_from":"7123","_to":"7114"} +{"$label":"ACTS_IN","name":"Guy Fawkes","type":"Role","_key":"8778","_from":"7122","_to":"7114"} +{"$label":"ACTS_IN","name":"Bishop Lilliman","type":"Role","_key":"8776","_from":"7121","_to":"7114"} +{"$label":"ACTS_IN","name":"Delia Surridge","type":"Role","_key":"8775","_from":"7120","_to":"7114"} +{"$label":"ACTS_IN","name":"Dascomb","type":"Role","_key":"8774","_from":"7119","_to":"7114"} +{"$label":"ACTS_IN","name":"Lewis Prothero","type":"Role","_key":"8773","_from":"7118","_to":"7114"} +{"$label":"ACTS_IN","name":"Dominic","type":"Role","_key":"8772","_from":"7117","_to":"7114"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"8771","_from":"7116","_to":"7114"} +{"$label":"DIRECTED","_key":"8764","_from":"7115","_to":"7114"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"47734","_from":"7116","_to":"31437"} +{"$label":"ACTS_IN","name":"Mary Debenham","type":"Role","_key":"41746","_from":"7116","_to":"28008"} +{"$label":"ACTS_IN","name":"Lavinia Meredith","type":"Role","_key":"36878","_from":"7116","_to":"24998"} +{"$label":"ACTS_IN","name":"Greville","type":"Role","_key":"69103","_from":"7117","_to":"42284"} +{"$label":"ACTS_IN","name":"Martyn Fleming","type":"Role","_key":"67290","_from":"7117","_to":"41486"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"19100","_from":"7117","_to":"14109"} +{"$label":"ACTS_IN","name":"Oliver Knightly","type":"Role","_key":"18861","_from":"7117","_to":"13922"} +{"$label":"ACTS_IN","name":"Sir Robin Janvrin","type":"Role","_key":"12151","_from":"7118","_to":"9522"} +{"$label":"ACTS_IN","name":"John Hamilton","type":"Role","_key":"12024","_from":"7118","_to":"9421"} +{"$label":"ACTS_IN","name":"Parson Maybold","type":"Role","_key":"114888","_from":"7119","_to":"67663"} +{"$label":"ACTS_IN","name":"Mrs Cotton","type":"Role","_key":"114386","_from":"7120","_to":"67374"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"101948","_from":"7120","_to":"59995"} +{"$label":"ACTS_IN","name":"Diana Grayson","type":"Role","_key":"100770","_from":"7120","_to":"59411"} +{"$label":"ACTS_IN","name":"Oona O'Leary","type":"Role","_key":"60658","_from":"7120","_to":"38296"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"19688","_from":"7120","_to":"14558"} +{"$label":"ACTS_IN","name":"Dr. Sam Maitland","type":"Role","_key":"89583","_from":"7121","_to":"53008"} +{"$label":"ACTS_IN","name":"Philip Emmenthal","type":"Role","_key":"69185","_from":"7121","_to":"42313"} +{"$label":"ACTS_IN","name":"Dr. Fox","type":"Role","_key":"16957","_from":"7121","_to":"12729"} +{"$label":"ACTS_IN","name":"Lorraine","type":"Role","_key":"56431","_from":"7123","_to":"35852"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"52264","_from":"7130","_to":"34030"} +{"$label":"ACTS_IN","name":"Dorothy Townsend","type":"Role","_key":"99032","_from":"7146","_to":"58339"} +{"$label":"ACTS_IN","name":"Dan Leno","type":"Role","_key":"25785","_from":"7156","_to":"18543"} +{"$label":"ACTS_IN","name":"Casino Tech","type":"Role","_key":"108752","_from":"7158","_to":"64285"} +{"$label":"ACTS_IN","name":"Fanny Austen Knight","type":"Role","_key":"114871","_from":"7159","_to":"67661"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"13831","_from":"7159","_to":"10733"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"59740","_from":"7160","_to":"37714"} +{"$label":"ACTS_IN","name":"High School Party Friend #2","type":"Role","_key":"34835","_from":"7160","_to":"23791"} +{"$label":"ACTS_IN","name":"Mrs. Clay","type":"Role","_key":"97692","_from":"7165","_to":"57524"} +{"$label":"ACTS_IN","name":"President Miranda Harrison","type":"Role","_key":"106281","_from":"7169","_to":"62605"} +{"$label":"ACTS_IN","name":"Frank Gaines","type":"Role","_key":"119036","_from":"7182","_to":"69974"} +{"$label":"DIRECTED","_key":"8851","_from":"7191","_to":"7183"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"8850","_from":"7190","_to":"7183"} +{"$label":"ACTS_IN","name":"Joe Jackson","type":"Role","_key":"8849","_from":"7189","_to":"7183"} +{"$label":"ACTS_IN","name":"Billy Mae","type":"Role","_key":"8848","_from":"7188","_to":"7183"} +{"$label":"ACTS_IN","name":"Louise Draper","type":"Role","_key":"8847","_from":"7187","_to":"7183"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"8846","_from":"7186","_to":"7183"} +{"$label":"ACTS_IN","name":"Freddie Draper","type":"Role","_key":"8844","_from":"7185","_to":"7183"} +{"$label":"ACTS_IN","name":"Maria Forst","type":"Role","_key":"8842","_from":"7184","_to":"7183"} +{"$label":"DIRECTED","_key":"104620","_from":"7191","_to":"61544"} +{"$label":"DIRECTED","_key":"66480","_from":"7191","_to":"41109"} +{"$label":"ACTS_IN","name":"Ben Childress","type":"Role","_key":"90595","_from":"7191","_to":"53505"} +{"$label":"ACTS_IN","name":"Sgt. Chris Button","type":"Role","_key":"45046","_from":"7191","_to":"29922"} +{"$label":"ACTS_IN","name":"Berlin Film Fest Footage","type":"Role","_key":"20515","_from":"7191","_to":"14984"} +{"$label":"ACTS_IN","name":"Victor Franko","type":"Role","_key":"14690","_from":"7191","_to":"11307"} +{"$label":"ACTS_IN","name":"Guy Woodhouse","type":"Role","_key":"9480","_from":"7191","_to":"7653"} +{"$label":"DIRECTED","_key":"8869","_from":"7203","_to":"7192"} +{"$label":"ACTS_IN","name":"Michael Archer","type":"Role","_key":"8867","_from":"7202","_to":"7192"} +{"$label":"ACTS_IN","name":"Adam Hassler","type":"Role","_key":"8866","_from":"7201","_to":"7192"} +{"$label":"ACTS_IN","name":"Burke Hicks","type":"Role","_key":"8865","_from":"7200","_to":"7192"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"8864","_from":"7199","_to":"7192"} +{"$label":"ACTS_IN","name":"Buzz","type":"Role","_key":"8863","_from":"7198","_to":"7192"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"8862","_from":"7197","_to":"7192"} +{"$label":"ACTS_IN","name":"Dietrich Hassler","type":"Role","_key":"8858","_from":"7196","_to":"7192"} +{"$label":"ACTS_IN","name":"Sasha Hassler","type":"Role","_key":"8857","_from":"7195","_to":"7192"} +{"$label":"ACTS_IN","name":"Jamie Archer","type":"Role","_key":"8855","_from":"7194","_to":"7192"} +{"$label":"ACTS_IN","name":"Eve Archer","type":"Role","_key":"8854","_from":"7193","_to":"7192"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"109892","_from":"7193","_to":"64931"} +{"$label":"ACTS_IN","name":"Morgause","type":"Role","_key":"102805","_from":"7193","_to":"60475"} +{"$label":"ACTS_IN","name":"Terry Ann Wolfmeyer","type":"Role","_key":"69356","_from":"7193","_to":"42408"} +{"$label":"ACTS_IN","name":"Anne Hamilton","type":"Role","_key":"67479","_from":"7193","_to":"41562"} +{"$label":"ACTS_IN","name":"Pat Nixon","type":"Role","_key":"66320","_from":"7193","_to":"41028"} +{"$label":"ACTS_IN","name":"Warden Hennessey","type":"Role","_key":"63594","_from":"7193","_to":"39790"} +{"$label":"ACTS_IN","name":"Maddy Nagle","type":"Role","_key":"59447","_from":"7193","_to":"37549"} +{"$label":"ACTS_IN","name":"Laine Hanson","type":"Role","_key":"43874","_from":"7193","_to":"29296"} +{"$label":"ACTS_IN","name":"Elena Hood","type":"Role","_key":"40305","_from":"7193","_to":"27194"} +{"$label":"ACTS_IN","name":"Betty Parker","type":"Role","_key":"22534","_from":"7193","_to":"16368"} +{"$label":"ACTS_IN","name":"Pamela Landy","type":"Role","_key":"21730","_from":"7193","_to":"15873"} +{"$label":"ACTS_IN","name":"Pamela Landy","type":"Role","_key":"21723","_from":"7193","_to":"15871"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"119771","_from":"7194","_to":"70331"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"110531","_from":"7194","_to":"65312"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"104880","_from":"7194","_to":"61706"} +{"$label":"ACTS_IN","name":"dakota","type":"Role","_key":"98739","_from":"7194","_to":"58189"} +{"$label":"ACTS_IN","name":"Dolores \"Lolita\" Haze","type":"Role","_key":"56495","_from":"7194","_to":"35887"} +{"$label":"ACTS_IN","name":"Jeanine Kryszinsky","type":"Role","_key":"55978","_from":"7194","_to":"35588"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"103091","_from":"7195","_to":"60638"} +{"$label":"ACTS_IN","name":"Patti Madano","type":"Role","_key":"99818","_from":"7195","_to":"58881"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"95686","_from":"7195","_to":"56281"} +{"$label":"ACTS_IN","name":"Cristal Connors","type":"Role","_key":"65894","_from":"7195","_to":"40769"} +{"$label":"ACTS_IN","name":"Arlene Kreiner","type":"Role","_key":"56737","_from":"7195","_to":"36041"} +{"$label":"ACTS_IN","name":"Corky","type":"Role","_key":"53005","_from":"7195","_to":"34330"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"48353","_from":"7195","_to":"31743"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"41276","_from":"7195","_to":"27753"} +{"$label":"ACTS_IN","name":"Lyle Pike","type":"Role","_key":"118807","_from":"7196","_to":"69847"} +{"$label":"ACTS_IN","name":"Packard Walsh","type":"Role","_key":"59486","_from":"7196","_to":"37565"} +{"$label":"ACTS_IN","name":"Sergeant Dillard","type":"Role","_key":"43881","_from":"7196","_to":"29297"} +{"$label":"ACTS_IN","name":"Captain Alex Streck","type":"Role","_key":"24185","_from":"7196","_to":"17522"} +{"$label":"DIRECTED","_key":"67473","_from":"7196","_to":"41562"} +{"$label":"DIRECTED","_key":"59530","_from":"7196","_to":"37583"} +{"$label":"DIRECTED","_key":"50028","_from":"7196","_to":"32743"} +{"$label":"DIRECTED","_key":"46781","_from":"7196","_to":"30852"} +{"$label":"ACTS_IN","name":"Mickey Lee","type":"Role","_key":"45175","_from":"7197","_to":"29971"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36940","_from":"7197","_to":"25042"} +{"$label":"ACTS_IN","name":"Emery Waterman","type":"Role","_key":"102639","_from":"7199","_to":"60385"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"101746","_from":"7199","_to":"59883"} +{"$label":"ACTS_IN","name":"Eddie Scott","type":"Role","_key":"26772","_from":"7199","_to":"19236"} +{"$label":"ACTS_IN","name":"Luis Carruthers","type":"Role","_key":"12546","_from":"7199","_to":"9822"} +{"$label":"ACTS_IN","name":"Andre Stander","type":"Role","_key":"118169","_from":"7200","_to":"69449"} +{"$label":"ACTS_IN","name":"Wayne Colson","type":"Role","_key":"107651","_from":"7200","_to":"63537"} +{"$label":"ACTS_IN","name":"Maj. 'Mitch' Hunter","type":"Role","_key":"93626","_from":"7200","_to":"55123"} +{"$label":"ACTS_IN","name":"Peter Donahue","type":"Role","_key":"72132","_from":"7200","_to":"43602"} +{"$label":"ACTS_IN","name":"Detective Felix Owens","type":"Role","_key":"64094","_from":"7200","_to":"40001"} +{"$label":"ACTS_IN","name":"Nemo","type":"Role","_key":"63983","_from":"7200","_to":"39954"} +{"$label":"ACTS_IN","name":"Casey Wells","type":"Role","_key":"57024","_from":"7200","_to":"36182"} +{"$label":"ACTS_IN","name":"Carter Blake","type":"Role","_key":"51454","_from":"7200","_to":"33562"} +{"$label":"ACTS_IN","name":"Frank Castle","type":"Role","_key":"45999","_from":"7200","_to":"30406"} +{"$label":"ACTS_IN","name":"Dr. Henry Devlin","type":"Role","_key":"42184","_from":"7200","_to":"28261"} +{"$label":"ACTS_IN","name":"David Drayton","type":"Role","_key":"40034","_from":"7200","_to":"27031"} +{"$label":"ACTS_IN","name":"Todd Parker","type":"Role","_key":"35441","_from":"7200","_to":"24109"} +{"$label":"ACTS_IN","name":"Walter Downs\/Billy\/Mephisto","type":"Role","_key":"17891","_from":"7200","_to":"13313"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"57843","_from":"7202","_to":"36606"} +{"$label":"DIRECTED","_key":"115779","_from":"7203","_to":"68165"} +{"$label":"DIRECTED","_key":"104223","_from":"7203","_to":"61317"} +{"$label":"DIRECTED","_key":"94947","_from":"7203","_to":"55914"} +{"$label":"DIRECTED","_key":"89221","_from":"7203","_to":"52831"} +{"$label":"DIRECTED","_key":"88019","_from":"7203","_to":"52256"} +{"$label":"DIRECTED","_key":"72709","_from":"7203","_to":"43813"} +{"$label":"DIRECTED","_key":"71948","_from":"7203","_to":"43526"} +{"$label":"DIRECTED","_key":"70063","_from":"7203","_to":"42717"} +{"$label":"DIRECTED","_key":"66075","_from":"7203","_to":"40883"} +{"$label":"DIRECTED","_key":"55097","_from":"7203","_to":"35186"} +{"$label":"DIRECTED","_key":"52601","_from":"7203","_to":"34175"} +{"$label":"DIRECTED","_key":"17545","_from":"7203","_to":"13116"} +{"$label":"DIRECTED","_key":"11385","_from":"7203","_to":"8971"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"71952","_from":"7203","_to":"43526"} +{"$label":"ACTS_IN","name":"Newscaster Kelly Houge","type":"Role","_key":"8884","_from":"7209","_to":"7204"} +{"$label":"ACTS_IN","name":"Hostage Gloria Hill","type":"Role","_key":"8881","_from":"7208","_to":"7204"} +{"$label":"ACTS_IN","name":"Sex Machine","type":"Role","_key":"8878","_from":"7207","_to":"7204"} +{"$label":"ACTS_IN","name":"Border Guard\/Chet Pussy\/Carlos","type":"Role","_key":"8876","_from":"7206","_to":"7204"} +{"$label":"ACTS_IN","name":"Scott Fuller","type":"Role","_key":"8874","_from":"7205","_to":"7204"} +{"$label":"ACTS_IN","name":"Captain Victor Delgado","type":"Role","_key":"121202","_from":"7206","_to":"71196"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"119706","_from":"7206","_to":"70307"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106732","_from":"7206","_to":"62909"} +{"$label":"ACTS_IN","name":"Corsican Brother","type":"Role","_key":"101733","_from":"7206","_to":"59878"} +{"$label":"ACTS_IN","name":"Ramone","type":"Role","_key":"97562","_from":"7206","_to":"57452"} +{"$label":"ACTS_IN","name":"Officer Salino","type":"Role","_key":"95820","_from":"7206","_to":"56354"} +{"$label":"ACTS_IN","name":"Cheech","type":"Role","_key":"95411","_from":"7206","_to":"56129"} +{"$label":"ACTS_IN","name":"Cheech","type":"Role","_key":"91043","_from":"7206","_to":"53722"} +{"$label":"ACTS_IN","name":"Tito","type":"Role","_key":"88877","_from":"7206","_to":"52660"} +{"$label":"ACTS_IN","name":"El Segundo","type":"Role","_key":"71034","_from":"7206","_to":"43138"} +{"$label":"ACTS_IN","name":"Pedro De Pacas","type":"Role","_key":"69960","_from":"7206","_to":"42680"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"66129","_from":"7206","_to":"40908"} +{"$label":"ACTS_IN","name":"Romeo Posar","type":"Role","_key":"63566","_from":"7206","_to":"39781"} +{"$label":"ACTS_IN","name":"Felix Gumm","type":"Role","_key":"54206","_from":"7206","_to":"34817"} +{"$label":"ACTS_IN","name":"Short Bartender","type":"Role","_key":"48030","_from":"7206","_to":"31586"} +{"$label":"ACTS_IN","name":"Belini","type":"Role","_key":"13236","_from":"7206","_to":"10305"} +{"$label":"ACTS_IN","name":"Ramone (voice)","type":"Role","_key":"10936","_from":"7206","_to":"8670"} +{"$label":"DIRECTED","_key":"119721","_from":"7206","_to":"70307"} +{"$label":"DIRECTED","_key":"119135","_from":"7207","_to":"70019"} +{"$label":"ACTS_IN","name":"The Creep","type":"Role","_key":"108499","_from":"7207","_to":"64131"} +{"$label":"ACTS_IN","name":"Machete Zombie","type":"Role","_key":"71557","_from":"7207","_to":"43346"} +{"$label":"ACTS_IN","name":"The County Sheriff","type":"Role","_key":"11007","_from":"7207","_to":"8707"} +{"$label":"ACTS_IN","name":"Wife","type":"Role","_key":"64540","_from":"7208","_to":"40197"} +{"$label":"ACTS_IN","name":"Cini","type":"Role","_key":"116740","_from":"7209","_to":"68714"} +{"$label":"ACTS_IN","name":"Laura Stone","type":"Role","_key":"111654","_from":"7209","_to":"65920"} +{"$label":"ACTS_IN","name":"Lucy Collins","type":"Role","_key":"108880","_from":"7209","_to":"64347"} +{"$label":"ACTS_IN","name":"Marilyn McCauley","type":"Role","_key":"101634","_from":"7209","_to":"59820"} +{"$label":"ACTS_IN","name":"Angela Dalton","type":"Role","_key":"97165","_from":"7209","_to":"57155"} +{"$label":"ACTS_IN","name":"Tish Ambrosei","type":"Role","_key":"96233","_from":"7209","_to":"56559"} +{"$label":"ACTS_IN","name":"Kelly Hogue","type":"Role","_key":"88958","_from":"7209","_to":"52694"} +{"$label":"ACTS_IN","name":"Helen Hume","type":"Role","_key":"72270","_from":"7209","_to":"43661"} +{"$label":"ACTS_IN","name":"Ann Beam","type":"Role","_key":"71502","_from":"7209","_to":"43335"} +{"$label":"ACTS_IN","name":"Josie Stronghold","type":"Role","_key":"69986","_from":"7209","_to":"42690"} +{"$label":"ACTS_IN","name":"Libby Reynolds","type":"Role","_key":"65350","_from":"7209","_to":"40547"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"64275","_from":"7209","_to":"40080"} +{"$label":"ACTS_IN","name":"Jane Aubrey","type":"Role","_key":"62957","_from":"7209","_to":"39536"} +{"$label":"ACTS_IN","name":"Gabby Frost","type":"Role","_key":"56235","_from":"7209","_to":"35731"} +{"$label":"ACTS_IN","name":"Kate Newell","type":"Role","_key":"55933","_from":"7209","_to":"35572"} +{"$label":"ACTS_IN","name":"Marnie Mason","type":"Role","_key":"54233","_from":"7209","_to":"34829"} +{"$label":"ACTS_IN","name":"Avery Bishop","type":"Role","_key":"53555","_from":"7209","_to":"34567"} +{"$label":"ACTS_IN","name":"Roseanne","type":"Role","_key":"50783","_from":"7209","_to":"33134"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"38803","_from":"7209","_to":"26203"} +{"$label":"ACTS_IN","name":"Linda Green","type":"Role","_key":"17896","_from":"7209","_to":"13319"} +{"$label":"DIRECTED","_key":"8895","_from":"7220","_to":"7210"} +{"$label":"DIRECTED","_key":"8894","_from":"7219","_to":"7210"} +{"$label":"DIRECTED","_key":"8893","_from":"7218","_to":"7210"} +{"$label":"DIRECTED","_key":"8892","_from":"7217","_to":"7210"} +{"$label":"DIRECTED","_key":"8891","_from":"7216","_to":"7210"} +{"$label":"DIRECTED","_key":"8890","_from":"7215","_to":"7210"} +{"$label":"DIRECTED","_key":"8889","_from":"7214","_to":"7210"} +{"$label":"DIRECTED","_key":"8888","_from":"7213","_to":"7210"} +{"$label":"DIRECTED","_key":"8887","_from":"7212","_to":"7210"} +{"$label":"DIRECTED","_key":"8886","_from":"7211","_to":"7210"} +{"$label":"DIRECTED","_key":"94623","_from":"7212","_to":"55755"} +{"$label":"DIRECTED","_key":"69525","_from":"7212","_to":"42466"} +{"$label":"DIRECTED","_key":"120957","_from":"7215","_to":"71045"} +{"$label":"DIRECTED","_key":"88857","_from":"7215","_to":"52647"} +{"$label":"DIRECTED","_key":"87975","_from":"7215","_to":"52236"} +{"$label":"DIRECTED","_key":"68653","_from":"7215","_to":"42072"} +{"$label":"DIRECTED","_key":"66513","_from":"7215","_to":"41120"} +{"$label":"DIRECTED","_key":"62684","_from":"7215","_to":"39418"} +{"$label":"DIRECTED","_key":"28759","_from":"7217","_to":"20550"} +{"$label":"DIRECTED","_key":"28724","_from":"7217","_to":"20523"} +{"$label":"DIRECTED","_key":"102423","_from":"7220","_to":"60270"} +{"$label":"DIRECTED","_key":"87974","_from":"7220","_to":"52236"} +{"$label":"DIRECTED","_key":"68652","_from":"7220","_to":"42072"} +{"$label":"DIRECTED","_key":"65095","_from":"7220","_to":"40438"} +{"$label":"DIRECTED","_key":"62685","_from":"7220","_to":"39418"} +{"$label":"ACTS_IN","name":"Ralph Summers","type":"Role","_key":"8903","_from":"7226","_to":"7221"} +{"$label":"ACTS_IN","name":"Harris Tumbrill","type":"Role","_key":"8902","_from":"7225","_to":"7221"} +{"$label":"ACTS_IN","name":"Gladys Thomas","type":"Role","_key":"8901","_from":"7224","_to":"7221"} +{"$label":"ACTS_IN","name":"Justice Crosby","type":"Role","_key":"8900","_from":"7223","_to":"7221"} +{"$label":"ACTS_IN","name":"H. Driffold Cosgood","type":"Role","_key":"8898","_from":"7222","_to":"7221"} +{"$label":"ACTS_IN","name":"Fagin","type":"Role","_key":"114365","_from":"7222","_to":"67368"} +{"$label":"ACTS_IN","name":"Dr. Henry Gropinger ( Kissinger )","type":"Role","_key":"41578","_from":"7222","_to":"27920"} +{"$label":"ACTS_IN","name":"Captain Stubbs - 'Doric Star'","type":"Role","_key":"113290","_from":"7223","_to":"66734"} +{"$label":"ACTS_IN","name":"Count Gomez","type":"Role","_key":"109702","_from":"7223","_to":"64787"} +{"$label":"ACTS_IN","name":"Mrs. Grose","type":"Role","_key":"108951","_from":"7224","_to":"64386"} +{"$label":"ACTS_IN","name":"Dr. Alwin Seward","type":"Role","_key":"111958","_from":"7225","_to":"66086"} +{"$label":"ACTS_IN","name":"Peter Gibbs","type":"Role","_key":"105484","_from":"7225","_to":"62074"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"72627","_from":"7225","_to":"43776"} +{"$label":"ACTS_IN","name":"Dr. Edward Armstrong","type":"Role","_key":"34449","_from":"7225","_to":"23596"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"28103","_from":"7225","_to":"20145"} +{"$label":"ACTS_IN","name":"Dr. Frankenstein","type":"Role","_key":"26534","_from":"7225","_to":"19069"} +{"$label":"ACTS_IN","name":"Dr. Frankenstein","type":"Role","_key":"26423","_from":"7225","_to":"18983"} +{"$label":"ACTS_IN","name":"The Graverobber","type":"Role","_key":"26271","_from":"7225","_to":"18865"} +{"$label":"ACTS_IN","name":"Claude de Gonde","type":"Role","_key":"34888","_from":"7226","_to":"23838"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"8913","_from":"7233","_to":"7227"} +{"$label":"ACTS_IN","name":"Dr. Crump","type":"Role","_key":"8912","_from":"7232","_to":"7227"} +{"$label":"ACTS_IN","name":"Alice Fanbraid","type":"Role","_key":"8911","_from":"7231","_to":"7227"} +{"$label":"ACTS_IN","name":"Lord Rudkin","type":"Role","_key":"8910","_from":"7230","_to":"7227"} +{"$label":"ACTS_IN","name":"Breeze-Connington","type":"Role","_key":"8909","_from":"7229","_to":"7227"} +{"$label":"ACTS_IN","name":"Cap. Rhumstone","type":"Role","_key":"8907","_from":"7228","_to":"7227"} +{"$label":"ACTS_IN","name":"Harry Tyler","type":"Role","_key":"110486","_from":"7228","_to":"65275"} +{"$label":"ACTS_IN","name":"Grandpa Potts","type":"Role","_key":"71687","_from":"7228","_to":"43398"} +{"$label":"ACTS_IN","name":"Insp. Willoughby","type":"Role","_key":"45539","_from":"7228","_to":"30154"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"26214","_from":"7228","_to":"18831"} +{"$label":"ACTS_IN","name":"Randomhouse","type":"Role","_key":"24883","_from":"7228","_to":"17986"} +{"$label":"ACTS_IN","name":"Lord Paragon","type":"Role","_key":"119565","_from":"7229","_to":"70231"} +{"$label":"ACTS_IN","name":"Sultan","type":"Role","_key":"88871","_from":"7233","_to":"52654"} +{"$label":"ACTS_IN","name":"Mr. Esmond Sr.","type":"Role","_key":"8922","_from":"7241","_to":"7234"} +{"$label":"ACTS_IN","name":"Lady Beekman","type":"Role","_key":"8921","_from":"7240","_to":"7234"} +{"$label":"ACTS_IN","name":"Henry Spofford III","type":"Role","_key":"8920","_from":"7239","_to":"7234"} +{"$label":"ACTS_IN","name":"Gus Esmond","type":"Role","_key":"8919","_from":"7238","_to":"7234"} +{"$label":"ACTS_IN","name":"Sir Francis Beekman","type":"Role","_key":"8918","_from":"7237","_to":"7234"} +{"$label":"ACTS_IN","name":"Ernie Malone","type":"Role","_key":"8917","_from":"7236","_to":"7234"} +{"$label":"ACTS_IN","name":"Dorothy Shaw","type":"Role","_key":"8916","_from":"7235","_to":"7234"} +{"$label":"ACTS_IN","name":"Calamity Jane","type":"Role","_key":"113999","_from":"7235","_to":"67136"} +{"$label":"ACTS_IN","name":"amanda","type":"Role","_key":"61835","_from":"7235","_to":"38927"} +{"$label":"ACTS_IN","name":"Beaver Greenway","type":"Role","_key":"118345","_from":"7237","_to":"69573"} +{"$label":"ACTS_IN","name":"Hugo Van Cleve","type":"Role","_key":"117254","_from":"7237","_to":"68967"} +{"$label":"ACTS_IN","name":"Judge Joseph M. Doolittle","type":"Role","_key":"116683","_from":"7237","_to":"68689"} +{"$label":"ACTS_IN","name":"'Colonel' Harrington","type":"Role","_key":"25642","_from":"7237","_to":"18462"} +{"$label":"ACTS_IN","name":"Danny McGuire","type":"Role","_key":"26045","_from":"7238","_to":"18716"} +{"$label":"ACTS_IN","name":"(in \"The Glass Key\") (archive footage)","type":"Role","_key":"53895","_from":"7240","_to":"34691"} +{"$label":"ACTS_IN","name":"Mrs. Cunningham","type":"Role","_key":"10013","_from":"7240","_to":"8013"} +{"$label":"ACTS_IN","name":"Ezra Grindle","type":"Role","_key":"119042","_from":"7241","_to":"69977"} +{"$label":"ACTS_IN","name":"T.M. Wade","type":"Role","_key":"118164","_from":"7241","_to":"69448"} +{"$label":"DIRECTED","_key":"8935","_from":"7251","_to":"7242"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"8934","_from":"7250","_to":"7242"} +{"$label":"ACTS_IN","name":"Moishe","type":"Role","_key":"8932","_from":"7249","_to":"7242"} +{"$label":"ACTS_IN","name":"Le fils du g\u00e9n\u00e9ral","type":"Role","_key":"8931","_from":"7248","_to":"7242"} +{"$label":"ACTS_IN","name":"Far\u00e8s","type":"Role","_key":"8929","_from":"7247","_to":"7242"} +{"$label":"ACTS_IN","name":"Salomon","type":"Role","_key":"8927","_from":"7246","_to":"7242"} +{"$label":"ACTS_IN","name":"Mohamed Larbi Slimane\/Rabbi Zeiligman","type":"Role","_key":"8926","_from":"7245","_to":"7242"} +{"$label":"ACTS_IN","name":"Germaine Pivert","type":"Role","_key":"8925","_from":"7244","_to":"7242"} +{"$label":"ACTS_IN","name":"Victor Pivert\/Rabbi Jacob","type":"Role","_key":"8924","_from":"7243","_to":"7242"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120346","_from":"7243","_to":"70692"} +{"$label":"ACTS_IN","name":"Jambier","type":"Role","_key":"119106","_from":"7243","_to":"70009"} +{"$label":"ACTS_IN","name":"Don Salluste de Bazan","type":"Role","_key":"99313","_from":"7243","_to":"58517"} +{"$label":"ACTS_IN","name":"Antoine Brisebard","type":"Role","_key":"90528","_from":"7243","_to":"53476"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des Logis-chef Ludovic Cruchot","type":"Role","_key":"72735","_from":"7243","_to":"43823"} +{"$label":"ACTS_IN","name":"Henri Roubier","type":"Role","_key":"72730","_from":"7243","_to":"43822"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des logis-chef Ludovic Cruchot","type":"Role","_key":"72725","_from":"7243","_to":"43821"} +{"$label":"ACTS_IN","name":"F\u00e9licien M\u00e9zeray","type":"Role","_key":"72721","_from":"7243","_to":"43820"} +{"$label":"ACTS_IN","name":"Charles Bosquier","type":"Role","_key":"71614","_from":"7243","_to":"43374"} +{"$label":"ACTS_IN","name":"Harpagon","type":"Role","_key":"71520","_from":"7243","_to":"43339"} +{"$label":"ACTS_IN","name":"Guillaume Daubray-Lacaze","type":"Role","_key":"70454","_from":"7243","_to":"42892"} +{"$label":"ACTS_IN","name":"Ludovic Cruchot","type":"Role","_key":"63793","_from":"7243","_to":"39891"} +{"$label":"ACTS_IN","name":"Claude Ratinier (Le Glaude)","type":"Role","_key":"53079","_from":"7243","_to":"34359"} +{"$label":"ACTS_IN","name":"Stanislas Lefort, chef d'orchestre","type":"Role","_key":"48878","_from":"7243","_to":"32047"} +{"$label":"ACTS_IN","name":"Scapin","type":"Role","_key":"33716","_from":"7243","_to":"23260"} +{"$label":"ACTS_IN","name":"Ludovic Cruchot","type":"Role","_key":"33679","_from":"7243","_to":"23246"} +{"$label":"ACTS_IN","name":"Ludovic Cruchot","type":"Role","_key":"33665","_from":"7243","_to":"23243"} +{"$label":"ACTS_IN","name":"Ludovic Cruchot","type":"Role","_key":"33648","_from":"7243","_to":"23233"} +{"$label":"ACTS_IN","name":"Bertrand Barnier","type":"Role","_key":"23666","_from":"7243","_to":"17159"} +{"$label":"ACTS_IN","name":"Hubert de Tartas","type":"Role","_key":"21593","_from":"7243","_to":"15787"} +{"$label":"ACTS_IN","name":"Kommissar Juve","type":"Role","_key":"16182","_from":"7243","_to":"12287"} +{"$label":"ACTS_IN","name":"Kommissar Juve","type":"Role","_key":"16145","_from":"7243","_to":"12264"} +{"$label":"ACTS_IN","name":"Kommisar Juve","type":"Role","_key":"16137","_from":"7243","_to":"12258"} +{"$label":"ACTS_IN","name":"Charles Duchemin","type":"Role","_key":"8937","_from":"7243","_to":"7252"} +{"$label":"DIRECTED","_key":"71526","_from":"7243","_to":"43339"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33591","_from":"7244","_to":"23204"} +{"$label":"ACTS_IN","name":"d'Aulnay","type":"Role","_key":"21914","_from":"7245","_to":"16008"} +{"$label":"ACTS_IN","name":"R\u00e9gis","type":"Role","_key":"21505","_from":"7245","_to":"15736"} +{"$label":"ACTS_IN","name":"l'ami de Simon","type":"Role","_key":"30733","_from":"7246","_to":"21545"} +{"$label":"ACTS_IN","name":"le pion","type":"Role","_key":"21366","_from":"7246","_to":"15621"} +{"$label":"ACTS_IN","name":"Bertrand Barabi","type":"Role","_key":"20772","_from":"7246","_to":"15193"} +{"$label":"ACTS_IN","name":"Maluc","type":"Role","_key":"47858","_from":"7247","_to":"31498"} +{"$label":"ACTS_IN","name":"Aspirante Suicida","type":"Role","_key":"33022","_from":"7247","_to":"22890"} +{"$label":"ACTS_IN","name":"Massimo","type":"Role","_key":"33008","_from":"7247","_to":"22884"} +{"$label":"ACTS_IN","name":"Poliziotto","type":"Role","_key":"22963","_from":"7247","_to":"16655"} +{"$label":"ACTS_IN","name":"Sacy","type":"Role","_key":"38049","_from":"7249","_to":"25743"} +{"$label":"ACTS_IN","name":"Z\u00e9na\u00efde Lacoste","type":"Role","_key":"30033","_from":"7250","_to":"21177"} +{"$label":"DIRECTED","_key":"99319","_from":"7251","_to":"58517"} +{"$label":"DIRECTED","_key":"48876","_from":"7251","_to":"32047"} +{"$label":"ACTS_IN","name":"Claude Marceau","type":"Role","_key":"29459","_from":"7251","_to":"20892"} +{"$label":"ACTS_IN","name":"Vittorio","type":"Role","_key":"8945","_from":"7261","_to":"7252"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"8944","_from":"7260","_to":"7252"} +{"$label":"ACTS_IN","name":"Dubreuil","type":"Role","_key":"8943","_from":"7259","_to":"7252"} +{"$label":"ACTS_IN","name":"Le doyen des acad\u00e9miciens","type":"Role","_key":"8942","_from":"7258","_to":"7252"} +{"$label":"ACTS_IN","name":"Jacques Tricatel","type":"Role","_key":"8941","_from":"7257","_to":"7252"} +{"$label":"ACTS_IN","name":"Marguerite #2","type":"Role","_key":"8940","_from":"7256","_to":"7252"} +{"$label":"ACTS_IN","name":"Marguerite #1","type":"Role","_key":"8939","_from":"7255","_to":"7252"} +{"$label":"ACTS_IN","name":"G\u00e9rard Duchemin","type":"Role","_key":"8938","_from":"7254","_to":"7252"} +{"$label":"DIRECTED","_key":"8936","_from":"7253","_to":"7252"} +{"$label":"DIRECTED","_key":"70458","_from":"7253","_to":"42892"} +{"$label":"DIRECTED","_key":"62118","_from":"7253","_to":"39121"} +{"$label":"DIRECTED","_key":"54723","_from":"7253","_to":"35031"} +{"$label":"DIRECTED","_key":"50758","_from":"7253","_to":"33125"} +{"$label":"ACTS_IN","name":"Sylvie Brisebard","type":"Role","_key":"90529","_from":"7255","_to":"53476"} +{"$label":"ACTS_IN","name":"Amelie Poulangeard","type":"Role","_key":"53082","_from":"7255","_to":"34359"} +{"$label":"ACTS_IN","name":"Jos\u00e9pha Cruchot","type":"Role","_key":"33681","_from":"7255","_to":"23246"} +{"$label":"ACTS_IN","name":"Germaine Barnier","type":"Role","_key":"23669","_from":"7255","_to":"17159"} +{"$label":"ACTS_IN","name":"Edm\u00e9e de Tartas","type":"Role","_key":"21594","_from":"7255","_to":"15787"} +{"$label":"ACTS_IN","name":"Frl. Elly","type":"Role","_key":"29574","_from":"7256","_to":"20940"} +{"$label":"ACTS_IN","name":"Le devin Prolix (voice)","type":"Role","_key":"71127","_from":"7257","_to":"43173"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"68114","_from":"7257","_to":"41837"} +{"$label":"ACTS_IN","name":"Representative","type":"Role","_key":"30722","_from":"7257","_to":"21545"} +{"$label":"ACTS_IN","name":"L\u00e9pidon","type":"Role","_key":"27117","_from":"7257","_to":"19519"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"23055","_from":"7257","_to":"16714"} +{"$label":"ACTS_IN","name":"Dr. Loisy","type":"Role","_key":"9784","_from":"7258","_to":"7837"} +{"$label":"ACTS_IN","name":"Dupar","type":"Role","_key":"42254","_from":"7259","_to":"28293"} +{"$label":"ACTS_IN","name":"Charon","type":"Role","_key":"89159","_from":"7260","_to":"52806"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71988","_from":"7260","_to":"43537"} +{"$label":"ACTS_IN","name":"Jean-Baptiste","type":"Role","_key":"33370","_from":"7260","_to":"23104"} +{"$label":"ACTS_IN","name":"l'ach\u00e9teur","type":"Role","_key":"31760","_from":"7260","_to":"22162"} +{"$label":"ACTS_IN","name":"Monsieur Taxi","type":"Role","_key":"21283","_from":"7260","_to":"15565"} +{"$label":"ACTS_IN","name":"Factory Manager","type":"Role","_key":"48063","_from":"7261","_to":"31599"} +{"$label":"ACTS_IN","name":"Moretti","type":"Role","_key":"29945","_from":"7261","_to":"21159"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"26987","_from":"7261","_to":"19403"} +{"$label":"ACTS_IN","name":"Trouscaillon","type":"Role","_key":"21957","_from":"7261","_to":"16029"} +{"$label":"ACTS_IN","name":"Void","type":"Role","_key":"8964","_from":"7273","_to":"7263"} +{"$label":"ACTS_IN","name":"Mr. Matheson","type":"Role","_key":"8963","_from":"7272","_to":"7263"} +{"$label":"ACTS_IN","name":"Nora Matheson","type":"Role","_key":"8962","_from":"7271","_to":"7263"} +{"$label":"ACTS_IN","name":"Scroat","type":"Role","_key":"8961","_from":"7270","_to":"7263"} +{"$label":"ACTS_IN","name":"Stephen Papps","type":"Role","_key":"8960","_from":"7269","_to":"7263"} +{"$label":"ACTS_IN","name":"Nurse McTavish","type":"Role","_key":"8959","_from":"7268","_to":"7263"} +{"$label":"ACTS_IN","name":"Uncle Les","type":"Role","_key":"8958","_from":"7267","_to":"7263"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"8957","_from":"7266","_to":"7263"} +{"$label":"ACTS_IN","name":"Paquita Maria Sanchez","type":"Role","_key":"8956","_from":"7265","_to":"7263"} +{"$label":"ACTS_IN","name":"Lionel Cosgrove","type":"Role","_key":"8955","_from":"7264","_to":"7263"} +{"$label":"ACTS_IN","name":"Garry Holden's Mother","type":"Role","_key":"66155","_from":"7268","_to":"40912"} +{"$label":"ACTS_IN","name":"Mrs. Mac","type":"Role","_key":"28335","_from":"7271","_to":"20274"} +{"$label":"ACTS_IN","name":"Museum Curator","type":"Role","_key":"65733","_from":"7273","_to":"40696"} +{"$label":"ACTS_IN","name":"Sebastian \/ Dr. Quack \/ Daisy the Cow \/ Sandy the Chicken (voice)","type":"Role","_key":"48482","_from":"7273","_to":"31825"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"8970","_from":"7278","_to":"7274"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"8969","_from":"7277","_to":"7274"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"8968","_from":"7276","_to":"7274"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"8967","_from":"7275","_to":"7274"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"18999","_from":"7275","_to":"14035"} +{"$label":"ACTS_IN","name":"Henrietta Knowby","type":"Role","_key":"8980","_from":"7286","_to":"7279"} +{"$label":"ACTS_IN","name":"Professor Raymond Knowby","type":"Role","_key":"8979","_from":"7285","_to":"7279"} +{"$label":"ACTS_IN","name":"Ed Getley","type":"Role","_key":"8978","_from":"7284","_to":"7279"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"8977","_from":"7283","_to":"7279"} +{"$label":"ACTS_IN","name":"Bobbie Joe","type":"Role","_key":"8976","_from":"7282","_to":"7279"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"8975","_from":"7281","_to":"7279"} +{"$label":"ACTS_IN","name":"Annie Knowby","type":"Role","_key":"8974","_from":"7280","_to":"7279"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"115003","_from":"7286","_to":"67722"} +{"$label":"ACTS_IN","name":"Possessed Witch","type":"Role","_key":"8991","_from":"7293","_to":"7287"} +{"$label":"ACTS_IN","name":"Gold Tooth","type":"Role","_key":"8989","_from":"7292","_to":"7287"} +{"$label":"ACTS_IN","name":"Blacksmith","type":"Role","_key":"8988","_from":"7291","_to":"7287"} +{"$label":"ACTS_IN","name":"Duke Henry the Red","type":"Role","_key":"8987","_from":"7290","_to":"7287"} +{"$label":"ACTS_IN","name":"Wiseman","type":"Role","_key":"8986","_from":"7289","_to":"7287"} +{"$label":"ACTS_IN","name":"Lord Arthur","type":"Role","_key":"8985","_from":"7288","_to":"7287"} +{"$label":"ACTS_IN","name":"Tomask","type":"Role","_key":"12707","_from":"7288","_to":"9923"} +{"$label":"ACTS_IN","name":"Boggs","type":"Role","_key":"91211","_from":"7289","_to":"53788"} +{"$label":"ACTS_IN","name":"Palpatine (voice)","type":"Role","_key":"88508","_from":"7289","_to":"52456"} +{"$label":"ACTS_IN","name":"Ice Tea Waiter","type":"Role","_key":"70321","_from":"7289","_to":"42835"} +{"$label":"ACTS_IN","name":"Hymie","type":"Role","_key":"61476","_from":"7289","_to":"38771"} +{"$label":"ACTS_IN","name":"Smithee","type":"Role","_key":"54366","_from":"7289","_to":"34872"} +{"$label":"ACTS_IN","name":"Henry the Butler","type":"Role","_key":"15310","_from":"7289","_to":"11713"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"119136","_from":"7293","_to":"70019"} +{"$label":"ACTS_IN","name":"Lyta Alexander","type":"Role","_key":"66879","_from":"7293","_to":"41295"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"8999","_from":"7295","_to":"7294"} +{"$label":"ACTS_IN","name":"Polly Nichols","type":"Role","_key":"9021","_from":"7305","_to":"7296"} +{"$label":"ACTS_IN","name":"Officer Bolt","type":"Role","_key":"9020","_from":"7304","_to":"7296"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"9019","_from":"7303","_to":"7296"} +{"$label":"ACTS_IN","name":"Kate Eddowes","type":"Role","_key":"9018","_from":"7302","_to":"7296"} +{"$label":"ACTS_IN","name":"Dr. Ferral","type":"Role","_key":"9017","_from":"7301","_to":"7296"} +{"$label":"ACTS_IN","name":"Liz Stride","type":"Role","_key":"9016","_from":"7300","_to":"7296"} +{"$label":"ACTS_IN","name":"Benjamin 'Ben' Kidney","type":"Role","_key":"9015","_from":"7299","_to":"7296"} +{"$label":"DIRECTED","_key":"9007","_from":"7298","_to":"7296"} +{"$label":"DIRECTED","_key":"9006","_from":"7297","_to":"7296"} +{"$label":"DIRECTED","_key":"69867","_from":"7297","_to":"42631"} +{"$label":"DIRECTED","_key":"54401","_from":"7297","_to":"34892"} +{"$label":"DIRECTED","_key":"90350","_from":"7298","_to":"53397"} +{"$label":"DIRECTED","_key":"69868","_from":"7298","_to":"42631"} +{"$label":"DIRECTED","_key":"54402","_from":"7298","_to":"34892"} +{"$label":"ACTS_IN","name":"Official at Funeral","type":"Role","_key":"54178","_from":"7299","_to":"34805"} +{"$label":"ACTS_IN","name":"Henry Rose","type":"Role","_key":"25731","_from":"7299","_to":"18508"} +{"$label":"ACTS_IN","name":"Gustav Ritter von Kahr","type":"Role","_key":"21773","_from":"7299","_to":"15899"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"113365","_from":"7300","_to":"66778"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"106432","_from":"7300","_to":"62701"} +{"$label":"ACTS_IN","name":"Maggie O'Toole","type":"Role","_key":"61348","_from":"7300","_to":"38715"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"53566","_from":"7300","_to":"34569"} +{"$label":"ACTS_IN","name":"Winter","type":"Role","_key":"112282","_from":"7301","_to":"66300"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"114979","_from":"7302","_to":"67711"} +{"$label":"ACTS_IN","name":"Spider","type":"Role","_key":"9040","_from":"7316","_to":"7306"} +{"$label":"ACTS_IN","name":"Janice Rossi","type":"Role","_key":"9038","_from":"7315","_to":"7306"} +{"$label":"ACTS_IN","name":"Karen's Mother","type":"Role","_key":"9037","_from":"7314","_to":"7306"} +{"$label":"ACTS_IN","name":"Mrs. DeVito, Tommy's Mother","type":"Role","_key":"9036","_from":"7313","_to":"7306"} +{"$label":"ACTS_IN","name":"Sonny Bunz","type":"Role","_key":"9032","_from":"7312","_to":"7306"} +{"$label":"ACTS_IN","name":"Tuddy Cicero","type":"Role","_key":"9031","_from":"7311","_to":"7306"} +{"$label":"ACTS_IN","name":"Frankie Carbone","type":"Role","_key":"9030","_from":"7310","_to":"7306"} +{"$label":"ACTS_IN","name":"Morris Kessler","type":"Role","_key":"9029","_from":"7309","_to":"7306"} +{"$label":"ACTS_IN","name":"Karen Hill","type":"Role","_key":"9027","_from":"7308","_to":"7306"} +{"$label":"ACTS_IN","name":"Henry Hill","type":"Role","_key":"9025","_from":"7307","_to":"7306"} +{"$label":"ACTS_IN","name":"Tom Carver","type":"Role","_key":"118820","_from":"7307","_to":"69851"} +{"$label":"ACTS_IN","name":"Ford Cole","type":"Role","_key":"117446","_from":"7307","_to":"69070"} +{"$label":"ACTS_IN","name":"Mark Brice","type":"Role","_key":"116625","_from":"7307","_to":"68650"} +{"$label":"ACTS_IN","name":"Jack Doheny","type":"Role","_key":"113803","_from":"7307","_to":"67048"} +{"$label":"ACTS_IN","name":"Officer Pete Davis","type":"Role","_key":"112439","_from":"7307","_to":"66383"} +{"$label":"ACTS_IN","name":"Detective Harrison","type":"Role","_key":"110749","_from":"7307","_to":"65426"} +{"$label":"ACTS_IN","name":"Detective Terry Subcott","type":"Role","_key":"109280","_from":"7307","_to":"64563"} +{"$label":"ACTS_IN","name":"Cole Frankel","type":"Role","_key":"105037","_from":"7307","_to":"61815"} +{"$label":"ACTS_IN","name":"Walter Pearce","type":"Role","_key":"100823","_from":"7307","_to":"59442"} +{"$label":"ACTS_IN","name":"Mayor Jim Tobin","type":"Role","_key":"93193","_from":"7307","_to":"54916"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"68497","_from":"7307","_to":"42015"} +{"$label":"ACTS_IN","name":"Det. Lt. Henry Oak","type":"Role","_key":"67349","_from":"7307","_to":"41510"} +{"$label":"ACTS_IN","name":"Macha","type":"Role","_key":"66234","_from":"7307","_to":"40976"} +{"$label":"ACTS_IN","name":"Dean Cumanno","type":"Role","_key":"66059","_from":"7307","_to":"40881"} +{"$label":"ACTS_IN","name":"Manny Singer","type":"Role","_key":"63478","_from":"7307","_to":"39755"} +{"$label":"ACTS_IN","name":"Capt. J.T. Robbins","type":"Role","_key":"63407","_from":"7307","_to":"39725"} +{"$label":"ACTS_IN","name":"Paul Krendler","type":"Role","_key":"56220","_from":"7307","_to":"35726"} +{"$label":"ACTS_IN","name":"Lee Ray Oliver","type":"Role","_key":"55185","_from":"7307","_to":"35208"} +{"$label":"ACTS_IN","name":"Chief Gus Monroe","type":"Role","_key":"50026","_from":"7307","_to":"32743"} +{"$label":"ACTS_IN","name":"Donald Carruthers","type":"Role","_key":"47068","_from":"7307","_to":"31043"} +{"$label":"ACTS_IN","name":"Ray Liotta","type":"Role","_key":"37859","_from":"7307","_to":"25647"} +{"$label":"ACTS_IN","name":"Fred Jung","type":"Role","_key":"29706","_from":"7307","_to":"21034"} +{"$label":"ACTS_IN","name":"Rhodes","type":"Role","_key":"23843","_from":"7307","_to":"17287"} +{"$label":"ACTS_IN","name":"John Talio Sr.","type":"Role","_key":"20419","_from":"7307","_to":"14941"} +{"$label":"ACTS_IN","name":"\"Shoeless\" Joe Jackson","type":"Role","_key":"20410","_from":"7307","_to":"14937"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"20356","_from":"7307","_to":"14911"} +{"$label":"ACTS_IN","name":"Gallian","type":"Role","_key":"20319","_from":"7307","_to":"14887"} +{"$label":"ACTS_IN","name":"Gary \" Figgsy \" Figgis","type":"Role","_key":"18631","_from":"7307","_to":"13786"} +{"$label":"ACTS_IN","name":"Dr. David Krane","type":"Role","_key":"17803","_from":"7307","_to":"13273"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"100756","_from":"7308","_to":"59407"} +{"$label":"ACTS_IN","name":"Jim's Mother","type":"Role","_key":"63542","_from":"7308","_to":"39775"} +{"$label":"ACTS_IN","name":"Margo","type":"Role","_key":"63245","_from":"7308","_to":"39652"} +{"$label":"ACTS_IN","name":"Sheila Faxton","type":"Role","_key":"62122","_from":"7308","_to":"39122"} +{"$label":"ACTS_IN","name":"Dr. Rae Crane","type":"Role","_key":"52529","_from":"7308","_to":"34154"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"57277","_from":"7309","_to":"36323"} +{"$label":"ACTS_IN","name":"Murray Dunlap","type":"Role","_key":"39259","_from":"7310","_to":"26549"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"64136","_from":"7312","_to":"40021"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"55589","_from":"7312","_to":"35397"} +{"$label":"ACTS_IN","name":"Big Ethel","type":"Role","_key":"95997","_from":"7314","_to":"56430"} +{"$label":"ACTS_IN","name":"Jojo","type":"Role","_key":"56178","_from":"7316","_to":"35707"} +{"$label":"ACTS_IN","name":"Len Fenerman","type":"Role","_key":"47627","_from":"7316","_to":"31382"} +{"$label":"ACTS_IN","name":"Allen","type":"Role","_key":"28185","_from":"7316","_to":"20190"} +{"$label":"ACTS_IN","name":"Maybelle Merriwether","type":"Role","_key":"9075","_from":"7342","_to":"7317"} +{"$label":"ACTS_IN","name":"Belle Watling","type":"Role","_key":"9073","_from":"7341","_to":"7317"} +{"$label":"ACTS_IN","name":"Yankee Major","type":"Role","_key":"9071","_from":"7340","_to":"7317"} +{"$label":"ACTS_IN","name":"Corporal","type":"Role","_key":"9070","_from":"7339","_to":"7317"} +{"$label":"ACTS_IN","name":"A Carpetbagger Businessman","type":"Role","_key":"9069","_from":"7338","_to":"7317"} +{"$label":"ACTS_IN","name":"Hungry Soldier Holding Beau Wilkes","type":"Role","_key":"9067","_from":"7337","_to":"7317"} +{"$label":"ACTS_IN","name":"Renegade","type":"Role","_key":"9066","_from":"7336","_to":"7317"} +{"$label":"ACTS_IN","name":"Bonnie's Nurse in London","type":"Role","_key":"9065","_from":"7335","_to":"7317"} +{"$label":"ACTS_IN","name":"Reminiscent Soldier","type":"Role","_key":"9064","_from":"7334","_to":"7317"} +{"$label":"ACTS_IN","name":"Phil Meade","type":"Role","_key":"9063","_from":"7333","_to":"7317"} +{"$label":"ACTS_IN","name":"Amputation Case","type":"Role","_key":"9060","_from":"7332","_to":"7317"} +{"$label":"ACTS_IN","name":"Bonnie Blue Butler","type":"Role","_key":"9059","_from":"7331","_to":"7317"} +{"$label":"ACTS_IN","name":"Mrs. Meade","type":"Role","_key":"9058","_from":"7330","_to":"7317"} +{"$label":"ACTS_IN","name":"Dr. Meade","type":"Role","_key":"9057","_from":"7329","_to":"7317"} +{"$label":"ACTS_IN","name":"Cathleen Calvert","type":"Role","_key":"9056","_from":"7328","_to":"7317"} +{"$label":"ACTS_IN","name":"Prissy","type":"Role","_key":"9055","_from":"7327","_to":"7317"} +{"$label":"ACTS_IN","name":"Pork","type":"Role","_key":"9054","_from":"7326","_to":"7317"} +{"$label":"ACTS_IN","name":"Mammy","type":"Role","_key":"9053","_from":"7325","_to":"7317"} +{"$label":"ACTS_IN","name":"Brent Tarleton","type":"Role","_key":"9052","_from":"7324","_to":"7317"} +{"$label":"ACTS_IN","name":"Stuart Tarleton","type":"Role","_key":"9051","_from":"7323","_to":"7317"} +{"$label":"ACTS_IN","name":"Carreen O'Hara","type":"Role","_key":"9050","_from":"7322","_to":"7317"} +{"$label":"ACTS_IN","name":"Suellen O'Hara","type":"Role","_key":"9049","_from":"7321","_to":"7317"} +{"$label":"ACTS_IN","name":"Ashley Wilkes","type":"Role","_key":"9047","_from":"7320","_to":"7317"} +{"$label":"ACTS_IN","name":"Melanie Hamilton","type":"Role","_key":"9045","_from":"7319","_to":"7317"} +{"$label":"ACTS_IN","name":"Rhett Butler","type":"Role","_key":"9044","_from":"7318","_to":"7317"} +{"$label":"ACTS_IN","name":"Cmdr, Richardson","type":"Role","_key":"117484","_from":"7318","_to":"69086"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"89250","_from":"7318","_to":"52845"} +{"$label":"ACTS_IN","name":"Gay Langland","type":"Role","_key":"70493","_from":"7318","_to":"42914"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38397","_from":"7318","_to":"25936"} +{"$label":"ACTS_IN","name":"Peter Warne","type":"Role","_key":"25524","_from":"7318","_to":"18391"} +{"$label":"ACTS_IN","name":"Abbie Irving","type":"Role","_key":"113505","_from":"7319","_to":"66878"} +{"$label":"ACTS_IN","name":"Elizabeth Bacon","type":"Role","_key":"112095","_from":"7319","_to":"66188"} +{"$label":"ACTS_IN","name":"Arabella Bishop","type":"Role","_key":"110424","_from":"7319","_to":"65236"} +{"$label":"ACTS_IN","name":"Lady Penelope Gray","type":"Role","_key":"110412","_from":"7319","_to":"65234"} +{"$label":"ACTS_IN","name":"Maid Marian","type":"Role","_key":"66627","_from":"7319","_to":"41182"} +{"$label":"ACTS_IN","name":"Miriam Deering","type":"Role","_key":"62461","_from":"7319","_to":"39339"} +{"$label":"ACTS_IN","name":"Emily Livingston","type":"Role","_key":"46015","_from":"7319","_to":"30412"} +{"$label":"ACTS_IN","name":"Anne d'Autriche","type":"Role","_key":"30067","_from":"7319","_to":"21200"} +{"$label":"ACTS_IN","name":"Kit Holliday","type":"Role","_key":"15200","_from":"7319","_to":"11641"} +{"$label":"ACTS_IN","name":"Alan Squier","type":"Role","_key":"110938","_from":"7320","_to":"65529"} +{"$label":"ACTS_IN","name":"R.J. Mitchell","type":"Role","_key":"109249","_from":"7320","_to":"64542"} +{"$label":"DIRECTED","_key":"109271","_from":"7320","_to":"64542"} +{"$label":"ACTS_IN","name":"Nancy Hobson","type":"Role","_key":"119751","_from":"7321","_to":"70323"} +{"$label":"ACTS_IN","name":"Helen Sherman","type":"Role","_key":"64848","_from":"7321","_to":"40339"} +{"$label":"ACTS_IN","name":"Dr. Bertram Charles","type":"Role","_key":"100999","_from":"7329","_to":"59522"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"10813","_from":"7329","_to":"8568"} +{"$label":"ACTS_IN","name":"Tante Hannah Henderson","type":"Role","_key":"29030","_from":"7330","_to":"20709"} +{"$label":"ACTS_IN","name":"Mrs. Hannah Gogarty","type":"Role","_key":"10725","_from":"7330","_to":"8505"} +{"$label":"ACTS_IN","name":"Dewey Hoople","type":"Role","_key":"39165","_from":"7333","_to":"26475"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38338","_from":"7333","_to":"25894"} +{"$label":"ACTS_IN","name":"George \" Buddy \" Wade","type":"Role","_key":"28764","_from":"7333","_to":"20550"} +{"$label":"ACTS_IN","name":"George \" Buddy \" Ware","type":"Role","_key":"28728","_from":"7333","_to":"20523"} +{"$label":"ACTS_IN","name":"Jiminy Cricket (voice)","type":"Role","_key":"66507","_from":"7334","_to":"41120"} +{"$label":"ACTS_IN","name":"Reporter Endicott","type":"Role","_key":"25625","_from":"7334","_to":"18451"} +{"$label":"ACTS_IN","name":"Joe Brody","type":"Role","_key":"10831","_from":"7337","_to":"8581"} +{"$label":"ACTS_IN","name":"Blair Fletcher (as Olin Howlin)","type":"Role","_key":"109909","_from":"7338","_to":"64940"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"51117","_from":"7338","_to":"33347"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"29668","_from":"7338","_to":"20995"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"29093","_from":"7338","_to":"20731"} +{"$label":"ACTS_IN","name":"Encyclopedia Salesman","type":"Role","_key":"28928","_from":"7338","_to":"20670"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29128","_from":"7339","_to":"20744"} +{"$label":"ACTS_IN","name":"Mr. Crumb","type":"Role","_key":"29107","_from":"7339","_to":"20737"} +{"$label":"ACTS_IN","name":"Mr. Crumb","type":"Role","_key":"29090","_from":"7339","_to":"20731"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29044","_from":"7339","_to":"20712"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29025","_from":"7339","_to":"20709"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29017","_from":"7339","_to":"20706"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29003","_from":"7339","_to":"20702"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"28948","_from":"7339","_to":"20676"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"28934","_from":"7339","_to":"20670"} +{"$label":"ACTS_IN","name":"Graves","type":"Role","_key":"26048","_from":"7339","_to":"18716"} +{"$label":"ACTS_IN","name":"Alice MacKenzie","type":"Role","_key":"93938","_from":"7342","_to":"55317"} +{"$label":"ACTS_IN","name":"Rod","type":"Role","_key":"9091","_from":"7356","_to":"7343"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"9090","_from":"7355","_to":"7343"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"9089","_from":"7354","_to":"7343"} +{"$label":"ACTS_IN","name":"Officer Balzak","type":"Role","_key":"9088","_from":"7353","_to":"7343"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"9086","_from":"7352","_to":"7343"} +{"$label":"ACTS_IN","name":"Uncle Frank","type":"Role","_key":"9085","_from":"7351","_to":"7343"} +{"$label":"ACTS_IN","name":"Buzz","type":"Role","_key":"9084","_from":"7350","_to":"7343"} +{"$label":"ACTS_IN","name":"Linnie","type":"Role","_key":"9083","_from":"7349","_to":"7343"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"9082","_from":"7348","_to":"7343"} +{"$label":"ACTS_IN","name":"Marley","type":"Role","_key":"9081","_from":"7347","_to":"7343"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"9080","_from":"7346","_to":"7343"} +{"$label":"ACTS_IN","name":"Marv","type":"Role","_key":"9079","_from":"7345","_to":"7343"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"9077","_from":"7344","_to":"7343"} +{"$label":"ACTS_IN","name":"Richard Tyler","type":"Role","_key":"103323","_from":"7344","_to":"60784"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"102965","_from":"7344","_to":"60564"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"93372","_from":"7344","_to":"54999"} +{"$label":"ACTS_IN","name":"Richie Rich","type":"Role","_key":"67283","_from":"7344","_to":"41485"} +{"$label":"ACTS_IN","name":"Henry Evans","type":"Role","_key":"52760","_from":"7344","_to":"34232"} +{"$label":"ACTS_IN","name":"Thomas J. Sennett","type":"Role","_key":"29484","_from":"7344","_to":"20905"} +{"$label":"ACTS_IN","name":"Miles Russell","type":"Role","_key":"22221","_from":"7344","_to":"16185"} +{"$label":"ACTS_IN","name":"Michael Alig","type":"Role","_key":"13085","_from":"7344","_to":"10201"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"9093","_from":"7344","_to":"7357"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"119708","_from":"7345","_to":"70307"} +{"$label":"ACTS_IN","name":"Will Lawson","type":"Role","_key":"104816","_from":"7345","_to":"61674"} +{"$label":"ACTS_IN","name":"Glen Stevenson","type":"Role","_key":"103317","_from":"7345","_to":"60782"} +{"$label":"ACTS_IN","name":"Buzz 'Sixpack' Parrish","type":"Role","_key":"99851","_from":"7345","_to":"58891"} +{"$label":"ACTS_IN","name":"Laurence 'Shrevie' Schreiber","type":"Role","_key":"96365","_from":"7345","_to":"56647"} +{"$label":"ACTS_IN","name":"Herbie Platt","type":"Role","_key":"94732","_from":"7345","_to":"55796"} +{"$label":"ACTS_IN","name":"Phil Berquist","type":"Role","_key":"69064","_from":"7345","_to":"42268"} +{"$label":"ACTS_IN","name":"Adam Berkow","type":"Role","_key":"59625","_from":"7345","_to":"37645"} +{"$label":"ACTS_IN","name":"Hal Petersham","type":"Role","_key":"56246","_from":"7345","_to":"35738"} +{"$label":"ACTS_IN","name":"Phil Berquist","type":"Role","_key":"12996","_from":"7345","_to":"10137"} +{"$label":"ACTS_IN","name":"Marv Merchants","type":"Role","_key":"9096","_from":"7345","_to":"7357"} +{"$label":"ACTS_IN","name":"Vice President Ted Matthews","type":"Role","_key":"113970","_from":"7346","_to":"67124"} +{"$label":"ACTS_IN","name":"John Pierce","type":"Role","_key":"105106","_from":"7346","_to":"61860"} +{"$label":"ACTS_IN","name":"Officer Lou Bratley","type":"Role","_key":"97487","_from":"7346","_to":"57409"} +{"$label":"ACTS_IN","name":"Charlie Bloom","type":"Role","_key":"94730","_from":"7346","_to":"55796"} +{"$label":"ACTS_IN","name":"Tony Smith","type":"Role","_key":"89958","_from":"7346","_to":"53218"} +{"$label":"ACTS_IN","name":"Thomas 'Tom' Schorr","type":"Role","_key":"66128","_from":"7346","_to":"40908"} +{"$label":"ACTS_IN","name":"Professor Roseman","type":"Role","_key":"62303","_from":"7346","_to":"39249"} +{"$label":"ACTS_IN","name":"Capt. Brian Tilman","type":"Role","_key":"60129","_from":"7346","_to":"37937"} +{"$label":"ACTS_IN","name":"James Decker","type":"Role","_key":"56830","_from":"7346","_to":"36088"} +{"$label":"ACTS_IN","name":"Gilbert Powell","type":"Role","_key":"50453","_from":"7346","_to":"32956"} +{"$label":"ACTS_IN","name":"Oliver Yates","type":"Role","_key":"42614","_from":"7346","_to":"28531"} +{"$label":"ACTS_IN","name":"Dave Childress","type":"Role","_key":"41479","_from":"7346","_to":"27874"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"19989","_from":"7346","_to":"14711"} +{"$label":"ACTS_IN","name":"Peter McCallister","type":"Role","_key":"9097","_from":"7346","_to":"7357"} +{"$label":"ACTS_IN","name":"Judge Evans","type":"Role","_key":"72193","_from":"7347","_to":"43625"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"65332","_from":"7347","_to":"40534"} +{"$label":"ACTS_IN","name":"George LeBay","type":"Role","_key":"50777","_from":"7347","_to":"33134"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"9921","_from":"7347","_to":"7948"} +{"$label":"ACTS_IN","name":"Gloria Farlander","type":"Role","_key":"119397","_from":"7348","_to":"70150"} +{"$label":"ACTS_IN","name":"Judith (voice)","type":"Role","_key":"109397","_from":"7348","_to":"64630"} +{"$label":"ACTS_IN","name":"Sheila Albertson","type":"Role","_key":"109276","_from":"7348","_to":"64561"} +{"$label":"ACTS_IN","name":"Christine O'Hara","type":"Role","_key":"104931","_from":"7348","_to":"61746"} +{"$label":"ACTS_IN","name":"Marilyn Hack","type":"Role","_key":"101814","_from":"7348","_to":"59926"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"96919","_from":"7348","_to":"57008"} +{"$label":"ACTS_IN","name":"Cookie Fleck","type":"Role","_key":"96610","_from":"7348","_to":"56824"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"94140","_from":"7348","_to":"55439"} +{"$label":"ACTS_IN","name":"Mrs. Prysselius (voice)","type":"Role","_key":"90716","_from":"7348","_to":"53547"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"89201","_from":"7348","_to":"52823"} +{"$label":"ACTS_IN","name":"Beatrice Lever","type":"Role","_key":"89082","_from":"7348","_to":"52771"} +{"$label":"ACTS_IN","name":"Allie Earp","type":"Role","_key":"88374","_from":"7348","_to":"52390"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"66130","_from":"7348","_to":"40908"} +{"$label":"ACTS_IN","name":"Kata","type":"Role","_key":"59400","_from":"7348","_to":"37525"} +{"$label":"ACTS_IN","name":"Tina - Alien Mom","type":"Role","_key":"58941","_from":"7348","_to":"37214"} +{"$label":"ACTS_IN","name":"Sally \/ Shock (voice)","type":"Role","_key":"54125","_from":"7348","_to":"34786"} +{"$label":"ACTS_IN","name":"Jessica Wilhern","type":"Role","_key":"47660","_from":"7348","_to":"31400"} +{"$label":"ACTS_IN","name":"Penny (voice)","type":"Role","_key":"47106","_from":"7348","_to":"31057"} +{"$label":"ACTS_IN","name":"Delia","type":"Role","_key":"29419","_from":"7348","_to":"20869"} +{"$label":"ACTS_IN","name":"Kate McCallister","type":"Role","_key":"9095","_from":"7348","_to":"7357"} +{"$label":"ACTS_IN","name":"Elli","type":"Role","_key":"109468","_from":"7349","_to":"64667"} +{"$label":"ACTS_IN","name":"Taylor Gentry","type":"Role","_key":"66985","_from":"7349","_to":"41353"} +{"$label":"ACTS_IN","name":"Ronnie Coleman","type":"Role","_key":"103321","_from":"7350","_to":"60782"} +{"$label":"ACTS_IN","name":"Buzz McCallister","type":"Role","_key":"9098","_from":"7350","_to":"7357"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"104735","_from":"7351","_to":"61613"} +{"$label":"ACTS_IN","name":"Uncle Frank McCallister","type":"Role","_key":"9100","_from":"7351","_to":"7357"} +{"$label":"ACTS_IN","name":"Megan McCallister","type":"Role","_key":"9099","_from":"7352","_to":"7357"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"105505","_from":"7353","_to":"62082"} +{"$label":"ACTS_IN","name":"Charley Butts","type":"Role","_key":"65346","_from":"7353","_to":"40534"} +{"$label":"ACTS_IN","name":"Kokolovitch","type":"Role","_key":"22261","_from":"7353","_to":"16202"} +{"$label":"ACTS_IN","name":"Doobie","type":"Role","_key":"22171","_from":"7353","_to":"16161"} +{"$label":"ACTS_IN","name":"Rod McCallister","type":"Role","_key":"9101","_from":"7356","_to":"7357"} +{"$label":"ACTS_IN","name":"Mr. Hector, Hotel Concierge","type":"Role","_key":"9103","_from":"7359","_to":"7357"} +{"$label":"ACTS_IN","name":"Fuller McCallister","type":"Role","_key":"9102","_from":"7358","_to":"7357"} +{"$label":"ACTS_IN","name":"Tim Sullivan","type":"Role","_key":"110214","_from":"7358","_to":"65143"} +{"$label":"ACTS_IN","name":"Mike 'Mookie' Anderson","type":"Role","_key":"63090","_from":"7358","_to":"39584"} +{"$label":"ACTS_IN","name":"Kevin \"Freak\" Dillon","type":"Role","_key":"57150","_from":"7358","_to":"36270"} +{"$label":"ACTS_IN","name":"Jason 'Igby' Slocumb, Jr.","type":"Role","_key":"55601","_from":"7358","_to":"35408"} +{"$label":"ACTS_IN","name":"Buster","type":"Role","_key":"15169","_from":"7358","_to":"11627"} +{"$label":"ACTS_IN","name":"Coeur De Noir","type":"Role","_key":"114687","_from":"7359","_to":"67560"} +{"$label":"ACTS_IN","name":"Rooster Hannigan","type":"Role","_key":"105742","_from":"7359","_to":"62249"} +{"$label":"ACTS_IN","name":"Wadsworth","type":"Role","_key":"103548","_from":"7359","_to":"60907"} +{"$label":"ACTS_IN","name":"Mouse King","type":"Role","_key":"103449","_from":"7359","_to":"60846"} +{"$label":"ACTS_IN","name":"Maj. Vladikov","type":"Role","_key":"102431","_from":"7359","_to":"60274"} +{"$label":"ACTS_IN","name":"Rex Pester (voice)","type":"Role","_key":"100321","_from":"7359","_to":"59151"} +{"$label":"ACTS_IN","name":"McLoosh","type":"Role","_key":"98489","_from":"7359","_to":"58035"} +{"$label":"ACTS_IN","name":"Yegor (voice)","type":"Role","_key":"97725","_from":"7359","_to":"57545"} +{"$label":"ACTS_IN","name":"Trymon","type":"Role","_key":"95115","_from":"7359","_to":"55975"} +{"$label":"ACTS_IN","name":"Forte","type":"Role","_key":"93889","_from":"7359","_to":"55282"} +{"$label":"ACTS_IN","name":"Hexxus (voice)","type":"Role","_key":"93531","_from":"7359","_to":"55072"} +{"$label":"ACTS_IN","name":"Herr der Finsternis","type":"Role","_key":"73105","_from":"7359","_to":"43975"} +{"$label":"ACTS_IN","name":"Gomez Addams","type":"Role","_key":"70271","_from":"7359","_to":"42822"} +{"$label":"ACTS_IN","name":"Thurman Rice","type":"Role","_key":"68392","_from":"7359","_to":"41964"} +{"$label":"ACTS_IN","name":"Long John Silver","type":"Role","_key":"66404","_from":"7359","_to":"41066"} +{"$label":"ACTS_IN","name":"Herkermer Homolka","type":"Role","_key":"62619","_from":"7359","_to":"39391"} +{"$label":"ACTS_IN","name":"Richelieu","type":"Role","_key":"60066","_from":"7359","_to":"37904"} +{"$label":"ACTS_IN","name":"Mr. Jigsaw","type":"Role","_key":"55242","_from":"7359","_to":"35235"} +{"$label":"ACTS_IN","name":"Prince (Stimme)","type":"Role","_key":"54363","_from":"7359","_to":"34872"} +{"$label":"ACTS_IN","name":"Farley Claymore","type":"Role","_key":"51113","_from":"7359","_to":"33346"} +{"$label":"ACTS_IN","name":"Roger Corwin","type":"Role","_key":"31003","_from":"7359","_to":"21713"} +{"$label":"ACTS_IN","name":"Prof. Oldman","type":"Role","_key":"30450","_from":"7359","_to":"21400"} +{"$label":"ACTS_IN","name":"Steward Simon Doonan","type":"Role","_key":"22775","_from":"7359","_to":"16516"} +{"$label":"ACTS_IN","name":"Robert Gray","type":"Role","_key":"22649","_from":"7359","_to":"16433"} +{"$label":"ACTS_IN","name":"Kirby","type":"Role","_key":"9121","_from":"7374","_to":"7360"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"9120","_from":"7373","_to":"7360"} +{"$label":"ACTS_IN","name":"Stan Grossman","type":"Role","_key":"9119","_from":"7372","_to":"7360"} +{"$label":"ACTS_IN","name":"Larry Sugarman","type":"Role","_key":"9118","_from":"7371","_to":"7360"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"9117","_from":"7370","_to":"7360"} +{"$label":"ACTS_IN","name":"Convenience Store Proprietor","type":"Role","_key":"9116","_from":"7369","_to":"7360"} +{"$label":"ACTS_IN","name":"Diner Waitress","type":"Role","_key":"9115","_from":"7368","_to":"7360"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"9114","_from":"7367","_to":"7360"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"9113","_from":"7366","_to":"7360"} +{"$label":"ACTS_IN","name":"Miss California","type":"Role","_key":"9112","_from":"7365","_to":"7360"} +{"$label":"ACTS_IN","name":"Dwayne","type":"Role","_key":"9109","_from":"7364","_to":"7360"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"9108","_from":"7363","_to":"7360"} +{"$label":"DIRECTED","_key":"9105","_from":"7362","_to":"7360"} +{"$label":"DIRECTED","_key":"9104","_from":"7361","_to":"7360"} +{"$label":"ACTS_IN","name":"Bob Kearns","type":"Role","_key":"102451","_from":"7363","_to":"60287"} +{"$label":"ACTS_IN","name":"Bradley Smith","type":"Role","_key":"99614","_from":"7363","_to":"58730"} +{"$label":"ACTS_IN","name":"Bob Crane","type":"Role","_key":"98531","_from":"7363","_to":"58070"} +{"$label":"ACTS_IN","name":"Frank Herlihy","type":"Role","_key":"91592","_from":"7363","_to":"54001"} +{"$label":"ACTS_IN","name":"Ray Brown","type":"Role","_key":"90861","_from":"7363","_to":"53612"} +{"$label":"ACTS_IN","name":"David Larrabee","type":"Role","_key":"72429","_from":"7363","_to":"43719"} +{"$label":"ACTS_IN","name":"Dick Vermeil","type":"Role","_key":"71310","_from":"7363","_to":"43258"} +{"$label":"ACTS_IN","name":"Paul Duncan","type":"Role","_key":"67600","_from":"7363","_to":"41612"} +{"$label":"ACTS_IN","name":"Literaturprofessor","type":"Role","_key":"64792","_from":"7363","_to":"40315"} +{"$label":"ACTS_IN","name":"Maj. Bruce 'Snake' Crandall","type":"Role","_key":"64303","_from":"7363","_to":"40088"} +{"$label":"ACTS_IN","name":"Dr. David Ravell\/George McCord","type":"Role","_key":"63575","_from":"7363","_to":"39783"} +{"$label":"ACTS_IN","name":"Perry Gordon","type":"Role","_key":"63110","_from":"7363","_to":"39590"} +{"$label":"ACTS_IN","name":"Broken Nose","type":"Role","_key":"57208","_from":"7363","_to":"36289"} +{"$label":"ACTS_IN","name":"Danny Wright","type":"Role","_key":"54381","_from":"7363","_to":"34876"} +{"$label":"ACTS_IN","name":"Frank Navasky","type":"Role","_key":"54211","_from":"7363","_to":"34820"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"50838","_from":"7363","_to":"33179"} +{"$label":"ACTS_IN","name":"Don Anderson","type":"Role","_key":"49021","_from":"7363","_to":"32126"} +{"$label":"ACTS_IN","name":"Simon Bishop","type":"Role","_key":"24161","_from":"7363","_to":"17512"} +{"$label":"ACTS_IN","name":"Wayne Collins","type":"Role","_key":"17816","_from":"7363","_to":"13278"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"15564","_from":"7363","_to":"11881"} +{"$label":"ACTS_IN","name":"Howie Blitzer","type":"Role","_key":"117274","_from":"7364","_to":"68977"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"104209","_from":"7364","_to":"61310"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"102558","_from":"7364","_to":"60337"} +{"$label":"ACTS_IN","name":"Klitz","type":"Role","_key":"64328","_from":"7364","_to":"40093"} +{"$label":"ACTS_IN","name":"Paul Sunday \/ Eli Sunday","type":"Role","_key":"46562","_from":"7364","_to":"30757"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"36289","_from":"7364","_to":"24618"} +{"$label":"ACTS_IN","name":"Gomez","type":"Role","_key":"103189","_from":"7366","_to":"60693"} +{"$label":"ACTS_IN","name":"Mr. Alva","type":"Role","_key":"56795","_from":"7366","_to":"36065"} +{"$label":"ACTS_IN","name":"Detective Ruiz","type":"Role","_key":"56183","_from":"7366","_to":"35707"} +{"$label":"ACTS_IN","name":"Dr. Frederico Cruz","type":"Role","_key":"55984","_from":"7366","_to":"35588"} +{"$label":"ACTS_IN","name":"Colonel Candela","type":"Role","_key":"55835","_from":"7366","_to":"35529"} +{"$label":"ACTS_IN","name":"Peaches Vater","type":"Role","_key":"45773","_from":"7366","_to":"30280"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"20270","_from":"7366","_to":"14861"} +{"$label":"ACTS_IN","name":"Romey","type":"Role","_key":"17268","_from":"7366","_to":"12925"} +{"$label":"ACTS_IN","name":"Frey Felipe","type":"Role","_key":"14720","_from":"7366","_to":"11325"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"110369","_from":"7367","_to":"65216"} +{"$label":"ACTS_IN","name":"Babys Mutter","type":"Role","_key":"37179","_from":"7367","_to":"25176"} +{"$label":"ACTS_IN","name":"Luz","type":"Role","_key":"21947","_from":"7368","_to":"16022"} +{"$label":"ACTS_IN","name":"Freshman","type":"Role","_key":"108379","_from":"7370","_to":"64065"} +{"$label":"ACTS_IN","name":"Woodrow Snider","type":"Role","_key":"114714","_from":"7372","_to":"67571"} +{"$label":"ACTS_IN","name":"Astronomer","type":"Role","_key":"9133","_from":"7385","_to":"7376"} +{"$label":"ACTS_IN","name":"Astronomer","type":"Role","_key":"9132","_from":"7384","_to":"7376"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"9131","_from":"7383","_to":"7376"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"9130","_from":"7382","_to":"7376"} +{"$label":"ACTS_IN","name":"o. A,","type":"Role","_key":"9129","_from":"7381","_to":"7376"} +{"$label":"ACTS_IN","name":"Astronom","type":"Role","_key":"9128","_from":"7380","_to":"7376"} +{"$label":"ACTS_IN","name":"Femme de la Lune","type":"Role","_key":"9127","_from":"7379","_to":"7376"} +{"$label":"ACTS_IN","name":"Pilote de la fus\u00e9e","type":"Role","_key":"9126","_from":"7378","_to":"7376"} +{"$label":"ACTS_IN","name":"Professeur Barbenfouillis","type":"Role","_key":"9125","_from":"7377","_to":"7376"} +{"$label":"DIRECTED","_key":"9124","_from":"7377","_to":"7376"} +{"$label":"ACTS_IN","name":"Devil","type":"Role","_key":"109320","_from":"7377","_to":"64584"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24472","_from":"7377","_to":"17692"} +{"$label":"DIRECTED","_key":"109319","_from":"7377","_to":"64584"} +{"$label":"DIRECTED","_key":"24471","_from":"7377","_to":"17692"} +{"$label":"ACTS_IN","name":"Octave","type":"Role","_key":"9146","_from":"7387","_to":"7386"} +{"$label":"ACTS_IN","name":"Edouard Schumacher, le garde-chasse","type":"Role","_key":"9145","_from":"7396","_to":"7386"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Jurieux","type":"Role","_key":"9144","_from":"7395","_to":"7386"} +{"$label":"ACTS_IN","name":"Marceau, le braconnier","type":"Role","_key":"9143","_from":"7394","_to":"7386"} +{"$label":"ACTS_IN","name":"Radio-Reporter","type":"Role","_key":"9141","_from":"7393","_to":"7386"} +{"$label":"ACTS_IN","name":"Jackie, ni\u00e8ce de Christine","type":"Role","_key":"9140","_from":"7392","_to":"7386"} +{"$label":"ACTS_IN","name":"Madame de la Bruy\u00e8re","type":"Role","_key":"9139","_from":"7391","_to":"7386"} +{"$label":"ACTS_IN","name":"Madame de la Plante","type":"Role","_key":"9138","_from":"7390","_to":"7386"} +{"$label":"ACTS_IN","name":"Lisette, sa cam\u00e9riste","type":"Role","_key":"9136","_from":"7389","_to":"7386"} +{"$label":"ACTS_IN","name":"Christine de la Cheyniest","type":"Role","_key":"9135","_from":"7388","_to":"7386"} +{"$label":"DIRECTED","_key":"9134","_from":"7387","_to":"7386"} +{"$label":"DIRECTED","_key":"25074","_from":"7387","_to":"18116"} +{"$label":"DIRECTED","_key":"9158","_from":"7387","_to":"7397"} +{"$label":"ACTS_IN","name":"Rina Korff","type":"Role","_key":"45340","_from":"7388","_to":"30073"} +{"$label":"ACTS_IN","name":"Mme Diog\u00e8ne","type":"Role","_key":"72053","_from":"7389","_to":"43571"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"35102","_from":"7389","_to":"23927"} +{"$label":"ACTS_IN","name":"Mme Lapoule","type":"Role","_key":"33373","_from":"7389","_to":"23104"} +{"$label":"ACTS_IN","name":"Mme Charlebouis","type":"Role","_key":"30648","_from":"7389","_to":"21518"} +{"$label":"ACTS_IN","name":"Madame Vieuzac","type":"Role","_key":"15500","_from":"7389","_to":"11836"} +{"$label":"ACTS_IN","name":"Germaine Fabre","type":"Role","_key":"15178","_from":"7389","_to":"11631"} +{"$label":"ACTS_IN","name":"Cartier, l'acteur","type":"Role","_key":"9156","_from":"7394","_to":"7397"} +{"$label":"ACTS_IN","name":"der Mann","type":"Role","_key":"39031","_from":"7396","_to":"26382"} +{"$label":"ACTS_IN","name":"Coudray","type":"Role","_key":"22009","_from":"7396","_to":"16059"} +{"$label":"ACTS_IN","name":"The engineer","type":"Role","_key":"9157","_from":"7396","_to":"7397"} +{"$label":"ACTS_IN","name":"Lt. Demolder","type":"Role","_key":"9154","_from":"7404","_to":"7397"} +{"$label":"ACTS_IN","name":"The teacher","type":"Role","_key":"9153","_from":"7403","_to":"7397"} +{"$label":"ACTS_IN","name":"Sgt. Arthur","type":"Role","_key":"9152","_from":"7402","_to":"7397"} +{"$label":"ACTS_IN","name":"Le serrurier","type":"Role","_key":"9151","_from":"7401","_to":"7397"} +{"$label":"ACTS_IN","name":"Capt. de Boeldieu","type":"Role","_key":"9149","_from":"7400","_to":"7397"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"9148","_from":"7399","_to":"7397"} +{"$label":"ACTS_IN","name":"Lt. Mar\u00e9chal","type":"Role","_key":"9147","_from":"7398","_to":"7397"} +{"$label":"ACTS_IN","name":"Grandgil","type":"Role","_key":"119103","_from":"7398","_to":"70009"} +{"$label":"ACTS_IN","name":"Comte Enguerand - Louis Marie de Montignac aka Legrain","type":"Role","_key":"72720","_from":"7398","_to":"43820"} +{"$label":"ACTS_IN","name":"Commissaire Le Guen","type":"Role","_key":"34040","_from":"7398","_to":"23410"} +{"$label":"ACTS_IN","name":"Tulipe","type":"Role","_key":"33726","_from":"7398","_to":"23267"} +{"$label":"ACTS_IN","name":"Leguen","type":"Role","_key":"33346","_from":"7398","_to":"23096"} +{"$label":"ACTS_IN","name":"Germain Cazeneuve","type":"Role","_key":"33329","_from":"7398","_to":"23092"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31531","_from":"7398","_to":"22027"} +{"$label":"ACTS_IN","name":"Vittorio Manalese","type":"Role","_key":"30311","_from":"7398","_to":"21319"} +{"$label":"ACTS_IN","name":"Louis Bernard","type":"Role","_key":"48417","_from":"7400","_to":"31779"} +{"$label":"ACTS_IN","name":"Professeur Louis Delage","type":"Role","_key":"34067","_from":"7400","_to":"23415"} +{"$label":"ACTS_IN","name":"Bernard Humbert","type":"Role","_key":"48057","_from":"7403","_to":"31597"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"42452","_from":"7403","_to":"28427"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"34346","_from":"7403","_to":"23558"} +{"$label":"ACTS_IN","name":"le chef du r\u00e9seau clandestin","type":"Role","_key":"33945","_from":"7403","_to":"23371"} +{"$label":"ACTS_IN","name":"Illya Coste","type":"Role","_key":"23056","_from":"7403","_to":"16714"} +{"$label":"ACTS_IN","name":"Professor Philippe Pinel","type":"Role","_key":"14421","_from":"7403","_to":"11145"} +{"$label":"ACTS_IN","name":"Urologe","type":"Role","_key":"13164","_from":"7403","_to":"10258"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"9167","_from":"7411","_to":"7405"} +{"$label":"ACTS_IN","name":"Commandant","type":"Role","_key":"9165","_from":"7410","_to":"7405"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"9164","_from":"7409","_to":"7405"} +{"$label":"ACTS_IN","name":"Engl\u00e4nderin","type":"Role","_key":"9163","_from":"7408","_to":"7405"} +{"$label":"ACTS_IN","name":"Tante","type":"Role","_key":"9162","_from":"7407","_to":"7405"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"9161","_from":"7406","_to":"7405"} +{"$label":"ACTS_IN","name":"Gis\u00e8le","type":"Role","_key":"9174","_from":"7419","_to":"7412"} +{"$label":"ACTS_IN","name":"L\u00e9one","type":"Role","_key":"9173","_from":"7418","_to":"7412"} +{"$label":"ACTS_IN","name":"Schlossherr","type":"Role","_key":"9172","_from":"7417","_to":"7412"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"9171","_from":"7416","_to":"7412"} +{"$label":"ACTS_IN","name":"Marguerite Chopin","type":"Role","_key":"9170","_from":"7415","_to":"7412"} +{"$label":"ACTS_IN","name":"Allan Grey","type":"Role","_key":"9169","_from":"7414","_to":"7412"} +{"$label":"DIRECTED","_key":"9168","_from":"7413","_to":"7412"} +{"$label":"DIRECTED","_key":"9186","_from":"7413","_to":"7420"} +{"$label":"ACTS_IN","name":"Nicolas Loyseleur","type":"Role","_key":"9185","_from":"7417","_to":"7420"} +{"$label":"ACTS_IN","name":"Sigrid Olinsky","type":"Role","_key":"67342","_from":"7418","_to":"41508"} +{"$label":"ACTS_IN","name":"Claire Lennartz","type":"Role","_key":"9863","_from":"7418","_to":"7904"} +{"$label":"ACTS_IN","name":"Juge","type":"Role","_key":"9184","_from":"7430","_to":"7420"} +{"$label":"ACTS_IN","name":"Juge","type":"Role","_key":"9183","_from":"7429","_to":"7420"} +{"$label":"ACTS_IN","name":"Juge","type":"Role","_key":"9182","_from":"7428","_to":"7420"} +{"$label":"ACTS_IN","name":"Juge","type":"Role","_key":"9181","_from":"7427","_to":"7420"} +{"$label":"ACTS_IN","name":"Jean Beaup\u00e8re","type":"Role","_key":"9180","_from":"7426","_to":"7420"} +{"$label":"ACTS_IN","name":"Guillaume Evrard","type":"Role","_key":"9179","_from":"7425","_to":"7420"} +{"$label":"ACTS_IN","name":"Jean Massieu","type":"Role","_key":"9178","_from":"7424","_to":"7420"} +{"$label":"ACTS_IN","name":"Jean d'Estivet","type":"Role","_key":"9177","_from":"7423","_to":"7420"} +{"$label":"ACTS_IN","name":"\u00c9v\u00eaque Pierre Cauchon","type":"Role","_key":"9176","_from":"7422","_to":"7420"} +{"$label":"ACTS_IN","name":"Jeanne d'Arc","type":"Role","_key":"9175","_from":"7421","_to":"7420"} +{"$label":"ACTS_IN","name":"M. de Murcie","type":"Role","_key":"25106","_from":"7425","_to":"18133"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"9196","_from":"7438","_to":"7431"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"9195","_from":"7437","_to":"7431"} +{"$label":"ACTS_IN","name":"Marita","type":"Role","_key":"9194","_from":"7436","_to":"7431"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"9193","_from":"7435","_to":"7431"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"9192","_from":"7434","_to":"7431"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"9190","_from":"7433","_to":"7431"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"9189","_from":"7432","_to":"7431"} +{"$label":"ACTS_IN","name":"Martina","type":"Role","_key":"42262","_from":"7432","_to":"28297"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"19073","_from":"7432","_to":"14091"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"43460","_from":"7433","_to":"29031"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"91053","_from":"7434","_to":"53726"} +{"$label":"ACTS_IN","name":"Marias Father","type":"Role","_key":"66816","_from":"7434","_to":"41274"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51323","_from":"7434","_to":"33469"} +{"$label":"ACTS_IN","name":"Toni Ramsauer","type":"Role","_key":"43743","_from":"7434","_to":"29215"} +{"$label":"ACTS_IN","name":"Dr. Spitz","type":"Role","_key":"43491","_from":"7434","_to":"29044"} +{"$label":"ACTS_IN","name":"Karl F\u00fcrnkranz","type":"Role","_key":"42726","_from":"7434","_to":"28599"} +{"$label":"ACTS_IN","name":"Freddy Rupp","type":"Role","_key":"33212","_from":"7434","_to":"23001"} +{"$label":"ACTS_IN","name":"Elfie","type":"Role","_key":"63466","_from":"7435","_to":"39747"} +{"$label":"ACTS_IN","name":"Gudrun Ensslin","type":"Role","_key":"52537","_from":"7435","_to":"34158"} +{"$label":"ACTS_IN","name":"Franziska Steiner","type":"Role","_key":"36351","_from":"7435","_to":"24651"} +{"$label":"DIRECTED","_key":"48469","_from":"7437","_to":"31822"} +{"$label":"DIRECTED","_key":"17018","_from":"7437","_to":"12770"} +{"$label":"DIRECTED","_key":"14759","_from":"7437","_to":"11358"} +{"$label":"ACTS_IN","name":"Jutta Niebauer","type":"Role","_key":"42663","_from":"7438","_to":"28559"} +{"$label":"ACTS_IN","name":"Eckis Mutter","type":"Role","_key":"40006","_from":"7438","_to":"27014"} +{"$label":"ACTS_IN","name":"Frau Kramer","type":"Role","_key":"15023","_from":"7438","_to":"11548"} +{"$label":"ACTS_IN","name":"Adult Anton Freeman","type":"Role","_key":"9206","_from":"7443","_to":"7439"} +{"$label":"ACTS_IN","name":"Marie Freeman","type":"Role","_key":"9204","_from":"7442","_to":"7439"} +{"$label":"ACTS_IN","name":"Director Josef","type":"Role","_key":"9200","_from":"7441","_to":"7439"} +{"$label":"DIRECTED","_key":"9197","_from":"7440","_to":"7439"} +{"$label":"DIRECTED","_key":"52967","_from":"7440","_to":"34311"} +{"$label":"DIRECTED","_key":"15798","_from":"7440","_to":"12028"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"116983","_from":"7442","_to":"68856"} +{"$label":"ACTS_IN","name":"Zach's Mother","type":"Role","_key":"11360","_from":"7442","_to":"8948"} +{"$label":"ACTS_IN","name":"Billy Bathgate","type":"Role","_key":"90796","_from":"7443","_to":"53581"} +{"$label":"ACTS_IN","name":"Ethan Glance","type":"Role","_key":"37814","_from":"7443","_to":"25635"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"17652","_from":"7443","_to":"13169"} +{"$label":"ACTS_IN","name":"Older Fernando","type":"Role","_key":"13505","_from":"7443","_to":"10513"} +{"$label":"ACTS_IN","name":"Zia","type":"Role","_key":"9227","_from":"7457","_to":"7444"} +{"$label":"ACTS_IN","name":"General Jan Christiaan Smuts","type":"Role","_key":"9226","_from":"7456","_to":"7444"} +{"$label":"ACTS_IN","name":"Lord Chelmsford","type":"Role","_key":"9225","_from":"7455","_to":"7444"} +{"$label":"ACTS_IN","name":"Judge Broomfield","type":"Role","_key":"9224","_from":"7454","_to":"7444"} +{"$label":"ACTS_IN","name":"Lord Irwin","type":"Role","_key":"9223","_from":"7453","_to":"7444"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"9222","_from":"7452","_to":"7444"} +{"$label":"ACTS_IN","name":"Mirabehn","type":"Role","_key":"9221","_from":"7451","_to":"7444"} +{"$label":"ACTS_IN","name":"Reverend Charlie Andrews","type":"Role","_key":"9219","_from":"7450","_to":"7444"} +{"$label":"ACTS_IN","name":"Mohammad Ali Jinnah","type":"Role","_key":"9216","_from":"7449","_to":"7444"} +{"$label":"ACTS_IN","name":"Sardar Vallabhbhai Patel","type":"Role","_key":"9215","_from":"7448","_to":"7444"} +{"$label":"ACTS_IN","name":"Nahari","type":"Role","_key":"9214","_from":"7447","_to":"7444"} +{"$label":"ACTS_IN","name":"Margaret Bourke-White","type":"Role","_key":"9212","_from":"7446","_to":"7444"} +{"$label":"ACTS_IN","name":"Kasturba Gandhi","type":"Role","_key":"9211","_from":"7445","_to":"7444"} +{"$label":"ACTS_IN","name":"Parvati Sharma (Munna's mother)","type":"Role","_key":"120666","_from":"7445","_to":"70865"} +{"$label":"ACTS_IN","name":"Eden Pedecaris","type":"Role","_key":"101875","_from":"7446","_to":"59964"} +{"$label":"ACTS_IN","name":"Kathy Maribel Lee, 'Cresta'","type":"Role","_key":"99872","_from":"7446","_to":"58899"} +{"$label":"ACTS_IN","name":"Catherine Frazier","type":"Role","_key":"97902","_from":"7446","_to":"57663"} +{"$label":"ACTS_IN","name":"Mayor Kate Hennings","type":"Role","_key":"70452","_from":"7446","_to":"42891"} +{"$label":"ACTS_IN","name":"Sally Weston","type":"Role","_key":"70401","_from":"7446","_to":"42873"} +{"$label":"ACTS_IN","name":"Marion St. Claire","type":"Role","_key":"63821","_from":"7446","_to":"39898"} +{"$label":"ACTS_IN","name":"Shirley Eckert","type":"Role","_key":"40457","_from":"7446","_to":"27260"} +{"$label":"ACTS_IN","name":"Judy Tobias","type":"Role","_key":"36104","_from":"7446","_to":"24499"} +{"$label":"ACTS_IN","name":"Enid Frick","type":"Role","_key":"32738","_from":"7446","_to":"22725"} +{"$label":"ACTS_IN","name":"Kathy Morningside","type":"Role","_key":"13515","_from":"7446","_to":"10515"} +{"$label":"ACTS_IN","name":"Prabhat Singh Chauhan","type":"Role","_key":"120719","_from":"7447","_to":"70898"} +{"$label":"ACTS_IN","name":"Dadaji","type":"Role","_key":"120086","_from":"7447","_to":"70520"} +{"$label":"ACTS_IN","name":"Vishal Malik","type":"Role","_key":"112479","_from":"7447","_to":"66413"} +{"$label":"ACTS_IN","name":"Sahukaar Daamchand","type":"Role","_key":"108808","_from":"7447","_to":"64308"} +{"$label":"ACTS_IN","name":"Sanjeev Gill","type":"Role","_key":"104525","_from":"7447","_to":"61483"} +{"$label":"ACTS_IN","name":"Junaid","type":"Role","_key":"98421","_from":"7447","_to":"57978"} +{"$label":"ACTS_IN","name":"Abdullah","type":"Role","_key":"64267","_from":"7447","_to":"40077"} +{"$label":"ACTS_IN","name":"George Khan","type":"Role","_key":"64051","_from":"7447","_to":"39979"} +{"$label":"ACTS_IN","name":"President Zia","type":"Role","_key":"44002","_from":"7447","_to":"29354"} +{"$label":"ACTS_IN","name":"Bahkland","type":"Role","_key":"22054","_from":"7447","_to":"16085"} +{"$label":"ACTS_IN","name":"Nasser","type":"Role","_key":"68745","_from":"7448","_to":"42123"} +{"$label":"ACTS_IN","name":"Mukarjee","type":"Role","_key":"45647","_from":"7448","_to":"30214"} +{"$label":"ACTS_IN","name":"Billy Fish","type":"Role","_key":"11621","_from":"7448","_to":"9125"} +{"$label":"ACTS_IN","name":"Eric Liddell","type":"Role","_key":"53899","_from":"7450","_to":"34695"} +{"$label":"ACTS_IN","name":"Jane Austen (voice)","type":"Role","_key":"114891","_from":"7451","_to":"67666"} +{"$label":"ACTS_IN","name":"Mrs. Hudson","type":"Role","_key":"63869","_from":"7451","_to":"39907"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"50527","_from":"7451","_to":"33000"} +{"$label":"ACTS_IN","name":"Jack Slavin","type":"Role","_key":"111163","_from":"7452","_to":"65654"} +{"$label":"ACTS_IN","name":"Danny Flynn","type":"Role","_key":"110753","_from":"7452","_to":"65429"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"68747","_from":"7452","_to":"42123"} +{"$label":"ACTS_IN","name":"Tomas","type":"Role","_key":"64800","_from":"7452","_to":"40321"} +{"$label":"ACTS_IN","name":"Newland Archer","type":"Role","_key":"63346","_from":"7452","_to":"39699"} +{"$label":"ACTS_IN","name":"Guido Contini","type":"Role","_key":"61631","_from":"7452","_to":"38839"} +{"$label":"ACTS_IN","name":"Christy Brown","type":"Role","_key":"61336","_from":"7452","_to":"38711"} +{"$label":"ACTS_IN","name":"Hawkeye\/Nathaniel Poe","type":"Role","_key":"53351","_from":"7452","_to":"34484"} +{"$label":"ACTS_IN","name":"Gerry Conlon","type":"Role","_key":"47652","_from":"7452","_to":"31397"} +{"$label":"ACTS_IN","name":"Daniel Plainview","type":"Role","_key":"46561","_from":"7452","_to":"30757"} +{"$label":"ACTS_IN","name":"Bill 'The Butcher' Cutting","type":"Role","_key":"26220","_from":"7452","_to":"18837"} +{"$label":"ACTS_IN","name":"John Fryer","type":"Role","_key":"22623","_from":"7452","_to":"16415"} +{"$label":"ACTS_IN","name":"Doctor Doyle","type":"Role","_key":"117513","_from":"7453","_to":"69093"} +{"$label":"ACTS_IN","name":"Cassius","type":"Role","_key":"114651","_from":"7453","_to":"67543"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"113451","_from":"7453","_to":"66840"} +{"$label":"ACTS_IN","name":"Sir Francis Hinsley","type":"Role","_key":"108562","_from":"7453","_to":"64161"} +{"$label":"ACTS_IN","name":"King Louis VII of France","type":"Role","_key":"104339","_from":"7453","_to":"61385"} +{"$label":"ACTS_IN","name":"St. john","type":"Role","_key":"97023","_from":"7453","_to":"57064"} +{"$label":"ACTS_IN","name":"Hobson","type":"Role","_key":"95747","_from":"7453","_to":"56323"} +{"$label":"ACTS_IN","name":"King Arthur (voice) (uncredited)","type":"Role","_key":"51009","_from":"7453","_to":"33290"} +{"$label":"ACTS_IN","name":"Prospero","type":"Role","_key":"35638","_from":"7453","_to":"24225"} +{"$label":"ACTS_IN","name":"The Pope","type":"Role","_key":"32267","_from":"7453","_to":"22475"} +{"$label":"ACTS_IN","name":"Gillenormand","type":"Role","_key":"32010","_from":"7453","_to":"22303"} +{"$label":"ACTS_IN","name":"Colonel Carbury","type":"Role","_key":"30738","_from":"7453","_to":"21548"} +{"$label":"ACTS_IN","name":"Mr. Beddoes","type":"Role","_key":"29907","_from":"7453","_to":"21143"} +{"$label":"ACTS_IN","name":"Blind Hermit","type":"Role","_key":"25408","_from":"7453","_to":"18319"} +{"$label":"ACTS_IN","name":"Edgar Brodie\/Richard Ashenden","type":"Role","_key":"23339","_from":"7453","_to":"16912"} +{"$label":"ACTS_IN","name":"Stimme Gottes","type":"Role","_key":"23174","_from":"7453","_to":"16763"} +{"$label":"ACTS_IN","name":"Carr Gomm","type":"Role","_key":"16953","_from":"7453","_to":"12729"} +{"$label":"ACTS_IN","name":"Henry IV","type":"Role","_key":"11657","_from":"7453","_to":"9155"} +{"$label":"ACTS_IN","name":"Jack Cartwright","type":"Role","_key":"120796","_from":"7454","_to":"70946"} +{"$label":"ACTS_IN","name":"Air Vice Marshal Keith Park","type":"Role","_key":"70015","_from":"7454","_to":"42700"} +{"$label":"ACTS_IN","name":"Capt. William Bligh","type":"Role","_key":"67777","_from":"7454","_to":"41668"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Faria","type":"Role","_key":"32529","_from":"7454","_to":"22623"} +{"$label":"ACTS_IN","name":"Freddie Young","type":"Role","_key":"31253","_from":"7454","_to":"21866"} +{"$label":"ACTS_IN","name":"Richard Wagner","type":"Role","_key":"27332","_from":"7454","_to":"19647"} +{"$label":"ACTS_IN","name":"Denis Fallentin","type":"Role","_key":"24155","_from":"7454","_to":"17503"} +{"$label":"ACTS_IN","name":"1st Elder","type":"Role","_key":"16661","_from":"7454","_to":"12577"} +{"$label":"ACTS_IN","name":"Major Calloway","type":"Role","_key":"11958","_from":"7454","_to":"9373"} +{"$label":"ACTS_IN","name":"Dr. Alec Harvey","type":"Role","_key":"10079","_from":"7454","_to":"8067"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116217","_from":"7455","_to":"68429"} +{"$label":"ACTS_IN","name":"Cpl Tubby Bins","type":"Role","_key":"113742","_from":"7455","_to":"67027"} +{"$label":"ACTS_IN","name":"Pat Reid","type":"Role","_key":"110483","_from":"7455","_to":"65275"} +{"$label":"ACTS_IN","name":"Willie Mossop","type":"Role","_key":"109121","_from":"7455","_to":"64471"} +{"$label":"ACTS_IN","name":"Captain Anson","type":"Role","_key":"108489","_from":"7455","_to":"64127"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"99621","_from":"7455","_to":"58734"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"66316","_from":"7455","_to":"41025"} +{"$label":"ACTS_IN","name":"Lewis Serrocold","type":"Role","_key":"41374","_from":"7455","_to":"27819"} +{"$label":"ACTS_IN","name":"De Lacey","type":"Role","_key":"25212","_from":"7455","_to":"18189"} +{"$label":"ACTS_IN","name":"Inspektor Carson","type":"Role","_key":"15711","_from":"7455","_to":"11975"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"12495","_from":"7455","_to":"9790"} +{"$label":"ACTS_IN","name":"Kabir Ahuja","type":"Role","_key":"120760","_from":"7457","_to":"70935"} +{"$label":"ACTS_IN","name":"Madan Chopra","type":"Role","_key":"120747","_from":"7457","_to":"70928"} +{"$label":"ACTS_IN","name":"Shakti Malik","type":"Role","_key":"110713","_from":"7457","_to":"65406"} +{"$label":"DIRECTED","_key":"9234","_from":"7464","_to":"7458"} +{"$label":"ACTS_IN","name":"Louka's Mother","type":"Role","_key":"9233","_from":"7463","_to":"7458"} +{"$label":"ACTS_IN","name":"Mr. Bro\u017e","type":"Role","_key":"9232","_from":"7462","_to":"7458"} +{"$label":"ACTS_IN","name":"Kl\u00e1ra","type":"Role","_key":"9231","_from":"7461","_to":"7458"} +{"$label":"ACTS_IN","name":"Franti\u0161ek Louka","type":"Role","_key":"9230","_from":"7460","_to":"7458"} +{"$label":"ACTS_IN","name":"Kolya","type":"Role","_key":"9229","_from":"7459","_to":"7458"} +{"$label":"ACTS_IN","name":"Fi\u0161\u00e1rek","type":"Role","_key":"110668","_from":"7460","_to":"65376"} +{"$label":"ACTS_IN","name":"Josef Tkaloun","type":"Role","_key":"41580","_from":"7460","_to":"27927"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"50578","_from":"7461","_to":"33035"} +{"$label":"ACTS_IN","name":"Popelka","type":"Role","_key":"50557","_from":"7461","_to":"33017"} +{"$label":"ACTS_IN","name":"voj. Kefal\u00edn","type":"Role","_key":"104234","_from":"7462","_to":"61320"} +{"$label":"ACTS_IN","name":"\u0158ez\u00e1\u010d mlad\u0161\u00ed","type":"Role","_key":"41587","_from":"7462","_to":"27927"} +{"$label":"ACTS_IN","name":"Em\u00edlie H\u00e1nov\u00e1","type":"Role","_key":"106329","_from":"7463","_to":"62641"} +{"$label":"ACTS_IN","name":"Dr Mr\u00e1ckov\u00e1","type":"Role","_key":"50580","_from":"7463","_to":"33035"} +{"$label":"ACTS_IN","name":"nunny","type":"Role","_key":"37887","_from":"7463","_to":"25657"} +{"$label":"DIRECTED","_key":"115046","_from":"7464","_to":"67743"} +{"$label":"DIRECTED","_key":"110665","_from":"7464","_to":"65376"} +{"$label":"DIRECTED","_key":"106013","_from":"7464","_to":"62417"} +{"$label":"DIRECTED","_key":"41579","_from":"7464","_to":"27927"} +{"$label":"ACTS_IN","name":"Aaron Amedori","type":"Role","_key":"9263","_from":"7488","_to":"7466"} +{"$label":"ACTS_IN","name":"Alice Wisdom","type":"Role","_key":"9262","_from":"7487","_to":"7466"} +{"$label":"ACTS_IN","name":"Alison The Fact Checker","type":"Role","_key":"9261","_from":"7486","_to":"7466"} +{"$label":"ACTS_IN","name":"David Felton","type":"Role","_key":"9260","_from":"7485","_to":"7466"} +{"$label":"ACTS_IN","name":"Ben Fong-Torres","type":"Role","_key":"9259","_from":"7484","_to":"7466"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"9257","_from":"7483","_to":"7466"} +{"$label":"ACTS_IN","name":"Roadie Mick","type":"Role","_key":"9256","_from":"7482","_to":"7466"} +{"$label":"ACTS_IN","name":"Roadie Gregg","type":"Role","_key":"9255","_from":"7481","_to":"7466"} +{"$label":"ACTS_IN","name":"Roadie Scully","type":"Role","_key":"9254","_from":"7480","_to":"7466"} +{"$label":"ACTS_IN","name":"Mrs. Deegan","type":"Role","_key":"9253","_from":"7479","_to":"7466"} +{"$label":"ACTS_IN","name":"Estrella Starr","type":"Role","_key":"9252","_from":"7478","_to":"7466"} +{"$label":"ACTS_IN","name":"Beth From Denver","type":"Role","_key":"9251","_from":"7477","_to":"7466"} +{"$label":"ACTS_IN","name":"Dennis Hope","type":"Role","_key":"9250","_from":"7476","_to":"7466"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"9249","_from":"7475","_to":"7466"} +{"$label":"ACTS_IN","name":"Larry Fellows","type":"Role","_key":"9247","_from":"7474","_to":"7466"} +{"$label":"ACTS_IN","name":"Ed Vallencourt","type":"Role","_key":"9246","_from":"7473","_to":"7466"} +{"$label":"ACTS_IN","name":"Young William","type":"Role","_key":"9242","_from":"7472","_to":"7466"} +{"$label":"ACTS_IN","name":"Anita Miller","type":"Role","_key":"9241","_from":"7471","_to":"7466"} +{"$label":"ACTS_IN","name":"William Miller","type":"Role","_key":"9240","_from":"7470","_to":"7466"} +{"$label":"ACTS_IN","name":"Jeff Bebe","type":"Role","_key":"9239","_from":"7469","_to":"7466"} +{"$label":"ACTS_IN","name":"Penny Lane","type":"Role","_key":"9236","_from":"7468","_to":"7466"} +{"$label":"DIRECTED","_key":"9235","_from":"7467","_to":"7466"} +{"$label":"DIRECTED","_key":"67686","_from":"7467","_to":"41633"} +{"$label":"DIRECTED","_key":"55102","_from":"7467","_to":"35187"} +{"$label":"DIRECTED","_key":"53557","_from":"7467","_to":"34567"} +{"$label":"DIRECTED","_key":"17656","_from":"7467","_to":"13169"} +{"$label":"DIRECTED","_key":"16430","_from":"7467","_to":"12427"} +{"$label":"ACTS_IN","name":"Lucy Owens","type":"Role","_key":"115143","_from":"7468","_to":"67805"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114733","_from":"7468","_to":"67580"} +{"$label":"ACTS_IN","name":"Emma Dinsmore","type":"Role","_key":"114058","_from":"7468","_to":"67169"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"103710","_from":"7468","_to":"61002"} +{"$label":"ACTS_IN","name":"Alexis","type":"Role","_key":"95363","_from":"7468","_to":"56099"} +{"$label":"ACTS_IN","name":"Olivia \"Liv\" Lerner","type":"Role","_key":"63817","_from":"7468","_to":"39898"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"61636","_from":"7468","_to":"38839"} +{"$label":"ACTS_IN","name":"Andie Anderson","type":"Role","_key":"58066","_from":"7468","_to":"36740"} +{"$label":"ACTS_IN","name":"Caroline Ellis","type":"Role","_key":"57947","_from":"7468","_to":"36665"} +{"$label":"ACTS_IN","name":"Isabel Walker","type":"Role","_key":"54273","_from":"7468","_to":"34846"} +{"$label":"ACTS_IN","name":"Ethne","type":"Role","_key":"52518","_from":"7468","_to":"34152"} +{"$label":"ACTS_IN","name":"Tess Finnegan","type":"Role","_key":"50421","_from":"7468","_to":"32943"} +{"$label":"ACTS_IN","name":"Helen Harris","type":"Role","_key":"32939","_from":"7468","_to":"22845"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"15747","_from":"7468","_to":"11996"} +{"$label":"DIRECTED","_key":"33085","_from":"7468","_to":"22927"} +{"$label":"ACTS_IN","name":"Jay Murphy","type":"Role","_key":"104782","_from":"7469","_to":"61646"} +{"$label":"ACTS_IN","name":"Buddy Pine \/ Syndrome","type":"Role","_key":"97554","_from":"7469","_to":"57447"} +{"$label":"ACTS_IN","name":"John Plummer","type":"Role","_key":"91426","_from":"7469","_to":"53926"} +{"$label":"ACTS_IN","name":"Jack Withrowe","type":"Role","_key":"66061","_from":"7469","_to":"40881"} +{"$label":"ACTS_IN","name":"Buddy Pine \/ Syndrome (voice)","type":"Role","_key":"56989","_from":"7469","_to":"36156"} +{"$label":"ACTS_IN","name":"Paul Morse","type":"Role","_key":"54821","_from":"7469","_to":"35077"} +{"$label":"ACTS_IN","name":"Underdogs voice","type":"Role","_key":"44200","_from":"7469","_to":"29455"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"43595","_from":"7469","_to":"29119"} +{"$label":"ACTS_IN","name":"Joe 'Beaver' Clarenden","type":"Role","_key":"42185","_from":"7469","_to":"28261"} +{"$label":"ACTS_IN","name":"Brodie Bruce\/Banky Edwards","type":"Role","_key":"20138","_from":"7469","_to":"14786"} +{"$label":"ACTS_IN","name":"Brodie Bruce","type":"Role","_key":"20116","_from":"7469","_to":"14782"} +{"$label":"ACTS_IN","name":"Banky Edwards","type":"Role","_key":"19740","_from":"7469","_to":"14591"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"16435","_from":"7469","_to":"12427"} +{"$label":"ACTS_IN","name":"Azrael","type":"Role","_key":"15812","_from":"7469","_to":"12037"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"120506","_from":"7470","_to":"70785"} +{"$label":"ACTS_IN","name":"Corey","type":"Role","_key":"116330","_from":"7470","_to":"68477"} +{"$label":"ACTS_IN","name":"Zia","type":"Role","_key":"93421","_from":"7470","_to":"55013"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"93373","_from":"7470","_to":"54999"} +{"$label":"ACTS_IN","name":"Frisbee","type":"Role","_key":"87929","_from":"7470","_to":"52214"} +{"$label":"ACTS_IN","name":"Summer Finn","type":"Role","_key":"121479","_from":"7471","_to":"71361"} +{"$label":"ACTS_IN","name":"Kate Collins","type":"Role","_key":"108877","_from":"7471","_to":"64347"} +{"$label":"ACTS_IN","name":"Samantha Harper","type":"Role","_key":"106581","_from":"7471","_to":"62806"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"103169","_from":"7471","_to":"60682"} +{"$label":"ACTS_IN","name":"Happy","type":"Role","_key":"102556","_from":"7471","_to":"60337"} +{"$label":"ACTS_IN","name":"Reese Holden","type":"Role","_key":"99311","_from":"7471","_to":"58516"} +{"$label":"ACTS_IN","name":"Noel","type":"Role","_key":"92834","_from":"7471","_to":"54766"} +{"$label":"ACTS_IN","name":"Miss Pussy Katz","type":"Role","_key":"92078","_from":"7471","_to":"54332"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"67094","_from":"7471","_to":"41408"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65235","_from":"7471","_to":"40502"} +{"$label":"ACTS_IN","name":"Renee Allison","type":"Role","_key":"61668","_from":"7471","_to":"38852"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"58600","_from":"7471","_to":"37025"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"57476","_from":"7471","_to":"36426"} +{"$label":"ACTS_IN","name":"Lani Aliikai","type":"Role","_key":"53688","_from":"7471","_to":"34627"} +{"$label":"ACTS_IN","name":"Alma Moore","type":"Role","_key":"50291","_from":"7471","_to":"32858"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"47088","_from":"7471","_to":"31049"} +{"$label":"ACTS_IN","name":"Trillian","type":"Role","_key":"46728","_from":"7471","_to":"30837"} +{"$label":"ACTS_IN","name":"Kit","type":"Role","_key":"44999","_from":"7471","_to":"29901"} +{"$label":"ACTS_IN","name":"Dorothy Evans","type":"Role","_key":"32200","_from":"7471","_to":"22448"} +{"$label":"ACTS_IN","name":"Jenny Herk","type":"Role","_key":"18989","_from":"7471","_to":"14034"} +{"$label":"ACTS_IN","name":"Ms. Edmunds","type":"Role","_key":"12357","_from":"7471","_to":"9681"} +{"$label":"ACTS_IN","name":"Cameron Kincaid","type":"Role","_key":"103365","_from":"7472","_to":"60808"} +{"$label":"ACTS_IN","name":"Dylan Jameison","type":"Role","_key":"103086","_from":"7472","_to":"60638"} +{"$label":"ACTS_IN","name":"Arthur Parkinson","type":"Role","_key":"98314","_from":"7472","_to":"57907"} +{"$label":"ACTS_IN","name":"Will Stronghold","type":"Role","_key":"69984","_from":"7472","_to":"42690"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"66682","_from":"7472","_to":"41201"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"56789","_from":"7472","_to":"36065"} +{"$label":"ACTS_IN","name":"Rocky Mazzelli","type":"Role","_key":"20370","_from":"7472","_to":"14918"} +{"$label":"ACTS_IN","name":"Jason Tripitikas","type":"Role","_key":"15295","_from":"7472","_to":"11705"} +{"$label":"ACTS_IN","name":"Chuck Wein","type":"Role","_key":"89148","_from":"7476","_to":"52804"} +{"$label":"ACTS_IN","name":"Ben Wrightman","type":"Role","_key":"69819","_from":"7476","_to":"42609"} +{"$label":"ACTS_IN","name":"Andrew 'Andy' Washburn","type":"Role","_key":"67531","_from":"7476","_to":"41580"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"65357","_from":"7476","_to":"40549"} +{"$label":"ACTS_IN","name":"Chris Rockett","type":"Role","_key":"33165","_from":"7476","_to":"22969"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"120010","_from":"7478","_to":"70480"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"101468","_from":"7478","_to":"59726"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"97913","_from":"7478","_to":"57666"} +{"$label":"ACTS_IN","name":"Ali Willis","type":"Role","_key":"54405","_from":"7478","_to":"34894"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"45882","_from":"7478","_to":"30341"} +{"$label":"ACTS_IN","name":"Whitney","type":"Role","_key":"14956","_from":"7478","_to":"11494"} +{"$label":"ACTS_IN","name":"White Zac","type":"Role","_key":"60430","_from":"7480","_to":"38126"} +{"$label":"ACTS_IN","name":"Norris Wheldon","type":"Role","_key":"51639","_from":"7481","_to":"33692"} +{"$label":"ACTS_IN","name":"Flasher","type":"Role","_key":"33106","_from":"7482","_to":"22931"} +{"$label":"DIRECTED","_key":"118526","_from":"7483","_to":"69687"} +{"$label":"DIRECTED","_key":"92635","_from":"7483","_to":"54680"} +{"$label":"DIRECTED","_key":"22338","_from":"7483","_to":"16222"} +{"$label":"DIRECTED","_key":"11887","_from":"7483","_to":"9323"} +{"$label":"ACTS_IN","name":"Barkeeper, Stimme von Indrid Cold","type":"Role","_key":"22328","_from":"7483","_to":"16222"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"111316","_from":"7484","_to":"65743"} +{"$label":"ACTS_IN","name":"Special Agent Tom Lone","type":"Role","_key":"63290","_from":"7484","_to":"39669"} +{"$label":"ACTS_IN","name":"Chris Lei","type":"Role","_key":"36964","_from":"7484","_to":"25052"} +{"$label":"ACTS_IN","name":"Off. Tom","type":"Role","_key":"18855","_from":"7484","_to":"13919"} +{"$label":"ACTS_IN","name":"Kuang","type":"Role","_key":"18166","_from":"7484","_to":"13474"} +{"$label":"ACTS_IN","name":"Gallaxhar (voice)","type":"Role","_key":"104777","_from":"7485","_to":"61645"} +{"$label":"ACTS_IN","name":"Robert 'Fish' Fishman","type":"Role","_key":"61525","_from":"7485","_to":"38798"} +{"$label":"ACTS_IN","name":"College Professor","type":"Role","_key":"49410","_from":"7485","_to":"32350"} +{"$label":"ACTS_IN","name":"Rudi Gunn","type":"Role","_key":"46630","_from":"7485","_to":"30794"} +{"$label":"ACTS_IN","name":"Rollo","type":"Role","_key":"46442","_from":"7485","_to":"30676"} +{"$label":"ACTS_IN","name":"Vaughn Haige","type":"Role","_key":"31951","_from":"7485","_to":"22284"} +{"$label":"ACTS_IN","name":"Bill Hudley","type":"Role","_key":"22562","_from":"7485","_to":"16381"} +{"$label":"ACTS_IN","name":"Larry White","type":"Role","_key":"19905","_from":"7485","_to":"14659"} +{"$label":"ACTS_IN","name":"Female Lover Bear","type":"Role","_key":"59387","_from":"7487","_to":"37511"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"9273","_from":"7495","_to":"7489"} +{"$label":"ACTS_IN","name":"Suzy Coleman","type":"Role","_key":"9272","_from":"7494","_to":"7489"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"9269","_from":"7493","_to":"7489"} +{"$label":"ACTS_IN","name":"Benjamin Danz","type":"Role","_key":"9268","_from":"7492","_to":"7489"} +{"$label":"ACTS_IN","name":"Jane Smith","type":"Role","_key":"9265","_from":"7491","_to":"7489"} +{"$label":"DIRECTED","_key":"9264","_from":"7490","_to":"7489"} +{"$label":"DIRECTED","_key":"61775","_from":"7490","_to":"38893"} +{"$label":"DIRECTED","_key":"53805","_from":"7490","_to":"34669"} +{"$label":"DIRECTED","_key":"48590","_from":"7490","_to":"31879"} +{"$label":"DIRECTED","_key":"21711","_from":"7490","_to":"15869"} +{"$label":"ACTS_IN","name":"Legs Sadovsky","type":"Role","_key":"116631","_from":"7491","_to":"68653"} +{"$label":"ACTS_IN","name":"Lanie Kerrigan","type":"Role","_key":"109713","_from":"7491","_to":"64795"} +{"$label":"ACTS_IN","name":"Casella 'Cash' Reese","type":"Role","_key":"109233","_from":"7491","_to":"64535"} +{"$label":"ACTS_IN","name":"Gia Carangi","type":"Role","_key":"100665","_from":"7491","_to":"59356"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"90707","_from":"7491","_to":"53545"} +{"$label":"ACTS_IN","name":"Mary Bell","type":"Role","_key":"90521","_from":"7491","_to":"53474"} +{"$label":"ACTS_IN","name":"Illeana Scott","type":"Role","_key":"67745","_from":"7491","_to":"41652"} +{"$label":"ACTS_IN","name":"Kate Libby \/ 'Acid Burn'","type":"Role","_key":"63238","_from":"7491","_to":"39652"} +{"$label":"ACTS_IN","name":"Sarah Jordan","type":"Role","_key":"57362","_from":"7491","_to":"36369"} +{"$label":"ACTS_IN","name":"Sara 'Sway' Wayland","type":"Role","_key":"55507","_from":"7491","_to":"35364"} +{"$label":"ACTS_IN","name":"Amelia Donaghy","type":"Role","_key":"54151","_from":"7491","_to":"34789"} +{"$label":"ACTS_IN","name":"Fox","type":"Role","_key":"51422","_from":"7491","_to":"33548"} +{"$label":"ACTS_IN","name":"Franky","type":"Role","_key":"36058","_from":"7491","_to":"24480"} +{"$label":"ACTS_IN","name":"Christine Collins","type":"Role","_key":"28083","_from":"7491","_to":"20133"} +{"$label":"ACTS_IN","name":"Lisa Rowe","type":"Role","_key":"27876","_from":"7491","_to":"19989"} +{"$label":"ACTS_IN","name":"Grendel's Mother","type":"Role","_key":"20285","_from":"7491","_to":"14868"} +{"$label":"ACTS_IN","name":"Julia Russell\/Bonnie Castle","type":"Role","_key":"17884","_from":"7491","_to":"13313"} +{"$label":"ACTS_IN","name":"Lara Croft","type":"Role","_key":"17307","_from":"7491","_to":"12952"} +{"$label":"ACTS_IN","name":"Lara Croft","type":"Role","_key":"17295","_from":"7491","_to":"12947"} +{"$label":"ACTS_IN","name":"Mariane Pearl","type":"Role","_key":"17207","_from":"7491","_to":"12891"} +{"$label":"ACTS_IN","name":"Olympias","type":"Role","_key":"17037","_from":"7491","_to":"12778"} +{"$label":"ACTS_IN","name":"Margaret Ann Russell","type":"Role","_key":"12203","_from":"7491","_to":"9562"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"9760","_from":"7491","_to":"7817"} +{"$label":"ACTS_IN","name":"Nikolai Wolf","type":"Role","_key":"121698","_from":"7492","_to":"71494"} +{"$label":"ACTS_IN","name":"Stephen Montgomery","type":"Role","_key":"93172","_from":"7492","_to":"54908"} +{"$label":"ACTS_IN","name":"Steve the dealer","type":"Role","_key":"93143","_from":"7492","_to":"54899"} +{"$label":"ACTS_IN","name":"Carter Webb","type":"Role","_key":"92303","_from":"7492","_to":"54472"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"53544","_from":"7492","_to":"34562"} +{"$label":"ACTS_IN","name":"The Flash","type":"Role","_key":"48164","_from":"7492","_to":"31646"} +{"$label":"ACTS_IN","name":"Nikki Tru","type":"Role","_key":"100248","_from":"7493","_to":"59123"} +{"$label":"ACTS_IN","name":"Rosetta","type":"Role","_key":"95171","_from":"7493","_to":"55998"} +{"$label":"ACTS_IN","name":"Lisa Mattson","type":"Role","_key":"93676","_from":"7493","_to":"55148"} +{"$label":"ACTS_IN","name":"Zana Wilder","type":"Role","_key":"89358","_from":"7493","_to":"52887"} +{"$label":"ACTS_IN","name":"Chenille Reynolds","type":"Role","_key":"57095","_from":"7493","_to":"36232"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"52398","_from":"7493","_to":"34098"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"51030","_from":"7493","_to":"33305"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"26236","_from":"7493","_to":"18839"} +{"$label":"ACTS_IN","name":"Alicia Masters","type":"Role","_key":"17157","_from":"7493","_to":"12853"} +{"$label":"ACTS_IN","name":"Della Bae Robinson","type":"Role","_key":"14876","_from":"7493","_to":"11433"} +{"$label":"ACTS_IN","name":"Kay","type":"Role","_key":"13582","_from":"7493","_to":"10561"} +{"$label":"ACTS_IN","name":"Rachel Holloman","type":"Role","_key":"92103","_from":"7495","_to":"54348"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"65576","_from":"7495","_to":"40642"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"55851","_from":"7495","_to":"35533"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"52205","_from":"7495","_to":"34014"} +{"$label":"ACTS_IN","name":"Harmony Faith Lane","type":"Role","_key":"36540","_from":"7495","_to":"24777"} +{"$label":"ACTS_IN","name":"Angie Gennaro","type":"Role","_key":"33904","_from":"7495","_to":"23352"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"19680","_from":"7495","_to":"14552"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"11407","_from":"7495","_to":"8981"} +{"$label":"ACTS_IN","name":"Aunt Jack Hillard","type":"Role","_key":"9285","_from":"7501","_to":"7496"} +{"$label":"ACTS_IN","name":"Mrs. Sellner, The Social Worker","type":"Role","_key":"9284","_from":"7500","_to":"7496"} +{"$label":"ACTS_IN","name":"Natalie Hillard","type":"Role","_key":"9282","_from":"7499","_to":"7496"} +{"$label":"ACTS_IN","name":"Christopher Hillard","type":"Role","_key":"9281","_from":"7498","_to":"7496"} +{"$label":"ACTS_IN","name":"Gloria Chaney","type":"Role","_key":"9279","_from":"7497","_to":"7496"} +{"$label":"ACTS_IN","name":"Judge Westreich","type":"Role","_key":"60903","_from":"7497","_to":"38475"} +{"$label":"ACTS_IN","name":"Marva Kulp, Sr.","type":"Role","_key":"57146","_from":"7497","_to":"36269"} +{"$label":"ACTS_IN","name":"Ruby Deagle","type":"Role","_key":"11052","_from":"7497","_to":"8736"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"119960","_from":"7498","_to":"70456"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"72370","_from":"7498","_to":"43699"} +{"$label":"ACTS_IN","name":"Lance Truman","type":"Role","_key":"65536","_from":"7498","_to":"40621"} +{"$label":"ACTS_IN","name":"Frank Stein","type":"Role","_key":"26328","_from":"7498","_to":"18912"} +{"$label":"ACTS_IN","name":"Anabel Greening","type":"Role","_key":"114139","_from":"7499","_to":"67216"} +{"$label":"ACTS_IN","name":"Matilda Wormwood","type":"Role","_key":"66035","_from":"7499","_to":"40870"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"14399","_from":"7500","_to":"11130"} +{"$label":"ACTS_IN","name":"Dr. Brabec","type":"Role","_key":"9300","_from":"7503","_to":"7502"} +{"$label":"ACTS_IN","name":"Zdenka's mother","type":"Role","_key":"9299","_from":"7516","_to":"7502"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"9298","_from":"7515","_to":"7502"} +{"$label":"ACTS_IN","name":"The countess","type":"Role","_key":"9297","_from":"7514","_to":"7502"} +{"$label":"ACTS_IN","name":"Max's wife","type":"Role","_key":"9296","_from":"7513","_to":"7502"} +{"$label":"ACTS_IN","name":"Victoria Freie","type":"Role","_key":"9295","_from":"7512","_to":"7502"} +{"$label":"ACTS_IN","name":"Zdenka","type":"Role","_key":"9294","_from":"7511","_to":"7502"} +{"$label":"ACTS_IN","name":"Conducteress Masa","type":"Role","_key":"9293","_from":"7510","_to":"7502"} +{"$label":"ACTS_IN","name":"Masa's Uncle Noneman","type":"Role","_key":"9292","_from":"7509","_to":"7502"} +{"$label":"ACTS_IN","name":"Novak","type":"Role","_key":"9291","_from":"7508","_to":"7502"} +{"$label":"ACTS_IN","name":"Stationmaster Max","type":"Role","_key":"9290","_from":"7507","_to":"7502"} +{"$label":"ACTS_IN","name":"Counselor Zednicek","type":"Role","_key":"9289","_from":"7506","_to":"7502"} +{"$label":"ACTS_IN","name":"Train dispatcher Hubicka","type":"Role","_key":"9288","_from":"7505","_to":"7502"} +{"$label":"ACTS_IN","name":"Trainee Milos Hrma","type":"Role","_key":"9287","_from":"7504","_to":"7502"} +{"$label":"DIRECTED","_key":"9286","_from":"7503","_to":"7502"} +{"$label":"ACTS_IN","name":"Dvo\u0159\u00e1k","type":"Role","_key":"115865","_from":"7503","_to":"68222"} +{"$label":"ACTS_IN","name":"Soldat","type":"Role","_key":"92502","_from":"7503","_to":"54601"} +{"$label":"ACTS_IN","name":"Convict","type":"Role","_key":"87922","_from":"7503","_to":"52210"} +{"$label":"DIRECTED","_key":"90248","_from":"7503","_to":"53353"} +{"$label":"DIRECTED","_key":"87915","_from":"7503","_to":"52210"} +{"$label":"ACTS_IN","name":"Pavel Hvezd\u00e1r","type":"Role","_key":"87918","_from":"7504","_to":"52210"} +{"$label":"ACTS_IN","name":"prince V\u00e1clav","type":"Role","_key":"37880","_from":"7504","_to":"25657"} +{"$label":"ACTS_IN","name":"Frantisek H\u00e1na","type":"Role","_key":"106328","_from":"7506","_to":"62641"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"87919","_from":"7506","_to":"52210"} +{"$label":"ACTS_IN","name":"Jakob Heym","type":"Role","_key":"19133","_from":"7506","_to":"14143"} +{"$label":"ACTS_IN","name":"Jitka","type":"Role","_key":"87917","_from":"7511","_to":"52210"} +{"$label":"ACTS_IN","name":"Hal Holbrook","type":"Role","_key":"9311","_from":"7526","_to":"7517"} +{"$label":"ACTS_IN","name":"Ty Mitchell","type":"Role","_key":"9310","_from":"7525","_to":"7517"} +{"$label":"ACTS_IN","name":"Sandy Fadel","type":"Role","_key":"9309","_from":"7524","_to":"7517"} +{"$label":"ACTS_IN","name":"Dan O'Bannon","type":"Role","_key":"9308","_from":"7523","_to":"7517"} +{"$label":"ACTS_IN","name":"Dick Baxter","type":"Role","_key":"9307","_from":"7522","_to":"7517"} +{"$label":"ACTS_IN","name":"Nick Castle","type":"Role","_key":"9306","_from":"7521","_to":"7517"} +{"$label":"ACTS_IN","name":"John Houseman","type":"Role","_key":"9305","_from":"7520","_to":"7517"} +{"$label":"ACTS_IN","name":"Stevie Wayne","type":"Role","_key":"9302","_from":"7519","_to":"7517"} +{"$label":"DIRECTED","_key":"9301","_from":"7518","_to":"7517"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114062","_from":"7518","_to":"67170"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30597","_from":"7518","_to":"21496"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30165","_from":"7518","_to":"21251"} +{"$label":"DIRECTED","_key":"114060","_from":"7518","_to":"67170"} +{"$label":"DIRECTED","_key":"88149","_from":"7518","_to":"52303"} +{"$label":"DIRECTED","_key":"60089","_from":"7518","_to":"37917"} +{"$label":"DIRECTED","_key":"59464","_from":"7518","_to":"37557"} +{"$label":"DIRECTED","_key":"58330","_from":"7518","_to":"36874"} +{"$label":"DIRECTED","_key":"55387","_from":"7518","_to":"35308"} +{"$label":"DIRECTED","_key":"51120","_from":"7518","_to":"33352"} +{"$label":"DIRECTED","_key":"50770","_from":"7518","_to":"33134"} +{"$label":"DIRECTED","_key":"49129","_from":"7518","_to":"32186"} +{"$label":"DIRECTED","_key":"45563","_from":"7518","_to":"30161"} +{"$label":"DIRECTED","_key":"22705","_from":"7518","_to":"16474"} +{"$label":"DIRECTED","_key":"22513","_from":"7518","_to":"16363"} +{"$label":"DIRECTED","_key":"13035","_from":"7518","_to":"10165"} +{"$label":"DIRECTED","_key":"11980","_from":"7518","_to":"9392"} +{"$label":"DIRECTED","_key":"11941","_from":"7518","_to":"9363"} +{"$label":"DIRECTED","_key":"11301","_from":"7518","_to":"8922"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"121176","_from":"7519","_to":"71181"} +{"$label":"ACTS_IN","name":"Alice Cable","type":"Role","_key":"114369","_from":"7519","_to":"67370"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"105127","_from":"7519","_to":"61864"} +{"$label":"ACTS_IN","name":"Scooters Mom (voice)","type":"Role","_key":"97734","_from":"7519","_to":"57545"} +{"$label":"ACTS_IN","name":"Christine O'Malley","type":"Role","_key":"91269","_from":"7519","_to":"53820"} +{"$label":"ACTS_IN","name":"Marcie Thatcher, Lamborghini Babe #1","type":"Role","_key":"68912","_from":"7519","_to":"42196"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"11987","_from":"7519","_to":"9392"} +{"$label":"ACTS_IN","name":"Charles W. Kingsfield Jr.","type":"Role","_key":"99641","_from":"7520","_to":"58741"} +{"$label":"ACTS_IN","name":"Bartholomew","type":"Role","_key":"70122","_from":"7520","_to":"42746"} +{"$label":"ACTS_IN","name":"Gamaliel","type":"Role","_key":"22367","_from":"7520","_to":"16258"} +{"$label":"ACTS_IN","name":"Sgt. Krebs","type":"Role","_key":"118077","_from":"7521","_to":"69396"} +{"$label":"ACTS_IN","name":"Det. Ray Cameron","type":"Role","_key":"105812","_from":"7521","_to":"62291"} +{"$label":"ACTS_IN","name":"Frank McCrae","type":"Role","_key":"99234","_from":"7521","_to":"58479"} +{"$label":"ACTS_IN","name":"Dr. Daniel 'Dan' Challis","type":"Role","_key":"64983","_from":"7521","_to":"40388"} +{"$label":"ACTS_IN","name":"Rehme","type":"Role","_key":"11988","_from":"7521","_to":"9392"} +{"$label":"ACTS_IN","name":"Michael Hunsaker","type":"Role","_key":"11221","_from":"7521","_to":"8874"} +{"$label":"ACTS_IN","name":"Starker","type":"Role","_key":"114067","_from":"7523","_to":"67170"} +{"$label":"ACTS_IN","name":"Sheriff Leigh Brackett","type":"Role","_key":"68873","_from":"7523","_to":"42186"} +{"$label":"ACTS_IN","name":"Ski","type":"Role","_key":"50084","_from":"7523","_to":"32761"} +{"$label":"ACTS_IN","name":"Sheriff Leigh Brackett","type":"Role","_key":"11306","_from":"7523","_to":"8922"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"114068","_from":"7524","_to":"67170"} +{"$label":"ACTS_IN","name":"Linda Challis","type":"Role","_key":"64991","_from":"7524","_to":"40388"} +{"$label":"ACTS_IN","name":"Annie Brackett","type":"Role","_key":"11304","_from":"7524","_to":"8922"} +{"$label":"ACTS_IN","name":"Henry Northrup (segment \"The Crate\")","type":"Role","_key":"108479","_from":"7526","_to":"64123"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"107659","_from":"7526","_to":"63537"} +{"$label":"ACTS_IN","name":"Hamilton \"Ham\" Johnson","type":"Role","_key":"101180","_from":"7526","_to":"59606"} +{"$label":"ACTS_IN","name":"Judge Benjamin Caulfield","type":"Role","_key":"90733","_from":"7526","_to":"53554"} +{"$label":"ACTS_IN","name":"Dr. James Kelloway","type":"Role","_key":"72839","_from":"7526","_to":"43874"} +{"$label":"ACTS_IN","name":"Cmdr. Joseph Rochefort","type":"Role","_key":"69767","_from":"7526","_to":"42583"} +{"$label":"ACTS_IN","name":"Congressman Doyle","type":"Role","_key":"67791","_from":"7526","_to":"41672"} +{"$label":"ACTS_IN","name":"Lieutenant Briggs","type":"Role","_key":"64821","_from":"7526","_to":"40328"} +{"$label":"ACTS_IN","name":"Ron Franz","type":"Role","_key":"40411","_from":"7526","_to":"27245"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"18953","_from":"7526","_to":"14001"} +{"$label":"ACTS_IN","name":"Roy O'Dell","type":"Role","_key":"17562","_from":"7526","_to":"13126"} +{"$label":"ACTS_IN","name":"Deep Throat","type":"Role","_key":"10610","_from":"7526","_to":"8423"} +{"$label":"ACTS_IN","name":"Machen","type":"Role","_key":"9323","_from":"7538","_to":"7527"} +{"$label":"ACTS_IN","name":"Dan The Weatherman","type":"Role","_key":"9322","_from":"7537","_to":"7527"} +{"$label":"ACTS_IN","name":"Aunt Connie","type":"Role","_key":"9321","_from":"7536","_to":"7527"} +{"$label":"ACTS_IN","name":"Andy Wayne","type":"Role","_key":"9320","_from":"7535","_to":"7527"} +{"$label":"ACTS_IN","name":"Kathy Williams","type":"Role","_key":"9319","_from":"7534","_to":"7527"} +{"$label":"ACTS_IN","name":"Father Robert Malone","type":"Role","_key":"9318","_from":"7533","_to":"7527"} +{"$label":"ACTS_IN","name":"Spooner","type":"Role","_key":"9316","_from":"7532","_to":"7527"} +{"$label":"ACTS_IN","name":"Stevie Wayne","type":"Role","_key":"9315","_from":"7531","_to":"7527"} +{"$label":"ACTS_IN","name":"Elizabeth Williams","type":"Role","_key":"9314","_from":"7530","_to":"7527"} +{"$label":"ACTS_IN","name":"Nick Castle","type":"Role","_key":"9313","_from":"7529","_to":"7527"} +{"$label":"DIRECTED","_key":"9312","_from":"7528","_to":"7527"} +{"$label":"DIRECTED","_key":"97790","_from":"7528","_to":"57584"} +{"$label":"DIRECTED","_key":"62502","_from":"7528","_to":"39359"} +{"$label":"ACTS_IN","name":"Charlie Baker","type":"Role","_key":"67243","_from":"7529","_to":"41460"} +{"$label":"ACTS_IN","name":"Charlie Baker","type":"Role","_key":"55221","_from":"7529","_to":"35229"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"95043","_from":"7530","_to":"55950"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"50446","_from":"7530","_to":"32952"} +{"$label":"ACTS_IN","name":"Allegra","type":"Role","_key":"40656","_from":"7530","_to":"27371"} +{"$label":"ACTS_IN","name":"Cassie","type":"Role","_key":"117560","_from":"7531","_to":"69118"} +{"$label":"ACTS_IN","name":"Liz Sherman (voice)","type":"Role","_key":"110017","_from":"7531","_to":"65008"} +{"$label":"ACTS_IN","name":"Vi","type":"Role","_key":"109464","_from":"7531","_to":"64667"} +{"$label":"ACTS_IN","name":"Jean Lerner","type":"Role","_key":"103053","_from":"7531","_to":"60626"} +{"$label":"ACTS_IN","name":"Kathryn Smith","type":"Role","_key":"99617","_from":"7531","_to":"58730"} +{"$label":"ACTS_IN","name":"Grace Anderson","type":"Role","_key":"98871","_from":"7531","_to":"58262"} +{"$label":"ACTS_IN","name":"Caprice Stickles","type":"Role","_key":"95995","_from":"7531","_to":"56430"} +{"$label":"ACTS_IN","name":"Liz Sherman (voice)","type":"Role","_key":"93460","_from":"7531","_to":"55026"} +{"$label":"ACTS_IN","name":"Jane Burns","type":"Role","_key":"72131","_from":"7531","_to":"43602"} +{"$label":"ACTS_IN","name":"Liz Sherman","type":"Role","_key":"68817","_from":"7531","_to":"42165"} +{"$label":"ACTS_IN","name":"Cyrus","type":"Role","_key":"63532","_from":"7531","_to":"39770"} +{"$label":"ACTS_IN","name":"Abbey Gallagher","type":"Role","_key":"62299","_from":"7531","_to":"39249"} +{"$label":"ACTS_IN","name":"Karen Cooper","type":"Role","_key":"54823","_from":"7531","_to":"35077"} +{"$label":"ACTS_IN","name":"Emily Lock","type":"Role","_key":"52674","_from":"7531","_to":"34206"} +{"$label":"ACTS_IN","name":"Vivian Kensington","type":"Role","_key":"50943","_from":"7531","_to":"33247"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"16417","_from":"7531","_to":"12420"} +{"$label":"ACTS_IN","name":"Liz Sherman","type":"Role","_key":"13469","_from":"7531","_to":"10484"} +{"$label":"ACTS_IN","name":"Cecile Caldwell","type":"Role","_key":"9390","_from":"7531","_to":"7576"} +{"$label":"ACTS_IN","name":"John Strother","type":"Role","_key":"121003","_from":"7532","_to":"71073"} +{"$label":"ACTS_IN","name":"Bee Bee","type":"Role","_key":"57414","_from":"7532","_to":"36396"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"24439","_from":"7532","_to":"17679"} +{"$label":"ACTS_IN","name":"Kate O'Hara","type":"Role","_key":"120808","_from":"7534","_to":"70947"} +{"$label":"ACTS_IN","name":"Christine Lord","type":"Role","_key":"66497","_from":"7534","_to":"41115"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"102108","_from":"7536","_to":"60066"} +{"$label":"ACTS_IN","name":"Stinky","type":"Role","_key":"59052","_from":"7537","_to":"37275"} +{"$label":"ACTS_IN","name":"Larry \/ Truck Driver","type":"Role","_key":"93108","_from":"7538","_to":"54874"} +{"$label":"ACTS_IN","name":"SSgt. Bob Barnes","type":"Role","_key":"9346","_from":"7552","_to":"7539"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"9343","_from":"7551","_to":"7539"} +{"$label":"ACTS_IN","name":"Morehouse","type":"Role","_key":"9342","_from":"7550","_to":"7539"} +{"$label":"ACTS_IN","name":"Pvt. Gardner","type":"Role","_key":"9341","_from":"7549","_to":"7539"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"9340","_from":"7548","_to":"7539"} +{"$label":"ACTS_IN","name":"Sanderson","type":"Role","_key":"9339","_from":"7547","_to":"7539"} +{"$label":"ACTS_IN","name":"Doc Gomez","type":"Role","_key":"9338","_from":"7546","_to":"7539"} +{"$label":"ACTS_IN","name":"Tony Hoyt","type":"Role","_key":"9337","_from":"7545","_to":"7539"} +{"$label":"ACTS_IN","name":"Crawford","type":"Role","_key":"9336","_from":"7544","_to":"7539"} +{"$label":"ACTS_IN","name":"Lt. Wolfe","type":"Role","_key":"9335","_from":"7543","_to":"7539"} +{"$label":"ACTS_IN","name":"Junior Martin","type":"Role","_key":"9332","_from":"7542","_to":"7539"} +{"$label":"ACTS_IN","name":"Rhah","type":"Role","_key":"9330","_from":"7541","_to":"7539"} +{"$label":"ACTS_IN","name":"Sgt. Red O'Neill","type":"Role","_key":"9329","_from":"7540","_to":"7539"} +{"$label":"ACTS_IN","name":"Johnny the Fox","type":"Role","_key":"117562","_from":"7540","_to":"69118"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"116796","_from":"7540","_to":"68752"} +{"$label":"ACTS_IN","name":"John Griffin","type":"Role","_key":"113259","_from":"7540","_to":"66728"} +{"$label":"ACTS_IN","name":"Col. J.D. Bock","type":"Role","_key":"100268","_from":"7540","_to":"59133"} +{"$label":"ACTS_IN","name":"Davis \u201eRig\u201c Lanlow","type":"Role","_key":"71501","_from":"7540","_to":"43335"} +{"$label":"ACTS_IN","name":"Sgt. Sisk","type":"Role","_key":"67822","_from":"7540","_to":"41685"} +{"$label":"ACTS_IN","name":"Chuck Mitchell, Jr.","type":"Role","_key":"61404","_from":"7540","_to":"38734"} +{"$label":"ACTS_IN","name":"Stu","type":"Role","_key":"61130","_from":"7540","_to":"38638"} +{"$label":"ACTS_IN","name":"MacGruder","type":"Role","_key":"55122","_from":"7540","_to":"35190"} +{"$label":"ACTS_IN","name":"David Blake","type":"Role","_key":"47769","_from":"7540","_to":"31453"} +{"$label":"ACTS_IN","name":"George York","type":"Role","_key":"23848","_from":"7540","_to":"17287"} +{"$label":"ACTS_IN","name":"Bob Slydell","type":"Role","_key":"13660","_from":"7540","_to":"10605"} +{"$label":"ACTS_IN","name":"FBI Agent Ben Harp","type":"Role","_key":"11924","_from":"7540","_to":"9350"} +{"$label":"ACTS_IN","name":"California","type":"Role","_key":"9514","_from":"7540","_to":"7669"} +{"$label":"ACTS_IN","name":"Marion Radford","type":"Role","_key":"37194","_from":"7541","_to":"25186"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"36794","_from":"7541","_to":"24953"} +{"$label":"ACTS_IN","name":"Lakers FBI Agent","type":"Role","_key":"64289","_from":"7543","_to":"40082"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"22140","_from":"7543","_to":"16146"} +{"$label":"ACTS_IN","name":"Speed","type":"Role","_key":"36617","_from":"7544","_to":"24811"} +{"$label":"ACTS_IN","name":"Ramos","type":"Role","_key":"91455","_from":"7546","_to":"53931"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"49293","_from":"7546","_to":"32281"} +{"$label":"ACTS_IN","name":"Rex O'Herlihan","type":"Role","_key":"118461","_from":"7552","_to":"69644"} +{"$label":"ACTS_IN","name":"Matt Rossi","type":"Role","_key":"117067","_from":"7552","_to":"68895"} +{"$label":"ACTS_IN","name":"Man at end","type":"Role","_key":"115262","_from":"7552","_to":"67870"} +{"$label":"ACTS_IN","name":"Clifford Dubose","type":"Role","_key":"111696","_from":"7552","_to":"65946"} +{"$label":"ACTS_IN","name":"Jonathan Toomey","type":"Role","_key":"106502","_from":"7552","_to":"62743"} +{"$label":"ACTS_IN","name":"Virgil Vadalos","type":"Role","_key":"104870","_from":"7552","_to":"61706"} +{"$label":"ACTS_IN","name":"Thomas J. Beckett","type":"Role","_key":"99262","_from":"7552","_to":"58498"} +{"$label":"ACTS_IN","name":"Thomas Beckett","type":"Role","_key":"99248","_from":"7552","_to":"58489"} +{"$label":"ACTS_IN","name":"Sam Weber","type":"Role","_key":"90271","_from":"7552","_to":"53368"} +{"$label":"ACTS_IN","name":"Pete Randle","type":"Role","_key":"89811","_from":"7552","_to":"53150"} +{"$label":"ACTS_IN","name":"Jake Taylor","type":"Role","_key":"67671","_from":"7552","_to":"41630"} +{"$label":"ACTS_IN","name":"Lt. Gen. James Longstreet","type":"Role","_key":"64857","_from":"7552","_to":"40343"} +{"$label":"ACTS_IN","name":"McCoy Rollins","type":"Role","_key":"63262","_from":"7552","_to":"39660"} +{"$label":"ACTS_IN","name":"Hznk","type":"Role","_key":"62882","_from":"7552","_to":"39507"} +{"$label":"ACTS_IN","name":"Jake Taylor","type":"Role","_key":"58306","_from":"7552","_to":"36867"} +{"$label":"ACTS_IN","name":"Jonathan Knox","type":"Role","_key":"55952","_from":"7552","_to":"35578"} +{"$label":"ACTS_IN","name":"Thomas Beckett","type":"Role","_key":"54584","_from":"7552","_to":"34972"} +{"$label":"ACTS_IN","name":"Recruiting Gunnery Sgt. Hayes","type":"Role","_key":"22137","_from":"7552","_to":"16146"} +{"$label":"ACTS_IN","name":"Red Line","type":"Role","_key":"18201","_from":"7552","_to":"13500"} +{"$label":"ACTS_IN","name":"Dan Merrick","type":"Role","_key":"18006","_from":"7552","_to":"13387"} +{"$label":"ACTS_IN","name":"Stan Gursky","type":"Role","_key":"17711","_from":"7552","_to":"13216"} +{"$label":"ACTS_IN","name":"Jack Lansford","type":"Role","_key":"10310","_from":"7552","_to":"8203"} +{"$label":"ACTS_IN","name":"Nurse Cindy","type":"Role","_key":"9363","_from":"7560","_to":"7553"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"9362","_from":"7559","_to":"7553"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"9359","_from":"7558","_to":"7553"} +{"$label":"ACTS_IN","name":"Mr. Tom Beaumont","type":"Role","_key":"9358","_from":"7557","_to":"7553"} +{"$label":"ACTS_IN","name":"Mrs. Beaumont","type":"Role","_key":"9356","_from":"7556","_to":"7553"} +{"$label":"ACTS_IN","name":"Det. John Williams","type":"Role","_key":"9355","_from":"7555","_to":"7553"} +{"$label":"ACTS_IN","name":"Jeffrey Beaumont","type":"Role","_key":"9350","_from":"7554","_to":"7553"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"113782","_from":"7554","_to":"67043"} +{"$label":"ACTS_IN","name":"Edward Wilde","type":"Role","_key":"99063","_from":"7554","_to":"58360"} +{"$label":"ACTS_IN","name":"Superman (voice)","type":"Role","_key":"98104","_from":"7554","_to":"57762"} +{"$label":"ACTS_IN","name":"Vernon","type":"Role","_key":"90623","_from":"7554","_to":"53516"} +{"$label":"ACTS_IN","name":"Lloyd Gallagher","type":"Role","_key":"89736","_from":"7554","_to":"53117"} +{"$label":"ACTS_IN","name":"Zack Carey","type":"Role","_key":"65893","_from":"7554","_to":"40769"} +{"$label":"ACTS_IN","name":"Claudius","type":"Role","_key":"65065","_from":"7554","_to":"40428"} +{"$label":"ACTS_IN","name":"Ray Manzarek","type":"Role","_key":"63924","_from":"7554","_to":"39931"} +{"$label":"ACTS_IN","name":"Special Agent Dale Cooper","type":"Role","_key":"16648","_from":"7554","_to":"12568"} +{"$label":"ACTS_IN","name":"Cliff Vandercave","type":"Role","_key":"10572","_from":"7554","_to":"8398"} +{"$label":"ACTS_IN","name":"Paul Usul Muad'Dib Atreides","type":"Role","_key":"9935","_from":"7554","_to":"7956"} +{"$label":"ACTS_IN","name":"Tracton","type":"Role","_key":"46134","_from":"7555","_to":"30480"} +{"$label":"ACTS_IN","name":"Mrs. Eleanor Snell","type":"Role","_key":"46465","_from":"7556","_to":"30685"} +{"$label":"ACTS_IN","name":"Judge Cudahy","type":"Role","_key":"37729","_from":"7556","_to":"25589"} +{"$label":"ACTS_IN","name":"Young nanny","type":"Role","_key":"9375","_from":"7567","_to":"7561"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"9374","_from":"7566","_to":"7561"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"9373","_from":"7565","_to":"7561"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"9372","_from":"7564","_to":"7561"} +{"$label":"ACTS_IN","name":"Father Brennan","type":"Role","_key":"9370","_from":"7563","_to":"7561"} +{"$label":"ACTS_IN","name":"Damien","type":"Role","_key":"9369","_from":"7562","_to":"7561"} +{"$label":"ACTS_IN","name":"Tabloid Reporter","type":"Role","_key":"9502","_from":"7562","_to":"7661"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"32477","_from":"7564","_to":"22584"} +{"$label":"ACTS_IN","name":"Eliezer","type":"Role","_key":"21863","_from":"7564","_to":"15962"} +{"$label":"ACTS_IN","name":"Film Direktor","type":"Role","_key":"41652","_from":"7566","_to":"27954"} +{"$label":"ACTS_IN","name":"Flugbegleiterin","type":"Role","_key":"41570","_from":"7567","_to":"27920"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"9386","_from":"7575","_to":"7568"} +{"$label":"ACTS_IN","name":"Susan's Mother","type":"Role","_key":"9385","_from":"7574","_to":"7568"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"9384","_from":"7573","_to":"7568"} +{"$label":"ACTS_IN","name":"Teresa Messinger","type":"Role","_key":"9383","_from":"7572","_to":"7568"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"9382","_from":"7571","_to":"7568"} +{"$label":"ACTS_IN","name":"Nathaniel Messinger","type":"Role","_key":"9380","_from":"7570","_to":"7568"} +{"$label":"DIRECTED","_key":"9376","_from":"7569","_to":"7568"} +{"$label":"DIRECTED","_key":"115109","_from":"7569","_to":"67789"} +{"$label":"DIRECTED","_key":"71861","_from":"7569","_to":"43486"} +{"$label":"DIRECTED","_key":"50997","_from":"7569","_to":"33288"} +{"$label":"DIRECTED","_key":"20616","_from":"7569","_to":"15077"} +{"$label":"ACTS_IN","name":"Manny Karp","type":"Role","_key":"71250","_from":"7570","_to":"43228"} +{"$label":"ACTS_IN","name":"Rubin","type":"Role","_key":"70258","_from":"7570","_to":"42814"} +{"$label":"ACTS_IN","name":"Detective Marino","type":"Role","_key":"67457","_from":"7570","_to":"41554"} +{"$label":"ACTS_IN","name":"Warren Toomey","type":"Role","_key":"64189","_from":"7570","_to":"40047"} +{"$label":"ACTS_IN","name":"Captain Carmine Lorenzo","type":"Role","_key":"13920","_from":"7570","_to":"10802"} +{"$label":"ACTS_IN","name":"Patti Szalinski","type":"Role","_key":"69787","_from":"7571","_to":"42592"} +{"$label":"ACTS_IN","name":"Bridget Kearns","type":"Role","_key":"69147","_from":"7571","_to":"42293"} +{"$label":"ACTS_IN","name":"Carla Nichols","type":"Role","_key":"57882","_from":"7571","_to":"36623"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"60001","_from":"7575","_to":"37868"} +{"$label":"DIRECTED","_key":"9400","_from":"7586","_to":"7576"} +{"$label":"ACTS_IN","name":"Dr. Greenbaum","type":"Role","_key":"9399","_from":"7585","_to":"7576"} +{"$label":"ACTS_IN","name":"Mrs. Michalak","type":"Role","_key":"9397","_from":"7584","_to":"7576"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"9396","_from":"7583","_to":"7576"} +{"$label":"ACTS_IN","name":"Bunny Caldwell","type":"Role","_key":"9395","_from":"7582","_to":"7576"} +{"$label":"ACTS_IN","name":"Ronald Clifford","type":"Role","_key":"9394","_from":"7581","_to":"7576"} +{"$label":"ACTS_IN","name":"Greg McConnell","type":"Role","_key":"9393","_from":"7580","_to":"7576"} +{"$label":"ACTS_IN","name":"Blaine Tuttle","type":"Role","_key":"9392","_from":"7579","_to":"7576"} +{"$label":"ACTS_IN","name":"Sebastian Valmont","type":"Role","_key":"9388","_from":"7578","_to":"7576"} +{"$label":"ACTS_IN","name":"Kathryn Merteuil","type":"Role","_key":"9387","_from":"7577","_to":"7576"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"107810","_from":"7577","_to":"63672"} +{"$label":"ACTS_IN","name":"Sorrow","type":"Role","_key":"95639","_from":"7577","_to":"56251"} +{"$label":"ACTS_IN","name":"Brett Eisenberg","type":"Role","_key":"95041","_from":"7577","_to":"55950"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"67362","_from":"7577","_to":"41514"} +{"$label":"ACTS_IN","name":"Joanna Mills","type":"Role","_key":"60600","_from":"7577","_to":"38253"} +{"$label":"ACTS_IN","name":"Daphne Blake","type":"Role","_key":"55192","_from":"7577","_to":"35209"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"37165","_from":"7577","_to":"25176"} +{"$label":"ACTS_IN","name":"Krysta Now","type":"Role","_key":"33638","_from":"7577","_to":"23230"} +{"$label":"ACTS_IN","name":"Casey \" Cici \" Cooper","type":"Role","_key":"30284","_from":"7577","_to":"21313"} +{"$label":"ACTS_IN","name":"Helen Shivers","type":"Role","_key":"28287","_from":"7577","_to":"20249"} +{"$label":"ACTS_IN","name":"Karen Davis","type":"Role","_key":"17103","_from":"7577","_to":"12821"} +{"$label":"ACTS_IN","name":"Karen Davis","type":"Role","_key":"17092","_from":"7577","_to":"12813"} +{"$label":"ACTS_IN","name":"April O'Neil (voice)","type":"Role","_key":"12435","_from":"7577","_to":"9740"} +{"$label":"ACTS_IN","name":"Martijn","type":"Role","_key":"71297","_from":"7578","_to":"43254"} +{"$label":"ACTS_IN","name":"Simon Cable","type":"Role","_key":"70891","_from":"7578","_to":"43076"} +{"$label":"ACTS_IN","name":"Gil Martin","type":"Role","_key":"63908","_from":"7578","_to":"39924"} +{"$label":"ACTS_IN","name":"Milo Hoffman","type":"Role","_key":"59039","_from":"7578","_to":"37275"} +{"$label":"ACTS_IN","name":"Oliver 'Ollie' Slocumb","type":"Role","_key":"55606","_from":"7578","_to":"35408"} +{"$label":"ACTS_IN","name":"Brandon King","type":"Role","_key":"51859","_from":"7578","_to":"33835"} +{"$label":"ACTS_IN","name":"Preest","type":"Role","_key":"51288","_from":"7578","_to":"33450"} +{"$label":"ACTS_IN","name":"Det. Shane Dekker","type":"Role","_key":"36951","_from":"7578","_to":"25052"} +{"$label":"ACTS_IN","name":"Henry Denton","type":"Role","_key":"36871","_from":"7578","_to":"24998"} +{"$label":"ACTS_IN","name":"Eric O\u00b4Neill","type":"Role","_key":"29852","_from":"7578","_to":"21119"} +{"$label":"ACTS_IN","name":"Bradley","type":"Role","_key":"28494","_from":"7578","_to":"20373"} +{"$label":"ACTS_IN","name":"Shane O'Shea","type":"Role","_key":"28460","_from":"7578","_to":"20352"} +{"$label":"ACTS_IN","name":"Barry William Cox","type":"Role","_key":"28288","_from":"7578","_to":"20249"} +{"$label":"ACTS_IN","name":"Shad, Allysa's Brother","type":"Role","_key":"15669","_from":"7578","_to":"11948"} +{"$label":"ACTS_IN","name":"Officer Tom Hansen","type":"Role","_key":"14555","_from":"7578","_to":"11201"} +{"$label":"ACTS_IN","name":"Mr. Parker","type":"Role","_key":"14354","_from":"7578","_to":"11110"} +{"$label":"ACTS_IN","name":"Keenan","type":"Role","_key":"9761","_from":"7578","_to":"7817"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"116884","_from":"7579","_to":"68813"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114731","_from":"7579","_to":"67580"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"93200","_from":"7579","_to":"54916"} +{"$label":"ACTS_IN","name":"Jeremy Taylor","type":"Role","_key":"90179","_from":"7579","_to":"53319"} +{"$label":"ACTS_IN","name":"Lucas \"Luke\" McNamara","type":"Role","_key":"70090","_from":"7579","_to":"42734"} +{"$label":"ACTS_IN","name":"Charlie Conway","type":"Role","_key":"68245","_from":"7579","_to":"41905"} +{"$label":"ACTS_IN","name":"Benjamin Shaw","type":"Role","_key":"66455","_from":"7579","_to":"41089"} +{"$label":"ACTS_IN","name":"Charlie Conway","type":"Role","_key":"65018","_from":"7579","_to":"40406"} +{"$label":"ACTS_IN","name":"Charlie Conway","type":"Role","_key":"63099","_from":"7579","_to":"39586"} +{"$label":"ACTS_IN","name":"Radford","type":"Role","_key":"100420","_from":"7580","_to":"59213"} +{"$label":"ACTS_IN","name":"Alex Corvis","type":"Role","_key":"53974","_from":"7580","_to":"34720"} +{"$label":"ACTS_IN","name":"Matt Addison","type":"Role","_key":"13946","_from":"7580","_to":"10818"} +{"$label":"ACTS_IN","name":"Callaghan","type":"Role","_key":"106102","_from":"7581","_to":"62481"} +{"$label":"ACTS_IN","name":"Jimmy James","type":"Role","_key":"64513","_from":"7581","_to":"40186"} +{"$label":"ACTS_IN","name":"Derek Reynolds","type":"Role","_key":"57094","_from":"7581","_to":"36232"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"12867","_from":"7581","_to":"10044"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"109894","_from":"7582","_to":"64931"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"71162","_from":"7582","_to":"43190"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"69315","_from":"7582","_to":"42372"} +{"$label":"ACTS_IN","name":"Chantal","type":"Role","_key":"52115","_from":"7582","_to":"33976"} +{"$label":"ACTS_IN","name":"Martha May Whovier","type":"Role","_key":"51195","_from":"7582","_to":"33390"} +{"$label":"ACTS_IN","name":"Mary Sunshine","type":"Role","_key":"13929","_from":"7582","_to":"10805"} +{"$label":"ACTS_IN","name":"Martha Kent","type":"Role","_key":"95633","_from":"7585","_to":"56248"} +{"$label":"ACTS_IN","name":"Beverly Landers","type":"Role","_key":"59951","_from":"7585","_to":"37851"} +{"$label":"ACTS_IN","name":"Mrs. Livingston","type":"Role","_key":"55570","_from":"7585","_to":"35390"} +{"$label":"ACTS_IN","name":"Ruth Walter","type":"Role","_key":"41368","_from":"7585","_to":"27804"} +{"$label":"ACTS_IN","name":"Charlane McGregor","type":"Role","_key":"23599","_from":"7585","_to":"17109"} +{"$label":"ACTS_IN","name":"Mrs. Jared","type":"Role","_key":"15647","_from":"7585","_to":"11928"} +{"$label":"ACTS_IN","name":"Dana Appleton","type":"Role","_key":"14403","_from":"7585","_to":"11130"} +{"$label":"ACTS_IN","name":"Madame de Volanges","type":"Role","_key":"10211","_from":"7585","_to":"8147"} +{"$label":"DIRECTED","_key":"94812","_from":"7586","_to":"55837"} +{"$label":"DIRECTED","_key":"72128","_from":"7586","_to":"43602"} +{"$label":"DIRECTED","_key":"59699","_from":"7586","_to":"37702"} +{"$label":"DIRECTED","_key":"37265","_from":"7586","_to":"25250"} +{"$label":"ACTS_IN","name":"Sohn","type":"Role","_key":"9406","_from":"7590","_to":"7587"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"9404","_from":"7589","_to":"7587"} +{"$label":"ACTS_IN","name":"Elisabeth Vogler","type":"Role","_key":"9403","_from":"7588","_to":"7587"} +{"$label":"ACTS_IN","name":"Alma Borg","type":"Role","_key":"115854","_from":"7588","_to":"68205"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"91346","_from":"7588","_to":"53876"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"61875","_from":"7588","_to":"38945"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"56162","_from":"7588","_to":"35702"} +{"$label":"ACTS_IN","name":"Kate Ter Horst","type":"Role","_key":"40263","_from":"7588","_to":"27164"} +{"$label":"ACTS_IN","name":"Berlin Film Fest Footage","type":"Role","_key":"20517","_from":"7588","_to":"14984"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"70251","_from":"7590","_to":"42811"} +{"$label":"ACTS_IN","name":"Lehrer Bremser","type":"Role","_key":"9419","_from":"7604","_to":"7591"} +{"$label":"ACTS_IN","name":"H\u00f6llriegel, Rennfahrer","type":"Role","_key":"9418","_from":"7603","_to":"7591"} +{"$label":"ACTS_IN","name":"Frau \u00dcbelmann","type":"Role","_key":"9417","_from":"7602","_to":"7591"} +{"$label":"ACTS_IN","name":"Hollack, Chauffeur","type":"Role","_key":"9416","_from":"7601","_to":"7591"} +{"$label":"ACTS_IN","name":"Frau Gast, Antons Mutter","type":"Role","_key":"9415","_from":"7600","_to":"7591"} +{"$label":"ACTS_IN","name":"Robert der Teufel","type":"Role","_key":"9414","_from":"7599","_to":"7591"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Andacht","type":"Role","_key":"9413","_from":"7598","_to":"7591"} +{"$label":"ACTS_IN","name":"Bertha, K\u00f6chin","type":"Role","_key":"9412","_from":"7597","_to":"7591"} +{"$label":"ACTS_IN","name":"Herr Pogge","type":"Role","_key":"9411","_from":"7596","_to":"7591"} +{"$label":"ACTS_IN","name":"Eva Pogge","type":"Role","_key":"9410","_from":"7595","_to":"7591"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"9409","_from":"7594","_to":"7591"} +{"$label":"ACTS_IN","name":"P\u00fcnktchen","type":"Role","_key":"9408","_from":"7593","_to":"7591"} +{"$label":"DIRECTED","_key":"9407","_from":"7592","_to":"7591"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"45525","_from":"7595","_to":"30151"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"44742","_from":"7595","_to":"29769"} +{"$label":"ACTS_IN","name":"Hilde R\u00fcdiger aka Die sch\u00f6ne M\u00fcllerin","type":"Role","_key":"42119","_from":"7595","_to":"28218"} +{"$label":"ACTS_IN","name":"Carlotta Ramirez","type":"Role","_key":"40984","_from":"7595","_to":"27570"} +{"$label":"ACTS_IN","name":"Der Nichtraucher","type":"Role","_key":"91512","_from":"7596","_to":"53947"} +{"$label":"ACTS_IN","name":"Jochen von Roth","type":"Role","_key":"90216","_from":"7596","_to":"53344"} +{"$label":"ACTS_IN","name":"Jochen von Roth","type":"Role","_key":"49599","_from":"7596","_to":"32466"} +{"$label":"ACTS_IN","name":"Peter Schroeder","type":"Role","_key":"45526","_from":"7596","_to":"30151"} +{"$label":"ACTS_IN","name":"Dr. Friedlieb","type":"Role","_key":"44420","_from":"7596","_to":"29590"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42065","_from":"7597","_to":"28185"} +{"$label":"ACTS_IN","name":"the porter's wife","type":"Role","_key":"11964","_from":"7597","_to":"9373"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"30968","_from":"7598","_to":"21695"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44218","_from":"7599","_to":"29461"} +{"$label":"ACTS_IN","name":"Enrico","type":"Role","_key":"43803","_from":"7599","_to":"29250"} +{"$label":"ACTS_IN","name":"Wolf Siebert","type":"Role","_key":"42682","_from":"7599","_to":"28569"} +{"$label":"ACTS_IN","name":"Besser","type":"Role","_key":"40316","_from":"7599","_to":"27196"} +{"$label":"ACTS_IN","name":"Wally Fender ( Geierwally )","type":"Role","_key":"43063","_from":"7600","_to":"28764"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"42576","_from":"7601","_to":"28496"} +{"$label":"ACTS_IN","name":"Captain Lindemann","type":"Role","_key":"117453","_from":"7603","_to":"69075"} +{"$label":"ACTS_IN","name":"B\u00e4renjosef","type":"Role","_key":"43084","_from":"7603","_to":"28781"} +{"$label":"ACTS_IN","name":"Bloom","type":"Role","_key":"32816","_from":"7603","_to":"22783"} +{"$label":"ACTS_IN","name":"Gerhard","type":"Role","_key":"15375","_from":"7603","_to":"11757"} +{"$label":"ACTS_IN","name":"Jo le Suedois","type":"Role","_key":"11155","_from":"7603","_to":"8831"} +{"$label":"ACTS_IN","name":"Dir.Gr\u00fcnkern","type":"Role","_key":"91517","_from":"7604","_to":"53947"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"9430","_from":"7612","_to":"7605"} +{"$label":"ACTS_IN","name":"Professor Bremser","type":"Role","_key":"9429","_from":"7611","_to":"7605"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"9428","_from":"7610","_to":"7605"} +{"$label":"ACTS_IN","name":"Dicke Bertha","type":"Role","_key":"9427","_from":"7609","_to":"7605"} +{"$label":"ACTS_IN","name":"Richard Pogge","type":"Role","_key":"9424","_from":"7608","_to":"7605"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"9422","_from":"7607","_to":"7605"} +{"$label":"ACTS_IN","name":"Annaluise\/P\u00fcnktchen","type":"Role","_key":"9421","_from":"7606","_to":"7605"} +{"$label":"ACTS_IN","name":"Richard Harms","type":"Role","_key":"88597","_from":"7608","_to":"52498"} +{"$label":"ACTS_IN","name":"Erik Kirsch","type":"Role","_key":"71505","_from":"7608","_to":"43336"} +{"$label":"ACTS_IN","name":"Clay Derris","type":"Role","_key":"60351","_from":"7608","_to":"38062"} +{"$label":"ACTS_IN","name":"Dr. Klinger","type":"Role","_key":"47402","_from":"7608","_to":"31223"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"39686","_from":"7608","_to":"26819"} +{"$label":"ACTS_IN","name":"Dr. Gerd Naumann","type":"Role","_key":"36350","_from":"7608","_to":"24651"} +{"$label":"ACTS_IN","name":"Lothar Fuchs","type":"Role","_key":"32977","_from":"7608","_to":"22862"} +{"$label":"ACTS_IN","name":"Martha\u00b4s Therapist","type":"Role","_key":"28410","_from":"7608","_to":"20322"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"28366","_from":"7608","_to":"20286"} +{"$label":"ACTS_IN","name":"Manfred Grabowski, Oberstaatsanwalt","type":"Role","_key":"27892","_from":"7608","_to":"19995"} +{"$label":"ACTS_IN","name":"Old Anna","type":"Role","_key":"107279","_from":"7609","_to":"63270"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"65070","_from":"7609","_to":"40429"} +{"$label":"ACTS_IN","name":"Toni Kurz","type":"Role","_key":"109219","_from":"7610","_to":"64531"} +{"$label":"ACTS_IN","name":"Lt. Maximillian von Steiner","type":"Role","_key":"93629","_from":"7610","_to":"55123"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"88381","_from":"7610","_to":"52391"} +{"$label":"ACTS_IN","name":"Nikolaus Sprink","type":"Role","_key":"71370","_from":"7610","_to":"43289"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Urban","type":"Role","_key":"68521","_from":"7610","_to":"42023"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"68417","_from":"7610","_to":"41974"} +{"$label":"ACTS_IN","name":"William Eden","type":"Role","_key":"55070","_from":"7610","_to":"35178"} +{"$label":"ACTS_IN","name":"Fabian","type":"Role","_key":"53117","_from":"7610","_to":"34369"} +{"$label":"ACTS_IN","name":"Bodo Riemer","type":"Role","_key":"52994","_from":"7610","_to":"34328"} +{"$label":"ACTS_IN","name":"Reuven","type":"Role","_key":"48642","_from":"7610","_to":"31906"} +{"$label":"ACTS_IN","name":"Mamba","type":"Role","_key":"46826","_from":"7610","_to":"30889"} +{"$label":"ACTS_IN","name":"Gr\u00fcnbaum","type":"Role","_key":"45668","_from":"7610","_to":"30218"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"39737","_from":"7610","_to":"26850"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"37102","_from":"7610","_to":"25144"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"30474","_from":"7610","_to":"21421"} +{"$label":"ACTS_IN","name":"Thaddeus","type":"Role","_key":"20047","_from":"7610","_to":"14745"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"15395","_from":"7610","_to":"11776"} +{"$label":"ACTS_IN","name":"Hein","type":"Role","_key":"15032","_from":"7610","_to":"11560"} +{"$label":"ACTS_IN","name":"Regisseur Oliver","type":"Role","_key":"12008","_from":"7610","_to":"9411"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"20594","_from":"7611","_to":"15054"} +{"$label":"ACTS_IN","name":"Ojitos","type":"Role","_key":"9442","_from":"7624","_to":"7613"} +{"$label":"ACTS_IN","name":"Juli\u00e1n","type":"Role","_key":"9441","_from":"7623","_to":"7613"} +{"$label":"ACTS_IN","name":"Pelon","type":"Role","_key":"9440","_from":"7622","_to":"7613"} +{"$label":"ACTS_IN","name":"Cacarizo","type":"Role","_key":"9439","_from":"7621","_to":"7613"} +{"$label":"ACTS_IN","name":"El padre de Juli\u00e1n","type":"Role","_key":"9438","_from":"7620","_to":"7613"} +{"$label":"ACTS_IN","name":"El director de la escuela granja","type":"Role","_key":"9437","_from":"7619","_to":"7613"} +{"$label":"ACTS_IN","name":"Meche","type":"Role","_key":"9436","_from":"7618","_to":"7613"} +{"$label":"ACTS_IN","name":"El Jaibo","type":"Role","_key":"9435","_from":"7617","_to":"7613"} +{"$label":"ACTS_IN","name":"Don Carmelo, el ciego","type":"Role","_key":"9434","_from":"7616","_to":"7613"} +{"$label":"ACTS_IN","name":"La madre de Pedro","type":"Role","_key":"9433","_from":"7615","_to":"7613"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"9432","_from":"7614","_to":"7613"} +{"$label":"ACTS_IN","name":"Trinh","type":"Role","_key":"9447","_from":"7627","_to":"7625"} +{"$label":"ACTS_IN","name":"Tuan","type":"Role","_key":"9446","_from":"7626","_to":"7625"} +{"$label":"ACTS_IN","name":"Mrs. Starch","type":"Role","_key":"9459","_from":"7636","_to":"7628"} +{"$label":"ACTS_IN","name":"George Swine","type":"Role","_key":"9458","_from":"7635","_to":"7628"} +{"$label":"ACTS_IN","name":"Richard T. 'Dick' Siller","type":"Role","_key":"9457","_from":"7634","_to":"7628"} +{"$label":"ACTS_IN","name":"John Farlow","type":"Role","_key":"9456","_from":"7633","_to":"7628"} +{"$label":"ACTS_IN","name":"Jean Farlow","type":"Role","_key":"9455","_from":"7632","_to":"7628"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"9454","_from":"7631","_to":"7628"} +{"$label":"ACTS_IN","name":"Clare Quilty","type":"Role","_key":"9452","_from":"7630","_to":"7628"} +{"$label":"ACTS_IN","name":"Dolores \u201eLolita\u201c Haze","type":"Role","_key":"9450","_from":"7629","_to":"7628"} +{"$label":"ACTS_IN","name":"Charlotte Goodall","type":"Role","_key":"101487","_from":"7629","_to":"59732"} +{"$label":"ACTS_IN","name":"Sylvia Boran","type":"Role","_key":"25109","_from":"7629","_to":"18140"} +{"$label":"ACTS_IN","name":"Henry Orient","type":"Role","_key":"120778","_from":"7630","_to":"70940"} +{"$label":"ACTS_IN","name":"Aldo Vanucci \/ Federico Fabrizi","type":"Role","_key":"118861","_from":"7630","_to":"69863"} +{"$label":"ACTS_IN","name":"Grand Duchess Gloriana XII \/ Prime Minister Count Rupert Mountjoy \/ Tully Bascombe","type":"Role","_key":"90809","_from":"7630","_to":"53584"} +{"$label":"ACTS_IN","name":"Inspector Clouseau","type":"Role","_key":"89137","_from":"7630","_to":"52801"} +{"$label":"ACTS_IN","name":"007","type":"Role","_key":"88688","_from":"7630","_to":"52552"} +{"$label":"ACTS_IN","name":"Jacques Clouseau","type":"Role","_key":"72316","_from":"7630","_to":"43680"} +{"$label":"ACTS_IN","name":"Hrundi V. Bakshi","type":"Role","_key":"65832","_from":"7630","_to":"40743"} +{"$label":"ACTS_IN","name":"Chance","type":"Role","_key":"62580","_from":"7630","_to":"39378"} +{"$label":"ACTS_IN","name":"Chef Inspektor Jacques Clouseau","type":"Role","_key":"55819","_from":"7630","_to":"35527"} +{"$label":"ACTS_IN","name":"Insp. Clousseau","type":"Role","_key":"41613","_from":"7630","_to":"27943"} +{"$label":"ACTS_IN","name":"Sidney Wang","type":"Role","_key":"41388","_from":"7630","_to":"27822"} +{"$label":"ACTS_IN","name":"Harry (alias 'Mr. Robinson')","type":"Role","_key":"37555","_from":"7630","_to":"25457"} +{"$label":"ACTS_IN","name":"Dr. Fritz Fassbender","type":"Role","_key":"28438","_from":"7630","_to":"20343"} +{"$label":"ACTS_IN","name":"Dr. Kabir","type":"Role","_key":"28100","_from":"7630","_to":"20145"} +{"$label":"ACTS_IN","name":"Dr. Fu \" Fred \" Manchu","type":"Role","_key":"27428","_from":"7630","_to":"19693"} +{"$label":"ACTS_IN","name":"Rudolf IV\/Rudolf V\/Sidney Frewin","type":"Role","_key":"15319","_from":"7630","_to":"11720"} +{"$label":"ACTS_IN","name":"Jacques Clouseau","type":"Role","_key":"14132","_from":"7630","_to":"10944"} +{"$label":"ACTS_IN","name":"Insp. Jacques Clouseau","type":"Role","_key":"11173","_from":"7630","_to":"8842"} +{"$label":"ACTS_IN","name":"Captain Mandrake\/Pr\u00e4sident Muffley\/Doktor Seltsam","type":"Role","_key":"11164","_from":"7630","_to":"8839"} +{"$label":"DIRECTED","_key":"27427","_from":"7630","_to":"19693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"9465","_from":"7642","_to":"7637"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"9463","_from":"7641","_to":"7637"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"9462","_from":"7640","_to":"7637"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"9461","_from":"7639","_to":"7637"} +{"$label":"DIRECTED","_key":"9460","_from":"7638","_to":"7637"} +{"$label":"DIRECTED","_key":"104184","_from":"7638","_to":"61296"} +{"$label":"DIRECTED","_key":"37755","_from":"7638","_to":"25610"} +{"$label":"DIRECTED","_key":"34052","_from":"7638","_to":"23411"} +{"$label":"DIRECTED","_key":"33941","_from":"7638","_to":"23371"} +{"$label":"DIRECTED","_key":"29447","_from":"7638","_to":"20889"} +{"$label":"DIRECTED","_key":"23758","_from":"7638","_to":"17230"} +{"$label":"ACTS_IN","name":"Procureur Delarue","type":"Role","_key":"89989","_from":"7639","_to":"53238"} +{"$label":"ACTS_IN","name":"Charles Desvall\u00e9es","type":"Role","_key":"48837","_from":"7639","_to":"32023"} +{"$label":"ACTS_IN","name":"Hubert Lavoisier","type":"Role","_key":"34614","_from":"7639","_to":"23691"} +{"$label":"ACTS_IN","name":"Commissaire Goitreau","type":"Role","_key":"33332","_from":"7639","_to":"23092"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31611","_from":"7639","_to":"22071"} +{"$label":"ACTS_IN","name":"Ludovic Regnier","type":"Role","_key":"30616","_from":"7639","_to":"21508"} +{"$label":"ACTS_IN","name":"Coral","type":"Role","_key":"29963","_from":"7639","_to":"21166"} +{"$label":"ACTS_IN","name":"Maugras","type":"Role","_key":"21004","_from":"7639","_to":"15374"} +{"$label":"ACTS_IN","name":"Camolli","type":"Role","_key":"14664","_from":"7639","_to":"11289"} +{"$label":"ACTS_IN","name":"Cab driver","type":"Role","_key":"9477","_from":"7652","_to":"7643"} +{"$label":"ACTS_IN","name":"Charwoman","type":"Role","_key":"9476","_from":"7651","_to":"7643"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"9475","_from":"7650","_to":"7643"} +{"$label":"ACTS_IN","name":"Mario Delani","type":"Role","_key":"9474","_from":"7649","_to":"7643"} +{"$label":"ACTS_IN","name":"Gen. Provno","type":"Role","_key":"9473","_from":"7648","_to":"7643"} +{"$label":"ACTS_IN","name":"Countess Vereberg","type":"Role","_key":"9472","_from":"7647","_to":"7643"} +{"$label":"ACTS_IN","name":"Ambassador","type":"Role","_key":"9471","_from":"7646","_to":"7643"} +{"$label":"ACTS_IN","name":"Mr. Hennessy","type":"Role","_key":"9470","_from":"7645","_to":"7643"} +{"$label":"ACTS_IN","name":"Irving Radovich","type":"Role","_key":"9469","_from":"7644","_to":"7643"} +{"$label":"ACTS_IN","name":"Jason O'Day","type":"Role","_key":"101909","_from":"7644","_to":"59978"} +{"$label":"ACTS_IN","name":"Leo Sellers","type":"Role","_key":"35395","_from":"7644","_to":"24086"} +{"$label":"ACTS_IN","name":"Warden Hazen","type":"Role","_key":"35342","_from":"7644","_to":"24065"} +{"$label":"ACTS_IN","name":"Prewitt","type":"Role","_key":"94231","_from":"7646","_to":"55491"} +{"$label":"ACTS_IN","name":"Hinshaw","type":"Role","_key":"24156","_from":"7646","_to":"17503"} +{"$label":"ACTS_IN","name":"Joan Jellico","type":"Role","_key":"9489","_from":"7660","_to":"7653"} +{"$label":"ACTS_IN","name":"Elise Dunstan","type":"Role","_key":"9488","_from":"7659","_to":"7653"} +{"$label":"ACTS_IN","name":"Laura-Louise McBirney","type":"Role","_key":"9486","_from":"7658","_to":"7653"} +{"$label":"ACTS_IN","name":"Terry Gionoffrio","type":"Role","_key":"9485","_from":"7657","_to":"7653"} +{"$label":"ACTS_IN","name":"Edward Hutchins","type":"Role","_key":"9483","_from":"7656","_to":"7653"} +{"$label":"ACTS_IN","name":"Roman Castevet","type":"Role","_key":"9482","_from":"7655","_to":"7653"} +{"$label":"ACTS_IN","name":"Rosemary Woodhouse","type":"Role","_key":"9479","_from":"7654","_to":"7653"} +{"$label":"ACTS_IN","name":"Irmy","type":"Role","_key":"119198","_from":"7654","_to":"70040"} +{"$label":"ACTS_IN","name":"Nina Marcus","type":"Role","_key":"112126","_from":"7654","_to":"66220"} +{"$label":"ACTS_IN","name":"Tina Vitale","type":"Role","_key":"91353","_from":"7654","_to":"53879"} +{"$label":"ACTS_IN","name":"Daisy Buchanan","type":"Role","_key":"67461","_from":"7654","_to":"41555"} +{"$label":"ACTS_IN","name":"Dr. Eudora Nesbitt Fletcher","type":"Role","_key":"67411","_from":"7654","_to":"41529"} +{"$label":"ACTS_IN","name":"Cecilia","type":"Role","_key":"66205","_from":"7654","_to":"40960"} +{"$label":"ACTS_IN","name":"Unicorn \/ Amalthea (voice)","type":"Role","_key":"61251","_from":"7654","_to":"38678"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"59103","_from":"7654","_to":"37311"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"55620","_from":"7654","_to":"35413"} +{"$label":"ACTS_IN","name":"Alura","type":"Role","_key":"55289","_from":"7654","_to":"35258"} +{"$label":"ACTS_IN","name":"Ariel","type":"Role","_key":"48859","_from":"7654","_to":"32041"} +{"$label":"ACTS_IN","name":"Alice Tate","type":"Role","_key":"48492","_from":"7654","_to":"31835"} +{"$label":"ACTS_IN","name":"Jacqueline de Bellefort","type":"Role","_key":"41599","_from":"7654","_to":"27940"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"36069","_from":"7654","_to":"24486"} +{"$label":"ACTS_IN","name":"Jacqueline de Bellefort","type":"Role","_key":"29975","_from":"7654","_to":"21170"} +{"$label":"ACTS_IN","name":"Mrs. Baylock","type":"Role","_key":"9496","_from":"7654","_to":"7661"} +{"$label":"ACTS_IN","name":"Humphrey Agnew","type":"Role","_key":"113854","_from":"7655","_to":"67061"} +{"$label":"ACTS_IN","name":"Seth Lord","type":"Role","_key":"69781","_from":"7655","_to":"42588"} +{"$label":"ACTS_IN","name":"Major Palgrave","type":"Role","_key":"41367","_from":"7656","_to":"27804"} +{"$label":"ACTS_IN","name":"Dr. Zaius","type":"Role","_key":"14908","_from":"7656","_to":"11457"} +{"$label":"ACTS_IN","name":"Dr. Zaius","type":"Role","_key":"10367","_from":"7656","_to":"8244"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"120062","_from":"7658","_to":"70508"} +{"$label":"ACTS_IN","name":"Mrs Schmauss","type":"Role","_key":"106988","_from":"7658","_to":"63076"} +{"$label":"ACTS_IN","name":"Father Spiletto","type":"Role","_key":"9501","_from":"7668","_to":"7661"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"9499","_from":"7667","_to":"7661"} +{"$label":"ACTS_IN","name":"Cardinal Fabretti","type":"Role","_key":"9498","_from":"7666","_to":"7661"} +{"$label":"ACTS_IN","name":"Vatican Observatory Priest","type":"Role","_key":"9497","_from":"7665","_to":"7661"} +{"$label":"ACTS_IN","name":"Damien Thorn","type":"Role","_key":"9493","_from":"7664","_to":"7661"} +{"$label":"ACTS_IN","name":"Katherine Thorn","type":"Role","_key":"9492","_from":"7663","_to":"7661"} +{"$label":"DIRECTED","_key":"9490","_from":"7662","_to":"7661"} +{"$label":"DIRECTED","_key":"92190","_from":"7662","_to":"54404"} +{"$label":"DIRECTED","_key":"72452","_from":"7662","_to":"43726"} +{"$label":"DIRECTED","_key":"47732","_from":"7662","_to":"31434"} +{"$label":"ACTS_IN","name":"Jenny Thierolf","type":"Role","_key":"116542","_from":"7663","_to":"68600"} +{"$label":"ACTS_IN","name":"Glenna","type":"Role","_key":"115219","_from":"7663","_to":"67851"} +{"$label":"ACTS_IN","name":"Isold","type":"Role","_key":"103282","_from":"7663","_to":"60763"} +{"$label":"ACTS_IN","name":"Joan Brandwyn","type":"Role","_key":"72177","_from":"7663","_to":"43624"} +{"$label":"ACTS_IN","name":"Paige Morgan","type":"Role","_key":"68105","_from":"7663","_to":"41834"} +{"$label":"ACTS_IN","name":"Desi Brable","type":"Role","_key":"67655","_from":"7663","_to":"41627"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"65068","_from":"7663","_to":"40428"} +{"$label":"ACTS_IN","name":"Imogen","type":"Role","_key":"63531","_from":"7663","_to":"39770"} +{"$label":"ACTS_IN","name":"Sara Johnson","type":"Role","_key":"57093","_from":"7663","_to":"36232"} +{"$label":"ACTS_IN","name":"Becky Jackon","type":"Role","_key":"54822","_from":"7663","_to":"35077"} +{"$label":"ACTS_IN","name":"Kat Stratford","type":"Role","_key":"35062","_from":"7663","_to":"23914"} +{"$label":"ACTS_IN","name":"Carolina","type":"Role","_key":"32888","_from":"7663","_to":"22825"} +{"$label":"ACTS_IN","name":"Bridget O'Meara","type":"Role","_key":"31977","_from":"7663","_to":"22296"} +{"$label":"ACTS_IN","name":"Nicky Parsons","type":"Role","_key":"21732","_from":"7663","_to":"15873"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"21722","_from":"7663","_to":"15871"} +{"$label":"ACTS_IN","name":"Nicolette","type":"Role","_key":"21718","_from":"7663","_to":"15869"} +{"$label":"ACTS_IN","name":"Lord Donnon","type":"Role","_key":"21532","_from":"7665","_to":"15744"} +{"$label":"ACTS_IN","name":"Charlie Bukowski","type":"Role","_key":"50487","_from":"7668","_to":"32975"} +{"$label":"ACTS_IN","name":"Mike Logan","type":"Role","_key":"50477","_from":"7668","_to":"32971"} +{"$label":"ACTS_IN","name":"Herodes Antipas","type":"Role","_key":"22904","_from":"7668","_to":"16608"} +{"$label":"ACTS_IN","name":"George, Library Night Guard","type":"Role","_key":"9512","_from":"7674","_to":"7669"} +{"$label":"ACTS_IN","name":"Officer Davis","type":"Role","_key":"9511","_from":"7673","_to":"7669"} +{"$label":"ACTS_IN","name":"Detective Taylor","type":"Role","_key":"9510","_from":"7672","_to":"7669"} +{"$label":"ACTS_IN","name":"Dead Man","type":"Role","_key":"9508","_from":"7671","_to":"7669"} +{"$label":"ACTS_IN","name":"Tracy Mills","type":"Role","_key":"9506","_from":"7670","_to":"7669"} +{"$label":"ACTS_IN","name":"Ginnie","type":"Role","_key":"116621","_from":"7670","_to":"68648"} +{"$label":"ACTS_IN","name":"Liv","type":"Role","_key":"114833","_from":"7670","_to":"67644"} +{"$label":"ACTS_IN","name":"Helen Baring","type":"Role","_key":"114434","_from":"7670","_to":"67412"} +{"$label":"ACTS_IN","name":"Dora Shaller","type":"Role","_key":"94862","_from":"7670","_to":"55857"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"70404","_from":"7670","_to":"42873"} +{"$label":"ACTS_IN","name":"Abby Janello","type":"Role","_key":"66340","_from":"7670","_to":"41033"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"62806","_from":"7670","_to":"39473"} +{"$label":"ACTS_IN","name":"Helen Quilley","type":"Role","_key":"61752","_from":"7670","_to":"38887"} +{"$label":"ACTS_IN","name":"Pepper Potts","type":"Role","_key":"61174","_from":"7670","_to":"38656"} +{"$label":"ACTS_IN","name":"Rosemary Shanahan","type":"Role","_key":"57613","_from":"7670","_to":"36483"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"56621","_from":"7670","_to":"35969"} +{"$label":"ACTS_IN","name":"Kitty Dean","type":"Role","_key":"55439","_from":"7670","_to":"35334"} +{"$label":"ACTS_IN","name":"Margot Tenenbaum","type":"Role","_key":"53794","_from":"7670","_to":"34665"} +{"$label":"ACTS_IN","name":"Estella","type":"Role","_key":"53697","_from":"7670","_to":"34631"} +{"$label":"ACTS_IN","name":"Maureen Dean","type":"Role","_key":"51601","_from":"7670","_to":"33668"} +{"$label":"ACTS_IN","name":"Clementine","type":"Role","_key":"47881","_from":"7670","_to":"31513"} +{"$label":"ACTS_IN","name":"Hope Finch","type":"Role","_key":"46977","_from":"7670","_to":"30977"} +{"$label":"ACTS_IN","name":"Jacks","type":"Role","_key":"44522","_from":"7670","_to":"29646"} +{"$label":"ACTS_IN","name":"Polly Perkins","type":"Role","_key":"36056","_from":"7670","_to":"24480"} +{"$label":"ACTS_IN","name":"Emma Woodhouse","type":"Role","_key":"27989","_from":"7670","_to":"20074"} +{"$label":"ACTS_IN","name":"Paula Bell","type":"Role","_key":"19644","_from":"7670","_to":"14529"} +{"$label":"ACTS_IN","name":"Emily Taylor","type":"Role","_key":"17030","_from":"7670","_to":"12774"} +{"$label":"ACTS_IN","name":"Viola De Lesseps","type":"Role","_key":"16763","_from":"7670","_to":"12639"} +{"$label":"ACTS_IN","name":"Virginia 'Pepper' Potts","type":"Role","_key":"15276","_from":"7670","_to":"11696"} +{"$label":"ACTS_IN","name":"Marge Sherwood","type":"Role","_key":"12155","_from":"7670","_to":"9529"} +{"$label":"ACTS_IN","name":"Young Wendy","type":"Role","_key":"10462","_from":"7670","_to":"8318"} +{"$label":"ACTS_IN","name":"Police Chief","type":"Role","_key":"70445","_from":"7672","_to":"42885"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"110661","_from":"7673","_to":"65370"} +{"$label":"ACTS_IN","name":"Det. Bernie Callo","type":"Role","_key":"36958","_from":"7673","_to":"25052"} +{"$label":"ACTS_IN","name":"Cole (segment \"The Honeymoon\")","type":"Role","_key":"108659","_from":"7674","_to":"64215"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"14504","_from":"7674","_to":"11195"} +{"$label":"ACTS_IN","name":"Baby Bear (voice)","type":"Role","_key":"9525","_from":"7682","_to":"7675"} +{"$label":"ACTS_IN","name":"Captain of Guards (voice)","type":"Role","_key":"9524","_from":"7681","_to":"7675"} +{"$label":"ACTS_IN","name":"Ogre Hunter (voice)","type":"Role","_key":"9523","_from":"7680","_to":"7675"} +{"$label":"ACTS_IN","name":"Ogre Hunter (voice)","type":"Role","_key":"9522","_from":"7679","_to":"7675"} +{"$label":"ACTS_IN","name":"Lord Farquaad (voice)","type":"Role","_key":"9520","_from":"7678","_to":"7675"} +{"$label":"ACTS_IN","name":"Shrek (voice)","type":"Role","_key":"9517","_from":"7677","_to":"7675"} +{"$label":"DIRECTED","_key":"9516","_from":"7676","_to":"7675"} +{"$label":"DIRECTED","_key":"64041","_from":"7676","_to":"39973"} +{"$label":"ACTS_IN","name":"General Ed Fenech","type":"Role","_key":"110265","_from":"7677","_to":"65170"} +{"$label":"ACTS_IN","name":"Shrek (voice)","type":"Role","_key":"94276","_from":"7677","_to":"55521"} +{"$label":"ACTS_IN","name":"Pitka","type":"Role","_key":"88482","_from":"7677","_to":"52448"} +{"$label":"ACTS_IN","name":"The Cat","type":"Role","_key":"64273","_from":"7677","_to":"40080"} +{"$label":"ACTS_IN","name":"Charlie Mackenzie","type":"Role","_key":"63376","_from":"7677","_to":"39714"} +{"$label":"ACTS_IN","name":"Shrek (voice)","type":"Role","_key":"61584","_from":"7677","_to":"38823"} +{"$label":"ACTS_IN","name":"Wayne Campbell","type":"Role","_key":"51203","_from":"7677","_to":"33394"} +{"$label":"ACTS_IN","name":"Wayne Campbell","type":"Role","_key":"51196","_from":"7677","_to":"33391"} +{"$label":"ACTS_IN","name":"Keith Moon","type":"Role","_key":"39295","_from":"7677","_to":"26575"} +{"$label":"ACTS_IN","name":"Steve Rubell","type":"Role","_key":"28462","_from":"7677","_to":"20352"} +{"$label":"ACTS_IN","name":"Austin Powers","type":"Role","_key":"16574","_from":"7677","_to":"12521"} +{"$label":"ACTS_IN","name":"Fat Bastard","type":"Role","_key":"9634","_from":"7677","_to":"7752"} +{"$label":"ACTS_IN","name":"Fat Bastard","type":"Role","_key":"9623","_from":"7677","_to":"7750"} +{"$label":"ACTS_IN","name":"Austin Powers \/ Dr. Evil","type":"Role","_key":"9612","_from":"7677","_to":"7742"} +{"$label":"ACTS_IN","name":"Shrek (voice)","type":"Role","_key":"9542","_from":"7677","_to":"7689"} +{"$label":"ACTS_IN","name":"Shrek (voice)","type":"Role","_key":"9529","_from":"7677","_to":"7683"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"108772","_from":"7678","_to":"64298"} +{"$label":"ACTS_IN","name":"John Valentine","type":"Role","_key":"103921","_from":"7678","_to":"61126"} +{"$label":"ACTS_IN","name":"B.Z.","type":"Role","_key":"96220","_from":"7678","_to":"56557"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"71249","_from":"7678","_to":"43228"} +{"$label":"ACTS_IN","name":"Lord John Whorfin","type":"Role","_key":"69503","_from":"7678","_to":"42461"} +{"$label":"ACTS_IN","name":"Roberta Muldoon","type":"Role","_key":"69051","_from":"7678","_to":"42265"} +{"$label":"ACTS_IN","name":"Alfred Seguine Kinsey","type":"Role","_key":"68391","_from":"7678","_to":"41964"} +{"$label":"ACTS_IN","name":"Sam Burns","type":"Role","_key":"67558","_from":"7678","_to":"41594"} +{"$label":"ACTS_IN","name":"Blake Edwards","type":"Role","_key":"64500","_from":"7678","_to":"40184"} +{"$label":"ACTS_IN","name":"Smith Keen","type":"Role","_key":"58329","_from":"7678","_to":"36873"} +{"$label":"ACTS_IN","name":"Earl Talbott Blake","type":"Role","_key":"54591","_from":"7678","_to":"34975"} +{"$label":"ACTS_IN","name":"Eric Qualen","type":"Role","_key":"53291","_from":"7678","_to":"34457"} +{"$label":"ACTS_IN","name":"George Henderson","type":"Role","_key":"51865","_from":"7678","_to":"33836"} +{"$label":"ACTS_IN","name":"Joe Huxley","type":"Role","_key":"45700","_from":"7678","_to":"30247"} +{"$label":"ACTS_IN","name":"Robert Lasalle","type":"Role","_key":"33930","_from":"7678","_to":"23362"} +{"$label":"ACTS_IN","name":"Dr. Walter Curnow","type":"Role","_key":"31711","_from":"7678","_to":"22131"} +{"$label":"ACTS_IN","name":"Reverend Shaw Moore","type":"Role","_key":"15532","_from":"7678","_to":"11863"} +{"$label":"ACTS_IN","name":"Tigger","type":"Role","_key":"110635","_from":"7681","_to":"65362"} +{"$label":"ACTS_IN","name":"Winnie The Pooh \/ Tigger (voice)","type":"Role","_key":"109071","_from":"7681","_to":"64447"} +{"$label":"ACTS_IN","name":"Winnie The Pooh (voice)","type":"Role","_key":"105316","_from":"7681","_to":"61972"} +{"$label":"ACTS_IN","name":"Pete (voice)","type":"Role","_key":"105306","_from":"7681","_to":"61968"} +{"$label":"ACTS_IN","name":"Winnie the Pooh (voice)","type":"Role","_key":"102392","_from":"7681","_to":"60253"} +{"$label":"ACTS_IN","name":"Pooh\/Tigger (voice)","type":"Role","_key":"102309","_from":"7681","_to":"60199"} +{"$label":"ACTS_IN","name":"Butch (Voice)","type":"Role","_key":"101778","_from":"7681","_to":"59895"} +{"$label":"ACTS_IN","name":"King James","type":"Role","_key":"96203","_from":"7681","_to":"56549"} +{"$label":"ACTS_IN","name":"Tigger (voice)","type":"Role","_key":"95858","_from":"7681","_to":"56376"} +{"$label":"ACTS_IN","name":"Captain Mathius \/ Farum (voice)","type":"Role","_key":"93342","_from":"7681","_to":"54987"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"61651","_from":"7681","_to":"38843"} +{"$label":"ACTS_IN","name":"Bering \/ Chilkoot","type":"Role","_key":"59405","_from":"7681","_to":"37525"} +{"$label":"ACTS_IN","name":"Waylon \/ Floyd","type":"Role","_key":"58369","_from":"7681","_to":"36888"} +{"$label":"ACTS_IN","name":"El Capit\u00e1n","type":"Role","_key":"15402","_from":"7681","_to":"11779"} +{"$label":"ACTS_IN","name":"Razoul, the Head Palace Guard (voice)","type":"Role","_key":"9572","_from":"7681","_to":"7702"} +{"$label":"ACTS_IN","name":"Piggy","type":"Role","_key":"95966","_from":"7682","_to":"56425"} +{"$label":"ACTS_IN","name":"Blind Mouse (voice)","type":"Role","_key":"9539","_from":"7688","_to":"7683"} +{"$label":"ACTS_IN","name":"Gingerbread Man\/Cedric\/Announcer\/Muffin Man\/Mongo (voice)","type":"Role","_key":"9538","_from":"7685","_to":"7683"} +{"$label":"ACTS_IN","name":"Pinocchio\/Three Pigs (voice)","type":"Role","_key":"9537","_from":"7687","_to":"7683"} +{"$label":"ACTS_IN","name":"Fairy Godmother (voice)","type":"Role","_key":"9536","_from":"7686","_to":"7683"} +{"$label":"DIRECTED","_key":"9528","_from":"7685","_to":"7683"} +{"$label":"DIRECTED","_key":"9527","_from":"7684","_to":"7683"} +{"$label":"DIRECTED","_key":"52073","_from":"7684","_to":"33949"} +{"$label":"DIRECTED","_key":"104771","_from":"7685","_to":"61645"} +{"$label":"ACTS_IN","name":"Gingerbread Man (voice)","type":"Role","_key":"94284","_from":"7685","_to":"55521"} +{"$label":"ACTS_IN","name":"Miss Spink (voice)","type":"Role","_key":"101976","_from":"7686","_to":"60008"} +{"$label":"ACTS_IN","name":"Mrs. Bluveridge","type":"Role","_key":"66406","_from":"7686","_to":"41066"} +{"$label":"ACTS_IN","name":"Three Pigs (voice)","type":"Role","_key":"94280","_from":"7687","_to":"55521"} +{"$label":"ACTS_IN","name":"Mr. Weenie (voice)","type":"Role","_key":"46861","_from":"7687","_to":"30900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96527","_from":"7688","_to":"56725"} +{"$label":"ACTS_IN","name":"Blind Mice (voice)","type":"Role","_key":"94282","_from":"7688","_to":"55521"} +{"$label":"ACTS_IN","name":"Private","type":"Role","_key":"62097","_from":"7688","_to":"39107"} +{"$label":"ACTS_IN","name":"Prince Artie (voice)","type":"Role","_key":"9551","_from":"7693","_to":"7689"} +{"$label":"ACTS_IN","name":"Cinderella (voice)","type":"Role","_key":"9550","_from":"7692","_to":"7689"} +{"$label":"DIRECTED","_key":"9541","_from":"7691","_to":"7689"} +{"$label":"DIRECTED","_key":"9540","_from":"7690","_to":"7689"} +{"$label":"ACTS_IN","name":"Kowalski","type":"Role","_key":"62096","_from":"7691","_to":"39107"} +{"$label":"ACTS_IN","name":"Toni Lesnicky","type":"Role","_key":"121701","_from":"7692","_to":"71494"} +{"$label":"ACTS_IN","name":"Jerri Blank","type":"Role","_key":"92869","_from":"7692","_to":"54784"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65236","_from":"7692","_to":"40502"} +{"$label":"ACTS_IN","name":"Foxy Loxy","type":"Role","_key":"58935","_from":"7692","_to":"37214"} +{"$label":"ACTS_IN","name":"Jacques \"Le Coq\" Grande","type":"Role","_key":"88484","_from":"7693","_to":"52448"} +{"$label":"ACTS_IN","name":"Josh Pollack","type":"Role","_key":"60123","_from":"7693","_to":"37937"} +{"$label":"ACTS_IN","name":"Ronnie Morgan","type":"Role","_key":"47493","_from":"7693","_to":"31289"} +{"$label":"ACTS_IN","name":"Frankie Ballenbacher","type":"Role","_key":"46765","_from":"7693","_to":"30852"} +{"$label":"ACTS_IN","name":"Private Pilot Abilene","type":"Role","_key":"33644","_from":"7693","_to":"23230"} +{"$label":"ACTS_IN","name":"Drone 1\/Dewey","type":"Role","_key":"9559","_from":"7701","_to":"7694"} +{"$label":"ACTS_IN","name":"Drone 2\/Huey","type":"Role","_key":"9558","_from":"7700","_to":"7694"} +{"$label":"ACTS_IN","name":"Drone","type":"Role","_key":"9557","_from":"7699","_to":"7694"} +{"$label":"ACTS_IN","name":"Andy Wolf","type":"Role","_key":"9556","_from":"7698","_to":"7694"} +{"$label":"ACTS_IN","name":"Marty Barker","type":"Role","_key":"9555","_from":"7697","_to":"7694"} +{"$label":"ACTS_IN","name":"John Keenan","type":"Role","_key":"9554","_from":"7696","_to":"7694"} +{"$label":"DIRECTED","_key":"9552","_from":"7695","_to":"7694"} +{"$label":"DIRECTED","_key":"102945","_from":"7695","_to":"60558"} +{"$label":"ACTS_IN","name":"T.V. Floor Manager","type":"Role","_key":"109543","_from":"7697","_to":"64702"} +{"$label":"ACTS_IN","name":"Judge Marty Davis","type":"Role","_key":"98944","_from":"7697","_to":"58292"} +{"$label":"ACTS_IN","name":"Kevin Bannerman","type":"Role","_key":"67795","_from":"7697","_to":"41672"} +{"$label":"ACTS_IN","name":"Charlie Dickinson","type":"Role","_key":"59990","_from":"7697","_to":"37868"} +{"$label":"ACTS_IN","name":"Dr. Waterson","type":"Role","_key":"55560","_from":"7697","_to":"35381"} +{"$label":"ACTS_IN","name":"Cdr. Grant Frost","type":"Role","_key":"55162","_from":"7697","_to":"35201"} +{"$label":"ACTS_IN","name":"Larry Friedman","type":"Role","_key":"35208","_from":"7697","_to":"23984"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"111405","_from":"7698","_to":"65780"} +{"$label":"ACTS_IN","name":"Princess Jasmine (singing voice)","type":"Role","_key":"9571","_from":"7713","_to":"7702"} +{"$label":"ACTS_IN","name":"Aladdin 'Al' (singing voice)","type":"Role","_key":"9570","_from":"7712","_to":"7702"} +{"$label":"ACTS_IN","name":"Merchant (singing voice)","type":"Role","_key":"9569","_from":"7711","_to":"7702"} +{"$label":"ACTS_IN","name":"Sultan of Agrabah (voice)","type":"Role","_key":"9568","_from":"7710","_to":"7702"} +{"$label":"ACTS_IN","name":"Iago the Parrot (voice)","type":"Role","_key":"9567","_from":"7709","_to":"7702"} +{"$label":"ACTS_IN","name":"Abu the Monkey (voice)","type":"Role","_key":"9566","_from":"7708","_to":"7702"} +{"$label":"ACTS_IN","name":"Grand Vizier Jafar (voice)","type":"Role","_key":"9565","_from":"7707","_to":"7702"} +{"$label":"ACTS_IN","name":"Princess Jasmine (voice)","type":"Role","_key":"9564","_from":"7706","_to":"7702"} +{"$label":"ACTS_IN","name":"Prince Ali Ababwa (voice)","type":"Role","_key":"9562","_from":"7705","_to":"7702"} +{"$label":"DIRECTED","_key":"9561","_from":"7704","_to":"7702"} +{"$label":"DIRECTED","_key":"9560","_from":"7703","_to":"7702"} +{"$label":"DIRECTED","_key":"73062","_from":"7703","_to":"43964"} +{"$label":"DIRECTED","_key":"61644","_from":"7703","_to":"38843"} +{"$label":"DIRECTED","_key":"61216","_from":"7703","_to":"38669"} +{"$label":"DIRECTED","_key":"59151","_from":"7703","_to":"37343"} +{"$label":"DIRECTED","_key":"52028","_from":"7703","_to":"33920"} +{"$label":"DIRECTED","_key":"73061","_from":"7704","_to":"43964"} +{"$label":"DIRECTED","_key":"61645","_from":"7704","_to":"38843"} +{"$label":"DIRECTED","_key":"61217","_from":"7704","_to":"38669"} +{"$label":"DIRECTED","_key":"59154","_from":"7704","_to":"37343"} +{"$label":"DIRECTED","_key":"52029","_from":"7704","_to":"33920"} +{"$label":"ACTS_IN","name":"Aladdin (voice)","type":"Role","_key":"106507","_from":"7705","_to":"62753"} +{"$label":"ACTS_IN","name":"Aladdin (voice)","type":"Role","_key":"68734","_from":"7705","_to":"42116"} +{"$label":"ACTS_IN","name":"Annette","type":"Role","_key":"117825","_from":"7706","_to":"69258"} +{"$label":"ACTS_IN","name":"Princess Jasmine","type":"Role","_key":"106508","_from":"7706","_to":"62753"} +{"$label":"ACTS_IN","name":"Princess Jasmine (voice)","type":"Role","_key":"68735","_from":"7706","_to":"42116"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"15806","_from":"7706","_to":"12033"} +{"$label":"ACTS_IN","name":"Red Genie: Jafar (voice)","type":"Role","_key":"106510","_from":"7707","_to":"62753"} +{"$label":"ACTS_IN","name":"Garfield","type":"Role","_key":"120267","_from":"7708","_to":"70622"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"113628","_from":"7708","_to":"66966"} +{"$label":"ACTS_IN","name":"Fred \/ Scooby-Doo (voice)","type":"Role","_key":"109047","_from":"7708","_to":"64441"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"105147","_from":"7708","_to":"61873"} +{"$label":"ACTS_IN","name":"Jerry (Voice)","type":"Role","_key":"101776","_from":"7708","_to":"59895"} +{"$label":"ACTS_IN","name":"Scooby-Doo \/ Fred (voice)","type":"Role","_key":"94094","_from":"7708","_to":"55405"} +{"$label":"ACTS_IN","name":"Scooby-Doo \/ Fred \/ Lachlan Haggart","type":"Role","_key":"91889","_from":"7708","_to":"54212"} +{"$label":"ACTS_IN","name":"Cri-Kee","type":"Role","_key":"88984","_from":"7708","_to":"52708"} +{"$label":"ACTS_IN","name":"Joanna (voice)","type":"Role","_key":"68097","_from":"7708","_to":"41826"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"58819","_from":"7708","_to":"37148"} +{"$label":"ACTS_IN","name":"Spindle \/ Frog \/ Caterpillar","type":"Role","_key":"57845","_from":"7708","_to":"36606"} +{"$label":"ACTS_IN","name":"Parrot Noises (voice)","type":"Role","_key":"51471","_from":"7708","_to":"33562"} +{"$label":"ACTS_IN","name":"Dagwood Bumstead ( Voice )","type":"Role","_key":"29639","_from":"7708","_to":"20979"} +{"$label":"ACTS_IN","name":"The Monster ( voice )","type":"Role","_key":"26207","_from":"7708","_to":"18824"} +{"$label":"ACTS_IN","name":"Iago the Parrot (voice)","type":"Role","_key":"68737","_from":"7709","_to":"42116"} +{"$label":"ACTS_IN","name":"Mr. Peabody","type":"Role","_key":"67737","_from":"7709","_to":"41649"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"53324","_from":"7709","_to":"34476"} +{"$label":"ACTS_IN","name":"Krebbs (voice)","type":"Role","_key":"68096","_from":"7710","_to":"41826"} +{"$label":"ACTS_IN","name":"Mulan (singing voice)","type":"Role","_key":"64974","_from":"7713","_to":"40383"} +{"$label":"DIRECTED","_key":"9586","_from":"7722","_to":"7714"} +{"$label":"DIRECTED","_key":"9585","_from":"7720","_to":"7714"} +{"$label":"ACTS_IN","name":"Victor Basta","type":"Role","_key":"9583","_from":"7721","_to":"7714"} +{"$label":"ACTS_IN","name":"Religious zealot #6","type":"Role","_key":"9582","_from":"7720","_to":"7714"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"9581","_from":"7719","_to":"7714"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"9579","_from":"7718","_to":"7714"} +{"$label":"ACTS_IN","name":"Murdock","type":"Role","_key":"9575","_from":"7717","_to":"7714"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"9574","_from":"7716","_to":"7714"} +{"$label":"ACTS_IN","name":"Ted Striker","type":"Role","_key":"9573","_from":"7715","_to":"7714"} +{"$label":"ACTS_IN","name":"Johnny Norris","type":"Role","_key":"64030","_from":"7715","_to":"39968"} +{"$label":"ACTS_IN","name":"Eric Ferrier","type":"Role","_key":"32680","_from":"7715","_to":"22701"} +{"$label":"ACTS_IN","name":"Ted Striker","type":"Role","_key":"22571","_from":"7715","_to":"16390"} +{"$label":"ACTS_IN","name":"Julie Brody","type":"Role","_key":"93096","_from":"7716","_to":"54874"} +{"$label":"ACTS_IN","name":"Liza","type":"Role","_key":"88781","_from":"7716","_to":"52605"} +{"$label":"ACTS_IN","name":"Fay Marvin","type":"Role","_key":"62336","_from":"7716","_to":"39279"} +{"$label":"ACTS_IN","name":"Carol Brander","type":"Role","_key":"59705","_from":"7716","_to":"37702"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"55325","_from":"7716","_to":"35273"} +{"$label":"ACTS_IN","name":"Dulcy","type":"Role","_key":"48860","_from":"7716","_to":"32041"} +{"$label":"ACTS_IN","name":"Elaine Dickinson","type":"Role","_key":"22572","_from":"7716","_to":"16390"} +{"$label":"ACTS_IN","name":"Monster Shouter","type":"Role","_key":"94988","_from":"7717","_to":"55928"} +{"$label":"ACTS_IN","name":"Hakim","type":"Role","_key":"93947","_from":"7717","_to":"55322"} +{"$label":"DIRECTED","_key":"91175","_from":"7720","_to":"53776"} +{"$label":"DIRECTED","_key":"88322","_from":"7720","_to":"52377"} +{"$label":"DIRECTED","_key":"57324","_from":"7720","_to":"36353"} +{"$label":"DIRECTED","_key":"54921","_from":"7720","_to":"35117"} +{"$label":"DIRECTED","_key":"52616","_from":"7720","_to":"34186"} +{"$label":"DIRECTED","_key":"50705","_from":"7720","_to":"33102"} +{"$label":"DIRECTED","_key":"98114","_from":"7722","_to":"57766"} +{"$label":"DIRECTED","_key":"88321","_from":"7722","_to":"52377"} +{"$label":"DIRECTED","_key":"50706","_from":"7722","_to":"33102"} +{"$label":"DIRECTED","_key":"30584","_from":"7722","_to":"21494"} +{"$label":"DIRECTED","_key":"30572","_from":"7722","_to":"21490"} +{"$label":"DIRECTED","_key":"30563","_from":"7722","_to":"21488"} +{"$label":"DIRECTED","_key":"30552","_from":"7722","_to":"21485"} +{"$label":"DIRECTED","_key":"23840","_from":"7722","_to":"17282"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"70977","_from":"7722","_to":"43107"} +{"$label":"ACTS_IN","name":"Nurse Susan Gallagher","type":"Role","_key":"9600","_from":"7733","_to":"7723"} +{"$label":"ACTS_IN","name":"First Werewolf","type":"Role","_key":"9599","_from":"7732","_to":"7723"} +{"$label":"ACTS_IN","name":"2nd Dart Player","type":"Role","_key":"9598","_from":"7731","_to":"7723"} +{"$label":"ACTS_IN","name":"2nd Chess Player","type":"Role","_key":"9597","_from":"7730","_to":"7723"} +{"$label":"ACTS_IN","name":"Chess Player","type":"Role","_key":"9596","_from":"7729","_to":"7723"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"9594","_from":"7728","_to":"7723"} +{"$label":"ACTS_IN","name":"Barmaid","type":"Role","_key":"9593","_from":"7727","_to":"7723"} +{"$label":"ACTS_IN","name":"Dr. J. S. Hirsch","type":"Role","_key":"9592","_from":"7726","_to":"7723"} +{"$label":"ACTS_IN","name":"Nurse Alex Price","type":"Role","_key":"9590","_from":"7725","_to":"7723"} +{"$label":"ACTS_IN","name":"David Kessler","type":"Role","_key":"9589","_from":"7724","_to":"7723"} +{"$label":"ACTS_IN","name":"Adam Larson - Yellow Team Leader","type":"Role","_key":"114547","_from":"7724","_to":"67478"} +{"$label":"ACTS_IN","name":"Guinevere \/ Mary Fenton","type":"Role","_key":"117383","_from":"7725","_to":"69039"} +{"$label":"ACTS_IN","name":"Clara Dollmann","type":"Role","_key":"71786","_from":"7725","_to":"43448"} +{"$label":"ACTS_IN","name":"Molly Prior","type":"Role","_key":"69465","_from":"7725","_to":"42443"} +{"$label":"ACTS_IN","name":"Joanne Simpson","type":"Role","_key":"68404","_from":"7725","_to":"41966"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"65899","_from":"7725","_to":"40770"} +{"$label":"ACTS_IN","name":"Louise de La Valli\u00e8re","type":"Role","_key":"30056","_from":"7725","_to":"21198"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"16632","_from":"7725","_to":"12559"} +{"$label":"ACTS_IN","name":"Admiral Croft","type":"Role","_key":"110896","_from":"7726","_to":"65506"} +{"$label":"ACTS_IN","name":"Amorous Boy's Father","type":"Role","_key":"72680","_from":"7729","_to":"43799"} +{"$label":"ACTS_IN","name":"Andrews","type":"Role","_key":"48112","_from":"7729","_to":"31620"} +{"$label":"ACTS_IN","name":"Castle Hechman","type":"Role","_key":"20170","_from":"7729","_to":"14795"} +{"$label":"ACTS_IN","name":"The Sultan","type":"Role","_key":"121023","_from":"7730","_to":"71078"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"63582","_from":"7730","_to":"39786"} +{"$label":"ACTS_IN","name":"Drop Dead Fred","type":"Role","_key":"62898","_from":"7730","_to":"39513"} +{"$label":"ACTS_IN","name":"Greg Dubois","type":"Role","_key":"20619","_from":"7730","_to":"15083"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"9611","_from":"7741","_to":"7734"} +{"$label":"ACTS_IN","name":"Farmer Pilkington","type":"Role","_key":"9610","_from":"7740","_to":"7734"} +{"$label":"ACTS_IN","name":"Old Major (voice)","type":"Role","_key":"9609","_from":"7739","_to":"7734"} +{"$label":"ACTS_IN","name":"Boxer (voice)","type":"Role","_key":"9607","_from":"7738","_to":"7734"} +{"$label":"ACTS_IN","name":"Jessie (voice)","type":"Role","_key":"9605","_from":"7737","_to":"7734"} +{"$label":"ACTS_IN","name":"Mollie (voice)","type":"Role","_key":"9604","_from":"7736","_to":"7734"} +{"$label":"DIRECTED","_key":"9601","_from":"7735","_to":"7734"} +{"$label":"DIRECTED","_key":"110096","_from":"7735","_to":"65055"} +{"$label":"ACTS_IN","name":"Dori\/Great Goblin\/Bard","type":"Role","_key":"12591","_from":"7735","_to":"9845"} +{"$label":"ACTS_IN","name":"Carrie Lawrence","type":"Role","_key":"89901","_from":"7736","_to":"53201"} +{"$label":"ACTS_IN","name":"Lisa Stimson","type":"Role","_key":"89185","_from":"7736","_to":"52820"} +{"$label":"ACTS_IN","name":"Atta (voice)","type":"Role","_key":"54188","_from":"7736","_to":"34813"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"36079","_from":"7736","_to":"24486"} +{"$label":"ACTS_IN","name":"Jane Callahan","type":"Role","_key":"115415","_from":"7737","_to":"67961"} +{"$label":"ACTS_IN","name":"Sabrina Fairchild","type":"Role","_key":"72428","_from":"7737","_to":"43719"} +{"$label":"ACTS_IN","name":"Elisabeth Anderson","type":"Role","_key":"66560","_from":"7737","_to":"41149"} +{"$label":"ACTS_IN","name":"Smilla Jasperson","type":"Role","_key":"53040","_from":"7737","_to":"34339"} +{"$label":"ACTS_IN","name":"Lisa Howard","type":"Role","_key":"51248","_from":"7737","_to":"33420"} +{"$label":"ACTS_IN","name":"Mrs. Kittredge","type":"Role","_key":"49302","_from":"7737","_to":"32288"} +{"$label":"ACTS_IN","name":"Guinevere","type":"Role","_key":"43870","_from":"7737","_to":"29295"} +{"$label":"ACTS_IN","name":"Susan Fleming","type":"Role","_key":"39898","_from":"7737","_to":"26959"} +{"$label":"ACTS_IN","name":"The Daughter","type":"Role","_key":"35665","_from":"7737","_to":"24239"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"34783","_from":"7737","_to":"23771"} +{"$label":"ACTS_IN","name":"Susannah Fincannon Ludlow","type":"Role","_key":"31968","_from":"7737","_to":"22291"} +{"$label":"ACTS_IN","name":"Doris Side","type":"Role","_key":"15309","_from":"7737","_to":"11713"} +{"$label":"ACTS_IN","name":"Mark Van Doren","type":"Role","_key":"69935","_from":"7738","_to":"42673"} +{"$label":"ACTS_IN","name":"French King","type":"Role","_key":"65154","_from":"7738","_to":"40473"} +{"$label":"ACTS_IN","name":"The Ghost","type":"Role","_key":"62146","_from":"7738","_to":"39139"} +{"$label":"ACTS_IN","name":"von Waldheim","type":"Role","_key":"27384","_from":"7738","_to":"19677"} +{"$label":"ACTS_IN","name":"Der alte Mann","type":"Role","_key":"22893","_from":"7738","_to":"16600"} +{"$label":"ACTS_IN","name":"Dr. Vaclav Orlik","type":"Role","_key":"19770","_from":"7738","_to":"14601"} +{"$label":"ACTS_IN","name":"Thomas Morus","type":"Role","_key":"10392","_from":"7738","_to":"8270"} +{"$label":"ACTS_IN","name":"Captain Blackbeard","type":"Role","_key":"108339","_from":"7739","_to":"64045"} +{"$label":"ACTS_IN","name":"Prince John","type":"Role","_key":"72542","_from":"7739","_to":"43753"} +{"$label":"ACTS_IN","name":"Nero","type":"Role","_key":"71097","_from":"7739","_to":"43162"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41702","_from":"7739","_to":"27984"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41673","_from":"7739","_to":"27972"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41647","_from":"7739","_to":"27954"} +{"$label":"ACTS_IN","name":"Hercuele Poirot","type":"Role","_key":"41627","_from":"7739","_to":"27947"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41609","_from":"7739","_to":"27940"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"40964","_from":"7739","_to":"27561"} +{"$label":"ACTS_IN","name":"Frederick","type":"Role","_key":"38407","_from":"7739","_to":"25944"} +{"$label":"ACTS_IN","name":"Edwin Fairfax Vere","type":"Role","_key":"37060","_from":"7739","_to":"25120"} +{"$label":"ACTS_IN","name":"Arthur Simon Simpson","type":"Role","_key":"35671","_from":"7739","_to":"24241"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"30735","_from":"7739","_to":"21548"} +{"$label":"ACTS_IN","name":"Vicomte de Mirabeau","type":"Role","_key":"30215","_from":"7739","_to":"21284"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"29989","_from":"7739","_to":"21171"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"29974","_from":"7739","_to":"21170"} +{"$label":"ACTS_IN","name":"Herodes der Gro\u00dfe","type":"Role","_key":"21146","_from":"7739","_to":"15473"} +{"$label":"ACTS_IN","name":"Grandad James Shannon","type":"Role","_key":"17566","_from":"7739","_to":"13126"} +{"$label":"ACTS_IN","name":"Professor Nikolais","type":"Role","_key":"17433","_from":"7739","_to":"13031"} +{"$label":"ACTS_IN","name":"Lentulus Batiatus","type":"Role","_key":"11497","_from":"7739","_to":"9041"} +{"$label":"DIRECTED","_key":"37071","_from":"7739","_to":"25120"} +{"$label":"ACTS_IN","name":"Patty O'Brien","type":"Role","_key":"9619","_from":"7749","_to":"7742"} +{"$label":"ACTS_IN","name":"Frau Farbissina","type":"Role","_key":"9618","_from":"7748","_to":"7742"} +{"$label":"ACTS_IN","name":"Alotta Fagina","type":"Role","_key":"9617","_from":"7747","_to":"7742"} +{"$label":"ACTS_IN","name":"Scott Evil","type":"Role","_key":"9616","_from":"7746","_to":"7742"} +{"$label":"ACTS_IN","name":"Mrs. Kensington","type":"Role","_key":"9615","_from":"7745","_to":"7742"} +{"$label":"ACTS_IN","name":"Basil Exposition","type":"Role","_key":"9614","_from":"7744","_to":"7742"} +{"$label":"ACTS_IN","name":"Vanessa Kensington","type":"Role","_key":"9613","_from":"7743","_to":"7742"} +{"$label":"ACTS_IN","name":"Dr. Ann Beamer","type":"Role","_key":"99977","_from":"7743","_to":"58990"} +{"$label":"ACTS_IN","name":"Adaline Gunne","type":"Role","_key":"95047","_from":"7743","_to":"55951"} +{"$label":"ACTS_IN","name":"Sara Moore","type":"Role","_key":"91435","_from":"7743","_to":"53928"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"90765","_from":"7743","_to":"53569"} +{"$label":"ACTS_IN","name":"Brace Channing","type":"Role","_key":"57467","_from":"7743","_to":"36425"} +{"$label":"ACTS_IN","name":"The Devil","type":"Role","_key":"14490","_from":"7743","_to":"11191"} +{"$label":"ACTS_IN","name":"Vanessa Kensington","type":"Role","_key":"9631","_from":"7743","_to":"7750"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"89244","_from":"7744","_to":"52844"} +{"$label":"ACTS_IN","name":"Charles Carruthers","type":"Role","_key":"71785","_from":"7744","_to":"43448"} +{"$label":"ACTS_IN","name":"Logan","type":"Role","_key":"65897","_from":"7744","_to":"40770"} +{"$label":"ACTS_IN","name":"Brian Roberts","type":"Role","_key":"65771","_from":"7744","_to":"40710"} +{"$label":"ACTS_IN","name":"Hibbing Goodhue","type":"Role","_key":"53734","_from":"7744","_to":"34643"} +{"$label":"ACTS_IN","name":"Tybalt","type":"Role","_key":"41039","_from":"7744","_to":"27609"} +{"$label":"ACTS_IN","name":"Count Andrenyi","type":"Role","_key":"29912","_from":"7744","_to":"21143"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"24340","_from":"7744","_to":"17626"} +{"$label":"ACTS_IN","name":"Johannes der T\u00e4ufer","type":"Role","_key":"21147","_from":"7744","_to":"15473"} +{"$label":"ACTS_IN","name":"Basil Exposition","type":"Role","_key":"9637","_from":"7744","_to":"7752"} +{"$label":"ACTS_IN","name":"Basil Exposition","type":"Role","_key":"9625","_from":"7744","_to":"7750"} +{"$label":"ACTS_IN","name":"April Saunders","type":"Role","_key":"107987","_from":"7745","_to":"63779"} +{"$label":"ACTS_IN","name":"Orianna Volkes","type":"Role","_key":"104887","_from":"7745","_to":"61709"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"95939","_from":"7745","_to":"56416"} +{"$label":"ACTS_IN","name":"Mrs. Dunne","type":"Role","_key":"61279","_from":"7745","_to":"38696"} +{"$label":"ACTS_IN","name":"Pamela Fitzgerald","type":"Role","_key":"57506","_from":"7745","_to":"36439"} +{"$label":"ACTS_IN","name":"Mrs. Smalls","type":"Role","_key":"57427","_from":"7745","_to":"36404"} +{"$label":"ACTS_IN","name":"Tiffany Merteuil","type":"Role","_key":"37270","_from":"7745","_to":"25250"} +{"$label":"ACTS_IN","name":"Dr. Maureen Robinson","type":"Role","_key":"18794","_from":"7745","_to":"13892"} +{"$label":"ACTS_IN","name":"Tracy Riggs","type":"Role","_key":"18519","_from":"7745","_to":"13709"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"13046","_from":"7745","_to":"10175"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111890","_from":"7746","_to":"66047"} +{"$label":"ACTS_IN","name":"Douglas","type":"Role","_key":"111271","_from":"7746","_to":"65712"} +{"$label":"ACTS_IN","name":"Jonah \"the taper\"","type":"Role","_key":"110067","_from":"7746","_to":"65036"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"102863","_from":"7746","_to":"60510"} +{"$label":"ACTS_IN","name":"Chris Griffin","type":"Role","_key":"99041","_from":"7746","_to":"58342"} +{"$label":"ACTS_IN","name":"Ezekiel","type":"Role","_key":"95017","_from":"7746","_to":"55939"} +{"$label":"ACTS_IN","name":"Wiley","type":"Role","_key":"92281","_from":"7746","_to":"54460"} +{"$label":"ACTS_IN","name":"Chuckie Miller","type":"Role","_key":"91920","_from":"7746","_to":"54230"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"67365","_from":"7746","_to":"41514"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"65663","_from":"7746","_to":"40679"} +{"$label":"ACTS_IN","name":"Dan Mott","type":"Role","_key":"65615","_from":"7746","_to":"40653"} +{"$label":"ACTS_IN","name":"Duane Cody","type":"Role","_key":"57695","_from":"7746","_to":"36524"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"55309","_from":"7746","_to":"35264"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"49675","_from":"7746","_to":"32500"} +{"$label":"ACTS_IN","name":"Johnny Marbles","type":"Role","_key":"46899","_from":"7746","_to":"30925"} +{"$label":"ACTS_IN","name":"Chris Griffin","type":"Role","_key":"46095","_from":"7746","_to":"30453"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"44024","_from":"7746","_to":"29363"} +{"$label":"ACTS_IN","name":"Richard Tozier - Age 12","type":"Role","_key":"22652","_from":"7746","_to":"16433"} +{"$label":"ACTS_IN","name":"Scott Evil","type":"Role","_key":"16575","_from":"7746","_to":"12521"} +{"$label":"ACTS_IN","name":"James St. James","type":"Role","_key":"13084","_from":"7746","_to":"10201"} +{"$label":"ACTS_IN","name":"Scott Evil","type":"Role","_key":"9636","_from":"7746","_to":"7752"} +{"$label":"ACTS_IN","name":"Scott Evil","type":"Role","_key":"9628","_from":"7746","_to":"7750"} +{"$label":"ACTS_IN","name":"Francesca Danelli","type":"Role","_key":"114920","_from":"7747","_to":"67685"} +{"$label":"ACTS_IN","name":"Anna Bosco","type":"Role","_key":"17543","_from":"7747","_to":"13103"} +{"$label":"ACTS_IN","name":"Mrs. Applebaum","type":"Role","_key":"113760","_from":"7748","_to":"67033"} +{"$label":"ACTS_IN","name":"Cindee","type":"Role","_key":"39293","_from":"7748","_to":"26558"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"18547","_from":"7748","_to":"13724"} +{"$label":"ACTS_IN","name":"Frau Farbissina","type":"Role","_key":"9638","_from":"7748","_to":"7752"} +{"$label":"ACTS_IN","name":"Frau Farbissina","type":"Role","_key":"9629","_from":"7748","_to":"7750"} +{"$label":"ACTS_IN","name":"Snelgrave","type":"Role","_key":"13033","_from":"7749","_to":"10160"} +{"$label":"ACTS_IN","name":"Robin Spitz Swallows","type":"Role","_key":"9632","_from":"7751","_to":"7750"} +{"$label":"ACTS_IN","name":"Madelene","type":"Role","_key":"103093","_from":"7751","_to":"60638"} +{"$label":"ACTS_IN","name":"Liz Holt","type":"Role","_key":"63066","_from":"7751","_to":"39571"} +{"$label":"ACTS_IN","name":"Alice Graham","type":"Role","_key":"60902","_from":"7751","_to":"38475"} +{"$label":"ACTS_IN","name":"Cousin Nikki","type":"Role","_key":"49201","_from":"7751","_to":"32232"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"33101","_from":"7751","_to":"22931"} +{"$label":"ACTS_IN","name":"Fook Yu","type":"Role","_key":"9643","_from":"7755","_to":"7752"} +{"$label":"ACTS_IN","name":"Fook Mi","type":"Role","_key":"9642","_from":"7754","_to":"7752"} +{"$label":"ACTS_IN","name":"Foxxy Cleopatra","type":"Role","_key":"9635","_from":"7753","_to":"7752"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120589","_from":"7753","_to":"70825"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"116961","_from":"7753","_to":"68850"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"115200","_from":"7753","_to":"67844"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"111916","_from":"7753","_to":"66069"} +{"$label":"ACTS_IN","name":"Etta James","type":"Role","_key":"99523","_from":"7753","_to":"58668"} +{"$label":"ACTS_IN","name":"Xania","type":"Role","_key":"87999","_from":"7753","_to":"52246"} +{"$label":"ACTS_IN","name":"Deena Jones","type":"Role","_key":"12054","_from":"7753","_to":"9446"} +{"$label":"ACTS_IN","name":"Sister Carolyn","type":"Role","_key":"9659","_from":"7762","_to":"7756"} +{"$label":"ACTS_IN","name":"Ralph Ferguson","type":"Role","_key":"9657","_from":"7761","_to":"7756"} +{"$label":"ACTS_IN","name":"Young John Reilly","type":"Role","_key":"9656","_from":"7760","_to":"7756"} +{"$label":"ACTS_IN","name":"Lorenzo 'Shakes' Carcaterra","type":"Role","_key":"9655","_from":"7759","_to":"7756"} +{"$label":"ACTS_IN","name":"John Reilly","type":"Role","_key":"9654","_from":"7758","_to":"7756"} +{"$label":"ACTS_IN","name":"King Benny","type":"Role","_key":"9651","_from":"7757","_to":"7756"} +{"$label":"ACTS_IN","name":"Anatol Kuragin","type":"Role","_key":"71679","_from":"7757","_to":"43395"} +{"$label":"ACTS_IN","name":"Mario Beretti","type":"Role","_key":"24874","_from":"7757","_to":"17986"} +{"$label":"ACTS_IN","name":"Terach","type":"Role","_key":"22849","_from":"7757","_to":"16575"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"112255","_from":"7758","_to":"66291"} +{"$label":"ACTS_IN","name":"Daniel Stone","type":"Role","_key":"111655","_from":"7758","_to":"65920"} +{"$label":"ACTS_IN","name":"'Skank' Marden","type":"Role","_key":"103565","_from":"7758","_to":"60910"} +{"$label":"ACTS_IN","name":"Thomas Archer","type":"Role","_key":"98520","_from":"7758","_to":"58062"} +{"$label":"ACTS_IN","name":"Manning","type":"Role","_key":"97567","_from":"7758","_to":"57454"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"90025","_from":"7758","_to":"53253"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"67837","_from":"7758","_to":"41689"} +{"$label":"ACTS_IN","name":"Danny Martin","type":"Role","_key":"58590","_from":"7758","_to":"37011"} +{"$label":"ACTS_IN","name":"Dodge","type":"Role","_key":"55249","_from":"7758","_to":"35238"} +{"$label":"ACTS_IN","name":"CWO Michael Durant","type":"Role","_key":"10166","_from":"7758","_to":"8112"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"117525","_from":"7759","_to":"69102"} +{"$label":"ACTS_IN","name":"Koverchenko","type":"Role","_key":"103796","_from":"7759","_to":"61053"} +{"$label":"ACTS_IN","name":"Det. Sgt. Nick Tellis","type":"Role","_key":"67350","_from":"7759","_to":"41510"} +{"$label":"ACTS_IN","name":"James Bowie","type":"Role","_key":"65323","_from":"7759","_to":"40532"} +{"$label":"ACTS_IN","name":"Lieutenant Kirklander","type":"Role","_key":"45506","_from":"7759","_to":"30141"} +{"$label":"ACTS_IN","name":"Lord Byron","type":"Role","_key":"25454","_from":"7759","_to":"18356"} +{"$label":"ACTS_IN","name":"Alex Shaw","type":"Role","_key":"14512","_from":"7759","_to":"11198"} +{"$label":"ACTS_IN","name":"Michael Emerson","type":"Role","_key":"13692","_from":"7759","_to":"10632"} +{"$label":"ACTS_IN","name":"David Alden","type":"Role","_key":"67732","_from":"7761","_to":"41647"} +{"$label":"ACTS_IN","name":"Roy Johnson","type":"Role","_key":"57097","_from":"7761","_to":"36232"} +{"$label":"ACTS_IN","name":"Todd Carter","type":"Role","_key":"50108","_from":"7761","_to":"32780"} +{"$label":"ACTS_IN","name":"Steve Malone","type":"Role","_key":"33627","_from":"7761","_to":"23223"} +{"$label":"ACTS_IN","name":"Mary Ann","type":"Role","_key":"13318","_from":"7762","_to":"10364"} +{"$label":"ACTS_IN","name":"Earl Warren","type":"Role","_key":"9684","_from":"7771","_to":"7763"} +{"$label":"ACTS_IN","name":"Beverly Oliver","type":"Role","_key":"9683","_from":"7770","_to":"7763"} +{"$label":"ACTS_IN","name":"Lyndon B. Johnson","type":"Role","_key":"9682","_from":"7769","_to":"7763"} +{"$label":"ACTS_IN","name":"Abraham Zapruder","type":"Role","_key":"9680","_from":"7768","_to":"7763"} +{"$label":"ACTS_IN","name":"Guy Bannister","type":"Role","_key":"9678","_from":"7767","_to":"7763"} +{"$label":"ACTS_IN","name":"Rose Cheramie","type":"Role","_key":"9676","_from":"7766","_to":"7763"} +{"$label":"ACTS_IN","name":"Susie Cox","type":"Role","_key":"9669","_from":"7765","_to":"7763"} +{"$label":"ACTS_IN","name":"Bill Broussard","type":"Role","_key":"9667","_from":"7764","_to":"7763"} +{"$label":"ACTS_IN","name":"A.J. Mercker","type":"Role","_key":"103066","_from":"7764","_to":"60628"} +{"$label":"ACTS_IN","name":"Detective Edward Kennesaw","type":"Role","_key":"100927","_from":"7764","_to":"59495"} +{"$label":"ACTS_IN","name":"Sydney Braverman","type":"Role","_key":"100026","_from":"7764","_to":"59005"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"88319","_from":"7764","_to":"52376"} +{"$label":"ACTS_IN","name":"Stan 'Zeedo' Zedkov","type":"Role","_key":"71656","_from":"7764","_to":"43387"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"65086","_from":"7764","_to":"40434"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"64390","_from":"7764","_to":"40128"} +{"$label":"ACTS_IN","name":"Sheriff Alan Pangborn","type":"Role","_key":"62729","_from":"7764","_to":"39438"} +{"$label":"ACTS_IN","name":"Captain Howard Cheney","type":"Role","_key":"54139","_from":"7764","_to":"34789"} +{"$label":"ACTS_IN","name":"Hal Tucker","type":"Role","_key":"53292","_from":"7764","_to":"34457"} +{"$label":"ACTS_IN","name":"Robert Marshall","type":"Role","_key":"49873","_from":"7764","_to":"32650"} +{"$label":"ACTS_IN","name":"William Rice","type":"Role","_key":"48595","_from":"7764","_to":"31879"} +{"$label":"ACTS_IN","name":"Mr. Jared Svenning","type":"Role","_key":"20126","_from":"7764","_to":"14782"} +{"$label":"ACTS_IN","name":"Rowdy Burns","type":"Role","_key":"18486","_from":"7764","_to":"13689"} +{"$label":"ACTS_IN","name":"Amy Wallace","type":"Role","_key":"67626","_from":"7765","_to":"41621"} +{"$label":"ACTS_IN","name":"Sarah Hawkins","type":"Role","_key":"52024","_from":"7765","_to":"33920"} +{"$label":"ACTS_IN","name":"Leslie Glass","type":"Role","_key":"48261","_from":"7765","_to":"31702"} +{"$label":"ACTS_IN","name":"Debbie Salt","type":"Role","_key":"30286","_from":"7765","_to":"21313"} +{"$label":"ACTS_IN","name":"Stephanie MacDonald","type":"Role","_key":"24761","_from":"7765","_to":"17908"} +{"$label":"ACTS_IN","name":"Marcie Dahlgren-Frost","type":"Role","_key":"22227","_from":"7765","_to":"16185"} +{"$label":"ACTS_IN","name":"Lucille Krunklehorn (voice)","type":"Role","_key":"12388","_from":"7765","_to":"9706"} +{"$label":"ACTS_IN","name":"Andy's Mom (voice)","type":"Role","_key":"10253","_from":"7765","_to":"8168"} +{"$label":"ACTS_IN","name":"Jeanette","type":"Role","_key":"69477","_from":"7766","_to":"42449"} +{"$label":"ACTS_IN","name":"Lt. Moretti","type":"Role","_key":"117142","_from":"7767","_to":"68918"} +{"$label":"ACTS_IN","name":"Pop","type":"Role","_key":"114351","_from":"7767","_to":"67357"} +{"$label":"ACTS_IN","name":"Carl Fredricksen (voice)","type":"Role","_key":"98793","_from":"7767","_to":"58215"} +{"$label":"ACTS_IN","name":"Onkel Charlie","type":"Role","_key":"68840","_from":"7767","_to":"42175"} +{"$label":"ACTS_IN","name":"Chief Wilson","type":"Role","_key":"67823","_from":"7767","_to":"41685"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"65234","_from":"7767","_to":"40502"} +{"$label":"ACTS_IN","name":"Bart Jason","type":"Role","_key":"44553","_from":"7767","_to":"29659"} +{"$label":"ACTS_IN","name":"Sid Gluckman","type":"Role","_key":"17563","_from":"7767","_to":"13126"} +{"$label":"ACTS_IN","name":"Mary Jane Pitcher","type":"Role","_key":"103563","_from":"7770","_to":"60910"} +{"$label":"ACTS_IN","name":"Marva","type":"Role","_key":"91443","_from":"7770","_to":"53929"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"58798","_from":"7770","_to":"37140"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"53923","_from":"7770","_to":"34701"} +{"$label":"ACTS_IN","name":"Mrs. Albertson, Samatha's Mom","type":"Role","_key":"52692","_from":"7770","_to":"34207"} +{"$label":"ACTS_IN","name":"Sally Perry","type":"Role","_key":"34720","_from":"7770","_to":"23744"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"25140","_from":"7770","_to":"18160"} +{"$label":"ACTS_IN","name":"Hugo Wallner","type":"Role","_key":"9702","_from":"7786","_to":"7772"} +{"$label":"ACTS_IN","name":"Dr. Heinrich Geuter","type":"Role","_key":"9701","_from":"7785","_to":"7772"} +{"$label":"ACTS_IN","name":"Dr. Karl Wieck","type":"Role","_key":"9700","_from":"7784","_to":"7772"} +{"$label":"ACTS_IN","name":"Brig. Gen. Matt Merrin","type":"Role","_key":"9699","_from":"7783","_to":"7772"} +{"$label":"ACTS_IN","name":"Judge Kenneth Norris","type":"Role","_key":"9698","_from":"7782","_to":"7772"} +{"$label":"ACTS_IN","name":"Friedrich Hofstetter","type":"Role","_key":"9696","_from":"7781","_to":"7772"} +{"$label":"ACTS_IN","name":"Werner Lampe","type":"Role","_key":"9695","_from":"7780","_to":"7772"} +{"$label":"ACTS_IN","name":"Emil Hahn","type":"Role","_key":"9694","_from":"7779","_to":"7772"} +{"$label":"ACTS_IN","name":"Rudolph Petersen","type":"Role","_key":"9692","_from":"7778","_to":"7772"} +{"$label":"ACTS_IN","name":"Hans Rolfe","type":"Role","_key":"9690","_from":"7777","_to":"7772"} +{"$label":"ACTS_IN","name":"Col. Tad Lawson","type":"Role","_key":"9688","_from":"7776","_to":"7772"} +{"$label":"ACTS_IN","name":"Dr. Ernst Janning","type":"Role","_key":"9687","_from":"7775","_to":"7772"} +{"$label":"ACTS_IN","name":"Chief Judge Dan Haywood","type":"Role","_key":"9686","_from":"7774","_to":"7772"} +{"$label":"DIRECTED","_key":"9685","_from":"7773","_to":"7772"} +{"$label":"DIRECTED","_key":"70835","_from":"7773","_to":"43041"} +{"$label":"DIRECTED","_key":"69719","_from":"7773","_to":"42555"} +{"$label":"DIRECTED","_key":"16488","_from":"7773","_to":"12454"} +{"$label":"DIRECTED","_key":"16226","_from":"7773","_to":"12311"} +{"$label":"ACTS_IN","name":"Manuel Fidello","type":"Role","_key":"109368","_from":"7774","_to":"64615"} +{"$label":"ACTS_IN","name":"Joe Wilson","type":"Role","_key":"101109","_from":"7774","_to":"59577"} +{"$label":"ACTS_IN","name":"John J. Macreedy","type":"Role","_key":"100773","_from":"7774","_to":"59412"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"72622","_from":"7774","_to":"43773"} +{"$label":"ACTS_IN","name":"Capt. C. G. Culpepper","type":"Role","_key":"70787","_from":"7774","_to":"43041"} +{"$label":"ACTS_IN","name":"The Old Man","type":"Role","_key":"69179","_from":"7774","_to":"42309"} +{"$label":"ACTS_IN","name":"Dr. Jeckyll \/ Mr. Hyde","type":"Role","_key":"25035","_from":"7774","_to":"18088"} +{"$label":"ACTS_IN","name":"Henry Drummond","type":"Role","_key":"16482","_from":"7774","_to":"12454"} +{"$label":"ACTS_IN","name":"Matt Drayton","type":"Role","_key":"16220","_from":"7774","_to":"12311"} +{"$label":"ACTS_IN","name":"Lt. Jim Bledsoe","type":"Role","_key":"117485","_from":"7775","_to":"69086"} +{"$label":"ACTS_IN","name":"Col. Anthony Durnford","type":"Role","_key":"114791","_from":"7775","_to":"67615"} +{"$label":"ACTS_IN","name":"Michael (Mike) Davis","type":"Role","_key":"104588","_from":"7775","_to":"61524"} +{"$label":"ACTS_IN","name":"'Swede' Andersen","type":"Role","_key":"101228","_from":"7775","_to":"59623"} +{"$label":"ACTS_IN","name":"Joe Erin","type":"Role","_key":"91393","_from":"7775","_to":"53906"} +{"$label":"ACTS_IN","name":"Maxwell Danforth","type":"Role","_key":"88926","_from":"7775","_to":"52676"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"71013","_from":"7775","_to":"43129"} +{"$label":"ACTS_IN","name":"Capt. Vallo (The Crimson Pirate)","type":"Role","_key":"70735","_from":"7775","_to":"43020"} +{"$label":"ACTS_IN","name":"1st Sgt. Milton Warden","type":"Role","_key":"69789","_from":"7775","_to":"42595"} +{"$label":"ACTS_IN","name":"Felix Happer","type":"Role","_key":"68705","_from":"7775","_to":"42100"} +{"$label":"ACTS_IN","name":"Harry Doyle","type":"Role","_key":"67488","_from":"7775","_to":"41566"} +{"$label":"ACTS_IN","name":"Mel Bakersfeld","type":"Role","_key":"64954","_from":"7775","_to":"40379"} +{"$label":"ACTS_IN","name":"(in \"The Killers\") (archive footage)","type":"Role","_key":"53874","_from":"7775","_to":"34691"} +{"$label":"ACTS_IN","name":"Ben Zachary","type":"Role","_key":"44531","_from":"7775","_to":"29653"} +{"$label":"ACTS_IN","name":"Berlinghieri","type":"Role","_key":"28830","_from":"7775","_to":"20607"} +{"$label":"ACTS_IN","name":"Paul Labiche","type":"Role","_key":"27383","_from":"7775","_to":"19677"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"21867","_from":"7775","_to":"15979"} +{"$label":"ACTS_IN","name":"Doc \"Moonlight\" Graham","type":"Role","_key":"20411","_from":"7775","_to":"14937"} +{"$label":"ACTS_IN","name":"Don Fabrizio Salina","type":"Role","_key":"11821","_from":"7775","_to":"9274"} +{"$label":"ACTS_IN","name":"J.J. Hunsecker","type":"Role","_key":"11543","_from":"7775","_to":"9070"} +{"$label":"ACTS_IN","name":"Robert Stroud","type":"Role","_key":"10697","_from":"7775","_to":"8495"} +{"$label":"ACTS_IN","name":"Harry Fabian","type":"Role","_key":"118780","_from":"7776","_to":"69838"} +{"$label":"ACTS_IN","name":"Captain Eric Finlander, U.S.N.","type":"Role","_key":"113818","_from":"7776","_to":"67051"} +{"$label":"ACTS_IN","name":"Dr. Harris","type":"Role","_key":"68644","_from":"7776","_to":"42071"} +{"$label":"ACTS_IN","name":"Jim Bowie","type":"Role","_key":"68552","_from":"7776","_to":"42033"} +{"$label":"ACTS_IN","name":"Agent Hoyt","type":"Role","_key":"64948","_from":"7776","_to":"40377"} +{"$label":"ACTS_IN","name":"Daniel Madigan","type":"Role","_key":"34897","_from":"7776","_to":"23845"} +{"$label":"ACTS_IN","name":"Mr. Ratchett","type":"Role","_key":"29911","_from":"7776","_to":"21143"} +{"$label":"ACTS_IN","name":"Dieter Frey","type":"Role","_key":"101659","_from":"7777","_to":"59833"} +{"$label":"ACTS_IN","name":"Brother Jean le Maistre","type":"Role","_key":"72886","_from":"7777","_to":"43899"} +{"$label":"ACTS_IN","name":"Hauptmann Stransky","type":"Role","_key":"66099","_from":"7777","_to":"40895"} +{"$label":"ACTS_IN","name":"Kardinal Alba","type":"Role","_key":"58335","_from":"7777","_to":"36874"} +{"$label":"ACTS_IN","name":"Dr. Hans Reinhardt","type":"Role","_key":"54757","_from":"7777","_to":"35046"} +{"$label":"ACTS_IN","name":"Lawrence Sterne","type":"Role","_key":"50436","_from":"7777","_to":"32948"} +{"$label":"ACTS_IN","name":"Jason Lerner","type":"Role","_key":"50332","_from":"7777","_to":"32880"} +{"$label":"ACTS_IN","name":"Franz Steininger","type":"Role","_key":"43033","_from":"7777","_to":"28745"} +{"$label":"ACTS_IN","name":"Lt. Gen. Wilhelm Bittrich","type":"Role","_key":"40264","_from":"7777","_to":"27164"} +{"$label":"ACTS_IN","name":"Walter Harper","type":"Role","_key":"35672","_from":"7777","_to":"24241"} +{"$label":"ACTS_IN","name":"Fabrice","type":"Role","_key":"34342","_from":"7777","_to":"23558"} +{"$label":"ACTS_IN","name":"Pharao","type":"Role","_key":"22880","_from":"7777","_to":"16575"} +{"$label":"ACTS_IN","name":"Walter Ekland","type":"Role","_key":"18533","_from":"7777","_to":"13711"} +{"$label":"ACTS_IN","name":"Bunin","type":"Role","_key":"17742","_from":"7777","_to":"13233"} +{"$label":"ACTS_IN","name":"Dr. Cukrowicz","type":"Role","_key":"101478","_from":"7778","_to":"59731"} +{"$label":"ACTS_IN","name":"Perce Howland","type":"Role","_key":"70495","_from":"7778","_to":"42914"} +{"$label":"ACTS_IN","name":"Pvt. Robert E. Lee 'Prew' Prewitt","type":"Role","_key":"69790","_from":"7778","_to":"42595"} +{"$label":"ACTS_IN","name":"James Bower","type":"Role","_key":"32354","_from":"7778","_to":"22533"} +{"$label":"ACTS_IN","name":"Matthew 'Matt' Garth","type":"Role","_key":"25690","_from":"7778","_to":"18490"} +{"$label":"ACTS_IN","name":"Harold Messner","type":"Role","_key":"12816","_from":"7779","_to":"9995"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"108588","_from":"7780","_to":"64167"} +{"$label":"ACTS_IN","name":"Jaldas Gro\u00dfvater","type":"Role","_key":"37981","_from":"7781","_to":"25714"} +{"$label":"ACTS_IN","name":"Little Boy","type":"Role","_key":"111588","_from":"7783","_to":"65881"} +{"$label":"ACTS_IN","name":"'Whitey' Barrow","type":"Role","_key":"100978","_from":"7783","_to":"59510"} +{"$label":"ACTS_IN","name":"Oliver Brown","type":"Role","_key":"15208","_from":"7783","_to":"11641"} +{"$label":"ACTS_IN","name":"Hans Eckhart","type":"Role","_key":"29465","_from":"7784","_to":"20892"} +{"$label":"ACTS_IN","name":"Dred Pierce","type":"Role","_key":"116898","_from":"7785","_to":"68818"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"52430","_from":"7785","_to":"34114"} +{"$label":"ACTS_IN","name":"Lars Nordqvist","type":"Role","_key":"43897","_from":"7785","_to":"29302"} +{"$label":"ACTS_IN","name":"Ustad Ujir Khan","type":"Role","_key":"9711","_from":"7796","_to":"7787"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin Krishna Bai","type":"Role","_key":"9710","_from":"7795","_to":"7787"} +{"$label":"ACTS_IN","name":"Khoka, Roys Sohn","type":"Role","_key":"9709","_from":"7794","_to":"7787"} +{"$label":"ACTS_IN","name":"Grundst\u00fccksverwalter","type":"Role","_key":"9708","_from":"7793","_to":"7787"} +{"$label":"ACTS_IN","name":"Mahim Ganguli","type":"Role","_key":"9707","_from":"7792","_to":"7787"} +{"$label":"ACTS_IN","name":"Diener Ananta","type":"Role","_key":"9706","_from":"7791","_to":"7787"} +{"$label":"ACTS_IN","name":"Mahamaya","type":"Role","_key":"9705","_from":"7790","_to":"7787"} +{"$label":"ACTS_IN","name":"Huzur Biswambhar Roy","type":"Role","_key":"9704","_from":"7789","_to":"7787"} +{"$label":"DIRECTED","_key":"9703","_from":"7788","_to":"7787"} +{"$label":"DIRECTED","_key":"39535","_from":"7788","_to":"26713"} +{"$label":"DIRECTED","_key":"10695","_from":"7788","_to":"8483"} +{"$label":"DIRECTED","_key":"10675","_from":"7788","_to":"8475"} +{"$label":"ACTS_IN","name":"Young Apu","type":"Role","_key":"10694","_from":"7794","_to":"8483"} +{"$label":"ACTS_IN","name":"Self-Police Member (Voice)","type":"Role","_key":"9722","_from":"7808","_to":"7797"} +{"$label":"ACTS_IN","name":"Narrator (Voice)","type":"Role","_key":"9721","_from":"7807","_to":"7797"} +{"$label":"ACTS_IN","name":"Hajime Handa (Voice)","type":"Role","_key":"9720","_from":"7806","_to":"7797"} +{"$label":"ACTS_IN","name":"Shiroh Tatsumi (Voice)","type":"Role","_key":"9719","_from":"7805","_to":"7797"} +{"$label":"ACTS_IN","name":"Bunmei Muroto (Voice)","type":"Role","_key":"9718","_from":"7804","_to":"7797"} +{"$label":"ACTS_IN","name":"Isao Aniya (Voice)","type":"Role","_key":"9717","_from":"7803","_to":"7797"} +{"$label":"ACTS_IN","name":"Nanami Agawa (Voice)","type":"Role","_key":"9716","_from":"7802","_to":"7797"} +{"$label":"ACTS_IN","name":"Atsushi Henmi (Voice)","type":"Role","_key":"9715","_from":"7801","_to":"7797"} +{"$label":"ACTS_IN","name":"Kei Amemiya (Voice)","type":"Role","_key":"9714","_from":"7800","_to":"7797"} +{"$label":"ACTS_IN","name":"Kazuki Fuse (Voice)","type":"Role","_key":"9713","_from":"7799","_to":"7797"} +{"$label":"DIRECTED","_key":"9712","_from":"7798","_to":"7797"} +{"$label":"ACTS_IN","name":"Satie","type":"Role","_key":"9735","_from":"7816","_to":"7809"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"9734","_from":"7815","_to":"7809"} +{"$label":"ACTS_IN","name":"The Narcoleptic Argentinean","type":"Role","_key":"9733","_from":"7814","_to":"7809"} +{"$label":"ACTS_IN","name":"Nini Legs in the Air","type":"Role","_key":"9732","_from":"7813","_to":"7809"} +{"$label":"ACTS_IN","name":"The Green Fairy (Voice)","type":"Role","_key":"9731","_from":"7812","_to":"7809"} +{"$label":"ACTS_IN","name":"The Green Fairy","type":"Role","_key":"9730","_from":"7811","_to":"7809"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"9726","_from":"7810","_to":"7809"} +{"$label":"ACTS_IN","name":"Robert Marcus","type":"Role","_key":"69274","_from":"7810","_to":"42354"} +{"$label":"ACTS_IN","name":"Dr. Keith Orbit","type":"Role","_key":"59908","_from":"7810","_to":"37824"} +{"$label":"ACTS_IN","name":"Joseph 'Joe' Welch","type":"Role","_key":"58864","_from":"7810","_to":"37175"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"50542","_from":"7810","_to":"33007"} +{"$label":"ACTS_IN","name":"Vladislaus Dracula","type":"Role","_key":"45839","_from":"7810","_to":"30311"} +{"$label":"ACTS_IN","name":"Hugh Stamp","type":"Role","_key":"11390","_from":"7810","_to":"8971"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"109292","_from":"7811","_to":"64568"} +{"$label":"ACTS_IN","name":"Cammy White","type":"Role","_key":"71422","_from":"7811","_to":"43306"} +{"$label":"ACTS_IN","name":"Hilary Jacobs","type":"Role","_key":"61697","_from":"7811","_to":"38860"} +{"$label":"ACTS_IN","name":"Ethel Merman","type":"Role","_key":"103654","_from":"7813","_to":"60960"} +{"$label":"ACTS_IN","name":"Doug Lake","type":"Role","_key":"102212","_from":"7815","_to":"60147"} +{"$label":"ACTS_IN","name":"Nicky Whitta","type":"Role","_key":"97435","_from":"7815","_to":"57379"} +{"$label":"DIRECTED","_key":"9762","_from":"7830","_to":"7817"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"9758","_from":"7829","_to":"7817"} +{"$label":"ACTS_IN","name":"Second Drag Queen","type":"Role","_key":"9757","_from":"7828","_to":"7817"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"9756","_from":"7827","_to":"7817"} +{"$label":"ACTS_IN","name":"Drag Bar Bartender","type":"Role","_key":"9755","_from":"7826","_to":"7817"} +{"$label":"ACTS_IN","name":"Drag Queen","type":"Role","_key":"9754","_from":"7825","_to":"7817"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"9752","_from":"7824","_to":"7817"} +{"$label":"ACTS_IN","name":"Trent","type":"Role","_key":"9751","_from":"7823","_to":"7817"} +{"$label":"ACTS_IN","name":"Cook Show Director","type":"Role","_key":"9749","_from":"7822","_to":"7817"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"9748","_from":"7821","_to":"7817"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"9744","_from":"7820","_to":"7817"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"9743","_from":"7819","_to":"7817"} +{"$label":"ACTS_IN","name":"Meredith","type":"Role","_key":"9742","_from":"7818","_to":"7817"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"95106","_from":"7818","_to":"55971"} +{"$label":"ACTS_IN","name":"Eleanor Johnson","type":"Role","_key":"92519","_from":"7818","_to":"54610"} +{"$label":"ACTS_IN","name":"Dana Scully","type":"Role","_key":"50947","_from":"7818","_to":"33249"} +{"$label":"ACTS_IN","name":"Widow Wadman","type":"Role","_key":"49738","_from":"7818","_to":"32538"} +{"$label":"ACTS_IN","name":"Sarah Merrit","type":"Role","_key":"13581","_from":"7818","_to":"10561"} +{"$label":"ACTS_IN","name":"Special Agent Dana Scully","type":"Role","_key":"10022","_from":"7818","_to":"8022"} +{"$label":"ACTS_IN","name":"Augie","type":"Role","_key":"118821","_from":"7821","_to":"69851"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"103713","_from":"7821","_to":"61002"} +{"$label":"ACTS_IN","name":"Leonard Marliston","type":"Role","_key":"90644","_from":"7821","_to":"53521"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"71204","_from":"7821","_to":"43214"} +{"$label":"ACTS_IN","name":"Brett Campbell","type":"Role","_key":"64939","_from":"7821","_to":"40373"} +{"$label":"ACTS_IN","name":"Chris Chandler","type":"Role","_key":"64818","_from":"7821","_to":"40327"} +{"$label":"ACTS_IN","name":"Anthony 'Tony' Cortino","type":"Role","_key":"57320","_from":"7821","_to":"36353"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"53808","_from":"7821","_to":"34669"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"53713","_from":"7821","_to":"34635"} +{"$label":"ACTS_IN","name":"Hal Sinclair","type":"Role","_key":"52962","_from":"7821","_to":"34311"} +{"$label":"ACTS_IN","name":"Principal Banning","type":"Role","_key":"14625","_from":"7822","_to":"11256"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"108470","_from":"7823","_to":"64118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105840","_from":"7823","_to":"62306"} +{"$label":"ACTS_IN","name":"Marion Frank Stokes","type":"Role","_key":"52783","_from":"7823","_to":"34241"} +{"$label":"ACTS_IN","name":"Kevin Gerrity","type":"Role","_key":"52160","_from":"7823","_to":"33995"} +{"$label":"ACTS_IN","name":"Reg Hartner","type":"Role","_key":"20143","_from":"7823","_to":"14786"} +{"$label":"ACTS_IN","name":"Tarkey","type":"Role","_key":"97708","_from":"7826","_to":"57531"} +{"$label":"ACTS_IN","name":"Capt. Reeves","type":"Role","_key":"9771","_from":"7836","_to":"7831"} +{"$label":"ACTS_IN","name":"Lt. Joyce","type":"Role","_key":"9769","_from":"7835","_to":"7831"} +{"$label":"ACTS_IN","name":"Maj. Clipton","type":"Role","_key":"9768","_from":"7834","_to":"7831"} +{"$label":"ACTS_IN","name":"Col. Saito","type":"Role","_key":"9767","_from":"7833","_to":"7831"} +{"$label":"DIRECTED","_key":"9763","_from":"7832","_to":"7831"} +{"$label":"DIRECTED","_key":"118603","_from":"7832","_to":"69736"} +{"$label":"DIRECTED","_key":"109123","_from":"7832","_to":"64471"} +{"$label":"DIRECTED","_key":"106364","_from":"7832","_to":"62660"} +{"$label":"DIRECTED","_key":"66925","_from":"7832","_to":"41318"} +{"$label":"DIRECTED","_key":"21241","_from":"7832","_to":"15553"} +{"$label":"DIRECTED","_key":"11285","_from":"7832","_to":"8914"} +{"$label":"DIRECTED","_key":"10789","_from":"7832","_to":"8557"} +{"$label":"DIRECTED","_key":"10077","_from":"7832","_to":"8067"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116221","_from":"7833","_to":"68429"} +{"$label":"ACTS_IN","name":"Maj. Safir","type":"Role","_key":"50600","_from":"7834","_to":"33046"} +{"$label":"ACTS_IN","name":"Group Capt. Ramsey \"The SBO\"","type":"Role","_key":"40472","_from":"7834","_to":"27264"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"16794","_from":"7835","_to":"12656"} +{"$label":"ACTS_IN","name":"Apophis","type":"Role","_key":"91915","_from":"7836","_to":"54222"} +{"$label":"ACTS_IN","name":"M. Bridoux, professeur","type":"Role","_key":"9785","_from":"7847","_to":"7837"} +{"$label":"ACTS_IN","name":"Soudieu, un \u00e9l\u00e8ve","type":"Role","_key":"9783","_from":"7846","_to":"7837"} +{"$label":"ACTS_IN","name":"Moinet, une jeune Moynet","type":"Role","_key":"9782","_from":"7845","_to":"7837"} +{"$label":"ACTS_IN","name":"M. Herboux","type":"Role","_key":"9781","_from":"7844","_to":"7837"} +{"$label":"ACTS_IN","name":"Mme. Herboux","type":"Role","_key":"9780","_from":"7843","_to":"7837"} +{"$label":"ACTS_IN","name":"M. Raymond, le surveillant","type":"Role","_key":"9779","_from":"7842","_to":"7837"} +{"$label":"ACTS_IN","name":"M.Drain, professeur","type":"Role","_key":"9778","_from":"7841","_to":"7837"} +{"$label":"ACTS_IN","name":"Plantiveau, le concierge","type":"Role","_key":"9777","_from":"7840","_to":"7837"} +{"$label":"ACTS_IN","name":"Michel Delassalle","type":"Role","_key":"9775","_from":"7839","_to":"7837"} +{"$label":"ACTS_IN","name":"Nicole Horner","type":"Role","_key":"9773","_from":"7838","_to":"7837"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"104222","_from":"7838","_to":"61316"} +{"$label":"ACTS_IN","name":"Elsa Fennan","type":"Role","_key":"101658","_from":"7838","_to":"59833"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"42079","_from":"7838","_to":"28196"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33566","_from":"7838","_to":"23204"} +{"$label":"ACTS_IN","name":"Eliane Dar\u00e8s","type":"Role","_key":"30921","_from":"7838","_to":"21670"} +{"$label":"ACTS_IN","name":"Elizabeth Proctor","type":"Role","_key":"30889","_from":"7838","_to":"21653"} +{"$label":"ACTS_IN","name":"Luc Jardie","type":"Role","_key":"104220","_from":"7839","_to":"61316"} +{"$label":"ACTS_IN","name":"Laurent Kirchner","type":"Role","_key":"89988","_from":"7839","_to":"53238"} +{"$label":"ACTS_IN","name":"Ricomet","type":"Role","_key":"42842","_from":"7840","_to":"28642"} +{"$label":"ACTS_IN","name":"Francis Nurse","type":"Role","_key":"30894","_from":"7841","_to":"21653"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101285","_from":"7842","_to":"59637"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"91419","_from":"7842","_to":"53919"} +{"$label":"ACTS_IN","name":"M. Pierre Arnaud","type":"Role","_key":"90824","_from":"7842","_to":"53592"} +{"$label":"ACTS_IN","name":"Albin Mougeotte \/ 'Zaza Napoli'","type":"Role","_key":"71558","_from":"7842","_to":"43352"} +{"$label":"ACTS_IN","name":"Martinaud","type":"Role","_key":"35742","_from":"7842","_to":"24291"} +{"$label":"ACTS_IN","name":"P\u00e9trarque","type":"Role","_key":"34601","_from":"7842","_to":"23684"} +{"$label":"ACTS_IN","name":"Gaston Lartois","type":"Role","_key":"34296","_from":"7842","_to":"23529"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00e9mie","type":"Role","_key":"33877","_from":"7842","_to":"23338"} +{"$label":"ACTS_IN","name":"Zaza","type":"Role","_key":"32053","_from":"7842","_to":"22332"} +{"$label":"ACTS_IN","name":"Martial Perrin\/Gilbert Brossard","type":"Role","_key":"30643","_from":"7842","_to":"21518"} +{"$label":"ACTS_IN","name":"le voisin","type":"Role","_key":"30635","_from":"7842","_to":"21513"} +{"$label":"ACTS_IN","name":"Jean-Paul Rondin","type":"Role","_key":"29580","_from":"7842","_to":"20945"} +{"$label":"ACTS_IN","name":"Alex Ponttin","type":"Role","_key":"20782","_from":"7842","_to":"15200"} +{"$label":"ACTS_IN","name":"Professor Tissot","type":"Role","_key":"41101","_from":"7844","_to":"27653"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Costet","type":"Role","_key":"34636","_from":"7844","_to":"23697"} +{"$label":"ACTS_IN","name":"le patron du restaurant","type":"Role","_key":"33733","_from":"7844","_to":"23267"} +{"$label":"ACTS_IN","name":"Michel Dolle","type":"Role","_key":"35493","_from":"7846","_to":"24138"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33584","_from":"7846","_to":"23204"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"11970","_from":"7846","_to":"9380"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"9796","_from":"7855","_to":"7848"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"9795","_from":"7854","_to":"7848"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"9794","_from":"7853","_to":"7848"} +{"$label":"ACTS_IN","name":"Gort","type":"Role","_key":"9793","_from":"7852","_to":"7848"} +{"$label":"ACTS_IN","name":"Mrs. Barley","type":"Role","_key":"9792","_from":"7851","_to":"7848"} +{"$label":"ACTS_IN","name":"Bobby Benson","type":"Role","_key":"9791","_from":"7850","_to":"7848"} +{"$label":"ACTS_IN","name":"Klaatu\/Carpenter","type":"Role","_key":"9787","_from":"7849","_to":"7848"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"42754","_from":"7849","_to":"28608"} +{"$label":"ACTS_IN","name":"Dr. Warnoff","type":"Role","_key":"26699","_from":"7849","_to":"19185"} +{"$label":"ACTS_IN","name":"Lord John Roxton","type":"Role","_key":"24677","_from":"7849","_to":"17851"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"25600","_from":"7854","_to":"18430"} +{"$label":"ACTS_IN","name":"Detective Loach","type":"Role","_key":"9807","_from":"7861","_to":"7856"} +{"$label":"ACTS_IN","name":"Claude Mulvihill","type":"Role","_key":"9805","_from":"7860","_to":"7856"} +{"$label":"ACTS_IN","name":"Hollis I. Mulwray","type":"Role","_key":"9803","_from":"7859","_to":"7856"} +{"$label":"ACTS_IN","name":"Russ Yelburton","type":"Role","_key":"9802","_from":"7858","_to":"7856"} +{"$label":"ACTS_IN","name":"Lieutenant Lou Escobar","type":"Role","_key":"9801","_from":"7857","_to":"7856"} +{"$label":"ACTS_IN","name":"Pvt. Petuko","type":"Role","_key":"70909","_from":"7857","_to":"43079"} +{"$label":"ACTS_IN","name":"Deputy Hardin \/ Jess Hardin","type":"Role","_key":"68963","_from":"7858","_to":"42221"} +{"$label":"ACTS_IN","name":"Rodney James","type":"Role","_key":"33509","_from":"7858","_to":"23176"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"19173","_from":"7858","_to":"14169"} +{"$label":"ACTS_IN","name":"Boetius Sullivan","type":"Role","_key":"14872","_from":"7860","_to":"11429"} +{"$label":"ACTS_IN","name":"Artie","type":"Role","_key":"105901","_from":"7861","_to":"62345"} +{"$label":"ACTS_IN","name":"Robby","type":"Role","_key":"9820","_from":"7873","_to":"7862"} +{"$label":"ACTS_IN","name":"Youngerford","type":"Role","_key":"9819","_from":"7872","_to":"7862"} +{"$label":"ACTS_IN","name":"Grey","type":"Role","_key":"9818","_from":"7871","_to":"7862"} +{"$label":"ACTS_IN","name":"Bosun","type":"Role","_key":"9817","_from":"7870","_to":"7862"} +{"$label":"ACTS_IN","name":"James Dirocco","type":"Role","_key":"9816","_from":"7869","_to":"7862"} +{"$label":"ACTS_IN","name":"Chief Engineer Quinn","type":"Role","_key":"9815","_from":"7868","_to":"7862"} +{"$label":"ACTS_IN","name":"Lt. Jerry Farman","type":"Role","_key":"9814","_from":"7867","_to":"7862"} +{"$label":"ACTS_IN","name":"Lt. 'Doc' Ostrow","type":"Role","_key":"9813","_from":"7866","_to":"7862"} +{"$label":"ACTS_IN","name":"Altaira Morbius","type":"Role","_key":"9811","_from":"7865","_to":"7862"} +{"$label":"ACTS_IN","name":"Dr. Edward Morbius","type":"Role","_key":"9810","_from":"7864","_to":"7862"} +{"$label":"DIRECTED","_key":"9809","_from":"7863","_to":"7862"} +{"$label":"DIRECTED","_key":"19144","_from":"7863","_to":"14153"} +{"$label":"ACTS_IN","name":"Senate Majority Leader","type":"Role","_key":"111445","_from":"7864","_to":"65805"} +{"$label":"ACTS_IN","name":"Adm. Hariman Nelson","type":"Role","_key":"18800","_from":"7864","_to":"13896"} +{"$label":"ACTS_IN","name":"Liz Wirth","type":"Role","_key":"100775","_from":"7865","_to":"59412"} +{"$label":"ACTS_IN","name":"Mr. Miller","type":"Role","_key":"15992","_from":"7866","_to":"12154"} +{"$label":"ACTS_IN","name":"Captain John B. Earle","type":"Role","_key":"68270","_from":"7868","_to":"41908"} +{"$label":"ACTS_IN","name":"Maj. Saint-Auban","type":"Role","_key":"11539","_from":"7868","_to":"9065"} +{"$label":"ACTS_IN","name":"Rick Belden, Craig's Son","type":"Role","_key":"101419","_from":"7869","_to":"59701"} +{"$label":"ACTS_IN","name":"Sheriff Wyner","type":"Role","_key":"37630","_from":"7870","_to":"25505"} +{"$label":"ACTS_IN","name":"Mr. Carlson","type":"Role","_key":"35523","_from":"7870","_to":"24147"} +{"$label":"ACTS_IN","name":"Chico Bonnell","type":"Role","_key":"101986","_from":"7871","_to":"60010"} +{"$label":"ACTS_IN","name":"Richter Grayle","type":"Role","_key":"15851","_from":"7872","_to":"12058"} +{"$label":"ACTS_IN","name":"Joe Wilson","type":"Role","_key":"9828","_from":"7882","_to":"7874"} +{"$label":"ACTS_IN","name":"The Monitor of Metaluna","type":"Role","_key":"9827","_from":"7881","_to":"7874"} +{"$label":"ACTS_IN","name":"Steve Carlson","type":"Role","_key":"9826","_from":"7880","_to":"7874"} +{"$label":"ACTS_IN","name":"Brack","type":"Role","_key":"9825","_from":"7879","_to":"7874"} +{"$label":"ACTS_IN","name":"Dr. Cal Meacham","type":"Role","_key":"9824","_from":"7878","_to":"7874"} +{"$label":"ACTS_IN","name":"Dr. Ruth Adams","type":"Role","_key":"9823","_from":"7877","_to":"7874"} +{"$label":"ACTS_IN","name":"Exeter","type":"Role","_key":"9822","_from":"7876","_to":"7874"} +{"$label":"DIRECTED","_key":"9821","_from":"7875","_to":"7874"} +{"$label":"DIRECTED","_key":"107012","_from":"7875","_to":"63087"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"24803","_from":"7877","_to":"17933"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"120174","_from":"7880","_to":"70580"} +{"$label":"ACTS_IN","name":"Ned 'Scotty' Scott","type":"Role","_key":"65779","_from":"7881","_to":"40713"} +{"$label":"ACTS_IN","name":"Axel 'Swede' Shipstead","type":"Role","_key":"26028","_from":"7881","_to":"18705"} +{"$label":"ACTS_IN","name":"Viktor Kugler","type":"Role","_key":"22036","_from":"7881","_to":"16074"} +{"$label":"ACTS_IN","name":"Sam Benson","type":"Role","_key":"16788","_from":"7881","_to":"12653"} +{"$label":"ACTS_IN","name":"Franz, der Dieb","type":"Role","_key":"9837","_from":"7888","_to":"7883"} +{"$label":"ACTS_IN","name":"Schr\u00e4nker","type":"Role","_key":"9836","_from":"7887","_to":"7883"} +{"$label":"ACTS_IN","name":"Inspector Karl Lohmann","type":"Role","_key":"9834","_from":"7886","_to":"7883"} +{"$label":"ACTS_IN","name":"Elsie Beckmann","type":"Role","_key":"9833","_from":"7885","_to":"7883"} +{"$label":"ACTS_IN","name":"Frau Beckmann","type":"Role","_key":"9832","_from":"7884","_to":"7883"} +{"$label":"ACTS_IN","name":"Pony H\u00fctchen","type":"Role","_key":"32462","_from":"7885","_to":"22575"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Edward J. Smith","type":"Role","_key":"67346","_from":"7886","_to":"41508"} +{"$label":"ACTS_IN","name":"Franz Lechner","type":"Role","_key":"44430","_from":"7886","_to":"29598"} +{"$label":"ACTS_IN","name":"B\u00e4rmann","type":"Role","_key":"28048","_from":"7886","_to":"20104"} +{"$label":"ACTS_IN","name":"Mr. Woolf","type":"Role","_key":"28049","_from":"7887","_to":"20104"} +{"$label":"ACTS_IN","name":"Matrosen Karl","type":"Role","_key":"40113","_from":"7888","_to":"27076"} +{"$label":"ACTS_IN","name":"Il degente all' ospedale","type":"Role","_key":"9844","_from":"7896","_to":"7889"} +{"$label":"ACTS_IN","name":"La suora all' ospedale","type":"Role","_key":"9843","_from":"7895","_to":"7889"} +{"$label":"ACTS_IN","name":"La donna nella camera di Umberto","type":"Role","_key":"9842","_from":"7894","_to":"7889"} +{"$label":"ACTS_IN","name":"Antonia, la padrona di case","type":"Role","_key":"9841","_from":"7893","_to":"7889"} +{"$label":"ACTS_IN","name":"Maria, la servetta","type":"Role","_key":"9840","_from":"7892","_to":"7889"} +{"$label":"ACTS_IN","name":"Umberto Domenico Ferrari","type":"Role","_key":"9839","_from":"7891","_to":"7889"} +{"$label":"DIRECTED","_key":"9838","_from":"7890","_to":"7889"} +{"$label":"DIRECTED","_key":"118865","_from":"7890","_to":"69863"} +{"$label":"DIRECTED","_key":"36175","_from":"7890","_to":"24543"} +{"$label":"DIRECTED","_key":"34011","_from":"7890","_to":"23398"} +{"$label":"DIRECTED","_key":"16099","_from":"7890","_to":"12233"} +{"$label":"ACTS_IN","name":"Cardinal Rinaldi","type":"Role","_key":"113522","_from":"7890","_to":"66883"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71239","_from":"7890","_to":"43224"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"28101","_from":"7890","_to":"20145"} +{"$label":"ACTS_IN","name":"Di Seta","type":"Role","_key":"24876","_from":"7890","_to":"17986"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"9859","_from":"7903","_to":"7897"} +{"$label":"ACTS_IN","name":"Pierce","type":"Role","_key":"9858","_from":"7902","_to":"7897"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"9855","_from":"7901","_to":"7897"} +{"$label":"ACTS_IN","name":"Soren","type":"Role","_key":"9854","_from":"7900","_to":"7897"} +{"$label":"ACTS_IN","name":"William Corvinus","type":"Role","_key":"9853","_from":"7899","_to":"7897"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"9852","_from":"7898","_to":"7897"} +{"$label":"ACTS_IN","name":"Risa","type":"Role","_key":"46281","_from":"7898","_to":"30589"} +{"$label":"ACTS_IN","name":"Sammael","type":"Role","_key":"13474","_from":"7899","_to":"10484"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"102098","_from":"7901","_to":"60066"} +{"$label":"ACTS_IN","name":"Big Daddy Mars","type":"Role","_key":"59471","_from":"7902","_to":"37557"} +{"$label":"ACTS_IN","name":"Zweiter Offizier","type":"Role","_key":"9871","_from":"7912","_to":"7904"} +{"$label":"ACTS_IN","name":"Erster Offizier","type":"Role","_key":"9870","_from":"7911","_to":"7904"} +{"$label":"ACTS_IN","name":"Mann mit der Fistelstimme","type":"Role","_key":"9869","_from":"7910","_to":"7904"} +{"$label":"ACTS_IN","name":"Mann mit dem Zahnschmerzen","type":"Role","_key":"9868","_from":"7909","_to":"7904"} +{"$label":"ACTS_IN","name":"Mann mit den Schiffbr\u00fcchen","type":"Role","_key":"9867","_from":"7908","_to":"7904"} +{"$label":"ACTS_IN","name":"Chefingenieur Damsky","type":"Role","_key":"9866","_from":"7907","_to":"7904"} +{"$label":"ACTS_IN","name":"Kapit\u00e4nleutnant Droste","type":"Role","_key":"9864","_from":"7906","_to":"7904"} +{"$label":"DIRECTED","_key":"9861","_from":"7905","_to":"7904"} +{"$label":"DIRECTED","_key":"42038","_from":"7905","_to":"28168"} +{"$label":"ACTS_IN","name":"Graf Peter Paul Oetsch","type":"Role","_key":"44916","_from":"7906","_to":"29866"} +{"$label":"ACTS_IN","name":"Mac Allen","type":"Role","_key":"28045","_from":"7906","_to":"20104"} +{"$label":"ACTS_IN","name":"Hermann Knorr","type":"Role","_key":"42127","_from":"7908","_to":"28218"} +{"$label":"ACTS_IN","name":"von Walter","type":"Role","_key":"24547","_from":"7908","_to":"17750"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"24303","_from":"7910","_to":"17598"} +{"$label":"ACTS_IN","name":"Fazendeiro","type":"Role","_key":"9876","_from":"7918","_to":"7913"} +{"$label":"ACTS_IN","name":"Soldado Amarelo","type":"Role","_key":"9875","_from":"7917","_to":"7913"} +{"$label":"ACTS_IN","name":"Sinh\u00e1 Vit\u00f3ria","type":"Role","_key":"9874","_from":"7916","_to":"7913"} +{"$label":"ACTS_IN","name":"Fabiano","type":"Role","_key":"9873","_from":"7915","_to":"7913"} +{"$label":"DIRECTED","_key":"9872","_from":"7914","_to":"7913"} +{"$label":"ACTS_IN","name":"Barry Convex","type":"Role","_key":"9888","_from":"7928","_to":"7919"} +{"$label":"ACTS_IN","name":"Rena King","type":"Role","_key":"9887","_from":"7927","_to":"7919"} +{"$label":"ACTS_IN","name":"Raphael","type":"Role","_key":"9886","_from":"7926","_to":"7919"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"9885","_from":"7925","_to":"7919"} +{"$label":"ACTS_IN","name":"Bridey","type":"Role","_key":"9884","_from":"7924","_to":"7919"} +{"$label":"ACTS_IN","name":"Masha","type":"Role","_key":"9883","_from":"7923","_to":"7919"} +{"$label":"ACTS_IN","name":"Brian O'Blivion","type":"Role","_key":"9882","_from":"7922","_to":"7919"} +{"$label":"ACTS_IN","name":"Harlan","type":"Role","_key":"9881","_from":"7921","_to":"7919"} +{"$label":"ACTS_IN","name":"Bianca O'Blivion","type":"Role","_key":"9879","_from":"7920","_to":"7919"} +{"$label":"ACTS_IN","name":"Fay Tolland","type":"Role","_key":"119120","_from":"7920","_to":"70011"} +{"$label":"ACTS_IN","name":"Dana Selkirk","type":"Role","_key":"104267","_from":"7920","_to":"61344"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46323","_from":"7920","_to":"30610"} +{"$label":"ACTS_IN","name":"Mr. Staines","type":"Role","_key":"11170","_from":"7922","_to":"8839"} +{"$label":"ACTS_IN","name":"Bill Graham (as Les Carlson)","type":"Role","_key":"110599","_from":"7928","_to":"65341"} +{"$label":"ACTS_IN","name":"Tree Man","type":"Role","_key":"10076","_from":"7928","_to":"8057"} +{"$label":"ACTS_IN","name":"Ants","type":"Role","_key":"9900","_from":"7936","_to":"7929"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"9899","_from":"7935","_to":"7929"} +{"$label":"ACTS_IN","name":"Joe Young","type":"Role","_key":"9898","_from":"7934","_to":"7929"} +{"$label":"ACTS_IN","name":"XERB Disc Jockey","type":"Role","_key":"9897","_from":"7933","_to":"7929"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"9896","_from":"7932","_to":"7929"} +{"$label":"ACTS_IN","name":"Debbie Dunham","type":"Role","_key":"9895","_from":"7931","_to":"7929"} +{"$label":"ACTS_IN","name":"John Milner","type":"Role","_key":"9892","_from":"7930","_to":"7929"} +{"$label":"ACTS_IN","name":"Deb Merritt","type":"Role","_key":"119307","_from":"7931","_to":"70096"} +{"$label":"ACTS_IN","name":"Mary Sue","type":"Role","_key":"96052","_from":"7931","_to":"56457"} +{"$label":"ACTS_IN","name":"Marge Marken","type":"Role","_key":"90647","_from":"7931","_to":"53521"} +{"$label":"ACTS_IN","name":"Sally Ann","type":"Role","_key":"64031","_from":"7931","_to":"39968"} +{"$label":"ACTS_IN","name":"Fran Hewitt","type":"Role","_key":"54944","_from":"7931","_to":"35126"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"42980","_from":"7931","_to":"28715"} +{"$label":"ACTS_IN","name":"Carol Fisher","type":"Role","_key":"16921","_from":"7931","_to":"12715"} +{"$label":"ACTS_IN","name":"Camilla Sternwood","type":"Role","_key":"15708","_from":"7931","_to":"11975"} +{"$label":"ACTS_IN","name":"Mary-Lou","type":"Role","_key":"11723","_from":"7931","_to":"9203"} +{"$label":"ACTS_IN","name":"Corp. Grebs","type":"Role","_key":"106201","_from":"7934","_to":"62549"} +{"$label":"ACTS_IN","name":"Sheriff Lawson","type":"Role","_key":"87994","_from":"7934","_to":"52245"} +{"$label":"ACTS_IN","name":"Tex","type":"Role","_key":"69161","_from":"7934","_to":"42298"} +{"$label":"ACTS_IN","name":"Sgt. Twining","type":"Role","_key":"55525","_from":"7934","_to":"35367"} +{"$label":"ACTS_IN","name":"Frank Allesendro","type":"Role","_key":"39267","_from":"7934","_to":"26554"} +{"$label":"ACTS_IN","name":"Earle Shoop","type":"Role","_key":"35987","_from":"7934","_to":"24437"} +{"$label":"ACTS_IN","name":"Ray Boone","type":"Role","_key":"35336","_from":"7934","_to":"24063"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"35588","_from":"7935","_to":"24184"} +{"$label":"ACTS_IN","name":"The Truck Driver","type":"Role","_key":"9912","_from":"7947","_to":"7937"} +{"$label":"ACTS_IN","name":"Lady at Snakerama","type":"Role","_key":"9911","_from":"7946","_to":"7937"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"9910","_from":"7945","_to":"7937"} +{"$label":"ACTS_IN","name":"Old Woman in Car","type":"Role","_key":"9909","_from":"7944","_to":"7937"} +{"$label":"ACTS_IN","name":"Old Man in Car","type":"Role","_key":"9908","_from":"7943","_to":"7937"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"9907","_from":"7942","_to":"7937"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"9906","_from":"7941","_to":"7937"} +{"$label":"ACTS_IN","name":"Man in Cafe","type":"Role","_key":"9905","_from":"7940","_to":"7937"} +{"$label":"ACTS_IN","name":"Cafe Owner","type":"Role","_key":"9904","_from":"7939","_to":"7937"} +{"$label":"ACTS_IN","name":"David Mann","type":"Role","_key":"9903","_from":"7938","_to":"7937"} +{"$label":"ACTS_IN","name":"Mirador Motel Night Manager","type":"Role","_key":"13423","_from":"7938","_to":"10442"} +{"$label":"ACTS_IN","name":"Willard Grange","type":"Role","_key":"12967","_from":"7938","_to":"10112"} +{"$label":"ACTS_IN","name":"Team Leader","type":"Role","_key":"9926","_from":"7955","_to":"7948"} +{"$label":"ACTS_IN","name":"Toby Neary","type":"Role","_key":"9924","_from":"7954","_to":"7948"} +{"$label":"ACTS_IN","name":"Sylvia Neary","type":"Role","_key":"9923","_from":"7953","_to":"7948"} +{"$label":"ACTS_IN","name":"Jean Claude","type":"Role","_key":"9922","_from":"7952","_to":"7948"} +{"$label":"ACTS_IN","name":"Wild Bill","type":"Role","_key":"9920","_from":"7951","_to":"7948"} +{"$label":"ACTS_IN","name":"Project Leader","type":"Role","_key":"9919","_from":"7950","_to":"7948"} +{"$label":"ACTS_IN","name":"David Laughlin","type":"Role","_key":"9918","_from":"7949","_to":"7948"} +{"$label":"ACTS_IN","name":"Arthur Planck","type":"Role","_key":"98566","_from":"7949","_to":"58084"} +{"$label":"ACTS_IN","name":"Ben Ginsberg","type":"Role","_key":"98285","_from":"7949","_to":"57900"} +{"$label":"ACTS_IN","name":"Dr. Theodore W. Millbank, III","type":"Role","_key":"96615","_from":"7949","_to":"56824"} +{"$label":"ACTS_IN","name":"Arthur Rosenberg","type":"Role","_key":"70530","_from":"7949","_to":"42928"} +{"$label":"ACTS_IN","name":"Elvin Glyde","type":"Role","_key":"67789","_from":"7949","_to":"41672"} +{"$label":"ACTS_IN","name":"Harry Farber","type":"Role","_key":"55783","_from":"7949","_to":"35507"} +{"$label":"ACTS_IN","name":"Ed Drinkwater","type":"Role","_key":"52088","_from":"7949","_to":"33954"} +{"$label":"ACTS_IN","name":"Bernie Nayman","type":"Role","_key":"41493","_from":"7949","_to":"27879"} +{"$label":"ACTS_IN","name":"Morris Weissman","type":"Role","_key":"36876","_from":"7949","_to":"24998"} +{"$label":"ACTS_IN","name":"Elliott Webley","type":"Role","_key":"34805","_from":"7949","_to":"23785"} +{"$label":"ACTS_IN","name":"Dr. R. Chandra","type":"Role","_key":"31713","_from":"7949","_to":"22131"} +{"$label":"ACTS_IN","name":"Therapist","type":"Role","_key":"28399","_from":"7949","_to":"20316"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"22349","_from":"7949","_to":"16249"} +{"$label":"ACTS_IN","name":"Mr. Webster","type":"Role","_key":"20233","_from":"7949","_to":"14838"} +{"$label":"ACTS_IN","name":"Kowalsky","type":"Role","_key":"20084","_from":"7949","_to":"14765"} +{"$label":"ACTS_IN","name":"Third Kidnapper","type":"Role","_key":"33933","_from":"7950","_to":"23362"} +{"$label":"ACTS_IN","name":"Grandison","type":"Role","_key":"39859","_from":"7951","_to":"26930"} +{"$label":"ACTS_IN","name":"Rev. Mother Gaius Helen Mohiam","type":"Role","_key":"9941","_from":"7966","_to":"7956"} +{"$label":"ACTS_IN","name":"Baron Vladimir Harkonnen","type":"Role","_key":"9939","_from":"7965","_to":"7956"} +{"$label":"ACTS_IN","name":"Rev. Mother Ramallo","type":"Role","_key":"9937","_from":"7964","_to":"7956"} +{"$label":"ACTS_IN","name":"Princess Irulan","type":"Role","_key":"9936","_from":"7963","_to":"7956"} +{"$label":"ACTS_IN","name":"Duncan Idaho","type":"Role","_key":"9934","_from":"7962","_to":"7956"} +{"$label":"ACTS_IN","name":"Thufir Hawat","type":"Role","_key":"9933","_from":"7961","_to":"7956"} +{"$label":"ACTS_IN","name":"Shadout Mapes","type":"Role","_key":"9932","_from":"7960","_to":"7956"} +{"$label":"ACTS_IN","name":"Padishah Emperor Shaddam IV","type":"Role","_key":"9931","_from":"7959","_to":"7956"} +{"$label":"ACTS_IN","name":"The Baron's Doctor","type":"Role","_key":"9929","_from":"7958","_to":"7956"} +{"$label":"ACTS_IN","name":"Lady Jessica","type":"Role","_key":"9928","_from":"7957","_to":"7956"} +{"$label":"ACTS_IN","name":"Lady Macbeth","type":"Role","_key":"69090","_from":"7957","_to":"42281"} +{"$label":"ACTS_IN","name":"Lily Walker","type":"Role","_key":"66239","_from":"7957","_to":"40976"} +{"$label":"ACTS_IN","name":"Eiras","type":"Role","_key":"48236","_from":"7957","_to":"31682"} +{"$label":"ACTS_IN","name":"Countess","type":"Role","_key":"47142","_from":"7957","_to":"31080"} +{"$label":"ACTS_IN","name":"Lyssa, Widow of the Web","type":"Role","_key":"10054","_from":"7957","_to":"8047"} +{"$label":"ACTS_IN","name":"Chancellor","type":"Role","_key":"108241","_from":"7958","_to":"63963"} +{"$label":"ACTS_IN","name":"Scary German Guy","type":"Role","_key":"94908","_from":"7958","_to":"55876"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"47567","_from":"7958","_to":"31338"} +{"$label":"ACTS_IN","name":"Dominici","type":"Role","_key":"119447","_from":"7959","_to":"70174"} +{"$label":"ACTS_IN","name":"Ironman","type":"Role","_key":"118856","_from":"7959","_to":"69859"} +{"$label":"ACTS_IN","name":"Priest of the Brotherhood","type":"Role","_key":"115248","_from":"7959","_to":"67870"} +{"$label":"ACTS_IN","name":"Henri de Toulouse-Lautrec","type":"Role","_key":"66652","_from":"7959","_to":"41192"} +{"$label":"ACTS_IN","name":"Lt. Barney Greenwald","type":"Role","_key":"61445","_from":"7959","_to":"38765"} +{"$label":"ACTS_IN","name":"Leopold","type":"Role","_key":"48863","_from":"7959","_to":"32041"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"30071","_from":"7959","_to":"21200"} +{"$label":"ACTS_IN","name":"Herodes Antipas","type":"Role","_key":"21251","_from":"7959","_to":"15553"} +{"$label":"ACTS_IN","name":"Komansky","type":"Role","_key":"16097","_from":"7959","_to":"12227"} +{"$label":"ACTS_IN","name":"Hassan Bey","type":"Role","_key":"16039","_from":"7959","_to":"12192"} +{"$label":"ACTS_IN","name":"Capitain Nemo","type":"Role","_key":"15985","_from":"7959","_to":"12154"} +{"$label":"ACTS_IN","name":"Superintendent Das","type":"Role","_key":"15972","_from":"7959","_to":"12144"} +{"$label":"ACTS_IN","name":"Turkish Bey","type":"Role","_key":"11293","_from":"7959","_to":"8914"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"96732","_from":"7960","_to":"56899"} +{"$label":"ACTS_IN","name":"Grandmother Willow","type":"Role","_key":"96206","_from":"7960","_to":"56549"} +{"$label":"ACTS_IN","name":"Billy Kwan","type":"Role","_key":"70525","_from":"7960","_to":"42927"} +{"$label":"ACTS_IN","name":"Hooper","type":"Role","_key":"68200","_from":"7960","_to":"41884"} +{"$label":"ACTS_IN","name":"Dr. Ann Cuthbert","type":"Role","_key":"67302","_from":"7960","_to":"41490"} +{"$label":"ACTS_IN","name":"Regina Krumm","type":"Role","_key":"28160","_from":"7960","_to":"20177"} +{"$label":"ACTS_IN","name":"Miss Schlowski","type":"Role","_key":"11350","_from":"7960","_to":"8948"} +{"$label":"ACTS_IN","name":"Doctor Joseph Wanless","type":"Role","_key":"70169","_from":"7961","_to":"42773"} +{"$label":"ACTS_IN","name":"Dallben (voice)","type":"Role","_key":"66964","_from":"7961","_to":"41338"} +{"$label":"ACTS_IN","name":"Kenneth Aubrey","type":"Role","_key":"65261","_from":"7961","_to":"40511"} +{"$label":"ACTS_IN","name":"Jan Pandered","type":"Role","_key":"54469","_from":"7961","_to":"34924"} +{"$label":"ACTS_IN","name":"Orlando","type":"Role","_key":"38099","_from":"7961","_to":"25769"} +{"$label":"ACTS_IN","name":"Dr. Harris","type":"Role","_key":"34708","_from":"7961","_to":"23739"} +{"$label":"ACTS_IN","name":"Philip Proudfoot","type":"Role","_key":"31244","_from":"7961","_to":"21863"} +{"$label":"ACTS_IN","name":"Cainy Bell","type":"Role","_key":"27236","_from":"7961","_to":"19575"} +{"$label":"ACTS_IN","name":"Prof. Richter","type":"Role","_key":"25492","_from":"7961","_to":"18377"} +{"$label":"ACTS_IN","name":"Bytes","type":"Role","_key":"16955","_from":"7961","_to":"12729"} +{"$label":"ACTS_IN","name":"Ynyr","type":"Role","_key":"10064","_from":"7961","_to":"8047"} +{"$label":"ACTS_IN","name":"Hawk","type":"Role","_key":"112879","_from":"7962","_to":"66629"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"65898","_from":"7962","_to":"40770"} +{"$label":"ACTS_IN","name":"Howard Prescott","type":"Role","_key":"59515","_from":"7962","_to":"37578"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31998","_from":"7962","_to":"22303"} +{"$label":"ACTS_IN","name":"Dr. Jeffrey Pelt","type":"Role","_key":"14806","_from":"7962","_to":"11385"} +{"$label":"ACTS_IN","name":"Madeline Robistat","type":"Role","_key":"120528","_from":"7963","_to":"70790"} +{"$label":"ACTS_IN","name":"Sara Campbell","type":"Role","_key":"117470","_from":"7963","_to":"69081"} +{"$label":"ACTS_IN","name":"Hippolyta","type":"Role","_key":"104080","_from":"7963","_to":"61239"} +{"$label":"ACTS_IN","name":"Dolly Harshaw","type":"Role","_key":"102180","_from":"7963","_to":"60132"} +{"$label":"ACTS_IN","name":"Katherine Henley","type":"Role","_key":"73127","_from":"7963","_to":"43981"} +{"$label":"ACTS_IN","name":"Beth Stanfield","type":"Role","_key":"56303","_from":"7963","_to":"35776"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"55464","_from":"7963","_to":"35351"} +{"$label":"ACTS_IN","name":"Helen Lyle","type":"Role","_key":"54471","_from":"7963","_to":"34925"} +{"$label":"ACTS_IN","name":"Dorothy Binney","type":"Role","_key":"51474","_from":"7963","_to":"33572"} +{"$label":"ACTS_IN","name":"Louise Marcus","type":"Role","_key":"47766","_from":"7963","_to":"31453"} +{"$label":"ACTS_IN","name":"Mrs Farmer","type":"Role","_key":"36237","_from":"7963","_to":"24593"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"33089","_from":"7963","_to":"22927"} +{"$label":"ACTS_IN","name":"Agatha Sparrow\/Fabrizia","type":"Role","_key":"28243","_from":"7963","_to":"20227"} +{"$label":"ACTS_IN","name":"Tadzios Mutter","type":"Role","_key":"44341","_from":"7964","_to":"29549"} +{"$label":"ACTS_IN","name":"Lucia, the mother","type":"Role","_key":"37074","_from":"7964","_to":"25123"} +{"$label":"ACTS_IN","name":"Cosima von Buelow","type":"Role","_key":"27333","_from":"7964","_to":"19647"} +{"$label":"ACTS_IN","name":"Constable Parkins Gillespie","type":"Role","_key":"69248","_from":"7965","_to":"42339"} +{"$label":"ACTS_IN","name":"Cressner","type":"Role","_key":"64029","_from":"7965","_to":"39968"} +{"$label":"ACTS_IN","name":"Malcolm Wallace","type":"Role","_key":"50074","_from":"7965","_to":"32761"} +{"$label":"ACTS_IN","name":"Joseph Demec","type":"Role","_key":"36479","_from":"7965","_to":"24738"} +{"$label":"ACTS_IN","name":"Captain Clarence O'Connell","type":"Role","_key":"22257","_from":"7965","_to":"16202"} +{"$label":"ACTS_IN","name":"Marie Strickland","type":"Role","_key":"113611","_from":"7966","_to":"66954"} +{"$label":"ACTS_IN","name":"Gwendolen","type":"Role","_key":"104346","_from":"7966","_to":"61385"} +{"$label":"ACTS_IN","name":"Charal","type":"Role","_key":"62862","_from":"7966","_to":"39499"} +{"$label":"ACTS_IN","name":"Mrs. Driver","type":"Role","_key":"23212","_from":"7966","_to":"16831"} +{"$label":"ACTS_IN","name":"Co-Pilot","type":"Role","_key":"9979","_from":"7992","_to":"7967"} +{"$label":"ACTS_IN","name":"Martin Jones","type":"Role","_key":"9978","_from":"7991","_to":"7967"} +{"$label":"ACTS_IN","name":"Boarding Agent","type":"Role","_key":"9977","_from":"7990","_to":"7967"} +{"$label":"ACTS_IN","name":"Security Man","type":"Role","_key":"9976","_from":"7989","_to":"7967"} +{"$label":"ACTS_IN","name":"Bank Teller","type":"Role","_key":"9975","_from":"7988","_to":"7967"} +{"$label":"ACTS_IN","name":"Hostage","type":"Role","_key":"9974","_from":"7987","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #6","type":"Role","_key":"9973","_from":"7986","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #5","type":"Role","_key":"9972","_from":"7985","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #4","type":"Role","_key":"9971","_from":"7984","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #3","type":"Role","_key":"9970","_from":"7983","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #2","type":"Role","_key":"9969","_from":"7982","_to":"7967"} +{"$label":"ACTS_IN","name":"Customer #1","type":"Role","_key":"9968","_from":"7981","_to":"7967"} +{"$label":"ACTS_IN","name":"Businesswoman","type":"Role","_key":"9967","_from":"7980","_to":"7967"} +{"$label":"ACTS_IN","name":"Irate Driver","type":"Role","_key":"9966","_from":"7979","_to":"7967"} +{"$label":"ACTS_IN","name":"Mel Samuels","type":"Role","_key":"9965","_from":"7978","_to":"7967"} +{"$label":"ACTS_IN","name":"Joey Simmons","type":"Role","_key":"9964","_from":"7977","_to":"7967"} +{"$label":"ACTS_IN","name":"Marie's Mother","type":"Role","_key":"9963","_from":"7976","_to":"7967"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"9962","_from":"7975","_to":"7967"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"9961","_from":"7974","_to":"7967"} +{"$label":"ACTS_IN","name":"Sammy Jr.","type":"Role","_key":"9960","_from":"7973","_to":"7967"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"9959","_from":"7972","_to":"7967"} +{"$label":"ACTS_IN","name":"Tom Ford","type":"Role","_key":"9955","_from":"7971","_to":"7967"} +{"$label":"DIRECTED","_key":"9950","_from":"7970","_to":"7967"} +{"$label":"DIRECTED","_key":"9949","_from":"7969","_to":"7967"} +{"$label":"DIRECTED","_key":"9948","_from":"7968","_to":"7967"} +{"$label":"ACTS_IN","name":"Lester Likens","type":"Role","_key":"91994","_from":"7971","_to":"54274"} +{"$label":"ACTS_IN","name":"Mr. Truman","type":"Role","_key":"65538","_from":"7971","_to":"40621"} +{"$label":"ACTS_IN","name":"Brian Lewis","type":"Role","_key":"56603","_from":"7971","_to":"35958"} +{"$label":"ACTS_IN","name":"clyde","type":"Role","_key":"51213","_from":"7971","_to":"33397"} +{"$label":"ACTS_IN","name":"Sheriff Todd Peterson","type":"Role","_key":"16871","_from":"7971","_to":"12688"} +{"$label":"ACTS_IN","name":"Tiffany's Saleswoman","type":"Role","_key":"104737","_from":"7972","_to":"61613"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"96048","_from":"7976","_to":"56457"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"60238","_from":"7976","_to":"37994"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"106416","_from":"7980","_to":"62695"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"105209","_from":"7981","_to":"61913"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"96682","_from":"7982","_to":"56865"} +{"$label":"ACTS_IN","name":"Dotson (as Brad Henke)","type":"Role","_key":"110660","_from":"7991","_to":"65370"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"100425","_from":"7991","_to":"59216"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"97912","_from":"7991","_to":"57666"} +{"$label":"ACTS_IN","name":"Lattavansky","type":"Role","_key":"55852","_from":"7991","_to":"35533"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"12879","_from":"7991","_to":"10047"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"11939","_from":"7991","_to":"9354"} +{"$label":"ACTS_IN","name":"Jones (Pentagon tank designer)","type":"Role","_key":"100273","_from":"7992","_to":"59133"} +{"$label":"ACTS_IN","name":"Mandelbrot","type":"Role","_key":"87944","_from":"7992","_to":"52222"} +{"$label":"ACTS_IN","name":"Griff","type":"Role","_key":"60608","_from":"7992","_to":"38253"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"9993","_from":"8005","_to":"7993"} +{"$label":"ACTS_IN","name":"Mrs. Chow","type":"Role","_key":"9992","_from":"8004","_to":"7993"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"9991","_from":"8003","_to":"7993"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"9990","_from":"8002","_to":"7993"} +{"$label":"ACTS_IN","name":"The Amah","type":"Role","_key":"9989","_from":"8001","_to":"7993"} +{"$label":"ACTS_IN","name":"Mr. Chan","type":"Role","_key":"9988","_from":"8000","_to":"7993"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"9987","_from":"7999","_to":"7993"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"9986","_from":"7998","_to":"7993"} +{"$label":"ACTS_IN","name":"Mr. Ho","type":"Role","_key":"9985","_from":"7997","_to":"7993"} +{"$label":"ACTS_IN","name":"Mrs. Suen","type":"Role","_key":"9984","_from":"7996","_to":"7993"} +{"$label":"ACTS_IN","name":"Ah Ping","type":"Role","_key":"9983","_from":"7995","_to":"7993"} +{"$label":"DIRECTED","_key":"9980","_from":"7994","_to":"7993"} +{"$label":"DIRECTED","_key":"115843","_from":"7994","_to":"68201"} +{"$label":"DIRECTED","_key":"115790","_from":"7994","_to":"68169"} +{"$label":"DIRECTED","_key":"103837","_from":"7994","_to":"61067"} +{"$label":"DIRECTED","_key":"68623","_from":"7994","_to":"42067"} +{"$label":"DIRECTED","_key":"67893","_from":"7994","_to":"41715"} +{"$label":"DIRECTED","_key":"17220","_from":"7994","_to":"12902"} +{"$label":"DIRECTED","_key":"9994","_from":"7994","_to":"8006"} +{"$label":"ACTS_IN","name":"Ah Ping","type":"Role","_key":"10004","_from":"7995","_to":"8006"} +{"$label":"ACTS_IN","name":"Rebecca (as Tik-Wa Poon)","type":"Role","_key":"115788","_from":"7996","_to":"68169"} +{"$label":"ACTS_IN","name":"Cat","type":"Role","_key":"96780","_from":"8000","_to":"56921"} +{"$label":"ACTS_IN","name":"Murderer King","type":"Role","_key":"22484","_from":"8000","_to":"16343"} +{"$label":"ACTS_IN","name":"Karen (as Alien Sun)","type":"Role","_key":"55767","_from":"8004","_to":"35497"} +{"$label":"ACTS_IN","name":"Wang Jie Wen","type":"Role","_key":"10006","_from":"8012","_to":"8006"} +{"$label":"ACTS_IN","name":"Bird","type":"Role","_key":"10005","_from":"8011","_to":"8006"} +{"$label":"ACTS_IN","name":"Mr. Wang","type":"Role","_key":"10003","_from":"8010","_to":"8006"} +{"$label":"ACTS_IN","name":"Lulu\/Mimi","type":"Role","_key":"10001","_from":"8009","_to":"8006"} +{"$label":"ACTS_IN","name":"Wang Jing Wen","type":"Role","_key":"9999","_from":"8008","_to":"8006"} +{"$label":"ACTS_IN","name":"Tak","type":"Role","_key":"9998","_from":"8007","_to":"8006"} +{"$label":"ACTS_IN","name":"Hauru","type":"Role","_key":"34945","_from":"8007","_to":"23864"} +{"$label":"ACTS_IN","name":"Faye","type":"Role","_key":"67896","_from":"8008","_to":"41715"} +{"$label":"ACTS_IN","name":"Tam Yuet-Wah","type":"Role","_key":"117586","_from":"8009","_to":"69130"} +{"$label":"ACTS_IN","name":"Leung Fung-ying","type":"Role","_key":"115787","_from":"8009","_to":"68169"} +{"$label":"ACTS_IN","name":"Peach Blossom","type":"Role","_key":"103842","_from":"8009","_to":"61067"} +{"$label":"ACTS_IN","name":"Mary Hon","type":"Role","_key":"71269","_from":"8009","_to":"43242"} +{"$label":"ACTS_IN","name":"No-mercy","type":"Role","_key":"66266","_from":"8009","_to":"40989"} +{"$label":"ACTS_IN","name":"Ma Xiaoling","type":"Role","_key":"106161","_from":"8012","_to":"62527"} +{"$label":"ACTS_IN","name":"Miriam Joyce Haines","type":"Role","_key":"10019","_from":"8021","_to":"8013"} +{"$label":"ACTS_IN","name":"Leslie Hennessy","type":"Role","_key":"10018","_from":"8020","_to":"8013"} +{"$label":"ACTS_IN","name":"Prof. Collins","type":"Role","_key":"10017","_from":"8019","_to":"8013"} +{"$label":"ACTS_IN","name":"Mr. Anthony","type":"Role","_key":"10015","_from":"8018","_to":"8013"} +{"$label":"ACTS_IN","name":"Mrs. Anthony","type":"Role","_key":"10014","_from":"8017","_to":"8013"} +{"$label":"ACTS_IN","name":"Bruno Anthony","type":"Role","_key":"10010","_from":"8016","_to":"8013"} +{"$label":"ACTS_IN","name":"Anne Morton","type":"Role","_key":"10009","_from":"8015","_to":"8013"} +{"$label":"ACTS_IN","name":"Guy Haines","type":"Role","_key":"10008","_from":"8014","_to":"8013"} +{"$label":"ACTS_IN","name":"Joe Norson","type":"Role","_key":"115648","_from":"8014","_to":"68087"} +{"$label":"ACTS_IN","name":"Maj. Harriman","type":"Role","_key":"53583","_from":"8014","_to":"34582"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35651","_from":"8014","_to":"24231"} +{"$label":"ACTS_IN","name":"Phillip Morgan","type":"Role","_key":"13999","_from":"8014","_to":"10857"} +{"$label":"ACTS_IN","name":"Ronda Castle","type":"Role","_key":"117227","_from":"8015","_to":"68960"} +{"$label":"ACTS_IN","name":"Margot Eliot","type":"Role","_key":"34475","_from":"8015","_to":"23608"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29214","_from":"8018","_to":"20787"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29204","_from":"8018","_to":"20783"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29190","_from":"8018","_to":"20782"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29144","_from":"8018","_to":"20757"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29124","_from":"8018","_to":"20744"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29106","_from":"8018","_to":"20737"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29086","_from":"8018","_to":"20731"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29074","_from":"8018","_to":"20726"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29064","_from":"8018","_to":"20721"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29053","_from":"8018","_to":"20717"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29039","_from":"8018","_to":"20712"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29023","_from":"8018","_to":"20709"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29000","_from":"8018","_to":"20702"} +{"$label":"ACTS_IN","name":"J.C. Dithars","type":"Role","_key":"28954","_from":"8018","_to":"20682"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"28926","_from":"8018","_to":"20670"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"28908","_from":"8018","_to":"20657"} +{"$label":"ACTS_IN","name":"Darius Michaud","type":"Role","_key":"10029","_from":"8029","_to":"8022"} +{"$label":"ACTS_IN","name":"Ben Bronschweig, M.D.","type":"Role","_key":"10027","_from":"8028","_to":"8022"} +{"$label":"ACTS_IN","name":"The Well-Manicured Man","type":"Role","_key":"10026","_from":"8027","_to":"8022"} +{"$label":"ACTS_IN","name":"The Cigarette-Smoking Man","type":"Role","_key":"10025","_from":"8026","_to":"8022"} +{"$label":"ACTS_IN","name":"Assistant Director Walter Skinner","type":"Role","_key":"10024","_from":"8025","_to":"8022"} +{"$label":"ACTS_IN","name":"Special Agent Fox Mulder","type":"Role","_key":"10021","_from":"8024","_to":"8022"} +{"$label":"DIRECTED","_key":"10020","_from":"8023","_to":"8022"} +{"$label":"DIRECTED","_key":"58345","_from":"8023","_to":"36877"} +{"$label":"DIRECTED","_key":"42784","_from":"8023","_to":"28624"} +{"$label":"ACTS_IN","name":"Mike Klein","type":"Role","_key":"111875","_from":"8024","_to":"66047"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"105406","_from":"8024","_to":"62019"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"103523","_from":"8024","_to":"60902"} +{"$label":"ACTS_IN","name":"Dr. Benjamin Marris","type":"Role","_key":"100229","_from":"8024","_to":"59116"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"98326","_from":"8024","_to":"57911"} +{"$label":"ACTS_IN","name":"Dr. Eugene Sands","type":"Role","_key":"90705","_from":"8024","_to":"53545"} +{"$label":"ACTS_IN","name":"Brian Kessler","type":"Role","_key":"66649","_from":"8024","_to":"41190"} +{"$label":"ACTS_IN","name":"J.P. Prewitt","type":"Role","_key":"53611","_from":"8024","_to":"34590"} +{"$label":"ACTS_IN","name":"Dr. Ira Kane","type":"Role","_key":"53598","_from":"8024","_to":"34589"} +{"$label":"ACTS_IN","name":"Fox Mulder","type":"Role","_key":"50946","_from":"8024","_to":"33249"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36998","_from":"8024","_to":"25075"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36985","_from":"8024","_to":"25071"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36973","_from":"8024","_to":"25064"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36916","_from":"8024","_to":"25022"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36893","_from":"8024","_to":"25008"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36844","_from":"8024","_to":"24987"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36829","_from":"8024","_to":"24974"} +{"$label":"ACTS_IN","name":"Jake Winters","type":"Role","_key":"36819","_from":"8024","_to":"24969"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36807","_from":"8024","_to":"24964"} +{"$label":"ACTS_IN","name":"Jake Winters","type":"Role","_key":"36780","_from":"8024","_to":"24943"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36595","_from":"8024","_to":"24806"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36577","_from":"8024","_to":"24794"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36560","_from":"8024","_to":"24786"} +{"$label":"ACTS_IN","name":"Jake Winters","type":"Role","_key":"36518","_from":"8024","_to":"24766"} +{"$label":"ACTS_IN","name":"Steven Burke","type":"Role","_key":"28856","_from":"8024","_to":"20622"} +{"$label":"ACTS_IN","name":"Bob Rueland","type":"Role","_key":"22265","_from":"8024","_to":"16204"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"13048","_from":"8024","_to":"10175"} +{"$label":"ACTS_IN","name":"Bill Daley","type":"Role","_key":"98293","_from":"8025","_to":"57900"} +{"$label":"ACTS_IN","name":"Horace Pinker","type":"Role","_key":"90033","_from":"8025","_to":"53256"} +{"$label":"ACTS_IN","name":"Walter Skinner","type":"Role","_key":"50951","_from":"8025","_to":"33249"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"97668","_from":"8026","_to":"57513"} +{"$label":"ACTS_IN","name":"Colby Price","type":"Role","_key":"58656","_from":"8026","_to":"37053"} +{"$label":"ACTS_IN","name":"Agent Frank Gruning","type":"Role","_key":"27825","_from":"8026","_to":"19944"} +{"$label":"ACTS_IN","name":"Mr. Gedreau","type":"Role","_key":"22663","_from":"8026","_to":"16433"} +{"$label":"ACTS_IN","name":"Gustave Sors","type":"Role","_key":"113904","_from":"8027","_to":"67089"} +{"$label":"ACTS_IN","name":"Hieronymus Karl Frederick Baron von Munchausen","type":"Role","_key":"100545","_from":"8027","_to":"59305"} +{"$label":"ACTS_IN","name":"Terrence","type":"Role","_key":"55054","_from":"8027","_to":"35170"} +{"$label":"ACTS_IN","name":"Julian Ratcliffe, 2nd Lieutenant","type":"Role","_key":"37063","_from":"8027","_to":"25120"} +{"$label":"ACTS_IN","name":"Andrei Chikatilo","type":"Role","_key":"90235","_from":"8028","_to":"53351"} +{"$label":"ACTS_IN","name":"Mayor Ernie Cole","type":"Role","_key":"67790","_from":"8028","_to":"41672"} +{"$label":"ACTS_IN","name":"Sheriff Herb Geller","type":"Role","_key":"54943","_from":"8028","_to":"35126"} +{"$label":"ACTS_IN","name":". \tCaptain Esteridge","type":"Role","_key":"54566","_from":"8028","_to":"34965"} +{"$label":"ACTS_IN","name":"Dan Miller","type":"Role","_key":"40038","_from":"8028","_to":"27031"} +{"$label":"ACTS_IN","name":"Bruce, Alex's Boss","type":"Role","_key":"119795","_from":"8029","_to":"70340"} +{"$label":"ACTS_IN","name":"Frank Devereaux","type":"Role","_key":"118803","_from":"8029","_to":"69847"} +{"$label":"ACTS_IN","name":"Jack Moseley","type":"Role","_key":"109549","_from":"8029","_to":"64707"} +{"$label":"ACTS_IN","name":"Howard Hughes","type":"Role","_key":"61966","_from":"8029","_to":"39003"} +{"$label":"ACTS_IN","name":"Bud Yancy","type":"Role","_key":"14107","_from":"8029","_to":"10931"} +{"$label":"ACTS_IN","name":"Vohnkar","type":"Role","_key":"10041","_from":"8037","_to":"8030"} +{"$label":"ACTS_IN","name":"Meegosh","type":"Role","_key":"10040","_from":"8036","_to":"8030"} +{"$label":"ACTS_IN","name":"Airk Thaughbaer","type":"Role","_key":"10039","_from":"8035","_to":"8030"} +{"$label":"ACTS_IN","name":"Gen. Kael","type":"Role","_key":"10038","_from":"8034","_to":"8030"} +{"$label":"ACTS_IN","name":"High Aldwin","type":"Role","_key":"10037","_from":"8033","_to":"8030"} +{"$label":"ACTS_IN","name":"Fin Raziel","type":"Role","_key":"10036","_from":"8032","_to":"8030"} +{"$label":"ACTS_IN","name":"Sorsha","type":"Role","_key":"10034","_from":"8031","_to":"8030"} +{"$label":"ACTS_IN","name":"Claire Varrens","type":"Role","_key":"91451","_from":"8031","_to":"53931"} +{"$label":"ACTS_IN","name":"Lorelei 'Lori'","type":"Role","_key":"53719","_from":"8031","_to":"34637"} +{"$label":"ACTS_IN","name":"Patricia Nash","type":"Role","_key":"42856","_from":"8031","_to":"28653"} +{"$label":"ACTS_IN","name":"Jenny Scott","type":"Role","_key":"18009","_from":"8031","_to":"13387"} +{"$label":"ACTS_IN","name":"Mrs. Beasley","type":"Role","_key":"119564","_from":"8032","_to":"70231"} +{"$label":"ACTS_IN","name":"Noodles MacIntosh","type":"Role","_key":"72997","_from":"8033","_to":"43930"} +{"$label":"ACTS_IN","name":"Gwildor","type":"Role","_key":"71283","_from":"8033","_to":"43245"} +{"$label":"ACTS_IN","name":"Baitmouse (voice)","type":"Role","_key":"68104","_from":"8033","_to":"41826"} +{"$label":"ACTS_IN","name":"Baba","type":"Role","_key":"46942","_from":"8033","_to":"30954"} +{"$label":"ACTS_IN","name":"Abe Kusich","type":"Role","_key":"35990","_from":"8033","_to":"24437"} +{"$label":"ACTS_IN","name":"Zulcki","type":"Role","_key":"114132","_from":"8034","_to":"67211"} +{"$label":"ACTS_IN","name":"Ron Harris","type":"Role","_key":"46162","_from":"8035","_to":"30501"} +{"$label":"ACTS_IN","name":"King Thane","type":"Role","_key":"42771","_from":"8035","_to":"28616"} +{"$label":"ACTS_IN","name":"Greaser Greg - Suit","type":"Role","_key":"100299","_from":"8037","_to":"59141"} +{"$label":"ACTS_IN","name":"Chihuahua","type":"Role","_key":"71552","_from":"8037","_to":"43346"} +{"$label":"ACTS_IN","name":"Cousin Itt","type":"Role","_key":"70289","_from":"8037","_to":"42822"} +{"$label":"ACTS_IN","name":"Club Patron","type":"Role","_key":"60535","_from":"8037","_to":"38203"} +{"$label":"ACTS_IN","name":"Princess Elspeth","type":"Role","_key":"10050","_from":"8046","_to":"8038"} +{"$label":"ACTS_IN","name":"Hodge","type":"Role","_key":"10049","_from":"8045","_to":"8038"} +{"$label":"ACTS_IN","name":"Greil","type":"Role","_key":"10048","_from":"8044","_to":"8038"} +{"$label":"ACTS_IN","name":"Casiodorus Rex","type":"Role","_key":"10047","_from":"8043","_to":"8038"} +{"$label":"ACTS_IN","name":"Tyrian","type":"Role","_key":"10046","_from":"8042","_to":"8038"} +{"$label":"ACTS_IN","name":"Ulrich","type":"Role","_key":"10045","_from":"8041","_to":"8038"} +{"$label":"ACTS_IN","name":"Galen","type":"Role","_key":"10043","_from":"8040","_to":"8038"} +{"$label":"DIRECTED","_key":"10042","_from":"8039","_to":"8038"} +{"$label":"DIRECTED","_key":"110086","_from":"8039","_to":"65054"} +{"$label":"DIRECTED","_key":"106562","_from":"8039","_to":"62788"} +{"$label":"DIRECTED","_key":"70562","_from":"8039","_to":"42937"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109212","_from":"8040","_to":"64523"} +{"$label":"ACTS_IN","name":"Stingo","type":"Role","_key":"105816","_from":"8040","_to":"62294"} +{"$label":"ACTS_IN","name":"Tom Lennox","type":"Role","_key":"97990","_from":"8040","_to":"57709"} +{"$label":"ACTS_IN","name":"Thomas Renfield","type":"Role","_key":"88076","_from":"8040","_to":"52279"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"63053","_from":"8040","_to":"39566"} +{"$label":"ACTS_IN","name":"Dr. Janosz Poha","type":"Role","_key":"24639","_from":"8040","_to":"17819"} +{"$label":"ACTS_IN","name":"David Langley","type":"Role","_key":"12494","_from":"8040","_to":"9790"} +{"$label":"ACTS_IN","name":"Themistocles of Athens","type":"Role","_key":"121630","_from":"8041","_to":"71457"} +{"$label":"ACTS_IN","name":"The Sixth Earl of Greystoke","type":"Role","_key":"67217","_from":"8041","_to":"41453"} +{"$label":"ACTS_IN","name":"John Durrance","type":"Role","_key":"64125","_from":"8041","_to":"40015"} +{"$label":"ACTS_IN","name":"Mr. Benton","type":"Role","_key":"45537","_from":"8041","_to":"30154"} +{"$label":"ACTS_IN","name":"Sir Wilfred Robarts","type":"Role","_key":"40895","_from":"8041","_to":"27513"} +{"$label":"ACTS_IN","name":"Charles Richmond","type":"Role","_key":"35488","_from":"8041","_to":"24135"} +{"$label":"ACTS_IN","name":"Colbert de Voliere","type":"Role","_key":"30062","_from":"8041","_to":"21198"} +{"$label":"ACTS_IN","name":"The Boss","type":"Role","_key":"28272","_from":"8041","_to":"20238"} +{"$label":"ACTS_IN","name":"Simeon","type":"Role","_key":"21144","_from":"8041","_to":"15473"} +{"$label":"ACTS_IN","name":"Gen. Sutherland","type":"Role","_key":"16830","_from":"8041","_to":"12674"} +{"$label":"ACTS_IN","name":"Alexander Gromeko","type":"Role","_key":"10797","_from":"8041","_to":"8557"} +{"$label":"ACTS_IN","name":"Mandara","type":"Role","_key":"114133","_from":"8042","_to":"67211"} +{"$label":"ACTS_IN","name":"Wesir","type":"Role","_key":"21091","_from":"8043","_to":"15413"} +{"$label":"ACTS_IN","name":"Charlie Rawlins","type":"Role","_key":"44543","_from":"8044","_to":"29653"} +{"$label":"ACTS_IN","name":"E-1","type":"Role","_key":"14929","_from":"8044","_to":"11474"} +{"$label":"ACTS_IN","name":"Vella","type":"Role","_key":"10063","_from":"8056","_to":"8047"} +{"$label":"ACTS_IN","name":"Eirig","type":"Role","_key":"10062","_from":"8055","_to":"8047"} +{"$label":"ACTS_IN","name":"Turold","type":"Role","_key":"10061","_from":"8054","_to":"8047"} +{"$label":"ACTS_IN","name":"Titch","type":"Role","_key":"10060","_from":"8053","_to":"8047"} +{"$label":"ACTS_IN","name":"The Seer","type":"Role","_key":"10059","_from":"8052","_to":"8047"} +{"$label":"ACTS_IN","name":"Rell the Cyclops","type":"Role","_key":"10057","_from":"8051","_to":"8047"} +{"$label":"ACTS_IN","name":"Princess Lyssa","type":"Role","_key":"10053","_from":"8050","_to":"8047"} +{"$label":"ACTS_IN","name":"Prince Colwyn","type":"Role","_key":"10052","_from":"8049","_to":"8047"} +{"$label":"DIRECTED","_key":"10051","_from":"8048","_to":"8047"} +{"$label":"DIRECTED","_key":"90687","_from":"8048","_to":"53538"} +{"$label":"DIRECTED","_key":"10884","_from":"8048","_to":"8626"} +{"$label":"ACTS_IN","name":"Impostor Leslie Giles","type":"Role","_key":"90425","_from":"8050","_to":"53426"} +{"$label":"ACTS_IN","name":"Lucy Westenra","type":"Role","_key":"88077","_from":"8050","_to":"52279"} +{"$label":"ACTS_IN","name":"Bernie Lugg","type":"Role","_key":"119649","_from":"8051","_to":"70277"} +{"$label":"ACTS_IN","name":"Arthur Upmore","type":"Role","_key":"119608","_from":"8051","_to":"70257"} +{"$label":"ACTS_IN","name":"Bernie Hulke","type":"Role","_key":"119585","_from":"8051","_to":"70243"} +{"$label":"ACTS_IN","name":"Brother Bernard","type":"Role","_key":"119371","_from":"8051","_to":"70140"} +{"$label":"ACTS_IN","name":"Upsidaisi","type":"Role","_key":"111737","_from":"8051","_to":"65956"} +{"$label":"ACTS_IN","name":"Little Heap","type":"Role","_key":"35777","_from":"8051","_to":"24304"} +{"$label":"ACTS_IN","name":"Ken Biddle","type":"Role","_key":"35763","_from":"8051","_to":"24297"} +{"$label":"ACTS_IN","name":"Bergman","type":"Role","_key":"26213","_from":"8052","_to":"18831"} +{"$label":"ACTS_IN","name":"William Frankenstein","type":"Role","_key":"25413","_from":"8053","_to":"18319"} +{"$label":"ACTS_IN","name":"Underhill","type":"Role","_key":"120806","_from":"8055","_to":"70946"} +{"$label":"ACTS_IN","name":"Vicar","type":"Role","_key":"71858","_from":"8055","_to":"43479"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34696","_from":"8055","_to":"23728"} +{"$label":"ACTS_IN","name":"Prof. Heiss","type":"Role","_key":"26272","_from":"8055","_to":"18865"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"10075","_from":"8066","_to":"8057"} +{"$label":"ACTS_IN","name":"Scut Farkus","type":"Role","_key":"10074","_from":"8065","_to":"8057"} +{"$label":"ACTS_IN","name":"Grover Dill","type":"Role","_key":"10073","_from":"8064","_to":"8057"} +{"$label":"ACTS_IN","name":"Miss Shields","type":"Role","_key":"10072","_from":"8063","_to":"8057"} +{"$label":"ACTS_IN","name":"Schwartz","type":"Role","_key":"10071","_from":"8062","_to":"8057"} +{"$label":"ACTS_IN","name":"Flick","type":"Role","_key":"10070","_from":"8061","_to":"8057"} +{"$label":"ACTS_IN","name":"Randy Parker","type":"Role","_key":"10069","_from":"8060","_to":"8057"} +{"$label":"ACTS_IN","name":"Ralphie Parker","type":"Role","_key":"10068","_from":"8059","_to":"8057"} +{"$label":"DIRECTED","_key":"10065","_from":"8058","_to":"8057"} +{"$label":"DIRECTED","_key":"110587","_from":"8058","_to":"65341"} +{"$label":"DIRECTED","_key":"109487","_from":"8058","_to":"64671"} +{"$label":"DIRECTED","_key":"61920","_from":"8058","_to":"38961"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30166","_from":"8058","_to":"21251"} +{"$label":"DIRECTED","_key":"121395","_from":"8059","_to":"71336"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"103607","_from":"8062","_to":"60935"} +{"$label":"ACTS_IN","name":"Jordan Strider","type":"Role","_key":"113209","_from":"8065","_to":"66707"} +{"$label":"ACTS_IN","name":"Billy the Kid","type":"Role","_key":"112290","_from":"8065","_to":"66302"} +{"$label":"ACTS_IN","name":"Xavier","type":"Role","_key":"90987","_from":"8065","_to":"53683"} +{"$label":"ACTS_IN","name":"Dude","type":"Role","_key":"23084","_from":"8065","_to":"16741"} +{"$label":"ACTS_IN","name":"Beryl Walters, Tea Room Assistant","type":"Role","_key":"10085","_from":"8074","_to":"8067"} +{"$label":"ACTS_IN","name":"Mary Norton","type":"Role","_key":"10084","_from":"8073","_to":"8067"} +{"$label":"ACTS_IN","name":"Dolly Messiter","type":"Role","_key":"10083","_from":"8072","_to":"8067"} +{"$label":"ACTS_IN","name":"Fred Jesson","type":"Role","_key":"10082","_from":"8071","_to":"8067"} +{"$label":"ACTS_IN","name":"Myrtle Bagot","type":"Role","_key":"10081","_from":"8070","_to":"8067"} +{"$label":"ACTS_IN","name":"Albert Godby","type":"Role","_key":"10080","_from":"8069","_to":"8067"} +{"$label":"ACTS_IN","name":"Laura Jesson","type":"Role","_key":"10078","_from":"8068","_to":"8067"} +{"$label":"ACTS_IN","name":"Miss McKay","type":"Role","_key":"36296","_from":"8068","_to":"24620"} +{"$label":"ACTS_IN","name":"Sister Simplice","type":"Role","_key":"32006","_from":"8068","_to":"22303"} +{"$label":"ACTS_IN","name":"Alfred P. Doolittle","type":"Role","_key":"67963","_from":"8069","_to":"41762"} +{"$label":"ACTS_IN","name":"Det. William Henry Blore","type":"Role","_key":"34451","_from":"8069","_to":"23596"} +{"$label":"ACTS_IN","name":"Poole der Butler","type":"Role","_key":"25085","_from":"8069","_to":"18122"} +{"$label":"ACTS_IN","name":"Violet Bradman","type":"Role","_key":"118601","_from":"8070","_to":"69736"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"10106","_from":"8093","_to":"8075"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"10105","_from":"8092","_to":"8075"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"10104","_from":"8091","_to":"8075"} +{"$label":"ACTS_IN","name":"Frau Moser","type":"Role","_key":"10103","_from":"8090","_to":"8075"} +{"$label":"ACTS_IN","name":"Tankstellenbesitzer","type":"Role","_key":"10102","_from":"8089","_to":"8075"} +{"$label":"ACTS_IN","name":"Herr Moser","type":"Role","_key":"10101","_from":"8088","_to":"8075"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"10100","_from":"8087","_to":"8075"} +{"$label":"ACTS_IN","name":"o.A,","type":"Role","_key":"10099","_from":"8086","_to":"8075"} +{"$label":"ACTS_IN","name":"Gemeindepr\u00e4sident","type":"Role","_key":"10098","_from":"8085","_to":"8075"} +{"$label":"ACTS_IN","name":"Ursula Fehlmann","type":"Role","_key":"10097","_from":"8084","_to":"8075"} +{"$label":"ACTS_IN","name":"Annemarie Heller","type":"Role","_key":"10096","_from":"8083","_to":"8075"} +{"$label":"ACTS_IN","name":"Frau Heller","type":"Role","_key":"10095","_from":"8082","_to":"8075"} +{"$label":"ACTS_IN","name":"Prof. Manz","type":"Role","_key":"10094","_from":"8081","_to":"8075"} +{"$label":"ACTS_IN","name":"Jacquier","type":"Role","_key":"10090","_from":"8080","_to":"8075"} +{"$label":"ACTS_IN","name":"Lt. Heinzi","type":"Role","_key":"10089","_from":"8079","_to":"8075"} +{"$label":"ACTS_IN","name":"Det. Feller","type":"Role","_key":"10088","_from":"8078","_to":"8075"} +{"$label":"ACTS_IN","name":"Oberleutnant Matth\u00e4i","type":"Role","_key":"10087","_from":"8077","_to":"8075"} +{"$label":"DIRECTED","_key":"10086","_from":"8076","_to":"8075"} +{"$label":"ACTS_IN","name":"Schwejk","type":"Role","_key":"72505","_from":"8077","_to":"43741"} +{"$label":"ACTS_IN","name":"Father Brown","type":"Role","_key":"72485","_from":"8077","_to":"43735"} +{"$label":"ACTS_IN","name":"Otto Groschenb\u00fcgel","type":"Role","_key":"72469","_from":"8077","_to":"43731"} +{"$label":"ACTS_IN","name":"Teddy Lemke","type":"Role","_key":"71730","_from":"8077","_to":"43419"} +{"$label":"ACTS_IN","name":"Wilhelm Voigt","type":"Role","_key":"64684","_from":"8077","_to":"40289"} +{"$label":"ACTS_IN","name":"Chauffeur Konrad","type":"Role","_key":"63331","_from":"8077","_to":"39697"} +{"$label":"ACTS_IN","name":"Gustav Hartmann","type":"Role","_key":"44159","_from":"8077","_to":"29437"} +{"$label":"ACTS_IN","name":"Max Schilling","type":"Role","_key":"43714","_from":"8077","_to":"29199"} +{"$label":"ACTS_IN","name":"Dr. John H. Watson","type":"Role","_key":"42040","_from":"8077","_to":"28168"} +{"$label":"ACTS_IN","name":"Dr. Otto Dernburg","type":"Role","_key":"40983","_from":"8077","_to":"27570"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"10788","_from":"8077","_to":"8549"} +{"$label":"ACTS_IN","name":"Dr. Johannes Pfeiffer\/Hans Pfeiffer","type":"Role","_key":"10440","_from":"8077","_to":"8307"} +{"$label":"ACTS_IN","name":"Waldrauscher","type":"Role","_key":"45306","_from":"8078","_to":"30050"} +{"$label":"ACTS_IN","name":"Dr. Smeat","type":"Role","_key":"32665","_from":"8078","_to":"22691"} +{"$label":"ACTS_IN","name":"Melchior","type":"Role","_key":"20039","_from":"8078","_to":"14741"} +{"$label":"ACTS_IN","name":"Kommissar Brahm","type":"Role","_key":"118840","_from":"8079","_to":"69855"} +{"$label":"ACTS_IN","name":"Inspektor Warren \/ Henry Arthur Milton","type":"Role","_key":"55156","_from":"8079","_to":"35200"} +{"$label":"ACTS_IN","name":"Inspektor Elk","type":"Role","_key":"44813","_from":"8079","_to":"29804"} +{"$label":"ACTS_IN","name":"Sir Richard","type":"Role","_key":"38200","_from":"8079","_to":"25812"} +{"$label":"ACTS_IN","name":"Inspektor Burke","type":"Role","_key":"38177","_from":"8079","_to":"25804"} +{"$label":"ACTS_IN","name":"Weingarten","type":"Role","_key":"30420","_from":"8079","_to":"21382"} +{"$label":"ACTS_IN","name":"Louis Compiegne","type":"Role","_key":"33895","_from":"8080","_to":"23348"} +{"$label":"ACTS_IN","name":"Zizi","type":"Role","_key":"33880","_from":"8080","_to":"23338"} +{"$label":"ACTS_IN","name":"Papa Boul","type":"Role","_key":"27387","_from":"8080","_to":"19677"} +{"$label":"ACTS_IN","name":"Uncle Max","type":"Role","_key":"24914","_from":"8093","_to":"18006"} +{"$label":"ACTS_IN","name":"Political Officer","type":"Role","_key":"10120","_from":"8100","_to":"8094"} +{"$label":"ACTS_IN","name":"Russian NCO","type":"Role","_key":"10119","_from":"8099","_to":"8094"} +{"$label":"ACTS_IN","name":"Comrade in Train","type":"Role","_key":"10118","_from":"8098","_to":"8094"} +{"$label":"ACTS_IN","name":"Young Vassili Zaitsev","type":"Role","_key":"10117","_from":"8097","_to":"8094"} +{"$label":"ACTS_IN","name":"Sacha Filipov","type":"Role","_key":"10115","_from":"8096","_to":"8094"} +{"$label":"ACTS_IN","name":"Commisar Danilov","type":"Role","_key":"10111","_from":"8095","_to":"8094"} +{"$label":"ACTS_IN","name":"Manuel Esquema","type":"Role","_key":"116624","_from":"8095","_to":"68650"} +{"$label":"ACTS_IN","name":"Michael Burrows","type":"Role","_key":"116175","_from":"8095","_to":"68405"} +{"$label":"ACTS_IN","name":"Elijah","type":"Role","_key":"109100","_from":"8095","_to":"64462"} +{"$label":"ACTS_IN","name":"Lenny Drake","type":"Role","_key":"102075","_from":"8095","_to":"60052"} +{"$label":"ACTS_IN","name":"Proteus","type":"Role","_key":"100121","_from":"8095","_to":"59057"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"99821","_from":"8095","_to":"58882"} +{"$label":"ACTS_IN","name":"Bassanio","type":"Role","_key":"68231","_from":"8095","_to":"41901"} +{"$label":"ACTS_IN","name":"Jamie Dodd","type":"Role","_key":"60486","_from":"8095","_to":"38170"} +{"$label":"ACTS_IN","name":"Captain Roy Brown","type":"Role","_key":"49234","_from":"8095","_to":"32251"} +{"$label":"ACTS_IN","name":"Neil Bookman","type":"Role","_key":"46973","_from":"8095","_to":"30977"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"43168","_from":"8095","_to":"28826"} +{"$label":"ACTS_IN","name":"Martin Luther","type":"Role","_key":"38403","_from":"8095","_to":"25944"} +{"$label":"ACTS_IN","name":"Beowulf ( voice )","type":"Role","_key":"37371","_from":"8095","_to":"25326"} +{"$label":"ACTS_IN","name":"Robert Dudley","type":"Role","_key":"32259","_from":"8095","_to":"22475"} +{"$label":"ACTS_IN","name":"Will Shakespeare","type":"Role","_key":"16756","_from":"8095","_to":"12639"} +{"$label":"ACTS_IN","name":"James Gregory","type":"Role","_key":"16176","_from":"8095","_to":"12284"} +{"$label":"ACTS_IN","name":"Efraim","type":"Role","_key":"21094","_from":"8096","_to":"15413"} +{"$label":"ACTS_IN","name":"Loszek","type":"Role","_key":"47407","_from":"8098","_to":"31223"} +{"$label":"ACTS_IN","name":"Pr\u00e4parator","type":"Role","_key":"15044","_from":"8099","_to":"11560"} +{"$label":"ACTS_IN","name":"U-Boat First Officer","type":"Role","_key":"120803","_from":"8100","_to":"70946"} +{"$label":"ACTS_IN","name":"W\u00e4rter","type":"Role","_key":"43315","_from":"8100","_to":"28933"} +{"$label":"ACTS_IN","name":"Kramlick","type":"Role","_key":"28663","_from":"8100","_to":"20481"} +{"$label":"ACTS_IN","name":"Harter Bursche","type":"Role","_key":"19182","_from":"8100","_to":"14172"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"10134","_from":"8111","_to":"8101"} +{"$label":"ACTS_IN","name":"Niko","type":"Role","_key":"10133","_from":"8110","_to":"8101"} +{"$label":"ACTS_IN","name":"Charlie Schumaker","type":"Role","_key":"10132","_from":"8109","_to":"8101"} +{"$label":"ACTS_IN","name":"Lieutenant Mitch Kellaway","type":"Role","_key":"10129","_from":"8108","_to":"8101"} +{"$label":"ACTS_IN","name":"Burt","type":"Role","_key":"10128","_from":"8107","_to":"8101"} +{"$label":"ACTS_IN","name":"Irv","type":"Role","_key":"10127","_from":"8106","_to":"8101"} +{"$label":"ACTS_IN","name":"Mrs. Peenman","type":"Role","_key":"10126","_from":"8105","_to":"8101"} +{"$label":"DIRECTED","_key":"10123","_from":"8104","_to":"8101"} +{"$label":"DIRECTED","_key":"10122","_from":"8103","_to":"8101"} +{"$label":"DIRECTED","_key":"10121","_from":"8102","_to":"8101"} +{"$label":"DIRECTED","_key":"62967","_from":"8103","_to":"39537"} +{"$label":"DIRECTED","_key":"60269","_from":"8103","_to":"38013"} +{"$label":"DIRECTED","_key":"54945","_from":"8103","_to":"35126"} +{"$label":"DIRECTED","_key":"53177","_from":"8103","_to":"34399"} +{"$label":"DIRECTED","_key":"52734","_from":"8103","_to":"34221"} +{"$label":"ACTS_IN","name":"Nurse Allerton","type":"Role","_key":"70881","_from":"8105","_to":"43072"} +{"$label":"ACTS_IN","name":"NY Casting Woman","type":"Role","_key":"36552","_from":"8105","_to":"24777"} +{"$label":"ACTS_IN","name":"Glen Gary","type":"Role","_key":"56880","_from":"8106","_to":"36109"} +{"$label":"ACTS_IN","name":"Herbie","type":"Role","_key":"114349","_from":"8108","_to":"67357"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"96677","_from":"8108","_to":"56865"} +{"$label":"ACTS_IN","name":"Aldo","type":"Role","_key":"72575","_from":"8108","_to":"43762"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"68706","_from":"8108","_to":"42100"} +{"$label":"ACTS_IN","name":"Donald Schoenstein","type":"Role","_key":"49981","_from":"8108","_to":"32712"} +{"$label":"ACTS_IN","name":"Marius Fisher","type":"Role","_key":"19769","_from":"8108","_to":"14601"} +{"$label":"ACTS_IN","name":"Mel Feynman","type":"Role","_key":"17699","_from":"8108","_to":"13208"} +{"$label":"DIRECTED","_key":"115518","_from":"8111","_to":"68009"} +{"$label":"DIRECTED","_key":"56419","_from":"8111","_to":"35840"} +{"$label":"DIRECTED","_key":"44075","_from":"8111","_to":"29388"} +{"$label":"ACTS_IN","name":"CWO Dan Jollata","type":"Role","_key":"10165","_from":"8125","_to":"8112"} +{"$label":"ACTS_IN","name":"Abdullahi 'Firimbi' Hassan","type":"Role","_key":"10164","_from":"8124","_to":"8112"} +{"$label":"ACTS_IN","name":"Yousuf Dahir Mo'alim","type":"Role","_key":"10163","_from":"8123","_to":"8112"} +{"$label":"ACTS_IN","name":"Sgt. Mike Goodale","type":"Role","_key":"10161","_from":"8122","_to":"8112"} +{"$label":"ACTS_IN","name":"Sgt. Lorenzo Ruiz","type":"Role","_key":"10158","_from":"8121","_to":"8112"} +{"$label":"ACTS_IN","name":"Lt. Col. Tom Matthews","type":"Role","_key":"10157","_from":"8120","_to":"8112"} +{"$label":"ACTS_IN","name":"Sfc. Randy Shughart","type":"Role","_key":"10155","_from":"8119","_to":"8112"} +{"$label":"ACTS_IN","name":"MSgt. Gary Gordon","type":"Role","_key":"10153","_from":"8118","_to":"8112"} +{"$label":"ACTS_IN","name":"Spec. Dale Sizemore","type":"Role","_key":"10152","_from":"8117","_to":"8112"} +{"$label":"ACTS_IN","name":"SSgt. Jeff Struecker","type":"Role","_key":"10148","_from":"8116","_to":"8112"} +{"$label":"ACTS_IN","name":"Sfc. Kurt Schmid","type":"Role","_key":"10146","_from":"8115","_to":"8112"} +{"$label":"ACTS_IN","name":"Cpl. James 'Jamie' Smith","type":"Role","_key":"10145","_from":"8114","_to":"8112"} +{"$label":"ACTS_IN","name":"Maj. Gen. William F. Garrison","type":"Role","_key":"10143","_from":"8113","_to":"8112"} +{"$label":"ACTS_IN","name":"The farmer","type":"Role","_key":"109711","_from":"8113","_to":"64794"} +{"$label":"ACTS_IN","name":"Wilder Lloyd","type":"Role","_key":"94312","_from":"8113","_to":"55539"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"92029","_from":"8113","_to":"54296"} +{"$label":"ACTS_IN","name":"James Harrison","type":"Role","_key":"90781","_from":"8113","_to":"53571"} +{"$label":"ACTS_IN","name":"Frank Coutelle","type":"Role","_key":"89292","_from":"8113","_to":"52863"} +{"$label":"ACTS_IN","name":"Dr. Jeff Cooper","type":"Role","_key":"68587","_from":"8113","_to":"42053"} +{"$label":"ACTS_IN","name":"Frank Calhoun","type":"Role","_key":"67478","_from":"8113","_to":"41562"} +{"$label":"ACTS_IN","name":"Ghost","type":"Role","_key":"65067","_from":"8113","_to":"40428"} +{"$label":"ACTS_IN","name":"Walter Faber","type":"Role","_key":"61398","_from":"8113","_to":"38731"} +{"$label":"ACTS_IN","name":"Ed Mills","type":"Role","_key":"60602","_from":"8113","_to":"38253"} +{"$label":"ACTS_IN","name":"Capt. George Cummings","type":"Role","_key":"59907","_from":"8113","_to":"37824"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"58987","_from":"8113","_to":"37240"} +{"$label":"ACTS_IN","name":"Thomas Callahan","type":"Role","_key":"58327","_from":"8113","_to":"36873"} +{"$label":"ACTS_IN","name":"Senator James Reisman","type":"Role","_key":"55897","_from":"8113","_to":"35554"} +{"$label":"ACTS_IN","name":"Chuck Yeager","type":"Role","_key":"54609","_from":"8113","_to":"34982"} +{"$label":"ACTS_IN","name":"Hank Cahill","type":"Role","_key":"46672","_from":"8113","_to":"30821"} +{"$label":"ACTS_IN","name":"Frank James","type":"Role","_key":"32204","_from":"8113","_to":"22448"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"27640","_from":"8113","_to":"19813"} +{"$label":"ACTS_IN","name":"Harry York","type":"Role","_key":"27628","_from":"8113","_to":"19805"} +{"$label":"ACTS_IN","name":"Char","type":"Role","_key":"100285","_from":"8115","_to":"59140"} +{"$label":"ACTS_IN","name":"Robert Devereux, Earl of Essex","type":"Role","_key":"72007","_from":"8115","_to":"43543"} +{"$label":"ACTS_IN","name":"Aiden","type":"Role","_key":"60303","_from":"8115","_to":"38030"} +{"$label":"ACTS_IN","name":"Galahad","type":"Role","_key":"54113","_from":"8115","_to":"34783"} +{"$label":"ACTS_IN","name":"Joe Connor","type":"Role","_key":"50230","_from":"8115","_to":"32829"} +{"$label":"ACTS_IN","name":"Buddy Wittenborn","type":"Role","_key":"41264","_from":"8115","_to":"27749"} +{"$label":"ACTS_IN","name":"Grigg","type":"Role","_key":"40655","_from":"8115","_to":"27371"} +{"$label":"ACTS_IN","name":"Adam Towers","type":"Role","_key":"25730","_from":"8115","_to":"18508"} +{"$label":"ACTS_IN","name":"Agent Eddie Zane","type":"Role","_key":"94849","_from":"8116","_to":"55853"} +{"$label":"ACTS_IN","name":"Dunbar","type":"Role","_key":"65750","_from":"8116","_to":"40705"} +{"$label":"ACTS_IN","name":"Bo \/ Vincent","type":"Role","_key":"60163","_from":"8116","_to":"37960"} +{"$label":"ACTS_IN","name":"Michael Boxer","type":"Role","_key":"52633","_from":"8116","_to":"34193"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"119766","_from":"8117","_to":"70330"} +{"$label":"ACTS_IN","name":"Dr. Jack Byron","type":"Role","_key":"68729","_from":"8117","_to":"42115"} +{"$label":"ACTS_IN","name":"Bill Natolly","type":"Role","_key":"62133","_from":"8117","_to":"39125"} +{"$label":"ACTS_IN","name":"School Boy","type":"Role","_key":"47235","_from":"8117","_to":"31128"} +{"$label":"ACTS_IN","name":"Severin Geertsen","type":"Role","_key":"119633","_from":"8118","_to":"70275"} +{"$label":"ACTS_IN","name":"Bjorn","type":"Role","_key":"101046","_from":"8118","_to":"59545"} +{"$label":"ACTS_IN","name":"Kenneth","type":"Role","_key":"68472","_from":"8118","_to":"42002"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"43729","_from":"8118","_to":"29206"} +{"$label":"ACTS_IN","name":"Sune","type":"Role","_key":"35408","_from":"8118","_to":"24090"} +{"$label":"ACTS_IN","name":"Admr. Henry D. Wheeler","type":"Role","_key":"59299","_from":"8120","_to":"37449"} +{"$label":"ACTS_IN","name":"Colonel Anderson","type":"Role","_key":"26774","_from":"8120","_to":"19236"} +{"$label":"ACTS_IN","name":"Jeff Foreman","type":"Role","_key":"59810","_from":"8121","_to":"37760"} +{"$label":"ACTS_IN","name":"Ricardo Fellove","type":"Role","_key":"55826","_from":"8121","_to":"35529"} +{"$label":"ACTS_IN","name":"Wayne Barclay","type":"Role","_key":"58142","_from":"8123","_to":"36780"} +{"$label":"ACTS_IN","name":"Richie Rich","type":"Role","_key":"57249","_from":"8123","_to":"36317"} +{"$label":"ACTS_IN","name":"Jessica's Performance Model","type":"Role","_key":"10176","_from":"8131","_to":"8126"} +{"$label":"ACTS_IN","name":"Baby Herman (voice)","type":"Role","_key":"10175","_from":"8130","_to":"8126"} +{"$label":"ACTS_IN","name":"Lt. Santino","type":"Role","_key":"10174","_from":"8129","_to":"8126"} +{"$label":"ACTS_IN","name":"R.K. Maroon","type":"Role","_key":"10173","_from":"8128","_to":"8126"} +{"$label":"ACTS_IN","name":"Marvin Acme","type":"Role","_key":"10172","_from":"8127","_to":"8126"} +{"$label":"ACTS_IN","name":"Headmaster","type":"Role","_key":"101142","_from":"8130","_to":"59587"} +{"$label":"ACTS_IN","name":"Diane Pallone","type":"Role","_key":"119985","_from":"8131","_to":"70466"} +{"$label":"ACTS_IN","name":"Eileen McWirther","type":"Role","_key":"34769","_from":"8131","_to":"23765"} +{"$label":"ACTS_IN","name":"Sergeant William Hill","type":"Role","_key":"10192","_from":"8138","_to":"8132"} +{"$label":"ACTS_IN","name":"Captain Fred Hamill","type":"Role","_key":"10191","_from":"8137","_to":"8132"} +{"$label":"ACTS_IN","name":"Private Adrian Caparzo","type":"Role","_key":"10187","_from":"8136","_to":"8132"} +{"$label":"ACTS_IN","name":"Private Richard Reiben","type":"Role","_key":"10185","_from":"8135","_to":"8132"} +{"$label":"ACTS_IN","name":"Corporal Henderson","type":"Role","_key":"10183","_from":"8134","_to":"8132"} +{"$label":"ACTS_IN","name":"Unnamed German Soldier","type":"Role","_key":"10181","_from":"8133","_to":"8132"} +{"$label":"ACTS_IN","name":"1st Sgt. Sid \"Top\" Wojo","type":"Role","_key":"97522","_from":"8134","_to":"57426"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"109714","_from":"8135","_to":"64795"} +{"$label":"ACTS_IN","name":"Barry McMullen","type":"Role","_key":"109036","_from":"8135","_to":"64434"} +{"$label":"ACTS_IN","name":"John Reed","type":"Role","_key":"108747","_from":"8135","_to":"64285"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"102593","_from":"8135","_to":"60363"} +{"$label":"ACTS_IN","name":"Mickey Fitzpatrick","type":"Role","_key":"69416","_from":"8135","_to":"42427"} +{"$label":"ACTS_IN","name":"Jake Vig","type":"Role","_key":"65391","_from":"8135","_to":"40555"} +{"$label":"ACTS_IN","name":"Travis Ryer","type":"Role","_key":"60348","_from":"8135","_to":"38062"} +{"$label":"ACTS_IN","name":"Jack Andrews","type":"Role","_key":"45169","_from":"8135","_to":"29971"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"44080","_from":"8135","_to":"29388"} +{"$label":"ACTS_IN","name":"Jordy Warsaw","type":"Role","_key":"23244","_from":"8135","_to":"16859"} +{"$label":"DIRECTED","_key":"69420","_from":"8135","_to":"42427"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"118640","_from":"8136","_to":"69757"} +{"$label":"ACTS_IN","name":"Chris Varick","type":"Role","_key":"98938","_from":"8136","_to":"58292"} +{"$label":"ACTS_IN","name":"Dominic Toretto","type":"Role","_key":"96755","_from":"8136","_to":"56916"} +{"$label":"ACTS_IN","name":"The Iron Giant (voice)","type":"Role","_key":"62935","_from":"8136","_to":"39525"} +{"$label":"ACTS_IN","name":"Shane Wolf","type":"Role","_key":"59520","_from":"8136","_to":"37579"} +{"$label":"ACTS_IN","name":"Jackie DiNorscio","type":"Role","_key":"58403","_from":"8136","_to":"36916"} +{"$label":"ACTS_IN","name":"Dominic Toretto","type":"Role","_key":"56935","_from":"8136","_to":"36141"} +{"$label":"ACTS_IN","name":"Toorop","type":"Role","_key":"53471","_from":"8136","_to":"34540"} +{"$label":"ACTS_IN","name":"Sean Vetter","type":"Role","_key":"49531","_from":"8136","_to":"32434"} +{"$label":"ACTS_IN","name":"Taylor Reese","type":"Role","_key":"46900","_from":"8136","_to":"30925"} +{"$label":"ACTS_IN","name":"Xander Cage","type":"Role","_key":"46700","_from":"8136","_to":"30829"} +{"$label":"ACTS_IN","name":"riddick","type":"Role","_key":"23618","_from":"8136","_to":"17126"} +{"$label":"ACTS_IN","name":"Richard B. Riddick","type":"Role","_key":"23601","_from":"8136","_to":"17115"} +{"$label":"ACTS_IN","name":"Richard B. Riddick","type":"Role","_key":"23575","_from":"8136","_to":"17102"} +{"$label":"DIRECTED","_key":"118639","_from":"8136","_to":"69757"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"110951","_from":"8137","_to":"65534"} +{"$label":"ACTS_IN","name":"Harry Wentworth (segment \"Something To Tide You Over\")","type":"Role","_key":"108480","_from":"8137","_to":"64123"} +{"$label":"ACTS_IN","name":"Peter Lowenstein","type":"Role","_key":"100127","_from":"8137","_to":"59059"} +{"$label":"ACTS_IN","name":"Jack Holden","type":"Role","_key":"88339","_from":"8137","_to":"52381"} +{"$label":"ACTS_IN","name":"Halbert 'Hal' Jackson","type":"Role","_key":"88145","_from":"8137","_to":"52302"} +{"$label":"ACTS_IN","name":"Don Cardigan","type":"Role","_key":"87941","_from":"8137","_to":"52222"} +{"$label":"ACTS_IN","name":"Jack Holden","type":"Role","_key":"71152","_from":"8137","_to":"43189"} +{"$label":"ACTS_IN","name":"Todd Woods","type":"Role","_key":"114836","_from":"8138","_to":"67644"} +{"$label":"ACTS_IN","name":"Richard Garsik","type":"Role","_key":"109519","_from":"8138","_to":"64693"} +{"$label":"ACTS_IN","name":"Toby Oxman","type":"Role","_key":"109475","_from":"8138","_to":"64667"} +{"$label":"ACTS_IN","name":"Veal Chop","type":"Role","_key":"107599","_from":"8138","_to":"63517"} +{"$label":"ACTS_IN","name":"Screw-On Head (voice)","type":"Role","_key":"105129","_from":"8138","_to":"61866"} +{"$label":"ACTS_IN","name":"Mr. Stan X","type":"Role","_key":"89466","_from":"8138","_to":"52971"} +{"$label":"ACTS_IN","name":"Marty Wolf","type":"Role","_key":"72475","_from":"8138","_to":"43733"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62566","_from":"8138","_to":"39371"} +{"$label":"ACTS_IN","name":"Stan Beals","type":"Role","_key":"57835","_from":"8138","_to":"36606"} +{"$label":"ACTS_IN","name":"Cleveland Heep","type":"Role","_key":"55780","_from":"8138","_to":"35507"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"55462","_from":"8138","_to":"35351"} +{"$label":"ACTS_IN","name":"Shorty","type":"Role","_key":"55101","_from":"8138","_to":"35186"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"54949","_from":"8138","_to":"35128"} +{"$label":"ACTS_IN","name":"Kenny 'Pig Vomit' Rushton","type":"Role","_key":"53662","_from":"8138","_to":"34610"} +{"$label":"ACTS_IN","name":"Nick (Santa) Claus","type":"Role","_key":"37150","_from":"8138","_to":"25172"} +{"$label":"ACTS_IN","name":"Hertz","type":"Role","_key":"29750","_from":"8138","_to":"21064"} +{"$label":"ACTS_IN","name":"Harvey Pekar","type":"Role","_key":"23460","_from":"8138","_to":"17001"} +{"$label":"ACTS_IN","name":"Inspector Uhl","type":"Role","_key":"13497","_from":"8138","_to":"10508"} +{"$label":"ACTS_IN","name":"Joe Gould","type":"Role","_key":"10947","_from":"8138","_to":"8677"} +{"$label":"ACTS_IN","name":"Limbo","type":"Role","_key":"10342","_from":"8138","_to":"8229"} +{"$label":"ACTS_IN","name":"Claire Bennett","type":"Role","_key":"10206","_from":"8146","_to":"8139"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"10202","_from":"8145","_to":"8139"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"10201","_from":"8144","_to":"8139"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"10199","_from":"8143","_to":"8139"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"10198","_from":"8142","_to":"8139"} +{"$label":"ACTS_IN","name":"Jonah Baldwin","type":"Role","_key":"10197","_from":"8141","_to":"8139"} +{"$label":"DIRECTED","_key":"10193","_from":"8140","_to":"8139"} +{"$label":"DIRECTED","_key":"65769","_from":"8140","_to":"40707"} +{"$label":"DIRECTED","_key":"56023","_from":"8140","_to":"35606"} +{"$label":"DIRECTED","_key":"54212","_from":"8140","_to":"34820"} +{"$label":"DIRECTED","_key":"24384","_from":"8140","_to":"17645"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"52508","_from":"8141","_to":"34148"} +{"$label":"ACTS_IN","name":"Doris Murphy - 3rd Base","type":"Role","_key":"68928","_from":"8142","_to":"42198"} +{"$label":"ACTS_IN","name":"A.D.A. Gina Garrett","type":"Role","_key":"53694","_from":"8142","_to":"34630"} +{"$label":"ACTS_IN","name":"Dr. Roberta Martin","type":"Role","_key":"52679","_from":"8142","_to":"34207"} +{"$label":"ACTS_IN","name":"Betty Rubble","type":"Role","_key":"10571","_from":"8142","_to":"8398"} +{"$label":"ACTS_IN","name":"Odette","type":"Role","_key":"119954","_from":"8143","_to":"70456"} +{"$label":"ACTS_IN","name":"Kelly Roark","type":"Role","_key":"62769","_from":"8143","_to":"39456"} +{"$label":"ACTS_IN","name":"Young Samantha Albertson","type":"Role","_key":"52682","_from":"8143","_to":"34207"} +{"$label":"ACTS_IN","name":"Mazy Russell","type":"Role","_key":"22224","_from":"8143","_to":"16185"} +{"$label":"ACTS_IN","name":"Beth Wexler","type":"Role","_key":"119423","_from":"8144","_to":"70162"} +{"$label":"ACTS_IN","name":"Judith Messerman","type":"Role","_key":"115329","_from":"8144","_to":"67904"} +{"$label":"ACTS_IN","name":"Anne Crane","type":"Role","_key":"98533","_from":"8144","_to":"58070"} +{"$label":"ACTS_IN","name":"Terri Bratley","type":"Role","_key":"97500","_from":"8144","_to":"57409"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"88782","_from":"8144","_to":"52605"} +{"$label":"ACTS_IN","name":"Liz Langston","type":"Role","_key":"52813","_from":"8144","_to":"34247"} +{"$label":"ACTS_IN","name":"Chrissy DeWitt Williams","type":"Role","_key":"52685","_from":"8144","_to":"34207"} +{"$label":"ACTS_IN","name":"Ellie Graham","type":"Role","_key":"34105","_from":"8144","_to":"23435"} +{"$label":"DIRECTED","_key":"33098","_from":"8144","_to":"22931"} +{"$label":"ACTS_IN","name":"Mrs. Reed","type":"Role","_key":"61207","_from":"8146","_to":"38666"} +{"$label":"ACTS_IN","name":"Judge Tompkins","type":"Role","_key":"34742","_from":"8146","_to":"23754"} +{"$label":"ACTS_IN","name":"Dr. Suzanne Alexander","type":"Role","_key":"30407","_from":"8146","_to":"21378"} +{"$label":"ACTS_IN","name":"Margaret Alford\/Margaret Addams","type":"Role","_key":"24231","_from":"8146","_to":"17551"} +{"$label":"ACTS_IN","name":"Ruth Kelson","type":"Role","_key":"22439","_from":"8146","_to":"16308"} +{"$label":"ACTS_IN","name":"Miss Millie","type":"Role","_key":"10388","_from":"8146","_to":"8260"} +{"$label":"ACTS_IN","name":"Ad\u00e8le","type":"Role","_key":"10219","_from":"8153","_to":"8147"} +{"$label":"ACTS_IN","name":"Emilie","type":"Role","_key":"10218","_from":"8152","_to":"8147"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"10217","_from":"8151","_to":"8147"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"10216","_from":"8150","_to":"8147"} +{"$label":"ACTS_IN","name":"Azolan","type":"Role","_key":"10215","_from":"8149","_to":"8147"} +{"$label":"ACTS_IN","name":"Madame de Rosemonde","type":"Role","_key":"10213","_from":"8148","_to":"8147"} +{"$label":"ACTS_IN","name":"Ethel Banks","type":"Role","_key":"114224","_from":"8148","_to":"67279"} +{"$label":"ACTS_IN","name":"Jenny Grant","type":"Role","_key":"71229","_from":"8148","_to":"43224"} +{"$label":"ACTS_IN","name":"Miss Ivy Gravely","type":"Role","_key":"68614","_from":"8148","_to":"42064"} +{"$label":"ACTS_IN","name":"Mabel Pritchard","type":"Role","_key":"33508","_from":"8148","_to":"23176"} +{"$label":"ACTS_IN","name":"Mrs. Costello","type":"Role","_key":"33497","_from":"8148","_to":"23170"} +{"$label":"ACTS_IN","name":"The Widow Sarah Tillane","type":"Role","_key":"26005","_from":"8148","_to":"18693"} +{"$label":"ACTS_IN","name":"Malcolm Tucker","type":"Role","_key":"121279","_from":"8149","_to":"71254"} +{"$label":"ACTS_IN","name":"Max Roy","type":"Role","_key":"119027","_from":"8149","_to":"69971"} +{"$label":"ACTS_IN","name":"Angus Flint","type":"Role","_key":"69271","_from":"8149","_to":"42352"} +{"$label":"ACTS_IN","name":"Oldsen","type":"Role","_key":"68710","_from":"8149","_to":"42100"} +{"$label":"ACTS_IN","name":"Gareth","type":"Role","_key":"12505","_from":"8149","_to":"9790"} +{"$label":"ACTS_IN","name":"Finley","type":"Role","_key":"95714","_from":"8150","_to":"56295"} +{"$label":"ACTS_IN","name":"Captain Gudnayev","type":"Role","_key":"14370","_from":"8150","_to":"11114"} +{"$label":"ACTS_IN","name":"Paul Richter","type":"Role","_key":"10230","_from":"8162","_to":"8154"} +{"$label":"ACTS_IN","name":"Col. Joe Conley","type":"Role","_key":"10229","_from":"8161","_to":"8154"} +{"$label":"ACTS_IN","name":"Lyle Watson","type":"Role","_key":"10228","_from":"8160","_to":"8154"} +{"$label":"ACTS_IN","name":"Arthur Cabot","type":"Role","_key":"10227","_from":"8159","_to":"8154"} +{"$label":"ACTS_IN","name":"Pat Healy","type":"Role","_key":"10226","_from":"8158","_to":"8154"} +{"$label":"ACTS_IN","name":"General Jack Beringer","type":"Role","_key":"10225","_from":"8157","_to":"8154"} +{"$label":"ACTS_IN","name":"Jennifer Katherine Mack","type":"Role","_key":"10224","_from":"8156","_to":"8154"} +{"$label":"DIRECTED","_key":"10220","_from":"8155","_to":"8154"} +{"$label":"DIRECTED","_key":"69531","_from":"8155","_to":"42467"} +{"$label":"DIRECTED","_key":"67272","_from":"8155","_to":"41479"} +{"$label":"DIRECTED","_key":"66328","_from":"8155","_to":"41029"} +{"$label":"DIRECTED","_key":"63691","_from":"8155","_to":"39831"} +{"$label":"DIRECTED","_key":"53692","_from":"8155","_to":"34630"} +{"$label":"DIRECTED","_key":"42984","_from":"8155","_to":"28715"} +{"$label":"DIRECTED","_key":"35085","_from":"8155","_to":"23924"} +{"$label":"DIRECTED","_key":"22152","_from":"8155","_to":"16152"} +{"$label":"DIRECTED","_key":"18168","_from":"8155","_to":"13485"} +{"$label":"DIRECTED","_key":"15282","_from":"8155","_to":"11700"} +{"$label":"ACTS_IN","name":"Connie Hopper","type":"Role","_key":"118101","_from":"8156","_to":"69414"} +{"$label":"ACTS_IN","name":"Dr. Reynolds","type":"Role","_key":"106690","_from":"8156","_to":"62873"} +{"$label":"ACTS_IN","name":"J. C. Walenski","type":"Role","_key":"95562","_from":"8156","_to":"56195"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"95296","_from":"8156","_to":"56065"} +{"$label":"ACTS_IN","name":"Leslie Hunter","type":"Role","_key":"70649","_from":"8156","_to":"42993"} +{"$label":"ACTS_IN","name":"Sara Reid","type":"Role","_key":"62165","_from":"8156","_to":"39152"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"36597","_from":"8156","_to":"24806"} +{"$label":"ACTS_IN","name":"Theresa Luna","type":"Role","_key":"22188","_from":"8156","_to":"16172"} +{"$label":"ACTS_IN","name":"Jessie Montgomery","type":"Role","_key":"22153","_from":"8156","_to":"16157"} +{"$label":"ACTS_IN","name":"Stephanie Spec","type":"Role","_key":"22146","_from":"8156","_to":"16152"} +{"$label":"ACTS_IN","name":"Allison Reynolds","type":"Role","_key":"18384","_from":"8156","_to":"13632"} +{"$label":"ACTS_IN","name":"Pembry","type":"Role","_key":"120181","_from":"8157","_to":"70585"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"116547","_from":"8157","_to":"68602"} +{"$label":"ACTS_IN","name":"C.J.","type":"Role","_key":"108894","_from":"8157","_to":"64354"} +{"$label":"ACTS_IN","name":"Officer Don","type":"Role","_key":"108426","_from":"8157","_to":"64098"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"102185","_from":"8157","_to":"60132"} +{"$label":"ACTS_IN","name":"Lodger","type":"Role","_key":"88953","_from":"8157","_to":"52694"} +{"$label":"ACTS_IN","name":"Mr. Emery Collins","type":"Role","_key":"63615","_from":"8157","_to":"39797"} +{"$label":"ACTS_IN","name":"Ellis","type":"Role","_key":"45547","_from":"8157","_to":"30156"} +{"$label":"ACTS_IN","name":"Theater Manager","type":"Role","_key":"66208","_from":"8162","_to":"40960"} +{"$label":"ACTS_IN","name":"Bob McClane","type":"Role","_key":"10242","_from":"8167","_to":"8163"} +{"$label":"ACTS_IN","name":"Dr. Edgemar","type":"Role","_key":"10241","_from":"8166","_to":"8163"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"10239","_from":"8165","_to":"8163"} +{"$label":"ACTS_IN","name":"Melina","type":"Role","_key":"10235","_from":"8164","_to":"8163"} +{"$label":"ACTS_IN","name":"Officer Landers","type":"Role","_key":"113785","_from":"8164","_to":"67043"} +{"$label":"ACTS_IN","name":"Kim Brandon","type":"Role","_key":"110128","_from":"8164","_to":"65075"} +{"$label":"ACTS_IN","name":"Carmen's Mother","type":"Role","_key":"56660","_from":"8164","_to":"35987"} +{"$label":"ACTS_IN","name":"Rosa Martinez","type":"Role","_key":"52146","_from":"8164","_to":"33986"} +{"$label":"ACTS_IN","name":"Dr. Martinez","type":"Role","_key":"45397","_from":"8164","_to":"30097"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"18264","_from":"8164","_to":"13549"} +{"$label":"ACTS_IN","name":"Do\u00f1a Inez","type":"Role","_key":"16494","_from":"8164","_to":"12457"} +{"$label":"ACTS_IN","name":"Sally Bishop","type":"Role","_key":"15080","_from":"8164","_to":"11583"} +{"$label":"ACTS_IN","name":"Tu","type":"Role","_key":"114124","_from":"8166","_to":"67211"} +{"$label":"ACTS_IN","name":"Fed. Agent Davis","type":"Role","_key":"55091","_from":"8166","_to":"35180"} +{"$label":"ACTS_IN","name":"Norris Prescott","type":"Role","_key":"113837","_from":"8167","_to":"67053"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"102011","_from":"8167","_to":"60025"} +{"$label":"ACTS_IN","name":"Sheriff Briggs","type":"Role","_key":"65610","_from":"8167","_to":"40653"} +{"$label":"ACTS_IN","name":"Mr. Powers","type":"Role","_key":"58739","_from":"8167","_to":"37102"} +{"$label":"ACTS_IN","name":"Dr. Stan Powell","type":"Role","_key":"22528","_from":"8167","_to":"16367"} +{"$label":"ACTS_IN","name":"Col. Forsyth","type":"Role","_key":"21412","_from":"8167","_to":"15659"} +{"$label":"ACTS_IN","name":"Hannah (voice)","type":"Role","_key":"10255","_from":"8175","_to":"8168"} +{"$label":"ACTS_IN","name":"Sid (voice)","type":"Role","_key":"10252","_from":"8174","_to":"8168"} +{"$label":"ACTS_IN","name":"Rex (voice)","type":"Role","_key":"10249","_from":"8173","_to":"8168"} +{"$label":"ACTS_IN","name":"Slinky Dog (voice)","type":"Role","_key":"10248","_from":"8172","_to":"8168"} +{"$label":"ACTS_IN","name":"Andy (voice)","type":"Role","_key":"10246","_from":"8171","_to":"8168"} +{"$label":"ACTS_IN","name":"Buzz Lightyear (voice)","type":"Role","_key":"10245","_from":"8170","_to":"8168"} +{"$label":"DIRECTED","_key":"10243","_from":"8169","_to":"8168"} +{"$label":"DIRECTED","_key":"97564","_from":"8169","_to":"57452"} +{"$label":"DIRECTED","_key":"97541","_from":"8169","_to":"57441"} +{"$label":"DIRECTED","_key":"97540","_from":"8169","_to":"57440"} +{"$label":"DIRECTED","_key":"97539","_from":"8169","_to":"57439"} +{"$label":"DIRECTED","_key":"97538","_from":"8169","_to":"57438"} +{"$label":"DIRECTED","_key":"54198","_from":"8169","_to":"34813"} +{"$label":"DIRECTED","_key":"10931","_from":"8169","_to":"8670"} +{"$label":"DIRECTED","_key":"10256","_from":"8169","_to":"8176"} +{"$label":"ACTS_IN","name":"Buzz Lightyear","type":"Role","_key":"107937","_from":"8170","_to":"63745"} +{"$label":"ACTS_IN","name":"Jack Sheppard","type":"Role","_key":"98535","_from":"8170","_to":"58071"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"96239","_from":"8170","_to":"56561"} +{"$label":"ACTS_IN","name":"Luther Krank","type":"Role","_key":"95814","_from":"8170","_to":"56354"} +{"$label":"ACTS_IN","name":"Chet Frank","type":"Role","_key":"89297","_from":"8170","_to":"52865"} +{"$label":"ACTS_IN","name":"Joe Scheffer","type":"Role","_key":"89254","_from":"8170","_to":"52848"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"69591","_from":"8170","_to":"42487"} +{"$label":"ACTS_IN","name":"Doug Madsen","type":"Role","_key":"68493","_from":"8170","_to":"42015"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"62854","_from":"8170","_to":"39498"} +{"$label":"ACTS_IN","name":"Buzz Lightyear (voice)","type":"Role","_key":"61601","_from":"8170","_to":"38829"} +{"$label":"ACTS_IN","name":"Dave Douglas","type":"Role","_key":"60176","_from":"8170","_to":"37970"} +{"$label":"ACTS_IN","name":"Michael Cromwell","type":"Role","_key":"53920","_from":"8170","_to":"34701"} +{"$label":"ACTS_IN","name":"Scott Calvin \/ Santa Clause","type":"Role","_key":"52044","_from":"8170","_to":"33935"} +{"$label":"ACTS_IN","name":"Eliot Arnold","type":"Role","_key":"18985","_from":"8170","_to":"14034"} +{"$label":"ACTS_IN","name":"Jason Nesmith","type":"Role","_key":"11027","_from":"8170","_to":"8725"} +{"$label":"ACTS_IN","name":"Buzz Lightyear (voice)","type":"Role","_key":"10267","_from":"8170","_to":"8176"} +{"$label":"ACTS_IN","name":"Andy (voice)","type":"Role","_key":"10266","_from":"8171","_to":"8176"} +{"$label":"ACTS_IN","name":"Ernest P. Worrell","type":"Role","_key":"118252","_from":"8172","_to":"69512"} +{"$label":"ACTS_IN","name":"Ernest P. Worrell","type":"Role","_key":"118200","_from":"8172","_to":"69472"} +{"$label":"ACTS_IN","name":"Jed Clampett","type":"Role","_key":"67506","_from":"8172","_to":"41572"} +{"$label":"ACTS_IN","name":"Slinky Dog (voice)","type":"Role","_key":"10261","_from":"8172","_to":"8176"} +{"$label":"ACTS_IN","name":"Rex (voice)","type":"Role","_key":"61607","_from":"8173","_to":"38829"} +{"$label":"ACTS_IN","name":"Principal Fetchit","type":"Role","_key":"58938","_from":"8173","_to":"37214"} +{"$label":"ACTS_IN","name":"Dr. Elliott Coleye","type":"Role","_key":"57470","_from":"8173","_to":"36425"} +{"$label":"ACTS_IN","name":"Sy","type":"Role","_key":"55641","_from":"8173","_to":"35428"} +{"$label":"ACTS_IN","name":"Register's Reporter","type":"Role","_key":"49308","_from":"8173","_to":"32288"} +{"$label":"ACTS_IN","name":"Munk","type":"Role","_key":"37170","_from":"8173","_to":"25176"} +{"$label":"ACTS_IN","name":"George Bond","type":"Role","_key":"23502","_from":"8173","_to":"17030"} +{"$label":"ACTS_IN","name":"Vizzini","type":"Role","_key":"21703","_from":"8173","_to":"15866"} +{"$label":"ACTS_IN","name":"Canadian Prime Minister Clark MacDonald","type":"Role","_key":"15458","_from":"8173","_to":"11805"} +{"$label":"ACTS_IN","name":"Rex the Green Dinosaur (voice)","type":"Role","_key":"10262","_from":"8173","_to":"8176"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"109043","_from":"8174","_to":"64440"} +{"$label":"ACTS_IN","name":"Deacon (as Erik Von Detten)","type":"Role","_key":"103835","_from":"8174","_to":"61064"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"102909","_from":"8174","_to":"60539"} +{"$label":"ACTS_IN","name":"Kenton","type":"Role","_key":"102895","_from":"8174","_to":"60527"} +{"$label":"ACTS_IN","name":"Jessie, the Yodeling Cowgirl (voice)","type":"Role","_key":"10258","_from":"8177","_to":"8176"} +{"$label":"ACTS_IN","name":"Hannah Stubbs","type":"Role","_key":"109011","_from":"8177","_to":"64421"} +{"$label":"ACTS_IN","name":"Rachel Bitterman","type":"Role","_key":"94068","_from":"8177","_to":"55398"} +{"$label":"ACTS_IN","name":"Marsha Dillon","type":"Role","_key":"93356","_from":"8177","_to":"54992"} +{"$label":"ACTS_IN","name":"Blair Litton","type":"Role","_key":"90697","_from":"8177","_to":"53542"} +{"$label":"ACTS_IN","name":"Alsatia Zevo","type":"Role","_key":"70972","_from":"8177","_to":"43106"} +{"$label":"ACTS_IN","name":"Gail Dwyer","type":"Role","_key":"70068","_from":"8177","_to":"42720"} +{"$label":"ACTS_IN","name":"Emily Montgomery","type":"Role","_key":"65913","_from":"8177","_to":"40773"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"65213","_from":"8177","_to":"40495"} +{"$label":"ACTS_IN","name":"Evelyn Laplante","type":"Role","_key":"65127","_from":"8177","_to":"40453"} +{"$label":"ACTS_IN","name":"Ruth Meyers","type":"Role","_key":"64105","_from":"8177","_to":"40004"} +{"$label":"ACTS_IN","name":"Jonesy","type":"Role","_key":"63480","_from":"8177","_to":"39755"} +{"$label":"ACTS_IN","name":"Jessie the Yodeling Cowgirl (voice)","type":"Role","_key":"61602","_from":"8177","_to":"38829"} +{"$label":"ACTS_IN","name":"Judge De Salvo","type":"Role","_key":"59534","_from":"8177","_to":"37583"} +{"$label":"ACTS_IN","name":"Abby Mallard","type":"Role","_key":"58937","_from":"8177","_to":"37214"} +{"$label":"ACTS_IN","name":"Marcella","type":"Role","_key":"53834","_from":"8177","_to":"34677"} +{"$label":"ACTS_IN","name":"Franny","type":"Role","_key":"51925","_from":"8177","_to":"33869"} +{"$label":"ACTS_IN","name":"Aunt Millie","type":"Role","_key":"49304","_from":"8177","_to":"32288"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"36026","_from":"8177","_to":"24460"} +{"$label":"ACTS_IN","name":"Peggy Flemming","type":"Role","_key":"34104","_from":"8177","_to":"23435"} +{"$label":"ACTS_IN","name":"Jenny Portman","type":"Role","_key":"32940","_from":"8177","_to":"22845"} +{"$label":"ACTS_IN","name":"Cyn","type":"Role","_key":"27618","_from":"8177","_to":"19802"} +{"$label":"ACTS_IN","name":"Debbie Jellinsky","type":"Role","_key":"23318","_from":"8177","_to":"16901"} +{"$label":"ACTS_IN","name":"Cheryl Lang","type":"Role","_key":"11890","_from":"8177","_to":"9323"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"10278","_from":"8187","_to":"8178"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"10277","_from":"8186","_to":"8178"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"10276","_from":"8185","_to":"8178"} +{"$label":"ACTS_IN","name":"Josef Grool","type":"Role","_key":"10275","_from":"8184","_to":"8178"} +{"$label":"ACTS_IN","name":"Yul Brenner","type":"Role","_key":"10272","_from":"8183","_to":"8178"} +{"$label":"ACTS_IN","name":"Junior Bevil","type":"Role","_key":"10271","_from":"8182","_to":"8178"} +{"$label":"ACTS_IN","name":"Sanka Coffie","type":"Role","_key":"10270","_from":"8181","_to":"8178"} +{"$label":"ACTS_IN","name":"Derice Bannock","type":"Role","_key":"10269","_from":"8180","_to":"8178"} +{"$label":"DIRECTED","_key":"10268","_from":"8179","_to":"8178"} +{"$label":"DIRECTED","_key":"108649","_from":"8179","_to":"64208"} +{"$label":"DIRECTED","_key":"89565","_from":"8179","_to":"53001"} +{"$label":"DIRECTED","_key":"88122","_from":"8179","_to":"52298"} +{"$label":"DIRECTED","_key":"52945","_from":"8179","_to":"34307"} +{"$label":"DIRECTED","_key":"44500","_from":"8179","_to":"29641"} +{"$label":"DIRECTED","_key":"30412","_from":"8179","_to":"21378"} +{"$label":"DIRECTED","_key":"17949","_from":"8179","_to":"13353"} +{"$label":"DIRECTED","_key":"17902","_from":"8179","_to":"13324"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116134","_from":"8180","_to":"68369"} +{"$label":"ACTS_IN","name":"Jimmy Sands","type":"Role","_key":"63680","_from":"8180","_to":"39828"} +{"$label":"ACTS_IN","name":"Gavin","type":"Role","_key":"111505","_from":"8183","_to":"65841"} +{"$label":"ACTS_IN","name":"Watch Man","type":"Role","_key":"40168","_from":"8183","_to":"27113"} +{"$label":"ACTS_IN","name":"Styles","type":"Role","_key":"71553","_from":"8184","_to":"43346"} +{"$label":"ACTS_IN","name":"Felder","type":"Role","_key":"47309","_from":"8184","_to":"31161"} +{"$label":"ACTS_IN","name":"Sergei Kirov","type":"Role","_key":"17979","_from":"8184","_to":"13369"} +{"$label":"ACTS_IN","name":"Mic","type":"Role","_key":"10291","_from":"8195","_to":"8188"} +{"$label":"ACTS_IN","name":"Subzero","type":"Role","_key":"10290","_from":"8194","_to":"8188"} +{"$label":"ACTS_IN","name":"Buzzsaw","type":"Role","_key":"10289","_from":"8193","_to":"8188"} +{"$label":"ACTS_IN","name":"Harold Weiss","type":"Role","_key":"10288","_from":"8192","_to":"8188"} +{"$label":"ACTS_IN","name":"Damon Killian","type":"Role","_key":"10282","_from":"8191","_to":"8188"} +{"$label":"DIRECTED","_key":"10280","_from":"8190","_to":"8188"} +{"$label":"DIRECTED","_key":"10279","_from":"8189","_to":"8188"} +{"$label":"DIRECTED","_key":"109545","_from":"8189","_to":"64707"} +{"$label":"DIRECTED","_key":"70327","_from":"8189","_to":"42848"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"45396","_from":"8189","_to":"30097"} +{"$label":"DIRECTED","_key":"88154","_from":"8190","_to":"52304"} +{"$label":"DIRECTED","_key":"57593","_from":"8190","_to":"36473"} +{"$label":"DIRECTED","_key":"53592","_from":"8190","_to":"34584"} +{"$label":"DIRECTED","_key":"51056","_from":"8190","_to":"33312"} +{"$label":"DIRECTED","_key":"49039","_from":"8190","_to":"32134"} +{"$label":"DIRECTED","_key":"37538","_from":"8190","_to":"25451"} +{"$label":"DIRECTED","_key":"33148","_from":"8190","_to":"22958"} +{"$label":"DIRECTED","_key":"30808","_from":"8190","_to":"21596"} +{"$label":"DIRECTED","_key":"17028","_from":"8190","_to":"12774"} +{"$label":"ACTS_IN","name":"Lao","type":"Role","_key":"91374","_from":"8194","_to":"53887"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113567","_from":"8195","_to":"66916"} +{"$label":"ACTS_IN","name":"Smee","type":"Role","_key":"10306","_from":"8202","_to":"8196"} +{"$label":"ACTS_IN","name":"Michael Llewelyn Davies","type":"Role","_key":"10303","_from":"8201","_to":"8196"} +{"$label":"ACTS_IN","name":"George Llewelyn Davies","type":"Role","_key":"10302","_from":"8200","_to":"8196"} +{"$label":"ACTS_IN","name":"Jack Llewelyn Davies","type":"Role","_key":"10301","_from":"8199","_to":"8196"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"10300","_from":"8198","_to":"8196"} +{"$label":"DIRECTED","_key":"10293","_from":"8197","_to":"8196"} +{"$label":"DIRECTED","_key":"65631","_from":"8197","_to":"40670"} +{"$label":"DIRECTED","_key":"50325","_from":"8197","_to":"32879"} +{"$label":"DIRECTED","_key":"48002","_from":"8197","_to":"31581"} +{"$label":"DIRECTED","_key":"47614","_from":"8197","_to":"31376"} +{"$label":"DIRECTED","_key":"12617","_from":"8197","_to":"9865"} +{"$label":"DIRECTED","_key":"12331","_from":"8197","_to":"9655"} +{"$label":"ACTS_IN","name":"Mary Lennox","type":"Role","_key":"68722","_from":"8198","_to":"42113"} +{"$label":"ACTS_IN","name":"Silk","type":"Role","_key":"113234","_from":"8202","_to":"66717"} +{"$label":"ACTS_IN","name":"Civil servant","type":"Role","_key":"107767","_from":"8202","_to":"63633"} +{"$label":"ACTS_IN","name":"Barton Snode","type":"Role","_key":"95380","_from":"8202","_to":"56102"} +{"$label":"ACTS_IN","name":"Robert Cecil","type":"Role","_key":"72006","_from":"8202","_to":"43543"} +{"$label":"ACTS_IN","name":"Schatzmeister","type":"Role","_key":"65431","_from":"8202","_to":"40563"} +{"$label":"ACTS_IN","name":"Truman Capote","type":"Role","_key":"55438","_from":"8202","_to":"35334"} +{"$label":"ACTS_IN","name":"Ollie","type":"Role","_key":"40037","_from":"8202","_to":"27031"} +{"$label":"ACTS_IN","name":"Gerard Dou","type":"Role","_key":"32645","_from":"8202","_to":"22682"} +{"$label":"ACTS_IN","name":"Jackie Kinsella","type":"Role","_key":"10318","_from":"8211","_to":"8203"} +{"$label":"ACTS_IN","name":"Peter Farrell","type":"Role","_key":"10317","_from":"8210","_to":"8203"} +{"$label":"ACTS_IN","name":"Gus Hale","type":"Role","_key":"10316","_from":"8209","_to":"8203"} +{"$label":"ACTS_IN","name":"Mrs. McEvoy","type":"Role","_key":"10315","_from":"8208","_to":"8203"} +{"$label":"ACTS_IN","name":"Samantha Moore","type":"Role","_key":"10313","_from":"8207","_to":"8203"} +{"$label":"ACTS_IN","name":"Judy Marks","type":"Role","_key":"10312","_from":"8206","_to":"8203"} +{"$label":"ACTS_IN","name":"Zeke Hawkins","type":"Role","_key":"10309","_from":"8205","_to":"8203"} +{"$label":"DIRECTED","_key":"10307","_from":"8204","_to":"8203"} +{"$label":"DIRECTED","_key":"118815","_from":"8204","_to":"69847"} +{"$label":"DIRECTED","_key":"96265","_from":"8204","_to":"56564"} +{"$label":"DIRECTED","_key":"63666","_from":"8204","_to":"39823"} +{"$label":"DIRECTED","_key":"61687","_from":"8204","_to":"38857"} +{"$label":"DIRECTED","_key":"59266","_from":"8204","_to":"37436"} +{"$label":"DIRECTED","_key":"57486","_from":"8204","_to":"36435"} +{"$label":"DIRECTED","_key":"54648","_from":"8204","_to":"35000"} +{"$label":"DIRECTED","_key":"54152","_from":"8204","_to":"34789"} +{"$label":"DIRECTED","_key":"53166","_from":"8204","_to":"34396"} +{"$label":"DIRECTED","_key":"48342","_from":"8204","_to":"31740"} +{"$label":"DIRECTED","_key":"12030","_from":"8204","_to":"9432"} +{"$label":"ACTS_IN","name":"Mayor's Chief of Staff","type":"Role","_key":"105344","_from":"8205","_to":"61982"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"102802","_from":"8205","_to":"60471"} +{"$label":"ACTS_IN","name":"Mark Phipps","type":"Role","_key":"98357","_from":"8205","_to":"57925"} +{"$label":"ACTS_IN","name":"Paul Guell","type":"Role","_key":"88951","_from":"8205","_to":"52694"} +{"$label":"ACTS_IN","name":"Max Kirkpatrick","type":"Role","_key":"72422","_from":"8205","_to":"43717"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"65181","_from":"8205","_to":"40485"} +{"$label":"ACTS_IN","name":"Detective Hunter Rush","type":"Role","_key":"57502","_from":"8205","_to":"36436"} +{"$label":"ACTS_IN","name":"Steve Baker","type":"Role","_key":"53765","_from":"8205","_to":"34654"} +{"$label":"ACTS_IN","name":"Joe Casella","type":"Role","_key":"36373","_from":"8205","_to":"24671"} +{"$label":"ACTS_IN","name":"Brian McCaffrey","type":"Role","_key":"24327","_from":"8205","_to":"17621"} +{"$label":"ACTS_IN","name":"Garet","type":"Role","_key":"20263","_from":"8205","_to":"14861"} +{"$label":"ACTS_IN","name":"Joe Hurley","type":"Role","_key":"13729","_from":"8205","_to":"10658"} +{"$label":"ACTS_IN","name":"Elaine Fox","type":"Role","_key":"108335","_from":"8206","_to":"64040"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"103552","_from":"8206","_to":"60907"} +{"$label":"ACTS_IN","name":"Beverly Hughes","type":"Role","_key":"95437","_from":"8206","_to":"56146"} +{"$label":"ACTS_IN","name":"Ann Morris","type":"Role","_key":"93949","_from":"8206","_to":"55322"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"60954","_from":"8206","_to":"38506"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"46982","_from":"8206","_to":"30977"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"14517","_from":"8206","_to":"11198"} +{"$label":"ACTS_IN","name":"Connie Kowalski","type":"Role","_key":"13904","_from":"8206","_to":"10792"} +{"$label":"ACTS_IN","name":"Harriet Hobson","type":"Role","_key":"119754","_from":"8208","_to":"70323"} +{"$label":"ACTS_IN","name":"Alice Baring","type":"Role","_key":"114436","_from":"8208","_to":"67412"} +{"$label":"ACTS_IN","name":"Betsy Collander","type":"Role","_key":"55981","_from":"8208","_to":"35588"} +{"$label":"ACTS_IN","name":"Bithiah","type":"Role","_key":"44957","_from":"8208","_to":"29886"} +{"$label":"ACTS_IN","name":"Miss Evans","type":"Role","_key":"27846","_from":"8208","_to":"19960"} +{"$label":"ACTS_IN","name":"Milo Roberts","type":"Role","_key":"23436","_from":"8208","_to":"16993"} +{"$label":"ACTS_IN","name":"Helena Glabrus","type":"Role","_key":"11499","_from":"8208","_to":"9041"} +{"$label":"ACTS_IN","name":"Benjamin Wells","type":"Role","_key":"96013","_from":"8210","_to":"56439"} +{"$label":"ACTS_IN","name":"Charles Warren","type":"Role","_key":"65646","_from":"8210","_to":"40672"} +{"$label":"ACTS_IN","name":"Freddie Dayton","type":"Role","_key":"41713","_from":"8210","_to":"27984"} +{"$label":"ACTS_IN","name":"Ed Conklin","type":"Role","_key":"40194","_from":"8210","_to":"27133"} +{"$label":"ACTS_IN","name":"Amalia","type":"Role","_key":"17080","_from":"8211","_to":"12799"} +{"$label":"ACTS_IN","name":"Young Tsotsi","type":"Role","_key":"10335","_from":"8228","_to":"8212"} +{"$label":"ACTS_IN","name":"Tsotsi's Mother","type":"Role","_key":"10334","_from":"8227","_to":"8212"} +{"$label":"ACTS_IN","name":"Tsotsi's father","type":"Role","_key":"10333","_from":"8226","_to":"8212"} +{"$label":"ACTS_IN","name":"Gumboot Dlamini","type":"Role","_key":"10332","_from":"8225","_to":"8212"} +{"$label":"ACTS_IN","name":"Soekie","type":"Role","_key":"10331","_from":"8224","_to":"8212"} +{"$label":"ACTS_IN","name":"Sergeant Zuma","type":"Role","_key":"10330","_from":"8223","_to":"8212"} +{"$label":"ACTS_IN","name":"Captain Smit","type":"Role","_key":"10329","_from":"8222","_to":"8212"} +{"$label":"ACTS_IN","name":"Pumla Dube","type":"Role","_key":"10328","_from":"8221","_to":"8212"} +{"$label":"ACTS_IN","name":"John Dube","type":"Role","_key":"10327","_from":"8220","_to":"8212"} +{"$label":"ACTS_IN","name":"Fela","type":"Role","_key":"10326","_from":"8219","_to":"8212"} +{"$label":"ACTS_IN","name":"Butcher","type":"Role","_key":"10325","_from":"8218","_to":"8212"} +{"$label":"ACTS_IN","name":"Aap","type":"Role","_key":"10324","_from":"8217","_to":"8212"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"10323","_from":"8216","_to":"8212"} +{"$label":"ACTS_IN","name":"Morris","type":"Role","_key":"10322","_from":"8215","_to":"8212"} +{"$label":"ACTS_IN","name":"Tsotsi","type":"Role","_key":"10321","_from":"8214","_to":"8212"} +{"$label":"DIRECTED","_key":"10320","_from":"8213","_to":"8212"} +{"$label":"ACTS_IN","name":"Bruce McNabb","type":"Role","_key":"89585","_from":"8213","_to":"53008"} +{"$label":"DIRECTED","_key":"36022","_from":"8213","_to":"24454"} +{"$label":"DIRECTED","_key":"18084","_from":"8213","_to":"13433"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"12037","_from":"8216","_to":"9432"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"113485","_from":"8217","_to":"66866"} +{"$label":"ACTS_IN","name":"Tula","type":"Role","_key":"57376","_from":"8221","_to":"36369"} +{"$label":"ACTS_IN","name":"John Traherne","type":"Role","_key":"102726","_from":"8222","_to":"60425"} +{"$label":"ACTS_IN","name":"Hoppie Gruenewald","type":"Role","_key":"97030","_from":"8222","_to":"57064"} +{"$label":"ACTS_IN","name":"Piet M\u00fcller","type":"Role","_key":"95129","_from":"8222","_to":"55976"} +{"$label":"ACTS_IN","name":"Captain Rogers, DHS","type":"Role","_key":"60564","_from":"8222","_to":"38218"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"55967","_from":"8222","_to":"35579"} +{"$label":"ACTS_IN","name":"Gerhard Snyman","type":"Role","_key":"41784","_from":"8222","_to":"28031"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"13405","_from":"8222","_to":"10427"} +{"$label":"ACTS_IN","name":"Rajiv","type":"Role","_key":"60499","_from":"8223","_to":"38170"} +{"$label":"ACTS_IN","name":"Red Soldier","type":"Role","_key":"10346","_from":"8234","_to":"8229"} +{"$label":"ACTS_IN","name":"Senator Nado","type":"Role","_key":"10344","_from":"8233","_to":"8229"} +{"$label":"ACTS_IN","name":"Daena","type":"Role","_key":"10341","_from":"8232","_to":"8229"} +{"$label":"ACTS_IN","name":"Karubi","type":"Role","_key":"10340","_from":"8231","_to":"8229"} +{"$label":"ACTS_IN","name":"Leo Davidson","type":"Role","_key":"10336","_from":"8230","_to":"8229"} +{"$label":"ACTS_IN","name":"Leo Handler","type":"Role","_key":"120138","_from":"8230","_to":"70564"} +{"$label":"ACTS_IN","name":"Lewis Bartholamew","type":"Role","_key":"94482","_from":"8230","_to":"55646"} +{"$label":"ACTS_IN","name":"Max Payne","type":"Role","_key":"92175","_from":"8230","_to":"54404"} +{"$label":"ACTS_IN","name":"Chris 'Izzy' Cole","type":"Role","_key":"89944","_from":"8230","_to":"53214"} +{"$label":"ACTS_IN","name":"Vince Papale","type":"Role","_key":"71309","_from":"8230","_to":"43258"} +{"$label":"ACTS_IN","name":"Charlie Croker","type":"Role","_key":"65659","_from":"8230","_to":"40679"} +{"$label":"ACTS_IN","name":"David McCall","type":"Role","_key":"63959","_from":"8230","_to":"39949"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"63544","_from":"8230","_to":"39775"} +{"$label":"ACTS_IN","name":"Charlie Croker","type":"Role","_key":"55304","_from":"8230","_to":"35264"} +{"$label":"ACTS_IN","name":"Detective Danny Wallace","type":"Role","_key":"53968","_from":"8230","_to":"34719"} +{"$label":"ACTS_IN","name":"Melvin Smiley","type":"Role","_key":"53930","_from":"8230","_to":"34704"} +{"$label":"ACTS_IN","name":"Elliot Moore","type":"Role","_key":"50290","_from":"8230","_to":"32858"} +{"$label":"ACTS_IN","name":"Bobby Mercer","type":"Role","_key":"48965","_from":"8230","_to":"32108"} +{"$label":"ACTS_IN","name":"Jack Salmon","type":"Role","_key":"47623","_from":"8230","_to":"31382"} +{"$label":"ACTS_IN","name":"Bob Lee Swagger","type":"Role","_key":"46867","_from":"8230","_to":"30909"} +{"$label":"ACTS_IN","name":"Troy Barlow","type":"Role","_key":"43346","_from":"8230","_to":"28963"} +{"$label":"ACTS_IN","name":"Eddie Adams alias Dirk Diggler","type":"Role","_key":"35437","_from":"8230","_to":"24109"} +{"$label":"ACTS_IN","name":"Bobby Shatford","type":"Role","_key":"18551","_from":"8230","_to":"13731"} +{"$label":"ACTS_IN","name":"Joseph Grusinsky","type":"Role","_key":"17366","_from":"8230","_to":"12991"} +{"$label":"ACTS_IN","name":"Tommy Corn","type":"Role","_key":"14180","_from":"8230","_to":"10966"} +{"$label":"ACTS_IN","name":"Dignam","type":"Role","_key":"13169","_from":"8230","_to":"10265"} +{"$label":"ACTS_IN","name":"John Norman Howard","type":"Role","_key":"120571","_from":"8231","_to":"70813"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"113806","_from":"8231","_to":"67048"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"111936","_from":"8231","_to":"66073"} +{"$label":"ACTS_IN","name":"Orin Hanner Sr.","type":"Role","_key":"99483","_from":"8231","_to":"58645"} +{"$label":"ACTS_IN","name":"Pop Crane","type":"Role","_key":"91928","_from":"8231","_to":"54232"} +{"$label":"ACTS_IN","name":"L.R. Nasher","type":"Role","_key":"88535","_from":"8231","_to":"52472"} +{"$label":"ACTS_IN","name":"William H. Bonney (Billy the Kid)","type":"Role","_key":"70837","_from":"8231","_to":"43058"} +{"$label":"ACTS_IN","name":"James Averill","type":"Role","_key":"66840","_from":"8231","_to":"41285"} +{"$label":"ACTS_IN","name":"Ken Murphy","type":"Role","_key":"61516","_from":"8231","_to":"38795"} +{"$label":"ACTS_IN","name":"Dr. Thomas Becker","type":"Role","_key":"55420","_from":"8231","_to":"35328"} +{"$label":"ACTS_IN","name":"Rubber Duck aka Martin Penwald","type":"Role","_key":"54837","_from":"8231","_to":"35082"} +{"$label":"ACTS_IN","name":"Rudy Martin","type":"Role","_key":"49026","_from":"8231","_to":"32126"} +{"$label":"ACTS_IN","name":"Howard Davis","type":"Role","_key":"36688","_from":"8231","_to":"24867"} +{"$label":"ACTS_IN","name":"Marvin \"Shake\" Tiller","type":"Role","_key":"35377","_from":"8231","_to":"24080"} +{"$label":"ACTS_IN","name":"Bill Smith","type":"Role","_key":"30869","_from":"8231","_to":"21643"} +{"$label":"ACTS_IN","name":"Bronson","type":"Role","_key":"18416","_from":"8231","_to":"13655"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"65403","_from":"8232","_to":"40556"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"64697","_from":"8232","_to":"40292"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"63559","_from":"8232","_to":"39780"} +{"$label":"ACTS_IN","name":"Vater Ripper","type":"Role","_key":"22360","_from":"8233","_to":"16253"} +{"$label":"ACTS_IN","name":"Killer Karl","type":"Role","_key":"22566","_from":"8234","_to":"16381"} +{"$label":"ACTS_IN","name":"Young Hiro","type":"Role","_key":"10356","_from":"8243","_to":"8235"} +{"$label":"ACTS_IN","name":"Haruna's Aunt","type":"Role","_key":"10355","_from":"8242","_to":"8235"} +{"$label":"ACTS_IN","name":"Nukui, the Fan","type":"Role","_key":"10354","_from":"8241","_to":"8235"} +{"$label":"ACTS_IN","name":"Haruna Yamaguchi, the Pop Star","type":"Role","_key":"10353","_from":"8240","_to":"8235"} +{"$label":"ACTS_IN","name":"Ryoko, the Woman in the Park","type":"Role","_key":"10352","_from":"8239","_to":"8235"} +{"$label":"ACTS_IN","name":"Hiro, the Boss","type":"Role","_key":"10351","_from":"8238","_to":"8235"} +{"$label":"ACTS_IN","name":"Matsumoto","type":"Role","_key":"10350","_from":"8237","_to":"8235"} +{"$label":"ACTS_IN","name":"Sawako","type":"Role","_key":"10349","_from":"8236","_to":"8235"} +{"$label":"ACTS_IN","name":"Kawanishi, Gondo's secretary","type":"Role","_key":"89852","_from":"8238","_to":"53168"} +{"$label":"ACTS_IN","name":"Commander Minoru Genda","type":"Role","_key":"68259","_from":"8238","_to":"41908"} +{"$label":"ACTS_IN","name":"Kanae Sawaguchi","type":"Role","_key":"55427","_from":"8240","_to":"35329"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"40330","_from":"8242","_to":"27206"} +{"$label":"ACTS_IN","name":"Kikujiros Frau","type":"Role","_key":"30836","_from":"8242","_to":"21616"} +{"$label":"ACTS_IN","name":"Tsuda - Burglar","type":"Role","_key":"107296","_from":"8243","_to":"63279"} +{"$label":"DIRECTED","_key":"10368","_from":"8251","_to":"8244"} +{"$label":"ACTS_IN","name":"Dodge","type":"Role","_key":"10366","_from":"8250","_to":"8244"} +{"$label":"ACTS_IN","name":"Dr. Maximus","type":"Role","_key":"10365","_from":"8249","_to":"8244"} +{"$label":"ACTS_IN","name":"Lucius","type":"Role","_key":"10364","_from":"8248","_to":"8244"} +{"$label":"ACTS_IN","name":"Landon","type":"Role","_key":"10363","_from":"8247","_to":"8244"} +{"$label":"ACTS_IN","name":"Nova","type":"Role","_key":"10362","_from":"8246","_to":"8244"} +{"$label":"ACTS_IN","name":"Dr. Honorious","type":"Role","_key":"10361","_from":"8245","_to":"8244"} +{"$label":"ACTS_IN","name":"Roger 'Stretch' Hawkins","type":"Role","_key":"117543","_from":"8247","_to":"69109"} +{"$label":"ACTS_IN","name":"Thorston Bromley","type":"Role","_key":"50503","_from":"8249","_to":"32983"} +{"$label":"ACTS_IN","name":"Clusiot","type":"Role","_key":"40462","_from":"8249","_to":"27261"} +{"$label":"ACTS_IN","name":"Uncle Albert","type":"Role","_key":"36467","_from":"8249","_to":"24729"} +{"$label":"ACTS_IN","name":"Mr. Jaffe","type":"Role","_key":"11638","_from":"8249","_to":"9132"} +{"$label":"DIRECTED","_key":"108303","_from":"8251","_to":"64019"} +{"$label":"DIRECTED","_key":"68514","_from":"8251","_to":"42021"} +{"$label":"DIRECTED","_key":"40468","_from":"8251","_to":"27261"} +{"$label":"ACTS_IN","name":"Zelda Zanders","type":"Role","_key":"10377","_from":"8259","_to":"8252"} +{"$label":"ACTS_IN","name":"Roscoe Dexter","type":"Role","_key":"10376","_from":"8258","_to":"8252"} +{"$label":"ACTS_IN","name":"R.F. Simpson","type":"Role","_key":"10375","_from":"8257","_to":"8252"} +{"$label":"ACTS_IN","name":"Lina Lamont","type":"Role","_key":"10374","_from":"8256","_to":"8252"} +{"$label":"ACTS_IN","name":". \tCosmo Brown","type":"Role","_key":"10372","_from":"8255","_to":"8252"} +{"$label":"ACTS_IN","name":"Don Lockwood","type":"Role","_key":"10371","_from":"8254","_to":"8252"} +{"$label":"DIRECTED","_key":"10370","_from":"8254","_to":"8252"} +{"$label":"DIRECTED","_key":"10369","_from":"8253","_to":"8252"} +{"$label":"DIRECTED","_key":"121103","_from":"8253","_to":"71125"} +{"$label":"DIRECTED","_key":"115348","_from":"8253","_to":"67907"} +{"$label":"DIRECTED","_key":"113444","_from":"8253","_to":"66834"} +{"$label":"DIRECTED","_key":"109553","_from":"8253","_to":"64708"} +{"$label":"DIRECTED","_key":"93934","_from":"8253","_to":"55315"} +{"$label":"DIRECTED","_key":"39362","_from":"8253","_to":"26621"} +{"$label":"DIRECTED","_key":"34122","_from":"8253","_to":"23444"} +{"$label":"ACTS_IN","name":"Tommy Albright","type":"Role","_key":"115664","_from":"8254","_to":"68094"} +{"$label":"ACTS_IN","name":"Joseph Brady","type":"Role","_key":"114232","_from":"8254","_to":"67282"} +{"$label":"ACTS_IN","name":"Ted Riley","type":"Role","_key":"113439","_from":"8254","_to":"66834"} +{"$label":"ACTS_IN","name":"Danny McGuire","type":"Role","_key":"105369","_from":"8254","_to":"61996"} +{"$label":"ACTS_IN","name":"Jerry Mulligan","type":"Role","_key":"23432","_from":"8254","_to":"16993"} +{"$label":"ACTS_IN","name":"Andy Miller","type":"Role","_key":"21320","_from":"8254","_to":"15589"} +{"$label":"ACTS_IN","name":"E.K. Hornbeck","type":"Role","_key":"16484","_from":"8254","_to":"12454"} +{"$label":"DIRECTED","_key":"98225","_from":"8254","_to":"57864"} +{"$label":"DIRECTED","_key":"34904","_from":"8254","_to":"23848"} +{"$label":"ACTS_IN","name":"Harriette Sinton","type":"Role","_key":"115652","_from":"8256","_to":"68087"} +{"$label":"ACTS_IN","name":"Doll Conovan","type":"Role","_key":"110616","_from":"8256","_to":"65354"} +{"$label":"ACTS_IN","name":"Marshal Mark Strett","type":"Role","_key":"112147","_from":"8257","_to":"66231"} +{"$label":"ACTS_IN","name":"Major General Patrick Pritchard","type":"Role","_key":"104683","_from":"8257","_to":"61589"} +{"$label":"ACTS_IN","name":"Buck Bowers","type":"Role","_key":"43581","_from":"8258","_to":"29106"} +{"$label":"ACTS_IN","name":"Franke Simmons","type":"Role","_key":"37587","_from":"8258","_to":"25473"} +{"$label":"ACTS_IN","name":"Blackie Leonard","type":"Role","_key":"29220","_from":"8258","_to":"20787"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"113428","_from":"8259","_to":"66828"} +{"$label":"ACTS_IN","name":"Tuptim","type":"Role","_key":"109384","_from":"8259","_to":"64625"} +{"$label":"ACTS_IN","name":"Dolores Gonz\u00e1les","type":"Role","_key":"15930","_from":"8259","_to":"12118"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"15268","_from":"8259","_to":"11688"} +{"$label":"ACTS_IN","name":"Grady","type":"Role","_key":"10390","_from":"8269","_to":"8260"} +{"$label":"ACTS_IN","name":"Pa","type":"Role","_key":"10389","_from":"8268","_to":"8260"} +{"$label":"ACTS_IN","name":"Old Mister","type":"Role","_key":"10387","_from":"8267","_to":"8260"} +{"$label":"ACTS_IN","name":"Squeak","type":"Role","_key":"10386","_from":"8266","_to":"8260"} +{"$label":"ACTS_IN","name":"Young Celie+","type":"Role","_key":"10385","_from":"8265","_to":"8260"} +{"$label":"ACTS_IN","name":"Harpo","type":"Role","_key":"10384","_from":"8264","_to":"8260"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"10383","_from":"8263","_to":"8260"} +{"$label":"ACTS_IN","name":"Netti","type":"Role","_key":"10382","_from":"8262","_to":"8260"} +{"$label":"ACTS_IN","name":"Shug Avery","type":"Role","_key":"10380","_from":"8261","_to":"8260"} +{"$label":"ACTS_IN","name":"Sarah Brown","type":"Role","_key":"109929","_from":"8261","_to":"64948"} +{"$label":"ACTS_IN","name":"Mamma Jenkins","type":"Role","_key":"94779","_from":"8261","_to":"55823"} +{"$label":"ACTS_IN","name":"Penny Washburn","type":"Role","_key":"67758","_from":"8262","_to":"41653"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"30815","_from":"8262","_to":"21596"} +{"$label":"ACTS_IN","name":"Acte","type":"Role","_key":"22404","_from":"8262","_to":"16258"} +{"$label":"ACTS_IN","name":"Gussy the Goose","type":"Role","_key":"58979","_from":"8263","_to":"37240"} +{"$label":"ACTS_IN","name":"Judge Bumbleton","type":"Role","_key":"37861","_from":"8263","_to":"25647"} +{"$label":"ACTS_IN","name":"Col. Castle","type":"Role","_key":"102822","_from":"8264","_to":"60477"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"117072","_from":"8266","_to":"68895"} +{"$label":"ACTS_IN","name":"Tracy Carlson","type":"Role","_key":"113527","_from":"8266","_to":"66884"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"98241","_from":"8266","_to":"57874"} +{"$label":"ACTS_IN","name":"Sarah Walker","type":"Role","_key":"89180","_from":"8266","_to":"52820"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"67192","_from":"8266","_to":"41449"} +{"$label":"ACTS_IN","name":"Hilary Orozco","type":"Role","_key":"60428","_from":"8266","_to":"38126"} +{"$label":"ACTS_IN","name":"Det. Forge","type":"Role","_key":"54291","_from":"8266","_to":"34851"} +{"$label":"ACTS_IN","name":"Ika","type":"Role","_key":"12091","_from":"8266","_to":"9479"} +{"$label":"ACTS_IN","name":"Uncle Gus (sketch)","type":"Role","_key":"111332","_from":"8268","_to":"65744"} +{"$label":"ACTS_IN","name":"Anne Boleyn","type":"Role","_key":"10405","_from":"8279","_to":"8270"} +{"$label":"ACTS_IN","name":"Boatman","type":"Role","_key":"10404","_from":"8278","_to":"8270"} +{"$label":"ACTS_IN","name":"Chief Justice","type":"Role","_key":"10403","_from":"8277","_to":"8270"} +{"$label":"ACTS_IN","name":"Archbishop Cranmer","type":"Role","_key":"10402","_from":"8276","_to":"8270"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"10401","_from":"8275","_to":"8270"} +{"$label":"ACTS_IN","name":"William Roper (the Younger)","type":"Role","_key":"10400","_from":"8274","_to":"8270"} +{"$label":"ACTS_IN","name":"The Duke of Norfolk","type":"Role","_key":"10398","_from":"8273","_to":"8270"} +{"$label":"ACTS_IN","name":"Margaret More","type":"Role","_key":"10397","_from":"8272","_to":"8270"} +{"$label":"ACTS_IN","name":"Alice Morus","type":"Role","_key":"10393","_from":"8271","_to":"8270"} +{"$label":"ACTS_IN","name":"Janet Mackenzie","type":"Role","_key":"40899","_from":"8271","_to":"27513"} +{"$label":"ACTS_IN","name":"Prinzessin Dragomiroff","type":"Role","_key":"29908","_from":"8271","_to":"21143"} +{"$label":"ACTS_IN","name":"Mothershead","type":"Role","_key":"16954","_from":"8271","_to":"12729"} +{"$label":"ACTS_IN","name":"The Weaver Woman","type":"Role","_key":"100529","_from":"8272","_to":"59294"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"51293","_from":"8272","_to":"33450"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"50124","_from":"8272","_to":"32783"} +{"$label":"ACTS_IN","name":"Sophie Western","type":"Role","_key":"39404","_from":"8272","_to":"26641"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"16668","_from":"8272","_to":"12577"} +{"$label":"ACTS_IN","name":"Tom Moloney","type":"Role","_key":"44989","_from":"8273","_to":"29895"} +{"$label":"ACTS_IN","name":"Parkington","type":"Role","_key":"34588","_from":"8273","_to":"23672"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"101668","_from":"8274","_to":"59833"} +{"$label":"ACTS_IN","name":"Cornwall","type":"Role","_key":"70435","_from":"8274","_to":"42880"} +{"$label":"ACTS_IN","name":"Drummond","type":"Role","_key":"89141","_from":"8275","_to":"52801"} +{"$label":"ACTS_IN","name":"Peppone","type":"Role","_key":"70514","_from":"8275","_to":"42924"} +{"$label":"ACTS_IN","name":"Sir Horace Blatt","type":"Role","_key":"41631","_from":"8275","_to":"27947"} +{"$label":"ACTS_IN","name":"Dr. John Watson","type":"Role","_key":"36355","_from":"8275","_to":"24657"} +{"$label":"ACTS_IN","name":"Horace Blatt","type":"Role","_key":"29998","_from":"8275","_to":"21171"} +{"$label":"ACTS_IN","name":"Mr. Cyrus Hardman","type":"Role","_key":"29913","_from":"8275","_to":"21143"} +{"$label":"ACTS_IN","name":"Captain - 'King GeorgeV'","type":"Role","_key":"117462","_from":"8277","_to":"69075"} +{"$label":"ACTS_IN","name":"Captain Parry - H.M.S. Achilles","type":"Role","_key":"113279","_from":"8277","_to":"66734"} +{"$label":"ACTS_IN","name":"Poseidon","type":"Role","_key":"62588","_from":"8277","_to":"39379"} +{"$label":"ACTS_IN","name":"2nd Policeman","type":"Role","_key":"114507","_from":"8278","_to":"67443"} +{"$label":"ACTS_IN","name":"James Pawle","type":"Role","_key":"71857","_from":"8278","_to":"43479"} +{"$label":"ACTS_IN","name":"Alan Payne","type":"Role","_key":"37067","_from":"8278","_to":"25120"} +{"$label":"ACTS_IN","name":"Princess Vera Belinskya","type":"Role","_key":"117697","_from":"8279","_to":"69180"} +{"$label":"ACTS_IN","name":"Roberta Elliot","type":"Role","_key":"107869","_from":"8279","_to":"63704"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"96291","_from":"8279","_to":"56572"} +{"$label":"ACTS_IN","name":"Lady Speranza Wilde","type":"Role","_key":"69428","_from":"8279","_to":"42430"} +{"$label":"ACTS_IN","name":"Penelope Keeling","type":"Role","_key":"50438","_from":"8279","_to":"32948"} +{"$label":"ACTS_IN","name":"Robin Lerner","type":"Role","_key":"50330","_from":"8279","_to":"32880"} +{"$label":"ACTS_IN","name":"Ruth Wilcox","type":"Role","_key":"48980","_from":"8279","_to":"32111"} +{"$label":"ACTS_IN","name":"Ann Lord","type":"Role","_key":"41262","_from":"8279","_to":"27749"} +{"$label":"ACTS_IN","name":"Annalise Hansen","type":"Role","_key":"40719","_from":"8279","_to":"27400"} +{"$label":"ACTS_IN","name":"older Briony","type":"Role","_key":"31072","_from":"8279","_to":"21754"} +{"$label":"ACTS_IN","name":"Mary Debenham","type":"Role","_key":"29910","_from":"8279","_to":"21143"} +{"$label":"ACTS_IN","name":"Dr. Wick","type":"Role","_key":"27878","_from":"8279","_to":"19989"} +{"$label":"ACTS_IN","name":"Nivea del Valle","type":"Role","_key":"19783","_from":"8279","_to":"14606"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"11865","_from":"8279","_to":"9303"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"11377","_from":"8279","_to":"8963"} +{"$label":"ACTS_IN","name":"Major Lenard","type":"Role","_key":"10415","_from":"8288","_to":"8280"} +{"$label":"ACTS_IN","name":"Eric Baum","type":"Role","_key":"10414","_from":"8287","_to":"8280"} +{"$label":"ACTS_IN","name":"Mrs. Haggerty","type":"Role","_key":"10413","_from":"8286","_to":"8280"} +{"$label":"ACTS_IN","name":"Reverend Mr. Carmichael","type":"Role","_key":"10412","_from":"8285","_to":"8280"} +{"$label":"ACTS_IN","name":"Sam Salt","type":"Role","_key":"10411","_from":"8284","_to":"8280"} +{"$label":"ACTS_IN","name":"Mr. Henry Chang","type":"Role","_key":"10410","_from":"8283","_to":"8280"} +{"$label":"ACTS_IN","name":"Hui Fei","type":"Role","_key":"10409","_from":"8282","_to":"8280"} +{"$label":"ACTS_IN","name":"Captain Donald 'Doc' Harvey","type":"Role","_key":"10408","_from":"8281","_to":"8280"} +{"$label":"ACTS_IN","name":"Cantor Rabinowitz","type":"Role","_key":"11196","_from":"8283","_to":"8853"} +{"$label":"ACTS_IN","name":"Alexander Bullock","type":"Role","_key":"95223","_from":"8284","_to":"56023"} +{"$label":"ACTS_IN","name":"Friar Tuck","type":"Role","_key":"66631","_from":"8284","_to":"41182"} +{"$label":"ACTS_IN","name":"Horace Pike","type":"Role","_key":"25643","_from":"8284","_to":"18462"} +{"$label":"ACTS_IN","name":"Chick McGann","type":"Role","_key":"25585","_from":"8284","_to":"18430"} +{"$label":"ACTS_IN","name":"Prosper Latour (French Story)","type":"Role","_key":"25329","_from":"8284","_to":"18250"} +{"$label":"ACTS_IN","name":"Sir Lionel Barton","type":"Role","_key":"27411","_from":"8285","_to":"19685"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"25519","_from":"8285","_to":"18386"} +{"$label":"ACTS_IN","name":"Hymn Book Harry","type":"Role","_key":"10546","_from":"8287","_to":"8377"} +{"$label":"DIRECTED","_key":"10426","_from":"8295","_to":"8289"} +{"$label":"ACTS_IN","name":"Rabban","type":"Role","_key":"10425","_from":"8294","_to":"8289"} +{"$label":"ACTS_IN","name":"Chani","type":"Role","_key":"10422","_from":"8293","_to":"8289"} +{"$label":"ACTS_IN","name":"Princess Irulan","type":"Role","_key":"10421","_from":"8292","_to":"8289"} +{"$label":"ACTS_IN","name":"Lady Jessica Atreides","type":"Role","_key":"10418","_from":"8291","_to":"8289"} +{"$label":"ACTS_IN","name":"Paul Atreides\/Muad'Dib","type":"Role","_key":"10417","_from":"8290","_to":"8289"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"103444","_from":"8290","_to":"60845"} +{"$label":"ACTS_IN","name":"Paul Atreides \/ Muad'Dib","type":"Role","_key":"99661","_from":"8290","_to":"58761"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"25308","_from":"8290","_to":"18241"} +{"$label":"ACTS_IN","name":"Michelle Whitman","type":"Role","_key":"119034","_from":"8292","_to":"69974"} +{"$label":"ACTS_IN","name":"Kate Merrill","type":"Role","_key":"107868","_from":"8292","_to":"63704"} +{"$label":"ACTS_IN","name":"Irulan Corrino-Atreides","type":"Role","_key":"99665","_from":"8292","_to":"58761"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"89012","_from":"8292","_to":"52726"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"24487","_from":"8292","_to":"17705"} +{"$label":"DIRECTED","_key":"120548","_from":"8295","_to":"70802"} +{"$label":"ACTS_IN","name":"Chief of detectives","type":"Role","_key":"10439","_from":"8306","_to":"8296"} +{"$label":"ACTS_IN","name":"Mrs. Camonte","type":"Role","_key":"10438","_from":"8305","_to":"8296"} +{"$label":"ACTS_IN","name":"Managing editor","type":"Role","_key":"10437","_from":"8304","_to":"8296"} +{"$label":"ACTS_IN","name":"Mr. Garston, publisher","type":"Role","_key":"10436","_from":"8303","_to":"8296"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"10434","_from":"8302","_to":"8296"} +{"$label":"ACTS_IN","name":"Insp. Ben Guarino","type":"Role","_key":"10432","_from":"8301","_to":"8296"} +{"$label":"ACTS_IN","name":"John 'Johnny' Lovo","type":"Role","_key":"10431","_from":"8300","_to":"8296"} +{"$label":"ACTS_IN","name":"Poppy","type":"Role","_key":"10430","_from":"8299","_to":"8296"} +{"$label":"ACTS_IN","name":"Cesca Camonte","type":"Role","_key":"10429","_from":"8298","_to":"8296"} +{"$label":"ACTS_IN","name":"Tony 'Scarface' Camonte","type":"Role","_key":"10428","_from":"8297","_to":"8296"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"27407","_from":"8299","_to":"19685"} +{"$label":"ACTS_IN","name":"Charleston","type":"Role","_key":"101233","_from":"8302","_to":"59623"} +{"$label":"ACTS_IN","name":"El Rey Luis XI","type":"Role","_key":"118360","_from":"8304","_to":"69576"} +{"$label":"ACTS_IN","name":"Alvin Brewster","type":"Role","_key":"109907","_from":"8304","_to":"64940"} +{"$label":"ACTS_IN","name":"Tohana","type":"Role","_key":"28229","_from":"8305","_to":"20214"} +{"$label":"ACTS_IN","name":"Dr. Max J. Eggelhoffer","type":"Role","_key":"25637","_from":"8306","_to":"18451"} +{"$label":"ACTS_IN","name":"Juwelier Mercier","type":"Role","_key":"16077","_from":"8306","_to":"12210"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"15442","_from":"8306","_to":"11796"} +{"$label":"DIRECTED","_key":"10450","_from":"8317","_to":"8307"} +{"$label":"ACTS_IN","name":"Streber Luck","type":"Role","_key":"10449","_from":"8316","_to":"8307"} +{"$label":"ACTS_IN","name":"Rudi Knebel","type":"Role","_key":"10448","_from":"8315","_to":"8307"} +{"$label":"ACTS_IN","name":"Rosen","type":"Role","_key":"10447","_from":"8314","_to":"8307"} +{"$label":"ACTS_IN","name":"Oberlehrer Dr. Brett","type":"Role","_key":"10446","_from":"8313","_to":"8307"} +{"$label":"ACTS_IN","name":"Gymnasialdirektor Knauer, genannt Zeus","type":"Role","_key":"10445","_from":"8312","_to":"8307"} +{"$label":"ACTS_IN","name":"Professor B\u00f6mmel","type":"Role","_key":"10444","_from":"8311","_to":"8307"} +{"$label":"ACTS_IN","name":"Professor Crey, genannt Schnauz","type":"Role","_key":"10443","_from":"8310","_to":"8307"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"10442","_from":"8309","_to":"8307"} +{"$label":"ACTS_IN","name":"Eva Knauer","type":"Role","_key":"10441","_from":"8308","_to":"8307"} +{"$label":"ACTS_IN","name":"Marianne Bredow","type":"Role","_key":"72470","_from":"8308","_to":"43731"} +{"$label":"ACTS_IN","name":"Frau Vietzke","type":"Role","_key":"44168","_from":"8309","_to":"29437"} +{"$label":"ACTS_IN","name":"Mrs. Snow","type":"Role","_key":"39134","_from":"8309","_to":"26449"} +{"$label":"ACTS_IN","name":"Lizzi","type":"Role","_key":"24976","_from":"8309","_to":"18035"} +{"$label":"ACTS_IN","name":"Wissenschaftler","type":"Role","_key":"45975","_from":"8310","_to":"30392"} +{"$label":"ACTS_IN","name":"Dr. Winkel","type":"Role","_key":"11965","_from":"8310","_to":"9373"} +{"$label":"ACTS_IN","name":"Tierarzt Dr. Pudlich","type":"Role","_key":"49598","_from":"8311","_to":"32466"} +{"$label":"ACTS_IN","name":"Prof. Landois","type":"Role","_key":"42026","_from":"8311","_to":"28155"} +{"$label":"ACTS_IN","name":"Dr. Emil Landois","type":"Role","_key":"42003","_from":"8311","_to":"28144"} +{"$label":"ACTS_IN","name":"Law Officer","type":"Role","_key":"41162","_from":"8311","_to":"27693"} +{"$label":"ACTS_IN","name":"Herr Griesicke","type":"Role","_key":"23632","_from":"8311","_to":"17129"} +{"$label":"ACTS_IN","name":"Schimmelpreester","type":"Role","_key":"17673","_from":"8311","_to":"13181"} +{"$label":"ACTS_IN","name":"L\u00fcttenjens","type":"Role","_key":"45070","_from":"8312","_to":"29929"} +{"$label":"ACTS_IN","name":"Mr. Hoover","type":"Role","_key":"43763","_from":"8312","_to":"29221"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43723","_from":"8312","_to":"29199"} +{"$label":"ACTS_IN","name":"Prof. von Wetzelstien","type":"Role","_key":"42016","_from":"8312","_to":"28144"} +{"$label":"ACTS_IN","name":"Landgerichtsrat","type":"Role","_key":"41129","_from":"8312","_to":"27670"} +{"$label":"ACTS_IN","name":"Niels Bergstr\u00f6m","type":"Role","_key":"40992","_from":"8312","_to":"27570"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"45038","_from":"8314","_to":"29920"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"43784","_from":"8314","_to":"29234"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"39990","_from":"8314","_to":"27002"} +{"$label":"ACTS_IN","name":"Fliegender Hirsch","type":"Role","_key":"32464","_from":"8314","_to":"22575"} +{"$label":"DIRECTED","_key":"90725","_from":"8317","_to":"53551"} +{"$label":"DIRECTED","_key":"45941","_from":"8317","_to":"30376"} +{"$label":"ACTS_IN","name":"Mr. Dinklespiler","type":"Role","_key":"39130","_from":"8317","_to":"26449"} +{"$label":"ACTS_IN","name":"Pockets","type":"Role","_key":"10460","_from":"8323","_to":"8318"} +{"$label":"ACTS_IN","name":"Tootles","type":"Role","_key":"10459","_from":"8322","_to":"8318"} +{"$label":"ACTS_IN","name":"Rufio","type":"Role","_key":"10458","_from":"8321","_to":"8318"} +{"$label":"ACTS_IN","name":"Maggie Banning","type":"Role","_key":"10457","_from":"8320","_to":"8318"} +{"$label":"ACTS_IN","name":"Jack 'Jackie' Banning","type":"Role","_key":"10456","_from":"8319","_to":"8318"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"102860","_from":"8319","_to":"60510"} +{"$label":"ACTS_IN","name":"Sigmund 'Siggy' Marvin","type":"Role","_key":"62337","_from":"8319","_to":"39279"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"50238","_from":"8319","_to":"32833"} +{"$label":"ACTS_IN","name":"Mr. Ages (voice)","type":"Role","_key":"71666","_from":"8322","_to":"43389"} +{"$label":"ACTS_IN","name":"Graveyard Keeper","type":"Role","_key":"11311","_from":"8322","_to":"8922"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"10478","_from":"8339","_to":"8324"} +{"$label":"ACTS_IN","name":"Lippen Willem","type":"Role","_key":"10477","_from":"8338","_to":"8324"} +{"$label":"ACTS_IN","name":"Deedee","type":"Role","_key":"10476","_from":"8337","_to":"8324"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"10475","_from":"8336","_to":"8324"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"10474","_from":"8335","_to":"8324"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"10473","_from":"8334","_to":"8324"} +{"$label":"ACTS_IN","name":"Krummer Finger","type":"Role","_key":"10472","_from":"8333","_to":"8324"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"10471","_from":"8332","_to":"8324"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se (6)","type":"Role","_key":"10470","_from":"8331","_to":"8324"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se (13)","type":"Role","_key":"10469","_from":"8330","_to":"8324"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"10468","_from":"8329","_to":"8324"} +{"$label":"ACTS_IN","name":"Allegonde","type":"Role","_key":"10467","_from":"8328","_to":"8324"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"10466","_from":"8327","_to":"8324"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"10465","_from":"8326","_to":"8324"} +{"$label":"DIRECTED","_key":"10464","_from":"8325","_to":"8324"} +{"$label":"DIRECTED","_key":"32899","_from":"8325","_to":"22825"} +{"$label":"ACTS_IN","name":"Old Esther","type":"Role","_key":"111976","_from":"8326","_to":"66095"} +{"$label":"ACTS_IN","name":"Mieke de Beer","type":"Role","_key":"69737","_from":"8326","_to":"42564"} +{"$label":"ACTS_IN","name":"Kate`s Mother","type":"Role","_key":"17799","_from":"8326","_to":"13267"} +{"$label":"ACTS_IN","name":"Uncle Otto","type":"Role","_key":"91350","_from":"8331","_to":"53876"} +{"$label":"ACTS_IN","name":"Lucien Deckers","type":"Role","_key":"112418","_from":"8334","_to":"66374"} +{"$label":"ACTS_IN","name":"Dreverhaven","type":"Role","_key":"111265","_from":"8334","_to":"65709"} +{"$label":"ACTS_IN","name":"Nathan Goldberg","type":"Role","_key":"42895","_from":"8334","_to":"28665"} +{"$label":"ACTS_IN","name":"Anne Vonk","type":"Role","_key":"23224","_from":"8335","_to":"16840"} +{"$label":"ACTS_IN","name":"Lt. Dave Spradling","type":"Role","_key":"10489","_from":"8344","_to":"8340"} +{"$label":"ACTS_IN","name":"Dr. Stone","type":"Role","_key":"10488","_from":"8343","_to":"8340"} +{"$label":"ACTS_IN","name":"Lt. Col. Matthew A. Markinson","type":"Role","_key":"10487","_from":"8342","_to":"8340"} +{"$label":"ACTS_IN","name":"Pfc.Louden Downey","type":"Role","_key":"10486","_from":"8341","_to":"8340"} +{"$label":"ACTS_IN","name":"Mark Newman","type":"Role","_key":"118557","_from":"8341","_to":"69710"} +{"$label":"ACTS_IN","name":"Tommy Riley","type":"Role","_key":"108147","_from":"8341","_to":"63916"} +{"$label":"ACTS_IN","name":"James Hurley","type":"Role","_key":"16645","_from":"8341","_to":"12568"} +{"$label":"ACTS_IN","name":"Happy","type":"Role","_key":"121231","_from":"8342","_to":"71215"} +{"$label":"ACTS_IN","name":"Cole","type":"Role","_key":"115015","_from":"8342","_to":"67722"} +{"$label":"ACTS_IN","name":"Charles Bushman","type":"Role","_key":"89894","_from":"8342","_to":"53200"} +{"$label":"ACTS_IN","name":"John Ehrlichman","type":"Role","_key":"66321","_from":"8342","_to":"41028"} +{"$label":"ACTS_IN","name":"Danforth 'Buster' Keeton III","type":"Role","_key":"64872","_from":"8342","_to":"40346"} +{"$label":"ACTS_IN","name":"Ed Collins","type":"Role","_key":"63755","_from":"8342","_to":"39867"} +{"$label":"ACTS_IN","name":"Kevin McCord","type":"Role","_key":"63234","_from":"8342","_to":"39650"} +{"$label":"ACTS_IN","name":"Frank Fitzsimmons","type":"Role","_key":"63071","_from":"8342","_to":"39574"} +{"$label":"ACTS_IN","name":"Agent Hal McGuire","type":"Role","_key":"62985","_from":"8342","_to":"39544"} +{"$label":"ACTS_IN","name":"Colonel Quinn","type":"Role","_key":"61395","_from":"8342","_to":"38729"} +{"$label":"ACTS_IN","name":"Insp. Terence Niebaum","type":"Role","_key":"55164","_from":"8342","_to":"35201"} +{"$label":"ACTS_IN","name":"Chester Van Damme","type":"Role","_key":"54586","_from":"8342","_to":"34972"} +{"$label":"ACTS_IN","name":"Big Bob","type":"Role","_key":"22538","_from":"8342","_to":"16368"} +{"$label":"ACTS_IN","name":"Warren \" Red \" Barr","type":"Role","_key":"18833","_from":"8342","_to":"13912"} +{"$label":"ACTS_IN","name":"State Trooper Sherman Douglas","type":"Role","_key":"15071","_from":"8342","_to":"11579"} +{"$label":"ACTS_IN","name":"Ivan the Terrible","type":"Role","_key":"115892","_from":"8343","_to":"68230"} +{"$label":"ACTS_IN","name":"Corky St. Clair","type":"Role","_key":"109273","_from":"8343","_to":"64561"} +{"$label":"ACTS_IN","name":"Harlan Pepper","type":"Role","_key":"96618","_from":"8343","_to":"56824"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94144","_from":"8343","_to":"55439"} +{"$label":"ACTS_IN","name":"Nigel Tufnel","type":"Role","_key":"67421","_from":"8343","_to":"41533"} +{"$label":"ACTS_IN","name":"Lord Cromer","type":"Role","_key":"65682","_from":"8343","_to":"40687"} +{"$label":"ACTS_IN","name":"Count Tyrone Rugen","type":"Role","_key":"21709","_from":"8343","_to":"15866"} +{"$label":"DIRECTED","_key":"109277","_from":"8343","_to":"64561"} +{"$label":"DIRECTED","_key":"101813","_from":"8343","_to":"59926"} +{"$label":"DIRECTED","_key":"99685","_from":"8343","_to":"58778"} +{"$label":"DIRECTED","_key":"96606","_from":"8343","_to":"56824"} +{"$label":"DIRECTED","_key":"94151","_from":"8343","_to":"55439"} +{"$label":"ACTS_IN","name":"Gustave Gilbert","type":"Role","_key":"117936","_from":"8344","_to":"69324"} +{"$label":"ACTS_IN","name":"Agent Ray Fuller","type":"Role","_key":"65388","_from":"8344","_to":"40553"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"59997","_from":"8344","_to":"37868"} +{"$label":"ACTS_IN","name":"Steven Kramer","type":"Role","_key":"54706","_from":"8344","_to":"35025"} +{"$label":"ACTS_IN","name":"Daniel Brecht","type":"Role","_key":"48696","_from":"8344","_to":"31943"} +{"$label":"ACTS_IN","name":"Agent Larry Minuti - ATF","type":"Role","_key":"47192","_from":"8344","_to":"31106"} +{"$label":"ACTS_IN","name":"Emerson Lloyd","type":"Role","_key":"21411","_from":"8344","_to":"15659"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"20093","_from":"8344","_to":"14770"} +{"$label":"ACTS_IN","name":"Leutnant","type":"Role","_key":"10503","_from":"8356","_to":"8345"} +{"$label":"ACTS_IN","name":"Ulf","type":"Role","_key":"10502","_from":"8355","_to":"8345"} +{"$label":"ACTS_IN","name":"Heinz","type":"Role","_key":"10501","_from":"8354","_to":"8345"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"10500","_from":"8353","_to":"8345"} +{"$label":"ACTS_IN","name":"Else","type":"Role","_key":"10499","_from":"8352","_to":"8345"} +{"$label":"ACTS_IN","name":"Opa","type":"Role","_key":"10498","_from":"8351","_to":"8345"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"10497","_from":"8350","_to":"8345"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"10496","_from":"8349","_to":"8345"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"10495","_from":"8348","_to":"8345"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"10494","_from":"8347","_to":"8345"} +{"$label":"DIRECTED","_key":"10493","_from":"8346","_to":"8345"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"93245","_from":"8350","_to":"54923"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"10528","_from":"8372","_to":"8357"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"10527","_from":"8371","_to":"8357"} +{"$label":"ACTS_IN","name":"RZA","type":"Role","_key":"10526","_from":"8370","_to":"8357"} +{"$label":"ACTS_IN","name":"GZA","type":"Role","_key":"10525","_from":"8369","_to":"8357"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"10523","_from":"8368","_to":"8357"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"10521","_from":"8367","_to":"8357"} +{"$label":"ACTS_IN","name":"Meg","type":"Role","_key":"10520","_from":"8366","_to":"8357"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"10517","_from":"8365","_to":"8357"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"10516","_from":"8364","_to":"8357"} +{"$label":"ACTS_IN","name":"Ren\u00e9e","type":"Role","_key":"10515","_from":"8363","_to":"8357"} +{"$label":"ACTS_IN","name":"Vinny Jr.","type":"Role","_key":"10514","_from":"8362","_to":"8357"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"10512","_from":"8361","_to":"8357"} +{"$label":"ACTS_IN","name":"Iggy","type":"Role","_key":"10510","_from":"8360","_to":"8357"} +{"$label":"ACTS_IN","name":"Evil Twin","type":"Role","_key":"10508","_from":"8359","_to":"8357"} +{"$label":"ACTS_IN","name":"Good Twin","type":"Role","_key":"10507","_from":"8358","_to":"8357"} +{"$label":"ACTS_IN","name":"Mr. Zellweger","type":"Role","_key":"104641","_from":"8360","_to":"61555"} +{"$label":"ACTS_IN","name":"Curve","type":"Role","_key":"63982","_from":"8360","_to":"39954"} +{"$label":"ACTS_IN","name":"Salvatore 'Sally' Jenko","type":"Role","_key":"10970","_from":"8360","_to":"8689"} +{"$label":"ACTS_IN","name":"Joe Rags","type":"Role","_key":"34196","_from":"8361","_to":"23484"} +{"$label":"ACTS_IN","name":"Creole","type":"Role","_key":"48827","_from":"8365","_to":"32020"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"47360","_from":"8367","_to":"31181"} +{"$label":"ACTS_IN","name":"Campbell Babbitt","type":"Role","_key":"121321","_from":"8368","_to":"71285"} +{"$label":"ACTS_IN","name":"Octavius","type":"Role","_key":"115893","_from":"8368","_to":"68230"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103435","_from":"8368","_to":"60839"} +{"$label":"ACTS_IN","name":"Ray Elliot","type":"Role","_key":"102552","_from":"8368","_to":"60336"} +{"$label":"ACTS_IN","name":"Heston (voice)","type":"Role","_key":"100293","_from":"8368","_to":"59140"} +{"$label":"ACTS_IN","name":"Dana Marschz","type":"Role","_key":"90663","_from":"8368","_to":"53527"} +{"$label":"ACTS_IN","name":"Tristram Shandy","type":"Role","_key":"49727","_from":"8368","_to":"32538"} +{"$label":"ACTS_IN","name":"Metropolitan Police Inspector","type":"Role","_key":"33126","_from":"8368","_to":"22937"} +{"$label":"ACTS_IN","name":"Tony Wilson","type":"Role","_key":"23249","_from":"8368","_to":"16861"} +{"$label":"ACTS_IN","name":"Bruce Tick","type":"Role","_key":"18863","_from":"8368","_to":"13922"} +{"$label":"ACTS_IN","name":"Ambassador Mercy","type":"Role","_key":"16288","_from":"8368","_to":"12347"} +{"$label":"ACTS_IN","name":"Octavius","type":"Role","_key":"14129","_from":"8368","_to":"10934"} +{"$label":"ACTS_IN","name":"Moses Jones","type":"Role","_key":"35321","_from":"8370","_to":"24057"} +{"$label":"ACTS_IN","name":"Samurai","type":"Role","_key":"34203","_from":"8370","_to":"23484"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"49405","_from":"8372","_to":"32344"} +{"$label":"ACTS_IN","name":"Vera Seagrave","type":"Role","_key":"10536","_from":"8376","_to":"8373"} +{"$label":"ACTS_IN","name":"Vaughan","type":"Role","_key":"10533","_from":"8375","_to":"8373"} +{"$label":"ACTS_IN","name":"James Ballard","type":"Role","_key":"10530","_from":"8374","_to":"8373"} +{"$label":"ACTS_IN","name":"Ray Reardon","type":"Role","_key":"115207","_from":"8374","_to":"67849"} +{"$label":"ACTS_IN","name":"Dr. Roger Klink","type":"Role","_key":"109214","_from":"8374","_to":"64530"} +{"$label":"ACTS_IN","name":"Rip","type":"Role","_key":"96011","_from":"8374","_to":"56439"} +{"$label":"ACTS_IN","name":"Tim Gerrity","type":"Role","_key":"95269","_from":"8374","_to":"56055"} +{"$label":"ACTS_IN","name":"E. Edward Grey","type":"Role","_key":"67295","_from":"8374","_to":"41488"} +{"$label":"ACTS_IN","name":"FBI Special Agent Joel Campbell","type":"Role","_key":"65049","_from":"8374","_to":"40419"} +{"$label":"ACTS_IN","name":"Chuck Marlin","type":"Role","_key":"64495","_from":"8374","_to":"40183"} +{"$label":"ACTS_IN","name":"Stewart Swinton","type":"Role","_key":"62980","_from":"8374","_to":"39543"} +{"$label":"ACTS_IN","name":"Nick Vanzant","type":"Role","_key":"62924","_from":"8374","_to":"39523"} +{"$label":"ACTS_IN","name":"Mr. Richards","type":"Role","_key":"59501","_from":"8374","_to":"37569"} +{"$label":"ACTS_IN","name":"Dr. Daniel Jackson","type":"Role","_key":"18842","_from":"8374","_to":"13914"} +{"$label":"ACTS_IN","name":"Graham Walton","type":"Role","_key":"13053","_from":"8374","_to":"10178"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"120012","_from":"8375","_to":"70480"} +{"$label":"ACTS_IN","name":"Reverend Popescu","type":"Role","_key":"117472","_from":"8375","_to":"69081"} +{"$label":"ACTS_IN","name":"Colson 'Colt' Ricks","type":"Role","_key":"109232","_from":"8375","_to":"64535"} +{"$label":"ACTS_IN","name":"Ali \/ Jevdet Bay","type":"Role","_key":"108853","_from":"8375","_to":"64332"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"108004","_from":"8375","_to":"63792"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"99130","_from":"8375","_to":"58414"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"94203","_from":"8375","_to":"55472"} +{"$label":"ACTS_IN","name":"Thomas Daggett","type":"Role","_key":"73126","_from":"8375","_to":"43981"} +{"$label":"ACTS_IN","name":"Laeddis","type":"Role","_key":"69146","_from":"8375","_to":"42293"} +{"$label":"ACTS_IN","name":"Peter Brandt","type":"Role","_key":"57596","_from":"8375","_to":"36473"} +{"$label":"ACTS_IN","name":"Hank Alano","type":"Role","_key":"52965","_from":"8375","_to":"34311"} +{"$label":"ACTS_IN","name":"Capt. Staros","type":"Role","_key":"50636","_from":"8375","_to":"33066"} +{"$label":"ACTS_IN","name":"Jack Payne","type":"Role","_key":"46871","_from":"8375","_to":"30909"} +{"$label":"ACTS_IN","name":"Monsieur Gateau","type":"Role","_key":"34782","_from":"8375","_to":"23771"} +{"$label":"ACTS_IN","name":"Jack Mulanax","type":"Role","_key":"16915","_from":"8375","_to":"12715"} +{"$label":"ACTS_IN","name":"Casey Jones","type":"Role","_key":"13560","_from":"8375","_to":"10547"} +{"$label":"ACTS_IN","name":"Steve's Girl","type":"Role","_key":"10545","_from":"8384","_to":"8377"} +{"$label":"ACTS_IN","name":"Mrs. Crimp","type":"Role","_key":"10544","_from":"8383","_to":"8377"} +{"$label":"ACTS_IN","name":"The Crimp","type":"Role","_key":"10543","_from":"8382","_to":"8377"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"10542","_from":"8381","_to":"8377"} +{"$label":"ACTS_IN","name":"'Sugar' Steve","type":"Role","_key":"10541","_from":"8380","_to":"8377"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"10539","_from":"8379","_to":"8377"} +{"$label":"ACTS_IN","name":"Bill Roberts","type":"Role","_key":"10538","_from":"8378","_to":"8377"} +{"$label":"ACTS_IN","name":"Marshal Curly Wilcox","type":"Role","_key":"11767","_from":"8378","_to":"9231"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"29658","_from":"8380","_to":"20986"} +{"$label":"ACTS_IN","name":"Lady Fingers","type":"Role","_key":"10553","_from":"8389","_to":"8385"} +{"$label":"ACTS_IN","name":"Lancey Howard","type":"Role","_key":"10549","_from":"8388","_to":"8385"} +{"$label":"ACTS_IN","name":"Eric Stoner","type":"Role","_key":"10548","_from":"8387","_to":"8385"} +{"$label":"DIRECTED","_key":"10547","_from":"8386","_to":"8385"} +{"$label":"DIRECTED","_key":"112264","_from":"8386","_to":"66292"} +{"$label":"DIRECTED","_key":"101857","_from":"8386","_to":"59950"} +{"$label":"DIRECTED","_key":"90172","_from":"8386","_to":"53312"} +{"$label":"DIRECTED","_key":"70120","_from":"8386","_to":"42746"} +{"$label":"DIRECTED","_key":"64731","_from":"8386","_to":"40299"} +{"$label":"DIRECTED","_key":"63016","_from":"8386","_to":"39551"} +{"$label":"DIRECTED","_key":"52323","_from":"8386","_to":"34060"} +{"$label":"DIRECTED","_key":"43472","_from":"8386","_to":"29038"} +{"$label":"DIRECTED","_key":"34979","_from":"8386","_to":"23881"} +{"$label":"DIRECTED","_key":"28173","_from":"8386","_to":"20186"} +{"$label":"DIRECTED","_key":"17763","_from":"8386","_to":"13252"} +{"$label":"DIRECTED","_key":"10843","_from":"8386","_to":"8599"} +{"$label":"ACTS_IN","name":"Steve Andrews","type":"Role","_key":"51114","_from":"8387","_to":"33347"} +{"$label":"ACTS_IN","name":"Boon Hogganbeck","type":"Role","_key":"40509","_from":"8387","_to":"27278"} +{"$label":"ACTS_IN","name":"Junior Bonner","type":"Role","_key":"40503","_from":"8387","_to":"27276"} +{"$label":"ACTS_IN","name":"George Fowler","type":"Role","_key":"40497","_from":"8387","_to":"27271"} +{"$label":"ACTS_IN","name":"Captain Hilts","type":"Role","_key":"40469","_from":"8387","_to":"27264"} +{"$label":"ACTS_IN","name":"Henri \"Papillon\" Charriere","type":"Role","_key":"40460","_from":"8387","_to":"27261"} +{"$label":"ACTS_IN","name":"Jake Holman","type":"Role","_key":"40454","_from":"8387","_to":"27260"} +{"$label":"ACTS_IN","name":"Ralph \"Papa\" Thorson","type":"Role","_key":"40448","_from":"8387","_to":"27259"} +{"$label":"ACTS_IN","name":"Max Sand","type":"Role","_key":"40442","_from":"8387","_to":"27258"} +{"$label":"ACTS_IN","name":"Michael Delaney","type":"Role","_key":"40437","_from":"8387","_to":"27257"} +{"$label":"ACTS_IN","name":"Chief Michael O'Hallorhan","type":"Role","_key":"40431","_from":"8387","_to":"27256"} +{"$label":"ACTS_IN","name":"Tom Horn","type":"Role","_key":"40425","_from":"8387","_to":"27254"} +{"$label":"ACTS_IN","name":"Carter McCoy","type":"Role","_key":"40416","_from":"8387","_to":"27250"} +{"$label":"ACTS_IN","name":"Bill Ringa","type":"Role","_key":"34207","_from":"8387","_to":"23489"} +{"$label":"ACTS_IN","name":"Vin","type":"Role","_key":"11481","_from":"8387","_to":"9032"} +{"$label":"ACTS_IN","name":"Lt. Frank Bullit","type":"Role","_key":"10885","_from":"8387","_to":"8626"} +{"$label":"ACTS_IN","name":"Thomas Crown","type":"Role","_key":"10844","_from":"8387","_to":"8599"} +{"$label":"ACTS_IN","name":"Nick 'The Barber' Venizelos","type":"Role","_key":"114519","_from":"8388","_to":"67457"} +{"$label":"ACTS_IN","name":"Dr. T.S. Clitterhouse","type":"Role","_key":"114203","_from":"8388","_to":"67273"} +{"$label":"ACTS_IN","name":"Professor Richard Wanley","type":"Role","_key":"111240","_from":"8388","_to":"65692"} +{"$label":"ACTS_IN","name":"Christopher Cross","type":"Role","_key":"110999","_from":"8388","_to":"65563"} +{"$label":"ACTS_IN","name":"Sol Roth","type":"Role","_key":"88026","_from":"8388","_to":"52257"} +{"$label":"ACTS_IN","name":"Johnny Rocco","type":"Role","_key":"67305","_from":"8388","_to":"41491"} +{"$label":"ACTS_IN","name":"Dathan","type":"Role","_key":"44954","_from":"8388","_to":"29886"} +{"$label":"ACTS_IN","name":"Max Stratman\/Walter Stratman","type":"Role","_key":"29455","_from":"8388","_to":"20892"} +{"$label":"ACTS_IN","name":"Barton Keyes","type":"Role","_key":"11775","_from":"8388","_to":"9238"} +{"$label":"ACTS_IN","name":"Zeena Krumbein","type":"Role","_key":"119039","_from":"8389","_to":"69977"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"115673","_from":"8389","_to":"68096"} +{"$label":"ACTS_IN","name":"Mamie","type":"Role","_key":"113658","_from":"8389","_to":"66979"} +{"$label":"ACTS_IN","name":"Blondie Johnson","type":"Role","_key":"29661","_from":"8389","_to":"20995"} +{"$label":"ACTS_IN","name":"Homer Parrish","type":"Role","_key":"10566","_from":"8397","_to":"8390"} +{"$label":"ACTS_IN","name":"Butch Engle","type":"Role","_key":"10565","_from":"8396","_to":"8390"} +{"$label":"ACTS_IN","name":"Marie Derry","type":"Role","_key":"10563","_from":"8395","_to":"8390"} +{"$label":"ACTS_IN","name":"Peggy Stephenson","type":"Role","_key":"10562","_from":"8394","_to":"8390"} +{"$label":"ACTS_IN","name":"Fred Derry","type":"Role","_key":"10561","_from":"8393","_to":"8390"} +{"$label":"ACTS_IN","name":"Milly Stephenson","type":"Role","_key":"10560","_from":"8392","_to":"8390"} +{"$label":"ACTS_IN","name":"Al Stephenson","type":"Role","_key":"10559","_from":"8391","_to":"8390"} +{"$label":"ACTS_IN","name":"Dan C. Hilliard","type":"Role","_key":"116802","_from":"8391","_to":"68770"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25014","_from":"8391","_to":"18072"} +{"$label":"ACTS_IN","name":"Matthew Harrison Brady","type":"Role","_key":"16483","_from":"8391","_to":"12454"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"101006","_from":"8392","_to":"59526"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"100994","_from":"8392","_to":"59522"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"100974","_from":"8392","_to":"59510"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"100959","_from":"8392","_to":"59504"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"100945","_from":"8392","_to":"59500"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"90632","_from":"8392","_to":"53518"} +{"$label":"ACTS_IN","name":"Nora Charles","type":"Role","_key":"27665","_from":"8392","_to":"19823"} +{"$label":"ACTS_IN","name":"Fah Lo See","type":"Role","_key":"27409","_from":"8392","_to":"19685"} +{"$label":"ACTS_IN","name":"State's Atty. Henry L. Harvey","type":"Role","_key":"118158","_from":"8393","_to":"69448"} +{"$label":"ACTS_IN","name":"Capt. Tim Harmon","type":"Role","_key":"116578","_from":"8393","_to":"68621"} +{"$label":"ACTS_IN","name":"Det. Sgt. Mark Dixon","type":"Role","_key":"111594","_from":"8393","_to":"65883"} +{"$label":"ACTS_IN","name":"Gen. Buck Brinkman","type":"Role","_key":"108559","_from":"8393","_to":"64161"} +{"$label":"ACTS_IN","name":"Colonel Pritchard","type":"Role","_key":"95026","_from":"8393","_to":"55943"} +{"$label":"ACTS_IN","name":"Det. Lt. Mark McPherson","type":"Role","_key":"16811","_from":"8393","_to":"12664"} +{"$label":"ACTS_IN","name":"Donald Martin","type":"Role","_key":"11581","_from":"8393","_to":"9099"} +{"$label":"ACTS_IN","name":"Eleanor Twitchell","type":"Role","_key":"118876","_from":"8394","_to":"69866"} +{"$label":"ACTS_IN","name":"Laura Roberts","type":"Role","_key":"109682","_from":"8394","_to":"64780"} +{"$label":"ACTS_IN","name":"Elly Wilosek","type":"Role","_key":"16242","_from":"8394","_to":"12325"} +{"$label":"ACTS_IN","name":"Honey Swanson","type":"Role","_key":"114113","_from":"8395","_to":"67205"} +{"$label":"ACTS_IN","name":"Verna Jarrett","type":"Role","_key":"105930","_from":"8395","_to":"62369"} +{"$label":"ACTS_IN","name":"Grizzled Man","type":"Role","_key":"10578","_from":"8402","_to":"8398"} +{"$label":"ACTS_IN","name":"Joe Rockhead","type":"Role","_key":"10577","_from":"8401","_to":"8398"} +{"$label":"ACTS_IN","name":"Hoagie","type":"Role","_key":"10576","_from":"8400","_to":"8398"} +{"$label":"DIRECTED","_key":"10567","_from":"8399","_to":"8398"} +{"$label":"DIRECTED","_key":"72566","_from":"8399","_to":"43760"} +{"$label":"DIRECTED","_key":"72088","_from":"8399","_to":"43579"} +{"$label":"DIRECTED","_key":"71206","_from":"8399","_to":"43214"} +{"$label":"DIRECTED","_key":"52809","_from":"8399","_to":"34247"} +{"$label":"DIRECTED","_key":"10579","_from":"8399","_to":"8403"} +{"$label":"ACTS_IN","name":"Xusia","type":"Role","_key":"97676","_from":"8400","_to":"57516"} +{"$label":"ACTS_IN","name":"Buzz","type":"Role","_key":"89564","_from":"8400","_to":"53001"} +{"$label":"ACTS_IN","name":"Big Ben","type":"Role","_key":"69722","_from":"8400","_to":"42559"} +{"$label":"ACTS_IN","name":"Mr. O`Reilly","type":"Role","_key":"26333","_from":"8400","_to":"18912"} +{"$label":"ACTS_IN","name":"Stranger","type":"Role","_key":"111874","_from":"8401","_to":"66044"} +{"$label":"ACTS_IN","name":"Jock","type":"Role","_key":"96214","_from":"8401","_to":"56552"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26321","_from":"8401","_to":"18902"} +{"$label":"ACTS_IN","name":"Wilbur Glenworthy","type":"Role","_key":"108575","_from":"8402","_to":"64161"} +{"$label":"ACTS_IN","name":"Lennie Pike","type":"Role","_key":"70799","_from":"8402","_to":"43041"} +{"$label":"ACTS_IN","name":"Little Rocko","type":"Role","_key":"10591","_from":"8413","_to":"8403"} +{"$label":"ACTS_IN","name":"Big Rocko","type":"Role","_key":"10590","_from":"8412","_to":"8403"} +{"$label":"ACTS_IN","name":"Keith Richrock","type":"Role","_key":"10589","_from":"8411","_to":"8403"} +{"$label":"ACTS_IN","name":"Roxie","type":"Role","_key":"10588","_from":"8410","_to":"8403"} +{"$label":"ACTS_IN","name":"Colonel Slaghoople","type":"Role","_key":"10586","_from":"8409","_to":"8403"} +{"$label":"ACTS_IN","name":"Chip Rockefeller","type":"Role","_key":"10585","_from":"8408","_to":"8403"} +{"$label":"ACTS_IN","name":"Pearl Slaghoople","type":"Role","_key":"10584","_from":"8407","_to":"8403"} +{"$label":"ACTS_IN","name":"Betty O'Shale","type":"Role","_key":"10583","_from":"8406","_to":"8403"} +{"$label":"ACTS_IN","name":"Wilma Slaghoople","type":"Role","_key":"10582","_from":"8405","_to":"8403"} +{"$label":"ACTS_IN","name":"Fred Flintstone","type":"Role","_key":"10580","_from":"8404","_to":"8403"} +{"$label":"ACTS_IN","name":"Cisco","type":"Role","_key":"108547","_from":"8404","_to":"64148"} +{"$label":"ACTS_IN","name":"Steamer Captain","type":"Role","_key":"61694","_from":"8404","_to":"38858"} +{"$label":"ACTS_IN","name":"Mac MacArthur","type":"Role","_key":"56236","_from":"8404","_to":"35731"} +{"$label":"ACTS_IN","name":"Thomas Garrett","type":"Role","_key":"55071","_from":"8404","_to":"35178"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"54104","_from":"8404","_to":"34782"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"53784","_from":"8404","_to":"34661"} +{"$label":"ACTS_IN","name":"David Filby","type":"Role","_key":"18575","_from":"8404","_to":"13738"} +{"$label":"ACTS_IN","name":"Coach Divers","type":"Role","_key":"92889","_from":"8405","_to":"54784"} +{"$label":"ACTS_IN","name":"Deb","type":"Role","_key":"63822","_from":"8405","_to":"39898"} +{"$label":"ACTS_IN","name":"Giselle (Voice)","type":"Role","_key":"95899","_from":"8406","_to":"56396"} +{"$label":"ACTS_IN","name":"Dorie","type":"Role","_key":"51103","_from":"8406","_to":"33343"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"49307","_from":"8406","_to":"32288"} +{"$label":"ACTS_IN","name":"Giselle (voice)","type":"Role","_key":"46858","_from":"8406","_to":"30900"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71240","_from":"8407","_to":"43224"} +{"$label":"ACTS_IN","name":"Agnes Lazelle","type":"Role","_key":"15710","_from":"8407","_to":"11975"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"105680","_from":"8408","_to":"62205"} +{"$label":"ACTS_IN","name":"Stephen Chase","type":"Role","_key":"68844","_from":"8408","_to":"42176"} +{"$label":"ACTS_IN","name":"Krelman \/ Chef Gormaanda \/ Amorphian instructor","type":"Role","_key":"107320","_from":"8409","_to":"63286"} +{"$label":"ACTS_IN","name":"Dr. Charles Montague","type":"Role","_key":"90108","_from":"8409","_to":"53290"} +{"$label":"ACTS_IN","name":"Capt. Blythe","type":"Role","_key":"88185","_from":"8409","_to":"52321"} +{"$label":"ACTS_IN","name":"Dr. Jack Seward","type":"Role","_key":"88078","_from":"8409","_to":"52279"} +{"$label":"ACTS_IN","name":"Hedley Lamarr","type":"Role","_key":"67707","_from":"8409","_to":"41639"} +{"$label":"ACTS_IN","name":"Count de Monet","type":"Role","_key":"61305","_from":"8409","_to":"38701"} +{"$label":"ACTS_IN","name":"Simon Watterman","type":"Role","_key":"31174","_from":"8409","_to":"21822"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"58168","_from":"8410","_to":"36795"} +{"$label":"ACTS_IN","name":"Jimmy Szaragosa","type":"Role","_key":"67756","_from":"8411","_to":"41653"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"58209","_from":"8411","_to":"36816"} +{"$label":"ACTS_IN","name":"Simpson","type":"Role","_key":"118777","_from":"8412","_to":"69835"} +{"$label":"ACTS_IN","name":"Knuckles","type":"Role","_key":"70234","_from":"8412","_to":"42798"} +{"$label":"ACTS_IN","name":"Detective #1","type":"Role","_key":"56263","_from":"8412","_to":"35740"} +{"$label":"ACTS_IN","name":"Waldo","type":"Role","_key":"43537","_from":"8412","_to":"29077"} +{"$label":"ACTS_IN","name":"Glen Ross","type":"Role","_key":"56884","_from":"8413","_to":"36109"} +{"$label":"ACTS_IN","name":"Burga","type":"Role","_key":"10604","_from":"8422","_to":"8414"} +{"$label":"ACTS_IN","name":"Seffin","type":"Role","_key":"10599","_from":"8421","_to":"8414"} +{"$label":"ACTS_IN","name":"Oskar","type":"Role","_key":"10598","_from":"8420","_to":"8414"} +{"$label":"ACTS_IN","name":"Kurat Benzer","type":"Role","_key":"10597","_from":"8419","_to":"8414"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"10595","_from":"8418","_to":"8414"} +{"$label":"ACTS_IN","name":"Elsbeth","type":"Role","_key":"10594","_from":"8417","_to":"8414"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"10593","_from":"8416","_to":"8414"} +{"$label":"DIRECTED","_key":"10592","_from":"8415","_to":"8414"} +{"$label":"DIRECTED","_key":"110873","_from":"8415","_to":"65486"} +{"$label":"DIRECTED","_key":"89265","_from":"8415","_to":"52849"} +{"$label":"DIRECTED","_key":"67882","_from":"8415","_to":"41712"} +{"$label":"DIRECTED","_key":"67409","_from":"8415","_to":"41528"} +{"$label":"DIRECTED","_key":"66353","_from":"8415","_to":"41038"} +{"$label":"DIRECTED","_key":"63106","_from":"8415","_to":"39589"} +{"$label":"DIRECTED","_key":"61103","_from":"8415","_to":"38620"} +{"$label":"DIRECTED","_key":"54448","_from":"8415","_to":"34914"} +{"$label":"DIRECTED","_key":"41181","_from":"8415","_to":"27712"} +{"$label":"ACTS_IN","name":"Kaspar Hauser","type":"Role","_key":"90726","_from":"8416","_to":"53552"} +{"$label":"ACTS_IN","name":"Alfons Amberger","type":"Role","_key":"71600","_from":"8416","_to":"43365"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"89260","_from":"8417","_to":"52849"} +{"$label":"ACTS_IN","name":"Lilli Simoneit","type":"Role","_key":"67407","_from":"8417","_to":"41528"} +{"$label":"ACTS_IN","name":"Anna Wimschneider","type":"Role","_key":"61098","_from":"8417","_to":"38620"} +{"$label":"ACTS_IN","name":"Franz Sass","type":"Role","_key":"69068","_from":"8418","_to":"42269"} +{"$label":"ACTS_IN","name":"Robert Biberti","type":"Role","_key":"54440","_from":"8418","_to":"34914"} +{"$label":"ACTS_IN","name":"Karaman","type":"Role","_key":"38712","_from":"8418","_to":"26151"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"20041","_from":"8418","_to":"14741"} +{"$label":"ACTS_IN","name":"Harry Butzbach","type":"Role","_key":"19004","_from":"8418","_to":"14038"} +{"$label":"ACTS_IN","name":"Hans Wieck","type":"Role","_key":"12447","_from":"8418","_to":"9747"} +{"$label":"ACTS_IN","name":"Friedrich Torkelsen","type":"Role","_key":"39696","_from":"8419","_to":"26821"} +{"$label":"ACTS_IN","name":"Friedrich Torkelsen","type":"Role","_key":"39684","_from":"8419","_to":"26819"} +{"$label":"ACTS_IN","name":"Friedrich Torkelsen","type":"Role","_key":"39674","_from":"8419","_to":"26810"} +{"$label":"ACTS_IN","name":"Captain Smollett","type":"Role","_key":"38314","_from":"8419","_to":"25875"} +{"$label":"ACTS_IN","name":"Richard Stieglmeier","type":"Role","_key":"31463","_from":"8420","_to":"21972"} +{"$label":"ACTS_IN","name":"Frau Retzlaff","type":"Role","_key":"42850","_from":"8421","_to":"28648"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"10623","_from":"8432","_to":"8423"} +{"$label":"ACTS_IN","name":"James W. McCord, Jr.","type":"Role","_key":"10622","_from":"8431","_to":"8423"} +{"$label":"ACTS_IN","name":"Markham","type":"Role","_key":"10621","_from":"8430","_to":"8423"} +{"$label":"ACTS_IN","name":"Bernard L. Barker","type":"Role","_key":"10620","_from":"8429","_to":"8423"} +{"$label":"ACTS_IN","name":"Donald H. Segretti","type":"Role","_key":"10618","_from":"8428","_to":"8423"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"10617","_from":"8427","_to":"8423"} +{"$label":"ACTS_IN","name":"Sally Aiken","type":"Role","_key":"10616","_from":"8426","_to":"8423"} +{"$label":"ACTS_IN","name":"Martin Dardis","type":"Role","_key":"10613","_from":"8425","_to":"8423"} +{"$label":"ACTS_IN","name":"Debbie Sloan","type":"Role","_key":"10612","_from":"8424","_to":"8423"} +{"$label":"ACTS_IN","name":"Mrs. Caroline Hubbard","type":"Role","_key":"41735","_from":"8424","_to":"28008"} +{"$label":"ACTS_IN","name":"Clyde Torkle","type":"Role","_key":"119413","_from":"8425","_to":"70159"} +{"$label":"ACTS_IN","name":"Shorty Scotty","type":"Role","_key":"118855","_from":"8425","_to":"69859"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"117412","_from":"8425","_to":"69059"} +{"$label":"ACTS_IN","name":"Daniel Ruettiger","type":"Role","_key":"100671","_from":"8425","_to":"59358"} +{"$label":"ACTS_IN","name":"Sam Kolawetz","type":"Role","_key":"98015","_from":"8425","_to":"57719"} +{"$label":"ACTS_IN","name":"Twinky LeMoyne","type":"Role","_key":"97922","_from":"8425","_to":"57668"} +{"$label":"ACTS_IN","name":"Jack Delorean","type":"Role","_key":"93599","_from":"8425","_to":"55116"} +{"$label":"ACTS_IN","name":"Dan Beame","type":"Role","_key":"89715","_from":"8425","_to":"53109"} +{"$label":"ACTS_IN","name":"Ward Douglas","type":"Role","_key":"70376","_from":"8425","_to":"42868"} +{"$label":"ACTS_IN","name":"Ernest Weller","type":"Role","_key":"70303","_from":"8425","_to":"42835"} +{"$label":"ACTS_IN","name":"Jack Kellom","type":"Role","_key":"67390","_from":"8425","_to":"41521"} +{"$label":"ACTS_IN","name":"Arthur Jensen","type":"Role","_key":"65692","_from":"8425","_to":"40690"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"64943","_from":"8425","_to":"40375"} +{"$label":"ACTS_IN","name":"Lotso (voice)","type":"Role","_key":"61603","_from":"8425","_to":"38829"} +{"$label":"ACTS_IN","name":"McNair","type":"Role","_key":"52346","_from":"8425","_to":"34070"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"50120","_from":"8425","_to":"32783"} +{"$label":"ACTS_IN","name":"Senator Charles F. Meachum","type":"Role","_key":"46878","_from":"8425","_to":"30909"} +{"$label":"ACTS_IN","name":"Sheriff J.C. Connors","type":"Role","_key":"35334","_from":"8425","_to":"24063"} +{"$label":"ACTS_IN","name":"Borisov \/ Petrovic","type":"Role","_key":"34763","_from":"8425","_to":"23765"} +{"$label":"ACTS_IN","name":"Delbert Reese","type":"Role","_key":"26135","_from":"8425","_to":"18778"} +{"$label":"ACTS_IN","name":"Dr. Boyle","type":"Role","_key":"22203","_from":"8425","_to":"16177"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"16658","_from":"8425","_to":"12577"} +{"$label":"ACTS_IN","name":"Harry Lovell","type":"Role","_key":"118106","_from":"8430","_to":"69414"} +{"$label":"ACTS_IN","name":"Angus MacLachlan","type":"Role","_key":"119833","_from":"8431","_to":"70368"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"108913","_from":"8431","_to":"64366"} +{"$label":"ACTS_IN","name":"Chairman Specer","type":"Role","_key":"38555","_from":"8431","_to":"26048"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"22172","_from":"8431","_to":"16161"} +{"$label":"ACTS_IN","name":"Evan Mc Cormack","type":"Role","_key":"11693","_from":"8431","_to":"9177"} +{"$label":"ACTS_IN","name":"Jeff Lassiter","type":"Role","_key":"115279","_from":"8432","_to":"67879"} +{"$label":"ACTS_IN","name":"O'Brien","type":"Role","_key":"62813","_from":"8432","_to":"39474"} +{"$label":"ACTS_IN","name":"Le chauffeur de taxi","type":"Role","_key":"10639","_from":"8446","_to":"8433"} +{"$label":"ACTS_IN","name":"Monsieur Potin","type":"Role","_key":"10638","_from":"8445","_to":"8433"} +{"$label":"ACTS_IN","name":"Madame Interligator","type":"Role","_key":"10637","_from":"8444","_to":"8433"} +{"$label":"ACTS_IN","name":"Monsieur Interligator","type":"Role","_key":"10636","_from":"8443","_to":"8433"} +{"$label":"ACTS_IN","name":"Le facteur","type":"Role","_key":"10635","_from":"8442","_to":"8433"} +{"$label":"ACTS_IN","name":"Roger Kube","type":"Role","_key":"10634","_from":"8441","_to":"8433"} +{"$label":"ACTS_IN","name":"La grand-m\u00e8re","type":"Role","_key":"10632","_from":"8440","_to":"8433"} +{"$label":"ACTS_IN","name":"La victime initiale","type":"Role","_key":"10631","_from":"8439","_to":"8433"} +{"$label":"ACTS_IN","name":"Marcel Tapioca","type":"Role","_key":"10630","_from":"8438","_to":"8433"} +{"$label":"ACTS_IN","name":"Mademoiselle Plusse","type":"Role","_key":"10629","_from":"8437","_to":"8433"} +{"$label":"ACTS_IN","name":"Clapet (le boucher)","type":"Role","_key":"10628","_from":"8436","_to":"8433"} +{"$label":"ACTS_IN","name":"Julie Clapet","type":"Role","_key":"10627","_from":"8435","_to":"8433"} +{"$label":"DIRECTED","_key":"10624","_from":"8434","_to":"8433"} +{"$label":"DIRECTED","_key":"103283","_from":"8434","_to":"60764"} +{"$label":"DIRECTED","_key":"10737","_from":"8434","_to":"8522"} +{"$label":"ACTS_IN","name":"Zwerg","type":"Role","_key":"61842","_from":"8436","_to":"38929"} +{"$label":"ACTS_IN","name":"Le duc d'Orl\u00e9ans","type":"Role","_key":"24112","_from":"8436","_to":"17488"} +{"$label":"ACTS_IN","name":"Commandant Lavrouye","type":"Role","_key":"23895","_from":"8436","_to":"17312"} +{"$label":"ACTS_IN","name":"Inspecteur Bruneau","type":"Role","_key":"20786","_from":"8436","_to":"15200"} +{"$label":"ACTS_IN","name":"Eug\u00e8ne Normandin","type":"Role","_key":"17326","_from":"8436","_to":"12958"} +{"$label":"ACTS_IN","name":"Marcello","type":"Role","_key":"10743","_from":"8436","_to":"8522"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"104460","_from":"8437","_to":"61441"} +{"$label":"ACTS_IN","name":"Marie-Laurence","type":"Role","_key":"101447","_from":"8437","_to":"59718"} +{"$label":"ACTS_IN","name":"Coralie","type":"Role","_key":"96137","_from":"8437","_to":"56505"} +{"$label":"ACTS_IN","name":"V\u00e9ro","type":"Role","_key":"49712","_from":"8437","_to":"32530"} +{"$label":"ACTS_IN","name":"La Boulang\u00e8re","type":"Role","_key":"48769","_from":"8437","_to":"31986"} +{"$label":"ACTS_IN","name":"Agathe","type":"Role","_key":"43442","_from":"8437","_to":"29017"} +{"$label":"ACTS_IN","name":"Martineau","type":"Role","_key":"46043","_from":"8438","_to":"30419"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"32035","_from":"8438","_to":"22318"} +{"$label":"ACTS_IN","name":"le diable","type":"Role","_key":"30696","_from":"8438","_to":"21536"} +{"$label":"ACTS_IN","name":"Germain Pire","type":"Role","_key":"23885","_from":"8438","_to":"17312"} +{"$label":"ACTS_IN","name":"Ex-acrobat","type":"Role","_key":"10749","_from":"8438","_to":"8522"} +{"$label":"ACTS_IN","name":"Le maire de Charmoussey","type":"Role","_key":"100051","_from":"8441","_to":"59020"} +{"$label":"ACTS_IN","name":"Gauthier","type":"Role","_key":"42938","_from":"8441","_to":"28687"} +{"$label":"ACTS_IN","name":"M. Bouley","type":"Role","_key":"32240","_from":"8441","_to":"22464"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"15598","_from":"8443","_to":"11896"} +{"$label":"ACTS_IN","name":"Valet Humphrey","type":"Role","_key":"38116","_from":"8445","_to":"25774"} +{"$label":"ACTS_IN","name":"German Embassy Official Lisbon","type":"Role","_key":"31257","_from":"8445","_to":"21866"} +{"$label":"ACTS_IN","name":"Le professeur","type":"Role","_key":"28572","_from":"8445","_to":"20423"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"28450","_from":"8445","_to":"20343"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"26533","_from":"8445","_to":"19069"} +{"$label":"ACTS_IN","name":"Cagliostro","type":"Role","_key":"26424","_from":"8445","_to":"18983"} +{"$label":"ACTS_IN","name":"Henri Rieutord, chef de poste","type":"Role","_key":"34623","_from":"8446","_to":"23691"} +{"$label":"ACTS_IN","name":"Saddo, le voyou","type":"Role","_key":"33892","_from":"8446","_to":"23338"} +{"$label":"ACTS_IN","name":"Balloon Seller","type":"Role","_key":"30629","_from":"8446","_to":"21508"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"27359","_from":"8446","_to":"19658"} +{"$label":"ACTS_IN","name":"L'autostoppeur","type":"Role","_key":"27112","_from":"8446","_to":"19515"} +{"$label":"ACTS_IN","name":"Le pompiste","type":"Role","_key":"23572","_from":"8446","_to":"17089"} +{"$label":"ACTS_IN","name":"Voisin de Caroline","type":"Role","_key":"20795","_from":"8446","_to":"15200"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"10650","_from":"8454","_to":"8447"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"10649","_from":"8453","_to":"8447"} +{"$label":"ACTS_IN","name":"Vater Schmiedel","type":"Role","_key":"10648","_from":"8452","_to":"8447"} +{"$label":"ACTS_IN","name":"Mutter Schmiedel","type":"Role","_key":"10647","_from":"8451","_to":"8447"} +{"$label":"ACTS_IN","name":"Frau Seifert","type":"Role","_key":"10646","_from":"8450","_to":"8447"} +{"$label":"ACTS_IN","name":"Wagner","type":"Role","_key":"10645","_from":"8449","_to":"8447"} +{"$label":"ACTS_IN","name":"Jegor","type":"Role","_key":"10643","_from":"8448","_to":"8447"} +{"$label":"ACTS_IN","name":"Juri","type":"Role","_key":"90303","_from":"8448","_to":"53382"} +{"$label":"ACTS_IN","name":"Lucies Freund","type":"Role","_key":"19328","_from":"8449","_to":"14285"} +{"$label":"ACTS_IN","name":"Mitarbeiterin von Kun","type":"Role","_key":"24109","_from":"8450","_to":"17475"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"51414","_from":"8451","_to":"33540"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"67044","_from":"8454","_to":"41385"} +{"$label":"ACTS_IN","name":"Herr Friedrich","type":"Role","_key":"10661","_from":"8463","_to":"8455"} +{"$label":"ACTS_IN","name":"Frau Friedrich","type":"Role","_key":"10660","_from":"8462","_to":"8455"} +{"$label":"ACTS_IN","name":"Krylow","type":"Role","_key":"10659","_from":"8461","_to":"8455"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"10658","_from":"8460","_to":"8455"} +{"$label":"ACTS_IN","name":"Jurek","type":"Role","_key":"10657","_from":"8459","_to":"8455"} +{"$label":"ACTS_IN","name":"Maler Waldersee","type":"Role","_key":"10656","_from":"8458","_to":"8455"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"10655","_from":"8457","_to":"8455"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"10654","_from":"8456","_to":"8455"} +{"$label":"ACTS_IN","name":"Anita Bartsch","type":"Role","_key":"47681","_from":"8457","_to":"31413"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"44795","_from":"8457","_to":"29799"} +{"$label":"ACTS_IN","name":"Biggi","type":"Role","_key":"44013","_from":"8457","_to":"29357"} +{"$label":"ACTS_IN","name":"Dora Rabe","type":"Role","_key":"40590","_from":"8457","_to":"27336"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"30782","_from":"8457","_to":"21582"} +{"$label":"ACTS_IN","name":"Fiedler","type":"Role","_key":"92505","_from":"8458","_to":"54601"} +{"$label":"ACTS_IN","name":"Vincent Van Gogh","type":"Role","_key":"24242","_from":"8458","_to":"17560"} +{"$label":"ACTS_IN","name":"Willi Wandel","type":"Role","_key":"90474","_from":"8460","_to":"53453"} +{"$label":"ACTS_IN","name":"Prof. Grunius","type":"Role","_key":"50875","_from":"8460","_to":"33205"} +{"$label":"ACTS_IN","name":"Dr. Viktor Hahn","type":"Role","_key":"47406","_from":"8460","_to":"31223"} +{"$label":"ACTS_IN","name":"Gro\u00dfknecht","type":"Role","_key":"11815","_from":"8460","_to":"9266"} +{"$label":"ACTS_IN","name":"Kiriakov","type":"Role","_key":"66604","_from":"8461","_to":"41171"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"13201","_from":"8461","_to":"10283"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"92507","_from":"8462","_to":"54601"} +{"$label":"ACTS_IN","name":"Lehmanns Mutter","type":"Role","_key":"30978","_from":"8462","_to":"21698"} +{"$label":"ACTS_IN","name":"Pater Patrikey","type":"Role","_key":"10674","_from":"8474","_to":"8464"} +{"$label":"ACTS_IN","name":"Der Narr","type":"Role","_key":"10673","_from":"8473","_to":"8464"} +{"$label":"ACTS_IN","name":"Tatar Khan","type":"Role","_key":"10672","_from":"8472","_to":"8464"} +{"$label":"ACTS_IN","name":"Foma","type":"Role","_key":"10671","_from":"8471","_to":"8464"} +{"$label":"ACTS_IN","name":"Stephan","type":"Role","_key":"10670","_from":"8470","_to":"8464"} +{"$label":"ACTS_IN","name":"Gro\u00dfer Prinz\/Sein Bruder","type":"Role","_key":"10669","_from":"8469","_to":"8464"} +{"$label":"ACTS_IN","name":"Boriska","type":"Role","_key":"10668","_from":"8468","_to":"8464"} +{"$label":"ACTS_IN","name":"Durochka","type":"Role","_key":"10667","_from":"8467","_to":"8464"} +{"$label":"ACTS_IN","name":"Theophanes","type":"Role","_key":"10666","_from":"8466","_to":"8464"} +{"$label":"ACTS_IN","name":"Kirill","type":"Role","_key":"10664","_from":"8465","_to":"8464"} +{"$label":"ACTS_IN","name":"Military trainer","type":"Role","_key":"12942","_from":"8469","_to":"10095"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"10682","_from":"8482","_to":"8475"} +{"$label":"ACTS_IN","name":"Shashinarayan's wife","type":"Role","_key":"10681","_from":"8481","_to":"8475"} +{"$label":"ACTS_IN","name":"Shashinarayan","type":"Role","_key":"10680","_from":"8480","_to":"8475"} +{"$label":"ACTS_IN","name":"Pulu","type":"Role","_key":"10679","_from":"8479","_to":"8475"} +{"$label":"ACTS_IN","name":"Kajal","type":"Role","_key":"10678","_from":"8478","_to":"8475"} +{"$label":"ACTS_IN","name":"Aparna","type":"Role","_key":"10677","_from":"8477","_to":"8475"} +{"$label":"ACTS_IN","name":"Apurba Roy","type":"Role","_key":"10676","_from":"8476","_to":"8475"} +{"$label":"ACTS_IN","name":"Savitri Puri","type":"Role","_key":"117042","_from":"8477","_to":"68880"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"10693","_from":"8494","_to":"8483"} +{"$label":"ACTS_IN","name":"Headmaster","type":"Role","_key":"10692","_from":"8493","_to":"8483"} +{"$label":"ACTS_IN","name":"Nanda","type":"Role","_key":"10691","_from":"8492","_to":"8483"} +{"$label":"ACTS_IN","name":"Anil","type":"Role","_key":"10690","_from":"8491","_to":"8483"} +{"$label":"ACTS_IN","name":"Nirupama","type":"Role","_key":"10689","_from":"8490","_to":"8483"} +{"$label":"ACTS_IN","name":"Teliginni","type":"Role","_key":"10688","_from":"8489","_to":"8483"} +{"$label":"ACTS_IN","name":"Bhabataran","type":"Role","_key":"10687","_from":"8488","_to":"8483"} +{"$label":"ACTS_IN","name":"Ginnima","type":"Role","_key":"10686","_from":"8487","_to":"8483"} +{"$label":"ACTS_IN","name":"Teenage Apu","type":"Role","_key":"10685","_from":"8486","_to":"8483"} +{"$label":"ACTS_IN","name":"Sarbojaya Ray","type":"Role","_key":"10684","_from":"8485","_to":"8483"} +{"$label":"ACTS_IN","name":"Harihar Ray","type":"Role","_key":"10683","_from":"8484","_to":"8483"} +{"$label":"ACTS_IN","name":"Harihar (der Vater)","type":"Role","_key":"39534","_from":"8484","_to":"26713"} +{"$label":"ACTS_IN","name":"Sarbojaya Ray (Mutter)","type":"Role","_key":"39530","_from":"8485","_to":"26713"} +{"$label":"ACTS_IN","name":"Kramer","type":"Role","_key":"10706","_from":"8499","_to":"8495"} +{"$label":"ACTS_IN","name":"Dr. Ellis","type":"Role","_key":"10705","_from":"8498","_to":"8495"} +{"$label":"ACTS_IN","name":"Stella Johnson","type":"Role","_key":"10701","_from":"8497","_to":"8495"} +{"$label":"DIRECTED","_key":"10696","_from":"8496","_to":"8495"} +{"$label":"DIRECTED","_key":"116733","_from":"8496","_to":"68714"} +{"$label":"DIRECTED","_key":"65196","_from":"8496","_to":"40491"} +{"$label":"DIRECTED","_key":"53019","_from":"8496","_to":"34335"} +{"$label":"DIRECTED","_key":"48325","_from":"8496","_to":"31733"} +{"$label":"DIRECTED","_key":"27381","_from":"8496","_to":"19677"} +{"$label":"DIRECTED","_key":"18772","_from":"8496","_to":"13886"} +{"$label":"DIRECTED","_key":"11604","_from":"8496","_to":"9116"} +{"$label":"ACTS_IN","name":"Harold Simpson (chief teller)","type":"Role","_key":"115659","_from":"8498","_to":"68087"} +{"$label":"ACTS_IN","name":"Lou Gans","type":"Role","_key":"69716","_from":"8498","_to":"42555"} +{"$label":"ACTS_IN","name":"Dr. Edwin Thompson","type":"Role","_key":"67028","_from":"8498","_to":"41374"} +{"$label":"ACTS_IN","name":"Prof. Frankenstein","type":"Role","_key":"26618","_from":"8498","_to":"19129"} +{"$label":"ACTS_IN","name":"Walter Kemp","type":"Role","_key":"18565","_from":"8498","_to":"13733"} +{"$label":"ACTS_IN","name":"John Egan","type":"Role","_key":"40499","_from":"8499","_to":"27271"} +{"$label":"ACTS_IN","name":"A prizefighter","type":"Role","_key":"10715","_from":"8504","_to":"8500"} +{"$label":"ACTS_IN","name":"Evil Eye","type":"Role","_key":"10713","_from":"8503","_to":"8500"} +{"$label":"ACTS_IN","name":"Burrows' manager","type":"Role","_key":"10712","_from":"8502","_to":"8500"} +{"$label":"ACTS_IN","name":"Cheng Huan","type":"Role","_key":"10710","_from":"8501","_to":"8500"} +{"$label":"ACTS_IN","name":"Elmer","type":"Role","_key":"10728","_from":"8513","_to":"8505"} +{"$label":"ACTS_IN","name":"Mrs. Lehman","type":"Role","_key":"10727","_from":"8512","_to":"8505"} +{"$label":"ACTS_IN","name":"Dr. Alexander Peabody","type":"Role","_key":"10726","_from":"8511","_to":"8505"} +{"$label":"ACTS_IN","name":"Dr. Fritz Lehman","type":"Role","_key":"10724","_from":"8510","_to":"8505"} +{"$label":"ACTS_IN","name":"Mr. Gogarty","type":"Role","_key":"10723","_from":"8509","_to":"8505"} +{"$label":"ACTS_IN","name":"Constable Slocum","type":"Role","_key":"10722","_from":"8508","_to":"8505"} +{"$label":"ACTS_IN","name":"Alice Swallow","type":"Role","_key":"10720","_from":"8507","_to":"8505"} +{"$label":"ACTS_IN","name":"Aunt Elizabeth Random","type":"Role","_key":"10719","_from":"8506","_to":"8505"} +{"$label":"ACTS_IN","name":"Honest John (voice)","type":"Role","_key":"66510","_from":"8508","_to":"41120"} +{"$label":"ACTS_IN","name":"Theatre Manager","type":"Role","_key":"25663","_from":"8508","_to":"18469"} +{"$label":"ACTS_IN","name":"Father Fitzgibbon","type":"Role","_key":"113511","_from":"8509","_to":"66879"} +{"$label":"ACTS_IN","name":"Judge Francis J. Quinncannon","type":"Role","_key":"34533","_from":"8509","_to":"23646"} +{"$label":"ACTS_IN","name":"Michaleen Oge Flynn","type":"Role","_key":"26002","_from":"8509","_to":"18693"} +{"$label":"ACTS_IN","name":"Jester","type":"Role","_key":"24579","_from":"8510","_to":"17772"} +{"$label":"ACTS_IN","name":"Heat Miser","type":"Role","_key":"94295","_from":"8511","_to":"55531"} +{"$label":"ACTS_IN","name":"Consul","type":"Role","_key":"25127","_from":"8511","_to":"18145"} +{"$label":"ACTS_IN","name":"A Prizefighter","type":"Role","_key":"10736","_from":"8521","_to":"8515"} +{"$label":"ACTS_IN","name":"The Eccentric Millionaire's Butler","type":"Role","_key":"10735","_from":"8520","_to":"8515"} +{"$label":"ACTS_IN","name":"An Eccentric Millionaire","type":"Role","_key":"10734","_from":"8519","_to":"8515"} +{"$label":"ACTS_IN","name":"The Blind Girl's Grandmother","type":"Role","_key":"10733","_from":"8518","_to":"8515"} +{"$label":"ACTS_IN","name":"A Blind Girl","type":"Role","_key":"10732","_from":"8517","_to":"8515"} +{"$label":"ACTS_IN","name":"Tramp","type":"Role","_key":"10731","_from":"8516","_to":"8515"} +{"$label":"DIRECTED","_key":"10730","_from":"8516","_to":"8515"} +{"$label":"DIRECTED","_key":"96023","_from":"8516","_to":"56444"} +{"$label":"DIRECTED","_key":"60675","_from":"8516","_to":"38311"} +{"$label":"DIRECTED","_key":"25559","_from":"8516","_to":"18417"} +{"$label":"DIRECTED","_key":"24709","_from":"8516","_to":"17866"} +{"$label":"DIRECTED","_key":"18073","_from":"8516","_to":"13430"} +{"$label":"DIRECTED","_key":"18063","_from":"8516","_to":"13426"} +{"$label":"DIRECTED","_key":"18055","_from":"8516","_to":"13420"} +{"$label":"DIRECTED","_key":"11436","_from":"8516","_to":"9003"} +{"$label":"DIRECTED","_key":"10867","_from":"8516","_to":"8611"} +{"$label":"ACTS_IN","name":"Street Musician","type":"Role","_key":"96020","_from":"8516","_to":"56444"} +{"$label":"ACTS_IN","name":"A Tramp","type":"Role","_key":"60676","_from":"8516","_to":"38311"} +{"$label":"ACTS_IN","name":"A factory worker","type":"Role","_key":"25560","_from":"8516","_to":"18417"} +{"$label":"ACTS_IN","name":"Chefsteward","type":"Role","_key":"24701","_from":"8516","_to":"17866"} +{"$label":"ACTS_IN","name":"The Count","type":"Role","_key":"18074","_from":"8516","_to":"13430"} +{"$label":"ACTS_IN","name":"Pawnshop Assistant","type":"Role","_key":"18064","_from":"8516","_to":"13426"} +{"$label":"ACTS_IN","name":"A. Waiter","type":"Role","_key":"18056","_from":"8516","_to":"13420"} +{"$label":"ACTS_IN","name":"The Lone Prospector","type":"Role","_key":"11437","_from":"8516","_to":"9003"} +{"$label":"ACTS_IN","name":"Jewish Barber","type":"Role","_key":"10868","_from":"8516","_to":"8611"} +{"$label":"ACTS_IN","name":"President of the Electro Steel Corp.","type":"Role","_key":"25567","_from":"8520","_to":"18417"} +{"$label":"ACTS_IN","name":"Burglar","type":"Role","_key":"25565","_from":"8521","_to":"18417"} +{"$label":"ACTS_IN","name":"la Pieuvre","type":"Role","_key":"10745","_from":"8526","_to":"8522"} +{"$label":"ACTS_IN","name":"la Pieuvre","type":"Role","_key":"10744","_from":"8525","_to":"8522"} +{"$label":"ACTS_IN","name":"Krank","type":"Role","_key":"10742","_from":"8524","_to":"8522"} +{"$label":"ACTS_IN","name":"Miette","type":"Role","_key":"10741","_from":"8523","_to":"8522"} +{"$label":"ACTS_IN","name":"Colonel Hakim","type":"Role","_key":"36335","_from":"8524","_to":"24646"} +{"$label":"ACTS_IN","name":"Donacil","type":"Role","_key":"31836","_from":"8524","_to":"22219"} +{"$label":"ACTS_IN","name":"Gas Station Man","type":"Role","_key":"28452","_from":"8524","_to":"20343"} +{"$label":"ACTS_IN","name":"la m\u00e8re d'Ariane","type":"Role","_key":"120409","_from":"8525","_to":"70729"} +{"$label":"ACTS_IN","name":"Society Red","type":"Role","_key":"10765","_from":"8535","_to":"8527"} +{"$label":"ACTS_IN","name":"Boss Shorty","type":"Role","_key":"10764","_from":"8534","_to":"8527"} +{"$label":"ACTS_IN","name":"Rabbitt","type":"Role","_key":"10762","_from":"8533","_to":"8527"} +{"$label":"ACTS_IN","name":"Loudmouth Steve","type":"Role","_key":"10758","_from":"8532","_to":"8527"} +{"$label":"ACTS_IN","name":"Koko","type":"Role","_key":"10757","_from":"8531","_to":"8527"} +{"$label":"ACTS_IN","name":"Boss Godfrey","type":"Role","_key":"10754","_from":"8530","_to":"8527"} +{"$label":"ACTS_IN","name":"Dragline","type":"Role","_key":"10752","_from":"8529","_to":"8527"} +{"$label":"DIRECTED","_key":"10750","_from":"8528","_to":"8527"} +{"$label":"DIRECTED","_key":"104183","_from":"8528","_to":"61284"} +{"$label":"DIRECTED","_key":"69931","_from":"8528","_to":"42672"} +{"$label":"DIRECTED","_key":"14394","_from":"8528","_to":"11128"} +{"$label":"ACTS_IN","name":"Willard","type":"Role","_key":"120775","_from":"8529","_to":"70939"} +{"$label":"ACTS_IN","name":"Judge Duke","type":"Role","_key":"110794","_from":"8529","_to":"65440"} +{"$label":"ACTS_IN","name":"Ray Spruce","type":"Role","_key":"108496","_from":"8529","_to":"64131"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"90688","_from":"8529","_to":"53539"} +{"$label":"ACTS_IN","name":"Sgt. Lew Slade","type":"Role","_key":"68005","_from":"8529","_to":"41786"} +{"$label":"ACTS_IN","name":"Joe Patroni","type":"Role","_key":"64958","_from":"8529","_to":"40379"} +{"$label":"ACTS_IN","name":"Red Leary","type":"Role","_key":"49229","_from":"8529","_to":"32249"} +{"$label":"ACTS_IN","name":"Joe Patroni","type":"Role","_key":"46017","_from":"8529","_to":"30412"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41603","_from":"8529","_to":"27940"} +{"$label":"ACTS_IN","name":"Vance","type":"Role","_key":"40196","_from":"8529","_to":"27133"} +{"$label":"ACTS_IN","name":"Cotton","type":"Role","_key":"40181","_from":"8529","_to":"27121"} +{"$label":"ACTS_IN","name":"Herman Scobie","type":"Role","_key":"34128","_from":"8529","_to":"23444"} +{"$label":"ACTS_IN","name":"Andrew Pennington","type":"Role","_key":"29985","_from":"8529","_to":"21170"} +{"$label":"ACTS_IN","name":"Major Max Armbruster","type":"Role","_key":"14694","_from":"8529","_to":"11307"} +{"$label":"ACTS_IN","name":"J.P. Sands","type":"Role","_key":"108389","_from":"8530","_to":"64078"} +{"$label":"DIRECTED","_key":"41646","_from":"8531","_to":"27954"} +{"$label":"ACTS_IN","name":"Milt","type":"Role","_key":"44556","_from":"8534","_to":"29659"} +{"$label":"ACTS_IN","name":"New York D.A.","type":"Role","_key":"99859","_from":"8535","_to":"58893"} +{"$label":"ACTS_IN","name":"Mace","type":"Role","_key":"15548","_from":"8535","_to":"11870"} +{"$label":"ACTS_IN","name":"Herr Hofman","type":"Role","_key":"10771","_from":"8540","_to":"8536"} +{"$label":"ACTS_IN","name":"Charly Forst","type":"Role","_key":"10770","_from":"8539","_to":"8536"} +{"$label":"ACTS_IN","name":"Lilly Maass","type":"Role","_key":"10768","_from":"8538","_to":"8536"} +{"$label":"DIRECTED","_key":"10766","_from":"8537","_to":"8536"} +{"$label":"ACTS_IN","name":"Herr Spitz","type":"Role","_key":"23635","_from":"8539","_to":"17129"} +{"$label":"ACTS_IN","name":"Anna Geschwitz","type":"Role","_key":"10778","_from":"8548","_to":"8541"} +{"$label":"ACTS_IN","name":"Rodrigo Quast","type":"Role","_key":"10777","_from":"8547","_to":"8541"} +{"$label":"ACTS_IN","name":"Schigolch","type":"Role","_key":"10776","_from":"8546","_to":"8541"} +{"$label":"ACTS_IN","name":"Alwa Sch\u00f6n","type":"Role","_key":"10775","_from":"8545","_to":"8541"} +{"$label":"ACTS_IN","name":"Dr. Peter Sch\u00f6n","type":"Role","_key":"10774","_from":"8544","_to":"8541"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"10773","_from":"8543","_to":"8541"} +{"$label":"DIRECTED","_key":"10772","_from":"8542","_to":"8541"} +{"$label":"DIRECTED","_key":"49932","_from":"8542","_to":"32690"} +{"$label":"DIRECTED","_key":"27281","_from":"8542","_to":"19614"} +{"$label":"ACTS_IN","name":"Anzelmo aka Dr. Oracle","type":"Role","_key":"121752","_from":"8544","_to":"71524"} +{"$label":"ACTS_IN","name":"Nera","type":"Role","_key":"24594","_from":"8544","_to":"17795"} +{"$label":"ACTS_IN","name":"Vannier","type":"Role","_key":"15896","_from":"8544","_to":"12094"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin","type":"Role","_key":"10786","_from":"8556","_to":"8549"} +{"$label":"ACTS_IN","name":"Edith von Turoff","type":"Role","_key":"10784","_from":"8555","_to":"8549"} +{"$label":"ACTS_IN","name":"Konsul Cossmann","type":"Role","_key":"10783","_from":"8554","_to":"8549"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"10782","_from":"8553","_to":"8549"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"10781","_from":"8552","_to":"8549"} +{"$label":"ACTS_IN","name":"Lilian Cossmann","type":"Role","_key":"10780","_from":"8551","_to":"8549"} +{"$label":"DIRECTED","_key":"10779","_from":"8550","_to":"8549"} +{"$label":"ACTS_IN","name":"Willy Forster","type":"Role","_key":"45522","_from":"8552","_to":"30151"} +{"$label":"ACTS_IN","name":"Dr. Erdmann","type":"Role","_key":"43787","_from":"8552","_to":"29234"} +{"$label":"ACTS_IN","name":"Klaus Brandt","type":"Role","_key":"40289","_from":"8552","_to":"27184"} +{"$label":"ACTS_IN","name":"Wolf Helius","type":"Role","_key":"24888","_from":"8552","_to":"17994"} +{"$label":"ACTS_IN","name":"Paul L\u00fcders","type":"Role","_key":"23542","_from":"8552","_to":"17071"} +{"$label":"ACTS_IN","name":"Baronin Safferst\u00e4tt","type":"Role","_key":"44915","_from":"8555","_to":"29866"} +{"$label":"ACTS_IN","name":"Frau Jaguweit","type":"Role","_key":"31793","_from":"8556","_to":"22186"} +{"$label":"ACTS_IN","name":"Kostoyed Amourski","type":"Role","_key":"10803","_from":"8565","_to":"8557"} +{"$label":"ACTS_IN","name":"Sergei","type":"Role","_key":"10802","_from":"8564","_to":"8557"} +{"$label":"ACTS_IN","name":"Engineer at dam","type":"Role","_key":"10801","_from":"8563","_to":"8557"} +{"$label":"ACTS_IN","name":"Petya","type":"Role","_key":"10800","_from":"8562","_to":"8557"} +{"$label":"ACTS_IN","name":"Razin, Liberius' Lieutenant","type":"Role","_key":"10799","_from":"8561","_to":"8557"} +{"$label":"ACTS_IN","name":"Liberius","type":"Role","_key":"10798","_from":"8560","_to":"8557"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"10796","_from":"8559","_to":"8557"} +{"$label":"ACTS_IN","name":"Pasha","type":"Role","_key":"10795","_from":"8558","_to":"8557"} +{"$label":"ACTS_IN","name":"Colin Smith","type":"Role","_key":"107103","_from":"8558","_to":"63151"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"101753","_from":"8558","_to":"59884"} +{"$label":"ACTS_IN","name":"Leonard Morrison","type":"Role","_key":"42855","_from":"8558","_to":"28653"} +{"$label":"ACTS_IN","name":"Otley","type":"Role","_key":"31242","_from":"8558","_to":"21863"} +{"$label":"ACTS_IN","name":"Farder Coram","type":"Role","_key":"19915","_from":"8558","_to":"14664"} +{"$label":"ACTS_IN","name":"Commissioner","type":"Role","_key":"88479","_from":"8560","_to":"52443"} +{"$label":"ACTS_IN","name":"Charly Cohen","type":"Role","_key":"35815","_from":"8560","_to":"24317"} +{"$label":"ACTS_IN","name":"Matras","type":"Role","_key":"28571","_from":"8560","_to":"20423"} +{"$label":"ACTS_IN","name":"Deilvie","type":"Role","_key":"26305","_from":"8560","_to":"18886"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"121077","_from":"8562","_to":"71109"} +{"$label":"ACTS_IN","name":"Robinson","type":"Role","_key":"69551","_from":"8562","_to":"42470"} +{"$label":"ACTS_IN","name":"Burke Dennings","type":"Role","_key":"54631","_from":"8562","_to":"34989"} +{"$label":"ACTS_IN","name":"Partridge","type":"Role","_key":"39412","_from":"8562","_to":"26641"} +{"$label":"ACTS_IN","name":"Albie","type":"Role","_key":"33920","_from":"8562","_to":"23357"} +{"$label":"ACTS_IN","name":"Ignatius Feeney (Squire Daniher's handyman)","type":"Role","_key":"26013","_from":"8562","_to":"18693"} +{"$label":"ACTS_IN","name":"Dr. Abronsius","type":"Role","_key":"25273","_from":"8562","_to":"18221"} +{"$label":"ACTS_IN","name":"Quartus","type":"Role","_key":"21195","_from":"8563","_to":"15473"} +{"$label":"ACTS_IN","name":"Inspector Joe Wright","type":"Role","_key":"118845","_from":"8565","_to":"69856"} +{"$label":"ACTS_IN","name":"Michel Fournier","type":"Role","_key":"89151","_from":"8565","_to":"52806"} +{"$label":"ACTS_IN","name":"Francisco Manoel da Silva aka Cobra Verde","type":"Role","_key":"70333","_from":"8565","_to":"42852"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"64933","_from":"8565","_to":"40371"} +{"$label":"ACTS_IN","name":"Friedrich Johann Franz Woyzeck","type":"Role","_key":"62571","_from":"8565","_to":"39375"} +{"$label":"ACTS_IN","name":"Peter Ross","type":"Role","_key":"55177","_from":"8565","_to":"35204"} +{"$label":"ACTS_IN","name":"Brian Sweeney Fitzgerald - 'Fitzcarraldo'","type":"Role","_key":"53232","_from":"8565","_to":"34426"} +{"$label":"ACTS_IN","name":"Loco","type":"Role","_key":"52119","_from":"8565","_to":"33979"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"50405","_from":"8565","_to":"32931"} +{"$label":"ACTS_IN","name":"Gregor Gubanow","type":"Role","_key":"44128","_from":"8565","_to":"29420"} +{"$label":"ACTS_IN","name":"Thomas Fortuna","type":"Role","_key":"44068","_from":"8565","_to":"29386"} +{"$label":"ACTS_IN","name":"Graf Dracula","type":"Role","_key":"43310","_from":"8565","_to":"28933"} +{"$label":"ACTS_IN","name":"Renfield","type":"Role","_key":"38074","_from":"8565","_to":"25754"} +{"$label":"ACTS_IN","name":"Dr. Sturges","type":"Role","_key":"37221","_from":"8565","_to":"25214"} +{"$label":"ACTS_IN","name":"Schenck","type":"Role","_key":"35814","_from":"8565","_to":"24317"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"28530","_from":"8565","_to":"20392"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"27593","_from":"8565","_to":"19788"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"27576","_from":"8565","_to":"19773"} +{"$label":"ACTS_IN","name":"Karl-Heinz Zimmer","type":"Role","_key":"27311","_from":"8565","_to":"19632"} +{"$label":"ACTS_IN","name":"Valentin","type":"Role","_key":"23796","_from":"8565","_to":"17255"} +{"$label":"ACTS_IN","name":"Don Lope de Aguirre","type":"Role","_key":"17354","_from":"8565","_to":"12982"} +{"$label":"ACTS_IN","name":"Wild","type":"Role","_key":"11187","_from":"8565","_to":"8850"} +{"$label":"DIRECTED","_key":"10804","_from":"8567","_to":"8566"} +{"$label":"DIRECTED","_key":"109554","_from":"8567","_to":"64710"} +{"$label":"ACTS_IN","name":"Mr. Neely","type":"Role","_key":"10819","_from":"8580","_to":"8568"} +{"$label":"ACTS_IN","name":"Warren Sheffield","type":"Role","_key":"10818","_from":"8579","_to":"8568"} +{"$label":"ACTS_IN","name":"Agnes Smith","type":"Role","_key":"10816","_from":"8578","_to":"8568"} +{"$label":"ACTS_IN","name":"Alonzo 'Lon' Smith Jr.","type":"Role","_key":"10815","_from":"8577","_to":"8568"} +{"$label":"ACTS_IN","name":"Lucille Ballard","type":"Role","_key":"10814","_from":"8576","_to":"8568"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"10812","_from":"8575","_to":"8568"} +{"$label":"ACTS_IN","name":"John Truett","type":"Role","_key":"10811","_from":"8574","_to":"8568"} +{"$label":"ACTS_IN","name":"Mr. Alonzo Smith","type":"Role","_key":"10810","_from":"8573","_to":"8568"} +{"$label":"ACTS_IN","name":"Rose Smith","type":"Role","_key":"10809","_from":"8572","_to":"8568"} +{"$label":"ACTS_IN","name":"Mrs. Anna Smith","type":"Role","_key":"10808","_from":"8571","_to":"8568"} +{"$label":"ACTS_IN","name":"'Tootie' Smith","type":"Role","_key":"10807","_from":"8570","_to":"8568"} +{"$label":"DIRECTED","_key":"10805","_from":"8569","_to":"8568"} +{"$label":"DIRECTED","_key":"115668","_from":"8569","_to":"68094"} +{"$label":"DIRECTED","_key":"111768","_from":"8569","_to":"65970"} +{"$label":"DIRECTED","_key":"34227","_from":"8569","_to":"23494"} +{"$label":"DIRECTED","_key":"23437","_from":"8569","_to":"16993"} +{"$label":"ACTS_IN","name":"Lady Jessica De Canterville","type":"Role","_key":"120158","_from":"8570","_to":"70573"} +{"$label":"ACTS_IN","name":"Alberta Marlow","type":"Role","_key":"117507","_from":"8571","_to":"69090"} +{"$label":"ACTS_IN","name":"Brigid O'Shaughnessy","type":"Role","_key":"11447","_from":"8571","_to":"9009"} +{"$label":"ACTS_IN","name":"Sally Hessler","type":"Role","_key":"117161","_from":"8572","_to":"68931"} +{"$label":"ACTS_IN","name":"George Winfield","type":"Role","_key":"120499","_from":"8573","_to":"70781"} +{"$label":"ACTS_IN","name":"Mitchell Talbin","type":"Role","_key":"101011","_from":"8573","_to":"59526"} +{"$label":"ACTS_IN","name":"Edgar Draque","type":"Role","_key":"101000","_from":"8573","_to":"59522"} +{"$label":"ACTS_IN","name":"Secretary of the Navy Frank Knox","type":"Role","_key":"68268","_from":"8573","_to":"41908"} +{"$label":"ACTS_IN","name":"Fred Barrett","type":"Role","_key":"16805","_from":"8573","_to":"12660"} +{"$label":"ACTS_IN","name":"Derace Kingsby","type":"Role","_key":"15906","_from":"8573","_to":"12101"} +{"$label":"ACTS_IN","name":"Mrs. Strable","type":"Role","_key":"117255","_from":"8575","_to":"68967"} +{"$label":"ACTS_IN","name":"Mary 'Marie' 'Delacour","type":"Role","_key":"117191","_from":"8578","_to":"68941"} +{"$label":"ACTS_IN","name":"Turk","type":"Role","_key":"116250","_from":"8580","_to":"68441"} +{"$label":"ACTS_IN","name":"Leick Thome","type":"Role","_key":"113461","_from":"8580","_to":"66843"} +{"$label":"ACTS_IN","name":"Uncle Bawley","type":"Role","_key":"15133","_from":"8580","_to":"11613"} +{"$label":"ACTS_IN","name":"Norris","type":"Role","_key":"10829","_from":"8586","_to":"8581"} +{"$label":"ACTS_IN","name":"Chief Inspector Bernie Ohls","type":"Role","_key":"10828","_from":"8585","_to":"8581"} +{"$label":"ACTS_IN","name":"Gen. Sternwood","type":"Role","_key":"10827","_from":"8584","_to":"8581"} +{"$label":"ACTS_IN","name":"Mona Mars","type":"Role","_key":"10826","_from":"8583","_to":"8581"} +{"$label":"ACTS_IN","name":"Carmen Sternwood","type":"Role","_key":"10823","_from":"8582","_to":"8581"} +{"$label":"ACTS_IN","name":"Nurse Billie Jean Green","type":"Role","_key":"34138","_from":"8583","_to":"23449"} +{"$label":"ACTS_IN","name":"Arvide Abernathy","type":"Role","_key":"34252","_from":"8585","_to":"23507"} +{"$label":"ACTS_IN","name":"Det. Sgt. Gillespie","type":"Role","_key":"29891","_from":"8585","_to":"21135"} +{"$label":"ACTS_IN","name":"Reporter Sanders","type":"Role","_key":"25629","_from":"8585","_to":"18451"} +{"$label":"ACTS_IN","name":"Dr. Jamieson","type":"Role","_key":"18807","_from":"8585","_to":"13896"} +{"$label":"ACTS_IN","name":"Packy Robinson - Ole's Manager","type":"Role","_key":"101236","_from":"8586","_to":"59623"} +{"$label":"ACTS_IN","name":"Mackley Q. Greene","type":"Role","_key":"10842","_from":"8598","_to":"8587"} +{"$label":"ACTS_IN","name":"J. Frothingham Waterbury","type":"Role","_key":"10841","_from":"8597","_to":"8587"} +{"$label":"ACTS_IN","name":"Og Oggilby","type":"Role","_key":"10840","_from":"8596","_to":"8587"} +{"$label":"ACTS_IN","name":"Joe Guelpe, Bartender","type":"Role","_key":"10839","_from":"8595","_to":"8587"} +{"$label":"ACTS_IN","name":"J. Pinkerton Snoopington","type":"Role","_key":"10838","_from":"8594","_to":"8587"} +{"$label":"ACTS_IN","name":"Mrs. Hermisillo Brunch","type":"Role","_key":"10837","_from":"8593","_to":"8587"} +{"$label":"ACTS_IN","name":"Elsie Mae Adele Brunch Sous\u00e9","type":"Role","_key":"10836","_from":"8592","_to":"8587"} +{"$label":"ACTS_IN","name":"Myrtle Sous\u00e9","type":"Role","_key":"10835","_from":"8591","_to":"8587"} +{"$label":"ACTS_IN","name":"Agatha Sous\u00e9","type":"Role","_key":"10834","_from":"8590","_to":"8587"} +{"$label":"ACTS_IN","name":"Egbert Sous\u00e9","type":"Role","_key":"10833","_from":"8589","_to":"8587"} +{"$label":"DIRECTED","_key":"10832","_from":"8588","_to":"8587"} +{"$label":"ACTS_IN","name":"Verbena","type":"Role","_key":"119144","_from":"8591","_to":"70021"} +{"$label":"ACTS_IN","name":"Lorraine Fleming","type":"Role","_key":"25364","_from":"8591","_to":"18284"} +{"$label":"ACTS_IN","name":"Mrs. Barlow","type":"Role","_key":"110433","_from":"8593","_to":"65236"} +{"$label":"ACTS_IN","name":"Aunt Katherine Forrest","type":"Role","_key":"100949","_from":"8593","_to":"59500"} +{"$label":"ACTS_IN","name":"Mr. Casalsis","type":"Role","_key":"108582","_from":"8594","_to":"64167"} +{"$label":"ACTS_IN","name":"Jim Gray","type":"Role","_key":"29191","_from":"8595","_to":"20782"} +{"$label":"ACTS_IN","name":"Rector of University","type":"Role","_key":"11710","_from":"8597","_to":"9187"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"10854","_from":"8606","_to":"8599"} +{"$label":"ACTS_IN","name":"Arnie","type":"Role","_key":"10853","_from":"8605","_to":"8599"} +{"$label":"ACTS_IN","name":"Jamie McDonald","type":"Role","_key":"10851","_from":"8604","_to":"8599"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"10850","_from":"8603","_to":"8599"} +{"$label":"ACTS_IN","name":"Abe","type":"Role","_key":"10849","_from":"8602","_to":"8599"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"10848","_from":"8601","_to":"8599"} +{"$label":"ACTS_IN","name":"Det. Lt. Eddy Malone","type":"Role","_key":"10846","_from":"8600","_to":"8599"} +{"$label":"ACTS_IN","name":"Cop #2","type":"Role","_key":"58564","_from":"8600","_to":"36999"} +{"$label":"ACTS_IN","name":"Lyon Burke","type":"Role","_key":"25291","_from":"8600","_to":"18230"} +{"$label":"ACTS_IN","name":"Capt. Insp. McClain","type":"Role","_key":"52220","_from":"8601","_to":"34016"} +{"$label":"ACTS_IN","name":"Man In Suit","type":"Role","_key":"67076","_from":"8604","_to":"41401"} +{"$label":"ACTS_IN","name":"Cardinal Ledesna","type":"Role","_key":"62761","_from":"8604","_to":"39453"} +{"$label":"ACTS_IN","name":"Grant","type":"Role","_key":"16594","_from":"8604","_to":"12537"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"115982","_from":"8606","_to":"68304"} +{"$label":"ACTS_IN","name":"Bobby McKinley","type":"Role","_key":"10865","_from":"8610","_to":"8607"} +{"$label":"ACTS_IN","name":"Friedrich Golchan","type":"Role","_key":"10862","_from":"8609","_to":"8607"} +{"$label":"ACTS_IN","name":"Catherine Banning","type":"Role","_key":"10857","_from":"8608","_to":"8607"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"113736","_from":"8608","_to":"67025"} +{"$label":"ACTS_IN","name":"Mrs. Gertrude 'Trudy' Lintz","type":"Role","_key":"103450","_from":"8608","_to":"60850"} +{"$label":"ACTS_IN","name":"Helen North","type":"Role","_key":"94857","_from":"8608","_to":"55856"} +{"$label":"ACTS_IN","name":"Dr. Molly Griswold","type":"Role","_key":"63564","_from":"8608","_to":"39781"} +{"$label":"ACTS_IN","name":"Frigga","type":"Role","_key":"61617","_from":"8608","_to":"38831"} +{"$label":"ACTS_IN","name":"Lynn Wells","type":"Role","_key":"58311","_from":"8608","_to":"36867"} +{"$label":"ACTS_IN","name":"Toni Morrow","type":"Role","_key":"57886","_from":"8608","_to":"36625"} +{"$label":"ACTS_IN","name":"Secret Service Agent Lilly Raines","type":"Role","_key":"53516","_from":"8608","_to":"34555"} +{"$label":"ACTS_IN","name":"Julie Redlund","type":"Role","_key":"52804","_from":"8608","_to":"34245"} +{"$label":"ACTS_IN","name":"Karen Flores","type":"Role","_key":"47791","_from":"8608","_to":"31468"} +{"$label":"ACTS_IN","name":"Robby Keough","type":"Role","_key":"45264","_from":"8608","_to":"30038"} +{"$label":"ACTS_IN","name":"Katherine Mullon","type":"Role","_key":"28254","_from":"8608","_to":"20232"} +{"$label":"ACTS_IN","name":"Cindy Jo Bumpers\/Burrows","type":"Role","_key":"22196","_from":"8608","_to":"16174"} +{"$label":"ACTS_IN","name":"Anna Herk","type":"Role","_key":"18986","_from":"8608","_to":"14034"} +{"$label":"ACTS_IN","name":"Lorna Cole","type":"Role","_key":"11260","_from":"8608","_to":"8897"} +{"$label":"ACTS_IN","name":"Lorna Cole","type":"Role","_key":"11253","_from":"8608","_to":"8895"} +{"$label":"ACTS_IN","name":"Rosario Filargi \" Finlay \"","type":"Role","_key":"18040","_from":"8610","_to":"13405"} +{"$label":"ACTS_IN","name":"Commander of Storm Troopers (as Peter Lynn)","type":"Role","_key":"10883","_from":"8625","_to":"8611"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"10882","_from":"8624","_to":"8611"} +{"$label":"ACTS_IN","name":"Tomanian Commandant at Osterlich (as Robert O. Davis)","type":"Role","_key":"10881","_from":"8623","_to":"8611"} +{"$label":"ACTS_IN","name":"Tomanian Storm Trooper","type":"Role","_key":"10880","_from":"8622","_to":"8611"} +{"$label":"ACTS_IN","name":"Spook (Bacterian ambassador)","type":"Role","_key":"10879","_from":"8621","_to":"8611"} +{"$label":"ACTS_IN","name":"Mr. Mann","type":"Role","_key":"10878","_from":"8620","_to":"8611"} +{"$label":"ACTS_IN","name":"Mrs. Jaeckel","type":"Role","_key":"10877","_from":"8619","_to":"8611"} +{"$label":"ACTS_IN","name":"Mr. Jaeckel","type":"Role","_key":"10876","_from":"8618","_to":"8611"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"10875","_from":"8617","_to":"8611"} +{"$label":"ACTS_IN","name":"Madame Napaloni","type":"Role","_key":"10874","_from":"8616","_to":"8611"} +{"$label":"ACTS_IN","name":"Mr. Agar","type":"Role","_key":"10873","_from":"8615","_to":"8611"} +{"$label":"ACTS_IN","name":"Garbitsch","type":"Role","_key":"10871","_from":"8614","_to":"8611"} +{"$label":"ACTS_IN","name":"Commander Schultz","type":"Role","_key":"10870","_from":"8613","_to":"8611"} +{"$label":"ACTS_IN","name":"Benzini Napaloni","type":"Role","_key":"10869","_from":"8612","_to":"8611"} +{"$label":"ACTS_IN","name":"Travis Hyle","type":"Role","_key":"44292","_from":"8612","_to":"29517"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"37614","_from":"8612","_to":"25499"} +{"$label":"ACTS_IN","name":"Uncle Oscar Smith","type":"Role","_key":"28196","_from":"8612","_to":"20193"} +{"$label":"ACTS_IN","name":"John Sloan","type":"Role","_key":"95791","_from":"8613","_to":"56341"} +{"$label":"ACTS_IN","name":"Seton 'Dopey' Cram","type":"Role","_key":"108447","_from":"8614","_to":"64107"} +{"$label":"ACTS_IN","name":"Blades","type":"Role","_key":"27255","_from":"8614","_to":"19597"} +{"$label":"ACTS_IN","name":"Dr. Zucco","type":"Role","_key":"18810","_from":"8614","_to":"13896"} +{"$label":"ACTS_IN","name":"Sidney Kidd","type":"Role","_key":"11597","_from":"8614","_to":"9107"} +{"$label":"ACTS_IN","name":"Mrs. Gunderson","type":"Role","_key":"116571","_from":"8616","_to":"68613"} +{"$label":"ACTS_IN","name":"Mrs. Cora Dithers","type":"Role","_key":"29112","_from":"8616","_to":"20737"} +{"$label":"ACTS_IN","name":"Joyce Norman","type":"Role","_key":"117726","_from":"8617","_to":"69203"} +{"$label":"ACTS_IN","name":"Molly McCorkle","type":"Role","_key":"117170","_from":"8617","_to":"68933"} +{"$label":"ACTS_IN","name":"Lt. Joan O'Doul","type":"Role","_key":"113936","_from":"8617","_to":"67114"} +{"$label":"ACTS_IN","name":"A gamin","type":"Role","_key":"25561","_from":"8617","_to":"18417"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"25516","_from":"8619","_to":"18386"} +{"$label":"ACTS_IN","name":"Dr. Albert Fuss","type":"Role","_key":"94612","_from":"8623","_to":"55738"} +{"$label":"ACTS_IN","name":"Mr. Rolfe Bergh - Chaperon","type":"Role","_key":"29468","_from":"8623","_to":"20892"} +{"$label":"ACTS_IN","name":"Sgt. Burns","type":"Role","_key":"26622","_from":"8625","_to":"19129"} +{"$label":"ACTS_IN","name":"Pete Ross","type":"Role","_key":"10896","_from":"8635","_to":"8626"} +{"$label":"ACTS_IN","name":"Albert E. Renick","type":"Role","_key":"10895","_from":"8634","_to":"8626"} +{"$label":"ACTS_IN","name":"Detective Stanton","type":"Role","_key":"10894","_from":"8633","_to":"8626"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"10893","_from":"8632","_to":"8626"} +{"$label":"ACTS_IN","name":"Dr. Willard","type":"Role","_key":"10892","_from":"8631","_to":"8626"} +{"$label":"ACTS_IN","name":"Captain Baker","type":"Role","_key":"10891","_from":"8630","_to":"8626"} +{"$label":"ACTS_IN","name":"Delgetti","type":"Role","_key":"10888","_from":"8629","_to":"8626"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"10887","_from":"8628","_to":"8626"} +{"$label":"ACTS_IN","name":"Walter Chalmers","type":"Role","_key":"10886","_from":"8627","_to":"8626"} +{"$label":"ACTS_IN","name":"Proteus IV (voice) (uncredited)","type":"Role","_key":"117435","_from":"8627","_to":"69064"} +{"$label":"ACTS_IN","name":"Maj. Paul Krueger","type":"Role","_key":"106195","_from":"8627","_to":"62549"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71244","_from":"8627","_to":"43224"} +{"$label":"ACTS_IN","name":"Lawson","type":"Role","_key":"70175","_from":"8627","_to":"42774"} +{"$label":"ACTS_IN","name":"Dick Lecter","type":"Role","_key":"64551","_from":"8627","_to":"40205"} +{"$label":"ACTS_IN","name":"Ross Webster","type":"Role","_key":"54491","_from":"8627","_to":"34930"} +{"$label":"ACTS_IN","name":"Spearman \/ Hebrew at Golden Calf","type":"Role","_key":"44984","_from":"8627","_to":"29886"} +{"$label":"ACTS_IN","name":"Napoleon Solo","type":"Role","_key":"42922","_from":"8627","_to":"28685"} +{"$label":"ACTS_IN","name":"Gary Parker","type":"Role","_key":"40434","_from":"8627","_to":"27256"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"11483","_from":"8627","_to":"9032"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"120385","_from":"8628","_to":"70722"} +{"$label":"ACTS_IN","name":"Lila Montagne","type":"Role","_key":"105566","_from":"8628","_to":"62121"} +{"$label":"ACTS_IN","name":"Isabelle D'Arc","type":"Role","_key":"72887","_from":"8628","_to":"43899"} +{"$label":"ACTS_IN","name":"Gwen Meighen","type":"Role","_key":"64957","_from":"8628","_to":"40379"} +{"$label":"ACTS_IN","name":"Sophie Wynn","type":"Role","_key":"58134","_from":"8628","_to":"36776"} +{"$label":"ACTS_IN","name":"Monique Delacroix","type":"Role","_key":"57117","_from":"8628","_to":"36249"} +{"$label":"ACTS_IN","name":"Paola Franco","type":"Role","_key":"50206","_from":"8628","_to":"32818"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39494","_from":"8628","_to":"26693"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"39368","_from":"8628","_to":"26621"} +{"$label":"ACTS_IN","name":"Claudia Dennis","type":"Role","_key":"36394","_from":"8628","_to":"24688"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"33925","_from":"8628","_to":"23357"} +{"$label":"ACTS_IN","name":"Countess Andrenyi","type":"Role","_key":"29904","_from":"8628","_to":"21143"} +{"$label":"ACTS_IN","name":"Jacqueline Bisset","type":"Role","_key":"29498","_from":"8628","_to":"20909"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"20460","_from":"8628","_to":"14968"} +{"$label":"ACTS_IN","name":"Catherine Lelievre","type":"Role","_key":"15593","_from":"8628","_to":"11896"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"14846","_from":"8628","_to":"11416"} +{"$label":"ACTS_IN","name":"First patient in base hospital (uncredited)","type":"Role","_key":"104696","_from":"8629","_to":"61589"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"70883","_from":"8629","_to":"43072"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"65654","_from":"8629","_to":"40676"} +{"$label":"ACTS_IN","name":"Julot","type":"Role","_key":"40466","_from":"8629","_to":"27261"} +{"$label":"ACTS_IN","name":"Detective at Grogan's Crash Site","type":"Role","_key":"70814","_from":"8630","_to":"43041"} +{"$label":"ACTS_IN","name":"Pat Dillon","type":"Role","_key":"38648","_from":"8630","_to":"26108"} +{"$label":"ACTS_IN","name":"Stanly Nagel","type":"Role","_key":"18603","_from":"8630","_to":"13766"} +{"$label":"ACTS_IN","name":"Prof. Sinclair","type":"Role","_key":"107082","_from":"8631","_to":"63141"} +{"$label":"ACTS_IN","name":"Gold Plainclothesman","type":"Role","_key":"18760","_from":"8634","_to":"13876"} +{"$label":"ACTS_IN","name":"Lieutenant DiMaggio","type":"Role","_key":"100934","_from":"8635","_to":"59497"} +{"$label":"ACTS_IN","name":"Young Birju","type":"Role","_key":"10906","_from":"8646","_to":"8636"} +{"$label":"ACTS_IN","name":"Kamla Siddiqui","type":"Role","_key":"10905","_from":"8645","_to":"8636"} +{"$label":"ACTS_IN","name":"Shambu","type":"Role","_key":"10904","_from":"8644","_to":"8636"} +{"$label":"ACTS_IN","name":"Champa Chanchal","type":"Role","_key":"10903","_from":"8643","_to":"8636"} +{"$label":"ACTS_IN","name":"Sukhilala","type":"Role","_key":"10902","_from":"8642","_to":"8636"} +{"$label":"ACTS_IN","name":"Shamu","type":"Role","_key":"10901","_from":"8641","_to":"8636"} +{"$label":"ACTS_IN","name":"Ramu","type":"Role","_key":"10900","_from":"8640","_to":"8636"} +{"$label":"ACTS_IN","name":"Birju","type":"Role","_key":"10899","_from":"8639","_to":"8636"} +{"$label":"ACTS_IN","name":"Radha","type":"Role","_key":"10898","_from":"8638","_to":"8636"} +{"$label":"DIRECTED","_key":"10897","_from":"8637","_to":"8636"} +{"$label":"ACTS_IN","name":"Shri Hari Prasad Sharma (Munna's father)","type":"Role","_key":"120664","_from":"8639","_to":"70865"} +{"$label":"DIRECTED","_key":"29837","_from":"8646","_to":"21106"} +{"$label":"ACTS_IN","name":"Mrs. Gruen","type":"Role","_key":"10919","_from":"8657","_to":"8647"} +{"$label":"ACTS_IN","name":"Nadia's Mother","type":"Role","_key":"10918","_from":"8656","_to":"8647"} +{"$label":"ACTS_IN","name":"Jordan the Butler","type":"Role","_key":"10917","_from":"8655","_to":"8647"} +{"$label":"ACTS_IN","name":"Muriel Bedford","type":"Role","_key":"10916","_from":"8654","_to":"8647"} +{"$label":"ACTS_IN","name":"Susie Davis","type":"Role","_key":"10915","_from":"8653","_to":"8647"} +{"$label":"ACTS_IN","name":"Ted Davis","type":"Role","_key":"10914","_from":"8652","_to":"8647"} +{"$label":"ACTS_IN","name":"Denny Gordon","type":"Role","_key":"10913","_from":"8651","_to":"8647"} +{"$label":"ACTS_IN","name":"Harry Gruen","type":"Role","_key":"10912","_from":"8650","_to":"8647"} +{"$label":"ACTS_IN","name":"Judge Harold Bedford","type":"Role","_key":"10911","_from":"8649","_to":"8647"} +{"$label":"ACTS_IN","name":"David Bedford","type":"Role","_key":"10910","_from":"8648","_to":"8647"} +{"$label":"ACTS_IN","name":"Don Moore","type":"Role","_key":"119832","_from":"8648","_to":"70368"} +{"$label":"ACTS_IN","name":"K.K.K.","type":"Role","_key":"103920","_from":"8648","_to":"61126"} +{"$label":"ACTS_IN","name":"Lawrence Van Dough","type":"Role","_key":"67284","_from":"8648","_to":"41485"} +{"$label":"ACTS_IN","name":"Capt. Stillman","type":"Role","_key":"66487","_from":"8648","_to":"41111"} +{"$label":"ACTS_IN","name":"Dr. Bangley","type":"Role","_key":"58801","_from":"8648","_to":"37140"} +{"$label":"ACTS_IN","name":"Austin Tucker","type":"Role","_key":"112063","_from":"8649","_to":"66169"} +{"$label":"ACTS_IN","name":"John Adams","type":"Role","_key":"102388","_from":"8649","_to":"60250"} +{"$label":"ACTS_IN","name":"Commissioner Ebbers","type":"Role","_key":"58515","_from":"8649","_to":"36974"} +{"$label":"ACTS_IN","name":"Howard Manchester","type":"Role","_key":"39370","_from":"8649","_to":"26621"} +{"$label":"ACTS_IN","name":"Arthur Lestrange","type":"Role","_key":"38635","_from":"8649","_to":"26098"} +{"$label":"ACTS_IN","name":"Mr. Cromwell","type":"Role","_key":"15932","_from":"8649","_to":"12118"} +{"$label":"ACTS_IN","name":"George Parker","type":"Role","_key":"116164","_from":"8650","_to":"68398"} +{"$label":"ACTS_IN","name":"Gen. Scott Watson","type":"Role","_key":"64036","_from":"8650","_to":"39969"} +{"$label":"ACTS_IN","name":"Dr. Stadler","type":"Role","_key":"43832","_from":"8650","_to":"29268"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"33135","_from":"8650","_to":"22943"} +{"$label":"ACTS_IN","name":"Gary Glass","type":"Role","_key":"48259","_from":"8651","_to":"31702"} +{"$label":"ACTS_IN","name":"Air Conditioner \/ Hanging Lamp (voice)","type":"Role","_key":"121497","_from":"8652","_to":"71370"} +{"$label":"ACTS_IN","name":"Jiji","type":"Role","_key":"110226","_from":"8652","_to":"65147"} +{"$label":"ACTS_IN","name":"Virgil Robinson","type":"Role","_key":"103849","_from":"8652","_to":"61070"} +{"$label":"ACTS_IN","name":"Bly Manager","type":"Role","_key":"101190","_from":"8652","_to":"59606"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"91495","_from":"8652","_to":"53940"} +{"$label":"ACTS_IN","name":"Phil Fimple","type":"Role","_key":"70597","_from":"8652","_to":"42954"} +{"$label":"ACTS_IN","name":"Marlax","type":"Role","_key":"55024","_from":"8652","_to":"35160"} +{"$label":"ACTS_IN","name":"Ted Maltin","type":"Role","_key":"52811","_from":"8652","_to":"34247"} +{"$label":"ACTS_IN","name":"Major Colin Thorn","type":"Role","_key":"52549","_from":"8652","_to":"34162"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"49476","_from":"8652","_to":"32393"} +{"$label":"ACTS_IN","name":"Letitia Vanglider","type":"Role","_key":"104937","_from":"8653","_to":"61746"} +{"$label":"ACTS_IN","name":"Connie Ripley","type":"Role","_key":"22233","_from":"8653","_to":"16189"} +{"$label":"ACTS_IN","name":"Amorous Van Driver","type":"Role","_key":"117902","_from":"8655","_to":"69304"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"72324","_from":"8655","_to":"43680"} +{"$label":"ACTS_IN","name":"Prof. Balls","type":"Role","_key":"41623","_from":"8655","_to":"27943"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"37567","_from":"8655","_to":"25461"} +{"$label":"ACTS_IN","name":"Hercule LaJoy","type":"Role","_key":"14136","_from":"8655","_to":"10944"} +{"$label":"ACTS_IN","name":"Helen Oakes","type":"Role","_key":"45706","_from":"8657","_to":"30247"} +{"$label":"ACTS_IN","name":"S.P. #2 (voice)","type":"Role","_key":"10930","_from":"8669","_to":"8658"} +{"$label":"ACTS_IN","name":"School headmaster (voice)","type":"Role","_key":"10929","_from":"8668","_to":"8658"} +{"$label":"ACTS_IN","name":"S.P. #1 (voice)","type":"Role","_key":"10928","_from":"8667","_to":"8658"} +{"$label":"ACTS_IN","name":"Teacher (voice)","type":"Role","_key":"10927","_from":"8666","_to":"8658"} +{"$label":"ACTS_IN","name":"Mama (voice)","type":"Role","_key":"10926","_from":"8665","_to":"8658"} +{"$label":"ACTS_IN","name":"Louis (voice)","type":"Role","_key":"10925","_from":"8664","_to":"8658"} +{"$label":"ACTS_IN","name":"Sharon (voice)","type":"Role","_key":"10924","_from":"8663","_to":"8658"} +{"$label":"ACTS_IN","name":"David (voice)","type":"Role","_key":"10923","_from":"8662","_to":"8658"} +{"$label":"ACTS_IN","name":"Nurse Makiho Caroline Amano (voice)","type":"Role","_key":"10922","_from":"8661","_to":"8658"} +{"$label":"ACTS_IN","name":"Saya (voice)","type":"Role","_key":"10921","_from":"8660","_to":"8658"} +{"$label":"DIRECTED","_key":"10920","_from":"8659","_to":"8658"} +{"$label":"ACTS_IN","name":"Mitsuko","type":"Role","_key":"69038","_from":"8660","_to":"42262"} +{"$label":"ACTS_IN","name":"Hatsue Imada Miyamoto","type":"Role","_key":"61777","_from":"8660","_to":"38895"} +{"$label":"ACTS_IN","name":"Molecules","type":"Role","_key":"48825","_from":"8660","_to":"32020"} +{"$label":"ACTS_IN","name":"Pumpkin","type":"Role","_key":"16444","_from":"8660","_to":"12429"} +{"$label":"ACTS_IN","name":"Emily ( voice )","type":"Role","_key":"25401","_from":"8663","_to":"18312"} +{"$label":"ACTS_IN","name":"Vilgax \/ Heatblast \/ Alien Fly","type":"Role","_key":"104306","_from":"8669","_to":"61367"} +{"$label":"ACTS_IN","name":"Wolverine","type":"Role","_key":"103720","_from":"8669","_to":"61003"} +{"$label":"ACTS_IN","name":"Greg Glenn (Voice)","type":"Role","_key":"95672","_from":"8669","_to":"56269"} +{"$label":"ACTS_IN","name":"Fillmore (voice)","type":"Role","_key":"10942","_from":"8676","_to":"8670"} +{"$label":"ACTS_IN","name":"Sheriff (voice)","type":"Role","_key":"10941","_from":"8675","_to":"8670"} +{"$label":"ACTS_IN","name":"Sarge (voice)","type":"Role","_key":"10940","_from":"8674","_to":"8670"} +{"$label":"ACTS_IN","name":"Flo (voice)","type":"Role","_key":"10939","_from":"8673","_to":"8670"} +{"$label":"ACTS_IN","name":"Guido (voice)","type":"Role","_key":"10938","_from":"8672","_to":"8670"} +{"$label":"ACTS_IN","name":"Mater (voice)","type":"Role","_key":"10935","_from":"8671","_to":"8670"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"105257","_from":"8671","_to":"61944"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"100746","_from":"8671","_to":"59402"} +{"$label":"ACTS_IN","name":"Mater","type":"Role","_key":"97557","_from":"8671","_to":"57452"} +{"$label":"ACTS_IN","name":"Lady Em","type":"Role","_key":"116321","_from":"8673","_to":"68476"} +{"$label":"ACTS_IN","name":"Milay Jenay Lori","type":"Role","_key":"110030","_from":"8673","_to":"65011"} +{"$label":"ACTS_IN","name":"Mary 'Mama' Clark","type":"Role","_key":"101969","_from":"8673","_to":"60005"} +{"$label":"ACTS_IN","name":"Lucille","type":"Role","_key":"57176","_from":"8673","_to":"36278"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"17419","_from":"8673","_to":"13020"} +{"$label":"ACTS_IN","name":"Father Whiteleather","type":"Role","_key":"116332","_from":"8674","_to":"68477"} +{"$label":"ACTS_IN","name":"Jim Baker","type":"Role","_key":"103350","_from":"8674","_to":"60795"} +{"$label":"ACTS_IN","name":"Sarge","type":"Role","_key":"97563","_from":"8674","_to":"57452"} +{"$label":"ACTS_IN","name":"Stark","type":"Role","_key":"91235","_from":"8674","_to":"53798"} +{"$label":"ACTS_IN","name":"Wimpy","type":"Role","_key":"69204","_from":"8674","_to":"42322"} +{"$label":"ACTS_IN","name":"Walter Carpenter","type":"Role","_key":"34108","_from":"8674","_to":"23435"} +{"$label":"ACTS_IN","name":"Mr. Spritzer","type":"Role","_key":"24614","_from":"8674","_to":"17800"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"97559","_from":"8675","_to":"57452"} +{"$label":"ACTS_IN","name":"The Taxi Driver","type":"Role","_key":"104506","_from":"8676","_to":"61466"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103737","_from":"8676","_to":"61008"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95660","_from":"8676","_to":"56262"} +{"$label":"ACTS_IN","name":"George Carlin","type":"Role","_key":"92035","_from":"8676","_to":"54306"} +{"$label":"ACTS_IN","name":"Bart Trinke","type":"Role","_key":"54559","_from":"8676","_to":"34963"} +{"$label":"ACTS_IN","name":"Der Zauberer","type":"Role","_key":"37163","_from":"8676","_to":"25176"} +{"$label":"ACTS_IN","name":"Hitchhiker","type":"Role","_key":"20140","_from":"8676","_to":"14786"} +{"$label":"ACTS_IN","name":"Cardinal Ignatius Glick","type":"Role","_key":"15817","_from":"8676","_to":"12037"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"14654","_from":"8676","_to":"11286"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"14644","_from":"8676","_to":"11280"} +{"$label":"ACTS_IN","name":"Father Rorick","type":"Role","_key":"10959","_from":"8688","_to":"8677"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"10958","_from":"8687","_to":"8677"} +{"$label":"ACTS_IN","name":"Sporty Lewis","type":"Role","_key":"10957","_from":"8686","_to":"8677"} +{"$label":"ACTS_IN","name":"Lucille Gould","type":"Role","_key":"10956","_from":"8685","_to":"8677"} +{"$label":"ACTS_IN","name":"Sara Wilson","type":"Role","_key":"10955","_from":"8684","_to":"8677"} +{"$label":"ACTS_IN","name":"Howard Braddock","type":"Role","_key":"10954","_from":"8683","_to":"8677"} +{"$label":"ACTS_IN","name":"Rosemarie Braddock","type":"Role","_key":"10953","_from":"8682","_to":"8677"} +{"$label":"ACTS_IN","name":"Jay Braddock","type":"Role","_key":"10952","_from":"8681","_to":"8677"} +{"$label":"ACTS_IN","name":"Jimmy Johnston","type":"Role","_key":"10950","_from":"8680","_to":"8677"} +{"$label":"ACTS_IN","name":"Mike Wilson","type":"Role","_key":"10949","_from":"8679","_to":"8677"} +{"$label":"ACTS_IN","name":"Max Baer","type":"Role","_key":"10948","_from":"8678","_to":"8677"} +{"$label":"ACTS_IN","name":"George Finney","type":"Role","_key":"96459","_from":"8678","_to":"56725"} +{"$label":"ACTS_IN","name":"Timothy","type":"Role","_key":"69690","_from":"8678","_to":"42545"} +{"$label":"ACTS_IN","name":"Tom Ryan","type":"Role","_key":"30566","_from":"8678","_to":"21488"} +{"$label":"ACTS_IN","name":"Lacerda","type":"Role","_key":"16215","_from":"8678","_to":"12305"} +{"$label":"ACTS_IN","name":"Douglas Hall\/John Ferguson\/David","type":"Role","_key":"11929","_from":"8678","_to":"9354"} +{"$label":"ACTS_IN","name":"Robert Forrester","type":"Role","_key":"116541","_from":"8679","_to":"68600"} +{"$label":"ACTS_IN","name":"Frank Thorogood","type":"Role","_key":"113809","_from":"8679","_to":"67050"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"91846","_from":"8679","_to":"54185"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"90964","_from":"8679","_to":"53668"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"63759","_from":"8679","_to":"39869"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"55917","_from":"8679","_to":"35565"} +{"$label":"ACTS_IN","name":"DS Andy Wainwright","type":"Role","_key":"33117","_from":"8679","_to":"22937"} +{"$label":"ACTS_IN","name":"Rob Gretton","type":"Role","_key":"23255","_from":"8679","_to":"16861"} +{"$label":"ACTS_IN","name":"Simon Ross","type":"Role","_key":"21731","_from":"8679","_to":"15873"} +{"$label":"ACTS_IN","name":"Mac Stipanovich","type":"Role","_key":"98290","_from":"8680","_to":"57900"} +{"$label":"ACTS_IN","name":"Gen. Norman T. Vance","type":"Role","_key":"59295","_from":"8680","_to":"37449"} +{"$label":"ACTS_IN","name":"Mike Matthews","type":"Role","_key":"53095","_from":"8680","_to":"34363"} +{"$label":"ACTS_IN","name":"Commander Eugene Matuzak","type":"Role","_key":"50927","_from":"8680","_to":"33237"} +{"$label":"ACTS_IN","name":"Bradley","type":"Role","_key":"50065","_from":"8680","_to":"32759"} +{"$label":"ACTS_IN","name":"Daniel Simpson Day","type":"Role","_key":"49979","_from":"8680","_to":"32712"} +{"$label":"ACTS_IN","name":"Robert Pratt","type":"Role","_key":"48659","_from":"8680","_to":"31916"} +{"$label":"ACTS_IN","name":"Walter Hagen","type":"Role","_key":"35126","_from":"8680","_to":"23946"} +{"$label":"ACTS_IN","name":"Gene Revell","type":"Role","_key":"33005","_from":"8680","_to":"22881"} +{"$label":"ACTS_IN","name":"Pedrosa","type":"Role","_key":"13624","_from":"8680","_to":"10587"} +{"$label":"ACTS_IN","name":"Young Charlie","type":"Role","_key":"59646","_from":"8681","_to":"37658"} +{"$label":"ACTS_IN","name":"Cindy Brooks","type":"Role","_key":"108055","_from":"8682","_to":"63815"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"102611","_from":"8684","_to":"60375"} +{"$label":"ACTS_IN","name":"Jenny Adams","type":"Role","_key":"57688","_from":"8685","_to":"36513"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"23203","_from":"8686","_to":"16826"} +{"$label":"ACTS_IN","name":"Mr. Olafsen","type":"Role","_key":"10976","_from":"8694","_to":"8689"} +{"$label":"ACTS_IN","name":"Lee, Younger Marshal","type":"Role","_key":"10975","_from":"8693","_to":"8689"} +{"$label":"ACTS_IN","name":"Marvin, Older Marshal","type":"Role","_key":"10974","_from":"8692","_to":"8689"} +{"$label":"ACTS_IN","name":"Thel Russell","type":"Role","_key":"10973","_from":"8691","_to":"8689"} +{"$label":"ACTS_IN","name":"Nobody","type":"Role","_key":"10963","_from":"8690","_to":"8689"} +{"$label":"ACTS_IN","name":"Scheherezade","type":"Role","_key":"114908","_from":"8691","_to":"67679"} +{"$label":"ACTS_IN","name":"Sha`uri","type":"Role","_key":"18845","_from":"8691","_to":"13914"} +{"$label":"ACTS_IN","name":"Bodyguard #1","type":"Role","_key":"116987","_from":"8693","_to":"68856"} +{"$label":"ACTS_IN","name":"Roy Tucker","type":"Role","_key":"10989","_from":"8706","_to":"8695"} +{"$label":"ACTS_IN","name":"Wooley","type":"Role","_key":"10988","_from":"8705","_to":"8695"} +{"$label":"ACTS_IN","name":"Police Commander","type":"Role","_key":"10987","_from":"8704","_to":"8695"} +{"$label":"ACTS_IN","name":"Givens","type":"Role","_key":"10986","_from":"8703","_to":"8695"} +{"$label":"ACTS_IN","name":"TV Commentator","type":"Role","_key":"10985","_from":"8702","_to":"8695"} +{"$label":"ACTS_IN","name":"Dr. Milliard Rausch","type":"Role","_key":"10984","_from":"8701","_to":"8695"} +{"$label":"ACTS_IN","name":"Dr. Foster","type":"Role","_key":"10982","_from":"8700","_to":"8695"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"10981","_from":"8699","_to":"8695"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"10980","_from":"8698","_to":"8695"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"10979","_from":"8697","_to":"8695"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"10978","_from":"8696","_to":"8695"} +{"$label":"ACTS_IN","name":"Buford 'Bubba' Brownlee","type":"Role","_key":"100557","_from":"8697","_to":"59308"} +{"$label":"ACTS_IN","name":"Stanis","type":"Role","_key":"90975","_from":"8697","_to":"53678"} +{"$label":"ACTS_IN","name":"Detective Gibbs","type":"Role","_key":"54747","_from":"8697","_to":"35037"} +{"$label":"ACTS_IN","name":"Big Joe Grizzly","type":"Role","_key":"18117","_from":"8697","_to":"13441"} +{"$label":"ACTS_IN","name":"Charlie Altamont","type":"Role","_key":"14995","_from":"8697","_to":"11531"} +{"$label":"ACTS_IN","name":"The Televangelist","type":"Role","_key":"11008","_from":"8697","_to":"8707"} +{"$label":"ACTS_IN","name":"The General","type":"Role","_key":"11006","_from":"8698","_to":"8707"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"11004","_from":"8716","_to":"8707"} +{"$label":"ACTS_IN","name":"Luda","type":"Role","_key":"11003","_from":"8715","_to":"8707"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"11002","_from":"8714","_to":"8707"} +{"$label":"ACTS_IN","name":"Bart","type":"Role","_key":"11000","_from":"8713","_to":"8707"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"10999","_from":"8712","_to":"8707"} +{"$label":"ACTS_IN","name":"C.J.","type":"Role","_key":"10997","_from":"8711","_to":"8707"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"10996","_from":"8710","_to":"8707"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"10995","_from":"8709","_to":"8707"} +{"$label":"DIRECTED","_key":"10990","_from":"8708","_to":"8707"} +{"$label":"DIRECTED","_key":"93281","_from":"8708","_to":"54939"} +{"$label":"DIRECTED","_key":"12408","_from":"8708","_to":"9725"} +{"$label":"ACTS_IN","name":"Allan Arbus","type":"Role","_key":"116830","_from":"8709","_to":"68776"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"116171","_from":"8709","_to":"68405"} +{"$label":"ACTS_IN","name":"Connor","type":"Role","_key":"44497","_from":"8709","_to":"29641"} +{"$label":"ACTS_IN","name":"Enrique Colon","type":"Role","_key":"16419","_from":"8709","_to":"12420"} +{"$label":"ACTS_IN","name":"Dr. Samson","type":"Role","_key":"15261","_from":"8709","_to":"11684"} +{"$label":"ACTS_IN","name":"Jason Taylor","type":"Role","_key":"99290","_from":"8710","_to":"58508"} +{"$label":"ACTS_IN","name":"Trashcan Man","type":"Role","_key":"94973","_from":"8710","_to":"55928"} +{"$label":"ACTS_IN","name":"Edgar Jacobi \/ Moloch the Mystic","type":"Role","_key":"93259","_from":"8710","_to":"54939"} +{"$label":"ACTS_IN","name":"Alec Stewart","type":"Role","_key":"88899","_from":"8710","_to":"52665"} +{"$label":"ACTS_IN","name":"Jobe Smith","type":"Role","_key":"70415","_from":"8710","_to":"42877"} +{"$label":"ACTS_IN","name":"Ralph Carver","type":"Role","_key":"59276","_from":"8710","_to":"37437"} +{"$label":"ACTS_IN","name":"Russell Thompson Sr.","type":"Role","_key":"53307","_from":"8710","_to":"34466"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"34771","_from":"8710","_to":"23765"} +{"$label":"ACTS_IN","name":"Viper","type":"Role","_key":"104375","_from":"8711","_to":"61401"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"89099","_from":"8711","_to":"52779"} +{"$label":"ACTS_IN","name":"Kathryn","type":"Role","_key":"108073","_from":"8712","_to":"63848"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"65274","_from":"8712","_to":"40514"} +{"$label":"ACTS_IN","name":"Dodger","type":"Role","_key":"60578","_from":"8712","_to":"38237"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"49917","_from":"8712","_to":"32678"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"45758","_from":"8712","_to":"30273"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"107230","_from":"8713","_to":"63230"} +{"$label":"ACTS_IN","name":"Butcher","type":"Role","_key":"71548","_from":"8714","_to":"43346"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"65279","_from":"8714","_to":"40514"} +{"$label":"ACTS_IN","name":"Morgue Attendant","type":"Role","_key":"62269","_from":"8714","_to":"39219"} +{"$label":"ACTS_IN","name":"Patient","type":"Role","_key":"36113","_from":"8714","_to":"24499"} +{"$label":"ACTS_IN","name":"Dominican Monk","type":"Role","_key":"12872","_from":"8714","_to":"10044"} +{"$label":"ACTS_IN","name":"Catherine Goldstein","type":"Role","_key":"116312","_from":"8715","_to":"68473"} +{"$label":"ACTS_IN","name":"Constance Snowden","type":"Role","_key":"116212","_from":"8716","_to":"68425"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"116198","_from":"8716","_to":"68420"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"65278","_from":"8716","_to":"40514"} +{"$label":"ACTS_IN","name":"Cee","type":"Role","_key":"11025","_from":"8724","_to":"8717"} +{"$label":"ACTS_IN","name":"Punchy","type":"Role","_key":"11022","_from":"8723","_to":"8717"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"11021","_from":"8722","_to":"8717"} +{"$label":"ACTS_IN","name":"Sweet Dick Willie","type":"Role","_key":"11019","_from":"8721","_to":"8717"} +{"$label":"ACTS_IN","name":"ML","type":"Role","_key":"11017","_from":"8720","_to":"8717"} +{"$label":"ACTS_IN","name":"Mother Sister","type":"Role","_key":"11015","_from":"8719","_to":"8717"} +{"$label":"ACTS_IN","name":"Da Mayor","type":"Role","_key":"11010","_from":"8718","_to":"8717"} +{"$label":"ACTS_IN","name":"Judge Richard Farris","type":"Role","_key":"94975","_from":"8718","_to":"55928"} +{"$label":"ACTS_IN","name":"Juror 2","type":"Role","_key":"88763","_from":"8718","_to":"52604"} +{"$label":"ACTS_IN","name":"Yar","type":"Role","_key":"64119","_from":"8718","_to":"40012"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"55905","_from":"8718","_to":"35560"} +{"$label":"ACTS_IN","name":"Jed Hooker","type":"Role","_key":"50501","_from":"8718","_to":"32983"} +{"$label":"ACTS_IN","name":"Archer Dolittle","type":"Role","_key":"25247","_from":"8718","_to":"18211"} +{"$label":"ACTS_IN","name":"Marshall","type":"Role","_key":"21971","_from":"8718","_to":"16044"} +{"$label":"ACTS_IN","name":"Reverend Purify","type":"Role","_key":"15147","_from":"8718","_to":"11617"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"112055","_from":"8719","_to":"66166"} +{"$label":"ACTS_IN","name":"Mother Abigail Freemantle","type":"Role","_key":"94969","_from":"8719","_to":"55928"} +{"$label":"ACTS_IN","name":"Nanna Maria","type":"Role","_key":"91752","_from":"8719","_to":"54126"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"90376","_from":"8719","_to":"53406"} +{"$label":"ACTS_IN","name":"Evangeline","type":"Role","_key":"52341","_from":"8719","_to":"34070"} +{"$label":"ACTS_IN","name":"Female","type":"Role","_key":"42615","_from":"8719","_to":"28531"} +{"$label":"ACTS_IN","name":"Lucinda Purify","type":"Role","_key":"15141","_from":"8719","_to":"11617"} +{"$label":"ACTS_IN","name":"English","type":"Role","_key":"65345","_from":"8720","_to":"40534"} +{"$label":"ACTS_IN","name":"Henry Styles","type":"Role","_key":"17868","_from":"8720","_to":"13303"} +{"$label":"ACTS_IN","name":"Pop","type":"Role","_key":"107056","_from":"8721","_to":"63126"} +{"$label":"ACTS_IN","name":"Blood","type":"Role","_key":"54674","_from":"8723","_to":"35009"} +{"$label":"ACTS_IN","name":"Deke Woods","type":"Role","_key":"47501","_from":"8723","_to":"31289"} +{"$label":"ACTS_IN","name":"Bilal","type":"Role","_key":"107076","_from":"8724","_to":"63141"} +{"$label":"ACTS_IN","name":"Bilal","type":"Role","_key":"107054","_from":"8724","_to":"63126"} +{"$label":"ACTS_IN","name":"Kevin Caffery","type":"Role","_key":"98228","_from":"8724","_to":"57867"} +{"$label":"ACTS_IN","name":"Chief James Porter","type":"Role","_key":"94810","_from":"8724","_to":"55837"} +{"$label":"ACTS_IN","name":"Roscoe Jenkins","type":"Role","_key":"94777","_from":"8724","_to":"55823"} +{"$label":"ACTS_IN","name":"Terrence Paul \u201eT-Paul\u201c Davidson","type":"Role","_key":"71500","_from":"8724","_to":"43335"} +{"$label":"ACTS_IN","name":"Malcolm \/ Big Momma","type":"Role","_key":"70696","_from":"8724","_to":"43005"} +{"$label":"ACTS_IN","name":"Jamal Walker","type":"Role","_key":"70047","_from":"8724","_to":"42711"} +{"$label":"ACTS_IN","name":"Bobby Davis","type":"Role","_key":"68495","_from":"8724","_to":"42015"} +{"$label":"ACTS_IN","name":"Earl Montgomery","type":"Role","_key":"67740","_from":"8724","_to":"41651"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"67662","_from":"8724","_to":"41628"} +{"$label":"ACTS_IN","name":"Miles Logan","type":"Role","_key":"67204","_from":"8724","_to":"41452"} +{"$label":"ACTS_IN","name":"Det. Marcus Burnett","type":"Role","_key":"56173","_from":"8724","_to":"35707"} +{"$label":"ACTS_IN","name":"Malcolm Turner","type":"Role","_key":"54947","_from":"8724","_to":"35128"} +{"$label":"ACTS_IN","name":"Detective Marcus Burnett","type":"Role","_key":"51702","_from":"8724","_to":"33743"} +{"$label":"ACTS_IN","name":"Boog (voice)","type":"Role","_key":"46851","_from":"8724","_to":"30900"} +{"$label":"ACTS_IN","name":"Roy McCormick","type":"Role","_key":"46061","_from":"8724","_to":"30427"} +{"$label":"ACTS_IN","name":"Claude Banks","type":"Role","_key":"43879","_from":"8724","_to":"29297"} +{"$label":"ACTS_IN","name":"Hollister","type":"Role","_key":"11040","_from":"8735","_to":"8725"} +{"$label":"ACTS_IN","name":"Katelyn","type":"Role","_key":"11039","_from":"8734","_to":"8725"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"11038","_from":"8733","_to":"8725"} +{"$label":"ACTS_IN","name":"Brandon","type":"Role","_key":"11037","_from":"8732","_to":"8725"} +{"$label":"ACTS_IN","name":"Teb","type":"Role","_key":"11036","_from":"8731","_to":"8725"} +{"$label":"ACTS_IN","name":"Quellek","type":"Role","_key":"11034","_from":"8730","_to":"8725"} +{"$label":"ACTS_IN","name":"Sarris","type":"Role","_key":"11033","_from":"8729","_to":"8725"} +{"$label":"ACTS_IN","name":"Mathesar","type":"Role","_key":"11032","_from":"8728","_to":"8725"} +{"$label":"ACTS_IN","name":"Tommy Webber","type":"Role","_key":"11031","_from":"8727","_to":"8725"} +{"$label":"DIRECTED","_key":"11026","_from":"8726","_to":"8725"} +{"$label":"DIRECTED","_key":"89085","_from":"8726","_to":"52771"} +{"$label":"DIRECTED","_key":"47213","_from":"8726","_to":"31110"} +{"$label":"ACTS_IN","name":"Officer Hamm (as Daryl 'Chill' Mitchell)","type":"Role","_key":"115878","_from":"8727","_to":"68225"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"70051","_from":"8727","_to":"42711"} +{"$label":"ACTS_IN","name":"Detective Chambers","type":"Role","_key":"65759","_from":"8727","_to":"40707"} +{"$label":"ACTS_IN","name":"Pfc. Wally Holbrook","type":"Role","_key":"52551","_from":"8727","_to":"34162"} +{"$label":"ACTS_IN","name":"Mr. Morgan","type":"Role","_key":"35070","_from":"8727","_to":"23914"} +{"$label":"ACTS_IN","name":"D.J.","type":"Role","_key":"120457","_from":"8728","_to":"70761"} +{"$label":"ACTS_IN","name":"Elia Kazan","type":"Role","_key":"18623","_from":"8728","_to":"13782"} +{"$label":"ACTS_IN","name":"Aubie","type":"Role","_key":"95828","_from":"8730","_to":"56354"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"58204","_from":"8731","_to":"36816"} +{"$label":"ACTS_IN","name":"Deputy Burke","type":"Role","_key":"57190","_from":"8731","_to":"36281"} +{"$label":"ACTS_IN","name":"Zerk Wilder","type":"Role","_key":"118513","_from":"8732","_to":"69676"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110306","_from":"8732","_to":"65180"} +{"$label":"ACTS_IN","name":"Clay Dalton","type":"Role","_key":"110292","_from":"8732","_to":"65177"} +{"$label":"ACTS_IN","name":"Lem (voice)","type":"Role","_key":"110240","_from":"8732","_to":"65161"} +{"$label":"ACTS_IN","name":"Spoonie","type":"Role","_key":"106412","_from":"8732","_to":"62695"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"99147","_from":"8732","_to":"58416"} +{"$label":"ACTS_IN","name":"Humphrey","type":"Role","_key":"91722","_from":"8732","_to":"54107"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"69941","_from":"8732","_to":"42674"} +{"$label":"ACTS_IN","name":"Brandon St. Randy","type":"Role","_key":"62779","_from":"8732","_to":"39457"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"61517","_from":"8732","_to":"38795"} +{"$label":"ACTS_IN","name":"Bartleby Gaines","type":"Role","_key":"56801","_from":"8732","_to":"36070"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"56476","_from":"8732","_to":"35880"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"54077","_from":"8732","_to":"34776"} +{"$label":"ACTS_IN","name":"Darry Jenner","type":"Role","_key":"51515","_from":"8732","_to":"33588"} +{"$label":"ACTS_IN","name":"Mookie","type":"Role","_key":"48351","_from":"8732","_to":"31743"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"47216","_from":"8732","_to":"31117"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"47011","_from":"8732","_to":"30989"} +{"$label":"ACTS_IN","name":"Alvin","type":"Role","_key":"43599","_from":"8732","_to":"29119"} +{"$label":"ACTS_IN","name":"Matt Foster","type":"Role","_key":"13890","_from":"8732","_to":"10786"} +{"$label":"ACTS_IN","name":"Terrence Lubinecki","type":"Role","_key":"65557","_from":"8733","_to":"40629"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"60741","_from":"8733","_to":"38355"} +{"$label":"ACTS_IN","name":"Freaky Student","type":"Role","_key":"56814","_from":"8733","_to":"36070"} +{"$label":"ACTS_IN","name":"Mrs. Joe Harris","type":"Role","_key":"11054","_from":"8746","_to":"8736"} +{"$label":"ACTS_IN","name":"Man on Street","type":"Role","_key":"11053","_from":"8745","_to":"8736"} +{"$label":"ACTS_IN","name":"Kate Beringer","type":"Role","_key":"11051","_from":"8744","_to":"8736"} +{"$label":"ACTS_IN","name":"Billy Peltzer","type":"Role","_key":"11050","_from":"8743","_to":"8736"} +{"$label":"ACTS_IN","name":"Sheriff Frank","type":"Role","_key":"11048","_from":"8742","_to":"8736"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"11047","_from":"8741","_to":"8736"} +{"$label":"ACTS_IN","name":"Rockin' Ricky Rialto (voice)","type":"Role","_key":"11046","_from":"8740","_to":"8736"} +{"$label":"ACTS_IN","name":"Grandfather (Mr. Wing)","type":"Role","_key":"11045","_from":"8739","_to":"8736"} +{"$label":"ACTS_IN","name":"Chinese Boy","type":"Role","_key":"11044","_from":"8738","_to":"8736"} +{"$label":"ACTS_IN","name":"Randall Peltzer","type":"Role","_key":"11043","_from":"8737","_to":"8736"} +{"$label":"ACTS_IN","name":"Alec's Father","type":"Role","_key":"111703","_from":"8737","_to":"65947"} +{"$label":"ACTS_IN","name":"Father Levesque","type":"Role","_key":"40886","_from":"8737","_to":"27510"} +{"$label":"ACTS_IN","name":"Dr. Yang","type":"Role","_key":"48498","_from":"8739","_to":"31835"} +{"$label":"ACTS_IN","name":"Mr. Wing","type":"Role","_key":"11066","_from":"8739","_to":"8747"} +{"$label":"ACTS_IN","name":"Junior Bruce","type":"Role","_key":"93704","_from":"8740","_to":"55160"} +{"$label":"ACTS_IN","name":"Mr. Malloy","type":"Role","_key":"35609","_from":"8742","_to":"24197"} +{"$label":"ACTS_IN","name":"Herman De Young","type":"Role","_key":"11689","_from":"8742","_to":"9177"} +{"$label":"ACTS_IN","name":"Sir Kay","type":"Role","_key":"42768","_from":"8743","_to":"28616"} +{"$label":"ACTS_IN","name":"Hammond","type":"Role","_key":"36712","_from":"8743","_to":"24881"} +{"$label":"ACTS_IN","name":"Billy Peltzer","type":"Role","_key":"11057","_from":"8743","_to":"8747"} +{"$label":"ACTS_IN","name":"Christine Ramsey","type":"Role","_key":"117669","_from":"8744","_to":"69165"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"111415","_from":"8744","_to":"65786"} +{"$label":"ACTS_IN","name":"Linda Barrett","type":"Role","_key":"94022","_from":"8744","_to":"55369"} +{"$label":"ACTS_IN","name":"Elizabeth 'Lizzie' Cronin","type":"Role","_key":"62897","_from":"8744","_to":"39513"} +{"$label":"ACTS_IN","name":"Kate Beringer","type":"Role","_key":"11058","_from":"8744","_to":"8747"} +{"$label":"ACTS_IN","name":"Terry Fisher","type":"Role","_key":"68985","_from":"8746","_to":"42233"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"11070","_from":"8754","_to":"8747"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"11069","_from":"8753","_to":"8747"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"11068","_from":"8752","_to":"8747"} +{"$label":"ACTS_IN","name":"Mr. Katsuji","type":"Role","_key":"11065","_from":"8751","_to":"8747"} +{"$label":"ACTS_IN","name":"Sheila Futterman","type":"Role","_key":"11064","_from":"8750","_to":"8747"} +{"$label":"ACTS_IN","name":"Marla Bloodstone","type":"Role","_key":"11063","_from":"8749","_to":"8747"} +{"$label":"ACTS_IN","name":"Forster","type":"Role","_key":"11061","_from":"8748","_to":"8747"} +{"$label":"ACTS_IN","name":"Eddie Quist","type":"Role","_key":"68990","_from":"8748","_to":"42233"} +{"$label":"ACTS_IN","name":"Bob Marvalle","type":"Role","_key":"31177","_from":"8748","_to":"21822"} +{"$label":"ACTS_IN","name":"The Cowboy","type":"Role","_key":"22218","_from":"8748","_to":"16182"} +{"$label":"ACTS_IN","name":"Caroline Mulford","type":"Role","_key":"103356","_from":"8749","_to":"60795"} +{"$label":"ACTS_IN","name":"Julia Wells","type":"Role","_key":"98593","_from":"8749","_to":"58103"} +{"$label":"ACTS_IN","name":"Kenji (voice)","type":"Role","_key":"109055","_from":"8751","_to":"64441"} +{"$label":"ACTS_IN","name":"Long Duk Dong","type":"Role","_key":"103348","_from":"8751","_to":"60795"} +{"$label":"ACTS_IN","name":"Oishi Kazihiro","type":"Role","_key":"95937","_from":"8751","_to":"56416"} +{"$label":"ACTS_IN","name":"Ling","type":"Role","_key":"88978","_from":"8751","_to":"52708"} +{"$label":"ACTS_IN","name":"Milton","type":"Role","_key":"57891","_from":"8751","_to":"36625"} +{"$label":"ACTS_IN","name":"Dr. Ein","type":"Role","_key":"58812","_from":"8752","_to":"37140"} +{"$label":"ACTS_IN","name":"Dr. Zwei","type":"Role","_key":"58813","_from":"8753","_to":"37140"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"11086","_from":"8763","_to":"8755"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"11085","_from":"8762","_to":"8755"} +{"$label":"ACTS_IN","name":"Jean-Luc","type":"Role","_key":"11084","_from":"8761","_to":"8755"} +{"$label":"ACTS_IN","name":"Gene, Mayor's Aide","type":"Role","_key":"11083","_from":"8760","_to":"8755"} +{"$label":"ACTS_IN","name":"Sergeant O'Neal","type":"Role","_key":"11081","_from":"8759","_to":"8755"} +{"$label":"ACTS_IN","name":"Dr. Elsie Chapman","type":"Role","_key":"11080","_from":"8758","_to":"8755"} +{"$label":"ACTS_IN","name":"Lucy Palotti","type":"Role","_key":"11079","_from":"8757","_to":"8755"} +{"$label":"ACTS_IN","name":"Colonel Hicks","type":"Role","_key":"11076","_from":"8756","_to":"8755"} +{"$label":"ACTS_IN","name":"Insurance Exec","type":"Role","_key":"116173","_from":"8756","_to":"68405"} +{"$label":"ACTS_IN","name":"FBI Agent Doyle","type":"Role","_key":"88159","_from":"8756","_to":"52304"} +{"$label":"ACTS_IN","name":"Alan Reed","type":"Role","_key":"70705","_from":"8756","_to":"43007"} +{"$label":"ACTS_IN","name":"Ted Dexter","type":"Role","_key":"56457","_from":"8756","_to":"35870"} +{"$label":"ACTS_IN","name":"Ron Witwicky","type":"Role","_key":"49413","_from":"8756","_to":"32350"} +{"$label":"ACTS_IN","name":"Monson","type":"Role","_key":"47087","_from":"8756","_to":"31049"} +{"$label":"ACTS_IN","name":"Mark Nash","type":"Role","_key":"35597","_from":"8756","_to":"24189"} +{"$label":"ACTS_IN","name":"Ron Witwicky","type":"Role","_key":"16064","_from":"8756","_to":"12202"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"14184","_from":"8756","_to":"10966"} +{"$label":"ACTS_IN","name":"Cap. Mendez","type":"Role","_key":"13509","_from":"8756","_to":"10513"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"120599","_from":"8757","_to":"70829"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"13445","_from":"8757","_to":"10458"} +{"$label":"ACTS_IN","name":"Chubster","type":"Role","_key":"119493","_from":"8758","_to":"70191"} +{"$label":"ACTS_IN","name":"Persephone","type":"Role","_key":"104086","_from":"8758","_to":"61239"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"91727","_from":"8758","_to":"54107"} +{"$label":"ACTS_IN","name":"April Smuntz","type":"Role","_key":"42832","_from":"8758","_to":"28641"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"72220","_from":"8759","_to":"43634"} +{"$label":"ACTS_IN","name":"Phil Beckoff","type":"Role","_key":"49944","_from":"8760","_to":"32693"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56084","_from":"8762","_to":"35624"} +{"$label":"ACTS_IN","name":"Hauswart","type":"Role","_key":"11103","_from":"8780","_to":"8764"} +{"$label":"ACTS_IN","name":"Alte Dame im Mietshaus","type":"Role","_key":"11102","_from":"8779","_to":"8764"} +{"$label":"ACTS_IN","name":"Hannas Mutter","type":"Role","_key":"11101","_from":"8778","_to":"8764"} +{"$label":"ACTS_IN","name":"Fliegeroffizier Hauptmann Becker","type":"Role","_key":"11100","_from":"8777","_to":"8764"} +{"$label":"ACTS_IN","name":"Mann, der den Staffelhund mitbringt","type":"Role","_key":"11099","_from":"8776","_to":"8764"} +{"$label":"ACTS_IN","name":"Unfreundlicher Oberkellner","type":"Role","_key":"11098","_from":"8775","_to":"8764"} +{"$label":"ACTS_IN","name":"Frau Westphal","type":"Role","_key":"11097","_from":"8774","_to":"8764"} +{"$label":"ACTS_IN","name":"Herr Westphal","type":"Role","_key":"11096","_from":"8773","_to":"8764"} +{"$label":"ACTS_IN","name":"Theaterdirektor Mocelli","type":"Role","_key":"11095","_from":"8772","_to":"8764"} +{"$label":"ACTS_IN","name":"Artist Alfred Vanloo","type":"Role","_key":"11094","_from":"8771","_to":"8764"} +{"$label":"ACTS_IN","name":"Oberleutnant von Etzdorf","type":"Role","_key":"11093","_from":"8770","_to":"8764"} +{"$label":"ACTS_IN","name":"Alexander Rudnitzky, Komponist","type":"Role","_key":"11092","_from":"8769","_to":"8764"} +{"$label":"ACTS_IN","name":"Paul Wendlandt","type":"Role","_key":"11091","_from":"8768","_to":"8764"} +{"$label":"ACTS_IN","name":"Kaethe, Hannas Zofe","type":"Role","_key":"11090","_from":"8767","_to":"8764"} +{"$label":"ACTS_IN","name":"Hanna Holberg","type":"Role","_key":"11089","_from":"8766","_to":"8764"} +{"$label":"DIRECTED","_key":"11088","_from":"8765","_to":"8764"} +{"$label":"DIRECTED","_key":"17675","_from":"8765","_to":"13189"} +{"$label":"ACTS_IN","name":"Mrs. Keller","type":"Role","_key":"46595","_from":"8767","_to":"30780"} +{"$label":"ACTS_IN","name":"Fremde Frau","type":"Role","_key":"42717","_from":"8767","_to":"28591"} +{"$label":"ACTS_IN","name":"Amalie Hartung","type":"Role","_key":"41121","_from":"8767","_to":"27670"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"40613","_from":"8767","_to":"27349"} +{"$label":"ACTS_IN","name":"Dr. Peters","type":"Role","_key":"43156","_from":"8768","_to":"28819"} +{"$label":"ACTS_IN","name":"Korbinian Grammelshuber","type":"Role","_key":"44762","_from":"8769","_to":"29778"} +{"$label":"ACTS_IN","name":"Kaiser Franz Josef","type":"Role","_key":"44730","_from":"8769","_to":"29760"} +{"$label":"ACTS_IN","name":"Zwicker","type":"Role","_key":"44237","_from":"8769","_to":"29476"} +{"$label":"ACTS_IN","name":"Albert Kr\u00fcgler","type":"Role","_key":"42122","_from":"8769","_to":"28218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42063","_from":"8769","_to":"28185"} +{"$label":"ACTS_IN","name":"Herr Sallmann","type":"Role","_key":"40993","_from":"8769","_to":"27570"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"23546","_from":"8769","_to":"17071"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"11960","_from":"8769","_to":"9373"} +{"$label":"ACTS_IN","name":"Dr. Mabuse","type":"Role","_key":"118841","_from":"8770","_to":"69855"} +{"$label":"ACTS_IN","name":"Dr. Mabuse","type":"Role","_key":"118836","_from":"8770","_to":"69854"} +{"$label":"ACTS_IN","name":"Prof. Jordan\/Peter Cornelius\/Dr. Mabuse","type":"Role","_key":"118831","_from":"8770","_to":"69853"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"116679","_from":"8770","_to":"68687"} +{"$label":"ACTS_IN","name":"Dr. Mabuse","type":"Role","_key":"63392","_from":"8770","_to":"39717"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33564","_from":"8770","_to":"23204"} +{"$label":"ACTS_IN","name":"Maj. Herren","type":"Role","_key":"27388","_from":"8770","_to":"19677"} +{"$label":"ACTS_IN","name":"M\u00f6belpacker","type":"Role","_key":"41841","_from":"8771","_to":"28067"} +{"$label":"ACTS_IN","name":"Glasm\u00e4nnlein","type":"Role","_key":"92596","_from":"8775","_to":"54659"} +{"$label":"ACTS_IN","name":"Baron Safferst\u00e4tt","type":"Role","_key":"44914","_from":"8775","_to":"29866"} +{"$label":"ACTS_IN","name":"Vater Hellmich","type":"Role","_key":"44413","_from":"8775","_to":"29590"} +{"$label":"ACTS_IN","name":"Sir Arthur Conan Doyle","type":"Role","_key":"42045","_from":"8775","_to":"28168"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"40618","_from":"8776","_to":"27349"} +{"$label":"ACTS_IN","name":"Ewermann","type":"Role","_key":"40109","_from":"8776","_to":"27068"} +{"$label":"ACTS_IN","name":"Kommissar Kr\u00fcger","type":"Role","_key":"39978","_from":"8776","_to":"27002"} +{"$label":"ACTS_IN","name":"Lady Agathy Beverton","type":"Role","_key":"14816","_from":"8778","_to":"11387"} +{"$label":"ACTS_IN","name":"Mrs. Mulford","type":"Role","_key":"14777","_from":"8778","_to":"11363"} +{"$label":"ACTS_IN","name":"Gro\u00dfmama","type":"Role","_key":"32461","_from":"8779","_to":"22575"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41924","_from":"8780","_to":"28097"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41914","_from":"8780","_to":"28096"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41901","_from":"8780","_to":"28094"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41883","_from":"8780","_to":"28093"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41870","_from":"8780","_to":"28092"} +{"$label":"ACTS_IN","name":"Frederik Nissen","type":"Role","_key":"41865","_from":"8780","_to":"28082"} +{"$label":"ACTS_IN","name":"Patient","type":"Role","_key":"24305","_from":"8780","_to":"17598"} +{"$label":"ACTS_IN","name":"Cornelius Gulden","type":"Role","_key":"23629","_from":"8780","_to":"17129"} +{"$label":"ACTS_IN","name":"Onkel Michael L\u00fcders","type":"Role","_key":"23556","_from":"8780","_to":"17071"} +{"$label":"ACTS_IN","name":"Dwarf","type":"Role","_key":"11118","_from":"8794","_to":"8781"} +{"$label":"ACTS_IN","name":"Detective Sabbione","type":"Role","_key":"11117","_from":"8793","_to":"8781"} +{"$label":"ACTS_IN","name":"Christine Baxter","type":"Role","_key":"11116","_from":"8792","_to":"8781"} +{"$label":"ACTS_IN","name":"Johnny Baxter","type":"Role","_key":"11115","_from":"8791","_to":"8781"} +{"$label":"ACTS_IN","name":"Mandy Babbage","type":"Role","_key":"11114","_from":"8790","_to":"8781"} +{"$label":"ACTS_IN","name":"Anthony Babbage","type":"Role","_key":"11113","_from":"8789","_to":"8781"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"11112","_from":"8788","_to":"8781"} +{"$label":"ACTS_IN","name":"Workman","type":"Role","_key":"11111","_from":"8787","_to":"8781"} +{"$label":"ACTS_IN","name":"Inspector Longhi","type":"Role","_key":"11110","_from":"8786","_to":"8781"} +{"$label":"ACTS_IN","name":"Bishop Barbarrigo","type":"Role","_key":"11109","_from":"8785","_to":"8781"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"11108","_from":"8784","_to":"8781"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"11107","_from":"8783","_to":"8781"} +{"$label":"DIRECTED","_key":"11104","_from":"8782","_to":"8781"} +{"$label":"DIRECTED","_key":"61364","_from":"8782","_to":"38721"} +{"$label":"DIRECTED","_key":"33976","_from":"8782","_to":"23380"} +{"$label":"DIRECTED","_key":"11720","_from":"8782","_to":"9203"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43675","_from":"8785","_to":"29161"} +{"$label":"ACTS_IN","name":"Senator Lucius Quintilius","type":"Role","_key":"38847","_from":"8785","_to":"26238"} +{"$label":"ACTS_IN","name":"L'industriale fallito","type":"Role","_key":"27102","_from":"8785","_to":"19509"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"26973","_from":"8785","_to":"19402"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22967","_from":"8785","_to":"16655"} +{"$label":"ACTS_IN","name":"Inspector Morabito","type":"Role","_key":"67575","_from":"8786","_to":"41602"} +{"$label":"ACTS_IN","name":"Telegrapher","type":"Role","_key":"67281","_from":"8786","_to":"41482"} +{"$label":"ACTS_IN","name":"K\u00f6nig von Sodom","type":"Role","_key":"22866","_from":"8786","_to":"16575"} +{"$label":"ACTS_IN","name":"Eunuch","type":"Role","_key":"22844","_from":"8786","_to":"16558"} +{"$label":"ACTS_IN","name":"Lucius Marinus","type":"Role","_key":"22415","_from":"8786","_to":"16258"} +{"$label":"ACTS_IN","name":"B\u00e4cker","type":"Role","_key":"21090","_from":"8786","_to":"15413"} +{"$label":"ACTS_IN","name":"Leopoldo Vannucci","type":"Role","_key":"90186","_from":"8788","_to":"53321"} +{"$label":"ACTS_IN","name":"Paolo Fossati","type":"Role","_key":"37440","_from":"8788","_to":"25365"} +{"$label":"ACTS_IN","name":"Beppo","type":"Role","_key":"19832","_from":"8788","_to":"14628"} +{"$label":"ACTS_IN","name":"Margaret, Farmer's Wife","type":"Role","_key":"111523","_from":"8790","_to":"65842"} +{"$label":"ACTS_IN","name":"Kundin","type":"Role","_key":"11137","_from":"8814","_to":"8795"} +{"$label":"ACTS_IN","name":"Dienstm\u00e4dchen","type":"Role","_key":"11136","_from":"8813","_to":"8795"} +{"$label":"ACTS_IN","name":"Schwester","type":"Role","_key":"11135","_from":"8812","_to":"8795"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"11134","_from":"8811","_to":"8795"} +{"$label":"ACTS_IN","name":"Fritz Knochenhauer","type":"Role","_key":"11133","_from":"8810","_to":"8795"} +{"$label":"ACTS_IN","name":"Carola Schulz.","type":"Role","_key":"11132","_from":"8809","_to":"8795"} +{"$label":"ACTS_IN","name":"Bartholom\u00e4us","type":"Role","_key":"11131","_from":"8808","_to":"8795"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"11130","_from":"8807","_to":"8795"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"11129","_from":"8806","_to":"8795"} +{"$label":"ACTS_IN","name":"Mutter des kranken Kindes","type":"Role","_key":"11128","_from":"8805","_to":"8795"} +{"$label":"ACTS_IN","name":"Mondschein","type":"Role","_key":"11127","_from":"8804","_to":"8795"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"11126","_from":"8803","_to":"8795"} +{"$label":"ACTS_IN","name":"Herbert","type":"Role","_key":"11125","_from":"8802","_to":"8795"} +{"$label":"ACTS_IN","name":"Ferdinand Br\u00fcckner","type":"Role","_key":"11124","_from":"8801","_to":"8795"} +{"$label":"ACTS_IN","name":"Frau Br\u00fcckner","type":"Role","_key":"11123","_from":"8800","_to":"8795"} +{"$label":"ACTS_IN","name":"Dr. Mertens","type":"Role","_key":"11122","_from":"8799","_to":"8795"} +{"$label":"ACTS_IN","name":"Susanne Wallner","type":"Role","_key":"11121","_from":"8798","_to":"8795"} +{"$label":"DIRECTED","_key":"11120","_from":"8797","_to":"8795"} +{"$label":"DIRECTED","_key":"11119","_from":"8796","_to":"8795"} +{"$label":"DIRECTED","_key":"42805","_from":"8796","_to":"28628"} +{"$label":"DIRECTED","_key":"39932","_from":"8797","_to":"26981"} +{"$label":"ACTS_IN","name":"Elinor van Berg","type":"Role","_key":"53397","_from":"8798","_to":"34505"} +{"$label":"ACTS_IN","name":"Eva Peters","type":"Role","_key":"36115","_from":"8798","_to":"24508"} +{"$label":"ACTS_IN","name":"Rita Solar","type":"Role","_key":"33597","_from":"8798","_to":"23210"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"31929","_from":"8798","_to":"22272"} +{"$label":"ACTS_IN","name":"Hilde Garden","type":"Role","_key":"31888","_from":"8798","_to":"22247"} +{"$label":"ACTS_IN","name":"Janine Betki","type":"Role","_key":"31879","_from":"8798","_to":"22241"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"31868","_from":"8798","_to":"22236"} +{"$label":"ACTS_IN","name":"Countess Liz","type":"Role","_key":"31855","_from":"8798","_to":"22230"} +{"$label":"ACTS_IN","name":"Lisa Muller","type":"Role","_key":"31845","_from":"8798","_to":"22225"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"31834","_from":"8798","_to":"22219"} +{"$label":"ACTS_IN","name":"Lady in Black","type":"Role","_key":"31827","_from":"8798","_to":"22212"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"31817","_from":"8798","_to":"22208"} +{"$label":"ACTS_IN","name":"Lilli Hoffman","type":"Role","_key":"31806","_from":"8798","_to":"22198"} +{"$label":"ACTS_IN","name":"Trilby O'Farrell","type":"Role","_key":"31798","_from":"8798","_to":"22194"} +{"$label":"ACTS_IN","name":"Inge Hoffmann","type":"Role","_key":"31788","_from":"8798","_to":"22186"} +{"$label":"ACTS_IN","name":"Madame Ixe","type":"Role","_key":"30018","_from":"8798","_to":"21177"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"24970","_from":"8798","_to":"18035"} +{"$label":"ACTS_IN","name":"Alraune","type":"Role","_key":"24552","_from":"8798","_to":"17763"} +{"$label":"ACTS_IN","name":"Tante Martha","type":"Role","_key":"42808","_from":"8800","_to":"28628"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41210","_from":"8800","_to":"27727"} +{"$label":"ACTS_IN","name":"Tante Mathilde","type":"Role","_key":"39992","_from":"8800","_to":"27002"} +{"$label":"ACTS_IN","name":"Mutter Steinemann","type":"Role","_key":"39870","_from":"8800","_to":"26934"} +{"$label":"ACTS_IN","name":"Schmidt","type":"Role","_key":"31320","_from":"8801","_to":"21896"} +{"$label":"ACTS_IN","name":"G.D. Miller","type":"Role","_key":"24302","_from":"8801","_to":"17598"} +{"$label":"ACTS_IN","name":"Frau Pingel","type":"Role","_key":"39976","_from":"8805","_to":"27002"} +{"$label":"ACTS_IN","name":"ein Fischer","type":"Role","_key":"11152","_from":"8830","_to":"8815"} +{"$label":"ACTS_IN","name":"ein Fischer","type":"Role","_key":"11151","_from":"8829","_to":"8815"} +{"$label":"ACTS_IN","name":"Abschnittsbevollm\u00e4chtigter","type":"Role","_key":"11150","_from":"8828","_to":"8815"} +{"$label":"ACTS_IN","name":"Leiterin des volkseigenen Guts","type":"Role","_key":"11149","_from":"8827","_to":"8815"} +{"$label":"ACTS_IN","name":"Meister Klaus","type":"Role","_key":"11148","_from":"8826","_to":"8815"} +{"$label":"ACTS_IN","name":"Thalia","type":"Role","_key":"11147","_from":"8825","_to":"8815"} +{"$label":"ACTS_IN","name":"Stupsi","type":"Role","_key":"11146","_from":"8824","_to":"8815"} +{"$label":"ACTS_IN","name":"Britt","type":"Role","_key":"11145","_from":"8823","_to":"8815"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"11144","_from":"8822","_to":"8815"} +{"$label":"ACTS_IN","name":"\"Rechtsanwalt\"","type":"Role","_key":"11143","_from":"8821","_to":"8815"} +{"$label":"ACTS_IN","name":"\"Schelle\"","type":"Role","_key":"11142","_from":"8820","_to":"8815"} +{"$label":"ACTS_IN","name":"\"Schpack\"","type":"Role","_key":"11141","_from":"8819","_to":"8815"} +{"$label":"ACTS_IN","name":"Wolff","type":"Role","_key":"11140","_from":"8818","_to":"8815"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"11139","_from":"8817","_to":"8815"} +{"$label":"DIRECTED","_key":"11138","_from":"8816","_to":"8815"} +{"$label":"DIRECTED","_key":"19750","_from":"8816","_to":"14594"} +{"$label":"ACTS_IN","name":"F\u00fcrst Zacharias","type":"Role","_key":"93796","_from":"8826","_to":"55218"} +{"$label":"ACTS_IN","name":"1. Edelmann","type":"Role","_key":"92547","_from":"8826","_to":"54617"} +{"$label":"ACTS_IN","name":"Obsth\u00e4ndlerin","type":"Role","_key":"93802","_from":"8827","_to":"55218"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin","type":"Role","_key":"23984","_from":"8827","_to":"17378"} +{"$label":"ACTS_IN","name":"Mariette","type":"Role","_key":"19501","_from":"8827","_to":"14418"} +{"$label":"ACTS_IN","name":"Frau M\u00fcller","type":"Role","_key":"19409","_from":"8827","_to":"14352"} +{"$label":"ACTS_IN","name":"Frau Messmer","type":"Role","_key":"18970","_from":"8827","_to":"14011"} +{"$label":"ACTS_IN","name":"Werbeleiter","type":"Role","_key":"18971","_from":"8828","_to":"14011"} +{"$label":"ACTS_IN","name":"Cesar le Milanais","type":"Role","_key":"11162","_from":"8832","_to":"8831"} +{"$label":"ACTS_IN","name":"Ida Ferrati","type":"Role","_key":"11161","_from":"8838","_to":"8831"} +{"$label":"ACTS_IN","name":"R\u00e9mi Grutter","type":"Role","_key":"11160","_from":"8837","_to":"8831"} +{"$label":"ACTS_IN","name":"Mado","type":"Role","_key":"11159","_from":"8836","_to":"8831"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"11157","_from":"8835","_to":"8831"} +{"$label":"ACTS_IN","name":"Mario Ferrati","type":"Role","_key":"11156","_from":"8834","_to":"8831"} +{"$label":"ACTS_IN","name":"Tony le St\u00e9phanois","type":"Role","_key":"11154","_from":"8833","_to":"8831"} +{"$label":"DIRECTED","_key":"11153","_from":"8832","_to":"8831"} +{"$label":"DIRECTED","_key":"120161","_from":"8832","_to":"70573"} +{"$label":"DIRECTED","_key":"118779","_from":"8832","_to":"69838"} +{"$label":"DIRECTED","_key":"35669","_from":"8832","_to":"24241"} +{"$label":"DIRECTED","_key":"24900","_from":"8832","_to":"18002"} +{"$label":"ACTS_IN","name":"Laurent Bartel","type":"Role","_key":"39419","_from":"8833","_to":"26646"} +{"$label":"ACTS_IN","name":"Prof. Norbert Catalan","type":"Role","_key":"29513","_from":"8833","_to":"20910"} +{"$label":"ACTS_IN","name":"Antoine B\u00e9rang\u00e8re","type":"Role","_key":"63839","_from":"8837","_to":"39902"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"28595","_from":"8837","_to":"20439"} +{"$label":"ACTS_IN","name":"Jean Rastaud","type":"Role","_key":"20763","_from":"8837","_to":"15185"} +{"$label":"ACTS_IN","name":"Commissaire Rosen","type":"Role","_key":"14827","_from":"8837","_to":"11398"} +{"$label":"DIRECTED","_key":"31609","_from":"8837","_to":"22071"} +{"$label":"ACTS_IN","name":"Clotilde","type":"Role","_key":"70847","_from":"8838","_to":"43063"} +{"$label":"ACTS_IN","name":"Miss Scott","type":"Role","_key":"11171","_from":"8841","_to":"8839"} +{"$label":"ACTS_IN","name":"Major \u201eKing\u201c Kong","type":"Role","_key":"11167","_from":"8840","_to":"8839"} +{"$label":"ACTS_IN","name":"Frank Stillwell","type":"Role","_key":"116999","_from":"8840","_to":"68858"} +{"$label":"ACTS_IN","name":"Sam Newfield","type":"Role","_key":"68988","_from":"8840","_to":"42233"} +{"$label":"ACTS_IN","name":"Taggart","type":"Role","_key":"67706","_from":"8840","_to":"41639"} +{"$label":"ACTS_IN","name":"Sheriff Sam Creedmore","type":"Role","_key":"40429","_from":"8840","_to":"27254"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"40421","_from":"8840","_to":"27250"} +{"$label":"ACTS_IN","name":"Ike Wallerstein","type":"Role","_key":"14873","_from":"8840","_to":"11429"} +{"$label":"ACTS_IN","name":"Dominique Ballon","type":"Role","_key":"14138","_from":"8841","_to":"10944"} +{"$label":"ACTS_IN","name":"Artoff","type":"Role","_key":"11182","_from":"8848","_to":"8842"} +{"$label":"ACTS_IN","name":"Saloud","type":"Role","_key":"11181","_from":"8847","_to":"8842"} +{"$label":"ACTS_IN","name":"Defence Barrister","type":"Role","_key":"11180","_from":"8846","_to":"8842"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"11179","_from":"8845","_to":"8842"} +{"$label":"ACTS_IN","name":"Simone Clouseau","type":"Role","_key":"11176","_from":"8844","_to":"8842"} +{"$label":"ACTS_IN","name":"Sir Charles Lytton","type":"Role","_key":"11174","_from":"8843","_to":"8842"} +{"$label":"ACTS_IN","name":"Col. W.H. Grice","type":"Role","_key":"120795","_from":"8843","_to":"70946"} +{"$label":"ACTS_IN","name":"Bishop Henry Brougham","type":"Role","_key":"120191","_from":"8843","_to":"70587"} +{"$label":"ACTS_IN","name":"Lawrence Larry Mackay","type":"Role","_key":"120058","_from":"8843","_to":"70508"} +{"$label":"ACTS_IN","name":"Geoffrey Crisp","type":"Role","_key":"109250","_from":"8843","_to":"64542"} +{"$label":"ACTS_IN","name":"Priory","type":"Role","_key":"101088","_from":"8843","_to":"59565"} +{"$label":"ACTS_IN","name":"Sir James Bond","type":"Role","_key":"88687","_from":"8843","_to":"52552"} +{"$label":"ACTS_IN","name":"Cpl. Miller","type":"Role","_key":"66659","_from":"8843","_to":"41194"} +{"$label":"ACTS_IN","name":"Sir Charles Litton","type":"Role","_key":"55820","_from":"8843","_to":"35527"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41607","_from":"8843","_to":"27940"} +{"$label":"ACTS_IN","name":"Dick Charleston","type":"Role","_key":"41387","_from":"8843","_to":"27822"} +{"$label":"ACTS_IN","name":"Dr. Jason Love","type":"Role","_key":"34575","_from":"8843","_to":"23672"} +{"$label":"ACTS_IN","name":"Colonel Race","type":"Role","_key":"29981","_from":"8843","_to":"21170"} +{"$label":"ACTS_IN","name":"Edgar Linton","type":"Role","_key":"25607","_from":"8843","_to":"18444"} +{"$label":"ACTS_IN","name":"Philippe de Montfaucon","type":"Role","_key":"25259","_from":"8843","_to":"18218"} +{"$label":"ACTS_IN","name":"Phileas Fogg","type":"Role","_key":"24136","_from":"8843","_to":"17503"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"16792","_from":"8843","_to":"12656"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"43896","_from":"8844","_to":"29302"} +{"$label":"ACTS_IN","name":"Susan Stanford","type":"Role","_key":"17750","_from":"8844","_to":"13242"} +{"$label":"ACTS_IN","name":"Noakes","type":"Role","_key":"99885","_from":"8845","_to":"58900"} +{"$label":"ACTS_IN","name":"Passelewe","type":"Role","_key":"72266","_from":"8846","_to":"43659"} +{"$label":"ACTS_IN","name":"Mc Gillivray","type":"Role","_key":"34577","_from":"8846","_to":"23672"} +{"$label":"ACTS_IN","name":"Perkins","type":"Role","_key":"27435","_from":"8846","_to":"19693"} +{"$label":"ACTS_IN","name":"Dr. Monnet","type":"Role","_key":"25265","_from":"8846","_to":"18218"} +{"$label":"ACTS_IN","name":"Sir Robert","type":"Role","_key":"24818","_from":"8846","_to":"17944"} +{"$label":"ACTS_IN","name":"Sancho Perez","type":"Role","_key":"11191","_from":"8852","_to":"8850"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"11188","_from":"8851","_to":"8850"} +{"$label":"ACTS_IN","name":"Harry Lee","type":"Role","_key":"11200","_from":"8860","_to":"8853"} +{"$label":"ACTS_IN","name":"oung Jakie Rabinowitz","type":"Role","_key":"11199","_from":"8859","_to":"8853"} +{"$label":"ACTS_IN","name":"Moisha Yudelson","type":"Role","_key":"11198","_from":"8858","_to":"8853"} +{"$label":"ACTS_IN","name":"Sara Rabinowitz","type":"Role","_key":"11197","_from":"8857","_to":"8853"} +{"$label":"ACTS_IN","name":"Mary Dale","type":"Role","_key":"11195","_from":"8856","_to":"8853"} +{"$label":"ACTS_IN","name":"Jakie Rabinowitz","type":"Role","_key":"11194","_from":"8855","_to":"8853"} +{"$label":"DIRECTED","_key":"11193","_from":"8854","_to":"8853"} +{"$label":"ACTS_IN","name":"Prof. Gordon","type":"Role","_key":"28379","_from":"8860","_to":"20299"} +{"$label":"ACTS_IN","name":"Signora Doppo","type":"Role","_key":"11215","_from":"8873","_to":"8861"} +{"$label":"ACTS_IN","name":"Signor Doppo","type":"Role","_key":"11214","_from":"8872","_to":"8861"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"11213","_from":"8871","_to":"8861"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"11212","_from":"8870","_to":"8861"} +{"$label":"ACTS_IN","name":"Boris the Hotel Manager","type":"Role","_key":"11211","_from":"8869","_to":"8861"} +{"$label":"ACTS_IN","name":"Baroness Isabel Nisatona","type":"Role","_key":"11210","_from":"8868","_to":"8861"} +{"$label":"ACTS_IN","name":"Charters","type":"Role","_key":"11209","_from":"8867","_to":"8861"} +{"$label":"ACTS_IN","name":"Caldicott","type":"Role","_key":"11208","_from":"8866","_to":"8861"} +{"$label":"ACTS_IN","name":"'Mrs.' Margaret Todhunter","type":"Role","_key":"11207","_from":"8865","_to":"8861"} +{"$label":"ACTS_IN","name":"Eric Todhunter","type":"Role","_key":"11206","_from":"8864","_to":"8861"} +{"$label":"ACTS_IN","name":"Miss Froy, Governess","type":"Role","_key":"11205","_from":"8863","_to":"8861"} +{"$label":"ACTS_IN","name":"Iris Matilda Henderson","type":"Role","_key":"11202","_from":"8862","_to":"8861"} +{"$label":"ACTS_IN","name":"Stepmother","type":"Role","_key":"107855","_from":"8862","_to":"63696"} +{"$label":"ACTS_IN","name":"Miss Bessie Thwaites","type":"Role","_key":"95059","_from":"8863","_to":"55955"} +{"$label":"ACTS_IN","name":"Mrs. McLaidlaw","type":"Role","_key":"70002","_from":"8863","_to":"42694"} +{"$label":"ACTS_IN","name":"Dally","type":"Role","_key":"19149","_from":"8863","_to":"14153"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116224","_from":"8864","_to":"68429"} +{"$label":"ACTS_IN","name":"Claude (alias 'Major Courtney')","type":"Role","_key":"37553","_from":"8864","_to":"25457"} +{"$label":"ACTS_IN","name":"Jarvis Lorry","type":"Role","_key":"33463","_from":"8864","_to":"23156"} +{"$label":"ACTS_IN","name":"Captain Paul Waggett","type":"Role","_key":"109796","_from":"8867","_to":"64855"} +{"$label":"ACTS_IN","name":"Ericas Onkel Basil","type":"Role","_key":"23356","_from":"8867","_to":"16918"} +{"$label":"ACTS_IN","name":"Ericas Tante Margaret","type":"Role","_key":"23353","_from":"8868","_to":"16918"} +{"$label":"ACTS_IN","name":"Helen Nosseross","type":"Role","_key":"118782","_from":"8870","_to":"69838"} +{"$label":"ACTS_IN","name":"Joan Cortland","type":"Role","_key":"95331","_from":"8870","_to":"56079"} +{"$label":"ACTS_IN","name":"Sergeant McCaskey","type":"Role","_key":"11229","_from":"8883","_to":"8874"} +{"$label":"ACTS_IN","name":"Dixie","type":"Role","_key":"11228","_from":"8882","_to":"8874"} +{"$label":"ACTS_IN","name":"Mercenary","type":"Role","_key":"11227","_from":"8881","_to":"8874"} +{"$label":"ACTS_IN","name":"Carrie Murtaugh","type":"Role","_key":"11226","_from":"8880","_to":"8874"} +{"$label":"ACTS_IN","name":"Nick Murtaugh","type":"Role","_key":"11225","_from":"8879","_to":"8874"} +{"$label":"ACTS_IN","name":"Amanda Hunsaker","type":"Role","_key":"11224","_from":"8878","_to":"8874"} +{"$label":"ACTS_IN","name":"Rianne Murtaugh","type":"Role","_key":"11223","_from":"8877","_to":"8874"} +{"$label":"ACTS_IN","name":"Trish Murtaugh","type":"Role","_key":"11222","_from":"8876","_to":"8874"} +{"$label":"ACTS_IN","name":"General Peter McAllister","type":"Role","_key":"11220","_from":"8875","_to":"8874"} +{"$label":"ACTS_IN","name":"Dave Drake","type":"Role","_key":"72659","_from":"8875","_to":"43788"} +{"$label":"ACTS_IN","name":"Dr. Terence Wynn","type":"Role","_key":"67110","_from":"8875","_to":"41418"} +{"$label":"ACTS_IN","name":"Ofc. Charlie McCoy","type":"Role","_key":"64822","_from":"8875","_to":"40328"} +{"$label":"ACTS_IN","name":"Chief Jim Kelly","type":"Role","_key":"31982","_from":"8875","_to":"22296"} +{"$label":"ACTS_IN","name":"Mr. Allan","type":"Role","_key":"14404","_from":"8875","_to":"11130"} +{"$label":"ACTS_IN","name":"Trish Murtaugh","type":"Role","_key":"11262","_from":"8876","_to":"8897"} +{"$label":"ACTS_IN","name":"Trish Murtaugh","type":"Role","_key":"11238","_from":"8876","_to":"8884"} +{"$label":"ACTS_IN","name":"Rianne Murtaugh","type":"Role","_key":"11263","_from":"8877","_to":"8897"} +{"$label":"ACTS_IN","name":"Nick Murtaugh","type":"Role","_key":"11266","_from":"8879","_to":"8897"} +{"$label":"ACTS_IN","name":"Carrie Murtaugh","type":"Role","_key":"11267","_from":"8880","_to":"8897"} +{"$label":"ACTS_IN","name":"Jean, l'ange","type":"Role","_key":"88446","_from":"8881","_to":"52428"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"21297","_from":"8881","_to":"15575"} +{"$label":"ACTS_IN","name":"Clarence Anglin","type":"Role","_key":"65347","_from":"8883","_to":"40534"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"11247","_from":"8894","_to":"8884"} +{"$label":"ACTS_IN","name":"Jerry Collins","type":"Role","_key":"11246","_from":"8893","_to":"8884"} +{"$label":"ACTS_IN","name":"Joseph Ragucci","type":"Role","_key":"11245","_from":"8892","_to":"8884"} +{"$label":"ACTS_IN","name":"Eddie Estaban","type":"Role","_key":"11244","_from":"8891","_to":"8884"} +{"$label":"ACTS_IN","name":"Tom Wyler","type":"Role","_key":"11243","_from":"8890","_to":"8884"} +{"$label":"ACTS_IN","name":"Tim Cavanaugh","type":"Role","_key":"11242","_from":"8889","_to":"8884"} +{"$label":"ACTS_IN","name":"Captain Ed Murphy","type":"Role","_key":"11239","_from":"8888","_to":"8884"} +{"$label":"ACTS_IN","name":"Rika van den Haas","type":"Role","_key":"11237","_from":"8887","_to":"8884"} +{"$label":"ACTS_IN","name":"Pieter 'Adolph' Vorstedt","type":"Role","_key":"11236","_from":"8886","_to":"8884"} +{"$label":"ACTS_IN","name":"Arjen Rudd","type":"Role","_key":"11235","_from":"8885","_to":"8884"} +{"$label":"ACTS_IN","name":"Milton Kendrick Ashtoncroft","type":"Role","_key":"93392","_from":"8885","_to":"55005"} +{"$label":"ACTS_IN","name":"Bondarchuk","type":"Role","_key":"90236","_from":"8885","_to":"53351"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"65019","_from":"8885","_to":"40406"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"63095","_from":"8885","_to":"39586"} +{"$label":"ACTS_IN","name":"Marshal Zelentsov","type":"Role","_key":"50354","_from":"8885","_to":"32894"} +{"$label":"ACTS_IN","name":"US-Pr\u00e4sident","type":"Role","_key":"41571","_from":"8885","_to":"27920"} +{"$label":"ACTS_IN","name":"D'Artagnan's Father","type":"Role","_key":"24354","_from":"8885","_to":"17626"} +{"$label":"ACTS_IN","name":"Isaak","type":"Role","_key":"22933","_from":"8885","_to":"16632"} +{"$label":"ACTS_IN","name":"Mr. Quarre","type":"Role","_key":"17523","_from":"8885","_to":"13100"} +{"$label":"ACTS_IN","name":"Mr. Swaffer","type":"Role","_key":"16987","_from":"8885","_to":"12742"} +{"$label":"ACTS_IN","name":"Ambassador Andrei Lysenko","type":"Role","_key":"14805","_from":"8885","_to":"11385"} +{"$label":"ACTS_IN","name":"Chuck De Nomolos","type":"Role","_key":"14659","_from":"8885","_to":"11286"} +{"$label":"ACTS_IN","name":"Dr. Walter Blackwell","type":"Role","_key":"60468","_from":"8886","_to":"38147"} +{"$label":"ACTS_IN","name":"Su","type":"Role","_key":"90764","_from":"8887","_to":"53569"} +{"$label":"ACTS_IN","name":"Eugenia Alabaster Adamson","type":"Role","_key":"49867","_from":"8887","_to":"32648"} +{"$label":"ACTS_IN","name":"Alan Branch (as Stephen Kahan)","type":"Role","_key":"55694","_from":"8888","_to":"35443"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"54713","_from":"8888","_to":"35025"} +{"$label":"ACTS_IN","name":"Captain Ed Murphy","type":"Role","_key":"11265","_from":"8888","_to":"8897"} +{"$label":"ACTS_IN","name":"Captain Ed Murphy","type":"Role","_key":"11255","_from":"8888","_to":"8895"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"102707","_from":"8889","_to":"60424"} +{"$label":"ACTS_IN","name":"Sgt. Siegel","type":"Role","_key":"65861","_from":"8889","_to":"40750"} +{"$label":"ACTS_IN","name":"Officer Collins","type":"Role","_key":"22770","_from":"8889","_to":"16511"} +{"$label":"ACTS_IN","name":"Rafael Menendez","type":"Role","_key":"94135","_from":"8891","_to":"55435"} +{"$label":"ACTS_IN","name":"Detective Sanchez","type":"Role","_key":"56182","_from":"8891","_to":"35707"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"49492","_from":"8891","_to":"32398"} +{"$label":"ACTS_IN","name":"Sergeant Atkins","type":"Role","_key":"70885","_from":"8893","_to":"43072"} +{"$label":"ACTS_IN","name":"Larry Sylvester","type":"Role","_key":"61083","_from":"8893","_to":"38615"} +{"$label":"ACTS_IN","name":"Jack Travis","type":"Role","_key":"11254","_from":"8896","_to":"8895"} +{"$label":"ACTS_IN","name":"Gerardo Escobar","type":"Role","_key":"63887","_from":"8896","_to":"39916"} +{"$label":"ACTS_IN","name":"Walter Marek","type":"Role","_key":"63409","_from":"8896","_to":"39725"} +{"$label":"ACTS_IN","name":"Don Rafael Montero","type":"Role","_key":"53229","_from":"8896","_to":"34424"} +{"$label":"ACTS_IN","name":"Robin Hood","type":"Role","_key":"39347","_from":"8896","_to":"26613"} +{"$label":"ACTS_IN","name":"Dr. Robin Hatcher","type":"Role","_key":"33114","_from":"8896","_to":"22937"} +{"$label":"ACTS_IN","name":"Rupert","type":"Role","_key":"15320","_from":"8896","_to":"11720"} +{"$label":"ACTS_IN","name":"Hong's Wife","type":"Role","_key":"11270","_from":"8900","_to":"8897"} +{"$label":"ACTS_IN","name":"Gomez","type":"Role","_key":"11269","_from":"8899","_to":"8897"} +{"$label":"ACTS_IN","name":"Benny's Assistant","type":"Role","_key":"11268","_from":"8898","_to":"8897"} +{"$label":"ACTS_IN","name":"Diner Guest","type":"Role","_key":"18393","_from":"8898","_to":"13635"} +{"$label":"ACTS_IN","name":"Sakamoto's Wife","type":"Role","_key":"16461","_from":"8900","_to":"12429"} +{"$label":"ACTS_IN","name":"Frau Spitzer","type":"Role","_key":"11284","_from":"8913","_to":"8902"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"11283","_from":"8912","_to":"8902"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"11282","_from":"8911","_to":"8902"} +{"$label":"ACTS_IN","name":"Stefan Jr.","type":"Role","_key":"11281","_from":"8910","_to":"8902"} +{"$label":"ACTS_IN","name":"Lt. Leopold von Kaltnegger","type":"Role","_key":"11280","_from":"8909","_to":"8902"} +{"$label":"ACTS_IN","name":"Herr Kastner","type":"Role","_key":"11279","_from":"8908","_to":"8902"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"11278","_from":"8907","_to":"8902"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"11277","_from":"8906","_to":"8902"} +{"$label":"ACTS_IN","name":"Johann Stauffer","type":"Role","_key":"11276","_from":"8905","_to":"8902"} +{"$label":"ACTS_IN","name":"Frau Berndle","type":"Role","_key":"11275","_from":"8904","_to":"8902"} +{"$label":"DIRECTED","_key":"11272","_from":"8903","_to":"8902"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41917","_from":"8904","_to":"28097"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41909","_from":"8904","_to":"28096"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41895","_from":"8904","_to":"28094"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41881","_from":"8904","_to":"28093"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41871","_from":"8904","_to":"28092"} +{"$label":"ACTS_IN","name":"Gert - Nissens Tochter","type":"Role","_key":"41864","_from":"8904","_to":"28082"} +{"$label":"ACTS_IN","name":"Bill Retz","type":"Role","_key":"117865","_from":"8906","_to":"69289"} +{"$label":"ACTS_IN","name":"David Davis","type":"Role","_key":"112430","_from":"8906","_to":"66378"} +{"$label":"ACTS_IN","name":"Agent Mel Lippman","type":"Role","_key":"110990","_from":"8906","_to":"65556"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"28689","_from":"8911","_to":"20500"} +{"$label":"ACTS_IN","name":"Roger Bronson","type":"Role","_key":"11475","_from":"8911","_to":"9026"} +{"$label":"ACTS_IN","name":"Daud","type":"Role","_key":"11300","_from":"8921","_to":"8914"} +{"$label":"ACTS_IN","name":"Farraj","type":"Role","_key":"11299","_from":"8920","_to":"8914"} +{"$label":"ACTS_IN","name":"Majid","type":"Role","_key":"11298","_from":"8919","_to":"8914"} +{"$label":"ACTS_IN","name":"Gasim","type":"Role","_key":"11297","_from":"8918","_to":"8914"} +{"$label":"ACTS_IN","name":"Tafas","type":"Role","_key":"11296","_from":"8917","_to":"8914"} +{"$label":"ACTS_IN","name":"General Sir Archibald Murray","type":"Role","_key":"11295","_from":"8916","_to":"8914"} +{"$label":"ACTS_IN","name":"Colonel Brighton","type":"Role","_key":"11292","_from":"8915","_to":"8914"} +{"$label":"ACTS_IN","name":"Commodore Harwood - H.M.S. Ajax","type":"Role","_key":"113276","_from":"8915","_to":"66734"} +{"$label":"ACTS_IN","name":"Verulus","type":"Role","_key":"111751","_from":"8915","_to":"65965"} +{"$label":"ACTS_IN","name":"Captain van der Poel","type":"Role","_key":"108490","_from":"8915","_to":"64127"} +{"$label":"ACTS_IN","name":"The King","type":"Role","_key":"71123","_from":"8915","_to":"43172"} +{"$label":"ACTS_IN","name":"Maj. Roy Franklin","type":"Role","_key":"66662","_from":"8915","_to":"41194"} +{"$label":"ACTS_IN","name":"Gen. Fran\u00e7ois Villiers","type":"Role","_key":"50432","_from":"8915","_to":"32946"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"21868","_from":"8915","_to":"15979"} +{"$label":"ACTS_IN","name":"Bishop Folliot","type":"Role","_key":"104342","_from":"8916","_to":"61385"} +{"$label":"ACTS_IN","name":"Svengali","type":"Role","_key":"31799","_from":"8916","_to":"22194"} +{"$label":"ACTS_IN","name":"Manager of the Karnak","type":"Role","_key":"29987","_from":"8918","_to":"21170"} +{"$label":"ACTS_IN","name":"Judith's Boyfriend","type":"Role","_key":"11319","_from":"8935","_to":"8922"} +{"$label":"ACTS_IN","name":"Judith Margaret Myers","type":"Role","_key":"11318","_from":"8934","_to":"8922"} +{"$label":"ACTS_IN","name":"Michael Myers (age 6)","type":"Role","_key":"11317","_from":"8933","_to":"8922"} +{"$label":"ACTS_IN","name":"Michael Myers","type":"Role","_key":"11316","_from":"8932","_to":"8922"} +{"$label":"ACTS_IN","name":"Dr. Terence Wynn","type":"Role","_key":"11315","_from":"8931","_to":"8922"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"11314","_from":"8930","_to":"8922"} +{"$label":"ACTS_IN","name":"Lonnie Elamb","type":"Role","_key":"11313","_from":"8929","_to":"8922"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"11312","_from":"8928","_to":"8922"} +{"$label":"ACTS_IN","name":"Marion Chambers","type":"Role","_key":"11310","_from":"8927","_to":"8922"} +{"$label":"ACTS_IN","name":"Bob Simms","type":"Role","_key":"11309","_from":"8926","_to":"8922"} +{"$label":"ACTS_IN","name":"Tommy Doyle","type":"Role","_key":"11308","_from":"8925","_to":"8922"} +{"$label":"ACTS_IN","name":"Lindsey Wallace","type":"Role","_key":"11307","_from":"8924","_to":"8922"} +{"$label":"ACTS_IN","name":"Lynda van der Klok","type":"Role","_key":"11305","_from":"8923","_to":"8922"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"90991","_from":"8923","_to":"53683"} +{"$label":"ACTS_IN","name":"Stella Hansen","type":"Role","_key":"66484","_from":"8923","_to":"41111"} +{"$label":"ACTS_IN","name":"Madge Cronin","type":"Role","_key":"55531","_from":"8923","_to":"35367"} +{"$label":"ACTS_IN","name":"Norma Watson","type":"Role","_key":"46464","_from":"8923","_to":"30685"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"15008","_from":"8923","_to":"11531"} +{"$label":"ACTS_IN","name":"Buddy in Locker Room","type":"Role","_key":"61122","_from":"8928","_to":"38625"} +{"$label":"ACTS_IN","name":"Major Bell","type":"Role","_key":"55386","_from":"8931","_to":"35308"} +{"$label":"ACTS_IN","name":"Richard Torena","type":"Role","_key":"11336","_from":"8940","_to":"8936"} +{"$label":"ACTS_IN","name":"Kelso","type":"Role","_key":"11335","_from":"8939","_to":"8936"} +{"$label":"ACTS_IN","name":"Charlene Shiherlis","type":"Role","_key":"11328","_from":"8938","_to":"8936"} +{"$label":"ACTS_IN","name":"Eady","type":"Role","_key":"11327","_from":"8937","_to":"8936"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106694","_from":"8937","_to":"62874"} +{"$label":"ACTS_IN","name":"Madelyne Thompson","type":"Role","_key":"68672","_from":"8937","_to":"42086"} +{"$label":"ACTS_IN","name":"Laura Walker","type":"Role","_key":"63962","_from":"8937","_to":"39949"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"40654","_from":"8937","_to":"27371"} +{"$label":"ACTS_IN","name":"Shelly Barnes","type":"Role","_key":"27452","_from":"8937","_to":"19709"} +{"$label":"ACTS_IN","name":"Joanna Eris","type":"Role","_key":"117075","_from":"8938","_to":"68896"} +{"$label":"ACTS_IN","name":"Denise Frankel","type":"Role","_key":"105038","_from":"8938","_to":"61815"} +{"$label":"ACTS_IN","name":"Linda Porter","type":"Role","_key":"103645","_from":"8938","_to":"60960"} +{"$label":"ACTS_IN","name":"Wife of Paint Store Owner","type":"Role","_key":"101036","_from":"8938","_to":"59542"} +{"$label":"ACTS_IN","name":"Jessica Shepard","type":"Role","_key":"95273","_from":"8938","_to":"56056"} +{"$label":"ACTS_IN","name":"Jane Goodale","type":"Role","_key":"90860","_from":"8938","_to":"53612"} +{"$label":"ACTS_IN","name":"Agnes White","type":"Role","_key":"90052","_from":"8938","_to":"53263"} +{"$label":"ACTS_IN","name":"Claire Chapman","type":"Role","_key":"70668","_from":"8938","_to":"42997"} +{"$label":"ACTS_IN","name":"Lexie Coop","type":"Role","_key":"64103","_from":"8938","_to":"40004"} +{"$label":"ACTS_IN","name":"Elizabeth \"Libby\" Parsons","type":"Role","_key":"62995","_from":"8938","_to":"39549"} +{"$label":"ACTS_IN","name":"Younger Vivi Abbott Walker","type":"Role","_key":"54834","_from":"8938","_to":"35080"} +{"$label":"ACTS_IN","name":"Kate McTiernan","type":"Role","_key":"53837","_from":"8938","_to":"34681"} +{"$label":"ACTS_IN","name":"Lucy Fowler","type":"Role","_key":"47122","_from":"8938","_to":"31069"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"15314","_from":"8938","_to":"11716"} +{"$label":"ACTS_IN","name":"Carla Brigance","type":"Role","_key":"14607","_from":"8938","_to":"11252"} +{"$label":"ACTS_IN","name":"Tina Modotti","type":"Role","_key":"12561","_from":"8938","_to":"9830"} +{"$label":"ACTS_IN","name":"Paddy","type":"Role","_key":"115997","_from":"8939","_to":"68313"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"94913","_from":"8939","_to":"55876"} +{"$label":"ACTS_IN","name":"Minister Abraham","type":"Role","_key":"93584","_from":"8939","_to":"55109"} +{"$label":"ACTS_IN","name":"Sheriff Decker","type":"Role","_key":"46911","_from":"8939","_to":"30925"} +{"$label":"ACTS_IN","name":"Cain","type":"Role","_key":"37794","_from":"8939","_to":"25621"} +{"$label":"ACTS_IN","name":"Juice","type":"Role","_key":"97789","_from":"8940","_to":"57584"} +{"$label":"ACTS_IN","name":"Goanna (voice)","type":"Role","_key":"93535","_from":"8940","_to":"55072"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"25235","_from":"8940","_to":"18207"} +{"$label":"ACTS_IN","name":"Moeritherium #1 (voice)","type":"Role","_key":"11345","_from":"8947","_to":"8941"} +{"$label":"ACTS_IN","name":"Moeritherium #2","type":"Role","_key":"11344","_from":"8946","_to":"8941"} +{"$label":"ACTS_IN","name":"Fast Tony (voice)","type":"Role","_key":"11343","_from":"8945","_to":"8941"} +{"$label":"ACTS_IN","name":"Eddie (voice)","type":"Role","_key":"11342","_from":"8944","_to":"8941"} +{"$label":"ACTS_IN","name":"Crash (voice)","type":"Role","_key":"11341","_from":"8943","_to":"8941"} +{"$label":"ACTS_IN","name":"Ellie (voice)","type":"Role","_key":"11340","_from":"8942","_to":"8941"} +{"$label":"ACTS_IN","name":"Georgia Byrd","type":"Role","_key":"112082","_from":"8942","_to":"66181"} +{"$label":"ACTS_IN","name":"Ruffhouse M.C.","type":"Role","_key":"107384","_from":"8942","_to":"63339"} +{"$label":"ACTS_IN","name":"Zora","type":"Role","_key":"107081","_from":"8942","_to":"63141"} +{"$label":"ACTS_IN","name":"Gina Norris","type":"Role","_key":"98925","_from":"8942","_to":"58287"} +{"$label":"ACTS_IN","name":"August Boatwright","type":"Role","_key":"91810","_from":"8942","_to":"54159"} +{"$label":"ACTS_IN","name":"Nina Brewster","type":"Role","_key":"87939","_from":"8942","_to":"52222"} +{"$label":"ACTS_IN","name":"Isabelle 'Belle' Williams","type":"Role","_key":"67530","_from":"8942","_to":"41580"} +{"$label":"ACTS_IN","name":"Charlene Morton","type":"Role","_key":"65007","_from":"8942","_to":"40403"} +{"$label":"ACTS_IN","name":"Alice 'Teeny' Fletcher","type":"Role","_key":"61289","_from":"8942","_to":"38697"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"54138","_from":"8942","_to":"34789"} +{"$label":"ACTS_IN","name":"Cleo","type":"Role","_key":"53643","_from":"8942","_to":"34604"} +{"$label":"ACTS_IN","name":"Dr. Twitchell","type":"Role","_key":"52131","_from":"8942","_to":"33981"} +{"$label":"ACTS_IN","name":"Ellie (voice)","type":"Role","_key":"49271","_from":"8942","_to":"32270"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"33259","_from":"8942","_to":"23042"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30589","_from":"8942","_to":"21494"} +{"$label":"ACTS_IN","name":"Motormouth Maybelle","type":"Role","_key":"24606","_from":"8942","_to":"17800"} +{"$label":"ACTS_IN","name":"Matron Mama Morton","type":"Role","_key":"13927","_from":"8942","_to":"10805"} +{"$label":"ACTS_IN","name":"Penny Escher","type":"Role","_key":"12323","_from":"8942","_to":"9655"} +{"$label":"ACTS_IN","name":"Skiff (voice)","type":"Role","_key":"110238","_from":"8943","_to":"65161"} +{"$label":"ACTS_IN","name":"Wheeler","type":"Role","_key":"104155","_from":"8943","_to":"61278"} +{"$label":"ACTS_IN","name":"Ben McGewan","type":"Role","_key":"101845","_from":"8943","_to":"59942"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"98698","_from":"8943","_to":"58170"} +{"$label":"ACTS_IN","name":"John Farley","type":"Role","_key":"93632","_from":"8943","_to":"55125"} +{"$label":"ACTS_IN","name":"Doug Stauber","type":"Role","_key":"93166","_from":"8943","_to":"54906"} +{"$label":"ACTS_IN","name":"Kar","type":"Role","_key":"72158","_from":"8943","_to":"43613"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"61326","_from":"8943","_to":"38706"} +{"$label":"ACTS_IN","name":"Billy Hitchcock","type":"Role","_key":"54498","_from":"8943","_to":"34931"} +{"$label":"ACTS_IN","name":"Wayne Grey","type":"Role","_key":"53601","_from":"8943","_to":"34589"} +{"$label":"ACTS_IN","name":"E.L.","type":"Role","_key":"52857","_from":"8943","_to":"34260"} +{"$label":"ACTS_IN","name":"Chester","type":"Role","_key":"51151","_from":"8943","_to":"33367"} +{"$label":"ACTS_IN","name":"Crash (voice)","type":"Role","_key":"49273","_from":"8943","_to":"32270"} +{"$label":"ACTS_IN","name":"Steve Stifler","type":"Role","_key":"48707","_from":"8943","_to":"31948"} +{"$label":"ACTS_IN","name":"Bo Duke","type":"Role","_key":"43863","_from":"8943","_to":"29290"} +{"$label":"ACTS_IN","name":"Roland Taverner","type":"Role","_key":"33637","_from":"8943","_to":"23230"} +{"$label":"ACTS_IN","name":"Steve Stifler","type":"Role","_key":"23441","_from":"8943","_to":"16996"} +{"$label":"ACTS_IN","name":"Brent","type":"Role","_key":"20142","_from":"8943","_to":"14786"} +{"$label":"ACTS_IN","name":"Steve Stifler","type":"Role","_key":"18356","_from":"8943","_to":"13613"} +{"$label":"ACTS_IN","name":"Jim Lement","type":"Role","_key":"121324","_from":"8944","_to":"71285"} +{"$label":"ACTS_IN","name":"Luke Shapiro","type":"Role","_key":"97996","_from":"8944","_to":"57710"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"97235","_from":"8944","_to":"57206"} +{"$label":"ACTS_IN","name":"George Tooney","type":"Role","_key":"89206","_from":"8944","_to":"52824"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"49907","_from":"8944","_to":"32673"} +{"$label":"ACTS_IN","name":"Vorb","type":"Role","_key":"117960","_from":"8945","_to":"69337"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108467","_from":"8945","_to":"64118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106733","_from":"8945","_to":"62909"} +{"$label":"ACTS_IN","name":"King Malbert","type":"Role","_key":"99280","_from":"8945","_to":"58502"} +{"$label":"ACTS_IN","name":"Murray Hare (voice)","type":"Role","_key":"92042","_from":"8945","_to":"54309"} +{"$label":"ACTS_IN","name":"Emily Elizabeth","type":"Role","_key":"118469","_from":"8946","_to":"69645"} +{"$label":"ACTS_IN","name":"Mandy \/ Mandroid \/ Older Mandy \/ Milkshakes \/ Some Kid (voice)","type":"Role","_key":"111832","_from":"8946","_to":"66010"} +{"$label":"ACTS_IN","name":"Daphne (voice)","type":"Role","_key":"109050","_from":"8946","_to":"64441"} +{"$label":"ACTS_IN","name":"Daphne Blake","type":"Role","_key":"105144","_from":"8946","_to":"61873"} +{"$label":"ACTS_IN","name":"Sif","type":"Role","_key":"103724","_from":"8946","_to":"61003"} +{"$label":"ACTS_IN","name":"Wasp","type":"Role","_key":"101079","_from":"8946","_to":"59562"} +{"$label":"ACTS_IN","name":"The Wasp","type":"Role","_key":"101067","_from":"8946","_to":"59555"} +{"$label":"ACTS_IN","name":"Daphne (voice)","type":"Role","_key":"94087","_from":"8946","_to":"55405"} +{"$label":"ACTS_IN","name":"Heather \/ Donna Fawkes (voice)","type":"Role","_key":"93343","_from":"8946","_to":"54987"} +{"$label":"ACTS_IN","name":"Daphne Blake \/ Shannon Blake","type":"Role","_key":"91892","_from":"8946","_to":"54212"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"58370","_from":"8946","_to":"36888"} +{"$label":"ACTS_IN","name":"First Victim ( voice )","type":"Role","_key":"45797","_from":"8946","_to":"30298"} +{"$label":"ACTS_IN","name":"Raven","type":"Role","_key":"108277","_from":"8947","_to":"63995"} +{"$label":"ACTS_IN","name":"Ben Tenyson","type":"Role","_key":"104303","_from":"8947","_to":"61367"} +{"$label":"ACTS_IN","name":"Alexa","type":"Role","_key":"104088","_from":"8947","_to":"61239"} +{"$label":"ACTS_IN","name":"Dylan Pickles (voice)","type":"Role","_key":"100317","_from":"8947","_to":"59151"} +{"$label":"ACTS_IN","name":"Essy (voice: English version)","type":"Role","_key":"70761","_from":"8947","_to":"43031"} +{"$label":"ACTS_IN","name":"Melody (voice)","type":"Role","_key":"66543","_from":"8947","_to":"41140"} +{"$label":"ACTS_IN","name":"Young Victoria ( voice )","type":"Role","_key":"45805","_from":"8947","_to":"30298"} +{"$label":"ACTS_IN","name":"Keisha's Mother","type":"Role","_key":"11359","_from":"8958","_to":"8948"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"11358","_from":"8957","_to":"8948"} +{"$label":"ACTS_IN","name":"Samantha's Mother","type":"Role","_key":"11356","_from":"8956","_to":"8948"} +{"$label":"ACTS_IN","name":"Dominic Palmieri","type":"Role","_key":"11355","_from":"8955","_to":"8948"} +{"$label":"ACTS_IN","name":"Sylvester's Mother","type":"Role","_key":"11354","_from":"8954","_to":"8948"} +{"$label":"ACTS_IN","name":"Eleanor Crisp","type":"Role","_key":"11353","_from":"8953","_to":"8948"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"11352","_from":"8952","_to":"8948"} +{"$label":"ACTS_IN","name":"Cullen Crisp, Sr.","type":"Role","_key":"11351","_from":"8951","_to":"8948"} +{"$label":"ACTS_IN","name":"Detective Phoebe O'Hara","type":"Role","_key":"11349","_from":"8950","_to":"8948"} +{"$label":"ACTS_IN","name":"Joyce Palmieri \/ Rachel Crisp","type":"Role","_key":"11348","_from":"8949","_to":"8948"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"119970","_from":"8949","_to":"70458"} +{"$label":"ACTS_IN","name":"Pauline Snider","type":"Role","_key":"114716","_from":"8949","_to":"67571"} +{"$label":"ACTS_IN","name":"Claire clifton","type":"Role","_key":"114022","_from":"8949","_to":"67148"} +{"$label":"ACTS_IN","name":"Debra","type":"Role","_key":"102745","_from":"8949","_to":"60442"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"99830","_from":"8949","_to":"58883"} +{"$label":"ACTS_IN","name":"Dr. Margo Green","type":"Role","_key":"67300","_from":"8949","_to":"41490"} +{"$label":"ACTS_IN","name":"Edna Purviance","type":"Role","_key":"63341","_from":"8949","_to":"39698"} +{"$label":"ACTS_IN","name":"Tina Sabatini","type":"Role","_key":"61380","_from":"8949","_to":"38726"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"58654","_from":"8949","_to":"37053"} +{"$label":"ACTS_IN","name":"Carol Perkins","type":"Role","_key":"58163","_from":"8949","_to":"36795"} +{"$label":"ACTS_IN","name":"Margo Lane","type":"Role","_key":"51110","_from":"8949","_to":"33346"} +{"$label":"ACTS_IN","name":"Kate Sullivan","type":"Role","_key":"43475","_from":"8949","_to":"29038"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"41512","_from":"8949","_to":"27891"} +{"$label":"ACTS_IN","name":"Linda Kimble","type":"Role","_key":"34803","_from":"8949","_to":"23785"} +{"$label":"ACTS_IN","name":"Elizabeth Rose","type":"Role","_key":"17792","_from":"8949","_to":"13263"} +{"$label":"ACTS_IN","name":"Iza","type":"Role","_key":"97226","_from":"8950","_to":"57198"} +{"$label":"ACTS_IN","name":"Janis Goodman","type":"Role","_key":"73144","_from":"8950","_to":"43989"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"61356","_from":"8950","_to":"38719"} +{"$label":"ACTS_IN","name":"Alison Langley","type":"Role","_key":"12496","_from":"8950","_to":"9790"} +{"$label":"ACTS_IN","name":"Paul Judd","type":"Role","_key":"107184","_from":"8951","_to":"63219"} +{"$label":"ACTS_IN","name":"Buddy Revell","type":"Role","_key":"94003","_from":"8951","_to":"55360"} +{"$label":"ACTS_IN","name":"Gaspar Dias \/ Kenneth Blake","type":"Role","_key":"36630","_from":"8951","_to":"24818"} +{"$label":"ACTS_IN","name":"Gengis Khan","type":"Role","_key":"36621","_from":"8951","_to":"24814"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"36608","_from":"8951","_to":"24811"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"36576","_from":"8951","_to":"24794"} +{"$label":"ACTS_IN","name":"Paul Brody","type":"Role","_key":"21615","_from":"8951","_to":"15801"} +{"$label":"ACTS_IN","name":"Remi Panos","type":"Role","_key":"65172","_from":"8952","_to":"40482"} +{"$label":"ACTS_IN","name":"Patricia Terrill","type":"Role","_key":"89912","_from":"8953","_to":"53205"} +{"$label":"ACTS_IN","name":"Eve Prescott Rawlings","type":"Role","_key":"72610","_from":"8953","_to":"43773"} +{"$label":"ACTS_IN","name":"Jean Harlow","type":"Role","_key":"45484","_from":"8953","_to":"30136"} +{"$label":"ACTS_IN","name":"Ilsa","type":"Role","_key":"22505","_from":"8953","_to":"16355"} +{"$label":"ACTS_IN","name":"Veronika","type":"Role","_key":"21245","_from":"8953","_to":"15553"} +{"$label":"ACTS_IN","name":"Luz Benedict II","type":"Role","_key":"15131","_from":"8953","_to":"11613"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"120261","_from":"8954","_to":"70619"} +{"$label":"ACTS_IN","name":"Patti LoPresti","type":"Role","_key":"58245","_from":"8954","_to":"36834"} +{"$label":"ACTS_IN","name":"Vickie Thailer","type":"Role","_key":"13959","_from":"8954","_to":"10823"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"91115","_from":"8955","_to":"53754"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"14586","_from":"8956","_to":"11240"} +{"$label":"DIRECTED","_key":"11368","_from":"8962","_to":"8959"} +{"$label":"DIRECTED","_key":"11367","_from":"8961","_to":"8959"} +{"$label":"ACTS_IN","name":"Melman (voice)","type":"Role","_key":"11364","_from":"8960","_to":"8959"} +{"$label":"ACTS_IN","name":"Max Abbitt","type":"Role","_key":"104781","_from":"8960","_to":"61646"} +{"$label":"ACTS_IN","name":"Melman","type":"Role","_key":"63851","_from":"8960","_to":"39906"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"57423","_from":"8960","_to":"36404"} +{"$label":"ACTS_IN","name":"Edward French","type":"Role","_key":"53918","_from":"8960","_to":"34700"} +{"$label":"ACTS_IN","name":"Frank Martin","type":"Role","_key":"41453","_from":"8960","_to":"27866"} +{"$label":"ACTS_IN","name":"Capt. Herbert M. Sobel","type":"Role","_key":"26805","_from":"8960","_to":"19258"} +{"$label":"DIRECTED","_key":"47535","_from":"8960","_to":"31324"} +{"$label":"DIRECTED","_key":"63858","_from":"8961","_to":"39906"} +{"$label":"DIRECTED","_key":"51482","_from":"8961","_to":"33574"} +{"$label":"DIRECTED","_key":"63859","_from":"8962","_to":"39906"} +{"$label":"ACTS_IN","name":"Skipper","type":"Role","_key":"62095","_from":"8962","_to":"39107"} +{"$label":"ACTS_IN","name":"Kittridge Technician","type":"Role","_key":"11384","_from":"8970","_to":"8963"} +{"$label":"ACTS_IN","name":"Drunken Male IMF Agent","type":"Role","_key":"11383","_from":"8969","_to":"8963"} +{"$label":"ACTS_IN","name":"Drunken Female IMF Agent","type":"Role","_key":"11382","_from":"8968","_to":"8963"} +{"$label":"ACTS_IN","name":"Hannah Williams","type":"Role","_key":"11381","_from":"8967","_to":"8963"} +{"$label":"ACTS_IN","name":"Zozimov","type":"Role","_key":"11380","_from":"8966","_to":"8963"} +{"$label":"ACTS_IN","name":"Alexander Golitsyn","type":"Role","_key":"11379","_from":"8965","_to":"8963"} +{"$label":"ACTS_IN","name":"Eugene Kittridge","type":"Role","_key":"11373","_from":"8964","_to":"8963"} +{"$label":"ACTS_IN","name":"Samuel Parris","type":"Role","_key":"120238","_from":"8964","_to":"70608"} +{"$label":"ACTS_IN","name":"Howard Morrisey","type":"Role","_key":"116231","_from":"8964","_to":"68436"} +{"$label":"ACTS_IN","name":"Arthur Bradley","type":"Role","_key":"71825","_from":"8964","_to":"43469"} +{"$label":"ACTS_IN","name":"Jonathan Bottoms","type":"Role","_key":"62399","_from":"8964","_to":"39310"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"49497","_from":"8964","_to":"32401"} +{"$label":"ACTS_IN","name":"Capt. Martin Jenkins","type":"Role","_key":"36953","_from":"8964","_to":"25052"} +{"$label":"ACTS_IN","name":"Zykov","type":"Role","_key":"102630","_from":"8965","_to":"60382"} +{"$label":"ACTS_IN","name":"Col. Werner Visser","type":"Role","_key":"64347","_from":"8965","_to":"40107"} +{"$label":"ACTS_IN","name":"Erik Dornhelm","type":"Role","_key":"56427","_from":"8965","_to":"35852"} +{"$label":"ACTS_IN","name":"Papst Pius XII.","type":"Role","_key":"52254","_from":"8965","_to":"34027"} +{"$label":"ACTS_IN","name":"Professor Tucci","type":"Role","_key":"47300","_from":"8965","_to":"31157"} +{"$label":"ACTS_IN","name":"Dusan Gavrich","type":"Role","_key":"44368","_from":"8965","_to":"29564"} +{"$label":"ACTS_IN","name":"Slavo","type":"Role","_key":"34309","_from":"8965","_to":"23533"} +{"$label":"ACTS_IN","name":"General Foestling","type":"Role","_key":"25877","_from":"8965","_to":"18633"} +{"$label":"ACTS_IN","name":"Graf Fontana","type":"Role","_key":"52255","_from":"8966","_to":"34027"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"41004","_from":"8967","_to":"27583"} +{"$label":"ACTS_IN","name":"Ingrid Harrer","type":"Role","_key":"11565","_from":"8967","_to":"9086"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"26246","_from":"8969","_to":"18839"} +{"$label":"ACTS_IN","name":"Max Amann","type":"Role","_key":"21794","_from":"8969","_to":"15899"} +{"$label":"ACTS_IN","name":"Larrabee","type":"Role","_key":"11400","_from":"8980","_to":"8971"} +{"$label":"ACTS_IN","name":"Chemist","type":"Role","_key":"11399","_from":"8979","_to":"8971"} +{"$label":"ACTS_IN","name":"Flamenco Dancer","type":"Role","_key":"11398","_from":"8978","_to":"8971"} +{"$label":"ACTS_IN","name":"Accountant","type":"Role","_key":"11397","_from":"8977","_to":"8971"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"11396","_from":"8976","_to":"8971"} +{"$label":"ACTS_IN","name":"Ulrich","type":"Role","_key":"11395","_from":"8975","_to":"8971"} +{"$label":"ACTS_IN","name":"Wallis","type":"Role","_key":"11394","_from":"8974","_to":"8971"} +{"$label":"ACTS_IN","name":"Billy Baird","type":"Role","_key":"11391","_from":"8973","_to":"8971"} +{"$label":"ACTS_IN","name":"Sean Ambrose","type":"Role","_key":"11387","_from":"8972","_to":"8971"} +{"$label":"ACTS_IN","name":"Brother Silus","type":"Role","_key":"117247","_from":"8972","_to":"68966"} +{"$label":"ACTS_IN","name":"Sir Thomas Fairfax","type":"Role","_key":"115884","_from":"8972","_to":"68229"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"115142","_from":"8972","_to":"67804"} +{"$label":"ACTS_IN","name":"Sultan Shahryar","type":"Role","_key":"114909","_from":"8972","_to":"67679"} +{"$label":"ACTS_IN","name":"Terry Walsh","type":"Role","_key":"103987","_from":"8972","_to":"61172"} +{"$label":"ACTS_IN","name":"Archie Gray","type":"Role","_key":"102532","_from":"8972","_to":"60324"} +{"$label":"ACTS_IN","name":"Cass","type":"Role","_key":"98948","_from":"8972","_to":"58293"} +{"$label":"ACTS_IN","name":"Tom Jericho","type":"Role","_key":"63653","_from":"8972","_to":"39821"} +{"$label":"ACTS_IN","name":"Prince Henry","type":"Role","_key":"53965","_from":"8972","_to":"34718"} +{"$label":"ACTS_IN","name":"Kyle Williams","type":"Role","_key":"51978","_from":"8972","_to":"33896"} +{"$label":"ACTS_IN","name":"Mike Whittier","type":"Role","_key":"14362","_from":"8972","_to":"11114"} +{"$label":"ACTS_IN","name":"Glenn Sprague","type":"Role","_key":"96956","_from":"8973","_to":"57027"} +{"$label":"DIRECTED","_key":"67856","_from":"8973","_to":"41692"} +{"$label":"ACTS_IN","name":"Will Parcher","type":"Role","_key":"106101","_from":"8974","_to":"62481"} +{"$label":"ACTS_IN","name":"Dale Coverling","type":"Role","_key":"69260","_from":"8974","_to":"42348"} +{"$label":"ACTS_IN","name":"Donnie","type":"Role","_key":"56794","_from":"8974","_to":"36065"} +{"$label":"ACTS_IN","name":"Richard Strout","type":"Role","_key":"17346","_from":"8974","_to":"12977"} +{"$label":"ACTS_IN","name":"Matthew Williams","type":"Role","_key":"17094","_from":"8974","_to":"12813"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"17066","_from":"8974","_to":"12792"} +{"$label":"ACTS_IN","name":"Harris McKay","type":"Role","_key":"95196","_from":"8975","_to":"56012"} +{"$label":"ACTS_IN","name":"Seamus","type":"Role","_key":"46333","_from":"8975","_to":"30618"} +{"$label":"ACTS_IN","name":"Tim Manfrey","type":"Role","_key":"30761","_from":"8975","_to":"21565"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"100436","_from":"8976","_to":"59220"} +{"$label":"ACTS_IN","name":"Rocket","type":"Role","_key":"94447","_from":"8976","_to":"55608"} +{"$label":"ACTS_IN","name":"Wicks","type":"Role","_key":"106398","_from":"8977","_to":"62687"} +{"$label":"ACTS_IN","name":"Derek Johnson","type":"Role","_key":"97458","_from":"8977","_to":"57394"} +{"$label":"ACTS_IN","name":"Zhen","type":"Role","_key":"11409","_from":"8984","_to":"8981"} +{"$label":"ACTS_IN","name":"Lindsey Farris","type":"Role","_key":"11408","_from":"8983","_to":"8981"} +{"$label":"DIRECTED","_key":"11401","_from":"8982","_to":"8981"} +{"$label":"DIRECTED","_key":"94682","_from":"8982","_to":"55786"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"108002","_from":"8983","_to":"63792"} +{"$label":"ACTS_IN","name":"Wonder Woman","type":"Role","_key":"104076","_from":"8983","_to":"61239"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"103605","_from":"8983","_to":"60935"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"91794","_from":"8983","_to":"54152"} +{"$label":"ACTS_IN","name":"Emily Wolfmeyer","type":"Role","_key":"69359","_from":"8983","_to":"42408"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"65512","_from":"8983","_to":"40608"} +{"$label":"ACTS_IN","name":"Barbara Geoghegan","type":"Role","_key":"64307","_from":"8983","_to":"40088"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"61679","_from":"8983","_to":"38856"} +{"$label":"ACTS_IN","name":"Katie Armstrong","type":"Role","_key":"55206","_from":"8983","_to":"35221"} +{"$label":"ACTS_IN","name":"Lyla Novacek","type":"Role","_key":"35993","_from":"8983","_to":"24440"} +{"$label":"ACTS_IN","name":"Yuet","type":"Role","_key":"117607","_from":"8984","_to":"69139"} +{"$label":"ACTS_IN","name":"Cao Ying","type":"Role","_key":"100696","_from":"8984","_to":"59376"} +{"$label":"ACTS_IN","name":"Charlene Ching","type":"Role","_key":"66303","_from":"8984","_to":"41012"} +{"$label":"ACTS_IN","name":"Maggie Wong","type":"Role","_key":"56271","_from":"8984","_to":"35746"} +{"$label":"ACTS_IN","name":"Mai Lihn","type":"Role","_key":"13892","_from":"8984","_to":"10786"} +{"$label":"ACTS_IN","name":"Dot Matrix","type":"Role","_key":"11421","_from":"8992","_to":"8985"} +{"$label":"ACTS_IN","name":"Radar Technician","type":"Role","_key":"11420","_from":"8991","_to":"8985"} +{"$label":"ACTS_IN","name":"King Roland","type":"Role","_key":"11419","_from":"8990","_to":"8985"} +{"$label":"ACTS_IN","name":"Dot Matrix (voice)","type":"Role","_key":"11418","_from":"8989","_to":"8985"} +{"$label":"ACTS_IN","name":"Colonel Sandurz","type":"Role","_key":"11417","_from":"8988","_to":"8985"} +{"$label":"ACTS_IN","name":"Princess Vespa","type":"Role","_key":"11415","_from":"8987","_to":"8985"} +{"$label":"ACTS_IN","name":"Yoghurt","type":"Role","_key":"11412","_from":"8986","_to":"8985"} +{"$label":"DIRECTED","_key":"11411","_from":"8986","_to":"8985"} +{"$label":"DIRECTED","_key":"90112","_from":"8986","_to":"53290"} +{"$label":"DIRECTED","_key":"88072","_from":"8986","_to":"52279"} +{"$label":"DIRECTED","_key":"67708","_from":"8986","_to":"41639"} +{"$label":"DIRECTED","_key":"66998","_from":"8986","_to":"41360"} +{"$label":"DIRECTED","_key":"61301","_from":"8986","_to":"38701"} +{"$label":"DIRECTED","_key":"47724","_from":"8986","_to":"31431"} +{"$label":"DIRECTED","_key":"43905","_from":"8986","_to":"29304"} +{"$label":"DIRECTED","_key":"26735","_from":"8986","_to":"19220"} +{"$label":"DIRECTED","_key":"25148","_from":"8986","_to":"18167"} +{"$label":"ACTS_IN","name":"Dr. Richard H. Thorndyke","type":"Role","_key":"90105","_from":"8986","_to":"53290"} +{"$label":"ACTS_IN","name":"Prof. Abraham Van Helsing","type":"Role","_key":"88074","_from":"8986","_to":"52279"} +{"$label":"ACTS_IN","name":"Gov. William J. Le Petomane \/ Indian Chief","type":"Role","_key":"67704","_from":"8986","_to":"41639"} +{"$label":"ACTS_IN","name":"Mel Funn","type":"Role","_key":"66994","_from":"8986","_to":"41360"} +{"$label":"ACTS_IN","name":"Mr. Welling","type":"Role","_key":"66532","_from":"8986","_to":"41127"} +{"$label":"ACTS_IN","name":"King Louis XVI","type":"Role","_key":"61302","_from":"8986","_to":"38701"} +{"$label":"ACTS_IN","name":"Big Weld (voice)","type":"Role","_key":"58225","_from":"8986","_to":"36829"} +{"$label":"ACTS_IN","name":"Goddard Bolt","type":"Role","_key":"43902","_from":"8986","_to":"29304"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26738","_from":"8986","_to":"19220"} +{"$label":"ACTS_IN","name":"Laurie Rorbach","type":"Role","_key":"111475","_from":"8987","_to":"65817"} +{"$label":"ACTS_IN","name":"Beth Logan","type":"Role","_key":"62705","_from":"8987","_to":"39426"} +{"$label":"ACTS_IN","name":"Alison Bradbury","type":"Role","_key":"51886","_from":"8987","_to":"33850"} +{"$label":"ACTS_IN","name":"Marvin Gillet","type":"Role","_key":"101186","_from":"8988","_to":"59606"} +{"$label":"ACTS_IN","name":"Marvin Gillet","type":"Role","_key":"56262","_from":"8988","_to":"35740"} +{"$label":"ACTS_IN","name":"Perfume saleswoman","type":"Role","_key":"72643","_from":"8989","_to":"43777"} +{"$label":"ACTS_IN","name":"Harold Jennings","type":"Role","_key":"106989","_from":"8990","_to":"63076"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96492","_from":"8990","_to":"56725"} +{"$label":"ACTS_IN","name":"Dr. Philip Wentworth","type":"Role","_key":"90111","_from":"8990","_to":"53290"} +{"$label":"ACTS_IN","name":"The Abbot","type":"Role","_key":"47722","_from":"8990","_to":"31431"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"45599","_from":"8990","_to":"30182"} +{"$label":"ACTS_IN","name":"Banker","type":"Role","_key":"20682","_from":"8990","_to":"15116"} +{"$label":"ACTS_IN","name":"Sgt. Larvelle Jones","type":"Role","_key":"88131","_from":"8991","_to":"52299"} +{"$label":"ACTS_IN","name":"Sgt. Larvelle Jones","type":"Role","_key":"72601","_from":"8991","_to":"43770"} +{"$label":"ACTS_IN","name":"Sgt. Larvelle Jones","type":"Role","_key":"72225","_from":"8991","_to":"43642"} +{"$label":"ACTS_IN","name":"Larvelle Jones","type":"Role","_key":"70554","_from":"8991","_to":"42933"} +{"$label":"ACTS_IN","name":"Sgt. Larvelle Jones","type":"Role","_key":"64271","_from":"8991","_to":"40078"} +{"$label":"ACTS_IN","name":"Larvell Jones","type":"Role","_key":"61318","_from":"8991","_to":"38704"} +{"$label":"ACTS_IN","name":"Cadet Larvelle Jones","type":"Role","_key":"53192","_from":"8991","_to":"34404"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"34274","_from":"8991","_to":"23524"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"34158","_from":"8991","_to":"23460"} +{"$label":"ACTS_IN","name":"Walker","type":"Role","_key":"34148","_from":"8991","_to":"23455"} +{"$label":"ACTS_IN","name":"Union general","type":"Role","_key":"11435","_from":"9002","_to":"8993"} +{"$label":"ACTS_IN","name":"Union general","type":"Role","_key":"11434","_from":"9001","_to":"8993"} +{"$label":"ACTS_IN","name":"Annabelle's brother","type":"Role","_key":"11432","_from":"9000","_to":"8993"} +{"$label":"ACTS_IN","name":"Mr. Lee","type":"Role","_key":"11431","_from":"8999","_to":"8993"} +{"$label":"ACTS_IN","name":"Confederate general","type":"Role","_key":"11430","_from":"8998","_to":"8993"} +{"$label":"ACTS_IN","name":"Gen. Thatcher","type":"Role","_key":"11429","_from":"8997","_to":"8993"} +{"$label":"ACTS_IN","name":"Union Capt. Anderson","type":"Role","_key":"11428","_from":"8996","_to":"8993"} +{"$label":"ACTS_IN","name":"Annabelle Lee","type":"Role","_key":"11427","_from":"8995","_to":"8993"} +{"$label":"DIRECTED","_key":"11424","_from":"8994","_to":"8993"} +{"$label":"ACTS_IN","name":"Jack Cameron","type":"Role","_key":"11442","_from":"9008","_to":"9003"} +{"$label":"ACTS_IN","name":"Hank Curtis","type":"Role","_key":"11441","_from":"9007","_to":"9003"} +{"$label":"ACTS_IN","name":"Black Larsen","type":"Role","_key":"11440","_from":"9006","_to":"9003"} +{"$label":"ACTS_IN","name":"Big Jim McKay","type":"Role","_key":"11439","_from":"9005","_to":"9003"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"11438","_from":"9004","_to":"9003"} +{"$label":"ACTS_IN","name":"Night shelter keeper","type":"Role","_key":"60682","_from":"9007","_to":"38311"} +{"$label":"ACTS_IN","name":"Cafe proprietor","type":"Role","_key":"25562","_from":"9007","_to":"18417"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"18077","_from":"9007","_to":"13430"} +{"$label":"ACTS_IN","name":"Pawnbroker","type":"Role","_key":"18065","_from":"9007","_to":"13426"} +{"$label":"ACTS_IN","name":"Mrs. Stout","type":"Role","_key":"18062","_from":"9007","_to":"13420"} +{"$label":"ACTS_IN","name":"District Attorney Bryan","type":"Role","_key":"11457","_from":"9016","_to":"9009"} +{"$label":"ACTS_IN","name":"Frank Richman","type":"Role","_key":"11456","_from":"9015","_to":"9009"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"11455","_from":"9014","_to":"9009"} +{"$label":"ACTS_IN","name":"Miles Archer","type":"Role","_key":"11453","_from":"9013","_to":"9009"} +{"$label":"ACTS_IN","name":"Det. Lt. Dundy","type":"Role","_key":"11449","_from":"9012","_to":"9009"} +{"$label":"ACTS_IN","name":"Iva Archer","type":"Role","_key":"11448","_from":"9011","_to":"9009"} +{"$label":"DIRECTED","_key":"11444","_from":"9010","_to":"9009"} +{"$label":"ACTS_IN","name":"Cal Bruce","type":"Role","_key":"117555","_from":"9012","_to":"69116"} +{"$label":"ACTS_IN","name":"Lt. John Reece","type":"Role","_key":"115602","_from":"9012","_to":"68053"} +{"$label":"ACTS_IN","name":"Carl Hurst","type":"Role","_key":"46120","_from":"9012","_to":"30473"} +{"$label":"ACTS_IN","name":"Pat McCormick","type":"Role","_key":"25709","_from":"9012","_to":"18497"} +{"$label":"ACTS_IN","name":"Sam Higgins","type":"Role","_key":"25045","_from":"9012","_to":"18088"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29372","_from":"9013","_to":"20855"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29360","_from":"9013","_to":"20852"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29301","_from":"9013","_to":"20814"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29287","_from":"9013","_to":"20811"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29274","_from":"9013","_to":"20805"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29256","_from":"9013","_to":"20796"} +{"$label":"ACTS_IN","name":"George M. Radcliffe","type":"Role","_key":"29245","_from":"9013","_to":"20794"} +{"$label":"ACTS_IN","name":"George Radcliffe","type":"Role","_key":"29233","_from":"9013","_to":"20793"} +{"$label":"ACTS_IN","name":"Charles Peabody","type":"Role","_key":"29192","_from":"9013","_to":"20782"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"112431","_from":"9014","_to":"66378"} +{"$label":"ACTS_IN","name":"Quinto, a Convict","type":"Role","_key":"120002","_from":"9015","_to":"70472"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"120006","_from":"9016","_to":"70472"} +{"$label":"ACTS_IN","name":"Carlotta","type":"Role","_key":"11466","_from":"9025","_to":"9017"} +{"$label":"ACTS_IN","name":"Florine Papillon","type":"Role","_key":"11465","_from":"9024","_to":"9017"} +{"$label":"ACTS_IN","name":"Comte Philip de Chagny","type":"Role","_key":"11464","_from":"9023","_to":"9017"} +{"$label":"ACTS_IN","name":"Ledoux","type":"Role","_key":"11463","_from":"9022","_to":"9017"} +{"$label":"ACTS_IN","name":"Vicomte Raoul de Chagny","type":"Role","_key":"11461","_from":"9021","_to":"9017"} +{"$label":"ACTS_IN","name":"Christine Daa\u00e9","type":"Role","_key":"11460","_from":"9020","_to":"9017"} +{"$label":"ACTS_IN","name":"Erik, The Phantom","type":"Role","_key":"11459","_from":"9019","_to":"9017"} +{"$label":"DIRECTED","_key":"11458","_from":"9018","_to":"9017"} +{"$label":"ACTS_IN","name":"Quasimodo","type":"Role","_key":"118352","_from":"9019","_to":"69576"} +{"$label":"ACTS_IN","name":"Phoebus de Chateaupers","type":"Role","_key":"118354","_from":"9021","_to":"69576"} +{"$label":"ACTS_IN","name":"Dr. Rowitz","type":"Role","_key":"28006","_from":"9022","_to":"20078"} +{"$label":"ACTS_IN","name":"Maj. Amberson","type":"Role","_key":"11476","_from":"9031","_to":"9026"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"11474","_from":"9030","_to":"9026"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"11472","_from":"9029","_to":"9026"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"11470","_from":"9028","_to":"9026"} +{"$label":"DIRECTED","_key":"11468","_from":"9027","_to":"9026"} +{"$label":"ACTS_IN","name":"Bob Curtin","type":"Role","_key":"25707","_from":"9029","_to":"18497"} +{"$label":"ACTS_IN","name":"Virgil Earp","type":"Role","_key":"25678","_from":"9029","_to":"18485"} +{"$label":"ACTS_IN","name":"Lt. Blanchard","type":"Role","_key":"11770","_from":"9029","_to":"9231"} +{"$label":"ACTS_IN","name":"Glen Robie","type":"Role","_key":"113457","_from":"9030","_to":"66843"} +{"$label":"ACTS_IN","name":"District Attorney Adair","type":"Role","_key":"13422","_from":"9030","_to":"10442"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"11491","_from":"9040","_to":"9032"} +{"$label":"ACTS_IN","name":"Old man","type":"Role","_key":"11490","_from":"9039","_to":"9032"} +{"$label":"ACTS_IN","name":"Hilario","type":"Role","_key":"11489","_from":"9038","_to":"9032"} +{"$label":"ACTS_IN","name":"Sotero","type":"Role","_key":"11488","_from":"9037","_to":"9032"} +{"$label":"ACTS_IN","name":"Tomas","type":"Role","_key":"11487","_from":"9036","_to":"9032"} +{"$label":"ACTS_IN","name":"Harry Luck","type":"Role","_key":"11484","_from":"9035","_to":"9032"} +{"$label":"ACTS_IN","name":"Chris Adams","type":"Role","_key":"11479","_from":"9034","_to":"9032"} +{"$label":"DIRECTED","_key":"11478","_from":"9033","_to":"9032"} +{"$label":"DIRECTED","_key":"119055","_from":"9033","_to":"69979"} +{"$label":"DIRECTED","_key":"113487","_from":"9033","_to":"66871"} +{"$label":"DIRECTED","_key":"102275","_from":"9033","_to":"60181"} +{"$label":"DIRECTED","_key":"101421","_from":"9033","_to":"59701"} +{"$label":"DIRECTED","_key":"100779","_from":"9033","_to":"59412"} +{"$label":"DIRECTED","_key":"69466","_from":"9033","_to":"42443"} +{"$label":"DIRECTED","_key":"69183","_from":"9033","_to":"42309"} +{"$label":"DIRECTED","_key":"40496","_from":"9033","_to":"27264"} +{"$label":"DIRECTED","_key":"34216","_from":"9033","_to":"23489"} +{"$label":"ACTS_IN","name":"King Mongkut of Siam","type":"Role","_key":"109383","_from":"9034","_to":"64625"} +{"$label":"ACTS_IN","name":"Chris Adams","type":"Role","_key":"90768","_from":"9034","_to":"53570"} +{"$label":"ACTS_IN","name":"The Gunslinger","type":"Role","_key":"64783","_from":"9034","_to":"40313"} +{"$label":"ACTS_IN","name":"Ramses","type":"Role","_key":"44953","_from":"9034","_to":"29886"} +{"$label":"ACTS_IN","name":"The Deaf Man","type":"Role","_key":"35353","_from":"9034","_to":"24069"} +{"$label":"ACTS_IN","name":"Jean Lafitte","type":"Role","_key":"34921","_from":"9034","_to":"23856"} +{"$label":"ACTS_IN","name":"Baron von Grunen","type":"Role","_key":"31254","_from":"9034","_to":"21866"} +{"$label":"ACTS_IN","name":"The Gunslinger","type":"Role","_key":"20676","_from":"9034","_to":"15116"} +{"$label":"ACTS_IN","name":"Lt. Christian","type":"Role","_key":"113430","_from":"9035","_to":"66828"} +{"$label":"ACTS_IN","name":"Bob Brannom","type":"Role","_key":"110627","_from":"9035","_to":"65354"} +{"$label":"ACTS_IN","name":"Grandpere","type":"Role","_key":"115440","_from":"9039","_to":"67969"} +{"$label":"ACTS_IN","name":"Graf Bielowski","type":"Role","_key":"27285","_from":"9039","_to":"19614"} +{"$label":"ACTS_IN","name":"Laelius","type":"Role","_key":"11512","_from":"9051","_to":"9041"} +{"$label":"ACTS_IN","name":"Caius","type":"Role","_key":"11511","_from":"9050","_to":"9041"} +{"$label":"ACTS_IN","name":"Gannicus","type":"Role","_key":"11508","_from":"9049","_to":"9041"} +{"$label":"ACTS_IN","name":"Claudia Marius","type":"Role","_key":"11506","_from":"9048","_to":"9041"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"11504","_from":"9047","_to":"9041"} +{"$label":"ACTS_IN","name":"Marcus Publius Glabrus","type":"Role","_key":"11502","_from":"9046","_to":"9041"} +{"$label":"ACTS_IN","name":"Tigranes Levantus","type":"Role","_key":"11501","_from":"9045","_to":"9041"} +{"$label":"ACTS_IN","name":"Crixus","type":"Role","_key":"11500","_from":"9044","_to":"9041"} +{"$label":"ACTS_IN","name":"Sempronius Gracchus","type":"Role","_key":"11496","_from":"9043","_to":"9041"} +{"$label":"ACTS_IN","name":"Varinia","type":"Role","_key":"11495","_from":"9042","_to":"9041"} +{"$label":"ACTS_IN","name":"Kanchi","type":"Role","_key":"109060","_from":"9042","_to":"64443"} +{"$label":"ACTS_IN","name":"Julie Maragon","type":"Role","_key":"89911","_from":"9042","_to":"53205"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"34954","_from":"9042","_to":"23864"} +{"$label":"ACTS_IN","name":"Sarah Brown","type":"Role","_key":"34248","_from":"9042","_to":"23507"} +{"$label":"ACTS_IN","name":"Diane Tremayne Jessup","type":"Role","_key":"16801","_from":"9042","_to":"12660"} +{"$label":"ACTS_IN","name":"Earl Janoth","type":"Role","_key":"121641","_from":"9043","_to":"71463"} +{"$label":"ACTS_IN","name":"Sir Simon De Canterville","type":"Role","_key":"120156","_from":"9043","_to":"70573"} +{"$label":"ACTS_IN","name":"Senator Seabright Cooley","type":"Role","_key":"111443","_from":"9043","_to":"65805"} +{"$label":"ACTS_IN","name":"Henry Horatio Hobson","type":"Role","_key":"109120","_from":"9043","_to":"64471"} +{"$label":"ACTS_IN","name":"Captain Kidd","type":"Role","_key":"104291","_from":"9043","_to":"61363"} +{"$label":"ACTS_IN","name":"Bligh","type":"Role","_key":"89249","_from":"9043","_to":"52845"} +{"$label":"ACTS_IN","name":"(in \"The Bribe\") (archive footage)","type":"Role","_key":"53886","_from":"9043","_to":"34691"} +{"$label":"ACTS_IN","name":"Dr. Moreau","type":"Role","_key":"25117","_from":"9043","_to":"18145"} +{"$label":"DIRECTED","_key":"26051","_from":"9043","_to":"18722"} +{"$label":"ACTS_IN","name":"Ballomar","type":"Role","_key":"111752","_from":"9044","_to":"65965"} +{"$label":"ACTS_IN","name":"Ethan Jefferson","type":"Role","_key":"107624","_from":"9044","_to":"63525"} +{"$label":"ACTS_IN","name":"Cherry Valance","type":"Role","_key":"25695","_from":"9044","_to":"18490"} +{"$label":"ACTS_IN","name":"Billy Clanton","type":"Role","_key":"25681","_from":"9044","_to":"18485"} +{"$label":"ACTS_IN","name":"Inspektor Wald","type":"Role","_key":"24798","_from":"9044","_to":"17933"} +{"$label":"ACTS_IN","name":"Detective Lt. Nulty","type":"Role","_key":"15848","_from":"9044","_to":"12058"} +{"$label":"ACTS_IN","name":"Captain Nemo","type":"Role","_key":"118402","_from":"9045","_to":"69604"} +{"$label":"ACTS_IN","name":"Dreyfus","type":"Role","_key":"89138","_from":"9045","_to":"52801"} +{"$label":"ACTS_IN","name":"Charles Dreyfus","type":"Role","_key":"72318","_from":"9045","_to":"43680"} +{"$label":"ACTS_IN","name":"Colonel Bockner","type":"Role","_key":"57357","_from":"9045","_to":"36367"} +{"$label":"ACTS_IN","name":"Chef Inspektor Charles Dreyfus","type":"Role","_key":"55821","_from":"9045","_to":"35527"} +{"$label":"ACTS_IN","name":"Randolph","type":"Role","_key":"42926","_from":"9045","_to":"28685"} +{"$label":"ACTS_IN","name":"Insp. Charles Dreyfus","type":"Role","_key":"41615","_from":"9045","_to":"27943"} +{"$label":"ACTS_IN","name":"Colonel Brinkley","type":"Role","_key":"38216","_from":"9045","_to":"25817"} +{"$label":"ACTS_IN","name":"Van Helsing","type":"Role","_key":"38071","_from":"9045","_to":"25754"} +{"$label":"ACTS_IN","name":"Etzel","type":"Role","_key":"38031","_from":"9045","_to":"25742"} +{"$label":"ACTS_IN","name":"Louis (alias 'Mr. Harvey')","type":"Role","_key":"37554","_from":"9045","_to":"25457"} +{"$label":"ACTS_IN","name":"General Brancko Romensky","type":"Role","_key":"34512","_from":"9045","_to":"23628"} +{"$label":"ACTS_IN","name":"Dr. Edward Armstrong","type":"Role","_key":"34497","_from":"9045","_to":"23625"} +{"$label":"ACTS_IN","name":"Dr. Hartz","type":"Role","_key":"33524","_from":"9045","_to":"23182"} +{"$label":"ACTS_IN","name":"Charles Dreyfus","type":"Role","_key":"14135","_from":"9045","_to":"10944"} +{"$label":"ACTS_IN","name":"Bart Tare","type":"Role","_key":"117026","_from":"9046","_to":"68872"} +{"$label":"ACTS_IN","name":"Brandon Shaw","type":"Role","_key":"13998","_from":"9046","_to":"10857"} +{"$label":"ACTS_IN","name":"Big Frank","type":"Role","_key":"117084","_from":"9047","_to":"68897"} +{"$label":"ACTS_IN","name":"Vicky Robinson","type":"Role","_key":"119146","_from":"9048","_to":"70021"} +{"$label":"ACTS_IN","name":"Gloria Upson","type":"Role","_key":"108831","_from":"9048","_to":"64318"} +{"$label":"ACTS_IN","name":"Diane Prescott","type":"Role","_key":"25271","_from":"9048","_to":"18220"} +{"$label":"ACTS_IN","name":"Dr. Lundau","type":"Role","_key":"116953","_from":"9050","_to":"68841"} +{"$label":"ACTS_IN","name":"Big Vic","type":"Role","_key":"111674","_from":"9050","_to":"65929"} +{"$label":"ACTS_IN","name":"Prof. Gordon","type":"Role","_key":"28543","_from":"9050","_to":"20396"} +{"$label":"ACTS_IN","name":"Chata","type":"Role","_key":"12970","_from":"9050","_to":"10112"} +{"$label":"ACTS_IN","name":"Dr. Heath","type":"Role","_key":"25043","_from":"9051","_to":"18088"} +{"$label":"ACTS_IN","name":"Carmine","type":"Role","_key":"11531","_from":"9064","_to":"9052"} +{"$label":"ACTS_IN","name":"Edna","type":"Role","_key":"11529","_from":"9063","_to":"9052"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"11528","_from":"9062","_to":"9052"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"11527","_from":"9061","_to":"9052"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"11526","_from":"9060","_to":"9052"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"11525","_from":"9059","_to":"9052"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"11523","_from":"9058","_to":"9052"} +{"$label":"ACTS_IN","name":"Mulvaney","type":"Role","_key":"11522","_from":"9057","_to":"9052"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"11521","_from":"9056","_to":"9052"} +{"$label":"ACTS_IN","name":"TV Anchorman","type":"Role","_key":"11520","_from":"9055","_to":"9052"} +{"$label":"ACTS_IN","name":"Sheldon","type":"Role","_key":"11519","_from":"9054","_to":"9052"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"11518","_from":"9053","_to":"9052"} +{"$label":"ACTS_IN","name":"Michael Lerman","type":"Role","_key":"115245","_from":"9053","_to":"67870"} +{"$label":"ACTS_IN","name":"Dr. Roark","type":"Role","_key":"99006","_from":"9053","_to":"58325"} +{"$label":"ACTS_IN","name":"Joseph Cardone","type":"Role","_key":"88923","_from":"9053","_to":"52676"} +{"$label":"ACTS_IN","name":"Jerry Dandrige","type":"Role","_key":"72039","_from":"9053","_to":"43562"} +{"$label":"ACTS_IN","name":"Mike Norris","type":"Role","_key":"64256","_from":"9053","_to":"40075"} +{"$label":"ACTS_IN","name":"Jack Skellington (voice)","type":"Role","_key":"54124","_from":"9053","_to":"34786"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"25438","_from":"9053","_to":"18347"} +{"$label":"ACTS_IN","name":"Prince Humperdinck","type":"Role","_key":"21702","_from":"9053","_to":"15866"} +{"$label":"ACTS_IN","name":"Denny Doyle","type":"Role","_key":"49119","_from":"9054","_to":"32182"} +{"$label":"ACTS_IN","name":"Ray Brock","type":"Role","_key":"38242","_from":"9054","_to":"25825"} +{"$label":"ACTS_IN","name":"Witt's mother","type":"Role","_key":"50641","_from":"9056","_to":"33066"} +{"$label":"ACTS_IN","name":"Lt. Roget\/Singing man","type":"Role","_key":"11538","_from":"9069","_to":"9065"} +{"$label":"ACTS_IN","name":"Gen. Paul Mireau","type":"Role","_key":"11537","_from":"9068","_to":"9065"} +{"$label":"ACTS_IN","name":"Gen. George Broulard","type":"Role","_key":"11536","_from":"9067","_to":"9065"} +{"$label":"ACTS_IN","name":"Cpl. Philippe Paris","type":"Role","_key":"11535","_from":"9066","_to":"9065"} +{"$label":"ACTS_IN","name":"Mike Hammer","type":"Role","_key":"114663","_from":"9066","_to":"67551"} +{"$label":"ACTS_IN","name":"Bernie Jenks","type":"Role","_key":"104095","_from":"9066","_to":"61243"} +{"$label":"ACTS_IN","name":"Captain Stuart Kinder","type":"Role","_key":"14695","_from":"9066","_to":"11307"} +{"$label":"ACTS_IN","name":"Steve Hagen","type":"Role","_key":"121643","_from":"9068","_to":"71463"} +{"$label":"ACTS_IN","name":"Ballin Mundson","type":"Role","_key":"28698","_from":"9068","_to":"20507"} +{"$label":"ACTS_IN","name":"Walter Wichita Garrett","type":"Role","_key":"28012","_from":"9069","_to":"20085"} +{"$label":"ACTS_IN","name":"Lt. Harry Kello","type":"Role","_key":"11552","_from":"9079","_to":"9070"} +{"$label":"ACTS_IN","name":"Herbie Temple","type":"Role","_key":"11551","_from":"9078","_to":"9070"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"11550","_from":"9077","_to":"9070"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"11549","_from":"9076","_to":"9070"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"11548","_from":"9075","_to":"9070"} +{"$label":"ACTS_IN","name":"Frank D' Angelo","type":"Role","_key":"11547","_from":"9074","_to":"9070"} +{"$label":"ACTS_IN","name":"Steve Dallas","type":"Role","_key":"11546","_from":"9073","_to":"9070"} +{"$label":"ACTS_IN","name":"Susan Hunsecker","type":"Role","_key":"11545","_from":"9072","_to":"9070"} +{"$label":"DIRECTED","_key":"11542","_from":"9071","_to":"9070"} +{"$label":"DIRECTED","_key":"109795","_from":"9071","_to":"64855"} +{"$label":"DIRECTED","_key":"66674","_from":"9071","_to":"41194"} +{"$label":"DIRECTED","_key":"37558","_from":"9071","_to":"25457"} +{"$label":"DIRECTED","_key":"25266","_from":"9071","_to":"18220"} +{"$label":"ACTS_IN","name":"Dave Woods","type":"Role","_key":"118163","_from":"9074","_to":"69448"} +{"$label":"ACTS_IN","name":"Leo 'Transport' Andreof","type":"Role","_key":"116670","_from":"9074","_to":"68678"} +{"$label":"ACTS_IN","name":"Lt. Sam Lubinsky","type":"Role","_key":"101232","_from":"9074","_to":"59623"} +{"$label":"ACTS_IN","name":"Lieutenant Abrams","type":"Role","_key":"100977","_from":"9074","_to":"59510"} +{"$label":"ACTS_IN","name":"Lt. Abrams","type":"Role","_key":"100952","_from":"9074","_to":"59500"} +{"$label":"ACTS_IN","name":"Sadie Blodgett","type":"Role","_key":"108570","_from":"9075","_to":"64161"} +{"$label":"ACTS_IN","name":"Sylvia Nicolai","type":"Role","_key":"110991","_from":"9076","_to":"65556"} +{"$label":"ACTS_IN","name":"Miss Steuben","type":"Role","_key":"50678","_from":"9077","_to":"33081"} +{"$label":"ACTS_IN","name":"Mrs. Clay","type":"Role","_key":"39860","_from":"9077","_to":"26930"} +{"$label":"ACTS_IN","name":"Rufus Ryker","type":"Role","_key":"26026","_from":"9079","_to":"18705"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"11558","_from":"9085","_to":"9080"} +{"$label":"ACTS_IN","name":"The Old Warrior","type":"Role","_key":"11557","_from":"9084","_to":"9080"} +{"$label":"ACTS_IN","name":"The Policeman","type":"Role","_key":"11556","_from":"9083","_to":"9080"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"11555","_from":"9082","_to":"9080"} +{"$label":"ACTS_IN","name":"The Boy","type":"Role","_key":"11554","_from":"9081","_to":"9080"} +{"$label":"ACTS_IN","name":"Regent","type":"Role","_key":"11568","_from":"9091","_to":"9086"} +{"$label":"ACTS_IN","name":"British Officer","type":"Role","_key":"11567","_from":"9090","_to":"9086"} +{"$label":"ACTS_IN","name":"Pema Lhaki","type":"Role","_key":"11566","_from":"9089","_to":"9086"} +{"$label":"ACTS_IN","name":"Ngawang Jigme","type":"Role","_key":"11563","_from":"9088","_to":"9086"} +{"$label":"ACTS_IN","name":"Dalai Lama, 14 Years Old","type":"Role","_key":"11561","_from":"9087","_to":"9086"} +{"$label":"ACTS_IN","name":"Shang","type":"Role","_key":"88973","_from":"9088","_to":"52708"} +{"$label":"ACTS_IN","name":"Shang","type":"Role","_key":"64976","_from":"9088","_to":"40383"} +{"$label":"ACTS_IN","name":"Sergeant Louie","type":"Role","_key":"20383","_from":"9088","_to":"14930"} +{"$label":"ACTS_IN","name":"Dr. Samuel Jordon","type":"Role","_key":"117056","_from":"9090","_to":"68886"} +{"$label":"ACTS_IN","name":"Sir Thomas","type":"Role","_key":"115291","_from":"9090","_to":"67881"} +{"$label":"ACTS_IN","name":"Hugh Albert Priest","type":"Role","_key":"64874","_from":"9090","_to":"40346"} +{"$label":"ACTS_IN","name":"Dr. Philipp Royce","type":"Role","_key":"18024","_from":"9090","_to":"13394"} +{"$label":"ACTS_IN","name":"Michael Stratton","type":"Role","_key":"17808","_from":"9090","_to":"13273"} +{"$label":"ACTS_IN","name":"Virat","type":"Role","_key":"31692","_from":"9091","_to":"22116"} +{"$label":"ACTS_IN","name":"Mourad","type":"Role","_key":"11578","_from":"9098","_to":"9092"} +{"$label":"ACTS_IN","name":"Fistman","type":"Role","_key":"11577","_from":"9097","_to":"9092"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"11576","_from":"9096","_to":"9092"} +{"$label":"ACTS_IN","name":"Le Tenia","type":"Role","_key":"11574","_from":"9095","_to":"9092"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"11573","_from":"9094","_to":"9092"} +{"$label":"DIRECTED","_key":"11570","_from":"9093","_to":"9092"} +{"$label":"DIRECTED","_key":"13878","_from":"9093","_to":"10778"} +{"$label":"DIRECTED","_key":"13868","_from":"9093","_to":"10769"} +{"$label":"ACTS_IN","name":"Bernie No\u00ebl","type":"Role","_key":"121617","_from":"9094","_to":"71447"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96111","_from":"9094","_to":"56490"} +{"$label":"ACTS_IN","name":"Dougnac","type":"Role","_key":"94896","_from":"9094","_to":"55872"} +{"$label":"ACTS_IN","name":"David Hoffman","type":"Role","_key":"93983","_from":"9094","_to":"55346"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois Lefort","type":"Role","_key":"59968","_from":"9094","_to":"37860"} +{"$label":"ACTS_IN","name":"Antoine M\u00e9liot","type":"Role","_key":"56168","_from":"9094","_to":"35705"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"48767","_from":"9094","_to":"31986"} +{"$label":"ACTS_IN","name":"Eric Cellier","type":"Role","_key":"30748","_from":"9094","_to":"21554"} +{"$label":"ACTS_IN","name":"Balthazar Balsan","type":"Role","_key":"29866","_from":"9094","_to":"21124"} +{"$label":"ACTS_IN","name":"C\u00e9lestin Poux","type":"Role","_key":"23893","_from":"9094","_to":"17312"} +{"$label":"DIRECTED","_key":"121614","_from":"9094","_to":"71447"} +{"$label":"ACTS_IN","name":"Pierre Bl\u00e9reau","type":"Role","_key":"41566","_from":"9095","_to":"27909"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"29181","_from":"9095","_to":"20776"} +{"$label":"ACTS_IN","name":"Gipp\u00e9","type":"Role","_key":"18339","_from":"9095","_to":"13604"} +{"$label":"ACTS_IN","name":"Darby","type":"Role","_key":"11590","_from":"9106","_to":"9099"} +{"$label":"ACTS_IN","name":"Monty Smith","type":"Role","_key":"11589","_from":"9105","_to":"9099"} +{"$label":"ACTS_IN","name":"Gerald Tetley","type":"Role","_key":"11588","_from":"9104","_to":"9099"} +{"$label":"ACTS_IN","name":"Maj. Tetley","type":"Role","_key":"11586","_from":"9103","_to":"9099"} +{"$label":"ACTS_IN","name":"Judge Daniel Tyler","type":"Role","_key":"11585","_from":"9102","_to":"9099"} +{"$label":"ACTS_IN","name":"Rose Mapen\/Rose Swanson","type":"Role","_key":"11582","_from":"9101","_to":"9099"} +{"$label":"DIRECTED","_key":"11579","_from":"9100","_to":"9099"} +{"$label":"DIRECTED","_key":"113844","_from":"9100","_to":"67061"} +{"$label":"DIRECTED","_key":"113654","_from":"9100","_to":"66979"} +{"$label":"ACTS_IN","name":"Cap. Donahue","type":"Role","_key":"25124","_from":"9105","_to":"18145"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"109913","_from":"9106","_to":"64940"} +{"$label":"ACTS_IN","name":"Steve Baker","type":"Role","_key":"28237","_from":"9106","_to":"20222"} +{"$label":"ACTS_IN","name":"George Kittredge","type":"Role","_key":"11603","_from":"9115","_to":"9107"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"11602","_from":"9114","_to":"9107"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"11601","_from":"9113","_to":"9107"} +{"$label":"ACTS_IN","name":"Dinah Lord","type":"Role","_key":"11600","_from":"9112","_to":"9107"} +{"$label":"ACTS_IN","name":"Seth Lord","type":"Role","_key":"11599","_from":"9111","_to":"9107"} +{"$label":"ACTS_IN","name":"Margaret Lord","type":"Role","_key":"11598","_from":"9110","_to":"9107"} +{"$label":"ACTS_IN","name":"Uncle Willie","type":"Role","_key":"11596","_from":"9109","_to":"9107"} +{"$label":"ACTS_IN","name":"Elizabeth \"Liz\" Imbrie","type":"Role","_key":"11595","_from":"9108","_to":"9107"} +{"$label":"ACTS_IN","name":"Pamela Fitzgerald","type":"Role","_key":"108960","_from":"9108","_to":"64390"} +{"$label":"ACTS_IN","name":"Dorothy Waters, Charles' Nanny","type":"Role","_key":"100963","_from":"9108","_to":"59504"} +{"$label":"ACTS_IN","name":"Detective William Henry Blore","type":"Role","_key":"34536","_from":"9109","_to":"23646"} +{"$label":"ACTS_IN","name":"Emma Hope","type":"Role","_key":"28028","_from":"9110","_to":"20091"} +{"$label":"ACTS_IN","name":"Vazec","type":"Role","_key":"25505","_from":"9113","_to":"18381"} +{"$label":"ACTS_IN","name":"Howard Rice","type":"Role","_key":"113857","_from":"9115","_to":"67061"} +{"$label":"ACTS_IN","name":"George Conway","type":"Role","_key":"28306","_from":"9115","_to":"20257"} +{"$label":"ACTS_IN","name":"Zilkov","type":"Role","_key":"11616","_from":"9124","_to":"9116"} +{"$label":"ACTS_IN","name":"Col. Milt","type":"Role","_key":"11615","_from":"9123","_to":"9116"} +{"$label":"ACTS_IN","name":"Dr. Yen Lo","type":"Role","_key":"11613","_from":"9122","_to":"9116"} +{"$label":"ACTS_IN","name":"Jocelyn Jordan","type":"Role","_key":"11611","_from":"9121","_to":"9116"} +{"$label":"ACTS_IN","name":"Sen. John Yerkes Iselin","type":"Role","_key":"11610","_from":"9120","_to":"9116"} +{"$label":"ACTS_IN","name":"Chunjin","type":"Role","_key":"11609","_from":"9119","_to":"9116"} +{"$label":"ACTS_IN","name":"Mrs. Iselin","type":"Role","_key":"11608","_from":"9118","_to":"9116"} +{"$label":"ACTS_IN","name":"Raymond Shaw","type":"Role","_key":"11607","_from":"9117","_to":"9116"} +{"$label":"ACTS_IN","name":"Col. William Travis","type":"Role","_key":"68553","_from":"9117","_to":"42033"} +{"$label":"ACTS_IN","name":"Isabel Boyd","type":"Role","_key":"120780","_from":"9118","_to":"70940"} +{"$label":"ACTS_IN","name":"Sarah Lee Gates","type":"Role","_key":"115421","_from":"9118","_to":"67964"} +{"$label":"ACTS_IN","name":"Edwina Brown","type":"Role","_key":"113450","_from":"9118","_to":"66838"} +{"$label":"ACTS_IN","name":"Sibyl Vane","type":"Role","_key":"109525","_from":"9118","_to":"64694"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"105592","_from":"9118","_to":"62139"} +{"$label":"ACTS_IN","name":"Nancy Oliver","type":"Role","_key":"95060","_from":"9118","_to":"55955"} +{"$label":"ACTS_IN","name":"Mrs. Potts","type":"Role","_key":"93892","_from":"9118","_to":"55282"} +{"$label":"ACTS_IN","name":"Miss Price","type":"Role","_key":"89273","_from":"9118","_to":"52856"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"72677","_from":"9118","_to":"43799"} +{"$label":"ACTS_IN","name":"Princess Gwendolyn","type":"Role","_key":"72297","_from":"9118","_to":"43672"} +{"$label":"ACTS_IN","name":"Mommy Fortuna","type":"Role","_key":"61253","_from":"9118","_to":"38678"} +{"$label":"ACTS_IN","name":"Mrs. Potts (voice)","type":"Role","_key":"59512","_from":"9118","_to":"37572"} +{"$label":"ACTS_IN","name":"The Dowager Empress Marie (voice)","type":"Role","_key":"53909","_from":"9118","_to":"34698"} +{"$label":"ACTS_IN","name":"Jean Bello","type":"Role","_key":"45487","_from":"9118","_to":"30136"} +{"$label":"ACTS_IN","name":"Salome Otterbourne","type":"Role","_key":"41604","_from":"9118","_to":"27940"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41321","_from":"9118","_to":"27781"} +{"$label":"ACTS_IN","name":"Miss Froy","type":"Role","_key":"33523","_from":"9118","_to":"23182"} +{"$label":"ACTS_IN","name":"Salome Otterbourne","type":"Role","_key":"29978","_from":"9118","_to":"21170"} +{"$label":"ACTS_IN","name":"Claudia Procula","type":"Role","_key":"21255","_from":"9118","_to":"15553"} +{"$label":"ACTS_IN","name":"Billy Score","type":"Role","_key":"101357","_from":"9119","_to":"59665"} +{"$label":"ACTS_IN","name":"Sauveur Meccacci","type":"Role","_key":"89927","_from":"9119","_to":"53209"} +{"$label":"ACTS_IN","name":"Agon","type":"Role","_key":"55923","_from":"9119","_to":"35568"} +{"$label":"ACTS_IN","name":"Kurt Zagon","type":"Role","_key":"53588","_from":"9119","_to":"34584"} +{"$label":"ACTS_IN","name":"Lordan","type":"Role","_key":"44151","_from":"9119","_to":"29428"} +{"$label":"ACTS_IN","name":"Scott Lindsey","type":"Role","_key":"39261","_from":"9119","_to":"26549"} +{"$label":"ACTS_IN","name":"Ray Vargo","type":"Role","_key":"34194","_from":"9119","_to":"23484"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"28754","_from":"9119","_to":"20542"} +{"$label":"ACTS_IN","name":"Honey","type":"Role","_key":"35035","_from":"9121","_to":"23901"} +{"$label":"ACTS_IN","name":"Mulvaney","type":"Role","_key":"11627","_from":"9131","_to":"9125"} +{"$label":"ACTS_IN","name":"Ghulam","type":"Role","_key":"11626","_from":"9130","_to":"9125"} +{"$label":"ACTS_IN","name":"Babu","type":"Role","_key":"11625","_from":"9129","_to":"9125"} +{"$label":"ACTS_IN","name":"Kafu Selim","type":"Role","_key":"11624","_from":"9128","_to":"9125"} +{"$label":"ACTS_IN","name":"District Commissioner","type":"Role","_key":"11623","_from":"9127","_to":"9125"} +{"$label":"ACTS_IN","name":"Ootah","type":"Role","_key":"11622","_from":"9126","_to":"9125"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"22643","_from":"9127","_to":"16415"} +{"$label":"ACTS_IN","name":"Att. William T. Rothko","type":"Role","_key":"11641","_from":"9144","_to":"9132"} +{"$label":"ACTS_IN","name":"Liquor Store Owner","type":"Role","_key":"11640","_from":"9143","_to":"9132"} +{"$label":"ACTS_IN","name":"Judge Bannerman","type":"Role","_key":"11639","_from":"9142","_to":"9132"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"11637","_from":"9141","_to":"9132"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"11636","_from":"9140","_to":"9132"} +{"$label":"ACTS_IN","name":"Mrs. Russell","type":"Role","_key":"11635","_from":"9139","_to":"9132"} +{"$label":"ACTS_IN","name":"Insp. Frank DiGiorgio","type":"Role","_key":"11634","_from":"9138","_to":"9132"} +{"$label":"ACTS_IN","name":"Lt. Al Bressler","type":"Role","_key":"11633","_from":"9137","_to":"9132"} +{"$label":"ACTS_IN","name":"Insp. Chico Gonzalez","type":"Role","_key":"11632","_from":"9136","_to":"9132"} +{"$label":"ACTS_IN","name":"The Mayor","type":"Role","_key":"11631","_from":"9135","_to":"9132"} +{"$label":"ACTS_IN","name":"Scorpio Killer","type":"Role","_key":"11630","_from":"9134","_to":"9132"} +{"$label":"DIRECTED","_key":"11628","_from":"9133","_to":"9132"} +{"$label":"DIRECTED","_key":"121743","_from":"9133","_to":"71516"} +{"$label":"DIRECTED","_key":"116900","_from":"9133","_to":"68818"} +{"$label":"DIRECTED","_key":"90437","_from":"9133","_to":"53430"} +{"$label":"DIRECTED","_key":"72745","_from":"9133","_to":"43825"} +{"$label":"DIRECTED","_key":"70587","_from":"9133","_to":"42941"} +{"$label":"DIRECTED","_key":"65327","_from":"9133","_to":"40534"} +{"$label":"DIRECTED","_key":"34896","_from":"9133","_to":"23845"} +{"$label":"ACTS_IN","name":"Detective Monte","type":"Role","_key":"57526","_from":"9134","_to":"36449"} +{"$label":"ACTS_IN","name":"Larry Cotton","type":"Role","_key":"51939","_from":"9134","_to":"33875"} +{"$label":"ACTS_IN","name":"Sherman Krader","type":"Role","_key":"118202","_from":"9135","_to":"69472"} +{"$label":"ACTS_IN","name":"Mr. Big","type":"Role","_key":"110859","_from":"9135","_to":"65484"} +{"$label":"ACTS_IN","name":"Curtis Mooney","type":"Role","_key":"108523","_from":"9135","_to":"64143"} +{"$label":"ACTS_IN","name":"Principal Underwood","type":"Role","_key":"101382","_from":"9135","_to":"59681"} +{"$label":"ACTS_IN","name":"Prindle","type":"Role","_key":"88188","_from":"9135","_to":"52321"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"65414","_from":"9135","_to":"40561"} +{"$label":"ACTS_IN","name":"Dean Vernon Wormer","type":"Role","_key":"49975","_from":"9135","_to":"32712"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"34386","_from":"9135","_to":"23576"} +{"$label":"ACTS_IN","name":"Dr. Stone","type":"Role","_key":"22579","_from":"9135","_to":"16390"} +{"$label":"ACTS_IN","name":"Rico Parra","type":"Role","_key":"20704","_from":"9135","_to":"15136"} +{"$label":"ACTS_IN","name":"Mr. Dollars","type":"Role","_key":"13811","_from":"9135","_to":"10714"} +{"$label":"ACTS_IN","name":"Ramon Herrera","type":"Role","_key":"95558","_from":"9136","_to":"56195"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"90691","_from":"9136","_to":"53539"} +{"$label":"ACTS_IN","name":"Sergeant Gonzales","type":"Role","_key":"57525","_from":"9136","_to":"36449"} +{"$label":"ACTS_IN","name":"Carlos Rodriguez","type":"Role","_key":"53869","_from":"9136","_to":"34691"} +{"$label":"ACTS_IN","name":"Johnny Torrio","type":"Role","_key":"117210","_from":"9137","_to":"68951"} +{"$label":"ACTS_IN","name":"Tony Valani","type":"Role","_key":"113604","_from":"9137","_to":"66951"} +{"$label":"ACTS_IN","name":"James Beekman","type":"Role","_key":"111409","_from":"9137","_to":"65785"} +{"$label":"ACTS_IN","name":"Lt. Al Bressler","type":"Role","_key":"64827","_from":"9137","_to":"40329"} +{"$label":"ACTS_IN","name":"Rocco Bonaro","type":"Role","_key":"34900","_from":"9137","_to":"23845"} +{"$label":"ACTS_IN","name":"Angelo Donatello","type":"Role","_key":"12810","_from":"9137","_to":"9995"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38486","_from":"9138","_to":"25997"} +{"$label":"ACTS_IN","name":"Maybelle","type":"Role","_key":"115633","_from":"9139","_to":"68070"} +{"$label":"ACTS_IN","name":"Dr. Jeffrey Stewart","type":"Role","_key":"108336","_from":"9144","_to":"64040"} +{"$label":"ACTS_IN","name":"Ambassador Magee","type":"Role","_key":"63454","_from":"9144","_to":"39745"} +{"$label":"ACTS_IN","name":"Mr. Gerald Ducksworth","type":"Role","_key":"63098","_from":"9144","_to":"39586"} +{"$label":"ACTS_IN","name":"Chief Paul Schaeffer","type":"Role","_key":"52823","_from":"9144","_to":"34251"} +{"$label":"ACTS_IN","name":"Senator Orton Worrell","type":"Role","_key":"51863","_from":"9144","_to":"33835"} +{"$label":"ACTS_IN","name":"Dr. Henryk Belicec","type":"Role","_key":"34427","_from":"9144","_to":"23588"} +{"$label":"ACTS_IN","name":"Judge Fenwick","type":"Role","_key":"25389","_from":"9144","_to":"18305"} +{"$label":"ACTS_IN","name":"Atty. Lester Adams","type":"Role","_key":"19642","_from":"9144","_to":"14529"} +{"$label":"ACTS_IN","name":"Richard Whittaker","type":"Role","_key":"15804","_from":"9144","_to":"12033"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"11652","_from":"9154","_to":"9145"} +{"$label":"ACTS_IN","name":"Pencil Machine Operator","type":"Role","_key":"11651","_from":"9153","_to":"9145"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"11650","_from":"9152","_to":"9145"} +{"$label":"ACTS_IN","name":"The Boss","type":"Role","_key":"11649","_from":"9151","_to":"9145"} +{"$label":"ACTS_IN","name":"Lady in the Radiator","type":"Role","_key":"11648","_from":"9150","_to":"9145"} +{"$label":"ACTS_IN","name":"Beautiful Girl Across the Hall","type":"Role","_key":"11647","_from":"9149","_to":"9145"} +{"$label":"ACTS_IN","name":"Mrs. X","type":"Role","_key":"11646","_from":"9148","_to":"9145"} +{"$label":"ACTS_IN","name":"Mr. X","type":"Role","_key":"11645","_from":"9147","_to":"9145"} +{"$label":"ACTS_IN","name":"Mary X","type":"Role","_key":"11644","_from":"9146","_to":"9145"} +{"$label":"ACTS_IN","name":"Nancy Sterngood","type":"Role","_key":"66033","_from":"9146","_to":"40865"} +{"$label":"ACTS_IN","name":"Mary Shaw","type":"Role","_key":"98055","_from":"9149","_to":"57732"} +{"$label":"ACTS_IN","name":"Milicent","type":"Role","_key":"89470","_from":"9149","_to":"52971"} +{"$label":"DIRECTED","_key":"115371","_from":"9152","_to":"67932"} +{"$label":"DIRECTED","_key":"66559","_from":"9152","_to":"41149"} +{"$label":"ACTS_IN","name":"Captain Logan","type":"Role","_key":"14646","_from":"9153","_to":"11280"} +{"$label":"ACTS_IN","name":"Westmoreland","type":"Role","_key":"11668","_from":"9167","_to":"9155"} +{"$label":"ACTS_IN","name":"Northumberland","type":"Role","_key":"11667","_from":"9166","_to":"9155"} +{"$label":"ACTS_IN","name":"Worcester","type":"Role","_key":"11666","_from":"9165","_to":"9155"} +{"$label":"ACTS_IN","name":"Alan Webb","type":"Role","_key":"11665","_from":"9164","_to":"9155"} +{"$label":"ACTS_IN","name":"Prince Hal","type":"Role","_key":"11664","_from":"9163","_to":"9155"} +{"$label":"ACTS_IN","name":"Henry 'Hotspur' Percy","type":"Role","_key":"11663","_from":"9162","_to":"9155"} +{"$label":"ACTS_IN","name":"Prince John","type":"Role","_key":"11662","_from":"9161","_to":"9155"} +{"$label":"ACTS_IN","name":"Ned Poins","type":"Role","_key":"11661","_from":"9160","_to":"9155"} +{"$label":"ACTS_IN","name":"Pistol","type":"Role","_key":"11660","_from":"9159","_to":"9155"} +{"$label":"ACTS_IN","name":"Mr. Silence","type":"Role","_key":"11659","_from":"9158","_to":"9155"} +{"$label":"ACTS_IN","name":"Kate Percy","type":"Role","_key":"11658","_from":"9157","_to":"9155"} +{"$label":"ACTS_IN","name":"Doll Tearsheet","type":"Role","_key":"11655","_from":"9156","_to":"9155"} +{"$label":"ACTS_IN","name":"Maria II","type":"Role","_key":"72052","_from":"9156","_to":"43571"} +{"$label":"ACTS_IN","name":"Edith Farber","type":"Role","_key":"62694","_from":"9156","_to":"39423"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"39444","_from":"9156","_to":"26661"} +{"$label":"ACTS_IN","name":"andere Frau","type":"Role","_key":"33825","_from":"9156","_to":"23309"} +{"$label":"ACTS_IN","name":"M\u00e8re Superieure","type":"Role","_key":"31640","_from":"9156","_to":"22083"} +{"$label":"ACTS_IN","name":"Julie Kohler","type":"Role","_key":"29959","_from":"9156","_to":"21166"} +{"$label":"ACTS_IN","name":"Jeanne Moreau","type":"Role","_key":"29493","_from":"9156","_to":"20909"} +{"$label":"ACTS_IN","name":"Jeanne Pirolle","type":"Role","_key":"29473","_from":"9156","_to":"20898"} +{"$label":"ACTS_IN","name":"Madame Beno\u00eet-Lambert","type":"Role","_key":"29433","_from":"9156","_to":"20878"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"27385","_from":"9156","_to":"19677"} +{"$label":"ACTS_IN","name":"French Woman","type":"Role","_key":"24939","_from":"9156","_to":"18024"} +{"$label":"ACTS_IN","name":"Marika Burstner","type":"Role","_key":"24907","_from":"9156","_to":"18006"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"22104","_from":"9156","_to":"16116"} +{"$label":"ACTS_IN","name":"Jeanne Tournier","type":"Role","_key":"22004","_from":"9156","_to":"16059"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"21977","_from":"9156","_to":"16047"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"14429","_from":"9156","_to":"11154"} +{"$label":"ACTS_IN","name":"Florence Carala","type":"Role","_key":"11968","_from":"9156","_to":"9380"} +{"$label":"ACTS_IN","name":"Juliette Jeanson","type":"Role","_key":"48079","_from":"9157","_to":"31606"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"16795","_from":"9158","_to":"12656"} +{"$label":"ACTS_IN","name":"Edmond Cork","type":"Role","_key":"41669","_from":"9159","_to":"27967"} +{"$label":"ACTS_IN","name":"Guy Algo","type":"Role","_key":"41619","_from":"9160","_to":"27943"} +{"$label":"ACTS_IN","name":"Harry Tyler","type":"Role","_key":"36117","_from":"9160","_to":"24508"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"13467","_from":"9160","_to":"10480"} +{"$label":"ACTS_IN","name":"Edgar Trent","type":"Role","_key":"70859","_from":"9164","_to":"43066"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"38658","_from":"9164","_to":"26112"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"90774","_from":"9165","_to":"53570"} +{"$label":"ACTS_IN","name":"Police Captain Torredo","type":"Role","_key":"71806","_from":"9165","_to":"43458"} +{"$label":"ACTS_IN","name":"Alain Charnier","type":"Role","_key":"65192","_from":"9165","_to":"40491"} +{"$label":"ACTS_IN","name":"Father Rattigan","type":"Role","_key":"43573","_from":"9165","_to":"29101"} +{"$label":"ACTS_IN","name":"Mathieu Faber","type":"Role","_key":"39476","_from":"9165","_to":"26682"} +{"$label":"ACTS_IN","name":"Don Rafael","type":"Role","_key":"32901","_from":"9165","_to":"22829"} +{"$label":"ACTS_IN","name":"Don Jaime","type":"Role","_key":"32135","_from":"9165","_to":"22397"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"28628","_from":"9165","_to":"20461"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"26972","_from":"9165","_to":"19402"} +{"$label":"ACTS_IN","name":"Seneca","type":"Role","_key":"22374","_from":"9165","_to":"16258"} +{"$label":"ACTS_IN","name":"Paul Corbet","type":"Role","_key":"21327","_from":"9165","_to":"15592"} +{"$label":"ACTS_IN","name":"Kaspar","type":"Role","_key":"21143","_from":"9165","_to":"15473"} +{"$label":"ACTS_IN","name":"Marchena","type":"Role","_key":"13507","_from":"9165","_to":"10513"} +{"$label":"ACTS_IN","name":"Alain Charnier","type":"Role","_key":"11856","_from":"9165","_to":"9296"} +{"$label":"ACTS_IN","name":"Mollie Malloy","type":"Role","_key":"11684","_from":"9176","_to":"9168"} +{"$label":"ACTS_IN","name":"Rudy Keppler of the Chicago Examiner","type":"Role","_key":"11683","_from":"9175","_to":"9168"} +{"$label":"ACTS_IN","name":"McHugh","type":"Role","_key":"11682","_from":"9174","_to":"9168"} +{"$label":"ACTS_IN","name":"Officer Jacobi","type":"Role","_key":"11681","_from":"9173","_to":"9168"} +{"$label":"ACTS_IN","name":"The Mayor\/Herbie\/Green Hornet","type":"Role","_key":"11680","_from":"9172","_to":"9168"} +{"$label":"ACTS_IN","name":"Schwartz","type":"Role","_key":"11678","_from":"9171","_to":"9168"} +{"$label":"ACTS_IN","name":"Roy Bensinger of the Tribune","type":"Role","_key":"11674","_from":"9170","_to":"9168"} +{"$label":"ACTS_IN","name":"'Honest Pete' Hartman Sheriff of Clark County","type":"Role","_key":"11673","_from":"9169","_to":"9168"} +{"$label":"ACTS_IN","name":"Syndicate Lawyer Lazlo","type":"Role","_key":"104178","_from":"9169","_to":"61284"} +{"$label":"ACTS_IN","name":"Det. Frank Ochoa","type":"Role","_key":"99858","_from":"9169","_to":"58893"} +{"$label":"ACTS_IN","name":"Det. Frank Ochoa","type":"Role","_key":"97587","_from":"9169","_to":"57463"} +{"$label":"ACTS_IN","name":"Barney the Barkeeper","type":"Role","_key":"89746","_from":"9169","_to":"53125"} +{"$label":"ACTS_IN","name":"Mr. Mushnik","type":"Role","_key":"65705","_from":"9169","_to":"40694"} +{"$label":"ACTS_IN","name":"Doktor Byrd","type":"Role","_key":"45615","_from":"9169","_to":"30198"} +{"$label":"ACTS_IN","name":"Dutch Schulth","type":"Role","_key":"27863","_from":"9169","_to":"19972"} +{"$label":"ACTS_IN","name":"Cosmo Castorini","type":"Role","_key":"17766","_from":"9169","_to":"13252"} +{"$label":"ACTS_IN","name":"Colonel T.R. Clydesdale","type":"Role","_key":"116998","_from":"9170","_to":"68858"} +{"$label":"ACTS_IN","name":"Dr. Charles Dutton","type":"Role","_key":"63783","_from":"9170","_to":"39883"} +{"$label":"ACTS_IN","name":"Freddie Denmark","type":"Role","_key":"62452","_from":"9170","_to":"39337"} +{"$label":"ACTS_IN","name":"Stapleton","type":"Role","_key":"37575","_from":"9170","_to":"25467"} +{"$label":"ACTS_IN","name":"Harry Pepper (as Herbert Edelman)","type":"Role","_key":"114225","_from":"9171","_to":"67279"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"69373","_from":"9171","_to":"42411"} +{"$label":"ACTS_IN","name":"Grandfather Disguisey","type":"Role","_key":"97375","_from":"9172","_to":"57346"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"62624","_from":"9172","_to":"39392"} +{"$label":"ACTS_IN","name":"Old Denahi","type":"Role","_key":"59380","_from":"9172","_to":"37511"} +{"$label":"ACTS_IN","name":"Tom Logan","type":"Role","_key":"38650","_from":"9173","_to":"26108"} +{"$label":"ACTS_IN","name":"Police sergeant","type":"Role","_key":"22722","_from":"9173","_to":"16480"} +{"$label":"ACTS_IN","name":"Purkey","type":"Role","_key":"16300","_from":"9173","_to":"12354"} +{"$label":"ACTS_IN","name":"Frank Correll","type":"Role","_key":"49120","_from":"9174","_to":"32182"} +{"$label":"ACTS_IN","name":"Miss Hannigan","type":"Role","_key":"105740","_from":"9176","_to":"62249"} +{"$label":"ACTS_IN","name":"Kangaroo (voice)","type":"Role","_key":"88798","_from":"9176","_to":"52615"} +{"$label":"ACTS_IN","name":"Dr. Elliott Lowell","type":"Role","_key":"11698","_from":"9186","_to":"9177"} +{"$label":"ACTS_IN","name":"Greg Minor","type":"Role","_key":"11697","_from":"9185","_to":"9177"} +{"$label":"ACTS_IN","name":"Mac Churchill","type":"Role","_key":"11696","_from":"9184","_to":"9177"} +{"$label":"ACTS_IN","name":"Pete Martin","type":"Role","_key":"11695","_from":"9183","_to":"9177"} +{"$label":"ACTS_IN","name":"Hector Salas","type":"Role","_key":"11694","_from":"9182","_to":"9177"} +{"$label":"ACTS_IN","name":"Ted Spindler","type":"Role","_key":"11692","_from":"9181","_to":"9177"} +{"$label":"ACTS_IN","name":"Don Jacovich","type":"Role","_key":"11691","_from":"9180","_to":"9177"} +{"$label":"ACTS_IN","name":"Bill Gibson","type":"Role","_key":"11690","_from":"9179","_to":"9177"} +{"$label":"DIRECTED","_key":"11685","_from":"9178","_to":"9177"} +{"$label":"ACTS_IN","name":"Uncle Harold","type":"Role","_key":"105074","_from":"9179","_to":"61836"} +{"$label":"ACTS_IN","name":"Harold Howard","type":"Role","_key":"72208","_from":"9179","_to":"43634"} +{"$label":"ACTS_IN","name":"Samuel Sutherland","type":"Role","_key":"22503","_from":"9180","_to":"16355"} +{"$label":"ACTS_IN","name":"Bradley Tozer","type":"Role","_key":"120561","_from":"9181","_to":"70809"} +{"$label":"ACTS_IN","name":"Captain Malone","type":"Role","_key":"116732","_from":"9181","_to":"68712"} +{"$label":"ACTS_IN","name":"Pop Fisher","type":"Role","_key":"69586","_from":"9181","_to":"42485"} +{"$label":"ACTS_IN","name":"Benjamin 'Ben' Luckett","type":"Role","_key":"68899","_from":"9181","_to":"42195"} +{"$label":"ACTS_IN","name":"Harold Smith","type":"Role","_key":"64034","_from":"9181","_to":"39969"} +{"$label":"ACTS_IN","name":"Noa","type":"Role","_key":"62859","_from":"9181","_to":"39499"} +{"$label":"ACTS_IN","name":"Benjamin Luckett","type":"Role","_key":"62612","_from":"9181","_to":"39390"} +{"$label":"ACTS_IN","name":"Scooter Jackson","type":"Role","_key":"50078","_from":"9181","_to":"32761"} +{"$label":"ACTS_IN","name":"Dr. Blair","type":"Role","_key":"11943","_from":"9181","_to":"9363"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"66779","_from":"9184","_to":"41258"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38497","_from":"9184","_to":"26007"} +{"$label":"ACTS_IN","name":"Professor Camden","type":"Role","_key":"36451","_from":"9184","_to":"24725"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"28192","_from":"9184","_to":"20190"} +{"$label":"ACTS_IN","name":"Dr. Steele","type":"Role","_key":"26452","_from":"9184","_to":"19008"} +{"$label":"ACTS_IN","name":"Martin Frohm","type":"Role","_key":"12957","_from":"9184","_to":"10106"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"92628","_from":"9185","_to":"54673"} +{"$label":"ACTS_IN","name":"Rudi Roth","type":"Role","_key":"11709","_from":"9195","_to":"9187"} +{"$label":"ACTS_IN","name":"Hilda Breitner","type":"Role","_key":"11708","_from":"9194","_to":"9187"} +{"$label":"ACTS_IN","name":"Erich von Rohn","type":"Role","_key":"11707","_from":"9193","_to":"9187"} +{"$label":"ACTS_IN","name":"Amelie Roth","type":"Role","_key":"11706","_from":"9192","_to":"9187"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"11705","_from":"9191","_to":"9187"} +{"$label":"ACTS_IN","name":"Freya Roth","type":"Role","_key":"11704","_from":"9190","_to":"9187"} +{"$label":"ACTS_IN","name":"Fritz Marberg","type":"Role","_key":"11701","_from":"9189","_to":"9187"} +{"$label":"DIRECTED","_key":"11699","_from":"9188","_to":"9187"} +{"$label":"DIRECTED","_key":"27269","_from":"9188","_to":"19607"} +{"$label":"ACTS_IN","name":"Cuffy Williams","type":"Role","_key":"120157","_from":"9189","_to":"70573"} +{"$label":"ACTS_IN","name":"Robert Marvin","type":"Role","_key":"23342","_from":"9189","_to":"16912"} +{"$label":"ACTS_IN","name":"Opal 'Snip' Madvig","type":"Role","_key":"111214","_from":"9191","_to":"65677"} +{"$label":"ACTS_IN","name":"Maleva","type":"Role","_key":"95763","_from":"9194","_to":"56328"} +{"$label":"ACTS_IN","name":"Maleva","type":"Role","_key":"25502","_from":"9194","_to":"18381"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"21375","_from":"9195","_to":"15629"} +{"$label":"ACTS_IN","name":"Jason Brown","type":"Role","_key":"15206","_from":"9195","_to":"11641"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"11719","_from":"9202","_to":"9196"} +{"$label":"ACTS_IN","name":"Big John","type":"Role","_key":"11718","_from":"9201","_to":"9196"} +{"$label":"ACTS_IN","name":"Charlie Burns","type":"Role","_key":"11716","_from":"9200","_to":"9196"} +{"$label":"ACTS_IN","name":"Sarah Packard","type":"Role","_key":"11714","_from":"9199","_to":"9196"} +{"$label":"ACTS_IN","name":"Minnesota Fats","type":"Role","_key":"11713","_from":"9198","_to":"9196"} +{"$label":"DIRECTED","_key":"11711","_from":"9197","_to":"9196"} +{"$label":"DIRECTED","_key":"119760","_from":"9197","_to":"70323"} +{"$label":"DIRECTED","_key":"112436","_from":"9197","_to":"66378"} +{"$label":"ACTS_IN","name":"Buford T. Justice","type":"Role","_key":"103260","_from":"9198","_to":"60755"} +{"$label":"ACTS_IN","name":"Sheriff Buford T. Justice","type":"Role","_key":"91134","_from":"9198","_to":"53765"} +{"$label":"ACTS_IN","name":"Sheriff Buford T. Justice","type":"Role","_key":"67237","_from":"9198","_to":"41458"} +{"$label":"ACTS_IN","name":"Grammie","type":"Role","_key":"102281","_from":"9199","_to":"60182"} +{"$label":"ACTS_IN","name":"Arden's Mother","type":"Role","_key":"95164","_from":"9199","_to":"55998"} +{"$label":"ACTS_IN","name":"Aunt Em","type":"Role","_key":"93041","_from":"9199","_to":"54853"} +{"$label":"ACTS_IN","name":"Margaret White","type":"Role","_key":"46458","_from":"9199","_to":"30685"} +{"$label":"ACTS_IN","name":"Bea Sullivan","type":"Role","_key":"43476","_from":"9199","_to":"29038"} +{"$label":"ACTS_IN","name":"Emily Boynton","type":"Role","_key":"30739","_from":"9199","_to":"21548"} +{"$label":"ACTS_IN","name":"Mrs. Norman","type":"Role","_key":"16321","_from":"9199","_to":"12369"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121620","_from":"9200","_to":"71450"} +{"$label":"ACTS_IN","name":"Jack Harmon","type":"Role","_key":"71232","_from":"9201","_to":"43224"} +{"$label":"ACTS_IN","name":"Tadzu Lempke","type":"Role","_key":"62355","_from":"9201","_to":"39282"} +{"$label":"ACTS_IN","name":"Gus Portokalos","type":"Role","_key":"49197","_from":"9201","_to":"32232"} +{"$label":"ACTS_IN","name":"Mr. Binford","type":"Role","_key":"40511","_from":"9201","_to":"27278"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"11729","_from":"9209","_to":"9203"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"11728","_from":"9208","_to":"9203"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"11727","_from":"9207","_to":"9203"} +{"$label":"ACTS_IN","name":"Peters","type":"Role","_key":"11726","_from":"9206","_to":"9203"} +{"$label":"ACTS_IN","name":"Oliver Farnsworth","type":"Role","_key":"11725","_from":"9205","_to":"9203"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"11724","_from":"9204","_to":"9203"} +{"$label":"DIRECTED","_key":"88573","_from":"9205","_to":"52493"} +{"$label":"ACTS_IN","name":"Jack Dawn","type":"Role","_key":"66479","_from":"9205","_to":"41109"} +{"$label":"ACTS_IN","name":"Lt. Colonel Korn (XO \/ Roman policeman)","type":"Role","_key":"62824","_from":"9205","_to":"39476"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38733","_from":"9205","_to":"26175"} +{"$label":"ACTS_IN","name":"J.C. Caroline","type":"Role","_key":"114771","_from":"9206","_to":"67603"} +{"$label":"ACTS_IN","name":"John Slade","type":"Role","_key":"110856","_from":"9206","_to":"65484"} +{"$label":"ACTS_IN","name":"U.N. Jefferson","type":"Role","_key":"98310","_from":"9206","_to":"57901"} +{"$label":"ACTS_IN","name":"Himself (Archive Footage)","type":"Role","_key":"39382","_from":"9206","_to":"26628"} +{"$label":"ACTS_IN","name":"Sheik","type":"Role","_key":"11736","_from":"9213","_to":"9210"} +{"$label":"ACTS_IN","name":"The Butler","type":"Role","_key":"11735","_from":"9212","_to":"9210"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"11733","_from":"9211","_to":"9210"} +{"$label":"ACTS_IN","name":"Police Constable Higgs","type":"Role","_key":"11743","_from":"9218","_to":"9214"} +{"$label":"ACTS_IN","name":"Marguerite Wyke","type":"Role","_key":"11742","_from":"9217","_to":"9214"} +{"$label":"ACTS_IN","name":"Detective Sergeant Tarrant","type":"Role","_key":"11741","_from":"9216","_to":"9214"} +{"$label":"ACTS_IN","name":"Inspector Doppler","type":"Role","_key":"11740","_from":"9215","_to":"9214"} +{"$label":"ACTS_IN","name":"Reverend Barney Hood","type":"Role","_key":"11758","_from":"9230","_to":"9219"} +{"$label":"ACTS_IN","name":"Louise Hood","type":"Role","_key":"11757","_from":"9229","_to":"9219"} +{"$label":"ACTS_IN","name":"John Niles","type":"Role","_key":"11756","_from":"9228","_to":"9219"} +{"$label":"ACTS_IN","name":"Harry Ware","type":"Role","_key":"11755","_from":"9227","_to":"9219"} +{"$label":"ACTS_IN","name":"Janice Hedden","type":"Role","_key":"11754","_from":"9226","_to":"9219"} +{"$label":"ACTS_IN","name":"Bobby Hedden","type":"Role","_key":"11753","_from":"9225","_to":"9219"} +{"$label":"ACTS_IN","name":"Riddaway","type":"Role","_key":"11751","_from":"9224","_to":"9219"} +{"$label":"ACTS_IN","name":"Chris Cawsey","type":"Role","_key":"11750","_from":"9223","_to":"9219"} +{"$label":"ACTS_IN","name":"Charlie Venner","type":"Role","_key":"11749","_from":"9222","_to":"9219"} +{"$label":"ACTS_IN","name":"Major John Scott","type":"Role","_key":"11748","_from":"9221","_to":"9219"} +{"$label":"ACTS_IN","name":"Amy Sumner","type":"Role","_key":"11746","_from":"9220","_to":"9219"} +{"$label":"ACTS_IN","name":"Mary Coombs","type":"Role","_key":"118476","_from":"9220","_to":"69646"} +{"$label":"ACTS_IN","name":"Mary Ann Landers","type":"Role","_key":"111533","_from":"9220","_to":"65847"} +{"$label":"ACTS_IN","name":"russian girl on train","type":"Role","_key":"34567","_from":"9220","_to":"23665"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"25084","_from":"9220","_to":"18122"} +{"$label":"ACTS_IN","name":"General Vortek","type":"Role","_key":"90906","_from":"9221","_to":"53628"} +{"$label":"ACTS_IN","name":"Mumbles","type":"Role","_key":"106858","_from":"9223","_to":"62996"} +{"$label":"ACTS_IN","name":"Jasper Tooms","type":"Role","_key":"44991","_from":"9223","_to":"29895"} +{"$label":"ACTS_IN","name":"Dr. Bernard Wachs","type":"Role","_key":"22711","_from":"9223","_to":"16474"} +{"$label":"ACTS_IN","name":"Col. Sharki","type":"Role","_key":"72320","_from":"9228","_to":"43680"} +{"$label":"ACTS_IN","name":"Luke Plummer","type":"Role","_key":"11771","_from":"9237","_to":"9231"} +{"$label":"ACTS_IN","name":"Henry Gatewood","type":"Role","_key":"11769","_from":"9236","_to":"9231"} +{"$label":"ACTS_IN","name":"Samuel Peacock","type":"Role","_key":"11768","_from":"9235","_to":"9231"} +{"$label":"ACTS_IN","name":"Lucy Mallory","type":"Role","_key":"11766","_from":"9234","_to":"9231"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"11763","_from":"9233","_to":"9231"} +{"$label":"ACTS_IN","name":"Dallas","type":"Role","_key":"11761","_from":"9232","_to":"9231"} +{"$label":"ACTS_IN","name":"Jo Keller","type":"Role","_key":"114204","_from":"9232","_to":"67273"} +{"$label":"ACTS_IN","name":"May Holst","type":"Role","_key":"113846","_from":"9232","_to":"67061"} +{"$label":"ACTS_IN","name":"Gaye Dawn","type":"Role","_key":"67308","_from":"9232","_to":"41491"} +{"$label":"ACTS_IN","name":"Mrs. Grayle alias Velma","type":"Role","_key":"15837","_from":"9232","_to":"12050"} +{"$label":"ACTS_IN","name":"Cookie Bullfincher","type":"Role","_key":"117549","_from":"9233","_to":"69113"} +{"$label":"ACTS_IN","name":"Cookie Bullfincher \/ Alf Bullfincher","type":"Role","_key":"116944","_from":"9233","_to":"68836"} +{"$label":"ACTS_IN","name":"friar tuck","type":"Role","_key":"72549","_from":"9233","_to":"43753"} +{"$label":"ACTS_IN","name":"Sheriff of Crockett County","type":"Role","_key":"70811","_from":"9233","_to":"43041"} +{"$label":"ACTS_IN","name":"Dr. Whacker","type":"Role","_key":"110432","_from":"9235","_to":"65236"} +{"$label":"ACTS_IN","name":"Willie Crump","type":"Role","_key":"101001","_from":"9235","_to":"59522"} +{"$label":"ACTS_IN","name":"Jonathan N. Gillis","type":"Role","_key":"28942","_from":"9235","_to":"20676"} +{"$label":"ACTS_IN","name":"Joe Peters","type":"Role","_key":"11781","_from":"9245","_to":"9238"} +{"$label":"ACTS_IN","name":"Sam Garlopis","type":"Role","_key":"11780","_from":"9244","_to":"9238"} +{"$label":"ACTS_IN","name":"Mr. Dietrichson","type":"Role","_key":"11779","_from":"9243","_to":"9238"} +{"$label":"ACTS_IN","name":"Lola Dietrichson","type":"Role","_key":"11778","_from":"9242","_to":"9238"} +{"$label":"ACTS_IN","name":"Edward S. Norton, Jr.","type":"Role","_key":"11777","_from":"9241","_to":"9238"} +{"$label":"ACTS_IN","name":"Mr. Jackson","type":"Role","_key":"11776","_from":"9240","_to":"9238"} +{"$label":"ACTS_IN","name":"Phyllis Dietrichson","type":"Role","_key":"11774","_from":"9239","_to":"9238"} +{"$label":"ACTS_IN","name":"Julia Sturges","type":"Role","_key":"109410","_from":"9239","_to":"64642"} +{"$label":"ACTS_IN","name":"Jessica Drummond","type":"Role","_key":"101981","_from":"9239","_to":"60010"} +{"$label":"ACTS_IN","name":"Elizabeth Lane","type":"Role","_key":"95788","_from":"9239","_to":"56341"} +{"$label":"ACTS_IN","name":"(in \"Sorry - Wrong Number\") (archive footage)","type":"Role","_key":"53871","_from":"9239","_to":"34691"} +{"$label":"ACTS_IN","name":"Jean Harrington","type":"Role","_key":"25640","_from":"9239","_to":"18462"} +{"$label":"ACTS_IN","name":"Maggie Morgan","type":"Role","_key":"18251","_from":"9239","_to":"13541"} +{"$label":"ACTS_IN","name":"Kathy Ferguson","type":"Role","_key":"16605","_from":"9239","_to":"12545"} +{"$label":"ACTS_IN","name":"Jason Maple","type":"Role","_key":"110944","_from":"9240","_to":"65529"} +{"$label":"ACTS_IN","name":"Mr. Hadrian","type":"Role","_key":"108583","_from":"9240","_to":"64167"} +{"$label":"ACTS_IN","name":"Herbert MacCaulay","type":"Role","_key":"27676","_from":"9240","_to":"19823"} +{"$label":"ACTS_IN","name":"Reporter Murphy","type":"Role","_key":"25624","_from":"9240","_to":"18451"} +{"$label":"ACTS_IN","name":"Sen. Monroe","type":"Role","_key":"25590","_from":"9240","_to":"18430"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"117866","_from":"9241","_to":"69289"} +{"$label":"ACTS_IN","name":"Courbet","type":"Role","_key":"49281","_from":"9244","_to":"32271"} +{"$label":"ACTS_IN","name":"Pop Benson","type":"Role","_key":"28198","_from":"9245","_to":"20193"} +{"$label":"ACTS_IN","name":"Jimmy Katz","type":"Role","_key":"11792","_from":"9253","_to":"9247"} +{"$label":"ACTS_IN","name":"Cynthia Jenzen","type":"Role","_key":"11791","_from":"9252","_to":"9247"} +{"$label":"ACTS_IN","name":"Detective Neal Domgaard","type":"Role","_key":"11790","_from":"9251","_to":"9247"} +{"$label":"ACTS_IN","name":"Lorraine Kesher","type":"Role","_key":"11789","_from":"9250","_to":"9247"} +{"$label":"ACTS_IN","name":"Catherine Lenoix","type":"Role","_key":"11785","_from":"9249","_to":"9247"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"11784","_from":"9248","_to":"9247"} +{"$label":"ACTS_IN","name":"\"The Sophisticated Lady\"","type":"Role","_key":"109185","_from":"9248","_to":"64505"} +{"$label":"ACTS_IN","name":"Cathryn","type":"Role","_key":"66804","_from":"9248","_to":"41269"} +{"$label":"ACTS_IN","name":"Livia Saint","type":"Role","_key":"46006","_from":"9248","_to":"30406"} +{"$label":"ACTS_IN","name":"Sara Noriega","type":"Role","_key":"44509","_from":"9248","_to":"29642"} +{"$label":"ACTS_IN","name":"Hilda Manny","type":"Role","_key":"106422","_from":"9249","_to":"62696"} +{"$label":"ACTS_IN","name":"Karen Tunny","type":"Role","_key":"66276","_from":"9250","_to":"40999"} +{"$label":"ACTS_IN","name":"Tish","type":"Role","_key":"46277","_from":"9250","_to":"30589"} +{"$label":"ACTS_IN","name":"Sheriff Cecil Coleman","type":"Role","_key":"67794","_from":"9251","_to":"41672"} +{"$label":"ACTS_IN","name":"Lou Chambers","type":"Role","_key":"61800","_from":"9251","_to":"38904"} +{"$label":"ACTS_IN","name":"Plume","type":"Role","_key":"58657","_from":"9251","_to":"37053"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"104563","_from":"9252","_to":"61507"} +{"$label":"ACTS_IN","name":"Leah Cahan","type":"Role","_key":"104132","_from":"9252","_to":"61261"} +{"$label":"ACTS_IN","name":"Simon Kurtz","type":"Role","_key":"22574","_from":"9253","_to":"16390"} +{"$label":"ACTS_IN","name":"Poul","type":"Role","_key":"11802","_from":"9259","_to":"9254"} +{"$label":"ACTS_IN","name":"Khalid","type":"Role","_key":"11801","_from":"9258","_to":"9254"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"11800","_from":"9257","_to":"9254"} +{"$label":"ACTS_IN","name":"Dr. Kolberg","type":"Role","_key":"11798","_from":"9256","_to":"9254"} +{"$label":"DIRECTED","_key":"11794","_from":"9255","_to":"9254"} +{"$label":"DIRECTED","_key":"61481","_from":"9255","_to":"38782"} +{"$label":"DIRECTED","_key":"35230","_from":"9255","_to":"23998"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"106068","_from":"9256","_to":"62460"} +{"$label":"ACTS_IN","name":"Alfred J\u00e6ger","type":"Role","_key":"61489","_from":"9256","_to":"38782"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"35237","_from":"9256","_to":"23998"} +{"$label":"ACTS_IN","name":"Mikael Feldt","type":"Role","_key":"119637","_from":"9257","_to":"70275"} +{"$label":"ACTS_IN","name":"Anker","type":"Role","_key":"106498","_from":"9257","_to":"62740"} +{"$label":"ACTS_IN","name":"Henrik Moll","type":"Role","_key":"106487","_from":"9257","_to":"62738"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"106067","_from":"9257","_to":"62460"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"68473","_from":"9257","_to":"42002"} +{"$label":"ACTS_IN","name":"Morfar","type":"Role","_key":"36279","_from":"9257","_to":"24611"} +{"$label":"ACTS_IN","name":"Mulle","type":"Role","_key":"35404","_from":"9257","_to":"24090"} +{"$label":"ACTS_IN","name":"Hus Hans","type":"Role","_key":"35234","_from":"9257","_to":"23998"} +{"$label":"ACTS_IN","name":"Jamil Ahmadinejad","type":"Role","_key":"106675","_from":"9258","_to":"62863"} +{"$label":"ACTS_IN","name":"Frits Gro\u00dfvater","type":"Role","_key":"15881","_from":"9259","_to":"12080"} +{"$label":"ACTS_IN","name":"Dr. Bennett","type":"Role","_key":"11810","_from":"9265","_to":"9260"} +{"$label":"ACTS_IN","name":"Hilda Hulme","type":"Role","_key":"11808","_from":"9264","_to":"9260"} +{"$label":"ACTS_IN","name":"Herbert Rieper","type":"Role","_key":"11807","_from":"9263","_to":"9260"} +{"$label":"ACTS_IN","name":"Honorah Parker Rieper","type":"Role","_key":"11806","_from":"9262","_to":"9260"} +{"$label":"ACTS_IN","name":"Pauline Parker Rieper","type":"Role","_key":"11804","_from":"9261","_to":"9260"} +{"$label":"ACTS_IN","name":"Sheryl","type":"Role","_key":"102801","_from":"9261","_to":"60471"} +{"$label":"ACTS_IN","name":"Rachel 'Sister' Wheaton","type":"Role","_key":"102638","_from":"9261","_to":"60385"} +{"$label":"ACTS_IN","name":"Amy Brand","type":"Role","_key":"95103","_from":"9261","_to":"55970"} +{"$label":"ACTS_IN","name":"Colleen","type":"Role","_key":"91795","_from":"9261","_to":"54152"} +{"$label":"ACTS_IN","name":"Ginger Whitacre","type":"Role","_key":"69132","_from":"9261","_to":"42292"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"65732","_from":"9261","_to":"40696"} +{"$label":"ACTS_IN","name":"Beth Bumsteen","type":"Role","_key":"56679","_from":"9261","_to":"35999"} +{"$label":"ACTS_IN","name":"Jacqueline De Ghent","type":"Role","_key":"53967","_from":"9261","_to":"34718"} +{"$label":"ACTS_IN","name":"Pauline Harnois","type":"Role","_key":"28502","_from":"9261","_to":"20373"} +{"$label":"ACTS_IN","name":"Ganders","type":"Role","_key":"11819","_from":"9273","_to":"9266"} +{"$label":"ACTS_IN","name":"Rosalind","type":"Role","_key":"11818","_from":"9272","_to":"9266"} +{"$label":"ACTS_IN","name":"Alte Nane","type":"Role","_key":"11817","_from":"9271","_to":"9266"} +{"$label":"ACTS_IN","name":"Danninger","type":"Role","_key":"11816","_from":"9270","_to":"9266"} +{"$label":"ACTS_IN","name":"Emmy","type":"Role","_key":"11813","_from":"9269","_to":"9266"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"11812","_from":"9268","_to":"9266"} +{"$label":"DIRECTED","_key":"11811","_from":"9267","_to":"9266"} +{"$label":"DIRECTED","_key":"47397","_from":"9267","_to":"31223"} +{"$label":"DIRECTED","_key":"15047","_from":"9267","_to":"11571"} +{"$label":"DIRECTED","_key":"15030","_from":"9267","_to":"11560"} +{"$label":"ACTS_IN","name":"Willy Angerer","type":"Role","_key":"109223","_from":"9268","_to":"64531"} +{"$label":"ACTS_IN","name":"Speedy","type":"Role","_key":"64776","_from":"9268","_to":"40312"} +{"$label":"ACTS_IN","name":"Berti","type":"Role","_key":"63504","_from":"9268","_to":"39761"} +{"$label":"ACTS_IN","name":"Berti","type":"Role","_key":"51982","_from":"9268","_to":"33897"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"30400","_from":"9268","_to":"21376"} +{"$label":"ACTS_IN","name":"Friseuse","type":"Role","_key":"63475","_from":"9269","_to":"39747"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"44038","_from":"9269","_to":"29369"} +{"$label":"ACTS_IN","name":"Annelie","type":"Role","_key":"43489","_from":"9269","_to":"29044"} +{"$label":"ACTS_IN","name":"Erika Mann","type":"Role","_key":"20010","_from":"9269","_to":"14724"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"13796","_from":"9269","_to":"10704"} +{"$label":"ACTS_IN","name":"Tante Mietzel","type":"Role","_key":"91058","_from":"9271","_to":"53726"} +{"$label":"ACTS_IN","name":"Weihnachtsmann","type":"Role","_key":"40869","_from":"9273","_to":"27503"} +{"$label":"ACTS_IN","name":"Conte Cavriaghi","type":"Role","_key":"11830","_from":"9281","_to":"9274"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"11829","_from":"9280","_to":"9274"} +{"$label":"ACTS_IN","name":"Caterina","type":"Role","_key":"11828","_from":"9279","_to":"9274"} +{"$label":"ACTS_IN","name":"Don Ciccio Tumeo","type":"Role","_key":"11826","_from":"9278","_to":"9274"} +{"$label":"ACTS_IN","name":"Maria Stella Salina","type":"Role","_key":"11825","_from":"9277","_to":"9274"} +{"$label":"ACTS_IN","name":"Tancredi Falconeri","type":"Role","_key":"11822","_from":"9276","_to":"9274"} +{"$label":"DIRECTED","_key":"11820","_from":"9275","_to":"9274"} +{"$label":"DIRECTED","_key":"49615","_from":"9275","_to":"32475"} +{"$label":"DIRECTED","_key":"44338","_from":"9275","_to":"29549"} +{"$label":"DIRECTED","_key":"36167","_from":"9275","_to":"24537"} +{"$label":"DIRECTED","_key":"30788","_from":"9275","_to":"21588"} +{"$label":"DIRECTED","_key":"27329","_from":"9275","_to":"19647"} +{"$label":"ACTS_IN","name":"Don Diego \/ El Zorro","type":"Role","_key":"116253","_from":"9276","_to":"68442"} +{"$label":"ACTS_IN","name":"Guillaume de Saint Preux","type":"Role","_key":"90132","_from":"9276","_to":"53300"} +{"$label":"ACTS_IN","name":"Gauche","type":"Role","_key":"72313","_from":"9276","_to":"43679"} +{"$label":"ACTS_IN","name":"Corey","type":"Role","_key":"71341","_from":"9276","_to":"43272"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"69598","_from":"9276","_to":"42489"} +{"$label":"ACTS_IN","name":"Tom Ripley \/ Philippe Greenleaf","type":"Role","_key":"62809","_from":"9276","_to":"39474"} +{"$label":"ACTS_IN","name":"Rocco Parondi","type":"Role","_key":"49616","_from":"9276","_to":"32475"} +{"$label":"ACTS_IN","name":"Pierre Larcher","type":"Role","_key":"42078","_from":"9276","_to":"28196"} +{"$label":"ACTS_IN","name":"Devilers","type":"Role","_key":"37985","_from":"9276","_to":"25718"} +{"$label":"ACTS_IN","name":"Jef Costello","type":"Role","_key":"37597","_from":"9276","_to":"25485"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"35115","_from":"9276","_to":"23944"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"35038","_from":"9276","_to":"23906"} +{"$label":"ACTS_IN","name":"Dino Barran","type":"Role","_key":"34409","_from":"9276","_to":"23581"} +{"$label":"ACTS_IN","name":"Jacques Chaban-Delmas","type":"Role","_key":"33553","_from":"9276","_to":"23204"} +{"$label":"ACTS_IN","name":"Frank Jackson","type":"Role","_key":"33479","_from":"9276","_to":"23163"} +{"$label":"ACTS_IN","name":"Gino Strabliggi","type":"Role","_key":"33330","_from":"9276","_to":"23092"} +{"$label":"ACTS_IN","name":"Roger Startet","type":"Role","_key":"30312","_from":"9276","_to":"21319"} +{"$label":"ACTS_IN","name":"Julus C\u00e4sar","type":"Role","_key":"20979","_from":"9276","_to":"15344"} +{"$label":"ACTS_IN","name":"Foche","type":"Role","_key":"20723","_from":"9276","_to":"15149"} +{"$label":"ACTS_IN","name":"Tullio's mother","type":"Role","_key":"30793","_from":"9277","_to":"21588"} +{"$label":"ACTS_IN","name":"der Pilot","type":"Role","_key":"69600","_from":"9278","_to":"42489"} +{"$label":"ACTS_IN","name":"le chef de la r\u00e9sistance","type":"Role","_key":"33763","_from":"9278","_to":"23279"} +{"$label":"ACTS_IN","name":"Enjolras","type":"Role","_key":"31539","_from":"9278","_to":"22027"} +{"$label":"ACTS_IN","name":"Contessina Ortensia Pulido","type":"Role","_key":"116254","_from":"9279","_to":"68442"} +{"$label":"ACTS_IN","name":"Mado","type":"Role","_key":"27115","_from":"9279","_to":"19519"} +{"$label":"ACTS_IN","name":"Stefanella","type":"Role","_key":"24878","_from":"9279","_to":"17986"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"116677","_from":"9280","_to":"68687"} +{"$label":"ACTS_IN","name":"Arizona Colt","type":"Role","_key":"98883","_from":"9280","_to":"58268"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"71050","_from":"9280","_to":"43146"} +{"$label":"ACTS_IN","name":"Ben Bellew","type":"Role","_key":"28606","_from":"9280","_to":"20446"} +{"$label":"ACTS_IN","name":"Richard Forsythe","type":"Role","_key":"119195","_from":"9281","_to":"70039"} +{"$label":"ACTS_IN","name":"Cat Stevens","type":"Role","_key":"90071","_from":"9281","_to":"53274"} +{"$label":"ACTS_IN","name":"Cat Stevens","type":"Role","_key":"72496","_from":"9281","_to":"43738"} +{"$label":"ACTS_IN","name":"Trinit\u00e0","type":"Role","_key":"72244","_from":"9281","_to":"43650"} +{"$label":"ACTS_IN","name":"Matt Kirby","type":"Role","_key":"71583","_from":"9281","_to":"43360"} +{"$label":"ACTS_IN","name":"Father \/ Padre J.","type":"Role","_key":"71529","_from":"9281","_to":"43342"} +{"$label":"ACTS_IN","name":"Rosco Frazer alias Steinberg","type":"Role","_key":"71069","_from":"9281","_to":"43154"} +{"$label":"ACTS_IN","name":"Don Camillo","type":"Role","_key":"70513","_from":"9281","_to":"42924"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"70174","_from":"9281","_to":"42774"} +{"$label":"ACTS_IN","name":"Johnny Firpo","type":"Role","_key":"69437","_from":"9281","_to":"42437"} +{"$label":"ACTS_IN","name":"Dave Speed","type":"Role","_key":"69191","_from":"9281","_to":"42317"} +{"$label":"ACTS_IN","name":"Lucky Luke","type":"Role","_key":"68330","_from":"9281","_to":"41940"} +{"$label":"ACTS_IN","name":"Joe Thanks","type":"Role","_key":"66692","_from":"9281","_to":"41205"} +{"$label":"ACTS_IN","name":"Doug Bennett \/ Officer Jay Donell","type":"Role","_key":"62434","_from":"9281","_to":"39331"} +{"$label":"ACTS_IN","name":"Nobody","type":"Role","_key":"54087","_from":"9281","_to":"34779"} +{"$label":"ACTS_IN","name":"Trinity","type":"Role","_key":"53581","_from":"9281","_to":"34582"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"52877","_from":"9281","_to":"34274"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"52153","_from":"9281","_to":"33992"} +{"$label":"ACTS_IN","name":"Eliot Vance","type":"Role","_key":"50931","_from":"9281","_to":"33241"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"45128","_from":"9281","_to":"29948"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"43266","_from":"9281","_to":"28899"} +{"$label":"ACTS_IN","name":"Giselher","type":"Role","_key":"38035","_from":"9281","_to":"25742"} +{"$label":"ACTS_IN","name":"Giselher","type":"Role","_key":"38018","_from":"9281","_to":"25728"} +{"$label":"ACTS_IN","name":"Marco Manin","type":"Role","_key":"31392","_from":"9281","_to":"21940"} +{"$label":"ACTS_IN","name":"Lt. Merrill","type":"Role","_key":"28529","_from":"9281","_to":"20392"} +{"$label":"ACTS_IN","name":"Plata","type":"Role","_key":"15233","_from":"9281","_to":"11665"} +{"$label":"DIRECTED","_key":"70517","_from":"9281","_to":"42924"} +{"$label":"DIRECTED","_key":"68335","_from":"9281","_to":"41940"} +{"$label":"DIRECTED","_key":"52882","_from":"9281","_to":"34274"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"11840","_from":"9286","_to":"9282"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"11839","_from":"9285","_to":"9282"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"11838","_from":"9284","_to":"9282"} +{"$label":"DIRECTED","_key":"11831","_from":"9283","_to":"9282"} +{"$label":"DIRECTED","_key":"53721","_from":"9283","_to":"34637"} +{"$label":"DIRECTED","_key":"53225","_from":"9283","_to":"34423"} +{"$label":"DIRECTED","_key":"15919","_from":"9283","_to":"12114"} +{"$label":"DIRECTED","_key":"15109","_from":"9283","_to":"11600"} +{"$label":"ACTS_IN","name":"Feng Shun","type":"Role","_key":"11852","_from":"9295","_to":"9287"} +{"$label":"ACTS_IN","name":"Li Ding","type":"Role","_key":"11851","_from":"9294","_to":"9287"} +{"$label":"ACTS_IN","name":"Hu Bei Bei","type":"Role","_key":"11850","_from":"9293","_to":"9287"} +{"$label":"ACTS_IN","name":"He Bing","type":"Role","_key":"11849","_from":"9292","_to":"9287"} +{"$label":"ACTS_IN","name":"Er Ming","type":"Role","_key":"11848","_from":"9291","_to":"9287"} +{"$label":"ACTS_IN","name":"Da Ming","type":"Role","_key":"11847","_from":"9290","_to":"9287"} +{"$label":"ACTS_IN","name":"Meister Liu","type":"Role","_key":"11846","_from":"9289","_to":"9287"} +{"$label":"DIRECTED","_key":"11845","_from":"9288","_to":"9287"} +{"$label":"ACTS_IN","name":"Angie Boca","type":"Role","_key":"11862","_from":"9302","_to":"9296"} +{"$label":"ACTS_IN","name":"Joel Weinstock","type":"Role","_key":"11861","_from":"9301","_to":"9296"} +{"$label":"ACTS_IN","name":"Bill Mulderig","type":"Role","_key":"11860","_from":"9300","_to":"9296"} +{"$label":"ACTS_IN","name":"Pierre Nicoli","type":"Role","_key":"11858","_from":"9299","_to":"9296"} +{"$label":"ACTS_IN","name":"Salvatora \"Sal\" Boca","type":"Role","_key":"11857","_from":"9298","_to":"9296"} +{"$label":"DIRECTED","_key":"11853","_from":"9297","_to":"9296"} +{"$label":"DIRECTED","_key":"121234","_from":"9297","_to":"71215"} +{"$label":"DIRECTED","_key":"90059","_from":"9297","_to":"53263"} +{"$label":"DIRECTED","_key":"88761","_from":"9297","_to":"52604"} +{"$label":"DIRECTED","_key":"72446","_from":"9297","_to":"43723"} +{"$label":"DIRECTED","_key":"64725","_from":"9297","_to":"40298"} +{"$label":"DIRECTED","_key":"63571","_from":"9297","_to":"39782"} +{"$label":"DIRECTED","_key":"57459","_from":"9297","_to":"36419"} +{"$label":"DIRECTED","_key":"54641","_from":"9297","_to":"34989"} +{"$label":"ACTS_IN","name":"Raymond Fernandez","type":"Role","_key":"61867","_from":"9298","_to":"38939"} +{"$label":"ACTS_IN","name":"Quintilius","type":"Role","_key":"21136","_from":"9298","_to":"15473"} +{"$label":"ACTS_IN","name":"Joe Rinaldi","type":"Role","_key":"15425","_from":"9298","_to":"11790"} +{"$label":"ACTS_IN","name":"Broca","type":"Role","_key":"71560","_from":"9299","_to":"43352"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"71410","_from":"9299","_to":"43302"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"40686","_from":"9299","_to":"27383"} +{"$label":"ACTS_IN","name":"Vago","type":"Role","_key":"23052","_from":"9299","_to":"16714"} +{"$label":"ACTS_IN","name":"Mime","type":"Role","_key":"11873","_from":"9313","_to":"9303"} +{"$label":"ACTS_IN","name":"Mime","type":"Role","_key":"11872","_from":"9312","_to":"9303"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"11871","_from":"9311","_to":"9303"} +{"$label":"ACTS_IN","name":"The Brunette","type":"Role","_key":"11870","_from":"9310","_to":"9303"} +{"$label":"ACTS_IN","name":"The Blonde","type":"Role","_key":"11869","_from":"9309","_to":"9303"} +{"$label":"ACTS_IN","name":"Verushka","type":"Role","_key":"11868","_from":"9308","_to":"9303"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"11867","_from":"9307","_to":"9303"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"11866","_from":"9306","_to":"9303"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"11864","_from":"9305","_to":"9303"} +{"$label":"DIRECTED","_key":"11863","_from":"9304","_to":"9303"} +{"$label":"DIRECTED","_key":"55297","_from":"9304","_to":"35259"} +{"$label":"DIRECTED","_key":"36191","_from":"9304","_to":"24558"} +{"$label":"DIRECTED","_key":"24840","_from":"9304","_to":"17967"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"101754","_from":"9305","_to":"59884"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"59084","_from":"9305","_to":"37302"} +{"$label":"ACTS_IN","name":"Dildano","type":"Role","_key":"48053","_from":"9305","_to":"31592"} +{"$label":"ACTS_IN","name":"Mr. Schermerhorn","type":"Role","_key":"26228","_from":"9305","_to":"18837"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"25261","_from":"9305","_to":"18218"} +{"$label":"ACTS_IN","name":"Patricia Rawnsley","type":"Role","_key":"62671","_from":"9306","_to":"39416"} +{"$label":"ACTS_IN","name":"Charlotte Sternwood","type":"Role","_key":"15707","_from":"9306","_to":"11975"} +{"$label":"ACTS_IN","name":"Geoffrey","type":"Role","_key":"118375","_from":"9307","_to":"69592"} +{"$label":"ACTS_IN","name":"Paul McDaggett","type":"Role","_key":"37802","_from":"9307","_to":"25628"} +{"$label":"ACTS_IN","name":"Hygelac ( voice )","type":"Role","_key":"37375","_from":"9307","_to":"25326"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"90701","_from":"9309","_to":"53543"} +{"$label":"ACTS_IN","name":"La vedette f\u00e9minine","type":"Role","_key":"50753","_from":"9309","_to":"33125"} +{"$label":"ACTS_IN","name":"herself \/ Christine Redfern","type":"Role","_key":"41630","_from":"9309","_to":"27947"} +{"$label":"ACTS_IN","name":"Louise Bourget","type":"Role","_key":"41596","_from":"9309","_to":"27940"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"35040","_from":"9309","_to":"23906"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"32857","_from":"9309","_to":"22810"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"32778","_from":"9309","_to":"22761"} +{"$label":"ACTS_IN","name":"Christine Redfern","type":"Role","_key":"29990","_from":"9309","_to":"21171"} +{"$label":"ACTS_IN","name":"Louise Bourget","type":"Role","_key":"29980","_from":"9309","_to":"21170"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"29940","_from":"9309","_to":"21159"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"23765","_from":"9309","_to":"17230"} +{"$label":"ACTS_IN","name":"Aloa","type":"Role","_key":"44120","_from":"9310","_to":"29415"} +{"$label":"ACTS_IN","name":"Hanley","type":"Role","_key":"107884","_from":"9311","_to":"63712"} +{"$label":"ACTS_IN","name":"Miles Urquhart","type":"Role","_key":"51096","_from":"9311","_to":"33334"} +{"$label":"ACTS_IN","name":"Enright","type":"Role","_key":"11880","_from":"9320","_to":"9314"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"11879","_from":"9319","_to":"9314"} +{"$label":"ACTS_IN","name":"Parmental","type":"Role","_key":"11878","_from":"9318","_to":"9314"} +{"$label":"ACTS_IN","name":"Birnbaum","type":"Role","_key":"11877","_from":"9317","_to":"9314"} +{"$label":"ACTS_IN","name":"Monica Poiccard","type":"Role","_key":"11876","_from":"9316","_to":"9314"} +{"$label":"DIRECTED","_key":"11874","_from":"9315","_to":"9314"} +{"$label":"DIRECTED","_key":"70031","_from":"9315","_to":"42703"} +{"$label":"DIRECTED","_key":"67403","_from":"9315","_to":"41521"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"17751","_from":"9316","_to":"13242"} +{"$label":"ACTS_IN","name":"Gen. Taylor","type":"Role","_key":"118654","_from":"9318","_to":"69763"} +{"$label":"ACTS_IN","name":"'Buzz' Bronski","type":"Role","_key":"102474","_from":"9318","_to":"60297"} +{"$label":"ACTS_IN","name":"Johnnie Marzzone","type":"Role","_key":"53007","_from":"9318","_to":"34330"} +{"$label":"ACTS_IN","name":"Flagler","type":"Role","_key":"37732","_from":"9318","_to":"25589"} +{"$label":"ACTS_IN","name":"Hardcore","type":"Role","_key":"35389","_from":"9318","_to":"24083"} +{"$label":"ACTS_IN","name":"Princess Yuki","type":"Role","_key":"11886","_from":"9322","_to":"9321"} +{"$label":"ACTS_IN","name":"Brady Lang","type":"Role","_key":"11893","_from":"9326","_to":"9323"} +{"$label":"ACTS_IN","name":"FBI Agent Whit Carver","type":"Role","_key":"11892","_from":"9325","_to":"9323"} +{"$label":"ACTS_IN","name":"Brooke Wolfe","type":"Role","_key":"11891","_from":"9324","_to":"9323"} +{"$label":"ACTS_IN","name":"Kristin","type":"Role","_key":"106265","_from":"9324","_to":"62597"} +{"$label":"ACTS_IN","name":"Ellen Bunting","type":"Role","_key":"102951","_from":"9324","_to":"60559"} +{"$label":"ACTS_IN","name":"Sarah \/ Susan \/ Sierra","type":"Role","_key":"91948","_from":"9324","_to":"54244"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"89339","_from":"9324","_to":"52880"} +{"$label":"ACTS_IN","name":"Elizabeth 'Liz' Garfield","type":"Role","_key":"69080","_from":"9324","_to":"42274"} +{"$label":"ACTS_IN","name":"Andrea Tate","type":"Role","_key":"57788","_from":"9324","_to":"36578"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"56625","_from":"9324","_to":"35969"} +{"$label":"ACTS_IN","name":"Slim Keith","type":"Role","_key":"55448","_from":"9324","_to":"35334"} +{"$label":"ACTS_IN","name":"Carolyn 'Bean' Wright","type":"Role","_key":"54380","_from":"9324","_to":"34876"} +{"$label":"ACTS_IN","name":"Marilyn Bartlett","type":"Role","_key":"50395","_from":"9324","_to":"32925"} +{"$label":"ACTS_IN","name":"Noreen","type":"Role","_key":"45383","_from":"9324","_to":"30092"} +{"$label":"ACTS_IN","name":"Jeannie Schmidt","type":"Role","_key":"23289","_from":"9324","_to":"16888"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"120601","_from":"9325","_to":"70829"} +{"$label":"ACTS_IN","name":"Dennis Mitchell","type":"Role","_key":"88250","_from":"9326","_to":"52352"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"11905","_from":"9337","_to":"9327"} +{"$label":"ACTS_IN","name":"Grga Veliki","type":"Role","_key":"11904","_from":"9336","_to":"9327"} +{"$label":"ACTS_IN","name":"Grga Pitic","type":"Role","_key":"11903","_from":"9335","_to":"9327"} +{"$label":"ACTS_IN","name":"Sujka","type":"Role","_key":"11902","_from":"9334","_to":"9327"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"11901","_from":"9333","_to":"9327"} +{"$label":"ACTS_IN","name":"Zare Destanov","type":"Role","_key":"11900","_from":"9332","_to":"9327"} +{"$label":"ACTS_IN","name":"Zarije Destanov","type":"Role","_key":"11899","_from":"9331","_to":"9327"} +{"$label":"ACTS_IN","name":"Dadan Karambolo","type":"Role","_key":"11898","_from":"9330","_to":"9327"} +{"$label":"ACTS_IN","name":"Matko Destanov","type":"Role","_key":"11897","_from":"9329","_to":"9327"} +{"$label":"DIRECTED","_key":"11896","_from":"9328","_to":"9327"} +{"$label":"DIRECTED","_key":"72665","_from":"9328","_to":"43790"} +{"$label":"DIRECTED","_key":"67529","_from":"9328","_to":"41579"} +{"$label":"DIRECTED","_key":"51418","_from":"9328","_to":"33545"} +{"$label":"DIRECTED","_key":"48646","_from":"9328","_to":"31909"} +{"$label":"ACTS_IN","name":"Kiza","type":"Role","_key":"103926","_from":"9330","_to":"61129"} +{"$label":"ACTS_IN","name":"Krieger","type":"Role","_key":"69468","_from":"9330","_to":"42444"} +{"$label":"ACTS_IN","name":"Katya","type":"Role","_key":"102534","_from":"9333","_to":"60324"} +{"$label":"ACTS_IN","name":"Jagoda","type":"Role","_key":"69467","_from":"9333","_to":"42444"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"28654","_from":"9333","_to":"20478"} +{"$label":"ACTS_IN","name":"Nerio Winch","type":"Role","_key":"100045","_from":"9337","_to":"59019"} +{"$label":"ACTS_IN","name":"Marko","type":"Role","_key":"72661","_from":"9337","_to":"43790"} +{"$label":"ACTS_IN","name":"Boss","type":"Role","_key":"48650","_from":"9337","_to":"31909"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"39997","_from":"9337","_to":"27012"} +{"$label":"ACTS_IN","name":"Josko","type":"Role","_key":"32805","_from":"9337","_to":"22779"} +{"$label":"ACTS_IN","name":"Kosta Antic","type":"Role","_key":"31122","_from":"9337","_to":"21783"} +{"$label":"ACTS_IN","name":"Miki","type":"Role","_key":"16628","_from":"9337","_to":"12559"} +{"$label":"ACTS_IN","name":"Miss Parata","type":"Role","_key":"11918","_from":"9349","_to":"9338"} +{"$label":"ACTS_IN","name":"Miro","type":"Role","_key":"11917","_from":"9348","_to":"9338"} +{"$label":"ACTS_IN","name":"Maka","type":"Role","_key":"11916","_from":"9347","_to":"9338"} +{"$label":"ACTS_IN","name":"Dog","type":"Role","_key":"11915","_from":"9346","_to":"9338"} +{"$label":"ACTS_IN","name":"Shilo","type":"Role","_key":"11913","_from":"9345","_to":"9338"} +{"$label":"ACTS_IN","name":"Hemi","type":"Role","_key":"11912","_from":"9344","_to":"9338"} +{"$label":"ACTS_IN","name":"Uncle Rawiri","type":"Role","_key":"11911","_from":"9343","_to":"9338"} +{"$label":"ACTS_IN","name":"Nanny Flowers","type":"Role","_key":"11909","_from":"9342","_to":"9338"} +{"$label":"ACTS_IN","name":"Koro","type":"Role","_key":"11908","_from":"9341","_to":"9338"} +{"$label":"ACTS_IN","name":"Paikea Apirana","type":"Role","_key":"11907","_from":"9340","_to":"9338"} +{"$label":"DIRECTED","_key":"11906","_from":"9339","_to":"9338"} +{"$label":"DIRECTED","_key":"55854","_from":"9339","_to":"35533"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"21440","_from":"9340","_to":"15682"} +{"$label":"ACTS_IN","name":"Pete Horn","type":"Role","_key":"117919","_from":"9341","_to":"69318"} +{"$label":"ACTS_IN","name":"Miss Seagar","type":"Role","_key":"12071","_from":"9342","_to":"9455"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"50694","_from":"9345","_to":"33093"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"28334","_from":"9346","_to":"20274"} +{"$label":"ACTS_IN","name":"15","type":"Role","_key":"11927","_from":"9353","_to":"9350"} +{"$label":"ACTS_IN","name":"Tone","type":"Role","_key":"11926","_from":"9352","_to":"9350"} +{"$label":"ACTS_IN","name":"Tyler Ann Endicott","type":"Role","_key":"11923","_from":"9351","_to":"9350"} +{"$label":"ACTS_IN","name":"Christine Jones","type":"Role","_key":"89731","_from":"9351","_to":"53116"} +{"$label":"ACTS_IN","name":"Kit Keller","type":"Role","_key":"68922","_from":"9351","_to":"42198"} +{"$label":"ACTS_IN","name":"Rebecca (Tank Girl)","type":"Role","_key":"52379","_from":"9351","_to":"34087"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"48944","_from":"9351","_to":"32087"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"21624","_from":"9351","_to":"15801"} +{"$label":"ACTS_IN","name":"Rae","type":"Role","_key":"14476","_from":"9351","_to":"11185"} +{"$label":"ACTS_IN","name":"Bellhop","type":"Role","_key":"11940","_from":"9362","_to":"9354"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"11938","_from":"9361","_to":"9354"} +{"$label":"ACTS_IN","name":"Jane's Lawyer","type":"Role","_key":"11937","_from":"9360","_to":"9354"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"11936","_from":"9359","_to":"9354"} +{"$label":"ACTS_IN","name":"Tom Jones","type":"Role","_key":"11935","_from":"9358","_to":"9354"} +{"$label":"ACTS_IN","name":"Detective Zev Bernstein","type":"Role","_key":"11934","_from":"9357","_to":"9354"} +{"$label":"ACTS_IN","name":"Jane Fuller\/Natasha Molinaro","type":"Role","_key":"11931","_from":"9356","_to":"9354"} +{"$label":"DIRECTED","_key":"11928","_from":"9355","_to":"9354"} +{"$label":"DIRECTED","_key":"97982","_from":"9355","_to":"57707"} +{"$label":"ACTS_IN","name":"Ella Brice","type":"Role","_key":"116626","_from":"9356","_to":"68650"} +{"$label":"ACTS_IN","name":"Bettie Page","type":"Role","_key":"104296","_from":"9356","_to":"61366"} +{"$label":"ACTS_IN","name":"Nora Henry","type":"Role","_key":"101729","_from":"9356","_to":"59874"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"61784","_from":"9356","_to":"38897"} +{"$label":"ACTS_IN","name":"Alice Evans","type":"Role","_key":"36267","_from":"9356","_to":"24605"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62100","_from":"9359","_to":"39107"} +{"$label":"ACTS_IN","name":"Virgil","type":"Role","_key":"116865","_from":"9360","_to":"68798"} +{"$label":"ACTS_IN","name":"Deputy Tate","type":"Role","_key":"102186","_from":"9360","_to":"60132"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"101035","_from":"9360","_to":"59542"} +{"$label":"ACTS_IN","name":"Paul Higa","type":"Role","_key":"56456","_from":"9360","_to":"35870"} +{"$label":"ACTS_IN","name":"Detective Boone","type":"Role","_key":"48337","_from":"9360","_to":"31735"} +{"$label":"ACTS_IN","name":"Master Sergeant Sykes","type":"Role","_key":"24363","_from":"9360","_to":"17630"} +{"$label":"ACTS_IN","name":"General West","type":"Role","_key":"18846","_from":"9360","_to":"13914"} +{"$label":"ACTS_IN","name":"John Billings","type":"Role","_key":"17612","_from":"9360","_to":"13147"} +{"$label":"ACTS_IN","name":"Windows","type":"Role","_key":"11953","_from":"9372","_to":"9363"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"11952","_from":"9371","_to":"9363"} +{"$label":"ACTS_IN","name":"Garry","type":"Role","_key":"11951","_from":"9370","_to":"9363"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"11950","_from":"9369","_to":"9363"} +{"$label":"ACTS_IN","name":"Bennings","type":"Role","_key":"11949","_from":"9368","_to":"9363"} +{"$label":"ACTS_IN","name":"Norris","type":"Role","_key":"11948","_from":"9367","_to":"9363"} +{"$label":"ACTS_IN","name":"Dr. Copper","type":"Role","_key":"11947","_from":"9366","_to":"9363"} +{"$label":"ACTS_IN","name":"Palmer","type":"Role","_key":"11945","_from":"9365","_to":"9363"} +{"$label":"ACTS_IN","name":"Nauls","type":"Role","_key":"11944","_from":"9364","_to":"9363"} +{"$label":"ACTS_IN","name":"Henry L. Stimson","type":"Role","_key":"110396","_from":"9366","_to":"65230"} +{"$label":"ACTS_IN","name":"Coy LaHood","type":"Role","_key":"51242","_from":"9366","_to":"33417"} +{"$label":"ACTS_IN","name":"Claude Estee","type":"Role","_key":"35986","_from":"9366","_to":"24437"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"70715","_from":"9367","_to":"43007"} +{"$label":"ACTS_IN","name":"Paul Dreyfus","type":"Role","_key":"55095","_from":"9367","_to":"35184"} +{"$label":"ACTS_IN","name":"Dr. McCurdy","type":"Role","_key":"18735","_from":"9367","_to":"13858"} +{"$label":"ACTS_IN","name":"Arthur Siegel","type":"Role","_key":"96918","_from":"9369","_to":"57008"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"91237","_from":"9369","_to":"53798"} +{"$label":"ACTS_IN","name":"Phil Sultenfuss","type":"Role","_key":"69099","_from":"9369","_to":"42283"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"63845","_from":"9369","_to":"39903"} +{"$label":"ACTS_IN","name":"Rutherford","type":"Role","_key":"53269","_from":"9369","_to":"34451"} +{"$label":"ACTS_IN","name":"Phillip Hooper","type":"Role","_key":"35385","_from":"9369","_to":"24080"} +{"$label":"ACTS_IN","name":"Phil Sultenfuss","type":"Role","_key":"29487","_from":"9369","_to":"20905"} +{"$label":"ACTS_IN","name":"Stanley Uris","type":"Role","_key":"22658","_from":"9369","_to":"16433"} +{"$label":"ACTS_IN","name":"George Davis","type":"Role","_key":"63052","_from":"9370","_to":"39566"} +{"$label":"ACTS_IN","name":"President Bennett","type":"Role","_key":"53163","_from":"9370","_to":"34396"} +{"$label":"ACTS_IN","name":"David Abbott","type":"Role","_key":"50433","_from":"9370","_to":"32946"} +{"$label":"ACTS_IN","name":"Harry Talbot","type":"Role","_key":"19811","_from":"9370","_to":"14622"} +{"$label":"ACTS_IN","name":"Smittie","type":"Role","_key":"18440","_from":"9372","_to":"13664"} +{"$label":"ACTS_IN","name":"'Baron' Kurtz","type":"Role","_key":"11966","_from":"9379","_to":"9373"} +{"$label":"ACTS_IN","name":"Anna's Landlady","type":"Role","_key":"11963","_from":"9378","_to":"9373"} +{"$label":"ACTS_IN","name":"Crabbin","type":"Role","_key":"11962","_from":"9377","_to":"9373"} +{"$label":"ACTS_IN","name":"Popescu","type":"Role","_key":"11961","_from":"9376","_to":"9373"} +{"$label":"ACTS_IN","name":"Anna Schmidt","type":"Role","_key":"11956","_from":"9375","_to":"9373"} +{"$label":"DIRECTED","_key":"11954","_from":"9374","_to":"9373"} +{"$label":"DIRECTED","_key":"114364","_from":"9374","_to":"67368"} +{"$label":"DIRECTED","_key":"24967","_from":"9374","_to":"18035"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"109079","_from":"9375","_to":"64448"} +{"$label":"ACTS_IN","name":"Miss Tanner","type":"Role","_key":"72692","_from":"9375","_to":"43802"} +{"$label":"ACTS_IN","name":"Contessa","type":"Role","_key":"37417","_from":"9375","_to":"25355"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32806","_from":"9375","_to":"22779"} +{"$label":"ACTS_IN","name":"Signora Pioppi","type":"Role","_key":"28832","_from":"9375","_to":"20607"} +{"$label":"ACTS_IN","name":"Colonel Hugh Pickering","type":"Role","_key":"67964","_from":"9377","_to":"41762"} +{"$label":"ACTS_IN","name":"Judge Arthur Cannon","type":"Role","_key":"34448","_from":"9377","_to":"23596"} +{"$label":"ACTS_IN","name":"Rabbi Famulus","type":"Role","_key":"24570","_from":"9379","_to":"17772"} +{"$label":"ACTS_IN","name":"Christian Subervie","type":"Role","_key":"11979","_from":"9391","_to":"9380"} +{"$label":"ACTS_IN","name":"Cherriers Assistent","type":"Role","_key":"11978","_from":"9390","_to":"9380"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"11977","_from":"9389","_to":"9380"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"11976","_from":"9388","_to":"9380"} +{"$label":"ACTS_IN","name":"Simon Carala","type":"Role","_key":"11975","_from":"9387","_to":"9380"} +{"$label":"ACTS_IN","name":"Madame Becker","type":"Role","_key":"11974","_from":"9386","_to":"9380"} +{"$label":"ACTS_IN","name":"Horst Becker","type":"Role","_key":"11973","_from":"9385","_to":"9380"} +{"$label":"ACTS_IN","name":"Le Commissaire Cherrier","type":"Role","_key":"11972","_from":"9384","_to":"9380"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"11971","_from":"9383","_to":"9380"} +{"$label":"ACTS_IN","name":"Julien Tavernier","type":"Role","_key":"11969","_from":"9382","_to":"9380"} +{"$label":"DIRECTED","_key":"11967","_from":"9381","_to":"9380"} +{"$label":"DIRECTED","_key":"72057","_from":"9381","_to":"43571"} +{"$label":"DIRECTED","_key":"67293","_from":"9381","_to":"41486"} +{"$label":"DIRECTED","_key":"22090","_from":"9381","_to":"16116"} +{"$label":"DIRECTED","_key":"22001","_from":"9381","_to":"16059"} +{"$label":"DIRECTED","_key":"21951","_from":"9381","_to":"16029"} +{"$label":"DIRECTED","_key":"15509","_from":"9381","_to":"11845"} +{"$label":"DIRECTED","_key":"15496","_from":"9381","_to":"11836"} +{"$label":"ACTS_IN","name":"Nuit d'or","type":"Role","_key":"89154","_from":"9382","_to":"52806"} +{"$label":"ACTS_IN","name":"Philippe Greenleaf","type":"Role","_key":"62810","_from":"9382","_to":"39474"} +{"$label":"ACTS_IN","name":"Victor Pegala","type":"Role","_key":"48838","_from":"9382","_to":"32023"} +{"$label":"ACTS_IN","name":"Robert Lucas","type":"Role","_key":"38221","_from":"9382","_to":"25818"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"35039","_from":"9382","_to":"23906"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"34079","_from":"9382","_to":"23415"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl de Lorris","type":"Role","_key":"33795","_from":"9382","_to":"23298"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"27072","_from":"9382","_to":"19487"} +{"$label":"ACTS_IN","name":"Charles Martin","type":"Role","_key":"24960","_from":"9382","_to":"18031"} +{"$label":"ACTS_IN","name":"French Lieutenant","type":"Role","_key":"24946","_from":"9382","_to":"18024"} +{"$label":"ACTS_IN","name":"Alain Leroy","type":"Role","_key":"22093","_from":"9382","_to":"16116"} +{"$label":"ACTS_IN","name":"Sagamore Noonan","type":"Role","_key":"114905","_from":"9384","_to":"67678"} +{"$label":"ACTS_IN","name":"S\u00e9bastien Grenier","type":"Role","_key":"104534","_from":"9384","_to":"61489"} +{"$label":"ACTS_IN","name":"Philippe Gerbier","type":"Role","_key":"104219","_from":"9384","_to":"61316"} +{"$label":"ACTS_IN","name":"Ralf Milan","type":"Role","_key":"71446","_from":"9384","_to":"43316"} +{"$label":"ACTS_IN","name":"Brunel","type":"Role","_key":"71112","_from":"9384","_to":"43170"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"69597","_from":"9384","_to":"42489"} +{"$label":"ACTS_IN","name":"Inspector Antoine Gallien","type":"Role","_key":"35741","_from":"9384","_to":"24291"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31610","_from":"9384","_to":"22071"} +{"$label":"ACTS_IN","name":"Inspecteur Le Goff","type":"Role","_key":"30313","_from":"9384","_to":"21319"} +{"$label":"ACTS_IN","name":"Franz Braun","type":"Role","_key":"24526","_from":"9385","_to":"17739"} +{"$label":"ACTS_IN","name":"Lisa Belgetti","type":"Role","_key":"40439","_from":"9386","_to":"27257"} +{"$label":"ACTS_IN","name":"Lorelei","type":"Role","_key":"32781","_from":"9386","_to":"22761"} +{"$label":"ACTS_IN","name":"l'artiste","type":"Role","_key":"89122","_from":"9388","_to":"52794"} +{"$label":"ACTS_IN","name":"Feuilly","type":"Role","_key":"31548","_from":"9388","_to":"22027"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"33381","_from":"9390","_to":"23107"} +{"$label":"ACTS_IN","name":"Graziani","type":"Role","_key":"31366","_from":"9390","_to":"21929"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"30927","_from":"9390","_to":"21670"} +{"$label":"ACTS_IN","name":"Traveller","type":"Role","_key":"30725","_from":"9390","_to":"21545"} +{"$label":"ACTS_IN","name":"Henri-D\u00e9sir\u00e9 Landru","type":"Role","_key":"30011","_from":"9390","_to":"21177"} +{"$label":"ACTS_IN","name":"Fergus","type":"Role","_key":"29961","_from":"9390","_to":"21166"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"29951","_from":"9390","_to":"21162"} +{"$label":"ACTS_IN","name":"Ministre des travaux public","type":"Role","_key":"29585","_from":"9390","_to":"20945"} +{"$label":"ACTS_IN","name":"Charles Denner","type":"Role","_key":"29504","_from":"9390","_to":"20909"} +{"$label":"ACTS_IN","name":"Walter, le d\u00e9tective","type":"Role","_key":"29431","_from":"9390","_to":"20878"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"23046","_from":"9390","_to":"16714"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Gillard","type":"Role","_key":"20922","_from":"9390","_to":"15307"} +{"$label":"ACTS_IN","name":"Bertrand Morane","type":"Role","_key":"13155","_from":"9390","_to":"10258"} +{"$label":"ACTS_IN","name":"Campana","type":"Role","_key":"34045","_from":"9391","_to":"23410"} +{"$label":"ACTS_IN","name":"Cronenberg","type":"Role","_key":"11990","_from":"9395","_to":"9392"} +{"$label":"ACTS_IN","name":"Romero","type":"Role","_key":"11989","_from":"9394","_to":"9392"} +{"$label":"ACTS_IN","name":"The Duke of New York","type":"Role","_key":"11985","_from":"9393","_to":"9392"} +{"$label":"ACTS_IN","name":"Hammer","type":"Role","_key":"110857","_from":"9393","_to":"65484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101319","_from":"9393","_to":"59645"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"100388","_from":"9393","_to":"59199"} +{"$label":"ACTS_IN","name":"Jed Crowley","type":"Role","_key":"55528","_from":"9393","_to":"35367"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"54082","_from":"9393","_to":"34778"} +{"$label":"ACTS_IN","name":"Asneeze","type":"Role","_key":"47715","_from":"9393","_to":"31431"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19797","_from":"9393","_to":"14615"} +{"$label":"ACTS_IN","name":"Zock","type":"Role","_key":"18779","_from":"9393","_to":"13886"} +{"$label":"ACTS_IN","name":"White Warlord","type":"Role","_key":"114075","_from":"9394","_to":"67170"} +{"$label":"ACTS_IN","name":"Motorradfahrer","type":"Role","_key":"12004","_from":"9410","_to":"9396"} +{"$label":"ACTS_IN","name":"Musiklehrerin","type":"Role","_key":"12003","_from":"9409","_to":"9396"} +{"$label":"ACTS_IN","name":"Tochter Guntee","type":"Role","_key":"12002","_from":"9408","_to":"9396"} +{"$label":"ACTS_IN","name":"J\u00fcngerer Bruder Ugna","type":"Role","_key":"12001","_from":"9407","_to":"9396"} +{"$label":"ACTS_IN","name":"\u00c4lterer Bruder Dude","type":"Role","_key":"12000","_from":"9406","_to":"9396"} +{"$label":"ACTS_IN","name":"Mutter Odgoo","type":"Role","_key":"11999","_from":"9405","_to":"9396"} +{"$label":"ACTS_IN","name":"Vater Ikchee","type":"Role","_key":"11998","_from":"9404","_to":"9396"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter Zevel","type":"Role","_key":"11997","_from":"9403","_to":"9396"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater Amgaa","type":"Role","_key":"11996","_from":"9402","_to":"9396"} +{"$label":"ACTS_IN","name":"Urgro\u00dfmutter Chimed","type":"Role","_key":"11995","_from":"9401","_to":"9396"} +{"$label":"ACTS_IN","name":"Urgro\u00dfvater Janchiv","type":"Role","_key":"11994","_from":"9400","_to":"9396"} +{"$label":"DIRECTED","_key":"11993","_from":"9399","_to":"9396"} +{"$label":"DIRECTED","_key":"11992","_from":"9398","_to":"9396"} +{"$label":"DIRECTED","_key":"11991","_from":"9397","_to":"9396"} +{"$label":"DIRECTED","_key":"12926","_from":"9397","_to":"10083"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"12017","_from":"9420","_to":"9411"} +{"$label":"ACTS_IN","name":"Agentin","type":"Role","_key":"12016","_from":"9419","_to":"9411"} +{"$label":"ACTS_IN","name":"Vorarbeiter","type":"Role","_key":"12015","_from":"9418","_to":"9411"} +{"$label":"ACTS_IN","name":"Mutter von Mathias","type":"Role","_key":"12014","_from":"9417","_to":"9411"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"12013","_from":"9416","_to":"9411"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"12011","_from":"9415","_to":"9411"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"12010","_from":"9414","_to":"9411"} +{"$label":"ACTS_IN","name":"Francoise","type":"Role","_key":"12009","_from":"9413","_to":"9411"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"12007","_from":"9412","_to":"9411"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"88112","_from":"9412","_to":"52292"} +{"$label":"ACTS_IN","name":"Nettie","type":"Role","_key":"59221","_from":"9412","_to":"37399"} +{"$label":"ACTS_IN","name":"Claudia Keller","type":"Role","_key":"43254","_from":"9412","_to":"28890"} +{"$label":"ACTS_IN","name":"Stelle","type":"Role","_key":"17021","_from":"9412","_to":"12770"} +{"$label":"ACTS_IN","name":"Madame","type":"Role","_key":"36090","_from":"9413","_to":"24488"} +{"$label":"ACTS_IN","name":"Gabrielle Danton","type":"Role","_key":"30214","_from":"9413","_to":"21284"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"29935","_from":"9413","_to":"21152"} +{"$label":"ACTS_IN","name":"Gudin","type":"Role","_key":"92017","_from":"9414","_to":"54290"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"46041","_from":"9414","_to":"30419"} +{"$label":"ACTS_IN","name":"Jacky","type":"Role","_key":"41555","_from":"9414","_to":"27909"} +{"$label":"ACTS_IN","name":"Anne Hoffmann","type":"Role","_key":"30133","_from":"9417","_to":"21234"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"67049","_from":"9418","_to":"41385"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"48431","_from":"9418","_to":"31785"} +{"$label":"ACTS_IN","name":"Hagenberg","type":"Role","_key":"39715","_from":"9418","_to":"26834"} +{"$label":"ACTS_IN","name":"Fernandez","type":"Role","_key":"17022","_from":"9418","_to":"12770"} +{"$label":"ACTS_IN","name":"Polizistin","type":"Role","_key":"91295","_from":"9419","_to":"53838"} +{"$label":"ACTS_IN","name":"Alena","type":"Role","_key":"13198","_from":"9419","_to":"10283"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"35533","_from":"9420","_to":"24156"} +{"$label":"ACTS_IN","name":"Black and Tan Soldier","type":"Role","_key":"12029","_from":"9431","_to":"9421"} +{"$label":"ACTS_IN","name":"Sinead","type":"Role","_key":"12028","_from":"9430","_to":"9421"} +{"$label":"ACTS_IN","name":"Sweeney","type":"Role","_key":"12027","_from":"9429","_to":"9421"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"12026","_from":"9428","_to":"9421"} +{"$label":"ACTS_IN","name":"Micheail","type":"Role","_key":"12025","_from":"9427","_to":"9421"} +{"$label":"ACTS_IN","name":"Gogan","type":"Role","_key":"12023","_from":"9426","_to":"9421"} +{"$label":"ACTS_IN","name":"Donnacha","type":"Role","_key":"12022","_from":"9425","_to":"9421"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"12021","_from":"9424","_to":"9421"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"12020","_from":"9423","_to":"9421"} +{"$label":"DIRECTED","_key":"12018","_from":"9422","_to":"9421"} +{"$label":"DIRECTED","_key":"117991","_from":"9422","_to":"69356"} +{"$label":"DIRECTED","_key":"94225","_from":"9422","_to":"55490"} +{"$label":"DIRECTED","_key":"48242","_from":"9422","_to":"31694"} +{"$label":"DIRECTED","_key":"47703","_from":"9422","_to":"31425"} +{"$label":"DIRECTED","_key":"18717","_from":"9422","_to":"13855"} +{"$label":"DIRECTED","_key":"18638","_from":"9422","_to":"13787"} +{"$label":"DIRECTED","_key":"16695","_from":"9422","_to":"12595"} +{"$label":"DIRECTED","_key":"12972","_from":"9422","_to":"10118"} +{"$label":"DIRECTED","_key":"12795","_from":"9422","_to":"9985"} +{"$label":"ACTS_IN","name":"Capt. Crewe \/ Prince Rama","type":"Role","_key":"118704","_from":"9424","_to":"69800"} +{"$label":"ACTS_IN","name":"Brodie","type":"Role","_key":"102077","_from":"9424","_to":"60052"} +{"$label":"ACTS_IN","name":"Capt. Ryan","type":"Role","_key":"72525","_from":"9424","_to":"43746"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"62793","_from":"9424","_to":"39464"} +{"$label":"ACTS_IN","name":"Pinball","type":"Role","_key":"12798","_from":"9426","_to":"9985"} +{"$label":"ACTS_IN","name":"Nazi Soldier 1","type":"Role","_key":"52040","_from":"9431","_to":"33922"} +{"$label":"ACTS_IN","name":"Mama Dorothy","type":"Role","_key":"12042","_from":"9442","_to":"9432"} +{"$label":"ACTS_IN","name":"Marie Vos","type":"Role","_key":"12041","_from":"9441","_to":"9432"} +{"$label":"ACTS_IN","name":"Katie Vos","type":"Role","_key":"12040","_from":"9440","_to":"9432"} +{"$label":"ACTS_IN","name":"Johnny Piliso","type":"Role","_key":"12039","_from":"9439","_to":"9432"} +{"$label":"ACTS_IN","name":"Anna Vos","type":"Role","_key":"12038","_from":"9438","_to":"9432"} +{"$label":"ACTS_IN","name":"Sixpence","type":"Role","_key":"12036","_from":"9437","_to":"9432"} +{"$label":"ACTS_IN","name":"Obadi","type":"Role","_key":"12035","_from":"9436","_to":"9432"} +{"$label":"ACTS_IN","name":"Zuko September","type":"Role","_key":"12034","_from":"9435","_to":"9432"} +{"$label":"ACTS_IN","name":"Precious Chamusso","type":"Role","_key":"12033","_from":"9434","_to":"9432"} +{"$label":"ACTS_IN","name":"Patrick Chamusso","type":"Role","_key":"12032","_from":"9433","_to":"9432"} +{"$label":"ACTS_IN","name":"Joshua Hardaway","type":"Role","_key":"105377","_from":"9433","_to":"61998"} +{"$label":"ACTS_IN","name":"Sean 'Puffy' Combs","type":"Role","_key":"100102","_from":"9433","_to":"59044"} +{"$label":"ACTS_IN","name":"Antwone Quenton 'Fish' Fisher","type":"Role","_key":"94463","_from":"9433","_to":"55632"} +{"$label":"ACTS_IN","name":"Boobie Miles","type":"Role","_key":"94402","_from":"9433","_to":"55583"} +{"$label":"ACTS_IN","name":"Sergeant Aubrey Stamps","type":"Role","_key":"89351","_from":"9433","_to":"52887"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"89058","_from":"9433","_to":"52762"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"68299","_from":"9433","_to":"41929"} +{"$label":"ACTS_IN","name":"Bobby Joe Hill","type":"Role","_key":"58046","_from":"9433","_to":"36729"} +{"$label":"ACTS_IN","name":"Russell McCormack","type":"Role","_key":"49489","_from":"9433","_to":"32398"} +{"$label":"ACTS_IN","name":"Arian","type":"Role","_key":"32229","_from":"9433","_to":"22461"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"13717","_from":"9433","_to":"10650"} +{"$label":"ACTS_IN","name":"Sarah Borden","type":"Role","_key":"12051","_from":"9445","_to":"9443"} +{"$label":"ACTS_IN","name":"Julia Angier","type":"Role","_key":"12050","_from":"9444","_to":"9443"} +{"$label":"ACTS_IN","name":"Karen Sympathy","type":"Role","_key":"113738","_from":"9444","_to":"67025"} +{"$label":"ACTS_IN","name":"Pauline 'Paulie' Oster","type":"Role","_key":"113329","_from":"9444","_to":"66763"} +{"$label":"ACTS_IN","name":"Deirdre","type":"Role","_key":"106960","_from":"9444","_to":"63058"} +{"$label":"ACTS_IN","name":"Rachel Ashe Lynn","type":"Role","_key":"100060","_from":"9444","_to":"59023"} +{"$label":"ACTS_IN","name":"Lisa Garvey","type":"Role","_key":"97044","_from":"9444","_to":"57091"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"70893","_from":"9444","_to":"43076"} +{"$label":"ACTS_IN","name":"Nora Baker","type":"Role","_key":"67242","_from":"9444","_to":"41460"} +{"$label":"ACTS_IN","name":"Willow Summerfield","type":"Role","_key":"60130","_from":"9444","_to":"37937"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"52234","_from":"9444","_to":"34021"} +{"$label":"ACTS_IN","name":"Violet Sanford","type":"Role","_key":"42823","_from":"9444","_to":"28637"} +{"$label":"ACTS_IN","name":"Princess Luma","type":"Role","_key":"37499","_from":"9444","_to":"25416"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"13670","_from":"9444","_to":"10618"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"12295","_from":"9444","_to":"9628"} +{"$label":"ACTS_IN","name":"Winnie Eddington","type":"Role","_key":"102915","_from":"9445","_to":"60541"} +{"$label":"ACTS_IN","name":"Rebecca Epstein","type":"Role","_key":"98320","_from":"9445","_to":"57908"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"35594","_from":"9445","_to":"24189"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"12063","_from":"9454","_to":"9446"} +{"$label":"ACTS_IN","name":"Magic","type":"Role","_key":"12062","_from":"9453","_to":"9446"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"12061","_from":"9452","_to":"9446"} +{"$label":"ACTS_IN","name":"Michelle Morris","type":"Role","_key":"12060","_from":"9451","_to":"9446"} +{"$label":"ACTS_IN","name":"Effie White","type":"Role","_key":"12059","_from":"9450","_to":"9446"} +{"$label":"ACTS_IN","name":"C.C. White","type":"Role","_key":"12058","_from":"9449","_to":"9446"} +{"$label":"ACTS_IN","name":"Lorrell Robinson","type":"Role","_key":"12057","_from":"9448","_to":"9446"} +{"$label":"DIRECTED","_key":"12052","_from":"9447","_to":"9446"} +{"$label":"DIRECTED","_key":"68394","_from":"9447","_to":"41964"} +{"$label":"DIRECTED","_key":"66013","_from":"9447","_to":"40846"} +{"$label":"DIRECTED","_key":"25136","_from":"9447","_to":"18160"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26582","_from":"9447","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26288","_from":"9447","_to":"18873"} +{"$label":"ACTS_IN","name":"Grace Makutsi","type":"Role","_key":"115466","_from":"9448","_to":"67984"} +{"$label":"ACTS_IN","name":"R'ch'lle","type":"Role","_key":"106414","_from":"9448","_to":"62695"} +{"$label":"ACTS_IN","name":"Tiana","type":"Role","_key":"61646","_from":"9448","_to":"38843"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"102924","_from":"9449","_to":"60545"} +{"$label":"ACTS_IN","name":"Kathy Archenault","type":"Role","_key":"106782","_from":"9450","_to":"62951"} +{"$label":"ACTS_IN","name":"Rosaleen Daise","type":"Role","_key":"91811","_from":"9450","_to":"54159"} +{"$label":"ACTS_IN","name":"Louise, Carrie's assistant","type":"Role","_key":"32730","_from":"9450","_to":"22725"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"111506","_from":"9451","_to":"65841"} +{"$label":"ACTS_IN","name":"Angela Dixon","type":"Role","_key":"102706","_from":"9451","_to":"60424"} +{"$label":"ACTS_IN","name":"Cleo","type":"Role","_key":"101312","_from":"9451","_to":"59645"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"12074","_from":"9464","_to":"9455"} +{"$label":"ACTS_IN","name":"Andrew as Teenager","type":"Role","_key":"12073","_from":"9463","_to":"9455"} +{"$label":"ACTS_IN","name":"Paul as Teenager","type":"Role","_key":"12072","_from":"9462","_to":"9455"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"12070","_from":"9461","_to":"9455"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"12069","_from":"9460","_to":"9455"} +{"$label":"ACTS_IN","name":"Andrew Prior","type":"Role","_key":"12068","_from":"9459","_to":"9455"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"12066","_from":"9458","_to":"9455"} +{"$label":"ACTS_IN","name":"Paul Prior","type":"Role","_key":"12065","_from":"9457","_to":"9455"} +{"$label":"DIRECTED","_key":"12064","_from":"9456","_to":"9455"} +{"$label":"ACTS_IN","name":"Terrance","type":"Role","_key":"105542","_from":"9457","_to":"62107"} +{"$label":"ACTS_IN","name":"Nigel","type":"Role","_key":"97853","_from":"9457","_to":"57638"} +{"$label":"ACTS_IN","name":"Mr. Darcy","type":"Role","_key":"31075","_from":"9457","_to":"21757"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"19091","_from":"9457","_to":"14109"} +{"$label":"ACTS_IN","name":"Katrina Skinner","type":"Role","_key":"97637","_from":"9458","_to":"57493"} +{"$label":"ACTS_IN","name":"Langer","type":"Role","_key":"108873","_from":"9459","_to":"64343"} +{"$label":"ACTS_IN","name":"Elbie","type":"Role","_key":"119184","_from":"9462","_to":"70033"} +{"$label":"DIRECTED","_key":"12090","_from":"9478","_to":"9465"} +{"$label":"ACTS_IN","name":"Due\u00f1o Bar","type":"Role","_key":"12089","_from":"9477","_to":"9465"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"12086","_from":"9476","_to":"9465"} +{"$label":"ACTS_IN","name":"Funcionario","type":"Role","_key":"12085","_from":"9475","_to":"9465"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"12084","_from":"9474","_to":"9465"} +{"$label":"ACTS_IN","name":"Mamen","type":"Role","_key":"12083","_from":"9473","_to":"9465"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"12082","_from":"9472","_to":"9465"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"12081","_from":"9471","_to":"9465"} +{"$label":"ACTS_IN","name":"\u00c1ngela","type":"Role","_key":"12080","_from":"9470","_to":"9465"} +{"$label":"ACTS_IN","name":"Caren","type":"Role","_key":"12079","_from":"9469","_to":"9465"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"12078","_from":"9468","_to":"9465"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"12077","_from":"9467","_to":"9465"} +{"$label":"ACTS_IN","name":"Zulema","type":"Role","_key":"12076","_from":"9466","_to":"9465"} +{"$label":"ACTS_IN","name":"Woman in Window","type":"Role","_key":"22486","_from":"9467","_to":"16343"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"119066","_from":"9468","_to":"69983"} +{"$label":"ACTS_IN","name":"Gruska","type":"Role","_key":"105343","_from":"9472","_to":"61982"} +{"$label":"ACTS_IN","name":"Comisario Campoy","type":"Role","_key":"54511","_from":"9477","_to":"34933"} +{"$label":"ACTS_IN","name":"Reina","type":"Role","_key":"12907","_from":"9477","_to":"10068"} +{"$label":"ACTS_IN","name":"Salas","type":"Role","_key":"12526","_from":"9477","_to":"9808"} +{"$label":"DIRECTED","_key":"12914","_from":"9478","_to":"10068"} +{"$label":"ACTS_IN","name":"The Ulam tribe - Mikr","type":"Role","_key":"12095","_from":"9481","_to":"9479"} +{"$label":"ACTS_IN","name":"Gaw","type":"Role","_key":"12094","_from":"9480","_to":"9479"} +{"$label":"ACTS_IN","name":"Aunt Ev","type":"Role","_key":"12101","_from":"9487","_to":"9482"} +{"$label":"ACTS_IN","name":"James Keller","type":"Role","_key":"12100","_from":"9486","_to":"9482"} +{"$label":"ACTS_IN","name":"Kate Keller","type":"Role","_key":"12099","_from":"9485","_to":"9482"} +{"$label":"ACTS_IN","name":"Captain Arthur Keller","type":"Role","_key":"12098","_from":"9484","_to":"9482"} +{"$label":"ACTS_IN","name":"Annie Sullivan","type":"Role","_key":"12097","_from":"9483","_to":"9482"} +{"$label":"ACTS_IN","name":"Edna Edison","type":"Role","_key":"119271","_from":"9483","_to":"70080"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"113298","_from":"9483","_to":"66745"} +{"$label":"ACTS_IN","name":"Helene Hanff","type":"Role","_key":"105424","_from":"9483","_to":"62026"} +{"$label":"ACTS_IN","name":"Bea Singer","type":"Role","_key":"90013","_from":"9483","_to":"53250"} +{"$label":"ACTS_IN","name":"Glady Joe Cleary","type":"Role","_key":"72433","_from":"9483","_to":"43720"} +{"$label":"ACTS_IN","name":"Gloria Vogal","type":"Role","_key":"66062","_from":"9483","_to":"40881"} +{"$label":"ACTS_IN","name":"Ms. Nora Dinsmoor","type":"Role","_key":"53700","_from":"9483","_to":"34631"} +{"$label":"ACTS_IN","name":"Adele Larson","type":"Role","_key":"52494","_from":"9483","_to":"34146"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"51486","_from":"9483","_to":"33574"} +{"$label":"ACTS_IN","name":"Ma Beckoff","type":"Role","_key":"49940","_from":"9483","_to":"32693"} +{"$label":"ACTS_IN","name":"Ruth Schram","type":"Role","_key":"35206","_from":"9483","_to":"23984"} +{"$label":"ACTS_IN","name":"Corinna Marston","type":"Role","_key":"34976","_from":"9483","_to":"23877"} +{"$label":"ACTS_IN","name":"Senator Lillian DeHaven","type":"Role","_key":"31663","_from":"9483","_to":"22099"} +{"$label":"ACTS_IN","name":"Maria Magdalena","type":"Role","_key":"21130","_from":"9483","_to":"15473"} +{"$label":"ACTS_IN","name":"Mrs. Kennsinger","type":"Role","_key":"19640","_from":"9483","_to":"14529"} +{"$label":"ACTS_IN","name":"Mrs. Kendal","type":"Role","_key":"16952","_from":"9483","_to":"12729"} +{"$label":"ACTS_IN","name":"H\u00e4uptling der Indios","type":"Role","_key":"40465","_from":"9484","_to":"27261"} +{"$label":"ACTS_IN","name":"Father Tom","type":"Role","_key":"108235","_from":"9486","_to":"63963"} +{"$label":"ACTS_IN","name":"Farm Boss","type":"Role","_key":"12109","_from":"9494","_to":"9488"} +{"$label":"ACTS_IN","name":"Kate Keller","type":"Role","_key":"12108","_from":"9493","_to":"9488"} +{"$label":"ACTS_IN","name":"Captain Keller","type":"Role","_key":"12106","_from":"9492","_to":"9488"} +{"$label":"ACTS_IN","name":"Anne Sullivan","type":"Role","_key":"12105","_from":"9491","_to":"9488"} +{"$label":"ACTS_IN","name":"Helen Keller","type":"Role","_key":"12104","_from":"9490","_to":"9488"} +{"$label":"DIRECTED","_key":"12103","_from":"9489","_to":"9488"} +{"$label":"DIRECTED","_key":"118588","_from":"9489","_to":"69729"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"45464","_from":"9490","_to":"30120"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"65364","_from":"9491","_to":"40550"} +{"$label":"ACTS_IN","name":"Estes Kefauver","type":"Role","_key":"104300","_from":"9492","_to":"61366"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"99296","_from":"9492","_to":"58511"} +{"$label":"ACTS_IN","name":"Henry R. Hocknell Jr.","type":"Role","_key":"97123","_from":"9492","_to":"57136"} +{"$label":"ACTS_IN","name":"Tony Pine","type":"Role","_key":"96050","_from":"9492","_to":"56457"} +{"$label":"ACTS_IN","name":"Dr. Melvin Frank","type":"Role","_key":"95276","_from":"9492","_to":"56056"} +{"$label":"ACTS_IN","name":"Ira Lowenstein","type":"Role","_key":"68924","_from":"9492","_to":"42198"} +{"$label":"ACTS_IN","name":"President Dedmon","type":"Role","_key":"68308","_from":"9492","_to":"41931"} +{"$label":"ACTS_IN","name":"Mack Laflin","type":"Role","_key":"64494","_from":"9492","_to":"40183"} +{"$label":"ACTS_IN","name":"Tom Hartman","type":"Role","_key":"51852","_from":"9492","_to":"33833"} +{"$label":"ACTS_IN","name":"Arthur Spiderwick","type":"Role","_key":"48394","_from":"9492","_to":"31764"} +{"$label":"ACTS_IN","name":"DA Joe Lobruto","type":"Role","_key":"41943","_from":"9492","_to":"28107"} +{"$label":"ACTS_IN","name":"Edward R. Murrow","type":"Role","_key":"26763","_from":"9492","_to":"19236"} +{"$label":"ACTS_IN","name":"Noah Vosen","type":"Role","_key":"21733","_from":"9492","_to":"15873"} +{"$label":"ACTS_IN","name":"Whistler","type":"Role","_key":"20397","_from":"9492","_to":"14934"} +{"$label":"ACTS_IN","name":"Pierce Patchett","type":"Role","_key":"18475","_from":"9492","_to":"13688"} +{"$label":"ACTS_IN","name":"Arnie","type":"Role","_key":"17223","_from":"9492","_to":"12902"} +{"$label":"ACTS_IN","name":"Asteroid","type":"Role","_key":"15429","_from":"9492","_to":"11790"} +{"$label":"ACTS_IN","name":"Samantha Goodman","type":"Role","_key":"114757","_from":"9493","_to":"67595"} +{"$label":"ACTS_IN","name":"Detective Kenji","type":"Role","_key":"12141","_from":"9521","_to":"9495"} +{"$label":"ACTS_IN","name":"Zohra","type":"Role","_key":"12140","_from":"9520","_to":"9495"} +{"$label":"ACTS_IN","name":"Dentist","type":"Role","_key":"12139","_from":"9519","_to":"9495"} +{"$label":"ACTS_IN","name":"Kumiko","type":"Role","_key":"12138","_from":"9518","_to":"9495"} +{"$label":"ACTS_IN","name":"Mitsu","type":"Role","_key":"12137","_from":"9517","_to":"9495"} +{"$label":"ACTS_IN","name":"Yasujiro","type":"Role","_key":"12136","_from":"9516","_to":"9495"} +{"$label":"ACTS_IN","name":"Bill - Border Patrol","type":"Role","_key":"12134","_from":"9515","_to":"9495"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"12132","_from":"9514","_to":"9495"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"12131","_from":"9513","_to":"9495"} +{"$label":"ACTS_IN","name":"Hassan's Wife","type":"Role","_key":"12130","_from":"9512","_to":"9495"} +{"$label":"ACTS_IN","name":"Hassan","type":"Role","_key":"12129","_from":"9511","_to":"9495"} +{"$label":"ACTS_IN","name":"Abdullah","type":"Role","_key":"12128","_from":"9510","_to":"9495"} +{"$label":"ACTS_IN","name":"Ahmed","type":"Role","_key":"12127","_from":"9509","_to":"9495"} +{"$label":"ACTS_IN","name":"Yussef","type":"Role","_key":"12126","_from":"9508","_to":"9495"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"12125","_from":"9507","_to":"9495"} +{"$label":"ACTS_IN","name":"Barth","type":"Role","_key":"12124","_from":"9506","_to":"9495"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"12123","_from":"9505","_to":"9495"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"12122","_from":"9504","_to":"9495"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"12121","_from":"9503","_to":"9495"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"12120","_from":"9502","_to":"9495"} +{"$label":"ACTS_IN","name":"Elyse","type":"Role","_key":"12119","_from":"9501","_to":"9495"} +{"$label":"ACTS_IN","name":"Douglas","type":"Role","_key":"12118","_from":"9500","_to":"9495"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"12117","_from":"9499","_to":"9495"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"12116","_from":"9498","_to":"9495"} +{"$label":"ACTS_IN","name":"Anwar","type":"Role","_key":"12115","_from":"9497","_to":"9495"} +{"$label":"ACTS_IN","name":"Cheiko","type":"Role","_key":"12113","_from":"9496","_to":"9495"} +{"$label":"ACTS_IN","name":"Suito Kusanagi (voice)","type":"Role","_key":"106225","_from":"9496","_to":"62559"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103979","_from":"9496","_to":"61158"} +{"$label":"ACTS_IN","name":"Penelope Aylesbury","type":"Role","_key":"111071","_from":"9499","_to":"65605"} +{"$label":"ACTS_IN","name":"Mary Wollstonecraft","type":"Role","_key":"27000","_from":"9499","_to":"19414"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"15501","_from":"9499","_to":"11836"} +{"$label":"ACTS_IN","name":"Old Woman","type":"Role","_key":"14090","_from":"9501","_to":"10917"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"40690","_from":"9504","_to":"27383"} +{"$label":"ACTS_IN","name":"Feyrac","type":"Role","_key":"33802","_from":"9504","_to":"23298"} +{"$label":"ACTS_IN","name":"Neville Dupayne","type":"Role","_key":"113612","_from":"9505","_to":"66954"} +{"$label":"ACTS_IN","name":"Sandy Pabblem","type":"Role","_key":"12308","_from":"9505","_to":"9638"} +{"$label":"ACTS_IN","name":"Phoebe Lichten","type":"Role","_key":"118634","_from":"9513","_to":"69753"} +{"$label":"ACTS_IN","name":"Sweety Pie Thomas","type":"Role","_key":"114180","_from":"9513","_to":"67261"} +{"$label":"ACTS_IN","name":"Noelle","type":"Role","_key":"91949","_from":"9513","_to":"54244"} +{"$label":"ACTS_IN","name":"Emma Learner","type":"Role","_key":"51635","_from":"9513","_to":"33692"} +{"$label":"ACTS_IN","name":"Abbey","type":"Role","_key":"47194","_from":"9513","_to":"31106"} +{"$label":"ACTS_IN","name":"Daisy as a Child","type":"Role","_key":"34780","_from":"9513","_to":"23771"} +{"$label":"ACTS_IN","name":"Ruth Cole","type":"Role","_key":"16862","_from":"9513","_to":"12685"} +{"$label":"ACTS_IN","name":"Billy Drayton","type":"Role","_key":"40040","_from":"9514","_to":"27031"} +{"$label":"ACTS_IN","name":"Man in White Suit","type":"Role","_key":"72251","_from":"9516","_to":"43652"} +{"$label":"ACTS_IN","name":"Shohei Sugiyama","type":"Role","_key":"68739","_from":"9516","_to":"42117"} +{"$label":"ACTS_IN","name":"Nobu","type":"Role","_key":"16450","_from":"9516","_to":"12429"} +{"$label":"ACTS_IN","name":"Stephen Lamport","type":"Role","_key":"12152","_from":"9528","_to":"9522"} +{"$label":"ACTS_IN","name":"Prince Charles","type":"Role","_key":"12150","_from":"9527","_to":"9522"} +{"$label":"ACTS_IN","name":"Trevor Rees-Jones","type":"Role","_key":"12149","_from":"9526","_to":"9522"} +{"$label":"ACTS_IN","name":"Cherie Blair","type":"Role","_key":"12148","_from":"9525","_to":"9522"} +{"$label":"ACTS_IN","name":"HM The Queen Mother","type":"Role","_key":"12147","_from":"9524","_to":"9522"} +{"$label":"ACTS_IN","name":"HM Queen Elizabeth II","type":"Role","_key":"12144","_from":"9523","_to":"9522"} +{"$label":"ACTS_IN","name":"Macheeba","type":"Role","_key":"112278","_from":"9523","_to":"66298"} +{"$label":"ACTS_IN","name":"Cameron Lynne","type":"Role","_key":"110770","_from":"9523","_to":"65435"} +{"$label":"ACTS_IN","name":"Galina Ivanova","type":"Role","_key":"106942","_from":"9523","_to":"63051"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"101837","_from":"9523","_to":"59937"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"101756","_from":"9523","_to":"59884"} +{"$label":"ACTS_IN","name":"Queen Elizabeth I","type":"Role","_key":"72003","_from":"9523","_to":"43543"} +{"$label":"ACTS_IN","name":"Morgana","type":"Role","_key":"70425","_from":"9523","_to":"42880"} +{"$label":"ACTS_IN","name":"Queen Charlotte","type":"Role","_key":"69101","_from":"9523","_to":"42284"} +{"$label":"ACTS_IN","name":"Mother Fox","type":"Role","_key":"67989","_from":"9523","_to":"41779"} +{"$label":"ACTS_IN","name":"Eileen Hayes","type":"Role","_key":"65385","_from":"9523","_to":"40553"} +{"$label":"ACTS_IN","name":"Mrs. Eve Tingle","type":"Role","_key":"62697","_from":"9523","_to":"39424"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"58094","_from":"9523","_to":"36758"} +{"$label":"ACTS_IN","name":"Caesonia","type":"Role","_key":"53961","_from":"9523","_to":"34715"} +{"$label":"ACTS_IN","name":"Chris Harper","type":"Role","_key":"50519","_from":"9523","_to":"33000"} +{"$label":"ACTS_IN","name":"Deep Thought","type":"Role","_key":"46727","_from":"9523","_to":"30837"} +{"$label":"ACTS_IN","name":"Georgina Spica","type":"Role","_key":"46711","_from":"9523","_to":"30833"} +{"$label":"ACTS_IN","name":"Emily Appleton","type":"Role","_key":"44495","_from":"9523","_to":"29641"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"40721","_from":"9523","_to":"27400"} +{"$label":"ACTS_IN","name":"Mrs. Wilson","type":"Role","_key":"36859","_from":"9523","_to":"24998"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"32944","_from":"9523","_to":"22845"} +{"$label":"ACTS_IN","name":"Tanya Kirbuk","type":"Role","_key":"31712","_from":"9523","_to":"22131"} +{"$label":"ACTS_IN","name":"Alice Rage","type":"Role","_key":"27429","_from":"9523","_to":"19693"} +{"$label":"ACTS_IN","name":"Elioner Loredan","type":"Role","_key":"20279","_from":"9523","_to":"14864"} +{"$label":"ACTS_IN","name":"Headmistress","type":"Role","_key":"117093","_from":"9524","_to":"68900"} +{"$label":"ACTS_IN","name":"Sister Diana Murdoch","type":"Role","_key":"108491","_from":"9524","_to":"64127"} +{"$label":"ACTS_IN","name":"Peggy Tickell","type":"Role","_key":"96705","_from":"9525","_to":"56883"} +{"$label":"ACTS_IN","name":"Narcissa Malfoy","type":"Role","_key":"89524","_from":"9525","_to":"52992"} +{"$label":"ACTS_IN","name":"Casanova's Mother","type":"Role","_key":"55545","_from":"9525","_to":"35377"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"25440","_from":"9525","_to":"18349"} +{"$label":"ACTS_IN","name":"Captain Kell","type":"Role","_key":"110338","_from":"9527","_to":"65199"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"110089","_from":"9527","_to":"65055"} +{"$label":"ACTS_IN","name":"Sergei Diaghilev","type":"Role","_key":"23897","_from":"9527","_to":"17316"} +{"$label":"ACTS_IN","name":"Frees","type":"Role","_key":"16770","_from":"9528","_to":"12639"} +{"$label":"ACTS_IN","name":"Sergeant Baggio","type":"Role","_key":"12168","_from":"9535","_to":"9529"} +{"$label":"ACTS_IN","name":"Signora Buffi","type":"Role","_key":"12167","_from":"9534","_to":"9529"} +{"$label":"ACTS_IN","name":"Colonnello Verrecchia","type":"Role","_key":"12166","_from":"9533","_to":"9529"} +{"$label":"ACTS_IN","name":"Silvana","type":"Role","_key":"12165","_from":"9532","_to":"9529"} +{"$label":"ACTS_IN","name":"Fausto","type":"Role","_key":"12164","_from":"9531","_to":"9529"} +{"$label":"ACTS_IN","name":"Inspector Roverini","type":"Role","_key":"12161","_from":"9530","_to":"9529"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"119303","_from":"9530","_to":"70095"} +{"$label":"ACTS_IN","name":"Joystick","type":"Role","_key":"50722","_from":"9530","_to":"33108"} +{"$label":"ACTS_IN","name":"Bertuccio","type":"Role","_key":"32559","_from":"9530","_to":"22629"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"115386","_from":"9532","_to":"67943"} +{"$label":"ACTS_IN","name":"Viola","type":"Role","_key":"90835","_from":"9532","_to":"53597"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"64183","_from":"9532","_to":"40046"} +{"$label":"ACTS_IN","name":"Margarethe v. Oven","type":"Role","_key":"63118","_from":"9532","_to":"39591"} +{"$label":"ACTS_IN","name":"Naima","type":"Role","_key":"50724","_from":"9532","_to":"33108"} +{"$label":"ACTS_IN","name":"Fernanda","type":"Role","_key":"34257","_from":"9532","_to":"23511"} +{"$label":"ACTS_IN","name":"Annibale Merolle","type":"Role","_key":"111621","_from":"9533","_to":"65897"} +{"$label":"ACTS_IN","name":"Dr. Randazzo","type":"Role","_key":"91480","_from":"9533","_to":"53935"} +{"$label":"ACTS_IN","name":"Keith Richards","type":"Role","_key":"12174","_from":"9543","_to":"9537"} +{"$label":"ACTS_IN","name":"Mick Jagger","type":"Role","_key":"12173","_from":"9542","_to":"9537"} +{"$label":"ACTS_IN","name":"Dieter Bockhorn","type":"Role","_key":"12172","_from":"9541","_to":"9537"} +{"$label":"ACTS_IN","name":"Rainer Langhans","type":"Role","_key":"12171","_from":"9540","_to":"9537"} +{"$label":"ACTS_IN","name":"Uschi Obermaier","type":"Role","_key":"12170","_from":"9539","_to":"9537"} +{"$label":"DIRECTED","_key":"12169","_from":"9538","_to":"9537"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"103049","_from":"9539","_to":"60622"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"47531","_from":"9539","_to":"31322"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"65216","_from":"9540","_to":"40496"} +{"$label":"ACTS_IN","name":"Friedrich Schiller","type":"Role","_key":"63133","_from":"9540","_to":"39598"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"52950","_from":"9540","_to":"34308"} +{"$label":"ACTS_IN","name":"Baron Manfred von Richthofen","type":"Role","_key":"49231","_from":"9540","_to":"32251"} +{"$label":"ACTS_IN","name":"Moritz","type":"Role","_key":"41531","_from":"9540","_to":"27899"} +{"$label":"ACTS_IN","name":"Crash","type":"Role","_key":"27711","_from":"9540","_to":"19859"} +{"$label":"ACTS_IN","name":"SS-Soldat im Erschie\u00dfungskommando","type":"Role","_key":"19712","_from":"9540","_to":"14564"} +{"$label":"ACTS_IN","name":"Sandro","type":"Role","_key":"90563","_from":"9541","_to":"53490"} +{"$label":"ACTS_IN","name":"Kemal","type":"Role","_key":"64108","_from":"9541","_to":"40006"} +{"$label":"ACTS_IN","name":"Slavko","type":"Role","_key":"31472","_from":"9541","_to":"21972"} +{"$label":"ACTS_IN","name":"Victor Vogel","type":"Role","_key":"67639","_from":"9543","_to":"41625"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"19577","_from":"9543","_to":"14478"} +{"$label":"DIRECTED","_key":"12182","_from":"9547","_to":"9544"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"12181","_from":"9546","_to":"9544"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"12178","_from":"9545","_to":"9544"} +{"$label":"ACTS_IN","name":"Clark Kent \/ Kal-El \/ Superman","type":"Role","_key":"117410","_from":"9545","_to":"69059"} +{"$label":"ACTS_IN","name":"Clifford Anderson","type":"Role","_key":"113273","_from":"9545","_to":"66733"} +{"$label":"ACTS_IN","name":"Richard Collier","type":"Role","_key":"109679","_from":"9545","_to":"64780"} +{"$label":"ACTS_IN","name":"Dr. Alan Chaffee","type":"Role","_key":"88150","_from":"9545","_to":"52303"} +{"$label":"ACTS_IN","name":"Jason Kemp","type":"Role","_key":"71001","_from":"9545","_to":"43125"} +{"$label":"ACTS_IN","name":"Clark Kent","type":"Role","_key":"69683","_from":"9545","_to":"42544"} +{"$label":"ACTS_IN","name":"Superman \/ Clark Kent","type":"Role","_key":"54484","_from":"9545","_to":"34930"} +{"$label":"ACTS_IN","name":"Clark Kent \/ Superman","type":"Role","_key":"50115","_from":"9545","_to":"32783"} +{"$label":"ACTS_IN","name":"Superman","type":"Role","_key":"16657","_from":"9545","_to":"12577"} +{"$label":"DIRECTED","_key":"103619","_from":"9545","_to":"60944"} +{"$label":"ACTS_IN","name":"Keith Bergman","type":"Role","_key":"111428","_from":"9546","_to":"65795"} +{"$label":"ACTS_IN","name":"Trent","type":"Role","_key":"111064","_from":"9546","_to":"65605"} +{"$label":"ACTS_IN","name":"George Coulouris","type":"Role","_key":"89311","_from":"9546","_to":"52869"} +{"$label":"ACTS_IN","name":"Sam Kennedy","type":"Role","_key":"72584","_from":"9546","_to":"43767"} +{"$label":"ACTS_IN","name":"Peter Kelson","type":"Role","_key":"62918","_from":"9546","_to":"39521"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"51169","_from":"9546","_to":"33378"} +{"$label":"ACTS_IN","name":"Pvt. Bell","type":"Role","_key":"50632","_from":"9546","_to":"33066"} +{"$label":"ACTS_IN","name":"Lewis Mowbray","type":"Role","_key":"39615","_from":"9546","_to":"26777"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"18135","_from":"9546","_to":"13461"} +{"$label":"DIRECTED","_key":"117692","_from":"9547","_to":"69180"} +{"$label":"DIRECTED","_key":"68830","_from":"9547","_to":"42174"} +{"$label":"DIRECTED","_key":"54272","_from":"9547","_to":"34846"} +{"$label":"DIRECTED","_key":"48979","_from":"9547","_to":"32111"} +{"$label":"ACTS_IN","name":"Lucky's Bartender","type":"Role","_key":"12198","_from":"9561","_to":"9548"} +{"$label":"ACTS_IN","name":"Bar Thug","type":"Role","_key":"12197","_from":"9560","_to":"9548"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"12196","_from":"9559","_to":"9548"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"12195","_from":"9558","_to":"9548"} +{"$label":"ACTS_IN","name":"Spider Rico","type":"Role","_key":"12194","_from":"9557","_to":"9548"} +{"$label":"ACTS_IN","name":"Mason 'The Line' Dixon","type":"Role","_key":"12193","_from":"9556","_to":"9548"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"12192","_from":"9555","_to":"9548"} +{"$label":"ACTS_IN","name":"L.C.","type":"Role","_key":"12190","_from":"9554","_to":"9548"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"12189","_from":"9553","_to":"9548"} +{"$label":"ACTS_IN","name":"Steps","type":"Role","_key":"12188","_from":"9552","_to":"9548"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"12187","_from":"9551","_to":"9548"} +{"$label":"ACTS_IN","name":"Rocky Jr.","type":"Role","_key":"12186","_from":"9550","_to":"9548"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12184","_from":"9549","_to":"9548"} +{"$label":"DIRECTED","_key":"12183","_from":"9549","_to":"9548"} +{"$label":"ACTS_IN","name":"Frank Nitti","type":"Role","_key":"117212","_from":"9549","_to":"68951"} +{"$label":"ACTS_IN","name":"Captain Robert Hatch","type":"Role","_key":"112029","_from":"9549","_to":"66149"} +{"$label":"ACTS_IN","name":"Nick Martinelli","type":"Role","_key":"109480","_from":"9549","_to":"64671"} +{"$label":"ACTS_IN","name":"Dean 'The Dean' Stevens","type":"Role","_key":"100890","_from":"9549","_to":"59480"} +{"$label":"ACTS_IN","name":"Frankie Delano","type":"Role","_key":"94479","_from":"9549","_to":"55643"} +{"$label":"ACTS_IN","name":"Machine Gun Joe Viterbo","type":"Role","_key":"93699","_from":"9549","_to":"55160"} +{"$label":"ACTS_IN","name":"Toymaker","type":"Role","_key":"89191","_from":"9549","_to":"52822"} +{"$label":"ACTS_IN","name":"Angelo 'Snaps' Provolone","type":"Role","_key":"72572","_from":"9549","_to":"43762"} +{"$label":"ACTS_IN","name":"Kit Latura","type":"Role","_key":"68671","_from":"9549","_to":"42086"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"65804","_from":"9549","_to":"40722"} +{"$label":"ACTS_IN","name":"Joe Tanto","type":"Role","_key":"63560","_from":"9549","_to":"39780"} +{"$label":"ACTS_IN","name":"Jack Carter","type":"Role","_key":"63448","_from":"9549","_to":"39744"} +{"$label":"ACTS_IN","name":"Jake Malloy","type":"Role","_key":"62880","_from":"9549","_to":"39507"} +{"$label":"ACTS_IN","name":"Frank Leone","type":"Role","_key":"58756","_from":"9549","_to":"37115"} +{"$label":"ACTS_IN","name":"Sgt. Joe Bomowski","type":"Role","_key":"57538","_from":"9549","_to":"36453"} +{"$label":"ACTS_IN","name":"Lieutenant Marion 'Cobra' Cobretti","type":"Role","_key":"57523","_from":"9549","_to":"36449"} +{"$label":"ACTS_IN","name":"John Spartan","type":"Role","_key":"56211","_from":"9549","_to":"35723"} +{"$label":"ACTS_IN","name":"Robert Rath","type":"Role","_key":"55689","_from":"9549","_to":"35443"} +{"$label":"ACTS_IN","name":"Raymond 'Ray' Tango","type":"Role","_key":"55082","_from":"9549","_to":"35180"} +{"$label":"ACTS_IN","name":"Judge Joseph Dredd","type":"Role","_key":"54153","_from":"9549","_to":"34797"} +{"$label":"ACTS_IN","name":"Gabe Walker","type":"Role","_key":"53290","_from":"9549","_to":"34457"} +{"$label":"ACTS_IN","name":"Weaver (voice)","type":"Role","_key":"51494","_from":"9549","_to":"33574"} +{"$label":"ACTS_IN","name":"John Rambo","type":"Role","_key":"47233","_from":"9549","_to":"31128"} +{"$label":"ACTS_IN","name":"Stud","type":"Role","_key":"30545","_from":"9549","_to":"21477"} +{"$label":"ACTS_IN","name":"Ray Quick","type":"Role","_key":"22294","_from":"9549","_to":"16214"} +{"$label":"ACTS_IN","name":"Sheriff Freddy Heflin","type":"Role","_key":"18629","_from":"9549","_to":"13786"} +{"$label":"ACTS_IN","name":"Kelly genannt Jonnie","type":"Role","_key":"15853","_from":"9549","_to":"12058"} +{"$label":"ACTS_IN","name":"Lincoln Hawk","type":"Role","_key":"15768","_from":"9549","_to":"12013"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12779","_from":"9549","_to":"9974"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12763","_from":"9549","_to":"9966"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12715","_from":"9549","_to":"9935"} +{"$label":"ACTS_IN","name":"Rambo","type":"Role","_key":"12699","_from":"9549","_to":"9923"} +{"$label":"ACTS_IN","name":"John J. Rambo","type":"Role","_key":"12683","_from":"9549","_to":"9910"} +{"$label":"ACTS_IN","name":"John J. Rambo","type":"Role","_key":"12667","_from":"9549","_to":"9895"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12652","_from":"9549","_to":"9890"} +{"$label":"ACTS_IN","name":"Rocky Balboa","type":"Role","_key":"12636","_from":"9549","_to":"9878"} +{"$label":"DIRECTED","_key":"65910","_from":"9549","_to":"40772"} +{"$label":"DIRECTED","_key":"47232","_from":"9549","_to":"31128"} +{"$label":"DIRECTED","_key":"12762","_from":"9549","_to":"9966"} +{"$label":"DIRECTED","_key":"12714","_from":"9549","_to":"9935"} +{"$label":"DIRECTED","_key":"12651","_from":"9549","_to":"9890"} +{"$label":"ACTS_IN","name":"Rick Rape","type":"Role","_key":"116419","_from":"9550","_to":"68531"} +{"$label":"ACTS_IN","name":"Zach Harper","type":"Role","_key":"102791","_from":"9550","_to":"60470"} +{"$label":"ACTS_IN","name":"Matt Raymand","type":"Role","_key":"100202","_from":"9550","_to":"59100"} +{"$label":"ACTS_IN","name":"Ted Grey","type":"Role","_key":"88604","_from":"9550","_to":"52505"} +{"$label":"ACTS_IN","name":"Loomis Crowley","type":"Role","_key":"60207","_from":"9550","_to":"37980"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"59440","_from":"9550","_to":"37547"} +{"$label":"ACTS_IN","name":"Karen Kowalski","type":"Role","_key":"93514","_from":"9551","_to":"55058"} +{"$label":"ACTS_IN","name":"Wells","type":"Role","_key":"114066","_from":"9553","_to":"67170"} +{"$label":"ACTS_IN","name":"Sheriff Stoker","type":"Role","_key":"63302","_from":"9553","_to":"39679"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"12786","_from":"9553","_to":"9974"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"12768","_from":"9553","_to":"9966"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"12720","_from":"9553","_to":"9935"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"12657","_from":"9553","_to":"9890"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"12202","_from":"9563","_to":"9562"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"116713","_from":"9563","_to":"68705"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"90447","_from":"9563","_to":"53436"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"12216","_from":"9570","_to":"9564"} +{"$label":"ACTS_IN","name":"Father Lecter","type":"Role","_key":"12215","_from":"9569","_to":"9564"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"12214","_from":"9568","_to":"9564"} +{"$label":"ACTS_IN","name":"Hannibal Lecter","type":"Role","_key":"12213","_from":"9567","_to":"9564"} +{"$label":"ACTS_IN","name":"Hannibal (8 Years)","type":"Role","_key":"12212","_from":"9566","_to":"9564"} +{"$label":"DIRECTED","_key":"12211","_from":"9565","_to":"9564"} +{"$label":"DIRECTED","_key":"28393","_from":"9565","_to":"20310"} +{"$label":"DIRECTED","_key":"15494","_from":"9565","_to":"11835"} +{"$label":"ACTS_IN","name":"Anton Malakian","type":"Role","_key":"105253","_from":"9567","_to":"61942"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"50796","_from":"9567","_to":"33145"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"49718","_from":"9567","_to":"32530"} +{"$label":"ACTS_IN","name":"L\u00e9on","type":"Role","_key":"25889","_from":"9567","_to":"18633"} +{"$label":"ACTS_IN","name":"Manech","type":"Role","_key":"23881","_from":"9567","_to":"17312"} +{"$label":"ACTS_IN","name":"Gaspard (Le Marais)","type":"Role","_key":"19895","_from":"9567","_to":"14635"} +{"$label":"ACTS_IN","name":"Nicolas Trajet","type":"Role","_key":"15892","_from":"9567","_to":"12087"} +{"$label":"ACTS_IN","name":"Thomas Leaf","type":"Role","_key":"114885","_from":"9569","_to":"67663"} +{"$label":"ACTS_IN","name":"Gunman","type":"Role","_key":"41754","_from":"9569","_to":"28015"} +{"$label":"DIRECTED","_key":"12217","_from":"9572","_to":"9571"} +{"$label":"ACTS_IN","name":"Barton Blaze","type":"Role","_key":"12229","_from":"9577","_to":"9573"} +{"$label":"ACTS_IN","name":"Young Roxanne Simpson","type":"Role","_key":"12228","_from":"9576","_to":"9573"} +{"$label":"ACTS_IN","name":"Young Johnny Blaze","type":"Role","_key":"12227","_from":"9575","_to":"9573"} +{"$label":"DIRECTED","_key":"12223","_from":"9574","_to":"9573"} +{"$label":"DIRECTED","_key":"94720","_from":"9574","_to":"55790"} +{"$label":"DIRECTED","_key":"54136","_from":"9574","_to":"34788"} +{"$label":"ACTS_IN","name":"Tyler Prince","type":"Role","_key":"65556","_from":"9575","_to":"40629"} +{"$label":"ACTS_IN","name":"Cindi Whitehall","type":"Role","_key":"120374","_from":"9576","_to":"70713"} +{"$label":"ACTS_IN","name":"Donny Smithern","type":"Role","_key":"95921","_from":"9577","_to":"56411"} +{"$label":"ACTS_IN","name":"Paul McFee","type":"Role","_key":"92350","_from":"9577","_to":"54502"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"45294","_from":"9577","_to":"30044"} +{"$label":"ACTS_IN","name":"Nozaki","type":"Role","_key":"12242","_from":"9589","_to":"9578"} +{"$label":"ACTS_IN","name":"Kanda","type":"Role","_key":"12241","_from":"9588","_to":"9578"} +{"$label":"ACTS_IN","name":"Medic Endo","type":"Role","_key":"12240","_from":"9587","_to":"9578"} +{"$label":"ACTS_IN","name":"Lt. Colonel Oiso","type":"Role","_key":"12239","_from":"9586","_to":"9578"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"12238","_from":"9585","_to":"9578"} +{"$label":"ACTS_IN","name":"Lieutenant Okubo","type":"Role","_key":"12237","_from":"9584","_to":"9578"} +{"$label":"ACTS_IN","name":"Lieutenant Fujita","type":"Role","_key":"12236","_from":"9583","_to":"9578"} +{"$label":"ACTS_IN","name":"Lieutenant Ito","type":"Role","_key":"12235","_from":"9582","_to":"9578"} +{"$label":"ACTS_IN","name":"Shimizu","type":"Role","_key":"12234","_from":"9581","_to":"9578"} +{"$label":"ACTS_IN","name":"Baron Nishi","type":"Role","_key":"12233","_from":"9580","_to":"9578"} +{"$label":"ACTS_IN","name":"Saigo","type":"Role","_key":"12232","_from":"9579","_to":"9578"} +{"$label":"ACTS_IN","name":"Kuro \/ Itachi (voice)","type":"Role","_key":"96192","_from":"9579","_to":"56536"} +{"$label":"ACTS_IN","name":"Mamoru Uchida","type":"Role","_key":"120766","_from":"9582","_to":"70937"} +{"$label":"ACTS_IN","name":"Banki","type":"Role","_key":"120254","_from":"9582","_to":"70616"} +{"$label":"ACTS_IN","name":"Ryuuk (voice)","type":"Role","_key":"107443","_from":"9582","_to":"63385"} +{"$label":"ACTS_IN","name":"Anno Tanaka","type":"Role","_key":"47155","_from":"9582","_to":"31088"} +{"$label":"ACTS_IN","name":"Kenji","type":"Role","_key":"103428","_from":"9589","_to":"60838"} +{"$label":"DIRECTED","_key":"12243","_from":"9591","_to":"9590"} +{"$label":"ACTS_IN","name":"Zoran","type":"Role","_key":"12258","_from":"9596","_to":"9592"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"12256","_from":"9595","_to":"9592"} +{"$label":"ACTS_IN","name":"Miro","type":"Role","_key":"12255","_from":"9594","_to":"9592"} +{"$label":"ACTS_IN","name":"Oana","type":"Role","_key":"12252","_from":"9593","_to":"9592"} +{"$label":"ACTS_IN","name":"Sophie Lee","type":"Role","_key":"116503","_from":"9593","_to":"68573"} +{"$label":"ACTS_IN","name":"Lorena Fanchetti","type":"Role","_key":"114313","_from":"9593","_to":"67334"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"105346","_from":"9593","_to":"61983"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"100878","_from":"9593","_to":"59473"} +{"$label":"ACTS_IN","name":"Jocelyne Jordan","type":"Role","_key":"100443","_from":"9593","_to":"59224"} +{"$label":"ACTS_IN","name":"Teresa Gazelle","type":"Role","_key":"46391","_from":"9593","_to":"30650"} +{"$label":"ACTS_IN","name":"Abby Cairn","type":"Role","_key":"40723","_from":"9593","_to":"27403"} +{"$label":"ACTS_IN","name":"Dahpne Handlova","type":"Role","_key":"23247","_from":"9593","_to":"16859"} +{"$label":"ACTS_IN","name":"Madolyn","type":"Role","_key":"13176","_from":"9593","_to":"10265"} +{"$label":"ACTS_IN","name":"Farid","type":"Role","_key":"20281","_from":"9594","_to":"14864"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"110092","_from":"9595","_to":"65055"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"112798","_from":"9596","_to":"66602"} +{"$label":"ACTS_IN","name":"L'ami de Lo\u00efc","type":"Role","_key":"12267","_from":"9604","_to":"9597"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"12266","_from":"9603","_to":"9597"} +{"$label":"ACTS_IN","name":"Le psychiatre","type":"Role","_key":"12265","_from":"9602","_to":"9597"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"12263","_from":"9601","_to":"9597"} +{"$label":"ACTS_IN","name":"Paul Tellier","type":"Role","_key":"12261","_from":"9600","_to":"9597"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"12260","_from":"9599","_to":"9597"} +{"$label":"DIRECTED","_key":"12259","_from":"9598","_to":"9597"} +{"$label":"DIRECTED","_key":"105582","_from":"9598","_to":"62132"} +{"$label":"DIRECTED","_key":"20184","_from":"9598","_to":"14804"} +{"$label":"ACTS_IN","name":"Shosanna Dreyfus","type":"Role","_key":"110263","_from":"9599","_to":"65170"} +{"$label":"ACTS_IN","name":"Lucie Hennebelle","type":"Role","_key":"89574","_from":"9599","_to":"53004"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"50795","_from":"9599","_to":"33145"} +{"$label":"ACTS_IN","name":"Natacha","type":"Role","_key":"50589","_from":"9599","_to":"33043"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"49719","_from":"9599","_to":"32530"} +{"$label":"ACTS_IN","name":"Laetitia","type":"Role","_key":"48771","_from":"9599","_to":"31986"} +{"$label":"ACTS_IN","name":"Margueritte village Vosges","type":"Role","_key":"17508","_from":"9599","_to":"13084"} +{"$label":"ACTS_IN","name":"La petite amie de Minskov","type":"Role","_key":"13751","_from":"9599","_to":"10664"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"121503","_from":"9600","_to":"71373"} +{"$label":"ACTS_IN","name":"Richard Dacier","type":"Role","_key":"105085","_from":"9600","_to":"61852"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104408","_from":"9600","_to":"61420"} +{"$label":"ACTS_IN","name":"Philippe Abrams","type":"Role","_key":"48602","_from":"9600","_to":"31880"} +{"$label":"ACTS_IN","name":"Chabert","type":"Role","_key":"37750","_from":"9600","_to":"25604"} +{"$label":"ACTS_IN","name":"Rachid","type":"Role","_key":"17962","_from":"9600","_to":"13356"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106038","_from":"9601","_to":"62438"} +{"$label":"ACTS_IN","name":"Le playboy","type":"Role","_key":"100098","_from":"9601","_to":"59039"} +{"$label":"ACTS_IN","name":"Pierre Desfontaines","type":"Role","_key":"48622","_from":"9601","_to":"31888"} +{"$label":"ACTS_IN","name":"Jean-Michel","type":"Role","_key":"64650","_from":"9602","_to":"40271"} +{"$label":"ACTS_IN","name":"Christian McGillis","type":"Role","_key":"33306","_from":"9602","_to":"23080"} +{"$label":"ACTS_IN","name":"Capitaine Martin","type":"Role","_key":"17512","_from":"9602","_to":"13084"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"15860","_from":"9602","_to":"12063"} +{"$label":"ACTS_IN","name":"Park Hyun-seo","type":"Role","_key":"12273","_from":"9611","_to":"9605"} +{"$label":"ACTS_IN","name":"Park Nam-Joo","type":"Role","_key":"12272","_from":"9610","_to":"9605"} +{"$label":"ACTS_IN","name":"Park Nam-il","type":"Role","_key":"12271","_from":"9609","_to":"9605"} +{"$label":"ACTS_IN","name":"Park Hie-bong","type":"Role","_key":"12270","_from":"9608","_to":"9605"} +{"$label":"ACTS_IN","name":"Park Gang-Du","type":"Role","_key":"12269","_from":"9607","_to":"9605"} +{"$label":"DIRECTED","_key":"12268","_from":"9606","_to":"9605"} +{"$label":"DIRECTED","_key":"69774","_from":"9606","_to":"42584"} +{"$label":"DIRECTED","_key":"51559","_from":"9606","_to":"33641"} +{"$label":"ACTS_IN","name":"Yoon Tae-goo, the Weird","type":"Role","_key":"103032","_from":"9607","_to":"60610"} +{"$label":"ACTS_IN","name":"Detective Park Doo-Man","type":"Role","_key":"69770","_from":"9607","_to":"42584"} +{"$label":"ACTS_IN","name":"Lee Jang-gil","type":"Role","_key":"62754","_from":"9607","_to":"39449"} +{"$label":"ACTS_IN","name":"Park Dong-jin","type":"Role","_key":"33424","_from":"9607","_to":"23136"} +{"$label":"ACTS_IN","name":"Sgt. Oh Kyeong-pil","type":"Role","_key":"21382","_from":"9607","_to":"15637"} +{"$label":"ACTS_IN","name":"Jong-chan KIM","type":"Role","_key":"17498","_from":"9607","_to":"13081"} +{"$label":"ACTS_IN","name":"Cha Yeong-mi","type":"Role","_key":"33426","_from":"9610","_to":"23136"} +{"$label":"ACTS_IN","name":"Fabian Haas","type":"Role","_key":"12288","_from":"9627","_to":"9612"} +{"$label":"ACTS_IN","name":"Manfred Haas","type":"Role","_key":"12287","_from":"9626","_to":"9612"} +{"$label":"ACTS_IN","name":"Erika Haas","type":"Role","_key":"12286","_from":"9625","_to":"9612"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"12285","_from":"9624","_to":"9612"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"12284","_from":"9623","_to":"9612"} +{"$label":"ACTS_IN","name":"Kogler","type":"Role","_key":"12283","_from":"9622","_to":"9612"} +{"$label":"ACTS_IN","name":"Kerstin","type":"Role","_key":"12282","_from":"9621","_to":"9612"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"12281","_from":"9620","_to":"9612"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"12280","_from":"9619","_to":"9612"} +{"$label":"ACTS_IN","name":"Berger","type":"Role","_key":"12279","_from":"9618","_to":"9612"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"12278","_from":"9617","_to":"9612"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"12277","_from":"9616","_to":"9612"} +{"$label":"ACTS_IN","name":"Clemens","type":"Role","_key":"12276","_from":"9615","_to":"9612"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"12275","_from":"9614","_to":"9612"} +{"$label":"DIRECTED","_key":"12274","_from":"9613","_to":"9612"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"49629","_from":"9616","_to":"32478"} +{"$label":"ACTS_IN","name":"Sergente Vianello","type":"Role","_key":"89219","_from":"9618","_to":"52828"} +{"$label":"ACTS_IN","name":"Franz Werfel","type":"Role","_key":"20015","_from":"9618","_to":"14724"} +{"$label":"ACTS_IN","name":"Madame Wolf","type":"Role","_key":"47290","_from":"9619","_to":"31151"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"12300","_from":"9637","_to":"9628"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"12299","_from":"9636","_to":"9628"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"12298","_from":"9635","_to":"9628"} +{"$label":"ACTS_IN","name":"Lionel","type":"Role","_key":"12297","_from":"9634","_to":"9628"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"12294","_from":"9633","_to":"9628"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"12293","_from":"9632","_to":"9628"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"12292","_from":"9631","_to":"9628"} +{"$label":"ACTS_IN","name":"Milly","type":"Role","_key":"12291","_from":"9630","_to":"9628"} +{"$label":"DIRECTED","_key":"12289","_from":"9629","_to":"9628"} +{"$label":"DIRECTED","_key":"95360","_from":"9629","_to":"56098"} +{"$label":"DIRECTED","_key":"92080","_from":"9629","_to":"54332"} +{"$label":"DIRECTED","_key":"52938","_from":"9629","_to":"34303"} +{"$label":"DIRECTED","_key":"51170","_from":"9629","_to":"33378"} +{"$label":"DIRECTED","_key":"23268","_from":"9629","_to":"16868"} +{"$label":"DIRECTED","_key":"22353","_from":"9629","_to":"16253"} +{"$label":"ACTS_IN","name":"Halley Martin","type":"Role","_key":"112131","_from":"9630","_to":"66221"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"102256","_from":"9630","_to":"60171"} +{"$label":"ACTS_IN","name":"Anna Foster","type":"Role","_key":"102023","_from":"9630","_to":"60028"} +{"$label":"ACTS_IN","name":"Lucy Reilly","type":"Role","_key":"98565","_from":"9630","_to":"58084"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"98009","_from":"9630","_to":"57718"} +{"$label":"ACTS_IN","name":"Hilary Faye","type":"Role","_key":"93371","_from":"9630","_to":"54999"} +{"$label":"ACTS_IN","name":"Girl Bear Cub","type":"Role","_key":"65926","_from":"9630","_to":"40778"} +{"$label":"ACTS_IN","name":"Jamie Sullivan","type":"Role","_key":"61830","_from":"9630","_to":"38926"} +{"$label":"ACTS_IN","name":"Nita","type":"Role","_key":"59396","_from":"9630","_to":"37525"} +{"$label":"ACTS_IN","name":"Lana Thomas","type":"Role","_key":"57577","_from":"9630","_to":"36467"} +{"$label":"ACTS_IN","name":"Sally Kendoo","type":"Role","_key":"53033","_from":"9630","_to":"34338"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"43401","_from":"9630","_to":"28997"} +{"$label":"ACTS_IN","name":"Madeline Frost-Santaros","type":"Role","_key":"33639","_from":"9630","_to":"23230"} +{"$label":"ACTS_IN","name":"Sadie Jones","type":"Role","_key":"24434","_from":"9630","_to":"17679"} +{"$label":"ACTS_IN","name":"Frank James","type":"Role","_key":"94821","_from":"9631","_to":"55841"} +{"$label":"ACTS_IN","name":"Lawson Pines","type":"Role","_key":"58456","_from":"9631","_to":"36947"} +{"$label":"ACTS_IN","name":"The Spirit\/Denny Colt","type":"Role","_key":"48833","_from":"9631","_to":"32022"} +{"$label":"ACTS_IN","name":"Stackhouse","type":"Role","_key":"47727","_from":"9631","_to":"31434"} +{"$label":"ACTS_IN","name":"Officer Seale","type":"Role","_key":"26234","_from":"9631","_to":"18839"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"14636","_from":"9631","_to":"11274"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"100790","_from":"9632","_to":"59419"} +{"$label":"ACTS_IN","name":"Michael Brantley","type":"Role","_key":"98940","_from":"9632","_to":"58292"} +{"$label":"ACTS_IN","name":"Judge Harper","type":"Role","_key":"66711","_from":"9632","_to":"41210"} +{"$label":"ACTS_IN","name":"Guy Patterson","type":"Role","_key":"54881","_from":"9632","_to":"35099"} +{"$label":"ACTS_IN","name":"Andy McDermott","type":"Role","_key":"53675","_from":"9632","_to":"34620"} +{"$label":"ACTS_IN","name":"Guy Fawkes","type":"Role","_key":"49949","_from":"9632","_to":"32695"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"110950","_from":"9633","_to":"65534"} +{"$label":"ACTS_IN","name":"Phyllis Kearns","type":"Role","_key":"102450","_from":"9633","_to":"60287"} +{"$label":"ACTS_IN","name":"Betty Tanager","type":"Role","_key":"100178","_from":"9633","_to":"59089"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"61233","_from":"9633","_to":"38674"} +{"$label":"ACTS_IN","name":"Principal Claire Fletcher","type":"Role","_key":"59521","_from":"9633","_to":"37579"} +{"$label":"ACTS_IN","name":"Joan Baxter","type":"Role","_key":"22760","_from":"9633","_to":"16511"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"19230","_from":"9633","_to":"14214"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"16616","_from":"9633","_to":"12548"} +{"$label":"ACTS_IN","name":"Wade Zooha","type":"Role","_key":"121453","_from":"9637","_to":"71349"} +{"$label":"ACTS_IN","name":"Jack Dabbs","type":"Role","_key":"105259","_from":"9637","_to":"61944"} +{"$label":"ACTS_IN","name":"Nickie","type":"Role","_key":"33169","_from":"9637","_to":"22969"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"12328","_from":"9637","_to":"9655"} +{"$label":"ACTS_IN","name":"Annabel","type":"Role","_key":"12319","_from":"9653","_to":"9638"} +{"$label":"ACTS_IN","name":"Mrs. Connolly","type":"Role","_key":"12318","_from":"9652","_to":"9638"} +{"$label":"ACTS_IN","name":"Mr. Connolly","type":"Role","_key":"12317","_from":"9651","_to":"9638"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"12316","_from":"9650","_to":"9638"} +{"$label":"ACTS_IN","name":"Saskia","type":"Role","_key":"12315","_from":"9649","_to":"9638"} +{"$label":"ACTS_IN","name":"Sheba\u2019s Mother","type":"Role","_key":"12314","_from":"9648","_to":"9638"} +{"$label":"ACTS_IN","name":"Elaine Clifford","type":"Role","_key":"12313","_from":"9647","_to":"9638"} +{"$label":"ACTS_IN","name":"Gita","type":"Role","_key":"12312","_from":"9646","_to":"9638"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"12311","_from":"9645","_to":"9638"} +{"$label":"ACTS_IN","name":"Bill Rumer","type":"Role","_key":"12310","_from":"9644","_to":"9638"} +{"$label":"ACTS_IN","name":"Sue Hodge","type":"Role","_key":"12309","_from":"9643","_to":"9638"} +{"$label":"ACTS_IN","name":"Steven Connolly","type":"Role","_key":"12307","_from":"9642","_to":"9638"} +{"$label":"ACTS_IN","name":"Ben Hart","type":"Role","_key":"12306","_from":"9641","_to":"9638"} +{"$label":"ACTS_IN","name":"Polly Hart","type":"Role","_key":"12305","_from":"9640","_to":"9638"} +{"$label":"DIRECTED","_key":"12301","_from":"9639","_to":"9638"} +{"$label":"DIRECTED","_key":"113324","_from":"9639","_to":"66758"} +{"$label":"DIRECTED","_key":"72571","_from":"9639","_to":"43761"} +{"$label":"ACTS_IN","name":"Jennifer 'Drippy' Logan","type":"Role","_key":"97896","_from":"9640","_to":"57658"} +{"$label":"ACTS_IN","name":"Jane Parker","type":"Role","_key":"88562","_from":"9640","_to":"52483"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"65433","_from":"9640","_to":"40563"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"31073","_from":"9640","_to":"21754"} +{"$label":"ACTS_IN","name":"Daisy Burke","type":"Role","_key":"111619","_from":"9643","_to":"65897"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"108935","_from":"9643","_to":"64373"} +{"$label":"ACTS_IN","name":"Tanneke","type":"Role","_key":"28387","_from":"9643","_to":"20310"} +{"$label":"ACTS_IN","name":"Clinique","type":"Role","_key":"117723","_from":"9644","_to":"69199"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"100490","_from":"9644","_to":"59250"} +{"$label":"ACTS_IN","name":"Koop","type":"Role","_key":"68046","_from":"9644","_to":"41811"} +{"$label":"ACTS_IN","name":"The Showman","type":"Role","_key":"25771","_from":"9644","_to":"18543"} +{"$label":"ACTS_IN","name":"Donald Ross","type":"Role","_key":"41653","_from":"9650","_to":"27954"} +{"$label":"ACTS_IN","name":"Carmel","type":"Role","_key":"116762","_from":"9653","_to":"68735"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"48218","_from":"9653","_to":"31677"} +{"$label":"ACTS_IN","name":"Polische Frau","type":"Role","_key":"12329","_from":"9661","_to":"9655"} +{"$label":"ACTS_IN","name":"IRS Co-Arbeiter","type":"Role","_key":"12327","_from":"9660","_to":"9655"} +{"$label":"ACTS_IN","name":"Vater des Junge","type":"Role","_key":"12326","_from":"9659","_to":"9655"} +{"$label":"ACTS_IN","name":"Bus Fahrer","type":"Role","_key":"12325","_from":"9658","_to":"9655"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"12324","_from":"9657","_to":"9655"} +{"$label":"ACTS_IN","name":"Harold Crick","type":"Role","_key":"12320","_from":"9656","_to":"9655"} +{"$label":"ACTS_IN","name":"Dr. Rick Marshall","type":"Role","_key":"115110","_from":"9656","_to":"67789"} +{"$label":"ACTS_IN","name":"Lance DeLune","type":"Role","_key":"110371","_from":"9656","_to":"65216"} +{"$label":"ACTS_IN","name":"George W. Bush","type":"Role","_key":"108289","_from":"9656","_to":"64008"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99312","_from":"9656","_to":"58516"} +{"$label":"ACTS_IN","name":"Sky Corrigan","type":"Role","_key":"97039","_from":"9656","_to":"57090"} +{"$label":"ACTS_IN","name":"Jackie Moon","type":"Role","_key":"93649","_from":"9656","_to":"55135"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"88539","_from":"9656","_to":"52472"} +{"$label":"ACTS_IN","name":"Brennan Huff","type":"Role","_key":"88208","_from":"9656","_to":"52337"} +{"$label":"ACTS_IN","name":"Frank \u201eThe Tank\u201c","type":"Role","_key":"71188","_from":"9656","_to":"43207"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"65231","_from":"9656","_to":"40502"} +{"$label":"ACTS_IN","name":"Phil Weston","type":"Role","_key":"58910","_from":"9656","_to":"37201"} +{"$label":"ACTS_IN","name":"Ted - Man with the Yellow Hat","type":"Role","_key":"58820","_from":"9656","_to":"37148"} +{"$label":"ACTS_IN","name":"Ron Burgundy","type":"Role","_key":"58643","_from":"9656","_to":"37052"} +{"$label":"ACTS_IN","name":"Chazz Michael Michaels","type":"Role","_key":"58497","_from":"9656","_to":"36974"} +{"$label":"ACTS_IN","name":"Franz Liebkind","type":"Role","_key":"57726","_from":"9656","_to":"36543"} +{"$label":"ACTS_IN","name":"Jack Wyatt","type":"Role","_key":"56009","_from":"9656","_to":"35606"} +{"$label":"ACTS_IN","name":"Ricky Bobby","type":"Role","_key":"55955","_from":"9656","_to":"35579"} +{"$label":"ACTS_IN","name":"Hobie","type":"Role","_key":"55653","_from":"9656","_to":"35428"} +{"$label":"ACTS_IN","name":"Steve Butabi","type":"Role","_key":"53801","_from":"9656","_to":"34666"} +{"$label":"ACTS_IN","name":"Mugatu","type":"Role","_key":"53608","_from":"9656","_to":"34590"} +{"$label":"ACTS_IN","name":"Ron Burgundy","type":"Role","_key":"50543","_from":"9656","_to":"33010"} +{"$label":"ACTS_IN","name":"Federal Wildlife Marshal Willenholly","type":"Role","_key":"20137","_from":"9656","_to":"14786"} +{"$label":"ACTS_IN","name":"Schwester Claudia","type":"Role","_key":"12347","_from":"9673","_to":"9662"} +{"$label":"ACTS_IN","name":"G\u00fcnter Knoethel","type":"Role","_key":"12346","_from":"9672","_to":"9662"} +{"$label":"ACTS_IN","name":"Patientin","type":"Role","_key":"12345","_from":"9671","_to":"9662"} +{"$label":"ACTS_IN","name":"Lebenspartner Schwangere","type":"Role","_key":"12344","_from":"9670","_to":"9662"} +{"$label":"ACTS_IN","name":"Prof. Wiebenhartz","type":"Role","_key":"12343","_from":"9669","_to":"9662"} +{"$label":"ACTS_IN","name":"Herrmann Menzel","type":"Role","_key":"12342","_from":"9668","_to":"9662"} +{"$label":"ACTS_IN","name":"Hartmuth Probst","type":"Role","_key":"12341","_from":"9667","_to":"9662"} +{"$label":"ACTS_IN","name":"Werner Vierk\u00f6tter","type":"Role","_key":"12338","_from":"9666","_to":"9662"} +{"$label":"ACTS_IN","name":"Sylvia G\u00f6bel","type":"Role","_key":"12335","_from":"9665","_to":"9662"} +{"$label":"ACTS_IN","name":"Dr. Klaus Kunze","type":"Role","_key":"12334","_from":"9664","_to":"9662"} +{"$label":"ACTS_IN","name":"Dr. Steffen Wesemann","type":"Role","_key":"12333","_from":"9663","_to":"9662"} +{"$label":"DIRECTED","_key":"12332","_from":"9663","_to":"9662"} +{"$label":"ACTS_IN","name":"Schneewittchen","type":"Role","_key":"59771","_from":"9665","_to":"37734"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"58319","_from":"9665","_to":"36872"} +{"$label":"ACTS_IN","name":"Schneewittchen","type":"Role","_key":"56960","_from":"9665","_to":"36144"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"42299","_from":"9666","_to":"28316"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42274","_from":"9666","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42211","_from":"9667","_to":"28267"} +{"$label":"ACTS_IN","name":"Nonnenmacher","type":"Role","_key":"37281","_from":"9667","_to":"25258"} +{"$label":"ACTS_IN","name":"Georg Erlsberg","type":"Role","_key":"32966","_from":"9667","_to":"22852"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43857","_from":"9668","_to":"29272"} +{"$label":"ACTS_IN","name":"Ost-J\u00fcrgen","type":"Role","_key":"30995","_from":"9668","_to":"21698"} +{"$label":"ACTS_IN","name":"Dr. Darm","type":"Role","_key":"72760","_from":"9670","_to":"43833"} +{"$label":"ACTS_IN","name":"Else Krug","type":"Role","_key":"44057","_from":"9671","_to":"29371"} +{"$label":"ACTS_IN","name":"Hausmeister Hochhaus","type":"Role","_key":"20591","_from":"9672","_to":"15054"} +{"$label":"ACTS_IN","name":"Maxi","type":"Role","_key":"12353","_from":"9680","_to":"9674"} +{"$label":"ACTS_IN","name":"Nerv","type":"Role","_key":"12352","_from":"9679","_to":"9674"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"12351","_from":"9678","_to":"9674"} +{"$label":"ACTS_IN","name":"Marlon","type":"Role","_key":"12350","_from":"9677","_to":"9674"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"12349","_from":"9676","_to":"9674"} +{"$label":"DIRECTED","_key":"12348","_from":"9675","_to":"9674"} +{"$label":"DIRECTED","_key":"65494","_from":"9675","_to":"40600"} +{"$label":"DIRECTED","_key":"49189","_from":"9675","_to":"32222"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"65487","_from":"9676","_to":"40600"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"49256","_from":"9676","_to":"32258"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"49179","_from":"9676","_to":"32222"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"71767","_from":"9677","_to":"43439"} +{"$label":"ACTS_IN","name":"Marlon","type":"Role","_key":"65491","_from":"9677","_to":"40600"} +{"$label":"ACTS_IN","name":"Marlon","type":"Role","_key":"49183","_from":"9677","_to":"32222"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"65489","_from":"9678","_to":"40600"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"49181","_from":"9678","_to":"32222"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"88233","_from":"9679","_to":"52346"} +{"$label":"ACTS_IN","name":"Maxi","type":"Role","_key":"49184","_from":"9680","_to":"32222"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"12371","_from":"9695","_to":"9681"} +{"$label":"ACTS_IN","name":"Mrs. Myers","type":"Role","_key":"12370","_from":"9694","_to":"9681"} +{"$label":"ACTS_IN","name":"Principal Turner","type":"Role","_key":"12369","_from":"9693","_to":"9681"} +{"$label":"ACTS_IN","name":"Madison","type":"Role","_key":"12368","_from":"9692","_to":"9681"} +{"$label":"ACTS_IN","name":"Bill Burke","type":"Role","_key":"12367","_from":"9691","_to":"9681"} +{"$label":"ACTS_IN","name":"Grandma Burke","type":"Role","_key":"12365","_from":"9690","_to":"9681"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"12364","_from":"9689","_to":"9681"} +{"$label":"ACTS_IN","name":"Janice Avery","type":"Role","_key":"12363","_from":"9688","_to":"9681"} +{"$label":"ACTS_IN","name":"Ellie Aarons","type":"Role","_key":"12362","_from":"9687","_to":"9681"} +{"$label":"ACTS_IN","name":"Joyce Aarons","type":"Role","_key":"12361","_from":"9686","_to":"9681"} +{"$label":"ACTS_IN","name":"May Belle Aarons","type":"Role","_key":"12359","_from":"9685","_to":"9681"} +{"$label":"ACTS_IN","name":"Mary Aarons","type":"Role","_key":"12358","_from":"9684","_to":"9681"} +{"$label":"ACTS_IN","name":"Jess Aarons","type":"Role","_key":"12355","_from":"9683","_to":"9681"} +{"$label":"DIRECTED","_key":"12354","_from":"9682","_to":"9681"} +{"$label":"DIRECTED","_key":"114690","_from":"9682","_to":"67560"} +{"$label":"ACTS_IN","name":"Gabe","type":"Role","_key":"109493","_from":"9683","_to":"64679"} +{"$label":"ACTS_IN","name":"Jimmy Jaspersen","type":"Role","_key":"106777","_from":"9683","_to":"62951"} +{"$label":"ACTS_IN","name":"Sean Anderson","type":"Role","_key":"70601","_from":"9683","_to":"42955"} +{"$label":"ACTS_IN","name":"Shane Fahey","type":"Role","_key":"60776","_from":"9683","_to":"38393"} +{"$label":"ACTS_IN","name":"Bucky Weston","type":"Role","_key":"58914","_from":"9683","_to":"37201"} +{"$label":"ACTS_IN","name":"Carl Munro","type":"Role","_key":"54480","_from":"9683","_to":"34927"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"44940","_from":"9683","_to":"29879"} +{"$label":"ACTS_IN","name":"Markl","type":"Role","_key":"34958","_from":"9683","_to":"23864"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"23456","_from":"9683","_to":"17001"} +{"$label":"ACTS_IN","name":"Isabelle Cahill","type":"Role","_key":"46671","_from":"9685","_to":"30821"} +{"$label":"ACTS_IN","name":"Michael Monks","type":"Role","_key":"12385","_from":"9705","_to":"9696"} +{"$label":"ACTS_IN","name":"Grill","type":"Role","_key":"12384","_from":"9704","_to":"9696"} +{"$label":"ACTS_IN","name":"Fremont","type":"Role","_key":"12383","_from":"9703","_to":"9696"} +{"$label":"ACTS_IN","name":"Julie Fukashima","type":"Role","_key":"12382","_from":"9702","_to":"9696"} +{"$label":"ACTS_IN","name":"Scribble","type":"Role","_key":"12378","_from":"9701","_to":"9696"} +{"$label":"ACTS_IN","name":"Grace Garcia","type":"Role","_key":"12377","_from":"9700","_to":"9696"} +{"$label":"ACTS_IN","name":"Captain James Biggs","type":"Role","_key":"12376","_from":"9699","_to":"9696"} +{"$label":"ACTS_IN","name":"Detective Paul Diskant","type":"Role","_key":"12375","_from":"9698","_to":"9696"} +{"$label":"DIRECTED","_key":"12372","_from":"9697","_to":"9696"} +{"$label":"DIRECTED","_key":"47490","_from":"9697","_to":"31280"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"120465","_from":"9698","_to":"70763"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"94887","_from":"9698","_to":"55867"} +{"$label":"ACTS_IN","name":"Nick Gant","type":"Role","_key":"94587","_from":"9698","_to":"55732"} +{"$label":"ACTS_IN","name":"Hayden \"Harvard Hottie\"","type":"Role","_key":"89465","_from":"9698","_to":"52971"} +{"$label":"ACTS_IN","name":"Jake Wyler","type":"Role","_key":"69605","_from":"9698","_to":"42492"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"56381","_from":"9698","_to":"35817"} +{"$label":"ACTS_IN","name":"Johnny Storm","type":"Role","_key":"56207","_from":"9698","_to":"35722"} +{"$label":"ACTS_IN","name":"Syd","type":"Role","_key":"47051","_from":"9698","_to":"31034"} +{"$label":"ACTS_IN","name":"Johnny Storm \/ Human Torch","type":"Role","_key":"17152","_from":"9698","_to":"12853"} +{"$label":"ACTS_IN","name":"Steve Rogers \/ Captain America","type":"Role","_key":"15416","_from":"9698","_to":"11787"} +{"$label":"ACTS_IN","name":"Casey Jones (voice)","type":"Role","_key":"12434","_from":"9698","_to":"9740"} +{"$label":"ACTS_IN","name":"Mace","type":"Role","_key":"12424","_from":"9698","_to":"9736"} +{"$label":"ACTS_IN","name":"Dr. Cockroach Ph.D. (voice)","type":"Role","_key":"104774","_from":"9699","_to":"61645"} +{"$label":"ACTS_IN","name":"Sam Bell","type":"Role","_key":"97854","_from":"9699","_to":"57638"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"72457","_from":"9699","_to":"43726"} +{"$label":"ACTS_IN","name":"Roger Charleston","type":"Role","_key":"72017","_from":"9699","_to":"43549"} +{"$label":"ACTS_IN","name":"Jaspar","type":"Role","_key":"71482","_from":"9699","_to":"43329"} +{"$label":"ACTS_IN","name":"Mr. Frederick Little","type":"Role","_key":"67167","_from":"9699","_to":"41441"} +{"$label":"ACTS_IN","name":"Police Officer Steady","type":"Role","_key":"53939","_from":"9699","_to":"34706"} +{"$label":"ACTS_IN","name":"Hercuele Porot","type":"Role","_key":"41799","_from":"9699","_to":"28038"} +{"$label":"ACTS_IN","name":"Nate Johnson \/ Uncle Earl","type":"Role","_key":"118645","_from":"9701","_to":"69761"} +{"$label":"ACTS_IN","name":"Jake Rodgers","type":"Role","_key":"100018","_from":"9701","_to":"59004"} +{"$label":"ACTS_IN","name":"Willie Dixon","type":"Role","_key":"99519","_from":"9701","_to":"58668"} +{"$label":"ACTS_IN","name":"Percy Stevens","type":"Role","_key":"94842","_from":"9701","_to":"55853"} +{"$label":"ACTS_IN","name":"Clyde Stubb","type":"Role","_key":"94781","_from":"9701","_to":"55823"} +{"$label":"ACTS_IN","name":"Ray Harris","type":"Role","_key":"91438","_from":"9701","_to":"53928"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"64512","_from":"9701","_to":"40186"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"63853","_from":"9701","_to":"39906"} +{"$label":"ACTS_IN","name":"Golly the Goose","type":"Role","_key":"58980","_from":"9701","_to":"37240"} +{"$label":"ACTS_IN","name":"'Nighthawk' Bob Terry","type":"Role","_key":"43971","_from":"9701","_to":"29330"} +{"$label":"ACTS_IN","name":"Sin LaSalle","type":"Role","_key":"32575","_from":"9701","_to":"22640"} +{"$label":"ACTS_IN","name":"Meat","type":"Role","_key":"58028","_from":"9704","_to":"36714"} +{"$label":"ACTS_IN","name":"Agent Hollenbeck","type":"Role","_key":"47481","_from":"9705","_to":"31280"} +{"$label":"ACTS_IN","name":"Carl (voice)","type":"Role","_key":"12391","_from":"9710","_to":"9706"} +{"$label":"ACTS_IN","name":"Franny (voice)","type":"Role","_key":"12390","_from":"9709","_to":"9706"} +{"$label":"ACTS_IN","name":"Cornelius Robinson (voice)","type":"Role","_key":"12387","_from":"9708","_to":"9706"} +{"$label":"DIRECTED","_key":"12386","_from":"9707","_to":"9706"} +{"$label":"ACTS_IN","name":"Patrick O' Malley","type":"Role","_key":"120559","_from":"9708","_to":"70809"} +{"$label":"ACTS_IN","name":"Jack Elliot","type":"Role","_key":"117233","_from":"9708","_to":"68961"} +{"$label":"ACTS_IN","name":"Jon Aldrich","type":"Role","_key":"116388","_from":"9708","_to":"68518"} +{"$label":"ACTS_IN","name":"Phil Blackwood","type":"Role","_key":"114098","_from":"9708","_to":"67197"} +{"$label":"ACTS_IN","name":"Peter Mitchell","type":"Role","_key":"88337","_from":"9708","_to":"52381"} +{"$label":"ACTS_IN","name":"Peter Mitchell","type":"Role","_key":"71150","_from":"9708","_to":"43189"} +{"$label":"ACTS_IN","name":"Sean Murphy","type":"Role","_key":"68646","_from":"9708","_to":"42071"} +{"$label":"ACTS_IN","name":"Peter Malloy","type":"Role","_key":"65914","_from":"9708","_to":"40773"} +{"$label":"ACTS_IN","name":"Matthew Quigley","type":"Role","_key":"54867","_from":"9708","_to":"35091"} +{"$label":"ACTS_IN","name":"Jack R. Ramsay","type":"Role","_key":"54321","_from":"9708","_to":"34862"} +{"$label":"ACTS_IN","name":"Phil Sanford","type":"Role","_key":"39143","_from":"9708","_to":"26456"} +{"$label":"ACTS_IN","name":"Mira Nova","type":"Role","_key":"107939","_from":"9709","_to":"63745"} +{"$label":"ACTS_IN","name":"Rosco P. Coltrane","type":"Role","_key":"120450","_from":"9710","_to":"70756"} +{"$label":"ACTS_IN","name":"Officer Harry Cox","type":"Role","_key":"102888","_from":"9710","_to":"60520"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"100533","_from":"9710","_to":"59298"} +{"$label":"ACTS_IN","name":"Eric Slater","type":"Role","_key":"97041","_from":"9710","_to":"57090"} +{"$label":"ACTS_IN","name":"Darren","type":"Role","_key":"93094","_from":"9710","_to":"54874"} +{"$label":"ACTS_IN","name":"Deputy Moseby","type":"Role","_key":"59567","_from":"9710","_to":"37600"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"56885","_from":"9710","_to":"36109"} +{"$label":"ACTS_IN","name":"Kenny Davis","type":"Role","_key":"54215","_from":"9710","_to":"34822"} +{"$label":"ACTS_IN","name":"Doofer \/ Roberta","type":"Role","_key":"41228","_from":"9710","_to":"27735"} +{"$label":"ACTS_IN","name":"Special Agent Steve Hanson","type":"Role","_key":"17992","_from":"9710","_to":"13374"} +{"$label":"ACTS_IN","name":"Traffic Controller #2","type":"Role","_key":"12396","_from":"9714","_to":"9711"} +{"$label":"ACTS_IN","name":"Stepan","type":"Role","_key":"12395","_from":"9713","_to":"9711"} +{"$label":"DIRECTED","_key":"12392","_from":"9712","_to":"9711"} +{"$label":"ACTS_IN","name":"Dr. Brinkman","type":"Role","_key":"12407","_from":"9723","_to":"9715"} +{"$label":"ACTS_IN","name":"Anstaltsinsasse","type":"Role","_key":"12406","_from":"9722","_to":"9715"} +{"$label":"ACTS_IN","name":"Sir John","type":"Role","_key":"12405","_from":"9721","_to":"9715"} +{"$label":"ACTS_IN","name":"Lord David Dickham","type":"Role","_key":"12401","_from":"9720","_to":"9715"} +{"$label":"ACTS_IN","name":"Pickeliger Teenager","type":"Role","_key":"12400","_from":"9719","_to":"9715"} +{"$label":"ACTS_IN","name":"Chief Inspector Even Longer","type":"Role","_key":"12399","_from":"9718","_to":"9715"} +{"$label":"DIRECTED","_key":"12398","_from":"9717","_to":"9715"} +{"$label":"DIRECTED","_key":"12397","_from":"9716","_to":"9715"} +{"$label":"ACTS_IN","name":"Barnaby","type":"Role","_key":"65960","_from":"9718","_to":"40802"} +{"$label":"ACTS_IN","name":"Chief Inspector Even Longer","type":"Role","_key":"46206","_from":"9718","_to":"30544"} +{"$label":"ACTS_IN","name":"Hilmar Kess","type":"Role","_key":"100372","_from":"9719","_to":"59188"} +{"$label":"ACTS_IN","name":"Ernst","type":"Role","_key":"51318","_from":"9719","_to":"33466"} +{"$label":"ACTS_IN","name":"Inspector Very Long","type":"Role","_key":"46207","_from":"9719","_to":"30544"} +{"$label":"ACTS_IN","name":"Gefreiter Asch","type":"Role","_key":"120115","_from":"9720","_to":"70542"} +{"$label":"ACTS_IN","name":"Dr. Johannes B\u00f6hk, gen. Justus","type":"Role","_key":"71223","_from":"9720","_to":"43222"} +{"$label":"ACTS_IN","name":"Inspektor Larry Holt","type":"Role","_key":"55170","_from":"9720","_to":"35203"} +{"$label":"ACTS_IN","name":"Inspektor Higgins","type":"Role","_key":"55165","_from":"9720","_to":"35202"} +{"$label":"ACTS_IN","name":"Inspektor Bryan Edgar Higgins","type":"Role","_key":"55153","_from":"9720","_to":"35200"} +{"$label":"ACTS_IN","name":"Thomas Wassem","type":"Role","_key":"49082","_from":"9720","_to":"32171"} +{"$label":"ACTS_IN","name":"Richard Gordon","type":"Role","_key":"44799","_from":"9720","_to":"29804"} +{"$label":"ACTS_IN","name":"Inspektor Barth","type":"Role","_key":"44222","_from":"9720","_to":"29470"} +{"$label":"ACTS_IN","name":"Inspektor Ward","type":"Role","_key":"44127","_from":"9720","_to":"29420"} +{"$label":"ACTS_IN","name":"Dick Alford","type":"Role","_key":"44062","_from":"9720","_to":"29386"} +{"$label":"ACTS_IN","name":"Inspektor Blacky Long","type":"Role","_key":"38150","_from":"9720","_to":"25795"} +{"$label":"ACTS_IN","name":"Karl Janssen","type":"Role","_key":"27375","_from":"9720","_to":"19673"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"66799","_from":"9721","_to":"41265"} +{"$label":"ACTS_IN","name":"Sopho","type":"Role","_key":"52464","_from":"9721","_to":"34132"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"41001","_from":"9721","_to":"27570"} +{"$label":"ACTS_IN","name":"Sergeant Higgins","type":"Role","_key":"38168","_from":"9721","_to":"25798"} +{"$label":"ACTS_IN","name":"Wachmeister Stucke","type":"Role","_key":"32489","_from":"9721","_to":"22593"} +{"$label":"ACTS_IN","name":"Fasold","type":"Role","_key":"30424","_from":"9721","_to":"21382"} +{"$label":"ACTS_IN","name":"Leonidas","type":"Role","_key":"12420","_from":"9735","_to":"9725"} +{"$label":"ACTS_IN","name":"Pleistarchos","type":"Role","_key":"12419","_from":"9734","_to":"9725"} +{"$label":"ACTS_IN","name":"Astinos","type":"Role","_key":"12418","_from":"9733","_to":"9725"} +{"$label":"ACTS_IN","name":"Daxos","type":"Role","_key":"12417","_from":"9732","_to":"9725"} +{"$label":"ACTS_IN","name":"Ephialtes","type":"Role","_key":"12416","_from":"9731","_to":"9725"} +{"$label":"ACTS_IN","name":"Xerxes","type":"Role","_key":"12415","_from":"9730","_to":"9725"} +{"$label":"ACTS_IN","name":"Stelios","type":"Role","_key":"12413","_from":"9729","_to":"9725"} +{"$label":"ACTS_IN","name":"Theron","type":"Role","_key":"12412","_from":"9728","_to":"9725"} +{"$label":"ACTS_IN","name":"Gorgo","type":"Role","_key":"12410","_from":"9727","_to":"9725"} +{"$label":"ACTS_IN","name":"Leonidas","type":"Role","_key":"12409","_from":"9726","_to":"9725"} +{"$label":"ACTS_IN","name":"Attila the Hun","type":"Role","_key":"118328","_from":"9726","_to":"69556"} +{"$label":"ACTS_IN","name":"Kable","type":"Role","_key":"116417","_from":"9726","_to":"68531"} +{"$label":"ACTS_IN","name":"Archie Brown","type":"Role","_key":"113268","_from":"9726","_to":"66730"} +{"$label":"ACTS_IN","name":"The Mariner (voice)","type":"Role","_key":"109237","_from":"9726","_to":"64539"} +{"$label":"ACTS_IN","name":"One-Two","type":"Role","_key":"96785","_from":"9726","_to":"56924"} +{"$label":"ACTS_IN","name":"Neil Randall","type":"Role","_key":"93589","_from":"9726","_to":"55111"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"64192","_from":"9726","_to":"40048"} +{"$label":"ACTS_IN","name":"Alex Rover","type":"Role","_key":"63631","_from":"9726","_to":"39806"} +{"$label":"ACTS_IN","name":"Stoick","type":"Role","_key":"61571","_from":"9726","_to":"38816"} +{"$label":"ACTS_IN","name":"Das Phantom","type":"Role","_key":"57290","_from":"9726","_to":"36334"} +{"$label":"ACTS_IN","name":"Andre Marek","type":"Role","_key":"54701","_from":"9726","_to":"35025"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"51821","_from":"9726","_to":"33813"} +{"$label":"ACTS_IN","name":"Creedy","type":"Role","_key":"42781","_from":"9726","_to":"28624"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"41273","_from":"9726","_to":"27753"} +{"$label":"ACTS_IN","name":"Beowulf","type":"Role","_key":"37367","_from":"9726","_to":"25321"} +{"$label":"ACTS_IN","name":"Terry Sheridan","type":"Role","_key":"17308","_from":"9726","_to":"12952"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"113350","_from":"9727","_to":"66772"} +{"$label":"ACTS_IN","name":"DI Annette Ballard","type":"Role","_key":"103071","_from":"9727","_to":"60629"} +{"$label":"ACTS_IN","name":"Elise Moran","type":"Role","_key":"95549","_from":"9727","_to":"56192"} +{"$label":"ACTS_IN","name":"Miss Dickinson","type":"Role","_key":"65418","_from":"9727","_to":"40563"} +{"$label":"ACTS_IN","name":"Katherine 'Kitty' Brydon","type":"Role","_key":"65204","_from":"9727","_to":"40494"} +{"$label":"ACTS_IN","name":"Kathryn","type":"Role","_key":"52233","_from":"9727","_to":"34021"} +{"$label":"ACTS_IN","name":"K\u00e4the","type":"Role","_key":"49233","_from":"9727","_to":"32251"} +{"$label":"ACTS_IN","name":"Angelika","type":"Role","_key":"31750","_from":"9727","_to":"22160"} +{"$label":"ACTS_IN","name":"Gina McVey","type":"Role","_key":"27494","_from":"9727","_to":"19733"} +{"$label":"ACTS_IN","name":"Luce","type":"Role","_key":"13671","_from":"9727","_to":"10618"} +{"$label":"ACTS_IN","name":"Billy Russoti \/ Jigsaw","type":"Role","_key":"92229","_from":"9728","_to":"54425"} +{"$label":"ACTS_IN","name":"Kirk Cuddy","type":"Role","_key":"89947","_from":"9728","_to":"53214"} +{"$label":"ACTS_IN","name":"Bill Dunbar","type":"Role","_key":"72181","_from":"9728","_to":"43624"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"63501","_from":"9728","_to":"39760"} +{"$label":"ACTS_IN","name":"Ash Correll","type":"Role","_key":"61227","_from":"9728","_to":"38671"} +{"$label":"ACTS_IN","name":"Fred Casely","type":"Role","_key":"13932","_from":"9728","_to":"10805"} +{"$label":"ACTS_IN","name":"Lt. Archie Hicox","type":"Role","_key":"110266","_from":"9729","_to":"65170"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"94917","_from":"9729","_to":"55885"} +{"$label":"ACTS_IN","name":"Bobby Sands","type":"Role","_key":"62790","_from":"9729","_to":"39464"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51615","_from":"9730","_to":"33675"} +{"$label":"ACTS_IN","name":"Ramiro","type":"Role","_key":"51381","_from":"9730","_to":"33507"} +{"$label":"ACTS_IN","name":"Ra\u00fal Castro","type":"Role","_key":"51250","_from":"9730","_to":"33420"} +{"$label":"ACTS_IN","name":"Lady Di","type":"Role","_key":"49787","_from":"9730","_to":"32571"} +{"$label":"ACTS_IN","name":"Cpl. Schenke","type":"Role","_key":"46741","_from":"9731","_to":"30841"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"114604","_from":"9732","_to":"67509"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"110811","_from":"9733","_to":"65453"} +{"$label":"ACTS_IN","name":"Voice of Icarus","type":"Role","_key":"12431","_from":"9739","_to":"9736"} +{"$label":"ACTS_IN","name":"Trey","type":"Role","_key":"12429","_from":"9738","_to":"9736"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"12428","_from":"9737","_to":"9736"} +{"$label":"ACTS_IN","name":"Ron Abler","type":"Role","_key":"106796","_from":"9737","_to":"62951"} +{"$label":"ACTS_IN","name":"Avner Less","type":"Role","_key":"101443","_from":"9737","_to":"59717"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"64284","_from":"9737","_to":"40082"} +{"$label":"ACTS_IN","name":"Harvey Pollard","type":"Role","_key":"26476","_from":"9737","_to":"19030"} +{"$label":"ACTS_IN","name":"Kung Sang","type":"Role","_key":"113746","_from":"9738","_to":"67029"} +{"$label":"ACTS_IN","name":"Thompson","type":"Role","_key":"112216","_from":"9738","_to":"66267"} +{"$label":"ACTS_IN","name":"Guo Yi","type":"Role","_key":"27265","_from":"9738","_to":"19605"} +{"$label":"ACTS_IN","name":"Ed Gore","type":"Role","_key":"25442","_from":"9738","_to":"18349"} +{"$label":"ACTS_IN","name":"University Friend","type":"Role","_key":"56633","_from":"9739","_to":"35969"} +{"$label":"ACTS_IN","name":"Raphael\/Nightwatcher (voice)","type":"Role","_key":"12443","_from":"9746","_to":"9740"} +{"$label":"ACTS_IN","name":"Michelangelo (voice)","type":"Role","_key":"12442","_from":"9745","_to":"9740"} +{"$label":"ACTS_IN","name":"Leonardo (voice)","type":"Role","_key":"12441","_from":"9744","_to":"9740"} +{"$label":"ACTS_IN","name":"Donatello (voice)","type":"Role","_key":"12440","_from":"9743","_to":"9740"} +{"$label":"ACTS_IN","name":"Diner (voice)","type":"Role","_key":"12437","_from":"9742","_to":"9740"} +{"$label":"DIRECTED","_key":"12432","_from":"9741","_to":"9740"} +{"$label":"ACTS_IN","name":"Kevin Smith","type":"Role","_key":"110967","_from":"9742","_to":"65542"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109994","_from":"9742","_to":"64996"} +{"$label":"ACTS_IN","name":"Rusty #2","type":"Role","_key":"101121","_from":"9742","_to":"59581"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99738","_from":"9742","_to":"58821"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"95784","_from":"9742","_to":"56339"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"30307","_from":"9742","_to":"21314"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"20150","_from":"9742","_to":"14789"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"20128","_from":"9742","_to":"14786"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"20115","_from":"9742","_to":"14782"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"20104","_from":"9742","_to":"14773"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"19742","_from":"9742","_to":"14591"} +{"$label":"ACTS_IN","name":"Silent Bob","type":"Role","_key":"15814","_from":"9742","_to":"12037"} +{"$label":"ACTS_IN","name":"The Warlock","type":"Role","_key":"13895","_from":"9742","_to":"10786"} +{"$label":"DIRECTED","_key":"62771","_from":"9742","_to":"39457"} +{"$label":"DIRECTED","_key":"54562","_from":"9742","_to":"34963"} +{"$label":"DIRECTED","_key":"20146","_from":"9742","_to":"14789"} +{"$label":"DIRECTED","_key":"20127","_from":"9742","_to":"14786"} +{"$label":"DIRECTED","_key":"20114","_from":"9742","_to":"14782"} +{"$label":"DIRECTED","_key":"20100","_from":"9742","_to":"14773"} +{"$label":"DIRECTED","_key":"19749","_from":"9742","_to":"14591"} +{"$label":"DIRECTED","_key":"15824","_from":"9742","_to":"12037"} +{"$label":"ACTS_IN","name":"Sol","type":"Role","_key":"121564","_from":"9743","_to":"71425"} +{"$label":"ACTS_IN","name":"Stan Rothenstein","type":"Role","_key":"62893","_from":"9743","_to":"39510"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"51729","_from":"9744","_to":"33754"} +{"$label":"ACTS_IN","name":"Narrator ( voice )","type":"Role","_key":"45806","_from":"9744","_to":"30298"} +{"$label":"ACTS_IN","name":"Giant Man","type":"Role","_key":"101084","_from":"9746","_to":"59562"} +{"$label":"ACTS_IN","name":"Giant Man","type":"Role","_key":"101072","_from":"9746","_to":"59555"} +{"$label":"ACTS_IN","name":"Kartoffelh\u00e4ndler","type":"Role","_key":"12459","_from":"9761","_to":"9747"} +{"$label":"ACTS_IN","name":"Lehrling Inas","type":"Role","_key":"12458","_from":"9760","_to":"9747"} +{"$label":"ACTS_IN","name":"Chefkoch Istvan","type":"Role","_key":"12457","_from":"9759","_to":"9747"} +{"$label":"ACTS_IN","name":"Zeichner Torresz","type":"Role","_key":"12456","_from":"9758","_to":"9747"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"12455","_from":"9757","_to":"9747"} +{"$label":"ACTS_IN","name":"Frau Botschafter","type":"Role","_key":"12454","_from":"9756","_to":"9747"} +{"$label":"ACTS_IN","name":"Botschafter","type":"Role","_key":"12453","_from":"9755","_to":"9747"} +{"$label":"ACTS_IN","name":"Frau Wieck","type":"Role","_key":"12452","_from":"9754","_to":"9747"} +{"$label":"ACTS_IN","name":"Der alte Wieck","type":"Role","_key":"12451","_from":"9753","_to":"9747"} +{"$label":"ACTS_IN","name":"Geigenspieler","type":"Role","_key":"12450","_from":"9752","_to":"9747"} +{"$label":"ACTS_IN","name":"Ilonas Sohn","type":"Role","_key":"12449","_from":"9751","_to":"9747"} +{"$label":"ACTS_IN","name":"Andr\u00e1s","type":"Role","_key":"12448","_from":"9750","_to":"9747"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"12445","_from":"9749","_to":"9747"} +{"$label":"DIRECTED","_key":"12444","_from":"9748","_to":"9747"} +{"$label":"DIRECTED","_key":"47182","_from":"9748","_to":"31101"} +{"$label":"DIRECTED","_key":"31275","_from":"9748","_to":"21878"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"99250","_from":"9749","_to":"58489"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"46025","_from":"9749","_to":"30414"} +{"$label":"ACTS_IN","name":"Luca","type":"Role","_key":"102990","_from":"9750","_to":"60579"} +{"$label":"ACTS_IN","name":"Carlo Broschi (Farinelli)","type":"Role","_key":"66946","_from":"9750","_to":"41331"} +{"$label":"ACTS_IN","name":"Pharao","type":"Role","_key":"21065","_from":"9750","_to":"15413"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"20960","_from":"9750","_to":"15337"} +{"$label":"ACTS_IN","name":"L\u00e1szl\u00f3 Moln\u00e1r","type":"Role","_key":"111616","_from":"9751","_to":"65897"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40630","_from":"9753","_to":"27360"} +{"$label":"ACTS_IN","name":"Staatsanwalt Hach","type":"Role","_key":"33851","_from":"9753","_to":"23320"} +{"$label":"ACTS_IN","name":"Bartel","type":"Role","_key":"19306","_from":"9759","_to":"14272"} +{"$label":"ACTS_IN","name":"Elviz","type":"Role","_key":"68539","_from":"9760","_to":"42028"} +{"$label":"ACTS_IN","name":"Gabi Delgado","type":"Role","_key":"55678","_from":"9760","_to":"35440"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"54351","_from":"9760","_to":"34866"} +{"$label":"ACTS_IN","name":"Chiko","type":"Role","_key":"47979","_from":"9760","_to":"31568"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"19074","_from":"9760","_to":"14091"} +{"$label":"ACTS_IN","name":"Ibo","type":"Role","_key":"17395","_from":"9760","_to":"13011"} +{"$label":"ACTS_IN","name":"Theo's Girlfriend","type":"Role","_key":"12471","_from":"9771","_to":"9762"} +{"$label":"ACTS_IN","name":"The Usherette","type":"Role","_key":"12470","_from":"9770","_to":"9762"} +{"$label":"ACTS_IN","name":"Second Buff","type":"Role","_key":"12469","_from":"9769","_to":"9762"} +{"$label":"ACTS_IN","name":"First Buff","type":"Role","_key":"12468","_from":"9768","_to":"9762"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"12467","_from":"9767","_to":"9762"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"12465","_from":"9766","_to":"9762"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"12464","_from":"9765","_to":"9762"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"12462","_from":"9764","_to":"9762"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"12461","_from":"9763","_to":"9762"} +{"$label":"ACTS_IN","name":"Clarisse","type":"Role","_key":"70520","_from":"9763","_to":"42926"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"51287","_from":"9763","_to":"33450"} +{"$label":"ACTS_IN","name":"Serafina Pekkala","type":"Role","_key":"19912","_from":"9763","_to":"14664"} +{"$label":"ACTS_IN","name":"Sibylla","type":"Role","_key":"13541","_from":"9763","_to":"10534"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"101305","_from":"9764","_to":"59644"} +{"$label":"ACTS_IN","name":"Isma\u00ebl B\u00e9noliel","type":"Role","_key":"100352","_from":"9764","_to":"59177"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"51363","_from":"9764","_to":"33492"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"43008","_from":"9764","_to":"28730"} +{"$label":"ACTS_IN","name":"Philippe Charmant-Killman","type":"Role","_key":"91194","_from":"9765","_to":"53783"} +{"$label":"ACTS_IN","name":"Courfeyrac","type":"Role","_key":"31618","_from":"9765","_to":"22071"} +{"$label":"ACTS_IN","name":"Hazan","type":"Role","_key":"30709","_from":"9765","_to":"21541"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Lingre","type":"Role","_key":"89129","_from":"9766","_to":"52799"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"71467","_from":"9766","_to":"43324"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"48802","_from":"9766","_to":"32007"} +{"$label":"ACTS_IN","name":"Le chef du FLSO","type":"Role","_key":"48088","_from":"9766","_to":"31610"} +{"$label":"ACTS_IN","name":"Lafont","type":"Role","_key":"33759","_from":"9766","_to":"23279"} +{"$label":"ACTS_IN","name":"l'informateur","type":"Role","_key":"29442","_from":"9766","_to":"20878"} +{"$label":"ACTS_IN","name":"Massoulier","type":"Role","_key":"21542","_from":"9766","_to":"15751"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"15595","_from":"9769","_to":"11896"} +{"$label":"ACTS_IN","name":"Happy Guy","type":"Role","_key":"12480","_from":"9778","_to":"9772"} +{"$label":"ACTS_IN","name":"Tidily Guy","type":"Role","_key":"12479","_from":"9777","_to":"9772"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"12477","_from":"9776","_to":"9772"} +{"$label":"ACTS_IN","name":"Yeong-ki","type":"Role","_key":"12476","_from":"9775","_to":"9772"} +{"$label":"ACTS_IN","name":"Yeo-jin","type":"Role","_key":"12475","_from":"9774","_to":"9772"} +{"$label":"ACTS_IN","name":"Jae-yeong","type":"Role","_key":"12474","_from":"9773","_to":"9772"} +{"$label":"ACTS_IN","name":"Junges M\u00e4dchen","type":"Role","_key":"17014","_from":"9773","_to":"12766"} +{"$label":"ACTS_IN","name":"Ji-eun","type":"Role","_key":"12491","_from":"9789","_to":"9779"} +{"$label":"ACTS_IN","name":"Hyun-soo","type":"Role","_key":"12490","_from":"9788","_to":"9779"} +{"$label":"ACTS_IN","name":"Jee-ah","type":"Role","_key":"12489","_from":"9787","_to":"9779"} +{"$label":"ACTS_IN","name":"Sung-hyuk","type":"Role","_key":"12488","_from":"9786","_to":"9779"} +{"$label":"ACTS_IN","name":"Daughter-in-law of Old Man","type":"Role","_key":"12487","_from":"9785","_to":"9779"} +{"$label":"ACTS_IN","name":"Son of Old Man","type":"Role","_key":"12486","_from":"9784","_to":"9779"} +{"$label":"ACTS_IN","name":"Jailor","type":"Role","_key":"12485","_from":"9783","_to":"9779"} +{"$label":"ACTS_IN","name":"Min-gyu","type":"Role","_key":"12484","_from":"9782","_to":"9779"} +{"$label":"ACTS_IN","name":"Tae-suk","type":"Role","_key":"12483","_from":"9781","_to":"9779"} +{"$label":"ACTS_IN","name":"Sun-hwa","type":"Role","_key":"12482","_from":"9780","_to":"9779"} +{"$label":"ACTS_IN","name":"Dr. Rosenblum","type":"Role","_key":"12507","_from":"9799","_to":"9790"} +{"$label":"ACTS_IN","name":"Delilah","type":"Role","_key":"12506","_from":"9798","_to":"9790"} +{"$label":"ACTS_IN","name":"Lord Walton","type":"Role","_key":"12504","_from":"9797","_to":"9790"} +{"$label":"ACTS_IN","name":"Kevin Langley","type":"Role","_key":"12503","_from":"9796","_to":"9790"} +{"$label":"ACTS_IN","name":"Stingo Wheelie","type":"Role","_key":"12501","_from":"9795","_to":"9790"} +{"$label":"ACTS_IN","name":"Security Buck","type":"Role","_key":"12500","_from":"9794","_to":"9790"} +{"$label":"ACTS_IN","name":"Elmer","type":"Role","_key":"12499","_from":"9793","_to":"9790"} +{"$label":"ACTS_IN","name":"General Newton","type":"Role","_key":"12498","_from":"9792","_to":"9790"} +{"$label":"DIRECTED","_key":"12492","_from":"9791","_to":"9790"} +{"$label":"ACTS_IN","name":"Professor Cranshaw","type":"Role","_key":"107872","_from":"9791","_to":"63704"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"69745","_from":"9791","_to":"42567"} +{"$label":"ACTS_IN","name":"The Albino","type":"Role","_key":"21710","_from":"9791","_to":"15866"} +{"$label":"DIRECTED","_key":"104435","_from":"9791","_to":"61430"} +{"$label":"DIRECTED","_key":"59720","_from":"9791","_to":"37714"} +{"$label":"ACTS_IN","name":"Stroker Ace","type":"Role","_key":"119412","_from":"9792","_to":"70159"} +{"$label":"ACTS_IN","name":"Joey 'Bats' Pistella","type":"Role","_key":"118928","_from":"9792","_to":"69895"} +{"$label":"ACTS_IN","name":"Billy Cole","type":"Role","_key":"116135","_from":"9792","_to":"68383"} +{"$label":"ACTS_IN","name":"Jefferson Steel","type":"Role","_key":"114700","_from":"9792","_to":"67565"} +{"$label":"ACTS_IN","name":"Mike Murphy","type":"Role","_key":"110644","_from":"9792","_to":"65366"} +{"$label":"ACTS_IN","name":"Sheriff Ed Earl Dodd","type":"Role","_key":"108886","_from":"9792","_to":"64354"} +{"$label":"ACTS_IN","name":"Sonny Hooper","type":"Role","_key":"108140","_from":"9792","_to":"63912"} +{"$label":"ACTS_IN","name":"Judge Walter Burns","type":"Role","_key":"103561","_from":"9792","_to":"60910"} +{"$label":"ACTS_IN","name":"Tom Sharky","type":"Role","_key":"101355","_from":"9792","_to":"59665"} +{"$label":"ACTS_IN","name":"Jake Delton","type":"Role","_key":"97166","_from":"9792","_to":"57155"} +{"$label":"ACTS_IN","name":"'Bandit'","type":"Role","_key":"91133","_from":"9792","_to":"53765"} +{"$label":"ACTS_IN","name":"Nick McKenna","type":"Role","_key":"90374","_from":"9792","_to":"53406"} +{"$label":"ACTS_IN","name":"J.J. McClure","type":"Role","_key":"72919","_from":"9792","_to":"43910"} +{"$label":"ACTS_IN","name":"Goldbluth","type":"Role","_key":"71652","_from":"9792","_to":"43385"} +{"$label":"ACTS_IN","name":"Switchboard","type":"Role","_key":"71121","_from":"9792","_to":"43172"} +{"$label":"ACTS_IN","name":"Charlie B. Barkin","type":"Role","_key":"70179","_from":"9792","_to":"42776"} +{"$label":"ACTS_IN","name":"J.J. McClure","type":"Role","_key":"68905","_from":"9792","_to":"42196"} +{"$label":"ACTS_IN","name":"Tommy Vinson","type":"Role","_key":"67974","_from":"9792","_to":"41766"} +{"$label":"ACTS_IN","name":"Bo 'Bandit' Darville","type":"Role","_key":"67234","_from":"9792","_to":"41458"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"64942","_from":"9792","_to":"40375"} +{"$label":"ACTS_IN","name":"David Dilbeck","type":"Role","_key":"57556","_from":"9792","_to":"36462"} +{"$label":"ACTS_IN","name":"General Montgomery","type":"Role","_key":"56118","_from":"9792","_to":"35670"} +{"$label":"ACTS_IN","name":"Coach Nate Scarborough","type":"Role","_key":"52911","_from":"9792","_to":"34291"} +{"$label":"ACTS_IN","name":"Sam Whiskey","type":"Role","_key":"50499","_from":"9792","_to":"32983"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"43570","_from":"9792","_to":"29101"} +{"$label":"ACTS_IN","name":"Jack Horner","type":"Role","_key":"35438","_from":"9792","_to":"24109"} +{"$label":"ACTS_IN","name":"Caine","type":"Role","_key":"35422","_from":"9792","_to":"24102"} +{"$label":"ACTS_IN","name":"Phil Gaines","type":"Role","_key":"35391","_from":"9792","_to":"24086"} +{"$label":"ACTS_IN","name":"Shamus McCoy","type":"Role","_key":"35387","_from":"9792","_to":"24083"} +{"$label":"ACTS_IN","name":"Billy Clyde Puckett","type":"Role","_key":"35376","_from":"9792","_to":"24080"} +{"$label":"ACTS_IN","name":"Det. Steve Carella","type":"Role","_key":"35349","_from":"9792","_to":"24069"} +{"$label":"ACTS_IN","name":"Paul Crewe","type":"Role","_key":"35341","_from":"9792","_to":"24065"} +{"$label":"ACTS_IN","name":"Gator McKlusky","type":"Role","_key":"35332","_from":"9792","_to":"24063"} +{"$label":"ACTS_IN","name":"Simon Zuniga","type":"Role","_key":"35325","_from":"9792","_to":"24060"} +{"$label":"ACTS_IN","name":"Michael Oliver Pritchard III","type":"Role","_key":"33504","_from":"9792","_to":"23176"} +{"$label":"ACTS_IN","name":"Les Williams","type":"Role","_key":"26128","_from":"9792","_to":"18769"} +{"$label":"ACTS_IN","name":"King Konreid","type":"Role","_key":"20321","_from":"9792","_to":"14887"} +{"$label":"DIRECTED","_key":"101354","_from":"9792","_to":"59665"} +{"$label":"ACTS_IN","name":"Robert G. Durant","type":"Role","_key":"118432","_from":"9793","_to":"69624"} +{"$label":"ACTS_IN","name":"Armand","type":"Role","_key":"114602","_from":"9793","_to":"67509"} +{"$label":"ACTS_IN","name":"Dean Dryer","type":"Role","_key":"60737","_from":"9793","_to":"38355"} +{"$label":"ACTS_IN","name":"Robert G. Durant","type":"Role","_key":"54652","_from":"9793","_to":"35004"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"101700","_from":"9795","_to":"59855"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"51700","_from":"9795","_to":"33701"} +{"$label":"ACTS_IN","name":"Russel Rusty Griswold","type":"Role","_key":"39623","_from":"9795","_to":"26781"} +{"$label":"ACTS_IN","name":"Max Neurick","type":"Role","_key":"28291","_from":"9795","_to":"20249"} +{"$label":"ACTS_IN","name":"Tommy Briggs","type":"Role","_key":"45576","_from":"9796","_to":"30170"} +{"$label":"ACTS_IN","name":"Frederick","type":"Role","_key":"95546","_from":"9797","_to":"56192"} +{"$label":"ACTS_IN","name":"Gyllenhaal","type":"Role","_key":"60498","_from":"9797","_to":"38170"} +{"$label":"ACTS_IN","name":"Dr. Griffin Pratt","type":"Role","_key":"46239","_from":"9797","_to":"30564"} +{"$label":"ACTS_IN","name":"Victor Ellis","type":"Role","_key":"45373","_from":"9797","_to":"30086"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"19099","_from":"9797","_to":"14109"} +{"$label":"ACTS_IN","name":"Himself (Zephyr skate team)","type":"Role","_key":"12510","_from":"9801","_to":"9800"} +{"$label":"DIRECTED","_key":"12514","_from":"9803","_to":"9802"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis Torrente","type":"Role","_key":"12513","_from":"9803","_to":"9802"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Mar\u00eda","type":"Role","_key":"65252","_from":"9803","_to":"40506"} +{"$label":"ACTS_IN","name":"Oscar V\u00e1squez","type":"Role","_key":"37930","_from":"9803","_to":"25681"} +{"$label":"ACTS_IN","name":"Doktormabus","type":"Role","_key":"20983","_from":"9803","_to":"15344"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis Torrente","type":"Role","_key":"12521","_from":"9803","_to":"9808"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis Torrente","type":"Role","_key":"12516","_from":"9803","_to":"9804"} +{"$label":"DIRECTED","_key":"12520","_from":"9803","_to":"9808"} +{"$label":"DIRECTED","_key":"12515","_from":"9803","_to":"9804"} +{"$label":"ACTS_IN","name":"Spinello","type":"Role","_key":"12519","_from":"9807","_to":"9804"} +{"$label":"ACTS_IN","name":"Mauricio Torrente","type":"Role","_key":"12518","_from":"9806","_to":"9804"} +{"$label":"ACTS_IN","name":"Cuco","type":"Role","_key":"12517","_from":"9805","_to":"9804"} +{"$label":"ACTS_IN","name":"Juanito","type":"Role","_key":"21658","_from":"9805","_to":"15835"} +{"$label":"ACTS_IN","name":"Torrentes Gro\u00dfmutter","type":"Role","_key":"12525","_from":"9806","_to":"9808"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Mar\u00eda","type":"Role","_key":"12529","_from":"9813","_to":"9808"} +{"$label":"ACTS_IN","name":"Montellini","type":"Role","_key":"12528","_from":"9812","_to":"9808"} +{"$label":"ACTS_IN","name":"Josito","type":"Role","_key":"12524","_from":"9811","_to":"9808"} +{"$label":"ACTS_IN","name":"Sol\u00eds","type":"Role","_key":"12523","_from":"9810","_to":"9808"} +{"$label":"ACTS_IN","name":"Giannina Ricci","type":"Role","_key":"12522","_from":"9809","_to":"9808"} +{"$label":"ACTS_IN","name":"Jehudit","type":"Role","_key":"22942","_from":"9809","_to":"16632"} +{"$label":"ACTS_IN","name":"Komplizin des Taschendiebs","type":"Role","_key":"21472","_from":"9809","_to":"15682"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"23073","_from":"9810","_to":"16717"} +{"$label":"ACTS_IN","name":"Enrico Henry Rosseni","type":"Role","_key":"44220","_from":"9812","_to":"29470"} +{"$label":"ACTS_IN","name":"Georges Gasset","type":"Role","_key":"34041","_from":"9812","_to":"23410"} +{"$label":"ACTS_IN","name":"Don Gaetano Fungillo","type":"Role","_key":"34036","_from":"9812","_to":"23407"} +{"$label":"ACTS_IN","name":"Buenaventura Diaz","type":"Role","_key":"34020","_from":"9812","_to":"23403"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"34013","_from":"9812","_to":"23398"} +{"$label":"ACTS_IN","name":"Milo Ruiz","type":"Role","_key":"33999","_from":"9812","_to":"23394"} +{"$label":"ACTS_IN","name":"Servais Mont","type":"Role","_key":"27307","_from":"9812","_to":"19632"} +{"$label":"ACTS_IN","name":"M\u00fctze","type":"Role","_key":"12533","_from":"9818","_to":"9814"} +{"$label":"ACTS_IN","name":"Jenny von Loeben","type":"Role","_key":"12532","_from":"9817","_to":"9814"} +{"$label":"ACTS_IN","name":"Traude Kr\u00fcger","type":"Role","_key":"12531","_from":"9816","_to":"9814"} +{"$label":"DIRECTED","_key":"12530","_from":"9815","_to":"9814"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"69846","_from":"9816","_to":"42623"} +{"$label":"ACTS_IN","name":"Walpurgia","type":"Role","_key":"52654","_from":"9816","_to":"34197"} +{"$label":"ACTS_IN","name":"Mrs. Hinze","type":"Role","_key":"52261","_from":"9816","_to":"34027"} +{"$label":"ACTS_IN","name":"Aloisia Habesam","type":"Role","_key":"42727","_from":"9816","_to":"28599"} +{"$label":"ACTS_IN","name":"Frau Moser","type":"Role","_key":"40648","_from":"9816","_to":"27367"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"40028","_from":"9816","_to":"27025"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"37295","_from":"9816","_to":"25274"} +{"$label":"ACTS_IN","name":"Mietzi","type":"Role","_key":"30397","_from":"9816","_to":"21376"} +{"$label":"ACTS_IN","name":"Katia Mann","type":"Role","_key":"20006","_from":"9816","_to":"14724"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"51338","_from":"9817","_to":"33478"} +{"$label":"ACTS_IN","name":"Ratte","type":"Role","_key":"48434","_from":"9817","_to":"31785"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"47906","_from":"9817","_to":"31517"} +{"$label":"ACTS_IN","name":"Susanne Albrecht","type":"Role","_key":"45436","_from":"9817","_to":"30115"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42952","_from":"9818","_to":"28693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"12537","_from":"9821","_to":"9819"} +{"$label":"DIRECTED","_key":"12536","_from":"9820","_to":"9819"} +{"$label":"DIRECTED","_key":"99466","_from":"9820","_to":"58634"} +{"$label":"DIRECTED","_key":"91078","_from":"9820","_to":"53738"} +{"$label":"DIRECTED","_key":"51066","_from":"9820","_to":"33321"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"91076","_from":"9820","_to":"53738"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116790","_from":"9821","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"34271","_from":"9821","_to":"23516"} +{"$label":"ACTS_IN","name":"Sabrina","type":"Role","_key":"12553","_from":"9829","_to":"9822"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"12552","_from":"9828","_to":"9822"} +{"$label":"ACTS_IN","name":"Harold Carnes","type":"Role","_key":"12551","_from":"9827","_to":"9822"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"12550","_from":"9826","_to":"9822"} +{"$label":"ACTS_IN","name":"Courtney Rawlinson","type":"Role","_key":"12545","_from":"9825","_to":"9822"} +{"$label":"ACTS_IN","name":"David Van Patten","type":"Role","_key":"12543","_from":"9824","_to":"9822"} +{"$label":"DIRECTED","_key":"12538","_from":"9823","_to":"9822"} +{"$label":"DIRECTED","_key":"104302","_from":"9823","_to":"61366"} +{"$label":"ACTS_IN","name":"Jean Driscoll","type":"Role","_key":"114971","_from":"9825","_to":"67709"} +{"$label":"ACTS_IN","name":"Gwenwyfar","type":"Role","_key":"102806","_from":"9825","_to":"60475"} +{"$label":"ACTS_IN","name":"Crysta (voice)","type":"Role","_key":"93532","_from":"9825","_to":"55072"} +{"$label":"ACTS_IN","name":"Princess Daisy","type":"Role","_key":"54994","_from":"9825","_to":"35146"} +{"$label":"ACTS_IN","name":"Older Amy March","type":"Role","_key":"54860","_from":"9825","_to":"35089"} +{"$label":"ACTS_IN","name":"Terry Carmichael","type":"Role","_key":"52588","_from":"9825","_to":"34175"} +{"$label":"ACTS_IN","name":"Nora Diniro","type":"Role","_key":"49671","_from":"9825","_to":"32500"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"46002","_from":"9825","_to":"30406"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"20420","_from":"9825","_to":"14941"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"17569","_from":"9825","_to":"13129"} +{"$label":"ACTS_IN","name":"Reporter Marcy Maloney","type":"Role","_key":"63813","_from":"9826","_to":"39897"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Breton","type":"Role","_key":"12567","_from":"9835","_to":"9830"} +{"$label":"ACTS_IN","name":"Natalia Trotsky","type":"Role","_key":"12566","_from":"9834","_to":"9830"} +{"$label":"ACTS_IN","name":"Guillermo Kahlo","type":"Role","_key":"12560","_from":"9833","_to":"9830"} +{"$label":"ACTS_IN","name":"Matilde Kahlo","type":"Role","_key":"12558","_from":"9832","_to":"9830"} +{"$label":"DIRECTED","_key":"12554","_from":"9831","_to":"9830"} +{"$label":"DIRECTED","_key":"90044","_from":"9831","_to":"53259"} +{"$label":"DIRECTED","_key":"33410","_from":"9831","_to":"23124"} +{"$label":"ACTS_IN","name":"Fred Holywell \/ Narrator","type":"Role","_key":"93336","_from":"9833","_to":"54986"} +{"$label":"ACTS_IN","name":"Parnell","type":"Role","_key":"57541","_from":"9833","_to":"36453"} +{"$label":"ACTS_IN","name":"Sheriff of Rotingham","type":"Role","_key":"47711","_from":"9833","_to":"31431"} +{"$label":"ACTS_IN","name":"Yorish","type":"Role","_key":"34429","_from":"9833","_to":"23588"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25902","_from":"9833","_to":"18639"} +{"$label":"ACTS_IN","name":"Joseph Bruce Ismay","type":"Role","_key":"22776","_from":"9833","_to":"16516"} +{"$label":"ACTS_IN","name":"Susanita","type":"Role","_key":"115310","_from":"9834","_to":"67891"} +{"$label":"ACTS_IN","name":"Eowyn","type":"Role","_key":"12579","_from":"9844","_to":"9836"} +{"$label":"ACTS_IN","name":"Peregrin Took","type":"Role","_key":"12578","_from":"9843","_to":"9836"} +{"$label":"ACTS_IN","name":"Meriadoc Brandybuck","type":"Role","_key":"12577","_from":"9842","_to":"9836"} +{"$label":"ACTS_IN","name":"Goblin\/Elrond","type":"Role","_key":"12576","_from":"9841","_to":"9836"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"12575","_from":"9840","_to":"9836"} +{"$label":"ACTS_IN","name":"Denethor","type":"Role","_key":"12572","_from":"9839","_to":"9836"} +{"$label":"DIRECTED","_key":"12569","_from":"9838","_to":"9836"} +{"$label":"DIRECTED","_key":"12568","_from":"9837","_to":"9836"} +{"$label":"DIRECTED","_key":"95832","_from":"9837","_to":"56360"} +{"$label":"DIRECTED","_key":"94303","_from":"9837","_to":"55537"} +{"$label":"DIRECTED","_key":"94297","_from":"9837","_to":"55531"} +{"$label":"DIRECTED","_key":"61248","_from":"9837","_to":"38678"} +{"$label":"DIRECTED","_key":"12581","_from":"9837","_to":"9845"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"37619","_from":"9837","_to":"25499"} +{"$label":"DIRECTED","_key":"111767","_from":"9838","_to":"65967"} +{"$label":"DIRECTED","_key":"95831","_from":"9838","_to":"56360"} +{"$label":"DIRECTED","_key":"94302","_from":"9838","_to":"55537"} +{"$label":"DIRECTED","_key":"94296","_from":"9838","_to":"55531"} +{"$label":"DIRECTED","_key":"61247","_from":"9838","_to":"38678"} +{"$label":"DIRECTED","_key":"12580","_from":"9838","_to":"9845"} +{"$label":"ACTS_IN","name":"Quinn","type":"Role","_key":"112426","_from":"9839","_to":"66378"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"101239","_from":"9839","_to":"59623"} +{"$label":"ACTS_IN","name":"(in \"The Killers\") (archive footage)","type":"Role","_key":"53890","_from":"9839","_to":"34691"} +{"$label":"ACTS_IN","name":"Uncle Reuben Klopek","type":"Role","_key":"73093","_from":"9840","_to":"43971"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"12588","_from":"9840","_to":"9845"} +{"$label":"ACTS_IN","name":"The True Spirit of Adventure \/ Narrator","type":"Role","_key":"120961","_from":"9841","_to":"71045"} +{"$label":"ACTS_IN","name":"Santa Claus \/ Traffic Cop \/ Additional Voices (voice)","type":"Role","_key":"95836","_from":"9841","_to":"56360"} +{"$label":"ACTS_IN","name":"Mayor Burgermeister Meisterburger","type":"Role","_key":"94307","_from":"9841","_to":"55537"} +{"$label":"ACTS_IN","name":"Bombur\/Troll #1","type":"Role","_key":"12589","_from":"9841","_to":"9845"} +{"$label":"ACTS_IN","name":"Shaggy (voice)","type":"Role","_key":"109048","_from":"9842","_to":"64441"} +{"$label":"ACTS_IN","name":"Shaggy (voice)","type":"Role","_key":"94089","_from":"9842","_to":"55405"} +{"$label":"ACTS_IN","name":"Shaggy","type":"Role","_key":"91890","_from":"9842","_to":"54212"} +{"$label":"ACTS_IN","name":"Birnie","type":"Role","_key":"34801","_from":"9842","_to":"23780"} +{"$label":"ACTS_IN","name":"The Tree","type":"Role","_key":"61255","_from":"9844","_to":"38678"} +{"$label":"ACTS_IN","name":"Balin\/Troll #3\/Goblin\/Lord of the Eagles","type":"Role","_key":"12590","_from":"9848","_to":"9845"} +{"$label":"ACTS_IN","name":"Thorin","type":"Role","_key":"12584","_from":"9847","_to":"9845"} +{"$label":"ACTS_IN","name":"Smaug","type":"Role","_key":"12583","_from":"9846","_to":"9845"} +{"$label":"ACTS_IN","name":"Mike Sweeney","type":"Role","_key":"90436","_from":"9846","_to":"53430"} +{"$label":"ACTS_IN","name":"Lash Cansino","type":"Role","_key":"15709","_from":"9846","_to":"11975"} +{"$label":"ACTS_IN","name":"Captain Hook \/ Mr. Darling","type":"Role","_key":"65092","_from":"9847","_to":"40438"} +{"$label":"ACTS_IN","name":"George Wickley","type":"Role","_key":"29088","_from":"9847","_to":"20731"} +{"$label":"ACTS_IN","name":"Astro (voice)","type":"Role","_key":"110881","_from":"9848","_to":"65488"} +{"$label":"ACTS_IN","name":"The Cat","type":"Role","_key":"61256","_from":"9848","_to":"38678"} +{"$label":"ACTS_IN","name":"Mrs. Young","type":"Role","_key":"12606","_from":"9857","_to":"9849"} +{"$label":"ACTS_IN","name":"Hoover Young","type":"Role","_key":"12605","_from":"9856","_to":"9849"} +{"$label":"ACTS_IN","name":"Art Logan","type":"Role","_key":"12604","_from":"9855","_to":"9849"} +{"$label":"ACTS_IN","name":"Jim Ed Love","type":"Role","_key":"12603","_from":"9854","_to":"9849"} +{"$label":"ACTS_IN","name":"Jack Couffer","type":"Role","_key":"12602","_from":"9853","_to":"9849"} +{"$label":"ACTS_IN","name":"Delfino Mondragon","type":"Role","_key":"12601","_from":"9852","_to":"9849"} +{"$label":"ACTS_IN","name":"Billy Harte","type":"Role","_key":"12600","_from":"9851","_to":"9849"} +{"$label":"ACTS_IN","name":"Levi Gomez","type":"Role","_key":"12599","_from":"9850","_to":"9849"} +{"$label":"ACTS_IN","name":"Montana","type":"Role","_key":"55858","_from":"9850","_to":"35537"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"50077","_from":"9850","_to":"32761"} +{"$label":"ACTS_IN","name":"Claire's Father","type":"Role","_key":"47196","_from":"9850","_to":"31106"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"16421","_from":"9850","_to":"12420"} +{"$label":"ACTS_IN","name":"Inspecteur Billy Jones","type":"Role","_key":"100843","_from":"9852","_to":"59452"} +{"$label":"ACTS_IN","name":"Snake","type":"Role","_key":"92287","_from":"9852","_to":"54460"} +{"$label":"ACTS_IN","name":"Reyes Morales","type":"Role","_key":"88533","_from":"9852","_to":"52472"} +{"$label":"ACTS_IN","name":"Gunner","type":"Role","_key":"63599","_from":"9852","_to":"39790"} +{"$label":"ACTS_IN","name":"Joker","type":"Role","_key":"63517","_from":"9852","_to":"39764"} +{"$label":"ACTS_IN","name":"Crank","type":"Role","_key":"56873","_from":"9852","_to":"36099"} +{"$label":"ACTS_IN","name":"Yayo Portillo","type":"Role","_key":"47801","_from":"9852","_to":"31468"} +{"$label":"ACTS_IN","name":"Manolo Sanchez","type":"Role","_key":"16401","_from":"9852","_to":"12416"} +{"$label":"ACTS_IN","name":"Sande Pollock","type":"Role","_key":"89961","_from":"9853","_to":"53218"} +{"$label":"ACTS_IN","name":"Air Traffic Controller","type":"Role","_key":"55020","_from":"9853","_to":"35160"} +{"$label":"ACTS_IN","name":"Pickett Smith","type":"Role","_key":"115628","_from":"9854","_to":"68070"} +{"$label":"ACTS_IN","name":"Virgil Earp","type":"Role","_key":"73058","_from":"9854","_to":"43963"} +{"$label":"ACTS_IN","name":"Gar","type":"Role","_key":"68343","_from":"9854","_to":"41949"} +{"$label":"ACTS_IN","name":"Brig. Gen. John Buford","type":"Role","_key":"64859","_from":"9854","_to":"40343"} +{"$label":"ACTS_IN","name":"Sgt. Maj. Basil Plumley","type":"Role","_key":"64305","_from":"9854","_to":"40088"} +{"$label":"ACTS_IN","name":"Wade Garrett","type":"Role","_key":"61150","_from":"9854","_to":"38646"} +{"$label":"ACTS_IN","name":"Ben the Cow","type":"Role","_key":"57855","_from":"9854","_to":"36614"} +{"$label":"ACTS_IN","name":"Rick Carlson","type":"Role","_key":"35515","_from":"9854","_to":"24147"} +{"$label":"ACTS_IN","name":"John Pierce","type":"Role","_key":"21406","_from":"9854","_to":"15659"} +{"$label":"ACTS_IN","name":"Lee Scoresby","type":"Role","_key":"19914","_from":"9854","_to":"14664"} +{"$label":"ACTS_IN","name":"General Thaddeus \"Thunderbolt\" Ross","type":"Role","_key":"16712","_from":"9854","_to":"12608"} +{"$label":"ACTS_IN","name":"Big Al (voice)","type":"Role","_key":"115871","_from":"9856","_to":"68225"} +{"$label":"ACTS_IN","name":"Sam Rayburn","type":"Role","_key":"110398","_from":"9856","_to":"65230"} +{"$label":"ACTS_IN","name":"Sheriff Henderson","type":"Role","_key":"100429","_from":"9856","_to":"59216"} +{"$label":"ACTS_IN","name":"Ben Hebert","type":"Role","_key":"97923","_from":"9856","_to":"57668"} +{"$label":"ACTS_IN","name":"Horsethief Shorty","type":"Role","_key":"94728","_from":"9856","_to":"55796"} +{"$label":"ACTS_IN","name":"Lou Brown","type":"Role","_key":"67674","_from":"9856","_to":"41630"} +{"$label":"ACTS_IN","name":"Lou Brown","type":"Role","_key":"58310","_from":"9856","_to":"36867"} +{"$label":"ACTS_IN","name":"Teddy Lee","type":"Role","_key":"51037","_from":"9856","_to":"33306"} +{"$label":"ACTS_IN","name":"Lt. Larry Schooner","type":"Role","_key":"25930","_from":"9856","_to":"18645"} +{"$label":"ACTS_IN","name":"Madre de Bel\u00e9n","type":"Role","_key":"12614","_from":"9864","_to":"9858"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"12613","_from":"9863","_to":"9858"} +{"$label":"ACTS_IN","name":"Carlos\/Antonio","type":"Role","_key":"12611","_from":"9862","_to":"9858"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"12610","_from":"9861","_to":"9858"} +{"$label":"ACTS_IN","name":"Lorenzo","type":"Role","_key":"12609","_from":"9860","_to":"9858"} +{"$label":"DIRECTED","_key":"12607","_from":"9859","_to":"9858"} +{"$label":"DIRECTED","_key":"22074","_from":"9859","_to":"16102"} +{"$label":"DIRECTED","_key":"21921","_from":"9859","_to":"16013"} +{"$label":"DIRECTED","_key":"21574","_from":"9859","_to":"15774"} +{"$label":"DIRECTED","_key":"21423","_from":"9859","_to":"15673"} +{"$label":"DIRECTED","_key":"21389","_from":"9859","_to":"15644"} +{"$label":"DIRECTED","_key":"13065","_from":"9859","_to":"10186"} +{"$label":"ACTS_IN","name":"Quiroga","type":"Role","_key":"53851","_from":"9860","_to":"34685"} +{"$label":"ACTS_IN","name":"Oriol Arau","type":"Role","_key":"16366","_from":"9860","_to":"12387"} +{"$label":"ACTS_IN","name":"Fina Correa","type":"Role","_key":"35510","_from":"9861","_to":"24144"} +{"$label":"ACTS_IN","name":"N\u00faria","type":"Role","_key":"16428","_from":"9861","_to":"12423"} +{"$label":"ACTS_IN","name":"Ana joven","type":"Role","_key":"13066","_from":"9861","_to":"10186"} +{"$label":"ACTS_IN","name":"Tommy Roulaine","type":"Role","_key":"12634","_from":"9877","_to":"9865"} +{"$label":"ACTS_IN","name":"Phil Huggins","type":"Role","_key":"12633","_from":"9876","_to":"9865"} +{"$label":"ACTS_IN","name":"Harvey Shoonmaker","type":"Role","_key":"12632","_from":"9875","_to":"9865"} +{"$label":"ACTS_IN","name":"Georgia Ann Paynes","type":"Role","_key":"12631","_from":"9874","_to":"9865"} +{"$label":"ACTS_IN","name":"Dappa Smith","type":"Role","_key":"12630","_from":"9873","_to":"9865"} +{"$label":"ACTS_IN","name":"Willie Cooper","type":"Role","_key":"12629","_from":"9872","_to":"9865"} +{"$label":"ACTS_IN","name":"Darryl Cooper","type":"Role","_key":"12628","_from":"9871","_to":"9865"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"12626","_from":"9870","_to":"9865"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"12625","_from":"9869","_to":"9865"} +{"$label":"ACTS_IN","name":"Lucille","type":"Role","_key":"12624","_from":"9868","_to":"9865"} +{"$label":"ACTS_IN","name":"Tyrell Musgrove","type":"Role","_key":"12622","_from":"9867","_to":"9865"} +{"$label":"ACTS_IN","name":"Lawrence Musgrove","type":"Role","_key":"12621","_from":"9866","_to":"9865"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120592","_from":"9866","_to":"70825"} +{"$label":"ACTS_IN","name":"Hollywood Nicky","type":"Role","_key":"89098","_from":"9866","_to":"52779"} +{"$label":"ACTS_IN","name":"Deputy Sheriff","type":"Role","_key":"37631","_from":"9875","_to":"25505"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"58635","_from":"9876","_to":"37036"} +{"$label":"ACTS_IN","name":"Deputy Jackson","type":"Role","_key":"18224","_from":"9876","_to":"13515"} +{"$label":"ACTS_IN","name":"TV Interviewer","type":"Role","_key":"12650","_from":"9889","_to":"9878"} +{"$label":"ACTS_IN","name":"TV Commentator 2","type":"Role","_key":"12649","_from":"9888","_to":"9878"} +{"$label":"ACTS_IN","name":"TV Commentator 1","type":"Role","_key":"12648","_from":"9887","_to":"9878"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"12647","_from":"9886","_to":"9878"} +{"$label":"ACTS_IN","name":"Cut Man","type":"Role","_key":"12645","_from":"9885","_to":"9878"} +{"$label":"ACTS_IN","name":"Fight Announcer","type":"Role","_key":"12644","_from":"9884","_to":"9878"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"12643","_from":"9883","_to":"9878"} +{"$label":"ACTS_IN","name":"Gazzo","type":"Role","_key":"12642","_from":"9882","_to":"9878"} +{"$label":"ACTS_IN","name":"Jergens","type":"Role","_key":"12641","_from":"9881","_to":"9878"} +{"$label":"ACTS_IN","name":"Mickey Goldmill","type":"Role","_key":"12640","_from":"9880","_to":"9878"} +{"$label":"DIRECTED","_key":"12635","_from":"9879","_to":"9878"} +{"$label":"DIRECTED","_key":"120266","_from":"9879","_to":"70619"} +{"$label":"DIRECTED","_key":"101137","_from":"9879","_to":"59586"} +{"$label":"DIRECTED","_key":"97036","_from":"9879","_to":"57064"} +{"$label":"DIRECTED","_key":"66646","_from":"9879","_to":"41189"} +{"$label":"DIRECTED","_key":"63676","_from":"9879","_to":"39827"} +{"$label":"DIRECTED","_key":"51149","_from":"9879","_to":"33359"} +{"$label":"DIRECTED","_key":"38615","_from":"9879","_to":"26086"} +{"$label":"DIRECTED","_key":"16269","_from":"9879","_to":"12340"} +{"$label":"DIRECTED","_key":"12778","_from":"9879","_to":"9974"} +{"$label":"ACTS_IN","name":"Charles Chazen","type":"Role","_key":"115249","_from":"9880","_to":"67870"} +{"$label":"ACTS_IN","name":"Fein","type":"Role","_key":"113839","_from":"9880","_to":"67053"} +{"$label":"ACTS_IN","name":"Herbert Gelman","type":"Role","_key":"111450","_from":"9880","_to":"65805"} +{"$label":"ACTS_IN","name":"Mr. Hennessey","type":"Role","_key":"105326","_from":"9880","_to":"61977"} +{"$label":"ACTS_IN","name":"Ancient Elf","type":"Role","_key":"96222","_from":"9880","_to":"56557"} +{"$label":"ACTS_IN","name":"Arnold Allardyce","type":"Role","_key":"95146","_from":"9880","_to":"55990"} +{"$label":"ACTS_IN","name":"Grandpa Gustafson","type":"Role","_key":"70388","_from":"9880","_to":"42869"} +{"$label":"ACTS_IN","name":"Ammon","type":"Role","_key":"62591","_from":"9880","_to":"39379"} +{"$label":"ACTS_IN","name":"Harry Greener","type":"Role","_key":"35984","_from":"9880","_to":"24437"} +{"$label":"ACTS_IN","name":"The Penguin","type":"Role","_key":"22545","_from":"9880","_to":"16373"} +{"$label":"ACTS_IN","name":"Prof. Cunningham","type":"Role","_key":"15987","_from":"9880","_to":"12154"} +{"$label":"ACTS_IN","name":"Mickey Goldmill","type":"Role","_key":"12783","_from":"9880","_to":"9974"} +{"$label":"ACTS_IN","name":"Mickey Goldmill","type":"Role","_key":"12719","_from":"9880","_to":"9935"} +{"$label":"ACTS_IN","name":"Mickey Goldmill","type":"Role","_key":"12656","_from":"9880","_to":"9890"} +{"$label":"ACTS_IN","name":"Lt. Spinell","type":"Role","_key":"118075","_from":"9882","_to":"69396"} +{"$label":"ACTS_IN","name":"Manetti","type":"Role","_key":"101599","_from":"9882","_to":"59795"} +{"$label":"ACTS_IN","name":"Jabo","type":"Role","_key":"36463","_from":"9882","_to":"24729"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"15852","_from":"9882","_to":"12058"} +{"$label":"ACTS_IN","name":"Tony Gazzo","type":"Role","_key":"12658","_from":"9882","_to":"9890"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"12787","_from":"9883","_to":"9974"} +{"$label":"ACTS_IN","name":"Commentator","type":"Role","_key":"12664","_from":"9884","_to":"9890"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"12724","_from":"9885","_to":"9935"} +{"$label":"ACTS_IN","name":"George Jetson (voice)","type":"Role","_key":"110876","_from":"9888","_to":"65488"} +{"$label":"ACTS_IN","name":"Announcer","type":"Role","_key":"12663","_from":"9894","_to":"9890"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"12662","_from":"9893","_to":"9890"} +{"$label":"ACTS_IN","name":"Mary Anne Creed","type":"Role","_key":"12660","_from":"9892","_to":"9890"} +{"$label":"ACTS_IN","name":"Agent","type":"Role","_key":"12659","_from":"9891","_to":"9890"} +{"$label":"ACTS_IN","name":"Mr. Bird, I.R.S. Man","type":"Role","_key":"102007","_from":"9891","_to":"60016"} +{"$label":"ACTS_IN","name":"Billy Rose","type":"Role","_key":"18625","_from":"9893","_to":"13782"} +{"$label":"ACTS_IN","name":"Commentator #1","type":"Role","_key":"12771","_from":"9894","_to":"9966"} +{"$label":"ACTS_IN","name":"Radio operator","type":"Role","_key":"12681","_from":"9909","_to":"9895"} +{"$label":"ACTS_IN","name":"Trooper","type":"Role","_key":"12680","_from":"9908","_to":"9895"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"12679","_from":"9907","_to":"9895"} +{"$label":"ACTS_IN","name":"Preston","type":"Role","_key":"12678","_from":"9906","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Shingleton","type":"Role","_key":"12677","_from":"9905","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Mitch","type":"Role","_key":"12676","_from":"9904","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Lester","type":"Role","_key":"12675","_from":"9903","_to":"9895"} +{"$label":"ACTS_IN","name":"Orval the Dog Man","type":"Role","_key":"12674","_from":"9902","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Ward","type":"Role","_key":"12673","_from":"9901","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Balford","type":"Role","_key":"12672","_from":"9900","_to":"9895"} +{"$label":"ACTS_IN","name":"Deputy Sgt. Arthur Galt","type":"Role","_key":"12671","_from":"9899","_to":"9895"} +{"$label":"ACTS_IN","name":"State Police Capt. Dave Kern","type":"Role","_key":"12670","_from":"9898","_to":"9895"} +{"$label":"ACTS_IN","name":"Col. Samuel Trautman","type":"Role","_key":"12668","_from":"9897","_to":"9895"} +{"$label":"DIRECTED","_key":"12666","_from":"9896","_to":"9895"} +{"$label":"DIRECTED","_key":"58670","_from":"9896","_to":"37064"} +{"$label":"DIRECTED","_key":"50093","_from":"9896","_to":"32766"} +{"$label":"DIRECTED","_key":"36792","_from":"9896","_to":"24953"} +{"$label":"DIRECTED","_key":"36574","_from":"9896","_to":"24794"} +{"$label":"ACTS_IN","name":"Al Pellet","type":"Role","_key":"119830","_from":"9897","_to":"70368"} +{"$label":"ACTS_IN","name":"Interrogator","type":"Role","_key":"119763","_from":"9897","_to":"70329"} +{"$label":"ACTS_IN","name":"George Russ","type":"Role","_key":"108459","_from":"9897","_to":"64116"} +{"$label":"ACTS_IN","name":"Edmund Walker","type":"Role","_key":"100126","_from":"9897","_to":"59059"} +{"$label":"ACTS_IN","name":"Dr. Glen Thompson","type":"Role","_key":"99848","_from":"9897","_to":"58891"} +{"$label":"ACTS_IN","name":"Governor Edwards","type":"Role","_key":"72445","_from":"9897","_to":"43723"} +{"$label":"ACTS_IN","name":"Mike Talman","type":"Role","_key":"68536","_from":"9897","_to":"42026"} +{"$label":"ACTS_IN","name":"Col. Denton Walters","type":"Role","_key":"52620","_from":"9897","_to":"34186"} +{"$label":"ACTS_IN","name":"Governor Fairchild","type":"Role","_key":"47834","_from":"9897","_to":"31490"} +{"$label":"ACTS_IN","name":"Captain Collins","type":"Role","_key":"40456","_from":"9897","_to":"27260"} +{"$label":"ACTS_IN","name":"Professor Aronnax","type":"Role","_key":"24485","_from":"9897","_to":"17705"} +{"$label":"ACTS_IN","name":"Trautman","type":"Role","_key":"12700","_from":"9897","_to":"9923"} +{"$label":"ACTS_IN","name":"Col. Samuel Trautman","type":"Role","_key":"12684","_from":"9897","_to":"9910"} +{"$label":"ACTS_IN","name":"Constable","type":"Role","_key":"113669","_from":"9898","_to":"66986"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"107260","_from":"9898","_to":"63247"} +{"$label":"ACTS_IN","name":"Benjamin Gregor","type":"Role","_key":"97598","_from":"9898","_to":"57466"} +{"$label":"ACTS_IN","name":"Terrill","type":"Role","_key":"65413","_from":"9898","_to":"40561"} +{"$label":"ACTS_IN","name":"Reverend Peabody","type":"Role","_key":"47832","_from":"9898","_to":"31490"} +{"$label":"ACTS_IN","name":"Freddy DeLois","type":"Role","_key":"46468","_from":"9900","_to":"30685"} +{"$label":"ACTS_IN","name":"Mills McCallum","type":"Role","_key":"111439","_from":"9901","_to":"65798"} +{"$label":"ACTS_IN","name":"Bill Rander","type":"Role","_key":"97323","_from":"9901","_to":"57305"} +{"$label":"ACTS_IN","name":"Agent Frank Pinsky","type":"Role","_key":"62017","_from":"9901","_to":"39042"} +{"$label":"ACTS_IN","name":"Detective James Curtis","type":"Role","_key":"57215","_from":"9901","_to":"36289"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"48355","_from":"9901","_to":"31743"} +{"$label":"ACTS_IN","name":"David Corelli","type":"Role","_key":"72442","_from":"9904","_to":"43723"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"67016","_from":"9904","_to":"41373"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"63322","_from":"9904","_to":"39696"} +{"$label":"ACTS_IN","name":"Dennis Gilley","type":"Role","_key":"54664","_from":"9904","_to":"35009"} +{"$label":"ACTS_IN","name":"Al Greco","type":"Role","_key":"54235","_from":"9904","_to":"34829"} +{"$label":"ACTS_IN","name":"Jimmy Kilmartin","type":"Role","_key":"41469","_from":"9904","_to":"27872"} +{"$label":"ACTS_IN","name":"Topper Daniels","type":"Role","_key":"22279","_from":"9904","_to":"16205"} +{"$label":"ACTS_IN","name":"Mr. Dickie","type":"Role","_key":"22796","_from":"9906","_to":"16516"} +{"$label":"ACTS_IN","name":"Retsbetjent","type":"Role","_key":"119100","_from":"9908","_to":"70002"} +{"$label":"ACTS_IN","name":"Gaius","type":"Role","_key":"22911","_from":"9909","_to":"16608"} +{"$label":"ACTS_IN","name":"Ericson","type":"Role","_key":"12697","_from":"9922","_to":"9910"} +{"$label":"ACTS_IN","name":"POW #2","type":"Role","_key":"12696","_from":"9921","_to":"9910"} +{"$label":"ACTS_IN","name":"POW #1","type":"Role","_key":"12695","_from":"9920","_to":"9910"} +{"$label":"ACTS_IN","name":"Lifer","type":"Role","_key":"12694","_from":"9919","_to":"9910"} +{"$label":"ACTS_IN","name":"Gunboat captain II","type":"Role","_key":"12693","_from":"9918","_to":"9910"} +{"$label":"ACTS_IN","name":"Gunboat captain","type":"Role","_key":"12692","_from":"9917","_to":"9910"} +{"$label":"ACTS_IN","name":"Sgt. Yushin","type":"Role","_key":"12691","_from":"9916","_to":"9910"} +{"$label":"ACTS_IN","name":"Capt. Vinh","type":"Role","_key":"12690","_from":"9915","_to":"9910"} +{"$label":"ACTS_IN","name":"Banks","type":"Role","_key":"12689","_from":"9914","_to":"9910"} +{"$label":"ACTS_IN","name":"Capt Vinh","type":"Role","_key":"12688","_from":"9913","_to":"9910"} +{"$label":"ACTS_IN","name":"Co Bao","type":"Role","_key":"12687","_from":"9912","_to":"9910"} +{"$label":"DIRECTED","_key":"12682","_from":"9911","_to":"9910"} +{"$label":"DIRECTED","_key":"99846","_from":"9911","_to":"58891"} +{"$label":"DIRECTED","_key":"73055","_from":"9911","_to":"43963"} +{"$label":"DIRECTED","_key":"57528","_from":"9911","_to":"36449"} +{"$label":"ACTS_IN","name":"Acne Faced Boy","type":"Role","_key":"64465","_from":"9911","_to":"40162"} +{"$label":"ACTS_IN","name":"Bortei","type":"Role","_key":"36622","_from":"9912","_to":"24814"} +{"$label":"ACTS_IN","name":"Satori Imada","type":"Role","_key":"21355","_from":"9912","_to":"15614"} +{"$label":"ACTS_IN","name":"Cheung","type":"Role","_key":"61547","_from":"9917","_to":"38803"} +{"$label":"ACTS_IN","name":"Firefighter Chief Sheehan","type":"Role","_key":"21617","_from":"9919","_to":"15801"} +{"$label":"ACTS_IN","name":"Uncle Patrick","type":"Role","_key":"111686","_from":"9922","_to":"65941"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"104808","_from":"9922","_to":"61659"} +{"$label":"ACTS_IN","name":"Nero the Hero","type":"Role","_key":"93702","_from":"9922","_to":"55160"} +{"$label":"ACTS_IN","name":"John Kreese","type":"Role","_key":"63674","_from":"9922","_to":"39827"} +{"$label":"ACTS_IN","name":"Father Brazinski","type":"Role","_key":"62180","_from":"9922","_to":"39152"} +{"$label":"ACTS_IN","name":"John Kreese","type":"Role","_key":"51141","_from":"9922","_to":"33359"} +{"$label":"ACTS_IN","name":"Kile","type":"Role","_key":"46266","_from":"9922","_to":"30580"} +{"$label":"ACTS_IN","name":"John Kreese","type":"Role","_key":"16270","_from":"9922","_to":"12340"} +{"$label":"ACTS_IN","name":"Uri","type":"Role","_key":"12713","_from":"9934","_to":"9923"} +{"$label":"ACTS_IN","name":"Gun Dealer","type":"Role","_key":"12712","_from":"9933","_to":"9923"} +{"$label":"ACTS_IN","name":"Stick Fighter","type":"Role","_key":"12711","_from":"9932","_to":"9923"} +{"$label":"ACTS_IN","name":"Khalid","type":"Role","_key":"12710","_from":"9931","_to":"9923"} +{"$label":"ACTS_IN","name":"Rahim","type":"Role","_key":"12709","_from":"9930","_to":"9923"} +{"$label":"ACTS_IN","name":"Nissem","type":"Role","_key":"12708","_from":"9929","_to":"9923"} +{"$label":"ACTS_IN","name":"Kourov","type":"Role","_key":"12706","_from":"9928","_to":"9923"} +{"$label":"ACTS_IN","name":"Hamid","type":"Role","_key":"12705","_from":"9927","_to":"9923"} +{"$label":"ACTS_IN","name":"Mousa","type":"Role","_key":"12704","_from":"9926","_to":"9923"} +{"$label":"ACTS_IN","name":"Zaysen","type":"Role","_key":"12701","_from":"9925","_to":"9923"} +{"$label":"DIRECTED","_key":"12698","_from":"9924","_to":"9923"} +{"$label":"DIRECTED","_key":"89050","_from":"9924","_to":"52761"} +{"$label":"DIRECTED","_key":"27516","_from":"9924","_to":"19747"} +{"$label":"ACTS_IN","name":"Santerre","type":"Role","_key":"30229","_from":"9925","_to":"21284"} +{"$label":"ACTS_IN","name":"Tewfiq Zakaria","type":"Role","_key":"36735","_from":"9926","_to":"24907"} +{"$label":"ACTS_IN","name":"Sgt.Shemesh \/ Ramirez","type":"Role","_key":"64244","_from":"9931","_to":"40071"} +{"$label":"ACTS_IN","name":"Dathan","type":"Role","_key":"21873","_from":"9931","_to":"15979"} +{"$label":"ACTS_IN","name":"Hacam","type":"Role","_key":"16855","_from":"9931","_to":"12677"} +{"$label":"ACTS_IN","name":"Wrestling commentator 2","type":"Role","_key":"12729","_from":"9941","_to":"9935"} +{"$label":"ACTS_IN","name":"Wrestling commentator 1","type":"Role","_key":"12728","_from":"9940","_to":"9935"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"12727","_from":"9939","_to":"9935"} +{"$label":"ACTS_IN","name":"Sportscaster","type":"Role","_key":"12726","_from":"9938","_to":"9935"} +{"$label":"ACTS_IN","name":"Rocky Junior","type":"Role","_key":"12723","_from":"9937","_to":"9935"} +{"$label":"ACTS_IN","name":"Thunderlips","type":"Role","_key":"12722","_from":"9936","_to":"9935"} +{"$label":"ACTS_IN","name":"Sean Armstrong (as Terry 'Hulk' Hogan)","type":"Role","_key":"119906","_from":"9936","_to":"70418"} +{"$label":"ACTS_IN","name":"Shep Ramsey","type":"Role","_key":"70226","_from":"9936","_to":"42798"} +{"$label":"ACTS_IN","name":"Death","type":"Role","_key":"30574","_from":"9936","_to":"21490"} +{"$label":"ACTS_IN","name":"M'Ed","type":"Role","_key":"12745","_from":"9951","_to":"9942"} +{"$label":"ACTS_IN","name":"Van De Kaap","type":"Role","_key":"12743","_from":"9950","_to":"9942"} +{"$label":"ACTS_IN","name":"Nabil","type":"Role","_key":"12741","_from":"9949","_to":"9942"} +{"$label":"ACTS_IN","name":"Benjamin Kapanay","type":"Role","_key":"12740","_from":"9948","_to":"9942"} +{"$label":"ACTS_IN","name":"Captain Poison","type":"Role","_key":"12739","_from":"9947","_to":"9942"} +{"$label":"ACTS_IN","name":"N'Yanda Vandy","type":"Role","_key":"12738","_from":"9946","_to":"9942"} +{"$label":"ACTS_IN","name":"Jassie Vandy","type":"Role","_key":"12737","_from":"9945","_to":"9942"} +{"$label":"ACTS_IN","name":"Cordell Brown","type":"Role","_key":"12736","_from":"9944","_to":"9942"} +{"$label":"ACTS_IN","name":"Dia Vandy","type":"Role","_key":"12734","_from":"9943","_to":"9942"} +{"$label":"ACTS_IN","name":"Screwface","type":"Role","_key":"61411","_from":"9948","_to":"38737"} +{"$label":"ACTS_IN","name":"Emerald","type":"Role","_key":"18523","_from":"9948","_to":"13709"} +{"$label":"ACTS_IN","name":"Sam Holbrook","type":"Role","_key":"102533","_from":"9949","_to":"60324"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101055","_from":"9949","_to":"59551"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"100294","_from":"9949","_to":"59140"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"98949","_from":"9949","_to":"58293"} +{"$label":"ACTS_IN","name":"Dr. Satnam Tsurutani","type":"Role","_key":"98827","_from":"9949","_to":"58224"} +{"$label":"ACTS_IN","name":"Councillor","type":"Role","_key":"96790","_from":"9949","_to":"56924"} +{"$label":"ACTS_IN","name":"Tariq Khan","type":"Role","_key":"64054","_from":"9949","_to":"39979"} +{"$label":"ACTS_IN","name":"Ramu Gupta","type":"Role","_key":"52109","_from":"9949","_to":"33976"} +{"$label":"ACTS_IN","name":"Andrew Steyn","type":"Role","_key":"49510","_from":"9950","_to":"32410"} +{"$label":"ACTS_IN","name":"Bart Bork","type":"Role","_key":"12761","_from":"9965","_to":"9952"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"12760","_from":"9964","_to":"9952"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"12759","_from":"9963","_to":"9952"} +{"$label":"ACTS_IN","name":"Diederik Quist","type":"Role","_key":"12758","_from":"9962","_to":"9952"} +{"$label":"ACTS_IN","name":"Trees Quist","type":"Role","_key":"12757","_from":"9961","_to":"9952"} +{"$label":"ACTS_IN","name":"Onno's father","type":"Role","_key":"12756","_from":"9960","_to":"9952"} +{"$label":"ACTS_IN","name":"Granddaughter Quist","type":"Role","_key":"12755","_from":"9959","_to":"9952"} +{"$label":"ACTS_IN","name":"Margareth Quist","type":"Role","_key":"12754","_from":"9958","_to":"9952"} +{"$label":"ACTS_IN","name":"Coba","type":"Role","_key":"12753","_from":"9957","_to":"9952"} +{"$label":"ACTS_IN","name":"Onno's mother","type":"Role","_key":"12752","_from":"9956","_to":"9952"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"12749","_from":"9955","_to":"9952"} +{"$label":"ACTS_IN","name":"Quinten - 4 years","type":"Role","_key":"12748","_from":"9954","_to":"9952"} +{"$label":"ACTS_IN","name":"Quinten - 16 years","type":"Role","_key":"12747","_from":"9953","_to":"9952"} +{"$label":"ACTS_IN","name":"Cpl Rhys Powell","type":"Role","_key":"24266","_from":"9953","_to":"17581"} +{"$label":"ACTS_IN","name":"Reverend Greet","type":"Role","_key":"107894","_from":"9960","_to":"63713"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"103824","_from":"9960","_to":"61055"} +{"$label":"ACTS_IN","name":"Agent One","type":"Role","_key":"54175","_from":"9963","_to":"34805"} +{"$label":"ACTS_IN","name":"Francesco Doni","type":"Role","_key":"34259","_from":"9963","_to":"23511"} +{"$label":"ACTS_IN","name":"Crispian Grimes","type":"Role","_key":"25991","_from":"9963","_to":"18688"} +{"$label":"ACTS_IN","name":"Simon Hillier","type":"Role","_key":"57908","_from":"9965","_to":"36634"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"50151","_from":"9965","_to":"32793"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"12777","_from":"9973","_to":"9966"} +{"$label":"ACTS_IN","name":"Rocky Jr.'s Friend","type":"Role","_key":"12775","_from":"9972","_to":"9966"} +{"$label":"ACTS_IN","name":"Russian Government Official","type":"Role","_key":"12774","_from":"9971","_to":"9966"} +{"$label":"ACTS_IN","name":"American Commentator #2","type":"Role","_key":"12773","_from":"9970","_to":"9966"} +{"$label":"ACTS_IN","name":"Sports Announcer","type":"Role","_key":"12772","_from":"9969","_to":"9966"} +{"$label":"ACTS_IN","name":"Captain Ivan Drago","type":"Role","_key":"12770","_from":"9968","_to":"9966"} +{"$label":"ACTS_IN","name":"Nicoli Koloff","type":"Role","_key":"12769","_from":"9967","_to":"9966"} +{"$label":"ACTS_IN","name":"Dr. Hoffman","type":"Role","_key":"69379","_from":"9967","_to":"42413"} +{"$label":"ACTS_IN","name":"Det. Jack Caine","type":"Role","_key":"119983","_from":"9968","_to":"70466"} +{"$label":"ACTS_IN","name":"Xander Ronson","type":"Role","_key":"105917","_from":"9968","_to":"62361"} +{"$label":"ACTS_IN","name":"Ryder","type":"Role","_key":"96095","_from":"9968","_to":"56485"} +{"$label":"ACTS_IN","name":"Sgt. Chris Kenner","type":"Role","_key":"93029","_from":"9968","_to":"54849"} +{"$label":"ACTS_IN","name":"Lt. Nikolai Rachenko","type":"Role","_key":"90903","_from":"9968","_to":"53628"} +{"$label":"ACTS_IN","name":"He-Man","type":"Role","_key":"71280","_from":"9968","_to":"43245"} +{"$label":"ACTS_IN","name":"GR13","type":"Role","_key":"53285","_from":"9968","_to":"34455"} +{"$label":"ACTS_IN","name":"Frank Castle \/ The Punisher","type":"Role","_key":"51171","_from":"9968","_to":"33379"} +{"$label":"DIRECTED","_key":"96094","_from":"9968","_to":"56485"} +{"$label":"ACTS_IN","name":"William Dalton","type":"Role","_key":"68333","_from":"9971","_to":"41940"} +{"$label":"ACTS_IN","name":"Bertuccio","type":"Role","_key":"32531","_from":"9971","_to":"22623"} +{"$label":"ACTS_IN","name":"Fight Promoter","type":"Role","_key":"12794","_from":"9984","_to":"9974"} +{"$label":"ACTS_IN","name":"Chickie's Pal","type":"Role","_key":"12793","_from":"9983","_to":"9974"} +{"$label":"ACTS_IN","name":"Jewel","type":"Role","_key":"12792","_from":"9982","_to":"9974"} +{"$label":"ACTS_IN","name":"Chickie","type":"Role","_key":"12791","_from":"9981","_to":"9974"} +{"$label":"ACTS_IN","name":"Union Cane","type":"Role","_key":"12790","_from":"9980","_to":"9974"} +{"$label":"ACTS_IN","name":"Merlin Sheets","type":"Role","_key":"12789","_from":"9979","_to":"9974"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"12788","_from":"9978","_to":"9974"} +{"$label":"ACTS_IN","name":"George Washington Duke","type":"Role","_key":"12785","_from":"9977","_to":"9974"} +{"$label":"ACTS_IN","name":"Tommy 'Machine' Gunn","type":"Role","_key":"12784","_from":"9976","_to":"9974"} +{"$label":"ACTS_IN","name":"Rocky Balboa Jr.","type":"Role","_key":"12782","_from":"9975","_to":"9974"} +{"$label":"ACTS_IN","name":"Chief Matthews","type":"Role","_key":"107203","_from":"9977","_to":"63224"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"104367","_from":"9977","_to":"61395"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"98730","_from":"9977","_to":"58185"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33059","_from":"9980","_to":"22898"} +{"$label":"ACTS_IN","name":"Connor","type":"Role","_key":"61513","_from":"9981","_to":"38795"} +{"$label":"ACTS_IN","name":"Shorty Fansworth","type":"Role","_key":"18288","_from":"9984","_to":"13569"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"14242","_from":"9984","_to":"10992"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"12805","_from":"9994","_to":"9985"} +{"$label":"ACTS_IN","name":"Scullion","type":"Role","_key":"12804","_from":"9993","_to":"9985"} +{"$label":"ACTS_IN","name":"Calum","type":"Role","_key":"12803","_from":"9992","_to":"9985"} +{"$label":"ACTS_IN","name":"Rab","type":"Role","_key":"12802","_from":"9991","_to":"9985"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"12801","_from":"9990","_to":"9985"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"12800","_from":"9989","_to":"9985"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"12799","_from":"9988","_to":"9985"} +{"$label":"ACTS_IN","name":"Chantelle","type":"Role","_key":"12797","_from":"9987","_to":"9985"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"12796","_from":"9986","_to":"9985"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"71672","_from":"9986","_to":"43391"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"50178","_from":"9986","_to":"32805"} +{"$label":"ACTS_IN","name":"Stick","type":"Role","_key":"26227","_from":"9990","_to":"18837"} +{"$label":"ACTS_IN","name":"Mr. William Farnsworth","type":"Role","_key":"12818","_from":"10004","_to":"9995"} +{"$label":"ACTS_IN","name":"Mrs. Farnsworth","type":"Role","_key":"12817","_from":"10003","_to":"9995"} +{"$label":"ACTS_IN","name":"Robert Winters","type":"Role","_key":"12815","_from":"10002","_to":"9995"} +{"$label":"ACTS_IN","name":"David Winters","type":"Role","_key":"12814","_from":"10001","_to":"9995"} +{"$label":"ACTS_IN","name":"Elizabeth Winters","type":"Role","_key":"12813","_from":"10000","_to":"9995"} +{"$label":"ACTS_IN","name":"Arturo Zaccardi","type":"Role","_key":"12811","_from":"9999","_to":"9995"} +{"$label":"ACTS_IN","name":"Carolyn Gibson","type":"Role","_key":"12809","_from":"9998","_to":"9995"} +{"$label":"ACTS_IN","name":"Cinzia Zaccardi","type":"Role","_key":"12808","_from":"9997","_to":"9995"} +{"$label":"DIRECTED","_key":"12806","_from":"9996","_to":"9995"} +{"$label":"DIRECTED","_key":"113605","_from":"9996","_to":"66951"} +{"$label":"DIRECTED","_key":"50603","_from":"9996","_to":"33046"} +{"$label":"ACTS_IN","name":"Lucilla","type":"Role","_key":"111747","_from":"9997","_to":"65965"} +{"$label":"ACTS_IN","name":"Jimena","type":"Role","_key":"109696","_from":"9997","_to":"64787"} +{"$label":"ACTS_IN","name":"Maria Sophia Coletta Ragetti","type":"Role","_key":"105153","_from":"9997","_to":"61877"} +{"$label":"ACTS_IN","name":"Lisa Macklin","type":"Role","_key":"104537","_from":"9997","_to":"61490"} +{"$label":"ACTS_IN","name":"Mamma","type":"Role","_key":"61634","_from":"9997","_to":"38839"} +{"$label":"ACTS_IN","name":"Teresa Leoni","type":"Role","_key":"33347","_from":"9997","_to":"23096"} +{"$label":"ACTS_IN","name":"Isabella de la Fontaine","type":"Role","_key":"28139","_from":"9997","_to":"20177"} +{"$label":"ACTS_IN","name":"Epifania Parerga","type":"Role","_key":"28099","_from":"9997","_to":"20145"} +{"$label":"ACTS_IN","name":"Natascha","type":"Role","_key":"24698","_from":"9997","_to":"17866"} +{"$label":"ACTS_IN","name":"Rosa Priore","type":"Role","_key":"23743","_from":"9997","_to":"17215"} +{"$label":"ACTS_IN","name":"Giovanna","type":"Role","_key":"16101","_from":"9997","_to":"12233"} +{"$label":"ACTS_IN","name":"Martha Henshaw","type":"Role","_key":"105898","_from":"9998","_to":"62345"} +{"$label":"ACTS_IN","name":"Elizabeth Tyson","type":"Role","_key":"44351","_from":"9998","_to":"29551"} +{"$label":"ACTS_IN","name":"Angela Cole","type":"Role","_key":"34991","_from":"9998","_to":"23888"} +{"$label":"ACTS_IN","name":"Chief Engineer","type":"Role","_key":"115441","_from":"9999","_to":"67969"} +{"$label":"ACTS_IN","name":"Boone - il Giudice","type":"Role","_key":"90074","_from":"9999","_to":"53274"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96540","_from":"10001","_to":"56725"} +{"$label":"ACTS_IN","name":"Manager Rick","type":"Role","_key":"88751","_from":"10001","_to":"52574"} +{"$label":"ACTS_IN","name":"Blue Lake","type":"Role","_key":"35052","_from":"10001","_to":"23910"} +{"$label":"ACTS_IN","name":"Police Chief Tolgate","type":"Role","_key":"115606","_from":"10004","_to":"68053"} +{"$label":"ACTS_IN","name":"Mr. Monroe, Prosecuting Attorney","type":"Role","_key":"114210","_from":"10004","_to":"67273"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37634","_from":"10004","_to":"25509"} +{"$label":"ACTS_IN","name":"Dr. Flegg","type":"Role","_key":"28015","_from":"10004","_to":"20085"} +{"$label":"ACTS_IN","name":"Vic.Adm. Crawford","type":"Role","_key":"18808","_from":"10004","_to":"13896"} +{"$label":"ACTS_IN","name":"Jean La Cour","type":"Role","_key":"17128","_from":"10004","_to":"12831"} +{"$label":"ACTS_IN","name":"Harlan","type":"Role","_key":"15203","_from":"10004","_to":"11641"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"12846","_from":"10033","_to":"10005"} +{"$label":"ACTS_IN","name":"Sextra (one of the participants in the orgy sequence)","type":"Role","_key":"12845","_from":"10032","_to":"10005"} +{"$label":"ACTS_IN","name":"Ann, Lady of the Gutter","type":"Role","_key":"12844","_from":"10031","_to":"10005"} +{"$label":"ACTS_IN","name":"Blondie-Grabber","type":"Role","_key":"12843","_from":"10030","_to":"10005"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"12842","_from":"10029","_to":"10005"} +{"$label":"ACTS_IN","name":"Zoey","type":"Role","_key":"12841","_from":"10028","_to":"10005"} +{"$label":"ACTS_IN","name":"Little Prince","type":"Role","_key":"12840","_from":"10027","_to":"10005"} +{"$label":"ACTS_IN","name":"Jid","type":"Role","_key":"12839","_from":"10026","_to":"10005"} +{"$label":"ACTS_IN","name":"Faustus","type":"Role","_key":"12838","_from":"10025","_to":"10005"} +{"$label":"ACTS_IN","name":"Creamy","type":"Role","_key":"12837","_from":"10024","_to":"10005"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"12836","_from":"10023","_to":"10005"} +{"$label":"ACTS_IN","name":"Tobias, the Mayor","type":"Role","_key":"12835","_from":"10022","_to":"10005"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"12834","_from":"10021","_to":"10005"} +{"$label":"ACTS_IN","name":"Albino","type":"Role","_key":"12833","_from":"10020","_to":"10005"} +{"$label":"ACTS_IN","name":"Dr. Donut","type":"Role","_key":"12832","_from":"10019","_to":"10005"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"12831","_from":"10018","_to":"10005"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"12830","_from":"10017","_to":"10005"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"12829","_from":"10016","_to":"10005"} +{"$label":"ACTS_IN","name":"Bitch","type":"Role","_key":"12828","_from":"10015","_to":"10005"} +{"$label":"ACTS_IN","name":"Shabbos Goy","type":"Role","_key":"12827","_from":"10014","_to":"10005"} +{"$label":"ACTS_IN","name":"Caleb","type":"Role","_key":"12826","_from":"10013","_to":"10005"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"12825","_from":"10012","_to":"10005"} +{"$label":"ACTS_IN","name":"Severin","type":"Role","_key":"12824","_from":"10011","_to":"10005"} +{"$label":"ACTS_IN","name":"Ceth","type":"Role","_key":"12823","_from":"10010","_to":"10005"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"12822","_from":"10009","_to":"10005"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"12821","_from":"10008","_to":"10005"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"12820","_from":"10007","_to":"10005"} +{"$label":"DIRECTED","_key":"12819","_from":"10006","_to":"10005"} +{"$label":"ACTS_IN","name":"Hedwig","type":"Role","_key":"94329","_from":"10006","_to":"55547"} +{"$label":"DIRECTED","_key":"94328","_from":"10006","_to":"55547"} +{"$label":"ACTS_IN","name":"Willia","type":"Role","_key":"113916","_from":"10007","_to":"67095"} +{"$label":"ACTS_IN","name":"Bellboy","type":"Role","_key":"105642","_from":"10008","_to":"62181"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"99048","_from":"10010","_to":"58347"} +{"$label":"ACTS_IN","name":"Freez","type":"Role","_key":"13094","_from":"10017","_to":"10201"} +{"$label":"ACTS_IN","name":"Yitzhak","type":"Role","_key":"94332","_from":"10018","_to":"55547"} +{"$label":"ACTS_IN","name":"Carol\/Penthouse Hostess","type":"Role","_key":"14497","_from":"10018","_to":"11191"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13271","_from":"10030","_to":"10329"} +{"$label":"DIRECTED","_key":"13268","_from":"10030","_to":"10329"} +{"$label":"ACTS_IN","name":"Daisy Stokes","type":"Role","_key":"101028","_from":"10031","_to":"59536"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"12853","_from":"10039","_to":"10034"} +{"$label":"ACTS_IN","name":"Lindstr\u00f6m","type":"Role","_key":"12851","_from":"10038","_to":"10034"} +{"$label":"ACTS_IN","name":"Mirja","type":"Role","_key":"12850","_from":"10037","_to":"10034"} +{"$label":"ACTS_IN","name":"Aila","type":"Role","_key":"12849","_from":"10036","_to":"10034"} +{"$label":"ACTS_IN","name":"Koistinen","type":"Role","_key":"12848","_from":"10035","_to":"10034"} +{"$label":"ACTS_IN","name":"Maria Larsson","type":"Role","_key":"111036","_from":"10036","_to":"65586"} +{"$label":"DIRECTED","_key":"12859","_from":"10043","_to":"10040"} +{"$label":"ACTS_IN","name":"Rodney Mullen","type":"Role","_key":"12857","_from":"10042","_to":"10040"} +{"$label":"ACTS_IN","name":"Tony Hawk","type":"Role","_key":"12855","_from":"10041","_to":"10040"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"67098","_from":"10041","_to":"41408"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115184","_from":"10042","_to":"67829"} +{"$label":"DIRECTED","_key":"27638","_from":"10043","_to":"19805"} +{"$label":"ACTS_IN","name":"Dr. Alan Lipper","type":"Role","_key":"12871","_from":"10046","_to":"10044"} +{"$label":"ACTS_IN","name":"Lord of Xibalba","type":"Role","_key":"12866","_from":"10045","_to":"10044"} +{"$label":"ACTS_IN","name":"High Priest","type":"Role","_key":"13995","_from":"10045","_to":"10827"} +{"$label":"ACTS_IN","name":"Sylvie's Dad","type":"Role","_key":"12884","_from":"10055","_to":"10047"} +{"$label":"ACTS_IN","name":"Sylvie's Mom","type":"Role","_key":"12883","_from":"10054","_to":"10047"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"12881","_from":"10053","_to":"10047"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"12880","_from":"10052","_to":"10047"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"12878","_from":"10051","_to":"10047"} +{"$label":"ACTS_IN","name":"Peter Swersey","type":"Role","_key":"12877","_from":"10050","_to":"10047"} +{"$label":"ACTS_IN","name":"Robby Swersey","type":"Role","_key":"12876","_from":"10049","_to":"10047"} +{"$label":"ACTS_IN","name":"Christine Jesperson","type":"Role","_key":"12874","_from":"10048","_to":"10047"} +{"$label":"DIRECTED","_key":"12873","_from":"10048","_to":"10047"} +{"$label":"DIRECTED","_key":"54308","_from":"10048","_to":"34858"} +{"$label":"ACTS_IN","name":"the driver","type":"Role","_key":"12886","_from":"10057","_to":"10056"} +{"$label":"DIRECTED","_key":"12885","_from":"10057","_to":"10056"} +{"$label":"DIRECTED","_key":"71465","_from":"10057","_to":"43324"} +{"$label":"DIRECTED","_key":"71405","_from":"10057","_to":"43302"} +{"$label":"DIRECTED","_key":"33753","_from":"10057","_to":"23279"} +{"$label":"DIRECTED","_key":"12887","_from":"10059","_to":"10058"} +{"$label":"DIRECTED","_key":"65201","_from":"10059","_to":"40492"} +{"$label":"DIRECTED","_key":"28880","_from":"10059","_to":"20642"} +{"$label":"DIRECTED","_key":"15632","_from":"10059","_to":"11924"} +{"$label":"DIRECTED","_key":"12889","_from":"10062","_to":"10060"} +{"$label":"DIRECTED","_key":"12888","_from":"10061","_to":"10060"} +{"$label":"ACTS_IN","name":"Midge","type":"Role","_key":"12899","_from":"10067","_to":"10063"} +{"$label":"ACTS_IN","name":"White Boy Bob","type":"Role","_key":"12898","_from":"10066","_to":"10063"} +{"$label":"ACTS_IN","name":"Glenn Michaels","type":"Role","_key":"12897","_from":"10065","_to":"10063"} +{"$label":"ACTS_IN","name":"Karen Sisco","type":"Role","_key":"12891","_from":"10064","_to":"10063"} +{"$label":"ACTS_IN","name":"Selena Quintanilla-P\u00e9rez","type":"Role","_key":"106761","_from":"10064","_to":"62940"} +{"$label":"ACTS_IN","name":"Puchi","type":"Role","_key":"106389","_from":"10064","_to":"62685"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"88426","_from":"10064","_to":"52412"} +{"$label":"ACTS_IN","name":"Grace Santiago","type":"Role","_key":"70356","_from":"10064","_to":"42858"} +{"$label":"ACTS_IN","name":"Grace McKenna","type":"Role","_key":"61298","_from":"10064","_to":"38700"} +{"$label":"ACTS_IN","name":"Gertrude Steiney","type":"Role","_key":"54558","_from":"10064","_to":"34963"} +{"$label":"ACTS_IN","name":"Terri Flores","type":"Role","_key":"53344","_from":"10064","_to":"34483"} +{"$label":"ACTS_IN","name":"Azteca (voice)","type":"Role","_key":"51490","_from":"10064","_to":"33574"} +{"$label":"ACTS_IN","name":"Catherine Deane","type":"Role","_key":"51032","_from":"10064","_to":"33306"} +{"$label":"ACTS_IN","name":"Ricki","type":"Role","_key":"47839","_from":"10064","_to":"31493"} +{"$label":"ACTS_IN","name":"Marisa Ventura","type":"Role","_key":"46380","_from":"10064","_to":"30646"} +{"$label":"ACTS_IN","name":"Miss Marquez","type":"Role","_key":"45825","_from":"10064","_to":"30306"} +{"$label":"ACTS_IN","name":"Sharon Pogue","type":"Role","_key":"39834","_from":"10064","_to":"26919"} +{"$label":"ACTS_IN","name":"Paulina","type":"Role","_key":"31292","_from":"10064","_to":"21887"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"31279","_from":"10064","_to":"21881"} +{"$label":"ACTS_IN","name":"Lauren Adrian","type":"Role","_key":"31104","_from":"10064","_to":"21771"} +{"$label":"ACTS_IN","name":"Mary Fiore","type":"Role","_key":"17528","_from":"10064","_to":"13103"} +{"$label":"ACTS_IN","name":"Slim Hiller","type":"Role","_key":"16964","_from":"10064","_to":"12733"} +{"$label":"ACTS_IN","name":"Jean Gilkyson","type":"Role","_key":"16895","_from":"10064","_to":"12705"} +{"$label":"ACTS_IN","name":"Frank Hanson","type":"Role","_key":"111189","_from":"10065","_to":"65664"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108466","_from":"10065","_to":"64118"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"107598","_from":"10065","_to":"63517"} +{"$label":"ACTS_IN","name":"Sandy Pig","type":"Role","_key":"106248","_from":"10065","_to":"62588"} +{"$label":"ACTS_IN","name":"Mr. Freeman","type":"Role","_key":"102982","_from":"10065","_to":"60576"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"100749","_from":"10065","_to":"59405"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"99137","_from":"10065","_to":"58416"} +{"$label":"ACTS_IN","name":"Adam Penenberg","type":"Role","_key":"95105","_from":"10065","_to":"55970"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"92497","_from":"10065","_to":"54598"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"89304","_from":"10065","_to":"52867"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"69703","_from":"10065","_to":"42552"} +{"$label":"ACTS_IN","name":"Ray Hasek","type":"Role","_key":"67826","_from":"10065","_to":"41687"} +{"$label":"ACTS_IN","name":"Hank Rafferty","type":"Role","_key":"67741","_from":"10065","_to":"41651"} +{"$label":"ACTS_IN","name":"Monty the Alley-Cat (voice)","type":"Role","_key":"67174","_from":"10065","_to":"41441"} +{"$label":"ACTS_IN","name":"Wayne Lefessier","type":"Role","_key":"66429","_from":"10065","_to":"41072"} +{"$label":"ACTS_IN","name":"Fuller Thomas","type":"Role","_key":"66360","_from":"10065","_to":"41044"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"65186","_from":"10065","_to":"40488"} +{"$label":"ACTS_IN","name":"Runt of the Litter","type":"Role","_key":"58936","_from":"10065","_to":"37214"} +{"$label":"ACTS_IN","name":"Duane","type":"Role","_key":"58434","_from":"10065","_to":"36932"} +{"$label":"ACTS_IN","name":"Lenny Haise","type":"Role","_key":"54884","_from":"10065","_to":"35099"} +{"$label":"ACTS_IN","name":"Al Giordino","type":"Role","_key":"46626","_from":"10065","_to":"30794"} +{"$label":"ACTS_IN","name":"Sammy Gray","type":"Role","_key":"23588","_from":"10065","_to":"17109"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"17091","_from":"10065","_to":"12809"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"14559","_from":"10065","_to":"11225"} +{"$label":"ACTS_IN","name":"Clarence Darlington","type":"Role","_key":"93683","_from":"10066","_to":"55148"} +{"$label":"ACTS_IN","name":"Wild Bill Cherry","type":"Role","_key":"49345","_from":"10066","_to":"32290"} +{"$label":"ACTS_IN","name":"Big Gus","type":"Role","_key":"35016","_from":"10066","_to":"23895"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"102325","_from":"10067","_to":"60201"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"71248","_from":"10067","_to":"43228"} +{"$label":"ACTS_IN","name":"Liz Blake","type":"Role","_key":"67455","_from":"10067","_to":"41554"} +{"$label":"ACTS_IN","name":"Allison Hayes","type":"Role","_key":"64481","_from":"10067","_to":"40178"} +{"$label":"ACTS_IN","name":"Patricia Wilson-Gardner","type":"Role","_key":"62497","_from":"10067","_to":"39357"} +{"$label":"ACTS_IN","name":"Christine Hargenson","type":"Role","_key":"46462","_from":"10067","_to":"30685"} +{"$label":"ACTS_IN","name":"Kristina","type":"Role","_key":"45612","_from":"10067","_to":"30198"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"39307","_from":"10067","_to":"26583"} +{"$label":"ACTS_IN","name":"Cathy Thomas","type":"Role","_key":"38856","_from":"10067","_to":"26244"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38838","_from":"10067","_to":"26224"} +{"$label":"ACTS_IN","name":"Officer Anne Lewis","type":"Role","_key":"37774","_from":"10067","_to":"25618"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"12913","_from":"10076","_to":"10068"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"12912","_from":"10075","_to":"10068"} +{"$label":"ACTS_IN","name":"Serguei","type":"Role","_key":"12911","_from":"10074","_to":"10068"} +{"$label":"ACTS_IN","name":"Nata","type":"Role","_key":"12910","_from":"10073","_to":"10068"} +{"$label":"ACTS_IN","name":"\u00c1ngela","type":"Role","_key":"12909","_from":"10072","_to":"10068"} +{"$label":"ACTS_IN","name":"Amador","type":"Role","_key":"12908","_from":"10071","_to":"10068"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"12906","_from":"10070","_to":"10068"} +{"$label":"ACTS_IN","name":"Lino","type":"Role","_key":"12905","_from":"10069","_to":"10068"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"16553","_from":"10071","_to":"12502"} +{"$label":"ACTS_IN","name":"pare de Salvador","type":"Role","_key":"16370","_from":"10071","_to":"12387"} +{"$label":"ACTS_IN","name":"De Fursac","type":"Role","_key":"104439","_from":"10074","_to":"61431"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"68668","_from":"10074","_to":"42085"} +{"$label":"ACTS_IN","name":"P\u00e8re Vincent","type":"Role","_key":"29179","_from":"10074","_to":"20776"} +{"$label":"ACTS_IN","name":"Le p\u00e8re Bonfils","type":"Role","_key":"20790","_from":"10074","_to":"15200"} +{"$label":"ACTS_IN","name":"Asesino","type":"Role","_key":"48571","_from":"10076","_to":"31865"} +{"$label":"ACTS_IN","name":"Luisa Cort\u00e9s","type":"Role","_key":"12919","_from":"10079","_to":"10077"} +{"$label":"ACTS_IN","name":"Ana Morelos","type":"Role","_key":"12918","_from":"10078","_to":"10077"} +{"$label":"ACTS_IN","name":"Mariana","type":"Role","_key":"106173","_from":"10079","_to":"62534"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"72793","_from":"10079","_to":"43862"} +{"$label":"ACTS_IN","name":"Roc\u00edo","type":"Role","_key":"21665","_from":"10079","_to":"15835"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"13102","_from":"10079","_to":"10215"} +{"$label":"DIRECTED","_key":"12921","_from":"10082","_to":"10080"} +{"$label":"DIRECTED","_key":"12920","_from":"10081","_to":"10080"} +{"$label":"ACTS_IN","name":"Tochter","type":"Role","_key":"12925","_from":"10087","_to":"10083"} +{"$label":"ACTS_IN","name":"Tochter","type":"Role","_key":"12924","_from":"10086","_to":"10083"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"12923","_from":"10085","_to":"10083"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"12922","_from":"10084","_to":"10083"} +{"$label":"ACTS_IN","name":"Civil Servant","type":"Role","_key":"12934","_from":"10094","_to":"10088"} +{"$label":"ACTS_IN","name":"Domenico's Wife","type":"Role","_key":"12933","_from":"10093","_to":"10088"} +{"$label":"ACTS_IN","name":"Chambermaid","type":"Role","_key":"12932","_from":"10092","_to":"10088"} +{"$label":"ACTS_IN","name":"Andrei's Wife","type":"Role","_key":"12931","_from":"10091","_to":"10088"} +{"$label":"ACTS_IN","name":"Domenico","type":"Role","_key":"12929","_from":"10090","_to":"10088"} +{"$label":"ACTS_IN","name":"Andrei Gorchakov","type":"Role","_key":"12928","_from":"10089","_to":"10088"} +{"$label":"ACTS_IN","name":"The Father","type":"Role","_key":"12937","_from":"10089","_to":"10095"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"56163","_from":"10090","_to":"35702"} +{"$label":"ACTS_IN","name":"Isak Jacobi","type":"Role","_key":"40783","_from":"10090","_to":"27445"} +{"$label":"ACTS_IN","name":"Gonzalo","type":"Role","_key":"35641","_from":"10090","_to":"24225"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32811","_from":"10090","_to":"22779"} +{"$label":"ACTS_IN","name":"Lt. Lisa Morrel","type":"Role","_key":"70767","_from":"10093","_to":"43034"} +{"$label":"ACTS_IN","name":"Sangarra","type":"Role","_key":"31402","_from":"10093","_to":"21944"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"17755","_from":"10093","_to":"13242"} +{"$label":"ACTS_IN","name":"Mutter (Zug)","type":"Role","_key":"39477","_from":"10094","_to":"26682"} +{"$label":"ACTS_IN","name":"l'infirmi\u00e8re","type":"Role","_key":"37831","_from":"10094","_to":"25644"} +{"$label":"ACTS_IN","name":"Ines","type":"Role","_key":"32913","_from":"10094","_to":"22829"} +{"$label":"ACTS_IN","name":"Ma\u0142y Aleksei","type":"Role","_key":"12943","_from":"10099","_to":"10095"} +{"$label":"ACTS_IN","name":"Ignat, Alyosha","type":"Role","_key":"12940","_from":"10098","_to":"10095"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"12939","_from":"10097","_to":"10095"} +{"$label":"ACTS_IN","name":"Matka\/Natalya","type":"Role","_key":"12936","_from":"10096","_to":"10095"} +{"$label":"ACTS_IN","name":"Auberin","type":"Role","_key":"100510","_from":"10097","_to":"59272"} +{"$label":"ACTS_IN","name":"Katlina","type":"Role","_key":"72112","_from":"10097","_to":"43589"} +{"$label":"DIRECTED","_key":"12945","_from":"10101","_to":"10100"} +{"$label":"ACTS_IN","name":"Martha, Tochter des Stalkers","type":"Role","_key":"12951","_from":"10105","_to":"10102"} +{"$label":"ACTS_IN","name":"Frau des Stalkers","type":"Role","_key":"12948","_from":"10104","_to":"10102"} +{"$label":"ACTS_IN","name":"Stalker","type":"Role","_key":"12947","_from":"10103","_to":"10102"} +{"$label":"ACTS_IN","name":"Philip Lombard","type":"Role","_key":"34529","_from":"10103","_to":"23635"} +{"$label":"ACTS_IN","name":"Tim Ribbon","type":"Role","_key":"12961","_from":"10111","_to":"10106"} +{"$label":"ACTS_IN","name":"Walter Ribbon","type":"Role","_key":"12960","_from":"10110","_to":"10106"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"12959","_from":"10109","_to":"10106"} +{"$label":"ACTS_IN","name":"Mrs. Chu","type":"Role","_key":"12958","_from":"10108","_to":"10106"} +{"$label":"DIRECTED","_key":"12952","_from":"10107","_to":"10106"} +{"$label":"DIRECTED","_key":"89235","_from":"10107","_to":"52837"} +{"$label":"DIRECTED","_key":"69113","_from":"10107","_to":"42289"} +{"$label":"ACTS_IN","name":"Mama Yamaguchi","type":"Role","_key":"93038","_from":"10108","_to":"54849"} +{"$label":"ACTS_IN","name":"Father Pat Hayes","type":"Role","_key":"115836","_from":"10110","_to":"68192"} +{"$label":"ACTS_IN","name":"President Chumley","type":"Role","_key":"108375","_from":"10110","_to":"64065"} +{"$label":"ACTS_IN","name":"Jack Hardemeyer","type":"Role","_key":"24642","_from":"10110","_to":"17819"} +{"$label":"ACTS_IN","name":"Clay Dean","type":"Role","_key":"12971","_from":"10117","_to":"10112"} +{"$label":"ACTS_IN","name":"Scotty McAllister","type":"Role","_key":"12968","_from":"10116","_to":"10112"} +{"$label":"ACTS_IN","name":"Toller","type":"Role","_key":"12965","_from":"10115","_to":"10112"} +{"$label":"ACTS_IN","name":"Jess Remsberg","type":"Role","_key":"12964","_from":"10114","_to":"10112"} +{"$label":"DIRECTED","_key":"12963","_from":"10113","_to":"10112"} +{"$label":"DIRECTED","_key":"99871","_from":"10113","_to":"58899"} +{"$label":"DIRECTED","_key":"45642","_from":"10113","_to":"30214"} +{"$label":"ACTS_IN","name":"Latigo","type":"Role","_key":"115669","_from":"10114","_to":"68096"} +{"$label":"ACTS_IN","name":"President Matt Douglas","type":"Role","_key":"113968","_from":"10114","_to":"67124"} +{"$label":"ACTS_IN","name":"Dr. Robert Smith","type":"Role","_key":"105656","_from":"10114","_to":"62188"} +{"$label":"ACTS_IN","name":"Frank Watters","type":"Role","_key":"105205","_from":"10114","_to":"61913"} +{"$label":"ACTS_IN","name":"Howard 'Red' Stevens","type":"Role","_key":"101167","_from":"10114","_to":"59602"} +{"$label":"ACTS_IN","name":"King Marchand","type":"Role","_key":"90609","_from":"10114","_to":"53513"} +{"$label":"ACTS_IN","name":"Jason McCullough","type":"Role","_key":"70770","_from":"10114","_to":"43036"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"67477","_from":"10114","_to":"41562"} +{"$label":"ACTS_IN","name":"Commander Lyle Tiberius Rourke","type":"Role","_key":"66357","_from":"10114","_to":"41042"} +{"$label":"ACTS_IN","name":"Shepard James 'Shep' Walker","type":"Role","_key":"54832","_from":"10114","_to":"35080"} +{"$label":"ACTS_IN","name":"Marshal Zane Cooper","type":"Role","_key":"53339","_from":"10114","_to":"34482"} +{"$label":"ACTS_IN","name":"Flight Lt. Hendley","type":"Role","_key":"40470","_from":"10114","_to":"27264"} +{"$label":"ACTS_IN","name":"Tank Sullivan","type":"Role","_key":"37810","_from":"10114","_to":"25635"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15927","_from":"10114","_to":"12118"} +{"$label":"ACTS_IN","name":"Ben Munceford","type":"Role","_key":"113819","_from":"10115","_to":"67051"} +{"$label":"ACTS_IN","name":"Roy Parmenter","type":"Role","_key":"89931","_from":"10115","_to":"53211"} +{"$label":"ACTS_IN","name":"Noah Cullen","type":"Role","_key":"69708","_from":"10115","_to":"42555"} +{"$label":"ACTS_IN","name":"Det. Virgil Tibbs","type":"Role","_key":"64726","_from":"10115","_to":"40299"} +{"$label":"ACTS_IN","name":"Warren Stantin","type":"Role","_key":"55951","_from":"10115","_to":"35578"} +{"$label":"ACTS_IN","name":"Shack Twala","type":"Role","_key":"45643","_from":"10115","_to":"30214"} +{"$label":"ACTS_IN","name":"Carter Preston","type":"Role","_key":"34242","_from":"10115","_to":"23506"} +{"$label":"ACTS_IN","name":"Simon von Cyrene","type":"Role","_key":"21263","_from":"10115","_to":"15553"} +{"$label":"ACTS_IN","name":"Donald Crease","type":"Role","_key":"20395","_from":"10115","_to":"14934"} +{"$label":"ACTS_IN","name":"Porgy","type":"Role","_key":"16818","_from":"10115","_to":"12668"} +{"$label":"ACTS_IN","name":"Dr. John Wade Prentice","type":"Role","_key":"16221","_from":"10115","_to":"12311"} +{"$label":"DIRECTED","_key":"63616","_from":"10115","_to":"39797"} +{"$label":"ACTS_IN","name":"George Adamson","type":"Role","_key":"104037","_from":"10116","_to":"61204"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"12985","_from":"10130","_to":"10118"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"12984","_from":"10129","_to":"10118"} +{"$label":"ACTS_IN","name":"Big Roddie","type":"Role","_key":"12983","_from":"10128","_to":"10118"} +{"$label":"ACTS_IN","name":"Wee Roddie","type":"Role","_key":"12982","_from":"10127","_to":"10118"} +{"$label":"ACTS_IN","name":"Parish Priest","type":"Role","_key":"12980","_from":"10126","_to":"10118"} +{"$label":"ACTS_IN","name":"Hamid","type":"Role","_key":"12979","_from":"10125","_to":"10118"} +{"$label":"ACTS_IN","name":"Tariq Khan","type":"Role","_key":"12978","_from":"10124","_to":"10118"} +{"$label":"ACTS_IN","name":"Tahara Khan","type":"Role","_key":"12977","_from":"10123","_to":"10118"} +{"$label":"ACTS_IN","name":"Rukhsana Khan","type":"Role","_key":"12976","_from":"10122","_to":"10118"} +{"$label":"ACTS_IN","name":"Sadia Khan","type":"Role","_key":"12975","_from":"10121","_to":"10118"} +{"$label":"ACTS_IN","name":"Roisin Hanlon","type":"Role","_key":"12974","_from":"10120","_to":"10118"} +{"$label":"ACTS_IN","name":"Casim Khan","type":"Role","_key":"12973","_from":"10119","_to":"10118"} +{"$label":"ACTS_IN","name":"Atta Yaqub","type":"Role","_key":"91660","_from":"10119","_to":"54052"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"108775","_from":"10120","_to":"64301"} +{"$label":"ACTS_IN","name":"Saskia","type":"Role","_key":"32649","_from":"10120","_to":"22682"} +{"$label":"ACTS_IN","name":"Edie","type":"Role","_key":"13679","_from":"10120","_to":"10618"} +{"$label":"ACTS_IN","name":"Eily Bergin","type":"Role","_key":"13153","_from":"10120","_to":"10247"} +{"$label":"DIRECTED","_key":"102022","_from":"10127","_to":"60027"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"48245","_from":"10127","_to":"31694"} +{"$label":"ACTS_IN","name":"Popper Sieppe","type":"Role","_key":"12993","_from":"10136","_to":"10131"} +{"$label":"ACTS_IN","name":"Mommer Sieppe","type":"Role","_key":"12992","_from":"10135","_to":"10131"} +{"$label":"ACTS_IN","name":"Mother McTeague","type":"Role","_key":"12991","_from":"10134","_to":"10131"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"12990","_from":"10133","_to":"10131"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"12989","_from":"10132","_to":"10131"} +{"$label":"ACTS_IN","name":"von Berg","type":"Role","_key":"27410","_from":"10132","_to":"19685"} +{"$label":"ACTS_IN","name":"Mrs. Hawkins","type":"Role","_key":"25020","_from":"10134","_to":"18072"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"25564","_from":"10136","_to":"18417"} +{"$label":"DIRECTED","_key":"13014","_from":"10150","_to":"10137"} +{"$label":"ACTS_IN","name":"Mrs. Green","type":"Role","_key":"13013","_from":"10149","_to":"10137"} +{"$label":"ACTS_IN","name":"Millie Stone","type":"Role","_key":"13012","_from":"10148","_to":"10137"} +{"$label":"ACTS_IN","name":"Holly Robbins","type":"Role","_key":"13011","_from":"10147","_to":"10137"} +{"$label":"ACTS_IN","name":"Kim Furillo","type":"Role","_key":"13010","_from":"10146","_to":"10137"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"13008","_from":"10145","_to":"10137"} +{"$label":"ACTS_IN","name":"Arlene Berquist","type":"Role","_key":"13007","_from":"10144","_to":"10137"} +{"$label":"ACTS_IN","name":"Dr. Steven Jessup","type":"Role","_key":"13005","_from":"10143","_to":"10137"} +{"$label":"ACTS_IN","name":"Ira Shalowitz","type":"Role","_key":"13004","_from":"10142","_to":"10137"} +{"$label":"ACTS_IN","name":"Barry Shalowitz","type":"Role","_key":"13003","_from":"10141","_to":"10137"} +{"$label":"ACTS_IN","name":"Clay Stone","type":"Role","_key":"13001","_from":"10140","_to":"10137"} +{"$label":"ACTS_IN","name":"Bonnie Rayburn","type":"Role","_key":"13000","_from":"10139","_to":"10137"} +{"$label":"ACTS_IN","name":"Barbara Robbins","type":"Role","_key":"12999","_from":"10138","_to":"10137"} +{"$label":"ACTS_IN","name":"Laurel Stevenson","type":"Role","_key":"73005","_from":"10138","_to":"43937"} +{"$label":"ACTS_IN","name":"Lisa Fredericks","type":"Role","_key":"113993","_from":"10139","_to":"67134"} +{"$label":"ACTS_IN","name":"Billie Jean Davy","type":"Role","_key":"106552","_from":"10139","_to":"62788"} +{"$label":"ACTS_IN","name":"Sandy Kessler","type":"Role","_key":"88326","_from":"10139","_to":"52377"} +{"$label":"ACTS_IN","name":"Christy Wills","type":"Role","_key":"59514","_from":"10139","_to":"37578"} +{"$label":"ACTS_IN","name":"Kara \/ Supergirl \/ Linda Lee","type":"Role","_key":"55287","_from":"10139","_to":"35258"} +{"$label":"ACTS_IN","name":"MacCready","type":"Role","_key":"118805","_from":"10140","_to":"69847"} +{"$label":"ACTS_IN","name":"Roger Roy McClellan","type":"Role","_key":"108423","_from":"10140","_to":"64098"} +{"$label":"ACTS_IN","name":"Blake Davies","type":"Role","_key":"105203","_from":"10140","_to":"61913"} +{"$label":"ACTS_IN","name":"Charlie Barton","type":"Role","_key":"68992","_from":"10140","_to":"42233"} +{"$label":"ACTS_IN","name":"Sheldon Marcone","type":"Role","_key":"53092","_from":"10140","_to":"34363"} +{"$label":"ACTS_IN","name":"Riddle","type":"Role","_key":"25236","_from":"10140","_to":"18207"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"110776","_from":"10141","_to":"65435"} +{"$label":"ACTS_IN","name":"Principal Max Anderson","type":"Role","_key":"67314","_from":"10141","_to":"41492"} +{"$label":"ACTS_IN","name":"Mr. Jacks","type":"Role","_key":"110295","_from":"10142","_to":"65177"} +{"$label":"ACTS_IN","name":"Harry Ruben","type":"Role","_key":"57159","_from":"10142","_to":"36271"} +{"$label":"ACTS_IN","name":"Leo Devoe","type":"Role","_key":"47798","_from":"10142","_to":"31468"} +{"$label":"ACTS_IN","name":"Dr. Richard Long","type":"Role","_key":"18825","_from":"10142","_to":"13904"} +{"$label":"ACTS_IN","name":"Arthur Stegman","type":"Role","_key":"18419","_from":"10142","_to":"13655"} +{"$label":"ACTS_IN","name":"Curtis Avery","type":"Role","_key":"17807","_from":"10142","_to":"13273"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"16413","_from":"10142","_to":"12420"} +{"$label":"ACTS_IN","name":"Actor at Audition","type":"Role","_key":"69331","_from":"10143","_to":"42372"} +{"$label":"ACTS_IN","name":"Detective Harvey Bullock","type":"Role","_key":"111028","_from":"10145","_to":"65577"} +{"$label":"ACTS_IN","name":"Detective Harvey Bullock","type":"Role","_key":"105981","_from":"10145","_to":"62398"} +{"$label":"ACTS_IN","name":"Detective Harvey Bullock","type":"Role","_key":"102476","_from":"10145","_to":"60297"} +{"$label":"ACTS_IN","name":"Liquor Store Salesman","type":"Role","_key":"101585","_from":"10145","_to":"59785"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"45466","_from":"10145","_to":"30120"} +{"$label":"DIRECTED","_key":"88586","_from":"10150","_to":"52495"} +{"$label":"DIRECTED","_key":"71601","_from":"10150","_to":"43367"} +{"$label":"DIRECTED","_key":"57166","_from":"10150","_to":"36271"} +{"$label":"DIRECTED","_key":"53362","_from":"10150","_to":"34487"} +{"$label":"DIRECTED","_key":"13025","_from":"10159","_to":"10151"} +{"$label":"ACTS_IN","name":"Louis Lepl\u00e9e","type":"Role","_key":"13024","_from":"10158","_to":"10151"} +{"$label":"ACTS_IN","name":"La Grand-M\u00e8re","type":"Role","_key":"13023","_from":"10157","_to":"10151"} +{"$label":"ACTS_IN","name":"Marlene Dietrich","type":"Role","_key":"13022","_from":"10156","_to":"10151"} +{"$label":"ACTS_IN","name":"Raymond Asso","type":"Role","_key":"13021","_from":"10155","_to":"10151"} +{"$label":"ACTS_IN","name":"Louis Barrier","type":"Role","_key":"13020","_from":"10154","_to":"10151"} +{"$label":"ACTS_IN","name":"Louis Gassion","type":"Role","_key":"13018","_from":"10153","_to":"10151"} +{"$label":"ACTS_IN","name":"Annetta Gassion","type":"Role","_key":"13017","_from":"10152","_to":"10151"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"69026","_from":"10152","_to":"42252"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"49715","_from":"10152","_to":"32530"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"121501","_from":"10153","_to":"71373"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116294","_from":"10153","_to":"68464"} +{"$label":"ACTS_IN","name":"Albert Spaggiari","type":"Role","_key":"96144","_from":"10153","_to":"56510"} +{"$label":"ACTS_IN","name":"Caius antivirus","type":"Role","_key":"24182","_from":"10153","_to":"17515"} +{"$label":"ACTS_IN","name":"Pierre-Jean Lamour","type":"Role","_key":"22116","_from":"10153","_to":"16130"} +{"$label":"ACTS_IN","name":"Bruno Lemoine","type":"Role","_key":"17663","_from":"10153","_to":"13175"} +{"$label":"DIRECTED","_key":"96152","_from":"10153","_to":"56510"} +{"$label":"ACTS_IN","name":"Beaumagnan","type":"Role","_key":"70521","_from":"10154","_to":"42926"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"62425","_from":"10154","_to":"39328"} +{"$label":"ACTS_IN","name":"Jean Fouch\u00e9court","type":"Role","_key":"49741","_from":"10154","_to":"32543"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"24025","_from":"10154","_to":"17418"} +{"$label":"ACTS_IN","name":"Berthaut","type":"Role","_key":"94898","_from":"10155","_to":"55872"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Cayrade","type":"Role","_key":"71444","_from":"10156","_to":"43314"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Gaudens","type":"Role","_key":"37919","_from":"10156","_to":"25672"} +{"$label":"ACTS_IN","name":"Josefine","type":"Role","_key":"34364","_from":"10156","_to":"23562"} +{"$label":"ACTS_IN","name":"Marie-Christine Vercel","type":"Role","_key":"21544","_from":"10156","_to":"15751"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"42083","_from":"10157","_to":"28196"} +{"$label":"ACTS_IN","name":"Bambi","type":"Role","_key":"30919","_from":"10157","_to":"21670"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"29819","_from":"10157","_to":"21100"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"14578","_from":"10157","_to":"11233"} +{"$label":"ACTS_IN","name":"Onoff","type":"Role","_key":"119301","_from":"10158","_to":"70095"} +{"$label":"ACTS_IN","name":"Campana","type":"Role","_key":"118800","_from":"10158","_to":"69846"} +{"$label":"ACTS_IN","name":"Le cardiologue","type":"Role","_key":"118290","_from":"10158","_to":"69527"} +{"$label":"ACTS_IN","name":"Paul Bellamy","type":"Role","_key":"105026","_from":"10158","_to":"61813"} +{"$label":"ACTS_IN","name":"Jean-\u00c9tienne Beaufort","type":"Role","_key":"101295","_from":"10158","_to":"59642"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"101287","_from":"10158","_to":"59640"} +{"$label":"ACTS_IN","name":"Boudu","type":"Role","_key":"101260","_from":"10158","_to":"59630"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois Jackson","type":"Role","_key":"96104","_from":"10158","_to":"56487"} +{"$label":"ACTS_IN","name":"Guido","type":"Role","_key":"95606","_from":"10158","_to":"56238"} +{"$label":"ACTS_IN","name":"Bernard Coudray","type":"Role","_key":"90409","_from":"10158","_to":"53419"} +{"$label":"ACTS_IN","name":"Georges Faure","type":"Role","_key":"88349","_from":"10158","_to":"52386"} +{"$label":"ACTS_IN","name":"Auguste Rodin","type":"Role","_key":"71696","_from":"10158","_to":"43404"} +{"$label":"ACTS_IN","name":"Cyrano de Bergerac","type":"Role","_key":"71473","_from":"10158","_to":"43327"} +{"$label":"ACTS_IN","name":"F\u00e9lix Santini","type":"Role","_key":"69871","_from":"10158","_to":"42634"} +{"$label":"ACTS_IN","name":"Reynaldo","type":"Role","_key":"64003","_from":"10158","_to":"39964"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"63617","_from":"10158","_to":"39800"} +{"$label":"ACTS_IN","name":"Jean Lucas","type":"Role","_key":"63606","_from":"10158","_to":"39796"} +{"$label":"ACTS_IN","name":"Vidocq","type":"Role","_key":"54927","_from":"10158","_to":"35122"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix","type":"Role","_key":"54725","_from":"10158","_to":"35031"} +{"$label":"ACTS_IN","name":"Gorsky","type":"Role","_key":"53476","_from":"10158","_to":"34540"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"53059","_from":"10158","_to":"34349"} +{"$label":"ACTS_IN","name":"Denis Klein","type":"Role","_key":"46250","_from":"10158","_to":"30575"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"46030","_from":"10158","_to":"30419"} +{"$label":"ACTS_IN","name":"Francois Vatel","type":"Role","_key":"45808","_from":"10158","_to":"30302"} +{"$label":"ACTS_IN","name":"Louis Vincent Mangin","type":"Role","_key":"42931","_from":"10158","_to":"28687"} +{"$label":"ACTS_IN","name":"Daniel Foray","type":"Role","_key":"42772","_from":"10158","_to":"28621"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"35832","_from":"10158","_to":"24328"} +{"$label":"ACTS_IN","name":"Fr\u00e9do, le mouton","type":"Role","_key":"34046","_from":"10158","_to":"23410"} +{"$label":"ACTS_IN","name":"Waschmaschinenvertreter","type":"Role","_key":"33827","_from":"10158","_to":"23309"} +{"$label":"ACTS_IN","name":"un jeune truand","type":"Role","_key":"33341","_from":"10158","_to":"23092"} +{"$label":"ACTS_IN","name":"Horseman","type":"Role","_key":"32859","_from":"10158","_to":"22810"} +{"$label":"ACTS_IN","name":"Edmond Dant\u00e8s","type":"Role","_key":"32543","_from":"10158","_to":"22629"} +{"$label":"ACTS_IN","name":"Arnaud de Tihl","type":"Role","_key":"32041","_from":"10158","_to":"22322"} +{"$label":"ACTS_IN","name":"Jean de Florette","type":"Role","_key":"32015","_from":"10158","_to":"22309"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31632","_from":"10158","_to":"22083"} +{"$label":"ACTS_IN","name":"Charles Saganne","type":"Role","_key":"30701","_from":"10158","_to":"21541"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"30632","_from":"10158","_to":"21513"} +{"$label":"ACTS_IN","name":"Georges Danton","type":"Role","_key":"30075","_from":"10158","_to":"21206"} +{"$label":"ACTS_IN","name":"David Martinaud","type":"Role","_key":"29838","_from":"10158","_to":"21113"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"29755","_from":"10158","_to":"21066"} +{"$label":"ACTS_IN","name":"le facteur","type":"Role","_key":"29587","_from":"10158","_to":"20945"} +{"$label":"ACTS_IN","name":"G\u00e9rard Depardieu","type":"Role","_key":"29503","_from":"10158","_to":"20909"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"29470","_from":"10158","_to":"20898"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"28987","_from":"10158","_to":"20698"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"28981","_from":"10158","_to":"20696"} +{"$label":"ACTS_IN","name":"Olmo Dalco","type":"Role","_key":"28824","_from":"10158","_to":"20607"} +{"$label":"ACTS_IN","name":"Bogus","type":"Role","_key":"28175","_from":"10158","_to":"20186"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix","type":"Role","_key":"24169","_from":"10158","_to":"17515"} +{"$label":"ACTS_IN","name":"Obelix","type":"Role","_key":"20973","_from":"10158","_to":"15344"} +{"$label":"ACTS_IN","name":"Bernard Granger","type":"Role","_key":"15175","_from":"10158","_to":"11631"} +{"$label":"ACTS_IN","name":"Christopher Columbus","type":"Role","_key":"13502","_from":"10158","_to":"10513"} +{"$label":"DIRECTED","_key":"19838","_from":"10158","_to":"14635"} +{"$label":"DIRECTED","_key":"29183","_from":"10159","_to":"20776"} +{"$label":"DIRECTED","_key":"13034","_from":"10164","_to":"10160"} +{"$label":"ACTS_IN","name":"Mr. Blair","type":"Role","_key":"13032","_from":"10163","_to":"10160"} +{"$label":"ACTS_IN","name":"Glasspoole","type":"Role","_key":"13031","_from":"10162","_to":"10160"} +{"$label":"ACTS_IN","name":"Morgan Adams","type":"Role","_key":"13026","_from":"10161","_to":"10160"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"103303","_from":"10161","_to":"60773"} +{"$label":"ACTS_IN","name":"Charly Baltimore","type":"Role","_key":"69687","_from":"10161","_to":"42545"} +{"$label":"ACTS_IN","name":"Dottie Hinson","type":"Role","_key":"68920","_from":"10161","_to":"42198"} +{"$label":"ACTS_IN","name":"Mrs. Eleanor Little","type":"Role","_key":"67166","_from":"10161","_to":"41441"} +{"$label":"ACTS_IN","name":"Phyllis Potter","type":"Role","_key":"65294","_from":"10161","_to":"40526"} +{"$label":"ACTS_IN","name":"Gale Gayley","type":"Role","_key":"65125","_from":"10161","_to":"40453"} +{"$label":"ACTS_IN","name":"Eleanor Little (voice)","type":"Role","_key":"61169","_from":"10161","_to":"38655"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"56257","_from":"10161","_to":"35740"} +{"$label":"ACTS_IN","name":"Veronica Quaife","type":"Role","_key":"53779","_from":"10161","_to":"34659"} +{"$label":"ACTS_IN","name":"Tamara \/ Becky","type":"Role","_key":"38613","_from":"10161","_to":"26084"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"29413","_from":"10161","_to":"20869"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"19209","_from":"10161","_to":"14203"} +{"$label":"ACTS_IN","name":"Thelma Yvonne Dickinson","type":"Role","_key":"13644","_from":"10161","_to":"10603"} +{"$label":"ACTS_IN","name":"Detective Sapir","type":"Role","_key":"94909","_from":"10162","_to":"55876"} +{"$label":"ACTS_IN","name":"Phillips","type":"Role","_key":"45637","_from":"10162","_to":"30210"} +{"$label":"ACTS_IN","name":"Harold Moss","type":"Role","_key":"45288","_from":"10162","_to":"30044"} +{"$label":"ACTS_IN","name":"Charles Biggs","type":"Role","_key":"18736","_from":"10162","_to":"13858"} +{"$label":"ACTS_IN","name":"Man in Bed","type":"Role","_key":"69700","_from":"10163","_to":"42545"} +{"$label":"ACTS_IN","name":"Agent Kowalski","type":"Role","_key":"64287","_from":"10163","_to":"40082"} +{"$label":"ACTS_IN","name":"Yared","type":"Role","_key":"59481","_from":"10163","_to":"37557"} +{"$label":"ACTS_IN","name":"Farmer Hoss","type":"Role","_key":"59425","_from":"10163","_to":"37532"} +{"$label":"ACTS_IN","name":"Sheriff Boyd","type":"Role","_key":"18837","_from":"10163","_to":"13912"} +{"$label":"DIRECTED","_key":"111235","_from":"10164","_to":"65683"} +{"$label":"DIRECTED","_key":"109648","_from":"10164","_to":"64758"} +{"$label":"DIRECTED","_key":"93612","_from":"10164","_to":"55117"} +{"$label":"DIRECTED","_key":"69686","_from":"10164","_to":"42545"} +{"$label":"DIRECTED","_key":"67381","_from":"10164","_to":"41517"} +{"$label":"DIRECTED","_key":"63561","_from":"10164","_to":"39780"} +{"$label":"DIRECTED","_key":"61126","_from":"10164","_to":"38625"} +{"$label":"DIRECTED","_key":"58474","_from":"10164","_to":"36963"} +{"$label":"DIRECTED","_key":"54608","_from":"10164","_to":"34978"} +{"$label":"DIRECTED","_key":"53294","_from":"10164","_to":"34457"} +{"$label":"DIRECTED","_key":"51453","_from":"10164","_to":"33562"} +{"$label":"DIRECTED","_key":"13923","_from":"10164","_to":"10802"} +{"$label":"ACTS_IN","name":"Sgt. Pinback alias Bill Fruge","type":"Role","_key":"13044","_from":"10174","_to":"10165"} +{"$label":"ACTS_IN","name":"Bomb 19 ( voice )","type":"Role","_key":"13043","_from":"10173","_to":"10165"} +{"$label":"ACTS_IN","name":"Muttercomputer ( voice )","type":"Role","_key":"13042","_from":"10172","_to":"10165"} +{"$label":"ACTS_IN","name":"Comannder Powell ( voice )","type":"Role","_key":"13041","_from":"10171","_to":"10165"} +{"$label":"ACTS_IN","name":"Ailien","type":"Role","_key":"13040","_from":"10170","_to":"10165"} +{"$label":"ACTS_IN","name":"Bomb 20 ( voice )","type":"Role","_key":"13039","_from":"10169","_to":"10165"} +{"$label":"ACTS_IN","name":"Talby","type":"Role","_key":"13038","_from":"10168","_to":"10165"} +{"$label":"ACTS_IN","name":"Boiler","type":"Role","_key":"13037","_from":"10167","_to":"10165"} +{"$label":"ACTS_IN","name":"Lt. Doolittle","type":"Role","_key":"13036","_from":"10166","_to":"10165"} +{"$label":"DIRECTED","_key":"88248","_from":"10170","_to":"52352"} +{"$label":"DIRECTED","_key":"72538","_from":"10170","_to":"43750"} +{"$label":"DIRECTED","_key":"67257","_from":"10170","_to":"41467"} +{"$label":"DIRECTED","_key":"66783","_from":"10174","_to":"41258"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"13049","_from":"10177","_to":"10175"} +{"$label":"DIRECTED","_key":"13045","_from":"10176","_to":"10175"} +{"$label":"ACTS_IN","name":"Barfly","type":"Role","_key":"13056","_from":"10180","_to":"10178"} +{"$label":"ACTS_IN","name":"Therapist","type":"Role","_key":"13055","_from":"10179","_to":"10178"} +{"$label":"DIRECTED","_key":"101895","_from":"10180","_to":"59969"} +{"$label":"DIRECTED","_key":"65595","_from":"10180","_to":"40653"} +{"$label":"DIRECTED","_key":"55504","_from":"10180","_to":"35362"} +{"$label":"DIRECTED","_key":"49913","_from":"10180","_to":"32673"} +{"$label":"DIRECTED","_key":"17590","_from":"10180","_to":"13137"} +{"$label":"ACTS_IN","name":"Comrade Chin","type":"Role","_key":"13064","_from":"10185","_to":"10181"} +{"$label":"ACTS_IN","name":"Frau Baden","type":"Role","_key":"13062","_from":"10184","_to":"10181"} +{"$label":"ACTS_IN","name":"Jeanne Gallimard","type":"Role","_key":"13060","_from":"10183","_to":"10181"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Gallimard","type":"Role","_key":"13058","_from":"10182","_to":"10181"} +{"$label":"ACTS_IN","name":"Michael Gosselyn","type":"Role","_key":"117167","_from":"10182","_to":"68932"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"114796","_from":"10182","_to":"67617"} +{"$label":"ACTS_IN","name":"Alex Parrish","type":"Role","_key":"100771","_from":"10182","_to":"59411"} +{"$label":"ACTS_IN","name":"Patrician","type":"Role","_key":"95116","_from":"10182","_to":"55975"} +{"$label":"ACTS_IN","name":"Randall Bragg","type":"Role","_key":"91020","_from":"10182","_to":"53708"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"90121","_from":"10182","_to":"53294"} +{"$label":"ACTS_IN","name":"Profion","type":"Role","_key":"72353","_from":"10182","_to":"43696"} +{"$label":"ACTS_IN","name":"Robert Dudley, Earl of Leicester","type":"Role","_key":"72004","_from":"10182","_to":"43543"} +{"$label":"ACTS_IN","name":"Father Gabriel","type":"Role","_key":"69731","_from":"10182","_to":"42563"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"68230","_from":"10182","_to":"41901"} +{"$label":"ACTS_IN","name":"Dr. Stephen Fleming","type":"Role","_key":"67287","_from":"10182","_to":"41486"} +{"$label":"ACTS_IN","name":"Humbert Humbert","type":"Role","_key":"56494","_from":"10182","_to":"35887"} +{"$label":"ACTS_IN","name":"Pucci","type":"Role","_key":"55539","_from":"10182","_to":"35377"} +{"$label":"ACTS_IN","name":"Beverly Mantle","type":"Role","_key":"54550","_from":"10182","_to":"34961"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"53058","_from":"10182","_to":"34349"} +{"$label":"ACTS_IN","name":"Scar","type":"Role","_key":"50226","_from":"10182","_to":"32826"} +{"$label":"ACTS_IN","name":"Brom","type":"Role","_key":"21668","_from":"10182","_to":"15842"} +{"$label":"ACTS_IN","name":"Kafka","type":"Role","_key":"20163","_from":"10182","_to":"14795"} +{"$label":"ACTS_IN","name":"Esteban Trueba","type":"Role","_key":"19779","_from":"10182","_to":"14606"} +{"$label":"ACTS_IN","name":"Kingsley Stewart","type":"Role","_key":"15304","_from":"10182","_to":"11713"} +{"$label":"ACTS_IN","name":"Simon Peter Gruber","type":"Role","_key":"13901","_from":"10182","_to":"10792"} +{"$label":"ACTS_IN","name":"Tiberias","type":"Role","_key":"13549","_from":"10182","_to":"10534"} +{"$label":"ACTS_IN","name":"Rosemarie","type":"Role","_key":"91052","_from":"10183","_to":"53726"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"61400","_from":"10183","_to":"38731"} +{"$label":"ACTS_IN","name":"Katharina Hartmann","type":"Role","_key":"52369","_from":"10183","_to":"34082"} +{"$label":"ACTS_IN","name":"Barbara Landau","type":"Role","_key":"43041","_from":"10183","_to":"28745"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"19817","_from":"10183","_to":"14625"} +{"$label":"ACTS_IN","name":"Dependienta","type":"Role","_key":"13081","_from":"10200","_to":"10186"} +{"$label":"ACTS_IN","name":"Mensajera","type":"Role","_key":"13080","_from":"10199","_to":"10186"} +{"$label":"ACTS_IN","name":"\u00c1lvaro Midelman","type":"Role","_key":"13079","_from":"10198","_to":"10186"} +{"$label":"ACTS_IN","name":"Madre de Otto","type":"Role","_key":"13078","_from":"10197","_to":"10186"} +{"$label":"ACTS_IN","name":"Aki","type":"Role","_key":"13077","_from":"10196","_to":"10186"} +{"$label":"ACTS_IN","name":"Sof\u00eda","type":"Role","_key":"13076","_from":"10195","_to":"10186"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"13075","_from":"10194","_to":"10186"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"13074","_from":"10193","_to":"10186"} +{"$label":"ACTS_IN","name":"\u00c1lvaro","type":"Role","_key":"13073","_from":"10192","_to":"10186"} +{"$label":"ACTS_IN","name":"Ana adolescente","type":"Role","_key":"13072","_from":"10191","_to":"10186"} +{"$label":"ACTS_IN","name":"Otto adolescente","type":"Role","_key":"13071","_from":"10190","_to":"10186"} +{"$label":"ACTS_IN","name":"Ana ni\u00f1a","type":"Role","_key":"13070","_from":"10189","_to":"10186"} +{"$label":"ACTS_IN","name":"Otto ni\u00f1o","type":"Role","_key":"13069","_from":"10188","_to":"10186"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"13068","_from":"10187","_to":"10186"} +{"$label":"ACTS_IN","name":"Dr. Scott","type":"Role","_key":"110584","_from":"10187","_to":"65331"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"21580","_from":"10192","_to":"15774"} +{"$label":"ACTS_IN","name":"Jota","type":"Role","_key":"21425","_from":"10192","_to":"15673"} +{"$label":"ACTS_IN","name":"Talk Show Host","type":"Role","_key":"13095","_from":"10209","_to":"10201"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"13093","_from":"10208","_to":"10201"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"13092","_from":"10207","_to":"10201"} +{"$label":"ACTS_IN","name":"The Rat","type":"Role","_key":"13091","_from":"10206","_to":"10201"} +{"$label":"ACTS_IN","name":"Kioki","type":"Role","_key":"13090","_from":"10205","_to":"10201"} +{"$label":"ACTS_IN","name":"Peter Gatien","type":"Role","_key":"13089","_from":"10204","_to":"10201"} +{"$label":"DIRECTED","_key":"13083","_from":"10203","_to":"10201"} +{"$label":"DIRECTED","_key":"13082","_from":"10202","_to":"10201"} +{"$label":"DIRECTED","_key":"88842","_from":"10202","_to":"52640"} +{"$label":"DIRECTED","_key":"88843","_from":"10203","_to":"52640"} +{"$label":"ACTS_IN","name":"John Stark","type":"Role","_key":"119086","_from":"10204","_to":"69998"} +{"$label":"ACTS_IN","name":"Leander McNelly","type":"Role","_key":"94874","_from":"10204","_to":"55861"} +{"$label":"ACTS_IN","name":"Moses \"Hard Mo\" Baxter","type":"Role","_key":"69058","_from":"10204","_to":"42267"} +{"$label":"ACTS_IN","name":"Charles Newman","type":"Role","_key":"64099","_from":"10204","_to":"40002"} +{"$label":"ACTS_IN","name":"Bryan Bedford","type":"Role","_key":"63754","_from":"10204","_to":"39867"} +{"$label":"ACTS_IN","name":"Sgt. Frances Lazerov","type":"Role","_key":"60125","_from":"10204","_to":"37937"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"58653","_from":"10204","_to":"37053"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"56025","_from":"10204","_to":"35612"} +{"$label":"ACTS_IN","name":"Secret Service Agent Al D'Andrea","type":"Role","_key":"53517","_from":"10204","_to":"34555"} +{"$label":"ACTS_IN","name":"David Lind","type":"Role","_key":"35460","_from":"10204","_to":"24121"} +{"$label":"ACTS_IN","name":"Tony Valdez \/ The Condor","type":"Role","_key":"113792","_from":"10205","_to":"67046"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"98706","_from":"10205","_to":"58173"} +{"$label":"ACTS_IN","name":"Raul","type":"Role","_key":"49019","_from":"10205","_to":"32126"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"119327","_from":"10206","_to":"70114"} +{"$label":"ACTS_IN","name":"Benita","type":"Role","_key":"105683","_from":"10207","_to":"62205"} +{"$label":"ACTS_IN","name":"Clem","type":"Role","_key":"102049","_from":"10207","_to":"60038"} +{"$label":"ACTS_IN","name":"Catherine Wyler","type":"Role","_key":"69608","_from":"10207","_to":"42492"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"63981","_from":"10207","_to":"39954"} +{"$label":"ACTS_IN","name":"Laurie Callahan","type":"Role","_key":"56500","_from":"10207","_to":"35888"} +{"$label":"ACTS_IN","name":"Elizabeth Short","type":"Role","_key":"55471","_from":"10207","_to":"35352"} +{"$label":"ACTS_IN","name":"Rosetta Young","type":"Role","_key":"49773","_from":"10207","_to":"32563"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"111550","_from":"10208","_to":"65857"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"103543","_from":"10208","_to":"60906"} +{"$label":"ACTS_IN","name":"Vivian Abromowitz","type":"Role","_key":"101348","_from":"10208","_to":"59663"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"56680","_from":"10208","_to":"35999"} +{"$label":"ACTS_IN","name":"Djuna 'D.J.' Berlin","type":"Role","_key":"55948","_from":"10208","_to":"35576"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"23445","_from":"10208","_to":"16996"} +{"$label":"ACTS_IN","name":"Cal Scoppa","type":"Role","_key":"117820","_from":"10209","_to":"69258"} +{"$label":"ACTS_IN","name":"Cheol-gu","type":"Role","_key":"13099","_from":"10214","_to":"10210"} +{"$label":"ACTS_IN","name":"Mi-yeong","type":"Role","_key":"13098","_from":"10213","_to":"10210"} +{"$label":"ACTS_IN","name":"Kim Sang-byeong","type":"Role","_key":"13097","_from":"10212","_to":"10210"} +{"$label":"ACTS_IN","name":"Kang Sang-byeong","type":"Role","_key":"13096","_from":"10211","_to":"10210"} +{"$label":"ACTS_IN","name":"Lee Han Dong-su","type":"Role","_key":"120698","_from":"10211","_to":"70891"} +{"$label":"ACTS_IN","name":"Jin-tae Lee","type":"Role","_key":"71348","_from":"10211","_to":"43274"} +{"$label":"ACTS_IN","name":"Kunlun","type":"Role","_key":"17443","_from":"10211","_to":"13036"} +{"$label":"DIRECTED","_key":"13108","_from":"10221","_to":"10215"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"13107","_from":"10220","_to":"10215"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"13105","_from":"10219","_to":"10215"} +{"$label":"ACTS_IN","name":"Pan","type":"Role","_key":"13104","_from":"10218","_to":"10215"} +{"$label":"ACTS_IN","name":"Capit\u00e1n Vidal","type":"Role","_key":"13103","_from":"10217","_to":"10215"} +{"$label":"ACTS_IN","name":"Ofelia","type":"Role","_key":"13101","_from":"10216","_to":"10215"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"115760","_from":"10217","_to":"68156"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"105525","_from":"10217","_to":"62092"} +{"$label":"ACTS_IN","name":"Costa","type":"Role","_key":"35170","_from":"10217","_to":"23966"} +{"$label":"ACTS_IN","name":"Joaqu\u00edn","type":"Role","_key":"21336","_from":"10217","_to":"15602"} +{"$label":"ACTS_IN","name":"Abe Sapien (voice)","type":"Role","_key":"110018","_from":"10218","_to":"65008"} +{"$label":"ACTS_IN","name":"Abe Sapien (voice)","type":"Role","_key":"93462","_from":"10218","_to":"55026"} +{"$label":"ACTS_IN","name":"Abe Sapien","type":"Role","_key":"68819","_from":"10218","_to":"42165"} +{"$label":"ACTS_IN","name":"Norrin Radd \/ Silver Surfer","type":"Role","_key":"17154","_from":"10218","_to":"12853"} +{"$label":"ACTS_IN","name":"Violeta","type":"Role","_key":"21660","_from":"10219","_to":"15835"} +{"$label":"DIRECTED","_key":"71334","_from":"10221","_to":"43266"} +{"$label":"DIRECTED","_key":"68815","_from":"10221","_to":"42165"} +{"$label":"DIRECTED","_key":"35151","_from":"10221","_to":"23957"} +{"$label":"DIRECTED","_key":"13480","_from":"10221","_to":"10484"} +{"$label":"DIRECTED","_key":"13253","_from":"10221","_to":"10315"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"13119","_from":"10230","_to":"10222"} +{"$label":"ACTS_IN","name":"Raquel","type":"Role","_key":"13118","_from":"10229","_to":"10222"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"13117","_from":"10228","_to":"10222"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"13116","_from":"10227","_to":"10222"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"13115","_from":"10226","_to":"10222"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"13114","_from":"10225","_to":"10222"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"13110","_from":"10224","_to":"10222"} +{"$label":"DIRECTED","_key":"13109","_from":"10223","_to":"10222"} +{"$label":"ACTS_IN","name":"Cantante en karaoke","type":"Role","_key":"21935","_from":"10223","_to":"16014"} +{"$label":"DIRECTED","_key":"21922","_from":"10223","_to":"16014"} +{"$label":"ACTS_IN","name":"Juani","type":"Role","_key":"48547","_from":"10225","_to":"31857"} +{"$label":"ACTS_IN","name":"Madame Mylene","type":"Role","_key":"48177","_from":"10225","_to":"31649"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"32175","_from":"10225","_to":"22425"} +{"$label":"ACTS_IN","name":"Cantante","type":"Role","_key":"32161","_from":"10225","_to":"22417"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"30912","_from":"10225","_to":"21662"} +{"$label":"ACTS_IN","name":"Paulina Morales","type":"Role","_key":"30090","_from":"10225","_to":"21209"} +{"$label":"ACTS_IN","name":"Maril\u00f3","type":"Role","_key":"21926","_from":"10230","_to":"16014"} +{"$label":"ACTS_IN","name":"Bego\u00f1a","type":"Role","_key":"21432","_from":"10230","_to":"15673"} +{"$label":"DIRECTED","_key":"13137","_from":"10246","_to":"10231"} +{"$label":"ACTS_IN","name":"Lala","type":"Role","_key":"13136","_from":"10245","_to":"10231"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"13135","_from":"10244","_to":"10231"} +{"$label":"ACTS_IN","name":"Tinas neuer Freund","type":"Role","_key":"13134","_from":"10243","_to":"10231"} +{"$label":"ACTS_IN","name":"AACC-Angestellter","type":"Role","_key":"13133","_from":"10242","_to":"10231"} +{"$label":"ACTS_IN","name":"IKEA Frau","type":"Role","_key":"13132","_from":"10241","_to":"10231"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"13129","_from":"10240","_to":"10231"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"13128","_from":"10239","_to":"10231"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"13127","_from":"10238","_to":"10231"} +{"$label":"ACTS_IN","name":"Gerichtsvollzieher","type":"Role","_key":"13126","_from":"10237","_to":"10231"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"13125","_from":"10236","_to":"10231"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"13124","_from":"10235","_to":"10231"} +{"$label":"ACTS_IN","name":"Flik","type":"Role","_key":"13123","_from":"10234","_to":"10231"} +{"$label":"ACTS_IN","name":"Marcia P. Garcia","type":"Role","_key":"13122","_from":"10233","_to":"10231"} +{"$label":"ACTS_IN","name":"Simon Peters","type":"Role","_key":"13120","_from":"10232","_to":"10231"} +{"$label":"ACTS_IN","name":"Schusch","type":"Role","_key":"65963","_from":"10232","_to":"40802"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen Bahnhof","type":"Role","_key":"59777","_from":"10232","_to":"37734"} +{"$label":"ACTS_IN","name":"Konstanzia","type":"Role","_key":"71305","_from":"10233","_to":"43257"} +{"$label":"ACTS_IN","name":"Evalon","type":"Role","_key":"121378","_from":"10236","_to":"71326"} +{"$label":"ACTS_IN","name":"Bollmann","type":"Role","_key":"71049","_from":"10237","_to":"43142"} +{"$label":"ACTS_IN","name":"Julia Bennet","type":"Role","_key":"60711","_from":"10238","_to":"38339"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"110281","_from":"10239","_to":"65170"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"69074","_from":"10239","_to":"42272"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"66941","_from":"10239","_to":"41326"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"40672","_from":"10239","_to":"27376"} +{"$label":"ACTS_IN","name":"Margarete","type":"Role","_key":"37130","_from":"10239","_to":"25155"} +{"$label":"ACTS_IN","name":"Elli","type":"Role","_key":"17009","_from":"10239","_to":"12760"} +{"$label":"ACTS_IN","name":"Svenja","type":"Role","_key":"67071","_from":"10240","_to":"41399"} +{"$label":"ACTS_IN","name":"Nadja Smith","type":"Role","_key":"42995","_from":"10240","_to":"28721"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"15036","_from":"10242","_to":"11560"} +{"$label":"ACTS_IN","name":"Ulrike","type":"Role","_key":"97514","_from":"10245","_to":"57421"} +{"$label":"ACTS_IN","name":"Elsa Gr\u00fcnbaum","type":"Role","_key":"42202","_from":"10245","_to":"28267"} +{"$label":"ACTS_IN","name":"Psychiaterin","type":"Role","_key":"40679","_from":"10245","_to":"27376"} +{"$label":"DIRECTED","_key":"46214","_from":"10246","_to":"30544"} +{"$label":"ACTS_IN","name":"Caroline Braden","type":"Role","_key":"13152","_from":"10257","_to":"10247"} +{"$label":"ACTS_IN","name":"Ma Braden","type":"Role","_key":"13151","_from":"10256","_to":"10247"} +{"$label":"ACTS_IN","name":"Benny Feely","type":"Role","_key":"13150","_from":"10255","_to":"10247"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"13149","_from":"10254","_to":"10247"} +{"$label":"ACTS_IN","name":"Jackie Timlin","type":"Role","_key":"13148","_from":"10253","_to":"10247"} +{"$label":"ACTS_IN","name":"Stripper","type":"Role","_key":"13147","_from":"10252","_to":"10247"} +{"$label":"ACTS_IN","name":"Mr. Silky String","type":"Role","_key":"13146","_from":"10251","_to":"10247"} +{"$label":"ACTS_IN","name":"Young Patrick Braden","type":"Role","_key":"13145","_from":"10250","_to":"10247"} +{"$label":"ACTS_IN","name":"Irwin","type":"Role","_key":"13142","_from":"10249","_to":"10247"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"13141","_from":"10248","_to":"10247"} +{"$label":"ACTS_IN","name":"Dan Kelly","type":"Role","_key":"63971","_from":"10249","_to":"39951"} +{"$label":"ACTS_IN","name":"Eamonn","type":"Role","_key":"48223","_from":"10253","_to":"31677"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"14077","_from":"10253","_to":"10910"} +{"$label":"ACTS_IN","name":"Kay Curley","type":"Role","_key":"90913","_from":"10256","_to":"53631"} +{"$label":"ACTS_IN","name":"Bertrands Mutter","type":"Role","_key":"13163","_from":"10264","_to":"10258"} +{"$label":"ACTS_IN","name":"Babysitter","type":"Role","_key":"13162","_from":"10263","_to":"10258"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"13161","_from":"10262","_to":"10258"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"13160","_from":"10261","_to":"10258"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"13158","_from":"10260","_to":"10258"} +{"$label":"ACTS_IN","name":"Delphine Grezel","type":"Role","_key":"13157","_from":"10259","_to":"10258"} +{"$label":"ACTS_IN","name":"Docteur","type":"Role","_key":"23767","_from":"10259","_to":"17230"} +{"$label":"ACTS_IN","name":"Berthe","type":"Role","_key":"14665","_from":"10259","_to":"11289"} +{"$label":"ACTS_IN","name":"Canina","type":"Role","_key":"22686","_from":"10260","_to":"16459"} +{"$label":"ACTS_IN","name":"Govenor","type":"Role","_key":"13181","_from":"10271","_to":"10265"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"13180","_from":"10270","_to":"10265"} +{"$label":"ACTS_IN","name":"Barrigan","type":"Role","_key":"13178","_from":"10269","_to":"10265"} +{"$label":"ACTS_IN","name":"Cousin Sean","type":"Role","_key":"13177","_from":"10268","_to":"10265"} +{"$label":"ACTS_IN","name":"Brown","type":"Role","_key":"13173","_from":"10267","_to":"10265"} +{"$label":"ACTS_IN","name":"Uncle Edward","type":"Role","_key":"13171","_from":"10266","_to":"10265"} +{"$label":"ACTS_IN","name":"Derek Bowman","type":"Role","_key":"110980","_from":"10267","_to":"65549"} +{"$label":"ACTS_IN","name":"PJ","type":"Role","_key":"94365","_from":"10267","_to":"55568"} +{"$label":"ACTS_IN","name":"Stan Washington","type":"Role","_key":"88701","_from":"10267","_to":"52559"} +{"$label":"ACTS_IN","name":"T.K. Johnson","type":"Role","_key":"66425","_from":"10267","_to":"41071"} +{"$label":"ACTS_IN","name":"Louis Booker","type":"Role","_key":"64696","_from":"10267","_to":"40292"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"64667","_from":"10267","_to":"40281"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"64511","_from":"10267","_to":"40186"} +{"$label":"ACTS_IN","name":"Key","type":"Role","_key":"63553","_from":"10267","_to":"39779"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"43884","_from":"10267","_to":"29297"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30585","_from":"10267","_to":"21494"} +{"$label":"ACTS_IN","name":"Mahalik","type":"Role","_key":"30579","_from":"10267","_to":"21490"} +{"$label":"ACTS_IN","name":"Mahalik","type":"Role","_key":"30568","_from":"10267","_to":"21488"} +{"$label":"ACTS_IN","name":"Jamaal Baileygates","type":"Role","_key":"18504","_from":"10267","_to":"13701"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"18164","_from":"10267","_to":"13474"} +{"$label":"ACTS_IN","name":"Glen Whitman","type":"Role","_key":"16059","_from":"10267","_to":"12202"} +{"$label":"ACTS_IN","name":"Jerry Rubin","type":"Role","_key":"115083","_from":"10268","_to":"67773"} +{"$label":"ACTS_IN","name":"Motor","type":"Role","_key":"105364","_from":"10268","_to":"61992"} +{"$label":"ACTS_IN","name":"Emser","type":"Role","_key":"101990","_from":"10268","_to":"60012"} +{"$label":"ACTS_IN","name":"Budlofsky","type":"Role","_key":"61549","_from":"10268","_to":"38803"} +{"$label":"ACTS_IN","name":"Paul Hauser","type":"Role","_key":"58648","_from":"10268","_to":"37052"} +{"$label":"ACTS_IN","name":"Elliot","type":"Role","_key":"56181","_from":"10268","_to":"35707"} +{"$label":"ACTS_IN","name":"Rafael","type":"Role","_key":"49493","_from":"10268","_to":"32398"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"49322","_from":"10268","_to":"32290"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"46365","_from":"10268","_to":"30637"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"66191","_from":"10269","_to":"40949"} +{"$label":"ACTS_IN","name":"Violet Stanton","type":"Role","_key":"105877","_from":"10270","_to":"62328"} +{"$label":"ACTS_IN","name":"Susie","type":"Role","_key":"13187","_from":"10276","_to":"10272"} +{"$label":"ACTS_IN","name":"Maynard","type":"Role","_key":"13186","_from":"10275","_to":"10272"} +{"$label":"ACTS_IN","name":"Johnny Keen","type":"Role","_key":"13185","_from":"10274","_to":"10272"} +{"$label":"DIRECTED","_key":"13183","_from":"10273","_to":"10272"} +{"$label":"DIRECTED","_key":"13196","_from":"10282","_to":"10277"} +{"$label":"ACTS_IN","name":"Juhn","type":"Role","_key":"13195","_from":"10281","_to":"10277"} +{"$label":"ACTS_IN","name":"The Shooter","type":"Role","_key":"13194","_from":"10280","_to":"10277"} +{"$label":"ACTS_IN","name":"Officer Roberts","type":"Role","_key":"13192","_from":"10279","_to":"10277"} +{"$label":"ACTS_IN","name":"Sophie Jacobs","type":"Role","_key":"13188","_from":"10278","_to":"10277"} +{"$label":"ACTS_IN","name":"Marsha Holloway","type":"Role","_key":"98536","_from":"10278","_to":"58071"} +{"$label":"ACTS_IN","name":"Cybil Waingrow","type":"Role","_key":"88246","_from":"10278","_to":"52350"} +{"$label":"ACTS_IN","name":"Julie Winston","type":"Role","_key":"71284","_from":"10278","_to":"43245"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"68900","_from":"10278","_to":"42195"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"61681","_from":"10278","_to":"38856"} +{"$label":"ACTS_IN","name":"Daisy the Cow","type":"Role","_key":"57853","_from":"10278","_to":"36614"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"57462","_from":"10278","_to":"36424"} +{"$label":"ACTS_IN","name":"Gale Weathers","type":"Role","_key":"30293","_from":"10278","_to":"21314"} +{"$label":"ACTS_IN","name":"Gale Weathers","type":"Role","_key":"30283","_from":"10278","_to":"21313"} +{"$label":"ACTS_IN","name":"Gale Weathers","type":"Role","_key":"30263","_from":"10278","_to":"21306"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30168","_from":"10278","_to":"21251"} +{"$label":"ACTS_IN","name":"Melissa Robinson","type":"Role","_key":"25233","_from":"10278","_to":"18207"} +{"$label":"ACTS_IN","name":"Jewel Jagger","type":"Role","_key":"22197","_from":"10278","_to":"16174"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"52180","_from":"10280","_to":"34000"} +{"$label":"DIRECTED","_key":"13204","_from":"10286","_to":"10283"} +{"$label":"ACTS_IN","name":"Janek","type":"Role","_key":"13202","_from":"10285","_to":"10283"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"13199","_from":"10284","_to":"10283"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"48365","_from":"10284","_to":"31748"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"13228","_from":"10304","_to":"10287"} +{"$label":"ACTS_IN","name":"Magistrat","type":"Role","_key":"13227","_from":"10303","_to":"10287"} +{"$label":"ACTS_IN","name":"Aufseher","type":"Role","_key":"13226","_from":"10302","_to":"10287"} +{"$label":"ACTS_IN","name":"Grenouille (12 Jahre)","type":"Role","_key":"13225","_from":"10301","_to":"10287"} +{"$label":"ACTS_IN","name":"Grenouille (5 Jahre)","type":"Role","_key":"13224","_from":"10300","_to":"10287"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"13222","_from":"10299","_to":"10287"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"13221","_from":"10298","_to":"10287"} +{"$label":"ACTS_IN","name":"Marquis de Montesquieu","type":"Role","_key":"13220","_from":"10297","_to":"10287"} +{"$label":"ACTS_IN","name":"Grimal","type":"Role","_key":"13219","_from":"10296","_to":"10287"} +{"$label":"ACTS_IN","name":"Chenier","type":"Role","_key":"13218","_from":"10295","_to":"10287"} +{"$label":"ACTS_IN","name":"Dominique Drouot","type":"Role","_key":"13217","_from":"10294","_to":"10287"} +{"$label":"ACTS_IN","name":"Madame Gaillard","type":"Role","_key":"13215","_from":"10293","_to":"10287"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"13214","_from":"10292","_to":"10287"} +{"$label":"ACTS_IN","name":"Bischof von Grasse","type":"Role","_key":"13212","_from":"10291","_to":"10287"} +{"$label":"ACTS_IN","name":"Das Mirabellen-M\u00e4dchen","type":"Role","_key":"13211","_from":"10290","_to":"10287"} +{"$label":"ACTS_IN","name":"Executioner","type":"Role","_key":"13209","_from":"10289","_to":"10287"} +{"$label":"ACTS_IN","name":"Jean-Baptiste Grenouille","type":"Role","_key":"13206","_from":"10288","_to":"10287"} +{"$label":"ACTS_IN","name":"Keith Richards","type":"Role","_key":"113811","_from":"10288","_to":"67050"} +{"$label":"ACTS_IN","name":"Sebastian Flyte","type":"Role","_key":"90320","_from":"10288","_to":"53388"} +{"$label":"ACTS_IN","name":"Spud","type":"Role","_key":"53567","_from":"10288","_to":"34569"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"34319","_from":"10288","_to":"23533"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"28889","_from":"10288","_to":"20642"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"68355","_from":"10290","_to":"41953"} +{"$label":"ACTS_IN","name":"Hayat","type":"Role","_key":"65818","_from":"10290","_to":"40734"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"64757","_from":"10290","_to":"40306"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"53200","_from":"10290","_to":"34414"} +{"$label":"ACTS_IN","name":"Lili Richter","type":"Role","_key":"51321","_from":"10290","_to":"33469"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"47909","_from":"10290","_to":"31517"} +{"$label":"ACTS_IN","name":"Luzi","type":"Role","_key":"30476","_from":"10290","_to":"21421"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"64523","_from":"10291","_to":"40189"} +{"$label":"ACTS_IN","name":"Herr Dosch","type":"Role","_key":"21793","_from":"10291","_to":"15899"} +{"$label":"ACTS_IN","name":"Luise","type":"Role","_key":"69654","_from":"10292","_to":"42521"} +{"$label":"ACTS_IN","name":"Melitta","type":"Role","_key":"55675","_from":"10292","_to":"35440"} +{"$label":"ACTS_IN","name":"Frau Rose","type":"Role","_key":"45664","_from":"10292","_to":"30218"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"37103","_from":"10292","_to":"25144"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"34459","_from":"10292","_to":"23601"} +{"$label":"ACTS_IN","name":"November","type":"Role","_key":"27712","_from":"10292","_to":"19859"} +{"$label":"ACTS_IN","name":"Antonia Buddenbrook","type":"Role","_key":"20469","_from":"10292","_to":"14974"} +{"$label":"ACTS_IN","name":"Luca","type":"Role","_key":"19072","_from":"10292","_to":"14091"} +{"$label":"ACTS_IN","name":"Network President","type":"Role","_key":"56547","_from":"10296","_to":"35892"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"112139","_from":"10298","_to":"66226"} +{"$label":"ACTS_IN","name":"Abba","type":"Role","_key":"55226","_from":"10298","_to":"35231"} +{"$label":"ACTS_IN","name":"Muguet","type":"Role","_key":"35839","_from":"10298","_to":"24328"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"13709","_from":"10298","_to":"10641"} +{"$label":"ACTS_IN","name":"Physician","type":"Role","_key":"88561","_from":"10302","_to":"52483"} +{"$label":"ACTS_IN","name":"McKey","type":"Role","_key":"52037","_from":"10302","_to":"33922"} +{"$label":"ACTS_IN","name":"Wendy Darling","type":"Role","_key":"64449","_from":"10304","_to":"40159"} +{"$label":"ACTS_IN","name":"Betsy Bell \/ Entity Voice","type":"Role","_key":"59372","_from":"10304","_to":"37498"} +{"$label":"ACTS_IN","name":"Lorenzo","type":"Role","_key":"13235","_from":"10306","_to":"10305"} +{"$label":"ACTS_IN","name":"Uncle Nikolai","type":"Role","_key":"13246","_from":"10309","_to":"10307"} +{"$label":"ACTS_IN","name":"Kostya Novotny","type":"Role","_key":"13245","_from":"10308","_to":"10307"} +{"$label":"ACTS_IN","name":"Jensen","type":"Role","_key":"57975","_from":"10309","_to":"36679"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13252","_from":"10314","_to":"10310"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13251","_from":"10313","_to":"10310"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13250","_from":"10312","_to":"10310"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"13249","_from":"10311","_to":"10310"} +{"$label":"DIRECTED","_key":"13248","_from":"10311","_to":"10310"} +{"$label":"DIRECTED","_key":"94962","_from":"10311","_to":"55923"} +{"$label":"DIRECTED","_key":"20637","_from":"10311","_to":"15094"} +{"$label":"DIRECTED","_key":"15474","_from":"10311","_to":"11822"} +{"$label":"DIRECTED","_key":"15465","_from":"10311","_to":"11815"} +{"$label":"DIRECTED","_key":"15444","_from":"10311","_to":"11805"} +{"$label":"DIRECTED","_key":"15443","_from":"10311","_to":"11804"} +{"$label":"ACTS_IN","name":"Michael Moore","type":"Role","_key":"94961","_from":"10311","_to":"55923"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"65762","_from":"10311","_to":"40707"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26928","_from":"10311","_to":"19360"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20638","_from":"10311","_to":"15094"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15475","_from":"10311","_to":"11822"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15466","_from":"10311","_to":"11815"} +{"$label":"ACTS_IN","name":"Redneck Protester #2","type":"Role","_key":"15459","_from":"10311","_to":"11805"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99472","_from":"10312","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself (archive footage) (uncredited)","type":"Role","_key":"15481","_from":"10312","_to":"11823"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99471","_from":"10313","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92007","_from":"10313","_to":"54285"} +{"$label":"ACTS_IN","name":"himself (archive footage)","type":"Role","_key":"18752","_from":"10313","_to":"13869"} +{"$label":"ACTS_IN","name":"Himself (archive footage) (uncredited)","type":"Role","_key":"15480","_from":"10313","_to":"11823"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15467","_from":"10313","_to":"11815"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"13265","_from":"10325","_to":"10315"} +{"$label":"ACTS_IN","name":"G\u00e1lvez","type":"Role","_key":"13264","_from":"10324","_to":"10315"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"13263","_from":"10323","_to":"10315"} +{"$label":"ACTS_IN","name":"Santi","type":"Role","_key":"13262","_from":"10322","_to":"10315"} +{"$label":"ACTS_IN","name":"Marcelo","type":"Role","_key":"13260","_from":"10321","_to":"10315"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"13259","_from":"10320","_to":"10315"} +{"$label":"ACTS_IN","name":"Jaime","type":"Role","_key":"13258","_from":"10319","_to":"10315"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"13257","_from":"10318","_to":"10315"} +{"$label":"ACTS_IN","name":"Casares","type":"Role","_key":"13255","_from":"10317","_to":"10315"} +{"$label":"ACTS_IN","name":"Jacinto","type":"Role","_key":"13254","_from":"10316","_to":"10315"} +{"$label":"ACTS_IN","name":"Bosco","type":"Role","_key":"52981","_from":"10316","_to":"34322"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"46822","_from":"10316","_to":"30888"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"44642","_from":"10316","_to":"29706"} +{"$label":"ACTS_IN","name":"C\u00e9sar","type":"Role","_key":"16424","_from":"10316","_to":"12423"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"87952","_from":"10317","_to":"52224"} +{"$label":"ACTS_IN","name":"Jesus Gris","type":"Role","_key":"71329","_from":"10317","_to":"43266"} +{"$label":"ACTS_IN","name":"Fermat","type":"Role","_key":"37938","_from":"10317","_to":"25684"} +{"$label":"ACTS_IN","name":"Edu","type":"Role","_key":"106474","_from":"10322","_to":"62726"} +{"$label":"DIRECTED","_key":"13267","_from":"10328","_to":"10326"} +{"$label":"DIRECTED","_key":"13266","_from":"10327","_to":"10326"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13273","_from":"10333","_to":"10329"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"13272","_from":"10332","_to":"10329"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"13270","_from":"10331","_to":"10329"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"13269","_from":"10330","_to":"10329"} +{"$label":"ACTS_IN","name":"Dan-saeng","type":"Role","_key":"13283","_from":"10344","_to":"10334"} +{"$label":"ACTS_IN","name":"Ji-san","type":"Role","_key":"13282","_from":"10343","_to":"10334"} +{"$label":"ACTS_IN","name":"Ha-il","type":"Role","_key":"13281","_from":"10342","_to":"10334"} +{"$label":"ACTS_IN","name":"Du-chung","type":"Role","_key":"13280","_from":"10341","_to":"10334"} +{"$label":"ACTS_IN","name":"Ga-nam","type":"Role","_key":"13279","_from":"10340","_to":"10334"} +{"$label":"ACTS_IN","name":"Ju-myeong","type":"Role","_key":"13278","_from":"10339","_to":"10334"} +{"$label":"ACTS_IN","name":"Choi Jung","type":"Role","_key":"13277","_from":"10338","_to":"10334"} +{"$label":"ACTS_IN","name":"Jin-lib","type":"Role","_key":"13276","_from":"10337","_to":"10334"} +{"$label":"ACTS_IN","name":"Yeo-sol","type":"Role","_key":"13275","_from":"10336","_to":"10334"} +{"$label":"DIRECTED","_key":"13274","_from":"10335","_to":"10334"} +{"$label":"ACTS_IN","name":"Park Yi","type":"Role","_key":"116145","_from":"10336","_to":"68387"} +{"$label":"ACTS_IN","name":"Lee Jin-wu","type":"Role","_key":"116103","_from":"10336","_to":"68368"} +{"$label":"ACTS_IN","name":"Cheol-su","type":"Role","_key":"106154","_from":"10336","_to":"62523"} +{"$label":"ACTS_IN","name":"Park Do-won, the Good","type":"Role","_key":"103034","_from":"10336","_to":"60610"} +{"$label":"ACTS_IN","name":"Commandant","type":"Role","_key":"120726","_from":"10337","_to":"70904"} +{"$label":"ACTS_IN","name":"King Sejong","type":"Role","_key":"117742","_from":"10337","_to":"69213"} +{"$label":"ACTS_IN","name":"Kim Byung-Moon","type":"Role","_key":"115767","_from":"10337","_to":"68158"} +{"$label":"ACTS_IN","name":"Xiang Yan-zhong","type":"Role","_key":"101840","_from":"10337","_to":"59938"} +{"$label":"ACTS_IN","name":"Ja-woon","type":"Role","_key":"97885","_from":"10337","_to":"57653"} +{"$label":"ACTS_IN","name":"Sang-jun","type":"Role","_key":"115937","_from":"10338","_to":"68264"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"114297","_from":"10338","_to":"67318"} +{"$label":"ACTS_IN","name":"Schraube","type":"Role","_key":"13289","_from":"10350","_to":"10345"} +{"$label":"ACTS_IN","name":"Sherin","type":"Role","_key":"13288","_from":"10349","_to":"10345"} +{"$label":"ACTS_IN","name":"Cosmo","type":"Role","_key":"13287","_from":"10348","_to":"10345"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"13286","_from":"10347","_to":"10345"} +{"$label":"DIRECTED","_key":"13285","_from":"10346","_to":"10345"} +{"$label":"ACTS_IN","name":"Anna Mauth","type":"Role","_key":"68524","_from":"10347","_to":"42024"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"53201","_from":"10347","_to":"34414"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"68358","_from":"10348","_to":"41953"} +{"$label":"ACTS_IN","name":"Carl Steininger","type":"Role","_key":"43044","_from":"10350","_to":"28745"} +{"$label":"DIRECTED","_key":"13290","_from":"10352","_to":"10351"} +{"$label":"DIRECTED","_key":"13305","_from":"10363","_to":"10353"} +{"$label":"ACTS_IN","name":"Lady Bradley","type":"Role","_key":"13303","_from":"10362","_to":"10353"} +{"$label":"ACTS_IN","name":"Lady Thiang, Head Wife","type":"Role","_key":"13302","_from":"10361","_to":"10353"} +{"$label":"ACTS_IN","name":"Beebe, Leonowens' Indian Servant","type":"Role","_key":"13301","_from":"10360","_to":"10353"} +{"$label":"ACTS_IN","name":"Moonshee, Leonowens' Indian Servant","type":"Role","_key":"13300","_from":"10359","_to":"10353"} +{"$label":"ACTS_IN","name":"Prince Chulalongkorn","type":"Role","_key":"13299","_from":"10358","_to":"10353"} +{"$label":"ACTS_IN","name":"Princess Fa-Ying","type":"Role","_key":"13298","_from":"10357","_to":"10353"} +{"$label":"ACTS_IN","name":"Prince Chowfa, King Mongkut's Brother","type":"Role","_key":"13297","_from":"10356","_to":"10353"} +{"$label":"ACTS_IN","name":"The Kralahome, Prime Minister","type":"Role","_key":"13295","_from":"10355","_to":"10353"} +{"$label":"ACTS_IN","name":"Tuptim","type":"Role","_key":"13293","_from":"10354","_to":"10353"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"103443","_from":"10354","_to":"60845"} +{"$label":"ACTS_IN","name":"Ria","type":"Role","_key":"103139","_from":"10354","_to":"60667"} +{"$label":"ACTS_IN","name":"Barbi Ling","type":"Role","_key":"56745","_from":"10354","_to":"36041"} +{"$label":"ACTS_IN","name":"Myca","type":"Role","_key":"54247","_from":"10354","_to":"34832"} +{"$label":"ACTS_IN","name":"Shen Yuelin","type":"Role","_key":"53682","_from":"10354","_to":"34625"} +{"$label":"ACTS_IN","name":"Mei","type":"Role","_key":"52335","_from":"10354","_to":"34063"} +{"$label":"ACTS_IN","name":"Miss East","type":"Role","_key":"50043","_from":"10354","_to":"32751"} +{"$label":"ACTS_IN","name":"Amelia A","type":"Role","_key":"37769","_from":"10354","_to":"25613"} +{"$label":"ACTS_IN","name":"Mysterious Woman","type":"Role","_key":"36059","_from":"10354","_to":"24480"} +{"$label":"ACTS_IN","name":"Serpentine","type":"Role","_key":"33645","_from":"10354","_to":"23230"} +{"$label":"ACTS_IN","name":"Qui","type":"Role","_key":"20480","_from":"10354","_to":"14979"} +{"$label":"DIRECTED","_key":"121091","_from":"10363","_to":"71113"} +{"$label":"DIRECTED","_key":"70453","_from":"10363","_to":"42891"} +{"$label":"DIRECTED","_key":"53963","_from":"10363","_to":"34718"} +{"$label":"DIRECTED","_key":"50429","_from":"10363","_to":"32943"} +{"$label":"DIRECTED","_key":"50053","_from":"10363","_to":"32755"} +{"$label":"DIRECTED","_key":"17071","_from":"10363","_to":"12799"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"13327","_from":"10381","_to":"10364"} +{"$label":"ACTS_IN","name":"Richard's Secretary","type":"Role","_key":"13326","_from":"10380","_to":"10364"} +{"$label":"ACTS_IN","name":"\"G\"","type":"Role","_key":"13325","_from":"10379","_to":"10364"} +{"$label":"ACTS_IN","name":"Pete Olafson","type":"Role","_key":"13324","_from":"10378","_to":"10364"} +{"$label":"ACTS_IN","name":"Richie Murphy","type":"Role","_key":"13323","_from":"10377","_to":"10364"} +{"$label":"ACTS_IN","name":"Tony Correnti","type":"Role","_key":"13322","_from":"10376","_to":"10364"} +{"$label":"ACTS_IN","name":"Slutty Kay","type":"Role","_key":"13321","_from":"10375","_to":"10364"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"13320","_from":"10374","_to":"10364"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"13319","_from":"10373","_to":"10364"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"13317","_from":"10372","_to":"10364"} +{"$label":"ACTS_IN","name":"May McGorvey","type":"Role","_key":"13316","_from":"10371","_to":"10364"} +{"$label":"ACTS_IN","name":"Ronnie J. McGorvey","type":"Role","_key":"13315","_from":"10370","_to":"10364"} +{"$label":"ACTS_IN","name":"Larry Hedges","type":"Role","_key":"13314","_from":"10369","_to":"10364"} +{"$label":"ACTS_IN","name":"Aaron Adamson","type":"Role","_key":"13313","_from":"10368","_to":"10364"} +{"$label":"ACTS_IN","name":"Lucy Pierce","type":"Role","_key":"13312","_from":"10367","_to":"10364"} +{"$label":"ACTS_IN","name":"Brad Adamson","type":"Role","_key":"13309","_from":"10366","_to":"10364"} +{"$label":"DIRECTED","_key":"13307","_from":"10365","_to":"10364"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"97664","_from":"10366","_to":"57513"} +{"$label":"ACTS_IN","name":"Chris Mattson","type":"Role","_key":"93675","_from":"10366","_to":"55148"} +{"$label":"ACTS_IN","name":"Dan Dreiberg \/ Nite Owl II","type":"Role","_key":"93256","_from":"10366","_to":"54939"} +{"$label":"ACTS_IN","name":"William Travis","type":"Role","_key":"65324","_from":"10366","_to":"40532"} +{"$label":"ACTS_IN","name":"Raoul, Vicomte de Chagny","type":"Role","_key":"57292","_from":"10366","_to":"36334"} +{"$label":"ACTS_IN","name":"Michael Shephard","type":"Role","_key":"46979","_from":"10366","_to":"30977"} +{"$label":"ACTS_IN","name":"Harris Arden","type":"Role","_key":"41263","_from":"10366","_to":"27749"} +{"$label":"ACTS_IN","name":"Jeff Kohlver","type":"Role","_key":"22508","_from":"10366","_to":"16357"} +{"$label":"ACTS_IN","name":"Michael Wheeler","type":"Role","_key":"29786","_from":"10368","_to":"21077"} +{"$label":"ACTS_IN","name":"Lionel Quaid","type":"Role","_key":"108975","_from":"10369","_to":"64395"} +{"$label":"ACTS_IN","name":"Craig Patrick","type":"Role","_key":"99491","_from":"10369","_to":"58650"} +{"$label":"ACTS_IN","name":"Private Chick","type":"Role","_key":"88023","_from":"10369","_to":"52256"} +{"$label":"ACTS_IN","name":"Gordo Hersch","type":"Role","_key":"64067","_from":"10369","_to":"39986"} +{"$label":"ACTS_IN","name":"Elliott Hauser","type":"Role","_key":"57366","_from":"10369","_to":"36369"} +{"$label":"ACTS_IN","name":"Michael 'Mo' Morris","type":"Role","_key":"52841","_from":"10369","_to":"34256"} +{"$label":"ACTS_IN","name":"Bob Jaspersen","type":"Role","_key":"106783","_from":"10370","_to":"62951"} +{"$label":"ACTS_IN","name":"Dukes","type":"Role","_key":"93658","_from":"10370","_to":"55135"} +{"$label":"ACTS_IN","name":"Walter Kovacs \/ Rorschach","type":"Role","_key":"93257","_from":"10370","_to":"54939"} +{"$label":"ACTS_IN","name":"George Noyce","type":"Role","_key":"69142","_from":"10370","_to":"42293"} +{"$label":"ACTS_IN","name":"Roderick \"Sugar Boy\" Ellis","type":"Role","_key":"15194","_from":"10370","_to":"11636"} +{"$label":"ACTS_IN","name":"Dr. Lucy Lynskey","type":"Role","_key":"65723","_from":"10373","_to":"40696"} +{"$label":"ACTS_IN","name":"Meg March","type":"Role","_key":"54859","_from":"10373","_to":"35089"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"108293","_from":"10377","_to":"64008"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"13343","_from":"10391","_to":"10382"} +{"$label":"ACTS_IN","name":"Lydel Hammond Jr.","type":"Role","_key":"13342","_from":"10390","_to":"10382"} +{"$label":"ACTS_IN","name":"Michaels","type":"Role","_key":"13341","_from":"10389","_to":"10382"} +{"$label":"ACTS_IN","name":"Stanfield","type":"Role","_key":"13340","_from":"10388","_to":"10382"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"13339","_from":"10387","_to":"10382"} +{"$label":"ACTS_IN","name":"Royko","type":"Role","_key":"13337","_from":"10386","_to":"10382"} +{"$label":"ACTS_IN","name":"Wainwright","type":"Role","_key":"13336","_from":"10385","_to":"10382"} +{"$label":"ACTS_IN","name":"Davis","type":"Role","_key":"13334","_from":"10384","_to":"10382"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"13333","_from":"10383","_to":"10382"} +{"$label":"ACTS_IN","name":"Christian Middleton","type":"Role","_key":"60355","_from":"10384","_to":"38062"} +{"$label":"ACTS_IN","name":"Tool","type":"Role","_key":"56004","_from":"10384","_to":"35597"} +{"$label":"ACTS_IN","name":"Conrad Wills","type":"Role","_key":"21735","_from":"10384","_to":"15873"} +{"$label":"ACTS_IN","name":"Agent Clay","type":"Role","_key":"13477","_from":"10384","_to":"10484"} +{"$label":"ACTS_IN","name":"Pink Gresham","type":"Role","_key":"37745","_from":"10385","_to":"25595"} +{"$label":"ACTS_IN","name":"Ruben","type":"Role","_key":"22896","_from":"10387","_to":"16608"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"14075","_from":"10389","_to":"10910"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"13355","_from":"10403","_to":"10392"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin","type":"Role","_key":"13354","_from":"10402","_to":"10392"} +{"$label":"ACTS_IN","name":"Ehemaliger Festivalorganisator","type":"Role","_key":"13353","_from":"10401","_to":"10392"} +{"$label":"ACTS_IN","name":"Cousine von Ann-Kathrin","type":"Role","_key":"13352","_from":"10400","_to":"10392"} +{"$label":"ACTS_IN","name":"Enkeltochter von Irma","type":"Role","_key":"13351","_from":"10399","_to":"10392"} +{"$label":"ACTS_IN","name":"Schwester von Irma","type":"Role","_key":"13350","_from":"10398","_to":"10392"} +{"$label":"ACTS_IN","name":"Rentnerin","type":"Role","_key":"13349","_from":"10397","_to":"10392"} +{"$label":"ACTS_IN","name":"Milchbauer","type":"Role","_key":"13348","_from":"10396","_to":"10392"} +{"$label":"ACTS_IN","name":"Hausfrau","type":"Role","_key":"13347","_from":"10395","_to":"10392"} +{"$label":"ACTS_IN","name":"Multibauer","type":"Role","_key":"13346","_from":"10394","_to":"10392"} +{"$label":"DIRECTED","_key":"13345","_from":"10393","_to":"10392"} +{"$label":"ACTS_IN","name":"Tim Weiner","type":"Role","_key":"13370","_from":"10411","_to":"10404"} +{"$label":"ACTS_IN","name":"Paul Baldino","type":"Role","_key":"13369","_from":"10410","_to":"10404"} +{"$label":"ACTS_IN","name":"David Barker","type":"Role","_key":"13368","_from":"10409","_to":"10404"} +{"$label":"ACTS_IN","name":"Chase Buell","type":"Role","_key":"13365","_from":"10408","_to":"10404"} +{"$label":"ACTS_IN","name":"Bonnie Lisbon","type":"Role","_key":"13364","_from":"10407","_to":"10404"} +{"$label":"ACTS_IN","name":"Therese Lisbon","type":"Role","_key":"13363","_from":"10406","_to":"10404"} +{"$label":"ACTS_IN","name":"Mary Lisbon","type":"Role","_key":"13361","_from":"10405","_to":"10404"} +{"$label":"ACTS_IN","name":"LIlly","type":"Role","_key":"114724","_from":"10405","_to":"67574"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"56321","_from":"10405","_to":"35784"} +{"$label":"ACTS_IN","name":"Kimberly Corman","type":"Role","_key":"53333","_from":"10405","_to":"34480"} +{"$label":"ACTS_IN","name":"Michael Moscovitz","type":"Role","_key":"57575","_from":"10410","_to":"36467"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"99013","_from":"10411","_to":"58328"} +{"$label":"ACTS_IN","name":"Jordan Wells","type":"Role","_key":"98591","_from":"10411","_to":"58103"} +{"$label":"ACTS_IN","name":"Jeff McIntire","type":"Role","_key":"68178","_from":"10411","_to":"41878"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"59742","_from":"10411","_to":"37723"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"55557","_from":"10411","_to":"35381"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"53432","_from":"10411","_to":"34528"} +{"$label":"ACTS_IN","name":"Mike Deerfield","type":"Role","_key":"45504","_from":"10411","_to":"30141"} +{"$label":"ACTS_IN","name":"Dennis Kelly","type":"Role","_key":"17641","_from":"10411","_to":"13162"} +{"$label":"DIRECTED","_key":"13379","_from":"10414","_to":"10412"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"13378","_from":"10413","_to":"10412"} +{"$label":"ACTS_IN","name":"Mike Stemp","type":"Role","_key":"27455","_from":"10413","_to":"19709"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"13389","_from":"10422","_to":"10415"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"13388","_from":"10421","_to":"10415"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"13387","_from":"10420","_to":"10415"} +{"$label":"ACTS_IN","name":"Gang Leader","type":"Role","_key":"13386","_from":"10419","_to":"10415"} +{"$label":"ACTS_IN","name":"Maria Vaughan","type":"Role","_key":"13385","_from":"10418","_to":"10415"} +{"$label":"ACTS_IN","name":"Anne Labels","type":"Role","_key":"13382","_from":"10417","_to":"10415"} +{"$label":"DIRECTED","_key":"13380","_from":"10416","_to":"10415"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"112177","_from":"10417","_to":"66245"} +{"$label":"ACTS_IN","name":"la soeur de G\u00fcnther","type":"Role","_key":"23894","_from":"10417","_to":"17312"} +{"$label":"ACTS_IN","name":"Muriel Godby","type":"Role","_key":"113610","_from":"10418","_to":"66954"} +{"$label":"ACTS_IN","name":"Jane Carson","type":"Role","_key":"102412","_from":"10418","_to":"60262"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"72335","_from":"10418","_to":"43687"} +{"$label":"ACTS_IN","name":"Marion Kirkman","type":"Role","_key":"66891","_from":"10418","_to":"41301"} +{"$label":"ACTS_IN","name":"Juliet Miller","type":"Role","_key":"57825","_from":"10418","_to":"36604"} +{"$label":"ACTS_IN","name":"Janet Frame","type":"Role","_key":"24080","_from":"10418","_to":"17460"} +{"$label":"ACTS_IN","name":"Saya","type":"Role","_key":"13392","_from":"10426","_to":"10423"} +{"$label":"ACTS_IN","name":"Alice Mckee","type":"Role","_key":"13391","_from":"10425","_to":"10423"} +{"$label":"DIRECTED","_key":"13390","_from":"10424","_to":"10423"} +{"$label":"DIRECTED","_key":"117617","_from":"10424","_to":"69142"} +{"$label":"DIRECTED","_key":"72811","_from":"10424","_to":"43868"} +{"$label":"DIRECTED","_key":"47169","_from":"10424","_to":"31088"} +{"$label":"DIRECTED","_key":"43513","_from":"10424","_to":"29059"} +{"$label":"DIRECTED","_key":"14330","_from":"10424","_to":"11086"} +{"$label":"ACTS_IN","name":"Scarlett (Teen)","type":"Role","_key":"110786","_from":"10425","_to":"65438"} +{"$label":"ACTS_IN","name":"Shoe Sales Girl","type":"Role","_key":"97606","_from":"10425","_to":"57466"} +{"$label":"ACTS_IN","name":"Hye-young (as Ji-hyun Jun)","type":"Role","_key":"116144","_from":"10426","_to":"68387"} +{"$label":"ACTS_IN","name":"Kim Eun-ju","type":"Role","_key":"90812","_from":"10426","_to":"53586"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"68350","_from":"10426","_to":"41950"} +{"$label":"ACTS_IN","name":"Kyung-jin Yeo","type":"Role","_key":"60722","_from":"10426","_to":"38343"} +{"$label":"ACTS_IN","name":"Brutus","type":"Role","_key":"13404","_from":"10433","_to":"10427"} +{"$label":"ACTS_IN","name":"Jason White","type":"Role","_key":"13403","_from":"10432","_to":"10427"} +{"$label":"ACTS_IN","name":"Stanford","type":"Role","_key":"13402","_from":"10431","_to":"10427"} +{"$label":"ACTS_IN","name":"Jimmy Olsen","type":"Role","_key":"13399","_from":"10430","_to":"10427"} +{"$label":"ACTS_IN","name":"Richard White","type":"Role","_key":"13396","_from":"10429","_to":"10427"} +{"$label":"ACTS_IN","name":"Superman","type":"Role","_key":"13394","_from":"10428","_to":"10427"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"120424","_from":"10428","_to":"70746"} +{"$label":"ACTS_IN","name":"Scott Teller","type":"Role","_key":"119336","_from":"10428","_to":"70120"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"65805","_from":"10428","_to":"40722"} +{"$label":"ACTS_IN","name":"Bobby Long","type":"Role","_key":"62778","_from":"10428","_to":"39457"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"115130","_from":"10429","_to":"67800"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114732","_from":"10429","_to":"67580"} +{"$label":"ACTS_IN","name":"Eddie (segment \"The Hook\")","type":"Role","_key":"108665","_from":"10429","_to":"64215"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"95016","_from":"10429","_to":"55939"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"93410","_from":"10429","_to":"55011"} +{"$label":"ACTS_IN","name":"Lon Hammond Jr.","type":"Role","_key":"67481","_from":"10429","_to":"41562"} +{"$label":"ACTS_IN","name":"Steve Clark","type":"Role","_key":"53768","_from":"10429","_to":"34656"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"44077","_from":"10429","_to":"29388"} +{"$label":"ACTS_IN","name":"Prince Edward","type":"Role","_key":"32294","_from":"10429","_to":"22492"} +{"$label":"ACTS_IN","name":"Corny Collins","type":"Role","_key":"24605","_from":"10429","_to":"17800"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"95074","_from":"10430","_to":"55963"} +{"$label":"ACTS_IN","name":"Ren Corky","type":"Role","_key":"57652","_from":"10430","_to":"36500"} +{"$label":"ACTS_IN","name":"Jeremiah 'Jam' Bruce","type":"Role","_key":"56677","_from":"10430","_to":"35999"} +{"$label":"ACTS_IN","name":"Mimi-Siku","type":"Role","_key":"53924","_from":"10430","_to":"34701"} +{"$label":"ACTS_IN","name":"Gogol","type":"Role","_key":"109955","_from":"10431","_to":"64968"} +{"$label":"ACTS_IN","name":"Z-Bob","type":"Role","_key":"100541","_from":"10431","_to":"59303"} +{"$label":"ACTS_IN","name":"Hadji Amerislani","type":"Role","_key":"94372","_from":"10431","_to":"55568"} +{"$label":"ACTS_IN","name":"Kumar Patel","type":"Role","_key":"93972","_from":"10431","_to":"55341"} +{"$label":"ACTS_IN","name":"Taj Mahal Badalandabad","type":"Role","_key":"69946","_from":"10431","_to":"42675"} +{"$label":"ACTS_IN","name":"Kumar Patel","type":"Role","_key":"68878","_from":"10431","_to":"42187"} +{"$label":"ACTS_IN","name":"Taj","type":"Role","_key":"59679","_from":"10431","_to":"37685"} +{"$label":"ACTS_IN","name":"Alan Fineberg","type":"Role","_key":"56741","_from":"10431","_to":"36041"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"56384","_from":"10431","_to":"35829"} +{"$label":"ACTS_IN","name":"William Dixon","type":"Role","_key":"36016","_from":"10433","_to":"24454"} +{"$label":"ACTS_IN","name":"Dr. Michaels","type":"Role","_key":"13414","_from":"10441","_to":"10434"} +{"$label":"ACTS_IN","name":"Jack McNally","type":"Role","_key":"13413","_from":"10440","_to":"10434"} +{"$label":"ACTS_IN","name":"Melinda Frayne","type":"Role","_key":"13412","_from":"10439","_to":"10434"} +{"$label":"ACTS_IN","name":"Girl with ball","type":"Role","_key":"13411","_from":"10438","_to":"10434"} +{"$label":"ACTS_IN","name":"Nicole Winter","type":"Role","_key":"13410","_from":"10437","_to":"10434"} +{"$label":"ACTS_IN","name":"Mrs. Winter","type":"Role","_key":"13409","_from":"10436","_to":"10434"} +{"$label":"DIRECTED","_key":"13407","_from":"10435","_to":"10434"} +{"$label":"DIRECTED","_key":"94647","_from":"10435","_to":"55764"} +{"$label":"ACTS_IN","name":"Valerie (segment \"The Honeymoon\") \/ RV Passenger (segment \"The Campfire\")","type":"Role","_key":"108658","_from":"10437","_to":"64215"} +{"$label":"ACTS_IN","name":"Amelia D","type":"Role","_key":"37766","_from":"10437","_to":"25613"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"36976","_from":"10437","_to":"25064"} +{"$label":"ACTS_IN","name":"Customs officer (uncredited)","type":"Role","_key":"13437","_from":"10455","_to":"10442"} +{"$label":"ACTS_IN","name":"Gang leader (uncredited)","type":"Role","_key":"13436","_from":"10454","_to":"10442"} +{"$label":"ACTS_IN","name":"Construction site foreman (uncredited)","type":"Role","_key":"13435","_from":"10453","_to":"10442"} +{"$label":"ACTS_IN","name":"Strip-Club Owner","type":"Role","_key":"13433","_from":"10452","_to":"10442"} +{"$label":"ACTS_IN","name":"Zita","type":"Role","_key":"13430","_from":"10451","_to":"10442"} +{"$label":"ACTS_IN","name":"Blaine","type":"Role","_key":"13429","_from":"10450","_to":"10442"} +{"$label":"ACTS_IN","name":"Pretty Boy","type":"Role","_key":"13428","_from":"10449","_to":"10442"} +{"$label":"ACTS_IN","name":"Risto - Grandi's Nephew","type":"Role","_key":"13427","_from":"10448","_to":"10442"} +{"$label":"ACTS_IN","name":"Manelo Sanchez","type":"Role","_key":"13426","_from":"10447","_to":"10442"} +{"$label":"ACTS_IN","name":"Pancho - Grandi Hood","type":"Role","_key":"13424","_from":"10446","_to":"10442"} +{"$label":"ACTS_IN","name":"Marcia Linnekar","type":"Role","_key":"13421","_from":"10445","_to":"10442"} +{"$label":"ACTS_IN","name":"'Uncle' Joe Grandi","type":"Role","_key":"13420","_from":"10444","_to":"10442"} +{"$label":"ACTS_IN","name":"Police Sergeant Pete Menzies","type":"Role","_key":"13419","_from":"10443","_to":"10442"} +{"$label":"ACTS_IN","name":"Nick Varna","type":"Role","_key":"111216","_from":"10443","_to":"65677"} +{"$label":"ACTS_IN","name":"'Dancer'","type":"Role","_key":"100948","_from":"10443","_to":"59500"} +{"$label":"ACTS_IN","name":"Maurice Obregon","type":"Role","_key":"28697","_from":"10443","_to":"20507"} +{"$label":"ACTS_IN","name":"Marquis de Vigogne","type":"Role","_key":"90136","_from":"10444","_to":"53300"} +{"$label":"ACTS_IN","name":"Schomberg","type":"Role","_key":"69549","_from":"10444","_to":"42470"} +{"$label":"ACTS_IN","name":"Henri Dickson","type":"Role","_key":"48072","_from":"10444","_to":"31604"} +{"$label":"ACTS_IN","name":"Gerven the Cook","type":"Role","_key":"35676","_from":"10444","_to":"24241"} +{"$label":"ACTS_IN","name":"Bloch","type":"Role","_key":"24910","_from":"10444","_to":"18006"} +{"$label":"ACTS_IN","name":"Jane Avril","type":"Role","_key":"66653","_from":"10452","_to":"41192"} +{"$label":"ACTS_IN","name":"Irontown salesman-gambler (as William House)","type":"Role","_key":"114526","_from":"10453","_to":"67457"} +{"$label":"ACTS_IN","name":"Mrs. Grace Holly","type":"Role","_key":"101480","_from":"10454","_to":"59731"} +{"$label":"ACTS_IN","name":"Demon (voice)","type":"Role","_key":"54640","_from":"10454","_to":"34989"} +{"$label":"ACTS_IN","name":"Luz Benedict","type":"Role","_key":"15134","_from":"10454","_to":"11613"} +{"$label":"ACTS_IN","name":"Dazey","type":"Role","_key":"13439","_from":"10457","_to":"10456"} +{"$label":"ACTS_IN","name":"Trevor Leishman","type":"Role","_key":"121592","_from":"10457","_to":"71440"} +{"$label":"ACTS_IN","name":"Lenny Peck (voice)","type":"Role","_key":"119669","_from":"10457","_to":"70284"} +{"$label":"ACTS_IN","name":"Danny Clark","type":"Role","_key":"108145","_from":"10457","_to":"63914"} +{"$label":"ACTS_IN","name":"Phil Bergman","type":"Role","_key":"96804","_from":"10457","_to":"56926"} +{"$label":"ACTS_IN","name":"Rey","type":"Role","_key":"13449","_from":"10465","_to":"10458"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"13448","_from":"10464","_to":"10458"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"13447","_from":"10463","_to":"10458"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"13444","_from":"10462","_to":"10458"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"13443","_from":"10461","_to":"10458"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"13442","_from":"10460","_to":"10458"} +{"$label":"DIRECTED","_key":"13440","_from":"10459","_to":"10458"} +{"$label":"ACTS_IN","name":"John Sullivan","type":"Role","_key":"23263","_from":"10460","_to":"16868"} +{"$label":"ACTS_IN","name":"Michael Burnett","type":"Role","_key":"47240","_from":"10461","_to":"31128"} +{"$label":"ACTS_IN","name":"Karen Collucci","type":"Role","_key":"58574","_from":"10462","_to":"37011"} +{"$label":"ACTS_IN","name":"Olivia Deer","type":"Role","_key":"57031","_from":"10462","_to":"36185"} +{"$label":"ACTS_IN","name":"Priest \/ Church Demon","type":"Role","_key":"60051","_from":"10464","_to":"37890"} +{"$label":"ACTS_IN","name":"Carlos Rivera","type":"Role","_key":"98203","_from":"10465","_to":"57841"} +{"$label":"ACTS_IN","name":"Son Of Earth","type":"Role","_key":"13453","_from":"10470","_to":"10466"} +{"$label":"ACTS_IN","name":"Mother Earth","type":"Role","_key":"13452","_from":"10469","_to":"10466"} +{"$label":"ACTS_IN","name":"God Killing Himself","type":"Role","_key":"13451","_from":"10468","_to":"10466"} +{"$label":"DIRECTED","_key":"13450","_from":"10467","_to":"10466"} +{"$label":"DIRECTED","_key":"66403","_from":"10467","_to":"41065"} +{"$label":"DIRECTED","_key":"48162","_from":"10467","_to":"31644"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"13461","_from":"10479","_to":"10471"} +{"$label":"ACTS_IN","name":"Kress","type":"Role","_key":"13460","_from":"10478","_to":"10471"} +{"$label":"ACTS_IN","name":"Dr. Machnik","type":"Role","_key":"13459","_from":"10477","_to":"10471"} +{"$label":"ACTS_IN","name":"Stenograph","type":"Role","_key":"13458","_from":"10476","_to":"10471"} +{"$label":"ACTS_IN","name":"Kommisar Raetz","type":"Role","_key":"13457","_from":"10475","_to":"10471"} +{"$label":"ACTS_IN","name":"Prof. Dr. Ernst Schultze","type":"Role","_key":"13456","_from":"10474","_to":"10471"} +{"$label":"ACTS_IN","name":"Fritz Haarmann","type":"Role","_key":"13455","_from":"10473","_to":"10471"} +{"$label":"DIRECTED","_key":"13454","_from":"10472","_to":"10471"} +{"$label":"ACTS_IN","name":"Henry Kupfer","type":"Role","_key":"88305","_from":"10473","_to":"52374"} +{"$label":"ACTS_IN","name":"Jens Urban","type":"Role","_key":"68520","_from":"10473","_to":"42023"} +{"$label":"ACTS_IN","name":"Edward Kaminsky","type":"Role","_key":"67640","_from":"10473","_to":"41625"} +{"$label":"ACTS_IN","name":"J\u00f6rg","type":"Role","_key":"64963","_from":"10473","_to":"40380"} +{"$label":"ACTS_IN","name":"Bernhard 'Bernie' Kominka","type":"Role","_key":"61786","_from":"10473","_to":"38898"} +{"$label":"ACTS_IN","name":"Uhu Zigeuner","type":"Role","_key":"55231","_from":"10473","_to":"35234"} +{"$label":"ACTS_IN","name":"Jeff Brown","type":"Role","_key":"55145","_from":"10473","_to":"35197"} +{"$label":"ACTS_IN","name":"Martin Baumann Jr.","type":"Role","_key":"53274","_from":"10473","_to":"34453"} +{"$label":"ACTS_IN","name":"Muller","type":"Role","_key":"49085","_from":"10473","_to":"32171"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"45529","_from":"10473","_to":"30151"} +{"$label":"ACTS_IN","name":"Hermann Willi\u00e9","type":"Role","_key":"44008","_from":"10473","_to":"29357"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"43945","_from":"10473","_to":"29317"} +{"$label":"ACTS_IN","name":"Fred Engel","type":"Role","_key":"38214","_from":"10473","_to":"25817"} +{"$label":"ACTS_IN","name":"Walter & Wolfgang Schulz","type":"Role","_key":"36148","_from":"10473","_to":"24525"} +{"$label":"ACTS_IN","name":"Walter & Wolfgang Schulz","type":"Role","_key":"36138","_from":"10473","_to":"24523"} +{"$label":"ACTS_IN","name":"Walter & Wolfgang Schulz","type":"Role","_key":"36127","_from":"10473","_to":"24515"} +{"$label":"ACTS_IN","name":"Carl Jensen","type":"Role","_key":"27397","_from":"10473","_to":"19679"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"46453","_from":"10474","_to":"30681"} +{"$label":"ACTS_IN","name":"Professor Mack","type":"Role","_key":"37278","_from":"10474","_to":"25258"} +{"$label":"ACTS_IN","name":"Heinrich Mann","type":"Role","_key":"20007","_from":"10474","_to":"14724"} +{"$label":"ACTS_IN","name":"Regulator Rogul","type":"Role","_key":"56981","_from":"10475","_to":"36154"} +{"$label":"ACTS_IN","name":"Schmoll","type":"Role","_key":"49091","_from":"10475","_to":"32171"} +{"$label":"ACTS_IN","name":"Anstaltsleiter Rusterholz","type":"Role","_key":"43802","_from":"10475","_to":"29250"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30051","_from":"10475","_to":"21186"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"68451","_from":"10477","_to":"41988"} +{"$label":"ACTS_IN","name":"Felix Kronenberg","type":"Role","_key":"66438","_from":"10477","_to":"41074"} +{"$label":"ACTS_IN","name":"Ethelbert","type":"Role","_key":"49601","_from":"10477","_to":"32466"} +{"$label":"ACTS_IN","name":"Esslin","type":"Role","_key":"19819","_from":"10477","_to":"14625"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"64112","_from":"10478","_to":"40010"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"34655","_from":"10478","_to":"23709"} +{"$label":"ACTS_IN","name":"Kinnear","type":"Role","_key":"13466","_from":"10483","_to":"10480"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"13464","_from":"10482","_to":"10480"} +{"$label":"DIRECTED","_key":"13462","_from":"10481","_to":"10480"} +{"$label":"DIRECTED","_key":"91147","_from":"10481","_to":"53767"} +{"$label":"DIRECTED","_key":"65651","_from":"10481","_to":"40672"} +{"$label":"DIRECTED","_key":"28338","_from":"10481","_to":"20283"} +{"$label":"DIRECTED","_key":"27530","_from":"10481","_to":"19754"} +{"$label":"ACTS_IN","name":"Kerro","type":"Role","_key":"118338","_from":"10482","_to":"69559"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"70105","_from":"10482","_to":"42740"} +{"$label":"ACTS_IN","name":"Martin Knight","type":"Role","_key":"55295","_from":"10482","_to":"35259"} +{"$label":"ACTS_IN","name":"Agent Moss","type":"Role","_key":"13479","_from":"10490","_to":"10484"} +{"$label":"ACTS_IN","name":"Agent Lime","type":"Role","_key":"13478","_from":"10489","_to":"10484"} +{"$label":"ACTS_IN","name":"Ilsa Haupstein","type":"Role","_key":"13476","_from":"10488","_to":"10484"} +{"$label":"ACTS_IN","name":"Karl Ruprecht Kroenen","type":"Role","_key":"13475","_from":"10487","_to":"10484"} +{"$label":"ACTS_IN","name":"Grigori Rasputin","type":"Role","_key":"13473","_from":"10486","_to":"10484"} +{"$label":"ACTS_IN","name":"John Myers","type":"Role","_key":"13470","_from":"10485","_to":"10484"} +{"$label":"ACTS_IN","name":"Richard \"Gentleman\" Rivers","type":"Role","_key":"105113","_from":"10485","_to":"61861"} +{"$label":"ACTS_IN","name":"Juraj Thurzo","type":"Role","_key":"103596","_from":"10486","_to":"60931"} +{"$label":"ACTS_IN","name":"Uri","type":"Role","_key":"96797","_from":"10486","_to":"56924"} +{"$label":"ACTS_IN","name":"Strucker","type":"Role","_key":"72160","_from":"10486","_to":"43613"} +{"$label":"ACTS_IN","name":"Nicolai","type":"Role","_key":"65812","_from":"10486","_to":"40728"} +{"$label":"ACTS_IN","name":"Anzor Yugorsky","type":"Role","_key":"46393","_from":"10486","_to":"30650"} +{"$label":"ACTS_IN","name":"Sgt Hans Beck","type":"Role","_key":"24275","_from":"10486","_to":"17581"} +{"$label":"ACTS_IN","name":"Gretkov","type":"Role","_key":"21727","_from":"10486","_to":"15871"} +{"$label":"ACTS_IN","name":"Kommunistischer Protestierer","type":"Role","_key":"21834","_from":"10489","_to":"15899"} +{"$label":"ACTS_IN","name":"Bike Shop Owner","type":"Role","_key":"106785","_from":"10490","_to":"62951"} +{"$label":"ACTS_IN","name":"Rudolf Hess","type":"Role","_key":"21776","_from":"10490","_to":"15899"} +{"$label":"ACTS_IN","name":"Dawas Mutter","type":"Role","_key":"13491","_from":"10502","_to":"10491"} +{"$label":"ACTS_IN","name":"Dawas Vater","type":"Role","_key":"13490","_from":"10501","_to":"10491"} +{"$label":"ACTS_IN","name":"LKW-Fahrer","type":"Role","_key":"13489","_from":"10500","_to":"10491"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"13488","_from":"10499","_to":"10491"} +{"$label":"ACTS_IN","name":"Schwester Bilikes","type":"Role","_key":"13487","_from":"10498","_to":"10491"} +{"$label":"ACTS_IN","name":"Bilikes Mutter","type":"Role","_key":"13486","_from":"10497","_to":"10491"} +{"$label":"ACTS_IN","name":"Bilikes Vater","type":"Role","_key":"13485","_from":"10496","_to":"10491"} +{"$label":"ACTS_IN","name":"Erguotou","type":"Role","_key":"13484","_from":"10495","_to":"10491"} +{"$label":"ACTS_IN","name":"Dawa","type":"Role","_key":"13483","_from":"10494","_to":"10491"} +{"$label":"ACTS_IN","name":"Bilike","type":"Role","_key":"13482","_from":"10493","_to":"10491"} +{"$label":"DIRECTED","_key":"13481","_from":"10492","_to":"10491"} +{"$label":"DIRECTED","_key":"13494","_from":"10507","_to":"10504"} +{"$label":"ACTS_IN","name":"Stimme","type":"Role","_key":"13493","_from":"10506","_to":"10504"} +{"$label":"ACTS_IN","name":"Ernst \"Enno\" Richter","type":"Role","_key":"13492","_from":"10505","_to":"10504"} +{"$label":"DIRECTED","_key":"13501","_from":"10512","_to":"10508"} +{"$label":"ACTS_IN","name":"Wiligut","type":"Role","_key":"13499","_from":"10511","_to":"10508"} +{"$label":"ACTS_IN","name":"Kronprinz Leopold","type":"Role","_key":"13498","_from":"10510","_to":"10508"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"13496","_from":"10509","_to":"10508"} +{"$label":"ACTS_IN","name":"Rose Johnny","type":"Role","_key":"113800","_from":"10509","_to":"67048"} +{"$label":"ACTS_IN","name":"Allie","type":"Role","_key":"110955","_from":"10509","_to":"65537"} +{"$label":"ACTS_IN","name":"Larita Whittaker","type":"Role","_key":"110385","_from":"10509","_to":"65225"} +{"$label":"ACTS_IN","name":"Neera (voice)","type":"Role","_key":"110239","_from":"10509","_to":"65161"} +{"$label":"ACTS_IN","name":"Vanessa Price","type":"Role","_key":"98901","_from":"10509","_to":"58276"} +{"$label":"ACTS_IN","name":"Lt. Kara Wade","type":"Role","_key":"59905","_from":"10509","_to":"37824"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"56369","_from":"10509","_to":"35817"} +{"$label":"ACTS_IN","name":"Erin","type":"Role","_key":"53431","_from":"10509","_to":"34528"} +{"$label":"ACTS_IN","name":"London","type":"Role","_key":"47052","_from":"10509","_to":"31034"} +{"$label":"ACTS_IN","name":"Alex McDonough","type":"Role","_key":"27946","_from":"10509","_to":"20034"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"15637","_from":"10509","_to":"11928"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"15366","_from":"10509","_to":"11754"} +{"$label":"ACTS_IN","name":"Agamemnon","type":"Role","_key":"119767","_from":"10510","_to":"70330"} +{"$label":"ACTS_IN","name":"Paul Belhmer","type":"Role","_key":"108841","_from":"10510","_to":"64330"} +{"$label":"ACTS_IN","name":"Eric Stark","type":"Role","_key":"62964","_from":"10510","_to":"39537"} +{"$label":"ACTS_IN","name":"Count Adhemar of Anjou","type":"Role","_key":"54100","_from":"10510","_to":"34782"} +{"$label":"ACTS_IN","name":"Marke","type":"Role","_key":"52246","_from":"10510","_to":"34026"} +{"$label":"ACTS_IN","name":"Marco Venier","type":"Role","_key":"50205","_from":"10510","_to":"32818"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"43166","_from":"10510","_to":"28826"} +{"$label":"ACTS_IN","name":"John Murdoch","type":"Role","_key":"22583","_from":"10510","_to":"16394"} +{"$label":"ACTS_IN","name":"William (P\u00e8re-Lachaise)","type":"Role","_key":"19894","_from":"10510","_to":"14635"} +{"$label":"ACTS_IN","name":"Armand","type":"Role","_key":"14723","_from":"10510","_to":"11325"} +{"$label":"ACTS_IN","name":"No \/ Tomas Katz","type":"Role","_key":"107762","_from":"10511","_to":"63633"} +{"$label":"ACTS_IN","name":"Top Hat","type":"Role","_key":"45848","_from":"10511","_to":"30311"} +{"$label":"DIRECTED","_key":"106640","_from":"10512","_to":"62835"} +{"$label":"ACTS_IN","name":"Sanchez","type":"Role","_key":"13503","_from":"10514","_to":"10513"} +{"$label":"ACTS_IN","name":"Nietzsche","type":"Role","_key":"118504","_from":"10514","_to":"69669"} +{"$label":"ACTS_IN","name":"Odysseus","type":"Role","_key":"111707","_from":"10514","_to":"65950"} +{"$label":"ACTS_IN","name":"John Gotti","type":"Role","_key":"101771","_from":"10514","_to":"59894"} +{"$label":"ACTS_IN","name":"Henri Alan Tremont","type":"Role","_key":"65634","_from":"10514","_to":"40671"} +{"$label":"ACTS_IN","name":"Tzekel-Kan","type":"Role","_key":"63706","_from":"10514","_to":"39835"} +{"$label":"ACTS_IN","name":"Carol D'Allesandro","type":"Role","_key":"63070","_from":"10514","_to":"39574"} +{"$label":"ACTS_IN","name":"Genero","type":"Role","_key":"58164","_from":"10514","_to":"36795"} +{"$label":"ACTS_IN","name":"Novian","type":"Role","_key":"57887","_from":"10514","_to":"36625"} +{"$label":"ACTS_IN","name":"Lt. Al Garcia","type":"Role","_key":"57557","_from":"10514","_to":"36462"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"54155","_from":"10514","_to":"34797"} +{"$label":"DIRECTED","_key":"13527","_from":"10526","_to":"10515"} +{"$label":"ACTS_IN","name":"Agent Jerry Grant","type":"Role","_key":"13526","_from":"10525","_to":"10515"} +{"$label":"ACTS_IN","name":"Agent Harris","type":"Role","_key":"13525","_from":"10524","_to":"10515"} +{"$label":"ACTS_IN","name":"Alana Krewson, Miss Hawaii","type":"Role","_key":"13524","_from":"10523","_to":"10515"} +{"$label":"ACTS_IN","name":"Leslie Davis, Miss California","type":"Role","_key":"13523","_from":"10522","_to":"10515"} +{"$label":"ACTS_IN","name":"Mary Jo Wright, Miss Texas","type":"Role","_key":"13522","_from":"10521","_to":"10515"} +{"$label":"ACTS_IN","name":"Frank Tobin","type":"Role","_key":"13521","_from":"10520","_to":"10515"} +{"$label":"ACTS_IN","name":"Karen Krantz, Miss New York","type":"Role","_key":"13520","_from":"10519","_to":"10515"} +{"$label":"ACTS_IN","name":"Cheryl Frasier, Miss Rhode Island","type":"Role","_key":"13519","_from":"10518","_to":"10515"} +{"$label":"ACTS_IN","name":"Agent Clonsky","type":"Role","_key":"13518","_from":"10517","_to":"10515"} +{"$label":"ACTS_IN","name":"Gracie Hart","type":"Role","_key":"13512","_from":"10516","_to":"10515"} +{"$label":"ACTS_IN","name":"Roz","type":"Role","_key":"121100","_from":"10516","_to":"71124"} +{"$label":"ACTS_IN","name":"Margaret Tate","type":"Role","_key":"115519","_from":"10516","_to":"68009"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100569","_from":"10516","_to":"59315"} +{"$label":"ACTS_IN","name":"Cassie Mayweather","type":"Role","_key":"72583","_from":"10516","_to":"43767"} +{"$label":"ACTS_IN","name":"Gwen Cummings","type":"Role","_key":"63499","_from":"10516","_to":"39760"} +{"$label":"ACTS_IN","name":"Gracie Hart","type":"Role","_key":"59808","_from":"10516","_to":"37760"} +{"$label":"ACTS_IN","name":"Linda Hanson","type":"Role","_key":"58616","_from":"10516","_to":"37036"} +{"$label":"ACTS_IN","name":"Lt. Lenina Huxley","type":"Role","_key":"56213","_from":"10516","_to":"35723"} +{"$label":"ACTS_IN","name":"Birdee Pruitt","type":"Role","_key":"55940","_from":"10516","_to":"35575"} +{"$label":"ACTS_IN","name":"Siddalee 'Sidda' Walker","type":"Role","_key":"54829","_from":"10516","_to":"35080"} +{"$label":"ACTS_IN","name":"Sally Owens","type":"Role","_key":"43382","_from":"10516","_to":"28988"} +{"$label":"ACTS_IN","name":"Lucy Kelson","type":"Role","_key":"22436","_from":"10516","_to":"16308"} +{"$label":"ACTS_IN","name":"Lucy Eleanor Moderatz","type":"Role","_key":"17950","_from":"10516","_to":"13353"} +{"$label":"ACTS_IN","name":"Kate Forster","type":"Role","_key":"17795","_from":"10516","_to":"13267"} +{"$label":"ACTS_IN","name":"Ellen Roark","type":"Role","_key":"14599","_from":"10516","_to":"11252"} +{"$label":"ACTS_IN","name":"Diane Shaver","type":"Role","_key":"14585","_from":"10516","_to":"11240"} +{"$label":"ACTS_IN","name":"Angela Bennett\/Ruth Marx","type":"Role","_key":"14562","_from":"10516","_to":"11227"} +{"$label":"ACTS_IN","name":"Sarah Lewis","type":"Role","_key":"14556","_from":"10516","_to":"11225"} +{"$label":"ACTS_IN","name":"Jean Cabot","type":"Role","_key":"14521","_from":"10516","_to":"11201"} +{"$label":"ACTS_IN","name":"Annie Porter","type":"Role","_key":"14511","_from":"10516","_to":"11198"} +{"$label":"ACTS_IN","name":"Annie Porter","type":"Role","_key":"14499","_from":"10516","_to":"11195"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"102594","_from":"10518","_to":"60363"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"57271","_from":"10518","_to":"36323"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"56014","_from":"10518","_to":"35606"} +{"$label":"ACTS_IN","name":"Meryl Brooks","type":"Role","_key":"22441","_from":"10518","_to":"16308"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"96938","_from":"10519","_to":"57014"} +{"$label":"ACTS_IN","name":"Jo Tanner","type":"Role","_key":"121691","_from":"10521","_to":"71490"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"107827","_from":"10521","_to":"63677"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"104135","_from":"10522","_to":"61261"} +{"$label":"ACTS_IN","name":"Jeanie Ellis","type":"Role","_key":"46062","_from":"10522","_to":"30427"} +{"$label":"ACTS_IN","name":"Officer Jim","type":"Role","_key":"57039","_from":"10524","_to":"36185"} +{"$label":"DIRECTED","_key":"70389","_from":"10526","_to":"42869"} +{"$label":"DIRECTED","_key":"68446","_from":"10526","_to":"41985"} +{"$label":"DIRECTED","_key":"67960","_from":"10526","_to":"41761"} +{"$label":"DIRECTED","_key":"67282","_from":"10526","_to":"41485"} +{"$label":"DIRECTED","_key":"59535","_from":"10526","_to":"37584"} +{"$label":"DIRECTED","_key":"58065","_from":"10526","_to":"36740"} +{"$label":"DIRECTED","_key":"57473","_from":"10526","_to":"36425"} +{"$label":"ACTS_IN","name":"Kronprinz Xiang","type":"Role","_key":"13536","_from":"10533","_to":"10527"} +{"$label":"ACTS_IN","name":"Prince Cheng","type":"Role","_key":"13535","_from":"10532","_to":"10527"} +{"$label":"ACTS_IN","name":"Tochter des Hofarztes","type":"Role","_key":"13534","_from":"10531","_to":"10527"} +{"$label":"ACTS_IN","name":"Frau des Hofarztes","type":"Role","_key":"13533","_from":"10530","_to":"10527"} +{"$label":"ACTS_IN","name":"Hofarzt","type":"Role","_key":"13532","_from":"10529","_to":"10527"} +{"$label":"ACTS_IN","name":"Prince Jie","type":"Role","_key":"13531","_from":"10528","_to":"10527"} +{"$label":"ACTS_IN","name":"Fang Shijie","type":"Role","_key":"111145","_from":"10528","_to":"65641"} +{"$label":"ACTS_IN","name":"Takumi Fujiwara","type":"Role","_key":"109124","_from":"10528","_to":"64472"} +{"$label":"ACTS_IN","name":"Liu Xing","type":"Role","_key":"114681","_from":"10533","_to":"67558"} +{"$label":"ACTS_IN","name":"Dai","type":"Role","_key":"18412","_from":"10533","_to":"13651"} +{"$label":"ACTS_IN","name":"Snow Wolf","type":"Role","_key":"17440","_from":"10533","_to":"13036"} +{"$label":"ACTS_IN","name":"Richard Coeur de Lion","type":"Role","_key":"13550","_from":"10539","_to":"10534"} +{"$label":"ACTS_IN","name":"Almaric","type":"Role","_key":"13547","_from":"10538","_to":"10534"} +{"$label":"ACTS_IN","name":"Odo","type":"Role","_key":"13544","_from":"10537","_to":"10534"} +{"$label":"ACTS_IN","name":"Firuz","type":"Role","_key":"13543","_from":"10536","_to":"10534"} +{"$label":"ACTS_IN","name":"Balians Wife","type":"Role","_key":"13539","_from":"10535","_to":"10534"} +{"$label":"ACTS_IN","name":"Letallec","type":"Role","_key":"95710","_from":"10536","_to":"56295"} +{"$label":"ACTS_IN","name":"Ice","type":"Role","_key":"94245","_from":"10536","_to":"55498"} +{"$label":"ACTS_IN","name":"Petrus","type":"Role","_key":"89347","_from":"10536","_to":"52883"} +{"$label":"ACTS_IN","name":"Balthasar","type":"Role","_key":"21449","_from":"10536","_to":"15682"} +{"$label":"ACTS_IN","name":"Bwana Qvie","type":"Role","_key":"14369","_from":"10536","_to":"11114"} +{"$label":"ACTS_IN","name":"Bob Music","type":"Role","_key":"111730","_from":"10538","_to":"65955"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"67589","_from":"10539","_to":"41608"} +{"$label":"ACTS_IN","name":"Alexander Auchinleck","type":"Role","_key":"60505","_from":"10539","_to":"38170"} +{"$label":"ACTS_IN","name":"Orestes","type":"Role","_key":"55877","_from":"10539","_to":"35542"} +{"$label":"ACTS_IN","name":"Dr. Isaacs","type":"Role","_key":"47277","_from":"10539","_to":"31150"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"28354","_from":"10539","_to":"20286"} +{"$label":"ACTS_IN","name":"Manfred Powell","type":"Role","_key":"17297","_from":"10539","_to":"12947"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"13552","_from":"10541","_to":"10540"} +{"$label":"ACTS_IN","name":"Vanilla Ice","type":"Role","_key":"13553","_from":"10541","_to":"10542"} +{"$label":"DIRECTED","_key":"13558","_from":"10546","_to":"10542"} +{"$label":"ACTS_IN","name":"Leonardo","type":"Role","_key":"13556","_from":"10545","_to":"10542"} +{"$label":"ACTS_IN","name":"Michaelangelo","type":"Role","_key":"13555","_from":"10544","_to":"10542"} +{"$label":"ACTS_IN","name":"April O'Neil","type":"Role","_key":"13554","_from":"10543","_to":"10542"} +{"$label":"ACTS_IN","name":"Jackie Kerns","type":"Role","_key":"121437","_from":"10543","_to":"71342"} +{"$label":"ACTS_IN","name":"Karen Kelly","type":"Role","_key":"95851","_from":"10543","_to":"56368"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"13575","_from":"10543","_to":"10556"} +{"$label":"ACTS_IN","name":"Michaelangelo","type":"Role","_key":"13562","_from":"10544","_to":"10547"} +{"$label":"ACTS_IN","name":"Leonardo","type":"Role","_key":"13574","_from":"10545","_to":"10556"} +{"$label":"DIRECTED","_key":"13570","_from":"10555","_to":"10547"} +{"$label":"ACTS_IN","name":"Leonardo (Voice)","type":"Role","_key":"13568","_from":"10554","_to":"10547"} +{"$label":"ACTS_IN","name":"Michaelangelo (Voice)","type":"Role","_key":"13567","_from":"10553","_to":"10547"} +{"$label":"ACTS_IN","name":"Splinter (Voice)","type":"Role","_key":"13566","_from":"10552","_to":"10547"} +{"$label":"ACTS_IN","name":"The Shredder","type":"Role","_key":"13565","_from":"10551","_to":"10547"} +{"$label":"ACTS_IN","name":"Leonardo","type":"Role","_key":"13564","_from":"10550","_to":"10547"} +{"$label":"ACTS_IN","name":"Donatello","type":"Role","_key":"13563","_from":"10549","_to":"10547"} +{"$label":"ACTS_IN","name":"April O'Neal","type":"Role","_key":"13559","_from":"10548","_to":"10547"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"120603","_from":"10548","_to":"70829"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"38861","_from":"10548","_to":"26244"} +{"$label":"ACTS_IN","name":"Grouch Jailer","type":"Role","_key":"107115","_from":"10552","_to":"63166"} +{"$label":"ACTS_IN","name":"Toshiro Takashi","type":"Role","_key":"98301","_from":"10554","_to":"57901"} +{"$label":"DIRECTED","_key":"121613","_from":"10555","_to":"71446"} +{"$label":"DIRECTED","_key":"120537","_from":"10555","_to":"70790"} +{"$label":"DIRECTED","_key":"118326","_from":"10555","_to":"69555"} +{"$label":"DIRECTED","_key":"55019","_from":"10555","_to":"35160"} +{"$label":"DIRECTED","_key":"45835","_from":"10555","_to":"30310"} +{"$label":"DIRECTED","_key":"13576","_from":"10560","_to":"10556"} +{"$label":"ACTS_IN","name":"Michaelangelo","type":"Role","_key":"13573","_from":"10559","_to":"10556"} +{"$label":"ACTS_IN","name":"Donatello","type":"Role","_key":"13572","_from":"10558","_to":"10556"} +{"$label":"ACTS_IN","name":"Raphael","type":"Role","_key":"13571","_from":"10557","_to":"10556"} +{"$label":"ACTS_IN","name":"Funker Jack Phillips","type":"Role","_key":"22795","_from":"10557","_to":"16516"} +{"$label":"DIRECTED","_key":"103129","_from":"10560","_to":"60659"} +{"$label":"DIRECTED","_key":"98754","_from":"10560","_to":"58195"} +{"$label":"ACTS_IN","name":"Mrs. Garrigan","type":"Role","_key":"13588","_from":"10569","_to":"10561"} +{"$label":"ACTS_IN","name":"Mr. Garrigan","type":"Role","_key":"13587","_from":"10568","_to":"10561"} +{"$label":"ACTS_IN","name":"Tolu","type":"Role","_key":"13586","_from":"10567","_to":"10561"} +{"$label":"ACTS_IN","name":"Dr. David Merrit","type":"Role","_key":"13585","_from":"10566","_to":"10561"} +{"$label":"ACTS_IN","name":"Masanga","type":"Role","_key":"13584","_from":"10565","_to":"10561"} +{"$label":"ACTS_IN","name":"Dr. Thomas Junju","type":"Role","_key":"13583","_from":"10564","_to":"10561"} +{"$label":"ACTS_IN","name":"British Diplomat","type":"Role","_key":"13580","_from":"10563","_to":"10561"} +{"$label":"DIRECTED","_key":"13577","_from":"10562","_to":"10561"} +{"$label":"DIRECTED","_key":"110766","_from":"10562","_to":"65435"} +{"$label":"DIRECTED","_key":"68462","_from":"10562","_to":"41992"} +{"$label":"ACTS_IN","name":"Sneath","type":"Role","_key":"103810","_from":"10563","_to":"61055"} +{"$label":"ACTS_IN","name":"Dr. Atticus Noyle","type":"Role","_key":"100445","_from":"10563","_to":"59224"} +{"$label":"ACTS_IN","name":"Fox","type":"Role","_key":"91530","_from":"10563","_to":"53952"} +{"$label":"ACTS_IN","name":"Garland","type":"Role","_key":"88098","_from":"10563","_to":"52284"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"51928","_from":"10563","_to":"33869"} +{"$label":"ACTS_IN","name":"Fra Pavel","type":"Role","_key":"19918","_from":"10563","_to":"14664"} +{"$label":"ACTS_IN","name":"Orlando De Boys","type":"Role","_key":"118713","_from":"10564","_to":"69802"} +{"$label":"ACTS_IN","name":"Payne","type":"Role","_key":"60346","_from":"10564","_to":"38062"} +{"$label":"ACTS_IN","name":"Colonel Bagosora","type":"Role","_key":"108973","_from":"10565","_to":"64395"} +{"$label":"ACTS_IN","name":"Willem van Ruytenburgh","type":"Role","_key":"32644","_from":"10566","_to":"22682"} +{"$label":"ACTS_IN","name":"Indian Mother","type":"Role","_key":"13597","_from":"10574","_to":"10570"} +{"$label":"ACTS_IN","name":"Wind In Tree","type":"Role","_key":"13595","_from":"10573","_to":"10570"} +{"$label":"ACTS_IN","name":"Blackwing","type":"Role","_key":"13594","_from":"10572","_to":"10570"} +{"$label":"DIRECTED","_key":"13589","_from":"10571","_to":"10570"} +{"$label":"DIRECTED","_key":"93487","_from":"10571","_to":"55036"} +{"$label":"DIRECTED","_key":"53438","_from":"10571","_to":"34528"} +{"$label":"DIRECTED","_key":"25295","_from":"10571","_to":"18235"} +{"$label":"ACTS_IN","name":"Matthew Osceola","type":"Role","_key":"23316","_from":"10572","_to":"16899"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"114695","_from":"10573","_to":"67561"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"90429","_from":"10573","_to":"53428"} +{"$label":"ACTS_IN","name":"Hand Ninja #1","type":"Role","_key":"58364","_from":"10573","_to":"36877"} +{"$label":"ACTS_IN","name":"Andrew Unger","type":"Role","_key":"13609","_from":"10582","_to":"10575"} +{"$label":"ACTS_IN","name":"CIA Director Cy Wilson","type":"Role","_key":"13608","_from":"10581","_to":"10575"} +{"$label":"ACTS_IN","name":"Vincent Vy Ngo","type":"Role","_key":"13607","_from":"10580","_to":"10575"} +{"$label":"ACTS_IN","name":"Robert Aiken","type":"Role","_key":"13606","_from":"10579","_to":"10575"} +{"$label":"ACTS_IN","name":"Dr. William Byars","type":"Role","_key":"13605","_from":"10578","_to":"10575"} +{"$label":"ACTS_IN","name":"Gladys Jennip","type":"Role","_key":"13604","_from":"10577","_to":"10575"} +{"$label":"ACTS_IN","name":"Troy Folger","type":"Role","_key":"13603","_from":"10576","_to":"10575"} +{"$label":"ACTS_IN","name":"Chief Cobb","type":"Role","_key":"13905","_from":"10576","_to":"10792"} +{"$label":"ACTS_IN","name":"Elizabeth Pope","type":"Role","_key":"111697","_from":"10577","_to":"65946"} +{"$label":"ACTS_IN","name":"Hortense Cumberbatch","type":"Role","_key":"68213","_from":"10577","_to":"41888"} +{"$label":"ACTS_IN","name":"Dr. Miriam Kent","type":"Role","_key":"51035","_from":"10577","_to":"33306"} +{"$label":"ACTS_IN","name":"James Johnston","type":"Role","_key":"59357","_from":"10578","_to":"37498"} +{"$label":"ACTS_IN","name":"Dragan Adjanic","type":"Role","_key":"26239","_from":"10578","_to":"18839"} +{"$label":"ACTS_IN","name":"Alec Hurley","type":"Role","_key":"25774","_from":"10578","_to":"18543"} +{"$label":"ACTS_IN","name":"Mr. Jensen","type":"Role","_key":"55394","_from":"10579","_to":"35310"} +{"$label":"ACTS_IN","name":"Waters","type":"Role","_key":"57970","_from":"10581","_to":"36679"} +{"$label":"ACTS_IN","name":"Ketch","type":"Role","_key":"59096","_from":"10582","_to":"37302"} +{"$label":"ACTS_IN","name":"Carlyle","type":"Role","_key":"13617","_from":"10586","_to":"10583"} +{"$label":"ACTS_IN","name":"Ron Cabot","type":"Role","_key":"13615","_from":"10585","_to":"10583"} +{"$label":"ACTS_IN","name":"Valerie Gipson","type":"Role","_key":"13612","_from":"10584","_to":"10583"} +{"$label":"ACTS_IN","name":"Intake Nurse","type":"Role","_key":"59999","_from":"10584","_to":"37868"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"100941","_from":"10585","_to":"59498"} +{"$label":"ACTS_IN","name":"Herb Sunderson","type":"Role","_key":"57623","_from":"10585","_to":"36484"} +{"$label":"ACTS_IN","name":"Mr. Luce","type":"Role","_key":"15622","_from":"10585","_to":"11909"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"93407","_from":"10586","_to":"55010"} +{"$label":"ACTS_IN","name":"Joe Nader","type":"Role","_key":"67914","_from":"10586","_to":"41725"} +{"$label":"ACTS_IN","name":"Dr. Barry Lehman","type":"Role","_key":"54143","_from":"10586","_to":"34789"} +{"$label":"ACTS_IN","name":"John Stenton","type":"Role","_key":"19973","_from":"10586","_to":"14703"} +{"$label":"ACTS_IN","name":"Brian Gelford","type":"Role","_key":"14619","_from":"10586","_to":"11256"} +{"$label":"ACTS_IN","name":"Richard Weidner","type":"Role","_key":"13625","_from":"10588","_to":"10587"} +{"$label":"ACTS_IN","name":"Paulie Romano","type":"Role","_key":"113721","_from":"10588","_to":"67018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108941","_from":"10588","_to":"64379"} +{"$label":"ACTS_IN","name":"David Whitlock","type":"Role","_key":"105200","_from":"10588","_to":"61913"} +{"$label":"ACTS_IN","name":"Jonathan Parker","type":"Role","_key":"90037","_from":"10588","_to":"53256"} +{"$label":"ACTS_IN","name":"\"Pistol\" Pete Deeks","type":"Role","_key":"47081","_from":"10588","_to":"31043"} +{"$label":"ACTS_IN","name":"Wirey Pink","type":"Role","_key":"32233","_from":"10588","_to":"22461"} +{"$label":"ACTS_IN","name":"Joey Randone","type":"Role","_key":"18637","_from":"10588","_to":"13786"} +{"$label":"DIRECTED","_key":"94406","_from":"10588","_to":"55583"} +{"$label":"DIRECTED","_key":"61324","_from":"10588","_to":"38706"} +{"$label":"DIRECTED","_key":"59620","_from":"10588","_to":"37645"} +{"$label":"DIRECTED","_key":"51649","_from":"10588","_to":"33701"} +{"$label":"DIRECTED","_key":"31096","_from":"10588","_to":"21770"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"13634","_from":"10595","_to":"10589"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"13633","_from":"10594","_to":"10589"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"13632","_from":"10593","_to":"10589"} +{"$label":"ACTS_IN","name":"Thees","type":"Role","_key":"13631","_from":"10592","_to":"10589"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"13630","_from":"10591","_to":"10589"} +{"$label":"DIRECTED","_key":"13626","_from":"10590","_to":"10589"} +{"$label":"DIRECTED","_key":"67643","_from":"10590","_to":"41625"} +{"$label":"ACTS_IN","name":"Neptune","type":"Role","_key":"13642","_from":"10602","_to":"10596"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"13641","_from":"10601","_to":"10596"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"13640","_from":"10600","_to":"10596"} +{"$label":"ACTS_IN","name":"Legba","type":"Role","_key":"13639","_from":"10599","_to":"10596"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"13638","_from":"10598","_to":"10596"} +{"$label":"DIRECTED","_key":"13635","_from":"10597","_to":"10596"} +{"$label":"DIRECTED","_key":"51013","_from":"10597","_to":"33292"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"116407","_from":"10598","_to":"68526"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"67515","_from":"10598","_to":"41573"} +{"$label":"ACTS_IN","name":"Harlan","type":"Role","_key":"13650","_from":"10604","_to":"10603"} +{"$label":"ACTS_IN","name":"Greer","type":"Role","_key":"114822","_from":"10604","_to":"67629"} +{"$label":"DIRECTED","_key":"13662","_from":"10612","_to":"10605"} +{"$label":"ACTS_IN","name":"Bob Porter","type":"Role","_key":"13661","_from":"10611","_to":"10605"} +{"$label":"ACTS_IN","name":"Tom Smykowski","type":"Role","_key":"13659","_from":"10610","_to":"10605"} +{"$label":"ACTS_IN","name":"Bill Lumbergh","type":"Role","_key":"13658","_from":"10609","_to":"10605"} +{"$label":"ACTS_IN","name":"Michael Bolton","type":"Role","_key":"13655","_from":"10608","_to":"10605"} +{"$label":"ACTS_IN","name":"Lawrence","type":"Role","_key":"13654","_from":"10607","_to":"10605"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"13652","_from":"10606","_to":"10605"} +{"$label":"ACTS_IN","name":"Rick (segment \"The Honeymoon\") \/ RV Driver (segment \"The Campfire\")","type":"Role","_key":"108657","_from":"10606","_to":"64215"} +{"$label":"ACTS_IN","name":"Dr. Richard Clayton","type":"Role","_key":"102516","_from":"10606","_to":"60316"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"102041","_from":"10606","_to":"60035"} +{"$label":"ACTS_IN","name":"Donnie Anderson","type":"Role","_key":"102010","_from":"10606","_to":"60025"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"100651","_from":"10606","_to":"59348"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"61773","_from":"10606","_to":"38893"} +{"$label":"ACTS_IN","name":"Capt. Lewis Nixon","type":"Role","_key":"26810","_from":"10606","_to":"19258"} +{"$label":"ACTS_IN","name":"Allen Ginsberg","type":"Role","_key":"26525","_from":"10606","_to":"19066"} +{"$label":"ACTS_IN","name":"Marty Bowen","type":"Role","_key":"23313","_from":"10606","_to":"16899"} +{"$label":"ACTS_IN","name":"Glenn Dale","type":"Role","_key":"116044","_from":"10607","_to":"68338"} +{"$label":"ACTS_IN","name":"Officer Cheets \/ Ted Bedderhead (voice)","type":"Role","_key":"115869","_from":"10607","_to":"68225"} +{"$label":"ACTS_IN","name":"Warp Darkmatter & Agent Z","type":"Role","_key":"107943","_from":"10607","_to":"63745"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"101631","_from":"10607","_to":"59819"} +{"$label":"ACTS_IN","name":"Veteran Cat (voice)","type":"Role","_key":"92198","_from":"10607","_to":"54410"} +{"$label":"ACTS_IN","name":"Jethro Bodine","type":"Role","_key":"67507","_from":"10607","_to":"41572"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"48298","_from":"10607","_to":"31715"} +{"$label":"ACTS_IN","name":"My-ik","type":"Role","_key":"45055","_from":"10607","_to":"29926"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"58925","_from":"10608","_to":"37201"} +{"$label":"ACTS_IN","name":"Angry Caller (voice)","type":"Role","_key":"47212","_from":"10608","_to":"31110"} +{"$label":"ACTS_IN","name":"Secretary of State","type":"Role","_key":"47006","_from":"10608","_to":"30989"} +{"$label":"ACTS_IN","name":"Jake's Dad","type":"Role","_key":"110957","_from":"10609","_to":"65537"} +{"$label":"ACTS_IN","name":"Joe Maxwell","type":"Role","_key":"98098","_from":"10609","_to":"57760"} +{"$label":"ACTS_IN","name":"Henry Futch","type":"Role","_key":"94705","_from":"10609","_to":"55789"} +{"$label":"ACTS_IN","name":"Rhodes","type":"Role","_key":"93621","_from":"10609","_to":"55122"} +{"$label":"ACTS_IN","name":"Mike Brady","type":"Role","_key":"90566","_from":"10609","_to":"53492"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"61543","_from":"10609","_to":"38803"} +{"$label":"ACTS_IN","name":"Mr. Matthews","type":"Role","_key":"60596","_from":"10609","_to":"38237"} +{"$label":"ACTS_IN","name":"Reese Bobby","type":"Role","_key":"55957","_from":"10609","_to":"35579"} +{"$label":"ACTS_IN","name":"Secret Service Presidential Detail Agent-In-Charge Bill Watts","type":"Role","_key":"53518","_from":"10609","_to":"34555"} +{"$label":"ACTS_IN","name":"Mike Brady","type":"Role","_key":"52376","_from":"10609","_to":"34084"} +{"$label":"ACTS_IN","name":"Rich Garces","type":"Role","_key":"29857","_from":"10609","_to":"21119"} +{"$label":"ACTS_IN","name":"David Duncan","type":"Role","_key":"17818","_from":"10609","_to":"13278"} +{"$label":"ACTS_IN","name":"Principal Beasely","type":"Role","_key":"119742","_from":"10610","_to":"70316"} +{"$label":"ACTS_IN","name":"Captain Bunkley","type":"Role","_key":"60746","_from":"10610","_to":"38355"} +{"$label":"ACTS_IN","name":"Sheriff Pinkham","type":"Role","_key":"59565","_from":"10610","_to":"37600"} +{"$label":"ACTS_IN","name":"Commander Gorman","type":"Role","_key":"57164","_from":"10610","_to":"36271"} +{"$label":"ACTS_IN","name":"Jerry Blier","type":"Role","_key":"22206","_from":"10610","_to":"16177"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"14481","_from":"10610","_to":"11185"} +{"$label":"DIRECTED","_key":"90331","_from":"10612","_to":"53393"} +{"$label":"DIRECTED","_key":"47018","_from":"10612","_to":"30989"} +{"$label":"DIRECTED","_key":"26527","_from":"10612","_to":"19068"} +{"$label":"ACTS_IN","name":"Donnagon Giggles","type":"Role","_key":"54204","_from":"10612","_to":"34817"} +{"$label":"ACTS_IN","name":"Beavis \/ Butt-Head \/ Tom Anderson \/ Mr. Van Driessen \/ Principal McVicker (voice)","type":"Role","_key":"26528","_from":"10612","_to":"19068"} +{"$label":"DIRECTED","_key":"13669","_from":"10617","_to":"10613"} +{"$label":"ACTS_IN","name":"Lene","type":"Role","_key":"13667","_from":"10616","_to":"10613"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"13666","_from":"10615","_to":"10613"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"13663","_from":"10614","_to":"10613"} +{"$label":"ACTS_IN","name":"Joseph Gruber","type":"Role","_key":"43116","_from":"10615","_to":"28795"} +{"$label":"ACTS_IN","name":"Fabian Fischer","type":"Role","_key":"42887","_from":"10615","_to":"28665"} +{"$label":"ACTS_IN","name":"Hotte","type":"Role","_key":"36744","_from":"10615","_to":"24915"} +{"$label":"ACTS_IN","name":"Ingmar","type":"Role","_key":"29563","_from":"10615","_to":"20938"} +{"$label":"DIRECTED","_key":"48426","_from":"10617","_to":"31785"} +{"$label":"DIRECTED","_key":"13681","_from":"10626","_to":"10618"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"13680","_from":"10625","_to":"10618"} +{"$label":"ACTS_IN","name":"Zina","type":"Role","_key":"13678","_from":"10624","_to":"10618"} +{"$label":"ACTS_IN","name":"H","type":"Role","_key":"13677","_from":"10623","_to":"10618"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"13676","_from":"10622","_to":"10618"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"13675","_from":"10621","_to":"10618"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"13674","_from":"10620","_to":"10618"} +{"$label":"ACTS_IN","name":"Heck","type":"Role","_key":"13672","_from":"10619","_to":"10618"} +{"$label":"ACTS_IN","name":"Adrian Veidt \/ Ozymandias","type":"Role","_key":"93258","_from":"10619","_to":"54939"} +{"$label":"ACTS_IN","name":"Charles Ryder","type":"Role","_key":"90319","_from":"10619","_to":"53388"} +{"$label":"ACTS_IN","name":"Gary Spargo","type":"Role","_key":"48656","_from":"10619","_to":"31916"} +{"$label":"ACTS_IN","name":"Martin Bauer","type":"Role","_key":"14084","_from":"10619","_to":"10917"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"60372","_from":"10620","_to":"38073"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"59726","_from":"10620","_to":"37714"} +{"$label":"ACTS_IN","name":"Nathan Wallace \/ Repo Man","type":"Role","_key":"99792","_from":"10625","_to":"58864"} +{"$label":"ACTS_IN","name":"Sir Walter Elliot","type":"Role","_key":"97690","_from":"10625","_to":"57524"} +{"$label":"ACTS_IN","name":"Joel Cobb","type":"Role","_key":"13690","_from":"10631","_to":"10627"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"13689","_from":"10630","_to":"10627"} +{"$label":"ACTS_IN","name":"Justin Cobb","type":"Role","_key":"13683","_from":"10629","_to":"10627"} +{"$label":"DIRECTED","_key":"13682","_from":"10628","_to":"10627"} +{"$label":"ACTS_IN","name":"Alex Breslin","type":"Role","_key":"116327","_from":"10629","_to":"68477"} +{"$label":"ACTS_IN","name":"Tim Price","type":"Role","_key":"112248","_from":"10629","_to":"66289"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"97496","_from":"10629","_to":"57409"} +{"$label":"ACTS_IN","name":"Darren","type":"Role","_key":"94388","_from":"10629","_to":"55578"} +{"$label":"ACTS_IN","name":"Mercer","type":"Role","_key":"57475","_from":"10629","_to":"36426"} +{"$label":"ACTS_IN","name":"Marcie","type":"Role","_key":"120478","_from":"10630","_to":"70764"} +{"$label":"ACTS_IN","name":"Barbara 'Barb' Thompson","type":"Role","_key":"94847","_from":"10630","_to":"55853"} +{"$label":"ACTS_IN","name":"Calista","type":"Role","_key":"48350","_from":"10630","_to":"31743"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"47055","_from":"10630","_to":"31034"} +{"$label":"ACTS_IN","name":"Margo","type":"Role","_key":"44318","_from":"10630","_to":"29535"} +{"$label":"ACTS_IN","name":"Faith Domergue","type":"Role","_key":"21997","_from":"10630","_to":"16058"} +{"$label":"ACTS_IN","name":"Laddie","type":"Role","_key":"13702","_from":"10638","_to":"10632"} +{"$label":"ACTS_IN","name":"Marko","type":"Role","_key":"13701","_from":"10637","_to":"10632"} +{"$label":"ACTS_IN","name":"Dwayne","type":"Role","_key":"13700","_from":"10636","_to":"10632"} +{"$label":"ACTS_IN","name":"Alan Frog","type":"Role","_key":"13699","_from":"10635","_to":"10632"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"13698","_from":"10634","_to":"10632"} +{"$label":"ACTS_IN","name":"Sam Emerson","type":"Role","_key":"13695","_from":"10633","_to":"10632"} +{"$label":"ACTS_IN","name":"Marty Coslaw","type":"Role","_key":"114290","_from":"10633","_to":"67312"} +{"$label":"ACTS_IN","name":"Dinger","type":"Role","_key":"103337","_from":"10633","_to":"60792"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"103140","_from":"10633","_to":"60667"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96524","_from":"10633","_to":"56725"} +{"$label":"ACTS_IN","name":"Les Anderson","type":"Role","_key":"96015","_from":"10633","_to":"56441"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"94051","_from":"10633","_to":"55385"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"30112","_from":"10633","_to":"21220"} +{"$label":"ACTS_IN","name":"Ezra Stiles","type":"Role","_key":"121067","_from":"10634","_to":"71097"} +{"$label":"ACTS_IN","name":"Milligan","type":"Role","_key":"118559","_from":"10634","_to":"69710"} +{"$label":"ACTS_IN","name":"Mr. Landis","type":"Role","_key":"100251","_from":"10634","_to":"59123"} +{"$label":"ACTS_IN","name":"Graham Sherbourne","type":"Role","_key":"91172","_from":"10634","_to":"53776"} +{"$label":"ACTS_IN","name":"Rex Rexroth","type":"Role","_key":"71873","_from":"10634","_to":"43490"} +{"$label":"ACTS_IN","name":"Richard Rich","type":"Role","_key":"67285","_from":"10634","_to":"41485"} +{"$label":"ACTS_IN","name":"Brown","type":"Role","_key":"66618","_from":"10634","_to":"41179"} +{"$label":"ACTS_IN","name":"Grant Stayton III","type":"Role","_key":"65738","_from":"10634","_to":"40701"} +{"$label":"ACTS_IN","name":"Mr. Kilroy","type":"Role","_key":"63463","_from":"10634","_to":"39745"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"47316","_from":"10634","_to":"31163"} +{"$label":"ACTS_IN","name":"Raymond Massey","type":"Role","_key":"18627","_from":"10634","_to":"13782"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"53488","_from":"10636","_to":"34545"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"46261","_from":"10636","_to":"30580"} +{"$label":"ACTS_IN","name":"Thomas K. Butler","type":"Role","_key":"36519","_from":"10636","_to":"24766"} +{"$label":"ACTS_IN","name":"Tim Young","type":"Role","_key":"33628","_from":"10636","_to":"23223"} +{"$label":"DIRECTED","_key":"113973","_from":"10637","_to":"67125"} +{"$label":"DIRECTED","_key":"106622","_from":"10637","_to":"62820"} +{"$label":"ACTS_IN","name":"Bill S. Preston \/ Oma Preston \/ b\u00f6ser Roboter-Bill","type":"Role","_key":"14653","_from":"10637","_to":"11286"} +{"$label":"ACTS_IN","name":"Bill S. Preston","type":"Role","_key":"14643","_from":"10637","_to":"11280"} +{"$label":"DIRECTED","_key":"13703","_from":"10640","_to":"10639"} +{"$label":"DIRECTED","_key":"61229","_from":"10640","_to":"38674"} +{"$label":"DIRECTED","_key":"56784","_from":"10640","_to":"36060"} +{"$label":"ACTS_IN","name":"Frida","type":"Role","_key":"13715","_from":"10649","_to":"10641"} +{"$label":"ACTS_IN","name":"M\u00e8re de Krimo","type":"Role","_key":"13714","_from":"10648","_to":"10641"} +{"$label":"ACTS_IN","name":"Prof de fran\u00e7ais","type":"Role","_key":"13713","_from":"10647","_to":"10641"} +{"$label":"ACTS_IN","name":"Nanou","type":"Role","_key":"13712","_from":"10646","_to":"10641"} +{"$label":"ACTS_IN","name":"Zina","type":"Role","_key":"13711","_from":"10645","_to":"10641"} +{"$label":"ACTS_IN","name":"Rachid","type":"Role","_key":"13710","_from":"10644","_to":"10641"} +{"$label":"ACTS_IN","name":"Krimo","type":"Role","_key":"13708","_from":"10643","_to":"10641"} +{"$label":"DIRECTED","_key":"13707","_from":"10642","_to":"10641"} +{"$label":"DIRECTED","_key":"48781","_from":"10642","_to":"31992"} +{"$label":"ACTS_IN","name":"Ashade","type":"Role","_key":"34734","_from":"10642","_to":"23750"} +{"$label":"ACTS_IN","name":"Olfa","type":"Role","_key":"48794","_from":"10649","_to":"31992"} +{"$label":"DIRECTED","_key":"13725","_from":"10657","_to":"10650"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"13724","_from":"10656","_to":"10650"} +{"$label":"ACTS_IN","name":"Evette","type":"Role","_key":"13723","_from":"10655","_to":"10650"} +{"$label":"ACTS_IN","name":"Grandma Dottie","type":"Role","_key":"13722","_from":"10654","_to":"10650"} +{"$label":"ACTS_IN","name":"Timmy Burns","type":"Role","_key":"13721","_from":"10653","_to":"10650"} +{"$label":"ACTS_IN","name":"Beth Burns","type":"Role","_key":"13720","_from":"10652","_to":"10650"} +{"$label":"ACTS_IN","name":"Jim Burns","type":"Role","_key":"13719","_from":"10651","_to":"10650"} +{"$label":"ACTS_IN","name":"Fitz","type":"Role","_key":"118893","_from":"10651","_to":"69879"} +{"$label":"ACTS_IN","name":"Jack Hartsell","type":"Role","_key":"111394","_from":"10651","_to":"65780"} +{"$label":"ACTS_IN","name":"Hades","type":"Role","_key":"104082","_from":"10651","_to":"61239"} +{"$label":"ACTS_IN","name":"Carl Anheuser","type":"Role","_key":"98817","_from":"10651","_to":"58224"} +{"$label":"ACTS_IN","name":"Peter Steinberg","type":"Role","_key":"64100","_from":"10651","_to":"40002"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"60065","_from":"10651","_to":"37904"} +{"$label":"ACTS_IN","name":"Hector Cyr","type":"Role","_key":"57182","_from":"10651","_to":"36281"} +{"$label":"ACTS_IN","name":"Paprizzio","type":"Role","_key":"55540","_from":"10651","_to":"35377"} +{"$label":"ACTS_IN","name":"Maffio Venier","type":"Role","_key":"50207","_from":"10651","_to":"32818"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"36027","_from":"10651","_to":"24460"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"31993","_from":"10651","_to":"22300"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"29599","_from":"10651","_to":"20951"} +{"$label":"ACTS_IN","name":"Lutz","type":"Role","_key":"27621","_from":"10651","_to":"19802"} +{"$label":"ACTS_IN","name":"Dr. Mark Weller","type":"Role","_key":"25248","_from":"10651","_to":"18211"} +{"$label":"ACTS_IN","name":"Ed Benitez","type":"Role","_key":"20390","_from":"10651","_to":"14933"} +{"$label":"ACTS_IN","name":"Dennis Cahill","type":"Role","_key":"20386","_from":"10651","_to":"14930"} +{"$label":"ACTS_IN","name":"Rupert Burns","type":"Role","_key":"19983","_from":"10651","_to":"14709"} +{"$label":"ACTS_IN","name":"Harry Rex Vonner","type":"Role","_key":"14602","_from":"10651","_to":"11252"} +{"$label":"ACTS_IN","name":"Randy Steckle","type":"Role","_key":"13730","_from":"10651","_to":"10658"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"68065","_from":"10652","_to":"41819"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"45934","_from":"10652","_to":"30370"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"119435","_from":"10653","_to":"70168"} +{"$label":"ACTS_IN","name":"Brett Mullen","type":"Role","_key":"106768","_from":"10653","_to":"62941"} +{"$label":"ACTS_IN","name":"Mrs. Ethel Dinges","type":"Role","_key":"98898","_from":"10654","_to":"58269"} +{"$label":"ACTS_IN","name":"Mrs. Finkle","type":"Role","_key":"25243","_from":"10654","_to":"18207"} +{"$label":"DIRECTED","_key":"45927","_from":"10657","_to":"30370"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"13739","_from":"10663","_to":"10659"} +{"$label":"ACTS_IN","name":"Julie Buckman-Lampkin Higgins","type":"Role","_key":"13738","_from":"10662","_to":"10659"} +{"$label":"ACTS_IN","name":"David Brodsky","type":"Role","_key":"13736","_from":"10661","_to":"10659"} +{"$label":"ACTS_IN","name":"Gil Buckman","type":"Role","_key":"13732","_from":"10660","_to":"10659"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"112273","_from":"10660","_to":"66296"} +{"$label":"ACTS_IN","name":"Vincent 'Vinnie' Antonelli","type":"Role","_key":"109009","_from":"10660","_to":"64421"} +{"$label":"ACTS_IN","name":"Inspecteur Jacques Clouseau","type":"Role","_key":"103423","_from":"10660","_to":"60838"} +{"$label":"ACTS_IN","name":"Jonas Nightengale","type":"Role","_key":"91441","_from":"10660","_to":"53929"} +{"$label":"ACTS_IN","name":"Inspector Jacques Clouseau","type":"Role","_key":"87997","_from":"10660","_to":"52246"} +{"$label":"ACTS_IN","name":"George Banks","type":"Role","_key":"72437","_from":"10660","_to":"43722"} +{"$label":"ACTS_IN","name":"George Stanley Banks","type":"Role","_key":"72340","_from":"10660","_to":"43689"} +{"$label":"ACTS_IN","name":"Dr. Michael Hfuhruhurr","type":"Role","_key":"70940","_from":"10660","_to":"43098"} +{"$label":"ACTS_IN","name":"C.D. \"Charlie\" Bales","type":"Role","_key":"70861","_from":"10660","_to":"43068"} +{"$label":"ACTS_IN","name":"Bobby Bowfinger","type":"Role","_key":"69312","_from":"10660","_to":"42372"} +{"$label":"ACTS_IN","name":"Tom Baker","type":"Role","_key":"67240","_from":"10660","_to":"41460"} +{"$label":"ACTS_IN","name":"Orin Scrivello, DDS","type":"Role","_key":"65706","_from":"10660","_to":"40694"} +{"$label":"ACTS_IN","name":"Mr. Chairman","type":"Role","_key":"65210","_from":"10660","_to":"40495"} +{"$label":"ACTS_IN","name":"Peter Sanderson","type":"Role","_key":"65006","_from":"10660","_to":"40403"} +{"$label":"ACTS_IN","name":"Roger Cobb","type":"Role","_key":"64714","_from":"10660","_to":"40297"} +{"$label":"ACTS_IN","name":"Newton Davis","type":"Role","_key":"63048","_from":"10660","_to":"39566"} +{"$label":"ACTS_IN","name":"Freddy Benson","type":"Role","_key":"61201","_from":"10660","_to":"38666"} +{"$label":"ACTS_IN","name":"Tom Baker","type":"Role","_key":"55218","_from":"10660","_to":"35229"} +{"$label":"ACTS_IN","name":"Rigby Reardon","type":"Role","_key":"53866","_from":"10660","_to":"34691"} +{"$label":"ACTS_IN","name":"Master Sergeant Ernest G. Bilko","type":"Role","_key":"52547","_from":"10660","_to":"34162"} +{"$label":"ACTS_IN","name":"Henry Clark","type":"Role","_key":"51761","_from":"10660","_to":"33774"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"50839","_from":"10660","_to":"33179"} +{"$label":"ACTS_IN","name":"Lucky Day","type":"Role","_key":"49467","_from":"10660","_to":"32393"} +{"$label":"ACTS_IN","name":"Navin R. Johnson","type":"Role","_key":"43552","_from":"10660","_to":"29093"} +{"$label":"ACTS_IN","name":"The Brother","type":"Role","_key":"24070","_from":"10660","_to":"17452"} +{"$label":"ACTS_IN","name":"Ray Porter","type":"Role","_key":"22175","_from":"10660","_to":"16167"} +{"$label":"ACTS_IN","name":"Neal Page","type":"Role","_key":"22161","_from":"10660","_to":"16161"} +{"$label":"ACTS_IN","name":"Harris K. Telemacher","type":"Role","_key":"18370","_from":"10660","_to":"13628"} +{"$label":"ACTS_IN","name":"Mr. Settigren","type":"Role","_key":"118549","_from":"10661","_to":"69700"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"68983","_from":"10661","_to":"42233"} +{"$label":"DIRECTED","_key":"67744","_from":"10661","_to":"41651"} +{"$label":"DIRECTED","_key":"67739","_from":"10661","_to":"41649"} +{"$label":"DIRECTED","_key":"64891","_from":"10661","_to":"40353"} +{"$label":"DIRECTED","_key":"58537","_from":"10661","_to":"36989"} +{"$label":"DIRECTED","_key":"55112","_from":"10661","_to":"35188"} +{"$label":"DIRECTED","_key":"55056","_from":"10661","_to":"35171"} +{"$label":"DIRECTED","_key":"52157","_from":"10661","_to":"33995"} +{"$label":"DIRECTED","_key":"27943","_from":"10661","_to":"20034"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"103715","_from":"10662","_to":"61002"} +{"$label":"ACTS_IN","name":"Soldat","type":"Role","_key":"23160","_from":"10663","_to":"16763"} +{"$label":"ACTS_IN","name":"Verodin","type":"Role","_key":"13753","_from":"10675","_to":"10664"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"13752","_from":"10674","_to":"10664"} +{"$label":"ACTS_IN","name":"Minskov","type":"Role","_key":"13750","_from":"10673","_to":"10664"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"13749","_from":"10672","_to":"10664"} +{"$label":"ACTS_IN","name":"Aline","type":"Role","_key":"13748","_from":"10671","_to":"10664"} +{"$label":"ACTS_IN","name":"Miao Lin","type":"Role","_key":"13747","_from":"10670","_to":"10664"} +{"$label":"ACTS_IN","name":"Sami","type":"Role","_key":"13746","_from":"10669","_to":"10664"} +{"$label":"ACTS_IN","name":"Fabrice","type":"Role","_key":"13745","_from":"10668","_to":"10664"} +{"$label":"ACTS_IN","name":"Robert Seyr","type":"Role","_key":"13744","_from":"10667","_to":"10664"} +{"$label":"ACTS_IN","name":"Thomas Seyr","type":"Role","_key":"13743","_from":"10666","_to":"10664"} +{"$label":"DIRECTED","_key":"13742","_from":"10665","_to":"10664"} +{"$label":"DIRECTED","_key":"42245","_from":"10665","_to":"28283"} +{"$label":"ACTS_IN","name":"Zano","type":"Role","_key":"116394","_from":"10666","_to":"68520"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"101304","_from":"10666","_to":"59644"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"72975","_from":"10666","_to":"43926"} +{"$label":"ACTS_IN","name":"Ars\u00e8ne Lupin","type":"Role","_key":"70518","_from":"10666","_to":"42926"} +{"$label":"ACTS_IN","name":"Yves","type":"Role","_key":"54281","_from":"10666","_to":"34846"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"48765","_from":"10666","_to":"31986"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"35844","_from":"10666","_to":"24333"} +{"$label":"ACTS_IN","name":"Xavier Rousseau","type":"Role","_key":"15778","_from":"10666","_to":"12022"} +{"$label":"ACTS_IN","name":"Nathan DelAmico","type":"Role","_key":"15483","_from":"10666","_to":"11827"} +{"$label":"ACTS_IN","name":"Xavier","type":"Role","_key":"13761","_from":"10666","_to":"10677"} +{"$label":"ACTS_IN","name":"Roussin","type":"Role","_key":"17478","_from":"10667","_to":"13069"} +{"$label":"ACTS_IN","name":"Vigo","type":"Role","_key":"89577","_from":"10668","_to":"53004"} +{"$label":"ACTS_IN","name":"Maximilien Bardo","type":"Role","_key":"35863","_from":"10668","_to":"24351"} +{"$label":"ACTS_IN","name":"Louis Lassalle","type":"Role","_key":"104029","_from":"10669","_to":"61200"} +{"$label":"ACTS_IN","name":"Jean-Luc, der Regisseur","type":"Role","_key":"43016","_from":"10669","_to":"28730"} +{"$label":"ACTS_IN","name":"Elisa","type":"Role","_key":"103285","_from":"10670","_to":"60764"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"23102","_from":"10670","_to":"16748"} +{"$label":"ACTS_IN","name":"Laura (voice)","type":"Role","_key":"107393","_from":"10671","_to":"63342"} +{"$label":"ACTS_IN","name":"La princesse Al Tarouk","type":"Role","_key":"103376","_from":"10671","_to":"60813"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"51572","_from":"10671","_to":"33649"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"43519","_from":"10671","_to":"29066"} +{"$label":"ACTS_IN","name":"La directrice","type":"Role","_key":"117983","_from":"10672","_to":"69347"} +{"$label":"ACTS_IN","name":"Agn\u00e8s Thiriez","type":"Role","_key":"110798","_from":"10672","_to":"65443"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"72979","_from":"10672","_to":"43926"} +{"$label":"ACTS_IN","name":"Emilienne","type":"Role","_key":"68196","_from":"10672","_to":"41883"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"42230","_from":"10672","_to":"28283"} +{"$label":"ACTS_IN","name":"Laurence O'Madden Burke","type":"Role","_key":"33317","_from":"10672","_to":"23080"} +{"$label":"ACTS_IN","name":"Xaviers Vater","type":"Role","_key":"13771","_from":"10687","_to":"10677"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"13770","_from":"10686","_to":"10677"} +{"$label":"ACTS_IN","name":"Xaviers Mutter","type":"Role","_key":"13769","_from":"10685","_to":"10677"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"13768","_from":"10684","_to":"10677"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"13767","_from":"10683","_to":"10677"} +{"$label":"ACTS_IN","name":"Alessandro","type":"Role","_key":"13766","_from":"10682","_to":"10677"} +{"$label":"ACTS_IN","name":"Soledad","type":"Role","_key":"13765","_from":"10681","_to":"10677"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"13764","_from":"10680","_to":"10677"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"13763","_from":"10679","_to":"10677"} +{"$label":"DIRECTED","_key":"13760","_from":"10678","_to":"10677"} +{"$label":"DIRECTED","_key":"101274","_from":"10678","_to":"59634"} +{"$label":"DIRECTED","_key":"72984","_from":"10678","_to":"43928"} +{"$label":"DIRECTED","_key":"72974","_from":"10678","_to":"43926"} +{"$label":"DIRECTED","_key":"72969","_from":"10678","_to":"43923"} +{"$label":"DIRECTED","_key":"48763","_from":"10678","_to":"31986"} +{"$label":"DIRECTED","_key":"15777","_from":"10678","_to":"12022"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"94916","_from":"10679","_to":"55885"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"65683","_from":"10679","_to":"40687"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"63865","_from":"10679","_to":"39907"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"47150","_from":"10679","_to":"31080"} +{"$label":"ACTS_IN","name":"Fiona 'Finn' MacKenzie","type":"Role","_key":"36904","_from":"10679","_to":"25014"} +{"$label":"ACTS_IN","name":"Caroline Bingley","type":"Role","_key":"31085","_from":"10679","_to":"21757"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"15779","_from":"10679","_to":"12022"} +{"$label":"ACTS_IN","name":"Jeannine Deckers \/ Soeur Sourire","type":"Role","_key":"112416","_from":"10680","_to":"66374"} +{"$label":"ACTS_IN","name":"Tania Stirn \/ Grimbert","type":"Role","_key":"96098","_from":"10680","_to":"56486"} +{"$label":"ACTS_IN","name":"Jeanne Schneider","type":"Role","_key":"95605","_from":"10680","_to":"56238"} +{"$label":"ACTS_IN","name":"Kaena (voice: French version)","type":"Role","_key":"70756","_from":"10680","_to":"43031"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"61815","_from":"10680","_to":"38914"} +{"$label":"ACTS_IN","name":"Monique Laroche","type":"Role","_key":"61690","_from":"10680","_to":"38858"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"59967","_from":"10680","_to":"37860"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"15781","_from":"10680","_to":"12022"} +{"$label":"ACTS_IN","name":"Beatriz","type":"Role","_key":"121509","_from":"10681","_to":"71378"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"71140","_from":"10683","_to":"43182"} +{"$label":"ACTS_IN","name":"Jo Hauser","type":"Role","_key":"15048","_from":"10683","_to":"11571"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"119075","_from":"10686","_to":"69983"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"37235","_from":"10686","_to":"25221"} +{"$label":"DIRECTED","_key":"13776","_from":"10693","_to":"10688"} +{"$label":"ACTS_IN","name":"Eddies Mutter","type":"Role","_key":"13775","_from":"10692","_to":"10688"} +{"$label":"ACTS_IN","name":"Gonda","type":"Role","_key":"13774","_from":"10691","_to":"10688"} +{"$label":"ACTS_IN","name":"Leda","type":"Role","_key":"13773","_from":"10690","_to":"10688"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"13772","_from":"10689","_to":"10688"} +{"$label":"ACTS_IN","name":"Mr. Kawai","type":"Role","_key":"26396","_from":"10691","_to":"18962"} +{"$label":"ACTS_IN","name":"Dr. Otani","type":"Role","_key":"25982","_from":"10691","_to":"18678"} +{"$label":"ACTS_IN","name":"Kellner im Zug","type":"Role","_key":"13791","_from":"10703","_to":"10694"} +{"$label":"ACTS_IN","name":"Pepes Freundin","type":"Role","_key":"13790","_from":"10702","_to":"10694"} +{"$label":"ACTS_IN","name":"Computerverk\u00e4ufer","type":"Role","_key":"13789","_from":"10701","_to":"10694"} +{"$label":"ACTS_IN","name":"Seybert","type":"Role","_key":"13787","_from":"10700","_to":"10694"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"13786","_from":"10699","_to":"10694"} +{"$label":"ACTS_IN","name":"Br\u00fcckner","type":"Role","_key":"13784","_from":"10698","_to":"10694"} +{"$label":"ACTS_IN","name":"Lupo","type":"Role","_key":"13781","_from":"10697","_to":"10694"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"13780","_from":"10696","_to":"10694"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"13778","_from":"10695","_to":"10694"} +{"$label":"ACTS_IN","name":"Justus","type":"Role","_key":"91522","_from":"10695","_to":"53951"} +{"$label":"ACTS_IN","name":"Rudolph","type":"Role","_key":"73149","_from":"10695","_to":"43990"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51443","_from":"10695","_to":"33555"} +{"$label":"ACTS_IN","name":"Hanna's Defense Council","type":"Role","_key":"47913","_from":"10695","_to":"31517"} +{"$label":"ACTS_IN","name":"Flo","type":"Role","_key":"26910","_from":"10695","_to":"19351"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"16500","_from":"10695","_to":"12463"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"13792","_from":"10695","_to":"10704"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"55680","_from":"10696","_to":"35440"} +{"$label":"ACTS_IN","name":"C\u00e9sare","type":"Role","_key":"30480","_from":"10696","_to":"21421"} +{"$label":"ACTS_IN","name":"Eckhard K\u00f6nig","type":"Role","_key":"50296","_from":"10697","_to":"32859"} +{"$label":"ACTS_IN","name":"Alfred Zach","type":"Role","_key":"42676","_from":"10697","_to":"28564"} +{"$label":"ACTS_IN","name":"Edmund","type":"Role","_key":"42517","_from":"10697","_to":"28459"} +{"$label":"ACTS_IN","name":"Rolf Sch\u00fctte","type":"Role","_key":"31650","_from":"10697","_to":"22087"} +{"$label":"ACTS_IN","name":"Fido","type":"Role","_key":"27719","_from":"10697","_to":"19859"} +{"$label":"ACTS_IN","name":"Martin Hinrich","type":"Role","_key":"63447","_from":"10698","_to":"39741"} +{"$label":"ACTS_IN","name":"Dr. Kessler","type":"Role","_key":"36346","_from":"10698","_to":"24651"} +{"$label":"ACTS_IN","name":"Dr. Segebrecht","type":"Role","_key":"20241","_from":"10698","_to":"14838"} +{"$label":"ACTS_IN","name":"Muller","type":"Role","_key":"15521","_from":"10698","_to":"11845"} +{"$label":"ACTS_IN","name":"Reschke","type":"Role","_key":"34652","_from":"10701","_to":"23709"} +{"$label":"ACTS_IN","name":"K\u00e4the","type":"Role","_key":"14101","_from":"10702","_to":"10923"} +{"$label":"ACTS_IN","name":"Spark Member","type":"Role","_key":"47747","_from":"10703","_to":"31437"} +{"$label":"DIRECTED","_key":"13805","_from":"10713","_to":"10704"} +{"$label":"ACTS_IN","name":"Professor Mutter","type":"Role","_key":"13804","_from":"10712","_to":"10704"} +{"$label":"ACTS_IN","name":"Onkel Bertram","type":"Role","_key":"13802","_from":"10711","_to":"10704"} +{"$label":"ACTS_IN","name":"R\u00fcdiger","type":"Role","_key":"13801","_from":"10710","_to":"10704"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"13800","_from":"10709","_to":"10704"} +{"$label":"ACTS_IN","name":"Helmuts Vater","type":"Role","_key":"13799","_from":"10708","_to":"10704"} +{"$label":"ACTS_IN","name":"Helmuts Mutter","type":"Role","_key":"13798","_from":"10707","_to":"10704"} +{"$label":"ACTS_IN","name":"Gisela","type":"Role","_key":"13794","_from":"10706","_to":"10704"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"13793","_from":"10705","_to":"10704"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"61730","_from":"10705","_to":"38875"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"50197","_from":"10705","_to":"32809"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"50141","_from":"10705","_to":"32788"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"46315","_from":"10705","_to":"30602"} +{"$label":"ACTS_IN","name":"Irene Goerges","type":"Role","_key":"45439","_from":"10705","_to":"30115"} +{"$label":"ACTS_IN","name":"Mirjana","type":"Role","_key":"33240","_from":"10705","_to":"23025"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"30135","_from":"10705","_to":"21234"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"91663","_from":"10706","_to":"54059"} +{"$label":"ACTS_IN","name":"Charlotte Hoffmann (jung)","type":"Role","_key":"51130","_from":"10706","_to":"33353"} +{"$label":"ACTS_IN","name":"Michaela Rammelow","type":"Role","_key":"47680","_from":"10706","_to":"31413"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"34467","_from":"10706","_to":"23601"} +{"$label":"ACTS_IN","name":"Lilly Walter","type":"Role","_key":"20569","_from":"10706","_to":"15054"} +{"$label":"ACTS_IN","name":"Hans Berger","type":"Role","_key":"43471","_from":"10708","_to":"29036"} +{"$label":"ACTS_IN","name":"Der Geizige","type":"Role","_key":"92589","_from":"10711","_to":"54651"} +{"$label":"ACTS_IN","name":"Alfons Schambeck","type":"Role","_key":"51439","_from":"10711","_to":"33555"} +{"$label":"ACTS_IN","name":"Grundeis","type":"Role","_key":"32484","_from":"10711","_to":"22593"} +{"$label":"ACTS_IN","name":"Rolf Huber","type":"Role","_key":"43258","_from":"10712","_to":"28890"} +{"$label":"ACTS_IN","name":"Jeremiah Muscle","type":"Role","_key":"13813","_from":"10720","_to":"10714"} +{"$label":"ACTS_IN","name":"Mama Communa","type":"Role","_key":"13812","_from":"10719","_to":"10714"} +{"$label":"ACTS_IN","name":"El Macho","type":"Role","_key":"13810","_from":"10718","_to":"10714"} +{"$label":"ACTS_IN","name":"Miss World 1984","type":"Role","_key":"13809","_from":"10717","_to":"10714"} +{"$label":"ACTS_IN","name":"Capt. Anna Planeta","type":"Role","_key":"13808","_from":"10716","_to":"10714"} +{"$label":"DIRECTED","_key":"13806","_from":"10715","_to":"10714"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"72843","_from":"10716","_to":"43875"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71994","_from":"10716","_to":"43537"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"112032","_from":"10717","_to":"66149"} +{"$label":"ACTS_IN","name":"Solange","type":"Role","_key":"30634","_from":"10717","_to":"21513"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"30348","_from":"10717","_to":"21343"} +{"$label":"ACTS_IN","name":"Paul Nuytten","type":"Role","_key":"119792","_from":"10718","_to":"70340"} +{"$label":"ACTS_IN","name":"Akerman","type":"Role","_key":"71008","_from":"10718","_to":"43127"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"65316","_from":"10718","_to":"40531"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"48076","_from":"10718","_to":"31605"} +{"$label":"ACTS_IN","name":"Marquis de G\u00e9ran","type":"Role","_key":"30719","_from":"10718","_to":"21545"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"27140","_from":"10718","_to":"19525"} +{"$label":"ACTS_IN","name":"Singapore Sling","type":"Role","_key":"13817","_from":"10725","_to":"10721"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"13816","_from":"10724","_to":"10721"} +{"$label":"ACTS_IN","name":"Tochter","type":"Role","_key":"13815","_from":"10723","_to":"10721"} +{"$label":"DIRECTED","_key":"13814","_from":"10722","_to":"10721"} +{"$label":"ACTS_IN","name":"Adrienne Forster","type":"Role","_key":"62286","_from":"10724","_to":"39237"} +{"$label":"ACTS_IN","name":"Mathieu\u2019s Frau","type":"Role","_key":"13823","_from":"10732","_to":"10726"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"13822","_from":"10731","_to":"10726"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"13821","_from":"10730","_to":"10726"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"13820","_from":"10729","_to":"10726"} +{"$label":"ACTS_IN","name":"Ars\u00e8ne","type":"Role","_key":"13819","_from":"10728","_to":"10726"} +{"$label":"ACTS_IN","name":"Mouchette","type":"Role","_key":"13818","_from":"10727","_to":"10726"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"13832","_from":"10737","_to":"10733"} +{"$label":"ACTS_IN","name":"General Stone","type":"Role","_key":"13828","_from":"10736","_to":"10733"} +{"$label":"ACTS_IN","name":"Sergeant Doyle","type":"Role","_key":"13826","_from":"10735","_to":"10733"} +{"$label":"DIRECTED","_key":"13825","_from":"10734","_to":"10733"} +{"$label":"DIRECTED","_key":"66314","_from":"10734","_to":"41023"} +{"$label":"ACTS_IN","name":"Gus Maitland","type":"Role","_key":"115128","_from":"10735","_to":"67797"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"97594","_from":"10735","_to":"57466"} +{"$label":"ACTS_IN","name":"Sgt. William James","type":"Role","_key":"88389","_from":"10735","_to":"52392"} +{"$label":"ACTS_IN","name":"Bobby Sharp","type":"Role","_key":"55845","_from":"10735","_to":"35533"} +{"$label":"ACTS_IN","name":"Brian Gamble","type":"Role","_key":"52632","_from":"10735","_to":"34193"} +{"$label":"ACTS_IN","name":"Wood Hite","type":"Role","_key":"32208","_from":"10735","_to":"22448"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"111917","_from":"10736","_to":"66069"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"109500","_from":"10736","_to":"64682"} +{"$label":"ACTS_IN","name":"Augustin","type":"Role","_key":"108968","_from":"10736","_to":"64395"} +{"$label":"ACTS_IN","name":"Quentin \"Junior\" Whitfield","type":"Role","_key":"103696","_from":"10736","_to":"60994"} +{"$label":"ACTS_IN","name":"Mumbles","type":"Role","_key":"96792","_from":"10736","_to":"56924"} +{"$label":"ACTS_IN","name":"Detective Winn","type":"Role","_key":"50257","_from":"10736","_to":"32836"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"14895","_from":"10736","_to":"11449"} +{"$label":"ACTS_IN","name":"Narrator (English version) (voice)","type":"Role","_key":"13841","_from":"10743","_to":"10738"} +{"$label":"ACTS_IN","name":"Narrator (German version) (voice)","type":"Role","_key":"13839","_from":"10742","_to":"10738"} +{"$label":"ACTS_IN","name":"Narrator (Japanese version) (voice)","type":"Role","_key":"13838","_from":"10741","_to":"10738"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"13837","_from":"10740","_to":"10738"} +{"$label":"ACTS_IN","name":"Narrator (French version) (voice)","type":"Role","_key":"13836","_from":"10739","_to":"10738"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"100783","_from":"10740","_to":"59413"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"62424","_from":"10740","_to":"39328"} +{"$label":"ACTS_IN","name":"Princess de Conde","type":"Role","_key":"45817","_from":"10740","_to":"30302"} +{"$label":"ACTS_IN","name":"Mistress","type":"Role","_key":"36983","_from":"10740","_to":"25064"} +{"$label":"ACTS_IN","name":"Clarisse","type":"Role","_key":"24023","_from":"10740","_to":"17418"} +{"$label":"ACTS_IN","name":"Dr. Jackson","type":"Role","_key":"72172","_from":"10742","_to":"43622"} +{"$label":"ACTS_IN","name":"Hilde Hellmann","type":"Role","_key":"38229","_from":"10742","_to":"25818"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"35245","_from":"10743","_to":"24002"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"34383","_from":"10743","_to":"23576"} +{"$label":"ACTS_IN","name":"Mlle Becker","type":"Role","_key":"29965","_from":"10743","_to":"21166"} +{"$label":"ACTS_IN","name":"Solange","type":"Role","_key":"22109","_from":"10743","_to":"16116"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"14851","_from":"10743","_to":"11416"} +{"$label":"ACTS_IN","name":"Stabsweldfebel","type":"Role","_key":"13867","_from":"10768","_to":"10746"} +{"$label":"ACTS_IN","name":"Stabsweldfebel","type":"Role","_key":"13866","_from":"10767","_to":"10746"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"13865","_from":"10766","_to":"10746"} +{"$label":"ACTS_IN","name":"Sigrun","type":"Role","_key":"13863","_from":"10765","_to":"10746"} +{"$label":"ACTS_IN","name":"Horber","type":"Role","_key":"13862","_from":"10764","_to":"10746"} +{"$label":"ACTS_IN","name":"Frau Frost","type":"Role","_key":"13861","_from":"10763","_to":"10746"} +{"$label":"ACTS_IN","name":"Frost","type":"Role","_key":"13860","_from":"10762","_to":"10746"} +{"$label":"ACTS_IN","name":"Mutter Bernhard","type":"Role","_key":"13859","_from":"10761","_to":"10746"} +{"$label":"ACTS_IN","name":"Frau Borchert","type":"Role","_key":"13858","_from":"10760","_to":"10746"} +{"$label":"ACTS_IN","name":"Frau Mutz","type":"Role","_key":"13857","_from":"10759","_to":"10746"} +{"$label":"ACTS_IN","name":"Lieutenant Colonel","type":"Role","_key":"13856","_from":"10758","_to":"10746"} +{"$label":"ACTS_IN","name":"Fr\u00f6hlich","type":"Role","_key":"13855","_from":"10757","_to":"10746"} +{"$label":"ACTS_IN","name":"Heilmann","type":"Role","_key":"13854","_from":"10756","_to":"10746"} +{"$label":"ACTS_IN","name":"Stern","type":"Role","_key":"13853","_from":"10755","_to":"10746"} +{"$label":"ACTS_IN","name":"Sigi Bernhard","type":"Role","_key":"13852","_from":"10754","_to":"10746"} +{"$label":"ACTS_IN","name":"Jurgen Borchert","type":"Role","_key":"13851","_from":"10753","_to":"10746"} +{"$label":"ACTS_IN","name":"Walter Forst","type":"Role","_key":"13850","_from":"10752","_to":"10746"} +{"$label":"ACTS_IN","name":"Albert Mutz","type":"Role","_key":"13849","_from":"10751","_to":"10746"} +{"$label":"ACTS_IN","name":"Karl Horber","type":"Role","_key":"13848","_from":"10750","_to":"10746"} +{"$label":"ACTS_IN","name":"Franziska","type":"Role","_key":"13847","_from":"10749","_to":"10746"} +{"$label":"ACTS_IN","name":"Klaus Hager","type":"Role","_key":"13846","_from":"10748","_to":"10746"} +{"$label":"ACTS_IN","name":"Hans Scholten","type":"Role","_key":"13845","_from":"10747","_to":"10746"} +{"$label":"ACTS_IN","name":"Joseph Kainz","type":"Role","_key":"27341","_from":"10747","_to":"19647"} +{"$label":"DIRECTED","_key":"41086","_from":"10748","_to":"27647"} +{"$label":"ACTS_IN","name":"Sylvia Reimers","type":"Role","_key":"44854","_from":"10749","_to":"29829"} +{"$label":"ACTS_IN","name":"Marianne Hohmann","type":"Role","_key":"30414","_from":"10749","_to":"21382"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"119132","_from":"10751","_to":"70017"} +{"$label":"ACTS_IN","name":"Hubert B\u00f6hm","type":"Role","_key":"88884","_from":"10751","_to":"52663"} +{"$label":"ACTS_IN","name":"Harry Klein","type":"Role","_key":"66828","_from":"10751","_to":"41279"} +{"$label":"ACTS_IN","name":"Fritz Wendel","type":"Role","_key":"65774","_from":"10751","_to":"40710"} +{"$label":"ACTS_IN","name":"Wolfgang Bouc","type":"Role","_key":"41744","_from":"10751","_to":"28008"} +{"$label":"ACTS_IN","name":"Robert Lahnstein","type":"Role","_key":"41182","_from":"10751","_to":"27712"} +{"$label":"ACTS_IN","name":"Hein Jungermann","type":"Role","_key":"39804","_from":"10751","_to":"26893"} +{"$label":"ACTS_IN","name":"Dr. Wallner","type":"Role","_key":"31139","_from":"10751","_to":"21794"} +{"$label":"ACTS_IN","name":"Herr Hagemann","type":"Role","_key":"40066","_from":"10752","_to":"27043"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"37423","_from":"10752","_to":"25358"} +{"$label":"ACTS_IN","name":"Frank Sutton","type":"Role","_key":"14776","_from":"10756","_to":"11363"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"44635","_from":"10758","_to":"29701"} +{"$label":"ACTS_IN","name":"Sir John","type":"Role","_key":"44132","_from":"10758","_to":"29420"} +{"$label":"ACTS_IN","name":"Sir John","type":"Role","_key":"38201","_from":"10758","_to":"25812"} +{"$label":"ACTS_IN","name":"Dr. Bladmore","type":"Role","_key":"38128","_from":"10758","_to":"25779"} +{"$label":"ACTS_IN","name":"Sir Philip","type":"Role","_key":"38113","_from":"10758","_to":"25774"} +{"$label":"ACTS_IN","name":"Sir John","type":"Role","_key":"14821","_from":"10758","_to":"11387"} +{"$label":"ACTS_IN","name":"Sir Fielding","type":"Role","_key":"14779","_from":"10758","_to":"11363"} +{"$label":"ACTS_IN","name":"Frau Hartog","type":"Role","_key":"31324","_from":"10759","_to":"21896"} +{"$label":"ACTS_IN","name":"Dame","type":"Role","_key":"45979","_from":"10760","_to":"30392"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31338","_from":"10761","_to":"21905"} +{"$label":"ACTS_IN","name":"Heinrich Lohse","type":"Role","_key":"33431","_from":"10767","_to":"23140"} +{"$label":"ACTS_IN","name":"Paul Winkelmann","type":"Role","_key":"33173","_from":"10767","_to":"22973"} +{"$label":"DIRECTED","_key":"33430","_from":"10767","_to":"23140"} +{"$label":"DIRECTED","_key":"33172","_from":"10767","_to":"22973"} +{"$label":"ACTS_IN","name":"Mr. Lacy","type":"Role","_key":"38174","_from":"10768","_to":"25798"} +{"$label":"ACTS_IN","name":"directeur d'h\u00f4pital","type":"Role","_key":"13877","_from":"10777","_to":"10769"} +{"$label":"ACTS_IN","name":"Dr. Choukroun","type":"Role","_key":"13876","_from":"10776","_to":"10769"} +{"$label":"ACTS_IN","name":"narrateur","type":"Role","_key":"13875","_from":"10775","_to":"10769"} +{"$label":"ACTS_IN","name":"g\u00e9rant de supermarch\u00e9","type":"Role","_key":"13874","_from":"10774","_to":"10769"} +{"$label":"ACTS_IN","name":"agent immobilier","type":"Role","_key":"13873","_from":"10773","_to":"10769"} +{"$label":"ACTS_IN","name":"sa ma\u00eetresse","type":"Role","_key":"13872","_from":"10772","_to":"10769"} +{"$label":"ACTS_IN","name":"sa belle-m\u00e8re","type":"Role","_key":"13871","_from":"10771","_to":"10769"} +{"$label":"ACTS_IN","name":"sa fille","type":"Role","_key":"13870","_from":"10770","_to":"10769"} +{"$label":"ACTS_IN","name":"sa fille","type":"Role","_key":"13880","_from":"10770","_to":"10778"} +{"$label":"ACTS_IN","name":"sa maitresse","type":"Role","_key":"13881","_from":"10772","_to":"10778"} +{"$label":"ACTS_IN","name":"le infirmi\u00e8re","type":"Role","_key":"13883","_from":"10780","_to":"10778"} +{"$label":"ACTS_IN","name":"maid","type":"Role","_key":"13882","_from":"10779","_to":"10778"} +{"$label":"ACTS_IN","name":"Opfer","type":"Role","_key":"13887","_from":"10784","_to":"10781"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"13886","_from":"10782","_to":"10781"} +{"$label":"DIRECTED","_key":"13885","_from":"10783","_to":"10781"} +{"$label":"DIRECTED","_key":"13884","_from":"10782","_to":"10781"} +{"$label":"ACTS_IN","name":"Rand","type":"Role","_key":"13897","_from":"10791","_to":"10786"} +{"$label":"ACTS_IN","name":"FBI SWAT Team","type":"Role","_key":"13894","_from":"10790","_to":"10786"} +{"$label":"ACTS_IN","name":"Russo","type":"Role","_key":"13893","_from":"10789","_to":"10786"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"13891","_from":"10788","_to":"10786"} +{"$label":"ACTS_IN","name":"Lucy McClane","type":"Role","_key":"13889","_from":"10787","_to":"10786"} +{"$label":"ACTS_IN","name":"Lauryn","type":"Role","_key":"102237","_from":"10787","_to":"60160"} +{"$label":"ACTS_IN","name":"Heather Fitzgerald","type":"Role","_key":"55339","_from":"10787","_to":"35281"} +{"$label":"ACTS_IN","name":"Wendy Christensen","type":"Role","_key":"52862","_from":"10787","_to":"34263"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"17252","_from":"10787","_to":"12920"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"95783","_from":"10788","_to":"56339"} +{"$label":"ACTS_IN","name":"Rob Malcolm","type":"Role","_key":"89951","_from":"10788","_to":"53214"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"89305","_from":"10788","_to":"52867"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"64324","_from":"10788","_to":"40093"} +{"$label":"ACTS_IN","name":"(Det) Drycoff","type":"Role","_key":"55514","_from":"10788","_to":"35364"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"53809","_from":"10788","_to":"34669"} +{"$label":"ACTS_IN","name":"Hollywood Jack","type":"Role","_key":"49533","_from":"10788","_to":"32434"} +{"$label":"ACTS_IN","name":"Hiker","type":"Role","_key":"48025","_from":"10788","_to":"31583"} +{"$label":"ACTS_IN","name":"Pete Moore","type":"Role","_key":"42187","_from":"10788","_to":"28261"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"30289","_from":"10788","_to":"21313"} +{"$label":"ACTS_IN","name":"Eli West","type":"Role","_key":"28076","_from":"10788","_to":"20121"} +{"$label":"ACTS_IN","name":"Brett Artounian","type":"Role","_key":"24339","_from":"10788","_to":"17622"} +{"$label":"ACTS_IN","name":"Agent 47","type":"Role","_key":"14361","_from":"10788","_to":"11114"} +{"$label":"ACTS_IN","name":"Damien","type":"Role","_key":"104071","_from":"10791","_to":"61236"} +{"$label":"ACTS_IN","name":"Capt. Damien Tomaso","type":"Role","_key":"59874","_from":"10791","_to":"37799"} +{"$label":"ACTS_IN","name":"Twin","type":"Role","_key":"18618","_from":"10791","_to":"13776"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"13915","_from":"10801","_to":"10792"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"13914","_from":"10800","_to":"10792"} +{"$label":"ACTS_IN","name":"Dexter","type":"Role","_key":"13913","_from":"10799","_to":"10792"} +{"$label":"ACTS_IN","name":"Officer Jane","type":"Role","_key":"13911","_from":"10798","_to":"10792"} +{"$label":"ACTS_IN","name":"Charles Weiss","type":"Role","_key":"13910","_from":"10797","_to":"10792"} +{"$label":"ACTS_IN","name":"Katya","type":"Role","_key":"13909","_from":"10796","_to":"10792"} +{"$label":"ACTS_IN","name":"Targo","type":"Role","_key":"13908","_from":"10795","_to":"10792"} +{"$label":"ACTS_IN","name":"Ricky Walsh","type":"Role","_key":"13907","_from":"10794","_to":"10792"} +{"$label":"ACTS_IN","name":"Jarvis","type":"Role","_key":"13906","_from":"10793","_to":"10792"} +{"$label":"DIRECTED","_key":"100668","_from":"10793","_to":"59356"} +{"$label":"DIRECTED","_key":"17883","_from":"10793","_to":"13313"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"39199","_from":"10796","_to":"26496"} +{"$label":"ACTS_IN","name":"Harold Speck","type":"Role","_key":"48161","_from":"10797","_to":"31644"} +{"$label":"ACTS_IN","name":"Frank the Bouncer","type":"Role","_key":"29774","_from":"10797","_to":"21072"} +{"$label":"ACTS_IN","name":"Trevor Anderson","type":"Role","_key":"102616","_from":"10800","_to":"60376"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"91380","_from":"10801","_to":"53887"} +{"$label":"ACTS_IN","name":"Rethel the Archer","type":"Role","_key":"16515","_from":"10801","_to":"12471"} +{"$label":"ACTS_IN","name":"Major Grant","type":"Role","_key":"13921","_from":"10804","_to":"10802"} +{"$label":"ACTS_IN","name":"Genera Ramon Esperanza","type":"Role","_key":"13919","_from":"10803","_to":"10802"} +{"$label":"ACTS_IN","name":"Lescovar","type":"Role","_key":"111945","_from":"10803","_to":"66083"} +{"$label":"ACTS_IN","name":"Cole","type":"Role","_key":"111532","_from":"10803","_to":"65847"} +{"$label":"ACTS_IN","name":"Enrico Puzzo","type":"Role","_key":"105269","_from":"10803","_to":"61947"} +{"$label":"ACTS_IN","name":"King Mathias","type":"Role","_key":"103599","_from":"10803","_to":"60931"} +{"$label":"ACTS_IN","name":"Django","type":"Role","_key":"65675","_from":"10803","_to":"40684"} +{"$label":"ACTS_IN","name":"Keoma","type":"Role","_key":"44276","_from":"10803","_to":"29509"} +{"$label":"ACTS_IN","name":"Billion\u00e4r","type":"Role","_key":"43049","_from":"10803","_to":"28745"} +{"$label":"ACTS_IN","name":"Nicola Bellizzi","type":"Role","_key":"34034","_from":"10803","_to":"23407"} +{"$label":"ACTS_IN","name":"Natan","type":"Role","_key":"23131","_from":"10803","_to":"16763"} +{"$label":"ACTS_IN","name":"Gamaliel","type":"Role","_key":"22900","_from":"10803","_to":"16608"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"21844","_from":"10803","_to":"15962"} +{"$label":"ACTS_IN","name":"Aquani","type":"Role","_key":"17733","_from":"10803","_to":"13221"} +{"$label":"ACTS_IN","name":"Jud","type":"Role","_key":"117715","_from":"10804","_to":"69192"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"109242","_from":"10804","_to":"64540"} +{"$label":"ACTS_IN","name":"Captain Meissner","type":"Role","_key":"58758","_from":"10804","_to":"37115"} +{"$label":"ACTS_IN","name":"Cleo McDowell","type":"Role","_key":"54958","_from":"10804","_to":"35132"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"13943","_from":"10816","_to":"10805"} +{"$label":"ACTS_IN","name":"Bailiff","type":"Role","_key":"13942","_from":"10815","_to":"10805"} +{"$label":"ACTS_IN","name":"Hunyak","type":"Role","_key":"13940","_from":"10814","_to":"10805"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"13939","_from":"10813","_to":"10805"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"13938","_from":"10812","_to":"10805"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"13937","_from":"10811","_to":"10805"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"13936","_from":"10810","_to":"10805"} +{"$label":"ACTS_IN","name":"Nickie","type":"Role","_key":"13935","_from":"10809","_to":"10805"} +{"$label":"ACTS_IN","name":"Stage Manager","type":"Role","_key":"13931","_from":"10808","_to":"10805"} +{"$label":"ACTS_IN","name":"Bandleader","type":"Role","_key":"13930","_from":"10807","_to":"10805"} +{"$label":"DIRECTED","_key":"13924","_from":"10806","_to":"10805"} +{"$label":"DIRECTED","_key":"61629","_from":"10806","_to":"38839"} +{"$label":"DIRECTED","_key":"16441","_from":"10806","_to":"12429"} +{"$label":"DIRECTED","_key":"16125","_from":"10806","_to":"12247"} +{"$label":"ACTS_IN","name":"Harper Stewart","type":"Role","_key":"107646","_from":"10807","_to":"63536"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"107608","_from":"10807","_to":"63522"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"94364","_from":"10807","_to":"55568"} +{"$label":"ACTS_IN","name":"Eddie Baker","type":"Role","_key":"69495","_from":"10807","_to":"42456"} +{"$label":"ACTS_IN","name":"Brandt","type":"Role","_key":"46342","_from":"10807","_to":"30618"} +{"$label":"ACTS_IN","name":"Benjamin Coffin III","type":"Role","_key":"15833","_from":"10807","_to":"12045"} +{"$label":"ACTS_IN","name":"Jeffers","type":"Role","_key":"14357","_from":"10807","_to":"11110"} +{"$label":"ACTS_IN","name":"Colleen","type":"Role","_key":"43626","_from":"10811","_to":"29130"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"23451","_from":"10811","_to":"16996"} +{"$label":"ACTS_IN","name":"Walter Bush","type":"Role","_key":"99492","_from":"10816","_to":"58650"} +{"$label":"ACTS_IN","name":"Spence Parks","type":"Role","_key":"13947","_from":"10819","_to":"10818"} +{"$label":"ACTS_IN","name":"Thom Lightstone","type":"Role","_key":"104851","_from":"10819","_to":"61696"} +{"$label":"ACTS_IN","name":"Carl Phipps","type":"Role","_key":"97863","_from":"10819","_to":"57638"} +{"$label":"ACTS_IN","name":"Tom Bertram","type":"Role","_key":"63000","_from":"10819","_to":"39550"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"37498","_from":"10819","_to":"25416"} +{"$label":"ACTS_IN","name":"Clerval","type":"Role","_key":"25441","_from":"10819","_to":"18349"} +{"$label":"DIRECTED","_key":"13956","_from":"10822","_to":"10820"} +{"$label":"ACTS_IN","name":"Terri Morales","type":"Role","_key":"13955","_from":"10821","_to":"10820"} +{"$label":"ACTS_IN","name":"Ramana","type":"Role","_key":"63415","_from":"10821","_to":"39726"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"13963","_from":"10826","_to":"10823"} +{"$label":"ACTS_IN","name":"Lenore","type":"Role","_key":"13962","_from":"10825","_to":"10823"} +{"$label":"ACTS_IN","name":"Tommy Como","type":"Role","_key":"13961","_from":"10824","_to":"10823"} +{"$label":"ACTS_IN","name":"Constantine","type":"Role","_key":"39862","_from":"10824","_to":"26930"} +{"$label":"ACTS_IN","name":"Cortez","type":"Role","_key":"47308","_from":"10825","_to":"31161"} +{"$label":"ACTS_IN","name":"Vicious Holcane","type":"Role","_key":"13994","_from":"10856","_to":"10827"} +{"$label":"ACTS_IN","name":"Speaking Wind","type":"Role","_key":"13993","_from":"10855","_to":"10827"} +{"$label":"ACTS_IN","name":"Buzzard Hook","type":"Role","_key":"13992","_from":"10854","_to":"10827"} +{"$label":"ACTS_IN","name":"Monkey Jaw","type":"Role","_key":"13991","_from":"10853","_to":"10827"} +{"$label":"ACTS_IN","name":"Ten Peccary","type":"Role","_key":"13990","_from":"10852","_to":"10827"} +{"$label":"ACTS_IN","name":"Cut Rock","type":"Role","_key":"13989","_from":"10851","_to":"10827"} +{"$label":"ACTS_IN","name":"Drunkards Four","type":"Role","_key":"13988","_from":"10850","_to":"10827"} +{"$label":"ACTS_IN","name":"Hanging Moss","type":"Role","_key":"13987","_from":"10849","_to":"10827"} +{"$label":"ACTS_IN","name":"First Temple Sacrifice","type":"Role","_key":"13986","_from":"10848","_to":"10827"} +{"$label":"ACTS_IN","name":"Fish Hunter","type":"Role","_key":"13985","_from":"10847","_to":"10827"} +{"$label":"ACTS_IN","name":"Eldest Daughter","type":"Role","_key":"13984","_from":"10846","_to":"10827"} +{"$label":"ACTS_IN","name":"Wife","type":"Role","_key":"13983","_from":"10845","_to":"10827"} +{"$label":"ACTS_IN","name":"Village Girl","type":"Role","_key":"13982","_from":"10844","_to":"10827"} +{"$label":"ACTS_IN","name":"Sky Flower","type":"Role","_key":"13981","_from":"10843","_to":"10827"} +{"$label":"ACTS_IN","name":"Snake Ink","type":"Role","_key":"13980","_from":"10842","_to":"10827"} +{"$label":"ACTS_IN","name":"Middle Eye","type":"Role","_key":"13979","_from":"10841","_to":"10827"} +{"$label":"ACTS_IN","name":"Young Woman","type":"Role","_key":"13978","_from":"10840","_to":"10827"} +{"$label":"ACTS_IN","name":"Old Story Teller","type":"Role","_key":"13977","_from":"10839","_to":"10827"} +{"$label":"ACTS_IN","name":"Cocoa Leaf","type":"Role","_key":"13976","_from":"10838","_to":"10827"} +{"$label":"ACTS_IN","name":"Smoke Frog","type":"Role","_key":"13975","_from":"10837","_to":"10827"} +{"$label":"ACTS_IN","name":"Curl Nose","type":"Role","_key":"13974","_from":"10836","_to":"10827"} +{"$label":"ACTS_IN","name":"Turtles Run","type":"Role","_key":"13973","_from":"10835","_to":"10827"} +{"$label":"ACTS_IN","name":"Zero Wolf","type":"Role","_key":"13972","_from":"10834","_to":"10827"} +{"$label":"ACTS_IN","name":"Flint Sky","type":"Role","_key":"13971","_from":"10833","_to":"10827"} +{"$label":"ACTS_IN","name":"Blunted","type":"Role","_key":"13970","_from":"10832","_to":"10827"} +{"$label":"ACTS_IN","name":"Seven","type":"Role","_key":"13969","_from":"10831","_to":"10827"} +{"$label":"ACTS_IN","name":"Jaguar Paw","type":"Role","_key":"13968","_from":"10830","_to":"10827"} +{"$label":"DIRECTED","_key":"13966","_from":"10829","_to":"10827"} +{"$label":"DIRECTED","_key":"13965","_from":"10828","_to":"10827"} +{"$label":"ACTS_IN","name":"American Horse","type":"Role","_key":"94661","_from":"10833","_to":"55765"} +{"$label":"DIRECTED","_key":"14006","_from":"10864","_to":"10857"} +{"$label":"ACTS_IN","name":"Mr. Kentley","type":"Role","_key":"14005","_from":"10863","_to":"10857"} +{"$label":"ACTS_IN","name":"Janet Walker","type":"Role","_key":"14004","_from":"10862","_to":"10857"} +{"$label":"ACTS_IN","name":"David Kentley","type":"Role","_key":"14003","_from":"10861","_to":"10857"} +{"$label":"ACTS_IN","name":"Mrs. Wilson","type":"Role","_key":"14002","_from":"10860","_to":"10857"} +{"$label":"ACTS_IN","name":"Kenneth Lawrence","type":"Role","_key":"14001","_from":"10859","_to":"10857"} +{"$label":"ACTS_IN","name":"Mrs. Atwater","type":"Role","_key":"14000","_from":"10858","_to":"10857"} +{"$label":"ACTS_IN","name":"Mrs. Shipstead","type":"Role","_key":"26033","_from":"10860","_to":"18705"} +{"$label":"ACTS_IN","name":"General McLaidlaw","type":"Role","_key":"70000","_from":"10863","_to":"42694"} +{"$label":"ACTS_IN","name":"Sethi","type":"Role","_key":"44965","_from":"10863","_to":"29886"} +{"$label":"ACTS_IN","name":"Theotocopulos","type":"Role","_key":"28273","_from":"10863","_to":"20238"} +{"$label":"ACTS_IN","name":"Ludwig Frankenstein","type":"Role","_key":"25476","_from":"10863","_to":"18370"} +{"$label":"ACTS_IN","name":"Sir Francis Cromarty","type":"Role","_key":"24158","_from":"10863","_to":"17503"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"14033","_from":"10884","_to":"10867"} +{"$label":"ACTS_IN","name":"B\u00f6ser Bulle","type":"Role","_key":"14032","_from":"10883","_to":"10867"} +{"$label":"ACTS_IN","name":"Guter Bulle","type":"Role","_key":"14031","_from":"10882","_to":"10867"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"14030","_from":"10881","_to":"10867"} +{"$label":"ACTS_IN","name":"Gesundheitsbeamtin","type":"Role","_key":"14029","_from":"10880","_to":"10867"} +{"$label":"ACTS_IN","name":"Verk\u00e4uferin","type":"Role","_key":"14028","_from":"10879","_to":"10867"} +{"$label":"ACTS_IN","name":"Elena Kollmann","type":"Role","_key":"14027","_from":"10878","_to":"10867"} +{"$label":"ACTS_IN","name":"Dr. Kollmann","type":"Role","_key":"14026","_from":"10877","_to":"10867"} +{"$label":"ACTS_IN","name":"Dopex","type":"Role","_key":"14024","_from":"10876","_to":"10867"} +{"$label":"ACTS_IN","name":"J\u00e4ger","type":"Role","_key":"14023","_from":"10875","_to":"10867"} +{"$label":"ACTS_IN","name":"Vater Becker","type":"Role","_key":"14018","_from":"10874","_to":"10867"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"14017","_from":"10873","_to":"10867"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"14016","_from":"10872","_to":"10867"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"14015","_from":"10871","_to":"10867"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"14013","_from":"10870","_to":"10867"} +{"$label":"DIRECTED","_key":"14012","_from":"10869","_to":"10867"} +{"$label":"DIRECTED","_key":"14011","_from":"10868","_to":"10867"} +{"$label":"DIRECTED","_key":"45915","_from":"10868","_to":"30364"} +{"$label":"DIRECTED","_key":"57529","_from":"10869","_to":"36450"} +{"$label":"ACTS_IN","name":"Tonton","type":"Role","_key":"47987","_from":"10870","_to":"31568"} +{"$label":"ACTS_IN","name":"Christoph","type":"Role","_key":"45916","_from":"10870","_to":"30364"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"42976","_from":"10870","_to":"28710"} +{"$label":"ACTS_IN","name":"Paul Ackermann","type":"Role","_key":"14285","_from":"10870","_to":"11039"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"68540","_from":"10871","_to":"42028"} +{"$label":"ACTS_IN","name":"Angelina","type":"Role","_key":"50160","_from":"10871","_to":"32800"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"43499","_from":"10871","_to":"29052"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"16681","_from":"10871","_to":"12585"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"42260","_from":"10872","_to":"28297"} +{"$label":"ACTS_IN","name":"Josefine","type":"Role","_key":"90316","_from":"10873","_to":"53386"} +{"$label":"ACTS_IN","name":"Paul D\u00f6bbelin","type":"Role","_key":"68516","_from":"10874","_to":"42023"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"43453","_from":"10874","_to":"29031"} +{"$label":"ACTS_IN","name":"Herbert Splitt","type":"Role","_key":"36727","_from":"10874","_to":"24899"} +{"$label":"ACTS_IN","name":"Herr Wagenbach","type":"Role","_key":"36531","_from":"10874","_to":"24772"} +{"$label":"ACTS_IN","name":"Lucia D`Alvarez","type":"Role","_key":"41111","_from":"10878","_to":"27664"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42104","_from":"10880","_to":"28198"} +{"$label":"ACTS_IN","name":"Direktorin","type":"Role","_key":"34660","_from":"10880","_to":"23715"} +{"$label":"ACTS_IN","name":"Schneiderin","type":"Role","_key":"28789","_from":"10880","_to":"20565"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"14045","_from":"10895","_to":"10886"} +{"$label":"ACTS_IN","name":"Little Harry Bailey","type":"Role","_key":"14043","_from":"10894","_to":"10886"} +{"$label":"ACTS_IN","name":"Peter Bailey","type":"Role","_key":"14042","_from":"10893","_to":"10886"} +{"$label":"ACTS_IN","name":"Harry Bailey","type":"Role","_key":"14041","_from":"10892","_to":"10886"} +{"$label":"ACTS_IN","name":"Ernie Bishop","type":"Role","_key":"14040","_from":"10891","_to":"10886"} +{"$label":"ACTS_IN","name":"Ma Bailey","type":"Role","_key":"14039","_from":"10890","_to":"10886"} +{"$label":"ACTS_IN","name":"Clarence","type":"Role","_key":"14038","_from":"10889","_to":"10886"} +{"$label":"ACTS_IN","name":"Henry F. Potter","type":"Role","_key":"14036","_from":"10888","_to":"10886"} +{"$label":"ACTS_IN","name":"Mary Hatch Bailey","type":"Role","_key":"14035","_from":"10887","_to":"10886"} +{"$label":"ACTS_IN","name":"Gladys Hallward","type":"Role","_key":"109524","_from":"10887","_to":"64694"} +{"$label":"ACTS_IN","name":"Molly Ford","type":"Role","_key":"100976","_from":"10887","_to":"59510"} +{"$label":"ACTS_IN","name":"Alma 'Lorene' Burke","type":"Role","_key":"69792","_from":"10887","_to":"42595"} +{"$label":"ACTS_IN","name":"Marcia Bradburn","type":"Role","_key":"28024","_from":"10887","_to":"20091"} +{"$label":"ACTS_IN","name":"Captain Disko Troop","type":"Role","_key":"109369","_from":"10888","_to":"64615"} +{"$label":"ACTS_IN","name":"James Temple","type":"Role","_key":"67307","_from":"10888","_to":"41491"} +{"$label":"ACTS_IN","name":"Dr. Leonard Gillespie","type":"Role","_key":"28022","_from":"10888","_to":"20091"} +{"$label":"ACTS_IN","name":"Dr. Cranley","type":"Role","_key":"65797","_from":"10889","_to":"40720"} +{"$label":"ACTS_IN","name":"Ma Smith","type":"Role","_key":"25586","_from":"10890","_to":"18430"} +{"$label":"ACTS_IN","name":"Judge Thatcher","type":"Role","_key":"114322","_from":"10893","_to":"67337"} +{"$label":"ACTS_IN","name":"Irene Neves","type":"Role","_key":"119058","_from":"10895","_to":"69982"} +{"$label":"ACTS_IN","name":"Laurel Gray","type":"Role","_key":"110987","_from":"10895","_to":"65556"} +{"$label":"ACTS_IN","name":"Fran Ledue Page","type":"Role","_key":"101012","_from":"10895","_to":"59526"} +{"$label":"ACTS_IN","name":"Debby Marsh","type":"Role","_key":"100909","_from":"10895","_to":"59488"} +{"$label":"ACTS_IN","name":"Ado Annie Carnes","type":"Role","_key":"97576","_from":"10895","_to":"57456"} +{"$label":"DIRECTED","_key":"14054","_from":"10898","_to":"10896"} +{"$label":"ACTS_IN","name":"Ken Karsch","type":"Role","_key":"14053","_from":"10897","_to":"10896"} +{"$label":"ACTS_IN","name":"Ford","type":"Role","_key":"115812","_from":"10897","_to":"68174"} +{"$label":"ACTS_IN","name":"Walter Cole","type":"Role","_key":"113257","_from":"10897","_to":"66728"} +{"$label":"ACTS_IN","name":"Sydney Washington","type":"Role","_key":"111661","_from":"10897","_to":"65922"} +{"$label":"ACTS_IN","name":"Fortune","type":"Role","_key":"100675","_from":"10897","_to":"59358"} +{"$label":"ACTS_IN","name":"Maceo","type":"Role","_key":"100135","_from":"10897","_to":"59062"} +{"$label":"ACTS_IN","name":"Alcee","type":"Role","_key":"90638","_from":"10897","_to":"53520"} +{"$label":"ACTS_IN","name":"Detective Hendricks","type":"Role","_key":"62883","_from":"10897","_to":"39507"} +{"$label":"ACTS_IN","name":"Chief Charles Moose","type":"Role","_key":"60797","_from":"10897","_to":"38408"} +{"$label":"ACTS_IN","name":"Charles S. Dutton","type":"Role","_key":"51027","_from":"10897","_to":"33305"} +{"$label":"ACTS_IN","name":"Dillon","type":"Role","_key":"48105","_from":"10897","_to":"31620"} +{"$label":"ACTS_IN","name":"Dr. Douglas Grey","type":"Role","_key":"35220","_from":"10897","_to":"23991"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"35156","_from":"10897","_to":"23957"} +{"$label":"ACTS_IN","name":"Hucy","type":"Role","_key":"18171","_from":"10897","_to":"13485"} +{"$label":"ACTS_IN","name":"Sheriff Ozzie Walls","type":"Role","_key":"14605","_from":"10897","_to":"11252"} +{"$label":"DIRECTED","_key":"51031","_from":"10897","_to":"33305"} +{"$label":"DIRECTED","_key":"91610","_from":"10898","_to":"54001"} +{"$label":"DIRECTED","_key":"70991","_from":"10898","_to":"43121"} +{"$label":"ACTS_IN","name":"Ken Carver","type":"Role","_key":"14063","_from":"10902","_to":"10899"} +{"$label":"ACTS_IN","name":"Amy Grape","type":"Role","_key":"14060","_from":"10901","_to":"10899"} +{"$label":"ACTS_IN","name":"Bonnie Grape","type":"Role","_key":"14058","_from":"10900","_to":"10899"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"58904","_from":"10901","_to":"37199"} +{"$label":"ACTS_IN","name":"Blake Wilson","type":"Role","_key":"70963","_from":"10902","_to":"43104"} +{"$label":"ACTS_IN","name":"Lyman","type":"Role","_key":"62714","_from":"10902","_to":"39429"} +{"$label":"ACTS_IN","name":"John Cortland","type":"Role","_key":"62304","_from":"10902","_to":"39249"} +{"$label":"ACTS_IN","name":"Tilghman","type":"Role","_key":"61156","_from":"10902","_to":"38646"} +{"$label":"ACTS_IN","name":"William Gottschalk","type":"Role","_key":"25825","_from":"10902","_to":"18581"} +{"$label":"DIRECTED","_key":"14071","_from":"10909","_to":"10903"} +{"$label":"ACTS_IN","name":"Whitney","type":"Role","_key":"14070","_from":"10908","_to":"10903"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"14069","_from":"10907","_to":"10903"} +{"$label":"ACTS_IN","name":"Isis","type":"Role","_key":"14068","_from":"10906","_to":"10903"} +{"$label":"ACTS_IN","name":"Cliff Pantone","type":"Role","_key":"14067","_from":"10905","_to":"10903"} +{"$label":"ACTS_IN","name":"Missy Pantone","type":"Role","_key":"14066","_from":"10904","_to":"10903"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"102967","_from":"10904","_to":"60564"} +{"$label":"ACTS_IN","name":"Annabel","type":"Role","_key":"98226","_from":"10904","_to":"57865"} +{"$label":"ACTS_IN","name":"Megan Paige","type":"Role","_key":"97631","_from":"10904","_to":"57491"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"95096","_from":"10904","_to":"55969"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"67093","_from":"10904","_to":"41408"} +{"$label":"ACTS_IN","name":"Jessie Burlingame","type":"Role","_key":"57779","_from":"10904","_to":"36576"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"48206","_from":"10904","_to":"31667"} +{"$label":"ACTS_IN","name":"Sissy","type":"Role","_key":"20134","_from":"10904","_to":"14786"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"119334","_from":"10905","_to":"70120"} +{"$label":"ACTS_IN","name":"Ryan Carmichael","type":"Role","_key":"108876","_from":"10905","_to":"64347"} +{"$label":"ACTS_IN","name":"Zak Gibbs","type":"Role","_key":"102827","_from":"10905","_to":"60486"} +{"$label":"ACTS_IN","name":"Charlie Bellow","type":"Role","_key":"99004","_from":"10905","_to":"58325"} +{"$label":"ACTS_IN","name":"Rod Harper (","type":"Role","_key":"90646","_from":"10905","_to":"53521"} +{"$label":"ACTS_IN","name":"Joey Pardella","type":"Role","_key":"63239","_from":"10905","_to":"39652"} +{"$label":"ACTS_IN","name":"Rene Gagnon","type":"Role","_key":"28496","_from":"10905","_to":"20373"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"109499","_from":"10906","_to":"64682"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"109211","_from":"10906","_to":"64523"} +{"$label":"ACTS_IN","name":"Shawnee","type":"Role","_key":"101566","_from":"10906","_to":"59773"} +{"$label":"ACTS_IN","name":"Geneva Wade","type":"Role","_key":"99517","_from":"10906","_to":"58668"} +{"$label":"ACTS_IN","name":"Nr.3- Kulturoffizierin","type":"Role","_key":"68849","_from":"10906","_to":"42177"} +{"$label":"ACTS_IN","name":"Daria","type":"Role","_key":"64670","_from":"10906","_to":"40281"} +{"$label":"ACTS_IN","name":"Sydney \u201eSyd\u201c Burnett","type":"Role","_key":"51707","_from":"10906","_to":"33743"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"46978","_from":"10906","_to":"30977"} +{"$label":"ACTS_IN","name":"Chastity","type":"Role","_key":"35068","_from":"10906","_to":"23914"} +{"$label":"ACTS_IN","name":"Allison Mitchell","type":"Role","_key":"95198","_from":"10907","_to":"56012"} +{"$label":"ACTS_IN","name":"Taylor Brooks","type":"Role","_key":"64371","_from":"10907","_to":"40118"} +{"$label":"ACTS_IN","name":"Candice","type":"Role","_key":"15645","_from":"10907","_to":"11928"} +{"$label":"DIRECTED","_key":"65249","_from":"10909","_to":"40504"} +{"$label":"DIRECTED","_key":"61666","_from":"10909","_to":"38852"} +{"$label":"DIRECTED","_key":"56484","_from":"10909","_to":"35880"} +{"$label":"DIRECTED","_key":"14080","_from":"10916","_to":"10910"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"14079","_from":"10915","_to":"10910"} +{"$label":"ACTS_IN","name":"Miko","type":"Role","_key":"14078","_from":"10914","_to":"10910"} +{"$label":"ACTS_IN","name":"Maisie","type":"Role","_key":"14076","_from":"10913","_to":"10910"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"14074","_from":"10912","_to":"10910"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"14072","_from":"10911","_to":"10910"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19030","_from":"10911","_to":"14047"} +{"$label":"ACTS_IN","name":"Jerry Lynch","type":"Role","_key":"110607","_from":"10912","_to":"65352"} +{"$label":"ACTS_IN","name":"Mayor Scott Pitcher","type":"Role","_key":"103562","_from":"10912","_to":"60910"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"102481","_from":"10912","_to":"60299"} +{"$label":"ACTS_IN","name":"Dessie Curley","type":"Role","_key":"90911","_from":"10912","_to":"53631"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"72328","_from":"10912","_to":"43683"} +{"$label":"ACTS_IN","name":"Gavin","type":"Role","_key":"71299","_from":"10912","_to":"43254"} +{"$label":"ACTS_IN","name":"Morgan the Goat","type":"Role","_key":"64518","_from":"10912","_to":"40187"} +{"$label":"ACTS_IN","name":"Dr. Lionel Badger","type":"Role","_key":"63495","_from":"10912","_to":"39759"} +{"$label":"ACTS_IN","name":"Jimmy McClure","type":"Role","_key":"59888","_from":"10912","_to":"37818"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"34308","_from":"10912","_to":"23533"} +{"$label":"ACTS_IN","name":"Duncan Malloy","type":"Role","_key":"15079","_from":"10912","_to":"11583"} +{"$label":"DIRECTED","_key":"111612","_from":"10916","_to":"65897"} +{"$label":"DIRECTED","_key":"97566","_from":"10916","_to":"57454"} +{"$label":"DIRECTED","_key":"64845","_from":"10916","_to":"40337"} +{"$label":"DIRECTED","_key":"49377","_from":"10916","_to":"32335"} +{"$label":"DIRECTED","_key":"18290","_from":"10916","_to":"13572"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"14089","_from":"10922","_to":"10917"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"14087","_from":"10921","_to":"10917"} +{"$label":"ACTS_IN","name":"Wenzel Schlemmer","type":"Role","_key":"14086","_from":"10920","_to":"10917"} +{"$label":"ACTS_IN","name":"Mother Canisius","type":"Role","_key":"14085","_from":"10919","_to":"10917"} +{"$label":"DIRECTED","_key":"14081","_from":"10918","_to":"10917"} +{"$label":"ACTS_IN","name":"Witkowska","type":"Role","_key":"116823","_from":"10918","_to":"68774"} +{"$label":"DIRECTED","_key":"68726","_from":"10918","_to":"42113"} +{"$label":"DIRECTED","_key":"51905","_from":"10918","_to":"33854"} +{"$label":"ACTS_IN","name":"Mrs. Austen","type":"Role","_key":"114877","_from":"10919","_to":"67661"} +{"$label":"ACTS_IN","name":"Distinguished Lady","type":"Role","_key":"59585","_from":"10919","_to":"37614"} +{"$label":"ACTS_IN","name":"Margaret Sutton","type":"Role","_key":"20661","_from":"10919","_to":"15095"} +{"$label":"ACTS_IN","name":"Mrs. Watchett","type":"Role","_key":"18570","_from":"10919","_to":"13738"} +{"$label":"ACTS_IN","name":"Mr. Robertson","type":"Role","_key":"97399","_from":"10920","_to":"57355"} +{"$label":"ACTS_IN","name":"Liesel","type":"Role","_key":"14100","_from":"10930","_to":"10923"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"14099","_from":"10929","_to":"10923"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"14098","_from":"10928","_to":"10923"} +{"$label":"ACTS_IN","name":"Regina - klein","type":"Role","_key":"14097","_from":"10927","_to":"10923"} +{"$label":"ACTS_IN","name":"Regina - gro\u00df","type":"Role","_key":"14096","_from":"10926","_to":"10923"} +{"$label":"ACTS_IN","name":"Owuor","type":"Role","_key":"14094","_from":"10925","_to":"10923"} +{"$label":"ACTS_IN","name":"Walter Redlich","type":"Role","_key":"14093","_from":"10924","_to":"10923"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"90340","_from":"10924","_to":"53394"} +{"$label":"ACTS_IN","name":"Alik","type":"Role","_key":"64173","_from":"10924","_to":"40040"} +{"$label":"ACTS_IN","name":"Datho","type":"Role","_key":"42466","_from":"10924","_to":"28438"} +{"$label":"ACTS_IN","name":"Umbopa","type":"Role","_key":"89584","_from":"10925","_to":"53008"} +{"$label":"DIRECTED","_key":"14114","_from":"10933","_to":"10931"} +{"$label":"ACTS_IN","name":"Martinez","type":"Role","_key":"14111","_from":"10932","_to":"10931"} +{"$label":"ACTS_IN","name":"Warden El Fuego","type":"Role","_key":"96088","_from":"10932","_to":"56481"} +{"$label":"ACTS_IN","name":"Warden El Fuego","type":"Role","_key":"61373","_from":"10932","_to":"38724"} +{"$label":"ACTS_IN","name":"Hernan Munez","type":"Role","_key":"56428","_from":"10932","_to":"35852"} +{"$label":"ACTS_IN","name":"Jefe","type":"Role","_key":"49472","_from":"10932","_to":"32393"} +{"$label":"ACTS_IN","name":"Major Maximilliano Casanova","type":"Role","_key":"41690","_from":"10932","_to":"27974"} +{"$label":"ACTS_IN","name":"Principal Garcia","type":"Role","_key":"41482","_from":"10932","_to":"27874"} +{"$label":"DIRECTED","_key":"64343","_from":"10933","_to":"40107"} +{"$label":"DIRECTED","_key":"64061","_from":"10933","_to":"39986"} +{"$label":"DIRECTED","_key":"53706","_from":"10933","_to":"34632"} +{"$label":"DIRECTED","_key":"48200","_from":"10933","_to":"31662"} +{"$label":"DIRECTED","_key":"41940","_from":"10933","_to":"28107"} +{"$label":"ACTS_IN","name":"Sacajawea","type":"Role","_key":"14130","_from":"10943","_to":"10934"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"14128","_from":"10942","_to":"10934"} +{"$label":"ACTS_IN","name":"Christopher Columbus","type":"Role","_key":"14127","_from":"10941","_to":"10934"} +{"$label":"ACTS_IN","name":"Ahkmenrah","type":"Role","_key":"14126","_from":"10940","_to":"10934"} +{"$label":"ACTS_IN","name":"Attila der Hunne","type":"Role","_key":"14125","_from":"10939","_to":"10934"} +{"$label":"ACTS_IN","name":"Erica Daley","type":"Role","_key":"14124","_from":"10938","_to":"10934"} +{"$label":"ACTS_IN","name":"Bambi","type":"Role","_key":"14123","_from":"10937","_to":"10934"} +{"$label":"ACTS_IN","name":"Nick Daley","type":"Role","_key":"14117","_from":"10936","_to":"10934"} +{"$label":"DIRECTED","_key":"14115","_from":"10935","_to":"10934"} +{"$label":"DIRECTED","_key":"115897","_from":"10935","_to":"68230"} +{"$label":"DIRECTED","_key":"89941","_from":"10935","_to":"53213"} +{"$label":"DIRECTED","_key":"87996","_from":"10935","_to":"52246"} +{"$label":"DIRECTED","_key":"87968","_from":"10935","_to":"52234"} +{"$label":"DIRECTED","_key":"72478","_from":"10935","_to":"43733"} +{"$label":"DIRECTED","_key":"67256","_from":"10935","_to":"41460"} +{"$label":"ACTS_IN","name":"Dr. McPhee","type":"Role","_key":"115894","_from":"10937","_to":"68230"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97117","_from":"10937","_to":"57135"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97112","_from":"10937","_to":"57131"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97111","_from":"10937","_to":"57129"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94723","_from":"10937","_to":"55793"} +{"$label":"ACTS_IN","name":"Bertram Pincus","type":"Role","_key":"91591","_from":"10937","_to":"54001"} +{"$label":"DIRECTED","_key":"90264","_from":"10937","_to":"53363"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"60328","_from":"10939","_to":"38046"} +{"$label":"ACTS_IN","name":"Colquitt","type":"Role","_key":"52876","_from":"10939","_to":"34263"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"119157","_from":"10941","_to":"70024"} +{"$label":"ACTS_IN","name":"Filippo","type":"Role","_key":"104577","_from":"10941","_to":"61510"} +{"$label":"ACTS_IN","name":"Libano","type":"Role","_key":"99863","_from":"10941","_to":"58894"} +{"$label":"ACTS_IN","name":"Commander Olivetti","type":"Role","_key":"94510","_from":"10941","_to":"55655"} +{"$label":"ACTS_IN","name":"Peppi Grotta","type":"Role","_key":"89361","_from":"10941","_to":"52887"} +{"$label":"ACTS_IN","name":"Lord Glozell","type":"Role","_key":"21529","_from":"10941","_to":"15744"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"104384","_from":"10942","_to":"61407"} +{"$label":"ACTS_IN","name":"Gusto","type":"Role","_key":"103850","_from":"10942","_to":"61070"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"100726","_from":"10942","_to":"59387"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"14137","_from":"10946","_to":"10944"} +{"$label":"ACTS_IN","name":"Maria Gambrelli","type":"Role","_key":"14133","_from":"10945","_to":"10944"} +{"$label":"ACTS_IN","name":"Professor Anna Vooshka","type":"Role","_key":"119606","_from":"10945","_to":"70257"} +{"$label":"ACTS_IN","name":"Yzma (Dt. Stimme)","type":"Role","_key":"71579","_from":"10945","_to":"43357"} +{"$label":"ACTS_IN","name":"Annie Dillman","type":"Role","_key":"53273","_from":"10945","_to":"34453"} +{"$label":"ACTS_IN","name":"Eva Arnold","type":"Role","_key":"37428","_from":"10945","_to":"25362"} +{"$label":"ACTS_IN","name":"Lisa Reiner","type":"Role","_key":"37413","_from":"10945","_to":"25355"} +{"$label":"ACTS_IN","name":"Irma","type":"Role","_key":"35700","_from":"10945","_to":"24260"} +{"$label":"ACTS_IN","name":"Vera Clyde","type":"Role","_key":"34494","_from":"10945","_to":"23625"} +{"$label":"ACTS_IN","name":"Inger Lisa Andersson","type":"Role","_key":"29456","_from":"10945","_to":"20892"} +{"$label":"ACTS_IN","name":"Linka Karensky","type":"Role","_key":"25282","_from":"10945","_to":"18225"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"24948","_from":"10945","_to":"18024"} +{"$label":"ACTS_IN","name":"Jutta","type":"Role","_key":"19005","_from":"10945","_to":"14038"} +{"$label":"ACTS_IN","name":"Montparnasse","type":"Role","_key":"15322","_from":"10945","_to":"11720"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"14146","_from":"10951","_to":"10947"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"14145","_from":"10950","_to":"10947"} +{"$label":"ACTS_IN","name":"Hassan","type":"Role","_key":"14143","_from":"10949","_to":"10947"} +{"$label":"DIRECTED","_key":"14140","_from":"10948","_to":"10947"} +{"$label":"ACTS_IN","name":"Capt. Reza Lashgar","type":"Role","_key":"91737","_from":"10949","_to":"54114"} +{"$label":"ACTS_IN","name":"Uncle Iroh","type":"Role","_key":"61624","_from":"10949","_to":"38834"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"52597","_from":"10949","_to":"34175"} +{"$label":"ACTS_IN","name":"Rahim Kahn","type":"Role","_key":"47617","_from":"10949","_to":"31376"} +{"$label":"ACTS_IN","name":"Joachim","type":"Role","_key":"21443","_from":"10949","_to":"15682"} +{"$label":"ACTS_IN","name":"Yinsin","type":"Role","_key":"15281","_from":"10949","_to":"11696"} +{"$label":"ACTS_IN","name":"Farhad","type":"Role","_key":"14540","_from":"10949","_to":"11201"} +{"$label":"ACTS_IN","name":"Bo Williams","type":"Role","_key":"64889","_from":"10951","_to":"40352"} +{"$label":"ACTS_IN","name":"S.S. Agent Richard Gill","type":"Role","_key":"63246","_from":"10951","_to":"39652"} +{"$label":"ACTS_IN","name":"Detective Thibodeaux","type":"Role","_key":"60206","_from":"10951","_to":"37980"} +{"$label":"ACTS_IN","name":"Kathy Most","type":"Role","_key":"14152","_from":"10957","_to":"10952"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"14151","_from":"10956","_to":"10952"} +{"$label":"ACTS_IN","name":"Wyle","type":"Role","_key":"14150","_from":"10955","_to":"10952"} +{"$label":"ACTS_IN","name":"Obie Spark","type":"Role","_key":"14149","_from":"10954","_to":"10952"} +{"$label":"DIRECTED","_key":"14148","_from":"10953","_to":"10952"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53627","_from":"10956","_to":"34590"} +{"$label":"ACTS_IN","name":"Realtor Woman","type":"Role","_key":"97064","_from":"10957","_to":"57091"} +{"$label":"ACTS_IN","name":"Linda Banks","type":"Role","_key":"14163","_from":"10962","_to":"10958"} +{"$label":"ACTS_IN","name":"Dr. Bob Banks","type":"Role","_key":"14162","_from":"10961","_to":"10958"} +{"$label":"ACTS_IN","name":"Denny Byrnes","type":"Role","_key":"14160","_from":"10960","_to":"10958"} +{"$label":"ACTS_IN","name":"Deborah Byrnes","type":"Role","_key":"14159","_from":"10959","_to":"10958"} +{"$label":"ACTS_IN","name":"Billy Parks","type":"Role","_key":"106715","_from":"10960","_to":"62890"} +{"$label":"ACTS_IN","name":"Jimmy DeSnappio","type":"Role","_key":"101119","_from":"10960","_to":"59581"} +{"$label":"ACTS_IN","name":"Pockets","type":"Role","_key":"98873","_from":"10960","_to":"58263"} +{"$label":"ACTS_IN","name":"Dalton Chapman","type":"Role","_key":"60166","_from":"10960","_to":"37960"} +{"$label":"ACTS_IN","name":"Bobby Prinze","type":"Role","_key":"30437","_from":"10960","_to":"21394"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"23835","_from":"10960","_to":"17282"} +{"$label":"ACTS_IN","name":"Morris","type":"Role","_key":"20335","_from":"10960","_to":"14890"} +{"$label":"ACTS_IN","name":"William Messerman (Older)","type":"Role","_key":"115334","_from":"10961","_to":"67904"} +{"$label":"ACTS_IN","name":"Dr. Gordon Silberman","type":"Role","_key":"98816","_from":"10961","_to":"58224"} +{"$label":"ACTS_IN","name":"Palmer Williams","type":"Role","_key":"26773","_from":"10961","_to":"19236"} +{"$label":"DIRECTED","_key":"89720","_from":"10961","_to":"53110"} +{"$label":"DIRECTED","_key":"17867","_from":"10961","_to":"13303"} +{"$label":"ACTS_IN","name":"Graciella","type":"Role","_key":"14174","_from":"10965","_to":"10963"} +{"$label":"ACTS_IN","name":"Tom Broadbent","type":"Role","_key":"14173","_from":"10964","_to":"10963"} +{"$label":"ACTS_IN","name":"President Ulysses S. Grant","type":"Role","_key":"94654","_from":"10964","_to":"55765"} +{"$label":"ACTS_IN","name":"White House Chief of Staff Harry Sargent","type":"Role","_key":"53519","_from":"10964","_to":"34555"} +{"$label":"ACTS_IN","name":"Big John","type":"Role","_key":"18482","_from":"10964","_to":"13689"} +{"$label":"ACTS_IN","name":"Stockmann","type":"Role","_key":"17758","_from":"10964","_to":"13247"} +{"$label":"DIRECTED","_key":"14190","_from":"10972","_to":"10966"} +{"$label":"ACTS_IN","name":"Bret","type":"Role","_key":"14187","_from":"10971","_to":"10966"} +{"$label":"ACTS_IN","name":"Cricket","type":"Role","_key":"14186","_from":"10970","_to":"10966"} +{"$label":"ACTS_IN","name":"Darlene","type":"Role","_key":"14183","_from":"10969","_to":"10966"} +{"$label":"ACTS_IN","name":"Caterine Vauban","type":"Role","_key":"14182","_from":"10968","_to":"10966"} +{"$label":"ACTS_IN","name":"Albert Markovski","type":"Role","_key":"14176","_from":"10967","_to":"10966"} +{"$label":"ACTS_IN","name":"Ross","type":"Role","_key":"87924","_from":"10967","_to":"52214"} +{"$label":"ACTS_IN","name":"Max Fischer","type":"Role","_key":"70546","_from":"10967","_to":"42932"} +{"$label":"ACTS_IN","name":"Ash (voice)","type":"Role","_key":"62555","_from":"10967","_to":"39370"} +{"$label":"ACTS_IN","name":"Ritchie","type":"Role","_key":"56012","_from":"10967","_to":"35606"} +{"$label":"ACTS_IN","name":"Milton","type":"Role","_key":"52964","_from":"10967","_to":"34311"} +{"$label":"ACTS_IN","name":"Jack Whitman","type":"Role","_key":"43370","_from":"10967","_to":"28978"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"32435","_from":"10967","_to":"22567"} +{"$label":"ACTS_IN","name":"Jeremy Kraft","type":"Role","_key":"22177","_from":"10967","_to":"16167"} +{"$label":"ACTS_IN","name":"Louis XVI","type":"Role","_key":"16281","_from":"10967","_to":"12347"} +{"$label":"ACTS_IN","name":"Jeanne Charmant-Killman","type":"Role","_key":"91190","_from":"10968","_to":"53783"} +{"$label":"ACTS_IN","name":"Pascale","type":"Role","_key":"88343","_from":"10968","_to":"52382"} +{"$label":"ACTS_IN","name":"Ella Watson","type":"Role","_key":"66843","_from":"10968","_to":"41285"} +{"$label":"ACTS_IN","name":"Mika","type":"Role","_key":"62489","_from":"10968","_to":"39356"} +{"$label":"ACTS_IN","name":"Brigitte Colin","type":"Role","_key":"38009","_from":"10968","_to":"25724"} +{"$label":"ACTS_IN","name":"\u00c9dith Weber","type":"Role","_key":"30666","_from":"10968","_to":"21526"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"29476","_from":"10968","_to":"20898"} +{"$label":"ACTS_IN","name":"Marite","type":"Role","_key":"27142","_from":"10968","_to":"19525"} +{"$label":"ACTS_IN","name":"Violette Nozi\u00e8re","type":"Role","_key":"23725","_from":"10968","_to":"17206"} +{"$label":"ACTS_IN","name":"Emma Bovary","type":"Role","_key":"21904","_from":"10968","_to":"16003"} +{"$label":"ACTS_IN","name":"La secr\u00e9taire","type":"Role","_key":"17923","_from":"10968","_to":"13327"} +{"$label":"ACTS_IN","name":"Augustine","type":"Role","_key":"16976","_from":"10968","_to":"12738"} +{"$label":"ACTS_IN","name":"Helene Nikolaos","type":"Role","_key":"16846","_from":"10968","_to":"12677"} +{"$label":"ACTS_IN","name":"Martine Demouthy","type":"Role","_key":"16772","_from":"10968","_to":"12643"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"15591","_from":"10968","_to":"11896"} +{"$label":"ACTS_IN","name":"Erika Kohut","type":"Role","_key":"15556","_from":"10968","_to":"11877"} +{"$label":"ACTS_IN","name":"Yuppie Wife","type":"Role","_key":"47015","_from":"10969","_to":"30989"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"106413","_from":"10971","_to":"62695"} +{"$label":"ACTS_IN","name":"Cooker","type":"Role","_key":"99139","_from":"10971","_to":"58416"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"92312","_from":"10971","_to":"54473"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"90261","_from":"10971","_to":"53363"} +{"$label":"ACTS_IN","name":"Snotlout","type":"Role","_key":"61574","_from":"10971","_to":"38816"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"57754","_from":"10971","_to":"36554"} +{"$label":"ACTS_IN","name":"Matthew the Waiter","type":"Role","_key":"57499","_from":"10971","_to":"36436"} +{"$label":"ACTS_IN","name":"Sherman Schrader","type":"Role","_key":"56802","_from":"10971","_to":"36070"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"49313","_from":"10971","_to":"32290"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"35180","_from":"10971","_to":"23973"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"22768","_from":"10971","_to":"16511"} +{"$label":"ACTS_IN","name":"Packy","type":"Role","_key":"20608","_from":"10971","_to":"15077"} +{"$label":"DIRECTED","_key":"113299","_from":"10972","_to":"66746"} +{"$label":"DIRECTED","_key":"43352","_from":"10972","_to":"28963"} +{"$label":"DIRECTED","_key":"18025","_from":"10972","_to":"13403"} +{"$label":"ACTS_IN","name":"L'homme au manteau gris","type":"Role","_key":"14211","_from":"10990","_to":"10973"} +{"$label":"ACTS_IN","name":"La femme au chapeau","type":"Role","_key":"14210","_from":"10989","_to":"10973"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"14209","_from":"10988","_to":"10973"} +{"$label":"ACTS_IN","name":"La r\u00e9ceptionniste","type":"Role","_key":"14208","_from":"10987","_to":"10973"} +{"$label":"ACTS_IN","name":"Le prof","type":"Role","_key":"14207","_from":"10986","_to":"10973"} +{"$label":"ACTS_IN","name":"Le cheminot","type":"Role","_key":"14206","_from":"10985","_to":"10973"} +{"$label":"ACTS_IN","name":"Le facteur","type":"Role","_key":"14205","_from":"10984","_to":"10973"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"14204","_from":"10983","_to":"10973"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"14203","_from":"10982","_to":"10973"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de V\u00e9ronique","type":"Role","_key":"14202","_from":"10981","_to":"10973"} +{"$label":"ACTS_IN","name":"Le professeur","type":"Role","_key":"14201","_from":"10980","_to":"10973"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"14200","_from":"10979","_to":"10973"} +{"$label":"ACTS_IN","name":"L'avocat","type":"Role","_key":"14199","_from":"10978","_to":"10973"} +{"$label":"ACTS_IN","name":"Antek","type":"Role","_key":"14198","_from":"10977","_to":"10973"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de Weronika","type":"Role","_key":"14197","_from":"10976","_to":"10973"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"14194","_from":"10975","_to":"10973"} +{"$label":"ACTS_IN","name":"La Tante","type":"Role","_key":"14192","_from":"10974","_to":"10973"} +{"$label":"ACTS_IN","name":"Pyrnikowa","type":"Role","_key":"27809","_from":"10974","_to":"19930"} +{"$label":"ACTS_IN","name":"Jules Martin","type":"Role","_key":"20878","_from":"10975","_to":"15276"} +{"$label":"ACTS_IN","name":"Game Master","type":"Role","_key":"66442","_from":"10976","_to":"41077"} +{"$label":"ACTS_IN","name":"Wladek","type":"Role","_key":"50806","_from":"10976","_to":"33152"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"66443","_from":"10977","_to":"41077"} +{"$label":"ACTS_IN","name":"Le comptable","type":"Role","_key":"100097","_from":"10983","_to":"59039"} +{"$label":"ACTS_IN","name":"Oenologue","type":"Role","_key":"56075","_from":"10983","_to":"35624"} +{"$label":"ACTS_IN","name":"Yves Fontaine","type":"Role","_key":"17337","_from":"10983","_to":"12966"} +{"$label":"ACTS_IN","name":"L'imam","type":"Role","_key":"103383","_from":"10985","_to":"60813"} +{"$label":"ACTS_IN","name":"B\u00e9n\u00e9dicte","type":"Role","_key":"23883","_from":"10987","_to":"17312"} +{"$label":"DIRECTED","_key":"14247","_from":"11022","_to":"10992"} +{"$label":"DIRECTED","_key":"14246","_from":"11021","_to":"10992"} +{"$label":"DIRECTED","_key":"14245","_from":"11020","_to":"10992"} +{"$label":"DIRECTED","_key":"14244","_from":"11019","_to":"10992"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"14243","_from":"11018","_to":"10992"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"14241","_from":"11017","_to":"10992"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"14239","_from":"11016","_to":"10992"} +{"$label":"ACTS_IN","name":"A.J.","type":"Role","_key":"14238","_from":"11015","_to":"10992"} +{"$label":"ACTS_IN","name":"Red Beard","type":"Role","_key":"14237","_from":"11014","_to":"10992"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"14236","_from":"11013","_to":"10992"} +{"$label":"ACTS_IN","name":"Louie Dumps","type":"Role","_key":"14235","_from":"11012","_to":"10992"} +{"$label":"ACTS_IN","name":"Detective Vella","type":"Role","_key":"14234","_from":"11011","_to":"10992"} +{"$label":"ACTS_IN","name":"Detective Belsik","type":"Role","_key":"14233","_from":"11010","_to":"10992"} +{"$label":"ACTS_IN","name":"Crazy Mario (Age 9)","type":"Role","_key":"14232","_from":"11009","_to":"10992"} +{"$label":"ACTS_IN","name":"Slick (Age 9)","type":"Role","_key":"14231","_from":"11008","_to":"10992"} +{"$label":"ACTS_IN","name":"Ralphie (Age 17)","type":"Role","_key":"14230","_from":"11007","_to":"10992"} +{"$label":"ACTS_IN","name":"Crazy Mario (Age 17)","type":"Role","_key":"14229","_from":"11006","_to":"10992"} +{"$label":"ACTS_IN","name":"Aldo (Age 17)","type":"Role","_key":"14228","_from":"11005","_to":"10992"} +{"$label":"ACTS_IN","name":"Slick (Age 17)","type":"Role","_key":"14227","_from":"11004","_to":"10992"} +{"$label":"ACTS_IN","name":"Frankie Coffeecake","type":"Role","_key":"14226","_from":"11003","_to":"10992"} +{"$label":"ACTS_IN","name":"JoJo \"The Whale\"","type":"Role","_key":"14225","_from":"11002","_to":"10992"} +{"$label":"ACTS_IN","name":"Eddie Mush","type":"Role","_key":"14224","_from":"11001","_to":"10992"} +{"$label":"ACTS_IN","name":"Tony Toupee","type":"Role","_key":"14223","_from":"11000","_to":"10992"} +{"$label":"ACTS_IN","name":"Danny K.O.","type":"Role","_key":"14221","_from":"10999","_to":"10992"} +{"$label":"ACTS_IN","name":"Bobby Bars","type":"Role","_key":"14220","_from":"10998","_to":"10992"} +{"$label":"ACTS_IN","name":"Jimmy Whispers","type":"Role","_key":"14219","_from":"10997","_to":"10992"} +{"$label":"ACTS_IN","name":"Rosina Anello","type":"Role","_key":"14218","_from":"10996","_to":"10992"} +{"$label":"ACTS_IN","name":"Jane Williams","type":"Role","_key":"14217","_from":"10995","_to":"10992"} +{"$label":"ACTS_IN","name":"Calogero \"C\" Anello (Age 9)","type":"Role","_key":"14216","_from":"10994","_to":"10992"} +{"$label":"ACTS_IN","name":"Calogero \"C\" Anello (Age 17)","type":"Role","_key":"14215","_from":"10993","_to":"10992"} +{"$label":"ACTS_IN","name":"Soldat Donnie Benitez","type":"Role","_key":"72418","_from":"10993","_to":"43716"} +{"$label":"ACTS_IN","name":"Maxwell 'Max' Connor","type":"Role","_key":"70324","_from":"10994","_to":"42848"} +{"$label":"ACTS_IN","name":"Kisha","type":"Role","_key":"91859","_from":"10995","_to":"54195"} +{"$label":"ACTS_IN","name":"Carlo Mascarpone","type":"Role","_key":"58405","_from":"10999","_to":"36916"} +{"$label":"ACTS_IN","name":"Un colonel allemand","type":"Role","_key":"48911","_from":"11002","_to":"32047"} +{"$label":"ACTS_IN","name":"Edwards","type":"Role","_key":"50741","_from":"11009","_to":"33114"} +{"$label":"ACTS_IN","name":"Harry Hume","type":"Role","_key":"36960","_from":"11009","_to":"25052"} +{"$label":"ACTS_IN","name":"Gomez","type":"Role","_key":"22713","_from":"11009","_to":"16474"} +{"$label":"DIRECTED","_key":"14253","_from":"11025","_to":"11023"} +{"$label":"ACTS_IN","name":"Russell Muir","type":"Role","_key":"14251","_from":"11024","_to":"11023"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"20623","_from":"11024","_to":"15083"} +{"$label":"DIRECTED","_key":"14263","_from":"11034","_to":"11026"} +{"$label":"ACTS_IN","name":"'Gorgeous' Gordon Burley","type":"Role","_key":"14261","_from":"11033","_to":"11026"} +{"$label":"ACTS_IN","name":"Psycho","type":"Role","_key":"14260","_from":"11032","_to":"11026"} +{"$label":"ACTS_IN","name":"Walkway Kid","type":"Role","_key":"14259","_from":"11031","_to":"11026"} +{"$label":"ACTS_IN","name":"Johnny Two Dogs","type":"Role","_key":"14258","_from":"11030","_to":"11026"} +{"$label":"ACTS_IN","name":"Donna Grimble","type":"Role","_key":"14256","_from":"11029","_to":"11026"} +{"$label":"ACTS_IN","name":"Alice Brewer","type":"Role","_key":"14255","_from":"11028","_to":"11026"} +{"$label":"ACTS_IN","name":"Jimmy Grimble","type":"Role","_key":"14254","_from":"11027","_to":"11026"} +{"$label":"ACTS_IN","name":"Judy Molloy","type":"Role","_key":"121281","_from":"11029","_to":"71254"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"116652","_from":"11029","_to":"68665"} +{"$label":"ACTS_IN","name":"Susan's Mother","type":"Role","_key":"102992","_from":"11029","_to":"60579"} +{"$label":"ACTS_IN","name":"Joanne Campbell \/ Queen of Light \/ Queen of Shadows","type":"Role","_key":"100611","_from":"11029","_to":"59326"} +{"$label":"ACTS_IN","name":"Marion Nell","type":"Role","_key":"91144","_from":"11029","_to":"53767"} +{"$label":"ACTS_IN","name":"Mr. Johnathon","type":"Role","_key":"98247","_from":"11030","_to":"57878"} +{"$label":"ACTS_IN","name":"Soren","type":"Role","_key":"68107","_from":"11030","_to":"41834"} +{"$label":"ACTS_IN","name":"Bough, English's Sidekick","type":"Role","_key":"54174","_from":"11030","_to":"34805"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"18142","_from":"11030","_to":"13461"} +{"$label":"DIRECTED","_key":"102537","_from":"11034","_to":"60324"} +{"$label":"ACTS_IN","name":"junger Paul Ashworth","type":"Role","_key":"14267","_from":"11038","_to":"11035"} +{"$label":"ACTS_IN","name":"Sarah Hughes","type":"Role","_key":"14266","_from":"11037","_to":"11035"} +{"$label":"DIRECTED","_key":"14264","_from":"11036","_to":"11035"} +{"$label":"ACTS_IN","name":"Herbert Zimmermann","type":"Role","_key":"14284","_from":"11054","_to":"11039"} +{"$label":"ACTS_IN","name":"Max Morlock","type":"Role","_key":"14283","_from":"11053","_to":"11039"} +{"$label":"ACTS_IN","name":"Werner Liebrich","type":"Role","_key":"14282","_from":"11052","_to":"11039"} +{"$label":"ACTS_IN","name":"Werner Kohlmeyer","type":"Role","_key":"14281","_from":"11051","_to":"11039"} +{"$label":"ACTS_IN","name":"Hans Sch\u00e4fer","type":"Role","_key":"14280","_from":"11050","_to":"11039"} +{"$label":"ACTS_IN","name":"Toni Turek","type":"Role","_key":"14279","_from":"11049","_to":"11039"} +{"$label":"ACTS_IN","name":"Ottmar Walter","type":"Role","_key":"14278","_from":"11048","_to":"11039"} +{"$label":"ACTS_IN","name":"Horst Eckel","type":"Role","_key":"14277","_from":"11047","_to":"11039"} +{"$label":"ACTS_IN","name":"Fritz Walter","type":"Role","_key":"14276","_from":"11046","_to":"11039"} +{"$label":"ACTS_IN","name":"Helmut Rahn","type":"Role","_key":"14275","_from":"11045","_to":"11039"} +{"$label":"ACTS_IN","name":"Annette Ackermann","type":"Role","_key":"14273","_from":"11044","_to":"11039"} +{"$label":"ACTS_IN","name":"Ingrid Lubanski","type":"Role","_key":"14272","_from":"11043","_to":"11039"} +{"$label":"ACTS_IN","name":"Bruno Lubanski","type":"Role","_key":"14271","_from":"11042","_to":"11039"} +{"$label":"ACTS_IN","name":"Christa Lubanski","type":"Role","_key":"14270","_from":"11041","_to":"11039"} +{"$label":"ACTS_IN","name":"Matthias Lubanski","type":"Role","_key":"14268","_from":"11040","_to":"11039"} +{"$label":"ACTS_IN","name":"Waltraud Schwarz-Ebershagen","type":"Role","_key":"108768","_from":"11041","_to":"64295"} +{"$label":"ACTS_IN","name":"Abels Mutter","type":"Role","_key":"57535","_from":"11041","_to":"36450"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"48364","_from":"11041","_to":"31748"} +{"$label":"ACTS_IN","name":"Else Gebel","type":"Role","_key":"18459","_from":"11041","_to":"13678"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"70023","_from":"11042","_to":"42701"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"69076","_from":"11042","_to":"42272"} +{"$label":"ACTS_IN","name":"Vera Wegener","type":"Role","_key":"36342","_from":"11044","_to":"24651"} +{"$label":"ACTS_IN","name":"Bruno Meindorf","type":"Role","_key":"41642","_from":"11045","_to":"27948"} +{"$label":"ACTS_IN","name":"Wick","type":"Role","_key":"97515","_from":"11048","_to":"57421"} +{"$label":"ACTS_IN","name":"Viktor Lante","type":"Role","_key":"44361","_from":"11048","_to":"29557"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"36526","_from":"11048","_to":"24772"} +{"$label":"DIRECTED","_key":"14321","_from":"11085","_to":"11055"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"14320","_from":"11084","_to":"11055"} +{"$label":"ACTS_IN","name":"Hooligan","type":"Role","_key":"14319","_from":"11083","_to":"11055"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"14318","_from":"11082","_to":"11055"} +{"$label":"ACTS_IN","name":"Spielerbeobachter","type":"Role","_key":"14317","_from":"11081","_to":"11055"} +{"$label":"ACTS_IN","name":"Sportreporter","type":"Role","_key":"14316","_from":"11080","_to":"11055"} +{"$label":"ACTS_IN","name":"Sportreporter","type":"Role","_key":"14315","_from":"11079","_to":"11055"} +{"$label":"ACTS_IN","name":"Mannschaftsbetreuer Schalke 04","type":"Role","_key":"14314","_from":"11078","_to":"11055"} +{"$label":"ACTS_IN","name":"Spieler Schalke 04","type":"Role","_key":"14313","_from":"11077","_to":"11055"} +{"$label":"ACTS_IN","name":"Trainer Schalke 04","type":"Role","_key":"14312","_from":"11076","_to":"11055"} +{"$label":"ACTS_IN","name":"Manager Schalke 04","type":"Role","_key":"14311","_from":"11075","_to":"11055"} +{"$label":"ACTS_IN","name":"Paola Pollack","type":"Role","_key":"14310","_from":"11074","_to":"11055"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"14309","_from":"11073","_to":"11055"} +{"$label":"ACTS_IN","name":"Banker","type":"Role","_key":"14308","_from":"11072","_to":"11055"} +{"$label":"ACTS_IN","name":"Polizeibeamter","type":"Role","_key":"14307","_from":"11071","_to":"11055"} +{"$label":"ACTS_IN","name":"Polizeibeamter","type":"Role","_key":"14306","_from":"11070","_to":"11055"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"14305","_from":"11069","_to":"11055"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"14304","_from":"11068","_to":"11055"} +{"$label":"ACTS_IN","name":"Versicherungsvertreter","type":"Role","_key":"14303","_from":"11067","_to":"11055"} +{"$label":"ACTS_IN","name":"Ariane","type":"Role","_key":"14302","_from":"11066","_to":"11055"} +{"$label":"ACTS_IN","name":"Buchmacher","type":"Role","_key":"14301","_from":"11065","_to":"11055"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"14300","_from":"11064","_to":"11055"} +{"$label":"ACTS_IN","name":"D\u00f6rte","type":"Role","_key":"14299","_from":"11063","_to":"11055"} +{"$label":"ACTS_IN","name":"Ulf","type":"Role","_key":"14298","_from":"11062","_to":"11055"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"14297","_from":"11061","_to":"11055"} +{"$label":"ACTS_IN","name":"R\u00fcdiger Hillbrecht","type":"Role","_key":"14296","_from":"11060","_to":"11055"} +{"$label":"ACTS_IN","name":"Hilde Pollak","type":"Role","_key":"14294","_from":"11059","_to":"11055"} +{"$label":"ACTS_IN","name":"Oma K\u00e4the","type":"Role","_key":"14292","_from":"11058","_to":"11055"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"14291","_from":"11057","_to":"11055"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"14290","_from":"11056","_to":"11055"} +{"$label":"ACTS_IN","name":"Linseisen","type":"Role","_key":"68869","_from":"11056","_to":"42184"} +{"$label":"ACTS_IN","name":"Gerhard Bartsch","type":"Role","_key":"31268","_from":"11056","_to":"21872"} +{"$label":"ACTS_IN","name":"David Wagner","type":"Role","_key":"68372","_from":"11057","_to":"41957"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"37261","_from":"11057","_to":"25242"} +{"$label":"ACTS_IN","name":"Marion Br\u00fcckner","type":"Role","_key":"42993","_from":"11059","_to":"28721"} +{"$label":"ACTS_IN","name":"Regine Reimer","type":"Role","_key":"42687","_from":"11059","_to":"28571"} +{"$label":"ACTS_IN","name":"Brigitte Wismuth","type":"Role","_key":"32097","_from":"11059","_to":"22365"} +{"$label":"ACTS_IN","name":"Kriminalgruppenleiter Hackenbroich","type":"Role","_key":"41985","_from":"11061","_to":"28132"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"67620","_from":"11063","_to":"41614"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27660","_from":"11063","_to":"19817"} +{"$label":"ACTS_IN","name":"Zou","type":"Role","_key":"107004","_from":"11064","_to":"63083"} +{"$label":"DIRECTED","_key":"63809","_from":"11085","_to":"39895"} +{"$label":"ACTS_IN","name":"Leopold Durant","type":"Role","_key":"14328","_from":"11089","_to":"11086"} +{"$label":"ACTS_IN","name":"Frederick","type":"Role","_key":"14327","_from":"11088","_to":"11086"} +{"$label":"ACTS_IN","name":"L.A. Highway Patrol","type":"Role","_key":"14324","_from":"11087","_to":"11086"} +{"$label":"ACTS_IN","name":"Al Shaw","type":"Role","_key":"31499","_from":"11087","_to":"21998"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"96080","_from":"11088","_to":"56476"} +{"$label":"ACTS_IN","name":"Horse","type":"Role","_key":"53788","_from":"11088","_to":"34661"} +{"$label":"ACTS_IN","name":"Mike Bassett","type":"Role","_key":"121610","_from":"11089","_to":"71446"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"59497","_from":"11089","_to":"37567"} +{"$label":"DIRECTED","_key":"14335","_from":"11095","_to":"11090"} +{"$label":"ACTS_IN","name":"Dr. Basten","type":"Role","_key":"14334","_from":"11094","_to":"11090"} +{"$label":"ACTS_IN","name":"Tana","type":"Role","_key":"14333","_from":"11093","_to":"11090"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"14332","_from":"11092","_to":"11090"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"14331","_from":"11091","_to":"11090"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"54952","_from":"11091","_to":"35131"} +{"$label":"ACTS_IN","name":"Erkan","type":"Role","_key":"54951","_from":"11092","_to":"35131"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"14337","_from":"11092","_to":"11096"} +{"$label":"ACTS_IN","name":"Anna Starndorf","type":"Role","_key":"106275","_from":"11093","_to":"62605"} +{"$label":"ACTS_IN","name":"Katharina Bertholdi","type":"Role","_key":"91521","_from":"11093","_to":"53951"} +{"$label":"ACTS_IN","name":"Carmen Koslowski","type":"Role","_key":"67695","_from":"11093","_to":"41636"} +{"$label":"ACTS_IN","name":"Luise Kielberg","type":"Role","_key":"55360","_from":"11093","_to":"35294"} +{"$label":"ACTS_IN","name":"Dickie","type":"Role","_key":"42531","_from":"11094","_to":"28471"} +{"$label":"DIRECTED","_key":"111289","_from":"11095","_to":"65725"} +{"$label":"DIRECTED","_key":"14338","_from":"11098","_to":"11096"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"14336","_from":"11097","_to":"11096"} +{"$label":"DIRECTED","_key":"63662","_from":"11098","_to":"39822"} +{"$label":"DIRECTED","_key":"52006","_from":"11098","_to":"33911"} +{"$label":"DIRECTED","_key":"14352","_from":"11109","_to":"11100"} +{"$label":"ACTS_IN","name":"Clive","type":"Role","_key":"14351","_from":"11108","_to":"11100"} +{"$label":"ACTS_IN","name":"Neil Gaydon","type":"Role","_key":"14350","_from":"11107","_to":"11100"} +{"$label":"ACTS_IN","name":"Lady in Black","type":"Role","_key":"14348","_from":"11106","_to":"11100"} +{"$label":"ACTS_IN","name":"Astrid Simms","type":"Role","_key":"14347","_from":"11105","_to":"11100"} +{"$label":"ACTS_IN","name":"Clare Knowles","type":"Role","_key":"14346","_from":"11104","_to":"11100"} +{"$label":"ACTS_IN","name":"Brian Lovell","type":"Role","_key":"14345","_from":"11103","_to":"11100"} +{"$label":"ACTS_IN","name":"Karen Knowles","type":"Role","_key":"14344","_from":"11102","_to":"11100"} +{"$label":"ACTS_IN","name":"Les Wickes","type":"Role","_key":"14341","_from":"11101","_to":"11100"} +{"$label":"ACTS_IN","name":"Agust\u00edn Magaldi","type":"Role","_key":"50901","_from":"11101","_to":"33220"} +{"$label":"ACTS_IN","name":"Helen Henderson","type":"Role","_key":"102418","_from":"11102","_to":"60262"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"22934","_from":"11102","_to":"16632"} +{"$label":"DIRECTED","_key":"101742","_from":"11103","_to":"59882"} +{"$label":"DIRECTED","_key":"94498","_from":"11103","_to":"55653"} +{"$label":"DIRECTED","_key":"63194","_from":"11103","_to":"39631"} +{"$label":"ACTS_IN","name":"Benvolio","type":"Role","_key":"41043","_from":"11103","_to":"27609"} +{"$label":"ACTS_IN","name":"Lt Albert Pinson","type":"Role","_key":"15784","_from":"11103","_to":"12023"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"97858","_from":"11104","_to":"57638"} +{"$label":"ACTS_IN","name":"Marie Rambert","type":"Role","_key":"23912","_from":"11104","_to":"17316"} +{"$label":"ACTS_IN","name":"Elisabeth Staf","type":"Role","_key":"18955","_from":"11105","_to":"14005"} +{"$label":"ACTS_IN","name":"Carol Harmison","type":"Role","_key":"57079","_from":"11106","_to":"36223"} +{"$label":"ACTS_IN","name":"Carol Harmison","type":"Role","_key":"56433","_from":"11106","_to":"35852"} +{"$label":"ACTS_IN","name":"grouch","type":"Role","_key":"111287","_from":"11107","_to":"65723"} +{"$label":"ACTS_IN","name":"Gaz","type":"Role","_key":"100393","_from":"11107","_to":"59203"} +{"$label":"ACTS_IN","name":"James Michael 'Jimmy' Cooper","type":"Role","_key":"62865","_from":"11107","_to":"39502"} +{"$label":"ACTS_IN","name":"Gower (as Daniel Webb)","type":"Role","_key":"65168","_from":"11108","_to":"40473"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"59926","_from":"11108","_to":"37835"} +{"$label":"ACTS_IN","name":"Morse","type":"Role","_key":"48110","_from":"11108","_to":"31620"} +{"$label":"DIRECTED","_key":"105823","_from":"11109","_to":"62297"} +{"$label":"DIRECTED","_key":"68078","_from":"11109","_to":"41822"} +{"$label":"DIRECTED","_key":"55118","_from":"11109","_to":"35189"} +{"$label":"DIRECTED","_key":"14360","_from":"11113","_to":"11110"} +{"$label":"ACTS_IN","name":"Abner Mercer","type":"Role","_key":"14359","_from":"11112","_to":"11110"} +{"$label":"ACTS_IN","name":"Obecks","type":"Role","_key":"14358","_from":"11111","_to":"11110"} +{"$label":"ACTS_IN","name":"Hitler","type":"Role","_key":"103524","_from":"11111","_to":"60902"} +{"$label":"ACTS_IN","name":"Greg Weinstein","type":"Role","_key":"98942","_from":"11111","_to":"58292"} +{"$label":"ACTS_IN","name":"Stacy the Hitman","type":"Role","_key":"62948","_from":"11111","_to":"39530"} +{"$label":"ACTS_IN","name":"Pony","type":"Role","_key":"44840","_from":"11111","_to":"29826"} +{"$label":"ACTS_IN","name":"Detective Vitale","type":"Role","_key":"31564","_from":"11111","_to":"22047"} +{"$label":"ACTS_IN","name":"Newt","type":"Role","_key":"121064","_from":"11112","_to":"71097"} +{"$label":"ACTS_IN","name":"Dave Dante","type":"Role","_key":"116731","_from":"11112","_to":"68712"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"116282","_from":"11112","_to":"68456"} +{"$label":"ACTS_IN","name":"Orville Boggs","type":"Role","_key":"111408","_from":"11112","_to":"65785"} +{"$label":"ACTS_IN","name":"Kerrigan","type":"Role","_key":"105939","_from":"11112","_to":"62377"} +{"$label":"ACTS_IN","name":"Orville Boggs","type":"Role","_key":"104326","_from":"11112","_to":"61379"} +{"$label":"ACTS_IN","name":"Samuel Gummere","type":"Role","_key":"101878","_from":"11112","_to":"59964"} +{"$label":"ACTS_IN","name":"KKK Leader","type":"Role","_key":"101188","_from":"11112","_to":"59606"} +{"$label":"ACTS_IN","name":"Mike Ryerson","type":"Role","_key":"69246","_from":"11112","_to":"42339"} +{"$label":"ACTS_IN","name":"Harold Thompson","type":"Role","_key":"66279","_from":"11112","_to":"40999"} +{"$label":"ACTS_IN","name":"Greg Sullivan","type":"Role","_key":"59883","_from":"11112","_to":"37818"} +{"$label":"ACTS_IN","name":"Frank Avery","type":"Role","_key":"54905","_from":"11112","_to":"35108"} +{"$label":"ACTS_IN","name":"Eddie Goody","type":"Role","_key":"49226","_from":"11112","_to":"32249"} +{"$label":"ACTS_IN","name":"Luther Driggers","type":"Role","_key":"48336","_from":"11112","_to":"31735"} +{"$label":"ACTS_IN","name":"Sheridan","type":"Role","_key":"47448","_from":"11112","_to":"31257"} +{"$label":"ACTS_IN","name":"Roy Sullivan","type":"Role","_key":"14998","_from":"11112","_to":"11531"} +{"$label":"DIRECTED","_key":"14372","_from":"11120","_to":"11114"} +{"$label":"ACTS_IN","name":"General Kormarov","type":"Role","_key":"14368","_from":"11119","_to":"11114"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"14367","_from":"11118","_to":"11114"} +{"$label":"ACTS_IN","name":"Udre Belicoff","type":"Role","_key":"14366","_from":"11117","_to":"11114"} +{"$label":"ACTS_IN","name":"Yuri Marklov","type":"Role","_key":"14364","_from":"11116","_to":"11114"} +{"$label":"ACTS_IN","name":"Nika Boronina","type":"Role","_key":"14363","_from":"11115","_to":"11114"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"92183","_from":"11115","_to":"54404"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"65622","_from":"11115","_to":"40670"} +{"$label":"ACTS_IN","name":"La vampire (Quartier de la Madeleine)","type":"Role","_key":"19879","_from":"11115","_to":"14635"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"113781","_from":"11116","_to":"67043"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"94241","_from":"11116","_to":"55498"} +{"$label":"ACTS_IN","name":"Dr. Abbot","type":"Role","_key":"55926","_from":"11116","_to":"35569"} +{"$label":"ACTS_IN","name":"Nick Willard","type":"Role","_key":"36567","_from":"11116","_to":"24786"} +{"$label":"ACTS_IN","name":"Don Surine","type":"Role","_key":"26779","_from":"11116","_to":"19236"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"107946","_from":"11117","_to":"63746"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"56334","_from":"11117","_to":"35796"} +{"$label":"ACTS_IN","name":"Antique Dealer","type":"Role","_key":"59111","_from":"11119","_to":"37311"} +{"$label":"DIRECTED","_key":"94801","_from":"11120","_to":"55832"} +{"$label":"ACTS_IN","name":"Penelope Witherspoon","type":"Role","_key":"14380","_from":"11123","_to":"11121"} +{"$label":"ACTS_IN","name":"Mortimer Duke","type":"Role","_key":"14378","_from":"11122","_to":"11121"} +{"$label":"ACTS_IN","name":"Henry Van Cleve","type":"Role","_key":"117253","_from":"11122","_to":"68967"} +{"$label":"ACTS_IN","name":"Harry Aldrich","type":"Role","_key":"116389","_from":"11122","_to":"68518"} +{"$label":"ACTS_IN","name":"Father Clemente","type":"Role","_key":"72574","_from":"11122","_to":"43762"} +{"$label":"ACTS_IN","name":"Arthur 'Art' Selwyn","type":"Role","_key":"68898","_from":"11122","_to":"42195"} +{"$label":"ACTS_IN","name":"Arthur Selwyn","type":"Role","_key":"62611","_from":"11122","_to":"39390"} +{"$label":"ACTS_IN","name":"Shadow","type":"Role","_key":"45014","_from":"11122","_to":"29906"} +{"$label":"ACTS_IN","name":"Alain Getty","type":"Role","_key":"14386","_from":"11127","_to":"11124"} +{"$label":"ACTS_IN","name":"Richard Pollock","type":"Role","_key":"14385","_from":"11126","_to":"11124"} +{"$label":"DIRECTED","_key":"14382","_from":"11125","_to":"11124"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"121764","_from":"11126","_to":"71533"} +{"$label":"ACTS_IN","name":"Le ministre","type":"Role","_key":"118050","_from":"11126","_to":"69385"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"110831","_from":"11126","_to":"65471"} +{"$label":"ACTS_IN","name":"Charles Boyer","type":"Role","_key":"106036","_from":"11126","_to":"62438"} +{"$label":"ACTS_IN","name":"Jean Guignebont","type":"Role","_key":"105219","_from":"11126","_to":"61923"} +{"$label":"ACTS_IN","name":"Colonel Grasset","type":"Role","_key":"90803","_from":"11126","_to":"53582"} +{"$label":"ACTS_IN","name":"Jacques Laurentin","type":"Role","_key":"65841","_from":"11126","_to":"40747"} +{"$label":"ACTS_IN","name":"Lautrennes","type":"Role","_key":"54930","_from":"11126","_to":"35122"} +{"$label":"ACTS_IN","name":"Robert Mancini","type":"Role","_key":"46251","_from":"11126","_to":"30575"} +{"$label":"ACTS_IN","name":"Psychiatre","type":"Role","_key":"46036","_from":"11126","_to":"30419"} +{"$label":"ACTS_IN","name":"Stanislas Pr\u00e9vine","type":"Role","_key":"33379","_from":"11126","_to":"23107"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"29926","_from":"11126","_to":"21152"} +{"$label":"ACTS_IN","name":"Edmond","type":"Role","_key":"24021","_from":"11126","_to":"17418"} +{"$label":"ACTS_IN","name":"Pierre-Marie Rouvi\u00e8res","type":"Role","_key":"23884","_from":"11126","_to":"17312"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"23763","_from":"11126","_to":"17230"} +{"$label":"ACTS_IN","name":"Paul Guetz","type":"Role","_key":"17660","_from":"11126","_to":"13175"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"115737","_from":"11127","_to":"68148"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110364","_from":"11127","_to":"65214"} +{"$label":"ACTS_IN","name":"Marc Stevens","type":"Role","_key":"90009","_from":"11127","_to":"53247"} +{"$label":"ACTS_IN","name":"Dr. Philipp","type":"Role","_key":"16579","_from":"11127","_to":"12522"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"15858","_from":"11127","_to":"12063"} +{"$label":"ACTS_IN","name":"Larry Lee Bullen","type":"Role","_key":"14392","_from":"11129","_to":"11128"} +{"$label":"ACTS_IN","name":"Uncle Earl","type":"Role","_key":"101116","_from":"11129","_to":"59581"} +{"$label":"ACTS_IN","name":"Andrew 'Andy' McGee","type":"Role","_key":"70167","_from":"11129","_to":"42773"} +{"$label":"ACTS_IN","name":"Jack Parkman","type":"Role","_key":"67680","_from":"11129","_to":"41630"} +{"$label":"ACTS_IN","name":"Master Chief Tom O'Malley","type":"Role","_key":"47729","_from":"11129","_to":"31434"} +{"$label":"ACTS_IN","name":"Det. John Mulchaey","type":"Role","_key":"46534","_from":"11129","_to":"30733"} +{"$label":"ACTS_IN","name":"Garrett Hill","type":"Role","_key":"43414","_from":"11129","_to":"29000"} +{"$label":"ACTS_IN","name":"Maj. Matthew Coonen","type":"Role","_key":"27682","_from":"11129","_to":"19835"} +{"$label":"ACTS_IN","name":"Sid Worley","type":"Role","_key":"22274","_from":"11129","_to":"16205"} +{"$label":"ACTS_IN","name":"Larry Victor","type":"Role","_key":"15958","_from":"11129","_to":"12139"} +{"$label":"ACTS_IN","name":"Kenneth Falk","type":"Role","_key":"14405","_from":"11134","_to":"11130"} +{"$label":"ACTS_IN","name":"Judge Marshall Stevens","type":"Role","_key":"14402","_from":"11133","_to":"11130"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"14401","_from":"11132","_to":"11130"} +{"$label":"ACTS_IN","name":"Max Reede","type":"Role","_key":"14397","_from":"11131","_to":"11130"} +{"$label":"ACTS_IN","name":"Lady Sylvia Marsh","type":"Role","_key":"69268","_from":"11132","_to":"42352"} +{"$label":"ACTS_IN","name":"Admiral Enolo Phid","type":"Role","_key":"68034","_from":"11132","_to":"41806"} +{"$label":"ACTS_IN","name":"Jake McKnight","type":"Role","_key":"103643","_from":"11134","_to":"60958"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"14417","_from":"11144","_to":"11135"} +{"$label":"ACTS_IN","name":"Jeune Homme","type":"Role","_key":"14415","_from":"11143","_to":"11135"} +{"$label":"ACTS_IN","name":"Philosophe","type":"Role","_key":"14414","_from":"11142","_to":"11135"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"14413","_from":"11141","_to":"11135"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"14412","_from":"11140","_to":"11135"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"14411","_from":"11139","_to":"11135"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"14410","_from":"11138","_to":"11135"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"14409","_from":"11137","_to":"11135"} +{"$label":"ACTS_IN","name":"Nana Kleinfrankenheim","type":"Role","_key":"14408","_from":"11136","_to":"11135"} +{"$label":"ACTS_IN","name":"Elena \/ Costa","type":"Role","_key":"53407","_from":"11136","_to":"34508"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"48074","_from":"11136","_to":"31605"} +{"$label":"ACTS_IN","name":"Natacha Von Braun","type":"Role","_key":"48071","_from":"11136","_to":"31604"} +{"$label":"ACTS_IN","name":"Elle","type":"Role","_key":"33814","_from":"11136","_to":"23307"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"23560","_from":"11136","_to":"17089"} +{"$label":"ACTS_IN","name":"Lucien, le Grenoblois","type":"Role","_key":"34049","_from":"11137","_to":"23410"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"29828","_from":"11137","_to":"21103"} +{"$label":"DIRECTED","_key":"20076","_from":"11143","_to":"14765"} +{"$label":"ACTS_IN","name":"Besucher im Institut","type":"Role","_key":"14427","_from":"11153","_to":"11145"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"14426","_from":"11152","_to":"11145"} +{"$label":"ACTS_IN","name":"Baby Lemeri","type":"Role","_key":"14425","_from":"11151","_to":"11145"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"14424","_from":"11150","_to":"11145"} +{"$label":"ACTS_IN","name":"Monsieur Lemeri","type":"Role","_key":"14423","_from":"11149","_to":"11145"} +{"$label":"ACTS_IN","name":"Madame Lemeri","type":"Role","_key":"14422","_from":"11148","_to":"11145"} +{"$label":"ACTS_IN","name":"Madame Guerin","type":"Role","_key":"14420","_from":"11147","_to":"11145"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"14418","_from":"11146","_to":"11145"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31617","_from":"11147","_to":"22071"} +{"$label":"DIRECTED","_key":"96096","_from":"11149","_to":"56486"} +{"$label":"DIRECTED","_key":"50759","_from":"11149","_to":"33128"} +{"$label":"DIRECTED","_key":"35740","_from":"11149","_to":"24291"} +{"$label":"DIRECTED","_key":"29849","_from":"11149","_to":"21113"} +{"$label":"ACTS_IN","name":"Basque","type":"Role","_key":"31561","_from":"11150","_to":"22027"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"14436","_from":"11161","_to":"11154"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"14435","_from":"11160","_to":"11154"} +{"$label":"ACTS_IN","name":"Gilberte","type":"Role","_key":"14434","_from":"11159","_to":"11154"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"14433","_from":"11158","_to":"11154"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"14432","_from":"11157","_to":"11154"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"14431","_from":"11156","_to":"11154"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"14430","_from":"11155","_to":"11154"} +{"$label":"ACTS_IN","name":"Fr. David Telemond","type":"Role","_key":"113520","_from":"11155","_to":"66883"} +{"$label":"ACTS_IN","name":"Fiedler","type":"Role","_key":"95304","_from":"11155","_to":"56070"} +{"$label":"ACTS_IN","name":"Karl Maurer alias Happy","type":"Role","_key":"31867","_from":"11155","_to":"22236"} +{"$label":"ACTS_IN","name":"Der Mann (Stimme)","type":"Role","_key":"30961","_from":"11155","_to":"21687"} +{"$label":"ACTS_IN","name":"Guy Montag","type":"Role","_key":"15152","_from":"11155","_to":"11621"} +{"$label":"ACTS_IN","name":"Gouverneur de Launay","type":"Role","_key":"30233","_from":"11156","_to":"21284"} +{"$label":"ACTS_IN","name":"Frederic","type":"Role","_key":"22112","_from":"11156","_to":"16116"} +{"$label":"ACTS_IN","name":"Andre Berthier","type":"Role","_key":"16185","_from":"11156","_to":"12287"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"89152","_from":"11157","_to":"52806"} +{"$label":"ACTS_IN","name":"Juliette, la petite fille du guignol","type":"Role","_key":"48882","_from":"11157","_to":"32047"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"34289","_from":"11157","_to":"23529"} +{"$label":"ACTS_IN","name":"the Princess","type":"Role","_key":"30796","_from":"11157","_to":"21588"} +{"$label":"ACTS_IN","name":"Marie Dubois","type":"Role","_key":"29496","_from":"11157","_to":"20909"} +{"$label":"ACTS_IN","name":"L\u00e9na","type":"Role","_key":"15738","_from":"11157","_to":"11991"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"105527","_from":"11158","_to":"62092"} +{"$label":"ACTS_IN","name":"Mlle Strosser","type":"Role","_key":"20915","_from":"11158","_to":"15302"} +{"$label":"ACTS_IN","name":"Sabine Lachenay","type":"Role","_key":"15220","_from":"11158","_to":"11648"} +{"$label":"ACTS_IN","name":"Nadine Marsac","type":"Role","_key":"15181","_from":"11158","_to":"11631"} +{"$label":"ACTS_IN","name":"Gramoo Sultenfuss","type":"Role","_key":"29491","_from":"11161","_to":"20905"} +{"$label":"ACTS_IN","name":"Son ami","type":"Role","_key":"14447","_from":"11170","_to":"11162"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"14446","_from":"11169","_to":"11162"} +{"$label":"ACTS_IN","name":"Blandine","type":"Role","_key":"14445","_from":"11168","_to":"11162"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"14444","_from":"11167","_to":"11162"} +{"$label":"ACTS_IN","name":"Kirilov","type":"Role","_key":"14443","_from":"11166","_to":"11162"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"14442","_from":"11165","_to":"11162"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"14441","_from":"11164","_to":"11162"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"14439","_from":"11163","_to":"11162"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"88719","_from":"11163","_to":"52569"} +{"$label":"ACTS_IN","name":"un membre du FLSO","type":"Role","_key":"48093","_from":"11163","_to":"31610"} +{"$label":"ACTS_IN","name":"Leftist woman","type":"Role","_key":"48068","_from":"11163","_to":"31599"} +{"$label":"ACTS_IN","name":"Odetta, the daughter","type":"Role","_key":"37076","_from":"11163","_to":"25123"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"33799","_from":"11163","_to":"23298"} +{"$label":"ACTS_IN","name":"Anna Maroyeur","type":"Role","_key":"27300","_from":"11163","_to":"19624"} +{"$label":"ACTS_IN","name":"La femme dans l'accident de voiture\/un membre du FLSO","type":"Role","_key":"48090","_from":"11164","_to":"31610"} +{"$label":"ACTS_IN","name":"Ruth Carter Stapleton","type":"Role","_key":"14452","_from":"11173","_to":"11171"} +{"$label":"ACTS_IN","name":"Jimmy Flynt","type":"Role","_key":"14451","_from":"11172","_to":"11171"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"120280","_from":"11173","_to":"70628"} +{"$label":"ACTS_IN","name":"M. Bonnard","type":"Role","_key":"14461","_from":"11178","_to":"11174"} +{"$label":"ACTS_IN","name":"Mme Bonnard","type":"Role","_key":"14460","_from":"11177","_to":"11174"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"14459","_from":"11176","_to":"11174"} +{"$label":"ACTS_IN","name":"Alice Bonnard","type":"Role","_key":"14458","_from":"11175","_to":"11174"} +{"$label":"ACTS_IN","name":"Ascilto","type":"Role","_key":"68236","_from":"11176","_to":"41902"} +{"$label":"ACTS_IN","name":"Ivan Ogareff","type":"Role","_key":"31401","_from":"11176","_to":"21944"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"71414","_from":"11177","_to":"43302"} +{"$label":"ACTS_IN","name":"Mr. Schultz's Companion","type":"Role","_key":"61822","_from":"11177","_to":"38917"} +{"$label":"ACTS_IN","name":"Legrand","type":"Role","_key":"23183","_from":"11178","_to":"16809"} +{"$label":"DIRECTED","_key":"14473","_from":"11184","_to":"11180"} +{"$label":"ACTS_IN","name":"Idgie Threadgoode","type":"Role","_key":"14472","_from":"11183","_to":"11180"} +{"$label":"ACTS_IN","name":"Sipsey","type":"Role","_key":"14471","_from":"11182","_to":"11180"} +{"$label":"ACTS_IN","name":"Ruth Jamison","type":"Role","_key":"14469","_from":"11181","_to":"11180"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"98010","_from":"11181","_to":"57718"} +{"$label":"ACTS_IN","name":"Dee","type":"Role","_key":"95931","_from":"11181","_to":"56415"} +{"$label":"ACTS_IN","name":"Lillian","type":"Role","_key":"93377","_from":"11181","_to":"54999"} +{"$label":"ACTS_IN","name":"Joanne White","type":"Role","_key":"72059","_from":"11181","_to":"43573"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"69523","_from":"11181","_to":"42465"} +{"$label":"ACTS_IN","name":"Dianne Sway","type":"Role","_key":"65311","_from":"11181","_to":"40530"} +{"$label":"ACTS_IN","name":"Molly Graham","type":"Role","_key":"54506","_from":"11181","_to":"34932"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"53484","_from":"11181","_to":"34545"} +{"$label":"ACTS_IN","name":"Helen Grace","type":"Role","_key":"48393","_from":"11181","_to":"31764"} +{"$label":"ACTS_IN","name":"Zeralda James","type":"Role","_key":"32202","_from":"11181","_to":"22448"} +{"$label":"ACTS_IN","name":"Gloria Dump","type":"Role","_key":"114176","_from":"11182","_to":"67261"} +{"$label":"ACTS_IN","name":"Myrtle","type":"Role","_key":"110034","_from":"11182","_to":"65011"} +{"$label":"ACTS_IN","name":"Mother Hopkins","type":"Role","_key":"96868","_from":"11182","_to":"56966"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"45290","_from":"11182","_to":"30044"} +{"$label":"DIRECTED","_key":"106886","_from":"11183","_to":"63011"} +{"$label":"ACTS_IN","name":"Watts","type":"Role","_key":"103341","_from":"11183","_to":"60793"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"96045","_from":"11183","_to":"56457"} +{"$label":"ACTS_IN","name":"Anita Crown","type":"Role","_key":"72394","_from":"11183","_to":"43711"} +{"$label":"ACTS_IN","name":"Juniper 'Joon' Pearl","type":"Role","_key":"29596","_from":"11183","_to":"20951"} +{"$label":"ACTS_IN","name":"Miranda Jeffries","type":"Role","_key":"25387","_from":"11183","_to":"18305"} +{"$label":"DIRECTED","_key":"121320","_from":"11184","_to":"71281"} +{"$label":"DIRECTED","_key":"94256","_from":"11184","_to":"55507"} +{"$label":"DIRECTED","_key":"53685","_from":"11184","_to":"34625"} +{"$label":"DIRECTED","_key":"52998","_from":"11184","_to":"34329"} +{"$label":"DIRECTED","_key":"27461","_from":"11184","_to":"19709"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"14479","_from":"11189","_to":"11185"} +{"$label":"ACTS_IN","name":"Randolph","type":"Role","_key":"14477","_from":"11188","_to":"11185"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"14475","_from":"11187","_to":"11185"} +{"$label":"DIRECTED","_key":"14474","_from":"11186","_to":"11185"} +{"$label":"DIRECTED","_key":"108338","_from":"11186","_to":"64040"} +{"$label":"DIRECTED","_key":"92242","_from":"11186","_to":"54426"} +{"$label":"DIRECTED","_key":"57200","_from":"11186","_to":"36287"} +{"$label":"DIRECTED","_key":"54873","_from":"11186","_to":"35091"} +{"$label":"DIRECTED","_key":"52904","_from":"11186","_to":"34287"} +{"$label":"DIRECTED","_key":"21518","_from":"11186","_to":"15740"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"116518","_from":"11187","_to":"68581"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"52402","_from":"11187","_to":"34101"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"120108","_from":"11188","_to":"70533"} +{"$label":"ACTS_IN","name":"Randolph Johnson","type":"Role","_key":"116519","_from":"11188","_to":"68581"} +{"$label":"ACTS_IN","name":"Sitting Bull","type":"Role","_key":"94650","_from":"11188","_to":"55765"} +{"$label":"ACTS_IN","name":"Powhatan","type":"Role","_key":"69627","_from":"11188","_to":"42500"} +{"$label":"ACTS_IN","name":"Randolph Johnson","type":"Role","_key":"52405","_from":"11188","_to":"34101"} +{"$label":"ACTS_IN","name":"Mindo","type":"Role","_key":"52194","_from":"11188","_to":"34007"} +{"$label":"ACTS_IN","name":"Sandra Waters","type":"Role","_key":"97785","_from":"11189","_to":"57584"} +{"$label":"ACTS_IN","name":"Annie Greenwood","type":"Role","_key":"52404","_from":"11189","_to":"34101"} +{"$label":"ACTS_IN","name":"Tabitha Walker","type":"Role","_key":"45246","_from":"11189","_to":"30028"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"14496","_from":"11194","_to":"11191"} +{"$label":"ACTS_IN","name":"Jerry\/Alejandro\/Beach Jock\/Jerry Turner","type":"Role","_key":"14495","_from":"11193","_to":"11191"} +{"$label":"ACTS_IN","name":"Bob\/Roberto\/Beach Jock","type":"Role","_key":"14494","_from":"11192","_to":"11191"} +{"$label":"ACTS_IN","name":"Sailor - Young Paul","type":"Role","_key":"115008","_from":"11192","_to":"67722"} +{"$label":"ACTS_IN","name":"Hy Gordon","type":"Role","_key":"32580","_from":"11192","_to":"22640"} +{"$label":"ACTS_IN","name":"Lieutenant Hutchins","type":"Role","_key":"16456","_from":"11192","_to":"12429"} +{"$label":"ACTS_IN","name":"Tennessee O'Neal (voice)","type":"Role","_key":"115873","_from":"11193","_to":"68225"} +{"$label":"ACTS_IN","name":"Glen the Desk Clerk","type":"Role","_key":"60563","_from":"11193","_to":"38218"} +{"$label":"ACTS_IN","name":"Spook","type":"Role","_key":"58436","_from":"11193","_to":"36932"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"120484","_from":"11194","_to":"70764"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"115805","_from":"11194","_to":"68174"} +{"$label":"ACTS_IN","name":"Sam Watson","type":"Role","_key":"112059","_from":"11194","_to":"66166"} +{"$label":"ACTS_IN","name":"Bagwell","type":"Role","_key":"14509","_from":"11197","_to":"11195"} +{"$label":"ACTS_IN","name":"Ortiz","type":"Role","_key":"14505","_from":"11196","_to":"11195"} +{"$label":"ACTS_IN","name":"Popeye","type":"Role","_key":"55862","_from":"11196","_to":"35537"} +{"$label":"ACTS_IN","name":"Manly","type":"Role","_key":"58764","_from":"11197","_to":"37115"} +{"$label":"ACTS_IN","name":"Merced","type":"Role","_key":"14518","_from":"11200","_to":"11198"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"14515","_from":"11199","_to":"11198"} +{"$label":"ACTS_IN","name":"Angus Starling","type":"Role","_key":"64266","_from":"11200","_to":"40077"} +{"$label":"ACTS_IN","name":"Park","type":"Role","_key":"14554","_from":"11224","_to":"11201"} +{"$label":"ACTS_IN","name":"Country DJ","type":"Role","_key":"14553","_from":"11223","_to":"11201"} +{"$label":"ACTS_IN","name":"Officer Hill","type":"Role","_key":"14552","_from":"11222","_to":"11201"} +{"$label":"ACTS_IN","name":"Store Owner","type":"Role","_key":"14551","_from":"11221","_to":"11201"} +{"$label":"ACTS_IN","name":"Officer Gomez","type":"Role","_key":"14549","_from":"11220","_to":"11201"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"14548","_from":"11219","_to":"11201"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"14546","_from":"11218","_to":"11201"} +{"$label":"ACTS_IN","name":"Motorcycle Cop","type":"Role","_key":"14545","_from":"11217","_to":"11201"} +{"$label":"ACTS_IN","name":"Ken Ho","type":"Role","_key":"14544","_from":"11216","_to":"11201"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"14543","_from":"11215","_to":"11201"} +{"$label":"ACTS_IN","name":"Young Peter","type":"Role","_key":"14542","_from":"11214","_to":"11201"} +{"$label":"ACTS_IN","name":"Officer Johnson","type":"Role","_key":"14541","_from":"11213","_to":"11201"} +{"$label":"ACTS_IN","name":"Graham's Mother","type":"Role","_key":"14539","_from":"11212","_to":"11201"} +{"$label":"ACTS_IN","name":"Peter Waters","type":"Role","_key":"14538","_from":"11211","_to":"11201"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"14536","_from":"11210","_to":"11201"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"14535","_from":"11209","_to":"11201"} +{"$label":"ACTS_IN","name":"Cameron Thayer","type":"Role","_key":"14532","_from":"11208","_to":"11201"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"14531","_from":"11207","_to":"11201"} +{"$label":"ACTS_IN","name":"Ria","type":"Role","_key":"14528","_from":"11206","_to":"11201"} +{"$label":"ACTS_IN","name":"Shaniqua Johnson","type":"Role","_key":"14527","_from":"11205","_to":"11201"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"14525","_from":"11204","_to":"11201"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"14524","_from":"11203","_to":"11201"} +{"$label":"DIRECTED","_key":"14520","_from":"11202","_to":"11201"} +{"$label":"DIRECTED","_key":"45512","_from":"11202","_to":"30141"} +{"$label":"ACTS_IN","name":"Rita Martinez","type":"Role","_key":"41483","_from":"11203","_to":"27874"} +{"$label":"ACTS_IN","name":"The Butcher","type":"Role","_key":"51432","_from":"11204","_to":"33548"} +{"$label":"ACTS_IN","name":"Shirley Ann \"Ma'Dere\" Whitfield","type":"Role","_key":"103693","_from":"11205","_to":"60994"} +{"$label":"ACTS_IN","name":"Sister Doris","type":"Role","_key":"100183","_from":"11205","_to":"59094"} +{"$label":"ACTS_IN","name":"Delta (voice)","type":"Role","_key":"100066","_from":"11205","_to":"59023"} +{"$label":"ACTS_IN","name":"Reese Wilson","type":"Role","_key":"88699","_from":"11205","_to":"52559"} +{"$label":"ACTS_IN","name":"Reese Wilson","type":"Role","_key":"57547","_from":"11205","_to":"36455"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109210","_from":"11206","_to":"64523"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"100650","_from":"11206","_to":"59348"} +{"$label":"ACTS_IN","name":"Jennifer Baker","type":"Role","_key":"97374","_from":"11206","_to":"57346"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"93622","_from":"11206","_to":"55122"} +{"$label":"ACTS_IN","name":"Lt. Marta Robbins","type":"Role","_key":"67534","_from":"11206","_to":"41580"} +{"$label":"ACTS_IN","name":"Solina","type":"Role","_key":"64197","_from":"11206","_to":"40048"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"62349","_from":"11206","_to":"39281"} +{"$label":"ACTS_IN","name":"Carmela","type":"Role","_key":"52665","_from":"11206","_to":"34200"} +{"$label":"ACTS_IN","name":"Frankie Vitello","type":"Role","_key":"45455","_from":"11206","_to":"30120"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"28314","_from":"11206","_to":"20259"} +{"$label":"ACTS_IN","name":"Susan Reese","type":"Role","_key":"27822","_from":"11206","_to":"19944"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"17567","_from":"11206","_to":"13126"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"93418","_from":"11207","_to":"55011"} +{"$label":"ACTS_IN","name":"K.C.","type":"Role","_key":"121312","_from":"11208","_to":"71273"} +{"$label":"ACTS_IN","name":"Amos Hicks","type":"Role","_key":"112056","_from":"11208","_to":"66166"} +{"$label":"ACTS_IN","name":"Harvey Boarden","type":"Role","_key":"111922","_from":"11208","_to":"66071"} +{"$label":"ACTS_IN","name":"Jim Ellis","type":"Role","_key":"109015","_from":"11208","_to":"64423"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"107644","_from":"11208","_to":"63536"} +{"$label":"ACTS_IN","name":"Trumpy","type":"Role","_key":"96865","_from":"11208","_to":"56966"} +{"$label":"ACTS_IN","name":"Dr. Jack Harper","type":"Role","_key":"94735","_from":"11208","_to":"55797"} +{"$label":"ACTS_IN","name":"Timothy Walker","type":"Role","_key":"65109","_from":"11208","_to":"40444"} +{"$label":"ACTS_IN","name":"Lt. Lincoln A. Scott","type":"Role","_key":"64346","_from":"11208","_to":"40107"} +{"$label":"ACTS_IN","name":"DJay","type":"Role","_key":"63550","_from":"11208","_to":"39779"} +{"$label":"ACTS_IN","name":"Darius Allen","type":"Role","_key":"61994","_from":"11208","_to":"39027"} +{"$label":"ACTS_IN","name":"Bama","type":"Role","_key":"60073","_from":"11208","_to":"37905"} +{"$label":"ACTS_IN","name":"Lt. Green","type":"Role","_key":"48969","_from":"11208","_to":"32108"} +{"$label":"ACTS_IN","name":"Robby","type":"Role","_key":"39837","_from":"11208","_to":"26919"} +{"$label":"ACTS_IN","name":"Duck","type":"Role","_key":"37117","_from":"11208","_to":"25148"} +{"$label":"ACTS_IN","name":"Richard Jeffries","type":"Role","_key":"35995","_from":"11208","_to":"24440"} +{"$label":"ACTS_IN","name":"Detective Mercer","type":"Role","_key":"31563","_from":"11208","_to":"22047"} +{"$label":"ACTS_IN","name":"Louis Russ","type":"Role","_key":"17855","_from":"11208","_to":"13293"} +{"$label":"ACTS_IN","name":"Jim Rhodes","type":"Role","_key":"15278","_from":"11208","_to":"11696"} +{"$label":"ACTS_IN","name":"Meadow","type":"Role","_key":"58810","_from":"11210","_to":"37140"} +{"$label":"ACTS_IN","name":"Anthony Curtis","type":"Role","_key":"69861","_from":"11211","_to":"42631"} +{"$label":"ACTS_IN","name":"Ford Lincoln Mercury","type":"Role","_key":"58116","_from":"11211","_to":"36774"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"58026","_from":"11211","_to":"36714"} +{"$label":"ACTS_IN","name":"Kevin 'O-Dog'","type":"Role","_key":"54397","_from":"11211","_to":"34892"} +{"$label":"ACTS_IN","name":"Demetrius Hicks","type":"Role","_key":"49532","_from":"11211","_to":"32434"} +{"$label":"ACTS_IN","name":"Ms. Levias","type":"Role","_key":"101135","_from":"11212","_to":"59586"} +{"$label":"ACTS_IN","name":"Virginia Chambers","type":"Role","_key":"46605","_from":"11212","_to":"30782"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"115212","_from":"11213","_to":"67849"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"56730","_from":"11213","_to":"36022"} +{"$label":"ACTS_IN","name":"Juror 7","type":"Role","_key":"88768","_from":"11218","_to":"52604"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"72935","_from":"11218","_to":"43910"} +{"$label":"ACTS_IN","name":"Skinning Con","type":"Role","_key":"51695","_from":"11220","_to":"33701"} +{"$label":"ACTS_IN","name":"Provenzano","type":"Role","_key":"93417","_from":"11222","_to":"55011"} +{"$label":"ACTS_IN","name":"Dr. Tsi Chou","type":"Role","_key":"99548","_from":"11224","_to":"58686"} +{"$label":"ACTS_IN","name":"Agent Frears","type":"Role","_key":"36710","_from":"11224","_to":"24881"} +{"$label":"DIRECTED","_key":"14561","_from":"11226","_to":"11225"} +{"$label":"DIRECTED","_key":"118172","_from":"11226","_to":"69449"} +{"$label":"DIRECTED","_key":"14568","_from":"11232","_to":"11227"} +{"$label":"ACTS_IN","name":"Michael Bergstrom","type":"Role","_key":"14566","_from":"11231","_to":"11227"} +{"$label":"ACTS_IN","name":"Ruth Marx","type":"Role","_key":"14565","_from":"11230","_to":"11227"} +{"$label":"ACTS_IN","name":"Dr. Alan Champion","type":"Role","_key":"14564","_from":"11229","_to":"11227"} +{"$label":"ACTS_IN","name":"Jack Devlin","type":"Role","_key":"14563","_from":"11228","_to":"11227"} +{"$label":"ACTS_IN","name":"Narrator - Fisk Junior","type":"Role","_key":"114939","_from":"11228","_to":"67698"} +{"$label":"ACTS_IN","name":"Col. Woolwrap","type":"Role","_key":"100081","_from":"11228","_to":"59035"} +{"$label":"ACTS_IN","name":"Mr. Wigram","type":"Role","_key":"63656","_from":"11228","_to":"39821"} +{"$label":"ACTS_IN","name":"Morgan Sullivan","type":"Role","_key":"61134","_from":"11228","_to":"38639"} +{"$label":"ACTS_IN","name":"Ivor Novello","type":"Role","_key":"36863","_from":"11228","_to":"24998"} +{"$label":"ACTS_IN","name":"Dr. Peter Mann","type":"Role","_key":"35153","_from":"11228","_to":"23957"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"34423","_from":"11228","_to":"23588"} +{"$label":"ACTS_IN","name":"Mr. Knightley","type":"Role","_key":"27997","_from":"11228","_to":"20074"} +{"$label":"ACTS_IN","name":"Zander Kelly","type":"Role","_key":"66958","_from":"11229","_to":"41336"} +{"$label":"ACTS_IN","name":"Rafe Guttman","type":"Role","_key":"53816","_from":"11229","_to":"34672"} +{"$label":"ACTS_IN","name":"Detective Steve Stengel","type":"Role","_key":"53725","_from":"11229","_to":"34638"} +{"$label":"ACTS_IN","name":"Chong","type":"Role","_key":"52134","_from":"11229","_to":"33981"} +{"$label":"ACTS_IN","name":"Lori Cronenberg","type":"Role","_key":"100454","_from":"11230","_to":"59228"} +{"$label":"ACTS_IN","name":"Thomas Jefferson","type":"Role","_key":"102390","_from":"11231","_to":"60250"} +{"$label":"ACTS_IN","name":"Arthur Marsh","type":"Role","_key":"47241","_from":"11231","_to":"31128"} +{"$label":"ACTS_IN","name":"Michael Saunders","type":"Role","_key":"43829","_from":"11231","_to":"29268"} +{"$label":"DIRECTED","_key":"104914","_from":"11232","_to":"61735"} +{"$label":"DIRECTED","_key":"103655","_from":"11232","_to":"60960"} +{"$label":"DIRECTED","_key":"98899","_from":"11232","_to":"58276"} +{"$label":"DIRECTED","_key":"69978","_from":"11232","_to":"42686"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"14581","_from":"11239","_to":"11233"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"14580","_from":"11238","_to":"11233"} +{"$label":"ACTS_IN","name":"Olympia","type":"Role","_key":"14579","_from":"11237","_to":"11233"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"14575","_from":"11236","_to":"11233"} +{"$label":"ACTS_IN","name":"Jeannes Mutter","type":"Role","_key":"14574","_from":"11235","_to":"11233"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"14571","_from":"11234","_to":"11233"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"55293","_from":"11234","_to":"35259"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"32802","_from":"11234","_to":"22779"} +{"$label":"ACTS_IN","name":"Carlyne","type":"Role","_key":"89995","_from":"11236","_to":"53238"} +{"$label":"ACTS_IN","name":"Nicole Clement","type":"Role","_key":"71997","_from":"11236","_to":"43537"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"119220","_from":"11238","_to":"70047"} +{"$label":"ACTS_IN","name":"Dr. Karl Hummel","type":"Role","_key":"37429","_from":"11239","_to":"25362"} +{"$label":"ACTS_IN","name":"Paolo, the father","type":"Role","_key":"37075","_from":"11239","_to":"25123"} +{"$label":"ACTS_IN","name":"Gino Costa","type":"Role","_key":"36169","_from":"11239","_to":"24537"} +{"$label":"ACTS_IN","name":"Count Stefano Egano","type":"Role","_key":"30794","_from":"11239","_to":"21588"} +{"$label":"ACTS_IN","name":"L'envoy\u00e9 du Pape","type":"Role","_key":"30227","_from":"11239","_to":"21284"} +{"$label":"DIRECTED","_key":"14597","_from":"11251","_to":"11240"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"14596","_from":"11250","_to":"11240"} +{"$label":"ACTS_IN","name":"Colleague","type":"Role","_key":"14595","_from":"11249","_to":"11240"} +{"$label":"ACTS_IN","name":"TV Host","type":"Role","_key":"14594","_from":"11248","_to":"11240"} +{"$label":"ACTS_IN","name":"Cop at Apartment","type":"Role","_key":"14593","_from":"11247","_to":"11240"} +{"$label":"ACTS_IN","name":"Cop at Gas Station","type":"Role","_key":"14591","_from":"11246","_to":"11240"} +{"$label":"ACTS_IN","name":"Miss Carmichael","type":"Role","_key":"14590","_from":"11245","_to":"11240"} +{"$label":"ACTS_IN","name":"Arthur Bernard","type":"Role","_key":"14589","_from":"11244","_to":"11240"} +{"$label":"ACTS_IN","name":"Helene Cousins","type":"Role","_key":"14588","_from":"11243","_to":"11240"} +{"$label":"ACTS_IN","name":"Denise Cousins","type":"Role","_key":"14587","_from":"11242","_to":"11240"} +{"$label":"ACTS_IN","name":"Rita Baker","type":"Role","_key":"14584","_from":"11241","_to":"11240"} +{"$label":"ACTS_IN","name":"Prof. Joyce Reardon","type":"Role","_key":"102633","_from":"11241","_to":"60385"} +{"$label":"ACTS_IN","name":"Robin Hunter","type":"Role","_key":"91493","_from":"11241","_to":"53940"} +{"$label":"ACTS_IN","name":"Sylvia Bennington","type":"Role","_key":"88340","_from":"11241","_to":"52381"} +{"$label":"ACTS_IN","name":"Corinne Landreaux","type":"Role","_key":"72410","_from":"11241","_to":"43714"} +{"$label":"ACTS_IN","name":"Sylvia Bennington","type":"Role","_key":"71153","_from":"11241","_to":"43189"} +{"$label":"ACTS_IN","name":"Kathleen Avila","type":"Role","_key":"67627","_from":"11241","_to":"41621"} +{"$label":"ACTS_IN","name":"Harriet Michaels","type":"Role","_key":"63377","_from":"11241","_to":"39714"} +{"$label":"ACTS_IN","name":"Lydia Rodman","type":"Role","_key":"56659","_from":"11241","_to":"35987"} +{"$label":"ACTS_IN","name":"Cat","type":"Role","_key":"40663","_from":"11241","_to":"27371"} +{"$label":"ACTS_IN","name":"Lorraine Franklin","type":"Role","_key":"28179","_from":"11241","_to":"20186"} +{"$label":"ACTS_IN","name":"Cynthia Dayton","type":"Role","_key":"41708","_from":"11243","_to":"27984"} +{"$label":"ACTS_IN","name":"Terry Morgan","type":"Role","_key":"24359","_from":"11243","_to":"17630"} +{"$label":"ACTS_IN","name":"Peter Fitzsimmons","type":"Role","_key":"31981","_from":"11244","_to":"22296"} +{"$label":"ACTS_IN","name":"Norbert Lewman","type":"Role","_key":"92060","_from":"11247","_to":"54312"} +{"$label":"DIRECTED","_key":"110542","_from":"11248","_to":"65312"} +{"$label":"DIRECTED","_key":"89963","_from":"11251","_to":"53222"} +{"$label":"DIRECTED","_key":"50628","_from":"11251","_to":"33056"} +{"$label":"DIRECTED","_key":"19766","_from":"11251","_to":"14601"} +{"$label":"ACTS_IN","name":"Gwen Hailey","type":"Role","_key":"14609","_from":"11255","_to":"11252"} +{"$label":"ACTS_IN","name":"Tonya Hailey","type":"Role","_key":"14608","_from":"11254","_to":"11252"} +{"$label":"ACTS_IN","name":"Ethel Twitty","type":"Role","_key":"14606","_from":"11253","_to":"11252"} +{"$label":"ACTS_IN","name":"Bernie Guerin","type":"Role","_key":"64705","_from":"11253","_to":"40293"} +{"$label":"ACTS_IN","name":"May Mackenzie","type":"Role","_key":"63380","_from":"11253","_to":"39714"} +{"$label":"ACTS_IN","name":"Mrs. Brown","type":"Role","_key":"61337","_from":"11253","_to":"38711"} +{"$label":"ACTS_IN","name":"Nuala O'Loan","type":"Role","_key":"37183","_from":"11253","_to":"25186"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"28353","_from":"11253","_to":"20286"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"19768","_from":"11253","_to":"14601"} +{"$label":"DIRECTED","_key":"14632","_from":"11273","_to":"11256"} +{"$label":"ACTS_IN","name":"Alejandro","type":"Role","_key":"14631","_from":"11272","_to":"11256"} +{"$label":"ACTS_IN","name":"Sindy","type":"Role","_key":"14630","_from":"11271","_to":"11256"} +{"$label":"ACTS_IN","name":"Brandy","type":"Role","_key":"14629","_from":"11270","_to":"11256"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"14628","_from":"11269","_to":"11256"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"14627","_from":"11268","_to":"11256"} +{"$label":"ACTS_IN","name":"Grant's Mother","type":"Role","_key":"14626","_from":"11267","_to":"11256"} +{"$label":"ACTS_IN","name":"Eva\u2019s Mother","type":"Role","_key":"14624","_from":"11266","_to":"11256"} +{"$label":"ACTS_IN","name":"Eva's Father","type":"Role","_key":"14623","_from":"11265","_to":"11256"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"14622","_from":"11264","_to":"11256"} +{"$label":"ACTS_IN","name":"Miep Gies","type":"Role","_key":"14621","_from":"11263","_to":"11256"} +{"$label":"ACTS_IN","name":"Dr. Carl Cohn","type":"Role","_key":"14620","_from":"11262","_to":"11256"} +{"$label":"ACTS_IN","name":"Tito","type":"Role","_key":"14618","_from":"11261","_to":"11256"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"14617","_from":"11260","_to":"11256"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"14616","_from":"11259","_to":"11256"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"14615","_from":"11258","_to":"11256"} +{"$label":"ACTS_IN","name":"Scott Casey","type":"Role","_key":"14612","_from":"11257","_to":"11256"} +{"$label":"ACTS_IN","name":"Randy Bodek","type":"Role","_key":"112048","_from":"11257","_to":"66164"} +{"$label":"ACTS_IN","name":"Everett Calloway","type":"Role","_key":"108528","_from":"11257","_to":"64146"} +{"$label":"ACTS_IN","name":"Ronald Miller","type":"Role","_key":"91918","_from":"11257","_to":"54230"} +{"$label":"ACTS_IN","name":"Andrew Hennings","type":"Role","_key":"70451","_from":"11257","_to":"42891"} +{"$label":"ACTS_IN","name":"Thomas 'Tom' Bailey","type":"Role","_key":"65575","_from":"11257","_to":"40642"} +{"$label":"ACTS_IN","name":"Kenai","type":"Role","_key":"59415","_from":"11257","_to":"37525"} +{"$label":"ACTS_IN","name":"Jimbo Scott","type":"Role","_key":"45269","_from":"11257","_to":"30038"} +{"$label":"ACTS_IN","name":"Robert Philip","type":"Role","_key":"32292","_from":"11257","_to":"22492"} +{"$label":"ACTS_IN","name":"Mark Kincaid","type":"Role","_key":"30294","_from":"11257","_to":"21314"} +{"$label":"ACTS_IN","name":"Pierre Arronax","type":"Role","_key":"24504","_from":"11257","_to":"17715"} +{"$label":"ACTS_IN","name":"Mort","type":"Role","_key":"116991","_from":"11262","_to":"68856"} +{"$label":"ACTS_IN","name":"Mr. Scott","type":"Role","_key":"109466","_from":"11262","_to":"64667"} +{"$label":"ACTS_IN","name":"Mr. Sterling","type":"Role","_key":"57260","_from":"11262","_to":"36317"} +{"$label":"ACTS_IN","name":"Kweli","type":"Role","_key":"57160","_from":"11262","_to":"36271"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"18217","_from":"11262","_to":"13508"} +{"$label":"ACTS_IN","name":"Grandma (voice)","type":"Role","_key":"93566","_from":"11263","_to":"55099"} +{"$label":"ACTS_IN","name":"Morgana (voice)","type":"Role","_key":"66544","_from":"11263","_to":"41140"} +{"$label":"ACTS_IN","name":"Ursula (voice)","type":"Role","_key":"61221","_from":"11263","_to":"38669"} +{"$label":"ACTS_IN","name":"Flor's Husband","type":"Role","_key":"21946","_from":"11265","_to":"16022"} +{"$label":"ACTS_IN","name":"Irma","type":"Role","_key":"88540","_from":"11266","_to":"52472"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"19168","_from":"11266","_to":"14169"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"57660","_from":"11269","_to":"36500"} +{"$label":"ACTS_IN","name":"Kris","type":"Role","_key":"47451","_from":"11269","_to":"31257"} +{"$label":"DIRECTED","_key":"41271","_from":"11273","_to":"27753"} +{"$label":"DIRECTED","_key":"19849","_from":"11273","_to":"14635"} +{"$label":"DIRECTED","_key":"14641","_from":"11279","_to":"11274"} +{"$label":"ACTS_IN","name":"Husky Man","type":"Role","_key":"14640","_from":"11278","_to":"11274"} +{"$label":"ACTS_IN","name":"Dennis Slayne","type":"Role","_key":"14639","_from":"11277","_to":"11274"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"14637","_from":"11276","_to":"11274"} +{"$label":"ACTS_IN","name":"Layla Moore","type":"Role","_key":"14635","_from":"11275","_to":"11274"} +{"$label":"ACTS_IN","name":"Helen Owen","type":"Role","_key":"105339","_from":"11275","_to":"61982"} +{"$label":"ACTS_IN","name":"Charlie Kelsey","type":"Role","_key":"102032","_from":"11275","_to":"60031"} +{"$label":"ACTS_IN","name":"Amy Newman","type":"Role","_key":"99073","_from":"11275","_to":"58367"} +{"$label":"ACTS_IN","name":"Eliza Coles","type":"Role","_key":"57209","_from":"11275","_to":"36289"} +{"$label":"ACTS_IN","name":"Halley Buchanan","type":"Role","_key":"56648","_from":"11275","_to":"35977"} +{"$label":"ACTS_IN","name":"Ava Fontaine Orlov","type":"Role","_key":"15790","_from":"11275","_to":"12028"} +{"$label":"ACTS_IN","name":"Martin Brooks","type":"Role","_key":"64388","_from":"11277","_to":"40118"} +{"$label":"ACTS_IN","name":"Yuri Kotlev","type":"Role","_key":"70489","_from":"11278","_to":"42911"} +{"$label":"DIRECTED","_key":"119951","_from":"11279","_to":"70452"} +{"$label":"DIRECTED","_key":"73079","_from":"11279","_to":"43970"} +{"$label":"DIRECTED","_key":"61360","_from":"11279","_to":"38719"} +{"$label":"DIRECTED","_key":"60438","_from":"11279","_to":"38128"} +{"$label":"DIRECTED","_key":"57925","_from":"11279","_to":"36647"} +{"$label":"DIRECTED","_key":"55092","_from":"11279","_to":"35184"} +{"$label":"DIRECTED","_key":"53283","_from":"11279","_to":"34454"} +{"$label":"DIRECTED","_key":"51079","_from":"11279","_to":"33334"} +{"$label":"DIRECTED","_key":"47121","_from":"11279","_to":"31067"} +{"$label":"DIRECTED","_key":"22647","_from":"11279","_to":"16415"} +{"$label":"DIRECTED","_key":"18177","_from":"11279","_to":"13490"} +{"$label":"DIRECTED","_key":"14651","_from":"11285","_to":"11280"} +{"$label":"ACTS_IN","name":"Dr. Sigmund Freud","type":"Role","_key":"14650","_from":"11284","_to":"11280"} +{"$label":"ACTS_IN","name":"Socrates","type":"Role","_key":"14649","_from":"11283","_to":"11280"} +{"$label":"ACTS_IN","name":"Napoleon","type":"Role","_key":"14648","_from":"11282","_to":"11280"} +{"$label":"ACTS_IN","name":"Missy Preston","type":"Role","_key":"14647","_from":"11281","_to":"11280"} +{"$label":"ACTS_IN","name":"Missy Logan","type":"Role","_key":"14656","_from":"11281","_to":"11286"} +{"$label":"ACTS_IN","name":"Jean Claude","type":"Role","_key":"96271","_from":"11282","_to":"56564"} +{"$label":"ACTS_IN","name":"O'Donnell","type":"Role","_key":"91982","_from":"11283","_to":"54263"} +{"$label":"ACTS_IN","name":"TV Director","type":"Role","_key":"70265","_from":"11284","_to":"42814"} +{"$label":"DIRECTED","_key":"110551","_from":"11285","_to":"65323"} +{"$label":"DIRECTED","_key":"109723","_from":"11285","_to":"64795"} +{"$label":"DIRECTED","_key":"105395","_from":"11285","_to":"62004"} +{"$label":"DIRECTED","_key":"104312","_from":"11285","_to":"61374"} +{"$label":"DIRECTED","_key":"102064","_from":"11285","_to":"60045"} +{"$label":"DIRECTED","_key":"89952","_from":"11285","_to":"53214"} +{"$label":"DIRECTED","_key":"71477","_from":"11285","_to":"43329"} +{"$label":"DIRECTED","_key":"63101","_from":"11285","_to":"39586"} +{"$label":"DIRECTED","_key":"60061","_from":"11285","_to":"37904"} +{"$label":"DIRECTED","_key":"55930","_from":"11285","_to":"35572"} +{"$label":"DIRECTED","_key":"29308","_from":"11285","_to":"20816"} +{"$label":"DIRECTED","_key":"17844","_from":"11285","_to":"13293"} +{"$label":"DIRECTED","_key":"14660","_from":"11287","_to":"11286"} +{"$label":"DIRECTED","_key":"98544","_from":"11287","_to":"58071"} +{"$label":"DIRECTED","_key":"53942","_from":"11287","_to":"34706"} +{"$label":"DIRECTED","_key":"51497","_from":"11287","_to":"33579"} +{"$label":"DIRECTED","_key":"39342","_from":"11287","_to":"26613"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"14669","_from":"11292","_to":"11289"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"14668","_from":"11291","_to":"11289"} +{"$label":"ACTS_IN","name":"Jardine","type":"Role","_key":"14667","_from":"11290","_to":"11289"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"15184","_from":"11290","_to":"11631"} +{"$label":"ACTS_IN","name":"Franz\u00f6sischer Versicherungsmann","type":"Role","_key":"14863","_from":"11290","_to":"11416"} +{"$label":"ACTS_IN","name":"Schuldirektor","type":"Role","_key":"14752","_from":"11290","_to":"11351"} +{"$label":"ACTS_IN","name":"Metulskie","type":"Role","_key":"14680","_from":"11303","_to":"11293"} +{"$label":"ACTS_IN","name":"Polizeipr\u00e4sident","type":"Role","_key":"14679","_from":"11302","_to":"11293"} +{"$label":"ACTS_IN","name":"ohne Angabe","type":"Role","_key":"14678","_from":"11301","_to":"11293"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"14677","_from":"11300","_to":"11293"} +{"$label":"ACTS_IN","name":"Shorty Robinson","type":"Role","_key":"14676","_from":"11299","_to":"11293"} +{"$label":"ACTS_IN","name":"Zirkusdirektor","type":"Role","_key":"14675","_from":"11298","_to":"11293"} +{"$label":"ACTS_IN","name":"Metulskies Vater","type":"Role","_key":"14674","_from":"11297","_to":"11293"} +{"$label":"ACTS_IN","name":"Frau Schneider","type":"Role","_key":"14673","_from":"11296","_to":"11293"} +{"$label":"ACTS_IN","name":"K\u00f6rschgen","type":"Role","_key":"14672","_from":"11295","_to":"11293"} +{"$label":"ACTS_IN","name":"Johnny Flash","type":"Role","_key":"14671","_from":"11294","_to":"11293"} +{"$label":"DIRECTED","_key":"14670","_from":"11294","_to":"11293"} +{"$label":"ACTS_IN","name":"K\u00e4pt'n Silver","type":"Role","_key":"69589","_from":"11294","_to":"42486"} +{"$label":"ACTS_IN","name":"Johnny Flash","type":"Role","_key":"69221","_from":"11294","_to":"42329"} +{"$label":"ACTS_IN","name":"Der Wei\u00dfe Helge","type":"Role","_key":"59774","_from":"11294","_to":"37734"} +{"$label":"ACTS_IN","name":"Alter Sack (voice)","type":"Role","_key":"54267","_from":"11294","_to":"34843"} +{"$label":"ACTS_IN","name":"Der Alte Sack","type":"Role","_key":"51871","_from":"11294","_to":"33840"} +{"$label":"ACTS_IN","name":"Jesaja","type":"Role","_key":"51832","_from":"11294","_to":"33824"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"42199","_from":"11294","_to":"28267"} +{"$label":"ACTS_IN","name":"DJ Johnny Flash","type":"Role","_key":"18880","_from":"11294","_to":"13933"} +{"$label":"ACTS_IN","name":"Doc Snyder","type":"Role","_key":"14737","_from":"11294","_to":"11339"} +{"$label":"ACTS_IN","name":"Dr. Angelika Hasenbein","type":"Role","_key":"14703","_from":"11294","_to":"11314"} +{"$label":"DIRECTED","_key":"69588","_from":"11294","_to":"42486"} +{"$label":"DIRECTED","_key":"14735","_from":"11294","_to":"11339"} +{"$label":"DIRECTED","_key":"14702","_from":"11294","_to":"11314"} +{"$label":"ACTS_IN","name":"Johnny's mother","type":"Role","_key":"69222","_from":"11296","_to":"42329"} +{"$label":"ACTS_IN","name":"Hausmeister","type":"Role","_key":"16689","_from":"11296","_to":"12585"} +{"$label":"ACTS_IN","name":"Tante Uschi","type":"Role","_key":"14716","_from":"11296","_to":"11314"} +{"$label":"ACTS_IN","name":"Major Kroll","type":"Role","_key":"43943","_from":"11302","_to":"29311"} +{"$label":"ACTS_IN","name":"Herr Preissen","type":"Role","_key":"41256","_from":"11302","_to":"27738"} +{"$label":"ACTS_IN","name":"Krot","type":"Role","_key":"32662","_from":"11302","_to":"22691"} +{"$label":"ACTS_IN","name":"Melnik","type":"Role","_key":"27421","_from":"11302","_to":"19690"} +{"$label":"ACTS_IN","name":"K\u00e4semann","type":"Role","_key":"14706","_from":"11302","_to":"11314"} +{"$label":"ACTS_IN","name":"Metulskie","type":"Role","_key":"14711","_from":"11303","_to":"11314"} +{"$label":"ACTS_IN","name":"Celia de la Serna","type":"Role","_key":"14684","_from":"11306","_to":"11304"} +{"$label":"ACTS_IN","name":"Alberto Granado","type":"Role","_key":"14683","_from":"11305","_to":"11304"} +{"$label":"DIRECTED","_key":"14701","_from":"11313","_to":"11307"} +{"$label":"DIRECTED","_key":"14700","_from":"11312","_to":"11307"} +{"$label":"ACTS_IN","name":"Pedro Jiminez (as Trini Lopez)","type":"Role","_key":"14699","_from":"11311","_to":"11307"} +{"$label":"ACTS_IN","name":"Samson Posey","type":"Role","_key":"14697","_from":"11310","_to":"11307"} +{"$label":"ACTS_IN","name":"Sergeant Bowren","type":"Role","_key":"14693","_from":"11309","_to":"11307"} +{"$label":"ACTS_IN","name":"Maj. John Reisman","type":"Role","_key":"14686","_from":"11308","_to":"11307"} +{"$label":"ACTS_IN","name":"The Sergeant","type":"Role","_key":"107138","_from":"11308","_to":"63187"} +{"$label":"ACTS_IN","name":"Colonel Nick Alexander","type":"Role","_key":"107120","_from":"11308","_to":"63169"} +{"$label":"ACTS_IN","name":"Thomas Aloysius Gilhooley","type":"Role","_key":"106205","_from":"11308","_to":"62552"} +{"$label":"ACTS_IN","name":"Vince Stone","type":"Role","_key":"100912","_from":"11308","_to":"59488"} +{"$label":"ACTS_IN","name":"Hector David","type":"Role","_key":"100778","_from":"11308","_to":"59412"} +{"$label":"ACTS_IN","name":"Liberty Valance","type":"Role","_key":"71622","_from":"11308","_to":"43376"} +{"$label":"ACTS_IN","name":"Kid Shelleen","type":"Role","_key":"71609","_from":"11308","_to":"43370"} +{"$label":"ACTS_IN","name":"Meatball","type":"Role","_key":"61453","_from":"11308","_to":"38765"} +{"$label":"ACTS_IN","name":"Jack Osborne","type":"Role","_key":"48871","_from":"11308","_to":"32046"} +{"$label":"ACTS_IN","name":"MP at Trieste","type":"Role","_key":"31883","_from":"11308","_to":"22241"} +{"$label":"ACTS_IN","name":"Wargrave","type":"Role","_key":"17739","_from":"11308","_to":"13233"} +{"$label":"ACTS_IN","name":"DEA Agent John Page","type":"Role","_key":"118655","_from":"11309","_to":"69763"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"112154","_from":"11309","_to":"66231"} +{"$label":"ACTS_IN","name":"Charlie Prince","type":"Role","_key":"98880","_from":"11309","_to":"58264"} +{"$label":"ACTS_IN","name":"Shepard","type":"Role","_key":"88186","_from":"11309","_to":"52321"} +{"$label":"ACTS_IN","name":"Sheriff Kip McKinney","type":"Role","_key":"70839","_from":"11309","_to":"43058"} +{"$label":"ACTS_IN","name":"George Fox","type":"Role","_key":"55385","_from":"11309","_to":"35308"} +{"$label":"ACTS_IN","name":"O.W. Bandy","type":"Role","_key":"50500","_from":"11310","_to":"32983"} +{"$label":"ACTS_IN","name":"Sardinian Captain","type":"Role","_key":"44974","_from":"11310","_to":"29886"} +{"$label":"ACTS_IN","name":"Dan Baker","type":"Role","_key":"38488","_from":"11310","_to":"26003"} +{"$label":"ACTS_IN","name":"Jim Cole","type":"Role","_key":"34990","_from":"11310","_to":"23888"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"34983","_from":"11310","_to":"23881"} +{"$label":"DIRECTED","_key":"114678","_from":"11312","_to":"67551"} +{"$label":"DIRECTED","_key":"110653","_from":"11312","_to":"65369"} +{"$label":"DIRECTED","_key":"91399","_from":"11312","_to":"53906"} +{"$label":"DIRECTED","_key":"62459","_from":"11312","_to":"39339"} +{"$label":"DIRECTED","_key":"61892","_from":"11312","_to":"38954"} +{"$label":"DIRECTED","_key":"61887","_from":"11312","_to":"38952"} +{"$label":"DIRECTED","_key":"35390","_from":"11312","_to":"24086"} +{"$label":"DIRECTED","_key":"35347","_from":"11312","_to":"24065"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"14715","_from":"11324","_to":"11314"} +{"$label":"ACTS_IN","name":"Statist","type":"Role","_key":"14714","_from":"11323","_to":"11314"} +{"$label":"ACTS_IN","name":"Statist","type":"Role","_key":"14713","_from":"11322","_to":"11314"} +{"$label":"ACTS_IN","name":"Zeitungsmann","type":"Role","_key":"14712","_from":"11321","_to":"11314"} +{"$label":"ACTS_IN","name":"Annegreth","type":"Role","_key":"14710","_from":"11320","_to":"11314"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"14709","_from":"11319","_to":"11314"} +{"$label":"ACTS_IN","name":"Peterchen","type":"Role","_key":"14708","_from":"11318","_to":"11314"} +{"$label":"ACTS_IN","name":"Schneider Voss","type":"Role","_key":"14707","_from":"11317","_to":"11314"} +{"$label":"ACTS_IN","name":"Kalfaktor","type":"Role","_key":"14705","_from":"11316","_to":"11314"} +{"$label":"ACTS_IN","name":"Frau Besig","type":"Role","_key":"14704","_from":"11315","_to":"11314"} +{"$label":"ACTS_IN","name":"Doppel-Dieter","type":"Role","_key":"65408","_from":"11318","_to":"40557"} +{"$label":"ACTS_IN","name":"Hansel","type":"Role","_key":"35550","_from":"11318","_to":"24164"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34007","_from":"11318","_to":"23394"} +{"$label":"ACTS_IN","name":"Don Fernando de Guzman","type":"Role","_key":"17358","_from":"11318","_to":"12982"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40604","_from":"11324","_to":"27339"} +{"$label":"ACTS_IN","name":"Tabulador","type":"Role","_key":"14732","_from":"11335","_to":"11325"} +{"$label":"ACTS_IN","name":"Cortez","type":"Role","_key":"14731","_from":"11334","_to":"11325"} +{"$label":"ACTS_IN","name":"Brother Ignacio","type":"Role","_key":"14730","_from":"11333","_to":"11325"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"14729","_from":"11332","_to":"11325"} +{"$label":"ACTS_IN","name":"Governor's Wife","type":"Role","_key":"14728","_from":"11331","_to":"11325"} +{"$label":"ACTS_IN","name":"Ricardo","type":"Role","_key":"14725","_from":"11330","_to":"11325"} +{"$label":"ACTS_IN","name":"Ferroq","type":"Role","_key":"14724","_from":"11329","_to":"11325"} +{"$label":"ACTS_IN","name":"Lupe","type":"Role","_key":"14722","_from":"11328","_to":"11325"} +{"$label":"ACTS_IN","name":"Jacob McGivens","type":"Role","_key":"14721","_from":"11327","_to":"11325"} +{"$label":"ACTS_IN","name":"Joaquin","type":"Role","_key":"14719","_from":"11326","_to":"11325"} +{"$label":"ACTS_IN","name":"Chief","type":"Role","_key":"90493","_from":"11327","_to":"53461"} +{"$label":"ACTS_IN","name":"Daxus","type":"Role","_key":"58074","_from":"11327","_to":"36741"} +{"$label":"ACTS_IN","name":"Bob Morgan","type":"Role","_key":"53844","_from":"11327","_to":"34683"} +{"$label":"ACTS_IN","name":"WitSec Agent Calderon","type":"Role","_key":"52727","_from":"11327","_to":"34221"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"36600","_from":"11327","_to":"24806"} +{"$label":"ACTS_IN","name":"Toombs (Voice)","type":"Role","_key":"23621","_from":"11327","_to":"17126"} +{"$label":"ACTS_IN","name":"Toombs","type":"Role","_key":"23608","_from":"11327","_to":"17115"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"17717","_from":"11327","_to":"13216"} +{"$label":"ACTS_IN","name":"William Bedford","type":"Role","_key":"15077","_from":"11327","_to":"11583"} +{"$label":"ACTS_IN","name":"Botcha","type":"Role","_key":"100041","_from":"11329","_to":"59014"} +{"$label":"ACTS_IN","name":"Princess Karina","type":"Role","_key":"61461","_from":"11331","_to":"38771"} +{"$label":"ACTS_IN","name":"Rojas","type":"Role","_key":"114049","_from":"11334","_to":"67156"} +{"$label":"DIRECTED","_key":"14734","_from":"11338","_to":"11337"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14747","_from":"11350","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14746","_from":"11349","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14745","_from":"11348","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14744","_from":"11347","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14743","_from":"11346","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14742","_from":"11345","_to":"11339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"14741","_from":"11344","_to":"11339"} +{"$label":"ACTS_IN","name":"Edelfr\u00e4lein","type":"Role","_key":"14740","_from":"11343","_to":"11339"} +{"$label":"ACTS_IN","name":"Edeldame","type":"Role","_key":"14739","_from":"11342","_to":"11339"} +{"$label":"ACTS_IN","name":"Buddy Casino","type":"Role","_key":"14738","_from":"11341","_to":"11339"} +{"$label":"DIRECTED","_key":"14736","_from":"11340","_to":"11339"} +{"$label":"DIRECTED","_key":"91519","_from":"11340","_to":"53951"} +{"$label":"DIRECTED","_key":"68870","_from":"11340","_to":"42184"} +{"$label":"DIRECTED","_key":"67904","_from":"11340","_to":"41723"} +{"$label":"DIRECTED","_key":"67696","_from":"11340","_to":"41636"} +{"$label":"DIRECTED","_key":"64444","_from":"11340","_to":"40158"} +{"$label":"DIRECTED","_key":"55456","_from":"11340","_to":"35342"} +{"$label":"ACTS_IN","name":"Hoteldirektor","type":"Role","_key":"34155","_from":"11344","_to":"23455"} +{"$label":"ACTS_IN","name":"Xaver","type":"Role","_key":"43252","_from":"11345","_to":"28884"} +{"$label":"ACTS_IN","name":"Madeleine Doinel","type":"Role","_key":"14758","_from":"11357","_to":"11351"} +{"$label":"ACTS_IN","name":"Juliens Gro\u00dfmutter","type":"Role","_key":"14756","_from":"11356","_to":"11351"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"14755","_from":"11355","_to":"11351"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"14754","_from":"11354","_to":"11351"} +{"$label":"ACTS_IN","name":"Chantal Petit","type":"Role","_key":"14751","_from":"11353","_to":"11351"} +{"$label":"ACTS_IN","name":"Lydie Richet","type":"Role","_key":"14750","_from":"11352","_to":"11351"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"30884","_from":"11357","_to":"21649"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"14765","_from":"11360","_to":"11358"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"14760","_from":"11359","_to":"11358"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"91055","_from":"11359","_to":"53726"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"61854","_from":"11359","_to":"38933"} +{"$label":"ACTS_IN","name":"Andreas Baader","type":"Role","_key":"52536","_from":"11359","_to":"34158"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"15057","_from":"11359","_to":"11571"} +{"$label":"DIRECTED","_key":"14772","_from":"11362","_to":"11361"} +{"$label":"DIRECTED","_key":"94008","_from":"11362","_to":"55360"} +{"$label":"DIRECTED","_key":"56468","_from":"11362","_to":"35870"} +{"$label":"DIRECTED","_key":"34228","_from":"11362","_to":"23502"} +{"$label":"ACTS_IN","name":"Millie Trent","type":"Role","_key":"14782","_from":"11370","_to":"11363"} +{"$label":"ACTS_IN","name":"Lomm","type":"Role","_key":"14781","_from":"11369","_to":"11363"} +{"$label":"ACTS_IN","name":"Mr. Leslie","type":"Role","_key":"14780","_from":"11368","_to":"11363"} +{"$label":"ACTS_IN","name":"Josua Harras","type":"Role","_key":"14778","_from":"11367","_to":"11363"} +{"$label":"ACTS_IN","name":"Beryl Stedman","type":"Role","_key":"14775","_from":"11366","_to":"11363"} +{"$label":"ACTS_IN","name":"Inspektor Bill Elford","type":"Role","_key":"14774","_from":"11365","_to":"11363"} +{"$label":"DIRECTED","_key":"14773","_from":"11364","_to":"11363"} +{"$label":"DIRECTED","_key":"55184","_from":"11364","_to":"35205"} +{"$label":"DIRECTED","_key":"55179","_from":"11364","_to":"35204"} +{"$label":"DIRECTED","_key":"55174","_from":"11364","_to":"35203"} +{"$label":"DIRECTED","_key":"55169","_from":"11364","_to":"35202"} +{"$label":"DIRECTED","_key":"55157","_from":"11364","_to":"35200"} +{"$label":"DIRECTED","_key":"55152","_from":"11364","_to":"35198"} +{"$label":"DIRECTED","_key":"55141","_from":"11364","_to":"35195"} +{"$label":"DIRECTED","_key":"53276","_from":"11364","_to":"34453"} +{"$label":"DIRECTED","_key":"44126","_from":"11364","_to":"29420"} +{"$label":"DIRECTED","_key":"38220","_from":"11364","_to":"25818"} +{"$label":"DIRECTED","_key":"14825","_from":"11364","_to":"11387"} +{"$label":"ACTS_IN","name":"Edgar Wallace ( Voice )","type":"Role","_key":"44231","_from":"11364","_to":"29470"} +{"$label":"ACTS_IN","name":"Edgar Wallace ( voic )","type":"Role","_key":"44140","_from":"11364","_to":"29420"} +{"$label":"ACTS_IN","name":"Edgar Wallace ( Voice )","type":"Role","_key":"14824","_from":"11364","_to":"11387"} +{"$label":"ACTS_IN","name":"Inspector James W. Wesby","type":"Role","_key":"55180","_from":"11365","_to":"35205"} +{"$label":"ACTS_IN","name":"Frank Tanner","type":"Role","_key":"55175","_from":"11365","_to":"35204"} +{"$label":"ACTS_IN","name":"James W. Wesby","type":"Role","_key":"55154","_from":"11365","_to":"35200"} +{"$label":"ACTS_IN","name":"Humphrey Connery","type":"Role","_key":"14810","_from":"11365","_to":"11387"} +{"$label":"ACTS_IN","name":"Margie Fielding","type":"Role","_key":"55181","_from":"11366","_to":"35205"} +{"$label":"ACTS_IN","name":"Geierwally","type":"Role","_key":"43083","_from":"11366","_to":"28781"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40749","_from":"11366","_to":"27425"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"38126","_from":"11366","_to":"25779"} +{"$label":"ACTS_IN","name":"Lord Castlepool","type":"Role","_key":"64773","_from":"11367","_to":"40310"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"44809","_from":"11367","_to":"29804"} +{"$label":"ACTS_IN","name":"Major Claus Dieter Graf Schnackewitz","type":"Role","_key":"44584","_from":"11367","_to":"29676"} +{"$label":"ACTS_IN","name":"Barnaby","type":"Role","_key":"44129","_from":"11367","_to":"29420"} +{"$label":"ACTS_IN","name":"Horatio","type":"Role","_key":"44073","_from":"11367","_to":"29386"} +{"$label":"ACTS_IN","name":"Mr. Brown","type":"Role","_key":"43155","_from":"11367","_to":"28819"} +{"$label":"ACTS_IN","name":"Gerhard Hoff","type":"Role","_key":"42679","_from":"11367","_to":"28569"} +{"$label":"ACTS_IN","name":"Lord Castlepool","type":"Role","_key":"38219","_from":"11367","_to":"25817"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"38209","_from":"11367","_to":"25812"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"38184","_from":"11367","_to":"25804"} +{"$label":"ACTS_IN","name":"Spike Holland","type":"Role","_key":"38169","_from":"11367","_to":"25798"} +{"$label":"ACTS_IN","name":"Anthony Edwards","type":"Role","_key":"38158","_from":"11367","_to":"25795"} +{"$label":"ACTS_IN","name":"Lord Castlepool","type":"Role","_key":"28533","_from":"11367","_to":"20392"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"27577","_from":"11367","_to":"19773"} +{"$label":"ACTS_IN","name":"Prof. Ewald Ziebitz","type":"Role","_key":"19115","_from":"11367","_to":"14123"} +{"$label":"ACTS_IN","name":"Roger Lane","type":"Role","_key":"44145","_from":"11368","_to":"29420"} +{"$label":"ACTS_IN","name":"Salzmann","type":"Role","_key":"31328","_from":"11368","_to":"21905"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"43782","_from":"11369","_to":"29234"} +{"$label":"ACTS_IN","name":"Caesar","type":"Role","_key":"41829","_from":"11369","_to":"28067"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41308","_from":"11370","_to":"27774"} +{"$label":"ACTS_IN","name":"Donovan","type":"Role","_key":"14791","_from":"11377","_to":"11372"} +{"$label":"ACTS_IN","name":"Record Executive","type":"Role","_key":"14789","_from":"11376","_to":"11372"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"14788","_from":"11375","_to":"11372"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"14787","_from":"11374","_to":"11372"} +{"$label":"ACTS_IN","name":"Asia","type":"Role","_key":"14786","_from":"11373","_to":"11372"} +{"$label":"ACTS_IN","name":"Sarah Mandy","type":"Role","_key":"103584","_from":"11373","_to":"60927"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"101551","_from":"11373","_to":"59772"} +{"$label":"ACTS_IN","name":"Slack","type":"Role","_key":"71543","_from":"11373","_to":"43346"} +{"$label":"ACTS_IN","name":"Christine Daa\u00e9","type":"Role","_key":"64365","_from":"11373","_to":"40115"} +{"$label":"ACTS_IN","name":"Yelena","type":"Role","_key":"46701","_from":"11373","_to":"30829"} +{"$label":"ACTS_IN","name":"\u00c9ponine","type":"Role","_key":"31638","_from":"11373","_to":"22083"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"24316","_from":"11373","_to":"17618"} +{"$label":"ACTS_IN","name":"Vellini","type":"Role","_key":"17375","_from":"11373","_to":"12998"} +{"$label":"ACTS_IN","name":"Comtesse du Barry","type":"Role","_key":"16284","_from":"11373","_to":"12347"} +{"$label":"ACTS_IN","name":"Mike (as Scott Green)","type":"Role","_key":"119233","_from":"11374","_to":"70052"} +{"$label":"ACTS_IN","name":"Scratch","type":"Role","_key":"17242","_from":"11374","_to":"12905"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"88932","_from":"11375","_to":"52677"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"63812","_from":"11375","_to":"39897"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"47382","_from":"11375","_to":"31196"} +{"$label":"DIRECTED","_key":"14792","_from":"11379","_to":"11378"} +{"$label":"DIRECTED","_key":"14794","_from":"11382","_to":"11380"} +{"$label":"DIRECTED","_key":"14793","_from":"11381","_to":"11380"} +{"$label":"DIRECTED","_key":"36064","_from":"11381","_to":"24484"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"14799","_from":"11384","_to":"11383"} +{"$label":"ACTS_IN","name":"Captain EO","type":"Role","_key":"120202","_from":"11384","_to":"70592"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95289","_from":"11384","_to":"56061"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93364","_from":"11384","_to":"54996"} +{"$label":"ACTS_IN","name":"Sonarman 2nd Class Ronald Jones","type":"Role","_key":"14808","_from":"11386","_to":"11385"} +{"$label":"ACTS_IN","name":"Conroy Price","type":"Role","_key":"116864","_from":"11386","_to":"68798"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"90027","_from":"11386","_to":"53253"} +{"$label":"ACTS_IN","name":"Foreman","type":"Role","_key":"88762","_from":"11386","_to":"52604"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"62881","_from":"11386","_to":"39507"} +{"$label":"ACTS_IN","name":"George Grandey","type":"Role","_key":"57881","_from":"11386","_to":"36623"} +{"$label":"ACTS_IN","name":"Roger Hines","type":"Role","_key":"37815","_from":"11386","_to":"25635"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"20566","_from":"11386","_to":"15049"} +{"$label":"ACTS_IN","name":"Tom Heynes","type":"Role","_key":"14823","_from":"11397","_to":"11387"} +{"$label":"ACTS_IN","name":"Ken Nelson","type":"Role","_key":"14822","_from":"11396","_to":"11387"} +{"$label":"ACTS_IN","name":"Der Kapit\u00e4n","type":"Role","_key":"14820","_from":"11395","_to":"11387"} +{"$label":"ACTS_IN","name":"Dorothy Cornick","type":"Role","_key":"14819","_from":"11394","_to":"11387"} +{"$label":"ACTS_IN","name":"Anwalt Robert Jackson","type":"Role","_key":"14818","_from":"11393","_to":"11387"} +{"$label":"ACTS_IN","name":"Jane Wilson","type":"Role","_key":"14817","_from":"11392","_to":"11387"} +{"$label":"ACTS_IN","name":"Lord Beverton","type":"Role","_key":"14815","_from":"11391","_to":"11387"} +{"$label":"ACTS_IN","name":"Douglas Fairbanks","type":"Role","_key":"14814","_from":"11390","_to":"11387"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Wilson","type":"Role","_key":"14813","_from":"11389","_to":"11387"} +{"$label":"ACTS_IN","name":"Catharina Wilson","type":"Role","_key":"14812","_from":"11388","_to":"11387"} +{"$label":"ACTS_IN","name":"Frau Krause","type":"Role","_key":"43938","_from":"11388","_to":"29311"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"39989","_from":"11388","_to":"27002"} +{"$label":"ACTS_IN","name":"Marjorie Wells","type":"Role","_key":"38179","_from":"11388","_to":"25804"} +{"$label":"ACTS_IN","name":"Linnfeld","type":"Role","_key":"28119","_from":"11389","_to":"20150"} +{"$label":"ACTS_IN","name":"Stephan Derrick","type":"Role","_key":"66827","_from":"11390","_to":"41279"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45075","_from":"11390","_to":"29929"} +{"$label":"ACTS_IN","name":"Charles Barton","type":"Role","_key":"38125","_from":"11390","_to":"25779"} +{"$label":"ACTS_IN","name":"Dr. Andrew Thorrsen","type":"Role","_key":"38111","_from":"11390","_to":"25774"} +{"$label":"ACTS_IN","name":"Charles Anderson","type":"Role","_key":"32711","_from":"11390","_to":"22720"} +{"$label":"ACTS_IN","name":"F\u00fcrst","type":"Role","_key":"31350","_from":"11391","_to":"21912"} +{"$label":"ACTS_IN","name":"Oelsen","type":"Role","_key":"31321","_from":"11391","_to":"21896"} +{"$label":"ACTS_IN","name":"Eleanor \"Nora\" Ward, geb. Finlay","type":"Role","_key":"55171","_from":"11392","_to":"35203"} +{"$label":"ACTS_IN","name":"Herta Rosseni","type":"Role","_key":"44221","_from":"11392","_to":"29470"} +{"$label":"ACTS_IN","name":"Sissy Bohl","type":"Role","_key":"44203","_from":"11392","_to":"29461"} +{"$label":"ACTS_IN","name":"Anni Hartmann","type":"Role","_key":"44162","_from":"11392","_to":"29437"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"40339","_from":"11392","_to":"27210"} +{"$label":"ACTS_IN","name":"Janette","type":"Role","_key":"39975","_from":"11392","_to":"27002"} +{"$label":"ACTS_IN","name":"Frau Lucie Gladow","type":"Role","_key":"31422","_from":"11392","_to":"21952"} +{"$label":"ACTS_IN","name":"Do","type":"Role","_key":"31317","_from":"11392","_to":"21896"} +{"$label":"ACTS_IN","name":"Marianne von Krausnitz","type":"Role","_key":"28042","_from":"11392","_to":"20097"} +{"$label":"ACTS_IN","name":"Lola`s Mutter","type":"Role","_key":"19821","_from":"11392","_to":"14625"} +{"$label":"ACTS_IN","name":"Willem","type":"Role","_key":"64177","_from":"11393","_to":"40043"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"44741","_from":"11393","_to":"29769"} +{"$label":"ACTS_IN","name":"Robert von Stetten","type":"Role","_key":"43124","_from":"11393","_to":"28801"} +{"$label":"ACTS_IN","name":"Stubenm\u00e4dchen","type":"Role","_key":"43217","_from":"11394","_to":"28859"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"38204","_from":"11394","_to":"25812"} +{"$label":"ACTS_IN","name":"M\u00e4dchen unter der Dusche","type":"Role","_key":"32362","_from":"11394","_to":"22533"} +{"$label":"ACTS_IN","name":"Lisbeths Oheim","type":"Role","_key":"92602","_from":"11395","_to":"54659"} +{"$label":"ACTS_IN","name":"Arthur Gine","type":"Role","_key":"44070","_from":"11396","_to":"29386"} +{"$label":"ACTS_IN","name":"Julius Savini","type":"Role","_key":"38165","_from":"11396","_to":"25798"} +{"$label":"ACTS_IN","name":"Pitt","type":"Role","_key":"44846","_from":"11397","_to":"29829"} +{"$label":"ACTS_IN","name":"Harms Brockdorf","type":"Role","_key":"43777","_from":"11397","_to":"29234"} +{"$label":"ACTS_IN","name":"Ingo Werner","type":"Role","_key":"40527","_from":"11397","_to":"27287"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"32720","_from":"11397","_to":"22720"} +{"$label":"ACTS_IN","name":"Voic of Tom Rowland","type":"Role","_key":"32431","_from":"11397","_to":"22563"} +{"$label":"ACTS_IN","name":"Voic of Capt. Tom Rowland","type":"Role","_key":"32418","_from":"11397","_to":"22555"} +{"$label":"ACTS_IN","name":"Voic of Tom Rowland","type":"Role","_key":"32406","_from":"11397","_to":"22551"} +{"$label":"ACTS_IN","name":"Voic of Tom Rowland","type":"Role","_key":"32393","_from":"11397","_to":"22544"} +{"$label":"ACTS_IN","name":"Voic of Capt. Tom Rowland","type":"Role","_key":"32336","_from":"11397","_to":"22516"} +{"$label":"ACTS_IN","name":"Voic of Cap. Tom Rowland","type":"Role","_key":"32320","_from":"11397","_to":"22499"} +{"$label":"ACTS_IN","name":"Voic of Pedro Ortiz","type":"Role","_key":"27598","_from":"11397","_to":"19788"} +{"$label":"DIRECTED","_key":"14835","_from":"11406","_to":"11398"} +{"$label":"ACTS_IN","name":"Salvatore Volfoni","type":"Role","_key":"14834","_from":"11405","_to":"11398"} +{"$label":"ACTS_IN","name":"Le pr\u00e9sident N'Jala","type":"Role","_key":"14833","_from":"11404","_to":"11398"} +{"$label":"ACTS_IN","name":"Alice Ancelin","type":"Role","_key":"14832","_from":"11403","_to":"11398"} +{"$label":"ACTS_IN","name":"Capitaine Valeras","type":"Role","_key":"14831","_from":"11402","_to":"11398"} +{"$label":"ACTS_IN","name":"Ministre","type":"Role","_key":"14830","_from":"11401","_to":"11398"} +{"$label":"ACTS_IN","name":"Colonel Martin","type":"Role","_key":"14829","_from":"11400","_to":"11398"} +{"$label":"ACTS_IN","name":"Jeanne Baumont","type":"Role","_key":"14828","_from":"11399","_to":"11398"} +{"$label":"ACTS_IN","name":"la ma\u00eetresse","type":"Role","_key":"116445","_from":"11399","_to":"68538"} +{"$label":"ACTS_IN","name":"l'homme du wagon-restaurant","type":"Role","_key":"34065","_from":"11400","_to":"23411"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30883","_from":"11400","_to":"21649"} +{"$label":"ACTS_IN","name":"Flammarin","type":"Role","_key":"30708","_from":"11400","_to":"21541"} +{"$label":"ACTS_IN","name":"Louison","type":"Role","_key":"21546","_from":"11400","_to":"15751"} +{"$label":"ACTS_IN","name":"Inspektor Balmain","type":"Role","_key":"16385","_from":"11400","_to":"12400"} +{"$label":"ACTS_IN","name":"Daxiat","type":"Role","_key":"15179","_from":"11400","_to":"11631"} +{"$label":"ACTS_IN","name":"Alfred Rosmer","type":"Role","_key":"33485","_from":"11401","_to":"23163"} +{"$label":"ACTS_IN","name":"La Tullaye","type":"Role","_key":"20758","_from":"11401","_to":"15175"} +{"$label":"ACTS_IN","name":"Pierre Lachenay","type":"Role","_key":"15213","_from":"11401","_to":"11648"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38064","_from":"11402","_to":"25746"} +{"$label":"ACTS_IN","name":"Le docteur Rue","type":"Role","_key":"30640","_from":"11402","_to":"21513"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"96141","_from":"11403","_to":"56505"} +{"$label":"ACTS_IN","name":"Berlin","type":"Role","_key":"27485","_from":"11403","_to":"19724"} +{"$label":"ACTS_IN","name":"Inspecteur Rojinski","type":"Role","_key":"89929","_from":"11405","_to":"53209"} +{"$label":"ACTS_IN","name":"Jolivet","type":"Role","_key":"72013","_from":"11405","_to":"43545"} +{"$label":"ACTS_IN","name":"Blache","type":"Role","_key":"70101","_from":"11405","_to":"42738"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"35246","_from":"11405","_to":"24002"} +{"$label":"ACTS_IN","name":"Monsieur Hausman","type":"Role","_key":"33819","_from":"11405","_to":"23307"} +{"$label":"ACTS_IN","name":"No\u00ebl","type":"Role","_key":"33728","_from":"11405","_to":"23267"} +{"$label":"ACTS_IN","name":"l'avocat de la partie civile","type":"Role","_key":"30029","_from":"11405","_to":"21177"} +{"$label":"ACTS_IN","name":"Monsieur des Grassins","type":"Role","_key":"21020","_from":"11405","_to":"15383"} +{"$label":"DIRECTED","_key":"90150","_from":"11406","_to":"53304"} +{"$label":"DIRECTED","_key":"21053","_from":"11406","_to":"15398"} +{"$label":"ACTS_IN","name":"Dobie","type":"Role","_key":"14844","_from":"11415","_to":"11407"} +{"$label":"ACTS_IN","name":"Comanchen - H\u00e4uptling","type":"Role","_key":"14842","_from":"11414","_to":"11407"} +{"$label":"ACTS_IN","name":"Comanche Lance","type":"Role","_key":"14841","_from":"11413","_to":"11407"} +{"$label":"ACTS_IN","name":"Mr. Lowe","type":"Role","_key":"14840","_from":"11412","_to":"11407"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"14839","_from":"11411","_to":"11407"} +{"$label":"ACTS_IN","name":"Mrs. Lowe","type":"Role","_key":"14838","_from":"11410","_to":"11407"} +{"$label":"ACTS_IN","name":"Jefferson Cody","type":"Role","_key":"14837","_from":"11409","_to":"11407"} +{"$label":"DIRECTED","_key":"14836","_from":"11408","_to":"11407"} +{"$label":"ACTS_IN","name":"Colonel Thorwald","type":"Role","_key":"116666","_from":"11409","_to":"68678"} +{"$label":"ACTS_IN","name":"Vance Irby","type":"Role","_key":"114145","_from":"11409","_to":"67220"} +{"$label":"ACTS_IN","name":"Adam Mercy","type":"Role","_key":"104290","_from":"11409","_to":"61363"} +{"$label":"ACTS_IN","name":"Ellen Benson","type":"Role","_key":"116034","_from":"11410","_to":"68332"} +{"$label":"ACTS_IN","name":"Hunt Bromley","type":"Role","_key":"112150","_from":"11411","_to":"66231"} +{"$label":"ACTS_IN","name":"Ollie Weaver","type":"Role","_key":"94031","_from":"11411","_to":"55371"} +{"$label":"ACTS_IN","name":"Alexandres Liebhaber","type":"Role","_key":"14864","_from":"11428","_to":"11416"} +{"$label":"ACTS_IN","name":"Stuntman","type":"Role","_key":"14862","_from":"11427","_to":"11416"} +{"$label":"ACTS_IN","name":"Photograph","type":"Role","_key":"14861","_from":"11426","_to":"11416"} +{"$label":"ACTS_IN","name":"Madame Lajoie","type":"Role","_key":"14860","_from":"11425","_to":"11416"} +{"$label":"ACTS_IN","name":"Lajoie","type":"Role","_key":"14859","_from":"11424","_to":"11416"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"14858","_from":"11423","_to":"11416"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"14856","_from":"11422","_to":"11416"} +{"$label":"ACTS_IN","name":"Doctor Nelson","type":"Role","_key":"14855","_from":"11421","_to":"11416"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"14854","_from":"11420","_to":"11416"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"14853","_from":"11419","_to":"11416"} +{"$label":"ACTS_IN","name":"Severine","type":"Role","_key":"14849","_from":"11418","_to":"11416"} +{"$label":"ACTS_IN","name":"Alexandre","type":"Role","_key":"14848","_from":"11417","_to":"11416"} +{"$label":"ACTS_IN","name":"M. Blomart","type":"Role","_key":"34389","_from":"11417","_to":"23576"} +{"$label":"ACTS_IN","name":"Marquis de Puisargue","type":"Role","_key":"29944","_from":"11417","_to":"21159"} +{"$label":"ACTS_IN","name":"Jean-Pierre Aumont","type":"Role","_key":"29507","_from":"11417","_to":"20909"} +{"$label":"ACTS_IN","name":"Christian Rosetti","type":"Role","_key":"27845","_from":"11417","_to":"19960"} +{"$label":"ACTS_IN","name":"Andre St. Avit","type":"Role","_key":"27254","_from":"11417","_to":"19597"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"118789","_from":"11418","_to":"69840"} +{"$label":"ACTS_IN","name":"Queen Ariadne \/ Violet","type":"Role","_key":"100553","_from":"11418","_to":"59305"} +{"$label":"ACTS_IN","name":"Natalia Trotsky","type":"Role","_key":"33481","_from":"11418","_to":"23163"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31653","_from":"11418","_to":"22091"} +{"$label":"ACTS_IN","name":"Helena Merrill","type":"Role","_key":"27903","_from":"11418","_to":"20003"} +{"$label":"ACTS_IN","name":"Pica Di Bernardone","type":"Role","_key":"22064","_from":"11418","_to":"16093"} +{"$label":"ACTS_IN","name":"Herodias","type":"Role","_key":"21207","_from":"11418","_to":"15473"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"20950","_from":"11418","_to":"15329"} +{"$label":"ACTS_IN","name":"Aubin","type":"Role","_key":"40847","_from":"11419","_to":"27492"} +{"$label":"ACTS_IN","name":"Elevator operator","type":"Role","_key":"34402","_from":"11419","_to":"23576"} +{"$label":"ACTS_IN","name":"Monique Maroyeur","type":"Role","_key":"27298","_from":"11420","_to":"19624"} +{"$label":"ACTS_IN","name":"Ferdinant","type":"Role","_key":"71985","_from":"11422","_to":"43537"} +{"$label":"ACTS_IN","name":"La Fl\u00e8che","type":"Role","_key":"71525","_from":"11422","_to":"43339"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"68501","_from":"11422","_to":"42017"} +{"$label":"ACTS_IN","name":"Cur\u00e9","type":"Role","_key":"21285","_from":"11422","_to":"15565"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"30126","_from":"11428","_to":"21230"} +{"$label":"ACTS_IN","name":"Michel Barbet","type":"Role","_key":"29843","_from":"11428","_to":"21113"} +{"$label":"ACTS_IN","name":"Comte de Guiche","type":"Role","_key":"29696","_from":"11428","_to":"21025"} +{"$label":"ACTS_IN","name":"Bertrand Fabre","type":"Role","_key":"21545","_from":"11428","_to":"15751"} +{"$label":"DIRECTED","_key":"14874","_from":"11432","_to":"11429"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"14870","_from":"11431","_to":"11429"} +{"$label":"ACTS_IN","name":"Catherine Allen","type":"Role","_key":"14869","_from":"11430","_to":"11429"} +{"$label":"ACTS_IN","name":"Prudy Perkins","type":"Role","_key":"70771","_from":"11430","_to":"43036"} +{"$label":"ACTS_IN","name":"Grandpa Max","type":"Role","_key":"106615","_from":"11431","_to":"62820"} +{"$label":"ACTS_IN","name":"Captain Cody Briggs","type":"Role","_key":"104664","_from":"11431","_to":"61577"} +{"$label":"ACTS_IN","name":"John Majors","type":"Role","_key":"99834","_from":"11431","_to":"58886"} +{"$label":"ACTS_IN","name":"Ed Solomon","type":"Role","_key":"60248","_from":"11431","_to":"38004"} +{"$label":"DIRECTED","_key":"111490","_from":"11432","_to":"65834"} +{"$label":"DIRECTED","_key":"47827","_from":"11432","_to":"31490"} +{"$label":"DIRECTED","_key":"14879","_from":"11434","_to":"11433"} +{"$label":"DIRECTED","_key":"106954","_from":"11434","_to":"63051"} +{"$label":"DIRECTED","_key":"73140","_from":"11434","_to":"43989"} +{"$label":"DIRECTED","_key":"72796","_from":"11434","_to":"43864"} +{"$label":"DIRECTED","_key":"55870","_from":"11434","_to":"35537"} +{"$label":"DIRECTED","_key":"22281","_from":"11434","_to":"16205"} +{"$label":"DIRECTED","_key":"15696","_from":"11434","_to":"11965"} +{"$label":"ACTS_IN","name":"Daisuke Serizawa-hakase","type":"Role","_key":"14884","_from":"11439","_to":"11435"} +{"$label":"ACTS_IN","name":"Hideto Ogata","type":"Role","_key":"14883","_from":"11438","_to":"11435"} +{"$label":"ACTS_IN","name":"Emiko Yamane","type":"Role","_key":"14882","_from":"11437","_to":"11435"} +{"$label":"DIRECTED","_key":"14880","_from":"11436","_to":"11435"} +{"$label":"DIRECTED","_key":"121071","_from":"11436","_to":"71100"} +{"$label":"DIRECTED","_key":"90007","_from":"11436","_to":"53243"} +{"$label":"DIRECTED","_key":"26392","_from":"11436","_to":"18962"} +{"$label":"DIRECTED","_key":"26277","_from":"11436","_to":"18871"} +{"$label":"DIRECTED","_key":"25977","_from":"11436","_to":"18678"} +{"$label":"DIRECTED","_key":"14891","_from":"11436","_to":"11448"} +{"$label":"DIRECTED","_key":"14888","_from":"11436","_to":"11444"} +{"$label":"ACTS_IN","name":"UN Secretary General Naotar\u00f4 Daigo","type":"Role","_key":"105829","_from":"11438","_to":"62299"} +{"$label":"ACTS_IN","name":"Yoshimura","type":"Role","_key":"26089","_from":"11438","_to":"18745"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"14892","_from":"11438","_to":"11448"} +{"$label":"ACTS_IN","name":"Capt. Yamoto","type":"Role","_key":"26095","_from":"11439","_to":"18745"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"14887","_from":"11443","_to":"11440"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"14886","_from":"11442","_to":"11440"} +{"$label":"DIRECTED","_key":"14885","_from":"11441","_to":"11440"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"14890","_from":"11446","_to":"11444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"14889","_from":"11445","_to":"11444"} +{"$label":"ACTS_IN","name":"Dr. Kasumi","type":"Role","_key":"116853","_from":"11445","_to":"68793"} +{"$label":"ACTS_IN","name":"Dr. Yuzo Kawaji","type":"Role","_key":"26393","_from":"11445","_to":"18962"} +{"$label":"ACTS_IN","name":"Shigeru Kawamura, colliery engineer","type":"Role","_key":"121072","_from":"11446","_to":"71100"} +{"$label":"ACTS_IN","name":"Sahara Kenji","type":"Role","_key":"64586","_from":"11446","_to":"40218"} +{"$label":"ACTS_IN","name":"Minister Takayuki Segawa","type":"Role","_key":"44254","_from":"11446","_to":"29483"} +{"$label":"ACTS_IN","name":"Dr. Yuzo Majida","type":"Role","_key":"26280","_from":"11446","_to":"18871"} +{"$label":"ACTS_IN","name":"Commander Nishikawa","type":"Role","_key":"25987","_from":"11446","_to":"18678"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"14894","_from":"11450","_to":"11449"} +{"$label":"ACTS_IN","name":"Tom Keylock","type":"Role","_key":"113810","_from":"11450","_to":"67050"} +{"$label":"ACTS_IN","name":"Thomas Howard - Duke of Norfolk","type":"Role","_key":"88558","_from":"11450","_to":"52483"} +{"$label":"ACTS_IN","name":"Captain Hamilton","type":"Role","_key":"39616","_from":"11450","_to":"26777"} +{"$label":"ACTS_IN","name":"Michael Glass","type":"Role","_key":"25724","_from":"11450","_to":"18508"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"14903","_from":"11456","_to":"11451"} +{"$label":"ACTS_IN","name":"Tanutscha","type":"Role","_key":"14902","_from":"11455","_to":"11451"} +{"$label":"ACTS_IN","name":"Mina","type":"Role","_key":"14901","_from":"11454","_to":"11451"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"14900","_from":"11453","_to":"11451"} +{"$label":"DIRECTED","_key":"14899","_from":"11452","_to":"11451"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"14911","_from":"11462","_to":"11457"} +{"$label":"ACTS_IN","name":"Mendez","type":"Role","_key":"14910","_from":"11461","_to":"11457"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"14909","_from":"11460","_to":"11457"} +{"$label":"ACTS_IN","name":"Brent","type":"Role","_key":"14906","_from":"11459","_to":"11457"} +{"$label":"DIRECTED","_key":"14904","_from":"11458","_to":"11457"} +{"$label":"DIRECTED","_key":"64824","_from":"11458","_to":"40328"} +{"$label":"DIRECTED","_key":"34880","_from":"11458","_to":"23835"} +{"$label":"DIRECTED","_key":"24730","_from":"11458","_to":"17888"} +{"$label":"ACTS_IN","name":"Victor Khudenko","type":"Role","_key":"38611","_from":"11459","_to":"26084"} +{"$label":"ACTS_IN","name":"Pete Marchettis","type":"Role","_key":"119755","_from":"11462","_to":"70323"} +{"$label":"ACTS_IN","name":"Pancho","type":"Role","_key":"117863","_from":"11462","_to":"69289"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"14921","_from":"11473","_to":"11463"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"14920","_from":"11472","_to":"11463"} +{"$label":"ACTS_IN","name":"Transvestite","type":"Role","_key":"14919","_from":"11471","_to":"11463"} +{"$label":"ACTS_IN","name":"Himself - Pope","type":"Role","_key":"14918","_from":"11470","_to":"11463"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"14917","_from":"11469","_to":"11463"} +{"$label":"ACTS_IN","name":"Hanoi Hannah","type":"Role","_key":"14916","_from":"11468","_to":"11463"} +{"$label":"ACTS_IN","name":"Brigid Berlin - The Duchess","type":"Role","_key":"14915","_from":"11467","_to":"11463"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"14914","_from":"11466","_to":"11463"} +{"$label":"DIRECTED","_key":"14913","_from":"11465","_to":"11463"} +{"$label":"DIRECTED","_key":"14912","_from":"11464","_to":"11463"} +{"$label":"DIRECTED","_key":"49395","_from":"11464","_to":"32344"} +{"$label":"DIRECTED","_key":"49396","_from":"11465","_to":"32344"} +{"$label":"DIRECTED","_key":"32847","_from":"11465","_to":"22804"} +{"$label":"DIRECTED","_key":"32841","_from":"11465","_to":"22799"} +{"$label":"DIRECTED","_key":"25219","_from":"11465","_to":"18195"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"116281","_from":"11468","_to":"68456"} +{"$label":"ACTS_IN","name":"Calamity Jane","type":"Role","_key":"93700","_from":"11468","_to":"55160"} +{"$label":"ACTS_IN","name":"Channeler","type":"Role","_key":"69234","_from":"11468","_to":"42338"} +{"$label":"ACTS_IN","name":"Abbie","type":"Role","_key":"15011","_from":"11468","_to":"11531"} +{"$label":"ACTS_IN","name":"Committee Chairman","type":"Role","_key":"14931","_from":"11478","_to":"11474"} +{"$label":"ACTS_IN","name":"E-2","type":"Role","_key":"14930","_from":"11477","_to":"11474"} +{"$label":"ACTS_IN","name":"Dr. Stephanie 'Stevie' Branton","type":"Role","_key":"14925","_from":"11476","_to":"11474"} +{"$label":"ACTS_IN","name":"Dr. Lewis Dixon","type":"Role","_key":"14924","_from":"11475","_to":"11474"} +{"$label":"ACTS_IN","name":"Maj. Barnes","type":"Role","_key":"106196","_from":"11475","_to":"62549"} +{"$label":"ACTS_IN","name":"Captain Briggs","type":"Role","_key":"64833","_from":"11475","_to":"40332"} +{"$label":"ACTS_IN","name":"Captain McKay","type":"Role","_key":"64828","_from":"11475","_to":"40329"} +{"$label":"ACTS_IN","name":"J.J.","type":"Role","_key":"61864","_from":"11475","_to":"38938"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"15108","_from":"11476","_to":"11596"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"14938","_from":"11476","_to":"11479"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"35557","_from":"11477","_to":"24170"} +{"$label":"ACTS_IN","name":"Captain Ross","type":"Role","_key":"65304","_from":"11478","_to":"40529"} +{"$label":"ACTS_IN","name":"Sir Clark Wilhelm Griswold","type":"Role","_key":"39624","_from":"11478","_to":"26781"} +{"$label":"ACTS_IN","name":"General Blankenship","type":"Role","_key":"38751","_from":"11478","_to":"26184"} +{"$label":"ACTS_IN","name":"Zelda","type":"Role","_key":"14936","_from":"11482","_to":"11479"} +{"$label":"ACTS_IN","name":"Breck","type":"Role","_key":"14935","_from":"11481","_to":"11479"} +{"$label":"DIRECTED","_key":"14933","_from":"11480","_to":"11479"} +{"$label":"DIRECTED","_key":"116726","_from":"11480","_to":"68712"} +{"$label":"DIRECTED","_key":"114947","_from":"11480","_to":"67699"} +{"$label":"DIRECTED","_key":"108493","_from":"11480","_to":"64127"} +{"$label":"DIRECTED","_key":"91212","_from":"11480","_to":"53788"} +{"$label":"DIRECTED","_key":"71801","_from":"11480","_to":"43458"} +{"$label":"DIRECTED","_key":"69284","_from":"11480","_to":"42356"} +{"$label":"DIRECTED","_key":"66673","_from":"11480","_to":"41194"} +{"$label":"DIRECTED","_key":"57360","_from":"11480","_to":"36367"} +{"$label":"DIRECTED","_key":"25257","_from":"11480","_to":"18218"} +{"$label":"DIRECTED","_key":"15102","_from":"11480","_to":"11596"} +{"$label":"ACTS_IN","name":"Senator Brigham Anderson","type":"Role","_key":"111444","_from":"11481","_to":"65805"} +{"$label":"ACTS_IN","name":"Tom Harrison","type":"Role","_key":"34962","_from":"11481","_to":"23872"} +{"$label":"ACTS_IN","name":"Miike Takashi","type":"Role","_key":"14951","_from":"11493","_to":"11484"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"14950","_from":"11492","_to":"11484"} +{"$label":"ACTS_IN","name":"Dutch Businessman","type":"Role","_key":"14949","_from":"11491","_to":"11484"} +{"$label":"ACTS_IN","name":"Svetlana","type":"Role","_key":"14948","_from":"11490","_to":"11484"} +{"$label":"ACTS_IN","name":"Natalya","type":"Role","_key":"14947","_from":"11489","_to":"11484"} +{"$label":"ACTS_IN","name":"Oli","type":"Role","_key":"14946","_from":"11488","_to":"11484"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"14945","_from":"11487","_to":"11484"} +{"$label":"ACTS_IN","name":"Paxton","type":"Role","_key":"14944","_from":"11486","_to":"11484"} +{"$label":"DIRECTED","_key":"14943","_from":"11485","_to":"11484"} +{"$label":"ACTS_IN","name":"Sergeant Donny Donowitz","type":"Role","_key":"110268","_from":"11485","_to":"65170"} +{"$label":"ACTS_IN","name":"Shocked Onlooker","type":"Role","_key":"98091","_from":"11485","_to":"57748"} +{"$label":"ACTS_IN","name":"Dov","type":"Role","_key":"17253","_from":"11485","_to":"12920"} +{"$label":"DIRECTED","_key":"70557","_from":"11485","_to":"42935"} +{"$label":"DIRECTED","_key":"14952","_from":"11485","_to":"11494"} +{"$label":"ACTS_IN","name":"Erali","type":"Role","_key":"120227","_from":"11486","_to":"70601"} +{"$label":"ACTS_IN","name":"Joaquin 'Wack' Campos","type":"Role","_key":"101217","_from":"11486","_to":"59618"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"96817","_from":"11486","_to":"56936"} +{"$label":"ACTS_IN","name":"Brian Chavez","type":"Role","_key":"94403","_from":"11486","_to":"55583"} +{"$label":"ACTS_IN","name":"Javier Villareal","type":"Role","_key":"93679","_from":"11486","_to":"55148"} +{"$label":"ACTS_IN","name":"Carlito Brigante","type":"Role","_key":"89095","_from":"11486","_to":"52779"} +{"$label":"ACTS_IN","name":"Carlos Nu\u00f1ez","type":"Role","_key":"65081","_from":"11486","_to":"40432"} +{"$label":"ACTS_IN","name":"Dominick Pezzulo","type":"Role","_key":"15999","_from":"11486","_to":"12161"} +{"$label":"ACTS_IN","name":"Paxton","type":"Role","_key":"14959","_from":"11486","_to":"11494"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"100415","_from":"11487","_to":"59213"} +{"$label":"ACTS_IN","name":"Major von Richthofen","type":"Role","_key":"49243","_from":"11491","_to":"32251"} +{"$label":"ACTS_IN","name":"Wasserbauer","type":"Role","_key":"41594","_from":"11491","_to":"27927"} +{"$label":"DIRECTED","_key":"107911","_from":"11493","_to":"63729"} +{"$label":"DIRECTED","_key":"102570","_from":"11493","_to":"60342"} +{"$label":"DIRECTED","_key":"95613","_from":"11493","_to":"56241"} +{"$label":"DIRECTED","_key":"93897","_from":"11493","_to":"55285"} +{"$label":"DIRECTED","_key":"90418","_from":"11493","_to":"53421"} +{"$label":"DIRECTED","_key":"89806","_from":"11493","_to":"53144"} +{"$label":"DIRECTED","_key":"69088","_from":"11493","_to":"42277"} +{"$label":"DIRECTED","_key":"67728","_from":"11493","_to":"41644"} +{"$label":"DIRECTED","_key":"55779","_from":"11493","_to":"35497"} +{"$label":"DIRECTED","_key":"55747","_from":"11493","_to":"35478"} +{"$label":"DIRECTED","_key":"30375","_from":"11493","_to":"21359"} +{"$label":"DIRECTED","_key":"24131","_from":"11493","_to":"17500"} +{"$label":"ACTS_IN","name":"Shinozaki","type":"Role","_key":"24132","_from":"11493","_to":"17500"} +{"$label":"ACTS_IN","name":"Cannibal","type":"Role","_key":"14972","_from":"11511","_to":"11494"} +{"$label":"ACTS_IN","name":"Mrs. Barthory","type":"Role","_key":"14971","_from":"11510","_to":"11494"} +{"$label":"ACTS_IN","name":"Italian Translator","type":"Role","_key":"14970","_from":"11509","_to":"11494"} +{"$label":"ACTS_IN","name":"Italian Detective","type":"Role","_key":"14969","_from":"11508","_to":"11494"} +{"$label":"ACTS_IN","name":"Make-Up Woman","type":"Role","_key":"14968","_from":"11507","_to":"11494"} +{"$label":"ACTS_IN","name":"Art Class Professor","type":"Role","_key":"14967","_from":"11506","_to":"11494"} +{"$label":"ACTS_IN","name":"Riccardo","type":"Role","_key":"14966","_from":"11505","_to":"11494"} +{"$label":"ACTS_IN","name":"Roman","type":"Role","_key":"14965","_from":"11504","_to":"11494"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"14964","_from":"11503","_to":"11494"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"14963","_from":"11502","_to":"11494"} +{"$label":"ACTS_IN","name":"Inya","type":"Role","_key":"14962","_from":"11501","_to":"11494"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"14960","_from":"11500","_to":"11494"} +{"$label":"ACTS_IN","name":"Axelle","type":"Role","_key":"14958","_from":"11499","_to":"11494"} +{"$label":"ACTS_IN","name":"Lorna","type":"Role","_key":"14957","_from":"11498","_to":"11494"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"14955","_from":"11497","_to":"11494"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"14954","_from":"11496","_to":"11494"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"14953","_from":"11495","_to":"11494"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"111580","_from":"11495","_to":"65876"} +{"$label":"ACTS_IN","name":"Detective Francis Kirk","type":"Role","_key":"116206","_from":"11496","_to":"68420"} +{"$label":"ACTS_IN","name":"Jim Danvers","type":"Role","_key":"72809","_from":"11496","_to":"43867"} +{"$label":"ACTS_IN","name":"Capt. V.J. Dax","type":"Role","_key":"62485","_from":"11496","_to":"39352"} +{"$label":"ACTS_IN","name":"Craig Martin","type":"Role","_key":"56374","_from":"11496","_to":"35817"} +{"$label":"ACTS_IN","name":"Joe Cleeman","type":"Role","_key":"47205","_from":"11496","_to":"31110"} +{"$label":"ACTS_IN","name":"Dr. Jack Beecher","type":"Role","_key":"93975","_from":"11497","_to":"55341"} +{"$label":"ACTS_IN","name":"Carmen Ghia","type":"Role","_key":"57743","_from":"11497","_to":"36543"} +{"$label":"ACTS_IN","name":"Roger Bannister","type":"Role","_key":"57620","_from":"11497","_to":"36484"} +{"$label":"ACTS_IN","name":"Theresa 'Tweety' Goldberg","type":"Role","_key":"119961","_from":"11498","_to":"70456"} +{"$label":"ACTS_IN","name":"Tia","type":"Role","_key":"93374","_from":"11498","_to":"54999"} +{"$label":"ACTS_IN","name":"Dawn Wiener","type":"Role","_key":"69911","_from":"11498","_to":"42663"} +{"$label":"ACTS_IN","name":"Lilly Moscovitz","type":"Role","_key":"68052","_from":"11498","_to":"41815"} +{"$label":"ACTS_IN","name":"Lilly Moscovitz","type":"Role","_key":"57574","_from":"11498","_to":"36467"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"41233","_from":"11498","_to":"27735"} +{"$label":"ACTS_IN","name":"Martha Meeks","type":"Role","_key":"30305","_from":"11498","_to":"21314"} +{"$label":"ACTS_IN","name":"Grace O'Shea","type":"Role","_key":"28469","_from":"11498","_to":"20352"} +{"$label":"ACTS_IN","name":"Eliza","type":"Role","_key":"116010","_from":"11500","_to":"68315"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"111549","_from":"11500","_to":"65857"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"70559","_from":"11500","_to":"42935"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"68604","_from":"11500","_to":"42057"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"47228","_from":"11500","_to":"31117"} +{"$label":"ACTS_IN","name":"Shanna","type":"Role","_key":"17249","_from":"11500","_to":"12920"} +{"$label":"ACTS_IN","name":"Alyssa","type":"Role","_key":"15670","_from":"11500","_to":"11948"} +{"$label":"ACTS_IN","name":"Magda Cortis","type":"Role","_key":"68656","_from":"11506","_to":"42077"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"38133","_from":"11506","_to":"25783"} +{"$label":"ACTS_IN","name":"Hubert Bonisseur de La Bath alias OSS 117","type":"Role","_key":"33692","_from":"11508","_to":"23248"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"31370","_from":"11508","_to":"21929"} +{"$label":"DIRECTED","_key":"50456","_from":"11511","_to":"32957"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"14980","_from":"11520","_to":"11512"} +{"$label":"ACTS_IN","name":"Big Redneck","type":"Role","_key":"14979","_from":"11519","_to":"11512"} +{"$label":"ACTS_IN","name":"Brother Fred","type":"Role","_key":"14978","_from":"11518","_to":"11512"} +{"$label":"ACTS_IN","name":"Monster Man","type":"Role","_key":"14977","_from":"11517","_to":"11512"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"14976","_from":"11516","_to":"11512"} +{"$label":"ACTS_IN","name":"Harley","type":"Role","_key":"14975","_from":"11515","_to":"11512"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"14974","_from":"11514","_to":"11512"} +{"$label":"DIRECTED","_key":"14973","_from":"11513","_to":"11512"} +{"$label":"DIRECTED","_key":"103604","_from":"11513","_to":"60935"} +{"$label":"DIRECTED","_key":"59741","_from":"11513","_to":"37723"} +{"$label":"DIRECTED","_key":"29747","_from":"11513","_to":"21064"} +{"$label":"ACTS_IN","name":"Student #2","type":"Role","_key":"97493","_from":"11514","_to":"57409"} +{"$label":"ACTS_IN","name":"Tyler Woods","type":"Role","_key":"100204","_from":"11515","_to":"59100"} +{"$label":"ACTS_IN","name":"Brad Winters","type":"Role","_key":"46489","_from":"11515","_to":"30698"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"91110","_from":"11516","_to":"53754"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"97381","_from":"11517","_to":"57346"} +{"$label":"ACTS_IN","name":"Papa Hades","type":"Role","_key":"56861","_from":"11517","_to":"36099"} +{"$label":"ACTS_IN","name":"Pluto","type":"Role","_key":"56855","_from":"11517","_to":"36092"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"39312","_from":"11517","_to":"26583"} +{"$label":"ACTS_IN","name":"Krieger","type":"Role","_key":"104884","_from":"11520","_to":"61706"} +{"$label":"ACTS_IN","name":"M-16 Man","type":"Role","_key":"60421","_from":"11520","_to":"38106"} +{"$label":"ACTS_IN","name":"Swiss professor","type":"Role","_key":"14989","_from":"11530","_to":"11521"} +{"$label":"ACTS_IN","name":"Melvin the Re-Animated","type":"Role","_key":"14988","_from":"11529","_to":"11521"} +{"$label":"ACTS_IN","name":"Dr. Harrod","type":"Role","_key":"14987","_from":"11528","_to":"11521"} +{"$label":"ACTS_IN","name":"Dean Alan Halsey","type":"Role","_key":"14986","_from":"11527","_to":"11521"} +{"$label":"ACTS_IN","name":"Dr. Carl Hill","type":"Role","_key":"14985","_from":"11526","_to":"11521"} +{"$label":"ACTS_IN","name":"Megan Halsey","type":"Role","_key":"14984","_from":"11525","_to":"11521"} +{"$label":"ACTS_IN","name":"Dan Cain","type":"Role","_key":"14983","_from":"11524","_to":"11521"} +{"$label":"ACTS_IN","name":"Herbert West","type":"Role","_key":"14982","_from":"11523","_to":"11521"} +{"$label":"DIRECTED","_key":"14981","_from":"11522","_to":"11521"} +{"$label":"DIRECTED","_key":"115566","_from":"11522","_to":"68034"} +{"$label":"DIRECTED","_key":"115220","_from":"11522","_to":"67851"} +{"$label":"DIRECTED","_key":"100554","_from":"11522","_to":"59308"} +{"$label":"DIRECTED","_key":"97180","_from":"11522","_to":"57167"} +{"$label":"DIRECTED","_key":"87953","_from":"11522","_to":"52231"} +{"$label":"DIRECTED","_key":"66082","_from":"11522","_to":"40886"} +{"$label":"DIRECTED","_key":"65079","_from":"11522","_to":"40431"} +{"$label":"ACTS_IN","name":"Detective Garrett","type":"Role","_key":"119289","_from":"11523","_to":"70090"} +{"$label":"ACTS_IN","name":"John Reilly","type":"Role","_key":"115567","_from":"11523","_to":"68034"} +{"$label":"ACTS_IN","name":"Dr. Herbert West","type":"Role","_key":"114917","_from":"11523","_to":"67685"} +{"$label":"ACTS_IN","name":"Dr. Ek","type":"Role","_key":"111272","_from":"11523","_to":"65712"} +{"$label":"ACTS_IN","name":"Crawford Tillinghast","type":"Role","_key":"100555","_from":"11523","_to":"59308"} +{"$label":"ACTS_IN","name":"D-Day, the Computer Geek","type":"Role","_key":"87958","_from":"11523","_to":"52231"} +{"$label":"ACTS_IN","name":"Dr. Herbert West","type":"Role","_key":"69807","_from":"11523","_to":"42603"} +{"$label":"ACTS_IN","name":"Milton Dammers","type":"Role","_key":"65720","_from":"11523","_to":"40696"} +{"$label":"ACTS_IN","name":"Buddy the Clerk","type":"Role","_key":"59422","_from":"11523","_to":"37532"} +{"$label":"ACTS_IN","name":"Sykes","type":"Role","_key":"54582","_from":"11523","_to":"34969"} +{"$label":"ACTS_IN","name":"Mr. Brooks","type":"Role","_key":"28316","_from":"11523","_to":"20259"} +{"$label":"ACTS_IN","name":"Dr. Mordrid","type":"Role","_key":"16199","_from":"11523","_to":"12297"} +{"$label":"ACTS_IN","name":"Dr. Dan Cain","type":"Role","_key":"114918","_from":"11524","_to":"67685"} +{"$label":"ACTS_IN","name":"Susan Reilly","type":"Role","_key":"115568","_from":"11525","_to":"68034"} +{"$label":"ACTS_IN","name":"Dr. Katherine McMichaels","type":"Role","_key":"100556","_from":"11525","_to":"59308"} +{"$label":"ACTS_IN","name":"Carol Scully","type":"Role","_key":"70261","_from":"11525","_to":"42814"} +{"$label":"ACTS_IN","name":"Doctor Carl Hill","type":"Role","_key":"114921","_from":"11526","_to":"67685"} +{"$label":"ACTS_IN","name":"Fulton Balcus","type":"Role","_key":"102823","_from":"11526","_to":"60477"} +{"$label":"ACTS_IN","name":"Flynn Harding","type":"Role","_key":"18764","_from":"11527","_to":"13879"} +{"$label":"ACTS_IN","name":"Dr. Roberta Bloch","type":"Role","_key":"100559","_from":"11528","_to":"59308"} +{"$label":"ACTS_IN","name":"Petersen","type":"Role","_key":"97179","_from":"11528","_to":"57167"} +{"$label":"ACTS_IN","name":"Zed-10","type":"Role","_key":"87962","_from":"11528","_to":"52231"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"119909","_from":"11529","_to":"70418"} +{"$label":"ACTS_IN","name":"Officer with Gas Mask","type":"Role","_key":"15016","_from":"11547","_to":"11531"} +{"$label":"ACTS_IN","name":"Sheriff Ken Dwyer","type":"Role","_key":"15014","_from":"11546","_to":"11531"} +{"$label":"ACTS_IN","name":"Morris Green","type":"Role","_key":"15012","_from":"11545","_to":"11531"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"15010","_from":"11544","_to":"11531"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"15009","_from":"11543","_to":"11531"} +{"$label":"ACTS_IN","name":"George Wydell","type":"Role","_key":"15006","_from":"11542","_to":"11531"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"15005","_from":"11541","_to":"11531"} +{"$label":"ACTS_IN","name":"Billy Ray Snapper","type":"Role","_key":"15004","_from":"11540","_to":"11531"} +{"$label":"ACTS_IN","name":"Adam Banjo","type":"Role","_key":"15002","_from":"11539","_to":"11531"} +{"$label":"ACTS_IN","name":"Wendy Banjo","type":"Role","_key":"15001","_from":"11538","_to":"11531"} +{"$label":"ACTS_IN","name":"Officer Ray Dobson","type":"Role","_key":"15000","_from":"11537","_to":"11531"} +{"$label":"ACTS_IN","name":"Gloria Sullivan","type":"Role","_key":"14999","_from":"11536","_to":"11531"} +{"$label":"ACTS_IN","name":"Mother Firefly","type":"Role","_key":"14997","_from":"11535","_to":"11531"} +{"$label":"ACTS_IN","name":"Baby Firefly\/Vera-Ellen","type":"Role","_key":"14993","_from":"11534","_to":"11531"} +{"$label":"ACTS_IN","name":"Otis B. Driftwood","type":"Role","_key":"14992","_from":"11533","_to":"11531"} +{"$label":"DIRECTED","_key":"14990","_from":"11532","_to":"11531"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30179","_from":"11532","_to":"21251"} +{"$label":"DIRECTED","_key":"22553","_from":"11532","_to":"16381"} +{"$label":"DIRECTED","_key":"18097","_from":"11532","_to":"13441"} +{"$label":"ACTS_IN","name":"Chief Dinelli","type":"Role","_key":"105878","_from":"11533","_to":"62328"} +{"$label":"ACTS_IN","name":"Stewart","type":"Role","_key":"101962","_from":"11533","_to":"60001"} +{"$label":"ACTS_IN","name":"Luigi Largo","type":"Role","_key":"99795","_from":"11533","_to":"58864"} +{"$label":"ACTS_IN","name":"Slater","type":"Role","_key":"95260","_from":"11533","_to":"56052"} +{"$label":"ACTS_IN","name":"Officer Ray","type":"Role","_key":"91282","_from":"11533","_to":"53820"} +{"$label":"ACTS_IN","name":"Dexter","type":"Role","_key":"90984","_from":"11533","_to":"53683"} +{"$label":"ACTS_IN","name":"Bong World Patron","type":"Role","_key":"60540","_from":"11533","_to":"38203"} +{"$label":"ACTS_IN","name":"Otis Driftwood","type":"Role","_key":"22556","_from":"11533","_to":"16381"} +{"$label":"ACTS_IN","name":"Zach 'Z-Man' Garrett","type":"Role","_key":"18112","_from":"11533","_to":"13441"} +{"$label":"ACTS_IN","name":"Baby Firefly","type":"Role","_key":"22557","_from":"11534","_to":"16381"} +{"$label":"ACTS_IN","name":"Deborah Myers","type":"Role","_key":"18103","_from":"11534","_to":"13441"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"101961","_from":"11535","_to":"60001"} +{"$label":"ACTS_IN","name":"Capt. Debbie Callahan","type":"Role","_key":"72602","_from":"11535","_to":"43770"} +{"$label":"ACTS_IN","name":"Lt. Debbie Callahan","type":"Role","_key":"72226","_from":"11535","_to":"43642"} +{"$label":"ACTS_IN","name":"Debbie Callahan","type":"Role","_key":"70553","_from":"11535","_to":"42933"} +{"$label":"ACTS_IN","name":"Sgt. Debbie Callahan","type":"Role","_key":"53191","_from":"11535","_to":"34404"} +{"$label":"ACTS_IN","name":"Science Teacher","type":"Role","_key":"18927","_from":"11535","_to":"13972"} +{"$label":"ACTS_IN","name":"Patty Frost","type":"Role","_key":"18113","_from":"11535","_to":"13441"} +{"$label":"ACTS_IN","name":"Balinda Parson","type":"Role","_key":"95261","_from":"11536","_to":"56052"} +{"$label":"ACTS_IN","name":"Miss Ivannah","type":"Role","_key":"20125","_from":"11536","_to":"14782"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"55575","_from":"11537","_to":"35390"} +{"$label":"ACTS_IN","name":"Doofy Gilmore","type":"Role","_key":"30432","_from":"11537","_to":"21394"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"101960","_from":"11539","_to":"60001"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"65519","_from":"11539","_to":"40608"} +{"$label":"ACTS_IN","name":"Locus Fender","type":"Role","_key":"58137","_from":"11539","_to":"36776"} +{"$label":"ACTS_IN","name":"Noel Kluggs","type":"Role","_key":"18115","_from":"11539","_to":"13441"} +{"$label":"ACTS_IN","name":"Captain Kennedy","type":"Role","_key":"100157","_from":"11540","_to":"59079"} +{"$label":"ACTS_IN","name":"Julie Richman","type":"Role","_key":"118553","_from":"11541","_to":"69706"} +{"$label":"ACTS_IN","name":"Tommy Pickles","type":"Role","_key":"108770","_from":"11541","_to":"64298"} +{"$label":"ACTS_IN","name":"Freefall \/ Roxy Spaulding (voice)","type":"Role","_key":"106587","_from":"11541","_to":"62807"} +{"$label":"ACTS_IN","name":"Tommy Pickles (voice)","type":"Role","_key":"100316","_from":"11541","_to":"59151"} +{"$label":"ACTS_IN","name":"Baby Mumble","type":"Role","_key":"57338","_from":"11541","_to":"36355"} +{"$label":"ACTS_IN","name":"Dottie","type":"Role","_key":"38591","_from":"11541","_to":"26073"} +{"$label":"ACTS_IN","name":"Harry Cooper","type":"Role","_key":"119138","_from":"11542","_to":"70019"} +{"$label":"ACTS_IN","name":"Stiggs","type":"Role","_key":"87960","_from":"11542","_to":"52231"} +{"$label":"ACTS_IN","name":"Andrew the Beater","type":"Role","_key":"63325","_from":"11542","_to":"39696"} +{"$label":"ACTS_IN","name":"Red Ryder","type":"Role","_key":"55861","_from":"11542","_to":"35537"} +{"$label":"ACTS_IN","name":"Lieutenant George Wydell","type":"Role","_key":"22554","_from":"11542","_to":"16381"} +{"$label":"ACTS_IN","name":"Larry Redgrave","type":"Role","_key":"18111","_from":"11542","_to":"13441"} +{"$label":"ACTS_IN","name":"Reva Cody","type":"Role","_key":"101622","_from":"11543","_to":"59813"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38734","_from":"11544","_to":"26175"} +{"$label":"ACTS_IN","name":"Biggs","type":"Role","_key":"37547","_from":"11545","_to":"25451"} +{"$label":"ACTS_IN","name":"Lou Martini","type":"Role","_key":"18120","_from":"11545","_to":"13441"} +{"$label":"ACTS_IN","name":"Charles Manson","type":"Role","_key":"111492","_from":"11546","_to":"65834"} +{"$label":"ACTS_IN","name":"Col. Tom Carlsen","type":"Role","_key":"72958","_from":"11546","_to":"43920"} +{"$label":"ACTS_IN","name":"Officer Cox","type":"Role","_key":"53771","_from":"11546","_to":"34656"} +{"$label":"ACTS_IN","name":"Lt. Jesse Brady","type":"Role","_key":"45908","_from":"11546","_to":"30362"} +{"$label":"ACTS_IN","name":"The Cowboy","type":"Role","_key":"22262","_from":"11546","_to":"16202"} +{"$label":"ACTS_IN","name":"Victor Crowley","type":"Role","_key":"72704","_from":"11547","_to":"43810"} +{"$label":"ACTS_IN","name":"Jason Voorhees","type":"Role","_key":"70053","_from":"11547","_to":"42712"} +{"$label":"ACTS_IN","name":"Mr. Carpenter - First victim","type":"Role","_key":"63308","_from":"11547","_to":"39679"} +{"$label":"ACTS_IN","name":"Jason Voorhees \/ Security Guard #2 \/ Freddy Krueger's arm","type":"Role","_key":"62375","_from":"11547","_to":"39299"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"62370","_from":"11547","_to":"39292"} +{"$label":"ACTS_IN","name":"Jason Voorhees","type":"Role","_key":"62356","_from":"11547","_to":"39284"} +{"$label":"ACTS_IN","name":"Homeless Demon","type":"Role","_key":"60055","_from":"11547","_to":"37890"} +{"$label":"ACTS_IN","name":"Irmengard","type":"Role","_key":"15029","_from":"11559","_to":"11548"} +{"$label":"ACTS_IN","name":"Gumberger","type":"Role","_key":"15028","_from":"11558","_to":"11548"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"15027","_from":"11557","_to":"11548"} +{"$label":"ACTS_IN","name":"Evi","type":"Role","_key":"15026","_from":"11556","_to":"11548"} +{"$label":"ACTS_IN","name":"Proske","type":"Role","_key":"15025","_from":"11555","_to":"11548"} +{"$label":"ACTS_IN","name":"Sepp Graudinger","type":"Role","_key":"15024","_from":"11554","_to":"11548"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"15022","_from":"11553","_to":"11548"} +{"$label":"ACTS_IN","name":"Veronika Dorstreiter","type":"Role","_key":"15020","_from":"11552","_to":"11548"} +{"$label":"ACTS_IN","name":"Lorenz","type":"Role","_key":"15019","_from":"11551","_to":"11548"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"15018","_from":"11550","_to":"11548"} +{"$label":"DIRECTED","_key":"15017","_from":"11549","_to":"11548"} +{"$label":"DIRECTED","_key":"90039","_from":"11549","_to":"53258"} +{"$label":"DIRECTED","_key":"51604","_from":"11549","_to":"33670"} +{"$label":"DIRECTED","_key":"40870","_from":"11549","_to":"27509"} +{"$label":"DIRECTED","_key":"19080","_from":"11549","_to":"14099"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"51605","_from":"11550","_to":"33670"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"47293","_from":"11551","_to":"31151"} +{"$label":"ACTS_IN","name":"Joe M\u00fcller","type":"Role","_key":"40860","_from":"11551","_to":"27503"} +{"$label":"ACTS_IN","name":"Peter Ullrich","type":"Role","_key":"37311","_from":"11551","_to":"25282"} +{"$label":"ACTS_IN","name":"Landrat Dr. Seigis","type":"Role","_key":"89983","_from":"11555","_to":"53231"} +{"$label":"ACTS_IN","name":"Kurt Linprun","type":"Role","_key":"51442","_from":"11558","_to":"33555"} +{"$label":"ACTS_IN","name":"Eberhard","type":"Role","_key":"43250","_from":"11558","_to":"28884"} +{"$label":"ACTS_IN","name":"Jos Papa","type":"Role","_key":"40881","_from":"11558","_to":"27509"} +{"$label":"ACTS_IN","name":"Dorfpolizist","type":"Role","_key":"40651","_from":"11558","_to":"27367"} +{"$label":"ACTS_IN","name":"Fatih Patil","type":"Role","_key":"49627","_from":"11559","_to":"32478"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"15046","_from":"11570","_to":"11560"} +{"$label":"ACTS_IN","name":"Professor in M\u00fcnchen","type":"Role","_key":"15045","_from":"11569","_to":"11560"} +{"$label":"ACTS_IN","name":"Paulas Gro\u00dfvater","type":"Role","_key":"15043","_from":"11568","_to":"11560"} +{"$label":"ACTS_IN","name":"Frau Henning","type":"Role","_key":"15042","_from":"11567","_to":"11560"} +{"$label":"ACTS_IN","name":"Gabi","type":"Role","_key":"15040","_from":"11566","_to":"11560"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"15039","_from":"11565","_to":"11560"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"15038","_from":"11564","_to":"11560"} +{"$label":"ACTS_IN","name":"Prof. Grombek","type":"Role","_key":"15037","_from":"11563","_to":"11560"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"15034","_from":"11562","_to":"11560"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"15033","_from":"11561","_to":"11560"} +{"$label":"ACTS_IN","name":"Svenja","type":"Role","_key":"51340","_from":"11561","_to":"33478"} +{"$label":"ACTS_IN","name":"Agnes Hartmann","type":"Role","_key":"42943","_from":"11561","_to":"28693"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"27708","_from":"11561","_to":"19852"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"27653","_from":"11561","_to":"19817"} +{"$label":"ACTS_IN","name":"Alf","type":"Role","_key":"52952","_from":"11562","_to":"34308"} +{"$label":"ACTS_IN","name":"Abt Stefan","type":"Role","_key":"42915","_from":"11563","_to":"28680"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"47409","_from":"11564","_to":"31223"} +{"$label":"ACTS_IN","name":"Philipp Blaschke","type":"Role","_key":"43843","_from":"11564","_to":"29272"} +{"$label":"ACTS_IN","name":"Jurij Zille","type":"Role","_key":"16563","_from":"11565","_to":"12511"} +{"$label":"ACTS_IN","name":"Ursel Rehbein","type":"Role","_key":"66787","_from":"11567","_to":"41259"} +{"$label":"ACTS_IN","name":"Alter","type":"Role","_key":"44046","_from":"11568","_to":"29371"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"37962","_from":"11568","_to":"25705"} +{"$label":"ACTS_IN","name":"Dr. Udo Rieker","type":"Role","_key":"42626","_from":"11569","_to":"28533"} +{"$label":"ACTS_IN","name":"Sergio Tulli","type":"Role","_key":"42175","_from":"11570","_to":"28249"} +{"$label":"ACTS_IN","name":"Torben","type":"Role","_key":"28669","_from":"11570","_to":"20481"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"15062","_from":"11578","_to":"11571"} +{"$label":"ACTS_IN","name":"Wulf","type":"Role","_key":"15061","_from":"11577","_to":"11571"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"15060","_from":"11576","_to":"11571"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"15059","_from":"11575","_to":"11571"} +{"$label":"ACTS_IN","name":"Dr. Bamberg","type":"Role","_key":"15055","_from":"11574","_to":"11571"} +{"$label":"ACTS_IN","name":"Manni","type":"Role","_key":"15051","_from":"11573","_to":"11571"} +{"$label":"ACTS_IN","name":"Dr. Schinder","type":"Role","_key":"15050","_from":"11572","_to":"11571"} +{"$label":"ACTS_IN","name":"Generalfeldmarschall Erwin v. Witzleben","type":"Role","_key":"63132","_from":"11572","_to":"39591"} +{"$label":"ACTS_IN","name":"Karin Langer","type":"Role","_key":"42546","_from":"11574","_to":"28476"} +{"$label":"ACTS_IN","name":"Mutter Martha","type":"Role","_key":"37313","_from":"11574","_to":"25282"} +{"$label":"ACTS_IN","name":"Oma Crash","type":"Role","_key":"27716","_from":"11574","_to":"19859"} +{"$label":"ACTS_IN","name":"Veronika Voss","type":"Role","_key":"19799","_from":"11574","_to":"14619"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"107282","_from":"11578","_to":"63270"} +{"$label":"ACTS_IN","name":"Benno","type":"Role","_key":"64113","_from":"11578","_to":"40010"} +{"$label":"ACTS_IN","name":"Michi Holzner","type":"Role","_key":"50186","_from":"11578","_to":"32809"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"46021","_from":"11578","_to":"30414"} +{"$label":"ACTS_IN","name":"Robert Marqward","type":"Role","_key":"42689","_from":"11578","_to":"28571"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"15072","_from":"11582","_to":"11579"} +{"$label":"ACTS_IN","name":"Libby","type":"Role","_key":"15069","_from":"11581","_to":"11579"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"15067","_from":"11580","_to":"11579"} +{"$label":"ACTS_IN","name":"Lillian, Welcoming Committee","type":"Role","_key":"72188","_from":"11580","_to":"43625"} +{"$label":"ACTS_IN","name":"Lazarus","type":"Role","_key":"63940","_from":"11580","_to":"39936"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"40039","_from":"11580","_to":"27031"} +{"$label":"ACTS_IN","name":"Frank Crump","type":"Role","_key":"94207","_from":"11581","_to":"55472"} +{"$label":"ACTS_IN","name":"Humphries","type":"Role","_key":"92626","_from":"11581","_to":"54673"} +{"$label":"ACTS_IN","name":"Music Teacher","type":"Role","_key":"38268","_from":"11581","_to":"25825"} +{"$label":"DIRECTED","_key":"15089","_from":"11587","_to":"11583"} +{"$label":"ACTS_IN","name":"Casey Poe","type":"Role","_key":"15088","_from":"11586","_to":"11583"} +{"$label":"ACTS_IN","name":"Ramon Martinez","type":"Role","_key":"15086","_from":"11585","_to":"11583"} +{"$label":"ACTS_IN","name":"Swamp Thing","type":"Role","_key":"15084","_from":"11584","_to":"11583"} +{"$label":"ACTS_IN","name":"Roadie","type":"Role","_key":"115879","_from":"11584","_to":"68225"} +{"$label":"ACTS_IN","name":"Hutch","type":"Role","_key":"111884","_from":"11584","_to":"66047"} +{"$label":"ACTS_IN","name":"Rob Horn","type":"Role","_key":"104386","_from":"11584","_to":"61407"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"71205","_from":"11584","_to":"43214"} +{"$label":"ACTS_IN","name":"Boom Boom","type":"Role","_key":"63214","_from":"11584","_to":"39632"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"59023","_from":"11584","_to":"37261"} +{"$label":"ACTS_IN","name":"Twister","type":"Role","_key":"45578","_from":"11584","_to":"30170"} +{"$label":"ACTS_IN","name":"Billy Ward","type":"Role","_key":"35472","_from":"11584","_to":"24121"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"18835","_from":"11584","_to":"13912"} +{"$label":"ACTS_IN","name":"Ramon Sanchez \/ 'Phantom Phreak'","type":"Role","_key":"63241","_from":"11585","_to":"39652"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101439","_from":"11587","_to":"59709"} +{"$label":"DIRECTED","_key":"60008","_from":"11587","_to":"37876"} +{"$label":"DIRECTED","_key":"19979","_from":"11587","_to":"14708"} +{"$label":"DIRECTED","_key":"17294","_from":"11587","_to":"12947"} +{"$label":"DIRECTED","_key":"15101","_from":"11595","_to":"11588"} +{"$label":"ACTS_IN","name":"Deputy Sheriff Randall","type":"Role","_key":"15100","_from":"11594","_to":"11588"} +{"$label":"ACTS_IN","name":"Glitching Hardman","type":"Role","_key":"15098","_from":"11593","_to":"11588"} +{"$label":"ACTS_IN","name":"Sheriff Dickson","type":"Role","_key":"15097","_from":"11592","_to":"11588"} +{"$label":"ACTS_IN","name":"Yutani","type":"Role","_key":"15094","_from":"11591","_to":"11588"} +{"$label":"ACTS_IN","name":"Sam Raimi","type":"Role","_key":"15093","_from":"11590","_to":"11588"} +{"$label":"ACTS_IN","name":"Hayden Cale","type":"Role","_key":"15090","_from":"11589","_to":"11588"} +{"$label":"ACTS_IN","name":"Dr. Cori Platt","type":"Role","_key":"70417","_from":"11589","_to":"42877"} +{"$label":"ACTS_IN","name":"Jane Chandler","type":"Role","_key":"36802","_from":"11589","_to":"24953"} +{"$label":"ACTS_IN","name":"Jack Corelli","type":"Role","_key":"103057","_from":"11590","_to":"60626"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"90831","_from":"11590","_to":"53594"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"32595","_from":"11590","_to":"22651"} +{"$label":"ACTS_IN","name":"Security Guard Andy","type":"Role","_key":"118563","_from":"11591","_to":"69710"} +{"$label":"ACTS_IN","name":"William Carlton","type":"Role","_key":"66284","_from":"11591","_to":"40999"} +{"$label":"ACTS_IN","name":"Middle Ranking TV Exec","type":"Role","_key":"56544","_from":"11591","_to":"35892"} +{"$label":"ACTS_IN","name":"Delmar Blackwater","type":"Role","_key":"119945","_from":"11594","_to":"70452"} +{"$label":"DIRECTED","_key":"50534","_from":"11595","_to":"33007"} +{"$label":"ACTS_IN","name":"Mutant","type":"Role","_key":"15106","_from":"11598","_to":"11596"} +{"$label":"ACTS_IN","name":"Cornelius II","type":"Role","_key":"15105","_from":"11597","_to":"11596"} +{"$label":"ACTS_IN","name":"Bryan Seward","type":"Role","_key":"35032","_from":"11598","_to":"23901"} +{"$label":"ACTS_IN","name":"Ruben Goetz","type":"Role","_key":"15116","_from":"11603","_to":"11600"} +{"$label":"ACTS_IN","name":"Doryll Lee Cullum","type":"Role","_key":"15114","_from":"11602","_to":"11600"} +{"$label":"ACTS_IN","name":"Peter Foley","type":"Role","_key":"15113","_from":"11601","_to":"11600"} +{"$label":"ACTS_IN","name":"Wolfe Jr.","type":"Role","_key":"113261","_from":"11601","_to":"66728"} +{"$label":"ACTS_IN","name":"Ted Mitchell","type":"Role","_key":"100686","_from":"11602","_to":"59369"} +{"$label":"ACTS_IN","name":"Lil' Farley","type":"Role","_key":"95957","_from":"11602","_to":"56423"} +{"$label":"ACTS_IN","name":"Sgt. Clay Busby","type":"Role","_key":"90822","_from":"11602","_to":"53591"} +{"$label":"ACTS_IN","name":"Jerry Goss","type":"Role","_key":"90054","_from":"11602","_to":"53263"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"70393","_from":"11602","_to":"42870"} +{"$label":"ACTS_IN","name":"Dean McCoppin (voice)","type":"Role","_key":"62934","_from":"11602","_to":"39525"} +{"$label":"ACTS_IN","name":"Justin Matisse","type":"Role","_key":"55941","_from":"11602","_to":"35575"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"41275","_from":"11602","_to":"27753"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"113780","_from":"11603","_to":"67043"} +{"$label":"ACTS_IN","name":"Nestor Pyle","type":"Role","_key":"108419","_from":"11603","_to":"64098"} +{"$label":"ACTS_IN","name":"John Munn","type":"Role","_key":"107246","_from":"11603","_to":"63247"} +{"$label":"ACTS_IN","name":"Bryan Bowen","type":"Role","_key":"104954","_from":"11603","_to":"61751"} +{"$label":"ACTS_IN","name":"Griffin","type":"Role","_key":"104847","_from":"11603","_to":"61694"} +{"$label":"ACTS_IN","name":"Dr. David Henry","type":"Role","_key":"101728","_from":"11603","_to":"59874"} +{"$label":"ACTS_IN","name":"Dr. Simon Ward","type":"Role","_key":"93058","_from":"11603","_to":"54863"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"90780","_from":"11603","_to":"53571"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"71278","_from":"11603","_to":"43243"} +{"$label":"ACTS_IN","name":"J. P.","type":"Role","_key":"63689","_from":"11603","_to":"39831"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"52393","_from":"11603","_to":"34097"} +{"$label":"ACTS_IN","name":"Everett Stone","type":"Role","_key":"52239","_from":"11603","_to":"34024"} +{"$label":"ACTS_IN","name":"Michael O'Neal","type":"Role","_key":"51209","_from":"11603","_to":"33396"} +{"$label":"ACTS_IN","name":"Nick Mercer","type":"Role","_key":"45369","_from":"11603","_to":"30086"} +{"$label":"ACTS_IN","name":"Randall Hertzel","type":"Role","_key":"23290","_from":"11603","_to":"16888"} +{"$label":"ACTS_IN","name":"Captain Martin Lee","type":"Role","_key":"16922","_from":"11603","_to":"12715"} +{"$label":"ACTS_IN","name":"Julian Disanto","type":"Role","_key":"15126","_from":"11612","_to":"11604"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"15125","_from":"11611","_to":"11604"} +{"$label":"ACTS_IN","name":"Shi","type":"Role","_key":"15124","_from":"11610","_to":"11604"} +{"$label":"ACTS_IN","name":"Rebecca Peterson","type":"Role","_key":"15123","_from":"11609","_to":"11604"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"15122","_from":"11608","_to":"11604"} +{"$label":"ACTS_IN","name":"Wildog","type":"Role","_key":"15121","_from":"11607","_to":"11604"} +{"$label":"ACTS_IN","name":"Paul DeLucca","type":"Role","_key":"15119","_from":"11606","_to":"11604"} +{"$label":"DIRECTED","_key":"15117","_from":"11605","_to":"11604"} +{"$label":"ACTS_IN","name":"Sharish","type":"Role","_key":"120231","_from":"11606","_to":"70601"} +{"$label":"ACTS_IN","name":"Rykker","type":"Role","_key":"119520","_from":"11606","_to":"70212"} +{"$label":"ACTS_IN","name":"Lt. Matt Daniels","type":"Role","_key":"117627","_from":"11606","_to":"69148"} +{"$label":"ACTS_IN","name":"Louis Stevens","type":"Role","_key":"105938","_from":"11606","_to":"62377"} +{"$label":"ACTS_IN","name":"Yao Ling","type":"Role","_key":"64669","_from":"11606","_to":"40281"} +{"$label":"ACTS_IN","name":"Capt. Matt Daniels","type":"Role","_key":"59785","_from":"11606","_to":"37738"} +{"$label":"ACTS_IN","name":"Yo Hinomura \/ Freeman","type":"Role","_key":"54289","_from":"11606","_to":"34851"} +{"$label":"ACTS_IN","name":"Mani","type":"Role","_key":"42876","_from":"11606","_to":"28662"} +{"$label":"ACTS_IN","name":"Ryan Beckett","type":"Role","_key":"40807","_from":"11606","_to":"27472"} +{"$label":"ACTS_IN","name":"Jimmy Lee","type":"Role","_key":"21352","_from":"11606","_to":"15614"} +{"$label":"ACTS_IN","name":"Churchill","type":"Role","_key":"56317","_from":"11607","_to":"35784"} +{"$label":"ACTS_IN","name":"Pete Jensen","type":"Role","_key":"40786","_from":"11607","_to":"27452"} +{"$label":"ACTS_IN","name":"Lainie Diamond","type":"Role","_key":"103339","_from":"11609","_to":"60792"} +{"$label":"ACTS_IN","name":"Deputy Sharon Gare","type":"Role","_key":"57189","_from":"11609","_to":"36281"} +{"$label":"ACTS_IN","name":"Kenneth Wurman","type":"Role","_key":"91921","_from":"11611","_to":"54230"} +{"$label":"ACTS_IN","name":"Hans Klopek","type":"Role","_key":"73094","_from":"11611","_to":"43971"} +{"$label":"ACTS_IN","name":"Malachai","type":"Role","_key":"66004","_from":"11611","_to":"40843"} +{"$label":"DIRECTED","_key":"15137","_from":"11616","_to":"11613"} +{"$label":"ACTS_IN","name":"Vashti Synthe","type":"Role","_key":"15132","_from":"11615","_to":"11613"} +{"$label":"ACTS_IN","name":"Jordan \"Bick\" Benedict Jr.","type":"Role","_key":"15129","_from":"11614","_to":"11613"} +{"$label":"ACTS_IN","name":"Col. James Langdon","type":"Role","_key":"118318","_from":"11614","_to":"69552"} +{"$label":"ACTS_IN","name":"Cdr. James Ferraday","type":"Role","_key":"113488","_from":"11614","_to":"66871"} +{"$label":"ACTS_IN","name":"Bob Merrick","type":"Role","_key":"94601","_from":"11614","_to":"55738"} +{"$label":"ACTS_IN","name":"Jason Rudd","type":"Role","_key":"41325","_from":"11614","_to":"27781"} +{"$label":"ACTS_IN","name":"Mitch Wayne","type":"Role","_key":"40622","_from":"11614","_to":"27357"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38399","_from":"11614","_to":"25936"} +{"$label":"ACTS_IN","name":"Brad Allen","type":"Role","_key":"35076","_from":"11614","_to":"23921"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"34980","_from":"11614","_to":"23881"} +{"$label":"DIRECTED","_key":"26018","_from":"11616","_to":"18705"} +{"$label":"DIRECTED","_key":"22046","_from":"11616","_to":"16074"} +{"$label":"DIRECTED","_key":"21240","_from":"11616","_to":"15553"} +{"$label":"ACTS_IN","name":"Poole der Butler","type":"Role","_key":"25002","_from":"11616","_to":"18053"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"15150","_from":"11620","_to":"11617"} +{"$label":"ACTS_IN","name":"Flipper Purify","type":"Role","_key":"15148","_from":"11619","_to":"11617"} +{"$label":"ACTS_IN","name":"Angie Tucci","type":"Role","_key":"15140","_from":"11618","_to":"11617"} +{"$label":"ACTS_IN","name":"Carla Chuang","type":"Role","_key":"115129","_from":"11618","_to":"67797"} +{"$label":"ACTS_IN","name":"Cynthia Morales","type":"Role","_key":"102027","_from":"11618","_to":"60028"} +{"$label":"ACTS_IN","name":"Annie Collins-Nielsen","type":"Role","_key":"88362","_from":"11618","_to":"52388"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"69529","_from":"11618","_to":"42467"} +{"$label":"ACTS_IN","name":"Claire Bartel","type":"Role","_key":"67804","_from":"11618","_to":"41676"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"44842","_from":"11618","_to":"29826"} +{"$label":"ACTS_IN","name":"Liz Randone","type":"Role","_key":"18636","_from":"11618","_to":"13786"} +{"$label":"ACTS_IN","name":"Natalie Grimaldi","type":"Role","_key":"18188","_from":"11618","_to":"13492"} +{"$label":"ACTS_IN","name":"Obike Fixx","type":"Role","_key":"108910","_from":"11619","_to":"64365"} +{"$label":"ACTS_IN","name":"mes Dial","type":"Role","_key":"103069","_from":"11619","_to":"60629"} +{"$label":"ACTS_IN","name":"Monroe Hutchen","type":"Role","_key":"103063","_from":"11619","_to":"60628"} +{"$label":"ACTS_IN","name":"Neil Shaw","type":"Role","_key":"97979","_from":"11619","_to":"57707"} +{"$label":"ACTS_IN","name":"Max Carlyle","type":"Role","_key":"90622","_from":"11619","_to":"53516"} +{"$label":"ACTS_IN","name":"Mark Sheridan","type":"Role","_key":"72104","_from":"11619","_to":"43588"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"70354","_from":"11619","_to":"42858"} +{"$label":"ACTS_IN","name":"Neil Shaw","type":"Role","_key":"69612","_from":"11619","_to":"42495"} +{"$label":"ACTS_IN","name":"Nino Brown","type":"Role","_key":"66936","_from":"11619","_to":"41325"} +{"$label":"ACTS_IN","name":"John Cutter","type":"Role","_key":"63929","_from":"11619","_to":"39932"} +{"$label":"ACTS_IN","name":"Sidney Deane","type":"Role","_key":"61320","_from":"11619","_to":"38705"} +{"$label":"ACTS_IN","name":"Willie Mays Hayes","type":"Role","_key":"58312","_from":"11619","_to":"36867"} +{"$label":"ACTS_IN","name":"Simon Phoenix","type":"Role","_key":"56212","_from":"11619","_to":"35723"} +{"$label":"ACTS_IN","name":"Jack Tuliver","type":"Role","_key":"55992","_from":"11619","_to":"35597"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"55270","_from":"11619","_to":"35249"} +{"$label":"ACTS_IN","name":"Bobby Rayburn","type":"Role","_key":"54735","_from":"11619","_to":"35035"} +{"$label":"ACTS_IN","name":"Thomas Flanigan","type":"Role","_key":"54667","_from":"11619","_to":"35009"} +{"$label":"ACTS_IN","name":"Detective Harlan Regis","type":"Role","_key":"53722","_from":"11619","_to":"34638"} +{"$label":"ACTS_IN","name":"Noxeema Jackson","type":"Role","_key":"52499","_from":"11619","_to":"34147"} +{"$label":"ACTS_IN","name":"Lt. Webster Smith","type":"Role","_key":"45630","_from":"11619","_to":"30210"} +{"$label":"ACTS_IN","name":"Painter","type":"Role","_key":"43565","_from":"11619","_to":"29099"} +{"$label":"ACTS_IN","name":"Lorenz \/ Jason York","type":"Role","_key":"36952","_from":"11619","_to":"25052"} +{"$label":"ACTS_IN","name":"Pete Nessip","type":"Role","_key":"35086","_from":"11619","_to":"23924"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"18851","_from":"11619","_to":"13919"} +{"$label":"ACTS_IN","name":"Angela Drake","type":"Role","_key":"67646","_from":"11620","_to":"41626"} +{"$label":"ACTS_IN","name":"Mrs. Daniels","type":"Role","_key":"59608","_from":"11620","_to":"37627"} +{"$label":"ACTS_IN","name":"Lila Rose Oliver","type":"Role","_key":"18725","_from":"11620","_to":"13856"} +{"$label":"ACTS_IN","name":"Fabian","type":"Role","_key":"15159","_from":"11626","_to":"11621"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"15158","_from":"11625","_to":"11621"} +{"$label":"ACTS_IN","name":"Machiavelli","type":"Role","_key":"15157","_from":"11624","_to":"11621"} +{"$label":"ACTS_IN","name":"Man with the Apple","type":"Role","_key":"15156","_from":"11623","_to":"11621"} +{"$label":"ACTS_IN","name":"Book Lady","type":"Role","_key":"15155","_from":"11622","_to":"11621"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45314","_from":"11626","_to":"30050"} +{"$label":"ACTS_IN","name":"John Keelwood","type":"Role","_key":"38238","_from":"11626","_to":"25818"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"26576","_from":"11626","_to":"19095"} +{"$label":"ACTS_IN","name":"Peaches","type":"Role","_key":"15171","_from":"11630","_to":"11627"} +{"$label":"ACTS_IN","name":"Olive Worthington","type":"Role","_key":"15170","_from":"11629","_to":"11627"} +{"$label":"ACTS_IN","name":"Mr. Rose","type":"Role","_key":"15163","_from":"11628","_to":"11627"} +{"$label":"ACTS_IN","name":"Joe Black","type":"Role","_key":"103694","_from":"11628","_to":"60994"} +{"$label":"ACTS_IN","name":"Beta (voice)","type":"Role","_key":"98797","_from":"11628","_to":"58215"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"90847","_from":"11628","_to":"53607"} +{"$label":"ACTS_IN","name":"Bobby 'Bob' Blane","type":"Role","_key":"67811","_from":"11628","_to":"41677"} +{"$label":"ACTS_IN","name":"MVA Agent Harry Roedecker \/ Gas Station Attendant","type":"Role","_key":"65853","_from":"11628","_to":"40750"} +{"$label":"ACTS_IN","name":"Claremont Williams","type":"Role","_key":"58123","_from":"11628","_to":"36776"} +{"$label":"ACTS_IN","name":"Bonafide","type":"Role","_key":"55860","_from":"11628","_to":"35537"} +{"$label":"ACTS_IN","name":"(Det) Roland Castlebeck","type":"Role","_key":"55513","_from":"11628","_to":"35364"} +{"$label":"ACTS_IN","name":"Dr. Ed 'Braz' Brazzleton","type":"Role","_key":"53223","_from":"11628","_to":"34423"} +{"$label":"ACTS_IN","name":"Colonel Max Wilkins","type":"Role","_key":"52589","_from":"11628","_to":"34175"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"48015","_from":"11628","_to":"31583"} +{"$label":"ACTS_IN","name":"Bo Catlett","type":"Role","_key":"47794","_from":"11628","_to":"31468"} +{"$label":"ACTS_IN","name":"Agent Lonnie Hawkins","type":"Role","_key":"28253","_from":"11628","_to":"20232"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"22286","_from":"11628","_to":"16209"} +{"$label":"ACTS_IN","name":"Gen. Wheeler","type":"Role","_key":"18307","_from":"11628","_to":"13579"} +{"$label":"ACTS_IN","name":"Isaak O`Day","type":"Role","_key":"18160","_from":"11628","_to":"13474"} +{"$label":"ACTS_IN","name":"West Indian Archie","type":"Role","_key":"16252","_from":"11628","_to":"12327"} +{"$label":"ACTS_IN","name":"Constance Saunders","type":"Role","_key":"72435","_from":"11629","_to":"43720"} +{"$label":"ACTS_IN","name":"Lucy Rose","type":"Role","_key":"66345","_from":"11629","_to":"41035"} +{"$label":"ACTS_IN","name":"Lila Wingo Newbury","type":"Role","_key":"62642","_from":"11629","_to":"39408"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"58621","_from":"11629","_to":"37036"} +{"$label":"ACTS_IN","name":"Joanna Kennelly","type":"Role","_key":"53003","_from":"11629","_to":"34329"} +{"$label":"ACTS_IN","name":"Merc\u00e9d\u00e8s","type":"Role","_key":"32524","_from":"11629","_to":"22623"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"28736","_from":"11629","_to":"20529"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116126","_from":"11630","_to":"68369"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"56414","_from":"11630","_to":"35840"} +{"$label":"ACTS_IN","name":"Valentin","type":"Role","_key":"15183","_from":"11635","_to":"11631"} +{"$label":"ACTS_IN","name":"Raymond Boursier","type":"Role","_key":"15180","_from":"11634","_to":"11631"} +{"$label":"ACTS_IN","name":"Jean-Loup Cottins","type":"Role","_key":"15176","_from":"11633","_to":"11631"} +{"$label":"DIRECTED","_key":"15173","_from":"11632","_to":"11631"} +{"$label":"ACTS_IN","name":"Herzog Max in Bayern","type":"Role","_key":"42296","_from":"11633","_to":"28316"} +{"$label":"ACTS_IN","name":"Jean Lavardin","type":"Role","_key":"34612","_from":"11633","_to":"23691"} +{"$label":"ACTS_IN","name":"Vieux","type":"Role","_key":"34600","_from":"11633","_to":"23684"} +{"$label":"ACTS_IN","name":"Jean-Louis Constant","type":"Role","_key":"30644","_from":"11633","_to":"21518"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des Logis Beaupied","type":"Role","_key":"72737","_from":"11634","_to":"43823"} +{"$label":"ACTS_IN","name":"L'imb\u00e9cile","type":"Role","_key":"70456","_from":"11634","_to":"42892"} +{"$label":"ACTS_IN","name":"Beaupied","type":"Role","_key":"63795","_from":"11634","_to":"39891"} +{"$label":"ACTS_IN","name":"Adam Stanton, Age 11","type":"Role","_key":"15197","_from":"11640","_to":"11636"} +{"$label":"ACTS_IN","name":"Tennis Boy","type":"Role","_key":"15196","_from":"11639","_to":"11636"} +{"$label":"ACTS_IN","name":"Tom Stark","type":"Role","_key":"15195","_from":"11638","_to":"11636"} +{"$label":"DIRECTED","_key":"15185","_from":"11637","_to":"11636"} +{"$label":"DIRECTED","_key":"99486","_from":"11637","_to":"58648"} +{"$label":"DIRECTED","_key":"53758","_from":"11637","_to":"34653"} +{"$label":"ACTS_IN","name":"Cyrus Halliday","type":"Role","_key":"15210","_from":"11647","_to":"11641"} +{"$label":"ACTS_IN","name":"Bob Holliday","type":"Role","_key":"15207","_from":"11646","_to":"11641"} +{"$label":"ACTS_IN","name":"Radev","type":"Role","_key":"15204","_from":"11645","_to":"11641"} +{"$label":"ACTS_IN","name":"George Custer","type":"Role","_key":"15202","_from":"11644","_to":"11641"} +{"$label":"ACTS_IN","name":"Tex Bell","type":"Role","_key":"15201","_from":"11643","_to":"11641"} +{"$label":"ACTS_IN","name":"Jeb Stuart","type":"Role","_key":"15199","_from":"11642","_to":"11641"} +{"$label":"ACTS_IN","name":"Kerry Bradford","type":"Role","_key":"114143","_from":"11642","_to":"67220"} +{"$label":"ACTS_IN","name":"Clay Hardin","type":"Role","_key":"114095","_from":"11642","_to":"67196"} +{"$label":"ACTS_IN","name":"Wade Hatton","type":"Role","_key":"113504","_from":"11642","_to":"66878"} +{"$label":"ACTS_IN","name":"George Armstrong Custer","type":"Role","_key":"112094","_from":"11642","_to":"66188"} +{"$label":"ACTS_IN","name":"Dr Peter Blood","type":"Role","_key":"110423","_from":"11642","_to":"65236"} +{"$label":"ACTS_IN","name":"The Earl of Essex","type":"Role","_key":"110410","_from":"11642","_to":"65234"} +{"$label":"ACTS_IN","name":"Robin Hood","type":"Role","_key":"66626","_from":"11642","_to":"41182"} +{"$label":"ACTS_IN","name":"Ed Carlsen","type":"Role","_key":"110568","_from":"11643","_to":"65329"} +{"$label":"ACTS_IN","name":"The Prince of Tyrone","type":"Role","_key":"110414","_from":"11643","_to":"65234"} +{"$label":"ACTS_IN","name":"Little John","type":"Role","_key":"66632","_from":"11643","_to":"41182"} +{"$label":"ACTS_IN","name":"Danker","type":"Role","_key":"25529","_from":"11643","_to":"18391"} +{"$label":"ACTS_IN","name":"Himself (archive footage) (uncredited)","type":"Role","_key":"15479","_from":"11644","_to":"11823"} +{"$label":"ACTS_IN","name":"James I. Hessler","type":"Role","_key":"117164","_from":"11645","_to":"68931"} +{"$label":"ACTS_IN","name":"Dan Evans","type":"Role","_key":"98877","_from":"11645","_to":"58264"} +{"$label":"ACTS_IN","name":"Joe Starrett","type":"Role","_key":"26021","_from":"11645","_to":"18705"} +{"$label":"ACTS_IN","name":"Bar Amand","type":"Role","_key":"21252","_from":"11645","_to":"15553"} +{"$label":"ACTS_IN","name":"Jim Scott","type":"Role","_key":"107009","_from":"11646","_to":"63087"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"114209","_from":"11647","_to":"67273"} +{"$label":"ACTS_IN","name":"Squire O'Neill","type":"Role","_key":"113431","_from":"11647","_to":"66828"} +{"$label":"ACTS_IN","name":"Major Jason I. Sculley","type":"Role","_key":"100979","_from":"11647","_to":"59510"} +{"$label":"ACTS_IN","name":"General Theopholus Bogardus","type":"Role","_key":"17126","_from":"11647","_to":"12831"} +{"$label":"ACTS_IN","name":"Chanoine","type":"Role","_key":"15223","_from":"11657","_to":"11648"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"15222","_from":"11656","_to":"11648"} +{"$label":"ACTS_IN","name":"La secr\u00e9taire Dominique","type":"Role","_key":"15221","_from":"11655","_to":"11648"} +{"$label":"ACTS_IN","name":"Bontemps","type":"Role","_key":"15219","_from":"11654","_to":"11648"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"15218","_from":"11653","_to":"11648"} +{"$label":"ACTS_IN","name":"Directeur cin\u00e9ma Reims","type":"Role","_key":"15217","_from":"11652","_to":"11648"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"15216","_from":"11651","_to":"11648"} +{"$label":"ACTS_IN","name":"Franca Lachenay","type":"Role","_key":"15214","_from":"11650","_to":"11648"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"15212","_from":"11649","_to":"11648"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"34640","_from":"11649","_to":"23703"} +{"$label":"ACTS_IN","name":"Dominou","type":"Role","_key":"34630","_from":"11649","_to":"23697"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"34597","_from":"11649","_to":"23684"} +{"$label":"ACTS_IN","name":"Vikki","type":"Role","_key":"34576","_from":"11649","_to":"23672"} +{"$label":"ACTS_IN","name":"Anya","type":"Role","_key":"34559","_from":"11649","_to":"23665"} +{"$label":"ACTS_IN","name":"Bortei","type":"Role","_key":"34434","_from":"11649","_to":"23592"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"34285","_from":"11649","_to":"23529"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"33917","_from":"11649","_to":"23357"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"33610","_from":"11649","_to":"23215"} +{"$label":"ACTS_IN","name":"Agn\u00e8s Villermosa","type":"Role","_key":"29512","_from":"11649","_to":"20910"} +{"$label":"ACTS_IN","name":"Solange Garnier","type":"Role","_key":"21314","_from":"11649","_to":"15589"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"16313","_from":"11650","_to":"12364"} +{"$label":"ACTS_IN","name":"Berthe Dolle","type":"Role","_key":"35495","_from":"11651","_to":"24138"} +{"$label":"ACTS_IN","name":"Bernadette Pluvier","type":"Role","_key":"33955","_from":"11651","_to":"23371"} +{"$label":"ACTS_IN","name":"der Vater","type":"Role","_key":"43011","_from":"11654","_to":"28730"} +{"$label":"ACTS_IN","name":"Andr\u00e9 \u00c9paulard","type":"Role","_key":"34025","_from":"11654","_to":"23403"} +{"$label":"DIRECTED","_key":"15229","_from":"11664","_to":"11658"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"15228","_from":"11663","_to":"11658"} +{"$label":"ACTS_IN","name":"\u00d3skar Halld\u00f3rsson","type":"Role","_key":"15227","_from":"11662","_to":"11658"} +{"$label":"ACTS_IN","name":"\u00cdris \u00d3skarsd\u00f3ttir","type":"Role","_key":"15226","_from":"11661","_to":"11658"} +{"$label":"ACTS_IN","name":"B. Kristmundsson","type":"Role","_key":"15225","_from":"11660","_to":"11658"} +{"$label":"ACTS_IN","name":"N\u00f3i Kristmundsson","type":"Role","_key":"15224","_from":"11659","_to":"11658"} +{"$label":"ACTS_IN","name":"Bj\u00f6rgvin","type":"Role","_key":"36932","_from":"11663","_to":"25030"} +{"$label":"DIRECTED","_key":"36287","_from":"11664","_to":"24618"} +{"$label":"DIRECTED","_key":"36277","_from":"11664","_to":"24611"} +{"$label":"ACTS_IN","name":"Mr. Ears","type":"Role","_key":"15235","_from":"11669","_to":"11665"} +{"$label":"ACTS_IN","name":"Salud","type":"Role","_key":"15232","_from":"11668","_to":"11665"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"15231","_from":"11667","_to":"11665"} +{"$label":"DIRECTED","_key":"15230","_from":"11666","_to":"11665"} +{"$label":"DIRECTED","_key":"90078","_from":"11666","_to":"53274"} +{"$label":"DIRECTED","_key":"72499","_from":"11666","_to":"43738"} +{"$label":"ACTS_IN","name":"Husky","type":"Role","_key":"32658","_from":"11667","_to":"22691"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"105265","_from":"11668","_to":"61947"} +{"$label":"ACTS_IN","name":"James Cooper","type":"Role","_key":"91325","_from":"11668","_to":"53862"} +{"$label":"ACTS_IN","name":"Arch Hutch Bessy","type":"Role","_key":"90072","_from":"11668","_to":"53274"} +{"$label":"ACTS_IN","name":"Hutch Bessy","type":"Role","_key":"72497","_from":"11668","_to":"43738"} +{"$label":"ACTS_IN","name":"Bambino","type":"Role","_key":"72245","_from":"11668","_to":"43650"} +{"$label":"ACTS_IN","name":"Hector Fieramosca","type":"Role","_key":"72133","_from":"11668","_to":"43603"} +{"$label":"ACTS_IN","name":"Bull Webster","type":"Role","_key":"71752","_from":"11668","_to":"43433"} +{"$label":"ACTS_IN","name":"Wilbur Walsh","type":"Role","_key":"71584","_from":"11668","_to":"43360"} +{"$label":"ACTS_IN","name":"Father \/ Padre Pedro","type":"Role","_key":"71528","_from":"11668","_to":"43342"} +{"$label":"ACTS_IN","name":"Doug O'Riordan alias Mason","type":"Role","_key":"71070","_from":"11668","_to":"43154"} +{"$label":"ACTS_IN","name":"Bud Graziano","type":"Role","_key":"71059","_from":"11668","_to":"43149"} +{"$label":"ACTS_IN","name":"Sergeant Alan Parker","type":"Role","_key":"71055","_from":"11668","_to":"43147"} +{"$label":"ACTS_IN","name":"Charlie Smith","type":"Role","_key":"71051","_from":"11668","_to":"43146"} +{"$label":"ACTS_IN","name":"Charlie Firpo","type":"Role","_key":"69438","_from":"11668","_to":"42437"} +{"$label":"ACTS_IN","name":"Banana Joe","type":"Role","_key":"69227","_from":"11668","_to":"42333"} +{"$label":"ACTS_IN","name":"Inspector Rizzo","type":"Role","_key":"68215","_from":"11668","_to":"41891"} +{"$label":"ACTS_IN","name":"Bulldozer","type":"Role","_key":"68139","_from":"11668","_to":"41852"} +{"$label":"ACTS_IN","name":"Rizzo","type":"Role","_key":"67582","_from":"11668","_to":"41606"} +{"$label":"ACTS_IN","name":"Inspector 'Flatfoot' Rizzo","type":"Role","_key":"67572","_from":"11668","_to":"41602"} +{"$label":"ACTS_IN","name":"Inspector 'Flatfoot' Rizzo","type":"Role","_key":"67546","_from":"11668","_to":"41589"} +{"$label":"ACTS_IN","name":"Sheriff Hall","type":"Role","_key":"67495","_from":"11668","_to":"41568"} +{"$label":"ACTS_IN","name":"Sheriff Hall","type":"Role","_key":"65665","_from":"11668","_to":"40680"} +{"$label":"ACTS_IN","name":"Steve Forest \/ Officer L A Ray","type":"Role","_key":"62435","_from":"11668","_to":"39331"} +{"$label":"ACTS_IN","name":"The Genie","type":"Role","_key":"56997","_from":"11668","_to":"36163"} +{"$label":"ACTS_IN","name":"Bambino","type":"Role","_key":"53582","_from":"11668","_to":"34582"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"52878","_from":"11668","_to":"34274"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"52154","_from":"11668","_to":"33992"} +{"$label":"ACTS_IN","name":"Greg Wonder","type":"Role","_key":"50932","_from":"11668","_to":"33241"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"45129","_from":"11668","_to":"29948"} +{"$label":"ACTS_IN","name":"Charlie O`Brien","type":"Role","_key":"43265","_from":"11668","_to":"28899"} +{"$label":"ACTS_IN","name":"Detective Hoffman","type":"Role","_key":"116680","_from":"11669","_to":"68687"} +{"$label":"ACTS_IN","name":"Un allemand \u00e0 la perquisition","type":"Role","_key":"48934","_from":"11669","_to":"32047"} +{"$label":"ACTS_IN","name":"Radebach","type":"Role","_key":"40531","_from":"11669","_to":"27287"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34006","_from":"11669","_to":"23394"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"32860","_from":"11669","_to":"22810"} +{"$label":"ACTS_IN","name":"Eleni, Pelagia's Friend","type":"Role","_key":"15246","_from":"11678","_to":"11670"} +{"$label":"ACTS_IN","name":"Velisarios","type":"Role","_key":"15245","_from":"11677","_to":"11670"} +{"$label":"ACTS_IN","name":"Father Aresenios","type":"Role","_key":"15244","_from":"11676","_to":"11670"} +{"$label":"ACTS_IN","name":"Kokolios","type":"Role","_key":"15243","_from":"11675","_to":"11670"} +{"$label":"ACTS_IN","name":"Mrs. Stamatis","type":"Role","_key":"15242","_from":"11674","_to":"11670"} +{"$label":"ACTS_IN","name":"Mr. Stamatis","type":"Role","_key":"15241","_from":"11673","_to":"11670"} +{"$label":"ACTS_IN","name":"Drosoula","type":"Role","_key":"15240","_from":"11672","_to":"11670"} +{"$label":"DIRECTED","_key":"15236","_from":"11671","_to":"11670"} +{"$label":"DIRECTED","_key":"113271","_from":"11671","_to":"66730"} +{"$label":"DIRECTED","_key":"107648","_from":"11671","_to":"63537"} +{"$label":"DIRECTED","_key":"56636","_from":"11671","_to":"35969"} +{"$label":"DIRECTED","_key":"16755","_from":"11671","_to":"12639"} +{"$label":"ACTS_IN","name":"Anticleia","type":"Role","_key":"111712","_from":"11672","_to":"65950"} +{"$label":"ACTS_IN","name":"Maria Pappadimos","type":"Role","_key":"66664","_from":"11672","_to":"41194"} +{"$label":"ACTS_IN","name":"Widow","type":"Role","_key":"64457","_from":"11672","_to":"40162"} +{"$label":"ACTS_IN","name":"Raffaella","type":"Role","_key":"27906","_from":"11672","_to":"20003"} +{"$label":"ACTS_IN","name":"Simonetta Palazzi","type":"Role","_key":"24958","_from":"11672","_to":"18031"} +{"$label":"ACTS_IN","name":"Frau von Z","type":"Role","_key":"23043","_from":"11672","_to":"16714"} +{"$label":"ACTS_IN","name":"Rebekka","type":"Role","_key":"22935","_from":"11672","_to":"16632"} +{"$label":"ACTS_IN","name":"Zippora","type":"Role","_key":"21870","_from":"11672","_to":"15979"} +{"$label":"ACTS_IN","name":"Hecky Brown","type":"Role","_key":"15253","_from":"11683","_to":"11679"} +{"$label":"ACTS_IN","name":"Philip Sussman","type":"Role","_key":"15252","_from":"11682","_to":"11679"} +{"$label":"ACTS_IN","name":"Florenze Barrett","type":"Role","_key":"15249","_from":"11681","_to":"11679"} +{"$label":"DIRECTED","_key":"15248","_from":"11680","_to":"11679"} +{"$label":"DIRECTED","_key":"95301","_from":"11680","_to":"56070"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"116434","_from":"11681","_to":"68533"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"118187","_from":"11682","_to":"69456"} +{"$label":"ACTS_IN","name":"Insp. Lefevre","type":"Role","_key":"22725","_from":"11682","_to":"16480"} +{"$label":"ACTS_IN","name":"Pseudolus","type":"Role","_key":"113875","_from":"11683","_to":"67081"} +{"$label":"ACTS_IN","name":"General Joe Greller","type":"Role","_key":"15262","_from":"11687","_to":"11684"} +{"$label":"ACTS_IN","name":"Kathleen Sparr","type":"Role","_key":"15260","_from":"11686","_to":"11684"} +{"$label":"DIRECTED","_key":"15254","_from":"11685","_to":"11684"} +{"$label":"DIRECTED","_key":"117655","_from":"11685","_to":"69157"} +{"$label":"DIRECTED","_key":"59578","_from":"11685","_to":"37614"} +{"$label":"DIRECTED","_key":"53182","_from":"11685","_to":"34401"} +{"$label":"DIRECTED","_key":"29635","_from":"11685","_to":"20977"} +{"$label":"ACTS_IN","name":"Ice","type":"Role","_key":"15273","_from":"11695","_to":"11688"} +{"$label":"ACTS_IN","name":"Officer Krupke","type":"Role","_key":"15272","_from":"11694","_to":"11688"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"15271","_from":"11693","_to":"11688"} +{"$label":"ACTS_IN","name":"Bernardo","type":"Role","_key":"15269","_from":"11692","_to":"11688"} +{"$label":"ACTS_IN","name":"Riff","type":"Role","_key":"15267","_from":"11691","_to":"11688"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"15266","_from":"11690","_to":"11688"} +{"$label":"DIRECTED","_key":"15263","_from":"11689","_to":"11688"} +{"$label":"ACTS_IN","name":"Peter Van Pels","type":"Role","_key":"22032","_from":"11690","_to":"16074"} +{"$label":"ACTS_IN","name":"Bart Tare (age 14)","type":"Role","_key":"117032","_from":"11691","_to":"68872"} +{"$label":"ACTS_IN","name":"Gideon Pontipee","type":"Role","_key":"109552","_from":"11691","_to":"64708"} +{"$label":"ACTS_IN","name":"Luke Sanderson","type":"Role","_key":"71841","_from":"11691","_to":"43474"} +{"$label":"ACTS_IN","name":"Dr. Paul Stewart","type":"Role","_key":"26278","_from":"11691","_to":"18871"} +{"$label":"ACTS_IN","name":"Lieutenant Erik Bergman","type":"Role","_key":"106339","_from":"11692","_to":"62650"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33570","_from":"11692","_to":"23204"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"21316","_from":"11692","_to":"15589"} +{"$label":"ACTS_IN","name":"Max Lieberman","type":"Role","_key":"117104","_from":"11693","_to":"68902"} +{"$label":"ACTS_IN","name":"Leopold Gideon","type":"Role","_key":"34130","_from":"11693","_to":"23444"} +{"$label":"ACTS_IN","name":"Doc Schindler","type":"Role","_key":"16306","_from":"11693","_to":"12354"} +{"$label":"ACTS_IN","name":"Raza","type":"Role","_key":"15280","_from":"11699","_to":"11696"} +{"$label":"ACTS_IN","name":"Christine Everhart","type":"Role","_key":"15279","_from":"11698","_to":"11696"} +{"$label":"DIRECTED","_key":"15274","_from":"11697","_to":"11696"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"121400","_from":"11697","_to":"71336"} +{"$label":"ACTS_IN","name":"Hurley the Guinea Pig (voice)","type":"Role","_key":"120469","_from":"11697","_to":"70764"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"109429","_from":"11697","_to":"64647"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"105766","_from":"11697","_to":"62266"} +{"$label":"ACTS_IN","name":"John Person","type":"Role","_key":"102334","_from":"11697","_to":"60214"} +{"$label":"ACTS_IN","name":"D-Bob","type":"Role","_key":"100670","_from":"11697","_to":"59358"} +{"$label":"ACTS_IN","name":"Gutter","type":"Role","_key":"100200","_from":"11697","_to":"59099"} +{"$label":"ACTS_IN","name":"Mike Peters.","type":"Role","_key":"61771","_from":"11697","_to":"38893"} +{"$label":"ACTS_IN","name":"Hogan","type":"Role","_key":"61177","_from":"11697","_to":"38656"} +{"$label":"ACTS_IN","name":"Kyle Fisher","type":"Role","_key":"59621","_from":"11697","_to":"37645"} +{"$label":"ACTS_IN","name":"Johnny O","type":"Role","_key":"56473","_from":"11697","_to":"35880"} +{"$label":"ACTS_IN","name":"Franklin 'Foggy' Nelson","type":"Role","_key":"54133","_from":"11697","_to":"34788"} +{"$label":"ACTS_IN","name":"Reilly (voice)","type":"Role","_key":"46857","_from":"11697","_to":"30900"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"45395","_from":"11697","_to":"30097"} +{"$label":"DIRECTED","_key":"105769","_from":"11697","_to":"62266"} +{"$label":"DIRECTED","_key":"65241","_from":"11697","_to":"40502"} +{"$label":"DIRECTED","_key":"61182","_from":"11697","_to":"38656"} +{"$label":"DIRECTED","_key":"44938","_from":"11697","_to":"29879"} +{"$label":"ACTS_IN","name":"Dr. Miranda Storm","type":"Role","_key":"100196","_from":"11698","_to":"59097"} +{"$label":"ACTS_IN","name":"Desiree","type":"Role","_key":"93425","_from":"11698","_to":"55013"} +{"$label":"ACTS_IN","name":"Chloe Whitfield","type":"Role","_key":"70093","_from":"11698","_to":"42734"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"61523","_from":"11698","_to":"38797"} +{"$label":"ACTS_IN","name":"Christine Everhart","type":"Role","_key":"61178","_from":"11698","_to":"38656"} +{"$label":"ACTS_IN","name":"Carley Bobby","type":"Role","_key":"55961","_from":"11698","_to":"35579"} +{"$label":"ACTS_IN","name":"Raun","type":"Role","_key":"15290","_from":"11704","_to":"11700"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"15288","_from":"11703","_to":"11700"} +{"$label":"ACTS_IN","name":"Rachel Varney","type":"Role","_key":"15285","_from":"11702","_to":"11700"} +{"$label":"ACTS_IN","name":"Marianne Graves","type":"Role","_key":"15284","_from":"11701","_to":"11700"} +{"$label":"ACTS_IN","name":"Kay Walsh","type":"Role","_key":"116235","_from":"11701","_to":"68437"} +{"$label":"ACTS_IN","name":"Gloria Mundy","type":"Role","_key":"105324","_from":"11701","_to":"61977"} +{"$label":"ACTS_IN","name":"Joanna Stayton","type":"Role","_key":"65736","_from":"11701","_to":"40701"} +{"$label":"ACTS_IN","name":"Pvt. Judy Benjamin - Judy Goodman","type":"Role","_key":"65632","_from":"11701","_to":"40671"} +{"$label":"ACTS_IN","name":"Gwen Phillips","type":"Role","_key":"63049","_from":"11701","_to":"39566"} +{"$label":"ACTS_IN","name":"Helen Sharp","type":"Role","_key":"53441","_from":"11701","_to":"34530"} +{"$label":"ACTS_IN","name":"Suzette","type":"Role","_key":"52174","_from":"11701","_to":"34000"} +{"$label":"ACTS_IN","name":"Nancy Clark","type":"Role","_key":"51762","_from":"11701","_to":"33774"} +{"$label":"ACTS_IN","name":"Lou Jean Poplin","type":"Role","_key":"35972","_from":"11701","_to":"24432"} +{"$label":"ACTS_IN","name":"Elise Elliot","type":"Role","_key":"24332","_from":"11701","_to":"17622"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"68397","_from":"11702","_to":"41965"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"36562","_from":"11702","_to":"24786"} +{"$label":"ACTS_IN","name":"Byron","type":"Role","_key":"112310","_from":"11703","_to":"66307"} +{"$label":"ACTS_IN","name":"Godfather","type":"Role","_key":"60992","_from":"11704","_to":"38538"} +{"$label":"ACTS_IN","name":"Southie Girl","type":"Role","_key":"15301","_from":"11712","_to":"11705"} +{"$label":"ACTS_IN","name":"Lupo","type":"Role","_key":"15300","_from":"11711","_to":"11705"} +{"$label":"ACTS_IN","name":"Southie","type":"Role","_key":"15299","_from":"11710","_to":"11705"} +{"$label":"ACTS_IN","name":"Golden Sparrow","type":"Role","_key":"15298","_from":"11709","_to":"11705"} +{"$label":"ACTS_IN","name":"Ni Chang","type":"Role","_key":"15296","_from":"11708","_to":"11705"} +{"$label":"ACTS_IN","name":"Old Hop\/ Lu Yan","type":"Role","_key":"15293","_from":"11707","_to":"11705"} +{"$label":"DIRECTED","_key":"15292","_from":"11706","_to":"11705"} +{"$label":"DIRECTED","_key":"67179","_from":"11706","_to":"41441"} +{"$label":"DIRECTED","_key":"65500","_from":"11706","_to":"40601"} +{"$label":"DIRECTED","_key":"61167","_from":"11706","_to":"38655"} +{"$label":"DIRECTED","_key":"50220","_from":"11706","_to":"32826"} +{"$label":"ACTS_IN","name":"Shing Lung","type":"Role","_key":"119501","_from":"11707","_to":"70198"} +{"$label":"ACTS_IN","name":"Jerry Kwan","type":"Role","_key":"119446","_from":"11707","_to":"70174"} +{"$label":"ACTS_IN","name":"Jiang (as Jacky Chan)","type":"Role","_key":"117834","_from":"11707","_to":"69269"} +{"$label":"ACTS_IN","name":"Inspector Chan","type":"Role","_key":"117763","_from":"11707","_to":"69226"} +{"$label":"ACTS_IN","name":"Lung \/ Steve Tong","type":"Role","_key":"117403","_from":"11707","_to":"69054"} +{"$label":"ACTS_IN","name":"Ma Yau \/ Die Hard (John Ma \/ Boomer in US version)","type":"Role","_key":"117395","_from":"11707","_to":"69050"} +{"$label":"ACTS_IN","name":"Ted \/ Tat Fung","type":"Role","_key":"117391","_from":"11707","_to":"69048"} +{"$label":"ACTS_IN","name":"Yi-Lang","type":"Role","_key":"117358","_from":"11707","_to":"69027"} +{"$label":"ACTS_IN","name":"Cao Lei (as Chen Lung)","type":"Role","_key":"117349","_from":"11707","_to":"69019"} +{"$label":"ACTS_IN","name":"Chan Lung","type":"Role","_key":"117309","_from":"11707","_to":"68995"} +{"$label":"ACTS_IN","name":"Lord Ting Chung","type":"Role","_key":"117277","_from":"11707","_to":"68979"} +{"$label":"ACTS_IN","name":"Muscles","type":"Role","_key":"117205","_from":"11707","_to":"68950"} +{"$label":"ACTS_IN","name":"A Lung (as Chen Yuen Lung)","type":"Role","_key":"117006","_from":"11707","_to":"68863"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"112300","_from":"11707","_to":"66303"} +{"$label":"ACTS_IN","name":"Dragon","type":"Role","_key":"109104","_from":"11707","_to":"64466"} +{"$label":"ACTS_IN","name":"Wong Fei-hung","type":"Role","_key":"88678","_from":"11707","_to":"52549"} +{"$label":"ACTS_IN","name":"Jackie Chan, Mitsubishi Engineer","type":"Role","_key":"72929","_from":"11707","_to":"43910"} +{"$label":"ACTS_IN","name":"Buck Yuen \/ Jackie Chan","type":"Role","_key":"72346","_from":"11707","_to":"43691"} +{"$label":"ACTS_IN","name":"General Meng Yi","type":"Role","_key":"71315","_from":"11707","_to":"43260"} +{"$label":"ACTS_IN","name":"Senior Insp. Chan Kwok-Wing","type":"Role","_key":"71195","_from":"11707","_to":"43209"} +{"$label":"ACTS_IN","name":"Dragon","type":"Role","_key":"70686","_from":"11707","_to":"43001"} +{"$label":"ACTS_IN","name":"Chien Fu (as Lung Cheng)","type":"Role","_key":"70503","_from":"11707","_to":"42916"} +{"$label":"ACTS_IN","name":"Jackie Chan, Subaru Driver","type":"Role","_key":"68914","_from":"11707","_to":"42196"} +{"$label":"ACTS_IN","name":"Wong Fei-Hung","type":"Role","_key":"68685","_from":"11707","_to":"42090"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"68532","_from":"11707","_to":"42025"} +{"$label":"ACTS_IN","name":"City Hunter","type":"Role","_key":"68482","_from":"11707","_to":"42007"} +{"$label":"ACTS_IN","name":"Insp. Chan Ka Kui","type":"Role","_key":"68079","_from":"11707","_to":"41824"} +{"$label":"ACTS_IN","name":"Jackie Condor (Jackie Chan)","type":"Role","_key":"67038","_from":"11707","_to":"41382"} +{"$label":"ACTS_IN","name":"Jackie Condor (Jackie Chan)","type":"Role","_key":"67032","_from":"11707","_to":"41379"} +{"$label":"ACTS_IN","name":"C.N. Chan","type":"Role","_key":"66931","_from":"11707","_to":"41322"} +{"$label":"ACTS_IN","name":"Jimmy Tong","type":"Role","_key":"65670","_from":"11707","_to":"40682"} +{"$label":"ACTS_IN","name":"Chan Ka Kui","type":"Role","_key":"65461","_from":"11707","_to":"40581"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"64659","_from":"11707","_to":"40278"} +{"$label":"ACTS_IN","name":"Eddie Yang","type":"Role","_key":"64504","_from":"11707","_to":"40185"} +{"$label":"ACTS_IN","name":"Chan Foh To (Alfred Tung in US version)","type":"Role","_key":"62721","_from":"11707","_to":"39432"} +{"$label":"ACTS_IN","name":"Lord of Armour","type":"Role","_key":"62093","_from":"11707","_to":"39097"} +{"$label":"ACTS_IN","name":"Passepartout \/ Lau Xing","type":"Role","_key":"61689","_from":"11707","_to":"38858"} +{"$label":"ACTS_IN","name":"Muscles","type":"Role","_key":"59835","_from":"11707","_to":"37785"} +{"$label":"ACTS_IN","name":"Insp. Chan Ka Kui","type":"Role","_key":"53663","_from":"11707","_to":"34612"} +{"$label":"ACTS_IN","name":"Chan Ka Kui","type":"Role","_key":"52305","_from":"11707","_to":"34054"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"50529","_from":"11707","_to":"33003"} +{"$label":"ACTS_IN","name":"Chon Wang","type":"Role","_key":"50211","_from":"11707","_to":"32820"} +{"$label":"ACTS_IN","name":"Chon Wang","type":"Role","_key":"41396","_from":"11707","_to":"27828"} +{"$label":"ACTS_IN","name":"Chief Insp. Lee","type":"Role","_key":"36258","_from":"11707","_to":"24603"} +{"$label":"ACTS_IN","name":"Chief Insp. Lee","type":"Role","_key":"36248","_from":"11707","_to":"24600"} +{"$label":"ACTS_IN","name":"Chief Insp. Lee","type":"Role","_key":"18387","_from":"11707","_to":"13635"} +{"$label":"DIRECTED","_key":"119499","_from":"11707","_to":"70198"} +{"$label":"DIRECTED","_key":"109110","_from":"11707","_to":"64466"} +{"$label":"DIRECTED","_key":"70690","_from":"11707","_to":"43001"} +{"$label":"DIRECTED","_key":"67042","_from":"11707","_to":"41382"} +{"$label":"DIRECTED","_key":"67036","_from":"11707","_to":"41379"} +{"$label":"DIRECTED","_key":"65465","_from":"11707","_to":"40581"} +{"$label":"DIRECTED","_key":"52309","_from":"11707","_to":"34054"} +{"$label":"DIRECTED","_key":"50533","_from":"11707","_to":"33003"} +{"$label":"ACTS_IN","name":"Yu Ching (as Li Bing Bing)","type":"Role","_key":"117610","_from":"11708","_to":"69139"} +{"$label":"ACTS_IN","name":"Producer","type":"Role","_key":"15311","_from":"11715","_to":"11713"} +{"$label":"ACTS_IN","name":"Piotrek Krol","type":"Role","_key":"15307","_from":"11714","_to":"11713"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"119237","_from":"11714","_to":"70057"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56088","_from":"11715","_to":"35624"} +{"$label":"ACTS_IN","name":"Adolphe Le Bon","type":"Role","_key":"42251","_from":"11715","_to":"28293"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"30856","_from":"11715","_to":"21625"} +{"$label":"ACTS_IN","name":"Valerius","type":"Role","_key":"22381","_from":"11715","_to":"16258"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"15317","_from":"11719","_to":"11716"} +{"$label":"ACTS_IN","name":"Mathilda","type":"Role","_key":"15316","_from":"11718","_to":"11716"} +{"$label":"DIRECTED","_key":"15313","_from":"11717","_to":"11716"} +{"$label":"DIRECTED","_key":"28406","_from":"11717","_to":"20322"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"98920","_from":"11718","_to":"58284"} +{"$label":"ACTS_IN","name":"Juliette Bath","type":"Role","_key":"88607","_from":"11718","_to":"52505"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"46993","_from":"11718","_to":"30983"} +{"$label":"ACTS_IN","name":"Angelina Sable","type":"Role","_key":"46318","_from":"11718","_to":"30610"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"15325","_from":"11724","_to":"11720"} +{"$label":"ACTS_IN","name":"The Count","type":"Role","_key":"15323","_from":"11723","_to":"11720"} +{"$label":"ACTS_IN","name":"Princess Flavia","type":"Role","_key":"15321","_from":"11722","_to":"11720"} +{"$label":"DIRECTED","_key":"15318","_from":"11721","_to":"11720"} +{"$label":"DIRECTED","_key":"27426","_from":"11721","_to":"19693"} +{"$label":"DIRECTED","_key":"17422","_from":"11721","_to":"13027"} +{"$label":"ACTS_IN","name":"Ferryman","type":"Role","_key":"58685","_from":"11724","_to":"37064"} +{"$label":"ACTS_IN","name":"General Streck","type":"Role","_key":"50711","_from":"11724","_to":"33102"} +{"$label":"ACTS_IN","name":"Sir Harald Alabaster","type":"Role","_key":"49868","_from":"11724","_to":"32648"} +{"$label":"ACTS_IN","name":"Meela Nais\/Anck Su Namun","type":"Role","_key":"15334","_from":"11729","_to":"11726"} +{"$label":"ACTS_IN","name":"Alexander O'Connell","type":"Role","_key":"15333","_from":"11728","_to":"11726"} +{"$label":"ACTS_IN","name":"Mathayus the Scorpion King","type":"Role","_key":"15332","_from":"11727","_to":"11726"} +{"$label":"ACTS_IN","name":"Capt. Charles 'Chuck' Baker (voice)","type":"Role","_key":"110237","_from":"11727","_to":"65161"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99366","_from":"11727","_to":"58552"} +{"$label":"ACTS_IN","name":"Jack Bruno","type":"Role","_key":"97137","_from":"11727","_to":"57141"} +{"$label":"ACTS_IN","name":"Joe Kingman","type":"Role","_key":"95843","_from":"11727","_to":"56368"} +{"$label":"ACTS_IN","name":"Agent 23","type":"Role","_key":"71396","_from":"11727","_to":"43300"} +{"$label":"ACTS_IN","name":"Chris Vaughn","type":"Role","_key":"69384","_from":"11727","_to":"42416"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"61325","_from":"11727","_to":"38706"} +{"$label":"ACTS_IN","name":"Sean Porter","type":"Role","_key":"56453","_from":"11727","_to":"35870"} +{"$label":"ACTS_IN","name":"Mathayus","type":"Role","_key":"53172","_from":"11727","_to":"34399"} +{"$label":"ACTS_IN","name":"Sarge","type":"Role","_key":"50888","_from":"11727","_to":"33214"} +{"$label":"ACTS_IN","name":"Boxer Santaros","type":"Role","_key":"33636","_from":"11727","_to":"23230"} +{"$label":"ACTS_IN","name":"Elliot Wilhelm","type":"Role","_key":"32584","_from":"11727","_to":"22640"} +{"$label":"ACTS_IN","name":"Nicole Willis","type":"Role","_key":"109641","_from":"11729","_to":"64758"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59176","_from":"11729","_to":"37349"} +{"$label":"ACTS_IN","name":"Lin","type":"Role","_key":"15341","_from":"11732","_to":"11730"} +{"$label":"ACTS_IN","name":"Alex O'Connell","type":"Role","_key":"15339","_from":"11731","_to":"11730"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"56571","_from":"11731","_to":"35929"} +{"$label":"ACTS_IN","name":"Charlie Mollison","type":"Role","_key":"50686","_from":"11731","_to":"33088"} +{"$label":"ACTS_IN","name":"Kong's Daughter","type":"Role","_key":"117609","_from":"11732","_to":"69139"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"15363","_from":"11753","_to":"11733"} +{"$label":"ACTS_IN","name":"J\u00f6rg","type":"Role","_key":"15362","_from":"11752","_to":"11733"} +{"$label":"ACTS_IN","name":"Irina","type":"Role","_key":"15361","_from":"11751","_to":"11733"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"15360","_from":"11750","_to":"11733"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"15359","_from":"11749","_to":"11733"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"15358","_from":"11748","_to":"11733"} +{"$label":"ACTS_IN","name":"Falk","type":"Role","_key":"15357","_from":"11747","_to":"11733"} +{"$label":"ACTS_IN","name":"Susanna","type":"Role","_key":"15355","_from":"11746","_to":"11733"} +{"$label":"ACTS_IN","name":"Jule","type":"Role","_key":"15354","_from":"11745","_to":"11733"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"15353","_from":"11744","_to":"11733"} +{"$label":"ACTS_IN","name":"Jasmin","type":"Role","_key":"15352","_from":"11743","_to":"11733"} +{"$label":"ACTS_IN","name":"Mediha","type":"Role","_key":"15351","_from":"11742","_to":"11733"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"15350","_from":"11741","_to":"11733"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"15349","_from":"11740","_to":"11733"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"15348","_from":"11739","_to":"11733"} +{"$label":"ACTS_IN","name":"Thorsten","type":"Role","_key":"15347","_from":"11738","_to":"11733"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"15346","_from":"11737","_to":"11733"} +{"$label":"ACTS_IN","name":"Date von Markus","type":"Role","_key":"15345","_from":"11736","_to":"11733"} +{"$label":"ACTS_IN","name":"Junge Frau","type":"Role","_key":"15344","_from":"11735","_to":"11733"} +{"$label":"DIRECTED","_key":"15343","_from":"11734","_to":"11733"} +{"$label":"ACTS_IN","name":"Zugreisende","type":"Role","_key":"39640","_from":"11736","_to":"26786"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"40090","_from":"11745","_to":"27060"} +{"$label":"ACTS_IN","name":"Irene Striesow","type":"Role","_key":"68150","_from":"11749","_to":"41857"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"15370","_from":"11756","_to":"11754"} +{"$label":"ACTS_IN","name":"Cavanaugh","type":"Role","_key":"15369","_from":"11755","_to":"11754"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"64426","_from":"11755","_to":"40148"} +{"$label":"ACTS_IN","name":"Justice","type":"Role","_key":"60076","_from":"11755","_to":"37905"} +{"$label":"ACTS_IN","name":"Bob Adriano","type":"Role","_key":"121285","_from":"11756","_to":"71254"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"114868","_from":"11756","_to":"67660"} +{"$label":"ACTS_IN","name":"St Francis","type":"Role","_key":"94161","_from":"11756","_to":"55443"} +{"$label":"ACTS_IN","name":"Leopardi","type":"Role","_key":"61639","_from":"11756","_to":"38839"} +{"$label":"ACTS_IN","name":"Peter Saville","type":"Role","_key":"23259","_from":"11756","_to":"16861"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"15392","_from":"11775","_to":"11757"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"15391","_from":"11774","_to":"11757"} +{"$label":"ACTS_IN","name":"Bandleader","type":"Role","_key":"15390","_from":"11773","_to":"11757"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"15389","_from":"11772","_to":"11757"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"15388","_from":"11771","_to":"11757"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"15387","_from":"11770","_to":"11757"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"15386","_from":"11769","_to":"11757"} +{"$label":"ACTS_IN","name":"Fatty","type":"Role","_key":"15385","_from":"11768","_to":"11757"} +{"$label":"ACTS_IN","name":"Ferdinand","type":"Role","_key":"15384","_from":"11767","_to":"11757"} +{"$label":"ACTS_IN","name":"Moosbacher","type":"Role","_key":"15383","_from":"11766","_to":"11757"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"15382","_from":"11765","_to":"11757"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"15381","_from":"11764","_to":"11757"} +{"$label":"ACTS_IN","name":"Hias","type":"Role","_key":"15379","_from":"11763","_to":"11757"} +{"$label":"ACTS_IN","name":"Mrs. K\u00f6stler","type":"Role","_key":"15377","_from":"11762","_to":"11757"} +{"$label":"ACTS_IN","name":"Scherzinger","type":"Role","_key":"15376","_from":"11761","_to":"11757"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"15374","_from":"11760","_to":"11757"} +{"$label":"ACTS_IN","name":"Liesel","type":"Role","_key":"15373","_from":"11759","_to":"11757"} +{"$label":"DIRECTED","_key":"15372","_from":"11758","_to":"11757"} +{"$label":"DIRECTED","_key":"118847","_from":"11758","_to":"69856"} +{"$label":"DIRECTED","_key":"46590","_from":"11758","_to":"30780"} +{"$label":"DIRECTED","_key":"43630","_from":"11758","_to":"29135"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"42634","_from":"11760","_to":"28542"} +{"$label":"ACTS_IN","name":"Tine Jensen","type":"Role","_key":"39982","_from":"11760","_to":"27002"} +{"$label":"ACTS_IN","name":"Anton Roselieb","type":"Role","_key":"45066","_from":"11761","_to":"29929"} +{"$label":"ACTS_IN","name":"Onkel Fritz","type":"Role","_key":"42333","_from":"11761","_to":"28337"} +{"$label":"ACTS_IN","name":"Sepp Holzner","type":"Role","_key":"40356","_from":"11761","_to":"27219"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"46056","_from":"11763","_to":"30425"} +{"$label":"ACTS_IN","name":"Antonio Garezzo","type":"Role","_key":"44207","_from":"11763","_to":"29461"} +{"$label":"ACTS_IN","name":"Mamajew","type":"Role","_key":"43215","_from":"11763","_to":"28859"} +{"$label":"ACTS_IN","name":"Coldhabour Smith","type":"Role","_key":"38171","_from":"11763","_to":"25798"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"31893","_from":"11763","_to":"22247"} +{"$label":"ACTS_IN","name":"Chabert","type":"Role","_key":"23798","_from":"11763","_to":"17255"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"45039","_from":"11764","_to":"29920"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"44448","_from":"11765","_to":"29606"} +{"$label":"ACTS_IN","name":"Walter Kunze der Erlenbachwirt","type":"Role","_key":"42124","_from":"11766","_to":"28218"} +{"$label":"ACTS_IN","name":"Block","type":"Role","_key":"63626","_from":"11767","_to":"39802"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44452","_from":"11774","_to":"29606"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"41132","_from":"11775","_to":"27670"} +{"$label":"DIRECTED","_key":"15393","_from":"11777","_to":"11776"} +{"$label":"DIRECTED","_key":"72699","_from":"11777","_to":"43807"} +{"$label":"DIRECTED","_key":"61228","_from":"11777","_to":"38673"} +{"$label":"DIRECTED","_key":"50175","_from":"11777","_to":"32800"} +{"$label":"DIRECTED","_key":"43464","_from":"11777","_to":"29031"} +{"$label":"DIRECTED","_key":"36537","_from":"11777","_to":"24772"} +{"$label":"DIRECTED","_key":"32971","_from":"11777","_to":"22862"} +{"$label":"DIRECTED","_key":"17841","_from":"11777","_to":"13291"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66584","_from":"11777","_to":"41163"} +{"$label":"ACTS_IN","name":"Kritikerin","type":"Role","_key":"20498","_from":"11777","_to":"14984"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"17843","_from":"11777","_to":"13291"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"15403","_from":"11782","_to":"11779"} +{"$label":"ACTS_IN","name":"Donald Duck","type":"Role","_key":"15401","_from":"11781","_to":"11779"} +{"$label":"ACTS_IN","name":"Scrooge McDuck","type":"Role","_key":"15400","_from":"11780","_to":"11779"} +{"$label":"ACTS_IN","name":"Scrooge McDuck","type":"Role","_key":"101862","_from":"11780","_to":"59955"} +{"$label":"ACTS_IN","name":"Scrooge McDuck","type":"Role","_key":"66083","_from":"11780","_to":"40891"} +{"$label":"ACTS_IN","name":"Mr. Carson","type":"Role","_key":"38492","_from":"11780","_to":"26003"} +{"$label":"ACTS_IN","name":"James Filby","type":"Role","_key":"18561","_from":"11780","_to":"13733"} +{"$label":"ACTS_IN","name":"Donald Duck","type":"Role","_key":"109831","_from":"11781","_to":"64882"} +{"$label":"ACTS_IN","name":"Donald Duck (voice)","type":"Role","_key":"94194","_from":"11781","_to":"55468"} +{"$label":"ACTS_IN","name":"Minnie Mouse","type":"Role","_key":"109830","_from":"11782","_to":"64882"} +{"$label":"ACTS_IN","name":"Nurse Mouse (voice)","type":"Role","_key":"68102","_from":"11782","_to":"41826"} +{"$label":"ACTS_IN","name":"Huey Duck \/ Dewey Duck \/ Louie Duck \/ Webbigal \"Webby\" Vanderquack","type":"Role","_key":"66086","_from":"11782","_to":"40891"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"58378","_from":"11782","_to":"36888"} +{"$label":"ACTS_IN","name":"Dutchess the Cat (voice)","type":"Role","_key":"54938","_from":"11782","_to":"35123"} +{"$label":"ACTS_IN","name":"Hannon","type":"Role","_key":"29645","_from":"11782","_to":"20979"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"15413","_from":"11786","_to":"11783"} +{"$label":"ACTS_IN","name":"Tom Cullen","type":"Role","_key":"15412","_from":"11785","_to":"11783"} +{"$label":"ACTS_IN","name":"Harry Roland","type":"Role","_key":"15408","_from":"11784","_to":"11783"} +{"$label":"ACTS_IN","name":"Prof. David Ash","type":"Role","_key":"117511","_from":"11784","_to":"69093"} +{"$label":"ACTS_IN","name":"Jacob Reiser","type":"Role","_key":"114683","_from":"11784","_to":"67558"} +{"$label":"ACTS_IN","name":"Seth Warner","type":"Role","_key":"109088","_from":"11784","_to":"64453"} +{"$label":"ACTS_IN","name":"Henry Dawes","type":"Role","_key":"94652","_from":"11784","_to":"55765"} +{"$label":"ACTS_IN","name":"Felipe Mendoza","type":"Role","_key":"69733","_from":"11784","_to":"42563"} +{"$label":"ACTS_IN","name":"Richard \"Stick\" Montgomery","type":"Role","_key":"66327","_from":"11784","_to":"41029"} +{"$label":"ACTS_IN","name":"Dez","type":"Role","_key":"48258","_from":"11784","_to":"31702"} +{"$label":"ACTS_IN","name":"Gary Hallet","type":"Role","_key":"43388","_from":"11784","_to":"28988"} +{"$label":"ACTS_IN","name":"Alfred Ludlow","type":"Role","_key":"31967","_from":"11784","_to":"22291"} +{"$label":"ACTS_IN","name":"Benjamin 'Benny' Pearl","type":"Role","_key":"29597","_from":"11784","_to":"20951"} +{"$label":"ACTS_IN","name":"Cap. Robert Walton","type":"Role","_key":"25172","_from":"11784","_to":"18176"} +{"$label":"ACTS_IN","name":"Jules Kaye","type":"Role","_key":"20226","_from":"11784","_to":"14831"} +{"$label":"ACTS_IN","name":"Ray Lohan","type":"Role","_key":"62791","_from":"11785","_to":"39464"} +{"$label":"ACTS_IN","name":"Victor Barker","type":"Role","_key":"37184","_from":"11785","_to":"25186"} +{"$label":"ACTS_IN","name":"James 'Bucky' Barnes","type":"Role","_key":"15422","_from":"11789","_to":"11787"} +{"$label":"ACTS_IN","name":"Howard Stark","type":"Role","_key":"15420","_from":"11788","_to":"11787"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"98318","_from":"11788","_to":"57908"} +{"$label":"ACTS_IN","name":"Grey","type":"Role","_key":"91533","_from":"11788","_to":"53952"} +{"$label":"ACTS_IN","name":"Dakin","type":"Role","_key":"50266","_from":"11788","_to":"32841"} +{"$label":"ACTS_IN","name":"Chase Collins","type":"Role","_key":"58481","_from":"11789","_to":"36963"} +{"$label":"DIRECTED","_key":"15432","_from":"11795","_to":"11790"} +{"$label":"ACTS_IN","name":"Stavros","type":"Role","_key":"15430","_from":"11794","_to":"11790"} +{"$label":"ACTS_IN","name":"Zip","type":"Role","_key":"15428","_from":"11793","_to":"11790"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"15427","_from":"11792","_to":"11790"} +{"$label":"ACTS_IN","name":"Yoyo","type":"Role","_key":"15424","_from":"11791","_to":"11790"} +{"$label":"ACTS_IN","name":"Jim Ahern","type":"Role","_key":"70937","_from":"11791","_to":"43092"} +{"$label":"ACTS_IN","name":"Alan ' Carnes","type":"Role","_key":"23303","_from":"11793","_to":"16896"} +{"$label":"DIRECTED","_key":"117213","_from":"11795","_to":"68952"} +{"$label":"DIRECTED","_key":"99672","_from":"11795","_to":"58766"} +{"$label":"DIRECTED","_key":"95185","_from":"11795","_to":"56003"} +{"$label":"ACTS_IN","name":"Michael Goldman","type":"Role","_key":"97929","_from":"11795","_to":"57668"} +{"$label":"ACTS_IN","name":"Morgue Attendant","type":"Role","_key":"68999","_from":"11795","_to":"42233"} +{"$label":"ACTS_IN","name":"Dude Finlay","type":"Role","_key":"15441","_from":"11803","_to":"11796"} +{"$label":"ACTS_IN","name":"Police Inspector","type":"Role","_key":"15440","_from":"11802","_to":"11796"} +{"$label":"ACTS_IN","name":"Ives","type":"Role","_key":"15439","_from":"11801","_to":"11796"} +{"$label":"ACTS_IN","name":"Cyril Cluett","type":"Role","_key":"15438","_from":"11800","_to":"11796"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"15437","_from":"11799","_to":"11796"} +{"$label":"ACTS_IN","name":"Mrs. Phyllis Dickson","type":"Role","_key":"15436","_from":"11798","_to":"11796"} +{"$label":"ACTS_IN","name":"Thomas Dickson","type":"Role","_key":"15434","_from":"11797","_to":"11796"} +{"$label":"ACTS_IN","name":"Dr. Edward G. Armstrong","type":"Role","_key":"34535","_from":"11797","_to":"23646"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"25706","_from":"11797","_to":"18497"} +{"$label":"ACTS_IN","name":"Jerry Cohan","type":"Role","_key":"25655","_from":"11797","_to":"18469"} +{"$label":"ACTS_IN","name":"Ruth Condomine","type":"Role","_key":"118597","_from":"11799","_to":"69736"} +{"$label":"ACTS_IN","name":"Amy Folliatt","type":"Role","_key":"41675","_from":"11799","_to":"27972"} +{"$label":"ACTS_IN","name":"Dr. Bertram Sedbusk","type":"Role","_key":"70010","_from":"11800","_to":"42694"} +{"$label":"ACTS_IN","name":"Trojan Ambassador","type":"Role","_key":"44979","_from":"11800","_to":"29886"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"25530","_from":"11801","_to":"18391"} +{"$label":"ACTS_IN","name":"Prof. Summerlee","type":"Role","_key":"24662","_from":"11801","_to":"17832"} +{"$label":"ACTS_IN","name":"Paddy Ryan","type":"Role","_key":"113662","_from":"11802","_to":"66979"} +{"$label":"ACTS_IN","name":"Russian President Vladimir Krushkin","type":"Role","_key":"15457","_from":"11809","_to":"11805"} +{"$label":"ACTS_IN","name":"Charles Jackal, NBS Reporter","type":"Role","_key":"15453","_from":"11808","_to":"11805"} +{"$label":"ACTS_IN","name":"Deputy Honey","type":"Role","_key":"15447","_from":"11807","_to":"11805"} +{"$label":"ACTS_IN","name":"U.S. President","type":"Role","_key":"15446","_from":"11806","_to":"11805"} +{"$label":"DIRECTED","_key":"118109","_from":"11806","_to":"69414"} +{"$label":"ACTS_IN","name":"Eddie Hopper","type":"Role","_key":"118097","_from":"11806","_to":"69414"} +{"$label":"ACTS_IN","name":"Sidney Miller","type":"Role","_key":"111186","_from":"11806","_to":"65664"} +{"$label":"ACTS_IN","name":"Gregory Lawson","type":"Role","_key":"102449","_from":"11806","_to":"60287"} +{"$label":"ACTS_IN","name":"Alan Burnside","type":"Role","_key":"101226","_from":"11806","_to":"59622"} +{"$label":"ACTS_IN","name":"Ralph Metz","type":"Role","_key":"92333","_from":"11806","_to":"54491"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"70682","_from":"11806","_to":"43000"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"63373","_from":"11806","_to":"39712"} +{"$label":"ACTS_IN","name":"Kevin Hollander","type":"Role","_key":"56501","_from":"11806","_to":"35888"} +{"$label":"ACTS_IN","name":"Dan Wanamaker","type":"Role","_key":"29324","_from":"11806","_to":"20821"} +{"$label":"ACTS_IN","name":"Dr. Robert Gallo","type":"Role","_key":"24066","_from":"11806","_to":"17452"} +{"$label":"ACTS_IN","name":"Senator Ralph Owen Brewster","type":"Role","_key":"21994","_from":"11806","_to":"16058"} +{"$label":"ACTS_IN","name":"Richard Schlichting","type":"Role","_key":"18030","_from":"11806","_to":"13403"} +{"$label":"ACTS_IN","name":"Jerry Blair","type":"Role","_key":"108460","_from":"11807","_to":"64116"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"97716","_from":"11807","_to":"57539"} +{"$label":"ACTS_IN","name":"Zinnia Wormwood","type":"Role","_key":"66038","_from":"11807","_to":"40870"} +{"$label":"ACTS_IN","name":"Mrs. D.","type":"Role","_key":"20615","_from":"11807","_to":"15077"} +{"$label":"ACTS_IN","name":"Berni Litgo","type":"Role","_key":"115148","_from":"11808","_to":"67807"} +{"$label":"ACTS_IN","name":"Detective Frank K Divinci","type":"Role","_key":"100034","_from":"11808","_to":"59013"} +{"$label":"ACTS_IN","name":"They're all bitches Penguin (voice)","type":"Role","_key":"89798","_from":"11808","_to":"53142"} +{"$label":"ACTS_IN","name":"Chuck Scarett","type":"Role","_key":"89258","_from":"11808","_to":"52848"} +{"$label":"ACTS_IN","name":"Bill Dancer","type":"Role","_key":"72593","_from":"11808","_to":"43769"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"70409","_from":"11808","_to":"42875"} +{"$label":"ACTS_IN","name":"John Maddox","type":"Role","_key":"69840","_from":"11808","_to":"42613"} +{"$label":"ACTS_IN","name":"The Woodsman (voice)","type":"Role","_key":"67081","_from":"11808","_to":"41402"} +{"$label":"ACTS_IN","name":"Morris","type":"Role","_key":"66619","_from":"11808","_to":"41179"} +{"$label":"ACTS_IN","name":"Dooley","type":"Role","_key":"62712","_from":"11808","_to":"39429"} +{"$label":"ACTS_IN","name":"Rick Latimer","type":"Role","_key":"60426","_from":"11808","_to":"38126"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"57807","_from":"11808","_to":"36591"} +{"$label":"ACTS_IN","name":"Det. Sgt. Art Ridzik","type":"Role","_key":"54975","_from":"11808","_to":"35138"} +{"$label":"ACTS_IN","name":"Dan Unger","type":"Role","_key":"44189","_from":"11808","_to":"29455"} +{"$label":"ACTS_IN","name":"Jimmy Dworski","type":"Role","_key":"43234","_from":"11808","_to":"28878"} +{"$label":"ACTS_IN","name":"Doctor Rock","type":"Role","_key":"41686","_from":"11808","_to":"27974"} +{"$label":"ACTS_IN","name":"Joe Dayton","type":"Role","_key":"22269","_from":"11808","_to":"16204"} +{"$label":"ACTS_IN","name":"Larry Burrows","type":"Role","_key":"22192","_from":"11808","_to":"16174"} +{"$label":"ACTS_IN","name":"Sal Buonarte","type":"Role","_key":"22190","_from":"11808","_to":"16172"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15464","_from":"11814","_to":"11810"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"15463","_from":"11813","_to":"11810"} +{"$label":"DIRECTED","_key":"15462","_from":"11812","_to":"11810"} +{"$label":"DIRECTED","_key":"15461","_from":"11811","_to":"11810"} +{"$label":"DIRECTED","_key":"15473","_from":"11817","_to":"11816"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15472","_from":"11821","_to":"11816"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15471","_from":"11820","_to":"11816"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15470","_from":"11819","_to":"11816"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15469","_from":"11818","_to":"11816"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"15468","_from":"11817","_to":"11816"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"15478","_from":"11826","_to":"11823"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"15477","_from":"11825","_to":"11823"} +{"$label":"DIRECTED","_key":"15476","_from":"11824","_to":"11823"} +{"$label":"DIRECTED","_key":"114734","_from":"11824","_to":"67580"} +{"$label":"ACTS_IN","name":"Al Gore","type":"Role","_key":"46102","_from":"11825","_to":"30458"} +{"$label":"ACTS_IN","name":"Pirate #8 \/ Miniature Cyclops \/ Spider Clown Mailman \/ Beast Master (voice)","type":"Role","_key":"111850","_from":"11826","_to":"66010"} +{"$label":"ACTS_IN","name":"Dr. Zoidberg","type":"Role","_key":"103002","_from":"11826","_to":"60586"} +{"$label":"ACTS_IN","name":"Philip J. Fry","type":"Role","_key":"93613","_from":"11826","_to":"55120"} +{"$label":"ACTS_IN","name":"Fry\/Farnsworth\/Zoidberg\/Brannigan","type":"Role","_key":"91862","_from":"11826","_to":"54199"} +{"$label":"ACTS_IN","name":"Ralph Roach (voice)","type":"Role","_key":"73013","_from":"11826","_to":"43939"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"58834","_from":"11826","_to":"37148"} +{"$label":"ACTS_IN","name":"Professor Hubert Farnsworth","type":"Role","_key":"46103","_from":"11826","_to":"30458"} +{"$label":"ACTS_IN","name":"Bugs Bunny\/Elmer Fudd (voice)","type":"Role","_key":"20201","_from":"11826","_to":"14813"} +{"$label":"DIRECTED","_key":"15485","_from":"11829","_to":"11827"} +{"$label":"ACTS_IN","name":"n.n.","type":"Role","_key":"15484","_from":"11828","_to":"11827"} +{"$label":"ACTS_IN","name":"Connie James","type":"Role","_key":"88395","_from":"11828","_to":"52392"} +{"$label":"ACTS_IN","name":"Noguchi","type":"Role","_key":"15492","_from":"11834","_to":"11830"} +{"$label":"ACTS_IN","name":"Ho","type":"Role","_key":"15490","_from":"11833","_to":"11830"} +{"$label":"ACTS_IN","name":"Ernest Gordon","type":"Role","_key":"15487","_from":"11832","_to":"11830"} +{"$label":"DIRECTED","_key":"15486","_from":"11831","_to":"11830"} +{"$label":"DIRECTED","_key":"19964","_from":"11831","_to":"14703"} +{"$label":"ACTS_IN","name":"Alexander Pearce","type":"Role","_key":"106818","_from":"11832","_to":"62970"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"15508","_from":"11844","_to":"11836"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"15507","_from":"11843","_to":"11836"} +{"$label":"ACTS_IN","name":"Pierre Alain","type":"Role","_key":"15506","_from":"11842","_to":"11836"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"15505","_from":"11841","_to":"11836"} +{"$label":"ACTS_IN","name":"Marie-Laure","type":"Role","_key":"15504","_from":"11840","_to":"11836"} +{"$label":"ACTS_IN","name":"Ad\u00e8le","type":"Role","_key":"15503","_from":"11839","_to":"11836"} +{"$label":"ACTS_IN","name":"Grimaldi","type":"Role","_key":"15502","_from":"11838","_to":"11836"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"15499","_from":"11837","_to":"11836"} +{"$label":"ACTS_IN","name":"le p\u00e8re d'Arthur","type":"Role","_key":"96124","_from":"11837","_to":"56497"} +{"$label":"ACTS_IN","name":"Kardinal","type":"Role","_key":"52253","_from":"11837","_to":"34027"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"37987","_from":"11837","_to":"25718"} +{"$label":"ACTS_IN","name":"Marcel Treuffais","type":"Role","_key":"34022","_from":"11837","_to":"23403"} +{"$label":"ACTS_IN","name":"Gillenormand","type":"Role","_key":"31641","_from":"11837","_to":"22083"} +{"$label":"ACTS_IN","name":"Baculard","type":"Role","_key":"30705","_from":"11837","_to":"21541"} +{"$label":"ACTS_IN","name":"Allan Jourdan","type":"Role","_key":"30617","_from":"11837","_to":"21508"} +{"$label":"ACTS_IN","name":"Bailly","type":"Role","_key":"30213","_from":"11837","_to":"21284"} +{"$label":"ACTS_IN","name":"Charles Thenier","type":"Role","_key":"21894","_from":"11837","_to":"15995"} +{"$label":"ACTS_IN","name":"Edy Sa\u00efovici","type":"Role","_key":"101546","_from":"11843","_to":"59770"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"95706","_from":"11843","_to":"56295"} +{"$label":"ACTS_IN","name":"Inspector Tarconi","type":"Role","_key":"94239","_from":"11843","_to":"55498"} +{"$label":"ACTS_IN","name":"Michel Humeau","type":"Role","_key":"91191","_from":"11843","_to":"53783"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71945","_from":"11843","_to":"43522"} +{"$label":"ACTS_IN","name":"Baron Axel de Fersen","type":"Role","_key":"69024","_from":"11843","_to":"42252"} +{"$label":"ACTS_IN","name":"Eric Levkowitch","type":"Role","_key":"65840","_from":"11843","_to":"40747"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"38299","_from":"11843","_to":"25867"} +{"$label":"ACTS_IN","name":"Charles Saint-Denis","type":"Role","_key":"37911","_from":"11843","_to":"25672"} +{"$label":"ACTS_IN","name":"Rachin","type":"Role","_key":"37748","_from":"11843","_to":"25604"} +{"$label":"ACTS_IN","name":"l'inspecteur","type":"Role","_key":"30130","_from":"11843","_to":"21230"} +{"$label":"ACTS_IN","name":"Tarconi","type":"Role","_key":"29633","_from":"11843","_to":"20977"} +{"$label":"ACTS_IN","name":"Alain Denizet","type":"Role","_key":"20882","_from":"11843","_to":"15276"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"17960","_from":"11843","_to":"13356"} +{"$label":"ACTS_IN","name":"Pierre Demouthy","type":"Role","_key":"16774","_from":"11843","_to":"12643"} +{"$label":"ACTS_IN","name":"P\u00e8re Michel","type":"Role","_key":"15515","_from":"11843","_to":"11845"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106294","_from":"11844","_to":"62617"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"23104","_from":"11844","_to":"16748"} +{"$label":"ACTS_IN","name":"Georgette","type":"Role","_key":"17633","_from":"11844","_to":"13156"} +{"$label":"ACTS_IN","name":"Mme Perrin","type":"Role","_key":"15525","_from":"11858","_to":"11845"} +{"$label":"ACTS_IN","name":"P\u00e8re Hippolyte","type":"Role","_key":"15524","_from":"11857","_to":"11845"} +{"$label":"ACTS_IN","name":"Moreau","type":"Role","_key":"15523","_from":"11856","_to":"11845"} +{"$label":"ACTS_IN","name":"Negus","type":"Role","_key":"15522","_from":"11855","_to":"11845"} +{"$label":"ACTS_IN","name":"Sagard","type":"Role","_key":"15520","_from":"11854","_to":"11845"} +{"$label":"ACTS_IN","name":"Boulanger","type":"Role","_key":"15518","_from":"11853","_to":"11845"} +{"$label":"ACTS_IN","name":"Babinot","type":"Role","_key":"15517","_from":"11852","_to":"11845"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"15516","_from":"11851","_to":"11845"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Quentin","type":"Role","_key":"15514","_from":"11850","_to":"11845"} +{"$label":"ACTS_IN","name":"P\u00e8re Jean","type":"Role","_key":"15513","_from":"11849","_to":"11845"} +{"$label":"ACTS_IN","name":"Mme Quentin","type":"Role","_key":"15512","_from":"11848","_to":"11845"} +{"$label":"ACTS_IN","name":"Jean Bonnet","type":"Role","_key":"15511","_from":"11847","_to":"11845"} +{"$label":"ACTS_IN","name":"Julien Quentin","type":"Role","_key":"15510","_from":"11846","_to":"11845"} +{"$label":"ACTS_IN","name":"Santelli","type":"Role","_key":"21543","_from":"11849","_to":"15751"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9rique","type":"Role","_key":"15529","_from":"11862","_to":"11859"} +{"$label":"ACTS_IN","name":"Why","type":"Role","_key":"15528","_from":"11861","_to":"11859"} +{"$label":"DIRECTED","_key":"15526","_from":"11860","_to":"11859"} +{"$label":"DIRECTED","_key":"114476","_from":"11860","_to":"67433"} +{"$label":"DIRECTED","_key":"105025","_from":"11860","_to":"61813"} +{"$label":"DIRECTED","_key":"91196","_from":"11860","_to":"53783"} +{"$label":"DIRECTED","_key":"66814","_from":"11860","_to":"41272"} +{"$label":"DIRECTED","_key":"62488","_from":"11860","_to":"39356"} +{"$label":"DIRECTED","_key":"48835","_from":"11860","_to":"32023"} +{"$label":"DIRECTED","_key":"37908","_from":"11860","_to":"25672"} +{"$label":"DIRECTED","_key":"37866","_from":"11860","_to":"25653"} +{"$label":"DIRECTED","_key":"34611","_from":"11860","_to":"23691"} +{"$label":"DIRECTED","_key":"34407","_from":"11860","_to":"23576"} +{"$label":"DIRECTED","_key":"34032","_from":"11860","_to":"23403"} +{"$label":"DIRECTED","_key":"30612","_from":"11860","_to":"21508"} +{"$label":"DIRECTED","_key":"30009","_from":"11860","_to":"21177"} +{"$label":"DIRECTED","_key":"27347","_from":"11860","_to":"19658"} +{"$label":"DIRECTED","_key":"24286","_from":"11860","_to":"17594"} +{"$label":"DIRECTED","_key":"23724","_from":"11860","_to":"17206"} +{"$label":"DIRECTED","_key":"21903","_from":"11860","_to":"16003"} +{"$label":"DIRECTED","_key":"21893","_from":"11860","_to":"15995"} +{"$label":"DIRECTED","_key":"20689","_from":"11860","_to":"15127"} +{"$label":"DIRECTED","_key":"15589","_from":"11860","_to":"11896"} +{"$label":"ACTS_IN","name":"Le metteur en sc\u00e8ne","type":"Role","_key":"50757","_from":"11860","_to":"33125"} +{"$label":"ACTS_IN","name":"La Truffe","type":"Role","_key":"37877","_from":"11860","_to":"25653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30880","_from":"11860","_to":"21649"} +{"$label":"ACTS_IN","name":"Underground Walloon fighter at asylum (as Stephane Audran)","type":"Role","_key":"107143","_from":"11862","_to":"63187"} +{"$label":"ACTS_IN","name":"\u00c9dith Lassalle","type":"Role","_key":"104028","_from":"11862","_to":"61200"} +{"$label":"ACTS_IN","name":"Babette Harsant","type":"Role","_key":"72258","_from":"11862","_to":"43656"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Desvall\u00e9es","type":"Role","_key":"48836","_from":"11862","_to":"32023"} +{"$label":"ACTS_IN","name":"Anita Caldwell","type":"Role","_key":"40684","_from":"11862","_to":"27383"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"39361","_from":"11862","_to":"26619"} +{"$label":"ACTS_IN","name":"Madame Cuno","type":"Role","_key":"34613","_from":"11862","_to":"23691"} +{"$label":"ACTS_IN","name":"Ilona Morgan","type":"Role","_key":"34498","_from":"11862","_to":"23625"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"34382","_from":"11862","_to":"23576"} +{"$label":"ACTS_IN","name":"Alice S\u00e9n\u00e9chal","type":"Role","_key":"32905","_from":"11862","_to":"22829"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Regnier","type":"Role","_key":"30613","_from":"11862","_to":"21508"} +{"$label":"ACTS_IN","name":"Fernande Segret","type":"Role","_key":"30012","_from":"11862","_to":"21177"} +{"$label":"ACTS_IN","name":"Mademoiselle H\u00e9l\u00e8ne","type":"Role","_key":"24287","_from":"11862","_to":"17594"} +{"$label":"ACTS_IN","name":"Josephine","type":"Role","_key":"24196","_from":"11862","_to":"17530"} +{"$label":"ACTS_IN","name":"Germaine Nozi\u00e8re","type":"Role","_key":"23726","_from":"11862","_to":"17206"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"20696","_from":"11862","_to":"15127"} +{"$label":"DIRECTED","_key":"15537","_from":"11865","_to":"11863"} +{"$label":"ACTS_IN","name":"Ariel Moore","type":"Role","_key":"15535","_from":"11864","_to":"11863"} +{"$label":"ACTS_IN","name":"Kassandra","type":"Role","_key":"69232","_from":"11864","_to":"42338"} +{"$label":"ACTS_IN","name":"Maddy","type":"Role","_key":"66615","_from":"11864","_to":"41179"} +{"$label":"DIRECTED","_key":"109544","_from":"11865","_to":"64702"} +{"$label":"DIRECTED","_key":"109008","_from":"11865","_to":"64421"} +{"$label":"DIRECTED","_key":"101587","_from":"11865","_to":"59785"} +{"$label":"DIRECTED","_key":"95267","_from":"11865","_to":"56055"} +{"$label":"DIRECTED","_key":"90889","_from":"11865","_to":"53623"} +{"$label":"DIRECTED","_key":"71043","_from":"11865","_to":"43140"} +{"$label":"DIRECTED","_key":"66333","_from":"11865","_to":"41030"} +{"$label":"DIRECTED","_key":"59518","_from":"11865","_to":"37578"} +{"$label":"DIRECTED","_key":"53489","_from":"11865","_to":"34545"} +{"$label":"DIRECTED","_key":"15571","_from":"11865","_to":"11884"} +{"$label":"ACTS_IN","name":"Mrs. Chandler","type":"Role","_key":"15543","_from":"11869","_to":"11866"} +{"$label":"ACTS_IN","name":"Matilda","type":"Role","_key":"15542","_from":"11868","_to":"11866"} +{"$label":"DIRECTED","_key":"15538","_from":"11867","_to":"11866"} +{"$label":"DIRECTED","_key":"107018","_from":"11867","_to":"63091"} +{"$label":"DIRECTED","_key":"72625","_from":"11867","_to":"43773"} +{"$label":"ACTS_IN","name":"Garvey","type":"Role","_key":"15554","_from":"11876","_to":"11870"} +{"$label":"ACTS_IN","name":"Mrs. Patterson","type":"Role","_key":"15552","_from":"11875","_to":"11870"} +{"$label":"ACTS_IN","name":"Madge McCloud","type":"Role","_key":"15551","_from":"11874","_to":"11870"} +{"$label":"ACTS_IN","name":"Gus Sampson","type":"Role","_key":"15550","_from":"11873","_to":"11870"} +{"$label":"ACTS_IN","name":"Leloopa","type":"Role","_key":"15549","_from":"11872","_to":"11870"} +{"$label":"DIRECTED","_key":"15545","_from":"11871","_to":"11870"} +{"$label":"DIRECTED","_key":"40441","_from":"11871","_to":"27257"} +{"$label":"ACTS_IN","name":"Hillary Whitney Essex","type":"Role","_key":"105105","_from":"11872","_to":"61860"} +{"$label":"ACTS_IN","name":"Jean Parker","type":"Role","_key":"89778","_from":"11872","_to":"53135"} +{"$label":"ACTS_IN","name":"Celia Hoover","type":"Role","_key":"89754","_from":"11872","_to":"53126"} +{"$label":"ACTS_IN","name":"Mary Magdalene","type":"Role","_key":"67562","_from":"11872","_to":"41595"} +{"$label":"ACTS_IN","name":"Nora Tilley","type":"Role","_key":"66517","_from":"11872","_to":"41126"} +{"$label":"ACTS_IN","name":"Frau M\u00fcller","type":"Role","_key":"63143","_from":"11872","_to":"39600"} +{"$label":"ACTS_IN","name":"Glennis Yeager","type":"Role","_key":"54614","_from":"11872","_to":"34982"} +{"$label":"ACTS_IN","name":"Dr. Valerie Somers","type":"Role","_key":"54437","_from":"11872","_to":"34911"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"52828","_from":"11872","_to":"34252"} +{"$label":"ACTS_IN","name":"Myra Fleener","type":"Role","_key":"38676","_from":"11872","_to":"26128"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"36072","_from":"11872","_to":"24486"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"22848","_from":"11872","_to":"16575"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"116920","_from":"11874","_to":"68828"} +{"$label":"ACTS_IN","name":"Cathy Gray","type":"Role","_key":"116696","_from":"11874","_to":"68695"} +{"$label":"ACTS_IN","name":"Linda, Craig's Girl","type":"Role","_key":"101420","_from":"11874","_to":"59701"} +{"$label":"ACTS_IN","name":"Julie Rawlings","type":"Role","_key":"72613","_from":"11874","_to":"43773"} +{"$label":"ACTS_IN","name":"Theodora 'Teddy' Belicec","type":"Role","_key":"70580","_from":"11874","_to":"42941"} +{"$label":"ACTS_IN","name":"Irma","type":"Role","_key":"112432","_from":"11875","_to":"66378"} +{"$label":"ACTS_IN","name":"Mrs. Brandon (uncredited)","type":"Role","_key":"104105","_from":"11875","_to":"61243"} +{"$label":"ACTS_IN","name":"Cpl. Kurt Richter","type":"Role","_key":"116668","_from":"11876","_to":"68678"} +{"$label":"ACTS_IN","name":"Buster McGee","type":"Role","_key":"25696","_from":"11876","_to":"18490"} +{"$label":"ACTS_IN","name":"Mme Blonskij","type":"Role","_key":"15562","_from":"11880","_to":"11877"} +{"$label":"ACTS_IN","name":"Mrs. Schober","type":"Role","_key":"15560","_from":"11879","_to":"11877"} +{"$label":"ACTS_IN","name":"Anna Schober","type":"Role","_key":"15559","_from":"11878","_to":"11877"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"88644","_from":"11878","_to":"52522"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"61852","_from":"11879","_to":"38933"} +{"$label":"ACTS_IN","name":"Heinz Mutter","type":"Role","_key":"46304","_from":"11879","_to":"30602"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"38962","_from":"11879","_to":"26324"} +{"$label":"ACTS_IN","name":"Paulis Mutter","type":"Role","_key":"35479","_from":"11879","_to":"24125"} +{"$label":"ACTS_IN","name":"Hilma","type":"Role","_key":"29561","_from":"11879","_to":"20938"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"23110","_from":"11879","_to":"16754"} +{"$label":"ACTS_IN","name":"Officer Fraioli","type":"Role","_key":"15568","_from":"11883","_to":"11881"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"15566","_from":"11882","_to":"11881"} +{"$label":"DIRECTED","_key":"104711","_from":"11883","_to":"61598"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104709","_from":"11883","_to":"61598"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"95362","_from":"11883","_to":"56099"} +{"$label":"ACTS_IN","name":"Dane Cook","type":"Role","_key":"92089","_from":"11883","_to":"54338"} +{"$label":"ACTS_IN","name":"Online Penguin (voice)","type":"Role","_key":"89797","_from":"11883","_to":"53142"} +{"$label":"ACTS_IN","name":"Dr. Charlie Logan","type":"Role","_key":"59643","_from":"11883","_to":"37658"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"56876","_from":"11883","_to":"36109"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"47227","_from":"11883","_to":"31117"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"47059","_from":"11883","_to":"31034"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"45930","_from":"11883","_to":"30370"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"27180","_from":"11883","_to":"19541"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"15588","_from":"11895","_to":"11884"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"15586","_from":"11894","_to":"11884"} +{"$label":"ACTS_IN","name":"Blonde in Shoe Store","type":"Role","_key":"15585","_from":"11893","_to":"11884"} +{"$label":"ACTS_IN","name":"Man in Shoe Store","type":"Role","_key":"15584","_from":"11892","_to":"11884"} +{"$label":"ACTS_IN","name":"Basketball Coach","type":"Role","_key":"15583","_from":"11891","_to":"11884"} +{"$label":"ACTS_IN","name":"Coach Roy","type":"Role","_key":"15582","_from":"11890","_to":"11884"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"15580","_from":"11889","_to":"11884"} +{"$label":"ACTS_IN","name":"Kevin Costello","type":"Role","_key":"15579","_from":"11888","_to":"11884"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"15576","_from":"11887","_to":"11884"} +{"$label":"ACTS_IN","name":"Charley Lau","type":"Role","_key":"15574","_from":"11886","_to":"11884"} +{"$label":"ACTS_IN","name":"Nora McPhae","type":"Role","_key":"15572","_from":"11885","_to":"11884"} +{"$label":"ACTS_IN","name":"Paula McFadden","type":"Role","_key":"101573","_from":"11885","_to":"59785"} +{"$label":"ACTS_IN","name":"Georgia Merkle","type":"Role","_key":"100933","_from":"11885","_to":"59497"} +{"$label":"ACTS_IN","name":"Polly Cronin","type":"Role","_key":"62899","_from":"11885","_to":"39513"} +{"$label":"ACTS_IN","name":"Aggie","type":"Role","_key":"59458","_from":"11885","_to":"37556"} +{"$label":"ACTS_IN","name":"Gov. Eleanor Grant","type":"Role","_key":"18176","_from":"11885","_to":"13485"} +{"$label":"ACTS_IN","name":"Benito Morales","type":"Role","_key":"50081","_from":"11889","_to":"32761"} +{"$label":"ACTS_IN","name":"Madame Lantier","type":"Role","_key":"15597","_from":"11900","_to":"11896"} +{"$label":"ACTS_IN","name":"Jeremie","type":"Role","_key":"15596","_from":"11899","_to":"11896"} +{"$label":"ACTS_IN","name":"Melinda","type":"Role","_key":"15594","_from":"11898","_to":"11896"} +{"$label":"ACTS_IN","name":"Georges Lelievre","type":"Role","_key":"15592","_from":"11897","_to":"11896"} +{"$label":"ACTS_IN","name":"M. Vernon","type":"Role","_key":"114475","_from":"11897","_to":"67433"} +{"$label":"ACTS_IN","name":"Jean Fran\u00e7ois Jardie","type":"Role","_key":"104221","_from":"11897","_to":"61316"} +{"$label":"ACTS_IN","name":"Henri Vaillant","type":"Role","_key":"64166","_from":"11897","_to":"40036"} +{"$label":"ACTS_IN","name":"Pierre Dubois","type":"Role","_key":"62676","_from":"11897","_to":"39416"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"34598","_from":"11897","_to":"23684"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"33608","_from":"11897","_to":"23215"} +{"$label":"ACTS_IN","name":"Lt. Henri Karcher","type":"Role","_key":"33550","_from":"11897","_to":"23204"} +{"$label":"ACTS_IN","name":"M. S\u00e9n\u00e9chal","type":"Role","_key":"32906","_from":"11897","_to":"22829"} +{"$label":"ACTS_IN","name":"Paul Thomas","type":"Role","_key":"30614","_from":"11897","_to":"21508"} +{"$label":"ACTS_IN","name":"Pierre Paul Michel","type":"Role","_key":"29905","_from":"11897","_to":"21143"} +{"$label":"ACTS_IN","name":"Dr. Bernard Chernez\u00e9","type":"Role","_key":"29168","_from":"11897","_to":"20772"} +{"$label":"ACTS_IN","name":"Olivier de la Fontaine","type":"Role","_key":"28140","_from":"11897","_to":"20177"} +{"$label":"ACTS_IN","name":"Luisa's husband","type":"Role","_key":"26980","_from":"11897","_to":"19403"} +{"$label":"ACTS_IN","name":"Louis XIII","type":"Role","_key":"24348","_from":"11897","_to":"17626"} +{"$label":"ACTS_IN","name":"Miraculix","type":"Role","_key":"20977","_from":"11897","_to":"15344"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"20947","_from":"11897","_to":"15329"} +{"$label":"ACTS_IN","name":"Father Lucien","type":"Role","_key":"17480","_from":"11897","_to":"13069"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"118113","_from":"11898","_to":"69415"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"101336","_from":"11898","_to":"59657"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"101297","_from":"11898","_to":"59642"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"90963","_from":"11898","_to":"53668"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"63942","_from":"11898","_to":"39938"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31636","_from":"11898","_to":"22083"} +{"$label":"ACTS_IN","name":"Suzon","type":"Role","_key":"16979","_from":"11898","_to":"12738"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"16472","_from":"11898","_to":"12443"} +{"$label":"ACTS_IN","name":"Fernand jeune","type":"Role","_key":"32563","_from":"11899","_to":"22629"} +{"$label":"ACTS_IN","name":"L'infirmi\u00e8re","type":"Role","_key":"93875","_from":"11900","_to":"55271"} +{"$label":"ACTS_IN","name":"Art\u00e9mise","type":"Role","_key":"72980","_from":"11900","_to":"43926"} +{"$label":"ACTS_IN","name":"Mosler","type":"Role","_key":"15607","_from":"11908","_to":"11901"} +{"$label":"ACTS_IN","name":"Lt. Andrews","type":"Role","_key":"15605","_from":"11907","_to":"11901"} +{"$label":"ACTS_IN","name":"Kit Carson","type":"Role","_key":"15604","_from":"11906","_to":"11901"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"15603","_from":"11905","_to":"11901"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"15602","_from":"11904","_to":"11901"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"15601","_from":"11903","_to":"11901"} +{"$label":"DIRECTED","_key":"15599","_from":"11902","_to":"11901"} +{"$label":"ACTS_IN","name":"Commander Bog","type":"Role","_key":"120204","_from":"11903","_to":"70592"} +{"$label":"ACTS_IN","name":"Lieutenant Ferguson NYPD","type":"Role","_key":"118295","_from":"11903","_to":"69534"} +{"$label":"ACTS_IN","name":"Snow Miser","type":"Role","_key":"94294","_from":"11903","_to":"55531"} +{"$label":"ACTS_IN","name":"Sylvester Marcus","type":"Role","_key":"70796","_from":"11903","_to":"43041"} +{"$label":"ACTS_IN","name":"Stan Starkey","type":"Role","_key":"22159","_from":"11903","_to":"16157"} +{"$label":"ACTS_IN","name":"Eben","type":"Role","_key":"62453","_from":"11906","_to":"39337"} +{"$label":"ACTS_IN","name":"Harry Weston","type":"Role","_key":"16785","_from":"11906","_to":"12653"} +{"$label":"ACTS_IN","name":"Yakov","type":"Role","_key":"57275","_from":"11907","_to":"36323"} +{"$label":"ACTS_IN","name":"Sonny Valerio","type":"Role","_key":"34192","_from":"11907","_to":"23484"} +{"$label":"ACTS_IN","name":"Yafet Hemlekh","type":"Role","_key":"16848","_from":"11907","_to":"12677"} +{"$label":"ACTS_IN","name":"Oma","type":"Role","_key":"110761","_from":"11908","_to":"65430"} +{"$label":"ACTS_IN","name":"Celine","type":"Role","_key":"91472","_from":"11908","_to":"53933"} +{"$label":"ACTS_IN","name":"Ramona Rickettes","type":"Role","_key":"56488","_from":"11908","_to":"35884"} +{"$label":"ACTS_IN","name":"Noelle","type":"Role","_key":"15623","_from":"11923","_to":"11909"} +{"$label":"ACTS_IN","name":"Mr. McFarland","type":"Role","_key":"15621","_from":"11922","_to":"11909"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"15620","_from":"11921","_to":"11909"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"15619","_from":"11920","_to":"11909"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"15618","_from":"11919","_to":"11909"} +{"$label":"ACTS_IN","name":"Acadia","type":"Role","_key":"15617","_from":"11918","_to":"11909"} +{"$label":"ACTS_IN","name":"Brittany","type":"Role","_key":"15616","_from":"11917","_to":"11909"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"15615","_from":"11916","_to":"11909"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"15614","_from":"11915","_to":"11909"} +{"$label":"ACTS_IN","name":"Jordan","type":"Role","_key":"15613","_from":"11914","_to":"11909"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"15612","_from":"11913","_to":"11909"} +{"$label":"ACTS_IN","name":"John McFarland","type":"Role","_key":"15611","_from":"11912","_to":"11909"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"15610","_from":"11911","_to":"11909"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"15609","_from":"11910","_to":"11909"} +{"$label":"ACTS_IN","name":"Tim Bess","type":"Role","_key":"105580","_from":"11910","_to":"62128"} +{"$label":"ACTS_IN","name":"Filkins","type":"Role","_key":"49910","_from":"11910","_to":"32673"} +{"$label":"ACTS_IN","name":"David Beamish","type":"Role","_key":"117539","_from":"11912","_to":"69106"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"98346","_from":"11912","_to":"57917"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"93581","_from":"11912","_to":"55109"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"56788","_from":"11912","_to":"36065"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"51582","_from":"11912","_to":"33658"} +{"$label":"ACTS_IN","name":"Elie (Le Marais)","type":"Role","_key":"19882","_from":"11913","_to":"14635"} +{"$label":"ACTS_IN","name":"Dr. Corso","type":"Role","_key":"119291","_from":"11922","_to":"70090"} +{"$label":"ACTS_IN","name":"Joe Bonham","type":"Role","_key":"108758","_from":"11922","_to":"64290"} +{"$label":"ACTS_IN","name":"Adelaide's Father","type":"Role","_key":"104117","_from":"11922","_to":"61250"} +{"$label":"ACTS_IN","name":"The King","type":"Role","_key":"100528","_from":"11922","_to":"59294"} +{"$label":"ACTS_IN","name":"James T. Hart","type":"Role","_key":"99639","_from":"11922","_to":"58741"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"64949","_from":"11922","_to":"40377"} +{"$label":"ACTS_IN","name":"Mr. Kidman","type":"Role","_key":"64329","_from":"11922","_to":"40093"} +{"$label":"ACTS_IN","name":"Mr. Crandall","type":"Role","_key":"55529","_from":"11922","_to":"35367"} +{"$label":"ACTS_IN","name":"Daggett","type":"Role","_key":"45416","_from":"11922","_to":"30103"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"15631","_from":"11927","_to":"11924"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"15630","_from":"11926","_to":"11924"} +{"$label":"ACTS_IN","name":"Cecil","type":"Role","_key":"15629","_from":"11925","_to":"11924"} +{"$label":"ACTS_IN","name":"Jake\/Witch","type":"Role","_key":"47667","_from":"11925","_to":"31400"} +{"$label":"ACTS_IN","name":"Silvestro","type":"Role","_key":"22066","_from":"11925","_to":"16093"} +{"$label":"ACTS_IN","name":"At the Player Piano","type":"Role","_key":"15651","_from":"11938","_to":"11928"} +{"$label":"ACTS_IN","name":"Handsome Dunce","type":"Role","_key":"15650","_from":"11937","_to":"11928"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"15648","_from":"11936","_to":"11928"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"15643","_from":"11935","_to":"11928"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"15642","_from":"11934","_to":"11928"} +{"$label":"ACTS_IN","name":"Richard 'Dick' Jared","type":"Role","_key":"15641","_from":"11933","_to":"11928"} +{"$label":"ACTS_IN","name":"Mitchell","type":"Role","_key":"15640","_from":"11932","_to":"11928"} +{"$label":"ACTS_IN","name":"Paul Denton","type":"Role","_key":"15636","_from":"11931","_to":"11928"} +{"$label":"ACTS_IN","name":"Lauren Hynde","type":"Role","_key":"15635","_from":"11930","_to":"11928"} +{"$label":"ACTS_IN","name":"Sean Bateman","type":"Role","_key":"15634","_from":"11929","_to":"11928"} +{"$label":"ACTS_IN","name":"Tony Zappa","type":"Role","_key":"120376","_from":"11929","_to":"70716"} +{"$label":"ACTS_IN","name":"Tom Russell","type":"Role","_key":"104333","_from":"11929","_to":"61383"} +{"$label":"ACTS_IN","name":"Jonathan 'Mox' Moxon","type":"Role","_key":"101498","_from":"11929","_to":"59741"} +{"$label":"ACTS_IN","name":"Lincoln Rogers Dunnison","type":"Role","_key":"94871","_from":"11929","_to":"55861"} +{"$label":"ACTS_IN","name":"marisol","type":"Role","_key":"98738","_from":"11930","_to":"58189"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"98587","_from":"11930","_to":"58099"} +{"$label":"ACTS_IN","name":"Mikal","type":"Role","_key":"93422","_from":"11930","_to":"55013"} +{"$label":"ACTS_IN","name":"Mara Sinclair","type":"Role","_key":"55069","_from":"11930","_to":"35178"} +{"$label":"ACTS_IN","name":"Lady Jocelyn","type":"Role","_key":"54101","_from":"11930","_to":"34782"} +{"$label":"ACTS_IN","name":"Beth Raymond","type":"Role","_key":"45168","_from":"11930","_to":"29971"} +{"$label":"ACTS_IN","name":"Pink Hair Girl","type":"Role","_key":"36545","_from":"11930","_to":"24777"} +{"$label":"ACTS_IN","name":"Erica Sutton","type":"Role","_key":"23262","_from":"11930","_to":"16868"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"69974","_from":"11931","_to":"42686"} +{"$label":"ACTS_IN","name":"Dexter","type":"Role","_key":"55554","_from":"11931","_to":"35381"} +{"$label":"ACTS_IN","name":"Richie Rey","type":"Role","_key":"116041","_from":"11932","_to":"68338"} +{"$label":"ACTS_IN","name":"Kevin Myers","type":"Role","_key":"48709","_from":"11932","_to":"31948"} +{"$label":"ACTS_IN","name":"Kevin Myers","type":"Role","_key":"23439","_from":"11932","_to":"16996"} +{"$label":"ACTS_IN","name":"Kevin Meyers","type":"Role","_key":"18352","_from":"11932","_to":"13613"} +{"$label":"ACTS_IN","name":"Rip","type":"Role","_key":"18209","_from":"11932","_to":"13500"} +{"$label":"ACTS_IN","name":"Edmund Grooms","type":"Role","_key":"98744","_from":"11933","_to":"58191"} +{"$label":"ACTS_IN","name":"Cherokee","type":"Role","_key":"35471","_from":"11933","_to":"24121"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"106847","_from":"11934","_to":"62986"} +{"$label":"ACTS_IN","name":"Kip","type":"Role","_key":"102294","_from":"11934","_to":"60192"} +{"$label":"ACTS_IN","name":"Jimmy Bly","type":"Role","_key":"63556","_from":"11934","_to":"39780"} +{"$label":"ACTS_IN","name":"Party Goer (as Ron Jeremy Hyatt)","type":"Role","_key":"116755","_from":"11938","_to":"68714"} +{"$label":"ACTS_IN","name":"Crazy Ron","type":"Role","_key":"111802","_from":"11938","_to":"65986"} +{"$label":"ACTS_IN","name":"Tromaville Citizen","type":"Role","_key":"108225","_from":"11938","_to":"63955"} +{"$label":"ACTS_IN","name":"Oog","type":"Role","_key":"101249","_from":"11938","_to":"59626"} +{"$label":"ACTS_IN","name":"Casey's Dad","type":"Role","_key":"98095","_from":"11938","_to":"57748"} +{"$label":"ACTS_IN","name":"Dr. Bombay","type":"Role","_key":"93023","_from":"11938","_to":"54839"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"50410","_from":"11938","_to":"32932"} +{"$label":"ACTS_IN","name":"Vincenzo Lipazzi","type":"Role","_key":"49425","_from":"11938","_to":"32353"} +{"$label":"ACTS_IN","name":"Rancher","type":"Role","_key":"39152","_from":"11938","_to":"26462"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38812","_from":"11938","_to":"26215"} +{"$label":"ACTS_IN","name":"Col. Guarjarado","type":"Role","_key":"15665","_from":"11947","_to":"11939"} +{"$label":"ACTS_IN","name":"Diaz","type":"Role","_key":"15664","_from":"11946","_to":"11939"} +{"$label":"ACTS_IN","name":"General Fuentes","type":"Role","_key":"15663","_from":"11945","_to":"11939"} +{"$label":"ACTS_IN","name":"Huerta","type":"Role","_key":"15662","_from":"11944","_to":"11939"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"15661","_from":"11943","_to":"11939"} +{"$label":"ACTS_IN","name":"Soldadera","type":"Role","_key":"15659","_from":"11942","_to":"11939"} +{"$label":"ACTS_IN","name":"Don Nacio","type":"Role","_key":"15657","_from":"11941","_to":"11939"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"15654","_from":"11940","_to":"11939"} +{"$label":"ACTS_IN","name":"Polly Cutler","type":"Role","_key":"121726","_from":"11940","_to":"71514"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"28305","_from":"11942","_to":"20257"} +{"$label":"ACTS_IN","name":"Sgt. Mac","type":"Role","_key":"61362","_from":"11944","_to":"38720"} +{"$label":"ACTS_IN","name":"Vincent Rapallo","type":"Role","_key":"60058","_from":"11944","_to":"37901"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"120038","_from":"11947","_to":"70493"} +{"$label":"ACTS_IN","name":"Padre","type":"Role","_key":"115621","_from":"11947","_to":"68059"} +{"$label":"ACTS_IN","name":"Abiram","type":"Role","_key":"44963","_from":"11947","_to":"29886"} +{"$label":"ACTS_IN","name":"Evans","type":"Role","_key":"44153","_from":"11947","_to":"29428"} +{"$label":"DIRECTED","_key":"15684","_from":"11958","_to":"11948"} +{"$label":"ACTS_IN","name":"Teen Idol","type":"Role","_key":"15683","_from":"11957","_to":"11948"} +{"$label":"ACTS_IN","name":"Egg\/Polly","type":"Role","_key":"15682","_from":"11956","_to":"11948"} +{"$label":"ACTS_IN","name":"Lucifer","type":"Role","_key":"15681","_from":"11955","_to":"11948"} +{"$label":"ACTS_IN","name":"Kris, S&M Girl","type":"Role","_key":"15680","_from":"11954","_to":"11948"} +{"$label":"ACTS_IN","name":"Handjob","type":"Role","_key":"15677","_from":"11953","_to":"11948"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"15676","_from":"11952","_to":"11948"} +{"$label":"ACTS_IN","name":"Dingbat","type":"Role","_key":"15671","_from":"11951","_to":"11948"} +{"$label":"ACTS_IN","name":"Montgomery","type":"Role","_key":"15668","_from":"11950","_to":"11948"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"15667","_from":"11949","_to":"11948"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"116008","_from":"11949","_to":"68315"} +{"$label":"ACTS_IN","name":"Daliha","type":"Role","_key":"103851","_from":"11949","_to":"61070"} +{"$label":"ACTS_IN","name":"Mary Jane Potman","type":"Role","_key":"54218","_from":"11949","_to":"34822"} +{"$label":"ACTS_IN","name":"Rochelle","type":"Role","_key":"52555","_from":"11949","_to":"34163"} +{"$label":"ACTS_IN","name":"Mannie","type":"Role","_key":"53814","_from":"11950","_to":"34669"} +{"$label":"ACTS_IN","name":"Alicia Valco","type":"Role","_key":"104930","_from":"11951","_to":"61746"} +{"$label":"ACTS_IN","name":"Sue Ellen Crandell","type":"Role","_key":"104313","_from":"11951","_to":"61374"} +{"$label":"ACTS_IN","name":"Rosalind\/Julia","type":"Role","_key":"101744","_from":"11951","_to":"59883"} +{"$label":"ACTS_IN","name":"Melissa (voice)","type":"Role","_key":"89792","_from":"11951","_to":"53142"} +{"$label":"ACTS_IN","name":"Courtney Rockcliffe","type":"Role","_key":"72130","_from":"11951","_to":"43602"} +{"$label":"ACTS_IN","name":"Christine Montgomery","type":"Role","_key":"70400","_from":"11951","_to":"42873"} +{"$label":"ACTS_IN","name":"Sara Goodwin","type":"Role","_key":"69704","_from":"11951","_to":"42552"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"61527","_from":"11951","_to":"38798"} +{"$label":"ACTS_IN","name":"Veronica Corningstone","type":"Role","_key":"58644","_from":"11951","_to":"37052"} +{"$label":"ACTS_IN","name":"Diane Steen","type":"Role","_key":"57322","_from":"11951","_to":"36353"} +{"$label":"ACTS_IN","name":"Pam Shulman","type":"Role","_key":"53932","_from":"11951","_to":"34704"} +{"$label":"ACTS_IN","name":"Veronica Corningstone","type":"Role","_key":"50544","_from":"11951","_to":"33010"} +{"$label":"ACTS_IN","name":"Susan Launius","type":"Role","_key":"35465","_from":"11951","_to":"24121"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"36848","_from":"11953","_to":"24987"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"100354","_from":"11954","_to":"59177"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"51349","_from":"11954","_to":"33480"} +{"$label":"ACTS_IN","name":"Marine","type":"Role","_key":"38296","_from":"11954","_to":"25867"} +{"$label":"ACTS_IN","name":"Sophie Choiset","type":"Role","_key":"28141","_from":"11954","_to":"20177"} +{"$label":"ACTS_IN","name":"Segment \"La Faute au vent\"","type":"Role","_key":"21035","_from":"11954","_to":"15398"} +{"$label":"ACTS_IN","name":"Marjane (voice)","type":"Role","_key":"17462","_from":"11954","_to":"13055"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"110929","_from":"11955","_to":"65527"} +{"$label":"ACTS_IN","name":"Ticket Girl","type":"Role","_key":"31035","_from":"11955","_to":"21724"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"30451","_from":"11955","_to":"21400"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"26896","_from":"11957","_to":"19340"} +{"$label":"DIRECTED","_key":"95174","_from":"11958","_to":"56000"} +{"$label":"DIRECTED","_key":"93152","_from":"11958","_to":"54899"} +{"$label":"DIRECTED","_key":"68318","_from":"11958","_to":"41932"} +{"$label":"DIRECTED","_key":"15689","_from":"11964","_to":"11959"} +{"$label":"ACTS_IN","name":"Rich","type":"Role","_key":"15688","_from":"11963","_to":"11959"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"15687","_from":"11962","_to":"11959"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"15686","_from":"11961","_to":"11959"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"15685","_from":"11960","_to":"11959"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"121291","_from":"11960","_to":"71262"} +{"$label":"ACTS_IN","name":"Alex Monday","type":"Role","_key":"30455","_from":"11960","_to":"21400"} +{"$label":"ACTS_IN","name":"Spence","type":"Role","_key":"41231","_from":"11963","_to":"27735"} +{"$label":"DIRECTED","_key":"117304","_from":"11964","_to":"68981"} +{"$label":"ACTS_IN","name":"Alice Lomax","type":"Role","_key":"15694","_from":"11966","_to":"11965"} +{"$label":"ACTS_IN","name":"Cathy Kramer","type":"Role","_key":"102637","_from":"11966","_to":"60385"} +{"$label":"ACTS_IN","name":"Didi Pierce","type":"Role","_key":"40854","_from":"11966","_to":"27498"} +{"$label":"DIRECTED","_key":"15704","_from":"11974","_to":"11967"} +{"$label":"ACTS_IN","name":"Wigbert Wolf","type":"Role","_key":"15702","_from":"11973","_to":"11967"} +{"$label":"ACTS_IN","name":"Helmut Schr\u00f6der","type":"Role","_key":"15701","_from":"11972","_to":"11967"} +{"$label":"ACTS_IN","name":"Henriette Wolf","type":"Role","_key":"15700","_from":"11971","_to":"11967"} +{"$label":"ACTS_IN","name":"Anne Schr\u00f6der","type":"Role","_key":"15699","_from":"11970","_to":"11967"} +{"$label":"ACTS_IN","name":"Theodor Schr\u00f6der","type":"Role","_key":"15698","_from":"11969","_to":"11967"} +{"$label":"ACTS_IN","name":"Frank Schr\u00f6der","type":"Role","_key":"15697","_from":"11968","_to":"11967"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"54162","_from":"11969","_to":"34798"} +{"$label":"ACTS_IN","name":"Kunigunde von Richthofen","type":"Role","_key":"49242","_from":"11970","_to":"32251"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"32188","_from":"11971","_to":"22435"} +{"$label":"ACTS_IN","name":"Freundin vom blonden Martin","type":"Role","_key":"19481","_from":"11971","_to":"14406"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"19433","_from":"11971","_to":"14373"} +{"$label":"ACTS_IN","name":"Gro\u00dfmagd Wibke","type":"Role","_key":"19307","_from":"11971","_to":"14272"} +{"$label":"DIRECTED","_key":"54168","_from":"11974","_to":"34798"} +{"$label":"DIRECTED","_key":"15705","_from":"11976","_to":"11975"} +{"$label":"DIRECTED","_key":"120043","_from":"11976","_to":"70493"} +{"$label":"DIRECTED","_key":"115244","_from":"11976","_to":"67870"} +{"$label":"DIRECTED","_key":"97584","_from":"11976","_to":"57463"} +{"$label":"DIRECTED","_key":"30745","_from":"11976","_to":"21548"} +{"$label":"ACTS_IN","name":"Richie Walters","type":"Role","_key":"15727","_from":"11988","_to":"11977"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"15726","_from":"11987","_to":"11977"} +{"$label":"ACTS_IN","name":"Dancer with Gum","type":"Role","_key":"15725","_from":"11986","_to":"11977"} +{"$label":"ACTS_IN","name":"Mike Cass","type":"Role","_key":"15724","_from":"11985","_to":"11977"} +{"$label":"ACTS_IN","name":"Cassie","type":"Role","_key":"15723","_from":"11984","_to":"11977"} +{"$label":"ACTS_IN","name":"Bobby Mills III","type":"Role","_key":"15722","_from":"11983","_to":"11977"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"15721","_from":"11982","_to":"11977"} +{"$label":"ACTS_IN","name":"Connie Wong","type":"Role","_key":"15720","_from":"11981","_to":"11977"} +{"$label":"ACTS_IN","name":"Diana Morales","type":"Role","_key":"15719","_from":"11980","_to":"11977"} +{"$label":"ACTS_IN","name":"Judy Monroe","type":"Role","_key":"15718","_from":"11979","_to":"11977"} +{"$label":"ACTS_IN","name":"Sheila Bryant","type":"Role","_key":"15717","_from":"11978","_to":"11977"} +{"$label":"ACTS_IN","name":"Counselor Tetra","type":"Role","_key":"90046","_from":"11982","_to":"53260"} +{"$label":"ACTS_IN","name":"Johnny Steele\/Ug","type":"Role","_key":"61088","_from":"11982","_to":"38616"} +{"$label":"ACTS_IN","name":"Alexandra 'Alex' Hutton","type":"Role","_key":"89747","_from":"11984","_to":"53125"} +{"$label":"ACTS_IN","name":"Janella","type":"Role","_key":"107092","_from":"11987","_to":"63144"} +{"$label":"ACTS_IN","name":"Dierdre","type":"Role","_key":"104331","_from":"11987","_to":"61380"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"48942","_from":"11987","_to":"32087"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"15733","_from":"11990","_to":"11989"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"96871","_from":"11990","_to":"56966"} +{"$label":"ACTS_IN","name":"Joi","type":"Role","_key":"64739","_from":"11990","_to":"40300"} +{"$label":"ACTS_IN","name":"Fido Saroyan","type":"Role","_key":"15743","_from":"11995","_to":"11991"} +{"$label":"ACTS_IN","name":"Plyne","type":"Role","_key":"15741","_from":"11994","_to":"11991"} +{"$label":"ACTS_IN","name":"Clarisse","type":"Role","_key":"15740","_from":"11993","_to":"11991"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se Saroyan","type":"Role","_key":"15739","_from":"11992","_to":"11991"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"44328","_from":"11993","_to":"29543"} +{"$label":"ACTS_IN","name":"Noelle","type":"Role","_key":"27559","_from":"11993","_to":"19767"} +{"$label":"ACTS_IN","name":"Carl's Secretary","type":"Role","_key":"15758","_from":"12006","_to":"11996"} +{"$label":"ACTS_IN","name":"Thompson's Secretary","type":"Role","_key":"15757","_from":"12005","_to":"11996"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"15756","_from":"12004","_to":"11996"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"15755","_from":"12003","_to":"11996"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"15754","_from":"12002","_to":"11996"} +{"$label":"ACTS_IN","name":"Toshi","type":"Role","_key":"15753","_from":"12001","_to":"11996"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"15752","_from":"12000","_to":"11996"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"15751","_from":"11999","_to":"11996"} +{"$label":"DIRECTED","_key":"15746","_from":"11998","_to":"11996"} +{"$label":"DIRECTED","_key":"15745","_from":"11997","_to":"11996"} +{"$label":"DIRECTED","_key":"52656","_from":"11997","_to":"34200"} +{"$label":"DIRECTED","_key":"52657","_from":"11998","_to":"34200"} +{"$label":"ACTS_IN","name":"Ronnie Barnhardt","type":"Role","_key":"110746","_from":"11999","_to":"65426"} +{"$label":"ACTS_IN","name":"B.O.B. (voice)","type":"Role","_key":"104772","_from":"11999","_to":"61645"} +{"$label":"ACTS_IN","name":"Admiral Seasholtz \/ Alien \/ Roach","type":"Role","_key":"95079","_from":"11999","_to":"55963"} +{"$label":"ACTS_IN","name":"Morton (voice)","type":"Role","_key":"88799","_from":"11999","_to":"52615"} +{"$label":"ACTS_IN","name":"Sporting Goods Manager","type":"Role","_key":"88216","_from":"11999","_to":"52337"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"62772","_from":"11999","_to":"39457"} +{"$label":"ACTS_IN","name":"Dale Denton","type":"Role","_key":"61540","_from":"11999","_to":"38803"} +{"$label":"ACTS_IN","name":"Officer Michaels","type":"Role","_key":"49317","_from":"11999","_to":"32290"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"45319","_from":"11999","_to":"30057"} +{"$label":"ACTS_IN","name":"Ben Stone","type":"Role","_key":"35174","_from":"11999","_to":"23973"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"100654","_from":"12000","_to":"59348"} +{"$label":"ACTS_IN","name":"Monty Kirkham","type":"Role","_key":"72477","_from":"12000","_to":"43733"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"64161","_from":"12000","_to":"40035"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"95648","_from":"12002","_to":"56251"} +{"$label":"ACTS_IN","name":"General George Armstrong Custer","type":"Role","_key":"115895","_from":"12003","_to":"68230"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"109620","_from":"12003","_to":"64750"} +{"$label":"ACTS_IN","name":"Private Miller","type":"Role","_key":"61556","_from":"12003","_to":"38803"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"60295","_from":"12003","_to":"38026"} +{"$label":"ACTS_IN","name":"Recumbent Biker","type":"Role","_key":"60251","_from":"12003","_to":"38004"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"57496","_from":"12003","_to":"36436"} +{"$label":"ACTS_IN","name":"Officer Slater","type":"Role","_key":"49316","_from":"12003","_to":"32290"} +{"$label":"ACTS_IN","name":"Brent","type":"Role","_key":"35186","_from":"12003","_to":"23973"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"100653","_from":"12006","_to":"59348"} +{"$label":"DIRECTED","_key":"15766","_from":"12012","_to":"12007"} +{"$label":"ACTS_IN","name":"Marlin Whitmore","type":"Role","_key":"15765","_from":"12011","_to":"12007"} +{"$label":"ACTS_IN","name":"Alexa","type":"Role","_key":"15763","_from":"12010","_to":"12007"} +{"$label":"ACTS_IN","name":"Ula","type":"Role","_key":"15761","_from":"12009","_to":"12007"} +{"$label":"ACTS_IN","name":"Henry Roth","type":"Role","_key":"15759","_from":"12008","_to":"12007"} +{"$label":"ACTS_IN","name":"Schecky Moskowitz","type":"Role","_key":"119006","_from":"12008","_to":"69951"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"95349","_from":"12008","_to":"56098"} +{"$label":"ACTS_IN","name":"Davey, Whitey, Eleanore & Deer","type":"Role","_key":"94182","_from":"12008","_to":"55461"} +{"$label":"ACTS_IN","name":"Mambuza Bongo Guy (uncredited)","type":"Role","_key":"72391","_from":"12008","_to":"43699"} +{"$label":"ACTS_IN","name":"Billy Madison","type":"Role","_key":"67310","_from":"12008","_to":"41492"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"67219","_from":"12008","_to":"41454"} +{"$label":"ACTS_IN","name":"Archie Moses","type":"Role","_key":"65256","_from":"12008","_to":"40509"} +{"$label":"ACTS_IN","name":"Bobby Boucher","type":"Role","_key":"64903","_from":"12008","_to":"40359"} +{"$label":"ACTS_IN","name":"Zohan","type":"Role","_key":"64892","_from":"12008","_to":"40353"} +{"$label":"ACTS_IN","name":"Skeeter Bronson","type":"Role","_key":"61678","_from":"12008","_to":"38856"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"55489","_from":"12008","_to":"35362"} +{"$label":"ACTS_IN","name":"Happy Gilmore","type":"Role","_key":"55057","_from":"12008","_to":"35171"} +{"$label":"ACTS_IN","name":"Carmine","type":"Role","_key":"55025","_from":"12008","_to":"35160"} +{"$label":"ACTS_IN","name":"Dave Buznik","type":"Role","_key":"54310","_from":"12008","_to":"34859"} +{"$label":"ACTS_IN","name":"Michael Newman","type":"Role","_key":"53206","_from":"12008","_to":"34418"} +{"$label":"ACTS_IN","name":"Paul Crewe","type":"Role","_key":"52909","_from":"12008","_to":"34291"} +{"$label":"ACTS_IN","name":"Sonny Koufax","type":"Role","_key":"52158","_from":"12008","_to":"33995"} +{"$label":"ACTS_IN","name":"Barry Egan","type":"Role","_key":"47873","_from":"12008","_to":"31510"} +{"$label":"ACTS_IN","name":"Charles \"Chuck\" Levine","type":"Role","_key":"27944","_from":"12008","_to":"20034"} +{"$label":"ACTS_IN","name":"John Clasky","type":"Role","_key":"21937","_from":"12008","_to":"16022"} +{"$label":"ACTS_IN","name":"Charlie Fineman","type":"Role","_key":"20597","_from":"12008","_to":"15075"} +{"$label":"ACTS_IN","name":"Longfellow Deeds","type":"Role","_key":"17579","_from":"12008","_to":"13137"} +{"$label":"ACTS_IN","name":"Nerissa (voice)","type":"Role","_key":"120518","_from":"12009","_to":"70788"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103745","_from":"12009","_to":"61008"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"100652","_from":"12009","_to":"59348"} +{"$label":"ACTS_IN","name":"Chinese Waiter & Narrator","type":"Role","_key":"94186","_from":"12009","_to":"55461"} +{"$label":"ACTS_IN","name":"Big Stan","type":"Role","_key":"93068","_from":"12009","_to":"54866"} +{"$label":"ACTS_IN","name":"Jessica Spencer","type":"Role","_key":"72367","_from":"12009","_to":"43699"} +{"$label":"ACTS_IN","name":"Deuce Bigalow","type":"Role","_key":"69948","_from":"12009","_to":"42676"} +{"$label":"ACTS_IN","name":"Marvin Mange","type":"Role","_key":"67820","_from":"12009","_to":"41685"} +{"$label":"ACTS_IN","name":"Townie","type":"Role","_key":"64915","_from":"12009","_to":"40359"} +{"$label":"ACTS_IN","name":"Salim","type":"Role","_key":"64901","_from":"12009","_to":"40353"} +{"$label":"ACTS_IN","name":"Deuce Bigalow","type":"Role","_key":"63022","_from":"12009","_to":"39557"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"58539","_from":"12009","_to":"36989"} +{"$label":"ACTS_IN","name":"Herman Ferguson (Fergie)","type":"Role","_key":"54156","_from":"12009","_to":"34797"} +{"$label":"ACTS_IN","name":"Punky","type":"Role","_key":"52932","_from":"12009","_to":"34291"} +{"$label":"ACTS_IN","name":"Executive Officer Lt. Martin T. \"Marty\" Pascal","type":"Role","_key":"52562","_from":"12009","_to":"34164"} +{"$label":"ACTS_IN","name":"Delivery Guy","type":"Role","_key":"52164","_from":"12009","_to":"33995"} +{"$label":"DIRECTED","_key":"93073","_from":"12009","_to":"54866"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"99146","_from":"12011","_to":"58416"} +{"$label":"ACTS_IN","name":"Farmer Fran","type":"Role","_key":"64909","_from":"12011","_to":"40359"} +{"$label":"ACTS_IN","name":"Com. Scott","type":"Role","_key":"18271","_from":"12011","_to":"13554"} +{"$label":"DIRECTED","_key":"113966","_from":"12012","_to":"67124"} +{"$label":"DIRECTED","_key":"88054","_from":"12012","_to":"52270"} +{"$label":"DIRECTED","_key":"71393","_from":"12012","_to":"43300"} +{"$label":"DIRECTED","_key":"69518","_from":"12012","_to":"42464"} +{"$label":"DIRECTED","_key":"54309","_from":"12012","_to":"34859"} +{"$label":"DIRECTED","_key":"52933","_from":"12012","_to":"34291"} +{"$label":"ACTS_IN","name":"Collins","type":"Role","_key":"15776","_from":"12021","_to":"12013"} +{"$label":"ACTS_IN","name":"Ruker","type":"Role","_key":"15775","_from":"12020","_to":"12013"} +{"$label":"ACTS_IN","name":"Tim Salanger","type":"Role","_key":"15774","_from":"12019","_to":"12013"} +{"$label":"ACTS_IN","name":"Harry Bosco","type":"Role","_key":"15773","_from":"12018","_to":"12013"} +{"$label":"ACTS_IN","name":"John Grizzly","type":"Role","_key":"15772","_from":"12017","_to":"12013"} +{"$label":"ACTS_IN","name":"Michael Cutler\/Michael Hawk","type":"Role","_key":"15771","_from":"12016","_to":"12013"} +{"$label":"ACTS_IN","name":"Bob Hurley","type":"Role","_key":"15770","_from":"12015","_to":"12013"} +{"$label":"DIRECTED","_key":"15767","_from":"12014","_to":"12013"} +{"$label":"DIRECTED","_key":"111535","_from":"12014","_to":"65847"} +{"$label":"DIRECTED","_key":"107122","_from":"12014","_to":"63169"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"46128","_from":"12016","_to":"30480"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"90034","_from":"12018","_to":"53256"} +{"$label":"ACTS_IN","name":"D.E. Moore","type":"Role","_key":"43541","_from":"12018","_to":"29077"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"41365","_from":"12018","_to":"27804"} +{"$label":"ACTS_IN","name":"General Mills","type":"Role","_key":"37768","_from":"12018","_to":"25613"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99363","_from":"12020","_to":"58552"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"58211","_from":"12020","_to":"36816"} +{"$label":"ACTS_IN","name":"Soup Waiter","type":"Role","_key":"59026","_from":"12021","_to":"37261"} +{"$label":"ACTS_IN","name":"Hypnotist","type":"Role","_key":"15788","_from":"12027","_to":"12023"} +{"$label":"ACTS_IN","name":"Mr. Saunders","type":"Role","_key":"15787","_from":"12026","_to":"12023"} +{"$label":"ACTS_IN","name":"The Bookseller","type":"Role","_key":"15786","_from":"12025","_to":"12023"} +{"$label":"ACTS_IN","name":"Mrs. Saunders","type":"Role","_key":"15785","_from":"12024","_to":"12023"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"15797","_from":"12032","_to":"12028"} +{"$label":"ACTS_IN","name":"General Dmitri Orlov","type":"Role","_key":"15796","_from":"12031","_to":"12028"} +{"$label":"ACTS_IN","name":"Andre Baptiste Jr.","type":"Role","_key":"15795","_from":"12030","_to":"12028"} +{"$label":"ACTS_IN","name":"Andre Baptiste Sr.","type":"Role","_key":"15793","_from":"12029","_to":"12028"} +{"$label":"ACTS_IN","name":"Howlin' Wolf","type":"Role","_key":"99521","_from":"12029","_to":"58668"} +{"$label":"ACTS_IN","name":"Ellis 'Zee' Pettigrew","type":"Role","_key":"54743","_from":"12029","_to":"35036"} +{"$label":"ACTS_IN","name":"Uncle Anatoly","type":"Role","_key":"117678","_from":"12031","_to":"69168"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"116315","_from":"12031","_to":"68473"} +{"$label":"ACTS_IN","name":"Annabel","type":"Role","_key":"15805","_from":"12036","_to":"12033"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"15803","_from":"12035","_to":"12033"} +{"$label":"DIRECTED","_key":"15799","_from":"12034","_to":"12033"} +{"$label":"DIRECTED","_key":"63797","_from":"12034","_to":"39894"} +{"$label":"DIRECTED","_key":"35980","_from":"12034","_to":"24437"} +{"$label":"DIRECTED","_key":"27226","_from":"12034","_to":"19575"} +{"$label":"DIRECTED","_key":"26097","_from":"12034","_to":"18751"} +{"$label":"DIRECTED","_key":"24755","_from":"12034","_to":"17908"} +{"$label":"ACTS_IN","name":"Stringy Haired Woman","type":"Role","_key":"53812","_from":"12036","_to":"34669"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"15822","_from":"12044","_to":"12037"} +{"$label":"ACTS_IN","name":"Smooching Seaman","type":"Role","_key":"15821","_from":"12043","_to":"12037"} +{"$label":"ACTS_IN","name":"Protestor #2","type":"Role","_key":"15820","_from":"12042","_to":"12037"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"15819","_from":"12041","_to":"12037"} +{"$label":"ACTS_IN","name":"Grant Hicks","type":"Role","_key":"15818","_from":"12040","_to":"12037"} +{"$label":"ACTS_IN","name":"God","type":"Role","_key":"15815","_from":"12039","_to":"12037"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"15809","_from":"12038","_to":"12037"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"110849","_from":"12038","_to":"65481"} +{"$label":"ACTS_IN","name":"Owen Peadman","type":"Role","_key":"101115","_from":"12038","_to":"59581"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99736","_from":"12038","_to":"58821"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"62775","_from":"12038","_to":"39457"} +{"$label":"ACTS_IN","name":"Edgy Cat","type":"Role","_key":"60227","_from":"12038","_to":"37994"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"30308","_from":"12038","_to":"21314"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"20149","_from":"12038","_to":"14789"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"20129","_from":"12038","_to":"14786"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"20118","_from":"12038","_to":"14782"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"20103","_from":"12038","_to":"14773"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"19746","_from":"12038","_to":"14591"} +{"$label":"ACTS_IN","name":"Will Carlson \/ Flappy \/ Vulgar","type":"Role","_key":"118651","_from":"12040","_to":"69762"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"20147","_from":"12040","_to":"14789"} +{"$label":"ACTS_IN","name":"Dante Hicks","type":"Role","_key":"20132","_from":"12040","_to":"14786"} +{"$label":"ACTS_IN","name":"Dante Hicks","type":"Role","_key":"20101","_from":"12040","_to":"14773"} +{"$label":"ACTS_IN","name":"Exec. #1","type":"Role","_key":"19747","_from":"12040","_to":"14591"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"121165","_from":"12041","_to":"71176"} +{"$label":"ACTS_IN","name":"Anita Hoffman","type":"Role","_key":"115079","_from":"12041","_to":"67773"} +{"$label":"ACTS_IN","name":"Ellie","type":"Role","_key":"103711","_from":"12041","_to":"61002"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"57805","_from":"12041","_to":"36591"} +{"$label":"ACTS_IN","name":"The Bowler","type":"Role","_key":"57173","_from":"12041","_to":"36278"} +{"$label":"ACTS_IN","name":"Heather Mooney","type":"Role","_key":"55015","_from":"12041","_to":"35158"} +{"$label":"ACTS_IN","name":"Wiladene","type":"Role","_key":"52689","_from":"12041","_to":"34207"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"51168","_from":"12041","_to":"33378"} +{"$label":"ACTS_IN","name":"Dr. Beth Levy","type":"Role","_key":"48009","_from":"12041","_to":"31581"} +{"$label":"ACTS_IN","name":"Stith","type":"Role","_key":"46696","_from":"12041","_to":"30828"} +{"$label":"ACTS_IN","name":"Joy Miller","type":"Role","_key":"35468","_from":"12041","_to":"24121"} +{"$label":"ACTS_IN","name":"Vickie Miner","type":"Role","_key":"23587","_from":"12041","_to":"17109"} +{"$label":"ACTS_IN","name":"Officer Monica Romero","type":"Role","_key":"18995","_from":"12041","_to":"14034"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"18895","_from":"12041","_to":"13951"} +{"$label":"ACTS_IN","name":"Deputy Cindy Betts","type":"Role","_key":"18633","_from":"12041","_to":"13786"} +{"$label":"ACTS_IN","name":"Colette","type":"Role","_key":"17938","_from":"12041","_to":"13345"} +{"$label":"ACTS_IN","name":"Woolen Cap Smoker\/Egg Man\/Offended Customer\/Cat Admiring Bitter Customer","type":"Role","_key":"20108","_from":"12042","_to":"14773"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99737","_from":"12043","_to":"58821"} +{"$label":"ACTS_IN","name":"Concerned Father","type":"Role","_key":"20155","_from":"12043","_to":"14789"} +{"$label":"ACTS_IN","name":"Willam Black\/Angry Hockey Playing Customer\/Angry Mourner","type":"Role","_key":"20107","_from":"12043","_to":"14773"} +{"$label":"ACTS_IN","name":"Collector","type":"Role","_key":"19743","_from":"12043","_to":"14591"} +{"$label":"ACTS_IN","name":"Hooper LaMont","type":"Role","_key":"19741","_from":"12044","_to":"14591"} +{"$label":"ACTS_IN","name":"Maurenn Johnson","type":"Role","_key":"15831","_from":"12049","_to":"12045"} +{"$label":"ACTS_IN","name":"Angel Dumott Schunard","type":"Role","_key":"15830","_from":"12048","_to":"12045"} +{"$label":"ACTS_IN","name":"Tom Collins","type":"Role","_key":"15829","_from":"12047","_to":"12045"} +{"$label":"ACTS_IN","name":"Roger Davis","type":"Role","_key":"15827","_from":"12046","_to":"12045"} +{"$label":"ACTS_IN","name":"Nancy Tremaine","type":"Role","_key":"32298","_from":"12049","_to":"22492"} +{"$label":"ACTS_IN","name":"Vera Rivkin","type":"Role","_key":"17064","_from":"12049","_to":"12792"} +{"$label":"ACTS_IN","name":"Lt. Randall","type":"Role","_key":"15843","_from":"12057","_to":"12050"} +{"$label":"ACTS_IN","name":"Marriott","type":"Role","_key":"15841","_from":"12056","_to":"12050"} +{"$label":"ACTS_IN","name":"Mr. Grayle","type":"Role","_key":"15839","_from":"12055","_to":"12050"} +{"$label":"ACTS_IN","name":"Ann Grayle","type":"Role","_key":"15838","_from":"12054","_to":"12050"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15836","_from":"12053","_to":"12050"} +{"$label":"DIRECTED","_key":"15835","_from":"12052","_to":"12050"} +{"$label":"DIRECTED","_key":"15834","_from":"12051","_to":"12050"} +{"$label":"DIRECTED","_key":"120776","_from":"12051","_to":"70939"} +{"$label":"DIRECTED","_key":"61459","_from":"12051","_to":"38765"} +{"$label":"ACTS_IN","name":"Johnny O'Clock","type":"Role","_key":"119750","_from":"12053","_to":"70323"} +{"$label":"ACTS_IN","name":"Lawrence \" Larry \" Stevens","type":"Role","_key":"28194","_from":"12053","_to":"20193"} +{"$label":"ACTS_IN","name":"Billy Lawler","type":"Role","_key":"25367","_from":"12053","_to":"18284"} +{"$label":"DIRECTED","_key":"106213","_from":"12053","_to":"62557"} +{"$label":"ACTS_IN","name":"Lockwood","type":"Role","_key":"25613","_from":"12055","_to":"18444"} +{"$label":"ACTS_IN","name":"Thomas Langford","type":"Role","_key":"28704","_from":"12057","_to":"20507"} +{"$label":"ACTS_IN","name":"Moose Malloy","type":"Role","_key":"15855","_from":"12062","_to":"12058"} +{"$label":"ACTS_IN","name":"Frances Amthor","type":"Role","_key":"15854","_from":"12061","_to":"12058"} +{"$label":"ACTS_IN","name":"Mrs. Jessie Florian","type":"Role","_key":"15847","_from":"12060","_to":"12058"} +{"$label":"DIRECTED","_key":"15844","_from":"12059","_to":"12058"} +{"$label":"ACTS_IN","name":"Gerde Engstrom","type":"Role","_key":"115255","_from":"12060","_to":"67870"} +{"$label":"ACTS_IN","name":"himself \/ Myra Gardener","type":"Role","_key":"41637","_from":"12060","_to":"27947"} +{"$label":"ACTS_IN","name":"Sally Todd","type":"Role","_key":"32849","_from":"12060","_to":"22804"} +{"$label":"ACTS_IN","name":"Myra Gardener","type":"Role","_key":"29997","_from":"12060","_to":"21171"} +{"$label":"ACTS_IN","name":"Cass","type":"Role","_key":"26100","_from":"12060","_to":"18751"} +{"$label":"ACTS_IN","name":"Non","type":"Role","_key":"117416","_from":"12062","_to":"69059"} +{"$label":"ACTS_IN","name":"Non","type":"Role","_key":"50122","_from":"12062","_to":"32783"} +{"$label":"ACTS_IN","name":"Non","type":"Role","_key":"16663","_from":"12062","_to":"12577"} +{"$label":"ACTS_IN","name":"La cliente","type":"Role","_key":"15862","_from":"12067","_to":"12063"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"15861","_from":"12066","_to":"12063"} +{"$label":"ACTS_IN","name":"Sandrine","type":"Role","_key":"15859","_from":"12065","_to":"12063"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"15857","_from":"12064","_to":"12063"} +{"$label":"DIRECTED","_key":"15856","_from":"12064","_to":"12063"} +{"$label":"DIRECTED","_key":"117985","_from":"12064","_to":"69354"} +{"$label":"DIRECTED","_key":"15885","_from":"12064","_to":"12087"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"104414","_from":"12065","_to":"61422"} +{"$label":"ACTS_IN","name":"V\u00e9ronique Colucci","type":"Role","_key":"100163","_from":"12065","_to":"59082"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9rique","type":"Role","_key":"91827","_from":"12065","_to":"54170"} +{"$label":"ACTS_IN","name":"Clotilde","type":"Role","_key":"72981","_from":"12065","_to":"43926"} +{"$label":"ACTS_IN","name":"Solange","type":"Role","_key":"20891","_from":"12065","_to":"15276"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104002","_from":"12066","_to":"61187"} +{"$label":"ACTS_IN","name":"Claude Mercier","type":"Role","_key":"59983","_from":"12066","_to":"37860"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"48811","_from":"12067","_to":"32011"} +{"$label":"ACTS_IN","name":"M\u00e9lanie","type":"Role","_key":"15873","_from":"12079","_to":"12068"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"15872","_from":"12078","_to":"12068"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"15871","_from":"12077","_to":"12068"} +{"$label":"ACTS_IN","name":"S\u00e9verine","type":"Role","_key":"15870","_from":"12076","_to":"12068"} +{"$label":"ACTS_IN","name":"R\u00e9my","type":"Role","_key":"15869","_from":"12075","_to":"12068"} +{"$label":"ACTS_IN","name":"M\u00e8re de Marie","type":"Role","_key":"15868","_from":"12074","_to":"12068"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"15867","_from":"12073","_to":"12068"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"15866","_from":"12072","_to":"12068"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"15865","_from":"12071","_to":"12068"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"15864","_from":"12070","_to":"12068"} +{"$label":"DIRECTED","_key":"15863","_from":"12069","_to":"12068"} +{"$label":"DIRECTED","_key":"19651","_from":"12069","_to":"14540"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"42444","_from":"12071","_to":"28418"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"120352","_from":"12072","_to":"70696"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"119137","_from":"12072","_to":"70019"} +{"$label":"ACTS_IN","name":"Deucalion","type":"Role","_key":"117847","_from":"12072","_to":"69278"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"94117","_from":"12072","_to":"55425"} +{"$label":"ACTS_IN","name":"The Candyman","type":"Role","_key":"89785","_from":"12072","_to":"53138"} +{"$label":"ACTS_IN","name":"Candyman \/ Daniel Robitaille","type":"Role","_key":"66007","_from":"12072","_to":"40846"} +{"$label":"ACTS_IN","name":"William Bludworth","type":"Role","_key":"54497","_from":"12072","_to":"34931"} +{"$label":"ACTS_IN","name":"The Candyman \/ Daniel Robitaille","type":"Role","_key":"54472","_from":"12072","_to":"34925"} +{"$label":"ACTS_IN","name":"Grange","type":"Role","_key":"54254","_from":"12072","_to":"34832"} +{"$label":"ACTS_IN","name":"William Bludworth","type":"Role","_key":"53335","_from":"12072","_to":"34480"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"91829","_from":"12074","_to":"54170"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"15884","_from":"12086","_to":"12080"} +{"$label":"ACTS_IN","name":"Lehrer Olsen","type":"Role","_key":"15883","_from":"12085","_to":"12080"} +{"$label":"ACTS_IN","name":"Frits Gro\u00dfmutter","type":"Role","_key":"15882","_from":"12084","_to":"12080"} +{"$label":"ACTS_IN","name":"Frits Johansen","type":"Role","_key":"15880","_from":"12083","_to":"12080"} +{"$label":"ACTS_IN","name":"Iben","type":"Role","_key":"15879","_from":"12082","_to":"12080"} +{"$label":"DIRECTED","_key":"15874","_from":"12081","_to":"12080"} +{"$label":"DIRECTED","_key":"106668","_from":"12081","_to":"62860"} +{"$label":"DIRECTED","_key":"106482","_from":"12081","_to":"62730"} +{"$label":"DIRECTED","_key":"104562","_from":"12081","_to":"61500"} +{"$label":"ACTS_IN","name":"Natalia","type":"Role","_key":"28846","_from":"12082","_to":"20617"} +{"$label":"ACTS_IN","name":"Katrines Far","type":"Role","_key":"106665","_from":"12085","_to":"62849"} +{"$label":"ACTS_IN","name":"John Erhardsen","type":"Role","_key":"106492","_from":"12086","_to":"62738"} +{"$label":"ACTS_IN","name":"Monsieur Trajet","type":"Role","_key":"15891","_from":"12093","_to":"12087"} +{"$label":"ACTS_IN","name":"Madame Trajet","type":"Role","_key":"15890","_from":"12092","_to":"12087"} +{"$label":"ACTS_IN","name":"Madame Troublette","type":"Role","_key":"15889","_from":"12091","_to":"12087"} +{"$label":"ACTS_IN","name":"Monsieur Troublette","type":"Role","_key":"15888","_from":"12090","_to":"12087"} +{"$label":"ACTS_IN","name":"C\u00e9cilia","type":"Role","_key":"15887","_from":"12089","_to":"12087"} +{"$label":"ACTS_IN","name":"Juliette Troublette","type":"Role","_key":"15886","_from":"12088","_to":"12087"} +{"$label":"ACTS_IN","name":"Mme Delassus","type":"Role","_key":"92129","_from":"12089","_to":"54359"} +{"$label":"ACTS_IN","name":"Nathalie Poussin","type":"Role","_key":"49251","_from":"12089","_to":"32254"} +{"$label":"ACTS_IN","name":"Jean-Guy Lecointre","type":"Role","_key":"102845","_from":"12090","_to":"60498"} +{"$label":"ACTS_IN","name":"Blair","type":"Role","_key":"15900","_from":"12100","_to":"12094"} +{"$label":"ACTS_IN","name":"Leslie Murdock","type":"Role","_key":"15899","_from":"12099","_to":"12094"} +{"$label":"ACTS_IN","name":"Merle Davis","type":"Role","_key":"15898","_from":"12098","_to":"12094"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15897","_from":"12097","_to":"12094"} +{"$label":"ACTS_IN","name":"Lt. Breez","type":"Role","_key":"15895","_from":"12096","_to":"12094"} +{"$label":"DIRECTED","_key":"15893","_from":"12095","_to":"12094"} +{"$label":"DIRECTED","_key":"27251","_from":"12095","_to":"19597"} +{"$label":"ACTS_IN","name":"Policeman Outside Irwin & Ray's Garage","type":"Role","_key":"70830","_from":"12096","_to":"43041"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"25682","_from":"12096","_to":"18485"} +{"$label":"ACTS_IN","name":"Sgt. Duquesne","type":"Role","_key":"95027","_from":"12097","_to":"55943"} +{"$label":"ACTS_IN","name":"Cutter Murdock","type":"Role","_key":"24718","_from":"12097","_to":"17880"} +{"$label":"DIRECTED","_key":"24721","_from":"12097","_to":"17880"} +{"$label":"ACTS_IN","name":"Christy Smith","type":"Role","_key":"121748","_from":"12098","_to":"71524"} +{"$label":"ACTS_IN","name":"Hotel Bar Patron","type":"Role","_key":"70292","_from":"12099","_to":"42822"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"15909","_from":"12108","_to":"12101"} +{"$label":"ACTS_IN","name":"Chris Lavery","type":"Role","_key":"15908","_from":"12107","_to":"12101"} +{"$label":"ACTS_IN","name":"Mildreed Haveland","type":"Role","_key":"15907","_from":"12106","_to":"12101"} +{"$label":"ACTS_IN","name":"Capt. Kane","type":"Role","_key":"15905","_from":"12105","_to":"12101"} +{"$label":"ACTS_IN","name":"Lt. DeGarmot","type":"Role","_key":"15904","_from":"12104","_to":"12101"} +{"$label":"ACTS_IN","name":"Adrienne Fromsett","type":"Role","_key":"15903","_from":"12103","_to":"12101"} +{"$label":"ACTS_IN","name":"Philip Marlowe","type":"Role","_key":"15902","_from":"12102","_to":"12101"} +{"$label":"DIRECTED","_key":"15901","_from":"12102","_to":"12101"} +{"$label":"DIRECTED","_key":"117869","_from":"12102","_to":"69289"} +{"$label":"ACTS_IN","name":"Lucky Gagin","type":"Role","_key":"117860","_from":"12102","_to":"69289"} +{"$label":"ACTS_IN","name":"Larry Belmont","type":"Role","_key":"29649","_from":"12102","_to":"20986"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"111586","_from":"12103","_to":"65881"} +{"$label":"ACTS_IN","name":"Police Lt. Donald Kendall","type":"Role","_key":"121749","_from":"12104","_to":"71524"} +{"$label":"ACTS_IN","name":"Rob McLaughlin","type":"Role","_key":"118347","_from":"12104","_to":"69573"} +{"$label":"ACTS_IN","name":"Dr. James Vance","type":"Role","_key":"68011","_from":"12104","_to":"41786"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"36076","_from":"12104","_to":"24486"} +{"$label":"ACTS_IN","name":"Jiggs Taylor","type":"Role","_key":"111598","_from":"12105","_to":"65883"} +{"$label":"ACTS_IN","name":"Comdr. DeVriess","type":"Role","_key":"61450","_from":"12105","_to":"38765"} +{"$label":"ACTS_IN","name":"Janet Thayar","type":"Role","_key":"101013","_from":"12106","_to":"59526"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"88786","_from":"12106","_to":"52605"} +{"$label":"DIRECTED","_key":"15910","_from":"12110","_to":"12109"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"15913","_from":"12113","_to":"12111"} +{"$label":"DIRECTED","_key":"15911","_from":"12112","_to":"12111"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"15925","_from":"12117","_to":"12115"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"15924","_from":"12116","_to":"12115"} +{"$label":"ACTS_IN","name":"Young Fenix","type":"Role","_key":"119321","_from":"12116","_to":"70107"} +{"$label":"ACTS_IN","name":"Fred Beifus","type":"Role","_key":"15937","_from":"12127","_to":"12118"} +{"$label":"ACTS_IN","name":"Winslow Wong","type":"Role","_key":"15936","_from":"12126","_to":"12118"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"15935","_from":"12125","_to":"12118"} +{"$label":"ACTS_IN","name":"Grant W. Hicks","type":"Role","_key":"15934","_from":"12124","_to":"12118"} +{"$label":"ACTS_IN","name":"Sonny Steelgrave","type":"Role","_key":"15933","_from":"12123","_to":"12118"} +{"$label":"ACTS_IN","name":"Orfamay Quest","type":"Role","_key":"15931","_from":"12122","_to":"12118"} +{"$label":"ACTS_IN","name":"Lt. Christy French","type":"Role","_key":"15929","_from":"12121","_to":"12118"} +{"$label":"ACTS_IN","name":"Mavis Wald","type":"Role","_key":"15928","_from":"12120","_to":"12118"} +{"$label":"DIRECTED","_key":"15926","_from":"12119","_to":"12118"} +{"$label":"DIRECTED","_key":"49945","_from":"12119","_to":"32693"} +{"$label":"ACTS_IN","name":"Ann Barrett","type":"Role","_key":"107882","_from":"12120","_to":"63712"} +{"$label":"ACTS_IN","name":"la femme","type":"Role","_key":"31763","_from":"12120","_to":"22162"} +{"$label":"ACTS_IN","name":"Charles Bromley","type":"Role","_key":"101456","_from":"12121","_to":"59719"} +{"$label":"ACTS_IN","name":"Major General Colt","type":"Role","_key":"70902","_from":"12121","_to":"43079"} +{"$label":"ACTS_IN","name":"Marty O'Reilly","type":"Role","_key":"22267","_from":"12121","_to":"16204"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"116280","_from":"12122","_to":"68456"} +{"$label":"ACTS_IN","name":"Mrs. Mancini","type":"Role","_key":"91922","_from":"12122","_to":"54230"} +{"$label":"ACTS_IN","name":"Corrie","type":"Role","_key":"40510","_from":"12122","_to":"27278"} +{"$label":"ACTS_IN","name":"Vince Bradley","type":"Role","_key":"50677","_from":"12123","_to":"33081"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"60677","_from":"12124","_to":"38311"} +{"$label":"ACTS_IN","name":"Emerson","type":"Role","_key":"91376","_from":"12125","_to":"53887"} +{"$label":"ACTS_IN","name":"Billy Lo","type":"Role","_key":"93946","_from":"12126","_to":"55322"} +{"$label":"ACTS_IN","name":"Cheng Chao-an","type":"Role","_key":"89763","_from":"12126","_to":"53130"} +{"$label":"ACTS_IN","name":"Chen Zhen","type":"Role","_key":"71718","_from":"12126","_to":"43415"} +{"$label":"ACTS_IN","name":"Tang Lung (a.k.a. Dragon)","type":"Role","_key":"54019","_from":"12126","_to":"34752"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"54014","_from":"12126","_to":"34748"} +{"$label":"DIRECTED","_key":"54018","_from":"12126","_to":"34752"} +{"$label":"ACTS_IN","name":"Carl Donahue","type":"Role","_key":"118478","_from":"12127","_to":"69646"} +{"$label":"ACTS_IN","name":"Sgt. Keller","type":"Role","_key":"104697","_from":"12127","_to":"61589"} +{"$label":"ACTS_IN","name":"Older Cop","type":"Role","_key":"69001","_from":"12127","_to":"42233"} +{"$label":"ACTS_IN","name":"Captain Patrick Hendry","type":"Role","_key":"65782","_from":"12127","_to":"40713"} +{"$label":"ACTS_IN","name":"Sgt. Cleehan","type":"Role","_key":"35056","_from":"12127","_to":"23910"} +{"$label":"ACTS_IN","name":"Agent Frank Cole","type":"Role","_key":"34817","_from":"12127","_to":"23787"} +{"$label":"ACTS_IN","name":"Bill Crompton","type":"Role","_key":"16808","_from":"12127","_to":"12660"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"15952","_from":"12138","_to":"12128"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"15951","_from":"12137","_to":"12128"} +{"$label":"ACTS_IN","name":"Jeffe","type":"Role","_key":"15950","_from":"12136","_to":"12128"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"15949","_from":"12135","_to":"12128"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"15948","_from":"12134","_to":"12128"} +{"$label":"ACTS_IN","name":"Jo Ann Eggenweiler","type":"Role","_key":"15947","_from":"12133","_to":"12128"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"15945","_from":"12132","_to":"12128"} +{"$label":"ACTS_IN","name":"Terry Lennox","type":"Role","_key":"15944","_from":"12131","_to":"12128"} +{"$label":"ACTS_IN","name":"Marty Augustine","type":"Role","_key":"15942","_from":"12130","_to":"12128"} +{"$label":"ACTS_IN","name":"Eileen Wade","type":"Role","_key":"15940","_from":"12129","_to":"12128"} +{"$label":"ACTS_IN","name":"Malia","type":"Role","_key":"97679","_from":"12129","_to":"57516"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"23387","_from":"12129","_to":"16947"} +{"$label":"DIRECTED","_key":"118816","_from":"12130","_to":"69851"} +{"$label":"DIRECTED","_key":"108745","_from":"12130","_to":"64283"} +{"$label":"DIRECTED","_key":"104981","_from":"12130","_to":"61763"} +{"$label":"DIRECTED","_key":"72156","_from":"12130","_to":"43611"} +{"$label":"DIRECTED","_key":"40516","_from":"12130","_to":"27278"} +{"$label":"DIRECTED","_key":"18619","_from":"12130","_to":"13782"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"55666","_from":"12130","_to":"35434"} +{"$label":"ACTS_IN","name":"Det. William Henry Blore","type":"Role","_key":"34513","_from":"12132","_to":"23628"} +{"$label":"ACTS_IN","name":"Barok","type":"Role","_key":"35428","_from":"12136","_to":"24102"} +{"$label":"ACTS_IN","name":"Lieutenant Riccardo Andrade","type":"Role","_key":"34480","_from":"12136","_to":"23608"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"15964","_from":"12143","_to":"12139"} +{"$label":"ACTS_IN","name":"Muffy Blackstone","type":"Role","_key":"15962","_from":"12142","_to":"12139"} +{"$label":"ACTS_IN","name":"Lipschultz","type":"Role","_key":"15961","_from":"12141","_to":"12139"} +{"$label":"DIRECTED","_key":"15955","_from":"12140","_to":"12139"} +{"$label":"DIRECTED","_key":"119789","_from":"12140","_to":"70340"} +{"$label":"DIRECTED","_key":"115243","_from":"12140","_to":"67853"} +{"$label":"DIRECTED","_key":"67387","_from":"12140","_to":"41519"} +{"$label":"DIRECTED","_key":"36452","_from":"12140","_to":"24729"} +{"$label":"DIRECTED","_key":"17518","_from":"12140","_to":"13100"} +{"$label":"ACTS_IN","name":"Irv","type":"Role","_key":"115000","_from":"12141","_to":"67722"} +{"$label":"ACTS_IN","name":"Israeli Colonel","type":"Role","_key":"67761","_from":"12141","_to":"41653"} +{"$label":"ACTS_IN","name":"Christy Masters","type":"Role","_key":"55017","_from":"12142","_to":"35158"} +{"$label":"ACTS_IN","name":"Scarpelli","type":"Role","_key":"71027","_from":"12143","_to":"43134"} +{"$label":"ACTS_IN","name":"49er Six","type":"Role","_key":"61372","_from":"12143","_to":"38724"} +{"$label":"ACTS_IN","name":"General Singh","type":"Role","_key":"15969","_from":"12148","_to":"12144"} +{"$label":"ACTS_IN","name":"Naryan Apte","type":"Role","_key":"15967","_from":"12147","_to":"12144"} +{"$label":"ACTS_IN","name":"Rani Metha","type":"Role","_key":"15966","_from":"12146","_to":"12144"} +{"$label":"DIRECTED","_key":"15965","_from":"12145","_to":"12144"} +{"$label":"DIRECTED","_key":"68002","_from":"12145","_to":"41786"} +{"$label":"DIRECTED","_key":"29453","_from":"12145","_to":"20892"} +{"$label":"DIRECTED","_key":"25287","_from":"12145","_to":"18230"} +{"$label":"DIRECTED","_key":"17736","_from":"12145","_to":"13233"} +{"$label":"ACTS_IN","name":"MSM Tom Pugh","type":"Role","_key":"108492","_from":"12148","_to":"64127"} +{"$label":"ACTS_IN","name":"Air Vice-Marshal Davis","type":"Role","_key":"106341","_from":"12148","_to":"62650"} +{"$label":"ACTS_IN","name":"Inspector Mendel","type":"Role","_key":"101661","_from":"12148","_to":"59833"} +{"$label":"ACTS_IN","name":"Assistant Commissioner","type":"Role","_key":"71114","_from":"12148","_to":"43170"} +{"$label":"ACTS_IN","name":"Senior civil servant","type":"Role","_key":"70013","_from":"12148","_to":"42700"} +{"$label":"ACTS_IN","name":"Stubbs","type":"Role","_key":"62683","_from":"12148","_to":"39417"} +{"$label":"ACTS_IN","name":"Mr. Besserman","type":"Role","_key":"15981","_from":"12153","_to":"12149"} +{"$label":"ACTS_IN","name":"Little Michael Kaufman","type":"Role","_key":"15980","_from":"12152","_to":"12149"} +{"$label":"ACTS_IN","name":"Janice Kaufman","type":"Role","_key":"15979","_from":"12151","_to":"12149"} +{"$label":"ACTS_IN","name":"Jack Burns","type":"Role","_key":"15976","_from":"12150","_to":"12149"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"15993","_from":"12160","_to":"12154"} +{"$label":"ACTS_IN","name":"Sirak","type":"Role","_key":"15991","_from":"12159","_to":"12154"} +{"$label":"ACTS_IN","name":"Com, Tom Franklin","type":"Role","_key":"15990","_from":"12158","_to":"12154"} +{"$label":"ACTS_IN","name":"Lt. Jim Porter","type":"Role","_key":"15989","_from":"12157","_to":"12154"} +{"$label":"ACTS_IN","name":"Tor","type":"Role","_key":"15988","_from":"12156","_to":"12154"} +{"$label":"DIRECTED","_key":"15983","_from":"12155","_to":"12154"} +{"$label":"ACTS_IN","name":"Anchorman","type":"Role","_key":"93133","_from":"12158","_to":"54874"} +{"$label":"ACTS_IN","name":"Christopher Amoroso","type":"Role","_key":"16015","_from":"12173","_to":"12161"} +{"$label":"ACTS_IN","name":"Antonio Rodrigues","type":"Role","_key":"16014","_from":"12172","_to":"12161"} +{"$label":"ACTS_IN","name":"Caitlin McLoughlin","type":"Role","_key":"16013","_from":"12171","_to":"12161"} +{"$label":"ACTS_IN","name":"Erin McLoughlin","type":"Role","_key":"16012","_from":"12170","_to":"12161"} +{"$label":"ACTS_IN","name":"JJ McLoughlin","type":"Role","_key":"16011","_from":"12169","_to":"12161"} +{"$label":"ACTS_IN","name":"Olivia Jimeno","type":"Role","_key":"16009","_from":"12168","_to":"12161"} +{"$label":"ACTS_IN","name":"Mother in Hospital with Donna","type":"Role","_key":"16008","_from":"12167","_to":"12161"} +{"$label":"ACTS_IN","name":"Paddy McGee","type":"Role","_key":"16007","_from":"12166","_to":"12161"} +{"$label":"ACTS_IN","name":"Scott Strauss","type":"Role","_key":"16005","_from":"12165","_to":"12161"} +{"$label":"ACTS_IN","name":"Pat McLoughlin","type":"Role","_key":"16004","_from":"12164","_to":"12161"} +{"$label":"ACTS_IN","name":"Allison's Father","type":"Role","_key":"16003","_from":"12163","_to":"12161"} +{"$label":"ACTS_IN","name":"Allison's Mother","type":"Role","_key":"16002","_from":"12162","_to":"12161"} +{"$label":"ACTS_IN","name":"Dean Whooly","type":"Role","_key":"58844","_from":"12164","_to":"37157"} +{"$label":"ACTS_IN","name":"Lewis Smythe","type":"Role","_key":"111435","_from":"12165","_to":"65798"} +{"$label":"ACTS_IN","name":"Ritchie","type":"Role","_key":"111307","_from":"12165","_to":"65734"} +{"$label":"ACTS_IN","name":"XIII","type":"Role","_key":"100847","_from":"12165","_to":"59455"} +{"$label":"ACTS_IN","name":"Cecil","type":"Role","_key":"98984","_from":"12165","_to":"58316"} +{"$label":"ACTS_IN","name":"Reilly","type":"Role","_key":"98340","_from":"12165","_to":"57917"} +{"$label":"ACTS_IN","name":"P.K. Age 18","type":"Role","_key":"97024","_from":"12165","_to":"57064"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"93439","_from":"12165","_to":"55020"} +{"$label":"ACTS_IN","name":"Wade Porter","type":"Role","_key":"92023","_from":"12165","_to":"54296"} +{"$label":"ACTS_IN","name":"Dale Massie","type":"Role","_key":"91402","_from":"12165","_to":"53909"} +{"$label":"ACTS_IN","name":"Stuart Sutcliffe","type":"Role","_key":"90744","_from":"12165","_to":"53557"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"90389","_from":"12165","_to":"53411"} +{"$label":"ACTS_IN","name":"Richard Burke","type":"Role","_key":"88263","_from":"12165","_to":"52358"} +{"$label":"ACTS_IN","name":"Mike Pucci","type":"Role","_key":"65077","_from":"12165","_to":"40431"} +{"$label":"ACTS_IN","name":"Clayton Mayfield","type":"Role","_key":"58097","_from":"12165","_to":"36758"} +{"$label":"ACTS_IN","name":"Detective Mike Reilly","type":"Role","_key":"54577","_from":"12165","_to":"34969"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"45139","_from":"12165","_to":"29955"} +{"$label":"ACTS_IN","name":"Baseball Umpire","type":"Role","_key":"103197","_from":"12166","_to":"60693"} +{"$label":"ACTS_IN","name":"Dr. Judith Franklin","type":"Role","_key":"110779","_from":"12167","_to":"65435"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"105381","_from":"12167","_to":"61998"} +{"$label":"ACTS_IN","name":"Platoon Sgt. Fanning (Burton's secretary)","type":"Role","_key":"100267","_from":"12167","_to":"59133"} +{"$label":"ACTS_IN","name":"Mrs. Miller","type":"Role","_key":"99807","_from":"12167","_to":"58877"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"99637","_from":"12167","_to":"58740"} +{"$label":"ACTS_IN","name":"Dr. Charlene Barton","type":"Role","_key":"99549","_from":"12167","_to":"58686"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"60074","_from":"12167","_to":"37905"} +{"$label":"ACTS_IN","name":"Gorden","type":"Role","_key":"18335","_from":"12167","_to":"13602"} +{"$label":"ACTS_IN","name":"Lucinda","type":"Role","_key":"90461","_from":"12170","_to":"53436"} +{"$label":"ACTS_IN","name":"Al Capone","type":"Role","_key":"115896","_from":"12173","_to":"68230"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"95649","_from":"12173","_to":"56251"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"69829","_from":"12173","_to":"42613"} +{"$label":"ACTS_IN","name":"herself (landlady)","type":"Role","_key":"16024","_from":"12181","_to":"12174"} +{"$label":"ACTS_IN","name":"herself (neighbor)","type":"Role","_key":"16023","_from":"12180","_to":"12174"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"16022","_from":"12179","_to":"12174"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"16021","_from":"12178","_to":"12174"} +{"$label":"ACTS_IN","name":"Henry Darger (voice)","type":"Role","_key":"16019","_from":"12177","_to":"12174"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16018","_from":"12176","_to":"12174"} +{"$label":"DIRECTED","_key":"16017","_from":"12175","_to":"12174"} +{"$label":"DIRECTED","_key":"99046","_from":"12175","_to":"58344"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"55644","_from":"12177","_to":"35428"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"47394","_from":"12177","_to":"31218"} +{"$label":"ACTS_IN","name":"Frau Bertelsmann","type":"Role","_key":"16035","_from":"12191","_to":"12182"} +{"$label":"ACTS_IN","name":"Frau Kirsch","type":"Role","_key":"16034","_from":"12190","_to":"12182"} +{"$label":"ACTS_IN","name":"Frau Rotter","type":"Role","_key":"16033","_from":"12189","_to":"12182"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"16032","_from":"12188","_to":"12182"} +{"$label":"ACTS_IN","name":"Frau Schulze","type":"Role","_key":"16030","_from":"12187","_to":"12182"} +{"$label":"ACTS_IN","name":"Frau R\u00f6sgen","type":"Role","_key":"16029","_from":"12186","_to":"12182"} +{"$label":"ACTS_IN","name":"Frantzen","type":"Role","_key":"16027","_from":"12185","_to":"12182"} +{"$label":"DIRECTED","_key":"16026","_from":"12184","_to":"12182"} +{"$label":"DIRECTED","_key":"16025","_from":"12183","_to":"12182"} +{"$label":"DIRECTED","_key":"40365","_from":"12183","_to":"27226"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"40012","_from":"12185","_to":"27017"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38234","_from":"12185","_to":"25818"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42263","_from":"12186","_to":"28297"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"32767","_from":"12186","_to":"22749"} +{"$label":"ACTS_IN","name":"Hilde Giesing","type":"Role","_key":"30425","_from":"12188","_to":"21382"} +{"$label":"ACTS_IN","name":"Martina Holler","type":"Role","_key":"24298","_from":"12189","_to":"17598"} +{"$label":"ACTS_IN","name":"Charlotte Hoffmann (alt)","type":"Role","_key":"51128","_from":"12190","_to":"33353"} +{"$label":"ACTS_IN","name":"Gustl","type":"Role","_key":"44634","_from":"12190","_to":"29701"} +{"$label":"ACTS_IN","name":"Donna Lucia d` Alvadorez","type":"Role","_key":"41092","_from":"12190","_to":"27647"} +{"$label":"ACTS_IN","name":"Elisa","type":"Role","_key":"23800","_from":"12190","_to":"17255"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"44604","_from":"12191","_to":"29680"} +{"$label":"ACTS_IN","name":"Emmy","type":"Role","_key":"44563","_from":"12191","_to":"29666"} +{"$label":"ACTS_IN","name":"Charlotta Ramirez","type":"Role","_key":"41058","_from":"12191","_to":"27618"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"16038","_from":"12194","_to":"12192"} +{"$label":"DIRECTED","_key":"16036","_from":"12193","_to":"12192"} +{"$label":"DIRECTED","_key":"28010","_from":"12193","_to":"20085"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"70955","_from":"12194","_to":"43101"} +{"$label":"ACTS_IN","name":"Maria Marcello","type":"Role","_key":"35486","_from":"12194","_to":"24135"} +{"$label":"ACTS_IN","name":"Carla Vesari","type":"Role","_key":"34205","_from":"12194","_to":"23489"} +{"$label":"ACTS_IN","name":"Evelyn Lake","type":"Role","_key":"28586","_from":"12194","_to":"20432"} +{"$label":"ACTS_IN","name":"Hot Rod\/Rodimus Prime (voice)","type":"Role","_key":"16049","_from":"12201","_to":"12195"} +{"$label":"ACTS_IN","name":"Arcee (voice)","type":"Role","_key":"16047","_from":"12200","_to":"12195"} +{"$label":"ACTS_IN","name":"Grimlock (voice)","type":"Role","_key":"16046","_from":"12199","_to":"12195"} +{"$label":"ACTS_IN","name":"Prowl\/Scrapper\/Swoop\/Junkion (voice)","type":"Role","_key":"16045","_from":"12198","_to":"12195"} +{"$label":"ACTS_IN","name":"Astrotrain (voice)","type":"Role","_key":"16044","_from":"12197","_to":"12195"} +{"$label":"DIRECTED","_key":"16042","_from":"12196","_to":"12195"} +{"$label":"ACTS_IN","name":"Wetsuit","type":"Role","_key":"112183","_from":"12197","_to":"66249"} +{"$label":"ACTS_IN","name":"Herb Woodley ( Voice )","type":"Role","_key":"29640","_from":"12197","_to":"20979"} +{"$label":"ACTS_IN","name":"Duke \/ Xamot \/ Blowtorch \/ Lift Ticket","type":"Role","_key":"112184","_from":"12198","_to":"66249"} +{"$label":"ACTS_IN","name":"Charles 'Chaz' Finster Sr (voice)","type":"Role","_key":"100324","_from":"12198","_to":"59151"} +{"$label":"ACTS_IN","name":"Duncan MacGubbin \/ Mcintyre","type":"Role","_key":"91893","_from":"12198","_to":"54212"} +{"$label":"ACTS_IN","name":"John Cadisky","type":"Role","_key":"38649","_from":"12198","_to":"26108"} +{"$label":"ACTS_IN","name":"Dr. Frankenstein ( voice )","type":"Role","_key":"26201","_from":"12198","_to":"18824"} +{"$label":"ACTS_IN","name":"Motorviper","type":"Role","_key":"112185","_from":"12199","_to":"66249"} +{"$label":"ACTS_IN","name":"TV Announcer (voice)","type":"Role","_key":"105629","_from":"12199","_to":"62173"} +{"$label":"ACTS_IN","name":"Odie (voice)","type":"Role","_key":"93565","_from":"12199","_to":"55099"} +{"$label":"ACTS_IN","name":"Eric Bryce","type":"Role","_key":"119673","_from":"12201","_to":"70289"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"107099","_from":"12201","_to":"63150"} +{"$label":"ACTS_IN","name":"Jimmie Wing","type":"Role","_key":"95351","_from":"12201","_to":"56098"} +{"$label":"ACTS_IN","name":"Alec Newbary","type":"Role","_key":"70648","_from":"12201","_to":"42993"} +{"$label":"ACTS_IN","name":"Judd Nelson","type":"Role","_key":"51134","_from":"12201","_to":"33354"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"20139","_from":"12201","_to":"14786"} +{"$label":"ACTS_IN","name":"John Bender","type":"Role","_key":"18381","_from":"12201","_to":"13632"} +{"$label":"ACTS_IN","name":"Judy Witwicky","type":"Role","_key":"16066","_from":"12209","_to":"12202"} +{"$label":"ACTS_IN","name":"Tom Banacheck","type":"Role","_key":"16065","_from":"12208","_to":"12202"} +{"$label":"ACTS_IN","name":"Transformers (voice)","type":"Role","_key":"16061","_from":"12207","_to":"12202"} +{"$label":"ACTS_IN","name":"Optimus Prime (voice)","type":"Role","_key":"16060","_from":"12206","_to":"12202"} +{"$label":"ACTS_IN","name":"Maggie Madsen","type":"Role","_key":"16055","_from":"12205","_to":"12202"} +{"$label":"ACTS_IN","name":"Mikaela Banes","type":"Role","_key":"16054","_from":"12204","_to":"12202"} +{"$label":"ACTS_IN","name":"Captain Lennox","type":"Role","_key":"16053","_from":"12203","_to":"12202"} +{"$label":"ACTS_IN","name":"Nick Beamon","type":"Role","_key":"94712","_from":"12203","_to":"55790"} +{"$label":"ACTS_IN","name":"Tad Hamilton","type":"Role","_key":"94700","_from":"12203","_to":"55789"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"56908","_from":"12203","_to":"36124"} +{"$label":"ACTS_IN","name":"Captain Lennox","type":"Role","_key":"49409","_from":"12203","_to":"32350"} +{"$label":"ACTS_IN","name":"Jennifer Check","type":"Role","_key":"121695","_from":"12204","_to":"71494"} +{"$label":"ACTS_IN","name":"Sophie Maes","type":"Role","_key":"92518","_from":"12204","_to":"54610"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"68066","_from":"12204","_to":"41819"} +{"$label":"ACTS_IN","name":"Mikaela Banes","type":"Role","_key":"49408","_from":"12204","_to":"32350"} +{"$label":"ACTS_IN","name":"Teri Elizabeth Richards","type":"Role","_key":"117917","_from":"12205","_to":"69318"} +{"$label":"ACTS_IN","name":"List Member #5","type":"Role","_key":"92068","_from":"12205","_to":"54312"} +{"$label":"ACTS_IN","name":"Jane Shaw","type":"Role","_key":"66456","_from":"12205","_to":"41089"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"59339","_from":"12205","_to":"37480"} +{"$label":"ACTS_IN","name":"Zandar \/ Nemesis Enforcer \/ Scientist","type":"Role","_key":"112191","_from":"12206","_to":"66249"} +{"$label":"ACTS_IN","name":"Eeyore","type":"Role","_key":"110641","_from":"12206","_to":"65362"} +{"$label":"ACTS_IN","name":"Eeyore (voice)","type":"Role","_key":"109076","_from":"12206","_to":"64447"} +{"$label":"ACTS_IN","name":"Eeyore (voice)","type":"Role","_key":"105320","_from":"12206","_to":"61972"} +{"$label":"ACTS_IN","name":"Eeyore (voice)","type":"Role","_key":"102396","_from":"12206","_to":"60253"} +{"$label":"ACTS_IN","name":"Eeyore (voice)","type":"Role","_key":"102308","_from":"12206","_to":"60199"} +{"$label":"ACTS_IN","name":"Eeyore (voice)","type":"Role","_key":"95863","_from":"12206","_to":"56376"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"104744","_from":"12208","_to":"61613"} +{"$label":"ACTS_IN","name":"General Matheson","type":"Role","_key":"42196","_from":"12208","_to":"28261"} +{"$label":"ACTS_IN","name":"Lawery Rodman","type":"Role","_key":"16404","_from":"12208","_to":"12416"} +{"$label":"ACTS_IN","name":"Judy Witwicky","type":"Role","_key":"49414","_from":"12209","_to":"32350"} +{"$label":"ACTS_IN","name":"Diener Gaston","type":"Role","_key":"16078","_from":"12215","_to":"12210"} +{"$label":"ACTS_IN","name":"Hotelmanager","type":"Role","_key":"16076","_from":"12214","_to":"12210"} +{"$label":"ACTS_IN","name":"Rakonin","type":"Role","_key":"16075","_from":"12213","_to":"12210"} +{"$label":"ACTS_IN","name":"Graf Leon D'Algout","type":"Role","_key":"16070","_from":"12212","_to":"12210"} +{"$label":"ACTS_IN","name":"Sonderbeauftragte Genossin Ninotschka Yakushova","type":"Role","_key":"16069","_from":"12211","_to":"12210"} +{"$label":"ACTS_IN","name":"Grete Rumfort","type":"Role","_key":"49935","_from":"12211","_to":"32690"} +{"$label":"ACTS_IN","name":"Lillie Sterling","type":"Role","_key":"36390","_from":"12211","_to":"24685"} +{"$label":"ACTS_IN","name":"Frank Burton Cheyne","type":"Role","_key":"109370","_from":"12212","_to":"64615"} +{"$label":"ACTS_IN","name":"Sen. Joseph Carmichael","type":"Role","_key":"95159","_from":"12212","_to":"55996"} +{"$label":"ACTS_IN","name":"Monsieur Zy","type":"Role","_key":"70110","_from":"12212","_to":"42742"} +{"$label":"ACTS_IN","name":"Benjamin Rand","type":"Role","_key":"62582","_from":"12212","_to":"39378"} +{"$label":"ACTS_IN","name":"The Dansker","type":"Role","_key":"37061","_from":"12212","_to":"25120"} +{"$label":"ACTS_IN","name":"Sandu","type":"Role","_key":"16088","_from":"12223","_to":"12216"} +{"$label":"ACTS_IN","name":"Dr. Josef Mengele","type":"Role","_key":"16087","_from":"12222","_to":"12216"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"16086","_from":"12221","_to":"12216"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"16085","_from":"12220","_to":"12216"} +{"$label":"ACTS_IN","name":"Zoya","type":"Role","_key":"16084","_from":"12219","_to":"12216"} +{"$label":"ACTS_IN","name":"Wala Mirga","type":"Role","_key":"16082","_from":"12218","_to":"12216"} +{"$label":"DIRECTED","_key":"16080","_from":"12217","_to":"12216"} +{"$label":"ACTS_IN","name":"Underground Guide","type":"Role","_key":"67468","_from":"12223","_to":"41556"} +{"$label":"DIRECTED","_key":"16091","_from":"12226","_to":"12224"} +{"$label":"ACTS_IN","name":"Liberator","type":"Role","_key":"16090","_from":"12226","_to":"12224"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"16089","_from":"12225","_to":"12224"} +{"$label":"ACTS_IN","name":"Jesse Morell","type":"Role","_key":"16098","_from":"12232","_to":"12227"} +{"$label":"ACTS_IN","name":"Sandy Mueller","type":"Role","_key":"16096","_from":"12231","_to":"12227"} +{"$label":"ACTS_IN","name":"Joachim Lenz","type":"Role","_key":"16095","_from":"12230","_to":"12227"} +{"$label":"ACTS_IN","name":"Dr. Lenz","type":"Role","_key":"16093","_from":"12229","_to":"12227"} +{"$label":"DIRECTED","_key":"16092","_from":"12228","_to":"12227"} +{"$label":"ACTS_IN","name":"Roy Bentley","type":"Role","_key":"71733","_from":"12229","_to":"43419"} +{"$label":"ACTS_IN","name":"Capt. Posen","type":"Role","_key":"40487","_from":"12229","_to":"27264"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"31875","_from":"12229","_to":"22236"} +{"$label":"ACTS_IN","name":"Simonson","type":"Role","_key":"17688","_from":"12229","_to":"13189"} +{"$label":"ACTS_IN","name":"Cop #2","type":"Role","_key":"97060","_from":"12231","_to":"57091"} +{"$label":"ACTS_IN","name":"Paul Baumer","type":"Role","_key":"66675","_from":"12231","_to":"41199"} +{"$label":"ACTS_IN","name":"William Denbrough","type":"Role","_key":"22656","_from":"12231","_to":"16433"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"42865","_from":"12232","_to":"28655"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"33271","_from":"12232","_to":"23045"} +{"$label":"ACTS_IN","name":"Mutter von Antonio","type":"Role","_key":"16105","_from":"12237","_to":"12233"} +{"$label":"ACTS_IN","name":"Ettore","type":"Role","_key":"16104","_from":"12236","_to":"12233"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"16103","_from":"12235","_to":"12233"} +{"$label":"ACTS_IN","name":"Mascha","type":"Role","_key":"16102","_from":"12234","_to":"12233"} +{"$label":"ACTS_IN","name":"Cole","type":"Role","_key":"16115","_from":"12246","_to":"12238"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"16113","_from":"12245","_to":"12238"} +{"$label":"ACTS_IN","name":"Dany de Choisis","type":"Role","_key":"16112","_from":"12244","_to":"12238"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"16111","_from":"12243","_to":"12238"} +{"$label":"ACTS_IN","name":"Evelyne Rosson","type":"Role","_key":"16110","_from":"12242","_to":"12238"} +{"$label":"ACTS_IN","name":"Bentley","type":"Role","_key":"16109","_from":"12241","_to":"12238"} +{"$label":"ACTS_IN","name":"Harry England","type":"Role","_key":"16108","_from":"12240","_to":"12238"} +{"$label":"DIRECTED","_key":"16106","_from":"12239","_to":"12238"} +{"$label":"DIRECTED","_key":"109416","_from":"12239","_to":"64642"} +{"$label":"DIRECTED","_key":"62458","_from":"12239","_to":"39337"} +{"$label":"DIRECTED","_key":"21242","_from":"12239","_to":"15553"} +{"$label":"ACTS_IN","name":"Hero","type":"Role","_key":"113878","_from":"12240","_to":"67081"} +{"$label":"ACTS_IN","name":"Cornelius Hackl","type":"Role","_key":"98223","_from":"12240","_to":"57864"} +{"$label":"ACTS_IN","name":"Alan Mac Intosh","type":"Role","_key":"48881","_from":"12243","_to":"32047"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33837","_from":"12243","_to":"23315"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33586","_from":"12243","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32810","_from":"12243","_to":"22779"} +{"$label":"ACTS_IN","name":"Betrunkener Terrorist","type":"Role","_key":"20728","_from":"12243","_to":"15149"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"31371","_from":"12245","_to":"21929"} +{"$label":"ACTS_IN","name":"Federico Hermil","type":"Role","_key":"30795","_from":"12245","_to":"21588"} +{"$label":"ACTS_IN","name":"Captain Teague","type":"Role","_key":"16123","_from":"12249","_to":"12247"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"16120","_from":"12248","_to":"12247"} +{"$label":"ACTS_IN","name":"Jackie Masters","type":"Role","_key":"50687","_from":"12248","_to":"33088"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"16133","_from":"12257","_to":"12250"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"16132","_from":"12256","_to":"12250"} +{"$label":"ACTS_IN","name":"Ginette","type":"Role","_key":"16131","_from":"12255","_to":"12250"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"16130","_from":"12254","_to":"12250"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"16129","_from":"12253","_to":"12250"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"16128","_from":"12252","_to":"12250"} +{"$label":"DIRECTED","_key":"16126","_from":"12251","_to":"12250"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"90149","_from":"12252","_to":"53304"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31582","_from":"12252","_to":"22058"} +{"$label":"ACTS_IN","name":"Commissaire Javert","type":"Role","_key":"30656","_from":"12252","_to":"21518"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"23050","_from":"12252","_to":"16714"} +{"$label":"ACTS_IN","name":"Dennis Pew","type":"Role","_key":"20721","_from":"12252","_to":"15149"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71992","_from":"12253","_to":"43537"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"39781","_from":"12254","_to":"26876"} +{"$label":"ACTS_IN","name":"Leila Smith","type":"Role","_key":"44143","_from":"12255","_to":"29420"} +{"$label":"ACTS_IN","name":"Cordet","type":"Role","_key":"30674","_from":"12256","_to":"21526"} +{"$label":"ACTS_IN","name":"Agathe Bordot","type":"Role","_key":"116858","_from":"12257","_to":"68795"} +{"$label":"ACTS_IN","name":"Julia Vandal","type":"Role","_key":"40241","_from":"12257","_to":"27158"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"33755","_from":"12257","_to":"23279"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"33601","_from":"12257","_to":"23212"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"30717","_from":"12257","_to":"21545"} +{"$label":"ACTS_IN","name":"Nelly","type":"Role","_key":"29756","_from":"12257","_to":"21066"} +{"$label":"ACTS_IN","name":"Lady Beltham","type":"Role","_key":"16142","_from":"12263","_to":"12258"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"16140","_from":"12262","_to":"12258"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"16139","_from":"12261","_to":"12258"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"16138","_from":"12260","_to":"12258"} +{"$label":"DIRECTED","_key":"16135","_from":"12259","_to":"12258"} +{"$label":"DIRECTED","_key":"71967","_from":"12259","_to":"43534"} +{"$label":"DIRECTED","_key":"20911","_from":"12259","_to":"15294"} +{"$label":"DIRECTED","_key":"16180","_from":"12259","_to":"12287"} +{"$label":"DIRECTED","_key":"16143","_from":"12259","_to":"12264"} +{"$label":"ACTS_IN","name":"Andromeda","type":"Role","_key":"117150","_from":"12260","_to":"68924"} +{"$label":"ACTS_IN","name":"Laurette Pic","type":"Role","_key":"92121","_from":"12260","_to":"54355"} +{"$label":"ACTS_IN","name":"Abigail Williams","type":"Role","_key":"30891","_from":"12260","_to":"21653"} +{"$label":"ACTS_IN","name":"Milady de Winter","type":"Role","_key":"29792","_from":"12260","_to":"21082"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"24879","_from":"12260","_to":"17986"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"16793","_from":"12260","_to":"12656"} +{"$label":"ACTS_IN","name":"Baronin","type":"Role","_key":"16384","_from":"12260","_to":"12400"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"16183","_from":"12260","_to":"12287"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"16146","_from":"12260","_to":"12264"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"16147","_from":"12261","_to":"12264"} +{"$label":"ACTS_IN","name":"un truand","type":"Role","_key":"34300","_from":"12262","_to":"23529"} +{"$label":"ACTS_IN","name":"Coudreau","type":"Role","_key":"32086","_from":"12262","_to":"22350"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"16186","_from":"12262","_to":"12287"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"16148","_from":"12262","_to":"12264"} +{"$label":"ACTS_IN","name":"Michou","type":"Role","_key":"16149","_from":"12265","_to":"12264"} +{"$label":"ACTS_IN","name":"L'auto-stoppeur","type":"Role","_key":"72732","_from":"12265","_to":"43822"} +{"$label":"ACTS_IN","name":"Didier de Tartas","type":"Role","_key":"21596","_from":"12265","_to":"15787"} +{"$label":"DIRECTED","_key":"16159","_from":"12271","_to":"12266"} +{"$label":"ACTS_IN","name":"Collette","type":"Role","_key":"16158","_from":"12270","_to":"12266"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"16157","_from":"12269","_to":"12266"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"16154","_from":"12268","_to":"12266"} +{"$label":"ACTS_IN","name":"Clyde Rawlins","type":"Role","_key":"16152","_from":"12267","_to":"12266"} +{"$label":"ACTS_IN","name":"Defense Secretary Callister","type":"Role","_key":"92105","_from":"12267","_to":"54348"} +{"$label":"ACTS_IN","name":"Ben Grimm","type":"Role","_key":"56208","_from":"12267","_to":"35722"} +{"$label":"ACTS_IN","name":"Ben Grimm \/ The Thing","type":"Role","_key":"17153","_from":"12267","_to":"12853"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108267","_from":"12268","_to":"63988"} +{"$label":"ACTS_IN","name":"Jack Adams","type":"Role","_key":"96713","_from":"12268","_to":"56883"} +{"$label":"ACTS_IN","name":"Father Francis","type":"Role","_key":"67378","_from":"12268","_to":"41517"} +{"$label":"ACTS_IN","name":"Richard Powell","type":"Role","_key":"59356","_from":"12268","_to":"37498"} +{"$label":"ACTS_IN","name":"1st Lt. Tom Pullings","type":"Role","_key":"50276","_from":"12268","_to":"32851"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"60203","_from":"12269","_to":"37980"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"59537","_from":"12269","_to":"37584"} +{"$label":"ACTS_IN","name":"Josie","type":"Role","_key":"31208","_from":"12269","_to":"21841"} +{"$label":"ACTS_IN","name":"Piper Cole","type":"Role","_key":"111455","_from":"12270","_to":"65807"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"43597","_from":"12270","_to":"29119"} +{"$label":"ACTS_IN","name":"Min Han","type":"Role","_key":"16174","_from":"12283","_to":"12272"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"16173","_from":"12282","_to":"12272"} +{"$label":"ACTS_IN","name":"Danny Bowman","type":"Role","_key":"16172","_from":"12281","_to":"12272"} +{"$label":"ACTS_IN","name":"Nick Bowman","type":"Role","_key":"16171","_from":"12280","_to":"12272"} +{"$label":"ACTS_IN","name":"Karen Father","type":"Role","_key":"16170","_from":"12279","_to":"12272"} +{"$label":"ACTS_IN","name":"Zabai","type":"Role","_key":"16169","_from":"12278","_to":"12272"} +{"$label":"ACTS_IN","name":"Zaw Win","type":"Role","_key":"16168","_from":"12277","_to":"12272"} +{"$label":"ACTS_IN","name":"Australian Doctor","type":"Role","_key":"16166","_from":"12276","_to":"12272"} +{"$label":"ACTS_IN","name":"San San, Hotel Desk Clerk","type":"Role","_key":"16165","_from":"12275","_to":"12272"} +{"$label":"ACTS_IN","name":"U Aung Ko","type":"Role","_key":"16163","_from":"12274","_to":"12272"} +{"$label":"DIRECTED","_key":"16160","_from":"12273","_to":"12272"} +{"$label":"DIRECTED","_key":"110360","_from":"12273","_to":"65211"} +{"$label":"DIRECTED","_key":"109694","_from":"12273","_to":"64785"} +{"$label":"DIRECTED","_key":"70874","_from":"12273","_to":"43071"} +{"$label":"DIRECTED","_key":"70470","_from":"12273","_to":"42897"} +{"$label":"DIRECTED","_key":"70438","_from":"12273","_to":"42880"} +{"$label":"DIRECTED","_key":"64946","_from":"12273","_to":"40375"} +{"$label":"DIRECTED","_key":"60654","_from":"12273","_to":"38296"} +{"$label":"DIRECTED","_key":"34787","_from":"12273","_to":"23775"} +{"$label":"DIRECTED","_key":"22018","_from":"12273","_to":"16070"} +{"$label":"ACTS_IN","name":"Brett Gregory","type":"Role","_key":"16179","_from":"12286","_to":"12284"} +{"$label":"DIRECTED","_key":"16175","_from":"12285","_to":"12284"} +{"$label":"DIRECTED","_key":"68325","_from":"12285","_to":"41937"} +{"$label":"DIRECTED","_key":"53038","_from":"12285","_to":"34339"} +{"$label":"DIRECTED","_key":"31594","_from":"12285","_to":"22064"} +{"$label":"DIRECTED","_key":"19776","_from":"12285","_to":"14606"} +{"$label":"ACTS_IN","name":"Lord Rashley","type":"Role","_key":"16187","_from":"12289","_to":"12287"} +{"$label":"ACTS_IN","name":"Lady Rashley","type":"Role","_key":"16184","_from":"12288","_to":"12287"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"71938","_from":"12288","_to":"43522"} +{"$label":"ACTS_IN","name":"Anne d'Autriche","type":"Role","_key":"29797","_from":"12288","_to":"21082"} +{"$label":"ACTS_IN","name":"Anne Duplessis","type":"Role","_key":"21223","_from":"12288","_to":"15537"} +{"$label":"ACTS_IN","name":"commissaire Lagache","type":"Role","_key":"31376","_from":"12289","_to":"21929"} +{"$label":"ACTS_IN","name":"Daniella Funnell","type":"Role","_key":"16193","_from":"12296","_to":"12290"} +{"$label":"ACTS_IN","name":"Mr. McClintock","type":"Role","_key":"16192","_from":"12295","_to":"12290"} +{"$label":"ACTS_IN","name":"Gina Blackwell","type":"Role","_key":"16191","_from":"12294","_to":"12290"} +{"$label":"ACTS_IN","name":"Charlie Howard","type":"Role","_key":"16190","_from":"12293","_to":"12290"} +{"$label":"ACTS_IN","name":"Lee Vaughan","type":"Role","_key":"16189","_from":"12292","_to":"12290"} +{"$label":"DIRECTED","_key":"16188","_from":"12291","_to":"12290"} +{"$label":"ACTS_IN","name":"Samantha Hunt","type":"Role","_key":"16202","_from":"12304","_to":"12297"} +{"$label":"ACTS_IN","name":"Gunner","type":"Role","_key":"16201","_from":"12303","_to":"12297"} +{"$label":"ACTS_IN","name":"Tony Gaudio","type":"Role","_key":"16200","_from":"12302","_to":"12297"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"16198","_from":"12301","_to":"12297"} +{"$label":"DIRECTED","_key":"16196","_from":"12300","_to":"12297"} +{"$label":"DIRECTED","_key":"16195","_from":"12299","_to":"12297"} +{"$label":"DIRECTED","_key":"16194","_from":"12298","_to":"12297"} +{"$label":"DIRECTED","_key":"91337","_from":"12300","_to":"53865"} +{"$label":"DIRECTED","_key":"60527","_from":"12300","_to":"38203"} +{"$label":"DIRECTED","_key":"38548","_from":"12300","_to":"26048"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"56863","_from":"12302","_to":"36099"} +{"$label":"ACTS_IN","name":"Goucho","type":"Role","_key":"36817","_from":"12302","_to":"24969"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"18838","_from":"12303","_to":"13912"} +{"$label":"ACTS_IN","name":"Agent Kate Jensen","type":"Role","_key":"59060","_from":"12304","_to":"37284"} +{"$label":"ACTS_IN","name":"Hoodlum","type":"Role","_key":"16219","_from":"12310","_to":"12305"} +{"$label":"ACTS_IN","name":"Frog-Eyed Woman","type":"Role","_key":"16217","_from":"12309","_to":"12305"} +{"$label":"ACTS_IN","name":"Road Person","type":"Role","_key":"16216","_from":"12308","_to":"12305"} +{"$label":"ACTS_IN","name":"Carnie Talker","type":"Role","_key":"16214","_from":"12307","_to":"12305"} +{"$label":"ACTS_IN","name":"Magazine Reporter at Mint 400","type":"Role","_key":"16210","_from":"12306","_to":"12305"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"121415","_from":"12306","_to":"71338"} +{"$label":"ACTS_IN","name":"President James Foster","type":"Role","_key":"102029","_from":"12306","_to":"60028"} +{"$label":"ACTS_IN","name":"Mr. Freddy Shoop","type":"Role","_key":"101370","_from":"12306","_to":"59674"} +{"$label":"ACTS_IN","name":"Sheriff Johnny Behan","type":"Role","_key":"88372","_from":"12306","_to":"52390"} +{"$label":"ACTS_IN","name":"Jay Austin","type":"Role","_key":"72363","_from":"12306","_to":"43698"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"62623","_from":"12306","_to":"39392"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"63249","_from":"12307","_to":"39652"} +{"$label":"ACTS_IN","name":"Bear Harrison","type":"Role","_key":"67092","_from":"12308","_to":"41408"} +{"$label":"ACTS_IN","name":"Carl Tippett","type":"Role","_key":"57446","_from":"12308","_to":"36416"} +{"$label":"ACTS_IN","name":"Clint Lammeraux","type":"Role","_key":"28157","_from":"12308","_to":"20177"} +{"$label":"ACTS_IN","name":"Laarta","type":"Role","_key":"55047","_from":"12309","_to":"35160"} +{"$label":"ACTS_IN","name":"Barnett Kale","type":"Role","_key":"109484","_from":"12310","_to":"64671"} +{"$label":"ACTS_IN","name":"Vince Barnes","type":"Role","_key":"71749","_from":"12310","_to":"43432"} +{"$label":"ACTS_IN","name":"Col. Ted Masters","type":"Role","_key":"67485","_from":"12310","_to":"41564"} +{"$label":"ACTS_IN","name":"Jack Deth","type":"Role","_key":"60536","_from":"12310","_to":"38203"} +{"$label":"ACTS_IN","name":"Charts","type":"Role","_key":"58677","_from":"12310","_to":"37064"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"38564","_from":"12310","_to":"26054"} +{"$label":"ACTS_IN","name":"Trooper Jack Deth","type":"Role","_key":"38549","_from":"12310","_to":"26048"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"25096","_from":"12310","_to":"18126"} +{"$label":"ACTS_IN","name":"Carhop","type":"Role","_key":"16225","_from":"12314","_to":"12311"} +{"$label":"ACTS_IN","name":"Tillie","type":"Role","_key":"16224","_from":"12313","_to":"12311"} +{"$label":"ACTS_IN","name":"Joanna Drayton","type":"Role","_key":"16223","_from":"12312","_to":"12311"} +{"$label":"ACTS_IN","name":"Gran Gran","type":"Role","_key":"61628","_from":"12312","_to":"38834"} +{"$label":"ACTS_IN","name":"Judge R. Thomas","type":"Role","_key":"118298","_from":"12313","_to":"69534"} +{"$label":"DIRECTED","_key":"16234","_from":"12317","_to":"12315"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"16233","_from":"12316","_to":"12315"} +{"$label":"DIRECTED","_key":"117953","_from":"12317","_to":"69331"} +{"$label":"DIRECTED","_key":"115983","_from":"12317","_to":"68304"} +{"$label":"DIRECTED","_key":"101881","_from":"12317","_to":"59964"} +{"$label":"DIRECTED","_key":"53538","_from":"12317","_to":"34556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16240","_from":"12324","_to":"12318"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16239","_from":"12323","_to":"12318"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16238","_from":"12322","_to":"12318"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16237","_from":"12321","_to":"12318"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"16236","_from":"12320","_to":"12318"} +{"$label":"DIRECTED","_key":"16235","_from":"12319","_to":"12318"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"49614","_from":"12320","_to":"32472"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"16246","_from":"12326","_to":"12325"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"16255","_from":"12329","_to":"12327"} +{"$label":"ACTS_IN","name":"Elijah Muhammad","type":"Role","_key":"16251","_from":"12328","_to":"12327"} +{"$label":"ACTS_IN","name":"Chukha-Trok","type":"Role","_key":"16267","_from":"12339","_to":"12330"} +{"$label":"ACTS_IN","name":"Mace Towani","type":"Role","_key":"16266","_from":"12338","_to":"12330"} +{"$label":"ACTS_IN","name":"Kainik","type":"Role","_key":"16265","_from":"12337","_to":"12330"} +{"$label":"ACTS_IN","name":"Tony Cox","type":"Role","_key":"16264","_from":"12336","_to":"12330"} +{"$label":"ACTS_IN","name":"Weechee","type":"Role","_key":"16263","_from":"12335","_to":"12330"} +{"$label":"ACTS_IN","name":"Jeremitt Towani","type":"Role","_key":"16261","_from":"12334","_to":"12330"} +{"$label":"ACTS_IN","name":"Deej","type":"Role","_key":"16260","_from":"12333","_to":"12330"} +{"$label":"ACTS_IN","name":"Cindel Towani","type":"Role","_key":"16258","_from":"12332","_to":"12330"} +{"$label":"DIRECTED","_key":"16257","_from":"12331","_to":"12330"} +{"$label":"ACTS_IN","name":"Cindel","type":"Role","_key":"62861","_from":"12332","_to":"39499"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"94057","_from":"12334","_to":"55385"} +{"$label":"ACTS_IN","name":"Det. Jim McLean","type":"Role","_key":"70257","_from":"12334","_to":"42814"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"45292","_from":"12334","_to":"30044"} +{"$label":"ACTS_IN","name":"Warning Cop","type":"Role","_key":"24768","_from":"12334","_to":"17908"} +{"$label":"ACTS_IN","name":"Idee","type":"Role","_key":"120206","_from":"12335","_to":"70592"} +{"$label":"ACTS_IN","name":"Valerie Vomit - Suit (voice)","type":"Role","_key":"100306","_from":"12335","_to":"59141"} +{"$label":"ACTS_IN","name":"Hooter","type":"Role","_key":"120205","_from":"12336","_to":"70592"} +{"$label":"ACTS_IN","name":"Mr. Parker","type":"Role","_key":"64742","_from":"12336","_to":"40300"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"61231","_from":"12336","_to":"38674"} +{"$label":"ACTS_IN","name":"Hitch","type":"Role","_key":"60282","_from":"12336","_to":"38015"} +{"$label":"ACTS_IN","name":"Bink","type":"Role","_key":"56390","_from":"12336","_to":"35829"} +{"$label":"ACTS_IN","name":"Panhandler","type":"Role","_key":"113212","_from":"12339","_to":"66707"} +{"$label":"ACTS_IN","name":"Ali Gator - Suit (voice)","type":"Role","_key":"100307","_from":"12339","_to":"59141"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"38697","_from":"12339","_to":"26139"} +{"$label":"ACTS_IN","name":"Johnny Lawrence","type":"Role","_key":"16278","_from":"12346","_to":"12340"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"16277","_from":"12345","_to":"12340"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"16276","_from":"12344","_to":"12340"} +{"$label":"ACTS_IN","name":"Dutch","type":"Role","_key":"16274","_from":"12343","_to":"12340"} +{"$label":"ACTS_IN","name":"Lucille LaRusso","type":"Role","_key":"16273","_from":"12342","_to":"12340"} +{"$label":"ACTS_IN","name":"Mr. Kesuke Miyagi","type":"Role","_key":"16272","_from":"12341","_to":"12340"} +{"$label":"ACTS_IN","name":"The Emperor","type":"Role","_key":"88980","_from":"12341","_to":"52708"} +{"$label":"ACTS_IN","name":"Sgt. Kesuke Miyagi","type":"Role","_key":"68688","_from":"12341","_to":"42093"} +{"$label":"ACTS_IN","name":"Jubal Early","type":"Role","_key":"66643","_from":"12341","_to":"41189"} +{"$label":"ACTS_IN","name":"Mr. Keisuke Miyagi","type":"Role","_key":"63673","_from":"12341","_to":"39827"} +{"$label":"ACTS_IN","name":"Kesuke Miyagi","type":"Role","_key":"51140","_from":"12341","_to":"33359"} +{"$label":"ACTS_IN","name":"Emperor Wang","type":"Role","_key":"36624","_from":"12341","_to":"24814"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"39258","_from":"12343","_to":"26549"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"93151","_from":"12346","_to":"54899"} +{"$label":"ACTS_IN","name":"Johnny Lawrence","type":"Role","_key":"51147","_from":"12346","_to":"33359"} +{"$label":"ACTS_IN","name":"Chief Valet","type":"Role","_key":"16294","_from":"12353","_to":"12347"} +{"$label":"ACTS_IN","name":"Maria Theresa","type":"Role","_key":"16292","_from":"12352","_to":"12347"} +{"$label":"ACTS_IN","name":"Marie Therese - 6 years","type":"Role","_key":"16290","_from":"12351","_to":"12347"} +{"$label":"ACTS_IN","name":"Duc de Choiseul","type":"Role","_key":"16289","_from":"12350","_to":"12347"} +{"$label":"ACTS_IN","name":"L\u00e9onard","type":"Role","_key":"16287","_from":"12349","_to":"12347"} +{"$label":"ACTS_IN","name":"Princesse Lamballe","type":"Role","_key":"16286","_from":"12348","_to":"12347"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"116554","_from":"12349","_to":"68608"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"114865","_from":"12349","_to":"67660"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"113364","_from":"12349","_to":"66778"} +{"$label":"ACTS_IN","name":"Jean-Paul Martoni","type":"Role","_key":"103159","_from":"12350","_to":"60680"} +{"$label":"ACTS_IN","name":"Le Kiosquier","type":"Role","_key":"64647","_from":"12350","_to":"40271"} +{"$label":"ACTS_IN","name":"L'\u00e9diteur","type":"Role","_key":"62250","_from":"12350","_to":"39206"} +{"$label":"ACTS_IN","name":"G\u00e9n\u00e9ral Edmond Bertineau","type":"Role","_key":"20487","_from":"12350","_to":"14980"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"72338","_from":"12352","_to":"43687"} +{"$label":"ACTS_IN","name":"Marianne (Le Marais)","type":"Role","_key":"19875","_from":"12352","_to":"14635"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"16627","_from":"12352","_to":"12559"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38050","_from":"12353","_to":"25743"} +{"$label":"ACTS_IN","name":"Leclere","type":"Role","_key":"34391","_from":"12353","_to":"23576"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me","type":"Role","_key":"30351","_from":"12353","_to":"21343"} +{"$label":"ACTS_IN","name":"Verleger","type":"Role","_key":"29871","_from":"12353","_to":"21124"} +{"$label":"ACTS_IN","name":"Kincaid","type":"Role","_key":"16310","_from":"12363","_to":"12354"} +{"$label":"ACTS_IN","name":"Dr. Krugman","type":"Role","_key":"16309","_from":"12362","_to":"12354"} +{"$label":"ACTS_IN","name":"Mr. Cimoli","type":"Role","_key":"16308","_from":"12361","_to":"12354"} +{"$label":"ACTS_IN","name":"Mr. Jackson","type":"Role","_key":"16307","_from":"12360","_to":"12354"} +{"$label":"ACTS_IN","name":"Sister Veronica","type":"Role","_key":"16305","_from":"12359","_to":"12354"} +{"$label":"ACTS_IN","name":"Charlotte Gingrich","type":"Role","_key":"16304","_from":"12358","_to":"12354"} +{"$label":"ACTS_IN","name":"O'Brien","type":"Role","_key":"16302","_from":"12357","_to":"12354"} +{"$label":"ACTS_IN","name":"Sandy Hinkle","type":"Role","_key":"16299","_from":"12356","_to":"12354"} +{"$label":"ACTS_IN","name":"Boom Boom Jackson","type":"Role","_key":"16298","_from":"12355","_to":"12354"} +{"$label":"ACTS_IN","name":"Mrs. Hannagan","type":"Role","_key":"39863","_from":"12358","_to":"26930"} +{"$label":"ACTS_IN","name":"Mr. Chapman","type":"Role","_key":"115425","_from":"12361","_to":"67964"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"22728","_from":"12361","_to":"16480"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"18809","_from":"12361","_to":"13896"} +{"$label":"ACTS_IN","name":"Parke Bernet Representative","type":"Role","_key":"23430","_from":"12362","_to":"16947"} +{"$label":"ACTS_IN","name":"Boris Gourdine","type":"Role","_key":"16316","_from":"12368","_to":"12364"} +{"$label":"ACTS_IN","name":"Zigeunerprinzessin","type":"Role","_key":"16315","_from":"12367","_to":"12364"} +{"$label":"ACTS_IN","name":"Mike Warner","type":"Role","_key":"16312","_from":"12366","_to":"12364"} +{"$label":"DIRECTED","_key":"16311","_from":"12365","_to":"12364"} +{"$label":"ACTS_IN","name":"Lemmy Caution","type":"Role","_key":"48070","_from":"12366","_to":"31604"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35951","_from":"12366","_to":"24415"} +{"$label":"ACTS_IN","name":"Mike Parker","type":"Role","_key":"16383","_from":"12366","_to":"12400"} +{"$label":"ACTS_IN","name":"Lisette","type":"Role","_key":"90137","_from":"12367","_to":"53300"} +{"$label":"DIRECTED","_key":"16326","_from":"12376","_to":"12369"} +{"$label":"ACTS_IN","name":"Orin","type":"Role","_key":"16325","_from":"12375","_to":"12369"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"16324","_from":"12374","_to":"12369"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"16323","_from":"12373","_to":"12369"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"16322","_from":"12372","_to":"12369"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"16320","_from":"12371","_to":"12369"} +{"$label":"ACTS_IN","name":"Sarah Norman","type":"Role","_key":"16317","_from":"12370","_to":"12369"} +{"$label":"ACTS_IN","name":"Lead","type":"Role","_key":"49284","_from":"12370","_to":"32275"} +{"$label":"ACTS_IN","name":"Emperor (voice)","type":"Role","_key":"16343","_from":"12383","_to":"12377"} +{"$label":"ACTS_IN","name":"Snow Creature","type":"Role","_key":"16342","_from":"12382","_to":"12377"} +{"$label":"ACTS_IN","name":"Chief Ugnaught","type":"Role","_key":"16341","_from":"12381","_to":"12377"} +{"$label":"ACTS_IN","name":"Lando's aide","type":"Role","_key":"16340","_from":"12380","_to":"12377"} +{"$label":"ACTS_IN","name":"Boba Fett","type":"Role","_key":"16339","_from":"12379","_to":"12377"} +{"$label":"DIRECTED","_key":"16327","_from":"12378","_to":"12377"} +{"$label":"DIRECTED","_key":"37784","_from":"12378","_to":"25621"} +{"$label":"ACTS_IN","name":"Captain Colton","type":"Role","_key":"16362","_from":"12379","_to":"12384"} +{"$label":"ACTS_IN","name":"Harbona","type":"Role","_key":"22830","_from":"12380","_to":"16558"} +{"$label":"ACTS_IN","name":"Mr. (Lionel) Barrett","type":"Role","_key":"107881","_from":"12383","_to":"63712"} +{"$label":"ACTS_IN","name":"Carlo Carlucci","type":"Role","_key":"90081","_from":"12383","_to":"53278"} +{"$label":"ACTS_IN","name":"Nikolai Rogozhin","type":"Role","_key":"36359","_from":"12383","_to":"24657"} +{"$label":"ACTS_IN","name":"Sergeant Andrews","type":"Role","_key":"16838","_from":"12383","_to":"12675"} +{"$label":"ACTS_IN","name":"Captain Antilles","type":"Role","_key":"16361","_from":"12386","_to":"12384"} +{"$label":"ACTS_IN","name":"Mas Amedda","type":"Role","_key":"16360","_from":"12385","_to":"12384"} +{"$label":"DIRECTED","_key":"109577","_from":"12385","_to":"64719"} +{"$label":"DIRECTED","_key":"71092","_from":"12385","_to":"43161"} +{"$label":"DIRECTED","_key":"16380","_from":"12399","_to":"12387"} +{"$label":"ACTS_IN","name":"Ignasi Sol\u00e9","type":"Role","_key":"16379","_from":"12398","_to":"12387"} +{"$label":"ACTS_IN","name":"Jordi Sol\u00e9","type":"Role","_key":"16378","_from":"12397","_to":"12387"} +{"$label":"ACTS_IN","name":"Otiol Sol\u00e9","type":"Role","_key":"16377","_from":"12396","_to":"12387"} +{"$label":"ACTS_IN","name":"Santi Soler (Petit)","type":"Role","_key":"16376","_from":"12395","_to":"12387"} +{"$label":"ACTS_IN","name":"Mer\u00e7ona Puig","type":"Role","_key":"16375","_from":"12394","_to":"12387"} +{"$label":"ACTS_IN","name":"Montse Puig","type":"Role","_key":"16374","_from":"12393","_to":"12387"} +{"$label":"ACTS_IN","name":"Carme Puig","type":"Role","_key":"16373","_from":"12392","_to":"12387"} +{"$label":"ACTS_IN","name":"Imma Puig","type":"Role","_key":"16372","_from":"12391","_to":"12387"} +{"$label":"ACTS_IN","name":"mare de Salvador","type":"Role","_key":"16371","_from":"12390","_to":"12387"} +{"$label":"ACTS_IN","name":"Margalida","type":"Role","_key":"16369","_from":"12389","_to":"12387"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"16367","_from":"12388","_to":"12387"} +{"$label":"ACTS_IN","name":"Jaime","type":"Role","_key":"119065","_from":"12388","_to":"69983"} +{"$label":"ACTS_IN","name":"Quim","type":"Role","_key":"101324","_from":"12388","_to":"59649"} +{"$label":"ACTS_IN","name":"Tom\u00e1s","type":"Role","_key":"66309","_from":"12388","_to":"41023"} +{"$label":"ACTS_IN","name":"Luc\u00eda","type":"Role","_key":"56585","_from":"12389","_to":"35943"} +{"$label":"ACTS_IN","name":"Sor Beatriz","type":"Role","_key":"46178","_from":"12390","_to":"30520"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"37237","_from":"12390","_to":"25221"} +{"$label":"ACTS_IN","name":"Mire","type":"Role","_key":"64925","_from":"12394","_to":"40363"} +{"$label":"ACTS_IN","name":"Antonio Urgell","type":"Role","_key":"103192","_from":"12396","_to":"60693"} +{"$label":"ACTS_IN","name":"Luper Jove","type":"Role","_key":"25855","_from":"12397","_to":"18581"} +{"$label":"ACTS_IN","name":"Stringly","type":"Role","_key":"25836","_from":"12398","_to":"18581"} +{"$label":"DIRECTED","_key":"16382","_from":"12402","_to":"12400"} +{"$label":"DIRECTED","_key":"16381","_from":"12401","_to":"12400"} +{"$label":"DIRECTED","_key":"35751","_from":"12401","_to":"24292"} +{"$label":"ACTS_IN","name":"Le juge","type":"Role","_key":"16397","_from":"12415","_to":"12403"} +{"$label":"ACTS_IN","name":"L'homme \u00e0 la cage","type":"Role","_key":"16396","_from":"12414","_to":"12403"} +{"$label":"ACTS_IN","name":"L'Homme dortoir","type":"Role","_key":"16395","_from":"12413","_to":"12403"} +{"$label":"ACTS_IN","name":"L'Oiseleur","type":"Role","_key":"16394","_from":"12412","_to":"12403"} +{"$label":"ACTS_IN","name":"La vieille","type":"Role","_key":"16393","_from":"12411","_to":"12403"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Wang","type":"Role","_key":"16392","_from":"12410","_to":"12403"} +{"$label":"ACTS_IN","name":"La Directrice","type":"Role","_key":"16391","_from":"12409","_to":"12403"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"16390","_from":"12408","_to":"12403"} +{"$label":"ACTS_IN","name":"Prof. Chen","type":"Role","_key":"16389","_from":"12407","_to":"12403"} +{"$label":"ACTS_IN","name":"An Chen","type":"Role","_key":"16388","_from":"12406","_to":"12403"} +{"$label":"ACTS_IN","name":"Li Ming","type":"Role","_key":"16387","_from":"12405","_to":"12403"} +{"$label":"DIRECTED","_key":"16386","_from":"12404","_to":"12403"} +{"$label":"DIRECTED","_key":"18408","_from":"12404","_to":"13651"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"54542","_from":"12405","_to":"34952"} +{"$label":"ACTS_IN","name":"Ushna","type":"Role","_key":"47806","_from":"12405","_to":"31472"} +{"$label":"ACTS_IN","name":"P\u00e9n\u00e9lope","type":"Role","_key":"29182","_from":"12405","_to":"20776"} +{"$label":"ACTS_IN","name":"Lousha","type":"Role","_key":"106162","_from":"12406","_to":"62527"} +{"$label":"ACTS_IN","name":"Caroline Wakefield","type":"Role","_key":"16407","_from":"12419","_to":"12416"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"16403","_from":"12418","_to":"12416"} +{"$label":"ACTS_IN","name":"Gen. Arturo Salazar","type":"Role","_key":"16402","_from":"12417","_to":"12416"} +{"$label":"ACTS_IN","name":"Manny Huerta","type":"Role","_key":"119092","_from":"12417","_to":"69998"} +{"$label":"ACTS_IN","name":"Cuchillo","type":"Role","_key":"118174","_from":"12417","_to":"69450"} +{"$label":"ACTS_IN","name":"Don Federico Fellove","type":"Role","_key":"55836","_from":"12417","_to":"35529"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"95088","_from":"12419","_to":"55966"} +{"$label":"ACTS_IN","name":"Anna Ross","type":"Role","_key":"94890","_from":"12419","_to":"55867"} +{"$label":"ACTS_IN","name":"Andy Wolfmeyer","type":"Role","_key":"69358","_from":"12419","_to":"42408"} +{"$label":"ACTS_IN","name":"Hannah Kingsley","type":"Role","_key":"52177","_from":"12419","_to":"34000"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"16420","_from":"12422","_to":"12420"} +{"$label":"ACTS_IN","name":"Ann Foreman","type":"Role","_key":"16412","_from":"12421","_to":"12420"} +{"$label":"ACTS_IN","name":"Margarette","type":"Role","_key":"119088","_from":"12421","_to":"69998"} +{"$label":"ACTS_IN","name":"Hera","type":"Role","_key":"104081","_from":"12421","_to":"61239"} +{"$label":"ACTS_IN","name":"Sarah Kellogg","type":"Role","_key":"99480","_from":"12421","_to":"58645"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"98705","_from":"12421","_to":"58173"} +{"$label":"ACTS_IN","name":"Dr. Laura Baker","type":"Role","_key":"61759","_from":"12421","_to":"38888"} +{"$label":"ACTS_IN","name":"Captain Allison Sinclair","type":"Role","_key":"56177","_from":"12421","_to":"35707"} +{"$label":"ACTS_IN","name":"Emma Brooks","type":"Role","_key":"27182","_from":"12421","_to":"19541"} +{"$label":"ACTS_IN","name":"Diane Martin","type":"Role","_key":"51795","_from":"12422","_to":"33797"} +{"$label":"ACTS_IN","name":"Duvernois","type":"Role","_key":"16429","_from":"12426","_to":"12423"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"16426","_from":"12425","_to":"12423"} +{"$label":"DIRECTED","_key":"16423","_from":"12424","_to":"12423"} +{"$label":"DIRECTED","_key":"52984","_from":"12424","_to":"34322"} +{"$label":"DIRECTED","_key":"16741","_from":"12424","_to":"12628"} +{"$label":"DIRECTED","_key":"16546","_from":"12424","_to":"12502"} +{"$label":"ACTS_IN","name":"Count Alfonso di Rodriganda y Sevilla","type":"Role","_key":"119169","_from":"12426","_to":"70030"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"53408","_from":"12426","_to":"34508"} +{"$label":"ACTS_IN","name":"Frank Jackson","type":"Role","_key":"53395","_from":"12426","_to":"34505"} +{"$label":"ACTS_IN","name":"Robert Lafleur alias Scaramouche","type":"Role","_key":"53379","_from":"12426","_to":"34497"} +{"$label":"ACTS_IN","name":"Duc de Vallombreuse","type":"Role","_key":"33710","_from":"12426","_to":"23260"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"29791","_from":"12426","_to":"21082"} +{"$label":"ACTS_IN","name":"Van Britten","type":"Role","_key":"20811","_from":"12426","_to":"15223"} +{"$label":"ACTS_IN","name":"Dr. Pomeranz","type":"Role","_key":"16439","_from":"12428","_to":"12427"} +{"$label":"ACTS_IN","name":"Koichi","type":"Role","_key":"16459","_from":"12436","_to":"12429"} +{"$label":"ACTS_IN","name":"Satsu","type":"Role","_key":"16458","_from":"12435","_to":"12429"} +{"$label":"ACTS_IN","name":"The General","type":"Role","_key":"16454","_from":"12434","_to":"12429"} +{"$label":"ACTS_IN","name":"Young Pumpkin","type":"Role","_key":"16452","_from":"12433","_to":"12429"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"16451","_from":"12432","_to":"12429"} +{"$label":"ACTS_IN","name":"Izuko","type":"Role","_key":"16449","_from":"12431","_to":"12429"} +{"$label":"ACTS_IN","name":"Young Chiyo","type":"Role","_key":"16446","_from":"12430","_to":"12429"} +{"$label":"ACTS_IN","name":"Hiharu","type":"Role","_key":"120691","_from":"12430","_to":"70882"} +{"$label":"ACTS_IN","name":"Ruriko","type":"Role","_key":"95617","_from":"12432","_to":"56241"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"90415","_from":"12432","_to":"53421"} +{"$label":"ACTS_IN","name":"Malee Chuang","type":"Role","_key":"115125","_from":"12433","_to":"67797"} +{"$label":"ACTS_IN","name":"Lenny Hocknell","type":"Role","_key":"97122","_from":"12433","_to":"57136"} +{"$label":"DIRECTED","_key":"119500","_from":"12434","_to":"70198"} +{"$label":"ACTS_IN","name":"Terence Wei","type":"Role","_key":"71657","_from":"12434","_to":"43387"} +{"$label":"ACTS_IN","name":"Chaibat","type":"Role","_key":"68082","_from":"12434","_to":"41824"} +{"$label":"ACTS_IN","name":"Sgt. Tsang Yeh","type":"Role","_key":"66073","_from":"12434","_to":"40883"} +{"$label":"ACTS_IN","name":"Locust","type":"Role","_key":"59204","_from":"12436","_to":"37387"} +{"$label":"ACTS_IN","name":"Entf\u00fchrer","type":"Role","_key":"16464","_from":"12440","_to":"12437"} +{"$label":"ACTS_IN","name":"Luzi Kryn","type":"Role","_key":"16463","_from":"12439","_to":"12437"} +{"$label":"ACTS_IN","name":"Dietmar","type":"Role","_key":"16462","_from":"12438","_to":"12437"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41976","_from":"12439","_to":"28127"} +{"$label":"DIRECTED","_key":"16465","_from":"12442","_to":"12441"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"16481","_from":"12453","_to":"12443"} +{"$label":"ACTS_IN","name":"Unhygienix","type":"Role","_key":"16480","_from":"12452","_to":"12443"} +{"$label":"ACTS_IN","name":"Hustler","type":"Role","_key":"16479","_from":"12451","_to":"12443"} +{"$label":"ACTS_IN","name":"Sten","type":"Role","_key":"16478","_from":"12450","_to":"12443"} +{"$label":"ACTS_IN","name":"Bugs","type":"Role","_key":"16476","_from":"12449","_to":"12443"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"16475","_from":"12448","_to":"12443"} +{"$label":"ACTS_IN","name":"Zeph","type":"Role","_key":"16473","_from":"12447","_to":"12443"} +{"$label":"ACTS_IN","name":"Keaty","type":"Role","_key":"16471","_from":"12446","_to":"12443"} +{"$label":"ACTS_IN","name":"Christo","type":"Role","_key":"16470","_from":"12445","_to":"12443"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"16468","_from":"12444","_to":"12443"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"101529","_from":"12444","_to":"59762"} +{"$label":"ACTS_IN","name":"Lieutenant Audebert","type":"Role","_key":"71371","_from":"12444","_to":"43289"} +{"$label":"ACTS_IN","name":"Philippe Neuville","type":"Role","_key":"65844","_from":"12444","_to":"40747"} +{"$label":"ACTS_IN","name":"Etienne Boisset","type":"Role","_key":"54928","_from":"12444","_to":"35122"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"50302","_from":"12444","_to":"32864"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"49634","_from":"12444","_to":"32481"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"24050","_from":"12444","_to":"17440"} +{"$label":"DIRECTED","_key":"65836","_from":"12444","_to":"40747"} +{"$label":"ACTS_IN","name":"Gasa","type":"Role","_key":"20341","_from":"12446","_to":"14897"} +{"$label":"ACTS_IN","name":"Steve Warson","type":"Role","_key":"64164","_from":"12447","_to":"40036"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"20655","_from":"12450","_to":"15095"} +{"$label":"ACTS_IN","name":"Guido Rosetti","type":"Role","_key":"27523","_from":"12452","_to":"19747"} +{"$label":"ACTS_IN","name":"Nicholas Petraki","type":"Role","_key":"17313","_from":"12452","_to":"12952"} +{"$label":"ACTS_IN","name":"Rachel Brown","type":"Role","_key":"16486","_from":"12456","_to":"12454"} +{"$label":"ACTS_IN","name":"Bertram T. Cates","type":"Role","_key":"16485","_from":"12455","_to":"12454"} +{"$label":"DIRECTED","_key":"16498","_from":"12462","_to":"12457"} +{"$label":"ACTS_IN","name":"Sultana Gulbeyaz","type":"Role","_key":"16497","_from":"12461","_to":"12457"} +{"$label":"ACTS_IN","name":"Dr. Bill Dunsmore","type":"Role","_key":"16496","_from":"12460","_to":"12457"} +{"$label":"ACTS_IN","name":"Dr. Paul Showalter","type":"Role","_key":"16493","_from":"12459","_to":"12457"} +{"$label":"ACTS_IN","name":"Dona Ana","type":"Role","_key":"16492","_from":"12458","_to":"12457"} +{"$label":"ACTS_IN","name":"Alexandrine Langlois, dite Didine","type":"Role","_key":"111892","_from":"12458","_to":"66051"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"101530","_from":"12458","_to":"59762"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"96142","_from":"12458","_to":"56505"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"92136","_from":"12458","_to":"54363"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"72977","_from":"12458","_to":"43926"} +{"$label":"ACTS_IN","name":"Maelle Coste","type":"Role","_key":"65872","_from":"12458","_to":"40762"} +{"$label":"ACTS_IN","name":"Val\u00e9rie","type":"Role","_key":"35250","_from":"12458","_to":"24004"} +{"$label":"ACTS_IN","name":"Irving Feffer","type":"Role","_key":"40838","_from":"12459","_to":"27489"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"34359","_from":"12460","_to":"23562"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"36049","_from":"12461","_to":"24472"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"16508","_from":"12470","_to":"12463"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"16507","_from":"12469","_to":"12463"} +{"$label":"ACTS_IN","name":"Franks Onkel","type":"Role","_key":"16506","_from":"12468","_to":"12463"} +{"$label":"ACTS_IN","name":"Franks Mutter","type":"Role","_key":"16504","_from":"12467","_to":"12463"} +{"$label":"ACTS_IN","name":"Pauli","type":"Role","_key":"16503","_from":"12466","_to":"12463"} +{"$label":"ACTS_IN","name":"Ilvy","type":"Role","_key":"16502","_from":"12465","_to":"12463"} +{"$label":"DIRECTED","_key":"16499","_from":"12464","_to":"12463"} +{"$label":"ACTS_IN","name":"Bettis Mutter","type":"Role","_key":"39655","_from":"12467","_to":"26800"} +{"$label":"ACTS_IN","name":"Skeld the Superstitious","type":"Role","_key":"16516","_from":"12476","_to":"12471"} +{"$label":"ACTS_IN","name":"Helfdane the Fat","type":"Role","_key":"16514","_from":"12475","_to":"12471"} +{"$label":"ACTS_IN","name":"Edgtho the Silent","type":"Role","_key":"16513","_from":"12474","_to":"12471"} +{"$label":"ACTS_IN","name":"Herger the Joyous","type":"Role","_key":"16512","_from":"12473","_to":"12471"} +{"$label":"ACTS_IN","name":"Buliwyf","type":"Role","_key":"16511","_from":"12472","_to":"12471"} +{"$label":"ACTS_IN","name":"Wyburd","type":"Role","_key":"120551","_from":"12475","_to":"70802"} +{"$label":"ACTS_IN","name":"Sergeant Bormann","type":"Role","_key":"97017","_from":"12475","_to":"57064"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"38779","_from":"12476","_to":"26197"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"16544","_from":"12501","_to":"12477"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"16543","_from":"12500","_to":"12477"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"16542","_from":"12499","_to":"12477"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"16541","_from":"12498","_to":"12477"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"16540","_from":"12497","_to":"12477"} +{"$label":"ACTS_IN","name":"Kinderhasserin","type":"Role","_key":"16539","_from":"12496","_to":"12477"} +{"$label":"ACTS_IN","name":"Rechtsextremist","type":"Role","_key":"16538","_from":"12495","_to":"12477"} +{"$label":"ACTS_IN","name":"Hostess","type":"Role","_key":"16536","_from":"12494","_to":"12477"} +{"$label":"ACTS_IN","name":"Mutter Spaghetti","type":"Role","_key":"16535","_from":"12493","_to":"12477"} +{"$label":"ACTS_IN","name":"Pegah als Kind","type":"Role","_key":"16534","_from":"12492","_to":"12477"} +{"$label":"ACTS_IN","name":"Gr\u00fcndgens","type":"Role","_key":"16532","_from":"12491","_to":"12477"} +{"$label":"ACTS_IN","name":"Moderatorin","type":"Role","_key":"16531","_from":"12490","_to":"12477"} +{"$label":"ACTS_IN","name":"Gopal","type":"Role","_key":"16530","_from":"12489","_to":"12477"} +{"$label":"ACTS_IN","name":"Karl-Heinz","type":"Role","_key":"16529","_from":"12488","_to":"12477"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"16528","_from":"12487","_to":"12477"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"16527","_from":"12486","_to":"12477"} +{"$label":"ACTS_IN","name":"Frau Arnim","type":"Role","_key":"16525","_from":"12485","_to":"12477"} +{"$label":"ACTS_IN","name":"Junger Mann - Titanic Show","type":"Role","_key":"16524","_from":"12484","_to":"12477"} +{"$label":"ACTS_IN","name":"Kreativling #1","type":"Role","_key":"16523","_from":"12483","_to":"12477"} +{"$label":"ACTS_IN","name":"Maiwalds Freundin","type":"Role","_key":"16522","_from":"12482","_to":"12477"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"16521","_from":"12481","_to":"12477"} +{"$label":"ACTS_IN","name":"Philipp","type":"Role","_key":"16520","_from":"12480","_to":"12477"} +{"$label":"ACTS_IN","name":"Maiwald","type":"Role","_key":"16519","_from":"12479","_to":"12477"} +{"$label":"ACTS_IN","name":"Pegah","type":"Role","_key":"16518","_from":"12478","_to":"12477"} +{"$label":"ACTS_IN","name":"Carlos Rivera","type":"Role","_key":"60712","_from":"12479","_to":"38339"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54342","_from":"12479","_to":"34866"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"42261","_from":"12479","_to":"28297"} +{"$label":"ACTS_IN","name":"Christian Bannert","type":"Role","_key":"41984","_from":"12479","_to":"28132"} +{"$label":"ACTS_IN","name":"Michi Nussmbaumer","type":"Role","_key":"41539","_from":"12479","_to":"27899"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"39685","_from":"12479","_to":"26819"} +{"$label":"ACTS_IN","name":"Dom\u00fchl","type":"Role","_key":"67043","_from":"12480","_to":"41385"} +{"$label":"ACTS_IN","name":"Oberstleutnant Karl Pridun","type":"Role","_key":"63131","_from":"12480","_to":"39591"} +{"$label":"ACTS_IN","name":"Marcel Werner","type":"Role","_key":"52284","_from":"12480","_to":"34043"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"48471","_from":"12480","_to":"31822"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"20852","_from":"12480","_to":"15252"} +{"$label":"ACTS_IN","name":"Lissy Schroeder","type":"Role","_key":"63661","_from":"12481","_to":"39822"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"42506","_from":"12483","_to":"28457"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"65955","_from":"12484","_to":"40798"} +{"$label":"ACTS_IN","name":"Dr. Sch\u00fctt","type":"Role","_key":"42147","_from":"12491","_to":"28231"} +{"$label":"ACTS_IN","name":"Maren","type":"Role","_key":"43826","_from":"12493","_to":"29265"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45446","_from":"12495","_to":"30115"} +{"$label":"ACTS_IN","name":"Rekrut","type":"Role","_key":"42100","_from":"12495","_to":"28198"} +{"$label":"ACTS_IN","name":"Notarin Dr. Welter","type":"Role","_key":"42965","_from":"12496","_to":"28701"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45445","_from":"12497","_to":"30115"} +{"$label":"ACTS_IN","name":"Security-Mann","type":"Role","_key":"42099","_from":"12497","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71892","_from":"12501","_to":"43491"} +{"$label":"ACTS_IN","name":"Hermano Andr\u00e9s","type":"Role","_key":"16557","_from":"12510","_to":"12502"} +{"$label":"ACTS_IN","name":"Javi","type":"Role","_key":"16556","_from":"12509","_to":"12502"} +{"$label":"ACTS_IN","name":"Germ\u00e1n","type":"Role","_key":"16555","_from":"12508","_to":"12502"} +{"$label":"ACTS_IN","name":"Gen\u00e9","type":"Role","_key":"16554","_from":"12507","_to":"12502"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"16552","_from":"12506","_to":"12502"} +{"$label":"ACTS_IN","name":"Padre Francisco","type":"Role","_key":"16551","_from":"12505","_to":"12502"} +{"$label":"ACTS_IN","name":"Joaqu\u00edn","type":"Role","_key":"16550","_from":"12504","_to":"12502"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"16548","_from":"12503","_to":"12502"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"43988","_from":"12503","_to":"29346"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"43991","_from":"12506","_to":"29346"} +{"$label":"ACTS_IN","name":"Alejandro","type":"Role","_key":"21339","_from":"12508","_to":"15602"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"48174","_from":"12509","_to":"31649"} +{"$label":"ACTS_IN","name":"Chuli","type":"Role","_key":"114954","_from":"12510","_to":"67703"} +{"$label":"DIRECTED","_key":"16565","_from":"12515","_to":"12511"} +{"$label":"DIRECTED","_key":"16564","_from":"12514","_to":"12511"} +{"$label":"ACTS_IN","name":"Kim Wagner","type":"Role","_key":"16561","_from":"12513","_to":"12511"} +{"$label":"ACTS_IN","name":"Anna Rothe","type":"Role","_key":"16559","_from":"12512","_to":"12511"} +{"$label":"ACTS_IN","name":"Julia Steffens","type":"Role","_key":"105264","_from":"12512","_to":"61947"} +{"$label":"ACTS_IN","name":"Hannes Mutter","type":"Role","_key":"88235","_from":"12512","_to":"52346"} +{"$label":"ACTS_IN","name":"Anna Gotzlowski","type":"Role","_key":"54356","_from":"12512","_to":"34869"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"52951","_from":"12512","_to":"34308"} +{"$label":"ACTS_IN","name":"Anna Gotzlowski","type":"Role","_key":"41530","_from":"12512","_to":"27899"} +{"$label":"ACTS_IN","name":"Laura Melzer","type":"Role","_key":"27723","_from":"12512","_to":"19863"} +{"$label":"ACTS_IN","name":"Titzi","type":"Role","_key":"17396","_from":"12512","_to":"13011"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"48277","_from":"12513","_to":"31707"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"45589","_from":"12513","_to":"30180"} +{"$label":"ACTS_IN","name":"Tochter Fehse","type":"Role","_key":"43467","_from":"12513","_to":"29036"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42268","_from":"12513","_to":"28297"} +{"$label":"DIRECTED","_key":"71760","_from":"12514","_to":"43439"} +{"$label":"DIRECTED","_key":"50912","_from":"12514","_to":"33222"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"16573","_from":"12520","_to":"12516"} +{"$label":"ACTS_IN","name":"Klausi","type":"Role","_key":"16569","_from":"12519","_to":"12516"} +{"$label":"ACTS_IN","name":"Uschi","type":"Role","_key":"16568","_from":"12518","_to":"12516"} +{"$label":"DIRECTED","_key":"16566","_from":"12517","_to":"12516"} +{"$label":"DIRECTED","_key":"68292","_from":"12517","_to":"41927"} +{"$label":"DIRECTED","_key":"18704","_from":"12517","_to":"13845"} +{"$label":"DIRECTED","_key":"18576","_from":"12517","_to":"13743"} +{"$label":"ACTS_IN","name":"Marlene Renner","type":"Role","_key":"106271","_from":"12518","_to":"62603"} +{"$label":"ACTS_IN","name":"Anja Reimer","type":"Role","_key":"42686","_from":"12518","_to":"28571"} +{"$label":"ACTS_IN","name":"Henrike Kleefeld","type":"Role","_key":"42152","_from":"12518","_to":"28239"} +{"$label":"ACTS_IN","name":"Edmund Stoiber","type":"Role","_key":"42420","_from":"12519","_to":"28380"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"19021","_from":"12520","_to":"14038"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"16584","_from":"12529","_to":"12522"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"16583","_from":"12528","_to":"12522"} +{"$label":"ACTS_IN","name":"Mme Vachon","type":"Role","_key":"16582","_from":"12527","_to":"12522"} +{"$label":"ACTS_IN","name":"Sami","type":"Role","_key":"16581","_from":"12526","_to":"12522"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"16580","_from":"12525","_to":"12522"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"16578","_from":"12524","_to":"12522"} +{"$label":"DIRECTED","_key":"16577","_from":"12523","_to":"12522"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"89555","_from":"12524","_to":"52998"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"50592","_from":"12525","_to":"33043"} +{"$label":"ACTS_IN","name":"Catherine Billard","type":"Role","_key":"43432","_from":"12525","_to":"29017"} +{"$label":"ACTS_IN","name":"Marie-Th\u00e9r\u00e8se","type":"Role","_key":"30684","_from":"12525","_to":"21530"} +{"$label":"ACTS_IN","name":"la m\u00e8re d'Audrey","type":"Role","_key":"120406","_from":"12527","_to":"70729"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"110561","_from":"12527","_to":"65327"} +{"$label":"ACTS_IN","name":"Colette","type":"Role","_key":"89554","_from":"12527","_to":"52998"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"19653","_from":"12528","_to":"14540"} +{"$label":"ACTS_IN","name":"Shmuel","type":"Role","_key":"16590","_from":"12536","_to":"12530"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"16589","_from":"12535","_to":"12530"} +{"$label":"ACTS_IN","name":"Ido","type":"Role","_key":"16588","_from":"12534","_to":"12530"} +{"$label":"ACTS_IN","name":"Or","type":"Role","_key":"16587","_from":"12533","_to":"12530"} +{"$label":"ACTS_IN","name":"Ruthie","type":"Role","_key":"16586","_from":"12532","_to":"12530"} +{"$label":"DIRECTED","_key":"16585","_from":"12531","_to":"12530"} +{"$label":"ACTS_IN","name":"Vivianne","type":"Role","_key":"90421","_from":"12532","_to":"53425"} +{"$label":"ACTS_IN","name":"Viviane","type":"Role","_key":"44679","_from":"12532","_to":"29726"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"36736","_from":"12532","_to":"24907"} +{"$label":"DIRECTED","_key":"90419","_from":"12532","_to":"53425"} +{"$label":"DIRECTED","_key":"44678","_from":"12532","_to":"29726"} +{"$label":"ACTS_IN","name":"Singing Nurse","type":"Role","_key":"16603","_from":"12544","_to":"12537"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"16601","_from":"12543","_to":"12537"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"16600","_from":"12542","_to":"12537"} +{"$label":"ACTS_IN","name":"William Hart","type":"Role","_key":"16599","_from":"12541","_to":"12537"} +{"$label":"ACTS_IN","name":"Dr. Fischer","type":"Role","_key":"16598","_from":"12540","_to":"12537"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"16597","_from":"12539","_to":"12537"} +{"$label":"ACTS_IN","name":"Kristy","type":"Role","_key":"16596","_from":"12538","_to":"12537"} +{"$label":"ACTS_IN","name":"Audrey Aldrich","type":"Role","_key":"116392","_from":"12539","_to":"68518"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"115351","_from":"12539","_to":"67913"} +{"$label":"ACTS_IN","name":"Ellie Bruckner","type":"Role","_key":"104854","_from":"12539","_to":"61696"} +{"$label":"ACTS_IN","name":"Laura Miller","type":"Role","_key":"96243","_from":"12539","_to":"56561"} +{"$label":"ACTS_IN","name":"Laura Calvin Miller","type":"Role","_key":"69592","_from":"12539","_to":"42487"} +{"$label":"ACTS_IN","name":"Evelyn Danvers","type":"Role","_key":"58482","_from":"12539","_to":"36963"} +{"$label":"ACTS_IN","name":"Grace Marshall","type":"Role","_key":"56511","_from":"12539","_to":"35891"} +{"$label":"ACTS_IN","name":"Susan Evans","type":"Role","_key":"52762","_from":"12539","_to":"34232"} +{"$label":"ACTS_IN","name":"Laura Calvin Miller","type":"Role","_key":"52050","_from":"12539","_to":"33935"} +{"$label":"ACTS_IN","name":"Bernadine Mello","type":"Role","_key":"36670","_from":"12539","_to":"24857"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"22529","_from":"12539","_to":"16367"} +{"$label":"ACTS_IN","name":"Mary Stanton","type":"Role","_key":"19969","_from":"12539","_to":"14703"} +{"$label":"ACTS_IN","name":"Susan Aibelli","type":"Role","_key":"113303","_from":"12540","_to":"66746"} +{"$label":"ACTS_IN","name":"Mary Bradley","type":"Role","_key":"71828","_from":"12540","_to":"43469"} +{"$label":"ACTS_IN","name":"Lauren Murphy","type":"Role","_key":"63243","_from":"12540","_to":"39652"} +{"$label":"ACTS_IN","name":"Risa Walker","type":"Role","_key":"61767","_from":"12540","_to":"38889"} +{"$label":"ACTS_IN","name":"Barbara Pratt","type":"Role","_key":"48660","_from":"12540","_to":"31916"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"60103","_from":"12542","_to":"37918"} +{"$label":"ACTS_IN","name":"Bella","type":"Role","_key":"116819","_from":"12543","_to":"68771"} +{"$label":"ACTS_IN","name":"Capt. Charlie Alidas","type":"Role","_key":"16610","_from":"12547","_to":"12545"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"16609","_from":"12546","_to":"12545"} +{"$label":"ACTS_IN","name":"Lois MacFay \/ Linda Mills","type":"Role","_key":"100960","_from":"12546","_to":"59504"} +{"$label":"ACTS_IN","name":"Irene Talbot","type":"Role","_key":"34477","_from":"12546","_to":"23608"} +{"$label":"ACTS_IN","name":"Sheriff Tacksberry","type":"Role","_key":"35327","_from":"12547","_to":"24060"} +{"$label":"ACTS_IN","name":"Rachel, Coffee Shop Waitress","type":"Role","_key":"16625","_from":"12558","_to":"12548"} +{"$label":"ACTS_IN","name":"Homeless Person","type":"Role","_key":"16624","_from":"12557","_to":"12548"} +{"$label":"ACTS_IN","name":"Burly Man","type":"Role","_key":"16623","_from":"12556","_to":"12548"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"16622","_from":"12555","_to":"12548"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"16621","_from":"12554","_to":"12548"} +{"$label":"ACTS_IN","name":"Abner","type":"Role","_key":"16620","_from":"12553","_to":"12548"} +{"$label":"ACTS_IN","name":"Raeford Dunne","type":"Role","_key":"16619","_from":"12552","_to":"12548"} +{"$label":"ACTS_IN","name":"Brandon","type":"Role","_key":"16617","_from":"12551","_to":"12548"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"16615","_from":"12550","_to":"12548"} +{"$label":"DIRECTED","_key":"16611","_from":"12549","_to":"12548"} +{"$label":"DIRECTED","_key":"91268","_from":"12549","_to":"53818"} +{"$label":"DIRECTED","_key":"37035","_from":"12549","_to":"25107"} +{"$label":"ACTS_IN","name":"Sklar","type":"Role","_key":"108538","_from":"12550","_to":"64148"} +{"$label":"ACTS_IN","name":"The Agent (voice)","type":"Role","_key":"92197","_from":"12550","_to":"54410"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"89257","_from":"12550","_to":"52848"} +{"$label":"ACTS_IN","name":"Stevens","type":"Role","_key":"58802","_from":"12550","_to":"37140"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"51926","_from":"12550","_to":"33869"} +{"$label":"ACTS_IN","name":"Tanthalas 'Tanis' Half-Elven (Voice)","type":"Role","_key":"110948","_from":"12551","_to":"65533"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"99500","_from":"12551","_to":"58654"} +{"$label":"ACTS_IN","name":"Kip","type":"Role","_key":"93694","_from":"12551","_to":"55157"} +{"$label":"ACTS_IN","name":"Parker Riley","type":"Role","_key":"57546","_from":"12551","_to":"36455"} +{"$label":"ACTS_IN","name":"Adam \/ Adina","type":"Role","_key":"41227","_from":"12551","_to":"27735"} +{"$label":"ACTS_IN","name":"Rog","type":"Role","_key":"99687","_from":"12552","_to":"58779"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"71542","_from":"12552","_to":"43346"} +{"$label":"ACTS_IN","name":"Lizard","type":"Role","_key":"56851","_from":"12552","_to":"36092"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"48260","_from":"12552","_to":"31702"} +{"$label":"ACTS_IN","name":"Sherman T. Robot","type":"Role","_key":"30872","_from":"12552","_to":"21643"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"71868","_from":"12553","_to":"43486"} +{"$label":"ACTS_IN","name":"Ben Harrison","type":"Role","_key":"53864","_from":"12553","_to":"34690"} +{"$label":"ACTS_IN","name":"Peter Sullivan","type":"Role","_key":"29769","_from":"12553","_to":"21072"} +{"$label":"ACTS_IN","name":"Vic Stevens","type":"Role","_key":"57633","_from":"12554","_to":"36484"} +{"$label":"ACTS_IN","name":"Mr. Sutherland","type":"Role","_key":"60507","_from":"12557","_to":"38182"} +{"$label":"ACTS_IN","name":"Mr. Blatent","type":"Role","_key":"30359","_from":"12557","_to":"21348"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"16636","_from":"12567","_to":"12559"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"16635","_from":"12566","_to":"12559"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"16634","_from":"12565","_to":"12559"} +{"$label":"ACTS_IN","name":"Olly","type":"Role","_key":"16633","_from":"12564","_to":"12559"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"16631","_from":"12563","_to":"12559"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"16630","_from":"12562","_to":"12559"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"16629","_from":"12561","_to":"12559"} +{"$label":"DIRECTED","_key":"16626","_from":"12560","_to":"12559"} +{"$label":"ACTS_IN","name":"Jim Hawkins","type":"Role","_key":"66405","_from":"12561","_to":"41066"} +{"$label":"ACTS_IN","name":"Oana","type":"Role","_key":"43360","_from":"12563","_to":"28967"} +{"$label":"ACTS_IN","name":"Hospital Drama Family","type":"Role","_key":"96288","_from":"12565","_to":"56572"} +{"$label":"ACTS_IN","name":"Mrs. Reynolds","type":"Role","_key":"31093","_from":"12565","_to":"21757"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"16654","_from":"12576","_to":"12568"} +{"$label":"ACTS_IN","name":"Man From Another Place","type":"Role","_key":"16653","_from":"12575","_to":"12568"} +{"$label":"ACTS_IN","name":"The Log Lady","type":"Role","_key":"16652","_from":"12574","_to":"12568"} +{"$label":"ACTS_IN","name":"Harold Smith (as Lenny Von Dohlen)","type":"Role","_key":"16649","_from":"12573","_to":"12568"} +{"$label":"ACTS_IN","name":"Leland Palmer","type":"Role","_key":"16643","_from":"12572","_to":"12568"} +{"$label":"ACTS_IN","name":"Ronette Pulaski","type":"Role","_key":"16641","_from":"12571","_to":"12568"} +{"$label":"ACTS_IN","name":"Shelly Johnson","type":"Role","_key":"16640","_from":"12570","_to":"12568"} +{"$label":"ACTS_IN","name":"Donna Hayward","type":"Role","_key":"16639","_from":"12569","_to":"12568"} +{"$label":"ACTS_IN","name":"Kate Moseley","type":"Role","_key":"109547","_from":"12569","_to":"64707"} +{"$label":"ACTS_IN","name":"Courtney Blumenthal","type":"Role","_key":"108527","_from":"12569","_to":"64146"} +{"$label":"ACTS_IN","name":"Nala","type":"Role","_key":"56158","_from":"12569","_to":"35699"} +{"$label":"ACTS_IN","name":"Adult Nala","type":"Role","_key":"50225","_from":"12569","_to":"32826"} +{"$label":"ACTS_IN","name":"Lena Mathers","type":"Role","_key":"115208","_from":"12570","_to":"67849"} +{"$label":"ACTS_IN","name":"Samantha Clark","type":"Role","_key":"103641","_from":"12570","_to":"60957"} +{"$label":"ACTS_IN","name":"Tanya Robertson","type":"Role","_key":"69803","_from":"12570","_to":"42601"} +{"$label":"ACTS_IN","name":"Doctor Alec Holland","type":"Role","_key":"114370","_from":"12572","_to":"67370"} +{"$label":"ACTS_IN","name":"Bobby Stiles","type":"Role","_key":"98743","_from":"12572","_to":"58191"} +{"$label":"ACTS_IN","name":"Frank Harrington","type":"Role","_key":"69796","_from":"12572","_to":"42596"} +{"$label":"ACTS_IN","name":"Jack Taggart, Sr.","type":"Role","_key":"69296","_from":"12572","_to":"42368"} +{"$label":"ACTS_IN","name":"Senator John Morton","type":"Role","_key":"45635","_from":"12572","_to":"30210"} +{"$label":"ACTS_IN","name":"Ted Summers","type":"Role","_key":"45171","_from":"12572","_to":"29971"} +{"$label":"ACTS_IN","name":"Leon Nash","type":"Role","_key":"37778","_from":"12572","_to":"25618"} +{"$label":"ACTS_IN","name":"Don Hollenbeck","type":"Role","_key":"26778","_from":"12572","_to":"19236"} +{"$label":"ACTS_IN","name":"Miles Harding","type":"Role","_key":"120527","_from":"12573","_to":"70790"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"92796","_from":"12573","_to":"54739"} +{"$label":"ACTS_IN","name":"Burton Jernigan","type":"Role","_key":"55938","_from":"12573","_to":"35573"} +{"$label":"ACTS_IN","name":"Young Clark Kent","type":"Role","_key":"16669","_from":"12584","_to":"12577"} +{"$label":"ACTS_IN","name":"Martha Kent","type":"Role","_key":"16667","_from":"12583","_to":"12577"} +{"$label":"ACTS_IN","name":"General Zod","type":"Role","_key":"16666","_from":"12582","_to":"12577"} +{"$label":"ACTS_IN","name":"Vond-Ah","type":"Role","_key":"16665","_from":"12581","_to":"12577"} +{"$label":"ACTS_IN","name":"Eve Teschmacher","type":"Role","_key":"16664","_from":"12580","_to":"12577"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"16662","_from":"12579","_to":"12577"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"16659","_from":"12578","_to":"12577"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"117413","_from":"12578","_to":"69059"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"69685","_from":"12578","_to":"42544"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"54486","_from":"12578","_to":"34930"} +{"$label":"ACTS_IN","name":"Perry White","type":"Role","_key":"50118","_from":"12578","_to":"32783"} +{"$label":"ACTS_IN","name":"Maude","type":"Role","_key":"121069","_from":"12579","_to":"71097"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"117415","_from":"12579","_to":"69059"} +{"$label":"ACTS_IN","name":"Barbara 'Barb' Coard","type":"Role","_key":"110590","_from":"12579","_to":"65341"} +{"$label":"ACTS_IN","name":"Kathy Lutz","type":"Role","_key":"69928","_from":"12579","_to":"42672"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"54492","_from":"12579","_to":"34930"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"50116","_from":"12579","_to":"32783"} +{"$label":"ACTS_IN","name":"Pamela Weintraub","type":"Role","_key":"118827","_from":"12580","_to":"69852"} +{"$label":"ACTS_IN","name":"Teacher at Microphone","type":"Role","_key":"96508","_from":"12580","_to":"56725"} +{"$label":"ACTS_IN","name":"Charlotta Steele","type":"Role","_key":"68147","_from":"12580","_to":"41856"} +{"$label":"ACTS_IN","name":"Eve Teschmacher","type":"Role","_key":"50123","_from":"12580","_to":"32783"} +{"$label":"ACTS_IN","name":"Georgette Starke","type":"Role","_key":"22154","_from":"12580","_to":"16157"} +{"$label":"ACTS_IN","name":"Anna Helwig","type":"Role","_key":"35748","_from":"12581","_to":"24292"} +{"$label":"ACTS_IN","name":"Willie Parker","type":"Role","_key":"120646","_from":"12582","_to":"70855"} +{"$label":"ACTS_IN","name":"Brigham Young","type":"Role","_key":"102262","_from":"12582","_to":"60174"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"101291","_from":"12582","_to":"59641"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"71398","_from":"12582","_to":"43300"} +{"$label":"ACTS_IN","name":"Terry Stricter","type":"Role","_key":"69320","_from":"12582","_to":"42372"} +{"$label":"ACTS_IN","name":"Ramsley","type":"Role","_key":"65496","_from":"12582","_to":"40601"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"62943","_from":"12582","_to":"39530"} +{"$label":"ACTS_IN","name":"William Harcourt","type":"Role","_key":"61094","_from":"12582","_to":"38618"} +{"$label":"ACTS_IN","name":"Stick","type":"Role","_key":"58350","_from":"12582","_to":"36877"} +{"$label":"ACTS_IN","name":"Victor Taft","type":"Role","_key":"58237","_from":"12582","_to":"36833"} +{"$label":"ACTS_IN","name":"Pekwarsky","type":"Role","_key":"51426","_from":"12582","_to":"33548"} +{"$label":"ACTS_IN","name":"General Zod","type":"Role","_key":"50125","_from":"12582","_to":"32783"} +{"$label":"ACTS_IN","name":"Visitor","type":"Role","_key":"37073","_from":"12582","_to":"25123"} +{"$label":"ACTS_IN","name":"Billy Budd","type":"Role","_key":"37059","_from":"12582","_to":"25120"} +{"$label":"ACTS_IN","name":"Sgt. Francis \" Frank \" Troy","type":"Role","_key":"27228","_from":"12582","_to":"19575"} +{"$label":"ACTS_IN","name":"Jack Taylor","type":"Role","_key":"23839","_from":"12582","_to":"17282"} +{"$label":"ACTS_IN","name":"Ralph\/Bernadette Bassenger","type":"Role","_key":"23326","_from":"12582","_to":"16903"} +{"$label":"ACTS_IN","name":"Ludwig Beck","type":"Role","_key":"19717","_from":"12582","_to":"14564"} +{"$label":"ACTS_IN","name":"Jack Schmidt","type":"Role","_key":"17829","_from":"12582","_to":"13281"} +{"$label":"ACTS_IN","name":"Mrs. Avis Gilbert","type":"Role","_key":"120782","_from":"12583","_to":"70940"} +{"$label":"ACTS_IN","name":"Bruce Gallatin","type":"Role","_key":"45705","_from":"12584","_to":"30247"} +{"$label":"ACTS_IN","name":"Bronko","type":"Role","_key":"16688","_from":"12594","_to":"12585"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"16687","_from":"12593","_to":"12585"} +{"$label":"ACTS_IN","name":"Walter Tschirner","type":"Role","_key":"16686","_from":"12592","_to":"12585"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"16683","_from":"12591","_to":"12585"} +{"$label":"ACTS_IN","name":"Henry Preminger","type":"Role","_key":"16680","_from":"12590","_to":"12585"} +{"$label":"ACTS_IN","name":"Desiree","type":"Role","_key":"16679","_from":"12589","_to":"12585"} +{"$label":"ACTS_IN","name":"Roxy","type":"Role","_key":"16678","_from":"12588","_to":"12585"} +{"$label":"ACTS_IN","name":"G\u00fcnther Tschirner","type":"Role","_key":"16677","_from":"12587","_to":"12585"} +{"$label":"ACTS_IN","name":"Agnes Tschirner","type":"Role","_key":"16673","_from":"12586","_to":"12585"} +{"$label":"ACTS_IN","name":"Freiermuth","type":"Role","_key":"90396","_from":"12587","_to":"53412"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"65223","_from":"12587","_to":"40498"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"63699","_from":"12587","_to":"39834"} +{"$label":"ACTS_IN","name":"Kurt Krone","type":"Role","_key":"52538","_from":"12587","_to":"34158"} +{"$label":"ACTS_IN","name":"Lassowksi","type":"Role","_key":"49089","_from":"12587","_to":"32171"} +{"$label":"ACTS_IN","name":"Fauchlevent","type":"Role","_key":"31643","_from":"12587","_to":"22083"} +{"$label":"ACTS_IN","name":"Harry Graves","type":"Role","_key":"27066","_from":"12587","_to":"19484"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"62525","_from":"12588","_to":"39364"} +{"$label":"ACTS_IN","name":"Petra von Kant","type":"Role","_key":"62518","_from":"12588","_to":"39363"} +{"$label":"DIRECTED","_key":"58092","_from":"12590","_to":"36758"} +{"$label":"ACTS_IN","name":"Max Hecker","type":"Role","_key":"68125","_from":"12591","_to":"41845"} +{"$label":"ACTS_IN","name":"Polizist 1","type":"Role","_key":"30984","_from":"12591","_to":"21698"} +{"$label":"ACTS_IN","name":"Milan","type":"Role","_key":"66825","_from":"12594","_to":"41275"} +{"$label":"ACTS_IN","name":"(India)","type":"Role","_key":"16708","_from":"12607","_to":"12595"} +{"$label":"ACTS_IN","name":"(India)","type":"Role","_key":"16707","_from":"12606","_to":"12595"} +{"$label":"ACTS_IN","name":"(Israel)","type":"Role","_key":"16706","_from":"12605","_to":"12595"} +{"$label":"ACTS_IN","name":"(Israel)","type":"Role","_key":"16705","_from":"12604","_to":"12595"} +{"$label":"ACTS_IN","name":"(France)","type":"Role","_key":"16704","_from":"12603","_to":"12595"} +{"$label":"ACTS_IN","name":"(Iran)","type":"Role","_key":"16702","_from":"12602","_to":"12595"} +{"$label":"DIRECTED","_key":"16700","_from":"12601","_to":"12595"} +{"$label":"DIRECTED","_key":"16698","_from":"12600","_to":"12595"} +{"$label":"DIRECTED","_key":"16696","_from":"12599","_to":"12595"} +{"$label":"DIRECTED","_key":"16694","_from":"12598","_to":"12595"} +{"$label":"DIRECTED","_key":"16692","_from":"12597","_to":"12595"} +{"$label":"DIRECTED","_key":"16691","_from":"12596","_to":"12595"} +{"$label":"DIRECTED","_key":"46836","_from":"12597","_to":"30892"} +{"$label":"DIRECTED","_key":"114466","_from":"12601","_to":"67432"} +{"$label":"DIRECTED","_key":"49161","_from":"12601","_to":"32208"} +{"$label":"ACTS_IN","name":"Security B","type":"Role","_key":"46845","_from":"12605","_to":"30892"} +{"$label":"ACTS_IN","name":"Young David Banner","type":"Role","_key":"16717","_from":"12610","_to":"12608"} +{"$label":"ACTS_IN","name":"Edith Banner","type":"Role","_key":"16716","_from":"12609","_to":"12608"} +{"$label":"ACTS_IN","name":"Dannie","type":"Role","_key":"119230","_from":"12609","_to":"70052"} +{"$label":"ACTS_IN","name":"Dawn","type":"Role","_key":"108151","_from":"12609","_to":"63916"} +{"$label":"ACTS_IN","name":"Nels Van Adder \/ Proto-Goblin","type":"Role","_key":"16728","_from":"12617","_to":"12611"} +{"$label":"ACTS_IN","name":"Richard Parker","type":"Role","_key":"16727","_from":"12616","_to":"12611"} +{"$label":"ACTS_IN","name":"Mary Parker","type":"Role","_key":"16726","_from":"12615","_to":"12611"} +{"$label":"ACTS_IN","name":"Gwen Stacy","type":"Role","_key":"16720","_from":"12614","_to":"12611"} +{"$label":"ACTS_IN","name":"Peter Parker \/ Spider-Man","type":"Role","_key":"16719","_from":"12613","_to":"12611"} +{"$label":"DIRECTED","_key":"16718","_from":"12612","_to":"12611"} +{"$label":"DIRECTED","_key":"121477","_from":"12612","_to":"71361"} +{"$label":"ACTS_IN","name":"Jack Burridge","type":"Role","_key":"101624","_from":"12613","_to":"59814"} +{"$label":"ACTS_IN","name":"Francis Weston","type":"Role","_key":"88568","_from":"12613","_to":"52483"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"47900","_from":"12613","_to":"31515"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"32232","_from":"12613","_to":"22461"} +{"$label":"ACTS_IN","name":"Wichita","type":"Role","_key":"121459","_from":"12614","_to":"71351"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"90651","_from":"12614","_to":"53522"} +{"$label":"ACTS_IN","name":"Allison Vandermeersh","type":"Role","_key":"90253","_from":"12614","_to":"53362"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"61528","_from":"12614","_to":"38798"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"49319","_from":"12614","_to":"32290"} +{"$label":"ACTS_IN","name":"Nicole Reilly","type":"Role","_key":"116601","_from":"12615","_to":"68641"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"102044","_from":"12615","_to":"60035"} +{"$label":"ACTS_IN","name":"Richard McMurray","type":"Role","_key":"117804","_from":"12616","_to":"69246"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"116886","_from":"12616","_to":"68813"} +{"$label":"ACTS_IN","name":"William Phillips","type":"Role","_key":"106872","_from":"12616","_to":"63003"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"106262","_from":"12616","_to":"62597"} +{"$label":"ACTS_IN","name":"Roger Swanson","type":"Role","_key":"94485","_from":"12616","_to":"55647"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"91882","_from":"12616","_to":"54207"} +{"$label":"ACTS_IN","name":"Steve Dunne","type":"Role","_key":"67683","_from":"12616","_to":"41633"} +{"$label":"ACTS_IN","name":"Victor Gaddes","type":"Role","_key":"52435","_from":"12616","_to":"34117"} +{"$label":"ACTS_IN","name":"Ethan Thomas","type":"Role","_key":"50281","_from":"12616","_to":"32852"} +{"$label":"ACTS_IN","name":"Dr. Karel Lamonte","type":"Role","_key":"49947","_from":"12616","_to":"32695"} +{"$label":"ACTS_IN","name":"Vijay Raj","type":"Role","_key":"120857","_from":"12617","_to":"70970"} +{"$label":"ACTS_IN","name":"Roshan","type":"Role","_key":"120620","_from":"12617","_to":"70842"} +{"$label":"ACTS_IN","name":"Ashoke Ganguli","type":"Role","_key":"109957","_from":"12617","_to":"64968"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"109418","_from":"12617","_to":"64644"} +{"$label":"ACTS_IN","name":"Billas Pardesi aka Billo Barber","type":"Role","_key":"108805","_from":"12617","_to":"64308"} +{"$label":"ACTS_IN","name":"Avtar Singh","type":"Role","_key":"101058","_from":"12617","_to":"59551"} +{"$label":"ACTS_IN","name":"Faruq","type":"Role","_key":"98777","_from":"12617","_to":"58204"} +{"$label":"ACTS_IN","name":"Police Inspector","type":"Role","_key":"89324","_from":"12617","_to":"52870"} +{"$label":"ACTS_IN","name":"Dr. Palmer","type":"Role","_key":"16739","_from":"12627","_to":"12618"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"16738","_from":"12626","_to":"12618"} +{"$label":"ACTS_IN","name":"Sylvester","type":"Role","_key":"16737","_from":"12625","_to":"12618"} +{"$label":"ACTS_IN","name":"Duron","type":"Role","_key":"16735","_from":"12624","_to":"12618"} +{"$label":"ACTS_IN","name":"Noel","type":"Role","_key":"16734","_from":"12623","_to":"12618"} +{"$label":"ACTS_IN","name":"Grant","type":"Role","_key":"16733","_from":"12622","_to":"12618"} +{"$label":"ACTS_IN","name":"Rich Brown","type":"Role","_key":"16732","_from":"12621","_to":"12618"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"16730","_from":"12620","_to":"12618"} +{"$label":"DIRECTED","_key":"16729","_from":"12619","_to":"12618"} +{"$label":"DIRECTED","_key":"28318","_from":"12619","_to":"20264"} +{"$label":"ACTS_IN","name":"Little Walter","type":"Role","_key":"99518","_from":"12620","_to":"58668"} +{"$label":"ACTS_IN","name":"Miles Sultana","type":"Role","_key":"57116","_from":"12620","_to":"36249"} +{"$label":"ACTS_IN","name":"Hands","type":"Role","_key":"56804","_from":"12620","_to":"36070"} +{"$label":"ACTS_IN","name":"Ty Hackett","type":"Role","_key":"32931","_from":"12620","_to":"22843"} +{"$label":"ACTS_IN","name":"Mixx","type":"Role","_key":"57133","_from":"12621","_to":"36249"} +{"$label":"ACTS_IN","name":"Jim Brown","type":"Role","_key":"99632","_from":"12622","_to":"58739"} +{"$label":"ACTS_IN","name":"MushMouth","type":"Role","_key":"102923","_from":"12623","_to":"60545"} +{"$label":"ACTS_IN","name":"Hamilton Burgess","type":"Role","_key":"98271","_from":"12623","_to":"57887"} +{"$label":"ACTS_IN","name":"IPod","type":"Role","_key":"65545","_from":"12623","_to":"40621"} +{"$label":"ACTS_IN","name":"Det. Hank Carver","type":"Role","_key":"111228","_from":"12625","_to":"65683"} +{"$label":"ACTS_IN","name":"Jamal Webber","type":"Role","_key":"95849","_from":"12625","_to":"56368"} +{"$label":"ACTS_IN","name":"Brad Bramish","type":"Role","_key":"52748","_from":"12625","_to":"34224"} +{"$label":"ACTS_IN","name":"Tarish","type":"Role","_key":"20323","_from":"12625","_to":"14887"} +{"$label":"ACTS_IN","name":"Lillian Frank","type":"Role","_key":"65110","_from":"12626","_to":"40444"} +{"$label":"ACTS_IN","name":"Second Assistant","type":"Role","_key":"16753","_from":"12638","_to":"12628"} +{"$label":"ACTS_IN","name":"Assistant","type":"Role","_key":"16752","_from":"12637","_to":"12628"} +{"$label":"ACTS_IN","name":"Victor Marlish","type":"Role","_key":"16751","_from":"12636","_to":"12628"} +{"$label":"ACTS_IN","name":"Mrs. Marlish","type":"Role","_key":"16750","_from":"12635","_to":"12628"} +{"$label":"ACTS_IN","name":"Mr. Marlish","type":"Role","_key":"16749","_from":"12634","_to":"12628"} +{"$label":"ACTS_IN","name":"Old Lady","type":"Role","_key":"16748","_from":"12633","_to":"12628"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"16747","_from":"12632","_to":"12628"} +{"$label":"ACTS_IN","name":"Mr. Edmund Tuttle","type":"Role","_key":"16746","_from":"12631","_to":"12628"} +{"$label":"ACTS_IN","name":"Nicholas Stewart","type":"Role","_key":"16745","_from":"12630","_to":"12628"} +{"$label":"ACTS_IN","name":"Anne Stewart","type":"Role","_key":"16744","_from":"12629","_to":"12628"} +{"$label":"ACTS_IN","name":"Cornelia Vermeer","type":"Role","_key":"28390","_from":"12629","_to":"20310"} +{"$label":"ACTS_IN","name":"Smaller Workman","type":"Role","_key":"117899","_from":"12631","_to":"69304"} +{"$label":"DIRECTED","_key":"117897","_from":"12631","_to":"69304"} +{"$label":"ACTS_IN","name":"Maud Lily","type":"Role","_key":"105110","_from":"12632","_to":"61861"} +{"$label":"ACTS_IN","name":"Agnes Cluny","type":"Role","_key":"24871","_from":"12632","_to":"17982"} +{"$label":"ACTS_IN","name":"Pepi the Poisoner","type":"Role","_key":"121032","_from":"12634","_to":"71078"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"117381","_from":"12634","_to":"69039"} +{"$label":"ACTS_IN","name":"Irving Berlin","type":"Role","_key":"103651","_from":"12634","_to":"60960"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"57829","_from":"12634","_to":"36604"} +{"$label":"ACTS_IN","name":"Ass. Ludwig","type":"Role","_key":"20171","_from":"12634","_to":"14795"} +{"$label":"ACTS_IN","name":"Richard Burbage","type":"Role","_key":"16769","_from":"12642","_to":"12639"} +{"$label":"ACTS_IN","name":"Ralph Bashford","type":"Role","_key":"16767","_from":"12641","_to":"12639"} +{"$label":"ACTS_IN","name":"Makepeace","type":"Role","_key":"16766","_from":"12640","_to":"12639"} +{"$label":"ACTS_IN","name":"Chief Customs Officer","type":"Role","_key":"103817","_from":"12641","_to":"61055"} +{"$label":"ACTS_IN","name":"John Manly","type":"Role","_key":"100620","_from":"12641","_to":"59333"} +{"$label":"ACTS_IN","name":"D\u00e9j\u00e0 Vu","type":"Role","_key":"50715","_from":"12641","_to":"33102"} +{"$label":"ACTS_IN","name":"Lucien Galgani","type":"Role","_key":"27521","_from":"12641","_to":"19747"} +{"$label":"ACTS_IN","name":"John Faa","type":"Role","_key":"19922","_from":"12641","_to":"14664"} +{"$label":"ACTS_IN","name":"Dr. Martin Bamford","type":"Role","_key":"20642","_from":"12642","_to":"15095"} +{"$label":"ACTS_IN","name":"Anthony Staxton-Billing","type":"Role","_key":"18862","_from":"12642","_to":"13922"} +{"$label":"ACTS_IN","name":"L'h\u00f4tesse accueil \u00e9diteur","type":"Role","_key":"16781","_from":"12652","_to":"12643"} +{"$label":"ACTS_IN","name":"L'\u00e9diteur","type":"Role","_key":"16780","_from":"12651","_to":"12643"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"16779","_from":"12650","_to":"12643"} +{"$label":"ACTS_IN","name":"Fernanda, la bonne","type":"Role","_key":"16778","_from":"12649","_to":"12643"} +{"$label":"ACTS_IN","name":"G\u00e9raldine","type":"Role","_key":"16777","_from":"12648","_to":"12643"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"16776","_from":"12647","_to":"12643"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"16775","_from":"12646","_to":"12643"} +{"$label":"ACTS_IN","name":"Louise Mollet","type":"Role","_key":"16773","_from":"12645","_to":"12643"} +{"$label":"DIRECTED","_key":"16771","_from":"12644","_to":"12643"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"120402","_from":"12645","_to":"70729"} +{"$label":"ACTS_IN","name":"Le docteur Nicole Milovavovich","type":"Role","_key":"113637","_from":"12645","_to":"66968"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101277","_from":"12645","_to":"59634"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101261","_from":"12645","_to":"59630"} +{"$label":"ACTS_IN","name":"Elsa Valentin","type":"Role","_key":"89549","_from":"12645","_to":"52998"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71965","_from":"12645","_to":"43528"} +{"$label":"ACTS_IN","name":"Ariane Fouch\u00e9court","type":"Role","_key":"49739","_from":"12645","_to":"32543"} +{"$label":"ACTS_IN","name":"Odette Toulemonde","type":"Role","_key":"29865","_from":"12645","_to":"21124"} +{"$label":"ACTS_IN","name":"Nadia \/ Val\u00e9rie","type":"Role","_key":"117988","_from":"12646","_to":"69354"} +{"$label":"ACTS_IN","name":"Louise Pollet","type":"Role","_key":"62495","_from":"12646","_to":"39356"} +{"$label":"ACTS_IN","name":"Piotr Ladislav","type":"Role","_key":"105237","_from":"12647","_to":"61936"} +{"$label":"ACTS_IN","name":"F\u00e9lix","type":"Role","_key":"59980","_from":"12647","_to":"37860"} +{"$label":"ACTS_IN","name":"Toubib escalier","type":"Role","_key":"35840","_from":"12647","_to":"24328"} +{"$label":"ACTS_IN","name":"Charles Thiriot","type":"Role","_key":"30750","_from":"12647","_to":"21554"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"113495","_from":"12648","_to":"66872"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"106650","_from":"12648","_to":"62836"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Lucie","type":"Role","_key":"104001","_from":"12648","_to":"61187"} +{"$label":"ACTS_IN","name":"Ang\u00e9lique","type":"Role","_key":"65117","_from":"12648","_to":"40447"} +{"$label":"ACTS_IN","name":"Raimonde de Rols","type":"Role","_key":"32045","_from":"12649","_to":"22322"} +{"$label":"ACTS_IN","name":"Nanon","type":"Role","_key":"21024","_from":"12649","_to":"15383"} +{"$label":"ACTS_IN","name":"Le commissaire Dr\u00e9ant","type":"Role","_key":"96150","_from":"12651","_to":"56510"} +{"$label":"ACTS_IN","name":"Dave Colby","type":"Role","_key":"16787","_from":"12655","_to":"12653"} +{"$label":"ACTS_IN","name":"Mark Calder","type":"Role","_key":"16786","_from":"12654","_to":"12653"} +{"$label":"ACTS_IN","name":"Mrs. Helen Lombard","type":"Role","_key":"16798","_from":"12659","_to":"12656"} +{"$label":"ACTS_IN","name":"Philippe's Mother","type":"Role","_key":"16796","_from":"12658","_to":"12656"} +{"$label":"ACTS_IN","name":"Anne Larson","type":"Role","_key":"16791","_from":"12657","_to":"12656"} +{"$label":"ACTS_IN","name":"Portia","type":"Role","_key":"114654","_from":"12657","_to":"67543"} +{"$label":"ACTS_IN","name":"Anna Leonowens","type":"Role","_key":"109382","_from":"12657","_to":"64625"} +{"$label":"ACTS_IN","name":"Sister Clodagh","type":"Role","_key":"109058","_from":"12657","_to":"64443"} +{"$label":"ACTS_IN","name":"Miss Giddens","type":"Role","_key":"108949","_from":"12657","_to":"64386"} +{"$label":"ACTS_IN","name":"Hannah Jelkes","type":"Role","_key":"101486","_from":"12657","_to":"59732"} +{"$label":"ACTS_IN","name":"Lygia","type":"Role","_key":"71095","_from":"12657","_to":"43162"} +{"$label":"ACTS_IN","name":"Karen Holmes","type":"Role","_key":"69791","_from":"12657","_to":"42595"} +{"$label":"ACTS_IN","name":"Terry McKay","type":"Role","_key":"49276","_from":"12657","_to":"32271"} +{"$label":"ACTS_IN","name":"Nurse Plimsoll","type":"Role","_key":"40896","_from":"12657","_to":"27513"} +{"$label":"ACTS_IN","name":"Catherine de Montfaucon","type":"Role","_key":"25258","_from":"12657","_to":"18218"} +{"$label":"ACTS_IN","name":"Empress Matilda","type":"Role","_key":"104344","_from":"12658","_to":"61385"} +{"$label":"ACTS_IN","name":"Ada Ford","type":"Role","_key":"16836","_from":"12658","_to":"12675"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"16807","_from":"12663","_to":"12660"} +{"$label":"ACTS_IN","name":"Arthur Vance","type":"Role","_key":"16806","_from":"12662","_to":"12660"} +{"$label":"ACTS_IN","name":"Mary Wilton","type":"Role","_key":"16802","_from":"12661","_to":"12660"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"26574","_from":"12662","_to":"19095"} +{"$label":"ACTS_IN","name":"Louise, Ann's Cook","type":"Role","_key":"16816","_from":"12667","_to":"12664"} +{"$label":"ACTS_IN","name":"Waldo Lydecker","type":"Role","_key":"16812","_from":"12666","_to":"12664"} +{"$label":"ACTS_IN","name":"Laura Hunt","type":"Role","_key":"16810","_from":"12665","_to":"12664"} +{"$label":"ACTS_IN","name":"Mary Bristol","type":"Role","_key":"118781","_from":"12665","_to":"69838"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"117252","_from":"12665","_to":"68967"} +{"$label":"ACTS_IN","name":"Ellie May Lester","type":"Role","_key":"116575","_from":"12665","_to":"68621"} +{"$label":"ACTS_IN","name":"Ellen Berent Harland","type":"Role","_key":"113452","_from":"12665","_to":"66843"} +{"$label":"ACTS_IN","name":"Morgan Taylor","type":"Role","_key":"111595","_from":"12665","_to":"65883"} +{"$label":"ACTS_IN","name":"Dolly Harrison","type":"Role","_key":"111447","_from":"12665","_to":"65805"} +{"$label":"ACTS_IN","name":"Richard Ward Sturges","type":"Role","_key":"109409","_from":"12666","_to":"64642"} +{"$label":"ACTS_IN","name":"Serena Robbins","type":"Role","_key":"16825","_from":"12673","_to":"12668"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"16824","_from":"12672","_to":"12668"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"16823","_from":"12671","_to":"12668"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"16821","_from":"12670","_to":"12668"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"16819","_from":"12669","_to":"12668"} +{"$label":"ACTS_IN","name":"Big Mama (voice)","type":"Role","_key":"66916","_from":"12670","_to":"41314"} +{"$label":"ACTS_IN","name":"Mermeia Holographic Wow","type":"Role","_key":"107315","_from":"12671","_to":"63286"} +{"$label":"ACTS_IN","name":"Horatio Wilson","type":"Role","_key":"16840","_from":"12676","_to":"12675"} +{"$label":"ACTS_IN","name":"Mr. Bridger","type":"Role","_key":"63919","_from":"12676","_to":"39928"} +{"$label":"ACTS_IN","name":"Melina Nikolaos","type":"Role","_key":"16858","_from":"12684","_to":"12677"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"16857","_from":"12683","_to":"12677"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"16856","_from":"12682","_to":"12677"} +{"$label":"ACTS_IN","name":"Kirkbane","type":"Role","_key":"16854","_from":"12681","_to":"12677"} +{"$label":"ACTS_IN","name":"Sen. Donnovan","type":"Role","_key":"16850","_from":"12680","_to":"12677"} +{"$label":"ACTS_IN","name":"Charles-Andr\u00e9 Fargeau","type":"Role","_key":"16849","_from":"12679","_to":"12677"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"16847","_from":"12678","_to":"12677"} +{"$label":"ACTS_IN","name":"President of Earth","type":"Role","_key":"48047","_from":"12679","_to":"31592"} +{"$label":"ACTS_IN","name":"Maurice Dalbret","type":"Role","_key":"39366","_from":"12679","_to":"26621"} +{"$label":"ACTS_IN","name":"Colonel Lebel","type":"Role","_key":"33560","_from":"12679","_to":"23204"} +{"$label":"ACTS_IN","name":"Myriel","type":"Role","_key":"32004","_from":"12679","_to":"22303"} +{"$label":"ACTS_IN","name":"Mazelli","type":"Role","_key":"27310","_from":"12679","_to":"19632"} +{"$label":"ACTS_IN","name":"Vaudable","type":"Role","_key":"27118","_from":"12679","_to":"19519"} +{"$label":"ACTS_IN","name":"Monsieur Rebeque","type":"Role","_key":"21916","_from":"12679","_to":"16008"} +{"$label":"ACTS_IN","name":"Albert Carreaud","type":"Role","_key":"20777","_from":"12679","_to":"15193"} +{"$label":"ACTS_IN","name":"Amidou","type":"Role","_key":"71468","_from":"12681","_to":"43324"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Toledo","type":"Role","_key":"71406","_from":"12681","_to":"43302"} +{"$label":"ACTS_IN","name":"Beauregard","type":"Role","_key":"32683","_from":"12681","_to":"22701"} +{"$label":"ACTS_IN","name":"D\u00e9liah","type":"Role","_key":"88448","_from":"12683","_to":"52428"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"30965","_from":"12683","_to":"21695"} +{"$label":"ACTS_IN","name":"La grande","type":"Role","_key":"116857","_from":"12684","_to":"68795"} +{"$label":"DIRECTED","_key":"16864","_from":"12687","_to":"12685"} +{"$label":"ACTS_IN","name":"Eddie O'Hare","type":"Role","_key":"16863","_from":"12686","_to":"12685"} +{"$label":"ACTS_IN","name":"Big Russian Passenger","type":"Role","_key":"121385","_from":"12686","_to":"71326"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"112243","_from":"12686","_to":"66289"} +{"$label":"ACTS_IN","name":"Hutch","type":"Role","_key":"60202","_from":"12686","_to":"37980"} +{"$label":"ACTS_IN","name":"Ruthie Lovell","type":"Role","_key":"16875","_from":"12695","_to":"12688"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"16874","_from":"12694","_to":"12688"} +{"$label":"ACTS_IN","name":"Don Fontana, Lovell's Attorney","type":"Role","_key":"16873","_from":"12693","_to":"12688"} +{"$label":"ACTS_IN","name":"Mary Peterson","type":"Role","_key":"16870","_from":"12692","_to":"12688"} +{"$label":"ACTS_IN","name":"Dr. Paley","type":"Role","_key":"16869","_from":"12691","_to":"12688"} +{"$label":"ACTS_IN","name":"Dr. Paula Olsen","type":"Role","_key":"16868","_from":"12690","_to":"12688"} +{"$label":"DIRECTED","_key":"16865","_from":"12689","_to":"12688"} +{"$label":"DIRECTED","_key":"109995","_from":"12689","_to":"64997"} +{"$label":"DIRECTED","_key":"103440","_from":"12689","_to":"60841"} +{"$label":"DIRECTED","_key":"89295","_from":"12689","_to":"52863"} +{"$label":"DIRECTED","_key":"69047","_from":"12689","_to":"42264"} +{"$label":"DIRECTED","_key":"63657","_from":"12689","_to":"39821"} +{"$label":"DIRECTED","_key":"61109","_from":"12689","_to":"38622"} +{"$label":"DIRECTED","_key":"48869","_from":"12689","_to":"32046"} +{"$label":"DIRECTED","_key":"16963","_from":"12689","_to":"12733"} +{"$label":"ACTS_IN","name":"Countess Sofia Belinskya","type":"Role","_key":"117694","_from":"12690","_to":"69180"} +{"$label":"ACTS_IN","name":"Shelley Allen","type":"Role","_key":"111511","_from":"12690","_to":"65842"} +{"$label":"ACTS_IN","name":"Mrs Kingsley","type":"Role","_key":"97893","_from":"12690","_to":"57658"} +{"$label":"ACTS_IN","name":"Elizabeth James","type":"Role","_key":"57142","_from":"12690","_to":"36269"} +{"$label":"ACTS_IN","name":"Caroline Lane","type":"Role","_key":"46382","_from":"12690","_to":"30646"} +{"$label":"ACTS_IN","name":"Constance Haverford","type":"Role","_key":"41265","_from":"12690","_to":"27749"} +{"$label":"ACTS_IN","name":"Frank Walker","type":"Role","_key":"101183","_from":"12691","_to":"59606"} +{"$label":"ACTS_IN","name":"Dijon","type":"Role","_key":"66087","_from":"12691","_to":"40891"} +{"$label":"ACTS_IN","name":"Prahka Lasa","type":"Role","_key":"64718","_from":"12691","_to":"40297"} +{"$label":"ACTS_IN","name":"Frank Walker","type":"Role","_key":"56254","_from":"12691","_to":"35740"} +{"$label":"ACTS_IN","name":"Armando","type":"Role","_key":"25997","_from":"12691","_to":"18688"} +{"$label":"ACTS_IN","name":"Female Volunteer","type":"Role","_key":"16892","_from":"12704","_to":"12696"} +{"$label":"ACTS_IN","name":"Male Volunteer","type":"Role","_key":"16891","_from":"12703","_to":"12696"} +{"$label":"ACTS_IN","name":"Landry","type":"Role","_key":"16890","_from":"12702","_to":"12696"} +{"$label":"ACTS_IN","name":"Female Assistant","type":"Role","_key":"16889","_from":"12701","_to":"12696"} +{"$label":"ACTS_IN","name":"Noel Dichter","type":"Role","_key":"16887","_from":"12700","_to":"12696"} +{"$label":"ACTS_IN","name":"D'Arcy Nader","type":"Role","_key":"16886","_from":"12699","_to":"12696"} +{"$label":"ACTS_IN","name":"Chinese Waiter","type":"Role","_key":"16882","_from":"12698","_to":"12696"} +{"$label":"ACTS_IN","name":"Yevgeny Nourish","type":"Role","_key":"16881","_from":"12697","_to":"12696"} +{"$label":"DIRECTED","_key":"107234","_from":"12697","_to":"63230"} +{"$label":"ACTS_IN","name":"Patrick Wheeler","type":"Role","_key":"107205","_from":"12697","_to":"63230"} +{"$label":"ACTS_IN","name":"Evan Williams (Montr\u00e9al)","type":"Role","_key":"99441","_from":"12697","_to":"58590"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"97431","_from":"12697","_to":"57375"} +{"$label":"ACTS_IN","name":"Publishing Executive","type":"Role","_key":"56143","_from":"12697","_to":"35683"} +{"$label":"ACTS_IN","name":"Pokey Jones","type":"Role","_key":"49968","_from":"12697","_to":"32707"} +{"$label":"ACTS_IN","name":"Timothy","type":"Role","_key":"49498","_from":"12697","_to":"32401"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"49144","_from":"12697","_to":"32190"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"23205","_from":"12699","_to":"16826"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"106905","_from":"12700","_to":"63027"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"57505","_from":"12700","_to":"36439"} +{"$label":"ACTS_IN","name":"Ian McKinley","type":"Role","_key":"52864","_from":"12700","_to":"34263"} +{"$label":"ACTS_IN","name":"Decker","type":"Role","_key":"46909","_from":"12700","_to":"30925"} +{"$label":"ACTS_IN","name":"Reveller #1","type":"Role","_key":"107226","_from":"12701","_to":"63230"} +{"$label":"ACTS_IN","name":"Janet Black","type":"Role","_key":"93273","_from":"12704","_to":"54939"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"16901","_from":"12709","_to":"12705"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"16900","_from":"12708","_to":"12705"} +{"$label":"ACTS_IN","name":"Gary Winston","type":"Role","_key":"16899","_from":"12707","_to":"12705"} +{"$label":"ACTS_IN","name":"Griff Gilkyson","type":"Role","_key":"16897","_from":"12706","_to":"12705"} +{"$label":"ACTS_IN","name":"Marcus Aylesbury","type":"Role","_key":"111069","_from":"12707","_to":"65605"} +{"$label":"ACTS_IN","name":"Rizza","type":"Role","_key":"102074","_from":"12707","_to":"60052"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"101044","_from":"12707","_to":"59545"} +{"$label":"ACTS_IN","name":"William Keane","type":"Role","_key":"94644","_from":"12707","_to":"55764"} +{"$label":"ACTS_IN","name":"Patrick Connor","type":"Role","_key":"68562","_from":"12707","_to":"42034"} +{"$label":"ACTS_IN","name":"Yassen Gregorovich","type":"Role","_key":"58885","_from":"12707","_to":"37189"} +{"$label":"ACTS_IN","name":"Gary 'Jonesy' Jones","type":"Role","_key":"42186","_from":"12707","_to":"28261"} +{"$label":"ACTS_IN","name":"Maj. Richard D. Winters","type":"Role","_key":"26809","_from":"12707","_to":"19258"} +{"$label":"DIRECTED","_key":"16908","_from":"12714","_to":"12710"} +{"$label":"DIRECTED","_key":"16907","_from":"12713","_to":"12710"} +{"$label":"ACTS_IN","name":"Ricky Verona","type":"Role","_key":"16906","_from":"12712","_to":"12710"} +{"$label":"ACTS_IN","name":"Kaylo","type":"Role","_key":"16905","_from":"12711","_to":"12710"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"56882","_from":"12711","_to":"36109"} +{"$label":"ACTS_IN","name":"Pedro Sanchez","type":"Role","_key":"48294","_from":"12711","_to":"31715"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"93610","_from":"12712","_to":"55117"} +{"$label":"ACTS_IN","name":"Officer Gutierrez","type":"Role","_key":"48695","_from":"12712","_to":"31943"} +{"$label":"DIRECTED","_key":"116431","_from":"12713","_to":"68531"} +{"$label":"DIRECTED","_key":"103145","_from":"12713","_to":"60667"} +{"$label":"DIRECTED","_key":"116430","_from":"12714","_to":"68531"} +{"$label":"DIRECTED","_key":"103144","_from":"12714","_to":"60667"} +{"$label":"ACTS_IN","name":"Templeton Peck","type":"Role","_key":"16919","_from":"12717","_to":"12715"} +{"$label":"ACTS_IN","name":"Al Hyman","type":"Role","_key":"16918","_from":"12716","_to":"12715"} +{"$label":"ACTS_IN","name":"George Fitch","type":"Role","_key":"111436","_from":"12717","_to":"65798"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"104317","_from":"12717","_to":"61374"} +{"$label":"ACTS_IN","name":"Walker McCormick","type":"Role","_key":"72596","_from":"12717","_to":"43769"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"69441","_from":"12717","_to":"42438"} +{"$label":"ACTS_IN","name":"Stathis Borans","type":"Role","_key":"62707","_from":"12717","_to":"39426"} +{"$label":"ACTS_IN","name":"Maxwell Potterdam III","type":"Role","_key":"61388","_from":"12717","_to":"38727"} +{"$label":"ACTS_IN","name":"Stathis Borans","type":"Role","_key":"53780","_from":"12717","_to":"34659"} +{"$label":"ACTS_IN","name":"Suzanne Offer","type":"Role","_key":"16927","_from":"12719","_to":"12718"} +{"$label":"ACTS_IN","name":"Lt. Penelope Carpenter","type":"Role","_key":"102432","_from":"12719","_to":"60274"} +{"$label":"ACTS_IN","name":"Edie Cohen","type":"Role","_key":"97899","_from":"12719","_to":"57663"} +{"$label":"ACTS_IN","name":"Lori","type":"Role","_key":"55664","_from":"12719","_to":"35434"} +{"$label":"ACTS_IN","name":"Beth (voice)","type":"Role","_key":"46854","_from":"12719","_to":"30900"} +{"$label":"ACTS_IN","name":"Kat Ellis","type":"Role","_key":"45368","_from":"12719","_to":"30086"} +{"$label":"ACTS_IN","name":"Lisa Kramer","type":"Role","_key":"40832","_from":"12719","_to":"27489"} +{"$label":"ACTS_IN","name":"Mary Klein","type":"Role","_key":"22309","_from":"12719","_to":"16222"} +{"$label":"ACTS_IN","name":"Mary Magdalena","type":"Role","_key":"20455","_from":"12719","_to":"14968"} +{"$label":"ACTS_IN","name":"Evan Treborn, age 13","type":"Role","_key":"16948","_from":"12728","_to":"12723"} +{"$label":"ACTS_IN","name":"Dr. Redfield","type":"Role","_key":"16946","_from":"12727","_to":"12723"} +{"$label":"ACTS_IN","name":"Lenny Kagan","type":"Role","_key":"16944","_from":"12726","_to":"12723"} +{"$label":"ACTS_IN","name":"Evan Treborn","type":"Role","_key":"16941","_from":"12725","_to":"12723"} +{"$label":"DIRECTED","_key":"16940","_from":"12724","_to":"12723"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"121487","_from":"12725","_to":"71364"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"102095","_from":"12725","_to":"60066"} +{"$label":"ACTS_IN","name":"George Durham","type":"Role","_key":"94873","_from":"12725","_to":"55861"} +{"$label":"ACTS_IN","name":"Tom Leezak","type":"Role","_key":"87969","_from":"12725","_to":"52234"} +{"$label":"ACTS_IN","name":"Simon Green","type":"Role","_key":"71208","_from":"12725","_to":"43215"} +{"$label":"ACTS_IN","name":"Hank (uncredited)","type":"Role","_key":"67255","_from":"12725","_to":"41460"} +{"$label":"ACTS_IN","name":"Fisher","type":"Role","_key":"65374","_from":"12725","_to":"40552"} +{"$label":"ACTS_IN","name":"Jack Fuller","type":"Role","_key":"52128","_from":"12725","_to":"33981"} +{"$label":"ACTS_IN","name":"Oliver Martin","type":"Role","_key":"51790","_from":"12725","_to":"33797"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"51150","_from":"12725","_to":"33367"} +{"$label":"ACTS_IN","name":"Elliot (voice)","type":"Role","_key":"46852","_from":"12725","_to":"30900"} +{"$label":"ACTS_IN","name":"Jake Fischer","type":"Role","_key":"33150","_from":"12725","_to":"22958"} +{"$label":"ACTS_IN","name":"Tom Stansfield","type":"Role","_key":"23830","_from":"12725","_to":"17282"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"103166","_from":"12726","_to":"60682"} +{"$label":"ACTS_IN","name":"Fulton Reed","type":"Role","_key":"68247","_from":"12726","_to":"41905"} +{"$label":"ACTS_IN","name":"Fulton Reed","type":"Role","_key":"65020","_from":"12726","_to":"40406"} +{"$label":"ACTS_IN","name":"Maxwell \"Max\" Kane","type":"Role","_key":"57149","_from":"12726","_to":"36270"} +{"$label":"ACTS_IN","name":"Billy Z","type":"Role","_key":"56798","_from":"12726","_to":"36065"} +{"$label":"ACTS_IN","name":"Gunnars","type":"Role","_key":"47188","_from":"12726","_to":"31106"} +{"$label":"ACTS_IN","name":"Pnub","type":"Role","_key":"44032","_from":"12726","_to":"29363"} +{"$label":"ACTS_IN","name":"Lawyer","type":"Role","_key":"59053","_from":"12727","_to":"37275"} +{"$label":"ACTS_IN","name":"The Real Avery","type":"Role","_key":"37678","_from":"12727","_to":"25539"} +{"$label":"ACTS_IN","name":"Poot","type":"Role","_key":"60900","_from":"12728","_to":"38475"} +{"$label":"ACTS_IN","name":"Hostage Boy","type":"Role","_key":"56227","_from":"12728","_to":"35727"} +{"$label":"ACTS_IN","name":"Merrick's Mother","type":"Role","_key":"16958","_from":"12731","_to":"12729"} +{"$label":"ACTS_IN","name":"Night Porter","type":"Role","_key":"16956","_from":"12730","_to":"12729"} +{"$label":"ACTS_IN","name":"The Poacher","type":"Role","_key":"94496","_from":"12730","_to":"55653"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"62873","_from":"12730","_to":"39502"} +{"$label":"ACTS_IN","name":"Fisher","type":"Role","_key":"52354","_from":"12730","_to":"34076"} +{"$label":"ACTS_IN","name":"Pasha","type":"Role","_key":"48874","_from":"12730","_to":"32046"} +{"$label":"ACTS_IN","name":"Elizabeth Elliot","type":"Role","_key":"110897","_from":"12731","_to":"65506"} +{"$label":"ACTS_IN","name":"Gertie","type":"Role","_key":"21749","_from":"12731","_to":"15878"} +{"$label":"ACTS_IN","name":"Mrs. Hiller","type":"Role","_key":"16972","_from":"12737","_to":"12733"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"16968","_from":"12736","_to":"12733"} +{"$label":"ACTS_IN","name":"Gracie Hiller","type":"Role","_key":"16966","_from":"12735","_to":"12733"} +{"$label":"ACTS_IN","name":"Mitch Hiller","type":"Role","_key":"16965","_from":"12734","_to":"12733"} +{"$label":"ACTS_IN","name":"Gwens Love Interest","type":"Role","_key":"91594","_from":"12734","_to":"54001"} +{"$label":"ACTS_IN","name":"Cliff Secord","type":"Role","_key":"61961","_from":"12734","_to":"39003"} +{"$label":"ACTS_IN","name":"Quincey P. Morris","type":"Role","_key":"41772","_from":"12734","_to":"28027"} +{"$label":"ACTS_IN","name":"Despin","type":"Role","_key":"97572","_from":"12736","_to":"57454"} +{"$label":"ACTS_IN","name":"Daniel Pearl","type":"Role","_key":"17208","_from":"12736","_to":"12891"} +{"$label":"ACTS_IN","name":"Margie","type":"Role","_key":"64023","_from":"12737","_to":"39967"} +{"$label":"ACTS_IN","name":"Susan Baker","type":"Role","_key":"45298","_from":"12737","_to":"30044"} +{"$label":"ACTS_IN","name":"Madame Chanel","type":"Role","_key":"16981","_from":"12741","_to":"12738"} +{"$label":"ACTS_IN","name":"Pierrette","type":"Role","_key":"16978","_from":"12740","_to":"12738"} +{"$label":"ACTS_IN","name":"Mamy","type":"Role","_key":"16974","_from":"12739","_to":"12738"} +{"$label":"ACTS_IN","name":"Henriette Stenay","type":"Role","_key":"41721","_from":"12739","_to":"27994"} +{"$label":"ACTS_IN","name":"Margot Langlois","type":"Role","_key":"30660","_from":"12739","_to":"21523"} +{"$label":"ACTS_IN","name":"Berthe Heon","type":"Role","_key":"30013","_from":"12739","_to":"21177"} +{"$label":"ACTS_IN","name":"Madame Yvonne","type":"Role","_key":"21318","_from":"12739","_to":"15589"} +{"$label":"ACTS_IN","name":"Madame Pasquier","type":"Role","_key":"17627","_from":"12739","_to":"13156"} +{"$label":"ACTS_IN","name":"Grandmother (voice)","type":"Role","_key":"17460","_from":"12739","_to":"13055"} +{"$label":"ACTS_IN","name":"Madame de Blayac","type":"Role","_key":"91164","_from":"12740","_to":"53774"} +{"$label":"ACTS_IN","name":"Mathilde Bauchard","type":"Role","_key":"90410","_from":"12740","_to":"53419"} +{"$label":"ACTS_IN","name":"Mary of Guise","type":"Role","_key":"32261","_from":"12740","_to":"22475"} +{"$label":"ACTS_IN","name":"Fanny Ardant","type":"Role","_key":"29497","_from":"12740","_to":"20909"} +{"$label":"ACTS_IN","name":"Barbara Becker","type":"Role","_key":"21539","_from":"12740","_to":"15751"} +{"$label":"ACTS_IN","name":"Fanny Forestier (Pigalle)","type":"Role","_key":"19864","_from":"12740","_to":"14635"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105586","_from":"12741","_to":"62135"} +{"$label":"ACTS_IN","name":"Juliette Bonaventure","type":"Role","_key":"70100","_from":"12741","_to":"42738"} +{"$label":"ACTS_IN","name":"Mamadou","type":"Role","_key":"24056","_from":"12741","_to":"17440"} +{"$label":"ACTS_IN","name":"Isaac Foster","type":"Role","_key":"16995","_from":"12752","_to":"12742"} +{"$label":"ACTS_IN","name":"Jack Vincent","type":"Role","_key":"16994","_from":"12751","_to":"12742"} +{"$label":"ACTS_IN","name":"Mrs. Wilcox","type":"Role","_key":"16993","_from":"12750","_to":"12742"} +{"$label":"ACTS_IN","name":"Mr. Wilcox","type":"Role","_key":"16992","_from":"12749","_to":"12742"} +{"$label":"ACTS_IN","name":"Canon Van Stone","type":"Role","_key":"16991","_from":"12748","_to":"12742"} +{"$label":"ACTS_IN","name":"Mrs. Smith","type":"Role","_key":"16990","_from":"12747","_to":"12742"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"16989","_from":"12746","_to":"12742"} +{"$label":"ACTS_IN","name":"Mary Foster","type":"Role","_key":"16988","_from":"12745","_to":"12742"} +{"$label":"ACTS_IN","name":"Yanko","type":"Role","_key":"16984","_from":"12744","_to":"12742"} +{"$label":"DIRECTED","_key":"16982","_from":"12743","_to":"12742"} +{"$label":"DIRECTED","_key":"56945","_from":"12743","_to":"36142"} +{"$label":"DIRECTED","_key":"52497","_from":"12743","_to":"34147"} +{"$label":"DIRECTED","_key":"100237","_from":"12744","_to":"59116"} +{"$label":"DIRECTED","_key":"21050","_from":"12744","_to":"15398"} +{"$label":"ACTS_IN","name":"Brother Guilbert","type":"Role","_key":"94799","_from":"12744","_to":"55826"} +{"$label":"ACTS_IN","name":"Dr. Martinez","type":"Role","_key":"90783","_from":"12744","_to":"53571"} +{"$label":"ACTS_IN","name":"Marius de Romanus","type":"Role","_key":"73123","_from":"12744","_to":"43980"} +{"$label":"ACTS_IN","name":"Christian de Neuvillette","type":"Role","_key":"71475","_from":"12744","_to":"43327"} +{"$label":"ACTS_IN","name":"Francesco","type":"Role","_key":"66194","_from":"12744","_to":"40953"} +{"$label":"ACTS_IN","name":"Ashe Corven","type":"Role","_key":"63980","_from":"12744","_to":"39954"} +{"$label":"ACTS_IN","name":"La M\u00f4le","type":"Role","_key":"63438","_from":"12744","_to":"39735"} +{"$label":"ACTS_IN","name":"Deucalion","type":"Role","_key":"25297","_from":"12744","_to":"18235"} +{"$label":"ACTS_IN","name":"Jean-Baptiste Le Guen","type":"Role","_key":"23101","_from":"12744","_to":"16748"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"110093","_from":"12745","_to":"65055"} +{"$label":"ACTS_IN","name":"Reuben Dewy","type":"Role","_key":"114886","_from":"12746","_to":"67663"} +{"$label":"ACTS_IN","name":"Mildeye","type":"Role","_key":"23214","_from":"12746","_to":"16831"} +{"$label":"ACTS_IN","name":"Turpin","type":"Role","_key":"46718","_from":"12748","_to":"30833"} +{"$label":"ACTS_IN","name":"Friar Tuck","type":"Role","_key":"39349","_from":"12748","_to":"26613"} +{"$label":"ACTS_IN","name":"Cliff Sniffton (bank manager)","type":"Role","_key":"36887","_from":"12748","_to":"25001"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"31746","_from":"12748","_to":"22160"} +{"$label":"ACTS_IN","name":"P.T. Barnum","type":"Role","_key":"26226","_from":"12748","_to":"18837"} +{"$label":"ACTS_IN","name":"Billy The Cowboy","type":"Role","_key":"96081","_from":"12752","_to":"56476"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"35643","_from":"12752","_to":"24225"} +{"$label":"ACTS_IN","name":"Ronnie Ackerman","type":"Role","_key":"20620","_from":"12752","_to":"15083"} +{"$label":"ACTS_IN","name":"Gold Lick Citizen","type":"Role","_key":"17003","_from":"12759","_to":"12754"} +{"$label":"ACTS_IN","name":"Kasey","type":"Role","_key":"17002","_from":"12758","_to":"12754"} +{"$label":"ACTS_IN","name":"Fan","type":"Role","_key":"17001","_from":"12757","_to":"12754"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"17000","_from":"12756","_to":"12754"} +{"$label":"ACTS_IN","name":"Kelly Graham","type":"Role","_key":"16998","_from":"12755","_to":"12754"} +{"$label":"ACTS_IN","name":"Django","type":"Role","_key":"17012","_from":"12765","_to":"12760"} +{"$label":"ACTS_IN","name":"Bittner","type":"Role","_key":"17011","_from":"12764","_to":"12760"} +{"$label":"ACTS_IN","name":"Macke","type":"Role","_key":"17010","_from":"12763","_to":"12760"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"17008","_from":"12762","_to":"12760"} +{"$label":"DIRECTED","_key":"17004","_from":"12761","_to":"12760"} +{"$label":"DIRECTED","_key":"91344","_from":"12761","_to":"53871"} +{"$label":"DIRECTED","_key":"90343","_from":"12761","_to":"53394"} +{"$label":"ACTS_IN","name":"Krelle","type":"Role","_key":"121220","_from":"12762","_to":"71206"} +{"$label":"ACTS_IN","name":"Jesper","type":"Role","_key":"103369","_from":"12762","_to":"60810"} +{"$label":"ACTS_IN","name":"Steso","type":"Role","_key":"102356","_from":"12762","_to":"60227"} +{"$label":"ACTS_IN","name":"August","type":"Role","_key":"98917","_from":"12762","_to":"58282"} +{"$label":"ACTS_IN","name":"Chartrand","type":"Role","_key":"94511","_from":"12762","_to":"55655"} +{"$label":"ACTS_IN","name":"Flame","type":"Role","_key":"51285","_from":"12762","_to":"33443"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"40412","_from":"12762","_to":"27245"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"90311","_from":"12765","_to":"53386"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"88300","_from":"12765","_to":"52370"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"88176","_from":"12765","_to":"52318"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"69265","_from":"12765","_to":"42350"} +{"$label":"ACTS_IN","name":"Leutnant Wolff","type":"Role","_key":"49239","_from":"12765","_to":"32251"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"17017","_from":"12769","_to":"12766"} +{"$label":"ACTS_IN","name":"Student's Father","type":"Role","_key":"17016","_from":"12768","_to":"12766"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"17015","_from":"12767","_to":"12766"} +{"$label":"ACTS_IN","name":"Schwedtmann","type":"Role","_key":"17027","_from":"12773","_to":"12770"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"17026","_from":"12772","_to":"12770"} +{"$label":"ACTS_IN","name":"Naumann","type":"Role","_key":"17024","_from":"12771","_to":"12770"} +{"$label":"ACTS_IN","name":"Mohamed Karaman","type":"Role","_key":"17035","_from":"12777","_to":"12774"} +{"$label":"ACTS_IN","name":"Sandra Bradford","type":"Role","_key":"17034","_from":"12776","_to":"12774"} +{"$label":"ACTS_IN","name":"Raquel Martinez","type":"Role","_key":"17033","_from":"12775","_to":"12774"} +{"$label":"ACTS_IN","name":"Sunny","type":"Role","_key":"94320","_from":"12775","_to":"55539"} +{"$label":"ACTS_IN","name":"Anna Ran","type":"Role","_key":"55784","_from":"12775","_to":"35507"} +{"$label":"ACTS_IN","name":"Miss Hannah Hunter","type":"Role","_key":"113516","_from":"12776","_to":"66881"} +{"$label":"ACTS_IN","name":"Louisa Pierce","type":"Role","_key":"68691","_from":"12776","_to":"42093"} +{"$label":"ACTS_IN","name":"Leo Gillette","type":"Role","_key":"100646","_from":"12777","_to":"59344"} +{"$label":"ACTS_IN","name":"Lew Vogel","type":"Role","_key":"51089","_from":"12777","_to":"33334"} +{"$label":"ACTS_IN","name":"Insp. Japp","type":"Role","_key":"41664","_from":"12777","_to":"27954"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"22983","_from":"12777","_to":"16666"} +{"$label":"ACTS_IN","name":"Polyperchon","type":"Role","_key":"17057","_from":"12791","_to":"12778"} +{"$label":"ACTS_IN","name":"Leonnatus","type":"Role","_key":"17056","_from":"12790","_to":"12778"} +{"$label":"ACTS_IN","name":"Perdiccas","type":"Role","_key":"17055","_from":"12789","_to":"12778"} +{"$label":"ACTS_IN","name":"Bagoas","type":"Role","_key":"17054","_from":"12788","_to":"12778"} +{"$label":"ACTS_IN","name":"Greek Officer","type":"Role","_key":"17053","_from":"12787","_to":"12778"} +{"$label":"ACTS_IN","name":"Pausanius","type":"Role","_key":"17052","_from":"12786","_to":"12778"} +{"$label":"ACTS_IN","name":"Roxane's Father","type":"Role","_key":"17051","_from":"12785","_to":"12778"} +{"$label":"ACTS_IN","name":"Cleitus","type":"Role","_key":"17049","_from":"12784","_to":"12778"} +{"$label":"ACTS_IN","name":"Parmenion","type":"Role","_key":"17048","_from":"12783","_to":"12778"} +{"$label":"ACTS_IN","name":"Young Nearchus","type":"Role","_key":"17046","_from":"12782","_to":"12778"} +{"$label":"ACTS_IN","name":"Young Hephaistion","type":"Role","_key":"17045","_from":"12781","_to":"12778"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"17043","_from":"12780","_to":"12778"} +{"$label":"ACTS_IN","name":"Child Alexander","type":"Role","_key":"17042","_from":"12779","_to":"12778"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"91624","_from":"12780","_to":"54025"} +{"$label":"ACTS_IN","name":"Marita","type":"Role","_key":"32640","_from":"12780","_to":"22682"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"60668","_from":"12783","_to":"38296"} +{"$label":"ACTS_IN","name":"Emmett Linscott","type":"Role","_key":"55476","_from":"12783","_to":"35352"} +{"$label":"ACTS_IN","name":"Father Carlin","type":"Role","_key":"37045","_from":"12783","_to":"25107"} +{"$label":"ACTS_IN","name":"fred","type":"Role","_key":"111286","_from":"12784","_to":"65723"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"91847","_from":"12784","_to":"54185"} +{"$label":"ACTS_IN","name":"Paco Miralles","type":"Role","_key":"114586","_from":"12785","_to":"67500"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"62426","_from":"12785","_to":"39328"} +{"$label":"ACTS_IN","name":"Alcalet","type":"Role","_key":"45820","_from":"12785","_to":"30302"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34694","_from":"12785","_to":"23728"} +{"$label":"ACTS_IN","name":"le tueur fou","type":"Role","_key":"34089","_from":"12785","_to":"23422"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33043","_from":"12785","_to":"22898"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"24022","_from":"12785","_to":"17418"} +{"$label":"ACTS_IN","name":"Fabrice","type":"Role","_key":"21485","_from":"12785","_to":"15717"} +{"$label":"ACTS_IN","name":"Jonny Quid","type":"Role","_key":"96786","_from":"12786","_to":"56924"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"91848","_from":"12786","_to":"54185"} +{"$label":"ACTS_IN","name":"Callum","type":"Role","_key":"70164","_from":"12786","_to":"42770"} +{"$label":"ACTS_IN","name":"Garsiv","type":"Role","_key":"54574","_from":"12786","_to":"34967"} +{"$label":"ACTS_IN","name":"Rob Greton","type":"Role","_key":"38776","_from":"12786","_to":"26197"} +{"$label":"ACTS_IN","name":"2nd Lt. O'Grady","type":"Role","_key":"97527","_from":"12787","_to":"57426"} +{"$label":"ACTS_IN","name":"Victor Budarin","type":"Role","_key":"94592","_from":"12789","_to":"55732"} +{"$label":"ACTS_IN","name":"Flt Sgt Simkins","type":"Role","_key":"24269","_from":"12789","_to":"17581"} +{"$label":"DIRECTED","_key":"17070","_from":"12798","_to":"12792"} +{"$label":"ACTS_IN","name":"Solomon","type":"Role","_key":"17069","_from":"12797","_to":"12792"} +{"$label":"ACTS_IN","name":"Patricio","type":"Role","_key":"17068","_from":"12796","_to":"12792"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"17067","_from":"12795","_to":"12792"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"17065","_from":"12794","_to":"12792"} +{"$label":"ACTS_IN","name":"Mrs. Hargraves","type":"Role","_key":"17063","_from":"12793","_to":"12792"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"116645","_from":"12793","_to":"68665"} +{"$label":"ACTS_IN","name":"Maggie Walker","type":"Role","_key":"109113","_from":"12793","_to":"64469"} +{"$label":"ACTS_IN","name":"Miss Matilda Crawley","type":"Role","_key":"71167","_from":"12793","_to":"43195"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"53106","_from":"12793","_to":"34364"} +{"$label":"ACTS_IN","name":"Nachtschwester","type":"Role","_key":"41267","_from":"12793","_to":"27749"} +{"$label":"ACTS_IN","name":"Mrs. Croft","type":"Role","_key":"36867","_from":"12793","_to":"24998"} +{"$label":"ACTS_IN","name":"Maddy","type":"Role","_key":"20072","_from":"12793","_to":"14764"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"17571","_from":"12793","_to":"13129"} +{"$label":"ACTS_IN","name":"Stuart Sawyer","type":"Role","_key":"116600","_from":"12794","_to":"68641"} +{"$label":"ACTS_IN","name":"Ian Chadwick","type":"Role","_key":"109348","_from":"12797","_to":"64596"} +{"$label":"ACTS_IN","name":"J.J.J. Pictureman \/ Mortician","type":"Role","_key":"95210","_from":"12797","_to":"56017"} +{"$label":"ACTS_IN","name":"Baldo","type":"Role","_key":"94752","_from":"12797","_to":"55802"} +{"$label":"DIRECTED","_key":"62987","_from":"12798","_to":"39544"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"17084","_from":"12808","_to":"12799"} +{"$label":"ACTS_IN","name":"Antonio Fuentes","type":"Role","_key":"17083","_from":"12807","_to":"12799"} +{"$label":"ACTS_IN","name":"Judd Marshall","type":"Role","_key":"17082","_from":"12806","_to":"12799"} +{"$label":"ACTS_IN","name":"Juan Fuentes","type":"Role","_key":"17081","_from":"12805","_to":"12799"} +{"$label":"ACTS_IN","name":"Cathy Stewart","type":"Role","_key":"17079","_from":"12804","_to":"12799"} +{"$label":"ACTS_IN","name":"Nan Whitman","type":"Role","_key":"17078","_from":"12803","_to":"12799"} +{"$label":"ACTS_IN","name":"Richard Whitman","type":"Role","_key":"17077","_from":"12802","_to":"12799"} +{"$label":"ACTS_IN","name":"Great Grandma","type":"Role","_key":"17076","_from":"12801","_to":"12799"} +{"$label":"ACTS_IN","name":"Alex Whitman","type":"Role","_key":"17072","_from":"12800","_to":"12799"} +{"$label":"ACTS_IN","name":"Hudson","type":"Role","_key":"111138","_from":"12800","_to":"65639"} +{"$label":"ACTS_IN","name":"Mike O'Donnell (Adult)","type":"Role","_key":"110784","_from":"12800","_to":"65438"} +{"$label":"ACTS_IN","name":"Morrie","type":"Role","_key":"100174","_from":"12800","_to":"59089"} +{"$label":"ACTS_IN","name":"Leslie Edwards","type":"Role","_key":"99684","_from":"12800","_to":"58778"} +{"$label":"ACTS_IN","name":"Joe Tyler","type":"Role","_key":"91434","_from":"12800","_to":"53928"} +{"$label":"ACTS_IN","name":"Oscar Novak","type":"Role","_key":"64097","_from":"12800","_to":"40002"} +{"$label":"ACTS_IN","name":"Oz","type":"Role","_key":"18494","_from":"12800","_to":"13698"} +{"$label":"ACTS_IN","name":"Nicholas \"Oz\" Oseransky","type":"Role","_key":"17988","_from":"12800","_to":"13374"} +{"$label":"ACTS_IN","name":"Shirley","type":"Role","_key":"72062","_from":"12803","_to":"43573"} +{"$label":"ACTS_IN","name":"Hilly Burns","type":"Role","_key":"70655","_from":"12803","_to":"42994"} +{"$label":"ACTS_IN","name":"Pat Nixon","type":"Role","_key":"51602","_from":"12803","_to":"33668"} +{"$label":"ACTS_IN","name":"Agnes Finch","type":"Role","_key":"46976","_from":"12803","_to":"30977"} +{"$label":"ACTS_IN","name":"Barbara Jane Bookman","type":"Role","_key":"35378","_from":"12803","_to":"24080"} +{"$label":"ACTS_IN","name":"Debbie Stone","type":"Role","_key":"108521","_from":"12804","_to":"64143"} +{"$label":"ACTS_IN","name":"Deb","type":"Role","_key":"72143","_from":"12804","_to":"43605"} +{"$label":"ACTS_IN","name":"Jack Pino","type":"Role","_key":"104133","_from":"12806","_to":"61261"} +{"$label":"ACTS_IN","name":"Tourist Girl","type":"Role","_key":"48041","_from":"12808","_to":"31586"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"17090","_from":"12812","_to":"12809"} +{"$label":"DIRECTED","_key":"17087","_from":"12811","_to":"12809"} +{"$label":"DIRECTED","_key":"17086","_from":"12810","_to":"12809"} +{"$label":"DIRECTED","_key":"96190","_from":"12810","_to":"56525"} +{"$label":"DIRECTED","_key":"96189","_from":"12811","_to":"56525"} +{"$label":"ACTS_IN","name":"Doc Miles","type":"Role","_key":"103141","_from":"12812","_to":"60667"} +{"$label":"ACTS_IN","name":"Doyle Hargraves","type":"Role","_key":"89893","_from":"12812","_to":"53200"} +{"$label":"ACTS_IN","name":"Pastor Phil","type":"Role","_key":"88615","_from":"12812","_to":"52508"} +{"$label":"ACTS_IN","name":"Leroy Wasley","type":"Role","_key":"69484","_from":"12812","_to":"42450"} +{"$label":"ACTS_IN","name":"Belmont","type":"Role","_key":"47890","_from":"12812","_to":"31514"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"32536","_from":"12812","_to":"22626"} +{"$label":"DIRECTED","_key":"17102","_from":"12818","_to":"12813"} +{"$label":"ACTS_IN","name":"Maria Kirk","type":"Role","_key":"17099","_from":"12817","_to":"12813"} +{"$label":"ACTS_IN","name":"Susan Williams","type":"Role","_key":"17096","_from":"12816","_to":"12813"} +{"$label":"ACTS_IN","name":"Jennifer Williams","type":"Role","_key":"17095","_from":"12815","_to":"12813"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"17093","_from":"12814","_to":"12813"} +{"$label":"ACTS_IN","name":"Jake Sawyer","type":"Role","_key":"100276","_from":"12814","_to":"59136"} +{"$label":"ACTS_IN","name":"Varek","type":"Role","_key":"99129","_from":"12814","_to":"58414"} +{"$label":"ACTS_IN","name":"Ethan Kendrick","type":"Role","_key":"62014","_from":"12814","_to":"39042"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"102016","_from":"12815","_to":"60027"} +{"$label":"ACTS_IN","name":"Sandy Strickland","type":"Role","_key":"98041","_from":"12815","_to":"57729"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"97670","_from":"12815","_to":"57513"} +{"$label":"ACTS_IN","name":"Misty","type":"Role","_key":"62551","_from":"12815","_to":"39367"} +{"$label":"ACTS_IN","name":"Bashira Kincaid","type":"Role","_key":"59468","_from":"12815","_to":"37557"} +{"$label":"ACTS_IN","name":"Stokely 'Stokes' Mitchell","type":"Role","_key":"52786","_from":"12815","_to":"34242"} +{"$label":"ACTS_IN","name":"Georgina Tuskin","type":"Role","_key":"27879","_from":"12815","_to":"19989"} +{"$label":"ACTS_IN","name":"Nan","type":"Role","_key":"24186","_from":"12815","_to":"17522"} +{"$label":"ACTS_IN","name":"Ginny","type":"Role","_key":"23847","_from":"12815","_to":"17287"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"117826","_from":"12816","_to":"69258"} +{"$label":"ACTS_IN","name":"Jillian Cartwright","type":"Role","_key":"104447","_from":"12816","_to":"61433"} +{"$label":"ACTS_IN","name":"Viola Frye","type":"Role","_key":"98742","_from":"12816","_to":"58191"} +{"$label":"ACTS_IN","name":"Sam Rogers","type":"Role","_key":"68728","_from":"12816","_to":"42115"} +{"$label":"ACTS_IN","name":"Woman in Black","type":"Role","_key":"107192","_from":"12817","_to":"63224"} +{"$label":"DIRECTED","_key":"99121","_from":"12818","_to":"58409"} +{"$label":"DIRECTED","_key":"72289","_from":"12818","_to":"43669"} +{"$label":"DIRECTED","_key":"55416","_from":"12818","_to":"35323"} +{"$label":"DIRECTED","_key":"17118","_from":"12818","_to":"12821"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"17117","_from":"12830","_to":"12821"} +{"$label":"ACTS_IN","name":"John Fleming","type":"Role","_key":"17116","_from":"12829","_to":"12821"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"17115","_from":"12828","_to":"12821"} +{"$label":"ACTS_IN","name":"Toshio Saeki","type":"Role","_key":"17113","_from":"12827","_to":"12821"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"17111","_from":"12826","_to":"12821"} +{"$label":"ACTS_IN","name":"Lacey","type":"Role","_key":"17110","_from":"12825","_to":"12821"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"17109","_from":"12824","_to":"12821"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"17108","_from":"12823","_to":"12821"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"17106","_from":"12822","_to":"12821"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"102794","_from":"12822","_to":"60470"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"102700","_from":"12822","_to":"60423"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"100418","_from":"12822","_to":"59213"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"99295","_from":"12822","_to":"58511"} +{"$label":"ACTS_IN","name":"Cecilia Banks","type":"Role","_key":"98955","_from":"12822","_to":"58296"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"52943","_from":"12822","_to":"34304"} +{"$label":"ACTS_IN","name":"Elyse","type":"Role","_key":"48724","_from":"12822","_to":"31954"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"99102","_from":"12823","_to":"58388"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"61683","_from":"12823","_to":"38856"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"33066","_from":"12823","_to":"22904"} +{"$label":"ACTS_IN","name":"Melody","type":"Role","_key":"18866","_from":"12823","_to":"13924"} +{"$label":"ACTS_IN","name":"Madison McBride","type":"Role","_key":"118754","_from":"12825","_to":"69832"} +{"$label":"ACTS_IN","name":"Carly","type":"Role","_key":"114409","_from":"12825","_to":"67392"} +{"$label":"ACTS_IN","name":"Ashley Carlson","type":"Role","_key":"48691","_from":"12825","_to":"31943"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"33091","_from":"12825","_to":"22927"} +{"$label":"ACTS_IN","name":"Brian Saunders","type":"Role","_key":"98487","_from":"12826","_to":"58035"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"17137","_from":"12826","_to":"12838"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"110700","_from":"12828","_to":"65397"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"68549","_from":"12828","_to":"42032"} +{"$label":"ACTS_IN","name":"Ralphine","type":"Role","_key":"45233","_from":"12829","_to":"30022"} +{"$label":"ACTS_IN","name":"Pollen","type":"Role","_key":"100841","_from":"12830","_to":"59452"} +{"$label":"ACTS_IN","name":"Tamara Riley","type":"Role","_key":"62127","_from":"12830","_to":"39125"} +{"$label":"ACTS_IN","name":"Nora Clark","type":"Role","_key":"56405","_from":"12830","_to":"35840"} +{"$label":"ACTS_IN","name":"Huger","type":"Role","_key":"17129","_from":"12837","_to":"12831"} +{"$label":"ACTS_IN","name":"Mrs. Kendrick","type":"Role","_key":"17127","_from":"12836","_to":"12831"} +{"$label":"ACTS_IN","name":"Ted Dillard","type":"Role","_key":"17125","_from":"12835","_to":"12831"} +{"$label":"ACTS_IN","name":"Aunt Belle Massey","type":"Role","_key":"17124","_from":"12834","_to":"12831"} +{"$label":"ACTS_IN","name":"Amy Bradford Dillard","type":"Role","_key":"17122","_from":"12833","_to":"12831"} +{"$label":"ACTS_IN","name":"Buck Cantrell","type":"Role","_key":"17121","_from":"12832","_to":"12831"} +{"$label":"ACTS_IN","name":"Pat Denning","type":"Role","_key":"25361","_from":"12832","_to":"18284"} +{"$label":"ACTS_IN","name":"Mona James","type":"Role","_key":"120065","_from":"12833","_to":"70508"} +{"$label":"ACTS_IN","name":"Millie Ray","type":"Role","_key":"111002","_from":"12833","_to":"65563"} +{"$label":"ACTS_IN","name":"Suzie Robinson","type":"Role","_key":"120060","_from":"12836","_to":"70508"} +{"$label":"DIRECTED","_key":"17288","_from":"12837","_to":"12944"} +{"$label":"ACTS_IN","name":"Toshio Saeki","type":"Role","_key":"17141","_from":"12846","_to":"12838"} +{"$label":"ACTS_IN","name":"Kayako Saeki","type":"Role","_key":"17140","_from":"12845","_to":"12838"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"17136","_from":"12844","_to":"12838"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"17135","_from":"12843","_to":"12838"} +{"$label":"ACTS_IN","name":"Naoko","type":"Role","_key":"17134","_from":"12842","_to":"12838"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"17133","_from":"12841","_to":"12838"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"17132","_from":"12840","_to":"12838"} +{"$label":"DIRECTED","_key":"17131","_from":"12839","_to":"12838"} +{"$label":"DIRECTED","_key":"93492","_from":"12839","_to":"55048"} +{"$label":"ACTS_IN","name":"Mrs. Gill","type":"Role","_key":"17147","_from":"12852","_to":"12847"} +{"$label":"ACTS_IN","name":"Commodore Gill","type":"Role","_key":"17146","_from":"12851","_to":"12847"} +{"$label":"ACTS_IN","name":"Jonathan Cooper","type":"Role","_key":"17145","_from":"12850","_to":"12847"} +{"$label":"ACTS_IN","name":"Det. Insp. Wilfried 'Ordinary' Smith","type":"Role","_key":"17144","_from":"12849","_to":"12847"} +{"$label":"ACTS_IN","name":"Eve Gill","type":"Role","_key":"17143","_from":"12848","_to":"12847"} +{"$label":"ACTS_IN","name":"Orry Baxter","type":"Role","_key":"118543","_from":"12848","_to":"69698"} +{"$label":"ACTS_IN","name":"Helen Phillips","type":"Role","_key":"94600","_from":"12848","_to":"55738"} +{"$label":"ACTS_IN","name":"Charles Adare","type":"Role","_key":"29896","_from":"12849","_to":"21141"} +{"$label":"ACTS_IN","name":"Sir Richard","type":"Role","_key":"25976","_from":"12849","_to":"18672"} +{"$label":"ACTS_IN","name":"Wing Commander Guy Gibson, V.C., D.S.O., D.F.C.","type":"Role","_key":"93489","_from":"12850","_to":"55047"} +{"$label":"ACTS_IN","name":"Inspector Poole","type":"Role","_key":"115158","_from":"12851","_to":"67814"} +{"$label":"ACTS_IN","name":"Miss Amelia Fritton","type":"Role","_key":"110421","_from":"12851","_to":"65235"} +{"$label":"ACTS_IN","name":"Ebenezer Scrooge","type":"Role","_key":"93326","_from":"12851","_to":"54981"} +{"$label":"ACTS_IN","name":"Clarence Fritton","type":"Role","_key":"69640","_from":"12851","_to":"42513"} +{"$label":"ACTS_IN","name":"Sagamore","type":"Role","_key":"28102","_from":"12851","_to":"20145"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"17162","_from":"12857","_to":"12853"} +{"$label":"ACTS_IN","name":"Julie Angel","type":"Role","_key":"17159","_from":"12856","_to":"12853"} +{"$label":"ACTS_IN","name":"Victor von Doom \/ Doctor Doom","type":"Role","_key":"17156","_from":"12855","_to":"12853"} +{"$label":"DIRECTED","_key":"17149","_from":"12854","_to":"12853"} +{"$label":"DIRECTED","_key":"67535","_from":"12854","_to":"41580"} +{"$label":"DIRECTED","_key":"64515","_from":"12854","_to":"40186"} +{"$label":"DIRECTED","_key":"56210","_from":"12854","_to":"35722"} +{"$label":"ACTS_IN","name":"Jim Hanson","type":"Role","_key":"58617","_from":"12855","_to":"37036"} +{"$label":"ACTS_IN","name":"Victor von Doom","type":"Role","_key":"56209","_from":"12855","_to":"35722"} +{"$label":"ACTS_IN","name":"Mick Dooley","type":"Role","_key":"38625","_from":"12855","_to":"26092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96772","_from":"12856","_to":"56920"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109286","_from":"12857","_to":"64565"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"93146","_from":"12857","_to":"54899"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"59389","_from":"12857","_to":"37511"} +{"$label":"DIRECTED","_key":"17168","_from":"12862","_to":"12858"} +{"$label":"DIRECTED","_key":"17167","_from":"12861","_to":"12858"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"17166","_from":"12861","_to":"12858"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"17165","_from":"12860","_to":"12858"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"17164","_from":"12859","_to":"12858"} +{"$label":"DIRECTED","_key":"17169","_from":"12864","_to":"12863"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"17172","_from":"12867","_to":"12865"} +{"$label":"DIRECTED","_key":"17170","_from":"12866","_to":"12865"} +{"$label":"DIRECTED","_key":"113523","_from":"12866","_to":"66883"} +{"$label":"DIRECTED","_key":"93491","_from":"12866","_to":"55047"} +{"$label":"DIRECTED","_key":"91154","_from":"12866","_to":"53770"} +{"$label":"DIRECTED","_key":"65896","_from":"12866","_to":"40770"} +{"$label":"DIRECTED","_key":"30868","_from":"12866","_to":"21643"} +{"$label":"DIRECTED","_key":"24484","_from":"12866","_to":"17705"} +{"$label":"DIRECTED","_key":"24135","_from":"12866","_to":"17503"} +{"$label":"ACTS_IN","name":"Vivian Heldon","type":"Role","_key":"119051","_from":"12867","_to":"69979"} +{"$label":"ACTS_IN","name":"Sally McKee","type":"Role","_key":"113849","_from":"12867","_to":"67061"} +{"$label":"ACTS_IN","name":"Porter Coleridge","type":"Role","_key":"17187","_from":"12873","_to":"12868"} +{"$label":"ACTS_IN","name":"Jomo's Wife","type":"Role","_key":"17186","_from":"12872","_to":"12868"} +{"$label":"ACTS_IN","name":"Jomo","type":"Role","_key":"17185","_from":"12871","_to":"12868"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"17184","_from":"12870","_to":"12868"} +{"$label":"ACTS_IN","name":"Tim Donohue","type":"Role","_key":"17180","_from":"12869","_to":"12868"} +{"$label":"ACTS_IN","name":"Dr. Savran","type":"Role","_key":"50356","_from":"12869","_to":"32894"} +{"$label":"ACTS_IN","name":"Aram","type":"Role","_key":"21202","_from":"12869","_to":"15473"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"19689","_from":"12869","_to":"14558"} +{"$label":"ACTS_IN","name":"Itai","type":"Role","_key":"17200","_from":"12887","_to":"12874"} +{"$label":"ACTS_IN","name":"Susy","type":"Role","_key":"17199","_from":"12886","_to":"12874"} +{"$label":"ACTS_IN","name":"Hana","type":"Role","_key":"17198","_from":"12885","_to":"12874"} +{"$label":"ACTS_IN","name":"Schlomo's Mother","type":"Role","_key":"17197","_from":"12884","_to":"12874"} +{"$label":"ACTS_IN","name":"Papy","type":"Role","_key":"17196","_from":"12883","_to":"12874"} +{"$label":"ACTS_IN","name":"Q\u00e8s Amrah","type":"Role","_key":"17195","_from":"12882","_to":"12874"} +{"$label":"ACTS_IN","name":"Yoram Harrari","type":"Role","_key":"17194","_from":"12881","_to":"12874"} +{"$label":"ACTS_IN","name":"Ya\u00ebl","type":"Role","_key":"17193","_from":"12880","_to":"12874"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"17192","_from":"12879","_to":"12874"} +{"$label":"ACTS_IN","name":"Schlomo (adult)","type":"Role","_key":"17191","_from":"12878","_to":"12874"} +{"$label":"ACTS_IN","name":"Schlomo (child)","type":"Role","_key":"17190","_from":"12877","_to":"12874"} +{"$label":"ACTS_IN","name":"Schlomo (teenager)","type":"Role","_key":"17189","_from":"12876","_to":"12874"} +{"$label":"DIRECTED","_key":"17188","_from":"12875","_to":"12874"} +{"$label":"DIRECTED","_key":"49427","_from":"12875","_to":"32360"} +{"$label":"DIRECTED","_key":"47923","_from":"12875","_to":"31519"} +{"$label":"ACTS_IN","name":"Gerusha","type":"Role","_key":"48639","_from":"12880","_to":"31906"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"26461","_from":"12880","_to":"19017"} +{"$label":"ACTS_IN","name":"Fr\u00e8re Jean","type":"Role","_key":"113636","_from":"12881","_to":"66968"} +{"$label":"ACTS_IN","name":"Antoine Lahoud","type":"Role","_key":"113499","_from":"12881","_to":"66874"} +{"$label":"ACTS_IN","name":"Marek \/ Slimane","type":"Role","_key":"106443","_from":"12881","_to":"62707"} +{"$label":"ACTS_IN","name":"Christophe Abadi","type":"Role","_key":"104026","_from":"12881","_to":"61200"} +{"$label":"ACTS_IN","name":"Solo","type":"Role","_key":"89636","_from":"12881","_to":"53052"} +{"$label":"ACTS_IN","name":"Hugo Silien","type":"Role","_key":"46252","_from":"12881","_to":"30575"} +{"$label":"ACTS_IN","name":"Messaoud Souni","type":"Role","_key":"17502","_from":"12881","_to":"13084"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"17205","_from":"12890","_to":"12888"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"17202","_from":"12889","_to":"12888"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"61853","_from":"12889","_to":"38933"} +{"$label":"ACTS_IN","name":"Human Rights Director","type":"Role","_key":"17218","_from":"12901","_to":"12891"} +{"$label":"ACTS_IN","name":"Kaleem Yusuf","type":"Role","_key":"17217","_from":"12900","_to":"12891"} +{"$label":"ACTS_IN","name":"Masud the Fixer","type":"Role","_key":"17216","_from":"12899","_to":"12891"} +{"$label":"ACTS_IN","name":"Danny\u00b4s Taxi Driver","type":"Role","_key":"17215","_from":"12898","_to":"12891"} +{"$label":"ACTS_IN","name":"Shabir","type":"Role","_key":"17214","_from":"12897","_to":"12891"} +{"$label":"ACTS_IN","name":"John Skelton","type":"Role","_key":"17213","_from":"12896","_to":"12891"} +{"$label":"ACTS_IN","name":"Matt McDowell","type":"Role","_key":"17212","_from":"12895","_to":"12891"} +{"$label":"ACTS_IN","name":"Maureen Platt","type":"Role","_key":"17211","_from":"12894","_to":"12891"} +{"$label":"ACTS_IN","name":"Asra's Boyfriend","type":"Role","_key":"17210","_from":"12893","_to":"12891"} +{"$label":"ACTS_IN","name":"Adam Pearl","type":"Role","_key":"17209","_from":"12892","_to":"12891"} +{"$label":"ACTS_IN","name":"Lettie","type":"Role","_key":"110533","_from":"12894","_to":"65312"} +{"$label":"ACTS_IN","name":"Peg","type":"Role","_key":"55853","_from":"12894","_to":"35533"} +{"$label":"ACTS_IN","name":"Cynthia Crowley","type":"Role","_key":"27885","_from":"12894","_to":"19989"} +{"$label":"ACTS_IN","name":"News Anchor","type":"Role","_key":"101144","_from":"12896","_to":"59587"} +{"$label":"ACTS_IN","name":"Katya","type":"Role","_key":"17225","_from":"12904","_to":"12902"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"17221","_from":"12903","_to":"12902"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"17241","_from":"12919","_to":"12905"} +{"$label":"ACTS_IN","name":"Paisley","type":"Role","_key":"17240","_from":"12918","_to":"12905"} +{"$label":"ACTS_IN","name":"Sicherheitsmann Wilox","type":"Role","_key":"17239","_from":"12917","_to":"12905"} +{"$label":"ACTS_IN","name":"Jolt","type":"Role","_key":"17238","_from":"12916","_to":"12905"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"17237","_from":"12915","_to":"12905"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"17236","_from":"12914","_to":"12905"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"17235","_from":"12913","_to":"12905"} +{"$label":"ACTS_IN","name":"Vater von Alex","type":"Role","_key":"17234","_from":"12912","_to":"12905"} +{"$label":"ACTS_IN","name":"Mutter von Alex","type":"Role","_key":"17233","_from":"12911","_to":"12905"} +{"$label":"ACTS_IN","name":"Macy","type":"Role","_key":"17232","_from":"12910","_to":"12905"} +{"$label":"ACTS_IN","name":"Detective Richard Liu","type":"Role","_key":"17231","_from":"12909","_to":"12905"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"17230","_from":"12908","_to":"12905"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"17229","_from":"12907","_to":"12905"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"17228","_from":"12906","_to":"12905"} +{"$label":"ACTS_IN","name":"Cindy Lou Who","type":"Role","_key":"51193","_from":"12907","_to":"33390"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"44194","_from":"12907","_to":"29455"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"17256","_from":"12924","_to":"12920"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"17250","_from":"12923","_to":"12920"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"17246","_from":"12922","_to":"12920"} +{"$label":"ACTS_IN","name":"Jungle Julia","type":"Role","_key":"17245","_from":"12921","_to":"12920"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"104368","_from":"12921","_to":"61395"} +{"$label":"ACTS_IN","name":"Zoe Bell","type":"Role","_key":"120079","_from":"12922","_to":"70518"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"116428","_from":"12922","_to":"68531"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"117964","_from":"12923","_to":"69340"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"113357","_from":"12923","_to":"66775"} +{"$label":"ACTS_IN","name":"Amy Blue","type":"Role","_key":"95175","_from":"12923","_to":"56000"} +{"$label":"ACTS_IN","name":"Red Sonja","type":"Role","_key":"94813","_from":"12923","_to":"55838"} +{"$label":"ACTS_IN","name":"Lisa Pailey","type":"Role","_key":"57203","_from":"12923","_to":"36288"} +{"$label":"ACTS_IN","name":"Tatum Riley","type":"Role","_key":"30265","_from":"12923","_to":"21306"} +{"$label":"ACTS_IN","name":"Cherry Darling","type":"Role","_key":"17259","_from":"12923","_to":"12925"} +{"$label":"ACTS_IN","name":"Omar Ulmer","type":"Role","_key":"110272","_from":"12924","_to":"65170"} +{"$label":"ACTS_IN","name":"Tony Block","type":"Role","_key":"17271","_from":"12931","_to":"12925"} +{"$label":"ACTS_IN","name":"Deputy Carlos","type":"Role","_key":"17267","_from":"12930","_to":"12925"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"17266","_from":"12929","_to":"12925"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"17265","_from":"12928","_to":"12925"} +{"$label":"ACTS_IN","name":"Dr. William Block","type":"Role","_key":"17263","_from":"12927","_to":"12925"} +{"$label":"ACTS_IN","name":"J.T.","type":"Role","_key":"17262","_from":"12926","_to":"12925"} +{"$label":"ACTS_IN","name":"Peter Rooker","type":"Role","_key":"118434","_from":"12926","_to":"69627"} +{"$label":"ACTS_IN","name":"Duane Duke","type":"Role","_key":"90892","_from":"12926","_to":"53624"} +{"$label":"ACTS_IN","name":"Ike Clanton","type":"Role","_key":"88370","_from":"12926","_to":"52390"} +{"$label":"ACTS_IN","name":"Jobe Smith","type":"Role","_key":"61350","_from":"12926","_to":"38717"} +{"$label":"ACTS_IN","name":"Colonel Halloran","type":"Role","_key":"59786","_from":"12926","_to":"37738"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"116845","_from":"12927","_to":"68786"} +{"$label":"ACTS_IN","name":"Jedediah Smith","type":"Role","_key":"113977","_from":"12927","_to":"67127"} +{"$label":"ACTS_IN","name":"Billy Waites","type":"Role","_key":"109000","_from":"12927","_to":"64413"} +{"$label":"ACTS_IN","name":"Tarlow","type":"Role","_key":"95173","_from":"12927","_to":"55998"} +{"$label":"ACTS_IN","name":"Bates","type":"Role","_key":"73050","_from":"12927","_to":"43959"} +{"$label":"ACTS_IN","name":"George W. Bush","type":"Role","_key":"63826","_from":"12927","_to":"39901"} +{"$label":"ACTS_IN","name":"Dan White","type":"Role","_key":"61187","_from":"12927","_to":"38659"} +{"$label":"ACTS_IN","name":"Matthew Kensington","type":"Role","_key":"53492","_from":"12927","_to":"34546"} +{"$label":"ACTS_IN","name":"Brand Walsh","type":"Role","_key":"53213","_from":"12927","_to":"34420"} +{"$label":"ACTS_IN","name":"Llewelyn Moss","type":"Role","_key":"45542","_from":"12927","_to":"30156"} +{"$label":"ACTS_IN","name":"Chief Buchwald","type":"Role","_key":"45507","_from":"12927","_to":"30141"} +{"$label":"ACTS_IN","name":"Detectice Trupo","type":"Role","_key":"35316","_from":"12927","_to":"24057"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"35157","_from":"12927","_to":"23957"} +{"$label":"ACTS_IN","name":"James Gallman","type":"Role","_key":"19229","_from":"12927","_to":"14214"} +{"$label":"ACTS_IN","name":"Tomy Kent","type":"Role","_key":"18033","_from":"12927","_to":"13403"} +{"$label":"ACTS_IN","name":"Emergency Room Doctor","type":"Role","_key":"58629","_from":"12928","_to":"37036"} +{"$label":"ACTS_IN","name":"Saraghina (as Fergie)","type":"Role","_key":"61637","_from":"12929","_to":"38839"} +{"$label":"ACTS_IN","name":"El Mariachi","type":"Role","_key":"53373","_from":"12930","_to":"34493"} +{"$label":"ACTS_IN","name":"Campa","type":"Role","_key":"48038","_from":"12930","_to":"31586"} +{"$label":"ACTS_IN","name":"Dr. Zampino","type":"Role","_key":"17287","_from":"12943","_to":"12932"} +{"$label":"ACTS_IN","name":"Del Fiore","type":"Role","_key":"17286","_from":"12942","_to":"12932"} +{"$label":"ACTS_IN","name":"Don Ercole","type":"Role","_key":"17285","_from":"12941","_to":"12932"} +{"$label":"ACTS_IN","name":"Mangiapane","type":"Role","_key":"17284","_from":"12940","_to":"12932"} +{"$label":"ACTS_IN","name":"Rosa Napolitano","type":"Role","_key":"17283","_from":"12939","_to":"12932"} +{"$label":"ACTS_IN","name":"Rita D'Agostini","type":"Role","_key":"17282","_from":"12938","_to":"12932"} +{"$label":"ACTS_IN","name":"Pietro Mancuso","type":"Role","_key":"17280","_from":"12937","_to":"12932"} +{"$label":"ACTS_IN","name":"Angelo Mancuso","type":"Role","_key":"17279","_from":"12936","_to":"12932"} +{"$label":"ACTS_IN","name":"Fortunata Mancuso","type":"Role","_key":"17278","_from":"12935","_to":"12932"} +{"$label":"ACTS_IN","name":"Salvatore Mancuso","type":"Role","_key":"17277","_from":"12934","_to":"12932"} +{"$label":"DIRECTED","_key":"17275","_from":"12933","_to":"12932"} +{"$label":"DIRECTED","_key":"90167","_from":"12933","_to":"53310"} +{"$label":"ACTS_IN","name":"Pietro","type":"Role","_key":"90164","_from":"12934","_to":"53310"} +{"$label":"ACTS_IN","name":"Pasquale","type":"Role","_key":"90165","_from":"12936","_to":"53310"} +{"$label":"ACTS_IN","name":"Lot","type":"Role","_key":"22851","_from":"12942","_to":"16575"} +{"$label":"ACTS_IN","name":"Brittanicus","type":"Role","_key":"22403","_from":"12942","_to":"16258"} +{"$label":"ACTS_IN","name":"professore","type":"Role","_key":"62465","_from":"12943","_to":"39340"} +{"$label":"ACTS_IN","name":"Count Zaroff","type":"Role","_key":"17292","_from":"12946","_to":"12944"} +{"$label":"ACTS_IN","name":"Robert Rainsford","type":"Role","_key":"17290","_from":"12945","_to":"12944"} +{"$label":"ACTS_IN","name":"John L. Lloyd 'Sully' Sullivan","type":"Role","_key":"108579","_from":"12945","_to":"64167"} +{"$label":"ACTS_IN","name":"Leslie Banks","type":"Role","_key":"48415","_from":"12946","_to":"31779"} +{"$label":"ACTS_IN","name":"Young Lara","type":"Role","_key":"17303","_from":"12951","_to":"12947"} +{"$label":"ACTS_IN","name":"Hillary","type":"Role","_key":"17302","_from":"12950","_to":"12947"} +{"$label":"ACTS_IN","name":"Distinguished Gentleman","type":"Role","_key":"17301","_from":"12949","_to":"12947"} +{"$label":"ACTS_IN","name":"Julius, Assault Team Leader","type":"Role","_key":"17300","_from":"12948","_to":"12947"} +{"$label":"ACTS_IN","name":"Passerby","type":"Role","_key":"99908","_from":"12949","_to":"58914"} +{"$label":"ACTS_IN","name":"Dr. John Markway","type":"Role","_key":"71840","_from":"12949","_to":"43474"} +{"$label":"ACTS_IN","name":"Dr. David Menard","type":"Role","_key":"45992","_from":"12949","_to":"30401"} +{"$label":"ACTS_IN","name":"Himself (Archive Footage)","type":"Role","_key":"39389","_from":"12949","_to":"26628"} +{"$label":"ACTS_IN","name":"Hugh \"Bulldog\" Drummond","type":"Role","_key":"35699","_from":"12949","_to":"24260"} +{"$label":"ACTS_IN","name":"Capt. Danny De Mortimer","type":"Role","_key":"34215","_from":"12949","_to":"23489"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler-Stimme","type":"Role","_key":"21885","_from":"12949","_to":"15979"} +{"$label":"ACTS_IN","name":"Hillary","type":"Role","_key":"17318","_from":"12950","_to":"12952"} +{"$label":"ACTS_IN","name":"MI6 Agent Calloway","type":"Role","_key":"17317","_from":"12957","_to":"12952"} +{"$label":"ACTS_IN","name":"MI6 Agent Stevens","type":"Role","_key":"17316","_from":"12956","_to":"12952"} +{"$label":"ACTS_IN","name":"Gus Petraki","type":"Role","_key":"17315","_from":"12955","_to":"12952"} +{"$label":"ACTS_IN","name":"Jimmy Petraki","type":"Role","_key":"17314","_from":"12954","_to":"12952"} +{"$label":"ACTS_IN","name":"Chen Lo","type":"Role","_key":"17312","_from":"12953","_to":"12952"} +{"$label":"ACTS_IN","name":"George Fung","type":"Role","_key":"118005","_from":"12953","_to":"69361"} +{"$label":"ACTS_IN","name":"Commander Hon Sun","type":"Role","_key":"117608","_from":"12953","_to":"69139"} +{"$label":"ACTS_IN","name":"Lam Lok","type":"Role","_key":"117324","_from":"12953","_to":"69005"} +{"$label":"ACTS_IN","name":"Lam Lok","type":"Role","_key":"103102","_from":"12953","_to":"60647"} +{"$label":"ACTS_IN","name":"Zhou Qing Quan","type":"Role","_key":"101671","_from":"12953","_to":"59836"} +{"$label":"ACTS_IN","name":"sun quan","type":"Role","_key":"98914","_from":"12953","_to":"58279"} +{"$label":"ACTS_IN","name":"Boss Fay","type":"Role","_key":"96777","_from":"12953","_to":"56921"} +{"$label":"ACTS_IN","name":"Detective Chan","type":"Role","_key":"92806","_from":"12953","_to":"54752"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"72708","_from":"12953","_to":"43813"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64600","_from":"12953","_to":"40235"} +{"$label":"ACTS_IN","name":"Officer Chan Kwan","type":"Role","_key":"64570","_from":"12953","_to":"40218"} +{"$label":"ACTS_IN","name":"Albert Lee","type":"Role","_key":"54816","_from":"12953","_to":"35073"} +{"$label":"ACTS_IN","name":"Kei","type":"Role","_key":"46573","_from":"12953","_to":"30764"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"46282","_from":"12956","_to":"30589"} +{"$label":"ACTS_IN","name":"Laird","type":"Role","_key":"100522","_from":"12957","_to":"59282"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"27004","_from":"12957","_to":"19414"} +{"$label":"ACTS_IN","name":"Saladin","type":"Role","_key":"17329","_from":"12965","_to":"12958"} +{"$label":"ACTS_IN","name":"Zerbino","type":"Role","_key":"17328","_from":"12964","_to":"12958"} +{"$label":"ACTS_IN","name":"Mathilde Normandin","type":"Role","_key":"17327","_from":"12963","_to":"12958"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"17325","_from":"12962","_to":"12958"} +{"$label":"ACTS_IN","name":"Dorf\u00e4ltester","type":"Role","_key":"17324","_from":"12961","_to":"12958"} +{"$label":"ACTS_IN","name":"Seine Exzellenz","type":"Role","_key":"17323","_from":"12960","_to":"12958"} +{"$label":"ACTS_IN","name":"Na\u00ef-Rea","type":"Role","_key":"17320","_from":"12959","_to":"12958"} +{"$label":"ACTS_IN","name":"Duchesse de Longueville","type":"Role","_key":"45819","_from":"12963","_to":"30302"} +{"$label":"ACTS_IN","name":"Jeanne Eberlen","type":"Role","_key":"35865","_from":"12963","_to":"24351"} +{"$label":"ACTS_IN","name":"Charlotte Corday","type":"Role","_key":"30212","_from":"12963","_to":"21284"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"29929","_from":"12963","_to":"21152"} +{"$label":"ACTS_IN","name":"Ringwald","type":"Role","_key":"101718","_from":"12965","_to":"59865"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"18342","_from":"12965","_to":"13604"} +{"$label":"ACTS_IN","name":"Dr. Pierre Ceyssac","type":"Role","_key":"17340","_from":"12976","_to":"12966"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"17339","_from":"12975","_to":"12966"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"17338","_from":"12974","_to":"12966"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"17336","_from":"12973","_to":"12966"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"17335","_from":"12972","_to":"12966"} +{"$label":"ACTS_IN","name":"Sandrine Folio","type":"Role","_key":"17334","_from":"12971","_to":"12966"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"17333","_from":"12970","_to":"12966"} +{"$label":"ACTS_IN","name":"Xavier","type":"Role","_key":"17332","_from":"12969","_to":"12966"} +{"$label":"ACTS_IN","name":"G\u00e9raldine Ceyssac","type":"Role","_key":"17331","_from":"12968","_to":"12966"} +{"$label":"DIRECTED","_key":"17330","_from":"12967","_to":"12966"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"111778","_from":"12967","_to":"65977"} +{"$label":"DIRECTED","_key":"101367","_from":"12967","_to":"59672"} +{"$label":"DIRECTED","_key":"97930","_from":"12967","_to":"57668"} +{"$label":"DIRECTED","_key":"65319","_from":"12967","_to":"40531"} +{"$label":"DIRECTED","_key":"49643","_from":"12967","_to":"32488"} +{"$label":"DIRECTED","_key":"27069","_from":"12967","_to":"19484"} +{"$label":"DIRECTED","_key":"17911","_from":"12967","_to":"13327"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"119459","_from":"12968","_to":"70178"} +{"$label":"ACTS_IN","name":"Carole Province","type":"Role","_key":"118046","_from":"12968","_to":"69385"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116275","_from":"12968","_to":"68455"} +{"$label":"ACTS_IN","name":"Anna M.","type":"Role","_key":"112081","_from":"12968","_to":"66180"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104498","_from":"12968","_to":"61464"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"88091","_from":"12968","_to":"52282"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"51392","_from":"12968","_to":"33517"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"49245","_from":"12968","_to":"32254"} +{"$label":"ACTS_IN","name":"Narratrice","type":"Role","_key":"36066","_from":"12968","_to":"24484"} +{"$label":"ACTS_IN","name":"Capitaine Faur\u00e9","type":"Role","_key":"48746","_from":"12969","_to":"31971"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"37823","_from":"12969","_to":"25637"} +{"$label":"ACTS_IN","name":"No\u00ebl Gentil \/ Emile Leullet \/ Denis Leprince","type":"Role","_key":"105034","_from":"12976","_to":"61813"} +{"$label":"ACTS_IN","name":"L\u00e9o","type":"Role","_key":"96026","_from":"12976","_to":"56447"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"88432","_from":"12976","_to":"52413"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"17352","_from":"12981","_to":"12977"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"17351","_from":"12980","_to":"12977"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"17350","_from":"12979","_to":"12977"} +{"$label":"ACTS_IN","name":"Willis Grinnel","type":"Role","_key":"17347","_from":"12978","_to":"12977"} +{"$label":"ACTS_IN","name":"Gonzalo Pizarro","type":"Role","_key":"17363","_from":"12990","_to":"12982"} +{"$label":"ACTS_IN","name":"Armando","type":"Role","_key":"17362","_from":"12989","_to":"12982"} +{"$label":"ACTS_IN","name":"Perucho","type":"Role","_key":"17361","_from":"12988","_to":"12982"} +{"$label":"ACTS_IN","name":"Okello","type":"Role","_key":"17360","_from":"12987","_to":"12982"} +{"$label":"ACTS_IN","name":"Flores","type":"Role","_key":"17359","_from":"12986","_to":"12982"} +{"$label":"ACTS_IN","name":"Don Pedro de Ursua","type":"Role","_key":"17357","_from":"12985","_to":"12982"} +{"$label":"ACTS_IN","name":"Gaspar de Carvajal","type":"Role","_key":"17356","_from":"12984","_to":"12982"} +{"$label":"ACTS_IN","name":"Inez","type":"Role","_key":"17355","_from":"12983","_to":"12982"} +{"$label":"ACTS_IN","name":"Ludlum the Chauffeur","type":"Role","_key":"119977","_from":"12988","_to":"70461"} +{"$label":"ACTS_IN","name":"Hazel","type":"Role","_key":"17373","_from":"12997","_to":"12991"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"17372","_from":"12996","_to":"12991"} +{"$label":"ACTS_IN","name":"Jack Shapiro","type":"Role","_key":"17371","_from":"12995","_to":"12991"} +{"$label":"ACTS_IN","name":"Vadim Nezhinski","type":"Role","_key":"17370","_from":"12994","_to":"12991"} +{"$label":"ACTS_IN","name":"Michael Solo","type":"Role","_key":"17369","_from":"12993","_to":"12991"} +{"$label":"DIRECTED","_key":"17364","_from":"12992","_to":"12991"} +{"$label":"DIRECTED","_key":"120144","_from":"12992","_to":"70564"} +{"$label":"DIRECTED","_key":"62804","_from":"12992","_to":"39473"} +{"$label":"ACTS_IN","name":"Sergeant Burke","type":"Role","_key":"51642","_from":"12993","_to":"33692"} +{"$label":"ACTS_IN","name":"Deput Basle","type":"Role","_key":"18450","_from":"12993","_to":"13672"} +{"$label":"ACTS_IN","name":"Le cardinal de Flers","type":"Role","_key":"17386","_from":"13007","_to":"12998"} +{"$label":"ACTS_IN","name":"Le comte de Cerisy","type":"Role","_key":"17385","_from":"13006","_to":"12998"} +{"$label":"ACTS_IN","name":"La dame de Pique","type":"Role","_key":"17384","_from":"13005","_to":"12998"} +{"$label":"ACTS_IN","name":"Mademoiselle Divine des Airelles","type":"Role","_key":"17383","_from":"13004","_to":"12998"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"17382","_from":"13003","_to":"12998"} +{"$label":"ACTS_IN","name":"La comtesse de Mendoze","type":"Role","_key":"17381","_from":"13002","_to":"12998"} +{"$label":"ACTS_IN","name":"Le vicomte de Mareuil","type":"Role","_key":"17380","_from":"13001","_to":"12998"} +{"$label":"ACTS_IN","name":"La marquise de Flers","type":"Role","_key":"17378","_from":"13000","_to":"12998"} +{"$label":"ACTS_IN","name":"Ryno de Marigny","type":"Role","_key":"17377","_from":"12999","_to":"12998"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"105523","_from":"13004","_to":"62092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104471","_from":"13004","_to":"61445"} +{"$label":"ACTS_IN","name":"Helena von Strauss","type":"Role","_key":"41737","_from":"13004","_to":"28008"} +{"$label":"ACTS_IN","name":"Femme","type":"Role","_key":"17389","_from":"13004","_to":"13008"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"117346","_from":"13005","_to":"69017"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"26463","_from":"13005","_to":"19017"} +{"$label":"ACTS_IN","name":"Mann in Bar","type":"Role","_key":"17391","_from":"13010","_to":"13008"} +{"$label":"ACTS_IN","name":"Homme","type":"Role","_key":"17390","_from":"13009","_to":"13008"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"50514","_from":"13009","_to":"32994"} +{"$label":"ACTS_IN","name":"Hatice","type":"Role","_key":"17407","_from":"13019","_to":"13011"} +{"$label":"ACTS_IN","name":"Ayla","type":"Role","_key":"17403","_from":"13018","_to":"13011"} +{"$label":"ACTS_IN","name":"Lefty","type":"Role","_key":"17402","_from":"13017","_to":"13011"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"17401","_from":"13016","_to":"13011"} +{"$label":"ACTS_IN","name":"Kirianis","type":"Role","_key":"17398","_from":"13015","_to":"13011"} +{"$label":"ACTS_IN","name":"Onkel Ahmet","type":"Role","_key":"17397","_from":"13014","_to":"13011"} +{"$label":"ACTS_IN","name":"Sifu","type":"Role","_key":"17394","_from":"13013","_to":"13011"} +{"$label":"DIRECTED","_key":"17393","_from":"13012","_to":"13011"} +{"$label":"DIRECTED","_key":"44889","_from":"13012","_to":"29855"} +{"$label":"ACTS_IN","name":"Tamer","type":"Role","_key":"88627","_from":"13017","_to":"52511"} +{"$label":"ACTS_IN","name":"Curly","type":"Role","_key":"47982","_from":"13017","_to":"31568"} +{"$label":"ACTS_IN","name":"Prinz Habib \/ Prinz Ravan","type":"Role","_key":"42095","_from":"13017","_to":"28198"} +{"$label":"ACTS_IN","name":"Mucki","type":"Role","_key":"41545","_from":"13017","_to":"27899"} +{"$label":"ACTS_IN","name":"Yeter","type":"Role","_key":"17494","_from":"13019","_to":"13075"} +{"$label":"ACTS_IN","name":"Larry Merrick","type":"Role","_key":"17421","_from":"13026","_to":"13020"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"17420","_from":"13025","_to":"13020"} +{"$label":"ACTS_IN","name":"Bishop O'Hara","type":"Role","_key":"17418","_from":"13024","_to":"13020"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"17417","_from":"13023","_to":"13020"} +{"$label":"ACTS_IN","name":"Sister Mary Lazarus","type":"Role","_key":"17413","_from":"13022","_to":"13020"} +{"$label":"ACTS_IN","name":"Sister Mary Robert","type":"Role","_key":"17412","_from":"13021","_to":"13020"} +{"$label":"ACTS_IN","name":"Celeste Dunbar","type":"Role","_key":"113828","_from":"13021","_to":"67053"} +{"$label":"ACTS_IN","name":"Sister Mary Robert","type":"Role","_key":"42791","_from":"13021","_to":"28626"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"120498","_from":"13022","_to":"70781"} +{"$label":"ACTS_IN","name":"Sister Mary Lazarus","type":"Role","_key":"42789","_from":"13022","_to":"28626"} +{"$label":"ACTS_IN","name":"Miss Ellwood","type":"Role","_key":"34142","_from":"13022","_to":"23449"} +{"$label":"ACTS_IN","name":"Sarah Miller","type":"Role","_key":"29098","_from":"13022","_to":"20731"} +{"$label":"ACTS_IN","name":"Glenfiddish","type":"Role","_key":"67210","_from":"13023","_to":"41452"} +{"$label":"ACTS_IN","name":"Frediano","type":"Role","_key":"52732","_from":"13023","_to":"34221"} +{"$label":"ACTS_IN","name":"Michael Sinclair","type":"Role","_key":"98887","_from":"13024","_to":"58269"} +{"$label":"ACTS_IN","name":"Merle Kittridge","type":"Role","_key":"17429","_from":"13030","_to":"13027"} +{"$label":"ACTS_IN","name":"Bianca de Passe","type":"Role","_key":"17427","_from":"13029","_to":"13027"} +{"$label":"ACTS_IN","name":"Sidney Redlitch","type":"Role","_key":"17426","_from":"13028","_to":"13027"} +{"$label":"ACTS_IN","name":"Frankie Canon","type":"Role","_key":"43894","_from":"13028","_to":"29302"} +{"$label":"ACTS_IN","name":"Madame Alvarez","type":"Role","_key":"111772","_from":"13029","_to":"65970"} +{"$label":"ACTS_IN","name":"Francesco Odone","type":"Role","_key":"17436","_from":"13035","_to":"13031"} +{"$label":"ACTS_IN","name":"Omuori","type":"Role","_key":"17435","_from":"13034","_to":"13031"} +{"$label":"ACTS_IN","name":"Loretta Muscatine","type":"Role","_key":"17434","_from":"13033","_to":"13031"} +{"$label":"DIRECTED","_key":"17430","_from":"13032","_to":"13031"} +{"$label":"DIRECTED","_key":"103914","_from":"13032","_to":"61126"} +{"$label":"DIRECTED","_key":"68564","_from":"13032","_to":"42034"} +{"$label":"DIRECTED","_key":"57327","_from":"13032","_to":"36355"} +{"$label":"DIRECTED","_key":"55368","_from":"13032","_to":"35296"} +{"$label":"DIRECTED","_key":"53925","_from":"13032","_to":"34703"} +{"$label":"DIRECTED","_key":"53319","_from":"13032","_to":"34472"} +{"$label":"DIRECTED","_key":"50876","_from":"13032","_to":"33209"} +{"$label":"DIRECTED","_key":"48163","_from":"13032","_to":"31646"} +{"$label":"DIRECTED","_key":"41468","_from":"13032","_to":"27868"} +{"$label":"ACTS_IN","name":"The Emperer","type":"Role","_key":"17442","_from":"13040","_to":"13036"} +{"$label":"ACTS_IN","name":"Goddess Manshen","type":"Role","_key":"17441","_from":"13039","_to":"13036"} +{"$label":"ACTS_IN","name":"Princess Qingcheng","type":"Role","_key":"17439","_from":"13038","_to":"13036"} +{"$label":"DIRECTED","_key":"17438","_from":"13037","_to":"13036"} +{"$label":"ACTS_IN","name":"Professor Yu","type":"Role","_key":"115974","_from":"13037","_to":"68300"} +{"$label":"DIRECTED","_key":"115969","_from":"13037","_to":"68300"} +{"$label":"DIRECTED","_key":"99823","_from":"13037","_to":"58882"} +{"$label":"DIRECTED","_key":"67184","_from":"13037","_to":"41446"} +{"$label":"DIRECTED","_key":"62942","_from":"13037","_to":"39526"} +{"$label":"ACTS_IN","name":"Failan","type":"Role","_key":"117180","_from":"13038","_to":"68939"} +{"$label":"ACTS_IN","name":"Dawn \/ Enigma","type":"Role","_key":"108734","_from":"13038","_to":"64278"} +{"$label":"ACTS_IN","name":"Black Phoenix \/ White Dragon Jr.","type":"Role","_key":"60817","_from":"13038","_to":"38419"} +{"$label":"ACTS_IN","name":"Li Li","type":"Role","_key":"115971","_from":"13039","_to":"68300"} +{"$label":"ACTS_IN","name":"Li Li's boyfriend","type":"Role","_key":"115973","_from":"13040","_to":"68300"} +{"$label":"ACTS_IN","name":"DI. Radu","type":"Role","_key":"17451","_from":"13048","_to":"13041"} +{"$label":"ACTS_IN","name":"Doamna Radu","type":"Role","_key":"17450","_from":"13047","_to":"13041"} +{"$label":"ACTS_IN","name":"Adi","type":"Role","_key":"17449","_from":"13046","_to":"13041"} +{"$label":"ACTS_IN","name":"Domnu' Bebe","type":"Role","_key":"17448","_from":"13045","_to":"13041"} +{"$label":"ACTS_IN","name":"Otilia","type":"Role","_key":"17447","_from":"13044","_to":"13041"} +{"$label":"ACTS_IN","name":"Gabita","type":"Role","_key":"17446","_from":"13043","_to":"13041"} +{"$label":"DIRECTED","_key":"17445","_from":"13042","_to":"13041"} +{"$label":"ACTS_IN","name":"Vika","type":"Role","_key":"109971","_from":"13044","_to":"64978"} +{"$label":"ACTS_IN","name":"Anna Darvulia","type":"Role","_key":"48991","_from":"13044","_to":"32115"} +{"$label":"ACTS_IN","name":"Machiko's husband","type":"Role","_key":"17456","_from":"13054","_to":"13049"} +{"$label":"ACTS_IN","name":"Wakako","type":"Role","_key":"17455","_from":"13053","_to":"13049"} +{"$label":"ACTS_IN","name":"Shigeki","type":"Role","_key":"17454","_from":"13052","_to":"13049"} +{"$label":"ACTS_IN","name":"Machiko","type":"Role","_key":"17453","_from":"13051","_to":"13049"} +{"$label":"DIRECTED","_key":"17452","_from":"13050","_to":"13049"} +{"$label":"ACTS_IN","name":"Uncle Anouche (voice)","type":"Role","_key":"17464","_from":"13060","_to":"13055"} +{"$label":"ACTS_IN","name":"young Marjane (voice)","type":"Role","_key":"17463","_from":"13059","_to":"13055"} +{"$label":"ACTS_IN","name":"Father (voice)","type":"Role","_key":"17461","_from":"13058","_to":"13055"} +{"$label":"DIRECTED","_key":"17458","_from":"13057","_to":"13055"} +{"$label":"DIRECTED","_key":"17457","_from":"13056","_to":"13055"} +{"$label":"ACTS_IN","name":"Al Barad","type":"Role","_key":"118234","_from":"13058","_to":"69499"} +{"$label":"ACTS_IN","name":"Arshile Gorky","type":"Role","_key":"108847","_from":"13058","_to":"64332"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"72988","_from":"13058","_to":"43928"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"63838","_from":"13058","_to":"39902"} +{"$label":"ACTS_IN","name":"Eliyahoo","type":"Role","_key":"44680","_from":"13058","_to":"29726"} +{"$label":"ACTS_IN","name":"Padre","type":"Role","_key":"17471","_from":"13068","_to":"13061"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"17470","_from":"13067","_to":"13061"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"17469","_from":"13066","_to":"13061"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"17468","_from":"13065","_to":"13061"} +{"$label":"ACTS_IN","name":"Zacarias","type":"Role","_key":"17467","_from":"13064","_to":"13061"} +{"$label":"ACTS_IN","name":"Madre","type":"Role","_key":"17466","_from":"13063","_to":"13061"} +{"$label":"DIRECTED","_key":"17465","_from":"13062","_to":"13061"} +{"$label":"DIRECTED","_key":"111680","_from":"13062","_to":"65937"} +{"$label":"ACTS_IN","name":"Ninjinski","type":"Role","_key":"17487","_from":"13074","_to":"13069"} +{"$label":"ACTS_IN","name":"Doctor Cocheton","type":"Role","_key":"17486","_from":"13073","_to":"13069"} +{"$label":"ACTS_IN","name":"Doctor Mercier","type":"Role","_key":"17485","_from":"13072","_to":"13069"} +{"$label":"ACTS_IN","name":"Jos\u00e9phine","type":"Role","_key":"17481","_from":"13071","_to":"13069"} +{"$label":"ACTS_IN","name":"Marie Lopez","type":"Role","_key":"17479","_from":"13070","_to":"13069"} +{"$label":"ACTS_IN","name":"Ga\u00eblle","type":"Role","_key":"67519","_from":"13071","_to":"41573"} +{"$label":"ACTS_IN","name":"Anne Beck","type":"Role","_key":"65842","_from":"13071","_to":"40747"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"27739","_from":"13071","_to":"19880"} +{"$label":"ACTS_IN","name":"Emine","type":"Role","_key":"17495","_from":"13080","_to":"13075"} +{"$label":"ACTS_IN","name":"Lotte Staub","type":"Role","_key":"17493","_from":"13079","_to":"13075"} +{"$label":"ACTS_IN","name":"Ali Aksu","type":"Role","_key":"17491","_from":"13078","_to":"13075"} +{"$label":"ACTS_IN","name":"Nejat Aksu","type":"Role","_key":"17490","_from":"13077","_to":"13075"} +{"$label":"ACTS_IN","name":"Ayten \u00d6zt\u00fcrk","type":"Role","_key":"17489","_from":"13076","_to":"13075"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"71144","_from":"13079","_to":"43182"} +{"$label":"ACTS_IN","name":"Famke Preminger","type":"Role","_key":"66606","_from":"13079","_to":"41171"} +{"$label":"ACTS_IN","name":"Shin-ae Lee","type":"Role","_key":"17497","_from":"13083","_to":"13081"} +{"$label":"DIRECTED","_key":"17496","_from":"13082","_to":"13081"} +{"$label":"ACTS_IN","name":"Kim Hee-su","type":"Role","_key":"120168","_from":"13083","_to":"70578"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"17517","_from":"13099","_to":"13084"} +{"$label":"ACTS_IN","name":"Ahmed","type":"Role","_key":"17516","_from":"13098","_to":"13084"} +{"$label":"ACTS_IN","name":"Djellal","type":"Role","_key":"17515","_from":"13097","_to":"13084"} +{"$label":"ACTS_IN","name":"Rambert","type":"Role","_key":"17514","_from":"13096","_to":"13084"} +{"$label":"ACTS_IN","name":"Tour\u00e9","type":"Role","_key":"17513","_from":"13095","_to":"13084"} +{"$label":"ACTS_IN","name":"Le journaliste","type":"Role","_key":"17511","_from":"13094","_to":"13084"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"17510","_from":"13093","_to":"13084"} +{"$label":"ACTS_IN","name":"Le colonel","type":"Role","_key":"17509","_from":"13092","_to":"13084"} +{"$label":"ACTS_IN","name":"Larbi","type":"Role","_key":"17507","_from":"13091","_to":"13084"} +{"$label":"ACTS_IN","name":"Capitaine Durieux","type":"Role","_key":"17506","_from":"13090","_to":"13084"} +{"$label":"ACTS_IN","name":"Caporal Leroux","type":"Role","_key":"17505","_from":"13089","_to":"13084"} +{"$label":"ACTS_IN","name":"Sergent Roger Martinez","type":"Role","_key":"17504","_from":"13088","_to":"13084"} +{"$label":"ACTS_IN","name":"Abdelkader","type":"Role","_key":"17503","_from":"13087","_to":"13084"} +{"$label":"ACTS_IN","name":"Yassir","type":"Role","_key":"17501","_from":"13086","_to":"13084"} +{"$label":"DIRECTED","_key":"17499","_from":"13085","_to":"13084"} +{"$label":"ACTS_IN","name":"Daniel Morales","type":"Role","_key":"20483","_from":"13086","_to":"14980"} +{"$label":"ACTS_IN","name":"Daniel Morales","type":"Role","_key":"20475","_from":"13086","_to":"14979"} +{"$label":"ACTS_IN","name":"Daniel Morales","type":"Role","_key":"20461","_from":"13086","_to":"14973"} +{"$label":"ACTS_IN","name":"Daniel Morales","type":"Role","_key":"20444","_from":"13086","_to":"14961"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"112071","_from":"13087","_to":"66172"} +{"$label":"ACTS_IN","name":"L'inspecteur Saunier","type":"Role","_key":"105255","_from":"13087","_to":"61942"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"49711","_from":"13087","_to":"32530"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"62493","_from":"13089","_to":"39356"} +{"$label":"ACTS_IN","name":"Fernand","type":"Role","_key":"47869","_from":"13090","_to":"31503"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"112443","_from":"13091","_to":"66384"} +{"$label":"ACTS_IN","name":"Louis Mallet","type":"Role","_key":"89637","_from":"13092","_to":"53052"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"89552","_from":"13092","_to":"52998"} +{"$label":"ACTS_IN","name":"Christophe","type":"Role","_key":"35252","_from":"13092","_to":"24004"} +{"$label":"DIRECTED","_key":"20971","_from":"13094","_to":"15344"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"17526","_from":"13102","_to":"13100"} +{"$label":"ACTS_IN","name":"David Brewster","type":"Role","_key":"17525","_from":"13101","_to":"13100"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"57369","_from":"13101","_to":"36369"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"17544","_from":"13115","_to":"13103"} +{"$label":"ACTS_IN","name":"Crying Bride","type":"Role","_key":"17542","_from":"13114","_to":"13103"} +{"$label":"ACTS_IN","name":"Benton","type":"Role","_key":"17541","_from":"13113","_to":"13103"} +{"$label":"ACTS_IN","name":"Basil St. Mosely","type":"Role","_key":"17539","_from":"13112","_to":"13103"} +{"$label":"ACTS_IN","name":"Salvatore","type":"Role","_key":"17537","_from":"13111","_to":"13103"} +{"$label":"ACTS_IN","name":"Fran Donolly","type":"Role","_key":"17536","_from":"13110","_to":"13103"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"17535","_from":"13109","_to":"13103"} +{"$label":"ACTS_IN","name":"Mr. Donolly","type":"Role","_key":"17534","_from":"13108","_to":"13103"} +{"$label":"ACTS_IN","name":"Burt Weinberg","type":"Role","_key":"17532","_from":"13107","_to":"13103"} +{"$label":"ACTS_IN","name":"Mrs. Donolly","type":"Role","_key":"17531","_from":"13106","_to":"13103"} +{"$label":"ACTS_IN","name":"Massimo","type":"Role","_key":"17530","_from":"13105","_to":"13103"} +{"$label":"DIRECTED","_key":"17527","_from":"13104","_to":"13103"} +{"$label":"DIRECTED","_key":"65012","_from":"13104","_to":"40403"} +{"$label":"DIRECTED","_key":"61834","_from":"13104","_to":"38926"} +{"$label":"DIRECTED","_key":"61677","_from":"13104","_to":"38856"} +{"$label":"DIRECTED","_key":"59519","_from":"13104","_to":"37579"} +{"$label":"DIRECTED","_key":"55223","_from":"13104","_to":"35229"} +{"$label":"DIRECTED","_key":"24600","_from":"13104","_to":"17800"} +{"$label":"ACTS_IN","name":"Wolfie - The Werwolf","type":"Role","_key":"26713","_from":"13104","_to":"19193"} +{"$label":"ACTS_IN","name":"Donnie Eaton","type":"Role","_key":"93678","_from":"13105","_to":"55148"} +{"$label":"ACTS_IN","name":"Inspector Matt Parish","type":"Role","_key":"69257","_from":"13105","_to":"42348"} +{"$label":"ACTS_IN","name":"Liz Kennedy, Assistant DA","type":"Role","_key":"110131","_from":"13106","_to":"65075"} +{"$label":"ACTS_IN","name":"Sarah Graczyk","type":"Role","_key":"108011","_from":"13106","_to":"63792"} +{"$label":"ACTS_IN","name":"Wendy Stern","type":"Role","_key":"70681","_from":"13106","_to":"43000"} +{"$label":"ACTS_IN","name":"Lois","type":"Role","_key":"47315","_from":"13106","_to":"31163"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"36078","_from":"13106","_to":"24486"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"120973","_from":"13109","_to":"71049"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"111878","_from":"13109","_to":"66047"} +{"$label":"ACTS_IN","name":"Lucy Wyman","type":"Role","_key":"60650","_from":"13109","_to":"38293"} +{"$label":"ACTS_IN","name":"Joanie","type":"Role","_key":"59441","_from":"13109","_to":"37547"} +{"$label":"ACTS_IN","name":"Kitty Walker","type":"Role","_key":"45247","_from":"13109","_to":"30028"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"44079","_from":"13109","_to":"29388"} +{"$label":"ACTS_IN","name":"Erin","type":"Role","_key":"29329","_from":"13109","_to":"20821"} +{"$label":"ACTS_IN","name":"Chelsea Turner","type":"Role","_key":"103270","_from":"13110","_to":"60758"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"103083","_from":"13110","_to":"60637"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"101748","_from":"13110","_to":"59883"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"93084","_from":"13110","_to":"54870"} +{"$label":"ACTS_IN","name":"Veronica Vaughn","type":"Role","_key":"67312","_from":"13110","_to":"41492"} +{"$label":"ACTS_IN","name":"Sonya Blade","type":"Role","_key":"53050","_from":"13110","_to":"34342"} +{"$label":"ACTS_IN","name":"Elsa Shivers","type":"Role","_key":"28290","_from":"13110","_to":"20249"} +{"$label":"ACTS_IN","name":"Lisa Cramer","type":"Role","_key":"22178","_from":"13110","_to":"16167"} +{"$label":"ACTS_IN","name":"Rip Holland","type":"Role","_key":"115880","_from":"13111","_to":"68225"} +{"$label":"ACTS_IN","name":"Quinn","type":"Role","_key":"88187","_from":"13111","_to":"52321"} +{"$label":"ACTS_IN","name":"Nick Calabrese","type":"Role","_key":"58404","_from":"13111","_to":"36916"} +{"$label":"ACTS_IN","name":"Serna","type":"Role","_key":"47070","_from":"13111","_to":"31043"} +{"$label":"ACTS_IN","name":"Cory Maddox","type":"Role","_key":"38918","_from":"13111","_to":"26281"} +{"$label":"ACTS_IN","name":"The Boogey Man (voice)","type":"Role","_key":"111851","_from":"13112","_to":"66010"} +{"$label":"ACTS_IN","name":"Ron Albertson","type":"Role","_key":"109275","_from":"13112","_to":"64561"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"102768","_from":"13112","_to":"60460"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100582","_from":"13112","_to":"59315"} +{"$label":"ACTS_IN","name":"Buck Laughlin","type":"Role","_key":"96622","_from":"13112","_to":"56824"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94150","_from":"13112","_to":"55439"} +{"$label":"ACTS_IN","name":"Mayor Deebs","type":"Role","_key":"70866","_from":"13112","_to":"43068"} +{"$label":"ACTS_IN","name":"Larry Crockett","type":"Role","_key":"69249","_from":"13112","_to":"42339"} +{"$label":"ACTS_IN","name":"Colonel on Military Base","type":"Role","_key":"67443","_from":"13112","_to":"41533"} +{"$label":"ACTS_IN","name":"voice of Shelby Forthright - BnL CEO","type":"Role","_key":"65034","_from":"13112","_to":"40412"} +{"$label":"ACTS_IN","name":"Bernie Funkyerdoder","type":"Role","_key":"60276","_from":"13112","_to":"38015"} +{"$label":"ACTS_IN","name":"Melvin - Alien Dad","type":"Role","_key":"58940","_from":"13112","_to":"37214"} +{"$label":"ACTS_IN","name":"Ed Harken","type":"Role","_key":"58649","_from":"13112","_to":"37052"} +{"$label":"ACTS_IN","name":"Aslo","type":"Role","_key":"56394","_from":"13112","_to":"35829"} +{"$label":"ACTS_IN","name":"Ed Harken","type":"Role","_key":"50548","_from":"13112","_to":"33010"} +{"$label":"ACTS_IN","name":"Philip Huntley","type":"Role","_key":"49455","_from":"13112","_to":"32384"} +{"$label":"ACTS_IN","name":"Harold Flaherty","type":"Role","_key":"48714","_from":"13112","_to":"31948"} +{"$label":"ACTS_IN","name":"Foster","type":"Role","_key":"56865","_from":"13113","_to":"36099"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"17557","_from":"13125","_to":"13116"} +{"$label":"ACTS_IN","name":"Frack","type":"Role","_key":"17556","_from":"13124","_to":"13116"} +{"$label":"ACTS_IN","name":"Frick","type":"Role","_key":"17555","_from":"13123","_to":"13116"} +{"$label":"ACTS_IN","name":"Mr. Lopacki","type":"Role","_key":"17554","_from":"13122","_to":"13116"} +{"$label":"ACTS_IN","name":"Douglas Binder","type":"Role","_key":"17553","_from":"13121","_to":"13116"} +{"$label":"ACTS_IN","name":"Stephan","type":"Role","_key":"17552","_from":"13120","_to":"13116"} +{"$label":"ACTS_IN","name":"Elijah Roper","type":"Role","_key":"17550","_from":"13119","_to":"13116"} +{"$label":"ACTS_IN","name":"Natasha Binder","type":"Role","_key":"17549","_from":"13118","_to":"13116"} +{"$label":"ACTS_IN","name":"Chance Boudreaux","type":"Role","_key":"17546","_from":"13117","_to":"13116"} +{"$label":"ACTS_IN","name":"Kyle LeBlanc","type":"Role","_key":"119513","_from":"13117","_to":"70206"} +{"$label":"ACTS_IN","name":"Cmdr. Samuel 'Sam' Keenan","type":"Role","_key":"119033","_from":"13117","_to":"69974"} +{"$label":"ACTS_IN","name":"Andrei","type":"Role","_key":"115368","_from":"13117","_to":"67930"} +{"$label":"ACTS_IN","name":"kristoff","type":"Role","_key":"113914","_from":"13117","_to":"67093"} +{"$label":"ACTS_IN","name":"Louis Burke","type":"Role","_key":"112328","_from":"13117","_to":"66317"} +{"$label":"ACTS_IN","name":"ben archer","type":"Role","_key":"98913","_from":"13117","_to":"58279"} +{"$label":"ACTS_IN","name":"J.C.V.D.","type":"Role","_key":"95807","_from":"13117","_to":"56350"} +{"$label":"ACTS_IN","name":"Ivan Kraschinsky the Russian","type":"Role","_key":"91247","_from":"13117","_to":"53804"} +{"$label":"ACTS_IN","name":"Frank Dux","type":"Role","_key":"71588","_from":"13117","_to":"43361"} +{"$label":"ACTS_IN","name":"Colonel William Guile","type":"Role","_key":"71418","_from":"13117","_to":"43306"} +{"$label":"ACTS_IN","name":"Eddie Lomax","type":"Role","_key":"66642","_from":"13117","_to":"41189"} +{"$label":"ACTS_IN","name":"Alain Moreau","type":"Role","_key":"66334","_from":"13117","_to":"41032"} +{"$label":"ACTS_IN","name":"Replicant \/ Garrotte","type":"Role","_key":"64391","_from":"13117","_to":"40128"} +{"$label":"ACTS_IN","name":"Sam Gillen","type":"Role","_key":"63088","_from":"13117","_to":"39584"} +{"$label":"ACTS_IN","name":"Luc Devereux","type":"Role","_key":"62829","_from":"13117","_to":"39480"} +{"$label":"ACTS_IN","name":"Kurt Sloane","type":"Role","_key":"61791","_from":"13117","_to":"38899"} +{"$label":"ACTS_IN","name":"Gibson Rickenbacker","type":"Role","_key":"61141","_from":"13117","_to":"38640"} +{"$label":"ACTS_IN","name":"Phillippe Sauvage","type":"Role","_key":"58141","_from":"13117","_to":"36780"} +{"$label":"ACTS_IN","name":"Alex \/ Chad Wagner","type":"Role","_key":"54904","_from":"13117","_to":"35108"} +{"$label":"ACTS_IN","name":"Jack Quinn","type":"Role","_key":"53670","_from":"13117","_to":"34619"} +{"$label":"ACTS_IN","name":"Leon Gaultier","type":"Role","_key":"53635","_from":"13117","_to":"34600"} +{"$label":"ACTS_IN","name":"GR44","type":"Role","_key":"53284","_from":"13117","_to":"34455"} +{"$label":"ACTS_IN","name":"Christopher Dubois","type":"Role","_key":"52572","_from":"13117","_to":"34170"} +{"$label":"ACTS_IN","name":"Darren Francis Thomas McCord","type":"Role","_key":"52504","_from":"13117","_to":"34148"} +{"$label":"ACTS_IN","name":"Max Walker","type":"Role","_key":"50924","_from":"13117","_to":"33237"} +{"$label":"ACTS_IN","name":"Alain Lefevre","type":"Role","_key":"27517","_from":"13117","_to":"19747"} +{"$label":"DIRECTED","_key":"52577","_from":"13117","_to":"34170"} +{"$label":"ACTS_IN","name":"Jessie Crossmann","type":"Role","_key":"35088","_from":"13118","_to":"23924"} +{"$label":"ACTS_IN","name":"Aging Man","type":"Role","_key":"97620","_from":"13119","_to":"57466"} +{"$label":"ACTS_IN","name":"King Borna","type":"Role","_key":"114130","_from":"13120","_to":"67211"} +{"$label":"ACTS_IN","name":"Thorgrim","type":"Role","_key":"53536","_from":"13120","_to":"34556"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"17561","_from":"13128","_to":"13126"} +{"$label":"DIRECTED","_key":"17558","_from":"13127","_to":"13126"} +{"$label":"DIRECTED","_key":"120432","_from":"13127","_to":"70750"} +{"$label":"ACTS_IN","name":"Sam McKenna","type":"Role","_key":"100893","_from":"13128","_to":"59482"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100574","_from":"13128","_to":"59315"} +{"$label":"ACTS_IN","name":"Artie DeVanzo","type":"Role","_key":"98671","_from":"13128","_to":"58151"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92818","_from":"13128","_to":"54761"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65240","_from":"13128","_to":"40502"} +{"$label":"DIRECTED","_key":"17578","_from":"13136","_to":"13129"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"17576","_from":"13135","_to":"13129"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"17575","_from":"13134","_to":"13129"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"17574","_from":"13133","_to":"13129"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"17573","_from":"13132","_to":"13129"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"17572","_from":"13131","_to":"13129"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"17568","_from":"13130","_to":"13129"} +{"$label":"ACTS_IN","name":"Hugo Guiler","type":"Role","_key":"114589","_from":"13130","_to":"67500"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109936","_from":"13130","_to":"64954"} +{"$label":"ACTS_IN","name":"Denis Dimbleby Bagley","type":"Role","_key":"101740","_from":"13130","_to":"59882"} +{"$label":"ACTS_IN","name":"withnail","type":"Role","_key":"94493","_from":"13130","_to":"55653"} +{"$label":"ACTS_IN","name":"Giles Redferne","type":"Role","_key":"69233","_from":"13130","_to":"42338"} +{"$label":"ACTS_IN","name":"Colonel Philip Boyle","type":"Role","_key":"49381","_from":"13130","_to":"32335"} +{"$label":"ACTS_IN","name":"Franklin Wilhern","type":"Role","_key":"47662","_from":"13130","_to":"31400"} +{"$label":"ACTS_IN","name":"Dr. Jack Seward","type":"Role","_key":"41769","_from":"13130","_to":"28027"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"36870","_from":"13130","_to":"24998"} +{"$label":"ACTS_IN","name":"Barkis Bittern (voice)","type":"Role","_key":"28973","_from":"13130","_to":"20688"} +{"$label":"ACTS_IN","name":"Cort Romney","type":"Role","_key":"28152","_from":"13130","_to":"20177"} +{"$label":"ACTS_IN","name":"Bonaparte Blenkins","type":"Role","_key":"20354","_from":"13130","_to":"14905"} +{"$label":"ACTS_IN","name":"Roland Mackey","type":"Role","_key":"18373","_from":"13130","_to":"13628"} +{"$label":"DIRECTED","_key":"102732","_from":"13130","_to":"60425"} +{"$label":"ACTS_IN","name":"Guenevere","type":"Role","_key":"70427","_from":"13131","_to":"42880"} +{"$label":"ACTS_IN","name":"Caroline Beaufort Frankenstein","type":"Role","_key":"25177","_from":"13131","_to":"18176"} +{"$label":"ACTS_IN","name":"Diana Stiles","type":"Role","_key":"95271","_from":"13132","_to":"56055"} +{"$label":"ACTS_IN","name":"Lucy Steele","type":"Role","_key":"32870","_from":"13132","_to":"22814"} +{"$label":"ACTS_IN","name":"John Sparrow","type":"Role","_key":"36336","_from":"13133","_to":"24646"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34697","_from":"13133","_to":"23728"} +{"$label":"ACTS_IN","name":"Bella","type":"Role","_key":"91145","_from":"13134","_to":"53767"} +{"$label":"ACTS_IN","name":"Jane Woods","type":"Role","_key":"89939","_from":"13134","_to":"53212"} +{"$label":"ACTS_IN","name":"Paul Claudel","type":"Role","_key":"71697","_from":"13135","_to":"43404"} +{"$label":"ACTS_IN","name":"Pierre Millet","type":"Role","_key":"69619","_from":"13135","_to":"42496"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"48747","_from":"13135","_to":"31971"} +{"$label":"DIRECTED","_key":"100156","_from":"13136","_to":"59079"} +{"$label":"DIRECTED","_key":"66166","_from":"13136","_to":"40931"} +{"$label":"ACTS_IN","name":"Murph","type":"Role","_key":"17588","_from":"13139","_to":"13137"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"17582","_from":"13138","_to":"13137"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"99138","_from":"13138","_to":"58416"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"67222","_from":"13138","_to":"41454"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"64914","_from":"13138","_to":"40359"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"57746","_from":"13138","_to":"36554"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"55495","_from":"13138","_to":"35362"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"54317","_from":"13138","_to":"34859"} +{"$label":"ACTS_IN","name":"Phil D'Amato","type":"Role","_key":"52163","_from":"13138","_to":"33995"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"27950","_from":"13138","_to":"20034"} +{"$label":"ACTS_IN","name":"Danny Gutierrez","type":"Role","_key":"99142","_from":"13139","_to":"58416"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96539","_from":"13139","_to":"56725"} +{"$label":"ACTS_IN","name":"Gee Grenouille","type":"Role","_key":"64910","_from":"13139","_to":"40359"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"57747","_from":"13139","_to":"36554"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"55496","_from":"13139","_to":"35362"} +{"$label":"ACTS_IN","name":"Tommy Grayton","type":"Role","_key":"52165","_from":"13139","_to":"33995"} +{"$label":"ACTS_IN","name":"The Kurd","type":"Role","_key":"17602","_from":"13146","_to":"13140"} +{"$label":"ACTS_IN","name":"Sakr","type":"Role","_key":"17601","_from":"13145","_to":"13140"} +{"$label":"ACTS_IN","name":"Yusef","type":"Role","_key":"17598","_from":"13144","_to":"13140"} +{"$label":"ACTS_IN","name":"Lady Anne Davenport","type":"Role","_key":"17596","_from":"13143","_to":"13140"} +{"$label":"ACTS_IN","name":"Aziz","type":"Role","_key":"17595","_from":"13142","_to":"13140"} +{"$label":"ACTS_IN","name":"Jazira","type":"Role","_key":"17593","_from":"13141","_to":"13140"} +{"$label":"ACTS_IN","name":"Moushumi Mazoomdar","type":"Role","_key":"109960","_from":"13141","_to":"64968"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"68233","_from":"13141","_to":"41901"} +{"$label":"ACTS_IN","name":"Afrim","type":"Role","_key":"69317","_from":"13142","_to":"42372"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"22824","_from":"13143","_to":"16558"} +{"$label":"ACTS_IN","name":"Amir","type":"Role","_key":"115090","_from":"13145","_to":"67774"} +{"$label":"ACTS_IN","name":"Jarma\/Dragan Henchman","type":"Role","_key":"26237","_from":"13145","_to":"18839"} +{"$label":"ACTS_IN","name":"Charles O'Hara","type":"Role","_key":"17621","_from":"13155","_to":"13147"} +{"$label":"ACTS_IN","name":"Samuel Martin","type":"Role","_key":"17620","_from":"13154","_to":"13147"} +{"$label":"ACTS_IN","name":"Susan Martin","type":"Role","_key":"17618","_from":"13153","_to":"13147"} +{"$label":"ACTS_IN","name":"Thomas Martin","type":"Role","_key":"17617","_from":"13152","_to":"13147"} +{"$label":"ACTS_IN","name":"Peter Howard","type":"Role","_key":"17616","_from":"13151","_to":"13147"} +{"$label":"ACTS_IN","name":"Occam","type":"Role","_key":"17615","_from":"13150","_to":"13147"} +{"$label":"ACTS_IN","name":"Anne Howard","type":"Role","_key":"17610","_from":"13149","_to":"13147"} +{"$label":"ACTS_IN","name":"Charlotte Selton","type":"Role","_key":"17606","_from":"13148","_to":"13147"} +{"$label":"ACTS_IN","name":"Marie-Antoinette","type":"Role","_key":"118617","_from":"13148","_to":"69747"} +{"$label":"ACTS_IN","name":"Lucy Bell","type":"Role","_key":"97852","_from":"13148","_to":"57638"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"71480","_from":"13148","_to":"43329"} +{"$label":"ACTS_IN","name":"Lt. Starck","type":"Role","_key":"49554","_from":"13148","_to":"32447"} +{"$label":"ACTS_IN","name":"Jo Wilder","type":"Role","_key":"19903","_from":"13148","_to":"14659"} +{"$label":"ACTS_IN","name":"Ellen Gilcrest Rimbauer","type":"Role","_key":"107822","_from":"13149","_to":"63677"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"101258","_from":"13152","_to":"59629"} +{"$label":"ACTS_IN","name":"Young Jack","type":"Role","_key":"97751","_from":"13152","_to":"57551"} +{"$label":"ACTS_IN","name":"Jim Younger","type":"Role","_key":"94822","_from":"13152","_to":"55841"} +{"$label":"ACTS_IN","name":"Alan Abernathy","type":"Role","_key":"70594","_from":"13152","_to":"42954"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"19967","_from":"13152","_to":"14703"} +{"$label":"ACTS_IN","name":"Young Charlie McGee","type":"Role","_key":"121156","_from":"13153","_to":"71172"} +{"$label":"ACTS_IN","name":"Missie Davis","type":"Role","_key":"108352","_from":"13153","_to":"64047"} +{"$label":"ACTS_IN","name":"Jessie Conrad","type":"Role","_key":"88038","_from":"13153","_to":"52260"} +{"$label":"ACTS_IN","name":"Sunshine","type":"Role","_key":"58807","_from":"13153","_to":"37140"} +{"$label":"ACTS_IN","name":"Shredder Tibby Weub","type":"Role","_key":"51752","_from":"13153","_to":"33768"} +{"$label":"ACTS_IN","name":"Galen","type":"Role","_key":"103868","_from":"13155","_to":"61091"} +{"$label":"ACTS_IN","name":"Monsieur Maillotte","type":"Role","_key":"17632","_from":"13161","_to":"13156"} +{"$label":"ACTS_IN","name":"Madame Maillotte","type":"Role","_key":"17631","_from":"13160","_to":"13156"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"17630","_from":"13159","_to":"13156"} +{"$label":"ACTS_IN","name":"Regine","type":"Role","_key":"17629","_from":"13158","_to":"13156"} +{"$label":"DIRECTED","_key":"17622","_from":"13157","_to":"13156"} +{"$label":"DIRECTED","_key":"90828","_from":"13157","_to":"53592"} +{"$label":"DIRECTED","_key":"27159","_from":"13157","_to":"19528"} +{"$label":"DIRECTED","_key":"27137","_from":"13157","_to":"19525"} +{"$label":"DIRECTED","_key":"27136","_from":"13157","_to":"19521"} +{"$label":"DIRECTED","_key":"27113","_from":"13157","_to":"19519"} +{"$label":"DIRECTED","_key":"27104","_from":"13157","_to":"19515"} +{"$label":"ACTS_IN","name":"Tante Rose","type":"Role","_key":"91222","_from":"13158","_to":"53793"} +{"$label":"ACTS_IN","name":"Tante rose","type":"Role","_key":"91217","_from":"13158","_to":"53789"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"71956","_from":"13158","_to":"43528"} +{"$label":"ACTS_IN","name":"Tracey","type":"Role","_key":"27065","_from":"13158","_to":"19484"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"18893","_from":"13159","_to":"13943"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"43574","_from":"13160","_to":"29101"} +{"$label":"ACTS_IN","name":"Mauricette","type":"Role","_key":"34298","_from":"13160","_to":"23529"} +{"$label":"ACTS_IN","name":"Madame Garaubert","type":"Role","_key":"30933","_from":"13160","_to":"21670"} +{"$label":"ACTS_IN","name":"Miss Lewis","type":"Role","_key":"28451","_from":"13160","_to":"20343"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Cl\u00e9ment","type":"Role","_key":"21541","_from":"13161","_to":"15751"} +{"$label":"ACTS_IN","name":"Julien Schmaltz","type":"Role","_key":"20752","_from":"13161","_to":"15175"} +{"$label":"ACTS_IN","name":"Amanda Talley","type":"Role","_key":"17644","_from":"13168","_to":"13162"} +{"$label":"ACTS_IN","name":"Jane Talley","type":"Role","_key":"17643","_from":"13167","_to":"13162"} +{"$label":"ACTS_IN","name":"Kevin Kelly","type":"Role","_key":"17642","_from":"13166","_to":"13162"} +{"$label":"ACTS_IN","name":"Mark Krupcheck","type":"Role","_key":"17640","_from":"13165","_to":"13162"} +{"$label":"ACTS_IN","name":"Jennifer Smith","type":"Role","_key":"17639","_from":"13164","_to":"13162"} +{"$label":"DIRECTED","_key":"17635","_from":"13163","_to":"13162"} +{"$label":"ACTS_IN","name":"Bower","type":"Role","_key":"121370","_from":"13165","_to":"71326"} +{"$label":"ACTS_IN","name":"Trevor Adams","type":"Role","_key":"110328","_from":"13165","_to":"65196"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"100177","_from":"13165","_to":"59089"} +{"$label":"ACTS_IN","name":"Berke Landers","type":"Role","_key":"59947","_from":"13165","_to":"37851"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"52834","_from":"13165","_to":"34252"} +{"$label":"ACTS_IN","name":"Jake Mazursky","type":"Role","_key":"46774","_from":"13165","_to":"30852"} +{"$label":"ACTS_IN","name":"Specker Dave","type":"Role","_key":"46007","_from":"13165","_to":"30406"} +{"$label":"ACTS_IN","name":"Charlie Prince","type":"Role","_key":"36268","_from":"13165","_to":"24605"} +{"$label":"ACTS_IN","name":"Der Fremde","type":"Role","_key":"32216","_from":"13165","_to":"22456"} +{"$label":"ACTS_IN","name":"Ben Arnold","type":"Role","_key":"18988","_from":"13165","_to":"14034"} +{"$label":"ACTS_IN","name":"Dan the Bellhop","type":"Role","_key":"106784","_from":"13166","_to":"62951"} +{"$label":"ACTS_IN","name":"Mrs. Allen","type":"Role","_key":"57265","_from":"13167","_to":"36317"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"107699","_from":"13168","_to":"63574"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"90656","_from":"13168","_to":"53522"} +{"$label":"ACTS_IN","name":"Angela Grant","type":"Role","_key":"57561","_from":"13168","_to":"36462"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"17655","_from":"13174","_to":"13169"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"17654","_from":"13173","_to":"13169"} +{"$label":"ACTS_IN","name":"Mike Cameron","type":"Role","_key":"17651","_from":"13172","_to":"13169"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"17650","_from":"13171","_to":"13169"} +{"$label":"ACTS_IN","name":"D.C.","type":"Role","_key":"17649","_from":"13170","_to":"13169"} +{"$label":"ACTS_IN","name":"Leila (Voice)","type":"Role","_key":"106603","_from":"13171","_to":"62814"} +{"$label":"ACTS_IN","name":"Vidia","type":"Role","_key":"93210","_from":"13171","_to":"54917"} +{"$label":"ACTS_IN","name":"Dolores Rebchuck","type":"Role","_key":"52200","_from":"13171","_to":"34008"} +{"$label":"ACTS_IN","name":"Crick","type":"Role","_key":"59761","_from":"13173","_to":"37723"} +{"$label":"ACTS_IN","name":"Le psychiatre","type":"Role","_key":"17664","_from":"13180","_to":"13175"} +{"$label":"ACTS_IN","name":"Grand-M\u00e8re","type":"Role","_key":"17661","_from":"13179","_to":"13175"} +{"$label":"ACTS_IN","name":"Edith Guetz","type":"Role","_key":"17659","_from":"13178","_to":"13175"} +{"$label":"ACTS_IN","name":"Tanguy Guetz","type":"Role","_key":"17658","_from":"13177","_to":"13175"} +{"$label":"DIRECTED","_key":"17657","_from":"13176","_to":"13175"} +{"$label":"DIRECTED","_key":"43429","_from":"13176","_to":"29017"} +{"$label":"DIRECTED","_key":"30675","_from":"13176","_to":"21530"} +{"$label":"DIRECTED","_key":"21049","_from":"13176","_to":"15398"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"62248","_from":"13177","_to":"39206"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106058","_from":"13178","_to":"62456"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"105521","_from":"13178","_to":"62092"} +{"$label":"ACTS_IN","name":"Aurore Lalu","type":"Role","_key":"104005","_from":"13178","_to":"61189"} +{"$label":"ACTS_IN","name":"Odile Lalande","type":"Role","_key":"23760","_from":"13178","_to":"17230"} +{"$label":"ACTS_IN","name":"Madame Armande","type":"Role","_key":"34291","_from":"13179","_to":"23529"} +{"$label":"ACTS_IN","name":"Doctor Arnoux","type":"Role","_key":"114470","_from":"13180","_to":"67433"} +{"$label":"ACTS_IN","name":"Soldier Robert Kellerman","type":"Role","_key":"51903","_from":"13180","_to":"33854"} +{"$label":"ACTS_IN","name":"Dr. Wilms","type":"Role","_key":"43439","_from":"13180","_to":"29017"} +{"$label":"ACTS_IN","name":"Bicken","type":"Role","_key":"35866","_from":"13180","_to":"24351"} +{"$label":"ACTS_IN","name":"Monsieur Jean Le Quesnoy","type":"Role","_key":"30681","_from":"13180","_to":"21530"} +{"$label":"DIRECTED","_key":"17674","_from":"13188","_to":"13181"} +{"$label":"ACTS_IN","name":"Marquis de Venesta","type":"Role","_key":"17672","_from":"13187","_to":"13181"} +{"$label":"ACTS_IN","name":"Professor Kuckuck","type":"Role","_key":"17671","_from":"13186","_to":"13181"} +{"$label":"ACTS_IN","name":"Zouzou","type":"Role","_key":"17670","_from":"13185","_to":"13181"} +{"$label":"ACTS_IN","name":"Stabsarzt","type":"Role","_key":"17669","_from":"13184","_to":"13181"} +{"$label":"ACTS_IN","name":"Madame Houpfle","type":"Role","_key":"17668","_from":"13183","_to":"13181"} +{"$label":"ACTS_IN","name":"Eleanor","type":"Role","_key":"17666","_from":"13182","_to":"13181"} +{"$label":"ACTS_IN","name":"Dalli","type":"Role","_key":"90215","_from":"13182","_to":"53344"} +{"$label":"ACTS_IN","name":"Dalli","type":"Role","_key":"49595","_from":"13182","_to":"32466"} +{"$label":"ACTS_IN","name":"Frau von Gregory","type":"Role","_key":"45036","_from":"13183","_to":"29920"} +{"$label":"ACTS_IN","name":"Janine Rocca","type":"Role","_key":"44928","_from":"13183","_to":"29874"} +{"$label":"ACTS_IN","name":"Stefanie K\u00f6ster","type":"Role","_key":"44763","_from":"13183","_to":"29778"} +{"$label":"ACTS_IN","name":"Nanette","type":"Role","_key":"44727","_from":"13183","_to":"29760"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"44676","_from":"13183","_to":"29716"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43912","_from":"13183","_to":"29305"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42064","_from":"13183","_to":"28185"} +{"$label":"ACTS_IN","name":"Oskar J\u00fcttner","type":"Role","_key":"44850","_from":"13184","_to":"29829"} +{"$label":"ACTS_IN","name":"Albert Oberholzer","type":"Role","_key":"42326","_from":"13184","_to":"28337"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"31891","_from":"13184","_to":"22247"} +{"$label":"ACTS_IN","name":"Gabriele","type":"Role","_key":"45942","_from":"13185","_to":"30376"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"41844","_from":"13185","_to":"28067"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"39784","_from":"13185","_to":"26876"} +{"$label":"ACTS_IN","name":"Justus","type":"Role","_key":"91510","_from":"13186","_to":"53947"} +{"$label":"ACTS_IN","name":"Axel Witt","type":"Role","_key":"45970","_from":"13186","_to":"30392"} +{"$label":"ACTS_IN","name":"Reimer","type":"Role","_key":"31327","_from":"13186","_to":"21905"} +{"$label":"ACTS_IN","name":"Richard K\u00f6ster","type":"Role","_key":"44764","_from":"13187","_to":"29778"} +{"$label":"ACTS_IN","name":"Hein","type":"Role","_key":"43783","_from":"13187","_to":"29234"} +{"$label":"ACTS_IN","name":"Harry Pingel","type":"Role","_key":"39991","_from":"13187","_to":"27002"} +{"$label":"DIRECTED","_key":"91518","_from":"13188","_to":"53947"} +{"$label":"DIRECTED","_key":"72473","_from":"13188","_to":"43731"} +{"$label":"DIRECTED","_key":"67850","_from":"13188","_to":"41691"} +{"$label":"DIRECTED","_key":"45967","_from":"13188","_to":"30392"} +{"$label":"DIRECTED","_key":"45098","_from":"13188","_to":"29943"} +{"$label":"DIRECTED","_key":"45056","_from":"13188","_to":"29929"} +{"$label":"DIRECTED","_key":"42321","_from":"13188","_to":"28337"} +{"$label":"ACTS_IN","name":"Gerichtsvollzieher","type":"Role","_key":"17687","_from":"13200","_to":"13189"} +{"$label":"ACTS_IN","name":"Kitajewa","type":"Role","_key":"17686","_from":"13199","_to":"13189"} +{"$label":"ACTS_IN","name":"Smjolkoff","type":"Role","_key":"17685","_from":"13198","_to":"13189"} +{"$label":"ACTS_IN","name":"Bockowa","type":"Role","_key":"17684","_from":"13197","_to":"13189"} +{"$label":"ACTS_IN","name":"Matrjona","type":"Role","_key":"17683","_from":"13196","_to":"13189"} +{"$label":"ACTS_IN","name":"Agrafena","type":"Role","_key":"17682","_from":"13195","_to":"13189"} +{"$label":"ACTS_IN","name":"Postbote","type":"Role","_key":"17681","_from":"13194","_to":"13189"} +{"$label":"ACTS_IN","name":"Maria Pawlowa","type":"Role","_key":"17680","_from":"13193","_to":"13189"} +{"$label":"ACTS_IN","name":"Fedosia","type":"Role","_key":"17679","_from":"13192","_to":"13189"} +{"$label":"ACTS_IN","name":"Missy","type":"Role","_key":"17678","_from":"13191","_to":"13189"} +{"$label":"ACTS_IN","name":"Katjuscha","type":"Role","_key":"17677","_from":"13190","_to":"13189"} +{"$label":"ACTS_IN","name":"Luisa Lewis","type":"Role","_key":"28427","_from":"13190","_to":"20326"} +{"$label":"ACTS_IN","name":"Anna Retzer","type":"Role","_key":"43125","_from":"13192","_to":"28801"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"36194","_from":"13193","_to":"24558"} +{"$label":"ACTS_IN","name":"Britt","type":"Role","_key":"35658","_from":"13193","_to":"24235"} +{"$label":"ACTS_IN","name":"Catherine B\u00e9rard","type":"Role","_key":"27107","_from":"13193","_to":"19515"} +{"$label":"ACTS_IN","name":"Baron Sperling","type":"Role","_key":"45101","_from":"13194","_to":"29943"} +{"$label":"ACTS_IN","name":"Soldat Heini","type":"Role","_key":"44456","_from":"13194","_to":"29617"} +{"$label":"ACTS_IN","name":"Onkel Albert","type":"Role","_key":"43911","_from":"13194","_to":"29305"} +{"$label":"ACTS_IN","name":"Theo Giese","type":"Role","_key":"41134","_from":"13194","_to":"27677"} +{"$label":"ACTS_IN","name":"Anna, la m\u00e8re de Michel","type":"Role","_key":"89158","_from":"13195","_to":"52806"} +{"$label":"ACTS_IN","name":"Mary Meisegeier","type":"Role","_key":"45079","_from":"13195","_to":"29929"} +{"$label":"ACTS_IN","name":"Anna Hartmann","type":"Role","_key":"44416","_from":"13195","_to":"29590"} +{"$label":"ACTS_IN","name":"Nelly Oaks","type":"Role","_key":"44142","_from":"13195","_to":"29420"} +{"$label":"ACTS_IN","name":"Lady Scarlett","type":"Role","_key":"40023","_from":"13195","_to":"27017"} +{"$label":"ACTS_IN","name":"Mrs. Shelton Ravelstoke","type":"Role","_key":"38152","_from":"13195","_to":"25795"} +{"$label":"ACTS_IN","name":"Tante Polly","type":"Role","_key":"89476","_from":"13196","_to":"52973"} +{"$label":"ACTS_IN","name":"Vette","type":"Role","_key":"45071","_from":"13196","_to":"29929"} +{"$label":"ACTS_IN","name":"Frau Kramer","type":"Role","_key":"43130","_from":"13196","_to":"28801"} +{"$label":"ACTS_IN","name":"Tante Paula","type":"Role","_key":"42331","_from":"13196","_to":"28337"} +{"$label":"ACTS_IN","name":"Frau Huber","type":"Role","_key":"31331","_from":"13196","_to":"21905"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"52125","_from":"13197","_to":"33979"} +{"$label":"ACTS_IN","name":"Dr. Kladde","type":"Role","_key":"44567","_from":"13198","_to":"29666"} +{"$label":"ACTS_IN","name":"le colonel Pontmercy","type":"Role","_key":"31553","_from":"13200","_to":"22027"} +{"$label":"ACTS_IN","name":"Captain Yurchenko","type":"Role","_key":"17695","_from":"13207","_to":"13201"} +{"$label":"ACTS_IN","name":"Fitil","type":"Role","_key":"17694","_from":"13206","_to":"13201"} +{"$label":"ACTS_IN","name":"Svist","type":"Role","_key":"17693","_from":"13205","_to":"13201"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"17692","_from":"13204","_to":"13201"} +{"$label":"ACTS_IN","name":"Irina Zareva","type":"Role","_key":"17691","_from":"13203","_to":"13201"} +{"$label":"ACTS_IN","name":"Captain Lisnevsky","type":"Role","_key":"17690","_from":"13202","_to":"13201"} +{"$label":"ACTS_IN","name":"Strider","type":"Role","_key":"114967","_from":"13207","_to":"67708"} +{"$label":"ACTS_IN","name":"Strider","type":"Role","_key":"110479","_from":"13207","_to":"65265"} +{"$label":"ACTS_IN","name":"Dr. Gell-Mann","type":"Role","_key":"17706","_from":"13215","_to":"13208"} +{"$label":"ACTS_IN","name":"Young Joan","type":"Role","_key":"17705","_from":"13214","_to":"13208"} +{"$label":"ACTS_IN","name":"Abacus Adder","type":"Role","_key":"17704","_from":"13213","_to":"13208"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"17703","_from":"13212","_to":"13208"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"17702","_from":"13211","_to":"13208"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"17701","_from":"13210","_to":"13208"} +{"$label":"ACTS_IN","name":"Young Richard","type":"Role","_key":"17700","_from":"13209","_to":"13208"} +{"$label":"ACTS_IN","name":"Young Hercules (voice)","type":"Role","_key":"73066","_from":"13212","_to":"43964"} +{"$label":"ACTS_IN","name":"H. Shin - Honolulu private investigator","type":"Role","_key":"119796","_from":"13213","_to":"70340"} +{"$label":"ACTS_IN","name":"Gen. Trau","type":"Role","_key":"104195","_from":"13213","_to":"61299"} +{"$label":"ACTS_IN","name":"Mark Liu","type":"Role","_key":"104111","_from":"13213","_to":"61250"} +{"$label":"ACTS_IN","name":"Muraji, The Warlord","type":"Role","_key":"59205","_from":"13213","_to":"37387"} +{"$label":"ACTS_IN","name":"Master Wong","type":"Role","_key":"56272","_from":"13213","_to":"35746"} +{"$label":"ACTS_IN","name":"Quan","type":"Role","_key":"55087","_from":"13213","_to":"35180"} +{"$label":"ACTS_IN","name":"David Lo Pan","type":"Role","_key":"45559","_from":"13213","_to":"30161"} +{"$label":"ACTS_IN","name":"Dr. Welty","type":"Role","_key":"29489","_from":"13215","_to":"20905"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"17719","_from":"13220","_to":"13216"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"17715","_from":"13219","_to":"13216"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"17714","_from":"13218","_to":"13216"} +{"$label":"DIRECTED","_key":"17707","_from":"13217","_to":"13216"} +{"$label":"DIRECTED","_key":"101829","_from":"13217","_to":"59933"} +{"$label":"DIRECTED","_key":"71654","_from":"13217","_to":"43387"} +{"$label":"DIRECTED","_key":"54739","_from":"13217","_to":"35036"} +{"$label":"DIRECTED","_key":"54527","_from":"13217","_to":"34943"} +{"$label":"DIRECTED","_key":"54117","_from":"13217","_to":"34783"} +{"$label":"DIRECTED","_key":"46882","_from":"13217","_to":"30909"} +{"$label":"ACTS_IN","name":"Rodney","type":"Role","_key":"107638","_from":"13218","_to":"63534"} +{"$label":"ACTS_IN","name":"HOH \/ Devon","type":"Role","_key":"104359","_from":"13218","_to":"61395"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100598","_from":"13218","_to":"59324"} +{"$label":"ACTS_IN","name":"Dee Loc","type":"Role","_key":"94346","_from":"13218","_to":"55558"} +{"$label":"ACTS_IN","name":"Captain Mack","type":"Role","_key":"90855","_from":"13218","_to":"53609"} +{"$label":"ACTS_IN","name":"Jimmy Bones","type":"Role","_key":"69509","_from":"13218","_to":"42463"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"59123","_from":"13218","_to":"37311"} +{"$label":"ACTS_IN","name":"Scavenger Smoker","type":"Role","_key":"54219","_from":"13218","_to":"34822"} +{"$label":"ACTS_IN","name":"Huggy Bear","type":"Role","_key":"53498","_from":"13218","_to":"34547"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"39704","_from":"13218","_to":"26832"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"94345","_from":"13219","_to":"55558"} +{"$label":"ACTS_IN","name":"Tracy Campbell","type":"Role","_key":"46487","_from":"13220","_to":"30698"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"17734","_from":"13232","_to":"13221"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"17732","_from":"13231","_to":"13221"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"17731","_from":"13230","_to":"13221"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"17730","_from":"13229","_to":"13221"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"17729","_from":"13228","_to":"13221"} +{"$label":"ACTS_IN","name":"Harrison","type":"Role","_key":"17728","_from":"13227","_to":"13221"} +{"$label":"ACTS_IN","name":"Davis","type":"Role","_key":"17726","_from":"13226","_to":"13221"} +{"$label":"ACTS_IN","name":"Scanzano","type":"Role","_key":"17724","_from":"13225","_to":"13221"} +{"$label":"ACTS_IN","name":"Steuben","type":"Role","_key":"17723","_from":"13224","_to":"13221"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"17722","_from":"13223","_to":"13221"} +{"$label":"DIRECTED","_key":"17720","_from":"13222","_to":"13221"} +{"$label":"ACTS_IN","name":"Carine Ferrand","type":"Role","_key":"71425","_from":"13223","_to":"43308"} +{"$label":"ACTS_IN","name":"Le juge Serge Clermont","type":"Role","_key":"89638","_from":"13224","_to":"53052"} +{"$label":"ACTS_IN","name":"Salvatore","type":"Role","_key":"68594","_from":"13224","_to":"42055"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"53018","_from":"13224","_to":"34332"} +{"$label":"ACTS_IN","name":"le prince charmant","type":"Role","_key":"37890","_from":"13224","_to":"25666"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"30918","_from":"13224","_to":"21670"} +{"$label":"ACTS_IN","name":"Photojournalist","type":"Role","_key":"23045","_from":"13224","_to":"16714"} +{"$label":"ACTS_IN","name":"Maxence","type":"Role","_key":"21315","_from":"13224","_to":"15589"} +{"$label":"ACTS_IN","name":"Marcel Caron","type":"Role","_key":"20920","_from":"13224","_to":"15307"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"20818","_from":"13224","_to":"15229"} +{"$label":"DIRECTED","_key":"70353","_from":"13224","_to":"42857"} +{"$label":"ACTS_IN","name":"Al Haddin","type":"Role","_key":"56998","_from":"13231","_to":"36163"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"50495","_from":"13231","_to":"32975"} +{"$label":"ACTS_IN","name":"Mondo Sharon","type":"Role","_key":"70287","_from":"13232","_to":"42822"} +{"$label":"ACTS_IN","name":"Helga Mann","type":"Role","_key":"17747","_from":"13241","_to":"13233"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"17746","_from":"13240","_to":"13233"} +{"$label":"ACTS_IN","name":"Geiger","type":"Role","_key":"17745","_from":"13239","_to":"13233"} +{"$label":"ACTS_IN","name":"Neckermann","type":"Role","_key":"17744","_from":"13238","_to":"13233"} +{"$label":"ACTS_IN","name":"Haller","type":"Role","_key":"17743","_from":"13237","_to":"13233"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"17740","_from":"13236","_to":"13233"} +{"$label":"ACTS_IN","name":"Else Lang","type":"Role","_key":"17738","_from":"13235","_to":"13233"} +{"$label":"DIRECTED","_key":"17735","_from":"13234","_to":"13233"} +{"$label":"ACTS_IN","name":"Glendolene Kimmel","type":"Role","_key":"40426","_from":"13235","_to":"27254"} +{"$label":"ACTS_IN","name":"Junior Kearney","type":"Role","_key":"119061","_from":"13237","_to":"69982"} +{"$label":"ACTS_IN","name":"Jack Harrison","type":"Role","_key":"45491","_from":"13237","_to":"30136"} +{"$label":"ACTS_IN","name":"Howard Ebbets","type":"Role","_key":"24932","_from":"13237","_to":"18019"} +{"$label":"ACTS_IN","name":"Riarch","type":"Role","_key":"91803","_from":"13238","_to":"54153"} +{"$label":"ACTS_IN","name":"Viktor Yurillvich","type":"Role","_key":"39356","_from":"13238","_to":"26617"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"32839","_from":"13238","_to":"22793"} +{"$label":"ACTS_IN","name":"Billiboy","type":"Role","_key":"32719","_from":"13238","_to":"22720"} +{"$label":"ACTS_IN","name":"Hamor","type":"Role","_key":"21086","_from":"13238","_to":"15413"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"19171","_from":"13238","_to":"14169"} +{"$label":"ACTS_IN","name":"Ferret","type":"Role","_key":"114373","_from":"13239","_to":"67370"} +{"$label":"ACTS_IN","name":"Krug Stillo","type":"Role","_key":"104802","_from":"13239","_to":"61659"} +{"$label":"ACTS_IN","name":"Beda","type":"Role","_key":"45303","_from":"13241","_to":"30050"} +{"$label":"ACTS_IN","name":"Orloff","type":"Role","_key":"17754","_from":"13246","_to":"13242"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"17753","_from":"13245","_to":"13242"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"17752","_from":"13244","_to":"13242"} +{"$label":"DIRECTED","_key":"17748","_from":"13243","_to":"13242"} +{"$label":"DIRECTED","_key":"115557","_from":"13243","_to":"68028"} +{"$label":"DIRECTED","_key":"114518","_from":"13243","_to":"67443"} +{"$label":"ACTS_IN","name":"Garderobem\u00e4dchen","type":"Role","_key":"37601","_from":"13244","_to":"25485"} +{"$label":"ACTS_IN","name":"Doyle","type":"Role","_key":"17762","_from":"13251","_to":"13247"} +{"$label":"ACTS_IN","name":"Charlos Chappy Snclair","type":"Role","_key":"17761","_from":"13250","_to":"13247"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"17760","_from":"13249","_to":"13247"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"17759","_from":"13248","_to":"13247"} +{"$label":"ACTS_IN","name":"Caps","type":"Role","_key":"119773","_from":"13250","_to":"70331"} +{"$label":"ACTS_IN","name":"'Honey' Roy Palmer","type":"Role","_key":"118891","_from":"13250","_to":"69879"} +{"$label":"ACTS_IN","name":"Calvin Bouchard","type":"Role","_key":"113680","_from":"13250","_to":"66989"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"109501","_from":"13250","_to":"64682"} +{"$label":"ACTS_IN","name":"Leo Porter","type":"Role","_key":"91206","_from":"13250","_to":"53788"} +{"$label":"ACTS_IN","name":"Charles 'Chappy' Sinclair","type":"Role","_key":"72964","_from":"13250","_to":"43921"} +{"$label":"ACTS_IN","name":"Jeriba \u201eJerry\u201c Shigan","type":"Role","_key":"72449","_from":"13250","_to":"43724"} +{"$label":"ACTS_IN","name":"Charles 'Chappy' Sinclair","type":"Role","_key":"67483","_from":"13250","_to":"41564"} +{"$label":"ACTS_IN","name":"Jake Phillips","type":"Role","_key":"60427","_from":"13250","_to":"38126"} +{"$label":"ACTS_IN","name":"Jake Berkowitz","type":"Role","_key":"51172","_from":"13250","_to":"33379"} +{"$label":"ACTS_IN","name":"Portagee","type":"Role","_key":"45417","_from":"13250","_to":"30103"} +{"$label":"ACTS_IN","name":"Century","type":"Role","_key":"37572","_from":"13250","_to":"25467"} +{"$label":"ACTS_IN","name":"Raymond Addison","type":"Role","_key":"36702","_from":"13250","_to":"24881"} +{"$label":"ACTS_IN","name":"Wordsworth","type":"Role","_key":"36329","_from":"13250","_to":"24646"} +{"$label":"ACTS_IN","name":"Sergeant Emil Foley","type":"Role","_key":"22273","_from":"13250","_to":"16205"} +{"$label":"ACTS_IN","name":"Chrissy","type":"Role","_key":"17774","_from":"13257","_to":"13252"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"17773","_from":"13256","_to":"13252"} +{"$label":"ACTS_IN","name":"Raymond Capomaggi","type":"Role","_key":"17771","_from":"13255","_to":"13252"} +{"$label":"ACTS_IN","name":"Rita Cappomaggi","type":"Role","_key":"17769","_from":"13254","_to":"13252"} +{"$label":"ACTS_IN","name":"Loretta Castorini","type":"Role","_key":"17764","_from":"13253","_to":"13252"} +{"$label":"ACTS_IN","name":"Kathleen Riley","type":"Role","_key":"90686","_from":"13253","_to":"53538"} +{"$label":"ACTS_IN","name":"Dolly Pelliker","type":"Role","_key":"89918","_from":"13253","_to":"53206"} +{"$label":"ACTS_IN","name":"Florence 'Rusty' Dennis","type":"Role","_key":"68347","_from":"13253","_to":"41949"} +{"$label":"ACTS_IN","name":"Elsa Armistan","type":"Role","_key":"62839","_from":"13253","_to":"39488"} +{"$label":"ACTS_IN","name":"Alexandra Medford","type":"Role","_key":"41459","_from":"13253","_to":"27868"} +{"$label":"ACTS_IN","name":"Rachel Flax","type":"Role","_key":"32872","_from":"13253","_to":"22815"} +{"$label":"ACTS_IN","name":"sie selbst","type":"Role","_key":"28166","_from":"13253","_to":"20177"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"118105","_from":"13254","_to":"69414"} +{"$label":"ACTS_IN","name":"Miss Mitzi","type":"Role","_key":"31296","_from":"13256","_to":"21887"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"120285","_from":"13257","_to":"70628"} +{"$label":"ACTS_IN","name":"Penny Dodge","type":"Role","_key":"108424","_from":"13257","_to":"64098"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"17781","_from":"13262","_to":"13258"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"17779","_from":"13261","_to":"13258"} +{"$label":"ACTS_IN","name":"Paris Priest","type":"Role","_key":"17778","_from":"13260","_to":"13258"} +{"$label":"DIRECTED","_key":"17775","_from":"13259","_to":"13258"} +{"$label":"ACTS_IN","name":"Senator Hank Rose","type":"Role","_key":"17791","_from":"13266","_to":"13263"} +{"$label":"ACTS_IN","name":"Ben Devine","type":"Role","_key":"17790","_from":"13265","_to":"13263"} +{"$label":"ACTS_IN","name":"Megan Rose","type":"Role","_key":"17787","_from":"13264","_to":"13263"} +{"$label":"ACTS_IN","name":"Carol Gerber","type":"Role","_key":"69081","_from":"13264","_to":"42274"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"57650","_from":"13264","_to":"36500"} +{"$label":"ACTS_IN","name":"Penny Chadwick","type":"Role","_key":"52710","_from":"13264","_to":"34216"} +{"$label":"ACTS_IN","name":"Maine Mirabeau","type":"Role","_key":"32891","_from":"13264","_to":"22825"} +{"$label":"ACTS_IN","name":"Charlie Swan","type":"Role","_key":"115493","_from":"13265","_to":"67997"} +{"$label":"ACTS_IN","name":"David Watson","type":"Role","_key":"99616","_from":"13265","_to":"58730"} +{"$label":"ACTS_IN","name":"Joey Cortino","type":"Role","_key":"57321","_from":"13265","_to":"36353"} +{"$label":"ACTS_IN","name":"Charlie Swan","type":"Role","_key":"51741","_from":"13265","_to":"33761"} +{"$label":"ACTS_IN","name":"Eric Box","type":"Role","_key":"48194","_from":"13265","_to":"31662"} +{"$label":"ACTS_IN","name":"Lt. Robert Nunally","type":"Role","_key":"41945","_from":"13265","_to":"28107"} +{"$label":"ACTS_IN","name":"President Dwight D. Eisenhower","type":"Role","_key":"120818","_from":"13266","_to":"70947"} +{"$label":"ACTS_IN","name":"David 'Mo' Rutherford","type":"Role","_key":"116433","_from":"13266","_to":"68533"} +{"$label":"ACTS_IN","name":"Marine O.D.","type":"Role","_key":"102322","_from":"13266","_to":"60201"} +{"$label":"ACTS_IN","name":"Brigadier General Hershberg","type":"Role","_key":"65047","_from":"13266","_to":"40418"} +{"$label":"ACTS_IN","name":"Hull Barret","type":"Role","_key":"51239","_from":"13266","_to":"33417"} +{"$label":"ACTS_IN","name":"Winton Dean","type":"Role","_key":"18621","_from":"13266","_to":"13782"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"17801","_from":"13272","_to":"13267"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"17800","_from":"13271","_to":"13267"} +{"$label":"ACTS_IN","name":"Henry Wyler","type":"Role","_key":"17798","_from":"13270","_to":"13267"} +{"$label":"ACTS_IN","name":"Anna Klyczynski","type":"Role","_key":"17796","_from":"13269","_to":"13267"} +{"$label":"DIRECTED","_key":"17793","_from":"13268","_to":"13267"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"21445","_from":"13269","_to":"15682"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"59910","_from":"13270","_to":"37824"} +{"$label":"ACTS_IN","name":"Matador","type":"Role","_key":"47319","_from":"13270","_to":"31163"} +{"$label":"ACTS_IN","name":"Gazaniga","type":"Role","_key":"47089","_from":"13270","_to":"31049"} +{"$label":"ACTS_IN","name":"David Harris","type":"Role","_key":"121432","_from":"13271","_to":"71342"} +{"$label":"ACTS_IN","name":"Jake Lovell","type":"Role","_key":"118108","_from":"13271","_to":"69414"} +{"$label":"ACTS_IN","name":"Ray Tuckby","type":"Role","_key":"106410","_from":"13271","_to":"62695"} +{"$label":"ACTS_IN","name":"Capt. Robert Edwards","type":"Role","_key":"64316","_from":"13271","_to":"40088"} +{"$label":"ACTS_IN","name":"Dr. Peter Elliot","type":"Role","_key":"62617","_from":"13271","_to":"39391"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"111139","_from":"13272","_to":"65639"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"102056","_from":"13272","_to":"60044"} +{"$label":"ACTS_IN","name":"R.C.","type":"Role","_key":"90055","_from":"13272","_to":"53263"} +{"$label":"ACTS_IN","name":"Portia","type":"Role","_key":"68232","_from":"13272","_to":"41901"} +{"$label":"ACTS_IN","name":"Suicide Blonde","type":"Role","_key":"28246","_from":"13272","_to":"20227"} +{"$label":"ACTS_IN","name":"Kayla Silverfox","type":"Role","_key":"18089","_from":"13272","_to":"13433"} +{"$label":"ACTS_IN","name":"Mary Krane","type":"Role","_key":"17811","_from":"13277","_to":"13273"} +{"$label":"ACTS_IN","name":"Cara Crane","type":"Role","_key":"17810","_from":"13276","_to":"13273"} +{"$label":"ACTS_IN","name":"Lindy Krane","type":"Role","_key":"17809","_from":"13275","_to":"13273"} +{"$label":"DIRECTED","_key":"17802","_from":"13274","_to":"13273"} +{"$label":"DIRECTED","_key":"97535","_from":"13274","_to":"57426"} +{"$label":"DIRECTED","_key":"66364","_from":"13274","_to":"41044"} +{"$label":"DIRECTED","_key":"63235","_from":"13274","_to":"39650"} +{"$label":"DIRECTED","_key":"61785","_from":"13274","_to":"38897"} +{"$label":"DIRECTED","_key":"48262","_from":"13274","_to":"31704"} +{"$label":"ACTS_IN","name":"Erin Jordan at ten","type":"Role","_key":"88777","_from":"13275","_to":"52605"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"17824","_from":"13280","_to":"13278"} +{"$label":"ACTS_IN","name":"Ben Wilson","type":"Role","_key":"17822","_from":"13279","_to":"13278"} +{"$label":"ACTS_IN","name":"Gloria Sullivan","type":"Role","_key":"107493","_from":"13280","_to":"63424"} +{"$label":"ACTS_IN","name":"Carol Burdon","type":"Role","_key":"67839","_from":"13280","_to":"41689"} +{"$label":"ACTS_IN","name":"Sarah Kennedy","type":"Role","_key":"53493","_from":"13280","_to":"34546"} +{"$label":"ACTS_IN","name":"Mr. Kroll","type":"Role","_key":"17834","_from":"13286","_to":"13281"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"17833","_from":"13285","_to":"13281"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"17832","_from":"13284","_to":"13281"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"17830","_from":"13283","_to":"13281"} +{"$label":"DIRECTED","_key":"17826","_from":"13282","_to":"13281"} +{"$label":"DIRECTED","_key":"102979","_from":"13282","_to":"60574"} +{"$label":"DIRECTED","_key":"94765","_from":"13282","_to":"55802"} +{"$label":"DIRECTED","_key":"62789","_from":"13282","_to":"39460"} +{"$label":"DIRECTED","_key":"54596","_from":"13282","_to":"34975"} +{"$label":"DIRECTED","_key":"51107","_from":"13282","_to":"33346"} +{"$label":"DIRECTED","_key":"47779","_from":"13282","_to":"31453"} +{"$label":"DIRECTED","_key":"47763","_from":"13282","_to":"31448"} +{"$label":"DIRECTED","_key":"47279","_from":"13282","_to":"31150"} +{"$label":"ACTS_IN","name":"Jake Mosby","type":"Role","_key":"94641","_from":"13283","_to":"55757"} +{"$label":"ACTS_IN","name":"Woodstock","type":"Role","_key":"25239","_from":"13285","_to":"18207"} +{"$label":"ACTS_IN","name":"Dr. Ray","type":"Role","_key":"58060","_from":"13286","_to":"36729"} +{"$label":"ACTS_IN","name":"Lawrence Robertson","type":"Role","_key":"17838","_from":"13290","_to":"13287"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"17836","_from":"13289","_to":"13287"} +{"$label":"DIRECTED","_key":"17835","_from":"13288","_to":"13287"} +{"$label":"DIRECTED","_key":"96800","_from":"13288","_to":"56926"} +{"$label":"DIRECTED","_key":"54259","_from":"13288","_to":"34832"} +{"$label":"DIRECTED","_key":"22582","_from":"13288","_to":"16394"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"111583","_from":"13289","_to":"65876"} +{"$label":"ACTS_IN","name":"Wash","type":"Role","_key":"108692","_from":"13289","_to":"64246"} +{"$label":"ACTS_IN","name":"Wat","type":"Role","_key":"54105","_from":"13289","_to":"34782"} +{"$label":"ACTS_IN","name":"Doc Potter","type":"Role","_key":"36269","_from":"13289","_to":"24605"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"35184","_from":"13289","_to":"23973"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"19102","_from":"13289","_to":"14109"} +{"$label":"ACTS_IN","name":"Simon Hart","type":"Role","_key":"115726","_from":"13290","_to":"68140"} +{"$label":"ACTS_IN","name":"Richard Adderly","type":"Role","_key":"104850","_from":"13290","_to":"61696"} +{"$label":"ACTS_IN","name":"Christopher Pike","type":"Role","_key":"94691","_from":"13290","_to":"55786"} +{"$label":"ACTS_IN","name":"Anthony 'Tony' Leighton","type":"Role","_key":"91498","_from":"13290","_to":"53941"} +{"$label":"ACTS_IN","name":"Brice","type":"Role","_key":"90488","_from":"13290","_to":"53461"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"89073","_from":"13290","_to":"52767"} +{"$label":"ACTS_IN","name":"John F. Kennedy","type":"Role","_key":"73081","_from":"13290","_to":"43970"} +{"$label":"ACTS_IN","name":"Lt. Bennie Macko","type":"Role","_key":"69483","_from":"13290","_to":"42450"} +{"$label":"ACTS_IN","name":"Nicholas \"Nick\" Parsons \/ Jonathan Devereaux","type":"Role","_key":"62996","_from":"13290","_to":"39549"} +{"$label":"ACTS_IN","name":"Connor Fahey","type":"Role","_key":"60777","_from":"13290","_to":"38393"} +{"$label":"ACTS_IN","name":"Davis McClaren","type":"Role","_key":"52190","_from":"13290","_to":"34007"} +{"$label":"ACTS_IN","name":"Agent Jack McCready - FBI","type":"Role","_key":"47190","_from":"13290","_to":"31106"} +{"$label":"ACTS_IN","name":"US-Pra\u0308sident","type":"Role","_key":"44496","_from":"13290","_to":"29641"} +{"$label":"ACTS_IN","name":"Nolan Walsh","type":"Role","_key":"43399","_from":"13290","_to":"28997"} +{"$label":"ACTS_IN","name":"Jerome McFarland","type":"Role","_key":"36397","_from":"13290","_to":"24688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"17842","_from":"13292","_to":"13291"} +{"$label":"ACTS_IN","name":"Rowena Morgan","type":"Role","_key":"17854","_from":"13299","_to":"13293"} +{"$label":"ACTS_IN","name":"Cole Holland ( mit 28 Jahren )","type":"Role","_key":"17853","_from":"13298","_to":"13293"} +{"$label":"ACTS_IN","name":"Cole Holland ( mit 15 Jahren )","type":"Role","_key":"17852","_from":"13297","_to":"13293"} +{"$label":"ACTS_IN","name":"Cole Holland ( mit 6. Jahren )","type":"Role","_key":"17851","_from":"13296","_to":"13293"} +{"$label":"ACTS_IN","name":"Bill Meister","type":"Role","_key":"17847","_from":"13295","_to":"13293"} +{"$label":"ACTS_IN","name":"Iris Holland","type":"Role","_key":"17846","_from":"13294","_to":"13293"} +{"$label":"ACTS_IN","name":"Anne Marie Purdy","type":"Role","_key":"116558","_from":"13294","_to":"68610"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"108878","_from":"13294","_to":"64347"} +{"$label":"ACTS_IN","name":"Katrina","type":"Role","_key":"104733","_from":"13294","_to":"61613"} +{"$label":"ACTS_IN","name":"Deborah Pearce","type":"Role","_key":"100825","_from":"13294","_to":"59442"} +{"$label":"ACTS_IN","name":"Gloria Sidell","type":"Role","_key":"98231","_from":"13294","_to":"57867"} +{"$label":"ACTS_IN","name":"Francine Pefko","type":"Role","_key":"89755","_from":"13294","_to":"53126"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"68064","_from":"13294","_to":"41819"} +{"$label":"ACTS_IN","name":"Janet Colgate","type":"Role","_key":"61203","_from":"13294","_to":"38666"} +{"$label":"ACTS_IN","name":"Rita Robbins","type":"Role","_key":"52550","_from":"13294","_to":"34162"} +{"$label":"ACTS_IN","name":"Tess Trueheart","type":"Role","_key":"50239","_from":"13294","_to":"32833"} +{"$label":"ACTS_IN","name":"Mrs. Howard","type":"Role","_key":"49306","_from":"13294","_to":"32288"} +{"$label":"ACTS_IN","name":"Easter Bunny","type":"Role","_key":"96253","_from":"13295","_to":"56561"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"59995","_from":"13295","_to":"37868"} +{"$label":"ACTS_IN","name":"Tia Russell","type":"Role","_key":"22223","_from":"13299","_to":"16185"} +{"$label":"ACTS_IN","name":"Doc Barlow","type":"Role","_key":"17866","_from":"13302","_to":"13300"} +{"$label":"ACTS_IN","name":"Mose","type":"Role","_key":"17863","_from":"13301","_to":"13300"} +{"$label":"ACTS_IN","name":"Bud-Lite Kaminski","type":"Role","_key":"115040","_from":"13301","_to":"67739"} +{"$label":"ACTS_IN","name":"Uncle the Pig","type":"Role","_key":"58988","_from":"13301","_to":"37240"} +{"$label":"ACTS_IN","name":"BLAZE","type":"Role","_key":"110345","_from":"13302","_to":"65202"} +{"$label":"ACTS_IN","name":"Det. Staynor","type":"Role","_key":"64377","_from":"13302","_to":"40118"} +{"$label":"ACTS_IN","name":"Finbar McBride","type":"Role","_key":"17882","_from":"13312","_to":"13303"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"17881","_from":"13311","_to":"13303"} +{"$label":"ACTS_IN","name":"Danny (as Joe Lotruglio)","type":"Role","_key":"17880","_from":"13310","_to":"13303"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"17877","_from":"13309","_to":"13303"} +{"$label":"ACTS_IN","name":"Cleo (neighbor girl)","type":"Role","_key":"17876","_from":"13308","_to":"13303"} +{"$label":"ACTS_IN","name":"Joe Oramas","type":"Role","_key":"17873","_from":"13307","_to":"13303"} +{"$label":"ACTS_IN","name":"Louis Tiboni","type":"Role","_key":"17872","_from":"13306","_to":"13303"} +{"$label":"ACTS_IN","name":"Cashier (Paula Garces)","type":"Role","_key":"17870","_from":"13305","_to":"13303"} +{"$label":"ACTS_IN","name":"Store Customer","type":"Role","_key":"17869","_from":"13304","_to":"13303"} +{"$label":"ACTS_IN","name":"Gloria Torrez","type":"Role","_key":"119262","_from":"13305","_to":"70075"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"102828","_from":"13305","_to":"60486"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"94844","_from":"13305","_to":"55853"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"68879","_from":"13305","_to":"42187"} +{"$label":"ACTS_IN","name":"Mal","type":"Role","_key":"93072","_from":"13306","_to":"54866"} +{"$label":"ACTS_IN","name":"Uncle Arthur","type":"Role","_key":"90367","_from":"13306","_to":"53400"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"89727","_from":"13306","_to":"53110"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"57808","_from":"13306","_to":"36591"} +{"$label":"ACTS_IN","name":"Molt (voice)","type":"Role","_key":"54195","_from":"13306","_to":"34813"} +{"$label":"ACTS_IN","name":"Julien Daniels","type":"Role","_key":"23483","_from":"13306","_to":"17023"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"57253","_from":"13307","_to":"36317"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"56698","_from":"13307","_to":"36013"} +{"$label":"ACTS_IN","name":"Steve, Amelia's Boyfriend","type":"Role","_key":"54144","_from":"13307","_to":"34789"} +{"$label":"ACTS_IN","name":"Chic","type":"Role","_key":"31297","_from":"13307","_to":"21887"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"20605","_from":"13307","_to":"15077"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"98675","_from":"13310","_to":"58151"} +{"$label":"ACTS_IN","name":"Mr. Edwards","type":"Role","_key":"61553","_from":"13310","_to":"38803"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"49321","_from":"13310","_to":"32290"} +{"$label":"ACTS_IN","name":"Bert Miller","type":"Role","_key":"65002","_from":"13311","_to":"40401"} +{"$label":"ACTS_IN","name":"FBI Agent Corman","type":"Role","_key":"52731","_from":"13311","_to":"34221"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"51643","_from":"13311","_to":"33692"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"44191","_from":"13311","_to":"29455"} +{"$label":"ACTS_IN","name":"Cravely","type":"Role","_key":"44004","_from":"13311","_to":"29354"} +{"$label":"ACTS_IN","name":"Bud Gerber","type":"Role","_key":"28509","_from":"13311","_to":"20373"} +{"$label":"ACTS_IN","name":"Roland Yates","type":"Role","_key":"26241","_from":"13311","_to":"18839"} +{"$label":"ACTS_IN","name":"Rowlie","type":"Role","_key":"101019","_from":"13312","_to":"59532"} +{"$label":"ACTS_IN","name":"Ben Klandis","type":"Role","_key":"58412","_from":"13312","_to":"36916"} +{"$label":"ACTS_IN","name":"Tito","type":"Role","_key":"52395","_from":"13312","_to":"34097"} +{"$label":"ACTS_IN","name":"Lemon","type":"Role","_key":"47661","_from":"13312","_to":"31400"} +{"$label":"ACTS_IN","name":"Dr. Simon Barsinister","type":"Role","_key":"44192","_from":"13312","_to":"29455"} +{"$label":"ACTS_IN","name":"Trumpkin","type":"Role","_key":"21526","_from":"13312","_to":"15744"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"19098","_from":"13312","_to":"14109"} +{"$label":"ACTS_IN","name":"Faust, On Stage","type":"Role","_key":"17892","_from":"13318","_to":"13313"} +{"$label":"ACTS_IN","name":"Emily Russel","type":"Role","_key":"17890","_from":"13317","_to":"13313"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"17889","_from":"13316","_to":"13313"} +{"$label":"ACTS_IN","name":"Augusta Jordan","type":"Role","_key":"17888","_from":"13315","_to":"13313"} +{"$label":"ACTS_IN","name":"Colonel Worth","type":"Role","_key":"17886","_from":"13314","_to":"13313"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"109720","_from":"13314","_to":"64795"} +{"$label":"ACTS_IN","name":"Dr. Greg Jameson","type":"Role","_key":"39902","_from":"13314","_to":"26959"} +{"$label":"ACTS_IN","name":"Jonathan Malkus","type":"Role","_key":"60221","_from":"13318","_to":"37980"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"17901","_from":"13323","_to":"13319"} +{"$label":"ACTS_IN","name":"Prof. Wells","type":"Role","_key":"17900","_from":"13322","_to":"13319"} +{"$label":"ACTS_IN","name":"Ed Green","type":"Role","_key":"17899","_from":"13321","_to":"13319"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"17898","_from":"13320","_to":"13319"} +{"$label":"ACTS_IN","name":"Ma Kelly","type":"Role","_key":"110119","_from":"13320","_to":"65070"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"96916","_from":"13320","_to":"57008"} +{"$label":"ACTS_IN","name":"Estelle","type":"Role","_key":"63487","_from":"13320","_to":"39758"} +{"$label":"ACTS_IN","name":"Fred Shepard","type":"Role","_key":"64074","_from":"13321","_to":"39986"} +{"$label":"ACTS_IN","name":"Chief Josh Jarrett","type":"Role","_key":"22321","_from":"13321","_to":"16222"} +{"$label":"ACTS_IN","name":"Dean Acheson","type":"Role","_key":"110408","_from":"13322","_to":"65230"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"47568","_from":"13323","_to":"31338"} +{"$label":"ACTS_IN","name":"Riley Poole","type":"Role","_key":"17909","_from":"13326","_to":"13324"} +{"$label":"ACTS_IN","name":"Shaw","type":"Role","_key":"17908","_from":"13325","_to":"13324"} +{"$label":"ACTS_IN","name":"Doug Billings","type":"Role","_key":"117492","_from":"13326","_to":"69087"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"47838","_from":"13326","_to":"31493"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"45000","_from":"13326","_to":"29901"} +{"$label":"ACTS_IN","name":"Riley Poole","type":"Role","_key":"44494","_from":"13326","_to":"29641"} +{"$label":"ACTS_IN","name":"St\u00e9phane Lecouvette","type":"Role","_key":"17922","_from":"13336","_to":"13327"} +{"$label":"ACTS_IN","name":"Muzard","type":"Role","_key":"17921","_from":"13335","_to":"13327"} +{"$label":"ACTS_IN","name":"Le jeune homme de l'agence","type":"Role","_key":"17920","_from":"13334","_to":"13327"} +{"$label":"ACTS_IN","name":"Dani\u00e8le Joffroy","type":"Role","_key":"17918","_from":"13333","_to":"13327"} +{"$label":"ACTS_IN","name":"Patrice Joffroy","type":"Role","_key":"17917","_from":"13332","_to":"13327"} +{"$label":"ACTS_IN","name":"Catherine Rougerie","type":"Role","_key":"17916","_from":"13331","_to":"13327"} +{"$label":"ACTS_IN","name":"Marcel Bonfils","type":"Role","_key":"17915","_from":"13330","_to":"13327"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"17914","_from":"13329","_to":"13327"} +{"$label":"ACTS_IN","name":"Anne Torrini","type":"Role","_key":"17912","_from":"13328","_to":"13327"} +{"$label":"ACTS_IN","name":"Liliane Torrini","type":"Role","_key":"49651","_from":"13328","_to":"32488"} +{"$label":"DIRECTED","_key":"30665","_from":"13328","_to":"21526"} +{"$label":"ACTS_IN","name":"Alain Valentin","type":"Role","_key":"89553","_from":"13329","_to":"52998"} +{"$label":"ACTS_IN","name":"Belone, le voisin de Pignon","type":"Role","_key":"69874","_from":"13329","_to":"42634"} +{"$label":"ACTS_IN","name":"Paul Martin","type":"Role","_key":"63608","_from":"13329","_to":"39796"} +{"$label":"ACTS_IN","name":"Nosberg","type":"Role","_key":"46035","_from":"13329","_to":"30419"} +{"$label":"ACTS_IN","name":"Goemond","type":"Role","_key":"34024","_from":"13329","_to":"23403"} +{"$label":"ACTS_IN","name":"Danglars","type":"Role","_key":"32552","_from":"13329","_to":"22629"} +{"$label":"ACTS_IN","name":"Aim\u00e9 Barachet","type":"Role","_key":"27119","_from":"13329","_to":"19519"} +{"$label":"ACTS_IN","name":"Hippolyte","type":"Role","_key":"24197","_from":"13329","_to":"17530"} +{"$label":"ACTS_IN","name":"Roland Province","type":"Role","_key":"118057","_from":"13330","_to":"69385"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"105242","_from":"13330","_to":"61936"} +{"$label":"ACTS_IN","name":"F\u00e9lix","type":"Role","_key":"101268","_from":"13330","_to":"59631"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101262","_from":"13330","_to":"59630"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96129","_from":"13330","_to":"56500"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71993","_from":"13330","_to":"43537"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"68382","_from":"13330","_to":"41963"} +{"$label":"ACTS_IN","name":"Cl\u00e9ment Mathieu","type":"Role","_key":"37747","_from":"13330","_to":"25604"} +{"$label":"ACTS_IN","name":"Edmond Batignole","type":"Role","_key":"22113","_from":"13330","_to":"16130"} +{"$label":"DIRECTED","_key":"22122","_from":"13330","_to":"16130"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"27128","_from":"13331","_to":"19521"} +{"$label":"ACTS_IN","name":"Mosk","type":"Role","_key":"118040","_from":"13334","_to":"69385"} +{"$label":"ACTS_IN","name":"L'obs\u00e9d\u00e9 au t\u00e9l\u00e9phone","type":"Role","_key":"101270","_from":"13334","_to":"59631"} +{"$label":"ACTS_IN","name":"Professeur Martineau","type":"Role","_key":"88436","_from":"13334","_to":"52417"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"68381","_from":"13334","_to":"41963"} +{"$label":"ACTS_IN","name":"Aym\u00e9 Pigrenet","type":"Role","_key":"62196","_from":"13334","_to":"39172"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"49716","_from":"13334","_to":"32530"} +{"$label":"ACTS_IN","name":"Alonso","type":"Role","_key":"35640","_from":"13334","_to":"24225"} +{"$label":"ACTS_IN","name":"un ouvrier","type":"Role","_key":"32861","_from":"13334","_to":"22810"} +{"$label":"ACTS_IN","name":"Taboureau","type":"Role","_key":"30652","_from":"13334","_to":"21518"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"28982","_from":"13334","_to":"20696"} +{"$label":"ACTS_IN","name":"Forget","type":"Role","_key":"28163","_from":"13334","_to":"20177"} +{"$label":"DIRECTED","_key":"49707","_from":"13334","_to":"32530"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Nicolas Bervesier","type":"Role","_key":"116296","_from":"13336","_to":"68466"} +{"$label":"ACTS_IN","name":"Tom Bledish","type":"Role","_key":"105235","_from":"13336","_to":"61936"} +{"$label":"ACTS_IN","name":"Pierre Mortez","type":"Role","_key":"101266","_from":"13336","_to":"59631"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96035","_from":"13336","_to":"56451"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"71753","_from":"13336","_to":"43433"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"70097","_from":"13336","_to":"42735"} +{"$label":"ACTS_IN","name":"Guillaume, the Director of Public Relations","type":"Role","_key":"69872","_from":"13336","_to":"42634"} +{"$label":"ACTS_IN","name":"Popeye","type":"Role","_key":"68383","_from":"13336","_to":"41963"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Lesbuche","type":"Role","_key":"62114","_from":"13336","_to":"39121"} +{"$label":"ACTS_IN","name":"Edgar Cosset","type":"Role","_key":"54278","_from":"13336","_to":"34846"} +{"$label":"ACTS_IN","name":"Pierre Brochant","type":"Role","_key":"53754","_from":"13336","_to":"34652"} +{"$label":"ACTS_IN","name":"Louis XIV","type":"Role","_key":"36086","_from":"13336","_to":"24488"} +{"$label":"ACTS_IN","name":"Devoluy","type":"Role","_key":"31230","_from":"13336","_to":"21854"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"17934","_from":"13344","_to":"13337"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"17932","_from":"13338","_to":"13337"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"17931","_from":"13343","_to":"13337"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"17930","_from":"13342","_to":"13337"} +{"$label":"ACTS_IN","name":"Branko","type":"Role","_key":"17929","_from":"13341","_to":"13337"} +{"$label":"ACTS_IN","name":"Hasse","type":"Role","_key":"17928","_from":"13340","_to":"13337"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"17925","_from":"13339","_to":"13337"} +{"$label":"DIRECTED","_key":"17924","_from":"13338","_to":"13337"} +{"$label":"DIRECTED","_key":"116551","_from":"13338","_to":"68608"} +{"$label":"DIRECTED","_key":"114568","_from":"13338","_to":"67490"} +{"$label":"DIRECTED","_key":"69178","_from":"13338","_to":"42306"} +{"$label":"DIRECTED","_key":"69168","_from":"13338","_to":"42301"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"106497","_from":"13339","_to":"62740"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"35413","_from":"13339","_to":"24090"} +{"$label":"ACTS_IN","name":"The Lawyer Nils Bjurman","type":"Role","_key":"104550","_from":"13340","_to":"61500"} +{"$label":"ACTS_IN","name":"Lars Johan Bucht","type":"Role","_key":"93506","_from":"13340","_to":"55052"} +{"$label":"ACTS_IN","name":"F\u00e6ringen","type":"Role","_key":"61490","_from":"13340","_to":"38782"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"121217","_from":"13344","_to":"71206"} +{"$label":"ACTS_IN","name":"Kitjo","type":"Role","_key":"114566","_from":"13344","_to":"67490"} +{"$label":"ACTS_IN","name":"Yuri Karpov","type":"Role","_key":"98818","_from":"13344","_to":"58224"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"69174","_from":"13344","_to":"42306"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"27267","_from":"13344","_to":"19605"} +{"$label":"ACTS_IN","name":"Lalo\/Francois","type":"Role","_key":"17947","_from":"13352","_to":"13345"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"17946","_from":"13351","_to":"13345"} +{"$label":"ACTS_IN","name":"Git","type":"Role","_key":"17945","_from":"13350","_to":"13345"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"17940","_from":"13349","_to":"13345"} +{"$label":"ACTS_IN","name":"Linguini","type":"Role","_key":"17937","_from":"13348","_to":"13345"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"17936","_from":"13347","_to":"13345"} +{"$label":"DIRECTED","_key":"17935","_from":"13346","_to":"13345"} +{"$label":"DIRECTED","_key":"97550","_from":"13346","_to":"57447"} +{"$label":"DIRECTED","_key":"62937","_from":"13346","_to":"39525"} +{"$label":"DIRECTED","_key":"56996","_from":"13346","_to":"36156"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109285","_from":"13347","_to":"64565"} +{"$label":"ACTS_IN","name":"Mr. Groin (voice)","type":"Role","_key":"105131","_from":"13347","_to":"61866"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100603","_from":"13347","_to":"59324"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100576","_from":"13347","_to":"59315"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"92261","_from":"13347","_to":"54447"} +{"$label":"ACTS_IN","name":"Ed Herbst","type":"Role","_key":"69134","_from":"13347","_to":"42292"} +{"$label":"ACTS_IN","name":"Jeff Spoder","type":"Role","_key":"60562","_from":"13347","_to":"38218"} +{"$label":"ACTS_IN","name":"Techie Guy","type":"Role","_key":"45006","_from":"13347","_to":"29901"} +{"$label":"ACTS_IN","name":"Linguini","type":"Role","_key":"92263","_from":"13348","_to":"54447"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"92262","_from":"13349","_to":"54447"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70311","_from":"13350","_to":"42835"} +{"$label":"ACTS_IN","name":"Kip Killian","type":"Role","_key":"120476","_from":"13351","_to":"70764"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"120300","_from":"13351","_to":"70628"} +{"$label":"ACTS_IN","name":"The Missing Link (voice)","type":"Role","_key":"104778","_from":"13351","_to":"61645"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"94715","_from":"13351","_to":"55790"} +{"$label":"ACTS_IN","name":"Lou Redwood","type":"Role","_key":"93653","_from":"13351","_to":"55135"} +{"$label":"ACTS_IN","name":"Messiah","type":"Role","_key":"93423","_from":"13351","_to":"55013"} +{"$label":"ACTS_IN","name":"Vlad (voice)","type":"Role","_key":"88800","_from":"13351","_to":"52615"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"65546","_from":"13351","_to":"40621"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"60300","_from":"13351","_to":"38026"} +{"$label":"ACTS_IN","name":"John Solomon","type":"Role","_key":"60244","_from":"13351","_to":"38004"} +{"$label":"ACTS_IN","name":"Stranz Van Waldenberg","type":"Role","_key":"58499","_from":"13351","_to":"36974"} +{"$label":"ACTS_IN","name":"Nelson Biederman IV","type":"Role","_key":"57003","_from":"13351","_to":"36167"} +{"$label":"ACTS_IN","name":"Kit","type":"Role","_key":"31286","_from":"13351","_to":"21881"} +{"$label":"ACTS_IN","name":"Mary Callaghan","type":"Role","_key":"17957","_from":"13355","_to":"13353"} +{"$label":"ACTS_IN","name":"Midge Callaghan","type":"Role","_key":"17956","_from":"13354","_to":"13353"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"115021","_from":"13354","_to":"67722"} +{"$label":"ACTS_IN","name":"Tinka Parker","type":"Role","_key":"119959","_from":"13355","_to":"70456"} +{"$label":"ACTS_IN","name":"Snowy Egret","type":"Role","_key":"116163","_from":"13355","_to":"68398"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"101052","_from":"13355","_to":"59547"} +{"$label":"ACTS_IN","name":"Evie","type":"Role","_key":"94845","_from":"13355","_to":"55853"} +{"$label":"ACTS_IN","name":"Lilliana 'Lilly' Hoffman","type":"Role","_key":"52512","_from":"13355","_to":"34149"} +{"$label":"ACTS_IN","name":"Lori Campbell","type":"Role","_key":"43512","_from":"13355","_to":"29059"} +{"$label":"DIRECTED","_key":"17973","_from":"13368","_to":"13356"} +{"$label":"ACTS_IN","name":"Lucas\u2019 Ex-Frau","type":"Role","_key":"17972","_from":"13367","_to":"13356"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"17971","_from":"13366","_to":"13356"} +{"$label":"ACTS_IN","name":"Boissi\u00e8re","type":"Role","_key":"17970","_from":"13365","_to":"13356"} +{"$label":"ACTS_IN","name":"Sumo Yakeshi","type":"Role","_key":"17969","_from":"13364","_to":"13356"} +{"$label":"ACTS_IN","name":"Della Ponte","type":"Role","_key":"17968","_from":"13363","_to":"13356"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"17967","_from":"13362","_to":"13356"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"17966","_from":"13361","_to":"13356"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"17965","_from":"13360","_to":"13356"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"17964","_from":"13359","_to":"13356"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"17963","_from":"13358","_to":"13356"} +{"$label":"ACTS_IN","name":"Jeanne Larozi\u00e8re","type":"Role","_key":"17961","_from":"13357","_to":"13356"} +{"$label":"ACTS_IN","name":"B\u00e9atrice","type":"Role","_key":"91652","_from":"13358","_to":"54047"} +{"$label":"ACTS_IN","name":"Albert, le barman","type":"Role","_key":"34625","_from":"13359","_to":"23691"} +{"$label":"ACTS_IN","name":"Keller","type":"Role","_key":"42236","_from":"13360","_to":"28283"} +{"$label":"ACTS_IN","name":"Valentine","type":"Role","_key":"101339","_from":"13361","_to":"59657"} +{"$label":"ACTS_IN","name":"\u00c8ve","type":"Role","_key":"51364","_from":"13362","_to":"33492"} +{"$label":"ACTS_IN","name":"Lieutenant Hill","type":"Role","_key":"50494","_from":"13363","_to":"32975"} +{"$label":"ACTS_IN","name":"Sgt. Ross","type":"Role","_key":"50480","_from":"13363","_to":"32971"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"48804","_from":"13363","_to":"32007"} +{"$label":"ACTS_IN","name":"Le chauffeur de Charrier","type":"Role","_key":"32061","_from":"13363","_to":"22332"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22969","_from":"13363","_to":"16655"} +{"$label":"ACTS_IN","name":"Myriam","type":"Role","_key":"20896","_from":"13366","_to":"15289"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"119130","_from":"13368","_to":"70017"} +{"$label":"ACTS_IN","name":"Maggie McConnell","type":"Role","_key":"17983","_from":"13373","_to":"13369"} +{"$label":"ACTS_IN","name":"Debra Graham","type":"Role","_key":"17982","_from":"13372","_to":"13369"} +{"$label":"ACTS_IN","name":"Reene Cote","type":"Role","_key":"17981","_from":"13371","_to":"13369"} +{"$label":"ACTS_IN","name":"Nicholas Willis","type":"Role","_key":"17980","_from":"13370","_to":"13369"} +{"$label":"ACTS_IN","name":"Michael Frakes","type":"Role","_key":"101852","_from":"13370","_to":"59942"} +{"$label":"ACTS_IN","name":"Cowboy Eric","type":"Role","_key":"50910","_from":"13370","_to":"33222"} +{"$label":"ACTS_IN","name":"5. Offizier Harold G. Lowe","type":"Role","_key":"22784","_from":"13370","_to":"16516"} +{"$label":"ACTS_IN","name":"Yevette","type":"Role","_key":"63554","_from":"13372","_to":"39779"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"53732","_from":"13372","_to":"34641"} +{"$label":"ACTS_IN","name":"Hallie McDaniel","type":"Role","_key":"30287","_from":"13372","_to":"21313"} +{"$label":"ACTS_IN","name":"Cynthia Tudeski","type":"Role","_key":"17994","_from":"13376","_to":"13374"} +{"$label":"DIRECTED","_key":"17986","_from":"13375","_to":"13374"} +{"$label":"DIRECTED","_key":"113897","_from":"13375","_to":"67087"} +{"$label":"DIRECTED","_key":"103556","_from":"13375","_to":"60907"} +{"$label":"DIRECTED","_key":"91496","_from":"13375","_to":"53940"} +{"$label":"DIRECTED","_key":"68061","_from":"13375","_to":"41817"} +{"$label":"DIRECTED","_key":"63080","_from":"13375","_to":"39576"} +{"$label":"DIRECTED","_key":"62895","_from":"13375","_to":"39510"} +{"$label":"DIRECTED","_key":"52546","_from":"13375","_to":"34162"} +{"$label":"ACTS_IN","name":"Simone Wilkinson","type":"Role","_key":"92061","_from":"13376","_to":"54312"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"90390","_from":"13376","_to":"53411"} +{"$label":"ACTS_IN","name":"Mimi Prager","type":"Role","_key":"66341","_from":"13376","_to":"41033"} +{"$label":"ACTS_IN","name":"Alex Minetti","type":"Role","_key":"66335","_from":"13376","_to":"41032"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"61758","_from":"13376","_to":"38888"} +{"$label":"ACTS_IN","name":"Lt. Melanie Ballard","type":"Role","_key":"59465","_from":"13376","_to":"37557"} +{"$label":"ACTS_IN","name":"Sil","type":"Role","_key":"53281","_from":"13376","_to":"34454"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"18499","_from":"13376","_to":"13698"} +{"$label":"ACTS_IN","name":"Francois","type":"Role","_key":"18004","_from":"13386","_to":"13377"} +{"$label":"ACTS_IN","name":"Mobil Bello 7","type":"Role","_key":"18003","_from":"13385","_to":"13377"} +{"$label":"ACTS_IN","name":"Silvestri","type":"Role","_key":"18002","_from":"13384","_to":"13377"} +{"$label":"ACTS_IN","name":"Dantesca Catarosea","type":"Role","_key":"18001","_from":"13383","_to":"13377"} +{"$label":"ACTS_IN","name":"Utmost Private Dick","type":"Role","_key":"18000","_from":"13382","_to":"13377"} +{"$label":"ACTS_IN","name":"Gianni Gangi","type":"Role","_key":"17999","_from":"13381","_to":"13377"} +{"$label":"ACTS_IN","name":"Marco Antonioni","type":"Role","_key":"17998","_from":"13380","_to":"13377"} +{"$label":"ACTS_IN","name":"Yolante Gangi","type":"Role","_key":"17997","_from":"13379","_to":"13377"} +{"$label":"DIRECTED","_key":"17995","_from":"13378","_to":"13377"} +{"$label":"DIRECTED","_key":"110145","_from":"13378","_to":"65080"} +{"$label":"ACTS_IN","name":"Emanuele Sansoni","type":"Role","_key":"45565","_from":"13380","_to":"30163"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"114555","_from":"13381","_to":"67482"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26879","_from":"13382","_to":"19325"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"105448","_from":"13383","_to":"62031"} +{"$label":"ACTS_IN","name":"Dr. Frankenstein","type":"Role","_key":"26878","_from":"13384","_to":"19325"} +{"$label":"ACTS_IN","name":"Jack Stanton","type":"Role","_key":"18014","_from":"13393","_to":"13387"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"18013","_from":"13392","_to":"13387"} +{"$label":"ACTS_IN","name":"Rudy Costa","type":"Role","_key":"18012","_from":"13391","_to":"13387"} +{"$label":"ACTS_IN","name":"Nancy Mercer","type":"Role","_key":"18011","_from":"13390","_to":"13387"} +{"$label":"ACTS_IN","name":"Jeb Scott","type":"Role","_key":"18010","_from":"13389","_to":"13387"} +{"$label":"ACTS_IN","name":"Judith Merrick","type":"Role","_key":"18008","_from":"13388","_to":"13387"} +{"$label":"ACTS_IN","name":"Cassandra Austen","type":"Role","_key":"114872","_from":"13388","_to":"67661"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"111708","_from":"13388","_to":"65950"} +{"$label":"ACTS_IN","name":"Victoria Byrd (Oxford)","type":"Role","_key":"99422","_from":"13388","_to":"58590"} +{"$label":"ACTS_IN","name":"Susan Ali","type":"Role","_key":"98418","_from":"13388","_to":"57978"} +{"$label":"ACTS_IN","name":"Cara","type":"Role","_key":"90326","_from":"13388","_to":"53388"} +{"$label":"ACTS_IN","name":"June Gudmundsdottir","type":"Role","_key":"63029","_from":"13388","_to":"39558"} +{"$label":"ACTS_IN","name":"Mary Duvan","type":"Role","_key":"43608","_from":"13388","_to":"29123"} +{"$label":"ACTS_IN","name":"Mrs. Weston","type":"Role","_key":"27995","_from":"13388","_to":"20074"} +{"$label":"ACTS_IN","name":"Ben Graham","type":"Role","_key":"108353","_from":"13389","_to":"64047"} +{"$label":"ACTS_IN","name":"Roger Dorn","type":"Role","_key":"67672","_from":"13389","_to":"41630"} +{"$label":"ACTS_IN","name":"Roger Dorn","type":"Role","_key":"58308","_from":"13389","_to":"36867"} +{"$label":"ACTS_IN","name":"Dr. Hyde","type":"Role","_key":"58266","_from":"13389","_to":"36848"} +{"$label":"ACTS_IN","name":"Roger Dorn (","type":"Role","_key":"56504","_from":"13389","_to":"35889"} +{"$label":"ACTS_IN","name":"Dr. Alan Feinstone","type":"Role","_key":"54744","_from":"13389","_to":"35037"} +{"$label":"ACTS_IN","name":"Harlan Dexter","type":"Role","_key":"36541","_from":"13389","_to":"24777"} +{"$label":"ACTS_IN","name":"Reef","type":"Role","_key":"18023","_from":"13402","_to":"13394"} +{"$label":"ACTS_IN","name":"Numb","type":"Role","_key":"18022","_from":"13401","_to":"13394"} +{"$label":"ACTS_IN","name":"Moghan","type":"Role","_key":"18021","_from":"13400","_to":"13394"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"18020","_from":"13399","_to":"13394"} +{"$label":"ACTS_IN","name":"Devon","type":"Role","_key":"18019","_from":"13398","_to":"13394"} +{"$label":"ACTS_IN","name":"Dr. Alex Royce","type":"Role","_key":"18017","_from":"13397","_to":"13394"} +{"$label":"ACTS_IN","name":"Nick James","type":"Role","_key":"18016","_from":"13396","_to":"13394"} +{"$label":"DIRECTED","_key":"18015","_from":"13395","_to":"13394"} +{"$label":"DIRECTED","_key":"25013","_from":"13395","_to":"18072"} +{"$label":"ACTS_IN","name":"Pvt. Joe Armstrong","type":"Role","_key":"89904","_from":"13396","_to":"53202"} +{"$label":"ACTS_IN","name":"Jersey Bellini","type":"Role","_key":"39329","_from":"13396","_to":"26602"} +{"$label":"ACTS_IN","name":"Davis","type":"Role","_key":"32990","_from":"13400","_to":"22866"} +{"$label":"ACTS_IN","name":"Pearl Coplin","type":"Role","_key":"18029","_from":"13404","_to":"13403"} +{"$label":"ACTS_IN","name":"Sister Michelle Gallagher","type":"Role","_key":"117138","_from":"13404","_to":"68918"} +{"$label":"ACTS_IN","name":"Beth Jarrett","type":"Role","_key":"109652","_from":"13404","_to":"64764"} +{"$label":"ACTS_IN","name":"Amalia Prizzi","type":"Role","_key":"18042","_from":"13408","_to":"13405"} +{"$label":"ACTS_IN","name":"Dominic Prizzi","type":"Role","_key":"18039","_from":"13407","_to":"13405"} +{"$label":"ACTS_IN","name":"Don Corrado Prizzi","type":"Role","_key":"18038","_from":"13406","_to":"13405"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"115263","_from":"13406","_to":"67870"} +{"$label":"ACTS_IN","name":"Dr. Finkelstein (voice)","type":"Role","_key":"54126","_from":"13406","_to":"34786"} +{"$label":"ACTS_IN","name":"Onkel Lewis","type":"Role","_key":"39632","_from":"13406","_to":"26781"} +{"$label":"ACTS_IN","name":"Chub 'Chubbers' Horatio","type":"Role","_key":"105791","_from":"13407","_to":"62284"} +{"$label":"ACTS_IN","name":"University President","type":"Role","_key":"70884","_from":"13407","_to":"43072"} +{"$label":"ACTS_IN","name":"Anton Bartok","type":"Role","_key":"62706","_from":"13407","_to":"39426"} +{"$label":"ACTS_IN","name":"Richie O`Malley","type":"Role","_key":"18054","_from":"13419","_to":"13409"} +{"$label":"ACTS_IN","name":"Cory Lee","type":"Role","_key":"18053","_from":"13418","_to":"13409"} +{"$label":"ACTS_IN","name":"Samantha Erickson","type":"Role","_key":"18052","_from":"13417","_to":"13409"} +{"$label":"ACTS_IN","name":"Lt. Jackson Craig","type":"Role","_key":"18051","_from":"13416","_to":"13409"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"18050","_from":"13415","_to":"13409"} +{"$label":"ACTS_IN","name":"Lt. Dan Archer","type":"Role","_key":"18049","_from":"13414","_to":"13409"} +{"$label":"ACTS_IN","name":"Curtis Locke","type":"Role","_key":"18048","_from":"13413","_to":"13409"} +{"$label":"ACTS_IN","name":"Cisco","type":"Role","_key":"18047","_from":"13412","_to":"13409"} +{"$label":"ACTS_IN","name":"Michael Barnes","type":"Role","_key":"18046","_from":"13411","_to":"13409"} +{"$label":"DIRECTED","_key":"18043","_from":"13410","_to":"13409"} +{"$label":"ACTS_IN","name":"Marv \/ Psychiatrist \/ New guy \/ Raymond Hurdicure","type":"Role","_key":"116069","_from":"13411","_to":"68352"} +{"$label":"ACTS_IN","name":"Nelson Hibbert","type":"Role","_key":"103957","_from":"13411","_to":"61152"} +{"$label":"ACTS_IN","name":"Flik (voice)","type":"Role","_key":"54197","_from":"13411","_to":"34813"} +{"$label":"ACTS_IN","name":"Uncle Dave","type":"Role","_key":"23085","_from":"13411","_to":"16741"} +{"$label":"ACTS_IN","name":"Sgt. Ralph Blank","type":"Role","_key":"113434","_from":"13413","_to":"66832"} +{"$label":"ACTS_IN","name":"Bruce Moller","type":"Role","_key":"113339","_from":"13414","_to":"66763"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"114744","_from":"13419","_to":"67588"} +{"$label":"ACTS_IN","name":"Matty","type":"Role","_key":"56755","_from":"13419","_to":"36045"} +{"$label":"ACTS_IN","name":"The Cook","type":"Role","_key":"18061","_from":"13425","_to":"13420"} +{"$label":"ACTS_IN","name":"Guest","type":"Role","_key":"18060","_from":"13424","_to":"13420"} +{"$label":"ACTS_IN","name":"Mr. Stout","type":"Role","_key":"18059","_from":"13423","_to":"13420"} +{"$label":"ACTS_IN","name":"Her Father","type":"Role","_key":"18058","_from":"13422","_to":"13420"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"18057","_from":"13421","_to":"13420"} +{"$label":"ACTS_IN","name":"Girl Stolen by Gypsies","type":"Role","_key":"96021","_from":"13421","_to":"56444"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"60678","_from":"13421","_to":"38311"} +{"$label":"ACTS_IN","name":"Miss Moneybags","type":"Role","_key":"18076","_from":"13421","_to":"13430"} +{"$label":"ACTS_IN","name":"Pawnbroker Daughter","type":"Role","_key":"18066","_from":"13421","_to":"13426"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"18080","_from":"13422","_to":"13430"} +{"$label":"ACTS_IN","name":"Old bum","type":"Role","_key":"18071","_from":"13422","_to":"13426"} +{"$label":"ACTS_IN","name":"Gypsy Chieftain","type":"Role","_key":"96022","_from":"13423","_to":"56444"} +{"$label":"ACTS_IN","name":"Tailor","type":"Role","_key":"18075","_from":"13423","_to":"13430"} +{"$label":"ACTS_IN","name":"Burglar","type":"Role","_key":"18070","_from":"13423","_to":"13426"} +{"$label":"DIRECTED","_key":"25358","_from":"13424","_to":"18284"} +{"$label":"ACTS_IN","name":"Man in shelter","type":"Role","_key":"60679","_from":"13425","_to":"38311"} +{"$label":"ACTS_IN","name":"Toll guest","type":"Role","_key":"18083","_from":"13425","_to":"13430"} +{"$label":"ACTS_IN","name":"Clock Client","type":"Role","_key":"18068","_from":"13425","_to":"13426"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"18072","_from":"13429","_to":"13426"} +{"$label":"ACTS_IN","name":"Ring Client","type":"Role","_key":"18069","_from":"13428","_to":"13426"} +{"$label":"ACTS_IN","name":"Pawnshop Assistant","type":"Role","_key":"18067","_from":"13427","_to":"13426"} +{"$label":"ACTS_IN","name":"Guest","type":"Role","_key":"18082","_from":"13427","_to":"13430"} +{"$label":"DIRECTED","_key":"37611","_from":"13428","_to":"25499"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"18079","_from":"13429","_to":"13430"} +{"$label":"ACTS_IN","name":"Mrs. Moneybags","type":"Role","_key":"18081","_from":"13432","_to":"13430"} +{"$label":"ACTS_IN","name":"Young Girl","type":"Role","_key":"18078","_from":"13431","_to":"13430"} +{"$label":"ACTS_IN","name":"Scott Summers \/ Cyclops","type":"Role","_key":"18096","_from":"13440","_to":"13433"} +{"$label":"ACTS_IN","name":"Weapon XI","type":"Role","_key":"18095","_from":"13439","_to":"13433"} +{"$label":"ACTS_IN","name":"Wade Wilson \/ Deadpool","type":"Role","_key":"18094","_from":"13438","_to":"13433"} +{"$label":"ACTS_IN","name":"David North \/ Agent Zero","type":"Role","_key":"18093","_from":"13437","_to":"13433"} +{"$label":"ACTS_IN","name":"Remy LeBeau \/ Gambit","type":"Role","_key":"18092","_from":"13436","_to":"13433"} +{"$label":"ACTS_IN","name":"Frederick J. Dukes \/ The Blob","type":"Role","_key":"18090","_from":"13435","_to":"13433"} +{"$label":"ACTS_IN","name":"John Wraith","type":"Role","_key":"18088","_from":"13434","_to":"13433"} +{"$label":"ACTS_IN","name":"Bagman","type":"Role","_key":"106791","_from":"13435","_to":"62951"} +{"$label":"ACTS_IN","name":"'Tree' Lane","type":"Role","_key":"103568","_from":"13435","_to":"60910"} +{"$label":"ACTS_IN","name":"Pogue Parry","type":"Role","_key":"58479","_from":"13436","_to":"36963"} +{"$label":"ACTS_IN","name":"Andrew Paxton","type":"Role","_key":"115520","_from":"13438","_to":"68009"} +{"$label":"ACTS_IN","name":"Mike Connell","type":"Role","_key":"109621","_from":"13438","_to":"64750"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"105408","_from":"13438","_to":"62020"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"100643","_from":"13438","_to":"59344"} +{"$label":"ACTS_IN","name":"Mike Hanson","type":"Role","_key":"93081","_from":"13438","_to":"54870"} +{"$label":"ACTS_IN","name":"Gary \/ Gavin \/ Gabriel","type":"Role","_key":"91946","_from":"13438","_to":"54244"} +{"$label":"ACTS_IN","name":"Frank Allen","type":"Role","_key":"91898","_from":"13438","_to":"54219"} +{"$label":"ACTS_IN","name":"Van Wilder","type":"Role","_key":"69943","_from":"13438","_to":"42675"} +{"$label":"ACTS_IN","name":"George Lutz","type":"Role","_key":"60142","_from":"13438","_to":"37948"} +{"$label":"ACTS_IN","name":"Chris Brander","type":"Role","_key":"59700","_from":"13438","_to":"37702"} +{"$label":"ACTS_IN","name":"Will Hayes","type":"Role","_key":"49483","_from":"13438","_to":"32398"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"47214","_from":"13438","_to":"31117"} +{"$label":"ACTS_IN","name":"Richard Messner","type":"Role","_key":"47067","_from":"13438","_to":"31043"} +{"$label":"ACTS_IN","name":"Michael Waechter","type":"Role","_key":"46622","_from":"13438","_to":"30792"} +{"$label":"ACTS_IN","name":"Quigley","type":"Role","_key":"37671","_from":"13438","_to":"25539"} +{"$label":"ACTS_IN","name":"Mark Tobias","type":"Role","_key":"36103","_from":"13438","_to":"24499"} +{"$label":"ACTS_IN","name":"Yuri Boyka","type":"Role","_key":"103704","_from":"13439","_to":"60999"} +{"$label":"ACTS_IN","name":"Derek Allen","type":"Role","_key":"18119","_from":"13449","_to":"13441"} +{"$label":"ACTS_IN","name":"Nurse Wynn","type":"Role","_key":"18118","_from":"13448","_to":"13441"} +{"$label":"ACTS_IN","name":"Principal Chambers","type":"Role","_key":"18114","_from":"13447","_to":"13441"} +{"$label":"ACTS_IN","name":"Tommy Doyle","type":"Role","_key":"18109","_from":"13446","_to":"13441"} +{"$label":"ACTS_IN","name":"Lynda van der Klok","type":"Role","_key":"18106","_from":"13445","_to":"13441"} +{"$label":"ACTS_IN","name":"Annie Brackett","type":"Role","_key":"18105","_from":"13444","_to":"13441"} +{"$label":"ACTS_IN","name":"Laurie Strode","type":"Role","_key":"18102","_from":"13443","_to":"13441"} +{"$label":"ACTS_IN","name":"Young Michael Myers","type":"Role","_key":"18100","_from":"13442","_to":"13441"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"51653","_from":"13442","_to":"33701"} +{"$label":"ACTS_IN","name":"Sarah Tunny","type":"Role","_key":"66277","_from":"13443","_to":"40999"} +{"$label":"ACTS_IN","name":"Farrah","type":"Role","_key":"57651","_from":"13443","_to":"36500"} +{"$label":"ACTS_IN","name":"Melissa Crandell","type":"Role","_key":"104319","_from":"13444","_to":"61374"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"69400","_from":"13444","_to":"42424"} +{"$label":"ACTS_IN","name":"Jamie Lloyd","type":"Role","_key":"69377","_from":"13444","_to":"42413"} +{"$label":"ACTS_IN","name":"Darian Hallenbeck","type":"Role","_key":"53094","_from":"13444","_to":"34363"} +{"$label":"ACTS_IN","name":"B-Dawg","type":"Role","_key":"58793","_from":"13446","_to":"37126"} +{"$label":"ACTS_IN","name":"2nd Cyclist (Richard)","type":"Role","_key":"118079","_from":"13447","_to":"69396"} +{"$label":"ACTS_IN","name":"Titus Cromwell","type":"Role","_key":"97684","_from":"13447","_to":"57516"} +{"$label":"ACTS_IN","name":"Curtis Mayhew","type":"Role","_key":"36043","_from":"13447","_to":"24463"} +{"$label":"ACTS_IN","name":"Anna Gruber","type":"Role","_key":"67864","_from":"13448","_to":"41695"} +{"$label":"ACTS_IN","name":"Hostess","type":"Role","_key":"39490","_from":"13448","_to":"26693"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"39084","_from":"13448","_to":"26424"} +{"$label":"ACTS_IN","name":"Queen Lara","type":"Role","_key":"38795","_from":"13448","_to":"26203"} +{"$label":"ACTS_IN","name":"Kriemhild","type":"Role","_key":"35544","_from":"13448","_to":"24164"} +{"$label":"ACTS_IN","name":"Eugenie","type":"Role","_key":"24355","_from":"13448","_to":"17626"} +{"$label":"ACTS_IN","name":"Micky","type":"Role","_key":"115223","_from":"13449","_to":"67853"} +{"$label":"ACTS_IN","name":"Kardinal","type":"Role","_key":"18132","_from":"13460","_to":"13450"} +{"$label":"ACTS_IN","name":"Dumschke","type":"Role","_key":"18131","_from":"13459","_to":"13450"} +{"$label":"ACTS_IN","name":"Kr\u00fcger","type":"Role","_key":"18130","_from":"13458","_to":"13450"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"18129","_from":"13457","_to":"13450"} +{"$label":"ACTS_IN","name":"Joe Obermann","type":"Role","_key":"18128","_from":"13456","_to":"13450"} +{"$label":"ACTS_IN","name":"Ammering","type":"Role","_key":"18127","_from":"13455","_to":"13450"} +{"$label":"ACTS_IN","name":"Shikun","type":"Role","_key":"18126","_from":"13454","_to":"13450"} +{"$label":"ACTS_IN","name":"Deborah Levin","type":"Role","_key":"18125","_from":"13453","_to":"13450"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"18124","_from":"13452","_to":"13450"} +{"$label":"DIRECTED","_key":"18123","_from":"13451","_to":"13450"} +{"$label":"DIRECTED","_key":"18592","_from":"13451","_to":"13759"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"18152","_from":"13473","_to":"13461"} +{"$label":"ACTS_IN","name":"Duty sergeant","type":"Role","_key":"18150","_from":"13472","_to":"13461"} +{"$label":"ACTS_IN","name":"Passport Official","type":"Role","_key":"18149","_from":"13471","_to":"13461"} +{"$label":"ACTS_IN","name":"Bank Colleague","type":"Role","_key":"18148","_from":"13470","_to":"13461"} +{"$label":"ACTS_IN","name":"Bank Colleague","type":"Role","_key":"18147","_from":"13469","_to":"13461"} +{"$label":"ACTS_IN","name":"Bank Colleague","type":"Role","_key":"18146","_from":"13468","_to":"13461"} +{"$label":"ACTS_IN","name":"Bank Colleague","type":"Role","_key":"18144","_from":"13467","_to":"13461"} +{"$label":"ACTS_IN","name":"D.I. O'Fetiger","type":"Role","_key":"18143","_from":"13466","_to":"13461"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"18141","_from":"13465","_to":"13461"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"18139","_from":"13464","_to":"13461"} +{"$label":"ACTS_IN","name":"Clare","type":"Role","_key":"18138","_from":"13463","_to":"13461"} +{"$label":"DIRECTED","_key":"18133","_from":"13462","_to":"13461"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"60837","_from":"13464","_to":"38430"} +{"$label":"ACTS_IN","name":"Lord Byron","type":"Role","_key":"27003","_from":"13464","_to":"19414"} +{"$label":"ACTS_IN","name":"Boyle","type":"Role","_key":"93398","_from":"13466","_to":"55005"} +{"$label":"ACTS_IN","name":"Jean Cocteau","type":"Role","_key":"23901","_from":"13466","_to":"17316"} +{"$label":"ACTS_IN","name":"Nigel De Havilland","type":"Role","_key":"98324","_from":"13468","_to":"57908"} +{"$label":"ACTS_IN","name":"Tubbs","type":"Role","_key":"120995","_from":"13472","_to":"71072"} +{"$label":"ACTS_IN","name":"Mr. Shiner","type":"Role","_key":"114889","_from":"13472","_to":"67663"} +{"$label":"ACTS_IN","name":"Censor","type":"Role","_key":"102775","_from":"13472","_to":"60460"} +{"$label":"ACTS_IN","name":"Mr. Prosser","type":"Role","_key":"46736","_from":"13472","_to":"30837"} +{"$label":"ACTS_IN","name":"Tubbs Tattsyrup \/ Pauline Campbell-Jones \/ Herr Lipp \/ Pop \/ Dave Parkes \/ Harvey Denton \/ Charlie Hull \/ Reenie Calver \/ Anne Hand \/ Barry Baggs \/ Mike Harris \/ Dr Carlton \/ Mary","type":"Role","_key":"38684","_from":"13472","_to":"26132"} +{"$label":"ACTS_IN","name":"Critic","type":"Role","_key":"23910","_from":"13472","_to":"17316"} +{"$label":"ACTS_IN","name":"Ch`u Sing","type":"Role","_key":"18167","_from":"13484","_to":"13474"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"18165","_from":"13483","_to":"13474"} +{"$label":"ACTS_IN","name":"Vincent Roth","type":"Role","_key":"18163","_from":"13482","_to":"13474"} +{"$label":"ACTS_IN","name":"Po Sing","type":"Role","_key":"18162","_from":"13481","_to":"13474"} +{"$label":"ACTS_IN","name":"Colin O`Day","type":"Role","_key":"18161","_from":"13480","_to":"13474"} +{"$label":"ACTS_IN","name":"Silk","type":"Role","_key":"18159","_from":"13479","_to":"13474"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"18158","_from":"13478","_to":"13474"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"18157","_from":"13477","_to":"13474"} +{"$label":"ACTS_IN","name":"Trish O`Day","type":"Role","_key":"18156","_from":"13476","_to":"13474"} +{"$label":"DIRECTED","_key":"18154","_from":"13475","_to":"13474"} +{"$label":"DIRECTED","_key":"103808","_from":"13475","_to":"61054"} +{"$label":"DIRECTED","_key":"66427","_from":"13475","_to":"41071"} +{"$label":"DIRECTED","_key":"64663","_from":"13475","_to":"40281"} +{"$label":"DIRECTED","_key":"50892","_from":"13475","_to":"33214"} +{"$label":"ACTS_IN","name":"Akasha","type":"Role","_key":"73120","_from":"13476","_to":"43980"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"102298","_from":"13477","_to":"60192"} +{"$label":"ACTS_IN","name":"George Clark","type":"Role","_key":"66424","_from":"13477","_to":"41071"} +{"$label":"ACTS_IN","name":"Frank Louis Beechum","type":"Role","_key":"62749","_from":"13477","_to":"39448"} +{"$label":"ACTS_IN","name":"Greer","type":"Role","_key":"55250","_from":"13477","_to":"35238"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"52659","_from":"13477","_to":"34200"} +{"$label":"ACTS_IN","name":"Lieutenant Tong","type":"Role","_key":"95277","_from":"13478","_to":"56056"} +{"$label":"ACTS_IN","name":"Tsutomu Shimomura","type":"Role","_key":"63276","_from":"13478","_to":"39660"} +{"$label":"ACTS_IN","name":"Danyael","type":"Role","_key":"52172","_from":"13478","_to":"33997"} +{"$label":"ACTS_IN","name":"Tommy 'Buns' Bundy","type":"Role","_key":"91856","_from":"13479","_to":"54195"} +{"$label":"ACTS_IN","name":"Latrell Walker","type":"Role","_key":"66423","_from":"13479","_to":"41071"} +{"$label":"ACTS_IN","name":"Anthony Fait","type":"Role","_key":"64665","_from":"13479","_to":"40281"} +{"$label":"ACTS_IN","name":"Himmel","type":"Role","_key":"114439","_from":"13482","_to":"67413"} +{"$label":"ACTS_IN","name":"Paul Furhooven","type":"Role","_key":"119490","_from":"13483","_to":"70191"} +{"$label":"ACTS_IN","name":"Damon","type":"Role","_key":"53460","_from":"13483","_to":"34533"} +{"$label":"ACTS_IN","name":"Pharmacist","type":"Role","_key":"111318","_from":"13484","_to":"65743"} +{"$label":"ACTS_IN","name":"Mr. Shi","type":"Role","_key":"34570","_from":"13484","_to":"23668"} +{"$label":"ACTS_IN","name":"Krista Brooks","type":"Role","_key":"18175","_from":"13489","_to":"13485"} +{"$label":"ACTS_IN","name":"Brendan Grant","type":"Role","_key":"18174","_from":"13488","_to":"13485"} +{"$label":"ACTS_IN","name":"Ms. Jones","type":"Role","_key":"18173","_from":"13487","_to":"13485"} +{"$label":"ACTS_IN","name":"Lynn Watson","type":"Role","_key":"18170","_from":"13486","_to":"13485"} +{"$label":"ACTS_IN","name":"Claire Isaacs","type":"Role","_key":"52733","_from":"13487","_to":"34221"} +{"$label":"ACTS_IN","name":"Catherine Alvarez","type":"Role","_key":"51840","_from":"13487","_to":"33826"} +{"$label":"ACTS_IN","name":"Honus Gent","type":"Role","_key":"99873","_from":"13488","_to":"58899"} +{"$label":"ACTS_IN","name":"Mr. Samuel Ratchett","type":"Role","_key":"41743","_from":"13488","_to":"28008"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"24440","_from":"13488","_to":"17679"} +{"$label":"ACTS_IN","name":"Tituba Indian","type":"Role","_key":"120239","_from":"13489","_to":"70608"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"36502","_from":"13489","_to":"24754"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"20357","_from":"13489","_to":"14911"} +{"$label":"ACTS_IN","name":"Harold Carvey","type":"Role","_key":"18184","_from":"13491","_to":"13490"} +{"$label":"ACTS_IN","name":"Malacci","type":"Role","_key":"18199","_from":"13499","_to":"13492"} +{"$label":"ACTS_IN","name":"Skouras","type":"Role","_key":"18198","_from":"13498","_to":"13492"} +{"$label":"ACTS_IN","name":"Paddy","type":"Role","_key":"18197","_from":"13497","_to":"13492"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"18196","_from":"13496","_to":"13492"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"18195","_from":"13495","_to":"13492"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"18193","_from":"13494","_to":"13492"} +{"$label":"DIRECTED","_key":"18185","_from":"13493","_to":"13492"} +{"$label":"DIRECTED","_key":"95161","_from":"13493","_to":"55996"} +{"$label":"DIRECTED","_key":"61761","_from":"13493","_to":"38888"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"43627","_from":"13499","_to":"29130"} +{"$label":"ACTS_IN","name":"Col","type":"Role","_key":"18208","_from":"13507","_to":"13500"} +{"$label":"ACTS_IN","name":"Ground Rush","type":"Role","_key":"18207","_from":"13506","_to":"13500"} +{"$label":"ACTS_IN","name":"Boom-Boom","type":"Role","_key":"18206","_from":"13505","_to":"13500"} +{"$label":"ACTS_IN","name":"Lt. Brian Margate","type":"Role","_key":"18205","_from":"13504","_to":"13500"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"18204","_from":"13503","_to":"13500"} +{"$label":"ACTS_IN","name":"Randy \" Turbo \" Kingston","type":"Role","_key":"18203","_from":"13502","_to":"13500"} +{"$label":"DIRECTED","_key":"18200","_from":"13501","_to":"13500"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116130","_from":"13502","_to":"68369"} +{"$label":"ACTS_IN","name":"Yaz","type":"Role","_key":"53671","_from":"13502","_to":"34619"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"109033","_from":"13503","_to":"64434"} +{"$label":"ACTS_IN","name":"Fielding Barnes","type":"Role","_key":"93177","_from":"13504","_to":"54908"} +{"$label":"ACTS_IN","name":"Frank Traveres","type":"Role","_key":"90711","_from":"13504","_to":"53546"} +{"$label":"ACTS_IN","name":"Phil Gordian","type":"Role","_key":"63990","_from":"13504","_to":"39957"} +{"$label":"ACTS_IN","name":"Eugene Hunt","type":"Role","_key":"54224","_from":"13504","_to":"34828"} +{"$label":"ACTS_IN","name":"Senator Aaron McComb","type":"Role","_key":"50926","_from":"13504","_to":"33237"} +{"$label":"ACTS_IN","name":"Angelo Dundee","type":"Role","_key":"50057","_from":"13504","_to":"32759"} +{"$label":"ACTS_IN","name":"Vlada Kostov","type":"Role","_key":"35382","_from":"13504","_to":"24080"} +{"$label":"ACTS_IN","name":"Trent","type":"Role","_key":"18218","_from":"13514","_to":"13508"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"18216","_from":"13513","_to":"13508"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"18215","_from":"13512","_to":"13508"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"18214","_from":"13511","_to":"13508"} +{"$label":"ACTS_IN","name":"C-Note","type":"Role","_key":"18212","_from":"13510","_to":"13508"} +{"$label":"DIRECTED","_key":"18210","_from":"13509","_to":"13508"} +{"$label":"DIRECTED","_key":"115398","_from":"13509","_to":"67949"} +{"$label":"ACTS_IN","name":"Mack Daddy","type":"Role","_key":"114634","_from":"13510","_to":"67527"} +{"$label":"ACTS_IN","name":"Jack Mason","type":"Role","_key":"113255","_from":"13510","_to":"66728"} +{"$label":"ACTS_IN","name":"rapper","type":"Role","_key":"112321","_from":"13510","_to":"66307"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100600","_from":"13510","_to":"59324"} +{"$label":"ACTS_IN","name":"Scotty Appleton","type":"Role","_key":"66937","_from":"13510","_to":"41325"} +{"$label":"ACTS_IN","name":"J-Bone","type":"Role","_key":"57610","_from":"13510","_to":"36479"} +{"$label":"ACTS_IN","name":"Odessa","type":"Role","_key":"54592","_from":"13510","_to":"34975"} +{"$label":"ACTS_IN","name":"T-Saint","type":"Role","_key":"52380","_from":"13510","_to":"34087"} +{"$label":"ACTS_IN","name":"Sally Wheeler","type":"Role","_key":"101431","_from":"13511","_to":"59708"} +{"$label":"ACTS_IN","name":"Kayla","type":"Role","_key":"95353","_from":"13511","_to":"56098"} +{"$label":"ACTS_IN","name":"Allison Vernon-Williams","type":"Role","_key":"56486","_from":"13511","_to":"35884"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"107613","_from":"13514","_to":"63522"} +{"$label":"ACTS_IN","name":"Teenage Waitress","type":"Role","_key":"18227","_from":"13518","_to":"13515"} +{"$label":"ACTS_IN","name":"The Judge","type":"Role","_key":"18223","_from":"13517","_to":"13515"} +{"$label":"DIRECTED","_key":"18219","_from":"13516","_to":"13515"} +{"$label":"DIRECTED","_key":"101964","_from":"13516","_to":"60001"} +{"$label":"DIRECTED","_key":"95257","_from":"13516","_to":"56052"} +{"$label":"ACTS_IN","name":"President Henry Hayes","type":"Role","_key":"91912","_from":"13517","_to":"54222"} +{"$label":"ACTS_IN","name":"Janeway","type":"Role","_key":"63801","_from":"13517","_to":"39894"} +{"$label":"ACTS_IN","name":"Adamson","type":"Role","_key":"39855","_from":"13517","_to":"26930"} +{"$label":"ACTS_IN","name":"Eugene Davis","type":"Role","_key":"37813","_from":"13517","_to":"25635"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"18423","_from":"13517","_to":"13655"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"18239","_from":"13531","_to":"13519"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"18238","_from":"13530","_to":"13519"} +{"$label":"ACTS_IN","name":"Steven Doyle","type":"Role","_key":"18237","_from":"13529","_to":"13519"} +{"$label":"ACTS_IN","name":"Salim","type":"Role","_key":"18236","_from":"13528","_to":"13519"} +{"$label":"ACTS_IN","name":"Marlon","type":"Role","_key":"18235","_from":"13527","_to":"13519"} +{"$label":"ACTS_IN","name":"Alejandro","type":"Role","_key":"18234","_from":"13526","_to":"13519"} +{"$label":"ACTS_IN","name":"Robert Dunsmore","type":"Role","_key":"18233","_from":"13525","_to":"13519"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"18232","_from":"13524","_to":"13519"} +{"$label":"ACTS_IN","name":"Mohamed Aziz","type":"Role","_key":"18231","_from":"13523","_to":"13519"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"18230","_from":"13522","_to":"13519"} +{"$label":"ACTS_IN","name":"David Dunsmore","type":"Role","_key":"18229","_from":"13521","_to":"13519"} +{"$label":"DIRECTED","_key":"18228","_from":"13520","_to":"13519"} +{"$label":"ACTS_IN","name":"Rayne","type":"Role","_key":"112289","_from":"13522","_to":"66302"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"99132","_from":"13522","_to":"58414"} +{"$label":"ACTS_IN","name":"Turner","type":"Role","_key":"90988","_from":"13522","_to":"53683"} +{"$label":"ACTS_IN","name":"Typhoid","type":"Role","_key":"58351","_from":"13522","_to":"36877"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"57187","_from":"13522","_to":"36281"} +{"$label":"ACTS_IN","name":"Quintana","type":"Role","_key":"56319","_from":"13522","_to":"35784"} +{"$label":"ACTS_IN","name":"Ayane","type":"Role","_key":"52294","_from":"13522","_to":"34046"} +{"$label":"ACTS_IN","name":"Gina Lopez","type":"Role","_key":"36962","_from":"13522","_to":"25052"} +{"$label":"ACTS_IN","name":"Conductor (Oxford)","type":"Role","_key":"99425","_from":"13523","_to":"58590"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"20636","_from":"13523","_to":"15083"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"20630","_from":"13525","_to":"15083"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"20627","_from":"13528","_to":"15083"} +{"$label":"ACTS_IN","name":"Nino \/ Anna","type":"Role","_key":"89302","_from":"13529","_to":"52866"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47635","_from":"13529","_to":"31385"} +{"$label":"ACTS_IN","name":"Junger Mann","type":"Role","_key":"35708","_from":"13529","_to":"24265"} +{"$label":"ACTS_IN","name":"The Model","type":"Role","_key":"32650","_from":"13529","_to":"22682"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"31730","_from":"13529","_to":"22149"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"26362","_from":"13529","_to":"18936"} +{"$label":"ACTS_IN","name":"Man in Red","type":"Role","_key":"25918","_from":"13529","_to":"18644"} +{"$label":"ACTS_IN","name":"Man in Red","type":"Role","_key":"25895","_from":"13529","_to":"18633"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"25801","_from":"13529","_to":"18564"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"25786","_from":"13529","_to":"18543"} +{"$label":"ACTS_IN","name":"D","type":"Role","_key":"25763","_from":"13529","_to":"18538"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"25754","_from":"13529","_to":"18508"} +{"$label":"ACTS_IN","name":"German Soldier","type":"Role","_key":"24279","_from":"13529","_to":"17581"} +{"$label":"ACTS_IN","name":"Ant\u00f3n","type":"Role","_key":"24219","_from":"13529","_to":"17543"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"24203","_from":"13529","_to":"17534"} +{"$label":"ACTS_IN","name":"Daniel Valmer","type":"Role","_key":"23994","_from":"13529","_to":"17395"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"23988","_from":"13529","_to":"17389"} +{"$label":"ACTS_IN","name":"Er","type":"Role","_key":"23956","_from":"13529","_to":"17367"} +{"$label":"ACTS_IN","name":"Er 1","type":"Role","_key":"23945","_from":"13529","_to":"17360"} +{"$label":"ACTS_IN","name":"Luca","type":"Role","_key":"23932","_from":"13529","_to":"17333"} +{"$label":"ACTS_IN","name":"Ivory","type":"Role","_key":"23905","_from":"13529","_to":"17316"} +{"$label":"ACTS_IN","name":"Ant\u00f3n","type":"Role","_key":"23801","_from":"13529","_to":"17258"} +{"$label":"ACTS_IN","name":"\u00c0lvaro","type":"Role","_key":"23792","_from":"13529","_to":"17253"} +{"$label":"ACTS_IN","name":"Damian","type":"Role","_key":"23784","_from":"13529","_to":"17247"} +{"$label":"ACTS_IN","name":"Nathaniel Griffin","type":"Role","_key":"23777","_from":"13529","_to":"17242"} +{"$label":"DIRECTED","_key":"47630","_from":"13529","_to":"31385"} +{"$label":"DIRECTED","_key":"23997","_from":"13529","_to":"17398"} +{"$label":"DIRECTED","_key":"23995","_from":"13529","_to":"17395"} +{"$label":"DIRECTED","_key":"20618","_from":"13531","_to":"15083"} +{"$label":"ACTS_IN","name":"Anneke","type":"Role","_key":"18248","_from":"13540","_to":"13532"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"18247","_from":"13539","_to":"13532"} +{"$label":"ACTS_IN","name":"Ruysdael","type":"Role","_key":"18246","_from":"13538","_to":"13532"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"18245","_from":"13537","_to":"13532"} +{"$label":"ACTS_IN","name":"Potter","type":"Role","_key":"18244","_from":"13536","_to":"13532"} +{"$label":"ACTS_IN","name":"Vermeer","type":"Role","_key":"18243","_from":"13535","_to":"13532"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"18242","_from":"13534","_to":"13532"} +{"$label":"DIRECTED","_key":"18240","_from":"13533","_to":"13532"} +{"$label":"DIRECTED","_key":"107864","_from":"13533","_to":"63703"} +{"$label":"DIRECTED","_key":"105632","_from":"13533","_to":"62176"} +{"$label":"DIRECTED","_key":"69740","_from":"13533","_to":"42564"} +{"$label":"DIRECTED","_key":"67776","_from":"13533","_to":"41664"} +{"$label":"DIRECTED","_key":"64157","_from":"13533","_to":"40034"} +{"$label":"DIRECTED","_key":"63061","_from":"13533","_to":"39569"} +{"$label":"ACTS_IN","name":"Truus Coster","type":"Role","_key":"23272","_from":"13534","_to":"16872"} +{"$label":"ACTS_IN","name":"Dubois","type":"Role","_key":"49169","_from":"13535","_to":"32208"} +{"$label":"ACTS_IN","name":"Dusch Girl","type":"Role","_key":"18258","_from":"13548","_to":"13541"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"18256","_from":"13547","_to":"13541"} +{"$label":"ACTS_IN","name":"Harry Carver","type":"Role","_key":"18255","_from":"13546","_to":"13541"} +{"$label":"ACTS_IN","name":"Fortune Teller","type":"Role","_key":"18254","_from":"13545","_to":"13541"} +{"$label":"ACTS_IN","name":"Cathy Lean","type":"Role","_key":"18253","_from":"13544","_to":"13541"} +{"$label":"ACTS_IN","name":"Charlie Rogers","type":"Role","_key":"18250","_from":"13543","_to":"13541"} +{"$label":"DIRECTED","_key":"18249","_from":"13542","_to":"13541"} +{"$label":"DIRECTED","_key":"35374","_from":"13542","_to":"24074"} +{"$label":"ACTS_IN","name":"Rick Richards","type":"Role","_key":"117967","_from":"13543","_to":"69342"} +{"$label":"ACTS_IN","name":"Dr. John Carpenter","type":"Role","_key":"117137","_from":"13543","_to":"68918"} +{"$label":"ACTS_IN","name":"Steve Grayson","type":"Role","_key":"117132","_from":"13543","_to":"68916"} +{"$label":"ACTS_IN","name":"Mike Windgren","type":"Role","_key":"117129","_from":"13543","_to":"68915"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"117119","_from":"13543","_to":"68912"} +{"$label":"ACTS_IN","name":"Mike McCoy","type":"Role","_key":"117115","_from":"13543","_to":"68910"} +{"$label":"ACTS_IN","name":"Jess Wade","type":"Role","_key":"117110","_from":"13543","_to":"68907"} +{"$label":"ACTS_IN","name":"Greg Nolan","type":"Role","_key":"117106","_from":"13543","_to":"68905"} +{"$label":"ACTS_IN","name":"Walter Gulick","type":"Role","_key":"117095","_from":"13543","_to":"68902"} +{"$label":"ACTS_IN","name":"Rusty Wells","type":"Role","_key":"117082","_from":"13543","_to":"68897"} +{"$label":"ACTS_IN","name":"Lonnie Beale \/ Panhandle Kid","type":"Role","_key":"116930","_from":"13543","_to":"68831"} +{"$label":"ACTS_IN","name":"Danny Fisher","type":"Role","_key":"116919","_from":"13543","_to":"68828"} +{"$label":"ACTS_IN","name":"Toby Kwimper","type":"Role","_key":"116914","_from":"13543","_to":"68826"} +{"$label":"ACTS_IN","name":"Tulsa McLean","type":"Role","_key":"116902","_from":"13543","_to":"68821"} +{"$label":"ACTS_IN","name":"Pacer Burton","type":"Role","_key":"116893","_from":"13543","_to":"68818"} +{"$label":"ACTS_IN","name":"Jimmy Tompkins","type":"Role","_key":"116562","_from":"13543","_to":"68613"} +{"$label":"ACTS_IN","name":"Chad Gates","type":"Role","_key":"115419","_from":"13543","_to":"67964"} +{"$label":"ACTS_IN","name":"Ross Carpenter","type":"Role","_key":"105709","_from":"13543","_to":"62228"} +{"$label":"ACTS_IN","name":"Vince Everett","type":"Role","_key":"105487","_from":"13543","_to":"62078"} +{"$label":"ACTS_IN","name":"Mike Edwards","type":"Role","_key":"50673","_from":"13543","_to":"33081"} +{"$label":"ACTS_IN","name":"Johnny Tyronne","type":"Role","_key":"46936","_from":"13543","_to":"30954"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19357","_from":"13543","_to":"14311"} +{"$label":"ACTS_IN","name":"Lucky Jackson","type":"Role","_key":"18285","_from":"13543","_to":"13569"} +{"$label":"ACTS_IN","name":"Mitzi","type":"Role","_key":"117127","_from":"13545","_to":"68912"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"35370","_from":"13545","_to":"24074"} +{"$label":"ACTS_IN","name":"Irma Johnson","type":"Role","_key":"34908","_from":"13545","_to":"23848"} +{"$label":"ACTS_IN","name":"The sheriff Of Nottingham","type":"Role","_key":"72543","_from":"13546","_to":"43753"} +{"$label":"ACTS_IN","name":"Alma Parker","type":"Role","_key":"94028","_from":"13547","_to":"55371"} +{"$label":"ACTS_IN","name":"Lust","type":"Role","_key":"115339","_from":"13548","_to":"67907"} +{"$label":"ACTS_IN","name":"Hortensia","type":"Role","_key":"103191","_from":"13548","_to":"60693"} +{"$label":"ACTS_IN","name":"Constance de Bonancieux","type":"Role","_key":"89242","_from":"13548","_to":"52844"} +{"$label":"ACTS_IN","name":"Jane Gardner","type":"Role","_key":"50750","_from":"13548","_to":"33125"} +{"$label":"ACTS_IN","name":"Det. Eileen McHenry","type":"Role","_key":"35352","_from":"13548","_to":"24069"} +{"$label":"ACTS_IN","name":"Loana","type":"Role","_key":"28215","_from":"13548","_to":"20209"} +{"$label":"ACTS_IN","name":"Constance de Bonancieux","type":"Role","_key":"24345","_from":"13548","_to":"17626"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"18813","_from":"13548","_to":"13902"} +{"$label":"ACTS_IN","name":"Agent Donna Marbury","type":"Role","_key":"18267","_from":"13553","_to":"13549"} +{"$label":"ACTS_IN","name":"Thug in Black","type":"Role","_key":"18263","_from":"13552","_to":"13549"} +{"$label":"ACTS_IN","name":"Larson","type":"Role","_key":"18262","_from":"13551","_to":"13549"} +{"$label":"DIRECTED","_key":"18259","_from":"13550","_to":"13549"} +{"$label":"DIRECTED","_key":"103322","_from":"13550","_to":"60782"} +{"$label":"ACTS_IN","name":"Irene Kravitz","type":"Role","_key":"64723","_from":"13553","_to":"40298"} +{"$label":"ACTS_IN","name":"Amy Lowe","type":"Role","_key":"18277","_from":"13561","_to":"13554"} +{"$label":"ACTS_IN","name":"Jake Lowe","type":"Role","_key":"18276","_from":"13560","_to":"13554"} +{"$label":"ACTS_IN","name":"Helen Crawford","type":"Role","_key":"18274","_from":"13559","_to":"13554"} +{"$label":"ACTS_IN","name":"Stevens","type":"Role","_key":"18273","_from":"13558","_to":"13554"} +{"$label":"ACTS_IN","name":"Jamie Crawford","type":"Role","_key":"18272","_from":"13557","_to":"13554"} +{"$label":"ACTS_IN","name":"Menkees","type":"Role","_key":"18270","_from":"13556","_to":"13554"} +{"$label":"DIRECTED","_key":"18268","_from":"13555","_to":"13554"} +{"$label":"ACTS_IN","name":"Sean Brody","type":"Role","_key":"113681","_from":"13555","_to":"66989"} +{"$label":"ACTS_IN","name":"Jim Morar","type":"Role","_key":"114594","_from":"13556","_to":"67502"} +{"$label":"ACTS_IN","name":"Frank Rhodes","type":"Role","_key":"58678","_from":"13556","_to":"37064"} +{"$label":"ACTS_IN","name":"Horace","type":"Role","_key":"24130","_from":"13556","_to":"17497"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"45467","_from":"13560","_to":"30120"} +{"$label":"ACTS_IN","name":"Additional voices","type":"Role","_key":"96205","_from":"13561","_to":"56549"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"65908","_from":"13561","_to":"40772"} +{"$label":"ACTS_IN","name":"George Inoue","type":"Role","_key":"18283","_from":"13568","_to":"13562"} +{"$label":"ACTS_IN","name":"Mashida","type":"Role","_key":"18282","_from":"13567","_to":"13562"} +{"$label":"ACTS_IN","name":"Daize Tonooka","type":"Role","_key":"18281","_from":"13566","_to":"13562"} +{"$label":"ACTS_IN","name":"Itoko Koyanagi","type":"Role","_key":"18280","_from":"13565","_to":"13562"} +{"$label":"ACTS_IN","name":"Hiroshi Kurosaki","type":"Role","_key":"18279","_from":"13564","_to":"13562"} +{"$label":"DIRECTED","_key":"18278","_from":"13563","_to":"13562"} +{"$label":"ACTS_IN","name":"Kichi-so","type":"Role","_key":"40048","_from":"13568","_to":"27033"} +{"$label":"ACTS_IN","name":"Mr. Martin","type":"Role","_key":"18287","_from":"13571","_to":"13569"} +{"$label":"DIRECTED","_key":"18284","_from":"13570","_to":"13569"} +{"$label":"DIRECTED","_key":"114236","_from":"13570","_to":"67282"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"108581","_from":"13571","_to":"64167"} +{"$label":"ACTS_IN","name":"Police Chief Aloysius","type":"Role","_key":"70810","_from":"13571","_to":"43041"} +{"$label":"ACTS_IN","name":"Muggsy","type":"Role","_key":"25644","_from":"13571","_to":"18462"} +{"$label":"ACTS_IN","name":"Bill Griffith","type":"Role","_key":"25593","_from":"13571","_to":"18430"} +{"$label":"ACTS_IN","name":"Amy Kaminski","type":"Role","_key":"18300","_from":"13578","_to":"13572"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"18299","_from":"13577","_to":"13572"} +{"$label":"ACTS_IN","name":"Marvin Baxter","type":"Role","_key":"18297","_from":"13576","_to":"13572"} +{"$label":"ACTS_IN","name":"Martin Lamanski","type":"Role","_key":"18296","_from":"13575","_to":"13572"} +{"$label":"ACTS_IN","name":"Luigi Patrovita","type":"Role","_key":"18294","_from":"13574","_to":"13572"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"18292","_from":"13573","_to":"13572"} +{"$label":"ACTS_IN","name":"Beverly T. Lee","type":"Role","_key":"95918","_from":"13573","_to":"56411"} +{"$label":"ACTS_IN","name":"Dotty","type":"Role","_key":"40452","_from":"13573","_to":"27259"} +{"$label":"ACTS_IN","name":"Peters","type":"Role","_key":"95305","_from":"13574","_to":"56070"} +{"$label":"ACTS_IN","name":"Fritz Curtis#","type":"Role","_key":"68590","_from":"13574","_to":"42053"} +{"$label":"DIRECTED","_key":"72869","_from":"13574","_to":"43890"} +{"$label":"ACTS_IN","name":"Harry Samstat","type":"Role","_key":"96920","_from":"13575","_to":"57008"} +{"$label":"ACTS_IN","name":"Reb Alter Vishkower","type":"Role","_key":"62220","_from":"13575","_to":"39187"} +{"$label":"ACTS_IN","name":"Bower","type":"Role","_key":"58238","_from":"13575","_to":"36833"} +{"$label":"ACTS_IN","name":"John Tower","type":"Role","_key":"25555","_from":"13575","_to":"18410"} +{"$label":"ACTS_IN","name":"Darius","type":"Role","_key":"97683","_from":"13576","_to":"57516"} +{"$label":"ACTS_IN","name":"Colonel Glenn","type":"Role","_key":"108390","_from":"13577","_to":"64078"} +{"$label":"ACTS_IN","name":"Parsons","type":"Role","_key":"93579","_from":"13577","_to":"55109"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"67133","_from":"13577","_to":"41425"} +{"$label":"ACTS_IN","name":"General Brian","type":"Role","_key":"65195","_from":"13577","_to":"40491"} +{"$label":"ACTS_IN","name":"Joe Camber","type":"Role","_key":"63639","_from":"13577","_to":"39810"} +{"$label":"ACTS_IN","name":"Major Claremont","type":"Role","_key":"47831","_from":"13577","_to":"31490"} +{"$label":"ACTS_IN","name":"Maloney","type":"Role","_key":"39856","_from":"13577","_to":"26930"} +{"$label":"ACTS_IN","name":"Josef Sirola","type":"Role","_key":"37574","_from":"13577","_to":"25467"} +{"$label":"ACTS_IN","name":"Captain Knauer","type":"Role","_key":"35343","_from":"13577","_to":"24065"} +{"$label":"ACTS_IN","name":"Ruth Chandler","type":"Role","_key":"104064","_from":"13578","_to":"61227"} +{"$label":"ACTS_IN","name":"Thumper","type":"Role","_key":"18311","_from":"13584","_to":"13579"} +{"$label":"ACTS_IN","name":"Cutbush","type":"Role","_key":"18310","_from":"13583","_to":"13579"} +{"$label":"ACTS_IN","name":"Duffy","type":"Role","_key":"18309","_from":"13582","_to":"13579"} +{"$label":"ACTS_IN","name":"Cap. Peretz","type":"Role","_key":"18306","_from":"13581","_to":"13579"} +{"$label":"DIRECTED","_key":"18302","_from":"13580","_to":"13579"} +{"$label":"DIRECTED","_key":"101227","_from":"13580","_to":"59622"} +{"$label":"DIRECTED","_key":"92330","_from":"13580","_to":"54491"} +{"$label":"DIRECTED","_key":"43877","_from":"13580","_to":"29296"} +{"$label":"ACTS_IN","name":"Jimmy Dooley","type":"Role","_key":"56746","_from":"13582","_to":"36041"} +{"$label":"ACTS_IN","name":"Kent Woodlands","type":"Role","_key":"55989","_from":"13582","_to":"35588"} +{"$label":"ACTS_IN","name":"Ray Walters","type":"Role","_key":"18784","_from":"13582","_to":"13887"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18323","_from":"13595","_to":"13585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"18322","_from":"13594","_to":"13585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"18321","_from":"13593","_to":"13585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"18320","_from":"13592","_to":"13585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"18319","_from":"13591","_to":"13585"} +{"$label":"ACTS_IN","name":"General Bradley","type":"Role","_key":"18318","_from":"13590","_to":"13585"} +{"$label":"ACTS_IN","name":"Colonel Grant","type":"Role","_key":"18317","_from":"13589","_to":"13585"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"18316","_from":"13588","_to":"13585"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"18315","_from":"13587","_to":"13585"} +{"$label":"DIRECTED","_key":"18313","_from":"13586","_to":"13585"} +{"$label":"ACTS_IN","name":"Anna Cipriani","type":"Role","_key":"34002","_from":"13587","_to":"23394"} +{"$label":"ACTS_IN","name":"William Shannon","type":"Role","_key":"44285","_from":"13589","_to":"29509"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"30966","_from":"13589","_to":"21695"} +{"$label":"ACTS_IN","name":"Sharif","type":"Role","_key":"110141","_from":"13591","_to":"65080"} +{"$label":"ACTS_IN","name":"Executed Templar","type":"Role","_key":"90210","_from":"13591","_to":"53330"} +{"$label":"ACTS_IN","name":"Red Hair","type":"Role","_key":"53532","_from":"13591","_to":"34556"} +{"$label":"ACTS_IN","name":"Morpho","type":"Role","_key":"26540","_from":"13591","_to":"19069"} +{"$label":"ACTS_IN","name":"Caronte","type":"Role","_key":"26429","_from":"13591","_to":"18983"} +{"$label":"ACTS_IN","name":"El Cojo","type":"Role","_key":"32142","_from":"13595","_to":"22397"} +{"$label":"ACTS_IN","name":"Omar Pashu","type":"Role","_key":"27420","_from":"13595","_to":"19690"} +{"$label":"ACTS_IN","name":"Ken Minami","type":"Role","_key":"18330","_from":"13601","_to":"13596"} +{"$label":"ACTS_IN","name":"Miki Kelso","type":"Role","_key":"18329","_from":"13600","_to":"13596"} +{"$label":"ACTS_IN","name":"Alex Noffe","type":"Role","_key":"18328","_from":"13599","_to":"13596"} +{"$label":"ACTS_IN","name":"Steve Kelso","type":"Role","_key":"18325","_from":"13598","_to":"13596"} +{"$label":"DIRECTED","_key":"18324","_from":"13597","_to":"13596"} +{"$label":"ACTS_IN","name":"Paul Castellano","type":"Role","_key":"101773","_from":"13597","_to":"59894"} +{"$label":"ACTS_IN","name":"Jack Dragna","type":"Role","_key":"62668","_from":"13597","_to":"39415"} +{"$label":"DIRECTED","_key":"72945","_from":"13597","_to":"43915"} +{"$label":"DIRECTED","_key":"37724","_from":"13597","_to":"25589"} +{"$label":"ACTS_IN","name":"Jerry Brecken","type":"Role","_key":"109066","_from":"13598","_to":"64444"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"98762","_from":"13598","_to":"58201"} +{"$label":"ACTS_IN","name":"Dodd","type":"Role","_key":"98204","_from":"13598","_to":"57841"} +{"$label":"ACTS_IN","name":"Roy Martin","type":"Role","_key":"90567","_from":"13598","_to":"53492"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"88780","_from":"13598","_to":"52605"} +{"$label":"ACTS_IN","name":"Capt. Loomis Birkhead","type":"Role","_key":"70381","_from":"13598","_to":"42868"} +{"$label":"ACTS_IN","name":"Vance Wilder senior","type":"Role","_key":"69945","_from":"13598","_to":"42675"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"62900","_from":"13598","_to":"39513"} +{"$label":"ACTS_IN","name":"Alan Stanwyk","type":"Role","_key":"56255","_from":"13598","_to":"35740"} +{"$label":"ACTS_IN","name":"Eric Stratton","type":"Role","_key":"49974","_from":"13598","_to":"32712"} +{"$label":"DIRECTED","_key":"98208","_from":"13598","_to":"57841"} +{"$label":"ACTS_IN","name":"Harold Lauder","type":"Role","_key":"94971","_from":"13600","_to":"55928"} +{"$label":"ACTS_IN","name":"Selkirk","type":"Role","_key":"35090","_from":"13600","_to":"23924"} +{"$label":"ACTS_IN","name":"Rheya","type":"Role","_key":"18334","_from":"13603","_to":"13602"} +{"$label":"ACTS_IN","name":"Loveday","type":"Role","_key":"114689","_from":"13603","_to":"67560"} +{"$label":"ACTS_IN","name":"Sgt. Irene Teal","type":"Role","_key":"100080","_from":"13603","_to":"59035"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"99822","_from":"13603","_to":"58882"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"96932","_from":"13603","_to":"57014"} +{"$label":"ACTS_IN","name":"Penelope Wood","type":"Role","_key":"57425","_from":"13603","_to":"36404"} +{"$label":"ACTS_IN","name":"Terry Huston","type":"Role","_key":"54578","_from":"13603","_to":"34969"} +{"$label":"ACTS_IN","name":"Deirdre","type":"Role","_key":"48318","_from":"13603","_to":"31733"} +{"$label":"ACTS_IN","name":"Megan Doherty","type":"Role","_key":"31983","_from":"13603","_to":"22296"} +{"$label":"ACTS_IN","name":"Koloustion","type":"Role","_key":"18347","_from":"13612","_to":"13604"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"18346","_from":"13611","_to":"13604"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"18345","_from":"13610","_to":"13604"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"18344","_from":"13609","_to":"13604"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"18343","_from":"13608","_to":"13604"} +{"$label":"ACTS_IN","name":"Poupousse","type":"Role","_key":"18341","_from":"13607","_to":"13604"} +{"$label":"ACTS_IN","name":"Rafik","type":"Role","_key":"18340","_from":"13606","_to":"13604"} +{"$label":"DIRECTED","_key":"18338","_from":"13605","_to":"13604"} +{"$label":"ACTS_IN","name":"Lecointre","type":"Role","_key":"31195","_from":"13610","_to":"21829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53405","_from":"13612","_to":"34505"} +{"$label":"ACTS_IN","name":"Paul Finch","type":"Role","_key":"18360","_from":"13620","_to":"13613"} +{"$label":"ACTS_IN","name":"Jim's Father","type":"Role","_key":"18358","_from":"13619","_to":"13613"} +{"$label":"ACTS_IN","name":"Janine Stiftler","type":"Role","_key":"18357","_from":"13618","_to":"13613"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"18354","_from":"13617","_to":"13613"} +{"$label":"ACTS_IN","name":"Michelle Flathery","type":"Role","_key":"18353","_from":"13616","_to":"13613"} +{"$label":"ACTS_IN","name":"Chris \" Oz \" Ostreicher","type":"Role","_key":"18351","_from":"13615","_to":"13613"} +{"$label":"ACTS_IN","name":"Jim Levenstein","type":"Role","_key":"18350","_from":"13614","_to":"13613"} +{"$label":"ACTS_IN","name":"Rafe","type":"Role","_key":"108187","_from":"13614","_to":"63940"} +{"$label":"ACTS_IN","name":"Corporal Rudy Spruance","type":"Role","_key":"100079","_from":"13614","_to":"59035"} +{"$label":"ACTS_IN","name":"Dustin","type":"Role","_key":"95365","_from":"13614","_to":"56099"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"93063","_from":"13614","_to":"54864"} +{"$label":"ACTS_IN","name":"Insecure Penguin (voice)","type":"Role","_key":"89794","_from":"13614","_to":"53142"} +{"$label":"ACTS_IN","name":"Darren Silverman","type":"Role","_key":"66428","_from":"13614","_to":"41072"} +{"$label":"ACTS_IN","name":"Jerry Falk","type":"Role","_key":"65353","_from":"13614","_to":"40549"} +{"$label":"ACTS_IN","name":"Paul Tannek","type":"Role","_key":"64790","_from":"13614","_to":"40315"} +{"$label":"ACTS_IN","name":"Hunter \/ Steve","type":"Role","_key":"64160","_from":"13614","_to":"40035"} +{"$label":"ACTS_IN","name":"Charlie Cooper","type":"Role","_key":"52192","_from":"13614","_to":"34007"} +{"$label":"ACTS_IN","name":"Jim Levenstein","type":"Role","_key":"48705","_from":"13614","_to":"31948"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"47312","_from":"13614","_to":"31163"} +{"$label":"ACTS_IN","name":"Jim Levenstein","type":"Role","_key":"23438","_from":"13614","_to":"16996"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"118743","_from":"13615","_to":"69825"} +{"$label":"ACTS_IN","name":"George Rifkin","type":"Role","_key":"106688","_from":"13615","_to":"62873"} +{"$label":"ACTS_IN","name":"Charlie Nash","type":"Role","_key":"103802","_from":"13615","_to":"61054"} +{"$label":"ACTS_IN","name":"Allen Harris","type":"Role","_key":"95281","_from":"13615","_to":"56057"} +{"$label":"ACTS_IN","name":"Kelvin Morse","type":"Role","_key":"95110","_from":"13615","_to":"55973"} +{"$label":"ACTS_IN","name":"Conrad Hubriss","type":"Role","_key":"92786","_from":"13615","_to":"54733"} +{"$label":"ACTS_IN","name":"Jonathan Cross","type":"Role","_key":"70482","_from":"13615","_to":"42911"} +{"$label":"ACTS_IN","name":"2nd Lt. Jack Geoghegan","type":"Role","_key":"64306","_from":"13615","_to":"40088"} +{"$label":"ACTS_IN","name":"Dusty Dinkleman","type":"Role","_key":"59703","_from":"13615","_to":"37702"} +{"$label":"ACTS_IN","name":"Paul Metzler","type":"Role","_key":"53951","_from":"13615","_to":"34712"} +{"$label":"ACTS_IN","name":"William Williams","type":"Role","_key":"53035","_from":"13615","_to":"34338"} +{"$label":"ACTS_IN","name":"Chris 'Oz' Ostreicher","type":"Role","_key":"23440","_from":"13615","_to":"16996"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"100796","_from":"13616","_to":"59419"} +{"$label":"ACTS_IN","name":"Jessie Mills","type":"Role","_key":"88142","_from":"13616","_to":"52301"} +{"$label":"ACTS_IN","name":"Julia Jones","type":"Role","_key":"60272","_from":"13616","_to":"38015"} +{"$label":"ACTS_IN","name":"Michelle Flaherty","type":"Role","_key":"48706","_from":"13616","_to":"31948"} +{"$label":"ACTS_IN","name":"Michelle Flaherty","type":"Role","_key":"23444","_from":"13616","_to":"16996"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"67976","_from":"13617","_to":"41766"} +{"$label":"ACTS_IN","name":"Officer Natalie Parker","type":"Role","_key":"64811","_from":"13617","_to":"40325"} +{"$label":"ACTS_IN","name":"Kathy Kriticos","type":"Role","_key":"53459","_from":"13617","_to":"34533"} +{"$label":"ACTS_IN","name":"Buffy Gilmore","type":"Role","_key":"30441","_from":"13617","_to":"21394"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"23443","_from":"13617","_to":"16996"} +{"$label":"ACTS_IN","name":"Justice","type":"Role","_key":"20133","_from":"13617","_to":"14786"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"113893","_from":"13618","_to":"67087"} +{"$label":"ACTS_IN","name":"Mrs. Wellington","type":"Role","_key":"108539","_from":"13618","_to":"64148"} +{"$label":"ACTS_IN","name":"Rosalee","type":"Role","_key":"101322","_from":"13618","_to":"59645"} +{"$label":"ACTS_IN","name":"Genevieve","type":"Role","_key":"71632","_from":"13618","_to":"43379"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"68776","_from":"13618","_to":"42142"} +{"$label":"ACTS_IN","name":"Ireenie","type":"Role","_key":"64547","_from":"13618","_to":"40205"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"62609","_from":"13618","_to":"39388"} +{"$label":"ACTS_IN","name":"Roz Funkyerdoder","type":"Role","_key":"60275","_from":"13618","_to":"38015"} +{"$label":"ACTS_IN","name":"White Bitch","type":"Role","_key":"56386","_from":"13618","_to":"35829"} +{"$label":"ACTS_IN","name":"Polizistin","type":"Role","_key":"53803","_from":"13618","_to":"34666"} +{"$label":"ACTS_IN","name":"Martha Kendoo","type":"Role","_key":"53036","_from":"13618","_to":"34338"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"37905","_from":"13618","_to":"25667"} +{"$label":"ACTS_IN","name":"Aunt Marilyn","type":"Role","_key":"32897","_from":"13618","_to":"22825"} +{"$label":"ACTS_IN","name":"Bucky Kent","type":"Role","_key":"110373","_from":"13619","_to":"65216"} +{"$label":"ACTS_IN","name":"Orrin (voice)","type":"Role","_key":"109572","_from":"13619","_to":"64719"} +{"$label":"ACTS_IN","name":"Dr. Allan Pearl","type":"Role","_key":"109274","_from":"13619","_to":"64561"} +{"$label":"ACTS_IN","name":"Keyes","type":"Role","_key":"108536","_from":"13619","_to":"64148"} +{"$label":"ACTS_IN","name":"Jonas Fromer \/ Repli-Jonas","type":"Role","_key":"108372","_from":"13619","_to":"64065"} +{"$label":"ACTS_IN","name":"Morley Orfkin","type":"Role","_key":"101817","_from":"13619","_to":"59926"} +{"$label":"ACTS_IN","name":"Gerry Fleck","type":"Role","_key":"96611","_from":"13619","_to":"56824"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"94142","_from":"13619","_to":"55439"} +{"$label":"ACTS_IN","name":"Leo Ross","type":"Role","_key":"88904","_from":"13619","_to":"52665"} +{"$label":"ACTS_IN","name":"Max Lomax","type":"Role","_key":"67372","_from":"13619","_to":"41515"} +{"$label":"ACTS_IN","name":"Howie Rottman","type":"Role","_key":"65008","_from":"13619","_to":"40403"} +{"$label":"ACTS_IN","name":"Clovis","type":"Role","_key":"58822","_from":"13619","_to":"37148"} +{"$label":"ACTS_IN","name":"Jimmy Murtaugh","type":"Role","_key":"55219","_from":"13619","_to":"35229"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"53015","_from":"13619","_to":"34331"} +{"$label":"ACTS_IN","name":"Andy Fiddler","type":"Role","_key":"52407","_from":"13619","_to":"34102"} +{"$label":"ACTS_IN","name":"Mr. Levenstein","type":"Role","_key":"48759","_from":"13619","_to":"31982"} +{"$label":"ACTS_IN","name":"Mr. Levenstein","type":"Role","_key":"48735","_from":"13619","_to":"31964"} +{"$label":"ACTS_IN","name":"Mr. Levenstein","type":"Role","_key":"48722","_from":"13619","_to":"31954"} +{"$label":"ACTS_IN","name":"Jim's Dad","type":"Role","_key":"48711","_from":"13619","_to":"31948"} +{"$label":"ACTS_IN","name":"Lou (voice)","type":"Role","_key":"47105","_from":"13619","_to":"31057"} +{"$label":"ACTS_IN","name":"Jims Vater","type":"Role","_key":"23449","_from":"13619","_to":"16996"} +{"$label":"ACTS_IN","name":"Norman Kane","type":"Role","_key":"22254","_from":"13619","_to":"16202"} +{"$label":"ACTS_IN","name":"Walter Kornbluth","type":"Role","_key":"22243","_from":"13619","_to":"16195"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115206","_from":"13620","_to":"67848"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"106846","_from":"13620","_to":"62986"} +{"$label":"ACTS_IN","name":"Peter Rothner","type":"Role","_key":"100203","_from":"13620","_to":"59100"} +{"$label":"ACTS_IN","name":"Freddy Brody","type":"Role","_key":"93093","_from":"13620","_to":"54874"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"93078","_from":"13620","_to":"54867"} +{"$label":"ACTS_IN","name":"Paul Finch","type":"Role","_key":"48708","_from":"13620","_to":"31948"} +{"$label":"ACTS_IN","name":"Arnie","type":"Role","_key":"46491","_from":"13620","_to":"30698"} +{"$label":"ACTS_IN","name":"Paul Finch","type":"Role","_key":"23442","_from":"13620","_to":"16996"} +{"$label":"ACTS_IN","name":"Golushha","type":"Role","_key":"18368","_from":"13627","_to":"13621"} +{"$label":"ACTS_IN","name":"Sun Bathing Man","type":"Role","_key":"18367","_from":"13626","_to":"13621"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"18366","_from":"13625","_to":"13621"} +{"$label":"ACTS_IN","name":"Vlasta Simoneva","type":"Role","_key":"18363","_from":"13624","_to":"13621"} +{"$label":"ACTS_IN","name":"Nicholas Whistler","type":"Role","_key":"18362","_from":"13623","_to":"13621"} +{"$label":"DIRECTED","_key":"18361","_from":"13622","_to":"13621"} +{"$label":"DIRECTED","_key":"35698","_from":"13622","_to":"24260"} +{"$label":"DIRECTED","_key":"33477","_from":"13622","_to":"23156"} +{"$label":"ACTS_IN","name":"Gustav Aschenbach","type":"Role","_key":"44339","_from":"13623","_to":"29549"} +{"$label":"ACTS_IN","name":"Lt. Gen. Fredrick. Browning","type":"Role","_key":"40254","_from":"13623","_to":"27164"} +{"$label":"ACTS_IN","name":"Sydney Carton","type":"Role","_key":"33458","_from":"13623","_to":"23156"} +{"$label":"ACTS_IN","name":"Charlie Hook","type":"Role","_key":"21743","_from":"13623","_to":"15878"} +{"$label":"ACTS_IN","name":"Sophia Lehar","type":"Role","_key":"37414","_from":"13624","_to":"25355"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"35810","_from":"13624","_to":"24317"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"35701","_from":"13624","_to":"24260"} +{"$label":"ACTS_IN","name":"The Prefect's Wife","type":"Role","_key":"31444","_from":"13624","_to":"21964"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"26971","_from":"13624","_to":"19402"} +{"$label":"ACTS_IN","name":"Captain Varela - Uruguayan Navy","type":"Role","_key":"113289","_from":"13625","_to":"66734"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"25968","_from":"13626","_to":"18668"} +{"$label":"ACTS_IN","name":"The Fat Man","type":"Role","_key":"72325","_from":"13627","_to":"43680"} +{"$label":"ACTS_IN","name":"Farouk","type":"Role","_key":"34579","_from":"13627","_to":"23672"} +{"$label":"ACTS_IN","name":"Sawyer","type":"Role","_key":"33471","_from":"13627","_to":"23156"} +{"$label":"ACTS_IN","name":"Kerkie Minelli","type":"Role","_key":"27571","_from":"13627","_to":"19773"} +{"$label":"ACTS_IN","name":"Ariel","type":"Role","_key":"18375","_from":"13631","_to":"13628"} +{"$label":"ACTS_IN","name":"Trudi","type":"Role","_key":"18374","_from":"13630","_to":"13628"} +{"$label":"ACTS_IN","name":"Sara McDowel","type":"Role","_key":"18372","_from":"13629","_to":"13628"} +{"$label":"ACTS_IN","name":"Terry Hoskins","type":"Role","_key":"64716","_from":"13629","_to":"40297"} +{"$label":"ACTS_IN","name":"Roberta Gillian","type":"Role","_key":"33132","_from":"13629","_to":"22943"} +{"$label":"ACTS_IN","name":"Miss Tracy","type":"Role","_key":"118465","_from":"13630","_to":"69644"} +{"$label":"ACTS_IN","name":"Lil","type":"Role","_key":"110117","_from":"13630","_to":"65070"} +{"$label":"ACTS_IN","name":"Veronica Vreeland","type":"Role","_key":"105984","_from":"13630","_to":"62398"} +{"$label":"ACTS_IN","name":"Veronica Vreeland","type":"Role","_key":"102477","_from":"13630","_to":"60297"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"72926","_from":"13630","_to":"43910"} +{"$label":"ACTS_IN","name":"Margaret \"Molly\" Brown","type":"Role","_key":"22778","_from":"13630","_to":"16516"} +{"$label":"DIRECTED","_key":"18385","_from":"13634","_to":"13632"} +{"$label":"ACTS_IN","name":"Claire Standish","type":"Role","_key":"18382","_from":"13633","_to":"13632"} +{"$label":"ACTS_IN","name":"Betsy Hopper","type":"Role","_key":"118098","_from":"13633","_to":"69414"} +{"$label":"ACTS_IN","name":"Randy Jensen","type":"Role","_key":"111687","_from":"13633","_to":"65944"} +{"$label":"ACTS_IN","name":"Samantha Baker","type":"Role","_key":"103345","_from":"13633","_to":"60795"} +{"$label":"ACTS_IN","name":"Frannie Goldsmith","type":"Role","_key":"94967","_from":"13633","_to":"55928"} +{"$label":"ACTS_IN","name":"Andie Walsh","type":"Role","_key":"70395","_from":"13633","_to":"42871"} +{"$label":"ACTS_IN","name":"Miss Banks","type":"Role","_key":"62700","_from":"13633","_to":"39424"} +{"$label":"ACTS_IN","name":"Vanessa Turnbill \/ Chloe","type":"Role","_key":"61695","_from":"13633","_to":"38860"} +{"$label":"ACTS_IN","name":"Actress","type":"Role","_key":"25870","_from":"13633","_to":"18581"} +{"$label":"DIRECTED","_key":"103357","_from":"13634","_to":"60795"} +{"$label":"DIRECTED","_key":"91204","_from":"13634","_to":"53786"} +{"$label":"DIRECTED","_key":"72598","_from":"13634","_to":"43769"} +{"$label":"DIRECTED","_key":"72138","_from":"13634","_to":"43605"} +{"$label":"DIRECTED","_key":"53455","_from":"13634","_to":"34532"} +{"$label":"DIRECTED","_key":"22229","_from":"13634","_to":"16185"} +{"$label":"DIRECTED","_key":"22174","_from":"13634","_to":"16161"} +{"$label":"DIRECTED","_key":"18396","_from":"13640","_to":"13635"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"18395","_from":"13639","_to":"13635"} +{"$label":"ACTS_IN","name":"Soo Yung","type":"Role","_key":"18394","_from":"13638","_to":"13635"} +{"$label":"ACTS_IN","name":"First Caucasien","type":"Role","_key":"18392","_from":"13637","_to":"13635"} +{"$label":"ACTS_IN","name":"Consul Han","type":"Role","_key":"18390","_from":"13636","_to":"13635"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120686","_from":"13636","_to":"70879"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"93199","_from":"13636","_to":"54916"} +{"$label":"ACTS_IN","name":"Hinh Ma","type":"Role","_key":"48346","_from":"13636","_to":"31740"} +{"$label":"ACTS_IN","name":"Premier","type":"Role","_key":"45913","_from":"13636","_to":"30362"} +{"$label":"ACTS_IN","name":"The General","type":"Role","_key":"37627","_from":"13636","_to":"25505"} +{"$label":"DIRECTED","_key":"90353","_from":"13640","_to":"53397"} +{"$label":"DIRECTED","_key":"64280","_from":"13640","_to":"40082"} +{"$label":"DIRECTED","_key":"54507","_from":"13640","_to":"34932"} +{"$label":"DIRECTED","_key":"53727","_from":"13640","_to":"34641"} +{"$label":"DIRECTED","_key":"40942","_from":"13640","_to":"27547"} +{"$label":"DIRECTED","_key":"36256","_from":"13640","_to":"24603"} +{"$label":"DIRECTED","_key":"36246","_from":"13640","_to":"24600"} +{"$label":"ACTS_IN","name":"Josy","type":"Role","_key":"18407","_from":"13650","_to":"13641"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"18406","_from":"13649","_to":"13641"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"18405","_from":"13648","_to":"13641"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"18404","_from":"13647","_to":"13641"} +{"$label":"ACTS_IN","name":"Le Squale","type":"Role","_key":"18403","_from":"13646","_to":"13641"} +{"$label":"ACTS_IN","name":"Takanawa","type":"Role","_key":"18402","_from":"13645","_to":"13641"} +{"$label":"ACTS_IN","name":"Maurice \" Momo \"","type":"Role","_key":"18400","_from":"13644","_to":"13641"} +{"$label":"ACTS_IN","name":"Yumi Yoshimido","type":"Role","_key":"18399","_from":"13643","_to":"13641"} +{"$label":"DIRECTED","_key":"18397","_from":"13642","_to":"13641"} +{"$label":"DIRECTED","_key":"20482","_from":"13642","_to":"14980"} +{"$label":"DIRECTED","_key":"20481","_from":"13642","_to":"14979"} +{"$label":"DIRECTED","_key":"20465","_from":"13642","_to":"14973"} +{"$label":"ACTS_IN","name":"Mika Kobayashi","type":"Role","_key":"110110","_from":"13643","_to":"65066"} +{"$label":"ACTS_IN","name":"Bricol le manager","type":"Role","_key":"121771","_from":"13644","_to":"71533"} +{"$label":"ACTS_IN","name":"Bricol le manager","type":"Role","_key":"110838","_from":"13644","_to":"65471"} +{"$label":"ACTS_IN","name":"Yossi","type":"Role","_key":"47918","_from":"13644","_to":"31519"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"29590","_from":"13644","_to":"20945"} +{"$label":"ACTS_IN","name":"Groin","type":"Role","_key":"23655","_from":"13644","_to":"17146"} +{"$label":"ACTS_IN","name":"Le m\u00e9canicien","type":"Role","_key":"23182","_from":"13644","_to":"16809"} +{"$label":"ACTS_IN","name":"Luo","type":"Role","_key":"18411","_from":"13654","_to":"13651"} +{"$label":"ACTS_IN","name":"La petite tailleuse chinoise","type":"Role","_key":"18410","_from":"13653","_to":"13651"} +{"$label":"ACTS_IN","name":"Chef du village","type":"Role","_key":"18409","_from":"13652","_to":"13651"} +{"$label":"ACTS_IN","name":"Xiao Wei","type":"Role","_key":"114025","_from":"13653","_to":"67150"} +{"$label":"ACTS_IN","name":"Qing Nu","type":"Role","_key":"100368","_from":"13653","_to":"59186"} +{"$label":"ACTS_IN","name":"Qin","type":"Role","_key":"90871","_from":"13653","_to":"53613"} +{"$label":"ACTS_IN","name":"Meimei","type":"Role","_key":"70981","_from":"13653","_to":"43110"} +{"$label":"ACTS_IN","name":"Det. Leary","type":"Role","_key":"18425","_from":"13658","_to":"13655"} +{"$label":"DIRECTED","_key":"18414","_from":"13657","_to":"13655"} +{"$label":"DIRECTED","_key":"18413","_from":"13656","_to":"13655"} +{"$label":"DIRECTED","_key":"55073","_from":"13656","_to":"35178"} +{"$label":"DIRECTED","_key":"54106","_from":"13656","_to":"34782"} +{"$label":"ACTS_IN","name":"Penning","type":"Role","_key":"96762","_from":"13658","_to":"56916"} +{"$label":"ACTS_IN","name":"Deputy Frye","type":"Role","_key":"93974","_from":"13658","_to":"55341"} +{"$label":"ACTS_IN","name":"Off. Jane Proudfoot","type":"Role","_key":"18433","_from":"13663","_to":"13659"} +{"$label":"ACTS_IN","name":"Dr. Aki Ross ( voice )","type":"Role","_key":"18429","_from":"13662","_to":"13659"} +{"$label":"DIRECTED","_key":"18427","_from":"13661","_to":"13659"} +{"$label":"DIRECTED","_key":"18426","_from":"13660","_to":"13659"} +{"$label":"ACTS_IN","name":"Jing-Mei 'June' Woo","type":"Role","_key":"121492","_from":"13662","_to":"71369"} +{"$label":"ACTS_IN","name":"Mimi Carlyle","type":"Role","_key":"90624","_from":"13662","_to":"53516"} +{"$label":"ACTS_IN","name":"Mulan","type":"Role","_key":"88972","_from":"13662","_to":"52708"} +{"$label":"ACTS_IN","name":"Chun-Li Zang","type":"Role","_key":"71420","_from":"13662","_to":"43306"} +{"$label":"ACTS_IN","name":"Mulan (voice)","type":"Role","_key":"64977","_from":"13662","_to":"40383"} +{"$label":"ACTS_IN","name":"Professor Kate Corrigan (voice)","type":"Role","_key":"110019","_from":"13663","_to":"65008"} +{"$label":"ACTS_IN","name":"Debra Salhany","type":"Role","_key":"96686","_from":"13663","_to":"56865"} +{"$label":"ACTS_IN","name":"Professor Kate Corrigan (voice)","type":"Role","_key":"93463","_from":"13663","_to":"55026"} +{"$label":"ACTS_IN","name":"Benjamin Rasnick","type":"Role","_key":"18444","_from":"13671","_to":"13664"} +{"$label":"ACTS_IN","name":"Benji Rasnick","type":"Role","_key":"18443","_from":"13670","_to":"13664"} +{"$label":"ACTS_IN","name":"Billy Tatton","type":"Role","_key":"18442","_from":"13669","_to":"13664"} +{"$label":"ACTS_IN","name":"Gene Bodine","type":"Role","_key":"18441","_from":"13668","_to":"13664"} +{"$label":"ACTS_IN","name":"Bu Montgomery","type":"Role","_key":"18439","_from":"13667","_to":"13664"} +{"$label":"ACTS_IN","name":"Patti Rasnick","type":"Role","_key":"18438","_from":"13666","_to":"13664"} +{"$label":"DIRECTED","_key":"18435","_from":"13665","_to":"13664"} +{"$label":"DIRECTED","_key":"116623","_from":"13665","_to":"68650"} +{"$label":"DIRECTED","_key":"116516","_from":"13665","_to":"68578"} +{"$label":"DIRECTED","_key":"98534","_from":"13665","_to":"58070"} +{"$label":"DIRECTED","_key":"93603","_from":"13665","_to":"55116"} +{"$label":"DIRECTED","_key":"91093","_from":"13665","_to":"53747"} +{"$label":"DIRECTED","_key":"42611","_from":"13665","_to":"28531"} +{"$label":"DIRECTED","_key":"23380","_from":"13665","_to":"16947"} +{"$label":"ACTS_IN","name":"Joe - Boris' Friend #3","type":"Role","_key":"119432","_from":"13667","_to":"70168"} +{"$label":"ACTS_IN","name":"Andy Richardson","type":"Role","_key":"108331","_from":"13667","_to":"64040"} +{"$label":"ACTS_IN","name":"Mr. Green","type":"Role","_key":"103551","_from":"13667","_to":"60907"} +{"$label":"ACTS_IN","name":"Stefan Vanderhoof","type":"Role","_key":"96619","_from":"13667","_to":"56824"} +{"$label":"ACTS_IN","name":"Milo Jackson","type":"Role","_key":"95352","_from":"13667","_to":"56098"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94146","_from":"13667","_to":"55439"} +{"$label":"ACTS_IN","name":"Fred Ritter","type":"Role","_key":"73036","_from":"13667","_to":"43957"} +{"$label":"ACTS_IN","name":"David St. Hubbins","type":"Role","_key":"67420","_from":"13667","_to":"41533"} +{"$label":"ACTS_IN","name":"Prison Trustee","type":"Role","_key":"57729","_from":"13667","_to":"36543"} +{"$label":"ACTS_IN","name":"Chief of Police","type":"Role","_key":"55503","_from":"13667","_to":"35362"} +{"$label":"ACTS_IN","name":"Gorman Seedling, INS Deputy Commissioner","type":"Role","_key":"55030","_from":"13667","_to":"35160"} +{"$label":"ACTS_IN","name":"Dwain","type":"Role","_key":"52112","_from":"13667","_to":"33976"} +{"$label":"ACTS_IN","name":"Chester","type":"Role","_key":"40727","_from":"13667","_to":"27403"} +{"$label":"ACTS_IN","name":"George Talbot","type":"Role","_key":"22709","_from":"13667","_to":"16474"} +{"$label":"ACTS_IN","name":"State Trooper","type":"Role","_key":"22164","_from":"13667","_to":"16161"} +{"$label":"ACTS_IN","name":"Woody","type":"Role","_key":"19210","_from":"13667","_to":"14203"} +{"$label":"ACTS_IN","name":"James J. Hennesey","type":"Role","_key":"119969","_from":"13668","_to":"70458"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"64844","_from":"13668","_to":"40337"} +{"$label":"ACTS_IN","name":"Lt. Frankie Reno","type":"Role","_key":"118081","_from":"13671","_to":"69396"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113207","_from":"13671","_to":"66703"} +{"$label":"ACTS_IN","name":"Father Damien Karras \/ Patient X","type":"Role","_key":"70878","_from":"13671","_to":"43072"} +{"$label":"ACTS_IN","name":"Father Karras","type":"Role","_key":"54632","_from":"13671","_to":"34989"} +{"$label":"ACTS_IN","name":"Tony Dalton","type":"Role","_key":"18453","_from":"13677","_to":"13672"} +{"$label":"ACTS_IN","name":"Chae","type":"Role","_key":"18452","_from":"13676","_to":"13672"} +{"$label":"ACTS_IN","name":"Chris Harrison","type":"Role","_key":"18451","_from":"13675","_to":"13672"} +{"$label":"ACTS_IN","name":"Cabot","type":"Role","_key":"18449","_from":"13674","_to":"13672"} +{"$label":"DIRECTED","_key":"18446","_from":"13673","_to":"13672"} +{"$label":"DIRECTED","_key":"70672","_from":"13673","_to":"42997"} +{"$label":"DIRECTED","_key":"50114","_from":"13673","_to":"32780"} +{"$label":"ACTS_IN","name":"Buzz","type":"Role","_key":"121561","_from":"13675","_to":"71425"} +{"$label":"ACTS_IN","name":"Daniel Harding","type":"Role","_key":"111313","_from":"13675","_to":"65742"} +{"$label":"ACTS_IN","name":"Jack Bender","type":"Role","_key":"111050","_from":"13675","_to":"65597"} +{"$label":"ACTS_IN","name":"Bob Valenz","type":"Role","_key":"109821","_from":"13675","_to":"64879"} +{"$label":"ACTS_IN","name":"Tremaine 'Tre' Ramzey","type":"Role","_key":"108908","_from":"13675","_to":"64365"} +{"$label":"ACTS_IN","name":"Capt. Tom Parker","type":"Role","_key":"106274","_from":"13675","_to":"62605"} +{"$label":"ACTS_IN","name":"Joseph Smith","type":"Role","_key":"102261","_from":"13675","_to":"60174"} +{"$label":"ACTS_IN","name":"??","type":"Role","_key":"30105","_from":"13675","_to":"21216"} +{"$label":"ACTS_IN","name":"Jack alias Max Hopper","type":"Role","_key":"21614","_from":"13675","_to":"15801"} +{"$label":"ACTS_IN","name":"Professor Frederic West","type":"Role","_key":"98823","_from":"13676","_to":"58224"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"94118","_from":"13676","_to":"55425"} +{"$label":"ACTS_IN","name":"Harrison McKendrick","type":"Role","_key":"60046","_from":"13676","_to":"37890"} +{"$label":"ACTS_IN","name":"Everett","type":"Role","_key":"97236","_from":"13677","_to":"57206"} +{"$label":"ACTS_IN","name":"Stump","type":"Role","_key":"35014","_from":"13677","_to":"23895"} +{"$label":"ACTS_IN","name":"Gisela Schertling","type":"Role","_key":"18467","_from":"13687","_to":"13678"} +{"$label":"ACTS_IN","name":"Werner Scholl","type":"Role","_key":"18466","_from":"13686","_to":"13678"} +{"$label":"ACTS_IN","name":"Magdalena Scholl","type":"Role","_key":"18465","_from":"13685","_to":"13678"} +{"$label":"ACTS_IN","name":"Robert Scholl","type":"Role","_key":"18464","_from":"13684","_to":"13678"} +{"$label":"ACTS_IN","name":"Alexander Schmorell","type":"Role","_key":"18463","_from":"13683","_to":"13678"} +{"$label":"ACTS_IN","name":"Willi Graf","type":"Role","_key":"18462","_from":"13682","_to":"13678"} +{"$label":"ACTS_IN","name":"Christoph Probst","type":"Role","_key":"18461","_from":"13681","_to":"13678"} +{"$label":"ACTS_IN","name":"Hans Scholl","type":"Role","_key":"18457","_from":"13680","_to":"13678"} +{"$label":"DIRECTED","_key":"18455","_from":"13679","_to":"13678"} +{"$label":"DIRECTED","_key":"58318","_from":"13679","_to":"36872"} +{"$label":"DIRECTED","_key":"54122","_from":"13679","_to":"34784"} +{"$label":"DIRECTED","_key":"30489","_from":"13679","_to":"21421"} +{"$label":"ACTS_IN","name":"Florian","type":"Role","_key":"88622","_from":"13680","_to":"52511"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"48372","_from":"13680","_to":"31748"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"88113","_from":"13681","_to":"52292"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"88596","_from":"13682","_to":"52498"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"51059","_from":"13682","_to":"33315"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"43456","_from":"13682","_to":"29031"} +{"$label":"ACTS_IN","name":"Ecki","type":"Role","_key":"39999","_from":"13682","_to":"27014"} +{"$label":"ACTS_IN","name":"Thomas Hupach","type":"Role","_key":"37314","_from":"13682","_to":"25282"} +{"$label":"ACTS_IN","name":"Pastorin","type":"Role","_key":"67050","_from":"13685","_to":"41385"} +{"$label":"ACTS_IN","name":"Elisabeth M\u00f6ller","type":"Role","_key":"51768","_from":"13685","_to":"33777"} +{"$label":"ACTS_IN","name":"Marianne Berger","type":"Role","_key":"43470","_from":"13685","_to":"29036"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"35538","_from":"13685","_to":"24156"} +{"$label":"ACTS_IN","name":"Aldo Bennedetti","type":"Role","_key":"18485","_from":"13691","_to":"13689"} +{"$label":"ACTS_IN","name":"Waddle","type":"Role","_key":"18484","_from":"13690","_to":"13689"} +{"$label":"ACTS_IN","name":"Boyd","type":"Role","_key":"96051","_from":"13690","_to":"56457"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"66852","_from":"13690","_to":"41286"} +{"$label":"ACTS_IN","name":"Sgt. Tom Janks","type":"Role","_key":"63268","_from":"13690","_to":"39660"} +{"$label":"ACTS_IN","name":"Ivan McGhee","type":"Role","_key":"56840","_from":"13690","_to":"36088"} +{"$label":"ACTS_IN","name":"TV Sprecher ( voice )","type":"Role","_key":"18491","_from":"13697","_to":"13692"} +{"$label":"ACTS_IN","name":"Der Fahrstuhl ( voice )","type":"Role","_key":"18490","_from":"13696","_to":"13692"} +{"$label":"ACTS_IN","name":"Dr. Quuh ( voice )","type":"Role","_key":"18489","_from":"13695","_to":"13692"} +{"$label":"ACTS_IN","name":"Der Tod ( voice )","type":"Role","_key":"18488","_from":"13694","_to":"13692"} +{"$label":"ACTS_IN","name":"Cedric ( voice )","type":"Role","_key":"18487","_from":"13693","_to":"13692"} +{"$label":"ACTS_IN","name":"Zevo","type":"Role","_key":"18498","_from":"13700","_to":"13698"} +{"$label":"DIRECTED","_key":"18492","_from":"13699","_to":"13698"} +{"$label":"DIRECTED","_key":"105149","_from":"13699","_to":"61877"} +{"$label":"DIRECTED","_key":"103344","_from":"13699","_to":"60793"} +{"$label":"DIRECTED","_key":"95361","_from":"13699","_to":"56099"} +{"$label":"DIRECTED","_key":"70399","_from":"13699","_to":"42871"} +{"$label":"DIRECTED","_key":"62969","_from":"13699","_to":"39541"} +{"$label":"DIRECTED","_key":"22240","_from":"13699","_to":"16189"} +{"$label":"ACTS_IN","name":"Christopher Loren","type":"Role","_key":"115165","_from":"13700","_to":"67818"} +{"$label":"ACTS_IN","name":"Jason O'Malley","type":"Role","_key":"103094","_from":"13700","_to":"60638"} +{"$label":"ACTS_IN","name":"Bill Johnson","type":"Role","_key":"68727","_from":"13700","_to":"42115"} +{"$label":"ACTS_IN","name":"Tommy 'Tombs' Perello","type":"Role","_key":"46394","_from":"13700","_to":"30650"} +{"$label":"ACTS_IN","name":"Shante Jr. Bailreygates","type":"Role","_key":"18507","_from":"13704","_to":"13701"} +{"$label":"ACTS_IN","name":"Featured","type":"Role","_key":"18506","_from":"13703","_to":"13701"} +{"$label":"ACTS_IN","name":"Lee Harvey Baileygates","type":"Role","_key":"18505","_from":"13702","_to":"13701"} +{"$label":"ACTS_IN","name":"Kirk","type":"Role","_key":"67097","_from":"13704","_to":"41408"} +{"$label":"ACTS_IN","name":"Sandra Dorio","type":"Role","_key":"18513","_from":"13708","_to":"13705"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"18511","_from":"13707","_to":"13705"} +{"$label":"DIRECTED","_key":"18509","_from":"13706","_to":"13705"} +{"$label":"ACTS_IN","name":"The Young Girl","type":"Role","_key":"67160","_from":"13707","_to":"41439"} +{"$label":"ACTS_IN","name":"Miss Scarlet","type":"Role","_key":"103545","_from":"13708","_to":"60907"} +{"$label":"ACTS_IN","name":"Norma Cassady","type":"Role","_key":"90611","_from":"13708","_to":"53513"} +{"$label":"ACTS_IN","name":"Joan Holloway","type":"Role","_key":"67298","_from":"13708","_to":"41488"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"62944","_from":"13708","_to":"39530"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"57992","_from":"13708","_to":"36693"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"43903","_from":"13708","_to":"29304"} +{"$label":"ACTS_IN","name":"Faye Hanlon","type":"Role","_key":"38617","_from":"13708","_to":"26086"} +{"$label":"ACTS_IN","name":"Potifars Frau","type":"Role","_key":"21060","_from":"13708","_to":"15413"} +{"$label":"DIRECTED","_key":"18517","_from":"13710","_to":"13709"} +{"$label":"ACTS_IN","name":"Toreador","type":"Role","_key":"93710","_from":"13710","_to":"55160"} +{"$label":"DIRECTED","_key":"91457","_from":"13710","_to":"53931"} +{"$label":"DIRECTED","_key":"64032","_from":"13710","_to":"39968"} +{"$label":"DIRECTED","_key":"63646","_from":"13710","_to":"39810"} +{"$label":"DIRECTED","_key":"62478","_from":"13710","_to":"39351"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"18532","_from":"13720","_to":"13711"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"18531","_from":"13719","_to":"13711"} +{"$label":"ACTS_IN","name":"Sickenberger","type":"Role","_key":"18530","_from":"13718","_to":"13711"} +{"$label":"ACTS_IN","name":"TV Sprecher","type":"Role","_key":"18529","_from":"13717","_to":"13711"} +{"$label":"ACTS_IN","name":"TV Sprecherin","type":"Role","_key":"18528","_from":"13716","_to":"13711"} +{"$label":"ACTS_IN","name":"Decker","type":"Role","_key":"18527","_from":"13715","_to":"13711"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"18526","_from":"13714","_to":"13711"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"18525","_from":"13713","_to":"13711"} +{"$label":"DIRECTED","_key":"18524","_from":"13712","_to":"13711"} +{"$label":"DIRECTED","_key":"103615","_from":"13712","_to":"60939"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"99199","_from":"13713","_to":"58450"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"54350","_from":"13713","_to":"34866"} +{"$label":"ACTS_IN","name":"Ehrmann","type":"Role","_key":"42382","_from":"13713","_to":"28358"} +{"$label":"ACTS_IN","name":"Ferdinand","type":"Role","_key":"40088","_from":"13713","_to":"27060"} +{"$label":"ACTS_IN","name":"Jan Evers","type":"Role","_key":"19232","_from":"13713","_to":"14216"} +{"$label":"DIRECTED","_key":"40085","_from":"13713","_to":"27060"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"68356","_from":"13714","_to":"41953"} +{"$label":"DIRECTED","_key":"31907","_from":"13715","_to":"22256"} +{"$label":"ACTS_IN","name":"Schwuler, Pilot, Alien","type":"Role","_key":"51874","_from":"13718","_to":"33840"} +{"$label":"ACTS_IN","name":"Tante Luckard","type":"Role","_key":"43102","_from":"13718","_to":"28790"} +{"$label":"ACTS_IN","name":"Raffo","type":"Role","_key":"33447","_from":"13718","_to":"23146"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62189","_from":"13719","_to":"39161"} +{"$label":"ACTS_IN","name":"Ehemaliger Verteidigungsminister","type":"Role","_key":"31161","_from":"13719","_to":"21794"} +{"$label":"ACTS_IN","name":"Lt. Curtis","type":"Role","_key":"18541","_from":"13723","_to":"13721"} +{"$label":"DIRECTED","_key":"18534","_from":"13722","_to":"13721"} +{"$label":"ACTS_IN","name":"Scool Director","type":"Role","_key":"18548","_from":"13730","_to":"13724"} +{"$label":"ACTS_IN","name":"Brad Wilson","type":"Role","_key":"18546","_from":"13729","_to":"13724"} +{"$label":"ACTS_IN","name":"Van Martin","type":"Role","_key":"18545","_from":"13728","_to":"13724"} +{"$label":"ACTS_IN","name":"Liv Watson","type":"Role","_key":"18544","_from":"13727","_to":"13724"} +{"$label":"ACTS_IN","name":"Meg Peters","type":"Role","_key":"18543","_from":"13726","_to":"13724"} +{"$label":"DIRECTED","_key":"18542","_from":"13725","_to":"13724"} +{"$label":"DIRECTED","_key":"18781","_from":"13725","_to":"13887"} +{"$label":"ACTS_IN","name":"Samantha Lane","type":"Role","_key":"121470","_from":"13726","_to":"71354"} +{"$label":"ACTS_IN","name":"Tuffy","type":"Role","_key":"60228","_from":"13726","_to":"37994"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"54319","_from":"13726","_to":"34859"} +{"$label":"ACTS_IN","name":"Julie Sawyer","type":"Role","_key":"101967","_from":"13727","_to":"60005"} +{"$label":"ACTS_IN","name":"Detec. Sandra Simmonds","type":"Role","_key":"18786","_from":"13727","_to":"13887"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96545","_from":"13730","_to":"56725"} +{"$label":"ACTS_IN","name":"Kathryn Lockwood","type":"Role","_key":"39266","_from":"13730","_to":"26554"} +{"$label":"ACTS_IN","name":"Alfred Pierre","type":"Role","_key":"18557","_from":"13732","_to":"13731"} +{"$label":"ACTS_IN","name":"Tristan","type":"Role","_key":"113246","_from":"13732","_to":"66724"} +{"$label":"ACTS_IN","name":"Dead Mike","type":"Role","_key":"103848","_from":"13732","_to":"61070"} +{"$label":"ACTS_IN","name":"Kemp","type":"Role","_key":"99752","_from":"13732","_to":"58829"} +{"$label":"ACTS_IN","name":"Detective Justice","type":"Role","_key":"88356","_from":"13732","_to":"52387"} +{"$label":"ACTS_IN","name":"Garald \"Gee Money\" Welles","type":"Role","_key":"66938","_from":"13732","_to":"41325"} +{"$label":"ACTS_IN","name":"Mrs. Watchett","type":"Role","_key":"18566","_from":"13737","_to":"13733"} +{"$label":"ACTS_IN","name":"Dr. Philip Hilyer","type":"Role","_key":"18563","_from":"13736","_to":"13733"} +{"$label":"ACTS_IN","name":"Weena","type":"Role","_key":"18562","_from":"13735","_to":"13733"} +{"$label":"DIRECTED","_key":"18559","_from":"13734","_to":"13733"} +{"$label":"ACTS_IN","name":"Linda Foster","type":"Role","_key":"71795","_from":"13735","_to":"43454"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"96078","_from":"13736","_to":"56475"} +{"$label":"ACTS_IN","name":"Bagheera (voice)","type":"Role","_key":"53135","_from":"13736","_to":"34379"} +{"$label":"ACTS_IN","name":"The Narrator\/Sir Ector","type":"Role","_key":"52429","_from":"13736","_to":"34114"} +{"$label":"ACTS_IN","name":"Wazir","type":"Role","_key":"34221","_from":"13736","_to":"23494"} +{"$label":"ACTS_IN","name":"Mrs. Cooper","type":"Role","_key":"113991","_from":"13737","_to":"67129"} +{"$label":"ACTS_IN","name":"Miss Wetherby","type":"Role","_key":"70011","_from":"13737","_to":"42694"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"25475","_from":"13737","_to":"18370"} +{"$label":"ACTS_IN","name":"Motorist","type":"Role","_key":"18572","_from":"13742","_to":"13738"} +{"$label":"ACTS_IN","name":"Flower Seller","type":"Role","_key":"18571","_from":"13741","_to":"13738"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"18569","_from":"13740","_to":"13738"} +{"$label":"DIRECTED","_key":"18567","_from":"13739","_to":"13738"} +{"$label":"DIRECTED","_key":"62910","_from":"13739","_to":"39516"} +{"$label":"DIRECTED","_key":"57354","_from":"13739","_to":"36365"} +{"$label":"ACTS_IN","name":"Norman Foster","type":"Role","_key":"41948","_from":"13742","_to":"28107"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"18582","_from":"13749","_to":"13743"} +{"$label":"ACTS_IN","name":"Andy Eckelmamm","type":"Role","_key":"18581","_from":"13748","_to":"13743"} +{"$label":"ACTS_IN","name":"Capitain","type":"Role","_key":"18580","_from":"13747","_to":"13743"} +{"$label":"ACTS_IN","name":"Tino","type":"Role","_key":"18579","_from":"13746","_to":"13743"} +{"$label":"ACTS_IN","name":"Robby","type":"Role","_key":"18578","_from":"13745","_to":"13743"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"18577","_from":"13744","_to":"13743"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19178","_from":"13744","_to":"14172"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41213","_from":"13747","_to":"27727"} +{"$label":"ACTS_IN","name":"Scheich Abdallha","type":"Role","_key":"34275","_from":"13747","_to":"23524"} +{"$label":"ACTS_IN","name":"Whispering Prince","type":"Role","_key":"18591","_from":"13758","_to":"13750"} +{"$label":"ACTS_IN","name":"Striding","type":"Role","_key":"18590","_from":"13757","_to":"13750"} +{"$label":"ACTS_IN","name":"Frost","type":"Role","_key":"18589","_from":"13756","_to":"13750"} +{"$label":"ACTS_IN","name":"Muse","type":"Role","_key":"18588","_from":"13755","_to":"13750"} +{"$label":"ACTS_IN","name":"Charity","type":"Role","_key":"18587","_from":"13754","_to":"13750"} +{"$label":"ACTS_IN","name":"Whispering Wind","type":"Role","_key":"18585","_from":"13753","_to":"13750"} +{"$label":"ACTS_IN","name":"Striding Cloud","type":"Role","_key":"18584","_from":"13752","_to":"13750"} +{"$label":"DIRECTED","_key":"18583","_from":"13751","_to":"13750"} +{"$label":"DIRECTED","_key":"117894","_from":"13751","_to":"69301"} +{"$label":"DIRECTED","_key":"109129","_from":"13751","_to":"64472"} +{"$label":"DIRECTED","_key":"99567","_from":"13751","_to":"58693"} +{"$label":"DIRECTED","_key":"98746","_from":"13751","_to":"58191"} +{"$label":"DIRECTED","_key":"71272","_from":"13751","_to":"43242"} +{"$label":"DIRECTED","_key":"65700","_from":"13751","_to":"40692"} +{"$label":"ACTS_IN","name":"Chow Cheung-sheng","type":"Role","_key":"73000","_from":"13752","_to":"43934"} +{"$label":"ACTS_IN","name":"Reeve","type":"Role","_key":"112295","_from":"13753","_to":"66303"} +{"$label":"ACTS_IN","name":"King Sky","type":"Role","_key":"108733","_from":"13753","_to":"64278"} +{"$label":"ACTS_IN","name":"Cameo appearance","type":"Role","_key":"66262","_from":"13753","_to":"40989"} +{"$label":"ACTS_IN","name":"Man in Car Crash","type":"Role","_key":"62061","_from":"13753","_to":"39077"} +{"$label":"ACTS_IN","name":"Sai Fung","type":"Role","_key":"117892","_from":"13755","_to":"69301"} +{"$label":"ACTS_IN","name":"Xiaoxiao Liang","type":"Role","_key":"115458","_from":"13755","_to":"67979"} +{"$label":"ACTS_IN","name":"Ai Lin","type":"Role","_key":"103304","_from":"13755","_to":"60775"} +{"$label":"ACTS_IN","name":"May \/ Ah Mei \/ Jing","type":"Role","_key":"70617","_from":"13755","_to":"42971"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"70610","_from":"13755","_to":"42964"} +{"$label":"ACTS_IN","name":"Bu","type":"Role","_key":"66932","_from":"13755","_to":"41322"} +{"$label":"ACTS_IN","name":"J.J.","type":"Role","_key":"62152","_from":"13755","_to":"39140"} +{"$label":"ACTS_IN","name":"Lai","type":"Role","_key":"29631","_from":"13755","_to":"20977"} +{"$label":"ACTS_IN","name":"Po Kwong","type":"Role","_key":"117243","_from":"13757","_to":"68965"} +{"$label":"ACTS_IN","name":"Dr. Yang","type":"Role","_key":"91504","_from":"13757","_to":"53944"} +{"$label":"ACTS_IN","name":"Zhao Kuang","type":"Role","_key":"71320","_from":"13757","_to":"43260"} +{"$label":"ACTS_IN","name":"Smiley's lover","type":"Role","_key":"115462","_from":"13758","_to":"67979"} +{"$label":"ACTS_IN","name":"Inspektor Jensen","type":"Role","_key":"18598","_from":"13765","_to":"13759"} +{"$label":"ACTS_IN","name":"Schl\u00e4ger #1","type":"Role","_key":"18597","_from":"13764","_to":"13759"} +{"$label":"ACTS_IN","name":"\u00d6ko #1","type":"Role","_key":"18596","_from":"13763","_to":"13759"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"18595","_from":"13762","_to":"13759"} +{"$label":"ACTS_IN","name":"Hartmut","type":"Role","_key":"18594","_from":"13761","_to":"13759"} +{"$label":"ACTS_IN","name":"Harry Schwerdtfeger","type":"Role","_key":"18593","_from":"13760","_to":"13759"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"18609","_from":"13775","_to":"13766"} +{"$label":"ACTS_IN","name":"Madalena","type":"Role","_key":"18608","_from":"13774","_to":"13766"} +{"$label":"ACTS_IN","name":"Mendez","type":"Role","_key":"18607","_from":"13773","_to":"13766"} +{"$label":"ACTS_IN","name":"Soo Da Chen","type":"Role","_key":"18606","_from":"13772","_to":"13766"} +{"$label":"ACTS_IN","name":"Melvin Johnson","type":"Role","_key":"18605","_from":"13771","_to":"13766"} +{"$label":"ACTS_IN","name":"Matthew Johnson","type":"Role","_key":"18604","_from":"13770","_to":"13766"} +{"$label":"ACTS_IN","name":"Mi Ling Fong","type":"Role","_key":"18602","_from":"13769","_to":"13766"} +{"$label":"ACTS_IN","name":"Cleopatra Jones","type":"Role","_key":"18600","_from":"13768","_to":"13766"} +{"$label":"DIRECTED","_key":"18599","_from":"13767","_to":"13766"} +{"$label":"ACTS_IN","name":"Aja","type":"Role","_key":"18617","_from":"13781","_to":"13776"} +{"$label":"ACTS_IN","name":"Uncle Tai","type":"Role","_key":"18616","_from":"13780","_to":"13776"} +{"$label":"ACTS_IN","name":"Mister Big","type":"Role","_key":"18615","_from":"13779","_to":"13776"} +{"$label":"ACTS_IN","name":"Lupo","type":"Role","_key":"18614","_from":"13778","_to":"13776"} +{"$label":"DIRECTED","_key":"18610","_from":"13777","_to":"13776"} +{"$label":"DIRECTED","_key":"65875","_from":"13777","_to":"40763"} +{"$label":"ACTS_IN","name":"Pachenko","type":"Role","_key":"63598","_from":"13778","_to":"39790"} +{"$label":"ACTS_IN","name":"Cato","type":"Role","_key":"89140","_from":"13780","_to":"52801"} +{"$label":"ACTS_IN","name":"Cato Fong","type":"Role","_key":"72327","_from":"13780","_to":"43680"} +{"$label":"ACTS_IN","name":"Cato Fong","type":"Role","_key":"41616","_from":"13780","_to":"27943"} +{"$label":"ACTS_IN","name":"Martin Landau","type":"Role","_key":"18626","_from":"13785","_to":"13782"} +{"$label":"ACTS_IN","name":"Hedda Hopper","type":"Role","_key":"18624","_from":"13784","_to":"13782"} +{"$label":"ACTS_IN","name":"Pier Angeli","type":"Role","_key":"18622","_from":"13783","_to":"13782"} +{"$label":"ACTS_IN","name":"Renata","type":"Role","_key":"89355","_from":"13783","_to":"52887"} +{"$label":"ACTS_IN","name":"Cissie Colpitts","type":"Role","_key":"25904","_from":"13783","_to":"18639"} +{"$label":"ACTS_IN","name":"Cissie Colpitts","type":"Role","_key":"25876","_from":"13783","_to":"18633"} +{"$label":"ACTS_IN","name":"Cissie Colpitts","type":"Role","_key":"25819","_from":"13783","_to":"18581"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18695","_from":"13840","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18694","_from":"13839","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18693","_from":"13838","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18692","_from":"13837","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18691","_from":"13836","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18690","_from":"13835","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18689","_from":"13834","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18688","_from":"13833","_to":"13787"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"18687","_from":"13832","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18686","_from":"13831","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18685","_from":"13830","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18684","_from":"13829","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18683","_from":"13828","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18682","_from":"13827","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18681","_from":"13826","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18680","_from":"13825","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18679","_from":"13824","_to":"13787"} +{"$label":"ACTS_IN","name":"Witness for Peace","type":"Role","_key":"18678","_from":"13823","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18677","_from":"13822","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18676","_from":"13821","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18675","_from":"13820","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18674","_from":"13819","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18673","_from":"13818","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18672","_from":"13817","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18671","_from":"13816","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18670","_from":"13815","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18669","_from":"13814","_to":"13787"} +{"$label":"ACTS_IN","name":"Brigadista","type":"Role","_key":"18668","_from":"13813","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #10","type":"Role","_key":"18667","_from":"13812","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #9","type":"Role","_key":"18666","_from":"13811","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #8","type":"Role","_key":"18665","_from":"13810","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #7","type":"Role","_key":"18664","_from":"13809","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #6","type":"Role","_key":"18663","_from":"13808","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #5","type":"Role","_key":"18662","_from":"13807","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #4","type":"Role","_key":"18661","_from":"13806","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #3","type":"Role","_key":"18660","_from":"13805","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #2","type":"Role","_key":"18659","_from":"13804","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Family #1","type":"Role","_key":"18658","_from":"13803","_to":"13787"} +{"$label":"ACTS_IN","name":"Vocals","type":"Role","_key":"18657","_from":"13802","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla's Mother","type":"Role","_key":"18656","_from":"13801","_to":"13787"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"18655","_from":"13800","_to":"13787"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"18654","_from":"13799","_to":"13787"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"18653","_from":"13798","_to":"13787"} +{"$label":"ACTS_IN","name":"Hospital Sister","type":"Role","_key":"18652","_from":"13797","_to":"13787"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"18651","_from":"13796","_to":"13787"} +{"$label":"ACTS_IN","name":"Keyboard Player","type":"Role","_key":"18649","_from":"13795","_to":"13787"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"18648","_from":"13794","_to":"13787"} +{"$label":"ACTS_IN","name":"McGurk","type":"Role","_key":"18647","_from":"13793","_to":"13787"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"18646","_from":"13792","_to":"13787"} +{"$label":"ACTS_IN","name":"George's Mother","type":"Role","_key":"18644","_from":"13791","_to":"13787"} +{"$label":"ACTS_IN","name":"Rafael","type":"Role","_key":"18643","_from":"13790","_to":"13787"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"18642","_from":"13789","_to":"13787"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"18640","_from":"13788","_to":"13787"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"48244","_from":"13789","_to":"31694"} +{"$label":"ACTS_IN","name":"Dr. Green","type":"Role","_key":"18702","_from":"13844","_to":"13841"} +{"$label":"ACTS_IN","name":"Bingo Caller","type":"Role","_key":"18699","_from":"13843","_to":"13841"} +{"$label":"DIRECTED","_key":"18696","_from":"13842","_to":"13841"} +{"$label":"DIRECTED","_key":"113372","_from":"13842","_to":"66785"} +{"$label":"DIRECTED","_key":"103422","_from":"13842","_to":"60838"} +{"$label":"DIRECTED","_key":"66777","_from":"13842","_to":"41256"} +{"$label":"ACTS_IN","name":"Sue Maclean","type":"Role","_key":"53542","_from":"13843","_to":"34562"} +{"$label":"ACTS_IN","name":"A.J. Ferguson","type":"Role","_key":"66533","_from":"13844","_to":"41127"} +{"$label":"ACTS_IN","name":"Betsy the Cow","type":"Role","_key":"58981","_from":"13844","_to":"37240"} +{"$label":"ACTS_IN","name":"Dixie","type":"Role","_key":"58371","_from":"13844","_to":"36888"} +{"$label":"ACTS_IN","name":"Heather Gummer","type":"Role","_key":"53361","_from":"13844","_to":"34487"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18716","_from":"13854","_to":"13845"} +{"$label":"ACTS_IN","name":"Agent","type":"Role","_key":"18715","_from":"13853","_to":"13845"} +{"$label":"ACTS_IN","name":"Mephisto","type":"Role","_key":"18714","_from":"13852","_to":"13845"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18712","_from":"13851","_to":"13845"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18710","_from":"13850","_to":"13845"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18709","_from":"13849","_to":"13845"} +{"$label":"ACTS_IN","name":"Blomer","type":"Role","_key":"18708","_from":"13848","_to":"13845"} +{"$label":"ACTS_IN","name":"Stevie Dromburgh","type":"Role","_key":"18706","_from":"13847","_to":"13845"} +{"$label":"ACTS_IN","name":"Tina Lehmann","type":"Role","_key":"18705","_from":"13846","_to":"13845"} +{"$label":"ACTS_IN","name":"Klaus Nissen","type":"Role","_key":"72948","_from":"13848","_to":"43917"} +{"$label":"ACTS_IN","name":"Werner Wiesenkamp","type":"Role","_key":"52609","_from":"13848","_to":"34185"} +{"$label":"ACTS_IN","name":"Theo Hartmann","type":"Role","_key":"42942","_from":"13848","_to":"28693"} +{"$label":"ACTS_IN","name":"Eckis Vater","type":"Role","_key":"40005","_from":"13848","_to":"27014"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18940","_from":"13849","_to":"13986"} +{"$label":"ACTS_IN","name":"Herr R.","type":"Role","_key":"62510","_from":"13852","_to":"39360"} +{"$label":"ACTS_IN","name":"Intendant","type":"Role","_key":"33456","_from":"13852","_to":"23146"} +{"$label":"ACTS_IN","name":"Rado","type":"Role","_key":"33392","_from":"13852","_to":"23111"} +{"$label":"ACTS_IN","name":"Dr. Krokowski","type":"Role","_key":"29576","_from":"13852","_to":"20940"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"68297","_from":"13853","_to":"41927"} +{"$label":"ACTS_IN","name":"Carli\/Daddy Cool","type":"Role","_key":"51317","_from":"13853","_to":"33466"} +{"$label":"ACTS_IN","name":"Dr. Steiner","type":"Role","_key":"42282","_from":"13853","_to":"28312"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"40092","_from":"13853","_to":"27060"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"40001","_from":"13853","_to":"27014"} +{"$label":"ACTS_IN","name":"Ulrich","type":"Role","_key":"31909","_from":"13853","_to":"22256"} +{"$label":"ACTS_IN","name":"Herr Wehsal","type":"Role","_key":"29578","_from":"13853","_to":"20940"} +{"$label":"ACTS_IN","name":"Zacher","type":"Role","_key":"20528","_from":"13853","_to":"15010"} +{"$label":"ACTS_IN","name":"Sandman Williams","type":"Role","_key":"18724","_from":"13857","_to":"13856"} +{"$label":"ACTS_IN","name":"Max Washington","type":"Role","_key":"109529","_from":"13857","_to":"64698"} +{"$label":"ACTS_IN","name":"Raymond Greenwood","type":"Role","_key":"106940","_from":"13857","_to":"63051"} +{"$label":"ACTS_IN","name":"Ray Hughes","type":"Role","_key":"105495","_from":"13857","_to":"62082"} +{"$label":"ACTS_IN","name":"Roller skater","type":"Role","_key":"72641","_from":"13857","_to":"43777"} +{"$label":"ACTS_IN","name":"Sergeant Cass","type":"Role","_key":"72415","_from":"13857","_to":"43716"} +{"$label":"ACTS_IN","name":"Whittington","type":"Role","_key":"65268","_from":"13857","_to":"40513"} +{"$label":"ACTS_IN","name":"Josephus","type":"Role","_key":"61308","_from":"13857","_to":"38701"} +{"$label":"ACTS_IN","name":"Richter Burnham","type":"Role","_key":"18733","_from":"13860","_to":"13858"} +{"$label":"DIRECTED","_key":"18726","_from":"13859","_to":"13858"} +{"$label":"DIRECTED","_key":"91466","_from":"13859","_to":"53932"} +{"$label":"DIRECTED","_key":"68427","_from":"13859","_to":"41974"} +{"$label":"DIRECTED","_key":"54879","_from":"13859","_to":"35093"} +{"$label":"DIRECTED","_key":"45451","_from":"13859","_to":"30115"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"18746","_from":"13868","_to":"13862"} +{"$label":"ACTS_IN","name":"The Mayor Alexander Genkov","type":"Role","_key":"18745","_from":"13867","_to":"13862"} +{"$label":"ACTS_IN","name":"Uri","type":"Role","_key":"18744","_from":"13866","_to":"13862"} +{"$label":"ACTS_IN","name":"Yegor","type":"Role","_key":"18743","_from":"13865","_to":"13862"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"18741","_from":"13864","_to":"13862"} +{"$label":"ACTS_IN","name":"Tatoya","type":"Role","_key":"18739","_from":"13863","_to":"13862"} +{"$label":"ACTS_IN","name":"Yadira","type":"Role","_key":"36112","_from":"13863","_to":"24499"} +{"$label":"ACTS_IN","name":"Jenny Nilson","type":"Role","_key":"24693","_from":"13863","_to":"17858"} +{"$label":"ACTS_IN","name":"Bull Foreman","type":"Role","_key":"66283","_from":"13867","_to":"40999"} +{"$label":"ACTS_IN","name":"Zhukov","type":"Role","_key":"105920","_from":"13868","_to":"62361"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"18754","_from":"13875","_to":"13869"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"18753","_from":"13874","_to":"13869"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"18751","_from":"13873","_to":"13869"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"18750","_from":"13872","_to":"13869"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"18749","_from":"13871","_to":"13869"} +{"$label":"DIRECTED","_key":"18747","_from":"13870","_to":"13869"} +{"$label":"DIRECTED","_key":"101469","_from":"13870","_to":"59726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120591","_from":"13874","_to":"70825"} +{"$label":"ACTS_IN","name":"The Driver","type":"Role","_key":"18762","_from":"13878","_to":"13876"} +{"$label":"ACTS_IN","name":"Glasses","type":"Role","_key":"18761","_from":"13877","_to":"13876"} +{"$label":"ACTS_IN","name":"Vibes","type":"Role","_key":"118770","_from":"13877","_to":"69835"} +{"$label":"ACTS_IN","name":"Gregory Stark","type":"Role","_key":"107492","_from":"13878","_to":"63424"} +{"$label":"ACTS_IN","name":"Bill Gluckman","type":"Role","_key":"94369","_from":"13878","_to":"55568"} +{"$label":"ACTS_IN","name":"Cary Launer","type":"Role","_key":"69981","_from":"13878","_to":"42688"} +{"$label":"ACTS_IN","name":"Moses Pray","type":"Role","_key":"68960","_from":"13878","_to":"42221"} +{"$label":"ACTS_IN","name":"Oliver Barrett IV","type":"Role","_key":"52350","_from":"13878","_to":"34075"} +{"$label":"ACTS_IN","name":"Howard Bannister","type":"Role","_key":"45258","_from":"13878","_to":"30037"} +{"$label":"ACTS_IN","name":"Brig. Gen. James M. Gavin","type":"Role","_key":"40266","_from":"13878","_to":"27164"} +{"$label":"ACTS_IN","name":"Barry Lyndon","type":"Role","_key":"26494","_from":"13878","_to":"19048"} +{"$label":"ACTS_IN","name":"Philip Train","type":"Role","_key":"25391","_from":"13878","_to":"18305"} +{"$label":"ACTS_IN","name":"Michael C. Gotier","type":"Role","_key":"18770","_from":"13885","_to":"13879"} +{"$label":"ACTS_IN","name":"Dreyfuss Steiner","type":"Role","_key":"18769","_from":"13884","_to":"13879"} +{"$label":"ACTS_IN","name":"Alex McInny","type":"Role","_key":"18768","_from":"13883","_to":"13879"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"18767","_from":"13882","_to":"13879"} +{"$label":"ACTS_IN","name":"Glies Stewart","type":"Role","_key":"18765","_from":"13881","_to":"13879"} +{"$label":"DIRECTED","_key":"18763","_from":"13880","_to":"13879"} +{"$label":"ACTS_IN","name":"Mr. Rollins","type":"Role","_key":"96474","_from":"13884","_to":"56725"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"18788","_from":"13891","_to":"13887"} +{"$label":"ACTS_IN","name":"Peg Wallace","type":"Role","_key":"18787","_from":"13890","_to":"13887"} +{"$label":"ACTS_IN","name":"Jennifer Vance","type":"Role","_key":"18785","_from":"13889","_to":"13887"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"18783","_from":"13888","_to":"13887"} +{"$label":"ACTS_IN","name":"Janie","type":"Role","_key":"49672","_from":"13888","_to":"32500"} +{"$label":"ACTS_IN","name":"Stu Rubin","type":"Role","_key":"110298","_from":"13891","_to":"65177"} +{"$label":"ACTS_IN","name":"Will Robinson","type":"Role","_key":"18797","_from":"13895","_to":"13892"} +{"$label":"ACTS_IN","name":"Penny Robinson","type":"Role","_key":"18796","_from":"13894","_to":"13892"} +{"$label":"ACTS_IN","name":"Maj. Don West","type":"Role","_key":"18793","_from":"13893","_to":"13892"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"54069","_from":"13893","_to":"34775"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"36994","_from":"13893","_to":"25075"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"36578","_from":"13893","_to":"24794"} +{"$label":"ACTS_IN","name":"Jason Gibbons","type":"Role","_key":"31006","_from":"13893","_to":"21713"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"121180","_from":"13894","_to":"71181"} +{"$label":"ACTS_IN","name":"Meg Cummings","type":"Role","_key":"102792","_from":"13894","_to":"60470"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"90255","_from":"13894","_to":"53362"} +{"$label":"ACTS_IN","name":"Amanda Becker","type":"Role","_key":"69609","_from":"13894","_to":"42492"} +{"$label":"ACTS_IN","name":"Gretchen Wieners","type":"Role","_key":"64679","_from":"13894","_to":"40287"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"55340","_from":"13894","_to":"35281"} +{"$label":"ACTS_IN","name":"Lt. Danny Romano","type":"Role","_key":"18806","_from":"13901","_to":"13896"} +{"$label":"ACTS_IN","name":"Miguel Alvares","type":"Role","_key":"18805","_from":"13900","_to":"13896"} +{"$label":"ACTS_IN","name":"Cap. Lee Crane","type":"Role","_key":"18804","_from":"13899","_to":"13896"} +{"$label":"ACTS_IN","name":"Lt. Cathy Conners","type":"Role","_key":"18802","_from":"13898","_to":"13896"} +{"$label":"DIRECTED","_key":"18799","_from":"13897","_to":"13896"} +{"$label":"DIRECTED","_key":"24675","_from":"13897","_to":"17851"} +{"$label":"ACTS_IN","name":"Roslyn Pierce","type":"Role","_key":"116895","_from":"13898","_to":"68818"} +{"$label":"ACTS_IN","name":"Nurse Laura Rogers","type":"Role","_key":"35364","_from":"13898","_to":"24074"} +{"$label":"ACTS_IN","name":"Daphne St. Claire","type":"Role","_key":"32898","_from":"13898","_to":"22825"} +{"$label":"ACTS_IN","name":"Mr. Freeze","type":"Role","_key":"105977","_from":"13900","_to":"62398"} +{"$label":"ACTS_IN","name":"Ptince Dragna","type":"Role","_key":"46939","_from":"13900","_to":"30954"} +{"$label":"ACTS_IN","name":"Taskmaster","type":"Role","_key":"44976","_from":"13900","_to":"29886"} +{"$label":"ACTS_IN","name":"Smitty","type":"Role","_key":"68554","_from":"13901","_to":"42033"} +{"$label":"ACTS_IN","name":"Jan Benes","type":"Role","_key":"18818","_from":"13903","_to":"13902"} +{"$label":"ACTS_IN","name":"Vaughn","type":"Role","_key":"18829","_from":"13911","_to":"13904"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"18828","_from":"13910","_to":"13904"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"18827","_from":"13909","_to":"13904"} +{"$label":"ACTS_IN","name":"Col. Leo Vitelli","type":"Role","_key":"18826","_from":"13908","_to":"13904"} +{"$label":"ACTS_IN","name":"Col. Andrew Brynner","type":"Role","_key":"18824","_from":"13907","_to":"13904"} +{"$label":"ACTS_IN","name":"Tim Mason","type":"Role","_key":"18823","_from":"13906","_to":"13904"} +{"$label":"DIRECTED","_key":"18821","_from":"13905","_to":"13904"} +{"$label":"ACTS_IN","name":"Kevin Mitnick","type":"Role","_key":"63258","_from":"13906","_to":"39660"} +{"$label":"ACTS_IN","name":"Chris Hooker","type":"Role","_key":"52556","_from":"13906","_to":"34163"} +{"$label":"ACTS_IN","name":"Danny Boudreaux","type":"Role","_key":"50672","_from":"13906","_to":"33080"} +{"$label":"ACTS_IN","name":"Dobbs","type":"Role","_key":"32933","_from":"13906","_to":"22843"} +{"$label":"ACTS_IN","name":"Billy Loomis","type":"Role","_key":"30264","_from":"13906","_to":"21306"} +{"$label":"ACTS_IN","name":"Vincent Lopiano","type":"Role","_key":"24163","_from":"13906","_to":"17512"} +{"$label":"ACTS_IN","name":"Lord Northcliffe","type":"Role","_key":"104635","_from":"13907","_to":"61552"} +{"$label":"ACTS_IN","name":"Col. Colin Caine","type":"Role","_key":"72959","_from":"13907","_to":"43920"} +{"$label":"ACTS_IN","name":"Red (voice)","type":"Role","_key":"68099","_from":"13907","_to":"41826"} +{"$label":"ACTS_IN","name":"Angel Clare","type":"Role","_key":"67993","_from":"13907","_to":"41780"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"57157","_from":"13907","_to":"36271"} +{"$label":"ACTS_IN","name":"Vic Trenton","type":"Role","_key":"63637","_from":"13908","_to":"39810"} +{"$label":"ACTS_IN","name":"Wallace Evans","type":"Role","_key":"52764","_from":"13908","_to":"34232"} +{"$label":"ACTS_IN","name":"Taylor Gordon","type":"Role","_key":"45470","_from":"13909","_to":"30120"} +{"$label":"ACTS_IN","name":"Ranger Francis Gage","type":"Role","_key":"45327","_from":"13909","_to":"30059"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"18836","_from":"13913","_to":"13912"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"121687","_from":"13913","_to":"71490"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"113468","_from":"13913","_to":"66857"} +{"$label":"ACTS_IN","name":"Rodney","type":"Role","_key":"98989","_from":"13913","_to":"58316"} +{"$label":"ACTS_IN","name":"Charlie Kopetski","type":"Role","_key":"72463","_from":"13913","_to":"43727"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"49556","_from":"13913","_to":"32447"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"44028","_from":"13913","_to":"29363"} +{"$label":"ACTS_IN","name":"Bill Wentz","type":"Role","_key":"27685","_from":"13913","_to":"19835"} +{"$label":"ACTS_IN","name":"Ra","type":"Role","_key":"18849","_from":"13918","_to":"13914"} +{"$label":"ACTS_IN","name":"Anubis","type":"Role","_key":"18848","_from":"13917","_to":"13914"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"18844","_from":"13916","_to":"13914"} +{"$label":"ACTS_IN","name":"Skaara","type":"Role","_key":"18843","_from":"13915","_to":"13914"} +{"$label":"ACTS_IN","name":"Heyman","type":"Role","_key":"58530","_from":"13915","_to":"36982"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"31212","_from":"13915","_to":"21841"} +{"$label":"ACTS_IN","name":"Nurse X","type":"Role","_key":"70887","_from":"13916","_to":"43072"} +{"$label":"ACTS_IN","name":"Aunt Rosa Koslov","type":"Role","_key":"38612","_from":"13916","_to":"26084"} +{"$label":"ACTS_IN","name":"Dil","type":"Role","_key":"69542","_from":"13918","_to":"42469"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"18856","_from":"13921","_to":"13919"} +{"$label":"DIRECTED","_key":"18850","_from":"13920","_to":"13919"} +{"$label":"DIRECTED","_key":"113352","_from":"13920","_to":"66775"} +{"$label":"DIRECTED","_key":"108874","_from":"13920","_to":"64343"} +{"$label":"DIRECTED","_key":"18857","_from":"13923","_to":"13922"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"18873","_from":"13932","_to":"13924"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"18872","_from":"13931","_to":"13924"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"18871","_from":"13930","_to":"13924"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"18870","_from":"13929","_to":"13924"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"18869","_from":"13928","_to":"13924"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"18868","_from":"13927","_to":"13924"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"18867","_from":"13926","_to":"13924"} +{"$label":"DIRECTED","_key":"18865","_from":"13925","_to":"13924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18885","_from":"13942","_to":"13933"} +{"$label":"ACTS_IN","name":"Hartmut Metzger","type":"Role","_key":"18884","_from":"13941","_to":"13933"} +{"$label":"ACTS_IN","name":"Ilse Grabowski","type":"Role","_key":"18882","_from":"13940","_to":"13933"} +{"$label":"ACTS_IN","name":"Heinz Grabowski","type":"Role","_key":"18881","_from":"13939","_to":"13933"} +{"$label":"ACTS_IN","name":"Kerstin","type":"Role","_key":"18878","_from":"13938","_to":"13933"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"18877","_from":"13937","_to":"13933"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"18876","_from":"13936","_to":"13933"} +{"$label":"ACTS_IN","name":"Manfred \" Fred \" Grabowski","type":"Role","_key":"18875","_from":"13935","_to":"13933"} +{"$label":"DIRECTED","_key":"18874","_from":"13934","_to":"13933"} +{"$label":"DIRECTED","_key":"71592","_from":"13934","_to":"43365"} +{"$label":"DIRECTED","_key":"52854","_from":"13934","_to":"34257"} +{"$label":"DIRECTED","_key":"46825","_from":"13934","_to":"30889"} +{"$label":"ACTS_IN","name":"GeGe M\u00fcller","type":"Role","_key":"67886","_from":"13935","_to":"41712"} +{"$label":"ACTS_IN","name":"Elly","type":"Role","_key":"67632","_from":"13936","_to":"41622"} +{"$label":"ACTS_IN","name":"Maya Kroner","type":"Role","_key":"57876","_from":"13936","_to":"36622"} +{"$label":"ACTS_IN","name":"Nachtclub S\u00e4ngerin","type":"Role","_key":"49109","_from":"13936","_to":"32177"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"40914","_from":"13936","_to":"27527"} +{"$label":"ACTS_IN","name":"Betti","type":"Role","_key":"39651","_from":"13936","_to":"26800"} +{"$label":"ACTS_IN","name":"Kommissarie Sperling","type":"Role","_key":"98611","_from":"13939","_to":"58110"} +{"$label":"ACTS_IN","name":"Pit Brinkmann","type":"Role","_key":"43748","_from":"13939","_to":"29215"} +{"$label":"ACTS_IN","name":"Hauptkommissar Paule Pietsch","type":"Role","_key":"31933","_from":"13939","_to":"22274"} +{"$label":"ACTS_IN","name":"Afra","type":"Role","_key":"43104","_from":"13940","_to":"28790"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"19010","_from":"13940","_to":"14038"} +{"$label":"ACTS_IN","name":"Birgit L\u00fcckert","type":"Role","_key":"18983","_from":"13940","_to":"14031"} +{"$label":"ACTS_IN","name":"Showmaster Thilo Uhlenhorst","type":"Role","_key":"37326","_from":"13941","_to":"25288"} +{"$label":"ACTS_IN","name":"Maite","type":"Role","_key":"18892","_from":"13950","_to":"13943"} +{"$label":"ACTS_IN","name":"Daniel Dalbret","type":"Role","_key":"18891","_from":"13949","_to":"13943"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"18890","_from":"13948","_to":"13943"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"18889","_from":"13947","_to":"13943"} +{"$label":"ACTS_IN","name":"Lolo","type":"Role","_key":"18888","_from":"13946","_to":"13943"} +{"$label":"DIRECTED","_key":"18887","_from":"13945","_to":"13943"} +{"$label":"DIRECTED","_key":"18886","_from":"13944","_to":"13943"} +{"$label":"ACTS_IN","name":"Marianne Galmot","type":"Role","_key":"35874","_from":"13947","_to":"24357"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"18902","_from":"13956","_to":"13951"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"18900","_from":"13955","_to":"13951"} +{"$label":"ACTS_IN","name":"McKinley","type":"Role","_key":"18898","_from":"13954","_to":"13951"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"18897","_from":"13953","_to":"13951"} +{"$label":"DIRECTED","_key":"18894","_from":"13952","_to":"13951"} +{"$label":"DIRECTED","_key":"104154","_from":"13952","_to":"61278"} +{"$label":"DIRECTED","_key":"93181","_from":"13952","_to":"54908"} +{"$label":"ACTS_IN","name":"Charlene \"Charlie\" McGee","type":"Role","_key":"121152","_from":"13953","_to":"71172"} +{"$label":"ACTS_IN","name":"Jessica \u201aJesse\u2018 Reeves","type":"Role","_key":"73122","_from":"13953","_to":"43980"} +{"$label":"ACTS_IN","name":"Connie Moreau","type":"Role","_key":"68252","_from":"13953","_to":"41905"} +{"$label":"ACTS_IN","name":"Connie Moreau","type":"Role","_key":"65025","_from":"13953","_to":"40406"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"93159","_from":"13954","_to":"54901"} +{"$label":"DIRECTED","_key":"47311","_from":"13954","_to":"31163"} +{"$label":"ACTS_IN","name":"Steve Peters","type":"Role","_key":"98702","_from":"13955","_to":"58170"} +{"$label":"ACTS_IN","name":"Bodyguard #2","type":"Role","_key":"116988","_from":"13956","_to":"68856"} +{"$label":"ACTS_IN","name":"Hal Jordan (voice)","type":"Role","_key":"112265","_from":"13956","_to":"66293"} +{"$label":"ACTS_IN","name":"Jack Willis","type":"Role","_key":"99636","_from":"13956","_to":"58740"} +{"$label":"ACTS_IN","name":"Grand Wizard","type":"Role","_key":"93977","_from":"13956","_to":"55341"} +{"$label":"ACTS_IN","name":"Johnnie Marzzone","type":"Role","_key":"53008","_from":"13956","_to":"34330"} +{"$label":"ACTS_IN","name":"Coach Bob Kelly","type":"Role","_key":"34107","_from":"13956","_to":"23435"} +{"$label":"DIRECTED","_key":"18917","_from":"13971","_to":"13957"} +{"$label":"ACTS_IN","name":"Sierge","type":"Role","_key":"18916","_from":"13970","_to":"13957"} +{"$label":"ACTS_IN","name":"Diemis","type":"Role","_key":"18915","_from":"13969","_to":"13957"} +{"$label":"ACTS_IN","name":"Aigin's Mother","type":"Role","_key":"18914","_from":"13968","_to":"13957"} +{"$label":"ACTS_IN","name":"Varia","type":"Role","_key":"18913","_from":"13967","_to":"13957"} +{"$label":"ACTS_IN","name":"Sahve","type":"Role","_key":"18912","_from":"13966","_to":"13957"} +{"$label":"ACTS_IN","name":"Tchude Strongman","type":"Role","_key":"18911","_from":"13965","_to":"13957"} +{"$label":"ACTS_IN","name":"Tchude Interpreter","type":"Role","_key":"18910","_from":"13964","_to":"13957"} +{"$label":"ACTS_IN","name":"Tchude with Scar","type":"Role","_key":"18909","_from":"13963","_to":"13957"} +{"$label":"ACTS_IN","name":"Dorakas","type":"Role","_key":"18908","_from":"13962","_to":"13957"} +{"$label":"ACTS_IN","name":"Siida-Isit","type":"Role","_key":"18907","_from":"13961","_to":"13957"} +{"$label":"ACTS_IN","name":"Raste","type":"Role","_key":"18906","_from":"13960","_to":"13957"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"18905","_from":"13959","_to":"13957"} +{"$label":"ACTS_IN","name":"Tchude Chief","type":"Role","_key":"18904","_from":"13958","_to":"13957"} +{"$label":"ACTS_IN","name":"Thor","type":"Role","_key":"110199","_from":"13963","_to":"65127"} +{"$label":"ACTS_IN","name":"Ruths assistent","type":"Role","_key":"93505","_from":"13970","_to":"55052"} +{"$label":"DIRECTED","_key":"93508","_from":"13971","_to":"55052"} +{"$label":"ACTS_IN","name":"Off. Clemmons","type":"Role","_key":"18926","_from":"13979","_to":"13972"} +{"$label":"ACTS_IN","name":"Grandpa Morton","type":"Role","_key":"18925","_from":"13978","_to":"13972"} +{"$label":"ACTS_IN","name":"Andrea Parker","type":"Role","_key":"18923","_from":"13977","_to":"13972"} +{"$label":"ACTS_IN","name":"Emily Miller","type":"Role","_key":"18922","_from":"13976","_to":"13972"} +{"$label":"ACTS_IN","name":"Artie Wilson","type":"Role","_key":"18920","_from":"13975","_to":"13972"} +{"$label":"DIRECTED","_key":"18919","_from":"13974","_to":"13972"} +{"$label":"DIRECTED","_key":"18918","_from":"13973","_to":"13972"} +{"$label":"ACTS_IN","name":"Mary-Margaret","type":"Role","_key":"92837","_from":"13976","_to":"54766"} +{"$label":"ACTS_IN","name":"Ned Slinker","type":"Role","_key":"121047","_from":"13978","_to":"71084"} +{"$label":"ACTS_IN","name":"Mayor Conrad Zwart","type":"Role","_key":"95948","_from":"13978","_to":"56416"} +{"$label":"ACTS_IN","name":"Peterson","type":"Role","_key":"119950","_from":"13979","_to":"70452"} +{"$label":"ACTS_IN","name":"Dutch Doogan","type":"Role","_key":"31903","_from":"13979","_to":"22252"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18929","_from":"13982","_to":"13980"} +{"$label":"DIRECTED","_key":"18928","_from":"13981","_to":"13980"} +{"$label":"DIRECTED","_key":"18935","_from":"13985","_to":"13983"} +{"$label":"ACTS_IN","name":"Ruby Baker","type":"Role","_key":"18930","_from":"13984","_to":"13983"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"100750","_from":"13984","_to":"59405"} +{"$label":"ACTS_IN","name":"Liselore von Peltz","type":"Role","_key":"95214","_from":"13984","_to":"56018"} +{"$label":"ACTS_IN","name":"Samantha Cavanaugh","type":"Role","_key":"95109","_from":"13984","_to":"55973"} +{"$label":"ACTS_IN","name":"Alberta","type":"Role","_key":"94379","_from":"13984","_to":"55573"} +{"$label":"ACTS_IN","name":"Joan D'Arc","type":"Role","_key":"72880","_from":"13984","_to":"43899"} +{"$label":"ACTS_IN","name":"Polly Hamilton","type":"Role","_key":"69126","_from":"13984","_to":"42291"} +{"$label":"ACTS_IN","name":"Venna","type":"Role","_key":"66362","_from":"13984","_to":"41044"} +{"$label":"ACTS_IN","name":"Sister Honey","type":"Role","_key":"55913","_from":"13984","_to":"35563"} +{"$label":"ACTS_IN","name":"Sarah Hotchner","type":"Role","_key":"50333","_from":"13984","_to":"32880"} +{"$label":"ACTS_IN","name":"Lauren Douglas","type":"Role","_key":"27451","_from":"13984","_to":"19709"} +{"$label":"ACTS_IN","name":"Muriella","type":"Role","_key":"20320","_from":"13984","_to":"14887"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18950","_from":"14000","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18949","_from":"13999","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18948","_from":"13998","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18947","_from":"13997","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18946","_from":"13996","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18945","_from":"13995","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18944","_from":"13994","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18943","_from":"13993","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18942","_from":"13992","_to":"13986"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"18941","_from":"13991","_to":"13986"} +{"$label":"DIRECTED","_key":"18939","_from":"13990","_to":"13986"} +{"$label":"DIRECTED","_key":"18938","_from":"13989","_to":"13986"} +{"$label":"DIRECTED","_key":"18937","_from":"13988","_to":"13986"} +{"$label":"DIRECTED","_key":"18936","_from":"13987","_to":"13986"} +{"$label":"DIRECTED","_key":"18952","_from":"14003","_to":"14001"} +{"$label":"DIRECTED","_key":"18951","_from":"14002","_to":"14001"} +{"$label":"ACTS_IN","name":"Claes Mansson","type":"Role","_key":"18959","_from":"14010","_to":"14005"} +{"$label":"ACTS_IN","name":"Erica Braun","type":"Role","_key":"18958","_from":"14009","_to":"14005"} +{"$label":"ACTS_IN","name":"Henrik Ek","type":"Role","_key":"18957","_from":"14008","_to":"14005"} +{"$label":"ACTS_IN","name":"Gudrun Nyman","type":"Role","_key":"18956","_from":"14007","_to":"14005"} +{"$label":"DIRECTED","_key":"18954","_from":"14006","_to":"14005"} +{"$label":"ACTS_IN","name":"Eivor","type":"Role","_key":"105054","_from":"14007","_to":"61818"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"51535","_from":"14007","_to":"33602"} +{"$label":"ACTS_IN","name":"Gabriel M\u00f6rk","type":"Role","_key":"53250","_from":"14008","_to":"34435"} +{"$label":"ACTS_IN","name":"Hauptmann Gabler","type":"Role","_key":"18969","_from":"14021","_to":"14011"} +{"$label":"ACTS_IN","name":"Dame im VPKA","type":"Role","_key":"18968","_from":"14020","_to":"14011"} +{"$label":"ACTS_IN","name":"Ekel","type":"Role","_key":"18967","_from":"14019","_to":"14011"} +{"$label":"ACTS_IN","name":"Herr Simmel","type":"Role","_key":"18966","_from":"14018","_to":"14011"} +{"$label":"ACTS_IN","name":"L\u00f6rke","type":"Role","_key":"18965","_from":"14017","_to":"14011"} +{"$label":"ACTS_IN","name":"Mutter Hirsch","type":"Role","_key":"18964","_from":"14016","_to":"14011"} +{"$label":"ACTS_IN","name":"Helene Braeur","type":"Role","_key":"18963","_from":"14015","_to":"14011"} +{"$label":"ACTS_IN","name":"Nachbarin","type":"Role","_key":"18962","_from":"14014","_to":"14011"} +{"$label":"ACTS_IN","name":"Fritz Bachmann","type":"Role","_key":"18961","_from":"14013","_to":"14011"} +{"$label":"DIRECTED","_key":"18960","_from":"14012","_to":"14011"} +{"$label":"DIRECTED","_key":"92615","_from":"14012","_to":"54666"} +{"$label":"DIRECTED","_key":"27773","_from":"14012","_to":"19908"} +{"$label":"DIRECTED","_key":"24248","_from":"14012","_to":"17564"} +{"$label":"DIRECTED","_key":"24031","_from":"14012","_to":"17420"} +{"$label":"ACTS_IN","name":"matka","type":"Role","_key":"50559","_from":"14014","_to":"33017"} +{"$label":"ACTS_IN","name":"Frau Holzmeyer","type":"Role","_key":"19399","_from":"14014","_to":"14352"} +{"$label":"ACTS_IN","name":"Ann Gordon","type":"Role","_key":"32792","_from":"14015","_to":"22764"} +{"$label":"ACTS_IN","name":"Frau Holle","type":"Role","_key":"92605","_from":"14016","_to":"54666"} +{"$label":"ACTS_IN","name":"Clara H\u00fclsenbeck","type":"Role","_key":"19339","_from":"14016","_to":"14297"} +{"$label":"ACTS_IN","name":"Kilian","type":"Role","_key":"93830","_from":"14017","_to":"55237"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"33184","_from":"14017","_to":"22980"} +{"$label":"ACTS_IN","name":"Rosentreter","type":"Role","_key":"19520","_from":"14018","_to":"14436"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"93837","_from":"14019","_to":"55237"} +{"$label":"ACTS_IN","name":"Bauer Sch\u00fctt","type":"Role","_key":"93242","_from":"14019","_to":"54923"} +{"$label":"ACTS_IN","name":"Meister Schaft","type":"Role","_key":"92586","_from":"14019","_to":"54651"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"19284","_from":"14019","_to":"14252"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"30904","_from":"14020","_to":"21653"} +{"$label":"ACTS_IN","name":"Reporterin vom Betriebsfunk","type":"Role","_key":"23983","_from":"14020","_to":"17378"} +{"$label":"ACTS_IN","name":"Raufbold","type":"Role","_key":"33192","_from":"14021","_to":"22980"} +{"$label":"ACTS_IN","name":"Ricco","type":"Role","_key":"19378","_from":"14021","_to":"14329"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"18977","_from":"14028","_to":"14022"} +{"$label":"ACTS_IN","name":"Wilbur Finletter","type":"Role","_key":"18976","_from":"14027","_to":"14022"} +{"$label":"ACTS_IN","name":"Lois Fairchild","type":"Role","_key":"18975","_from":"14026","_to":"14022"} +{"$label":"ACTS_IN","name":"Jim Richardson","type":"Role","_key":"18974","_from":"14025","_to":"14022"} +{"$label":"ACTS_IN","name":"Mason Dixon","type":"Role","_key":"18973","_from":"14024","_to":"14022"} +{"$label":"DIRECTED","_key":"18972","_from":"14023","_to":"14022"} +{"$label":"ACTS_IN","name":"Charles White","type":"Role","_key":"104605","_from":"14023","_to":"61532"} +{"$label":"DIRECTED","_key":"104602","_from":"14023","_to":"61532"} +{"$label":"ACTS_IN","name":"Wilbur Finletter","type":"Role","_key":"104614","_from":"14027","_to":"61532"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"18978","_from":"14030","_to":"14029"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"34790","_from":"14030","_to":"23775"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"18984","_from":"14033","_to":"14031"} +{"$label":"ACTS_IN","name":"Jovan Koslowski","type":"Role","_key":"18980","_from":"14032","_to":"14031"} +{"$label":"ACTS_IN","name":"Vater Zack","type":"Role","_key":"95464","_from":"14032","_to":"56162"} +{"$label":"ACTS_IN","name":"Bauer","type":"Role","_key":"93836","_from":"14032","_to":"55237"} +{"$label":"ACTS_IN","name":"Markus' Vater","type":"Role","_key":"45591","_from":"14032","_to":"30180"} +{"$label":"ACTS_IN","name":"M\u00e4rz","type":"Role","_key":"40649","_from":"14032","_to":"27367"} +{"$label":"ACTS_IN","name":"Regierungsdirektor Funkel","type":"Role","_key":"19016","_from":"14032","_to":"14038"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"19001","_from":"14037","_to":"14035"} +{"$label":"ACTS_IN","name":"Scotty","type":"Role","_key":"19000","_from":"14036","_to":"14035"} +{"$label":"ACTS_IN","name":"Dr. Spiegel","type":"Role","_key":"105887","_from":"14036","_to":"62328"} +{"$label":"DIRECTED","_key":"87991","_from":"14036","_to":"52245"} +{"$label":"ACTS_IN","name":"Aufsicht","type":"Role","_key":"19020","_from":"14046","_to":"14038"} +{"$label":"ACTS_IN","name":"Kammerwachtmeister","type":"Role","_key":"19019","_from":"14039","_to":"14038"} +{"$label":"ACTS_IN","name":"Medizinalrat Blum","type":"Role","_key":"19018","_from":"14045","_to":"14038"} +{"$label":"ACTS_IN","name":"Wachtmeister Meier","type":"Role","_key":"19015","_from":"14044","_to":"14038"} +{"$label":"ACTS_IN","name":"Wachtmeister Horn","type":"Role","_key":"19014","_from":"14043","_to":"14038"} +{"$label":"ACTS_IN","name":"Strassendirne","type":"Role","_key":"19013","_from":"14042","_to":"14038"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"19012","_from":"14041","_to":"14038"} +{"$label":"ACTS_IN","name":"Freier","type":"Role","_key":"19011","_from":"14040","_to":"14038"} +{"$label":"DIRECTED","_key":"19002","_from":"14039","_to":"14038"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19029","_from":"14054","_to":"14047"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19028","_from":"14053","_to":"14047"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19027","_from":"14052","_to":"14047"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19026","_from":"14051","_to":"14047"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19025","_from":"14050","_to":"14047"} +{"$label":"DIRECTED","_key":"19024","_from":"14049","_to":"14047"} +{"$label":"DIRECTED","_key":"19023","_from":"14048","_to":"14047"} +{"$label":"DIRECTED","_key":"115201","_from":"14048","_to":"67844"} +{"$label":"ACTS_IN","name":"Seville Ritz","type":"Role","_key":"19043","_from":"14065","_to":"14055"} +{"$label":"ACTS_IN","name":"Woman in Corvette","type":"Role","_key":"19042","_from":"14064","_to":"14055"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"19040","_from":"14063","_to":"14055"} +{"$label":"ACTS_IN","name":"Pimples","type":"Role","_key":"19039","_from":"14062","_to":"14055"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"19038","_from":"14061","_to":"14055"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"19037","_from":"14060","_to":"14055"} +{"$label":"ACTS_IN","name":"Ernie Leeds Jr.","type":"Role","_key":"19036","_from":"14059","_to":"14055"} +{"$label":"ACTS_IN","name":"Earl Delarue","type":"Role","_key":"19035","_from":"14058","_to":"14055"} +{"$label":"ACTS_IN","name":"Randy Starr","type":"Role","_key":"19033","_from":"14057","_to":"14055"} +{"$label":"DIRECTED","_key":"19031","_from":"14056","_to":"14055"} +{"$label":"ACTS_IN","name":"Polly Bunderhoof","type":"Role","_key":"110149","_from":"14064","_to":"65091"} +{"$label":"ACTS_IN","name":"Neighbour","type":"Role","_key":"39192","_from":"14064","_to":"26487"} +{"$label":"ACTS_IN","name":"Nefratis","type":"Role","_key":"39087","_from":"14064","_to":"26424"} +{"$label":"ACTS_IN","name":"Goddess - The Creature","type":"Role","_key":"26753","_from":"14064","_to":"19227"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"101397","_from":"14065","_to":"59681"} +{"$label":"ACTS_IN","name":"Entrevistador","type":"Role","_key":"19052","_from":"14073","_to":"14066"} +{"$label":"ACTS_IN","name":"Lowell","type":"Role","_key":"19050","_from":"14072","_to":"14066"} +{"$label":"ACTS_IN","name":"Herbert Sagan","type":"Role","_key":"19049","_from":"14071","_to":"14066"} +{"$label":"ACTS_IN","name":"Susana Sanchez","type":"Role","_key":"19048","_from":"14070","_to":"14066"} +{"$label":"ACTS_IN","name":"Fidel Rodrigo","type":"Role","_key":"19047","_from":"14069","_to":"14066"} +{"$label":"ACTS_IN","name":"Luca Baglioni","type":"Role","_key":"19045","_from":"14068","_to":"14066"} +{"$label":"DIRECTED","_key":"19044","_from":"14067","_to":"14066"} +{"$label":"DIRECTED","_key":"91123","_from":"14068","_to":"53759"} +{"$label":"DIRECTED","_key":"54033","_from":"14068","_to":"34761"} +{"$label":"ACTS_IN","name":"Bud Clay","type":"Role","_key":"91117","_from":"14068","_to":"53759"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"89074","_from":"14068","_to":"52767"} +{"$label":"ACTS_IN","name":"Tetro","type":"Role","_key":"72792","_from":"14068","_to":"43862"} +{"$label":"ACTS_IN","name":"Paul Leger","type":"Role","_key":"67528","_from":"14068","_to":"41579"} +{"$label":"ACTS_IN","name":"Billy Brown","type":"Role","_key":"54028","_from":"14068","_to":"34761"} +{"$label":"ACTS_IN","name":"Luis de Ayala","type":"Role","_key":"112206","_from":"14069","_to":"66264"} +{"$label":"ACTS_IN","name":"Rafael","type":"Role","_key":"110613","_from":"14069","_to":"65353"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"88408","_from":"14069","_to":"52396"} +{"$label":"ACTS_IN","name":"Don Huertero","type":"Role","_key":"63205","_from":"14069","_to":"39632"} +{"$label":"ACTS_IN","name":"Baxter","type":"Role","_key":"62652","_from":"14069","_to":"39410"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"52320","_from":"14069","_to":"34060"} +{"$label":"ACTS_IN","name":"Bucho","type":"Role","_key":"48029","_from":"14069","_to":"31586"} +{"$label":"ACTS_IN","name":"Admiral Piquet","type":"Role","_key":"47731","_from":"14069","_to":"31434"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108551","_from":"14072","_to":"64152"} +{"$label":"ACTS_IN","name":"Maharajah","type":"Role","_key":"19059","_from":"14081","_to":"14074"} +{"$label":"ACTS_IN","name":"Reginald Milliner","type":"Role","_key":"19058","_from":"14080","_to":"14074"} +{"$label":"ACTS_IN","name":"Parvati Sandok","type":"Role","_key":"19057","_from":"14079","_to":"14074"} +{"$label":"ACTS_IN","name":"Princess Dhara","type":"Role","_key":"19056","_from":"14078","_to":"14074"} +{"$label":"ACTS_IN","name":"Cynthia Montague","type":"Role","_key":"19055","_from":"14077","_to":"14074"} +{"$label":"ACTS_IN","name":"Tenente Dick Ramsey","type":"Role","_key":"19054","_from":"14076","_to":"14074"} +{"$label":"DIRECTED","_key":"19053","_from":"14075","_to":"14074"} +{"$label":"DIRECTED","_key":"50484","_from":"14075","_to":"32971"} +{"$label":"DIRECTED","_key":"50463","_from":"14075","_to":"32963"} +{"$label":"DIRECTED","_key":"33699","_from":"14075","_to":"23254"} +{"$label":"DIRECTED","_key":"28634","_from":"14075","_to":"20467"} +{"$label":"DIRECTED","_key":"28613","_from":"14075","_to":"20452"} +{"$label":"ACTS_IN","name":"Ingdscha","type":"Role","_key":"119187","_from":"14078","_to":"70038"} +{"$label":"ACTS_IN","name":"Ingdscha","type":"Role","_key":"119175","_from":"14078","_to":"70032"} +{"$label":"ACTS_IN","name":"Tschita","type":"Role","_key":"90225","_from":"14078","_to":"53349"} +{"$label":"ACTS_IN","name":"Nscho-tschi","type":"Role","_key":"55150","_from":"14078","_to":"35198"} +{"$label":"ACTS_IN","name":"Claire Morandat","type":"Role","_key":"33552","_from":"14078","_to":"23204"} +{"$label":"ACTS_IN","name":"Marie Gabelle","type":"Role","_key":"33461","_from":"14078","_to":"23156"} +{"$label":"ACTS_IN","name":"Nscho-tschi","type":"Role","_key":"28518","_from":"14078","_to":"20386"} +{"$label":"ACTS_IN","name":"Hippolyta","type":"Role","_key":"23656","_from":"14078","_to":"17146"} +{"$label":"ACTS_IN","name":"Hawkins, Pinkerton detective","type":"Role","_key":"28612","_from":"14080","_to":"20446"} +{"$label":"ACTS_IN","name":"District Attorney","type":"Role","_key":"20945","_from":"14081","_to":"15318"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"19068","_from":"14090","_to":"14082"} +{"$label":"ACTS_IN","name":"Mrs Chrystal","type":"Role","_key":"19066","_from":"14089","_to":"14082"} +{"$label":"ACTS_IN","name":"Don Sylvester","type":"Role","_key":"19065","_from":"14088","_to":"14082"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"19064","_from":"14087","_to":"14082"} +{"$label":"ACTS_IN","name":"Mr. Chrystal","type":"Role","_key":"19063","_from":"14086","_to":"14082"} +{"$label":"ACTS_IN","name":"Bobby Chrystal","type":"Role","_key":"19062","_from":"14085","_to":"14082"} +{"$label":"ACTS_IN","name":"Terry Green","type":"Role","_key":"19061","_from":"14084","_to":"14082"} +{"$label":"DIRECTED","_key":"19060","_from":"14083","_to":"14082"} +{"$label":"DIRECTED","_key":"114106","_from":"14083","_to":"67202"} +{"$label":"ACTS_IN","name":"Sylvester Josephson","type":"Role","_key":"120771","_from":"14086","_to":"70939"} +{"$label":"ACTS_IN","name":"R.J. Fletcher","type":"Role","_key":"72995","_from":"14086","_to":"43930"} +{"$label":"ACTS_IN","name":"Dr. Miles J. Bennell","type":"Role","_key":"70576","_from":"14086","_to":"42941"} +{"$label":"ACTS_IN","name":"Raymond Taber","type":"Role","_key":"70499","_from":"14086","_to":"42914"} +{"$label":"ACTS_IN","name":"Grandpa Addams","type":"Role","_key":"70275","_from":"14086","_to":"42822"} +{"$label":"ACTS_IN","name":"Fred Francis","type":"Role","_key":"68986","_from":"14086","_to":"42233"} +{"$label":"ACTS_IN","name":"John Garrett","type":"Role","_key":"29462","_from":"14086","_to":"20892"} +{"$label":"ACTS_IN","name":"Victor Eugene Scrimshaw","type":"Role","_key":"22215","_from":"14086","_to":"16182"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"34879","_from":"14089","_to":"23835"} +{"$label":"ACTS_IN","name":"Lollek","type":"Role","_key":"19079","_from":"14098","_to":"14091"} +{"$label":"ACTS_IN","name":"Frau Grieger","type":"Role","_key":"19078","_from":"14097","_to":"14091"} +{"$label":"ACTS_IN","name":"Opa Br\u00f6cking","type":"Role","_key":"19077","_from":"14096","_to":"14091"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"19076","_from":"14095","_to":"14091"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"19075","_from":"14094","_to":"14091"} +{"$label":"DIRECTED","_key":"19070","_from":"14093","_to":"14091"} +{"$label":"DIRECTED","_key":"19069","_from":"14092","_to":"14091"} +{"$label":"DIRECTED","_key":"55688","_from":"14092","_to":"35440"} +{"$label":"ACTS_IN","name":"Andy Walzer","type":"Role","_key":"70722","_from":"14094","_to":"43009"} +{"$label":"ACTS_IN","name":"Robert G\u00f6rl","type":"Role","_key":"55679","_from":"14094","_to":"35440"} +{"$label":"ACTS_IN","name":"Klier","type":"Role","_key":"50299","_from":"14094","_to":"32859"} +{"$label":"ACTS_IN","name":"Maik","type":"Role","_key":"28784","_from":"14094","_to":"20565"} +{"$label":"ACTS_IN","name":"Young Deacon","type":"Role","_key":"31270","_from":"14098","_to":"21872"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"19089","_from":"14108","_to":"14099"} +{"$label":"ACTS_IN","name":"Lugge","type":"Role","_key":"19088","_from":"14107","_to":"14099"} +{"$label":"ACTS_IN","name":"Katis Mutter","type":"Role","_key":"19087","_from":"14106","_to":"14099"} +{"$label":"ACTS_IN","name":"Katis Vater","type":"Role","_key":"19086","_from":"14105","_to":"14099"} +{"$label":"ACTS_IN","name":"Katis Opa","type":"Role","_key":"19085","_from":"14104","_to":"14099"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"19084","_from":"14103","_to":"14099"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"19083","_from":"14102","_to":"14099"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"19082","_from":"14101","_to":"14099"} +{"$label":"ACTS_IN","name":"Kati","type":"Role","_key":"19081","_from":"14100","_to":"14099"} +{"$label":"ACTS_IN","name":"Kati","type":"Role","_key":"40871","_from":"14100","_to":"27509"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"40872","_from":"14101","_to":"27509"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"40875","_from":"14102","_to":"27509"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"40876","_from":"14103","_to":"27509"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"43117","_from":"14104","_to":"28795"} +{"$label":"ACTS_IN","name":"Katis Opa","type":"Role","_key":"40877","_from":"14104","_to":"27509"} +{"$label":"ACTS_IN","name":"Katis Vater","type":"Role","_key":"40878","_from":"14105","_to":"27509"} +{"$label":"ACTS_IN","name":"Katis Mama","type":"Role","_key":"40879","_from":"14106","_to":"27509"} +{"$label":"ACTS_IN","name":"Peter Engel","type":"Role","_key":"47414","_from":"14107","_to":"31231"} +{"$label":"ACTS_IN","name":"Lugge","type":"Role","_key":"40874","_from":"14107","_to":"27509"} +{"$label":"ACTS_IN","name":"Lothar von Richthofen","type":"Role","_key":"49235","_from":"14108","_to":"32251"} +{"$label":"ACTS_IN","name":"Lieutenant Becker","type":"Role","_key":"48625","_from":"14108","_to":"31888"} +{"$label":"ACTS_IN","name":"Dieter Spenz","type":"Role","_key":"47911","_from":"14108","_to":"31517"} +{"$label":"ACTS_IN","name":"Stefan Aust","type":"Role","_key":"45442","_from":"14108","_to":"30115"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"40873","_from":"14108","_to":"27509"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"19097","_from":"14113","_to":"14109"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"19095","_from":"14112","_to":"14109"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"19093","_from":"14111","_to":"14109"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"19092","_from":"14110","_to":"14109"} +{"$label":"ACTS_IN","name":"Fancy Day","type":"Role","_key":"114882","_from":"14110","_to":"67663"} +{"$label":"ACTS_IN","name":"Jesse Scott","type":"Role","_key":"96708","_from":"14110","_to":"56883"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"53109","_from":"14110","_to":"34364"} +{"$label":"ACTS_IN","name":"Wendy Leather","type":"Role","_key":"51095","_from":"14110","_to":"33334"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"49729","_from":"14110","_to":"32538"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"107901","_from":"14111","_to":"63713"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"35860","_from":"14111","_to":"24344"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"94159","_from":"14112","_to":"55443"} +{"$label":"ACTS_IN","name":"Janja","type":"Role","_key":"19111","_from":"14122","_to":"14114"} +{"$label":"ACTS_IN","name":"Offizier der blauen Armee","type":"Role","_key":"19110","_from":"14121","_to":"14114"} +{"$label":"ACTS_IN","name":"Ravil","type":"Role","_key":"19108","_from":"14120","_to":"14114"} +{"$label":"ACTS_IN","name":"Ako","type":"Role","_key":"19107","_from":"14119","_to":"14114"} +{"$label":"ACTS_IN","name":"Shasha","type":"Role","_key":"19106","_from":"14118","_to":"14114"} +{"$label":"ACTS_IN","name":"Mouna","type":"Role","_key":"19105","_from":"14117","_to":"14114"} +{"$label":"ACTS_IN","name":"Rahne","type":"Role","_key":"19104","_from":"14116","_to":"14114"} +{"$label":"DIRECTED","_key":"19103","_from":"14115","_to":"14114"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"108969","_from":"14117","_to":"64395"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"19124","_from":"14135","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19123","_from":"14134","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19122","_from":"14133","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19121","_from":"14132","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19120","_from":"14131","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19119","_from":"14130","_to":"14123"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19118","_from":"14129","_to":"14123"} +{"$label":"ACTS_IN","name":"Nr. 1","type":"Role","_key":"19117","_from":"14128","_to":"14123"} +{"$label":"ACTS_IN","name":"Franz Xaver Oberholzer","type":"Role","_key":"19116","_from":"14127","_to":"14123"} +{"$label":"ACTS_IN","name":"La Szchana","type":"Role","_key":"19114","_from":"14126","_to":"14123"} +{"$label":"ACTS_IN","name":"Scheich Al-Abdullah","type":"Role","_key":"19113","_from":"14125","_to":"14123"} +{"$label":"DIRECTED","_key":"19112","_from":"14124","_to":"14123"} +{"$label":"ACTS_IN","name":"Peter Quint","type":"Role","_key":"108950","_from":"14125","_to":"64386"} +{"$label":"ACTS_IN","name":"Harry der Hoteldieb","type":"Role","_key":"41245","_from":"14128","_to":"27738"} +{"$label":"ACTS_IN","name":"Holleck","type":"Role","_key":"39908","_from":"14128","_to":"26965"} +{"$label":"ACTS_IN","name":"Dosser","type":"Role","_key":"34153","_from":"14128","_to":"23455"} +{"$label":"ACTS_IN","name":"Weninger, Journalist \u201eDie Zeitung\u201c","type":"Role","_key":"33853","_from":"14128","_to":"23320"} +{"$label":"ACTS_IN","name":"Butler Robin","type":"Role","_key":"32838","_from":"14128","_to":"22793"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"32416","_from":"14128","_to":"22555"} +{"$label":"ACTS_IN","name":"Eddie Shappiro","type":"Role","_key":"32387","_from":"14128","_to":"22544"} +{"$label":"ACTS_IN","name":"Pope","type":"Role","_key":"31406","_from":"14128","_to":"21944"} +{"$label":"ACTS_IN","name":"Vokurka","type":"Role","_key":"31346","_from":"14128","_to":"21912"} +{"$label":"ACTS_IN","name":"Governer","type":"Role","_key":"27424","_from":"14128","_to":"19690"} +{"$label":"ACTS_IN","name":"Tom Lynch","type":"Role","_key":"26174","_from":"14128","_to":"18800"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"41235","_from":"14131","_to":"27738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34282","_from":"14131","_to":"23524"} +{"$label":"ACTS_IN","name":"Anne Sandler","type":"Role","_key":"44617","_from":"14133","_to":"29691"} +{"$label":"ACTS_IN","name":"Alois","type":"Role","_key":"42813","_from":"14134","_to":"28628"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34156","_from":"14135","_to":"23455"} +{"$label":"ACTS_IN","name":"Celia Celica","type":"Role","_key":"19131","_from":"14142","_to":"14136"} +{"$label":"ACTS_IN","name":"Mad. Gypsy","type":"Role","_key":"19130","_from":"14141","_to":"14136"} +{"$label":"ACTS_IN","name":"Stanly Pubah","type":"Role","_key":"19129","_from":"14140","_to":"14136"} +{"$label":"ACTS_IN","name":"Jennifer Shaben","type":"Role","_key":"19128","_from":"14139","_to":"14136"} +{"$label":"ACTS_IN","name":"Leslie Shaber","type":"Role","_key":"19126","_from":"14138","_to":"14136"} +{"$label":"DIRECTED","_key":"19125","_from":"14137","_to":"14136"} +{"$label":"ACTS_IN","name":"Iris Crawford","type":"Role","_key":"117211","_from":"14138","_to":"68951"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"91924","_from":"14139","_to":"54230"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102657","_from":"14140","_to":"60399"} +{"$label":"ACTS_IN","name":"Opposing Coach","type":"Role","_key":"106993","_from":"14141","_to":"63076"} +{"$label":"ACTS_IN","name":"Maw","type":"Role","_key":"52880","_from":"14141","_to":"34274"} +{"$label":"ACTS_IN","name":"Frankfurter","type":"Role","_key":"19143","_from":"14152","_to":"14143"} +{"$label":"ACTS_IN","name":"Herschel Schlamm","type":"Role","_key":"19142","_from":"14151","_to":"14143"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"19141","_from":"14150","_to":"14143"} +{"$label":"ACTS_IN","name":"Dr. Kirschbaum","type":"Role","_key":"19140","_from":"14149","_to":"14143"} +{"$label":"ACTS_IN","name":"Mrs. Frankfurter","type":"Role","_key":"19138","_from":"14148","_to":"14143"} +{"$label":"ACTS_IN","name":"Lina","type":"Role","_key":"19137","_from":"14147","_to":"14143"} +{"$label":"ACTS_IN","name":"Rose Frankfurter","type":"Role","_key":"19136","_from":"14146","_to":"14143"} +{"$label":"ACTS_IN","name":"Kowalski","type":"Role","_key":"19134","_from":"14145","_to":"14143"} +{"$label":"DIRECTED","_key":"19132","_from":"14144","_to":"14143"} +{"$label":"DIRECTED","_key":"19411","_from":"14144","_to":"14363"} +{"$label":"DIRECTED","_key":"19273","_from":"14144","_to":"14252"} +{"$label":"DIRECTED","_key":"19256","_from":"14144","_to":"14239"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"19337","_from":"14144","_to":"14297"} +{"$label":"ACTS_IN","name":"Holl\u00e4nder-Michel","type":"Role","_key":"92597","_from":"14145","_to":"54659"} +{"$label":"ACTS_IN","name":"Kr\u00e4mer","type":"Role","_key":"19414","_from":"14145","_to":"14363"} +{"$label":"ACTS_IN","name":"Ewald Hornig","type":"Role","_key":"19403","_from":"14145","_to":"14352"} +{"$label":"ACTS_IN","name":"Kommissar Witting","type":"Role","_key":"19280","_from":"14145","_to":"14252"} +{"$label":"ACTS_IN","name":"Judith Baumann","type":"Role","_key":"37979","_from":"14146","_to":"25714"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37972","_from":"14146","_to":"25710"} +{"$label":"ACTS_IN","name":"Rotk\u00e4ppchen","type":"Role","_key":"37961","_from":"14146","_to":"25705"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"37950","_from":"14146","_to":"25697"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"37943","_from":"14146","_to":"25691"} +{"$label":"ACTS_IN","name":"Raumsicherheitsleiter","type":"Role","_key":"24043","_from":"14149","_to":"17420"} +{"$label":"ACTS_IN","name":"Buckles","type":"Role","_key":"19157","_from":"14159","_to":"14153"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"19156","_from":"14158","_to":"14153"} +{"$label":"ACTS_IN","name":"Snickers","type":"Role","_key":"19155","_from":"14157","_to":"14153"} +{"$label":"ACTS_IN","name":"Hynes","type":"Role","_key":"19153","_from":"14156","_to":"14153"} +{"$label":"ACTS_IN","name":"Dan'l Fadden","type":"Role","_key":"19152","_from":"14155","_to":"14153"} +{"$label":"ACTS_IN","name":"Rowlie","type":"Role","_key":"19150","_from":"14154","_to":"14153"} +{"$label":"ACTS_IN","name":"Kris Kringle","type":"Role","_key":"72529","_from":"14154","_to":"43748"} +{"$label":"ACTS_IN","name":"Capt. Albert Wiles","type":"Role","_key":"68612","_from":"14154","_to":"42064"} +{"$label":"ACTS_IN","name":"Dr. Harold Medford","type":"Role","_key":"67698","_from":"14154","_to":"41637"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"88851","_from":"14156","_to":"52647"} +{"$label":"ACTS_IN","name":"Colonel Hathi \/ Buzzie","type":"Role","_key":"53139","_from":"14156","_to":"34379"} +{"$label":"ACTS_IN","name":"Rev. Cyril 'Snuffy' Playfair","type":"Role","_key":"26009","_from":"14158","_to":"18693"} +{"$label":"ACTS_IN","name":"Radlik","type":"Role","_key":"21419","_from":"14159","_to":"15664"} +{"$label":"ACTS_IN","name":"Flughafenpersonal","type":"Role","_key":"19166","_from":"14168","_to":"14161"} +{"$label":"ACTS_IN","name":"Autoverk\u00e4ufer","type":"Role","_key":"19165","_from":"14167","_to":"14161"} +{"$label":"ACTS_IN","name":"Publisher","type":"Role","_key":"19164","_from":"14166","_to":"14161"} +{"$label":"ACTS_IN","name":"Freundin in New York","type":"Role","_key":"19163","_from":"14165","_to":"14161"} +{"$label":"ACTS_IN","name":"Alice`s Mutter","type":"Role","_key":"19162","_from":"14164","_to":"14161"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"19161","_from":"14163","_to":"14161"} +{"$label":"DIRECTED","_key":"19159","_from":"14162","_to":"14161"} +{"$label":"ACTS_IN","name":"Marianne Zimmermann","type":"Role","_key":"68632","_from":"14164","_to":"42069"} +{"$label":"ACTS_IN","name":"Pauline, cashier","type":"Role","_key":"66066","_from":"14164","_to":"40882"} +{"$label":"ACTS_IN","name":"Cleo Kneitz","type":"Role","_key":"34168","_from":"14164","_to":"23460"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"20252","_from":"14164","_to":"14844"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19169","_from":"14171","_to":"14169"} +{"$label":"DIRECTED","_key":"19167","_from":"14170","_to":"14169"} +{"$label":"DIRECTED","_key":"64252","_from":"14170","_to":"40074"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30049","_from":"14171","_to":"21186"} +{"$label":"ACTS_IN","name":"Manager Hecht","type":"Role","_key":"19183","_from":"14180","_to":"14172"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"19181","_from":"14179","_to":"14172"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"19180","_from":"14178","_to":"14172"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"19179","_from":"14177","_to":"14172"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"19177","_from":"14176","_to":"14172"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"19176","_from":"14175","_to":"14172"} +{"$label":"ACTS_IN","name":"Richard Schrader","type":"Role","_key":"19175","_from":"14174","_to":"14172"} +{"$label":"DIRECTED","_key":"19174","_from":"14173","_to":"14172"} +{"$label":"ACTS_IN","name":"Gabriel Verlaine","type":"Role","_key":"90548","_from":"14175","_to":"53481"} +{"$label":"ACTS_IN","name":"The Executior","type":"Role","_key":"62228","_from":"14175","_to":"39188"} +{"$label":"ACTS_IN","name":"Ingo","type":"Role","_key":"27656","_from":"14175","_to":"19817"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"26915","_from":"14175","_to":"19351"} +{"$label":"ACTS_IN","name":"Richterin","type":"Role","_key":"46835","_from":"14178","_to":"30889"} +{"$label":"ACTS_IN","name":"Dr. Sigrid Kuhn","type":"Role","_key":"45362","_from":"14178","_to":"30082"} +{"$label":"ACTS_IN","name":"Evelyne Meisegeier","type":"Role","_key":"45062","_from":"14178","_to":"29929"} +{"$label":"ACTS_IN","name":"Gertrud Hartmann","type":"Role","_key":"44163","_from":"14178","_to":"29437"} +{"$label":"ACTS_IN","name":"Hotelcheffin","type":"Role","_key":"39896","_from":"14178","_to":"26948"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"40553","_from":"14180","_to":"27300"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40541","_from":"14180","_to":"27297"} +{"$label":"ACTS_IN","name":"Robert Torres","type":"Role","_key":"19189","_from":"14183","_to":"14181"} +{"$label":"ACTS_IN","name":"Diane Mosley","type":"Role","_key":"19188","_from":"14182","_to":"14181"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"120616","_from":"14183","_to":"70829"} +{"$label":"ACTS_IN","name":"Himself - Drums","type":"Role","_key":"19195","_from":"14190","_to":"14184"} +{"$label":"ACTS_IN","name":"Himself - Guitar","type":"Role","_key":"19194","_from":"14189","_to":"14184"} +{"$label":"ACTS_IN","name":"Himself - Vocals & Drums","type":"Role","_key":"19193","_from":"14188","_to":"14184"} +{"$label":"ACTS_IN","name":"Himself - Guitar","type":"Role","_key":"19192","_from":"14187","_to":"14184"} +{"$label":"ACTS_IN","name":"Himself - Keyboards","type":"Role","_key":"19191","_from":"14186","_to":"14184"} +{"$label":"DIRECTED","_key":"19190","_from":"14185","_to":"14184"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"102252","_from":"14188","_to":"60169"} +{"$label":"ACTS_IN","name":"Eddi Papasano","type":"Role","_key":"24071","_from":"14188","_to":"17452"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"19207","_from":"14202","_to":"14191"} +{"$label":"ACTS_IN","name":"Geerd","type":"Role","_key":"19206","_from":"14201","_to":"14191"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"19205","_from":"14192","_to":"14191"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"19204","_from":"14200","_to":"14191"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"19203","_from":"14199","_to":"14191"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"19202","_from":"14198","_to":"14191"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"19201","_from":"14197","_to":"14191"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"19200","_from":"14196","_to":"14191"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"19199","_from":"14195","_to":"14191"} +{"$label":"ACTS_IN","name":"Jette","type":"Role","_key":"19198","_from":"14194","_to":"14191"} +{"$label":"ACTS_IN","name":"Christa","type":"Role","_key":"19197","_from":"14193","_to":"14191"} +{"$label":"DIRECTED","_key":"19196","_from":"14192","_to":"14191"} +{"$label":"ACTS_IN","name":"2. Fee","type":"Role","_key":"92534","_from":"14193","_to":"54617"} +{"$label":"ACTS_IN","name":"Mrs. Clay","type":"Role","_key":"20157","_from":"14194","_to":"14791"} +{"$label":"ACTS_IN","name":"Magdalena","type":"Role","_key":"19258","_from":"14194","_to":"14239"} +{"$label":"ACTS_IN","name":"Koch","type":"Role","_key":"45729","_from":"14196","_to":"30261"} +{"$label":"ACTS_IN","name":"M\u00e4nnlein","type":"Role","_key":"37945","_from":"14196","_to":"25691"} +{"$label":"ACTS_IN","name":"Peter Hille","type":"Role","_key":"27782","_from":"14196","_to":"19908"} +{"$label":"ACTS_IN","name":"Reifen-Saft","type":"Role","_key":"19478","_from":"14196","_to":"14406"} +{"$label":"ACTS_IN","name":"Pippig","type":"Role","_key":"19413","_from":"14196","_to":"14363"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"19370","_from":"14196","_to":"14329"} +{"$label":"ACTS_IN","name":"Professor Bergmann","type":"Role","_key":"19340","_from":"14196","_to":"14297"} +{"$label":"ACTS_IN","name":"Mann mit Sessel","type":"Role","_key":"19320","_from":"14196","_to":"14285"} +{"$label":"ACTS_IN","name":"Soldat Albert","type":"Role","_key":"19259","_from":"14196","_to":"14239"} +{"$label":"ACTS_IN","name":"B\u00f6se Hexe","type":"Role","_key":"59769","_from":"14197","_to":"37734"} +{"$label":"ACTS_IN","name":"B\u00f6se K\u00f6nigin","type":"Role","_key":"56961","_from":"14197","_to":"36144"} +{"$label":"ACTS_IN","name":"Hauptmann Dobbs","type":"Role","_key":"88227","_from":"14198","_to":"52345"} +{"$label":"ACTS_IN","name":"Bundesfinanzminister Klaus Vorschmidt","type":"Role","_key":"46687","_from":"14198","_to":"30826"} +{"$label":"ACTS_IN","name":"Langer","type":"Role","_key":"45727","_from":"14198","_to":"30261"} +{"$label":"ACTS_IN","name":"Gilbert Wolzow","type":"Role","_key":"19657","_from":"14199","_to":"14543"} +{"$label":"ACTS_IN","name":"Bauer Kunicke","type":"Role","_key":"19569","_from":"14199","_to":"14467"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"19213","_from":"14206","_to":"14203"} +{"$label":"ACTS_IN","name":"Zeebo","type":"Role","_key":"19212","_from":"14205","_to":"14203"} +{"$label":"DIRECTED","_key":"19208","_from":"14204","_to":"14203"} +{"$label":"DIRECTED","_key":"107506","_from":"14204","_to":"63435"} +{"$label":"DIRECTED","_key":"100470","_from":"14204","_to":"59242"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"110862","_from":"14205","_to":"65484"} +{"$label":"ACTS_IN","name":"Johnny Stewart","type":"Role","_key":"89051","_from":"14205","_to":"52761"} +{"$label":"ACTS_IN","name":"Maj. Benson Payne","type":"Role","_key":"67261","_from":"14205","_to":"41467"} +{"$label":"ACTS_IN","name":"Jack Carter","type":"Role","_key":"65255","_from":"14205","_to":"40509"} +{"$label":"ACTS_IN","name":"James Alexander 'Jimmy' Dix","type":"Role","_key":"53090","_from":"14205","_to":"34363"} +{"$label":"ACTS_IN","name":"Dee La Duke","type":"Role","_key":"95735","_from":"14206","_to":"56306"} +{"$label":"ACTS_IN","name":"Ilse im Jahre 1997","type":"Role","_key":"19223","_from":"14213","_to":"14207"} +{"$label":"ACTS_IN","name":"Lilly W\u00fcst im Jahre 1997","type":"Role","_key":"19222","_from":"14212","_to":"14207"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"19220","_from":"14211","_to":"14207"} +{"$label":"ACTS_IN","name":"Ilse","type":"Role","_key":"19218","_from":"14210","_to":"14207"} +{"$label":"ACTS_IN","name":"Felice \" Jaguar \" Schragenheim","type":"Role","_key":"19216","_from":"14209","_to":"14207"} +{"$label":"DIRECTED","_key":"19215","_from":"14208","_to":"14207"} +{"$label":"ACTS_IN","name":"Kai's Mutter","type":"Role","_key":"88240","_from":"14209","_to":"52346"} +{"$label":"ACTS_IN","name":"Fanny Fink","type":"Role","_key":"72695","_from":"14209","_to":"43807"} +{"$label":"ACTS_IN","name":"Johanna von Schulenberg","type":"Role","_key":"67642","_from":"14209","_to":"41625"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"50170","_from":"14209","_to":"32800"} +{"$label":"ACTS_IN","name":"Hannah Weinstein","type":"Role","_key":"42882","_from":"14209","_to":"28665"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"29557","_from":"14209","_to":"20938"} +{"$label":"ACTS_IN","name":"Felicite","type":"Role","_key":"25886","_from":"14209","_to":"18633"} +{"$label":"DIRECTED","_key":"34355","_from":"14209","_to":"23562"} +{"$label":"ACTS_IN","name":"Luise Fellner","type":"Role","_key":"109221","_from":"14210","_to":"64531"} +{"$label":"ACTS_IN","name":"Lene","type":"Role","_key":"91051","_from":"14210","_to":"53726"} +{"$label":"ACTS_IN","name":"Johanna von Ingelheim","type":"Role","_key":"54299","_from":"14210","_to":"34856"} +{"$label":"ACTS_IN","name":"Gudrun Ensslin","type":"Role","_key":"45433","_from":"14210","_to":"30115"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"42359","_from":"14210","_to":"28358"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"42977","_from":"14213","_to":"28710"} +{"$label":"DIRECTED","_key":"19225","_from":"14215","_to":"14214"} +{"$label":"DIRECTED","_key":"109707","_from":"14215","_to":"64790"} +{"$label":"DIRECTED","_key":"102366","_from":"14215","_to":"60232"} +{"$label":"DIRECTED","_key":"89376","_from":"14215","_to":"52901"} +{"$label":"DIRECTED","_key":"43735","_from":"14215","_to":"29206"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"19239","_from":"14224","_to":"14216"} +{"$label":"ACTS_IN","name":"Giovanna","type":"Role","_key":"19238","_from":"14223","_to":"14216"} +{"$label":"ACTS_IN","name":"Judith Hausmann","type":"Role","_key":"19237","_from":"14222","_to":"14216"} +{"$label":"ACTS_IN","name":"Philipp","type":"Role","_key":"19236","_from":"14221","_to":"14216"} +{"$label":"ACTS_IN","name":"Dr. Weber","type":"Role","_key":"19235","_from":"14220","_to":"14216"} +{"$label":"ACTS_IN","name":"Nick Tiedemann","type":"Role","_key":"19234","_from":"14219","_to":"14216"} +{"$label":"ACTS_IN","name":"Sandra Hausmann","type":"Role","_key":"19233","_from":"14218","_to":"14216"} +{"$label":"DIRECTED","_key":"19231","_from":"14217","_to":"14216"} +{"$label":"ACTS_IN","name":"Katja Klimova","type":"Role","_key":"49386","_from":"14218","_to":"32339"} +{"$label":"ACTS_IN","name":"Werner v. Haeften","type":"Role","_key":"63115","_from":"14219","_to":"39591"} +{"$label":"ACTS_IN","name":"Schwester Beate","type":"Role","_key":"71225","_from":"14222","_to":"43222"} +{"$label":"ACTS_IN","name":"Lischen","type":"Role","_key":"26497","_from":"14222","_to":"19048"} +{"$label":"ACTS_IN","name":"Geierwally","type":"Role","_key":"43099","_from":"14223","_to":"28790"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"33450","_from":"14223","_to":"23146"} +{"$label":"ACTS_IN","name":"Knetsch","type":"Role","_key":"19255","_from":"14238","_to":"14225"} +{"$label":"ACTS_IN","name":"Architekt Weber","type":"Role","_key":"19252","_from":"14237","_to":"14225"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"19251","_from":"14236","_to":"14225"} +{"$label":"ACTS_IN","name":"Frau Rotter","type":"Role","_key":"19250","_from":"14235","_to":"14225"} +{"$label":"ACTS_IN","name":"Steinschneider","type":"Role","_key":"19249","_from":"14234","_to":"14225"} +{"$label":"ACTS_IN","name":"Frau Oberlin","type":"Role","_key":"19248","_from":"14233","_to":"14225"} +{"$label":"ACTS_IN","name":"Bauer","type":"Role","_key":"19247","_from":"14232","_to":"14225"} +{"$label":"ACTS_IN","name":"Raugraff","type":"Role","_key":"19246","_from":"14231","_to":"14225"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin Seliger","type":"Role","_key":"19245","_from":"14230","_to":"14225"} +{"$label":"ACTS_IN","name":"Junger Bauer","type":"Role","_key":"19244","_from":"14229","_to":"14225"} +{"$label":"ACTS_IN","name":"Hanni","type":"Role","_key":"19243","_from":"14228","_to":"14225"} +{"$label":"ACTS_IN","name":"Fischer","type":"Role","_key":"19242","_from":"14227","_to":"14225"} +{"$label":"ACTS_IN","name":"Trucks","type":"Role","_key":"19241","_from":"14226","_to":"14225"} +{"$label":"ACTS_IN","name":"Dachs","type":"Role","_key":"42025","_from":"14226","_to":"28155"} +{"$label":"ACTS_IN","name":"Alte Dame","type":"Role","_key":"19485","_from":"14233","_to":"14406"} +{"$label":"ACTS_IN","name":"Mutter Seifert","type":"Role","_key":"19264","_from":"14233","_to":"14239"} +{"$label":"ACTS_IN","name":"Die alte Gauklerin","type":"Role","_key":"93781","_from":"14235","_to":"55197"} +{"$label":"ACTS_IN","name":"K\u00f6chin","type":"Role","_key":"92591","_from":"14235","_to":"54651"} +{"$label":"ACTS_IN","name":"Felix Hepburn","type":"Role","_key":"43654","_from":"14237","_to":"29135"} +{"$label":"ACTS_IN","name":"Waldm\u00fcller","type":"Role","_key":"93233","_from":"14238","_to":"54923"} +{"$label":"ACTS_IN","name":"Field","type":"Role","_key":"30905","_from":"14238","_to":"21653"} +{"$label":"ACTS_IN","name":"Direktor","type":"Role","_key":"19762","_from":"14238","_to":"14594"} +{"$label":"ACTS_IN","name":"Soldat Herbert","type":"Role","_key":"19272","_from":"14251","_to":"14239"} +{"$label":"ACTS_IN","name":"Soldat Hans","type":"Role","_key":"19271","_from":"14250","_to":"14239"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"19270","_from":"14249","_to":"14239"} +{"$label":"ACTS_IN","name":"Soldat Sascha","type":"Role","_key":"19269","_from":"14248","_to":"14239"} +{"$label":"ACTS_IN","name":"Pilotin","type":"Role","_key":"19268","_from":"14247","_to":"14239"} +{"$label":"ACTS_IN","name":"Sowjet Major","type":"Role","_key":"19267","_from":"14246","_to":"14239"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"19266","_from":"14245","_to":"14239"} +{"$label":"ACTS_IN","name":"Schr\u00f6ter","type":"Role","_key":"19265","_from":"14244","_to":"14239"} +{"$label":"ACTS_IN","name":"Hanna Bartels","type":"Role","_key":"19263","_from":"14243","_to":"14239"} +{"$label":"ACTS_IN","name":"Hauptmann","type":"Role","_key":"19262","_from":"14242","_to":"14239"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"19261","_from":"14241","_to":"14239"} +{"$label":"ACTS_IN","name":"Wera","type":"Role","_key":"19260","_from":"14240","_to":"14239"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"23977","_from":"14241","_to":"17378"} +{"$label":"ACTS_IN","name":"K\u00f6nig Drosselbart","type":"Role","_key":"93789","_from":"14242","_to":"55218"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"88102","_from":"14242","_to":"52285"} +{"$label":"ACTS_IN","name":"Otto Scheidel","type":"Role","_key":"45723","_from":"14242","_to":"30261"} +{"$label":"ACTS_IN","name":"Wild Water Bill","type":"Role","_key":"19464","_from":"14242","_to":"14395"} +{"$label":"ACTS_IN","name":"Oleg der Pole","type":"Role","_key":"19282","_from":"14242","_to":"14252"} +{"$label":"ACTS_IN","name":"Vorsitzender","type":"Role","_key":"19326","_from":"14244","_to":"14285"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"19758","_from":"14245","_to":"14594"} +{"$label":"ACTS_IN","name":"Zidkowski","type":"Role","_key":"19422","_from":"14248","_to":"14363"} +{"$label":"ACTS_IN","name":"Dr. Martin","type":"Role","_key":"19752","_from":"14249","_to":"14594"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"19299","_from":"14249","_to":"14262"} +{"$label":"ACTS_IN","name":"Wasja der Russe","type":"Role","_key":"19287","_from":"14249","_to":"14252"} +{"$label":"ACTS_IN","name":"Kalle Winkler","type":"Role","_key":"19735","_from":"14250","_to":"14580"} +{"$label":"ACTS_IN","name":"Volkspolizist","type":"Role","_key":"19529","_from":"14251","_to":"14436"} +{"$label":"ACTS_IN","name":"Dimitri der Bulgare","type":"Role","_key":"19288","_from":"14251","_to":"14252"} +{"$label":"ACTS_IN","name":"Willi der Deutsche","type":"Role","_key":"19286","_from":"14261","_to":"14252"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"19285","_from":"14260","_to":"14252"} +{"$label":"ACTS_IN","name":"Jose der Spanier","type":"Role","_key":"19283","_from":"14259","_to":"14252"} +{"$label":"ACTS_IN","name":"Sanchez","type":"Role","_key":"19281","_from":"14258","_to":"14252"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"19279","_from":"14257","_to":"14252"} +{"$label":"ACTS_IN","name":"Jirka","type":"Role","_key":"19278","_from":"14256","_to":"14252"} +{"$label":"ACTS_IN","name":"Major Balanos","type":"Role","_key":"19277","_from":"14255","_to":"14252"} +{"$label":"ACTS_IN","name":"Jerri","type":"Role","_key":"19276","_from":"14254","_to":"14252"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"19275","_from":"14253","_to":"14252"} +{"$label":"ACTS_IN","name":"Offizier des K\u00f6nigs","type":"Role","_key":"92582","_from":"14254","_to":"54651"} +{"$label":"ACTS_IN","name":"Bryan","type":"Role","_key":"19382","_from":"14254","_to":"14337"} +{"$label":"ACTS_IN","name":"Kontrolleur","type":"Role","_key":"19521","_from":"14257","_to":"14436"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"19435","_from":"14259","_to":"14373"} +{"$label":"ACTS_IN","name":"Pisurschke","type":"Role","_key":"19405","_from":"14259","_to":"14352"} +{"$label":"ACTS_IN","name":"Herr Maier","type":"Role","_key":"46450","_from":"14261","_to":"30681"} +{"$label":"ACTS_IN","name":"B\u00e4r","type":"Role","_key":"37968","_from":"14261","_to":"25705"} +{"$label":"ACTS_IN","name":"Nachbarin","type":"Role","_key":"19298","_from":"14271","_to":"14262"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"19297","_from":"14270","_to":"14262"} +{"$label":"ACTS_IN","name":"Betriebsredakteurin","type":"Role","_key":"19296","_from":"14269","_to":"14262"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"19295","_from":"14268","_to":"14262"} +{"$label":"ACTS_IN","name":"F\u00fcrsorgerin","type":"Role","_key":"19294","_from":"14267","_to":"14262"} +{"$label":"ACTS_IN","name":"Wirtin","type":"Role","_key":"19293","_from":"14266","_to":"14262"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"19292","_from":"14265","_to":"14262"} +{"$label":"ACTS_IN","name":"Die Cubanerin","type":"Role","_key":"19291","_from":"14264","_to":"14262"} +{"$label":"DIRECTED","_key":"19289","_from":"14263","_to":"14262"} +{"$label":"DIRECTED","_key":"23969","_from":"14263","_to":"17378"} +{"$label":"DIRECTED","_key":"19590","_from":"14263","_to":"14487"} +{"$label":"DIRECTED","_key":"115199","_from":"14265","_to":"67843"} +{"$label":"DIRECTED","_key":"54690","_from":"14265","_to":"35016"} +{"$label":"ACTS_IN","name":"Bandit","type":"Role","_key":"92113","_from":"14265","_to":"54350"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"53147","_from":"14265","_to":"34383"} +{"$label":"ACTS_IN","name":"El Guapo","type":"Role","_key":"49471","_from":"14265","_to":"32393"} +{"$label":"ACTS_IN","name":"Die K\u00f6nigin","type":"Role","_key":"92579","_from":"14266","_to":"54651"} +{"$label":"ACTS_IN","name":"Kr\u00e4uterweib","type":"Role","_key":"89867","_from":"14266","_to":"53173"} +{"$label":"ACTS_IN","name":"Pechmarie","type":"Role","_key":"92607","_from":"14268","_to":"54666"} +{"$label":"ACTS_IN","name":"Lies","type":"Role","_key":"33188","_from":"14268","_to":"22980"} +{"$label":"ACTS_IN","name":"Lindenberg","type":"Role","_key":"19315","_from":"14284","_to":"14272"} +{"$label":"ACTS_IN","name":"Kaspar","type":"Role","_key":"19314","_from":"14283","_to":"14272"} +{"$label":"ACTS_IN","name":"Bodo von Bredow","type":"Role","_key":"19313","_from":"14282","_to":"14272"} +{"$label":"ACTS_IN","name":"Brigitte von Bredow","type":"Role","_key":"19312","_from":"14281","_to":"14272"} +{"$label":"ACTS_IN","name":"Hans-J\u00fcrgen","type":"Role","_key":"19311","_from":"14280","_to":"14272"} +{"$label":"ACTS_IN","name":"Magd Susanne","type":"Role","_key":"19310","_from":"14279","_to":"14272"} +{"$label":"ACTS_IN","name":"Uli","type":"Role","_key":"19309","_from":"14278","_to":"14272"} +{"$label":"ACTS_IN","name":"Ruprecht","type":"Role","_key":"19305","_from":"14277","_to":"14272"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"19304","_from":"14276","_to":"14272"} +{"$label":"ACTS_IN","name":"Magd Meike","type":"Role","_key":"19303","_from":"14275","_to":"14272"} +{"$label":"DIRECTED","_key":"19301","_from":"14274","_to":"14272"} +{"$label":"DIRECTED","_key":"19300","_from":"14273","_to":"14272"} +{"$label":"DIRECTED","_key":"93762","_from":"14273","_to":"55197"} +{"$label":"DIRECTED","_key":"35583","_from":"14273","_to":"24182"} +{"$label":"DIRECTED","_key":"19458","_from":"14273","_to":"14395"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"19760","_from":"14278","_to":"14594"} +{"$label":"ACTS_IN","name":"Frieder","type":"Role","_key":"93777","_from":"14280","_to":"55197"} +{"$label":"ACTS_IN","name":"B\u00fcrger Spiegler","type":"Role","_key":"93806","_from":"14282","_to":"55218"} +{"$label":"ACTS_IN","name":"Soldat Siebert","type":"Role","_key":"93768","_from":"14283","_to":"55197"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"19502","_from":"14283","_to":"14418"} +{"$label":"ACTS_IN","name":"Shunk Wilson","type":"Role","_key":"19473","_from":"14283","_to":"14395"} +{"$label":"ACTS_IN","name":"Figueras","type":"Role","_key":"19374","_from":"14283","_to":"14329"} +{"$label":"ACTS_IN","name":"Bludgeon","type":"Role","_key":"27777","_from":"14284","_to":"19908"} +{"$label":"ACTS_IN","name":"Justizrat Vowinkel","type":"Role","_key":"19566","_from":"14284","_to":"14467"} +{"$label":"ACTS_IN","name":"Major Siebert","type":"Role","_key":"19497","_from":"14284","_to":"14418"} +{"$label":"ACTS_IN","name":"Captain Consadine","type":"Role","_key":"19467","_from":"14284","_to":"14395"} +{"$label":"ACTS_IN","name":"Barro","type":"Role","_key":"19375","_from":"14284","_to":"14329"} +{"$label":"ACTS_IN","name":"junger Mann","type":"Role","_key":"19331","_from":"14296","_to":"14285"} +{"$label":"ACTS_IN","name":"Oberin","type":"Role","_key":"19329","_from":"14295","_to":"14285"} +{"$label":"ACTS_IN","name":"Hridlitschka","type":"Role","_key":"19327","_from":"14294","_to":"14285"} +{"$label":"ACTS_IN","name":"Bachmann","type":"Role","_key":"19325","_from":"14293","_to":"14285"} +{"$label":"ACTS_IN","name":"Mutter von Hrdlitschka","type":"Role","_key":"19324","_from":"14292","_to":"14285"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"19323","_from":"14291","_to":"14285"} +{"$label":"ACTS_IN","name":"Dagmar","type":"Role","_key":"19322","_from":"14290","_to":"14285"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"19321","_from":"14289","_to":"14285"} +{"$label":"ACTS_IN","name":"Geistlicher","type":"Role","_key":"19319","_from":"14288","_to":"14285"} +{"$label":"DIRECTED","_key":"19317","_from":"14287","_to":"14285"} +{"$label":"DIRECTED","_key":"19316","_from":"14286","_to":"14285"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"19466","_from":"14288","_to":"14395"} +{"$label":"ACTS_IN","name":"12. Fee","type":"Role","_key":"92537","_from":"14289","_to":"54617"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"88231","_from":"14292","_to":"52345"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"88105","_from":"14292","_to":"52285"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"70422","_from":"14292","_to":"42879"} +{"$label":"ACTS_IN","name":"Penny Berger","type":"Role","_key":"19595","_from":"14292","_to":"14487"} +{"$label":"ACTS_IN","name":"Stra\u00dfenfeger","type":"Role","_key":"95466","_from":"14294","_to":"56162"} +{"$label":"ACTS_IN","name":"Der Soldat","type":"Role","_key":"92585","_from":"14294","_to":"54651"} +{"$label":"ACTS_IN","name":"OS alias Martin Marten","type":"Role","_key":"23970","_from":"14294","_to":"17378"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"19486","_from":"14294","_to":"14406"} +{"$label":"ACTS_IN","name":"Frau Wolzow","type":"Role","_key":"19672","_from":"14295","_to":"14543"} +{"$label":"ACTS_IN","name":"Mittenzwei","type":"Role","_key":"19455","_from":"14295","_to":"14382"} +{"$label":"ACTS_IN","name":"1. Ritter","type":"Role","_key":"92542","_from":"14296","_to":"54617"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"88103","_from":"14296","_to":"52285"} +{"$label":"ACTS_IN","name":"Arnold Wirth","type":"Role","_key":"40867","_from":"14296","_to":"27503"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"37949","_from":"14296","_to":"25691"} +{"$label":"ACTS_IN","name":"Braut","type":"Role","_key":"19348","_from":"14310","_to":"14297"} +{"$label":"ACTS_IN","name":"Walja Slatkowa","type":"Role","_key":"19347","_from":"14309","_to":"14297"} +{"$label":"ACTS_IN","name":"Vera Brock","type":"Role","_key":"19346","_from":"14308","_to":"14297"} +{"$label":"ACTS_IN","name":"Kari","type":"Role","_key":"19345","_from":"14307","_to":"14297"} +{"$label":"ACTS_IN","name":"Rice","type":"Role","_key":"19344","_from":"14306","_to":"14297"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"19343","_from":"14305","_to":"14297"} +{"$label":"ACTS_IN","name":"Werner Bengsdorf","type":"Role","_key":"19342","_from":"14304","_to":"14297"} +{"$label":"ACTS_IN","name":"Taxichaffeur","type":"Role","_key":"19341","_from":"14303","_to":"14297"} +{"$label":"ACTS_IN","name":"Professor H\u00fclsenbeck","type":"Role","_key":"19338","_from":"14302","_to":"14297"} +{"$label":"ACTS_IN","name":"Slatkow","type":"Role","_key":"19335","_from":"14301","_to":"14297"} +{"$label":"ACTS_IN","name":"Gerti Bengsdorf","type":"Role","_key":"19334","_from":"14300","_to":"14297"} +{"$label":"DIRECTED","_key":"19333","_from":"14299","_to":"14297"} +{"$label":"DIRECTED","_key":"19332","_from":"14298","_to":"14297"} +{"$label":"DIRECTED","_key":"114425","_from":"14299","_to":"67400"} +{"$label":"DIRECTED","_key":"19494","_from":"14299","_to":"14418"} +{"$label":"DIRECTED","_key":"19366","_from":"14299","_to":"14329"} +{"$label":"ACTS_IN","name":"Bogorski","type":"Role","_key":"19425","_from":"14301","_to":"14363"} +{"$label":"ACTS_IN","name":"Pfarrer Eccelius","type":"Role","_key":"19563","_from":"14302","_to":"14467"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"19430","_from":"14302","_to":"14373"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19365","_from":"14327","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19364","_from":"14326","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19363","_from":"14325","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19362","_from":"14324","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19361","_from":"14323","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19360","_from":"14322","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19359","_from":"14321","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19358","_from":"14320","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19356","_from":"14319","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19355","_from":"14318","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19354","_from":"14317","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19353","_from":"14316","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19352","_from":"14315","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19351","_from":"14314","_to":"14311"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19350","_from":"14313","_to":"14311"} +{"$label":"DIRECTED","_key":"19349","_from":"14312","_to":"14311"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19546","_from":"14315","_to":"14449"} +{"$label":"ACTS_IN","name":"Orvis Goodnight","type":"Role","_key":"58302","_from":"14323","_to":"36865"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113584","_from":"14327","_to":"66935"} +{"$label":"ACTS_IN","name":"Commandante Suarez","type":"Role","_key":"19377","_from":"14336","_to":"14329"} +{"$label":"ACTS_IN","name":"Palomino","type":"Role","_key":"19376","_from":"14335","_to":"14329"} +{"$label":"ACTS_IN","name":"Ravelo","type":"Role","_key":"19373","_from":"14334","_to":"14329"} +{"$label":"ACTS_IN","name":"Rodriguez","type":"Role","_key":"19372","_from":"14333","_to":"14329"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"19371","_from":"14332","_to":"14329"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"19369","_from":"14331","_to":"14329"} +{"$label":"ACTS_IN","name":"Pena","type":"Role","_key":"19368","_from":"14330","_to":"14329"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54344","_from":"14331","_to":"34866"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42641","_from":"14331","_to":"28542"} +{"$label":"ACTS_IN","name":"Rodr\u00edguez","type":"Role","_key":"72055","_from":"14334","_to":"43571"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"114422","_from":"14335","_to":"67400"} +{"$label":"ACTS_IN","name":"General Rucker","type":"Role","_key":"19499","_from":"14335","_to":"14418"} +{"$label":"ACTS_IN","name":"Bischof Philippe","type":"Role","_key":"68465","_from":"14336","_to":"41999"} +{"$label":"ACTS_IN","name":"Gustav V\u00f6lpel","type":"Role","_key":"31418","_from":"14336","_to":"21952"} +{"$label":"ACTS_IN","name":"Hager","type":"Role","_key":"20313","_from":"14336","_to":"14883"} +{"$label":"ACTS_IN","name":"Robert Krohn","type":"Role","_key":"19800","_from":"14336","_to":"14619"} +{"$label":"ACTS_IN","name":"Gordon Gray","type":"Role","_key":"19394","_from":"14351","_to":"14337"} +{"$label":"ACTS_IN","name":"Sowjetischer Soldat","type":"Role","_key":"19393","_from":"14350","_to":"14337"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"19392","_from":"14349","_to":"14337"} +{"$label":"ACTS_IN","name":"Jim Leslie","type":"Role","_key":"19391","_from":"14348","_to":"14337"} +{"$label":"ACTS_IN","name":"Sowjetischer Assistenzarzt","type":"Role","_key":"19390","_from":"14347","_to":"14337"} +{"$label":"ACTS_IN","name":"Sowjetischer Soldat","type":"Role","_key":"19389","_from":"14346","_to":"14337"} +{"$label":"ACTS_IN","name":"Brenda Reed","type":"Role","_key":"19388","_from":"14345","_to":"14337"} +{"$label":"ACTS_IN","name":"Sowjetischer Offizier","type":"Role","_key":"19387","_from":"14344","_to":"14337"} +{"$label":"ACTS_IN","name":"Hester","type":"Role","_key":"19386","_from":"14343","_to":"14337"} +{"$label":"ACTS_IN","name":"Bob Harris","type":"Role","_key":"19385","_from":"14342","_to":"14337"} +{"$label":"ACTS_IN","name":"Colonel Reed","type":"Role","_key":"19384","_from":"14341","_to":"14337"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"19383","_from":"14340","_to":"14337"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"19381","_from":"14339","_to":"14337"} +{"$label":"DIRECTED","_key":"19379","_from":"14338","_to":"14337"} +{"$label":"ACTS_IN","name":"Generalmajor Wolzow","type":"Role","_key":"19663","_from":"14341","_to":"14543"} +{"$label":"ACTS_IN","name":"Berggeist","type":"Role","_key":"93817","_from":"14342","_to":"55228"} +{"$label":"ACTS_IN","name":"J\u00f6rg","type":"Role","_key":"93224","_from":"14342","_to":"54923"} +{"$label":"ACTS_IN","name":"Obrist","type":"Role","_key":"92513","_from":"14343","_to":"54601"} +{"$label":"ACTS_IN","name":"Prinz St\u00f6renfried","type":"Role","_key":"33191","_from":"14343","_to":"22980"} +{"$label":"ACTS_IN","name":"G\u00fcnti Schwalbe","type":"Role","_key":"19404","_from":"14351","_to":"14352"} +{"$label":"ACTS_IN","name":"Sprecher","type":"Role","_key":"19410","_from":"14362","_to":"14352"} +{"$label":"ACTS_IN","name":"Hauptmann Pahl","type":"Role","_key":"19408","_from":"14361","_to":"14352"} +{"$label":"ACTS_IN","name":"Dr. H\u00e4rtel","type":"Role","_key":"19407","_from":"14360","_to":"14352"} +{"$label":"ACTS_IN","name":"Koffer-Ede","type":"Role","_key":"19406","_from":"14359","_to":"14352"} +{"$label":"ACTS_IN","name":"Johanna Farkas","type":"Role","_key":"19402","_from":"14358","_to":"14352"} +{"$label":"ACTS_IN","name":"Dr. Schie\u00dfer","type":"Role","_key":"19401","_from":"14357","_to":"14352"} +{"$label":"ACTS_IN","name":"Frau Schlosser","type":"Role","_key":"19400","_from":"14356","_to":"14352"} +{"$label":"ACTS_IN","name":"Leutnant Liebrecht","type":"Role","_key":"19398","_from":"14355","_to":"14352"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"19397","_from":"14354","_to":"14352"} +{"$label":"DIRECTED","_key":"19395","_from":"14353","_to":"14352"} +{"$label":"ACTS_IN","name":"G\u00fcnter Reisch","type":"Role","_key":"22739","_from":"14353","_to":"16483"} +{"$label":"DIRECTED","_key":"19426","_from":"14353","_to":"14373"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"20312","_from":"14354","_to":"14883"} +{"$label":"ACTS_IN","name":"Ruth Bodenheim","type":"Role","_key":"19751","_from":"14354","_to":"14594"} +{"$label":"ACTS_IN","name":"Ute Lockhoff","type":"Role","_key":"19723","_from":"14354","_to":"14580"} +{"$label":"ACTS_IN","name":"Uta Barnim","type":"Role","_key":"19658","_from":"14354","_to":"14543"} +{"$label":"ACTS_IN","name":"Li","type":"Role","_key":"19591","_from":"14354","_to":"14487"} +{"$label":"ACTS_IN","name":"Ursula Hradschek","type":"Role","_key":"19562","_from":"14354","_to":"14467"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"19518","_from":"14354","_to":"14436"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"19495","_from":"14354","_to":"14418"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"19480","_from":"14354","_to":"14406"} +{"$label":"ACTS_IN","name":"Wirtin","type":"Role","_key":"19519","_from":"14356","_to":"14436"} +{"$label":"ACTS_IN","name":"Vogt","type":"Role","_key":"93829","_from":"14357","_to":"55237"} +{"$label":"ACTS_IN","name":"Der Dicke","type":"Role","_key":"92584","_from":"14357","_to":"54651"} +{"$label":"ACTS_IN","name":"Lion","type":"Role","_key":"19757","_from":"14360","_to":"14594"} +{"$label":"ACTS_IN","name":"L\u00e4ufer","type":"Role","_key":"92514","_from":"14361","_to":"54601"} +{"$label":"ACTS_IN","name":"Bochow","type":"Role","_key":"19424","_from":"14372","_to":"14363"} +{"$label":"ACTS_IN","name":"Kopinski","type":"Role","_key":"19423","_from":"14371","_to":"14363"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"19421","_from":"14370","_to":"14363"} +{"$label":"ACTS_IN","name":"Schwahl","type":"Role","_key":"19420","_from":"14369","_to":"14363"} +{"$label":"ACTS_IN","name":"Kodiczek","type":"Role","_key":"19419","_from":"14368","_to":"14363"} +{"$label":"ACTS_IN","name":"Pribula","type":"Role","_key":"19418","_from":"14367","_to":"14363"} +{"$label":"ACTS_IN","name":"Kluttig","type":"Role","_key":"19417","_from":"14366","_to":"14363"} +{"$label":"ACTS_IN","name":"Reineboth","type":"Role","_key":"19416","_from":"14365","_to":"14363"} +{"$label":"ACTS_IN","name":"Zweiling","type":"Role","_key":"19415","_from":"14364","_to":"14363"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"93824","_from":"14365","_to":"55228"} +{"$label":"ACTS_IN","name":"Benno","type":"Role","_key":"23976","_from":"14365","_to":"17378"} +{"$label":"ACTS_IN","name":"Oberleutnant der NVA","type":"Role","_key":"19597","_from":"14365","_to":"14487"} +{"$label":"ACTS_IN","name":"Abel Hradschek","type":"Role","_key":"19570","_from":"14365","_to":"14467"} +{"$label":"ACTS_IN","name":"Rittmeister von Bl\u00f6tzow","type":"Role","_key":"42701","_from":"14366","_to":"28577"} +{"$label":"ACTS_IN","name":"Dietmar Freiherr von Fredersdorff-L\u00fctzenheim","type":"Role","_key":"19434","_from":"14366","_to":"14373"} +{"$label":"ACTS_IN","name":"Young Boy","type":"Role","_key":"70212","_from":"14367","_to":"42792"} +{"$label":"ACTS_IN","name":"W\u0142adys\u0142aw Kargul","type":"Role","_key":"48449","_from":"14368","_to":"31792"} +{"$label":"ACTS_IN","name":"Jule","type":"Role","_key":"45725","_from":"14368","_to":"30261"} +{"$label":"ACTS_IN","name":"Dorfschulze Woytasch","type":"Role","_key":"19573","_from":"14369","_to":"14467"} +{"$label":"ACTS_IN","name":"Dr. Jonas","type":"Role","_key":"19439","_from":"14381","_to":"14373"} +{"$label":"ACTS_IN","name":"Oberwachmeister Schwankauz","type":"Role","_key":"19438","_from":"14380","_to":"14373"} +{"$label":"ACTS_IN","name":"Bleurop Mitarbeiter","type":"Role","_key":"19437","_from":"14379","_to":"14373"} +{"$label":"ACTS_IN","name":"Cilly","type":"Role","_key":"19436","_from":"14378","_to":"14373"} +{"$label":"ACTS_IN","name":"Kollegin K\u00fchn","type":"Role","_key":"19432","_from":"14377","_to":"14373"} +{"$label":"ACTS_IN","name":"Eberhard Kurz","type":"Role","_key":"19431","_from":"14376","_to":"14373"} +{"$label":"DIRECTED","_key":"19428","_from":"14375","_to":"14373"} +{"$label":"DIRECTED","_key":"19427","_from":"14374","_to":"14373"} +{"$label":"DIRECTED","_key":"19459","_from":"14374","_to":"14395"} +{"$label":"ACTS_IN","name":"Mutter Berlinger","type":"Role","_key":"41960","_from":"14377","_to":"28111"} +{"$label":"ACTS_IN","name":"Helga Reichenbach","type":"Role","_key":"19727","_from":"14377","_to":"14580"} +{"$label":"ACTS_IN","name":"Frau Gomulka","type":"Role","_key":"19662","_from":"14377","_to":"14543"} +{"$label":"ACTS_IN","name":"Ochsenknecht","type":"Role","_key":"93845","_from":"14381","_to":"55237"} +{"$label":"ACTS_IN","name":"Karl Heinz Brenner","type":"Role","_key":"91627","_from":"14381","_to":"54028"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27800","_from":"14381","_to":"19908"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"20524","_from":"14381","_to":"15010"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"19479","_from":"14381","_to":"14406"} +{"$label":"ACTS_IN","name":"Zeiske","type":"Role","_key":"19457","_from":"14381","_to":"14382"} +{"$label":"ACTS_IN","name":"Frau Seebohm","type":"Role","_key":"19456","_from":"14394","_to":"14382"} +{"$label":"ACTS_IN","name":"Mei\u00dfner","type":"Role","_key":"19454","_from":"14393","_to":"14382"} +{"$label":"ACTS_IN","name":"Frau Kraus","type":"Role","_key":"19452","_from":"14392","_to":"14382"} +{"$label":"ACTS_IN","name":"Empfangsmann","type":"Role","_key":"19451","_from":"14391","_to":"14382"} +{"$label":"ACTS_IN","name":"Gudrun","type":"Role","_key":"19449","_from":"14390","_to":"14382"} +{"$label":"ACTS_IN","name":"Mitteiler","type":"Role","_key":"19448","_from":"14389","_to":"14382"} +{"$label":"ACTS_IN","name":"Lautenschl\u00e4ger","type":"Role","_key":"19447","_from":"14388","_to":"14382"} +{"$label":"ACTS_IN","name":"Der Fremde","type":"Role","_key":"19446","_from":"14387","_to":"14382"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"19444","_from":"14386","_to":"14382"} +{"$label":"ACTS_IN","name":"Zierliche Alte","type":"Role","_key":"19442","_from":"14385","_to":"14382"} +{"$label":"DIRECTED","_key":"19441","_from":"14384","_to":"14382"} +{"$label":"DIRECTED","_key":"19440","_from":"14383","_to":"14382"} +{"$label":"DIRECTED","_key":"27771","_from":"14384","_to":"19908"} +{"$label":"DIRECTED","_key":"24095","_from":"14384","_to":"17475"} +{"$label":"DIRECTED","_key":"19476","_from":"14384","_to":"14406"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"67858","_from":"14386","_to":"41693"} +{"$label":"ACTS_IN","name":"Franziska","type":"Role","_key":"20572","_from":"14386","_to":"15054"} +{"$label":"ACTS_IN","name":"Big Burke","type":"Role","_key":"19475","_from":"14405","_to":"14395"} +{"$label":"ACTS_IN","name":"Sprecher","type":"Role","_key":"19474","_from":"14404","_to":"14395"} +{"$label":"ACTS_IN","name":"Gro\u00dfgewachsener","type":"Role","_key":"19472","_from":"14403","_to":"14395"} +{"$label":"ACTS_IN","name":"Croupier","type":"Role","_key":"19471","_from":"14402","_to":"14395"} +{"$label":"ACTS_IN","name":"Colonel Bowie","type":"Role","_key":"19470","_from":"14401","_to":"14395"} +{"$label":"ACTS_IN","name":"O`Hara","type":"Role","_key":"19469","_from":"14400","_to":"14395"} +{"$label":"ACTS_IN","name":"Louis Gastell","type":"Role","_key":"19468","_from":"14399","_to":"14395"} +{"$label":"ACTS_IN","name":"Lucille Arral","type":"Role","_key":"19463","_from":"14398","_to":"14395"} +{"$label":"ACTS_IN","name":"Joy Gastell","type":"Role","_key":"19461","_from":"14397","_to":"14395"} +{"$label":"ACTS_IN","name":"Kit Bellow","type":"Role","_key":"19460","_from":"14396","_to":"14395"} +{"$label":"ACTS_IN","name":"Dean Reed","type":"Role","_key":"22729","_from":"14396","_to":"16483"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"39558","_from":"14397","_to":"26731"} +{"$label":"ACTS_IN","name":"Maren Zeidler","type":"Role","_key":"22738","_from":"14397","_to":"16483"} +{"$label":"ACTS_IN","name":"Gundel Thei\u00df","type":"Role","_key":"19667","_from":"14398","_to":"14543"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37974","_from":"14403","_to":"25710"} +{"$label":"ACTS_IN","name":"Liebhaber der Sch\u00f6nen","type":"Role","_key":"19490","_from":"14403","_to":"14406"} +{"$label":"ACTS_IN","name":"Ochsenbesitzer","type":"Role","_key":"93842","_from":"14405","_to":"55237"} +{"$label":"ACTS_IN","name":"Hauptmann des K\u00f6nigs","type":"Role","_key":"33194","_from":"14405","_to":"22980"} +{"$label":"ACTS_IN","name":"Kollege","type":"Role","_key":"19493","_from":"14416","_to":"14406"} +{"$label":"ACTS_IN","name":"Die Sch\u00f6ne","type":"Role","_key":"19492","_from":"14415","_to":"14406"} +{"$label":"ACTS_IN","name":"Frau Knuth","type":"Role","_key":"19491","_from":"14414","_to":"14406"} +{"$label":"ACTS_IN","name":"Schmidt","type":"Role","_key":"19489","_from":"14413","_to":"14406"} +{"$label":"ACTS_IN","name":"Kumpel","type":"Role","_key":"19488","_from":"14412","_to":"14406"} +{"$label":"ACTS_IN","name":"Frau des Schie\u00dfbudenbesitzers","type":"Role","_key":"19487","_from":"14411","_to":"14406"} +{"$label":"ACTS_IN","name":"Schie\u00dfbudenbesitzer","type":"Role","_key":"19484","_from":"14410","_to":"14406"} +{"$label":"ACTS_IN","name":"Michael - Pauls Sohn","type":"Role","_key":"19483","_from":"14409","_to":"14406"} +{"$label":"ACTS_IN","name":"Der blonde Martin","type":"Role","_key":"19482","_from":"14408","_to":"14406"} +{"$label":"DIRECTED","_key":"19477","_from":"14407","_to":"14406"} +{"$label":"ACTS_IN","name":"Gendarm Geelhaar","type":"Role","_key":"19575","_from":"14408","_to":"14467"} +{"$label":"ACTS_IN","name":"Connys Vater","type":"Role","_key":"19736","_from":"14410","_to":"14580"} +{"$label":"ACTS_IN","name":"Ulrike","type":"Role","_key":"93833","_from":"14411","_to":"55237"} +{"$label":"ACTS_IN","name":"Polizist Zampe","type":"Role","_key":"95468","_from":"14412","_to":"56162"} +{"$label":"ACTS_IN","name":"Lt. Forsythe","type":"Role","_key":"27793","_from":"14412","_to":"19908"} +{"$label":"ACTS_IN","name":"Manuela von Meinhardis","type":"Role","_key":"55298","_from":"14414","_to":"35260"} +{"$label":"ACTS_IN","name":"Leperret","type":"Role","_key":"19508","_from":"14427","_to":"14418"} +{"$label":"ACTS_IN","name":"Geheimdinstler","type":"Role","_key":"19507","_from":"14426","_to":"14418"} +{"$label":"ACTS_IN","name":"Heinemann","type":"Role","_key":"19506","_from":"14425","_to":"14418"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"19505","_from":"14424","_to":"14418"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"19504","_from":"14423","_to":"14418"} +{"$label":"ACTS_IN","name":"Moulinier","type":"Role","_key":"19503","_from":"14422","_to":"14418"} +{"$label":"ACTS_IN","name":"Georgette","type":"Role","_key":"19500","_from":"14421","_to":"14418"} +{"$label":"ACTS_IN","name":"Bourguignon","type":"Role","_key":"19498","_from":"14420","_to":"14418"} +{"$label":"ACTS_IN","name":"Klaus Wetzlaff","type":"Role","_key":"19496","_from":"14419","_to":"14418"} +{"$label":"ACTS_IN","name":"Prinz Kasimir","type":"Role","_key":"93794","_from":"14419","_to":"55218"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"19759","_from":"14419","_to":"14594"} +{"$label":"ACTS_IN","name":"Sepp Gomulka","type":"Role","_key":"19668","_from":"14419","_to":"14543"} +{"$label":"ACTS_IN","name":"un bagnard","type":"Role","_key":"31558","_from":"14420","_to":"22027"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37958","_from":"14425","_to":"25697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19513","_from":"14433","_to":"14428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19512","_from":"14432","_to":"14428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19511","_from":"14431","_to":"14428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19510","_from":"14430","_to":"14428"} +{"$label":"DIRECTED","_key":"19509","_from":"14429","_to":"14428"} +{"$label":"DIRECTED","_key":"19514","_from":"14435","_to":"14434"} +{"$label":"ACTS_IN","name":"Friedchen","type":"Role","_key":"19532","_from":"14448","_to":"14436"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"19531","_from":"14447","_to":"14436"} +{"$label":"ACTS_IN","name":"Bauernbursche","type":"Role","_key":"19530","_from":"14446","_to":"14436"} +{"$label":"ACTS_IN","name":"Volkspolizist","type":"Role","_key":"19528","_from":"14445","_to":"14436"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"19527","_from":"14444","_to":"14436"} +{"$label":"ACTS_IN","name":"Gemulf","type":"Role","_key":"19526","_from":"14443","_to":"14436"} +{"$label":"ACTS_IN","name":"B\u00e4uerin","type":"Role","_key":"19525","_from":"14442","_to":"14436"} +{"$label":"ACTS_IN","name":"Dr. Denker","type":"Role","_key":"19524","_from":"14441","_to":"14436"} +{"$label":"ACTS_IN","name":"Teichert","type":"Role","_key":"19523","_from":"14440","_to":"14436"} +{"$label":"ACTS_IN","name":"Autoschlossermeister","type":"Role","_key":"19522","_from":"14439","_to":"14436"} +{"$label":"ACTS_IN","name":"Spiessack","type":"Role","_key":"19517","_from":"14438","_to":"14436"} +{"$label":"DIRECTED","_key":"19516","_from":"14437","_to":"14436"} +{"$label":"ACTS_IN","name":"Reiter des K\u00f6nigs","type":"Role","_key":"33195","_from":"14439","_to":"22980"} +{"$label":"ACTS_IN","name":"Bertram","type":"Role","_key":"93822","_from":"14447","_to":"55228"} +{"$label":"ACTS_IN","name":"K\u00f6nig Heinz Eduard","type":"Role","_key":"93791","_from":"14447","_to":"55218"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"92531","_from":"14447","_to":"54617"} +{"$label":"ACTS_IN","name":"Samuel \"Sam\" Blake","type":"Role","_key":"35580","_from":"14447","_to":"24182"} +{"$label":"ACTS_IN","name":"Sam Blake","type":"Role","_key":"27781","_from":"14447","_to":"19908"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"24046","_from":"14447","_to":"17420"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Lieban","type":"Role","_key":"19764","_from":"14447","_to":"14594"} +{"$label":"ACTS_IN","name":"Schauspielerin Eleonore Dusche","type":"Role","_key":"42705","_from":"14448","_to":"28577"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19549","_from":"14465","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19548","_from":"14464","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19547","_from":"14463","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19545","_from":"14462","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19544","_from":"14461","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19543","_from":"14460","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19542","_from":"14459","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19541","_from":"14458","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19540","_from":"14457","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19539","_from":"14456","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19538","_from":"14455","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19537","_from":"14454","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19536","_from":"14453","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19535","_from":"14452","_to":"14449"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"19534","_from":"14451","_to":"14449"} +{"$label":"DIRECTED","_key":"19533","_from":"14450","_to":"14449"} +{"$label":"ACTS_IN","name":"Frau Mietzel","type":"Role","_key":"19574","_from":"14477","_to":"14467"} +{"$label":"ACTS_IN","name":"Male","type":"Role","_key":"19572","_from":"14476","_to":"14467"} +{"$label":"ACTS_IN","name":"Mutter Jeschken","type":"Role","_key":"19571","_from":"14475","_to":"14467"} +{"$label":"ACTS_IN","name":"Bauer Mietzel","type":"Role","_key":"19568","_from":"14474","_to":"14467"} +{"$label":"ACTS_IN","name":"M\u00fcller Quass","type":"Role","_key":"19565","_from":"14473","_to":"14467"} +{"$label":"ACTS_IN","name":"Ede","type":"Role","_key":"19564","_from":"14472","_to":"14467"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"19561","_from":"14471","_to":"14467"} +{"$label":"DIRECTED","_key":"19560","_from":"14470","_to":"14467"} +{"$label":"DIRECTED","_key":"19559","_from":"14469","_to":"14467"} +{"$label":"DIRECTED","_key":"19558","_from":"14468","_to":"14467"} +{"$label":"ACTS_IN","name":"Wunderdoktor","type":"Role","_key":"93844","_from":"14469","_to":"55237"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42492","_from":"14474","_to":"28443"} +{"$label":"ACTS_IN","name":"Christian Vetter","type":"Role","_key":"19671","_from":"14474","_to":"14543"} +{"$label":"ACTS_IN","name":"Struppel","type":"Role","_key":"19605","_from":"14474","_to":"14487"} +{"$label":"ACTS_IN","name":"Appel","type":"Role","_key":"19589","_from":"14486","_to":"14478"} +{"$label":"ACTS_IN","name":"Kosske","type":"Role","_key":"19588","_from":"14485","_to":"14478"} +{"$label":"ACTS_IN","name":"Grenzer","type":"Role","_key":"19587","_from":"14484","_to":"14478"} +{"$label":"ACTS_IN","name":"Sabrina","type":"Role","_key":"19586","_from":"14483","_to":"14478"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"19583","_from":"14482","_to":"14478"} +{"$label":"ACTS_IN","name":"Onkel Heinz","type":"Role","_key":"19582","_from":"14481","_to":"14478"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"19580","_from":"14480","_to":"14478"} +{"$label":"DIRECTED","_key":"19576","_from":"14479","_to":"14478"} +{"$label":"DIRECTED","_key":"70347","_from":"14479","_to":"42854"} +{"$label":"DIRECTED","_key":"37101","_from":"14479","_to":"25144"} +{"$label":"DIRECTED","_key":"30970","_from":"14479","_to":"21698"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"52954","_from":"14479","_to":"34308"} +{"$label":"ACTS_IN","name":"Dr. Fazetti","type":"Role","_key":"52739","_from":"14479","_to":"34223"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"37114","_from":"14479","_to":"25144"} +{"$label":"ACTS_IN","name":"Katharina Baumann","type":"Role","_key":"63134","_from":"14480","_to":"39598"} +{"$label":"ACTS_IN","name":"Birgit Sacher","type":"Role","_key":"50868","_from":"14480","_to":"33205"} +{"$label":"ACTS_IN","name":"Hauptfeldwebel Futterknecht","type":"Role","_key":"70343","_from":"14481","_to":"42854"} +{"$label":"ACTS_IN","name":"Schwester Sonja","type":"Role","_key":"70345","_from":"14482","_to":"42854"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"37104","_from":"14482","_to":"25144"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"30980","_from":"14482","_to":"21698"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"91416","_from":"14486","_to":"53912"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"43493","_from":"14486","_to":"29044"} +{"$label":"ACTS_IN","name":"Macky","type":"Role","_key":"19604","_from":"14498","_to":"14487"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"19603","_from":"14497","_to":"14487"} +{"$label":"ACTS_IN","name":"Gunter Rist","type":"Role","_key":"19602","_from":"14496","_to":"14487"} +{"$label":"ACTS_IN","name":"Kalle","type":"Role","_key":"19601","_from":"14495","_to":"14487"} +{"$label":"ACTS_IN","name":"Zatopek","type":"Role","_key":"19600","_from":"14494","_to":"14487"} +{"$label":"ACTS_IN","name":"Mutter von Li","type":"Role","_key":"19599","_from":"14493","_to":"14487"} +{"$label":"ACTS_IN","name":"Bob Hasslinger","type":"Role","_key":"19598","_from":"14492","_to":"14487"} +{"$label":"ACTS_IN","name":"Blondine","type":"Role","_key":"19596","_from":"14491","_to":"14487"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"19594","_from":"14490","_to":"14487"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"19593","_from":"14489","_to":"14487"} +{"$label":"ACTS_IN","name":"Prof. Berger","type":"Role","_key":"19592","_from":"14488","_to":"14487"} +{"$label":"ACTS_IN","name":"K\u00f6nig L\u00f6wenzahn","type":"Role","_key":"93790","_from":"14488","_to":"55218"} +{"$label":"ACTS_IN","name":"Zwischenzahl","type":"Role","_key":"19754","_from":"14488","_to":"14594"} +{"$label":"ACTS_IN","name":"Rechtsanwalt Gomulka","type":"Role","_key":"19660","_from":"14488","_to":"14543"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"92609","_from":"14490","_to":"54666"} +{"$label":"ACTS_IN","name":"Peter Wiese","type":"Role","_key":"19666","_from":"14495","_to":"14543"} +{"$label":"ACTS_IN","name":"Begleitmusiker","type":"Role","_key":"19615","_from":"14509","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19614","_from":"14508","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19613","_from":"14507","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19612","_from":"14506","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19611","_from":"14505","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19610","_from":"14504","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19609","_from":"14503","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19608","_from":"14502","_to":"14499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19607","_from":"14501","_to":"14499"} +{"$label":"DIRECTED","_key":"19606","_from":"14500","_to":"14499"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19633","_from":"14528","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19632","_from":"14527","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19631","_from":"14526","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19630","_from":"14525","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19629","_from":"14524","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19628","_from":"14523","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19627","_from":"14522","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19626","_from":"14521","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19625","_from":"14520","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19624","_from":"14519","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19623","_from":"14518","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19622","_from":"14517","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19621","_from":"14516","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19620","_from":"14515","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19619","_from":"14514","_to":"14510"} +{"$label":"ACTS_IN","name":"Musik","type":"Role","_key":"19618","_from":"14513","_to":"14510"} +{"$label":"ACTS_IN","name":"Sprecher","type":"Role","_key":"19617","_from":"14512","_to":"14510"} +{"$label":"DIRECTED","_key":"19616","_from":"14511","_to":"14510"} +{"$label":"ACTS_IN","name":"Subaru Kid 1","type":"Role","_key":"57911","_from":"14523","_to":"36634"} +{"$label":"ACTS_IN","name":"Dr. Matthew Robertson","type":"Role","_key":"19646","_from":"14533","_to":"14529"} +{"$label":"ACTS_IN","name":"Nurse Tanya","type":"Role","_key":"19645","_from":"14532","_to":"14529"} +{"$label":"ACTS_IN","name":"Det. Dana Harris","type":"Role","_key":"19638","_from":"14531","_to":"14529"} +{"$label":"DIRECTED","_key":"19634","_from":"14530","_to":"14529"} +{"$label":"DIRECTED","_key":"88315","_from":"14530","_to":"52376"} +{"$label":"DIRECTED","_key":"69969","_from":"14530","_to":"42682"} +{"$label":"DIRECTED","_key":"67638","_from":"14530","_to":"41624"} +{"$label":"DIRECTED","_key":"64694","_from":"14530","_to":"40291"} +{"$label":"DIRECTED","_key":"50992","_from":"14530","_to":"33287"} +{"$label":"ACTS_IN","name":"Sylvia Marpole: the Head College Librarian (voice)","type":"Role","_key":"105310","_from":"14531","_to":"61968"} +{"$label":"ACTS_IN","name":"Alison Ritchie","type":"Role","_key":"90741","_from":"14531","_to":"53556"} +{"$label":"ACTS_IN","name":"Lauren Adler","type":"Role","_key":"88351","_from":"14531","_to":"52386"} +{"$label":"ACTS_IN","name":"Camille Scott","type":"Role","_key":"67959","_from":"14531","_to":"41761"} +{"$label":"ACTS_IN","name":"Julia Manchevering","type":"Role","_key":"54288","_from":"14531","_to":"34846"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"72993","_from":"14533","_to":"43930"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19650","_from":"14538","_to":"14534"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19649","_from":"14537","_to":"14534"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19648","_from":"14536","_to":"14534"} +{"$label":"DIRECTED","_key":"19647","_from":"14535","_to":"14534"} +{"$label":"ACTS_IN","name":"Musiker","type":"Role","_key":"37561","_from":"14536","_to":"25461"} +{"$label":"ACTS_IN","name":"Musiker","type":"Role","_key":"37568","_from":"14537","_to":"25461"} +{"$label":"ACTS_IN","name":"Musiker","type":"Role","_key":"37562","_from":"14538","_to":"25461"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"19654","_from":"14542","_to":"14540"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"19652","_from":"14541","_to":"14540"} +{"$label":"ACTS_IN","name":"Harry Winterslo","type":"Role","_key":"27746","_from":"14541","_to":"19880"} +{"$label":"ACTS_IN","name":"Mr. Bennet","type":"Role","_key":"120097","_from":"14542","_to":"70530"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"116646","_from":"14542","_to":"68665"} +{"$label":"ACTS_IN","name":"Rev Brook Bridges","type":"Role","_key":"114873","_from":"14542","_to":"67661"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"111518","_from":"14542","_to":"65842"} +{"$label":"ACTS_IN","name":"Charles Pollock","type":"Role","_key":"97079","_from":"14542","_to":"57107"} +{"$label":"ACTS_IN","name":"Young John Bayley","type":"Role","_key":"72570","_from":"14542","_to":"43761"} +{"$label":"ACTS_IN","name":"Mr. Rushworth","type":"Role","_key":"63004","_from":"14542","_to":"39550"} +{"$label":"ACTS_IN","name":"Fraser McBride","type":"Role","_key":"60488","_from":"14542","_to":"38170"} +{"$label":"ACTS_IN","name":"SS-Mann","type":"Role","_key":"19670","_from":"14551","_to":"14543"} +{"$label":"ACTS_IN","name":"Milena","type":"Role","_key":"19669","_from":"14550","_to":"14543"} +{"$label":"ACTS_IN","name":"Frau Wiese","type":"Role","_key":"19665","_from":"14549","_to":"14543"} +{"$label":"ACTS_IN","name":"Professor Holt","type":"Role","_key":"19664","_from":"14548","_to":"14543"} +{"$label":"ACTS_IN","name":"Marie Kr\u00fcger","type":"Role","_key":"19661","_from":"14547","_to":"14543"} +{"$label":"ACTS_IN","name":"Gertie Ziesche","type":"Role","_key":"19659","_from":"14546","_to":"14543"} +{"$label":"ACTS_IN","name":"Werner Holt","type":"Role","_key":"19656","_from":"14545","_to":"14543"} +{"$label":"DIRECTED","_key":"19655","_from":"14544","_to":"14543"} +{"$label":"ACTS_IN","name":"Frau Lockhoff","type":"Role","_key":"19737","_from":"14549","_to":"14580"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"19681","_from":"14557","_to":"14552"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"19679","_from":"14556","_to":"14552"} +{"$label":"ACTS_IN","name":"Bill Stone","type":"Role","_key":"19678","_from":"14555","_to":"14552"} +{"$label":"ACTS_IN","name":"Charlie Sumner","type":"Role","_key":"19677","_from":"14554","_to":"14552"} +{"$label":"ACTS_IN","name":"Paul Martel","type":"Role","_key":"19676","_from":"14553","_to":"14552"} +{"$label":"ACTS_IN","name":"Angelo Pardi","type":"Role","_key":"72501","_from":"14553","_to":"43740"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"60305","_from":"14553","_to":"38030"} +{"$label":"ACTS_IN","name":"Alex Montel","type":"Role","_key":"52634","_from":"14553","_to":"34193"} +{"$label":"ACTS_IN","name":"Lazaro Gomez Carilles","type":"Role","_key":"35505","_from":"14553","_to":"24144"} +{"$label":"ACTS_IN","name":"Spike Frohmeyer","type":"Role","_key":"95819","_from":"14554","_to":"56354"} +{"$label":"ACTS_IN","name":"Connie Posey","type":"Role","_key":"107824","_from":"14557","_to":"63677"} +{"$label":"ACTS_IN","name":"Nicole Horne","type":"Role","_key":"92182","_from":"14557","_to":"54404"} +{"$label":"ACTS_IN","name":"Mrs. Letham","type":"Role","_key":"48006","_from":"14557","_to":"31581"} +{"$label":"ACTS_IN","name":"Margo","type":"Role","_key":"45561","_from":"14557","_to":"30161"} +{"$label":"ACTS_IN","name":"Tatiana","type":"Role","_key":"19694","_from":"14563","_to":"14558"} +{"$label":"ACTS_IN","name":"Soyka","type":"Role","_key":"19693","_from":"14562","_to":"14558"} +{"$label":"ACTS_IN","name":"Azim","type":"Role","_key":"19692","_from":"14561","_to":"14558"} +{"$label":"ACTS_IN","name":"Ekren","type":"Role","_key":"19691","_from":"14560","_to":"14558"} +{"$label":"ACTS_IN","name":"Stepan","type":"Role","_key":"19690","_from":"14559","_to":"14558"} +{"$label":"ACTS_IN","name":"Colonel Chaiko","type":"Role","_key":"106941","_from":"14559","_to":"63051"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"121186","_from":"14560","_to":"71185"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"69905","_from":"14560","_to":"42644"} +{"$label":"ACTS_IN","name":"Thomas Arnold","type":"Role","_key":"19721","_from":"14579","_to":"14564"} +{"$label":"ACTS_IN","name":"Heimeran Schenk Graf von Stauffenberg","type":"Role","_key":"19720","_from":"14578","_to":"14564"} +{"$label":"ACTS_IN","name":"Berthold Schenk Graf von Stauffenberg","type":"Role","_key":"19719","_from":"14577","_to":"14564"} +{"$label":"ACTS_IN","name":"Leutnant Hans Wilhelm Hagen","type":"Role","_key":"19718","_from":"14576","_to":"14564"} +{"$label":"ACTS_IN","name":"Werner von Haeften","type":"Role","_key":"19716","_from":"14575","_to":"14564"} +{"$label":"ACTS_IN","name":"SS-Adjutant von Henning von Tresckow","type":"Role","_key":"19715","_from":"14574","_to":"14564"} +{"$label":"ACTS_IN","name":"SS-Major","type":"Role","_key":"19714","_from":"14573","_to":"14564"} +{"$label":"ACTS_IN","name":"SS-Soldat","type":"Role","_key":"19713","_from":"14572","_to":"14564"} +{"$label":"ACTS_IN","name":"Ernst-John Von Freyend","type":"Role","_key":"19711","_from":"14571","_to":"14564"} +{"$label":"ACTS_IN","name":"Albert Speer","type":"Role","_key":"19710","_from":"14570","_to":"14564"} +{"$label":"ACTS_IN","name":"Margarethe Van Oven","type":"Role","_key":"19709","_from":"14569","_to":"14564"} +{"$label":"ACTS_IN","name":"Heinrich Himmler","type":"Role","_key":"19708","_from":"14568","_to":"14564"} +{"$label":"ACTS_IN","name":"Hermann G\u00f6ring","type":"Role","_key":"19707","_from":"14567","_to":"14564"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"19702","_from":"14566","_to":"14564"} +{"$label":"ACTS_IN","name":"Nina Schenk Gr\u00e4fin von Stauffenberg","type":"Role","_key":"19697","_from":"14565","_to":"14564"} +{"$label":"ACTS_IN","name":"Jane Van Dopp","type":"Role","_key":"105756","_from":"14565","_to":"62258"} +{"$label":"ACTS_IN","name":"Rachel Stein \/ Ellis de Vries","type":"Role","_key":"52412","_from":"14565","_to":"34105"} +{"$label":"ACTS_IN","name":"Kiki Jollema","type":"Role","_key":"37517","_from":"14565","_to":"25430"} +{"$label":"ACTS_IN","name":"Bastl","type":"Role","_key":"91675","_from":"14568","_to":"54072"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"42629","_from":"14568","_to":"28533"} +{"$label":"ACTS_IN","name":"Kubalke","type":"Role","_key":"31142","_from":"14568","_to":"21794"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"52415","_from":"14569","_to":"34105"} +{"$label":"ACTS_IN","name":"Ackerman","type":"Role","_key":"110340","_from":"14571","_to":"65199"} +{"$label":"ACTS_IN","name":"Cyrell","type":"Role","_key":"57979","_from":"14571","_to":"36679"} +{"$label":"ACTS_IN","name":"Scripps","type":"Role","_key":"50265","_from":"14575","_to":"32841"} +{"$label":"ACTS_IN","name":"Knut Wandel","type":"Role","_key":"90480","_from":"14576","_to":"53453"} +{"$label":"ACTS_IN","name":"Gefreiter Gappa","type":"Role","_key":"88225","_from":"14576","_to":"52345"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"38422","_from":"14576","_to":"25944"} +{"$label":"ACTS_IN","name":"Mr. Flynn","type":"Role","_key":"23990","_from":"14579","_to":"17389"} +{"$label":"ACTS_IN","name":"Rudi Stamann","type":"Role","_key":"19734","_from":"14590","_to":"14580"} +{"$label":"ACTS_IN","name":"Lilo","type":"Role","_key":"19733","_from":"14589","_to":"14580"} +{"$label":"ACTS_IN","name":"Conny`s Stiefmutter","type":"Role","_key":"19732","_from":"14588","_to":"14580"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"19731","_from":"14587","_to":"14580"} +{"$label":"ACTS_IN","name":"Katja Drechsler","type":"Role","_key":"19730","_from":"14586","_to":"14580"} +{"$label":"ACTS_IN","name":"Gustav Klemm","type":"Role","_key":"19728","_from":"14585","_to":"14580"} +{"$label":"ACTS_IN","name":"Flaake","type":"Role","_key":"19726","_from":"14584","_to":"14580"} +{"$label":"ACTS_IN","name":"Lotti","type":"Role","_key":"19725","_from":"14583","_to":"14580"} +{"$label":"ACTS_IN","name":"Konrad \" Conny \" Schenk","type":"Role","_key":"19724","_from":"14582","_to":"14580"} +{"$label":"DIRECTED","_key":"19722","_from":"14581","_to":"14580"} +{"$label":"ACTS_IN","name":"Schlo\u00dfg\u00e4rtner","type":"Role","_key":"92549","_from":"14584","_to":"54617"} +{"$label":"ACTS_IN","name":"Erich Pippig","type":"Role","_key":"66555","_from":"14587","_to":"41143"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"44796","_from":"14587","_to":"29799"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44378","_from":"14587","_to":"29567"} +{"$label":"ACTS_IN","name":"Hempel","type":"Role","_key":"44022","_from":"14587","_to":"29358"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37956","_from":"14587","_to":"25697"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"37964","_from":"14588","_to":"25705"} +{"$label":"ACTS_IN","name":"Rosine","type":"Role","_key":"93839","_from":"14589","_to":"55237"} +{"$label":"ACTS_IN","name":"Magda Gartenfeld","type":"Role","_key":"39717","_from":"14589","_to":"26834"} +{"$label":"ACTS_IN","name":"Alyssa Jones","type":"Role","_key":"19739","_from":"14592","_to":"14591"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"102335","_from":"14592","_to":"60214"} +{"$label":"ACTS_IN","name":"Addie","type":"Role","_key":"56471","_from":"14592","_to":"35880"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"55037","_from":"14592","_to":"35160"} +{"$label":"ACTS_IN","name":"Simone Kerr","type":"Role","_key":"54772","_from":"14592","_to":"35048"} +{"$label":"ACTS_IN","name":"Monique (as Joey Adams)","type":"Role","_key":"54520","_from":"14592","_to":"34938"} +{"$label":"ACTS_IN","name":"Layla Maloney","type":"Role","_key":"52159","_from":"14592","_to":"33995"} +{"$label":"ACTS_IN","name":"Alyssa Jones","type":"Role","_key":"20145","_from":"14592","_to":"14786"} +{"$label":"ACTS_IN","name":"Gwen Turner","type":"Role","_key":"20122","_from":"14592","_to":"14782"} +{"$label":"DIRECTED","_key":"47137","_from":"14592","_to":"31069"} +{"$label":"ACTS_IN","name":"Dr. Rotholz","type":"Role","_key":"19765","_from":"14600","_to":"14594"} +{"$label":"ACTS_IN","name":"Klein David","type":"Role","_key":"19763","_from":"14599","_to":"14594"} +{"$label":"ACTS_IN","name":"W\u00e4rterin","type":"Role","_key":"19761","_from":"14598","_to":"14594"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"19756","_from":"14597","_to":"14594"} +{"$label":"ACTS_IN","name":"Dr. Sch\u00e4ure","type":"Role","_key":"19755","_from":"14596","_to":"14594"} +{"$label":"ACTS_IN","name":"Dr. Hoffmann","type":"Role","_key":"19753","_from":"14595","_to":"14594"} +{"$label":"ACTS_IN","name":"Baron Kaspar Joachim von Utz mit 5","type":"Role","_key":"19775","_from":"14605","_to":"14601"} +{"$label":"ACTS_IN","name":"Baron Kaspar Joachim von Utz mit 11","type":"Role","_key":"19774","_from":"14604","_to":"14601"} +{"$label":"ACTS_IN","name":"Baron Kaspar Joachim Utz mit 18","type":"Role","_key":"19773","_from":"14603","_to":"14601"} +{"$label":"ACTS_IN","name":"Ada Krasova","type":"Role","_key":"19771","_from":"14602","_to":"14601"} +{"$label":"ACTS_IN","name":"Kathe Batts","type":"Role","_key":"59358","_from":"14602","_to":"37498"} +{"$label":"ACTS_IN","name":"Count Jean de Satigny","type":"Role","_key":"19785","_from":"14607","_to":"14606"} +{"$label":"ACTS_IN","name":"Dr. Fischer","type":"Role","_key":"31464","_from":"14607","_to":"21972"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"19791","_from":"14614","_to":"14608"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"19790","_from":"14613","_to":"14608"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"19789","_from":"14612","_to":"14608"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"19788","_from":"14611","_to":"14608"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"19787","_from":"14610","_to":"14608"} +{"$label":"DIRECTED","_key":"19786","_from":"14609","_to":"14608"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"19796","_from":"14618","_to":"14615"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"19795","_from":"14617","_to":"14615"} +{"$label":"ACTS_IN","name":"The Staple Singers","type":"Role","_key":"19793","_from":"14616","_to":"14615"} +{"$label":"ACTS_IN","name":"Grete","type":"Role","_key":"19804","_from":"14621","_to":"14619"} +{"$label":"ACTS_IN","name":"Dr. Marianne Katz","type":"Role","_key":"19801","_from":"14620","_to":"14619"} +{"$label":"ACTS_IN","name":"Luise M\u00fcller","type":"Role","_key":"61844","_from":"14620","_to":"38929"} +{"$label":"ACTS_IN","name":"Hilde Schl\u00f6nzke","type":"Role","_key":"65919","_from":"14621","_to":"40774"} +{"$label":"ACTS_IN","name":"Erbf\u00fcrstin","type":"Role","_key":"43112","_from":"14621","_to":"28790"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"19823","_from":"14621","_to":"14625"} +{"$label":"ACTS_IN","name":"Magda Zoldan","type":"Role","_key":"19814","_from":"14624","_to":"14622"} +{"$label":"ACTS_IN","name":"Georgine Wheeler","type":"Role","_key":"19813","_from":"14623","_to":"14622"} +{"$label":"ACTS_IN","name":"Frau Schuckert","type":"Role","_key":"19825","_from":"14627","_to":"14625"} +{"$label":"ACTS_IN","name":"Frau Hettich","type":"Role","_key":"19820","_from":"14626","_to":"14625"} +{"$label":"ACTS_IN","name":"Lore van der Meyden","type":"Role","_key":"40760","_from":"14626","_to":"27430"} +{"$label":"ACTS_IN","name":"Tine","type":"Role","_key":"39960","_from":"14626","_to":"26992"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"38173","_from":"14626","_to":"25798"} +{"$label":"ACTS_IN","name":"Herr Fusi","type":"Role","_key":"19836","_from":"14634","_to":"14628"} +{"$label":"ACTS_IN","name":"Frau Daria","type":"Role","_key":"19835","_from":"14633","_to":"14628"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"19834","_from":"14632","_to":"14628"} +{"$label":"ACTS_IN","name":"Nino","type":"Role","_key":"19833","_from":"14631","_to":"14628"} +{"$label":"ACTS_IN","name":"Momo","type":"Role","_key":"19829","_from":"14630","_to":"14628"} +{"$label":"DIRECTED","_key":"19828","_from":"14629","_to":"14628"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"89078","_from":"14630","_to":"52768"} +{"$label":"ACTS_IN","name":"Perkin","type":"Role","_key":"38653","_from":"14631","_to":"26112"} +{"$label":"ACTS_IN","name":"Messenger","type":"Role","_key":"37079","_from":"14631","_to":"25123"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"26883","_from":"14631","_to":"19325"} +{"$label":"ACTS_IN","name":"Madame Li (Porte de Choisy)","type":"Role","_key":"19898","_from":"14658","_to":"14635"} +{"$label":"ACTS_IN","name":"Monsieur Henny (Porte de Choisy)","type":"Role","_key":"19893","_from":"14657","_to":"14635"} +{"$label":"ACTS_IN","name":"Joana (Quartier des Enfants Rouges)","type":"Role","_key":"19889","_from":"14656","_to":"14635"} +{"$label":"ACTS_IN","name":"Le mime (Tour Eiffel)","type":"Role","_key":"19888","_from":"14655","_to":"14635"} +{"$label":"ACTS_IN","name":"Sara (Parc Monceau)","type":"Role","_key":"19881","_from":"14654","_to":"14635"} +{"$label":"ACTS_IN","name":"Le p\u00e8re (Place des Victoires)","type":"Role","_key":"19877","_from":"14653","_to":"14635"} +{"$label":"ACTS_IN","name":"Ken (Quartier des Enfants Rouges)","type":"Role","_key":"19874","_from":"14652","_to":"14635"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois (Quais de Seine)","type":"Role","_key":"19873","_from":"14651","_to":"14635"} +{"$label":"ACTS_IN","name":"Le gar\u00e7on (Place des Victoires)","type":"Role","_key":"19871","_from":"14650","_to":"14635"} +{"$label":"ACTS_IN","name":"Hassan (Place des F\u00eates)","type":"Role","_key":"19868","_from":"14649","_to":"14635"} +{"$label":"ACTS_IN","name":"Zarka (Quais de Seine)","type":"Role","_key":"19865","_from":"14648","_to":"14635"} +{"$label":"ACTS_IN","name":"Jeune Femme (Montmartre)","type":"Role","_key":"19863","_from":"14647","_to":"14635"} +{"$label":"ACTS_IN","name":"L'automobiliste (Montmartre)","type":"Role","_key":"19862","_from":"14639","_to":"14635"} +{"$label":"ACTS_IN","name":"Julie (Tuileries)","type":"Role","_key":"19861","_from":"14646","_to":"14635"} +{"$label":"ACTS_IN","name":"Axel (Tuileries)","type":"Role","_key":"19860","_from":"14645","_to":"14635"} +{"$label":"DIRECTED","_key":"19858","_from":"14644","_to":"14635"} +{"$label":"DIRECTED","_key":"19857","_from":"14643","_to":"14635"} +{"$label":"DIRECTED","_key":"19856","_from":"14642","_to":"14635"} +{"$label":"DIRECTED","_key":"19855","_from":"14641","_to":"14635"} +{"$label":"DIRECTED","_key":"19854","_from":"14640","_to":"14635"} +{"$label":"DIRECTED","_key":"19852","_from":"14639","_to":"14635"} +{"$label":"DIRECTED","_key":"19850","_from":"14638","_to":"14635"} +{"$label":"DIRECTED","_key":"19848","_from":"14637","_to":"14635"} +{"$label":"DIRECTED","_key":"19845","_from":"14636","_to":"14635"} +{"$label":"DIRECTED","_key":"55466","_from":"14637","_to":"35351"} +{"$label":"DIRECTED","_key":"53948","_from":"14637","_to":"34712"} +{"$label":"DIRECTED","_key":"23286","_from":"14637","_to":"16888"} +{"$label":"DIRECTED","_key":"55377","_from":"14638","_to":"35304"} +{"$label":"DIRECTED","_key":"48806","_from":"14641","_to":"32011"} +{"$label":"DIRECTED","_key":"51394","_from":"14644","_to":"33521"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96164","_from":"14648","_to":"56513"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"61035","_from":"14651","_to":"38564"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"119026","_from":"14653","_to":"69971"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"110800","_from":"14653","_to":"65443"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"88642","_from":"14653","_to":"52522"} +{"$label":"ACTS_IN","name":"Bernard Olivier","type":"Role","_key":"32028","_from":"14653","_to":"22316"} +{"$label":"ACTS_IN","name":"Courette","type":"Role","_key":"30712","_from":"14653","_to":"21541"} +{"$label":"ACTS_IN","name":"Clifford","type":"Role","_key":"27741","_from":"14653","_to":"19880"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"101306","_from":"14656","_to":"59644"} +{"$label":"DIRECTED","_key":"89325","_from":"14657","_to":"52877"} +{"$label":"DIRECTED","_key":"72587","_from":"14657","_to":"43767"} +{"$label":"DIRECTED","_key":"66855","_from":"14657","_to":"41286"} +{"$label":"DIRECTED","_key":"54983","_from":"14657","_to":"35139"} +{"$label":"DIRECTED","_key":"53987","_from":"14657","_to":"34724"} +{"$label":"DIRECTED","_key":"41477","_from":"14657","_to":"27872"} +{"$label":"ACTS_IN","name":"Naomi Schwartz","type":"Role","_key":"19906","_from":"14663","_to":"14659"} +{"$label":"ACTS_IN","name":"Emma Wilder","type":"Role","_key":"19902","_from":"14662","_to":"14659"} +{"$label":"ACTS_IN","name":"Noah Wilder","type":"Role","_key":"19901","_from":"14661","_to":"14659"} +{"$label":"DIRECTED","_key":"19900","_from":"14660","_to":"14659"} +{"$label":"ACTS_IN","name":"Lecturer","type":"Role","_key":"61125","_from":"14660","_to":"38625"} +{"$label":"ACTS_IN","name":"Babs Merrick","type":"Role","_key":"121450","_from":"14663","_to":"71349"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"104742","_from":"14663","_to":"61613"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"94706","_from":"14663","_to":"55789"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"88213","_from":"14663","_to":"52337"} +{"$label":"ACTS_IN","name":"Michelle Rubin","type":"Role","_key":"58068","_from":"14663","_to":"36740"} +{"$label":"ACTS_IN","name":"Lyra Belacqua","type":"Role","_key":"19923","_from":"14669","_to":"14664"} +{"$label":"ACTS_IN","name":"Ma Coster","type":"Role","_key":"19921","_from":"14668","_to":"14664"} +{"$label":"ACTS_IN","name":"Rektor des Jordan College","type":"Role","_key":"19920","_from":"14667","_to":"14664"} +{"$label":"ACTS_IN","name":"Mrs. Lonsdale","type":"Role","_key":"19919","_from":"14666","_to":"14664"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"19917","_from":"14665","_to":"14664"} +{"$label":"ACTS_IN","name":"Miss Viola","type":"Role","_key":"57339","_from":"14666","_to":"36355"} +{"$label":"ACTS_IN","name":"Julia Cotton","type":"Role","_key":"52359","_from":"14668","_to":"34079"} +{"$label":"ACTS_IN","name":"Julia Cotton","type":"Role","_key":"51940","_from":"14668","_to":"33875"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"114686","_from":"14669","_to":"67560"} +{"$label":"ACTS_IN","name":"Kostja","type":"Role","_key":"19950","_from":"14695","_to":"14670"} +{"$label":"ACTS_IN","name":"Zavulon\u2019s Secretary","type":"Role","_key":"19949","_from":"14694","_to":"14670"} +{"$label":"ACTS_IN","name":"Anton Stepanenko","type":"Role","_key":"19948","_from":"14693","_to":"14670"} +{"$label":"ACTS_IN","name":"Sergey Ovchinnikov","type":"Role","_key":"19947","_from":"14692","_to":"14670"} +{"$label":"ACTS_IN","name":"The Vampiress","type":"Role","_key":"19946","_from":"14691","_to":"14670"} +{"$label":"ACTS_IN","name":"Egor\u2019s Mother","type":"Role","_key":"19945","_from":"14690","_to":"14670"} +{"$label":"ACTS_IN","name":"The Parrot","type":"Role","_key":"19944","_from":"14689","_to":"14670"} +{"$label":"ACTS_IN","name":"Tiger Cub","type":"Role","_key":"19943","_from":"14688","_to":"14670"} +{"$label":"ACTS_IN","name":"The Witch Darya","type":"Role","_key":"19942","_from":"14687","_to":"14670"} +{"$label":"ACTS_IN","name":"The Inquisitor","type":"Role","_key":"19941","_from":"14686","_to":"14670"} +{"$label":"ACTS_IN","name":"Tolik","type":"Role","_key":"19940","_from":"14685","_to":"14670"} +{"$label":"ACTS_IN","name":"Galina Rogova","type":"Role","_key":"19939","_from":"14684","_to":"14670"} +{"$label":"ACTS_IN","name":"Ignat","type":"Role","_key":"19938","_from":"14683","_to":"14670"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"19937","_from":"14682","_to":"14670"} +{"$label":"ACTS_IN","name":"Semen","type":"Role","_key":"19936","_from":"14681","_to":"14670"} +{"$label":"ACTS_IN","name":"Zoar","type":"Role","_key":"19935","_from":"14680","_to":"14670"} +{"$label":"ACTS_IN","name":"Kostya\u2019s Father","type":"Role","_key":"19934","_from":"14679","_to":"14670"} +{"$label":"ACTS_IN","name":"Egor","type":"Role","_key":"19933","_from":"14678","_to":"14670"} +{"$label":"ACTS_IN","name":"Zavulon","type":"Role","_key":"19932","_from":"14677","_to":"14670"} +{"$label":"ACTS_IN","name":"Alisa","type":"Role","_key":"19931","_from":"14676","_to":"14670"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"19930","_from":"14675","_to":"14670"} +{"$label":"ACTS_IN","name":"Geser","type":"Role","_key":"19929","_from":"14674","_to":"14670"} +{"$label":"ACTS_IN","name":"Svetlana","type":"Role","_key":"19928","_from":"14673","_to":"14670"} +{"$label":"ACTS_IN","name":"Anton Gorodetsky","type":"Role","_key":"19927","_from":"14672","_to":"14670"} +{"$label":"DIRECTED","_key":"19926","_from":"14671","_to":"14670"} +{"$label":"DIRECTED","_key":"51421","_from":"14671","_to":"33548"} +{"$label":"DIRECTED","_key":"25189","_from":"14671","_to":"18181"} +{"$label":"ACTS_IN","name":"\u0410\u0434\u043c\u0438\u0440\u0430\u043b \u041a\u043e\u043b\u0447\u0430\u043a","type":"Role","_key":"94893","_from":"14672","_to":"55869"} +{"$label":"ACTS_IN","name":"The Exterminator","type":"Role","_key":"51431","_from":"14672","_to":"33548"} +{"$label":"ACTS_IN","name":"Anton Gorodetsky","type":"Role","_key":"25190","_from":"14672","_to":"18181"} +{"$label":"ACTS_IN","name":"Svetlana","type":"Role","_key":"25194","_from":"14673","_to":"18181"} +{"$label":"ACTS_IN","name":"Geser","type":"Role","_key":"25191","_from":"14674","_to":"18181"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"25192","_from":"14675","_to":"18181"} +{"$label":"ACTS_IN","name":"Alice Donnikova","type":"Role","_key":"25195","_from":"14676","_to":"18181"} +{"$label":"ACTS_IN","name":"Zavulon","type":"Role","_key":"25196","_from":"14677","_to":"18181"} +{"$label":"ACTS_IN","name":"Kostya\u2019s Father","type":"Role","_key":"25193","_from":"14679","_to":"18181"} +{"$label":"ACTS_IN","name":"wild boar","type":"Role","_key":"114961","_from":"14683","_to":"67708"} +{"$label":"ACTS_IN","name":"Vepr","type":"Role","_key":"110480","_from":"14683","_to":"65265"} +{"$label":"ACTS_IN","name":"Russian General","type":"Role","_key":"108753","_from":"14683","_to":"64285"} +{"$label":"ACTS_IN","name":"Ignat","type":"Role","_key":"25204","_from":"14683","_to":"18181"} +{"$label":"ACTS_IN","name":"Daria","type":"Role","_key":"25197","_from":"14687","_to":"18181"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"25202","_from":"14688","_to":"18181"} +{"$label":"ACTS_IN","name":"Yegor's Mother","type":"Role","_key":"25198","_from":"14690","_to":"18181"} +{"$label":"ACTS_IN","name":"Larisa","type":"Role","_key":"25201","_from":"14691","_to":"18181"} +{"$label":"ACTS_IN","name":"\u0412\u043e\u0440\u043e\u0431\u0435\u0439","type":"Role","_key":"98498","_from":"14695","_to":"58041"} +{"$label":"ACTS_IN","name":"Kostja","type":"Role","_key":"25205","_from":"14695","_to":"18181"} +{"$label":"ACTS_IN","name":"Humphrey","type":"Role","_key":"19963","_from":"14702","_to":"14696"} +{"$label":"ACTS_IN","name":"Victorian Academic","type":"Role","_key":"19960","_from":"14701","_to":"14696"} +{"$label":"ACTS_IN","name":"Young Scientist","type":"Role","_key":"19959","_from":"14700","_to":"14696"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"19956","_from":"14699","_to":"14696"} +{"$label":"ACTS_IN","name":"Tristan","type":"Role","_key":"19952","_from":"14698","_to":"14696"} +{"$label":"DIRECTED","_key":"19951","_from":"14697","_to":"14696"} +{"$label":"DIRECTED","_key":"34333","_from":"14697","_to":"23533"} +{"$label":"ACTS_IN","name":"Ian Hamilton","type":"Role","_key":"89334","_from":"14698","_to":"52879"} +{"$label":"ACTS_IN","name":"Giovanni Bruni","type":"Role","_key":"55548","_from":"14698","_to":"35377"} +{"$label":"ACTS_IN","name":"The Baroness","type":"Role","_key":"102224","_from":"14699","_to":"60158"} +{"$label":"ACTS_IN","name":"Caitlin MacNamara","type":"Role","_key":"98333","_from":"14699","_to":"57914"} +{"$label":"ACTS_IN","name":"Edie Sedgwick","type":"Role","_key":"89144","_from":"14699","_to":"52804"} +{"$label":"ACTS_IN","name":"Francesca Bruni","type":"Role","_key":"55538","_from":"14699","_to":"35377"} +{"$label":"ACTS_IN","name":"Katya","type":"Role","_key":"49558","_from":"14699","_to":"32449"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"34320","_from":"14699","_to":"23533"} +{"$label":"ACTS_IN","name":"Randy James","type":"Role","_key":"119439","_from":"14702","_to":"70168"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"91083","_from":"14702","_to":"53744"} +{"$label":"ACTS_IN","name":"Albert Mondego","type":"Role","_key":"69414","_from":"14702","_to":"42425"} +{"$label":"ACTS_IN","name":"Melot","type":"Role","_key":"52248","_from":"14702","_to":"34026"} +{"$label":"ACTS_IN","name":"Will Stanton","type":"Role","_key":"19975","_from":"14707","_to":"14703"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"19972","_from":"14706","_to":"14703"} +{"$label":"ACTS_IN","name":"Maggie Barnes","type":"Role","_key":"19971","_from":"14705","_to":"14703"} +{"$label":"ACTS_IN","name":"The Walker","type":"Role","_key":"19968","_from":"14704","_to":"14703"} +{"$label":"ACTS_IN","name":"Morris \"Mud\" Himmel","type":"Role","_key":"113823","_from":"14704","_to":"67053"} +{"$label":"ACTS_IN","name":"Jesse Tuck","type":"Role","_key":"96260","_from":"14704","_to":"56562"} +{"$label":"ACTS_IN","name":"Alan Parker","type":"Role","_key":"89775","_from":"14704","_to":"53135"} +{"$label":"ACTS_IN","name":"James Phelps","type":"Role","_key":"65003","_from":"14704","_to":"40401"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"45877","_from":"14704","_to":"30341"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"113813","_from":"14705","_to":"67050"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"66420","_from":"14705","_to":"41070"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"60620","_from":"14705","_to":"38265"} +{"$label":"ACTS_IN","name":"Una Flux","type":"Role","_key":"48386","_from":"14705","_to":"31760"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"116782","_from":"14706","_to":"68745"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"97138","_from":"14707","_to":"57141"} +{"$label":"ACTS_IN","name":"Galatea","type":"Role","_key":"19984","_from":"14710","_to":"14709"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"39306","_from":"14710","_to":"26583"} +{"$label":"DIRECTED","_key":"19992","_from":"14713","_to":"14711"} +{"$label":"ACTS_IN","name":"Scotty Brennen","type":"Role","_key":"19990","_from":"14712","_to":"14711"} +{"$label":"ACTS_IN","name":"The Radio (voice)","type":"Role","_key":"121495","_from":"14712","_to":"71370"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113872","_from":"14712","_to":"67080"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"102769","_from":"14712","_to":"60460"} +{"$label":"ACTS_IN","name":"Sidney Wernick","type":"Role","_key":"96475","_from":"14712","_to":"56725"} +{"$label":"ACTS_IN","name":"Tom Baltezor","type":"Role","_key":"94188","_from":"14712","_to":"55461"} +{"$label":"ACTS_IN","name":"Ron Mills","type":"Role","_key":"88141","_from":"14712","_to":"52301"} +{"$label":"ACTS_IN","name":"Glen Robbins","type":"Role","_key":"69065","_from":"14712","_to":"42268"} +{"$label":"ACTS_IN","name":"Ernie Capadino","type":"Role","_key":"68923","_from":"14712","_to":"42198"} +{"$label":"ACTS_IN","name":"Andy Kornbluth","type":"Role","_key":"65040","_from":"14712","_to":"40416"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"64137","_from":"14712","_to":"40021"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"58541","_from":"14712","_to":"36989"} +{"$label":"ACTS_IN","name":"Mr. Marks","type":"Role","_key":"57733","_from":"14712","_to":"36543"} +{"$label":"ACTS_IN","name":"Dave Markowitz","type":"Role","_key":"57622","_from":"14712","_to":"36484"} +{"$label":"ACTS_IN","name":"Peeper","type":"Role","_key":"55501","_from":"14712","_to":"35362"} +{"$label":"ACTS_IN","name":"Becker","type":"Role","_key":"55241","_from":"14712","_to":"35235"} +{"$label":"ACTS_IN","name":"Dr. Rudolph, Dentist (uncredited)","type":"Role","_key":"55046","_from":"14712","_to":"35160"} +{"$label":"ACTS_IN","name":"Richard Clark","type":"Role","_key":"53025","_from":"14712","_to":"34336"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"49474","_from":"14712","_to":"32393"} +{"$label":"ACTS_IN","name":"Bart Bookman","type":"Role","_key":"33641","_from":"14712","_to":"23230"} +{"$label":"ACTS_IN","name":"Clip Metzler","type":"Role","_key":"22195","_from":"14712","_to":"16174"} +{"$label":"DIRECTED","_key":"72421","_from":"14713","_to":"43716"} +{"$label":"DIRECTED","_key":"68918","_from":"14713","_to":"42198"} +{"$label":"DIRECTED","_key":"67829","_from":"14713","_to":"41687"} +{"$label":"DIRECTED","_key":"67229","_from":"14713","_to":"41456"} +{"$label":"DIRECTED","_key":"66904","_from":"14713","_to":"41305"} +{"$label":"DIRECTED","_key":"20003","_from":"14716","_to":"14714"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"20002","_from":"14723","_to":"14714"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"20001","_from":"14722","_to":"14714"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"20000","_from":"14721","_to":"14714"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"19999","_from":"14720","_to":"14714"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"19998","_from":"14719","_to":"14714"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"19997","_from":"14718","_to":"14714"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"19996","_from":"14717","_to":"14714"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"19995","_from":"14716","_to":"14714"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"19994","_from":"14715","_to":"14714"} +{"$label":"ACTS_IN","name":"Antoinette","type":"Role","_key":"34603","_from":"14715","_to":"23684"} +{"$label":"DIRECTED","_key":"42930","_from":"14716","_to":"28687"} +{"$label":"DIRECTED","_key":"33744","_from":"14716","_to":"23273"} +{"$label":"ACTS_IN","name":"Defense attorney","type":"Role","_key":"32565","_from":"14717","_to":"22629"} +{"$label":"ACTS_IN","name":"Elisabeth Mann","type":"Role","_key":"20014","_from":"14730","_to":"14724"} +{"$label":"ACTS_IN","name":"Alfred Pringsheim","type":"Role","_key":"20013","_from":"14729","_to":"14724"} +{"$label":"ACTS_IN","name":"Hedwig Pringsheim","type":"Role","_key":"20012","_from":"14728","_to":"14724"} +{"$label":"ACTS_IN","name":"Monika Mann","type":"Role","_key":"20011","_from":"14727","_to":"14724"} +{"$label":"ACTS_IN","name":"Nelly Kr\u00f6ger-Mann","type":"Role","_key":"20008","_from":"14726","_to":"14724"} +{"$label":"DIRECTED","_key":"20004","_from":"14725","_to":"14724"} +{"$label":"DIRECTED","_key":"69018","_from":"14725","_to":"42247"} +{"$label":"DIRECTED","_key":"20466","_from":"14725","_to":"14974"} +{"$label":"ACTS_IN","name":"Maria Keller","type":"Role","_key":"72482","_from":"14726","_to":"43734"} +{"$label":"ACTS_IN","name":"Sara Bender","type":"Role","_key":"71878","_from":"14726","_to":"43491"} +{"$label":"ACTS_IN","name":"Franziska Herr-Gross","type":"Role","_key":"65887","_from":"14726","_to":"40768"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"55452","_from":"14726","_to":"35342"} +{"$label":"ACTS_IN","name":"Schneewittchen","type":"Role","_key":"55234","_from":"14726","_to":"35234"} +{"$label":"ACTS_IN","name":"Bertha Baetz","type":"Role","_key":"51766","_from":"14726","_to":"33777"} +{"$label":"ACTS_IN","name":"Sibylle","type":"Role","_key":"45662","_from":"14726","_to":"30218"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"44014","_from":"14726","_to":"29357"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43109","_from":"14726","_to":"28790"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31639","_from":"14726","_to":"22083"} +{"$label":"ACTS_IN","name":"Comtesse Johanna","type":"Role","_key":"20961","_from":"14726","_to":"15337"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"42394","_from":"14727","_to":"28358"} +{"$label":"DIRECTED","_key":"20029","_from":"14740","_to":"14731"} +{"$label":"ACTS_IN","name":"Bellini","type":"Role","_key":"20028","_from":"14739","_to":"14731"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"20027","_from":"14738","_to":"14731"} +{"$label":"ACTS_IN","name":"Kangaroo Girl","type":"Role","_key":"20025","_from":"14737","_to":"14731"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"20024","_from":"14736","_to":"14731"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"20023","_from":"14735","_to":"14731"} +{"$label":"ACTS_IN","name":"Dr. Sage","type":"Role","_key":"20022","_from":"14734","_to":"14731"} +{"$label":"ACTS_IN","name":"Eric Applebaum","type":"Role","_key":"20021","_from":"14733","_to":"14731"} +{"$label":"ACTS_IN","name":"Henry Weston","type":"Role","_key":"20020","_from":"14732","_to":"14731"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"121398","_from":"14732","_to":"71336"} +{"$label":"ACTS_IN","name":"Dominic Foy","type":"Role","_key":"110772","_from":"14732","_to":"65435"} +{"$label":"ACTS_IN","name":"Todd Howard","type":"Role","_key":"105066","_from":"14732","_to":"61836"} +{"$label":"ACTS_IN","name":"Chip Sanders","type":"Role","_key":"93163","_from":"14732","_to":"54904"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"90334","_from":"14732","_to":"53393"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"90262","_from":"14732","_to":"53363"} +{"$label":"ACTS_IN","name":"Animal Instincts Detective","type":"Role","_key":"57503","_from":"14732","_to":"36436"} +{"$label":"ACTS_IN","name":"Riggleman","type":"Role","_key":"56474","_from":"14732","_to":"35880"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"53502","_from":"14732","_to":"34547"} +{"$label":"ACTS_IN","name":"Ray Embrey","type":"Role","_key":"51652","_from":"14732","_to":"33701"} +{"$label":"ACTS_IN","name":"Mark Loring","type":"Role","_key":"46437","_from":"14732","_to":"30676"} +{"$label":"ACTS_IN","name":"Adam Leavitt","type":"Role","_key":"31100","_from":"14732","_to":"21770"} +{"$label":"ACTS_IN","name":"Stirling Howard","type":"Role","_key":"49310","_from":"14733","_to":"32288"} +{"$label":"ACTS_IN","name":"Mrs. Louis Trager","type":"Role","_key":"56651","_from":"14738","_to":"35977"} +{"$label":"ACTS_IN","name":"Mrs. Mackinaw","type":"Role","_key":"45255","_from":"14738","_to":"30031"} +{"$label":"ACTS_IN","name":"Janitor Mackie","type":"Role","_key":"61051","_from":"14739","_to":"38583"} +{"$label":"ACTS_IN","name":"Frau Melchior","type":"Role","_key":"20040","_from":"14744","_to":"14741"} +{"$label":"ACTS_IN","name":"Karl Wyler","type":"Role","_key":"20037","_from":"14743","_to":"14741"} +{"$label":"ACTS_IN","name":"Stanislaus","type":"Role","_key":"20032","_from":"14742","_to":"14741"} +{"$label":"ACTS_IN","name":"L`homme","type":"Role","_key":"20250","_from":"14743","_to":"14844"} +{"$label":"ACTS_IN","name":"Dolf Vega","type":"Role","_key":"20051","_from":"14750","_to":"14745"} +{"$label":"ACTS_IN","name":"Carolus","type":"Role","_key":"20049","_from":"14749","_to":"14745"} +{"$label":"ACTS_IN","name":"Vick","type":"Role","_key":"20048","_from":"14748","_to":"14745"} +{"$label":"ACTS_IN","name":"Jenne","type":"Role","_key":"20044","_from":"14747","_to":"14745"} +{"$label":"DIRECTED","_key":"20043","_from":"14746","_to":"14745"} +{"$label":"DIRECTED","_key":"111977","_from":"14746","_to":"66095"} +{"$label":"DIRECTED","_key":"107273","_from":"14746","_to":"63270"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"100608","_from":"14747","_to":"59326"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"20060","_from":"14760","_to":"14751"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20059","_from":"14759","_to":"14751"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"20058","_from":"14758","_to":"14751"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20057","_from":"14757","_to":"14751"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20056","_from":"14756","_to":"14751"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"20055","_from":"14755","_to":"14751"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20054","_from":"14754","_to":"14751"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20053","_from":"14753","_to":"14751"} +{"$label":"DIRECTED","_key":"20052","_from":"14752","_to":"14751"} +{"$label":"ACTS_IN","name":"Customs Officer","type":"Role","_key":"20067","_from":"14763","_to":"14761"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"20066","_from":"14762","_to":"14761"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"57436","_from":"14763","_to":"36404"} +{"$label":"ACTS_IN","name":"Theoretical Physicist","type":"Role","_key":"56630","_from":"14763","_to":"35969"} +{"$label":"ACTS_IN","name":"Neal Daniels","type":"Role","_key":"21741","_from":"14763","_to":"15873"} +{"$label":"ACTS_IN","name":"Hocker","type":"Role","_key":"20083","_from":"14769","_to":"14765"} +{"$label":"ACTS_IN","name":"Linas`s Vater","type":"Role","_key":"20081","_from":"14768","_to":"14765"} +{"$label":"ACTS_IN","name":"Lina`s Mutter","type":"Role","_key":"20080","_from":"14767","_to":"14765"} +{"$label":"ACTS_IN","name":"Lina Kronstein","type":"Role","_key":"20079","_from":"14766","_to":"14765"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"55612","_from":"14769","_to":"35408"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"20097","_from":"14772","_to":"14770"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"20096","_from":"14771","_to":"14770"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"108014","_from":"14771","_to":"63792"} +{"$label":"ACTS_IN","name":"Amanda Ray Ross","type":"Role","_key":"101187","_from":"14771","_to":"59606"} +{"$label":"ACTS_IN","name":"Colleen Hess","type":"Role","_key":"22696","_from":"14771","_to":"16465"} +{"$label":"ACTS_IN","name":"Olaf Oleeson","type":"Role","_key":"20113","_from":"14781","_to":"14773"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"20112","_from":"14780","_to":"14773"} +{"$label":"ACTS_IN","name":"Sanford\/Angry Mourner","type":"Role","_key":"20111","_from":"14779","_to":"14773"} +{"$label":"ACTS_IN","name":"Hunting Cap Smoking Boy\/Low I.Q. Video Customer\/Hubcap Searching Customer\/Angry Mourner\/Angry Crowd at Door","type":"Role","_key":"20110","_from":"14778","_to":"14773"} +{"$label":"ACTS_IN","name":"Chewlie's Rep","type":"Role","_key":"20109","_from":"14777","_to":"14773"} +{"$label":"ACTS_IN","name":"Veronica Loughran","type":"Role","_key":"20106","_from":"14776","_to":"14773"} +{"$label":"ACTS_IN","name":"Caitlin Bree","type":"Role","_key":"20105","_from":"14775","_to":"14773"} +{"$label":"ACTS_IN","name":"Randal Graves","type":"Role","_key":"20102","_from":"14774","_to":"14773"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"62780","_from":"14774","_to":"39457"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"20148","_from":"14774","_to":"14789"} +{"$label":"ACTS_IN","name":"Randal Graves","type":"Role","_key":"20131","_from":"14774","_to":"14786"} +{"$label":"ACTS_IN","name":"Tricia Jones","type":"Role","_key":"20123","_from":"14785","_to":"14782"} +{"$label":"ACTS_IN","name":"Rene Mosier","type":"Role","_key":"20119","_from":"14784","_to":"14782"} +{"$label":"ACTS_IN","name":"T.S. Quint","type":"Role","_key":"20117","_from":"14783","_to":"14782"} +{"$label":"ACTS_IN","name":"Helm","type":"Role","_key":"110845","_from":"14783","_to":"65478"} +{"$label":"ACTS_IN","name":"Susan Jordon","type":"Role","_key":"117051","_from":"14784","_to":"68886"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"111781","_from":"14784","_to":"65980"} +{"$label":"ACTS_IN","name":"Heather Duke","type":"Role","_key":"22356","_from":"14784","_to":"16253"} +{"$label":"ACTS_IN","name":"Missy","type":"Role","_key":"20136","_from":"14788","_to":"14786"} +{"$label":"ACTS_IN","name":"Chrissy","type":"Role","_key":"20135","_from":"14787","_to":"14786"} +{"$label":"ACTS_IN","name":"Olivia Averill","type":"Role","_key":"116149","_from":"14787","_to":"68391"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"111918","_from":"14787","_to":"66069"} +{"$label":"ACTS_IN","name":"Darcy Sears","type":"Role","_key":"101504","_from":"14787","_to":"59741"} +{"$label":"ACTS_IN","name":"Fardart","type":"Role","_key":"101243","_from":"14787","_to":"59626"} +{"$label":"ACTS_IN","name":"Dulcie","type":"Role","_key":"100216","_from":"14787","_to":"59107"} +{"$label":"ACTS_IN","name":"Zerelda 'Zee' Mimms","type":"Role","_key":"94820","_from":"14787","_to":"55841"} +{"$label":"ACTS_IN","name":"Clear Rivers","type":"Role","_key":"54495","_from":"14787","_to":"34931"} +{"$label":"ACTS_IN","name":"Clear Rivers","type":"Role","_key":"53332","_from":"14787","_to":"34480"} +{"$label":"ACTS_IN","name":"Claire Redfield","type":"Role","_key":"47276","_from":"14787","_to":"31150"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"62774","_from":"14788","_to":"39457"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"54560","_from":"14788","_to":"34963"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"20151","_from":"14788","_to":"14789"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"20153","_from":"14790","_to":"14789"} +{"$label":"ACTS_IN","name":"Mr. Wilson","type":"Role","_key":"20159","_from":"14794","_to":"14791"} +{"$label":"ACTS_IN","name":"Dr. Wolf","type":"Role","_key":"20158","_from":"14793","_to":"14791"} +{"$label":"DIRECTED","_key":"20156","_from":"14792","_to":"14791"} +{"$label":"ACTS_IN","name":"Reiter","type":"Role","_key":"20183","_from":"14803","_to":"14796"} +{"$label":"ACTS_IN","name":"Herr Baer","type":"Role","_key":"20182","_from":"14802","_to":"14796"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"20181","_from":"14801","_to":"14796"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"20179","_from":"14800","_to":"14796"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"20175","_from":"14799","_to":"14796"} +{"$label":"ACTS_IN","name":"Herr Theilhaber","type":"Role","_key":"20174","_from":"14798","_to":"14796"} +{"$label":"DIRECTED","_key":"20172","_from":"14797","_to":"14796"} +{"$label":"DIRECTED","_key":"90408","_from":"14797","_to":"53412"} +{"$label":"ACTS_IN","name":"Friedhelm Kaltenbach","type":"Role","_key":"64711","_from":"14802","_to":"40294"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"61899","_from":"14802","_to":"38955"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"47269","_from":"14802","_to":"31145"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42284","_from":"14802","_to":"28312"} +{"$label":"ACTS_IN","name":"Daniel Finkelstein","type":"Role","_key":"37139","_from":"14802","_to":"25155"} +{"$label":"ACTS_IN","name":"Herr Zander","type":"Role","_key":"35305","_from":"14802","_to":"24038"} +{"$label":"ACTS_IN","name":"Herr Sommer","type":"Role","_key":"33446","_from":"14802","_to":"23146"} +{"$label":"ACTS_IN","name":"Antonin Sokurov","type":"Role","_key":"49388","_from":"14803","_to":"32339"} +{"$label":"ACTS_IN","name":"Weitsp\u00e4hender Falke","type":"Role","_key":"35576","_from":"14803","_to":"24182"} +{"$label":"ACTS_IN","name":"White Bird","type":"Role","_key":"28534","_from":"14803","_to":"20392"} +{"$label":"ACTS_IN","name":"Weitsp\u00e4hender Falke","type":"Role","_key":"27774","_from":"14803","_to":"19908"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"24037","_from":"14803","_to":"17420"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"20194","_from":"14812","_to":"14804"} +{"$label":"ACTS_IN","name":"Tinou","type":"Role","_key":"20193","_from":"14811","_to":"14804"} +{"$label":"ACTS_IN","name":"R\u00e9mi","type":"Role","_key":"20192","_from":"14810","_to":"14804"} +{"$label":"ACTS_IN","name":"Jeanne \u00e2g\u00e9e","type":"Role","_key":"20191","_from":"14809","_to":"14804"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"20190","_from":"14808","_to":"14804"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"20189","_from":"14807","_to":"14804"} +{"$label":"ACTS_IN","name":"Antoine Cassendi","type":"Role","_key":"20188","_from":"14806","_to":"14804"} +{"$label":"ACTS_IN","name":"Yvon Le Guen","type":"Role","_key":"20187","_from":"14805","_to":"14804"} +{"$label":"ACTS_IN","name":"Le Pr\u00e9sident de la R\u00e9publique","type":"Role","_key":"104073","_from":"14805","_to":"61236"} +{"$label":"ACTS_IN","name":"Rosetta","type":"Role","_key":"70139","_from":"14807","_to":"42757"} +{"$label":"ACTS_IN","name":"Marianne de Morangias","type":"Role","_key":"42873","_from":"14807","_to":"28662"} +{"$label":"ACTS_IN","name":"Madame Hausmann","type":"Role","_key":"33821","_from":"14809","_to":"23307"} +{"$label":"ACTS_IN","name":"Esperanza","type":"Role","_key":"21571","_from":"14809","_to":"15768"} +{"$label":"ACTS_IN","name":"Paul Lenehan","type":"Role","_key":"33313","_from":"14812","_to":"23080"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20206","_from":"14820","_to":"14813"} +{"$label":"ACTS_IN","name":"Michael Jordan (at 10)","type":"Role","_key":"20205","_from":"14819","_to":"14813"} +{"$label":"ACTS_IN","name":"Daffy Duck\/Tazmanian Devil\/Bull (voice)","type":"Role","_key":"20202","_from":"14818","_to":"14813"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"20199","_from":"14817","_to":"14813"} +{"$label":"DIRECTED","_key":"20198","_from":"14816","_to":"14813"} +{"$label":"DIRECTED","_key":"20197","_from":"14815","_to":"14813"} +{"$label":"DIRECTED","_key":"20196","_from":"14814","_to":"14813"} +{"$label":"DIRECTED","_key":"118778","_from":"14814","_to":"69835"} +{"$label":"ACTS_IN","name":"Buster","type":"Role","_key":"110634","_from":"14818","_to":"65362"} +{"$label":"ACTS_IN","name":"Appa \/ Momo","type":"Role","_key":"61626","_from":"14818","_to":"38834"} +{"$label":"ACTS_IN","name":"Busfahrer ( voice )","type":"Role","_key":"26200","_from":"14818","_to":"18824"} +{"$label":"ACTS_IN","name":"Christine Roth","type":"Role","_key":"20218","_from":"14830","_to":"14821"} +{"$label":"ACTS_IN","name":"Peter Urack","type":"Role","_key":"20217","_from":"14829","_to":"14821"} +{"$label":"ACTS_IN","name":"Havelke","type":"Role","_key":"20216","_from":"14828","_to":"14821"} +{"$label":"ACTS_IN","name":"Prof. Gerlinger","type":"Role","_key":"20215","_from":"14827","_to":"14821"} +{"$label":"ACTS_IN","name":"Wilhelm Urack","type":"Role","_key":"20213","_from":"14826","_to":"14821"} +{"$label":"ACTS_IN","name":"R\u00f6schen Urack","type":"Role","_key":"20212","_from":"14825","_to":"14821"} +{"$label":"ACTS_IN","name":"Nine Collin","type":"Role","_key":"20211","_from":"14824","_to":"14821"} +{"$label":"ACTS_IN","name":"Dr. Pollak","type":"Role","_key":"20210","_from":"14823","_to":"14821"} +{"$label":"DIRECTED","_key":"20208","_from":"14822","_to":"14821"} +{"$label":"ACTS_IN","name":"Ziegler","type":"Role","_key":"37331","_from":"14822","_to":"25288"} +{"$label":"ACTS_IN","name":"Conrad","type":"Role","_key":"95032","_from":"14826","_to":"55943"} +{"$label":"ACTS_IN","name":"Tscheche","type":"Role","_key":"31895","_from":"14826","_to":"22247"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"31872","_from":"14826","_to":"22236"} +{"$label":"ACTS_IN","name":"Radek Kostrowicz","type":"Role","_key":"31236","_from":"14826","_to":"21855"} +{"$label":"ACTS_IN","name":"Hofrat Behrens","type":"Role","_key":"29570","_from":"14826","_to":"20940"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"27354","_from":"14826","_to":"19658"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"32609","_from":"14827","_to":"22658"} +{"$label":"ACTS_IN","name":"Krasnow","type":"Role","_key":"43213","_from":"14828","_to":"28859"} +{"$label":"ACTS_IN","name":"Kommandant von Luger","type":"Role","_key":"40476","_from":"14828","_to":"27264"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33573","_from":"14828","_to":"23204"} +{"$label":"ACTS_IN","name":"Dr. Saltzer","type":"Role","_key":"32360","_from":"14828","_to":"22533"} +{"$label":"ACTS_IN","name":"Christoph Probst","type":"Role","_key":"67597","_from":"14829","_to":"41609"} +{"$label":"ACTS_IN","name":"Albert Wimschneider","type":"Role","_key":"61099","_from":"14829","_to":"38620"} +{"$label":"ACTS_IN","name":"Dorothee Rathenau","type":"Role","_key":"43140","_from":"14830","_to":"28811"} +{"$label":"ACTS_IN","name":"Teddy Kirke","type":"Role","_key":"20229","_from":"14837","_to":"14831"} +{"$label":"ACTS_IN","name":"Nathan Krichinsky","type":"Role","_key":"20227","_from":"14836","_to":"14831"} +{"$label":"ACTS_IN","name":"Eva Krichinsky","type":"Role","_key":"20225","_from":"14835","_to":"14831"} +{"$label":"ACTS_IN","name":"Gabriel Krichynsky","type":"Role","_key":"20222","_from":"14834","_to":"14831"} +{"$label":"ACTS_IN","name":"Dottie Krik","type":"Role","_key":"20221","_from":"14833","_to":"14831"} +{"$label":"ACTS_IN","name":"Hymie Krichinsky","type":"Role","_key":"20220","_from":"14832","_to":"14831"} +{"$label":"ACTS_IN","name":"Carolyn","type":"Role","_key":"110958","_from":"14833","_to":"65537"} +{"$label":"ACTS_IN","name":"Diane Szalinski","type":"Role","_key":"69785","_from":"14833","_to":"42592"} +{"$label":"ACTS_IN","name":"Kurt G\u00f6del","type":"Role","_key":"71908","_from":"14834","_to":"43507"} +{"$label":"ACTS_IN","name":"Moustache","type":"Role","_key":"22721","_from":"14834","_to":"16480"} +{"$label":"ACTS_IN","name":"Hermann Van Pels","type":"Role","_key":"22034","_from":"14834","_to":"16074"} +{"$label":"ACTS_IN","name":"Jean Rice","type":"Role","_key":"118179","_from":"14835","_to":"69451"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"104280","_from":"14835","_to":"61352"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"97082","_from":"14835","_to":"57107"} +{"$label":"ACTS_IN","name":"Mrs. McConnahay","type":"Role","_key":"91099","_from":"14835","_to":"53749"} +{"$label":"ACTS_IN","name":"Mrs. Martha Wilson","type":"Role","_key":"88251","_from":"14835","_to":"52352"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"71481","_from":"14835","_to":"43329"} +{"$label":"ACTS_IN","name":"Virginia Arness","type":"Role","_key":"65009","_from":"14835","_to":"40403"} +{"$label":"ACTS_IN","name":"Aunt Lucinda Spiderwick","type":"Role","_key":"48397","_from":"14835","_to":"31764"} +{"$label":"ACTS_IN","name":"Nadja","type":"Role","_key":"25926","_from":"14835","_to":"18645"} +{"$label":"ACTS_IN","name":"Mrs. Linzer","type":"Role","_key":"20268","_from":"14835","_to":"14861"} +{"$label":"ACTS_IN","name":"Horst Sievers","type":"Role","_key":"20239","_from":"14843","_to":"14838"} +{"$label":"ACTS_IN","name":"Heinrich Pfaumann","type":"Role","_key":"20238","_from":"14842","_to":"14838"} +{"$label":"ACTS_IN","name":"Peter Hollstein","type":"Role","_key":"20237","_from":"14841","_to":"14838"} +{"$label":"ACTS_IN","name":"Adolf Hitler Double","type":"Role","_key":"20236","_from":"14840","_to":"14838"} +{"$label":"ACTS_IN","name":"Hortense","type":"Role","_key":"20235","_from":"14839","_to":"14838"} +{"$label":"ACTS_IN","name":"Nika Berndssen","type":"Role","_key":"43292","_from":"14839","_to":"28917"} +{"$label":"ACTS_IN","name":"Kriminalassistent Kr\u00fcger","type":"Role","_key":"63393","_from":"14840","_to":"39717"} +{"$label":"ACTS_IN","name":"Narrator (voice: German version)","type":"Role","_key":"53384","_from":"14840","_to":"34500"} +{"$label":"ACTS_IN","name":"Rudolf Nafziger","type":"Role","_key":"51438","_from":"14840","_to":"33555"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"44122","_from":"14840","_to":"29415"} +{"$label":"ACTS_IN","name":"Pit Kummer","type":"Role","_key":"44015","_from":"14840","_to":"29357"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"43756","_from":"14840","_to":"29221"} +{"$label":"ACTS_IN","name":"Peter Pumeier","type":"Role","_key":"42811","_from":"14840","_to":"28628"} +{"$label":"ACTS_IN","name":"Frank Flemming","type":"Role","_key":"42635","_from":"14840","_to":"28542"} +{"$label":"ACTS_IN","name":"Dr. Roland","type":"Role","_key":"42002","_from":"14840","_to":"28144"} +{"$label":"ACTS_IN","name":"Eduard Kellermann","type":"Role","_key":"64712","_from":"14841","_to":"40294"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"38277","_from":"14841","_to":"25853"} +{"$label":"ACTS_IN","name":"Werner T\u00f6tges","type":"Role","_key":"33847","_from":"14841","_to":"23320"} +{"$label":"ACTS_IN","name":"David Reinalt","type":"Role","_key":"29549","_from":"14841","_to":"20933"} +{"$label":"ACTS_IN","name":"Professor Borgmann","type":"Role","_key":"48278","_from":"14842","_to":"31707"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31680","_from":"14842","_to":"22105"} +{"$label":"ACTS_IN","name":"La Soeur","type":"Role","_key":"20251","_from":"14851","_to":"14844"} +{"$label":"ACTS_IN","name":"Le jeune Homme","type":"Role","_key":"20249","_from":"14850","_to":"14844"} +{"$label":"ACTS_IN","name":"Le Client","type":"Role","_key":"20248","_from":"14849","_to":"14844"} +{"$label":"ACTS_IN","name":"Bosmans","type":"Role","_key":"20247","_from":"14848","_to":"14844"} +{"$label":"ACTS_IN","name":"Jean Lerman","type":"Role","_key":"20246","_from":"14847","_to":"14844"} +{"$label":"ACTS_IN","name":"Henris Mutter","type":"Role","_key":"20245","_from":"14846","_to":"14844"} +{"$label":"DIRECTED","_key":"20242","_from":"14845","_to":"14844"} +{"$label":"DIRECTED","_key":"72333","_from":"14845","_to":"43687"} +{"$label":"DIRECTED","_key":"63440","_from":"14845","_to":"39735"} +{"$label":"ACTS_IN","name":"Camille Desmoulins","type":"Role","_key":"30077","_from":"14845","_to":"21206"} +{"$label":"ACTS_IN","name":"vieille femme","type":"Role","_key":"32564","_from":"14846","_to":"22629"} +{"$label":"ACTS_IN","name":"la pharmacienne","type":"Role","_key":"29938","_from":"14846","_to":"21152"} +{"$label":"ACTS_IN","name":"Max Halimi","type":"Role","_key":"30668","_from":"14847","_to":"21526"} +{"$label":"ACTS_IN","name":"Marat","type":"Role","_key":"30211","_from":"14847","_to":"21284"} +{"$label":"ACTS_IN","name":"Antoine's father","type":"Role","_key":"72036","_from":"14848","_to":"43560"} +{"$label":"ACTS_IN","name":"Weinstadt","type":"Role","_key":"32065","_from":"14848","_to":"22337"} +{"$label":"DIRECTED","_key":"32024","_from":"14849","_to":"22316"} +{"$label":"DIRECTED","_key":"32013","_from":"14849","_to":"22309"} +{"$label":"DIRECTED","_key":"24062","_from":"14849","_to":"17440"} +{"$label":"ACTS_IN","name":"le portraitiste de Cl\u00e9op\u00e2tre","type":"Role","_key":"24180","_from":"14849","_to":"17515"} +{"$label":"ACTS_IN","name":"Commandant Susini","type":"Role","_key":"100789","_from":"14850","_to":"59416"} +{"$label":"ACTS_IN","name":"Gr\u00fcn","type":"Role","_key":"20261","_from":"14860","_to":"14852"} +{"$label":"ACTS_IN","name":"Fein","type":"Role","_key":"20260","_from":"14859","_to":"14852"} +{"$label":"ACTS_IN","name":"Mehlig","type":"Role","_key":"20259","_from":"14858","_to":"14852"} +{"$label":"ACTS_IN","name":"Gross","type":"Role","_key":"20258","_from":"14857","_to":"14852"} +{"$label":"ACTS_IN","name":"Kron","type":"Role","_key":"20257","_from":"14856","_to":"14852"} +{"$label":"ACTS_IN","name":"Alena","type":"Role","_key":"20255","_from":"14855","_to":"14852"} +{"$label":"ACTS_IN","name":"Ferry","type":"Role","_key":"20254","_from":"14854","_to":"14852"} +{"$label":"DIRECTED","_key":"20253","_from":"14853","_to":"14852"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44756","_from":"14853","_to":"29769"} +{"$label":"ACTS_IN","name":"Father Richter (Vienna)","type":"Role","_key":"99411","_from":"14854","_to":"58590"} +{"$label":"ACTS_IN","name":"Kern","type":"Role","_key":"43747","_from":"14857","_to":"29215"} +{"$label":"ACTS_IN","name":"Dr. Kneitz","type":"Role","_key":"34163","_from":"14857","_to":"23460"} +{"$label":"ACTS_IN","name":"le chef de la gestapo","type":"Role","_key":"33762","_from":"14857","_to":"23279"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"31914","_from":"14857","_to":"22256"} +{"$label":"ACTS_IN","name":"Klaus-Maxe","type":"Role","_key":"43913","_from":"14858","_to":"29305"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"42579","_from":"14858","_to":"28496"} +{"$label":"ACTS_IN","name":"Hattie","type":"Role","_key":"20271","_from":"14863","_to":"14861"} +{"$label":"DIRECTED","_key":"20262","_from":"14862","_to":"14861"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"114614","_from":"14863","_to":"67516"} +{"$label":"ACTS_IN","name":"Lucy Westenra","type":"Role","_key":"41770","_from":"14863","_to":"28027"} +{"$label":"ACTS_IN","name":"The Shadow","type":"Role","_key":"20282","_from":"14867","_to":"14864"} +{"$label":"ACTS_IN","name":"Mortola","type":"Role","_key":"20280","_from":"14866","_to":"14864"} +{"$label":"ACTS_IN","name":"Maggie Folchart","type":"Role","_key":"20276","_from":"14865","_to":"14864"} +{"$label":"ACTS_IN","name":"Emily Day","type":"Role","_key":"103070","_from":"14865","_to":"60629"} +{"$label":"ACTS_IN","name":"Tora","type":"Role","_key":"68889","_from":"14865","_to":"42189"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"116553","_from":"14866","_to":"68608"} +{"$label":"ACTS_IN","name":"English Guy","type":"Role","_key":"97465","_from":"14866","_to":"57394"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"96789","_from":"14866","_to":"56924"} +{"$label":"ACTS_IN","name":"Beowulf's Jester","type":"Role","_key":"20310","_from":"14882","_to":"14868"} +{"$label":"ACTS_IN","name":"Beowulf's Scop","type":"Role","_key":"20309","_from":"14881","_to":"14868"} +{"$label":"ACTS_IN","name":"Frisian Leader","type":"Role","_key":"20308","_from":"14880","_to":"14868"} +{"$label":"ACTS_IN","name":"Aethelbeorg","type":"Role","_key":"20307","_from":"14879","_to":"14868"} +{"$label":"ACTS_IN","name":"Scylding's Watch","type":"Role","_key":"20304","_from":"14878","_to":"14868"} +{"$label":"ACTS_IN","name":"Drunken Thane","type":"Role","_key":"20303","_from":"14877","_to":"14868"} +{"$label":"ACTS_IN","name":"Young Cain","type":"Role","_key":"20302","_from":"14876","_to":"14868"} +{"$label":"ACTS_IN","name":"Aesher","type":"Role","_key":"20301","_from":"14875","_to":"14868"} +{"$label":"ACTS_IN","name":"Hild","type":"Role","_key":"20298","_from":"14874","_to":"14868"} +{"$label":"ACTS_IN","name":"Gitte","type":"Role","_key":"20297","_from":"14873","_to":"14868"} +{"$label":"ACTS_IN","name":"Eofor","type":"Role","_key":"20296","_from":"14872","_to":"14868"} +{"$label":"ACTS_IN","name":"Estrith","type":"Role","_key":"20295","_from":"14871","_to":"14868"} +{"$label":"ACTS_IN","name":"Old Cain","type":"Role","_key":"20294","_from":"14870","_to":"14868"} +{"$label":"ACTS_IN","name":"Wulfgar","type":"Role","_key":"20293","_from":"14869","_to":"14868"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"113236","_from":"14869","_to":"66717"} +{"$label":"ACTS_IN","name":"King Tygath","type":"Role","_key":"56906","_from":"14869","_to":"36116"} +{"$label":"ACTS_IN","name":"Ned Gold (Teen)","type":"Role","_key":"110785","_from":"14876","_to":"65438"} +{"$label":"ACTS_IN","name":"PA Announcer","type":"Role","_key":"58507","_from":"14877","_to":"36974"} +{"$label":"ACTS_IN","name":"Dan O'Grady","type":"Role","_key":"72125","_from":"14878","_to":"43597"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"67892","_from":"14878","_to":"41713"} +{"$label":"ACTS_IN","name":"Lady in the Phonebox \/ Old Lady","type":"Role","_key":"113240","_from":"14879","_to":"66717"} +{"$label":"ACTS_IN","name":"Lori's Mom","type":"Role","_key":"106786","_from":"14879","_to":"62951"} +{"$label":"ACTS_IN","name":"Heavy Set Woman","type":"Role","_key":"58614","_from":"14879","_to":"37025"} +{"$label":"ACTS_IN","name":"Grosser","type":"Role","_key":"20315","_from":"14886","_to":"14883"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"20314","_from":"14885","_to":"14883"} +{"$label":"DIRECTED","_key":"20311","_from":"14884","_to":"14883"} +{"$label":"ACTS_IN","name":"Karl van Beethoven","type":"Role","_key":"95981","_from":"14885","_to":"56429"} +{"$label":"ACTS_IN","name":"Salomon 'Solly' 'Salek' Perel \/ Josef 'Jupp' Peters","type":"Role","_key":"51899","_from":"14885","_to":"33854"} +{"$label":"ACTS_IN","name":"Ulrich","type":"Role","_key":"38414","_from":"14885","_to":"25944"} +{"$label":"ACTS_IN","name":"Trainer \/ Sheriff \/ Arch\u00e4ologe \/ Louis XIV. \/ Pianist","type":"Role","_key":"66273","_from":"14886","_to":"40996"} +{"$label":"ACTS_IN","name":"Ray Lacey","type":"Role","_key":"39667","_from":"14886","_to":"26806"} +{"$label":"ACTS_IN","name":"Schuldirektor","type":"Role","_key":"33268","_from":"14886","_to":"23045"} +{"$label":"ACTS_IN","name":"Duke Fallow","type":"Role","_key":"20326","_from":"14889","_to":"14887"} +{"$label":"DIRECTED","_key":"20316","_from":"14888","_to":"14887"} +{"$label":"DIRECTED","_key":"112294","_from":"14888","_to":"66302"} +{"$label":"DIRECTED","_key":"104399","_from":"14888","_to":"61413"} +{"$label":"DIRECTED","_key":"89080","_from":"14888","_to":"52768"} +{"$label":"DIRECTED","_key":"88260","_from":"14888","_to":"52358"} +{"$label":"DIRECTED","_key":"67623","_from":"14888","_to":"41614"} +{"$label":"DIRECTED","_key":"58178","_from":"14888","_to":"36805"} +{"$label":"DIRECTED","_key":"47534","_from":"14888","_to":"31322"} +{"$label":"DIRECTED","_key":"23083","_from":"14888","_to":"16741"} +{"$label":"ACTS_IN","name":"Uwe Boll","type":"Role","_key":"23095","_from":"14888","_to":"16741"} +{"$label":"ACTS_IN","name":"Luc Fromage","type":"Role","_key":"94069","_from":"14889","_to":"55398"} +{"$label":"ACTS_IN","name":"Tim LaFlour","type":"Role","_key":"90129","_from":"14889","_to":"53299"} +{"$label":"ACTS_IN","name":"Chip Sutphin","type":"Role","_key":"70948","_from":"14889","_to":"43099"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"68547","_from":"14889","_to":"42032"} +{"$label":"ACTS_IN","name":"Shaggy","type":"Role","_key":"67363","_from":"14889","_to":"41514"} +{"$label":"ACTS_IN","name":"Jerry Conlaine","type":"Role","_key":"65602","_from":"14889","_to":"40653"} +{"$label":"ACTS_IN","name":"Emmanuel Goldstein \/ 'Cereal Killer'","type":"Role","_key":"63240","_from":"14889","_to":"39652"} +{"$label":"ACTS_IN","name":"Lt. Todd 'Maniac' Marshall","type":"Role","_key":"62734","_from":"14889","_to":"39439"} +{"$label":"ACTS_IN","name":"Brock Hudson","type":"Role","_key":"62546","_from":"14889","_to":"39367"} +{"$label":"ACTS_IN","name":"Norville Rogers (\u201eShaggy\u201c)","type":"Role","_key":"55193","_from":"14889","_to":"35209"} +{"$label":"ACTS_IN","name":"Dennis Rafkin","type":"Role","_key":"53458","_from":"14889","_to":"34533"} +{"$label":"ACTS_IN","name":"Stevo","type":"Role","_key":"43241","_from":"14889","_to":"28881"} +{"$label":"ACTS_IN","name":"Fishman","type":"Role","_key":"37679","_from":"14889","_to":"25539"} +{"$label":"ACTS_IN","name":"Stuart Macher","type":"Role","_key":"30266","_from":"14889","_to":"21306"} +{"$label":"DIRECTED","_key":"20337","_from":"14896","_to":"14890"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"20336","_from":"14895","_to":"14890"} +{"$label":"ACTS_IN","name":"Blanch","type":"Role","_key":"20334","_from":"14894","_to":"14890"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"20333","_from":"14893","_to":"14890"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"20331","_from":"14892","_to":"14890"} +{"$label":"ACTS_IN","name":"David Bloomberg","type":"Role","_key":"20329","_from":"14891","_to":"14890"} +{"$label":"ACTS_IN","name":"Barkley Michaelson","type":"Role","_key":"105418","_from":"14891","_to":"62025"} +{"$label":"ACTS_IN","name":"Matty Matthews","type":"Role","_key":"94888","_from":"14891","_to":"55867"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"63818","_from":"14891","_to":"39898"} +{"$label":"ACTS_IN","name":"Jeannie Ashcroft","type":"Role","_key":"58069","_from":"14892","_to":"36740"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"49491","_from":"14892","_to":"32398"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"31285","_from":"14892","_to":"21881"} +{"$label":"ACTS_IN","name":"Paul House","type":"Role","_key":"63372","_from":"14893","_to":"39712"} +{"$label":"ACTS_IN","name":"Mrs. Thompson","type":"Role","_key":"70574","_from":"14894","_to":"42937"} +{"$label":"ACTS_IN","name":"Lizzy","type":"Role","_key":"95369","_from":"14895","_to":"56099"} +{"$label":"DIRECTED","_key":"98947","_from":"14896","_to":"58292"} +{"$label":"ACTS_IN","name":"Kupa","type":"Role","_key":"20347","_from":"14904","_to":"14897"} +{"$label":"ACTS_IN","name":"Popo","type":"Role","_key":"20346","_from":"14903","_to":"14897"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"20345","_from":"14902","_to":"14897"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"20344","_from":"14901","_to":"14897"} +{"$label":"ACTS_IN","name":"Terror","type":"Role","_key":"20342","_from":"14900","_to":"14897"} +{"$label":"ACTS_IN","name":"Christine Moyo","type":"Role","_key":"20340","_from":"14899","_to":"14897"} +{"$label":"DIRECTED","_key":"20338","_from":"14898","_to":"14897"} +{"$label":"ACTS_IN","name":"Em","type":"Role","_key":"20353","_from":"14910","_to":"14905"} +{"$label":"ACTS_IN","name":"Tent Sannie","type":"Role","_key":"20352","_from":"14909","_to":"14905"} +{"$label":"ACTS_IN","name":"Lyndall","type":"Role","_key":"20350","_from":"14908","_to":"14905"} +{"$label":"ACTS_IN","name":"Waldo","type":"Role","_key":"20349","_from":"14907","_to":"14905"} +{"$label":"DIRECTED","_key":"20348","_from":"14906","_to":"14905"} +{"$label":"DIRECTED","_key":"109173","_from":"14906","_to":"64500"} +{"$label":"DIRECTED","_key":"109140","_from":"14906","_to":"64475"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"20364","_from":"14917","_to":"14911"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"20363","_from":"14916","_to":"14911"} +{"$label":"ACTS_IN","name":"Fastidious Man","type":"Role","_key":"20362","_from":"14915","_to":"14911"} +{"$label":"ACTS_IN","name":"Richards","type":"Role","_key":"20361","_from":"14914","_to":"14911"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"20360","_from":"14913","_to":"14911"} +{"$label":"DIRECTED","_key":"20355","_from":"14912","_to":"14911"} +{"$label":"ACTS_IN","name":"Angie Finn","type":"Role","_key":"20377","_from":"14929","_to":"14918"} +{"$label":"ACTS_IN","name":"Lionell","type":"Role","_key":"20376","_from":"14928","_to":"14918"} +{"$label":"ACTS_IN","name":"Ryan Flinn sr.","type":"Role","_key":"20375","_from":"14927","_to":"14918"} +{"$label":"ACTS_IN","name":"Sarrow","type":"Role","_key":"20374","_from":"14926","_to":"14918"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"20373","_from":"14925","_to":"14918"} +{"$label":"ACTS_IN","name":"Trapez Catcher","type":"Role","_key":"20372","_from":"14924","_to":"14918"} +{"$label":"ACTS_IN","name":"Rennie","type":"Role","_key":"20371","_from":"14923","_to":"14918"} +{"$label":"ACTS_IN","name":"Ringmaster","type":"Role","_key":"20369","_from":"14922","_to":"14918"} +{"$label":"ACTS_IN","name":"Ryan Flinn","type":"Role","_key":"20368","_from":"14921","_to":"14918"} +{"$label":"ACTS_IN","name":"Melanie Lewis","type":"Role","_key":"20367","_from":"14920","_to":"14918"} +{"$label":"DIRECTED","_key":"20365","_from":"14919","_to":"14918"} +{"$label":"ACTS_IN","name":"Beth Cooper","type":"Role","_key":"121288","_from":"14920","_to":"71261"} +{"$label":"ACTS_IN","name":"Young Jeanne","type":"Role","_key":"118613","_from":"14920","_to":"69747"} +{"$label":"ACTS_IN","name":"Christina Waters","type":"Role","_key":"116756","_from":"14920","_to":"68729"} +{"$label":"ACTS_IN","name":"Mermaid","type":"Role","_key":"111185","_from":"14920","_to":"65664"} +{"$label":"ACTS_IN","name":"Allyson Palmer","type":"Role","_key":"106762","_from":"14920","_to":"62941"} +{"$label":"ACTS_IN","name":"Adelaide Bourbon","type":"Role","_key":"104108","_from":"14920","_to":"61250"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"91721","_from":"14920","_to":"54107"} +{"$label":"ACTS_IN","name":"Britney Allen","type":"Role","_key":"68565","_from":"14920","_to":"42036"} +{"$label":"ACTS_IN","name":"Sheryl Yoast","type":"Role","_key":"64765","_from":"14920","_to":"40308"} +{"$label":"ACTS_IN","name":"Dot (voice)","type":"Role","_key":"54189","_from":"14920","_to":"34813"} +{"$label":"ACTS_IN","name":"young Jane","type":"Role","_key":"46623","_from":"14920","_to":"30792"} +{"$label":"ACTS_IN","name":"Channing Walsh","type":"Role","_key":"43400","_from":"14920","_to":"28997"} +{"$label":"ACTS_IN","name":"Audrey Davis","type":"Role","_key":"32941","_from":"14920","_to":"22845"} +{"$label":"ACTS_IN","name":"Clyde","type":"Role","_key":"89207","_from":"14921","_to":"52824"} +{"$label":"ACTS_IN","name":"Sam Jones","type":"Role","_key":"101038","_from":"14922","_to":"59542"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"49286","_from":"14927","_to":"32275"} +{"$label":"ACTS_IN","name":"Dr. Michael Welles","type":"Role","_key":"102562","_from":"14928","_to":"60339"} +{"$label":"ACTS_IN","name":"Burton Stanton","type":"Role","_key":"66000","_from":"14928","_to":"40843"} +{"$label":"ACTS_IN","name":"Harry Landers","type":"Role","_key":"38791","_from":"14928","_to":"26203"} +{"$label":"DIRECTED","_key":"44843","_from":"14928","_to":"29826"} +{"$label":"DIRECTED","_key":"38783","_from":"14928","_to":"26203"} +{"$label":"ACTS_IN","name":"Lisa Webber","type":"Role","_key":"59451","_from":"14929","_to":"37551"} +{"$label":"ACTS_IN","name":"Iona Kai","type":"Role","_key":"58011","_from":"14929","_to":"36700"} +{"$label":"ACTS_IN","name":"Bobbi Merchant","type":"Role","_key":"50735","_from":"14929","_to":"33114"} +{"$label":"ACTS_IN","name":"Allison, Flight Attendant","type":"Role","_key":"20385","_from":"14932","_to":"14930"} +{"$label":"ACTS_IN","name":"Colonel Austin Travis","type":"Role","_key":"20379","_from":"14931","_to":"14930"} +{"$label":"ACTS_IN","name":"Ruslan Drachev","type":"Role","_key":"116308","_from":"14931","_to":"68473"} +{"$label":"ACTS_IN","name":"johnathon cold","type":"Role","_key":"115549","_from":"14931","_to":"68025"} +{"$label":"ACTS_IN","name":"Jonathan Cold","type":"Role","_key":"114812","_from":"14931","_to":"67629"} +{"$label":"ACTS_IN","name":"Simon Ballister","type":"Role","_key":"111866","_from":"14931","_to":"66041"} +{"$label":"ACTS_IN","name":"Matt Conlin","type":"Role","_key":"111863","_from":"14931","_to":"66040"} +{"$label":"ACTS_IN","name":"Commander Tao","type":"Role","_key":"102873","_from":"14931","_to":"60513"} +{"$label":"ACTS_IN","name":"Det. Jacob King","type":"Role","_key":"100384","_from":"14931","_to":"59199"} +{"$label":"ACTS_IN","name":"Det Gino Felino","type":"Role","_key":"99815","_from":"14931","_to":"58881"} +{"$label":"ACTS_IN","name":"Jack Taggart","type":"Role","_key":"99479","_from":"14931","_to":"58645"} +{"$label":"ACTS_IN","name":"Chris Cody","type":"Role","_key":"98932","_from":"14931","_to":"58290"} +{"$label":"ACTS_IN","name":"John Seeger","type":"Role","_key":"96089","_from":"14931","_to":"56483"} +{"$label":"ACTS_IN","name":"Jake Hopper","type":"Role","_key":"90151","_from":"14931","_to":"53305"} +{"$label":"ACTS_IN","name":"Orin Boyd","type":"Role","_key":"66422","_from":"14931","_to":"41071"} +{"$label":"ACTS_IN","name":"John Hatcher","type":"Role","_key":"61410","_from":"14931","_to":"38737"} +{"$label":"ACTS_IN","name":"Sasha Petrosevitch","type":"Role","_key":"61369","_from":"14931","_to":"38724"} +{"$label":"ACTS_IN","name":"Cmdr. Marshall Lawson","type":"Role","_key":"59925","_from":"14931","_to":"37835"} +{"$label":"ACTS_IN","name":"Jack Foster","type":"Role","_key":"57968","_from":"14931","_to":"36679"} +{"$label":"ACTS_IN","name":"Lt. Jack Cole","type":"Role","_key":"55125","_from":"14931","_to":"35191"} +{"$label":"ACTS_IN","name":"Forrest Taft","type":"Role","_key":"55119","_from":"14931","_to":"35190"} +{"$label":"ACTS_IN","name":"Mason Storm","type":"Role","_key":"54751","_from":"14931","_to":"35043"} +{"$label":"ACTS_IN","name":"Nico Toscani","type":"Role","_key":"53586","_from":"14931","_to":"34584"} +{"$label":"ACTS_IN","name":"Casey Ryback","type":"Role","_key":"51048","_from":"14931","_to":"33312"} +{"$label":"ACTS_IN","name":"Harlan Banks","type":"Role","_key":"49442","_from":"14931","_to":"32373"} +{"$label":"ACTS_IN","name":"Wesley McClaren","type":"Role","_key":"41420","_from":"14931","_to":"27846"} +{"$label":"ACTS_IN","name":"Casey Ryback","type":"Role","_key":"27504","_from":"14931","_to":"19738"} +{"$label":"DIRECTED","_key":"55124","_from":"14931","_to":"35190"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"94907","_from":"14932","_to":"55876"} +{"$label":"ACTS_IN","name":"Gail Wallens","type":"Role","_key":"54595","_from":"14932","_to":"34975"} +{"$label":"DIRECTED","_key":"20405","_from":"14936","_to":"14934"} +{"$label":"ACTS_IN","name":"Dick Gordon","type":"Role","_key":"20399","_from":"14935","_to":"14934"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"111116","_from":"14935","_to":"65632"} +{"$label":"ACTS_IN","name":"Arnold Poindexter","type":"Role","_key":"98297","_from":"14935","_to":"57901"} +{"$label":"ACTS_IN","name":"Woods","type":"Role","_key":"90268","_from":"14935","_to":"53365"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"20409","_from":"14935","_to":"14937"} +{"$label":"DIRECTED","_key":"118268","_from":"14936","_to":"69517"} +{"$label":"DIRECTED","_key":"32999","_from":"14936","_to":"22881"} +{"$label":"DIRECTED","_key":"26801","_from":"14936","_to":"19258"} +{"$label":"DIRECTED","_key":"20415","_from":"14936","_to":"14937"} +{"$label":"ACTS_IN","name":"Beulah Gasnick","type":"Role","_key":"20414","_from":"14940","_to":"14937"} +{"$label":"ACTS_IN","name":"John Kinsella","type":"Role","_key":"20413","_from":"14939","_to":"14937"} +{"$label":"ACTS_IN","name":"Annie Kinsella","type":"Role","_key":"20408","_from":"14938","_to":"14937"} +{"$label":"ACTS_IN","name":"McCoy","type":"Role","_key":"101619","_from":"14938","_to":"59813"} +{"$label":"ACTS_IN","name":"Liz Beaumont","type":"Role","_key":"62728","_from":"14938","_to":"39438"} +{"$label":"ACTS_IN","name":"Alison Ransom","type":"Role","_key":"45703","_from":"14938","_to":"30247"} +{"$label":"ACTS_IN","name":"Beatrice McCready","type":"Role","_key":"33909","_from":"14938","_to":"23352"} +{"$label":"ACTS_IN","name":"Chanice Kobolowski","type":"Role","_key":"22222","_from":"14938","_to":"16185"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"99173","_from":"14940","_to":"58429"} +{"$label":"ACTS_IN","name":"Aunt Carmen","type":"Role","_key":"99087","_from":"14940","_to":"58369"} +{"$label":"ACTS_IN","name":"Myrna","type":"Role","_key":"90895","_from":"14940","_to":"53624"} +{"$label":"ACTS_IN","name":"Vice Principal Bernard","type":"Role","_key":"72380","_from":"14940","_to":"43699"} +{"$label":"ACTS_IN","name":"Dr. Margaret Inness","type":"Role","_key":"67757","_from":"14940","_to":"41653"} +{"$label":"ACTS_IN","name":"Mechanized Artist","type":"Role","_key":"20424","_from":"14946","_to":"14941"} +{"$label":"ACTS_IN","name":"Sandra Sunday","type":"Role","_key":"20423","_from":"14945","_to":"14941"} +{"$label":"ACTS_IN","name":"Mrs. Huntington-Quali","type":"Role","_key":"20422","_from":"14944","_to":"14941"} +{"$label":"ACTS_IN","name":"Grey Artist","type":"Role","_key":"20421","_from":"14943","_to":"14941"} +{"$label":"DIRECTED","_key":"20416","_from":"14942","_to":"14941"} +{"$label":"DIRECTED","_key":"117668","_from":"14942","_to":"69164"} +{"$label":"DIRECTED","_key":"114599","_from":"14942","_to":"67505"} +{"$label":"DIRECTED","_key":"52676","_from":"14942","_to":"34206"} +{"$label":"ACTS_IN","name":"Dai Nimmo ('Diversions')","type":"Role","_key":"40494","_from":"14943","_to":"27264"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"20432","_from":"14950","_to":"14947"} +{"$label":"ACTS_IN","name":"Kate Davis","type":"Role","_key":"20428","_from":"14949","_to":"14947"} +{"$label":"DIRECTED","_key":"20426","_from":"14948","_to":"14947"} +{"$label":"ACTS_IN","name":"Tess Chaykin","type":"Role","_key":"113539","_from":"14949","_to":"66900"} +{"$label":"ACTS_IN","name":"Marta Ferrer","type":"Role","_key":"110013","_from":"14949","_to":"65007"} +{"$label":"ACTS_IN","name":"Amy Benic","type":"Role","_key":"104911","_from":"14949","_to":"61735"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"103544","_from":"14949","_to":"60906"} +{"$label":"ACTS_IN","name":"Meg Coburn","type":"Role","_key":"71655","_from":"14949","_to":"43387"} +{"$label":"ACTS_IN","name":"Linda Ash","type":"Role","_key":"69923","_from":"14949","_to":"42671"} +{"$label":"ACTS_IN","name":"Delila","type":"Role","_key":"67868","_from":"14949","_to":"41699"} +{"$label":"ACTS_IN","name":"Dionna","type":"Role","_key":"62348","_from":"14949","_to":"39281"} +{"$label":"ACTS_IN","name":"Romy White","type":"Role","_key":"55013","_from":"14949","_to":"35158"} +{"$label":"ACTS_IN","name":"Sharon Cassidy","type":"Role","_key":"52846","_from":"14949","_to":"34256"} +{"$label":"ACTS_IN","name":"Ruth Wheldon","type":"Role","_key":"51638","_from":"14949","_to":"33692"} +{"$label":"ACTS_IN","name":"Young lady","type":"Role","_key":"40175","_from":"14949","_to":"27113"} +{"$label":"ACTS_IN","name":"Dr. Susan Tyler","type":"Role","_key":"35152","_from":"14949","_to":"23957"} +{"$label":"ACTS_IN","name":"Bruno Stepn","type":"Role","_key":"20442","_from":"14960","_to":"14953"} +{"$label":"ACTS_IN","name":"Hermann Podbradt","type":"Role","_key":"20441","_from":"14959","_to":"14953"} +{"$label":"ACTS_IN","name":"Uwe Podbradt","type":"Role","_key":"20440","_from":"14958","_to":"14953"} +{"$label":"ACTS_IN","name":"Hans Bebber","type":"Role","_key":"20438","_from":"14957","_to":"14953"} +{"$label":"ACTS_IN","name":"Wilma Podbradt","type":"Role","_key":"20437","_from":"14956","_to":"14953"} +{"$label":"ACTS_IN","name":"Katharina","type":"Role","_key":"20435","_from":"14955","_to":"14953"} +{"$label":"DIRECTED","_key":"20433","_from":"14954","_to":"14953"} +{"$label":"ACTS_IN","name":"Kato","type":"Role","_key":"113903","_from":"14955","_to":"67089"} +{"$label":"ACTS_IN","name":"Daniela Hausmann","type":"Role","_key":"47173","_from":"14955","_to":"31101"} +{"$label":"ACTS_IN","name":"Camilla Stauding","type":"Role","_key":"43200","_from":"14955","_to":"28852"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"28412","_from":"14955","_to":"20322"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"61028","_from":"14960","_to":"38564"} +{"$label":"DIRECTED","_key":"20451","_from":"14967","_to":"14961"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"20450","_from":"14966","_to":"14961"} +{"$label":"ACTS_IN","name":"Commissaire Gibert","type":"Role","_key":"20449","_from":"14965","_to":"14961"} +{"$label":"ACTS_IN","name":"Camille Coutant-Kerbalec","type":"Role","_key":"20448","_from":"14964","_to":"14961"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"20447","_from":"14963","_to":"14961"} +{"$label":"ACTS_IN","name":"\u00c9milien Coutant-Kerbalec","type":"Role","_key":"20445","_from":"14962","_to":"14961"} +{"$label":"ACTS_IN","name":"Philippe Saule","type":"Role","_key":"38295","_from":"14962","_to":"25867"} +{"$label":"ACTS_IN","name":"\u00c9milien Coutant-Kerbalec","type":"Role","_key":"20484","_from":"14962","_to":"14980"} +{"$label":"ACTS_IN","name":"\u00c9milien Coutant-Kerbalec","type":"Role","_key":"20476","_from":"14962","_to":"14979"} +{"$label":"ACTS_IN","name":"\u00c9milien Coutant-Kerbalec","type":"Role","_key":"20462","_from":"14962","_to":"14973"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"20485","_from":"14963","_to":"14980"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"20478","_from":"14963","_to":"14979"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"20464","_from":"14963","_to":"14973"} +{"$label":"ACTS_IN","name":"Commissaire Gibert","type":"Role","_key":"20479","_from":"14965","_to":"14979"} +{"$label":"DIRECTED","_key":"114904","_from":"14967","_to":"67678"} +{"$label":"DIRECTED","_key":"90393","_from":"14967","_to":"53411"} +{"$label":"DIRECTED","_key":"65874","_from":"14967","_to":"40762"} +{"$label":"ACTS_IN","name":"Caiaphas","type":"Role","_key":"20459","_from":"14972","_to":"14968"} +{"$label":"ACTS_IN","name":"Barabbas","type":"Role","_key":"20458","_from":"14971","_to":"14968"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"20453","_from":"14970","_to":"14968"} +{"$label":"DIRECTED","_key":"20452","_from":"14969","_to":"14968"} +{"$label":"DIRECTED","_key":"101441","_from":"14969","_to":"59717"} +{"$label":"DIRECTED","_key":"88286","_from":"14969","_to":"52367"} +{"$label":"DIRECTED","_key":"50435","_from":"14969","_to":"32946"} +{"$label":"DIRECTED","_key":"23019","_from":"14969","_to":"16666"} +{"$label":"DIRECTED","_key":"22923","_from":"14969","_to":"16608"} +{"$label":"DIRECTED","_key":"21056","_from":"14969","_to":"15413"} +{"$label":"ACTS_IN","name":"Herodes Agrippa","type":"Role","_key":"22921","_from":"14969","_to":"16608"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"111151","_from":"14970","_to":"65647"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"110251","_from":"14970","_to":"65163"} +{"$label":"ACTS_IN","name":"Batman (voice)","type":"Role","_key":"98103","_from":"14970","_to":"57762"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"95933","_from":"14970","_to":"56415"} +{"$label":"ACTS_IN","name":"Adam Stubbs","type":"Role","_key":"66502","_from":"14970","_to":"41119"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"65517","_from":"14970","_to":"40608"} +{"$label":"ACTS_IN","name":"T.K.","type":"Role","_key":"64937","_from":"14970","_to":"40373"} +{"$label":"ACTS_IN","name":"Frank Beaumont","type":"Role","_key":"63907","_from":"14970","_to":"39924"} +{"$label":"ACTS_IN","name":"Lance 'Icebreaker' Petersen","type":"Role","_key":"63263","_from":"14970","_to":"39660"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"57781","_from":"14970","_to":"36576"} +{"$label":"ACTS_IN","name":"Handcuffed Man","type":"Role","_key":"57212","_from":"14970","_to":"36289"} +{"$label":"ACTS_IN","name":"Larry Pogue Sr.","type":"Role","_key":"39836","_from":"14970","_to":"26919"} +{"$label":"ACTS_IN","name":"Albert Steininger","type":"Role","_key":"43035","_from":"14972","_to":"28745"} +{"$label":"ACTS_IN","name":"Eike Blohm","type":"Role","_key":"42167","_from":"14972","_to":"28249"} +{"$label":"ACTS_IN","name":"Dr. Jens Groote","type":"Role","_key":"42141","_from":"14972","_to":"28231"} +{"$label":"ACTS_IN","name":"Quintus Maximus","type":"Role","_key":"23023","_from":"14972","_to":"16697"} +{"$label":"ACTS_IN","name":"Eschkol","type":"Role","_key":"22864","_from":"14972","_to":"16575"} +{"$label":"ACTS_IN","name":"Hanno Buddenbrook","type":"Role","_key":"20474","_from":"14978","_to":"14974"} +{"$label":"ACTS_IN","name":"Thomas Buddenbrook","type":"Role","_key":"20473","_from":"14977","_to":"14974"} +{"$label":"ACTS_IN","name":"Gerda Buddenbrook","type":"Role","_key":"20472","_from":"14976","_to":"14974"} +{"$label":"ACTS_IN","name":"Morten Schwarzkopf","type":"Role","_key":"20471","_from":"14975","_to":"14974"} +{"$label":"ACTS_IN","name":"Oberfeldwebel Wilhelm","type":"Role","_key":"110284","_from":"14975","_to":"65170"} +{"$label":"ACTS_IN","name":"Sven Lehnert","type":"Role","_key":"26935","_from":"14975","_to":"19371"} +{"$label":"ACTS_IN","name":"Gerrit","type":"Role","_key":"45587","_from":"14977","_to":"30180"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"35455","_from":"14977","_to":"24112"} +{"$label":"ACTS_IN","name":"Raban","type":"Role","_key":"65488","_from":"14978","_to":"40600"} +{"$label":"ACTS_IN","name":"Raban","type":"Role","_key":"49180","_from":"14978","_to":"32222"} +{"$label":"ACTS_IN","name":"Sukk","type":"Role","_key":"20490","_from":"14983","_to":"14980"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"20489","_from":"14982","_to":"14980"} +{"$label":"ACTS_IN","name":"Le Belge","type":"Role","_key":"20488","_from":"14981","_to":"14980"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"50588","_from":"14981","_to":"33043"} +{"$label":"ACTS_IN","name":"Raymond Pelletier","type":"Role","_key":"103382","_from":"14982","_to":"60813"} +{"$label":"ACTS_IN","name":"Bruges","type":"Role","_key":"95808","_from":"14982","_to":"56350"} +{"$label":"ACTS_IN","name":"Jean-Maxence","type":"Role","_key":"62407","_from":"14982","_to":"39313"} +{"$label":"ACTS_IN","name":"Claudy","type":"Role","_key":"50593","_from":"14982","_to":"33043"} +{"$label":"ACTS_IN","name":"Sammler in England","type":"Role","_key":"20520","_from":"15009","_to":"14984"} +{"$label":"ACTS_IN","name":"Produzent","type":"Role","_key":"20519","_from":"15008","_to":"14984"} +{"$label":"ACTS_IN","name":"Berlin Film Fest Footage","type":"Role","_key":"20516","_from":"15007","_to":"14984"} +{"$label":"ACTS_IN","name":"Produzent","type":"Role","_key":"20514","_from":"15006","_to":"14984"} +{"$label":"ACTS_IN","name":"Drehbuchautor","type":"Role","_key":"20513","_from":"15005","_to":"14984"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"20512","_from":"15004","_to":"14984"} +{"$label":"ACTS_IN","name":"Travens Witwe","type":"Role","_key":"20511","_from":"15003","_to":"14984"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"20510","_from":"15002","_to":"14984"} +{"$label":"ACTS_IN","name":"Typ im Coffeshop","type":"Role","_key":"20509","_from":"15001","_to":"14984"} +{"$label":"ACTS_IN","name":"Frau im Bus","type":"Role","_key":"20508","_from":"15000","_to":"14984"} +{"$label":"ACTS_IN","name":"Alter Man in L.A.","type":"Role","_key":"20507","_from":"14999","_to":"14984"} +{"$label":"ACTS_IN","name":"Archivarin","type":"Role","_key":"20506","_from":"14998","_to":"14984"} +{"$label":"ACTS_IN","name":"Filmhistoriker","type":"Role","_key":"20505","_from":"14997","_to":"14984"} +{"$label":"ACTS_IN","name":"Cutter","type":"Role","_key":"20504","_from":"14996","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritikerin","type":"Role","_key":"20502","_from":"14995","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritikerin","type":"Role","_key":"20501","_from":"14994","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritiker","type":"Role","_key":"20500","_from":"14993","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritiker","type":"Role","_key":"20499","_from":"14992","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritiker","type":"Role","_key":"20497","_from":"14991","_to":"14984"} +{"$label":"ACTS_IN","name":"Kritiker","type":"Role","_key":"20496","_from":"14990","_to":"14984"} +{"$label":"ACTS_IN","name":"Frau in der Bar","type":"Role","_key":"20495","_from":"14989","_to":"14984"} +{"$label":"ACTS_IN","name":"Kollege","type":"Role","_key":"20494","_from":"14988","_to":"14984"} +{"$label":"ACTS_IN","name":"Fritz Ackrewa","type":"Role","_key":"20493","_from":"14987","_to":"14984"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"20492","_from":"14986","_to":"14984"} +{"$label":"DIRECTED","_key":"20491","_from":"14985","_to":"14984"} +{"$label":"DIRECTED","_key":"56452","_from":"15006","_to":"35868"} +{"$label":"DIRECTED","_key":"31380","_from":"15006","_to":"21938"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"20546","_from":"15033","_to":"15010"} +{"$label":"ACTS_IN","name":"Piano Player","type":"Role","_key":"20545","_from":"15032","_to":"15010"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"20544","_from":"15031","_to":"15010"} +{"$label":"ACTS_IN","name":"3nd detectiv","type":"Role","_key":"20543","_from":"15030","_to":"15010"} +{"$label":"ACTS_IN","name":"2nd detectiv","type":"Role","_key":"20542","_from":"15029","_to":"15010"} +{"$label":"ACTS_IN","name":"Papa Waldhoff","type":"Role","_key":"20541","_from":"15028","_to":"15010"} +{"$label":"ACTS_IN","name":"Jutta","type":"Role","_key":"20540","_from":"15027","_to":"15010"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"20539","_from":"15026","_to":"15010"} +{"$label":"ACTS_IN","name":"Pawlowski","type":"Role","_key":"20538","_from":"15025","_to":"15010"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"20537","_from":"15024","_to":"15010"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"20536","_from":"15023","_to":"15010"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"20535","_from":"15022","_to":"15010"} +{"$label":"ACTS_IN","name":"Usher","type":"Role","_key":"20534","_from":"15021","_to":"15010"} +{"$label":"ACTS_IN","name":"Assistant","type":"Role","_key":"20533","_from":"15020","_to":"15010"} +{"$label":"ACTS_IN","name":"Commissionaire","type":"Role","_key":"20532","_from":"15019","_to":"15010"} +{"$label":"ACTS_IN","name":"Renato","type":"Role","_key":"20531","_from":"15018","_to":"15010"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"20530","_from":"15017","_to":"15010"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"20529","_from":"15016","_to":"15010"} +{"$label":"ACTS_IN","name":"Hustler","type":"Role","_key":"20527","_from":"15015","_to":"15010"} +{"$label":"ACTS_IN","name":"Phudy","type":"Role","_key":"20526","_from":"15014","_to":"15010"} +{"$label":"ACTS_IN","name":"Alfred S.","type":"Role","_key":"20525","_from":"15013","_to":"15010"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"20523","_from":"15012","_to":"15010"} +{"$label":"DIRECTED","_key":"20521","_from":"15011","_to":"15010"} +{"$label":"ACTS_IN","name":"Kriminalbeamter","type":"Role","_key":"31916","_from":"15013","_to":"22256"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20559","_from":"15048","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20558","_from":"15047","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20557","_from":"15046","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20556","_from":"15045","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20555","_from":"15044","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20554","_from":"15043","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20553","_from":"15042","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20552","_from":"15041","_to":"15035"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"20551","_from":"15040","_to":"15035"} +{"$label":"ACTS_IN","name":"Dong Ming-Wan","type":"Role","_key":"20550","_from":"15039","_to":"15035"} +{"$label":"ACTS_IN","name":"Shen-Hong Guo","type":"Role","_key":"20549","_from":"15038","_to":"15035"} +{"$label":"ACTS_IN","name":"San-Ming Han","type":"Role","_key":"20548","_from":"15037","_to":"15035"} +{"$label":"DIRECTED","_key":"20547","_from":"15036","_to":"15035"} +{"$label":"ACTS_IN","name":"Link","type":"Role","_key":"20567","_from":"15053","_to":"15049"} +{"$label":"ACTS_IN","name":"Markowski","type":"Role","_key":"20564","_from":"15052","_to":"15049"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"20563","_from":"15051","_to":"15049"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"20561","_from":"15050","_to":"15049"} +{"$label":"ACTS_IN","name":"Tom Hansen","type":"Role","_key":"121478","_from":"15050","_to":"71361"} +{"$label":"ACTS_IN","name":"Richie Nix","type":"Role","_key":"107653","_from":"15050","_to":"63537"} +{"$label":"ACTS_IN","name":"Elder Paul Ryder","type":"Role","_key":"105567","_from":"15050","_to":"62121"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"103164","_from":"15050","_to":"60682"} +{"$label":"ACTS_IN","name":"Cobra Commander","type":"Role","_key":"102225","_from":"15050","_to":"60158"} +{"$label":"ACTS_IN","name":"Tim Boyle","type":"Role","_key":"89356","_from":"15050","_to":"52887"} +{"$label":"ACTS_IN","name":"Jimmy Howell","type":"Role","_key":"71488","_from":"15050","_to":"43330"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"68313","_from":"15050","_to":"41932"} +{"$label":"ACTS_IN","name":"Dr. Don","type":"Role","_key":"58096","_from":"15050","_to":"36758"} +{"$label":"ACTS_IN","name":"Oliver Laird","type":"Role","_key":"55115","_from":"15050","_to":"35189"} +{"$label":"ACTS_IN","name":"Brendan","type":"Role","_key":"52741","_from":"15050","_to":"34224"} +{"$label":"ACTS_IN","name":"Jim Hawkins","type":"Role","_key":"52019","_from":"15050","_to":"33920"} +{"$label":"ACTS_IN","name":"Tommy Burgess","type":"Role","_key":"51861","_from":"15050","_to":"33835"} +{"$label":"ACTS_IN","name":"Chris Pratt","type":"Role","_key":"48654","_from":"15050","_to":"31916"} +{"$label":"ACTS_IN","name":"Cameron James","type":"Role","_key":"35063","_from":"15050","_to":"23914"} +{"$label":"ACTS_IN","name":"Carson Drew","type":"Role","_key":"98254","_from":"15051","_to":"57880"} +{"$label":"ACTS_IN","name":"Kevin Donaldson","type":"Role","_key":"96236","_from":"15051","_to":"56559"} +{"$label":"ACTS_IN","name":"1st Lt. Luke Sinclair","type":"Role","_key":"90818","_from":"15051","_to":"53591"} +{"$label":"ACTS_IN","name":"Hercules (voice)","type":"Role","_key":"73063","_from":"15051","_to":"43964"} +{"$label":"ACTS_IN","name":"Russ Turner","type":"Role","_key":"46875","_from":"15051","_to":"30909"} +{"$label":"ACTS_IN","name":"John Burns","type":"Role","_key":"34807","_from":"15051","_to":"23785"} +{"$label":"ACTS_IN","name":"Jesse Zousmer","type":"Role","_key":"26770","_from":"15051","_to":"19236"} +{"$label":"ACTS_IN","name":"Mize","type":"Role","_key":"23493","_from":"15052","_to":"17030"} +{"$label":"ACTS_IN","name":"Cary","type":"Role","_key":"98907","_from":"15053","_to":"58276"} +{"$label":"ACTS_IN","name":"Eddie Zarno","type":"Role","_key":"97085","_from":"15053","_to":"57110"} +{"$label":"ACTS_IN","name":"Tom Burnett","type":"Role","_key":"66968","_from":"15053","_to":"41341"} +{"$label":"ACTS_IN","name":"Coach Ted Orion","type":"Role","_key":"65015","_from":"15053","_to":"40406"} +{"$label":"ACTS_IN","name":"Mike Markkula","type":"Role","_key":"26798","_from":"15053","_to":"19245"} +{"$label":"DIRECTED","_key":"20595","_from":"15074","_to":"15054"} +{"$label":"ACTS_IN","name":"Jakob Magnuson","type":"Role","_key":"20593","_from":"15073","_to":"15054"} +{"$label":"ACTS_IN","name":"K\u00fcster","type":"Role","_key":"20592","_from":"15072","_to":"15054"} +{"$label":"ACTS_IN","name":"Taxifahrer Bahnhof","type":"Role","_key":"20590","_from":"15071","_to":"15054"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"20589","_from":"15070","_to":"15054"} +{"$label":"ACTS_IN","name":"Demetrius","type":"Role","_key":"20588","_from":"15069","_to":"15054"} +{"$label":"ACTS_IN","name":"Lysander","type":"Role","_key":"20587","_from":"15068","_to":"15054"} +{"$label":"ACTS_IN","name":"Pyramus","type":"Role","_key":"20586","_from":"15067","_to":"15054"} +{"$label":"ACTS_IN","name":"Kellnerin","type":"Role","_key":"20585","_from":"15066","_to":"15054"} +{"$label":"ACTS_IN","name":"Zimmerwirtin","type":"Role","_key":"20583","_from":"15065","_to":"15054"} +{"$label":"ACTS_IN","name":"Kleinkrimineller","type":"Role","_key":"20582","_from":"15064","_to":"15054"} +{"$label":"ACTS_IN","name":"Klappmesser Junge","type":"Role","_key":"20581","_from":"15063","_to":"15054"} +{"$label":"ACTS_IN","name":"Puck","type":"Role","_key":"20580","_from":"15062","_to":"15054"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"20579","_from":"15061","_to":"15054"} +{"$label":"ACTS_IN","name":"Mann im Kiosk","type":"Role","_key":"20578","_from":"15060","_to":"15054"} +{"$label":"ACTS_IN","name":"Pflegerin","type":"Role","_key":"20577","_from":"15059","_to":"15054"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"20576","_from":"15058","_to":"15054"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"20575","_from":"15057","_to":"15054"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"20574","_from":"15056","_to":"15054"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"20571","_from":"15055","_to":"15054"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"68432","_from":"15055","_to":"41976"} +{"$label":"ACTS_IN","name":"Andreas Klein","type":"Role","_key":"63696","_from":"15055","_to":"39833"} +{"$label":"ACTS_IN","name":"Clemens","type":"Role","_key":"51341","_from":"15055","_to":"33478"} +{"$label":"ACTS_IN","name":"Signorina Elettra","type":"Role","_key":"89220","_from":"15057","_to":"52828"} +{"$label":"ACTS_IN","name":"Goran","type":"Role","_key":"48370","_from":"15058","_to":"31748"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"43288","_from":"15060","_to":"28910"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42950","_from":"15060","_to":"28693"} +{"$label":"ACTS_IN","name":"Hlynur","type":"Role","_key":"67118","_from":"15073","_to":"41421"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"47172","_from":"15073","_to":"31101"} +{"$label":"DIRECTED","_key":"65074","_from":"15074","_to":"40429"} +{"$label":"DIRECTED","_key":"20596","_from":"15076","_to":"15075"} +{"$label":"DIRECTED","_key":"99870","_from":"15076","_to":"58898"} +{"$label":"DIRECTED","_key":"69363","_from":"15076","_to":"42408"} +{"$label":"DIRECTED","_key":"56747","_from":"15076","_to":"36041"} +{"$label":"ACTS_IN","name":"Marty Barnes","type":"Role","_key":"99869","_from":"15076","_to":"58898"} +{"$label":"ACTS_IN","name":"Adam 'Shep' Goodman","type":"Role","_key":"69362","_from":"15076","_to":"42408"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"56735","_from":"15076","_to":"36041"} +{"$label":"ACTS_IN","name":"Sam Shapiro","type":"Role","_key":"31962","_from":"15076","_to":"22288"} +{"$label":"ACTS_IN","name":"low-riding gang banger","type":"Role","_key":"20613","_from":"15082","_to":"15077"} +{"$label":"ACTS_IN","name":"Mopp-Verk\u00e4uferin","type":"Role","_key":"20612","_from":"15081","_to":"15077"} +{"$label":"ACTS_IN","name":"Junger Verk\u00e4ufer","type":"Role","_key":"20609","_from":"15080","_to":"15077"} +{"$label":"ACTS_IN","name":"Tracy mit 'e'","type":"Role","_key":"20607","_from":"15079","_to":"15077"} +{"$label":"ACTS_IN","name":"Lorraine","type":"Role","_key":"20606","_from":"15078","_to":"15077"} +{"$label":"ACTS_IN","name":"Meredith","type":"Role","_key":"102800","_from":"15078","_to":"60471"} +{"$label":"ACTS_IN","name":"Tiffany Wilson","type":"Role","_key":"88335","_from":"15078","_to":"52379"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"47455","_from":"15079","_to":"31257"} +{"$label":"ACTS_IN","name":"Brian McBrian","type":"Role","_key":"56663","_from":"15080","_to":"35987"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"36692","_from":"15080","_to":"24867"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"20634","_from":"15093","_to":"15083"} +{"$label":"ACTS_IN","name":"Recephonist","type":"Role","_key":"20633","_from":"15092","_to":"15083"} +{"$label":"ACTS_IN","name":"Handsome Gay American","type":"Role","_key":"20632","_from":"15091","_to":"15083"} +{"$label":"ACTS_IN","name":"Darryn","type":"Role","_key":"20631","_from":"15090","_to":"15083"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"20629","_from":"15089","_to":"15083"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"20628","_from":"15088","_to":"15083"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"20625","_from":"15087","_to":"15083"} +{"$label":"ACTS_IN","name":"Bradley","type":"Role","_key":"20624","_from":"15086","_to":"15083"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"20622","_from":"15085","_to":"15083"} +{"$label":"DIRECTED","_key":"20617","_from":"15084","_to":"15083"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"92219","_from":"15085","_to":"54418"} +{"$label":"ACTS_IN","name":"Craig Rolfe","type":"Role","_key":"92212","_from":"15086","_to":"54418"} +{"$label":"ACTS_IN","name":"Zeberdee","type":"Role","_key":"62444","_from":"15086","_to":"39336"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"91984","_from":"15087","_to":"54263"} +{"$label":"ACTS_IN","name":"Totenbeschw\u00f6rerin","type":"Role","_key":"23140","_from":"15087","_to":"16763"} +{"$label":"ACTS_IN","name":"Budbilsj\u00e5f\u00f8ren","type":"Role","_key":"51236","_from":"15093","_to":"33416"} +{"$label":"ACTS_IN","name":"Sean Alden","type":"Role","_key":"51231","_from":"15093","_to":"33411"} +{"$label":"ACTS_IN","name":"John Jessup","type":"Role","_key":"51226","_from":"15093","_to":"33406"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"51217","_from":"15093","_to":"33397"} +{"$label":"ACTS_IN","name":"John Trevethyn","type":"Role","_key":"20660","_from":"15109","_to":"15095"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"20659","_from":"15108","_to":"15095"} +{"$label":"ACTS_IN","name":"Postman","type":"Role","_key":"20658","_from":"15107","_to":"15095"} +{"$label":"ACTS_IN","name":"Removal Boss","type":"Role","_key":"20657","_from":"15106","_to":"15095"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"20654","_from":"15105","_to":"15095"} +{"$label":"ACTS_IN","name":"Nigel Pimpton","type":"Role","_key":"20653","_from":"15104","_to":"15095"} +{"$label":"ACTS_IN","name":"Melvyn","type":"Role","_key":"20652","_from":"15103","_to":"15095"} +{"$label":"ACTS_IN","name":"Sgt. Alfred Masely","type":"Role","_key":"20651","_from":"15102","_to":"15095"} +{"$label":"ACTS_IN","name":"Mrs. Hopkins","type":"Role","_key":"20649","_from":"15101","_to":"15095"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"20647","_from":"15100","_to":"15095"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"20646","_from":"15099","_to":"15095"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"20645","_from":"15098","_to":"15095"} +{"$label":"ACTS_IN","name":"Matthew Steward","type":"Role","_key":"20641","_from":"15097","_to":"15095"} +{"$label":"DIRECTED","_key":"20639","_from":"15096","_to":"15095"} +{"$label":"DIRECTED","_key":"88425","_from":"15096","_to":"52412"} +{"$label":"DIRECTED","_key":"51797","_from":"15096","_to":"33797"} +{"$label":"DIRECTED","_key":"50528","_from":"15096","_to":"33000"} +{"$label":"DIRECTED","_key":"30101","_from":"15096","_to":"21216"} +{"$label":"ACTS_IN","name":"Craig Ferguson","type":"Role","_key":"112414","_from":"15097","_to":"66373"} +{"$label":"ACTS_IN","name":"Gobber","type":"Role","_key":"61572","_from":"15097","_to":"38816"} +{"$label":"ACTS_IN","name":"Himsef","type":"Role","_key":"95335","_from":"15098","_to":"56086"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95334","_from":"15098","_to":"56085"} +{"$label":"ACTS_IN","name":"The Whale","type":"Role","_key":"46730","_from":"15098","_to":"30837"} +{"$label":"ACTS_IN","name":"Sergeant Turner","type":"Role","_key":"33128","_from":"15098","_to":"22937"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"50147","_from":"15102","_to":"32793"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"53560","_from":"15109","_to":"34569"} +{"$label":"ACTS_IN","name":"Assadour","type":"Role","_key":"20672","_from":"15115","_to":"15110"} +{"$label":"ACTS_IN","name":"Nazim","type":"Role","_key":"20670","_from":"15114","_to":"15110"} +{"$label":"ACTS_IN","name":"Egon","type":"Role","_key":"20667","_from":"15113","_to":"15110"} +{"$label":"DIRECTED","_key":"20664","_from":"15112","_to":"15110"} +{"$label":"DIRECTED","_key":"20663","_from":"15111","_to":"15110"} +{"$label":"ACTS_IN","name":"Consalvo","type":"Role","_key":"109449","_from":"15113","_to":"64659"} +{"$label":"ACTS_IN","name":"Alexatos","type":"Role","_key":"39340","_from":"15114","_to":"26608"} +{"$label":"ACTS_IN","name":"Serrant Girl","type":"Role","_key":"20687","_from":"15126","_to":"15116"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"20686","_from":"15125","_to":"15116"} +{"$label":"ACTS_IN","name":"Blackknight","type":"Role","_key":"20685","_from":"15124","_to":"15116"} +{"$label":"ACTS_IN","name":"Technican","type":"Role","_key":"20684","_from":"15123","_to":"15116"} +{"$label":"ACTS_IN","name":"Arlette","type":"Role","_key":"20683","_from":"15122","_to":"15116"} +{"$label":"ACTS_IN","name":"Medieval Queen","type":"Role","_key":"20681","_from":"15121","_to":"15116"} +{"$label":"ACTS_IN","name":"Chief Supervisor","type":"Role","_key":"20680","_from":"15120","_to":"15116"} +{"$label":"ACTS_IN","name":"Medieval Knight","type":"Role","_key":"20679","_from":"15119","_to":"15116"} +{"$label":"ACTS_IN","name":"Peter Martin","type":"Role","_key":"20677","_from":"15118","_to":"15116"} +{"$label":"DIRECTED","_key":"20675","_from":"15117","_to":"15116"} +{"$label":"DIRECTED","_key":"70860","_from":"15117","_to":"43066"} +{"$label":"DIRECTED","_key":"68640","_from":"15117","_to":"42071"} +{"$label":"DIRECTED","_key":"54325","_from":"15117","_to":"34862"} +{"$label":"ACTS_IN","name":"Dr. Jeffery Rosenberg \/ Van Helsing","type":"Role","_key":"118294","_from":"15118","_to":"69534"} +{"$label":"ACTS_IN","name":"Ben Clark","type":"Role","_key":"109536","_from":"15118","_to":"64702"} +{"$label":"ACTS_IN","name":"Caspar Weinberger (Secretary of Defense)","type":"Role","_key":"100274","_from":"15118","_to":"59133"} +{"$label":"ACTS_IN","name":"Major Danby (Flight Operations Officer)","type":"Role","_key":"62821","_from":"15118","_to":"39476"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"22348","_from":"15118","_to":"16249"} +{"$label":"DIRECTED","_key":"110648","_from":"15118","_to":"65366"} +{"$label":"DIRECTED","_key":"89935","_from":"15118","_to":"53211"} +{"$label":"DIRECTED","_key":"88143","_from":"15118","_to":"52302"} +{"$label":"DIRECTED","_key":"88138","_from":"15118","_to":"52301"} +{"$label":"DIRECTED","_key":"63489","_from":"15118","_to":"39758"} +{"$label":"DIRECTED","_key":"51850","_from":"15118","_to":"33830"} +{"$label":"DIRECTED","_key":"32871","_from":"15118","_to":"22815"} +{"$label":"ACTS_IN","name":"Aaron Stovitz","type":"Role","_key":"111497","_from":"15120","_to":"65834"} +{"$label":"ACTS_IN","name":"Mr Joffert","type":"Role","_key":"106992","_from":"15120","_to":"63076"} +{"$label":"ACTS_IN","name":"Julius C. Dithers","type":"Role","_key":"29643","_from":"15120","_to":"20979"} +{"$label":"ACTS_IN","name":"Peter Williams","type":"Role","_key":"27433","_from":"15123","_to":"19693"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"20698","_from":"15134","_to":"15127"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"20697","_from":"15133","_to":"15127"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"20695","_from":"15132","_to":"15127"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"20694","_from":"15131","_to":"15127"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"20692","_from":"15130","_to":"15127"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"20691","_from":"15129","_to":"15127"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"20690","_from":"15128","_to":"15127"} +{"$label":"ACTS_IN","name":"Raoul Minot","type":"Role","_key":"68633","_from":"15128","_to":"42069"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"42453","_from":"15128","_to":"28427"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"37868","_from":"15128","_to":"25653"} +{"$label":"ACTS_IN","name":"Dr. Paul Henry Marshall","type":"Role","_key":"71440","_from":"15129","_to":"43314"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"37869","_from":"15129","_to":"25653"} +{"$label":"ACTS_IN","name":"M. Foucault","type":"Role","_key":"37833","_from":"15129","_to":"25644"} +{"$label":"ACTS_IN","name":"Marc Desgrez","type":"Role","_key":"35795","_from":"15129","_to":"24312"} +{"$label":"ACTS_IN","name":"Theo Kaiser","type":"Role","_key":"35118","_from":"15129","_to":"23944"} +{"$label":"ACTS_IN","name":"Antoine Monteil","type":"Role","_key":"34284","_from":"15129","_to":"23529"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"33609","_from":"15129","_to":"23215"} +{"$label":"ACTS_IN","name":"Logan","type":"Role","_key":"33401","_from":"15129","_to":"23120"} +{"$label":"ACTS_IN","name":"P\u00e8re Morel","type":"Role","_key":"32551","_from":"15129","_to":"22629"} +{"$label":"ACTS_IN","name":"Paul Cisterne","type":"Role","_key":"31227","_from":"15129","_to":"21854"} +{"$label":"ACTS_IN","name":"Corey","type":"Role","_key":"29960","_from":"15129","_to":"21166"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"29942","_from":"15129","_to":"21159"} +{"$label":"ACTS_IN","name":"Jean-Claude Brialy","type":"Role","_key":"29505","_from":"15129","_to":"20909"} +{"$label":"ACTS_IN","name":"Jerome","type":"Role","_key":"24012","_from":"15129","_to":"17413"} +{"$label":"ACTS_IN","name":"Un gar\u00e7on a man\u00e8ge","type":"Role","_key":"22017","_from":"15129","_to":"16059"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"67549","_from":"15130","_to":"41589"} +{"$label":"ACTS_IN","name":"Ang\u00e8le Colomb","type":"Role","_key":"30015","_from":"15130","_to":"21177"} +{"$label":"ACTS_IN","name":"Veronique","type":"Role","_key":"34886","_from":"15131","_to":"23838"} +{"$label":"ACTS_IN","name":"L'Aztec's mother","type":"Role","_key":"63171","_from":"15132","_to":"39624"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"37871","_from":"15132","_to":"25653"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33356","_from":"15133","_to":"23096"} +{"$label":"ACTS_IN","name":"L\u00b4Assistant","type":"Role","_key":"27317","_from":"15133","_to":"19632"} +{"$label":"ACTS_IN","name":"Luis Uribe","type":"Role","_key":"20714","_from":"15148","_to":"15136"} +{"$label":"ACTS_IN","name":"Claude Martin","type":"Role","_key":"20713","_from":"15147","_to":"15136"} +{"$label":"ACTS_IN","name":"Tamara Kusenov","type":"Role","_key":"20712","_from":"15146","_to":"15136"} +{"$label":"ACTS_IN","name":"Mrs. Kusenov","type":"Role","_key":"20711","_from":"15145","_to":"15136"} +{"$label":"ACTS_IN","name":"McKittreck","type":"Role","_key":"20710","_from":"15144","_to":"15136"} +{"$label":"ACTS_IN","name":"Boris Kuzenov","type":"Role","_key":"20709","_from":"15143","_to":"15136"} +{"$label":"ACTS_IN","name":"Philippe Dubois","type":"Role","_key":"20708","_from":"15142","_to":"15136"} +{"$label":"ACTS_IN","name":"Michael Nordstrom","type":"Role","_key":"20707","_from":"15141","_to":"15136"} +{"$label":"ACTS_IN","name":"Henri Jarre","type":"Role","_key":"20706","_from":"15140","_to":"15136"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Picard","type":"Role","_key":"20702","_from":"15139","_to":"15136"} +{"$label":"ACTS_IN","name":"Nicole Devereaux","type":"Role","_key":"20700","_from":"15138","_to":"15136"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Devereaux","type":"Role","_key":"20699","_from":"15137","_to":"15136"} +{"$label":"ACTS_IN","name":"Sandro","type":"Role","_key":"20934","_from":"15137","_to":"15318"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"35727","_from":"15138","_to":"24280"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"33595","_from":"15138","_to":"23210"} +{"$label":"ACTS_IN","name":"Commander Bruno Forestier","type":"Role","_key":"101177","_from":"15139","_to":"59604"} +{"$label":"ACTS_IN","name":"Vadier","type":"Role","_key":"30224","_from":"15139","_to":"21284"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"28443","_from":"15139","_to":"20343"} +{"$label":"ACTS_IN","name":"Charles-Auguste","type":"Role","_key":"23814","_from":"15139","_to":"17263"} +{"$label":"ACTS_IN","name":"Alexandre Gartempe","type":"Role","_key":"116856","_from":"15140","_to":"68795"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"101547","_from":"15140","_to":"59770"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"68593","_from":"15140","_to":"42055"} +{"$label":"ACTS_IN","name":"Pablo Neruda","type":"Role","_key":"67278","_from":"15140","_to":"41482"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"65314","_from":"15140","_to":"40531"} +{"$label":"ACTS_IN","name":"Ren\u00e9 Boirond","type":"Role","_key":"62113","_from":"15140","_to":"39121"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"60718","_from":"15140","_to":"38342"} +{"$label":"ACTS_IN","name":"Michel Descombes","type":"Role","_key":"49644","_from":"15140","_to":"32488"} +{"$label":"ACTS_IN","name":"Thomas Berthelot","type":"Role","_key":"40242","_from":"15140","_to":"27158"} +{"$label":"ACTS_IN","name":"Raoul Malfosse","type":"Role","_key":"35043","_from":"15140","_to":"23908"} +{"$label":"ACTS_IN","name":"H\u00e9rode","type":"Role","_key":"33715","_from":"15140","_to":"23260"} +{"$label":"ACTS_IN","name":"Eug\u00e8ne Pottier","type":"Role","_key":"33369","_from":"15140","_to":"23104"} +{"$label":"ACTS_IN","name":"L'inspecteur Mathieu","type":"Role","_key":"31838","_from":"15140","_to":"22219"} +{"$label":"ACTS_IN","name":"Inspecteur Muller","type":"Role","_key":"30802","_from":"15140","_to":"21591"} +{"$label":"ACTS_IN","name":"Dubreuilh","type":"Role","_key":"30702","_from":"15140","_to":"21541"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me","type":"Role","_key":"30003","_from":"15140","_to":"21173"} +{"$label":"ACTS_IN","name":"Gaspard de Montfermeil","type":"Role","_key":"29581","_from":"15140","_to":"20945"} +{"$label":"ACTS_IN","name":"Julien Dandieu","type":"Role","_key":"27361","_from":"15140","_to":"19664"} +{"$label":"ACTS_IN","name":"Onkel Gabriel","type":"Role","_key":"21953","_from":"15140","_to":"16029"} +{"$label":"ACTS_IN","name":"Pourtalain","type":"Role","_key":"21913","_from":"15140","_to":"16008"} +{"$label":"ACTS_IN","name":"Judge Henry T. Fleming","type":"Role","_key":"112262","_from":"15141","_to":"66292"} +{"$label":"ACTS_IN","name":"Sam Marlowe","type":"Role","_key":"68613","_from":"15141","_to":"42064"} +{"$label":"ACTS_IN","name":"Lew Hayward","type":"Role","_key":"55263","_from":"15141","_to":"35245"} +{"$label":"ACTS_IN","name":"Charles Townsend","type":"Role","_key":"31000","_from":"15141","_to":"21713"} +{"$label":"ACTS_IN","name":"Jebediah Nightlinger","type":"Role","_key":"104967","_from":"15142","_to":"61763"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"93142","_from":"15142","_to":"54899"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"88879","_from":"15142","_to":"52660"} +{"$label":"ACTS_IN","name":"Mr. Ried","type":"Role","_key":"72071","_from":"15142","_to":"43573"} +{"$label":"ACTS_IN","name":"Box","type":"Role","_key":"65900","_from":"15142","_to":"40770"} +{"$label":"ACTS_IN","name":"Mr. Arrow","type":"Role","_key":"52022","_from":"15142","_to":"33920"} +{"$label":"ACTS_IN","name":"Frigga's Father","type":"Role","_key":"102751","_from":"15143","_to":"60444"} +{"$label":"ACTS_IN","name":"James Joshua Harkley","type":"Role","_key":"119052","_from":"15144","_to":"69979"} +{"$label":"ACTS_IN","name":"Victor Backett","type":"Role","_key":"115654","_from":"15144","_to":"68087"} +{"$label":"ACTS_IN","name":"Dieter Lorenz","type":"Role","_key":"45040","_from":"15147","_to":"29920"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40754","_from":"15147","_to":"27425"} +{"$label":"ACTS_IN","name":"Councillor","type":"Role","_key":"34116","_from":"15148","_to":"23436"} +{"$label":"ACTS_IN","name":"Dr. Clarke","type":"Role","_key":"31848","_from":"15148","_to":"22225"} +{"$label":"DIRECTED","_key":"20733","_from":"15161","_to":"15149"} +{"$label":"DIRECTED","_key":"20732","_from":"15160","_to":"15149"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise als Kind","type":"Role","_key":"20731","_from":"15159","_to":"15149"} +{"$label":"ACTS_IN","name":"Falsche Sekret\u00e4rin","type":"Role","_key":"20730","_from":"15158","_to":"15149"} +{"$label":"ACTS_IN","name":"Zweiter Terrorist","type":"Role","_key":"20729","_from":"15157","_to":"15149"} +{"$label":"ACTS_IN","name":"Naphtai","type":"Role","_key":"20727","_from":"15156","_to":"15149"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"20726","_from":"15155","_to":"15149"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"20725","_from":"15154","_to":"15149"} +{"$label":"ACTS_IN","name":"Scherner","type":"Role","_key":"20722","_from":"15153","_to":"15149"} +{"$label":"ACTS_IN","name":"Max Richard","type":"Role","_key":"20720","_from":"15152","_to":"15149"} +{"$label":"ACTS_IN","name":"Andrei","type":"Role","_key":"20718","_from":"15151","_to":"15149"} +{"$label":"ACTS_IN","name":"Marie \/ Nathalie","type":"Role","_key":"20716","_from":"15150","_to":"15149"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"72115","_from":"15150","_to":"43593"} +{"$label":"ACTS_IN","name":"Nele","type":"Role","_key":"72110","_from":"15150","_to":"43589"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"72116","_from":"15151","_to":"43593"} +{"$label":"ACTS_IN","name":"Tsar Alexandre","type":"Role","_key":"38434","_from":"15151","_to":"25954"} +{"$label":"ACTS_IN","name":"Brigade Commander","type":"Role","_key":"121277","_from":"15152","_to":"71240"} +{"$label":"ACTS_IN","name":"Mr. Rex Fortescue","type":"Role","_key":"41350","_from":"15155","_to":"27784"} +{"$label":"ACTS_IN","name":"Kun","type":"Role","_key":"24101","_from":"15155","_to":"17475"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"89593","_from":"15157","_to":"53014"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71966","_from":"15157","_to":"43528"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"35675","_from":"15157","_to":"24241"} +{"$label":"ACTS_IN","name":"Braid","type":"Role","_key":"31256","_from":"15157","_to":"21866"} +{"$label":"ACTS_IN","name":"Baby Face","type":"Role","_key":"28578","_from":"15157","_to":"20426"} +{"$label":"ACTS_IN","name":"Peter Werner","type":"Role","_key":"28449","_from":"15157","_to":"20343"} +{"$label":"DIRECTED","_key":"72108","_from":"15160","_to":"43589"} +{"$label":"DIRECTED","_key":"72107","_from":"15161","_to":"43589"} +{"$label":"DIRECTED","_key":"20748","_from":"15174","_to":"15162"} +{"$label":"ACTS_IN","name":"Vallombreuse","type":"Role","_key":"20747","_from":"15173","_to":"15162"} +{"$label":"ACTS_IN","name":"Gaspard","type":"Role","_key":"20746","_from":"15172","_to":"15162"} +{"$label":"ACTS_IN","name":"L'intendant du marquis","type":"Role","_key":"20745","_from":"15171","_to":"15162"} +{"$label":"ACTS_IN","name":"Parlenta","type":"Role","_key":"20744","_from":"15170","_to":"15162"} +{"$label":"ACTS_IN","name":"Machecourt","type":"Role","_key":"20743","_from":"15169","_to":"15162"} +{"$label":"ACTS_IN","name":"Le sergent","type":"Role","_key":"20742","_from":"15168","_to":"15162"} +{"$label":"ACTS_IN","name":"Marquis de Cambyse","type":"Role","_key":"20741","_from":"15167","_to":"15162"} +{"$label":"ACTS_IN","name":"Arabelle Minxit","type":"Role","_key":"20739","_from":"15166","_to":"15162"} +{"$label":"ACTS_IN","name":"Docteur Minxit","type":"Role","_key":"20738","_from":"15165","_to":"15162"} +{"$label":"ACTS_IN","name":"Pont-Cass\u00e9","type":"Role","_key":"20736","_from":"15164","_to":"15162"} +{"$label":"ACTS_IN","name":"Benjamin Rathery","type":"Role","_key":"20734","_from":"15163","_to":"15162"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Pignon","type":"Role","_key":"71447","_from":"15163","_to":"43316"} +{"$label":"ACTS_IN","name":"Jean Doucet","type":"Role","_key":"31517","_from":"15163","_to":"22016"} +{"$label":"ACTS_IN","name":"Bernard Level","type":"Role","_key":"31363","_from":"15163","_to":"21929"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71987","_from":"15164","_to":"43537"} +{"$label":"ACTS_IN","name":"Philippe de Taverney","type":"Role","_key":"71970","_from":"15164","_to":"43534"} +{"$label":"ACTS_IN","name":"Vincent Delamare","type":"Role","_key":"71955","_from":"15164","_to":"43528"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"71940","_from":"15164","_to":"43522"} +{"$label":"ACTS_IN","name":"Morel","type":"Role","_key":"42232","_from":"15164","_to":"28283"} +{"$label":"ACTS_IN","name":"Pinguet","type":"Role","_key":"23730","_from":"15164","_to":"17206"} +{"$label":"ACTS_IN","name":"Paul Fournier","type":"Role","_key":"21595","_from":"15164","_to":"15787"} +{"$label":"ACTS_IN","name":"Camille Desmoulins","type":"Role","_key":"21220","_from":"15164","_to":"15537"} +{"$label":"ACTS_IN","name":"l'aubergiste","type":"Role","_key":"37837","_from":"15165","_to":"25644"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"32925","_from":"15165","_to":"22838"} +{"$label":"ACTS_IN","name":"M. Thevenot","type":"Role","_key":"32903","_from":"15165","_to":"22829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71996","_from":"15166","_to":"43537"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120347","_from":"15167","_to":"70692"} +{"$label":"ACTS_IN","name":"Inspecteur Ducros","type":"Role","_key":"90531","_from":"15167","_to":"53476"} +{"$label":"ACTS_IN","name":"Commissaire Pidoux","type":"Role","_key":"89153","_from":"15167","_to":"52806"} +{"$label":"ACTS_IN","name":"Milan","type":"Role","_key":"87966","_from":"15167","_to":"52233"} +{"$label":"ACTS_IN","name":"M. Heurtin","type":"Role","_key":"34293","_from":"15167","_to":"23529"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Tellier","type":"Role","_key":"34043","_from":"15167","_to":"23410"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31533","_from":"15167","_to":"22027"} +{"$label":"ACTS_IN","name":"le nouveau No\u00e9","type":"Role","_key":"33732","_from":"15168","_to":"23267"} +{"$label":"ACTS_IN","name":"Thomas Putnam","type":"Role","_key":"30892","_from":"15168","_to":"21653"} +{"$label":"ACTS_IN","name":"le directeur de prison","type":"Role","_key":"33343","_from":"15169","_to":"23092"} +{"$label":"ACTS_IN","name":"Le muet","type":"Role","_key":"99318","_from":"15170","_to":"58517"} +{"$label":"ACTS_IN","name":"le p\u00eacheur","type":"Role","_key":"48887","_from":"15170","_to":"32047"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"33897","_from":"15170","_to":"23348"} +{"$label":"ACTS_IN","name":"Fauchlevent","type":"Role","_key":"31630","_from":"15170","_to":"22071"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"23672","_from":"15170","_to":"17159"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"21597","_from":"15170","_to":"15787"} +{"$label":"ACTS_IN","name":"L\u00e9on","type":"Role","_key":"20951","_from":"15170","_to":"15329"} +{"$label":"DIRECTED","_key":"71983","_from":"15174","_to":"43537"} +{"$label":"DIRECTED","_key":"71562","_from":"15174","_to":"43352"} +{"$label":"DIRECTED","_key":"71445","_from":"15174","_to":"43316"} +{"$label":"DIRECTED","_key":"34283","_from":"15174","_to":"23529"} +{"$label":"DIRECTED","_key":"33624","_from":"15174","_to":"23215"} +{"$label":"DIRECTED","_key":"32052","_from":"15174","_to":"22332"} +{"$label":"DIRECTED","_key":"30799","_from":"15174","_to":"21591"} +{"$label":"DIRECTED","_key":"23676","_from":"15174","_to":"17159"} +{"$label":"DIRECTED","_key":"21601","_from":"15174","_to":"15787"} +{"$label":"DIRECTED","_key":"20762","_from":"15184","_to":"15175"} +{"$label":"ACTS_IN","name":"Mlle Schmaltz","type":"Role","_key":"20761","_from":"15183","_to":"15175"} +{"$label":"ACTS_IN","name":"la cantini\u00e8re","type":"Role","_key":"20760","_from":"15182","_to":"15175"} +{"$label":"ACTS_IN","name":"la cantini\u00e8re aveugle","type":"Role","_key":"20759","_from":"15181","_to":"15175"} +{"$label":"ACTS_IN","name":"Th\u00e9odore G\u00e9ricault","type":"Role","_key":"20757","_from":"15180","_to":"15175"} +{"$label":"ACTS_IN","name":"Ma\u00eetre d'\u00e9quipage","type":"Role","_key":"20756","_from":"15179","_to":"15175"} +{"$label":"ACTS_IN","name":"Richefort","type":"Role","_key":"20755","_from":"15178","_to":"15175"} +{"$label":"ACTS_IN","name":"Coudein","type":"Role","_key":"20753","_from":"15177","_to":"15175"} +{"$label":"ACTS_IN","name":"Chaumareys","type":"Role","_key":"20749","_from":"15176","_to":"15175"} +{"$label":"ACTS_IN","name":"Doc Noonan","type":"Role","_key":"114906","_from":"15176","_to":"67678"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"48086","_from":"15176","_to":"31610"} +{"$label":"ACTS_IN","name":"Le Comte de Morangias","type":"Role","_key":"42877","_from":"15176","_to":"28662"} +{"$label":"ACTS_IN","name":"Kerbel","type":"Role","_key":"29955","_from":"15176","_to":"21162"} +{"$label":"ACTS_IN","name":"Popaul","type":"Role","_key":"24288","_from":"15176","_to":"17594"} +{"$label":"ACTS_IN","name":"Guy Asselin","type":"Role","_key":"23103","_from":"15176","_to":"16748"} +{"$label":"ACTS_IN","name":"M. Homais","type":"Role","_key":"21907","_from":"15176","_to":"16003"} +{"$label":"ACTS_IN","name":"Paul Decourt","type":"Role","_key":"21896","_from":"15176","_to":"15995"} +{"$label":"ACTS_IN","name":"H\u00e9ron","type":"Role","_key":"30081","_from":"15177","_to":"21206"} +{"$label":"ACTS_IN","name":"le p\u00e8re de Nina","type":"Role","_key":"89131","_from":"15178","_to":"52799"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71978","_from":"15178","_to":"43534"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"48803","_from":"15180","_to":"32007"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"42450","_from":"15180","_to":"28427"} +{"$label":"ACTS_IN","name":"Vincent Vivant","type":"Role","_key":"31833","_from":"15180","_to":"22219"} +{"$label":"ACTS_IN","name":"Pharao Mernefta","type":"Role","_key":"21876","_from":"15180","_to":"15979"} +{"$label":"ACTS_IN","name":"Madame Leullet","type":"Role","_key":"105030","_from":"15181","_to":"61813"} +{"$label":"DIRECTED","_key":"42449","_from":"15184","_to":"28427"} +{"$label":"DIRECTED","_key":"34354","_from":"15184","_to":"23558"} +{"$label":"DIRECTED","_key":"20771","_from":"15192","_to":"15185"} +{"$label":"ACTS_IN","name":"Cousine de Fran\u00e7oise","type":"Role","_key":"20770","_from":"15191","_to":"15185"} +{"$label":"ACTS_IN","name":"L'\u00e9veque","type":"Role","_key":"20769","_from":"15190","_to":"15185"} +{"$label":"ACTS_IN","name":"M\u00e8re de Fran\u00e7oise","type":"Role","_key":"20768","_from":"15189","_to":"15185"} +{"$label":"ACTS_IN","name":"M\u00e8re de Jean","type":"Role","_key":"20767","_from":"15188","_to":"15185"} +{"$label":"ACTS_IN","name":"Ancely","type":"Role","_key":"20766","_from":"15187","_to":"15185"} +{"$label":"ACTS_IN","name":"Lacoussade","type":"Role","_key":"20765","_from":"15186","_to":"15185"} +{"$label":"ACTS_IN","name":"Cetinlapsus (voice)","type":"Role","_key":"53087","_from":"15186","_to":"34360"} +{"$label":"ACTS_IN","name":"Caius (voice)","type":"Role","_key":"51179","_from":"15186","_to":"33381"} +{"$label":"ACTS_IN","name":"Charlot","type":"Role","_key":"34642","_from":"15186","_to":"23703"} +{"$label":"ACTS_IN","name":"Carderousse","type":"Role","_key":"32343","_from":"15186","_to":"22527"} +{"$label":"ACTS_IN","name":"le Commissaire","type":"Role","_key":"30926","_from":"15186","_to":"21670"} +{"$label":"ACTS_IN","name":"le commissaire","type":"Role","_key":"37841","_from":"15187","_to":"25644"} +{"$label":"ACTS_IN","name":"l'inspecteur","type":"Role","_key":"35804","_from":"15187","_to":"24312"} +{"$label":"ACTS_IN","name":"Boisselier","type":"Role","_key":"33661","_from":"15187","_to":"23233"} +{"$label":"ACTS_IN","name":"Le Colonel","type":"Role","_key":"32908","_from":"15187","_to":"22829"} +{"$label":"ACTS_IN","name":"Choiun","type":"Role","_key":"29841","_from":"15187","_to":"21113"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29543","_from":"15187","_to":"20930"} +{"$label":"ACTS_IN","name":"Secr\u00e9taire g\u00e9n\u00e9ral","type":"Role","_key":"21599","_from":"15187","_to":"15787"} +{"$label":"ACTS_IN","name":"Schuldirektor","type":"Role","_key":"20775","_from":"15187","_to":"15193"} +{"$label":"ACTS_IN","name":"Mme Raskolnikoff","type":"Role","_key":"35564","_from":"15188","_to":"24173"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"34396","_from":"15188","_to":"23576"} +{"$label":"ACTS_IN","name":"Mme Perrin","type":"Role","_key":"30655","_from":"15188","_to":"21518"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"27585","_from":"15188","_to":"19780"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"23674","_from":"15188","_to":"17159"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37991","_from":"15189","_to":"25718"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33362","_from":"15189","_to":"23096"} +{"$label":"ACTS_IN","name":"Monseigneur Myriel","type":"Role","_key":"31624","_from":"15190","_to":"22071"} +{"$label":"DIRECTED","_key":"72724","_from":"15192","_to":"43820"} +{"$label":"DIRECTED","_key":"34039","_from":"15192","_to":"23410"} +{"$label":"DIRECTED","_key":"20781","_from":"15199","_to":"15193"} +{"$label":"ACTS_IN","name":"Boussignac","type":"Role","_key":"20780","_from":"15198","_to":"15193"} +{"$label":"ACTS_IN","name":"Robert Laugier","type":"Role","_key":"20779","_from":"15197","_to":"15193"} +{"$label":"ACTS_IN","name":"Michel Benech","type":"Role","_key":"20778","_from":"15196","_to":"15193"} +{"$label":"ACTS_IN","name":"Schulinspektor","type":"Role","_key":"20776","_from":"15195","_to":"15193"} +{"$label":"ACTS_IN","name":"Mlle Thuillier","type":"Role","_key":"20774","_from":"15194","_to":"15193"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116295","_from":"15195","_to":"68464"} +{"$label":"ACTS_IN","name":"Tonelotti l'entrepreneur","type":"Role","_key":"90530","_from":"15195","_to":"53476"} +{"$label":"ACTS_IN","name":"Achille Sureau","type":"Role","_key":"90146","_from":"15195","_to":"53304"} +{"$label":"ACTS_IN","name":"Adjudant J\u00e9r\u00f4me Gerber","type":"Role","_key":"72736","_from":"15195","_to":"43823"} +{"$label":"ACTS_IN","name":"Simon Charrier","type":"Role","_key":"71561","_from":"15195","_to":"43352"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Jacques","type":"Role","_key":"71524","_from":"15195","_to":"43339"} +{"$label":"ACTS_IN","name":"Commissaire Gesbert","type":"Role","_key":"64864","_from":"15195","_to":"40345"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me Gerber","type":"Role","_key":"63794","_from":"15195","_to":"39891"} +{"$label":"ACTS_IN","name":"Bacaill\u00e9's father","type":"Role","_key":"63170","_from":"15195","_to":"39624"} +{"$label":"ACTS_IN","name":"Abraracourcix (Majestix)","type":"Role","_key":"54727","_from":"15195","_to":"35031"} +{"$label":"ACTS_IN","name":"le grand oncle de Julie","type":"Role","_key":"48606","_from":"15195","_to":"31880"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"33878","_from":"15195","_to":"23338"} +{"$label":"ACTS_IN","name":"Plancheteau","type":"Role","_key":"33867","_from":"15195","_to":"23329"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me Gerber","type":"Role","_key":"33682","_from":"15195","_to":"23246"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me Gerber","type":"Role","_key":"33667","_from":"15195","_to":"23243"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me Gerber","type":"Role","_key":"33650","_from":"15195","_to":"23233"} +{"$label":"ACTS_IN","name":"Simon Charrier","type":"Role","_key":"32060","_from":"15195","_to":"22332"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Maury","type":"Role","_key":"30226","_from":"15195","_to":"21284"} +{"$label":"ACTS_IN","name":"Commissaire Lalatte","type":"Role","_key":"29582","_from":"15195","_to":"20945"} +{"$label":"ACTS_IN","name":"Danglard","type":"Role","_key":"21666","_from":"15195","_to":"15835"} +{"$label":"ACTS_IN","name":"le proviseur","type":"Role","_key":"21360","_from":"15195","_to":"15621"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88456","_from":"15198","_to":"52428"} +{"$label":"ACTS_IN","name":"le sacristain","type":"Role","_key":"33743","_from":"15198","_to":"23267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32920","_from":"15198","_to":"22829"} +{"$label":"ACTS_IN","name":"un bourgeois","type":"Role","_key":"31559","_from":"15198","_to":"22027"} +{"$label":"DIRECTED","_key":"20799","_from":"15213","_to":"15200"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"20798","_from":"15212","_to":"15200"} +{"$label":"ACTS_IN","name":"Albert Bouasse","type":"Role","_key":"20797","_from":"15211","_to":"15200"} +{"$label":"ACTS_IN","name":"Isidore Balou","type":"Role","_key":"20796","_from":"15210","_to":"15200"} +{"$label":"ACTS_IN","name":"Am\u00e9lie Winberg","type":"Role","_key":"20794","_from":"15209","_to":"15200"} +{"$label":"ACTS_IN","name":"Catherine Winberg","type":"Role","_key":"20793","_from":"15208","_to":"15200"} +{"$label":"ACTS_IN","name":"Commissaire Corbeau","type":"Role","_key":"20792","_from":"15207","_to":"15200"} +{"$label":"ACTS_IN","name":"De Tournefort","type":"Role","_key":"20791","_from":"15206","_to":"15200"} +{"$label":"ACTS_IN","name":"Eug\u00e9nie","type":"Role","_key":"20789","_from":"15205","_to":"15200"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"20788","_from":"15204","_to":"15200"} +{"$label":"ACTS_IN","name":"Marcel Dumont","type":"Role","_key":"20787","_from":"15203","_to":"15200"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"20785","_from":"15202","_to":"15200"} +{"$label":"ACTS_IN","name":"Marie Wileska","type":"Role","_key":"20783","_from":"15201","_to":"15200"} +{"$label":"ACTS_IN","name":"Isobel","type":"Role","_key":"69213","_from":"15201","_to":"42325"} +{"$label":"ACTS_IN","name":"M\u00e9lanie B\u00e9rang\u00e8re","type":"Role","_key":"63840","_from":"15201","_to":"39902"} +{"$label":"ACTS_IN","name":"soeur","type":"Role","_key":"38058","_from":"15201","_to":"25746"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"38042","_from":"15201","_to":"25743"} +{"$label":"ACTS_IN","name":"Donald Willis","type":"Role","_key":"121616","_from":"15206","_to":"71447"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71431","_from":"15206","_to":"43308"} +{"$label":"ACTS_IN","name":"Carderousse","type":"Role","_key":"32558","_from":"15206","_to":"22629"} +{"$label":"ACTS_IN","name":"Lacroix","type":"Role","_key":"30079","_from":"15206","_to":"21206"} +{"$label":"ACTS_IN","name":"un brigadier","type":"Role","_key":"33888","_from":"15211","_to":"23338"} +{"$label":"DIRECTED","_key":"33876","_from":"15213","_to":"23338"} +{"$label":"DIRECTED","_key":"20870","_from":"15213","_to":"15264"} +{"$label":"DIRECTED","_key":"20809","_from":"15222","_to":"15214"} +{"$label":"ACTS_IN","name":"Conrad","type":"Role","_key":"20808","_from":"15221","_to":"15214"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"20807","_from":"15220","_to":"15214"} +{"$label":"ACTS_IN","name":"Honorine","type":"Role","_key":"20806","_from":"15219","_to":"15214"} +{"$label":"ACTS_IN","name":"Elfriede Vorski","type":"Role","_key":"20805","_from":"15218","_to":"15214"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois d'Hergemont \/ \u00c9ric Vorski","type":"Role","_key":"20804","_from":"15217","_to":"15214"} +{"$label":"ACTS_IN","name":"Philippe Maroux","type":"Role","_key":"20802","_from":"15216","_to":"15214"} +{"$label":"ACTS_IN","name":"Alexis Vorski","type":"Role","_key":"20801","_from":"15215","_to":"15214"} +{"$label":"ACTS_IN","name":"Me Colmeman","type":"Role","_key":"101719","_from":"15215","_to":"59865"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33045","_from":"15216","_to":"22898"} +{"$label":"ACTS_IN","name":"Fouquier-Tinville","type":"Role","_key":"30223","_from":"15216","_to":"21284"} +{"$label":"ACTS_IN","name":"Madame Lopez","type":"Role","_key":"33947","_from":"15219","_to":"23371"} +{"$label":"ACTS_IN","name":"Madame Carderousse","type":"Role","_key":"32348","_from":"15219","_to":"22527"} +{"$label":"ACTS_IN","name":"German Colonel on higway","type":"Role","_key":"34398","_from":"15220","_to":"23576"} +{"$label":"ACTS_IN","name":"Steenges","type":"Role","_key":"31154","_from":"15220","_to":"21794"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"27134","_from":"15220","_to":"19521"} +{"$label":"DIRECTED","_key":"20816","_from":"15228","_to":"15223"} +{"$label":"ACTS_IN","name":"Haas","type":"Role","_key":"20815","_from":"15227","_to":"15223"} +{"$label":"ACTS_IN","name":"Hermann","type":"Role","_key":"20814","_from":"15226","_to":"15223"} +{"$label":"ACTS_IN","name":"Hanka","type":"Role","_key":"20813","_from":"15225","_to":"15223"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"20812","_from":"15224","_to":"15223"} +{"$label":"ACTS_IN","name":"Antonello","type":"Role","_key":"91311","_from":"15224","_to":"53854"} +{"$label":"ACTS_IN","name":"Solnes","type":"Role","_key":"89994","_from":"15224","_to":"53238"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71990","_from":"15224","_to":"43537"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"39360","_from":"15224","_to":"26619"} +{"$label":"ACTS_IN","name":"Fouquier","type":"Role","_key":"38300","_from":"15224","_to":"25867"} +{"$label":"ACTS_IN","name":"Henri Adolphe","type":"Role","_key":"21911","_from":"15224","_to":"16008"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88455","_from":"15225","_to":"52428"} +{"$label":"ACTS_IN","name":"Madame Chaunier","type":"Role","_key":"37874","_from":"15225","_to":"25653"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"40692","_from":"15226","_to":"27383"} +{"$label":"ACTS_IN","name":"Delisle","type":"Role","_key":"34405","_from":"15226","_to":"23576"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33579","_from":"15226","_to":"23204"} +{"$label":"ACTS_IN","name":"Dr. Kramer","type":"Role","_key":"29438","_from":"15226","_to":"20878"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38063","_from":"15227","_to":"25746"} +{"$label":"DIRECTED","_key":"20822","_from":"15233","_to":"15229"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"20821","_from":"15232","_to":"15229"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"20820","_from":"15231","_to":"15229"} +{"$label":"ACTS_IN","name":"Direktorin","type":"Role","_key":"20819","_from":"15230","_to":"15229"} +{"$label":"DIRECTED","_key":"35879","_from":"15233","_to":"24361"} +{"$label":"DIRECTED","_key":"20827","_from":"15238","_to":"15234"} +{"$label":"ACTS_IN","name":"Krupskaja","type":"Role","_key":"20826","_from":"15237","_to":"15234"} +{"$label":"ACTS_IN","name":"Trofimow","type":"Role","_key":"20825","_from":"15236","_to":"15234"} +{"$label":"ACTS_IN","name":"Lenin","type":"Role","_key":"20823","_from":"15235","_to":"15234"} +{"$label":"DIRECTED","_key":"20838","_from":"15246","_to":"15239"} +{"$label":"ACTS_IN","name":"Jean-Paul enfant","type":"Role","_key":"20837","_from":"15245","_to":"15239"} +{"$label":"ACTS_IN","name":"Laura enfant","type":"Role","_key":"20836","_from":"15244","_to":"15239"} +{"$label":"ACTS_IN","name":"Clotilde","type":"Role","_key":"20834","_from":"15243","_to":"15239"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"20833","_from":"15242","_to":"15239"} +{"$label":"ACTS_IN","name":"Marc Champenois","type":"Role","_key":"20832","_from":"15241","_to":"15239"} +{"$label":"ACTS_IN","name":"Alexandre Boursault","type":"Role","_key":"20829","_from":"15240","_to":"15239"} +{"$label":"ACTS_IN","name":"Le Marquis de Bellegarde","type":"Role","_key":"91163","_from":"15240","_to":"53774"} +{"$label":"ACTS_IN","name":"Toulouse","type":"Role","_key":"87965","_from":"15240","_to":"52233"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"72034","_from":"15240","_to":"43560"} +{"$label":"ACTS_IN","name":"Kopel, le directeur de l'usine","type":"Role","_key":"69875","_from":"15240","_to":"42634"} +{"$label":"ACTS_IN","name":"Colonel Louis, Marie, Alphonse Toulouse","type":"Role","_key":"66865","_from":"15240","_to":"41293"} +{"$label":"ACTS_IN","name":"Gilbert Neuville","type":"Role","_key":"65843","_from":"15240","_to":"40747"} +{"$label":"ACTS_IN","name":"Insp. Guilboud","type":"Role","_key":"49645","_from":"15240","_to":"32488"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"48801","_from":"15240","_to":"32007"} +{"$label":"ACTS_IN","name":"Louis Ruinard","type":"Role","_key":"40049","_from":"15240","_to":"27036"} +{"$label":"ACTS_IN","name":"M. Legendre","type":"Role","_key":"37839","_from":"15240","_to":"25644"} +{"$label":"ACTS_IN","name":"Malartic","type":"Role","_key":"33717","_from":"15240","_to":"23260"} +{"$label":"ACTS_IN","name":"Fernand Morcerf Mondego","type":"Role","_key":"32545","_from":"15240","_to":"22629"} +{"$label":"ACTS_IN","name":"Tantpis","type":"Role","_key":"28162","_from":"15240","_to":"20177"} +{"$label":"ACTS_IN","name":"Maitre Albert Legal","type":"Role","_key":"27351","_from":"15240","_to":"19658"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"26115","_from":"15240","_to":"18761"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"21565","_from":"15240","_to":"15768"} +{"$label":"ACTS_IN","name":"Scope","type":"Role","_key":"70112","_from":"15241","_to":"42742"} +{"$label":"ACTS_IN","name":"Barth\u00e9l\u00e9my","type":"Role","_key":"65193","_from":"15241","_to":"40491"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"40685","_from":"15241","_to":"27383"} +{"$label":"ACTS_IN","name":"Benetti","type":"Role","_key":"38298","_from":"15241","_to":"25867"} +{"$label":"ACTS_IN","name":"der deutsche Geliebte der Franz\u00f6sin","type":"Role","_key":"37760","_from":"15241","_to":"25610"} +{"$label":"ACTS_IN","name":"Inspecteur Antoine M\u00e9loutis","type":"Role","_key":"34413","_from":"15241","_to":"23581"} +{"$label":"ACTS_IN","name":"Bernard Hannecart","type":"Role","_key":"34058","_from":"15241","_to":"23411"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Sarlat","type":"Role","_key":"33953","_from":"15241","_to":"23371"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33578","_from":"15241","_to":"23204"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31583","_from":"15241","_to":"22058"} +{"$label":"ACTS_IN","name":"Abel Maresco","type":"Role","_key":"27153","_from":"15241","_to":"19528"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"23047","_from":"15241","_to":"16714"} +{"$label":"ACTS_IN","name":"Padrone Garofoli","type":"Role","_key":"20963","_from":"15241","_to":"15337"} +{"$label":"ACTS_IN","name":"Severina Serboli","type":"Role","_key":"42672","_from":"15243","_to":"28564"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"33335","_from":"15243","_to":"23092"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"29966","_from":"15245","_to":"21166"} +{"$label":"DIRECTED","_key":"72734","_from":"15246","_to":"43822"} +{"$label":"DIRECTED","_key":"29915","_from":"15246","_to":"21145"} +{"$label":"ACTS_IN","name":"Le chasseur aux chiens","type":"Role","_key":"20844","_from":"15251","_to":"15247"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"20843","_from":"15250","_to":"15247"} +{"$label":"ACTS_IN","name":"Der B\u00e4r Cub","type":"Role","_key":"20841","_from":"15249","_to":"15247"} +{"$label":"ACTS_IN","name":"Der Kodiak B\u00e4r","type":"Role","_key":"20840","_from":"15248","_to":"15247"} +{"$label":"DIRECTED","_key":"20861","_from":"15263","_to":"15252"} +{"$label":"ACTS_IN","name":"Arnolds Gro\u00dfmutter","type":"Role","_key":"20860","_from":"15262","_to":"15252"} +{"$label":"ACTS_IN","name":"Caramel","type":"Role","_key":"20859","_from":"15261","_to":"15252"} +{"$label":"ACTS_IN","name":"Nadja","type":"Role","_key":"20858","_from":"15260","_to":"15252"} +{"$label":"ACTS_IN","name":"Daniela K\u00f6hler","type":"Role","_key":"20856","_from":"15259","_to":"15252"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"20855","_from":"15258","_to":"15252"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"20854","_from":"15257","_to":"15252"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"20853","_from":"15256","_to":"15252"} +{"$label":"ACTS_IN","name":"Charlotte Heinze","type":"Role","_key":"20851","_from":"15255","_to":"15252"} +{"$label":"ACTS_IN","name":"Halil","type":"Role","_key":"20850","_from":"15254","_to":"15252"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"20848","_from":"15253","_to":"15252"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"90561","_from":"15255","_to":"53490"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"41049","_from":"15255","_to":"27614"} +{"$label":"ACTS_IN","name":"Slotter","type":"Role","_key":"46028","_from":"15256","_to":"30414"} +{"$label":"ACTS_IN","name":"Steini","type":"Role","_key":"73152","_from":"15257","_to":"43990"} +{"$label":"ACTS_IN","name":"Turbo","type":"Role","_key":"37134","_from":"15257","_to":"25155"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"47245","_from":"15258","_to":"31133"} +{"$label":"ACTS_IN","name":"Die Frau","type":"Role","_key":"23996","_from":"15260","_to":"17398"} +{"$label":"ACTS_IN","name":"Ivy Poll","type":"Role","_key":"23778","_from":"15260","_to":"17242"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"41543","_from":"15261","_to":"27899"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"20869","_from":"15268","_to":"15264"} +{"$label":"ACTS_IN","name":"Delphine","type":"Role","_key":"20868","_from":"15267","_to":"15264"} +{"$label":"ACTS_IN","name":"Stanilas","type":"Role","_key":"20867","_from":"15266","_to":"15264"} +{"$label":"ACTS_IN","name":"Victorien","type":"Role","_key":"20864","_from":"15265","_to":"15264"} +{"$label":"ACTS_IN","name":"Henri Province","type":"Role","_key":"118042","_from":"15266","_to":"69385"} +{"$label":"ACTS_IN","name":"Monsieur Peyrolle","type":"Role","_key":"72502","_from":"15266","_to":"43740"} +{"$label":"ACTS_IN","name":"Henri Pages","type":"Role","_key":"62391","_from":"15266","_to":"39307"} +{"$label":"ACTS_IN","name":"Villefort","type":"Role","_key":"32546","_from":"15266","_to":"22629"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"23759","_from":"15266","_to":"17230"} +{"$label":"ACTS_IN","name":"Grindot","type":"Role","_key":"23752","_from":"15266","_to":"17221"} +{"$label":"DIRECTED","_key":"20877","_from":"15275","_to":"15269"} +{"$label":"ACTS_IN","name":"Vladieu","type":"Role","_key":"20876","_from":"15274","_to":"15269"} +{"$label":"ACTS_IN","name":"Mme Vanderwood","type":"Role","_key":"20875","_from":"15273","_to":"15269"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"20874","_from":"15272","_to":"15269"} +{"$label":"ACTS_IN","name":"Comte Saint-Germain","type":"Role","_key":"20873","_from":"15271","_to":"15269"} +{"$label":"ACTS_IN","name":"Lewis Armight","type":"Role","_key":"20872","_from":"15270","_to":"15269"} +{"$label":"ACTS_IN","name":"Madame Leguen","type":"Role","_key":"33349","_from":"15273","_to":"23096"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"21503","_from":"15273","_to":"15736"} +{"$label":"DIRECTED","_key":"20894","_from":"15288","_to":"15276"} +{"$label":"ACTS_IN","name":"la pharmacienne","type":"Role","_key":"20893","_from":"15287","_to":"15276"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"20892","_from":"15286","_to":"15276"} +{"$label":"ACTS_IN","name":"Marjio","type":"Role","_key":"20890","_from":"15285","_to":"15276"} +{"$label":"ACTS_IN","name":"Didier Portman","type":"Role","_key":"20889","_from":"15284","_to":"15276"} +{"$label":"ACTS_IN","name":"Delphine","type":"Role","_key":"20888","_from":"15283","_to":"15276"} +{"$label":"ACTS_IN","name":"Vachette","type":"Role","_key":"20887","_from":"15282","_to":"15276"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Fournet","type":"Role","_key":"20886","_from":"15281","_to":"15276"} +{"$label":"ACTS_IN","name":"Albert Croquebeois","type":"Role","_key":"20885","_from":"15280","_to":"15276"} +{"$label":"ACTS_IN","name":"C\u00e9cile","type":"Role","_key":"20884","_from":"15279","_to":"15276"} +{"$label":"ACTS_IN","name":"Christian Ribet","type":"Role","_key":"20883","_from":"15278","_to":"15276"} +{"$label":"ACTS_IN","name":"Paul Martin","type":"Role","_key":"20880","_from":"15277","_to":"15276"} +{"$label":"ACTS_IN","name":"Frilon","type":"Role","_key":"118058","_from":"15277","_to":"69385"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"23662","_from":"15277","_to":"17153"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104473","_from":"15278","_to":"61445"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71946","_from":"15279","_to":"43522"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"29345","_from":"15279","_to":"20840"} +{"$label":"ACTS_IN","name":"le juge Dauzat","type":"Role","_key":"88709","_from":"15280","_to":"52563"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"51345","_from":"15280","_to":"33480"} +{"$label":"ACTS_IN","name":"P\u00e8re","type":"Role","_key":"23766","_from":"15280","_to":"17230"} +{"$label":"ACTS_IN","name":"Evelyne","type":"Role","_key":"33879","_from":"15281","_to":"23338"} +{"$label":"ACTS_IN","name":"Josy","type":"Role","_key":"33862","_from":"15281","_to":"23329"} +{"$label":"ACTS_IN","name":"G\u00e9rard Daubenton","type":"Role","_key":"29919","_from":"15282","_to":"21145"} +{"$label":"ACTS_IN","name":"V\u00e9ronique","type":"Role","_key":"89133","_from":"15283","_to":"52799"} +{"$label":"DIRECTED","_key":"104441","_from":"15288","_to":"61431"} +{"$label":"DIRECTED","_key":"102841","_from":"15288","_to":"60498"} +{"$label":"DIRECTED","_key":"20901","_from":"15293","_to":"15289"} +{"$label":"ACTS_IN","name":"Voisine de Mich\u00e8le","type":"Role","_key":"20900","_from":"15292","_to":"15289"} +{"$label":"ACTS_IN","name":"Voisin de Mich\u00e8le","type":"Role","_key":"20899","_from":"15291","_to":"15289"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"20898","_from":"15290","_to":"15289"} +{"$label":"ACTS_IN","name":"Lindas Vater","type":"Role","_key":"20910","_from":"15301","_to":"15294"} +{"$label":"ACTS_IN","name":"Carderousse","type":"Role","_key":"20909","_from":"15300","_to":"15294"} +{"$label":"ACTS_IN","name":"Morcerf","type":"Role","_key":"20908","_from":"15299","_to":"15294"} +{"$label":"ACTS_IN","name":"Bertuccio","type":"Role","_key":"20906","_from":"15298","_to":"15294"} +{"$label":"ACTS_IN","name":"Faria","type":"Role","_key":"20905","_from":"15297","_to":"15294"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"20904","_from":"15296","_to":"15294"} +{"$label":"ACTS_IN","name":"Edmond Dant\u00e8s","type":"Role","_key":"20902","_from":"15295","_to":"15294"} +{"$label":"ACTS_IN","name":"Dechelette","type":"Role","_key":"89281","_from":"15295","_to":"52859"} +{"$label":"ACTS_IN","name":"Callimaco","type":"Role","_key":"21549","_from":"15295","_to":"15752"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"105575","_from":"15296","_to":"62126"} +{"$label":"ACTS_IN","name":"Dame \u00e0 la veste","type":"Role","_key":"102857","_from":"15296","_to":"60509"} +{"$label":"ACTS_IN","name":"Andr\u00e9e","type":"Role","_key":"89155","_from":"15296","_to":"52806"} +{"$label":"ACTS_IN","name":"Dr. Gabrielle Martin","type":"Role","_key":"71439","_from":"15296","_to":"43314"} +{"$label":"ACTS_IN","name":"Christine Martin","type":"Role","_key":"63607","_from":"15296","_to":"39796"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"48080","_from":"15296","_to":"31606"} +{"$label":"ACTS_IN","name":"Laura Weber","type":"Role","_key":"29432","_from":"15296","_to":"20878"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"21567","_from":"15296","_to":"15768"} +{"$label":"ACTS_IN","name":"Aim\u00e9e de Coigny","type":"Role","_key":"21229","_from":"15296","_to":"15542"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"21209","_from":"15296","_to":"15527"} +{"$label":"ACTS_IN","name":"Gosselin","type":"Role","_key":"30720","_from":"15297","_to":"21545"} +{"$label":"ACTS_IN","name":"Dimanche","type":"Role","_key":"30002","_from":"15297","_to":"21173"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"21558","_from":"15297","_to":"15759"} +{"$label":"ACTS_IN","name":"Perrache","type":"Role","_key":"87967","_from":"15298","_to":"52233"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37847","_from":"15298","_to":"25644"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"31194","_from":"15298","_to":"21829"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"30007","_from":"15298","_to":"21173"} +{"$label":"ACTS_IN","name":"Kommissar","type":"Role","_key":"27299","_from":"15298","_to":"19624"} +{"$label":"ACTS_IN","name":"The Lawyer","type":"Role","_key":"67548","_from":"15299","_to":"41589"} +{"$label":"ACTS_IN","name":"commissaire Lacrosse","type":"Role","_key":"38224","_from":"15299","_to":"25818"} +{"$label":"ACTS_IN","name":"aiossa","type":"Role","_key":"34037","_from":"15299","_to":"23407"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"33979","_from":"15299","_to":"23383"} +{"$label":"ACTS_IN","name":"le sacristain","type":"Role","_key":"31762","_from":"15300","_to":"22162"} +{"$label":"DIRECTED","_key":"20918","_from":"15303","_to":"15302"} +{"$label":"ACTS_IN","name":"Rella","type":"Role","_key":"20917","_from":"15306","_to":"15302"} +{"$label":"ACTS_IN","name":"Alexandre","type":"Role","_key":"20916","_from":"15305","_to":"15302"} +{"$label":"ACTS_IN","name":"Strosser","type":"Role","_key":"20914","_from":"15304","_to":"15302"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"20912","_from":"15303","_to":"15302"} +{"$label":"ACTS_IN","name":"L'Aztec's father","type":"Role","_key":"63168","_from":"15304","_to":"39624"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n","type":"Role","_key":"43333","_from":"15304","_to":"28933"} +{"$label":"ACTS_IN","name":"Padre di Davide","type":"Role","_key":"23643","_from":"15304","_to":"17139"} +{"$label":"ACTS_IN","name":"Ferdinand Gr\u00e9doux","type":"Role","_key":"21958","_from":"15304","_to":"16029"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"39365","_from":"15305","_to":"26621"} +{"$label":"ACTS_IN","name":"Pierre-Henri","type":"Role","_key":"39359","_from":"15305","_to":"26619"} +{"$label":"ACTS_IN","name":"Pierre Quentin-Moreau, le notaire","type":"Role","_key":"33866","_from":"15305","_to":"23329"} +{"$label":"ACTS_IN","name":"Christian Pygmalion I","type":"Role","_key":"31410","_from":"15305","_to":"21948"} +{"$label":"ACTS_IN","name":"Athos","type":"Role","_key":"29794","_from":"15305","_to":"21082"} +{"$label":"DIRECTED","_key":"20933","_from":"15317","_to":"15307"} +{"$label":"ACTS_IN","name":"La Ficelle","type":"Role","_key":"20932","_from":"15316","_to":"15307"} +{"$label":"ACTS_IN","name":"le pr\u00e9sident du tribunal","type":"Role","_key":"20931","_from":"15315","_to":"15307"} +{"$label":"ACTS_IN","name":"Pierre Caron","type":"Role","_key":"20930","_from":"15314","_to":"15307"} +{"$label":"ACTS_IN","name":"Paulet","type":"Role","_key":"20929","_from":"15313","_to":"15307"} +{"$label":"ACTS_IN","name":"Jakez","type":"Role","_key":"20928","_from":"15312","_to":"15307"} +{"$label":"ACTS_IN","name":"Schuster","type":"Role","_key":"20927","_from":"15311","_to":"15307"} +{"$label":"ACTS_IN","name":"Automarchi","type":"Role","_key":"20926","_from":"15310","_to":"15307"} +{"$label":"ACTS_IN","name":"Commandant Guilloux","type":"Role","_key":"20925","_from":"15309","_to":"15307"} +{"$label":"ACTS_IN","name":"Patricia Caron","type":"Role","_key":"20919","_from":"15308","_to":"15307"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"107398","_from":"15308","_to":"63342"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"50797","_from":"15308","_to":"33145"} +{"$label":"ACTS_IN","name":"Jean-Louis","type":"Role","_key":"50801","_from":"15310","_to":"33145"} +{"$label":"ACTS_IN","name":"Jean Galmot","type":"Role","_key":"35872","_from":"15310","_to":"24357"} +{"$label":"ACTS_IN","name":"Rodolphe Boulanger","type":"Role","_key":"21906","_from":"15310","_to":"16003"} +{"$label":"ACTS_IN","name":"Le lieutenant Patrick Belval","type":"Role","_key":"89640","_from":"15311","_to":"53052"} +{"$label":"ACTS_IN","name":"Vergos","type":"Role","_key":"67873","_from":"15311","_to":"41702"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"34644","_from":"15312","_to":"23703"} +{"$label":"ACTS_IN","name":"Godiot","type":"Role","_key":"33984","_from":"15312","_to":"23383"} +{"$label":"ACTS_IN","name":"Giorgio","type":"Role","_key":"33811","_from":"15312","_to":"23298"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33357","_from":"15313","_to":"23096"} +{"$label":"ACTS_IN","name":"Verdier","type":"Role","_key":"71957","_from":"15315","_to":"43528"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"38048","_from":"15315","_to":"25743"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"30714","_from":"15316","_to":"21541"} +{"$label":"DIRECTED","_key":"28582","_from":"15317","_to":"20429"} +{"$label":"DIRECTED","_key":"20946","_from":"15328","_to":"15318"} +{"$label":"ACTS_IN","name":"Gina Necioni","type":"Role","_key":"20944","_from":"15327","_to":"15318"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"20943","_from":"15326","_to":"15318"} +{"$label":"ACTS_IN","name":"Broccole","type":"Role","_key":"20942","_from":"15325","_to":"15318"} +{"$label":"ACTS_IN","name":"Commissario","type":"Role","_key":"20941","_from":"15324","_to":"15318"} +{"$label":"ACTS_IN","name":"Bertoni","type":"Role","_key":"20940","_from":"15323","_to":"15318"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"20939","_from":"15322","_to":"15318"} +{"$label":"ACTS_IN","name":"Palma","type":"Role","_key":"20938","_from":"15321","_to":"15318"} +{"$label":"ACTS_IN","name":"Russo","type":"Role","_key":"20937","_from":"15320","_to":"15318"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"20935","_from":"15319","_to":"15318"} +{"$label":"ACTS_IN","name":"Lucia Cerrazini","type":"Role","_key":"68658","_from":"15319","_to":"42077"} +{"$label":"ACTS_IN","name":"Salon Girl","type":"Role","_key":"37659","_from":"15319","_to":"25529"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35944","_from":"15319","_to":"24411"} +{"$label":"ACTS_IN","name":"John Stanley","type":"Role","_key":"110136","_from":"15320","_to":"65080"} +{"$label":"ACTS_IN","name":"The King","type":"Role","_key":"99317","_from":"15320","_to":"58517"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"53382","_from":"15320","_to":"34497"} +{"$label":"ACTS_IN","name":"Otto Martino","type":"Role","_key":"34501","_from":"15320","_to":"23625"} +{"$label":"ACTS_IN","name":"Henry Dumurrier","type":"Role","_key":"24797","_from":"15320","_to":"17933"} +{"$label":"ACTS_IN","name":"Alexandre Gagnon","type":"Role","_key":"71426","_from":"15321","_to":"43308"} +{"$label":"ACTS_IN","name":"Lord Scythley","type":"Role","_key":"21531","_from":"15322","_to":"15744"} +{"$label":"ACTS_IN","name":"Paganini","type":"Role","_key":"45133","_from":"15323","_to":"29948"} +{"$label":"ACTS_IN","name":"Beltr\u00e1n","type":"Role","_key":"25793","_from":"15323","_to":"18564"} +{"$label":"ACTS_IN","name":"Liza","type":"Role","_key":"45130","_from":"15326","_to":"29948"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"26701","_from":"15326","_to":"19185"} +{"$label":"ACTS_IN","name":"Butcher","type":"Role","_key":"26828","_from":"15327","_to":"19278"} +{"$label":"DIRECTED","_key":"20957","_from":"15336","_to":"15329"} +{"$label":"ACTS_IN","name":"Parasit","type":"Role","_key":"20956","_from":"15335","_to":"15329"} +{"$label":"ACTS_IN","name":"Parasite","type":"Role","_key":"20955","_from":"15334","_to":"15329"} +{"$label":"ACTS_IN","name":"Parasit","type":"Role","_key":"20954","_from":"15333","_to":"15329"} +{"$label":"ACTS_IN","name":"Alexis","type":"Role","_key":"20953","_from":"15332","_to":"15329"} +{"$label":"ACTS_IN","name":"Germaine","type":"Role","_key":"20952","_from":"15331","_to":"15329"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"20949","_from":"15330","_to":"15329"} +{"$label":"ACTS_IN","name":"Mr. York","type":"Role","_key":"100623","_from":"15330","_to":"59333"} +{"$label":"ACTS_IN","name":"Mercutio","type":"Role","_key":"41038","_from":"15330","_to":"27609"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"40682","_from":"15330","_to":"27383"} +{"$label":"ACTS_IN","name":"K\u00f6nigsberater","type":"Role","_key":"22879","_from":"15330","_to":"16575"} +{"$label":"ACTS_IN","name":"Caligula","type":"Role","_key":"22432","_from":"15330","_to":"16258"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31588","_from":"15331","_to":"22058"} +{"$label":"ACTS_IN","name":"Le client au cigare","type":"Role","_key":"44697","_from":"15333","_to":"29734"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"34060","_from":"15334","_to":"23411"} +{"$label":"ACTS_IN","name":"Albertine","type":"Role","_key":"21955","_from":"15334","_to":"16029"} +{"$label":"DIRECTED","_key":"33894","_from":"15336","_to":"23348"} +{"$label":"DIRECTED","_key":"20969","_from":"15343","_to":"15337"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"20968","_from":"15342","_to":"15337"} +{"$label":"ACTS_IN","name":"Mattia","type":"Role","_key":"20967","_from":"15341","_to":"15337"} +{"$label":"ACTS_IN","name":"Charles Fontane","type":"Role","_key":"20965","_from":"15340","_to":"15337"} +{"$label":"ACTS_IN","name":"R\u00e9mi","type":"Role","_key":"20959","_from":"15339","_to":"15337"} +{"$label":"ACTS_IN","name":"Vitalo Pedrotti","type":"Role","_key":"20958","_from":"15338","_to":"15337"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Perrin","type":"Role","_key":"118799","_from":"15338","_to":"69846"} +{"$label":"ACTS_IN","name":"William Fernand","type":"Role","_key":"101527","_from":"15338","_to":"59761"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Perrin","type":"Role","_key":"87964","_from":"15338","_to":"52233"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Perrin","type":"Role","_key":"66863","_from":"15338","_to":"41293"} +{"$label":"ACTS_IN","name":"Francois Pignon","type":"Role","_key":"63605","_from":"15338","_to":"39796"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21288","_from":"15338","_to":"15565"} +{"$label":"ACTS_IN","name":"Segment \"Les mots attendrot\"","type":"Role","_key":"21039","_from":"15338","_to":"15398"} +{"$label":"ACTS_IN","name":"Simon Bernstein","type":"Role","_key":"22114","_from":"15339","_to":"16130"} +{"$label":"DIRECTED","_key":"21027","_from":"15343","_to":"15383"} +{"$label":"ACTS_IN","name":"Methusalix","type":"Role","_key":"20991","_from":"15361","_to":"15344"} +{"$label":"ACTS_IN","name":"Omega","type":"Role","_key":"20990","_from":"15360","_to":"15344"} +{"$label":"ACTS_IN","name":"Beta","type":"Role","_key":"20989","_from":"15359","_to":"15344"} +{"$label":"ACTS_IN","name":"Alpha","type":"Role","_key":"20988","_from":"15358","_to":"15344"} +{"$label":"ACTS_IN","name":"Obstinatus","type":"Role","_key":"20987","_from":"15357","_to":"15344"} +{"$label":"ACTS_IN","name":"Claudius Muscullus","type":"Role","_key":"20986","_from":"15356","_to":"15344"} +{"$label":"ACTS_IN","name":"Madame Methusalix","type":"Role","_key":"20985","_from":"15355","_to":"15344"} +{"$label":"ACTS_IN","name":"K\u00f6nig Aderlas","type":"Role","_key":"20984","_from":"15354","_to":"15344"} +{"$label":"ACTS_IN","name":"Redkeinstus","type":"Role","_key":"20982","_from":"15353","_to":"15344"} +{"$label":"ACTS_IN","name":"Prinzessin Irina","type":"Role","_key":"20981","_from":"15352","_to":"15344"} +{"$label":"ACTS_IN","name":"Brutus","type":"Role","_key":"20980","_from":"15351","_to":"15344"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"20978","_from":"15350","_to":"15344"} +{"$label":"ACTS_IN","name":"Romantix","type":"Role","_key":"20976","_from":"15349","_to":"15344"} +{"$label":"ACTS_IN","name":"Vielverdrus","type":"Role","_key":"20975","_from":"15348","_to":"15344"} +{"$label":"ACTS_IN","name":"Troubadix","type":"Role","_key":"20974","_from":"15347","_to":"15344"} +{"$label":"ACTS_IN","name":"Asterix","type":"Role","_key":"20972","_from":"15346","_to":"15344"} +{"$label":"DIRECTED","_key":"20970","_from":"15345","_to":"15344"} +{"$label":"DIRECTED","_key":"116270","_from":"15345","_to":"68451"} +{"$label":"DIRECTED","_key":"99028","_from":"15345","_to":"58335"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"111981","_from":"15346","_to":"66100"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108451","_from":"15346","_to":"64112"} +{"$label":"ACTS_IN","name":"Jacques Lebas","type":"Role","_key":"105027","_from":"15346","_to":"61813"} +{"$label":"ACTS_IN","name":"Tolbiac","type":"Role","_key":"99206","_from":"15346","_to":"58458"} +{"$label":"ACTS_IN","name":"Solal","type":"Role","_key":"95716","_from":"15346","_to":"56295"} +{"$label":"ACTS_IN","name":"Capitaine S\u00e9bastien \"Fahrenheit\" Vallois","type":"Role","_key":"65871","_from":"15346","_to":"40762"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"62245","_from":"15346","_to":"39206"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"112158","_from":"15347","_to":"66233"} +{"$label":"ACTS_IN","name":"Didier Travolta","type":"Role","_key":"96102","_from":"15347","_to":"56487"} +{"$label":"ACTS_IN","name":"Patrick Chirac","type":"Role","_key":"92119","_from":"15347","_to":"54355"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"35828","_from":"15347","_to":"24323"} +{"$label":"ACTS_IN","name":"Le Turc","type":"Role","_key":"116268","_from":"15348","_to":"68451"} +{"$label":"ACTS_IN","name":"Vincent Rom\u00e9ro","type":"Role","_key":"115736","_from":"15348","_to":"68148"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"110562","_from":"15348","_to":"65327"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101281","_from":"15348","_to":"59637"} +{"$label":"ACTS_IN","name":"Arthur Seligman","type":"Role","_key":"96122","_from":"15348","_to":"56497"} +{"$label":"ACTS_IN","name":"S\u00e9bastien","type":"Role","_key":"67513","_from":"15349","_to":"41573"} +{"$label":"ACTS_IN","name":"Francis Reggio","type":"Role","_key":"116266","_from":"15351","_to":"68451"} +{"$label":"ACTS_IN","name":"R\u00e9my Bassano","type":"Role","_key":"101787","_from":"15351","_to":"59903"} +{"$label":"ACTS_IN","name":"Bernard Fr\u00e9d\u00e9ric","type":"Role","_key":"101279","_from":"15351","_to":"59635"} +{"$label":"ACTS_IN","name":"Franck Chevrel","type":"Role","_key":"100049","_from":"15351","_to":"59020"} +{"$label":"ACTS_IN","name":"Eric Jacquemart","type":"Role","_key":"96138","_from":"15351","_to":"56505"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Berthier","type":"Role","_key":"92125","_from":"15351","_to":"54359"} +{"$label":"ACTS_IN","name":"Etienne Balsan","type":"Role","_key":"68193","_from":"15351","_to":"41883"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"60480","_from":"15351","_to":"38163"} +{"$label":"ACTS_IN","name":"Boanlkramer","type":"Role","_key":"110870","_from":"15353","_to":"65486"} +{"$label":"ACTS_IN","name":"Kuzco (Dt. Stimme)","type":"Role","_key":"71575","_from":"15353","_to":"43357"} +{"$label":"ACTS_IN","name":"Paul Bennert","type":"Role","_key":"71389","_from":"15353","_to":"43298"} +{"$label":"ACTS_IN","name":"Hui Buh","type":"Role","_key":"71302","_from":"15353","_to":"43257"} +{"$label":"ACTS_IN","name":"Buu","type":"Role","_key":"66795","_from":"15353","_to":"41265"} +{"$label":"ACTS_IN","name":"Brigitte Spuck \/ Winnetouch \/ H2O2 \/ Abahachi","type":"Role","_key":"56975","_from":"15353","_to":"36154"} +{"$label":"ACTS_IN","name":"Abahachi","type":"Role","_key":"49366","_from":"15353","_to":"32333"} +{"$label":"ACTS_IN","name":"Ignaz","type":"Role","_key":"31451","_from":"15353","_to":"21968"} +{"$label":"DIRECTED","_key":"56985","_from":"15353","_to":"36154"} +{"$label":"DIRECTED","_key":"54954","_from":"15353","_to":"35131"} +{"$label":"DIRECTED","_key":"49370","_from":"15353","_to":"32333"} +{"$label":"DIRECTED","_key":"31457","_from":"15353","_to":"21968"} +{"$label":"ACTS_IN","name":"Yvan","type":"Role","_key":"103297","_from":"15354","_to":"60769"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96116","_from":"15354","_to":"56490"} +{"$label":"ACTS_IN","name":"Le chanteur finlandais","type":"Role","_key":"89047","_from":"15354","_to":"52750"} +{"$label":"DIRECTED","_key":"103296","_from":"15354","_to":"60769"} +{"$label":"ACTS_IN","name":"Killa","type":"Role","_key":"53478","_from":"15356","_to":"34540"} +{"$label":"ACTS_IN","name":"Cyprien \/ Jack Price","type":"Role","_key":"104413","_from":"15360","_to":"61422"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"30723","_from":"15361","_to":"21545"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"21003","_from":"15373","_to":"15363"} +{"$label":"ACTS_IN","name":"Baravki","type":"Role","_key":"21001","_from":"15372","_to":"15363"} +{"$label":"ACTS_IN","name":"Komorov","type":"Role","_key":"21000","_from":"15371","_to":"15363"} +{"$label":"ACTS_IN","name":"Peter Colgrove","type":"Role","_key":"20999","_from":"15370","_to":"15363"} +{"$label":"ACTS_IN","name":"General Abrams","type":"Role","_key":"20997","_from":"15369","_to":"15363"} +{"$label":"ACTS_IN","name":"Cap. George Tanner","type":"Role","_key":"20996","_from":"15368","_to":"15363"} +{"$label":"ACTS_IN","name":"Amanda McCord","type":"Role","_key":"20995","_from":"15367","_to":"15363"} +{"$label":"ACTS_IN","name":"Cap. Previn Fedorov","type":"Role","_key":"20994","_from":"15366","_to":"15363"} +{"$label":"ACTS_IN","name":"J.J. Jim Hendricks","type":"Role","_key":"20993","_from":"15365","_to":"15363"} +{"$label":"DIRECTED","_key":"20992","_from":"15364","_to":"15363"} +{"$label":"DIRECTED","_key":"91738","_from":"15364","_to":"54114"} +{"$label":"ACTS_IN","name":"Wendell Stokes","type":"Role","_key":"105292","_from":"15365","_to":"61959"} +{"$label":"ACTS_IN","name":"Artie","type":"Role","_key":"72826","_from":"15365","_to":"43870"} +{"$label":"ACTS_IN","name":"McCafferty","type":"Role","_key":"67129","_from":"15365","_to":"41425"} +{"$label":"ACTS_IN","name":"Montoya","type":"Role","_key":"58332","_from":"15365","_to":"36874"} +{"$label":"ACTS_IN","name":"Andy Wagner","type":"Role","_key":"39354","_from":"15365","_to":"26617"} +{"$label":"ACTS_IN","name":"Jasper Harding","type":"Role","_key":"36034","_from":"15365","_to":"24463"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"21512","_from":"15365","_to":"15740"} +{"$label":"ACTS_IN","name":"Frank White","type":"Role","_key":"49461","_from":"15366","_to":"32388"} +{"$label":"ACTS_IN","name":"John Davenport","type":"Role","_key":"43410","_from":"15368","_to":"29000"} +{"$label":"ACTS_IN","name":"Mr. Chapin","type":"Role","_key":"35072","_from":"15370","_to":"23914"} +{"$label":"DIRECTED","_key":"21010","_from":"15377","_to":"15374"} +{"$label":"ACTS_IN","name":"Andoire","type":"Role","_key":"21008","_from":"15376","_to":"15374"} +{"$label":"ACTS_IN","name":"Besson","type":"Role","_key":"21006","_from":"15375","_to":"15374"} +{"$label":"ACTS_IN","name":"Bernard Dh\u00e9ran","type":"Role","_key":"91167","_from":"15375","_to":"53774"} +{"$label":"ACTS_IN","name":"Harry Williams","type":"Role","_key":"53400","_from":"15375","_to":"34505"} +{"$label":"ACTS_IN","name":"Lansky","type":"Role","_key":"35124","_from":"15375","_to":"23944"} +{"$label":"ACTS_IN","name":"Chevalier de Vidalenc","type":"Role","_key":"33718","_from":"15375","_to":"23260"} +{"$label":"ACTS_IN","name":"Henri de Villefort","type":"Role","_key":"32346","_from":"15375","_to":"22527"} +{"$label":"ACTS_IN","name":"p\u00e8re de Philibert","type":"Role","_key":"24055","_from":"15375","_to":"17440"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34693","_from":"15376","_to":"23728"} +{"$label":"ACTS_IN","name":"German Major at Meurice Restaurant","type":"Role","_key":"34399","_from":"15376","_to":"23576"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33046","_from":"15376","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30322","_from":"15376","_to":"21319"} +{"$label":"DIRECTED","_key":"21015","_from":"15382","_to":"15378"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"21014","_from":"15381","_to":"15378"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"21013","_from":"15380","_to":"15378"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"21011","_from":"15379","_to":"15378"} +{"$label":"ACTS_IN","name":"Ross Carver","type":"Role","_key":"102441","_from":"15379","_to":"60279"} +{"$label":"ACTS_IN","name":"David (as David Grant)","type":"Role","_key":"98240","_from":"15379","_to":"57874"} +{"$label":"ACTS_IN","name":"Jerry Harmon","type":"Role","_key":"57621","_from":"15379","_to":"36484"} +{"$label":"ACTS_IN","name":"Adolphe des Grassins","type":"Role","_key":"21026","_from":"15391","_to":"15383"} +{"$label":"ACTS_IN","name":"Cruchot de Bonfons","type":"Role","_key":"21025","_from":"15390","_to":"15383"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Cruchot","type":"Role","_key":"21023","_from":"15389","_to":"15383"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Cruchot","type":"Role","_key":"21022","_from":"15388","_to":"15383"} +{"$label":"ACTS_IN","name":"Charles Grandet","type":"Role","_key":"21021","_from":"15387","_to":"15383"} +{"$label":"ACTS_IN","name":"M\u00e8re Grandet","type":"Role","_key":"21018","_from":"15386","_to":"15383"} +{"$label":"ACTS_IN","name":"P\u00e8re Grandet","type":"Role","_key":"21017","_from":"15385","_to":"15383"} +{"$label":"ACTS_IN","name":"Eug\u00e9nie Grandet","type":"Role","_key":"21016","_from":"15384","_to":"15383"} +{"$label":"ACTS_IN","name":"Marguerite","type":"Role","_key":"33746","_from":"15384","_to":"23273"} +{"$label":"ACTS_IN","name":"Bailly","type":"Role","_key":"23699","_from":"15384","_to":"17174"} +{"$label":"ACTS_IN","name":"Kreps","type":"Role","_key":"88715","_from":"15385","_to":"52563"} +{"$label":"ACTS_IN","name":"Maurice Lefebvre","type":"Role","_key":"66864","_from":"15385","_to":"41293"} +{"$label":"ACTS_IN","name":"Francis Ch\u00e9rasse (Le Bomb\u00e9)","type":"Role","_key":"53080","_from":"15385","_to":"34359"} +{"$label":"ACTS_IN","name":"Georges Lajoie","type":"Role","_key":"37999","_from":"15385","_to":"25724"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31613","_from":"15385","_to":"22071"} +{"$label":"ACTS_IN","name":"M. Pinelli","type":"Role","_key":"30619","_from":"15385","_to":"21508"} +{"$label":"ACTS_IN","name":"Planchet","type":"Role","_key":"29801","_from":"15385","_to":"21082"} +{"$label":"ACTS_IN","name":"Paul Bourru","type":"Role","_key":"29586","_from":"15385","_to":"20945"} +{"$label":"ACTS_IN","name":"Baptiste Nozi\u00e8re","type":"Role","_key":"23727","_from":"15385","_to":"17206"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21289","_from":"15385","_to":"15565"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"29757","_from":"15386","_to":"21066"} +{"$label":"ACTS_IN","name":"le substitut","type":"Role","_key":"30022","_from":"15389","_to":"21177"} +{"$label":"DIRECTED","_key":"21033","_from":"15397","_to":"15392"} +{"$label":"ACTS_IN","name":"Former mine worker","type":"Role","_key":"21032","_from":"15396","_to":"15392"} +{"$label":"ACTS_IN","name":"Old Nun","type":"Role","_key":"21031","_from":"15395","_to":"15392"} +{"$label":"ACTS_IN","name":"Naoko","type":"Role","_key":"21030","_from":"15394","_to":"15392"} +{"$label":"ACTS_IN","name":"Mitsuo","type":"Role","_key":"21029","_from":"15393","_to":"15392"} +{"$label":"ACTS_IN","name":"Tetsuro","type":"Role","_key":"89696","_from":"15393","_to":"53092"} +{"$label":"ACTS_IN","name":"Oribe Furuta","type":"Role","_key":"89690","_from":"15393","_to":"53088"} +{"$label":"ACTS_IN","name":"Miyagi","type":"Role","_key":"101473","_from":"15395","_to":"59727"} +{"$label":"ACTS_IN","name":"Osaki as old woman","type":"Role","_key":"89704","_from":"15395","_to":"53099"} +{"$label":"DIRECTED","_key":"89707","_from":"15397","_to":"53099"} +{"$label":"DIRECTED","_key":"89694","_from":"15397","_to":"53092"} +{"$label":"DIRECTED","_key":"89693","_from":"15397","_to":"53088"} +{"$label":"DIRECTED","_key":"21055","_from":"15412","_to":"15398"} +{"$label":"DIRECTED","_key":"21054","_from":"15411","_to":"15398"} +{"$label":"DIRECTED","_key":"21052","_from":"15410","_to":"15398"} +{"$label":"DIRECTED","_key":"21051","_from":"15409","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Hier, tu m'as dit demain\"","type":"Role","_key":"21048","_from":"15408","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Ecsta-ordinaire\"","type":"Role","_key":"21047","_from":"15407","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"De\u00e7ue\"","type":"Role","_key":"21046","_from":"15406","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Avalanche\"","type":"Role","_key":"21045","_from":"15405","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Derni\u00e8re Ann\u00e9e\"","type":"Role","_key":"21044","_from":"15404","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Jour de manque\"","type":"Role","_key":"21043","_from":"15403","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"La Pur\u00e9e\"","type":"Role","_key":"21042","_from":"15402","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"La Pur\u00e9e\"","type":"Role","_key":"21041","_from":"15401","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"La Pur\u00e9e\"","type":"Role","_key":"21040","_from":"15400","_to":"15398"} +{"$label":"ACTS_IN","name":"Segment \"Tube d'un jour\"","type":"Role","_key":"21038","_from":"15399","_to":"15398"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"89579","_from":"15399","_to":"53004"} +{"$label":"ACTS_IN","name":"Isabelle Lenehan","type":"Role","_key":"33310","_from":"15399","_to":"23080"} +{"$label":"ACTS_IN","name":"Jack Fox","type":"Role","_key":"33833","_from":"15400","_to":"23315"} +{"$label":"ACTS_IN","name":"le prof de maths","type":"Role","_key":"21362","_from":"15400","_to":"15621"} +{"$label":"ACTS_IN","name":"Lucifer","type":"Role","_key":"21280","_from":"15400","_to":"15565"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"55155","_from":"15401","_to":"35200"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"45748","_from":"15401","_to":"30269"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00e9my","type":"Role","_key":"118235","_from":"15402","_to":"69499"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"94803","_from":"15402","_to":"55832"} +{"$label":"ACTS_IN","name":"Million Groseille","type":"Role","_key":"30685","_from":"15403","_to":"21530"} +{"$label":"ACTS_IN","name":"Emilie","type":"Role","_key":"49710","_from":"15405","_to":"32530"} +{"$label":"ACTS_IN","name":"La guide Family Art","type":"Role","_key":"118048","_from":"15406","_to":"69385"} +{"$label":"ACTS_IN","name":"Solange Servolle","type":"Role","_key":"88707","_from":"15406","_to":"52563"} +{"$label":"ACTS_IN","name":"Mme Marais","type":"Role","_key":"62199","_from":"15406","_to":"39172"} +{"$label":"ACTS_IN","name":"Mme Chouquet","type":"Role","_key":"33293","_from":"15406","_to":"23064"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"31219","_from":"15406","_to":"21847"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"27130","_from":"15406","_to":"19521"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"23660","_from":"15406","_to":"17153"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"117345","_from":"15407","_to":"69017"} +{"$label":"ACTS_IN","name":"Tibor Kovacs","type":"Role","_key":"116100","_from":"15407","_to":"68365"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"112140","_from":"15407","_to":"66226"} +{"$label":"ACTS_IN","name":"Goudurix","type":"Role","_key":"55225","_from":"15407","_to":"35231"} +{"$label":"ACTS_IN","name":"Joachim Baille","type":"Role","_key":"89283","_from":"15408","_to":"52859"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29924","_from":"15408","_to":"21145"} +{"$label":"DIRECTED","_key":"46169","_from":"15409","_to":"30515"} +{"$label":"DIRECTED","_key":"46163","_from":"15409","_to":"30509"} +{"$label":"ACTS_IN","name":"Dienerin","type":"Role","_key":"21096","_from":"15441","_to":"15413"} +{"$label":"ACTS_IN","name":"Architekt","type":"Role","_key":"21095","_from":"15440","_to":"15413"} +{"$label":"ACTS_IN","name":"Manasse","type":"Role","_key":"21093","_from":"15439","_to":"15413"} +{"$label":"ACTS_IN","name":"Mundschenk","type":"Role","_key":"21089","_from":"15438","_to":"15413"} +{"$label":"ACTS_IN","name":"Hira","type":"Role","_key":"21088","_from":"15437","_to":"15413"} +{"$label":"ACTS_IN","name":"Bera","type":"Role","_key":"21087","_from":"15436","_to":"15413"} +{"$label":"ACTS_IN","name":"Sichem","type":"Role","_key":"21085","_from":"15435","_to":"15413"} +{"$label":"ACTS_IN","name":"Silpa","type":"Role","_key":"21084","_from":"15434","_to":"15413"} +{"$label":"ACTS_IN","name":"Benjamin als Kind","type":"Role","_key":"21083","_from":"15433","_to":"15413"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"21082","_from":"15432","_to":"15413"} +{"$label":"ACTS_IN","name":"Josef als Kind","type":"Role","_key":"21081","_from":"15431","_to":"15413"} +{"$label":"ACTS_IN","name":"Josef als Heranwachsender","type":"Role","_key":"21080","_from":"15430","_to":"15413"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"21079","_from":"15429","_to":"15413"} +{"$label":"ACTS_IN","name":"Sebulon","type":"Role","_key":"21078","_from":"15428","_to":"15413"} +{"$label":"ACTS_IN","name":"Issachar","type":"Role","_key":"21077","_from":"15427","_to":"15413"} +{"$label":"ACTS_IN","name":"Ascher","type":"Role","_key":"21076","_from":"15426","_to":"15413"} +{"$label":"ACTS_IN","name":"Gad","type":"Role","_key":"21075","_from":"15425","_to":"15413"} +{"$label":"ACTS_IN","name":"Naftali","type":"Role","_key":"21074","_from":"15424","_to":"15413"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"21073","_from":"15423","_to":"15413"} +{"$label":"ACTS_IN","name":"Juda","type":"Role","_key":"21072","_from":"15422","_to":"15413"} +{"$label":"ACTS_IN","name":"Levi","type":"Role","_key":"21071","_from":"15421","_to":"15413"} +{"$label":"ACTS_IN","name":"Simeon","type":"Role","_key":"21070","_from":"15420","_to":"15413"} +{"$label":"ACTS_IN","name":"Ruben","type":"Role","_key":"21069","_from":"15419","_to":"15413"} +{"$label":"ACTS_IN","name":"Bilha","type":"Role","_key":"21068","_from":"15418","_to":"15413"} +{"$label":"ACTS_IN","name":"Tamar","type":"Role","_key":"21067","_from":"15417","_to":"15413"} +{"$label":"ACTS_IN","name":"Asenat","type":"Role","_key":"21066","_from":"15416","_to":"15413"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"21059","_from":"15415","_to":"15413"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"21058","_from":"15414","_to":"15413"} +{"$label":"ACTS_IN","name":"Scott Hastings","type":"Role","_key":"63062","_from":"15414","_to":"39571"} +{"$label":"ACTS_IN","name":"Midget","type":"Role","_key":"45482","_from":"15414","_to":"30131"} +{"$label":"ACTS_IN","name":"Marie-Claire Allesandri","type":"Role","_key":"71803","_from":"15415","_to":"43458"} +{"$label":"ACTS_IN","name":"Anna Quadri","type":"Role","_key":"49574","_from":"15415","_to":"32457"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"42451","_from":"15415","_to":"28427"} +{"$label":"ACTS_IN","name":"Micol","type":"Role","_key":"34012","_from":"15415","_to":"23398"} +{"$label":"ACTS_IN","name":"\u00c9dith","type":"Role","_key":"30658","_from":"15415","_to":"21523"} +{"$label":"ACTS_IN","name":"Inessa Armand","type":"Role","_key":"30036","_from":"15415","_to":"21186"} +{"$label":"ACTS_IN","name":"Sister Andr\u00e9e","type":"Role","_key":"29167","_from":"15415","_to":"20772"} +{"$label":"ACTS_IN","name":"Ada Fiestri Paulhan","type":"Role","_key":"28826","_from":"15415","_to":"20607"} +{"$label":"ACTS_IN","name":"Marta Colussi","type":"Role","_key":"103588","_from":"15416","_to":"60927"} +{"$label":"ACTS_IN","name":"Dona Saint-Denis","type":"Role","_key":"37914","_from":"15416","_to":"25672"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"48118","_from":"15420","_to":"31620"} +{"$label":"ACTS_IN","name":"Duty Sergeant","type":"Role","_key":"59739","_from":"15422","_to":"37714"} +{"$label":"ACTS_IN","name":"Sklavenh\u00e4ndler","type":"Role","_key":"22875","_from":"15424","_to":"16575"} +{"$label":"ACTS_IN","name":"Alexsie Kutchinov","type":"Role","_key":"55996","_from":"15425","_to":"35597"} +{"$label":"ACTS_IN","name":"William Purcell","type":"Role","_key":"22638","_from":"15425","_to":"16415"} +{"$label":"ACTS_IN","name":"Junge am Berg Sinai","type":"Role","_key":"23017","_from":"15431","_to":"16666"} +{"$label":"ACTS_IN","name":"Isaak als Kind","type":"Role","_key":"22860","_from":"15431","_to":"16575"} +{"$label":"ACTS_IN","name":"Melanthe","type":"Role","_key":"111719","_from":"15432","_to":"65950"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"42853","_from":"15436","_to":"28648"} +{"$label":"ACTS_IN","name":"Jack the Ripper","type":"Role","_key":"41402","_from":"15440","_to":"27828"} +{"$label":"ACTS_IN","name":"Hrothgar","type":"Role","_key":"37355","_from":"15440","_to":"25315"} +{"$label":"ACTS_IN","name":"Ron Wood","type":"Role","_key":"24310","_from":"15440","_to":"17611"} +{"$label":"ACTS_IN","name":"Frau","type":"Role","_key":"22953","_from":"15441","_to":"16632"} +{"$label":"DIRECTED","_key":"21109","_from":"15454","_to":"15442"} +{"$label":"ACTS_IN","name":"Armida","type":"Role","_key":"21108","_from":"15453","_to":"15442"} +{"$label":"ACTS_IN","name":"Molteni","type":"Role","_key":"21107","_from":"15452","_to":"15442"} +{"$label":"ACTS_IN","name":"Lidia","type":"Role","_key":"21106","_from":"15451","_to":"15442"} +{"$label":"ACTS_IN","name":"Lavinia","type":"Role","_key":"21105","_from":"15450","_to":"15442"} +{"$label":"ACTS_IN","name":"Vittorio","type":"Role","_key":"21104","_from":"15449","_to":"15442"} +{"$label":"ACTS_IN","name":"Renato","type":"Role","_key":"21103","_from":"15448","_to":"15442"} +{"$label":"ACTS_IN","name":"Piero","type":"Role","_key":"21102","_from":"15447","_to":"15442"} +{"$label":"ACTS_IN","name":"Constanza","type":"Role","_key":"21101","_from":"15446","_to":"15442"} +{"$label":"ACTS_IN","name":"Valeria","type":"Role","_key":"21100","_from":"15445","_to":"15442"} +{"$label":"ACTS_IN","name":"Marcello","type":"Role","_key":"21099","_from":"15444","_to":"15442"} +{"$label":"ACTS_IN","name":"Fabrizio","type":"Role","_key":"21098","_from":"15443","_to":"15442"} +{"$label":"ACTS_IN","name":"Ridzi","type":"Role","_key":"33978","_from":"15443","_to":"23383"} +{"$label":"ACTS_IN","name":"Jean Dubreuil","type":"Role","_key":"30800","_from":"15443","_to":"21591"} +{"$label":"ACTS_IN","name":"Filippo d'Arborio","type":"Role","_key":"30792","_from":"15443","_to":"21588"} +{"$label":"ACTS_IN","name":"Sergio Manalese","type":"Role","_key":"30316","_from":"15443","_to":"21319"} +{"$label":"ACTS_IN","name":"Richard Hornig","type":"Role","_key":"27339","_from":"15443","_to":"19647"} +{"$label":"ACTS_IN","name":"Benito Varotto","type":"Role","_key":"33513","_from":"15444","_to":"23177"} +{"$label":"ACTS_IN","name":"Johnny Spanish","type":"Role","_key":"33505","_from":"15444","_to":"23176"} +{"$label":"ACTS_IN","name":"Mr. Giovanelli","type":"Role","_key":"33496","_from":"15444","_to":"23170"} +{"$label":"ACTS_IN","name":"Felipe","type":"Role","_key":"33482","_from":"15444","_to":"23163"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"71233","_from":"15446","_to":"43224"} +{"$label":"ACTS_IN","name":"Clementine Doberd\u00f2","type":"Role","_key":"27097","_from":"15446","_to":"19509"} +{"$label":"ACTS_IN","name":"Eliseba","type":"Role","_key":"21872","_from":"15446","_to":"15979"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"21154","_from":"15446","_to":"15473"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43674","_from":"15448","_to":"29161"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"72685","_from":"15449","_to":"43802"} +{"$label":"ACTS_IN","name":"Ludovico Settembrini","type":"Role","_key":"29568","_from":"15449","_to":"20940"} +{"$label":"ACTS_IN","name":"Marzia","type":"Role","_key":"35905","_from":"15451","_to":"24382"} +{"$label":"DIRECTED","_key":"31398","_from":"15454","_to":"21944"} +{"$label":"DIRECTED","_key":"31390","_from":"15454","_to":"21940"} +{"$label":"DIRECTED","_key":"21124","_from":"15469","_to":"15455"} +{"$label":"ACTS_IN","name":"Evelyns Tochter","type":"Role","_key":"21123","_from":"15468","_to":"15455"} +{"$label":"ACTS_IN","name":"Evelyns Tochter","type":"Role","_key":"21122","_from":"15467","_to":"15455"} +{"$label":"ACTS_IN","name":"Mond\u00e4ne Zugreisende","type":"Role","_key":"21121","_from":"15466","_to":"15455"} +{"$label":"ACTS_IN","name":"Mlle Michel","type":"Role","_key":"21120","_from":"15465","_to":"15455"} +{"$label":"ACTS_IN","name":"Herr von Schlieffen","type":"Role","_key":"21119","_from":"15464","_to":"15455"} +{"$label":"ACTS_IN","name":"Herr Rupp","type":"Role","_key":"21118","_from":"15463","_to":"15455"} +{"$label":"ACTS_IN","name":"Frau Rupp","type":"Role","_key":"21117","_from":"15462","_to":"15455"} +{"$label":"ACTS_IN","name":"Kinderm\u00e4dchen","type":"Role","_key":"21116","_from":"15461","_to":"15455"} +{"$label":"ACTS_IN","name":"Kinderfrau","type":"Role","_key":"21115","_from":"15460","_to":"15455"} +{"$label":"ACTS_IN","name":"Von Gebhard","type":"Role","_key":"21114","_from":"15459","_to":"15455"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"21113","_from":"15458","_to":"15455"} +{"$label":"ACTS_IN","name":"Frank Davies","type":"Role","_key":"21112","_from":"15457","_to":"15455"} +{"$label":"ACTS_IN","name":"Kurt Droste","type":"Role","_key":"21111","_from":"15456","_to":"15455"} +{"$label":"ACTS_IN","name":"Moeding, Polizist","type":"Role","_key":"33852","_from":"15456","_to":"23320"} +{"$label":"ACTS_IN","name":"Barney Webster","type":"Role","_key":"88477","_from":"15457","_to":"52443"} +{"$label":"ACTS_IN","name":"Oma Erica","type":"Role","_key":"46448","_from":"15462","_to":"30681"} +{"$label":"DIRECTED","_key":"21127","_from":"15472","_to":"15470"} +{"$label":"ACTS_IN","name":"Alceste","type":"Role","_key":"21126","_from":"15471","_to":"15470"} +{"$label":"ACTS_IN","name":"Allard","type":"Role","_key":"37899","_from":"15471","_to":"25666"} +{"$label":"ACTS_IN","name":"S\u00e9raphin","type":"Role","_key":"31756","_from":"15471","_to":"22162"} +{"$label":"ACTS_IN","name":"Saint-Aubain","type":"Role","_key":"30726","_from":"15471","_to":"21545"} +{"$label":"ACTS_IN","name":"Zelot","type":"Role","_key":"21206","_from":"15526","_to":"15473"} +{"$label":"ACTS_IN","name":"Jesus als Kleinkind","type":"Role","_key":"21205","_from":"15525","_to":"15473"} +{"$label":"ACTS_IN","name":"\u00c4ltester","type":"Role","_key":"21204","_from":"15524","_to":"15473"} +{"$label":"ACTS_IN","name":"Joah","type":"Role","_key":"21203","_from":"15523","_to":"15473"} +{"$label":"ACTS_IN","name":"Plotinus","type":"Role","_key":"21201","_from":"15522","_to":"15473"} +{"$label":"ACTS_IN","name":"Valerius","type":"Role","_key":"21200","_from":"15521","_to":"15473"} +{"$label":"ACTS_IN","name":"Haggai","type":"Role","_key":"21198","_from":"15520","_to":"15473"} +{"$label":"ACTS_IN","name":"Lucius","type":"Role","_key":"21197","_from":"15519","_to":"15473"} +{"$label":"ACTS_IN","name":"Esra","type":"Role","_key":"21196","_from":"15518","_to":"15473"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"21194","_from":"15517","_to":"15473"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"21193","_from":"15516","_to":"15473"} +{"$label":"ACTS_IN","name":"Ircanus","type":"Role","_key":"21192","_from":"15515","_to":"15473"} +{"$label":"ACTS_IN","name":"Hosea","type":"Role","_key":"21190","_from":"15514","_to":"15473"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"21189","_from":"15513","_to":"15473"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"21188","_from":"15512","_to":"15473"} +{"$label":"ACTS_IN","name":"Bartholom\u00e4us","type":"Role","_key":"21187","_from":"15511","_to":"15473"} +{"$label":"ACTS_IN","name":"Thadd\u00e4us","type":"Role","_key":"21186","_from":"15510","_to":"15473"} +{"$label":"ACTS_IN","name":"Elihu","type":"Role","_key":"21185","_from":"15509","_to":"15473"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"21184","_from":"15508","_to":"15473"} +{"$label":"ACTS_IN","name":"Jairus","type":"Role","_key":"21183","_from":"15507","_to":"15473"} +{"$label":"ACTS_IN","name":"Salome","type":"Role","_key":"21182","_from":"15506","_to":"15473"} +{"$label":"ACTS_IN","name":"Jakobus der J\u00fcngere","type":"Role","_key":"21181","_from":"15505","_to":"15473"} +{"$label":"ACTS_IN","name":"Levi Matth\u00e4us","type":"Role","_key":"21180","_from":"15504","_to":"15473"} +{"$label":"ACTS_IN","name":"Maleachi","type":"Role","_key":"21179","_from":"15503","_to":"15473"} +{"$label":"ACTS_IN","name":"Jakobus der \u00c4ltere","type":"Role","_key":"21178","_from":"15502","_to":"15473"} +{"$label":"ACTS_IN","name":"Der Vater des besessenen Jungen","type":"Role","_key":"21177","_from":"15501","_to":"15473"} +{"$label":"ACTS_IN","name":"Der besessene Junge","type":"Role","_key":"21176","_from":"15500","_to":"15473"} +{"$label":"ACTS_IN","name":"Nahum","type":"Role","_key":"21175","_from":"15499","_to":"15473"} +{"$label":"ACTS_IN","name":"Johannes der Evangelist","type":"Role","_key":"21174","_from":"15498","_to":"15473"} +{"$label":"ACTS_IN","name":"Philippus","type":"Role","_key":"21173","_from":"15497","_to":"15473"} +{"$label":"ACTS_IN","name":"Simon der Zelot","type":"Role","_key":"21172","_from":"15496","_to":"15473"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"21171","_from":"15495","_to":"15473"} +{"$label":"ACTS_IN","name":"Jona","type":"Role","_key":"21170","_from":"15494","_to":"15473"} +{"$label":"ACTS_IN","name":"Eliphas","type":"Role","_key":"21169","_from":"15493","_to":"15473"} +{"$label":"ACTS_IN","name":"Jesus als Kind","type":"Role","_key":"21168","_from":"15492","_to":"15473"} +{"$label":"ACTS_IN","name":"Der Beschneidungs-Priester","type":"Role","_key":"21167","_from":"15491","_to":"15473"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"21166","_from":"15490","_to":"15473"} +{"$label":"ACTS_IN","name":"Henoch","type":"Role","_key":"21165","_from":"15489","_to":"15473"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"21164","_from":"15488","_to":"15473"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"21163","_from":"15487","_to":"15473"} +{"$label":"ACTS_IN","name":"Jotham","type":"Role","_key":"21162","_from":"15486","_to":"15473"} +{"$label":"ACTS_IN","name":"Marcus Naso","type":"Role","_key":"21161","_from":"15485","_to":"15473"} +{"$label":"ACTS_IN","name":"Saturninus","type":"Role","_key":"21159","_from":"15484","_to":"15473"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"21158","_from":"15483","_to":"15473"} +{"$label":"ACTS_IN","name":"Der blinde Mann","type":"Role","_key":"21157","_from":"15482","_to":"15473"} +{"$label":"ACTS_IN","name":"Habbakuk","type":"Role","_key":"21156","_from":"15481","_to":"15473"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"21155","_from":"15480","_to":"15473"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"21153","_from":"15479","_to":"15473"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"21150","_from":"15478","_to":"15473"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"21148","_from":"15477","_to":"15473"} +{"$label":"ACTS_IN","name":"Simon Petrus","type":"Role","_key":"21133","_from":"15476","_to":"15473"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"21129","_from":"15475","_to":"15473"} +{"$label":"DIRECTED","_key":"21128","_from":"15474","_to":"15473"} +{"$label":"DIRECTED","_key":"118749","_from":"15474","_to":"69830"} +{"$label":"DIRECTED","_key":"62843","_from":"15474","_to":"39488"} +{"$label":"DIRECTED","_key":"62149","_from":"15474","_to":"39139"} +{"$label":"DIRECTED","_key":"41035","_from":"15474","_to":"27609"} +{"$label":"DIRECTED","_key":"22072","_from":"15474","_to":"16093"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"25407","_from":"15475","_to":"18319"} +{"$label":"ACTS_IN","name":"Wing Commander Richard T. Owens","type":"Role","_key":"50607","_from":"15476","_to":"33049"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"119698","_from":"15477","_to":"70302"} +{"$label":"ACTS_IN","name":"Jess Bradford","type":"Role","_key":"110588","_from":"15477","_to":"65341"} +{"$label":"ACTS_IN","name":"Dr. Karen Murphy","type":"Role","_key":"58998","_from":"15477","_to":"37245"} +{"$label":"ACTS_IN","name":"Rosalie Otterbourne","type":"Role","_key":"41602","_from":"15477","_to":"27940"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"41037","_from":"15477","_to":"27609"} +{"$label":"ACTS_IN","name":"Rosalie Otterbourne","type":"Role","_key":"29983","_from":"15477","_to":"21170"} +{"$label":"ACTS_IN","name":"Audra Phillips Denbrough","type":"Role","_key":"22657","_from":"15477","_to":"16433"} +{"$label":"ACTS_IN","name":"Pavlo","type":"Role","_key":"64468","_from":"15478","_to":"40162"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"50434","_from":"15478","_to":"32946"} +{"$label":"ACTS_IN","name":"Squeak, Mr. Claggart's assistant","type":"Role","_key":"37066","_from":"15481","_to":"25120"} +{"$label":"ACTS_IN","name":"Pietro Di Bernardone","type":"Role","_key":"22063","_from":"15481","_to":"16093"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"70177","_from":"15484","_to":"42774"} +{"$label":"ACTS_IN","name":"Aquila","type":"Role","_key":"22378","_from":"15495","_to":"16258"} +{"$label":"ACTS_IN","name":"Mr. Griffiths","type":"Role","_key":"55734","_from":"15499","_to":"35462"} +{"$label":"ACTS_IN","name":"Diener","type":"Role","_key":"22958","_from":"15499","_to":"16632"} +{"$label":"ACTS_IN","name":"Willoughby","type":"Role","_key":"107852","_from":"15500","_to":"63696"} +{"$label":"ACTS_IN","name":"Mann in Kadesch","type":"Role","_key":"23004","_from":"15508","_to":"16666"} +{"$label":"ACTS_IN","name":"Crow","type":"Role","_key":"114500","_from":"15509","_to":"67443"} +{"$label":"ACTS_IN","name":"Frank das Monster","type":"Role","_key":"52364","_from":"15513","_to":"34079"} +{"$label":"ACTS_IN","name":"Frank als Untoter","type":"Role","_key":"51943","_from":"15513","_to":"33875"} +{"$label":"ACTS_IN","name":"Philip FitzRoyce","type":"Role","_key":"113679","_from":"15519","_to":"66989"} +{"$label":"ACTS_IN","name":"Prince Mikah","type":"Role","_key":"97674","_from":"15519","_to":"57516"} +{"$label":"ACTS_IN","name":"Steve Vandermeer","type":"Role","_key":"71826","_from":"15519","_to":"43469"} +{"$label":"ACTS_IN","name":"Peter Gregory","type":"Role","_key":"71814","_from":"15519","_to":"43461"} +{"$label":"ACTS_IN","name":"Lewis Clarkson","type":"Role","_key":"71804","_from":"15519","_to":"43458"} +{"$label":"ACTS_IN","name":"Glenn Stevens","type":"Role","_key":"71796","_from":"15519","_to":"43454"} +{"$label":"ACTS_IN","name":"Arthur Davies","type":"Role","_key":"71784","_from":"15519","_to":"43448"} +{"$label":"ACTS_IN","name":"Simon Doyle","type":"Role","_key":"41605","_from":"15519","_to":"27940"} +{"$label":"ACTS_IN","name":"Simon Doyle","type":"Role","_key":"29976","_from":"15519","_to":"21170"} +{"$label":"ACTS_IN","name":"Bank Director","type":"Role","_key":"35908","_from":"15523","_to":"24382"} +{"$label":"DIRECTED","_key":"21219","_from":"15536","_to":"15527"} +{"$label":"ACTS_IN","name":"Ines","type":"Role","_key":"21218","_from":"15535","_to":"15527"} +{"$label":"ACTS_IN","name":"le garagiste","type":"Role","_key":"21217","_from":"15534","_to":"15527"} +{"$label":"ACTS_IN","name":"Andiol","type":"Role","_key":"21216","_from":"15533","_to":"15527"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"21215","_from":"15532","_to":"15527"} +{"$label":"ACTS_IN","name":"Jean-Philippe, le fils","type":"Role","_key":"21214","_from":"15531","_to":"15527"} +{"$label":"ACTS_IN","name":"Melisa","type":"Role","_key":"21213","_from":"15530","_to":"15527"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"21212","_from":"15529","_to":"15527"} +{"$label":"ACTS_IN","name":"Madame M\u00e8re","type":"Role","_key":"21211","_from":"15528","_to":"15527"} +{"$label":"ACTS_IN","name":"la duchesse","type":"Role","_key":"88449","_from":"15528","_to":"52428"} +{"$label":"ACTS_IN","name":"La m\u00e8re sup\u00e9rieure","type":"Role","_key":"48885","_from":"15528","_to":"32047"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"33729","_from":"15528","_to":"23267"} +{"$label":"ACTS_IN","name":"Elisabeth de Moldavie","type":"Role","_key":"33616","_from":"15528","_to":"23215"} +{"$label":"ACTS_IN","name":"Madame Guillin","type":"Role","_key":"30019","_from":"15528","_to":"21177"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"30004","_from":"15528","_to":"21173"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33585","_from":"15529","_to":"23204"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"33371","_from":"15529","_to":"23104"} +{"$label":"ACTS_IN","name":"\u00c9velyne","type":"Role","_key":"33333","_from":"15529","_to":"23092"} +{"$label":"ACTS_IN","name":"Annick","type":"Role","_key":"29936","_from":"15529","_to":"21152"} +{"$label":"ACTS_IN","name":"Estella","type":"Role","_key":"43572","_from":"15530","_to":"29101"} +{"$label":"ACTS_IN","name":"Luce","type":"Role","_key":"27309","_from":"15530","_to":"19632"} +{"$label":"ACTS_IN","name":"Beno\u00eet","type":"Role","_key":"21506","_from":"15531","_to":"15736"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31584","_from":"15532","_to":"22058"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"21279","_from":"15532","_to":"15565"} +{"$label":"ACTS_IN","name":"un infirmier","type":"Role","_key":"34050","_from":"15534","_to":"23410"} +{"$label":"ACTS_IN","name":"le p\u00e8re Fromont","type":"Role","_key":"33873","_from":"15534","_to":"23329"} +{"$label":"ACTS_IN","name":"un aubergiste","type":"Role","_key":"30732","_from":"15534","_to":"21545"} +{"$label":"DIRECTED","_key":"91303","_from":"15536","_to":"53848"} +{"$label":"DIRECTED","_key":"23870","_from":"15536","_to":"17304"} +{"$label":"DIRECTED","_key":"21920","_from":"15536","_to":"16008"} +{"$label":"DIRECTED","_key":"21227","_from":"15541","_to":"15537"} +{"$label":"ACTS_IN","name":"Danton","type":"Role","_key":"21226","_from":"15540","_to":"15537"} +{"$label":"ACTS_IN","name":"Robespierre","type":"Role","_key":"21225","_from":"15539","_to":"15537"} +{"$label":"ACTS_IN","name":"Freron","type":"Role","_key":"21224","_from":"15538","_to":"15537"} +{"$label":"ACTS_IN","name":"le cardinal de Rohan","type":"Role","_key":"71976","_from":"15538","_to":"43534"} +{"$label":"ACTS_IN","name":"Henry Garland","type":"Role","_key":"71442","_from":"15538","_to":"43314"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37992","_from":"15538","_to":"25718"} +{"$label":"ACTS_IN","name":"the commander","type":"Role","_key":"32704","_from":"15538","_to":"22714"} +{"$label":"DIRECTED","_key":"21231","_from":"15541","_to":"15542"} +{"$label":"ACTS_IN","name":"Lauzun","type":"Role","_key":"21230","_from":"15544","_to":"15542"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Chenier","type":"Role","_key":"21228","_from":"15543","_to":"15542"} +{"$label":"ACTS_IN","name":"Merchior","type":"Role","_key":"27059","_from":"15543","_to":"19477"} +{"$label":"ACTS_IN","name":"Schaffer","type":"Role","_key":"35123","_from":"15544","_to":"23944"} +{"$label":"ACTS_IN","name":"L\u00e9andre","type":"Role","_key":"33720","_from":"15544","_to":"23260"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"29796","_from":"15544","_to":"21082"} +{"$label":"DIRECTED","_key":"21239","_from":"15552","_to":"15545"} +{"$label":"ACTS_IN","name":"La coll\u00e8gue du lyc\u00e9e","type":"Role","_key":"21238","_from":"15551","_to":"15545"} +{"$label":"ACTS_IN","name":"La fermi\u00e8re","type":"Role","_key":"21237","_from":"15550","_to":"15545"} +{"$label":"ACTS_IN","name":"Daniel enfant","type":"Role","_key":"21236","_from":"15549","_to":"15545"} +{"$label":"ACTS_IN","name":"La petite fille","type":"Role","_key":"21235","_from":"15548","_to":"15545"} +{"$label":"ACTS_IN","name":"Le Libraire","type":"Role","_key":"21234","_from":"15547","_to":"15545"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"21233","_from":"15546","_to":"15545"} +{"$label":"ACTS_IN","name":"Mareuil","type":"Role","_key":"38057","_from":"15547","_to":"25746"} +{"$label":"ACTS_IN","name":"Barmaid","type":"Role","_key":"40701","_from":"15550","_to":"27383"} +{"$label":"ACTS_IN","name":"Melle L'Espanaye","type":"Role","_key":"42253","_from":"15551","_to":"28293"} +{"$label":"ACTS_IN","name":"Lanzentr\u00e4ger","type":"Role","_key":"21273","_from":"15564","_to":"15553"} +{"$label":"ACTS_IN","name":"Aben","type":"Role","_key":"21272","_from":"15563","_to":"15553"} +{"$label":"ACTS_IN","name":"Nikodemus","type":"Role","_key":"21267","_from":"15562","_to":"15553"} +{"$label":"ACTS_IN","name":"Simon Petrus","type":"Role","_key":"21265","_from":"15561","_to":"15553"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"21259","_from":"15560","_to":"15553"} +{"$label":"ACTS_IN","name":"Judas Iskarioth","type":"Role","_key":"21257","_from":"15559","_to":"15553"} +{"$label":"ACTS_IN","name":"Maria Magdalena","type":"Role","_key":"21250","_from":"15558","_to":"15553"} +{"$label":"ACTS_IN","name":"Sorak","type":"Role","_key":"21248","_from":"15557","_to":"15553"} +{"$label":"ACTS_IN","name":"Engel","type":"Role","_key":"21247","_from":"15556","_to":"15553"} +{"$label":"ACTS_IN","name":"Martha von Bethanien","type":"Role","_key":"21246","_from":"15555","_to":"15553"} +{"$label":"ACTS_IN","name":"Jakobus der J\u00fcngere","type":"Role","_key":"21244","_from":"15554","_to":"15553"} +{"$label":"ACTS_IN","name":"Tracey Winters","type":"Role","_key":"117111","_from":"15555","_to":"68907"} +{"$label":"ACTS_IN","name":"Alexander 'Alec' McKuen","type":"Role","_key":"70751","_from":"15556","_to":"43030"} +{"$label":"ACTS_IN","name":"Edwin Flagg","type":"Role","_key":"61890","_from":"15557","_to":"38952"} +{"$label":"ACTS_IN","name":"Zeus","type":"Role","_key":"104087","_from":"15559","_to":"61239"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"97188","_from":"15559","_to":"57172"} +{"$label":"ACTS_IN","name":"Alan Breck","type":"Role","_key":"91797","_from":"15559","_to":"54153"} +{"$label":"ACTS_IN","name":"Assistant Wireless Operator Harold Bride","type":"Role","_key":"67013","_from":"15559","_to":"41361"} +{"$label":"ACTS_IN","name":"Illya Kuryakin","type":"Role","_key":"42923","_from":"15559","_to":"28685"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Eric Ashley-Pitt \"Dispersal\"","type":"Role","_key":"40477","_from":"15559","_to":"27264"} +{"$label":"ACTS_IN","name":"Steven Wyatt, Gunnery Officer","type":"Role","_key":"37064","_from":"15559","_to":"25120"} +{"$label":"ACTS_IN","name":"Dr. Clervall","type":"Role","_key":"25972","_from":"15559","_to":"18672"} +{"$label":"ACTS_IN","name":"Sylvia Hunter","type":"Role","_key":"118027","_from":"15560","_to":"69380"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116218","_from":"15560","_to":"68429"} +{"$label":"ACTS_IN","name":"Prince Sancho","type":"Role","_key":"109700","_from":"15561","_to":"64787"} +{"$label":"ACTS_IN","name":"George Holly","type":"Role","_key":"101481","_from":"15561","_to":"59731"} +{"$label":"ACTS_IN","name":"Acastus","type":"Role","_key":"70473","_from":"15561","_to":"42901"} +{"$label":"ACTS_IN","name":"Alastair","type":"Role","_key":"28104","_from":"15561","_to":"20145"} +{"$label":"ACTS_IN","name":"Otto Frank","type":"Role","_key":"22030","_from":"15562","_to":"16074"} +{"$label":"ACTS_IN","name":"Buffalo Horn","type":"Role","_key":"116897","_from":"15564","_to":"68818"} +{"$label":"ACTS_IN","name":"Silva","type":"Role","_key":"43955","_from":"15564","_to":"29320"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"35329","_from":"15564","_to":"24060"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27207","_from":"15564","_to":"19549"} +{"$label":"DIRECTED","_key":"21295","_from":"15566","_to":"15565"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21294","_from":"15574","_to":"15565"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21293","_from":"15573","_to":"15565"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21292","_from":"15572","_to":"15565"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21291","_from":"15571","_to":"15565"} +{"$label":"ACTS_IN","name":"Cameo","type":"Role","_key":"21290","_from":"15570","_to":"15565"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"21278","_from":"15569","_to":"15565"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"21276","_from":"15568","_to":"15565"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"21275","_from":"15567","_to":"15565"} +{"$label":"ACTS_IN","name":"Didier","type":"Role","_key":"21274","_from":"15566","_to":"15565"} +{"$label":"ACTS_IN","name":"Meyer","type":"Role","_key":"34026","_from":"15566","_to":"23403"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"30724","_from":"15567","_to":"21545"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"30606","_from":"15567","_to":"21501"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"29818","_from":"15567","_to":"21100"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108603","_from":"15568","_to":"64171"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89285","_from":"15568","_to":"52859"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"33600","_from":"15569","_to":"23212"} +{"$label":"ACTS_IN","name":"Marie-H\u00e9l\u00e8ne Rondin","type":"Role","_key":"29583","_from":"15569","_to":"20945"} +{"$label":"ACTS_IN","name":"Lucien Cheval","type":"Role","_key":"53757","_from":"15574","_to":"34652"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33839","_from":"15574","_to":"23315"} +{"$label":"DIRECTED","_key":"21302","_from":"15577","_to":"15575"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"21301","_from":"15579","_to":"15575"} +{"$label":"ACTS_IN","name":"Directeur de th\u00e9\u00e2tre","type":"Role","_key":"21300","_from":"15578","_to":"15575"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"21299","_from":"15577","_to":"15575"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"21298","_from":"15576","_to":"15575"} +{"$label":"DIRECTED","_key":"21312","_from":"15588","_to":"15580"} +{"$label":"ACTS_IN","name":"La rescap\u00e9e","type":"Role","_key":"21311","_from":"15587","_to":"15580"} +{"$label":"ACTS_IN","name":"Le voisin","type":"Role","_key":"21310","_from":"15586","_to":"15580"} +{"$label":"ACTS_IN","name":"La comtesse","type":"Role","_key":"21309","_from":"15585","_to":"15580"} +{"$label":"ACTS_IN","name":"Le comte","type":"Role","_key":"21308","_from":"15584","_to":"15580"} +{"$label":"ACTS_IN","name":"Madame Scouarnec","type":"Role","_key":"21307","_from":"15583","_to":"15580"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"21306","_from":"15582","_to":"15580"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric jeune","type":"Role","_key":"21305","_from":"15581","_to":"15580"} +{"$label":"DIRECTED","_key":"21322","_from":"15591","_to":"15589"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"21317","_from":"15590","_to":"15589"} +{"$label":"DIRECTED","_key":"40840","_from":"15591","_to":"27492"} +{"$label":"DIRECTED","_key":"37888","_from":"15591","_to":"25666"} +{"$label":"DIRECTED","_key":"30657","_from":"15591","_to":"21523"} +{"$label":"DIRECTED","_key":"21334","_from":"15601","_to":"15592"} +{"$label":"ACTS_IN","name":"Den","type":"Role","_key":"21332","_from":"15600","_to":"15592"} +{"$label":"ACTS_IN","name":"Hamblain","type":"Role","_key":"21331","_from":"15599","_to":"15592"} +{"$label":"ACTS_IN","name":"Shri Bahanba","type":"Role","_key":"21330","_from":"15598","_to":"15592"} +{"$label":"ACTS_IN","name":"Annie Fournier","type":"Role","_key":"21329","_from":"15597","_to":"15592"} +{"$label":"ACTS_IN","name":"William Garrett","type":"Role","_key":"21328","_from":"15596","_to":"15592"} +{"$label":"ACTS_IN","name":"Roland Fournier","type":"Role","_key":"21325","_from":"15595","_to":"15592"} +{"$label":"ACTS_IN","name":"Samuel Frend","type":"Role","_key":"21324","_from":"15594","_to":"15592"} +{"$label":"ACTS_IN","name":"Jeanne Corbet","type":"Role","_key":"21323","_from":"15593","_to":"15592"} +{"$label":"ACTS_IN","name":"La Du Barry","type":"Role","_key":"71975","_from":"15593","_to":"43534"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"88458","_from":"15594","_to":"52431"} +{"$label":"ACTS_IN","name":"Duke of Crassac","type":"Role","_key":"65315","_from":"15594","_to":"40531"} +{"$label":"ACTS_IN","name":"St\u00e9phane Desgrez","type":"Role","_key":"35798","_from":"15594","_to":"24312"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"34286","_from":"15594","_to":"23529"} +{"$label":"ACTS_IN","name":"Claude Ridder","type":"Role","_key":"34053","_from":"15594","_to":"23411"} +{"$label":"ACTS_IN","name":"General Leclerc","type":"Role","_key":"33557","_from":"15594","_to":"23204"} +{"$label":"ACTS_IN","name":"Bliss","type":"Role","_key":"29962","_from":"15594","_to":"21166"} +{"$label":"ACTS_IN","name":"Panoramix","type":"Role","_key":"24175","_from":"15594","_to":"17515"} +{"$label":"ACTS_IN","name":"Christian Martin","type":"Role","_key":"23667","_from":"15594","_to":"17159"} +{"$label":"ACTS_IN","name":"Peter Sommer","type":"Role","_key":"50883","_from":"15595","_to":"33211"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"39748","_from":"15595","_to":"26850"} +{"$label":"ACTS_IN","name":"Charles Darnay","type":"Role","_key":"33460","_from":"15596","_to":"23156"} +{"$label":"ACTS_IN","name":"Desgenais","type":"Role","_key":"32798","_from":"15596","_to":"22774"} +{"$label":"ACTS_IN","name":"Dr. Collins","type":"Role","_key":"44130","_from":"15598","_to":"29420"} +{"$label":"ACTS_IN","name":"Mr. High","type":"Role","_key":"32747","_from":"15598","_to":"22739"} +{"$label":"ACTS_IN","name":"Mr. High","type":"Role","_key":"32713","_from":"15598","_to":"22720"} +{"$label":"ACTS_IN","name":"Mr. John High","type":"Role","_key":"32654","_from":"15598","_to":"22691"} +{"$label":"ACTS_IN","name":"Mr. John High","type":"Role","_key":"32631","_from":"15598","_to":"22673"} +{"$label":"ACTS_IN","name":"Mr. John High","type":"Role","_key":"32613","_from":"15598","_to":"22658"} +{"$label":"ACTS_IN","name":"General von Libitz","type":"Role","_key":"27391","_from":"15598","_to":"19677"} +{"$label":"ACTS_IN","name":"le commissaire Blanchot","type":"Role","_key":"33761","_from":"15599","_to":"23279"} +{"$label":"ACTS_IN","name":"Delma","type":"Role","_key":"32087","_from":"15599","_to":"22350"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31587","_from":"15599","_to":"22058"} +{"$label":"ACTS_IN","name":"Shaz\u00e9nian","type":"Role","_key":"26065","_from":"15599","_to":"18729"} +{"$label":"ACTS_IN","name":"Urcel","type":"Role","_key":"22105","_from":"15599","_to":"16116"} +{"$label":"ACTS_IN","name":"Arancha De Juan","type":"Role","_key":"21349","_from":"15613","_to":"15602"} +{"$label":"ACTS_IN","name":"Jueza","type":"Role","_key":"21348","_from":"15612","_to":"15602"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"21347","_from":"15611","_to":"15602"} +{"$label":"ACTS_IN","name":"Ram\u00f3n","type":"Role","_key":"21346","_from":"15610","_to":"15602"} +{"$label":"ACTS_IN","name":"Abogado","type":"Role","_key":"21345","_from":"15609","_to":"15602"} +{"$label":"ACTS_IN","name":"Hermano \u00c1ngela","type":"Role","_key":"21343","_from":"15608","_to":"15602"} +{"$label":"ACTS_IN","name":"T\u00eda \u00c1ngela","type":"Role","_key":"21342","_from":"15607","_to":"15602"} +{"$label":"ACTS_IN","name":"Cu\u00f1ada \u00c1ngela","type":"Role","_key":"21341","_from":"15606","_to":"15602"} +{"$label":"ACTS_IN","name":"Madre \u00c1ngela","type":"Role","_key":"21340","_from":"15605","_to":"15602"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"21338","_from":"15604","_to":"15602"} +{"$label":"DIRECTED","_key":"21335","_from":"15603","_to":"15602"} +{"$label":"ACTS_IN","name":"Polo","type":"Role","_key":"48556","_from":"15609","_to":"31857"} +{"$label":"ACTS_IN","name":"Vater Ernesto","type":"Role","_key":"40775","_from":"15611","_to":"27436"} +{"$label":"ACTS_IN","name":"Smartass Mohawk","type":"Role","_key":"21359","_from":"15620","_to":"15614"} +{"$label":"ACTS_IN","name":"Bo Abodo 1","type":"Role","_key":"21357","_from":"15619","_to":"15614"} +{"$label":"ACTS_IN","name":"Marian Delario","type":"Role","_key":"21356","_from":"15618","_to":"15614"} +{"$label":"ACTS_IN","name":"Linda Lash","type":"Role","_key":"21354","_from":"15617","_to":"15614"} +{"$label":"ACTS_IN","name":"Billy Lee","type":"Role","_key":"21353","_from":"15616","_to":"15614"} +{"$label":"DIRECTED","_key":"21350","_from":"15615","_to":"15614"} +{"$label":"ACTS_IN","name":"Charles 'Chuck' Gieg","type":"Role","_key":"63906","_from":"15616","_to":"39924"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"53811","_from":"15616","_to":"34669"} +{"$label":"ACTS_IN","name":"Patty Montanari","type":"Role","_key":"120030","_from":"15618","_to":"70492"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"116005","_from":"15618","_to":"68315"} +{"$label":"ACTS_IN","name":"Lily Leonetti","type":"Role","_key":"115394","_from":"15618","_to":"67947"} +{"$label":"ACTS_IN","name":"Kimmy","type":"Role","_key":"113786","_from":"15618","_to":"67043"} +{"$label":"ACTS_IN","name":"Cyndi","type":"Role","_key":"96466","_from":"15618","_to":"56725"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"93083","_from":"15618","_to":"54870"} +{"$label":"ACTS_IN","name":"Lurleen","type":"Role","_key":"88905","_from":"15618","_to":"52665"} +{"$label":"ACTS_IN","name":"Gwen Williamson","type":"Role","_key":"88605","_from":"15618","_to":"52505"} +{"$label":"ACTS_IN","name":"Jenny Matrix","type":"Role","_key":"67197","_from":"15618","_to":"41449"} +{"$label":"ACTS_IN","name":"Margo Masse","type":"Role","_key":"63963","_from":"15618","_to":"39949"} +{"$label":"DIRECTED","_key":"115203","_from":"15620","_to":"67848"} +{"$label":"DIRECTED","_key":"21370","_from":"15628","_to":"15621"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"21369","_from":"15627","_to":"15621"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"21368","_from":"15626","_to":"15621"} +{"$label":"ACTS_IN","name":"l'inspecteur de police","type":"Role","_key":"21367","_from":"15625","_to":"15621"} +{"$label":"ACTS_IN","name":"le prof d'anglais","type":"Role","_key":"21365","_from":"15624","_to":"15621"} +{"$label":"ACTS_IN","name":"la m\u00e8re de B\u00e9a","type":"Role","_key":"21364","_from":"15623","_to":"15621"} +{"$label":"ACTS_IN","name":"B\u00e9a","type":"Role","_key":"21363","_from":"15622","_to":"15621"} +{"$label":"ACTS_IN","name":"Loulou","type":"Role","_key":"38005","_from":"15624","_to":"25724"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Vaultier","type":"Role","_key":"33339","_from":"15624","_to":"23092"} +{"$label":"ACTS_IN","name":"le procureur","type":"Role","_key":"33342","_from":"15625","_to":"23092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31416","_from":"15625","_to":"21948"} +{"$label":"DIRECTED","_key":"103577","_from":"15627","_to":"60921"} +{"$label":"DIRECTED","_key":"21380","_from":"15636","_to":"15629"} +{"$label":"ACTS_IN","name":"Henry Johnson","type":"Role","_key":"21379","_from":"15635","_to":"15629"} +{"$label":"ACTS_IN","name":"Paul Unger","type":"Role","_key":"21378","_from":"15634","_to":"15629"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"21377","_from":"15633","_to":"15629"} +{"$label":"ACTS_IN","name":"Lounge singer","type":"Role","_key":"21376","_from":"15632","_to":"15629"} +{"$label":"ACTS_IN","name":"Philip Cook","type":"Role","_key":"21374","_from":"15631","_to":"15629"} +{"$label":"ACTS_IN","name":"Frank Elgin","type":"Role","_key":"21371","_from":"15630","_to":"15629"} +{"$label":"ACTS_IN","name":"Allen A. Dale","type":"Role","_key":"113686","_from":"15630","_to":"66993"} +{"$label":"ACTS_IN","name":"Father Chuck O'Malley","type":"Role","_key":"113510","_from":"15630","_to":"66879"} +{"$label":"ACTS_IN","name":"Joshua 'Josh' Mallon V","type":"Role","_key":"97297","_from":"15630","_to":"57264"} +{"$label":"ACTS_IN","name":"Jim Hardy","type":"Role","_key":"94743","_from":"15630","_to":"55801"} +{"$label":"ACTS_IN","name":"Narrator (segment \"The Legend of Sleepy Hollow\")","type":"Role","_key":"94626","_from":"15630","_to":"55755"} +{"$label":"ACTS_IN","name":"Bob Wallace","type":"Role","_key":"94123","_from":"15630","_to":"55432"} +{"$label":"ACTS_IN","name":"C.K. Dexter-Haven","type":"Role","_key":"69775","_from":"15630","_to":"42588"} +{"$label":"ACTS_IN","name":"Earl Carleton","type":"Role","_key":"35027","_from":"15630","_to":"23901"} +{"$label":"ACTS_IN","name":"Deputy Charlie Norris","type":"Role","_key":"112151","_from":"15631","_to":"66231"} +{"$label":"DIRECTED","_key":"72531","_from":"15636","_to":"43748"} +{"$label":"DIRECTED","_key":"64959","_from":"15636","_to":"40379"} +{"$label":"ACTS_IN","name":"Schwedischer Soldat","type":"Role","_key":"21388","_from":"15643","_to":"15637"} +{"$label":"ACTS_IN","name":"Maj. Gen. Bruno Botta","type":"Role","_key":"21387","_from":"15642","_to":"15637"} +{"$label":"ACTS_IN","name":"Jeong Woo-jin","type":"Role","_key":"21386","_from":"15641","_to":"15637"} +{"$label":"ACTS_IN","name":"Nam Sung-shik","type":"Role","_key":"21385","_from":"15640","_to":"15637"} +{"$label":"ACTS_IN","name":"Sgt. Lee Soo-hyeck","type":"Role","_key":"21384","_from":"15639","_to":"15637"} +{"$label":"ACTS_IN","name":"Maj. Sophie E. Jean","type":"Role","_key":"21383","_from":"15638","_to":"15637"} +{"$label":"ACTS_IN","name":"Geum-ja Lee","type":"Role","_key":"32568","_from":"15638","_to":"22637"} +{"$label":"ACTS_IN","name":"Park Chang-yi, the Bad","type":"Role","_key":"103033","_from":"15639","_to":"60610"} +{"$label":"ACTS_IN","name":"Storm Shadow","type":"Role","_key":"102229","_from":"15639","_to":"60158"} +{"$label":"ACTS_IN","name":"Sun-woo","type":"Role","_key":"69255","_from":"15639","_to":"42345"} +{"$label":"ACTS_IN","name":"2nd Lt. Pyo Hyun-Chul","type":"Role","_key":"102604","_from":"15641","_to":"60364"} +{"$label":"ACTS_IN","name":"Lee Byeong-gu","type":"Role","_key":"68975","_from":"15641","_to":"42228"} +{"$label":"ACTS_IN","name":"Ryu","type":"Role","_key":"33425","_from":"15641","_to":"23136"} +{"$label":"ACTS_IN","name":"Langenhagen","type":"Role","_key":"68364","_from":"15642","_to":"41954"} +{"$label":"ACTS_IN","name":"Herr Lohse","type":"Role","_key":"42485","_from":"15642","_to":"28443"} +{"$label":"ACTS_IN","name":"Kostmann","type":"Role","_key":"31513","_from":"15642","_to":"22008"} +{"$label":"ACTS_IN","name":"Juez","type":"Role","_key":"21404","_from":"15658","_to":"15644"} +{"$label":"ACTS_IN","name":"Old Daughter","type":"Role","_key":"21403","_from":"15657","_to":"15644"} +{"$label":"ACTS_IN","name":"Ilegorri\/Lucas as a child","type":"Role","_key":"21402","_from":"15656","_to":"15644"} +{"$label":"ACTS_IN","name":"Daughter as a child","type":"Role","_key":"21401","_from":"15655","_to":"15644"} +{"$label":"ACTS_IN","name":"Daughter as a child","type":"Role","_key":"21400","_from":"15654","_to":"15644"} +{"$label":"ACTS_IN","name":"Cristina as a child","type":"Role","_key":"21399","_from":"15653","_to":"15644"} +{"$label":"ACTS_IN","name":"Peru as a child","type":"Role","_key":"21398","_from":"15652","_to":"15644"} +{"$label":"ACTS_IN","name":"Carmelo\/Juan","type":"Role","_key":"21396","_from":"15651","_to":"15644"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"21395","_from":"15650","_to":"15644"} +{"$label":"ACTS_IN","name":"Madalen (als Clara Badiola)","type":"Role","_key":"21394","_from":"15649","_to":"15644"} +{"$label":"ACTS_IN","name":"Ilegorri\/Lucas","type":"Role","_key":"21393","_from":"15648","_to":"15644"} +{"$label":"ACTS_IN","name":"Catalina","type":"Role","_key":"21392","_from":"15647","_to":"15644"} +{"$label":"ACTS_IN","name":"Manuel, Ignacio and Peru Irigibel","type":"Role","_key":"21391","_from":"15646","_to":"15644"} +{"$label":"ACTS_IN","name":"Cristina","type":"Role","_key":"21390","_from":"15645","_to":"15644"} +{"$label":"ACTS_IN","name":"\u00c1ngela","type":"Role","_key":"21577","_from":"15645","_to":"15774"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"21424","_from":"15645","_to":"15673"} +{"$label":"ACTS_IN","name":"Burruchaga","type":"Role","_key":"57077","_from":"15646","_to":"36223"} +{"$label":"ACTS_IN","name":"\u00c1ngel Bengoelxeo","type":"Role","_key":"21576","_from":"15646","_to":"15774"} +{"$label":"ACTS_IN","name":"F\u00e9lix","type":"Role","_key":"21428","_from":"15646","_to":"15673"} +{"$label":"ACTS_IN","name":"Katherine of Aragon","type":"Role","_key":"88559","_from":"15647","_to":"52483"} +{"$label":"ACTS_IN","name":"\u00c1ngela","type":"Role","_key":"52979","_from":"15647","_to":"34322"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"32119","_from":"15647","_to":"22383"} +{"$label":"ACTS_IN","name":"Charlotte des Arbres","type":"Role","_key":"25908","_from":"15647","_to":"18639"} +{"$label":"ACTS_IN","name":"Charlotte des Arbres","type":"Role","_key":"25888","_from":"15647","_to":"18633"} +{"$label":"ACTS_IN","name":"Actress","type":"Role","_key":"25869","_from":"15647","_to":"18581"} +{"$label":"ACTS_IN","name":"H\u00e9ctor","type":"Role","_key":"98690","_from":"15648","_to":"58164"} +{"$label":"ACTS_IN","name":"Bruno Massera","type":"Role","_key":"53850","_from":"15648","_to":"34685"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"48568","_from":"15648","_to":"31865"} +{"$label":"ACTS_IN","name":"Patricio","type":"Role","_key":"21578","_from":"15648","_to":"15774"} +{"$label":"ACTS_IN","name":"Ant\u00f3n","type":"Role","_key":"21427","_from":"15648","_to":"15673"} +{"$label":"ACTS_IN","name":"Tom\u00e1s","type":"Role","_key":"21581","_from":"15650","_to":"15774"} +{"$label":"ACTS_IN","name":"Nervenarzt","type":"Role","_key":"21438","_from":"15650","_to":"15673"} +{"$label":"ACTS_IN","name":"\u00c1ngelas Tochter","type":"Role","_key":"21582","_from":"15653","_to":"15774"} +{"$label":"ACTS_IN","name":"Cristina, Junge","type":"Role","_key":"21434","_from":"15653","_to":"15673"} +{"$label":"ACTS_IN","name":"Sagaz","type":"Role","_key":"23064","_from":"15658","_to":"16717"} +{"$label":"ACTS_IN","name":"Loscalzo","type":"Role","_key":"21410","_from":"15663","_to":"15659"} +{"$label":"ACTS_IN","name":"Sgt Kathleen Hardy","type":"Role","_key":"21409","_from":"15662","_to":"15659"} +{"$label":"ACTS_IN","name":"Dead Body","type":"Role","_key":"21408","_from":"15661","_to":"15659"} +{"$label":"DIRECTED","_key":"21405","_from":"15660","_to":"15659"} +{"$label":"DIRECTED","_key":"37482","_from":"15660","_to":"25394"} +{"$label":"DIRECTED","_key":"37464","_from":"15660","_to":"25390"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37472","_from":"15660","_to":"25394"} +{"$label":"ACTS_IN","name":"TV Director","type":"Role","_key":"101200","_from":"15662","_to":"59608"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"21422","_from":"15672","_to":"15664"} +{"$label":"ACTS_IN","name":"Mrs. Hudson","type":"Role","_key":"21421","_from":"15671","_to":"15664"} +{"$label":"ACTS_IN","name":"Adam Gilflower","type":"Role","_key":"21420","_from":"15670","_to":"15664"} +{"$label":"ACTS_IN","name":"Insp. Lestrade","type":"Role","_key":"21418","_from":"15669","_to":"15664"} +{"$label":"ACTS_IN","name":"Norman Locke","type":"Role","_key":"21417","_from":"15668","_to":"15664"} +{"$label":"ACTS_IN","name":"Adrea Spedding","type":"Role","_key":"21416","_from":"15667","_to":"15664"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"21414","_from":"15666","_to":"15664"} +{"$label":"DIRECTED","_key":"21413","_from":"15665","_to":"15664"} +{"$label":"DIRECTED","_key":"117202","_from":"15665","_to":"68947"} +{"$label":"DIRECTED","_key":"25497","_from":"15665","_to":"18381"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"117197","_from":"15666","_to":"68947"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"112379","_from":"15666","_to":"66350"} +{"$label":"ACTS_IN","name":"Levasseur","type":"Role","_key":"110425","_from":"15666","_to":"65236"} +{"$label":"ACTS_IN","name":"Narrator (segment \"The Wind in the Willows\")","type":"Role","_key":"94627","_from":"15666","_to":"55755"} +{"$label":"ACTS_IN","name":"Sir Ravenhurst","type":"Role","_key":"72296","_from":"15666","_to":"43672"} +{"$label":"ACTS_IN","name":"Sir Guy of Gisbourne","type":"Role","_key":"66628","_from":"15666","_to":"41182"} +{"$label":"ACTS_IN","name":"Andre Trochard","type":"Role","_key":"40966","_from":"15666","_to":"27561"} +{"$label":"ACTS_IN","name":"Baron Wolf von Frankenstein","type":"Role","_key":"25510","_from":"15666","_to":"18386"} +{"$label":"ACTS_IN","name":"Mrs. Hammond","type":"Role","_key":"113986","_from":"15667","_to":"67129"} +{"$label":"ACTS_IN","name":"Insp. Owen","type":"Role","_key":"25503","_from":"15669","_to":"18381"} +{"$label":"ACTS_IN","name":"Bassick","type":"Role","_key":"112387","_from":"15670","_to":"66350"} +{"$label":"ACTS_IN","name":"Eric Vaughn","type":"Role","_key":"29001","_from":"15670","_to":"20702"} +{"$label":"ACTS_IN","name":"Montgomery","type":"Role","_key":"25122","_from":"15670","_to":"18145"} +{"$label":"ACTS_IN","name":"Mom McCorkle","type":"Role","_key":"117173","_from":"15671","_to":"68933"} +{"$label":"ACTS_IN","name":"Mrs. Hudson","type":"Role","_key":"112389","_from":"15671","_to":"66350"} +{"$label":"ACTS_IN","name":"Danny Gateson","type":"Role","_key":"29398","_from":"15672","_to":"20861"} +{"$label":"ACTS_IN","name":"Nicola","type":"Role","_key":"21437","_from":"15681","_to":"15673"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"21436","_from":"15680","_to":"15673"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"21435","_from":"15679","_to":"15673"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"21433","_from":"15678","_to":"15673"} +{"$label":"ACTS_IN","name":"Psiquiatra","type":"Role","_key":"21431","_from":"15677","_to":"15673"} +{"$label":"ACTS_IN","name":"Chica pelo rojo","type":"Role","_key":"21430","_from":"15676","_to":"15673"} +{"$label":"ACTS_IN","name":"Chica pelo azul","type":"Role","_key":"21429","_from":"15675","_to":"15673"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"21426","_from":"15674","_to":"15673"} +{"$label":"ACTS_IN","name":"Candela","type":"Role","_key":"30088","_from":"15674","_to":"21209"} +{"$label":"ACTS_IN","name":"M\u00e9dico","type":"Role","_key":"21630","_from":"15674","_to":"15811"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"91642","_from":"15677","_to":"54038"} +{"$label":"ACTS_IN","name":"Taschendieb","type":"Role","_key":"21482","_from":"15716","_to":"15682"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"21481","_from":"15715","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21480","_from":"15714","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21479","_from":"15713","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21478","_from":"15712","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21477","_from":"15711","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21476","_from":"15710","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21475","_from":"15709","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21474","_from":"15708","_to":"15682"} +{"$label":"ACTS_IN","name":"Einwohner von Bethlehem","type":"Role","_key":"21473","_from":"15707","_to":"15682"} +{"$label":"ACTS_IN","name":"Schafhirte","type":"Role","_key":"21471","_from":"15706","_to":"15682"} +{"$label":"ACTS_IN","name":"R\u00f6mischer Wachsoldat","type":"Role","_key":"21470","_from":"15705","_to":"15682"} +{"$label":"ACTS_IN","name":"R\u00f6mischer Soldat Steuereinnahme","type":"Role","_key":"21469","_from":"15704","_to":"15682"} +{"$label":"ACTS_IN","name":"Die Mutter des entf\u00fchrten M\u00e4dchens","type":"Role","_key":"21468","_from":"15703","_to":"15682"} +{"$label":"ACTS_IN","name":"Das entf\u00fchrte M\u00e4dchen","type":"Role","_key":"21466","_from":"15702","_to":"15682"} +{"$label":"ACTS_IN","name":"Stra\u00dfenprediger","type":"Role","_key":"21465","_from":"15701","_to":"15682"} +{"$label":"ACTS_IN","name":"Wahrsagerin","type":"Role","_key":"21464","_from":"15700","_to":"15682"} +{"$label":"ACTS_IN","name":"Hebamme","type":"Role","_key":"21463","_from":"15699","_to":"15682"} +{"$label":"ACTS_IN","name":"Cousine der Elisabeth","type":"Role","_key":"21462","_from":"15698","_to":"15682"} +{"$label":"ACTS_IN","name":"Tante der Elisabeth","type":"Role","_key":"21461","_from":"15697","_to":"15682"} +{"$label":"ACTS_IN","name":"Architekt des Herodes","type":"Role","_key":"21460","_from":"15696","_to":"15682"} +{"$label":"ACTS_IN","name":"Steuereinnehmer","type":"Role","_key":"21459","_from":"15695","_to":"15682"} +{"$label":"ACTS_IN","name":"Steuereinnehmer","type":"Role","_key":"21458","_from":"15694","_to":"15682"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"21457","_from":"15693","_to":"15682"} +{"$label":"ACTS_IN","name":"Hoherpriester","type":"Role","_key":"21456","_from":"15692","_to":"15682"} +{"$label":"ACTS_IN","name":"Marias Freundin","type":"Role","_key":"21455","_from":"15691","_to":"15682"} +{"$label":"ACTS_IN","name":"Marias Freundin","type":"Role","_key":"21454","_from":"15690","_to":"15682"} +{"$label":"ACTS_IN","name":"Tero","type":"Role","_key":"21453","_from":"15689","_to":"15682"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"21452","_from":"15688","_to":"15682"} +{"$label":"ACTS_IN","name":"Herodes Antipas","type":"Role","_key":"21451","_from":"15687","_to":"15682"} +{"$label":"ACTS_IN","name":"Kaspar","type":"Role","_key":"21450","_from":"15686","_to":"15682"} +{"$label":"ACTS_IN","name":"Zacharias","type":"Role","_key":"21446","_from":"15685","_to":"15682"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"21441","_from":"15684","_to":"15682"} +{"$label":"DIRECTED","_key":"21439","_from":"15683","_to":"15682"} +{"$label":"DIRECTED","_key":"67360","_from":"15683","_to":"41513"} +{"$label":"DIRECTED","_key":"56800","_from":"15683","_to":"36065"} +{"$label":"DIRECTED","_key":"51734","_from":"15683","_to":"33761"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"92351","_from":"15684","_to":"54502"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"93397","_from":"15685","_to":"55005"} +{"$label":"ACTS_IN","name":"Stadtstreicher","type":"Role","_key":"63724","_from":"15685","_to":"39839"} +{"$label":"ACTS_IN","name":"Keown","type":"Role","_key":"47141","_from":"15685","_to":"31080"} +{"$label":"ACTS_IN","name":"Le ministre \u00e9gyptien","type":"Role","_key":"103379","_from":"15689","_to":"60813"} +{"$label":"ACTS_IN","name":"Fahad","type":"Role","_key":"71816","_from":"15689","_to":"43461"} +{"$label":"ACTS_IN","name":"Amajar","type":"Role","_key":"30713","_from":"15689","_to":"21541"} +{"$label":"ACTS_IN","name":"Largo Winch","type":"Role","_key":"100043","_from":"15695","_to":"59019"} +{"$label":"ACTS_IN","name":"Titon","type":"Role","_key":"23031","_from":"15705","_to":"16697"} +{"$label":"ACTS_IN","name":"Dr. Kramer","type":"Role","_key":"37200","_from":"15706","_to":"25199"} +{"$label":"ACTS_IN","name":"Karl Heinz","type":"Role","_key":"25890","_from":"15707","_to":"18633"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"97891","_from":"15715","_to":"57658"} +{"$label":"DIRECTED","_key":"21496","_from":"15729","_to":"15717"} +{"$label":"ACTS_IN","name":"Notaire","type":"Role","_key":"21495","_from":"15728","_to":"15717"} +{"$label":"ACTS_IN","name":"Jos\u00e9pha","type":"Role","_key":"21494","_from":"15727","_to":"15717"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"21493","_from":"15726","_to":"15717"} +{"$label":"ACTS_IN","name":"Jean-Paul","type":"Role","_key":"21492","_from":"15725","_to":"15717"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"21491","_from":"15724","_to":"15717"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"21490","_from":"15723","_to":"15717"} +{"$label":"ACTS_IN","name":"Solange","type":"Role","_key":"21489","_from":"15722","_to":"15717"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"21488","_from":"15721","_to":"15717"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"21487","_from":"15720","_to":"15717"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"21486","_from":"15719","_to":"15717"} +{"$label":"ACTS_IN","name":"Pierre Jalamet","type":"Role","_key":"21484","_from":"15718","_to":"15717"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"34384","_from":"15718","_to":"23576"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33809","_from":"15719","_to":"23298"} +{"$label":"ACTS_IN","name":"Mauve","type":"Role","_key":"29946","_from":"15719","_to":"21159"} +{"$label":"ACTS_IN","name":"Insp. Bricard","type":"Role","_key":"49647","_from":"15720","_to":"32488"} +{"$label":"ACTS_IN","name":"Man who kills himself","type":"Role","_key":"33604","_from":"15720","_to":"23212"} +{"$label":"ACTS_IN","name":"F\u00e9lix","type":"Role","_key":"91195","_from":"15724","_to":"53783"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Lorbach","type":"Role","_key":"37916","_from":"15724","_to":"25672"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"24200","_from":"15724","_to":"17530"} +{"$label":"DIRECTED","_key":"30010","_from":"15729","_to":"21177"} +{"$label":"DIRECTED","_key":"21502","_from":"15735","_to":"15730"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"21501","_from":"15734","_to":"15730"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"21500","_from":"15733","_to":"15730"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"21499","_from":"15732","_to":"15730"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"21497","_from":"15731","_to":"15730"} +{"$label":"ACTS_IN","name":"German Colonel at Meurice Restaurant","type":"Role","_key":"34400","_from":"15731","_to":"23576"} +{"$label":"ACTS_IN","name":"N\u00e9rac","type":"Role","_key":"34085","_from":"15731","_to":"23422"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"33804","_from":"15731","_to":"23298"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33580","_from":"15731","_to":"23204"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"30602","_from":"15731","_to":"21501"} +{"$label":"ACTS_IN","name":"Client Daniela","type":"Role","_key":"35835","_from":"15732","_to":"24328"} +{"$label":"ACTS_IN","name":"le jeune inspecteur","type":"Role","_key":"34047","_from":"15732","_to":"23410"} +{"$label":"ACTS_IN","name":"l'orateur r\u00e9bublicain","type":"Role","_key":"30729","_from":"15732","_to":"21545"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"29943","_from":"15732","_to":"21159"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"29930","_from":"15732","_to":"21152"} +{"$label":"ACTS_IN","name":"Sixte","type":"Role","_key":"22674","_from":"15732","_to":"16453"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Gassot","type":"Role","_key":"34051","_from":"15735","_to":"23410"} +{"$label":"ACTS_IN","name":"Jourdan","type":"Role","_key":"33982","_from":"15735","_to":"23383"} +{"$label":"ACTS_IN","name":"Girbal","type":"Role","_key":"27124","_from":"15735","_to":"19519"} +{"$label":"DIRECTED","_key":"21509","_from":"15739","_to":"15736"} +{"$label":"ACTS_IN","name":"Concierge","type":"Role","_key":"21508","_from":"15738","_to":"15736"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"21507","_from":"15737","_to":"15736"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Themroc","type":"Role","_key":"45713","_from":"15738","_to":"30252"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33588","_from":"15738","_to":"23204"} +{"$label":"ACTS_IN","name":"Grand-m\u00e8re","type":"Role","_key":"23737","_from":"15738","_to":"17206"} +{"$label":"ACTS_IN","name":"Thom","type":"Role","_key":"21516","_from":"15743","_to":"15740"} +{"$label":"ACTS_IN","name":"Virginia Slim","type":"Role","_key":"21513","_from":"15742","_to":"15740"} +{"$label":"ACTS_IN","name":"Marlboro","type":"Role","_key":"21511","_from":"15741","_to":"15740"} +{"$label":"ACTS_IN","name":"Harry Madox","type":"Role","_key":"102179","_from":"15741","_to":"60132"} +{"$label":"ACTS_IN","name":"David Simms","type":"Role","_key":"63565","_from":"15741","_to":"39781"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"39178","_from":"15741","_to":"26480"} +{"$label":"ACTS_IN","name":"Jerry Beck","type":"Role","_key":"34802","_from":"15741","_to":"23785"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"34746","_from":"15741","_to":"23755"} +{"$label":"ACTS_IN","name":"David Edgar Greenhill","type":"Role","_key":"34741","_from":"15741","_to":"23754"} +{"$label":"ACTS_IN","name":"Stanley Cole","type":"Role","_key":"24733","_from":"15741","_to":"17888"} +{"$label":"ACTS_IN","name":"Penny Hunter","type":"Role","_key":"101759","_from":"15742","_to":"59885"} +{"$label":"ACTS_IN","name":"Teela","type":"Role","_key":"71287","_from":"15742","_to":"43245"} +{"$label":"ACTS_IN","name":"Sarah Hallenbeck","type":"Role","_key":"53091","_from":"15742","_to":"34363"} +{"$label":"ACTS_IN","name":"Wendy Robertson","type":"Role","_key":"36556","_from":"15742","_to":"24784"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"31013","_from":"15742","_to":"21717"} +{"$label":"ACTS_IN","name":"Tr\u00fcffelj\u00e4ger","type":"Role","_key":"21536","_from":"15750","_to":"15744"} +{"$label":"ACTS_IN","name":"Glenstorm","type":"Role","_key":"21534","_from":"15749","_to":"15744"} +{"$label":"ACTS_IN","name":"Asterius","type":"Role","_key":"21533","_from":"15748","_to":"15744"} +{"$label":"ACTS_IN","name":"Doktor Cornelius","type":"Role","_key":"21528","_from":"15747","_to":"15744"} +{"$label":"ACTS_IN","name":"Queen Prunaprismia","type":"Role","_key":"21525","_from":"15746","_to":"15744"} +{"$label":"ACTS_IN","name":"Prince Caspian","type":"Role","_key":"21519","_from":"15745","_to":"15744"} +{"$label":"ACTS_IN","name":"Cobakka","type":"Role","_key":"111309","_from":"15745","_to":"65737"} +{"$label":"ACTS_IN","name":"John Whittaker","type":"Role","_key":"110386","_from":"15745","_to":"65225"} +{"$label":"ACTS_IN","name":"Caspian","type":"Role","_key":"61200","_from":"15745","_to":"38660"} +{"$label":"ACTS_IN","name":"Escolastica","type":"Role","_key":"44512","_from":"15746","_to":"29642"} +{"$label":"ACTS_IN","name":"Roussillon","type":"Role","_key":"31197","_from":"15747","_to":"21829"} +{"$label":"ACTS_IN","name":"Madame Moitessier's Father","type":"Role","_key":"25894","_from":"15747","_to":"18633"} +{"$label":"ACTS_IN","name":"Tavros the Minotaur","type":"Role","_key":"61198","_from":"15748","_to":"38660"} +{"$label":"ACTS_IN","name":"Dongoro","type":"Role","_key":"90094","_from":"15749","_to":"53283"} +{"$label":"ACTS_IN","name":"Thief Taker General Chance","type":"Role","_key":"62914","_from":"15750","_to":"39519"} +{"$label":"ACTS_IN","name":"Detective Inspector McCall","type":"Role","_key":"57828","_from":"15750","_to":"36604"} +{"$label":"ACTS_IN","name":"Dalfonso","type":"Role","_key":"55544","_from":"15750","_to":"35377"} +{"$label":"ACTS_IN","name":"Turner","type":"Role","_key":"27536","_from":"15750","_to":"19754"} +{"$label":"DIRECTED","_key":"21555","_from":"15758","_to":"15752"} +{"$label":"ACTS_IN","name":"Timot\u00e9a","type":"Role","_key":"21554","_from":"15757","_to":"15752"} +{"$label":"ACTS_IN","name":"Siro","type":"Role","_key":"21553","_from":"15756","_to":"15752"} +{"$label":"ACTS_IN","name":"Sostrata","type":"Role","_key":"21552","_from":"15755","_to":"15752"} +{"$label":"ACTS_IN","name":"Ligurio","type":"Role","_key":"21551","_from":"15754","_to":"15752"} +{"$label":"ACTS_IN","name":"Nicia","type":"Role","_key":"21550","_from":"15753","_to":"15752"} +{"$label":"ACTS_IN","name":"le chef des eunuques","type":"Role","_key":"26068","_from":"15753","_to":"18729"} +{"$label":"ACTS_IN","name":"un inspecteur","type":"Role","_key":"33964","_from":"15754","_to":"23371"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"32085","_from":"15755","_to":"22350"} +{"$label":"ACTS_IN","name":"la fille Gillenormand","type":"Role","_key":"31625","_from":"15755","_to":"22071"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"21919","_from":"15756","_to":"16008"} +{"$label":"ACTS_IN","name":"commissaire-priseur","type":"Role","_key":"34352","_from":"15757","_to":"23558"} +{"$label":"DIRECTED","_key":"21564","_from":"15767","_to":"15759"} +{"$label":"ACTS_IN","name":"Hermine","type":"Role","_key":"21563","_from":"15766","_to":"15759"} +{"$label":"ACTS_IN","name":"Jericho","type":"Role","_key":"21562","_from":"15765","_to":"15759"} +{"$label":"ACTS_IN","name":"Monteray","type":"Role","_key":"21561","_from":"15764","_to":"15759"} +{"$label":"ACTS_IN","name":"Pierre-Fran\u00e7ois Lacenaire","type":"Role","_key":"21560","_from":"15763","_to":"15759"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"21559","_from":"15762","_to":"15759"} +{"$label":"ACTS_IN","name":"Baptiste","type":"Role","_key":"21557","_from":"15761","_to":"15759"} +{"$label":"ACTS_IN","name":"Garance","type":"Role","_key":"21556","_from":"15760","_to":"15759"} +{"$label":"ACTS_IN","name":"la m\u00e8re d'Albert","type":"Role","_key":"34599","_from":"15760","_to":"23684"} +{"$label":"ACTS_IN","name":"Dr. Cordelier \/ Opale","type":"Role","_key":"25075","_from":"15761","_to":"18116"} +{"$label":"ACTS_IN","name":"la mort","type":"Role","_key":"32670","_from":"15762","_to":"22696"} +{"$label":"ACTS_IN","name":"Madame Morin","type":"Role","_key":"49608","_from":"15766","_to":"32469"} +{"$label":"ACTS_IN","name":"Naria","type":"Role","_key":"33778","_from":"15766","_to":"23281"} +{"$label":"DIRECTED","_key":"88445","_from":"15767","_to":"52428"} +{"$label":"DIRECTED","_key":"31362","_from":"15767","_to":"21929"} +{"$label":"DIRECTED","_key":"21573","_from":"15773","_to":"15768"} +{"$label":"ACTS_IN","name":"Mouchy Messina","type":"Role","_key":"21572","_from":"15772","_to":"15768"} +{"$label":"ACTS_IN","name":"Bouly","type":"Role","_key":"21570","_from":"15771","_to":"15768"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"21569","_from":"15770","_to":"15768"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"21566","_from":"15769","_to":"15768"} +{"$label":"ACTS_IN","name":"Eudes","type":"Role","_key":"33368","_from":"15769","_to":"23104"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"31532","_from":"15769","_to":"22027"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"28419","_from":"15769","_to":"20326"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"48640","_from":"15770","_to":"31906"} +{"$label":"ACTS_IN","name":"Ludovic","type":"Role","_key":"38043","_from":"15771","_to":"25743"} +{"$label":"ACTS_IN","name":"le costaud","type":"Role","_key":"38007","_from":"15771","_to":"25724"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"33344","_from":"15771","_to":"23092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33354","_from":"15772","_to":"23096"} +{"$label":"ACTS_IN","name":"Antoinette","type":"Role","_key":"29932","_from":"15772","_to":"21152"} +{"$label":"DIRECTED","_key":"116859","_from":"15773","_to":"68795"} +{"$label":"DIRECTED","_key":"91225","_from":"15773","_to":"53793"} +{"$label":"DIRECTED","_key":"91218","_from":"15773","_to":"53789"} +{"$label":"DIRECTED","_key":"87963","_from":"15773","_to":"52233"} +{"$label":"DIRECTED","_key":"66868","_from":"15773","_to":"41293"} +{"$label":"DIRECTED","_key":"63174","_from":"15773","_to":"39624"} +{"$label":"ACTS_IN","name":"Mi\u00f1\u00f3ns Frau","type":"Role","_key":"21592","_from":"15786","_to":"15774"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"21591","_from":"15785","_to":"15774"} +{"$label":"ACTS_IN","name":"Concha","type":"Role","_key":"21590","_from":"15784","_to":"15774"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"21589","_from":"15783","_to":"15774"} +{"$label":"ACTS_IN","name":"\u00c1ngelas Onkel","type":"Role","_key":"21588","_from":"15782","_to":"15774"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"21587","_from":"15781","_to":"15774"} +{"$label":"ACTS_IN","name":"Ulloa","type":"Role","_key":"21586","_from":"15780","_to":"15774"} +{"$label":"ACTS_IN","name":"Mi\u00f1\u00f3n","type":"Role","_key":"21585","_from":"15779","_to":"15774"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"21584","_from":"15778","_to":"15774"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"21583","_from":"15777","_to":"15774"} +{"$label":"ACTS_IN","name":"Mari","type":"Role","_key":"21579","_from":"15776","_to":"15774"} +{"$label":"DIRECTED","_key":"21575","_from":"15775","_to":"15774"} +{"$label":"ACTS_IN","name":"Ni\u00f1a","type":"Role","_key":"21923","_from":"15776","_to":"16014"} +{"$label":"ACTS_IN","name":"Smart","type":"Role","_key":"51809","_from":"15780","_to":"33807"} +{"$label":"ACTS_IN","name":"Periodista","type":"Role","_key":"21634","_from":"15786","_to":"15811"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"21598","_from":"15788","_to":"15787"} +{"$label":"ACTS_IN","name":"Shirley MacFarrell","type":"Role","_key":"71616","_from":"15788","_to":"43374"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"40689","_from":"15788","_to":"27383"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"32702","_from":"15788","_to":"22714"} +{"$label":"ACTS_IN","name":"Chief Insp. Wong Kai-fat","type":"Role","_key":"21612","_from":"15800","_to":"15789"} +{"$label":"ACTS_IN","name":"Diamond Dealer","type":"Role","_key":"21611","_from":"15799","_to":"15789"} +{"$label":"ACTS_IN","name":"Negotiator Hui","type":"Role","_key":"21610","_from":"15798","_to":"15789"} +{"$label":"ACTS_IN","name":"Cop of Bank","type":"Role","_key":"21609","_from":"15797","_to":"15789"} +{"$label":"ACTS_IN","name":"Head of Interpol","type":"Role","_key":"21608","_from":"15796","_to":"15789"} +{"$label":"ACTS_IN","name":"Suet","type":"Role","_key":"21607","_from":"15795","_to":"15789"} +{"$label":"ACTS_IN","name":"Baldy","type":"Role","_key":"21606","_from":"15794","_to":"15789"} +{"$label":"ACTS_IN","name":"Girl on Minni Bus","type":"Role","_key":"21605","_from":"15793","_to":"15789"} +{"$label":"ACTS_IN","name":"Insp. Ho Sheung Sang","type":"Role","_key":"21604","_from":"15792","_to":"15789"} +{"$label":"ACTS_IN","name":"Cheung","type":"Role","_key":"21603","_from":"15791","_to":"15789"} +{"$label":"DIRECTED","_key":"21602","_from":"15790","_to":"15789"} +{"$label":"DIRECTED","_key":"117999","_from":"15790","_to":"69361"} +{"$label":"DIRECTED","_key":"117332","_from":"15790","_to":"69005"} +{"$label":"DIRECTED","_key":"103108","_from":"15790","_to":"60647"} +{"$label":"DIRECTED","_key":"98122","_from":"15790","_to":"57774"} +{"$label":"DIRECTED","_key":"96783","_from":"15790","_to":"56921"} +{"$label":"DIRECTED","_key":"90162","_from":"15790","_to":"53306"} +{"$label":"DIRECTED","_key":"54819","_from":"15790","_to":"35073"} +{"$label":"DIRECTED","_key":"46572","_from":"15790","_to":"30764"} +{"$label":"ACTS_IN","name":"Lau \/ Boss Lee","type":"Role","_key":"117404","_from":"15791","_to":"69054"} +{"$label":"ACTS_IN","name":"Tide","type":"Role","_key":"115786","_from":"15791","_to":"68169"} +{"$label":"ACTS_IN","name":"Lin Quin","type":"Role","_key":"109739","_from":"15791","_to":"64808"} +{"$label":"ACTS_IN","name":"Michael Chan \/ Little Knife \/ Dagger","type":"Role","_key":"108413","_from":"15791","_to":"64096"} +{"$label":"ACTS_IN","name":"Ge Li","type":"Role","_key":"101839","_from":"15791","_to":"59938"} +{"$label":"ACTS_IN","name":"Zhao Zilong","type":"Role","_key":"100697","_from":"15791","_to":"59376"} +{"$label":"ACTS_IN","name":"Cao Er-Hu","type":"Role","_key":"99992","_from":"15791","_to":"58993"} +{"$label":"ACTS_IN","name":"Inspector Lau Kin Ming","type":"Role","_key":"99560","_from":"15791","_to":"58693"} +{"$label":"ACTS_IN","name":"Inspector Lau Kin Ming","type":"Role","_key":"65699","_from":"15791","_to":"40692"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59853","_from":"15791","_to":"37785"} +{"$label":"ACTS_IN","name":"Lok Tok-Wah","type":"Role","_key":"54814","_from":"15791","_to":"35073"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"54617","_from":"15791","_to":"34983"} +{"$label":"ACTS_IN","name":"Inspector Chan Kwai Bun (as Lau Ching Wan)","type":"Role","_key":"98124","_from":"15792","_to":"57774"} +{"$label":"ACTS_IN","name":"Inspector 'Rock' Shek Wai-Ho (as Lau Ching Wan)","type":"Role","_key":"54006","_from":"15792","_to":"34741"} +{"$label":"ACTS_IN","name":"Hattori","type":"Role","_key":"117037","_from":"15794","_to":"68879"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"72707","_from":"15794","_to":"43813"} +{"$label":"ACTS_IN","name":"Lok","type":"Role","_key":"118004","_from":"15795","_to":"69361"} +{"$label":"ACTS_IN","name":"Big Head (as Lam Suet)","type":"Role","_key":"117330","_from":"15795","_to":"69005"} +{"$label":"ACTS_IN","name":"Big Head (as Lam Suet)","type":"Role","_key":"103105","_from":"15795","_to":"60647"} +{"$label":"ACTS_IN","name":"Fatso - Ko's Inner Personality (as Lam Suet)","type":"Role","_key":"98132","_from":"15795","_to":"57774"} +{"$label":"ACTS_IN","name":"Fat (as Lam Suet)","type":"Role","_key":"96782","_from":"15795","_to":"56921"} +{"$label":"ACTS_IN","name":"Yip","type":"Role","_key":"90161","_from":"15795","_to":"53306"} +{"$label":"ACTS_IN","name":"Lung","type":"Role","_key":"46579","_from":"15795","_to":"30764"} +{"$label":"DIRECTED","_key":"29056","_from":"15799","_to":"20721"} +{"$label":"ACTS_IN","name":"Hoi","type":"Role","_key":"90160","_from":"15800","_to":"53306"} +{"$label":"ACTS_IN","name":"Deer Tai","type":"Role","_key":"60823","_from":"15800","_to":"38419"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"21623","_from":"15809","_to":"15801"} +{"$label":"ACTS_IN","name":"Caitlin Parks","type":"Role","_key":"21622","_from":"15808","_to":"15801"} +{"$label":"ACTS_IN","name":"Richard Mecks","type":"Role","_key":"21621","_from":"15807","_to":"15801"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"21620","_from":"15806","_to":"15801"} +{"$label":"ACTS_IN","name":"Jack Calloway","type":"Role","_key":"21619","_from":"15805","_to":"15801"} +{"$label":"ACTS_IN","name":"Beth Hooper","type":"Role","_key":"21618","_from":"15804","_to":"15801"} +{"$label":"ACTS_IN","name":"Cordella Calloway","type":"Role","_key":"21616","_from":"15803","_to":"15801"} +{"$label":"DIRECTED","_key":"21613","_from":"15802","_to":"15801"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"102959","_from":"15803","_to":"60559"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"62713","_from":"15803","_to":"39429"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"70537","_from":"15804","_to":"42930"} +{"$label":"ACTS_IN","name":"Lord Osric of Crossley","type":"Role","_key":"63536","_from":"15809","_to":"39772"} +{"$label":"ACTS_IN","name":"Vortgyn","type":"Role","_key":"55885","_from":"15809","_to":"35542"} +{"$label":"ACTS_IN","name":"Gitano joven","type":"Role","_key":"21654","_from":"15834","_to":"15811"} +{"$label":"ACTS_IN","name":"Gitano viejo","type":"Role","_key":"21653","_from":"15833","_to":"15811"} +{"$label":"ACTS_IN","name":"Guarda jurado","type":"Role","_key":"21652","_from":"15832","_to":"15811"} +{"$label":"ACTS_IN","name":"Farmac\u00e9utico","type":"Role","_key":"21651","_from":"15831","_to":"15811"} +{"$label":"ACTS_IN","name":"Enfermera","type":"Role","_key":"21650","_from":"15830","_to":"15811"} +{"$label":"ACTS_IN","name":"Camello","type":"Role","_key":"21649","_from":"15829","_to":"15811"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"21648","_from":"15828","_to":"15811"} +{"$label":"ACTS_IN","name":"Hermano de Lola","type":"Role","_key":"21646","_from":"15827","_to":"15811"} +{"$label":"ACTS_IN","name":"Hija de Lola","type":"Role","_key":"21645","_from":"15826","_to":"15811"} +{"$label":"ACTS_IN","name":"Madre de Marina","type":"Role","_key":"21644","_from":"15825","_to":"15811"} +{"$label":"ACTS_IN","name":"Dependiente bomboner\u00eda","type":"Role","_key":"21643","_from":"15824","_to":"15811"} +{"$label":"ACTS_IN","name":"Bailarina tango","type":"Role","_key":"21642","_from":"15823","_to":"15811"} +{"$label":"ACTS_IN","name":"Bailar\u00edn tango","type":"Role","_key":"21641","_from":"15822","_to":"15811"} +{"$label":"ACTS_IN","name":"Montadora","type":"Role","_key":"21640","_from":"15821","_to":"15811"} +{"$label":"ACTS_IN","name":"Anciano psiqui\u00e1trico","type":"Role","_key":"21639","_from":"15820","_to":"15811"} +{"$label":"ACTS_IN","name":"Productor","type":"Role","_key":"21638","_from":"15819","_to":"15811"} +{"$label":"ACTS_IN","name":"Farmac\u00e9utica","type":"Role","_key":"21637","_from":"15818","_to":"15811"} +{"$label":"ACTS_IN","name":"Fantasma","type":"Role","_key":"21636","_from":"15817","_to":"15811"} +{"$label":"ACTS_IN","name":"Decorador","type":"Role","_key":"21635","_from":"15816","_to":"15811"} +{"$label":"ACTS_IN","name":"Directora psiqui\u00e1trico","type":"Role","_key":"21633","_from":"15815","_to":"15811"} +{"$label":"ACTS_IN","name":"Camello en Vespa","type":"Role","_key":"21631","_from":"15814","_to":"15811"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"21629","_from":"15813","_to":"15811"} +{"$label":"ACTS_IN","name":"Marina Osorio","type":"Role","_key":"21626","_from":"15812","_to":"15811"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"121765","_from":"15812","_to":"71533"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"118041","_from":"15812","_to":"69385"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"110832","_from":"15812","_to":"65471"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"67117","_from":"15812","_to":"41421"} +{"$label":"ACTS_IN","name":"Andrea Caracortada","type":"Role","_key":"48560","_from":"15812","_to":"31865"} +{"$label":"ACTS_IN","name":"Loli","type":"Role","_key":"32032","_from":"15812","_to":"22318"} +{"$label":"ACTS_IN","name":"Fifo","type":"Role","_key":"30200","_from":"15812","_to":"21280"} +{"$label":"ACTS_IN","name":"Abadesa Julia","type":"Role","_key":"48522","_from":"15813","_to":"31846"} +{"$label":"ACTS_IN","name":"Berta","type":"Role","_key":"47849","_from":"15813","_to":"31496"} +{"$label":"ACTS_IN","name":"Actriz","type":"Role","_key":"32162","_from":"15813","_to":"22417"} +{"$label":"ACTS_IN","name":"Luc\u00eda","type":"Role","_key":"30087","_from":"15813","_to":"21209"} +{"$label":"ACTS_IN","name":"Blind Woman","type":"Role","_key":"102995","_from":"15814","_to":"60579"} +{"$label":"ACTS_IN","name":"Juana","type":"Role","_key":"48562","_from":"15814","_to":"31865"} +{"$label":"ACTS_IN","name":"Julieta","type":"Role","_key":"48182","_from":"15814","_to":"31649"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"30910","_from":"15814","_to":"21662"} +{"$label":"ACTS_IN","name":"Marisa","type":"Role","_key":"30089","_from":"15814","_to":"21209"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"28146","_from":"15814","_to":"20177"} +{"$label":"ACTS_IN","name":"Do\u00f1a Paquita","type":"Role","_key":"48569","_from":"15825","_to":"31865"} +{"$label":"ACTS_IN","name":"Clienta odontologo","type":"Role","_key":"48555","_from":"15825","_to":"31857"} +{"$label":"ACTS_IN","name":"Brieftr\u00e4ger","type":"Role","_key":"48539","_from":"15831","_to":"31846"} +{"$label":"ACTS_IN","name":"Hombre que pide a Kiti su tel\u00e9fono","type":"Role","_key":"32167","_from":"15831","_to":"22417"} +{"$label":"ACTS_IN","name":"Empleado Inmobiliaria","type":"Role","_key":"30093","_from":"15831","_to":"21209"} +{"$label":"ACTS_IN","name":"Abogado","type":"Role","_key":"29530","_from":"15831","_to":"20917"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"21664","_from":"15840","_to":"15835"} +{"$label":"ACTS_IN","name":"Amalia","type":"Role","_key":"21663","_from":"15839","_to":"15835"} +{"$label":"ACTS_IN","name":"Don Luis","type":"Role","_key":"21661","_from":"15838","_to":"15835"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"21657","_from":"15837","_to":"15835"} +{"$label":"DIRECTED","_key":"21655","_from":"15836","_to":"15835"} +{"$label":"DIRECTED","_key":"32169","_from":"15836","_to":"22425"} +{"$label":"DIRECTED","_key":"21691","_from":"15857","_to":"15842"} +{"$label":"ACTS_IN","name":"Roran","type":"Role","_key":"21690","_from":"15856","_to":"15842"} +{"$label":"ACTS_IN","name":"Razac # 2","type":"Role","_key":"21689","_from":"15855","_to":"15842"} +{"$label":"ACTS_IN","name":"Razac # 1","type":"Role","_key":"21688","_from":"15854","_to":"15842"} +{"$label":"ACTS_IN","name":"Wache der Varden","type":"Role","_key":"21687","_from":"15853","_to":"15842"} +{"$label":"ACTS_IN","name":"Frau der Varden","type":"Role","_key":"21686","_from":"15852","_to":"15842"} +{"$label":"ACTS_IN","name":"Nasuada","type":"Role","_key":"21685","_from":"15851","_to":"15842"} +{"$label":"ACTS_IN","name":"Horsts Frau","type":"Role","_key":"21684","_from":"15850","_to":"15842"} +{"$label":"ACTS_IN","name":"Soldat","type":"Role","_key":"21683","_from":"15849","_to":"15842"} +{"$label":"ACTS_IN","name":"Hauptmann","type":"Role","_key":"21682","_from":"15848","_to":"15842"} +{"$label":"ACTS_IN","name":"Dorfbewohner # 2","type":"Role","_key":"21681","_from":"15847","_to":"15842"} +{"$label":"ACTS_IN","name":"Dorfbewohner # 1","type":"Role","_key":"21680","_from":"15846","_to":"15842"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"21679","_from":"15845","_to":"15842"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"21677","_from":"15844","_to":"15842"} +{"$label":"ACTS_IN","name":"Eragon","type":"Role","_key":"21667","_from":"15843","_to":"15842"} +{"$label":"ACTS_IN","name":"Myisha","type":"Role","_key":"56028","_from":"15851","_to":"35612"} +{"$label":"ACTS_IN","name":"Freya","type":"Role","_key":"48382","_from":"15851","_to":"31760"} +{"$label":"ACTS_IN","name":"Grendels Father","type":"Role","_key":"37363","_from":"15854","_to":"25321"} +{"$label":"ACTS_IN","name":"Dioneo","type":"Role","_key":"99625","_from":"15856","_to":"58736"} +{"$label":"ACTS_IN","name":"Gishir\u014d Tsukamoto","type":"Role","_key":"21697","_from":"15864","_to":"15858"} +{"$label":"ACTS_IN","name":"Sayo Kashima","type":"Role","_key":"21696","_from":"15863","_to":"15858"} +{"$label":"ACTS_IN","name":"G\u014d Kashima","type":"Role","_key":"21695","_from":"15862","_to":"15858"} +{"$label":"ACTS_IN","name":"Ry\u016brei Ashio","type":"Role","_key":"21694","_from":"15861","_to":"15858"} +{"$label":"ACTS_IN","name":"D\u014dkai","type":"Role","_key":"21693","_from":"15860","_to":"15858"} +{"$label":"ACTS_IN","name":"Yuki Kashima","type":"Role","_key":"21692","_from":"15859","_to":"15858"} +{"$label":"ACTS_IN","name":"Shurayuki-hime (Yuki Kashima)","type":"Role","_key":"117618","_from":"15859","_to":"69144"} +{"$label":"ACTS_IN","name":"Magohei 'Snake' Ohnishi","type":"Role","_key":"111198","_from":"15860","_to":"65667"} +{"$label":"ACTS_IN","name":"Magobei \"Snake\" Onishi","type":"Role","_key":"111194","_from":"15860","_to":"65665"} +{"$label":"ACTS_IN","name":"Magobei 'Snake' Onishi","type":"Role","_key":"111113","_from":"15860","_to":"65631"} +{"$label":"ACTS_IN","name":"Junai Mikoshiba","type":"Role","_key":"111193","_from":"15861","_to":"65665"} +{"$label":"ACTS_IN","name":"Ozawa Taicho","type":"Role","_key":"114264","_from":"15864","_to":"67298"} +{"$label":"ACTS_IN","name":"Niki Jumpei","type":"Role","_key":"109815","_from":"15864","_to":"64872"} +{"$label":"ACTS_IN","name":"der Japaner","type":"Role","_key":"37757","_from":"15864","_to":"25610"} +{"$label":"ACTS_IN","name":"Fezzik","type":"Role","_key":"21705","_from":"15868","_to":"15866"} +{"$label":"ACTS_IN","name":"Inigo Montoya","type":"Role","_key":"21704","_from":"15867","_to":"15866"} +{"$label":"ACTS_IN","name":"Alfred De Musset","type":"Role","_key":"114572","_from":"15867","_to":"67493"} +{"$label":"ACTS_IN","name":"Huxley","type":"Role","_key":"107117","_from":"15867","_to":"63166"} +{"$label":"ACTS_IN","name":"John Palmeri","type":"Role","_key":"95270","_from":"15867","_to":"56055"} +{"$label":"ACTS_IN","name":"Avigdor","type":"Role","_key":"62217","_from":"15867","_to":"39187"} +{"$label":"ACTS_IN","name":"Det. Samuel 'George' Francisco","type":"Role","_key":"61093","_from":"15867","_to":"38618"} +{"$label":"ACTS_IN","name":"Wombosi","type":"Role","_key":"21717","_from":"15870","_to":"15869"} +{"$label":"ACTS_IN","name":"Heavy Duty","type":"Role","_key":"102228","_from":"15870","_to":"60158"} +{"$label":"ACTS_IN","name":"Majestic","type":"Role","_key":"60071","_from":"15870","_to":"37905"} +{"$label":"ACTS_IN","name":"Kwesi","type":"Role","_key":"56027","_from":"15870","_to":"35612"} +{"$label":"ACTS_IN","name":"The Student","type":"Role","_key":"36856","_from":"15870","_to":"24987"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"27518","_from":"15870","_to":"19747"} +{"$label":"ACTS_IN","name":"Cabe Attucks","type":"Role","_key":"24505","_from":"15870","_to":"17715"} +{"$label":"DIRECTED","_key":"21719","_from":"15872","_to":"15871"} +{"$label":"DIRECTED","_key":"57227","_from":"15872","_to":"36299"} +{"$label":"DIRECTED","_key":"29621","_from":"15872","_to":"20970"} +{"$label":"DIRECTED","_key":"21728","_from":"15872","_to":"15873"} +{"$label":"ACTS_IN","name":"Desh Bouksani","type":"Role","_key":"21740","_from":"15876","_to":"15873"} +{"$label":"ACTS_IN","name":"Tom Cronin","type":"Role","_key":"21738","_from":"15875","_to":"15873"} +{"$label":"ACTS_IN","name":"Paz","type":"Role","_key":"21734","_from":"15874","_to":"15873"} +{"$label":"ACTS_IN","name":"Choco","type":"Role","_key":"58122","_from":"15874","_to":"36776"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"46821","_from":"15874","_to":"30888"} +{"$label":"ACTS_IN","name":"Joey, The Model","type":"Role","_key":"111871","_from":"15876","_to":"66042"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"21755","_from":"15890","_to":"15878"} +{"$label":"ACTS_IN","name":"Mr. Halbert","type":"Role","_key":"21754","_from":"15889","_to":"15878"} +{"$label":"ACTS_IN","name":"Miss Bailey","type":"Role","_key":"21753","_from":"15888","_to":"15878"} +{"$label":"ACTS_IN","name":"Mrs. Quayle","type":"Role","_key":"21752","_from":"15887","_to":"15878"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"21751","_from":"15886","_to":"15878"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"21750","_from":"15885","_to":"15878"} +{"$label":"ACTS_IN","name":"Jiminee","type":"Role","_key":"21748","_from":"15884","_to":"15878"} +{"$label":"ACTS_IN","name":"Dunston","type":"Role","_key":"21747","_from":"15883","_to":"15878"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"21746","_from":"15882","_to":"15878"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"21745","_from":"15881","_to":"15878"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"21744","_from":"15880","_to":"15878"} +{"$label":"DIRECTED","_key":"21742","_from":"15879","_to":"15878"} +{"$label":"DIRECTED","_key":"108948","_from":"15879","_to":"64386"} +{"$label":"DIRECTED","_key":"67464","_from":"15879","_to":"41555"} +{"$label":"ACTS_IN","name":"Flora","type":"Role","_key":"108954","_from":"15881","_to":"64386"} +{"$label":"ACTS_IN","name":"Florence Tanner","type":"Role","_key":"107879","_from":"15881","_to":"63712"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"36295","_from":"15881","_to":"24620"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"45535","_from":"15884","_to":"30154"} +{"$label":"DIRECTED","_key":"22263","_from":"15884","_to":"16202"} +{"$label":"ACTS_IN","name":"Mutter Keiko","type":"Role","_key":"21762","_from":"15898","_to":"15891"} +{"$label":"ACTS_IN","name":"Saki","type":"Role","_key":"21761","_from":"15897","_to":"15891"} +{"$label":"ACTS_IN","name":"Yuki","type":"Role","_key":"21760","_from":"15896","_to":"15891"} +{"$label":"ACTS_IN","name":"Shigeru","type":"Role","_key":"21759","_from":"15895","_to":"15891"} +{"$label":"ACTS_IN","name":"Kyoko","type":"Role","_key":"21758","_from":"15894","_to":"15891"} +{"$label":"ACTS_IN","name":"Akira","type":"Role","_key":"21757","_from":"15893","_to":"15891"} +{"$label":"DIRECTED","_key":"21756","_from":"15892","_to":"15891"} +{"$label":"DIRECTED","_key":"117870","_from":"15892","_to":"69293"} +{"$label":"DIRECTED","_key":"114477","_from":"15892","_to":"67434"} +{"$label":"DIRECTED","_key":"21840","_from":"15961","_to":"15899"} +{"$label":"ACTS_IN","name":"Herr Schmidt","type":"Role","_key":"21839","_from":"15960","_to":"15899"} +{"$label":"ACTS_IN","name":"Ulrich Graf","type":"Role","_key":"21838","_from":"15959","_to":"15899"} +{"$label":"ACTS_IN","name":"Zeitungsjunge","type":"Role","_key":"21837","_from":"15958","_to":"15899"} +{"$label":"ACTS_IN","name":"M\u00fcnchner Reporter # 2","type":"Role","_key":"21836","_from":"15957","_to":"15899"} +{"$label":"ACTS_IN","name":"Hans Ritter von Seisser","type":"Role","_key":"21835","_from":"15956","_to":"15899"} +{"$label":"ACTS_IN","name":"Reporterin beim Reichstag # 2","type":"Role","_key":"21833","_from":"15955","_to":"15899"} +{"$label":"ACTS_IN","name":"Reporter beim Reichstag # 1","type":"Role","_key":"21832","_from":"15954","_to":"15899"} +{"$label":"ACTS_IN","name":"Wiener Obdachloser","type":"Role","_key":"21831","_from":"15953","_to":"15899"} +{"$label":"ACTS_IN","name":"Reporter im Gerichtssaal","type":"Role","_key":"21830","_from":"15952","_to":"15899"} +{"$label":"ACTS_IN","name":"Herr Wolf","type":"Role","_key":"21829","_from":"15951","_to":"15899"} +{"$label":"ACTS_IN","name":"Gefangener im KZ Dachau","type":"Role","_key":"21828","_from":"15950","_to":"15899"} +{"$label":"ACTS_IN","name":"Mitarbeiter bei von Kahr","type":"Role","_key":"21827","_from":"15949","_to":"15899"} +{"$label":"ACTS_IN","name":"Leiter des Wiener Obdachlosenasyls","type":"Role","_key":"21826","_from":"15948","_to":"15899"} +{"$label":"ACTS_IN","name":"Kommunist # 2","type":"Role","_key":"21825","_from":"15947","_to":"15899"} +{"$label":"ACTS_IN","name":"Kommunist # 1","type":"Role","_key":"21824","_from":"15946","_to":"15899"} +{"$label":"ACTS_IN","name":"Mann im Bierkeller","type":"Role","_key":"21823","_from":"15945","_to":"15899"} +{"$label":"ACTS_IN","name":"Frau Schmidt","type":"Role","_key":"21822","_from":"15944","_to":"15899"} +{"$label":"ACTS_IN","name":"Zollbeamter","type":"Role","_key":"21821","_from":"15943","_to":"15899"} +{"$label":"ACTS_IN","name":"Verwundeter Soldat # 1","type":"Role","_key":"21820","_from":"15942","_to":"15899"} +{"$label":"ACTS_IN","name":"Meldeg\u00e4nger","type":"Role","_key":"21819","_from":"15941","_to":"15899"} +{"$label":"ACTS_IN","name":"Soldat im Sch\u00fctzengraben","type":"Role","_key":"21818","_from":"15940","_to":"15899"} +{"$label":"ACTS_IN","name":"Kriegshetzer","type":"Role","_key":"21817","_from":"15939","_to":"15899"} +{"$label":"ACTS_IN","name":"Julius Uhl","type":"Role","_key":"21816","_from":"15938","_to":"15899"} +{"$label":"ACTS_IN","name":"Otto von Lossow","type":"Role","_key":"21815","_from":"15937","_to":"15899"} +{"$label":"ACTS_IN","name":"Emil Maurice","type":"Role","_key":"21814","_from":"15936","_to":"15899"} +{"$label":"ACTS_IN","name":"M\u00fcnchner Reporter # 1","type":"Role","_key":"21813","_from":"15935","_to":"15899"} +{"$label":"ACTS_IN","name":"Hitlers Gef\u00e4ngnisw\u00e4rter in Landsberg","type":"Role","_key":"21812","_from":"15934","_to":"15899"} +{"$label":"ACTS_IN","name":"Baroness","type":"Role","_key":"21811","_from":"15933","_to":"15899"} +{"$label":"ACTS_IN","name":"Baron # 2","type":"Role","_key":"21810","_from":"15932","_to":"15899"} +{"$label":"ACTS_IN","name":"Baron # 1","type":"Role","_key":"21809","_from":"15931","_to":"15899"} +{"$label":"ACTS_IN","name":"Wiener B\u00fcrger","type":"Role","_key":"21808","_from":"15930","_to":"15899"} +{"$label":"ACTS_IN","name":"Rektor der Wiener Kunstakademie","type":"Role","_key":"21807","_from":"15929","_to":"15899"} +{"$label":"ACTS_IN","name":"Heinrich Hoffmann","type":"Role","_key":"21806","_from":"15928","_to":"15899"} +{"$label":"ACTS_IN","name":"M\u00fcnchner Polizist","type":"Role","_key":"21805","_from":"15927","_to":"15899"} +{"$label":"ACTS_IN","name":"Kunstprofessor","type":"Role","_key":"21804","_from":"15926","_to":"15899"} +{"$label":"ACTS_IN","name":"Sprecher der Deutschen Arbeiterpartei","type":"Role","_key":"21803","_from":"15925","_to":"15899"} +{"$label":"ACTS_IN","name":"Milit\u00e4rarzt","type":"Role","_key":"21801","_from":"15924","_to":"15899"} +{"$label":"ACTS_IN","name":"Dr. Eduard Bloch","type":"Role","_key":"21800","_from":"15923","_to":"15899"} +{"$label":"ACTS_IN","name":"Karl Lueger","type":"Role","_key":"21799","_from":"15922","_to":"15899"} +{"$label":"ACTS_IN","name":"Staatsanwalt Ludwig Stenglein","type":"Role","_key":"21797","_from":"15921","_to":"15899"} +{"$label":"ACTS_IN","name":"Richter Georg Neithardt","type":"Role","_key":"21796","_from":"15920","_to":"15899"} +{"$label":"ACTS_IN","name":"Herr M\u00fcller","type":"Role","_key":"21795","_from":"15919","_to":"15899"} +{"$label":"ACTS_IN","name":"General Kurt von Schleicher","type":"Role","_key":"21792","_from":"15918","_to":"15899"} +{"$label":"ACTS_IN","name":"Gregor Strasser","type":"Role","_key":"21791","_from":"15917","_to":"15899"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"21790","_from":"15916","_to":"15899"} +{"$label":"ACTS_IN","name":"Georg Bell","type":"Role","_key":"21789","_from":"15915","_to":"15899"} +{"$label":"ACTS_IN","name":"Franz von Papen","type":"Role","_key":"21788","_from":"15914","_to":"15899"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"21787","_from":"15913","_to":"15899"} +{"$label":"ACTS_IN","name":"Leutnant Hugo Guttmann","type":"Role","_key":"21786","_from":"15912","_to":"15899"} +{"$label":"ACTS_IN","name":"Egon Hanfstaengl","type":"Role","_key":"21785","_from":"15911","_to":"15899"} +{"$label":"ACTS_IN","name":"Alois Hitler","type":"Role","_key":"21784","_from":"15910","_to":"15899"} +{"$label":"ACTS_IN","name":"Anton Drexler","type":"Role","_key":"21783","_from":"15909","_to":"15899"} +{"$label":"ACTS_IN","name":"Der 17-j\u00e4hrige Adolf Hitler","type":"Role","_key":"21782","_from":"15908","_to":"15899"} +{"$label":"ACTS_IN","name":"Der 10-j\u00e4hrige Adolf Hitler","type":"Role","_key":"21781","_from":"15907","_to":"15899"} +{"$label":"ACTS_IN","name":"Angela Raubal","type":"Role","_key":"21780","_from":"15906","_to":"15899"} +{"$label":"ACTS_IN","name":"Friedrich Holl\u00e4nder","type":"Role","_key":"21778","_from":"15905","_to":"15899"} +{"$label":"ACTS_IN","name":"Sophie Gerlich","type":"Role","_key":"21777","_from":"15904","_to":"15899"} +{"$label":"ACTS_IN","name":"Hermann G\u00f6ring","type":"Role","_key":"21775","_from":"15903","_to":"15899"} +{"$label":"ACTS_IN","name":"Dr. Paul Joseph Goebbels","type":"Role","_key":"21774","_from":"15902","_to":"15899"} +{"$label":"ACTS_IN","name":"Eva Braun","type":"Role","_key":"21772","_from":"15901","_to":"15899"} +{"$label":"ACTS_IN","name":"Helene Hanfstaengl","type":"Role","_key":"21766","_from":"15900","_to":"15899"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"116181","_from":"15900","_to":"68405"} +{"$label":"ACTS_IN","name":"Mrs. Cubano","type":"Role","_key":"115335","_from":"15900","_to":"67904"} +{"$label":"ACTS_IN","name":"Morgaine","type":"Role","_key":"102804","_from":"15900","_to":"60475"} +{"$label":"ACTS_IN","name":"Maureen Epps","type":"Role","_key":"55247","_from":"15900","_to":"35238"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"68888","_from":"15907","_to":"42189"} +{"$label":"ACTS_IN","name":"Romulus Augustus","type":"Role","_key":"55878","_from":"15907","_to":"35542"} +{"$label":"ACTS_IN","name":"Anger","type":"Role","_key":"115342","_from":"15914","_to":"67907"} +{"$label":"ACTS_IN","name":"Funzel","type":"Role","_key":"45104","_from":"15917","_to":"29943"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"45068","_from":"15917","_to":"29929"} +{"$label":"ACTS_IN","name":"Hatach","type":"Role","_key":"22835","_from":"15918","_to":"16558"} +{"$label":"ACTS_IN","name":"Dr. Newton","type":"Role","_key":"53479","_from":"15921","_to":"34540"} +{"$label":"ACTS_IN","name":"Triumvir","type":"Role","_key":"22430","_from":"15925","_to":"16258"} +{"$label":"ACTS_IN","name":"Landowska","type":"Role","_key":"52570","_from":"15933","_to":"34166"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"68359","_from":"15935","_to":"41953"} +{"$label":"ACTS_IN","name":"Kronprinz Rudolf","type":"Role","_key":"47280","_from":"15935","_to":"31151"} +{"$label":"ACTS_IN","name":"Frank Dabroc","type":"Role","_key":"26615","_from":"15935","_to":"19123"} +{"$label":"ACTS_IN","name":"\u00dalisn\u00fd","type":"Role","_key":"41585","_from":"15960","_to":"27927"} +{"$label":"DIRECTED","_key":"114379","_from":"15961","_to":"67373"} +{"$label":"DIRECTED","_key":"105643","_from":"15961","_to":"62181"} +{"$label":"DIRECTED","_key":"103084","_from":"15961","_to":"60637"} +{"$label":"DIRECTED","_key":"90714","_from":"15961","_to":"53546"} +{"$label":"DIRECTED","_key":"72888","_from":"15961","_to":"43899"} +{"$label":"DIRECTED","_key":"69611","_from":"15961","_to":"42495"} +{"$label":"DIRECTED","_key":"52571","_from":"15961","_to":"34166"} +{"$label":"ACTS_IN","name":"K\u00f6nigin von Sodom","type":"Role","_key":"21864","_from":"15978","_to":"15962"} +{"$label":"ACTS_IN","name":"Ismael","type":"Role","_key":"21862","_from":"15977","_to":"15962"} +{"$label":"ACTS_IN","name":"Isaak","type":"Role","_key":"21861","_from":"15976","_to":"15962"} +{"$label":"ACTS_IN","name":"Lots Tochter # 2","type":"Role","_key":"21860","_from":"15975","_to":"15962"} +{"$label":"ACTS_IN","name":"Lots Tochter # 1","type":"Role","_key":"21859","_from":"15974","_to":"15962"} +{"$label":"ACTS_IN","name":"Lots Frau","type":"Role","_key":"21858","_from":"15973","_to":"15962"} +{"$label":"ACTS_IN","name":"Hagar","type":"Role","_key":"21856","_from":"15972","_to":"15962"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"21855","_from":"15971","_to":"15962"} +{"$label":"ACTS_IN","name":"Japhets Frau","type":"Role","_key":"21852","_from":"15970","_to":"15962"} +{"$label":"ACTS_IN","name":"Hams Frau","type":"Role","_key":"21851","_from":"15969","_to":"15962"} +{"$label":"ACTS_IN","name":"Sems Frau","type":"Role","_key":"21850","_from":"15968","_to":"15962"} +{"$label":"ACTS_IN","name":"Japhet","type":"Role","_key":"21849","_from":"15967","_to":"15962"} +{"$label":"ACTS_IN","name":"Ham","type":"Role","_key":"21848","_from":"15966","_to":"15962"} +{"$label":"ACTS_IN","name":"Sem","type":"Role","_key":"21847","_from":"15965","_to":"15962"} +{"$label":"ACTS_IN","name":"Noahs Frau","type":"Role","_key":"21846","_from":"15964","_to":"15962"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"21842","_from":"15963","_to":"15962"} +{"$label":"ACTS_IN","name":"Miranda Biondi","type":"Role","_key":"47335","_from":"15964","_to":"31174"} +{"$label":"ACTS_IN","name":"Guinevere","type":"Role","_key":"121581","_from":"15971","_to":"71435"} +{"$label":"ACTS_IN","name":"Miss Logan","type":"Role","_key":"115250","_from":"15971","_to":"67870"} +{"$label":"ACTS_IN","name":"Julie LaVerne","type":"Role","_key":"114102","_from":"15971","_to":"67199"} +{"$label":"ACTS_IN","name":"Maxine Faulk","type":"Role","_key":"101485","_from":"15971","_to":"59732"} +{"$label":"ACTS_IN","name":"Kitty Collins","type":"Role","_key":"101229","_from":"15971","_to":"59623"} +{"$label":"ACTS_IN","name":"Remy Royce-Graff","type":"Role","_key":"68004","_from":"15971","_to":"41786"} +{"$label":"ACTS_IN","name":"(in \"The Killers\" \/ \"The Bribe\") (archive footage)","type":"Role","_key":"53873","_from":"15971","_to":"34691"} +{"$label":"ACTS_IN","name":"Cynthia Green","type":"Role","_key":"31854","_from":"15971","_to":"22230"} +{"$label":"ACTS_IN","name":"Studentin","type":"Role","_key":"28032","_from":"15971","_to":"20091"} +{"$label":"ACTS_IN","name":"Agrippina","type":"Role","_key":"22365","_from":"15971","_to":"16258"} +{"$label":"DIRECTED","_key":"21892","_from":"15994","_to":"15979"} +{"$label":"ACTS_IN","name":"Merneftas Erzieher","type":"Role","_key":"21891","_from":"15993","_to":"15979"} +{"$label":"ACTS_IN","name":"Amram","type":"Role","_key":"21890","_from":"15992","_to":"15979"} +{"$label":"ACTS_IN","name":"Jochebet","type":"Role","_key":"21889","_from":"15991","_to":"15979"} +{"$label":"ACTS_IN","name":"Minister # 2","type":"Role","_key":"21888","_from":"15990","_to":"15979"} +{"$label":"ACTS_IN","name":"Minister # 1","type":"Role","_key":"21887","_from":"15989","_to":"15979"} +{"$label":"ACTS_IN","name":"Bote","type":"Role","_key":"21886","_from":"15988","_to":"15979"} +{"$label":"ACTS_IN","name":"Korah","type":"Role","_key":"21884","_from":"15987","_to":"15979"} +{"$label":"ACTS_IN","name":"Kaleb","type":"Role","_key":"21882","_from":"15986","_to":"15979"} +{"$label":"ACTS_IN","name":"Merneftas Frau","type":"Role","_key":"21881","_from":"15985","_to":"15979"} +{"$label":"ACTS_IN","name":"Pharao Ramses II.","type":"Role","_key":"21879","_from":"15984","_to":"15979"} +{"$label":"ACTS_IN","name":"Der junge Moses","type":"Role","_key":"21877","_from":"15983","_to":"15979"} +{"$label":"ACTS_IN","name":"Prinzessin Bithia","type":"Role","_key":"21875","_from":"15982","_to":"15979"} +{"$label":"ACTS_IN","name":"Jitro","type":"Role","_key":"21874","_from":"15981","_to":"15979"} +{"$label":"ACTS_IN","name":"Josua","type":"Role","_key":"21871","_from":"15980","_to":"15979"} +{"$label":"ACTS_IN","name":"Emir Yousef","type":"Role","_key":"91131","_from":"15980","_to":"53764"} +{"$label":"ACTS_IN","name":"Veronique Cash","type":"Role","_key":"34021","_from":"15982","_to":"23403"} +{"$label":"DIRECTED","_key":"99867","_from":"15986","_to":"58894"} +{"$label":"ACTS_IN","name":"Fabio Alberici","type":"Role","_key":"91173","_from":"15986","_to":"53776"} +{"$label":"ACTS_IN","name":"Muffa","type":"Role","_key":"66461","_from":"15986","_to":"41092"} +{"$label":"ACTS_IN","name":"Italo","type":"Role","_key":"49577","_from":"15989","_to":"32457"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"37433","_from":"15990","_to":"25362"} +{"$label":"ACTS_IN","name":"Kroll","type":"Role","_key":"39341","_from":"15992","_to":"26608"} +{"$label":"ACTS_IN","name":"Dr. Steiner","type":"Role","_key":"111964","_from":"15993","_to":"66086"} +{"$label":"ACTS_IN","name":"Hornblut","type":"Role","_key":"44334","_from":"15993","_to":"29543"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"44312","_from":"15993","_to":"29525"} +{"$label":"ACTS_IN","name":"Dr. Henry","type":"Role","_key":"38117","_from":"15993","_to":"25774"} +{"$label":"ACTS_IN","name":"Dr. John Seward","type":"Role","_key":"38084","_from":"15993","_to":"25754"} +{"$label":"ACTS_IN","name":"Dewey","type":"Role","_key":"32615","_from":"15993","_to":"22658"} +{"$label":"ACTS_IN","name":"Dr. Charles Marshall","type":"Role","_key":"26179","_from":"15993","_to":"18800"} +{"$label":"ACTS_IN","name":"Paul Dupont","type":"Role","_key":"23240","_from":"15993","_to":"16852"} +{"$label":"ACTS_IN","name":"Michel Thenier","type":"Role","_key":"21902","_from":"16002","_to":"15995"} +{"$label":"ACTS_IN","name":"Anna Ferrand","type":"Role","_key":"21901","_from":"16001","_to":"15995"} +{"$label":"ACTS_IN","name":"Jacques Ferrand","type":"Role","_key":"21900","_from":"16000","_to":"15995"} +{"$label":"ACTS_IN","name":"Madame Levenes","type":"Role","_key":"21899","_from":"15999","_to":"15995"} +{"$label":"ACTS_IN","name":"Jeanne Decourt","type":"Role","_key":"21898","_from":"15998","_to":"15995"} +{"$label":"ACTS_IN","name":"Philippe Decourt","type":"Role","_key":"21897","_from":"15997","_to":"15995"} +{"$label":"ACTS_IN","name":"Helene Lanson","type":"Role","_key":"21895","_from":"15996","_to":"15995"} +{"$label":"ACTS_IN","name":"Louise Pignon","type":"Role","_key":"71448","_from":"15996","_to":"43316"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"71407","_from":"15996","_to":"43302"} +{"$label":"ACTS_IN","name":"Anna Foscarie","type":"Role","_key":"34618","_from":"15996","_to":"23691"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"30801","_from":"15996","_to":"21591"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Kerjean","type":"Role","_key":"29430","_from":"15996","_to":"20878"} +{"$label":"ACTS_IN","name":"Doniphan","type":"Role","_key":"89488","_from":"15997","_to":"52981"} +{"$label":"ACTS_IN","name":"Huckleberry Finn","type":"Role","_key":"89474","_from":"15997","_to":"52973"} +{"$label":"ACTS_IN","name":"Cl\u00e9ment jeune","type":"Role","_key":"23815","_from":"15997","_to":"17263"} +{"$label":"ACTS_IN","name":"Wiana Lust","type":"Role","_key":"34055","_from":"15998","_to":"23411"} +{"$label":"ACTS_IN","name":"Madame Jude","type":"Role","_key":"33948","_from":"15998","_to":"23371"} +{"$label":"ACTS_IN","name":"la vieille fermi\u00e8re","type":"Role","_key":"37898","_from":"15999","_to":"25666"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30625","_from":"15999","_to":"21508"} +{"$label":"ACTS_IN","name":"Merchant Lheureux","type":"Role","_key":"21910","_from":"16007","_to":"16003"} +{"$label":"ACTS_IN","name":"La veuve Lefan\u00e7ois","type":"Role","_key":"21909","_from":"16006","_to":"16003"} +{"$label":"ACTS_IN","name":"Leon Dupuis","type":"Role","_key":"21908","_from":"16005","_to":"16003"} +{"$label":"ACTS_IN","name":"Charles Bovary","type":"Role","_key":"21905","_from":"16004","_to":"16003"} +{"$label":"ACTS_IN","name":"Paul Belais","type":"Role","_key":"89134","_from":"16004","_to":"52799"} +{"$label":"ACTS_IN","name":"Arnaud","type":"Role","_key":"34406","_from":"16004","_to":"23576"} +{"$label":"ACTS_IN","name":"Louis XVI","type":"Role","_key":"30209","_from":"16004","_to":"21284"} +{"$label":"ACTS_IN","name":"Louis Cuno","type":"Role","_key":"34615","_from":"16005","_to":"23691"} +{"$label":"ACTS_IN","name":"Mme Vernon","type":"Role","_key":"114472","_from":"16006","_to":"67433"} +{"$label":"ACTS_IN","name":"Anne-Marie","type":"Role","_key":"32701","_from":"16006","_to":"22714"} +{"$label":"ACTS_IN","name":"Titania","type":"Role","_key":"23652","_from":"16006","_to":"17146"} +{"$label":"ACTS_IN","name":"Commissaire Belin","type":"Role","_key":"30020","_from":"16007","_to":"21177"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"21918","_from":"16012","_to":"16008"} +{"$label":"ACTS_IN","name":"Patou","type":"Role","_key":"21917","_from":"16011","_to":"16008"} +{"$label":"ACTS_IN","name":"Madame Rebeque","type":"Role","_key":"21915","_from":"16010","_to":"16008"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"21912","_from":"16009","_to":"16008"} +{"$label":"ACTS_IN","name":"Anna Pedersen","type":"Role","_key":"110184","_from":"16009","_to":"65118"} +{"$label":"ACTS_IN","name":"Margareta Witt","type":"Role","_key":"100241","_from":"16009","_to":"59121"} +{"$label":"ACTS_IN","name":"Anne Egerman","type":"Role","_key":"71643","_from":"16009","_to":"43382"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"23236","_from":"16010","_to":"16852"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"34349","_from":"16011","_to":"23558"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"31526","_from":"16011","_to":"22016"} +{"$label":"ACTS_IN","name":"Jefe de Estaci\u00f3n","type":"Role","_key":"21934","_from":"16021","_to":"16014"} +{"$label":"ACTS_IN","name":"Casera","type":"Role","_key":"21933","_from":"16020","_to":"16014"} +{"$label":"ACTS_IN","name":"Inquilino","type":"Role","_key":"21932","_from":"16019","_to":"16014"} +{"$label":"ACTS_IN","name":"Inquilna","type":"Role","_key":"21931","_from":"16018","_to":"16014"} +{"$label":"ACTS_IN","name":"Padre","type":"Role","_key":"21929","_from":"16017","_to":"16014"} +{"$label":"ACTS_IN","name":"Novio","type":"Role","_key":"21928","_from":"16016","_to":"16014"} +{"$label":"ACTS_IN","name":"Olaf","type":"Role","_key":"21927","_from":"16015","_to":"16014"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"21945","_from":"16028","_to":"16022"} +{"$label":"ACTS_IN","name":"Cristina (sechsj\u00e4hrig)","type":"Role","_key":"21944","_from":"16027","_to":"16022"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"21943","_from":"16026","_to":"16022"} +{"$label":"ACTS_IN","name":"Bernice","type":"Role","_key":"21942","_from":"16025","_to":"16022"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"21941","_from":"16024","_to":"16022"} +{"$label":"DIRECTED","_key":"21936","_from":"16023","_to":"16022"} +{"$label":"DIRECTED","_key":"90699","_from":"16023","_to":"53542"} +{"$label":"DIRECTED","_key":"67559","_from":"16023","_to":"41594"} +{"$label":"DIRECTED","_key":"24167","_from":"16023","_to":"17512"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"106767","_from":"16025","_to":"62941"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"95647","_from":"16028","_to":"56251"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"21966","_from":"16043","_to":"16029"} +{"$label":"ACTS_IN","name":"Jeannes Liebhaber","type":"Role","_key":"21965","_from":"16042","_to":"16029"} +{"$label":"ACTS_IN","name":"Le g\u00e9rant","type":"Role","_key":"21964","_from":"16041","_to":"16029"} +{"$label":"ACTS_IN","name":"M. Coquetti","type":"Role","_key":"21963","_from":"16040","_to":"16029"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"21962","_from":"16039","_to":"16029"} +{"$label":"ACTS_IN","name":"F\u00e9dor","type":"Role","_key":"21961","_from":"16038","_to":"16029"} +{"$label":"ACTS_IN","name":"Zazies Mutter","type":"Role","_key":"21960","_from":"16037","_to":"16029"} +{"$label":"ACTS_IN","name":"Madame Mouaque","type":"Role","_key":"21959","_from":"16036","_to":"16029"} +{"$label":"ACTS_IN","name":"Mado","type":"Role","_key":"21956","_from":"16035","_to":"16029"} +{"$label":"ACTS_IN","name":"Turandot","type":"Role","_key":"21954","_from":"16034","_to":"16029"} +{"$label":"ACTS_IN","name":"Zazie","type":"Role","_key":"21952","_from":"16033","_to":"16029"} +{"$label":"DIRECTED","_key":"21950","_from":"16032","_to":"16029"} +{"$label":"DIRECTED","_key":"21949","_from":"16031","_to":"16029"} +{"$label":"DIRECTED","_key":"21948","_from":"16030","_to":"16029"} +{"$label":"DIRECTED","_key":"22091","_from":"16030","_to":"16116"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"38087","_from":"16032","_to":"25759"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33838","_from":"16034","_to":"23315"} +{"$label":"ACTS_IN","name":"l'abb\u00e9 Lestinguois","type":"Role","_key":"29591","_from":"16034","_to":"20945"} +{"$label":"ACTS_IN","name":"Detreuil","type":"Role","_key":"27325","_from":"16034","_to":"19639"} +{"$label":"ACTS_IN","name":"D'Averseau","type":"Role","_key":"22096","_from":"16034","_to":"16116"} +{"$label":"ACTS_IN","name":"Madame de Vierne","type":"Role","_key":"33618","_from":"16036","_to":"23215"} +{"$label":"ACTS_IN","name":"Mme Kerbel","type":"Role","_key":"29956","_from":"16036","_to":"21162"} +{"$label":"ACTS_IN","name":"Mademoiselle Farnoux","type":"Role","_key":"22095","_from":"16036","_to":"16116"} +{"$label":"DIRECTED","_key":"21974","_from":"16046","_to":"16044"} +{"$label":"ACTS_IN","name":"Luggage Salesman","type":"Role","_key":"21972","_from":"16045","_to":"16044"} +{"$label":"DIRECTED","_key":"99808","_from":"16046","_to":"58877"} +{"$label":"ACTS_IN","name":"Notaire","type":"Role","_key":"21988","_from":"16057","_to":"16047"} +{"$label":"ACTS_IN","name":"Laurent","type":"Role","_key":"21987","_from":"16056","_to":"16047"} +{"$label":"ACTS_IN","name":"Sophie enfant","type":"Role","_key":"21986","_from":"16055","_to":"16047"} +{"$label":"ACTS_IN","name":"Bruno enfant","type":"Role","_key":"21985","_from":"16054","_to":"16047"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"21984","_from":"16053","_to":"16047"} +{"$label":"ACTS_IN","name":"M\u00e9decin","type":"Role","_key":"21983","_from":"16052","_to":"16047"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"21982","_from":"16051","_to":"16047"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"21981","_from":"16050","_to":"16047"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"21980","_from":"16049","_to":"16047"} +{"$label":"ACTS_IN","name":"Romain","type":"Role","_key":"21976","_from":"16048","_to":"16047"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116276","_from":"16048","_to":"68455"} +{"$label":"ACTS_IN","name":"Charles-Henri de Persand","type":"Role","_key":"54275","_from":"16048","_to":"34846"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"51348","_from":"16048","_to":"33480"} +{"$label":"ACTS_IN","name":"Stefan Chambers","type":"Role","_key":"27498","_from":"16048","_to":"19733"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"61878","_from":"16049","_to":"38947"} +{"$label":"ACTS_IN","name":"Madame Laurent","type":"Role","_key":"24115","_from":"16049","_to":"17488"} +{"$label":"ACTS_IN","name":"Justus von B\u00fclow","type":"Role","_key":"31702","_from":"16050","_to":"22122"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"22016","_from":"16069","_to":"16059"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"22015","_from":"16068","_to":"16059"} +{"$label":"ACTS_IN","name":"Chantal","type":"Role","_key":"22014","_from":"16067","_to":"16059"} +{"$label":"ACTS_IN","name":"Catherine, fille de Jeanne","type":"Role","_key":"22013","_from":"16066","_to":"16059"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"22012","_from":"16065","_to":"16059"} +{"$label":"ACTS_IN","name":"La secr\u00e9taire","type":"Role","_key":"22010","_from":"16064","_to":"16059"} +{"$label":"ACTS_IN","name":"Maggy Thiebaut-Leroy","type":"Role","_key":"22008","_from":"16063","_to":"16059"} +{"$label":"ACTS_IN","name":"Bernard Dubois-Lambert","type":"Role","_key":"22007","_from":"16062","_to":"16059"} +{"$label":"DIRECTED","_key":"22003","_from":"16061","_to":"16059"} +{"$label":"DIRECTED","_key":"22002","_from":"16060","_to":"16059"} +{"$label":"DIRECTED","_key":"30124","_from":"16060","_to":"21230"} +{"$label":"ACTS_IN","name":"Fontaine","type":"Role","_key":"103669","_from":"16061","_to":"60977"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"34638","_from":"16062","_to":"23703"} +{"$label":"ACTS_IN","name":"Aline Bledish","type":"Role","_key":"105245","_from":"16063","_to":"61936"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"119168","_from":"16064","_to":"70030"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"119164","_from":"16064","_to":"70028"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"53380","_from":"16064","_to":"34497"} +{"$label":"ACTS_IN","name":"Sarah Pendel","type":"Role","_key":"22027","_from":"16073","_to":"16070"} +{"$label":"ACTS_IN","name":"Uncle Benny","type":"Role","_key":"22024","_from":"16072","_to":"16070"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"22022","_from":"16071","_to":"16070"} +{"$label":"ACTS_IN","name":"Dr. Azelia Barakat","type":"Role","_key":"102977","_from":"16071","_to":"60574"} +{"$label":"ACTS_IN","name":"Norma Sanchez","type":"Role","_key":"98699","_from":"16071","_to":"58170"} +{"$label":"ACTS_IN","name":"Perdita","type":"Role","_key":"94878","_from":"16071","_to":"55861"} +{"$label":"ACTS_IN","name":"Jordana Garcia","type":"Role","_key":"57075","_from":"16071","_to":"36223"} +{"$label":"ACTS_IN","name":"Katia","type":"Role","_key":"46033","_from":"16071","_to":"30419"} +{"$label":"ACTS_IN","name":"Sir Thomas Bertram","type":"Role","_key":"63002","_from":"16072","_to":"39550"} +{"$label":"ACTS_IN","name":"Man on T.V.","type":"Role","_key":"32289","_from":"16072","_to":"22490"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"22045","_from":"16084","_to":"16074"} +{"$label":"ACTS_IN","name":"Nachtw\u00e4chter","type":"Role","_key":"22044","_from":"16083","_to":"16074"} +{"$label":"ACTS_IN","name":"Radiosprecher","type":"Role","_key":"22043","_from":"16082","_to":"16074"} +{"$label":"ACTS_IN","name":"Lagerarbeiter","type":"Role","_key":"22042","_from":"16081","_to":"16074"} +{"$label":"ACTS_IN","name":"Sanne Ledermann","type":"Role","_key":"22041","_from":"16080","_to":"16074"} +{"$label":"ACTS_IN","name":"SS-Offizier # 2","type":"Role","_key":"22040","_from":"16079","_to":"16074"} +{"$label":"ACTS_IN","name":"SS-Offizier # 1","type":"Role","_key":"22039","_from":"16078","_to":"16074"} +{"$label":"ACTS_IN","name":"Miep Gies","type":"Role","_key":"22037","_from":"16077","_to":"16074"} +{"$label":"ACTS_IN","name":"Edith Frank-Holl\u00e4nder","type":"Role","_key":"22033","_from":"16076","_to":"16074"} +{"$label":"ACTS_IN","name":"Anne Frank","type":"Role","_key":"22029","_from":"16075","_to":"16074"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"96047","_from":"16075","_to":"56457"} +{"$label":"ACTS_IN","name":"Mrs. Delongpre","type":"Role","_key":"36615","_from":"16075","_to":"24811"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"22372","_from":"16075","_to":"16258"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"37197","_from":"16082","_to":"25199"} +{"$label":"ACTS_IN","name":"Sheriff Kelly","type":"Role","_key":"27590","_from":"16082","_to":"19788"} +{"$label":"ACTS_IN","name":"Prefect Ewing","type":"Role","_key":"26380","_from":"16082","_to":"18948"} +{"$label":"ACTS_IN","name":"Sphinx Receptionid","type":"Role","_key":"22058","_from":"16092","_to":"16085"} +{"$label":"ACTS_IN","name":"Bikku","type":"Role","_key":"22057","_from":"16091","_to":"16085"} +{"$label":"ACTS_IN","name":"Wolle","type":"Role","_key":"22056","_from":"16090","_to":"16085"} +{"$label":"ACTS_IN","name":"Mohan","type":"Role","_key":"22055","_from":"16089","_to":"16085"} +{"$label":"ACTS_IN","name":"Boxer","type":"Role","_key":"22053","_from":"16088","_to":"16085"} +{"$label":"ACTS_IN","name":"Weather Girl","type":"Role","_key":"22052","_from":"16087","_to":"16085"} +{"$label":"ACTS_IN","name":"Vendor","type":"Role","_key":"22050","_from":"16086","_to":"16085"} +{"$label":"ACTS_IN","name":"Wasim","type":"Role","_key":"115034","_from":"16089","_to":"67736"} +{"$label":"ACTS_IN","name":"Vijay Rao","type":"Role","_key":"52114","_from":"16089","_to":"33976"} +{"$label":"ACTS_IN","name":"Basilio","type":"Role","_key":"103821","_from":"16091","_to":"61055"} +{"$label":"ACTS_IN","name":"Juno","type":"Role","_key":"53570","_from":"16092","_to":"34573"} +{"$label":"ACTS_IN","name":"Priester von San Damiano","type":"Role","_key":"22071","_from":"16101","_to":"16093"} +{"$label":"ACTS_IN","name":"Deodato","type":"Role","_key":"22070","_from":"16100","_to":"16093"} +{"$label":"ACTS_IN","name":"Bischof Guido","type":"Role","_key":"22068","_from":"16099","_to":"16093"} +{"$label":"ACTS_IN","name":"Giacondo","type":"Role","_key":"22067","_from":"16098","_to":"16093"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"22062","_from":"16097","_to":"16093"} +{"$label":"ACTS_IN","name":"Bernardo","type":"Role","_key":"22061","_from":"16096","_to":"16093"} +{"$label":"ACTS_IN","name":"Klara von Assisi","type":"Role","_key":"22060","_from":"16095","_to":"16093"} +{"$label":"ACTS_IN","name":"Franz von Assisi","type":"Role","_key":"22059","_from":"16094","_to":"16093"} +{"$label":"ACTS_IN","name":"Tupenny","type":"Role","_key":"25088","_from":"16095","_to":"18122"} +{"$label":"ACTS_IN","name":"Alec Stokes-d'Urberville","type":"Role","_key":"67994","_from":"16096","_to":"41780"} +{"$label":"ACTS_IN","name":"Tito","type":"Role","_key":"55546","_from":"16096","_to":"35377"} +{"$label":"ACTS_IN","name":"Sir Nigel","type":"Role","_key":"56064","_from":"16097","_to":"35624"} +{"$label":"ACTS_IN","name":"Dr. Philip Channard \/ Channard Cenobite","type":"Role","_key":"52361","_from":"16097","_to":"34079"} +{"$label":"ACTS_IN","name":"Insp. Bland","type":"Role","_key":"41678","_from":"16097","_to":"27972"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"35644","_from":"16097","_to":"24225"} +{"$label":"ACTS_IN","name":"Jimmy Price","type":"Role","_key":"34312","_from":"16097","_to":"23533"} +{"$label":"ACTS_IN","name":"Der Boss","type":"Role","_key":"45132","_from":"16099","_to":"29948"} +{"$label":"ACTS_IN","name":"Sir Thuud","type":"Role","_key":"27436","_from":"16099","_to":"19693"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"22089","_from":"16115","_to":"16102"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"22088","_from":"16114","_to":"16102"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"22087","_from":"16113","_to":"16102"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"22086","_from":"16112","_to":"16102"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"22085","_from":"16111","_to":"16102"} +{"$label":"ACTS_IN","name":"Jovoskaya","type":"Role","_key":"22084","_from":"16110","_to":"16102"} +{"$label":"ACTS_IN","name":"Bodyguard","type":"Role","_key":"22082","_from":"16109","_to":"16102"} +{"$label":"ACTS_IN","name":"Mr. H.","type":"Role","_key":"22081","_from":"16108","_to":"16102"} +{"$label":"ACTS_IN","name":"Said","type":"Role","_key":"22079","_from":"16107","_to":"16102"} +{"$label":"ACTS_IN","name":"Anglo","type":"Role","_key":"22078","_from":"16106","_to":"16102"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"22077","_from":"16105","_to":"16102"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"22075","_from":"16104","_to":"16102"} +{"$label":"DIRECTED","_key":"22073","_from":"16103","_to":"16102"} +{"$label":"ACTS_IN","name":"Daniel McVey","type":"Role","_key":"27496","_from":"16106","_to":"19733"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"27484","_from":"16106","_to":"19724"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"47862","_from":"16107","_to":"31503"} +{"$label":"ACTS_IN","name":"Said","type":"Role","_key":"36234","_from":"16107","_to":"24586"} +{"$label":"ACTS_IN","name":"Walter Gabler","type":"Role","_key":"117428","_from":"16108","_to":"69064"} +{"$label":"ACTS_IN","name":"Phil Simpson","type":"Role","_key":"68405","_from":"16108","_to":"41966"} +{"$label":"ACTS_IN","name":"James Byrd","type":"Role","_key":"45617","_from":"16108","_to":"30198"} +{"$label":"ACTS_IN","name":"Brancion","type":"Role","_key":"22111","_from":"16129","_to":"16116"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"22110","_from":"16128","_to":"16116"} +{"$label":"ACTS_IN","name":"Cyrille Lavaud","type":"Role","_key":"22108","_from":"16127","_to":"16116"} +{"$label":"ACTS_IN","name":"Jerome Minville","type":"Role","_key":"22107","_from":"16126","_to":"16116"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Minville","type":"Role","_key":"22106","_from":"16125","_to":"16116"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"22103","_from":"16124","_to":"16116"} +{"$label":"ACTS_IN","name":"Dubourg","type":"Role","_key":"22102","_from":"16123","_to":"16116"} +{"$label":"ACTS_IN","name":"Milou","type":"Role","_key":"22101","_from":"16122","_to":"16116"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"22100","_from":"16121","_to":"16116"} +{"$label":"ACTS_IN","name":"Moraine","type":"Role","_key":"22099","_from":"16120","_to":"16116"} +{"$label":"ACTS_IN","name":"Madame La Barbinais","type":"Role","_key":"22098","_from":"16119","_to":"16116"} +{"$label":"ACTS_IN","name":"Dr. La Barbinais","type":"Role","_key":"22097","_from":"16118","_to":"16116"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"22094","_from":"16117","_to":"16116"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"23827","_from":"16122","_to":"17263"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de Stanislas","type":"Role","_key":"113642","_from":"16127","_to":"66968"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"27131","_from":"16127","_to":"19521"} +{"$label":"ACTS_IN","name":"SS Col. Spreich","type":"Role","_key":"22120","_from":"16135","_to":"16130"} +{"$label":"ACTS_IN","name":"Guila Cohen","type":"Role","_key":"22119","_from":"16134","_to":"16130"} +{"$label":"ACTS_IN","name":"Sarah Cohen","type":"Role","_key":"22118","_from":"16133","_to":"16130"} +{"$label":"ACTS_IN","name":"Micheline Batignole","type":"Role","_key":"22117","_from":"16132","_to":"16130"} +{"$label":"ACTS_IN","name":"Marguerite Batignole","type":"Role","_key":"22115","_from":"16131","_to":"16130"} +{"$label":"ACTS_IN","name":"Madame Santini","type":"Role","_key":"69883","_from":"16131","_to":"42634"} +{"$label":"ACTS_IN","name":"Loisl Grassl","type":"Role","_key":"43700","_from":"16135","_to":"29186"} +{"$label":"DIRECTED","_key":"22131","_from":"16140","_to":"16136"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"22130","_from":"16144","_to":"16136"} +{"$label":"ACTS_IN","name":"Peter Campbell","type":"Role","_key":"22129","_from":"16143","_to":"16136"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"22128","_from":"16142","_to":"16136"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"22127","_from":"16141","_to":"16136"} +{"$label":"ACTS_IN","name":"Jason Byrns","type":"Role","_key":"22126","_from":"16140","_to":"16136"} +{"$label":"ACTS_IN","name":"Joan Hanson","type":"Role","_key":"22125","_from":"16139","_to":"16136"} +{"$label":"ACTS_IN","name":"Brian Taylor","type":"Role","_key":"22124","_from":"16138","_to":"16136"} +{"$label":"ACTS_IN","name":"Dawson McMahon","type":"Role","_key":"22123","_from":"16137","_to":"16136"} +{"$label":"DIRECTED","_key":"27174","_from":"16137","_to":"19531"} +{"$label":"ACTS_IN","name":"H\u00e4nschen Rilow","type":"Role","_key":"27167","_from":"16137","_to":"19531"} +{"$label":"ACTS_IN","name":"Jacob Turner","type":"Role","_key":"89210","_from":"16138","_to":"52826"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"51759","_from":"16138","_to":"33772"} +{"$label":"ACTS_IN","name":"Moritz Stiefel","type":"Role","_key":"27162","_from":"16138","_to":"19531"} +{"$label":"ACTS_IN","name":"Brian Taylor","type":"Role","_key":"22927","_from":"16138","_to":"16629"} +{"$label":"DIRECTED","_key":"27175","_from":"16138","_to":"19531"} +{"$label":"DIRECTED","_key":"22928","_from":"16138","_to":"16629"} +{"$label":"DIRECTED","_key":"22929","_from":"16140","_to":"16629"} +{"$label":"ACTS_IN","name":"Jason Byrns","type":"Role","_key":"22926","_from":"16140","_to":"16629"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"51758","_from":"16143","_to":"33772"} +{"$label":"ACTS_IN","name":"Melchior Gabor","type":"Role","_key":"27161","_from":"16143","_to":"19531"} +{"$label":"DIRECTED","_key":"27176","_from":"16143","_to":"19531"} +{"$label":"ACTS_IN","name":"Steve Boyer","type":"Role","_key":"22143","_from":"16151","_to":"16146"} +{"$label":"ACTS_IN","name":"Tommy Finnelli","type":"Role","_key":"22138","_from":"16150","_to":"16146"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"22136","_from":"16149","_to":"16146"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"22135","_from":"16148","_to":"16146"} +{"$label":"ACTS_IN","name":"Mrs. Kovic","type":"Role","_key":"22134","_from":"16147","_to":"16146"} +{"$label":"ACTS_IN","name":"Elizabeth Grant","type":"Role","_key":"89934","_from":"16147","_to":"53211"} +{"$label":"ACTS_IN","name":"Connie White","type":"Role","_key":"67321","_from":"16147","_to":"41493"} +{"$label":"ACTS_IN","name":"Gina Parker Smith","type":"Role","_key":"116424","_from":"16149","_to":"68531"} +{"$label":"ACTS_IN","name":"Stella Peck","type":"Role","_key":"95845","_from":"16149","_to":"56368"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"93047","_from":"16149","_to":"54855"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"88589","_from":"16149","_to":"52495"} +{"$label":"ACTS_IN","name":"Linda Powell","type":"Role","_key":"67684","_from":"16149","_to":"41633"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"55707","_from":"16149","_to":"35451"} +{"$label":"ACTS_IN","name":"Lave Pennamin","type":"Role","_key":"52947","_from":"16149","_to":"34307"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"49772","_from":"16149","_to":"32563"} +{"$label":"ACTS_IN","name":"Rupert 'Stiles' Stilinski","type":"Role","_key":"72210","_from":"16151","_to":"43634"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"22151","_from":"16156","_to":"16152"} +{"$label":"ACTS_IN","name":"Skroeder","type":"Role","_key":"22150","_from":"16155","_to":"16152"} +{"$label":"ACTS_IN","name":"Ben Jabituya","type":"Role","_key":"22148","_from":"16154","_to":"16152"} +{"$label":"ACTS_IN","name":"Newton Crosby","type":"Role","_key":"22147","_from":"16153","_to":"16152"} +{"$label":"ACTS_IN","name":"Barry Kohler (as Steven Guttenberg)","type":"Role","_key":"108309","_from":"16153","_to":"64019"} +{"$label":"ACTS_IN","name":"Sidney Green","type":"Role","_key":"105214","_from":"16153","_to":"61918"} +{"$label":"ACTS_IN","name":"Edward 'Eddie' Simmons","type":"Role","_key":"96364","_from":"16153","_to":"56647"} +{"$label":"ACTS_IN","name":"Michael Kellam","type":"Role","_key":"88338","_from":"16153","_to":"52381"} +{"$label":"ACTS_IN","name":"Sgt. Carey Mahoney","type":"Role","_key":"88128","_from":"16153","_to":"52299"} +{"$label":"ACTS_IN","name":"Michael Kellam","type":"Role","_key":"71151","_from":"16153","_to":"43189"} +{"$label":"ACTS_IN","name":"Sgt. Carey Mahoney","type":"Role","_key":"64269","_from":"16153","_to":"40078"} +{"$label":"ACTS_IN","name":"Carey Mahoney","type":"Role","_key":"61315","_from":"16153","_to":"38704"} +{"$label":"ACTS_IN","name":"Cadet Carey Mahoney","type":"Role","_key":"53183","_from":"16153","_to":"34404"} +{"$label":"ACTS_IN","name":"Stephen Klein","type":"Role","_key":"45699","_from":"16153","_to":"30247"} +{"$label":"ACTS_IN","name":"Jim Craig","type":"Role","_key":"45221","_from":"16153","_to":"30015"} +{"$label":"ACTS_IN","name":"Vince Latello","type":"Role","_key":"115561","_from":"16154","_to":"68031"} +{"$label":"ACTS_IN","name":"Ben Jahrvi","type":"Role","_key":"73035","_from":"16154","_to":"43957"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"65358","_from":"16154","_to":"40549"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"63548","_from":"16154","_to":"39778"} +{"$label":"ACTS_IN","name":"Eugene Belford \/ 'The Plague' \/ Mr. Babbage","type":"Role","_key":"63242","_from":"16154","_to":"39652"} +{"$label":"ACTS_IN","name":"Stuffed Shirt","type":"Role","_key":"57288","_from":"16154","_to":"36323"} +{"$label":"ACTS_IN","name":"Larry Corvatch","type":"Role","_key":"52321","_from":"16154","_to":"34060"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"118462","_from":"16155","_to":"69644"} +{"$label":"ACTS_IN","name":"Rusty, the Dog","type":"Role","_key":"95965","_from":"16155","_to":"56425"} +{"$label":"ACTS_IN","name":"Thaddeus Harris","type":"Role","_key":"70552","_from":"16155","_to":"42933"} +{"$label":"ACTS_IN","name":"Captain Felix Maxwell","type":"Role","_key":"59502","_from":"16155","_to":"37569"} +{"$label":"ACTS_IN","name":"Lt. Thaddeus Harris","type":"Role","_key":"53185","_from":"16155","_to":"34404"} +{"$label":"ACTS_IN","name":"General Moore","type":"Role","_key":"40813","_from":"16155","_to":"27472"} +{"$label":"ACTS_IN","name":"Barnabas","type":"Role","_key":"22922","_from":"16155","_to":"16608"} +{"$label":"ACTS_IN","name":"Todd Young","type":"Role","_key":"116468","_from":"16156","_to":"68550"} +{"$label":"DIRECTED","_key":"22160","_from":"16160","_to":"16157"} +{"$label":"ACTS_IN","name":"Audrey James","type":"Role","_key":"22158","_from":"16159","_to":"16157"} +{"$label":"ACTS_IN","name":"Nick McGuire","type":"Role","_key":"22156","_from":"16158","_to":"16157"} +{"$label":"ACTS_IN","name":"Ned Braden","type":"Role","_key":"70927","_from":"16158","_to":"43092"} +{"$label":"ACTS_IN","name":"Hank Parnell","type":"Role","_key":"45984","_from":"16158","_to":"30398"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"34379","_from":"16158","_to":"23576"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"22173","_from":"16166","_to":"16161"} +{"$label":"ACTS_IN","name":"Peg","type":"Role","_key":"22169","_from":"16165","_to":"16161"} +{"$label":"ACTS_IN","name":"Joy Page","type":"Role","_key":"22168","_from":"16164","_to":"16161"} +{"$label":"ACTS_IN","name":"Marti Page","type":"Role","_key":"22167","_from":"16163","_to":"16161"} +{"$label":"ACTS_IN","name":"Susan Page","type":"Role","_key":"22163","_from":"16162","_to":"16161"} +{"$label":"ACTS_IN","name":"Mrs. Sloan","type":"Role","_key":"23393","_from":"16164","_to":"16947"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"38581","_from":"16166","_to":"26068"} +{"$label":"DIRECTED","_key":"22185","_from":"16171","_to":"16167"} +{"$label":"ACTS_IN","name":"Del Rey","type":"Role","_key":"22183","_from":"16170","_to":"16167"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"22182","_from":"16169","_to":"16167"} +{"$label":"ACTS_IN","name":"Christie Richards","type":"Role","_key":"22181","_from":"16168","_to":"16167"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"120947","_from":"16168","_to":"71032"} +{"$label":"ACTS_IN","name":"Dr. Jessica Westmin","type":"Role","_key":"102956","_from":"16168","_to":"60559"} +{"$label":"ACTS_IN","name":"Fran Moore","type":"Role","_key":"67813","_from":"16168","_to":"41677"} +{"$label":"DIRECTED","_key":"100539","_from":"16171","_to":"59302"} +{"$label":"ACTS_IN","name":"Rose Muldoon","type":"Role","_key":"22187","_from":"16173","_to":"16172"} +{"$label":"ACTS_IN","name":"Margaret 'Maggie' McKendrick","type":"Role","_key":"119141","_from":"16173","_to":"70021"} +{"$label":"ACTS_IN","name":"Kit Tilden","type":"Role","_key":"116247","_from":"16173","_to":"68441"} +{"$label":"ACTS_IN","name":"Katherine Gilhooley McLintock","type":"Role","_key":"103776","_from":"16173","_to":"61040"} +{"$label":"ACTS_IN","name":"Doris Walker","type":"Role","_key":"72527","_from":"16173","_to":"43748"} +{"$label":"ACTS_IN","name":"Mrs. Kathleen Yorke","type":"Role","_key":"71077","_from":"16173","_to":"43158"} +{"$label":"ACTS_IN","name":"Mary Kate Danaher","type":"Role","_key":"26001","_from":"16173","_to":"18693"} +{"$label":"DIRECTED","_key":"22200","_from":"16176","_to":"16174"} +{"$label":"ACTS_IN","name":"Leo Hansen","type":"Role","_key":"22199","_from":"16175","_to":"16174"} +{"$label":"DIRECTED","_key":"98495","_from":"16176","_to":"58035"} +{"$label":"DIRECTED","_key":"22211","_from":"16181","_to":"16177"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"22209","_from":"16180","_to":"16177"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"22208","_from":"16179","_to":"16177"} +{"$label":"ACTS_IN","name":"Mrs. Boyle","type":"Role","_key":"22205","_from":"16178","_to":"16177"} +{"$label":"ACTS_IN","name":"Emily Ann Faulkner (Child)","type":"Role","_key":"25551","_from":"16178","_to":"18410"} +{"$label":"ACTS_IN","name":"Neely O'Hara","type":"Role","_key":"25289","_from":"16178","_to":"18230"} +{"$label":"ACTS_IN","name":"Byron Wilder (Channel 8 traffic reporter)","type":"Role","_key":"65098","_from":"16180","_to":"40441"} +{"$label":"ACTS_IN","name":"Mr. Igoe","type":"Role","_key":"22217","_from":"16184","_to":"16182"} +{"$label":"ACTS_IN","name":"Dr. Margaret Canker","type":"Role","_key":"22216","_from":"16183","_to":"16182"} +{"$label":"ACTS_IN","name":"Lin","type":"Role","_key":"31245","_from":"16183","_to":"21863"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"25279","_from":"16183","_to":"18221"} +{"$label":"ACTS_IN","name":"Maddox","type":"Role","_key":"87961","_from":"16184","_to":"52231"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"67194","_from":"16184","_to":"41449"} +{"$label":"ACTS_IN","name":"Wez","type":"Role","_key":"50880","_from":"16184","_to":"33209"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"26550","_from":"16184","_to":"19073"} +{"$label":"ACTS_IN","name":"Bug","type":"Role","_key":"22228","_from":"16188","_to":"16185"} +{"$label":"ACTS_IN","name":"Bob Russell","type":"Role","_key":"22226","_from":"16187","_to":"16185"} +{"$label":"ACTS_IN","name":"Cindy Russell","type":"Role","_key":"22225","_from":"16186","_to":"16185"} +{"$label":"ACTS_IN","name":"Kenneth 'Ken' Oort","type":"Role","_key":"43391","_from":"16188","_to":"28990"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"22239","_from":"16194","_to":"16189"} +{"$label":"ACTS_IN","name":"Mara Craig","type":"Role","_key":"22237","_from":"16193","_to":"16189"} +{"$label":"ACTS_IN","name":"Cara Craig","type":"Role","_key":"22236","_from":"16192","_to":"16189"} +{"$label":"ACTS_IN","name":"Ben Ripley","type":"Role","_key":"22235","_from":"16191","_to":"16189"} +{"$label":"ACTS_IN","name":"Buck Ripley","type":"Role","_key":"22234","_from":"16190","_to":"16189"} +{"$label":"ACTS_IN","name":"Tom Lawrence","type":"Role","_key":"100198","_from":"16190","_to":"59099"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"22251","_from":"16201","_to":"16195"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"22250","_from":"16200","_to":"16195"} +{"$label":"ACTS_IN","name":"Dr. Zidell","type":"Role","_key":"22249","_from":"16199","_to":"16195"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"22248","_from":"16198","_to":"16195"} +{"$label":"ACTS_IN","name":"Dr. Ross","type":"Role","_key":"22247","_from":"16197","_to":"16195"} +{"$label":"ACTS_IN","name":"Mr. Buyrite","type":"Role","_key":"22246","_from":"16196","_to":"16195"} +{"$label":"ACTS_IN","name":"Marcus Vindictus","type":"Role","_key":"61310","_from":"16196","_to":"38701"} +{"$label":"ACTS_IN","name":"Pvt. Vinci, 1st Squad","type":"Role","_key":"107141","_from":"16198","_to":"63187"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"101594","_from":"16198","_to":"59795"} +{"$label":"ACTS_IN","name":"Jim Parker","type":"Role","_key":"64483","_from":"16198","_to":"40178"} +{"$label":"ACTS_IN","name":"Professor Lilloman","type":"Role","_key":"90110","_from":"16199","_to":"53290"} +{"$label":"ACTS_IN","name":"Sergeant Rizzo","type":"Role","_key":"22260","_from":"16203","_to":"16202"} +{"$label":"ACTS_IN","name":"Lamarr Simms","type":"Role","_key":"102274","_from":"16203","_to":"60181"} +{"$label":"ACTS_IN","name":"Father Bolen","type":"Role","_key":"69930","_from":"16203","_to":"42672"} +{"$label":"ACTS_IN","name":"Perryman","type":"Role","_key":"22278","_from":"16208","_to":"16205"} +{"$label":"ACTS_IN","name":"Lynette Pomeroy","type":"Role","_key":"22276","_from":"16207","_to":"16205"} +{"$label":"ACTS_IN","name":"Paula Pokrifki","type":"Role","_key":"22272","_from":"16206","_to":"16205"} +{"$label":"ACTS_IN","name":"Alexandra 'Alex' Barnes","type":"Role","_key":"119790","_from":"16206","_to":"70340"} +{"$label":"ACTS_IN","name":"Sissy","type":"Role","_key":"112445","_from":"16206","_to":"66387"} +{"$label":"ACTS_IN","name":"Prudence Bushnell","type":"Role","_key":"108976","_from":"16206","_to":"64395"} +{"$label":"ACTS_IN","name":"Alice Collins","type":"Role","_key":"108883","_from":"16206","_to":"64347"} +{"$label":"ACTS_IN","name":"Jane Larson","type":"Role","_key":"91442","_from":"16206","_to":"53929"} +{"$label":"ACTS_IN","name":"Emma Greenway Horton","type":"Role","_key":"67554","_from":"16206","_to":"41594"} +{"$label":"ACTS_IN","name":"Ellen Andrews Gordon","type":"Role","_key":"63842","_from":"16206","_to":"39903"} +{"$label":"ACTS_IN","name":"Joy Gresham","type":"Role","_key":"63396","_from":"16206","_to":"39719"} +{"$label":"ACTS_IN","name":"Laura J. Kelly","type":"Role","_key":"58234","_from":"16206","_to":"36833"} +{"$label":"ACTS_IN","name":"Annie Winchester","type":"Role","_key":"118806","_from":"16207","_to":"69847"} +{"$label":"ACTS_IN","name":"Catherine Danforth","type":"Role","_key":"51122","_from":"16207","_to":"33352"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"58675","_from":"16208","_to":"37064"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"22289","_from":"16213","_to":"16209"} +{"$label":"ACTS_IN","name":"Amanda Chang","type":"Role","_key":"22288","_from":"16212","_to":"16209"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"22287","_from":"16211","_to":"16209"} +{"$label":"ACTS_IN","name":"Dr. Patrick Shaye","type":"Role","_key":"22285","_from":"16210","_to":"16209"} +{"$label":"ACTS_IN","name":"Marty Blitzer","type":"Role","_key":"117275","_from":"16211","_to":"68977"} +{"$label":"ACTS_IN","name":"Mitchell Berger","type":"Role","_key":"98292","_from":"16211","_to":"57900"} +{"$label":"ACTS_IN","name":"Lawyer #1","type":"Role","_key":"92046","_from":"16211","_to":"54312"} +{"$label":"ACTS_IN","name":"Dez","type":"Role","_key":"46398","_from":"16211","_to":"30650"} +{"$label":"ACTS_IN","name":"Dr. Klein","type":"Role","_key":"46139","_from":"16211","_to":"30486"} +{"$label":"ACTS_IN","name":"Lena St. Clair","type":"Role","_key":"121493","_from":"16212","_to":"71369"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"119568","_from":"16212","_to":"70235"} +{"$label":"ACTS_IN","name":"Numbuh Three (voice)","type":"Role","_key":"111849","_from":"16212","_to":"66010"} +{"$label":"ACTS_IN","name":"Angela Chen","type":"Role","_key":"111030","_from":"16212","_to":"65577"} +{"$label":"ACTS_IN","name":"Amy Wong","type":"Role","_key":"103005","_from":"16212","_to":"60586"} +{"$label":"ACTS_IN","name":"Amy Wong","type":"Role","_key":"93617","_from":"16212","_to":"55120"} +{"$label":"ACTS_IN","name":"Amy Wong","type":"Role","_key":"91866","_from":"16212","_to":"54199"} +{"$label":"ACTS_IN","name":"Su","type":"Role","_key":"88979","_from":"16212","_to":"52708"} +{"$label":"ACTS_IN","name":"Mitzie","type":"Role","_key":"68400","_from":"16212","_to":"41965"} +{"$label":"ACTS_IN","name":"Lady Broker","type":"Role","_key":"64971","_from":"16212","_to":"40382"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"63423","_from":"16212","_to":"39729"} +{"$label":"ACTS_IN","name":"Helen the Dim Sum Girl","type":"Role","_key":"61359","_from":"16212","_to":"38719"} +{"$label":"ACTS_IN","name":"Lois","type":"Role","_key":"61235","_from":"16212","_to":"38674"} +{"$label":"ACTS_IN","name":"Female Reporter","type":"Role","_key":"54229","_from":"16212","_to":"34828"} +{"$label":"ACTS_IN","name":"Pianoplayer","type":"Role","_key":"22304","_from":"16221","_to":"16214"} +{"$label":"ACTS_IN","name":"Young May","type":"Role","_key":"22303","_from":"16220","_to":"16214"} +{"$label":"ACTS_IN","name":"Alice Munro","type":"Role","_key":"22302","_from":"16219","_to":"16214"} +{"$label":"ACTS_IN","name":"Stan Munro","type":"Role","_key":"22301","_from":"16218","_to":"16214"} +{"$label":"ACTS_IN","name":"Strongarm","type":"Role","_key":"22300","_from":"16217","_to":"16214"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"22299","_from":"16216","_to":"16214"} +{"$label":"DIRECTED","_key":"22293","_from":"16215","_to":"16214"} +{"$label":"DIRECTED","_key":"54589","_from":"16215","_to":"34972"} +{"$label":"DIRECTED","_key":"53349","_from":"16215","_to":"34483"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"48586","_from":"16216","_to":"31873"} +{"$label":"ACTS_IN","name":"Motel Manager","type":"Role","_key":"22337","_from":"16248","_to":"16222"} +{"$label":"ACTS_IN","name":"Mann auf Br\u00fccke","type":"Role","_key":"22336","_from":"16247","_to":"16222"} +{"$label":"ACTS_IN","name":"Hotelpage","type":"Role","_key":"22335","_from":"16246","_to":"16222"} +{"$label":"ACTS_IN","name":"Tory Pherris","type":"Role","_key":"22334","_from":"16245","_to":"16222"} +{"$label":"ACTS_IN","name":"Nachrichtensprecher","type":"Role","_key":"22333","_from":"16244","_to":"16222"} +{"$label":"ACTS_IN","name":"Helfer","type":"Role","_key":"22332","_from":"16243","_to":"16222"} +{"$label":"ACTS_IN","name":"Helfer","type":"Role","_key":"22331","_from":"16242","_to":"16222"} +{"$label":"ACTS_IN","name":"Helfer","type":"Role","_key":"22330","_from":"16241","_to":"16222"} +{"$label":"ACTS_IN","name":"Coffee Shop Angestellte","type":"Role","_key":"22327","_from":"16240","_to":"16222"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"22326","_from":"16239","_to":"16222"} +{"$label":"ACTS_IN","name":"Nachrichtensprecherin","type":"Role","_key":"22325","_from":"16238","_to":"16222"} +{"$label":"ACTS_IN","name":"Dr. Williams","type":"Role","_key":"22324","_from":"16237","_to":"16222"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"22323","_from":"16236","_to":"16222"} +{"$label":"ACTS_IN","name":"C.J.","type":"Role","_key":"22322","_from":"16235","_to":"16222"} +{"$label":"ACTS_IN","name":"Nat Griffin","type":"Role","_key":"22320","_from":"16234","_to":"16222"} +{"$label":"ACTS_IN","name":"Lucy Griffin","type":"Role","_key":"22319","_from":"16233","_to":"16222"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"22318","_from":"16232","_to":"16222"} +{"$label":"ACTS_IN","name":"TV Journalist","type":"Role","_key":"22317","_from":"16231","_to":"16222"} +{"$label":"ACTS_IN","name":"Orderly","type":"Role","_key":"22316","_from":"16230","_to":"16222"} +{"$label":"ACTS_IN","name":"Dr. McElroy","type":"Role","_key":"22315","_from":"16229","_to":"16222"} +{"$label":"ACTS_IN","name":"Washington Post Reporter","type":"Role","_key":"22314","_from":"16228","_to":"16222"} +{"$label":"ACTS_IN","name":"Alexander Leek","type":"Role","_key":"22313","_from":"16227","_to":"16222"} +{"$label":"ACTS_IN","name":"Indrid Cold","type":"Role","_key":"22312","_from":"16226","_to":"16222"} +{"$label":"ACTS_IN","name":"Ed Fleischman","type":"Role","_key":"22311","_from":"16225","_to":"16222"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"22310","_from":"16224","_to":"16222"} +{"$label":"ACTS_IN","name":"Cyrus Bills","type":"Role","_key":"22308","_from":"16223","_to":"16222"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"105925","_from":"16225","_to":"62366"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"104728","_from":"16225","_to":"61613"} +{"$label":"ACTS_IN","name":"Norris","type":"Role","_key":"100159","_from":"16225","_to":"59079"} +{"$label":"ACTS_IN","name":"Steve Brady","type":"Role","_key":"32731","_from":"16225","_to":"22725"} +{"$label":"ACTS_IN","name":"Frank Rice","type":"Role","_key":"118180","_from":"16227","_to":"69451"} +{"$label":"ACTS_IN","name":"Charles Plumpick","type":"Role","_key":"113650","_from":"16227","_to":"66974"} +{"$label":"ACTS_IN","name":"Rudge Campbell","type":"Role","_key":"108743","_from":"16227","_to":"64283"} +{"$label":"ACTS_IN","name":"Basil","type":"Role","_key":"64467","_from":"16227","_to":"40162"} +{"$label":"ACTS_IN","name":"Claudius","type":"Role","_key":"62145","_from":"16227","_to":"39139"} +{"$label":"ACTS_IN","name":"Jennings","type":"Role","_key":"36869","_from":"16227","_to":"24998"} +{"$label":"ACTS_IN","name":"Gabriel Oak","type":"Role","_key":"27229","_from":"16227","_to":"19575"} +{"$label":"ACTS_IN","name":"Marine Captain","type":"Role","_key":"43277","_from":"16248","_to":"28899"} +{"$label":"ACTS_IN","name":"Hilly","type":"Role","_key":"22351","_from":"16252","_to":"16249"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"22345","_from":"16251","_to":"16249"} +{"$label":"ACTS_IN","name":"Burt","type":"Role","_key":"22344","_from":"16250","_to":"16249"} +{"$label":"ACTS_IN","name":"Barry Champlain","type":"Role","_key":"61127","_from":"16250","_to":"38638"} +{"$label":"ACTS_IN","name":"Eddie Nash","type":"Role","_key":"35464","_from":"16250","_to":"24121"} +{"$label":"ACTS_IN","name":"Travis Dane","type":"Role","_key":"27505","_from":"16250","_to":"19738"} +{"$label":"ACTS_IN","name":"Mother Foster","type":"Role","_key":"96263","_from":"16251","_to":"56562"} +{"$label":"ACTS_IN","name":"Alison Callaway","type":"Role","_key":"67855","_from":"16251","_to":"41692"} +{"$label":"ACTS_IN","name":"Hadass","type":"Role","_key":"62218","_from":"16251","_to":"39187"} +{"$label":"ACTS_IN","name":"Sue Snell","type":"Role","_key":"46483","_from":"16251","_to":"30698"} +{"$label":"ACTS_IN","name":"Sue Snell","type":"Role","_key":"46459","_from":"16251","_to":"30685"} +{"$label":"ACTS_IN","name":"Kyle Grant","type":"Role","_key":"112165","_from":"16252","_to":"66236"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"96241","_from":"16252","_to":"56561"} +{"$label":"ACTS_IN","name":"Charlie Calvin","type":"Role","_key":"69594","_from":"16252","_to":"42487"} +{"$label":"ACTS_IN","name":"Charlie Calvin","type":"Role","_key":"52047","_from":"16252","_to":"33935"} +{"$label":"ACTS_IN","name":"Veronicas Mutter","type":"Role","_key":"22362","_from":"16257","_to":"16253"} +{"$label":"ACTS_IN","name":"Kurt Kelly","type":"Role","_key":"22361","_from":"16256","_to":"16253"} +{"$label":"ACTS_IN","name":"Pauline Fleming","type":"Role","_key":"22359","_from":"16255","_to":"16253"} +{"$label":"ACTS_IN","name":"Heather Chandler","type":"Role","_key":"22358","_from":"16254","_to":"16253"} +{"$label":"DIRECTED","_key":"22434","_from":"16307","_to":"16258"} +{"$label":"ACTS_IN","name":"Petronius","type":"Role","_key":"22433","_from":"16306","_to":"16258"} +{"$label":"ACTS_IN","name":"R\u00f6mischer Offizier","type":"Role","_key":"22431","_from":"16305","_to":"16258"} +{"$label":"ACTS_IN","name":"Papst Linus","type":"Role","_key":"22429","_from":"16304","_to":"16258"} +{"$label":"ACTS_IN","name":"Atticus","type":"Role","_key":"22428","_from":"16303","_to":"16258"} +{"$label":"ACTS_IN","name":"Philippus der Grieche","type":"Role","_key":"22427","_from":"16302","_to":"16258"} +{"$label":"ACTS_IN","name":"Procuius","type":"Role","_key":"22426","_from":"16301","_to":"16258"} +{"$label":"ACTS_IN","name":"Jakobus der \u00c4ltere","type":"Role","_key":"22425","_from":"16300","_to":"16258"} +{"$label":"ACTS_IN","name":"Thrasyllus","type":"Role","_key":"22424","_from":"16299","_to":"16258"} +{"$label":"ACTS_IN","name":"Simon der Magier","type":"Role","_key":"22423","_from":"16298","_to":"16258"} +{"$label":"ACTS_IN","name":"Parmenas","type":"Role","_key":"22422","_from":"16297","_to":"16258"} +{"$label":"ACTS_IN","name":"Octavia","type":"Role","_key":"22421","_from":"16296","_to":"16258"} +{"$label":"ACTS_IN","name":"Nicanor","type":"Role","_key":"22420","_from":"16295","_to":"16258"} +{"$label":"ACTS_IN","name":"Matthias","type":"Role","_key":"22419","_from":"16294","_to":"16258"} +{"$label":"ACTS_IN","name":"Levi Matth\u00e4us","type":"Role","_key":"22418","_from":"16293","_to":"16258"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"22417","_from":"16292","_to":"16258"} +{"$label":"ACTS_IN","name":"Marcellus","type":"Role","_key":"22416","_from":"16291","_to":"16258"} +{"$label":"ACTS_IN","name":"Jakobus","type":"Role","_key":"22414","_from":"16290","_to":"16258"} +{"$label":"ACTS_IN","name":"Gaius Calpurnius Piso","type":"Role","_key":"22413","_from":"16289","_to":"16258"} +{"$label":"ACTS_IN","name":"Barnabas","type":"Role","_key":"22412","_from":"16288","_to":"16258"} +{"$label":"ACTS_IN","name":"Apicata","type":"Role","_key":"22411","_from":"16287","_to":"16258"} +{"$label":"ACTS_IN","name":"Ananias","type":"Role","_key":"22410","_from":"16286","_to":"16258"} +{"$label":"ACTS_IN","name":"Herodes Agrippa III.","type":"Role","_key":"22409","_from":"16285","_to":"16258"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"22408","_from":"16284","_to":"16258"} +{"$label":"ACTS_IN","name":"Poppaea","type":"Role","_key":"22407","_from":"16283","_to":"16258"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"22406","_from":"16282","_to":"16258"} +{"$label":"ACTS_IN","name":"Cassius","type":"Role","_key":"22401","_from":"16281","_to":"16258"} +{"$label":"ACTS_IN","name":"Priscilla","type":"Role","_key":"22400","_from":"16280","_to":"16258"} +{"$label":"ACTS_IN","name":"Herodes Agrippa II.","type":"Role","_key":"22399","_from":"16279","_to":"16258"} +{"$label":"ACTS_IN","name":"Herodes Agrippa I.","type":"Role","_key":"22398","_from":"16278","_to":"16258"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"22396","_from":"16277","_to":"16258"} +{"$label":"ACTS_IN","name":"Apicata","type":"Role","_key":"22395","_from":"16276","_to":"16258"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"22394","_from":"16275","_to":"16258"} +{"$label":"ACTS_IN","name":"Pallas","type":"Role","_key":"22393","_from":"16274","_to":"16258"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"22392","_from":"16273","_to":"16258"} +{"$label":"ACTS_IN","name":"Kaiphas","type":"Role","_key":"22391","_from":"16272","_to":"16258"} +{"$label":"ACTS_IN","name":"Zach\u00e4us","type":"Role","_key":"22390","_from":"16271","_to":"16258"} +{"$label":"ACTS_IN","name":"Kleopas","type":"Role","_key":"22389","_from":"16270","_to":"16258"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"22388","_from":"16269","_to":"16258"} +{"$label":"ACTS_IN","name":"Stephanus","type":"Role","_key":"22387","_from":"16268","_to":"16258"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"22386","_from":"16267","_to":"16258"} +{"$label":"ACTS_IN","name":"Paulus von Tarsus","type":"Role","_key":"22384","_from":"16266","_to":"16258"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"22383","_from":"16265","_to":"16258"} +{"$label":"ACTS_IN","name":"Kaleb","type":"Role","_key":"22382","_from":"16264","_to":"16258"} +{"$label":"ACTS_IN","name":"Der \u00c4thiopier","type":"Role","_key":"22377","_from":"16263","_to":"16258"} +{"$label":"ACTS_IN","name":"Simon Petrus","type":"Role","_key":"22373","_from":"16262","_to":"16258"} +{"$label":"ACTS_IN","name":"Messalina","type":"Role","_key":"22371","_from":"16261","_to":"16258"} +{"$label":"ACTS_IN","name":"Claudius","type":"Role","_key":"22368","_from":"16260","_to":"16258"} +{"$label":"ACTS_IN","name":"Nero","type":"Role","_key":"22363","_from":"16259","_to":"16258"} +{"$label":"ACTS_IN","name":"Robert Mariell","type":"Role","_key":"117512","_from":"16259","_to":"69093"} +{"$label":"ACTS_IN","name":"Kim Obrist","type":"Role","_key":"54536","_from":"16261","_to":"34950"} +{"$label":"ACTS_IN","name":"Teresa Raffo","type":"Role","_key":"30791","_from":"16261","_to":"21588"} +{"$label":"ACTS_IN","name":"himself \/ Cap. Kenneth Marshall","type":"Role","_key":"41638","_from":"16262","_to":"27947"} +{"$label":"ACTS_IN","name":"Kenneth Marshall","type":"Role","_key":"29994","_from":"16262","_to":"21171"} +{"$label":"ACTS_IN","name":"O'Connor Flood","type":"Role","_key":"110223","_from":"16263","_to":"65144"} +{"$label":"ACTS_IN","name":"Percy Senior","type":"Role","_key":"96870","_from":"16263","_to":"56966"} +{"$label":"ACTS_IN","name":"Judge Linton","type":"Role","_key":"25615","_from":"16264","_to":"18444"} +{"$label":"ACTS_IN","name":"Elizabeth 'Willie' Williams","type":"Role","_key":"99849","_from":"16265","_to":"58891"} +{"$label":"ACTS_IN","name":"Martini","type":"Role","_key":"66838","_from":"16268","_to":"41283"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"66252","_from":"16268","_to":"40976"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"57987","_from":"16268","_to":"36679"} +{"$label":"ACTS_IN","name":"Midan","type":"Role","_key":"23012","_from":"16268","_to":"16666"} +{"$label":"ACTS_IN","name":"K\u00f6nig Arjoch","type":"Role","_key":"22865","_from":"16268","_to":"16575"} +{"$label":"ACTS_IN","name":"Sultan","type":"Role","_key":"104792","_from":"16272","_to":"61650"} +{"$label":"ACTS_IN","name":"Michael Weyman","type":"Role","_key":"41683","_from":"16273","_to":"27972"} +{"$label":"ACTS_IN","name":"Father Alvito","type":"Role","_key":"109446","_from":"16278","_to":"64655"} +{"$label":"ACTS_IN","name":"Don Alfonso de la Torr\u00e9","type":"Role","_key":"70117","_from":"16278","_to":"42743"} +{"$label":"ACTS_IN","name":"Mrs. Harrington","type":"Role","_key":"46284","_from":"16283","_to":"30589"} +{"$label":"ACTS_IN","name":"Encolpio","type":"Role","_key":"68235","_from":"16289","_to":"41902"} +{"$label":"ACTS_IN","name":"Bruno Baldini","type":"Role","_key":"37398","_from":"16298","_to":"25346"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"24882","_from":"16298","_to":"17986"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"25966","_from":"16301","_to":"18668"} +{"$label":"ACTS_IN","name":"Jack Snr.","type":"Role","_key":"91141","_from":"16305","_to":"53767"} +{"$label":"DIRECTED","_key":"103639","_from":"16307","_to":"60957"} +{"$label":"DIRECTED","_key":"44255","_from":"16307","_to":"29492"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"22448","_from":"16317","_to":"16308"} +{"$label":"ACTS_IN","name":"Helen Wade","type":"Role","_key":"22447","_from":"16316","_to":"16308"} +{"$label":"ACTS_IN","name":"Rosario","type":"Role","_key":"22446","_from":"16315","_to":"16308"} +{"$label":"ACTS_IN","name":"Elaine Cominsky","type":"Role","_key":"22445","_from":"16314","_to":"16308"} +{"$label":"ACTS_IN","name":"Melanie Corman","type":"Role","_key":"22444","_from":"16313","_to":"16308"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"22443","_from":"16312","_to":"16308"} +{"$label":"ACTS_IN","name":"Howard Wade","type":"Role","_key":"22442","_from":"16311","_to":"16308"} +{"$label":"ACTS_IN","name":"Larry Kelson","type":"Role","_key":"22440","_from":"16310","_to":"16308"} +{"$label":"DIRECTED","_key":"22435","_from":"16309","_to":"16308"} +{"$label":"DIRECTED","_key":"68324","_from":"16309","_to":"41934"} +{"$label":"ACTS_IN","name":"Robert Deal","type":"Role","_key":"108141","_from":"16310","_to":"63912"} +{"$label":"ACTS_IN","name":"The Butterfly","type":"Role","_key":"61258","_from":"16310","_to":"38678"} +{"$label":"ACTS_IN","name":"Sir George Sinclair","type":"Role","_key":"110334","_from":"16311","_to":"65199"} +{"$label":"ACTS_IN","name":"Jason Council","type":"Role","_key":"58591","_from":"16312","_to":"37011"} +{"$label":"ACTS_IN","name":"Rosa Vasquez","type":"Role","_key":"96852","_from":"16315","_to":"56940"} +{"$label":"ACTS_IN","name":"Fatima","type":"Role","_key":"28267","_from":"16315","_to":"20232"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"120107","_from":"16317","_to":"70533"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"116138","_from":"16317","_to":"68383"} +{"$label":"ACTS_IN","name":"Tabitha","type":"Role","_key":"96750","_from":"16317","_to":"56913"} +{"$label":"ACTS_IN","name":"Chelsea","type":"Role","_key":"91080","_from":"16317","_to":"53744"} +{"$label":"ACTS_IN","name":"Jenna Whooly","type":"Role","_key":"58840","_from":"16317","_to":"37157"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"45005","_from":"16317","_to":"29901"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"22459","_from":"16330","_to":"16319"} +{"$label":"ACTS_IN","name":"Gigolo Joe","type":"Role","_key":"22458","_from":"16329","_to":"16319"} +{"$label":"ACTS_IN","name":"Albert Au","type":"Role","_key":"22457","_from":"16328","_to":"16319"} +{"$label":"ACTS_IN","name":"Ambulance driver","type":"Role","_key":"22456","_from":"16327","_to":"16319"} +{"$label":"ACTS_IN","name":"King Kong","type":"Role","_key":"22455","_from":"16326","_to":"16319"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"22454","_from":"16325","_to":"16319"} +{"$label":"ACTS_IN","name":"Hua","type":"Role","_key":"22453","_from":"16324","_to":"16319"} +{"$label":"ACTS_IN","name":"Mad Max","type":"Role","_key":"22452","_from":"16323","_to":"16319"} +{"$label":"ACTS_IN","name":"Ballerina","type":"Role","_key":"22451","_from":"16322","_to":"16319"} +{"$label":"ACTS_IN","name":"Supt. Nancy Ho","type":"Role","_key":"22450","_from":"16321","_to":"16319"} +{"$label":"DIRECTED","_key":"22449","_from":"16320","_to":"16319"} +{"$label":"ACTS_IN","name":"Zhen Li","type":"Role","_key":"111147","_from":"16320","_to":"65641"} +{"$label":"ACTS_IN","name":"Hon Sam","type":"Role","_key":"99565","_from":"16320","_to":"58693"} +{"$label":"ACTS_IN","name":"Inspector Chan","type":"Role","_key":"92571","_from":"16320","_to":"54644"} +{"$label":"ACTS_IN","name":"Many Liu","type":"Role","_key":"72347","_from":"16320","_to":"43691"} +{"$label":"ACTS_IN","name":"Hon Sam","type":"Role","_key":"71268","_from":"16320","_to":"43242"} +{"$label":"ACTS_IN","name":"Hon Sam","type":"Role","_key":"65698","_from":"16320","_to":"40692"} +{"$label":"ACTS_IN","name":"Ngok Lo","type":"Role","_key":"64569","_from":"16320","_to":"40218"} +{"$label":"ACTS_IN","name":"Roundhead \/ Blockhead","type":"Role","_key":"59836","_from":"16320","_to":"37785"} +{"$label":"ACTS_IN","name":"Fattie","type":"Role","_key":"22467","_from":"16320","_to":"16331"} +{"$label":"DIRECTED","_key":"67037","_from":"16320","_to":"41379"} +{"$label":"DIRECTED","_key":"22460","_from":"16320","_to":"16331"} +{"$label":"ACTS_IN","name":"Twins' Mother","type":"Role","_key":"117400","_from":"16321","_to":"69050"} +{"$label":"ACTS_IN","name":"Xiang Pei (Shanghai)","type":"Role","_key":"99427","_from":"16321","_to":"58590"} +{"$label":"ACTS_IN","name":"Supt. Nancy Ho","type":"Role","_key":"22475","_from":"16321","_to":"16337"} +{"$label":"ACTS_IN","name":"Supt. Nancy Ho","type":"Role","_key":"22471","_from":"16321","_to":"16331"} +{"$label":"ACTS_IN","name":"Supt. Walter Tsao","type":"Role","_key":"59852","_from":"16324","_to":"37785"} +{"$label":"ACTS_IN","name":"Wah","type":"Role","_key":"22485","_from":"16324","_to":"16343"} +{"$label":"ACTS_IN","name":"Hua","type":"Role","_key":"22463","_from":"16324","_to":"16331"} +{"$label":"ACTS_IN","name":"Ling Wu Chung","type":"Role","_key":"117785","_from":"16326","_to":"69234"} +{"$label":"ACTS_IN","name":"King Kong","type":"Role","_key":"22490","_from":"16326","_to":"16343"} +{"$label":"ACTS_IN","name":"Sam Hong Kong","type":"Role","_key":"22473","_from":"16326","_to":"16337"} +{"$label":"ACTS_IN","name":"King Kong","type":"Role","_key":"22461","_from":"16326","_to":"16331"} +{"$label":"ACTS_IN","name":"Albert Au","type":"Role","_key":"22494","_from":"16328","_to":"16343"} +{"$label":"ACTS_IN","name":"Albert Au","type":"Role","_key":"22474","_from":"16328","_to":"16337"} +{"$label":"ACTS_IN","name":"Albert Au","type":"Role","_key":"22462","_from":"16328","_to":"16331"} +{"$label":"ACTS_IN","name":"The Coffin Seller","type":"Role","_key":"119507","_from":"16329","_to":"70198"} +{"$label":"ACTS_IN","name":"Shaolin Student","type":"Role","_key":"117363","_from":"16329","_to":"69027"} +{"$label":"ACTS_IN","name":"Jaws Four","type":"Role","_key":"117311","_from":"16329","_to":"68995"} +{"$label":"ACTS_IN","name":"Lung Si","type":"Role","_key":"115774","_from":"16329","_to":"68165"} +{"$label":"ACTS_IN","name":". \tTeacher Li (as Tien Shih)","type":"Role","_key":"70506","_from":"16329","_to":"42916"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"22470","_from":"16330","_to":"16331"} +{"$label":"ACTS_IN","name":"Camco","type":"Role","_key":"22469","_from":"16336","_to":"16331"} +{"$label":"ACTS_IN","name":"Juju","type":"Role","_key":"22468","_from":"16335","_to":"16331"} +{"$label":"ACTS_IN","name":"Gunman","type":"Role","_key":"22466","_from":"16334","_to":"16331"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"22465","_from":"16333","_to":"16331"} +{"$label":"ACTS_IN","name":"Wong","type":"Role","_key":"22464","_from":"16332","_to":"16331"} +{"$label":"ACTS_IN","name":"Chiang Ho-Shan","type":"Role","_key":"117731","_from":"16333","_to":"69206"} +{"$label":"ACTS_IN","name":"Fuimo Funakoshi","type":"Role","_key":"114030","_from":"16333","_to":"67151"} +{"$label":"DIRECTED","_key":"117787","_from":"16336","_to":"69234"} +{"$label":"DIRECTED","_key":"117402","_from":"16336","_to":"69050"} +{"$label":"DIRECTED","_key":"108741","_from":"16336","_to":"64278"} +{"$label":"DIRECTED","_key":"65144","_from":"16336","_to":"40465"} +{"$label":"DIRECTED","_key":"64617","_from":"16336","_to":"40256"} +{"$label":"DIRECTED","_key":"64607","_from":"16336","_to":"40250"} +{"$label":"DIRECTED","_key":"64587","_from":"16336","_to":"40235"} +{"$label":"DIRECTED","_key":"53674","_from":"16336","_to":"34619"} +{"$label":"DIRECTED","_key":"22472","_from":"16336","_to":"16337"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"70062","_from":"16336","_to":"42717"} +{"$label":"ACTS_IN","name":"Father Cristmas","type":"Role","_key":"22480","_from":"16340","_to":"16337"} +{"$label":"ACTS_IN","name":"Oddjob","type":"Role","_key":"22479","_from":"16339","_to":"16337"} +{"$label":"ACTS_IN","name":"Queen of England","type":"Role","_key":"22478","_from":"16338","_to":"16337"} +{"$label":"DIRECTED","_key":"22481","_from":"16342","_to":"16341"} +{"$label":"DIRECTED","_key":"119514","_from":"16342","_to":"70206"} +{"$label":"DIRECTED","_key":"117401","_from":"16342","_to":"69050"} +{"$label":"DIRECTED","_key":"66338","_from":"16342","_to":"41032"} +{"$label":"DIRECTED","_key":"64389","_from":"16342","_to":"40128"} +{"$label":"ACTS_IN","name":"Brother Tief","type":"Role","_key":"22497","_from":"16354","_to":"16343"} +{"$label":"ACTS_IN","name":"Alberts Niece","type":"Role","_key":"22496","_from":"16353","_to":"16343"} +{"$label":"ACTS_IN","name":"Thung","type":"Role","_key":"22495","_from":"16352","_to":"16343"} +{"$label":"ACTS_IN","name":"Sister Tief","type":"Role","_key":"22493","_from":"16351","_to":"16343"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"22492","_from":"16350","_to":"16343"} +{"$label":"ACTS_IN","name":"Chinese Rambo","type":"Role","_key":"22491","_from":"16349","_to":"16343"} +{"$label":"ACTS_IN","name":"Blond Thung","type":"Role","_key":"22489","_from":"16348","_to":"16343"} +{"$label":"ACTS_IN","name":"Femal Agent","type":"Role","_key":"22488","_from":"16347","_to":"16343"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"22487","_from":"16346","_to":"16343"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"22483","_from":"16345","_to":"16343"} +{"$label":"DIRECTED","_key":"22482","_from":"16344","_to":"16343"} +{"$label":"ACTS_IN","name":"Master Lo","type":"Role","_key":"117744","_from":"16344","_to":"69216"} +{"$label":"DIRECTED","_key":"88677","_from":"16344","_to":"52549"} +{"$label":"DIRECTED","_key":"72309","_from":"16344","_to":"43677"} +{"$label":"ACTS_IN","name":"Bauer","type":"Role","_key":"58357","_from":"16348","_to":"36877"} +{"$label":"ACTS_IN","name":"Jack Newton","type":"Role","_key":"56760","_from":"16348","_to":"36045"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"117581","_from":"16349","_to":"69128"} +{"$label":"ACTS_IN","name":"Insp. Li Ying \/ Little Eagle","type":"Role","_key":"66070","_from":"16350","_to":"40883"} +{"$label":"ACTS_IN","name":"Blue Phoenix (as Fanny Yuen)","type":"Role","_key":"117778","_from":"16353","_to":"69234"} +{"$label":"ACTS_IN","name":"Miss Li","type":"Role","_key":"68136","_from":"16353","_to":"41849"} +{"$label":"ACTS_IN","name":"Zhuo Yi-Hang","type":"Role","_key":"117615","_from":"16354","_to":"69142"} +{"$label":"ACTS_IN","name":"Ho Po-wing","type":"Role","_key":"115845","_from":"16354","_to":"68201"} +{"$label":"ACTS_IN","name":"Yuddy","type":"Role","_key":"115784","_from":"16354","_to":"68169"} +{"$label":"ACTS_IN","name":"Tse-Kit Sung\/Billie","type":"Role","_key":"115772","_from":"16354","_to":"68165"} +{"$label":"ACTS_IN","name":"Ou-yang Feng","type":"Role","_key":"103845","_from":"16354","_to":"61067"} +{"$label":"ACTS_IN","name":"Sung Tse-Kit","type":"Role","_key":"70059","_from":"16354","_to":"42717"} +{"$label":"ACTS_IN","name":"Cheng Dieyi (segment \"Douzi\")","type":"Role","_key":"67183","_from":"16354","_to":"41446"} +{"$label":"ACTS_IN","name":"Ling Choi Sin","type":"Role","_key":"52277","_from":"16354","_to":"34038"} +{"$label":"ACTS_IN","name":"Ling Choi Sin","type":"Role","_key":"52271","_from":"16354","_to":"34034"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"22506","_from":"16356","_to":"16355"} +{"$label":"ACTS_IN","name":"Nighthawks Clerk","type":"Role","_key":"22512","_from":"16362","_to":"16357"} +{"$label":"ACTS_IN","name":"Janelle Rogers","type":"Role","_key":"22511","_from":"16361","_to":"16357"} +{"$label":"ACTS_IN","name":"Judy Tokuda","type":"Role","_key":"22510","_from":"16360","_to":"16357"} +{"$label":"ACTS_IN","name":"Hayley Stark","type":"Role","_key":"22509","_from":"16359","_to":"16357"} +{"$label":"DIRECTED","_key":"22507","_from":"16358","_to":"16357"} +{"$label":"DIRECTED","_key":"32213","_from":"16358","_to":"22456"} +{"$label":"ACTS_IN","name":"Joanie","type":"Role","_key":"118241","_from":"16359","_to":"69500"} +{"$label":"ACTS_IN","name":"Tracey Berkowitz","type":"Role","_key":"109949","_from":"16359","_to":"64962"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"101207","_from":"16359","_to":"59615"} +{"$label":"ACTS_IN","name":"Sylvia Likens","type":"Role","_key":"91992","_from":"16359","_to":"54274"} +{"$label":"ACTS_IN","name":"Vanessa Wetherhold","type":"Role","_key":"91874","_from":"16359","_to":"54202"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"71772","_from":"16359","_to":"43442"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"47733","_from":"16359","_to":"31437"} +{"$label":"ACTS_IN","name":"Juno MacGuff","type":"Role","_key":"46434","_from":"16359","_to":"30676"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"107206","_from":"16360","_to":"63230"} +{"$label":"ACTS_IN","name":"Madame Ming (Montr\u00e9al)","type":"Role","_key":"99445","_from":"16360","_to":"58590"} +{"$label":"ACTS_IN","name":"Ting Ting","type":"Role","_key":"88977","_from":"16360","_to":"52708"} +{"$label":"ACTS_IN","name":"Patti","type":"Role","_key":"66835","_from":"16360","_to":"41283"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"56700","_from":"16360","_to":"36013"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"55465","_from":"16360","_to":"35351"} +{"$label":"ACTS_IN","name":"Phyllis","type":"Role","_key":"34738","_from":"16360","_to":"23750"} +{"$label":"ACTS_IN","name":"Axe Maniac","type":"Role","_key":"22521","_from":"16366","_to":"16363"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"22520","_from":"16365","_to":"16363"} +{"$label":"ACTS_IN","name":"Linda Styles","type":"Role","_key":"22515","_from":"16364","_to":"16363"} +{"$label":"ACTS_IN","name":"Regine Dandridge","type":"Role","_key":"114857","_from":"16364","_to":"67657"} +{"$label":"ACTS_IN","name":"Jeri Dawn","type":"Role","_key":"66477","_from":"16364","_to":"41109"} +{"$label":"ACTS_IN","name":"Souteneur","type":"Role","_key":"71627","_from":"16365","_to":"43377"} +{"$label":"ACTS_IN","name":"Vigo","type":"Role","_key":"24644","_from":"16365","_to":"17819"} +{"$label":"ACTS_IN","name":"Kimmy","type":"Role","_key":"22541","_from":"16372","_to":"16368"} +{"$label":"ACTS_IN","name":"TV Repairman","type":"Role","_key":"22539","_from":"16371","_to":"16368"} +{"$label":"ACTS_IN","name":"David's Mother","type":"Role","_key":"22537","_from":"16370","_to":"16368"} +{"$label":"DIRECTED","_key":"22530","_from":"16369","_to":"16368"} +{"$label":"DIRECTED","_key":"61653","_from":"16369","_to":"38847"} +{"$label":"DIRECTED","_key":"46681","_from":"16369","_to":"30824"} +{"$label":"DIRECTED","_key":"31906","_from":"16369","_to":"22252"} +{"$label":"ACTS_IN","name":"Mrs. Wilkes","type":"Role","_key":"58683","_from":"16370","_to":"37064"} +{"$label":"ACTS_IN","name":"Gail Cornell","type":"Role","_key":"56247","_from":"16370","_to":"35738"} +{"$label":"ACTS_IN","name":"Henry Limpet","type":"Role","_key":"121566","_from":"16371","_to":"71426"} +{"$label":"ACTS_IN","name":"Gangster Theodore Ogelvie","type":"Role","_key":"116993","_from":"16371","_to":"68858"} +{"$label":"ACTS_IN","name":"Wheely Applegate","type":"Role","_key":"98695","_from":"16371","_to":"58168"} +{"$label":"ACTS_IN","name":"Inspector Winship","type":"Role","_key":"96208","_from":"16371","_to":"56552"} +{"$label":"ACTS_IN","name":"Luther Heggs","type":"Role","_key":"94027","_from":"16371","_to":"55371"} +{"$label":"ACTS_IN","name":"CHP Officer","type":"Role","_key":"72933","_from":"16371","_to":"43910"} +{"$label":"ACTS_IN","name":"Nervous Motorist","type":"Role","_key":"70822","_from":"16371","_to":"43041"} +{"$label":"ACTS_IN","name":"Mayor Turkey Lurkey","type":"Role","_key":"58933","_from":"16371","_to":"37214"} +{"$label":"ACTS_IN","name":"Sniffer","type":"Role","_key":"58781","_from":"16371","_to":"37126"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"59748","_from":"16372","_to":"37723"} +{"$label":"DIRECTED","_key":"22552","_from":"16380","_to":"16373"} +{"$label":"ACTS_IN","name":"Dick Grayson","type":"Role","_key":"22551","_from":"16379","_to":"16373"} +{"$label":"ACTS_IN","name":"Chief O'Hara","type":"Role","_key":"22550","_from":"16378","_to":"16373"} +{"$label":"ACTS_IN","name":"Commissioner Gordon","type":"Role","_key":"22548","_from":"16377","_to":"16373"} +{"$label":"ACTS_IN","name":"The Catwoman","type":"Role","_key":"22547","_from":"16376","_to":"16373"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"22543","_from":"16375","_to":"16373"} +{"$label":"ACTS_IN","name":"Bruce Wayne","type":"Role","_key":"22542","_from":"16374","_to":"16373"} +{"$label":"ACTS_IN","name":"Ace - Hollywood Chicken Little","type":"Role","_key":"58943","_from":"16374","_to":"37214"} +{"$label":"ACTS_IN","name":"Col. Dan McReady","type":"Role","_key":"46588","_from":"16374","_to":"30776"} +{"$label":"ACTS_IN","name":"Mayor Adam West","type":"Role","_key":"46097","_from":"16374","_to":"30453"} +{"$label":"ACTS_IN","name":"Miss Hastings","type":"Role","_key":"101172","_from":"16376","_to":"59602"} +{"$label":"ACTS_IN","name":"Harry Holt","type":"Role","_key":"118408","_from":"16377","_to":"69607"} +{"$label":"ACTS_IN","name":"Sheriff Drake Huston","type":"Role","_key":"22569","_from":"16389","_to":"16381"} +{"$label":"ACTS_IN","name":"Richard 'Little Dick' Wick","type":"Role","_key":"22568","_from":"16388","_to":"16381"} +{"$label":"ACTS_IN","name":"Grandpa Firefly","type":"Role","_key":"22565","_from":"16387","_to":"16381"} +{"$label":"ACTS_IN","name":"Rufus Firefly Jr.","type":"Role","_key":"22564","_from":"16386","_to":"16381"} +{"$label":"ACTS_IN","name":"Deputy Steve Naish","type":"Role","_key":"22563","_from":"16385","_to":"16381"} +{"$label":"ACTS_IN","name":"Mary Knowles","type":"Role","_key":"22561","_from":"16384","_to":"16381"} +{"$label":"ACTS_IN","name":"Denise Willis","type":"Role","_key":"22560","_from":"16383","_to":"16381"} +{"$label":"ACTS_IN","name":"Jerry Goldsmith","type":"Role","_key":"22559","_from":"16382","_to":"16381"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"109038","_from":"16384","_to":"64434"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"106797","_from":"16385","_to":"62951"} +{"$label":"ACTS_IN","name":"Bubba","type":"Role","_key":"36471","_from":"16387","_to":"24729"} +{"$label":"ACTS_IN","name":"Cardinal White","type":"Role","_key":"118305","_from":"16389","_to":"69543"} +{"$label":"ACTS_IN","name":"Dean Rickert","type":"Role","_key":"115369","_from":"16389","_to":"67930"} +{"$label":"ACTS_IN","name":"First Officer Dunn","type":"Role","_key":"22581","_from":"16393","_to":"16390"} +{"$label":"ACTS_IN","name":"The Sarge","type":"Role","_key":"22576","_from":"16392","_to":"16390"} +{"$label":"DIRECTED","_key":"22570","_from":"16391","_to":"16390"} +{"$label":"ACTS_IN","name":"Porter Ricks","type":"Role","_key":"121361","_from":"16392","_to":"71319"} +{"$label":"ACTS_IN","name":"Mr. Slausen","type":"Role","_key":"95263","_from":"16392","_to":"56053"} +{"$label":"ACTS_IN","name":"Tab Fielding","type":"Role","_key":"88028","_from":"16392","_to":"52257"} +{"$label":"ACTS_IN","name":"Himself (Archive Footage)","type":"Role","_key":"39383","_from":"16392","_to":"26628"} +{"$label":"ACTS_IN","name":"William Holloway","type":"Role","_key":"34140","_from":"16392","_to":"23449"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"22592","_from":"16399","_to":"16394"} +{"$label":"ACTS_IN","name":"Officer Husselbeck","type":"Role","_key":"22591","_from":"16398","_to":"16394"} +{"$label":"ACTS_IN","name":"Det. Eddie Walenski","type":"Role","_key":"22590","_from":"16397","_to":"16394"} +{"$label":"ACTS_IN","name":"Mr. Wall","type":"Role","_key":"22589","_from":"16396","_to":"16394"} +{"$label":"ACTS_IN","name":"Mr. Hand","type":"Role","_key":"22587","_from":"16395","_to":"16394"} +{"$label":"ACTS_IN","name":"Lord Hampton","type":"Role","_key":"91103","_from":"16395","_to":"53749"} +{"$label":"ACTS_IN","name":"Fico","type":"Role","_key":"28345","_from":"16395","_to":"20283"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"121598","_from":"16396","_to":"71440"} +{"$label":"ACTS_IN","name":"Baxter","type":"Role","_key":"121125","_from":"16396","_to":"71139"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"98957","_from":"16396","_to":"58296"} +{"$label":"ACTS_IN","name":"Jedediah","type":"Role","_key":"53316","_from":"16396","_to":"34472"} +{"$label":"ACTS_IN","name":"Gyro Captain","type":"Role","_key":"50878","_from":"16396","_to":"33209"} +{"$label":"ACTS_IN","name":"David Myers","type":"Role","_key":"55266","_from":"16397","_to":"35246"} +{"$label":"ACTS_IN","name":"Louis Strack Jr.","type":"Role","_key":"54651","_from":"16397","_to":"35004"} +{"$label":"ACTS_IN","name":"Morris Goodman","type":"Role","_key":"24090","_from":"16397","_to":"17467"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"104630","_from":"16398","_to":"61549"} +{"$label":"ACTS_IN","name":"Cleo Miller","type":"Role","_key":"109943","_from":"16399","_to":"64959"} +{"$label":"ACTS_IN","name":"Helen Westcott","type":"Role","_key":"103054","_from":"16399","_to":"60626"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"101898","_from":"16399","_to":"59972"} +{"$label":"ACTS_IN","name":"Kathy Lutz","type":"Role","_key":"60143","_from":"16399","_to":"37948"} +{"$label":"ACTS_IN","name":"Pru","type":"Role","_key":"56909","_from":"16399","_to":"36124"} +{"$label":"ACTS_IN","name":"Deanna Schine","type":"Role","_key":"51934","_from":"16399","_to":"33872"} +{"$label":"ACTS_IN","name":"Stella Oleson","type":"Role","_key":"32215","_from":"16399","_to":"22456"} +{"$label":"ACTS_IN","name":"Interviewee with Child","type":"Role","_key":"22604","_from":"16412","_to":"16400"} +{"$label":"ACTS_IN","name":"Man in Yellow Hat","type":"Role","_key":"22603","_from":"16411","_to":"16400"} +{"$label":"ACTS_IN","name":"Mary Brown","type":"Role","_key":"22602","_from":"16410","_to":"16400"} +{"$label":"ACTS_IN","name":"Fisherman With Glasses","type":"Role","_key":"22601","_from":"16409","_to":"16400"} +{"$label":"ACTS_IN","name":"Waitress (as Sandra Sanchez)","type":"Role","_key":"22600","_from":"16408","_to":"16400"} +{"$label":"ACTS_IN","name":"Interviewee","type":"Role","_key":"22599","_from":"16407","_to":"16400"} +{"$label":"ACTS_IN","name":"Short Fisherman","type":"Role","_key":"22598","_from":"16406","_to":"16400"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Williams","type":"Role","_key":"22597","_from":"16405","_to":"16400"} +{"$label":"ACTS_IN","name":"Joshua Leonard","type":"Role","_key":"22596","_from":"16404","_to":"16400"} +{"$label":"ACTS_IN","name":"Heather Donahue","type":"Role","_key":"22595","_from":"16403","_to":"16400"} +{"$label":"DIRECTED","_key":"22594","_from":"16402","_to":"16400"} +{"$label":"DIRECTED","_key":"22593","_from":"16401","_to":"16400"} +{"$label":"DIRECTED","_key":"102270","_from":"16401","_to":"60175"} +{"$label":"DIRECTED","_key":"101340","_from":"16401","_to":"59660"} +{"$label":"DIRECTED","_key":"100423","_from":"16402","_to":"59216"} +{"$label":"ACTS_IN","name":"Clark Stevens","type":"Role","_key":"111548","_from":"16404","_to":"65857"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"101252","_from":"16404","_to":"59627"} +{"$label":"ACTS_IN","name":"Justin Forrester","type":"Role","_key":"60182","_from":"16404","_to":"37970"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"32997","_from":"16404","_to":"22876"} +{"$label":"ACTS_IN","name":"Sgt. Trinoski","type":"Role","_key":"102267","_from":"16405","_to":"60175"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"100428","_from":"16405","_to":"59216"} +{"$label":"ACTS_IN","name":"Kilian","type":"Role","_key":"22611","_from":"16414","_to":"16413"} +{"$label":"ACTS_IN","name":"Major Heyward","type":"Role","_key":"53356","_from":"16414","_to":"34484"} +{"$label":"ACTS_IN","name":"K\u00f6nig Tynahs Berater","type":"Role","_key":"22646","_from":"16432","_to":"16415"} +{"$label":"ACTS_IN","name":"Lieutenant William Blighs Frau","type":"Role","_key":"22645","_from":"16431","_to":"16415"} +{"$label":"ACTS_IN","name":"K\u00f6nig Tynahs Frau","type":"Role","_key":"22644","_from":"16430","_to":"16415"} +{"$label":"ACTS_IN","name":"James Valentine","type":"Role","_key":"22642","_from":"16429","_to":"16415"} +{"$label":"ACTS_IN","name":"Michael Byrne","type":"Role","_key":"22641","_from":"16428","_to":"16415"} +{"$label":"ACTS_IN","name":"Robert Lamb","type":"Role","_key":"22640","_from":"16427","_to":"16415"} +{"$label":"ACTS_IN","name":"John Norton","type":"Role","_key":"22639","_from":"16426","_to":"16415"} +{"$label":"ACTS_IN","name":"John Mills","type":"Role","_key":"22636","_from":"16425","_to":"16415"} +{"$label":"ACTS_IN","name":"Matthew Quintal","type":"Role","_key":"22635","_from":"16424","_to":"16415"} +{"$label":"ACTS_IN","name":"William McCoy","type":"Role","_key":"22634","_from":"16423","_to":"16415"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"22633","_from":"16422","_to":"16415"} +{"$label":"ACTS_IN","name":"Thomas Heywood","type":"Role","_key":"22632","_from":"16421","_to":"16415"} +{"$label":"ACTS_IN","name":"Dr. John Huggan","type":"Role","_key":"22631","_from":"16420","_to":"16415"} +{"$label":"ACTS_IN","name":"John Adams","type":"Role","_key":"22629","_from":"16419","_to":"16415"} +{"$label":"ACTS_IN","name":"Mauatua","type":"Role","_key":"22628","_from":"16418","_to":"16415"} +{"$label":"ACTS_IN","name":"K\u00f6nig Tynah","type":"Role","_key":"22627","_from":"16417","_to":"16415"} +{"$label":"ACTS_IN","name":"Edward Young","type":"Role","_key":"22625","_from":"16416","_to":"16415"} +{"$label":"ACTS_IN","name":"Yeti","type":"Role","_key":"111811","_from":"16416","_to":"66002"} +{"$label":"ACTS_IN","name":"Chalky","type":"Role","_key":"62867","_from":"16416","_to":"39502"} +{"$label":"ACTS_IN","name":"Guardi (as Phil Davis)","type":"Role","_key":"55550","_from":"16416","_to":"35377"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"48121","_from":"16416","_to":"31620"} +{"$label":"ACTS_IN","name":"Det. Inspector Baird","type":"Role","_key":"36907","_from":"16416","_to":"25014"} +{"$label":"ACTS_IN","name":"Martin Burns","type":"Role","_key":"33998","_from":"16416","_to":"23390"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"59737","_from":"16422","_to":"37714"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"105943","_from":"16425","_to":"62378"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"103991","_from":"16425","_to":"61174"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"67928","_from":"16425","_to":"41735"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"51954","_from":"16431","_to":"33875"} +{"$label":"ACTS_IN","name":"Laurie Ann Winterbarger","type":"Role","_key":"22662","_from":"16442","_to":"16433"} +{"$label":"ACTS_IN","name":"William Denbrough - Age 12","type":"Role","_key":"22661","_from":"16441","_to":"16433"} +{"$label":"ACTS_IN","name":"Benjamin Hascom","type":"Role","_key":"22660","_from":"16440","_to":"16433"} +{"$label":"ACTS_IN","name":"Michael Hanlon","type":"Role","_key":"22659","_from":"16439","_to":"16433"} +{"$label":"ACTS_IN","name":"Benjamin Hascom - Age 12","type":"Role","_key":"22655","_from":"16438","_to":"16433"} +{"$label":"ACTS_IN","name":"Eddie Kaspbrak - Age 12","type":"Role","_key":"22654","_from":"16437","_to":"16433"} +{"$label":"ACTS_IN","name":"Eddie Kaspbrak","type":"Role","_key":"22653","_from":"16436","_to":"16433"} +{"$label":"ACTS_IN","name":"Richard Tozier","type":"Role","_key":"22651","_from":"16435","_to":"16433"} +{"$label":"DIRECTED","_key":"22648","_from":"16434","_to":"16433"} +{"$label":"DIRECTED","_key":"64998","_from":"16434","_to":"40388"} +{"$label":"DIRECTED","_key":"64479","_from":"16434","_to":"40170"} +{"$label":"DIRECTED","_key":"50549","_from":"16434","_to":"33011"} +{"$label":"ACTS_IN","name":"Doctor Heller","type":"Role","_key":"117419","_from":"16436","_to":"69060"} +{"$label":"ACTS_IN","name":"Clifford","type":"Role","_key":"118467","_from":"16440","_to":"69645"} +{"$label":"ACTS_IN","name":"Vaughan Cunningham","type":"Role","_key":"89897","_from":"16440","_to":"53200"} +{"$label":"ACTS_IN","name":"Zachary Hutton","type":"Role","_key":"89749","_from":"16440","_to":"53125"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"67734","_from":"16440","_to":"41649"} +{"$label":"ACTS_IN","name":"Robert Forrest","type":"Role","_key":"31039","_from":"16440","_to":"21724"} +{"$label":"ACTS_IN","name":"Matthew \/ Martha","type":"Role","_key":"118659","_from":"16441","_to":"69764"} +{"$label":"ACTS_IN","name":"Pvt. Lewis P. Wakely","type":"Role","_key":"64355","_from":"16441","_to":"40107"} +{"$label":"ACTS_IN","name":"Hope Henry","type":"Role","_key":"114747","_from":"16442","_to":"67588"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"59661","_from":"16442","_to":"37658"} +{"$label":"ACTS_IN","name":"Ashley Freund","type":"Role","_key":"52870","_from":"16442","_to":"34263"} +{"$label":"ACTS_IN","name":"Helen Shyres","type":"Role","_key":"46532","_from":"16442","_to":"30733"} +{"$label":"ACTS_IN","name":"Yoichi Asakawa","type":"Role","_key":"22673","_from":"16452","_to":"16443"} +{"$label":"ACTS_IN","name":"Koichi Asakawa","type":"Role","_key":"22672","_from":"16451","_to":"16443"} +{"$label":"ACTS_IN","name":"Yoshino","type":"Role","_key":"22671","_from":"16450","_to":"16443"} +{"$label":"ACTS_IN","name":"Takashi Yamamura","type":"Role","_key":"22670","_from":"16449","_to":"16443"} +{"$label":"ACTS_IN","name":"Masami Kurahashi","type":"Role","_key":"22669","_from":"16448","_to":"16443"} +{"$label":"ACTS_IN","name":"Tomoko Oishi","type":"Role","_key":"22668","_from":"16447","_to":"16443"} +{"$label":"ACTS_IN","name":"Mai Takano","type":"Role","_key":"22666","_from":"16446","_to":"16443"} +{"$label":"ACTS_IN","name":"Reiko Asakawa","type":"Role","_key":"22665","_from":"16445","_to":"16443"} +{"$label":"DIRECTED","_key":"22664","_from":"16444","_to":"16443"} +{"$label":"DIRECTED","_key":"88666","_from":"16444","_to":"52540"} +{"$label":"DIRECTED","_key":"62575","_from":"16444","_to":"39377"} +{"$label":"DIRECTED","_key":"55430","_from":"16444","_to":"35329"} +{"$label":"ACTS_IN","name":"Nui","type":"Role","_key":"100401","_from":"16446","_to":"59206"} +{"$label":"ACTS_IN","name":"Hermes","type":"Role","_key":"93784","_from":"16446","_to":"55214"} +{"$label":"ACTS_IN","name":"Mai Takano","type":"Role","_key":"55900","_from":"16446","_to":"35555"} +{"$label":"ACTS_IN","name":"Mai Takano","type":"Role","_key":"55425","_from":"16446","_to":"35329"} +{"$label":"ACTS_IN","name":"Masami Kurahashi","type":"Role","_key":"55426","_from":"16448","_to":"35329"} +{"$label":"ACTS_IN","name":"Yukio","type":"Role","_key":"71021","_from":"16450","_to":"43130"} +{"$label":"ACTS_IN","name":"Hattori Hanzou","type":"Role","_key":"60932","_from":"16450","_to":"38490"} +{"$label":"DIRECTED","_key":"22680","_from":"16458","_to":"16453"} +{"$label":"DIRECTED","_key":"22679","_from":"16457","_to":"16453"} +{"$label":"ACTS_IN","name":"Bouin","type":"Role","_key":"22678","_from":"16456","_to":"16453"} +{"$label":"ACTS_IN","name":"\u00c9milie","type":"Role","_key":"22677","_from":"16455","_to":"16453"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"22676","_from":"16454","_to":"16453"} +{"$label":"ACTS_IN","name":"2-e ami","type":"Role","_key":"40694","_from":"16454","_to":"27383"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"34077","_from":"16454","_to":"23415"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33359","_from":"16456","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30623","_from":"16456","_to":"21508"} +{"$label":"ACTS_IN","name":"Cavalieri","type":"Role","_key":"91313","_from":"16457","_to":"53854"} +{"$label":"ACTS_IN","name":"Le comte de Saint-Prix","type":"Role","_key":"50752","_from":"16457","_to":"33125"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"36331","_from":"16457","_to":"24646"} +{"$label":"ACTS_IN","name":"Flavigny","type":"Role","_key":"34679","_from":"16457","_to":"23728"} +{"$label":"ACTS_IN","name":"Jacques Necker","type":"Role","_key":"30221","_from":"16457","_to":"21284"} +{"$label":"DIRECTED","_key":"22688","_from":"16462","_to":"16459"} +{"$label":"ACTS_IN","name":"Corvino","type":"Role","_key":"22687","_from":"16464","_to":"16459"} +{"$label":"ACTS_IN","name":"L\u00e9one","type":"Role","_key":"22685","_from":"16463","_to":"16459"} +{"$label":"ACTS_IN","name":"Corbaccio","type":"Role","_key":"22684","_from":"16462","_to":"16459"} +{"$label":"ACTS_IN","name":"Mosca","type":"Role","_key":"22682","_from":"16461","_to":"16459"} +{"$label":"ACTS_IN","name":"Volpone","type":"Role","_key":"22681","_from":"16460","_to":"16459"} +{"$label":"ACTS_IN","name":"Margos","type":"Role","_key":"33881","_from":"16460","_to":"23338"} +{"$label":"ACTS_IN","name":"le pr\u00e9fet de police","type":"Role","_key":"33612","_from":"16460","_to":"23215"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"100057","_from":"16461","_to":"59021"} +{"$label":"ACTS_IN","name":"Juste Leblanc","type":"Role","_key":"53756","_from":"16461","_to":"34652"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"30195","_from":"16461","_to":"21280"} +{"$label":"DIRECTED","_key":"100054","_from":"16461","_to":"59021"} +{"$label":"ACTS_IN","name":"Georges Dolle","type":"Role","_key":"35499","_from":"16464","_to":"24138"} +{"$label":"ACTS_IN","name":"Insp. Edouard Grandpierre","type":"Role","_key":"34131","_from":"16464","_to":"23444"} +{"$label":"ACTS_IN","name":"J.L. Beauch\u00e9","type":"Role","_key":"33868","_from":"16464","_to":"23329"} +{"$label":"ACTS_IN","name":"Chefw\u00e4rter","type":"Role","_key":"24856","_from":"16464","_to":"17972"} +{"$label":"ACTS_IN","name":"Sarah Hughes","type":"Role","_key":"22703","_from":"16473","_to":"16465"} +{"$label":"ACTS_IN","name":"Professor der an Columbia Universit\u00e4t","type":"Role","_key":"22702","_from":"16472","_to":"16465"} +{"$label":"ACTS_IN","name":"Brasilianischer Geburtstags Junge","type":"Role","_key":"22701","_from":"16471","_to":"16465"} +{"$label":"ACTS_IN","name":"Lionel Prichard","type":"Role","_key":"22700","_from":"16470","_to":"16465"} +{"$label":"ACTS_IN","name":"Mrs. Nathan","type":"Role","_key":"22699","_from":"16469","_to":"16465"} +{"$label":"ACTS_IN","name":"Tracey Abernathy, die Apothekerin","type":"Role","_key":"22698","_from":"16468","_to":"16465"} +{"$label":"ACTS_IN","name":"SFC Cunningham","type":"Role","_key":"22697","_from":"16467","_to":"16465"} +{"$label":"ACTS_IN","name":"Morgan Hess","type":"Role","_key":"22692","_from":"16466","_to":"16465"} +{"$label":"ACTS_IN","name":"Rudy Prescott","type":"Role","_key":"99507","_from":"16466","_to":"58658"} +{"$label":"ACTS_IN","name":"Charlie Stiffle","type":"Role","_key":"97479","_from":"16466","_to":"57409"} +{"$label":"ACTS_IN","name":"Sam Merric","type":"Role","_key":"89203","_from":"16466","_to":"52824"} +{"$label":"ACTS_IN","name":"Johnny Parish","type":"Role","_key":"69259","_from":"16466","_to":"42348"} +{"$label":"ACTS_IN","name":"Pete D. Logand","type":"Role","_key":"56699","_from":"16466","_to":"36013"} +{"$label":"ACTS_IN","name":"10-Year-Old Igby","type":"Role","_key":"55609","_from":"16466","_to":"35408"} +{"$label":"ACTS_IN","name":"Lonnie","type":"Role","_key":"47445","_from":"16466","_to":"31257"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30170","_from":"16466","_to":"21251"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"120281","_from":"16468","_to":"70628"} +{"$label":"ACTS_IN","name":"Maureen 'Momo' Haines","type":"Role","_key":"119962","_from":"16468","_to":"70456"} +{"$label":"ACTS_IN","name":"Elliot Sherman","type":"Role","_key":"93154","_from":"16470","_to":"54901"} +{"$label":"DIRECTED","_key":"93153","_from":"16470","_to":"54901"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"22717","_from":"16479","_to":"16474"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"22716","_from":"16478","_to":"16474"} +{"$label":"ACTS_IN","name":"Cellan","type":"Role","_key":"22715","_from":"16477","_to":"16474"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"22714","_from":"16476","_to":"16474"} +{"$label":"ACTS_IN","name":"Nick Holloway","type":"Role","_key":"22706","_from":"16475","_to":"16474"} +{"$label":"ACTS_IN","name":"Ty Webb","type":"Role","_key":"116464","_from":"16475","_to":"68550"} +{"$label":"ACTS_IN","name":"Max Fielder","type":"Role","_key":"109321","_from":"16475","_to":"64585"} +{"$label":"ACTS_IN","name":"Tony Carlson","type":"Role","_key":"105325","_from":"16475","_to":"61977"} +{"$label":"ACTS_IN","name":"Tom Brandston","type":"Role","_key":"104638","_from":"16475","_to":"61555"} +{"$label":"ACTS_IN","name":"Irwin 'Fletch' Fletcher","type":"Role","_key":"101179","_from":"16475","_to":"59606"} +{"$label":"ACTS_IN","name":"Dr. Farthing","type":"Role","_key":"100898","_from":"16475","_to":"59482"} +{"$label":"ACTS_IN","name":"Andy Farmer","type":"Role","_key":"98884","_from":"16475","_to":"58269"} +{"$label":"ACTS_IN","name":"Dr. Grant","type":"Role","_key":"98537","_from":"16475","_to":"58071"} +{"$label":"ACTS_IN","name":"Ty Webb","type":"Role","_key":"73108","_from":"16475","_to":"43976"} +{"$label":"ACTS_IN","name":"Chris Thorne","type":"Role","_key":"72817","_from":"16475","_to":"43870"} +{"$label":"ACTS_IN","name":"Clark Griswold","type":"Role","_key":"69747","_from":"16475","_to":"42570"} +{"$label":"ACTS_IN","name":"Clark Griswold","type":"Role","_key":"69741","_from":"16475","_to":"42567"} +{"$label":"ACTS_IN","name":"Principal Marshall","type":"Role","_key":"69559","_from":"16475","_to":"42473"} +{"$label":"ACTS_IN","name":"Clark Griswold","type":"Role","_key":"68183","_from":"16475","_to":"41880"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"58162","_from":"16475","_to":"36795"} +{"$label":"ACTS_IN","name":"Irwin 'Fletch' Fletcher","type":"Role","_key":"56251","_from":"16475","_to":"35740"} +{"$label":"ACTS_IN","name":"Emmett Fitz-Hume","type":"Role","_key":"52441","_from":"16475","_to":"34119"} +{"$label":"ACTS_IN","name":"Dusty Bottoms","type":"Role","_key":"49466","_from":"16475","_to":"32393"} +{"$label":"ACTS_IN","name":"Clark Griswold","type":"Role","_key":"39620","_from":"16475","_to":"26781"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"33086","_from":"16475","_to":"22927"} +{"$label":"ACTS_IN","name":"Vince Grant","type":"Role","_key":"108907","_from":"16476","_to":"64360"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"22727","_from":"16482","_to":"16480"} +{"$label":"ACTS_IN","name":"Hippolyte","type":"Role","_key":"22723","_from":"16481","_to":"16480"} +{"$label":"DIRECTED","_key":"22740","_from":"16491","_to":"16483"} +{"$label":"ACTS_IN","name":"Isabel Allende Bussi","type":"Role","_key":"22737","_from":"16490","_to":"16483"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"22736","_from":"16489","_to":"16483"} +{"$label":"ACTS_IN","name":"Wiebke Reed","type":"Role","_key":"22735","_from":"16488","_to":"16483"} +{"$label":"ACTS_IN","name":"Maria Moese","type":"Role","_key":"22734","_from":"16487","_to":"16483"} +{"$label":"ACTS_IN","name":"Egon Krenz","type":"Role","_key":"22733","_from":"16486","_to":"16483"} +{"$label":"ACTS_IN","name":"Peter Boyles","type":"Role","_key":"22732","_from":"16485","_to":"16483"} +{"$label":"ACTS_IN","name":"Celino Bleiweiss","type":"Role","_key":"22731","_from":"16484","_to":"16483"} +{"$label":"ACTS_IN","name":"Zhaya","type":"Role","_key":"22745","_from":"16497","_to":"16492"} +{"$label":"ACTS_IN","name":"Sen Ge","type":"Role","_key":"22744","_from":"16496","_to":"16492"} +{"$label":"ACTS_IN","name":"Bater","type":"Role","_key":"22743","_from":"16495","_to":"16492"} +{"$label":"ACTS_IN","name":"Tuya","type":"Role","_key":"22742","_from":"16494","_to":"16492"} +{"$label":"DIRECTED","_key":"22741","_from":"16493","_to":"16492"} +{"$label":"ACTS_IN","name":"Anika","type":"Role","_key":"105922","_from":"16494","_to":"62361"} +{"$label":"DIRECTED","_key":"22757","_from":"16510","_to":"16498"} +{"$label":"ACTS_IN","name":"Dragi\u0161a","type":"Role","_key":"22756","_from":"16509","_to":"16498"} +{"$label":"ACTS_IN","name":"Ljubi\u0161a","type":"Role","_key":"22755","_from":"16508","_to":"16498"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"22754","_from":"16507","_to":"16498"} +{"$label":"ACTS_IN","name":"Marijana","type":"Role","_key":"22753","_from":"16506","_to":"16498"} +{"$label":"ACTS_IN","name":"Romika","type":"Role","_key":"22752","_from":"16505","_to":"16498"} +{"$label":"ACTS_IN","name":"Paraskeva","type":"Role","_key":"22751","_from":"16504","_to":"16498"} +{"$label":"ACTS_IN","name":"Sandokan","type":"Role","_key":"22750","_from":"16503","_to":"16498"} +{"$label":"ACTS_IN","name":"Bean","type":"Role","_key":"22749","_from":"16502","_to":"16498"} +{"$label":"ACTS_IN","name":"Satchmo","type":"Role","_key":"22748","_from":"16501","_to":"16498"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"22747","_from":"16500","_to":"16498"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"22746","_from":"16499","_to":"16498"} +{"$label":"ACTS_IN","name":"Ed Carson","type":"Role","_key":"22769","_from":"16515","_to":"16511"} +{"$label":"ACTS_IN","name":"Dylan Baxter","type":"Role","_key":"22767","_from":"16514","_to":"16511"} +{"$label":"ACTS_IN","name":"Jordan Baxter","type":"Role","_key":"22766","_from":"16513","_to":"16511"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"22765","_from":"16512","_to":"16511"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"108540","_from":"16512","_to":"64148"} +{"$label":"ACTS_IN","name":"Biggie Shorty","type":"Role","_key":"64552","_from":"16512","_to":"40205"} +{"$label":"ACTS_IN","name":"Innoko","type":"Role","_key":"59402","_from":"16512","_to":"37525"} +{"$label":"ACTS_IN","name":"Bessy the Cow","type":"Role","_key":"57857","_from":"16512","_to":"36614"} +{"$label":"ACTS_IN","name":"Stella (voice)","type":"Role","_key":"47100","_from":"16512","_to":"31057"} +{"$label":"ACTS_IN","name":"Carla Dunkirk","type":"Role","_key":"31954","_from":"16512","_to":"22284"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"31282","_from":"16512","_to":"21881"} +{"$label":"ACTS_IN","name":"Ben Tennyson","type":"Role","_key":"106613","_from":"16513","_to":"62820"} +{"$label":"ACTS_IN","name":"Chip Dove","type":"Role","_key":"121697","_from":"16514","_to":"71494"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"103535","_from":"16514","_to":"60904"} +{"$label":"ACTS_IN","name":"Paxton Harding","type":"Role","_key":"121451","_from":"16515","_to":"71349"} +{"$label":"ACTS_IN","name":"Stu Price","type":"Role","_key":"117490","_from":"16515","_to":"69087"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99728","_from":"16515","_to":"58816"} +{"$label":"ACTS_IN","name":"Nr.2- Stellvertreter des Kapit\u00e4ns","type":"Role","_key":"68851","_from":"16515","_to":"42177"} +{"$label":"DIRECTED","_key":"22823","_from":"16557","_to":"16516"} +{"$label":"ACTS_IN","name":"Edward Paradine","type":"Role","_key":"22822","_from":"16556","_to":"16516"} +{"$label":"ACTS_IN","name":"Claire Paradine","type":"Role","_key":"22821","_from":"16555","_to":"16516"} +{"$label":"ACTS_IN","name":"Heizer","type":"Role","_key":"22820","_from":"16554","_to":"16516"} +{"$label":"ACTS_IN","name":"Matrose in Rettungsboot 7","type":"Role","_key":"22819","_from":"16553","_to":"16516"} +{"$label":"ACTS_IN","name":"Matrose an der Gangway","type":"Role","_key":"22818","_from":"16552","_to":"16516"} +{"$label":"ACTS_IN","name":"Witwe","type":"Role","_key":"22817","_from":"16551","_to":"16516"} +{"$label":"ACTS_IN","name":"Italienische Frau","type":"Role","_key":"22816","_from":"16550","_to":"16516"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"22815","_from":"16549","_to":"16516"} +{"$label":"ACTS_IN","name":"Bartender Thomas J. McCormack","type":"Role","_key":"22814","_from":"16548","_to":"16516"} +{"$label":"ACTS_IN","name":"Perry Jack","type":"Role","_key":"22813","_from":"16547","_to":"16516"} +{"$label":"ACTS_IN","name":"Ophelia Jack","type":"Role","_key":"22812","_from":"16546","_to":"16516"} +{"$label":"ACTS_IN","name":"Quartiermeister Robert Hichens","type":"Role","_key":"22811","_from":"16545","_to":"16516"} +{"$label":"ACTS_IN","name":"Isidor Straus","type":"Role","_key":"22810","_from":"16544","_to":"16516"} +{"$label":"ACTS_IN","name":"Ida Straus","type":"Role","_key":"22809","_from":"16543","_to":"16516"} +{"$label":"ACTS_IN","name":"Funkoffizier der Californian","type":"Role","_key":"22808","_from":"16542","_to":"16516"} +{"$label":"ACTS_IN","name":"3. Offizier Groves","type":"Role","_key":"22807","_from":"16541","_to":"16516"} +{"$label":"ACTS_IN","name":"2. Offizier Stone","type":"Role","_key":"22806","_from":"16540","_to":"16516"} +{"$label":"ACTS_IN","name":"Ausguck Frederick Fleet","type":"Role","_key":"22805","_from":"16539","_to":"16516"} +{"$label":"ACTS_IN","name":"Ausguck Reginald Lee","type":"Role","_key":"22804","_from":"16538","_to":"16516"} +{"$label":"ACTS_IN","name":"Heizer","type":"Role","_key":"22803","_from":"16537","_to":"16516"} +{"$label":"ACTS_IN","name":"Alden Foley","type":"Role","_key":"22802","_from":"16536","_to":"16516"} +{"$label":"ACTS_IN","name":"Lulu Foley","type":"Role","_key":"22801","_from":"16535","_to":"16516"} +{"$label":"ACTS_IN","name":"4. Offizier Joseph G. Boxhall","type":"Role","_key":"22800","_from":"16534","_to":"16516"} +{"$label":"ACTS_IN","name":"1. Offizier Dean","type":"Role","_key":"22799","_from":"16533","_to":"16516"} +{"$label":"ACTS_IN","name":"Captain Stanley Lord","type":"Role","_key":"22798","_from":"16532","_to":"16516"} +{"$label":"ACTS_IN","name":"Chefmaschinist Joseph Bell","type":"Role","_key":"22797","_from":"16531","_to":"16516"} +{"$label":"ACTS_IN","name":"Steward Henry S. Etches","type":"Role","_key":"22793","_from":"16530","_to":"16516"} +{"$label":"ACTS_IN","name":"Marge Miller","type":"Role","_key":"22792","_from":"16529","_to":"16516"} +{"$label":"ACTS_IN","name":"Lorraine Allison","type":"Role","_key":"22791","_from":"16528","_to":"16516"} +{"$label":"ACTS_IN","name":"Hudson J. Allison","type":"Role","_key":"22790","_from":"16527","_to":"16516"} +{"$label":"ACTS_IN","name":"Clarinda Jack","type":"Role","_key":"22788","_from":"16526","_to":"16516"} +{"$label":"ACTS_IN","name":"Madeleine Astor","type":"Role","_key":"22787","_from":"16525","_to":"16516"} +{"$label":"ACTS_IN","name":"John Jacob Astor","type":"Role","_key":"22786","_from":"16524","_to":"16516"} +{"$label":"ACTS_IN","name":"Captain Arthur Henry Rostron","type":"Role","_key":"22785","_from":"16523","_to":"16516"} +{"$label":"ACTS_IN","name":"2. Offizier Charles H. Lightoller","type":"Role","_key":"22783","_from":"16522","_to":"16516"} +{"$label":"ACTS_IN","name":"1. Offizier William M. Murdoch","type":"Role","_key":"22782","_from":"16521","_to":"16516"} +{"$label":"ACTS_IN","name":"Alice Cleaver","type":"Role","_key":"22781","_from":"16520","_to":"16516"} +{"$label":"ACTS_IN","name":"Aase Ludvigsen","type":"Role","_key":"22780","_from":"16519","_to":"16516"} +{"$label":"ACTS_IN","name":"Jamie Perse","type":"Role","_key":"22779","_from":"16518","_to":"16516"} +{"$label":"ACTS_IN","name":"Bessie Allison","type":"Role","_key":"22777","_from":"16517","_to":"16516"} +{"$label":"ACTS_IN","name":"Amy Pagnozzi","type":"Role","_key":"121089","_from":"16517","_to":"71113"} +{"$label":"ACTS_IN","name":"Molly Jennings","type":"Role","_key":"43691","_from":"16517","_to":"29183"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"71726","_from":"16519","_to":"43418"} +{"$label":"ACTS_IN","name":"Richterin","type":"Role","_key":"41536","_from":"16519","_to":"27899"} +{"$label":"ACTS_IN","name":"Technician","type":"Role","_key":"112218","_from":"16521","_to":"66267"} +{"$label":"ACTS_IN","name":"Principal Whitcliff","type":"Role","_key":"56763","_from":"16522","_to":"36045"} +{"$label":"ACTS_IN","name":"Engelen","type":"Role","_key":"32641","_from":"16522","_to":"22682"} +{"$label":"ACTS_IN","name":"Dr. Anderson","type":"Role","_key":"47966","_from":"16523","_to":"31551"} +{"$label":"ACTS_IN","name":"Stanford","type":"Role","_key":"110847","_from":"16524","_to":"65478"} +{"$label":"ACTS_IN","name":"Barker","type":"Role","_key":"95190","_from":"16527","_to":"56004"} +{"$label":"ACTS_IN","name":"Grazziano","type":"Role","_key":"91547","_from":"16527","_to":"53960"} +{"$label":"ACTS_IN","name":"Frank Papale","type":"Role","_key":"71312","_from":"16527","_to":"43258"} +{"$label":"ACTS_IN","name":"Chief Citrine","type":"Role","_key":"63192","_from":"16527","_to":"39631"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"57898","_from":"16531","_to":"36625"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"98494","_from":"16532","_to":"58035"} +{"$label":"ACTS_IN","name":"Prof. Lionel Hudgens","type":"Role","_key":"88265","_from":"16532","_to":"52358"} +{"$label":"ACTS_IN","name":"Herbie","type":"Role","_key":"57897","_from":"16534","_to":"36625"} +{"$label":"ACTS_IN","name":"Dr. Andy Harrison","type":"Role","_key":"52193","_from":"16534","_to":"34007"} +{"$label":"ACTS_IN","name":"Dr. Raymond Ardmore","type":"Role","_key":"40791","_from":"16534","_to":"27452"} +{"$label":"ACTS_IN","name":"Engelan","type":"Role","_key":"32637","_from":"16534","_to":"22682"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"118237","_from":"16535","_to":"69500"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"114831","_from":"16535","_to":"67641"} +{"$label":"ACTS_IN","name":"Hannah Wippler","type":"Role","_key":"113906","_from":"16535","_to":"67089"} +{"$label":"ACTS_IN","name":"Madeline Finney","type":"Role","_key":"62759","_from":"16535","_to":"39453"} +{"$label":"ACTS_IN","name":"Gary Percy Rils","type":"Role","_key":"45229","_from":"16537","_to":"30022"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"114696","_from":"16538","_to":"67561"} +{"$label":"ACTS_IN","name":"Roman","type":"Role","_key":"56320","_from":"16538","_to":"35784"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"114745","_from":"16546","_to":"67588"} +{"$label":"ACTS_IN","name":"Bree","type":"Role","_key":"103411","_from":"16546","_to":"60831"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"90427","_from":"16546","_to":"53428"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"62800","_from":"16546","_to":"39467"} +{"$label":"ACTS_IN","name":"Ginger Fitzgerald","type":"Role","_key":"57504","_from":"16546","_to":"36439"} +{"$label":"ACTS_IN","name":"Tina Blake","type":"Role","_key":"46533","_from":"16546","_to":"30733"} +{"$label":"ACTS_IN","name":"Agent Stone","type":"Role","_key":"60805","_from":"16548","_to":"38408"} +{"$label":"ACTS_IN","name":"Ed Gates","type":"Role","_key":"60998","_from":"16554","_to":"38538"} +{"$label":"ACTS_IN","name":"General Doar","type":"Role","_key":"56905","_from":"16554","_to":"36116"} +{"$label":"ACTS_IN","name":"Toa Lewa, Turaga Onewa (voice)","type":"Role","_key":"119732","_from":"16556","_to":"70313"} +{"$label":"DIRECTED","_key":"106869","_from":"16557","_to":"63003"} +{"$label":"DIRECTED","_key":"105196","_from":"16557","_to":"61913"} +{"$label":"DIRECTED","_key":"95663","_from":"16557","_to":"56264"} +{"$label":"DIRECTED","_key":"65029","_from":"16557","_to":"40406"} +{"$label":"DIRECTED","_key":"56907","_from":"16557","_to":"36116"} +{"$label":"DIRECTED","_key":"22846","_from":"16574","_to":"16558"} +{"$label":"ACTS_IN","name":"Bigthan","type":"Role","_key":"22845","_from":"16573","_to":"16558"} +{"$label":"ACTS_IN","name":"Bote","type":"Role","_key":"22843","_from":"16572","_to":"16558"} +{"$label":"ACTS_IN","name":"Dalfon","type":"Role","_key":"22842","_from":"16571","_to":"16558"} +{"$label":"ACTS_IN","name":"Schetar","type":"Role","_key":"22841","_from":"16570","_to":"16558"} +{"$label":"ACTS_IN","name":"Zeresch","type":"Role","_key":"22840","_from":"16569","_to":"16558"} +{"$label":"ACTS_IN","name":"Hauptmann der Wache","type":"Role","_key":"22839","_from":"16568","_to":"16558"} +{"$label":"ACTS_IN","name":"Admatha","type":"Role","_key":"22838","_from":"16567","_to":"16558"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"22837","_from":"16566","_to":"16558"} +{"$label":"ACTS_IN","name":"Nehemia","type":"Role","_key":"22836","_from":"16565","_to":"16558"} +{"$label":"ACTS_IN","name":"Karschena","type":"Role","_key":"22834","_from":"16564","_to":"16558"} +{"$label":"ACTS_IN","name":"Maimuna","type":"Role","_key":"22833","_from":"16563","_to":"16558"} +{"$label":"ACTS_IN","name":"Hegai","type":"Role","_key":"22832","_from":"16562","_to":"16558"} +{"$label":"ACTS_IN","name":"Memuchan","type":"Role","_key":"22831","_from":"16561","_to":"16558"} +{"$label":"ACTS_IN","name":"Esra","type":"Role","_key":"22829","_from":"16560","_to":"16558"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Waschti","type":"Role","_key":"22828","_from":"16559","_to":"16558"} +{"$label":"ACTS_IN","name":"Sofia Provolone","type":"Role","_key":"72573","_from":"16559","_to":"43762"} +{"$label":"ACTS_IN","name":"Principessa Cristina","type":"Role","_key":"69849","_from":"16559","_to":"42625"} +{"$label":"ACTS_IN","name":"Lisa Silvestri","type":"Role","_key":"67102","_from":"16559","_to":"41412"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39501","_from":"16559","_to":"26693"} +{"$label":"ACTS_IN","name":"Francesca, la dircetora","type":"Role","_key":"37931","_from":"16559","_to":"25681"} +{"$label":"ACTS_IN","name":"Merc\u00e9d\u00e8s","type":"Role","_key":"32544","_from":"16559","_to":"22629"} +{"$label":"ACTS_IN","name":"Val\u00e9rie","type":"Role","_key":"28988","_from":"16559","_to":"20698"} +{"$label":"ACTS_IN","name":"Princess Aura","type":"Role","_key":"28343","_from":"16559","_to":"20283"} +{"$label":"ACTS_IN","name":"Mathilde Figura","type":"Role","_key":"25907","_from":"16559","_to":"18639"} +{"$label":"ACTS_IN","name":"Mathilde Figura","type":"Role","_key":"25881","_from":"16559","_to":"18633"} +{"$label":"ACTS_IN","name":"Rico Santorini","type":"Role","_key":"35044","_from":"16561","_to":"23908"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33353","_from":"16561","_to":"23096"} +{"$label":"ACTS_IN","name":"Count Tiretta","type":"Role","_key":"31446","_from":"16561","_to":"21964"} +{"$label":"ACTS_IN","name":"Count von Holstein","type":"Role","_key":"27337","_from":"16561","_to":"19647"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"27146","_from":"16561","_to":"19525"} +{"$label":"ACTS_IN","name":"Tribun","type":"Role","_key":"22902","_from":"16561","_to":"16608"} +{"$label":"ACTS_IN","name":"Stall Holder","type":"Role","_key":"107905","_from":"16567","_to":"63713"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"48117","_from":"16567","_to":"31620"} +{"$label":"ACTS_IN","name":"Isai","type":"Role","_key":"23143","_from":"16568","_to":"16763"} +{"$label":"ACTS_IN","name":"Coffey","type":"Role","_key":"106103","_from":"16571","_to":"62481"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"26368","_from":"16572","_to":"18940"} +{"$label":"DIRECTED","_key":"23040","_from":"16574","_to":"16697"} +{"$label":"ACTS_IN","name":"K\u00f6nig Kedor-Laomer","type":"Role","_key":"22878","_from":"16592","_to":"16575"} +{"$label":"ACTS_IN","name":"Engel","type":"Role","_key":"22876","_from":"16591","_to":"16575"} +{"$label":"ACTS_IN","name":"Serug als Kind","type":"Role","_key":"22874","_from":"16590","_to":"16575"} +{"$label":"ACTS_IN","name":"Sodomiter","type":"Role","_key":"22873","_from":"16589","_to":"16575"} +{"$label":"ACTS_IN","name":"\u00c4gyptischer Hauptmann","type":"Role","_key":"22872","_from":"16588","_to":"16575"} +{"$label":"ACTS_IN","name":"\u00c4gyptischer Priester","type":"Role","_key":"22870","_from":"16587","_to":"16575"} +{"$label":"ACTS_IN","name":"Gocemar","type":"Role","_key":"22869","_from":"16586","_to":"16575"} +{"$label":"ACTS_IN","name":"K\u00f6nig Tidal","type":"Role","_key":"22868","_from":"16585","_to":"16575"} +{"$label":"ACTS_IN","name":"K\u00f6nig von Haran","type":"Role","_key":"22867","_from":"16584","_to":"16575"} +{"$label":"ACTS_IN","name":"Isaak als Heranwachsender","type":"Role","_key":"22861","_from":"16583","_to":"16575"} +{"$label":"ACTS_IN","name":"Ismael als Heranwachsender","type":"Role","_key":"22859","_from":"16582","_to":"16575"} +{"$label":"ACTS_IN","name":"Ismael als Kind","type":"Role","_key":"22858","_from":"16581","_to":"16575"} +{"$label":"ACTS_IN","name":"Reuma","type":"Role","_key":"22857","_from":"16580","_to":"16575"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"22856","_from":"16579","_to":"16575"} +{"$label":"ACTS_IN","name":"Serug","type":"Role","_key":"22855","_from":"16578","_to":"16575"} +{"$label":"ACTS_IN","name":"Lots Frau","type":"Role","_key":"22854","_from":"16577","_to":"16575"} +{"$label":"ACTS_IN","name":"Hagar","type":"Role","_key":"22850","_from":"16576","_to":"16575"} +{"$label":"ACTS_IN","name":"Butch","type":"Role","_key":"44280","_from":"16586","_to":"29509"} +{"$label":"ACTS_IN","name":"Neighbour","type":"Role","_key":"66199","_from":"16591","_to":"40953"} +{"$label":"DIRECTED","_key":"22887","_from":"16599","_to":"16593"} +{"$label":"ACTS_IN","name":"Gardien de la gu\u00e9rite","type":"Role","_key":"22886","_from":"16598","_to":"16593"} +{"$label":"ACTS_IN","name":"Zaynab","type":"Role","_key":"22885","_from":"16597","_to":"16593"} +{"$label":"ACTS_IN","name":"Mirza Quadir","type":"Role","_key":"22884","_from":"16596","_to":"16593"} +{"$label":"ACTS_IN","name":"Yassin","type":"Role","_key":"22883","_from":"16595","_to":"16593"} +{"$label":"ACTS_IN","name":"Dastaguir","type":"Role","_key":"22882","_from":"16594","_to":"16593"} +{"$label":"DIRECTED","_key":"22894","_from":"16606","_to":"16600"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"22892","_from":"16605","_to":"16600"} +{"$label":"ACTS_IN","name":"Kain","type":"Role","_key":"22891","_from":"16604","_to":"16600"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"22890","_from":"16603","_to":"16600"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"22889","_from":"16602","_to":"16600"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"22888","_from":"16601","_to":"16600"} +{"$label":"ACTS_IN","name":"Don Jaime Astarloa","type":"Role","_key":"112205","_from":"16601","_to":"66264"} +{"$label":"ACTS_IN","name":"Ludovico","type":"Role","_key":"89363","_from":"16601","_to":"52887"} +{"$label":"ACTS_IN","name":"Jakobus der \u00c4ltere","type":"Role","_key":"22920","_from":"16628","_to":"16608"} +{"$label":"ACTS_IN","name":"Sklave","type":"Role","_key":"22919","_from":"16627","_to":"16608"} +{"$label":"ACTS_IN","name":"Mann in Lystra # 2","type":"Role","_key":"22918","_from":"16626","_to":"16608"} +{"$label":"ACTS_IN","name":"Mann im Tempel # 3","type":"Role","_key":"22917","_from":"16625","_to":"16608"} +{"$label":"ACTS_IN","name":"Mann im Tempel # 2","type":"Role","_key":"22916","_from":"16624","_to":"16608"} +{"$label":"ACTS_IN","name":"Mann im Tempel # 1","type":"Role","_key":"22915","_from":"16623","_to":"16608"} +{"$label":"ACTS_IN","name":"Wache","type":"Role","_key":"22914","_from":"16622","_to":"16608"} +{"$label":"ACTS_IN","name":"Aquila","type":"Role","_key":"22913","_from":"16621","_to":"16608"} +{"$label":"ACTS_IN","name":"Mann in Lystra","type":"Role","_key":"22912","_from":"16620","_to":"16608"} +{"$label":"ACTS_IN","name":"Hagar","type":"Role","_key":"22910","_from":"16619","_to":"16608"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"22909","_from":"16618","_to":"16608"} +{"$label":"ACTS_IN","name":"Stephanus","type":"Role","_key":"22908","_from":"16617","_to":"16608"} +{"$label":"ACTS_IN","name":"Ananias","type":"Role","_key":"22907","_from":"16616","_to":"16608"} +{"$label":"ACTS_IN","name":"Amos","type":"Role","_key":"22905","_from":"16615","_to":"16608"} +{"$label":"ACTS_IN","name":"Jakobus","type":"Role","_key":"22903","_from":"16614","_to":"16608"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"22901","_from":"16613","_to":"16608"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"22899","_from":"16612","_to":"16608"} +{"$label":"ACTS_IN","name":"Simon Petrus","type":"Role","_key":"22898","_from":"16611","_to":"16608"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"22897","_from":"16610","_to":"16608"} +{"$label":"ACTS_IN","name":"Paulus","type":"Role","_key":"22895","_from":"16609","_to":"16608"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"23644","_from":"16613","_to":"17139"} +{"$label":"ACTS_IN","name":"Tom Gregory","type":"Role","_key":"71813","_from":"16614","_to":"43461"} +{"$label":"ACTS_IN","name":"Junger Mann","type":"Role","_key":"23165","_from":"16626","_to":"16763"} +{"$label":"ACTS_IN","name":"Beverly Taylor","type":"Role","_key":"22925","_from":"16631","_to":"16629"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"22924","_from":"16630","_to":"16629"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"89212","_from":"16630","_to":"52826"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"51756","_from":"16630","_to":"33772"} +{"$label":"ACTS_IN","name":"Herr Gabor","type":"Role","_key":"27164","_from":"16630","_to":"19531"} +{"$label":"ACTS_IN","name":"Allison Turner","type":"Role","_key":"89211","_from":"16631","_to":"52826"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"51755","_from":"16631","_to":"33772"} +{"$label":"ACTS_IN","name":"Wendla Bergmann","type":"Role","_key":"27160","_from":"16631","_to":"19531"} +{"$label":"DIRECTED","_key":"22961","_from":"16654","_to":"16632"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"22960","_from":"16653","_to":"16632"} +{"$label":"ACTS_IN","name":"H\u00e4ndler","type":"Role","_key":"22959","_from":"16652","_to":"16632"} +{"$label":"ACTS_IN","name":"Dienerin","type":"Role","_key":"22957","_from":"16651","_to":"16632"} +{"$label":"ACTS_IN","name":"Schafhirte im Sturm","type":"Role","_key":"22956","_from":"16650","_to":"16632"} +{"$label":"ACTS_IN","name":"Mann # 2","type":"Role","_key":"22955","_from":"16649","_to":"16632"} +{"$label":"ACTS_IN","name":"Mann # 1","type":"Role","_key":"22954","_from":"16648","_to":"16632"} +{"$label":"ACTS_IN","name":"Hirte am Brunnen # 2","type":"Role","_key":"22952","_from":"16647","_to":"16632"} +{"$label":"ACTS_IN","name":"Hirte am Brunnen # 1","type":"Role","_key":"22951","_from":"16646","_to":"16632"} +{"$label":"ACTS_IN","name":"Ruben als Kleinkind","type":"Role","_key":"22950","_from":"16645","_to":"16632"} +{"$label":"ACTS_IN","name":"Schafhirte","type":"Role","_key":"22949","_from":"16644","_to":"16632"} +{"$label":"ACTS_IN","name":"Hebamme","type":"Role","_key":"22948","_from":"16643","_to":"16632"} +{"$label":"ACTS_IN","name":"Trurim","type":"Role","_key":"22947","_from":"16642","_to":"16632"} +{"$label":"ACTS_IN","name":"Gaham","type":"Role","_key":"22946","_from":"16641","_to":"16632"} +{"$label":"ACTS_IN","name":"Jobonaham","type":"Role","_key":"22945","_from":"16640","_to":"16632"} +{"$label":"ACTS_IN","name":"Kanaaniter # 2","type":"Role","_key":"22944","_from":"16639","_to":"16632"} +{"$label":"ACTS_IN","name":"Kanaaniter # 1","type":"Role","_key":"22943","_from":"16638","_to":"16632"} +{"$label":"ACTS_IN","name":"Bilha","type":"Role","_key":"22941","_from":"16637","_to":"16632"} +{"$label":"ACTS_IN","name":"Ruben","type":"Role","_key":"22940","_from":"16636","_to":"16632"} +{"$label":"ACTS_IN","name":"Wahrsager","type":"Role","_key":"22939","_from":"16635","_to":"16632"} +{"$label":"ACTS_IN","name":"Beor","type":"Role","_key":"22938","_from":"16634","_to":"16632"} +{"$label":"ACTS_IN","name":"Morasch","type":"Role","_key":"22937","_from":"16633","_to":"16632"} +{"$label":"ACTS_IN","name":"Col. Hans Landa","type":"Role","_key":"110262","_from":"16633","_to":"65170"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"58320","_from":"16633","_to":"36872"} +{"$label":"ACTS_IN","name":"Becker","type":"Role","_key":"53710","_from":"16633","_to":"34633"} +{"$label":"ACTS_IN","name":"Toni Peters","type":"Role","_key":"49625","_from":"16633","_to":"32478"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"30990","_from":"16633","_to":"21698"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"54462","_from":"16634","_to":"34920"} +{"$label":"ACTS_IN","name":"Tronald Dump","type":"Role","_key":"52774","_from":"16634","_to":"34237"} +{"$label":"ACTS_IN","name":"Christoph Schwenk","type":"Role","_key":"52541","_from":"16634","_to":"34160"} +{"$label":"ACTS_IN","name":"Fred Wischnewski","type":"Role","_key":"52418","_from":"16634","_to":"34106"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"44112","_from":"16634","_to":"29413"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"97171","_from":"16636","_to":"57155"} +{"$label":"ACTS_IN","name":"Spiller","type":"Role","_key":"23211","_from":"16636","_to":"16831"} +{"$label":"ACTS_IN","name":"Ronnie Pearce","type":"Role","_key":"66861","_from":"16638","_to":"41287"} +{"$label":"ACTS_IN","name":"Ittai","type":"Role","_key":"23148","_from":"16639","_to":"16763"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22976","_from":"16665","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22975","_from":"16664","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22974","_from":"16663","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22973","_from":"16662","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22972","_from":"16661","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22971","_from":"16660","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22970","_from":"16659","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22968","_from":"16658","_to":"16655"} +{"$label":"ACTS_IN","name":"a","type":"Role","_key":"22966","_from":"16657","_to":"16655"} +{"$label":"DIRECTED","_key":"22962","_from":"16656","_to":"16655"} +{"$label":"ACTS_IN","name":"Frank Ventura","type":"Role","_key":"37439","_from":"16657","_to":"25365"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"27921","_from":"16657","_to":"20017"} +{"$label":"ACTS_IN","name":"Joven","type":"Role","_key":"26974","_from":"16658","_to":"19402"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"26959","_from":"16658","_to":"19391"} +{"$label":"ACTS_IN","name":"Jim Turner","type":"Role","_key":"26178","_from":"16660","_to":"18800"} +{"$label":"ACTS_IN","name":"Hayd\u00e9e","type":"Role","_key":"32525","_from":"16662","_to":"22623"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31397","_from":"16664","_to":"21940"} +{"$label":"ACTS_IN","name":"Mann am Roten Meer","type":"Role","_key":"23018","_from":"16696","_to":"16666"} +{"$label":"ACTS_IN","name":"Feldherr","type":"Role","_key":"23016","_from":"16695","_to":"16666"} +{"$label":"ACTS_IN","name":"Pharao Merneftas Frau","type":"Role","_key":"23015","_from":"16694","_to":"16666"} +{"$label":"ACTS_IN","name":"Hebamme","type":"Role","_key":"23014","_from":"16693","_to":"16666"} +{"$label":"ACTS_IN","name":"Mirjam als Kind","type":"Role","_key":"23013","_from":"16692","_to":"16666"} +{"$label":"ACTS_IN","name":"Bruder","type":"Role","_key":"23011","_from":"16691","_to":"16666"} +{"$label":"ACTS_IN","name":"Mann # 2","type":"Role","_key":"23010","_from":"16690","_to":"16666"} +{"$label":"ACTS_IN","name":"Mann # 1","type":"Role","_key":"23009","_from":"16689","_to":"16666"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"23008","_from":"16688","_to":"16666"} +{"$label":"ACTS_IN","name":"Batim","type":"Role","_key":"23007","_from":"16687","_to":"16666"} +{"$label":"ACTS_IN","name":"Ptiras Dienerin","type":"Role","_key":"23006","_from":"16686","_to":"16666"} +{"$label":"ACTS_IN","name":"Wache","type":"Role","_key":"23003","_from":"16685","_to":"16666"} +{"$label":"ACTS_IN","name":"Ai","type":"Role","_key":"23002","_from":"16684","_to":"16666"} +{"$label":"ACTS_IN","name":"Ehemann","type":"Role","_key":"23001","_from":"16683","_to":"16666"} +{"$label":"ACTS_IN","name":"Pharao Mernefta als Heranwachsender","type":"Role","_key":"23000","_from":"16682","_to":"16666"} +{"$label":"ACTS_IN","name":"Moses als Heranwachsender","type":"Role","_key":"22999","_from":"16681","_to":"16666"} +{"$label":"ACTS_IN","name":"Pharao Mernefta als Kind","type":"Role","_key":"22998","_from":"16680","_to":"16666"} +{"$label":"ACTS_IN","name":"Moses als Kind","type":"Role","_key":"22997","_from":"16679","_to":"16666"} +{"$label":"ACTS_IN","name":"Aufseher","type":"Role","_key":"22996","_from":"16678","_to":"16666"} +{"$label":"ACTS_IN","name":"Kaleb","type":"Role","_key":"22995","_from":"16677","_to":"16666"} +{"$label":"ACTS_IN","name":"Palti","type":"Role","_key":"22994","_from":"16676","_to":"16666"} +{"$label":"ACTS_IN","name":"Nachbi","type":"Role","_key":"22993","_from":"16675","_to":"16666"} +{"$label":"ACTS_IN","name":"Eliav","type":"Role","_key":"22992","_from":"16674","_to":"16666"} +{"$label":"ACTS_IN","name":"Zippora","type":"Role","_key":"22991","_from":"16673","_to":"16666"} +{"$label":"ACTS_IN","name":"Hur","type":"Role","_key":"22990","_from":"16672","_to":"16666"} +{"$label":"ACTS_IN","name":"Jochebet","type":"Role","_key":"22989","_from":"16671","_to":"16666"} +{"$label":"ACTS_IN","name":"Hoherpriester","type":"Role","_key":"22987","_from":"16670","_to":"16666"} +{"$label":"ACTS_IN","name":"Tuntmin","type":"Role","_key":"22982","_from":"16669","_to":"16666"} +{"$label":"ACTS_IN","name":"Josua","type":"Role","_key":"22981","_from":"16668","_to":"16666"} +{"$label":"ACTS_IN","name":"Ptira","type":"Role","_key":"22980","_from":"16667","_to":"16666"} +{"$label":"ACTS_IN","name":"Francesca Falcone","type":"Role","_key":"119151","_from":"16667","_to":"70024"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"72035","_from":"16667","_to":"43560"} +{"$label":"ACTS_IN","name":"Madre de Silvia","type":"Role","_key":"32196","_from":"16667","_to":"22444"} +{"$label":"ACTS_IN","name":"Madame Plens","type":"Role","_key":"25909","_from":"16667","_to":"18639"} +{"$label":"ACTS_IN","name":"Madame Plens","type":"Role","_key":"25882","_from":"16667","_to":"18633"} +{"$label":"ACTS_IN","name":"Riccardo Broschi","type":"Role","_key":"66947","_from":"16668","_to":"41331"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"31637","_from":"16668","_to":"22083"} +{"$label":"ACTS_IN","name":"Guglielmo De Witt","type":"Role","_key":"103589","_from":"16669","_to":"60927"} +{"$label":"ACTS_IN","name":"La Motte","type":"Role","_key":"72136","_from":"16669","_to":"43603"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"71939","_from":"16669","_to":"43522"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"35657","_from":"16669","_to":"24235"} +{"$label":"ACTS_IN","name":"Barista","type":"Role","_key":"34263","_from":"16669","_to":"23511"} +{"$label":"ACTS_IN","name":"D'Estaing","type":"Role","_key":"31184","_from":"16669","_to":"21829"} +{"$label":"ACTS_IN","name":"Roger Daverty","type":"Role","_key":"28638","_from":"16669","_to":"20467"} +{"$label":"ACTS_IN","name":"Bill Farrell","type":"Role","_key":"62446","_from":"16670","_to":"39336"} +{"$label":"ACTS_IN","name":"James I","type":"Role","_key":"52989","_from":"16670","_to":"34323"} +{"$label":"ACTS_IN","name":"Dr. Brazil","type":"Role","_key":"47692","_from":"16670","_to":"31415"} +{"$label":"ACTS_IN","name":"Ruby Archuleta","type":"Role","_key":"94727","_from":"16673","_to":"55796"} +{"$label":"ACTS_IN","name":"Leni Lamaison","type":"Role","_key":"71661","_from":"16673","_to":"43388"} +{"$label":"ACTS_IN","name":"Liesl","type":"Role","_key":"44878","_from":"16673","_to":"29854"} +{"$label":"ACTS_IN","name":"Josephine Pogue","type":"Role","_key":"39838","_from":"16673","_to":"26919"} +{"$label":"ACTS_IN","name":"Pablo's mother","type":"Role","_key":"37907","_from":"16673","_to":"25667"} +{"$label":"ACTS_IN","name":"Teresa Casillas","type":"Role","_key":"31108","_from":"16673","_to":"21771"} +{"$label":"ACTS_IN","name":"Federico Soldani","type":"Role","_key":"105723","_from":"16675","_to":"62239"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"98212","_from":"16675","_to":"57854"} +{"$label":"ACTS_IN","name":"Beamter","type":"Role","_key":"42376","_from":"16683","_to":"28358"} +{"$label":"ACTS_IN","name":"Martin Kleefeld","type":"Role","_key":"42153","_from":"16683","_to":"28239"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"40915","_from":"16683","_to":"27527"} +{"$label":"ACTS_IN","name":"Gaius","type":"Role","_key":"23039","_from":"16713","_to":"16697"} +{"$label":"ACTS_IN","name":"\u00c4ltester","type":"Role","_key":"23038","_from":"16712","_to":"16697"} +{"$label":"ACTS_IN","name":"Senator","type":"Role","_key":"23037","_from":"16711","_to":"16697"} +{"$label":"ACTS_IN","name":"Braut","type":"Role","_key":"23036","_from":"16710","_to":"16697"} +{"$label":"ACTS_IN","name":"Lucius","type":"Role","_key":"23035","_from":"16709","_to":"16697"} +{"$label":"ACTS_IN","name":"Johanan","type":"Role","_key":"23034","_from":"16708","_to":"16697"} +{"$label":"ACTS_IN","name":"Silvanus","type":"Role","_key":"23033","_from":"16707","_to":"16697"} +{"$label":"ACTS_IN","name":"Herakles","type":"Role","_key":"23030","_from":"16706","_to":"16697"} +{"$label":"ACTS_IN","name":"Corvus","type":"Role","_key":"23029","_from":"16705","_to":"16697"} +{"$label":"ACTS_IN","name":"Hermes","type":"Role","_key":"23028","_from":"16704","_to":"16697"} +{"$label":"ACTS_IN","name":"Marcellus","type":"Role","_key":"23027","_from":"16703","_to":"16697"} +{"$label":"ACTS_IN","name":"Kaiser Domitian","type":"Role","_key":"23026","_from":"16702","_to":"16697"} +{"$label":"ACTS_IN","name":"Demetrius","type":"Role","_key":"23025","_from":"16701","_to":"16697"} +{"$label":"ACTS_IN","name":"Ionicus","type":"Role","_key":"23024","_from":"16700","_to":"16697"} +{"$label":"ACTS_IN","name":"Valerius","type":"Role","_key":"23022","_from":"16699","_to":"16697"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"23021","_from":"16698","_to":"16697"} +{"$label":"ACTS_IN","name":"Eik Meiers","type":"Role","_key":"91520","_from":"16699","_to":"53951"} +{"$label":"ACTS_IN","name":"Alexander Wenninger","type":"Role","_key":"68526","_from":"16699","_to":"42024"} +{"$label":"ACTS_IN","name":"Achim Pazurek","type":"Role","_key":"44359","_from":"16699","_to":"29557"} +{"$label":"ACTS_IN","name":"Dolokhov","type":"Role","_key":"38436","_from":"16699","_to":"25954"} +{"$label":"ACTS_IN","name":"Georg Spalatin","type":"Role","_key":"38412","_from":"16699","_to":"25944"} +{"$label":"ACTS_IN","name":"Paul Wegener","type":"Role","_key":"36341","_from":"16699","_to":"24651"} +{"$label":"ACTS_IN","name":"Makler","type":"Role","_key":"40093","_from":"16700","_to":"27060"} +{"$label":"ACTS_IN","name":"Freund","type":"Role","_key":"50156","_from":"16701","_to":"32793"} +{"$label":"ACTS_IN","name":"Lt. Macgruder","type":"Role","_key":"90391","_from":"16702","_to":"53411"} +{"$label":"ACTS_IN","name":"Jacob Kell","type":"Role","_key":"88694","_from":"16702","_to":"52556"} +{"$label":"ACTS_IN","name":"Damodar","type":"Role","_key":"72355","_from":"16702","_to":"43696"} +{"$label":"ACTS_IN","name":"Charles Rane","type":"Role","_key":"63930","_from":"16702","_to":"39932"} +{"$label":"ACTS_IN","name":"Damodar","type":"Role","_key":"52883","_from":"16702","_to":"34276"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"91009","_from":"16708","_to":"53699"} +{"$label":"ACTS_IN","name":"Prosper","type":"Role","_key":"54414","_from":"16708","_to":"34901"} +{"$label":"ACTS_IN","name":"Charlie Chaplin","type":"Role","_key":"41399","_from":"16708","_to":"27828"} +{"$label":"ACTS_IN","name":"PC Biran Andrews","type":"Role","_key":"98419","_from":"16709","_to":"57978"} +{"$label":"ACTS_IN","name":"Rod Lariani \/ Porn Director","type":"Role","_key":"105728","_from":"16712","_to":"62239"} +{"$label":"ACTS_IN","name":"Franz Josef Guicciardi","type":"Role","_key":"95987","_from":"16712","_to":"56429"} +{"$label":"ACTS_IN","name":"Gino Sciaccaluga","type":"Role","_key":"45566","_from":"16713","_to":"30163"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"23049","_from":"16716","_to":"16714"} +{"$label":"ACTS_IN","name":"Public Prosecutor","type":"Role","_key":"23048","_from":"16715","_to":"16714"} +{"$label":"ACTS_IN","name":"Superintendant","type":"Role","_key":"37598","_from":"16715","_to":"25485"} +{"$label":"ACTS_IN","name":"Heurtebise","type":"Role","_key":"32671","_from":"16715","_to":"22696"} +{"$label":"ACTS_IN","name":"Rosinsky","type":"Role","_key":"27151","_from":"16715","_to":"19528"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33574","_from":"16716","_to":"23204"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"23082","_from":"16740","_to":"16717"} +{"$label":"ACTS_IN","name":"Male Dancer 2","type":"Role","_key":"23081","_from":"16739","_to":"16717"} +{"$label":"ACTS_IN","name":"Male Dancer 1","type":"Role","_key":"23080","_from":"16738","_to":"16717"} +{"$label":"ACTS_IN","name":"Dancer 3","type":"Role","_key":"23079","_from":"16737","_to":"16717"} +{"$label":"ACTS_IN","name":"Dancer 2","type":"Role","_key":"23078","_from":"16736","_to":"16717"} +{"$label":"ACTS_IN","name":"Dancer 1","type":"Role","_key":"23077","_from":"16735","_to":"16717"} +{"$label":"ACTS_IN","name":"Marilyn Monroe","type":"Role","_key":"23076","_from":"16734","_to":"16717"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"23075","_from":"16733","_to":"16717"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"23074","_from":"16732","_to":"16717"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"23072","_from":"16731","_to":"16717"} +{"$label":"ACTS_IN","name":"Tennis Player","type":"Role","_key":"23071","_from":"16730","_to":"16717"} +{"$label":"ACTS_IN","name":"Tennis Player","type":"Role","_key":"23070","_from":"16729","_to":"16717"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"23069","_from":"16728","_to":"16717"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"23068","_from":"16727","_to":"16717"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"23067","_from":"16726","_to":"16717"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"23066","_from":"16725","_to":"16717"} +{"$label":"ACTS_IN","name":"Luzia","type":"Role","_key":"23065","_from":"16724","_to":"16717"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"23063","_from":"16723","_to":"16717"} +{"$label":"ACTS_IN","name":"Rafa","type":"Role","_key":"23062","_from":"16722","_to":"16717"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"23061","_from":"16721","_to":"16717"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"23060","_from":"16720","_to":"16717"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"23058","_from":"16719","_to":"16717"} +{"$label":"DIRECTED","_key":"23057","_from":"16718","_to":"16717"} +{"$label":"ACTS_IN","name":"Rafael Gonz\u00e1lez","type":"Role","_key":"54508","_from":"16720","_to":"34933"} +{"$label":"ACTS_IN","name":"Rafi","type":"Role","_key":"40769","_from":"16720","_to":"27436"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"106458","_from":"16724","_to":"62716"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"48186","_from":"16729","_to":"31649"} +{"$label":"ACTS_IN","name":"Marisol","type":"Role","_key":"23793","_from":"16735","_to":"17253"} +{"$label":"ACTS_IN","name":"Noemi","type":"Role","_key":"38870","_from":"16740","_to":"26255"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"23098","_from":"16747","_to":"16741"} +{"$label":"ACTS_IN","name":"Osama Bin Ladin","type":"Role","_key":"23097","_from":"16746","_to":"16741"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"23096","_from":"16745","_to":"16741"} +{"$label":"ACTS_IN","name":"Officer Greg","type":"Role","_key":"23091","_from":"16744","_to":"16741"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"23088","_from":"16743","_to":"16741"} +{"$label":"ACTS_IN","name":"Mohammed","type":"Role","_key":"23087","_from":"16742","_to":"16741"} +{"$label":"ACTS_IN","name":"Preach","type":"Role","_key":"64489","_from":"16744","_to":"40179"} +{"$label":"ACTS_IN","name":"Estelle Horan","type":"Role","_key":"46538","_from":"16747","_to":"30733"} +{"$label":"ACTS_IN","name":"Emile Devries","type":"Role","_key":"23108","_from":"16753","_to":"16748"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"23107","_from":"16752","_to":"16748"} +{"$label":"ACTS_IN","name":"Tanh","type":"Role","_key":"23106","_from":"16751","_to":"16748"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"23105","_from":"16750","_to":"16748"} +{"$label":"DIRECTED","_key":"23099","_from":"16749","_to":"16748"} +{"$label":"DIRECTED","_key":"101286","_from":"16749","_to":"59637"} +{"$label":"DIRECTED","_key":"60485","_from":"16749","_to":"38170"} +{"$label":"DIRECTED","_key":"31223","_from":"16749","_to":"21854"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"48840","_from":"16753","_to":"32023"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"23118","_from":"16762","_to":"16754"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"23117","_from":"16761","_to":"16754"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"23116","_from":"16760","_to":"16754"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"23115","_from":"16759","_to":"16754"} +{"$label":"ACTS_IN","name":"Helge","type":"Role","_key":"23114","_from":"16758","_to":"16754"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"23113","_from":"16757","_to":"16754"} +{"$label":"ACTS_IN","name":"Nina Maron","type":"Role","_key":"23112","_from":"16756","_to":"16754"} +{"$label":"DIRECTED","_key":"23109","_from":"16755","_to":"16754"} +{"$label":"ACTS_IN","name":"Karin Schwarz","type":"Role","_key":"42695","_from":"16757","_to":"28571"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"42502","_from":"16757","_to":"28457"} +{"$label":"ACTS_IN","name":"Carla Giuliano","type":"Role","_key":"42170","_from":"16757","_to":"28249"} +{"$label":"ACTS_IN","name":"Sara Stertz","type":"Role","_key":"26607","_from":"16757","_to":"19123"} +{"$label":"ACTS_IN","name":"Mihai","type":"Role","_key":"89375","_from":"16759","_to":"52890"} +{"$label":"ACTS_IN","name":"G\u00fcnther Franken","type":"Role","_key":"52416","_from":"16759","_to":"34105"} +{"$label":"ACTS_IN","name":"Hausmeister in der Skihalle","type":"Role","_key":"48409","_from":"16759","_to":"31768"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"39574","_from":"16759","_to":"26738"} +{"$label":"ACTS_IN","name":"Yeti","type":"Role","_key":"31454","_from":"16759","_to":"21968"} +{"$label":"DIRECTED","_key":"23175","_from":"16808","_to":"16763"} +{"$label":"ACTS_IN","name":"\u00c4ltester im Zeltlager # 2","type":"Role","_key":"23173","_from":"16807","_to":"16763"} +{"$label":"ACTS_IN","name":"\u00c4ltester im Zeltlager # 1","type":"Role","_key":"23172","_from":"16806","_to":"16763"} +{"$label":"ACTS_IN","name":"Fusssoldat","type":"Role","_key":"23171","_from":"16805","_to":"16763"} +{"$label":"ACTS_IN","name":"Fusssoldat","type":"Role","_key":"23170","_from":"16804","_to":"16763"} +{"$label":"ACTS_IN","name":"Hauptmann","type":"Role","_key":"23169","_from":"16803","_to":"16763"} +{"$label":"ACTS_IN","name":"\u00c4ltester bei Schama # 2","type":"Role","_key":"23168","_from":"16802","_to":"16763"} +{"$label":"ACTS_IN","name":"\u00c4ltester bei Schama # 1","type":"Role","_key":"23167","_from":"16801","_to":"16763"} +{"$label":"ACTS_IN","name":"Urijas Soldat","type":"Role","_key":"23166","_from":"16800","_to":"16763"} +{"$label":"ACTS_IN","name":"Sauls Diener","type":"Role","_key":"23164","_from":"16799","_to":"16763"} +{"$label":"ACTS_IN","name":"Anf\u00fchrer der Philister","type":"Role","_key":"23163","_from":"16798","_to":"16763"} +{"$label":"ACTS_IN","name":"Richter # 2","type":"Role","_key":"23162","_from":"16797","_to":"16763"} +{"$label":"ACTS_IN","name":"Richter # 1","type":"Role","_key":"23161","_from":"16796","_to":"16763"} +{"$label":"ACTS_IN","name":"Nahasch","type":"Role","_key":"23159","_from":"16795","_to":"16763"} +{"$label":"ACTS_IN","name":"Anf\u00fchrer der Jebusiten","type":"Role","_key":"23158","_from":"16794","_to":"16763"} +{"$label":"ACTS_IN","name":"K\u00f6nig Achisch","type":"Role","_key":"23157","_from":"16793","_to":"16763"} +{"$label":"ACTS_IN","name":"Feldsoldat","type":"Role","_key":"23156","_from":"16792","_to":"16763"} +{"$label":"ACTS_IN","name":"Joabs Diener","type":"Role","_key":"23155","_from":"16791","_to":"16763"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"23154","_from":"16790","_to":"16763"} +{"$label":"ACTS_IN","name":"Schama","type":"Role","_key":"23153","_from":"16789","_to":"16763"} +{"$label":"ACTS_IN","name":"Agag","type":"Role","_key":"23152","_from":"16788","_to":"16763"} +{"$label":"ACTS_IN","name":"Ahimaz","type":"Role","_key":"23151","_from":"16787","_to":"16763"} +{"$label":"ACTS_IN","name":"Mahalon","type":"Role","_key":"23150","_from":"16786","_to":"16763"} +{"$label":"ACTS_IN","name":"Schimi","type":"Role","_key":"23149","_from":"16785","_to":"16763"} +{"$label":"ACTS_IN","name":"Frau aus Tekoa","type":"Role","_key":"23147","_from":"16784","_to":"16763"} +{"$label":"ACTS_IN","name":"Jonadab","type":"Role","_key":"23146","_from":"16783","_to":"16763"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"23145","_from":"16782","_to":"16763"} +{"$label":"ACTS_IN","name":"Attent\u00e4ter","type":"Role","_key":"23144","_from":"16781","_to":"16763"} +{"$label":"ACTS_IN","name":"Ahimelech","type":"Role","_key":"23142","_from":"16780","_to":"16763"} +{"$label":"ACTS_IN","name":"Huschai","type":"Role","_key":"23141","_from":"16779","_to":"16763"} +{"$label":"ACTS_IN","name":"Goliath","type":"Role","_key":"23139","_from":"16778","_to":"16763"} +{"$label":"ACTS_IN","name":"Salomon","type":"Role","_key":"23138","_from":"16777","_to":"16763"} +{"$label":"ACTS_IN","name":"Urija","type":"Role","_key":"23137","_from":"16776","_to":"16763"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"23135","_from":"16775","_to":"16763"} +{"$label":"ACTS_IN","name":"Ahitofel","type":"Role","_key":"23134","_from":"16774","_to":"16763"} +{"$label":"ACTS_IN","name":"Zadok","type":"Role","_key":"23133","_from":"16773","_to":"16763"} +{"$label":"ACTS_IN","name":"Pinka","type":"Role","_key":"23132","_from":"16772","_to":"16763"} +{"$label":"ACTS_IN","name":"Michal","type":"Role","_key":"23130","_from":"16771","_to":"16763"} +{"$label":"ACTS_IN","name":"Tamar","type":"Role","_key":"23129","_from":"16770","_to":"16763"} +{"$label":"ACTS_IN","name":"Amnon","type":"Role","_key":"23128","_from":"16769","_to":"16763"} +{"$label":"ACTS_IN","name":"Abschalom","type":"Role","_key":"23127","_from":"16768","_to":"16763"} +{"$label":"ACTS_IN","name":"David als Heranwachsender","type":"Role","_key":"23125","_from":"16767","_to":"16763"} +{"$label":"ACTS_IN","name":"Abner","type":"Role","_key":"23124","_from":"16766","_to":"16763"} +{"$label":"ACTS_IN","name":"Jonatan","type":"Role","_key":"23123","_from":"16765","_to":"16763"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"23119","_from":"16764","_to":"16763"} +{"$label":"ACTS_IN","name":"Cassio","type":"Role","_key":"109181","_from":"16764","_to":"64502"} +{"$label":"ACTS_IN","name":"Ollie","type":"Role","_key":"93388","_from":"16764","_to":"55005"} +{"$label":"ACTS_IN","name":"Master Gracey","type":"Role","_key":"65497","_from":"16764","_to":"40601"} +{"$label":"ACTS_IN","name":"Martin Tanley","type":"Role","_key":"55110","_from":"16764","_to":"35188"} +{"$label":"ACTS_IN","name":"Goat","type":"Role","_key":"50891","_from":"16765","_to":"33214"} +{"$label":"ACTS_IN","name":"Captain Dawson","type":"Role","_key":"39004","_from":"16765","_to":"26360"} +{"$label":"ACTS_IN","name":"Rachel Lesno","type":"Role","_key":"91090","_from":"16770","_to":"53747"} +{"$label":"ACTS_IN","name":"Annabelle Peltz","type":"Role","_key":"57270","_from":"16770","_to":"36323"} +{"$label":"ACTS_IN","name":"Sgt Shadrach Bickerstaff","type":"Role","_key":"92021","_from":"16774","_to":"54290"} +{"$label":"ACTS_IN","name":"Agnese Borsellino","type":"Role","_key":"119153","_from":"16775","_to":"70024"} +{"$label":"ACTS_IN","name":"Pedro Muzquiz","type":"Role","_key":"115197","_from":"16776","_to":"67843"} +{"$label":"ACTS_IN","name":"Salvatore als Jugendlicher","type":"Role","_key":"68595","_from":"16776","_to":"42055"} +{"$label":"ACTS_IN","name":"Johnny Madrid","type":"Role","_key":"61743","_from":"16776","_to":"38881"} +{"$label":"ACTS_IN","name":"Jules Land","type":"Role","_key":"114044","_from":"16779","_to":"67156"} +{"$label":"ACTS_IN","name":"Veronica's Father","type":"Role","_key":"89409","_from":"16780","_to":"52924"} +{"$label":"ACTS_IN","name":"Zakar","type":"Role","_key":"68218","_from":"16780","_to":"41891"} +{"$label":"ACTS_IN","name":"Dr. Blanchard","type":"Role","_key":"30628","_from":"16780","_to":"21508"} +{"$label":"ACTS_IN","name":"Luca Scardi, Vater","type":"Role","_key":"27898","_from":"16780","_to":"19995"} +{"$label":"ACTS_IN","name":"Maxim","type":"Role","_key":"27524","_from":"16782","_to":"19747"} +{"$label":"ACTS_IN","name":"Ringo (voice)","type":"Role","_key":"88046","_from":"16785","_to":"52265"} +{"$label":"ACTS_IN","name":"Partonov","type":"Role","_key":"50357","_from":"16792","_to":"32894"} +{"$label":"ACTS_IN","name":"Col. Petrovic","type":"Role","_key":"27216","_from":"16792","_to":"19565"} +{"$label":"ACTS_IN","name":"Mr. Musgrove","type":"Role","_key":"110903","_from":"16793","_to":"65506"} +{"$label":"ACTS_IN","name":"Camford Dean","type":"Role","_key":"59688","_from":"16793","_to":"37685"} +{"$label":"DIRECTED","_key":"66703","_from":"16808","_to":"41210"} +{"$label":"ACTS_IN","name":"La dame des PTT","type":"Role","_key":"23191","_from":"16821","_to":"16809"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"23190","_from":"16820","_to":"16809"} +{"$label":"ACTS_IN","name":"Lucienne","type":"Role","_key":"23189","_from":"16819","_to":"16809"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"23188","_from":"16818","_to":"16809"} +{"$label":"ACTS_IN","name":"Un inspecteur","type":"Role","_key":"23187","_from":"16817","_to":"16809"} +{"$label":"ACTS_IN","name":"Le pr\u00e9fet de police","type":"Role","_key":"23185","_from":"16816","_to":"16809"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal","type":"Role","_key":"23184","_from":"16815","_to":"16809"} +{"$label":"ACTS_IN","name":"Le vendeur de pierres","type":"Role","_key":"23181","_from":"16814","_to":"16809"} +{"$label":"ACTS_IN","name":"Le concierge","type":"Role","_key":"23180","_from":"16813","_to":"16809"} +{"$label":"ACTS_IN","name":"L'optitien","type":"Role","_key":"23179","_from":"16812","_to":"16809"} +{"$label":"ACTS_IN","name":"Mirecourt","type":"Role","_key":"23178","_from":"16811","_to":"16809"} +{"$label":"DIRECTED","_key":"23176","_from":"16810","_to":"16809"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"34604","_from":"16811","_to":"23684"} +{"$label":"ACTS_IN","name":"Baron von Krantz","type":"Role","_key":"33613","_from":"16811","_to":"23215"} +{"$label":"ACTS_IN","name":"St\u00e9phane Donnacil","type":"Role","_key":"31835","_from":"16811","_to":"22219"} +{"$label":"ACTS_IN","name":"Dr. Severin","type":"Role","_key":"25077","_from":"16811","_to":"18116"} +{"$label":"ACTS_IN","name":"Abadie","type":"Role","_key":"38055","_from":"16812","_to":"25746"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71979","_from":"16813","_to":"43534"} +{"$label":"ACTS_IN","name":"Kappel","type":"Role","_key":"42843","_from":"16814","_to":"28642"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"28447","_from":"16814","_to":"20343"} +{"$label":"ACTS_IN","name":"Chanteur","type":"Role","_key":"23735","_from":"16814","_to":"17206"} +{"$label":"DIRECTED","_key":"23194","_from":"16824","_to":"16822"} +{"$label":"ACTS_IN","name":"Richard Nixon (Archivmaterial)","type":"Role","_key":"23193","_from":"16823","_to":"16822"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"23204","_from":"16830","_to":"16826"} +{"$label":"ACTS_IN","name":"Fadela","type":"Role","_key":"23202","_from":"16829","_to":"16826"} +{"$label":"ACTS_IN","name":"Bill Lee","type":"Role","_key":"23197","_from":"16828","_to":"16826"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"23196","_from":"16827","_to":"16826"} +{"$label":"ACTS_IN","name":"Steven Beck","type":"Role","_key":"99847","_from":"16828","_to":"58891"} +{"$label":"ACTS_IN","name":"Tom Newman","type":"Role","_key":"99074","_from":"16828","_to":"58367"} +{"$label":"ACTS_IN","name":"Buckaroo Banzai","type":"Role","_key":"69502","_from":"16828","_to":"42461"} +{"$label":"ACTS_IN","name":"Driscoll","type":"Role","_key":"55072","_from":"16828","_to":"35178"} +{"$label":"ACTS_IN","name":"Colonel Hendricksson","type":"Role","_key":"52566","_from":"16828","_to":"34166"} +{"$label":"ACTS_IN","name":"RoboCop","type":"Role","_key":"37785","_from":"16828","_to":"25621"} +{"$label":"ACTS_IN","name":"RoboCop","type":"Role","_key":"37773","_from":"16828","_to":"25618"} +{"$label":"ACTS_IN","name":"Baston Morris","type":"Role","_key":"37735","_from":"16828","_to":"25595"} +{"$label":"ACTS_IN","name":"Mme. Leroux (Montr\u00e9al)","type":"Role","_key":"99440","_from":"16829","_to":"58590"} +{"$label":"ACTS_IN","name":"Mme Klotz","type":"Role","_key":"34390","_from":"16829","_to":"23576"} +{"$label":"ACTS_IN","name":"Eggletina","type":"Role","_key":"23217","_from":"16839","_to":"16831"} +{"$label":"ACTS_IN","name":"Anut Lupy","type":"Role","_key":"23216","_from":"16838","_to":"16831"} +{"$label":"ACTS_IN","name":"Uncle Hendreary","type":"Role","_key":"23215","_from":"16837","_to":"16831"} +{"$label":"ACTS_IN","name":"Crampfurl","type":"Role","_key":"23213","_from":"16836","_to":"16831"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"23210","_from":"16835","_to":"16831"} +{"$label":"ACTS_IN","name":"Arietty","type":"Role","_key":"23209","_from":"16834","_to":"16831"} +{"$label":"ACTS_IN","name":"Homily","type":"Role","_key":"23208","_from":"16833","_to":"16831"} +{"$label":"DIRECTED","_key":"23206","_from":"16832","_to":"16831"} +{"$label":"DIRECTED","_key":"103436","_from":"16832","_to":"60839"} +{"$label":"ACTS_IN","name":"Sweetman","type":"Role","_key":"107891","_from":"16836","_to":"63713"} +{"$label":"ACTS_IN","name":"Chief Builder","type":"Role","_key":"95382","_from":"16836","_to":"56102"} +{"$label":"ACTS_IN","name":"Johan Cuyl","type":"Role","_key":"23229","_from":"16851","_to":"16840"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"23228","_from":"16850","_to":"16840"} +{"$label":"ACTS_IN","name":"Kleedster","type":"Role","_key":"23227","_from":"16849","_to":"16840"} +{"$label":"ACTS_IN","name":"Houser","type":"Role","_key":"23226","_from":"16848","_to":"16840"} +{"$label":"ACTS_IN","name":"Bezorgde moeder","type":"Role","_key":"23225","_from":"16847","_to":"16840"} +{"$label":"ACTS_IN","name":"Macho","type":"Role","_key":"23223","_from":"16846","_to":"16840"} +{"$label":"ACTS_IN","name":"Jeanine van der Hoop","type":"Role","_key":"23222","_from":"16845","_to":"16840"} +{"$label":"ACTS_IN","name":"Mustafa Abderrrahaman","type":"Role","_key":"23221","_from":"16844","_to":"16840"} +{"$label":"ACTS_IN","name":"Mevrouw van Veen","type":"Role","_key":"23220","_from":"16843","_to":"16840"} +{"$label":"ACTS_IN","name":"Harrie Harings","type":"Role","_key":"23219","_from":"16842","_to":"16840"} +{"$label":"DIRECTED","_key":"23218","_from":"16841","_to":"16840"} +{"$label":"ACTS_IN","name":"Harmen","type":"Role","_key":"114538","_from":"16842","_to":"67465"} +{"$label":"ACTS_IN","name":"Ted Coelman","type":"Role","_key":"37518","_from":"16842","_to":"25430"} +{"$label":"ACTS_IN","name":"Willem","type":"Role","_key":"23367","_from":"16842","_to":"16931"} +{"$label":"ACTS_IN","name":"Chantalle's mother","type":"Role","_key":"40235","_from":"16847","_to":"27143"} +{"$label":"ACTS_IN","name":"Natalie Burton","type":"Role","_key":"23239","_from":"16858","_to":"16852"} +{"$label":"ACTS_IN","name":"Tony Burton","type":"Role","_key":"23238","_from":"16857","_to":"16852"} +{"$label":"ACTS_IN","name":"Prostituierte","type":"Role","_key":"23237","_from":"16856","_to":"16852"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"23235","_from":"16855","_to":"16852"} +{"$label":"DIRECTED","_key":"23232","_from":"16854","_to":"16852"} +{"$label":"DIRECTED","_key":"23231","_from":"16853","_to":"16852"} +{"$label":"DIRECTED","_key":"23241","_from":"16860","_to":"16859"} +{"$label":"DIRECTED","_key":"63195","_from":"16860","_to":"39632"} +{"$label":"DIRECTED","_key":"53648","_from":"16860","_to":"34605"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"23258","_from":"16865","_to":"16861"} +{"$label":"ACTS_IN","name":"John the Postman","type":"Role","_key":"23256","_from":"16864","_to":"16861"} +{"$label":"ACTS_IN","name":"Johnny Rotten","type":"Role","_key":"23254","_from":"16863","_to":"16861"} +{"$label":"ACTS_IN","name":"Howard DeVoto","type":"Role","_key":"23253","_from":"16862","_to":"16861"} +{"$label":"ACTS_IN","name":"Silver","type":"Role","_key":"116451","_from":"16865","_to":"68543"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"110971","_from":"16865","_to":"65545"} +{"$label":"ACTS_IN","name":"Jip","type":"Role","_key":"68043","_from":"16865","_to":"41811"} +{"$label":"DIRECTED","_key":"23260","_from":"16867","_to":"16866"} +{"$label":"DIRECTED","_key":"40191","_from":"16867","_to":"27132"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"23267","_from":"16871","_to":"16868"} +{"$label":"ACTS_IN","name":"Bev Sullivan","type":"Role","_key":"23266","_from":"16870","_to":"16868"} +{"$label":"ACTS_IN","name":"Walter Sullivan","type":"Role","_key":"23265","_from":"16869","_to":"16868"} +{"$label":"ACTS_IN","name":"Kowalski","type":"Role","_key":"72941","_from":"16869","_to":"43915"} +{"$label":"ACTS_IN","name":"Hal, Kit's Agent","type":"Role","_key":"69319","_from":"16869","_to":"42372"} +{"$label":"ACTS_IN","name":"Jim Avery","type":"Role","_key":"62946","_from":"16869","_to":"39530"} +{"$label":"ACTS_IN","name":"Seth Belzer","type":"Role","_key":"93494","_from":"16871","_to":"55048"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"93085","_from":"16871","_to":"54872"} +{"$label":"ACTS_IN","name":"Rubin Carver","type":"Role","_key":"52859","_from":"16871","_to":"34260"} +{"$label":"ACTS_IN","name":"Herring Seller","type":"Role","_key":"23277","_from":"16879","_to":"16872"} +{"$label":"ACTS_IN","name":"German Officer","type":"Role","_key":"23276","_from":"16878","_to":"16872"} +{"$label":"ACTS_IN","name":"German Officer","type":"Role","_key":"23275","_from":"16877","_to":"16872"} +{"$label":"ACTS_IN","name":"Fake Ploeg","type":"Role","_key":"23274","_from":"16876","_to":"16872"} +{"$label":"ACTS_IN","name":"Cor Takes","type":"Role","_key":"23273","_from":"16875","_to":"16872"} +{"$label":"ACTS_IN","name":"Young Anton Steenwijk","type":"Role","_key":"23271","_from":"16874","_to":"16872"} +{"$label":"DIRECTED","_key":"23269","_from":"16873","_to":"16872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44116","_from":"16877","_to":"29413"} +{"$label":"ACTS_IN","name":"Energievision\u00e4r Familie \/ Akupunkteur","type":"Role","_key":"44106","_from":"16877","_to":"29408"} +{"$label":"ACTS_IN","name":"Fishmonger","type":"Role","_key":"23285","_from":"16887","_to":"16880"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"23284","_from":"16886","_to":"16880"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"23283","_from":"16885","_to":"16880"} +{"$label":"ACTS_IN","name":"Zus","type":"Role","_key":"23282","_from":"16884","_to":"16880"} +{"$label":"ACTS_IN","name":"Duif","type":"Role","_key":"23281","_from":"16883","_to":"16880"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"23280","_from":"16882","_to":"16880"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"23279","_from":"16881","_to":"16880"} +{"$label":"DIRECTED","_key":"23278","_from":"16881","_to":"16880"} +{"$label":"ACTS_IN","name":"Train conductor","type":"Role","_key":"40228","_from":"16881","_to":"27143"} +{"$label":"ACTS_IN","name":"Plagge","type":"Role","_key":"40205","_from":"16881","_to":"27136"} +{"$label":"ACTS_IN","name":"De Stedeling","type":"Role","_key":"39601","_from":"16881","_to":"26769"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"39566","_from":"16881","_to":"26738"} +{"$label":"DIRECTED","_key":"40211","_from":"16881","_to":"27143"} +{"$label":"DIRECTED","_key":"40199","_from":"16881","_to":"27136"} +{"$label":"DIRECTED","_key":"39602","_from":"16881","_to":"26770"} +{"$label":"DIRECTED","_key":"39600","_from":"16881","_to":"26769"} +{"$label":"DIRECTED","_key":"39565","_from":"16881","_to":"26738"} +{"$label":"ACTS_IN","name":"Bernard - le p\u00e8re d'Adrienne","type":"Role","_key":"105246","_from":"16882","_to":"61936"} +{"$label":"ACTS_IN","name":"Philippe Bauchard","type":"Role","_key":"90411","_from":"16882","_to":"53419"} +{"$label":"ACTS_IN","name":"Stephan","type":"Role","_key":"67934","_from":"16882","_to":"41737"} +{"$label":"ACTS_IN","name":"Van Tilt","type":"Role","_key":"40212","_from":"16882","_to":"27143"} +{"$label":"ACTS_IN","name":"le haut fonctionnaire","type":"Role","_key":"38008","_from":"16882","_to":"25724"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"33617","_from":"16882","_to":"23215"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Lannelongue","type":"Role","_key":"33352","_from":"16882","_to":"23096"} +{"$label":"ACTS_IN","name":"Paul Damien","type":"Role","_key":"33323","_from":"16882","_to":"23089"} +{"$label":"ACTS_IN","name":"Delamotte","type":"Role","_key":"32239","_from":"16882","_to":"22464"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"30005","_from":"16882","_to":"21173"} +{"$label":"ACTS_IN","name":"Robert Grandin","type":"Role","_key":"29947","_from":"16882","_to":"21159"} +{"$label":"ACTS_IN","name":"Henri Garcin","type":"Role","_key":"29509","_from":"16882","_to":"20909"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"40237","_from":"16883","_to":"27143"} +{"$label":"ACTS_IN","name":"Woman with gun","type":"Role","_key":"40231","_from":"16884","_to":"27143"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"40201","_from":"16884","_to":"27136"} +{"$label":"ACTS_IN","name":"Blind Woman","type":"Role","_key":"40227","_from":"16885","_to":"27143"} +{"$label":"ACTS_IN","name":"Fat Willy's mother","type":"Role","_key":"40210","_from":"16885","_to":"27136"} +{"$label":"ACTS_IN","name":"Ober at nightrestaurant","type":"Role","_key":"39581","_from":"16887","_to":"26738"} +{"$label":"ACTS_IN","name":"Gary Nordin","type":"Role","_key":"23297","_from":"16895","_to":"16888"} +{"$label":"ACTS_IN","name":"Saundra","type":"Role","_key":"23296","_from":"16894","_to":"16888"} +{"$label":"ACTS_IN","name":"Duncan Hertzel","type":"Role","_key":"23295","_from":"16893","_to":"16888"} +{"$label":"ACTS_IN","name":"John Rusk","type":"Role","_key":"23294","_from":"16892","_to":"16888"} +{"$label":"ACTS_IN","name":"Vicki Rusk","type":"Role","_key":"23293","_from":"16891","_to":"16888"} +{"$label":"ACTS_IN","name":"Larry Hertzel","type":"Role","_key":"23292","_from":"16890","_to":"16888"} +{"$label":"ACTS_IN","name":"Helen Schmidt","type":"Role","_key":"23291","_from":"16889","_to":"16888"} +{"$label":"ACTS_IN","name":"Mr. Walsh, Commerical Director","type":"Role","_key":"109541","_from":"16890","_to":"64702"} +{"$label":"ACTS_IN","name":"Blind Man","type":"Role","_key":"89821","_from":"16890","_to":"53151"} +{"$label":"ACTS_IN","name":"Terry Ladd","type":"Role","_key":"67437","_from":"16890","_to":"41533"} +{"$label":"ACTS_IN","name":"Ben Giamoro","type":"Role","_key":"56739","_from":"16890","_to":"36041"} +{"$label":"ACTS_IN","name":"Mr. Cassidy","type":"Role","_key":"32684","_from":"16890","_to":"22701"} +{"$label":"ACTS_IN","name":"Gerd","type":"Role","_key":"106121","_from":"16895","_to":"62496"} +{"$label":"ACTS_IN","name":"Detective Matt Sampson","type":"Role","_key":"71494","_from":"16895","_to":"43330"} +{"$label":"ACTS_IN","name":"Jammer Willis","type":"Role","_key":"23304","_from":"16898","_to":"16896"} +{"$label":"ACTS_IN","name":"Catfish De Vries","type":"Role","_key":"23302","_from":"16897","_to":"16896"} +{"$label":"ACTS_IN","name":"Frank Vassar","type":"Role","_key":"110402","_from":"16897","_to":"65230"} +{"$label":"ACTS_IN","name":"Detective Martin Soll","type":"Role","_key":"57714","_from":"16898","_to":"36527"} +{"$label":"ACTS_IN","name":"Ranger Tony","type":"Role","_key":"23317","_from":"16900","_to":"16899"} +{"$label":"ACTS_IN","name":"Gomez Addams","type":"Role","_key":"23320","_from":"16902","_to":"16901"} +{"$label":"ACTS_IN","name":"Valentin Arregui","type":"Role","_key":"71660","_from":"16902","_to":"43388"} +{"$label":"ACTS_IN","name":"General M. Bison","type":"Role","_key":"71419","_from":"16902","_to":"43306"} +{"$label":"ACTS_IN","name":"Sandy Stern","type":"Role","_key":"67832","_from":"16902","_to":"41688"} +{"$label":"ACTS_IN","name":"Strom","type":"Role","_key":"44877","_from":"16902","_to":"29854"} +{"$label":"ACTS_IN","name":"Dr. Victor Frankenstein","type":"Role","_key":"25451","_from":"16902","_to":"18356"} +{"$label":"ACTS_IN","name":"Gomez Addams","type":"Role","_key":"24227","_from":"16902","_to":"17551"} +{"$label":"DIRECTED","_key":"23325","_from":"16904","_to":"16903"} +{"$label":"DIRECTED","_key":"117080","_from":"16904","_to":"68896"} +{"$label":"DIRECTED","_key":"45474","_from":"16904","_to":"30131"} +{"$label":"ACTS_IN","name":"Jonathan Drew, der Mieter","type":"Role","_key":"23336","_from":"16911","_to":"16905"} +{"$label":"ACTS_IN","name":"Joe Chandler","type":"Role","_key":"23335","_from":"16910","_to":"16905"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"23334","_from":"16909","_to":"16905"} +{"$label":"ACTS_IN","name":"ihr Mann","type":"Role","_key":"23333","_from":"16908","_to":"16905"} +{"$label":"ACTS_IN","name":"alte Frau","type":"Role","_key":"23332","_from":"16907","_to":"16905"} +{"$label":"DIRECTED","_key":"23331","_from":"16906","_to":"16905"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"41289","_from":"16910","_to":"27759"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"23346","_from":"16917","_to":"16912"} +{"$label":"ACTS_IN","name":"\u201eR\u201c","type":"Role","_key":"23345","_from":"16916","_to":"16912"} +{"$label":"ACTS_IN","name":"Mrs. Caypor","type":"Role","_key":"23344","_from":"16915","_to":"16912"} +{"$label":"ACTS_IN","name":"Caypor","type":"Role","_key":"23343","_from":"16914","_to":"16912"} +{"$label":"DIRECTED","_key":"23338","_from":"16913","_to":"16912"} +{"$label":"DIRECTED","_key":"23348","_from":"16913","_to":"16918"} +{"$label":"ACTS_IN","name":"Col. Burgoyne","type":"Role","_key":"23351","_from":"16914","_to":"16918"} +{"$label":"ACTS_IN","name":"Peg Born","type":"Role","_key":"112423","_from":"16917","_to":"66378"} +{"$label":"ACTS_IN","name":"Esther Lieberman","type":"Role","_key":"108307","_from":"16917","_to":"64019"} +{"$label":"ACTS_IN","name":"Angela Cavallini","type":"Role","_key":"44561","_from":"16917","_to":"29666"} +{"$label":"ACTS_IN","name":"Iduna","type":"Role","_key":"42322","_from":"16917","_to":"28337"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein von Bernburg","type":"Role","_key":"35094","_from":"16917","_to":"23927"} +{"$label":"ACTS_IN","name":"Police Constable","type":"Role","_key":"23362","_from":"16928","_to":"16918"} +{"$label":"ACTS_IN","name":"Police Sergeant Ruddock","type":"Role","_key":"23361","_from":"16927","_to":"16918"} +{"$label":"ACTS_IN","name":"Truckfahrer bei Tom's Hat","type":"Role","_key":"23360","_from":"16926","_to":"16918"} +{"$label":"ACTS_IN","name":"Henry Briggs","type":"Role","_key":"23359","_from":"16925","_to":"16918"} +{"$label":"ACTS_IN","name":"Detective Sergeant Miller","type":"Role","_key":"23358","_from":"16924","_to":"16918"} +{"$label":"ACTS_IN","name":"Christine Clay","type":"Role","_key":"23357","_from":"16923","_to":"16918"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"23355","_from":"16922","_to":"16918"} +{"$label":"ACTS_IN","name":"Old Will","type":"Role","_key":"23352","_from":"16921","_to":"16918"} +{"$label":"ACTS_IN","name":"Robert Tisdall","type":"Role","_key":"23350","_from":"16920","_to":"16918"} +{"$label":"ACTS_IN","name":"Erica Burgoyne","type":"Role","_key":"23349","_from":"16919","_to":"16918"} +{"$label":"ACTS_IN","name":"Betty Lawrence","type":"Role","_key":"48420","_from":"16919","_to":"31779"} +{"$label":"ACTS_IN","name":"Squadron Leader Jefferson","type":"Role","_key":"109256","_from":"16920","_to":"64542"} +{"$label":"ACTS_IN","name":"Richard Gordon","type":"Role","_key":"28277","_from":"16920","_to":"20238"} +{"$label":"ACTS_IN","name":"Latham","type":"Role","_key":"26642","_from":"16920","_to":"19146"} +{"$label":"ACTS_IN","name":"Gibson","type":"Role","_key":"48423","_from":"16922","_to":"31779"} +{"$label":"ACTS_IN","name":"PC","type":"Role","_key":"32474","_from":"16924","_to":"22584"} +{"$label":"ACTS_IN","name":"Sir Robert McLean","type":"Role","_key":"109255","_from":"16925","_to":"64542"} +{"$label":"ACTS_IN","name":"Dr. Sheppard","type":"Role","_key":"41430","_from":"16925","_to":"27849"} +{"$label":"ACTS_IN","name":"Will Atkey, bartender","type":"Role","_key":"26032","_from":"16928","_to":"18705"} +{"$label":"DIRECTED","_key":"23363","_from":"16930","_to":"16929"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"23371","_from":"16938","_to":"16931"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"23370","_from":"16937","_to":"16931"} +{"$label":"ACTS_IN","name":"Sas","type":"Role","_key":"23369","_from":"16936","_to":"16931"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"23368","_from":"16935","_to":"16931"} +{"$label":"ACTS_IN","name":"Bram","type":"Role","_key":"23366","_from":"16934","_to":"16931"} +{"$label":"ACTS_IN","name":"Hero","type":"Role","_key":"23365","_from":"16933","_to":"16931"} +{"$label":"DIRECTED","_key":"23364","_from":"16932","_to":"16931"} +{"$label":"DIRECTED","_key":"113913","_from":"16932","_to":"67090"} +{"$label":"ACTS_IN","name":"Man in the Bar","type":"Role","_key":"109643","_from":"16933","_to":"64758"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"104784","_from":"16933","_to":"61647"} +{"$label":"ACTS_IN","name":"Klaas","type":"Role","_key":"37378","_from":"16935","_to":"25330"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106009","_from":"16936","_to":"62412"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"42890","_from":"16936","_to":"28665"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"23379","_from":"16946","_to":"16939"} +{"$label":"ACTS_IN","name":"Alex Freund","type":"Role","_key":"23378","_from":"16945","_to":"16939"} +{"$label":"ACTS_IN","name":"L'homme en voiture","type":"Role","_key":"23377","_from":"16944","_to":"16939"} +{"$label":"ACTS_IN","name":"La femme en voiture","type":"Role","_key":"23376","_from":"16943","_to":"16939"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"23375","_from":"16942","_to":"16939"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"23374","_from":"16941","_to":"16939"} +{"$label":"DIRECTED","_key":"23372","_from":"16940","_to":"16939"} +{"$label":"ACTS_IN","name":"Renard","type":"Role","_key":"107346","_from":"16940","_to":"63306"} +{"$label":"DIRECTED","_key":"51560","_from":"16940","_to":"33641"} +{"$label":"ACTS_IN","name":"Charlie Chaplin","type":"Role","_key":"107343","_from":"16941","_to":"63306"} +{"$label":"ACTS_IN","name":"Galoup","type":"Role","_key":"101176","_from":"16941","_to":"59604"} +{"$label":"ACTS_IN","name":"Stephane","type":"Role","_key":"69025","_from":"16941","_to":"42252"} +{"$label":"ACTS_IN","name":"Merde' (segment \"Merde\")","type":"Role","_key":"51564","_from":"16941","_to":"33641"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"48096","_from":"16941","_to":"31613"} +{"$label":"ACTS_IN","name":"Montparnasse","type":"Role","_key":"31621","_from":"16941","_to":"22071"} +{"$label":"ACTS_IN","name":"Six Sous","type":"Role","_key":"23890","_from":"16941","_to":"17312"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"48810","_from":"16943","_to":"32011"} +{"$label":"ACTS_IN","name":"Marie D'Aubray Boissand","type":"Role","_key":"35799","_from":"16943","_to":"24312"} +{"$label":"ACTS_IN","name":"Madame Bronsky","type":"Role","_key":"29439","_from":"16943","_to":"20878"} +{"$label":"ACTS_IN","name":"Suspect #4","type":"Role","_key":"23431","_from":"16992","_to":"16947"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"23429","_from":"16991","_to":"16947"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"23428","_from":"16990","_to":"16947"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"23427","_from":"16989","_to":"16947"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"23426","_from":"16988","_to":"16947"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"23425","_from":"16987","_to":"16947"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"23424","_from":"16986","_to":"16947"} +{"$label":"ACTS_IN","name":"Waiter Country Club","type":"Role","_key":"23423","_from":"16985","_to":"16947"} +{"$label":"ACTS_IN","name":"Street Hustler","type":"Role","_key":"23422","_from":"16984","_to":"16947"} +{"$label":"ACTS_IN","name":"Man At Political Dinner","type":"Role","_key":"23421","_from":"16983","_to":"16947"} +{"$label":"ACTS_IN","name":"Woman At Political Dinner","type":"Role","_key":"23420","_from":"16982","_to":"16947"} +{"$label":"ACTS_IN","name":"Woman At Political Dinner","type":"Role","_key":"23419","_from":"16981","_to":"16947"} +{"$label":"ACTS_IN","name":"Waiter Cocktail Lounge","type":"Role","_key":"23418","_from":"16980","_to":"16947"} +{"$label":"ACTS_IN","name":"Bartender Cocktail Lounge","type":"Role","_key":"23417","_from":"16979","_to":"16947"} +{"$label":"ACTS_IN","name":"Maitre d' Cocktail Lounge","type":"Role","_key":"23416","_from":"16978","_to":"16947"} +{"$label":"ACTS_IN","name":"Boy At Sorel","type":"Role","_key":"23415","_from":"16977","_to":"16947"} +{"$label":"ACTS_IN","name":"Girl At Daisy","type":"Role","_key":"23414","_from":"16976","_to":"16947"} +{"$label":"ACTS_IN","name":"Girl At Daisy","type":"Role","_key":"23413","_from":"16975","_to":"16947"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"23412","_from":"16974","_to":"16947"} +{"$label":"ACTS_IN","name":"College Professor","type":"Role","_key":"23411","_from":"16973","_to":"16947"} +{"$label":"ACTS_IN","name":"Coed","type":"Role","_key":"23410","_from":"16972","_to":"16947"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"23409","_from":"16971","_to":"16947"} +{"$label":"ACTS_IN","name":"Bootblack","type":"Role","_key":"23408","_from":"16970","_to":"16947"} +{"$label":"ACTS_IN","name":"Woman At Juschi's","type":"Role","_key":"23407","_from":"16969","_to":"16947"} +{"$label":"ACTS_IN","name":"2nd Girl At Beach","type":"Role","_key":"23406","_from":"16968","_to":"16947"} +{"$label":"ACTS_IN","name":"1st Girl At Beach","type":"Role","_key":"23405","_from":"16967","_to":"16947"} +{"$label":"ACTS_IN","name":"Perino's Maitre d'","type":"Role","_key":"23404","_from":"16966","_to":"16947"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"23403","_from":"16965","_to":"16947"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"23402","_from":"16964","_to":"16947"} +{"$label":"ACTS_IN","name":"Blond Boy","type":"Role","_key":"23401","_from":"16963","_to":"16947"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"23400","_from":"16962","_to":"16947"} +{"$label":"ACTS_IN","name":"Mr. Williams","type":"Role","_key":"23399","_from":"16961","_to":"16947"} +{"$label":"ACTS_IN","name":"Floyd Wicker","type":"Role","_key":"23398","_from":"16960","_to":"16947"} +{"$label":"ACTS_IN","name":"Julian's Lawyer","type":"Role","_key":"23397","_from":"16959","_to":"16947"} +{"$label":"ACTS_IN","name":"Michelle's Lawyer","type":"Role","_key":"23396","_from":"16958","_to":"16947"} +{"$label":"ACTS_IN","name":"Hollywood Actor","type":"Role","_key":"23395","_from":"16957","_to":"16947"} +{"$label":"ACTS_IN","name":"Mrs. Laudner","type":"Role","_key":"23394","_from":"16956","_to":"16947"} +{"$label":"ACTS_IN","name":"Lt. Curtis","type":"Role","_key":"23392","_from":"16955","_to":"16947"} +{"$label":"ACTS_IN","name":"Judy Rheiman","type":"Role","_key":"23391","_from":"16954","_to":"16947"} +{"$label":"ACTS_IN","name":"Mr. Rheiman","type":"Role","_key":"23390","_from":"16953","_to":"16947"} +{"$label":"ACTS_IN","name":"Charles Stratton","type":"Role","_key":"23389","_from":"16952","_to":"16947"} +{"$label":"ACTS_IN","name":"Mrs. Dobrun","type":"Role","_key":"23386","_from":"16951","_to":"16947"} +{"$label":"ACTS_IN","name":"Lisa Williams","type":"Role","_key":"23385","_from":"16950","_to":"16947"} +{"$label":"ACTS_IN","name":"Cloak Room Girl","type":"Role","_key":"23383","_from":"16949","_to":"16947"} +{"$label":"ACTS_IN","name":"Michelle Stratton","type":"Role","_key":"23382","_from":"16948","_to":"16947"} +{"$label":"ACTS_IN","name":"Charlotte Taylor Wilson","type":"Role","_key":"119679","_from":"16948","_to":"70293"} +{"$label":"ACTS_IN","name":"Countess","type":"Role","_key":"118585","_from":"16948","_to":"69727"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"63620","_from":"16948","_to":"39800"} +{"$label":"ACTS_IN","name":"Liz Vangelder","type":"Role","_key":"28473","_from":"16948","_to":"20352"} +{"$label":"ACTS_IN","name":"Bessie Limpet","type":"Role","_key":"121567","_from":"16951","_to":"71426"} +{"$label":"ACTS_IN","name":"Barbara Foster","type":"Role","_key":"120071","_from":"16951","_to":"70511"} +{"$label":"ACTS_IN","name":"Grandma Helen","type":"Role","_key":"103353","_from":"16951","_to":"60795"} +{"$label":"ACTS_IN","name":"Pearl Gesner","type":"Role","_key":"95967","_from":"16951","_to":"56425"} +{"$label":"ACTS_IN","name":"Wagner","type":"Role","_key":"65343","_from":"16955","_to":"40534"} +{"$label":"ACTS_IN","name":"Leonard Winesop's Receptionist","type":"Role","_key":"72647","_from":"16956","_to":"43777"} +{"$label":"ACTS_IN","name":"John Davis","type":"Role","_key":"25113","_from":"16957","_to":"18140"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113020","_from":"16970","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112966","_from":"16970","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112933","_from":"16970","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112825","_from":"16970","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112787","_from":"16970","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112755","_from":"16970","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112727","_from":"16970","_to":"66564"} +{"$label":"ACTS_IN","name":"Henri Baurel","type":"Role","_key":"23435","_from":"16995","_to":"16993"} +{"$label":"ACTS_IN","name":"Adam Cook","type":"Role","_key":"23434","_from":"16994","_to":"16993"} +{"$label":"DIRECTED","_key":"23453","_from":"17000","_to":"16996"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"23452","_from":"16999","_to":"16996"} +{"$label":"ACTS_IN","name":"Jims Mutter","type":"Role","_key":"23450","_from":"16998","_to":"16996"} +{"$label":"ACTS_IN","name":"Chuck Sherman","type":"Role","_key":"23448","_from":"16997","_to":"16996"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"94632","_from":"16997","_to":"55757"} +{"$label":"ACTS_IN","name":"Booker McFee","type":"Role","_key":"60745","_from":"16997","_to":"38355"} +{"$label":"ACTS_IN","name":"Sherman","type":"Role","_key":"48729","_from":"16997","_to":"31954"} +{"$label":"ACTS_IN","name":"Norm","type":"Role","_key":"40045","_from":"16997","_to":"27031"} +{"$label":"ACTS_IN","name":"Trudy Dalton","type":"Role","_key":"110299","_from":"16998","_to":"65177"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"51792","_from":"16998","_to":"33797"} +{"$label":"ACTS_IN","name":"Jim's Mom","type":"Role","_key":"48712","_from":"16998","_to":"31948"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"111378","_from":"16999","_to":"65768"} +{"$label":"ACTS_IN","name":"April's Mother","type":"Role","_key":"98996","_from":"16999","_to":"58317"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"58742","_from":"16999","_to":"37102"} +{"$label":"DIRECTED","_key":"23463","_from":"17009","_to":"17001"} +{"$label":"DIRECTED","_key":"23462","_from":"17008","_to":"17001"} +{"$label":"ACTS_IN","name":"Real Harvey","type":"Role","_key":"23461","_from":"17007","_to":"17001"} +{"$label":"ACTS_IN","name":"Housewife","type":"Role","_key":"23459","_from":"17006","_to":"17001"} +{"$label":"ACTS_IN","name":"Young Harvey","type":"Role","_key":"23458","_from":"17005","_to":"17001"} +{"$label":"ACTS_IN","name":"Green Lantern","type":"Role","_key":"23457","_from":"17004","_to":"17001"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"23455","_from":"17003","_to":"17001"} +{"$label":"ACTS_IN","name":"Superman","type":"Role","_key":"23454","_from":"17002","_to":"17001"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"98680","_from":"17005","_to":"58151"} +{"$label":"ACTS_IN","name":"Young Bobby","type":"Role","_key":"92317","_from":"17005","_to":"54480"} +{"$label":"DIRECTED","_key":"89461","_from":"17008","_to":"52971"} +{"$label":"DIRECTED","_key":"89462","_from":"17009","_to":"52971"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"23465","_from":"17012","_to":"17010"} +{"$label":"DIRECTED","_key":"23464","_from":"17011","_to":"17010"} +{"$label":"DIRECTED","_key":"26734","_from":"17011","_to":"19219"} +{"$label":"DIRECTED","_key":"23472","_from":"17011","_to":"17016"} +{"$label":"DIRECTED","_key":"23471","_from":"17011","_to":"17015"} +{"$label":"DIRECTED","_key":"23468","_from":"17011","_to":"17014"} +{"$label":"DIRECTED","_key":"23466","_from":"17011","_to":"17013"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"26733","_from":"17012","_to":"19219"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"23470","_from":"17012","_to":"17015"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"23469","_from":"17012","_to":"17014"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"23467","_from":"17012","_to":"17013"} +{"$label":"ACTS_IN","name":"Jin-ho","type":"Role","_key":"23478","_from":"17022","_to":"17017"} +{"$label":"ACTS_IN","name":"Gecko","type":"Role","_key":"23477","_from":"17021","_to":"17017"} +{"$label":"ACTS_IN","name":"Hyun-woo","type":"Role","_key":"23476","_from":"17020","_to":"17017"} +{"$label":"ACTS_IN","name":"Hye-mi","type":"Role","_key":"23475","_from":"17019","_to":"17017"} +{"$label":"ACTS_IN","name":"Jin-a","type":"Role","_key":"23474","_from":"17018","_to":"17017"} +{"$label":"DIRECTED","_key":"23488","_from":"17029","_to":"17023"} +{"$label":"ACTS_IN","name":"Kevins Vater","type":"Role","_key":"23487","_from":"17028","_to":"17023"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"23486","_from":"17027","_to":"17023"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"23485","_from":"17026","_to":"17023"} +{"$label":"ACTS_IN","name":"Theodora Daniels","type":"Role","_key":"23484","_from":"17025","_to":"17023"} +{"$label":"ACTS_IN","name":"Martin Daniels","type":"Role","_key":"23480","_from":"17024","_to":"17023"} +{"$label":"ACTS_IN","name":"Jim Harrison","type":"Role","_key":"91127","_from":"17024","_to":"53764"} +{"$label":"ACTS_IN","name":"Vance Kramer","type":"Role","_key":"89714","_from":"17024","_to":"53109"} +{"$label":"ACTS_IN","name":"Harrison Winslow","type":"Role","_key":"88588","_from":"17024","_to":"52495"} +{"$label":"ACTS_IN","name":"Tony Abbott","type":"Role","_key":"88578","_from":"17024","_to":"52493"} +{"$label":"ACTS_IN","name":"George Newton","type":"Role","_key":"72089","_from":"17024","_to":"43579"} +{"$label":"ACTS_IN","name":"Murray Blum","type":"Role","_key":"70708","_from":"17024","_to":"43007"} +{"$label":"ACTS_IN","name":"Fred Wilson","type":"Role","_key":"65303","_from":"17024","_to":"40529"} +{"$label":"ACTS_IN","name":"George Newton","type":"Role","_key":"63358","_from":"17024","_to":"39705"} +{"$label":"ACTS_IN","name":"Jonathan Mardukas","type":"Role","_key":"51999","_from":"17024","_to":"33909"} +{"$label":"ACTS_IN","name":"Spencer Barnes","type":"Role","_key":"43235","_from":"17024","_to":"28878"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"40852","_from":"17024","_to":"27498"} +{"$label":"ACTS_IN","name":"Eric Stevenson","type":"Role","_key":"103320","_from":"17026","_to":"60782"} +{"$label":"ACTS_IN","name":"Richard Bowens","type":"Role","_key":"90279","_from":"17027","_to":"53368"} +{"$label":"ACTS_IN","name":"Senator Delongpre","type":"Role","_key":"36614","_from":"17027","_to":"24811"} +{"$label":"ACTS_IN","name":"Lampy \/ Zeke (voice)","type":"Role","_key":"121496","_from":"17028","_to":"71370"} +{"$label":"DIRECTED","_key":"71750","_from":"17029","_to":"43432"} +{"$label":"ACTS_IN","name":"Band Leader","type":"Role","_key":"23536","_from":"17070","_to":"17030"} +{"$label":"ACTS_IN","name":"Kontaktmann","type":"Role","_key":"23535","_from":"17069","_to":"17030"} +{"$label":"ACTS_IN","name":"Radiosprecher","type":"Role","_key":"23534","_from":"17068","_to":"17030"} +{"$label":"ACTS_IN","name":"Polizist in Dienststelle","type":"Role","_key":"23533","_from":"17067","_to":"17030"} +{"$label":"ACTS_IN","name":"Joe Coopersmith","type":"Role","_key":"23532","_from":"17066","_to":"17030"} +{"$label":"ACTS_IN","name":"Herb Coopersmith","type":"Role","_key":"23531","_from":"17065","_to":"17030"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"23530","_from":"17064","_to":"17030"} +{"$label":"ACTS_IN","name":"Kensigton Jungfrau","type":"Role","_key":"23528","_from":"17063","_to":"17030"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"23527","_from":"17062","_to":"17030"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"23526","_from":"17061","_to":"17030"} +{"$label":"ACTS_IN","name":"Fingerabdruck Kriminalbeamter","type":"Role","_key":"23525","_from":"17060","_to":"17030"} +{"$label":"ACTS_IN","name":"Kensington Gast","type":"Role","_key":"23524","_from":"17059","_to":"17030"} +{"$label":"ACTS_IN","name":"Kensington Gast","type":"Role","_key":"23523","_from":"17058","_to":"17030"} +{"$label":"ACTS_IN","name":"Kensington Gast","type":"Role","_key":"23522","_from":"17057","_to":"17030"} +{"$label":"ACTS_IN","name":"Kensington Gast","type":"Role","_key":"23521","_from":"17056","_to":"17030"} +{"$label":"ACTS_IN","name":"Rose Kensington","type":"Role","_key":"23520","_from":"17055","_to":"17030"} +{"$label":"ACTS_IN","name":"Nachw\u00e4chter","type":"Role","_key":"23519","_from":"17054","_to":"17030"} +{"$label":"ACTS_IN","name":"Voltans Mitwirkende","type":"Role","_key":"23518","_from":"17053","_to":"17030"} +{"$label":"ACTS_IN","name":"Voltans Mitwirkender","type":"Role","_key":"23517","_from":"17052","_to":"17030"} +{"$label":"ACTS_IN","name":"Voltans Mitwirkender","type":"Role","_key":"23516","_from":"17051","_to":"17030"} +{"$label":"ACTS_IN","name":"Voltans Assistentin","type":"Role","_key":"23515","_from":"17050","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23514","_from":"17049","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23513","_from":"17048","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23512","_from":"17047","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23511","_from":"17046","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23510","_from":"17045","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23509","_from":"17044","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23508","_from":"17043","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23507","_from":"17042","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23506","_from":"17041","_to":"17030"} +{"$label":"ACTS_IN","name":"Voltan","type":"Role","_key":"23505","_from":"17040","_to":"17030"} +{"$label":"ACTS_IN","name":"Rainbow Room All Star","type":"Role","_key":"23504","_from":"17039","_to":"17030"} +{"$label":"ACTS_IN","name":"Kellner bei Rocky's","type":"Role","_key":"23501","_from":"17038","_to":"17030"} +{"$label":"ACTS_IN","name":"Essenslieferant","type":"Role","_key":"23500","_from":"17037","_to":"17030"} +{"$label":"ACTS_IN","name":"B\u00fcroangestellter","type":"Role","_key":"23498","_from":"17036","_to":"17030"} +{"$label":"ACTS_IN","name":"B\u00fcroangestellter","type":"Role","_key":"23497","_from":"17035","_to":"17030"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"23496","_from":"17034","_to":"17030"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"23495","_from":"17033","_to":"17030"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"23494","_from":"17032","_to":"17030"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"23492","_from":"17031","_to":"17030"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"34197","_from":"17031","_to":"23484"} +{"$label":"ACTS_IN","name":"Trudy Potter","type":"Role","_key":"112795","_from":"17032","_to":"66602"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"94488","_from":"17032","_to":"55647"} +{"$label":"ACTS_IN","name":"Nomi Malone","type":"Role","_key":"65892","_from":"17032","_to":"40769"} +{"$label":"ACTS_IN","name":"Phoebe LaVelle","type":"Role","_key":"24337","_from":"17032","_to":"17622"} +{"$label":"ACTS_IN","name":"Finneran","type":"Role","_key":"102102","_from":"17034","_to":"60066"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"64147","_from":"17034","_to":"40021"} +{"$label":"ACTS_IN","name":"Hacker","type":"Role","_key":"119199","_from":"17040","_to":"70040"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"109074","_from":"17040","_to":"64447"} +{"$label":"ACTS_IN","name":"Dr. Jumba Jookiba","type":"Role","_key":"104945","_from":"17040","_to":"61750"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"102314","_from":"17040","_to":"60199"} +{"$label":"ACTS_IN","name":"Al Meyer","type":"Role","_key":"95773","_from":"17040","_to":"56331"} +{"$label":"ACTS_IN","name":"Cogsworth","type":"Role","_key":"93887","_from":"17040","_to":"55282"} +{"$label":"ACTS_IN","name":"Mayor Nick Nicholson","type":"Role","_key":"72187","_from":"17040","_to":"43625"} +{"$label":"ACTS_IN","name":"Dr. Jumba Jookiba (voice)","type":"Role","_key":"70544","_from":"17040","_to":"42931"} +{"$label":"ACTS_IN","name":"Doc Stanton","type":"Role","_key":"67797","_from":"17040","_to":"41672"} +{"$label":"ACTS_IN","name":"Governor Ratcliffe","type":"Role","_key":"63879","_from":"17040","_to":"39912"} +{"$label":"ACTS_IN","name":"Cogsworth \/ Narrator (voice)","type":"Role","_key":"59511","_from":"17040","_to":"37572"} +{"$label":"ACTS_IN","name":"Trashman","type":"Role","_key":"108546","_from":"17054","_to":"64148"} +{"$label":"ACTS_IN","name":"Homeless Man","type":"Role","_key":"90462","_from":"17054","_to":"53436"} +{"$label":"ACTS_IN","name":"The Narrator (voice)","type":"Role","_key":"67413","_from":"17056","_to":"41529"} +{"$label":"ACTS_IN","name":"Mr. Bates","type":"Role","_key":"55622","_from":"17058","_to":"35413"} +{"$label":"ACTS_IN","name":"Galaxie Executive","type":"Role","_key":"55658","_from":"17061","_to":"35434"} +{"$label":"ACTS_IN","name":"Billy Clueless (as Arthur Nascarella)","type":"Role","_key":"46902","_from":"17062","_to":"30925"} +{"$label":"ACTS_IN","name":"Frankie Perello (as Arthur Nascarella)","type":"Role","_key":"46400","_from":"17062","_to":"30650"} +{"$label":"ACTS_IN","name":"IRS Agent","type":"Role","_key":"28474","_from":"17062","_to":"20352"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64138","_from":"17067","_to":"40021"} +{"$label":"ACTS_IN","name":"Boss","type":"Role","_key":"55588","_from":"17069","_to":"35397"} +{"$label":"ACTS_IN","name":"Mabel Miller","type":"Role","_key":"23557","_from":"17088","_to":"17071"} +{"$label":"ACTS_IN","name":"Theo M\u00fcller","type":"Role","_key":"23555","_from":"17087","_to":"17071"} +{"$label":"ACTS_IN","name":"Finanzbeamter","type":"Role","_key":"23554","_from":"17086","_to":"17071"} +{"$label":"ACTS_IN","name":"Evelyn M\u00fcller","type":"Role","_key":"23553","_from":"17085","_to":"17071"} +{"$label":"ACTS_IN","name":"Zimmerwirtin","type":"Role","_key":"23552","_from":"17084","_to":"17071"} +{"$label":"ACTS_IN","name":"Mr. Miller","type":"Role","_key":"23551","_from":"17083","_to":"17071"} +{"$label":"ACTS_IN","name":"Dr. Schneider","type":"Role","_key":"23550","_from":"17082","_to":"17071"} +{"$label":"ACTS_IN","name":"Werner Schubart","type":"Role","_key":"23549","_from":"17081","_to":"17071"} +{"$label":"ACTS_IN","name":"Marga Schubart","type":"Role","_key":"23548","_from":"17080","_to":"17071"} +{"$label":"ACTS_IN","name":"Oberkellner","type":"Role","_key":"23547","_from":"17079","_to":"17071"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23545","_from":"17078","_to":"17071"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"23544","_from":"17077","_to":"17071"} +{"$label":"ACTS_IN","name":"Minna","type":"Role","_key":"23543","_from":"17076","_to":"17071"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23541","_from":"17075","_to":"17071"} +{"$label":"ACTS_IN","name":"Wendolin","type":"Role","_key":"23540","_from":"17074","_to":"17071"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"23539","_from":"17073","_to":"17071"} +{"$label":"ACTS_IN","name":"Birnsriel","type":"Role","_key":"23538","_from":"17072","_to":"17071"} +{"$label":"ACTS_IN","name":"Adalbert Bulcke","type":"Role","_key":"41163","_from":"17072","_to":"27693"} +{"$label":"ACTS_IN","name":"Der Mondmann","type":"Role","_key":"71136","_from":"17074","_to":"43180"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24550","_from":"17074","_to":"17750"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44449","_from":"17077","_to":"29606"} +{"$label":"ACTS_IN","name":"Doctor Mohn","type":"Role","_key":"24556","_from":"17077","_to":"17763"} +{"$label":"ACTS_IN","name":"Dr. Gottlieb Taft","type":"Role","_key":"67843","_from":"17079","_to":"41690"} +{"$label":"ACTS_IN","name":"Dr. Gottlieb Taft","type":"Role","_key":"67061","_from":"17079","_to":"41394"} +{"$label":"ACTS_IN","name":"Herr Schindler","type":"Role","_key":"44664","_from":"17079","_to":"29716"} +{"$label":"ACTS_IN","name":"Pauli","type":"Role","_key":"41237","_from":"17079","_to":"27738"} +{"$label":"ACTS_IN","name":"Dr. Taft","type":"Role","_key":"33539","_from":"17079","_to":"23194"} +{"$label":"ACTS_IN","name":"Edgar Magnussen","type":"Role","_key":"23627","_from":"17079","_to":"17129"} +{"$label":"ACTS_IN","name":"Bresett","type":"Role","_key":"41028","_from":"17081","_to":"27598"} +{"$label":"ACTS_IN","name":"Bobby Liechtenstein","type":"Role","_key":"23638","_from":"17081","_to":"17129"} +{"$label":"ACTS_IN","name":"Sylvio","type":"Role","_key":"43486","_from":"17082","_to":"29044"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42346","_from":"17082","_to":"28337"} +{"$label":"ACTS_IN","name":"Gabler","type":"Role","_key":"31424","_from":"17082","_to":"21952"} +{"$label":"ACTS_IN","name":"Georg Manfeldt","type":"Role","_key":"24890","_from":"17082","_to":"17994"} +{"$label":"ACTS_IN","name":"Herzogin Looz von Curswaren","type":"Role","_key":"42030","_from":"17084","_to":"28155"} +{"$label":"ACTS_IN","name":"Barsoni","type":"Role","_key":"44929","_from":"17086","_to":"29874"} +{"$label":"ACTS_IN","name":"Kubbitzky","type":"Role","_key":"44605","_from":"17086","_to":"29680"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"44243","_from":"17086","_to":"29476"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42066","_from":"17086","_to":"28185"} +{"$label":"ACTS_IN","name":"Erzieherin Fr\u00e4ulein von Bernburg","type":"Role","_key":"55299","_from":"17088","_to":"35260"} +{"$label":"ACTS_IN","name":"Lazlo Kovacs","type":"Role","_key":"23574","_from":"17101","_to":"17089"} +{"$label":"ACTS_IN","name":"lazlo kovacs","type":"Role","_key":"23573","_from":"17100","_to":"17089"} +{"$label":"ACTS_IN","name":"Le pompiste","type":"Role","_key":"23571","_from":"17099","_to":"17089"} +{"$label":"ACTS_IN","name":"Staquet","type":"Role","_key":"23570","_from":"17098","_to":"17089"} +{"$label":"ACTS_IN","name":"l'homme du port","type":"Role","_key":"23568","_from":"17097","_to":"17089"} +{"$label":"ACTS_IN","name":"Marin","type":"Role","_key":"23567","_from":"17096","_to":"17089"} +{"$label":"ACTS_IN","name":"Lui-M\u00eame","type":"Role","_key":"23566","_from":"17095","_to":"17089"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"23565","_from":"17094","_to":"17089"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"23564","_from":"17093","_to":"17089"} +{"$label":"ACTS_IN","name":"le chef des gangsters","type":"Role","_key":"23563","_from":"17092","_to":"17089"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"23562","_from":"17091","_to":"17089"} +{"$label":"ACTS_IN","name":"Maria, la femme de Ferdinand","type":"Role","_key":"23561","_from":"17090","_to":"17089"} +{"$label":"ACTS_IN","name":"Grimm","type":"Role","_key":"71791","_from":"17094","_to":"43448"} +{"$label":"ACTS_IN","name":"Otto Weber, le Kommandof\u00fchrer \u00e9l\u00e9gant","type":"Role","_key":"48909","_from":"17094","_to":"32047"} +{"$label":"DIRECTED","_key":"107137","_from":"17095","_to":"63187"} +{"$label":"DIRECTED","_key":"101987","_from":"17095","_to":"60010"} +{"$label":"DIRECTED","_key":"35421","_from":"17095","_to":"24102"} +{"$label":"ACTS_IN","name":"Der Amerikaner","type":"Role","_key":"68635","_from":"17095","_to":"42069"} +{"$label":"ACTS_IN","name":"l'employ\u00e9 de la morgue","type":"Role","_key":"34624","_from":"17099","_to":"23691"} +{"$label":"ACTS_IN","name":"Man kissing another Man","type":"Role","_key":"33605","_from":"17099","_to":"23212"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"27356","_from":"17099","_to":"19658"} +{"$label":"ACTS_IN","name":"L\u00e9o Frankel","type":"Role","_key":"33375","_from":"17101","_to":"23104"} +{"$label":"DIRECTED","_key":"23584","_from":"17108","_to":"17102"} +{"$label":"DIRECTED","_key":"23583","_from":"17107","_to":"17102"} +{"$label":"ACTS_IN","name":"Greg Owens","type":"Role","_key":"23581","_from":"17106","_to":"17102"} +{"$label":"ACTS_IN","name":"Shazza","type":"Role","_key":"23580","_from":"17105","_to":"17102"} +{"$label":"ACTS_IN","name":"Paris P. Ogilvie","type":"Role","_key":"23579","_from":"17104","_to":"17102"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"23578","_from":"17103","_to":"17102"} +{"$label":"ACTS_IN","name":"Jack (Voice)","type":"Role","_key":"23619","_from":"17103","_to":"17126"} +{"$label":"ACTS_IN","name":"Lt. George Ramsdale Witton","type":"Role","_key":"96562","_from":"17104","_to":"56784"} +{"$label":"ACTS_IN","name":"Aeryn Sun","type":"Role","_key":"97345","_from":"17105","_to":"57329"} +{"$label":"ACTS_IN","name":"Vala Mal Doran","type":"Role","_key":"91957","_from":"17105","_to":"54247"} +{"$label":"ACTS_IN","name":"Vala Mal Doran","type":"Role","_key":"91907","_from":"17105","_to":"54222"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"96977","_from":"17106","_to":"57043"} +{"$label":"DIRECTED","_key":"90497","_from":"17107","_to":"53461"} +{"$label":"DIRECTED","_key":"89309","_from":"17107","_to":"52867"} +{"$label":"DIRECTED","_key":"63992","_from":"17107","_to":"39957"} +{"$label":"DIRECTED","_key":"23610","_from":"17107","_to":"17115"} +{"$label":"ACTS_IN","name":"Troy Groupie","type":"Role","_key":"23598","_from":"17114","_to":"17109"} +{"$label":"ACTS_IN","name":"Damien","type":"Role","_key":"23596","_from":"17113","_to":"17109"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"23594","_from":"17112","_to":"17109"} +{"$label":"ACTS_IN","name":"Helen Anne Pierce","type":"Role","_key":"23591","_from":"17111","_to":"17109"} +{"$label":"ACTS_IN","name":"Wes McGregor","type":"Role","_key":"23590","_from":"17110","_to":"17109"} +{"$label":"ACTS_IN","name":"Kyra","type":"Role","_key":"23607","_from":"17117","_to":"17115"} +{"$label":"ACTS_IN","name":"Eve Logan","type":"Role","_key":"23602","_from":"17116","_to":"17115"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"115350","_from":"17116","_to":"67913"} +{"$label":"ACTS_IN","name":"Andromeda","type":"Role","_key":"117649","_from":"17117","_to":"69157"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"40043","_from":"17117","_to":"27031"} +{"$label":"DIRECTED","_key":"23617","_from":"17125","_to":"17118"} +{"$label":"ACTS_IN","name":"o. A,","type":"Role","_key":"23616","_from":"17124","_to":"17118"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23615","_from":"17123","_to":"17118"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23614","_from":"17122","_to":"17118"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23613","_from":"17121","_to":"17118"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"23612","_from":"17120","_to":"17118"} +{"$label":"ACTS_IN","name":"Nona Thiemann","type":"Role","_key":"23611","_from":"17119","_to":"17118"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"91390","_from":"17121","_to":"53902"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"42289","_from":"17121","_to":"28312"} +{"$label":"ACTS_IN","name":"Dr. Siemers","type":"Role","_key":"34369","_from":"17122","_to":"23569"} +{"$label":"ACTS_IN","name":"Kreditsachbearbeiter","type":"Role","_key":"31510","_from":"17122","_to":"22008"} +{"$label":"ACTS_IN","name":"Aiman","type":"Role","_key":"68370","_from":"17123","_to":"41957"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39742","_from":"17123","_to":"26850"} +{"$label":"ACTS_IN","name":"Schweizer","type":"Role","_key":"63122","_from":"17124","_to":"39591"} +{"$label":"ACTS_IN","name":"Horst B\u00f6mmelburg","type":"Role","_key":"52641","_from":"17124","_to":"34194"} +{"$label":"DIRECTED","_key":"68132","_from":"17125","_to":"41845"} +{"$label":"DIRECTED","_key":"23623","_from":"17128","_to":"17126"} +{"$label":"ACTS_IN","name":"Skiff A.I. (Voice)","type":"Role","_key":"23622","_from":"17127","_to":"17126"} +{"$label":"ACTS_IN","name":"Roger Jasser","type":"Role","_key":"111393","_from":"17127","_to":"65780"} +{"$label":"ACTS_IN","name":"Dr. Jekyll ( voice )","type":"Role","_key":"45798","_from":"17127","_to":"30298"} +{"$label":"ACTS_IN","name":"Edward Malone","type":"Role","_key":"24825","_from":"17127","_to":"17947"} +{"$label":"DIRECTED","_key":"51502","_from":"17128","_to":"33580"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"23639","_from":"17138","_to":"17129"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"23637","_from":"17137","_to":"17129"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"23636","_from":"17136","_to":"17129"} +{"$label":"ACTS_IN","name":"Herr Bleisenkel","type":"Role","_key":"23634","_from":"17135","_to":"17129"} +{"$label":"ACTS_IN","name":"Herr Manthey","type":"Role","_key":"23631","_from":"17134","_to":"17129"} +{"$label":"ACTS_IN","name":"Frau Winter","type":"Role","_key":"23630","_from":"17133","_to":"17129"} +{"$label":"ACTS_IN","name":"Reene Malvy","type":"Role","_key":"23628","_from":"17132","_to":"17129"} +{"$label":"ACTS_IN","name":"Tommy Quint","type":"Role","_key":"23626","_from":"17131","_to":"17129"} +{"$label":"DIRECTED","_key":"23624","_from":"17130","_to":"17129"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41916","_from":"17131","_to":"28097"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41905","_from":"17131","_to":"28096"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41892","_from":"17131","_to":"28094"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41885","_from":"17131","_to":"28093"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41872","_from":"17131","_to":"28092"} +{"$label":"ACTS_IN","name":"Bobby Dodd","type":"Role","_key":"41858","_from":"17131","_to":"28082"} +{"$label":"ACTS_IN","name":"Donna Lucia d` Alvadorez","type":"Role","_key":"41026","_from":"17132","_to":"27598"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45349","_from":"17134","_to":"30073"} +{"$label":"ACTS_IN","name":"\u00c4ngstlicher Herr","type":"Role","_key":"44918","_from":"17135","_to":"29866"} +{"$label":"ACTS_IN","name":"Karsten","type":"Role","_key":"40980","_from":"17135","_to":"27564"} +{"$label":"ACTS_IN","name":"Gesch\u00e4ftsfreund","type":"Role","_key":"40620","_from":"17136","_to":"27349"} +{"$label":"DIRECTED","_key":"23647","_from":"17144","_to":"17139"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"23646","_from":"17143","_to":"17139"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"23645","_from":"17142","_to":"17139"} +{"$label":"ACTS_IN","name":"Adreina","type":"Role","_key":"23642","_from":"17141","_to":"17139"} +{"$label":"ACTS_IN","name":"Davide","type":"Role","_key":"23640","_from":"17140","_to":"17139"} +{"$label":"ACTS_IN","name":"Theseus","type":"Role","_key":"23657","_from":"17152","_to":"17146"} +{"$label":"ACTS_IN","name":"Demetrius","type":"Role","_key":"23654","_from":"17151","_to":"17146"} +{"$label":"ACTS_IN","name":"Lysander","type":"Role","_key":"23653","_from":"17150","_to":"17146"} +{"$label":"ACTS_IN","name":"Oberon","type":"Role","_key":"23651","_from":"17149","_to":"17146"} +{"$label":"ACTS_IN","name":"Hermia","type":"Role","_key":"23650","_from":"17148","_to":"17146"} +{"$label":"DIRECTED","_key":"23648","_from":"17147","_to":"17146"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"32356","_from":"17148","_to":"22533"} +{"$label":"ACTS_IN","name":"Colette M\u00e9nardier","type":"Role","_key":"32078","_from":"17148","_to":"22350"} +{"$label":"ACTS_IN","name":"Charles Regnier","type":"Role","_key":"30615","_from":"17149","_to":"21508"} +{"$label":"ACTS_IN","name":"Pygmalion III","type":"Role","_key":"31412","_from":"17150","_to":"21948"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"27121","_from":"17152","_to":"19519"} +{"$label":"ACTS_IN","name":"Professeur Laroche","type":"Role","_key":"23665","_from":"17158","_to":"17153"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"23664","_from":"17157","_to":"17153"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"23663","_from":"17156","_to":"17153"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"23661","_from":"17155","_to":"17153"} +{"$label":"DIRECTED","_key":"23658","_from":"17154","_to":"17153"} +{"$label":"ACTS_IN","name":"Giulio","type":"Role","_key":"35673","_from":"17155","_to":"24241"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33042","_from":"17155","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33765","_from":"17156","_to":"23279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34009","_from":"17158","_to":"23394"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"23675","_from":"17163","_to":"17159"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"23673","_from":"17162","_to":"17159"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"23671","_from":"17161","_to":"17159"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"23670","_from":"17160","_to":"17159"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"71412","_from":"17160","_to":"43302"} +{"$label":"ACTS_IN","name":"Duhamel","type":"Role","_key":"114474","_from":"17162","_to":"67433"} +{"$label":"ACTS_IN","name":"Felix Pejat","type":"Role","_key":"71427","_from":"17162","_to":"43308"} +{"$label":"ACTS_IN","name":"le malfrat","type":"Role","_key":"33688","_from":"17162","_to":"23246"} +{"$label":"ACTS_IN","name":"G\u00e9rard Postelle","type":"Role","_key":"30621","_from":"17162","_to":"21508"} +{"$label":"ACTS_IN","name":"le procureur","type":"Role","_key":"30023","_from":"17162","_to":"21177"} +{"$label":"ACTS_IN","name":"Directeur de la prison","type":"Role","_key":"23739","_from":"17162","_to":"17206"} +{"$label":"ACTS_IN","name":"Jacques Neuil","type":"Role","_key":"33816","_from":"17163","_to":"23307"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"32279","_from":"17163","_to":"22479"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"23685","_from":"17166","_to":"17164"} +{"$label":"ACTS_IN","name":"Earl Huttinger","type":"Role","_key":"23682","_from":"17165","_to":"17164"} +{"$label":"ACTS_IN","name":"Det. Bob Mothershed","type":"Role","_key":"109002","_from":"17165","_to":"64413"} +{"$label":"ACTS_IN","name":"Richard Grant","type":"Role","_key":"89933","_from":"17165","_to":"53211"} +{"$label":"ACTS_IN","name":"Prof. Walter Vale","type":"Role","_key":"89721","_from":"17165","_to":"53110"} +{"$label":"ACTS_IN","name":"Richard Jenkins","type":"Role","_key":"88211","_from":"17165","_to":"52337"} +{"$label":"ACTS_IN","name":"Freddy Bender","type":"Role","_key":"71875","_from":"17165","_to":"43490"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"69392","_from":"17165","_to":"42419"} +{"$label":"ACTS_IN","name":"Carl Zimmer","type":"Role","_key":"67912","_from":"17165","_to":"41725"} +{"$label":"ACTS_IN","name":"Walter Abundas","type":"Role","_key":"65716","_from":"17165","_to":"40695"} +{"$label":"ACTS_IN","name":"Hank Aimes","type":"Role","_key":"55846","_from":"17165","_to":"35533"} +{"$label":"ACTS_IN","name":"Frank Bascombe","type":"Role","_key":"47202","_from":"17165","_to":"31110"} +{"$label":"ACTS_IN","name":"Clyde Alden","type":"Role","_key":"41463","_from":"17165","_to":"27868"} +{"$label":"ACTS_IN","name":"Ted Treffon","type":"Role","_key":"35021","_from":"17165","_to":"23900"} +{"$label":"ACTS_IN","name":"Devine","type":"Role","_key":"31301","_from":"17165","_to":"21887"} +{"$label":"ACTS_IN","name":"John McVey","type":"Role","_key":"27495","_from":"17165","_to":"19733"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"120425","_from":"17166","_to":"70746"} +{"$label":"ACTS_IN","name":"Elder Aaron Davis","type":"Role","_key":"105561","_from":"17166","_to":"62121"} +{"$label":"DIRECTED","_key":"23691","_from":"17173","_to":"17167"} +{"$label":"DIRECTED","_key":"23690","_from":"17172","_to":"17167"} +{"$label":"ACTS_IN","name":"All other characters","type":"Role","_key":"23689","_from":"17171","_to":"17167"} +{"$label":"ACTS_IN","name":"Pension keeper","type":"Role","_key":"23688","_from":"17170","_to":"17167"} +{"$label":"ACTS_IN","name":"Jakob Yzermans","type":"Role","_key":"23687","_from":"17169","_to":"17167"} +{"$label":"ACTS_IN","name":"Hendrik Yzermans","type":"Role","_key":"23686","_from":"17168","_to":"17167"} +{"$label":"ACTS_IN","name":"Kistenmaker","type":"Role","_key":"29732","_from":"17168","_to":"21045"} +{"$label":"ACTS_IN","name":"Teerwater","type":"Role","_key":"23704","_from":"17169","_to":"17182"} +{"$label":"ACTS_IN","name":"F.","type":"Role","_key":"23705","_from":"17170","_to":"17182"} +{"$label":"DIRECTED","_key":"29733","_from":"17172","_to":"21045"} +{"$label":"DIRECTED","_key":"23701","_from":"17172","_to":"17182"} +{"$label":"ACTS_IN","name":"Belmonta","type":"Role","_key":"23700","_from":"17181","_to":"17174"} +{"$label":"ACTS_IN","name":"C\u00e9lia","type":"Role","_key":"23698","_from":"17180","_to":"17174"} +{"$label":"ACTS_IN","name":"Michel Lemarchand","type":"Role","_key":"23697","_from":"17179","_to":"17174"} +{"$label":"ACTS_IN","name":"Arnaud de Montcourtet","type":"Role","_key":"23696","_from":"17178","_to":"17174"} +{"$label":"ACTS_IN","name":"Xavier de Montcourtet","type":"Role","_key":"23695","_from":"17177","_to":"17174"} +{"$label":"ACTS_IN","name":"Commissaire Vallon","type":"Role","_key":"23693","_from":"17176","_to":"17174"} +{"$label":"DIRECTED","_key":"23692","_from":"17175","_to":"17174"} +{"$label":"ACTS_IN","name":"Jean-Pierre Goulard","type":"Role","_key":"62746","_from":"17177","_to":"39445"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"27135","_from":"17179","_to":"19521"} +{"$label":"ACTS_IN","name":"Jean Dabin","type":"Role","_key":"23728","_from":"17179","_to":"17206"} +{"$label":"ACTS_IN","name":"Le capitaine de gendarmerie","type":"Role","_key":"112170","_from":"17181","_to":"66238"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de Rapha\u00ebl","type":"Role","_key":"62257","_from":"17181","_to":"39206"} +{"$label":"ACTS_IN","name":"Toubib cimeti\u00e8re","type":"Role","_key":"35838","_from":"17181","_to":"24328"} +{"$label":"ACTS_IN","name":"Rolfie","type":"Role","_key":"23706","_from":"17185","_to":"17182"} +{"$label":"ACTS_IN","name":"Vlasboer","type":"Role","_key":"23703","_from":"17184","_to":"17182"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"23702","_from":"17183","_to":"17182"} +{"$label":"ACTS_IN","name":"Sergeant Yam","type":"Role","_key":"23717","_from":"17197","_to":"17186"} +{"$label":"ACTS_IN","name":"Kamnan Dua","type":"Role","_key":"23716","_from":"17196","_to":"17186"} +{"$label":"ACTS_IN","name":"Rumpoey's maid","type":"Role","_key":"23715","_from":"17195","_to":"17186"} +{"$label":"ACTS_IN","name":"Phya Prasit","type":"Role","_key":"23714","_from":"17194","_to":"17186"} +{"$label":"ACTS_IN","name":"Fai","type":"Role","_key":"23713","_from":"17193","_to":"17186"} +{"$label":"ACTS_IN","name":"Police Captain Kumjorn","type":"Role","_key":"23712","_from":"17192","_to":"17186"} +{"$label":"ACTS_IN","name":"Mahesuan","type":"Role","_key":"23711","_from":"17191","_to":"17186"} +{"$label":"ACTS_IN","name":"Rumpoey","type":"Role","_key":"23710","_from":"17190","_to":"17186"} +{"$label":"ACTS_IN","name":"Dum (Black Tiger Youth)","type":"Role","_key":"23709","_from":"17189","_to":"17186"} +{"$label":"ACTS_IN","name":"Black Tiger","type":"Role","_key":"23708","_from":"17188","_to":"17186"} +{"$label":"DIRECTED","_key":"23707","_from":"17187","_to":"17186"} +{"$label":"ACTS_IN","name":"as Himself","type":"Role","_key":"23723","_from":"17205","_to":"17199"} +{"$label":"ACTS_IN","name":"Himself (bas)","type":"Role","_key":"23722","_from":"17204","_to":"17199"} +{"$label":"ACTS_IN","name":"Himself (Guitar)","type":"Role","_key":"23721","_from":"17203","_to":"17199"} +{"$label":"ACTS_IN","name":"Himself (Drums)","type":"Role","_key":"23720","_from":"17202","_to":"17199"} +{"$label":"ACTS_IN","name":"Eefski (bassplayer)","type":"Role","_key":"23719","_from":"17201","_to":"17199"} +{"$label":"DIRECTED","_key":"23718","_from":"17200","_to":"17199"} +{"$label":"ACTS_IN","name":"Camus","type":"Role","_key":"23740","_from":"17214","_to":"17206"} +{"$label":"ACTS_IN","name":"Co-d\u00e9tenue","type":"Role","_key":"23738","_from":"17213","_to":"17206"} +{"$label":"ACTS_IN","name":"Etudiant","type":"Role","_key":"23736","_from":"17212","_to":"17206"} +{"$label":"ACTS_IN","name":"Madame Mayeul","type":"Role","_key":"23734","_from":"17211","_to":"17206"} +{"$label":"ACTS_IN","name":"Juge","type":"Role","_key":"23733","_from":"17210","_to":"17206"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"23732","_from":"17209","_to":"17206"} +{"$label":"ACTS_IN","name":"Mayeul","type":"Role","_key":"23731","_from":"17208","_to":"17206"} +{"$label":"ACTS_IN","name":"Maddy","type":"Role","_key":"23729","_from":"17207","_to":"17206"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71981","_from":"17208","_to":"43534"} +{"$label":"ACTS_IN","name":"le professeur","type":"Role","_key":"37843","_from":"17208","_to":"25644"} +{"$label":"ACTS_IN","name":"Delecluze","type":"Role","_key":"32910","_from":"17208","_to":"22829"} +{"$label":"ACTS_IN","name":"Commissaire Lamy","type":"Role","_key":"27352","_from":"17208","_to":"19658"} +{"$label":"ACTS_IN","name":"Mme Chabert","type":"Role","_key":"114473","_from":"17211","_to":"67433"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89286","_from":"17211","_to":"52859"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"62210","_from":"17211","_to":"39172"} +{"$label":"ACTS_IN","name":"M\u00e8re de Catherine","type":"Role","_key":"29949","_from":"17211","_to":"21159"} +{"$label":"ACTS_IN","name":"Barere","type":"Role","_key":"30236","_from":"17212","_to":"21284"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Costa","type":"Role","_key":"121571","_from":"17213","_to":"71429"} +{"$label":"ACTS_IN","name":"The Queen","type":"Role","_key":"120027","_from":"17213","_to":"70489"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"101338","_from":"17213","_to":"59657"} +{"$label":"ACTS_IN","name":"la m\u00e8re de M. Martineau","type":"Role","_key":"88437","_from":"17213","_to":"52417"} +{"$label":"ACTS_IN","name":"Baronin von Wrangel","type":"Role","_key":"42294","_from":"17213","_to":"28316"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"37870","_from":"17213","_to":"25653"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"35632","_from":"17213","_to":"24219"} +{"$label":"ACTS_IN","name":"Flora","type":"Role","_key":"34292","_from":"17213","_to":"23529"} +{"$label":"ACTS_IN","name":"Camille Bliss","type":"Role","_key":"33378","_from":"17213","_to":"23107"} +{"$label":"ACTS_IN","name":"Salom\u00e9","type":"Role","_key":"32779","_from":"17213","_to":"22761"} +{"$label":"ACTS_IN","name":"la soeur de Georgette","type":"Role","_key":"30929","_from":"17213","_to":"21670"} +{"$label":"ACTS_IN","name":"Gis\u00e8le Brossard","type":"Role","_key":"30646","_from":"17213","_to":"21518"} +{"$label":"ACTS_IN","name":"Bernadette Lafont","type":"Role","_key":"29500","_from":"17213","_to":"20909"} +{"$label":"ACTS_IN","name":"Bertrand Beauvois","type":"Role","_key":"104025","_from":"17214","_to":"61200"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96036","_from":"17214","_to":"56454"} +{"$label":"ACTS_IN","name":"Roland Verneuil","type":"Role","_key":"48766","_from":"17214","_to":"31986"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"24018","_from":"17214","_to":"17413"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"23747","_from":"17220","_to":"17215"} +{"$label":"ACTS_IN","name":"Giulianella","type":"Role","_key":"23746","_from":"17219","_to":"17215"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"23745","_from":"17218","_to":"17215"} +{"$label":"ACTS_IN","name":"Don Peppino Priore","type":"Role","_key":"23744","_from":"17217","_to":"17215"} +{"$label":"DIRECTED","_key":"23742","_from":"17216","_to":"17215"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"23757","_from":"17229","_to":"17221"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"23756","_from":"17228","_to":"17221"} +{"$label":"ACTS_IN","name":"Malfrin","type":"Role","_key":"23755","_from":"17227","_to":"17221"} +{"$label":"ACTS_IN","name":"Elisa","type":"Role","_key":"23754","_from":"17226","_to":"17221"} +{"$label":"ACTS_IN","name":"Chabert","type":"Role","_key":"23753","_from":"17225","_to":"17221"} +{"$label":"ACTS_IN","name":"Martinon","type":"Role","_key":"23751","_from":"17224","_to":"17221"} +{"$label":"ACTS_IN","name":"Valentin","type":"Role","_key":"23749","_from":"17223","_to":"17221"} +{"$label":"DIRECTED","_key":"23748","_from":"17222","_to":"17221"} +{"$label":"ACTS_IN","name":"Joseph Binder","type":"Role","_key":"35117","_from":"17223","_to":"23944"} +{"$label":"ACTS_IN","name":"Raymond Robel","type":"Role","_key":"30319","_from":"17223","_to":"21319"} +{"$label":"ACTS_IN","name":"Monsieur Seurel","type":"Role","_key":"35574","_from":"17225","_to":"24177"} +{"$label":"ACTS_IN","name":"un inspecteur","type":"Role","_key":"33963","_from":"17225","_to":"23371"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"33826","_from":"17228","_to":"23309"} +{"$label":"ACTS_IN","name":"Madame Neuil","type":"Role","_key":"33817","_from":"17228","_to":"23307"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29452","_from":"17228","_to":"20889"} +{"$label":"ACTS_IN","name":"Red Cross Nun","type":"Role","_key":"35498","_from":"17229","_to":"24138"} +{"$label":"ACTS_IN","name":"Marie-Laure","type":"Role","_key":"34081","_from":"17229","_to":"23415"} +{"$label":"ACTS_IN","name":"Soeur Simplice","type":"Role","_key":"31541","_from":"17229","_to":"22027"} +{"$label":"ACTS_IN","name":"Docteur","type":"Role","_key":"23768","_from":"17233","_to":"17230"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"23762","_from":"17232","_to":"17230"} +{"$label":"ACTS_IN","name":"Camille Lalande","type":"Role","_key":"23761","_from":"17231","_to":"17230"} +{"$label":"DIRECTED","_key":"104407","_from":"17231","_to":"61418"} +{"$label":"DIRECTED","_key":"69622","_from":"17231","_to":"42496"} +{"$label":"DIRECTED","_key":"65112","_from":"17231","_to":"40447"} +{"$label":"ACTS_IN","name":"Agathe Villanova","type":"Role","_key":"104406","_from":"17231","_to":"61418"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101278","_from":"17231","_to":"59634"} +{"$label":"ACTS_IN","name":"Sylvia Millet","type":"Role","_key":"69618","_from":"17231","_to":"42496"} +{"$label":"ACTS_IN","name":"Manie","type":"Role","_key":"65116","_from":"17231","_to":"40447"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116273","_from":"17232","_to":"68455"} +{"$label":"ACTS_IN","name":"Michel Ronsard","type":"Role","_key":"104404","_from":"17232","_to":"61418"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101275","_from":"17232","_to":"59634"} +{"$label":"ACTS_IN","name":"\u00c9tienne Cassard","type":"Role","_key":"69617","_from":"17232","_to":"42496"} +{"$label":"ACTS_IN","name":"Jean-Charles Castella","type":"Role","_key":"65113","_from":"17232","_to":"40447"} +{"$label":"ACTS_IN","name":"Arnaud","type":"Role","_key":"23776","_from":"17241","_to":"17234"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"23775","_from":"17240","_to":"17234"} +{"$label":"ACTS_IN","name":"Keyser","type":"Role","_key":"23774","_from":"17239","_to":"17234"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"23773","_from":"17238","_to":"17234"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"23771","_from":"17237","_to":"17234"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"23770","_from":"17236","_to":"17234"} +{"$label":"DIRECTED","_key":"23769","_from":"17235","_to":"17234"} +{"$label":"ACTS_IN","name":"Costa Valdez","type":"Role","_key":"70331","_from":"17237","_to":"42850"} +{"$label":"DIRECTED","_key":"23782","_from":"17246","_to":"17242"} +{"$label":"ACTS_IN","name":"Dr. Leitziger","type":"Role","_key":"23781","_from":"17245","_to":"17242"} +{"$label":"ACTS_IN","name":"Thor Griffin","type":"Role","_key":"23780","_from":"17244","_to":"17242"} +{"$label":"ACTS_IN","name":"Sean Poll","type":"Role","_key":"23779","_from":"17243","_to":"17242"} +{"$label":"ACTS_IN","name":"Mann vorm Club","type":"Role","_key":"35709","_from":"17243","_to":"24265"} +{"$label":"ACTS_IN","name":"Klavierlehrerin","type":"Role","_key":"23964","_from":"17245","_to":"17374"} +{"$label":"ACTS_IN","name":"Rosalie","type":"Role","_key":"23783","_from":"17245","_to":"17247"} +{"$label":"DIRECTED","_key":"35707","_from":"17246","_to":"24265"} +{"$label":"DIRECTED","_key":"27553","_from":"17246","_to":"19766"} +{"$label":"DIRECTED","_key":"27552","_from":"17246","_to":"19765"} +{"$label":"DIRECTED","_key":"27545","_from":"17246","_to":"19761"} +{"$label":"DIRECTED","_key":"27542","_from":"17246","_to":"19759"} +{"$label":"DIRECTED","_key":"27528","_from":"17246","_to":"19753"} +{"$label":"DIRECTED","_key":"25759","_from":"17246","_to":"18538"} +{"$label":"DIRECTED","_key":"23967","_from":"17246","_to":"17376"} +{"$label":"DIRECTED","_key":"23966","_from":"17246","_to":"17374"} +{"$label":"DIRECTED","_key":"23962","_from":"17246","_to":"17370"} +{"$label":"DIRECTED","_key":"23953","_from":"17246","_to":"17367"} +{"$label":"DIRECTED","_key":"23950","_from":"17246","_to":"17364"} +{"$label":"DIRECTED","_key":"23947","_from":"17246","_to":"17361"} +{"$label":"DIRECTED","_key":"23944","_from":"17246","_to":"17360"} +{"$label":"DIRECTED","_key":"23943","_from":"17246","_to":"17357"} +{"$label":"DIRECTED","_key":"23933","_from":"17246","_to":"17349"} +{"$label":"DIRECTED","_key":"23788","_from":"17246","_to":"17247"} +{"$label":"ACTS_IN","name":"er selbst","type":"Role","_key":"27529","_from":"17246","_to":"19753"} +{"$label":"DIRECTED","_key":"23791","_from":"17252","_to":"17247"} +{"$label":"DIRECTED","_key":"23790","_from":"17249","_to":"17247"} +{"$label":"DIRECTED","_key":"23789","_from":"17251","_to":"17247"} +{"$label":"ACTS_IN","name":"Inga","type":"Role","_key":"23787","_from":"17250","_to":"17247"} +{"$label":"ACTS_IN","name":"Dr. Claasen","type":"Role","_key":"23786","_from":"17249","_to":"17247"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"23785","_from":"17248","_to":"17247"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47936","_from":"17248","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47927","_from":"17248","_to":"31524"} +{"$label":"DIRECTED","_key":"23963","_from":"17251","_to":"17370"} +{"$label":"ACTS_IN","name":"D","type":"Role","_key":"23961","_from":"17251","_to":"17370"} +{"$label":"DIRECTED","_key":"23794","_from":"17254","_to":"17253"} +{"$label":"ACTS_IN","name":"Martinon","type":"Role","_key":"23799","_from":"17257","_to":"17255"} +{"$label":"DIRECTED","_key":"23795","_from":"17256","_to":"17255"} +{"$label":"DIRECTED","_key":"23805","_from":"17262","_to":"17258"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"23804","_from":"17261","_to":"17258"} +{"$label":"ACTS_IN","name":"Ju\u00e1n","type":"Role","_key":"23803","_from":"17260","_to":"17258"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"23802","_from":"17259","_to":"17258"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"26370","_from":"17259","_to":"18940"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"62469","_from":"17261","_to":"39343"} +{"$label":"ACTS_IN","name":"Matteo","type":"Role","_key":"62464","_from":"17261","_to":"39340"} +{"$label":"ACTS_IN","name":"le maire","type":"Role","_key":"23829","_from":"17281","_to":"17263"} +{"$label":"ACTS_IN","name":"la fille de Sophie","type":"Role","_key":"23826","_from":"17280","_to":"17263"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"23825","_from":"17279","_to":"17263"} +{"$label":"ACTS_IN","name":"Agn\u00e8s","type":"Role","_key":"23824","_from":"17278","_to":"17263"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"23823","_from":"17277","_to":"17263"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Lefosset","type":"Role","_key":"23822","_from":"17276","_to":"17263"} +{"$label":"ACTS_IN","name":"Aline","type":"Role","_key":"23821","_from":"17275","_to":"17263"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"23820","_from":"17274","_to":"17263"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"23819","_from":"17273","_to":"17263"} +{"$label":"ACTS_IN","name":"Cl\u00e9ment a\u00een\u00e9","type":"Role","_key":"23818","_from":"17272","_to":"17263"} +{"$label":"ACTS_IN","name":"L\u00e9ontine a\u00een\u00e9e","type":"Role","_key":"23817","_from":"17271","_to":"17263"} +{"$label":"ACTS_IN","name":"L\u00e9ontine jeune","type":"Role","_key":"23816","_from":"17270","_to":"17263"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"23813","_from":"17269","_to":"17263"} +{"$label":"ACTS_IN","name":"Anne-Marie de Mettray","type":"Role","_key":"23812","_from":"17268","_to":"17263"} +{"$label":"ACTS_IN","name":"Hippolyte de Mettray","type":"Role","_key":"23811","_from":"17267","_to":"17263"} +{"$label":"ACTS_IN","name":"Maxence a\u00een\u00e9","type":"Role","_key":"23808","_from":"17266","_to":"17263"} +{"$label":"ACTS_IN","name":"Maxence jeune","type":"Role","_key":"23807","_from":"17265","_to":"17263"} +{"$label":"DIRECTED","_key":"23806","_from":"17264","_to":"17263"} +{"$label":"DIRECTED","_key":"29492","_from":"17264","_to":"20909"} +{"$label":"ACTS_IN","name":"Saint-Brice","type":"Role","_key":"30599","_from":"17265","_to":"21501"} +{"$label":"ACTS_IN","name":"Baron de Taverney","type":"Role","_key":"71971","_from":"17266","_to":"43534"} +{"$label":"ACTS_IN","name":"Abb\u00e9 Faria","type":"Role","_key":"32350","_from":"17266","_to":"22527"} +{"$label":"ACTS_IN","name":"Buckingham","type":"Role","_key":"29803","_from":"17267","_to":"21082"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"31524","_from":"17270","_to":"22016"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"31585","_from":"17275","_to":"22058"} +{"$label":"ACTS_IN","name":"la fille du tramway et des escaliers","type":"Role","_key":"34064","_from":"17277","_to":"23411"} +{"$label":"ACTS_IN","name":"Madame Emery (Mutter)","type":"Role","_key":"40843","_from":"17278","_to":"27492"} +{"$label":"ACTS_IN","name":"Madame Bellac","type":"Role","_key":"33614","_from":"17278","_to":"23215"} +{"$label":"ACTS_IN","name":"Madame Walter","type":"Role","_key":"24016","_from":"17279","_to":"17413"} +{"$label":"ACTS_IN","name":"Magali","type":"Role","_key":"61877","_from":"17280","_to":"38947"} +{"$label":"ACTS_IN","name":"La soeur de Themroc","type":"Role","_key":"45710","_from":"17280","_to":"30252"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"24020","_from":"17280","_to":"17418"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"24014","_from":"17280","_to":"17413"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Chamfort","type":"Role","_key":"71451","_from":"17281","_to":"43316"} +{"$label":"ACTS_IN","name":"Audrey Bennett","type":"Role","_key":"23838","_from":"17286","_to":"17282"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"23837","_from":"17285","_to":"17282"} +{"$label":"ACTS_IN","name":"Speed","type":"Role","_key":"23836","_from":"17284","_to":"17282"} +{"$label":"ACTS_IN","name":"Red Taylor","type":"Role","_key":"23832","_from":"17283","_to":"17282"} +{"$label":"ACTS_IN","name":"Bobby Dee","type":"Role","_key":"93655","_from":"17283","_to":"55135"} +{"$label":"ACTS_IN","name":"Bennie Bang","type":"Role","_key":"67373","_from":"17283","_to":"41515"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65237","_from":"17283","_to":"40502"} +{"$label":"ACTS_IN","name":"Record Executive","type":"Role","_key":"64563","_from":"17283","_to":"40205"} +{"$label":"ACTS_IN","name":"Mort","type":"Role","_key":"63854","_from":"17283","_to":"39906"} +{"$label":"ACTS_IN","name":"Mountie","type":"Role","_key":"58506","_from":"17283","_to":"36974"} +{"$label":"ACTS_IN","name":"Father Harris","type":"Role","_key":"30454","_from":"17283","_to":"21400"} +{"$label":"ACTS_IN","name":"Brent Gage","type":"Role","_key":"121449","_from":"17284","_to":"71349"} +{"$label":"ACTS_IN","name":"Donnie","type":"Role","_key":"105260","_from":"17284","_to":"61944"} +{"$label":"ACTS_IN","name":"Stumpy","type":"Role","_key":"99836","_from":"17284","_to":"58886"} +{"$label":"ACTS_IN","name":"Commissioner","type":"Role","_key":"93652","_from":"17284","_to":"55135"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"90336","_from":"17284","_to":"53393"} +{"$label":"ACTS_IN","name":"Larabee","type":"Role","_key":"71400","_from":"17284","_to":"43300"} +{"$label":"ACTS_IN","name":"Lambeau \"Coach\" Fields","type":"Role","_key":"65534","_from":"17284","_to":"40621"} +{"$label":"ACTS_IN","name":"Sheriff of Aspen","type":"Role","_key":"60557","_from":"17284","_to":"38218"} +{"$label":"ACTS_IN","name":"Champ Kind","type":"Role","_key":"58647","_from":"17284","_to":"37052"} +{"$label":"ACTS_IN","name":"Dag the Coyote","type":"Role","_key":"57858","_from":"17284","_to":"36614"} +{"$label":"ACTS_IN","name":"Shanahan","type":"Role","_key":"57005","_from":"17284","_to":"36167"} +{"$label":"ACTS_IN","name":"Hershell","type":"Role","_key":"55963","_from":"17284","_to":"35579"} +{"$label":"ACTS_IN","name":"Champion 'Champ' Kind","type":"Role","_key":"50546","_from":"17284","_to":"33010"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"47217","_from":"17284","_to":"31117"} +{"$label":"ACTS_IN","name":"lauren","type":"Role","_key":"115781","_from":"17285","_to":"68168"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115205","_from":"17285","_to":"67848"} +{"$label":"ACTS_IN","name":"The Female","type":"Role","_key":"111482","_from":"17285","_to":"65827"} +{"$label":"ACTS_IN","name":"Ginger Peachum","type":"Role","_key":"98490","_from":"17285","_to":"58035"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"95878","_from":"17285","_to":"56389"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"60281","_from":"17285","_to":"38015"} +{"$label":"ACTS_IN","name":"Mistress Moira","type":"Role","_key":"59957","_from":"17285","_to":"37851"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"59559","_from":"17285","_to":"37600"} +{"$label":"ACTS_IN","name":"Mystique","type":"Role","_key":"56393","_from":"17285","_to":"35829"} +{"$label":"ACTS_IN","name":"Staci","type":"Role","_key":"53503","_from":"17285","_to":"34547"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Margo","type":"Role","_key":"46191","_from":"17285","_to":"30529"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"30570","_from":"17285","_to":"21488"} +{"$label":"ACTS_IN","name":"Drew Decker","type":"Role","_key":"30431","_from":"17285","_to":"21394"} +{"$label":"ACTS_IN","name":"Penelope Little","type":"Role","_key":"121325","_from":"17286","_to":"71285"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"102034","_from":"17286","_to":"60031"} +{"$label":"ACTS_IN","name":"Mary Katherine Gallagher","type":"Role","_key":"97038","_from":"17286","_to":"57090"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"95284","_from":"17286","_to":"56059"} +{"$label":"ACTS_IN","name":"Mrs. Boyd","type":"Role","_key":"90592","_from":"17286","_to":"53504"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"69368","_from":"17286","_to":"42409"} +{"$label":"ACTS_IN","name":"[attached]","type":"Role","_key":"30582","_from":"17286","_to":"21490"} +{"$label":"ACTS_IN","name":"Gefrorene Leiche","type":"Role","_key":"23862","_from":"17297","_to":"17287"} +{"$label":"ACTS_IN","name":"Bailiff","type":"Role","_key":"23861","_from":"17296","_to":"17287"} +{"$label":"ACTS_IN","name":"Nackter Gesch\u00e4ftsmann","type":"Role","_key":"23860","_from":"17295","_to":"17287"} +{"$label":"ACTS_IN","name":"Bailiff Jenkins","type":"Role","_key":"23859","_from":"17294","_to":"17287"} +{"$label":"ACTS_IN","name":"Detective Varole","type":"Role","_key":"23858","_from":"17293","_to":"17287"} +{"$label":"ACTS_IN","name":"Timmy York","type":"Role","_key":"23856","_from":"17292","_to":"17287"} +{"$label":"ACTS_IN","name":"Staatsanwaltsmitarbeiter","type":"Role","_key":"23855","_from":"17291","_to":"17287"} +{"$label":"ACTS_IN","name":"Alice York","type":"Role","_key":"23854","_from":"17290","_to":"17287"} +{"$label":"ACTS_IN","name":"Verteidiger","type":"Role","_key":"23852","_from":"17289","_to":"17287"} +{"$label":"ACTS_IN","name":"Caroline Suzanne","type":"Role","_key":"23851","_from":"17288","_to":"17287"} +{"$label":"ACTS_IN","name":"Richard's Mom","type":"Role","_key":"101902","_from":"17288","_to":"59972"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"72589","_from":"17288","_to":"43768"} +{"$label":"ACTS_IN","name":"Mrs. Mott \/ Peyton Flanders","type":"Role","_key":"67805","_from":"17288","_to":"41676"} +{"$label":"ACTS_IN","name":"Philaine","type":"Role","_key":"56787","_from":"17288","_to":"36065"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"53267","_from":"17288","_to":"34451"} +{"$label":"ACTS_IN","name":"Claire Dupin","type":"Role","_key":"42249","_from":"17288","_to":"28293"} +{"$label":"ACTS_IN","name":"Jennifer Haines","type":"Role","_key":"34740","_from":"17288","_to":"23754"} +{"$label":"ACTS_IN","name":"Silvano Ventivoglio","type":"Role","_key":"94508","_from":"17289","_to":"55655"} +{"$label":"ACTS_IN","name":"Colonel Zayas","type":"Role","_key":"90907","_from":"17289","_to":"53628"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"69217","_from":"17289","_to":"42327"} +{"$label":"ACTS_IN","name":"Russell Maddock \/ Voice of K.I.T.T.","type":"Role","_key":"66992","_from":"17289","_to":"41357"} +{"$label":"ACTS_IN","name":"Frank McIntyre","type":"Role","_key":"36707","_from":"17289","_to":"24881"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"72383","_from":"17290","_to":"43699"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"43482","_from":"17290","_to":"29038"} +{"$label":"ACTS_IN","name":"Jeremy Hopkins","type":"Role","_key":"45329","_from":"17292","_to":"30059"} +{"$label":"ACTS_IN","name":"Mr. Stewart","type":"Role","_key":"70403","_from":"17293","_to":"42873"} +{"$label":"ACTS_IN","name":"Lt. Kevin O'Malley","type":"Role","_key":"54754","_from":"17293","_to":"35043"} +{"$label":"ACTS_IN","name":"Dr. Toscanini","type":"Role","_key":"23869","_from":"17303","_to":"17298"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"23868","_from":"17302","_to":"17298"} +{"$label":"ACTS_IN","name":"Marguerite, m\u00e8re de Luce","type":"Role","_key":"23867","_from":"17301","_to":"17298"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"23866","_from":"17300","_to":"17298"} +{"$label":"DIRECTED","_key":"23864","_from":"17299","_to":"17298"} +{"$label":"ACTS_IN","name":"Pierre Mallois","type":"Role","_key":"89590","_from":"17300","_to":"53014"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"28984","_from":"17300","_to":"20696"} +{"$label":"ACTS_IN","name":"Robert Saidani","type":"Role","_key":"27155","_from":"17300","_to":"19528"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"23878","_from":"17311","_to":"17304"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"23877","_from":"17310","_to":"17304"} +{"$label":"ACTS_IN","name":"Mlle Jauffret","type":"Role","_key":"23876","_from":"17309","_to":"17304"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"23875","_from":"17308","_to":"17304"} +{"$label":"ACTS_IN","name":"Germain Mauffranc","type":"Role","_key":"23874","_from":"17307","_to":"17304"} +{"$label":"ACTS_IN","name":"Guillaume Mauffranc","type":"Role","_key":"23873","_from":"17306","_to":"17304"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"23872","_from":"17305","_to":"17304"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"88718","_from":"17305","_to":"52569"} +{"$label":"ACTS_IN","name":"Jean-Pierre, l'avocat","type":"Role","_key":"88708","_from":"17305","_to":"52563"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29764","_from":"17307","_to":"21066"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"43435","_from":"17310","_to":"29017"} +{"$label":"ACTS_IN","name":"Bastoche","type":"Role","_key":"23892","_from":"17315","_to":"17312"} +{"$label":"ACTS_IN","name":"Benjamin Gordes","type":"Role","_key":"23889","_from":"17314","_to":"17312"} +{"$label":"ACTS_IN","name":"Ange Bassignano","type":"Role","_key":"23887","_from":"17313","_to":"17312"} +{"$label":"ACTS_IN","name":"BR","type":"Role","_key":"103293","_from":"17313","_to":"60764"} +{"$label":"ACTS_IN","name":"Toothless Man","type":"Role","_key":"59889","_from":"17313","_to":"37818"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"118700","_from":"17314","_to":"69798"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115744","_from":"17314","_to":"68151"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110762","_from":"17314","_to":"65431"} +{"$label":"ACTS_IN","name":"Alexandre Dard","type":"Role","_key":"104004","_from":"17314","_to":"61189"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101276","_from":"17314","_to":"59634"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"96134","_from":"17314","_to":"56503"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"89970","_from":"17314","_to":"53224"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"36228","_from":"17314","_to":"24586"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Migot","type":"Role","_key":"35833","_from":"17314","_to":"24328"} +{"$label":"ACTS_IN","name":"Jardinier","type":"Role","_key":"32274","_from":"17314","_to":"22479"} +{"$label":"DIRECTED","_key":"23916","_from":"17332","_to":"17316"} +{"$label":"DIRECTED","_key":"23915","_from":"17331","_to":"17316"} +{"$label":"DIRECTED","_key":"23914","_from":"17330","_to":"17316"} +{"$label":"DIRECTED","_key":"23913","_from":"17329","_to":"17316"} +{"$label":"ACTS_IN","name":"Bassoonist","type":"Role","_key":"23911","_from":"17328","_to":"17316"} +{"$label":"ACTS_IN","name":"Ballerina","type":"Role","_key":"23909","_from":"17327","_to":"17316"} +{"$label":"ACTS_IN","name":"Lady Hysteria","type":"Role","_key":"23908","_from":"17326","_to":"17316"} +{"$label":"ACTS_IN","name":"Patron","type":"Role","_key":"23907","_from":"17325","_to":"17316"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"23906","_from":"17324","_to":"17316"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"23904","_from":"17323","_to":"17316"} +{"$label":"ACTS_IN","name":"Grigoriev","type":"Role","_key":"23903","_from":"17322","_to":"17316"} +{"$label":"ACTS_IN","name":"Pierre Monteux","type":"Role","_key":"23902","_from":"17321","_to":"17316"} +{"$label":"ACTS_IN","name":"Astruc","type":"Role","_key":"23900","_from":"17320","_to":"17316"} +{"$label":"ACTS_IN","name":"Romola","type":"Role","_key":"23899","_from":"17319","_to":"17316"} +{"$label":"ACTS_IN","name":"Igor Stravinsky","type":"Role","_key":"23898","_from":"17318","_to":"17316"} +{"$label":"ACTS_IN","name":"Vaslav Nijinsky","type":"Role","_key":"23896","_from":"17317","_to":"17316"} +{"$label":"ACTS_IN","name":"Stu","type":"Role","_key":"68063","_from":"17317","_to":"41819"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"67827","_from":"17317","_to":"41687"} +{"$label":"ACTS_IN","name":"Kevin O'Donnell","type":"Role","_key":"42824","_from":"17317","_to":"28637"} +{"$label":"DIRECTED","_key":"90709","_from":"17329","_to":"53545"} +{"$label":"ACTS_IN","name":"Ni\u00f1a","type":"Role","_key":"23931","_from":"17348","_to":"17333"} +{"$label":"ACTS_IN","name":"Mujer portal","type":"Role","_key":"23930","_from":"17347","_to":"17333"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"23929","_from":"17346","_to":"17333"} +{"$label":"ACTS_IN","name":"Hombre gafas","type":"Role","_key":"23928","_from":"17345","_to":"17333"} +{"$label":"ACTS_IN","name":"Hombre gordo","type":"Role","_key":"23927","_from":"17344","_to":"17333"} +{"$label":"ACTS_IN","name":"Mujer embarazada","type":"Role","_key":"23926","_from":"17343","_to":"17333"} +{"$label":"ACTS_IN","name":"Hombre bar","type":"Role","_key":"23925","_from":"17342","_to":"17333"} +{"$label":"ACTS_IN","name":"Mujer botones","type":"Role","_key":"23924","_from":"17341","_to":"17333"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"23923","_from":"17340","_to":"17333"} +{"$label":"ACTS_IN","name":"Polic\u00eda B","type":"Role","_key":"23922","_from":"17339","_to":"17333"} +{"$label":"ACTS_IN","name":"Polic\u00eda A","type":"Role","_key":"23921","_from":"17338","_to":"17333"} +{"$label":"ACTS_IN","name":"Artista","type":"Role","_key":"23920","_from":"17337","_to":"17333"} +{"$label":"ACTS_IN","name":"Vendedor","type":"Role","_key":"23919","_from":"17336","_to":"17333"} +{"$label":"ACTS_IN","name":"El","type":"Role","_key":"23918","_from":"17335","_to":"17333"} +{"$label":"DIRECTED","_key":"23917","_from":"17334","_to":"17333"} +{"$label":"ACTS_IN","name":"Nicco","type":"Role","_key":"37247","_from":"17338","_to":"25233"} +{"$label":"ACTS_IN","name":"G","type":"Role","_key":"23940","_from":"17356","_to":"17349"} +{"$label":"ACTS_IN","name":"F","type":"Role","_key":"23939","_from":"17355","_to":"17349"} +{"$label":"ACTS_IN","name":"E","type":"Role","_key":"23938","_from":"17354","_to":"17349"} +{"$label":"ACTS_IN","name":"D","type":"Role","_key":"23937","_from":"17353","_to":"17349"} +{"$label":"ACTS_IN","name":"C","type":"Role","_key":"23936","_from":"17352","_to":"17349"} +{"$label":"ACTS_IN","name":"B","type":"Role","_key":"23935","_from":"17351","_to":"17349"} +{"$label":"ACTS_IN","name":"A","type":"Role","_key":"23934","_from":"17350","_to":"17349"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"88626","_from":"17351","_to":"52511"} +{"$label":"ACTS_IN","name":"Unteroffizier Aurich","type":"Role","_key":"70344","_from":"17351","_to":"42854"} +{"$label":"ACTS_IN","name":"Leutnant Sternberg","type":"Role","_key":"49236","_from":"17351","_to":"32251"} +{"$label":"ACTS_IN","name":"Heinz Strunk","type":"Role","_key":"46302","_from":"17351","_to":"30602"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47815","_from":"17353","_to":"31478"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27548","_from":"17353","_to":"19761"} +{"$label":"ACTS_IN","name":"Stuart Dee","type":"Role","_key":"23957","_from":"17354","_to":"17370"} +{"$label":"ACTS_IN","name":"Sie","type":"Role","_key":"23942","_from":"17359","_to":"17357"} +{"$label":"ACTS_IN","name":"Er","type":"Role","_key":"23941","_from":"17358","_to":"17357"} +{"$label":"ACTS_IN","name":"Er 2","type":"Role","_key":"23946","_from":"17358","_to":"17360"} +{"$label":"ACTS_IN","name":"Er","type":"Role","_key":"23949","_from":"17363","_to":"17361"} +{"$label":"ACTS_IN","name":"Sie","type":"Role","_key":"23948","_from":"17362","_to":"17361"} +{"$label":"ACTS_IN","name":"Er","type":"Role","_key":"23952","_from":"17366","_to":"17364"} +{"$label":"ACTS_IN","name":"Sie","type":"Role","_key":"23951","_from":"17365","_to":"17364"} +{"$label":"ACTS_IN","name":"Anna 1","type":"Role","_key":"23955","_from":"17369","_to":"17367"} +{"$label":"ACTS_IN","name":"Anna 2","type":"Role","_key":"23954","_from":"17368","_to":"17367"} +{"$label":"ACTS_IN","name":"C","type":"Role","_key":"23960","_from":"17373","_to":"17370"} +{"$label":"ACTS_IN","name":"B","type":"Role","_key":"23959","_from":"17372","_to":"17370"} +{"$label":"ACTS_IN","name":"A","type":"Role","_key":"23958","_from":"17371","_to":"17370"} +{"$label":"ACTS_IN","name":"Sch\u00fclerin","type":"Role","_key":"23965","_from":"17375","_to":"17374"} +{"$label":"ACTS_IN","name":"Polja","type":"Role","_key":"63120","_from":"17375","_to":"39591"} +{"$label":"ACTS_IN","name":"Der Cellist","type":"Role","_key":"23968","_from":"17377","_to":"17376"} +{"$label":"ACTS_IN","name":"Isaak Perel - Salomons Bruder","type":"Role","_key":"51901","_from":"17377","_to":"33854"} +{"$label":"ACTS_IN","name":"Eugen","type":"Role","_key":"23982","_from":"17388","_to":"17378"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"23981","_from":"17387","_to":"17378"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"23980","_from":"17386","_to":"17378"} +{"$label":"ACTS_IN","name":"Physikprofessor","type":"Role","_key":"23979","_from":"17385","_to":"17378"} +{"$label":"ACTS_IN","name":"Bl\u00f6ckchen","type":"Role","_key":"23978","_from":"17384","_to":"17378"} +{"$label":"ACTS_IN","name":"Hertha","type":"Role","_key":"23975","_from":"17383","_to":"17378"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"23974","_from":"17382","_to":"17378"} +{"$label":"ACTS_IN","name":"Schmitt","type":"Role","_key":"23973","_from":"17381","_to":"17378"} +{"$label":"ACTS_IN","name":"Maja Meyer","type":"Role","_key":"23972","_from":"17380","_to":"17378"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"23971","_from":"17379","_to":"17378"} +{"$label":"ACTS_IN","name":"Mr. Flynn's Lover","type":"Role","_key":"23991","_from":"17394","_to":"17389"} +{"$label":"ACTS_IN","name":"Maria Flynn","type":"Role","_key":"23989","_from":"17393","_to":"17389"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"23987","_from":"17392","_to":"17389"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"23986","_from":"17391","_to":"17389"} +{"$label":"DIRECTED","_key":"23985","_from":"17390","_to":"17389"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47631","_from":"17392","_to":"31385"} +{"$label":"ACTS_IN","name":"Rosie Walker","type":"Role","_key":"31727","_from":"17392","_to":"22139"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"23993","_from":"17397","_to":"17395"} +{"$label":"ACTS_IN","name":"Richard K\u00f6hlmann","type":"Role","_key":"23992","_from":"17396","_to":"17395"} +{"$label":"DIRECTED","_key":"24010","_from":"17412","_to":"17399"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"24009","_from":"17411","_to":"17399"} +{"$label":"ACTS_IN","name":"Mann an der Bar","type":"Role","_key":"24008","_from":"17410","_to":"17399"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"24007","_from":"17409","_to":"17399"} +{"$label":"ACTS_IN","name":"Apothekerin","type":"Role","_key":"24006","_from":"17408","_to":"17399"} +{"$label":"ACTS_IN","name":"G\u00e4ste Weinlese","type":"Role","_key":"24005","_from":"17407","_to":"17399"} +{"$label":"ACTS_IN","name":"G\u00e4ste Weinlese","type":"Role","_key":"24004","_from":"17406","_to":"17399"} +{"$label":"ACTS_IN","name":"Baischs Frau","type":"Role","_key":"24003","_from":"17405","_to":"17399"} +{"$label":"ACTS_IN","name":"Geherin","type":"Role","_key":"24002","_from":"17404","_to":"17399"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"24001","_from":"17403","_to":"17399"} +{"$label":"ACTS_IN","name":"Schwanenmeister","type":"Role","_key":"24000","_from":"17402","_to":"17399"} +{"$label":"ACTS_IN","name":"Baisch","type":"Role","_key":"23999","_from":"17401","_to":"17399"} +{"$label":"ACTS_IN","name":"Anzengruber","type":"Role","_key":"23998","_from":"17400","_to":"17399"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"24017","_from":"17417","_to":"17413"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"24015","_from":"17416","_to":"17413"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"24013","_from":"17415","_to":"17413"} +{"$label":"DIRECTED","_key":"24011","_from":"17414","_to":"17413"} +{"$label":"DIRECTED","_key":"88116","_from":"17414","_to":"52295"} +{"$label":"DIRECTED","_key":"62428","_from":"17414","_to":"39328"} +{"$label":"DIRECTED","_key":"61881","_from":"17414","_to":"38949"} +{"$label":"DIRECTED","_key":"61876","_from":"17414","_to":"38947"} +{"$label":"DIRECTED","_key":"34341","_from":"17414","_to":"23551"} +{"$label":"DIRECTED","_key":"24123","_from":"17414","_to":"17488"} +{"$label":"DIRECTED","_key":"24019","_from":"17414","_to":"17418"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"24024","_from":"17419","_to":"17418"} +{"$label":"ACTS_IN","name":"Krystina","type":"Role","_key":"24048","_from":"17439","_to":"17420"} +{"$label":"ACTS_IN","name":"Pawel","type":"Role","_key":"24047","_from":"17438","_to":"17420"} +{"$label":"ACTS_IN","name":"Chefkoordinator","type":"Role","_key":"24045","_from":"17437","_to":"17420"} +{"$label":"ACTS_IN","name":"Leiter der Raumstation Luna Nord","type":"Role","_key":"24044","_from":"17436","_to":"17420"} +{"$label":"ACTS_IN","name":"Kommandant der Ikaros","type":"Role","_key":"24042","_from":"17435","_to":"17420"} +{"$label":"ACTS_IN","name":"\u00dcbergabeingenieur","type":"Role","_key":"24041","_from":"17434","_to":"17420"} +{"$label":"ACTS_IN","name":"Wissenschaftler","type":"Role","_key":"24040","_from":"17433","_to":"17420"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"24039","_from":"17432","_to":"17420"} +{"$label":"ACTS_IN","name":"Samira","type":"Role","_key":"24038","_from":"17431","_to":"17420"} +{"$label":"ACTS_IN","name":"Veikko","type":"Role","_key":"24036","_from":"17430","_to":"17420"} +{"$label":"ACTS_IN","name":"Juana","type":"Role","_key":"24035","_from":"17429","_to":"17420"} +{"$label":"ACTS_IN","name":"Ingenieur der Ikaros","type":"Role","_key":"24034","_from":"17428","_to":"17420"} +{"$label":"ACTS_IN","name":"Navigator von Luna-Nord","type":"Role","_key":"24033","_from":"17427","_to":"17420"} +{"$label":"ACTS_IN","name":"Mongolin","type":"Role","_key":"24032","_from":"17426","_to":"17420"} +{"$label":"DIRECTED","_key":"24030","_from":"17425","_to":"17420"} +{"$label":"DIRECTED","_key":"24029","_from":"17424","_to":"17420"} +{"$label":"DIRECTED","_key":"24028","_from":"17423","_to":"17420"} +{"$label":"DIRECTED","_key":"24027","_from":"17422","_to":"17420"} +{"$label":"DIRECTED","_key":"24026","_from":"17421","_to":"17420"} +{"$label":"ACTS_IN","name":"Prinzessin Roswitha","type":"Role","_key":"93788","_from":"17439","_to":"55218"} +{"$label":"ACTS_IN","name":"Goldmarie","type":"Role","_key":"92606","_from":"17439","_to":"54666"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"33182","_from":"17439","_to":"22980"} +{"$label":"DIRECTED","_key":"24063","_from":"17450","_to":"17440"} +{"$label":"ACTS_IN","name":"medecin","type":"Role","_key":"24061","_from":"17449","_to":"17440"} +{"$label":"ACTS_IN","name":"Aur\u00e9lia","type":"Role","_key":"24060","_from":"17448","_to":"17440"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"24059","_from":"17447","_to":"17440"} +{"$label":"ACTS_IN","name":"Samia","type":"Role","_key":"24058","_from":"17446","_to":"17440"} +{"$label":"ACTS_IN","name":"Carine","type":"Role","_key":"24057","_from":"17445","_to":"17440"} +{"$label":"ACTS_IN","name":"m\u00e8re de Philibert","type":"Role","_key":"24054","_from":"17444","_to":"17440"} +{"$label":"ACTS_IN","name":"m\u00e8re de Camille","type":"Role","_key":"24053","_from":"17443","_to":"17440"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"24052","_from":"17442","_to":"17440"} +{"$label":"ACTS_IN","name":"Philibert Marquet de la Tubeli\u00e8re","type":"Role","_key":"24051","_from":"17441","_to":"17440"} +{"$label":"ACTS_IN","name":"Stanislas","type":"Role","_key":"104415","_from":"17441","_to":"61422"} +{"$label":"ACTS_IN","name":"Mme Lamour","type":"Role","_key":"121769","_from":"17442","_to":"71533"} +{"$label":"ACTS_IN","name":"Mme Lamour","type":"Role","_key":"110836","_from":"17442","_to":"65471"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29451","_from":"17442","_to":"20889"} +{"$label":"ACTS_IN","name":"Signora Vaccari","type":"Role","_key":"37086","_from":"17447","_to":"25127"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"24078","_from":"17459","_to":"17453"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"24077","_from":"17458","_to":"17453"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"24076","_from":"17457","_to":"17453"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"24075","_from":"17456","_to":"17453"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"24074","_from":"17455","_to":"17453"} +{"$label":"DIRECTED","_key":"24073","_from":"17454","_to":"17453"} +{"$label":"ACTS_IN","name":"Miss Lindsay","type":"Role","_key":"24086","_from":"17466","_to":"17460"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"24085","_from":"17465","_to":"17460"} +{"$label":"ACTS_IN","name":"Janet Frame as a baby","type":"Role","_key":"24084","_from":"17464","_to":"17460"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"24083","_from":"17463","_to":"17460"} +{"$label":"ACTS_IN","name":"Janet Frame as a child","type":"Role","_key":"24082","_from":"17462","_to":"17460"} +{"$label":"ACTS_IN","name":"Janet Frame as adolescent","type":"Role","_key":"24081","_from":"17461","_to":"17460"} +{"$label":"ACTS_IN","name":"Dr. Singani","type":"Role","_key":"24094","_from":"17474","_to":"17467"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"24093","_from":"17473","_to":"17467"} +{"$label":"ACTS_IN","name":"Rowan","type":"Role","_key":"24092","_from":"17472","_to":"17467"} +{"$label":"ACTS_IN","name":"Louise Goodman","type":"Role","_key":"24091","_from":"17471","_to":"17467"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"24089","_from":"17470","_to":"17467"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"24088","_from":"17469","_to":"17467"} +{"$label":"DIRECTED","_key":"24087","_from":"17468","_to":"17467"} +{"$label":"DIRECTED","_key":"73119","_from":"17468","_to":"43980"} +{"$label":"ACTS_IN","name":"Sam Carraclough","type":"Role","_key":"101018","_from":"17469","_to":"59532"} +{"$label":"ACTS_IN","name":"Tadhg","type":"Role","_key":"99676","_from":"17469","_to":"58766"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"61754","_from":"17469","_to":"38887"} +{"$label":"ACTS_IN","name":"Paul Hill","type":"Role","_key":"47655","_from":"17469","_to":"31397"} +{"$label":"ACTS_IN","name":"Annie Williamson","type":"Role","_key":"105511","_from":"17470","_to":"62083"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"96647","_from":"17470","_to":"56840"} +{"$label":"ACTS_IN","name":"Gabe","type":"Role","_key":"63083","_from":"17470","_to":"39579"} +{"$label":"ACTS_IN","name":"Janice Higgins","type":"Role","_key":"51460","_from":"17470","_to":"33562"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"33246","_from":"17471","_to":"23031"} +{"$label":"ACTS_IN","name":"Ratsmitglied","type":"Role","_key":"24110","_from":"17487","_to":"17475"} +{"$label":"ACTS_IN","name":"Zweiter Havarietechniker","type":"Role","_key":"24108","_from":"17486","_to":"17475"} +{"$label":"ACTS_IN","name":"Erster Havarietechniker","type":"Role","_key":"24107","_from":"17485","_to":"17475"} +{"$label":"ACTS_IN","name":"Ratsmitglied","type":"Role","_key":"24106","_from":"17484","_to":"17475"} +{"$label":"ACTS_IN","name":"Ratsvorsitzender","type":"Role","_key":"24105","_from":"17483","_to":"17475"} +{"$label":"ACTS_IN","name":"Mitabeiterin von Professor Scholl","type":"Role","_key":"24104","_from":"17482","_to":"17475"} +{"$label":"ACTS_IN","name":"Dritter Havarietechniker","type":"Role","_key":"24103","_from":"17481","_to":"17475"} +{"$label":"ACTS_IN","name":"Sima Kun","type":"Role","_key":"24102","_from":"17480","_to":"17475"} +{"$label":"ACTS_IN","name":"Navigator","type":"Role","_key":"24100","_from":"17479","_to":"17475"} +{"$label":"ACTS_IN","name":"Daniel Lagny","type":"Role","_key":"24098","_from":"17478","_to":"17475"} +{"$label":"ACTS_IN","name":"Professor Maria Scholl","type":"Role","_key":"24097","_from":"17477","_to":"17475"} +{"$label":"DIRECTED","_key":"24096","_from":"17476","_to":"17475"} +{"$label":"DIRECTED","_key":"88101","_from":"17476","_to":"52285"} +{"$label":"DIRECTED","_key":"45722","_from":"17476","_to":"30261"} +{"$label":"ACTS_IN","name":"Bauerntochter","type":"Role","_key":"93826","_from":"17477","_to":"55237"} +{"$label":"ACTS_IN","name":"Pat Patterson","type":"Role","_key":"35578","_from":"17479","_to":"24182"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31679","_from":"17479","_to":"22105"} +{"$label":"ACTS_IN","name":"Pat Patterson","type":"Role","_key":"27776","_from":"17479","_to":"19908"} +{"$label":"ACTS_IN","name":"G\u00fcnther Adam","type":"Role","_key":"44048","_from":"17483","_to":"29371"} +{"$label":"ACTS_IN","name":"Duc de Biron","type":"Role","_key":"24122","_from":"17496","_to":"17488"} +{"$label":"ACTS_IN","name":"Osselin","type":"Role","_key":"24121","_from":"17495","_to":"17488"} +{"$label":"ACTS_IN","name":"Vergniaud","type":"Role","_key":"24120","_from":"17494","_to":"17488"} +{"$label":"ACTS_IN","name":"Nanon","type":"Role","_key":"24119","_from":"17493","_to":"17488"} +{"$label":"ACTS_IN","name":"Dumouriez","type":"Role","_key":"24118","_from":"17492","_to":"17488"} +{"$label":"ACTS_IN","name":"Champcenetz","type":"Role","_key":"24117","_from":"17491","_to":"17488"} +{"$label":"ACTS_IN","name":"Fanchette","type":"Role","_key":"24114","_from":"17490","_to":"17488"} +{"$label":"ACTS_IN","name":"Grace Elliot","type":"Role","_key":"24113","_from":"17489","_to":"17488"} +{"$label":"ACTS_IN","name":"Nora Howe-Nevinson","type":"Role","_key":"72077","_from":"17489","_to":"43575"} +{"$label":"ACTS_IN","name":"The Blonde","type":"Role","_key":"71362","_from":"17489","_to":"43282"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"56172","_from":"17492","_to":"35705"} +{"$label":"ACTS_IN","name":"Raskolnikov","type":"Role","_key":"35560","_from":"17492","_to":"24173"} +{"$label":"ACTS_IN","name":"Hubert de la Canelle","type":"Role","_key":"32681","_from":"17492","_to":"22701"} +{"$label":"ACTS_IN","name":"Marius de Pontmercy","type":"Role","_key":"31586","_from":"17492","_to":"22058"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"30609","_from":"17492","_to":"21501"} +{"$label":"ACTS_IN","name":"G\u00e9rald","type":"Role","_key":"61879","_from":"17496","_to":"38947"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Seurel","type":"Role","_key":"35571","_from":"17496","_to":"24177"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"33898","_from":"17496","_to":"23348"} +{"$label":"ACTS_IN","name":"Jessie Dewey","type":"Role","_key":"24128","_from":"17499","_to":"17497"} +{"$label":"ACTS_IN","name":"Mrs. Dewey Sr.","type":"Role","_key":"24127","_from":"17498","_to":"17497"} +{"$label":"ACTS_IN","name":"Mayhayley Lancaster","type":"Role","_key":"120127","_from":"17498","_to":"70546"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"121104","_from":"17499","_to":"71125"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100571","_from":"17499","_to":"59315"} +{"$label":"ACTS_IN","name":"Pamela Glover","type":"Role","_key":"68907","_from":"17499","_to":"42196"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"65618","_from":"17499","_to":"40669"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"24134","_from":"17502","_to":"17500"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"24133","_from":"17501","_to":"17500"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"24157","_from":"17511","_to":"17503"} +{"$label":"ACTS_IN","name":"Railway Official","type":"Role","_key":"24154","_from":"17510","_to":"17503"} +{"$label":"ACTS_IN","name":"Mr. Talley","type":"Role","_key":"24152","_from":"17509","_to":"17503"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"24149","_from":"17508","_to":"17503"} +{"$label":"ACTS_IN","name":"Achmed Abdullah","type":"Role","_key":"24142","_from":"17507","_to":"17503"} +{"$label":"ACTS_IN","name":"Mr. Fix","type":"Role","_key":"24141","_from":"17506","_to":"17503"} +{"$label":"ACTS_IN","name":"Monsieur Gasse","type":"Role","_key":"24140","_from":"17505","_to":"17503"} +{"$label":"ACTS_IN","name":"Passepartout","type":"Role","_key":"24139","_from":"17504","_to":"17503"} +{"$label":"ACTS_IN","name":"Victor Velasco","type":"Role","_key":"114223","_from":"17505","_to":"67279"} +{"$label":"ACTS_IN","name":"Gregory Anton","type":"Role","_key":"95056","_from":"17505","_to":"55955"} +{"$label":"ACTS_IN","name":"Dominique You","type":"Role","_key":"34925","_from":"17505","_to":"23856"} +{"$label":"ACTS_IN","name":"Docteur Monod","type":"Role","_key":"33558","_from":"17505","_to":"23204"} +{"$label":"ACTS_IN","name":"Bernard De Solnay","type":"Role","_key":"24853","_from":"17505","_to":"17972"} +{"$label":"ACTS_IN","name":"Gustave Pardee","type":"Role","_key":"113851","_from":"17506","_to":"67061"} +{"$label":"ACTS_IN","name":"Bill Sikes","type":"Role","_key":"66924","_from":"17506","_to":"41318"} +{"$label":"ACTS_IN","name":"Long John Silver","type":"Role","_key":"44574","_from":"17506","_to":"29671"} +{"$label":"ACTS_IN","name":"Jose Lorenzo","type":"Role","_key":"104292","_from":"17507","_to":"61363"} +{"$label":"ACTS_IN","name":"Rudolfo Ramirez","type":"Role","_key":"71808","_from":"17507","_to":"43458"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"24673","_from":"17507","_to":"17832"} +{"$label":"ACTS_IN","name":"Pappy Simpson","type":"Role","_key":"115281","_from":"17509","_to":"67879"} +{"$label":"ACTS_IN","name":"High Sheriff of Nottingham","type":"Role","_key":"66633","_from":"17509","_to":"41182"} +{"$label":"ACTS_IN","name":"Insp. Japp","type":"Role","_key":"41448","_from":"17509","_to":"27860"} +{"$label":"ACTS_IN","name":"Gerald","type":"Role","_key":"25646","_from":"17509","_to":"18462"} +{"$label":"ACTS_IN","name":"Sydney Carton","type":"Role","_key":"114115","_from":"17510","_to":"67208"} +{"$label":"ACTS_IN","name":"Robert \" Bob \" Conway","type":"Role","_key":"28298","_from":"17510","_to":"20257"} +{"$label":"ACTS_IN","name":"Nora Manning","type":"Role","_key":"24166","_from":"17514","_to":"17512"} +{"$label":"ACTS_IN","name":"Beverly Connelly","type":"Role","_key":"24164","_from":"17513","_to":"17512"} +{"$label":"ACTS_IN","name":"Ann Butterfield","type":"Role","_key":"118752","_from":"17513","_to":"69830"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"100820","_from":"17513","_to":"59439"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"57748","_from":"17513","_to":"36554"} +{"$label":"ACTS_IN","name":"Elanora Davis","type":"Role","_key":"39841","_from":"17513","_to":"26919"} +{"$label":"ACTS_IN","name":"Mrs. Finch","type":"Role","_key":"28077","_from":"17513","_to":"20121"} +{"$label":"ACTS_IN","name":"Rudy's mother","type":"Role","_key":"119711","_from":"17514","_to":"70307"} +{"$label":"ACTS_IN","name":"Nacha","type":"Role","_key":"112237","_from":"17514","_to":"66286"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"58529","_from":"17514","_to":"36982"} +{"$label":"ACTS_IN","name":"Cartapus","type":"Role","_key":"24181","_from":"17521","_to":"17515"} +{"$label":"ACTS_IN","name":"Sucettalanis","type":"Role","_key":"24179","_from":"17520","_to":"17515"} +{"$label":"ACTS_IN","name":"Malococsis","type":"Role","_key":"24178","_from":"17519","_to":"17515"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"24176","_from":"17518","_to":"17515"} +{"$label":"ACTS_IN","name":"Amonbofils","type":"Role","_key":"24174","_from":"17517","_to":"17515"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix","type":"Role","_key":"24170","_from":"17516","_to":"17515"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"101745","_from":"17516","_to":"59883"} +{"$label":"ACTS_IN","name":"Katia","type":"Role","_key":"101263","_from":"17516","_to":"59631"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96128","_from":"17516","_to":"56500"} +{"$label":"ACTS_IN","name":"Jean-Pierre M\u00e9nard","type":"Role","_key":"92134","_from":"17516","_to":"54363"} +{"$label":"ACTS_IN","name":"Jacquard","type":"Role","_key":"71570","_from":"17516","_to":"43356"} +{"$label":"ACTS_IN","name":"Docteur Jerome Tarere","type":"Role","_key":"68385","_from":"17516","_to":"41963"} +{"$label":"ACTS_IN","name":"Jacquouille la Fripouille","type":"Role","_key":"62743","_from":"17516","_to":"39445"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix","type":"Role","_key":"54724","_from":"17516","_to":"35031"} +{"$label":"ACTS_IN","name":"Premierminister Taaffe","type":"Role","_key":"47286","_from":"17516","_to":"31151"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31634","_from":"17516","_to":"22083"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"29845","_from":"17516","_to":"21113"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"118699","_from":"17517","_to":"69798"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"112134","_from":"17517","_to":"66222"} +{"$label":"ACTS_IN","name":"Commissaire Patrick Bial\u00e8s","type":"Role","_key":"103162","_from":"17517","_to":"60680"} +{"$label":"ACTS_IN","name":"henri","type":"Role","_key":"99026","_from":"17517","_to":"58335"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"96133","_from":"17517","_to":"56503"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"94166","_from":"17517","_to":"55446"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"73160","_from":"17517","_to":"43998"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"41178","_from":"17517","_to":"27708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108453","_from":"17518","_to":"64112"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl Jullian","type":"Role","_key":"62244","_from":"17518","_to":"39206"} +{"$label":"ACTS_IN","name":"Le braqueur","type":"Role","_key":"48800","_from":"17518","_to":"32007"} +{"$label":"ACTS_IN","name":"Edouard","type":"Role","_key":"35841","_from":"17518","_to":"24328"} +{"$label":"ACTS_IN","name":"Le p\u00e8re d'Alain","type":"Role","_key":"119467","_from":"17519","_to":"70178"} +{"$label":"ACTS_IN","name":"Zerbib","type":"Role","_key":"118282","_from":"17519","_to":"69527"} +{"$label":"ACTS_IN","name":"Monsieur Chpil","type":"Role","_key":"30693","_from":"17519","_to":"21536"} +{"$label":"ACTS_IN","name":"Rony","type":"Role","_key":"30669","_from":"17519","_to":"21526"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"117344","_from":"17520","_to":"69017"} +{"$label":"ACTS_IN","name":"St\u00e9phanie Lanceval","type":"Role","_key":"104438","_from":"17520","_to":"61431"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101521","_from":"17520","_to":"59754"} +{"$label":"ACTS_IN","name":"M\u00e9lanie","type":"Role","_key":"101449","_from":"17520","_to":"59718"} +{"$label":"ACTS_IN","name":"Muriel Perrache","type":"Role","_key":"100086","_from":"17520","_to":"59036"} +{"$label":"ACTS_IN","name":"M\u00e8re de M\u00e9lanie","type":"Role","_key":"113380","_from":"17521","_to":"66786"} +{"$label":"ACTS_IN","name":"Odile Deray","type":"Role","_key":"103160","_from":"17521","_to":"60680"} +{"$label":"DIRECTED","_key":"24189","_from":"17523","_to":"17522"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"24194","_from":"17529","_to":"17524"} +{"$label":"ACTS_IN","name":"The lieutenant","type":"Role","_key":"24193","_from":"17528","_to":"17524"} +{"$label":"ACTS_IN","name":"Menna","type":"Role","_key":"24192","_from":"17527","_to":"17524"} +{"$label":"ACTS_IN","name":"Mouh","type":"Role","_key":"24191","_from":"17526","_to":"17524"} +{"$label":"DIRECTED","_key":"24190","_from":"17525","_to":"17524"} +{"$label":"ACTS_IN","name":"Lambert","type":"Role","_key":"46039","_from":"17528","_to":"30419"} +{"$label":"ACTS_IN","name":"Anne-Fran\u00e7oise","type":"Role","_key":"24199","_from":"17533","_to":"17530"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"24198","_from":"17532","_to":"17530"} +{"$label":"DIRECTED","_key":"24195","_from":"17531","_to":"17530"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise Bellamy","type":"Role","_key":"105028","_from":"17533","_to":"61813"} +{"$label":"ACTS_IN","name":"Marie Deneige","type":"Role","_key":"37913","_from":"17533","_to":"25672"} +{"$label":"ACTS_IN","name":"Violette Morhange","type":"Role","_key":"37752","_from":"17533","_to":"25604"} +{"$label":"ACTS_IN","name":"Mathilde","type":"Role","_key":"36230","_from":"17533","_to":"24586"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"34385","_from":"17533","_to":"23576"} +{"$label":"ACTS_IN","name":"Lucile Desmoulins","type":"Role","_key":"30207","_from":"17533","_to":"21284"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"24209","_from":"17542","_to":"17534"} +{"$label":"ACTS_IN","name":"Eusebio","type":"Role","_key":"24208","_from":"17541","_to":"17534"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"24207","_from":"17540","_to":"17534"} +{"$label":"ACTS_IN","name":"L\u00f3la","type":"Role","_key":"24206","_from":"17539","_to":"17534"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"24205","_from":"17538","_to":"17534"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"24204","_from":"17537","_to":"17534"} +{"$label":"ACTS_IN","name":"Tino","type":"Role","_key":"24202","_from":"17536","_to":"17534"} +{"$label":"DIRECTED","_key":"24201","_from":"17535","_to":"17534"} +{"$label":"DIRECTED","_key":"36198","_from":"17535","_to":"24562"} +{"$label":"DIRECTED","_key":"24221","_from":"17535","_to":"17550"} +{"$label":"DIRECTED","_key":"24210","_from":"17535","_to":"17543"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"36199","_from":"17537","_to":"24562"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"36200","_from":"17538","_to":"24562"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"24223","_from":"17538","_to":"17550"} +{"$label":"ACTS_IN","name":"Lola la puta","type":"Role","_key":"24211","_from":"17539","_to":"17543"} +{"$label":"ACTS_IN","name":"Rain","type":"Role","_key":"24216","_from":"17540","_to":"17543"} +{"$label":"ACTS_IN","name":"J\u00faan","type":"Role","_key":"24224","_from":"17541","_to":"17550"} +{"$label":"ACTS_IN","name":"River","type":"Role","_key":"24217","_from":"17541","_to":"17543"} +{"$label":"ACTS_IN","name":"Margot Chevalier","type":"Role","_key":"36203","_from":"17542","_to":"24564"} +{"$label":"ACTS_IN","name":"Tabata","type":"Role","_key":"26367","_from":"17542","_to":"18940"} +{"$label":"ACTS_IN","name":"Greta the Model","type":"Role","_key":"26359","_from":"17542","_to":"18929"} +{"$label":"ACTS_IN","name":"Roberte","type":"Role","_key":"26348","_from":"17542","_to":"18928"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"26339","_from":"17542","_to":"18920"} +{"$label":"ACTS_IN","name":"Elle","type":"Role","_key":"26337","_from":"17542","_to":"18918"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"24222","_from":"17542","_to":"17550"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"24220","_from":"17549","_to":"17543"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"24218","_from":"17548","_to":"17543"} +{"$label":"ACTS_IN","name":"Waterfall","type":"Role","_key":"24215","_from":"17547","_to":"17543"} +{"$label":"ACTS_IN","name":"Sol","type":"Role","_key":"24214","_from":"17546","_to":"17543"} +{"$label":"ACTS_IN","name":"Pablo II","type":"Role","_key":"24213","_from":"17545","_to":"17543"} +{"$label":"ACTS_IN","name":"Pablo I","type":"Role","_key":"24212","_from":"17544","_to":"17543"} +{"$label":"ACTS_IN","name":"Dexter Addams","type":"Role","_key":"24240","_from":"17559","_to":"17551"} +{"$label":"ACTS_IN","name":"Digit Addams","type":"Role","_key":"24239","_from":"17558","_to":"17551"} +{"$label":"ACTS_IN","name":"Cousin Itt","type":"Role","_key":"24238","_from":"17557","_to":"17551"} +{"$label":"ACTS_IN","name":"Pugsley Addams","type":"Role","_key":"24237","_from":"17556","_to":"17551"} +{"$label":"ACTS_IN","name":"Thing","type":"Role","_key":"24236","_from":"17555","_to":"17551"} +{"$label":"ACTS_IN","name":"Judge Womack","type":"Role","_key":"24235","_from":"17554","_to":"17551"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"24233","_from":"17553","_to":"17551"} +{"$label":"ACTS_IN","name":"Abigail Craven\/Dr. Greta Pinder-Schloss","type":"Role","_key":"24230","_from":"17552","_to":"17551"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"119273","_from":"17552","_to":"70080"} +{"$label":"ACTS_IN","name":"Harriet Wheaton","type":"Role","_key":"105793","_from":"17552","_to":"62284"} +{"$label":"ACTS_IN","name":"Dr. Ruth Ruth","type":"Role","_key":"89717","_from":"17552","_to":"53109"} +{"$label":"ACTS_IN","name":"Harding","type":"Role","_key":"25557","_from":"17552","_to":"18410"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"101575","_from":"17554","_to":"59785"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"70943","_from":"17554","_to":"43098"} +{"$label":"ACTS_IN","name":"Tucker 'Smitty' Brown","type":"Role","_key":"67436","_from":"17554","_to":"41533"} +{"$label":"ACTS_IN","name":"Die Hand","type":"Role","_key":"44027","_from":"17555","_to":"29363"} +{"$label":"ACTS_IN","name":"Isaac Chroner","type":"Role","_key":"66003","_from":"17557","_to":"40843"} +{"$label":"ACTS_IN","name":"Chefkoordinator","type":"Role","_key":"24246","_from":"17563","_to":"17560"} +{"$label":"ACTS_IN","name":"Kati","type":"Role","_key":"24244","_from":"17562","_to":"17560"} +{"$label":"DIRECTED","_key":"24241","_from":"17561","_to":"17560"} +{"$label":"ACTS_IN","name":"Suko","type":"Role","_key":"24263","_from":"17580","_to":"17564"} +{"$label":"ACTS_IN","name":"Ingenieur","type":"Role","_key":"24262","_from":"17579","_to":"17564"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"24261","_from":"17578","_to":"17564"} +{"$label":"ACTS_IN","name":"Illic","type":"Role","_key":"24260","_from":"17577","_to":"17564"} +{"$label":"ACTS_IN","name":"Thob","type":"Role","_key":"24259","_from":"17576","_to":"17564"} +{"$label":"ACTS_IN","name":"Kte","type":"Role","_key":"24258","_from":"17575","_to":"17564"} +{"$label":"ACTS_IN","name":"Ingenieur","type":"Role","_key":"24257","_from":"17574","_to":"17564"} +{"$label":"ACTS_IN","name":"My","type":"Role","_key":"24256","_from":"17573","_to":"17564"} +{"$label":"ACTS_IN","name":"Prott","type":"Role","_key":"24255","_from":"17572","_to":"17564"} +{"$label":"ACTS_IN","name":"Chta","type":"Role","_key":"24254","_from":"17571","_to":"17564"} +{"$label":"ACTS_IN","name":"Akala","type":"Role","_key":"24253","_from":"17570","_to":"17564"} +{"$label":"ACTS_IN","name":"Xik","type":"Role","_key":"24252","_from":"17569","_to":"17564"} +{"$label":"ACTS_IN","name":"Ronk","type":"Role","_key":"24251","_from":"17568","_to":"17564"} +{"$label":"ACTS_IN","name":"Rall","type":"Role","_key":"24250","_from":"17567","_to":"17564"} +{"$label":"ACTS_IN","name":"Hangaringenieur","type":"Role","_key":"24249","_from":"17566","_to":"17564"} +{"$label":"DIRECTED","_key":"24247","_from":"17565","_to":"17564"} +{"$label":"ACTS_IN","name":"Blondine","type":"Role","_key":"45731","_from":"17573","_to":"30261"} +{"$label":"ACTS_IN","name":"Ambasador USA","type":"Role","_key":"116705","_from":"17576","_to":"68697"} +{"$label":"ACTS_IN","name":"Andrzej","type":"Role","_key":"70209","_from":"17576","_to":"42792"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"24285","_from":"17593","_to":"17581"} +{"$label":"ACTS_IN","name":"Steiner","type":"Role","_key":"24283","_from":"17592","_to":"17581"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"24282","_from":"17591","_to":"17581"} +{"$label":"ACTS_IN","name":"Churchill","type":"Role","_key":"24281","_from":"17590","_to":"17581"} +{"$label":"ACTS_IN","name":"German Soldier","type":"Role","_key":"24280","_from":"17589","_to":"17581"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"24278","_from":"17588","_to":"17581"} +{"$label":"ACTS_IN","name":"Pvt Meyer","type":"Role","_key":"24277","_from":"17587","_to":"17581"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"24276","_from":"17586","_to":"17581"} +{"$label":"ACTS_IN","name":"Sgt Bill McMillan","type":"Role","_key":"24274","_from":"17585","_to":"17581"} +{"$label":"ACTS_IN","name":"Pvt. David Wellings","type":"Role","_key":"24273","_from":"17584","_to":"17581"} +{"$label":"ACTS_IN","name":"Lt Jergen Voller","type":"Role","_key":"24268","_from":"17583","_to":"17581"} +{"$label":"DIRECTED","_key":"24264","_from":"17582","_to":"17581"} +{"$label":"ACTS_IN","name":"Micke","type":"Role","_key":"115411","_from":"17583","_to":"67957"} +{"$label":"ACTS_IN","name":"Geert","type":"Role","_key":"58799","_from":"17583","_to":"37140"} +{"$label":"ACTS_IN","name":"Fabian von Klerking","type":"Role","_key":"53247","_from":"17583","_to":"34435"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"56050","_from":"17584","_to":"35624"} +{"$label":"ACTS_IN","name":"DC Andy Cartwright","type":"Role","_key":"33118","_from":"17584","_to":"22937"} +{"$label":"ACTS_IN","name":"Dani Simionescu","type":"Role","_key":"120388","_from":"17585","_to":"70723"} +{"$label":"ACTS_IN","name":"JC","type":"Role","_key":"117373","_from":"17585","_to":"69039"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"114612","_from":"17585","_to":"67516"} +{"$label":"ACTS_IN","name":"Capt. Nathan Rooker","type":"Role","_key":"93628","_from":"17585","_to":"55123"} +{"$label":"ACTS_IN","name":"Sgt. Harry G. Wells","type":"Role","_key":"72522","_from":"17585","_to":"43746"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"70162","_from":"17585","_to":"42770"} +{"$label":"ACTS_IN","name":"Barry Rankin","type":"Role","_key":"57082","_from":"17585","_to":"36223"} +{"$label":"ACTS_IN","name":"Barry Rankin","type":"Role","_key":"56426","_from":"17585","_to":"35852"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"46337","_from":"17585","_to":"30618"} +{"$label":"ACTS_IN","name":"Inspector Andre","type":"Role","_key":"61204","_from":"17590","_to":"38666"} +{"$label":"ACTS_IN","name":"Dr. Max Hargrove","type":"Role","_key":"41378","_from":"17590","_to":"27819"} +{"$label":"ACTS_IN","name":"George Berenson","type":"Role","_key":"34766","_from":"17590","_to":"23765"} +{"$label":"ACTS_IN","name":"Tony Alexander","type":"Role","_key":"34706","_from":"17590","_to":"23739"} +{"$label":"ACTS_IN","name":"Jules Bernard","type":"Role","_key":"34678","_from":"17590","_to":"23728"} +{"$label":"ACTS_IN","name":"Leon Hamel","type":"Role","_key":"24291","_from":"17597","_to":"17594"} +{"$label":"ACTS_IN","name":"Commissaire Grumbach","type":"Role","_key":"24290","_from":"17596","_to":"17594"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"24289","_from":"17595","_to":"17594"} +{"$label":"ACTS_IN","name":"Dr. Brose","type":"Role","_key":"24307","_from":"17610","_to":"17598"} +{"$label":"ACTS_IN","name":"Sprechstundenhilfe","type":"Role","_key":"24306","_from":"17609","_to":"17598"} +{"$label":"ACTS_IN","name":"Anneli","type":"Role","_key":"24304","_from":"17608","_to":"17598"} +{"$label":"ACTS_IN","name":"Dr. Alland","type":"Role","_key":"24301","_from":"17607","_to":"17598"} +{"$label":"ACTS_IN","name":"Dr. Hirai","type":"Role","_key":"24300","_from":"17606","_to":"17598"} +{"$label":"ACTS_IN","name":"Da Costa","type":"Role","_key":"24299","_from":"17605","_to":"17598"} +{"$label":"ACTS_IN","name":"Dr. Nasier","type":"Role","_key":"24297","_from":"17604","_to":"17598"} +{"$label":"ACTS_IN","name":"Georgia Spaldi","type":"Role","_key":"24296","_from":"17603","_to":"17598"} +{"$label":"ACTS_IN","name":"Cornelius Vandenhoff","type":"Role","_key":"24295","_from":"17602","_to":"17598"} +{"$label":"ACTS_IN","name":"Aimee","type":"Role","_key":"24294","_from":"17601","_to":"17598"} +{"$label":"ACTS_IN","name":"Der Sprecher","type":"Role","_key":"24293","_from":"17600","_to":"17598"} +{"$label":"DIRECTED","_key":"24292","_from":"17599","_to":"17598"} +{"$label":"DIRECTED","_key":"45399","_from":"17599","_to":"30098"} +{"$label":"DIRECTED","_key":"44560","_from":"17599","_to":"29666"} +{"$label":"DIRECTED","_key":"24551","_from":"17599","_to":"17763"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"24563","_from":"17602","_to":"17763"} +{"$label":"ACTS_IN","name":"Pankraz","type":"Role","_key":"90217","_from":"17607","_to":"53344"} +{"$label":"ACTS_IN","name":"Offizier Petersen","type":"Role","_key":"67343","_from":"17607","_to":"41508"} +{"$label":"ACTS_IN","name":"Tavish","type":"Role","_key":"38192","_from":"17607","_to":"25808"} +{"$label":"ACTS_IN","name":"Bernbeill","type":"Role","_key":"31329","_from":"17607","_to":"21905"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"46055","_from":"17610","_to":"30425"} +{"$label":"ACTS_IN","name":"Wimmer","type":"Role","_key":"45411","_from":"17610","_to":"30098"} +{"$label":"ACTS_IN","name":"Fritz Hollmann","type":"Role","_key":"44565","_from":"17610","_to":"29666"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41839","_from":"17610","_to":"28067"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41215","_from":"17610","_to":"27727"} +{"$label":"ACTS_IN","name":"Adolf von Bateldik","type":"Role","_key":"40393","_from":"17610","_to":"27239"} +{"$label":"ACTS_IN","name":"Bob Hiller","type":"Role","_key":"32840","_from":"17610","_to":"22793"} +{"$label":"ACTS_IN","name":"Festredner","type":"Role","_key":"32521","_from":"17610","_to":"22612"} +{"$label":"ACTS_IN","name":"Hamid","type":"Role","_key":"24315","_from":"17617","_to":"17611"} +{"$label":"ACTS_IN","name":"Fiducia boss","type":"Role","_key":"24314","_from":"17616","_to":"17611"} +{"$label":"ACTS_IN","name":"Pauline Jansen","type":"Role","_key":"24313","_from":"17615","_to":"17611"} +{"$label":"ACTS_IN","name":"Marjan de Wilde","type":"Role","_key":"24312","_from":"17614","_to":"17611"} +{"$label":"ACTS_IN","name":"Peter de Wilde","type":"Role","_key":"24311","_from":"17613","_to":"17611"} +{"$label":"DIRECTED","_key":"24308","_from":"17612","_to":"17611"} +{"$label":"ACTS_IN","name":"Fat Willy","type":"Role","_key":"40208","_from":"17612","_to":"27136"} +{"$label":"ACTS_IN","name":"Ronald Jan","type":"Role","_key":"37382","_from":"17613","_to":"25330"} +{"$label":"ACTS_IN","name":"Kapitein Bruinvis","type":"Role","_key":"114540","_from":"17616","_to":"67465"} +{"$label":"ACTS_IN","name":"Gardener","type":"Role","_key":"40224","_from":"17616","_to":"27143"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"40200","_from":"17616","_to":"27136"} +{"$label":"ACTS_IN","name":"The Station Master","type":"Role","_key":"25917","_from":"17616","_to":"18644"} +{"$label":"ACTS_IN","name":"Erik van Hoyten","type":"Role","_key":"25816","_from":"17616","_to":"18581"} +{"$label":"ACTS_IN","name":"Mustafa","type":"Role","_key":"106007","_from":"17617","_to":"62412"} +{"$label":"DIRECTED","_key":"24322","_from":"17620","_to":"17618"} +{"$label":"ACTS_IN","name":"Mrs. Sturge","type":"Role","_key":"24320","_from":"17619","_to":"17618"} +{"$label":"ACTS_IN","name":"Mary Henson","type":"Role","_key":"59664","_from":"17619","_to":"37670"} +{"$label":"DIRECTED","_key":"93400","_from":"17620","_to":"55005"} +{"$label":"DIRECTED","_key":"68234","_from":"17620","_to":"41901"} +{"$label":"DIRECTED","_key":"67277","_from":"17620","_to":"41482"} +{"$label":"DIRECTED","_key":"53067","_from":"17620","_to":"34351"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"24338","_from":"17625","_to":"17622"} +{"$label":"ACTS_IN","name":"Brenda Cushman","type":"Role","_key":"24331","_from":"17624","_to":"17622"} +{"$label":"DIRECTED","_key":"24330","_from":"17623","_to":"17622"} +{"$label":"DIRECTED","_key":"118460","_from":"17623","_to":"69644"} +{"$label":"DIRECTED","_key":"113730","_from":"17623","_to":"67020"} +{"$label":"DIRECTED","_key":"71106","_from":"17623","_to":"43169"} +{"$label":"DIRECTED","_key":"53198","_from":"17623","_to":"34404"} +{"$label":"DIRECTED","_key":"43564","_from":"17623","_to":"29097"} +{"$label":"ACTS_IN","name":"Mama Rose","type":"Role","_key":"114348","_from":"17624","_to":"67357"} +{"$label":"ACTS_IN","name":"Mary Rose Foster","type":"Role","_key":"108742","_from":"17624","_to":"64283"} +{"$label":"ACTS_IN","name":"Cecilia 'CC' Carol Bloom","type":"Role","_key":"105104","_from":"17624","_to":"61860"} +{"$label":"ACTS_IN","name":"Leah Miller","type":"Role","_key":"97901","_from":"17624","_to":"57663"} +{"$label":"ACTS_IN","name":"Bernice Graves","type":"Role","_key":"93402","_from":"17624","_to":"55010"} +{"$label":"ACTS_IN","name":"Sadie Shelton","type":"Role","_key":"91169","_from":"17624","_to":"53776"} +{"$label":"ACTS_IN","name":"Barbara Stone","type":"Role","_key":"88324","_from":"17624","_to":"52377"} +{"$label":"ACTS_IN","name":"Winifred 'Winnie' Sanderson","type":"Role","_key":"63364","_from":"17624","_to":"39709"} +{"$label":"ACTS_IN","name":"Barbara Whiteman","type":"Role","_key":"58300","_from":"17624","_to":"36865"} +{"$label":"ACTS_IN","name":"Bobbie Markowitz","type":"Role","_key":"57617","_from":"17624","_to":"36484"} +{"$label":"ACTS_IN","name":"Dr. J.M. Perkin","type":"Role","_key":"29331","_from":"17624","_to":"20821"} +{"$label":"ACTS_IN","name":"Duke of Buckingham","type":"Role","_key":"24351","_from":"17629","_to":"17626"} +{"$label":"ACTS_IN","name":"M. Bonancieux","type":"Role","_key":"24349","_from":"17628","_to":"17626"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"24342","_from":"17627","_to":"17626"} +{"$label":"ACTS_IN","name":"Governor Charles Eden","type":"Role","_key":"115902","_from":"17627","_to":"68234"} +{"$label":"ACTS_IN","name":"Pilot-Major John Blackthorne \/ Anjin-san","type":"Role","_key":"109441","_from":"17627","_to":"64655"} +{"$label":"ACTS_IN","name":"Prince","type":"Role","_key":"107862","_from":"17627","_to":"63696"} +{"$label":"ACTS_IN","name":"Aramis","type":"Role","_key":"89243","_from":"17627","_to":"52844"} +{"$label":"ACTS_IN","name":"Allan Quatermain","type":"Role","_key":"57355","_from":"17627","_to":"36367"} +{"$label":"ACTS_IN","name":"Allan Quatermain","type":"Role","_key":"55920","_from":"17627","_to":"35568"} +{"$label":"ACTS_IN","name":"Jason Bourne","type":"Role","_key":"50430","_from":"17627","_to":"32946"} +{"$label":"ACTS_IN","name":"Edmond Dant\u00e8s","type":"Role","_key":"32523","_from":"17627","_to":"22623"} +{"$label":"ACTS_IN","name":"Louis VIX \/ Philippe","type":"Role","_key":"30055","_from":"17627","_to":"21198"} +{"$label":"ACTS_IN","name":"Thaddeus MacKenzie","type":"Role","_key":"28184","_from":"17627","_to":"20190"} +{"$label":"ACTS_IN","name":"Councilman Banks","type":"Role","_key":"27954","_from":"17627","_to":"20034"} +{"$label":"ACTS_IN","name":"Dr. Holst","type":"Role","_key":"25493","_from":"17629","_to":"18377"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"24376","_from":"17644","_to":"17630"} +{"$label":"ACTS_IN","name":"2. Sergeant","type":"Role","_key":"24375","_from":"17643","_to":"17630"} +{"$label":"ACTS_IN","name":"1. Sergeant","type":"Role","_key":"24374","_from":"17642","_to":"17630"} +{"$label":"ACTS_IN","name":"Taxi-Crane Pilot","type":"Role","_key":"24373","_from":"17641","_to":"17630"} +{"$label":"ACTS_IN","name":"Taxi-Crane Pilot","type":"Role","_key":"24372","_from":"17640","_to":"17630"} +{"$label":"ACTS_IN","name":"Taxi-Crane Pilot","type":"Role","_key":"24371","_from":"17639","_to":"17630"} +{"$label":"ACTS_IN","name":"Guard Checkpoint","type":"Role","_key":"24370","_from":"17638","_to":"17630"} +{"$label":"ACTS_IN","name":"Capt. Stojanowicz","type":"Role","_key":"24369","_from":"17637","_to":"17630"} +{"$label":"ACTS_IN","name":"Lt. Gallagher","type":"Role","_key":"24368","_from":"17636","_to":"17630"} +{"$label":"ACTS_IN","name":"Riffle","type":"Role","_key":"24367","_from":"17635","_to":"17630"} +{"$label":"ACTS_IN","name":"Moose Haggerty","type":"Role","_key":"24366","_from":"17634","_to":"17630"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"24365","_from":"17633","_to":"17630"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"24360","_from":"17632","_to":"17630"} +{"$label":"ACTS_IN","name":"Felix Stone","type":"Role","_key":"24358","_from":"17631","_to":"17630"} +{"$label":"ACTS_IN","name":"Officer Pavlovich","type":"Role","_key":"119242","_from":"17631","_to":"70057"} +{"$label":"ACTS_IN","name":"Pat Garret","type":"Role","_key":"112291","_from":"17631","_to":"66302"} +{"$label":"ACTS_IN","name":"Detective Max Bishop","type":"Role","_key":"104393","_from":"17631","_to":"61413"} +{"$label":"ACTS_IN","name":"Tom Cody","type":"Role","_key":"101616","_from":"17631","_to":"59813"} +{"$label":"ACTS_IN","name":"Willson","type":"Role","_key":"90990","_from":"17631","_to":"53683"} +{"$label":"ACTS_IN","name":"Frank McGowan","type":"Role","_key":"88153","_from":"17631","_to":"52303"} +{"$label":"ACTS_IN","name":"David Herdeg","type":"Role","_key":"64480","_from":"17631","_to":"40178"} +{"$label":"ACTS_IN","name":"Iancu","type":"Role","_key":"58188","_from":"17631","_to":"36805"} +{"$label":"ACTS_IN","name":"Tarkan","type":"Role","_key":"68375","_from":"17633","_to":"41957"} +{"$label":"ACTS_IN","name":"Pansy Milbank","type":"Role","_key":"24381","_from":"17646","_to":"17645"} +{"$label":"ACTS_IN","name":"Ariadne Oliver","type":"Role","_key":"41674","_from":"17646","_to":"27972"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"24388","_from":"17651","_to":"17647"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"24387","_from":"17650","_to":"17647"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"24386","_from":"17649","_to":"17647"} +{"$label":"DIRECTED","_key":"24385","_from":"17648","_to":"17647"} +{"$label":"ACTS_IN","name":"Margarete Hansen","type":"Role","_key":"24405","_from":"17668","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24404","_from":"17667","_to":"17653"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24402","_from":"17666","_to":"17653"} +{"$label":"ACTS_IN","name":"Generalprokurator Steffens","type":"Role","_key":"24401","_from":"17665","_to":"17653"} +{"$label":"ACTS_IN","name":"Dr. Hansen","type":"Role","_key":"24400","_from":"17664","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24399","_from":"17663","_to":"17653"} +{"$label":"ACTS_IN","name":"Professor Ottmann","type":"Role","_key":"24398","_from":"17662","_to":"17653"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24396","_from":"17661","_to":"17653"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24395","_from":"17660","_to":"17653"} +{"$label":"ACTS_IN","name":"Tochter des Generalprokurator Steffens","type":"Role","_key":"24394","_from":"17659","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24393","_from":"17658","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24392","_from":"17657","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24391","_from":"17656","_to":"17653"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24390","_from":"17655","_to":"17653"} +{"$label":"DIRECTED","_key":"24389","_from":"17654","_to":"17653"} +{"$label":"DIRECTED","_key":"24462","_from":"17654","_to":"17689"} +{"$label":"DIRECTED","_key":"24452","_from":"17654","_to":"17686"} +{"$label":"DIRECTED","_key":"24443","_from":"17654","_to":"17685"} +{"$label":"DIRECTED","_key":"24418","_from":"17654","_to":"17674"} +{"$label":"DIRECTED","_key":"24406","_from":"17654","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24444","_from":"17657","_to":"17685"} +{"$label":"ACTS_IN","name":"Cara Carozza","type":"Role","_key":"40972","_from":"17658","_to":"27564"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24463","_from":"17658","_to":"17689"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24453","_from":"17658","_to":"17686"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24445","_from":"17658","_to":"17685"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24419","_from":"17658","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24409","_from":"17658","_to":"17669"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24464","_from":"17660","_to":"17689"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24454","_from":"17660","_to":"17686"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24446","_from":"17660","_to":"17685"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24420","_from":"17660","_to":"17674"} +{"$label":"ACTS_IN","name":"Homunculus","type":"Role","_key":"24416","_from":"17660","_to":"17669"} +{"$label":"ACTS_IN","name":"Fouquier-Tinville","type":"Role","_key":"30145","_from":"17661","_to":"21242"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24517","_from":"17661","_to":"17731"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24465","_from":"17661","_to":"17689"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24456","_from":"17661","_to":"17686"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24447","_from":"17661","_to":"17685"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24421","_from":"17661","_to":"17674"} +{"$label":"ACTS_IN","name":"Edgar Rodin","type":"Role","_key":"24417","_from":"17661","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24466","_from":"17663","_to":"17689"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24458","_from":"17663","_to":"17686"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24449","_from":"17663","_to":"17685"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24424","_from":"17663","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24413","_from":"17663","_to":"17669"} +{"$label":"ACTS_IN","name":"Generalprokurator Steffens","type":"Role","_key":"24426","_from":"17665","_to":"17674"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24470","_from":"17666","_to":"17689"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24461","_from":"17666","_to":"17686"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24451","_from":"17666","_to":"17685"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24427","_from":"17666","_to":"17674"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"24415","_from":"17666","_to":"17669"} +{"$label":"ACTS_IN","name":"Margarete Hansen","type":"Role","_key":"24468","_from":"17668","_to":"17689"} +{"$label":"ACTS_IN","name":"Margarete Hansen","type":"Role","_key":"24459","_from":"17668","_to":"17686"} +{"$label":"ACTS_IN","name":"Margarete Hansen","type":"Role","_key":"24450","_from":"17668","_to":"17685"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24425","_from":"17668","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24414","_from":"17668","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24411","_from":"17673","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24410","_from":"17672","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A,","type":"Role","_key":"24408","_from":"17671","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24407","_from":"17670","_to":"17669"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24431","_from":"17678","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24430","_from":"17677","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24428","_from":"17676","_to":"17674"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24422","_from":"17675","_to":"17674"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"24442","_from":"17684","_to":"17679"} +{"$label":"ACTS_IN","name":"Lindsey Jones","type":"Role","_key":"24437","_from":"17683","_to":"17679"} +{"$label":"ACTS_IN","name":"Carlisle","type":"Role","_key":"24436","_from":"17682","_to":"17679"} +{"$label":"ACTS_IN","name":"Ben Murphy","type":"Role","_key":"24435","_from":"17681","_to":"17679"} +{"$label":"DIRECTED","_key":"24432","_from":"17680","_to":"17679"} +{"$label":"DIRECTED","_key":"114445","_from":"17680","_to":"67420"} +{"$label":"DIRECTED","_key":"114261","_from":"17680","_to":"67297"} +{"$label":"DIRECTED","_key":"112162","_from":"17680","_to":"66236"} +{"$label":"DIRECTED","_key":"61507","_from":"17680","_to":"38795"} +{"$label":"DIRECTED","_key":"56673","_from":"17680","_to":"35987"} +{"$label":"ACTS_IN","name":"Burt Farlander","type":"Role","_key":"119394","_from":"17681","_to":"70150"} +{"$label":"ACTS_IN","name":"Brevin","type":"Role","_key":"93145","_from":"17681","_to":"54899"} +{"$label":"ACTS_IN","name":"Carter Rutherford","type":"Role","_key":"35005","_from":"17681","_to":"23895"} +{"$label":"ACTS_IN","name":"Nick Brady","type":"Role","_key":"114408","_from":"17682","_to":"67392"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"92494","_from":"17682","_to":"54598"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"72371","_from":"17682","_to":"43699"} +{"$label":"ACTS_IN","name":"Austin","type":"Role","_key":"69607","_from":"17682","_to":"42492"} +{"$label":"ACTS_IN","name":"Foreign Exchange Student","type":"Role","_key":"65552","_from":"17682","_to":"40621"} +{"$label":"ACTS_IN","name":"Lloyd Christmas","type":"Role","_key":"61280","_from":"17682","_to":"38696"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"46991","_from":"17682","_to":"30983"} +{"$label":"ACTS_IN","name":"Lauren (segment \"The Campfire\")","type":"Role","_key":"108654","_from":"17683","_to":"64215"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"105313","_from":"17683","_to":"61970"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"98567","_from":"17683","_to":"58084"} +{"$label":"ACTS_IN","name":"Marcia Brady","type":"Role","_key":"90568","_from":"17683","_to":"53492"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"67221","_from":"17683","_to":"41454"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"60037","_from":"17683","_to":"37890"} +{"$label":"ACTS_IN","name":"Kate Veatch","type":"Role","_key":"54074","_from":"17683","_to":"34776"} +{"$label":"ACTS_IN","name":"Matilda Jeffries","type":"Role","_key":"53607","_from":"17683","_to":"34590"} +{"$label":"ACTS_IN","name":"Laura Lizzie","type":"Role","_key":"52557","_from":"17683","_to":"34163"} +{"$label":"ACTS_IN","name":"Marcia Brady","type":"Role","_key":"52374","_from":"17683","_to":"34084"} +{"$label":"ACTS_IN","name":"Mrs. Worther","type":"Role","_key":"58604","_from":"17684","_to":"37025"} +{"$label":"ACTS_IN","name":"Brenda J. Wyatt","type":"Role","_key":"47750","_from":"17684","_to":"31448"} +{"$label":"ACTS_IN","name":"Carol Fannelly","type":"Role","_key":"45287","_from":"17684","_to":"30044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24460","_from":"17688","_to":"17686"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24455","_from":"17687","_to":"17686"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24469","_from":"17691","_to":"17689"} +{"$label":"ACTS_IN","name":"Child","type":"Role","_key":"24467","_from":"17690","_to":"17689"} +{"$label":"ACTS_IN","name":"Avanti Planetaros","type":"Role","_key":"24483","_from":"17704","_to":"17693"} +{"$label":"ACTS_IN","name":"Corona","type":"Role","_key":"24482","_from":"17703","_to":"17693"} +{"$label":"ACTS_IN","name":"Martian priest","type":"Role","_key":"24481","_from":"17702","_to":"17693"} +{"$label":"ACTS_IN","name":"Professor Planetaros","type":"Role","_key":"24480","_from":"17701","_to":"17693"} +{"$label":"ACTS_IN","name":"David Dane","type":"Role","_key":"24479","_from":"17700","_to":"17693"} +{"$label":"ACTS_IN","name":"Marya","type":"Role","_key":"24478","_from":"17699","_to":"17693"} +{"$label":"ACTS_IN","name":"Professor Dubius","type":"Role","_key":"24477","_from":"17698","_to":"17693"} +{"$label":"ACTS_IN","name":"Dr. Krafft","type":"Role","_key":"24476","_from":"17697","_to":"17693"} +{"$label":"ACTS_IN","name":"Martian leader - wise man","type":"Role","_key":"24475","_from":"17696","_to":"17693"} +{"$label":"ACTS_IN","name":"Martian citizen","type":"Role","_key":"24474","_from":"17695","_to":"17693"} +{"$label":"DIRECTED","_key":"24473","_from":"17694","_to":"17693"} +{"$label":"ACTS_IN","name":"Prince de Gace","type":"Role","_key":"36392","_from":"17695","_to":"24685"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"24495","_from":"17714","_to":"17705"} +{"$label":"ACTS_IN","name":"Ned Land","type":"Role","_key":"24494","_from":"17713","_to":"17705"} +{"$label":"ACTS_IN","name":"Child","type":"Role","_key":"24493","_from":"17712","_to":"17705"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"24492","_from":"17711","_to":"17705"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"24491","_from":"17710","_to":"17705"} +{"$label":"ACTS_IN","name":"Scotia Capt.","type":"Role","_key":"24490","_from":"17709","_to":"17705"} +{"$label":"ACTS_IN","name":"Capt. Farragut","type":"Role","_key":"24489","_from":"17708","_to":"17705"} +{"$label":"ACTS_IN","name":"Admiral Sellings","type":"Role","_key":"24488","_from":"17707","_to":"17705"} +{"$label":"ACTS_IN","name":"Capt. Nemo","type":"Role","_key":"24486","_from":"17706","_to":"17705"} +{"$label":"ACTS_IN","name":"Josef Breuer","type":"Role","_key":"118506","_from":"17706","_to":"69669"} +{"$label":"ACTS_IN","name":"Steven Parker","type":"Role","_key":"103705","_from":"17706","_to":"60999"} +{"$label":"ACTS_IN","name":"Tom Hollander","type":"Role","_key":"103611","_from":"17706","_to":"60939"} +{"$label":"ACTS_IN","name":"Sarek","type":"Role","_key":"94694","_from":"17706","_to":"55786"} +{"$label":"ACTS_IN","name":"Mikhail Rashid","type":"Role","_key":"90712","_from":"17706","_to":"53546"} +{"$label":"ACTS_IN","name":"Semelier","type":"Role","_key":"67380","_from":"17706","_to":"41517"} +{"$label":"ACTS_IN","name":"Aaron Hanks","type":"Role","_key":"66280","_from":"17706","_to":"40999"} +{"$label":"ACTS_IN","name":"Cmdr. Tim Mackey","type":"Role","_key":"59293","_from":"17706","_to":"37449"} +{"$label":"ACTS_IN","name":"Harold Abrahams","type":"Role","_key":"53898","_from":"17706","_to":"34695"} +{"$label":"ACTS_IN","name":"Prince Malagant","type":"Role","_key":"43871","_from":"17706","_to":"29295"} +{"$label":"ACTS_IN","name":"Jack Donovan","type":"Role","_key":"47787","_from":"17707","_to":"31463"} +{"$label":"ACTS_IN","name":"CIA Agent","type":"Role","_key":"56542","_from":"17708","_to":"35892"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"51105","_from":"17708","_to":"33343"} +{"$label":"ACTS_IN","name":"Mike Lockwood","type":"Role","_key":"46161","_from":"17708","_to":"30501"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108940","_from":"17714","_to":"64379"} +{"$label":"ACTS_IN","name":"Michael Dunne","type":"Role","_key":"100920","_from":"17714","_to":"59493"} +{"$label":"DIRECTED","_key":"100919","_from":"17714","_to":"59493"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"24503","_from":"17722","_to":"17715"} +{"$label":"ACTS_IN","name":"Admiral","type":"Role","_key":"24502","_from":"17721","_to":"17715"} +{"$label":"ACTS_IN","name":"Saxon","type":"Role","_key":"24501","_from":"17720","_to":"17715"} +{"$label":"ACTS_IN","name":"Thierry Arronax","type":"Role","_key":"24500","_from":"17719","_to":"17715"} +{"$label":"ACTS_IN","name":"Ned Land","type":"Role","_key":"24499","_from":"17718","_to":"17715"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"24498","_from":"17717","_to":"17715"} +{"$label":"DIRECTED","_key":"24496","_from":"17716","_to":"17715"} +{"$label":"DIRECTED","_key":"68563","_from":"17716","_to":"42034"} +{"$label":"DIRECTED","_key":"33060","_from":"17716","_to":"22904"} +{"$label":"ACTS_IN","name":"Prinzessin Lily","type":"Role","_key":"73104","_from":"17717","_to":"43975"} +{"$label":"ACTS_IN","name":"Sloane Peterson","type":"Role","_key":"53451","_from":"17717","_to":"34532"} +{"$label":"ACTS_IN","name":"Melissa Walker","type":"Role","_key":"50925","_from":"17717","_to":"33237"} +{"$label":"ACTS_IN","name":"Wrather","type":"Role","_key":"114941","_from":"17718","_to":"67698"} +{"$label":"ACTS_IN","name":"Rosco","type":"Role","_key":"111298","_from":"17718","_to":"65730"} +{"$label":"ACTS_IN","name":"Roland 'Rollie' Tyler","type":"Role","_key":"110126","_from":"17718","_to":"65075"} +{"$label":"ACTS_IN","name":"Lt. Peter Handcock","type":"Role","_key":"96556","_from":"17718","_to":"56784"} +{"$label":"ACTS_IN","name":"Pando","type":"Role","_key":"94437","_from":"17718","_to":"55608"} +{"$label":"ACTS_IN","name":"Bob Campbell","type":"Role","_key":"61105","_from":"17718","_to":"38622"} +{"$label":"ACTS_IN","name":"Roland 'Rollie' Tyler","type":"Role","_key":"57517","_from":"17718","_to":"36445"} +{"$label":"ACTS_IN","name":"Douglas \"Doug\" Coughlin","type":"Role","_key":"47118","_from":"17718","_to":"31067"} +{"$label":"ACTS_IN","name":"King Carney","type":"Role","_key":"45497","_from":"17718","_to":"30139"} +{"$label":"ACTS_IN","name":"Leland Van Lew","type":"Role","_key":"40835","_from":"17718","_to":"27489"} +{"$label":"ACTS_IN","name":"Executive Officer","type":"Role","_key":"59917","_from":"17720","_to":"37824"} +{"$label":"ACTS_IN","name":"Professor Challenger","type":"Role","_key":"24858","_from":"17721","_to":"17974"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"106861","_from":"17722","_to":"62996"} +{"$label":"ACTS_IN","name":"Carolyn Matisse","type":"Role","_key":"98631","_from":"17722","_to":"58112"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"98248","_from":"17722","_to":"57878"} +{"$label":"ACTS_IN","name":"Sonja Zat","type":"Role","_key":"54435","_from":"17722","_to":"34911"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24513","_from":"17730","_to":"17723"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24512","_from":"17729","_to":"17723"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24511","_from":"17728","_to":"17723"} +{"$label":"ACTS_IN","name":"o. A,","type":"Role","_key":"24510","_from":"17727","_to":"17723"} +{"$label":"ACTS_IN","name":"Alraune","type":"Role","_key":"24509","_from":"17726","_to":"17723"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24508","_from":"17725","_to":"17723"} +{"$label":"DIRECTED","_key":"24506","_from":"17724","_to":"17723"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"24522","_from":"17732","_to":"17731"} +{"$label":"ACTS_IN","name":"Alraune","type":"Role","_key":"24521","_from":"17738","_to":"17731"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24520","_from":"17737","_to":"17731"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24519","_from":"17736","_to":"17731"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24518","_from":"17735","_to":"17731"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24516","_from":"17734","_to":"17731"} +{"$label":"DIRECTED","_key":"24515","_from":"17733","_to":"17731"} +{"$label":"DIRECTED","_key":"24514","_from":"17732","_to":"17731"} +{"$label":"ACTS_IN","name":"Ein Herr in der Bar","type":"Role","_key":"24535","_from":"17749","_to":"17739"} +{"$label":"ACTS_IN","name":"Ein Herr im Coupe","type":"Role","_key":"24534","_from":"17748","_to":"17739"} +{"$label":"ACTS_IN","name":"Der M\u00f6rder","type":"Role","_key":"24533","_from":"17747","_to":"17739"} +{"$label":"ACTS_IN","name":"Die Dirne","type":"Role","_key":"24531","_from":"17746","_to":"17739"} +{"$label":"ACTS_IN","name":"Der Vicomte","type":"Role","_key":"24530","_from":"17745","_to":"17739"} +{"$label":"ACTS_IN","name":"Der Dompteur","type":"Role","_key":"24529","_from":"17744","_to":"17739"} +{"$label":"ACTS_IN","name":"Der Zauberk\u00fcnstler","type":"Role","_key":"24528","_from":"17743","_to":"17739"} +{"$label":"ACTS_IN","name":"W\u00f6lfchen","type":"Role","_key":"24527","_from":"17742","_to":"17739"} +{"$label":"ACTS_IN","name":"Prof. Jakob ten Brinken","type":"Role","_key":"24525","_from":"17741","_to":"17739"} +{"$label":"DIRECTED","_key":"24523","_from":"17740","_to":"17739"} +{"$label":"DIRECTED","_key":"65106","_from":"17740","_to":"40442"} +{"$label":"ACTS_IN","name":"Graf","type":"Role","_key":"65104","_from":"17740","_to":"40442"} +{"$label":"DIRECTED","_key":"65105","_from":"17741","_to":"40442"} +{"$label":"DIRECTED","_key":"24565","_from":"17741","_to":"17772"} +{"$label":"ACTS_IN","name":"Golem","type":"Role","_key":"65101","_from":"17741","_to":"40442"} +{"$label":"ACTS_IN","name":"Loucadou","type":"Role","_key":"49591","_from":"17741","_to":"32463"} +{"$label":"ACTS_IN","name":"Golem","type":"Role","_key":"24567","_from":"17741","_to":"17772"} +{"$label":"ACTS_IN","name":"The Nipper","type":"Role","_key":"40291","_from":"17742","_to":"27184"} +{"$label":"ACTS_IN","name":"Musiker Leo","type":"Role","_key":"40114","_from":"17742","_to":"27076"} +{"$label":"ACTS_IN","name":"Manning","type":"Role","_key":"115438","_from":"17745","_to":"67969"} +{"$label":"ACTS_IN","name":"Detective Sergeant Ted Spencer","type":"Role","_key":"90999","_from":"17745","_to":"53688"} +{"$label":"ACTS_IN","name":"Pesch","type":"Role","_key":"40979","_from":"17747","_to":"27564"} +{"$label":"ACTS_IN","name":"Lady","type":"Role","_key":"24549","_from":"17762","_to":"17750"} +{"$label":"ACTS_IN","name":"The Innkeeper","type":"Role","_key":"24548","_from":"17761","_to":"17750"} +{"$label":"ACTS_IN","name":"Olga Wolkonski","type":"Role","_key":"24546","_from":"17760","_to":"17750"} +{"$label":"ACTS_IN","name":"Raspe","type":"Role","_key":"24545","_from":"17759","_to":"17750"} +{"$label":"ACTS_IN","name":"Frau Raspe","type":"Role","_key":"24544","_from":"17758","_to":"17750"} +{"$label":"ACTS_IN","name":"Wolfgang Petersen","type":"Role","_key":"24543","_from":"17757","_to":"17750"} +{"$label":"ACTS_IN","name":"Dr. Petersen","type":"Role","_key":"24542","_from":"17756","_to":"17750"} +{"$label":"ACTS_IN","name":"F\u00fcrstin Wolkonski","type":"Role","_key":"24541","_from":"17755","_to":"17750"} +{"$label":"ACTS_IN","name":"Attorney","type":"Role","_key":"24540","_from":"17754","_to":"17750"} +{"$label":"ACTS_IN","name":"Frank Braun","type":"Role","_key":"24539","_from":"17753","_to":"17750"} +{"$label":"ACTS_IN","name":"Professor ten Brinken","type":"Role","_key":"24538","_from":"17752","_to":"17750"} +{"$label":"DIRECTED","_key":"24536","_from":"17751","_to":"17750"} +{"$label":"ACTS_IN","name":"Ratov","type":"Role","_key":"120330","_from":"17752","_to":"70681"} +{"$label":"ACTS_IN","name":"M\u00fchlenkonsort","type":"Role","_key":"42123","_from":"17753","_to":"28218"} +{"$label":"ACTS_IN","name":"Staatsanwalt von Wenk","type":"Role","_key":"40975","_from":"17756","_to":"27564"} +{"$label":"ACTS_IN","name":"Baronin M\u00fcnchhausen","type":"Role","_key":"71138","_from":"17758","_to":"43180"} +{"$label":"ACTS_IN","name":"Karoline Oberholzer","type":"Role","_key":"42330","_from":"17758","_to":"28337"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"41500","_from":"17758","_to":"27881"} +{"$label":"ACTS_IN","name":"Mrs. Cotton","type":"Role","_key":"32821","_from":"17758","_to":"22783"} +{"$label":"ACTS_IN","name":"Frau Tischbein","type":"Role","_key":"32458","_from":"17758","_to":"22575"} +{"$label":"ACTS_IN","name":"Sophie von Bomberg","type":"Role","_key":"42037","_from":"17760","_to":"28155"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41893","_from":"17761","_to":"28094"} +{"$label":"ACTS_IN","name":"Wolf Goutram","type":"Role","_key":"24564","_from":"17771","_to":"17763"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24562","_from":"17770","_to":"17763"} +{"$label":"ACTS_IN","name":"Mlle. Duvaliere","type":"Role","_key":"24561","_from":"17769","_to":"17763"} +{"$label":"ACTS_IN","name":"Olga Wolkonska","type":"Role","_key":"24560","_from":"17768","_to":"17763"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Wolkonska","type":"Role","_key":"24559","_from":"17767","_to":"17763"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"24558","_from":"17766","_to":"17763"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"24557","_from":"17765","_to":"17763"} +{"$label":"ACTS_IN","name":"Count Geroldingen","type":"Role","_key":"24555","_from":"17764","_to":"17763"} +{"$label":"ACTS_IN","name":"Assessor","type":"Role","_key":"44171","_from":"17764","_to":"29437"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33568","_from":"17764","_to":"23204"} +{"$label":"ACTS_IN","name":"Keller","type":"Role","_key":"31255","_from":"17764","_to":"21866"} +{"$label":"ACTS_IN","name":"Hauptsturmf\u00fchrer Dr. Hagen","type":"Role","_key":"27603","_from":"17764","_to":"19792"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"41937","_from":"17767","_to":"28098"} +{"$label":"ACTS_IN","name":"Alois Brandl","type":"Role","_key":"45406","_from":"17770","_to":"30098"} +{"$label":"ACTS_IN","name":"Wimmer ( Polizist )","type":"Role","_key":"44652","_from":"17770","_to":"29707"} +{"$label":"ACTS_IN","name":"K\u00f6nig Gunther","type":"Role","_key":"38034","_from":"17771","_to":"25742"} +{"$label":"ACTS_IN","name":"K\u00f6nig Gunther","type":"Role","_key":"38014","_from":"17771","_to":"25728"} +{"$label":"ACTS_IN","name":"Temple Servant","type":"Role","_key":"24578","_from":"17782","_to":"17772"} +{"$label":"ACTS_IN","name":"Kleines M\u00e4dchen","type":"Role","_key":"24577","_from":"17781","_to":"17772"} +{"$label":"ACTS_IN","name":"Junker Florian","type":"Role","_key":"24575","_from":"17780","_to":"17772"} +{"$label":"ACTS_IN","name":"Des Kaisers Kebse","type":"Role","_key":"24574","_from":"17779","_to":"17772"} +{"$label":"ACTS_IN","name":"Der Kaiser","type":"Role","_key":"24573","_from":"17778","_to":"17772"} +{"$label":"ACTS_IN","name":"Tempeldiener","type":"Role","_key":"24572","_from":"17777","_to":"17772"} +{"$label":"ACTS_IN","name":"Rabbi Jehuda","type":"Role","_key":"24571","_from":"17776","_to":"17772"} +{"$label":"ACTS_IN","name":"Miriam L\u00f6w","type":"Role","_key":"24569","_from":"17775","_to":"17772"} +{"$label":"ACTS_IN","name":"Rabbi L\u00f6w","type":"Role","_key":"24568","_from":"17774","_to":"17772"} +{"$label":"DIRECTED","_key":"24566","_from":"17773","_to":"17772"} +{"$label":"DIRECTED","_key":"42714","_from":"17773","_to":"28591"} +{"$label":"ACTS_IN","name":"Stromminger ( H\u00f6chstbauer )","type":"Role","_key":"43052","_from":"17774","_to":"28755"} +{"$label":"ACTS_IN","name":"Kleines M\u00e4dchen","type":"Role","_key":"44923","_from":"17781","_to":"29866"} +{"$label":"ACTS_IN","name":"Troedler","type":"Role","_key":"65103","_from":"17782","_to":"40442"} +{"$label":"ACTS_IN","name":"Ihoshka","type":"Role","_key":"24590","_from":"17794","_to":"17783"} +{"$label":"ACTS_IN","name":"Gor","type":"Role","_key":"24589","_from":"17793","_to":"17783"} +{"$label":"ACTS_IN","name":"Tuskug - K\u00f6nig vom Mars","type":"Role","_key":"24588","_from":"17792","_to":"17783"} +{"$label":"ACTS_IN","name":"Ehrlich","type":"Role","_key":"24587","_from":"17791","_to":"17783"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"24586","_from":"17790","_to":"17783"} +{"$label":"ACTS_IN","name":"Masha","type":"Role","_key":"24585","_from":"17789","_to":"17783"} +{"$label":"ACTS_IN","name":"Gusev","type":"Role","_key":"24584","_from":"17788","_to":"17783"} +{"$label":"ACTS_IN","name":"Spiridinov","type":"Role","_key":"24583","_from":"17787","_to":"17783"} +{"$label":"ACTS_IN","name":"Kravtsov","type":"Role","_key":"24582","_from":"17786","_to":"17783"} +{"$label":"ACTS_IN","name":"Queen Aelita","type":"Role","_key":"24581","_from":"17785","_to":"17783"} +{"$label":"DIRECTED","_key":"24580","_from":"17784","_to":"17783"} +{"$label":"ACTS_IN","name":"Diener","type":"Role","_key":"24597","_from":"17799","_to":"17795"} +{"$label":"ACTS_IN","name":"Vater Orlac","type":"Role","_key":"24596","_from":"17798","_to":"17795"} +{"$label":"ACTS_IN","name":"Regine","type":"Role","_key":"24595","_from":"17797","_to":"17795"} +{"$label":"ACTS_IN","name":"Yvonne Orlac","type":"Role","_key":"24593","_from":"17796","_to":"17795"} +{"$label":"ACTS_IN","name":"Mr. Pinky","type":"Role","_key":"24615","_from":"17809","_to":"17800"} +{"$label":"ACTS_IN","name":"Little Inez","type":"Role","_key":"24612","_from":"17808","_to":"17800"} +{"$label":"ACTS_IN","name":"Tracy Turnblad","type":"Role","_key":"24611","_from":"17807","_to":"17800"} +{"$label":"ACTS_IN","name":"Seaweed","type":"Role","_key":"24609","_from":"17806","_to":"17800"} +{"$label":"ACTS_IN","name":"Link Larkin","type":"Role","_key":"24608","_from":"17805","_to":"17800"} +{"$label":"ACTS_IN","name":"Amber Von Tussle","type":"Role","_key":"24607","_from":"17804","_to":"17800"} +{"$label":"ACTS_IN","name":"Penny Pingleton","type":"Role","_key":"24604","_from":"17803","_to":"17800"} +{"$label":"DIRECTED","_key":"24599","_from":"17802","_to":"17800"} +{"$label":"DIRECTED","_key":"24598","_from":"17801","_to":"17800"} +{"$label":"ACTS_IN","name":"Alisha Claypoole","type":"Role","_key":"116917","_from":"17802","_to":"68826"} +{"$label":"ACTS_IN","name":"Kaylee","type":"Role","_key":"72476","_from":"17803","_to":"43733"} +{"$label":"ACTS_IN","name":"Sydney White","type":"Role","_key":"65554","_from":"17803","_to":"40629"} +{"$label":"ACTS_IN","name":"Daphne Reynolds","type":"Role","_key":"65348","_from":"17803","_to":"40547"} +{"$label":"ACTS_IN","name":"Viola","type":"Role","_key":"55320","_from":"17803","_to":"35273"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"92294","_from":"17804","_to":"54469"} +{"$label":"ACTS_IN","name":"Zoe Plummer","type":"Role","_key":"59523","_from":"17804","_to":"37579"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"52940","_from":"17804","_to":"34304"} +{"$label":"ACTS_IN","name":"Donna Keppel","type":"Role","_key":"50250","_from":"17804","_to":"32836"} +{"$label":"ACTS_IN","name":"Patrick McCardle","type":"Role","_key":"119124","_from":"17805","_to":"70016"} +{"$label":"ACTS_IN","name":"Mike O'Donnell (Teen)","type":"Role","_key":"110782","_from":"17805","_to":"65438"} +{"$label":"ACTS_IN","name":"Troy Bolton","type":"Role","_key":"95678","_from":"17805","_to":"56280"} +{"$label":"ACTS_IN","name":"Richard Samuels","type":"Role","_key":"89313","_from":"17805","_to":"52869"} +{"$label":"ACTS_IN","name":"Troy Bolton","type":"Role","_key":"72559","_from":"17805","_to":"43759"} +{"$label":"ACTS_IN","name":"Troy Bolton","type":"Role","_key":"66908","_from":"17805","_to":"41309"} +{"$label":"ACTS_IN","name":"Harvey Bushkin","type":"Role","_key":"101892","_from":"17809","_to":"59969"} +{"$label":"ACTS_IN","name":"Victor Honeywell","type":"Role","_key":"100453","_from":"17809","_to":"59228"} +{"$label":"ACTS_IN","name":"Uncle Max","type":"Role","_key":"69815","_from":"17809","_to":"42606"} +{"$label":"ACTS_IN","name":"Maury Ballstein","type":"Role","_key":"53610","_from":"17809","_to":"34590"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"52206","_from":"17809","_to":"34014"} +{"$label":"ACTS_IN","name":"Lt. Rico Patrone","type":"Role","_key":"49121","_from":"17809","_to":"32182"} +{"$label":"ACTS_IN","name":"Robert Fowle","type":"Role","_key":"24630","_from":"17818","_to":"17810"} +{"$label":"ACTS_IN","name":"Mr. Lefroy","type":"Role","_key":"24629","_from":"17817","_to":"17810"} +{"$label":"ACTS_IN","name":"Lucy Lefroy","type":"Role","_key":"24628","_from":"17816","_to":"17810"} +{"$label":"ACTS_IN","name":"John Warren","type":"Role","_key":"24627","_from":"17815","_to":"17810"} +{"$label":"ACTS_IN","name":"Cassandra Austen","type":"Role","_key":"24626","_from":"17814","_to":"17810"} +{"$label":"ACTS_IN","name":"Eliza de Feuillide","type":"Role","_key":"24623","_from":"17813","_to":"17810"} +{"$label":"ACTS_IN","name":"Henry Austen","type":"Role","_key":"24622","_from":"17812","_to":"17810"} +{"$label":"DIRECTED","_key":"24616","_from":"17811","_to":"17810"} +{"$label":"DIRECTED","_key":"108939","_from":"17811","_to":"64373"} +{"$label":"DIRECTED","_key":"90318","_from":"17811","_to":"53388"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"68182","_from":"17812","_to":"41878"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"51478","_from":"17812","_to":"33572"} +{"$label":"ACTS_IN","name":"m\u00e4nnliches Model","type":"Role","_key":"50154","_from":"17812","_to":"32793"} +{"$label":"ACTS_IN","name":"Hooky","type":"Role","_key":"38774","_from":"17812","_to":"26197"} +{"$label":"ACTS_IN","name":"Max Carrigan","type":"Role","_key":"33413","_from":"17812","_to":"23124"} +{"$label":"ACTS_IN","name":"Mileva Einstein","type":"Role","_key":"102919","_from":"17813","_to":"60541"} +{"$label":"ACTS_IN","name":"Madonna","type":"Role","_key":"117636","_from":"17814","_to":"69149"} +{"$label":"ACTS_IN","name":"Harry Sampson","type":"Role","_key":"108937","_from":"17815","_to":"64373"} +{"$label":"ACTS_IN","name":"Bud Jenks","type":"Role","_key":"24654","_from":"17830","_to":"17820"} +{"$label":"ACTS_IN","name":"Gallagher Jablan","type":"Role","_key":"24653","_from":"17829","_to":"17820"} +{"$label":"ACTS_IN","name":"Annie Sutton","type":"Role","_key":"24652","_from":"17828","_to":"17820"} +{"$label":"ACTS_IN","name":"Levar Gordon","type":"Role","_key":"24651","_from":"17827","_to":"17820"} +{"$label":"ACTS_IN","name":"April Hunter","type":"Role","_key":"24650","_from":"17826","_to":"17820"} +{"$label":"ACTS_IN","name":"Klaus Konstantin","type":"Role","_key":"24649","_from":"17825","_to":"17820"} +{"$label":"ACTS_IN","name":"Pavel Karnov","type":"Role","_key":"24648","_from":"17824","_to":"17820"} +{"$label":"ACTS_IN","name":"Neil Anderson","type":"Role","_key":"24647","_from":"17823","_to":"17820"} +{"$label":"ACTS_IN","name":"Ed Spengler","type":"Role","_key":"24646","_from":"17822","_to":"17820"} +{"$label":"DIRECTED","_key":"24645","_from":"17821","_to":"17820"} +{"$label":"ACTS_IN","name":"Percy Potts","type":"Role","_key":"24674","_from":"17850","_to":"17832"} +{"$label":"ACTS_IN","name":"Lawyer","type":"Role","_key":"24672","_from":"17849","_to":"17832"} +{"$label":"ACTS_IN","name":"Marquette","type":"Role","_key":"24671","_from":"17848","_to":"17832"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"24670","_from":"17847","_to":"17832"} +{"$label":"ACTS_IN","name":"Jocko","type":"Role","_key":"24669","_from":"17846","_to":"17832"} +{"$label":"ACTS_IN","name":"Maj. Hibbard","type":"Role","_key":"24668","_from":"17845","_to":"17832"} +{"$label":"ACTS_IN","name":"Colin McArdle","type":"Role","_key":"24667","_from":"17844","_to":"17832"} +{"$label":"ACTS_IN","name":"Zambo","type":"Role","_key":"24666","_from":"17843","_to":"17832"} +{"$label":"ACTS_IN","name":"Challengers Diener","type":"Role","_key":"24665","_from":"17842","_to":"17832"} +{"$label":"ACTS_IN","name":"Ape Man","type":"Role","_key":"24664","_from":"17841","_to":"17832"} +{"$label":"ACTS_IN","name":"Mrs. Challenger","type":"Role","_key":"24663","_from":"17840","_to":"17832"} +{"$label":"ACTS_IN","name":"Gladys Hungerford","type":"Role","_key":"24661","_from":"17839","_to":"17832"} +{"$label":"ACTS_IN","name":"Edward E. Malone","type":"Role","_key":"24660","_from":"17838","_to":"17832"} +{"$label":"ACTS_IN","name":"Prof. Challenger","type":"Role","_key":"24659","_from":"17837","_to":"17832"} +{"$label":"ACTS_IN","name":"Sir John Roxton","type":"Role","_key":"24658","_from":"17836","_to":"17832"} +{"$label":"ACTS_IN","name":"Paula White","type":"Role","_key":"24657","_from":"17835","_to":"17832"} +{"$label":"DIRECTED","_key":"24656","_from":"17834","_to":"17832"} +{"$label":"DIRECTED","_key":"24655","_from":"17833","_to":"17832"} +{"$label":"ACTS_IN","name":"The Bride of Cana (Judean Story)","type":"Role","_key":"25327","_from":"17835","_to":"18250"} +{"$label":"ACTS_IN","name":"John Sterling","type":"Role","_key":"36391","_from":"17836","_to":"24685"} +{"$label":"ACTS_IN","name":"Nyland Smith","type":"Role","_key":"27406","_from":"17836","_to":"19685"} +{"$label":"ACTS_IN","name":"Native Girl","type":"Role","_key":"24685","_from":"17857","_to":"17851"} +{"$label":"ACTS_IN","name":"Costa","type":"Role","_key":"24684","_from":"17856","_to":"17851"} +{"$label":"ACTS_IN","name":"David Holmes","type":"Role","_key":"24683","_from":"17855","_to":"17851"} +{"$label":"ACTS_IN","name":"Prof. Summerlee","type":"Role","_key":"24682","_from":"17854","_to":"17851"} +{"$label":"ACTS_IN","name":"Manuel Gomez","type":"Role","_key":"24681","_from":"17853","_to":"17851"} +{"$label":"DIRECTED","_key":"24676","_from":"17852","_to":"17851"} +{"$label":"ACTS_IN","name":"Alfred North","type":"Role","_key":"120061","_from":"17854","_to":"70508"} +{"$label":"ACTS_IN","name":"Max Detweiler","type":"Role","_key":"103266","_from":"17854","_to":"60756"} +{"$label":"ACTS_IN","name":"Thomas Rogers","type":"Role","_key":"34539","_from":"17854","_to":"23646"} +{"$label":"ACTS_IN","name":"Gerhard Falkstein","type":"Role","_key":"25154","_from":"17854","_to":"18167"} +{"$label":"ACTS_IN","name":"Dr. Otto Hessler","type":"Role","_key":"120630","_from":"17856","_to":"70847"} +{"$label":"ACTS_IN","name":"Diego Casas","type":"Role","_key":"44298","_from":"17856","_to":"29517"} +{"$label":"ACTS_IN","name":"Witch Doctor","type":"Role","_key":"24696","_from":"17865","_to":"17858"} +{"$label":"ACTS_IN","name":"Palala","type":"Role","_key":"24695","_from":"17864","_to":"17858"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"24694","_from":"17863","_to":"17858"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"24692","_from":"17862","_to":"17858"} +{"$label":"ACTS_IN","name":"Malu","type":"Role","_key":"24691","_from":"17861","_to":"17858"} +{"$label":"ACTS_IN","name":"Edward Malone","type":"Role","_key":"24690","_from":"17860","_to":"17858"} +{"$label":"DIRECTED","_key":"24687","_from":"17859","_to":"17858"} +{"$label":"ACTS_IN","name":"Ted Lewis \/ Urp","type":"Role","_key":"109685","_from":"17860","_to":"64782"} +{"$label":"ACTS_IN","name":"Jack Nash","type":"Role","_key":"99546","_from":"17860","_to":"58686"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"95083","_from":"17860","_to":"55965"} +{"$label":"ACTS_IN","name":"Hudson","type":"Role","_key":"24708","_from":"17872","_to":"17866"} +{"$label":"ACTS_IN","name":"Mr. Milton Clark","type":"Role","_key":"24707","_from":"17871","_to":"17866"} +{"$label":"ACTS_IN","name":"John Felix","type":"Role","_key":"24705","_from":"17870","_to":"17866"} +{"$label":"ACTS_IN","name":"The Captain","type":"Role","_key":"24704","_from":"17869","_to":"17866"} +{"$label":"ACTS_IN","name":"Crawford","type":"Role","_key":"24703","_from":"17868","_to":"17866"} +{"$label":"ACTS_IN","name":"Harvey Crothers","type":"Role","_key":"24700","_from":"17867","_to":"17866"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"30318","_from":"17867","_to":"21319"} +{"$label":"ACTS_IN","name":"Aeradio","type":"Role","_key":"34586","_from":"17868","_to":"23672"} +{"$label":"ACTS_IN","name":"Commissioner Sir Charles Braithwaite","type":"Role","_key":"70768","_from":"17872","_to":"43034"} +{"$label":"DIRECTED","_key":"24717","_from":"17879","_to":"17873"} +{"$label":"ACTS_IN","name":"Del Ware","type":"Role","_key":"24715","_from":"17878","_to":"17873"} +{"$label":"ACTS_IN","name":"Sarah Harvey","type":"Role","_key":"24714","_from":"17877","_to":"17873"} +{"$label":"ACTS_IN","name":"Darlita","type":"Role","_key":"24713","_from":"17876","_to":"17873"} +{"$label":"ACTS_IN","name":"Top Polk","type":"Role","_key":"24712","_from":"17875","_to":"17873"} +{"$label":"ACTS_IN","name":"Steve Michaelis","type":"Role","_key":"24710","_from":"17874","_to":"17873"} +{"$label":"ACTS_IN","name":"Charles Venarius","type":"Role","_key":"111534","_from":"17874","_to":"65847"} +{"$label":"ACTS_IN","name":"Nelse McLeod","type":"Role","_key":"44554","_from":"17874","_to":"29659"} +{"$label":"ACTS_IN","name":"Joe Craddock","type":"Role","_key":"38645","_from":"17874","_to":"26108"} +{"$label":"ACTS_IN","name":"Mr. Fisher","type":"Role","_key":"116923","_from":"17875","_to":"68828"} +{"$label":"ACTS_IN","name":"Major \/ Lieutenant Colonel Harvey Stovall","type":"Role","_key":"104684","_from":"17875","_to":"61589"} +{"$label":"ACTS_IN","name":"Sheriff Ned Logan","type":"Role","_key":"101983","_from":"17875","_to":"60010"} +{"$label":"ACTS_IN","name":"Dr. Land","type":"Role","_key":"93950","_from":"17875","_to":"55322"} +{"$label":"ACTS_IN","name":"Prospector","type":"Role","_key":"72943","_from":"17875","_to":"43915"} +{"$label":"ACTS_IN","name":"Whittier","type":"Role","_key":"34934","_from":"17875","_to":"23859"} +{"$label":"ACTS_IN","name":"Ray Collins","type":"Role","_key":"25111","_from":"17875","_to":"18140"} +{"$label":"ACTS_IN","name":"Walters","type":"Role","_key":"30873","_from":"17878","_to":"21643"} +{"$label":"DIRECTED","_key":"24722","_from":"17882","_to":"17880"} +{"$label":"ACTS_IN","name":"Bates","type":"Role","_key":"24720","_from":"17881","_to":"17880"} +{"$label":"DIRECTED","_key":"24728","_from":"17887","_to":"17883"} +{"$label":"DIRECTED","_key":"24727","_from":"17886","_to":"17883"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"24726","_from":"17885","_to":"17883"} +{"$label":"ACTS_IN","name":"Italian Major","type":"Role","_key":"24725","_from":"17884","_to":"17883"} +{"$label":"ACTS_IN","name":"Carmine","type":"Role","_key":"117071","_from":"17884","_to":"68895"} +{"$label":"ACTS_IN","name":"Emile de Becque","type":"Role","_key":"111989","_from":"17884","_to":"66106"} +{"$label":"ACTS_IN","name":"DeCarlo","type":"Role","_key":"65653","_from":"17884","_to":"40676"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43666","_from":"17884","_to":"29161"} +{"$label":"ACTS_IN","name":"Count Frankenstein","type":"Role","_key":"26378","_from":"17884","_to":"18948"} +{"$label":"ACTS_IN","name":"Barrett","type":"Role","_key":"28561","_from":"17885","_to":"20416"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"24745","_from":"17900","_to":"17888"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"24744","_from":"17899","_to":"17888"} +{"$label":"ACTS_IN","name":"Yoga Instructor","type":"Role","_key":"24743","_from":"17898","_to":"17888"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"24742","_from":"17897","_to":"17888"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"24741","_from":"17896","_to":"17888"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"24740","_from":"17895","_to":"17888"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"24739","_from":"17894","_to":"17888"} +{"$label":"ACTS_IN","name":"Sid Bower","type":"Role","_key":"24738","_from":"17893","_to":"17888"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"24737","_from":"17892","_to":"17888"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"24736","_from":"17891","_to":"17888"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"24735","_from":"17890","_to":"17888"} +{"$label":"DIRECTED","_key":"24729","_from":"17889","_to":"17888"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39507","_from":"17890","_to":"26693"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39504","_from":"17891","_to":"26693"} +{"$label":"ACTS_IN","name":"Sam Kobish","type":"Role","_key":"116809","_from":"17893","_to":"68770"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"71052","_from":"17893","_to":"43146"} +{"$label":"ACTS_IN","name":"Lacey, Real Estate Developer","type":"Role","_key":"70573","_from":"17898","_to":"42937"} +{"$label":"ACTS_IN","name":"Tom Harris","type":"Role","_key":"31025","_from":"17898","_to":"21724"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"117070","_from":"17899","_to":"68895"} +{"$label":"ACTS_IN","name":"Lulu Mcafee","type":"Role","_key":"114020","_from":"17899","_to":"67148"} +{"$label":"ACTS_IN","name":"Edith 'E.' Johnson","type":"Role","_key":"105889","_from":"17899","_to":"62342"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"100889","_from":"17899","_to":"59480"} +{"$label":"ACTS_IN","name":"Honey Whitlock","type":"Role","_key":"98983","_from":"17899","_to":"58316"} +{"$label":"ACTS_IN","name":"Flossie Devine","type":"Role","_key":"94729","_from":"17899","_to":"55796"} +{"$label":"ACTS_IN","name":"Toby Roebuck","type":"Role","_key":"70953","_from":"17899","_to":"43100"} +{"$label":"ACTS_IN","name":"Holly Body","type":"Role","_key":"70254","_from":"17899","_to":"42814"} +{"$label":"ACTS_IN","name":"Audrey Hankel","type":"Role","_key":"69010","_from":"17899","_to":"42244"} +{"$label":"ACTS_IN","name":"Margalo the Bird (voice)","type":"Role","_key":"67172","_from":"17899","_to":"41441"} +{"$label":"ACTS_IN","name":"Katherine Hoover","type":"Role","_key":"67123","_from":"17899","_to":"41425"} +{"$label":"ACTS_IN","name":"Charlotte Haze","type":"Role","_key":"56496","_from":"17899","_to":"35887"} +{"$label":"ACTS_IN","name":"Maria Ruskin","type":"Role","_key":"54852","_from":"17899","_to":"35088"} +{"$label":"ACTS_IN","name":"Tina 'Teeny' Tercell","type":"Role","_key":"52681","_from":"17899","_to":"34207"} +{"$label":"ACTS_IN","name":"V","type":"Role","_key":"51845","_from":"17899","_to":"33830"} +{"$label":"ACTS_IN","name":"Tess McGill","type":"Role","_key":"27614","_from":"17899","_to":"19802"} +{"$label":"ACTS_IN","name":"Patty Palmer","type":"Role","_key":"24756","_from":"17899","_to":"17908"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"24747","_from":"17899","_to":"17901"} +{"$label":"DIRECTED","_key":"24754","_from":"17906","_to":"17901"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"24753","_from":"17907","_to":"17901"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"24752","_from":"17906","_to":"17901"} +{"$label":"ACTS_IN","name":"Prentiss","type":"Role","_key":"24751","_from":"17905","_to":"17901"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"24750","_from":"17904","_to":"17901"} +{"$label":"ACTS_IN","name":"Mativo","type":"Role","_key":"24749","_from":"17903","_to":"17901"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"24748","_from":"17902","_to":"17901"} +{"$label":"ACTS_IN","name":"District Attorney","type":"Role","_key":"24771","_from":"17913","_to":"17908"} +{"$label":"ACTS_IN","name":"Liz Hamilton","type":"Role","_key":"24766","_from":"17912","_to":"17908"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"24764","_from":"17911","_to":"17908"} +{"$label":"ACTS_IN","name":"Lou Baker","type":"Role","_key":"24762","_from":"17910","_to":"17908"} +{"$label":"ACTS_IN","name":"Mira Watanabe","type":"Role","_key":"24760","_from":"17909","_to":"17908"} +{"$label":"ACTS_IN","name":"Kumiko","type":"Role","_key":"51148","_from":"17909","_to":"33359"} +{"$label":"DIRECTED","_key":"116400","_from":"17911","_to":"68524"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"46132","_from":"17911","_to":"30480"} +{"$label":"ACTS_IN","name":"Don Jagger","type":"Role","_key":"35092","_from":"17911","_to":"23924"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"24782","_from":"17923","_to":"17914"} +{"$label":"ACTS_IN","name":"Mother Superior","type":"Role","_key":"24781","_from":"17922","_to":"17914"} +{"$label":"ACTS_IN","name":"Louisa","type":"Role","_key":"24780","_from":"17921","_to":"17914"} +{"$label":"ACTS_IN","name":"The Butler","type":"Role","_key":"24778","_from":"17920","_to":"17914"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"24776","_from":"17919","_to":"17914"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"24775","_from":"17918","_to":"17914"} +{"$label":"ACTS_IN","name":"Gina \/ Elisabeth","type":"Role","_key":"24774","_from":"17917","_to":"17914"} +{"$label":"DIRECTED","_key":"24773","_from":"17916","_to":"17914"} +{"$label":"DIRECTED","_key":"24772","_from":"17915","_to":"17914"} +{"$label":"ACTS_IN","name":"Nephele","type":"Role","_key":"35964","_from":"17917","_to":"24423"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35957","_from":"17917","_to":"24420"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35955","_from":"17917","_to":"24415"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35943","_from":"17917","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35938","_from":"17917","_to":"24402"} +{"$label":"ACTS_IN","name":"Linda Martin","type":"Role","_key":"35923","_from":"17917","_to":"24396"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"35914","_from":"17917","_to":"24389"} +{"$label":"ACTS_IN","name":"Jusy","type":"Role","_key":"35907","_from":"17917","_to":"24382"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"35900","_from":"17917","_to":"24378"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35888","_from":"17917","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35685","_from":"17917","_to":"24247"} +{"$label":"ACTS_IN","name":"Selina","type":"Role","_key":"35682","_from":"17917","_to":"24242"} +{"$label":"ACTS_IN","name":"Mich\u00e8le","type":"Role","_key":"35656","_from":"17917","_to":"24235"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35650","_from":"17917","_to":"24231"} +{"$label":"ACTS_IN","name":"Kim Lombard","type":"Role","_key":"33228","_from":"17917","_to":"23015"} +{"$label":"ACTS_IN","name":"Signora Morelli","type":"Role","_key":"33018","_from":"17917","_to":"22890"} +{"$label":"ACTS_IN","name":"Violante","type":"Role","_key":"33009","_from":"17917","_to":"22884"} +{"$label":"ACTS_IN","name":"Duchess of Cornaro","type":"Role","_key":"31442","_from":"17917","_to":"21964"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"30963","_from":"17917","_to":"21695"} +{"$label":"ACTS_IN","name":"Florentine","type":"Role","_key":"30954","_from":"17917","_to":"21687"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"30949","_from":"17917","_to":"21683"} +{"$label":"ACTS_IN","name":"Paola","type":"Role","_key":"28644","_from":"17917","_to":"20473"} +{"$label":"ACTS_IN","name":"Jasmina Sanders","type":"Role","_key":"28635","_from":"17917","_to":"20467"} +{"$label":"ACTS_IN","name":"Patricia Bataille","type":"Role","_key":"28629","_from":"17917","_to":"20461"} +{"$label":"ACTS_IN","name":"Anna Sartori & Maria Sartori","type":"Role","_key":"28616","_from":"17917","_to":"20452"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"28608","_from":"17917","_to":"20446"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"28603","_from":"17917","_to":"20444"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"28594","_from":"17917","_to":"20439"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"28585","_from":"17917","_to":"20432"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"28584","_from":"17917","_to":"20430"} +{"$label":"ACTS_IN","name":"Yo","type":"Role","_key":"28581","_from":"17917","_to":"20429"} +{"$label":"ACTS_IN","name":"Charity Farrel","type":"Role","_key":"28576","_from":"17917","_to":"20426"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"28570","_from":"17917","_to":"20423"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"28566","_from":"17917","_to":"20420"} +{"$label":"ACTS_IN","name":"Irene de Ridder","type":"Role","_key":"28558","_from":"17917","_to":"20416"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"27920","_from":"17917","_to":"20017"} +{"$label":"ACTS_IN","name":"Agatha","type":"Role","_key":"27905","_from":"17917","_to":"20003"} +{"$label":"ACTS_IN","name":"Carlotta Gavina","type":"Role","_key":"27844","_from":"17917","_to":"19960"} +{"$label":"ACTS_IN","name":"Giuliana Caroli","type":"Role","_key":"27728","_from":"17917","_to":"19868"} +{"$label":"ACTS_IN","name":"Erika Meuring","type":"Role","_key":"27604","_from":"17917","_to":"19792"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"27594","_from":"17917","_to":"19788"} +{"$label":"ACTS_IN","name":"Francoise Mayol","type":"Role","_key":"27579","_from":"17917","_to":"19780"} +{"$label":"ACTS_IN","name":"Lilian Ranger","type":"Role","_key":"27568","_from":"17917","_to":"19773"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"27558","_from":"17917","_to":"19767"} +{"$label":"ACTS_IN","name":"Paola","type":"Role","_key":"26983","_from":"17917","_to":"19403"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"26969","_from":"17917","_to":"19402"} +{"$label":"ACTS_IN","name":"Laura Moncada","type":"Role","_key":"26964","_from":"17917","_to":"19397"} +{"$label":"ACTS_IN","name":"Marta \/ Pilar","type":"Role","_key":"26955","_from":"17917","_to":"19391"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"24814","_from":"17917","_to":"17944"} +{"$label":"ACTS_IN","name":"Eva Kant","type":"Role","_key":"24806","_from":"17917","_to":"17940"} +{"$label":"ACTS_IN","name":"Monica Weston \/ Susan Dumurrier","type":"Role","_key":"24794","_from":"17917","_to":"17933"} +{"$label":"DIRECTED","_key":"24793","_from":"17932","_to":"17924"} +{"$label":"DIRECTED","_key":"24792","_from":"17931","_to":"17924"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"24791","_from":"17930","_to":"17924"} +{"$label":"ACTS_IN","name":"Susie","type":"Role","_key":"24789","_from":"17929","_to":"17924"} +{"$label":"ACTS_IN","name":"Wim","type":"Role","_key":"24788","_from":"17928","_to":"17924"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"24785","_from":"17927","_to":"17924"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"24784","_from":"17926","_to":"17924"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"24783","_from":"17925","_to":"17924"} +{"$label":"ACTS_IN","name":"Wolfgang Amadeus Mozart","type":"Role","_key":"37391","_from":"17926","_to":"25342"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"35881","_from":"17926","_to":"24361"} +{"$label":"ACTS_IN","name":"Arlette","type":"Role","_key":"35877","_from":"17926","_to":"24357"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"35868","_from":"17926","_to":"24354"} +{"$label":"ACTS_IN","name":"Catherine Gless","type":"Role","_key":"35864","_from":"17926","_to":"24351"} +{"$label":"ACTS_IN","name":"Rose Melrose","type":"Role","_key":"35713","_from":"17926","_to":"24266"} +{"$label":"ACTS_IN","name":"Ceres","type":"Role","_key":"35647","_from":"17926","_to":"24225"} +{"$label":"ACTS_IN","name":"Marie-Antoinette","type":"Role","_key":"31182","_from":"17926","_to":"21829"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"30947","_from":"17926","_to":"21676"} +{"$label":"ACTS_IN","name":"Eva Kline","type":"Role","_key":"28186","_from":"17926","_to":"20190"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"28177","_from":"17926","_to":"20186"} +{"$label":"ACTS_IN","name":"Albertine","type":"Role","_key":"28147","_from":"17926","_to":"20177"} +{"$label":"ACTS_IN","name":"Eon","type":"Role","_key":"106616","_from":"17927","_to":"62820"} +{"$label":"ACTS_IN","name":"Fotograf Hornbach","type":"Role","_key":"37263","_from":"17928","_to":"25242"} +{"$label":"DIRECTED","_key":"24804","_from":"17939","_to":"17933"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"24802","_from":"17938","_to":"17933"} +{"$label":"ACTS_IN","name":"Officer Loveday","type":"Role","_key":"24801","_from":"17937","_to":"17933"} +{"$label":"ACTS_IN","name":"Versicherungsagent","type":"Role","_key":"24800","_from":"17936","_to":"17933"} +{"$label":"ACTS_IN","name":"Benjamin Wormser","type":"Role","_key":"24799","_from":"17935","_to":"17933"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"24796","_from":"17934","_to":"17933"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71237","_from":"17934","_to":"43224"} +{"$label":"ACTS_IN","name":"Anna Maria 'Dallas' D'Allesandro","type":"Role","_key":"69534","_from":"17934","_to":"42468"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"33694","_from":"17934","_to":"23248"} +{"$label":"ACTS_IN","name":"Vic Shaw","type":"Role","_key":"26298","_from":"17934","_to":"18886"} +{"$label":"ACTS_IN","name":"Hilda","type":"Role","_key":"24911","_from":"17934","_to":"18006"} +{"$label":"ACTS_IN","name":"Massimo Serboli","type":"Role","_key":"42669","_from":"17935","_to":"28564"} +{"$label":"ACTS_IN","name":"Riccardo","type":"Role","_key":"37404","_from":"17935","_to":"25352"} +{"$label":"DIRECTED","_key":"119216","_from":"17939","_to":"70047"} +{"$label":"DIRECTED","_key":"45989","_from":"17939","_to":"30401"} +{"$label":"DIRECTED","_key":"24810","_from":"17943","_to":"17940"} +{"$label":"ACTS_IN","name":"Minister of Finance","type":"Role","_key":"24809","_from":"17942","_to":"17940"} +{"$label":"ACTS_IN","name":"Diabolik","type":"Role","_key":"24805","_from":"17941","_to":"17940"} +{"$label":"ACTS_IN","name":"Bill Meceita","type":"Role","_key":"117336","_from":"17941","_to":"69009"} +{"$label":"ACTS_IN","name":"Captian SInbad","type":"Role","_key":"114277","_from":"17941","_to":"67308"} +{"$label":"ACTS_IN","name":"Pygar","type":"Role","_key":"48044","_from":"17941","_to":"31592"} +{"$label":"ACTS_IN","name":"Michael Strogoff","type":"Role","_key":"31399","_from":"17941","_to":"21944"} +{"$label":"ACTS_IN","name":"The Exorcist","type":"Role","_key":"27904","_from":"17941","_to":"20003"} +{"$label":"ACTS_IN","name":"Lombardo","type":"Role","_key":"115556","_from":"17942","_to":"68028"} +{"$label":"ACTS_IN","name":"Dr. Longstreet","type":"Role","_key":"114491","_from":"17942","_to":"67443"} +{"$label":"ACTS_IN","name":"Captain Romney Carlton-Ricketts","type":"Role","_key":"110418","_from":"17942","_to":"65235"} +{"$label":"ACTS_IN","name":"Young Robin Hood Katie","type":"Role","_key":"108344","_from":"17942","_to":"64045"} +{"$label":"ACTS_IN","name":"Sir Hiss","type":"Role","_key":"72550","_from":"17942","_to":"43753"} +{"$label":"ACTS_IN","name":"J. Algernon Hawthorne","type":"Role","_key":"70798","_from":"17942","_to":"43041"} +{"$label":"ACTS_IN","name":"Sir Reginald Brook","type":"Role","_key":"48879","_from":"17942","_to":"32047"} +{"$label":"ACTS_IN","name":"Constabler","type":"Role","_key":"42928","_from":"17942","_to":"28685"} +{"$label":"ACTS_IN","name":"Dr. Christopher","type":"Role","_key":"35924","_from":"17942","_to":"24396"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34915","_from":"17942","_to":"23848"} +{"$label":"ACTS_IN","name":"Man of the Future","type":"Role","_key":"28284","_from":"17942","_to":"20238"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"24877","_from":"17942","_to":"17986"} +{"$label":"DIRECTED","_key":"114388","_from":"17943","_to":"67376"} +{"$label":"DIRECTED","_key":"37434","_from":"17943","_to":"25365"} +{"$label":"DIRECTED","_key":"37426","_from":"17943","_to":"25362"} +{"$label":"DIRECTED","_key":"37418","_from":"17943","_to":"25358"} +{"$label":"DIRECTED","_key":"37410","_from":"17943","_to":"25355"} +{"$label":"DIRECTED","_key":"37403","_from":"17943","_to":"25352"} +{"$label":"DIRECTED","_key":"37396","_from":"17943","_to":"25346"} +{"$label":"ACTS_IN","name":"Dunwoody","type":"Role","_key":"24816","_from":"17946","_to":"17944"} +{"$label":"DIRECTED","_key":"24811","_from":"17945","_to":"17944"} +{"$label":"DIRECTED","_key":"95325","_from":"17945","_to":"56079"} +{"$label":"DIRECTED","_key":"35485","_from":"17945","_to":"24135"} +{"$label":"DIRECTED","_key":"34703","_from":"17945","_to":"23739"} +{"$label":"ACTS_IN","name":"Elizabeth Summerlee","type":"Role","_key":"24827","_from":"17953","_to":"17947"} +{"$label":"ACTS_IN","name":"Professor George Edward Challenger","type":"Role","_key":"24826","_from":"17952","_to":"17947"} +{"$label":"ACTS_IN","name":"Copy boy","type":"Role","_key":"24824","_from":"17951","_to":"17947"} +{"$label":"ACTS_IN","name":"Gladys Hungerton","type":"Role","_key":"24822","_from":"17950","_to":"17947"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"24821","_from":"17949","_to":"17947"} +{"$label":"DIRECTED","_key":"24819","_from":"17948","_to":"17947"} +{"$label":"ACTS_IN","name":"Grove (Voice)","type":"Role","_key":"106612","_from":"17948","_to":"62814"} +{"$label":"DIRECTED","_key":"106598","_from":"17948","_to":"62814"} +{"$label":"ACTS_IN","name":"Data Clerk","type":"Role","_key":"115453","_from":"17951","_to":"67972"} +{"$label":"ACTS_IN","name":"Jeff Barnes","type":"Role","_key":"29316","_from":"17951","_to":"20816"} +{"$label":"ACTS_IN","name":"General Skarr \/ Pirate #7 (voice)","type":"Role","_key":"111847","_from":"17952","_to":"66010"} +{"$label":"ACTS_IN","name":"Hawthorne","type":"Role","_key":"111377","_from":"17952","_to":"65768"} +{"$label":"ACTS_IN","name":"Angela Rooker","type":"Role","_key":"118437","_from":"17953","_to":"69627"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"24839","_from":"17966","_to":"17954"} +{"$label":"ACTS_IN","name":"Oscar Perreault","type":"Role","_key":"24838","_from":"17965","_to":"17954"} +{"$label":"ACTS_IN","name":"Lord Thomas","type":"Role","_key":"24837","_from":"17964","_to":"17954"} +{"$label":"ACTS_IN","name":"Myar","type":"Role","_key":"24836","_from":"17963","_to":"17954"} +{"$label":"ACTS_IN","name":"Maple White","type":"Role","_key":"24835","_from":"17962","_to":"17954"} +{"$label":"ACTS_IN","name":"Djena","type":"Role","_key":"24834","_from":"17961","_to":"17954"} +{"$label":"ACTS_IN","name":"Summerlee","type":"Role","_key":"24833","_from":"17960","_to":"17954"} +{"$label":"ACTS_IN","name":"John Roxton","type":"Role","_key":"24832","_from":"17959","_to":"17954"} +{"$label":"ACTS_IN","name":"Malone","type":"Role","_key":"24831","_from":"17958","_to":"17954"} +{"$label":"ACTS_IN","name":"Amanda White","type":"Role","_key":"24830","_from":"17957","_to":"17954"} +{"$label":"ACTS_IN","name":"Challenger","type":"Role","_key":"24829","_from":"17956","_to":"17954"} +{"$label":"DIRECTED","_key":"24828","_from":"17955","_to":"17954"} +{"$label":"DIRECTED","_key":"61045","_from":"17955","_to":"38583"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"117755","_from":"17956","_to":"69222"} +{"$label":"ACTS_IN","name":"Alex Leonard","type":"Role","_key":"117076","_from":"17956","_to":"68896"} +{"$label":"ACTS_IN","name":"Dr. Benjamin Trace","type":"Role","_key":"70414","_from":"17956","_to":"42877"} +{"$label":"ACTS_IN","name":"Kevin O'Donnell","type":"Role","_key":"57489","_from":"17956","_to":"36435"} +{"$label":"ACTS_IN","name":"Martin Burney","type":"Role","_key":"46653","_from":"17956","_to":"30813"} +{"$label":"ACTS_IN","name":"Dr. Victor Frankenstein","type":"Role","_key":"25210","_from":"17956","_to":"18189"} +{"$label":"ACTS_IN","name":"Brendan","type":"Role","_key":"91568","_from":"17958","_to":"53981"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"57377","_from":"17958","_to":"36369"} +{"$label":"ACTS_IN","name":"Newspaper Editor","type":"Role","_key":"118974","_from":"17959","_to":"69921"} +{"$label":"ACTS_IN","name":"Old Fritz Vincken (voice)","type":"Role","_key":"113438","_from":"17960","_to":"66832"} +{"$label":"ACTS_IN","name":"Summerlee","type":"Role","_key":"24861","_from":"17960","_to":"17974"} +{"$label":"ACTS_IN","name":"Older Ming (Montr\u00e9al)","type":"Role","_key":"99444","_from":"17963","_to":"58590"} +{"$label":"ACTS_IN","name":"Roger Lee","type":"Role","_key":"50349","_from":"17963","_to":"32881"} +{"$label":"ACTS_IN","name":"Stagehand (Montr\u00e9al)","type":"Role","_key":"99456","_from":"17964","_to":"58590"} +{"$label":"ACTS_IN","name":"Kathleen","type":"Role","_key":"24846","_from":"17971","_to":"17967"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"24845","_from":"17970","_to":"17967"} +{"$label":"ACTS_IN","name":"Daria","type":"Role","_key":"24842","_from":"17969","_to":"17967"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"24841","_from":"17968","_to":"17967"} +{"$label":"ACTS_IN","name":"Grammont","type":"Role","_key":"24854","_from":"17973","_to":"17972"} +{"$label":"ACTS_IN","name":"Assai","type":"Role","_key":"24865","_from":"17981","_to":"17974"} +{"$label":"ACTS_IN","name":"River Guide","type":"Role","_key":"24864","_from":"17980","_to":"17974"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"24863","_from":"17979","_to":"17974"} +{"$label":"ACTS_IN","name":"Marguerite Krux","type":"Role","_key":"24862","_from":"17978","_to":"17974"} +{"$label":"ACTS_IN","name":"Lord John Roxton","type":"Role","_key":"24860","_from":"17977","_to":"17974"} +{"$label":"ACTS_IN","name":"Ned Malone","type":"Role","_key":"24859","_from":"17976","_to":"17974"} +{"$label":"DIRECTED","_key":"24857","_from":"17975","_to":"17974"} +{"$label":"DIRECTED","_key":"111556","_from":"17975","_to":"65862"} +{"$label":"DIRECTED","_key":"110133","_from":"17975","_to":"65075"} +{"$label":"DIRECTED","_key":"64190","_from":"17975","_to":"40047"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"90977","_from":"17977","_to":"53678"} +{"$label":"ACTS_IN","name":"Edward Malone","type":"Role","_key":"24870","_from":"17985","_to":"17982"} +{"$label":"ACTS_IN","name":"Lord Roxton","type":"Role","_key":"24869","_from":"17984","_to":"17982"} +{"$label":"DIRECTED","_key":"24866","_from":"17983","_to":"17982"} +{"$label":"ACTS_IN","name":"Dylan Thomas","type":"Role","_key":"98334","_from":"17985","_to":"57914"} +{"$label":"ACTS_IN","name":"Demetrius","type":"Role","_key":"90043","_from":"17985","_to":"53259"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"88168","_from":"17985","_to":"52313"} +{"$label":"ACTS_IN","name":"Peter Simon","type":"Role","_key":"44517","_from":"17985","_to":"29646"} +{"$label":"DIRECTED","_key":"24884","_from":"17990","_to":"17986"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"24881","_from":"17989","_to":"17986"} +{"$label":"ACTS_IN","name":"Bennet","type":"Role","_key":"24880","_from":"17988","_to":"17986"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"24873","_from":"17987","_to":"17986"} +{"$label":"ACTS_IN","name":"Jennifer North","type":"Role","_key":"25290","_from":"17987","_to":"18230"} +{"$label":"ACTS_IN","name":"Freya Carlson","type":"Role","_key":"25283","_from":"17987","_to":"18225"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"25275","_from":"17987","_to":"18221"} +{"$label":"ACTS_IN","name":"Malibu","type":"Role","_key":"25269","_from":"17987","_to":"18220"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"25260","_from":"17987","_to":"18218"} +{"$label":"ACTS_IN","name":"Various Characters","type":"Role","_key":"117565","_from":"17989","_to":"69119"} +{"$label":"DIRECTED","_key":"121623","_from":"17990","_to":"71454"} +{"$label":"DIRECTED","_key":"33319","_from":"17990","_to":"23089"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"24886","_from":"17993","_to":"17991"} +{"$label":"DIRECTED","_key":"24885","_from":"17992","_to":"17991"} +{"$label":"ACTS_IN","name":"Mr. Apperson","type":"Role","_key":"25340","_from":"17993","_to":"18263"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"24899","_from":"18001","_to":"17994"} +{"$label":"ACTS_IN","name":"Zwei eindeutige Existenzen","type":"Role","_key":"24898","_from":"18000","_to":"17994"} +{"$label":"ACTS_IN","name":"Werkmeister","type":"Role","_key":"24896","_from":"17999","_to":"17994"} +{"$label":"ACTS_IN","name":"Veilchenverk\u00e4uferin","type":"Role","_key":"24895","_from":"17998","_to":"17994"} +{"$label":"ACTS_IN","name":"Frau Hippolt","type":"Role","_key":"24894","_from":"17997","_to":"17994"} +{"$label":"ACTS_IN","name":"F\u00fcnf Gehirne und Scheckb\u00fccher","type":"Role","_key":"24893","_from":"17996","_to":"17994"} +{"$label":"ACTS_IN","name":"Friede Velten","type":"Role","_key":"24889","_from":"17995","_to":"17994"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24985","_from":"17997","_to":"18044"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"44712","_from":"18001","_to":"29749"} +{"$label":"ACTS_IN","name":"Gidl","type":"Role","_key":"44650","_from":"18001","_to":"29707"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40756","_from":"18001","_to":"27425"} +{"$label":"ACTS_IN","name":"Rodrigo Palestra","type":"Role","_key":"24904","_from":"18005","_to":"18002"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"24903","_from":"18004","_to":"18002"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"24901","_from":"18003","_to":"18002"} +{"$label":"ACTS_IN","name":"Elizabeth Lipp","type":"Role","_key":"35670","_from":"18003","_to":"24241"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"24945","_from":"18003","_to":"18024"} +{"$label":"ACTS_IN","name":"Captain Langsdorff 'Admiral Graff Spee'","type":"Role","_key":"113277","_from":"18004","_to":"66734"} +{"$label":"ACTS_IN","name":"Howard Beale","type":"Role","_key":"65689","_from":"18004","_to":"40690"} +{"$label":"ACTS_IN","name":"Capt. Harris","type":"Role","_key":"61895","_from":"18004","_to":"38954"} +{"$label":"ACTS_IN","name":"William Boldwood","type":"Role","_key":"27230","_from":"18004","_to":"19575"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"90770","_from":"18005","_to":"53570"} +{"$label":"ACTS_IN","name":"Mrs. Grubach","type":"Role","_key":"24913","_from":"18008","_to":"18006"} +{"$label":"ACTS_IN","name":"Miss Pittl","type":"Role","_key":"24912","_from":"18007","_to":"18006"} +{"$label":"ACTS_IN","name":"Aunt Line","type":"Role","_key":"66811","_from":"18007","_to":"41272"} +{"$label":"ACTS_IN","name":"Myriamme Hayam","type":"Role","_key":"66654","_from":"18007","_to":"41192"} +{"$label":"ACTS_IN","name":"Madame Roux","type":"Role","_key":"59979","_from":"18007","_to":"37860"} +{"$label":"ACTS_IN","name":"Cognata","type":"Role","_key":"52226","_from":"18007","_to":"34019"} +{"$label":"ACTS_IN","name":"Mademoiselle Villard","type":"Role","_key":"27386","_from":"18007","_to":"19677"} +{"$label":"ACTS_IN","name":"Mme Meyrand","type":"Role","_key":"30197","_from":"18008","_to":"21280"} +{"$label":"ACTS_IN","name":"La m\u00e8re","type":"Role","_key":"27132","_from":"18008","_to":"19521"} +{"$label":"ACTS_IN","name":"Father Callahan","type":"Role","_key":"24928","_from":"18018","_to":"18009"} +{"$label":"ACTS_IN","name":"Ramon Gongaro","type":"Role","_key":"24927","_from":"18017","_to":"18009"} +{"$label":"ACTS_IN","name":"Monsignor Monaghan","type":"Role","_key":"24926","_from":"18016","_to":"18009"} +{"$label":"ACTS_IN","name":"Cornelius J. Deegan","type":"Role","_key":"24925","_from":"18015","_to":"18009"} +{"$label":"ACTS_IN","name":"Din Fermoyle","type":"Role","_key":"24923","_from":"18014","_to":"18009"} +{"$label":"ACTS_IN","name":"Frank Fermoyle","type":"Role","_key":"24922","_from":"18013","_to":"18009"} +{"$label":"ACTS_IN","name":"Florrie Fermoyle","type":"Role","_key":"24921","_from":"18012","_to":"18009"} +{"$label":"ACTS_IN","name":"Celia Fermoyle","type":"Role","_key":"24920","_from":"18011","_to":"18009"} +{"$label":"ACTS_IN","name":"Stephen Fermoyle","type":"Role","_key":"24916","_from":"18010","_to":"18009"} +{"$label":"ACTS_IN","name":"'Link' Stephens","type":"Role","_key":"100982","_from":"18015","_to":"59510"} +{"$label":"ACTS_IN","name":"Prescott","type":"Role","_key":"113989","_from":"18016","_to":"67129"} +{"$label":"ACTS_IN","name":"Earnshaw","type":"Role","_key":"25614","_from":"18016","_to":"18444"} +{"$label":"ACTS_IN","name":"Mr. Douglas","type":"Role","_key":"112318","_from":"18018","_to":"66307"} +{"$label":"DIRECTED","_key":"24935","_from":"18023","_to":"18019"} +{"$label":"ACTS_IN","name":"Jack Bailey","type":"Role","_key":"24934","_from":"18022","_to":"18019"} +{"$label":"ACTS_IN","name":"Mr. Burke","type":"Role","_key":"24933","_from":"18021","_to":"18019"} +{"$label":"ACTS_IN","name":"Minerva Bissel","type":"Role","_key":"24931","_from":"18020","_to":"18019"} +{"$label":"ACTS_IN","name":"Emeline Marcus-Finch","type":"Role","_key":"70801","_from":"18020","_to":"43041"} +{"$label":"ACTS_IN","name":"J.J. Blodgett","type":"Role","_key":"90082","_from":"18021","_to":"53278"} +{"$label":"ACTS_IN","name":"Admiral Harold R. Stark","type":"Role","_key":"68273","_from":"18021","_to":"41908"} +{"$label":"ACTS_IN","name":"Whitlow","type":"Role","_key":"94036","_from":"18022","_to":"55371"} +{"$label":"ACTS_IN","name":"Airport Manager","type":"Role","_key":"70823","_from":"18022","_to":"43041"} +{"$label":"ACTS_IN","name":"Nosey newsman","type":"Role","_key":"25592","_from":"18022","_to":"18430"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"24995","_from":"18022","_to":"18053"} +{"$label":"DIRECTED","_key":"119147","_from":"18023","_to":"70021"} +{"$label":"ACTS_IN","name":"Herr Metzger","type":"Role","_key":"24952","_from":"18030","_to":"18024"} +{"$label":"ACTS_IN","name":"Trudi","type":"Role","_key":"24951","_from":"18029","_to":"18024"} +{"$label":"ACTS_IN","name":"Grogan","type":"Role","_key":"24950","_from":"18028","_to":"18024"} +{"$label":"ACTS_IN","name":"Eldridge","type":"Role","_key":"24949","_from":"18027","_to":"18024"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"24947","_from":"18026","_to":"18024"} +{"$label":"DIRECTED","_key":"24936","_from":"18025","_to":"18024"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"119532","_from":"18027","_to":"70216"} +{"$label":"ACTS_IN","name":"Herbert Brown","type":"Role","_key":"118400","_from":"18027","_to":"69604"} +{"$label":"ACTS_IN","name":"Clay Boone","type":"Role","_key":"71610","_from":"18027","_to":"43370"} +{"$label":"ACTS_IN","name":"Dr. Alec Considine","type":"Role","_key":"35360","_from":"18027","_to":"24074"} +{"$label":"ACTS_IN","name":"Robin Doolin","type":"Role","_key":"119863","_from":"18028","_to":"70384"} +{"$label":"ACTS_IN","name":"Frank Barnes","type":"Role","_key":"109408","_from":"18028","_to":"64640"} +{"$label":"ACTS_IN","name":"Dr. Eva Maria Prohacek","type":"Role","_key":"91338","_from":"18029","_to":"53871"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71241","_from":"18029","_to":"43224"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"66103","_from":"18029","_to":"40895"} +{"$label":"ACTS_IN","name":"Nelly","type":"Role","_key":"63390","_from":"18029","_to":"39717"} +{"$label":"ACTS_IN","name":"Magda Simon","type":"Role","_key":"50598","_from":"18029","_to":"33046"} +{"$label":"ACTS_IN","name":"Filli","type":"Role","_key":"47854","_from":"18029","_to":"31498"} +{"$label":"ACTS_IN","name":"Edith Mosbach","type":"Role","_key":"42473","_from":"18029","_to":"28443"} +{"$label":"ACTS_IN","name":"Madeleine Talbot","type":"Role","_key":"41199","_from":"18029","_to":"27720"} +{"$label":"ACTS_IN","name":"Susanne Stefan","type":"Role","_key":"30415","_from":"18029","_to":"21382"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"31807","_from":"18030","_to":"22198"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"28565","_from":"18030","_to":"20420"} +{"$label":"ACTS_IN","name":"Donatella","type":"Role","_key":"24966","_from":"18034","_to":"18031"} +{"$label":"ACTS_IN","name":"Vivian Nichols","type":"Role","_key":"24965","_from":"18033","_to":"18031"} +{"$label":"ACTS_IN","name":"Dr. Wal","type":"Role","_key":"24964","_from":"18032","_to":"18031"} +{"$label":"ACTS_IN","name":"Siegfried Stein","type":"Role","_key":"45072","_from":"18032","_to":"29929"} +{"$label":"ACTS_IN","name":"Werner Kastel","type":"Role","_key":"40578","_from":"18032","_to":"27326"} +{"$label":"ACTS_IN","name":"Ferenc","type":"Role","_key":"28568","_from":"18032","_to":"20420"} +{"$label":"ACTS_IN","name":"Edwin","type":"Role","_key":"27569","_from":"18032","_to":"19773"} +{"$label":"ACTS_IN","name":"Mrs. Davis","type":"Role","_key":"118775","_from":"18033","_to":"69835"} +{"$label":"ACTS_IN","name":"Opera singer","type":"Role","_key":"24978","_from":"18043","_to":"18035"} +{"$label":"ACTS_IN","name":"Inspector Kleiber","type":"Role","_key":"24977","_from":"18042","_to":"18035"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"24975","_from":"18041","_to":"18035"} +{"$label":"ACTS_IN","name":"Olaf Kastner","type":"Role","_key":"24974","_from":"18040","_to":"18035"} +{"$label":"ACTS_IN","name":"Halendar","type":"Role","_key":"24973","_from":"18039","_to":"18035"} +{"$label":"ACTS_IN","name":"Martin Mallison","type":"Role","_key":"24972","_from":"18038","_to":"18035"} +{"$label":"ACTS_IN","name":"Suzanne Mallison","type":"Role","_key":"24971","_from":"18037","_to":"18035"} +{"$label":"DIRECTED","_key":"24968","_from":"18036","_to":"18035"} +{"$label":"ACTS_IN","name":"Nan Perry","type":"Role","_key":"95303","_from":"18037","_to":"56070"} +{"$label":"ACTS_IN","name":"Theodora 'Theo'","type":"Role","_key":"71839","_from":"18037","_to":"43474"} +{"$label":"ACTS_IN","name":"Hera","type":"Role","_key":"62586","_from":"18037","_to":"39379"} +{"$label":"ACTS_IN","name":"Bonnie Brown","type":"Role","_key":"34922","_from":"18037","_to":"23856"} +{"$label":"ACTS_IN","name":"Sir Edward Ramsay","type":"Role","_key":"109391","_from":"18038","_to":"64625"} +{"$label":"ACTS_IN","name":"Camillo","type":"Role","_key":"47644","_from":"18039","_to":"31393"} +{"$label":"ACTS_IN","name":"Friedrich Karl M\u00f6bius","type":"Role","_key":"44161","_from":"18040","_to":"29437"} +{"$label":"ACTS_IN","name":"Ingenieur Karl Oderbruch","type":"Role","_key":"68968","_from":"18042","_to":"42224"} +{"$label":"ACTS_IN","name":"Hohmann","type":"Role","_key":"30419","_from":"18042","_to":"21382"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"44671","_from":"18043","_to":"29716"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24991","_from":"18052","_to":"18044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24990","_from":"18051","_to":"18044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24989","_from":"18050","_to":"18044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24988","_from":"18049","_to":"18044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24986","_from":"18048","_to":"18044"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24983","_from":"18047","_to":"18044"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"24982","_from":"18046","_to":"18044"} +{"$label":"ACTS_IN","name":"Warrens Freund","type":"Role","_key":"24981","_from":"18045","_to":"18044"} +{"$label":"ACTS_IN","name":"Marja","type":"Role","_key":"41853","_from":"18046","_to":"28078"} +{"$label":"ACTS_IN","name":"Hofrat Rumfort","type":"Role","_key":"49934","_from":"18049","_to":"32690"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"25003","_from":"18063","_to":"18053"} +{"$label":"ACTS_IN","name":"Millicent Carew","type":"Role","_key":"25001","_from":"18062","_to":"18053"} +{"$label":"ACTS_IN","name":"John Utterson","type":"Role","_key":"25000","_from":"18061","_to":"18053"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"24999","_from":"18060","_to":"18053"} +{"$label":"ACTS_IN","name":"Miss Gina","type":"Role","_key":"24998","_from":"18059","_to":"18053"} +{"$label":"ACTS_IN","name":"Edward Enfield","type":"Role","_key":"24997","_from":"18058","_to":"18053"} +{"$label":"ACTS_IN","name":"Sir Carew","type":"Role","_key":"24996","_from":"18057","_to":"18053"} +{"$label":"ACTS_IN","name":"Dr. Hyde","type":"Role","_key":"24994","_from":"18056","_to":"18053"} +{"$label":"DIRECTED","_key":"24993","_from":"18055","_to":"18053"} +{"$label":"DIRECTED","_key":"24992","_from":"18054","_to":"18053"} +{"$label":"ACTS_IN","name":"Jehan","type":"Role","_key":"118358","_from":"18057","_to":"69576"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"25485","_from":"18057","_to":"18370"} +{"$label":"ACTS_IN","name":"Danvers Carew","type":"Role","_key":"25011","_from":"18071","_to":"18064"} +{"$label":"ACTS_IN","name":"Edward Utterson","type":"Role","_key":"25010","_from":"18070","_to":"18064"} +{"$label":"ACTS_IN","name":"Bernice Lanyon","type":"Role","_key":"25009","_from":"18069","_to":"18064"} +{"$label":"ACTS_IN","name":"Mrs Lanyon","type":"Role","_key":"25008","_from":"18068","_to":"18064"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"25007","_from":"18067","_to":"18064"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25006","_from":"18066","_to":"18064"} +{"$label":"DIRECTED","_key":"25005","_from":"18065","_to":"18064"} +{"$label":"ACTS_IN","name":"Poole","type":"Role","_key":"25019","_from":"18077","_to":"18072"} +{"$label":"ACTS_IN","name":"Danvers Carew","type":"Role","_key":"25018","_from":"18076","_to":"18072"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"25017","_from":"18075","_to":"18072"} +{"$label":"ACTS_IN","name":"Muriel Carew","type":"Role","_key":"25016","_from":"18074","_to":"18072"} +{"$label":"DIRECTED","_key":"25012","_from":"18073","_to":"18072"} +{"$label":"ACTS_IN","name":"Justice","type":"Role","_key":"112390","_from":"18075","_to":"66350"} +{"$label":"ACTS_IN","name":"Capt. Gardner","type":"Role","_key":"110436","_from":"18075","_to":"65236"} +{"$label":"ACTS_IN","name":"Magistrate","type":"Role","_key":"25480","_from":"18075","_to":"18370"} +{"$label":"ACTS_IN","name":"Benson","type":"Role","_key":"25517","_from":"18077","_to":"18386"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25022","_from":"18079","_to":"18078"} +{"$label":"DIRECTED","_key":"25021","_from":"18079","_to":"18078"} +{"$label":"ACTS_IN","name":"Mr. Innkeeper","type":"Role","_key":"25033","_from":"18087","_to":"18080"} +{"$label":"ACTS_IN","name":"Clay","type":"Role","_key":"25032","_from":"18086","_to":"18080"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"25031","_from":"18085","_to":"18080"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin","type":"Role","_key":"25030","_from":"18084","_to":"18080"} +{"$label":"ACTS_IN","name":"junge Frau","type":"Role","_key":"25029","_from":"18083","_to":"18080"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"25027","_from":"18082","_to":"18080"} +{"$label":"DIRECTED","_key":"25023","_from":"18081","_to":"18080"} +{"$label":"DIRECTED","_key":"68481","_from":"18081","_to":"42004"} +{"$label":"DIRECTED","_key":"51937","_from":"18081","_to":"33872"} +{"$label":"ACTS_IN","name":"Ted Eckles","type":"Role","_key":"60354","_from":"18086","_to":"38062"} +{"$label":"ACTS_IN","name":"Senior TV Exec","type":"Role","_key":"56546","_from":"18087","_to":"35892"} +{"$label":"ACTS_IN","name":"Fenwyck","type":"Role","_key":"25044","_from":"18092","_to":"18088"} +{"$label":"ACTS_IN","name":"Poole der Butler","type":"Role","_key":"25041","_from":"18091","_to":"18088"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"25039","_from":"18090","_to":"18088"} +{"$label":"ACTS_IN","name":"Beatrix Emery","type":"Role","_key":"25037","_from":"18089","_to":"18088"} +{"$label":"ACTS_IN","name":"(in \"Johnny Eager\" \/ \"The Postman Always Rings Twice\") (archive footage)","type":"Role","_key":"53880","_from":"18089","_to":"34691"} +{"$label":"ACTS_IN","name":"Kit Jordan","type":"Role","_key":"34472","_from":"18089","_to":"23608"} +{"$label":"ACTS_IN","name":"Captain Woodhouse - H.M.S. Ajax","type":"Role","_key":"113278","_from":"18090","_to":"66734"} +{"$label":"ACTS_IN","name":"King Richard the Lion-Heart","type":"Role","_key":"66634","_from":"18090","_to":"41182"} +{"$label":"DIRECTED","_key":"95798","_from":"18091","_to":"56341"} +{"$label":"ACTS_IN","name":"Batley","type":"Role","_key":"25053","_from":"18099","_to":"18093"} +{"$label":"ACTS_IN","name":"Vicky Edwards","type":"Role","_key":"25051","_from":"18098","_to":"18093"} +{"$label":"ACTS_IN","name":"Bruce Adams","type":"Role","_key":"25050","_from":"18097","_to":"18093"} +{"$label":"ACTS_IN","name":"Tubby","type":"Role","_key":"25048","_from":"18096","_to":"18093"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"25047","_from":"18095","_to":"18093"} +{"$label":"DIRECTED","_key":"25046","_from":"18094","_to":"18093"} +{"$label":"ACTS_IN","name":"Mr. Dinkel \/ Mr. Dinkelpuss","type":"Role","_key":"117154","_from":"18095","_to":"68926"} +{"$label":"ACTS_IN","name":"Chuck Murray","type":"Role","_key":"101041","_from":"18095","_to":"59543"} +{"$label":"ACTS_IN","name":"Chick Young","type":"Role","_key":"25458","_from":"18095","_to":"18361"} +{"$label":"ACTS_IN","name":"Jack \/ Jack Strong","type":"Role","_key":"117155","_from":"18096","_to":"68926"} +{"$label":"ACTS_IN","name":"Ferdinand Jones","type":"Role","_key":"101042","_from":"18096","_to":"59543"} +{"$label":"ACTS_IN","name":"Wilbur Grey","type":"Role","_key":"25459","_from":"18096","_to":"18361"} +{"$label":"ACTS_IN","name":"Peggy Walsh","type":"Role","_key":"112146","_from":"18098","_to":"66231"} +{"$label":"ACTS_IN","name":"Christine Halpert","type":"Role","_key":"26570","_from":"18098","_to":"19095"} +{"$label":"ACTS_IN","name":"Sir Tristam","type":"Role","_key":"42751","_from":"18099","_to":"28608"} +{"$label":"ACTS_IN","name":"Morgan Ryker","type":"Role","_key":"26029","_from":"18099","_to":"18705"} +{"$label":"ACTS_IN","name":"Stryker","type":"Role","_key":"25064","_from":"18108","_to":"18100"} +{"$label":"ACTS_IN","name":"Constb. Johnston","type":"Role","_key":"25063","_from":"18107","_to":"18100"} +{"$label":"ACTS_IN","name":"Hattie","type":"Role","_key":"25061","_from":"18106","_to":"18100"} +{"$label":"ACTS_IN","name":"Poole der Butler","type":"Role","_key":"25060","_from":"18105","_to":"18100"} +{"$label":"ACTS_IN","name":"Dr. Wright","type":"Role","_key":"25059","_from":"18104","_to":"18100"} +{"$label":"ACTS_IN","name":"Sir Turnbull","type":"Role","_key":"25058","_from":"18103","_to":"18100"} +{"$label":"ACTS_IN","name":"Dr. Lanyon","type":"Role","_key":"25057","_from":"18102","_to":"18100"} +{"$label":"DIRECTED","_key":"25054","_from":"18101","_to":"18100"} +{"$label":"ACTS_IN","name":"Petronius","type":"Role","_key":"71096","_from":"18102","_to":"43162"} +{"$label":"ACTS_IN","name":"Starbuck","type":"Role","_key":"62681","_from":"18102","_to":"39417"} +{"$label":"ACTS_IN","name":"General Sir John Mandrake","type":"Role","_key":"34450","_from":"18102","_to":"23596"} +{"$label":"ACTS_IN","name":"Sokurah the Magician","type":"Role","_key":"104788","_from":"18103","_to":"61650"} +{"$label":"ACTS_IN","name":"Humble Bellows","type":"Role","_key":"70738","_from":"18103","_to":"43020"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"31857","_from":"18103","_to":"22230"} +{"$label":"ACTS_IN","name":"Verloc - Sylvia's Husband (as Oscar Homolka)","type":"Role","_key":"90997","_from":"18108","_to":"53688"} +{"$label":"ACTS_IN","name":"General Stok","type":"Role","_key":"34562","_from":"18108","_to":"23665"} +{"$label":"ACTS_IN","name":"Kitty Jekyll","type":"Role","_key":"25073","_from":"18115","_to":"18109"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"25071","_from":"18114","_to":"18109"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"25070","_from":"18113","_to":"18109"} +{"$label":"ACTS_IN","name":"Dr. Littauer","type":"Role","_key":"25068","_from":"18112","_to":"18109"} +{"$label":"ACTS_IN","name":"Mr. Hyde","type":"Role","_key":"25066","_from":"18111","_to":"18109"} +{"$label":"DIRECTED","_key":"25065","_from":"18110","_to":"18109"} +{"$label":"DIRECTED","_key":"118389","_from":"18110","_to":"69598"} +{"$label":"DIRECTED","_key":"111129","_from":"18110","_to":"65637"} +{"$label":"DIRECTED","_key":"72468","_from":"18110","_to":"43729"} +{"$label":"DIRECTED","_key":"72028","_from":"18110","_to":"43551"} +{"$label":"DIRECTED","_key":"26208","_from":"18110","_to":"18831"} +{"$label":"DIRECTED","_key":"26104","_from":"18110","_to":"18753"} +{"$label":"DIRECTED","_key":"25960","_from":"18110","_to":"18668"} +{"$label":"DIRECTED","_key":"25533","_from":"18110","_to":"18398"} +{"$label":"DIRECTED","_key":"25489","_from":"18110","_to":"18377"} +{"$label":"ACTS_IN","name":"Professor Alfred Kokintz","type":"Role","_key":"90807","_from":"18112","_to":"53584"} +{"$label":"ACTS_IN","name":"Catherine de Vigogne","type":"Role","_key":"90135","_from":"18115","_to":"53300"} +{"$label":"ACTS_IN","name":"Hotelier","type":"Role","_key":"25081","_from":"18121","_to":"18116"} +{"$label":"ACTS_IN","name":"Insp. Salbris","type":"Role","_key":"25080","_from":"18120","_to":"18116"} +{"$label":"ACTS_IN","name":"Commis. Lardaut","type":"Role","_key":"25079","_from":"18119","_to":"18116"} +{"$label":"ACTS_IN","name":"La pepite fille","type":"Role","_key":"25078","_from":"18118","_to":"18116"} +{"$label":"ACTS_IN","name":"Maitre Joly","type":"Role","_key":"25076","_from":"18117","_to":"18116"} +{"$label":"ACTS_IN","name":"Wainwright","type":"Role","_key":"25090","_from":"18125","_to":"18122"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"25089","_from":"18124","_to":"18122"} +{"$label":"DIRECTED","_key":"25082","_from":"18123","_to":"18122"} +{"$label":"ACTS_IN","name":"Lori MacGregor","type":"Role","_key":"103111","_from":"18124","_to":"60651"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"25098","_from":"18132","_to":"18126"} +{"$label":"ACTS_IN","name":"Dr. Carew","type":"Role","_key":"25097","_from":"18131","_to":"18126"} +{"$label":"ACTS_IN","name":"Ivy","type":"Role","_key":"25095","_from":"18130","_to":"18126"} +{"$label":"ACTS_IN","name":"Mary Carew","type":"Role","_key":"25094","_from":"18129","_to":"18126"} +{"$label":"ACTS_IN","name":"Mr. Heyde","type":"Role","_key":"25093","_from":"18128","_to":"18126"} +{"$label":"DIRECTED","_key":"25092","_from":"18127","_to":"18126"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"89718","_from":"18128","_to":"53109"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"88080","_from":"18128","_to":"52279"} +{"$label":"ACTS_IN","name":"Blinkin","type":"Role","_key":"47713","_from":"18128","_to":"31431"} +{"$label":"ACTS_IN","name":"Bob Frankenheimer alias Bob Frankenstein","type":"Role","_key":"26317","_from":"18128","_to":"18902"} +{"$label":"ACTS_IN","name":"Eve 'Evie' Tozer","type":"Role","_key":"120560","_from":"18129","_to":"70809"} +{"$label":"ACTS_IN","name":"Emily Parker","type":"Role","_key":"116160","_from":"18129","_to":"68398"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"115210","_from":"18129","_to":"67849"} +{"$label":"ACTS_IN","name":"Kathryn Morgan","type":"Role","_key":"113678","_from":"18129","_to":"66989"} +{"$label":"ACTS_IN","name":"Dr. Klompus","type":"Role","_key":"72405","_from":"18129","_to":"43713"} +{"$label":"ACTS_IN","name":"Martial Novalic","type":"Role","_key":"25105","_from":"18139","_to":"18133"} +{"$label":"ACTS_IN","name":"Werster","type":"Role","_key":"25104","_from":"18138","_to":"18133"} +{"$label":"ACTS_IN","name":"Schomburg","type":"Role","_key":"25103","_from":"18137","_to":"18133"} +{"$label":"ACTS_IN","name":"Mme. Novalic","type":"Role","_key":"25102","_from":"18136","_to":"18133"} +{"$label":"ACTS_IN","name":"Genevieve du Murcie","type":"Role","_key":"25101","_from":"18135","_to":"18133"} +{"$label":"ACTS_IN","name":"Jean Novalic","type":"Role","_key":"25100","_from":"18134","_to":"18133"} +{"$label":"DIRECTED","_key":"25099","_from":"18134","_to":"18133"} +{"$label":"ACTS_IN","name":"le gobeur d'oeufs","type":"Role","_key":"34088","_from":"18137","_to":"23422"} +{"$label":"ACTS_IN","name":"Captain Patain Malo","type":"Role","_key":"115439","_from":"18139","_to":"67969"} +{"$label":"ACTS_IN","name":"Mr. Sanchez","type":"Role","_key":"25115","_from":"18144","_to":"18140"} +{"$label":"ACTS_IN","name":"Patrizia","type":"Role","_key":"25114","_from":"18143","_to":"18140"} +{"$label":"ACTS_IN","name":"Prof. Boran","type":"Role","_key":"25110","_from":"18142","_to":"18140"} +{"$label":"DIRECTED","_key":"25107","_from":"18141","_to":"18140"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"95265","_from":"18144","_to":"56053"} +{"$label":"ACTS_IN","name":"M`ling","type":"Role","_key":"25126","_from":"18151","_to":"18145"} +{"$label":"ACTS_IN","name":"Ouran","type":"Role","_key":"25125","_from":"18150","_to":"18145"} +{"$label":"ACTS_IN","name":"Cap. Davies","type":"Role","_key":"25123","_from":"18149","_to":"18145"} +{"$label":"ACTS_IN","name":"Panther Woman","type":"Role","_key":"25121","_from":"18148","_to":"18145"} +{"$label":"ACTS_IN","name":"Edward Parker","type":"Role","_key":"25118","_from":"18147","_to":"18145"} +{"$label":"DIRECTED","_key":"25116","_from":"18146","_to":"18145"} +{"$label":"DIRECTED","_key":"25950","_from":"18146","_to":"18663"} +{"$label":"DIRECTED","_key":"25469","_from":"18146","_to":"18370"} +{"$label":"ACTS_IN","name":"Father Mahon","type":"Role","_key":"25135","_from":"18159","_to":"18152"} +{"$label":"ACTS_IN","name":"Wentworth","type":"Role","_key":"25134","_from":"18158","_to":"18152"} +{"$label":"ACTS_IN","name":"Rodriguez","type":"Role","_key":"25133","_from":"18157","_to":"18152"} +{"$label":"ACTS_IN","name":"McCoy","type":"Role","_key":"25132","_from":"18156","_to":"18152"} +{"$label":"ACTS_IN","name":"Rhodes","type":"Role","_key":"25131","_from":"18155","_to":"18152"} +{"$label":"ACTS_IN","name":"Sergt. Joe Kobelski","type":"Role","_key":"25130","_from":"18154","_to":"18152"} +{"$label":"DIRECTED","_key":"25128","_from":"18153","_to":"18152"} +{"$label":"ACTS_IN","name":"Chief Dawson","type":"Role","_key":"109687","_from":"18154","_to":"64782"} +{"$label":"ACTS_IN","name":"Father Gino","type":"Role","_key":"45463","_from":"18154","_to":"30120"} +{"$label":"ACTS_IN","name":"Raymond Watson","type":"Role","_key":"62166","_from":"18155","_to":"39152"} +{"$label":"ACTS_IN","name":"John Muhammad","type":"Role","_key":"60799","_from":"18155","_to":"38408"} +{"$label":"ACTS_IN","name":"Len","type":"Role","_key":"119390","_from":"18159","_to":"70145"} +{"$label":"ACTS_IN","name":"Concierge \/ Durand-Durand","type":"Role","_key":"48048","_from":"18159","_to":"31592"} +{"$label":"ACTS_IN","name":"Friar Laurence","type":"Role","_key":"41040","_from":"18159","_to":"27609"} +{"$label":"ACTS_IN","name":"Colin Clive","type":"Role","_key":"25146","_from":"18166","_to":"18160"} +{"$label":"ACTS_IN","name":"Elsa Lanchester","type":"Role","_key":"25144","_from":"18165","_to":"18160"} +{"$label":"ACTS_IN","name":"Edmund Kay","type":"Role","_key":"25143","_from":"18164","_to":"18160"} +{"$label":"ACTS_IN","name":"Dwight","type":"Role","_key":"25142","_from":"18163","_to":"18160"} +{"$label":"ACTS_IN","name":"David Lewis","type":"Role","_key":"25141","_from":"18162","_to":"18160"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"25139","_from":"18161","_to":"18160"} +{"$label":"ACTS_IN","name":"Miss McVane","type":"Role","_key":"119955","_from":"18161","_to":"70456"} +{"$label":"ACTS_IN","name":"Olga Belinskya","type":"Role","_key":"117696","_from":"18161","_to":"69180"} +{"$label":"ACTS_IN","name":"Virgin","type":"Role","_key":"101665","_from":"18161","_to":"59833"} +{"$label":"ACTS_IN","name":"Edna","type":"Role","_key":"96675","_from":"18161","_to":"56865"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"71117","_from":"18161","_to":"43172"} +{"$label":"ACTS_IN","name":"Aunt Millicent","type":"Role","_key":"64447","_from":"18161","_to":"40159"} +{"$label":"ACTS_IN","name":"Mrs. Wilkinson","type":"Role","_key":"55053","_from":"18161","_to":"35170"} +{"$label":"ACTS_IN","name":"Sky","type":"Role","_key":"40657","_from":"18161","_to":"27371"} +{"$label":"ACTS_IN","name":"Susan, Uptown Inn","type":"Role","_key":"39413","_from":"18161","_to":"26641"} +{"$label":"ACTS_IN","name":"Helen Margaret Chapman","type":"Role","_key":"37665","_from":"18161","_to":"25534"} +{"$label":"ACTS_IN","name":"Chris Paine","type":"Role","_key":"116609","_from":"18162","_to":"68642"} +{"$label":"ACTS_IN","name":"Professor Carl Miller","type":"Role","_key":"102636","_from":"18162","_to":"60385"} +{"$label":"ACTS_IN","name":"Howard Hallenbeck","type":"Role","_key":"94933","_from":"18162","_to":"55899"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"65247","_from":"18164","_to":"40504"} +{"$label":"ACTS_IN","name":"Isobella","type":"Role","_key":"107850","_from":"18165","_to":"63696"} +{"$label":"ACTS_IN","name":"Borgoff (Voice)","type":"Role","_key":"106608","_from":"18166","_to":"62814"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25151","_from":"18169","_to":"18167"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"25150","_from":"18168","_to":"18167"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71036","_from":"18168","_to":"43138"} +{"$label":"ACTS_IN","name":"Marty Eggs","type":"Role","_key":"66995","_from":"18168","_to":"41360"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26404","_from":"18168","_to":"18965"} +{"$label":"ACTS_IN","name":"Lola Harper","type":"Role","_key":"118099","_from":"18169","_to":"69414"} +{"$label":"ACTS_IN","name":"Caroline Howley","type":"Role","_key":"110646","_from":"18169","_to":"65366"} +{"$label":"ACTS_IN","name":"Mrs. White","type":"Role","_key":"103549","_from":"18169","_to":"60907"} +{"$label":"ACTS_IN","name":"Mrs. Montenegro","type":"Role","_key":"100935","_from":"18169","_to":"59497"} +{"$label":"ACTS_IN","name":"Victoria Brisbane","type":"Role","_key":"90106","_from":"18169","_to":"53290"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71037","_from":"18169","_to":"43138"} +{"$label":"ACTS_IN","name":"Trixie Delight","type":"Role","_key":"68962","_from":"18169","_to":"42221"} +{"$label":"ACTS_IN","name":"Lili Von Sht\u00fcpp, the Teutonic Titwillow","type":"Role","_key":"67705","_from":"18169","_to":"41639"} +{"$label":"ACTS_IN","name":"Empress Nympho","type":"Role","_key":"61304","_from":"18169","_to":"38701"} +{"$label":"ACTS_IN","name":"Gypsy Moth (voice)","type":"Role","_key":"54194","_from":"18169","_to":"34813"} +{"$label":"ACTS_IN","name":"Eunice Burns","type":"Role","_key":"45259","_from":"18169","_to":"30037"} +{"$label":"ACTS_IN","name":"Gussie Mausheimer","type":"Role","_key":"35290","_from":"18169","_to":"24029"} +{"$label":"ACTS_IN","name":"Kitty O'Kelly","type":"Role","_key":"33506","_from":"18169","_to":"23176"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"25166","_from":"18175","_to":"18170"} +{"$label":"ACTS_IN","name":"Herr Vogel","type":"Role","_key":"25165","_from":"18174","_to":"18170"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"25163","_from":"18173","_to":"18170"} +{"$label":"ACTS_IN","name":"Victor Moritz","type":"Role","_key":"25160","_from":"18172","_to":"18170"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25159","_from":"18171","_to":"18170"} +{"$label":"ACTS_IN","name":"Lang","type":"Role","_key":"25520","_from":"18174","_to":"18386"} +{"$label":"ACTS_IN","name":"Councillor","type":"Role","_key":"25482","_from":"18174","_to":"18370"} +{"$label":"ACTS_IN","name":"Hebrew at Dathan's Tent \/ Old Man","type":"Role","_key":"44981","_from":"18175","_to":"29886"} +{"$label":"ACTS_IN","name":"Ewald Neum\u00fcller","type":"Role","_key":"25521","_from":"18175","_to":"18386"} +{"$label":"ACTS_IN","name":"Councillor","type":"Role","_key":"25486","_from":"18175","_to":"18370"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"25179","_from":"18178","_to":"18176"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"25174","_from":"18177","_to":"18176"} +{"$label":"ACTS_IN","name":"Signor Leonato","type":"Role","_key":"73070","_from":"18177","_to":"43966"} +{"$label":"ACTS_IN","name":"Fiver (voice)","type":"Role","_key":"72285","_from":"18177","_to":"43666"} +{"$label":"ACTS_IN","name":"Smee","type":"Role","_key":"64448","_from":"18177","_to":"40159"} +{"$label":"ACTS_IN","name":"Polonius","type":"Role","_key":"64011","_from":"18177","_to":"39964"} +{"$label":"ACTS_IN","name":"Dr. Gunthens Tochter","type":"Role","_key":"25186","_from":"18180","_to":"18179"} +{"$label":"ACTS_IN","name":"Andrej","type":"Role","_key":"25203","_from":"18184","_to":"18181"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"25200","_from":"18183","_to":"18181"} +{"$label":"ACTS_IN","name":"Yegor","type":"Role","_key":"25199","_from":"18182","_to":"18181"} +{"$label":"DIRECTED","_key":"25208","_from":"18188","_to":"18185"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"25207","_from":"18187","_to":"18185"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"25206","_from":"18186","_to":"18185"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"25217","_from":"18194","_to":"18189"} +{"$label":"ACTS_IN","name":"Alphonse","type":"Role","_key":"25216","_from":"18193","_to":"18189"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"25215","_from":"18192","_to":"18189"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25214","_from":"18191","_to":"18189"} +{"$label":"DIRECTED","_key":"25209","_from":"18190","_to":"18189"} +{"$label":"ACTS_IN","name":"David Townsend","type":"Role","_key":"40440","_from":"18193","_to":"27257"} +{"$label":"ACTS_IN","name":"Erik Frankenstein","type":"Role","_key":"25227","_from":"18202","_to":"18195"} +{"$label":"ACTS_IN","name":"Monica Frankenstein","type":"Role","_key":"25226","_from":"18201","_to":"18195"} +{"$label":"ACTS_IN","name":"Male Monster","type":"Role","_key":"25225","_from":"18200","_to":"18195"} +{"$label":"ACTS_IN","name":"Female Monster","type":"Role","_key":"25224","_from":"18199","_to":"18195"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"25223","_from":"18198","_to":"18195"} +{"$label":"ACTS_IN","name":"Baroness Katrin Frankenstein","type":"Role","_key":"25221","_from":"18197","_to":"18195"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"25220","_from":"18196","_to":"18195"} +{"$label":"ACTS_IN","name":"Uncle John (as Joe Dallessandro)","type":"Role","_key":"62947","_from":"18196","_to":"39530"} +{"$label":"ACTS_IN","name":"Little Joe","type":"Role","_key":"49397","_from":"18196","_to":"32344"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"36509","_from":"18196","_to":"24754"} +{"$label":"ACTS_IN","name":"Perikles","type":"Role","_key":"35904","_from":"18196","_to":"24382"} +{"$label":"ACTS_IN","name":"Krassky","type":"Role","_key":"32856","_from":"18196","_to":"22810"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"32848","_from":"18196","_to":"22804"} +{"$label":"ACTS_IN","name":"Joe, the Hustler","type":"Role","_key":"32842","_from":"18196","_to":"22799"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"26830","_from":"18199","_to":"19278"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"98218","_from":"18201","_to":"57854"} +{"$label":"ACTS_IN","name":"Himself (Professor Nir Shaviv)","type":"Role","_key":"25230","_from":"18206","_to":"18203"} +{"$label":"ACTS_IN","name":"Himself (Professor Tim Ball)","type":"Role","_key":"25229","_from":"18205","_to":"18203"} +{"$label":"DIRECTED","_key":"25228","_from":"18204","_to":"18203"} +{"$label":"ACTS_IN","name":"Mr. Finkle","type":"Role","_key":"25242","_from":"18210","_to":"18207"} +{"$label":"ACTS_IN","name":"Aguado","type":"Role","_key":"25241","_from":"18209","_to":"18207"} +{"$label":"ACTS_IN","name":"Roger Podacter","type":"Role","_key":"25237","_from":"18208","_to":"18207"} +{"$label":"ACTS_IN","name":"Sheriff Baker","type":"Role","_key":"94991","_from":"18208","_to":"55928"} +{"$label":"ACTS_IN","name":"Sheriff Walt Perry","type":"Role","_key":"65728","_from":"18208","_to":"40696"} +{"$label":"ACTS_IN","name":"Chief Ted Green","type":"Role","_key":"55477","_from":"18208","_to":"35352"} +{"$label":"ACTS_IN","name":"Sipio","type":"Role","_key":"93416","_from":"18209","_to":"55011"} +{"$label":"ACTS_IN","name":"Joey Vitello Sr.","type":"Role","_key":"45461","_from":"18209","_to":"30120"} +{"$label":"DIRECTED","_key":"25256","_from":"18217","_to":"18211"} +{"$label":"ACTS_IN","name":"Charisse Dolittle","type":"Role","_key":"25255","_from":"18216","_to":"18211"} +{"$label":"ACTS_IN","name":"Dr. Sam Litvack","type":"Role","_key":"25254","_from":"18215","_to":"18211"} +{"$label":"ACTS_IN","name":"Maya Dolittle","type":"Role","_key":"25252","_from":"18214","_to":"18211"} +{"$label":"ACTS_IN","name":"Lisa Dolittle","type":"Role","_key":"25251","_from":"18213","_to":"18211"} +{"$label":"ACTS_IN","name":"Dr. Gene Reiss","type":"Role","_key":"25250","_from":"18212","_to":"18211"} +{"$label":"ACTS_IN","name":"Carl Simons","type":"Role","_key":"121009","_from":"18212","_to":"71073"} +{"$label":"ACTS_IN","name":"Marvin","type":"Role","_key":"109118","_from":"18212","_to":"64469"} +{"$label":"ACTS_IN","name":"Col. \/ Brig. Gen. Robert Laurel Smith","type":"Role","_key":"100272","_from":"18212","_to":"59133"} +{"$label":"ACTS_IN","name":"FBI Agent Tom Hilary","type":"Role","_key":"98244","_from":"18212","_to":"57875"} +{"$label":"ACTS_IN","name":"Jerry Green","type":"Role","_key":"65761","_from":"18212","_to":"40707"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"63988","_from":"18212","_to":"39957"} +{"$label":"ACTS_IN","name":"Lefkowitz","type":"Role","_key":"36028","_from":"18212","_to":"24460"} +{"$label":"ACTS_IN","name":"Lisa Dolittle","type":"Role","_key":"117712","_from":"18213","_to":"69192"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"99758","_from":"18213","_to":"58829"} +{"$label":"ACTS_IN","name":"Michelle Vaughn","type":"Role","_key":"69387","_from":"18213","_to":"42416"} +{"$label":"ACTS_IN","name":"Lisa Dolittle","type":"Role","_key":"65923","_from":"18213","_to":"40778"} +{"$label":"ACTS_IN","name":"Maya Dolittle","type":"Role","_key":"119483","_from":"18214","_to":"70191"} +{"$label":"ACTS_IN","name":"Maya Dolittle","type":"Role","_key":"117711","_from":"18214","_to":"69192"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"103536","_from":"18214","_to":"60904"} +{"$label":"ACTS_IN","name":"Young Monica","type":"Role","_key":"101553","_from":"18214","_to":"59773"} +{"$label":"ACTS_IN","name":"Maya Dolittle","type":"Role","_key":"65925","_from":"18214","_to":"40778"} +{"$label":"ACTS_IN","name":"Melanie Porter","type":"Role","_key":"94811","_from":"18216","_to":"55837"} +{"$label":"ACTS_IN","name":"Iridessa","type":"Role","_key":"93204","_from":"18216","_to":"54917"} +{"$label":"ACTS_IN","name":"Stymie's Girlfriend","type":"Role","_key":"66537","_from":"18216","_to":"41127"} +{"$label":"ACTS_IN","name":"Charisse Dolittle","type":"Role","_key":"65924","_from":"18216","_to":"40778"} +{"$label":"DIRECTED","_key":"63498","_from":"18217","_to":"39760"} +{"$label":"DIRECTED","_key":"53658","_from":"18217","_to":"34610"} +{"$label":"DIRECTED","_key":"52944","_from":"18217","_to":"34304"} +{"$label":"DIRECTED","_key":"52378","_from":"18217","_to":"34084"} +{"$label":"DIRECTED","_key":"49664","_from":"18217","_to":"32497"} +{"$label":"ACTS_IN","name":"Jean-Claude Ibert","type":"Role","_key":"25263","_from":"18219","_to":"18218"} +{"$label":"ACTS_IN","name":"Devon Miles","type":"Role","_key":"66990","_from":"18219","_to":"41357"} +{"$label":"ACTS_IN","name":"Shagal","type":"Role","_key":"25278","_from":"18224","_to":"18221"} +{"$label":"ACTS_IN","name":"Graf von Krolock","type":"Role","_key":"25277","_from":"18223","_to":"18221"} +{"$label":"ACTS_IN","name":"Herbert von Krolock","type":"Role","_key":"25276","_from":"18222","_to":"18221"} +{"$label":"ACTS_IN","name":"Christopher","type":"Role","_key":"33919","_from":"18222","_to":"23357"} +{"$label":"ACTS_IN","name":"MacFarrell","type":"Role","_key":"71615","_from":"18223","_to":"43374"} +{"$label":"ACTS_IN","name":"Fernet","type":"Role","_key":"41624","_from":"18224","_to":"27943"} +{"$label":"ACTS_IN","name":"Jerry Cruncher","type":"Role","_key":"33466","_from":"18224","_to":"23156"} +{"$label":"ACTS_IN","name":"Carrell","type":"Role","_key":"31802","_from":"18224","_to":"22194"} +{"$label":"ACTS_IN","name":"Lola Medina","type":"Role","_key":"25286","_from":"18229","_to":"18225"} +{"$label":"ACTS_IN","name":"Contini","type":"Role","_key":"25285","_from":"18228","_to":"18225"} +{"$label":"ACTS_IN","name":"Yu-Rang","type":"Role","_key":"25284","_from":"18227","_to":"18225"} +{"$label":"DIRECTED","_key":"25280","_from":"18226","_to":"18225"} +{"$label":"DIRECTED","_key":"117105","_from":"18226","_to":"68902"} +{"$label":"DIRECTED","_key":"35048","_from":"18226","_to":"23910"} +{"$label":"ACTS_IN","name":"Gussie Yang","type":"Role","_key":"63185","_from":"18227","_to":"39629"} +{"$label":"ACTS_IN","name":"Dalby","type":"Role","_key":"103679","_from":"18228","_to":"60984"} +{"$label":"ACTS_IN","name":"Colour Sgt. Frank Bourne","type":"Role","_key":"100244","_from":"18228","_to":"59121"} +{"$label":"ACTS_IN","name":"Carl Petersen","type":"Role","_key":"35703","_from":"18228","_to":"24260"} +{"$label":"ACTS_IN","name":"Sir Nyland Smith","type":"Role","_key":"27377","_from":"18228","_to":"19673"} +{"$label":"ACTS_IN","name":"Helen Lawson","type":"Role","_key":"25294","_from":"18234","_to":"18230"} +{"$label":"ACTS_IN","name":"Miriam Polar","type":"Role","_key":"25293","_from":"18233","_to":"18230"} +{"$label":"ACTS_IN","name":"Tony Polar","type":"Role","_key":"25292","_from":"18232","_to":"18230"} +{"$label":"ACTS_IN","name":"Anne Welles","type":"Role","_key":"25288","_from":"18231","_to":"18230"} +{"$label":"ACTS_IN","name":"Lena Foster","type":"Role","_key":"88584","_from":"18233","_to":"52494"} +{"$label":"ACTS_IN","name":"Ann Thorn","type":"Role","_key":"65641","_from":"18233","_to":"40672"} +{"$label":"ACTS_IN","name":"Mrs. Leslie Colbert","type":"Role","_key":"64729","_from":"18233","_to":"40299"} +{"$label":"ACTS_IN","name":"Karen Wallace","type":"Role","_key":"46012","_from":"18233","_to":"30412"} +{"$label":"ACTS_IN","name":"Katie O'Neill","type":"Role","_key":"113424","_from":"18234","_to":"66828"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"31853","_from":"18234","_to":"22230"} +{"$label":"ACTS_IN","name":"Detec. Frye","type":"Role","_key":"25305","_from":"18240","_to":"18235"} +{"$label":"ACTS_IN","name":"Kathleen Burke","type":"Role","_key":"25304","_from":"18239","_to":"18235"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"25303","_from":"18238","_to":"18235"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"25302","_from":"18237","_to":"18235"} +{"$label":"ACTS_IN","name":"Erika Helios","type":"Role","_key":"25300","_from":"18236","_to":"18235"} +{"$label":"ACTS_IN","name":"Jean Raynor","type":"Role","_key":"104334","_from":"18236","_to":"61383"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"98719","_from":"18236","_to":"58173"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"93198","_from":"18236","_to":"54916"} +{"$label":"ACTS_IN","name":"Mila Yugorsky","type":"Role","_key":"46395","_from":"18236","_to":"30650"} +{"$label":"ACTS_IN","name":"Desk Nurse","type":"Role","_key":"57955","_from":"18239","_to":"36665"} +{"$label":"ACTS_IN","name":"Officer Thornhill","type":"Role","_key":"116614","_from":"18240","_to":"68642"} +{"$label":"ACTS_IN","name":"Bill Stevens","type":"Role","_key":"101173","_from":"18240","_to":"59602"} +{"$label":"ACTS_IN","name":"George McCarty","type":"Role","_key":"58061","_from":"18240","_to":"36729"} +{"$label":"ACTS_IN","name":"Leutnant","type":"Role","_key":"25314","_from":"18246","_to":"18241"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"25311","_from":"18245","_to":"18241"} +{"$label":"ACTS_IN","name":"Elizabeth Frankenstein","type":"Role","_key":"25310","_from":"18244","_to":"18241"} +{"$label":"ACTS_IN","name":"The Creature","type":"Role","_key":"25307","_from":"18243","_to":"18241"} +{"$label":"DIRECTED","_key":"25306","_from":"18242","_to":"18241"} +{"$label":"DIRECTED","_key":"115915","_from":"18242","_to":"68234"} +{"$label":"ACTS_IN","name":"Stephen Weaks","type":"Role","_key":"104963","_from":"18243","_to":"61762"} +{"$label":"ACTS_IN","name":"Kale","type":"Role","_key":"104383","_from":"18243","_to":"61407"} +{"$label":"ACTS_IN","name":"King Xerxes","type":"Role","_key":"102677","_from":"18243","_to":"60410"} +{"$label":"ACTS_IN","name":"John Dresham","type":"Role","_key":"96092","_from":"18243","_to":"56483"} +{"$label":"ACTS_IN","name":"Prince Nuada","type":"Role","_key":"68821","_from":"18243","_to":"42165"} +{"$label":"ACTS_IN","name":"Joey \/ Kane","type":"Role","_key":"52408","_from":"18243","_to":"34102"} +{"$label":"ACTS_IN","name":"The Creator ( voice )","type":"Role","_key":"25316","_from":"18249","_to":"18247"} +{"$label":"DIRECTED","_key":"25315","_from":"18248","_to":"18247"} +{"$label":"ACTS_IN","name":"King Nabonidus (Babylonian Story)","type":"Role","_key":"25335","_from":"18262","_to":"18250"} +{"$label":"ACTS_IN","name":"Princess Beloved (Attarea) (Babylonian Story)","type":"Role","_key":"25334","_from":"18261","_to":"18250"} +{"$label":"ACTS_IN","name":"Prince Belshazzar (Babylonian Story)","type":"Role","_key":"25333","_from":"18260","_to":"18250"} +{"$label":"ACTS_IN","name":"Brown Eyes' Mother (French Story)","type":"Role","_key":"25331","_from":"18259","_to":"18250"} +{"$label":"ACTS_IN","name":"Brown Eyes (French Story)","type":"Role","_key":"25328","_from":"18258","_to":"18250"} +{"$label":"ACTS_IN","name":"First Pharisee (Judean Story)","type":"Role","_key":"25326","_from":"18257","_to":"18250"} +{"$label":"ACTS_IN","name":"Mary Magdalene (Judean Story)","type":"Role","_key":"25325","_from":"18256","_to":"18250"} +{"$label":"ACTS_IN","name":"Mary, the Mother (Judean Story)","type":"Role","_key":"25324","_from":"18255","_to":"18250"} +{"$label":"ACTS_IN","name":"Mary T. Jenkins (Modern Story)","type":"Role","_key":"25323","_from":"18254","_to":"18250"} +{"$label":"ACTS_IN","name":"Arthur Jenkins (Modern Story)","type":"Role","_key":"25322","_from":"18253","_to":"18250"} +{"$label":"ACTS_IN","name":"The Girl's Father (Modern Story)","type":"Role","_key":"25321","_from":"18252","_to":"18250"} +{"$label":"ACTS_IN","name":"The Boy (Modern Story)","type":"Role","_key":"25320","_from":"18251","_to":"18250"} +{"$label":"ACTS_IN","name":"Miss Sweetman","type":"Role","_key":"28019","_from":"18254","_to":"20085"} +{"$label":"ACTS_IN","name":"Justine Devereux","type":"Role","_key":"25348","_from":"18274","_to":"18263"} +{"$label":"ACTS_IN","name":"Melisande's mother","type":"Role","_key":"25347","_from":"18273","_to":"18263"} +{"$label":"ACTS_IN","name":"Miss Apperson","type":"Role","_key":"25346","_from":"18272","_to":"18263"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"25345","_from":"18271","_to":"18263"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"25344","_from":"18270","_to":"18263"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"25343","_from":"18269","_to":"18263"} +{"$label":"ACTS_IN","name":"Justyn Reed","type":"Role","_key":"25342","_from":"18268","_to":"18263"} +{"$label":"ACTS_IN","name":"Mrs. Apperson","type":"Role","_key":"25341","_from":"18267","_to":"18263"} +{"$label":"ACTS_IN","name":"Melisande","type":"Role","_key":"25339","_from":"18266","_to":"18263"} +{"$label":"ACTS_IN","name":"James Apperson","type":"Role","_key":"25338","_from":"18265","_to":"18263"} +{"$label":"DIRECTED","_key":"25337","_from":"18264","_to":"18263"} +{"$label":"ACTS_IN","name":"Bobby McSwain","type":"Role","_key":"67394","_from":"18270","_to":"41521"} +{"$label":"ACTS_IN","name":"Lieutenant Jacobs","type":"Role","_key":"60801","_from":"18270","_to":"38408"} +{"$label":"ACTS_IN","name":"Daughter","type":"Role","_key":"25357","_from":"18283","_to":"18275"} +{"$label":"ACTS_IN","name":"'Junior' (John Sims Jr.)","type":"Role","_key":"25356","_from":"18282","_to":"18275"} +{"$label":"ACTS_IN","name":"Mary's Mother","type":"Role","_key":"25355","_from":"18281","_to":"18275"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"25354","_from":"18280","_to":"18275"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"25353","_from":"18279","_to":"18275"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"25352","_from":"18278","_to":"18275"} +{"$label":"ACTS_IN","name":"John 'Johnny' Sims","type":"Role","_key":"25351","_from":"18277","_to":"18275"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"25350","_from":"18276","_to":"18275"} +{"$label":"ACTS_IN","name":"Dick Dewy","type":"Role","_key":"114883","_from":"18277","_to":"67663"} +{"$label":"ACTS_IN","name":"Aunt Alvira","type":"Role","_key":"109584","_from":"18281","_to":"64724"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"25370","_from":"18293","_to":"18284"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"25369","_from":"18292","_to":"18284"} +{"$label":"ACTS_IN","name":"Mac Elroy","type":"Role","_key":"25368","_from":"18291","_to":"18284"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"25366","_from":"18290","_to":"18284"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"25365","_from":"18289","_to":"18284"} +{"$label":"ACTS_IN","name":"Abner Dillon","type":"Role","_key":"25363","_from":"18288","_to":"18284"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"25362","_from":"18287","_to":"18284"} +{"$label":"ACTS_IN","name":"Dorothy Brock","type":"Role","_key":"25360","_from":"18286","_to":"18284"} +{"$label":"ACTS_IN","name":"Julian Marsh","type":"Role","_key":"25359","_from":"18285","_to":"18284"} +{"$label":"ACTS_IN","name":"Hagthorpe","type":"Role","_key":"110428","_from":"18288","_to":"65236"} +{"$label":"ACTS_IN","name":"Gov. Hubert 'Happy' Hopper","type":"Role","_key":"25583","_from":"18288","_to":"18430"} +{"$label":"ACTS_IN","name":"Irene Castle nee Foote","type":"Role","_key":"116956","_from":"18289","_to":"68844"} +{"$label":"ACTS_IN","name":"Dale Tremont","type":"Role","_key":"25544","_from":"18289","_to":"18404"} +{"$label":"ACTS_IN","name":"Okay","type":"Role","_key":"114206","_from":"18291","_to":"67273"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"35083","_from":"18291","_to":"23921"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"29663","_from":"18291","_to":"20995"} +{"$label":"ACTS_IN","name":"Lemonade Vendor","type":"Role","_key":"25383","_from":"18304","_to":"18294"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"25382","_from":"18303","_to":"18294"} +{"$label":"ACTS_IN","name":"Zander","type":"Role","_key":"25380","_from":"18302","_to":"18294"} +{"$label":"ACTS_IN","name":"Vera Marcal","type":"Role","_key":"25378","_from":"18301","_to":"18294"} +{"$label":"ACTS_IN","name":"Mrs. Gloria Teasdale","type":"Role","_key":"25377","_from":"18300","_to":"18294"} +{"$label":"ACTS_IN","name":"Lt. Bob Roland","type":"Role","_key":"25376","_from":"18299","_to":"18294"} +{"$label":"ACTS_IN","name":"Chicolini","type":"Role","_key":"25375","_from":"18298","_to":"18294"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"25374","_from":"18297","_to":"18294"} +{"$label":"ACTS_IN","name":"Rufus T. Firefly","type":"Role","_key":"25373","_from":"18296","_to":"18294"} +{"$label":"DIRECTED","_key":"25372","_from":"18295","_to":"18294"} +{"$label":"DIRECTED","_key":"113509","_from":"18295","_to":"66879"} +{"$label":"DIRECTED","_key":"101414","_from":"18295","_to":"59697"} +{"$label":"DIRECTED","_key":"49274","_from":"18295","_to":"32271"} +{"$label":"ACTS_IN","name":"Gordon Miller","type":"Role","_key":"106418","_from":"18296","_to":"62696"} +{"$label":"ACTS_IN","name":"Captain Jeffrey T. Spaulding","type":"Role","_key":"97422","_from":"18296","_to":"57370"} +{"$label":"ACTS_IN","name":"Prof. Quincy Adams Wagstaff","type":"Role","_key":"97416","_from":"18296","_to":"57368"} +{"$label":"ACTS_IN","name":"Groucho","type":"Role","_key":"97407","_from":"18296","_to":"57362"} +{"$label":"ACTS_IN","name":"Dr. Hugo Z. Hackenbush","type":"Role","_key":"72858","_from":"18296","_to":"43887"} +{"$label":"ACTS_IN","name":"Faker Englund","type":"Role","_key":"106420","_from":"18297","_to":"62696"} +{"$label":"ACTS_IN","name":"The Professor","type":"Role","_key":"97423","_from":"18297","_to":"57370"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"97417","_from":"18297","_to":"57368"} +{"$label":"ACTS_IN","name":"Harpo","type":"Role","_key":"97408","_from":"18297","_to":"57362"} +{"$label":"ACTS_IN","name":"Stuffy","type":"Role","_key":"72860","_from":"18297","_to":"43887"} +{"$label":"ACTS_IN","name":"Harry Binelli","type":"Role","_key":"106419","_from":"18298","_to":"62696"} +{"$label":"ACTS_IN","name":"Signor Emanuel Ravelli","type":"Role","_key":"97424","_from":"18298","_to":"57370"} +{"$label":"ACTS_IN","name":"Baravelli","type":"Role","_key":"97418","_from":"18298","_to":"57368"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"97409","_from":"18298","_to":"57362"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"72859","_from":"18298","_to":"43887"} +{"$label":"ACTS_IN","name":"Horatio Jamison","type":"Role","_key":"97425","_from":"18299","_to":"57370"} +{"$label":"ACTS_IN","name":"Frank Wagstaff","type":"Role","_key":"97419","_from":"18299","_to":"57368"} +{"$label":"ACTS_IN","name":"Zeppo","type":"Role","_key":"97410","_from":"18299","_to":"57362"} +{"$label":"ACTS_IN","name":"Mrs. Rittenhouse","type":"Role","_key":"97427","_from":"18300","_to":"57370"} +{"$label":"ACTS_IN","name":"Emily Upjohn","type":"Role","_key":"72863","_from":"18300","_to":"43887"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"37616","_from":"18302","_to":"25499"} +{"$label":"ACTS_IN","name":"Kaiser Ming","type":"Role","_key":"28371","_from":"18303","_to":"20299"} +{"$label":"ACTS_IN","name":"Dr. Glenn","type":"Role","_key":"29042","_from":"18304","_to":"20712"} +{"$label":"ACTS_IN","name":"Insp. Mulrooney","type":"Role","_key":"28197","_from":"18304","_to":"20193"} +{"$label":"DIRECTED","_key":"25397","_from":"18309","_to":"18306"} +{"$label":"ACTS_IN","name":"Benkitnorf","type":"Role","_key":"25396","_from":"18311","_to":"18306"} +{"$label":"ACTS_IN","name":"Tom Servo","type":"Role","_key":"25395","_from":"18310","_to":"18306"} +{"$label":"ACTS_IN","name":"Gypsy","type":"Role","_key":"25394","_from":"18309","_to":"18306"} +{"$label":"ACTS_IN","name":"Mike Nelson","type":"Role","_key":"25393","_from":"18308","_to":"18306"} +{"$label":"ACTS_IN","name":"Dr. Clayton Forrester","type":"Role","_key":"25392","_from":"18307","_to":"18306"} +{"$label":"ACTS_IN","name":"Police Detectiv ( voice )","type":"Role","_key":"25404","_from":"18318","_to":"18312"} +{"$label":"ACTS_IN","name":"Philip ( voice )","type":"Role","_key":"25403","_from":"18317","_to":"18312"} +{"$label":"ACTS_IN","name":"Zuckell ( voice )","type":"Role","_key":"25402","_from":"18316","_to":"18312"} +{"$label":"ACTS_IN","name":"Victor Frankenstein ( Voice )","type":"Role","_key":"25400","_from":"18315","_to":"18312"} +{"$label":"ACTS_IN","name":"Furankenshutain ( voice )","type":"Role","_key":"25399","_from":"18314","_to":"18312"} +{"$label":"DIRECTED","_key":"25398","_from":"18313","_to":"18312"} +{"$label":"ACTS_IN","name":"Admiral Rick Hunter","type":"Role","_key":"108903","_from":"18317","_to":"64360"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"25412","_from":"18323","_to":"18319"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"25411","_from":"18322","_to":"18319"} +{"$label":"ACTS_IN","name":"Assistent von Frankenstein","type":"Role","_key":"25409","_from":"18321","_to":"18319"} +{"$label":"DIRECTED","_key":"25405","_from":"18320","_to":"18319"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"34683","_from":"18321","_to":"23728"} +{"$label":"ACTS_IN","name":"Amanda Brewis","type":"Role","_key":"41679","_from":"18322","_to":"27972"} +{"$label":"ACTS_IN","name":"Dick Madsen","type":"Role","_key":"119111","_from":"18323","_to":"70011"} +{"$label":"ACTS_IN","name":"General Sir Henry Simmerson","type":"Role","_key":"92019","_from":"18323","_to":"54290"} +{"$label":"ACTS_IN","name":"William Frankenstein","type":"Role","_key":"25426","_from":"18335","_to":"18324"} +{"$label":"ACTS_IN","name":"Felix de Lacey","type":"Role","_key":"25425","_from":"18334","_to":"18324"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"25424","_from":"18333","_to":"18324"} +{"$label":"ACTS_IN","name":"Otto Roget","type":"Role","_key":"25423","_from":"18332","_to":"18324"} +{"$label":"ACTS_IN","name":"Charles de Lacey","type":"Role","_key":"25421","_from":"18331","_to":"18324"} +{"$label":"ACTS_IN","name":"Henri Clerval","type":"Role","_key":"25420","_from":"18330","_to":"18324"} +{"$label":"ACTS_IN","name":"Alphonse Frankenstein","type":"Role","_key":"25419","_from":"18329","_to":"18324"} +{"$label":"ACTS_IN","name":"Agatha de Lacey","type":"Role","_key":"25418","_from":"18328","_to":"18324"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"25417","_from":"18327","_to":"18324"} +{"$label":"ACTS_IN","name":"Elizabeth Lavenza","type":"Role","_key":"25416","_from":"18326","_to":"18324"} +{"$label":"DIRECTED","_key":"25414","_from":"18325","_to":"18324"} +{"$label":"DIRECTED","_key":"105754","_from":"18325","_to":"62251"} +{"$label":"DIRECTED","_key":"32012","_from":"18325","_to":"22303"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"64951","_from":"18326","_to":"40377"} +{"$label":"ACTS_IN","name":"Axel Olsson","type":"Role","_key":"121065","_from":"18327","_to":"71097"} +{"$label":"ACTS_IN","name":"Kor","type":"Role","_key":"46069","_from":"18327","_to":"30431"} +{"$label":"ACTS_IN","name":"Rev. George Goodnight","type":"Role","_key":"112884","_from":"18331","_to":"66629"} +{"$label":"ACTS_IN","name":"Bob Russell","type":"Role","_key":"98765","_from":"18332","_to":"58201"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96519","_from":"18335","_to":"56725"} +{"$label":"ACTS_IN","name":"Jessica Halverson","type":"Role","_key":"25436","_from":"18346","_to":"18336"} +{"$label":"ACTS_IN","name":"Rebekkah Clarke","type":"Role","_key":"25435","_from":"18345","_to":"18336"} +{"$label":"ACTS_IN","name":"Dr. Emily Hertz","type":"Role","_key":"25434","_from":"18344","_to":"18336"} +{"$label":"ACTS_IN","name":"Elizabeth Weatherly","type":"Role","_key":"25433","_from":"18343","_to":"18336"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"25432","_from":"18342","_to":"18336"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"25431","_from":"18341","_to":"18336"} +{"$label":"ACTS_IN","name":"Hank Clerval","type":"Role","_key":"25430","_from":"18340","_to":"18336"} +{"$label":"ACTS_IN","name":"Robert Walton","type":"Role","_key":"25429","_from":"18339","_to":"18336"} +{"$label":"ACTS_IN","name":"Victor Franks","type":"Role","_key":"25428","_from":"18338","_to":"18336"} +{"$label":"DIRECTED","_key":"25427","_from":"18337","_to":"18336"} +{"$label":"ACTS_IN","name":"Scholar","type":"Role","_key":"97340","_from":"18338","_to":"57319"} +{"$label":"ACTS_IN","name":"Pernell","type":"Role","_key":"93672","_from":"18338","_to":"55145"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26907","_from":"18340","_to":"19348"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26906","_from":"18344","_to":"19348"} +{"$label":"DIRECTED","_key":"25437","_from":"18348","_to":"18347"} +{"$label":"ACTS_IN","name":"Vicar","type":"Role","_key":"25448","_from":"18355","_to":"18349"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"25447","_from":"18354","_to":"18349"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"25446","_from":"18353","_to":"18349"} +{"$label":"ACTS_IN","name":"Connoly","type":"Role","_key":"25445","_from":"18352","_to":"18349"} +{"$label":"ACTS_IN","name":"ITU Nurse","type":"Role","_key":"25444","_from":"18351","_to":"18349"} +{"$label":"DIRECTED","_key":"25439","_from":"18350","_to":"18349"} +{"$label":"ACTS_IN","name":"O'Hare","type":"Role","_key":"103059","_from":"18352","_to":"60626"} +{"$label":"ACTS_IN","name":"Xavier","type":"Role","_key":"108972","_from":"18354","_to":"64395"} +{"$label":"ACTS_IN","name":"Justine Moritz","type":"Role","_key":"25456","_from":"18360","_to":"18356"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"25455","_from":"18359","_to":"18356"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"25453","_from":"18358","_to":"18356"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"25452","_from":"18357","_to":"18356"} +{"$label":"ACTS_IN","name":"Adrian Lehder","type":"Role","_key":"98935","_from":"18357","_to":"58290"} +{"$label":"ACTS_IN","name":"Carl Farrell","type":"Role","_key":"64056","_from":"18357","_to":"39982"} +{"$label":"ACTS_IN","name":"Dr. Sandra Mornay","type":"Role","_key":"25468","_from":"18369","_to":"18361"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"25467","_from":"18368","_to":"18361"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"25466","_from":"18367","_to":"18361"} +{"$label":"ACTS_IN","name":"Dr. Stevens","type":"Role","_key":"25465","_from":"18366","_to":"18361"} +{"$label":"ACTS_IN","name":"Mr. McDougal","type":"Role","_key":"25464","_from":"18365","_to":"18361"} +{"$label":"ACTS_IN","name":"Jean Raymond","type":"Role","_key":"25463","_from":"18364","_to":"18361"} +{"$label":"ACTS_IN","name":"The Frankenstein Monster","type":"Role","_key":"25462","_from":"18363","_to":"18361"} +{"$label":"DIRECTED","_key":"25457","_from":"18362","_to":"18361"} +{"$label":"ACTS_IN","name":"Albert Baker","type":"Role","_key":"109912","_from":"18365","_to":"64940"} +{"$label":"ACTS_IN","name":"Frone","type":"Role","_key":"25483","_from":"18376","_to":"18370"} +{"$label":"ACTS_IN","name":"Hussman","type":"Role","_key":"25479","_from":"18375","_to":"18370"} +{"$label":"ACTS_IN","name":"Chief Constable","type":"Role","_key":"25478","_from":"18374","_to":"18370"} +{"$label":"ACTS_IN","name":"Elsa Frankenstein","type":"Role","_key":"25477","_from":"18373","_to":"18370"} +{"$label":"ACTS_IN","name":"Dr. Kettering","type":"Role","_key":"25474","_from":"18372","_to":"18370"} +{"$label":"ACTS_IN","name":"Cloestine","type":"Role","_key":"25473","_from":"18371","_to":"18370"} +{"$label":"ACTS_IN","name":"Gwen Conliffe","type":"Role","_key":"95764","_from":"18373","_to":"56328"} +{"$label":"ACTS_IN","name":"Captain Bert Hawkins","type":"Role","_key":"117194","_from":"18374","_to":"68941"} +{"$label":"ACTS_IN","name":"Lionel Bates","type":"Role","_key":"117551","_from":"18375","_to":"69113"} +{"$label":"ACTS_IN","name":"Villager","type":"Role","_key":"95770","_from":"18375","_to":"56328"} +{"$label":"ACTS_IN","name":"Dr. Petrie","type":"Role","_key":"27468","_from":"18375","_to":"19714"} +{"$label":"ACTS_IN","name":"Dr. Petrie","type":"Role","_key":"27445","_from":"18375","_to":"19700"} +{"$label":"ACTS_IN","name":"Kent","type":"Role","_key":"110441","_from":"18376","_to":"65236"} +{"$label":"ACTS_IN","name":"Wykes","type":"Role","_key":"95768","_from":"18376","_to":"56328"} +{"$label":"ACTS_IN","name":"Polizeiarzt","type":"Role","_key":"25496","_from":"18380","_to":"18377"} +{"$label":"ACTS_IN","name":"Ella Brandt","type":"Role","_key":"25495","_from":"18379","_to":"18377"} +{"$label":"ACTS_IN","name":"Anna Spengler","type":"Role","_key":"25491","_from":"18378","_to":"18377"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26671","_from":"18378","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26652","_from":"18378","_to":"19158"} +{"$label":"ACTS_IN","name":"Elizabeth Heiss","type":"Role","_key":"26270","_from":"18378","_to":"18865"} +{"$label":"ACTS_IN","name":"Mrs. Stephens","type":"Role","_key":"68290","_from":"18379","_to":"41924"} +{"$label":"ACTS_IN","name":"Mathilde Rosier","type":"Role","_key":"34887","_from":"18379","_to":"23838"} +{"$label":"ACTS_IN","name":"1st Agent","type":"Role","_key":"34582","_from":"18380","_to":"23672"} +{"$label":"ACTS_IN","name":"Guno","type":"Role","_key":"25507","_from":"18385","_to":"18381"} +{"$label":"ACTS_IN","name":"Franzec","type":"Role","_key":"25504","_from":"18384","_to":"18381"} +{"$label":"ACTS_IN","name":"Dr. Mannering","type":"Role","_key":"25499","_from":"18383","_to":"18381"} +{"$label":"ACTS_IN","name":"Baroness Elsa Frankenstein","type":"Role","_key":"25498","_from":"18382","_to":"18381"} +{"$label":"ACTS_IN","name":"Jim Fiske","type":"Role","_key":"121738","_from":"18383","_to":"71516"} +{"$label":"ACTS_IN","name":"Lindsay Woolsey","type":"Role","_key":"108829","_from":"18383","_to":"64318"} +{"$label":"ACTS_IN","name":"Dudley Horn, Lois' Fiance","type":"Role","_key":"100965","_from":"18383","_to":"59504"} +{"$label":"ACTS_IN","name":"Frank Andrews","type":"Role","_key":"95762","_from":"18383","_to":"56328"} +{"$label":"ACTS_IN","name":"Will Scarlett","type":"Role","_key":"66630","_from":"18383","_to":"41182"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"29097","_from":"18384","_to":"20731"} +{"$label":"ACTS_IN","name":"Mrs. Neum\u00fcller","type":"Role","_key":"25522","_from":"18390","_to":"18386"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"25518","_from":"18389","_to":"18386"} +{"$label":"ACTS_IN","name":"Peter von Frankenstein","type":"Role","_key":"25515","_from":"18388","_to":"18386"} +{"$label":"DIRECTED","_key":"25509","_from":"18387","_to":"18386"} +{"$label":"ACTS_IN","name":"Young Bambi (Voice)","type":"Role","_key":"26468","_from":"18388","_to":"19021"} +{"$label":"ACTS_IN","name":"Joe Gordon","type":"Role","_key":"25532","_from":"18397","_to":"18391"} +{"$label":"ACTS_IN","name":"Zeke's wife","type":"Role","_key":"25531","_from":"18396","_to":"18391"} +{"$label":"ACTS_IN","name":"King Westley","type":"Role","_key":"25528","_from":"18395","_to":"18391"} +{"$label":"ACTS_IN","name":"Oscar Shapeley","type":"Role","_key":"25527","_from":"18394","_to":"18391"} +{"$label":"ACTS_IN","name":"Alexander Andrews","type":"Role","_key":"25526","_from":"18393","_to":"18391"} +{"$label":"ACTS_IN","name":"Ellie Andrews","type":"Role","_key":"25525","_from":"18392","_to":"18391"} +{"$label":"ACTS_IN","name":"Lt Janet 'Davy' Davidson","type":"Role","_key":"113935","_from":"18392","_to":"67114"} +{"$label":"ACTS_IN","name":"Irish McGurn","type":"Role","_key":"110569","_from":"18394","_to":"65329"} +{"$label":"ACTS_IN","name":"Reporter McCue","type":"Role","_key":"25627","_from":"18394","_to":"18451"} +{"$label":"ACTS_IN","name":"Police Captain","type":"Role","_key":"109916","_from":"18397","_to":"64940"} +{"$label":"ACTS_IN","name":"Det. Kincaid","type":"Role","_key":"28018","_from":"18397","_to":"20085"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25541","_from":"18403","_to":"18398"} +{"$label":"ACTS_IN","name":"Aunt","type":"Role","_key":"25540","_from":"18402","_to":"18398"} +{"$label":"ACTS_IN","name":"Prof. Bernstein","type":"Role","_key":"25539","_from":"18401","_to":"18398"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"25538","_from":"18400","_to":"18398"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"25537","_from":"18399","_to":"18398"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"26678","_from":"18403","_to":"19167"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"26667","_from":"18403","_to":"19158"} +{"$label":"ACTS_IN","name":"Madge Hardwick","type":"Role","_key":"25548","_from":"18409","_to":"18404"} +{"$label":"ACTS_IN","name":"Bates","type":"Role","_key":"25547","_from":"18408","_to":"18404"} +{"$label":"ACTS_IN","name":"Alberto Beddini","type":"Role","_key":"25546","_from":"18407","_to":"18404"} +{"$label":"ACTS_IN","name":"Jerry Travers","type":"Role","_key":"25543","_from":"18406","_to":"18404"} +{"$label":"DIRECTED","_key":"25542","_from":"18405","_to":"18404"} +{"$label":"DIRECTED","_key":"113938","_from":"18405","_to":"67114"} +{"$label":"ACTS_IN","name":"Vernon Castle","type":"Role","_key":"116955","_from":"18406","_to":"68844"} +{"$label":"ACTS_IN","name":"Tom Bowen","type":"Role","_key":"116934","_from":"18406","_to":"68832"} +{"$label":"ACTS_IN","name":"Ted Hanover","type":"Role","_key":"94744","_from":"18406","_to":"55801"} +{"$label":"ACTS_IN","name":"S.D. Kluger (narrator)","type":"Role","_key":"94304","_from":"18406","_to":"55537"} +{"$label":"ACTS_IN","name":"Dick Avery","type":"Role","_key":"93932","_from":"18406","_to":"55315"} +{"$label":"ACTS_IN","name":"Sullivan's Valet","type":"Role","_key":"108587","_from":"18408","_to":"64167"} +{"$label":"ACTS_IN","name":"Sir Alfred McGlennan Keith","type":"Role","_key":"25645","_from":"18408","_to":"18462"} +{"$label":"DIRECTED","_key":"25558","_from":"18416","_to":"18410"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"25556","_from":"18415","_to":"18410"} +{"$label":"ACTS_IN","name":"Mrs. Laureen Faulkner","type":"Role","_key":"25554","_from":"18414","_to":"18410"} +{"$label":"ACTS_IN","name":"Alice Marie","type":"Role","_key":"25553","_from":"18413","_to":"18410"} +{"$label":"ACTS_IN","name":"Lester Brackman","type":"Role","_key":"25552","_from":"18412","_to":"18410"} +{"$label":"ACTS_IN","name":"Emily Ann Faulkner (Rita Shawn)","type":"Role","_key":"25549","_from":"18411","_to":"18410"} +{"$label":"ACTS_IN","name":"Big Mama","type":"Role","_key":"31205","_from":"18411","_to":"21839"} +{"$label":"ACTS_IN","name":"Lillian Farmer","type":"Role","_key":"27627","_from":"18411","_to":"19805"} +{"$label":"ACTS_IN","name":"Myra Savage","type":"Role","_key":"25718","_from":"18411","_to":"18504"} +{"$label":"ACTS_IN","name":"Det. Sgt. Paul Klein","type":"Role","_key":"111597","_from":"18412","_to":"65883"} +{"$label":"ACTS_IN","name":"Tanana","type":"Role","_key":"59378","_from":"18413","_to":"37511"} +{"$label":"DIRECTED","_key":"116686","_from":"18416","_to":"68689"} +{"$label":"ACTS_IN","name":"Billows' assistant","type":"Role","_key":"25577","_from":"18429","_to":"18417"} +{"$label":"ACTS_IN","name":"Woman with buttoned bosom","type":"Role","_key":"25576","_from":"18428","_to":"18417"} +{"$label":"ACTS_IN","name":"Turbine operator","type":"Role","_key":"25575","_from":"18427","_to":"18417"} +{"$label":"ACTS_IN","name":"Head waiter","type":"Role","_key":"25574","_from":"18426","_to":"18417"} +{"$label":"ACTS_IN","name":"Sheriff Couler","type":"Role","_key":"25573","_from":"18425","_to":"18417"} +{"$label":"ACTS_IN","name":"Juvenile officer","type":"Role","_key":"25572","_from":"18424","_to":"18417"} +{"$label":"ACTS_IN","name":"J. Widdecombe Billows","type":"Role","_key":"25571","_from":"18423","_to":"18417"} +{"$label":"ACTS_IN","name":"Minister's wife","type":"Role","_key":"25570","_from":"18422","_to":"18417"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"25569","_from":"18421","_to":"18417"} +{"$label":"ACTS_IN","name":"Cellmate","type":"Role","_key":"25568","_from":"18420","_to":"18417"} +{"$label":"ACTS_IN","name":"Gamin's father","type":"Role","_key":"25566","_from":"18419","_to":"18417"} +{"$label":"ACTS_IN","name":"Big Bill","type":"Role","_key":"25563","_from":"18418","_to":"18417"} +{"$label":"ACTS_IN","name":"Prince Barin","type":"Role","_key":"28374","_from":"18420","_to":"20299"} +{"$label":"ACTS_IN","name":"Susan Paine","type":"Role","_key":"25602","_from":"18443","_to":"18430"} +{"$label":"ACTS_IN","name":"Hopper boy","type":"Role","_key":"25599","_from":"18442","_to":"18430"} +{"$label":"ACTS_IN","name":"Hopper boy","type":"Role","_key":"25598","_from":"18441","_to":"18430"} +{"$label":"ACTS_IN","name":"Hopper boy","type":"Role","_key":"25597","_from":"18440","_to":"18430"} +{"$label":"ACTS_IN","name":"Jimmie Hopper","type":"Role","_key":"25596","_from":"18439","_to":"18430"} +{"$label":"ACTS_IN","name":"Peter Hopper","type":"Role","_key":"25595","_from":"18438","_to":"18430"} +{"$label":"ACTS_IN","name":"Carl Cook","type":"Role","_key":"25594","_from":"18437","_to":"18430"} +{"$label":"ACTS_IN","name":"Sen. Barnes","type":"Role","_key":"25591","_from":"18436","_to":"18430"} +{"$label":"ACTS_IN","name":"Sen. MacPherson","type":"Role","_key":"25589","_from":"18435","_to":"18430"} +{"$label":"ACTS_IN","name":"Emma Hopper","type":"Role","_key":"25588","_from":"18434","_to":"18430"} +{"$label":"ACTS_IN","name":"President of the Senate","type":"Role","_key":"25587","_from":"18433","_to":"18430"} +{"$label":"ACTS_IN","name":"Jim Taylor","type":"Role","_key":"25582","_from":"18432","_to":"18430"} +{"$label":"ACTS_IN","name":"Clarissa Saunders","type":"Role","_key":"25579","_from":"18431","_to":"18430"} +{"$label":"ACTS_IN","name":"Marian Starrett","type":"Role","_key":"26020","_from":"18431","_to":"18705"} +{"$label":"ACTS_IN","name":"(in \"Johnny Eager\") (archive footage)","type":"Role","_key":"53881","_from":"18432","_to":"34691"} +{"$label":"ACTS_IN","name":"Crew Chief","type":"Role","_key":"105997","_from":"18433","_to":"62406"} +{"$label":"ACTS_IN","name":"Mr. Melville","type":"Role","_key":"25694","_from":"18433","_to":"18490"} +{"$label":"ACTS_IN","name":"George Payne","type":"Role","_key":"116581","_from":"18435","_to":"68621"} +{"$label":"ACTS_IN","name":"Samuel Breckenridge","type":"Role","_key":"29277","_from":"18435","_to":"20805"} +{"$label":"ACTS_IN","name":"Samuel Breckenbridge","type":"Role","_key":"29246","_from":"18435","_to":"20794"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"27260","_from":"18436","_to":"19597"} +{"$label":"ACTS_IN","name":"Judge Crothers","type":"Role","_key":"95797","_from":"18437","_to":"56341"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29393","_from":"18442","_to":"20861"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29381","_from":"18442","_to":"20859"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29369","_from":"18442","_to":"20855"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29358","_from":"18442","_to":"20852"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29298","_from":"18442","_to":"20814"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29285","_from":"18442","_to":"20811"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29271","_from":"18442","_to":"20805"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"29252","_from":"18442","_to":"20796"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29242","_from":"18442","_to":"20794"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29230","_from":"18442","_to":"20793"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29211","_from":"18442","_to":"20787"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29199","_from":"18442","_to":"20783"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29187","_from":"18442","_to":"20782"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29140","_from":"18442","_to":"20757"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29119","_from":"18442","_to":"20744"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29102","_from":"18442","_to":"20737"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"29083","_from":"18442","_to":"20731"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"29071","_from":"18442","_to":"20726"} +{"$label":"ACTS_IN","name":"Alexander Bumstead","type":"Role","_key":"29060","_from":"18442","_to":"20721"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"29049","_from":"18442","_to":"20717"} +{"$label":"ACTS_IN","name":"Baby Dumpling Bumstead","type":"Role","_key":"29036","_from":"18442","_to":"20712"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"29021","_from":"18442","_to":"20709"} +{"$label":"ACTS_IN","name":"Baby Dumpling Bumstead","type":"Role","_key":"29010","_from":"18442","_to":"20706"} +{"$label":"ACTS_IN","name":"Baby Dumpling","type":"Role","_key":"28998","_from":"18442","_to":"20702"} +{"$label":"ACTS_IN","name":"Baby Bumstead","type":"Role","_key":"28952","_from":"18442","_to":"20682"} +{"$label":"ACTS_IN","name":"Baby Bumstead","type":"Role","_key":"28939","_from":"18442","_to":"20676"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"28924","_from":"18442","_to":"20670"} +{"$label":"ACTS_IN","name":"Alexander \" Baby \" Bumstead","type":"Role","_key":"28919","_from":"18442","_to":"20657"} +{"$label":"ACTS_IN","name":"Hindley, as a child","type":"Role","_key":"25618","_from":"18450","_to":"18444"} +{"$label":"ACTS_IN","name":"Heathcliff, as a child","type":"Role","_key":"25617","_from":"18449","_to":"18444"} +{"$label":"ACTS_IN","name":"Cathy, as a child","type":"Role","_key":"25616","_from":"18448","_to":"18444"} +{"$label":"ACTS_IN","name":"Hindley","type":"Role","_key":"25611","_from":"18447","_to":"18444"} +{"$label":"ACTS_IN","name":"Isabella Linton","type":"Role","_key":"25610","_from":"18446","_to":"18444"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"25605","_from":"18445","_to":"18444"} +{"$label":"ACTS_IN","name":"Mrs. Monahan","type":"Role","_key":"115994","_from":"18446","_to":"68313"} +{"$label":"ACTS_IN","name":"Martha Bach","type":"Role","_key":"95748","_from":"18446","_to":"56323"} +{"$label":"ACTS_IN","name":"Reporter Roy V. Bensinger","type":"Role","_key":"25638","_from":"18461","_to":"18451"} +{"$label":"ACTS_IN","name":"Warden Cooley","type":"Role","_key":"25636","_from":"18460","_to":"18451"} +{"$label":"ACTS_IN","name":"Mrs. Baldwin, Bruce's mother","type":"Role","_key":"25634","_from":"18459","_to":"18451"} +{"$label":"ACTS_IN","name":"Mollie Malloy","type":"Role","_key":"25632","_from":"18458","_to":"18451"} +{"$label":"ACTS_IN","name":"Duffy, copy editor","type":"Role","_key":"25631","_from":"18457","_to":"18451"} +{"$label":"ACTS_IN","name":"Louis 'Diamond Louie' Palutso","type":"Role","_key":"25630","_from":"18456","_to":"18451"} +{"$label":"ACTS_IN","name":"Reporter Wilson","type":"Role","_key":"25628","_from":"18455","_to":"18451"} +{"$label":"ACTS_IN","name":"Fred, the mayor","type":"Role","_key":"25626","_from":"18454","_to":"18451"} +{"$label":"ACTS_IN","name":"Sheriff Peter B.'Pinky' Hartwell","type":"Role","_key":"25623","_from":"18453","_to":"18451"} +{"$label":"ACTS_IN","name":"Hildegaard 'Hildy' Johnson","type":"Role","_key":"25621","_from":"18452","_to":"18451"} +{"$label":"ACTS_IN","name":"Mame Dennis","type":"Role","_key":"108823","_from":"18452","_to":"64318"} +{"$label":"ACTS_IN","name":"Laurita Dorsey","type":"Role","_key":"45595","_from":"18452","_to":"30182"} +{"$label":"ACTS_IN","name":"Ted Haines Snr.","type":"Role","_key":"113513","_from":"18453","_to":"66879"} +{"$label":"ACTS_IN","name":"Dr. Saunders","type":"Role","_key":"113458","_from":"18453","_to":"66843"} +{"$label":"ACTS_IN","name":"Judge Henry X. Harper","type":"Role","_key":"72530","_from":"18453","_to":"43748"} +{"$label":"ACTS_IN","name":"Clarence Percival \" C.P. \" Hazlip","type":"Role","_key":"28907","_from":"18453","_to":"20657"} +{"$label":"ACTS_IN","name":"J.T. Thorp","type":"Role","_key":"29234","_from":"18454","_to":"20793"} +{"$label":"ACTS_IN","name":"Sinkewicz","type":"Role","_key":"95795","_from":"18455","_to":"56341"} +{"$label":"ACTS_IN","name":"Tim Saunders","type":"Role","_key":"29401","_from":"18455","_to":"20861"} +{"$label":"ACTS_IN","name":"Ed Vance","type":"Role","_key":"29292","_from":"18455","_to":"20811"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29205","_from":"18455","_to":"20783"} +{"$label":"ACTS_IN","name":"Burt","type":"Role","_key":"121653","_from":"18457","_to":"71463"} +{"$label":"ACTS_IN","name":"Mr. Philpotts","type":"Role","_key":"29305","_from":"18457","_to":"20814"} +{"$label":"ACTS_IN","name":"Molly Byrd","type":"Role","_key":"28027","_from":"18459","_to":"20091"} +{"$label":"ACTS_IN","name":"Theodor Glassby","type":"Role","_key":"29215","_from":"18461","_to":"20787"} +{"$label":"ACTS_IN","name":"Emile, Pike's chef","type":"Role","_key":"25651","_from":"18468","_to":"18462"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"25650","_from":"18467","_to":"18462"} +{"$label":"ACTS_IN","name":"Burrows","type":"Role","_key":"25649","_from":"18466","_to":"18462"} +{"$label":"ACTS_IN","name":"Janet Pike","type":"Role","_key":"25648","_from":"18465","_to":"18462"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"25647","_from":"18464","_to":"18462"} +{"$label":"DIRECTED","_key":"25639","_from":"18463","_to":"18462"} +{"$label":"DIRECTED","_key":"108591","_from":"18463","_to":"64167"} +{"$label":"ACTS_IN","name":"Burroughs - Sullivan's Butler","type":"Role","_key":"108586","_from":"18466","_to":"64167"} +{"$label":"ACTS_IN","name":"Old Hebrew","type":"Role","_key":"44975","_from":"18468","_to":"29886"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"25670","_from":"18484","_to":"18469"} +{"$label":"ACTS_IN","name":"Josie Cohan, as a girl of 12","type":"Role","_key":"25669","_from":"18483","_to":"18469"} +{"$label":"ACTS_IN","name":"Madame Bartholdi","type":"Role","_key":"25668","_from":"18482","_to":"18469"} +{"$label":"ACTS_IN","name":"Goff","type":"Role","_key":"25667","_from":"18481","_to":"18469"} +{"$label":"ACTS_IN","name":"Albee","type":"Role","_key":"25666","_from":"18480","_to":"18469"} +{"$label":"ACTS_IN","name":"Eddie Foy","type":"Role","_key":"25665","_from":"18479","_to":"18469"} +{"$label":"ACTS_IN","name":"George M. Cohan, as a boy of 13","type":"Role","_key":"25664","_from":"18478","_to":"18469"} +{"$label":"ACTS_IN","name":"Erlanger","type":"Role","_key":"25662","_from":"18477","_to":"18469"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"25661","_from":"18476","_to":"18469"} +{"$label":"ACTS_IN","name":"Josie Cohan","type":"Role","_key":"25660","_from":"18475","_to":"18469"} +{"$label":"ACTS_IN","name":"Nellie Cohan","type":"Role","_key":"25659","_from":"18474","_to":"18469"} +{"$label":"ACTS_IN","name":"Dietz","type":"Role","_key":"25658","_from":"18473","_to":"18469"} +{"$label":"ACTS_IN","name":"Fay Templeton","type":"Role","_key":"25657","_from":"18472","_to":"18469"} +{"$label":"ACTS_IN","name":"Sam Harris","type":"Role","_key":"25656","_from":"18471","_to":"18469"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"25654","_from":"18470","_to":"18469"} +{"$label":"ACTS_IN","name":"Gracie Williams","type":"Role","_key":"109246","_from":"18470","_to":"64541"} +{"$label":"ACTS_IN","name":"Lorna Fleming","type":"Role","_key":"119994","_from":"18472","_to":"70472"} +{"$label":"ACTS_IN","name":"Petit","type":"Role","_key":"115436","_from":"18473","_to":"67969"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"111587","_from":"18473","_to":"65881"} +{"$label":"ACTS_IN","name":"Asst. Crew Chief","type":"Role","_key":"105998","_from":"18473","_to":"62406"} +{"$label":"ACTS_IN","name":"Alice Winfield","type":"Role","_key":"120500","_from":"18474","_to":"70781"} +{"$label":"ACTS_IN","name":"Warden George Booth","type":"Role","_key":"119998","_from":"18480","_to":"70472"} +{"$label":"ACTS_IN","name":"Ike Clanton","type":"Role","_key":"25684","_from":"18489","_to":"18485"} +{"$label":"ACTS_IN","name":"Clementine Carter","type":"Role","_key":"25676","_from":"18488","_to":"18485"} +{"$label":"ACTS_IN","name":"Dr. John 'Doc' Holliday","type":"Role","_key":"25675","_from":"18487","_to":"18485"} +{"$label":"ACTS_IN","name":"Chihuahua","type":"Role","_key":"25674","_from":"18486","_to":"18485"} +{"$label":"ACTS_IN","name":"Julie Bannon","type":"Role","_key":"31844","_from":"18486","_to":"22225"} +{"$label":"ACTS_IN","name":"Sylvia Smith-Stevens","type":"Role","_key":"28195","_from":"18486","_to":"20193"} +{"$label":"ACTS_IN","name":"Tony Powell","type":"Role","_key":"118862","_from":"18487","_to":"69863"} +{"$label":"ACTS_IN","name":"The Big Victor","type":"Role","_key":"115242","_from":"18487","_to":"67853"} +{"$label":"ACTS_IN","name":"Jed Cooper","type":"Role","_key":"34973","_from":"18487","_to":"23877"} +{"$label":"ACTS_IN","name":"Tumak","type":"Role","_key":"28224","_from":"18487","_to":"20214"} +{"$label":"ACTS_IN","name":"Old Leather","type":"Role","_key":"25703","_from":"18496","_to":"18490"} +{"$label":"ACTS_IN","name":"Walt Jergens","type":"Role","_key":"25702","_from":"18495","_to":"18490"} +{"$label":"ACTS_IN","name":"Simms Reeves","type":"Role","_key":"25700","_from":"18494","_to":"18490"} +{"$label":"ACTS_IN","name":"Quo","type":"Role","_key":"25698","_from":"18493","_to":"18490"} +{"$label":"ACTS_IN","name":"Tess Millay","type":"Role","_key":"25691","_from":"18492","_to":"18490"} +{"$label":"DIRECTED","_key":"25688","_from":"18491","_to":"18490"} +{"$label":"ACTS_IN","name":"Olivia Dandridge","type":"Role","_key":"97389","_from":"18492","_to":"57354"} +{"$label":"ACTS_IN","name":"Rosy Labouche","type":"Role","_key":"69193","_from":"18492","_to":"42317"} +{"$label":"ACTS_IN","name":"Chief Yellow Feather","type":"Role","_key":"114010","_from":"18493","_to":"67136"} +{"$label":"ACTS_IN","name":"Elderly Jason","type":"Role","_key":"61478","_from":"18494","_to":"38771"} +{"$label":"ACTS_IN","name":"Mose Harper","type":"Role","_key":"26081","_from":"18494","_to":"18734"} +{"$label":"ACTS_IN","name":"Pancho","type":"Role","_key":"25714","_from":"18503","_to":"18497"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"25713","_from":"18502","_to":"18497"} +{"$label":"ACTS_IN","name":"El Jefe","type":"Role","_key":"25712","_from":"18501","_to":"18497"} +{"$label":"ACTS_IN","name":"El Presidente","type":"Role","_key":"25711","_from":"18500","_to":"18497"} +{"$label":"ACTS_IN","name":"Gold Hat","type":"Role","_key":"25710","_from":"18499","_to":"18497"} +{"$label":"ACTS_IN","name":"James Cody","type":"Role","_key":"25708","_from":"18498","_to":"18497"} +{"$label":"ACTS_IN","name":"Steve Kearney","type":"Role","_key":"119059","_from":"18498","_to":"69982"} +{"$label":"ACTS_IN","name":"Dr. McAdoo","type":"Role","_key":"119048","_from":"18498","_to":"69979"} +{"$label":"ACTS_IN","name":"\"Waco\" Hoyt","type":"Role","_key":"117481","_from":"18498","_to":"69085"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"108178","_from":"18498","_to":"63933"} +{"$label":"ACTS_IN","name":"Albert Pierce","type":"Role","_key":"26836","_from":"18498","_to":"19283"} +{"$label":"ACTS_IN","name":"Accordionist","type":"Role","_key":"27201","_from":"18501","_to":"19549"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"25721","_from":"18507","_to":"18504"} +{"$label":"ACTS_IN","name":"Mrs. Wintry","type":"Role","_key":"25720","_from":"18506","_to":"18504"} +{"$label":"DIRECTED","_key":"25717","_from":"18505","_to":"18504"} +{"$label":"DIRECTED","_key":"107863","_from":"18505","_to":"63696"} +{"$label":"DIRECTED","_key":"88801","_from":"18505","_to":"52618"} +{"$label":"ACTS_IN","name":"Cohn","type":"Role","_key":"66668","_from":"18505","_to":"41194"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"25757","_from":"18537","_to":"18508"} +{"$label":"ACTS_IN","name":"Car Driver","type":"Role","_key":"25756","_from":"18536","_to":"18508"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"25755","_from":"18535","_to":"18508"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"25753","_from":"18534","_to":"18508"} +{"$label":"ACTS_IN","name":"Builder","type":"Role","_key":"25752","_from":"18533","_to":"18508"} +{"$label":"ACTS_IN","name":"Stockbroker","type":"Role","_key":"25751","_from":"18532","_to":"18508"} +{"$label":"ACTS_IN","name":"Drug Dealer","type":"Role","_key":"25750","_from":"18531","_to":"18508"} +{"$label":"ACTS_IN","name":"Female Patient","type":"Role","_key":"25749","_from":"18530","_to":"18508"} +{"$label":"ACTS_IN","name":"Screaming Woman","type":"Role","_key":"25748","_from":"18529","_to":"18508"} +{"$label":"ACTS_IN","name":"Big Man's Wife","type":"Role","_key":"25747","_from":"18528","_to":"18508"} +{"$label":"ACTS_IN","name":"Big Man in Bar","type":"Role","_key":"25746","_from":"18527","_to":"18508"} +{"$label":"ACTS_IN","name":"Thai Prostitute","type":"Role","_key":"25745","_from":"18526","_to":"18508"} +{"$label":"ACTS_IN","name":"Court Reporter 2","type":"Role","_key":"25744","_from":"18525","_to":"18508"} +{"$label":"ACTS_IN","name":"Court Reporter 1","type":"Role","_key":"25743","_from":"18524","_to":"18508"} +{"$label":"ACTS_IN","name":"Skinhead","type":"Role","_key":"25742","_from":"18523","_to":"18508"} +{"$label":"ACTS_IN","name":"Snuffly Patient","type":"Role","_key":"25741","_from":"18522","_to":"18508"} +{"$label":"ACTS_IN","name":"Angry Patient","type":"Role","_key":"25740","_from":"18521","_to":"18508"} +{"$label":"ACTS_IN","name":"Susan Bard","type":"Role","_key":"25739","_from":"18520","_to":"18508"} +{"$label":"ACTS_IN","name":"David Bard","type":"Role","_key":"25738","_from":"18519","_to":"18508"} +{"$label":"ACTS_IN","name":"Peter Ristedes","type":"Role","_key":"25737","_from":"18518","_to":"18508"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"25736","_from":"18517","_to":"18508"} +{"$label":"ACTS_IN","name":"Michelle Broadwin","type":"Role","_key":"25735","_from":"18516","_to":"18508"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"25734","_from":"18515","_to":"18508"} +{"$label":"ACTS_IN","name":"Ferguson","type":"Role","_key":"25733","_from":"18514","_to":"18508"} +{"$label":"ACTS_IN","name":"Solicitor","type":"Role","_key":"25732","_from":"18513","_to":"18508"} +{"$label":"ACTS_IN","name":"Jakob Gerst","type":"Role","_key":"25729","_from":"18512","_to":"18508"} +{"$label":"ACTS_IN","name":"Denise Glass","type":"Role","_key":"25728","_from":"18511","_to":"18508"} +{"$label":"ACTS_IN","name":"Kevin Franks","type":"Role","_key":"25727","_from":"18510","_to":"18508"} +{"$label":"DIRECTED","_key":"25722","_from":"18509","_to":"18508"} +{"$label":"DIRECTED","_key":"95097","_from":"18509","_to":"55969"} +{"$label":"DIRECTED","_key":"90823","_from":"18509","_to":"53591"} +{"$label":"DIRECTED","_key":"72182","_from":"18509","_to":"43625"} +{"$label":"DIRECTED","_key":"71930","_from":"18509","_to":"43521"} +{"$label":"DIRECTED","_key":"50228","_from":"18509","_to":"32829"} +{"$label":"DIRECTED","_key":"48209","_from":"18509","_to":"31667"} +{"$label":"DIRECTED","_key":"34239","_from":"18509","_to":"23506"} +{"$label":"ACTS_IN","name":"Shaper","type":"Role","_key":"117378","_from":"18512","_to":"69039"} +{"$label":"ACTS_IN","name":"Darren Nicholls","type":"Role","_key":"92214","_from":"18514","_to":"54418"} +{"$label":"ACTS_IN","name":"Jack Stoddart","type":"Role","_key":"88070","_from":"18514","_to":"52274"} +{"$label":"ACTS_IN","name":"Rod","type":"Role","_key":"62445","_from":"18514","_to":"39336"} +{"$label":"ACTS_IN","name":"Abigail McBride","type":"Role","_key":"60491","_from":"18516","_to":"38170"} +{"$label":"ACTS_IN","name":"Viki Falk","type":"Role","_key":"95426","_from":"18517","_to":"56137"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"60312","_from":"18517","_to":"38030"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"54184","_from":"18525","_to":"34805"} +{"$label":"ACTS_IN","name":"The Russian Spy","type":"Role","_key":"56563","_from":"18531","_to":"35892"} +{"$label":"ACTS_IN","name":"Serbian Gangster","type":"Role","_key":"34332","_from":"18531","_to":"23533"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"109135","_from":"18534","_to":"64473"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38485","_from":"18534","_to":"25997"} +{"$label":"ACTS_IN","name":"Dr. Hadley","type":"Role","_key":"26443","_from":"18534","_to":"19001"} +{"$label":"ACTS_IN","name":"C","type":"Role","_key":"25762","_from":"18542","_to":"18538"} +{"$label":"ACTS_IN","name":"B","type":"Role","_key":"25761","_from":"18541","_to":"18538"} +{"$label":"ACTS_IN","name":"A","type":"Role","_key":"25760","_from":"18540","_to":"18538"} +{"$label":"DIRECTED","_key":"25758","_from":"18539","_to":"18538"} +{"$label":"ACTS_IN","name":"Francesca Conchiglia","type":"Role","_key":"34773","_from":"18542","_to":"23768"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"27709","_from":"18542","_to":"19852"} +{"$label":"ACTS_IN","name":"Dolly Sister","type":"Role","_key":"25788","_from":"18563","_to":"18543"} +{"$label":"ACTS_IN","name":"Little Freddie","type":"Role","_key":"25787","_from":"18562","_to":"18543"} +{"$label":"ACTS_IN","name":"Solicitor","type":"Role","_key":"25784","_from":"18561","_to":"18543"} +{"$label":"ACTS_IN","name":"Councillor 1","type":"Role","_key":"25783","_from":"18560","_to":"18543"} +{"$label":"ACTS_IN","name":"Councillor 2","type":"Role","_key":"25782","_from":"18559","_to":"18543"} +{"$label":"ACTS_IN","name":"Little Titch","type":"Role","_key":"25781","_from":"18558","_to":"18543"} +{"$label":"ACTS_IN","name":"Bailiff","type":"Role","_key":"25780","_from":"18557","_to":"18543"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"25779","_from":"18556","_to":"18543"} +{"$label":"ACTS_IN","name":"Tilly Wood","type":"Role","_key":"25778","_from":"18555","_to":"18543"} +{"$label":"ACTS_IN","name":"Nelly Powers","type":"Role","_key":"25777","_from":"18554","_to":"18543"} +{"$label":"ACTS_IN","name":"Bernard Dillon","type":"Role","_key":"25776","_from":"18553","_to":"18543"} +{"$label":"ACTS_IN","name":"Mrs. Chart","type":"Role","_key":"25773","_from":"18552","_to":"18543"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"25772","_from":"18551","_to":"18543"} +{"$label":"ACTS_IN","name":"Percy Courtenay","type":"Role","_key":"25770","_from":"18550","_to":"18543"} +{"$label":"ACTS_IN","name":"Marie Lloyd","type":"Role","_key":"25769","_from":"18549","_to":"18543"} +{"$label":"DIRECTED","_key":"25768","_from":"18548","_to":"18543"} +{"$label":"DIRECTED","_key":"25767","_from":"18547","_to":"18543"} +{"$label":"DIRECTED","_key":"25766","_from":"18546","_to":"18543"} +{"$label":"DIRECTED","_key":"25765","_from":"18545","_to":"18543"} +{"$label":"DIRECTED","_key":"25764","_from":"18544","_to":"18543"} +{"$label":"DIRECTED","_key":"110331","_from":"18544","_to":"65199"} +{"$label":"ACTS_IN","name":"Anne Elliott","type":"Role","_key":"110891","_from":"18552","_to":"65506"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"102486","_from":"18554","_to":"60299"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"50134","_from":"18554","_to":"32785"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"96304","_from":"18557","_to":"56572"} +{"$label":"ACTS_IN","name":"Eaton","type":"Role","_key":"93389","_from":"18560","_to":"55005"} +{"$label":"ACTS_IN","name":"phil","type":"Role","_key":"111288","_from":"18561","_to":"65723"} +{"$label":"ACTS_IN","name":"Mujer tren","type":"Role","_key":"25807","_from":"18580","_to":"18564"} +{"$label":"ACTS_IN","name":"Loli","type":"Role","_key":"25806","_from":"18579","_to":"18564"} +{"$label":"ACTS_IN","name":"Secretaria","type":"Role","_key":"25805","_from":"18578","_to":"18564"} +{"$label":"ACTS_IN","name":"Teniente Gonz\u00e1lez","type":"Role","_key":"25804","_from":"18577","_to":"18564"} +{"$label":"ACTS_IN","name":"Portero","type":"Role","_key":"25803","_from":"18576","_to":"18564"} +{"$label":"ACTS_IN","name":"Guarda casa","type":"Role","_key":"25802","_from":"18575","_to":"18564"} +{"$label":"ACTS_IN","name":"Granados","type":"Role","_key":"25800","_from":"18574","_to":"18564"} +{"$label":"ACTS_IN","name":"Robles","type":"Role","_key":"25799","_from":"18573","_to":"18564"} +{"$label":"ACTS_IN","name":"Jim\u00e9nez","type":"Role","_key":"25798","_from":"18572","_to":"18564"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"25797","_from":"18571","_to":"18564"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"25796","_from":"18570","_to":"18564"} +{"$label":"ACTS_IN","name":"Camionero","type":"Role","_key":"25795","_from":"18569","_to":"18564"} +{"$label":"ACTS_IN","name":"M\u00f3nica","type":"Role","_key":"25794","_from":"18568","_to":"18564"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"25791","_from":"18567","_to":"18564"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"25790","_from":"18566","_to":"18564"} +{"$label":"DIRECTED","_key":"25789","_from":"18565","_to":"18564"} +{"$label":"ACTS_IN","name":"Castro","type":"Role","_key":"52982","_from":"18573","_to":"34322"} +{"$label":"ACTS_IN","name":"Platten","type":"Role","_key":"30043","_from":"18573","_to":"21186"} +{"$label":"DIRECTED","_key":"25873","_from":"18632","_to":"18581"} +{"$label":"ACTS_IN","name":"Man in Overalls","type":"Role","_key":"25868","_from":"18631","_to":"18581"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"25867","_from":"18630","_to":"18581"} +{"$label":"ACTS_IN","name":"Sesame Esau","type":"Role","_key":"25866","_from":"18629","_to":"18581"} +{"$label":"ACTS_IN","name":"Karl-Heinz","type":"Role","_key":"25865","_from":"18628","_to":"18581"} +{"$label":"ACTS_IN","name":"Paul \/ Pierre","type":"Role","_key":"25864","_from":"18627","_to":"18581"} +{"$label":"ACTS_IN","name":"Lephrenic","type":"Role","_key":"25862","_from":"18626","_to":"18581"} +{"$label":"ACTS_IN","name":"Guam Ravillion","type":"Role","_key":"25861","_from":"18625","_to":"18581"} +{"$label":"ACTS_IN","name":"Cappy Luper","type":"Role","_key":"25860","_from":"18624","_to":"18581"} +{"$label":"ACTS_IN","name":"Luper Jove","type":"Role","_key":"25859","_from":"18623","_to":"18581"} +{"$label":"ACTS_IN","name":"Luper Jove","type":"Role","_key":"25858","_from":"18622","_to":"18581"} +{"$label":"ACTS_IN","name":"Luper Jove","type":"Role","_key":"25857","_from":"18621","_to":"18581"} +{"$label":"ACTS_IN","name":"Luper Jove","type":"Role","_key":"25856","_from":"18620","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25854","_from":"18619","_to":"18581"} +{"$label":"ACTS_IN","name":"Arturo Balderman","type":"Role","_key":"25853","_from":"18618","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25852","_from":"18617","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25851","_from":"18616","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25850","_from":"18615","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25849","_from":"18614","_to":"18581"} +{"$label":"ACTS_IN","name":"Red Fox","type":"Role","_key":"25848","_from":"18613","_to":"18581"} +{"$label":"ACTS_IN","name":"Constantino de Ripa","type":"Role","_key":"25846","_from":"18612","_to":"18581"} +{"$label":"ACTS_IN","name":"Mrs. Warren","type":"Role","_key":"25845","_from":"18611","_to":"18581"} +{"$label":"ACTS_IN","name":"Mare","type":"Role","_key":"25844","_from":"18610","_to":"18581"} +{"$label":"ACTS_IN","name":"Zelke","type":"Role","_key":"25843","_from":"18609","_to":"18581"} +{"$label":"ACTS_IN","name":"Blaise Poignard","type":"Role","_key":"25842","_from":"18608","_to":"18581"} +{"$label":"ACTS_IN","name":"Luper Autoritat","type":"Role","_key":"25841","_from":"18607","_to":"18581"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"25840","_from":"18606","_to":"18581"} +{"$label":"ACTS_IN","name":"Thomas J. Imox","type":"Role","_key":"25839","_from":"18605","_to":"18581"} +{"$label":"ACTS_IN","name":"Carrie Luper","type":"Role","_key":"25838","_from":"18604","_to":"18581"} +{"$label":"ACTS_IN","name":"Ivor Luper","type":"Role","_key":"25837","_from":"18603","_to":"18581"} +{"$label":"ACTS_IN","name":"Gopel","type":"Role","_key":"25835","_from":"18602","_to":"18581"} +{"$label":"ACTS_IN","name":"Aga","type":"Role","_key":"25834","_from":"18601","_to":"18581"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"25833","_from":"18600","_to":"18581"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"25831","_from":"18599","_to":"18581"} +{"$label":"ACTS_IN","name":"Macey","type":"Role","_key":"25830","_from":"18598","_to":"18581"} +{"$label":"ACTS_IN","name":"Brodie","type":"Role","_key":"25829","_from":"18597","_to":"18581"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"25828","_from":"18596","_to":"18581"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"25827","_from":"18595","_to":"18581"} +{"$label":"ACTS_IN","name":"Gerdie Ottanssen","type":"Role","_key":"25826","_from":"18594","_to":"18581"} +{"$label":"ACTS_IN","name":"Martino","type":"Role","_key":"25824","_from":"18593","_to":"18581"} +{"$label":"ACTS_IN","name":"Hans Heiner","type":"Role","_key":"25823","_from":"18592","_to":"18581"} +{"$label":"ACTS_IN","name":"Ma Fender","type":"Role","_key":"25822","_from":"18591","_to":"18581"} +{"$label":"ACTS_IN","name":"Sophie van Osterhuis","type":"Role","_key":"25821","_from":"18590","_to":"18581"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"25818","_from":"18589","_to":"18581"} +{"$label":"ACTS_IN","name":"Hercule","type":"Role","_key":"25817","_from":"18588","_to":"18581"} +{"$label":"ACTS_IN","name":"Julian Lephrenic","type":"Role","_key":"25815","_from":"18587","_to":"18581"} +{"$label":"ACTS_IN","name":"Martino Knockavelli","type":"Role","_key":"25814","_from":"18586","_to":"18581"} +{"$label":"ACTS_IN","name":"Percy Hockmeister","type":"Role","_key":"25813","_from":"18585","_to":"18581"} +{"$label":"ACTS_IN","name":"Jan Palmerion","type":"Role","_key":"25810","_from":"18584","_to":"18581"} +{"$label":"ACTS_IN","name":"Passion Hockmeister","type":"Role","_key":"25809","_from":"18583","_to":"18581"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25808","_from":"18582","_to":"18581"} +{"$label":"ACTS_IN","name":"Liam Adams","type":"Role","_key":"118872","_from":"18582","_to":"69865"} +{"$label":"ACTS_IN","name":"Henry Tilney","type":"Role","_key":"114893","_from":"18582","_to":"67666"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25914","_from":"18582","_to":"18644"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25901","_from":"18582","_to":"18639"} +{"$label":"ACTS_IN","name":"Tulse Luper","type":"Role","_key":"25874","_from":"18582","_to":"18633"} +{"$label":"ACTS_IN","name":"Keira St-George","type":"Role","_key":"120925","_from":"18583","_to":"71005"} +{"$label":"ACTS_IN","name":"Nickie Grace","type":"Role","_key":"116543","_from":"18583","_to":"68600"} +{"$label":"ACTS_IN","name":"Kara","type":"Role","_key":"113337","_from":"18583","_to":"66763"} +{"$label":"ACTS_IN","name":"Sarah Mann","type":"Role","_key":"100921","_from":"18583","_to":"59493"} +{"$label":"ACTS_IN","name":"Juliana O\u00b4Neill","type":"Role","_key":"29855","_from":"18583","_to":"21119"} +{"$label":"ACTS_IN","name":"Passion Hockmeister","type":"Role","_key":"25919","_from":"18583","_to":"18644"} +{"$label":"ACTS_IN","name":"Aguilar","type":"Role","_key":"90782","_from":"18584","_to":"53571"} +{"$label":"ACTS_IN","name":"Hector Juan Carlos \u201eJohnny\u201c Tapia","type":"Role","_key":"51703","_from":"18584","_to":"33743"} +{"$label":"ACTS_IN","name":"Philip II","type":"Role","_key":"32252","_from":"18584","_to":"22472"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis","type":"Role","_key":"32193","_from":"18584","_to":"22444"} +{"$label":"ACTS_IN","name":"Diego Delgado","type":"Role","_key":"29710","_from":"18584","_to":"21034"} +{"$label":"ACTS_IN","name":"Jan Palmerion","type":"Role","_key":"25920","_from":"18584","_to":"18644"} +{"$label":"ACTS_IN","name":"Jan Palmerion","type":"Role","_key":"25879","_from":"18584","_to":"18633"} +{"$label":"ACTS_IN","name":"Ged Brennan","type":"Role","_key":"100880","_from":"18585","_to":"59478"} +{"$label":"ACTS_IN","name":"Sparky","type":"Role","_key":"100486","_from":"18585","_to":"59250"} +{"$label":"ACTS_IN","name":"Percy Hockmeister","type":"Role","_key":"25915","_from":"18585","_to":"18644"} +{"$label":"ACTS_IN","name":"Percy Hockmeister","type":"Role","_key":"25893","_from":"18585","_to":"18633"} +{"$label":"ACTS_IN","name":"Knockavelli","type":"Role","_key":"25911","_from":"18586","_to":"18639"} +{"$label":"ACTS_IN","name":"Knockavelli","type":"Role","_key":"25880","_from":"18586","_to":"18633"} +{"$label":"ACTS_IN","name":"Uncle Ben","type":"Role","_key":"109557","_from":"18587","_to":"64710"} +{"$label":"ACTS_IN","name":"Steiger","type":"Role","_key":"57367","_from":"18587","_to":"36369"} +{"$label":"ACTS_IN","name":"Lephrenic","type":"Role","_key":"25916","_from":"18587","_to":"18644"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"48641","_from":"18590","_to":"31906"} +{"$label":"ACTS_IN","name":"Agatha","type":"Role","_key":"112801","_from":"18591","_to":"66602"} +{"$label":"ACTS_IN","name":"Young Hugh","type":"Role","_key":"66726","_from":"18593","_to":"41220"} +{"$label":"ACTS_IN","name":"Paul \/ Pierre","type":"Role","_key":"25887","_from":"18627","_to":"18633"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"118376","_from":"18629","_to":"69592"} +{"$label":"ACTS_IN","name":"King Arthur","type":"Role","_key":"70424","_from":"18629","_to":"42880"} +{"$label":"DIRECTED","_key":"111627","_from":"18632","_to":"65904"} +{"$label":"DIRECTED","_key":"69184","_from":"18632","_to":"42313"} +{"$label":"DIRECTED","_key":"66049","_from":"18632","_to":"40873"} +{"$label":"DIRECTED","_key":"46709","_from":"18632","_to":"30833"} +{"$label":"DIRECTED","_key":"35664","_from":"18632","_to":"24239"} +{"$label":"DIRECTED","_key":"35637","_from":"18632","_to":"24225"} +{"$label":"DIRECTED","_key":"32651","_from":"18632","_to":"22682"} +{"$label":"DIRECTED","_key":"25923","_from":"18632","_to":"18644"} +{"$label":"DIRECTED","_key":"25913","_from":"18632","_to":"18639"} +{"$label":"DIRECTED","_key":"25900","_from":"18632","_to":"18633"} +{"$label":"ACTS_IN","name":"Marion Arbutus","type":"Role","_key":"25898","_from":"18638","_to":"18633"} +{"$label":"ACTS_IN","name":"Wolfgang Speckler","type":"Role","_key":"25896","_from":"18637","_to":"18633"} +{"$label":"ACTS_IN","name":"Harpsch","type":"Role","_key":"25892","_from":"18636","_to":"18633"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"25891","_from":"18635","_to":"18633"} +{"$label":"ACTS_IN","name":"Monsieur Moitessier","type":"Role","_key":"25883","_from":"18634","_to":"18633"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"98734","_from":"18634","_to":"58186"} +{"$label":"ACTS_IN","name":"King Sharaman","type":"Role","_key":"54576","_from":"18634","_to":"34967"} +{"$label":"ACTS_IN","name":"Zakenman 3","type":"Role","_key":"39582","_from":"18636","_to":"26738"} +{"$label":"ACTS_IN","name":"Bouillard","type":"Role","_key":"25912","_from":"18643","_to":"18639"} +{"$label":"ACTS_IN","name":"Constance Bulitsky","type":"Role","_key":"25910","_from":"18642","_to":"18639"} +{"$label":"ACTS_IN","name":"Heinkel","type":"Role","_key":"25906","_from":"18641","_to":"18639"} +{"$label":"ACTS_IN","name":"Raoul Wallenberg","type":"Role","_key":"25905","_from":"18640","_to":"18639"} +{"$label":"DIRECTED","_key":"25941","_from":"18653","_to":"18645"} +{"$label":"DIRECTED","_key":"25940","_from":"18652","_to":"18645"} +{"$label":"DIRECTED","_key":"25939","_from":"18651","_to":"18645"} +{"$label":"ACTS_IN","name":"Donna Joy","type":"Role","_key":"25937","_from":"18650","_to":"18645"} +{"$label":"ACTS_IN","name":"Dominic Boca","type":"Role","_key":"25935","_from":"18649","_to":"18645"} +{"$label":"ACTS_IN","name":"Carla Boca","type":"Role","_key":"25934","_from":"18648","_to":"18645"} +{"$label":"ACTS_IN","name":"Lacey","type":"Role","_key":"25932","_from":"18647","_to":"18645"} +{"$label":"ACTS_IN","name":"Rosalie Boca","type":"Role","_key":"25925","_from":"18646","_to":"18645"} +{"$label":"ACTS_IN","name":"Mother Nature","type":"Role","_key":"102771","_from":"18646","_to":"60460"} +{"$label":"ACTS_IN","name":"Sylvia Stickles","type":"Role","_key":"95993","_from":"18646","_to":"56430"} +{"$label":"ACTS_IN","name":"Ms. Birdwell","type":"Role","_key":"94409","_from":"18646","_to":"55586"} +{"$label":"ACTS_IN","name":"Frenchy","type":"Role","_key":"64134","_from":"18646","_to":"40021"} +{"$label":"ACTS_IN","name":"Latrine","type":"Role","_key":"47719","_from":"18646","_to":"31431"} +{"$label":"ACTS_IN","name":"Hildegarde (voice)","type":"Role","_key":"28969","_from":"18646","_to":"20688"} +{"$label":"ACTS_IN","name":"Nina Scant","type":"Role","_key":"28158","_from":"18646","_to":"20177"} +{"$label":"ACTS_IN","name":"Teri","type":"Role","_key":"72991","_from":"18647","_to":"43930"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"64024","_from":"18647","_to":"39967"} +{"$label":"ACTS_IN","name":"Curly Sue","type":"Role","_key":"72594","_from":"18648","_to":"43769"} +{"$label":"DIRECTED","_key":"92307","_from":"18649","_to":"54472"} +{"$label":"ACTS_IN","name":"Harold and Sarah's Son","type":"Role","_key":"90282","_from":"18649","_to":"53368"} +{"$label":"ACTS_IN","name":"Edik","type":"Role","_key":"25949","_from":"18662","_to":"18654"} +{"$label":"ACTS_IN","name":"Egor","type":"Role","_key":"25948","_from":"18661","_to":"18654"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"25947","_from":"18660","_to":"18654"} +{"$label":"ACTS_IN","name":"Kurbatov","type":"Role","_key":"25946","_from":"18659","_to":"18654"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"25945","_from":"18658","_to":"18654"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"25944","_from":"18657","_to":"18654"} +{"$label":"ACTS_IN","name":"Yulij","type":"Role","_key":"25943","_from":"18656","_to":"18654"} +{"$label":"DIRECTED","_key":"25942","_from":"18655","_to":"18654"} +{"$label":"ACTS_IN","name":"Zef","type":"Role","_key":"114968","_from":"18662","_to":"67708"} +{"$label":"ACTS_IN","name":"Zef","type":"Role","_key":"110472","_from":"18662","_to":"65265"} +{"$label":"ACTS_IN","name":"Ilonka","type":"Role","_key":"25958","_from":"18667","_to":"18663"} +{"$label":"ACTS_IN","name":"Lampini","type":"Role","_key":"25957","_from":"18666","_to":"18663"} +{"$label":"ACTS_IN","name":"Karl Hussman","type":"Role","_key":"25955","_from":"18665","_to":"18663"} +{"$label":"ACTS_IN","name":"Rita Hussman","type":"Role","_key":"25954","_from":"18664","_to":"18663"} +{"$label":"ACTS_IN","name":"Jean Sovac","type":"Role","_key":"96605","_from":"18664","_to":"56822"} +{"$label":"ACTS_IN","name":"Dr. Renault","type":"Role","_key":"114915","_from":"18666","_to":"67681"} +{"$label":"ACTS_IN","name":"Professor Moriarty","type":"Role","_key":"112382","_from":"18666","_to":"66350"} +{"$label":"ACTS_IN","name":"Dr. Adolph Kammer","type":"Role","_key":"100955","_from":"18666","_to":"59500"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"25967","_from":"18671","_to":"18668"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"25964","_from":"18670","_to":"18668"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"25962","_from":"18669","_to":"18668"} +{"$label":"ACTS_IN","name":"The Creature","type":"Role","_key":"25975","_from":"18676","_to":"18672"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"25974","_from":"18675","_to":"18672"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"25971","_from":"18674","_to":"18672"} +{"$label":"DIRECTED","_key":"25969","_from":"18673","_to":"18672"} +{"$label":"DIRECTED","_key":"69769","_from":"18673","_to":"42583"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"41036","_from":"18674","_to":"27609"} +{"$label":"ACTS_IN","name":"Prof. Nelson Zarcoff","type":"Role","_key":"118967","_from":"18676","_to":"69921"} +{"$label":"ACTS_IN","name":"Enraged Solider","type":"Role","_key":"25988","_from":"18687","_to":"18678"} +{"$label":"ACTS_IN","name":"Major Tada","type":"Role","_key":"25986","_from":"18686","_to":"18678"} +{"$label":"ACTS_IN","name":"Ogata","type":"Role","_key":"25985","_from":"18685","_to":"18678"} +{"$label":"ACTS_IN","name":"Dr. Stevenson","type":"Role","_key":"25984","_from":"18684","_to":"18678"} +{"$label":"ACTS_IN","name":"Kilaak Queen","type":"Role","_key":"25983","_from":"18683","_to":"18678"} +{"$label":"ACTS_IN","name":"Kyoko Yamabe","type":"Role","_key":"25981","_from":"18682","_to":"18678"} +{"$label":"ACTS_IN","name":"Dr. Yoshido","type":"Role","_key":"25980","_from":"18681","_to":"18678"} +{"$label":"ACTS_IN","name":"Katsuo Yamabe","type":"Role","_key":"25979","_from":"18680","_to":"18678"} +{"$label":"DIRECTED","_key":"25978","_from":"18679","_to":"18678"} +{"$label":"ACTS_IN","name":"Goro Maki","type":"Role","_key":"116854","_from":"18680","_to":"68793"} +{"$label":"ACTS_IN","name":"Yoshiteru Miki","type":"Role","_key":"28709","_from":"18680","_to":"20511"} +{"$label":"ACTS_IN","name":"Milit\u00e4radviso","type":"Role","_key":"26398","_from":"18681","_to":"18962"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"26282","_from":"18681","_to":"18871"} +{"$label":"ACTS_IN","name":"Red Bamboo Commander","type":"Role","_key":"26096","_from":"18681","_to":"18745"} +{"$label":"ACTS_IN","name":"Ichino","type":"Role","_key":"26091","_from":"18685","_to":"18745"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"26283","_from":"18687","_to":"18871"} +{"$label":"ACTS_IN","name":"Irene Lassiter","type":"Role","_key":"25998","_from":"18692","_to":"18688"} +{"$label":"ACTS_IN","name":"Detec. Juan \" Cha Cha \" Chacon","type":"Role","_key":"25995","_from":"18691","_to":"18688"} +{"$label":"ACTS_IN","name":"Frankensteins Monster","type":"Role","_key":"25994","_from":"18690","_to":"18688"} +{"$label":"DIRECTED","_key":"25989","_from":"18689","_to":"18688"} +{"$label":"DIRECTED","_key":"110868","_from":"18689","_to":"65485"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"45641","_from":"18690","_to":"30210"} +{"$label":"ACTS_IN","name":"FBI Agent Ruiz","type":"Role","_key":"119946","_from":"18691","_to":"70452"} +{"$label":"ACTS_IN","name":"Gil Garcia","type":"Role","_key":"119696","_from":"18691","_to":"70302"} +{"$label":"ACTS_IN","name":"Raul Ventana, Drug Lord","type":"Role","_key":"118934","_from":"18691","_to":"69895"} +{"$label":"ACTS_IN","name":"Archie","type":"Role","_key":"96951","_from":"18691","_to":"57026"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"55805","_from":"18691","_to":"35512"} +{"$label":"ACTS_IN","name":"Mr. Escobar","type":"Role","_key":"47800","_from":"18691","_to":"31468"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44258","_from":"18691","_to":"29492"} +{"$label":"ACTS_IN","name":"Augusto Oliveras","type":"Role","_key":"29712","_from":"18691","_to":"21034"} +{"$label":"ACTS_IN","name":"Sandy Chester","type":"Role","_key":"119826","_from":"18692","_to":"70368"} +{"$label":"ACTS_IN","name":"Mrs. Hillman","type":"Role","_key":"52149","_from":"18692","_to":"33986"} +{"$label":"ACTS_IN","name":"Train fireman","type":"Role","_key":"26017","_from":"18704","_to":"18693"} +{"$label":"ACTS_IN","name":"Railway porter","type":"Role","_key":"26016","_from":"18703","_to":"18693"} +{"$label":"ACTS_IN","name":"Costello (engine driver)","type":"Role","_key":"26015","_from":"18702","_to":"18693"} +{"$label":"ACTS_IN","name":"Molouney (train guard)","type":"Role","_key":"26014","_from":"18701","_to":"18693"} +{"$label":"ACTS_IN","name":"Owen Glynn","type":"Role","_key":"26012","_from":"18700","_to":"18693"} +{"$label":"ACTS_IN","name":"Father Paul","type":"Role","_key":"26011","_from":"18699","_to":"18693"} +{"$label":"ACTS_IN","name":"Hugh Forbes","type":"Role","_key":"26010","_from":"18698","_to":"18693"} +{"$label":"ACTS_IN","name":"Fishwoman with basket at station","type":"Role","_key":"26008","_from":"18697","_to":"18693"} +{"$label":"ACTS_IN","name":"Mrs. Elizabeth Playfair","type":"Role","_key":"26007","_from":"18696","_to":"18693"} +{"$label":"ACTS_IN","name":"Dan Tobin","type":"Role","_key":"26006","_from":"18695","_to":"18693"} +{"$label":"ACTS_IN","name":"Squire 'Red' Will Danaher","type":"Role","_key":"26004","_from":"18694","_to":"18693"} +{"$label":"ACTS_IN","name":"First Sergeant Quincannon","type":"Role","_key":"97388","_from":"18694","_to":"57354"} +{"$label":"ACTS_IN","name":"Boltar","type":"Role","_key":"42742","_from":"18694","_to":"28608"} +{"$label":"ACTS_IN","name":"Mrs. Howells","type":"Role","_key":"26039","_from":"18715","_to":"18705"} +{"$label":"ACTS_IN","name":"Ed Howells","type":"Role","_key":"26038","_from":"18714","_to":"18705"} +{"$label":"ACTS_IN","name":"Ed Howells","type":"Role","_key":"26037","_from":"18713","_to":"18705"} +{"$label":"ACTS_IN","name":"Susan Lewis","type":"Role","_key":"26036","_from":"18712","_to":"18705"} +{"$label":"ACTS_IN","name":"Johnson, homesteader","type":"Role","_key":"26035","_from":"18711","_to":"18705"} +{"$label":"ACTS_IN","name":"Ernie Wright","type":"Role","_key":"26034","_from":"18710","_to":"18705"} +{"$label":"ACTS_IN","name":"Sam Grafton","type":"Role","_key":"26031","_from":"18709","_to":"18705"} +{"$label":"ACTS_IN","name":"Fred Lewis","type":"Role","_key":"26025","_from":"18708","_to":"18705"} +{"$label":"ACTS_IN","name":"Joey Starrett","type":"Role","_key":"26022","_from":"18707","_to":"18705"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"26019","_from":"18706","_to":"18705"} +{"$label":"ACTS_IN","name":"Ed Beaumont","type":"Role","_key":"111213","_from":"18706","_to":"65677"} +{"$label":"ACTS_IN","name":"Philip Raven","type":"Role","_key":"109906","_from":"18706","_to":"64940"} +{"$label":"ACTS_IN","name":"Johnny Morrison - Lt.Cmdr., ret.","type":"Role","_key":"107013","_from":"18706","_to":"63091"} +{"$label":"ACTS_IN","name":"(in \"This Gun For Hire\") (archive footage)","type":"Role","_key":"53870","_from":"18706","_to":"34691"} +{"$label":"ACTS_IN","name":"Gorlock","type":"Role","_key":"42755","_from":"18711","_to":"28608"} +{"$label":"ACTS_IN","name":"Wilhelmina Peterson","type":"Role","_key":"34994","_from":"18715","_to":"23888"} +{"$label":"ACTS_IN","name":"Miss Markham (publicity department)","type":"Role","_key":"26050","_from":"18721","_to":"18716"} +{"$label":"ACTS_IN","name":"Libby's secretary","type":"Role","_key":"26049","_from":"18720","_to":"18716"} +{"$label":"ACTS_IN","name":"Susan Ettinger","type":"Role","_key":"26047","_from":"18719","_to":"18716"} +{"$label":"ACTS_IN","name":"Lola Lavery","type":"Role","_key":"26046","_from":"18718","_to":"18716"} +{"$label":"ACTS_IN","name":"Oliver Niles","type":"Role","_key":"26044","_from":"18717","_to":"18716"} +{"$label":"ACTS_IN","name":"Zeb Rawlins","type":"Role","_key":"44536","_from":"18717","_to":"29653"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"26061","_from":"18728","_to":"18722"} +{"$label":"ACTS_IN","name":"Pearl Harper","type":"Role","_key":"26060","_from":"18727","_to":"18722"} +{"$label":"ACTS_IN","name":"John Harper","type":"Role","_key":"26059","_from":"18726","_to":"18722"} +{"$label":"ACTS_IN","name":"Walt Spoon","type":"Role","_key":"26058","_from":"18725","_to":"18722"} +{"$label":"ACTS_IN","name":"Icey Spoon","type":"Role","_key":"26056","_from":"18724","_to":"18722"} +{"$label":"ACTS_IN","name":"Birdie Steptoe","type":"Role","_key":"26055","_from":"18723","_to":"18722"} +{"$label":"ACTS_IN","name":"Sylvester","type":"Role","_key":"120193","_from":"18723","_to":"70587"} +{"$label":"ACTS_IN","name":"Carl Meade","type":"Role","_key":"116566","_from":"18723","_to":"68613"} +{"$label":"ACTS_IN","name":"Peter 'Pop' Benson","type":"Role","_key":"116033","_from":"18723","_to":"68332"} +{"$label":"ACTS_IN","name":"Pop McClune","type":"Role","_key":"29652","_from":"18723","_to":"20986"} +{"$label":"ACTS_IN","name":"Ma Kipps","type":"Role","_key":"37584","_from":"18724","_to":"25473"} +{"$label":"ACTS_IN","name":"Marvin Williams","type":"Role","_key":"29014","_from":"18725","_to":"20706"} +{"$label":"ACTS_IN","name":"Marvin Williams","type":"Role","_key":"28957","_from":"18725","_to":"20682"} +{"$label":"ACTS_IN","name":"la magicienne","type":"Role","_key":"26067","_from":"18733","_to":"18729"} +{"$label":"ACTS_IN","name":"Dinharzade","type":"Role","_key":"26066","_from":"18732","_to":"18729"} +{"$label":"ACTS_IN","name":"Sharian","type":"Role","_key":"26064","_from":"18731","_to":"18729"} +{"$label":"DIRECTED","_key":"26062","_from":"18730","_to":"18729"} +{"$label":"ACTS_IN","name":"G\u00e9rard Doutre","type":"Role","_key":"89130","_from":"18731","_to":"52799"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"33366","_from":"18732","_to":"23104"} +{"$label":"ACTS_IN","name":"Michelle Latour","type":"Role","_key":"29823","_from":"18732","_to":"21103"} +{"$label":"ACTS_IN","name":"Michelle Latour","type":"Role","_key":"29815","_from":"18732","_to":"21100"} +{"$label":"ACTS_IN","name":"Tatie Danielle","type":"Role","_key":"43430","_from":"18733","_to":"29017"} +{"$label":"ACTS_IN","name":"Lt. Greenhill","type":"Role","_key":"26086","_from":"18744","_to":"18734"} +{"$label":"ACTS_IN","name":"Lucy Edwards","type":"Role","_key":"26085","_from":"18743","_to":"18734"} +{"$label":"ACTS_IN","name":"Martha Edwards","type":"Role","_key":"26084","_from":"18742","_to":"18734"} +{"$label":"ACTS_IN","name":"Aaron Edwards","type":"Role","_key":"26083","_from":"18741","_to":"18734"} +{"$label":"ACTS_IN","name":"Wild Goose Flying in the Night Sky (Look)","type":"Role","_key":"26082","_from":"18740","_to":"18734"} +{"$label":"ACTS_IN","name":"Emilio Gabriel Fernandez y Figueroa","type":"Role","_key":"26080","_from":"18739","_to":"18734"} +{"$label":"ACTS_IN","name":"Charlie McCorry","type":"Role","_key":"26078","_from":"18738","_to":"18734"} +{"$label":"ACTS_IN","name":"Chief Cicatrice (Scar)","type":"Role","_key":"26077","_from":"18737","_to":"18734"} +{"$label":"ACTS_IN","name":"Mrs. Jorgensen","type":"Role","_key":"26076","_from":"18736","_to":"18734"} +{"$label":"ACTS_IN","name":"Martin Pawley","type":"Role","_key":"26071","_from":"18735","_to":"18734"} +{"$label":"ACTS_IN","name":"Chaney","type":"Role","_key":"114074","_from":"18737","_to":"67170"} +{"$label":"ACTS_IN","name":"Zarz","type":"Role","_key":"46088","_from":"18737","_to":"30444"} +{"$label":"ACTS_IN","name":"Commander of the Hosts","type":"Role","_key":"44973","_from":"18737","_to":"29886"} +{"$label":"ACTS_IN","name":"Dr. Fu Man Chu","type":"Role","_key":"27464","_from":"18737","_to":"19714"} +{"$label":"ACTS_IN","name":"Dr. Fu Manchu","type":"Role","_key":"27441","_from":"18737","_to":"19700"} +{"$label":"ACTS_IN","name":"Nutsy","type":"Role","_key":"72544","_from":"18738","_to":"43753"} +{"$label":"ACTS_IN","name":"Carl Maia","type":"Role","_key":"67026","_from":"18739","_to":"41374"} +{"$label":"ACTS_IN","name":"Pegeen Ryan","type":"Role","_key":"108832","_from":"18743","_to":"64318"} +{"$label":"ACTS_IN","name":"Bob Barber","type":"Role","_key":"118464","_from":"18744","_to":"69644"} +{"$label":"ACTS_IN","name":"Sheriff Jim Ellison","type":"Role","_key":"116242","_from":"18744","_to":"68438"} +{"$label":"ACTS_IN","name":"Devlin Warren","type":"Role","_key":"103778","_from":"18744","_to":"61040"} +{"$label":"ACTS_IN","name":"Sinbad","type":"Role","_key":"72865","_from":"18744","_to":"43890"} +{"$label":"ACTS_IN","name":"Capt. James Butler Bonham","type":"Role","_key":"68555","_from":"18744","_to":"42033"} +{"$label":"ACTS_IN","name":"Yata Kane","type":"Role","_key":"26094","_from":"18750","_to":"18745"} +{"$label":"ACTS_IN","name":"Ryota Kane","type":"Role","_key":"26093","_from":"18749","_to":"18745"} +{"$label":"ACTS_IN","name":"Nita","type":"Role","_key":"26092","_from":"18748","_to":"18745"} +{"$label":"ACTS_IN","name":"Daiyo","type":"Role","_key":"26090","_from":"18747","_to":"18745"} +{"$label":"DIRECTED","_key":"26088","_from":"18746","_to":"18745"} +{"$label":"ACTS_IN","name":"Commander Akiko Namikawa","type":"Role","_key":"105832","_from":"18747","_to":"62299"} +{"$label":"ACTS_IN","name":"Dr. Togami","type":"Role","_key":"26395","_from":"18747","_to":"18962"} +{"$label":"ACTS_IN","name":"Akemi","type":"Role","_key":"26279","_from":"18747","_to":"18871"} +{"$label":"ACTS_IN","name":"Shirley","type":"Role","_key":"26102","_from":"18752","_to":"18751"} +{"$label":"ACTS_IN","name":"Florinda","type":"Role","_key":"119680","_from":"18752","_to":"70293"} +{"$label":"ACTS_IN","name":"Dolores Thwaites","type":"Role","_key":"118824","_from":"18752","_to":"69852"} +{"$label":"ACTS_IN","name":"Kay Brubaker","type":"Role","_key":"72836","_from":"18752","_to":"43874"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"55290","_from":"18752","_to":"35258"} +{"$label":"ACTS_IN","name":"Eve Clayton","type":"Role","_key":"46013","_from":"18752","_to":"30412"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"36516","_from":"18752","_to":"24766"} +{"$label":"ACTS_IN","name":"Marion Marshall","type":"Role","_key":"34511","_from":"18752","_to":"23628"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"26113","_from":"18760","_to":"18753"} +{"$label":"ACTS_IN","name":"Wilde One","type":"Role","_key":"26112","_from":"18759","_to":"18753"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"26111","_from":"18758","_to":"18753"} +{"$label":"ACTS_IN","name":"Transvest","type":"Role","_key":"26110","_from":"18757","_to":"18753"} +{"$label":"ACTS_IN","name":"Asylum Direktor","type":"Role","_key":"26109","_from":"18756","_to":"18753"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"26107","_from":"18755","_to":"18753"} +{"$label":"ACTS_IN","name":"Simon Helder","type":"Role","_key":"26106","_from":"18754","_to":"18753"} +{"$label":"ACTS_IN","name":"Paul Durward","type":"Role","_key":"118336","_from":"18754","_to":"69559"} +{"$label":"ACTS_IN","name":"Reichert","type":"Role","_key":"115989","_from":"18754","_to":"68307"} +{"$label":"ACTS_IN","name":"Himself (as Captain John Stratton)","type":"Role","_key":"103130","_from":"18756","_to":"60662"} +{"$label":"ACTS_IN","name":"Archimedes","type":"Role","_key":"35791","_from":"18757","_to":"24306"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"35733","_from":"18757","_to":"24280"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"99888","_from":"18758","_to":"58900"} +{"$label":"ACTS_IN","name":"Commissioner","type":"Role","_key":"26121","_from":"18768","_to":"18761"} +{"$label":"ACTS_IN","name":"Corona","type":"Role","_key":"26120","_from":"18767","_to":"18761"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"26119","_from":"18766","_to":"18761"} +{"$label":"ACTS_IN","name":"Adelaide","type":"Role","_key":"26118","_from":"18765","_to":"18761"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"26117","_from":"18764","_to":"18761"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"26116","_from":"18763","_to":"18761"} +{"$label":"DIRECTED","_key":"26114","_from":"18762","_to":"18761"} +{"$label":"DIRECTED","_key":"37983","_from":"18762","_to":"25718"} +{"$label":"DIRECTED","_key":"29950","_from":"18762","_to":"21162"} +{"$label":"ACTS_IN","name":"Raymond Monnet","type":"Role","_key":"62695","_from":"18763","_to":"39423"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38051","_from":"18767","_to":"25743"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37990","_from":"18767","_to":"25718"} +{"$label":"ACTS_IN","name":"Madame Pelletier","type":"Role","_key":"30663","_from":"18767","_to":"21523"} +{"$label":"ACTS_IN","name":"Viviane","type":"Role","_key":"29952","_from":"18767","_to":"21162"} +{"$label":"ACTS_IN","name":"Rensonnet","type":"Role","_key":"107145","_from":"18768","_to":"63187"} +{"$label":"ACTS_IN","name":"Captain Sun","type":"Role","_key":"48050","_from":"18768","_to":"31592"} +{"$label":"ACTS_IN","name":"Boot","type":"Role","_key":"46951","_from":"18768","_to":"30961"} +{"$label":"ACTS_IN","name":"Designy","type":"Role","_key":"34353","_from":"18768","_to":"23558"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"33408","_from":"18768","_to":"23120"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"26131","_from":"18777","_to":"18769"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"26130","_from":"18776","_to":"18769"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"26129","_from":"18775","_to":"18769"} +{"$label":"ACTS_IN","name":"Judy Williams","type":"Role","_key":"26127","_from":"18774","_to":"18769"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"26125","_from":"18773","_to":"18769"} +{"$label":"ACTS_IN","name":"Larry Williams","type":"Role","_key":"26124","_from":"18772","_to":"18769"} +{"$label":"ACTS_IN","name":"Earl Williams","type":"Role","_key":"26123","_from":"18771","_to":"18769"} +{"$label":"DIRECTED","_key":"26122","_from":"18770","_to":"18769"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"98922","_from":"18773","_to":"58284"} +{"$label":"ACTS_IN","name":"Fiona Winters","type":"Role","_key":"71829","_from":"18773","_to":"43469"} +{"$label":"ACTS_IN","name":"Leland P. Fitzgerald","type":"Role","_key":"95280","_from":"18775","_to":"56057"} +{"$label":"ACTS_IN","name":"Richard Haywood","type":"Role","_key":"72585","_from":"18775","_to":"43767"} +{"$label":"ACTS_IN","name":"Noah Calhoun","type":"Role","_key":"67475","_from":"18775","_to":"41562"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62561","_from":"18775","_to":"39371"} +{"$label":"ACTS_IN","name":"Henry Letham","type":"Role","_key":"48004","_from":"18775","_to":"31581"} +{"$label":"ACTS_IN","name":"Dan Dunne","type":"Role","_key":"47362","_from":"18775","_to":"31196"} +{"$label":"ACTS_IN","name":"Lars Lindstrom","type":"Role","_key":"44315","_from":"18775","_to":"29535"} +{"$label":"ACTS_IN","name":"DDA William Beachum","type":"Role","_key":"41942","_from":"18775","_to":"28107"} +{"$label":"ACTS_IN","name":"Danny Balint","type":"Role","_key":"29421","_from":"18775","_to":"20874"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"26166","_from":"18799","_to":"18778"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26165","_from":"18798","_to":"18778"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26164","_from":"18797","_to":"18778"} +{"$label":"ACTS_IN","name":"Frog","type":"Role","_key":"26163","_from":"18796","_to":"18778"} +{"$label":"ACTS_IN","name":"Smokey Mountain Laurel","type":"Role","_key":"26162","_from":"18795","_to":"18778"} +{"$label":"ACTS_IN","name":"Smokey Mountain Laurel","type":"Role","_key":"26161","_from":"18794","_to":"18778"} +{"$label":"ACTS_IN","name":"Jewel","type":"Role","_key":"26160","_from":"18793","_to":"18778"} +{"$label":"ACTS_IN","name":"Trout","type":"Role","_key":"26159","_from":"18792","_to":"18778"} +{"$label":"ACTS_IN","name":"Donna Reese","type":"Role","_key":"26158","_from":"18791","_to":"18778"} +{"$label":"ACTS_IN","name":"Jimmy Reese","type":"Role","_key":"26157","_from":"18790","_to":"18778"} +{"$label":"ACTS_IN","name":"Sueleen Gay","type":"Role","_key":"26155","_from":"18789","_to":"18778"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"26153","_from":"18788","_to":"18778"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"26152","_from":"18787","_to":"18778"} +{"$label":"ACTS_IN","name":"Bud Hamilton","type":"Role","_key":"26151","_from":"18786","_to":"18778"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"26150","_from":"18785","_to":"18778"} +{"$label":"ACTS_IN","name":"Kenny Fraiser","type":"Role","_key":"26148","_from":"18784","_to":"18778"} +{"$label":"ACTS_IN","name":"Albuquerque","type":"Role","_key":"26147","_from":"18783","_to":"18778"} +{"$label":"ACTS_IN","name":"Wade Cooley","type":"Role","_key":"26141","_from":"18782","_to":"18778"} +{"$label":"ACTS_IN","name":"Tom Frank","type":"Role","_key":"26139","_from":"18781","_to":"18778"} +{"$label":"ACTS_IN","name":"Tommy Brown","type":"Role","_key":"26138","_from":"18780","_to":"18778"} +{"$label":"ACTS_IN","name":"Lady Pearl","type":"Role","_key":"26134","_from":"18779","_to":"18778"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39495","_from":"18780","_to":"26693"} +{"$label":"ACTS_IN","name":"D'Hubert","type":"Role","_key":"118592","_from":"18781","_to":"69732"} +{"$label":"ACTS_IN","name":"Jim Younger","type":"Role","_key":"101538","_from":"18781","_to":"59766"} +{"$label":"ACTS_IN","name":"Pfc. Spencer","type":"Role","_key":"90066","_from":"18781","_to":"53272"} +{"$label":"ACTS_IN","name":"Pete Culpepper","type":"Role","_key":"66688","_from":"18781","_to":"41203"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"63203","_from":"18781","_to":"39632"} +{"$label":"ACTS_IN","name":"Cap. Tom Watkins","type":"Role","_key":"45907","_from":"18781","_to":"30362"} +{"$label":"ACTS_IN","name":"Himself \/ Cameo Appearance","type":"Role","_key":"39380","_from":"18781","_to":"26628"} +{"$label":"ACTS_IN","name":"Sgt. Warren Reed","type":"Role","_key":"37782","_from":"18782","_to":"25618"} +{"$label":"ACTS_IN","name":"Ellen Andrews","type":"Role","_key":"106986","_from":"18783","_to":"63076"} +{"$label":"ACTS_IN","name":"Fanny Eubanks","type":"Role","_key":"61205","_from":"18783","_to":"38666"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"39852","_from":"18783","_to":"26930"} +{"$label":"ACTS_IN","name":"Johnny Upton (as Allan Nicholls)","type":"Role","_key":"70935","_from":"18785","_to":"43092"} +{"$label":"ACTS_IN","name":"Alison Parker","type":"Role","_key":"115246","_from":"18787","_to":"67870"} +{"$label":"ACTS_IN","name":"Milt Bisby","type":"Role","_key":"107629","_from":"18788","_to":"63525"} +{"$label":"ACTS_IN","name":"Carl J. Richards","type":"Role","_key":"50072","_from":"18788","_to":"32761"} +{"$label":"ACTS_IN","name":"Sgt. Murchison","type":"Role","_key":"35357","_from":"18788","_to":"24069"} +{"$label":"ACTS_IN","name":"Sara Willis","type":"Role","_key":"26177","_from":"18807","_to":"18800"} +{"$label":"ACTS_IN","name":"Assistent von Harris","type":"Role","_key":"26176","_from":"18806","_to":"18800"} +{"$label":"ACTS_IN","name":"Julia Black","type":"Role","_key":"26175","_from":"18805","_to":"18800"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26173","_from":"18804","_to":"18800"} +{"$label":"ACTS_IN","name":"Tania Frankenstein","type":"Role","_key":"26172","_from":"18803","_to":"18800"} +{"$label":"DIRECTED","_key":"26170","_from":"18802","_to":"18800"} +{"$label":"DIRECTED","_key":"26169","_from":"18801","_to":"18800"} +{"$label":"ACTS_IN","name":"Caedmon","type":"Role","_key":"46082","_from":"18801","_to":"30444"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"27418","_from":"18803","_to":"19690"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26189","_from":"18815","_to":"18808"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"26188","_from":"18814","_to":"18808"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"26187","_from":"18813","_to":"18808"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"26186","_from":"18812","_to":"18808"} +{"$label":"ACTS_IN","name":"Beggar Girl","type":"Role","_key":"26185","_from":"18811","_to":"18808"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"26184","_from":"18810","_to":"18808"} +{"$label":"DIRECTED","_key":"26180","_from":"18809","_to":"18808"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26655","_from":"18809","_to":"19158"} +{"$label":"ACTS_IN","name":"Vladek","type":"Role","_key":"27588","_from":"18810","_to":"19780"} +{"$label":"ACTS_IN","name":"Dr. Hedgepath","type":"Role","_key":"114494","_from":"18812","_to":"67443"} +{"$label":"ACTS_IN","name":"Sloth","type":"Role","_key":"115346","_from":"18814","_to":"67907"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"26197","_from":"18823","_to":"18816"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26196","_from":"18822","_to":"18816"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"26195","_from":"18821","_to":"18816"} +{"$label":"ACTS_IN","name":"Strange","type":"Role","_key":"26194","_from":"18820","_to":"18816"} +{"$label":"ACTS_IN","name":"Mike Howard","type":"Role","_key":"26193","_from":"18819","_to":"18816"} +{"$label":"ACTS_IN","name":"Dr. Duryea alias Frankenstein","type":"Role","_key":"26191","_from":"18818","_to":"18816"} +{"$label":"DIRECTED","_key":"26190","_from":"18817","_to":"18816"} +{"$label":"DIRECTED","_key":"115596","_from":"18817","_to":"68049"} +{"$label":"ACTS_IN","name":"Lieutenant C.J. Cristoforos","type":"Role","_key":"116669","_from":"18818","_to":"68678"} +{"$label":"ACTS_IN","name":"Mr. Noel","type":"Role","_key":"114912","_from":"18818","_to":"67681"} +{"$label":"ACTS_IN","name":"Cahusac","type":"Role","_key":"110438","_from":"18818","_to":"65236"} +{"$label":"ACTS_IN","name":"Clint Braden","type":"Role","_key":"117125","_from":"18819","_to":"68912"} +{"$label":"ACTS_IN","name":"Voodoo Dancer \/ Party Stripper","type":"Role","_key":"115594","_from":"18823","_to":"68049"} +{"$label":"ACTS_IN","name":"Bud Wiley ( voice )","type":"Role","_key":"26206","_from":"18830","_to":"18824"} +{"$label":"ACTS_IN","name":"Mr. Yesman ( voice )","type":"Role","_key":"26205","_from":"18829","_to":"18824"} +{"$label":"ACTS_IN","name":"Dave ( voice )","type":"Role","_key":"26204","_from":"18828","_to":"18824"} +{"$label":"ACTS_IN","name":"Mutter ( voice )","type":"Role","_key":"26202","_from":"18827","_to":"18824"} +{"$label":"ACTS_IN","name":"Simon ( voice )","type":"Role","_key":"26199","_from":"18826","_to":"18824"} +{"$label":"DIRECTED","_key":"26198","_from":"18825","_to":"18824"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"113627","_from":"18827","_to":"66966"} +{"$label":"ACTS_IN","name":"Batgirl","type":"Role","_key":"105983","_from":"18827","_to":"62398"} +{"$label":"ACTS_IN","name":"Sheila Broflovski \/ Shelley Marsh \/ Other Women (voice)","type":"Role","_key":"93896","_from":"18827","_to":"55284"} +{"$label":"ACTS_IN","name":"Liane Cartman","type":"Role","_key":"54081","_from":"18827","_to":"34778"} +{"$label":"ACTS_IN","name":"James Gordon","type":"Role","_key":"97187","_from":"18829","_to":"57172"} +{"$label":"ACTS_IN","name":"Henry (voice)","type":"Role","_key":"115874","_from":"18830","_to":"68225"} +{"$label":"ACTS_IN","name":"Sojo \/ The Black Samurai (voice)","type":"Role","_key":"109052","_from":"18830","_to":"64441"} +{"$label":"ACTS_IN","name":"Mordo","type":"Role","_key":"101928","_from":"18830","_to":"59989"} +{"$label":"ACTS_IN","name":"Lucius Fox \/ Avery \/ Wounded Man \/ Bulky Man","type":"Role","_key":"97199","_from":"18830","_to":"57172"} +{"$label":"ACTS_IN","name":"Samuel Irons \/ Pendleton \/ Miner (voice)","type":"Role","_key":"93349","_from":"18830","_to":"54987"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"26217","_from":"18836","_to":"18831"} +{"$label":"ACTS_IN","name":"Pr\u00e4sident","type":"Role","_key":"26216","_from":"18835","_to":"18831"} +{"$label":"ACTS_IN","name":"Dwart","type":"Role","_key":"26215","_from":"18834","_to":"18831"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"26212","_from":"18833","_to":"18831"} +{"$label":"ACTS_IN","name":"Dr. Hans Kleve","type":"Role","_key":"26210","_from":"18832","_to":"18831"} +{"$label":"ACTS_IN","name":"Charles Kent","type":"Role","_key":"111133","_from":"18832","_to":"65637"} +{"$label":"ACTS_IN","name":"Alan Bernard","type":"Role","_key":"71852","_from":"18833","_to":"43479"} +{"$label":"ACTS_IN","name":"Captain - 'Hood'","type":"Role","_key":"117467","_from":"18836","_to":"69075"} +{"$label":"ACTS_IN","name":"Barton - The detective","type":"Role","_key":"102693","_from":"18836","_to":"60415"} +{"$label":"ACTS_IN","name":"Jimmy Spoils","type":"Role","_key":"26230","_from":"18838","_to":"18837"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"98987","_from":"18838","_to":"58316"} +{"$label":"ACTS_IN","name":"Derek Wallace","type":"Role","_key":"64908","_from":"18838","_to":"40359"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"57274","_from":"18838","_to":"36323"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"32597","_from":"18838","_to":"22651"} +{"$label":"ACTS_IN","name":"Officer McCain","type":"Role","_key":"26245","_from":"18843","_to":"18839"} +{"$label":"ACTS_IN","name":"Officer Parish","type":"Role","_key":"26244","_from":"18842","_to":"18839"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"26240","_from":"18841","_to":"18839"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"26238","_from":"18840","_to":"18839"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"117667","_from":"18840","_to":"69164"} +{"$label":"ACTS_IN","name":"Belle","type":"Role","_key":"50041","_from":"18840","_to":"32751"} +{"$label":"ACTS_IN","name":"Julie Bascome","type":"Role","_key":"39904","_from":"18840","_to":"26959"} +{"$label":"ACTS_IN","name":"Dragan","type":"Role","_key":"34331","_from":"18841","_to":"23533"} +{"$label":"ACTS_IN","name":"Trooper","type":"Role","_key":"26254","_from":"18849","_to":"18844"} +{"$label":"ACTS_IN","name":"Cato","type":"Role","_key":"26253","_from":"18848","_to":"18844"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"26252","_from":"18847","_to":"18844"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"26251","_from":"18846","_to":"18844"} +{"$label":"DIRECTED","_key":"26247","_from":"18845","_to":"18844"} +{"$label":"DIRECTED","_key":"109712","_from":"18845","_to":"64794"} +{"$label":"DIRECTED","_key":"69629","_from":"18845","_to":"42500"} +{"$label":"DIRECTED","_key":"51743","_from":"18845","_to":"33765"} +{"$label":"DIRECTED","_key":"50657","_from":"18845","_to":"33066"} +{"$label":"ACTS_IN","name":"Radouan","type":"Role","_key":"26258","_from":"18854","_to":"18850"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"26257","_from":"18853","_to":"18850"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"26256","_from":"18852","_to":"18850"} +{"$label":"DIRECTED","_key":"26255","_from":"18851","_to":"18850"} +{"$label":"ACTS_IN","name":"Said","type":"Role","_key":"41174","_from":"18854","_to":"27708"} +{"$label":"ACTS_IN","name":"Hustler","type":"Role","_key":"26267","_from":"18864","_to":"18855"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"26266","_from":"18863","_to":"18855"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"26265","_from":"18862","_to":"18855"} +{"$label":"ACTS_IN","name":"Curly","type":"Role","_key":"26264","_from":"18861","_to":"18855"} +{"$label":"ACTS_IN","name":"Iggy","type":"Role","_key":"26263","_from":"18860","_to":"18855"} +{"$label":"ACTS_IN","name":"Bernie Stein","type":"Role","_key":"26262","_from":"18859","_to":"18855"} +{"$label":"ACTS_IN","name":"Frankie Stein","type":"Role","_key":"26261","_from":"18858","_to":"18855"} +{"$label":"ACTS_IN","name":"The King","type":"Role","_key":"26260","_from":"18857","_to":"18855"} +{"$label":"DIRECTED","_key":"26259","_from":"18856","_to":"18855"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"26275","_from":"18870","_to":"18865"} +{"$label":"ACTS_IN","name":"Bailiff","type":"Role","_key":"26274","_from":"18869","_to":"18865"} +{"$label":"ACTS_IN","name":"Kassner","type":"Role","_key":"26273","_from":"18868","_to":"18865"} +{"$label":"ACTS_IN","name":"Alys","type":"Role","_key":"26269","_from":"18867","_to":"18865"} +{"$label":"DIRECTED","_key":"26268","_from":"18866","_to":"18865"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26677","_from":"18866","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26664","_from":"18866","_to":"19158"} +{"$label":"ACTS_IN","name":"Prof. Prudence","type":"Role","_key":"70739","_from":"18869","_to":"43020"} +{"$label":"ACTS_IN","name":"Dr. Kita","type":"Role","_key":"26281","_from":"18872","_to":"18871"} +{"$label":"ACTS_IN","name":"Kurazo Kaneko","type":"Role","_key":"115066","_from":"18872","_to":"67755"} +{"$label":"ACTS_IN","name":"Museums Chef","type":"Role","_key":"26401","_from":"18872","_to":"18962"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26296","_from":"18885","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26295","_from":"18884","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26294","_from":"18883","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26293","_from":"18882","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26292","_from":"18881","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26291","_from":"18880","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26290","_from":"18879","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26289","_from":"18878","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26287","_from":"18877","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26286","_from":"18876","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26285","_from":"18875","_to":"18873"} +{"$label":"DIRECTED","_key":"26284","_from":"18874","_to":"18873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26665","_from":"18874","_to":"19158"} +{"$label":"DIRECTED","_key":"26577","_from":"18874","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26736","_from":"18875","_to":"19220"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26579","_from":"18875","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26583","_from":"18878","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26673","_from":"18879","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26656","_from":"18879","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26584","_from":"18882","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26660","_from":"18883","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26585","_from":"18883","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26587","_from":"18884","_to":"19099"} +{"$label":"ACTS_IN","name":"Caronda","type":"Role","_key":"26304","_from":"18890","_to":"18886"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"26302","_from":"18889","_to":"18886"} +{"$label":"ACTS_IN","name":"Lt. Arco","type":"Role","_key":"26301","_from":"18888","_to":"18886"} +{"$label":"DIRECTED","_key":"26297","_from":"18887","_to":"18886"} +{"$label":"ACTS_IN","name":"Arnolfini","type":"Role","_key":"91471","_from":"18889","_to":"53933"} +{"$label":"ACTS_IN","name":"Fausto Moretti","type":"Role","_key":"90185","_from":"18890","_to":"53321"} +{"$label":"ACTS_IN","name":"Luisa's lover","type":"Role","_key":"26986","_from":"18890","_to":"19403"} +{"$label":"ACTS_IN","name":"Jensen","type":"Role","_key":"26314","_from":"18899","_to":"18891"} +{"$label":"ACTS_IN","name":"Lonny Curry","type":"Role","_key":"26313","_from":"18898","_to":"18891"} +{"$label":"ACTS_IN","name":"Dr. Rudolf Frankenstein","type":"Role","_key":"26312","_from":"18897","_to":"18891"} +{"$label":"ACTS_IN","name":"Marshal MacPhee","type":"Role","_key":"26311","_from":"18896","_to":"18891"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"26310","_from":"18895","_to":"18891"} +{"$label":"ACTS_IN","name":"Dr. Maria Frankenstein","type":"Role","_key":"26308","_from":"18894","_to":"18891"} +{"$label":"ACTS_IN","name":"Jesse James","type":"Role","_key":"26307","_from":"18893","_to":"18891"} +{"$label":"DIRECTED","_key":"26306","_from":"18892","_to":"18891"} +{"$label":"ACTS_IN","name":"Paul, Headwaiter","type":"Role","_key":"110996","_from":"18897","_to":"65556"} +{"$label":"ACTS_IN","name":"Dr. Graff","type":"Role","_key":"29888","_from":"18897","_to":"21135"} +{"$label":"ACTS_IN","name":"Dr. Schmidt","type":"Role","_key":"29195","_from":"18897","_to":"20782"} +{"$label":"ACTS_IN","name":"Uncle Pio","type":"Role","_key":"28699","_from":"18897","_to":"20507"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"43964","_from":"18898","_to":"29320"} +{"$label":"DIRECTED","_key":"26315","_from":"18901","_to":"18900"} +{"$label":"DIRECTED","_key":"100168","_from":"18901","_to":"59087"} +{"$label":"ACTS_IN","name":"Dr. Skip","type":"Role","_key":"26326","_from":"18911","_to":"18902"} +{"$label":"ACTS_IN","name":"Mildred Pennys","type":"Role","_key":"26325","_from":"18910","_to":"18902"} +{"$label":"ACTS_IN","name":"Verna","type":"Role","_key":"26324","_from":"18909","_to":"18902"} +{"$label":"ACTS_IN","name":"Dr. Saperstein","type":"Role","_key":"26323","_from":"18908","_to":"18902"} +{"$label":"ACTS_IN","name":"Dr. Dixon","type":"Role","_key":"26322","_from":"18907","_to":"18902"} +{"$label":"ACTS_IN","name":"Dr. Singleton","type":"Role","_key":"26320","_from":"18906","_to":"18902"} +{"$label":"ACTS_IN","name":"Dr. Reutgar","type":"Role","_key":"26319","_from":"18905","_to":"18902"} +{"$label":"ACTS_IN","name":"Iggy","type":"Role","_key":"26318","_from":"18904","_to":"18902"} +{"$label":"DIRECTED","_key":"26316","_from":"18903","_to":"18902"} +{"$label":"ACTS_IN","name":"Earl 'Brother Boy' Ingram","type":"Role","_key":"118676","_from":"18904","_to":"69773"} +{"$label":"ACTS_IN","name":"Past","type":"Role","_key":"109133","_from":"18904","_to":"64473"} +{"$label":"ACTS_IN","name":"Amazing Larry","type":"Role","_key":"38599","_from":"18908","_to":"26073"} +{"$label":"ACTS_IN","name":"Dr. Nadir","type":"Role","_key":"26453","_from":"18908","_to":"19008"} +{"$label":"ACTS_IN","name":"Black Helmet Man (voice)","type":"Role","_key":"102588","_from":"18911","_to":"60357"} +{"$label":"ACTS_IN","name":"Hugh Neutron (voice)","type":"Role","_key":"90484","_from":"18911","_to":"53459"} +{"$label":"ACTS_IN","name":"Fly","type":"Role","_key":"57846","_from":"18911","_to":"36606"} +{"$label":"ACTS_IN","name":"Jordy","type":"Role","_key":"26335","_from":"18917","_to":"18912"} +{"$label":"ACTS_IN","name":"Tuttle","type":"Role","_key":"26331","_from":"18916","_to":"18912"} +{"$label":"ACTS_IN","name":"Macy","type":"Role","_key":"26330","_from":"18915","_to":"18912"} +{"$label":"ACTS_IN","name":"Lance Kipple","type":"Role","_key":"26329","_from":"18914","_to":"18912"} +{"$label":"DIRECTED","_key":"26327","_from":"18913","_to":"18912"} +{"$label":"ACTS_IN","name":"Kate Reeves","type":"Role","_key":"95440","_from":"18915","_to":"56146"} +{"$label":"ACTS_IN","name":"Reba","type":"Role","_key":"91726","_from":"18915","_to":"54107"} +{"$label":"DIRECTED","_key":"26336","_from":"18919","_to":"18918"} +{"$label":"DIRECTED","_key":"36202","_from":"18919","_to":"24564"} +{"$label":"DIRECTED","_key":"26366","_from":"18919","_to":"18940"} +{"$label":"DIRECTED","_key":"26360","_from":"18919","_to":"18936"} +{"$label":"DIRECTED","_key":"26349","_from":"18919","_to":"18929"} +{"$label":"DIRECTED","_key":"26347","_from":"18919","_to":"18928"} +{"$label":"DIRECTED","_key":"26338","_from":"18919","_to":"18920"} +{"$label":"ACTS_IN","name":"Brother","type":"Role","_key":"26346","_from":"18927","_to":"18920"} +{"$label":"ACTS_IN","name":"Sister","type":"Role","_key":"26345","_from":"18926","_to":"18920"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"26344","_from":"18925","_to":"18920"} +{"$label":"ACTS_IN","name":"Marisa","type":"Role","_key":"26343","_from":"18924","_to":"18920"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"26342","_from":"18923","_to":"18920"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"26341","_from":"18922","_to":"18920"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"26340","_from":"18921","_to":"18920"} +{"$label":"ACTS_IN","name":"Splatter-Porn Star Steve","type":"Role","_key":"26357","_from":"18923","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Hero Zorro","type":"Role","_key":"26351","_from":"18925","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Victim Magdalena","type":"Role","_key":"26356","_from":"18926","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Victim Medea","type":"Role","_key":"26358","_from":"18935","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Goddess Vicky","type":"Role","_key":"26355","_from":"18934","_to":"18929"} +{"$label":"ACTS_IN","name":"Sister","type":"Role","_key":"26354","_from":"18933","_to":"18929"} +{"$label":"ACTS_IN","name":"Brother","type":"Role","_key":"26353","_from":"18932","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Hero Q","type":"Role","_key":"26352","_from":"18931","_to":"18929"} +{"$label":"ACTS_IN","name":"Splatter-Lady O","type":"Role","_key":"26350","_from":"18930","_to":"18929"} +{"$label":"ACTS_IN","name":"Homme 1","type":"Role","_key":"26364","_from":"18939","_to":"18936"} +{"$label":"ACTS_IN","name":"La Femme","type":"Role","_key":"26363","_from":"18938","_to":"18936"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"26361","_from":"18937","_to":"18936"} +{"$label":"ACTS_IN","name":"Samanta","type":"Role","_key":"26376","_from":"18947","_to":"18940"} +{"$label":"ACTS_IN","name":"Toto","type":"Role","_key":"26375","_from":"18946","_to":"18940"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"26374","_from":"18945","_to":"18940"} +{"$label":"ACTS_IN","name":"Michele","type":"Role","_key":"26373","_from":"18944","_to":"18940"} +{"$label":"ACTS_IN","name":"Gianni","type":"Role","_key":"26372","_from":"18943","_to":"18940"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"26371","_from":"18942","_to":"18940"} +{"$label":"ACTS_IN","name":"Massimo","type":"Role","_key":"26369","_from":"18941","_to":"18940"} +{"$label":"ACTS_IN","name":"Paisan","type":"Role","_key":"26391","_from":"18961","_to":"18948"} +{"$label":"ACTS_IN","name":"Jenny Hansen","type":"Role","_key":"26390","_from":"18960","_to":"18948"} +{"$label":"ACTS_IN","name":"Krista Lauder","type":"Role","_key":"26389","_from":"18959","_to":"18948"} +{"$label":"ACTS_IN","name":"Valda","type":"Role","_key":"26388","_from":"18958","_to":"18948"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"26387","_from":"18957","_to":"18948"} +{"$label":"ACTS_IN","name":"Maria Frankenstein","type":"Role","_key":"26386","_from":"18956","_to":"18948"} +{"$label":"ACTS_IN","name":"Ook","type":"Role","_key":"26385","_from":"18955","_to":"18948"} +{"$label":"ACTS_IN","name":"Kreegin","type":"Role","_key":"26384","_from":"18954","_to":"18948"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"26383","_from":"18953","_to":"18948"} +{"$label":"ACTS_IN","name":"Goliath","type":"Role","_key":"26382","_from":"18952","_to":"18948"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"26381","_from":"18951","_to":"18948"} +{"$label":"ACTS_IN","name":"Genz","type":"Role","_key":"26379","_from":"18950","_to":"18948"} +{"$label":"DIRECTED","_key":"26377","_from":"18949","_to":"18948"} +{"$label":"ACTS_IN","name":"The Janitor","type":"Role","_key":"37421","_from":"18949","_to":"25358"} +{"$label":"ACTS_IN","name":"Burton","type":"Role","_key":"91324","_from":"18951","_to":"53862"} +{"$label":"ACTS_IN","name":"Obro","type":"Role","_key":"46182","_from":"18951","_to":"30524"} +{"$label":"ACTS_IN","name":"Egyptian Guard","type":"Role","_key":"44982","_from":"18951","_to":"29886"} +{"$label":"ACTS_IN","name":"Chris Forest","type":"Role","_key":"37655","_from":"18951","_to":"25529"} +{"$label":"ACTS_IN","name":"Mr. Temple","type":"Role","_key":"35926","_from":"18951","_to":"24396"} +{"$label":"ACTS_IN","name":"The Killer","type":"Role","_key":"33021","_from":"18951","_to":"22890"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"27820","_from":"18951","_to":"19941"} +{"$label":"ACTS_IN","name":"Dr. Otto Frankenstein","type":"Role","_key":"26825","_from":"18951","_to":"19278"} +{"$label":"ACTS_IN","name":"Mosaic","type":"Role","_key":"26827","_from":"18954","_to":"19278"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"43942","_from":"18959","_to":"29311"} +{"$label":"ACTS_IN","name":"Margot Rau","type":"Role","_key":"39801","_from":"18959","_to":"26893"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"26399","_from":"18964","_to":"18962"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26397","_from":"18963","_to":"18962"} +{"$label":"ACTS_IN","name":"Rear Admiral Tamon Yamaguchi","type":"Role","_key":"68272","_from":"18964","_to":"41908"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26407","_from":"18970","_to":"18965"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26406","_from":"18969","_to":"18965"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26405","_from":"18968","_to":"18965"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26403","_from":"18967","_to":"18965"} +{"$label":"DIRECTED","_key":"26402","_from":"18966","_to":"18965"} +{"$label":"ACTS_IN","name":"Nelson's Bed-mate","type":"Role","_key":"26420","_from":"18982","_to":"18971"} +{"$label":"ACTS_IN","name":"Hospital Attendant","type":"Role","_key":"26419","_from":"18981","_to":"18971"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"26418","_from":"18980","_to":"18971"} +{"$label":"ACTS_IN","name":"Mrs. Wayne","type":"Role","_key":"26417","_from":"18979","_to":"18971"} +{"$label":"ACTS_IN","name":"Bruno Strager","type":"Role","_key":"26416","_from":"18978","_to":"18971"} +{"$label":"ACTS_IN","name":"Eleanor","type":"Role","_key":"26415","_from":"18977","_to":"18971"} +{"$label":"ACTS_IN","name":"Malcomb","type":"Role","_key":"26414","_from":"18976","_to":"18971"} +{"$label":"ACTS_IN","name":"Eddie Turner","type":"Role","_key":"26413","_from":"18975","_to":"18971"} +{"$label":"ACTS_IN","name":"Dr. Walker","type":"Role","_key":"26412","_from":"18974","_to":"18971"} +{"$label":"ACTS_IN","name":"Dr. Stein","type":"Role","_key":"26411","_from":"18973","_to":"18971"} +{"$label":"DIRECTED","_key":"26410","_from":"18972","_to":"18971"} +{"$label":"ACTS_IN","name":"Marjorie Lundeen","type":"Role","_key":"117862","_from":"18977","_to":"69289"} +{"$label":"ACTS_IN","name":"Muffy St. Jacques","type":"Role","_key":"99320","_from":"18982","_to":"58520"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"26433","_from":"18992","_to":"18983"} +{"$label":"ACTS_IN","name":"Morpho","type":"Role","_key":"26432","_from":"18984","_to":"18983"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"26431","_from":"18991","_to":"18983"} +{"$label":"ACTS_IN","name":"Tanner","type":"Role","_key":"26430","_from":"18990","_to":"18983"} +{"$label":"ACTS_IN","name":"Madame Orloff","type":"Role","_key":"26428","_from":"18989","_to":"18983"} +{"$label":"ACTS_IN","name":"Monstruo","type":"Role","_key":"26427","_from":"18988","_to":"18983"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"26426","_from":"18987","_to":"18983"} +{"$label":"ACTS_IN","name":"Vera Frankenstein","type":"Role","_key":"26425","_from":"18986","_to":"18983"} +{"$label":"ACTS_IN","name":"Dr. Seward","type":"Role","_key":"26422","_from":"18985","_to":"18983"} +{"$label":"DIRECTED","_key":"26421","_from":"18984","_to":"18983"} +{"$label":"DIRECTED","_key":"111965","_from":"18984","_to":"66086"} +{"$label":"DIRECTED","_key":"38123","_from":"18984","_to":"25779"} +{"$label":"DIRECTED","_key":"38108","_from":"18984","_to":"25774"} +{"$label":"DIRECTED","_key":"38085","_from":"18984","_to":"25759"} +{"$label":"DIRECTED","_key":"38069","_from":"18984","_to":"25754"} +{"$label":"DIRECTED","_key":"27413","_from":"18984","_to":"19690"} +{"$label":"DIRECTED","_key":"27393","_from":"18984","_to":"19679"} +{"$label":"DIRECTED","_key":"26752","_from":"18984","_to":"19227"} +{"$label":"DIRECTED","_key":"26532","_from":"18984","_to":"19069"} +{"$label":"ACTS_IN","name":"Memmet","type":"Role","_key":"111962","_from":"18984","_to":"66086"} +{"$label":"ACTS_IN","name":"Tino Celli","type":"Role","_key":"38119","_from":"18984","_to":"25774"} +{"$label":"ACTS_IN","name":"Van Helsing's Servant","type":"Role","_key":"38083","_from":"18984","_to":"25754"} +{"$label":"ACTS_IN","name":"Insp. Ahmet","type":"Role","_key":"27423","_from":"18984","_to":"19690"} +{"$label":"ACTS_IN","name":"Irving Lambert","type":"Role","_key":"38118","_from":"18985","_to":"25774"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"28600","_from":"18985","_to":"20439"} +{"$label":"ACTS_IN","name":"Dr. Seward","type":"Role","_key":"26542","_from":"18985","_to":"19069"} +{"$label":"ACTS_IN","name":"First Victim","type":"Role","_key":"26538","_from":"18987","_to":"19069"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26535","_from":"18988","_to":"19069"} +{"$label":"ACTS_IN","name":"Vampir Girl","type":"Role","_key":"26539","_from":"18989","_to":"19069"} +{"$label":"ACTS_IN","name":"Loulou","type":"Role","_key":"38095","_from":"18992","_to":"25759"} +{"$label":"ACTS_IN","name":"Moira Frankenstein","type":"Role","_key":"26754","_from":"18992","_to":"19227"} +{"$label":"ACTS_IN","name":"Douglas Row","type":"Role","_key":"26441","_from":"19000","_to":"18993"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26440","_from":"18999","_to":"18993"} +{"$label":"ACTS_IN","name":"Shuter","type":"Role","_key":"26439","_from":"18998","_to":"18993"} +{"$label":"ACTS_IN","name":"Judy Stevens","type":"Role","_key":"26438","_from":"18997","_to":"18993"} +{"$label":"ACTS_IN","name":"Mike Shaw","type":"Role","_key":"26437","_from":"18996","_to":"18993"} +{"$label":"ACTS_IN","name":"Carolyn Hayes","type":"Role","_key":"26436","_from":"18995","_to":"18993"} +{"$label":"DIRECTED","_key":"26434","_from":"18994","_to":"18993"} +{"$label":"ACTS_IN","name":"Daisy Bricker","type":"Role","_key":"116570","_from":"18995","_to":"68613"} +{"$label":"ACTS_IN","name":"Jody Simmons (as Donald Barry)","type":"Role","_key":"108757","_from":"19000","_to":"64290"} +{"$label":"ACTS_IN","name":"Red Roxy","type":"Role","_key":"43593","_from":"19000","_to":"29106"} +{"$label":"ACTS_IN","name":"Dino","type":"Role","_key":"26448","_from":"19007","_to":"19001"} +{"$label":"ACTS_IN","name":"Mark Eden","type":"Role","_key":"26447","_from":"19006","_to":"19001"} +{"$label":"ACTS_IN","name":"Sheila Frankenstein van Helsing","type":"Role","_key":"26446","_from":"19005","_to":"19001"} +{"$label":"ACTS_IN","name":"Dr. van Helsing","type":"Role","_key":"26445","_from":"19004","_to":"19001"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"26444","_from":"19003","_to":"19001"} +{"$label":"DIRECTED","_key":"26442","_from":"19002","_to":"19001"} +{"$label":"ACTS_IN","name":"Poster Girl","type":"Role","_key":"26459","_from":"19015","_to":"19008"} +{"$label":"ACTS_IN","name":"Spaceman","type":"Role","_key":"26457","_from":"19014","_to":"19008"} +{"$label":"ACTS_IN","name":"Frank Saunders alias Frankenstein","type":"Role","_key":"26456","_from":"19013","_to":"19008"} +{"$label":"ACTS_IN","name":"General Bowens","type":"Role","_key":"26455","_from":"19012","_to":"19008"} +{"$label":"ACTS_IN","name":"Karen Grant","type":"Role","_key":"26454","_from":"19011","_to":"19008"} +{"$label":"ACTS_IN","name":"Princess Marcuzan","type":"Role","_key":"26451","_from":"19010","_to":"19008"} +{"$label":"DIRECTED","_key":"26450","_from":"19009","_to":"19008"} +{"$label":"ACTS_IN","name":"Ralph Statler","type":"Role","_key":"90896","_from":"19014","_to":"53624"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"26462","_from":"19019","_to":"19017"} +{"$label":"DIRECTED","_key":"26460","_from":"19018","_to":"19017"} +{"$label":"ACTS_IN","name":"Adult Thumper","type":"Role","_key":"26471","_from":"19027","_to":"19021"} +{"$label":"ACTS_IN","name":"Mrs. Quail (voice)","type":"Role","_key":"26470","_from":"19026","_to":"19021"} +{"$label":"ACTS_IN","name":"Adult Thumper (voice)","type":"Role","_key":"26469","_from":"19025","_to":"19021"} +{"$label":"ACTS_IN","name":"Young Thumper","type":"Role","_key":"26467","_from":"19024","_to":"19021"} +{"$label":"ACTS_IN","name":"Young Flower","type":"Role","_key":"26466","_from":"19023","_to":"19021"} +{"$label":"ACTS_IN","name":"Young Bambi (voice)","type":"Role","_key":"26465","_from":"19022","_to":"19021"} +{"$label":"ACTS_IN","name":"Lieutenant Birdwell","type":"Role","_key":"104690","_from":"19025","_to":"61589"} +{"$label":"DIRECTED","_key":"26472","_from":"19029","_to":"19028"} +{"$label":"ACTS_IN","name":"Claire\/Pink Boots","type":"Role","_key":"26482","_from":"19036","_to":"19030"} +{"$label":"ACTS_IN","name":"Mildred Kronenberg","type":"Role","_key":"26481","_from":"19035","_to":"19030"} +{"$label":"ACTS_IN","name":"Cheri","type":"Role","_key":"26480","_from":"19034","_to":"19030"} +{"$label":"ACTS_IN","name":"Cloe Miller","type":"Role","_key":"26479","_from":"19033","_to":"19030"} +{"$label":"ACTS_IN","name":"Darill Miller","type":"Role","_key":"26478","_from":"19032","_to":"19030"} +{"$label":"ACTS_IN","name":"Charles Wheeler","type":"Role","_key":"26477","_from":"19031","_to":"19030"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"110610","_from":"19032","_to":"65352"} +{"$label":"ACTS_IN","name":"Dr. Sweet","type":"Role","_key":"90056","_from":"19032","_to":"53263"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"47563","_from":"19032","_to":"31338"} +{"$label":"ACTS_IN","name":"The Consultant","type":"Role","_key":"35141","_from":"19032","_to":"23951"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"28400","_from":"19032","_to":"20316"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"69059","_from":"19033","_to":"42267"} +{"$label":"ACTS_IN","name":"Jack's Receptionist","type":"Role","_key":"47210","_from":"19033","_to":"31110"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"101251","_from":"19034","_to":"59627"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"88541","_from":"19034","_to":"52472"} +{"$label":"ACTS_IN","name":"Leann Cole","type":"Role","_key":"45172","_from":"19034","_to":"29971"} +{"$label":"ACTS_IN","name":"Georgia Mirabeau","type":"Role","_key":"32892","_from":"19034","_to":"22825"} +{"$label":"ACTS_IN","name":"Eleonore","type":"Role","_key":"118262","_from":"19036","_to":"69515"} +{"$label":"ACTS_IN","name":"Carole Dawson","type":"Role","_key":"68311","_from":"19036","_to":"41931"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"65004","_from":"19036","_to":"40401"} +{"$label":"ACTS_IN","name":"Cadence Flaherty","type":"Role","_key":"48710","_from":"19036","_to":"31948"} +{"$label":"ACTS_IN","name":"Lou Ann Norton","type":"Role","_key":"47891","_from":"19036","_to":"31514"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"26491","_from":"19045","_to":"19037"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"26490","_from":"19044","_to":"19037"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"26489","_from":"19043","_to":"19037"} +{"$label":"ACTS_IN","name":"Aorn","type":"Role","_key":"26488","_from":"19042","_to":"19037"} +{"$label":"ACTS_IN","name":"Fon","type":"Role","_key":"26487","_from":"19041","_to":"19037"} +{"$label":"ACTS_IN","name":"Kong","type":"Role","_key":"26486","_from":"19040","_to":"19037"} +{"$label":"DIRECTED","_key":"26485","_from":"19039","_to":"19037"} +{"$label":"DIRECTED","_key":"26484","_from":"19038","_to":"19037"} +{"$label":"DIRECTED","_key":"93283","_from":"19038","_to":"54950"} +{"$label":"DIRECTED","_key":"62955","_from":"19038","_to":"39531"} +{"$label":"DIRECTED","_key":"62055","_from":"19038","_to":"39077"} +{"$label":"DIRECTED","_key":"58650","_from":"19038","_to":"37053"} +{"$label":"DIRECTED","_key":"93282","_from":"19039","_to":"54950"} +{"$label":"DIRECTED","_key":"58651","_from":"19039","_to":"37053"} +{"$label":"DIRECTED","_key":"26492","_from":"19047","_to":"19046"} +{"$label":"ACTS_IN","name":"Seamus Feeny","type":"Role","_key":"26509","_from":"19057","_to":"19048"} +{"$label":"ACTS_IN","name":"Lord Bullingdon","type":"Role","_key":"26508","_from":"19056","_to":"19048"} +{"$label":"ACTS_IN","name":"Rev. Samuel Runt","type":"Role","_key":"26505","_from":"19055","_to":"19048"} +{"$label":"ACTS_IN","name":"Belle, Barry's mother","type":"Role","_key":"26504","_from":"19054","_to":"19048"} +{"$label":"ACTS_IN","name":"Nora Brady","type":"Role","_key":"26503","_from":"19053","_to":"19048"} +{"$label":"ACTS_IN","name":"Captain Feeny","type":"Role","_key":"26499","_from":"19052","_to":"19048"} +{"$label":"ACTS_IN","name":"Sir Charles Reginald Lyndon","type":"Role","_key":"26498","_from":"19051","_to":"19048"} +{"$label":"ACTS_IN","name":"Capt. Potzdorf","type":"Role","_key":"26496","_from":"19050","_to":"19048"} +{"$label":"ACTS_IN","name":"Lady Lyndon","type":"Role","_key":"26495","_from":"19049","_to":"19048"} +{"$label":"ACTS_IN","name":"La m\u00e8re","type":"Role","_key":"112077","_from":"19049","_to":"66172"} +{"$label":"ACTS_IN","name":"Natalia Landauer","type":"Role","_key":"65775","_from":"19049","_to":"40710"} +{"$label":"ACTS_IN","name":"Aschenbachs Frau","type":"Role","_key":"44342","_from":"19049","_to":"29549"} +{"$label":"ACTS_IN","name":"The Caliph's Wife","type":"Role","_key":"31443","_from":"19049","_to":"21964"} +{"$label":"ACTS_IN","name":"Kurt Muller","type":"Role","_key":"69533","_from":"19050","_to":"42468"} +{"$label":"ACTS_IN","name":"Heinrich Dorfmann","type":"Role","_key":"61896","_from":"19050","_to":"38954"} +{"$label":"ACTS_IN","name":"Lt. Pieter Coetze","type":"Role","_key":"45674","_from":"19050","_to":"30229"} +{"$label":"ACTS_IN","name":"Karl genannt Kalle","type":"Role","_key":"45116","_from":"19050","_to":"29944"} +{"$label":"ACTS_IN","name":"Peter Heinzmann","type":"Role","_key":"32357","_from":"19050","_to":"22533"} +{"$label":"ACTS_IN","name":"Windsor","type":"Role","_key":"47690","_from":"19051","_to":"31415"} +{"$label":"ACTS_IN","name":"Marion Fairweather","type":"Role","_key":"33924","_from":"19054","_to":"23357"} +{"$label":"ACTS_IN","name":"Blind Man","type":"Role","_key":"121084","_from":"19055","_to":"71109"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"26562","_from":"19056","_to":"19088"} +{"$label":"ACTS_IN","name":"Shougo Kawada","type":"Role","_key":"26514","_from":"19062","_to":"19058"} +{"$label":"ACTS_IN","name":"Noriko Nakagawa","type":"Role","_key":"26513","_from":"19061","_to":"19058"} +{"$label":"ACTS_IN","name":"Shuya Nanahara","type":"Role","_key":"26512","_from":"19060","_to":"19058"} +{"$label":"DIRECTED","_key":"26510","_from":"19059","_to":"19058"} +{"$label":"DIRECTED","_key":"68280","_from":"19059","_to":"41908"} +{"$label":"DIRECTED","_key":"26517","_from":"19059","_to":"19063"} +{"$label":"ACTS_IN","name":"Light Yagami","type":"Role","_key":"107441","_from":"19060","_to":"63385"} +{"$label":"ACTS_IN","name":"Light Yagami","type":"Role","_key":"106652","_from":"19060","_to":"62844"} +{"$label":"ACTS_IN","name":"Shuya Nanahara","type":"Role","_key":"26519","_from":"19060","_to":"19063"} +{"$label":"ACTS_IN","name":"Shiori Kitano","type":"Role","_key":"26520","_from":"19065","_to":"19063"} +{"$label":"DIRECTED","_key":"26516","_from":"19064","_to":"19063"} +{"$label":"DIRECTED","_key":"110186","_from":"19064","_to":"65119"} +{"$label":"DIRECTED","_key":"97091","_from":"19064","_to":"57112"} +{"$label":"ACTS_IN","name":"Chiyo","type":"Role","_key":"40130","_from":"19065","_to":"27084"} +{"$label":"DIRECTED","_key":"26522","_from":"19067","_to":"19066"} +{"$label":"ACTS_IN","name":"Werwolf","type":"Role","_key":"26541","_from":"19072","_to":"19069"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"26537","_from":"19071","_to":"19069"} +{"$label":"ACTS_IN","name":"Amira","type":"Role","_key":"26536","_from":"19070","_to":"19069"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"26549","_from":"19079","_to":"19073"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"26548","_from":"19078","_to":"19073"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"26546","_from":"19077","_to":"19073"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"26545","_from":"19076","_to":"19073"} +{"$label":"ACTS_IN","name":"Billy Frankenstein","type":"Role","_key":"26544","_from":"19075","_to":"19073"} +{"$label":"DIRECTED","_key":"26543","_from":"19074","_to":"19073"} +{"$label":"DIRECTED","_key":"39254","_from":"19074","_to":"26549"} +{"$label":"DIRECTED","_key":"39080","_from":"19074","_to":"26424"} +{"$label":"DIRECTED","_key":"39070","_from":"19074","_to":"26417"} +{"$label":"DIRECTED","_key":"39060","_from":"19074","_to":"26408"} +{"$label":"DIRECTED","_key":"36301","_from":"19074","_to":"24626"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26676","_from":"19074","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26663","_from":"19074","_to":"19158"} +{"$label":"ACTS_IN","name":"Valeria \/ Taipan","type":"Role","_key":"113795","_from":"19076","_to":"67046"} +{"$label":"ACTS_IN","name":"Caroline (Voice)","type":"Role","_key":"106611","_from":"19076","_to":"62814"} +{"$label":"ACTS_IN","name":"Diamond Head","type":"Role","_key":"106620","_from":"19077","_to":"62820"} +{"$label":"ACTS_IN","name":"Spottswoode (voice)","type":"Role","_key":"29408","_from":"19077","_to":"20863"} +{"$label":"ACTS_IN","name":"Kurt Kessler","type":"Role","_key":"26560","_from":"19087","_to":"19080"} +{"$label":"ACTS_IN","name":"Jan Scott","type":"Role","_key":"26559","_from":"19086","_to":"19080"} +{"$label":"ACTS_IN","name":"Catherine Collins","type":"Role","_key":"26557","_from":"19085","_to":"19080"} +{"$label":"ACTS_IN","name":"Alex Whyte","type":"Role","_key":"26554","_from":"19084","_to":"19080"} +{"$label":"ACTS_IN","name":"Lauren Lehman","type":"Role","_key":"26553","_from":"19083","_to":"19080"} +{"$label":"ACTS_IN","name":"Carl Lehman alias Frankenstein","type":"Role","_key":"26552","_from":"19082","_to":"19080"} +{"$label":"DIRECTED","_key":"26551","_from":"19081","_to":"19080"} +{"$label":"ACTS_IN","name":"Col. John Amen","type":"Role","_key":"117939","_from":"19082","_to":"69324"} +{"$label":"ACTS_IN","name":"Dr. William Reisner","type":"Role","_key":"51910","_from":"19082","_to":"33857"} +{"$label":"ACTS_IN","name":"Tom Stanley","type":"Role","_key":"30875","_from":"19082","_to":"21643"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"26568","_from":"19094","_to":"19088"} +{"$label":"ACTS_IN","name":"Walton","type":"Role","_key":"26567","_from":"19093","_to":"19088"} +{"$label":"ACTS_IN","name":"Victors Vater","type":"Role","_key":"26566","_from":"19092","_to":"19088"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"26565","_from":"19091","_to":"19088"} +{"$label":"ACTS_IN","name":"Henry Clerval","type":"Role","_key":"26564","_from":"19090","_to":"19088"} +{"$label":"DIRECTED","_key":"26561","_from":"19089","_to":"19088"} +{"$label":"ACTS_IN","name":"Menelaus","type":"Role","_key":"111717","_from":"19090","_to":"65950"} +{"$label":"ACTS_IN","name":"Lancelot","type":"Role","_key":"70426","_from":"19090","_to":"42880"} +{"$label":"ACTS_IN","name":"himself \/ Patrick Redfern","type":"Role","_key":"41632","_from":"19090","_to":"27947"} +{"$label":"ACTS_IN","name":"Patrick Redfern","type":"Role","_key":"29991","_from":"19090","_to":"21171"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"72899","_from":"19094","_to":"43904"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"72894","_from":"19094","_to":"43903"} +{"$label":"ACTS_IN","name":"Emil Svensson","type":"Role","_key":"72889","_from":"19094","_to":"43900"} +{"$label":"ACTS_IN","name":"Max Halpert","type":"Role","_key":"26573","_from":"19098","_to":"19095"} +{"$label":"ACTS_IN","name":"Wilhelm","type":"Role","_key":"26572","_from":"19097","_to":"19095"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26571","_from":"19096","_to":"19095"} +{"$label":"ACTS_IN","name":"China","type":"Role","_key":"44154","_from":"19096","_to":"29428"} +{"$label":"ACTS_IN","name":"Sir Lancelot","type":"Role","_key":"42753","_from":"19096","_to":"28608"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26588","_from":"19103","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26586","_from":"19102","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26581","_from":"19101","_to":"19099"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26580","_from":"19100","_to":"19099"} +{"$label":"DIRECTED","_key":"51938","_from":"19100","_to":"33875"} +{"$label":"DIRECTED","_key":"51776","_from":"19100","_to":"33781"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30156","_from":"19100","_to":"21251"} +{"$label":"ACTS_IN","name":"Don Elias","type":"Role","_key":"26596","_from":"19112","_to":"19104"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"26595","_from":"19111","_to":"19104"} +{"$label":"ACTS_IN","name":"Elso","type":"Role","_key":"26594","_from":"19110","_to":"19104"} +{"$label":"ACTS_IN","name":"Dr. Yanco","type":"Role","_key":"26593","_from":"19109","_to":"19104"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26592","_from":"19108","_to":"19104"} +{"$label":"ACTS_IN","name":"Dr. Freda Frankenstein","type":"Role","_key":"26591","_from":"19107","_to":"19104"} +{"$label":"ACTS_IN","name":"Santo","type":"Role","_key":"26590","_from":"19106","_to":"19104"} +{"$label":"DIRECTED","_key":"26589","_from":"19105","_to":"19104"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"119720","_from":"19105","_to":"70307"} +{"$label":"DIRECTED","_key":"26679","_from":"19105","_to":"19168"} +{"$label":"ACTS_IN","name":"Santo","type":"Role","_key":"26680","_from":"19106","_to":"19168"} +{"$label":"ACTS_IN","name":"Faustino","type":"Role","_key":"27194","_from":"19109","_to":"19549"} +{"$label":"ACTS_IN","name":"Salisbury","type":"Role","_key":"26605","_from":"19122","_to":"19113"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26604","_from":"19121","_to":"19113"} +{"$label":"ACTS_IN","name":"Dr. Foranti","type":"Role","_key":"26603","_from":"19120","_to":"19113"} +{"$label":"ACTS_IN","name":"Percy Featherstone","type":"Role","_key":"26602","_from":"19119","_to":"19113"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"26601","_from":"19118","_to":"19113"} +{"$label":"ACTS_IN","name":"Dezzirae Lee","type":"Role","_key":"26600","_from":"19117","_to":"19113"} +{"$label":"ACTS_IN","name":"Bill Grant","type":"Role","_key":"26599","_from":"19116","_to":"19113"} +{"$label":"ACTS_IN","name":"Dr. Lazaroff","type":"Role","_key":"26598","_from":"19115","_to":"19113"} +{"$label":"DIRECTED","_key":"26597","_from":"19114","_to":"19113"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26887","_from":"19115","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26892","_from":"19116","_to":"19330"} +{"$label":"DIRECTED","_key":"26884","_from":"19116","_to":"19330"} +{"$label":"ACTS_IN","name":"Ryo Hazuki","type":"Role","_key":"93662","_from":"19118","_to":"55138"} +{"$label":"DIRECTED","_key":"26616","_from":"19128","_to":"19123"} +{"$label":"ACTS_IN","name":"Andrea Conti jung","type":"Role","_key":"26613","_from":"19127","_to":"19123"} +{"$label":"ACTS_IN","name":"Rami Hamdan jung","type":"Role","_key":"26612","_from":"19126","_to":"19123"} +{"$label":"ACTS_IN","name":"Herbert Glowalla","type":"Role","_key":"26611","_from":"19125","_to":"19123"} +{"$label":"ACTS_IN","name":"Petra Kr\u00fcger","type":"Role","_key":"26609","_from":"19124","_to":"19123"} +{"$label":"ACTS_IN","name":"Norbert Krabbe","type":"Role","_key":"108767","_from":"19125","_to":"64295"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Docker","type":"Role","_key":"68865","_from":"19125","_to":"42184"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Docker","type":"Role","_key":"67905","_from":"19125","_to":"41723"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Docker","type":"Role","_key":"64440","_from":"19125","_to":"40158"} +{"$label":"ACTS_IN","name":"Wolfgang von Dalberg","type":"Role","_key":"63136","_from":"19125","_to":"39598"} +{"$label":"ACTS_IN","name":"Manni","type":"Role","_key":"53119","_from":"19125","_to":"34369"} +{"$label":"ACTS_IN","name":"Wolfi Berner","type":"Role","_key":"50185","_from":"19125","_to":"32809"} +{"$label":"ACTS_IN","name":"Hubert Quitter","type":"Role","_key":"47684","_from":"19125","_to":"31413"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"42563","_from":"19125","_to":"28489"} +{"$label":"ACTS_IN","name":"Herbert Stieglmeier","type":"Role","_key":"31462","_from":"19125","_to":"21972"} +{"$label":"ACTS_IN","name":"Ecki","type":"Role","_key":"72804","_from":"19127","_to":"43865"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"67710","_from":"19127","_to":"41641"} +{"$label":"ACTS_IN","name":"Jaan Hinrichs","type":"Role","_key":"28661","_from":"19127","_to":"20481"} +{"$label":"DIRECTED","_key":"71723","_from":"19128","_to":"43418"} +{"$label":"DIRECTED","_key":"37317","_from":"19128","_to":"25284"} +{"$label":"ACTS_IN","name":"First Victim","type":"Role","_key":"26626","_from":"19137","_to":"19129"} +{"$label":"ACTS_IN","name":"Arlene`s Mother","type":"Role","_key":"26625","_from":"19136","_to":"19129"} +{"$label":"ACTS_IN","name":"Dr. Randolph","type":"Role","_key":"26624","_from":"19135","_to":"19129"} +{"$label":"ACTS_IN","name":"Sgt. McAffee","type":"Role","_key":"26623","_from":"19134","_to":"19129"} +{"$label":"ACTS_IN","name":"Teenager Monster","type":"Role","_key":"26621","_from":"19133","_to":"19129"} +{"$label":"ACTS_IN","name":"Dr. Karlton","type":"Role","_key":"26620","_from":"19132","_to":"19129"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"26619","_from":"19131","_to":"19129"} +{"$label":"DIRECTED","_key":"26617","_from":"19130","_to":"19129"} +{"$label":"ACTS_IN","name":"Det. Gus Burke","type":"Role","_key":"100916","_from":"19132","_to":"59488"} +{"$label":"ACTS_IN","name":"Alex Vine","type":"Role","_key":"26634","_from":"19145","_to":"19138"} +{"$label":"ACTS_IN","name":"Martha Boyd","type":"Role","_key":"26633","_from":"19144","_to":"19138"} +{"$label":"ACTS_IN","name":"Chuck Boyd","type":"Role","_key":"26632","_from":"19143","_to":"19138"} +{"$label":"ACTS_IN","name":"Frances Boyd","type":"Role","_key":"26631","_from":"19142","_to":"19138"} +{"$label":"ACTS_IN","name":"Philip Brown","type":"Role","_key":"26630","_from":"19141","_to":"19138"} +{"$label":"ACTS_IN","name":"Geoffrey Gaines","type":"Role","_key":"26629","_from":"19140","_to":"19138"} +{"$label":"ACTS_IN","name":"Lillian Gaines","type":"Role","_key":"26628","_from":"19139","_to":"19138"} +{"$label":"ACTS_IN","name":"Dr. Lembach","type":"Role","_key":"26643","_from":"19154","_to":"19146"} +{"$label":"ACTS_IN","name":"Insp. Davis","type":"Role","_key":"26641","_from":"19153","_to":"19146"} +{"$label":"ACTS_IN","name":"Dr. Mitchel","type":"Role","_key":"26640","_from":"19152","_to":"19146"} +{"$label":"ACTS_IN","name":"Dr. Blanchard","type":"Role","_key":"26639","_from":"19151","_to":"19146"} +{"$label":"ACTS_IN","name":"Dr. Steiner","type":"Role","_key":"26638","_from":"19150","_to":"19146"} +{"$label":"ACTS_IN","name":"Dr. Hill","type":"Role","_key":"26637","_from":"19149","_to":"19146"} +{"$label":"DIRECTED","_key":"26636","_from":"19148","_to":"19146"} +{"$label":"DIRECTED","_key":"26635","_from":"19147","_to":"19146"} +{"$label":"ACTS_IN","name":"Virgilianus","type":"Role","_key":"111760","_from":"19151","_to":"65965"} +{"$label":"ACTS_IN","name":"Mr. Clarke","type":"Role","_key":"67000","_from":"19152","_to":"41361"} +{"$label":"ACTS_IN","name":"Cmdr. Fortune","type":"Role","_key":"30848","_from":"19152","_to":"21625"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26646","_from":"19157","_to":"19155"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26645","_from":"19156","_to":"19155"} +{"$label":"DIRECTED","_key":"26644","_from":"19156","_to":"19155"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26662","_from":"19166","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26661","_from":"19165","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26658","_from":"19164","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26657","_from":"19163","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26653","_from":"19162","_to":"19158"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26650","_from":"19161","_to":"19158"} +{"$label":"DIRECTED","_key":"26648","_from":"19160","_to":"19158"} +{"$label":"DIRECTED","_key":"26647","_from":"19159","_to":"19158"} +{"$label":"DIRECTED","_key":"26822","_from":"19159","_to":"19277"} +{"$label":"DIRECTED","_key":"26669","_from":"19159","_to":"19167"} +{"$label":"DIRECTED","_key":"26670","_from":"19160","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26672","_from":"19162","_to":"19167"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103742","_from":"19163","_to":"61008"} +{"$label":"ACTS_IN","name":"Hugh Hefner","type":"Role","_key":"90653","_from":"19163","_to":"53522"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38741","_from":"19163","_to":"26175"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26674","_from":"19163","_to":"19167"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38524","_from":"19164","_to":"26023"} +{"$label":"ACTS_IN","name":"Dr. Mora","type":"Role","_key":"26687","_from":"19175","_to":"19168"} +{"$label":"ACTS_IN","name":"Dr. Molina","type":"Role","_key":"26686","_from":"19174","_to":"19168"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"26685","_from":"19173","_to":"19168"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"26684","_from":"19172","_to":"19168"} +{"$label":"ACTS_IN","name":"Dr. Irving Frankenstein","type":"Role","_key":"26683","_from":"19171","_to":"19168"} +{"$label":"ACTS_IN","name":"Alicia Robles","type":"Role","_key":"26682","_from":"19170","_to":"19168"} +{"$label":"ACTS_IN","name":"Blue Demon","type":"Role","_key":"26681","_from":"19169","_to":"19168"} +{"$label":"ACTS_IN","name":"El Frances","type":"Role","_key":"26695","_from":"19184","_to":"19176"} +{"$label":"ACTS_IN","name":"Lenzina","type":"Role","_key":"26694","_from":"19183","_to":"19176"} +{"$label":"ACTS_IN","name":"Dr. Uri Geller","type":"Role","_key":"26693","_from":"19182","_to":"19176"} +{"$label":"ACTS_IN","name":"Carbonel","type":"Role","_key":"26692","_from":"19181","_to":"19176"} +{"$label":"ACTS_IN","name":"Marilyn Manson","type":"Role","_key":"26691","_from":"19180","_to":"19176"} +{"$label":"ACTS_IN","name":"Dr. Frankenstein","type":"Role","_key":"26690","_from":"19179","_to":"19176"} +{"$label":"ACTS_IN","name":"Avio","type":"Role","_key":"26689","_from":"19178","_to":"19176"} +{"$label":"DIRECTED","_key":"26688","_from":"19177","_to":"19176"} +{"$label":"ACTS_IN","name":"Waldemar Daninsky","type":"Role","_key":"26705","_from":"19192","_to":"19185"} +{"$label":"ACTS_IN","name":"Insp. Toberman","type":"Role","_key":"26704","_from":"19191","_to":"19185"} +{"$label":"ACTS_IN","name":"Kirian","type":"Role","_key":"26703","_from":"19190","_to":"19185"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26702","_from":"19189","_to":"19185"} +{"$label":"DIRECTED","_key":"26698","_from":"19188","_to":"19185"} +{"$label":"DIRECTED","_key":"26697","_from":"19187","_to":"19185"} +{"$label":"DIRECTED","_key":"26696","_from":"19186","_to":"19185"} +{"$label":"DIRECTED","_key":"118852","_from":"19188","_to":"69858"} +{"$label":"DIRECTED","_key":"54601","_from":"19188","_to":"34977"} +{"$label":"ACTS_IN","name":"Kufard","type":"Role","_key":"90096","_from":"19192","_to":"53283"} +{"$label":"ACTS_IN","name":"Elvis - The King","type":"Role","_key":"26718","_from":"19204","_to":"19193"} +{"$label":"ACTS_IN","name":"The Monster","type":"Role","_key":"26717","_from":"19203","_to":"19193"} +{"$label":"ACTS_IN","name":"Count Vladimir Dracula","type":"Role","_key":"26716","_from":"19202","_to":"19193"} +{"$label":"ACTS_IN","name":"Hathaway","type":"Role","_key":"26715","_from":"19201","_to":"19193"} +{"$label":"ACTS_IN","name":"Dr. Victor Frankenstein","type":"Role","_key":"26712","_from":"19200","_to":"19193"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"26711","_from":"19199","_to":"19193"} +{"$label":"ACTS_IN","name":"Countes Natasha \" Nasty\" Dracula","type":"Role","_key":"26710","_from":"19198","_to":"19193"} +{"$label":"ACTS_IN","name":"Mary alias Juliet","type":"Role","_key":"26709","_from":"19197","_to":"19193"} +{"$label":"ACTS_IN","name":"Scott alias Romeo","type":"Role","_key":"26708","_from":"19196","_to":"19193"} +{"$label":"DIRECTED","_key":"26707","_from":"19195","_to":"19193"} +{"$label":"DIRECTED","_key":"26706","_from":"19194","_to":"19193"} +{"$label":"ACTS_IN","name":"Ted Exiler","type":"Role","_key":"97239","_from":"19196","_to":"57206"} +{"$label":"ACTS_IN","name":"Ursa","type":"Role","_key":"117414","_from":"19198","_to":"69059"} +{"$label":"ACTS_IN","name":"Ursa","type":"Role","_key":"50121","_from":"19198","_to":"32783"} +{"$label":"ACTS_IN","name":"Meeko","type":"Role","_key":"63880","_from":"19199","_to":"39912"} +{"$label":"ACTS_IN","name":"Striker","type":"Role","_key":"102814","_from":"19201","_to":"60477"} +{"$label":"ACTS_IN","name":"Housemaid","type":"Role","_key":"26732","_from":"19218","_to":"19205"} +{"$label":"ACTS_IN","name":"Housemaid","type":"Role","_key":"26731","_from":"19217","_to":"19205"} +{"$label":"ACTS_IN","name":"The Broadway Girl","type":"Role","_key":"26730","_from":"19216","_to":"19205"} +{"$label":"ACTS_IN","name":"Karl the Shepherd","type":"Role","_key":"26729","_from":"19215","_to":"19205"} +{"$label":"ACTS_IN","name":"Karl the Farmer","type":"Role","_key":"26728","_from":"19214","_to":"19205"} +{"$label":"ACTS_IN","name":"Chopper","type":"Role","_key":"26727","_from":"19213","_to":"19205"} +{"$label":"ACTS_IN","name":"Suburban Wife \/ Hippie Woman","type":"Role","_key":"26726","_from":"19212","_to":"19205"} +{"$label":"ACTS_IN","name":"Stable Boy \/ Hippie \/ Father Karl","type":"Role","_key":"26725","_from":"19206","_to":"19205"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"26724","_from":"19211","_to":"19205"} +{"$label":"ACTS_IN","name":"Monster \/ Karl \/ Gypsy \/ Burgomaster","type":"Role","_key":"26723","_from":"19210","_to":"19205"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"26722","_from":"19209","_to":"19205"} +{"$label":"ACTS_IN","name":"Angry Wife","type":"Role","_key":"26721","_from":"19208","_to":"19205"} +{"$label":"ACTS_IN","name":"Helena Frankenstein","type":"Role","_key":"26720","_from":"19207","_to":"19205"} +{"$label":"DIRECTED","_key":"26719","_from":"19206","_to":"19205"} +{"$label":"ACTS_IN","name":"Winslow","type":"Role","_key":"30364","_from":"19206","_to":"21348"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"30259","_from":"19206","_to":"21303"} +{"$label":"DIRECTED","_key":"30249","_from":"19206","_to":"21303"} +{"$label":"ACTS_IN","name":"The Lady in the Mirror","type":"Role","_key":"30337","_from":"19207","_to":"21335"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"30251","_from":"19207","_to":"21303"} +{"$label":"ACTS_IN","name":"Devil 1","type":"Role","_key":"30252","_from":"19208","_to":"21303"} +{"$label":"ACTS_IN","name":"Glitter Bolan","type":"Role","_key":"30371","_from":"19209","_to":"21348"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"30254","_from":"19209","_to":"21303"} +{"$label":"DIRECTED","_key":"30355","_from":"19209","_to":"21348"} +{"$label":"ACTS_IN","name":"Eegor \/ Captain Skinner","type":"Role","_key":"30361","_from":"19210","_to":"21348"} +{"$label":"ACTS_IN","name":"The Antique Man","type":"Role","_key":"30343","_from":"19210","_to":"21335"} +{"$label":"ACTS_IN","name":"Mr. Barker","type":"Role","_key":"30255","_from":"19211","_to":"21303"} +{"$label":"ACTS_IN","name":"Miss Johnson","type":"Role","_key":"115355","_from":"19212","_to":"67916"} +{"$label":"ACTS_IN","name":"Famous Actress Hit by Beer","type":"Role","_key":"111798","_from":"19212","_to":"65986"} +{"$label":"ACTS_IN","name":"Melissa Moore","type":"Role","_key":"111678","_from":"19212","_to":"65929"} +{"$label":"ACTS_IN","name":"Ness","type":"Role","_key":"108214","_from":"19212","_to":"63955"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"98082","_from":"19212","_to":"57748"} +{"$label":"ACTS_IN","name":"Jane Toppan","type":"Role","_key":"95133","_from":"19212","_to":"55981"} +{"$label":"ACTS_IN","name":"Bar Girl #2","type":"Role","_key":"45790","_from":"19212","_to":"30289"} +{"$label":"ACTS_IN","name":"Girl in Antique Shop","type":"Role","_key":"30345","_from":"19212","_to":"21335"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"30257","_from":"19212","_to":"21303"} +{"$label":"ACTS_IN","name":"First Mate","type":"Role","_key":"30372","_from":"19213","_to":"21348"} +{"$label":"ACTS_IN","name":"Waiting Patient #1","type":"Role","_key":"30344","_from":"19213","_to":"21335"} +{"$label":"ACTS_IN","name":"Mr. Pissington","type":"Role","_key":"30366","_from":"19214","_to":"21348"} +{"$label":"DIRECTED","_key":"30334","_from":"19214","_to":"21335"} +{"$label":"ACTS_IN","name":"Mr. Smythe \/ Second Mate","type":"Role","_key":"30365","_from":"19215","_to":"21348"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"30256","_from":"19215","_to":"21303"} +{"$label":"ACTS_IN","name":"The Tarot Reader","type":"Role","_key":"30341","_from":"19218","_to":"21335"} +{"$label":"ACTS_IN","name":"Devil 2","type":"Role","_key":"30253","_from":"19218","_to":"21303"} +{"$label":"ACTS_IN","name":"Blaine","type":"Role","_key":"26751","_from":"19226","_to":"19221"} +{"$label":"ACTS_IN","name":"Kingston Sebuka","type":"Role","_key":"26750","_from":"19225","_to":"19221"} +{"$label":"ACTS_IN","name":"Andi Richmond","type":"Role","_key":"26749","_from":"19224","_to":"19221"} +{"$label":"ACTS_IN","name":"Jay Butterman","type":"Role","_key":"26747","_from":"19223","_to":"19221"} +{"$label":"ACTS_IN","name":"Mark Chrisman","type":"Role","_key":"26746","_from":"19222","_to":"19221"} +{"$label":"ACTS_IN","name":"Charley Brewster","type":"Role","_key":"114855","_from":"19222","_to":"67657"} +{"$label":"ACTS_IN","name":"Charley Brewster","type":"Role","_key":"72040","_from":"19222","_to":"43562"} +{"$label":"ACTS_IN","name":"Prince Eric (voice)","type":"Role","_key":"61219","_from":"19223","_to":"38669"} +{"$label":"ACTS_IN","name":"Greg Brady","type":"Role","_key":"52375","_from":"19223","_to":"34084"} +{"$label":"ACTS_IN","name":"Mario the Gardener","type":"Role","_key":"26762","_from":"19235","_to":"19227"} +{"$label":"ACTS_IN","name":"Woodchopper","type":"Role","_key":"26761","_from":"19234","_to":"19227"} +{"$label":"ACTS_IN","name":"Carlitos","type":"Role","_key":"26760","_from":"19233","_to":"19227"} +{"$label":"ACTS_IN","name":"Mora","type":"Role","_key":"26759","_from":"19232","_to":"19227"} +{"$label":"ACTS_IN","name":"Cyrus","type":"Role","_key":"26758","_from":"19231","_to":"19227"} +{"$label":"ACTS_IN","name":"Frankensteins Geist","type":"Role","_key":"26757","_from":"19230","_to":"19227"} +{"$label":"ACTS_IN","name":"Stripper","type":"Role","_key":"26756","_from":"19229","_to":"19227"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"26755","_from":"19228","_to":"19227"} +{"$label":"ACTS_IN","name":"Junet","type":"Role","_key":"36648","_from":"19229","_to":"24830"} +{"$label":"ACTS_IN","name":"Randi","type":"Role","_key":"36304","_from":"19229","_to":"24626"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"26782","_from":"19243","_to":"19236"} +{"$label":"ACTS_IN","name":"Jazz S\u00e4ngerin","type":"Role","_key":"26780","_from":"19242","_to":"19236"} +{"$label":"ACTS_IN","name":"Charlie Mack","type":"Role","_key":"26777","_from":"19241","_to":"19236"} +{"$label":"ACTS_IN","name":"Don Hewitt","type":"Role","_key":"26776","_from":"19240","_to":"19236"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"26775","_from":"19239","_to":"19236"} +{"$label":"ACTS_IN","name":"John Aaron","type":"Role","_key":"26771","_from":"19238","_to":"19236"} +{"$label":"ACTS_IN","name":"Millie Lerner","type":"Role","_key":"26769","_from":"19237","_to":"19236"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"55696","_from":"19238","_to":"35443"} +{"$label":"DIRECTED","_key":"62536","_from":"19240","_to":"39366"} +{"$label":"ACTS_IN","name":"Pat Schiller","type":"Role","_key":"116606","_from":"19241","_to":"68642"} +{"$label":"ACTS_IN","name":"Billy Halleck","type":"Role","_key":"62352","_from":"19241","_to":"39282"} +{"$label":"ACTS_IN","name":"RoboCop","type":"Role","_key":"37796","_from":"19241","_to":"25628"} +{"$label":"ACTS_IN","name":"Dust Devil","type":"Role","_key":"36555","_from":"19241","_to":"24784"} +{"$label":"ACTS_IN","name":"Burke Beckett","type":"Role","_key":"58132","_from":"19243","_to":"36776"} +{"$label":"DIRECTED","_key":"26800","_from":"19256","_to":"19245"} +{"$label":"ACTS_IN","name":"Chris Larson","type":"Role","_key":"26799","_from":"19255","_to":"19245"} +{"$label":"ACTS_IN","name":"Elizabeth Holmes","type":"Role","_key":"26797","_from":"19254","_to":"19245"} +{"$label":"ACTS_IN","name":"Dan Kottke","type":"Role","_key":"26796","_from":"19253","_to":"19245"} +{"$label":"ACTS_IN","name":"Therapeut","type":"Role","_key":"26795","_from":"19252","_to":"19245"} +{"$label":"ACTS_IN","name":"Paul Allen","type":"Role","_key":"26793","_from":"19251","_to":"19245"} +{"$label":"ACTS_IN","name":"Steve Ballmer","type":"Role","_key":"26792","_from":"19250","_to":"19245"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"26791","_from":"19249","_to":"19245"} +{"$label":"ACTS_IN","name":"Mrs. Wozniak","type":"Role","_key":"26790","_from":"19248","_to":"19245"} +{"$label":"ACTS_IN","name":"Captain Crunch","type":"Role","_key":"26789","_from":"19247","_to":"19245"} +{"$label":"ACTS_IN","name":"Ridley Scott","type":"Role","_key":"26787","_from":"19246","_to":"19245"} +{"$label":"ACTS_IN","name":"Koval","type":"Role","_key":"115448","_from":"19246","_to":"67972"} +{"$label":"ACTS_IN","name":"John Elbourne\/Nolt\/Mashira (Voice)","type":"Role","_key":"106609","_from":"19250","_to":"62814"} +{"$label":"ACTS_IN","name":"Deimos","type":"Role","_key":"104084","_from":"19250","_to":"61239"} +{"$label":"ACTS_IN","name":"Bender","type":"Role","_key":"103004","_from":"19250","_to":"60586"} +{"$label":"ACTS_IN","name":"Toyman","type":"Role","_key":"95632","_from":"19250","_to":"56248"} +{"$label":"ACTS_IN","name":"Bender","type":"Role","_key":"93615","_from":"19250","_to":"55120"} +{"$label":"ACTS_IN","name":"Colin Haggart \/ Volunteer #1","type":"Role","_key":"91895","_from":"19250","_to":"54212"} +{"$label":"ACTS_IN","name":"Bender","type":"Role","_key":"91864","_from":"19250","_to":"54199"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"62098","_from":"19250","_to":"39107"} +{"$label":"ACTS_IN","name":"Bud the Cow \/ Officer O'Hanlon","type":"Role","_key":"57862","_from":"19250","_to":"36614"} +{"$label":"ACTS_IN","name":"Bender","type":"Role","_key":"46101","_from":"19250","_to":"30458"} +{"$label":"ACTS_IN","name":"Coachman ( voice )","type":"Role","_key":"45799","_from":"19250","_to":"30298"} +{"$label":"ACTS_IN","name":"Janitor \/ Bailiff","type":"Role","_key":"37865","_from":"19250","_to":"25647"} +{"$label":"ACTS_IN","name":"Zwerg 1\/Zwerg 2\/Riese","type":"Role","_key":"37173","_from":"19250","_to":"25176"} +{"$label":"ACTS_IN","name":"F. Lee Montgomery","type":"Role","_key":"31671","_from":"19251","_to":"22099"} +{"$label":"ACTS_IN","name":"Iron Man","type":"Role","_key":"101081","_from":"19255","_to":"59562"} +{"$label":"ACTS_IN","name":"Iron Man","type":"Role","_key":"101070","_from":"19255","_to":"59555"} +{"$label":"DIRECTED","_key":"94478","_from":"19256","_to":"55643"} +{"$label":"ACTS_IN","name":"Capt. Ronald Speirs","type":"Role","_key":"26811","_from":"19262","_to":"19258"} +{"$label":"ACTS_IN","name":"1st Lt. Harry Welsh","type":"Role","_key":"26804","_from":"19261","_to":"19258"} +{"$label":"ACTS_IN","name":"SSgt. Darrel 'Shifty' Powers","type":"Role","_key":"26803","_from":"19260","_to":"19258"} +{"$label":"ACTS_IN","name":"Cpl. Eugene Roe","type":"Role","_key":"26802","_from":"19259","_to":"19258"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"110514","_from":"19262","_to":"65293"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"106003","_from":"19262","_to":"62410"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"104566","_from":"19262","_to":"61507"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"51522","_from":"19262","_to":"33593"} +{"$label":"DIRECTED","_key":"26813","_from":"19264","_to":"19263"} +{"$label":"DIRECTED","_key":"72200","_from":"19264","_to":"43633"} +{"$label":"DIRECTED","_key":"56316","_from":"19264","_to":"35776"} +{"$label":"DIRECTED","_key":"26814","_from":"19266","_to":"19265"} +{"$label":"DIRECTED","_key":"99544","_from":"19266","_to":"58686"} +{"$label":"DIRECTED","_key":"68835","_from":"19266","_to":"42175"} +{"$label":"DIRECTED","_key":"26821","_from":"19266","_to":"19276"} +{"$label":"DIRECTED","_key":"26815","_from":"19268","_to":"19267"} +{"$label":"DIRECTED","_key":"53772","_from":"19268","_to":"34656"} +{"$label":"DIRECTED","_key":"26817","_from":"19271","_to":"19270"} +{"$label":"DIRECTED","_key":"99623","_from":"19271","_to":"58736"} +{"$label":"DIRECTED","_key":"26819","_from":"19274","_to":"19273"} +{"$label":"ACTS_IN","name":"Professor Schwarz","type":"Role","_key":"26829","_from":"19282","_to":"19278"} +{"$label":"ACTS_IN","name":"Insp. Schneider","type":"Role","_key":"26826","_from":"19281","_to":"19278"} +{"$label":"ACTS_IN","name":"Karl Schein","type":"Role","_key":"26824","_from":"19280","_to":"19278"} +{"$label":"DIRECTED","_key":"26823","_from":"19279","_to":"19278"} +{"$label":"ACTS_IN","name":"Ustane","type":"Role","_key":"113317","_from":"19280","_to":"66756"} +{"$label":"ACTS_IN","name":"Harry Petersen","type":"Role","_key":"35921","_from":"19280","_to":"24396"} +{"$label":"ACTS_IN","name":"Tumak","type":"Role","_key":"28216","_from":"19280","_to":"20209"} +{"$label":"ACTS_IN","name":"The Priest","type":"Role","_key":"28621","_from":"19281","_to":"20452"} +{"$label":"ACTS_IN","name":"Kay Pierce","type":"Role","_key":"26840","_from":"19288","_to":"19283"} +{"$label":"ACTS_IN","name":"Miriam Ellis","type":"Role","_key":"26839","_from":"19287","_to":"19283"} +{"$label":"ACTS_IN","name":"Veda Pierce Forrester","type":"Role","_key":"26835","_from":"19286","_to":"19283"} +{"$label":"ACTS_IN","name":"Monte Beragon","type":"Role","_key":"26833","_from":"19285","_to":"19283"} +{"$label":"ACTS_IN","name":"Mildred Pierce","type":"Role","_key":"26831","_from":"19284","_to":"19283"} +{"$label":"ACTS_IN","name":"Myra Hudson","type":"Role","_key":"119056","_from":"19284","_to":"69982"} +{"$label":"ACTS_IN","name":"Blanche Hudson","type":"Role","_key":"61889","_from":"19284","_to":"38952"} +{"$label":"ACTS_IN","name":"(in \"Humoresque\") (archive footage)","type":"Role","_key":"53885","_from":"19284","_to":"34691"} +{"$label":"ACTS_IN","name":"Amanda True","type":"Role","_key":"42924","_from":"19284","_to":"28685"} +{"$label":"ACTS_IN","name":"Marsina","type":"Role","_key":"34218","_from":"19286","_to":"23494"} +{"$label":"ACTS_IN","name":"Hazel","type":"Role","_key":"29217","_from":"19287","_to":"20787"} +{"$label":"ACTS_IN","name":"Young Victor","type":"Role","_key":"26846","_from":"19294","_to":"19289"} +{"$label":"ACTS_IN","name":"The Creature","type":"Role","_key":"26845","_from":"19293","_to":"19289"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"26844","_from":"19292","_to":"19289"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"26843","_from":"19291","_to":"19289"} +{"$label":"DIRECTED","_key":"26842","_from":"19290","_to":"19289"} +{"$label":"ACTS_IN","name":"Frisky","type":"Role","_key":"26855","_from":"19303","_to":"19295"} +{"$label":"ACTS_IN","name":"Bix","type":"Role","_key":"26854","_from":"19302","_to":"19295"} +{"$label":"ACTS_IN","name":"Dr. Cyber","type":"Role","_key":"26853","_from":"19301","_to":"19295"} +{"$label":"ACTS_IN","name":"Yuri Yannin","type":"Role","_key":"26852","_from":"19300","_to":"19295"} +{"$label":"ACTS_IN","name":"Jack Mallone","type":"Role","_key":"26851","_from":"19299","_to":"19295"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"26850","_from":"19298","_to":"19295"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"26849","_from":"19297","_to":"19295"} +{"$label":"ACTS_IN","name":"Sam Rockmore","type":"Role","_key":"26848","_from":"19296","_to":"19295"} +{"$label":"DIRECTED","_key":"26847","_from":"19296","_to":"19295"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"26864","_from":"19311","_to":"19304"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"26863","_from":"19310","_to":"19304"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"26862","_from":"19309","_to":"19304"} +{"$label":"ACTS_IN","name":"Tony Bayles","type":"Role","_key":"26861","_from":"19308","_to":"19304"} +{"$label":"ACTS_IN","name":"Susan Harris","type":"Role","_key":"26858","_from":"19307","_to":"19304"} +{"$label":"ACTS_IN","name":"Victor Frankenstein","type":"Role","_key":"26857","_from":"19306","_to":"19304"} +{"$label":"DIRECTED","_key":"26856","_from":"19305","_to":"19304"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26876","_from":"19324","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26875","_from":"19323","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26874","_from":"19322","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26873","_from":"19321","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26872","_from":"19320","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26871","_from":"19319","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26870","_from":"19318","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26869","_from":"19317","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26868","_from":"19316","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26867","_from":"19315","_to":"19312"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"26866","_from":"19314","_to":"19312"} +{"$label":"DIRECTED","_key":"26865","_from":"19313","_to":"19312"} +{"$label":"ACTS_IN","name":"Maud","type":"Role","_key":"26882","_from":"19329","_to":"19325"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"26881","_from":"19328","_to":"19325"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"26880","_from":"19327","_to":"19325"} +{"$label":"DIRECTED","_key":"26877","_from":"19326","_to":"19325"} +{"$label":"ACTS_IN","name":"Natacha","type":"Role","_key":"72011","_from":"19328","_to":"43545"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26891","_from":"19336","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26890","_from":"19335","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26889","_from":"19334","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26888","_from":"19333","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26886","_from":"19332","_to":"19330"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26885","_from":"19331","_to":"19330"} +{"$label":"DIRECTED","_key":"26894","_from":"19339","_to":"19337"} +{"$label":"DIRECTED","_key":"26893","_from":"19338","_to":"19337"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110155","_from":"19338","_to":"65091"} +{"$label":"DIRECTED","_key":"26895","_from":"19338","_to":"19340"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"26903","_from":"19347","_to":"19340"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"26902","_from":"19346","_to":"19340"} +{"$label":"ACTS_IN","name":"Herstner","type":"Role","_key":"26901","_from":"19345","_to":"19340"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"26900","_from":"19344","_to":"19340"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"26899","_from":"19343","_to":"19340"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"26898","_from":"19342","_to":"19340"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"26897","_from":"19341","_to":"19340"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26905","_from":"19350","_to":"19348"} +{"$label":"DIRECTED","_key":"26904","_from":"19349","_to":"19348"} +{"$label":"ACTS_IN","name":"Moderator (Gameshow)","type":"Role","_key":"26922","_from":"19359","_to":"19351"} +{"$label":"ACTS_IN","name":"Schutzengel","type":"Role","_key":"26921","_from":"19358","_to":"19351"} +{"$label":"ACTS_IN","name":"Schutzengel","type":"Role","_key":"26920","_from":"19357","_to":"19351"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"26916","_from":"19356","_to":"19351"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"26914","_from":"19355","_to":"19351"} +{"$label":"ACTS_IN","name":"Dieter","type":"Role","_key":"26913","_from":"19354","_to":"19351"} +{"$label":"DIRECTED","_key":"26909","_from":"19353","_to":"19351"} +{"$label":"DIRECTED","_key":"26908","_from":"19352","_to":"19351"} +{"$label":"ACTS_IN","name":"diverse Rollen","type":"Role","_key":"63892","_from":"19357","_to":"39920"} +{"$label":"ACTS_IN","name":"Teufel","type":"Role","_key":"31455","_from":"19357","_to":"21968"} +{"$label":"ACTS_IN","name":"diverse Rollen","type":"Role","_key":"63893","_from":"19358","_to":"39920"} +{"$label":"ACTS_IN","name":"Flugente","type":"Role","_key":"51875","_from":"19358","_to":"33840"} +{"$label":"ACTS_IN","name":"Kai Rabe","type":"Role","_key":"53743","_from":"19359","_to":"34649"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"50166","_from":"19359","_to":"32800"} +{"$label":"ACTS_IN","name":"Thomy","type":"Role","_key":"46829","_from":"19359","_to":"30889"} +{"$label":"ACTS_IN","name":"Viktor Keller","type":"Role","_key":"42362","_from":"19359","_to":"28358"} +{"$label":"ACTS_IN","name":"Enjolras","type":"Role","_key":"31645","_from":"19359","_to":"22083"} +{"$label":"ACTS_IN","name":"Ferdi Tummler","type":"Role","_key":"31467","_from":"19359","_to":"21972"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26933","_from":"19370","_to":"19360"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26932","_from":"19369","_to":"19360"} +{"$label":"ACTS_IN","name":"Chicago Newreporter","type":"Role","_key":"26931","_from":"19368","_to":"19360"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26930","_from":"19367","_to":"19360"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26929","_from":"19366","_to":"19360"} +{"$label":"ACTS_IN","name":"Dr. Andreas Bichlbauer","type":"Role","_key":"26927","_from":"19365","_to":"19360"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"26926","_from":"19364","_to":"19360"} +{"$label":"DIRECTED","_key":"26925","_from":"19363","_to":"19360"} +{"$label":"DIRECTED","_key":"26924","_from":"19362","_to":"19360"} +{"$label":"DIRECTED","_key":"26923","_from":"19361","_to":"19360"} +{"$label":"DIRECTED","_key":"99242","_from":"19363","_to":"58482"} +{"$label":"DIRECTED","_key":"116377","_from":"19364","_to":"68509"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116375","_from":"19364","_to":"68509"} +{"$label":"DIRECTED","_key":"116376","_from":"19365","_to":"68509"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116374","_from":"19365","_to":"68509"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Dremmler","type":"Role","_key":"26939","_from":"19376","_to":"19371"} +{"$label":"ACTS_IN","name":"Krzysztof Lanuszewski","type":"Role","_key":"26938","_from":"19375","_to":"19371"} +{"$label":"ACTS_IN","name":"Ania Lanuszewska","type":"Role","_key":"26937","_from":"19374","_to":"19371"} +{"$label":"ACTS_IN","name":"Stanislaw Krzemi\u0144ski","type":"Role","_key":"26936","_from":"19373","_to":"19371"} +{"$label":"DIRECTED","_key":"26934","_from":"19372","_to":"19371"} +{"$label":"DIRECTED","_key":"52289","_from":"19372","_to":"34043"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"91287","_from":"19376","_to":"53834"} +{"$label":"ACTS_IN","name":"SED Kreissekret\u00e4r","type":"Role","_key":"43848","_from":"19376","_to":"29272"} +{"$label":"ACTS_IN","name":"Penelope St\u00f6cker","type":"Role","_key":"26944","_from":"19382","_to":"19377"} +{"$label":"ACTS_IN","name":"Angela Collins","type":"Role","_key":"26943","_from":"19381","_to":"19377"} +{"$label":"ACTS_IN","name":"Michaela von Baer","type":"Role","_key":"26942","_from":"19380","_to":"19377"} +{"$label":"ACTS_IN","name":"Brigitte Hasentritt","type":"Role","_key":"26941","_from":"19379","_to":"19377"} +{"$label":"DIRECTED","_key":"26940","_from":"19378","_to":"19377"} +{"$label":"DIRECTED","_key":"26954","_from":"19378","_to":"19390"} +{"$label":"DIRECTED","_key":"26948","_from":"19378","_to":"19385"} +{"$label":"DIRECTED","_key":"26945","_from":"19378","_to":"19383"} +{"$label":"ACTS_IN","name":"Sabine Voigt","type":"Role","_key":"26950","_from":"19379","_to":"19385"} +{"$label":"ACTS_IN","name":"Monika","type":"Role","_key":"26946","_from":"19382","_to":"19383"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"26947","_from":"19384","_to":"19383"} +{"$label":"ACTS_IN","name":"Arno Rosenhain","type":"Role","_key":"26953","_from":"19389","_to":"19385"} +{"$label":"ACTS_IN","name":"Vivienne del Vargos","type":"Role","_key":"26952","_from":"19388","_to":"19385"} +{"$label":"ACTS_IN","name":"Wolfgang von Rotfurt","type":"Role","_key":"26951","_from":"19387","_to":"19385"} +{"$label":"ACTS_IN","name":"Norman Voigt","type":"Role","_key":"26949","_from":"19386","_to":"19385"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47813","_from":"19389","_to":"31478"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27547","_from":"19389","_to":"19761"} +{"$label":"DIRECTED","_key":"26962","_from":"19396","_to":"19391"} +{"$label":"ACTS_IN","name":"Dona Clara","type":"Role","_key":"26961","_from":"19395","_to":"19391"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"26960","_from":"19394","_to":"19391"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"26958","_from":"19393","_to":"19391"} +{"$label":"ACTS_IN","name":"Don Carlos","type":"Role","_key":"26957","_from":"19392","_to":"19391"} +{"$label":"ACTS_IN","name":"Minister of Interior","type":"Role","_key":"38077","_from":"19392","_to":"25754"} +{"$label":"ACTS_IN","name":"CIA Chief","type":"Role","_key":"35817","_from":"19393","_to":"24317"} +{"$label":"ACTS_IN","name":"Bergman","type":"Role","_key":"35660","_from":"19393","_to":"24235"} +{"$label":"DIRECTED","_key":"26975","_from":"19396","_to":"19402"} +{"$label":"ACTS_IN","name":"Elisa Folbert","type":"Role","_key":"26968","_from":"19401","_to":"19397"} +{"$label":"ACTS_IN","name":"Choni","type":"Role","_key":"26967","_from":"19400","_to":"19397"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"26965","_from":"19399","_to":"19397"} +{"$label":"DIRECTED","_key":"26963","_from":"19398","_to":"19397"} +{"$label":"ACTS_IN","name":"Toraya","type":"Role","_key":"48512","_from":"19400","_to":"31842"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35653","_from":"19400","_to":"24231"} +{"$label":"ACTS_IN","name":"Madre de Antonio","type":"Role","_key":"29531","_from":"19400","_to":"20917"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"26988","_from":"19408","_to":"19403"} +{"$label":"ACTS_IN","name":"Esmerelda's husband","type":"Role","_key":"26982","_from":"19407","_to":"19403"} +{"$label":"ACTS_IN","name":"Norma's husband","type":"Role","_key":"26981","_from":"19406","_to":"19403"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"26978","_from":"19405","_to":"19403"} +{"$label":"DIRECTED","_key":"26976","_from":"19404","_to":"19403"} +{"$label":"ACTS_IN","name":"Milena","type":"Role","_key":"114552","_from":"19405","_to":"67482"} +{"$label":"ACTS_IN","name":"Caroline 'Caro' Plantin","type":"Role","_key":"90133","_from":"19405","_to":"53300"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71238","_from":"19405","_to":"43224"} +{"$label":"ACTS_IN","name":"Catherine de M\u00e9dicis","type":"Role","_key":"63439","_from":"19405","_to":"39735"} +{"$label":"ACTS_IN","name":"Gigliola","type":"Role","_key":"27557","_from":"19405","_to":"19767"} +{"$label":"ACTS_IN","name":"John Price","type":"Role","_key":"37420","_from":"19406","_to":"25358"} +{"$label":"ACTS_IN","name":"Doktors Birde","type":"Role","_key":"26993","_from":"19413","_to":"19409"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"26992","_from":"19412","_to":"19409"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"26991","_from":"19411","_to":"19409"} +{"$label":"DIRECTED","_key":"26989","_from":"19410","_to":"19409"} +{"$label":"ACTS_IN","name":"Claire Clairmont","type":"Role","_key":"27002","_from":"19420","_to":"19414"} +{"$label":"ACTS_IN","name":"Percy Bysshe Shelley","type":"Role","_key":"27001","_from":"19419","_to":"19414"} +{"$label":"ACTS_IN","name":"Young Mary Shelly","type":"Role","_key":"26998","_from":"19418","_to":"19414"} +{"$label":"ACTS_IN","name":"Mary Shelly","type":"Role","_key":"26997","_from":"19417","_to":"19414"} +{"$label":"ACTS_IN","name":"Prof Robert Winston","type":"Role","_key":"26995","_from":"19416","_to":"19414"} +{"$label":"DIRECTED","_key":"26994","_from":"19415","_to":"19414"} +{"$label":"DIRECTED","_key":"27005","_from":"19422","_to":"19421"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27014","_from":"19432","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27013","_from":"19431","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27012","_from":"19430","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27011","_from":"19429","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27010","_from":"19428","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27009","_from":"19427","_to":"19423"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27008","_from":"19426","_to":"19423"} +{"$label":"ACTS_IN","name":"Count Oblensky","type":"Role","_key":"27007","_from":"19425","_to":"19423"} +{"$label":"DIRECTED","_key":"27006","_from":"19424","_to":"19423"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"48289","_from":"19431","_to":"31709"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27021","_from":"19440","_to":"19433"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27020","_from":"19439","_to":"19433"} +{"$label":"ACTS_IN","name":"Yaratgini","type":"Role","_key":"27019","_from":"19438","_to":"19433"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27018","_from":"19437","_to":"19433"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27017","_from":"19436","_to":"19433"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"27016","_from":"19435","_to":"19433"} +{"$label":"DIRECTED","_key":"27015","_from":"19434","_to":"19433"} +{"$label":"ACTS_IN","name":"Spanky","type":"Role","_key":"27028","_from":"19447","_to":"19441"} +{"$label":"ACTS_IN","name":"Froggy","type":"Role","_key":"27027","_from":"19446","_to":"19441"} +{"$label":"ACTS_IN","name":"Darla","type":"Role","_key":"27026","_from":"19445","_to":"19441"} +{"$label":"ACTS_IN","name":"Froggys Vater","type":"Role","_key":"27025","_from":"19444","_to":"19441"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"27023","_from":"19443","_to":"19441"} +{"$label":"DIRECTED","_key":"27022","_from":"19442","_to":"19441"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"109578","_from":"19444","_to":"64722"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"27036","_from":"19456","_to":"19448"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"27035","_from":"19455","_to":"19448"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"27034","_from":"19454","_to":"19448"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"27033","_from":"19453","_to":"19448"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"27032","_from":"19452","_to":"19448"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"27031","_from":"19451","_to":"19448"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"27030","_from":"19450","_to":"19448"} +{"$label":"DIRECTED","_key":"27029","_from":"19449","_to":"19448"} +{"$label":"DIRECTED","_key":"46223","_from":"19449","_to":"30553"} +{"$label":"DIRECTED","_key":"37227","_from":"19449","_to":"25214"} +{"$label":"DIRECTED","_key":"37219","_from":"19449","_to":"25209"} +{"$label":"DIRECTED","_key":"37213","_from":"19449","_to":"25204"} +{"$label":"DIRECTED","_key":"37207","_from":"19449","_to":"25202"} +{"$label":"DIRECTED","_key":"37202","_from":"19449","_to":"25199"} +{"$label":"DIRECTED","_key":"35968","_from":"19449","_to":"24423"} +{"$label":"ACTS_IN","name":"Caldwell","type":"Role","_key":"44286","_from":"19450","_to":"29509"} +{"$label":"ACTS_IN","name":"Jack Forest","type":"Role","_key":"37661","_from":"19450","_to":"25529"} +{"$label":"ACTS_IN","name":"Gunther","type":"Role","_key":"35962","_from":"19450","_to":"24423"} +{"$label":"ACTS_IN","name":"Emily (as Sarah Keller)","type":"Role","_key":"119218","_from":"19451","_to":"70047"} +{"$label":"ACTS_IN","name":"Anna V\u00f6lkl & Elena V\u00f6lkl","type":"Role","_key":"37215","_from":"19451","_to":"25209"} +{"$label":"ACTS_IN","name":"Juez","type":"Role","_key":"27046","_from":"19467","_to":"19457"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"27045","_from":"19466","_to":"19457"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"27044","_from":"19465","_to":"19457"} +{"$label":"ACTS_IN","name":"Vidal","type":"Role","_key":"27043","_from":"19464","_to":"19457"} +{"$label":"ACTS_IN","name":"Prof. Frankenstein","type":"Role","_key":"27042","_from":"19463","_to":"19457"} +{"$label":"ACTS_IN","name":"Elvira","type":"Role","_key":"27041","_from":"19462","_to":"19457"} +{"$label":"ACTS_IN","name":"Estela","type":"Role","_key":"27040","_from":"19461","_to":"19457"} +{"$label":"ACTS_IN","name":"Insp. Santos","type":"Role","_key":"27039","_from":"19460","_to":"19457"} +{"$label":"ACTS_IN","name":"Orlak","type":"Role","_key":"27038","_from":"19459","_to":"19457"} +{"$label":"DIRECTED","_key":"27037","_from":"19458","_to":"19457"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27048","_from":"19470","_to":"19468"} +{"$label":"DIRECTED","_key":"27047","_from":"19469","_to":"19468"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27053","_from":"19476","_to":"19471"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"27052","_from":"19475","_to":"19471"} +{"$label":"ACTS_IN","name":"Baron Frankenstein","type":"Role","_key":"27051","_from":"19474","_to":"19471"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27050","_from":"19473","_to":"19471"} +{"$label":"DIRECTED","_key":"27049","_from":"19472","_to":"19471"} +{"$label":"ACTS_IN","name":"Prof. Kampf","type":"Role","_key":"27060","_from":"19483","_to":"19477"} +{"$label":"ACTS_IN","name":"Frobelius","type":"Role","_key":"27058","_from":"19482","_to":"19477"} +{"$label":"ACTS_IN","name":"Le mere","type":"Role","_key":"27057","_from":"19481","_to":"19477"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"27056","_from":"19480","_to":"19477"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"27055","_from":"19479","_to":"19477"} +{"$label":"DIRECTED","_key":"27054","_from":"19478","_to":"19477"} +{"$label":"ACTS_IN","name":"Jane Putnam","type":"Role","_key":"30897","_from":"19481","_to":"21653"} +{"$label":"ACTS_IN","name":"Catherine Landru","type":"Role","_key":"30017","_from":"19481","_to":"21177"} +{"$label":"ACTS_IN","name":"Dr.Mason","type":"Role","_key":"27068","_from":"19486","_to":"19484"} +{"$label":"ACTS_IN","name":"Dr.Klausen","type":"Role","_key":"27067","_from":"19485","_to":"19484"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"27143","_from":"19485","_to":"19525"} +{"$label":"ACTS_IN","name":"Sorren","type":"Role","_key":"40486","_from":"19486","_to":"27264"} +{"$label":"ACTS_IN","name":"Doroth\u00e9e","type":"Role","_key":"27074","_from":"19490","_to":"19487"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"27073","_from":"19489","_to":"19487"} +{"$label":"DIRECTED","_key":"27070","_from":"19488","_to":"19487"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"37416","_from":"19489","_to":"25355"} +{"$label":"ACTS_IN","name":"Chauffeur Harper","type":"Role","_key":"33660","_from":"19489","_to":"23233"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"27278","_from":"19489","_to":"19607"} +{"$label":"ACTS_IN","name":"Dracula Jr.","type":"Role","_key":"27082","_from":"19499","_to":"19491"} +{"$label":"ACTS_IN","name":"Ellyrica","type":"Role","_key":"27081","_from":"19498","_to":"19491"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"27080","_from":"19497","_to":"19491"} +{"$label":"ACTS_IN","name":"Voice frm Frankenstein","type":"Role","_key":"27079","_from":"19496","_to":"19491"} +{"$label":"ACTS_IN","name":"2nd Date","type":"Role","_key":"27078","_from":"19495","_to":"19491"} +{"$label":"ACTS_IN","name":"Frankenstein Jr.","type":"Role","_key":"27077","_from":"19494","_to":"19491"} +{"$label":"ACTS_IN","name":"1st Date","type":"Role","_key":"27076","_from":"19493","_to":"19491"} +{"$label":"DIRECTED","_key":"27075","_from":"19492","_to":"19491"} +{"$label":"ACTS_IN","name":"Janine Thompson","type":"Role","_key":"115194","_from":"19498","_to":"67837"} +{"$label":"ACTS_IN","name":"Eldad","type":"Role","_key":"27094","_from":"19508","_to":"19500"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"27093","_from":"19507","_to":"19500"} +{"$label":"ACTS_IN","name":"Nimrod's Mother","type":"Role","_key":"27091","_from":"19506","_to":"19500"} +{"$label":"ACTS_IN","name":"Nimrod's Father","type":"Role","_key":"27090","_from":"19505","_to":"19500"} +{"$label":"ACTS_IN","name":"Weiner","type":"Role","_key":"27089","_from":"19504","_to":"19500"} +{"$label":"ACTS_IN","name":"Yasha","type":"Role","_key":"27088","_from":"19503","_to":"19500"} +{"$label":"ACTS_IN","name":"Nimrod","type":"Role","_key":"27087","_from":"19502","_to":"19500"} +{"$label":"DIRECTED","_key":"27083","_from":"19501","_to":"19500"} +{"$label":"ACTS_IN","name":"Dr. Whitcombe","type":"Role","_key":"114498","_from":"19503","_to":"67443"} +{"$label":"DIRECTED","_key":"27103","_from":"19514","_to":"19509"} +{"$label":"ACTS_IN","name":"Il principe industriale","type":"Role","_key":"27101","_from":"19513","_to":"19509"} +{"$label":"ACTS_IN","name":"Gazza","type":"Role","_key":"27099","_from":"19512","_to":"19509"} +{"$label":"ACTS_IN","name":"Giampiero Doberd\u00f2 figlio","type":"Role","_key":"27098","_from":"19511","_to":"19509"} +{"$label":"ACTS_IN","name":"Annibale Doberd\u00f2","type":"Role","_key":"27096","_from":"19510","_to":"19509"} +{"$label":"ACTS_IN","name":"Renato Baldi","type":"Role","_key":"71559","_from":"19510","_to":"43352"} +{"$label":"ACTS_IN","name":"Ugo","type":"Role","_key":"60716","_from":"19510","_to":"38342"} +{"$label":"ACTS_IN","name":"Mark Hand","type":"Role","_key":"48054","_from":"19510","_to":"31592"} +{"$label":"ACTS_IN","name":"Renato Baldi","type":"Role","_key":"32054","_from":"19510","_to":"22332"} +{"$label":"ACTS_IN","name":"L'autostoppeuse","type":"Role","_key":"27111","_from":"19518","_to":"19515"} +{"$label":"ACTS_IN","name":"Le b\u00e9tailleur","type":"Role","_key":"27110","_from":"19517","_to":"19515"} +{"$label":"ACTS_IN","name":"Bertrand B\u00e9rard","type":"Role","_key":"27109","_from":"19516","_to":"19515"} +{"$label":"ACTS_IN","name":"chef du groupe d'action r\u00e9volutionnaire","type":"Role","_key":"33966","_from":"19516","_to":"23371"} +{"$label":"ACTS_IN","name":"l'aubergiste","type":"Role","_key":"33820","_from":"19517","_to":"23307"} +{"$label":"ACTS_IN","name":"Louis Casso","type":"Role","_key":"31378","_from":"19517","_to":"21929"} +{"$label":"ACTS_IN","name":"Lui Serafino","type":"Role","_key":"27154","_from":"19517","_to":"19528"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71471","_from":"19518","_to":"43324"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"27116","_from":"19520","_to":"19519"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"62490","_from":"19520","_to":"39356"} +{"$label":"ACTS_IN","name":"Bertrand Lannier","type":"Role","_key":"49709","_from":"19520","_to":"32530"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"33754","_from":"19520","_to":"23279"} +{"$label":"ACTS_IN","name":"Van Gogh","type":"Role","_key":"33745","_from":"19520","_to":"23273"} +{"$label":"ACTS_IN","name":"Jacques Chevalier","type":"Role","_key":"27308","_from":"19520","_to":"19632"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"27133","_from":"19524","_to":"19521"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"27129","_from":"19523","_to":"19521"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"27126","_from":"19522","_to":"19521"} +{"$label":"ACTS_IN","name":"Commissaire Bonetti","type":"Role","_key":"89990","_from":"19522","_to":"53238"} +{"$label":"ACTS_IN","name":"L'Epervier","type":"Role","_key":"70329","_from":"19522","_to":"42850"} +{"$label":"ACTS_IN","name":"Jean Drillon","type":"Role","_key":"35243","_from":"19522","_to":"24002"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"33757","_from":"19522","_to":"23279"} +{"$label":"ACTS_IN","name":"Colonel Rol Tanguy","type":"Role","_key":"33555","_from":"19522","_to":"23204"} +{"$label":"ACTS_IN","name":"Capitaine Jean Reichau","type":"Role","_key":"28580","_from":"19522","_to":"20429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34646","_from":"19523","_to":"23703"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"27147","_from":"19527","_to":"19525"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"27144","_from":"19526","_to":"19525"} +{"$label":"ACTS_IN","name":"Jacky Clay","type":"Role","_key":"32425","_from":"19526","_to":"22563"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"32369","_from":"19526","_to":"22535"} +{"$label":"ACTS_IN","name":"Antoine Chantoiseau","type":"Role","_key":"27157","_from":"19530","_to":"19528"} +{"$label":"ACTS_IN","name":"Jean-Marie Patinet","type":"Role","_key":"27156","_from":"19529","_to":"19528"} +{"$label":"ACTS_IN","name":"Der Vermummte Herr","type":"Role","_key":"27173","_from":"19540","_to":"19531"} +{"$label":"ACTS_IN","name":"Fr. Dr. Prokrustes","type":"Role","_key":"27172","_from":"19539","_to":"19531"} +{"$label":"ACTS_IN","name":"Direktor Sonnenstich","type":"Role","_key":"27171","_from":"19538","_to":"19531"} +{"$label":"ACTS_IN","name":"Ilse, das Modell","type":"Role","_key":"27170","_from":"19537","_to":"19531"} +{"$label":"ACTS_IN","name":"Rentier Stiefel","type":"Role","_key":"27169","_from":"19536","_to":"19531"} +{"$label":"ACTS_IN","name":"Ina M\u00fcller","type":"Role","_key":"27168","_from":"19535","_to":"19531"} +{"$label":"ACTS_IN","name":"Martha Bessel","type":"Role","_key":"27166","_from":"19534","_to":"19531"} +{"$label":"ACTS_IN","name":"Fanny Gabor","type":"Role","_key":"27165","_from":"19533","_to":"19531"} +{"$label":"ACTS_IN","name":"Frau Bergmann","type":"Role","_key":"27163","_from":"19532","_to":"19531"} +{"$label":"ACTS_IN","name":"Rachel Turner","type":"Role","_key":"89214","_from":"19534","_to":"52826"} +{"$label":"DIRECTED","_key":"89209","_from":"19534","_to":"52826"} +{"$label":"DIRECTED","_key":"51760","_from":"19534","_to":"33772"} +{"$label":"ACTS_IN","name":"Captain Lister","type":"Role","_key":"27189","_from":"19548","_to":"19541"} +{"$label":"ACTS_IN","name":"Jesse Vialo","type":"Role","_key":"27188","_from":"19547","_to":"19541"} +{"$label":"ACTS_IN","name":"Sunday","type":"Role","_key":"27187","_from":"19546","_to":"19541"} +{"$label":"ACTS_IN","name":"Meeks","type":"Role","_key":"27186","_from":"19545","_to":"19541"} +{"$label":"ACTS_IN","name":"Hawkins","type":"Role","_key":"27184","_from":"19544","_to":"19541"} +{"$label":"ACTS_IN","name":"Jane Brooks","type":"Role","_key":"27183","_from":"19543","_to":"19541"} +{"$label":"DIRECTED","_key":"27177","_from":"19542","_to":"19541"} +{"$label":"DIRECTED","_key":"101040","_from":"19542","_to":"59542"} +{"$label":"DIRECTED","_key":"55388","_from":"19542","_to":"35308"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"93476","_from":"19543","_to":"55036"} +{"$label":"ACTS_IN","name":"Layla Williams","type":"Role","_key":"69987","_from":"19543","_to":"42690"} +{"$label":"ACTS_IN","name":"Is","type":"Role","_key":"33139","_from":"19543","_to":"22947"} +{"$label":"ACTS_IN","name":"Joe Starks","type":"Role","_key":"112053","_from":"19544","_to":"66166"} +{"$label":"ACTS_IN","name":"Antonio Fredericks","type":"Role","_key":"71004","_from":"19544","_to":"43125"} +{"$label":"ACTS_IN","name":"Rock","type":"Role","_key":"46268","_from":"19545","_to":"30580"} +{"$label":"ACTS_IN","name":"Wall Street","type":"Role","_key":"29632","_from":"19545","_to":"20977"} +{"$label":"ACTS_IN","name":"Bobby Z","type":"Role","_key":"63198","_from":"19547","_to":"39632"} +{"$label":"ACTS_IN","name":"Smith Jerrod","type":"Role","_key":"32733","_from":"19547","_to":"22725"} +{"$label":"ACTS_IN","name":"Lily Braden","type":"Role","_key":"70929","_from":"19548","_to":"43092"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"69391","_from":"19548","_to":"42419"} +{"$label":"ACTS_IN","name":"Ilana Green","type":"Role","_key":"63987","_from":"19548","_to":"39957"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27208","_from":"19564","_to":"19549"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27206","_from":"19563","_to":"19549"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27205","_from":"19562","_to":"19549"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27204","_from":"19561","_to":"19549"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27203","_from":"19560","_to":"19549"} +{"$label":"ACTS_IN","name":"Barmann","type":"Role","_key":"27202","_from":"19559","_to":"19549"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"27200","_from":"19558","_to":"19549"} +{"$label":"ACTS_IN","name":"Norberto","type":"Role","_key":"27199","_from":"19557","_to":"19549"} +{"$label":"ACTS_IN","name":"Juliana","type":"Role","_key":"27198","_from":"19556","_to":"19549"} +{"$label":"ACTS_IN","name":"Dona Mercedes","type":"Role","_key":"27197","_from":"19555","_to":"19549"} +{"$label":"ACTS_IN","name":"El Rubio","type":"Role","_key":"27196","_from":"19554","_to":"19549"} +{"$label":"ACTS_IN","name":"Don Eusebio","type":"Role","_key":"27195","_from":"19553","_to":"19549"} +{"$label":"ACTS_IN","name":"Acacia","type":"Role","_key":"27193","_from":"19552","_to":"19549"} +{"$label":"ACTS_IN","name":"Raimunda","type":"Role","_key":"27192","_from":"19551","_to":"19549"} +{"$label":"DIRECTED","_key":"27191","_from":"19550","_to":"19549"} +{"$label":"ACTS_IN","name":"Neddy Burton","type":"Role","_key":"116896","_from":"19551","_to":"68818"} +{"$label":"ACTS_IN","name":"Detektiv","type":"Role","_key":"27222","_from":"19574","_to":"19565"} +{"$label":"ACTS_IN","name":"Greek Doktor","type":"Role","_key":"27221","_from":"19573","_to":"19565"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"27220","_from":"19572","_to":"19565"} +{"$label":"ACTS_IN","name":"Academy Direktor","type":"Role","_key":"27218","_from":"19571","_to":"19565"} +{"$label":"ACTS_IN","name":"Lord Cyril Cleeve","type":"Role","_key":"27214","_from":"19570","_to":"19565"} +{"$label":"ACTS_IN","name":"Kelly Carson","type":"Role","_key":"27213","_from":"19569","_to":"19565"} +{"$label":"ACTS_IN","name":"Atticus","type":"Role","_key":"27212","_from":"19568","_to":"19565"} +{"$label":"ACTS_IN","name":"Angus McGyver","type":"Role","_key":"27211","_from":"19567","_to":"19565"} +{"$label":"DIRECTED","_key":"27210","_from":"19566","_to":"19565"} +{"$label":"DIRECTED","_key":"106873","_from":"19566","_to":"63004"} +{"$label":"DIRECTED","_key":"66873","_from":"19566","_to":"41294"} +{"$label":"DIRECTED","_key":"66702","_from":"19566","_to":"41207"} +{"$label":"ACTS_IN","name":"Angus MacGyver","type":"Role","_key":"95544","_from":"19567","_to":"56192"} +{"$label":"ACTS_IN","name":"Major General Jack O'Neill","type":"Role","_key":"91909","_from":"19567","_to":"54222"} +{"$label":"ACTS_IN","name":"Aeneas Sylvius Piccolomin","type":"Role","_key":"118523","_from":"19568","_to":"69685"} +{"$label":"ACTS_IN","name":"Exeter","type":"Role","_key":"65152","_from":"19568","_to":"40473"} +{"$label":"ACTS_IN","name":"Ghost of Hamlet's Father","type":"Role","_key":"64010","_from":"19568","_to":"39964"} +{"$label":"ACTS_IN","name":"Father Gabriel Norton","type":"Role","_key":"59663","_from":"19568","_to":"37670"} +{"$label":"ACTS_IN","name":"Prince Vultan","type":"Role","_key":"28346","_from":"19568","_to":"20283"} +{"$label":"ACTS_IN","name":"Mary Florescu","type":"Role","_key":"120550","_from":"19569","_to":"70802"} +{"$label":"ACTS_IN","name":"Elizabeth Hardy","type":"Role","_key":"72673","_from":"19569","_to":"43797"} +{"$label":"ACTS_IN","name":"Kiri Christos","type":"Role","_key":"116024","_from":"19572","_to":"68318"} +{"$label":"ACTS_IN","name":"Mrs. Tall","type":"Role","_key":"27243","_from":"19590","_to":"19575"} +{"$label":"ACTS_IN","name":"Laban Tall","type":"Role","_key":"27242","_from":"19589","_to":"19575"} +{"$label":"ACTS_IN","name":"Old Smallbury","type":"Role","_key":"27241","_from":"19588","_to":"19575"} +{"$label":"ACTS_IN","name":"Billy Smaallbury","type":"Role","_key":"27240","_from":"19587","_to":"19575"} +{"$label":"ACTS_IN","name":"Mark Clark","type":"Role","_key":"27239","_from":"19586","_to":"19575"} +{"$label":"ACTS_IN","name":"Matthew Moon","type":"Role","_key":"27238","_from":"19585","_to":"19575"} +{"$label":"ACTS_IN","name":"Andrew Randle","type":"Role","_key":"27237","_from":"19584","_to":"19575"} +{"$label":"ACTS_IN","name":"Jan Coggan","type":"Role","_key":"27235","_from":"19583","_to":"19575"} +{"$label":"ACTS_IN","name":"Henery Fray","type":"Role","_key":"27234","_from":"19582","_to":"19575"} +{"$label":"ACTS_IN","name":"Mrs. Hurst","type":"Role","_key":"27233","_from":"19581","_to":"19575"} +{"$label":"ACTS_IN","name":"Fanny Robin","type":"Role","_key":"27232","_from":"19580","_to":"19575"} +{"$label":"ACTS_IN","name":"Liddy","type":"Role","_key":"27231","_from":"19579","_to":"19575"} +{"$label":"DIRECTED","_key":"27225","_from":"19578","_to":"19575"} +{"$label":"DIRECTED","_key":"27224","_from":"19577","_to":"19575"} +{"$label":"DIRECTED","_key":"27223","_from":"19576","_to":"19575"} +{"$label":"ACTS_IN","name":"Mrs. Toovey","type":"Role","_key":"107895","_from":"19579","_to":"63713"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"101944","_from":"19584","_to":"59995"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27249","_from":"19596","_to":"19591"} +{"$label":"ACTS_IN","name":"The Young Girl","type":"Role","_key":"27248","_from":"19595","_to":"19591"} +{"$label":"ACTS_IN","name":"Der Kaiser","type":"Role","_key":"27247","_from":"19594","_to":"19591"} +{"$label":"ACTS_IN","name":"Death","type":"Role","_key":"27246","_from":"19593","_to":"19591"} +{"$label":"DIRECTED","_key":"27244","_from":"19592","_to":"19591"} +{"$label":"ACTS_IN","name":"Jean Morhange","type":"Role","_key":"27261","_from":"19604","_to":"19597"} +{"$label":"ACTS_IN","name":"Lindstrom","type":"Role","_key":"27259","_from":"19603","_to":"19597"} +{"$label":"ACTS_IN","name":"Eggali","type":"Role","_key":"27258","_from":"19602","_to":"19597"} +{"$label":"ACTS_IN","name":"Le Mesge","type":"Role","_key":"27256","_from":"19601","_to":"19597"} +{"$label":"ACTS_IN","name":"Queen Antinea","type":"Role","_key":"27253","_from":"19600","_to":"19597"} +{"$label":"DIRECTED","_key":"27252","_from":"19599","_to":"19597"} +{"$label":"DIRECTED","_key":"27250","_from":"19598","_to":"19597"} +{"$label":"DIRECTED","_key":"119864","_from":"19599","_to":"70384"} +{"$label":"ACTS_IN","name":"Judge Willoughby","type":"Role","_key":"117028","_from":"19601","_to":"68872"} +{"$label":"ACTS_IN","name":"Punter","type":"Role","_key":"27268","_from":"19606","_to":"19605"} +{"$label":"ACTS_IN","name":"Br\u00f3si","type":"Role","_key":"36929","_from":"19606","_to":"25030"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27279","_from":"19613","_to":"19607"} +{"$label":"ACTS_IN","name":"Zinah","type":"Role","_key":"27277","_from":"19612","_to":"19607"} +{"$label":"ACTS_IN","name":"Tamal","type":"Role","_key":"27276","_from":"19611","_to":"19607"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"27275","_from":"19610","_to":"19607"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"27274","_from":"19609","_to":"19607"} +{"$label":"DIRECTED","_key":"27271","_from":"19608","_to":"19607"} +{"$label":"ACTS_IN","name":"Tony Nicosia","type":"Role","_key":"30326","_from":"19611","_to":"21319"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27292","_from":"19623","_to":"19614"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27291","_from":"19622","_to":"19614"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"27290","_from":"19621","_to":"19614"} +{"$label":"ACTS_IN","name":"Lt. Ferrieres","type":"Role","_key":"27289","_from":"19620","_to":"19614"} +{"$label":"ACTS_IN","name":"Ewar Torstenson","type":"Role","_key":"27288","_from":"19619","_to":"19614"} +{"$label":"ACTS_IN","name":"Clementine","type":"Role","_key":"27287","_from":"19618","_to":"19614"} +{"$label":"ACTS_IN","name":"Tanid","type":"Role","_key":"27286","_from":"19617","_to":"19614"} +{"$label":"ACTS_IN","name":"Capt. Morange","type":"Role","_key":"27284","_from":"19616","_to":"19614"} +{"$label":"ACTS_IN","name":"Lt. Saint-Avit","type":"Role","_key":"27283","_from":"19615","_to":"19614"} +{"$label":"ACTS_IN","name":"Schill","type":"Role","_key":"49590","_from":"19616","_to":"32463"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"27304","_from":"19631","_to":"19624"} +{"$label":"ACTS_IN","name":"Horse dealer","type":"Role","_key":"27303","_from":"19630","_to":"19624"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"27302","_from":"19629","_to":"19624"} +{"$label":"ACTS_IN","name":"Stranger","type":"Role","_key":"27301","_from":"19628","_to":"19624"} +{"$label":"ACTS_IN","name":"Francois le Verdun","type":"Role","_key":"27297","_from":"19627","_to":"19624"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"27296","_from":"19626","_to":"19624"} +{"$label":"DIRECTED","_key":"27293","_from":"19625","_to":"19624"} +{"$label":"DIRECTED","_key":"89125","_from":"19625","_to":"52799"} +{"$label":"DIRECTED","_key":"35041","_from":"19625","_to":"23908"} +{"$label":"DIRECTED","_key":"31201","_from":"19625","_to":"21829"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"62115","_from":"19631","_to":"39121"} +{"$label":"ACTS_IN","name":"R\u00e9gine","type":"Role","_key":"34607","_from":"19631","_to":"23684"} +{"$label":"ACTS_IN","name":"Myriam","type":"Role","_key":"27316","_from":"19638","_to":"19632"} +{"$label":"ACTS_IN","name":"Laurent Messala","type":"Role","_key":"27315","_from":"19637","_to":"19632"} +{"$label":"ACTS_IN","name":"Raymond Lapade","type":"Role","_key":"27314","_from":"19636","_to":"19632"} +{"$label":"ACTS_IN","name":"Madame Mazelli","type":"Role","_key":"27313","_from":"19635","_to":"19632"} +{"$label":"ACTS_IN","name":"Servais Vater","type":"Role","_key":"27312","_from":"19634","_to":"19632"} +{"$label":"DIRECTED","_key":"27305","_from":"19633","_to":"19632"} +{"$label":"ACTS_IN","name":"le po\u00e8te","type":"Role","_key":"32676","_from":"19634","_to":"22696"} +{"$label":"ACTS_IN","name":"Dufreigne","type":"Role","_key":"62494","_from":"19636","_to":"39356"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"34392","_from":"19636","_to":"23576"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33358","_from":"19636","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29762","_from":"19636","_to":"21066"} +{"$label":"ACTS_IN","name":"Ginette Marchand","type":"Role","_key":"33871","_from":"19638","_to":"23329"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"27328","_from":"19646","_to":"19639"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"27326","_from":"19645","_to":"19639"} +{"$label":"ACTS_IN","name":"Magali","type":"Role","_key":"27324","_from":"19644","_to":"19639"} +{"$label":"ACTS_IN","name":"Villette","type":"Role","_key":"27323","_from":"19643","_to":"19639"} +{"$label":"ACTS_IN","name":"Chambon","type":"Role","_key":"27322","_from":"19642","_to":"19639"} +{"$label":"ACTS_IN","name":"Catherine Schmidt","type":"Role","_key":"27321","_from":"19641","_to":"19639"} +{"$label":"DIRECTED","_key":"27318","_from":"19640","_to":"19639"} +{"$label":"DIRECTED","_key":"31222","_from":"19640","_to":"21854"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"41239","_from":"19641","_to":"27738"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"30964","_from":"19641","_to":"21695"} +{"$label":"ACTS_IN","name":"Lila von Buliowski","type":"Role","_key":"27346","_from":"19657","_to":"19647"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"27345","_from":"19656","_to":"19647"} +{"$label":"ACTS_IN","name":"Hans von Buelow","type":"Role","_key":"27344","_from":"19655","_to":"19647"} +{"$label":"ACTS_IN","name":"Countess Ida Ferenczy","type":"Role","_key":"27343","_from":"19654","_to":"19647"} +{"$label":"ACTS_IN","name":"Prof. Gudden","type":"Role","_key":"27342","_from":"19653","_to":"19647"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"27340","_from":"19652","_to":"19647"} +{"$label":"ACTS_IN","name":"Prinz Otto","type":"Role","_key":"27338","_from":"19651","_to":"19647"} +{"$label":"ACTS_IN","name":"Queen Mother","type":"Role","_key":"27336","_from":"19650","_to":"19647"} +{"$label":"ACTS_IN","name":"Count Duerckhaim","type":"Role","_key":"27335","_from":"19649","_to":"19647"} +{"$label":"ACTS_IN","name":"Ludwig II.","type":"Role","_key":"27330","_from":"19648","_to":"19647"} +{"$label":"ACTS_IN","name":"Dr. Janosch Timmendorf","type":"Role","_key":"40865","_from":"19648","_to":"27503"} +{"$label":"ACTS_IN","name":"Alberto","type":"Role","_key":"34016","_from":"19648","_to":"23398"} +{"$label":"ACTS_IN","name":"Nanni Vitali","type":"Role","_key":"27727","_from":"19648","_to":"19868"} +{"$label":"ACTS_IN","name":"Maj. Stransky","type":"Role","_key":"66108","_from":"19649","_to":"40897"} +{"$label":"ACTS_IN","name":"Maximilian von Heune","type":"Role","_key":"65772","_from":"19649","_to":"40710"} +{"$label":"ACTS_IN","name":"Maximilian Fox","type":"Role","_key":"43047","_from":"19649","_to":"28745"} +{"$label":"ACTS_IN","name":"Michel Wiener","type":"Role","_key":"35747","_from":"19649","_to":"24292"} +{"$label":"ACTS_IN","name":"James Tienappel","type":"Role","_key":"29577","_from":"19649","_to":"20940"} +{"$label":"ACTS_IN","name":"Phillip Braun","type":"Role","_key":"29548","_from":"19649","_to":"20933"} +{"$label":"ACTS_IN","name":"Gilda","type":"Role","_key":"114554","_from":"19654","_to":"67482"} +{"$label":"ACTS_IN","name":"le fianc\u00e9 de Nicole","type":"Role","_key":"33686","_from":"19656","_to":"23246"} +{"$label":"ACTS_IN","name":"Amore","type":"Role","_key":"89836","_from":"19657","_to":"53155"} +{"$label":"ACTS_IN","name":"Adriana Carati","type":"Role","_key":"71356","_from":"19657","_to":"43279"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"43685","_from":"19657","_to":"29177"} +{"$label":"ACTS_IN","name":"la dame en noir, la soeur du premier pr\u00e9fet","type":"Role","_key":"37829","_from":"19657","_to":"25644"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"27358","_from":"19663","_to":"19658"} +{"$label":"ACTS_IN","name":"Bankdirektor","type":"Role","_key":"27357","_from":"19662","_to":"19658"} +{"$label":"ACTS_IN","name":"Commssaire Villon","type":"Role","_key":"27355","_from":"19661","_to":"19658"} +{"$label":"ACTS_IN","name":"Georges Thorent","type":"Role","_key":"27353","_from":"19660","_to":"19658"} +{"$label":"ACTS_IN","name":"Jeff Marle","type":"Role","_key":"27350","_from":"19659","_to":"19658"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Dalloz","type":"Role","_key":"33407","_from":"19660","_to":"23120"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"71441","_from":"19661","_to":"43314"} +{"$label":"ACTS_IN","name":"Maurice Landru","type":"Role","_key":"30025","_from":"19662","_to":"21177"} +{"$label":"ACTS_IN","name":"l'interpr\u00e8te grec","type":"Role","_key":"33884","_from":"19663","_to":"23338"} +{"$label":"ACTS_IN","name":"Milizenchef","type":"Role","_key":"27370","_from":"19672","_to":"19664"} +{"$label":"ACTS_IN","name":"Juliens Mutter","type":"Role","_key":"27369","_from":"19671","_to":"19664"} +{"$label":"ACTS_IN","name":"Florence Dandieu mit 15 Jahren","type":"Role","_key":"27368","_from":"19670","_to":"19664"} +{"$label":"ACTS_IN","name":"Florence Dandieu mit 8 Jahren","type":"Role","_key":"27367","_from":"19669","_to":"19664"} +{"$label":"ACTS_IN","name":"Dr. M\u00fcller","type":"Role","_key":"27366","_from":"19668","_to":"19664"} +{"$label":"ACTS_IN","name":"Leutnant","type":"Role","_key":"27365","_from":"19667","_to":"19664"} +{"$label":"ACTS_IN","name":"SS Offizier","type":"Role","_key":"27364","_from":"19666","_to":"19664"} +{"$label":"DIRECTED","_key":"27360","_from":"19665","_to":"19664"} +{"$label":"DIRECTED","_key":"69602","_from":"19665","_to":"42489"} +{"$label":"DIRECTED","_key":"40252","_from":"19665","_to":"27158"} +{"$label":"DIRECTED","_key":"30204","_from":"19665","_to":"21284"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"43772","_from":"19666","_to":"29234"} +{"$label":"ACTS_IN","name":"Jochen","type":"Role","_key":"40340","_from":"19666","_to":"27210"} +{"$label":"ACTS_IN","name":"Stahlbaum","type":"Role","_key":"35045","_from":"19666","_to":"23908"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33576","_from":"19666","_to":"23204"} +{"$label":"ACTS_IN","name":"Peter Wade","type":"Role","_key":"28559","_from":"19666","_to":"20416"} +{"$label":"ACTS_IN","name":"Oberlt. Klaus Steinbach","type":"Role","_key":"27602","_from":"19666","_to":"19792"} +{"$label":"ACTS_IN","name":"U-Boat Captain","type":"Role","_key":"120802","_from":"19667","_to":"70946"} +{"$label":"ACTS_IN","name":"Bluto","type":"Role","_key":"100412","_from":"19667","_to":"59211"} +{"$label":"ACTS_IN","name":"Chase Collins","type":"Role","_key":"49063","_from":"19667","_to":"32152"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41207","_from":"19668","_to":"27727"} +{"$label":"ACTS_IN","name":"Richard Mertens","type":"Role","_key":"30952","_from":"19668","_to":"21683"} +{"$label":"ACTS_IN","name":"Prof. Hans Muller-Mertens","type":"Role","_key":"27380","_from":"19676","_to":"19673"} +{"$label":"ACTS_IN","name":"Dr. Petrie","type":"Role","_key":"27378","_from":"19675","_to":"19673"} +{"$label":"DIRECTED","_key":"27372","_from":"19674","_to":"19673"} +{"$label":"ACTS_IN","name":"Dr. Petrie","type":"Role","_key":"27416","_from":"19675","_to":"19690"} +{"$label":"ACTS_IN","name":"Dr. Petrie","type":"Role","_key":"27396","_from":"19675","_to":"19679"} +{"$label":"ACTS_IN","name":"Prof. Pohland","type":"Role","_key":"118851","_from":"19676","_to":"69858"} +{"$label":"ACTS_IN","name":"John Leith","type":"Role","_key":"38178","_from":"19676","_to":"25804"} +{"$label":"ACTS_IN","name":"Lord Kingsley","type":"Role","_key":"38114","_from":"19676","_to":"25774"} +{"$label":"ACTS_IN","name":"John M. Clark","type":"Role","_key":"32715","_from":"19676","_to":"22720"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31336","_from":"19676","_to":"21905"} +{"$label":"ACTS_IN","name":"Pesquet","type":"Role","_key":"27390","_from":"19678","_to":"19677"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"27401","_from":"19684","_to":"19679"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"27400","_from":"19683","_to":"19679"} +{"$label":"ACTS_IN","name":"Sancho Lopez","type":"Role","_key":"27399","_from":"19682","_to":"19679"} +{"$label":"ACTS_IN","name":"Ursula Wagner","type":"Role","_key":"27398","_from":"19681","_to":"19679"} +{"$label":"ACTS_IN","name":"Nayland Smith","type":"Role","_key":"27395","_from":"19680","_to":"19679"} +{"$label":"ACTS_IN","name":"Nyland Smith","type":"Role","_key":"27415","_from":"19680","_to":"19690"} +{"$label":"ACTS_IN","name":"Mina Harker","type":"Role","_key":"38073","_from":"19681","_to":"25754"} +{"$label":"ACTS_IN","name":"Elsa Martino","type":"Role","_key":"34502","_from":"19681","_to":"23625"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"45117","_from":"19683","_to":"29944"} +{"$label":"ACTS_IN","name":"McLeod","type":"Role","_key":"27412","_from":"19689","_to":"19685"} +{"$label":"ACTS_IN","name":"Terence Granville","type":"Role","_key":"27408","_from":"19688","_to":"19685"} +{"$label":"DIRECTED","_key":"27404","_from":"19687","_to":"19685"} +{"$label":"DIRECTED","_key":"27403","_from":"19686","_to":"19685"} +{"$label":"DIRECTED","_key":"28705","_from":"19686","_to":"20507"} +{"$label":"ACTS_IN","name":"Andrew Baynes","type":"Role","_key":"110437","_from":"19689","_to":"65236"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"27419","_from":"19692","_to":"19690"} +{"$label":"ACTS_IN","name":"Curt","type":"Role","_key":"27417","_from":"19691","_to":"19690"} +{"$label":"ACTS_IN","name":"Prof. Bascombe","type":"Role","_key":"44225","_from":"19691","_to":"29470"} +{"$label":"ACTS_IN","name":"Guy Foster","type":"Role","_key":"43631","_from":"19691","_to":"29135"} +{"$label":"ACTS_IN","name":"Inspector Torber","type":"Role","_key":"40526","_from":"19691","_to":"27287"} +{"$label":"ACTS_IN","name":"Heino Docke","type":"Role","_key":"39968","_from":"19691","_to":"26992"} +{"$label":"ACTS_IN","name":"Hilde Bergman","type":"Role","_key":"106340","_from":"19692","_to":"62650"} +{"$label":"ACTS_IN","name":"Joan Smith","type":"Role","_key":"32328","_from":"19692","_to":"22516"} +{"$label":"ACTS_IN","name":"Doris Korff","type":"Role","_key":"27601","_from":"19692","_to":"19792"} +{"$label":"ACTS_IN","name":"Tang","type":"Role","_key":"27438","_from":"19698","_to":"19693"} +{"$label":"ACTS_IN","name":"Dr. Wretch","type":"Role","_key":"27437","_from":"19697","_to":"19693"} +{"$label":"ACTS_IN","name":"Ismail","type":"Role","_key":"27434","_from":"19696","_to":"19693"} +{"$label":"ACTS_IN","name":"Robert Townsend","type":"Role","_key":"27432","_from":"19695","_to":"19693"} +{"$label":"DIRECTED","_key":"27425","_from":"19694","_to":"19693"} +{"$label":"DIRECTED","_key":"50443","_from":"19694","_to":"32948"} +{"$label":"ACTS_IN","name":"Station Sergeant","type":"Role","_key":"117903","_from":"19696","_to":"69304"} +{"$label":"ACTS_IN","name":"Rabbi","type":"Role","_key":"47916","_from":"19697","_to":"31519"} +{"$label":"ACTS_IN","name":"Cl\u00e9ment Weber","type":"Role","_key":"30670","_from":"19697","_to":"21526"} +{"$label":"ACTS_IN","name":"Sirdar Prahni","type":"Role","_key":"27448","_from":"19708","_to":"19700"} +{"$label":"ACTS_IN","name":"Mary Randolph","type":"Role","_key":"27447","_from":"19707","_to":"19700"} +{"$label":"ACTS_IN","name":"Prof. Randolph","type":"Role","_key":"27446","_from":"19706","_to":"19700"} +{"$label":"ACTS_IN","name":"Fah-Lo-Suee","type":"Role","_key":"27444","_from":"19705","_to":"19700"} +{"$label":"ACTS_IN","name":"Allan Parker","type":"Role","_key":"27443","_from":"19704","_to":"19700"} +{"$label":"ACTS_IN","name":"Sir Dennis Nayland Smith","type":"Role","_key":"27442","_from":"19703","_to":"19700"} +{"$label":"DIRECTED","_key":"27440","_from":"19702","_to":"19700"} +{"$label":"DIRECTED","_key":"27439","_from":"19701","_to":"19700"} +{"$label":"DIRECTED","_key":"27462","_from":"19701","_to":"19714"} +{"$label":"DIRECTED","_key":"117552","_from":"19702","_to":"69113"} +{"$label":"DIRECTED","_key":"116948","_from":"19702","_to":"68836"} +{"$label":"DIRECTED","_key":"35552","_from":"19702","_to":"24170"} +{"$label":"DIRECTED","_key":"27463","_from":"19702","_to":"19714"} +{"$label":"ACTS_IN","name":"Sir Dennis Nayland Smith","type":"Role","_key":"27465","_from":"19703","_to":"19714"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"29265","_from":"19704","_to":"20796"} +{"$label":"ACTS_IN","name":"Allan Parker","type":"Role","_key":"27466","_from":"19704","_to":"19714"} +{"$label":"ACTS_IN","name":"Fah-Lo-Suee","type":"Role","_key":"27467","_from":"19705","_to":"19714"} +{"$label":"ACTS_IN","name":"Prof. Randolph","type":"Role","_key":"27469","_from":"19706","_to":"19714"} +{"$label":"ACTS_IN","name":"Millie","type":"Role","_key":"29027","_from":"19707","_to":"20709"} +{"$label":"ACTS_IN","name":"Mary Randolph","type":"Role","_key":"27470","_from":"19707","_to":"19714"} +{"$label":"ACTS_IN","name":"Sirdar Prahni","type":"Role","_key":"27471","_from":"19708","_to":"19714"} +{"$label":"ACTS_IN","name":"Johnny D`Franco","type":"Role","_key":"27460","_from":"19713","_to":"19709"} +{"$label":"ACTS_IN","name":"Jeremy Guber","type":"Role","_key":"27459","_from":"19712","_to":"19709"} +{"$label":"ACTS_IN","name":"Guy LaForge","type":"Role","_key":"27458","_from":"19711","_to":"19709"} +{"$label":"ACTS_IN","name":"Sara Pollard","type":"Role","_key":"27457","_from":"19710","_to":"19709"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"99103","_from":"19711","_to":"58388"} +{"$label":"ACTS_IN","name":"Prinz Eisenherz","type":"Role","_key":"42757","_from":"19711","_to":"28616"} +{"$label":"ACTS_IN","name":"Kiklidze","type":"Role","_key":"50370","_from":"19712","_to":"32894"} +{"$label":"ACTS_IN","name":"Stephen Chandler","type":"Role","_key":"114746","_from":"19713","_to":"67588"} +{"$label":"ACTS_IN","name":"Muller","type":"Role","_key":"112293","_from":"19713","_to":"66302"} +{"$label":"ACTS_IN","name":"Logan","type":"Role","_key":"111121","_from":"19713","_to":"65632"} +{"$label":"ACTS_IN","name":"Troy Pasternak","type":"Role","_key":"101763","_from":"19713","_to":"59885"} +{"$label":"ACTS_IN","name":"Dickens","type":"Role","_key":"70661","_from":"19713","_to":"42995"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"62799","_from":"19713","_to":"39467"} +{"$label":"DIRECTED","_key":"27472","_from":"19716","_to":"19715"} +{"$label":"ACTS_IN","name":"Arctor's Wife","type":"Role","_key":"27482","_from":"19723","_to":"19717"} +{"$label":"ACTS_IN","name":"Doctor 2","type":"Role","_key":"27481","_from":"19722","_to":"19717"} +{"$label":"ACTS_IN","name":"Doctor 1","type":"Role","_key":"27480","_from":"19721","_to":"19717"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"27479","_from":"19720","_to":"19717"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"27478","_from":"19719","_to":"19717"} +{"$label":"ACTS_IN","name":"Brown Bear Lodge Host","type":"Role","_key":"27477","_from":"19718","_to":"19717"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"49024","_from":"19718","_to":"32126"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"60611","_from":"19721","_to":"38253"} +{"$label":"DIRECTED","_key":"27493","_from":"19732","_to":"19724"} +{"$label":"ACTS_IN","name":"Gabor","type":"Role","_key":"27492","_from":"19731","_to":"19724"} +{"$label":"ACTS_IN","name":"Gordana","type":"Role","_key":"27491","_from":"19730","_to":"19724"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27490","_from":"19729","_to":"19724"} +{"$label":"ACTS_IN","name":"Berlin Girl","type":"Role","_key":"27489","_from":"19728","_to":"19724"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"27488","_from":"19727","_to":"19724"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"27487","_from":"19726","_to":"19724"} +{"$label":"ACTS_IN","name":"Elijah","type":"Role","_key":"27486","_from":"19725","_to":"19724"} +{"$label":"DIRECTED","_key":"113898","_from":"19725","_to":"67089"} +{"$label":"DIRECTED","_key":"72719","_from":"19725","_to":"43818"} +{"$label":"DIRECTED","_key":"27502","_from":"19737","_to":"19733"} +{"$label":"ACTS_IN","name":"Michelle Duncan`s Body Double","type":"Role","_key":"27501","_from":"19736","_to":"19733"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"27500","_from":"19735","_to":"19733"} +{"$label":"ACTS_IN","name":"Kate Coleman","type":"Role","_key":"27497","_from":"19734","_to":"19733"} +{"$label":"ACTS_IN","name":"Bryony","type":"Role","_key":"69652","_from":"19734","_to":"42519"} +{"$label":"DIRECTED","_key":"88812","_from":"19737","_to":"52622"} +{"$label":"ACTS_IN","name":"Bargirl","type":"Role","_key":"27515","_from":"19746","_to":"19738"} +{"$label":"ACTS_IN","name":"Cap. Linda Gilder","type":"Role","_key":"27514","_from":"19745","_to":"19738"} +{"$label":"ACTS_IN","name":"Admiral Bates","type":"Role","_key":"27513","_from":"19744","_to":"19738"} +{"$label":"ACTS_IN","name":"Female Mercenary","type":"Role","_key":"27512","_from":"19743","_to":"19738"} +{"$label":"ACTS_IN","name":"3. Mercenary","type":"Role","_key":"27511","_from":"19742","_to":"19738"} +{"$label":"ACTS_IN","name":"2. Mercenary","type":"Role","_key":"27510","_from":"19741","_to":"19738"} +{"$label":"ACTS_IN","name":"Sarah Ryback","type":"Role","_key":"27507","_from":"19740","_to":"19738"} +{"$label":"DIRECTED","_key":"27503","_from":"19739","_to":"19738"} +{"$label":"DIRECTED","_key":"107181","_from":"19739","_to":"63215"} +{"$label":"DIRECTED","_key":"67986","_from":"19739","_to":"41774"} +{"$label":"DIRECTED","_key":"61435","_from":"19739","_to":"38750"} +{"$label":"DIRECTED","_key":"52801","_from":"19739","_to":"34245"} +{"$label":"DIRECTED","_key":"52481","_from":"19739","_to":"34143"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"116973","_from":"19740","_to":"68851"} +{"$label":"ACTS_IN","name":"Marty Claridge","type":"Role","_key":"108350","_from":"19740","_to":"64047"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"72815","_from":"19740","_to":"43868"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"63618","_from":"19740","_to":"39800"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"59745","_from":"19740","_to":"37723"} +{"$label":"ACTS_IN","name":"Lynn Sheridan","type":"Role","_key":"58202","_from":"19740","_to":"36816"} +{"$label":"ACTS_IN","name":"Karly Hert","type":"Role","_key":"47458","_from":"19740","_to":"31263"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"44076","_from":"19740","_to":"29388"} +{"$label":"ACTS_IN","name":"Princess Ilene","type":"Role","_key":"42758","_from":"19740","_to":"28616"} +{"$label":"ACTS_IN","name":"Alison Scott","type":"Role","_key":"35175","_from":"19740","_to":"23973"} +{"$label":"ACTS_IN","name":"Byron Volpe","type":"Role","_key":"119288","_from":"19741","_to":"70090"} +{"$label":"ACTS_IN","name":"John Wesley","type":"Role","_key":"116522","_from":"19741","_to":"68581"} +{"$label":"ACTS_IN","name":"Christian 'The Sandman' Naylor","type":"Role","_key":"112331","_from":"19741","_to":"66317"} +{"$label":"ACTS_IN","name":"The Detective","type":"Role","_key":"98522","_from":"19741","_to":"58062"} +{"$label":"ACTS_IN","name":"Ray Booth","type":"Role","_key":"94986","_from":"19741","_to":"55928"} +{"$label":"ACTS_IN","name":"Amelia B","type":"Role","_key":"37770","_from":"19743","_to":"25613"} +{"$label":"ACTS_IN","name":"Undersecretary of Defense Daniel Harper","type":"Role","_key":"52726","_from":"19744","_to":"34221"} +{"$label":"ACTS_IN","name":"Adm. Bates","type":"Role","_key":"51055","_from":"19744","_to":"33312"} +{"$label":"ACTS_IN","name":"Murdock","type":"Role","_key":"49667","_from":"19744","_to":"32500"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"117674","_from":"19745","_to":"69168"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"111117","_from":"19745","_to":"65632"} +{"$label":"ACTS_IN","name":"Michelle Rodham Huddleston","type":"Role","_key":"52623","_from":"19745","_to":"34186"} +{"$label":"ACTS_IN","name":"Cordelia","type":"Role","_key":"52327","_from":"19745","_to":"34061"} +{"$label":"ACTS_IN","name":"Sgt. Nim","type":"Role","_key":"49568","_from":"19745","_to":"32456"} +{"$label":"ACTS_IN","name":"Concierge Dianne","type":"Role","_key":"110936","_from":"19746","_to":"65527"} +{"$label":"ACTS_IN","name":"Model Shelby","type":"Role","_key":"34111","_from":"19746","_to":"23435"} +{"$label":"ACTS_IN","name":"Lacey","type":"Role","_key":"32948","_from":"19746","_to":"22845"} +{"$label":"ACTS_IN","name":"Capt. Rousselot","type":"Role","_key":"27527","_from":"19752","_to":"19747"} +{"$label":"ACTS_IN","name":"Julot","type":"Role","_key":"27526","_from":"19751","_to":"19747"} +{"$label":"ACTS_IN","name":"Rene Galgano","type":"Role","_key":"27525","_from":"19750","_to":"19747"} +{"$label":"ACTS_IN","name":"Katarina","type":"Role","_key":"27522","_from":"19749","_to":"19747"} +{"$label":"ACTS_IN","name":"Mackintosh","type":"Role","_key":"27520","_from":"19748","_to":"19747"} +{"$label":"ACTS_IN","name":"Mr. Musgrove","type":"Role","_key":"97693","_from":"19748","_to":"57524"} +{"$label":"ACTS_IN","name":"Brigadier Maclellan","type":"Role","_key":"29628","_from":"19748","_to":"20970"} +{"$label":"ACTS_IN","name":"Al Shaw","type":"Role","_key":"27541","_from":"19758","_to":"19754"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"27539","_from":"19757","_to":"19754"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"27538","_from":"19756","_to":"19754"} +{"$label":"ACTS_IN","name":"Pathologist","type":"Role","_key":"27537","_from":"19755","_to":"19754"} +{"$label":"ACTS_IN","name":"Duncan Allen","type":"Role","_key":"101921","_from":"19756","_to":"59982"} +{"$label":"ACTS_IN","name":"David Reynolds","type":"Role","_key":"91142","_from":"19756","_to":"53767"} +{"$label":"ACTS_IN","name":"Lydia Gorstein","type":"Role","_key":"27543","_from":"19760","_to":"19759"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27550","_from":"19762","_to":"19761"} +{"$label":"ACTS_IN","name":"Tima","type":"Role","_key":"27549","_from":"19764","_to":"19761"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27546","_from":"19763","_to":"19761"} +{"$label":"DIRECTED","_key":"27544","_from":"19762","_to":"19761"} +{"$label":"DIRECTED","_key":"47817","_from":"19762","_to":"31478"} +{"$label":"DIRECTED","_key":"41972","_from":"19762","_to":"28127"} +{"$label":"DIRECTED","_key":"27554","_from":"19762","_to":"19766"} +{"$label":"DIRECTED","_key":"27551","_from":"19762","_to":"19765"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47814","_from":"19764","_to":"31478"} +{"$label":"ACTS_IN","name":"Lolly","type":"Role","_key":"27564","_from":"19772","_to":"19767"} +{"$label":"ACTS_IN","name":"Santina","type":"Role","_key":"27563","_from":"19771","_to":"19767"} +{"$label":"ACTS_IN","name":"Lion Tamer","type":"Role","_key":"27561","_from":"19770","_to":"19767"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"27560","_from":"19769","_to":"19767"} +{"$label":"DIRECTED","_key":"27555","_from":"19768","_to":"19767"} +{"$label":"ACTS_IN","name":"Salazar","type":"Role","_key":"33483","_from":"19769","_to":"23163"} +{"$label":"ACTS_IN","name":"Queen Taxen","type":"Role","_key":"46185","_from":"19770","_to":"30524"} +{"$label":"ACTS_IN","name":"Cynthia Fulton","type":"Role","_key":"28577","_from":"19772","_to":"20426"} +{"$label":"ACTS_IN","name":"Mr. Shelby","type":"Role","_key":"27575","_from":"19779","_to":"19773"} +{"$label":"ACTS_IN","name":"Oberst Drood","type":"Role","_key":"27574","_from":"19778","_to":"19773"} +{"$label":"ACTS_IN","name":"Chiefinsp. Tetley","type":"Role","_key":"27573","_from":"19777","_to":"19773"} +{"$label":"ACTS_IN","name":"Cora Minelli","type":"Role","_key":"27570","_from":"19776","_to":"19773"} +{"$label":"ACTS_IN","name":"Insp. Weston","type":"Role","_key":"27567","_from":"19775","_to":"19773"} +{"$label":"DIRECTED","_key":"27565","_from":"19774","_to":"19773"} +{"$label":"DIRECTED","_key":"32708","_from":"19774","_to":"22720"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"62529","_from":"19775","_to":"39364"} +{"$label":"ACTS_IN","name":"Herr M\u00fcller","type":"Role","_key":"61845","_from":"19775","_to":"38929"} +{"$label":"ACTS_IN","name":"Dr. Peter Wiedemann","type":"Role","_key":"45402","_from":"19775","_to":"30098"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"45305","_from":"19775","_to":"30050"} +{"$label":"ACTS_IN","name":"Dr. med. Gert Falk","type":"Role","_key":"45033","_from":"19775","_to":"29920"} +{"$label":"ACTS_IN","name":"Dr. Siedler","type":"Role","_key":"44893","_from":"19775","_to":"29857"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"42062","_from":"19775","_to":"28185"} +{"$label":"DIRECTED","_key":"35542","_from":"19775","_to":"24164"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31335","_from":"19777","_to":"21905"} +{"$label":"ACTS_IN","name":"Radio Voice","type":"Role","_key":"44816","_from":"19779","_to":"29804"} +{"$label":"ACTS_IN","name":"Colonel Chesney","type":"Role","_key":"41094","_from":"19779","_to":"27647"} +{"$label":"ACTS_IN","name":"Heimo Buntje","type":"Role","_key":"40931","_from":"19779","_to":"27539"} +{"$label":"ACTS_IN","name":"Oskar","type":"Role","_key":"40314","_from":"19779","_to":"27196"} +{"$label":"ACTS_IN","name":"N\u00f6rgler","type":"Role","_key":"39795","_from":"19779","_to":"26876"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"27587","_from":"19787","_to":"19780"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"27586","_from":"19786","_to":"19780"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27584","_from":"19785","_to":"19780"} +{"$label":"ACTS_IN","name":"The Major","type":"Role","_key":"27583","_from":"19784","_to":"19780"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"27582","_from":"19783","_to":"19780"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"27580","_from":"19782","_to":"19780"} +{"$label":"DIRECTED","_key":"27578","_from":"19781","_to":"19780"} +{"$label":"DIRECTED","_key":"70532","_from":"19781","_to":"42928"} +{"$label":"DIRECTED","_key":"69272","_from":"19781","_to":"42352"} +{"$label":"DIRECTED","_key":"69157","_from":"19781","_to":"42295"} +{"$label":"DIRECTED","_key":"34557","_from":"19781","_to":"23665"} +{"$label":"ACTS_IN","name":"Velasquez","type":"Role","_key":"119683","_from":"19782","_to":"70293"} +{"$label":"ACTS_IN","name":"Pte. Henry Hook","type":"Role","_key":"100242","_from":"19782","_to":"59121"} +{"$label":"ACTS_IN","name":"John Baker","type":"Role","_key":"71810","_from":"19782","_to":"43458"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"27599","_from":"19789","_to":"19788"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"27596","_from":"19791","_to":"19788"} +{"$label":"ACTS_IN","name":"Woody Johnson","type":"Role","_key":"27595","_from":"19790","_to":"19788"} +{"$label":"DIRECTED","_key":"27589","_from":"19789","_to":"19788"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44240","_from":"19789","_to":"29476"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43914","_from":"19789","_to":"29305"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40940","_from":"19789","_to":"27539"} +{"$label":"ACTS_IN","name":"Polizeipr\u00e4sident Herculano","type":"Role","_key":"40018","_from":"19789","_to":"27017"} +{"$label":"ACTS_IN","name":"Nieby","type":"Role","_key":"39970","_from":"19789","_to":"26992"} +{"$label":"ACTS_IN","name":"Leichenbeschauer","type":"Role","_key":"39812","_from":"19789","_to":"26893"} +{"$label":"DIRECTED","_key":"40928","_from":"19789","_to":"27539"} +{"$label":"DIRECTED","_key":"40388","_from":"19789","_to":"27239"} +{"$label":"DIRECTED","_key":"40008","_from":"19789","_to":"27017"} +{"$label":"DIRECTED","_key":"39950","_from":"19789","_to":"26992"} +{"$label":"DIRECTED","_key":"39799","_from":"19789","_to":"26893"} +{"$label":"ACTS_IN","name":"Jerome (Jo) Sommer","type":"Role","_key":"90721","_from":"19790","_to":"53551"} +{"$label":"ACTS_IN","name":"Paulchen","type":"Role","_key":"45125","_from":"19790","_to":"29944"} +{"$label":"ACTS_IN","name":"Charley Sallmann","type":"Role","_key":"40986","_from":"19790","_to":"27570"} +{"$label":"ACTS_IN","name":"Hemingway","type":"Role","_key":"39132","_from":"19790","_to":"26449"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"38190","_from":"19790","_to":"25808"} +{"$label":"ACTS_IN","name":"Michel Boissand","type":"Role","_key":"35800","_from":"19790","_to":"24312"} +{"$label":"ACTS_IN","name":"Earl of Cockwood","type":"Role","_key":"46212","_from":"19791","_to":"30544"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"45959","_from":"19791","_to":"30385"} +{"$label":"ACTS_IN","name":"Prof. Mac Cormick","type":"Role","_key":"42169","_from":"19791","_to":"28249"} +{"$label":"ACTS_IN","name":"Oberlt. Adameit","type":"Role","_key":"27612","_from":"19801","_to":"19792"} +{"$label":"ACTS_IN","name":"Oberscharf\u00fchrer Niedermeyer","type":"Role","_key":"27611","_from":"19800","_to":"19792"} +{"$label":"ACTS_IN","name":"Marlene","type":"Role","_key":"27610","_from":"19799","_to":"19792"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"27609","_from":"19798","_to":"19792"} +{"$label":"ACTS_IN","name":"SS Sturmf\u00fchrer Hellmich","type":"Role","_key":"27608","_from":"19797","_to":"19792"} +{"$label":"ACTS_IN","name":"Oberlt. Mertens","type":"Role","_key":"27607","_from":"19796","_to":"19792"} +{"$label":"ACTS_IN","name":"Hauptsturmf\u00fchrer Kempe","type":"Role","_key":"27606","_from":"19795","_to":"19792"} +{"$label":"ACTS_IN","name":"Obersturmbandf\u00fchrer Meyer-Westroff","type":"Role","_key":"27605","_from":"19794","_to":"19792"} +{"$label":"DIRECTED","_key":"27600","_from":"19793","_to":"19792"} +{"$label":"DIRECTED","_key":"67348","_from":"19793","_to":"41508"} +{"$label":"DIRECTED","_key":"63394","_from":"19793","_to":"39717"} +{"$label":"DIRECTED","_key":"40525","_from":"19793","_to":"27287"} +{"$label":"ACTS_IN","name":"Alois","type":"Role","_key":"42575","_from":"19794","_to":"28496"} +{"$label":"ACTS_IN","name":"Gesch\u00e4ftsf\u00fchrer","type":"Role","_key":"40586","_from":"19794","_to":"27326"} +{"$label":"ACTS_IN","name":"Lew Hatton","type":"Role","_key":"32663","_from":"19796","_to":"22691"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32432","_from":"19796","_to":"22563"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32419","_from":"19796","_to":"22555"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32408","_from":"19796","_to":"22551"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32395","_from":"19796","_to":"22544"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32378","_from":"19796","_to":"22535"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32338","_from":"19796","_to":"22516"} +{"$label":"ACTS_IN","name":"Voic of Kommissar X","type":"Role","_key":"32323","_from":"19796","_to":"22499"} +{"$label":"ACTS_IN","name":"Grit genannt Miss Kurvenreich","type":"Role","_key":"45160","_from":"19798","_to":"29959"} +{"$label":"ACTS_IN","name":"Peter Clifton","type":"Role","_key":"38185","_from":"19800","_to":"25804"} +{"$label":"ACTS_IN","name":"Armbriester","type":"Role","_key":"27624","_from":"19804","_to":"19802"} +{"$label":"ACTS_IN","name":"Turkel","type":"Role","_key":"27622","_from":"19803","_to":"19802"} +{"$label":"ACTS_IN","name":"Dusty Acres","type":"Role","_key":"108564","_from":"19804","_to":"64161"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"27637","_from":"19812","_to":"19805"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"27636","_from":"19811","_to":"19805"} +{"$label":"ACTS_IN","name":"Bit part","type":"Role","_key":"27635","_from":"19810","_to":"19805"} +{"$label":"ACTS_IN","name":"Alma Styles","type":"Role","_key":"27633","_from":"19809","_to":"19805"} +{"$label":"ACTS_IN","name":"Ralph Edwards","type":"Role","_key":"27632","_from":"19808","_to":"19805"} +{"$label":"ACTS_IN","name":"Studio Stylist","type":"Role","_key":"27631","_from":"19807","_to":"19805"} +{"$label":"ACTS_IN","name":"Ernest Farmer","type":"Role","_key":"27629","_from":"19806","_to":"19805"} +{"$label":"ACTS_IN","name":"Cliff Ormbsby","type":"Role","_key":"27647","_from":"19816","_to":"19813"} +{"$label":"ACTS_IN","name":"Cocktail Waltress","type":"Role","_key":"27646","_from":"19815","_to":"19813"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"27644","_from":"19814","_to":"19813"} +{"$label":"ACTS_IN","name":"Chaz","type":"Role","_key":"120009","_from":"19814","_to":"70480"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"116714","_from":"19814","_to":"68705"} +{"$label":"ACTS_IN","name":"Alex North","type":"Role","_key":"103048","_from":"19814","_to":"60622"} +{"$label":"ACTS_IN","name":"Father Francis","type":"Role","_key":"91089","_from":"19814","_to":"53747"} +{"$label":"ACTS_IN","name":"Zack Stemmons","type":"Role","_key":"71068","_from":"19814","_to":"43153"} +{"$label":"ACTS_IN","name":"Fanatiker","type":"Role","_key":"27661","_from":"19822","_to":"19817"} +{"$label":"ACTS_IN","name":"Supi-Susi","type":"Role","_key":"27658","_from":"19821","_to":"19817"} +{"$label":"ACTS_IN","name":"Hufschmied","type":"Role","_key":"27657","_from":"19820","_to":"19817"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"27654","_from":"19819","_to":"19817"} +{"$label":"DIRECTED","_key":"27649","_from":"19818","_to":"19817"} +{"$label":"ACTS_IN","name":"Ann-Sophie","type":"Role","_key":"42157","_from":"19819","_to":"28239"} +{"$label":"ACTS_IN","name":"Leutnant Stauder","type":"Role","_key":"62229","_from":"19820","_to":"39188"} +{"$label":"ACTS_IN","name":"Dorothy Wynant","type":"Role","_key":"27675","_from":"19834","_to":"19823"} +{"$label":"ACTS_IN","name":"Tanner","type":"Role","_key":"27674","_from":"19833","_to":"19823"} +{"$label":"ACTS_IN","name":"Clyde Wynant","type":"Role","_key":"27673","_from":"19832","_to":"19823"} +{"$label":"ACTS_IN","name":"Julia Wolf","type":"Role","_key":"27672","_from":"19831","_to":"19823"} +{"$label":"ACTS_IN","name":"Arthur Nunheim","type":"Role","_key":"27670","_from":"19830","_to":"19823"} +{"$label":"ACTS_IN","name":"Gilbert Wynant","type":"Role","_key":"27669","_from":"19829","_to":"19823"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"27668","_from":"19828","_to":"19823"} +{"$label":"ACTS_IN","name":"Mimi Jorgenson","type":"Role","_key":"27667","_from":"19827","_to":"19823"} +{"$label":"ACTS_IN","name":"Lt. John Guild","type":"Role","_key":"27666","_from":"19826","_to":"19823"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"27664","_from":"19825","_to":"19823"} +{"$label":"DIRECTED","_key":"27663","_from":"19824","_to":"19823"} +{"$label":"DIRECTED","_key":"100986","_from":"19824","_to":"59510"} +{"$label":"DIRECTED","_key":"100957","_from":"19824","_to":"59504"} +{"$label":"DIRECTED","_key":"100943","_from":"19824","_to":"59500"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"101005","_from":"19825","_to":"59526"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"100993","_from":"19825","_to":"59522"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"100973","_from":"19825","_to":"59510"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"100958","_from":"19825","_to":"59504"} +{"$label":"ACTS_IN","name":"Nick Charles","type":"Role","_key":"100944","_from":"19825","_to":"59500"} +{"$label":"ACTS_IN","name":"Dan Hardesty","type":"Role","_key":"95597","_from":"19825","_to":"56232"} +{"$label":"ACTS_IN","name":"Godfrey","type":"Role","_key":"95219","_from":"19825","_to":"56023"} +{"$label":"ACTS_IN","name":"J.D. Hanley","type":"Role","_key":"62457","_from":"19825","_to":"39337"} +{"$label":"ACTS_IN","name":"Lieutenant John Guild","type":"Role","_key":"100964","_from":"19826","_to":"59504"} +{"$label":"ACTS_IN","name":"Joe Weyman","type":"Role","_key":"28026","_from":"19826","_to":"20091"} +{"$label":"ACTS_IN","name":"Brogan","type":"Role","_key":"101002","_from":"19832","_to":"59522"} +{"$label":"ACTS_IN","name":"Timothy Q. Maus","type":"Role","_key":"69398","_from":"19832","_to":"42422"} +{"$label":"ACTS_IN","name":"Jake Shomberg","type":"Role","_key":"28199","_from":"19832","_to":"20193"} +{"$label":"ACTS_IN","name":"Georgette Stroud","type":"Role","_key":"121642","_from":"19834","_to":"71463"} +{"$label":"ACTS_IN","name":"Jane Parker","type":"Role","_key":"118407","_from":"19834","_to":"69607"} +{"$label":"ACTS_IN","name":"Judy Standish","type":"Role","_key":"72862","_from":"19834","_to":"43887"} +{"$label":"ACTS_IN","name":"Lillian Stanton","type":"Role","_key":"45601","_from":"19834","_to":"30182"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"36074","_from":"19834","_to":"24486"} +{"$label":"ACTS_IN","name":"Ronald Rabbit Parker","type":"Role","_key":"27687","_from":"19837","_to":"19835"} +{"$label":"ACTS_IN","name":"Lt. Pete Emmett","type":"Role","_key":"27681","_from":"19836","_to":"19835"} +{"$label":"ACTS_IN","name":"Derek Bliss","type":"Role","_key":"64469","_from":"19836","_to":"40170"} +{"$label":"ACTS_IN","name":"Rich Walker","type":"Role","_key":"60580","_from":"19836","_to":"38237"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"65173","_from":"19837","_to":"40482"} +{"$label":"ACTS_IN","name":"M.C.","type":"Role","_key":"27701","_from":"19851","_to":"19838"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"27700","_from":"19850","_to":"19838"} +{"$label":"ACTS_IN","name":"Mrs. Sherwood","type":"Role","_key":"27699","_from":"19849","_to":"19838"} +{"$label":"ACTS_IN","name":"Montgomery","type":"Role","_key":"27698","_from":"19848","_to":"19838"} +{"$label":"ACTS_IN","name":"Francois Lafete","type":"Role","_key":"27697","_from":"19847","_to":"19838"} +{"$label":"ACTS_IN","name":"Mrs. Finsecker","type":"Role","_key":"27696","_from":"19846","_to":"19838"} +{"$label":"ACTS_IN","name":"Shorofsky","type":"Role","_key":"27695","_from":"19845","_to":"19838"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"27694","_from":"19844","_to":"19838"} +{"$label":"ACTS_IN","name":"Hilary","type":"Role","_key":"27693","_from":"19843","_to":"19838"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"27692","_from":"19842","_to":"19838"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"27691","_from":"19841","_to":"19838"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"27690","_from":"19840","_to":"19838"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"27689","_from":"19839","_to":"19838"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"119719","_from":"19839","_to":"70307"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"51888","_from":"19844","_to":"33850"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"49927","_from":"19844","_to":"32684"} +{"$label":"ACTS_IN","name":"Rebecca Stinnett","type":"Role","_key":"115265","_from":"19846","_to":"67870"} +{"$label":"ACTS_IN","name":"Matty Wheaton","type":"Role","_key":"105790","_from":"19846","_to":"62284"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"65909","_from":"19847","_to":"40772"} +{"$label":"ACTS_IN","name":"Frank Berry","type":"Role","_key":"69055","_from":"19848","_to":"42266"} +{"$label":"ACTS_IN","name":"Emil Antonowsky","type":"Role","_key":"37780","_from":"19848","_to":"25618"} +{"$label":"ACTS_IN","name":"Alice Bushkin","type":"Role","_key":"101893","_from":"19849","_to":"59969"} +{"$label":"ACTS_IN","name":"Mary Brady","type":"Role","_key":"32737","_from":"19849","_to":"22725"} +{"$label":"ACTS_IN","name":"Debbie Allen","type":"Role","_key":"50852","_from":"19850","_to":"33193"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"101189","_from":"19851","_to":"59606"} +{"$label":"ACTS_IN","name":"Belz","type":"Role","_key":"38565","_from":"19851","_to":"26054"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"27707","_from":"19858","_to":"19852"} +{"$label":"ACTS_IN","name":"Mirko","type":"Role","_key":"27706","_from":"19857","_to":"19852"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"27705","_from":"19856","_to":"19852"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"27704","_from":"19855","_to":"19852"} +{"$label":"ACTS_IN","name":"Gisela","type":"Role","_key":"27703","_from":"19854","_to":"19852"} +{"$label":"DIRECTED","_key":"27702","_from":"19853","_to":"19852"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"48412","_from":"19855","_to":"31768"} +{"$label":"ACTS_IN","name":"Udo","type":"Role","_key":"40000","_from":"19855","_to":"27014"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"39996","_from":"19855","_to":"27012"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"27718","_from":"19855","_to":"19859"} +{"$label":"ACTS_IN","name":"Hundemann","type":"Role","_key":"27715","_from":"19862","_to":"19859"} +{"$label":"ACTS_IN","name":"Dr. Tod\/Frau Neumann","type":"Role","_key":"27714","_from":"19861","_to":"19859"} +{"$label":"DIRECTED","_key":"27710","_from":"19860","_to":"19859"} +{"$label":"ACTS_IN","name":"Marie Kremer","type":"Role","_key":"68466","_from":"19861","_to":"41999"} +{"$label":"ACTS_IN","name":"Rita Vogt","type":"Role","_key":"63693","_from":"19861","_to":"39833"} +{"$label":"ACTS_IN","name":"Vater Wilhelm","type":"Role","_key":"27724","_from":"19867","_to":"19863"} +{"$label":"ACTS_IN","name":"Julian Wilhelm","type":"Role","_key":"27722","_from":"19866","_to":"19863"} +{"$label":"ACTS_IN","name":"Anno Wilhelm","type":"Role","_key":"27721","_from":"19865","_to":"19863"} +{"$label":"DIRECTED","_key":"27720","_from":"19864","_to":"19863"} +{"$label":"DIRECTED","_key":"63112","_from":"19864","_to":"39591"} +{"$label":"DIRECTED","_key":"31458","_from":"19864","_to":"21972"} +{"$label":"ACTS_IN","name":"Torge","type":"Role","_key":"88195","_from":"19865","_to":"52329"} +{"$label":"ACTS_IN","name":"Pit Winter","type":"Role","_key":"71766","_from":"19865","_to":"43439"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"40003","_from":"19865","_to":"27014"} +{"$label":"ACTS_IN","name":"Fabian Reiter","type":"Role","_key":"50872","_from":"19866","_to":"33205"} +{"$label":"ACTS_IN","name":"Fred Schmidt","type":"Role","_key":"43290","_from":"19866","_to":"28910"} +{"$label":"ACTS_IN","name":"Karsten Meyer","type":"Role","_key":"31171","_from":"19866","_to":"21794"} +{"$label":"ACTS_IN","name":"Horst Seelig","type":"Role","_key":"71882","_from":"19867","_to":"43491"} +{"$label":"ACTS_IN","name":"Dr. Salamander","type":"Role","_key":"46752","_from":"19867","_to":"30844"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"27737","_from":"19879","_to":"19868"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"27736","_from":"19878","_to":"19868"} +{"$label":"ACTS_IN","name":"Pietro","type":"Role","_key":"27735","_from":"19877","_to":"19868"} +{"$label":"ACTS_IN","name":"Bimbo","type":"Role","_key":"27734","_from":"19876","_to":"19868"} +{"$label":"ACTS_IN","name":"Santini's Father","type":"Role","_key":"27733","_from":"19875","_to":"19868"} +{"$label":"ACTS_IN","name":"Giuliana's Father","type":"Role","_key":"27732","_from":"19874","_to":"19868"} +{"$label":"ACTS_IN","name":"Pappalardo","type":"Role","_key":"27731","_from":"19873","_to":"19868"} +{"$label":"ACTS_IN","name":"Carla Santini","type":"Role","_key":"27730","_from":"19872","_to":"19868"} +{"$label":"ACTS_IN","name":"Santini","type":"Role","_key":"27729","_from":"19871","_to":"19868"} +{"$label":"DIRECTED","_key":"27726","_from":"19870","_to":"19868"} +{"$label":"DIRECTED","_key":"27725","_from":"19869","_to":"19868"} +{"$label":"DIRECTED","_key":"28601","_from":"19869","_to":"20444"} +{"$label":"ACTS_IN","name":"Steve McGowan","type":"Role","_key":"48282","_from":"19871","_to":"31709"} +{"$label":"ACTS_IN","name":"David Robinson","type":"Role","_key":"44336","_from":"19871","_to":"29543"} +{"$label":"ACTS_IN","name":"L'Agente di Polizia","type":"Role","_key":"36172","_from":"19874","_to":"24537"} +{"$label":"ACTS_IN","name":"General Maxwell","type":"Role","_key":"53399","_from":"19875","_to":"34505"} +{"$label":"ACTS_IN","name":"Raffaele Ferri","type":"Role","_key":"28622","_from":"19875","_to":"20452"} +{"$label":"ACTS_IN","name":"Tommy Dukes","type":"Role","_key":"27745","_from":"19885","_to":"19880"} +{"$label":"ACTS_IN","name":"Constance Vater","type":"Role","_key":"27744","_from":"19884","_to":"19880"} +{"$label":"ACTS_IN","name":"Hilda","type":"Role","_key":"27743","_from":"19883","_to":"19880"} +{"$label":"ACTS_IN","name":"Parkin","type":"Role","_key":"27740","_from":"19882","_to":"19880"} +{"$label":"DIRECTED","_key":"27738","_from":"19881","_to":"19880"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"88117","_from":"19884","_to":"52295"} +{"$label":"ACTS_IN","name":"Trucker Gary","type":"Role","_key":"27762","_from":"19898","_to":"19886"} +{"$label":"ACTS_IN","name":"Trucker Ray","type":"Role","_key":"27761","_from":"19897","_to":"19886"} +{"$label":"ACTS_IN","name":"Trucker Mark","type":"Role","_key":"27760","_from":"19896","_to":"19886"} +{"$label":"ACTS_IN","name":"Trucker Ron","type":"Role","_key":"27759","_from":"19895","_to":"19886"} +{"$label":"ACTS_IN","name":"Sheriff Arnie","type":"Role","_key":"27758","_from":"19894","_to":"19886"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"27757","_from":"19893","_to":"19886"} +{"$label":"ACTS_IN","name":"M\u00fcnchgstettner","type":"Role","_key":"27756","_from":"19892","_to":"19886"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"27755","_from":"19891","_to":"19886"} +{"$label":"ACTS_IN","name":"Cahuenga","type":"Role","_key":"27754","_from":"19890","_to":"19886"} +{"$label":"ACTS_IN","name":"Salomo","type":"Role","_key":"27753","_from":"19889","_to":"19886"} +{"$label":"ACTS_IN","name":"Phyllis","type":"Role","_key":"27752","_from":"19888","_to":"19886"} +{"$label":"DIRECTED","_key":"27747","_from":"19887","_to":"19886"} +{"$label":"ACTS_IN","name":"Ebony","type":"Role","_key":"121309","_from":"19888","_to":"71273"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45310","_from":"19892","_to":"30050"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39646","_from":"19892","_to":"26794"} +{"$label":"ACTS_IN","name":"Dean Wagner","type":"Role","_key":"27770","_from":"19907","_to":"19899"} +{"$label":"ACTS_IN","name":"Jocelyn Speer","type":"Role","_key":"27769","_from":"19906","_to":"19899"} +{"$label":"ACTS_IN","name":"Dr. Martin Speer","type":"Role","_key":"27768","_from":"19905","_to":"19899"} +{"$label":"ACTS_IN","name":"Lorelei","type":"Role","_key":"27767","_from":"19904","_to":"19899"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"27766","_from":"19903","_to":"19899"} +{"$label":"ACTS_IN","name":"Kyle Berman","type":"Role","_key":"27765","_from":"19902","_to":"19899"} +{"$label":"ACTS_IN","name":"Kari Berman","type":"Role","_key":"27764","_from":"19901","_to":"19899"} +{"$label":"DIRECTED","_key":"27763","_from":"19900","_to":"19899"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"27801","_from":"19929","_to":"19908"} +{"$label":"ACTS_IN","name":"Goldworth","type":"Role","_key":"27799","_from":"19928","_to":"19908"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"27798","_from":"19927","_to":"19908"} +{"$label":"ACTS_IN","name":"Flinker Hirsch","type":"Role","_key":"27797","_from":"19926","_to":"19908"} +{"$label":"ACTS_IN","name":"Kr\u00e4he","type":"Role","_key":"27796","_from":"19925","_to":"19908"} +{"$label":"ACTS_IN","name":"Blauhaars Mutter","type":"Role","_key":"27795","_from":"19924","_to":"19908"} +{"$label":"ACTS_IN","name":"Tasunka-witko","type":"Role","_key":"27794","_from":"19923","_to":"19908"} +{"$label":"ACTS_IN","name":"Bill Meyers","type":"Role","_key":"27792","_from":"19922","_to":"19908"} +{"$label":"ACTS_IN","name":"Sergeant McDryden","type":"Role","_key":"27791","_from":"19921","_to":"19908"} +{"$label":"ACTS_IN","name":"Springendes Wasser","type":"Role","_key":"27790","_from":"19920","_to":"19908"} +{"$label":"ACTS_IN","name":"Listiger Fuchs","type":"Role","_key":"27789","_from":"19919","_to":"19908"} +{"$label":"ACTS_IN","name":"Grauer B\u00e4r","type":"Role","_key":"27788","_from":"19918","_to":"19908"} +{"$label":"ACTS_IN","name":"Luchsauge","type":"Role","_key":"27787","_from":"19917","_to":"19908"} +{"$label":"ACTS_IN","name":"Capt. Ronald","type":"Role","_key":"27786","_from":"19916","_to":"19908"} +{"$label":"ACTS_IN","name":"Chat","type":"Role","_key":"27785","_from":"19915","_to":"19908"} +{"$label":"ACTS_IN","name":"Emmerson","type":"Role","_key":"27784","_from":"19914","_to":"19908"} +{"$label":"ACTS_IN","name":"Bad Face","type":"Role","_key":"27783","_from":"19913","_to":"19908"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"27780","_from":"19912","_to":"19908"} +{"$label":"ACTS_IN","name":"Blauhaar","type":"Role","_key":"27778","_from":"19911","_to":"19908"} +{"$label":"ACTS_IN","name":"Catherine Emmerson","type":"Role","_key":"27775","_from":"19910","_to":"19908"} +{"$label":"DIRECTED","_key":"27772","_from":"19909","_to":"19908"} +{"$label":"DIRECTED","_key":"92500","_from":"19909","_to":"54601"} +{"$label":"ACTS_IN","name":"Kama","type":"Role","_key":"35600","_from":"19910","_to":"24192"} +{"$label":"ACTS_IN","name":"Catherine Emmerson","type":"Role","_key":"35577","_from":"19910","_to":"24182"} +{"$label":"ACTS_IN","name":"Golewiczowa","type":"Role","_key":"27813","_from":"19910","_to":"19930"} +{"$label":"ACTS_IN","name":"Spie\u00dfgeselle","type":"Role","_key":"33185","_from":"19912","_to":"22980"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"35582","_from":"19913","_to":"24182"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"37965","_from":"19915","_to":"25705"} +{"$label":"ACTS_IN","name":"2. Edelmann","type":"Role","_key":"92548","_from":"19927","_to":"54617"} +{"$label":"ACTS_IN","name":"Matka Krawczyka","type":"Role","_key":"27812","_from":"19940","_to":"19930"} +{"$label":"ACTS_IN","name":"atka Piotrowskiego","type":"Role","_key":"27811","_from":"19939","_to":"19930"} +{"$label":"ACTS_IN","name":"Dziewczyna Ajewskiego, toru\u0144skiej ofiary \"W\u015bciek\u0142ego\"","type":"Role","_key":"27810","_from":"19938","_to":"19930"} +{"$label":"ACTS_IN","name":"Jan Golewicz, dyrektor instytutu we Wroc\u0142awiu","type":"Role","_key":"27808","_from":"19937","_to":"19930"} +{"$label":"ACTS_IN","name":"Piotrowski","type":"Role","_key":"27807","_from":"19936","_to":"19930"} +{"$label":"ACTS_IN","name":"In\u017cynier Rudnik","type":"Role","_key":"27806","_from":"19935","_to":"19930"} +{"$label":"ACTS_IN","name":"Zawadas Freund","type":"Role","_key":"27805","_from":"19934","_to":"19930"} +{"$label":"ACTS_IN","name":"Hanna Piotrowska","type":"Role","_key":"27804","_from":"19933","_to":"19930"} +{"$label":"ACTS_IN","name":"Bogdan Zawada","type":"Role","_key":"27803","_from":"19932","_to":"19930"} +{"$label":"DIRECTED","_key":"27802","_from":"19931","_to":"19930"} +{"$label":"ACTS_IN","name":"Pissedoux","type":"Role","_key":"116703","_from":"19934","_to":"68697"} +{"$label":"ACTS_IN","name":"Mania Pawlak","type":"Role","_key":"48444","_from":"19940","_to":"31792"} +{"$label":"ACTS_IN","name":"Anacleto","type":"Role","_key":"27819","_from":"19943","_to":"19941"} +{"$label":"ACTS_IN","name":"Morris Langdon","type":"Role","_key":"27817","_from":"19942","_to":"19941"} +{"$label":"ACTS_IN","name":"Mitch Evers","type":"Role","_key":"119142","_from":"19942","_to":"70021"} +{"$label":"ACTS_IN","name":"Yellowleg","type":"Role","_key":"116248","_from":"19942","_to":"68441"} +{"$label":"ACTS_IN","name":"Theodore Roosevelt","type":"Role","_key":"101876","_from":"19942","_to":"59964"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"101358","_from":"19942","_to":"59665"} +{"$label":"ACTS_IN","name":"Jonas Cord","type":"Role","_key":"40444","_from":"19942","_to":"27258"} +{"$label":"ACTS_IN","name":"Ice","type":"Role","_key":"27830","_from":"19950","_to":"19944"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"27829","_from":"19949","_to":"19944"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"27828","_from":"19948","_to":"19944"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"27827","_from":"19947","_to":"19944"} +{"$label":"ACTS_IN","name":"Zack Mallette","type":"Role","_key":"27826","_from":"19946","_to":"19944"} +{"$label":"DIRECTED","_key":"27821","_from":"19945","_to":"19944"} +{"$label":"ACTS_IN","name":"Detective Foster","type":"Role","_key":"60806","_from":"19946","_to":"38408"} +{"$label":"ACTS_IN","name":"John Hargenson","type":"Role","_key":"46537","_from":"19946","_to":"30733"} +{"$label":"ACTS_IN","name":"Gaunt Man","type":"Role","_key":"50954","_from":"19947","_to":"33249"} +{"$label":"ACTS_IN","name":"Sabretooth","type":"Role","_key":"103721","_from":"19949","_to":"61003"} +{"$label":"ACTS_IN","name":"Captain Chernick (as Mark Atcheson)","type":"Role","_key":"88267","_from":"19949","_to":"52358"} +{"$label":"ACTS_IN","name":"Gebbeth","type":"Role","_key":"56904","_from":"19949","_to":"36116"} +{"$label":"ACTS_IN","name":"Famor","type":"Role","_key":"27839","_from":"19959","_to":"19951"} +{"$label":"ACTS_IN","name":"Annette","type":"Role","_key":"27838","_from":"19958","_to":"19951"} +{"$label":"ACTS_IN","name":"Morten","type":"Role","_key":"27837","_from":"19957","_to":"19951"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"27836","_from":"19956","_to":"19951"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"27835","_from":"19955","_to":"19951"} +{"$label":"ACTS_IN","name":"J\u00f8rgen","type":"Role","_key":"27834","_from":"19954","_to":"19951"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"27833","_from":"19953","_to":"19951"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"27832","_from":"19952","_to":"19951"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"106092","_from":"19952","_to":"62474"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"98918","_from":"19952","_to":"58282"} +{"$label":"ACTS_IN","name":"Sus","type":"Role","_key":"118060","_from":"19953","_to":"69393"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"106479","_from":"19953","_to":"62730"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"103370","_from":"19953","_to":"60810"} +{"$label":"ACTS_IN","name":"Kurt Wallander","type":"Role","_key":"41165","_from":"19954","_to":"27703"} +{"$label":"DIRECTED","_key":"27850","_from":"19965","_to":"19960"} +{"$label":"DIRECTED","_key":"27849","_from":"19964","_to":"19960"} +{"$label":"ACTS_IN","name":"Wil","type":"Role","_key":"27848","_from":"19963","_to":"19960"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"27847","_from":"19962","_to":"19960"} +{"$label":"ACTS_IN","name":"Mahogany","type":"Role","_key":"27841","_from":"19961","_to":"19960"} +{"$label":"DIRECTED","_key":"118175","_from":"19965","_to":"69451"} +{"$label":"DIRECTED","_key":"108577","_from":"19965","_to":"64161"} +{"$label":"DIRECTED","_key":"107101","_from":"19965","_to":"63151"} +{"$label":"DIRECTED","_key":"69057","_from":"19965","_to":"42266"} +{"$label":"DIRECTED","_key":"39402","_from":"19965","_to":"26641"} +{"$label":"ACTS_IN","name":"2. Kidnapper","type":"Role","_key":"27855","_from":"19971","_to":"19966"} +{"$label":"ACTS_IN","name":"1. Kidnapper","type":"Role","_key":"27854","_from":"19970","_to":"19966"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"27853","_from":"19969","_to":"19966"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"27852","_from":"19968","_to":"19966"} +{"$label":"DIRECTED","_key":"27851","_from":"19967","_to":"19966"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"27860","_from":"19977","_to":"19972"} +{"$label":"ACTS_IN","name":"Vincent \" Mag Doll \" Coll","type":"Role","_key":"27859","_from":"19976","_to":"19972"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"27858","_from":"19975","_to":"19972"} +{"$label":"ACTS_IN","name":"Clio","type":"Role","_key":"27857","_from":"19974","_to":"19972"} +{"$label":"DIRECTED","_key":"27856","_from":"19973","_to":"19972"} +{"$label":"DIRECTED","_key":"104182","_from":"19973","_to":"61284"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"107431","_from":"19976","_to":"63374"} +{"$label":"ACTS_IN","name":"K\u00fcnstlerin","type":"Role","_key":"27873","_from":"19988","_to":"19978"} +{"$label":"ACTS_IN","name":"Leroys Vater","type":"Role","_key":"27872","_from":"19987","_to":"19978"} +{"$label":"ACTS_IN","name":"Leroys Mutter","type":"Role","_key":"27871","_from":"19986","_to":"19978"} +{"$label":"ACTS_IN","name":"Hanno","type":"Role","_key":"27870","_from":"19985","_to":"19978"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"27869","_from":"19984","_to":"19978"} +{"$label":"ACTS_IN","name":"Oberskinhead","type":"Role","_key":"27868","_from":"19983","_to":"19978"} +{"$label":"ACTS_IN","name":"Dimitrios","type":"Role","_key":"27867","_from":"19982","_to":"19978"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"27866","_from":"19981","_to":"19978"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"27865","_from":"19980","_to":"19978"} +{"$label":"DIRECTED","_key":"27864","_from":"19979","_to":"19978"} +{"$label":"DIRECTED","_key":"27929","_from":"19979","_to":"20024"} +{"$label":"ACTS_IN","name":"Leroy","type":"Role","_key":"27938","_from":"19980","_to":"20024"} +{"$label":"ACTS_IN","name":"Hanno","type":"Role","_key":"27936","_from":"19985","_to":"20024"} +{"$label":"ACTS_IN","name":"Randy Preshaw","type":"Role","_key":"43306","_from":"19987","_to":"28917"} +{"$label":"ACTS_IN","name":"Nurse John","type":"Role","_key":"27888","_from":"19994","_to":"19989"} +{"$label":"ACTS_IN","name":"Nurse Margie","type":"Role","_key":"27887","_from":"19993","_to":"19989"} +{"$label":"ACTS_IN","name":"M.G.","type":"Role","_key":"27886","_from":"19992","_to":"19989"} +{"$label":"ACTS_IN","name":"Janet Webber","type":"Role","_key":"27884","_from":"19991","_to":"19989"} +{"$label":"ACTS_IN","name":"Polly Clark","type":"Role","_key":"27882","_from":"19990","_to":"19989"} +{"$label":"ACTS_IN","name":"Nell Barrows","type":"Role","_key":"109987","_from":"19991","_to":"64987"} +{"$label":"ACTS_IN","name":"May Dove Canady","type":"Role","_key":"66501","_from":"19991","_to":"41119"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"62962","_from":"19991","_to":"39537"} +{"$label":"ACTS_IN","name":"Carrie White","type":"Role","_key":"46524","_from":"19991","_to":"30733"} +{"$label":"ACTS_IN","name":"Cadet Lt. Col. Brett C. Shelton","type":"Role","_key":"68413","_from":"19994","_to":"41968"} +{"$label":"ACTS_IN","name":"Pvt. Weld","type":"Role","_key":"50647","_from":"19994","_to":"33066"} +{"$label":"ACTS_IN","name":"Paolo Scardi, Bruder","type":"Role","_key":"27899","_from":"20002","_to":"19995"} +{"$label":"ACTS_IN","name":"Andrea Sala, Motorradfahrer","type":"Role","_key":"27896","_from":"20001","_to":"19995"} +{"$label":"ACTS_IN","name":"Rimon Roth, Einsatzleiter","type":"Role","_key":"27895","_from":"20000","_to":"19995"} +{"$label":"ACTS_IN","name":"Anwalt Emil Brunner, Anwalt","type":"Role","_key":"27894","_from":"19999","_to":"19995"} +{"$label":"ACTS_IN","name":"Martin Lehmann, Finks Kollege","type":"Role","_key":"27893","_from":"19998","_to":"19995"} +{"$label":"ACTS_IN","name":"Sabine Fink, Staatsanw\u00e4ltin","type":"Role","_key":"27891","_from":"19997","_to":"19995"} +{"$label":"DIRECTED","_key":"27890","_from":"19996","_to":"19995"} +{"$label":"DIRECTED","_key":"69404","_from":"19996","_to":"42424"} +{"$label":"DIRECTED","_key":"36791","_from":"19996","_to":"24953"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"91030","_from":"19997","_to":"53710"} +{"$label":"ACTS_IN","name":"Frau M\u00e4rz","type":"Role","_key":"64807","_from":"19997","_to":"40322"} +{"$label":"ACTS_IN","name":"Sina","type":"Role","_key":"39635","_from":"19997","_to":"26786"} +{"$label":"ACTS_IN","name":"Corporal Wilhelm Wicki","type":"Role","_key":"110271","_from":"20001","_to":"65170"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"63177","_from":"20001","_to":"39627"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"55077","_from":"20001","_to":"35179"} +{"$label":"ACTS_IN","name":"Florian","type":"Role","_key":"40671","_from":"20001","_to":"27376"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"27919","_from":"20016","_to":"20003"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"27918","_from":"20015","_to":"20003"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"27917","_from":"20014","_to":"20003"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"27916","_from":"20013","_to":"20003"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"27915","_from":"20012","_to":"20003"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"27914","_from":"20011","_to":"20003"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"27913","_from":"20010","_to":"20003"} +{"$label":"ACTS_IN","name":"Peter Rhodes","type":"Role","_key":"27912","_from":"20009","_to":"20003"} +{"$label":"ACTS_IN","name":"Lucifer","type":"Role","_key":"27911","_from":"20008","_to":"20003"} +{"$label":"ACTS_IN","name":"Daria Rhodes","type":"Role","_key":"27909","_from":"20007","_to":"20003"} +{"$label":"ACTS_IN","name":"Anna Merrill","type":"Role","_key":"27908","_from":"20006","_to":"20003"} +{"$label":"ACTS_IN","name":"Carlotta Rhodes","type":"Role","_key":"27902","_from":"20005","_to":"20003"} +{"$label":"DIRECTED","_key":"27901","_from":"20004","_to":"20003"} +{"$label":"ACTS_IN","name":"Model","type":"Role","_key":"35930","_from":"20011","_to":"24396"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"33233","_from":"20014","_to":"23015"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"37206","_from":"20015","_to":"25202"} +{"$label":"DIRECTED","_key":"27928","_from":"20023","_to":"20017"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"27926","_from":"20022","_to":"20017"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"27925","_from":"20021","_to":"20017"} +{"$label":"ACTS_IN","name":"Fabio","type":"Role","_key":"27924","_from":"20020","_to":"20017"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"27923","_from":"20019","_to":"20017"} +{"$label":"ACTS_IN","name":"Father Clark","type":"Role","_key":"27922","_from":"20018","_to":"20017"} +{"$label":"ACTS_IN","name":"D'Arey","type":"Role","_key":"34023","_from":"20018","_to":"23403"} +{"$label":"ACTS_IN","name":"Giud\u00e0","type":"Role","_key":"71053","_from":"20021","_to":"43146"} +{"$label":"DIRECTED","_key":"117338","_from":"20023","_to":"69009"} +{"$label":"ACTS_IN","name":"Wotan","type":"Role","_key":"27942","_from":"20033","_to":"20024"} +{"$label":"ACTS_IN","name":"Dimitrios","type":"Role","_key":"27941","_from":"20032","_to":"20024"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"27939","_from":"20031","_to":"20024"} +{"$label":"ACTS_IN","name":"Leroys Mutter","type":"Role","_key":"27937","_from":"20030","_to":"20024"} +{"$label":"ACTS_IN","name":"Leroys Vater","type":"Role","_key":"27935","_from":"20029","_to":"20024"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"27934","_from":"20028","_to":"20024"} +{"$label":"ACTS_IN","name":"Evas Mutter","type":"Role","_key":"27932","_from":"20027","_to":"20024"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"27931","_from":"20026","_to":"20024"} +{"$label":"ACTS_IN","name":"Evas Vater","type":"Role","_key":"27930","_from":"20025","_to":"20024"} +{"$label":"ACTS_IN","name":"Lara von Knesewitz","type":"Role","_key":"44103","_from":"20026","_to":"29405"} +{"$label":"ACTS_IN","name":"Salvatore Marino","type":"Role","_key":"105270","_from":"20029","_to":"61947"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"90571","_from":"20029","_to":"53494"} +{"$label":"ACTS_IN","name":"G\u00fcnter","type":"Role","_key":"61913","_from":"20029","_to":"38955"} +{"$label":"ACTS_IN","name":"Frau Hufschmidt","type":"Role","_key":"49219","_from":"20030","_to":"32242"} +{"$label":"ACTS_IN","name":"Mutter Jan","type":"Role","_key":"48374","_from":"20030","_to":"31748"} +{"$label":"ACTS_IN","name":"Tobi G\u00fctzkow","type":"Role","_key":"52853","_from":"20032","_to":"34257"} +{"$label":"ACTS_IN","name":"Frank Wappler","type":"Role","_key":"44823","_from":"20032","_to":"29813"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"34649","_from":"20032","_to":"23709"} +{"$label":"ACTS_IN","name":"Kevin McDonough","type":"Role","_key":"27952","_from":"20038","_to":"20034"} +{"$label":"ACTS_IN","name":"Benefits Supervisor","type":"Role","_key":"27951","_from":"20037","_to":"20034"} +{"$label":"ACTS_IN","name":"Renaldo Pinera","type":"Role","_key":"27949","_from":"20036","_to":"20034"} +{"$label":"ACTS_IN","name":"Lawrence \"Larry\" Valentine","type":"Role","_key":"27945","_from":"20035","_to":"20034"} +{"$label":"ACTS_IN","name":"Paul Blart","type":"Role","_key":"100816","_from":"20035","_to":"59439"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"71649","_from":"20035","_to":"43385"} +{"$label":"ACTS_IN","name":"Otis the Cow","type":"Role","_key":"57854","_from":"20035","_to":"36614"} +{"$label":"ACTS_IN","name":"Albert Brennaman","type":"Role","_key":"50051","_from":"20035","_to":"32755"} +{"$label":"ACTS_IN","name":"Officer D'Agostino","type":"Role","_key":"100190","_from":"20036","_to":"59094"} +{"$label":"ACTS_IN","name":"Det. Tony Nenonen","type":"Role","_key":"90524","_from":"20036","_to":"53475"} +{"$label":"ACTS_IN","name":"Brucie","type":"Role","_key":"52917","_from":"20036","_to":"34291"} +{"$label":"ACTS_IN","name":"Judi Joskow","type":"Role","_key":"117660","_from":"20037","_to":"69161"} +{"$label":"ACTS_IN","name":"Reiner's Secretary","type":"Role","_key":"96484","_from":"20037","_to":"56725"} +{"$label":"ACTS_IN","name":"Gladys","type":"Role","_key":"65246","_from":"20037","_to":"40504"} +{"$label":"ACTS_IN","name":"Mocha","type":"Role","_key":"94373","_from":"20038","_to":"55568"} +{"$label":"ACTS_IN","name":"Blake (voice)","type":"Role","_key":"92199","_from":"20038","_to":"54410"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"64895","_from":"20038","_to":"40353"} +{"$label":"ACTS_IN","name":"Howie","type":"Role","_key":"58544","_from":"20038","_to":"36989"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"58504","_from":"20038","_to":"36974"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"57753","_from":"20038","_to":"36554"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"56776","_from":"20038","_to":"36060"} +{"$label":"ACTS_IN","name":"Sgt. Letourneau","type":"Role","_key":"27964","_from":"20048","_to":"20039"} +{"$label":"ACTS_IN","name":"Isabelle Parenteau","type":"Role","_key":"27963","_from":"20047","_to":"20039"} +{"$label":"ACTS_IN","name":"Annie Beaudoin","type":"Role","_key":"27962","_from":"20046","_to":"20039"} +{"$label":"ACTS_IN","name":"Regis Turcotte","type":"Role","_key":"27961","_from":"20045","_to":"20039"} +{"$label":"ACTS_IN","name":"Magdeleine \" Maggy \" Fortin","type":"Role","_key":"27960","_from":"20044","_to":"20039"} +{"$label":"ACTS_IN","name":"Vincent Savard","type":"Role","_key":"27959","_from":"20043","_to":"20039"} +{"$label":"ACTS_IN","name":"Fred Giguere","type":"Role","_key":"27957","_from":"20042","_to":"20039"} +{"$label":"ACTS_IN","name":"Marcel Talon","type":"Role","_key":"27956","_from":"20041","_to":"20039"} +{"$label":"DIRECTED","_key":"27955","_from":"20040","_to":"20039"} +{"$label":"DIRECTED","_key":"102941","_from":"20040","_to":"60556"} +{"$label":"ACTS_IN","name":"Germain Dagenais","type":"Role","_key":"111476","_from":"20041","_to":"65820"} +{"$label":"ACTS_IN","name":"Gervais Beaulieu","type":"Role","_key":"69758","_from":"20041","_to":"42579"} +{"$label":"ACTS_IN","name":"Animateur radio de Montr\u00e9al","type":"Role","_key":"102944","_from":"20043","_to":"60556"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"27969","_from":"20054","_to":"20049"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"27968","_from":"20053","_to":"20049"} +{"$label":"ACTS_IN","name":"Nell","type":"Role","_key":"27967","_from":"20052","_to":"20049"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"27966","_from":"20051","_to":"20049"} +{"$label":"DIRECTED","_key":"27965","_from":"20050","_to":"20049"} +{"$label":"DIRECTED","_key":"28098","_from":"20050","_to":"20145"} +{"$label":"ACTS_IN","name":"Capt. Edward John Smith","type":"Role","_key":"109414","_from":"20051","_to":"64642"} +{"$label":"ACTS_IN","name":"King Arthur","type":"Role","_key":"42744","_from":"20051","_to":"28608"} +{"$label":"ACTS_IN","name":"Selma Landis","type":"Role","_key":"100947","_from":"20052","_to":"59500"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27987","_from":"20073","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27986","_from":"20072","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27985","_from":"20071","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27984","_from":"20070","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27983","_from":"20069","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27982","_from":"20068","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27981","_from":"20067","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27980","_from":"20066","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27979","_from":"20065","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27978","_from":"20064","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27977","_from":"20063","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27976","_from":"20062","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27975","_from":"20061","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27974","_from":"20060","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27973","_from":"20059","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27972","_from":"20058","_to":"20055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"27971","_from":"20057","_to":"20055"} +{"$label":"DIRECTED","_key":"27970","_from":"20056","_to":"20055"} +{"$label":"ACTS_IN","name":"Miss Bates","type":"Role","_key":"27996","_from":"20077","_to":"20074"} +{"$label":"ACTS_IN","name":"Mr. Woodhouse","type":"Role","_key":"27992","_from":"20076","_to":"20074"} +{"$label":"DIRECTED","_key":"27988","_from":"20075","_to":"20074"} +{"$label":"ACTS_IN","name":"Barbeque Guest","type":"Role","_key":"55667","_from":"20075","_to":"35434"} +{"$label":"DIRECTED","_key":"55436","_from":"20075","_to":"35334"} +{"$label":"ACTS_IN","name":"Mary Musgrave","type":"Role","_key":"110899","_from":"20077","_to":"65506"} +{"$label":"ACTS_IN","name":"Mafalda Hopkirk","type":"Role","_key":"89536","_from":"20077","_to":"52992"} +{"$label":"ACTS_IN","name":"Rose 'Rosie' Mundy","type":"Role","_key":"37040","_from":"20077","_to":"25107"} +{"$label":"ACTS_IN","name":"Buttler","type":"Role","_key":"28009","_from":"20084","_to":"20078"} +{"$label":"ACTS_IN","name":"Commis. Stevens","type":"Role","_key":"28008","_from":"20083","_to":"20078"} +{"$label":"ACTS_IN","name":"Mamie","type":"Role","_key":"28007","_from":"20082","_to":"20078"} +{"$label":"ACTS_IN","name":"Dr. Duke","type":"Role","_key":"28005","_from":"20081","_to":"20078"} +{"$label":"ACTS_IN","name":"Dr. Wells","type":"Role","_key":"28003","_from":"20080","_to":"20078"} +{"$label":"ACTS_IN","name":"Lee Taylor","type":"Role","_key":"28002","_from":"20079","_to":"20078"} +{"$label":"ACTS_IN","name":"Rob McLaughlin","type":"Role","_key":"118392","_from":"20080","_to":"69599"} +{"$label":"ACTS_IN","name":"Charlie Waterman","type":"Role","_key":"110993","_from":"20083","_to":"65556"} +{"$label":"ACTS_IN","name":"Mr. LeBrand","type":"Role","_key":"108580","_from":"20083","_to":"64167"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"28020","_from":"20090","_to":"20085"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"28017","_from":"20089","_to":"20085"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"28016","_from":"20088","_to":"20085"} +{"$label":"ACTS_IN","name":"Dr. Rhodes","type":"Role","_key":"28014","_from":"20087","_to":"20085"} +{"$label":"ACTS_IN","name":"Joan Vance","type":"Role","_key":"28013","_from":"20086","_to":"20085"} +{"$label":"ACTS_IN","name":"Jefferson Jones","type":"Role","_key":"95789","_from":"20087","_to":"56341"} +{"$label":"ACTS_IN","name":"die junge Frau","type":"Role","_key":"39032","_from":"20088","_to":"26382"} +{"$label":"ACTS_IN","name":"Warren Hamilton","type":"Role","_key":"28871","_from":"20090","_to":"20624"} +{"$label":"ACTS_IN","name":"Schulkind","type":"Role","_key":"28031","_from":"20096","_to":"20091"} +{"$label":"ACTS_IN","name":"Nosey Parker","type":"Role","_key":"28030","_from":"20095","_to":"20091"} +{"$label":"ACTS_IN","name":"Dr. Carew","type":"Role","_key":"28029","_from":"20094","_to":"20091"} +{"$label":"ACTS_IN","name":"Dr. John Hunter Gerniede","type":"Role","_key":"28023","_from":"20093","_to":"20091"} +{"$label":"DIRECTED","_key":"28021","_from":"20092","_to":"20091"} +{"$label":"ACTS_IN","name":"Renault","type":"Role","_key":"115433","_from":"20093","_to":"67969"} +{"$label":"ACTS_IN","name":"Col. Georges Geraud","type":"Role","_key":"103791","_from":"20093","_to":"61050"} +{"$label":"ACTS_IN","name":"Oberst Kr\u00fcger","type":"Role","_key":"28043","_from":"20103","_to":"20097"} +{"$label":"ACTS_IN","name":"Theo Lohmann","type":"Role","_key":"28041","_from":"20102","_to":"20097"} +{"$label":"ACTS_IN","name":"Fred von Klausnitz","type":"Role","_key":"28039","_from":"20101","_to":"20097"} +{"$label":"ACTS_IN","name":"Carola Hiller","type":"Role","_key":"28038","_from":"20100","_to":"20097"} +{"$label":"ACTS_IN","name":"Friederike \" Fritzi \" Scholz","type":"Role","_key":"28035","_from":"20099","_to":"20097"} +{"$label":"DIRECTED","_key":"28033","_from":"20098","_to":"20097"} +{"$label":"DIRECTED","_key":"70898","_from":"20098","_to":"43076"} +{"$label":"DIRECTED","_key":"68528","_from":"20098","_to":"42024"} +{"$label":"DIRECTED","_key":"62848","_from":"20098","_to":"39489"} +{"$label":"DIRECTED","_key":"33278","_from":"20098","_to":"23060"} +{"$label":"DIRECTED","_key":"31932","_from":"20098","_to":"22274"} +{"$label":"ACTS_IN","name":"Melody","type":"Role","_key":"90379","_from":"20099","_to":"53408"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"70421","_from":"20099","_to":"42879"} +{"$label":"DIRECTED","_key":"30392","_from":"20099","_to":"21376"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"88059","_from":"20100","_to":"52271"} +{"$label":"ACTS_IN","name":"Fritz Steiff","type":"Role","_key":"54046","_from":"20101","_to":"34764"} +{"$label":"ACTS_IN","name":"Frosch","type":"Role","_key":"52422","_from":"20101","_to":"34106"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"43459","_from":"20101","_to":"29031"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"39687","_from":"20101","_to":"26819"} +{"$label":"ACTS_IN","name":"Ulli Heidorn","type":"Role","_key":"37254","_from":"20101","_to":"25242"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"52644","_from":"20102","_to":"34194"} +{"$label":"ACTS_IN","name":"Commissario Brunetti","type":"Role","_key":"89215","_from":"20103","_to":"52828"} +{"$label":"ACTS_IN","name":"Asche","type":"Role","_key":"43448","_from":"20103","_to":"29026"} +{"$label":"ACTS_IN","name":"Wolfram Ernst","type":"Role","_key":"42497","_from":"20103","_to":"28455"} +{"$label":"ACTS_IN","name":"Worker","type":"Role","_key":"28063","_from":"20120","_to":"20104"} +{"$label":"ACTS_IN","name":"Worker","type":"Role","_key":"28062","_from":"20119","_to":"20104"} +{"$label":"ACTS_IN","name":"Worker","type":"Role","_key":"28061","_from":"20118","_to":"20104"} +{"$label":"ACTS_IN","name":"Dame","type":"Role","_key":"28060","_from":"20117","_to":"20104"} +{"$label":"ACTS_IN","name":"Worker","type":"Role","_key":"28059","_from":"20116","_to":"20104"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"28058","_from":"20115","_to":"20104"} +{"$label":"ACTS_IN","name":"Agitator","type":"Role","_key":"28057","_from":"20114","_to":"20104"} +{"$label":"ACTS_IN","name":"Brooce","type":"Role","_key":"28056","_from":"20113","_to":"20104"} +{"$label":"ACTS_IN","name":"Miss Brown","type":"Role","_key":"28055","_from":"20112","_to":"20104"} +{"$label":"ACTS_IN","name":"Vandrstyfft","type":"Role","_key":"28053","_from":"20111","_to":"20104"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"28052","_from":"20110","_to":"20104"} +{"$label":"ACTS_IN","name":"Ethel Lloyd","type":"Role","_key":"28051","_from":"20109","_to":"20104"} +{"$label":"ACTS_IN","name":"Mr. Lloyd","type":"Role","_key":"28050","_from":"20108","_to":"20104"} +{"$label":"ACTS_IN","name":"Mary Allen","type":"Role","_key":"28047","_from":"20107","_to":"20104"} +{"$label":"ACTS_IN","name":"Hobby","type":"Role","_key":"28046","_from":"20106","_to":"20104"} +{"$label":"DIRECTED","_key":"28044","_from":"20105","_to":"20104"} +{"$label":"ACTS_IN","name":"J\u00f6rg der Finkenbauer","type":"Role","_key":"44659","_from":"20106","_to":"29707"} +{"$label":"ACTS_IN","name":"Miguel Braga","type":"Role","_key":"40615","_from":"20113","_to":"27349"} +{"$label":"ACTS_IN","name":"Graf Cagliostro","type":"Role","_key":"71137","_from":"20114","_to":"43180"} +{"$label":"ACTS_IN","name":"Joseph S\u00fc\u00df Oppenheimer","type":"Role","_key":"49581","_from":"20114","_to":"32460"} +{"$label":"ACTS_IN","name":"Michl Moosrainer","type":"Role","_key":"45020","_from":"20118","_to":"29913"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"44471","_from":"20118","_to":"29626"} +{"$label":"ACTS_IN","name":"Nigl","type":"Role","_key":"43927","_from":"20118","_to":"29311"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Kunzel","type":"Role","_key":"43128","_from":"20118","_to":"28801"} +{"$label":"ACTS_IN","name":"R\u00fcbsam","type":"Role","_key":"41127","_from":"20118","_to":"27670"} +{"$label":"ACTS_IN","name":"Karl K\u00f6pfle","type":"Role","_key":"40351","_from":"20118","_to":"27219"} +{"$label":"ACTS_IN","name":"Toni Wimser","type":"Role","_key":"40275","_from":"20118","_to":"27172"} +{"$label":"ACTS_IN","name":"Seppl","type":"Role","_key":"39871","_from":"20118","_to":"26934"} +{"$label":"DIRECTED","_key":"28081","_from":"20132","_to":"20121"} +{"$label":"DIRECTED","_key":"28080","_from":"20131","_to":"20121"} +{"$label":"DIRECTED","_key":"28078","_from":"20130","_to":"20121"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"28075","_from":"20129","_to":"20121"} +{"$label":"ACTS_IN","name":"Mr. Brand","type":"Role","_key":"28071","_from":"20128","_to":"20121"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"28070","_from":"20127","_to":"20121"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"28069","_from":"20126","_to":"20121"} +{"$label":"ACTS_IN","name":"Young Martin","type":"Role","_key":"28068","_from":"20125","_to":"20121"} +{"$label":"ACTS_IN","name":"Officer Danforth","type":"Role","_key":"28067","_from":"20124","_to":"20121"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"28066","_from":"20123","_to":"20121"} +{"$label":"ACTS_IN","name":"Dr. Daniel Critchley","type":"Role","_key":"28064","_from":"20122","_to":"20121"} +{"$label":"ACTS_IN","name":"Quigley","type":"Role","_key":"97788","_from":"20122","_to":"57584"} +{"$label":"ACTS_IN","name":"Lloyd Henreid","type":"Role","_key":"94970","_from":"20122","_to":"55928"} +{"$label":"ACTS_IN","name":"Richard Dees","type":"Role","_key":"88913","_from":"20122","_to":"52671"} +{"$label":"ACTS_IN","name":"Snyder","type":"Role","_key":"71026","_from":"20122","_to":"43134"} +{"$label":"ACTS_IN","name":"Dexter Moyers","type":"Role","_key":"66980","_from":"20122","_to":"41351"} +{"$label":"ACTS_IN","name":"Kaufman","type":"Role","_key":"63690","_from":"20122","_to":"39831"} +{"$label":"ACTS_IN","name":"Commander Arvid Harbinger","type":"Role","_key":"52622","_from":"20122","_to":"34186"} +{"$label":"ACTS_IN","name":"Agent Peters","type":"Role","_key":"52409","_from":"20122","_to":"34102"} +{"$label":"ACTS_IN","name":"Bob Morton","type":"Role","_key":"37777","_from":"20122","_to":"25618"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"58664","_from":"20123","_to":"37053"} +{"$label":"ACTS_IN","name":"Morose Kid","type":"Role","_key":"93112","_from":"20126","_to":"54874"} +{"$label":"ACTS_IN","name":"Young Jonesy","type":"Role","_key":"42192","_from":"20126","_to":"28261"} +{"$label":"ACTS_IN","name":"Hahlii (voice)","type":"Role","_key":"119726","_from":"20129","_to":"70313"} +{"$label":"ACTS_IN","name":"Nori","type":"Role","_key":"93730","_from":"20129","_to":"55176"} +{"$label":"ACTS_IN","name":"Dahlia & Pixie #3","type":"Role","_key":"93718","_from":"20129","_to":"55166"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"59654","_from":"20129","_to":"37658"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"106561","_from":"20130","_to":"62788"} +{"$label":"ACTS_IN","name":"Jason Melon","type":"Role","_key":"105120","_from":"20130","_to":"61864"} +{"$label":"ACTS_IN","name":"Peter Miller","type":"Role","_key":"67456","_from":"20130","_to":"41554"} +{"$label":"ACTS_IN","name":"Arnie Cunningham","type":"Role","_key":"50771","_from":"20130","_to":"33134"} +{"$label":"ACTS_IN","name":"Denis Byrd","type":"Role","_key":"45616","_from":"20130","_to":"30198"} +{"$label":"ACTS_IN","name":"Character","type":"Role","_key":"28087","_from":"20136","_to":"20133"} +{"$label":"ACTS_IN","name":"S.S. Hahn","type":"Role","_key":"28086","_from":"20135","_to":"20133"} +{"$label":"ACTS_IN","name":"J.J. Jones","type":"Role","_key":"28084","_from":"20134","_to":"20133"} +{"$label":"ACTS_IN","name":"Clay Driscoll","type":"Role","_key":"114970","_from":"20134","_to":"67709"} +{"$label":"ACTS_IN","name":"Jeffrey \u201eJeff\u201c Patterson","type":"Role","_key":"70461","_from":"20134","_to":"42894"} +{"$label":"ACTS_IN","name":"Cal Percell","type":"Role","_key":"47134","_from":"20134","_to":"31069"} +{"$label":"ACTS_IN","name":"Secretary of Defense","type":"Role","_key":"62025","_from":"20135","_to":"39042"} +{"$label":"ACTS_IN","name":"Ms Wright","type":"Role","_key":"120436","_from":"20136","_to":"70751"} +{"$label":"ACTS_IN","name":"Lynn Bedik","type":"Role","_key":"94646","_from":"20136","_to":"55764"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"47561","_from":"20136","_to":"31338"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"45938","_from":"20136","_to":"30370"} +{"$label":"ACTS_IN","name":"Helene McCready","type":"Role","_key":"33908","_from":"20136","_to":"23352"} +{"$label":"ACTS_IN","name":"Alice Marshall","type":"Role","_key":"28097","_from":"20144","_to":"20137"} +{"$label":"ACTS_IN","name":"James Manfred","type":"Role","_key":"28096","_from":"20143","_to":"20137"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"28094","_from":"20142","_to":"20137"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"28093","_from":"20141","_to":"20137"} +{"$label":"ACTS_IN","name":"Patricia Wilson","type":"Role","_key":"28092","_from":"20140","_to":"20137"} +{"$label":"ACTS_IN","name":"Alex Campbell","type":"Role","_key":"28091","_from":"20139","_to":"20137"} +{"$label":"DIRECTED","_key":"28088","_from":"20138","_to":"20137"} +{"$label":"DIRECTED","_key":"62501","_from":"20138","_to":"39357"} +{"$label":"ACTS_IN","name":"Nick, chief engineer","type":"Role","_key":"36122","_from":"20143","_to":"24508"} +{"$label":"ACTS_IN","name":"Muriel Pilkington","type":"Role","_key":"28109","_from":"20149","_to":"20145"} +{"$label":"ACTS_IN","name":"Mrs. Willoughby","type":"Role","_key":"28108","_from":"20148","_to":"20145"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"28107","_from":"20147","_to":"20145"} +{"$label":"ACTS_IN","name":"Professor Merton","type":"Role","_key":"28106","_from":"20146","_to":"20145"} +{"$label":"ACTS_IN","name":"Pablo Murphy","type":"Role","_key":"70742","_from":"20146","_to":"43020"} +{"$label":"ACTS_IN","name":"Seaman William McCoy","type":"Role","_key":"67784","_from":"20146","_to":"41668"} +{"$label":"ACTS_IN","name":"Patrick O'Farrell","type":"Role","_key":"31803","_from":"20146","_to":"22194"} +{"$label":"ACTS_IN","name":"Oma Berges","type":"Role","_key":"28121","_from":"20160","_to":"20150"} +{"$label":"ACTS_IN","name":"D\u00fcrlinger","type":"Role","_key":"28120","_from":"20159","_to":"20150"} +{"$label":"ACTS_IN","name":"Frl. Neu","type":"Role","_key":"28118","_from":"20158","_to":"20150"} +{"$label":"ACTS_IN","name":"Bilkenbrink","type":"Role","_key":"28117","_from":"20157","_to":"20150"} +{"$label":"ACTS_IN","name":"Frau D\u00fcrlinger","type":"Role","_key":"28116","_from":"20156","_to":"20150"} +{"$label":"ACTS_IN","name":"Frau Berges","type":"Role","_key":"28115","_from":"20155","_to":"20150"} +{"$label":"ACTS_IN","name":"Annegret D\u00fcrlinger","type":"Role","_key":"28114","_from":"20154","_to":"20150"} +{"$label":"ACTS_IN","name":"Kr\u00e4mer","type":"Role","_key":"28112","_from":"20153","_to":"20150"} +{"$label":"ACTS_IN","name":"Hentschel","type":"Role","_key":"28111","_from":"20152","_to":"20150"} +{"$label":"DIRECTED","_key":"28110","_from":"20151","_to":"20150"} +{"$label":"DIRECTED","_key":"39661","_from":"20151","_to":"26806"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"93223","_from":"20156","_to":"54923"} +{"$label":"ACTS_IN","name":"Go Akutsu","type":"Role","_key":"28128","_from":"20167","_to":"20161"} +{"$label":"ACTS_IN","name":"Kayoko","type":"Role","_key":"28127","_from":"20166","_to":"20161"} +{"$label":"ACTS_IN","name":"Tae Makimura","type":"Role","_key":"28126","_from":"20165","_to":"20161"} +{"$label":"ACTS_IN","name":"Saiji Akutsu","type":"Role","_key":"28125","_from":"20164","_to":"20161"} +{"$label":"ACTS_IN","name":"Senta Naruse","type":"Role","_key":"28123","_from":"20163","_to":"20161"} +{"$label":"DIRECTED","_key":"28122","_from":"20162","_to":"20161"} +{"$label":"ACTS_IN","name":"Doctor Yamauchi","type":"Role","_key":"107303","_from":"20163","_to":"63279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103977","_from":"20163","_to":"61158"} +{"$label":"ACTS_IN","name":"Shukishi Hirayama","type":"Role","_key":"115058","_from":"20164","_to":"67755"} +{"$label":"ACTS_IN","name":"Uchiyama","type":"Role","_key":"117234","_from":"20167","_to":"68961"} +{"$label":"ACTS_IN","name":"Ushioda","type":"Role","_key":"114262","_from":"20167","_to":"67298"} +{"$label":"ACTS_IN","name":"Gou-ichi Takata","type":"Role","_key":"99158","_from":"20167","_to":"58421"} +{"$label":"ACTS_IN","name":"Masahiro","type":"Role","_key":"29606","_from":"20167","_to":"20953"} +{"$label":"ACTS_IN","name":"Bankwell","type":"Role","_key":"28136","_from":"20176","_to":"20168"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"28135","_from":"20175","_to":"20168"} +{"$label":"ACTS_IN","name":"Markham","type":"Role","_key":"28134","_from":"20174","_to":"20168"} +{"$label":"ACTS_IN","name":"Devon","type":"Role","_key":"28133","_from":"20173","_to":"20168"} +{"$label":"ACTS_IN","name":"Mary Beth","type":"Role","_key":"28132","_from":"20172","_to":"20168"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"28131","_from":"20171","_to":"20168"} +{"$label":"DIRECTED","_key":"28130","_from":"20170","_to":"20168"} +{"$label":"DIRECTED","_key":"28129","_from":"20169","_to":"20168"} +{"$label":"ACTS_IN","name":"Newton Pyles","type":"Role","_key":"112292","_from":"20170","_to":"66302"} +{"$label":"ACTS_IN","name":"Barry Cronin","type":"Role","_key":"55533","_from":"20173","_to":"35367"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"104197","_from":"20174","_to":"61299"} +{"$label":"ACTS_IN","name":"sie selbst","type":"Role","_key":"28170","_from":"20185","_to":"20177"} +{"$label":"ACTS_IN","name":"er selbst","type":"Role","_key":"28169","_from":"20184","_to":"20177"} +{"$label":"ACTS_IN","name":"sie selbst","type":"Role","_key":"28168","_from":"20183","_to":"20177"} +{"$label":"ACTS_IN","name":"er selbst","type":"Role","_key":"28167","_from":"20182","_to":"20177"} +{"$label":"ACTS_IN","name":"Nina's Assistant","type":"Role","_key":"28164","_from":"20181","_to":"20177"} +{"$label":"ACTS_IN","name":"Violetta Romney","type":"Role","_key":"28153","_from":"20180","_to":"20177"} +{"$label":"ACTS_IN","name":"Dane Simpson","type":"Role","_key":"28149","_from":"20179","_to":"20177"} +{"$label":"ACTS_IN","name":"Kiki Simpson","type":"Role","_key":"28148","_from":"20178","_to":"20177"} +{"$label":"ACTS_IN","name":"Paul Prieur","type":"Role","_key":"114468","_from":"20181","_to":"67433"} +{"$label":"ACTS_IN","name":"Francis Borler","type":"Role","_key":"101369","_from":"20181","_to":"59672"} +{"$label":"ACTS_IN","name":"Ben Castelano","type":"Role","_key":"101323","_from":"20181","_to":"59648"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"72503","_from":"20181","_to":"43740"} +{"$label":"ACTS_IN","name":"Docteur Alexandre Arnaud Beck","type":"Role","_key":"65837","_from":"20181","_to":"40747"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"50303","_from":"20181","_to":"32864"} +{"$label":"ACTS_IN","name":"Philippe Verneuil","type":"Role","_key":"48768","_from":"20181","_to":"31986"} +{"$label":"ACTS_IN","name":"Camille Desmoulins","type":"Role","_key":"30206","_from":"20181","_to":"21284"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"65366","_from":"20182","_to":"40552"} +{"$label":"ACTS_IN","name":"Ralph Burton","type":"Role","_key":"34861","_from":"20182","_to":"23833"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53631","_from":"20183","_to":"34590"} +{"$label":"ACTS_IN","name":"Cheryl Lynn Austin","type":"Role","_key":"45640","_from":"20185","_to":"30210"} +{"$label":"ACTS_IN","name":"Mrs. Partridge","type":"Role","_key":"28182","_from":"20189","_to":"20186"} +{"$label":"ACTS_IN","name":"Ruth Clark","type":"Role","_key":"28181","_from":"20188","_to":"20186"} +{"$label":"ACTS_IN","name":"Monsieur Antoine","type":"Role","_key":"28180","_from":"20187","_to":"20186"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"88880","_from":"20188","_to":"52660"} +{"$label":"ACTS_IN","name":"Miss Loretta Hicks","type":"Role","_key":"63077","_from":"20188","_to":"39576"} +{"$label":"ACTS_IN","name":"Florence Watson","type":"Role","_key":"42792","_from":"20188","_to":"28626"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"28191","_from":"20192","_to":"20190"} +{"$label":"DIRECTED","_key":"28183","_from":"20191","_to":"20190"} +{"$label":"DIRECTED","_key":"91777","_from":"20191","_to":"54142"} +{"$label":"DIRECTED","_key":"43245","_from":"20191","_to":"28881"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"91776","_from":"20191","_to":"54142"} +{"$label":"ACTS_IN","name":"Shep","type":"Role","_key":"28204","_from":"20198","_to":"20193"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"28203","_from":"20197","_to":"20193"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"28202","_from":"20196","_to":"20193"} +{"$label":"ACTS_IN","name":"Mr. Gordon","type":"Role","_key":"28200","_from":"20195","_to":"20193"} +{"$label":"DIRECTED","_key":"28193","_from":"20194","_to":"20193"} +{"$label":"DIRECTED","_key":"34530","_from":"20194","_to":"23646"} +{"$label":"ACTS_IN","name":"Prof. Hensley","type":"Role","_key":"28380","_from":"20195","_to":"20299"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29377","_from":"20197","_to":"20855"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29307","_from":"20197","_to":"20814"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29262","_from":"20197","_to":"20796"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29237","_from":"20197","_to":"20793"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29225","_from":"20197","_to":"20787"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29149","_from":"20197","_to":"20757"} +{"$label":"ACTS_IN","name":"Cap. Nemo","type":"Role","_key":"28213","_from":"20208","_to":"20199"} +{"$label":"ACTS_IN","name":"Jupe","type":"Role","_key":"28212","_from":"20207","_to":"20199"} +{"$label":"ACTS_IN","name":"Herbert","type":"Role","_key":"28211","_from":"20206","_to":"20199"} +{"$label":"ACTS_IN","name":"Neb","type":"Role","_key":"28210","_from":"20205","_to":"20199"} +{"$label":"ACTS_IN","name":"Ayrton","type":"Role","_key":"28209","_from":"20204","_to":"20199"} +{"$label":"ACTS_IN","name":"Pencroft","type":"Role","_key":"28208","_from":"20203","_to":"20199"} +{"$label":"ACTS_IN","name":"Spilett","type":"Role","_key":"28207","_from":"20202","_to":"20199"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"28206","_from":"20201","_to":"20199"} +{"$label":"DIRECTED","_key":"28205","_from":"20200","_to":"20199"} +{"$label":"ACTS_IN","name":"Sura","type":"Role","_key":"28221","_from":"20213","_to":"20209"} +{"$label":"ACTS_IN","name":"Ahot","type":"Role","_key":"28220","_from":"20212","_to":"20209"} +{"$label":"ACTS_IN","name":"Sakana","type":"Role","_key":"28217","_from":"20211","_to":"20209"} +{"$label":"DIRECTED","_key":"28214","_from":"20210","_to":"20209"} +{"$label":"DIRECTED","_key":"103115","_from":"20210","_to":"60651"} +{"$label":"DIRECTED","_key":"70475","_from":"20210","_to":"42901"} +{"$label":"DIRECTED","_key":"67972","_from":"20210","_to":"41763"} +{"$label":"ACTS_IN","name":"Sgt. Pencroft","type":"Role","_key":"118404","_from":"20211","_to":"69604"} +{"$label":"ACTS_IN","name":"Matthew Quintal","type":"Role","_key":"67781","_from":"20211","_to":"41668"} +{"$label":"ACTS_IN","name":"Sgt. Grogan","type":"Role","_key":"66671","_from":"20211","_to":"41194"} +{"$label":"ACTS_IN","name":"Joxer Tierney","type":"Role","_key":"38445","_from":"20211","_to":"25966"} +{"$label":"ACTS_IN","name":"Charlie, the Bartender","type":"Role","_key":"35779","_from":"20211","_to":"24304"} +{"$label":"ACTS_IN","name":"Peytow","type":"Role","_key":"28231","_from":"20221","_to":"20214"} +{"$label":"ACTS_IN","name":"Skakana","type":"Role","_key":"28230","_from":"20220","_to":"20214"} +{"$label":"ACTS_IN","name":"Nupondi","type":"Role","_key":"28228","_from":"20219","_to":"20214"} +{"$label":"ACTS_IN","name":"Ohtao","type":"Role","_key":"28227","_from":"20218","_to":"20214"} +{"$label":"ACTS_IN","name":"Loana","type":"Role","_key":"28225","_from":"20217","_to":"20214"} +{"$label":"DIRECTED","_key":"28223","_from":"20216","_to":"20214"} +{"$label":"DIRECTED","_key":"28222","_from":"20215","_to":"20214"} +{"$label":"ACTS_IN","name":"Don Claudio","type":"Role","_key":"118357","_from":"20221","_to":"69576"} +{"$label":"ACTS_IN","name":"Prof. Kendall","type":"Role","_key":"28240","_from":"20226","_to":"20222"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"28238","_from":"20225","_to":"20222"} +{"$label":"ACTS_IN","name":"Dr. Mary Robinson","type":"Role","_key":"28235","_from":"20224","_to":"20222"} +{"$label":"ACTS_IN","name":"Bill Stockton","type":"Role","_key":"28234","_from":"20223","_to":"20222"} +{"$label":"ACTS_IN","name":"Hotel Clerk","type":"Role","_key":"28250","_from":"20231","_to":"20227"} +{"$label":"ACTS_IN","name":"Young Fingerling","type":"Role","_key":"28249","_from":"20230","_to":"20227"} +{"$label":"ACTS_IN","name":"Laura Tollins","type":"Role","_key":"28247","_from":"20229","_to":"20227"} +{"$label":"ACTS_IN","name":"Robin Sparrow","type":"Role","_key":"28244","_from":"20228","_to":"20227"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"116418","_from":"20228","_to":"68531"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115636","_from":"20228","_to":"68076"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"93551","_from":"20228","_to":"55088"} +{"$label":"ACTS_IN","name":"William Evans","type":"Role","_key":"36264","_from":"20228","_to":"24605"} +{"$label":"ACTS_IN","name":"Rachel Talbot","type":"Role","_key":"99131","_from":"20229","_to":"58414"} +{"$label":"ACTS_IN","name":"Maj. Eden Sinclair","type":"Role","_key":"94615","_from":"20229","_to":"55748"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"89482","_from":"20229","_to":"52980"} +{"$label":"ACTS_IN","name":"Sebastian's Neighbor","type":"Role","_key":"53494","_from":"20229","_to":"34546"} +{"$label":"ACTS_IN","name":"Alourdes Galindo","type":"Role","_key":"46872","_from":"20229","_to":"30909"} +{"$label":"ACTS_IN","name":"Kyra","type":"Role","_key":"37354","_from":"20229","_to":"25315"} +{"$label":"ACTS_IN","name":"Bob Stone","type":"Role","_key":"28265","_from":"20237","_to":"20232"} +{"$label":"ACTS_IN","name":"Agent Paul Rhodes","type":"Role","_key":"28262","_from":"20236","_to":"20232"} +{"$label":"ACTS_IN","name":"Agent Jack Sickler","type":"Role","_key":"28261","_from":"20235","_to":"20232"} +{"$label":"ACTS_IN","name":"Agent Kimba Welch","type":"Role","_key":"28260","_from":"20234","_to":"20232"} +{"$label":"ACTS_IN","name":"Sean Mullen","type":"Role","_key":"28256","_from":"20233","_to":"20232"} +{"$label":"ACTS_IN","name":"Holiday","type":"Role","_key":"88099","_from":"20235","_to":"52284"} +{"$label":"ACTS_IN","name":"S.S. Agent Bob","type":"Role","_key":"63247","_from":"20235","_to":"39652"} +{"$label":"ACTS_IN","name":"The Jew","type":"Role","_key":"28283","_from":"20248","_to":"20238"} +{"$label":"ACTS_IN","name":"World Transport Official","type":"Role","_key":"28281","_from":"20247","_to":"20238"} +{"$label":"ACTS_IN","name":"Maurice Passworthy","type":"Role","_key":"28280","_from":"20246","_to":"20238"} +{"$label":"ACTS_IN","name":"Catherine Cabal","type":"Role","_key":"28279","_from":"20245","_to":"20238"} +{"$label":"ACTS_IN","name":"Mary Gordon","type":"Role","_key":"28278","_from":"20244","_to":"20238"} +{"$label":"ACTS_IN","name":"Mrs. Cabal","type":"Role","_key":"28276","_from":"20243","_to":"20238"} +{"$label":"ACTS_IN","name":"Dr. Harding","type":"Role","_key":"28275","_from":"20242","_to":"20238"} +{"$label":"ACTS_IN","name":"Roxana \/ Rowena","type":"Role","_key":"28274","_from":"20241","_to":"20238"} +{"$label":"ACTS_IN","name":"Pippa Passworthy \/ Raymond Passworthy","type":"Role","_key":"28271","_from":"20240","_to":"20238"} +{"$label":"DIRECTED","_key":"28269","_from":"20239","_to":"20238"} +{"$label":"ACTS_IN","name":"Swami","type":"Role","_key":"115229","_from":"20248","_to":"67853"} +{"$label":"ACTS_IN","name":"Deb","type":"Role","_key":"28296","_from":"20256","_to":"20249"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"28295","_from":"20255","_to":"20249"} +{"$label":"ACTS_IN","name":"Officer David Caporizo","type":"Role","_key":"28294","_from":"20254","_to":"20249"} +{"$label":"ACTS_IN","name":"Benjamin Willis","type":"Role","_key":"28292","_from":"20253","_to":"20249"} +{"$label":"ACTS_IN","name":"Ray Bronson","type":"Role","_key":"28289","_from":"20252","_to":"20249"} +{"$label":"ACTS_IN","name":"Julie James","type":"Role","_key":"28286","_from":"20251","_to":"20249"} +{"$label":"DIRECTED","_key":"28285","_from":"20250","_to":"20249"} +{"$label":"DIRECTED","_key":"62884","_from":"20250","_to":"39507"} +{"$label":"DIRECTED","_key":"45875","_from":"20250","_to":"30341"} +{"$label":"ACTS_IN","name":"Brooke Figler","type":"Role","_key":"117800","_from":"20251","_to":"69242"} +{"$label":"ACTS_IN","name":"Samantha Andrews","type":"Role","_key":"105865","_from":"20251","_to":"62320"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"102858","_from":"20251","_to":"60510"} +{"$label":"ACTS_IN","name":"Alice Holbrook","type":"Role","_key":"102531","_from":"20251","_to":"60324"} +{"$label":"ACTS_IN","name":"Leah Jones","type":"Role","_key":"99658","_from":"20251","_to":"58758"} +{"$label":"ACTS_IN","name":"Madellaine","type":"Role","_key":"89567","_from":"20251","_to":"53002"} +{"$label":"ACTS_IN","name":"Page Conners","type":"Role","_key":"66058","_from":"20251","_to":"40881"} +{"$label":"ACTS_IN","name":"Del Blaine","type":"Role","_key":"65671","_from":"20251","_to":"40682"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"54364","_from":"20251","_to":"34872"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"51499","_from":"20251","_to":"33579"} +{"$label":"ACTS_IN","name":"Julie James","type":"Role","_key":"28308","_from":"20251","_to":"20259"} +{"$label":"ACTS_IN","name":"Pi (voice)","type":"Role","_key":"120517","_from":"20252","_to":"70788"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"108143","_from":"20252","_to":"63913"} +{"$label":"ACTS_IN","name":"Michael Turner","type":"Role","_key":"92322","_from":"20252","_to":"54480"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"67361","_from":"20252","_to":"41514"} +{"$label":"ACTS_IN","name":"Ryan Walker","type":"Role","_key":"64158","_from":"20252","_to":"40035"} +{"$label":"ACTS_IN","name":"Alfred 'Al' Connelly","type":"Role","_key":"63530","_from":"20252","_to":"39770"} +{"$label":"ACTS_IN","name":"1st Lt. Christopher Blair","type":"Role","_key":"62732","_from":"20252","_to":"39439"} +{"$label":"ACTS_IN","name":"Zach Siler","type":"Role","_key":"62544","_from":"20252","_to":"39367"} +{"$label":"ACTS_IN","name":"Fred Jones","type":"Role","_key":"55191","_from":"20252","_to":"35209"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"37169","_from":"20252","_to":"25176"} +{"$label":"ACTS_IN","name":"Ray Bronson","type":"Role","_key":"28309","_from":"20252","_to":"20259"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"120509","_from":"20253","_to":"70785"} +{"$label":"ACTS_IN","name":"C. W.","type":"Role","_key":"87995","_from":"20253","_to":"52245"} +{"$label":"ACTS_IN","name":"Ketcham","type":"Role","_key":"55693","_from":"20253","_to":"35443"} +{"$label":"ACTS_IN","name":"Ben Willis","type":"Role","_key":"28312","_from":"20253","_to":"20259"} +{"$label":"ACTS_IN","name":"Dave Hockner","type":"Role","_key":"108429","_from":"20255","_to":"64098"} +{"$label":"ACTS_IN","name":"Gloria Stone","type":"Role","_key":"28302","_from":"20258","_to":"20257"} +{"$label":"ACTS_IN","name":"Will Benson","type":"Role","_key":"28313","_from":"20262","_to":"20259"} +{"$label":"ACTS_IN","name":"Karla Wilson","type":"Role","_key":"28311","_from":"20261","_to":"20259"} +{"$label":"DIRECTED","_key":"28307","_from":"20260","_to":"20259"} +{"$label":"DIRECTED","_key":"56435","_from":"20260","_to":"35852"} +{"$label":"DIRECTED","_key":"54159","_from":"20260","_to":"34797"} +{"$label":"ACTS_IN","name":"Leah (voice)","type":"Role","_key":"90590","_from":"20261","_to":"53504"} +{"$label":"ACTS_IN","name":"Brandy Beechwood","type":"Role","_key":"43695","_from":"20261","_to":"29183"} +{"$label":"ACTS_IN","name":"Jacob Wheeler","type":"Role","_key":"113976","_from":"20262","_to":"67127"} +{"$label":"ACTS_IN","name":"The Fisherman","type":"Role","_key":"28327","_from":"20273","_to":"20264"} +{"$label":"ACTS_IN","name":"Sheriff Davis","type":"Role","_key":"28326","_from":"20272","_to":"20264"} +{"$label":"ACTS_IN","name":"P.J.","type":"Role","_key":"28325","_from":"20271","_to":"20264"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"28324","_from":"20270","_to":"20264"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"28323","_from":"20269","_to":"20264"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"28322","_from":"20268","_to":"20264"} +{"$label":"ACTS_IN","name":"Deputy Hafner","type":"Role","_key":"28321","_from":"20267","_to":"20264"} +{"$label":"ACTS_IN","name":"Colby Patterson","type":"Role","_key":"28320","_from":"20266","_to":"20264"} +{"$label":"ACTS_IN","name":"Amber Williams","type":"Role","_key":"28319","_from":"20265","_to":"20264"} +{"$label":"ACTS_IN","name":"Addy","type":"Role","_key":"120455","_from":"20265","_to":"70761"} +{"$label":"ACTS_IN","name":"Christine Pearce","type":"Role","_key":"100827","_from":"20265","_to":"59442"} +{"$label":"ACTS_IN","name":"Michelle Fields","type":"Role","_key":"65537","_from":"20265","_to":"40621"} +{"$label":"ACTS_IN","name":"Elder John Rogers","type":"Role","_key":"109801","_from":"20267","_to":"64859"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"104134","_from":"20267","_to":"61261"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"57643","_from":"20267","_to":"36493"} +{"$label":"ACTS_IN","name":"Phoebe Hilldale","type":"Role","_key":"102169","_from":"20269","_to":"60121"} +{"$label":"ACTS_IN","name":"President Sandburg","type":"Role","_key":"109806","_from":"20272","_to":"64859"} +{"$label":"ACTS_IN","name":"Laochailand Kai","type":"Role","_key":"58014","_from":"20272","_to":"36700"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"57640","_from":"20272","_to":"36493"} +{"$label":"ACTS_IN","name":"Michael Myers","type":"Role","_key":"69403","_from":"20273","_to":"42424"} +{"$label":"ACTS_IN","name":"Indian Chief","type":"Role","_key":"58018","_from":"20273","_to":"36700"} +{"$label":"ACTS_IN","name":"Oliver Oldfield","type":"Role","_key":"28337","_from":"20282","_to":"20274"} +{"$label":"ACTS_IN","name":"Dr. Rush","type":"Role","_key":"28336","_from":"20281","_to":"20274"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"28333","_from":"20280","_to":"20274"} +{"$label":"ACTS_IN","name":"Prebble","type":"Role","_key":"28332","_from":"20279","_to":"20274"} +{"$label":"ACTS_IN","name":"Experience","type":"Role","_key":"28331","_from":"20278","_to":"20274"} +{"$label":"ACTS_IN","name":"Angus Oldfield","type":"Role","_key":"28330","_from":"20277","_to":"20274"} +{"$label":"ACTS_IN","name":"Henry Oldfield","type":"Role","_key":"28329","_from":"20276","_to":"20274"} +{"$label":"DIRECTED","_key":"28328","_from":"20275","_to":"20274"} +{"$label":"ACTS_IN","name":"Man in Black","type":"Role","_key":"100153","_from":"20280","_to":"59067"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"57941","_from":"20280","_to":"36647"} +{"$label":"ACTS_IN","name":"Julie-Anne Bryson","type":"Role","_key":"66142","_from":"20281","_to":"40912"} +{"$label":"ACTS_IN","name":"Dale Arden","type":"Role","_key":"28340","_from":"20285","_to":"20283"} +{"$label":"ACTS_IN","name":"Flash Gordon","type":"Role","_key":"28339","_from":"20284","_to":"20283"} +{"$label":"ACTS_IN","name":"Patricia Goodwin","type":"Role","_key":"91207","_from":"20285","_to":"53788"} +{"$label":"ACTS_IN","name":"Carlotta","type":"Role","_key":"28365","_from":"20298","_to":"20286"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"28364","_from":"20297","_to":"20286"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"28363","_from":"20296","_to":"20286"} +{"$label":"ACTS_IN","name":"Accountant","type":"Role","_key":"28362","_from":"20295","_to":"20286"} +{"$label":"ACTS_IN","name":"Hubie","type":"Role","_key":"28361","_from":"20294","_to":"20286"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"28360","_from":"20293","_to":"20286"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"28359","_from":"20292","_to":"20286"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"28357","_from":"20291","_to":"20286"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"28356","_from":"20290","_to":"20286"} +{"$label":"ACTS_IN","name":"Finola","type":"Role","_key":"28355","_from":"20289","_to":"20286"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"28352","_from":"20288","_to":"20286"} +{"$label":"DIRECTED","_key":"28347","_from":"20287","_to":"20286"} +{"$label":"DIRECTED","_key":"114832","_from":"20287","_to":"67641"} +{"$label":"DIRECTED","_key":"61721","_from":"20287","_to":"38871"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"110356","_from":"20288","_to":"65211"} +{"$label":"ACTS_IN","name":"Natalie Murphy","type":"Role","_key":"71387","_from":"20288","_to":"43295"} +{"$label":"ACTS_IN","name":"Christy","type":"Role","_key":"63761","_from":"20291","_to":"39869"} +{"$label":"ACTS_IN","name":"Sabina Pleasure","type":"Role","_key":"58882","_from":"20291","_to":"37189"} +{"$label":"ACTS_IN","name":"Mallory","type":"Role","_key":"48391","_from":"20291","_to":"31764"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"99674","_from":"20292","_to":"58766"} +{"$label":"ACTS_IN","name":"George Saden","type":"Role","_key":"34794","_from":"20295","_to":"23775"} +{"$label":"ACTS_IN","name":"Sheriff Detweiller","type":"Role","_key":"55392","_from":"20297","_to":"35310"} +{"$label":"ACTS_IN","name":"Officer Torch","type":"Role","_key":"28378","_from":"20309","_to":"20299"} +{"$label":"ACTS_IN","name":"High Priest","type":"Role","_key":"28377","_from":"20308","_to":"20299"} +{"$label":"ACTS_IN","name":"Prince Thun","type":"Role","_key":"28376","_from":"20307","_to":"20299"} +{"$label":"ACTS_IN","name":"King Vultan","type":"Role","_key":"28375","_from":"20306","_to":"20299"} +{"$label":"ACTS_IN","name":"Dr. Hans Zarkov","type":"Role","_key":"28373","_from":"20305","_to":"20299"} +{"$label":"ACTS_IN","name":"Princess Aura","type":"Role","_key":"28372","_from":"20304","_to":"20299"} +{"$label":"ACTS_IN","name":"Dale Arden","type":"Role","_key":"28370","_from":"20303","_to":"20299"} +{"$label":"ACTS_IN","name":"Flash Gordon","type":"Role","_key":"28369","_from":"20302","_to":"20299"} +{"$label":"DIRECTED","_key":"28368","_from":"20301","_to":"20299"} +{"$label":"DIRECTED","_key":"28367","_from":"20300","_to":"20299"} +{"$label":"ACTS_IN","name":"Ray Gorman","type":"Role","_key":"46118","_from":"20302","_to":"30473"} +{"$label":"ACTS_IN","name":"Col. Buck Rogers","type":"Role","_key":"28761","_from":"20302","_to":"20550"} +{"$label":"ACTS_IN","name":"Buck Rogers","type":"Role","_key":"28726","_from":"20302","_to":"20523"} +{"$label":"ACTS_IN","name":"Frans","type":"Role","_key":"28391","_from":"20315","_to":"20310"} +{"$label":"ACTS_IN","name":"Griet's Father","type":"Role","_key":"28389","_from":"20314","_to":"20310"} +{"$label":"ACTS_IN","name":"Griet's Mother","type":"Role","_key":"28388","_from":"20313","_to":"20310"} +{"$label":"ACTS_IN","name":"Catharina Bolnes Vermeer","type":"Role","_key":"28386","_from":"20312","_to":"20310"} +{"$label":"ACTS_IN","name":"Maria Thins","type":"Role","_key":"28385","_from":"20311","_to":"20310"} +{"$label":"ACTS_IN","name":"Vera Donovan","type":"Role","_key":"72799","_from":"20311","_to":"43864"} +{"$label":"ACTS_IN","name":"Mrs. Arable","type":"Role","_key":"58991","_from":"20312","_to":"37240"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"45495","_from":"20312","_to":"30139"} +{"$label":"ACTS_IN","name":"Scipio","type":"Role","_key":"54416","_from":"20315","_to":"34901"} +{"$label":"DIRECTED","_key":"28405","_from":"20321","_to":"20316"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"28404","_from":"20320","_to":"20316"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"28403","_from":"20319","_to":"20316"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"28402","_from":"20318","_to":"20316"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"28398","_from":"20317","_to":"20316"} +{"$label":"ACTS_IN","name":"Honey Pie","type":"Role","_key":"96735","_from":"20317","_to":"56902"} +{"$label":"ACTS_IN","name":"Honey Pie","type":"Role","_key":"60229","_from":"20317","_to":"37994"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"63025","_from":"20319","_to":"39557"} +{"$label":"ACTS_IN","name":"Sally Oliver","type":"Role","_key":"55650","_from":"20319","_to":"35428"} +{"$label":"ACTS_IN","name":"Kim Bliss","type":"Role","_key":"49127","_from":"20319","_to":"32184"} +{"$label":"ACTS_IN","name":"Kathrine","type":"Role","_key":"47566","_from":"20319","_to":"31338"} +{"$label":"ACTS_IN","name":"Gillian","type":"Role","_key":"100175","_from":"20320","_to":"59089"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"31573","_from":"20320","_to":"22047"} +{"$label":"DIRECTED","_key":"69082","_from":"20321","_to":"42274"} +{"$label":"DIRECTED","_key":"61780","_from":"20321","_to":"38895"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"28415","_from":"20325","_to":"20322"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"28413","_from":"20324","_to":"20322"} +{"$label":"ACTS_IN","name":"Lina Klein","type":"Role","_key":"28408","_from":"20323","_to":"20322"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"65120","_from":"20324","_to":"40449"} +{"$label":"ACTS_IN","name":"Marietta Ricordi","type":"Role","_key":"28426","_from":"20333","_to":"20326"} +{"$label":"ACTS_IN","name":"Domenico Barbaja","type":"Role","_key":"28424","_from":"20332","_to":"20326"} +{"$label":"ACTS_IN","name":"Giuseppe Verdi","type":"Role","_key":"28422","_from":"20331","_to":"20326"} +{"$label":"ACTS_IN","name":"Tito Ricordi","type":"Role","_key":"28421","_from":"20330","_to":"20326"} +{"$label":"ACTS_IN","name":"Giuseppina Strepponi","type":"Role","_key":"28418","_from":"20329","_to":"20326"} +{"$label":"ACTS_IN","name":"Gioacchino Rossini","type":"Role","_key":"28417","_from":"20328","_to":"20326"} +{"$label":"DIRECTED","_key":"28416","_from":"20327","_to":"20326"} +{"$label":"DIRECTED","_key":"70855","_from":"20327","_to":"43064"} +{"$label":"DIRECTED","_key":"70850","_from":"20327","_to":"43063"} +{"$label":"ACTS_IN","name":"Jacques Brulages","type":"Role","_key":"34072","_from":"20328","_to":"23415"} +{"$label":"ACTS_IN","name":"El\u00e9na","type":"Role","_key":"39420","_from":"20329","_to":"26646"} +{"$label":"ACTS_IN","name":"Maria Manalese","type":"Role","_key":"30315","_from":"20329","_to":"21319"} +{"$label":"ACTS_IN","name":"Il colonnello","type":"Role","_key":"49576","_from":"20331","_to":"32457"} +{"$label":"ACTS_IN","name":"King Yotar","type":"Role","_key":"46184","_from":"20332","_to":"30524"} +{"$label":"ACTS_IN","name":"Redway","type":"Role","_key":"44337","_from":"20332","_to":"29543"} +{"$label":"DIRECTED","_key":"28436","_from":"20342","_to":"20334"} +{"$label":"ACTS_IN","name":"Prince Barin ( voice )","type":"Role","_key":"28434","_from":"20341","_to":"20334"} +{"$label":"ACTS_IN","name":"Princess Aura ( voice )","type":"Role","_key":"28433","_from":"20340","_to":"20334"} +{"$label":"ACTS_IN","name":"Kaiser Ming ( Voice )","type":"Role","_key":"28432","_from":"20339","_to":"20334"} +{"$label":"ACTS_IN","name":"Thun ( voice )","type":"Role","_key":"28431","_from":"20338","_to":"20334"} +{"$label":"ACTS_IN","name":"Zarkov ( voice )","type":"Role","_key":"28430","_from":"20337","_to":"20334"} +{"$label":"ACTS_IN","name":"Dale Arden ( Voice )","type":"Role","_key":"28429","_from":"20336","_to":"20334"} +{"$label":"ACTS_IN","name":"Flash Gordon","type":"Role","_key":"28428","_from":"20335","_to":"20334"} +{"$label":"ACTS_IN","name":"The Hangman","type":"Role","_key":"47723","_from":"20335","_to":"31431"} +{"$label":"ACTS_IN","name":"Avatar (voice)","type":"Role","_key":"108153","_from":"20337","_to":"63917"} +{"$label":"ACTS_IN","name":"Homer Zuckerman","type":"Role","_key":"103460","_from":"20337","_to":"60852"} +{"$label":"ACTS_IN","name":"Orlovsky","type":"Role","_key":"32359","_from":"20338","_to":"22533"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38931","_from":"20339","_to":"26293"} +{"$label":"ACTS_IN","name":"Mr. John Porter","type":"Role","_key":"34137","_from":"20341","_to":"23449"} +{"$label":"DIRECTED","_key":"28458","_from":"20351","_to":"20343"} +{"$label":"ACTS_IN","name":"Miss Marks","type":"Role","_key":"28457","_from":"20350","_to":"20343"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"28455","_from":"20349","_to":"20343"} +{"$label":"ACTS_IN","name":"Mayor's Secretary","type":"Role","_key":"28453","_from":"20348","_to":"20343"} +{"$label":"ACTS_IN","name":"Sylvia Werner","type":"Role","_key":"28448","_from":"20347","_to":"20343"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"28446","_from":"20346","_to":"20343"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"28445","_from":"20345","_to":"20343"} +{"$label":"ACTS_IN","name":"Liz Bien","type":"Role","_key":"28441","_from":"20344","_to":"20343"} +{"$label":"ACTS_IN","name":"Stella Dunnworthy","type":"Role","_key":"120779","_from":"20344","_to":"70940"} +{"$label":"ACTS_IN","name":"Lee Carter","type":"Role","_key":"112062","_from":"20344","_to":"66169"} +{"$label":"ACTS_IN","name":"Bobbie Markowe","type":"Role","_key":"88804","_from":"20344","_to":"52618"} +{"$label":"ACTS_IN","name":"Nurse Duckett","type":"Role","_key":"62827","_from":"20344","_to":"39476"} +{"$label":"ACTS_IN","name":"Dame im Zug","type":"Role","_key":"89771","_from":"20345","_to":"53133"} +{"$label":"ACTS_IN","name":"Sidonie von Grasenabb","type":"Role","_key":"62520","_from":"20345","_to":"39363"} +{"$label":"ACTS_IN","name":"Wirtin im zweiten Caf\u00e9","type":"Role","_key":"61912","_from":"20345","_to":"38955"} +{"$label":"ACTS_IN","name":"Frau mit Cabrio","type":"Role","_key":"47273","_from":"20345","_to":"31145"} +{"$label":"ACTS_IN","name":"Dr. Marquart","type":"Role","_key":"36136","_from":"20345","_to":"24515"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"33736","_from":"20345","_to":"23267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33840","_from":"20346","_to":"23315"} +{"$label":"ACTS_IN","name":"Mme Beloeil","type":"Role","_key":"30636","_from":"20347","_to":"21513"} +{"$label":"ACTS_IN","name":"Joyce Sellers","type":"Role","_key":"32388","_from":"20349","_to":"22544"} +{"$label":"DIRECTED","_key":"93337","_from":"20351","_to":"54986"} +{"$label":"DIRECTED","_key":"41672","_from":"20351","_to":"27972"} +{"$label":"ACTS_IN","name":"Disco Dottie","type":"Role","_key":"28492","_from":"20372","_to":"20352"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"28491","_from":"20371","_to":"20352"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"28490","_from":"20370","_to":"20352"} +{"$label":"ACTS_IN","name":"Atlanta","type":"Role","_key":"28489","_from":"20369","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28487","_from":"20368","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28486","_from":"20367","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28485","_from":"20366","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28484","_from":"20365","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28483","_from":"20364","_to":"20352"} +{"$label":"ACTS_IN","name":"VIP","type":"Role","_key":"28481","_from":"20363","_to":"20352"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"28480","_from":"20362","_to":"20352"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"28479","_from":"20361","_to":"20352"} +{"$label":"ACTS_IN","name":"TV Host","type":"Role","_key":"28476","_from":"20360","_to":"20352"} +{"$label":"ACTS_IN","name":"IRS Agent","type":"Role","_key":"28475","_from":"20359","_to":"20352"} +{"$label":"ACTS_IN","name":"Harlan O'Shea","type":"Role","_key":"28471","_from":"20358","_to":"20352"} +{"$label":"ACTS_IN","name":"Kelly O'Shea","type":"Role","_key":"28470","_from":"20357","_to":"20352"} +{"$label":"ACTS_IN","name":"Ciel","type":"Role","_key":"28468","_from":"20356","_to":"20352"} +{"$label":"ACTS_IN","name":"Greg Randazzo","type":"Role","_key":"28466","_from":"20355","_to":"20352"} +{"$label":"ACTS_IN","name":"Viv","type":"Role","_key":"28464","_from":"20354","_to":"20352"} +{"$label":"DIRECTED","_key":"28459","_from":"20353","_to":"20352"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"121436","_from":"20354","_to":"71342"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"116969","_from":"20355","_to":"68851"} +{"$label":"ACTS_IN","name":"Ted Meyers","type":"Role","_key":"116158","_from":"20355","_to":"68398"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"102870","_from":"20355","_to":"60510"} +{"$label":"ACTS_IN","name":"John Logue","type":"Role","_key":"91833","_from":"20355","_to":"54174"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"90254","_from":"20355","_to":"53362"} +{"$label":"ACTS_IN","name":"Ray Peyton Jr.","type":"Role","_key":"69940","_from":"20355","_to":"42674"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"68896","_from":"20355","_to":"42190"} +{"$label":"ACTS_IN","name":"Charlie McKay","type":"Role","_key":"68697","_from":"20355","_to":"42094"} +{"$label":"ACTS_IN","name":"Surfer","type":"Role","_key":"60095","_from":"20355","_to":"37917"} +{"$label":"ACTS_IN","name":"Nick Schaffer","type":"Role","_key":"57697","_from":"20355","_to":"36524"} +{"$label":"ACTS_IN","name":"Travis","type":"Role","_key":"54972","_from":"20355","_to":"35134"} +{"$label":"ACTS_IN","name":"Jon Arbuckle","type":"Role","_key":"54367","_from":"20355","_to":"34872"} +{"$label":"ACTS_IN","name":"Josh Parker","type":"Role","_key":"52856","_from":"20355","_to":"34260"} +{"$label":"ACTS_IN","name":"Mitt","type":"Role","_key":"52558","_from":"20355","_to":"34163"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"51498","_from":"20355","_to":"33579"} +{"$label":"ACTS_IN","name":"Tim Fink","type":"Role","_key":"46063","_from":"20355","_to":"30427"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"104274","_from":"20356","_to":"61347"} +{"$label":"ACTS_IN","name":"Shanti","type":"Role","_key":"47189","_from":"20356","_to":"31106"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"48322","_from":"20358","_to":"31733"} +{"$label":"ACTS_IN","name":"Waldo's Dad","type":"Role","_key":"66539","_from":"20364","_to":"41127"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53613","_from":"20364","_to":"34590"} +{"$label":"ACTS_IN","name":"Kate McQueen","type":"Role","_key":"72423","_from":"20366","_to":"43717"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"67223","_from":"20372","_to":"41454"} +{"$label":"ACTS_IN","name":"Grandma Mary Cleary","type":"Role","_key":"54431","_from":"20372","_to":"34907"} +{"$label":"ACTS_IN","name":"Senator","type":"Role","_key":"28508","_from":"20379","_to":"20373"} +{"$label":"ACTS_IN","name":"Gust","type":"Role","_key":"28507","_from":"20378","_to":"20373"} +{"$label":"ACTS_IN","name":"Brian Kimmet","type":"Role","_key":"28506","_from":"20377","_to":"20373"} +{"$label":"ACTS_IN","name":"Lindberg","type":"Role","_key":"28505","_from":"20376","_to":"20373"} +{"$label":"ACTS_IN","name":"Franklin Sousley","type":"Role","_key":"28500","_from":"20375","_to":"20373"} +{"$label":"ACTS_IN","name":"Ira Hayes","type":"Role","_key":"28495","_from":"20374","_to":"20373"} +{"$label":"ACTS_IN","name":"Turok (Voice)","type":"Role","_key":"110963","_from":"20374","_to":"65540"} +{"$label":"ACTS_IN","name":"Charles Eastman","type":"Role","_key":"94673","_from":"20374","_to":"55765"} +{"$label":"ACTS_IN","name":"Private Ben Yahzee","type":"Role","_key":"88021","_from":"20374","_to":"52256"} +{"$label":"ACTS_IN","name":"Kicking Wing","type":"Role","_key":"66959","_from":"20374","_to":"41336"} +{"$label":"ACTS_IN","name":"Derrick Blank","type":"Role","_key":"92878","_from":"20375","_to":"54784"} +{"$label":"ACTS_IN","name":"Owen Reilly","type":"Role","_key":"48196","_from":"20375","_to":"31662"} +{"$label":"ACTS_IN","name":"Augusten Burroughs","type":"Role","_key":"46972","_from":"20375","_to":"30977"} +{"$label":"ACTS_IN","name":"Grant Hillman","type":"Role","_key":"102024","_from":"20378","_to":"60028"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"52832","_from":"20378","_to":"34252"} +{"$label":"ACTS_IN","name":"Evan Clark","type":"Role","_key":"31300","_from":"20378","_to":"21887"} +{"$label":"ACTS_IN","name":"Hal Devlin","type":"Role","_key":"110084","_from":"20379","_to":"65054"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"108003","_from":"20379","_to":"63792"} +{"$label":"ACTS_IN","name":"Payne","type":"Role","_key":"37763","_from":"20379","_to":"25613"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"28514","_from":"20385","_to":"20380"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"28513","_from":"20384","_to":"20380"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"28512","_from":"20383","_to":"20380"} +{"$label":"ACTS_IN","name":"Baytekin \" Flash \" Gordon","type":"Role","_key":"28511","_from":"20382","_to":"20380"} +{"$label":"DIRECTED","_key":"28510","_from":"20381","_to":"20380"} +{"$label":"ACTS_IN","name":"Barfrau","type":"Role","_key":"28523","_from":"20391","_to":"20386"} +{"$label":"ACTS_IN","name":"Lord Tuff-Tuff","type":"Role","_key":"28521","_from":"20390","_to":"20386"} +{"$label":"ACTS_IN","name":"Bill Jones","type":"Role","_key":"28520","_from":"20389","_to":"20386"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"28516","_from":"20388","_to":"20386"} +{"$label":"DIRECTED","_key":"28515","_from":"20387","_to":"20386"} +{"$label":"DIRECTED","_key":"118842","_from":"20387","_to":"69855"} +{"$label":"DIRECTED","_key":"118837","_from":"20387","_to":"69854"} +{"$label":"DIRECTED","_key":"90554","_from":"20387","_to":"53485"} +{"$label":"DIRECTED","_key":"88889","_from":"20387","_to":"52663"} +{"$label":"DIRECTED","_key":"67844","_from":"20387","_to":"41690"} +{"$label":"DIRECTED","_key":"64774","_from":"20387","_to":"40310"} +{"$label":"DIRECTED","_key":"47641","_from":"20387","_to":"31393"} +{"$label":"DIRECTED","_key":"45745","_from":"20387","_to":"30269"} +{"$label":"DIRECTED","_key":"44798","_from":"20387","_to":"29804"} +{"$label":"DIRECTED","_key":"38211","_from":"20387","_to":"25817"} +{"$label":"DIRECTED","_key":"38195","_from":"20387","_to":"25812"} +{"$label":"DIRECTED","_key":"38186","_from":"20387","_to":"25808"} +{"$label":"DIRECTED","_key":"38175","_from":"20387","_to":"25804"} +{"$label":"DIRECTED","_key":"38149","_from":"20387","_to":"25795"} +{"$label":"DIRECTED","_key":"38029","_from":"20387","_to":"25742"} +{"$label":"DIRECTED","_key":"38028","_from":"20387","_to":"25728"} +{"$label":"DIRECTED","_key":"32830","_from":"20387","_to":"22793"} +{"$label":"DIRECTED","_key":"32813","_from":"20387","_to":"22783"} +{"$label":"DIRECTED","_key":"32782","_from":"20387","_to":"22764"} +{"$label":"DIRECTED","_key":"32422","_from":"20387","_to":"22563"} +{"$label":"DIRECTED","_key":"28524","_from":"20387","_to":"20392"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"119192","_from":"20388","_to":"70039"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"64768","_from":"20388","_to":"40310"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"55149","_from":"20388","_to":"35198"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"55144","_from":"20388","_to":"35197"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"55138","_from":"20388","_to":"35195"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"54599","_from":"20388","_to":"34977"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"53272","_from":"20388","_to":"34453"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"45747","_from":"20388","_to":"30269"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"44119","_from":"20388","_to":"29415"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"38213","_from":"20388","_to":"25817"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"34149","_from":"20388","_to":"23455"} +{"$label":"ACTS_IN","name":"Winnetou","type":"Role","_key":"28526","_from":"20388","_to":"20392"} +{"$label":"ACTS_IN","name":"Brokston","type":"Role","_key":"109780","_from":"20389","_to":"64846"} +{"$label":"ACTS_IN","name":"Martin Baumann Sr.","type":"Role","_key":"53275","_from":"20389","_to":"34453"} +{"$label":"ACTS_IN","name":"Van Artz","type":"Role","_key":"44335","_from":"20389","_to":"29543"} +{"$label":"ACTS_IN","name":"Nero","type":"Role","_key":"38851","_from":"20389","_to":"26238"} +{"$label":"ACTS_IN","name":"Archibald","type":"Role","_key":"119189","_from":"20390","_to":"70038"} +{"$label":"ACTS_IN","name":"Archibald","type":"Role","_key":"119177","_from":"20390","_to":"70032"} +{"$label":"ACTS_IN","name":"Archibald","type":"Role","_key":"90229","_from":"20390","_to":"53349"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Engl\u00e4nder","type":"Role","_key":"45949","_from":"20390","_to":"30376"} +{"$label":"ACTS_IN","name":"Mr. Printice","type":"Role","_key":"45096","_from":"20390","_to":"29936"} +{"$label":"ACTS_IN","name":"Mr. Norbert","type":"Role","_key":"39129","_from":"20390","_to":"26449"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40540","_from":"20391","_to":"27297"} +{"$label":"ACTS_IN","name":"Dolores","type":"Role","_key":"38206","_from":"20391","_to":"25812"} +{"$label":"ACTS_IN","name":"Col. Merrill","type":"Role","_key":"28532","_from":"20395","_to":"20392"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"28531","_from":"20394","_to":"20392"} +{"$label":"ACTS_IN","name":"Forrester","type":"Role","_key":"28528","_from":"20393","_to":"20392"} +{"$label":"ACTS_IN","name":"Carlsson","type":"Role","_key":"49086","_from":"20393","_to":"32171"} +{"$label":"ACTS_IN","name":"Sir Stephen","type":"Role","_key":"32699","_from":"20393","_to":"22714"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"28546","_from":"20407","_to":"20396"} +{"$label":"ACTS_IN","name":"Sex Sklave","type":"Role","_key":"28545","_from":"20406","_to":"20396"} +{"$label":"ACTS_IN","name":"Prince Precious","type":"Role","_key":"28544","_from":"20405","_to":"20396"} +{"$label":"ACTS_IN","name":"Amora the Queen of Magic","type":"Role","_key":"28542","_from":"20404","_to":"20396"} +{"$label":"ACTS_IN","name":"Chief Nellie","type":"Role","_key":"28541","_from":"20403","_to":"20396"} +{"$label":"ACTS_IN","name":"Kaiser Wang","type":"Role","_key":"28540","_from":"20402","_to":"20396"} +{"$label":"ACTS_IN","name":"Dr. Flexi Jerkoff","type":"Role","_key":"28539","_from":"20401","_to":"20396"} +{"$label":"ACTS_IN","name":"Dale Ardor","type":"Role","_key":"28538","_from":"20400","_to":"20396"} +{"$label":"ACTS_IN","name":"Flesh Gordon","type":"Role","_key":"28537","_from":"20399","_to":"20396"} +{"$label":"DIRECTED","_key":"28536","_from":"20398","_to":"20396"} +{"$label":"DIRECTED","_key":"28535","_from":"20397","_to":"20396"} +{"$label":"DIRECTED","_key":"38691","_from":"20398","_to":"26139"} +{"$label":"DIRECTED","_key":"28549","_from":"20398","_to":"20408"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39461","_from":"20400","_to":"26676"} +{"$label":"ACTS_IN","name":"Briggs","type":"Role","_key":"91114","_from":"20402","_to":"53754"} +{"$label":"ACTS_IN","name":"Evil Presence","type":"Role","_key":"28553","_from":"20402","_to":"20408"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38819","_from":"20403","_to":"26215"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"38514","_from":"20403","_to":"26019"} +{"$label":"ACTS_IN","name":"The Headsperson","type":"Role","_key":"38375","_from":"20403","_to":"25922"} +{"$label":"ACTS_IN","name":"Queen Frigid","type":"Role","_key":"28556","_from":"20415","_to":"20408"} +{"$label":"ACTS_IN","name":"Master Bator","type":"Role","_key":"28555","_from":"20414","_to":"20408"} +{"$label":"ACTS_IN","name":"Robunda Hooters","type":"Role","_key":"28554","_from":"20413","_to":"20408"} +{"$label":"ACTS_IN","name":"Dr. Flexi Jerkoff","type":"Role","_key":"28552","_from":"20412","_to":"20408"} +{"$label":"ACTS_IN","name":"Dale Ardor","type":"Role","_key":"28551","_from":"20411","_to":"20408"} +{"$label":"ACTS_IN","name":"Flesh Gordon","type":"Role","_key":"28550","_from":"20410","_to":"20408"} +{"$label":"DIRECTED","_key":"28548","_from":"20409","_to":"20408"} +{"$label":"ACTS_IN","name":"Billy Joe","type":"Role","_key":"34878","_from":"20414","_to":"23835"} +{"$label":"DIRECTED","_key":"28562","_from":"20419","_to":"20416"} +{"$label":"ACTS_IN","name":"Karen Truter","type":"Role","_key":"28560","_from":"20418","_to":"20416"} +{"$label":"ACTS_IN","name":"Mike Johnson","type":"Role","_key":"28557","_from":"20417","_to":"20416"} +{"$label":"ACTS_IN","name":"\u00d6lprinz","type":"Role","_key":"119193","_from":"20417","_to":"70039"} +{"$label":"ACTS_IN","name":"Inspector Bratt","type":"Role","_key":"38197","_from":"20417","_to":"25812"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"38139","_from":"20417","_to":"25789"} +{"$label":"ACTS_IN","name":"Hoteldirektor","type":"Role","_key":"34171","_from":"20417","_to":"23460"} +{"$label":"ACTS_IN","name":"Direktor","type":"Role","_key":"34152","_from":"20417","_to":"23455"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"49092","_from":"20418","_to":"32171"} +{"$label":"ACTS_IN","name":"Loni Martell","type":"Role","_key":"41243","_from":"20418","_to":"27738"} +{"$label":"ACTS_IN","name":"Babs Lincoln","type":"Role","_key":"32306","_from":"20418","_to":"22499"} +{"$label":"DIRECTED","_key":"41802","_from":"20419","_to":"28050"} +{"$label":"ACTS_IN","name":"Suzan","type":"Role","_key":"28564","_from":"20422","_to":"20420"} +{"$label":"DIRECTED","_key":"28563","_from":"20421","_to":"20420"} +{"$label":"ACTS_IN","name":"Ella Toscana","type":"Role","_key":"58806","_from":"20422","_to":"37140"} +{"$label":"DIRECTED","_key":"28574","_from":"20425","_to":"20423"} +{"$label":"ACTS_IN","name":"Pelletier","type":"Role","_key":"28573","_from":"20424","_to":"20423"} +{"$label":"DIRECTED","_key":"89487","_from":"20425","_to":"52981"} +{"$label":"DIRECTED","_key":"28579","_from":"20428","_to":"20426"} +{"$label":"ACTS_IN","name":"Bryan Cooper \/ Superdragon","type":"Role","_key":"28575","_from":"20427","_to":"20426"} +{"$label":"DIRECTED","_key":"28583","_from":"20431","_to":"20430"} +{"$label":"DIRECTED","_key":"28592","_from":"20438","_to":"20432"} +{"$label":"ACTS_IN","name":"Pierre's Friend","type":"Role","_key":"28591","_from":"20437","_to":"20432"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"28590","_from":"20436","_to":"20432"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"28589","_from":"20435","_to":"20432"} +{"$label":"ACTS_IN","name":"Omero","type":"Role","_key":"28588","_from":"20434","_to":"20432"} +{"$label":"ACTS_IN","name":"Frau Heller","type":"Role","_key":"28587","_from":"20433","_to":"20432"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"28599","_from":"20443","_to":"20439"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"28597","_from":"20442","_to":"20439"} +{"$label":"ACTS_IN","name":"Dr. Delmas","type":"Role","_key":"28596","_from":"20441","_to":"20439"} +{"$label":"DIRECTED","_key":"28593","_from":"20440","_to":"20439"} +{"$label":"ACTS_IN","name":"Olivier D`Angion","type":"Role","_key":"44302","_from":"20441","_to":"29525"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"28602","_from":"20445","_to":"20444"} +{"$label":"ACTS_IN","name":"Ben Novack","type":"Role","_key":"91323","_from":"20445","_to":"53862"} +{"$label":"ACTS_IN","name":"Salvatore Cangemi","type":"Role","_key":"28636","_from":"20445","_to":"20467"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"28614","_from":"20445","_to":"20452"} +{"$label":"ACTS_IN","name":"Charro","type":"Role","_key":"28611","_from":"20451","_to":"20446"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"28610","_from":"20450","_to":"20446"} +{"$label":"ACTS_IN","name":"Alan Smith","type":"Role","_key":"28609","_from":"20449","_to":"20446"} +{"$label":"ACTS_IN","name":"Charlie Logan","type":"Role","_key":"28607","_from":"20448","_to":"20446"} +{"$label":"DIRECTED","_key":"28605","_from":"20447","_to":"20446"} +{"$label":"DIRECTED","_key":"98882","_from":"20447","_to":"58268"} +{"$label":"DIRECTED","_key":"71063","_from":"20447","_to":"43149"} +{"$label":"DIRECTED","_key":"68144","_from":"20447","_to":"41852"} +{"$label":"DIRECTED","_key":"67499","_from":"20447","_to":"41568"} +{"$label":"DIRECTED","_key":"65664","_from":"20447","_to":"40680"} +{"$label":"ACTS_IN","name":"Trentadue","type":"Role","_key":"37408","_from":"20448","_to":"25352"} +{"$label":"ACTS_IN","name":"Larry O'Hara","type":"Role","_key":"37204","_from":"20448","_to":"25202"} +{"$label":"ACTS_IN","name":"Mikos Stenopolis","type":"Role","_key":"37196","_from":"20448","_to":"25199"} +{"$label":"ACTS_IN","name":"Parapolis","type":"Role","_key":"69439","_from":"20450","_to":"42437"} +{"$label":"ACTS_IN","name":"Word","type":"Role","_key":"90103","_from":"20451","_to":"53288"} +{"$label":"ACTS_IN","name":"Lt. Renzi","type":"Role","_key":"28626","_from":"20460","_to":"20452"} +{"$label":"ACTS_IN","name":"Barrett","type":"Role","_key":"28625","_from":"20459","_to":"20452"} +{"$label":"ACTS_IN","name":"Lt. Palumbo","type":"Role","_key":"28624","_from":"20458","_to":"20452"} +{"$label":"ACTS_IN","name":"Inez Tamborini","type":"Role","_key":"28623","_from":"20457","_to":"20452"} +{"$label":"ACTS_IN","name":"Kathy Adams","type":"Role","_key":"28620","_from":"20456","_to":"20452"} +{"$label":"ACTS_IN","name":"Inspector Vismara","type":"Role","_key":"28618","_from":"20455","_to":"20452"} +{"$label":"ACTS_IN","name":"Concetta di Rosa","type":"Role","_key":"28617","_from":"20454","_to":"20452"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"28615","_from":"20453","_to":"20452"} +{"$label":"ACTS_IN","name":"Marion Nietnagel","type":"Role","_key":"88882","_from":"20453","_to":"52663"} +{"$label":"ACTS_IN","name":"Marion Nietnagel","type":"Role","_key":"67841","_from":"20453","_to":"41690"} +{"$label":"ACTS_IN","name":"Marion Nietnagel","type":"Role","_key":"67060","_from":"20453","_to":"41394"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"63624","_from":"20453","_to":"39802"} +{"$label":"ACTS_IN","name":"Ann Portland","type":"Role","_key":"55166","_from":"20453","_to":"35202"} +{"$label":"ACTS_IN","name":"Apanatschi","type":"Role","_key":"55146","_from":"20453","_to":"35197"} +{"$label":"ACTS_IN","name":"F\u00fcrstin","type":"Role","_key":"45300","_from":"20453","_to":"30050"} +{"$label":"ACTS_IN","name":"Renate","type":"Role","_key":"43153","_from":"20453","_to":"28819"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"38210","_from":"20453","_to":"25812"} +{"$label":"ACTS_IN","name":"Gerda","type":"Role","_key":"34042","_from":"20453","_to":"23410"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"33261","_from":"20453","_to":"23045"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"32761","_from":"20453","_to":"22749"} +{"$label":"ACTS_IN","name":"Brother Reeves","type":"Role","_key":"50472","_from":"20460","_to":"32963"} +{"$label":"ACTS_IN","name":"Robert Hillary","type":"Role","_key":"32403","_from":"20460","_to":"22551"} +{"$label":"ACTS_IN","name":"Chief Inspector Contaldi","type":"Role","_key":"28641","_from":"20460","_to":"20467"} +{"$label":"DIRECTED","_key":"50464","_from":"20460","_to":"32963"} +{"$label":"ACTS_IN","name":"Dur\u00e1n","type":"Role","_key":"28633","_from":"20466","_to":"20461"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"28632","_from":"20465","_to":"20461"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"28631","_from":"20464","_to":"20461"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"28630","_from":"20463","_to":"20461"} +{"$label":"DIRECTED","_key":"28627","_from":"20462","_to":"20461"} +{"$label":"ACTS_IN","name":"Takis","type":"Role","_key":"28643","_from":"20472","_to":"20467"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"28642","_from":"20471","_to":"20467"} +{"$label":"ACTS_IN","name":"Billy Barone","type":"Role","_key":"28640","_from":"20470","_to":"20467"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"28639","_from":"20469","_to":"20467"} +{"$label":"ACTS_IN","name":"Lino Carruzzi","type":"Role","_key":"28637","_from":"20468","_to":"20467"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"90147","_from":"20469","_to":"53304"} +{"$label":"ACTS_IN","name":"Tosca Floria Zanin","type":"Role","_key":"33517","_from":"20469","_to":"23177"} +{"$label":"ACTS_IN","name":"Rosaria","type":"Role","_key":"28648","_from":"20477","_to":"20473"} +{"$label":"ACTS_IN","name":"Teresa Pescosolido","type":"Role","_key":"28647","_from":"20476","_to":"20473"} +{"$label":"ACTS_IN","name":"Checca","type":"Role","_key":"28646","_from":"20475","_to":"20473"} +{"$label":"ACTS_IN","name":"Michele Fiore","type":"Role","_key":"28645","_from":"20474","_to":"20473"} +{"$label":"ACTS_IN","name":"Geppetto","type":"Role","_key":"64438","_from":"20474","_to":"40156"} +{"$label":"ACTS_IN","name":"Gisella Marasca","type":"Role","_key":"70851","_from":"20475","_to":"43064"} +{"$label":"ACTS_IN","name":"Angela Valle","type":"Role","_key":"105734","_from":"20477","_to":"62239"} +{"$label":"ACTS_IN","name":"Elizabeth Hillary","type":"Role","_key":"32409","_from":"20477","_to":"22551"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"28659","_from":"20480","_to":"20478"} +{"$label":"ACTS_IN","name":"Ungarischer Grenzbeamter","type":"Role","_key":"28656","_from":"20479","_to":"20478"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"88017","_from":"20480","_to":"52251"} +{"$label":"DIRECTED","_key":"28671","_from":"20489","_to":"20481"} +{"$label":"ACTS_IN","name":"U-Boot-Pilot","type":"Role","_key":"28670","_from":"20488","_to":"20481"} +{"$label":"ACTS_IN","name":"Gertrud Fenske","type":"Role","_key":"28668","_from":"20487","_to":"20481"} +{"$label":"ACTS_IN","name":"Horst Fenske","type":"Role","_key":"28667","_from":"20486","_to":"20481"} +{"$label":"ACTS_IN","name":"Helge Duis","type":"Role","_key":"28666","_from":"20485","_to":"20481"} +{"$label":"ACTS_IN","name":"Franka","type":"Role","_key":"28665","_from":"20484","_to":"20481"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"28664","_from":"20483","_to":"20481"} +{"$label":"ACTS_IN","name":"Svenja Schweiger","type":"Role","_key":"28662","_from":"20482","_to":"20481"} +{"$label":"ACTS_IN","name":"Uncle Heinrich Bamberg","type":"Role","_key":"107284","_from":"20483","_to":"63270"} +{"$label":"ACTS_IN","name":"Prell","type":"Role","_key":"66601","_from":"20483","_to":"41171"} +{"$label":"ACTS_IN","name":"Rainer Engel","type":"Role","_key":"44113","_from":"20483","_to":"29413"} +{"$label":"ACTS_IN","name":"Udo Troester","type":"Role","_key":"42947","_from":"20483","_to":"28693"} +{"$label":"ACTS_IN","name":"Ushi","type":"Role","_key":"28677","_from":"20496","_to":"20490"} +{"$label":"ACTS_IN","name":"The Samurai","type":"Role","_key":"28676","_from":"20495","_to":"20490"} +{"$label":"ACTS_IN","name":"Hachi","type":"Role","_key":"28675","_from":"20494","_to":"20490"} +{"$label":"ACTS_IN","name":"Young Woman","type":"Role","_key":"28674","_from":"20493","_to":"20490"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"28673","_from":"20492","_to":"20490"} +{"$label":"DIRECTED","_key":"28672","_from":"20491","_to":"20490"} +{"$label":"DIRECTED","_key":"28678","_from":"20491","_to":"20497"} +{"$label":"ACTS_IN","name":"Toyo","type":"Role","_key":"28679","_from":"20492","_to":"20497"} +{"$label":"ACTS_IN","name":"Shobei Hamajima","type":"Role","_key":"111195","_from":"20494","_to":"65665"} +{"$label":"ACTS_IN","name":"Senji","type":"Role","_key":"28680","_from":"20496","_to":"20497"} +{"$label":"ACTS_IN","name":"Jiro","type":"Role","_key":"28682","_from":"20499","_to":"20497"} +{"$label":"ACTS_IN","name":"Taro","type":"Role","_key":"28681","_from":"20498","_to":"20497"} +{"$label":"ACTS_IN","name":"Bessie","type":"Role","_key":"28693","_from":"20506","_to":"20500"} +{"$label":"ACTS_IN","name":"District Attorney Galloway","type":"Role","_key":"28692","_from":"20505","_to":"20500"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"28691","_from":"20504","_to":"20500"} +{"$label":"ACTS_IN","name":"Goldfish","type":"Role","_key":"28690","_from":"20503","_to":"20500"} +{"$label":"ACTS_IN","name":"George Grisby","type":"Role","_key":"28687","_from":"20502","_to":"20500"} +{"$label":"ACTS_IN","name":"Elsa Bannister","type":"Role","_key":"28684","_from":"20501","_to":"20500"} +{"$label":"ACTS_IN","name":"Joan Forrester,","type":"Role","_key":"29012","_from":"20501","_to":"20706"} +{"$label":"ACTS_IN","name":"Gilda Mundson Farrell","type":"Role","_key":"28695","_from":"20501","_to":"20507"} +{"$label":"ACTS_IN","name":"German Cartel Member","type":"Role","_key":"28703","_from":"20510","_to":"20507"} +{"$label":"ACTS_IN","name":"Gabe Evans","type":"Role","_key":"28702","_from":"20509","_to":"20507"} +{"$label":"ACTS_IN","name":"Capt. Delgado","type":"Role","_key":"28701","_from":"20508","_to":"20507"} +{"$label":"ACTS_IN","name":"Col. Thomas O`Bannion","type":"Role","_key":"45514","_from":"20508","_to":"30146"} +{"$label":"ACTS_IN","name":"Gustav Lindt","type":"Role","_key":"39469","_from":"20510","_to":"26678"} +{"$label":"ACTS_IN","name":"Dr. Titus","type":"Role","_key":"29193","_from":"20510","_to":"20782"} +{"$label":"ACTS_IN","name":"Kunimaru Tsuzuki","type":"Role","_key":"28710","_from":"20513","_to":"20511"} +{"$label":"ACTS_IN","name":"Lady Asaji Washizu","type":"Role","_key":"28708","_from":"20512","_to":"20511"} +{"$label":"ACTS_IN","name":"Orin","type":"Role","_key":"72513","_from":"20512","_to":"43743"} +{"$label":"ACTS_IN","name":"The Mantis","type":"Role","_key":"28716","_from":"20516","_to":"20514"} +{"$label":"ACTS_IN","name":"Dr. Noboru Yasumoto","type":"Role","_key":"28714","_from":"20515","_to":"20514"} +{"$label":"ACTS_IN","name":"Hyoma Utsuki","type":"Role","_key":"121352","_from":"20515","_to":"71310"} +{"$label":"ACTS_IN","name":"Iori Izaka","type":"Role","_key":"71716","_from":"20515","_to":"43413"} +{"$label":"ACTS_IN","name":"Ky\u00f4ko Hirayama","type":"Role","_key":"115064","_from":"20516","_to":"67755"} +{"$label":"ACTS_IN","name":"Reiko Gondo","type":"Role","_key":"89851","_from":"20516","_to":"53168"} +{"$label":"ACTS_IN","name":"Toyo","type":"Role","_key":"28723","_from":"20522","_to":"20517"} +{"$label":"ACTS_IN","name":"Ohara","type":"Role","_key":"28722","_from":"20521","_to":"20517"} +{"$label":"ACTS_IN","name":"Mitsuo, son of Kanji","type":"Role","_key":"28721","_from":"20520","_to":"20517"} +{"$label":"ACTS_IN","name":"Sakai","type":"Role","_key":"28720","_from":"20519","_to":"20517"} +{"$label":"ACTS_IN","name":"Kimura","type":"Role","_key":"28719","_from":"20518","_to":"20517"} +{"$label":"ACTS_IN","name":"Prof. Huer","type":"Role","_key":"28731","_from":"20528","_to":"20523"} +{"$label":"ACTS_IN","name":"Killer Kane","type":"Role","_key":"28730","_from":"20527","_to":"20523"} +{"$label":"ACTS_IN","name":"Capt. Rankin","type":"Role","_key":"28729","_from":"20526","_to":"20523"} +{"$label":"ACTS_IN","name":"Wilma Deering","type":"Role","_key":"28727","_from":"20525","_to":"20523"} +{"$label":"DIRECTED","_key":"28725","_from":"20524","_to":"20523"} +{"$label":"DIRECTED","_key":"28760","_from":"20524","_to":"20550"} +{"$label":"ACTS_IN","name":"Lt. Wilma Deering","type":"Role","_key":"28762","_from":"20525","_to":"20550"} +{"$label":"ACTS_IN","name":"Killer Mace","type":"Role","_key":"28864","_from":"20527","_to":"20624"} +{"$label":"ACTS_IN","name":"Killer Kane","type":"Role","_key":"28763","_from":"20527","_to":"20550"} +{"$label":"ACTS_IN","name":"Prof. Huer","type":"Role","_key":"28765","_from":"20528","_to":"20550"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"28746","_from":"20538","_to":"20529"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"28745","_from":"20537","_to":"20529"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"28744","_from":"20536","_to":"20529"} +{"$label":"ACTS_IN","name":"Artemis","type":"Role","_key":"28743","_from":"20535","_to":"20529"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"28742","_from":"20534","_to":"20529"} +{"$label":"ACTS_IN","name":"Tino","type":"Role","_key":"28740","_from":"20533","_to":"20529"} +{"$label":"ACTS_IN","name":"Nedda","type":"Role","_key":"28739","_from":"20532","_to":"20529"} +{"$label":"ACTS_IN","name":"Mr. Rosen","type":"Role","_key":"28738","_from":"20531","_to":"20529"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"28737","_from":"20530","_to":"20529"} +{"$label":"ACTS_IN","name":"Wally Thurman","type":"Role","_key":"114448","_from":"20530","_to":"67420"} +{"$label":"ACTS_IN","name":"Ham Egg (voice)","type":"Role","_key":"109574","_from":"20530","_to":"64719"} +{"$label":"ACTS_IN","name":"Richard Levy the Driven","type":"Role","_key":"94703","_from":"20530","_to":"55789"} +{"$label":"ACTS_IN","name":"Timon","type":"Role","_key":"69812","_from":"20530","_to":"42606"} +{"$label":"ACTS_IN","name":"Albert Goldman","type":"Role","_key":"67201","_from":"20530","_to":"41451"} +{"$label":"ACTS_IN","name":"Snowbell (voice)","type":"Role","_key":"67171","_from":"20530","_to":"41441"} +{"$label":"ACTS_IN","name":"Max Bialystock","type":"Role","_key":"57742","_from":"20530","_to":"36543"} +{"$label":"ACTS_IN","name":"Preed","type":"Role","_key":"46695","_from":"20530","_to":"30828"} +{"$label":"ACTS_IN","name":"Ernest \"Ernie\" Smuntz","type":"Role","_key":"42830","_from":"20530","_to":"28641"} +{"$label":"ACTS_IN","name":"Dr. Johnson","type":"Role","_key":"116090","_from":"20531","_to":"68357"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"43540","_from":"20533","_to":"29077"} +{"$label":"ACTS_IN","name":"Susana Parrado","type":"Role","_key":"46415","_from":"20535","_to":"30656"} +{"$label":"ACTS_IN","name":"Officer Max","type":"Role","_key":"110960","_from":"20537","_to":"65537"} +{"$label":"ACTS_IN","name":"Mayor Young","type":"Role","_key":"58722","_from":"20537","_to":"37088"} +{"$label":"ACTS_IN","name":"Paul Davis","type":"Role","_key":"32953","_from":"20537","_to":"22845"} +{"$label":"ACTS_IN","name":"Dr. Huer","type":"Role","_key":"28749","_from":"20540","_to":"20539"} +{"$label":"ACTS_IN","name":"Buck Rogers","type":"Role","_key":"28748","_from":"20541","_to":"20539"} +{"$label":"DIRECTED","_key":"28747","_from":"20540","_to":"20539"} +{"$label":"ACTS_IN","name":"Twiki","type":"Role","_key":"28758","_from":"20549","_to":"20542"} +{"$label":"ACTS_IN","name":"Tigermann","type":"Role","_key":"28757","_from":"20548","_to":"20542"} +{"$label":"ACTS_IN","name":"Dr. Elias Huer","type":"Role","_key":"28755","_from":"20547","_to":"20542"} +{"$label":"ACTS_IN","name":"Col. Wilma Deering","type":"Role","_key":"28753","_from":"20546","_to":"20542"} +{"$label":"ACTS_IN","name":"Princess Ardala","type":"Role","_key":"28752","_from":"20545","_to":"20542"} +{"$label":"ACTS_IN","name":"Capt. William \" Buck \" Rogers","type":"Role","_key":"28751","_from":"20544","_to":"20542"} +{"$label":"DIRECTED","_key":"28750","_from":"20543","_to":"20542"} +{"$label":"ACTS_IN","name":"Rheinhardt","type":"Role","_key":"115593","_from":"20549","_to":"68049"} +{"$label":"ACTS_IN","name":"Marshal Kragg","type":"Role","_key":"28768","_from":"20553","_to":"20550"} +{"$label":"ACTS_IN","name":"Aldar","type":"Role","_key":"28767","_from":"20552","_to":"20550"} +{"$label":"ACTS_IN","name":"Tallan","type":"Role","_key":"28766","_from":"20551","_to":"20550"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"28772","_from":"20558","_to":"20554"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"28771","_from":"20557","_to":"20554"} +{"$label":"ACTS_IN","name":"Ham","type":"Role","_key":"28770","_from":"20556","_to":"20554"} +{"$label":"DIRECTED","_key":"28769","_from":"20555","_to":"20554"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"28778","_from":"20564","_to":"20559"} +{"$label":"ACTS_IN","name":"Edward J. Laurie","type":"Role","_key":"28777","_from":"20563","_to":"20559"} +{"$label":"ACTS_IN","name":"Estelle Fountaine","type":"Role","_key":"28776","_from":"20562","_to":"20559"} +{"$label":"ACTS_IN","name":"Dickie, the pianist","type":"Role","_key":"28775","_from":"20560","_to":"20559"} +{"$label":"DIRECTED","_key":"28774","_from":"20561","_to":"20559"} +{"$label":"DIRECTED","_key":"28773","_from":"20560","_to":"20559"} +{"$label":"ACTS_IN","name":"Fichte","type":"Role","_key":"28794","_from":"20578","_to":"20565"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"28793","_from":"20577","_to":"20565"} +{"$label":"ACTS_IN","name":"Steinbruchbesitzer","type":"Role","_key":"28791","_from":"20576","_to":"20565"} +{"$label":"ACTS_IN","name":"Kneipenwirt","type":"Role","_key":"28790","_from":"20575","_to":"20565"} +{"$label":"ACTS_IN","name":"Lemmy","type":"Role","_key":"28788","_from":"20574","_to":"20565"} +{"$label":"ACTS_IN","name":"Fredel","type":"Role","_key":"28787","_from":"20573","_to":"20565"} +{"$label":"ACTS_IN","name":"Samarit","type":"Role","_key":"28786","_from":"20572","_to":"20565"} +{"$label":"ACTS_IN","name":"Inke","type":"Role","_key":"28785","_from":"20571","_to":"20565"} +{"$label":"ACTS_IN","name":"Schmiege","type":"Role","_key":"28783","_from":"20570","_to":"20565"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"28782","_from":"20569","_to":"20565"} +{"$label":"ACTS_IN","name":"Festus","type":"Role","_key":"28781","_from":"20568","_to":"20565"} +{"$label":"ACTS_IN","name":"Bastian","type":"Role","_key":"28780","_from":"20567","_to":"20565"} +{"$label":"DIRECTED","_key":"28779","_from":"20566","_to":"20565"} +{"$label":"DIRECTED","_key":"88014","_from":"20566","_to":"52251"} +{"$label":"ACTS_IN","name":"Gonzalo","type":"Role","_key":"28808","_from":"20591","_to":"20579"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"28807","_from":"20590","_to":"20579"} +{"$label":"ACTS_IN","name":"Bankangestellte","type":"Role","_key":"28806","_from":"20589","_to":"20579"} +{"$label":"ACTS_IN","name":"Alba","type":"Role","_key":"28805","_from":"20588","_to":"20579"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"28804","_from":"20587","_to":"20579"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"28803","_from":"20586","_to":"20579"} +{"$label":"ACTS_IN","name":"Natalia","type":"Role","_key":"28801","_from":"20585","_to":"20579"} +{"$label":"ACTS_IN","name":"Andr\u00e9s (Vater)","type":"Role","_key":"28800","_from":"20584","_to":"20579"} +{"$label":"ACTS_IN","name":"Israel (Sean)","type":"Role","_key":"28799","_from":"20583","_to":"20579"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"28798","_from":"20582","_to":"20579"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"28796","_from":"20581","_to":"20579"} +{"$label":"DIRECTED","_key":"28795","_from":"20580","_to":"20579"} +{"$label":"ACTS_IN","name":"Maribel","type":"Role","_key":"48187","_from":"20589","_to":"31649"} +{"$label":"ACTS_IN","name":"Prof. Benjamin","type":"Role","_key":"28821","_from":"20604","_to":"20592"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"28819","_from":"20603","_to":"20592"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"28818","_from":"20602","_to":"20592"} +{"$label":"ACTS_IN","name":"Prof. Crandal","type":"Role","_key":"28817","_from":"20601","_to":"20592"} +{"$label":"ACTS_IN","name":"Stewart","type":"Role","_key":"28816","_from":"20600","_to":"20592"} +{"$label":"ACTS_IN","name":"Hodge Garrett","type":"Role","_key":"28815","_from":"20599","_to":"20592"} +{"$label":"ACTS_IN","name":"Sheila Layton","type":"Role","_key":"28814","_from":"20598","_to":"20592"} +{"$label":"ACTS_IN","name":"Craig Foster","type":"Role","_key":"28813","_from":"20597","_to":"20592"} +{"$label":"ACTS_IN","name":"Dr. Cygnus Layton","type":"Role","_key":"28812","_from":"20596","_to":"20592"} +{"$label":"ACTS_IN","name":"The Purple Monster","type":"Role","_key":"28811","_from":"20595","_to":"20592"} +{"$label":"DIRECTED","_key":"28810","_from":"20594","_to":"20592"} +{"$label":"DIRECTED","_key":"28809","_from":"20593","_to":"20592"} +{"$label":"DIRECTED","_key":"28859","_from":"20593","_to":"20624"} +{"$label":"DIRECTED","_key":"28822","_from":"20606","_to":"20605"} +{"$label":"DIRECTED","_key":"48468","_from":"20606","_to":"31809"} +{"$label":"DIRECTED","_key":"28898","_from":"20606","_to":"20650"} +{"$label":"DIRECTED","_key":"28896","_from":"20606","_to":"20646"} +{"$label":"DIRECTED","_key":"28891","_from":"20606","_to":"20644"} +{"$label":"DIRECTED","_key":"28873","_from":"20606","_to":"20635"} +{"$label":"ACTS_IN","name":"Neve","type":"Role","_key":"28841","_from":"20616","_to":"20607"} +{"$label":"ACTS_IN","name":"Alfredo als Kind","type":"Role","_key":"28840","_from":"20615","_to":"20607"} +{"$label":"ACTS_IN","name":"Olmo als Kind","type":"Role","_key":"28839","_from":"20614","_to":"20607"} +{"$label":"ACTS_IN","name":"Anitas Tochter","type":"Role","_key":"28838","_from":"20613","_to":"20607"} +{"$label":"ACTS_IN","name":"Ammalia","type":"Role","_key":"28837","_from":"20612","_to":"20607"} +{"$label":"ACTS_IN","name":"Eleonora","type":"Role","_key":"28836","_from":"20611","_to":"20607"} +{"$label":"ACTS_IN","name":"Desolata","type":"Role","_key":"28835","_from":"20610","_to":"20607"} +{"$label":"ACTS_IN","name":"Ottavio Berlinghieri","type":"Role","_key":"28833","_from":"20609","_to":"20607"} +{"$label":"ACTS_IN","name":"Anita Foschi","type":"Role","_key":"28827","_from":"20608","_to":"20607"} +{"$label":"ACTS_IN","name":"Adriana","type":"Role","_key":"89444","_from":"20608","_to":"52953"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"89234","_from":"20608","_to":"52837"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"49572","_from":"20608","_to":"32457"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"33402","_from":"20608","_to":"23120"} +{"$label":"ACTS_IN","name":"Madre de Jos\u00e9 Luis","type":"Role","_key":"32195","_from":"20608","_to":"22444"} +{"$label":"ACTS_IN","name":"Edoardo Minotti","type":"Role","_key":"49084","_from":"20609","_to":"32171"} +{"$label":"ACTS_IN","name":"Hauptkommissar Bossum","type":"Role","_key":"39954","_from":"20609","_to":"26992"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44379","_from":"20612","_to":"29567"} +{"$label":"ACTS_IN","name":"Flavia Speckler","type":"Role","_key":"111632","_from":"20616","_to":"65904"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"72684","_from":"20616","_to":"43802"} +{"$label":"ACTS_IN","name":"Ditte","type":"Role","_key":"28852","_from":"20621","_to":"20617"} +{"$label":"ACTS_IN","name":"Niels Peter","type":"Role","_key":"28851","_from":"20620","_to":"20617"} +{"$label":"ACTS_IN","name":"Else","type":"Role","_key":"28848","_from":"20619","_to":"20617"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"28847","_from":"20618","_to":"20617"} +{"$label":"ACTS_IN","name":"Peters Mor","type":"Role","_key":"61493","_from":"20619","_to":"38782"} +{"$label":"ACTS_IN","name":"Linda \/ Charlotte","type":"Role","_key":"95052","_from":"20621","_to":"55952"} +{"$label":"ACTS_IN","name":"R\u00f8skva (voice)","type":"Role","_key":"90790","_from":"20621","_to":"53575"} +{"$label":"ACTS_IN","name":"Spring","type":"Role","_key":"28858","_from":"20623","_to":"20622"} +{"$label":"ACTS_IN","name":"Voice of the Masked Man","type":"Role","_key":"28872","_from":"20634","_to":"20624"} +{"$label":"ACTS_IN","name":"Matthews","type":"Role","_key":"28870","_from":"20633","_to":"20624"} +{"$label":"ACTS_IN","name":"Meggs","type":"Role","_key":"28869","_from":"20632","_to":"20624"} +{"$label":"ACTS_IN","name":"James Arnold","type":"Role","_key":"28868","_from":"20631","_to":"20624"} +{"$label":"ACTS_IN","name":"Terry Morton","type":"Role","_key":"28866","_from":"20630","_to":"20624"} +{"$label":"ACTS_IN","name":"Robert Barton","type":"Role","_key":"28865","_from":"20629","_to":"20624"} +{"$label":"ACTS_IN","name":"Martin Crane","type":"Role","_key":"28863","_from":"20628","_to":"20624"} +{"$label":"ACTS_IN","name":"Alice Hamilton","type":"Role","_key":"28862","_from":"20627","_to":"20624"} +{"$label":"ACTS_IN","name":"The Masked Marvel","type":"Role","_key":"28861","_from":"20626","_to":"20624"} +{"$label":"ACTS_IN","name":"Mura Sakima","type":"Role","_key":"28860","_from":"20625","_to":"20624"} +{"$label":"ACTS_IN","name":"Robert \" Bob \" Dixon","type":"Role","_key":"29236","_from":"20628","_to":"20793"} +{"$label":"ACTS_IN","name":"Boy 2","type":"Role","_key":"28879","_from":"20641","_to":"20635"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"28878","_from":"20640","_to":"20635"} +{"$label":"ACTS_IN","name":"Old man","type":"Role","_key":"28877","_from":"20639","_to":"20635"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"28876","_from":"20638","_to":"20635"} +{"$label":"ACTS_IN","name":"Boy as an adult","type":"Role","_key":"28875","_from":"20637","_to":"20635"} +{"$label":"DIRECTED","_key":"28874","_from":"20636","_to":"20635"} +{"$label":"DIRECTED","_key":"28899","_from":"20636","_to":"20650"} +{"$label":"DIRECTED","_key":"28897","_from":"20636","_to":"20646"} +{"$label":"ACTS_IN","name":"Woody","type":"Role","_key":"28887","_from":"20643","_to":"20642"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"28892","_from":"20645","_to":"20644"} +{"$label":"ACTS_IN","name":"Yung man","type":"Role","_key":"28895","_from":"20649","_to":"20646"} +{"$label":"ACTS_IN","name":"Housband","type":"Role","_key":"28894","_from":"20648","_to":"20646"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"28893","_from":"20647","_to":"20646"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"28902","_from":"20653","_to":"20650"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"28901","_from":"20652","_to":"20650"} +{"$label":"ACTS_IN","name":"woman","type":"Role","_key":"28900","_from":"20651","_to":"20650"} +{"$label":"DIRECTED","_key":"28903","_from":"20655","_to":"20654"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"28920","_from":"20669","_to":"20657"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"28918","_from":"20668","_to":"20657"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"28917","_from":"20667","_to":"20657"} +{"$label":"ACTS_IN","name":"Hotel Porter","type":"Role","_key":"28915","_from":"20666","_to":"20657"} +{"$label":"ACTS_IN","name":"Mrs. Fuddle","type":"Role","_key":"28914","_from":"20665","_to":"20657"} +{"$label":"ACTS_IN","name":"Dorothy \" Dot \" Miller - Blondies Schwester","type":"Role","_key":"28913","_from":"20664","_to":"20657"} +{"$label":"ACTS_IN","name":"Mrs. Miller - Blondies Mother","type":"Role","_key":"28911","_from":"20663","_to":"20657"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"28910","_from":"20662","_to":"20657"} +{"$label":"ACTS_IN","name":"Chester Franey","type":"Role","_key":"28909","_from":"20661","_to":"20657"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"28906","_from":"20660","_to":"20657"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"28905","_from":"20659","_to":"20657"} +{"$label":"DIRECTED","_key":"28904","_from":"20658","_to":"20657"} +{"$label":"DIRECTED","_key":"29116","_from":"20658","_to":"20744"} +{"$label":"DIRECTED","_key":"29099","_from":"20658","_to":"20737"} +{"$label":"DIRECTED","_key":"29080","_from":"20658","_to":"20731"} +{"$label":"DIRECTED","_key":"29068","_from":"20658","_to":"20726"} +{"$label":"DIRECTED","_key":"29057","_from":"20658","_to":"20721"} +{"$label":"DIRECTED","_key":"29046","_from":"20658","_to":"20717"} +{"$label":"DIRECTED","_key":"29033","_from":"20658","_to":"20712"} +{"$label":"DIRECTED","_key":"29032","_from":"20658","_to":"20709"} +{"$label":"DIRECTED","_key":"29007","_from":"20658","_to":"20706"} +{"$label":"DIRECTED","_key":"28994","_from":"20658","_to":"20702"} +{"$label":"DIRECTED","_key":"28949","_from":"20658","_to":"20682"} +{"$label":"DIRECTED","_key":"28936","_from":"20658","_to":"20676"} +{"$label":"DIRECTED","_key":"28921","_from":"20658","_to":"20670"} +{"$label":"ACTS_IN","name":"Jane Jetson (voice)","type":"Role","_key":"110878","_from":"20659","_to":"65488"} +{"$label":"ACTS_IN","name":"Polly Byrnes","type":"Role","_key":"100953","_from":"20659","_to":"59500"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29391","_from":"20659","_to":"20861"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29379","_from":"20659","_to":"20859"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29367","_from":"20659","_to":"20855"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29356","_from":"20659","_to":"20852"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29296","_from":"20659","_to":"20814"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29283","_from":"20659","_to":"20811"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29269","_from":"20659","_to":"20805"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29250","_from":"20659","_to":"20796"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29240","_from":"20659","_to":"20794"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29228","_from":"20659","_to":"20793"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29209","_from":"20659","_to":"20787"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29197","_from":"20659","_to":"20783"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29185","_from":"20659","_to":"20782"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29138","_from":"20659","_to":"20757"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29117","_from":"20659","_to":"20744"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29100","_from":"20659","_to":"20737"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29081","_from":"20659","_to":"20731"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29069","_from":"20659","_to":"20726"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29058","_from":"20659","_to":"20721"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29047","_from":"20659","_to":"20717"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29034","_from":"20659","_to":"20712"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29031","_from":"20659","_to":"20709"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"29008","_from":"20659","_to":"20706"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"28996","_from":"20659","_to":"20702"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"28950","_from":"20659","_to":"20682"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"28937","_from":"20659","_to":"20676"} +{"$label":"ACTS_IN","name":"Blondie Bumstead","type":"Role","_key":"28922","_from":"20659","_to":"20670"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29392","_from":"20660","_to":"20861"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29380","_from":"20660","_to":"20859"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29368","_from":"20660","_to":"20855"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29357","_from":"20660","_to":"20852"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29297","_from":"20660","_to":"20814"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29284","_from":"20660","_to":"20811"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29270","_from":"20660","_to":"20805"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29251","_from":"20660","_to":"20796"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29241","_from":"20660","_to":"20794"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29229","_from":"20660","_to":"20793"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29210","_from":"20660","_to":"20787"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29198","_from":"20660","_to":"20783"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29186","_from":"20660","_to":"20782"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29139","_from":"20660","_to":"20757"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29118","_from":"20660","_to":"20744"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29101","_from":"20660","_to":"20737"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29082","_from":"20660","_to":"20731"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29070","_from":"20660","_to":"20726"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29059","_from":"20660","_to":"20721"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29048","_from":"20660","_to":"20717"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29035","_from":"20660","_to":"20712"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29020","_from":"20660","_to":"20709"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"29009","_from":"20660","_to":"20706"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"28997","_from":"20660","_to":"20702"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"28951","_from":"20660","_to":"20682"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"28938","_from":"20660","_to":"20676"} +{"$label":"ACTS_IN","name":"Dagwood \" Dag \" Bumstead","type":"Role","_key":"28923","_from":"20660","_to":"20670"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29396","_from":"20662","_to":"20861"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29389","_from":"20662","_to":"20859"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29363","_from":"20662","_to":"20852"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29304","_from":"20662","_to":"20814"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29290","_from":"20662","_to":"20811"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29257","_from":"20662","_to":"20796"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29235","_from":"20662","_to":"20793"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29146","_from":"20662","_to":"20757"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29125","_from":"20662","_to":"20744"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29108","_from":"20662","_to":"20737"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29087","_from":"20662","_to":"20731"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29076","_from":"20662","_to":"20726"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29063","_from":"20662","_to":"20721"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29054","_from":"20662","_to":"20717"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29040","_from":"20662","_to":"20712"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29024","_from":"20662","_to":"20709"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"29013","_from":"20662","_to":"20706"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"28999","_from":"20662","_to":"20702"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"28955","_from":"20662","_to":"20682"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"28941","_from":"20662","_to":"20676"} +{"$label":"ACTS_IN","name":"Alvin Fuddle","type":"Role","_key":"28925","_from":"20662","_to":"20670"} +{"$label":"ACTS_IN","name":"Dot Miller","type":"Role","_key":"28956","_from":"20664","_to":"20682"} +{"$label":"ACTS_IN","name":"Jenny Williams","type":"Role","_key":"95765","_from":"20665","_to":"56328"} +{"$label":"ACTS_IN","name":"Mrs. Fuddle","type":"Role","_key":"29016","_from":"20665","_to":"20706"} +{"$label":"ACTS_IN","name":"Mrs. Fuddle","type":"Role","_key":"29006","_from":"20665","_to":"20702"} +{"$label":"ACTS_IN","name":"Mrs. Fuddle","type":"Role","_key":"28929","_from":"20665","_to":"20670"} +{"$label":"ACTS_IN","name":"Mr. Little","type":"Role","_key":"29261","_from":"20667","_to":"20796"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29394","_from":"20669","_to":"20861"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29359","_from":"20669","_to":"20852"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29286","_from":"20669","_to":"20811"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29273","_from":"20669","_to":"20805"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29243","_from":"20669","_to":"20794"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29231","_from":"20669","_to":"20793"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29213","_from":"20669","_to":"20787"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29201","_from":"20669","_to":"20783"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29189","_from":"20669","_to":"20782"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29142","_from":"20669","_to":"20757"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29121","_from":"20669","_to":"20744"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29104","_from":"20669","_to":"20737"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29085","_from":"20669","_to":"20731"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29072","_from":"20669","_to":"20726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29061","_from":"20669","_to":"20721"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29051","_from":"20669","_to":"20717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29037","_from":"20669","_to":"20712"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29022","_from":"20669","_to":"20709"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29011","_from":"20669","_to":"20706"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"28995","_from":"20669","_to":"20702"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"28953","_from":"20669","_to":"20682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"28940","_from":"20669","_to":"20676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"28935","_from":"20669","_to":"20670"} +{"$label":"ACTS_IN","name":"Miss Ferguson","type":"Role","_key":"28933","_from":"20675","_to":"20670"} +{"$label":"ACTS_IN","name":"Miss White","type":"Role","_key":"28932","_from":"20674","_to":"20670"} +{"$label":"ACTS_IN","name":"Mr. Mason","type":"Role","_key":"28931","_from":"20673","_to":"20670"} +{"$label":"ACTS_IN","name":"Melinda Mason","type":"Role","_key":"28930","_from":"20672","_to":"20670"} +{"$label":"ACTS_IN","name":"Abner Cartwright","type":"Role","_key":"28927","_from":"20671","_to":"20670"} +{"$label":"ACTS_IN","name":"Mr. Holden","type":"Role","_key":"28947","_from":"20681","_to":"20676"} +{"$label":"ACTS_IN","name":"John Larkin","type":"Role","_key":"28946","_from":"20680","_to":"20676"} +{"$label":"ACTS_IN","name":"Mrs. Emily Dickerson","type":"Role","_key":"28945","_from":"20679","_to":"20676"} +{"$label":"ACTS_IN","name":"Matthew Dickerson","type":"Role","_key":"28944","_from":"20678","_to":"20676"} +{"$label":"ACTS_IN","name":"Harvey Morton","type":"Role","_key":"28943","_from":"20677","_to":"20676"} +{"$label":"ACTS_IN","name":"DIst. Attorney Farr","type":"Role","_key":"111219","_from":"20677","_to":"65677"} +{"$label":"ACTS_IN","name":"R.S. Kenyon","type":"Role","_key":"101237","_from":"20677","_to":"59623"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"28963","_from":"20687","_to":"20682"} +{"$label":"ACTS_IN","name":"Betty Lou Wood","type":"Role","_key":"28962","_from":"20686","_to":"20682"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"28961","_from":"20685","_to":"20682"} +{"$label":"ACTS_IN","name":"Freddie Turner","type":"Role","_key":"28960","_from":"20684","_to":"20682"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"28959","_from":"20683","_to":"20682"} +{"$label":"ACTS_IN","name":"Ollie","type":"Role","_key":"29109","_from":"20683","_to":"20737"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29089","_from":"20683","_to":"20731"} +{"$label":"ACTS_IN","name":"Mary Burns","type":"Role","_key":"114324","_from":"20686","_to":"67337"} +{"$label":"ACTS_IN","name":"Emil (voice)","type":"Role","_key":"28980","_from":"20695","_to":"20688"} +{"$label":"ACTS_IN","name":"Maggot (voice)","type":"Role","_key":"28978","_from":"20694","_to":"20688"} +{"$label":"ACTS_IN","name":"Mrs. Plum (voice)","type":"Role","_key":"28977","_from":"20693","_to":"20688"} +{"$label":"ACTS_IN","name":"Maudeline Everglot (voice)","type":"Role","_key":"28975","_from":"20692","_to":"20688"} +{"$label":"ACTS_IN","name":"Mayhew (voice)","type":"Role","_key":"28974","_from":"20691","_to":"20688"} +{"$label":"ACTS_IN","name":"Bonejangles (voice)","type":"Role","_key":"28971","_from":"20690","_to":"20688"} +{"$label":"DIRECTED","_key":"28965","_from":"20689","_to":"20688"} +{"$label":"ACTS_IN","name":"Jack Skellington (singing) \/ Barrel \/ Clown with the Tear away Face (voice)","type":"Role","_key":"54123","_from":"20690","_to":"34786"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"117092","_from":"20692","_to":"68900"} +{"$label":"ACTS_IN","name":"Ermintrude","type":"Role","_key":"109298","_from":"20692","_to":"64568"} +{"$label":"ACTS_IN","name":"Dame Olga","type":"Role","_key":"100288","_from":"20692","_to":"59140"} +{"$label":"ACTS_IN","name":"Shiela","type":"Role","_key":"97857","_from":"20692","_to":"57638"} +{"$label":"ACTS_IN","name":"Tante Zinke","type":"Role","_key":"63932","_from":"20692","_to":"39934"} +{"$label":"ACTS_IN","name":"Morgan Le Fey","type":"Role","_key":"42762","_from":"20692","_to":"28616"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113871","_from":"20693","_to":"67080"} +{"$label":"ACTS_IN","name":"Fairy Mary","type":"Role","_key":"93207","_from":"20693","_to":"54917"} +{"$label":"ACTS_IN","name":"Miss Irvine","type":"Role","_key":"61368","_from":"20693","_to":"38721"} +{"$label":"ACTS_IN","name":"LV","type":"Role","_key":"50136","_from":"20693","_to":"32785"} +{"$label":"ACTS_IN","name":"Babs","type":"Role","_key":"46666","_from":"20693","_to":"30817"} +{"$label":"DIRECTED","_key":"28985","_from":"20697","_to":"20696"} +{"$label":"DIRECTED","_key":"35829","_from":"20697","_to":"24328"} +{"$label":"DIRECTED","_key":"30631","_from":"20697","_to":"21513"} +{"$label":"DIRECTED","_key":"29469","_from":"20697","_to":"20898"} +{"$label":"ACTS_IN","name":"Beno\u00eete","type":"Role","_key":"28992","_from":"20701","_to":"20698"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"28991","_from":"20700","_to":"20698"} +{"$label":"DIRECTED","_key":"28986","_from":"20699","_to":"20698"} +{"$label":"DIRECTED","_key":"60714","_from":"20699","_to":"38342"} +{"$label":"ACTS_IN","name":"Chlo\u00e9","type":"Role","_key":"88119","_from":"20700","_to":"52295"} +{"$label":"ACTS_IN","name":"Franca Soldani","type":"Role","_key":"105731","_from":"20701","_to":"62239"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45572","_from":"20701","_to":"30163"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"29005","_from":"20705","_to":"20702"} +{"$label":"ACTS_IN","name":"Horatio Jones","type":"Role","_key":"29004","_from":"20704","_to":"20702"} +{"$label":"ACTS_IN","name":"Anna Vaughn","type":"Role","_key":"29002","_from":"20703","_to":"20702"} +{"$label":"ACTS_IN","name":"Theatre Manager","type":"Role","_key":"29019","_from":"20708","_to":"20706"} +{"$label":"ACTS_IN","name":"Brice","type":"Role","_key":"29018","_from":"20707","_to":"20706"} +{"$label":"ACTS_IN","name":"Grant","type":"Role","_key":"114211","_from":"20707","_to":"67273"} +{"$label":"ACTS_IN","name":"George Whiteside","type":"Role","_key":"29302","_from":"20707","_to":"20814"} +{"$label":"ACTS_IN","name":"Randolph Wheeler","type":"Role","_key":"29111","_from":"20707","_to":"20737"} +{"$label":"ACTS_IN","name":"Onkel Abner Henderson","type":"Role","_key":"29029","_from":"20711","_to":"20709"} +{"$label":"ACTS_IN","name":"Mr. Tucker","type":"Role","_key":"29028","_from":"20710","_to":"20709"} +{"$label":"ACTS_IN","name":"Boatman","type":"Role","_key":"121733","_from":"20710","_to":"71514"} +{"$label":"ACTS_IN","name":"Col. Bertram Grant","type":"Role","_key":"114323","_from":"20711","_to":"67337"} +{"$label":"ACTS_IN","name":"Dog Show Announcer","type":"Role","_key":"29045","_from":"20716","_to":"20712"} +{"$label":"ACTS_IN","name":"Cliff Peters","type":"Role","_key":"29043","_from":"20715","_to":"20712"} +{"$label":"ACTS_IN","name":"Waldo Pincus","type":"Role","_key":"29041","_from":"20714","_to":"20712"} +{"$label":"ACTS_IN","name":"Singers","type":"Role","_key":"29038","_from":"20713","_to":"20712"} +{"$label":"ACTS_IN","name":"Byers","type":"Role","_key":"115607","_from":"20714","_to":"68053"} +{"$label":"ACTS_IN","name":"Marty Greer","type":"Role","_key":"29395","_from":"20714","_to":"20861"} +{"$label":"ACTS_IN","name":"Sharkey the Loen Shark","type":"Role","_key":"29247","_from":"20714","_to":"20794"} +{"$label":"ACTS_IN","name":"Frank 'Dancer' Smith","type":"Role","_key":"119999","_from":"20715","_to":"70472"} +{"$label":"ACTS_IN","name":"Detective Outside Chinese Laundromat","type":"Role","_key":"70807","_from":"20715","_to":"43041"} +{"$label":"ACTS_IN","name":"Bill Cooper","type":"Role","_key":"29293","_from":"20715","_to":"20811"} +{"$label":"ACTS_IN","name":"Eddie Baxter","type":"Role","_key":"29145","_from":"20715","_to":"20757"} +{"$label":"ACTS_IN","name":"House detective","type":"Role","_key":"29887","_from":"20716","_to":"21135"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"29055","_from":"20720","_to":"20717"} +{"$label":"ACTS_IN","name":"Pvt. Herschel Smith","type":"Role","_key":"29052","_from":"20719","_to":"20717"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29050","_from":"20718","_to":"20717"} +{"$label":"ACTS_IN","name":"Hundef\u00e4nger","type":"Role","_key":"29222","_from":"20720","_to":"20787"} +{"$label":"ACTS_IN","name":"Manuel Rodrigueu","type":"Role","_key":"29067","_from":"20725","_to":"20721"} +{"$label":"ACTS_IN","name":"Hal Trent","type":"Role","_key":"29066","_from":"20724","_to":"20721"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"29065","_from":"20723","_to":"20721"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"29062","_from":"20722","_to":"20721"} +{"$label":"ACTS_IN","name":"L.L. Snookie Wadsworth","type":"Role","_key":"29079","_from":"20730","_to":"20726"} +{"$label":"ACTS_IN","name":"Rusty Bryant","type":"Role","_key":"29077","_from":"20729","_to":"20726"} +{"$label":"ACTS_IN","name":"Babs Conelly","type":"Role","_key":"29075","_from":"20728","_to":"20726"} +{"$label":"ACTS_IN","name":"Laura Wadsworth","type":"Role","_key":"29073","_from":"20727","_to":"20726"} +{"$label":"ACTS_IN","name":"Allison Bromley","type":"Role","_key":"117220","_from":"20728","_to":"68953"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"29095","_from":"20736","_to":"20731"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"29094","_from":"20735","_to":"20731"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"29092","_from":"20734","_to":"20731"} +{"$label":"ACTS_IN","name":"William Lawrence","type":"Role","_key":"29091","_from":"20733","_to":"20731"} +{"$label":"ACTS_IN","name":"Baby Cookie Bumstead","type":"Role","_key":"29084","_from":"20732","_to":"20731"} +{"$label":"ACTS_IN","name":"Emil Lorrison","type":"Role","_key":"115653","_from":"20733","_to":"68087"} +{"$label":"ACTS_IN","name":"Dr. Hanish","type":"Role","_key":"29892","_from":"20733","_to":"21135"} +{"$label":"ACTS_IN","name":"John D. Dickson","type":"Role","_key":"29291","_from":"20733","_to":"20811"} +{"$label":"ACTS_IN","name":"Jonathan Butler Sr.","type":"Role","_key":"29206","_from":"20733","_to":"20783"} +{"$label":"ACTS_IN","name":"Jerry Grant","type":"Role","_key":"29115","_from":"20743","_to":"20737"} +{"$label":"ACTS_IN","name":"Mr. Clark","type":"Role","_key":"29114","_from":"20742","_to":"20737"} +{"$label":"ACTS_IN","name":"Carpool rider","type":"Role","_key":"29113","_from":"20741","_to":"20737"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"29110","_from":"20740","_to":"20737"} +{"$label":"ACTS_IN","name":"Vicki Wheeler","type":"Role","_key":"29105","_from":"20739","_to":"20737"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29103","_from":"20738","_to":"20737"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29402","_from":"20738","_to":"20861"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29382","_from":"20738","_to":"20859"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29370","_from":"20738","_to":"20855"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29365","_from":"20738","_to":"20852"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29299","_from":"20738","_to":"20814"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29294","_from":"20738","_to":"20811"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29272","_from":"20738","_to":"20805"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29253","_from":"20738","_to":"20796"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29248","_from":"20738","_to":"20794"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29238","_from":"20738","_to":"20793"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29212","_from":"20738","_to":"20787"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29200","_from":"20738","_to":"20783"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29188","_from":"20738","_to":"20782"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29141","_from":"20738","_to":"20757"} +{"$label":"ACTS_IN","name":"Cookie Bumstead","type":"Role","_key":"29120","_from":"20738","_to":"20744"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"93540","_from":"20739","_to":"55078"} +{"$label":"ACTS_IN","name":"Mr. Conroy","type":"Role","_key":"29194","_from":"20742","_to":"20782"} +{"$label":"ACTS_IN","name":"Bromley","type":"Role","_key":"29127","_from":"20748","_to":"20744"} +{"$label":"ACTS_IN","name":"Collender Martin","type":"Role","_key":"29126","_from":"20747","_to":"20744"} +{"$label":"ACTS_IN","name":"Timothy Brewster","type":"Role","_key":"29123","_from":"20746","_to":"20744"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29122","_from":"20745","_to":"20744"} +{"$label":"ACTS_IN","name":"Liewellyn Simmons","type":"Role","_key":"29232","_from":"20746","_to":"20793"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"29136","_from":"20756","_to":"20749"} +{"$label":"ACTS_IN","name":"Annabel","type":"Role","_key":"29135","_from":"20755","_to":"20749"} +{"$label":"ACTS_IN","name":"Omi","type":"Role","_key":"29133","_from":"20754","_to":"20749"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"29132","_from":"20753","_to":"20749"} +{"$label":"ACTS_IN","name":"Heinz","type":"Role","_key":"29131","_from":"20752","_to":"20749"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"29130","_from":"20751","_to":"20749"} +{"$label":"DIRECTED","_key":"29129","_from":"20750","_to":"20749"} +{"$label":"DIRECTED","_key":"49261","_from":"20750","_to":"32258"} +{"$label":"ACTS_IN","name":"Malte","type":"Role","_key":"37129","_from":"20751","_to":"25155"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"55677","_from":"20753","_to":"35440"} +{"$label":"ACTS_IN","name":"Marit","type":"Role","_key":"50140","_from":"20753","_to":"32788"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"29152","_from":"20764","_to":"20757"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29151","_from":"20763","_to":"20757"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"29150","_from":"20762","_to":"20757"} +{"$label":"ACTS_IN","name":"Mr. Fuddle","type":"Role","_key":"29148","_from":"20761","_to":"20757"} +{"$label":"ACTS_IN","name":"Mrs. Laura Meredith","type":"Role","_key":"29147","_from":"20760","_to":"20757"} +{"$label":"ACTS_IN","name":"Rita Rogers","type":"Role","_key":"29143","_from":"20759","_to":"20757"} +{"$label":"DIRECTED","_key":"29137","_from":"20758","_to":"20757"} +{"$label":"DIRECTED","_key":"29282","_from":"20758","_to":"20811"} +{"$label":"DIRECTED","_key":"29268","_from":"20758","_to":"20805"} +{"$label":"DIRECTED","_key":"29249","_from":"20758","_to":"20796"} +{"$label":"DIRECTED","_key":"29239","_from":"20758","_to":"20794"} +{"$label":"DIRECTED","_key":"29227","_from":"20758","_to":"20793"} +{"$label":"DIRECTED","_key":"29208","_from":"20758","_to":"20787"} +{"$label":"DIRECTED","_key":"29196","_from":"20758","_to":"20783"} +{"$label":"DIRECTED","_key":"29184","_from":"20758","_to":"20782"} +{"$label":"ACTS_IN","name":"Donald Hall, Chief Engineer Ryan Airlines","type":"Role","_key":"117443","_from":"20761","_to":"69067"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29386","_from":"20763","_to":"20859"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29303","_from":"20763","_to":"20814"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29281","_from":"20763","_to":"20805"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29258","_from":"20763","_to":"20796"} +{"$label":"ACTS_IN","name":"Ollie Shaw","type":"Role","_key":"29218","_from":"20763","_to":"20787"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"29162","_from":"20770","_to":"20765"} +{"$label":"ACTS_IN","name":"Grenzbeamtin","type":"Role","_key":"29161","_from":"20769","_to":"20765"} +{"$label":"ACTS_IN","name":"Svens Mutter","type":"Role","_key":"29159","_from":"20768","_to":"20765"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"29157","_from":"20767","_to":"20765"} +{"$label":"ACTS_IN","name":"Willi Kolb","type":"Role","_key":"29154","_from":"20766","_to":"20765"} +{"$label":"ACTS_IN","name":"Theater Regisseur","type":"Role","_key":"61267","_from":"20766","_to":"38680"} +{"$label":"ACTS_IN","name":"Gerd Jonas","type":"Role","_key":"46685","_from":"20766","_to":"30826"} +{"$label":"ACTS_IN","name":"Albert Speer","type":"Role","_key":"42203","_from":"20766","_to":"28267"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"29170","_from":"20775","_to":"20772"} +{"$label":"ACTS_IN","name":"Captain Dahmane","type":"Role","_key":"29169","_from":"20774","_to":"20772"} +{"$label":"ACTS_IN","name":"Fanny Ferreira","type":"Role","_key":"29166","_from":"20773","_to":"20772"} +{"$label":"ACTS_IN","name":"Pia","type":"Role","_key":"100432","_from":"20773","_to":"59220"} +{"$label":"ACTS_IN","name":"Le vigile","type":"Role","_key":"95810","_from":"20774","_to":"56350"} +{"$label":"ACTS_IN","name":"Hugues Dumoulin","type":"Role","_key":"89677","_from":"20775","_to":"53081"} +{"$label":"ACTS_IN","name":"P\u00e8re Dominique","type":"Role","_key":"29180","_from":"20781","_to":"20776"} +{"$label":"ACTS_IN","name":"L'ermite borgne","type":"Role","_key":"29178","_from":"20780","_to":"20776"} +{"$label":"ACTS_IN","name":"J\u00e9sus","type":"Role","_key":"29177","_from":"20779","_to":"20776"} +{"$label":"ACTS_IN","name":"La femme de Philippe","type":"Role","_key":"29176","_from":"20778","_to":"20776"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"29175","_from":"20777","_to":"20776"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"72987","_from":"20777","_to":"43928"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33049","_from":"20778","_to":"22898"} +{"$label":"ACTS_IN","name":"Princesse de Lamballe","type":"Role","_key":"30218","_from":"20778","_to":"21284"} +{"$label":"ACTS_IN","name":"L.T. Giroux","type":"Role","_key":"55402","_from":"20779","_to":"35310"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"41562","_from":"20779","_to":"27909"} +{"$label":"ACTS_IN","name":"Costello","type":"Role","_key":"118000","_from":"20780","_to":"69361"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"107163","_from":"20780","_to":"63188"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96037","_from":"20780","_to":"56454"} +{"$label":"ACTS_IN","name":"La vedette masculine","type":"Role","_key":"50754","_from":"20780","_to":"33125"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"46946","_from":"20780","_to":"30961"} +{"$label":"ACTS_IN","name":"Marcel Burot","type":"Role","_key":"42774","_from":"20780","_to":"28621"} +{"$label":"ACTS_IN","name":"Intern","type":"Role","_key":"33327","_from":"20781","_to":"23089"} +{"$label":"ACTS_IN","name":"Mayor Richard Denby","type":"Role","_key":"29207","_from":"20786","_to":"20783"} +{"$label":"ACTS_IN","name":"Sgt. Betty Jane McDermott","type":"Role","_key":"29203","_from":"20785","_to":"20783"} +{"$label":"ACTS_IN","name":"Jonathan \" Johnny \" Butler","type":"Role","_key":"29202","_from":"20784","_to":"20783"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"29226","_from":"20792","_to":"20787"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"29224","_from":"20791","_to":"20787"} +{"$label":"ACTS_IN","name":"Simon Rutledge","type":"Role","_key":"29223","_from":"20790","_to":"20787"} +{"$label":"ACTS_IN","name":"Cassidy","type":"Role","_key":"29221","_from":"20789","_to":"20787"} +{"$label":"ACTS_IN","name":"Tommy Cooper","type":"Role","_key":"29219","_from":"20788","_to":"20787"} +{"$label":"ACTS_IN","name":"Sgt. Griffin","type":"Role","_key":"31874","_from":"20789","_to":"22236"} +{"$label":"ACTS_IN","name":"Harry Slack","type":"Role","_key":"29375","_from":"20791","_to":"20855"} +{"$label":"ACTS_IN","name":"Gloria Stafford","type":"Role","_key":"29244","_from":"20795","_to":"20794"} +{"$label":"ACTS_IN","name":"Lucille 'Lucky' Colner","type":"Role","_key":"115657","_from":"20795","_to":"68087"} +{"$label":"ACTS_IN","name":"Toby Clifton","type":"Role","_key":"29384","_from":"20795","_to":"20859"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"29267","_from":"20804","_to":"20796"} +{"$label":"ACTS_IN","name":"Theodore Payson","type":"Role","_key":"29266","_from":"20803","_to":"20796"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"29264","_from":"20802","_to":"20796"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"29263","_from":"20801","_to":"20796"} +{"$label":"ACTS_IN","name":"Slugger","type":"Role","_key":"29260","_from":"20800","_to":"20796"} +{"$label":"ACTS_IN","name":"Mr. Greenleaf","type":"Role","_key":"29259","_from":"20799","_to":"20796"} +{"$label":"ACTS_IN","name":"Miss Gray","type":"Role","_key":"29255","_from":"20798","_to":"20796"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29254","_from":"20797","_to":"20796"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29383","_from":"20797","_to":"20859"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29371","_from":"20797","_to":"20855"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29300","_from":"20797","_to":"20814"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"29399","_from":"20801","_to":"20861"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"29387","_from":"20801","_to":"20859"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"29306","_from":"20801","_to":"20814"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"29385","_from":"20804","_to":"20859"} +{"$label":"ACTS_IN","name":"Cynthia Thompson","type":"Role","_key":"29280","_from":"20810","_to":"20805"} +{"$label":"ACTS_IN","name":"Bea Mason","type":"Role","_key":"29279","_from":"20809","_to":"20805"} +{"$label":"ACTS_IN","name":"Paul Madison","type":"Role","_key":"29278","_from":"20808","_to":"20805"} +{"$label":"ACTS_IN","name":"Mrs. Breckenridge","type":"Role","_key":"29276","_from":"20807","_to":"20805"} +{"$label":"ACTS_IN","name":"Pete Brody","type":"Role","_key":"29275","_from":"20806","_to":"20805"} +{"$label":"ACTS_IN","name":"Big Joe","type":"Role","_key":"114007","_from":"20808","_to":"67136"} +{"$label":"ACTS_IN","name":"Sunny Rogers","type":"Role","_key":"96604","_from":"20809","_to":"56822"} +{"$label":"ACTS_IN","name":"Ted Scott","type":"Role","_key":"29289","_from":"20813","_to":"20811"} +{"$label":"ACTS_IN","name":"Alice Dickson","type":"Role","_key":"29288","_from":"20812","_to":"20811"} +{"$label":"DIRECTED","_key":"29295","_from":"20815","_to":"20814"} +{"$label":"DIRECTED","_key":"29390","_from":"20815","_to":"20861"} +{"$label":"DIRECTED","_key":"29378","_from":"20815","_to":"20859"} +{"$label":"DIRECTED","_key":"29366","_from":"20815","_to":"20855"} +{"$label":"DIRECTED","_key":"29355","_from":"20815","_to":"20852"} +{"$label":"ACTS_IN","name":"Charlie McFadden","type":"Role","_key":"29315","_from":"20820","_to":"20816"} +{"$label":"ACTS_IN","name":"April Brown","type":"Role","_key":"29313","_from":"20819","_to":"20816"} +{"$label":"ACTS_IN","name":"Brad Brown","type":"Role","_key":"29312","_from":"20818","_to":"20816"} +{"$label":"ACTS_IN","name":"Jay Brown","type":"Role","_key":"29311","_from":"20817","_to":"20816"} +{"$label":"ACTS_IN","name":"U.S. Marshal Joe Belle","type":"Role","_key":"40428","_from":"20817","_to":"27254"} +{"$label":"ACTS_IN","name":"'Birdie' Burns","type":"Role","_key":"103569","_from":"20818","_to":"60910"} +{"$label":"ACTS_IN","name":"Brad Brown","type":"Role","_key":"61086","_from":"20818","_to":"38616"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"31172","_from":"20819","_to":"21822"} +{"$label":"ACTS_IN","name":"Charlie McFadden","type":"Role","_key":"90045","_from":"20820","_to":"53260"} +{"$label":"ACTS_IN","name":"Charlie McFadden","type":"Role","_key":"61087","_from":"20820","_to":"38616"} +{"$label":"ACTS_IN","name":"Sgt. Peter Lowell","type":"Role","_key":"45911","_from":"20820","_to":"30362"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"29330","_from":"20829","_to":"20821"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"29328","_from":"20828","_to":"20821"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"29327","_from":"20827","_to":"20821"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"29326","_from":"20826","_to":"20821"} +{"$label":"ACTS_IN","name":"Alexandra Marshall","type":"Role","_key":"29325","_from":"20825","_to":"20821"} +{"$label":"ACTS_IN","name":"Morgan Farwell","type":"Role","_key":"29323","_from":"20824","_to":"20821"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"29322","_from":"20823","_to":"20821"} +{"$label":"DIRECTED","_key":"29318","_from":"20822","_to":"20821"} +{"$label":"DIRECTED","_key":"57147","_from":"20822","_to":"36269"} +{"$label":"DIRECTED","_key":"45398","_from":"20822","_to":"30097"} +{"$label":"ACTS_IN","name":"Rachel Purdy","type":"Role","_key":"116557","_from":"20823","_to":"68610"} +{"$label":"ACTS_IN","name":"Boutique Owner","type":"Role","_key":"97489","_from":"20823","_to":"57409"} +{"$label":"ACTS_IN","name":"Linda Lee","type":"Role","_key":"63182","_from":"20823","_to":"39629"} +{"$label":"ACTS_IN","name":"Jazz","type":"Role","_key":"54606","_from":"20823","_to":"34978"} +{"$label":"ACTS_IN","name":"Darian Smalls","type":"Role","_key":"52843","_from":"20823","_to":"34256"} +{"$label":"ACTS_IN","name":"Lt. Emily Lake","type":"Role","_key":"52561","_from":"20823","_to":"34164"} +{"$label":"ACTS_IN","name":"Mary Swanson","type":"Role","_key":"49964","_from":"20823","_to":"32706"} +{"$label":"ACTS_IN","name":"Cliff Lloyd","type":"Role","_key":"101198","_from":"20824","_to":"59608"} +{"$label":"ACTS_IN","name":"Riley Lawson","type":"Role","_key":"104815","_from":"20825","_to":"61674"} +{"$label":"ACTS_IN","name":"Alana","type":"Role","_key":"98708","_from":"20825","_to":"58173"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"60259","_from":"20825","_to":"38004"} +{"$label":"ACTS_IN","name":"Nicole Gaultier","type":"Role","_key":"53638","_from":"20825","_to":"34600"} +{"$label":"ACTS_IN","name":"Noleta Nethercott","type":"Role","_key":"118683","_from":"20826","_to":"69773"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"116331","_from":"20828","_to":"68477"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"111578","_from":"20828","_to":"65876"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"98921","_from":"20828","_to":"58284"} +{"$label":"ACTS_IN","name":"Kemper","type":"Role","_key":"53435","_from":"20828","_to":"34528"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"120186","_from":"20829","_to":"70585"} +{"$label":"ACTS_IN","name":"Heather Tate","type":"Role","_key":"116084","_from":"20829","_to":"68357"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"112258","_from":"20829","_to":"66291"} +{"$label":"ACTS_IN","name":"Dr. Caron","type":"Role","_key":"108702","_from":"20829","_to":"64246"} +{"$label":"ACTS_IN","name":"Bunny Yeager","type":"Role","_key":"104299","_from":"20829","_to":"61366"} +{"$label":"ACTS_IN","name":"Vikki Hiller","type":"Role","_key":"65244","_from":"20829","_to":"40504"} +{"$label":"DIRECTED","_key":"29340","_from":"20839","_to":"20830"} +{"$label":"ACTS_IN","name":"Cosimo","type":"Role","_key":"29339","_from":"20838","_to":"20830"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"29338","_from":"20837","_to":"20830"} +{"$label":"ACTS_IN","name":"Stefano","type":"Role","_key":"29337","_from":"20836","_to":"20830"} +{"$label":"ACTS_IN","name":"Gaetano","type":"Role","_key":"29336","_from":"20835","_to":"20830"} +{"$label":"ACTS_IN","name":"Vicari","type":"Role","_key":"29335","_from":"20834","_to":"20830"} +{"$label":"ACTS_IN","name":"Mimmo","type":"Role","_key":"29334","_from":"20833","_to":"20830"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"29333","_from":"20832","_to":"20830"} +{"$label":"ACTS_IN","name":"Saro Scordia","type":"Role","_key":"29332","_from":"20831","_to":"20830"} +{"$label":"ACTS_IN","name":"Daniele","type":"Role","_key":"115384","_from":"20831","_to":"67943"} +{"$label":"ACTS_IN","name":"Nicola Carati","type":"Role","_key":"71354","_from":"20831","_to":"43279"} +{"$label":"ACTS_IN","name":"Carlo Tommasi","type":"Role","_key":"71358","_from":"20836","_to":"43279"} +{"$label":"ACTS_IN","name":"Christoph","type":"Role","_key":"29348","_from":"20845","_to":"20840"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"29347","_from":"20844","_to":"20840"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"29346","_from":"20843","_to":"20840"} +{"$label":"ACTS_IN","name":"Janek","type":"Role","_key":"29343","_from":"20842","_to":"20840"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"29342","_from":"20841","_to":"20840"} +{"$label":"ACTS_IN","name":"Olda","type":"Role","_key":"110666","_from":"20843","_to":"65376"} +{"$label":"ACTS_IN","name":"Savio","type":"Role","_key":"29354","_from":"20851","_to":"20846"} +{"$label":"ACTS_IN","name":"Anis","type":"Role","_key":"29353","_from":"20850","_to":"20846"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"29352","_from":"20849","_to":"20846"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"29351","_from":"20848","_to":"20846"} +{"$label":"DIRECTED","_key":"29349","_from":"20847","_to":"20846"} +{"$label":"ACTS_IN","name":"Karlheinz","type":"Role","_key":"94866","_from":"20849","_to":"55857"} +{"$label":"ACTS_IN","name":"Louise Hutchins","type":"Role","_key":"29362","_from":"20854","_to":"20852"} +{"$label":"ACTS_IN","name":"J.B. Hutchins","type":"Role","_key":"29361","_from":"20853","_to":"20852"} +{"$label":"ACTS_IN","name":"Colonel Jefferson Randolph aka McKinley","type":"Role","_key":"121652","_from":"20853","_to":"71463"} +{"$label":"ACTS_IN","name":"Dr. Bruce Clayworth","type":"Role","_key":"101003","_from":"20853","_to":"59522"} +{"$label":"ACTS_IN","name":"The Mayor","type":"Role","_key":"70809","_from":"20853","_to":"43041"} +{"$label":"ACTS_IN","name":"Mr. Forsythe","type":"Role","_key":"29376","_from":"20858","_to":"20855"} +{"$label":"ACTS_IN","name":"Joe Dillon","type":"Role","_key":"29374","_from":"20857","_to":"20855"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"29373","_from":"20856","_to":"20855"} +{"$label":"ACTS_IN","name":"Commissioner Emerson","type":"Role","_key":"114008","_from":"20858","_to":"67136"} +{"$label":"ACTS_IN","name":"J.C. Dithers","type":"Role","_key":"29388","_from":"20860","_to":"20859"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"29400","_from":"20862","_to":"20861"} +{"$label":"ACTS_IN","name":"Pepper","type":"Role","_key":"114001","_from":"20862","_to":"67136"} +{"$label":"ACTS_IN","name":"Alec Baldwin (voice)","type":"Role","_key":"29409","_from":"20868","_to":"20863"} +{"$label":"ACTS_IN","name":"Sarah (voice)","type":"Role","_key":"29407","_from":"20867","_to":"20863"} +{"$label":"ACTS_IN","name":"Lisa (voice)","type":"Role","_key":"29406","_from":"20866","_to":"20863"} +{"$label":"ACTS_IN","name":"Ethan Hawke (voice)","type":"Role","_key":"29405","_from":"20865","_to":"20863"} +{"$label":"ACTS_IN","name":"Susan Saradon (voice)","type":"Role","_key":"29404","_from":"20864","_to":"20863"} +{"$label":"DIRECTED","_key":"29403","_from":"20864","_to":"20863"} +{"$label":"DIRECTED","_key":"109339","_from":"20864","_to":"64593"} +{"$label":"DIRECTED","_key":"109335","_from":"20864","_to":"64592"} +{"$label":"DIRECTED","_key":"106701","_from":"20864","_to":"62875"} +{"$label":"DIRECTED","_key":"54086","_from":"20864","_to":"34778"} +{"$label":"DIRECTED","_key":"50406","_from":"20864","_to":"32932"} +{"$label":"ACTS_IN","name":"Cartman (voice)","type":"Role","_key":"109337","_from":"20864","_to":"64593"} +{"$label":"ACTS_IN","name":"Kenny (voice)","type":"Role","_key":"109333","_from":"20864","_to":"64592"} +{"$label":"ACTS_IN","name":"Various characters","type":"Role","_key":"106696","_from":"20864","_to":"62875"} +{"$label":"ACTS_IN","name":"Joe Cooper","type":"Role","_key":"98110","_from":"20864","_to":"57766"} +{"$label":"ACTS_IN","name":"Hermaphrodite","type":"Role","_key":"98092","_from":"20864","_to":"57748"} +{"$label":"ACTS_IN","name":"Stanley 'Stan' Marsh \/ Eric Theodore Cartman \/ Mr. William L. Garrison \/ Counselor Mackey \/ Mr. Hankey \/ S.D. Kluger (Singer of the theme song) \/ Satan, the Dark Prince \/ Adolf Hitler \/And many more","type":"Role","_key":"93894","_from":"20864","_to":"55284"} +{"$label":"ACTS_IN","name":"Alferd Packer","type":"Role","_key":"92271","_from":"20864","_to":"54453"} +{"$label":"ACTS_IN","name":"Stan Marsh","type":"Role","_key":"54079","_from":"20864","_to":"34778"} +{"$label":"ACTS_IN","name":"Joe Young \/ Orgazmo","type":"Role","_key":"50407","_from":"20864","_to":"32932"} +{"$label":"DIRECTED","_key":"109340","_from":"20865","_to":"64593"} +{"$label":"DIRECTED","_key":"109336","_from":"20865","_to":"64592"} +{"$label":"ACTS_IN","name":"Jesus (voice)","type":"Role","_key":"109338","_from":"20865","_to":"64593"} +{"$label":"ACTS_IN","name":"Kyle Broflovski (voice)","type":"Role","_key":"109334","_from":"20865","_to":"64592"} +{"$label":"ACTS_IN","name":"Various characters","type":"Role","_key":"106697","_from":"20865","_to":"62875"} +{"$label":"ACTS_IN","name":"Doug Remer","type":"Role","_key":"98111","_from":"20865","_to":"57766"} +{"$label":"ACTS_IN","name":"Hermaphrodite","type":"Role","_key":"98093","_from":"20865","_to":"57748"} +{"$label":"ACTS_IN","name":"Kyle Broflovski \/ Kenneth 'Kenny' McCormick \/ Gerald Broflovski \/ And Many More (voice)","type":"Role","_key":"93895","_from":"20865","_to":"55284"} +{"$label":"ACTS_IN","name":"James Humphries","type":"Role","_key":"92277","_from":"20865","_to":"54453"} +{"$label":"ACTS_IN","name":"Kyle Broflovski","type":"Role","_key":"54080","_from":"20865","_to":"34778"} +{"$label":"ACTS_IN","name":"Dave the Lighting Guy","type":"Role","_key":"50409","_from":"20865","_to":"32932"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"119778","_from":"20866","_to":"70331"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"69487","_from":"20866","_to":"42452"} +{"$label":"ACTS_IN","name":"South African Reporter","type":"Role","_key":"94515","_from":"20867","_to":"55655"} +{"$label":"ACTS_IN","name":"Kif Kroker","type":"Role","_key":"103007","_from":"20868","_to":"60586"} +{"$label":"ACTS_IN","name":"Gus (voice)","type":"Role","_key":"102067","_from":"20868","_to":"60047"} +{"$label":"ACTS_IN","name":"Interrogator #2 \/ Mash \/ drunken bar patron \/ Dr. Vincent \"Vegas Vinnie\" Whiskers \/ Jack Deebs (super hero version) (voice)","type":"Role","_key":"99226","_from":"20868","_to":"58470"} +{"$label":"ACTS_IN","name":"White \/ Bavaro (voice)","type":"Role","_key":"93345","_from":"20868","_to":"54987"} +{"$label":"ACTS_IN","name":"Kif Kroker","type":"Role","_key":"91865","_from":"20868","_to":"54199"} +{"$label":"ACTS_IN","name":"Igg the Cow","type":"Role","_key":"57864","_from":"20868","_to":"36614"} +{"$label":"ACTS_IN","name":"Little Jane","type":"Role","_key":"29417","_from":"20873","_to":"20869"} +{"$label":"ACTS_IN","name":"Old Bill","type":"Role","_key":"29416","_from":"20872","_to":"20869"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"29415","_from":"20871","_to":"20869"} +{"$label":"ACTS_IN","name":"Jane Butterfield","type":"Role","_key":"29414","_from":"20870","_to":"20869"} +{"$label":"ACTS_IN","name":"Old Priest","type":"Role","_key":"67762","_from":"20872","_to":"41653"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"29425","_from":"20877","_to":"20874"} +{"$label":"ACTS_IN","name":"Carla Moebius","type":"Role","_key":"29422","_from":"20876","_to":"20874"} +{"$label":"DIRECTED","_key":"29420","_from":"20875","_to":"20874"} +{"$label":"DIRECTED","_key":"105337","_from":"20875","_to":"61982"} +{"$label":"ACTS_IN","name":"Arl\u00e8ne Robert","type":"Role","_key":"29446","_from":"20888","_to":"20878"} +{"$label":"ACTS_IN","name":"Jack Sleiter","type":"Role","_key":"29445","_from":"20887","_to":"20878"} +{"$label":"ACTS_IN","name":"la s\u00e9cretaire de Kerjean","type":"Role","_key":"29444","_from":"20886","_to":"20878"} +{"$label":"ACTS_IN","name":"Holstein","type":"Role","_key":"29443","_from":"20885","_to":"20878"} +{"$label":"ACTS_IN","name":"Jacques Beno\u00eet-Lambert","type":"Role","_key":"29441","_from":"20884","_to":"20878"} +{"$label":"ACTS_IN","name":"Fred Great","type":"Role","_key":"29440","_from":"20883","_to":"20878"} +{"$label":"ACTS_IN","name":"Gu\u00e9rande","type":"Role","_key":"29436","_from":"20882","_to":"20878"} +{"$label":"ACTS_IN","name":"Hartmann","type":"Role","_key":"29435","_from":"20881","_to":"20878"} +{"$label":"ACTS_IN","name":"Paul Kerjean","type":"Role","_key":"29428","_from":"20880","_to":"20878"} +{"$label":"DIRECTED","_key":"29427","_from":"20879","_to":"20878"} +{"$label":"DIRECTED","_key":"30310","_from":"20879","_to":"21319"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Perrin","type":"Role","_key":"65825","_from":"20880","_to":"40738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33581","_from":"20880","_to":"23204"} +{"$label":"ACTS_IN","name":"un volontaire","type":"Role","_key":"30730","_from":"20880","_to":"21545"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"30633","_from":"20880","_to":"21513"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"29941","_from":"20880","_to":"21159"} +{"$label":"ACTS_IN","name":"Pierrot","type":"Role","_key":"29471","_from":"20880","_to":"20898"} +{"$label":"ACTS_IN","name":"Bertozza","type":"Role","_key":"30706","_from":"20881","_to":"21541"} +{"$label":"ACTS_IN","name":"Noirngoutte","type":"Role","_key":"42841","_from":"20882","_to":"28642"} +{"$label":"ACTS_IN","name":"le doyen des juges","type":"Role","_key":"42086","_from":"20882","_to":"28196"} +{"$label":"ACTS_IN","name":"le roi rouge","type":"Role","_key":"37893","_from":"20882","_to":"25666"} +{"$label":"ACTS_IN","name":"Weiring","type":"Role","_key":"35120","_from":"20882","_to":"23944"} +{"$label":"ACTS_IN","name":"Gillenormand","type":"Role","_key":"31619","_from":"20882","_to":"22071"} +{"$label":"ACTS_IN","name":"Monseigneur Myriel","type":"Role","_key":"31540","_from":"20882","_to":"22027"} +{"$label":"ACTS_IN","name":"Le pharmacien","type":"Role","_key":"101272","_from":"20883","_to":"59631"} +{"$label":"ACTS_IN","name":"Le colonel","type":"Role","_key":"72738","_from":"20883","_to":"43823"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"34690","_from":"20883","_to":"23728"} +{"$label":"ACTS_IN","name":"Colonel Catelas","type":"Role","_key":"34401","_from":"20883","_to":"23576"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29542","_from":"20883","_to":"20930"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"29450","_from":"20891","_to":"20889"} +{"$label":"ACTS_IN","name":"X","type":"Role","_key":"29449","_from":"20890","_to":"20889"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33488","_from":"20890","_to":"23163"} +{"$label":"ACTS_IN","name":"le premier ministre","type":"Role","_key":"37895","_from":"20891","_to":"25666"} +{"$label":"ACTS_IN","name":"Matamore","type":"Role","_key":"33714","_from":"20891","_to":"23260"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33577","_from":"20891","_to":"23204"} +{"$label":"ACTS_IN","name":"Gaspard","type":"Role","_key":"33467","_from":"20891","_to":"23156"} +{"$label":"ACTS_IN","name":"Dranyi","type":"Role","_key":"29460","_from":"20891","_to":"20892"} +{"$label":"ACTS_IN","name":"Mrs. Bergh, Chaperon","type":"Role","_key":"29467","_from":"20897","_to":"20892"} +{"$label":"ACTS_IN","name":"Ivar Cramer, Light Henchman","type":"Role","_key":"29466","_from":"20896","_to":"20892"} +{"$label":"ACTS_IN","name":"Monique Souvir","type":"Role","_key":"29464","_from":"20895","_to":"20892"} +{"$label":"ACTS_IN","name":"Carlo Farelli","type":"Role","_key":"29461","_from":"20894","_to":"20892"} +{"$label":"ACTS_IN","name":"Denise Marceau","type":"Role","_key":"29458","_from":"20893","_to":"20892"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Stanislas","type":"Role","_key":"113641","_from":"20893","_to":"66968"} +{"$label":"ACTS_IN","name":"la reine rouge","type":"Role","_key":"37894","_from":"20893","_to":"25666"} +{"$label":"ACTS_IN","name":"Lena Eggersdorf","type":"Role","_key":"35116","_from":"20893","_to":"23944"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"34393","_from":"20893","_to":"23576"} +{"$label":"ACTS_IN","name":"Isabelle Lartois","type":"Role","_key":"34295","_from":"20893","_to":"23529"} +{"$label":"ACTS_IN","name":"Madame de Saint-M\u00e9ran","type":"Role","_key":"32560","_from":"20893","_to":"22629"} +{"$label":"ACTS_IN","name":"Teocrito","type":"Role","_key":"117151","_from":"20894","_to":"68924"} +{"$label":"ACTS_IN","name":"Io Speckler","type":"Role","_key":"111631","_from":"20894","_to":"65904"} +{"$label":"ACTS_IN","name":"Freddy Tomb","type":"Role","_key":"35330","_from":"20896","_to":"24060"} +{"$label":"ACTS_IN","name":"Lilly Harmon Lubinsky","type":"Role","_key":"101234","_from":"20897","_to":"59623"} +{"$label":"ACTS_IN","name":"Wilma Lentz","type":"Role","_key":"70586","_from":"20897","_to":"42941"} +{"$label":"ACTS_IN","name":"l'homme au motoscooter","type":"Role","_key":"29481","_from":"20904","_to":"20898"} +{"$label":"ACTS_IN","name":"la m\u00e8re de Jacqueline","type":"Role","_key":"29480","_from":"20903","_to":"20898"} +{"$label":"ACTS_IN","name":"le p\u00e8re de Jacqueline","type":"Role","_key":"29479","_from":"20902","_to":"20898"} +{"$label":"ACTS_IN","name":"la femme du m\u00e9d\u00e9cin","type":"Role","_key":"29478","_from":"20901","_to":"20898"} +{"$label":"ACTS_IN","name":"le m\u00e9d\u00e9cin","type":"Role","_key":"29477","_from":"20900","_to":"20898"} +{"$label":"ACTS_IN","name":"Jacques Pirolle","type":"Role","_key":"29475","_from":"20899","_to":"20898"} +{"$label":"ACTS_IN","name":"L\u00e9on Lajoie","type":"Role","_key":"38004","_from":"20899","_to":"25724"} +{"$label":"ACTS_IN","name":"Albert Schumacher","type":"Role","_key":"38003","_from":"20900","_to":"25724"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33769","_from":"20900","_to":"23279"} +{"$label":"ACTS_IN","name":"Victor Censier","type":"Role","_key":"29918","_from":"20904","_to":"21145"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"29846","_from":"20904","_to":"21113"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29760","_from":"20904","_to":"21066"} +{"$label":"ACTS_IN","name":"Louis XIV","type":"Role","_key":"29695","_from":"20904","_to":"21025"} +{"$label":"ACTS_IN","name":"Ronda","type":"Role","_key":"29490","_from":"20908","_to":"20905"} +{"$label":"ACTS_IN","name":"Vada Sultenfuss","type":"Role","_key":"29483","_from":"20907","_to":"20905"} +{"$label":"DIRECTED","_key":"29482","_from":"20906","_to":"20905"} +{"$label":"DIRECTED","_key":"100758","_from":"20906","_to":"59407"} +{"$label":"DIRECTED","_key":"69094","_from":"20906","_to":"42283"} +{"$label":"DIRECTED","_key":"65639","_from":"20906","_to":"40671"} +{"$label":"ACTS_IN","name":"Liza Weld","type":"Role","_key":"121284","_from":"20907","_to":"71254"} +{"$label":"ACTS_IN","name":"Lorraine","type":"Role","_key":"111281","_from":"20907","_to":"65718"} +{"$label":"ACTS_IN","name":"Vada Sultenfuss","type":"Role","_key":"69097","_from":"20907","_to":"42283"} +{"$label":"ACTS_IN","name":"General in wheelchair","type":"Role","_key":"29520","_from":"20916","_to":"20910"} +{"$label":"ACTS_IN","name":"Tupac","type":"Role","_key":"29519","_from":"20915","_to":"20910"} +{"$label":"ACTS_IN","name":"\"Sir Winston\"","type":"Role","_key":"29518","_from":"20914","_to":"20910"} +{"$label":"ACTS_IN","name":"Lebel","type":"Role","_key":"29516","_from":"20913","_to":"20910"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"29514","_from":"20912","_to":"20910"} +{"$label":"DIRECTED","_key":"29510","_from":"20911","_to":"20910"} +{"$label":"DIRECTED","_key":"120386","_from":"20911","_to":"70722"} +{"$label":"DIRECTED","_key":"113649","_from":"20911","_to":"66974"} +{"$label":"ACTS_IN","name":"Jacques Rivette de la Chasuble","type":"Role","_key":"37876","_from":"20911","_to":"25653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29540","_from":"20911","_to":"20930"} +{"$label":"ACTS_IN","name":"\u00c9mile","type":"Role","_key":"95715","_from":"20913","_to":"56295"} +{"$label":"ACTS_IN","name":"Vulpi","type":"Role","_key":"30707","_from":"20913","_to":"21541"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29545","_from":"20913","_to":"20930"} +{"$label":"ACTS_IN","name":"Miraculix (voice)","type":"Role","_key":"58231","_from":"20916","_to":"36830"} +{"$label":"ACTS_IN","name":"El Cura","type":"Role","_key":"29532","_from":"20923","_to":"20917"} +{"$label":"ACTS_IN","name":"Doctor Mart\u00edn","type":"Role","_key":"29529","_from":"20922","_to":"20917"} +{"$label":"ACTS_IN","name":"Madre de Ada","type":"Role","_key":"29527","_from":"20921","_to":"20917"} +{"$label":"ACTS_IN","name":"Ada, la ni\u00f1a","type":"Role","_key":"29526","_from":"20920","_to":"20917"} +{"$label":"ACTS_IN","name":"Juan Berm\u00fadez","type":"Role","_key":"29525","_from":"20919","_to":"20917"} +{"$label":"ACTS_IN","name":"Pablo Quintero","type":"Role","_key":"29522","_from":"20918","_to":"20917"} +{"$label":"ACTS_IN","name":"Cardenal Giuliano della Rovere","type":"Role","_key":"106438","_from":"20918","_to":"62703"} +{"$label":"ACTS_IN","name":"Federico","type":"Role","_key":"66310","_from":"20918","_to":"41023"} +{"$label":"ACTS_IN","name":"Comisario","type":"Role","_key":"47852","_from":"20918","_to":"31496"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Sirgado","type":"Role","_key":"32108","_from":"20918","_to":"22375"} +{"$label":"ACTS_IN","name":"Tarz\u00e1n","type":"Role","_key":"48540","_from":"20919","_to":"31846"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"64919","_from":"20920","_to":"40363"} +{"$label":"ACTS_IN","name":"Angela Vidal","type":"Role","_key":"49071","_from":"20920","_to":"32160"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"48565","_from":"20921","_to":"31865"} +{"$label":"ACTS_IN","name":"Diego Montes","type":"Role","_key":"47847","_from":"20922","_to":"31496"} +{"$label":"DIRECTED","_key":"29538","_from":"20929","_to":"20924"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29537","_from":"20928","_to":"20924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29536","_from":"20927","_to":"20924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29535","_from":"20926","_to":"20924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29534","_from":"20925","_to":"20924"} +{"$label":"DIRECTED","_key":"30642","_from":"20925","_to":"21518"} +{"$label":"DIRECTED","_key":"29579","_from":"20925","_to":"20945"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29544","_from":"20932","_to":"20930"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29541","_from":"20931","_to":"20930"} +{"$label":"ACTS_IN","name":"Timmie","type":"Role","_key":"29552","_from":"20937","_to":"20933"} +{"$label":"ACTS_IN","name":"Lasky","type":"Role","_key":"29551","_from":"20936","_to":"20933"} +{"$label":"ACTS_IN","name":"Goller","type":"Role","_key":"29550","_from":"20935","_to":"20933"} +{"$label":"DIRECTED","_key":"29546","_from":"20934","_to":"20933"} +{"$label":"ACTS_IN","name":"Hans W. Geissend\u00f6rfer","type":"Role","_key":"44394","_from":"20934","_to":"29572"} +{"$label":"DIRECTED","_key":"29564","_from":"20934","_to":"20940"} +{"$label":"DIRECTED","_key":"29554","_from":"20934","_to":"20938"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Schultze","type":"Role","_key":"43791","_from":"20935","_to":"29241"} +{"$label":"ACTS_IN","name":"Karl Manfred","type":"Role","_key":"39471","_from":"20935","_to":"26678"} +{"$label":"ACTS_IN","name":"Seeberg","type":"Role","_key":"38228","_from":"20936","_to":"25818"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"29560","_from":"20939","_to":"20938"} +{"$label":"ACTS_IN","name":"Mechthild Adler","type":"Role","_key":"42496","_from":"20939","_to":"28455"} +{"$label":"ACTS_IN","name":"Julia Nebel","type":"Role","_key":"41981","_from":"20939","_to":"28132"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"34464","_from":"20939","_to":"23601"} +{"$label":"ACTS_IN","name":"Frl. Marusja","type":"Role","_key":"29573","_from":"20944","_to":"20940"} +{"$label":"ACTS_IN","name":"Frau St\u00f6hr","type":"Role","_key":"29572","_from":"20943","_to":"20940"} +{"$label":"ACTS_IN","name":"Joachim Ziem\u00dfen","type":"Role","_key":"29571","_from":"20942","_to":"20940"} +{"$label":"ACTS_IN","name":"Hans Castorp","type":"Role","_key":"29567","_from":"20941","_to":"20940"} +{"$label":"ACTS_IN","name":"Vinzenz","type":"Role","_key":"43100","_from":"20941","_to":"28790"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"42860","_from":"20942","_to":"28655"} +{"$label":"ACTS_IN","name":"Erika Wallmann","type":"Role","_key":"41997","_from":"20944","_to":"28139"} +{"$label":"ACTS_IN","name":"le clochard","type":"Role","_key":"29593","_from":"20950","_to":"20945"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"29592","_from":"20949","_to":"20945"} +{"$label":"ACTS_IN","name":"Ginette Lalatte","type":"Role","_key":"29589","_from":"20948","_to":"20945"} +{"$label":"ACTS_IN","name":"Alberto Sopranelli","type":"Role","_key":"29588","_from":"20947","_to":"20945"} +{"$label":"ACTS_IN","name":"Miss Pamela Pendleton-Pumkin","type":"Role","_key":"29584","_from":"20946","_to":"20945"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix (voice)","type":"Role","_key":"71124","_from":"20947","_to":"43173"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix (voice)","type":"Role","_key":"67542","_from":"20947","_to":"41586"} +{"$label":"ACTS_IN","name":"Asterix (voice)","type":"Role","_key":"58229","_from":"20947","_to":"36830"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix","type":"Role","_key":"55224","_from":"20947","_to":"35231"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix","type":"Role","_key":"53505","_from":"20947","_to":"34548"} +{"$label":"ACTS_IN","name":"Ast\u00e9rix (voice)","type":"Role","_key":"53084","_from":"20947","_to":"34360"} +{"$label":"ACTS_IN","name":"Asterix (voice)","type":"Role","_key":"51177","_from":"20947","_to":"33381"} +{"$label":"ACTS_IN","name":"Roland Fevereau","type":"Role","_key":"30651","_from":"20947","_to":"21518"} +{"$label":"ACTS_IN","name":"Madame Graindorge","type":"Role","_key":"96106","_from":"20948","_to":"56487"} +{"$label":"ACTS_IN","name":"Titine","type":"Role","_key":"46049","_from":"20948","_to":"30425"} +{"$label":"ACTS_IN","name":"Mme Pinelli","type":"Role","_key":"30618","_from":"20948","_to":"21508"} +{"$label":"DIRECTED","_key":"29594","_from":"20952","_to":"20951"} +{"$label":"DIRECTED","_key":"67116","_from":"20952","_to":"41420"} +{"$label":"DIRECTED","_key":"53114","_from":"20952","_to":"34364"} +{"$label":"DIRECTED","_key":"39619","_from":"20952","_to":"26781"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"29605","_from":"20956","_to":"20953"} +{"$label":"ACTS_IN","name":"Ohashi","type":"Role","_key":"29604","_from":"20955","_to":"20953"} +{"$label":"ACTS_IN","name":"Sato","type":"Role","_key":"29603","_from":"20954","_to":"20953"} +{"$label":"ACTS_IN","name":"Horigome Taicho","type":"Role","_key":"114268","_from":"20955","_to":"67298"} +{"$label":"ACTS_IN","name":"Nankou-Bou Tenkai","type":"Role","_key":"40131","_from":"20955","_to":"27084"} +{"$label":"ACTS_IN","name":"FBI Director James Womack","type":"Role","_key":"56949","_from":"20956","_to":"36143"} +{"$label":"ACTS_IN","name":"Chief Al Travis","type":"Role","_key":"55163","_from":"20956","_to":"35201"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"50671","_from":"20956","_to":"33080"} +{"$label":"ACTS_IN","name":"Iliych","type":"Role","_key":"29619","_from":"20969","_to":"20957"} +{"$label":"ACTS_IN","name":"Lieutenant Borya","type":"Role","_key":"29618","_from":"20968","_to":"20957"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"29617","_from":"20967","_to":"20957"} +{"$label":"ACTS_IN","name":"Betective","type":"Role","_key":"29616","_from":"20966","_to":"20957"} +{"$label":"ACTS_IN","name":"Boeing","type":"Role","_key":"29615","_from":"20965","_to":"20957"} +{"$label":"ACTS_IN","name":"Ratso","type":"Role","_key":"29614","_from":"20964","_to":"20957"} +{"$label":"ACTS_IN","name":"Pisser","type":"Role","_key":"29613","_from":"20963","_to":"20957"} +{"$label":"ACTS_IN","name":"Fingers","type":"Role","_key":"29612","_from":"20962","_to":"20957"} +{"$label":"ACTS_IN","name":"Skag","type":"Role","_key":"29611","_from":"20961","_to":"20957"} +{"$label":"ACTS_IN","name":"Ash","type":"Role","_key":"29610","_from":"20960","_to":"20957"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"29609","_from":"20959","_to":"20957"} +{"$label":"ACTS_IN","name":"Bones","type":"Role","_key":"29608","_from":"20958","_to":"20957"} +{"$label":"ACTS_IN","name":"\u043a\u043e\u043c\u0430\u043d\u0434\u0438\u0440 \u043f\u043e\u043b\u043a\u0430 \u0432 \u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d\u0435","type":"Role","_key":"98509","_from":"20969","_to":"58041"} +{"$label":"ACTS_IN","name":"Major Steele","type":"Role","_key":"29629","_from":"20976","_to":"20970"} +{"$label":"ACTS_IN","name":"Bridget Bond","type":"Role","_key":"29626","_from":"20975","_to":"20970"} +{"$label":"ACTS_IN","name":"Bernadette Devlin","type":"Role","_key":"29625","_from":"20974","_to":"20970"} +{"$label":"ACTS_IN","name":"Eamonn McCann","type":"Role","_key":"29624","_from":"20973","_to":"20970"} +{"$label":"ACTS_IN","name":"Kevin McCorry","type":"Role","_key":"29623","_from":"20972","_to":"20970"} +{"$label":"ACTS_IN","name":"Ivan Cooper","type":"Role","_key":"29622","_from":"20971","_to":"20970"} +{"$label":"ACTS_IN","name":"Joe Griffin","type":"Role","_key":"109970","_from":"20971","_to":"64978"} +{"$label":"ACTS_IN","name":"Gregg","type":"Role","_key":"102414","_from":"20971","_to":"60262"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"94158","_from":"20971","_to":"55443"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"37190","_from":"20973","_to":"25186"} +{"$label":"ACTS_IN","name":"Rebellenf\u00fchrer","type":"Role","_key":"50712","_from":"20976","_to":"33102"} +{"$label":"DIRECTED","_key":"29636","_from":"20978","_to":"20977"} +{"$label":"DIRECTED","_key":"117584","_from":"20978","_to":"69128"} +{"$label":"DIRECTED","_key":"117246","_from":"20978","_to":"68965"} +{"$label":"DIRECTED","_key":"117050","_from":"20978","_to":"68884"} +{"$label":"DIRECTED","_key":"117019","_from":"20978","_to":"68869"} +{"$label":"DIRECTED","_key":"114041","_from":"20978","_to":"67155"} +{"$label":"DIRECTED","_key":"113479","_from":"20978","_to":"66860"} +{"$label":"DIRECTED","_key":"103307","_from":"20978","_to":"60775"} +{"$label":"DIRECTED","_key":"91252","_from":"20978","_to":"53804"} +{"$label":"DIRECTED","_key":"62081","_from":"20978","_to":"39097"} +{"$label":"DIRECTED","_key":"52298","_from":"20978","_to":"34046"} +{"$label":"ACTS_IN","name":"Li Kwok Bon","type":"Role","_key":"114040","_from":"20978","_to":"67155"} +{"$label":"ACTS_IN","name":"Lu Chen gang member","type":"Role","_key":"109108","_from":"20978","_to":"64466"} +{"$label":"ACTS_IN","name":"Alexander Bumstead ( Voice )","type":"Role","_key":"29646","_from":"20985","_to":"20979"} +{"$label":"ACTS_IN","name":"Tootsie Woodley","type":"Role","_key":"29644","_from":"20984","_to":"20979"} +{"$label":"ACTS_IN","name":"Cookie Bumstead ( Voice )","type":"Role","_key":"29642","_from":"20983","_to":"20979"} +{"$label":"ACTS_IN","name":"Daisy the Dog ( Voice )","type":"Role","_key":"29641","_from":"20982","_to":"20979"} +{"$label":"ACTS_IN","name":"Blondie Bumstead ( Voice )","type":"Role","_key":"29638","_from":"20981","_to":"20979"} +{"$label":"DIRECTED","_key":"29637","_from":"20980","_to":"20979"} +{"$label":"ACTS_IN","name":"Pembrook Feeney","type":"Role","_key":"119416","_from":"20981","_to":"70159"} +{"$label":"ACTS_IN","name":"Tony Malone","type":"Role","_key":"101914","_from":"20985","_to":"59980"} +{"$label":"ACTS_IN","name":"Tony Malone","type":"Role","_key":"101910","_from":"20985","_to":"59978"} +{"$label":"ACTS_IN","name":"Ma Callahan","type":"Role","_key":"29657","_from":"20994","_to":"20986"} +{"$label":"ACTS_IN","name":"Ma McClune","type":"Role","_key":"29656","_from":"20993","_to":"20986"} +{"$label":"ACTS_IN","name":"Murchenson","type":"Role","_key":"29655","_from":"20992","_to":"20986"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"29654","_from":"20991","_to":"20986"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"29651","_from":"20990","_to":"20986"} +{"$label":"ACTS_IN","name":"Lurline Cavanaugh","type":"Role","_key":"29650","_from":"20989","_to":"20986"} +{"$label":"ACTS_IN","name":"Blondie McClune","type":"Role","_key":"29648","_from":"20988","_to":"20986"} +{"$label":"DIRECTED","_key":"29647","_from":"20987","_to":"20986"} +{"$label":"DIRECTED","_key":"119045","_from":"20987","_to":"69977"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"95833","_from":"20990","_to":"56360"} +{"$label":"ACTS_IN","name":"Smiler Grogan","type":"Role","_key":"70831","_from":"20990","_to":"43041"} +{"$label":"ACTS_IN","name":"Jannes","type":"Role","_key":"44962","_from":"20992","_to":"29886"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"29672","_from":"21006","_to":"20995"} +{"$label":"ACTS_IN","name":"Max Wagner","type":"Role","_key":"29671","_from":"21005","_to":"20995"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"29670","_from":"21004","_to":"20995"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"29669","_from":"21003","_to":"20995"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"29667","_from":"21002","_to":"20995"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"29666","_from":"21001","_to":"20995"} +{"$label":"ACTS_IN","name":"Gladys","type":"Role","_key":"29665","_from":"21000","_to":"20995"} +{"$label":"ACTS_IN","name":"Scannel","type":"Role","_key":"29664","_from":"20999","_to":"20995"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"29662","_from":"20998","_to":"20995"} +{"$label":"DIRECTED","_key":"29660","_from":"20997","_to":"20995"} +{"$label":"DIRECTED","_key":"29659","_from":"20996","_to":"20995"} +{"$label":"ACTS_IN","name":"Narrator for 'The Cold-Blooded Penguin' \/ Professor Holloway","type":"Role","_key":"106452","_from":"21003","_to":"62711"} +{"$label":"ACTS_IN","name":"Winnie the Pooh (Voice)","type":"Role","_key":"96079","_from":"21003","_to":"56475"} +{"$label":"ACTS_IN","name":"Fire Chief","type":"Role","_key":"70819","_from":"21003","_to":"43041"} +{"$label":"ACTS_IN","name":"Storch","type":"Role","_key":"69395","_from":"21003","_to":"42422"} +{"$label":"ACTS_IN","name":"Roquefort","type":"Role","_key":"60856","_from":"21003","_to":"38442"} +{"$label":"ACTS_IN","name":"Kaa (voice)","type":"Role","_key":"53138","_from":"21003","_to":"34379"} +{"$label":"ACTS_IN","name":"Elsa \u00d6hman","type":"Role","_key":"29681","_from":"21016","_to":"21007"} +{"$label":"ACTS_IN","name":"Ella \u00d6hman","type":"Role","_key":"29680","_from":"21015","_to":"21007"} +{"$label":"ACTS_IN","name":"Tage Wendel","type":"Role","_key":"29679","_from":"21014","_to":"21007"} +{"$label":"ACTS_IN","name":"Carlsson","type":"Role","_key":"29678","_from":"21013","_to":"21007"} +{"$label":"ACTS_IN","name":"Stickan Berglund","type":"Role","_key":"29677","_from":"21012","_to":"21007"} +{"$label":"ACTS_IN","name":"Kerstin Carve","type":"Role","_key":"29676","_from":"21011","_to":"21007"} +{"$label":"ACTS_IN","name":"Bananen","type":"Role","_key":"29675","_from":"21010","_to":"21007"} +{"$label":"ACTS_IN","name":"Biffen","type":"Role","_key":"29674","_from":"21009","_to":"21007"} +{"$label":"DIRECTED","_key":"29673","_from":"21008","_to":"21007"} +{"$label":"ACTS_IN","name":"Biffen","type":"Role","_key":"29687","_from":"21009","_to":"21017"} +{"$label":"ACTS_IN","name":"Bananen","type":"Role","_key":"29690","_from":"21010","_to":"21017"} +{"$label":"ACTS_IN","name":"Georg Hector","type":"Role","_key":"29689","_from":"21012","_to":"21017"} +{"$label":"ACTS_IN","name":"Anita Becker","type":"Role","_key":"29691","_from":"21024","_to":"21017"} +{"$label":"ACTS_IN","name":"Bojan","type":"Role","_key":"29688","_from":"21023","_to":"21017"} +{"$label":"ACTS_IN","name":"Lou-Lou Andersson","type":"Role","_key":"29686","_from":"21022","_to":"21017"} +{"$label":"ACTS_IN","name":"Rich horse buyer","type":"Role","_key":"29685","_from":"21021","_to":"21017"} +{"$label":"ACTS_IN","name":"Andersson","type":"Role","_key":"29684","_from":"21020","_to":"21017"} +{"$label":"ACTS_IN","name":"Auctionist","type":"Role","_key":"29683","_from":"21019","_to":"21017"} +{"$label":"DIRECTED","_key":"29682","_from":"21018","_to":"21017"} +{"$label":"ACTS_IN","name":"Mme de Lamoignon","type":"Role","_key":"29702","_from":"21033","_to":"21025"} +{"$label":"ACTS_IN","name":"M. de Lamoignon","type":"Role","_key":"29701","_from":"21032","_to":"21025"} +{"$label":"ACTS_IN","name":"Marquis de Vardes","type":"Role","_key":"29700","_from":"21031","_to":"21025"} +{"$label":"ACTS_IN","name":"Prince de Cond\u00e9","type":"Role","_key":"29699","_from":"21030","_to":"21025"} +{"$label":"ACTS_IN","name":"Baron de Fargues","type":"Role","_key":"29698","_from":"21029","_to":"21025"} +{"$label":"ACTS_IN","name":"Comte Lauzun","type":"Role","_key":"29697","_from":"21028","_to":"21025"} +{"$label":"ACTS_IN","name":"Anne d'Autriche","type":"Role","_key":"29694","_from":"21027","_to":"21025"} +{"$label":"DIRECTED","_key":"29692","_from":"21026","_to":"21025"} +{"$label":"ACTS_IN","name":"inspecteur de police","type":"Role","_key":"34416","_from":"21031","_to":"23581"} +{"$label":"ACTS_IN","name":"la soeur de Gis\u00e8le","type":"Role","_key":"34297","_from":"21033","_to":"23529"} +{"$label":"DIRECTED","_key":"29726","_from":"21044","_to":"21034"} +{"$label":"ACTS_IN","name":"Mr. T","type":"Role","_key":"29725","_from":"21043","_to":"21034"} +{"$label":"ACTS_IN","name":"Young Kristina Jung","type":"Role","_key":"29723","_from":"21042","_to":"21034"} +{"$label":"ACTS_IN","name":"Inez","type":"Role","_key":"29722","_from":"21041","_to":"21034"} +{"$label":"ACTS_IN","name":"Rada","type":"Role","_key":"29721","_from":"21040","_to":"21034"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"29720","_from":"21039","_to":"21034"} +{"$label":"ACTS_IN","name":"Sanchez","type":"Role","_key":"29718","_from":"21038","_to":"21034"} +{"$label":"ACTS_IN","name":"Cesar Toban","type":"Role","_key":"29717","_from":"21037","_to":"21034"} +{"$label":"ACTS_IN","name":"Alessandro","type":"Role","_key":"29716","_from":"21036","_to":"21034"} +{"$label":"ACTS_IN","name":"Leon Minghella","type":"Role","_key":"29713","_from":"21035","_to":"21034"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"119333","_from":"21035","_to":"70114"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"113349","_from":"21035","_to":"66772"} +{"$label":"ACTS_IN","name":"Brucker","type":"Role","_key":"46905","_from":"21035","_to":"30925"} +{"$label":"ACTS_IN","name":"Sergeant Max Pyro","type":"Role","_key":"31667","_from":"21035","_to":"22099"} +{"$label":"ACTS_IN","name":"Dr. Sebastian","type":"Role","_key":"119238","_from":"21038","_to":"70057"} +{"$label":"ACTS_IN","name":"Ajis-Aka","type":"Role","_key":"59201","_from":"21038","_to":"37387"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"36380","_from":"21038","_to":"24671"} +{"$label":"ACTS_IN","name":"Anita Pallenberg","type":"Role","_key":"113814","_from":"21039","_to":"67050"} +{"$label":"ACTS_IN","name":"Whirlygirl","type":"Role","_key":"111606","_from":"21039","_to":"65893"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"65228","_from":"21039","_to":"40500"} +{"$label":"ACTS_IN","name":"Kathy Pogue","type":"Role","_key":"39840","_from":"21039","_to":"26919"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"31284","_from":"21039","_to":"21881"} +{"$label":"ACTS_IN","name":"Louisa Musgrove","type":"Role","_key":"110904","_from":"21042","_to":"65506"} +{"$label":"ACTS_IN","name":"Andi","type":"Role","_key":"103532","_from":"21042","_to":"60904"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"98951","_from":"21042","_to":"58296"} +{"$label":"ACTS_IN","name":"Nancy Drew","type":"Role","_key":"98250","_from":"21042","_to":"57880"} +{"$label":"ACTS_IN","name":"Poppy","type":"Role","_key":"97889","_from":"21042","_to":"57658"} +{"$label":"DIRECTED","_key":"66398","_from":"21044","_to":"41064"} +{"$label":"DIRECTED","_key":"52839","_from":"21044","_to":"34256"} +{"$label":"DIRECTED","_key":"43890","_from":"21044","_to":"29297"} +{"$label":"DIRECTED","_key":"29735","_from":"21052","_to":"21045"} +{"$label":"DIRECTED","_key":"29734","_from":"21051","_to":"21045"} +{"$label":"ACTS_IN","name":"Oom Lambertus","type":"Role","_key":"29731","_from":"21050","_to":"21045"} +{"$label":"ACTS_IN","name":"Notaris","type":"Role","_key":"29730","_from":"21049","_to":"21045"} +{"$label":"ACTS_IN","name":"Heleen Kleingeld","type":"Role","_key":"29729","_from":"21048","_to":"21045"} +{"$label":"ACTS_IN","name":"Geesje Wieringa","type":"Role","_key":"29728","_from":"21047","_to":"21045"} +{"$label":"ACTS_IN","name":"Victor Dreissen","type":"Role","_key":"29727","_from":"21046","_to":"21045"} +{"$label":"ACTS_IN","name":"prostitute","type":"Role","_key":"40238","_from":"21048","_to":"27143"} +{"$label":"ACTS_IN","name":"Moeder Irma","type":"Role","_key":"106006","_from":"21049","_to":"62412"} +{"$label":"ACTS_IN","name":"Ma Flodder","type":"Role","_key":"67772","_from":"21049","_to":"41664"} +{"$label":"ACTS_IN","name":"Ma Flodder","type":"Role","_key":"64153","_from":"21049","_to":"40034"} +{"$label":"ACTS_IN","name":"Ma Flodder","type":"Role","_key":"63057","_from":"21049","_to":"39569"} +{"$label":"ACTS_IN","name":"Painter","type":"Role","_key":"40230","_from":"21050","_to":"27143"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29746","_from":"21063","_to":"21054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29745","_from":"21062","_to":"21054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29744","_from":"21061","_to":"21054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29743","_from":"21060","_to":"21054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29742","_from":"21059","_to":"21054"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29741","_from":"21058","_to":"21054"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"29740","_from":"21057","_to":"21054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"29739","_from":"21056","_to":"21054"} +{"$label":"DIRECTED","_key":"29738","_from":"21055","_to":"21054"} +{"$label":"ACTS_IN","name":"Senator Rutledge","type":"Role","_key":"29753","_from":"21065","_to":"21064"} +{"$label":"ACTS_IN","name":"Guillaume, fils de Pierre","type":"Role","_key":"29765","_from":"21071","_to":"21066"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29763","_from":"21070","_to":"21066"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"29761","_from":"21069","_to":"21066"} +{"$label":"ACTS_IN","name":"le p\u00e8re de Pierre","type":"Role","_key":"29758","_from":"21068","_to":"21066"} +{"$label":"DIRECTED","_key":"29754","_from":"21067","_to":"21066"} +{"$label":"ACTS_IN","name":"P\u00e8re L\u00e9on","type":"Role","_key":"88453","_from":"21068","_to":"52428"} +{"$label":"ACTS_IN","name":"le commissaire de Marseille","type":"Role","_key":"34048","_from":"21068","_to":"23410"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71433","_from":"21069","_to":"43308"} +{"$label":"ACTS_IN","name":"Le Receleur","type":"Role","_key":"71345","_from":"21070","_to":"43272"} +{"$label":"ACTS_IN","name":"Le P\u00e8re Cl\u00e9ment","type":"Role","_key":"47867","_from":"21070","_to":"31503"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"42082","_from":"21070","_to":"28196"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"33949","_from":"21070","_to":"23371"} +{"$label":"ACTS_IN","name":"Gautrais","type":"Role","_key":"32082","_from":"21070","_to":"22350"} +{"$label":"ACTS_IN","name":"Public Prosecutor","type":"Role","_key":"30727","_from":"21070","_to":"21545"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"115916","_from":"21071","_to":"68242"} +{"$label":"ACTS_IN","name":"Eric (voice)","type":"Role","_key":"107395","_from":"21071","_to":"63342"} +{"$label":"ACTS_IN","name":"Damien","type":"Role","_key":"51569","_from":"21071","_to":"33649"} +{"$label":"ACTS_IN","name":"Edmond Dant\u00e8s jeune","type":"Role","_key":"32561","_from":"21071","_to":"22629"} +{"$label":"ACTS_IN","name":"Father Callaway","type":"Role","_key":"29779","_from":"21076","_to":"21072"} +{"$label":"ACTS_IN","name":"Tenement Murderer","type":"Role","_key":"29778","_from":"21075","_to":"21072"} +{"$label":"ACTS_IN","name":"Calvino","type":"Role","_key":"29775","_from":"21074","_to":"21072"} +{"$label":"ACTS_IN","name":"Jack Kelly","type":"Role","_key":"29773","_from":"21073","_to":"21072"} +{"$label":"ACTS_IN","name":"Judge Biederman","type":"Role","_key":"57011","_from":"21073","_to":"36167"} +{"$label":"ACTS_IN","name":"Shep Campbell","type":"Role","_key":"29788","_from":"21080","_to":"21077"} +{"$label":"ACTS_IN","name":"Maureen Grube","type":"Role","_key":"29785","_from":"21079","_to":"21077"} +{"$label":"ACTS_IN","name":"Jennifer Wheeler","type":"Role","_key":"29784","_from":"21078","_to":"21077"} +{"$label":"ACTS_IN","name":"Young Leslie","type":"Role","_key":"110246","_from":"21078","_to":"65163"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"66575","_from":"21078","_to":"41149"} +{"$label":"ACTS_IN","name":"Gal Employee","type":"Role","_key":"95912","_from":"21079","_to":"56401"} +{"$label":"ACTS_IN","name":"Gretta Alder","type":"Role","_key":"89314","_from":"21079","_to":"52869"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"41950","_from":"21079","_to":"28107"} +{"$label":"ACTS_IN","name":"PointCorp Insider","type":"Role","_key":"110780","_from":"21080","_to":"65435"} +{"$label":"ACTS_IN","name":"Gregg Beam","type":"Role","_key":"65628","_from":"21080","_to":"40670"} +{"$label":"ACTS_IN","name":"Treville","type":"Role","_key":"29805","_from":"21091","_to":"21082"} +{"$label":"ACTS_IN","name":"Bonacieux","type":"Role","_key":"29804","_from":"21090","_to":"21082"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"29802","_from":"21089","_to":"21082"} +{"$label":"ACTS_IN","name":"Richelieu","type":"Role","_key":"29800","_from":"21088","_to":"21082"} +{"$label":"ACTS_IN","name":"Louis XIII","type":"Role","_key":"29799","_from":"21087","_to":"21082"} +{"$label":"ACTS_IN","name":"Rochefort","type":"Role","_key":"29798","_from":"21086","_to":"21082"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"29795","_from":"21085","_to":"21082"} +{"$label":"ACTS_IN","name":"Constance Bonacieux","type":"Role","_key":"29793","_from":"21084","_to":"21082"} +{"$label":"DIRECTED","_key":"29790","_from":"21083","_to":"21082"} +{"$label":"ACTS_IN","name":"Elisabeth Furst","type":"Role","_key":"35811","_from":"21084","_to":"24317"} +{"$label":"ACTS_IN","name":"Lucie Desgrez","type":"Role","_key":"35797","_from":"21084","_to":"24312"} +{"$label":"ACTS_IN","name":"Jeanne-Marie","type":"Role","_key":"34884","_from":"21084","_to":"23838"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33051","_from":"21085","_to":"22898"} +{"$label":"ACTS_IN","name":"Louis XV","type":"Role","_key":"71974","_from":"21087","_to":"43534"} +{"$label":"ACTS_IN","name":"Commissaire Lambert","type":"Role","_key":"38054","_from":"21087","_to":"25746"} +{"$label":"ACTS_IN","name":"Mathieu Meyrand","type":"Role","_key":"30198","_from":"21087","_to":"21280"} +{"$label":"ACTS_IN","name":"Jean-Marie","type":"Role","_key":"31820","_from":"21088","_to":"22208"} +{"$label":"ACTS_IN","name":"Hagers Tochter","type":"Role","_key":"29813","_from":"21099","_to":"21092"} +{"$label":"ACTS_IN","name":"Woody","type":"Role","_key":"29812","_from":"21098","_to":"21092"} +{"$label":"ACTS_IN","name":"Lan","type":"Role","_key":"29811","_from":"21097","_to":"21092"} +{"$label":"ACTS_IN","name":"Meister Dao","type":"Role","_key":"29810","_from":"21096","_to":"21092"} +{"$label":"ACTS_IN","name":"Kien An","type":"Role","_key":"29809","_from":"21095","_to":"21092"} +{"$label":"ACTS_IN","name":"Hai","type":"Role","_key":"29808","_from":"21094","_to":"21092"} +{"$label":"DIRECTED","_key":"29806","_from":"21093","_to":"21092"} +{"$label":"ACTS_IN","name":"Lt. Col. Nguyen Huu An","type":"Role","_key":"64320","_from":"21094","_to":"40088"} +{"$label":"ACTS_IN","name":"Sir Robert","type":"Role","_key":"29820","_from":"21102","_to":"21100"} +{"$label":"ACTS_IN","name":"Paul Harrison","type":"Role","_key":"29816","_from":"21101","_to":"21100"} +{"$label":"ACTS_IN","name":"Lem Vesalius","type":"Role","_key":"114492","_from":"21101","_to":"67443"} +{"$label":"ACTS_IN","name":"Paul Harrison","type":"Role","_key":"29824","_from":"21101","_to":"21103"} +{"$label":"ACTS_IN","name":"Enoch Jenkins, maintopman","type":"Role","_key":"37065","_from":"21102","_to":"25120"} +{"$label":"ACTS_IN","name":"Mr. Harrison","type":"Role","_key":"29825","_from":"21102","_to":"21103"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"29827","_from":"21105","_to":"21103"} +{"$label":"ACTS_IN","name":"Mrs. Gardner","type":"Role","_key":"29826","_from":"21104","_to":"21103"} +{"$label":"ACTS_IN","name":"Madame Colin","type":"Role","_key":"38001","_from":"21105","_to":"25724"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"34641","_from":"21105","_to":"23703"} +{"$label":"ACTS_IN","name":"Georgette Thomas","type":"Role","_key":"30925","_from":"21105","_to":"21670"} +{"$label":"ACTS_IN","name":"Raj Malhotra","type":"Role","_key":"29836","_from":"21112","_to":"21106"} +{"$label":"ACTS_IN","name":"Bharat","type":"Role","_key":"29834","_from":"21111","_to":"21106"} +{"$label":"ACTS_IN","name":"Esha","type":"Role","_key":"29833","_from":"21110","_to":"21106"} +{"$label":"ACTS_IN","name":"Tanmay","type":"Role","_key":"29832","_from":"21109","_to":"21106"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"29831","_from":"21108","_to":"21106"} +{"$label":"ACTS_IN","name":"Aroush","type":"Role","_key":"29830","_from":"21107","_to":"21106"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"120701","_from":"21107","_to":"70894"} +{"$label":"ACTS_IN","name":"Dr. Aditya Shrivastav","type":"Role","_key":"118494","_from":"21107","_to":"69661"} +{"$label":"ACTS_IN","name":"Jai Puri\/Jeet Puri","type":"Role","_key":"117040","_from":"21107","_to":"68880"} +{"$label":"ACTS_IN","name":"Bachchan Pande","type":"Role","_key":"98973","_from":"21107","_to":"58310"} +{"$label":"ACTS_IN","name":"Ajay","type":"Role","_key":"97977","_from":"21107","_to":"57704"} +{"$label":"ACTS_IN","name":"Happy Singh","type":"Role","_key":"89163","_from":"21107","_to":"52808"} +{"$label":"ACTS_IN","name":"Viraj Shergill","type":"Role","_key":"65800","_from":"21107","_to":"40722"} +{"$label":"ACTS_IN","name":"Jai","type":"Role","_key":"120863","_from":"21108","_to":"70972"} +{"$label":"ACTS_IN","name":"Arjun","type":"Role","_key":"120856","_from":"21109","_to":"70970"} +{"$label":"ACTS_IN","name":"Aditay Srivastav","type":"Role","_key":"120643","_from":"21109","_to":"70853"} +{"$label":"ACTS_IN","name":"Avni Siddharth Chaturvedi\/Manjulika","type":"Role","_key":"118495","_from":"21110","_to":"69661"} +{"$label":"ACTS_IN","name":"Meenakshi \"Meenu\" Saxena (Jalkukdi)","type":"Role","_key":"105854","_from":"21110","_to":"62311"} +{"$label":"ACTS_IN","name":"Priya","type":"Role","_key":"104523","_from":"21110","_to":"61483"} +{"$label":"ACTS_IN","name":"Rahul","type":"Role","_key":"121670","_from":"21111","_to":"71480"} +{"$label":"ACTS_IN","name":"Dr. J. C. Asthana","type":"Role","_key":"120667","_from":"21111","_to":"70865"} +{"$label":"ACTS_IN","name":"Dr. Bhalerao","type":"Role","_key":"120644","_from":"21111","_to":"70853"} +{"$label":"ACTS_IN","name":"DCP DeSilva \/ Vardhaan","type":"Role","_key":"112478","_from":"21111","_to":"66413"} +{"$label":"ACTS_IN","name":"Dinaz Aziz","type":"Role","_key":"108790","_from":"21111","_to":"64303"} +{"$label":"ACTS_IN","name":"Rajeev Batra","type":"Role","_key":"104527","_from":"21111","_to":"61483"} +{"$label":"ACTS_IN","name":"The Principal","type":"Role","_key":"98657","_from":"21111","_to":"58139"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"98389","_from":"21111","_to":"57955"} +{"$label":"ACTS_IN","name":"ENT Mental Doctor","type":"Role","_key":"65808","_from":"21111","_to":"40722"} +{"$label":"ACTS_IN","name":"Jahangir Hayaat Khan","type":"Role","_key":"30499","_from":"21111","_to":"21432"} +{"$label":"ACTS_IN","name":"Ajay Sharma \/ Vicky Malhotra","type":"Role","_key":"120743","_from":"21112","_to":"70928"} +{"$label":"ACTS_IN","name":"Raj Malhotra","type":"Role","_key":"120044","_from":"21112","_to":"70499"} +{"$label":"ACTS_IN","name":"Don \/ Vijay","type":"Role","_key":"112474","_from":"21112","_to":"66413"} +{"$label":"ACTS_IN","name":"Sahir Khan","type":"Role","_key":"108806","_from":"21112","_to":"64308"} +{"$label":"ACTS_IN","name":"Himself - Actor","type":"Role","_key":"108793","_from":"21112","_to":"64303"} +{"$label":"ACTS_IN","name":"Aditya Sharma","type":"Role","_key":"106520","_from":"21112","_to":"62759"} +{"$label":"ACTS_IN","name":"Devdas Mukherjee","type":"Role","_key":"106299","_from":"21112","_to":"62621"} +{"$label":"ACTS_IN","name":"Mohan Bhargav","type":"Role","_key":"105862","_from":"21112","_to":"62318"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"104531","_from":"21112","_to":"61483"} +{"$label":"ACTS_IN","name":"Dev Saran","type":"Role","_key":"100006","_from":"21112","_to":"59002"} +{"$label":"ACTS_IN","name":"Kabir Khan","type":"Role","_key":"98834","_from":"21112","_to":"58233"} +{"$label":"ACTS_IN","name":"Major Ram Prasad Sharma","type":"Role","_key":"98649","_from":"21112","_to":"58139"} +{"$label":"ACTS_IN","name":"Surinder Sahni","type":"Role","_key":"98394","_from":"21112","_to":"57961"} +{"$label":"ACTS_IN","name":"Rahul","type":"Role","_key":"97974","_from":"21112","_to":"57704"} +{"$label":"ACTS_IN","name":"Rahul Khanna","type":"Role","_key":"72398","_from":"21112","_to":"43712"} +{"$label":"ACTS_IN","name":"Raj Aryan Malhotra","type":"Role","_key":"70360","_from":"21112","_to":"42859"} +{"$label":"ACTS_IN","name":"Rahul Y. Raichand","type":"Role","_key":"65503","_from":"21112","_to":"40603"} +{"$label":"ACTS_IN","name":"Om Prakash Makhija","type":"Role","_key":"48141","_from":"21112","_to":"31634"} +{"$label":"ACTS_IN","name":"Asoka","type":"Role","_key":"31690","_from":"21112","_to":"22116"} +{"$label":"ACTS_IN","name":"Aman Mathur","type":"Role","_key":"30525","_from":"21112","_to":"21461"} +{"$label":"ACTS_IN","name":"Raj Mathur","type":"Role","_key":"30504","_from":"21112","_to":"21443"} +{"$label":"ACTS_IN","name":"Veer Pratap Singh","type":"Role","_key":"30491","_from":"21112","_to":"21432"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"29848","_from":"21118","_to":"21113"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"29847","_from":"21117","_to":"21113"} +{"$label":"ACTS_IN","name":"Madame Barbet","type":"Role","_key":"29844","_from":"21116","_to":"21113"} +{"$label":"ACTS_IN","name":"G\u00e9rard Dutilleux","type":"Role","_key":"29842","_from":"21115","_to":"21113"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"29840","_from":"21114","_to":"21113"} +{"$label":"ACTS_IN","name":"Jacques Denis","type":"Role","_key":"49646","_from":"21115","_to":"32488"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"88722","_from":"21116","_to":"52569"} +{"$label":"ACTS_IN","name":"Femme \"Coeur \u00e0 Coeur\"","type":"Role","_key":"62209","_from":"21116","_to":"39172"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"121184","_from":"21117","_to":"71185"} +{"$label":"ACTS_IN","name":"Ren\u00e9e Michel","type":"Role","_key":"120539","_from":"21117","_to":"70795"} +{"$label":"ACTS_IN","name":"La m\u00e8re en Chanel","type":"Role","_key":"118043","_from":"21117","_to":"69385"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"104496","_from":"21117","_to":"61464"} +{"$label":"ACTS_IN","name":"Madame Musquin","type":"Role","_key":"101267","_from":"21117","_to":"59631"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96127","_from":"21117","_to":"56500"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"68378","_from":"21117","_to":"41963"} +{"$label":"ACTS_IN","name":"Marijo","type":"Role","_key":"32033","_from":"21117","_to":"22318"} +{"$label":"ACTS_IN","name":"Leah Lemonier","type":"Role","_key":"30689","_from":"21117","_to":"21536"} +{"$label":"DIRECTED","_key":"32031","_from":"21117","_to":"22318"} +{"$label":"DIRECTED","_key":"30687","_from":"21117","_to":"21536"} +{"$label":"DIRECTED","_key":"29850","_from":"21120","_to":"21119"} +{"$label":"DIRECTED","_key":"95098","_from":"21120","_to":"55970"} +{"$label":"ACTS_IN","name":"Adriana","type":"Role","_key":"29861","_from":"21123","_to":"21121"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"29860","_from":"21122","_to":"21121"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"29873","_from":"21130","_to":"21124"} +{"$label":"ACTS_IN","name":"Francois","type":"Role","_key":"29872","_from":"21129","_to":"21124"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"29870","_from":"21128","_to":"21124"} +{"$label":"ACTS_IN","name":"Sue Ellen","type":"Role","_key":"29869","_from":"21127","_to":"21124"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"29868","_from":"21126","_to":"21124"} +{"$label":"DIRECTED","_key":"29864","_from":"21125","_to":"21124"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"91037","_from":"21129","_to":"53717"} +{"$label":"ACTS_IN","name":"The man from the lighthouse","type":"Role","_key":"29878","_from":"21134","_to":"21131"} +{"$label":"ACTS_IN","name":"The Priest","type":"Role","_key":"29877","_from":"21133","_to":"21131"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"29876","_from":"21132","_to":"21131"} +{"$label":"ACTS_IN","name":"Hotel masher","type":"Role","_key":"29893","_from":"21140","_to":"21135"} +{"$label":"ACTS_IN","name":"Det. Lt. Cooley","type":"Role","_key":"29890","_from":"21139","_to":"21135"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"29889","_from":"21138","_to":"21135"} +{"$label":"ACTS_IN","name":"Dr. Fleurot","type":"Role","_key":"29885","_from":"21137","_to":"21135"} +{"$label":"ACTS_IN","name":"Dr. Alexander Brulov","type":"Role","_key":"29882","_from":"21136","_to":"21135"} +{"$label":"ACTS_IN","name":"Maj. Huglin, Liason Officer","type":"Role","_key":"115098","_from":"21138","_to":"67783"} +{"$label":"ACTS_IN","name":"Mered","type":"Role","_key":"44969","_from":"21138","_to":"29886"} +{"$label":"ACTS_IN","name":"Charley O'Leary","type":"Role","_key":"115615","_from":"21140","_to":"68059"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"111589","_from":"21140","_to":"65881"} +{"$label":"ACTS_IN","name":"Milly","type":"Role","_key":"29897","_from":"21142","_to":"21141"} +{"$label":"ACTS_IN","name":"Mrs. Helen Kenton","type":"Role","_key":"108566","_from":"21142","_to":"64161"} +{"$label":"ACTS_IN","name":"Hildegarde Schmidt","type":"Role","_key":"29914","_from":"21144","_to":"21143"} +{"$label":"ACTS_IN","name":"Delia Darrow \/ Gerda Casswell","type":"Role","_key":"105332","_from":"21144","_to":"61977"} +{"$label":"ACTS_IN","name":"Mrs. Appleyard","type":"Role","_key":"67341","_from":"21144","_to":"41503"} +{"$label":"ACTS_IN","name":"Inspecteur Decharme","type":"Role","_key":"29923","_from":"21151","_to":"21145"} +{"$label":"ACTS_IN","name":"Rolande","type":"Role","_key":"29922","_from":"21150","_to":"21145"} +{"$label":"ACTS_IN","name":"Germaine","type":"Role","_key":"29921","_from":"21149","_to":"21145"} +{"$label":"ACTS_IN","name":"Hortense Daubenton","type":"Role","_key":"29920","_from":"21148","_to":"21145"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"29917","_from":"21147","_to":"21145"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"29916","_from":"21146","_to":"21145"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"62116","_from":"21146","_to":"39121"} +{"$label":"ACTS_IN","name":"Bijou","type":"Role","_key":"38046","_from":"21149","_to":"25743"} +{"$label":"ACTS_IN","name":"Ginette Lajoie","type":"Role","_key":"38002","_from":"21149","_to":"25724"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"34084","_from":"21149","_to":"23422"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"34044","_from":"21149","_to":"23410"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"29937","_from":"21158","_to":"21152"} +{"$label":"ACTS_IN","name":"le sup\u00e9rieur","type":"Role","_key":"29934","_from":"21157","_to":"21152"} +{"$label":"ACTS_IN","name":"Mme Rodriguez, la concierge","type":"Role","_key":"29933","_from":"21156","_to":"21152"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"29928","_from":"21155","_to":"21152"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"29927","_from":"21154","_to":"21152"} +{"$label":"DIRECTED","_key":"29925","_from":"21153","_to":"21152"} +{"$label":"DIRECTED","_key":"70103","_from":"21153","_to":"42738"} +{"$label":"DIRECTED","_key":"36225","_from":"21153","_to":"24586"} +{"$label":"ACTS_IN","name":"Adolphe Nicart","type":"Role","_key":"105574","_from":"21154","_to":"62126"} +{"$label":"ACTS_IN","name":"Dr Lambert","type":"Role","_key":"51390","_from":"21155","_to":"33517"} +{"$label":"ACTS_IN","name":"le bijoutier","type":"Role","_key":"35806","_from":"21157","_to":"24312"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"29948","_from":"21161","_to":"21159"} +{"$label":"DIRECTED","_key":"29939","_from":"21160","_to":"21159"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"29957","_from":"21165","_to":"21162"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"29954","_from":"21164","_to":"21162"} +{"$label":"ACTS_IN","name":"Fernand","type":"Role","_key":"29953","_from":"21163","_to":"21162"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37989","_from":"21163","_to":"25718"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37994","_from":"21164","_to":"25718"} +{"$label":"DIRECTED","_key":"38053","_from":"21165","_to":"25746"} +{"$label":"DIRECTED","_key":"35057","_from":"21165","_to":"23913"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"29970","_from":"21169","_to":"21166"} +{"$label":"ACTS_IN","name":"Mme Morane","type":"Role","_key":"29969","_from":"21168","_to":"21166"} +{"$label":"ACTS_IN","name":"M\u00e8re de Julie","type":"Role","_key":"29968","_from":"21167","_to":"21166"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71963","_from":"21167","_to":"43528"} +{"$label":"ACTS_IN","name":"Linda Marshall","type":"Role","_key":"29999","_from":"21172","_to":"21171"} +{"$label":"ACTS_IN","name":"herself \/ Linda Marshall","type":"Role","_key":"41634","_from":"21172","_to":"27947"} +{"$label":"ACTS_IN","name":"Schimmelbeck","type":"Role","_key":"30008","_from":"21176","_to":"21173"} +{"$label":"ACTS_IN","name":"Klopstock","type":"Role","_key":"30006","_from":"21175","_to":"21173"} +{"$label":"DIRECTED","_key":"30000","_from":"21174","_to":"21173"} +{"$label":"DIRECTED","_key":"101299","_from":"21174","_to":"59642"} +{"$label":"DIRECTED","_key":"72504","_from":"21174","_to":"43740"} +{"$label":"DIRECTED","_key":"71472","_from":"21174","_to":"43327"} +{"$label":"DIRECTED","_key":"30715","_from":"21174","_to":"21545"} +{"$label":"ACTS_IN","name":"R\u00e4uberhauptmann","type":"Role","_key":"45100","_from":"21175","_to":"29943"} +{"$label":"ACTS_IN","name":"Stefan Roloff","type":"Role","_key":"44629","_from":"21175","_to":"29701"} +{"$label":"ACTS_IN","name":"Erwin Dott","type":"Role","_key":"31433","_from":"21175","_to":"21958"} +{"$label":"ACTS_IN","name":"la Chauve","type":"Role","_key":"30728","_from":"21176","_to":"21545"} +{"$label":"ACTS_IN","name":"Georges Clemenceau","type":"Role","_key":"30031","_from":"21185","_to":"21177"} +{"$label":"ACTS_IN","name":"le brigadier Riboulet","type":"Role","_key":"30030","_from":"21184","_to":"21177"} +{"$label":"ACTS_IN","name":"Georgette, la bonne","type":"Role","_key":"30027","_from":"21183","_to":"21177"} +{"$label":"ACTS_IN","name":"Suzanne Landru","type":"Role","_key":"30026","_from":"21182","_to":"21177"} +{"$label":"ACTS_IN","name":"le pr\u00e9sident","type":"Role","_key":"30024","_from":"21181","_to":"21177"} +{"$label":"ACTS_IN","name":"Madame Vidal","type":"Role","_key":"30021","_from":"21180","_to":"21177"} +{"$label":"ACTS_IN","name":"Andr\u00e9e Babelet","type":"Role","_key":"30016","_from":"21179","_to":"21177"} +{"$label":"ACTS_IN","name":"C\u00e9lestine Buisson","type":"Role","_key":"30014","_from":"21178","_to":"21177"} +{"$label":"ACTS_IN","name":"Paula Matrac","type":"Role","_key":"115432","_from":"21178","_to":"67969"} +{"$label":"ACTS_IN","name":"Evelyne Bartal","type":"Role","_key":"39417","_from":"21178","_to":"26646"} +{"$label":"ACTS_IN","name":"Dani\u00e8le Lebegue","type":"Role","_key":"31364","_from":"21179","_to":"21929"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"30620","_from":"21179","_to":"21508"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30053","_from":"21197","_to":"21186"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30052","_from":"21196","_to":"21186"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30050","_from":"21195","_to":"21186"} +{"$label":"ACTS_IN","name":"Von Romberg","type":"Role","_key":"30048","_from":"21194","_to":"21186"} +{"$label":"ACTS_IN","name":"Liliana","type":"Role","_key":"30047","_from":"21193","_to":"21186"} +{"$label":"ACTS_IN","name":"Von Buhring","type":"Role","_key":"30046","_from":"21192","_to":"21186"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"30042","_from":"21191","_to":"21186"} +{"$label":"ACTS_IN","name":"Radek","type":"Role","_key":"30040","_from":"21190","_to":"21186"} +{"$label":"ACTS_IN","name":"Parvus","type":"Role","_key":"30039","_from":"21189","_to":"21186"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"30038","_from":"21188","_to":"21186"} +{"$label":"DIRECTED","_key":"30034","_from":"21187","_to":"21186"} +{"$label":"DIRECTED","_key":"108263","_from":"21187","_to":"63963"} +{"$label":"DIRECTED","_key":"66696","_from":"21187","_to":"41205"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"114723","_from":"21188","_to":"67574"} +{"$label":"ACTS_IN","name":"Gurion","type":"Role","_key":"109085","_from":"21188","_to":"64451"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"90989","_from":"21188","_to":"53683"} +{"$label":"ACTS_IN","name":"Keaton","type":"Role","_key":"90976","_from":"21188","_to":"53678"} +{"$label":"DIRECTED","_key":"113224","_from":"21188","_to":"66716"} +{"$label":"ACTS_IN","name":"Lawrence Bauford","type":"Role","_key":"57368","_from":"21189","_to":"36369"} +{"$label":"ACTS_IN","name":"Hrothgar ( voice )","type":"Role","_key":"37372","_from":"21189","_to":"25326"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34698","_from":"21189","_to":"23728"} +{"$label":"ACTS_IN","name":"Vampire Woman","type":"Role","_key":"38080","_from":"21193","_to":"25754"} +{"$label":"ACTS_IN","name":"Tom Blattner","type":"Role","_key":"72770","_from":"21196","_to":"43840"} +{"$label":"ACTS_IN","name":"Rather Short","type":"Role","_key":"46210","_from":"21196","_to":"30544"} +{"$label":"ACTS_IN","name":"Stefan Lohmann","type":"Role","_key":"41110","_from":"21196","_to":"27664"} +{"$label":"ACTS_IN","name":"Felix Rath","type":"Role","_key":"39555","_from":"21196","_to":"26731"} +{"$label":"ACTS_IN","name":"Reine Anne d'Autriche","type":"Role","_key":"30061","_from":"21199","_to":"21198"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"30073","_from":"21205","_to":"21200"} +{"$label":"ACTS_IN","name":"Colbert","type":"Role","_key":"30070","_from":"21204","_to":"21200"} +{"$label":"ACTS_IN","name":"D'Artagnan","type":"Role","_key":"30069","_from":"21203","_to":"21200"} +{"$label":"ACTS_IN","name":"Maria Theresa","type":"Role","_key":"30066","_from":"21202","_to":"21200"} +{"$label":"DIRECTED","_key":"30063","_from":"21201","_to":"21200"} +{"$label":"DIRECTED","_key":"118551","_from":"21201","_to":"69700"} +{"$label":"DIRECTED","_key":"116216","_from":"21201","_to":"68429"} +{"$label":"DIRECTED","_key":"95040","_from":"21201","_to":"55943"} +{"$label":"DIRECTED","_key":"62677","_from":"21201","_to":"39416"} +{"$label":"DIRECTED","_key":"52892","_from":"21201","_to":"34285"} +{"$label":"DIRECTED","_key":"36620","_from":"21201","_to":"24814"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"116496","_from":"21203","_to":"68568"} +{"$label":"ACTS_IN","name":"Richard Harland","type":"Role","_key":"113453","_from":"21203","_to":"66843"} +{"$label":"ACTS_IN","name":"Charles Condomine","type":"Role","_key":"118596","_from":"21204","_to":"69736"} +{"$label":"ACTS_IN","name":"Dr. John Dolittle","type":"Role","_key":"106936","_from":"21204","_to":"63050"} +{"$label":"ACTS_IN","name":"Anthony 'Tony' Preston","type":"Role","_key":"90630","_from":"21204","_to":"53518"} +{"$label":"ACTS_IN","name":"Professor Henry Higgins","type":"Role","_key":"67962","_from":"21204","_to":"41762"} +{"$label":"ACTS_IN","name":"Julius Caesar","type":"Role","_key":"48228","_from":"21204","_to":"31682"} +{"$label":"ACTS_IN","name":"Matt Stone","type":"Role","_key":"34872","_from":"21205","_to":"23835"} +{"$label":"ACTS_IN","name":"El\u00e9onore","type":"Role","_key":"30083","_from":"21208","_to":"21206"} +{"$label":"ACTS_IN","name":"Westermann","type":"Role","_key":"30082","_from":"21207","_to":"21206"} +{"$label":"ACTS_IN","name":"lucien","type":"Role","_key":"99027","_from":"21207","_to":"58335"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Pignon","type":"Role","_key":"53755","_from":"21207","_to":"34652"} +{"$label":"ACTS_IN","name":"l'Oxien (La Denr\u00e9e)","type":"Role","_key":"53081","_from":"21207","_to":"34359"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"33758","_from":"21207","_to":"23279"} +{"$label":"ACTS_IN","name":"Clara Devaux","type":"Role","_key":"65115","_from":"21208","_to":"40447"} +{"$label":"ACTS_IN","name":"Dr Marianne","type":"Role","_key":"51389","_from":"21208","_to":"33517"} +{"$label":"ACTS_IN","name":"Madre de Luc\u00eda","type":"Role","_key":"30100","_from":"21215","_to":"21209"} +{"$label":"ACTS_IN","name":"Germ\u00e1n","type":"Role","_key":"30098","_from":"21214","_to":"21209"} +{"$label":"ACTS_IN","name":"Polic\u00eda II","type":"Role","_key":"30097","_from":"21213","_to":"21209"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"30096","_from":"21212","_to":"21209"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"30094","_from":"21211","_to":"21209"} +{"$label":"ACTS_IN","name":"Taxista","type":"Role","_key":"30091","_from":"21210","_to":"21209"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"48544","_from":"21212","_to":"31857"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"30109","_from":"21219","_to":"21216"} +{"$label":"ACTS_IN","name":"Mrs. Carlson","type":"Role","_key":"30108","_from":"21218","_to":"21216"} +{"$label":"ACTS_IN","name":"Tim Webber","type":"Role","_key":"30107","_from":"21217","_to":"21216"} +{"$label":"ACTS_IN","name":"Lenore","type":"Role","_key":"108705","_from":"21219","_to":"64246"} +{"$label":"ACTS_IN","name":"Estelle","type":"Role","_key":"30123","_from":"21229","_to":"21220"} +{"$label":"ACTS_IN","name":"Eleanor","type":"Role","_key":"30122","_from":"21228","_to":"21220"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"30121","_from":"21227","_to":"21220"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"30120","_from":"21226","_to":"21220"} +{"$label":"ACTS_IN","name":"Vem Rawline","type":"Role","_key":"30118","_from":"21225","_to":"21220"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"30117","_from":"21224","_to":"21220"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"30115","_from":"21223","_to":"21220"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"30113","_from":"21222","_to":"21220"} +{"$label":"DIRECTED","_key":"30111","_from":"21221","_to":"21220"} +{"$label":"DIRECTED","_key":"93571","_from":"21221","_to":"55106"} +{"$label":"DIRECTED","_key":"71824","_from":"21221","_to":"43469"} +{"$label":"DIRECTED","_key":"38402","_from":"21221","_to":"25944"} +{"$label":"ACTS_IN","name":"Leona","type":"Role","_key":"118324","_from":"21223","_to":"69555"} +{"$label":"ACTS_IN","name":"Dr. Brault","type":"Role","_key":"117078","_from":"21223","_to":"68896"} +{"$label":"ACTS_IN","name":"Mrs. Carlton","type":"Role","_key":"107219","_from":"21223","_to":"63230"} +{"$label":"ACTS_IN","name":"Beryl Thibodeaux","type":"Role","_key":"71681","_from":"21223","_to":"43396"} +{"$label":"ACTS_IN","name":"Dr. Susan Wheeler","type":"Role","_key":"68641","_from":"21223","_to":"42071"} +{"$label":"ACTS_IN","name":"Denise Marshall","type":"Role","_key":"68007","_from":"21223","_to":"41786"} +{"$label":"ACTS_IN","name":"Claire Niveau","type":"Role","_key":"54551","_from":"21223","_to":"34961"} +{"$label":"ACTS_IN","name":"Nadine Sallanches","type":"Role","_key":"33944","_from":"21223","_to":"23371"} +{"$label":"ACTS_IN","name":"Elizabeth Courtland \/ Sandra Portinari","type":"Role","_key":"33929","_from":"21223","_to":"23362"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"30129","_from":"21233","_to":"21230"} +{"$label":"ACTS_IN","name":"Viviane","type":"Role","_key":"30128","_from":"21232","_to":"21230"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"30125","_from":"21231","_to":"21230"} +{"$label":"ACTS_IN","name":"Dr. Lardier","type":"Role","_key":"41105","_from":"21233","_to":"27653"} +{"$label":"ACTS_IN","name":"Andreas Hinreich","type":"Role","_key":"30140","_from":"21241","_to":"21234"} +{"$label":"ACTS_IN","name":"Mechthild","type":"Role","_key":"30139","_from":"21240","_to":"21234"} +{"$label":"ACTS_IN","name":"Hans Josef","type":"Role","_key":"30138","_from":"21239","_to":"21234"} +{"$label":"ACTS_IN","name":"Lukas Hoffmann","type":"Role","_key":"30137","_from":"21238","_to":"21234"} +{"$label":"ACTS_IN","name":"Marie Hoffmann","type":"Role","_key":"30136","_from":"21237","_to":"21234"} +{"$label":"ACTS_IN","name":"Georg Hoffmann","type":"Role","_key":"30132","_from":"21236","_to":"21234"} +{"$label":"DIRECTED","_key":"30131","_from":"21235","_to":"21234"} +{"$label":"ACTS_IN","name":"Bruno Fischer","type":"Role","_key":"42554","_from":"21236","_to":"28483"} +{"$label":"ACTS_IN","name":"Herr Fischer","type":"Role","_key":"42524","_from":"21236","_to":"28459"} +{"$label":"ACTS_IN","name":"Ole","type":"Role","_key":"37300","_from":"21236","_to":"25274"} +{"$label":"ACTS_IN","name":"Henrik Spiess","type":"Role","_key":"36352","_from":"21236","_to":"24651"} +{"$label":"ACTS_IN","name":"Zivi","type":"Role","_key":"34375","_from":"21236","_to":"23569"} +{"$label":"ACTS_IN","name":"Raped woman in the dunes","type":"Role","_key":"59226","_from":"21237","_to":"37399"} +{"$label":"ACTS_IN","name":"Lucile Desmoulins","type":"Role","_key":"30152","_from":"21250","_to":"21242"} +{"$label":"ACTS_IN","name":"M\u00e4dchen Babette","type":"Role","_key":"30151","_from":"21249","_to":"21242"} +{"$label":"ACTS_IN","name":"St. Just","type":"Role","_key":"30150","_from":"21248","_to":"21242"} +{"$label":"ACTS_IN","name":"Julia Danton","type":"Role","_key":"30149","_from":"21247","_to":"21242"} +{"$label":"ACTS_IN","name":"Henriot","type":"Role","_key":"30148","_from":"21246","_to":"21242"} +{"$label":"ACTS_IN","name":"Camille Desmoulins","type":"Role","_key":"30146","_from":"21245","_to":"21242"} +{"$label":"ACTS_IN","name":"H\u00e9rault-S\u00e9chelles","type":"Role","_key":"30144","_from":"21244","_to":"21242"} +{"$label":"DIRECTED","_key":"30141","_from":"21243","_to":"21242"} +{"$label":"ACTS_IN","name":"Bomberger Verwandschaft","type":"Role","_key":"42033","_from":"21244","_to":"28155"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45124","_from":"21247","_to":"29944"} +{"$label":"ACTS_IN","name":"Berta Sengstake","type":"Role","_key":"45094","_from":"21247","_to":"29936"} +{"$label":"ACTS_IN","name":"Nichte des Portiers","type":"Role","_key":"40923","_from":"21247","_to":"27534"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30181","_from":"21267","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30180","_from":"21266","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30177","_from":"21265","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30176","_from":"21264","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30174","_from":"21263","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30172","_from":"21262","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30171","_from":"21261","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30167","_from":"21260","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30164","_from":"21259","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30162","_from":"21258","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30161","_from":"21257","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30159","_from":"21256","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30157","_from":"21255","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30155","_from":"21254","_to":"21251"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30154","_from":"21253","_to":"21251"} +{"$label":"DIRECTED","_key":"30153","_from":"21252","_to":"21251"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"116170","_from":"21254","_to":"68405"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"113788","_from":"21254","_to":"67043"} +{"$label":"ACTS_IN","name":"Hoffman","type":"Role","_key":"103539","_from":"21254","_to":"60906"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"99021","_from":"21254","_to":"58332"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"95356","_from":"21254","_to":"56098"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"94067","_from":"21254","_to":"55398"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"90673","_from":"21254","_to":"53527"} +{"$label":"ACTS_IN","name":"George Staub","type":"Role","_key":"89776","_from":"21254","_to":"53135"} +{"$label":"ACTS_IN","name":"Rob Geller","type":"Role","_key":"69366","_from":"21254","_to":"42409"} +{"$label":"ACTS_IN","name":"Private Cleaves","type":"Role","_key":"61734","_from":"21254","_to":"38878"} +{"$label":"ACTS_IN","name":"Muff","type":"Role","_key":"57461","_from":"21254","_to":"36424"} +{"$label":"ACTS_IN","name":"Chris McCormick","type":"Role","_key":"51182","_from":"21254","_to":"33384"} +{"$label":"ACTS_IN","name":"Jester Roy","type":"Role","_key":"49006","_from":"21254","_to":"32122"} +{"$label":"ACTS_IN","name":"Dwight \" Dewey \" Riley","type":"Role","_key":"30291","_from":"21254","_to":"21314"} +{"$label":"ACTS_IN","name":"Dwight \" Dewey \" Riley","type":"Role","_key":"30281","_from":"21254","_to":"21313"} +{"$label":"ACTS_IN","name":"Deputy Dwight Riley","type":"Role","_key":"30262","_from":"21254","_to":"21306"} +{"$label":"DIRECTED","_key":"57460","_from":"21254","_to":"36424"} +{"$label":"ACTS_IN","name":"Princess Amelia of Lockland","type":"Role","_key":"114603","_from":"21255","_to":"67509"} +{"$label":"ACTS_IN","name":"Traci Levine","type":"Role","_key":"105564","_from":"21255","_to":"62121"} +{"$label":"ACTS_IN","name":"Chance","type":"Role","_key":"92224","_from":"21255","_to":"54424"} +{"$label":"DIRECTED","_key":"92226","_from":"21255","_to":"54424"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"101343","_from":"21258","_to":"59660"} +{"$label":"ACTS_IN","name":"Jo Johnston","type":"Role","_key":"101026","_from":"21258","_to":"59536"} +{"$label":"DIRECTED","_key":"116432","_from":"21260","_to":"68533"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38522","_from":"21260","_to":"26023"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102668","_from":"21261","_to":"60399"} +{"$label":"DIRECTED","_key":"71031","_from":"21261","_to":"43134"} +{"$label":"DIRECTED","_key":"32089","_from":"21261","_to":"22359"} +{"$label":"ACTS_IN","name":"Dani Cummings","type":"Role","_key":"104672","_from":"21262","_to":"61578"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"68603","_from":"21262","_to":"42057"} +{"$label":"ACTS_IN","name":"Brandy","type":"Role","_key":"66957","_from":"21262","_to":"41336"} +{"$label":"ACTS_IN","name":"Tatiana","type":"Role","_key":"64418","_from":"21262","_to":"40148"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"108510","_from":"21265","_to":"64131"} +{"$label":"ACTS_IN","name":"Jordy Verrill (segment \"The Lonesome Death Of Jordy Verrill\")","type":"Role","_key":"108481","_from":"21265","_to":"64123"} +{"$label":"ACTS_IN","name":"Teddy Weizak","type":"Role","_key":"94985","_from":"21265","_to":"55928"} +{"$label":"DIRECTED","_key":"58908","_from":"21265","_to":"37199"} +{"$label":"ACTS_IN","name":"Steve Lattimer","type":"Role","_key":"115043","_from":"21267","_to":"67739"} +{"$label":"ACTS_IN","name":"Larry Eugene Phillips Jr.","type":"Role","_key":"102013","_from":"21267","_to":"60025"} +{"$label":"ACTS_IN","name":"Thomas Hewitt (Leatherface)","type":"Role","_key":"53436","_from":"21267","_to":"34528"} +{"$label":"ACTS_IN","name":"Blade","type":"Role","_key":"46263","_from":"21267","_to":"30580"} +{"$label":"ACTS_IN","name":"Hagitha Utslay","type":"Role","_key":"30193","_from":"21279","_to":"21268"} +{"$label":"ACTS_IN","name":"Chuckie","type":"Role","_key":"30192","_from":"21278","_to":"21268"} +{"$label":"ACTS_IN","name":"Martina","type":"Role","_key":"30191","_from":"21277","_to":"21268"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"30190","_from":"21276","_to":"21268"} +{"$label":"ACTS_IN","name":"Boner","type":"Role","_key":"30189","_from":"21275","_to":"21268"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"30188","_from":"21274","_to":"21268"} +{"$label":"ACTS_IN","name":"Slab","type":"Role","_key":"30187","_from":"21273","_to":"21268"} +{"$label":"ACTS_IN","name":"Dawson","type":"Role","_key":"30186","_from":"21272","_to":"21268"} +{"$label":"ACTS_IN","name":"The Killer","type":"Role","_key":"30184","_from":"21271","_to":"21268"} +{"$label":"ACTS_IN","name":"Screw","type":"Role","_key":"30183","_from":"21270","_to":"21268"} +{"$label":"DIRECTED","_key":"30182","_from":"21269","_to":"21268"} +{"$label":"ACTS_IN","name":"Ms. Stern","type":"Role","_key":"59749","_from":"21270","_to":"37723"} +{"$label":"ACTS_IN","name":"Estelle","type":"Role","_key":"57450","_from":"21270","_to":"36418"} +{"$label":"ACTS_IN","name":"Duane","type":"Role","_key":"57449","_from":"21272","_to":"36418"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"119264","_from":"21273","_to":"70075"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"30557","_from":"21273","_to":"21485"} +{"$label":"ACTS_IN","name":"lui-m\u00eame","type":"Role","_key":"114635","_from":"21274","_to":"67527"} +{"$label":"ACTS_IN","name":"Officer Starkey","type":"Role","_key":"91280","_from":"21274","_to":"53820"} +{"$label":"ACTS_IN","name":"187","type":"Role","_key":"66091","_from":"21274","_to":"40893"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"59958","_from":"21274","_to":"37851"} +{"$label":"ACTS_IN","name":"Gurkin","type":"Role","_key":"65558","_from":"21275","_to":"40629"} +{"$label":"ACTS_IN","name":"Marcie Fox","type":"Role","_key":"117962","_from":"21276","_to":"69340"} +{"$label":"ACTS_IN","name":"Angela Donatelli","type":"Role","_key":"92231","_from":"21276","_to":"54425"} +{"$label":"ACTS_IN","name":"Brit","type":"Role","_key":"72747","_from":"21276","_to":"43828"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"58800","_from":"21276","_to":"37140"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"47234","_from":"21276","_to":"31128"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"46279","_from":"21276","_to":"30589"} +{"$label":"ACTS_IN","name":"Mark Avery","type":"Role","_key":"58915","_from":"21278","_to":"37201"} +{"$label":"ACTS_IN","name":"Lindsey Reardon","type":"Role","_key":"115727","_from":"21279","_to":"68140"} +{"$label":"ACTS_IN","name":"Rebecca Melini \/ Juliette","type":"Role","_key":"103273","_from":"21279","_to":"60758"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"93454","_from":"21279","_to":"55025"} +{"$label":"ACTS_IN","name":"Bertrand Meyrand","type":"Role","_key":"30201","_from":"21283","_to":"21280"} +{"$label":"ACTS_IN","name":"Patricia Meyrand","type":"Role","_key":"30199","_from":"21282","_to":"21280"} +{"$label":"DIRECTED","_key":"30194","_from":"21281","_to":"21280"} +{"$label":"ACTS_IN","name":"Billaut-Varenne","type":"Role","_key":"30230","_from":"21288","_to":"21284"} +{"$label":"ACTS_IN","name":"Saint-Just","type":"Role","_key":"30228","_from":"21287","_to":"21284"} +{"$label":"ACTS_IN","name":"H\u00e9bert","type":"Role","_key":"30222","_from":"21286","_to":"21284"} +{"$label":"DIRECTED","_key":"30203","_from":"21285","_to":"21284"} +{"$label":"DIRECTED","_key":"64784","_from":"21285","_to":"40313"} +{"$label":"DIRECTED","_key":"45285","_from":"21285","_to":"30044"} +{"$label":"ACTS_IN","name":"Fanis Iakovidis (40 years old)","type":"Role","_key":"89889","_from":"21286","_to":"53192"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37011","_from":"21286","_to":"25084"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"111893","_from":"21287","_to":"66051"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric \"Fred\" Grumberg","type":"Role","_key":"59970","_from":"21287","_to":"37860"} +{"$label":"ACTS_IN","name":"Maximilien Morrel","type":"Role","_key":"32556","_from":"21287","_to":"22629"} +{"$label":"ACTS_IN","name":"Hand lover","type":"Role","_key":"30239","_from":"21292","_to":"21289"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"30238","_from":"21291","_to":"21289"} +{"$label":"DIRECTED","_key":"30237","_from":"21290","_to":"21289"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30248","_from":"21302","_to":"21293"} +{"$label":"ACTS_IN","name":"Greusem Ghoul","type":"Role","_key":"30247","_from":"21301","_to":"21293"} +{"$label":"ACTS_IN","name":"Ghoult","type":"Role","_key":"30246","_from":"21300","_to":"21293"} +{"$label":"ACTS_IN","name":"Ghoul-Tony","type":"Role","_key":"30245","_from":"21299","_to":"21293"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"30244","_from":"21298","_to":"21293"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"30243","_from":"21297","_to":"21293"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"30242","_from":"21296","_to":"21293"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"30241","_from":"21295","_to":"21293"} +{"$label":"DIRECTED","_key":"30240","_from":"21294","_to":"21293"} +{"$label":"ACTS_IN","name":"The Syphilitic Stricken Balloon Sales Gorilla","type":"Role","_key":"30258","_from":"21305","_to":"21303"} +{"$label":"ACTS_IN","name":"The Ghost","type":"Role","_key":"30250","_from":"21304","_to":"21303"} +{"$label":"ACTS_IN","name":"Vladimina","type":"Role","_key":"30356","_from":"21304","_to":"21348"} +{"$label":"ACTS_IN","name":"Obnoxious Reporter","type":"Role","_key":"30278","_from":"21312","_to":"21306"} +{"$label":"ACTS_IN","name":"Principal Arthur Hembry","type":"Role","_key":"30277","_from":"21311","_to":"21306"} +{"$label":"ACTS_IN","name":"Steven Orth","type":"Role","_key":"30275","_from":"21310","_to":"21306"} +{"$label":"ACTS_IN","name":"Neil Prescott","type":"Role","_key":"30273","_from":"21309","_to":"21306"} +{"$label":"ACTS_IN","name":"Mr. Becker","type":"Role","_key":"30272","_from":"21308","_to":"21306"} +{"$label":"ACTS_IN","name":"Phone Voice (voice)","type":"Role","_key":"30271","_from":"21307","_to":"21306"} +{"$label":"ACTS_IN","name":"Gentleman ( voice )","type":"Role","_key":"45802","_from":"21307","_to":"30298"} +{"$label":"ACTS_IN","name":"Chuck Lumley","type":"Role","_key":"101589","_from":"21311","_to":"59795"} +{"$label":"ACTS_IN","name":"Coach Klein","type":"Role","_key":"64906","_from":"21311","_to":"40359"} +{"$label":"DIRECTED","_key":"90378","_from":"21311","_to":"53406"} +{"$label":"ACTS_IN","name":"Carol Henderson","type":"Role","_key":"116056","_from":"21312","_to":"68343"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"101381","_from":"21312","_to":"59681"} +{"$label":"ACTS_IN","name":"Regan MacNeil","type":"Role","_key":"70870","_from":"21312","_to":"43071"} +{"$label":"ACTS_IN","name":"Nancy Aglet","type":"Role","_key":"70302","_from":"21312","_to":"42835"} +{"$label":"ACTS_IN","name":"Regan","type":"Role","_key":"54629","_from":"21312","_to":"34989"} +{"$label":"ACTS_IN","name":"Jane Brooks","type":"Role","_key":"31825","_from":"21312","_to":"22212"} +{"$label":"ACTS_IN","name":"Tom Prinze","type":"Role","_key":"30301","_from":"21318","_to":"21314"} +{"$label":"ACTS_IN","name":"Sarah Darling","type":"Role","_key":"30300","_from":"21317","_to":"21314"} +{"$label":"ACTS_IN","name":"Tyson Fox","type":"Role","_key":"30297","_from":"21316","_to":"21314"} +{"$label":"ACTS_IN","name":"Roman Bridger","type":"Role","_key":"30296","_from":"21315","_to":"21314"} +{"$label":"ACTS_IN","name":"Sean Daley","type":"Role","_key":"113541","_from":"21315","_to":"66900"} +{"$label":"ACTS_IN","name":"Coors","type":"Role","_key":"90491","_from":"21315","_to":"53461"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"72703","_from":"21316","_to":"43810"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115204","_from":"21317","_to":"67848"} +{"$label":"ACTS_IN","name":"Ms. Isaac","type":"Role","_key":"113758","_from":"21317","_to":"67033"} +{"$label":"ACTS_IN","name":"Six of Nine (voice)","type":"Role","_key":"102068","_from":"21317","_to":"60047"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30590","_from":"21317","_to":"21494"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"30554","_from":"21317","_to":"21485"} +{"$label":"ACTS_IN","name":"Steve Rimbauer","type":"Role","_key":"102634","_from":"21318","_to":"60385"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"56773","_from":"21318","_to":"36060"} +{"$label":"ACTS_IN","name":"Waldo Magoo","type":"Role","_key":"53843","_from":"21318","_to":"34683"} +{"$label":"ACTS_IN","name":"Mrs. Evans","type":"Role","_key":"30325","_from":"21326","_to":"21319"} +{"$label":"ACTS_IN","name":"le commandant de bord","type":"Role","_key":"30324","_from":"21325","_to":"21319"} +{"$label":"ACTS_IN","name":"le juge","type":"Role","_key":"30323","_from":"21324","_to":"21319"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"30321","_from":"21323","_to":"21319"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"30320","_from":"21322","_to":"21319"} +{"$label":"ACTS_IN","name":"Monique Sartet","type":"Role","_key":"30317","_from":"21321","_to":"21319"} +{"$label":"ACTS_IN","name":"Jeanne Manalese","type":"Role","_key":"30314","_from":"21320","_to":"21319"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"32762","_from":"21320","_to":"22749"} +{"$label":"ACTS_IN","name":"1-er ami","type":"Role","_key":"40693","_from":"21323","_to":"27383"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"38231","_from":"21323","_to":"25818"} +{"$label":"ACTS_IN","name":"Foulon","type":"Role","_key":"33476","_from":"21324","_to":"23156"} +{"$label":"ACTS_IN","name":"Hale","type":"Role","_key":"30898","_from":"21324","_to":"21653"} +{"$label":"ACTS_IN","name":"Chip McCready","type":"Role","_key":"30333","_from":"21334","_to":"21327"} +{"$label":"ACTS_IN","name":"Merv`s Boss","type":"Role","_key":"30332","_from":"21333","_to":"21327"} +{"$label":"ACTS_IN","name":"The Sheriff","type":"Role","_key":"30331","_from":"21332","_to":"21327"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"30330","_from":"21331","_to":"21327"} +{"$label":"ACTS_IN","name":"Onkey","type":"Role","_key":"30329","_from":"21330","_to":"21327"} +{"$label":"ACTS_IN","name":"Merv Doody","type":"Role","_key":"30328","_from":"21329","_to":"21327"} +{"$label":"DIRECTED","_key":"30327","_from":"21328","_to":"21327"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"30346","_from":"21342","_to":"21335"} +{"$label":"ACTS_IN","name":"The Nurse","type":"Role","_key":"30342","_from":"21341","_to":"21335"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"30340","_from":"21340","_to":"21335"} +{"$label":"ACTS_IN","name":"Dr. Jessie Mayron","type":"Role","_key":"30339","_from":"21339","_to":"21335"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"30338","_from":"21338","_to":"21335"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"30336","_from":"21337","_to":"21335"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"30335","_from":"21336","_to":"21335"} +{"$label":"ACTS_IN","name":"Bass Player","type":"Role","_key":"30369","_from":"21342","_to":"21348"} +{"$label":"ACTS_IN","name":"Anne-Marie","type":"Role","_key":"30354","_from":"21347","_to":"21343"} +{"$label":"ACTS_IN","name":"Lamblin, p\u00e8re de Th\u00e9r\u00e8se","type":"Role","_key":"30353","_from":"21346","_to":"21343"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"30352","_from":"21345","_to":"21343"} +{"$label":"DIRECTED","_key":"30347","_from":"21344","_to":"21343"} +{"$label":"DIRECTED","_key":"38041","_from":"21344","_to":"25743"} +{"$label":"ACTS_IN","name":"Pierrot","type":"Role","_key":"35823","_from":"21346","_to":"24323"} +{"$label":"ACTS_IN","name":"Barrois","type":"Role","_key":"32554","_from":"21346","_to":"22629"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"30374","_from":"21358","_to":"21348"} +{"$label":"ACTS_IN","name":"Sir Leonardo of DiCaprio","type":"Role","_key":"30373","_from":"21357","_to":"21348"} +{"$label":"ACTS_IN","name":"Party Girl","type":"Role","_key":"30370","_from":"21356","_to":"21348"} +{"$label":"ACTS_IN","name":"Drummer","type":"Role","_key":"30368","_from":"21355","_to":"21348"} +{"$label":"ACTS_IN","name":"Beaner \/ Ralph \/ Guitar Player","type":"Role","_key":"30367","_from":"21354","_to":"21348"} +{"$label":"ACTS_IN","name":"2nd Victim","type":"Role","_key":"30363","_from":"21353","_to":"21348"} +{"$label":"ACTS_IN","name":"1st Victim","type":"Role","_key":"30362","_from":"21352","_to":"21348"} +{"$label":"ACTS_IN","name":"Chimes \/ Edmund","type":"Role","_key":"30360","_from":"21351","_to":"21348"} +{"$label":"ACTS_IN","name":"Molly Black","type":"Role","_key":"30358","_from":"21350","_to":"21348"} +{"$label":"ACTS_IN","name":"Shari O`Kari","type":"Role","_key":"30357","_from":"21349","_to":"21348"} +{"$label":"ACTS_IN","name":"Sexy Scream Queen","type":"Role","_key":"98089","_from":"21353","_to":"57748"} +{"$label":"ACTS_IN","name":"Sasaoka","type":"Role","_key":"30382","_from":"21366","_to":"21359"} +{"$label":"ACTS_IN","name":"Asako Murato","type":"Role","_key":"30381","_from":"21365","_to":"21359"} +{"$label":"ACTS_IN","name":"Miki Yamazaki","type":"Role","_key":"30380","_from":"21364","_to":"21359"} +{"$label":"ACTS_IN","name":"Takuya Yamazaki","type":"Role","_key":"30379","_from":"21363","_to":"21359"} +{"$label":"ACTS_IN","name":"The visitor","type":"Role","_key":"30378","_from":"21362","_to":"21359"} +{"$label":"ACTS_IN","name":"Keiko Yamazaki","type":"Role","_key":"30377","_from":"21361","_to":"21359"} +{"$label":"ACTS_IN","name":"Kiyoshi Yamazaki","type":"Role","_key":"30376","_from":"21360","_to":"21359"} +{"$label":"ACTS_IN","name":"Kudou","type":"Role","_key":"107923","_from":"21360","_to":"63729"} +{"$label":"ACTS_IN","name":"Shunack (voice)","type":"Role","_key":"102577","_from":"21360","_to":"60344"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"93903","_from":"21360","_to":"55285"} +{"$label":"ACTS_IN","name":"Isshin Sajiki","type":"Role","_key":"40123","_from":"21360","_to":"27080"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66117","_from":"21364","_to":"40898"} +{"$label":"ACTS_IN","name":"Sheriff Briggs","type":"Role","_key":"30391","_from":"21375","_to":"21367"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"30390","_from":"21374","_to":"21367"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"30389","_from":"21373","_to":"21367"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"30388","_from":"21372","_to":"21367"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"30387","_from":"21371","_to":"21367"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"30386","_from":"21370","_to":"21367"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"30385","_from":"21369","_to":"21367"} +{"$label":"DIRECTED","_key":"30383","_from":"21368","_to":"21367"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96537","_from":"21373","_to":"56725"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"30395","_from":"21377","_to":"21376"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"64114","_from":"21377","_to":"40010"} +{"$label":"ACTS_IN","name":"Kenny's Grandmother","type":"Role","_key":"30411","_from":"21381","_to":"21378"} +{"$label":"ACTS_IN","name":"Giselle","type":"Role","_key":"30410","_from":"21380","_to":"21378"} +{"$label":"ACTS_IN","name":"Rusty Duritz","type":"Role","_key":"30402","_from":"21379","_to":"21378"} +{"$label":"ACTS_IN","name":"Tucker Willams \/ Mega-Boy","type":"Role","_key":"98538","_from":"21379","_to":"58071"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"96245","_from":"21379","_to":"56561"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"95295","_from":"21379","_to":"56065"} +{"$label":"ACTS_IN","name":"Conrad","type":"Role","_key":"64277","_from":"21379","_to":"40080"} +{"$label":"ACTS_IN","name":"Josh Douglas","type":"Role","_key":"60179","_from":"21379","_to":"37970"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"52048","_from":"21379","_to":"33935"} +{"$label":"ACTS_IN","name":"Teenage Boy","type":"Role","_key":"50293","_from":"21379","_to":"32858"} +{"$label":"ACTS_IN","name":"Henry Davis","type":"Role","_key":"32942","_from":"21379","_to":"22845"} +{"$label":"ACTS_IN","name":"Delilah","type":"Role","_key":"36613","_from":"21381","_to":"24811"} +{"$label":"DIRECTED","_key":"30429","_from":"21392","_to":"21382"} +{"$label":"ACTS_IN","name":"K\u00f6rner","type":"Role","_key":"30428","_from":"21391","_to":"21382"} +{"$label":"ACTS_IN","name":"Nielsson","type":"Role","_key":"30427","_from":"21390","_to":"21382"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"30426","_from":"21389","_to":"21382"} +{"$label":"ACTS_IN","name":"Mendozza","type":"Role","_key":"30423","_from":"21388","_to":"21382"} +{"$label":"ACTS_IN","name":"Kaminsky","type":"Role","_key":"30422","_from":"21387","_to":"21382"} +{"$label":"ACTS_IN","name":"Mazzini","type":"Role","_key":"30421","_from":"21386","_to":"21382"} +{"$label":"ACTS_IN","name":"Scherenschleifer Krupka","type":"Role","_key":"30418","_from":"21385","_to":"21382"} +{"$label":"ACTS_IN","name":"Dr. Brenner","type":"Role","_key":"30417","_from":"21384","_to":"21382"} +{"$label":"ACTS_IN","name":"Manfred Krupka","type":"Role","_key":"30413","_from":"21383","_to":"21382"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"45110","_from":"21383","_to":"29943"} +{"$label":"ACTS_IN","name":"Dr. Klaus Hellmann","type":"Role","_key":"45083","_from":"21383","_to":"29936"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"31439","_from":"21383","_to":"21958"} +{"$label":"DIRECTED","_key":"68969","_from":"21384","_to":"42224"} +{"$label":"DIRECTED","_key":"64688","_from":"21384","_to":"40289"} +{"$label":"DIRECTED","_key":"64179","_from":"21384","_to":"40043"} +{"$label":"ACTS_IN","name":"Jochen Petersen","type":"Role","_key":"43773","_from":"21385","_to":"29234"} +{"$label":"ACTS_IN","name":"Dr. Arnold Vogt","type":"Role","_key":"49083","_from":"21386","_to":"32171"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"44214","_from":"21386","_to":"29461"} +{"$label":"ACTS_IN","name":"Albeniz","type":"Role","_key":"40019","_from":"21386","_to":"27017"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"38142","_from":"21386","_to":"25789"} +{"$label":"ACTS_IN","name":"Roberts","type":"Role","_key":"44746","_from":"21387","_to":"29769"} +{"$label":"ACTS_IN","name":"Inspektor Puddler","type":"Role","_key":"44065","_from":"21387","_to":"29386"} +{"$label":"ACTS_IN","name":"Nachtclubchef","type":"Role","_key":"40370","_from":"21387","_to":"27226"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"45106","_from":"21389","_to":"29943"} +{"$label":"ACTS_IN","name":"Michel Strogoff","type":"Role","_key":"72010","_from":"21390","_to":"43545"} +{"$label":"ACTS_IN","name":"Sergeant Kempfer","type":"Role","_key":"68140","_from":"21390","_to":"41852"} +{"$label":"ACTS_IN","name":"Capt. Briggs","type":"Role","_key":"65666","_from":"21390","_to":"40680"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"35543","_from":"21390","_to":"24164"} +{"$label":"DIRECTED","_key":"92594","_from":"21391","_to":"54659"} +{"$label":"DIRECTED","_key":"59491","_from":"21392","_to":"37567"} +{"$label":"DIRECTED","_key":"49102","_from":"21392","_to":"32171"} +{"$label":"DIRECTED","_key":"38138","_from":"21392","_to":"25789"} +{"$label":"ACTS_IN","name":"Brenda Meeks","type":"Role","_key":"30439","_from":"21399","_to":"21394"} +{"$label":"ACTS_IN","name":"Draw`s Mom","type":"Role","_key":"30435","_from":"21398","_to":"21394"} +{"$label":"ACTS_IN","name":"Drew`s Dad","type":"Role","_key":"30434","_from":"21397","_to":"21394"} +{"$label":"ACTS_IN","name":"Not Drew`s Boyfriend","type":"Role","_key":"30433","_from":"21396","_to":"21394"} +{"$label":"DIRECTED","_key":"30430","_from":"21395","_to":"21394"} +{"$label":"ACTS_IN","name":"Jack Spade","type":"Role","_key":"110855","_from":"21395","_to":"65484"} +{"$label":"ACTS_IN","name":"Det. Jim Campbell","type":"Role","_key":"55126","_from":"21395","_to":"35191"} +{"$label":"ACTS_IN","name":"Crackhead","type":"Role","_key":"48962","_from":"21395","_to":"32087"} +{"$label":"DIRECTED","_key":"110854","_from":"21395","_to":"65484"} +{"$label":"DIRECTED","_key":"88329","_from":"21395","_to":"52379"} +{"$label":"DIRECTED","_key":"52401","_from":"21395","_to":"34098"} +{"$label":"DIRECTED","_key":"30442","_from":"21395","_to":"21400"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"107647","_from":"21399","_to":"63536"} +{"$label":"ACTS_IN","name":"Lena Wright","type":"Role","_key":"101557","_from":"21399","_to":"59773"} +{"$label":"ACTS_IN","name":"Omunique","type":"Role","_key":"100186","_from":"21399","_to":"59094"} +{"$label":"ACTS_IN","name":"Shondra","type":"Role","_key":"94366","_from":"21399","_to":"55568"} +{"$label":"ACTS_IN","name":"Kiesha","type":"Role","_key":"92563","_from":"21399","_to":"54641"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"30577","_from":"21399","_to":"21490"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"30565","_from":"21399","_to":"21488"} +{"$label":"ACTS_IN","name":"Brenda Meeks","type":"Role","_key":"30561","_from":"21399","_to":"21485"} +{"$label":"ACTS_IN","name":"Brenda Meeks","type":"Role","_key":"30449","_from":"21399","_to":"21400"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"30448","_from":"21403","_to":"21400"} +{"$label":"ACTS_IN","name":"Ray Wilkins","type":"Role","_key":"30446","_from":"21402","_to":"21400"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"30445","_from":"21401","_to":"21400"} +{"$label":"ACTS_IN","name":"Cliff Richards","type":"Role","_key":"114935","_from":"21401","_to":"67695"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"70560","_from":"21401","_to":"42935"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"60736","_from":"21401","_to":"38355"} +{"$label":"ACTS_IN","name":"Rod","type":"Role","_key":"59744","_from":"21401","_to":"37723"} +{"$label":"ACTS_IN","name":"Trip Hurudie","type":"Role","_key":"56675","_from":"21401","_to":"35999"} +{"$label":"ACTS_IN","name":"Kevin Copeland","type":"Role","_key":"88330","_from":"21402","_to":"52379"} +{"$label":"ACTS_IN","name":"Ashtray","type":"Role","_key":"64485","_from":"21402","_to":"40179"} +{"$label":"ACTS_IN","name":"Darryl","type":"Role","_key":"52397","_from":"21402","_to":"34098"} +{"$label":"ACTS_IN","name":"Zombie","type":"Role","_key":"30578","_from":"21402","_to":"21490"} +{"$label":"ACTS_IN","name":"Conner Layne","type":"Role","_key":"115163","_from":"21403","_to":"67818"} +{"$label":"ACTS_IN","name":"Eric (segment \"The Campfire\")","type":"Role","_key":"108655","_from":"21403","_to":"64215"} +{"$label":"ACTS_IN","name":"Geoffrey","type":"Role","_key":"63535","_from":"21403","_to":"39772"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30473","_from":"21420","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30472","_from":"21419","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30471","_from":"21418","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30470","_from":"21417","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30469","_from":"21416","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30468","_from":"21415","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30467","_from":"21414","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30466","_from":"21413","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30465","_from":"21412","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30464","_from":"21411","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30463","_from":"21410","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30462","_from":"21409","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30461","_from":"21408","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30460","_from":"21407","_to":"21404"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30459","_from":"21406","_to":"21404"} +{"$label":"DIRECTED","_key":"30456","_from":"21405","_to":"21404"} +{"$label":"DIRECTED","_key":"102908","_from":"21405","_to":"60529"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"36481","_from":"21407","_to":"24738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36318","_from":"21407","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36428","_from":"21411","_to":"24708"} +{"$label":"ACTS_IN","name":"Head of Hugo","type":"Role","_key":"97958","_from":"21414","_to":"57685"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36424","_from":"21418","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36423","_from":"21419","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36315","_from":"21420","_to":"24639"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"30488","_from":"21431","_to":"21421"} +{"$label":"ACTS_IN","name":"Heinz Badewitz","type":"Role","_key":"30487","_from":"21430","_to":"21421"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"30486","_from":"21429","_to":"21421"} +{"$label":"ACTS_IN","name":"Lasse","type":"Role","_key":"30485","_from":"21428","_to":"21421"} +{"$label":"ACTS_IN","name":"Hauptkommissar Wiesner","type":"Role","_key":"30484","_from":"21427","_to":"21421"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"30483","_from":"21426","_to":"21421"} +{"$label":"ACTS_IN","name":"Lothar","type":"Role","_key":"30482","_from":"21425","_to":"21421"} +{"$label":"ACTS_IN","name":"Emmelie","type":"Role","_key":"30481","_from":"21424","_to":"21421"} +{"$label":"ACTS_IN","name":"Gina Ferrari","type":"Role","_key":"30479","_from":"21423","_to":"21421"} +{"$label":"ACTS_IN","name":"Frau Schr\u00f6der","type":"Role","_key":"30477","_from":"21422","_to":"21421"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"46024","_from":"21422","_to":"30414"} +{"$label":"ACTS_IN","name":"Wasa Striesow","type":"Role","_key":"68153","_from":"21424","_to":"41857"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51444","_from":"21425","_to":"33555"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"68506","_from":"21426","_to":"42019"} +{"$label":"ACTS_IN","name":"Andreas Streicher","type":"Role","_key":"63137","_from":"21426","_to":"39598"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"52953","_from":"21426","_to":"34308"} +{"$label":"ACTS_IN","name":"Hackler","type":"Role","_key":"47743","_from":"21426","_to":"31437"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"63506","_from":"21427","_to":"39761"} +{"$label":"ACTS_IN","name":"Heinz Badewitz","type":"Role","_key":"44389","_from":"21430","_to":"29572"} +{"$label":"ACTS_IN","name":"Nannerl","type":"Role","_key":"110871","_from":"21431","_to":"65486"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"97512","_from":"21431","_to":"57421"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"45922","_from":"21431","_to":"30364"} +{"$label":"ACTS_IN","name":"Jailor","type":"Role","_key":"30502","_from":"21442","_to":"21432"} +{"$label":"ACTS_IN","name":"Bebe","type":"Role","_key":"30501","_from":"21441","_to":"21432"} +{"$label":"ACTS_IN","name":"Razaa Shirazi","type":"Role","_key":"30500","_from":"21440","_to":"21432"} +{"$label":"ACTS_IN","name":"Mariam Hayaat Khan","type":"Role","_key":"30498","_from":"21439","_to":"21432"} +{"$label":"ACTS_IN","name":"Shabbo","type":"Role","_key":"30496","_from":"21438","_to":"21432"} +{"$label":"ACTS_IN","name":"Maati","type":"Role","_key":"30495","_from":"21437","_to":"21432"} +{"$label":"ACTS_IN","name":"Chaudhary Sumer Singh","type":"Role","_key":"30494","_from":"21436","_to":"21432"} +{"$label":"ACTS_IN","name":"Saamiya Siddiqui","type":"Role","_key":"30493","_from":"21435","_to":"21432"} +{"$label":"ACTS_IN","name":"Zaara Hayaat Khan","type":"Role","_key":"30492","_from":"21434","_to":"21432"} +{"$label":"DIRECTED","_key":"30490","_from":"21433","_to":"21432"} +{"$label":"DIRECTED","_key":"97978","_from":"21433","_to":"57704"} +{"$label":"ACTS_IN","name":"Ambi","type":"Role","_key":"103117","_from":"21434","_to":"60653"} +{"$label":"ACTS_IN","name":"Shalini","type":"Role","_key":"101647","_from":"21434","_to":"59825"} +{"$label":"ACTS_IN","name":"Riya Saran","type":"Role","_key":"100009","_from":"21434","_to":"59002"} +{"$label":"ACTS_IN","name":"Shabnam","type":"Role","_key":"46203","_from":"21434","_to":"30541"} +{"$label":"ACTS_IN","name":"Naina Catherine Kapur Patel","type":"Role","_key":"30527","_from":"21434","_to":"21461"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"108801","_from":"21435","_to":"64303"} +{"$label":"ACTS_IN","name":"Gulabji","type":"Role","_key":"108485","_from":"21435","_to":"64124"} +{"$label":"ACTS_IN","name":"Maya Talwar","type":"Role","_key":"100008","_from":"21435","_to":"59002"} +{"$label":"ACTS_IN","name":"Geeta","type":"Role","_key":"99096","_from":"21435","_to":"58386"} +{"$label":"ACTS_IN","name":"Radhika","type":"Role","_key":"98869","_from":"21435","_to":"58260"} +{"$label":"ACTS_IN","name":"Tina Malhotra Khanna","type":"Role","_key":"72400","_from":"21435","_to":"43712"} +{"$label":"ACTS_IN","name":"Babli","type":"Role","_key":"71778","_from":"21435","_to":"43444"} +{"$label":"ACTS_IN","name":"Naina (as Rani Mukherji)","type":"Role","_key":"65507","_from":"21435","_to":"40603"} +{"$label":"ACTS_IN","name":"Rhea Prakash","type":"Role","_key":"30515","_from":"21435","_to":"21452"} +{"$label":"ACTS_IN","name":"Priya Chopra","type":"Role","_key":"30505","_from":"21435","_to":"21443"} +{"$label":"ACTS_IN","name":"Uncle","type":"Role","_key":"120199","_from":"21436","_to":"70590"} +{"$label":"ACTS_IN","name":"Buddhadev Gupta","type":"Role","_key":"109561","_from":"21436","_to":"64715"} +{"$label":"ACTS_IN","name":"Bhootnath (Kailash Nath)","type":"Role","_key":"106518","_from":"21436","_to":"62759"} +{"$label":"ACTS_IN","name":"Samarjit 'Sam' Talwar","type":"Role","_key":"100007","_from":"21436","_to":"59002"} +{"$label":"ACTS_IN","name":"Subhash Nagare 'Sarkar'","type":"Role","_key":"100003","_from":"21436","_to":"59000"} +{"$label":"ACTS_IN","name":"Jai","type":"Role","_key":"89087","_from":"21436","_to":"52774"} +{"$label":"ACTS_IN","name":"Dashrath Singh","type":"Role","_key":"71779","_from":"21436","_to":"43444"} +{"$label":"ACTS_IN","name":"Narayan Shankar","type":"Role","_key":"70359","_from":"21436","_to":"42859"} +{"$label":"ACTS_IN","name":"Yashvardhan 'Yash' Raichand","type":"Role","_key":"65501","_from":"21436","_to":"40603"} +{"$label":"ACTS_IN","name":"Khader Bhai","type":"Role","_key":"48272","_from":"21436","_to":"31706"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48155","_from":"21436","_to":"31634"} +{"$label":"ACTS_IN","name":"Harish Mishra","type":"Role","_key":"46202","_from":"21436","_to":"30541"} +{"$label":"ACTS_IN","name":"Basanti","type":"Role","_key":"89090","_from":"21437","_to":"52774"} +{"$label":"ACTS_IN","name":"Najma","type":"Role","_key":"98776","_from":"21438","_to":"58204"} +{"$label":"ACTS_IN","name":"Sumitra Chakraborty","type":"Role","_key":"106308","_from":"21439","_to":"62621"} +{"$label":"ACTS_IN","name":"Kamaljeet Saran","type":"Role","_key":"100012","_from":"21439","_to":"59002"} +{"$label":"ACTS_IN","name":"Mrs. Sharma","type":"Role","_key":"98655","_from":"21439","_to":"58139"} +{"$label":"ACTS_IN","name":"Seema Acharya (Sameer's mother)","type":"Role","_key":"98390","_from":"21439","_to":"57955"} +{"$label":"ACTS_IN","name":"Dolly Auntie","type":"Role","_key":"65809","_from":"21439","_to":"40722"} +{"$label":"ACTS_IN","name":"Nafisa Ali Begum","type":"Role","_key":"49881","_from":"21439","_to":"32652"} +{"$label":"ACTS_IN","name":"Bela Makhija","type":"Role","_key":"48145","_from":"21439","_to":"31634"} +{"$label":"ACTS_IN","name":"Parminder Prakash","type":"Role","_key":"30517","_from":"21439","_to":"21452"} +{"$label":"ACTS_IN","name":"Sandip","type":"Role","_key":"105294","_from":"21440","_to":"61962"} +{"$label":"ACTS_IN","name":"Lilian","type":"Role","_key":"108486","_from":"21441","_to":"64124"} +{"$label":"ACTS_IN","name":"First Mother (as Zohra Segal)","type":"Role","_key":"56035","_from":"21441","_to":"35612"} +{"$label":"ACTS_IN","name":"Dadi","type":"Role","_key":"37030","_from":"21441","_to":"25098"} +{"$label":"ACTS_IN","name":"Thakur Mahendra Pratap Singh","type":"Role","_key":"120859","_from":"21442","_to":"70970"} +{"$label":"ACTS_IN","name":"Arjan, the blacksmith","type":"Role","_key":"120846","_from":"21442","_to":"70961"} +{"$label":"ACTS_IN","name":"Chaudhary Om Singh","type":"Role","_key":"98784","_from":"21442","_to":"58204"} +{"$label":"ACTS_IN","name":"Paanwala","type":"Role","_key":"30513","_from":"21451","_to":"21443"} +{"$label":"ACTS_IN","name":"Dhobi","type":"Role","_key":"30512","_from":"21450","_to":"21443"} +{"$label":"ACTS_IN","name":"Nandu","type":"Role","_key":"30511","_from":"21449","_to":"21443"} +{"$label":"ACTS_IN","name":"Mr. Chopra","type":"Role","_key":"30509","_from":"21448","_to":"21443"} +{"$label":"ACTS_IN","name":"Mrs. Manubhai","type":"Role","_key":"30508","_from":"21447","_to":"21443"} +{"$label":"ACTS_IN","name":"Manubhai","type":"Role","_key":"30507","_from":"21446","_to":"21443"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"30506","_from":"21445","_to":"21443"} +{"$label":"DIRECTED","_key":"30503","_from":"21444","_to":"21443"} +{"$label":"ACTS_IN","name":"Ajit Singh","type":"Role","_key":"120049","_from":"21446","_to":"70499"} +{"$label":"ACTS_IN","name":"Principal Irani","type":"Role","_key":"106524","_from":"21446","_to":"62759"} +{"$label":"ACTS_IN","name":"Professor Rasai","type":"Role","_key":"98658","_from":"21446","_to":"58139"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"49892","_from":"21446","_to":"32652"} +{"$label":"ACTS_IN","name":"Partho Roy","type":"Role","_key":"48153","_from":"21446","_to":"31634"} +{"$label":"ACTS_IN","name":"Kursann bhai Patel","type":"Role","_key":"30538","_from":"21446","_to":"21461"} +{"$label":"ACTS_IN","name":"Vikramjeet","type":"Role","_key":"37031","_from":"21448","_to":"25098"} +{"$label":"ACTS_IN","name":"Max - Marriage Registrar","type":"Role","_key":"120761","_from":"21449","_to":"70935"} +{"$label":"ACTS_IN","name":"Babulal","type":"Role","_key":"120751","_from":"21449","_to":"70928"} +{"$label":"ACTS_IN","name":"Old Dressman","type":"Role","_key":"48154","_from":"21451","_to":"31634"} +{"$label":"ACTS_IN","name":"Diana Fernandez","type":"Role","_key":"30523","_from":"21460","_to":"21452"} +{"$label":"ACTS_IN","name":"Shalini","type":"Role","_key":"30522","_from":"21459","_to":"21452"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"30521","_from":"21458","_to":"21452"} +{"$label":"ACTS_IN","name":"Mihir Vora","type":"Role","_key":"30520","_from":"21457","_to":"21452"} +{"$label":"ACTS_IN","name":"Arjun Kapoor","type":"Role","_key":"30519","_from":"21456","_to":"21452"} +{"$label":"ACTS_IN","name":"Anju Kapoor","type":"Role","_key":"30518","_from":"21455","_to":"21452"} +{"$label":"ACTS_IN","name":"Karan Kapoor","type":"Role","_key":"30516","_from":"21454","_to":"21452"} +{"$label":"DIRECTED","_key":"30514","_from":"21453","_to":"21452"} +{"$label":"DIRECTED","_key":"99099","_from":"21453","_to":"58386"} +{"$label":"DIRECTED","_key":"49877","_from":"21453","_to":"32652"} +{"$label":"ACTS_IN","name":"Jai Vardhan Singh\/Veer Singh","type":"Role","_key":"120785","_from":"21454","_to":"70943"} +{"$label":"ACTS_IN","name":"Ranvir Singh","type":"Role","_key":"120754","_from":"21454","_to":"70935"} +{"$label":"ACTS_IN","name":"Nicki","type":"Role","_key":"103116","_from":"21454","_to":"60653"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"101645","_from":"21454","_to":"59825"} +{"$label":"ACTS_IN","name":"Ishwar","type":"Role","_key":"101493","_from":"21454","_to":"59735"} +{"$label":"ACTS_IN","name":"Ranbeer Talwar","type":"Role","_key":"99097","_from":"21454","_to":"58386"} +{"$label":"ACTS_IN","name":"Jimmy Cliff","type":"Role","_key":"98972","_from":"21454","_to":"58310"} +{"$label":"ACTS_IN","name":"Rajveer Singh","type":"Role","_key":"98868","_from":"21454","_to":"58260"} +{"$label":"ACTS_IN","name":"Rohit Patel","type":"Role","_key":"30528","_from":"21454","_to":"21461"} +{"$label":"ACTS_IN","name":"Veer Singh","type":"Role","_key":"120787","_from":"21456","_to":"70943"} +{"$label":"ACTS_IN","name":"Rommy Rolly","type":"Role","_key":"108783","_from":"21456","_to":"64303"} +{"$label":"ACTS_IN","name":"Zulfikar Ali Beg","type":"Role","_key":"49880","_from":"21456","_to":"32652"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48149","_from":"21456","_to":"31634"} +{"$label":"ACTS_IN","name":"Arif Khan","type":"Role","_key":"120940","_from":"21457","_to":"71017"} +{"$label":"ACTS_IN","name":"Rahul Kher","type":"Role","_key":"120679","_from":"21457","_to":"70876"} +{"$label":"ACTS_IN","name":"Zaheer","type":"Role","_key":"120668","_from":"21457","_to":"70865"} +{"$label":"ACTS_IN","name":"Roop","type":"Role","_key":"113305","_from":"21457","_to":"66749"} +{"$label":"ACTS_IN","name":"Karan Choudhry","type":"Role","_key":"70362","_from":"21457","_to":"42859"} +{"$label":"ACTS_IN","name":"Aditya\/Drona","type":"Role","_key":"120651","_from":"21458","_to":"70858"} +{"$label":"ACTS_IN","name":"ACP Jai Dixit","type":"Role","_key":"112357","_from":"21458","_to":"66339"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108794","_from":"21458","_to":"64303"} +{"$label":"ACTS_IN","name":"Gurukanth Desai","type":"Role","_key":"105850","_from":"21458","_to":"62311"} +{"$label":"ACTS_IN","name":"Rishi Talwar","type":"Role","_key":"100010","_from":"21458","_to":"59002"} +{"$label":"ACTS_IN","name":"Shankar Nagare","type":"Role","_key":"100004","_from":"21458","_to":"59000"} +{"$label":"ACTS_IN","name":"Jai Dixit","type":"Role","_key":"98978","_from":"21458","_to":"58312"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"98387","_from":"21458","_to":"57955"} +{"$label":"ACTS_IN","name":"Bunty","type":"Role","_key":"71777","_from":"21458","_to":"43444"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48148","_from":"21458","_to":"31634"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"112477","_from":"21460","_to":"66413"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"105805","_from":"21460","_to":"62286"} +{"$label":"ACTS_IN","name":"Chandni","type":"Role","_key":"104835","_from":"21460","_to":"61684"} +{"$label":"ACTS_IN","name":"Rohit's Mother","type":"Role","_key":"30543","_from":"21476","_to":"21461"} +{"$label":"ACTS_IN","name":"Kanta Bhen","type":"Role","_key":"30542","_from":"21475","_to":"21461"} +{"$label":"ACTS_IN","name":"Abhay","type":"Role","_key":"30541","_from":"21474","_to":"21461"} +{"$label":"ACTS_IN","name":"Lajjo Kapur's Sister","type":"Role","_key":"30540","_from":"21473","_to":"21461"} +{"$label":"ACTS_IN","name":"Lajjo Kapur's Sister","type":"Role","_key":"30539","_from":"21472","_to":"21461"} +{"$label":"ACTS_IN","name":"Gia Kapur","type":"Role","_key":"30537","_from":"21471","_to":"21461"} +{"$label":"ACTS_IN","name":"Shiv Kapur","type":"Role","_key":"30536","_from":"21470","_to":"21461"} +{"$label":"ACTS_IN","name":"Guru","type":"Role","_key":"30535","_from":"21469","_to":"21461"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"30534","_from":"21468","_to":"21461"} +{"$label":"ACTS_IN","name":"Dr. Priya","type":"Role","_key":"30533","_from":"21467","_to":"21461"} +{"$label":"ACTS_IN","name":"Jasprit Kapoor","type":"Role","_key":"30531","_from":"21466","_to":"21461"} +{"$label":"ACTS_IN","name":"Aman's Mother","type":"Role","_key":"30530","_from":"21465","_to":"21461"} +{"$label":"ACTS_IN","name":"Lajjo Kapur","type":"Role","_key":"30529","_from":"21464","_to":"21461"} +{"$label":"ACTS_IN","name":"Jennifer Kapur","type":"Role","_key":"30526","_from":"21463","_to":"21461"} +{"$label":"DIRECTED","_key":"30524","_from":"21462","_to":"21461"} +{"$label":"ACTS_IN","name":"Radha","type":"Role","_key":"89091","_from":"21463","_to":"52774"} +{"$label":"ACTS_IN","name":"Nandini Y. Raichand","type":"Role","_key":"65502","_from":"21463","_to":"40603"} +{"$label":"ACTS_IN","name":"Sonia's Grandmother","type":"Role","_key":"120870","_from":"21465","_to":"70973"} +{"$label":"ACTS_IN","name":"Jahnavi","type":"Role","_key":"121673","_from":"21468","_to":"71480"} +{"$label":"ACTS_IN","name":"Hussian","type":"Role","_key":"120858","_from":"21469","_to":"70970"} +{"$label":"ACTS_IN","name":"Bandya","type":"Role","_key":"120714","_from":"21469","_to":"70898"} +{"$label":"ACTS_IN","name":"Babban","type":"Role","_key":"120706","_from":"21469","_to":"70894"} +{"$label":"ACTS_IN","name":"Markand aka Maru","type":"Role","_key":"120085","_from":"21469","_to":"70520"} +{"$label":"ACTS_IN","name":"Zallan Kumar","type":"Role","_key":"108809","_from":"21469","_to":"64308"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"106521","_from":"21469","_to":"62759"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"105806","_from":"21469","_to":"62286"} +{"$label":"ACTS_IN","name":"Mrs. Shah","type":"Role","_key":"106544","_from":"21472","_to":"62780"} +{"$label":"ACTS_IN","name":"Ranjit Rolly","type":"Role","_key":"108786","_from":"21474","_to":"64303"} +{"$label":"ACTS_IN","name":"Aai","type":"Role","_key":"120860","_from":"21475","_to":"70970"} +{"$label":"ACTS_IN","name":"Girl in the park","type":"Role","_key":"30551","_from":"21484","_to":"21477"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30550","_from":"21483","_to":"21477"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30549","_from":"21482","_to":"21477"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30548","_from":"21481","_to":"21477"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30547","_from":"21480","_to":"21477"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"30546","_from":"21479","_to":"21477"} +{"$label":"DIRECTED","_key":"30544","_from":"21478","_to":"21477"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"30558","_from":"21487","_to":"21485"} +{"$label":"ACTS_IN","name":"Tabitha","type":"Role","_key":"30555","_from":"21486","_to":"21485"} +{"$label":"ACTS_IN","name":"Skyler","type":"Role","_key":"119693","_from":"21487","_to":"70295"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30586","_from":"21487","_to":"21494"} +{"$label":"ACTS_IN","name":"Shaq","type":"Role","_key":"30571","_from":"21489","_to":"21488"} +{"$label":"ACTS_IN","name":"Neon","type":"Role","_key":"121228","_from":"21489","_to":"71215"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95406","_from":"21489","_to":"56118"} +{"$label":"ACTS_IN","name":"Shaquille","type":"Role","_key":"93114","_from":"21489","_to":"54874"} +{"$label":"ACTS_IN","name":"Kazaam","type":"Role","_key":"70323","_from":"21489","_to":"42848"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"64296","_from":"21489","_to":"40082"} +{"$label":"ACTS_IN","name":"John Henry Irons","type":"Role","_key":"51131","_from":"21489","_to":"33354"} +{"$label":"ACTS_IN","name":"Girl*2","type":"Role","_key":"30583","_from":"21493","_to":"21490"} +{"$label":"ACTS_IN","name":"Cindy's Evil Twin Sister","type":"Role","_key":"30581","_from":"21492","_to":"21490"} +{"$label":"ACTS_IN","name":"[attached]","type":"Role","_key":"30580","_from":"21491","_to":"21490"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"60274","_from":"21492","_to":"38015"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"47065","_from":"21492","_to":"31034"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30587","_from":"21495","_to":"21494"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30598","_from":"21500","_to":"21496"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"30596","_from":"21499","_to":"21496"} +{"$label":"ACTS_IN","name":"The Apparition","type":"Role","_key":"30595","_from":"21498","_to":"21496"} +{"$label":"DIRECTED","_key":"30593","_from":"21497","_to":"21496"} +{"$label":"ACTS_IN","name":"Samuel Leventhal","type":"Role","_key":"111277","_from":"21499","_to":"65712"} +{"$label":"DIRECTED","_key":"30611","_from":"21507","_to":"21501"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"30610","_from":"21506","_to":"21501"} +{"$label":"ACTS_IN","name":"Prof","type":"Role","_key":"30608","_from":"21505","_to":"21501"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"30607","_from":"21504","_to":"21501"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"30605","_from":"21503","_to":"21501"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"30601","_from":"21502","_to":"21501"} +{"$label":"ACTS_IN","name":"Schroeder (German sergeant)","type":"Role","_key":"107144","_from":"21502","_to":"63187"} +{"$label":"ACTS_IN","name":"Krischbin","type":"Role","_key":"45302","_from":"21502","_to":"30050"} +{"$label":"ACTS_IN","name":"Franz Flender","type":"Role","_key":"43115","_from":"21502","_to":"28795"} +{"$label":"ACTS_IN","name":"Leander","type":"Role","_key":"43092","_from":"21502","_to":"28781"} +{"$label":"ACTS_IN","name":"Stefan Suttner","type":"Role","_key":"43020","_from":"21502","_to":"28738"} +{"$label":"ACTS_IN","name":"Stefan Suttner","type":"Role","_key":"42992","_from":"21502","_to":"28721"} +{"$label":"ACTS_IN","name":"Erich Stahler","type":"Role","_key":"40438","_from":"21502","_to":"27257"} +{"$label":"ACTS_IN","name":"Alfons K\u00fcbler","type":"Role","_key":"33216","_from":"21502","_to":"23001"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"32402","_from":"21502","_to":"22551"} +{"$label":"ACTS_IN","name":"Nitro","type":"Role","_key":"32308","_from":"21502","_to":"22499"} +{"$label":"ACTS_IN","name":"M. Schloendorf","type":"Role","_key":"41559","_from":"21505","_to":"27909"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"30630","_from":"21512","_to":"21508"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30626","_from":"21511","_to":"21508"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30624","_from":"21510","_to":"21508"} +{"$label":"ACTS_IN","name":"Emilie","type":"Role","_key":"30622","_from":"21509","_to":"21508"} +{"$label":"ACTS_IN","name":"Les Triplettes (voice)","type":"Role","_key":"55381","_from":"21510","_to":"35304"} +{"$label":"ACTS_IN","name":"Italian Countess","type":"Role","_key":"34403","_from":"21512","_to":"23576"} +{"$label":"ACTS_IN","name":"Anna Meyer","type":"Role","_key":"34029","_from":"21512","_to":"23403"} +{"$label":"ACTS_IN","name":"La barmaid","type":"Role","_key":"30641","_from":"21517","_to":"21513"} +{"$label":"ACTS_IN","name":"la passante","type":"Role","_key":"30639","_from":"21516","_to":"21513"} +{"$label":"ACTS_IN","name":"Christian Beloeil","type":"Role","_key":"30638","_from":"21515","_to":"21513"} +{"$label":"ACTS_IN","name":"M. Beloeil","type":"Role","_key":"30637","_from":"21514","_to":"21513"} +{"$label":"ACTS_IN","name":"D'Arcy","type":"Role","_key":"120028","_from":"21514","_to":"70489"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"89654","_from":"21515","_to":"53052"} +{"$label":"ACTS_IN","name":"Mme Lochet","type":"Role","_key":"62211","_from":"21517","_to":"39172"} +{"$label":"ACTS_IN","name":"Lucienne","type":"Role","_key":"47866","_from":"21517","_to":"31503"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32863","_from":"21517","_to":"22810"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"30653","_from":"21522","_to":"21518"} +{"$label":"ACTS_IN","name":"Marquetti","type":"Role","_key":"30650","_from":"21521","_to":"21518"} +{"$label":"ACTS_IN","name":"le comte de Chalosse","type":"Role","_key":"30649","_from":"21520","_to":"21518"} +{"$label":"ACTS_IN","name":"Marie-H\u00e9l\u00e8ne Perrin","type":"Role","_key":"30647","_from":"21519","_to":"21518"} +{"$label":"ACTS_IN","name":"S\u0153ur Marie-Odile","type":"Role","_key":"48884","_from":"21519","_to":"32047"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31415","_from":"21520","_to":"21948"} +{"$label":"ACTS_IN","name":"Mme Grant","type":"Role","_key":"34397","_from":"21522","_to":"23576"} +{"$label":"ACTS_IN","name":"commissaire","type":"Role","_key":"33835","_from":"21522","_to":"23315"} +{"$label":"ACTS_IN","name":"Violette Pelletier","type":"Role","_key":"30662","_from":"21525","_to":"21523"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Guilbaud","type":"Role","_key":"30659","_from":"21524","_to":"21523"} +{"$label":"ACTS_IN","name":"Jean Milan \/ Ralf Milan","type":"Role","_key":"118110","_from":"21524","_to":"69415"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115742","_from":"21524","_to":"68151"} +{"$label":"ACTS_IN","name":"Commissaire Vernet","type":"Role","_key":"46032","_from":"21524","_to":"30419"} +{"$label":"ACTS_IN","name":"Xavier Langsam","type":"Role","_key":"30690","_from":"21524","_to":"21536"} +{"$label":"ACTS_IN","name":"Lucien Sabatier","type":"Role","_key":"30667","_from":"21524","_to":"21526"} +{"$label":"DIRECTED","_key":"96121","_from":"21524","_to":"56497"} +{"$label":"ACTS_IN","name":"Monsieur Beffroit","type":"Role","_key":"30673","_from":"21529","_to":"21526"} +{"$label":"ACTS_IN","name":"Madame Beffroit","type":"Role","_key":"30672","_from":"21528","_to":"21526"} +{"$label":"ACTS_IN","name":"Brunet","type":"Role","_key":"30671","_from":"21527","_to":"21526"} +{"$label":"ACTS_IN","name":"Pin Pon's Mother","type":"Role","_key":"52227","_from":"21528","_to":"34019"} +{"$label":"ACTS_IN","name":"P\u00e8re Auberger","type":"Role","_key":"30686","_from":"21535","_to":"21530"} +{"$label":"ACTS_IN","name":"Monsieur Groseille","type":"Role","_key":"30683","_from":"21534","_to":"21530"} +{"$label":"ACTS_IN","name":"Madame Groseille","type":"Role","_key":"30682","_from":"21533","_to":"21530"} +{"$label":"ACTS_IN","name":"Josette","type":"Role","_key":"30678","_from":"21532","_to":"21530"} +{"$label":"ACTS_IN","name":"Bernadette Le Quesnoy","type":"Role","_key":"30677","_from":"21531","_to":"21530"} +{"$label":"ACTS_IN","name":"Dany","type":"Role","_key":"32036","_from":"21532","_to":"22318"} +{"$label":"ACTS_IN","name":"Lilith","type":"Role","_key":"30691","_from":"21532","_to":"21536"} +{"$label":"ACTS_IN","name":"Beggar","type":"Role","_key":"43440","_from":"21535","_to":"29017"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30697","_from":"21540","_to":"21536"} +{"$label":"ACTS_IN","name":"Pazou","type":"Role","_key":"30695","_from":"21539","_to":"21536"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"30694","_from":"21538","_to":"21536"} +{"$label":"ACTS_IN","name":"Flo Lemonier","type":"Role","_key":"30692","_from":"21537","_to":"21536"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"71415","_from":"21537","_to":"43302"} +{"$label":"ACTS_IN","name":"Catherine Samie","type":"Role","_key":"54276","_from":"21537","_to":"34846"} +{"$label":"ACTS_IN","name":"Bobo","type":"Role","_key":"68380","_from":"21539","_to":"41963"} +{"$label":"ACTS_IN","name":"P\u00e8re de Charles","type":"Role","_key":"30711","_from":"21544","_to":"21541"} +{"$label":"ACTS_IN","name":"M\u00e8re de Madeleine","type":"Role","_key":"30710","_from":"21543","_to":"21541"} +{"$label":"DIRECTED","_key":"30700","_from":"21542","_to":"21541"} +{"$label":"ACTS_IN","name":"Mizzi","type":"Role","_key":"35119","_from":"21543","_to":"23944"} +{"$label":"ACTS_IN","name":"Zerbine","type":"Role","_key":"33713","_from":"21543","_to":"23260"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix (voice)","type":"Role","_key":"71125","_from":"21544","_to":"43173"} +{"$label":"ACTS_IN","name":"Commissaire Bontemps","type":"Role","_key":"68502","_from":"21544","_to":"42017"} +{"$label":"ACTS_IN","name":"Abraracourcix (voice)","type":"Role","_key":"67544","_from":"21544","_to":"41586"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix (voice)","type":"Role","_key":"53506","_from":"21544","_to":"34548"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix (voice)","type":"Role","_key":"53085","_from":"21544","_to":"34360"} +{"$label":"ACTS_IN","name":"Obelix (voice)","type":"Role","_key":"51178","_from":"21544","_to":"33381"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"38000","_from":"21544","_to":"25724"} +{"$label":"ACTS_IN","name":"le beau-p\u00e8re","type":"Role","_key":"30734","_from":"21547","_to":"21545"} +{"$label":"ACTS_IN","name":"Pauline de G\u00e9ran","type":"Role","_key":"30718","_from":"21546","_to":"21545"} +{"$label":"ACTS_IN","name":"Giuliana Hermil","type":"Role","_key":"30790","_from":"21546","_to":"21588"} +{"$label":"ACTS_IN","name":"Freddy Miles (as Bill Kearns)","type":"Role","_key":"62817","_from":"21547","_to":"39474"} +{"$label":"ACTS_IN","name":"le lieutenant de police","type":"Role","_key":"33676","_from":"21547","_to":"23243"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33053","_from":"21547","_to":"22898"} +{"$label":"ACTS_IN","name":"Carol Boynton","type":"Role","_key":"30744","_from":"21553","_to":"21548"} +{"$label":"ACTS_IN","name":"Lennox Boynton","type":"Role","_key":"30743","_from":"21552","_to":"21548"} +{"$label":"ACTS_IN","name":"Jefferson Cope","type":"Role","_key":"30742","_from":"21551","_to":"21548"} +{"$label":"ACTS_IN","name":"Dr. Sarah King","type":"Role","_key":"30741","_from":"21550","_to":"21548"} +{"$label":"ACTS_IN","name":"Miss Quinton","type":"Role","_key":"30740","_from":"21549","_to":"21548"} +{"$label":"ACTS_IN","name":"Susan Evers","type":"Role","_key":"119140","_from":"21549","_to":"70021"} +{"$label":"ACTS_IN","name":"Marina","type":"Role","_key":"68712","_from":"21550","_to":"42100"} +{"$label":"ACTS_IN","name":"Ben Mears","type":"Role","_key":"69236","_from":"21551","_to":"42339"} +{"$label":"ACTS_IN","name":"Ofc. John Davis","type":"Role","_key":"64823","_from":"21551","_to":"40328"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56090","_from":"21552","_to":"35624"} +{"$label":"ACTS_IN","name":"Pino","type":"Role","_key":"30759","_from":"21564","_to":"21554"} +{"$label":"ACTS_IN","name":"Giuseppe","type":"Role","_key":"30758","_from":"21563","_to":"21554"} +{"$label":"ACTS_IN","name":"Pierre-Fran\u00e7ois Greenrabbit","type":"Role","_key":"30757","_from":"21562","_to":"21554"} +{"$label":"ACTS_IN","name":"Maurice Speedrabbit","type":"Role","_key":"30756","_from":"21561","_to":"21554"} +{"$label":"ACTS_IN","name":"Bruno Helgen","type":"Role","_key":"30754","_from":"21560","_to":"21554"} +{"$label":"ACTS_IN","name":"Sacha Peters","type":"Role","_key":"30753","_from":"21559","_to":"21554"} +{"$label":"ACTS_IN","name":"Chichi","type":"Role","_key":"30751","_from":"21558","_to":"21554"} +{"$label":"ACTS_IN","name":"Alice Doste","type":"Role","_key":"30749","_from":"21557","_to":"21554"} +{"$label":"ACTS_IN","name":"Claire Doste","type":"Role","_key":"30747","_from":"21556","_to":"21554"} +{"$label":"DIRECTED","_key":"30746","_from":"21555","_to":"21554"} +{"$label":"DIRECTED","_key":"111978","_from":"21555","_to":"66100"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"111422","_from":"21556","_to":"65790"} +{"$label":"ACTS_IN","name":"Anne-Marie","type":"Role","_key":"96025","_from":"21556","_to":"56447"} +{"$label":"ACTS_IN","name":"Miss Bertrand","type":"Role","_key":"69873","_from":"21556","_to":"42634"} +{"$label":"ACTS_IN","name":"Jean-Claude Ayache, dit \"Moustique\"","type":"Role","_key":"62720","_from":"21559","_to":"39431"} +{"$label":"ACTS_IN","name":"Philippe Le Riou","type":"Role","_key":"37918","_from":"21560","_to":"25672"} +{"$label":"ACTS_IN","name":"Martinez","type":"Role","_key":"113381","_from":"21562","_to":"66786"} +{"$label":"ACTS_IN","name":"Guillaume Brunel","type":"Role","_key":"101526","_from":"21562","_to":"59761"} +{"$label":"DIRECTED","_key":"101524","_from":"21562","_to":"59761"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"94804","_from":"21564","_to":"55832"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"30771","_from":"21574","_to":"21565"} +{"$label":"ACTS_IN","name":"Ato","type":"Role","_key":"30770","_from":"21573","_to":"21565"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"30769","_from":"21572","_to":"21565"} +{"$label":"ACTS_IN","name":"Beanpole","type":"Role","_key":"30768","_from":"21571","_to":"21565"} +{"$label":"ACTS_IN","name":"Gold Tooth","type":"Role","_key":"30767","_from":"21570","_to":"21565"} +{"$label":"ACTS_IN","name":"Jojo","type":"Role","_key":"30766","_from":"21569","_to":"21565"} +{"$label":"ACTS_IN","name":"Mathew Collins","type":"Role","_key":"30765","_from":"21568","_to":"21565"} +{"$label":"ACTS_IN","name":"Aviva Masters","type":"Role","_key":"30762","_from":"21567","_to":"21565"} +{"$label":"DIRECTED","_key":"30760","_from":"21566","_to":"21565"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"116545","_from":"21567","_to":"68602"} +{"$label":"ACTS_IN","name":"Annabelle Farrell","type":"Role","_key":"62972","_from":"21567","_to":"39541"} +{"$label":"ACTS_IN","name":"Sprungjunkie","type":"Role","_key":"52314","_from":"21567","_to":"34057"} +{"$label":"ACTS_IN","name":"Louise Keaton","type":"Role","_key":"30777","_from":"21581","_to":"21575"} +{"$label":"ACTS_IN","name":"Brian Stratton","type":"Role","_key":"30776","_from":"21580","_to":"21575"} +{"$label":"ACTS_IN","name":"Dr. Ethan Edwards","type":"Role","_key":"30775","_from":"21579","_to":"21575"} +{"$label":"ACTS_IN","name":"Dr. Helen Gilbert","type":"Role","_key":"30774","_from":"21578","_to":"21575"} +{"$label":"ACTS_IN","name":"Roger Gordon","type":"Role","_key":"30773","_from":"21577","_to":"21575"} +{"$label":"DIRECTED","_key":"30772","_from":"21576","_to":"21575"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"30787","_from":"21587","_to":"21582"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"30786","_from":"21586","_to":"21582"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"30785","_from":"21585","_to":"21582"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"30783","_from":"21584","_to":"21582"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"30781","_from":"21583","_to":"21582"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"90382","_from":"21583","_to":"53408"} +{"$label":"ACTS_IN","name":"Generaloberst Friedrich Fromm","type":"Role","_key":"63121","_from":"21583","_to":"39591"} +{"$label":"ACTS_IN","name":"Bernie Weskamp","type":"Role","_key":"53821","_from":"21583","_to":"34675"} +{"$label":"ACTS_IN","name":"Volker","type":"Role","_key":"53654","_from":"21583","_to":"34607"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"46022","_from":"21583","_to":"30414"} +{"$label":"ACTS_IN","name":"Schrott","type":"Role","_key":"40640","_from":"21583","_to":"27367"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"39733","_from":"21583","_to":"26850"} +{"$label":"ACTS_IN","name":"Van Loon","type":"Role","_key":"37257","_from":"21583","_to":"25242"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31687","_from":"21583","_to":"22109"} +{"$label":"ACTS_IN","name":"Polizist Franz","type":"Role","_key":"42901","_from":"21585","_to":"28665"} +{"$label":"ACTS_IN","name":"Peter Haller","type":"Role","_key":"50867","_from":"21586","_to":"33205"} +{"$label":"ACTS_IN","name":"Elviretta","type":"Role","_key":"30798","_from":"21590","_to":"21588"} +{"$label":"ACTS_IN","name":"the Prince","type":"Role","_key":"30797","_from":"21589","_to":"21588"} +{"$label":"ACTS_IN","name":"Jean-Loup","type":"Role","_key":"30922","_from":"21589","_to":"21670"} +{"$label":"ACTS_IN","name":"Henri","type":"Role","_key":"30807","_from":"21595","_to":"21591"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"30806","_from":"21594","_to":"21591"} +{"$label":"ACTS_IN","name":"le notaire","type":"Role","_key":"30805","_from":"21593","_to":"21591"} +{"$label":"ACTS_IN","name":"Lopez","type":"Role","_key":"30804","_from":"21592","_to":"21591"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"30814","_from":"21600","_to":"21596"} +{"$label":"ACTS_IN","name":"Boone","type":"Role","_key":"30813","_from":"21599","_to":"21596"} +{"$label":"ACTS_IN","name":"Hines","type":"Role","_key":"30812","_from":"21598","_to":"21596"} +{"$label":"ACTS_IN","name":"Cerone","type":"Role","_key":"30810","_from":"21597","_to":"21596"} +{"$label":"ACTS_IN","name":"Jay O'Neill","type":"Role","_key":"89238","_from":"21597","_to":"52840"} +{"$label":"ACTS_IN","name":"Richland","type":"Role","_key":"56837","_from":"21598","_to":"36088"} +{"$label":"ACTS_IN","name":"Perfect Tommy","type":"Role","_key":"69507","_from":"21599","_to":"42461"} +{"$label":"ACTS_IN","name":"Sally Dunbar","type":"Role","_key":"115905","_from":"21600","_to":"68234"} +{"$label":"ACTS_IN","name":"Julia Bagley","type":"Role","_key":"101741","_from":"21600","_to":"59882"} +{"$label":"ACTS_IN","name":"Domino","type":"Role","_key":"101356","_from":"21600","_to":"59665"} +{"$label":"ACTS_IN","name":"Juliet Forrest","type":"Role","_key":"53867","_from":"21600","_to":"34691"} +{"$label":"ACTS_IN","name":"Tom Banning","type":"Role","_key":"30824","_from":"21607","_to":"21601"} +{"$label":"ACTS_IN","name":"Edwin Danders","type":"Role","_key":"30823","_from":"21606","_to":"21601"} +{"$label":"ACTS_IN","name":"Paula Kennedy","type":"Role","_key":"30821","_from":"21605","_to":"21601"} +{"$label":"ACTS_IN","name":"Dr. Campbell","type":"Role","_key":"30820","_from":"21604","_to":"21601"} +{"$label":"ACTS_IN","name":"Diane Harper","type":"Role","_key":"30819","_from":"21603","_to":"21601"} +{"$label":"DIRECTED","_key":"30816","_from":"21602","_to":"21601"} +{"$label":"ACTS_IN","name":"Dummy (Voice)","type":"Role","_key":"94011","_from":"21604","_to":"55364"} +{"$label":"ACTS_IN","name":"Lily Wine","type":"Role","_key":"63428","_from":"21605","_to":"39730"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"61414","_from":"21605","_to":"38737"} +{"$label":"ACTS_IN","name":"Nadia Vinogradiya","type":"Role","_key":"53767","_from":"21605","_to":"34654"} +{"$label":"ACTS_IN","name":"Irina Asanova","type":"Role","_key":"48873","_from":"21605","_to":"32046"} +{"$label":"ACTS_IN","name":"Young Joey 'Bats' Pistella","type":"Role","_key":"118937","_from":"21607","_to":"69895"} +{"$label":"ACTS_IN","name":"Lorissa","type":"Role","_key":"30833","_from":"21615","_to":"21608"} +{"$label":"ACTS_IN","name":"Jake Kilpatrick","type":"Role","_key":"30832","_from":"21614","_to":"21608"} +{"$label":"ACTS_IN","name":"Ryan Houston","type":"Role","_key":"30831","_from":"21613","_to":"21608"} +{"$label":"ACTS_IN","name":"Alexandra Stevens","type":"Role","_key":"30830","_from":"21612","_to":"21608"} +{"$label":"ACTS_IN","name":"Carla Masters","type":"Role","_key":"30829","_from":"21611","_to":"21608"} +{"$label":"ACTS_IN","name":"Scott Kinney","type":"Role","_key":"30827","_from":"21610","_to":"21608"} +{"$label":"DIRECTED","_key":"30826","_from":"21609","_to":"21608"} +{"$label":"ACTS_IN","name":"Lt. Jake 'Cool Hand' Grafton","type":"Role","_key":"117952","_from":"21610","_to":"69331"} +{"$label":"ACTS_IN","name":"Jeff Hale","type":"Role","_key":"108866","_from":"21610","_to":"64343"} +{"$label":"ACTS_IN","name":"Ted Baker","type":"Role","_key":"69304","_from":"21610","_to":"42371"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"31012","_from":"21610","_to":"21717"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"57098","_from":"21611","_to":"36232"} +{"$label":"ACTS_IN","name":"Laurel","type":"Role","_key":"68795","_from":"21612","_to":"42150"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"88742","_from":"21613","_to":"52574"} +{"$label":"ACTS_IN","name":"Jeremiah McPherson","type":"Role","_key":"58296","_from":"21614","_to":"36857"} +{"$label":"ACTS_IN","name":"Yakuza Boss","type":"Role","_key":"30845","_from":"21624","_to":"21616"} +{"$label":"ACTS_IN","name":"Jonglierende Fau","type":"Role","_key":"30843","_from":"21623","_to":"21616"} +{"$label":"ACTS_IN","name":"Reisender Mann","type":"Role","_key":"30842","_from":"21622","_to":"21616"} +{"$label":"ACTS_IN","name":"Biker Baldy","type":"Role","_key":"30841","_from":"21621","_to":"21616"} +{"$label":"ACTS_IN","name":"Biker Fatso","type":"Role","_key":"30840","_from":"21620","_to":"21616"} +{"$label":"ACTS_IN","name":"Mann an der Bushaltestelle","type":"Role","_key":"30839","_from":"21619","_to":"21616"} +{"$label":"ACTS_IN","name":"Masaos Grossmutter","type":"Role","_key":"30838","_from":"21618","_to":"21616"} +{"$label":"ACTS_IN","name":"Masao","type":"Role","_key":"30835","_from":"21617","_to":"21616"} +{"$label":"ACTS_IN","name":"Aya Tokunaga","type":"Role","_key":"117620","_from":"21618","_to":"69144"} +{"$label":"ACTS_IN","name":"Tsuyako Yamashita","type":"Role","_key":"110111","_from":"21618","_to":"65066"} +{"$label":"ACTS_IN","name":"Toki","type":"Role","_key":"89433","_from":"21618","_to":"52937"} +{"$label":"DIRECTED","_key":"30857","_from":"21632","_to":"21625"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"30853","_from":"21631","_to":"21625"} +{"$label":"ACTS_IN","name":"Brink","type":"Role","_key":"30852","_from":"21630","_to":"21625"} +{"$label":"ACTS_IN","name":"Henry's Wife","type":"Role","_key":"30851","_from":"21629","_to":"21625"} +{"$label":"ACTS_IN","name":"Indecisive Girlfriend","type":"Role","_key":"30850","_from":"21628","_to":"21625"} +{"$label":"ACTS_IN","name":"Gen. Karpov","type":"Role","_key":"30849","_from":"21627","_to":"21625"} +{"$label":"ACTS_IN","name":"Waiter 1","type":"Role","_key":"30847","_from":"21626","_to":"21625"} +{"$label":"DIRECTED","_key":"103989","_from":"21626","_to":"61172"} +{"$label":"ACTS_IN","name":"TV Direktor","type":"Role","_key":"41791","_from":"21626","_to":"28038"} +{"$label":"ACTS_IN","name":"Bart Columbus","type":"Role","_key":"121021","_from":"21632","_to":"71078"} +{"$label":"DIRECTED","_key":"101107","_from":"21632","_to":"59575"} +{"$label":"ACTS_IN","name":"Eddie T","type":"Role","_key":"30866","_from":"21642","_to":"21633"} +{"$label":"ACTS_IN","name":"Wills","type":"Role","_key":"30865","_from":"21641","_to":"21633"} +{"$label":"ACTS_IN","name":"Mags","type":"Role","_key":"30864","_from":"21640","_to":"21633"} +{"$label":"ACTS_IN","name":"Dawkins","type":"Role","_key":"30863","_from":"21639","_to":"21633"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"30862","_from":"21638","_to":"21633"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"30861","_from":"21637","_to":"21633"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"30860","_from":"21636","_to":"21633"} +{"$label":"ACTS_IN","name":"Det. John Chance","type":"Role","_key":"30859","_from":"21635","_to":"21633"} +{"$label":"DIRECTED","_key":"30858","_from":"21634","_to":"21633"} +{"$label":"ACTS_IN","name":"Mandingo","type":"Role","_key":"56722","_from":"21635","_to":"36022"} +{"$label":"ACTS_IN","name":"Vern Rockwell","type":"Role","_key":"30878","_from":"21648","_to":"21643"} +{"$label":"ACTS_IN","name":"Dr. Brindle","type":"Role","_key":"30877","_from":"21647","_to":"21643"} +{"$label":"ACTS_IN","name":"Coventry","type":"Role","_key":"30874","_from":"21646","_to":"21643"} +{"$label":"ACTS_IN","name":"Dr. Arnold Mayer","type":"Role","_key":"30871","_from":"21645","_to":"21643"} +{"$label":"ACTS_IN","name":"Louise Baltimore","type":"Role","_key":"30870","_from":"21644","_to":"21643"} +{"$label":"ACTS_IN","name":"Georgie Cooper","type":"Role","_key":"52697","_from":"21644","_to":"34211"} +{"$label":"ACTS_IN","name":"Mary Dannon","type":"Role","_key":"44256","_from":"21644","_to":"29492"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"52345","_from":"21645","_to":"34070"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"108854","_from":"21646","_to":"64332"} +{"$label":"ACTS_IN","name":"Ichabod Crane","type":"Role","_key":"54995","_from":"21646","_to":"35149"} +{"$label":"ACTS_IN","name":"Braedon Keller","type":"Role","_key":"54539","_from":"21648","_to":"34950"} +{"$label":"ACTS_IN","name":"Archivmaterial","type":"Role","_key":"30887","_from":"21652","_to":"21649"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"30882","_from":"21651","_to":"21649"} +{"$label":"DIRECTED","_key":"30879","_from":"21650","_to":"21649"} +{"$label":"ACTS_IN","name":"Femme dans la Voiture","type":"Role","_key":"48092","_from":"21652","_to":"31610"} +{"$label":"ACTS_IN","name":"Rebecca Nurse","type":"Role","_key":"30903","_from":"21661","_to":"21653"} +{"$label":"ACTS_IN","name":"Martha Corey","type":"Role","_key":"30902","_from":"21660","_to":"21653"} +{"$label":"ACTS_IN","name":"Gilles Corey","type":"Role","_key":"30901","_from":"21659","_to":"21653"} +{"$label":"ACTS_IN","name":"Willard","type":"Role","_key":"30900","_from":"21658","_to":"21653"} +{"$label":"ACTS_IN","name":"Mary Warren","type":"Role","_key":"30896","_from":"21657","_to":"21653"} +{"$label":"ACTS_IN","name":"Peter Corey","type":"Role","_key":"30895","_from":"21656","_to":"21653"} +{"$label":"ACTS_IN","name":"Reverend Paris","type":"Role","_key":"30893","_from":"21655","_to":"21653"} +{"$label":"DIRECTED","_key":"30888","_from":"21654","_to":"21653"} +{"$label":"ACTS_IN","name":"Baron Roland de la Faille","type":"Role","_key":"42839","_from":"21654","_to":"28642"} +{"$label":"ACTS_IN","name":"Totsky","type":"Role","_key":"33776","_from":"21655","_to":"23281"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"32700","_from":"21656","_to":"22714"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32809","_from":"21657","_to":"22779"} +{"$label":"ACTS_IN","name":"der Schwarze K\u00f6hler","type":"Role","_key":"93240","_from":"21659","_to":"54923"} +{"$label":"ACTS_IN","name":"Lokf\u00fchrer","type":"Role","_key":"42700","_from":"21659","_to":"28577"} +{"$label":"ACTS_IN","name":"L'Altesse","type":"Role","_key":"33735","_from":"21660","_to":"23267"} +{"$label":"ACTS_IN","name":"Tomas","type":"Role","_key":"30917","_from":"21669","_to":"21662"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"30916","_from":"21668","_to":"21662"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"30915","_from":"21667","_to":"21662"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"30914","_from":"21666","_to":"21662"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"30913","_from":"21665","_to":"21662"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"30909","_from":"21664","_to":"21662"} +{"$label":"ACTS_IN","name":"\u00c1ngel","type":"Role","_key":"30908","_from":"21663","_to":"21662"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"114257","_from":"21664","_to":"67295"} +{"$label":"ACTS_IN","name":"Riza Niro","type":"Role","_key":"48511","_from":"21667","_to":"31842"} +{"$label":"ACTS_IN","name":"une \u00e9l\u00e8ve \u00e0 l'\u00e9cole v\u00e9t\u00e9rinaire","type":"Role","_key":"30936","_from":"21675","_to":"21670"} +{"$label":"ACTS_IN","name":"la soeur de Ren\u00e9 Cabourg","type":"Role","_key":"30934","_from":"21674","_to":"21670"} +{"$label":"ACTS_IN","name":"le beau-fr\u00e8re","type":"Role","_key":"30932","_from":"21673","_to":"21670"} +{"$label":"ACTS_IN","name":"Madame Rivolani","type":"Role","_key":"30930","_from":"21672","_to":"21670"} +{"$label":"ACTS_IN","name":"Madame Grazzi","type":"Role","_key":"30928","_from":"21671","_to":"21670"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"34071","_from":"21671","_to":"23415"} +{"$label":"ACTS_IN","name":"Mme Arnaud","type":"Role","_key":"31520","_from":"21671","_to":"22016"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"33374","_from":"21672","_to":"23104"} +{"$label":"ACTS_IN","name":"le cam\u00e9raman","type":"Role","_key":"34606","_from":"21673","_to":"23684"} +{"$label":"ACTS_IN","name":"Albert Merlot","type":"Role","_key":"33683","_from":"21673","_to":"23246"} +{"$label":"ACTS_IN","name":"Albert Merlot","type":"Role","_key":"33668","_from":"21673","_to":"23243"} +{"$label":"ACTS_IN","name":"Albert Merlot","type":"Role","_key":"33651","_from":"21673","_to":"23233"} +{"$label":"ACTS_IN","name":"Blount","type":"Role","_key":"31405","_from":"21673","_to":"21944"} +{"$label":"ACTS_IN","name":"Dicke Franz\u00f6sin","type":"Role","_key":"44173","_from":"21674","_to":"29437"} +{"$label":"ACTS_IN","name":"Brunnmeier","type":"Role","_key":"30946","_from":"21682","_to":"21676"} +{"$label":"ACTS_IN","name":"Frau Pelikan","type":"Role","_key":"30943","_from":"21681","_to":"21676"} +{"$label":"ACTS_IN","name":"General Klotz","type":"Role","_key":"30942","_from":"21680","_to":"21676"} +{"$label":"ACTS_IN","name":"General Ludovico","type":"Role","_key":"30941","_from":"21679","_to":"21676"} +{"$label":"ACTS_IN","name":"General Weingarten","type":"Role","_key":"30940","_from":"21678","_to":"21676"} +{"$label":"DIRECTED","_key":"30939","_from":"21677","_to":"21676"} +{"$label":"DIRECTED","_key":"69659","_from":"21677","_to":"42521"} +{"$label":"DIRECTED","_key":"32954","_from":"21677","_to":"22852"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66586","_from":"21677","_to":"41163"} +{"$label":"ACTS_IN","name":"Lorenz","type":"Role","_key":"62878","_from":"21677","_to":"39506"} +{"$label":"ACTS_IN","name":"Aurelia","type":"Role","_key":"90381","_from":"21681","_to":"53408"} +{"$label":"ACTS_IN","name":"Mutter Nico","type":"Role","_key":"61261","_from":"21681","_to":"38680"} +{"$label":"ACTS_IN","name":"Gabriele Gessmann","type":"Role","_key":"32976","_from":"21681","_to":"22862"} +{"$label":"ACTS_IN","name":"Asterix (voice: German version)","type":"Role","_key":"53385","_from":"21682","_to":"34500"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"30951","_from":"21686","_to":"21683"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"30950","_from":"21685","_to":"21683"} +{"$label":"DIRECTED","_key":"30948","_from":"21684","_to":"21683"} +{"$label":"DIRECTED","_key":"31767","_from":"21684","_to":"22172"} +{"$label":"ACTS_IN","name":"Mme Legendre","type":"Role","_key":"37840","_from":"21685","_to":"25644"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"30960","_from":"21694","_to":"21687"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"30959","_from":"21693","_to":"21687"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"30958","_from":"21692","_to":"21687"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"30957","_from":"21691","_to":"21687"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"30956","_from":"21690","_to":"21687"} +{"$label":"ACTS_IN","name":"Pony","type":"Role","_key":"30955","_from":"21689","_to":"21687"} +{"$label":"DIRECTED","_key":"30953","_from":"21688","_to":"21687"} +{"$label":"DIRECTED","_key":"41999","_from":"21688","_to":"28144"} +{"$label":"DIRECTED","_key":"31429","_from":"21688","_to":"21958"} +{"$label":"DIRECTED","_key":"31339","_from":"21688","_to":"21912"} +{"$label":"DIRECTED","_key":"31308","_from":"21688","_to":"21896"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"30969","_from":"21697","_to":"21695"} +{"$label":"DIRECTED","_key":"30962","_from":"21696","_to":"21695"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"68448","_from":"21697","_to":"41988"} +{"$label":"ACTS_IN","name":"Cardinal Jacob Cajetan","type":"Role","_key":"38411","_from":"21697","_to":"25944"} +{"$label":"ACTS_IN","name":"Ruppert \/ Federico","type":"Role","_key":"35749","_from":"21697","_to":"24292"} +{"$label":"ACTS_IN","name":"Julien Eschenbach","type":"Role","_key":"33815","_from":"21697","_to":"23307"} +{"$label":"ACTS_IN","name":"Regisseur","type":"Role","_key":"33786","_from":"21697","_to":"23287"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"31383","_from":"21697","_to":"21938"} +{"$label":"ACTS_IN","name":"Walter aus dem Elefanten","type":"Role","_key":"30993","_from":"21712","_to":"21698"} +{"$label":"ACTS_IN","name":"T\u00fcrkischer Imbissbesitzer","type":"Role","_key":"30992","_from":"21711","_to":"21698"} +{"$label":"ACTS_IN","name":"DDR-Z\u00f6llner","type":"Role","_key":"30991","_from":"21710","_to":"21698"} +{"$label":"ACTS_IN","name":"Christine, Karls Freundin","type":"Role","_key":"30989","_from":"21709","_to":"21698"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"30988","_from":"21708","_to":"21698"} +{"$label":"ACTS_IN","name":"Detlef, die Lederuschi","type":"Role","_key":"30987","_from":"21707","_to":"21698"} +{"$label":"ACTS_IN","name":"Kiffer","type":"Role","_key":"30986","_from":"21706","_to":"21698"} +{"$label":"ACTS_IN","name":"Polizist 2","type":"Role","_key":"30985","_from":"21705","_to":"21698"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"30982","_from":"21704","_to":"21698"} +{"$label":"ACTS_IN","name":"Sylvio","type":"Role","_key":"30981","_from":"21703","_to":"21698"} +{"$label":"ACTS_IN","name":"Erwin","type":"Role","_key":"30977","_from":"21702","_to":"21698"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"30976","_from":"21701","_to":"21698"} +{"$label":"ACTS_IN","name":"J\u00fcrgen","type":"Role","_key":"30975","_from":"21700","_to":"21698"} +{"$label":"ACTS_IN","name":"Katrin, die sch\u00f6ne K\u00f6chin","type":"Role","_key":"30972","_from":"21699","_to":"21698"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42220","_from":"21703","_to":"28267"} +{"$label":"ACTS_IN","name":"Sonny Malone","type":"Role","_key":"105370","_from":"21704","_to":"61996"} +{"$label":"ACTS_IN","name":"Swan","type":"Role","_key":"70072","_from":"21704","_to":"42721"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"39225","_from":"21704","_to":"26519"} +{"$label":"ACTS_IN","name":"Bernhard","type":"Role","_key":"88631","_from":"21705","_to":"52511"} +{"$label":"DIRECTED","_key":"69293","_from":"21712","_to":"42358"} +{"$label":"DIRECTED","_key":"54802","_from":"21712","_to":"35060"} +{"$label":"DIRECTED","_key":"51898","_from":"21712","_to":"33851"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"31008","_from":"21716","_to":"21713"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"31007","_from":"21715","_to":"21713"} +{"$label":"ACTS_IN","name":"Pete Komisky","type":"Role","_key":"31004","_from":"21714","_to":"21713"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115638","_from":"21714","_to":"68076"} +{"$label":"ACTS_IN","name":"Alex Sheldon","type":"Role","_key":"114057","_from":"21714","_to":"67169"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110304","_from":"21714","_to":"65180"} +{"$label":"ACTS_IN","name":"Det. Dwight Garson","type":"Role","_key":"103965","_from":"21714","_to":"61155"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"102743","_from":"21714","_to":"60442"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"102329","_from":"21714","_to":"60206"} +{"$label":"ACTS_IN","name":"Anthony Adams","type":"Role","_key":"95869","_from":"21714","_to":"56383"} +{"$label":"ACTS_IN","name":"Henry Poole","type":"Role","_key":"92636","_from":"21714","_to":"54680"} +{"$label":"ACTS_IN","name":"Dorian Montier","type":"Role","_key":"89083","_from":"21714","_to":"52771"} +{"$label":"ACTS_IN","name":"Wendell Baker","type":"Role","_key":"88531","_from":"21714","_to":"52472"} +{"$label":"ACTS_IN","name":"Mitch Martin \u201eThe Godfather\u201c","type":"Role","_key":"71187","_from":"21714","_to":"43207"} +{"$label":"ACTS_IN","name":"Carlson","type":"Role","_key":"67205","_from":"21714","_to":"41452"} +{"$label":"ACTS_IN","name":"David Fox","type":"Role","_key":"62430","_from":"21714","_to":"39330"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"54070","_from":"21714","_to":"34775"} +{"$label":"ACTS_IN","name":"Richie Tenenbaum","type":"Role","_key":"53795","_from":"21714","_to":"34665"} +{"$label":"ACTS_IN","name":"Ben Stone","type":"Role","_key":"52241","_from":"21714","_to":"34024"} +{"$label":"ACTS_IN","name":"Emmett Richmond","type":"Role","_key":"50942","_from":"21714","_to":"33247"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"48265","_from":"21714","_to":"31704"} +{"$label":"ACTS_IN","name":"Joe Bauers","type":"Role","_key":"47002","_from":"21714","_to":"30989"} +{"$label":"ACTS_IN","name":"Matt Saunders","type":"Role","_key":"31948","_from":"21714","_to":"22284"} +{"$label":"DIRECTED","_key":"88530","_from":"21714","_to":"52472"} +{"$label":"ACTS_IN","name":"Dylan Schmultz-Plutzker","type":"Role","_key":"97042","_from":"21715","_to":"57090"} +{"$label":"ACTS_IN","name":"Gord Brody","type":"Role","_key":"93090","_from":"21715","_to":"54874"} +{"$label":"ACTS_IN","name":"Walter P. 'Duff' Duffy","type":"Role","_key":"91427","_from":"21715","_to":"53926"} +{"$label":"DIRECTED","_key":"93089","_from":"21715","_to":"54874"} +{"$label":"ACTS_IN","name":"Luther Pinks","type":"Role","_key":"117447","_from":"21716","_to":"69070"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116129","_from":"21716","_to":"68369"} +{"$label":"ACTS_IN","name":"Sean Matthews","type":"Role","_key":"112083","_from":"21716","_to":"66181"} +{"$label":"ACTS_IN","name":"Gabe Jensen","type":"Role","_key":"109640","_from":"21716","_to":"64758"} +{"$label":"ACTS_IN","name":"Bobby Mason","type":"Role","_key":"109345","_from":"21716","_to":"64596"} +{"$label":"ACTS_IN","name":"Ronald 'Ronny' Jones","type":"Role","_key":"71489","_from":"21716","_to":"43330"} +{"$label":"ACTS_IN","name":"Marcus Ridley","type":"Role","_key":"70483","_from":"21716","_to":"42911"} +{"$label":"ACTS_IN","name":"Officer Rafe Deed","type":"Role","_key":"60124","_from":"21716","_to":"37937"} +{"$label":"ACTS_IN","name":"Julian Washington","type":"Role","_key":"54721","_from":"21716","_to":"35030"} +{"$label":"ACTS_IN","name":"Deacon 'Deke' Kay","type":"Role","_key":"52630","_from":"21716","_to":"34193"} +{"$label":"ACTS_IN","name":"Sherman 'Preacher' Dudley","type":"Role","_key":"51456","_from":"21716","_to":"33562"} +{"$label":"ACTS_IN","name":"Doc Rayburn","type":"Role","_key":"31019","_from":"21723","_to":"21717"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"31018","_from":"21722","_to":"21717"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"31017","_from":"21721","_to":"21717"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"31016","_from":"21720","_to":"21717"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"31014","_from":"21719","_to":"21717"} +{"$label":"DIRECTED","_key":"31011","_from":"21718","_to":"21717"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"95580","_from":"21718","_to":"56195"} +{"$label":"DIRECTED","_key":"95556","_from":"21718","_to":"56195"} +{"$label":"DIRECTED","_key":"69860","_from":"21718","_to":"42628"} +{"$label":"DIRECTED","_key":"68876","_from":"21718","_to":"42186"} +{"$label":"ACTS_IN","name":"Robert Eisenberg","type":"Role","_key":"95044","_from":"21719","_to":"55950"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"94204","_from":"21720","_to":"55472"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"68243","_from":"21720","_to":"41905"} +{"$label":"ACTS_IN","name":"Cruiser Cop #3","type":"Role","_key":"31042","_from":"21733","_to":"21724"} +{"$label":"ACTS_IN","name":"Cult Leader","type":"Role","_key":"31041","_from":"21732","_to":"21724"} +{"$label":"ACTS_IN","name":"Woman in Hotel Lobby","type":"Role","_key":"31040","_from":"21731","_to":"21724"} +{"$label":"ACTS_IN","name":"Ballroom Woman","type":"Role","_key":"31036","_from":"21730","_to":"21724"} +{"$label":"ACTS_IN","name":"Assistant Undertaker","type":"Role","_key":"31032","_from":"21729","_to":"21724"} +{"$label":"ACTS_IN","name":"Loan Office Cop","type":"Role","_key":"31030","_from":"21728","_to":"21724"} +{"$label":"ACTS_IN","name":"Loan Secretary","type":"Role","_key":"31028","_from":"21727","_to":"21724"} +{"$label":"ACTS_IN","name":"Cemetery Cop","type":"Role","_key":"31027","_from":"21726","_to":"21724"} +{"$label":"DIRECTED","_key":"31020","_from":"21725","_to":"21724"} +{"$label":"ACTS_IN","name":"Clay Easton","type":"Role","_key":"96008","_from":"21726","_to":"56439"} +{"$label":"ACTS_IN","name":"Blane McDonough","type":"Role","_key":"70397","_from":"21726","_to":"42871"} +{"$label":"ACTS_IN","name":"Jimmy Fields","type":"Role","_key":"67130","_from":"21726","_to":"41425"} +{"$label":"ACTS_IN","name":"Jonathan Switcher","type":"Role","_key":"59498","_from":"21726","_to":"37569"} +{"$label":"ACTS_IN","name":"Larry Wilson","type":"Role","_key":"50094","_from":"21726","_to":"32773"} +{"$label":"ACTS_IN","name":"Larry Wilson","type":"Role","_key":"50086","_from":"21726","_to":"32766"} +{"$label":"ACTS_IN","name":"Richard Grace","type":"Role","_key":"48396","_from":"21726","_to":"31764"} +{"$label":"ACTS_IN","name":"Lydia Lynch","type":"Role","_key":"32539","_from":"21727","_to":"22626"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"115998","_from":"21728","_to":"68313"} +{"$label":"ACTS_IN","name":"Tony Brooks","type":"Role","_key":"113770","_from":"21728","_to":"67037"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110866","_from":"21728","_to":"65485"} +{"$label":"ACTS_IN","name":"Gunther","type":"Role","_key":"106120","_from":"21728","_to":"62496"} +{"$label":"ACTS_IN","name":"Fausto Squiriniszu","type":"Role","_key":"72822","_from":"21728","_to":"43870"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"53097","_from":"21728","_to":"34363"} +{"$label":"ACTS_IN","name":"Ann Culver","type":"Role","_key":"120337","_from":"21730","_to":"70686"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"100020","_from":"21730","_to":"59004"} +{"$label":"ACTS_IN","name":"Nadia (voice)","type":"Role","_key":"97730","_from":"21730","_to":"57545"} +{"$label":"ACTS_IN","name":"Veronique Ukrinsky","type":"Role","_key":"63911","_from":"21730","_to":"39925"} +{"$label":"ACTS_IN","name":"Allison Page \/ Sally Jones","type":"Role","_key":"55108","_from":"21730","_to":"35188"} +{"$label":"ACTS_IN","name":"Hattie Stubbs","type":"Role","_key":"41682","_from":"21730","_to":"27972"} +{"$label":"ACTS_IN","name":"Vampire Girl","type":"Role","_key":"63777","_from":"21731","_to":"39871"} +{"$label":"ACTS_IN","name":"Yzma","type":"Role","_key":"94410","_from":"21732","_to":"55586"} +{"$label":"ACTS_IN","name":"Freya","type":"Role","_key":"72241","_from":"21732","_to":"43649"} +{"$label":"ACTS_IN","name":"Yzma (voice)","type":"Role","_key":"71578","_from":"21732","_to":"43357"} +{"$label":"ACTS_IN","name":"Lady Eloise","type":"Role","_key":"67664","_from":"21732","_to":"41628"} +{"$label":"ACTS_IN","name":"Patrolman Jamie","type":"Role","_key":"63776","_from":"21733","_to":"39871"} +{"$label":"DIRECTED","_key":"31059","_from":"21747","_to":"21734"} +{"$label":"ACTS_IN","name":"Archivar","type":"Role","_key":"31058","_from":"21746","_to":"21734"} +{"$label":"ACTS_IN","name":"Carolin","type":"Role","_key":"31057","_from":"21745","_to":"21734"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"31056","_from":"21744","_to":"21734"} +{"$label":"ACTS_IN","name":"Archivar Schulz","type":"Role","_key":"31054","_from":"21743","_to":"21734"} +{"$label":"ACTS_IN","name":"Frau Juckenack","type":"Role","_key":"31053","_from":"21742","_to":"21734"} +{"$label":"ACTS_IN","name":"Sonjas Onkel","type":"Role","_key":"31052","_from":"21741","_to":"21734"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"31051","_from":"21740","_to":"21734"} +{"$label":"ACTS_IN","name":"Paul Rosenberger","type":"Role","_key":"31050","_from":"21739","_to":"21734"} +{"$label":"ACTS_IN","name":"Sonjas Gro\u00dfmutter","type":"Role","_key":"31049","_from":"21738","_to":"21734"} +{"$label":"ACTS_IN","name":"Sonjas Mutter","type":"Role","_key":"31048","_from":"21737","_to":"21734"} +{"$label":"ACTS_IN","name":"Juckenack","type":"Role","_key":"31047","_from":"21736","_to":"21734"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"31046","_from":"21735","_to":"21734"} +{"$label":"ACTS_IN","name":"Johanns Mutter","type":"Role","_key":"90315","_from":"21735","_to":"53386"} +{"$label":"ACTS_IN","name":"Sophie Scholl","type":"Role","_key":"67593","_from":"21735","_to":"41609"} +{"$label":"ACTS_IN","name":"Eva T\u00e4schner","type":"Role","_key":"50870","_from":"21735","_to":"33205"} +{"$label":"ACTS_IN","name":"Miriam S\u00fc\u00dfmann","type":"Role","_key":"42896","_from":"21735","_to":"28665"} +{"$label":"ACTS_IN","name":"Marie Stocker","type":"Role","_key":"66549","_from":"21737","_to":"41143"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40646","_from":"21737","_to":"27367"} +{"$label":"ACTS_IN","name":"Mrs. Korb-Oberlaender","type":"Role","_key":"34370","_from":"21737","_to":"23569"} +{"$label":"ACTS_IN","name":"Gerdi Reiche","type":"Role","_key":"33210","_from":"21737","_to":"23001"} +{"$label":"ACTS_IN","name":"Dr. Wilms","type":"Role","_key":"46785","_from":"21739","_to":"30866"} +{"$label":"ACTS_IN","name":"Herr Zander","type":"Role","_key":"33221","_from":"21739","_to":"23008"} +{"$label":"ACTS_IN","name":"Ulrich Steininger","type":"Role","_key":"43042","_from":"21740","_to":"28745"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"44568","_from":"21742","_to":"29666"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"43122","_from":"21743","_to":"28795"} +{"$label":"ACTS_IN","name":"Bauer Barz","type":"Role","_key":"40650","_from":"21743","_to":"27367"} +{"$label":"ACTS_IN","name":"Studienrat Dr. Kn\u00f6rz","type":"Role","_key":"88885","_from":"21746","_to":"52663"} +{"$label":"ACTS_IN","name":"Prof. Milius","type":"Role","_key":"72690","_from":"21746","_to":"43802"} +{"$label":"ACTS_IN","name":"Ottokar M\u00fcmmelmann","type":"Role","_key":"71536","_from":"21746","_to":"43345"} +{"$label":"ACTS_IN","name":"Robert's Father","type":"Role","_key":"66067","_from":"21746","_to":"40882"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"54635","_from":"21746","_to":"34989"} +{"$label":"ACTS_IN","name":"Fridolin","type":"Role","_key":"45366","_from":"21746","_to":"30082"} +{"$label":"ACTS_IN","name":"Notar","type":"Role","_key":"41247","_from":"21746","_to":"27738"} +{"$label":"ACTS_IN","name":"Oskar Jennerwein","type":"Role","_key":"40402","_from":"21746","_to":"27239"} +{"$label":"ACTS_IN","name":"Onkel Troll","type":"Role","_key":"40315","_from":"21746","_to":"27196"} +{"$label":"ACTS_IN","name":"Alfons Short","type":"Role","_key":"38203","_from":"21746","_to":"25812"} +{"$label":"ACTS_IN","name":"Dr. Kn\u00f6rz","type":"Role","_key":"33542","_from":"21746","_to":"23194"} +{"$label":"DIRECTED","_key":"44592","_from":"21746","_to":"29680"} +{"$label":"DIRECTED","_key":"43752","_from":"21746","_to":"29221"} +{"$label":"DIRECTED","_key":"67599","_from":"21747","_to":"41609"} +{"$label":"DIRECTED","_key":"31065","_from":"21753","_to":"21748"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"31064","_from":"21752","_to":"21748"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"31063","_from":"21751","_to":"21748"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"31062","_from":"21750","_to":"21748"} +{"$label":"ACTS_IN","name":"Svenja","type":"Role","_key":"31060","_from":"21749","_to":"21748"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"118266","_from":"21750","_to":"69515"} +{"$label":"ACTS_IN","name":"Tommy O'Dwyer","type":"Role","_key":"108325","_from":"21750","_to":"64036"} +{"$label":"ACTS_IN","name":"Briony Tallis- Age 13","type":"Role","_key":"31070","_from":"21756","_to":"21754"} +{"$label":"DIRECTED","_key":"31066","_from":"21755","_to":"21754"} +{"$label":"DIRECTED","_key":"111906","_from":"21755","_to":"66064"} +{"$label":"DIRECTED","_key":"31095","_from":"21755","_to":"21757"} +{"$label":"ACTS_IN","name":"Izzie","type":"Role","_key":"102766","_from":"21756","_to":"60460"} +{"$label":"ACTS_IN","name":"Benji McGarvie","type":"Role","_key":"97396","_from":"21756","_to":"57355"} +{"$label":"ACTS_IN","name":"Lina Mayfleet","type":"Role","_key":"95375","_from":"21756","_to":"56102"} +{"$label":"ACTS_IN","name":"Susie Salmon","type":"Role","_key":"47625","_from":"21756","_to":"31382"} +{"$label":"ACTS_IN","name":"Georgiana Darcy","type":"Role","_key":"31094","_from":"21769","_to":"21757"} +{"$label":"ACTS_IN","name":"Miss de Bourg","type":"Role","_key":"31092","_from":"21768","_to":"21757"} +{"$label":"ACTS_IN","name":"Mr. Wickham","type":"Role","_key":"31089","_from":"21767","_to":"21757"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"31088","_from":"21766","_to":"21757"} +{"$label":"ACTS_IN","name":"Mrs. Hill","type":"Role","_key":"31087","_from":"21765","_to":"21757"} +{"$label":"ACTS_IN","name":"Netherfield Butler","type":"Role","_key":"31086","_from":"21764","_to":"21757"} +{"$label":"ACTS_IN","name":"Mr. Bingley","type":"Role","_key":"31084","_from":"21763","_to":"21757"} +{"$label":"ACTS_IN","name":"Sir William Lucas","type":"Role","_key":"31083","_from":"21762","_to":"21757"} +{"$label":"ACTS_IN","name":"Charlotte Lucas","type":"Role","_key":"31082","_from":"21761","_to":"21757"} +{"$label":"ACTS_IN","name":"Kitty Bennet","type":"Role","_key":"31079","_from":"21760","_to":"21757"} +{"$label":"ACTS_IN","name":"Mary Bennet","type":"Role","_key":"31077","_from":"21759","_to":"21757"} +{"$label":"ACTS_IN","name":"Jane Bennet","type":"Role","_key":"31076","_from":"21758","_to":"21757"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"121604","_from":"21758","_to":"71444"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"116814","_from":"21758","_to":"68771"} +{"$label":"ACTS_IN","name":"Samantha Grimm","type":"Role","_key":"50890","_from":"21758","_to":"33214"} +{"$label":"ACTS_IN","name":"Elizabeth Malet","type":"Role","_key":"47143","_from":"21758","_to":"31080"} +{"$label":"ACTS_IN","name":"Annabelle Fritton","type":"Role","_key":"65425","_from":"21759","_to":"40563"} +{"$label":"ACTS_IN","name":"Isabella Thorpe","type":"Role","_key":"114894","_from":"21760","_to":"67666"} +{"$label":"ACTS_IN","name":"Mabel Nesbitt","type":"Role","_key":"36879","_from":"21761","_to":"24998"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"35861","_from":"21761","_to":"24344"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"98319","_from":"21763","_to":"57908"} +{"$label":"ACTS_IN","name":"Edward Vanderman","type":"Role","_key":"47664","_from":"21763","_to":"31400"} +{"$label":"ACTS_IN","name":"Edward Austen-Knight","type":"Role","_key":"114878","_from":"21764","_to":"67661"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"63719","_from":"21766","_to":"39839"} +{"$label":"ACTS_IN","name":"Prince Albert","type":"Role","_key":"115821","_from":"21767","_to":"68180"} +{"$label":"ACTS_IN","name":"Renzo Daverio \/ Spoletta","type":"Role","_key":"111618","_from":"21767","_to":"65897"} +{"$label":"ACTS_IN","name":"Sandy Mardell","type":"Role","_key":"57907","_from":"21767","_to":"36634"} +{"$label":"ACTS_IN","name":"Demetrius","type":"Role","_key":"55879","_from":"21767","_to":"35542"} +{"$label":"ACTS_IN","name":"Downs","type":"Role","_key":"47149","_from":"21767","_to":"31080"} +{"$label":"ACTS_IN","name":"Mr. Adrian","type":"Role","_key":"31117","_from":"21782","_to":"21771"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"31116","_from":"21781","_to":"21771"} +{"$label":"ACTS_IN","name":"Lourdes Jimenez","type":"Role","_key":"31115","_from":"21780","_to":"21771"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"31114","_from":"21779","_to":"21771"} +{"$label":"ACTS_IN","name":"Domingo Esparza","type":"Role","_key":"31113","_from":"21778","_to":"21771"} +{"$label":"ACTS_IN","name":"Marco Antonio Salamanca","type":"Role","_key":"31112","_from":"21777","_to":"21771"} +{"$label":"ACTS_IN","name":"Frank Kozerski","type":"Role","_key":"31111","_from":"21776","_to":"21771"} +{"$label":"ACTS_IN","name":"Senator Rawlings","type":"Role","_key":"31110","_from":"21775","_to":"21771"} +{"$label":"ACTS_IN","name":"Elena Diaz","type":"Role","_key":"31109","_from":"21774","_to":"21771"} +{"$label":"ACTS_IN","name":"Eva Jimenez","type":"Role","_key":"31107","_from":"21773","_to":"21771"} +{"$label":"DIRECTED","_key":"31103","_from":"21772","_to":"21771"} +{"$label":"DIRECTED","_key":"112233","_from":"21772","_to":"66286"} +{"$label":"DIRECTED","_key":"106760","_from":"21772","_to":"62940"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"46610","_from":"21774","_to":"30786"} +{"$label":"ACTS_IN","name":"Rip Van Kelt","type":"Role","_key":"101429","_from":"21776","_to":"59708"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"60884","_from":"21776","_to":"38466"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37241","_from":"21777","_to":"25221"} +{"$label":"ACTS_IN","name":"Cholo Manelli","type":"Role","_key":"97927","_from":"21779","_to":"57668"} +{"$label":"ACTS_IN","name":"Melquiades Estrada","type":"Role","_key":"47893","_from":"21779","_to":"31514"} +{"$label":"ACTS_IN","name":"Rosa Xuncax","type":"Role","_key":"112234","_from":"21780","_to":"66286"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"104214","_from":"21782","_to":"61310"} +{"$label":"ACTS_IN","name":"Deputy Harley Duncan","type":"Role","_key":"90922","_from":"21782","_to":"53634"} +{"$label":"ACTS_IN","name":"Bug Wendal (as Brandon Mychal Smith)","type":"Role","_key":"56464","_from":"21782","_to":"35870"} +{"$label":"ACTS_IN","name":"Stariji inspektor","type":"Role","_key":"31130","_from":"21793","_to":"21783"} +{"$label":"ACTS_IN","name":"Kosta Antic","type":"Role","_key":"31129","_from":"21792","_to":"21783"} +{"$label":"ACTS_IN","name":"Vlada","type":"Role","_key":"31128","_from":"21791","_to":"21783"} +{"$label":"ACTS_IN","name":"Petars Bruder","type":"Role","_key":"31127","_from":"21790","_to":"21783"} +{"$label":"ACTS_IN","name":"Nemanja","type":"Role","_key":"31126","_from":"21789","_to":"21783"} +{"$label":"ACTS_IN","name":"Moma","type":"Role","_key":"31125","_from":"21788","_to":"21783"} +{"$label":"ACTS_IN","name":"Jelena","type":"Role","_key":"31121","_from":"21787","_to":"21783"} +{"$label":"ACTS_IN","name":"Marija","type":"Role","_key":"31120","_from":"21786","_to":"21783"} +{"$label":"ACTS_IN","name":"Mladen","type":"Role","_key":"31119","_from":"21785","_to":"21783"} +{"$label":"DIRECTED","_key":"31118","_from":"21784","_to":"21783"} +{"$label":"ACTS_IN","name":"Katrin Brand","type":"Role","_key":"50614","_from":"21787","_to":"33053"} +{"$label":"ACTS_IN","name":"Franziska","type":"Role","_key":"50167","_from":"21787","_to":"32800"} +{"$label":"ACTS_IN","name":"Onkel Ante","type":"Role","_key":"42596","_from":"21792","_to":"28516"} +{"$label":"ACTS_IN","name":"Radovan","type":"Role","_key":"103930","_from":"21793","_to":"61129"} +{"$label":"ACTS_IN","name":"Sternm\u00fcller","type":"Role","_key":"31170","_from":"21821","_to":"21794"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"31169","_from":"21820","_to":"21794"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin","type":"Role","_key":"31168","_from":"21819","_to":"21794"} +{"$label":"ACTS_IN","name":"Helga Haddenhorst","type":"Role","_key":"31167","_from":"21818","_to":"21794"} +{"$label":"ACTS_IN","name":"Stefanies Tanzpartner","type":"Role","_key":"31166","_from":"21817","_to":"21794"} +{"$label":"ACTS_IN","name":"Isabel Mende","type":"Role","_key":"31165","_from":"21816","_to":"21794"} +{"$label":"ACTS_IN","name":"Elisabeth Huhn","type":"Role","_key":"31164","_from":"21815","_to":"21794"} +{"$label":"ACTS_IN","name":"Anwalt Virno","type":"Role","_key":"31163","_from":"21814","_to":"21794"} +{"$label":"ACTS_IN","name":"Amtsrichter Ring","type":"Role","_key":"31162","_from":"21813","_to":"21794"} +{"$label":"ACTS_IN","name":"Dr. Matthias","type":"Role","_key":"31159","_from":"21812","_to":"21794"} +{"$label":"ACTS_IN","name":"Prof. Waschmann","type":"Role","_key":"31158","_from":"21811","_to":"21794"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"31157","_from":"21810","_to":"21794"} +{"$label":"ACTS_IN","name":"Oberst Drasch","type":"Role","_key":"31156","_from":"21809","_to":"21794"} +{"$label":"ACTS_IN","name":"Stutzdorf","type":"Role","_key":"31155","_from":"21808","_to":"21794"} +{"$label":"ACTS_IN","name":"Sara Weinert","type":"Role","_key":"31153","_from":"21807","_to":"21794"} +{"$label":"ACTS_IN","name":"Lutz Flammer","type":"Role","_key":"31152","_from":"21806","_to":"21794"} +{"$label":"ACTS_IN","name":"Frau Brunnh\u00f6fer","type":"Role","_key":"31151","_from":"21805","_to":"21794"} +{"$label":"ACTS_IN","name":"Schmidt-Gr\u00e4ber","type":"Role","_key":"31150","_from":"21804","_to":"21794"} +{"$label":"ACTS_IN","name":"Astrid Rosskul","type":"Role","_key":"31149","_from":"21803","_to":"21794"} +{"$label":"ACTS_IN","name":"Pfeffer","type":"Role","_key":"31148","_from":"21802","_to":"21794"} +{"$label":"ACTS_IN","name":"Schmeringer","type":"Role","_key":"31145","_from":"21801","_to":"21794"} +{"$label":"ACTS_IN","name":"Gerber","type":"Role","_key":"31144","_from":"21800","_to":"21794"} +{"$label":"ACTS_IN","name":"Frau Pucher","type":"Role","_key":"31143","_from":"21799","_to":"21794"} +{"$label":"ACTS_IN","name":"Ernst Virno","type":"Role","_key":"31141","_from":"21798","_to":"21794"} +{"$label":"ACTS_IN","name":"Stephanie Virno","type":"Role","_key":"31138","_from":"21797","_to":"21794"} +{"$label":"ACTS_IN","name":"Dr. Vogt","type":"Role","_key":"31137","_from":"21796","_to":"21794"} +{"$label":"ACTS_IN","name":"Dr. Dietrich Schwarz","type":"Role","_key":"31136","_from":"21795","_to":"21794"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"68423","_from":"21797","_to":"41974"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"64775","_from":"21797","_to":"40312"} +{"$label":"ACTS_IN","name":"Rotk\u00e4ppchen","type":"Role","_key":"56967","_from":"21797","_to":"36144"} +{"$label":"ACTS_IN","name":"Merle Ohmsen","type":"Role","_key":"39681","_from":"21797","_to":"26819"} +{"$label":"ACTS_IN","name":"Katzke","type":"Role","_key":"34372","_from":"21800","_to":"23569"} +{"$label":"ACTS_IN","name":"Hellmuth","type":"Role","_key":"33437","_from":"21800","_to":"23140"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42490","_from":"21801","_to":"28443"} +{"$label":"ACTS_IN","name":"Lothar","type":"Role","_key":"42177","_from":"21806","_to":"28249"} +{"$label":"ACTS_IN","name":"Jeanny","type":"Role","_key":"69448","_from":"21816","_to":"42439"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"67713","_from":"21816","_to":"41641"} +{"$label":"ACTS_IN","name":"Marlene Dietrich","type":"Role","_key":"63102","_from":"21816","_to":"39589"} +{"$label":"ACTS_IN","name":"Regina Toelle","type":"Role","_key":"61804","_from":"21816","_to":"38905"} +{"$label":"ACTS_IN","name":"Woman in Porsche","type":"Role","_key":"55454","_from":"21816","_to":"35342"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"45427","_from":"21816","_to":"30110"} +{"$label":"ACTS_IN","name":"Frau Kitzelbach","type":"Role","_key":"37111","_from":"21816","_to":"25144"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"33281","_from":"21816","_to":"23060"} +{"$label":"ACTS_IN","name":"Melba Dessaul","type":"Role","_key":"32956","_from":"21816","_to":"22852"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"31385","_from":"21816","_to":"21938"} +{"$label":"ACTS_IN","name":"Erika Galetschky","type":"Role","_key":"67405","_from":"21818","_to":"41528"} +{"$label":"ACTS_IN","name":"Jeanette Fielmann","type":"Role","_key":"63658","_from":"21818","_to":"39822"} +{"$label":"ACTS_IN","name":"Saskia Jansen","type":"Role","_key":"42144","_from":"21818","_to":"28231"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39745","_from":"21818","_to":"26850"} +{"$label":"DIRECTED","_key":"51437","_from":"21821","_to":"33555"} +{"$label":"DIRECTED","_key":"31181","_from":"21828","_to":"21822"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"31180","_from":"21827","_to":"21822"} +{"$label":"ACTS_IN","name":"Marge Mavalle","type":"Role","_key":"31178","_from":"21826","_to":"21822"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"31176","_from":"21825","_to":"21822"} +{"$label":"ACTS_IN","name":"Melvis","type":"Role","_key":"31175","_from":"21824","_to":"21822"} +{"$label":"ACTS_IN","name":"Paul Watterman","type":"Role","_key":"31173","_from":"21823","_to":"21822"} +{"$label":"ACTS_IN","name":"Bonnie Rumsfield","type":"Role","_key":"73091","_from":"21826","_to":"43971"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"70575","_from":"21826","_to":"42937"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36945","_from":"21826","_to":"25042"} +{"$label":"ACTS_IN","name":"Bailly","type":"Role","_key":"31200","_from":"21838","_to":"21829"} +{"$label":"ACTS_IN","name":"Valaze","type":"Role","_key":"31199","_from":"21837","_to":"21829"} +{"$label":"ACTS_IN","name":"La Tour du Pin","type":"Role","_key":"31198","_from":"21836","_to":"21829"} +{"$label":"ACTS_IN","name":"Larivi\u00e8re","type":"Role","_key":"31193","_from":"21835","_to":"21829"} +{"$label":"ACTS_IN","name":"Lt. de Busne","type":"Role","_key":"31192","_from":"21834","_to":"21829"} +{"$label":"ACTS_IN","name":"Rosalie","type":"Role","_key":"31191","_from":"21833","_to":"21829"} +{"$label":"ACTS_IN","name":"Tronson du Coudray","type":"Role","_key":"31190","_from":"21832","_to":"21829"} +{"$label":"ACTS_IN","name":"Chauveau-Lagarde","type":"Role","_key":"31189","_from":"21831","_to":"21829"} +{"$label":"ACTS_IN","name":"Fabricius","type":"Role","_key":"31187","_from":"21830","_to":"21829"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"34348","_from":"21830","_to":"23558"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"121665","_from":"21831","_to":"71474"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"61883","_from":"21831","_to":"38949"} +{"$label":"ACTS_IN","name":"Le maire de Super Charmoussey","type":"Role","_key":"100052","_from":"21832","_to":"59020"} +{"$label":"DIRECTED","_key":"31206","_from":"21840","_to":"21839"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"31213","_from":"21846","_to":"21841"} +{"$label":"ACTS_IN","name":"McGowan","type":"Role","_key":"31211","_from":"21845","_to":"21841"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"31210","_from":"21844","_to":"21841"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"31209","_from":"21843","_to":"21841"} +{"$label":"DIRECTED","_key":"31207","_from":"21842","_to":"21841"} +{"$label":"ACTS_IN","name":"Derek Waters","type":"Role","_key":"108374","_from":"21843","_to":"64065"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"104352","_from":"21844","_to":"61389"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"58738","_from":"21844","_to":"37102"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"31221","_from":"21853","_to":"21847"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"31220","_from":"21852","_to":"21847"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"31218","_from":"21851","_to":"21847"} +{"$label":"ACTS_IN","name":"C\u00e9dric","type":"Role","_key":"31217","_from":"21850","_to":"21847"} +{"$label":"ACTS_IN","name":"Laurent","type":"Role","_key":"31216","_from":"21849","_to":"21847"} +{"$label":"DIRECTED","_key":"31215","_from":"21848","_to":"21847"} +{"$label":"DIRECTED","_key":"120308","_from":"21848","_to":"70660"} +{"$label":"DIRECTED","_key":"101550","_from":"21850","_to":"59770"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"47871","_from":"21850","_to":"31503"} +{"$label":"ACTS_IN","name":"Der Junge","type":"Role","_key":"31235","_from":"21858","_to":"21855"} +{"$label":"ACTS_IN","name":"Frau Kostrowicz","type":"Role","_key":"31234","_from":"21857","_to":"21855"} +{"$label":"DIRECTED","_key":"31231","_from":"21856","_to":"21855"} +{"$label":"DIRECTED","_key":"42088","_from":"21856","_to":"28196"} +{"$label":"DIRECTED","_key":"31240","_from":"21862","_to":"21859"} +{"$label":"ACTS_IN","name":"James Anderson","type":"Role","_key":"31239","_from":"21861","_to":"21859"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"31238","_from":"21860","_to":"21859"} +{"$label":"ACTS_IN","name":"Hydarnes","type":"Role","_key":"121634","_from":"21860","_to":"71457"} +{"$label":"ACTS_IN","name":"Group Captain Don Barrett","type":"Role","_key":"106342","_from":"21860","_to":"62650"} +{"$label":"ACTS_IN","name":"Sir Alex Hadrian","type":"Role","_key":"31246","_from":"21865","_to":"21863"} +{"$label":"DIRECTED","_key":"31241","_from":"21864","_to":"21863"} +{"$label":"DIRECTED","_key":"118828","_from":"21864","_to":"69852"} +{"$label":"ACTS_IN","name":"Petrovitch","type":"Role","_key":"111948","_from":"21865","_to":"66083"} +{"$label":"ACTS_IN","name":"Father Dell'Aqua","type":"Role","_key":"109445","_from":"21865","_to":"64655"} +{"$label":"ACTS_IN","name":"Dollmann","type":"Role","_key":"71787","_from":"21865","_to":"43448"} +{"$label":"ACTS_IN","name":"Ministre","type":"Role","_key":"34686","_from":"21865","_to":"23728"} +{"$label":"DIRECTED","_key":"31264","_from":"21871","_to":"21867"} +{"$label":"ACTS_IN","name":"Charlie Sommers","type":"Role","_key":"31262","_from":"21870","_to":"21867"} +{"$label":"ACTS_IN","name":"Stephen Sommers","type":"Role","_key":"31261","_from":"21869","_to":"21867"} +{"$label":"ACTS_IN","name":"Rosalind Sommers","type":"Role","_key":"31260","_from":"21868","_to":"21867"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"98621","_from":"21869","_to":"58112"} +{"$label":"DIRECTED","_key":"117774","_from":"21871","_to":"69233"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"31273","_from":"21877","_to":"21872"} +{"$label":"ACTS_IN","name":"Chaplain Herles","type":"Role","_key":"31272","_from":"21876","_to":"21872"} +{"$label":"ACTS_IN","name":"Father Seidlitz","type":"Role","_key":"31269","_from":"21875","_to":"21872"} +{"$label":"ACTS_IN","name":"Gertrud Bartsch","type":"Role","_key":"31267","_from":"21874","_to":"21872"} +{"$label":"DIRECTED","_key":"31265","_from":"21873","_to":"21872"} +{"$label":"ACTS_IN","name":"Harry Berg","type":"Role","_key":"90723","_from":"21877","_to":"53551"} +{"$label":"ACTS_IN","name":"Hans-Joachim Jennings","type":"Role","_key":"34278","_from":"21877","_to":"23524"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"31277","_from":"21880","_to":"21878"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"31276","_from":"21879","_to":"21878"} +{"$label":"ACTS_IN","name":"Dr. Chamberlain","type":"Role","_key":"31288","_from":"21886","_to":"21881"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"31287","_from":"21885","_to":"21881"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"31283","_from":"21884","_to":"21881"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"31281","_from":"21883","_to":"21881"} +{"$label":"DIRECTED","_key":"31278","_from":"21882","_to":"21881"} +{"$label":"DIRECTED","_key":"94711","_from":"21882","_to":"55789"} +{"$label":"DIRECTED","_key":"50940","_from":"21882","_to":"33247"} +{"$label":"DIRECTED","_key":"48001","_from":"21882","_to":"31575"} +{"$label":"ACTS_IN","name":"Lancelot","type":"Role","_key":"102809","_from":"21883","_to":"60475"} +{"$label":"ACTS_IN","name":"Pete McKell","type":"Role","_key":"92082","_from":"21883","_to":"54333"} +{"$label":"ACTS_IN","name":"Sam Coulson","type":"Role","_key":"69367","_from":"21883","_to":"42409"} +{"$label":"ACTS_IN","name":"Will Yorkin","type":"Role","_key":"53329","_from":"21883","_to":"34478"} +{"$label":"ACTS_IN","name":"Jack Hightower","type":"Role","_key":"116162","_from":"21884","_to":"68398"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"108469","_from":"21884","_to":"64118"} +{"$label":"ACTS_IN","name":"Tom Morelane","type":"Role","_key":"106970","_from":"21884","_to":"63058"} +{"$label":"ACTS_IN","name":"Joshua Sterling","type":"Role","_key":"95904","_from":"21884","_to":"56401"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"88212","_from":"21884","_to":"52337"} +{"$label":"ACTS_IN","name":"1st Lt. Terence Embry","type":"Role","_key":"70671","_from":"21884","_to":"42997"} +{"$label":"ACTS_IN","name":"FBI Agent McPherson","type":"Role","_key":"65229","_from":"21884","_to":"40500"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"60598","_from":"21884","_to":"38253"} +{"$label":"ACTS_IN","name":"Marvin Bushmiller","type":"Role","_key":"56778","_from":"21884","_to":"36060"} +{"$label":"ACTS_IN","name":"Phil Garrison","type":"Role","_key":"54382","_from":"21884","_to":"34876"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"50734","_from":"21884","_to":"33114"} +{"$label":"ACTS_IN","name":"Dolores \"Dolly\" Talbot","type":"Role","_key":"64788","_from":"21885","_to":"40314"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"31307","_from":"21895","_to":"21887"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"31306","_from":"21894","_to":"21887"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"31305","_from":"21893","_to":"21887"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"31304","_from":"21892","_to":"21887"} +{"$label":"ACTS_IN","name":"Carolyn","type":"Role","_key":"31303","_from":"21891","_to":"21887"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"31302","_from":"21890","_to":"21887"} +{"$label":"ACTS_IN","name":"Jenna Clark","type":"Role","_key":"31299","_from":"21889","_to":"21887"} +{"$label":"DIRECTED","_key":"31290","_from":"21888","_to":"21887"} +{"$label":"DIRECTED","_key":"114981","_from":"21888","_to":"67715"} +{"$label":"DIRECTED","_key":"57152","_from":"21888","_to":"36270"} +{"$label":"DIRECTED","_key":"56652","_from":"21888","_to":"35977"} +{"$label":"ACTS_IN","name":"Lucy Cauffield","type":"Role","_key":"119116","_from":"21889","_to":"70011"} +{"$label":"ACTS_IN","name":"Emily Hudson","type":"Role","_key":"102260","_from":"21889","_to":"60174"} +{"$label":"ACTS_IN","name":"Tracy 'Tre' Stokes","type":"Role","_key":"121200","_from":"21890","_to":"71196"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"104208","_from":"21890","_to":"61310"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"100713","_from":"21890","_to":"59387"} +{"$label":"ACTS_IN","name":"Salazar","type":"Role","_key":"95419","_from":"21890","_to":"56132"} +{"$label":"ACTS_IN","name":"Devon Miles","type":"Role","_key":"94825","_from":"21890","_to":"55842"} +{"$label":"ACTS_IN","name":"Dwayne","type":"Role","_key":"65368","_from":"21890","_to":"40552"} +{"$label":"ACTS_IN","name":"Waitress in Diner","type":"Role","_key":"97072","_from":"21892","_to":"57091"} +{"$label":"ACTS_IN","name":"Josh's Dad","type":"Role","_key":"56645","_from":"21895","_to":"35977"} +{"$label":"ACTS_IN","name":"Eveline","type":"Role","_key":"31323","_from":"21904","_to":"21896"} +{"$label":"ACTS_IN","name":"von Killenschiff","type":"Role","_key":"31319","_from":"21903","_to":"21896"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"31318","_from":"21902","_to":"21896"} +{"$label":"ACTS_IN","name":"Nakonski","type":"Role","_key":"31316","_from":"21901","_to":"21896"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"31315","_from":"21900","_to":"21896"} +{"$label":"ACTS_IN","name":"Marga","type":"Role","_key":"31313","_from":"21899","_to":"21896"} +{"$label":"ACTS_IN","name":"Hartog","type":"Role","_key":"31311","_from":"21898","_to":"21896"} +{"$label":"ACTS_IN","name":"Rosemarie Nitribitt","type":"Role","_key":"31309","_from":"21897","_to":"21896"} +{"$label":"ACTS_IN","name":"Maja","type":"Role","_key":"49088","_from":"21897","_to":"32171"} +{"$label":"ACTS_IN","name":"Frau Keller","type":"Role","_key":"42360","_from":"21897","_to":"28358"} +{"$label":"ACTS_IN","name":"Myra Schneider","type":"Role","_key":"35796","_from":"21897","_to":"24312"} +{"$label":"ACTS_IN","name":"Dr. Frigge","type":"Role","_key":"31889","_from":"21898","_to":"22247"} +{"$label":"ACTS_IN","name":"Paula Hepburn","type":"Role","_key":"43633","_from":"21899","_to":"29135"} +{"$label":"ACTS_IN","name":"Hanne","type":"Role","_key":"31344","_from":"21899","_to":"21912"} +{"$label":"ACTS_IN","name":"G\u00fcnther","type":"Role","_key":"44205","_from":"21900","_to":"29461"} +{"$label":"ACTS_IN","name":"Gen. Kohler","type":"Role","_key":"95033","_from":"21901","_to":"55943"} +{"$label":"ACTS_IN","name":"Schulze Bangeb\u00f6s","type":"Role","_key":"93226","_from":"21901","_to":"54923"} +{"$label":"ACTS_IN","name":"Fabian Gilder","type":"Role","_key":"44067","_from":"21901","_to":"29386"} +{"$label":"ACTS_IN","name":"Adolf Glasbrenner","type":"Role","_key":"42708","_from":"21901","_to":"28577"} +{"$label":"ACTS_IN","name":"Hausach","type":"Role","_key":"40369","_from":"21901","_to":"27226"} +{"$label":"ACTS_IN","name":"Tanne","type":"Role","_key":"39988","_from":"21901","_to":"27002"} +{"$label":"ACTS_IN","name":"Frederic","type":"Role","_key":"40341","_from":"21902","_to":"27210"} +{"$label":"ACTS_IN","name":"Willy Jensen","type":"Role","_key":"39933","_from":"21902","_to":"26981"} +{"$label":"ACTS_IN","name":"Jule Nickels","type":"Role","_key":"39907","_from":"21902","_to":"26965"} +{"$label":"ACTS_IN","name":"Larry Link","type":"Role","_key":"32656","_from":"21902","_to":"22691"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"31354","_from":"21902","_to":"21912"} +{"$label":"ACTS_IN","name":"Frau Stirnimaa","type":"Role","_key":"45358","_from":"21904","_to":"30082"} +{"$label":"ACTS_IN","name":"Hanni","type":"Role","_key":"40313","_from":"21904","_to":"27196"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31337","_from":"21911","_to":"21905"} +{"$label":"ACTS_IN","name":"Frau auf der Stra\u00dfe","type":"Role","_key":"31333","_from":"21910","_to":"21905"} +{"$label":"ACTS_IN","name":"Giesela","type":"Role","_key":"31332","_from":"21909","_to":"21905"} +{"$label":"ACTS_IN","name":"von Riedendank","type":"Role","_key":"31330","_from":"21908","_to":"21905"} +{"$label":"ACTS_IN","name":"Rosemarie Nitribitt","type":"Role","_key":"31326","_from":"21907","_to":"21905"} +{"$label":"DIRECTED","_key":"31325","_from":"21906","_to":"21905"} +{"$label":"DIRECTED","_key":"31786","_from":"21906","_to":"22186"} +{"$label":"ACTS_IN","name":"Paula Meyer","type":"Role","_key":"39721","_from":"21907","_to":"26843"} +{"$label":"ACTS_IN","name":"John Jacob Astor","type":"Role","_key":"67345","_from":"21908","_to":"41508"} +{"$label":"ACTS_IN","name":"Sergius Konstantin","type":"Role","_key":"44927","_from":"21908","_to":"29874"} +{"$label":"ACTS_IN","name":"Sascha Obolski","type":"Role","_key":"42323","_from":"21908","_to":"28337"} +{"$label":"ACTS_IN","name":"Hans Winkler","type":"Role","_key":"31348","_from":"21908","_to":"21912"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47361","_from":"21911","_to":"31181"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"46598","_from":"21911","_to":"30780"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"31356","_from":"21923","_to":"21912"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"31355","_from":"21922","_to":"21912"} +{"$label":"ACTS_IN","name":"CSU - Mann","type":"Role","_key":"31353","_from":"21921","_to":"21912"} +{"$label":"ACTS_IN","name":"FDP - Mann","type":"Role","_key":"31352","_from":"21920","_to":"21912"} +{"$label":"ACTS_IN","name":"SPD - Mann","type":"Role","_key":"31351","_from":"21919","_to":"21912"} +{"$label":"ACTS_IN","name":"CDU - Mann","type":"Role","_key":"31349","_from":"21918","_to":"21912"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"31347","_from":"21917","_to":"21912"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"31345","_from":"21916","_to":"21912"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"31343","_from":"21915","_to":"21912"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"31342","_from":"21914","_to":"21912"} +{"$label":"ACTS_IN","name":"Annemarie Nitribitt","type":"Role","_key":"31341","_from":"21913","_to":"21912"} +{"$label":"ACTS_IN","name":"Forbes","type":"Role","_key":"89490","_from":"21915","_to":"52981"} +{"$label":"ACTS_IN","name":"Spiros","type":"Role","_key":"67584","_from":"21915","_to":"41606"} +{"$label":"ACTS_IN","name":"Herbert Priel","type":"Role","_key":"39909","_from":"21915","_to":"26965"} +{"$label":"ACTS_IN","name":"Pumuckl (voice)","type":"Role","_key":"89857","_from":"21922","_to":"53171"} +{"$label":"ACTS_IN","name":"Donner-Karlsson","type":"Role","_key":"88006","_from":"21922","_to":"52247"} +{"$label":"ACTS_IN","name":"Kastellan","type":"Role","_key":"71306","_from":"21922","_to":"43257"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"45111","_from":"21922","_to":"29943"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"43716","_from":"21922","_to":"29199"} +{"$label":"ACTS_IN","name":"Artist","type":"Role","_key":"42340","_from":"21922","_to":"28337"} +{"$label":"DIRECTED","_key":"31361","_from":"21928","_to":"21924"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31359","_from":"21927","_to":"21924"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31358","_from":"21926","_to":"21924"} +{"$label":"ACTS_IN","name":"Rosemarie Nitribitt","type":"Role","_key":"31357","_from":"21925","_to":"21924"} +{"$label":"ACTS_IN","name":"Lucrezia de Saintclair","type":"Role","_key":"70024","_from":"21925","_to":"42701"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"43446","_from":"21925","_to":"29026"} +{"$label":"ACTS_IN","name":"Xaver Riedel","type":"Role","_key":"43021","_from":"21926","_to":"28738"} +{"$label":"ACTS_IN","name":"Xaver Riedel","type":"Role","_key":"42994","_from":"21926","_to":"28721"} +{"$label":"ACTS_IN","name":"Fabian Schl\u00fcter","type":"Role","_key":"44101","_from":"21927","_to":"29405"} +{"$label":"ACTS_IN","name":"Benetti","type":"Role","_key":"31377","_from":"21937","_to":"21929"} +{"$label":"ACTS_IN","name":"le pr\u00e9sident","type":"Role","_key":"31375","_from":"21936","_to":"21929"} +{"$label":"ACTS_IN","name":"le gardien","type":"Role","_key":"31374","_from":"21935","_to":"21929"} +{"$label":"ACTS_IN","name":"Sabatier","type":"Role","_key":"31372","_from":"21934","_to":"21929"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve Saugeat","type":"Role","_key":"31369","_from":"21933","_to":"21929"} +{"$label":"ACTS_IN","name":"Saugeat","type":"Role","_key":"31368","_from":"21932","_to":"21929"} +{"$label":"ACTS_IN","name":"Rabut","type":"Role","_key":"31367","_from":"21931","_to":"21929"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"31365","_from":"21930","_to":"21929"} +{"$label":"ACTS_IN","name":"Carlotta","type":"Role","_key":"34001","_from":"21930","_to":"23394"} +{"$label":"ACTS_IN","name":"Luisa Santini","type":"Role","_key":"31391","_from":"21930","_to":"21940"} +{"$label":"ACTS_IN","name":"le facteur","type":"Role","_key":"89119","_from":"21932","_to":"52794"} +{"$label":"ACTS_IN","name":"M\u00e9nard","type":"Role","_key":"88447","_from":"21932","_to":"52428"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31414","_from":"21932","_to":"21948"} +{"$label":"ACTS_IN","name":"M. Fauvel","type":"Role","_key":"50769","_from":"21935","_to":"33128"} +{"$label":"ACTS_IN","name":"le gendarme","type":"Role","_key":"37842","_from":"21935","_to":"25644"} +{"$label":"ACTS_IN","name":"Le sergent de police","type":"Role","_key":"32911","_from":"21935","_to":"22829"} +{"$label":"ACTS_IN","name":"Cesar (voice)","type":"Role","_key":"51180","_from":"21937","_to":"33381"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"31386","_from":"21939","_to":"21938"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"67714","_from":"21939","_to":"41641"} +{"$label":"ACTS_IN","name":"Schultze","type":"Role","_key":"54160","_from":"21939","_to":"34798"} +{"$label":"ACTS_IN","name":"Moritz Kipp (\"Most')","type":"Role","_key":"44036","_from":"21939","_to":"29369"} +{"$label":"ACTS_IN","name":"Opa Schmidt","type":"Role","_key":"42092","_from":"21939","_to":"28198"} +{"$label":"ACTS_IN","name":"Waldemar P\u00fcckler","type":"Role","_key":"41112","_from":"21939","_to":"27664"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31396","_from":"21943","_to":"21940"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31395","_from":"21942","_to":"21940"} +{"$label":"ACTS_IN","name":"Norma","type":"Role","_key":"31394","_from":"21941","_to":"21940"} +{"$label":"ACTS_IN","name":"Police Comissioner","type":"Role","_key":"67547","_from":"21942","_to":"41589"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"31404","_from":"21947","_to":"21944"} +{"$label":"ACTS_IN","name":"Feofar","type":"Role","_key":"31403","_from":"21946","_to":"21944"} +{"$label":"ACTS_IN","name":"Nadja","type":"Role","_key":"31400","_from":"21945","_to":"21944"} +{"$label":"ACTS_IN","name":"Candice Strasberg","type":"Role","_key":"89987","_from":"21945","_to":"53238"} +{"$label":"ACTS_IN","name":"Jo Magro","type":"Role","_key":"70515","_from":"21945","_to":"42924"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"33331","_from":"21945","_to":"23092"} +{"$label":"ACTS_IN","name":"Grundeis","type":"Role","_key":"32513","_from":"21946","_to":"22612"} +{"$label":"ACTS_IN","name":"Pygmalion II","type":"Role","_key":"31411","_from":"21951","_to":"21948"} +{"$label":"DIRECTED","_key":"31408","_from":"21950","_to":"21948"} +{"$label":"DIRECTED","_key":"31407","_from":"21949","_to":"21948"} +{"$label":"ACTS_IN","name":"Westkommissar","type":"Role","_key":"31427","_from":"21957","_to":"21952"} +{"$label":"ACTS_IN","name":"Herr Gladow","type":"Role","_key":"31426","_from":"21956","_to":"21952"} +{"$label":"ACTS_IN","name":"Sch\u00e4fer","type":"Role","_key":"31423","_from":"21955","_to":"21952"} +{"$label":"ACTS_IN","name":"Gladow","type":"Role","_key":"31420","_from":"21954","_to":"21952"} +{"$label":"DIRECTED","_key":"31417","_from":"21953","_to":"21952"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"31438","_from":"21963","_to":"21958"} +{"$label":"ACTS_IN","name":"Hofrat von Leitner","type":"Role","_key":"31437","_from":"21962","_to":"21958"} +{"$label":"ACTS_IN","name":"Thomas Dassau","type":"Role","_key":"31435","_from":"21961","_to":"21958"} +{"$label":"ACTS_IN","name":"Brigitte Dassau","type":"Role","_key":"31434","_from":"21960","_to":"21958"} +{"$label":"DIRECTED","_key":"31428","_from":"21959","_to":"21958"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"44857","_from":"21960","_to":"29829"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"72486","_from":"21962","_to":"43735"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44737","_from":"21963","_to":"29760"} +{"$label":"ACTS_IN","name":"The Sergeant","type":"Role","_key":"31450","_from":"21967","_to":"21964"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"31447","_from":"21966","_to":"21964"} +{"$label":"DIRECTED","_key":"31440","_from":"21965","_to":"21964"} +{"$label":"DIRECTED","_key":"44924","_from":"21965","_to":"29874"} +{"$label":"DIRECTED","_key":"44232","_from":"21965","_to":"29476"} +{"$label":"DIRECTED","_key":"43923","_from":"21965","_to":"29311"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des Logis Lucien Fougasse","type":"Role","_key":"72726","_from":"21967","_to":"43821"} +{"$label":"ACTS_IN","name":"Lucien Fougasse","type":"Role","_key":"33671","_from":"21967","_to":"23243"} +{"$label":"ACTS_IN","name":"Lucien Fougasse","type":"Role","_key":"33654","_from":"21967","_to":"23233"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"31819","_from":"21967","_to":"22208"} +{"$label":"ACTS_IN","name":"Kaiserin Mutter","type":"Role","_key":"31456","_from":"21971","_to":"21968"} +{"$label":"ACTS_IN","name":"K\u00f6nig Bussi von Bayern","type":"Role","_key":"31453","_from":"21970","_to":"21968"} +{"$label":"ACTS_IN","name":"Kaiser Franz","type":"Role","_key":"31452","_from":"21969","_to":"21968"} +{"$label":"ACTS_IN","name":"Helmut M\u00fcnchinger","type":"Role","_key":"105266","_from":"21969","_to":"61947"} +{"$label":"ACTS_IN","name":"J\u00e4ger","type":"Role","_key":"59773","_from":"21969","_to":"37734"} +{"$label":"ACTS_IN","name":"K\u00e4pt'n Kork","type":"Role","_key":"56977","_from":"21969","_to":"36154"} +{"$label":"ACTS_IN","name":"J\u00e4ger","type":"Role","_key":"56964","_from":"21969","_to":"36144"} +{"$label":"ACTS_IN","name":"Harald 'Harry' Meier","type":"Role","_key":"52013","_from":"21969","_to":"33911"} +{"$label":"ACTS_IN","name":"Ranger","type":"Role","_key":"49367","_from":"21969","_to":"32333"} +{"$label":"ACTS_IN","name":"Typ","type":"Role","_key":"41533","_from":"21969","_to":"27899"} +{"$label":"ACTS_IN","name":"John Trelawney","type":"Role","_key":"38310","_from":"21969","_to":"25875"} +{"$label":"ACTS_IN","name":"Toni Ricardelli","type":"Role","_key":"105263","_from":"21970","_to":"61947"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"71307","_from":"21970","_to":"43257"} +{"$label":"ACTS_IN","name":"Jens Maul \/ Schrotty \/ Pulle \/ Putzmann \/ Santa Maria-Ansager","type":"Role","_key":"56976","_from":"21970","_to":"36154"} +{"$label":"ACTS_IN","name":"Erdal","type":"Role","_key":"54339","_from":"21970","_to":"34866"} +{"$label":"ACTS_IN","name":"T\u00fcrlich","type":"Role","_key":"52771","_from":"21970","_to":"34237"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"41551","_from":"21970","_to":"27899"} +{"$label":"ACTS_IN","name":"Vroni","type":"Role","_key":"91709","_from":"21971","_to":"54103"} +{"$label":"ACTS_IN","name":"Josefa Melzer","type":"Role","_key":"44710","_from":"21971","_to":"29749"} +{"$label":"ACTS_IN","name":"Lizzy","type":"Role","_key":"43719","_from":"21971","_to":"29199"} +{"$label":"ACTS_IN","name":"Tante Rita","type":"Role","_key":"31471","_from":"21979","_to":"21972"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31470","_from":"21978","_to":"21972"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31469","_from":"21977","_to":"21972"} +{"$label":"ACTS_IN","name":"Ministerpr\u00e4sident","type":"Role","_key":"31465","_from":"21976","_to":"21972"} +{"$label":"ACTS_IN","name":"Amalie","type":"Role","_key":"31461","_from":"21975","_to":"21972"} +{"$label":"ACTS_IN","name":"Amadeus","type":"Role","_key":"31460","_from":"21974","_to":"21972"} +{"$label":"ACTS_IN","name":"Mama Stieglmeier","type":"Role","_key":"31459","_from":"21973","_to":"21972"} +{"$label":"ACTS_IN","name":"Rita Waltleitner","type":"Role","_key":"41185","_from":"21973","_to":"27712"} +{"$label":"ACTS_IN","name":"Urschel","type":"Role","_key":"40284","_from":"21973","_to":"27172"} +{"$label":"ACTS_IN","name":"Jos Mama","type":"Role","_key":"40880","_from":"21975","_to":"27509"} +{"$label":"ACTS_IN","name":"Jan Borchert","type":"Role","_key":"44204","_from":"21976","_to":"29461"} +{"$label":"ACTS_IN","name":"Tommy Wheeler","type":"Role","_key":"32717","_from":"21976","_to":"22720"} +{"$label":"ACTS_IN","name":"Anne-Marie Uhde","type":"Role","_key":"100139","_from":"21977","_to":"59063"} +{"$label":"DIRECTED","_key":"31481","_from":"21989","_to":"21980"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"31480","_from":"21988","_to":"21980"} +{"$label":"ACTS_IN","name":"Crazy Chris","type":"Role","_key":"31479","_from":"21987","_to":"21980"} +{"$label":"ACTS_IN","name":"Dr. Caldericci","type":"Role","_key":"31478","_from":"21986","_to":"21980"} +{"$label":"ACTS_IN","name":"Dale Young","type":"Role","_key":"31477","_from":"21985","_to":"21980"} +{"$label":"ACTS_IN","name":"Kathleen","type":"Role","_key":"31476","_from":"21984","_to":"21980"} +{"$label":"ACTS_IN","name":"Marcus Johnson","type":"Role","_key":"31475","_from":"21983","_to":"21980"} +{"$label":"ACTS_IN","name":"Janice Young","type":"Role","_key":"31474","_from":"21982","_to":"21980"} +{"$label":"ACTS_IN","name":"Robert Young","type":"Role","_key":"31473","_from":"21981","_to":"21980"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"31482","_from":"21981","_to":"21990"} +{"$label":"ACTS_IN","name":"Young Jake","type":"Role","_key":"97129","_from":"21983","_to":"57136"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"60332","_from":"21983","_to":"38046"} +{"$label":"ACTS_IN","name":"Captain Rollins","type":"Role","_key":"51919","_from":"21983","_to":"33857"} +{"$label":"ACTS_IN","name":"Tyrone","type":"Role","_key":"31490","_from":"21983","_to":"21990"} +{"$label":"ACTS_IN","name":"One-Eye","type":"Role","_key":"115298","_from":"21985","_to":"67881"} +{"$label":"ACTS_IN","name":"Rick (voice)","type":"Role","_key":"109167","_from":"21985","_to":"64489"} +{"$label":"ACTS_IN","name":"Frankie Cheeks","type":"Role","_key":"52866","_from":"21987","_to":"34263"} +{"$label":"ACTS_IN","name":"Chauncey","type":"Role","_key":"31485","_from":"21987","_to":"21990"} +{"$label":"DIRECTED","_key":"31492","_from":"21989","_to":"21990"} +{"$label":"ACTS_IN","name":"Steph","type":"Role","_key":"31491","_from":"21997","_to":"21990"} +{"$label":"ACTS_IN","name":"Lisa Wilcox","type":"Role","_key":"31489","_from":"21996","_to":"21990"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"31488","_from":"21995","_to":"21990"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"31487","_from":"21994","_to":"21990"} +{"$label":"ACTS_IN","name":"Terrance","type":"Role","_key":"31486","_from":"21993","_to":"21990"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"31484","_from":"21992","_to":"21990"} +{"$label":"ACTS_IN","name":"JD","type":"Role","_key":"31483","_from":"21991","_to":"21990"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"114749","_from":"21991","_to":"67588"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"60999","_from":"21991","_to":"38538"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"110494","_from":"21994","_to":"65279"} +{"$label":"ACTS_IN","name":"Stab","type":"Role","_key":"107079","_from":"21995","_to":"63141"} +{"$label":"ACTS_IN","name":"Stab","type":"Role","_key":"107059","_from":"21995","_to":"63126"} +{"$label":"ACTS_IN","name":"Farraday","type":"Role","_key":"31503","_from":"22007","_to":"21998"} +{"$label":"ACTS_IN","name":"Gamba","type":"Role","_key":"31502","_from":"22006","_to":"21998"} +{"$label":"ACTS_IN","name":"Miss Wilbur","type":"Role","_key":"31501","_from":"22005","_to":"21998"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"31498","_from":"22004","_to":"21998"} +{"$label":"ACTS_IN","name":"Bob Andrews","type":"Role","_key":"31497","_from":"22003","_to":"21998"} +{"$label":"ACTS_IN","name":"Peter Shaw","type":"Role","_key":"31496","_from":"22002","_to":"21998"} +{"$label":"ACTS_IN","name":"Justus Jonas","type":"Role","_key":"31495","_from":"22001","_to":"21998"} +{"$label":"DIRECTED","_key":"31494","_from":"22000","_to":"21998"} +{"$label":"DIRECTED","_key":"31493","_from":"21999","_to":"21998"} +{"$label":"DIRECTED","_key":"70021","_from":"21999","_to":"42701"} +{"$label":"ACTS_IN","name":"Dunlap Dewberry","type":"Role","_key":"114182","_from":"22002","_to":"67261"} +{"$label":"ACTS_IN","name":"Orlock","type":"Role","_key":"66093","_from":"22007","_to":"40893"} +{"$label":"ACTS_IN","name":"Venediger","type":"Role","_key":"31515","_from":"22015","_to":"22008"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"31512","_from":"22014","_to":"22008"} +{"$label":"ACTS_IN","name":"Monika","type":"Role","_key":"31511","_from":"22013","_to":"22008"} +{"$label":"ACTS_IN","name":"Soko Beamter","type":"Role","_key":"31509","_from":"22012","_to":"22008"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"31508","_from":"22011","_to":"22008"} +{"$label":"ACTS_IN","name":"Steffen","type":"Role","_key":"31507","_from":"22010","_to":"22008"} +{"$label":"DIRECTED","_key":"31504","_from":"22009","_to":"22008"} +{"$label":"ACTS_IN","name":"Robert Wiemann","type":"Role","_key":"43825","_from":"22012","_to":"29265"} +{"$label":"ACTS_IN","name":"Ralf Brockmann","type":"Role","_key":"90562","_from":"22014","_to":"53490"} +{"$label":"ACTS_IN","name":"Dr. Johannes Ohlsen","type":"Role","_key":"43282","_from":"22014","_to":"28910"} +{"$label":"ACTS_IN","name":"Retzlaff","type":"Role","_key":"42849","_from":"22014","_to":"28648"} +{"$label":"ACTS_IN","name":"Kommissar Leibnitz","type":"Role","_key":"41957","_from":"22014","_to":"28111"} +{"$label":"ACTS_IN","name":"Marions Vater","type":"Role","_key":"34469","_from":"22014","_to":"23601"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"47267","_from":"22015","_to":"31145"} +{"$label":"ACTS_IN","name":"Mme Cault","type":"Role","_key":"31529","_from":"22026","_to":"22016"} +{"$label":"ACTS_IN","name":"Arnaud","type":"Role","_key":"31528","_from":"22025","_to":"22016"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"31527","_from":"22024","_to":"22016"} +{"$label":"ACTS_IN","name":"Josette","type":"Role","_key":"31525","_from":"22023","_to":"22016"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"31523","_from":"22022","_to":"22016"} +{"$label":"ACTS_IN","name":"Le juge d'instruction","type":"Role","_key":"31522","_from":"22021","_to":"22016"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Roussel","type":"Role","_key":"31521","_from":"22020","_to":"22016"} +{"$label":"ACTS_IN","name":"le maire","type":"Role","_key":"31519","_from":"22019","_to":"22016"} +{"$label":"ACTS_IN","name":"Suzanne Doucet","type":"Role","_key":"31518","_from":"22018","_to":"22016"} +{"$label":"DIRECTED","_key":"31516","_from":"22017","_to":"22016"} +{"$label":"DIRECTED","_key":"33345","_from":"22017","_to":"23096"} +{"$label":"ACTS_IN","name":"die Franz\u00f6sin","type":"Role","_key":"37756","_from":"22018","_to":"25610"} +{"$label":"ACTS_IN","name":"Commissaire M\u00e9nardier","type":"Role","_key":"32076","_from":"22019","_to":"22350"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"33337","_from":"22020","_to":"23092"} +{"$label":"ACTS_IN","name":"Peter Christus","type":"Role","_key":"91318","_from":"22021","_to":"53854"} +{"$label":"ACTS_IN","name":"Un machiniste r\u00e9sistant de l'op\u00e9ra","type":"Role","_key":"48894","_from":"22021","_to":"32047"} +{"$label":"ACTS_IN","name":"Courfeyrac","type":"Role","_key":"31549","_from":"22025","_to":"22027"} +{"$label":"ACTS_IN","name":"la sup\u00e9rieure du couvent","type":"Role","_key":"31560","_from":"22046","_to":"22027"} +{"$label":"ACTS_IN","name":"Un ouvrier","type":"Role","_key":"31557","_from":"22045","_to":"22027"} +{"$label":"ACTS_IN","name":"Un ami de l'ABC","type":"Role","_key":"31556","_from":"22044","_to":"22027"} +{"$label":"ACTS_IN","name":"le cardinal","type":"Role","_key":"31555","_from":"22043","_to":"22027"} +{"$label":"ACTS_IN","name":"Mademoiselle Gillenormand","type":"Role","_key":"31552","_from":"22042","_to":"22027"} +{"$label":"ACTS_IN","name":"Prouvaire","type":"Role","_key":"31551","_from":"22041","_to":"22027"} +{"$label":"ACTS_IN","name":"Grantaire","type":"Role","_key":"31550","_from":"22040","_to":"22027"} +{"$label":"ACTS_IN","name":"Gavroche","type":"Role","_key":"31547","_from":"22039","_to":"22027"} +{"$label":"ACTS_IN","name":"Azelma","type":"Role","_key":"31546","_from":"22038","_to":"22027"} +{"$label":"ACTS_IN","name":"le pr\u00e9fet de Montreuil","type":"Role","_key":"31545","_from":"22037","_to":"22027"} +{"$label":"ACTS_IN","name":"Madame Magloire","type":"Role","_key":"31544","_from":"22036","_to":"22027"} +{"$label":"ACTS_IN","name":"Gillenormand","type":"Role","_key":"31543","_from":"22035","_to":"22027"} +{"$label":"ACTS_IN","name":"Costte \u00e0 8 ans","type":"Role","_key":"31542","_from":"22034","_to":"22027"} +{"$label":"ACTS_IN","name":"Eponine","type":"Role","_key":"31538","_from":"22033","_to":"22027"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31537","_from":"22032","_to":"22027"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31536","_from":"22031","_to":"22027"} +{"$label":"ACTS_IN","name":"Marius de Pontmercy","type":"Role","_key":"31535","_from":"22030","_to":"22027"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31534","_from":"22029","_to":"22027"} +{"$label":"DIRECTED","_key":"31530","_from":"22028","_to":"22027"} +{"$label":"DIRECTED","_key":"33725","_from":"22028","_to":"23267"} +{"$label":"ACTS_IN","name":"Marcel Martin","type":"Role","_key":"119104","_from":"22031","_to":"70009"} +{"$label":"ACTS_IN","name":"Mattei","type":"Role","_key":"71342","_from":"22031","_to":"43272"} +{"$label":"ACTS_IN","name":"Le maire de Colleville","type":"Role","_key":"52903","_from":"22031","_to":"34285"} +{"$label":"ACTS_IN","name":"Augustin Bouvet, peintre en b\u00e2timent","type":"Role","_key":"48877","_from":"22031","_to":"32047"} +{"$label":"ACTS_IN","name":"Witwe","type":"Role","_key":"92608","_from":"22032","_to":"54666"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53404","_from":"22037","_to":"34505"} +{"$label":"ACTS_IN","name":"Beaumont","type":"Role","_key":"71958","_from":"22041","_to":"43528"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33365","_from":"22041","_to":"23096"} +{"$label":"ACTS_IN","name":"Einbrecher","type":"Role","_key":"38145","_from":"22044","_to":"25789"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"31579","_from":"22057","_to":"22047"} +{"$label":"ACTS_IN","name":"Mortell","type":"Role","_key":"31578","_from":"22056","_to":"22047"} +{"$label":"ACTS_IN","name":"Detective Pitney","type":"Role","_key":"31576","_from":"22055","_to":"22047"} +{"$label":"ACTS_IN","name":"Shauna Nelson","type":"Role","_key":"31575","_from":"22054","_to":"22047"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"31574","_from":"22053","_to":"22047"} +{"$label":"ACTS_IN","name":"Murrow","type":"Role","_key":"31572","_from":"22052","_to":"22047"} +{"$label":"ACTS_IN","name":"Reed","type":"Role","_key":"31570","_from":"22051","_to":"22047"} +{"$label":"ACTS_IN","name":"Cash","type":"Role","_key":"31569","_from":"22050","_to":"22047"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"31568","_from":"22049","_to":"22047"} +{"$label":"ACTS_IN","name":"Josai","type":"Role","_key":"31567","_from":"22048","_to":"22047"} +{"$label":"DIRECTED","_key":"97132","_from":"22052","_to":"57136"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"48312","_from":"22054","_to":"31726"} +{"$label":"ACTS_IN","name":"Frank Brentano","type":"Role","_key":"58414","_from":"22055","_to":"36916"} +{"$label":"ACTS_IN","name":"McGraw-Hill Security","type":"Role","_key":"57787","_from":"22055","_to":"36578"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"57812","_from":"22056","_to":"36591"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"47840","_from":"22056","_to":"31493"} +{"$label":"ACTS_IN","name":"Grace De Tessant","type":"Role","_key":"119396","_from":"22057","_to":"70150"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"53108","_from":"22057","_to":"34364"} +{"$label":"ACTS_IN","name":"Cosette enfant","type":"Role","_key":"31592","_from":"22063","_to":"22058"} +{"$label":"ACTS_IN","name":"Gillenormand","type":"Role","_key":"31591","_from":"22062","_to":"22058"} +{"$label":"ACTS_IN","name":"Enjolras","type":"Role","_key":"31590","_from":"22061","_to":"22058"} +{"$label":"ACTS_IN","name":"\u00c9ponine","type":"Role","_key":"31589","_from":"22060","_to":"22058"} +{"$label":"DIRECTED","_key":"31581","_from":"22059","_to":"22058"} +{"$label":"ACTS_IN","name":"Gavroche","type":"Role","_key":"31606","_from":"22070","_to":"22064"} +{"$label":"ACTS_IN","name":"Feuilly","type":"Role","_key":"31605","_from":"22069","_to":"22064"} +{"$label":"ACTS_IN","name":"Cosette as Child","type":"Role","_key":"31604","_from":"22068","_to":"22064"} +{"$label":"ACTS_IN","name":"Eponine","type":"Role","_key":"31603","_from":"22067","_to":"22064"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31601","_from":"22066","_to":"22064"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"31599","_from":"22065","_to":"22064"} +{"$label":"ACTS_IN","name":"Yury Zhivago","type":"Role","_key":"118796","_from":"22065","_to":"69843"} +{"$label":"ACTS_IN","name":"Caravaggio","type":"Role","_key":"103597","_from":"22065","_to":"60931"} +{"$label":"ACTS_IN","name":"Angus McCulloch","type":"Role","_key":"56341","_from":"22065","_to":"35796"} +{"$label":"ACTS_IN","name":"Azelma enfant","type":"Role","_key":"31629","_from":"22082","_to":"22071"} +{"$label":"ACTS_IN","name":"\u00c9ponine enfant","type":"Role","_key":"31628","_from":"22081","_to":"22071"} +{"$label":"ACTS_IN","name":"La logeuse de la maison Corbeau","type":"Role","_key":"31627","_from":"22080","_to":"22071"} +{"$label":"ACTS_IN","name":"la soeur de Fantine","type":"Role","_key":"31626","_from":"22079","_to":"22071"} +{"$label":"ACTS_IN","name":"Gavroche","type":"Role","_key":"31623","_from":"22078","_to":"22071"} +{"$label":"ACTS_IN","name":"Cosette enfant","type":"Role","_key":"31622","_from":"22077","_to":"22071"} +{"$label":"ACTS_IN","name":"Azelma","type":"Role","_key":"31620","_from":"22076","_to":"22071"} +{"$label":"ACTS_IN","name":"\u00c9ponine","type":"Role","_key":"31616","_from":"22075","_to":"22071"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"31615","_from":"22074","_to":"22071"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"31614","_from":"22073","_to":"22071"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"31612","_from":"22072","_to":"22071"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"88085","_from":"22073","_to":"52280"} +{"$label":"ACTS_IN","name":"Cl\u00e9ante","type":"Role","_key":"71521","_from":"22074","_to":"43339"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33048","_from":"22076","_to":"22898"} +{"$label":"ACTS_IN","name":"Marie Coquillot","type":"Role","_key":"42844","_from":"22080","_to":"28642"} +{"$label":"ACTS_IN","name":"Augusta Henderson","type":"Role","_key":"35802","_from":"22080","_to":"24312"} +{"$label":"ACTS_IN","name":"Soeur Simplice","type":"Role","_key":"31646","_from":"22086","_to":"22083"} +{"$label":"ACTS_IN","name":"Cosette enfant","type":"Role","_key":"31642","_from":"22085","_to":"22083"} +{"$label":"DIRECTED","_key":"31631","_from":"22084","_to":"22083"} +{"$label":"DIRECTED","_key":"32678","_from":"22084","_to":"22701"} +{"$label":"DIRECTED","_key":"32542","_from":"22084","_to":"22629"} +{"$label":"ACTS_IN","name":"Sabina","type":"Role","_key":"115383","_from":"22086","_to":"67943"} +{"$label":"ACTS_IN","name":"Manou","type":"Role","_key":"104467","_from":"22086","_to":"61444"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"89230","_from":"22086","_to":"52837"} +{"$label":"ACTS_IN","name":"Flavia","type":"Role","_key":"51308","_from":"22086","_to":"33463"} +{"$label":"ACTS_IN","name":"Fermina Daza","type":"Role","_key":"44515","_from":"22086","_to":"29642"} +{"$label":"DIRECTED","_key":"31651","_from":"22090","_to":"22087"} +{"$label":"ACTS_IN","name":"August Seibel","type":"Role","_key":"31649","_from":"22089","_to":"22087"} +{"$label":"ACTS_IN","name":"Horst Zimmer","type":"Role","_key":"31648","_from":"22088","_to":"22087"} +{"$label":"ACTS_IN","name":"Bens Vater","type":"Role","_key":"37308","_from":"22089","_to":"25277"} +{"$label":"DIRECTED","_key":"31660","_from":"22098","_to":"22091"} +{"$label":"ACTS_IN","name":"\u00c9ponine","type":"Role","_key":"31658","_from":"22097","_to":"22091"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"31657","_from":"22096","_to":"22091"} +{"$label":"ACTS_IN","name":"La Th\u00e9nardier","type":"Role","_key":"31656","_from":"22095","_to":"22091"} +{"$label":"ACTS_IN","name":"Th\u00e9nardier","type":"Role","_key":"31655","_from":"22094","_to":"22091"} +{"$label":"ACTS_IN","name":"Javert","type":"Role","_key":"31654","_from":"22093","_to":"22091"} +{"$label":"ACTS_IN","name":"Jean Valjean","type":"Role","_key":"31652","_from":"22092","_to":"22091"} +{"$label":"ACTS_IN","name":"Cardinal Zambelli","type":"Role","_key":"104340","_from":"22092","_to":"61385"} +{"$label":"ACTS_IN","name":"Giuseppe Bottazzi \"Peppone\"","type":"Role","_key":"73076","_from":"22092","_to":"43967"} +{"$label":"ACTS_IN","name":"Giuseppe Bottazzi dit Peppone","type":"Role","_key":"70852","_from":"22092","_to":"43064"} +{"$label":"ACTS_IN","name":"Giuseppe Bottazzi dit Peppone","type":"Role","_key":"70848","_from":"22092","_to":"43063"} +{"$label":"ACTS_IN","name":"Giuseppe Bottazzi dit Peppone","type":"Role","_key":"70842","_from":"22092","_to":"43059"} +{"$label":"DIRECTED","_key":"65320","_from":"22098","_to":"40531"} +{"$label":"ACTS_IN","name":"Newberry","type":"Role","_key":"31674","_from":"22104","_to":"22099"} +{"$label":"ACTS_IN","name":"Wick","type":"Role","_key":"31673","_from":"22103","_to":"22099"} +{"$label":"ACTS_IN","name":"Sergeant Cortez","type":"Role","_key":"31669","_from":"22102","_to":"22099"} +{"$label":"ACTS_IN","name":"Sergeant Johns","type":"Role","_key":"31668","_from":"22101","_to":"22099"} +{"$label":"ACTS_IN","name":"Royce","type":"Role","_key":"31664","_from":"22100","_to":"22099"} +{"$label":"ACTS_IN","name":"Peter McCallister","type":"Role","_key":"90117","_from":"22100","_to":"53291"} +{"$label":"ACTS_IN","name":"Ray Purvis","type":"Role","_key":"45174","_from":"22100","_to":"29971"} +{"$label":"ACTS_IN","name":"Lester the Pimp","type":"Role","_key":"46403","_from":"22101","_to":"30650"} +{"$label":"ACTS_IN","name":"Shank","type":"Role","_key":"54251","_from":"22104","_to":"34832"} +{"$label":"ACTS_IN","name":"Kommissar Gerd Wollweber","type":"Role","_key":"31681","_from":"22108","_to":"22105"} +{"$label":"ACTS_IN","name":"Gudrun Lampert","type":"Role","_key":"31678","_from":"22107","_to":"22105"} +{"$label":"DIRECTED","_key":"31676","_from":"22106","_to":"22105"} +{"$label":"DIRECTED","_key":"88304","_from":"22106","_to":"52374"} +{"$label":"DIRECTED","_key":"61790","_from":"22106","_to":"38898"} +{"$label":"DIRECTED","_key":"40637","_from":"22106","_to":"27367"} +{"$label":"DIRECTED","_key":"36147","_from":"22106","_to":"24525"} +{"$label":"ACTS_IN","name":"Pauls Mutter","type":"Role","_key":"91634","_from":"22107","_to":"54033"} +{"$label":"ACTS_IN","name":"Botschafter","type":"Role","_key":"34556","_from":"22108","_to":"23661"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"31689","_from":"22115","_to":"22109"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31688","_from":"22114","_to":"22109"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31686","_from":"22113","_to":"22109"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31685","_from":"22112","_to":"22109"} +{"$label":"ACTS_IN","name":"Arwed Imiela","type":"Role","_key":"31684","_from":"22111","_to":"22109"} +{"$label":"DIRECTED","_key":"31683","_from":"22110","_to":"22109"} +{"$label":"ACTS_IN","name":"Paolo Rossi","type":"Role","_key":"105268","_from":"22111","_to":"61947"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"72170","_from":"22111","_to":"43622"} +{"$label":"ACTS_IN","name":"J\u00fcrgen Matthies","type":"Role","_key":"69662","_from":"22111","_to":"42524"} +{"$label":"DIRECTED","_key":"31696","_from":"22121","_to":"22116"} +{"$label":"ACTS_IN","name":"Prince Aryan","type":"Role","_key":"31695","_from":"22120","_to":"22116"} +{"$label":"ACTS_IN","name":"Devi","type":"Role","_key":"31694","_from":"22119","_to":"22116"} +{"$label":"ACTS_IN","name":"Bheema","type":"Role","_key":"31693","_from":"22118","_to":"22116"} +{"$label":"ACTS_IN","name":"Kaurwaki","type":"Role","_key":"31691","_from":"22117","_to":"22116"} +{"$label":"ACTS_IN","name":"Shruti","type":"Role","_key":"120711","_from":"22117","_to":"70898"} +{"$label":"ACTS_IN","name":"Kamini \/ Sonia","type":"Role","_key":"112482","_from":"22117","_to":"66413"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108814","_from":"22117","_to":"64308"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"108800","_from":"22117","_to":"64303"} +{"$label":"ACTS_IN","name":"Dolly Mishra","type":"Role","_key":"101492","_from":"22117","_to":"59735"} +{"$label":"ACTS_IN","name":"Ekta Kapoor","type":"Role","_key":"100731","_from":"22117","_to":"59389"} +{"$label":"ACTS_IN","name":"Pooja","type":"Role","_key":"98974","_from":"22117","_to":"58310"} +{"$label":"ACTS_IN","name":"Geet","type":"Role","_key":"72094","_from":"22117","_to":"43580"} +{"$label":"ACTS_IN","name":"Simrita Rai","type":"Role","_key":"65801","_from":"22117","_to":"40722"} +{"$label":"ACTS_IN","name":"Pooja Sharma","type":"Role","_key":"65506","_from":"22117","_to":"40603"} +{"$label":"ACTS_IN","name":"Irfan","type":"Role","_key":"120871","_from":"22118","_to":"70973"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"111009","_from":"22118","_to":"65566"} +{"$label":"ACTS_IN","name":"Priya","type":"Role","_key":"105295","_from":"22119","_to":"61962"} +{"$label":"ACTS_IN","name":"Summi","type":"Role","_key":"104745","_from":"22119","_to":"61621"} +{"$label":"DIRECTED","_key":"31708","_from":"22130","_to":"22122"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"31707","_from":"22129","_to":"22122"} +{"$label":"ACTS_IN","name":"Nefzat Akinci","type":"Role","_key":"31705","_from":"22128","_to":"22122"} +{"$label":"ACTS_IN","name":"Major Hauptmann","type":"Role","_key":"31704","_from":"22127","_to":"22122"} +{"$label":"ACTS_IN","name":"Uwe Zonkowitz","type":"Role","_key":"31703","_from":"22126","_to":"22122"} +{"$label":"ACTS_IN","name":"Ufo","type":"Role","_key":"31700","_from":"22125","_to":"22122"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"31699","_from":"22124","_to":"22122"} +{"$label":"ACTS_IN","name":"Basti L\u00e4mmle","type":"Role","_key":"31697","_from":"22123","_to":"22122"} +{"$label":"ACTS_IN","name":"Niels","type":"Role","_key":"54358","_from":"22123","_to":"34870"} +{"$label":"ACTS_IN","name":"Elmar","type":"Role","_key":"46746","_from":"22123","_to":"30844"} +{"$label":"ACTS_IN","name":"Malen","type":"Role","_key":"53446","_from":"22124","_to":"34531"} +{"$label":"ACTS_IN","name":"Dirk - der Hotelpage","type":"Role","_key":"105267","_from":"22125","_to":"61947"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"88239","_from":"22125","_to":"52346"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"68508","_from":"22125","_to":"42019"} +{"$label":"ACTS_IN","name":"Schmidt","type":"Role","_key":"65219","_from":"22125","_to":"40496"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"63733","_from":"22125","_to":"39849"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen als W\u00fcrstchenverk\u00e4ufer","type":"Role","_key":"59776","_from":"22125","_to":"37734"} +{"$label":"ACTS_IN","name":"Red Bull","type":"Role","_key":"54777","_from":"22125","_to":"35052"} +{"$label":"ACTS_IN","name":"Red Bull","type":"Role","_key":"54119","_from":"22125","_to":"34784"} +{"$label":"ACTS_IN","name":"Josch","type":"Role","_key":"52772","_from":"22125","_to":"34237"} +{"$label":"ACTS_IN","name":"Acki","type":"Role","_key":"52012","_from":"22125","_to":"33911"} +{"$label":"ACTS_IN","name":"Dieter Huhn","type":"Role","_key":"42385","_from":"22125","_to":"28358"} +{"$label":"ACTS_IN","name":"Rainer Zielinski","type":"Role","_key":"42090","_from":"22125","_to":"28198"} +{"$label":"ACTS_IN","name":"Generaloberst Erich Hoepner","type":"Role","_key":"63125","_from":"22127","_to":"39591"} +{"$label":"DIRECTED","_key":"54775","_from":"22130","_to":"35052"} +{"$label":"DIRECTED","_key":"53122","_from":"22130","_to":"34369"} +{"$label":"ACTS_IN","name":"Caroline Floyd","type":"Role","_key":"31719","_from":"22137","_to":"22131"} +{"$label":"ACTS_IN","name":"Dr. Vasili Orlov","type":"Role","_key":"31718","_from":"22136","_to":"22131"} +{"$label":"ACTS_IN","name":"Victor Milson","type":"Role","_key":"31717","_from":"22135","_to":"22131"} +{"$label":"ACTS_IN","name":"Christopher Floyd","type":"Role","_key":"31716","_from":"22134","_to":"22131"} +{"$label":"ACTS_IN","name":"Dimitri Moisevitch","type":"Role","_key":"31715","_from":"22133","_to":"22131"} +{"$label":"DIRECTED","_key":"31709","_from":"22132","_to":"22131"} +{"$label":"DIRECTED","_key":"105506","_from":"22132","_to":"62082"} +{"$label":"DIRECTED","_key":"90736","_from":"22132","_to":"53554"} +{"$label":"DIRECTED","_key":"72841","_from":"22132","_to":"43874"} +{"$label":"DIRECTED","_key":"72366","_from":"22132","_to":"43698"} +{"$label":"DIRECTED","_key":"69456","_from":"22132","_to":"42441"} +{"$label":"DIRECTED","_key":"67299","_from":"22132","_to":"41490"} +{"$label":"DIRECTED","_key":"63937","_from":"22132","_to":"39936"} +{"$label":"DIRECTED","_key":"60343","_from":"22132","_to":"38062"} +{"$label":"DIRECTED","_key":"58336","_from":"22132","_to":"36876"} +{"$label":"DIRECTED","_key":"52509","_from":"22132","_to":"34148"} +{"$label":"DIRECTED","_key":"50923","_from":"22132","_to":"33237"} +{"$label":"ACTS_IN","name":"Dr. Strange","type":"Role","_key":"41709","_from":"22133","_to":"27984"} +{"$label":"ACTS_IN","name":"Craigmeyer","type":"Role","_key":"34968","_from":"22133","_to":"23872"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"92619","_from":"22134","_to":"54673"} +{"$label":"ACTS_IN","name":"Det. Arthur Brown","type":"Role","_key":"35354","_from":"22135","_to":"24069"} +{"$label":"ACTS_IN","name":"Elizabeth Farmer (as Madolyn Smith)","type":"Role","_key":"98885","_from":"22137","_to":"58269"} +{"$label":"ACTS_IN","name":"Peggy Schuyler","type":"Role","_key":"64717","_from":"22137","_to":"40297"} +{"$label":"DIRECTED","_key":"31729","_from":"22148","_to":"22139"} +{"$label":"DIRECTED","_key":"31728","_from":"22147","_to":"22139"} +{"$label":"ACTS_IN","name":"Heinrich Kr\u00fcger","type":"Role","_key":"31726","_from":"22146","_to":"22139"} +{"$label":"ACTS_IN","name":"Dr. George Rosenberg","type":"Role","_key":"31725","_from":"22145","_to":"22139"} +{"$label":"ACTS_IN","name":"Donald Ritter","type":"Role","_key":"31724","_from":"22144","_to":"22139"} +{"$label":"ACTS_IN","name":"Diana Rosenberg","type":"Role","_key":"31723","_from":"22143","_to":"22139"} +{"$label":"ACTS_IN","name":"Trish Rosenberg","type":"Role","_key":"31722","_from":"22142","_to":"22139"} +{"$label":"ACTS_IN","name":"Harald Rosenberg","type":"Role","_key":"31721","_from":"22141","_to":"22139"} +{"$label":"ACTS_IN","name":"Martin Teichmann","type":"Role","_key":"31720","_from":"22140","_to":"22139"} +{"$label":"ACTS_IN","name":"Bad Alien - Talec","type":"Role","_key":"119986","_from":"22140","_to":"70466"} +{"$label":"ACTS_IN","name":"Aribert","type":"Role","_key":"119635","_from":"22140","_to":"70275"} +{"$label":"ACTS_IN","name":"Togaio - Blond Man","type":"Role","_key":"71148","_from":"22140","_to":"43185"} +{"$label":"ACTS_IN","name":"Caitlin Caine","type":"Role","_key":"69689","_from":"22142","_to":"42545"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"106813","_from":"22144","_to":"62951"} +{"$label":"ACTS_IN","name":"Phillip Dudley","type":"Role","_key":"31741","_from":"22159","_to":"22150"} +{"$label":"ACTS_IN","name":"Teller","type":"Role","_key":"31740","_from":"22158","_to":"22150"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"31739","_from":"22157","_to":"22150"} +{"$label":"ACTS_IN","name":"Schuman","type":"Role","_key":"31738","_from":"22156","_to":"22150"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"31737","_from":"22155","_to":"22150"} +{"$label":"ACTS_IN","name":"Elaine Wyatt","type":"Role","_key":"31736","_from":"22154","_to":"22150"} +{"$label":"ACTS_IN","name":"Jim Wyatt","type":"Role","_key":"31735","_from":"22153","_to":"22150"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"31732","_from":"22152","_to":"22150"} +{"$label":"DIRECTED","_key":"31731","_from":"22151","_to":"22150"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"109591","_from":"22152","_to":"64732"} +{"$label":"ACTS_IN","name":"Emma Matisse","type":"Role","_key":"98627","_from":"22152","_to":"58112"} +{"$label":"ACTS_IN","name":"Christie Roberts","type":"Role","_key":"56070","_from":"22152","_to":"35624"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"51860","_from":"22152","_to":"33835"} +{"$label":"ACTS_IN","name":"Elizabeth Throckmorton","type":"Role","_key":"32250","_from":"22152","_to":"22472"} +{"$label":"ACTS_IN","name":"Claw","type":"Role","_key":"121121","_from":"22153","_to":"71139"} +{"$label":"DIRECTED","_key":"106409","_from":"22153","_to":"62687"} +{"$label":"ACTS_IN","name":"Janelle","type":"Role","_key":"59130","_from":"22154","_to":"37329"} +{"$label":"ACTS_IN","name":"Bisley (voice)","type":"Role","_key":"119661","_from":"22156","_to":"70284"} +{"$label":"ACTS_IN","name":"Tarquin","type":"Role","_key":"106835","_from":"22156","_to":"62978"} +{"$label":"ACTS_IN","name":"Trev","type":"Role","_key":"96692","_from":"22156","_to":"56874"} +{"$label":"ACTS_IN","name":"Johnno","type":"Role","_key":"56572","_from":"22156","_to":"35929"} +{"$label":"ACTS_IN","name":"Lachie","type":"Role","_key":"102218","_from":"22157","_to":"60147"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"96809","_from":"22158","_to":"56926"} +{"$label":"ACTS_IN","name":"Mutter Grimm","type":"Role","_key":"31752","_from":"22161","_to":"22160"} +{"$label":"ACTS_IN","name":"Le grand ma\u00eetre des tempeliers","type":"Role","_key":"31761","_from":"22168","_to":"22162"} +{"$label":"ACTS_IN","name":"P\u00e9clet","type":"Role","_key":"31759","_from":"22167","_to":"22162"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"31758","_from":"22166","_to":"22162"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"31755","_from":"22165","_to":"22162"} +{"$label":"ACTS_IN","name":"l'homme sans visage","type":"Role","_key":"31754","_from":"22164","_to":"22162"} +{"$label":"DIRECTED","_key":"31753","_from":"22163","_to":"22162"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"38654","_from":"22165","_to":"26112"} +{"$label":"ACTS_IN","name":"Delphine Moreasseau","type":"Role","_key":"34619","_from":"22165","_to":"23691"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32827","_from":"22165","_to":"22788"} +{"$label":"ACTS_IN","name":"Chief Executioner","type":"Role","_key":"71416","_from":"22168","_to":"43302"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"31766","_from":"22171","_to":"22169"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"31765","_from":"22170","_to":"22169"} +{"$label":"DIRECTED","_key":"31764","_from":"22170","_to":"22169"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31783","_from":"22170","_to":"22172"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31784","_from":"22185","_to":"22172"} +{"$label":"ACTS_IN","name":"Herr Maus","type":"Role","_key":"31782","_from":"22184","_to":"22172"} +{"$label":"ACTS_IN","name":"K\u00e4the","type":"Role","_key":"31781","_from":"22183","_to":"22172"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"31780","_from":"22182","_to":"22172"} +{"$label":"ACTS_IN","name":"Herr Kant","type":"Role","_key":"31778","_from":"22181","_to":"22172"} +{"$label":"ACTS_IN","name":"Opa Hamm","type":"Role","_key":"31777","_from":"22180","_to":"22172"} +{"$label":"ACTS_IN","name":"P\u00fctz","type":"Role","_key":"31776","_from":"22179","_to":"22172"} +{"$label":"ACTS_IN","name":"Polizist Drexel","type":"Role","_key":"31775","_from":"22178","_to":"22172"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"31774","_from":"22177","_to":"22172"} +{"$label":"ACTS_IN","name":"Webs","type":"Role","_key":"31772","_from":"22176","_to":"22172"} +{"$label":"ACTS_IN","name":"Jochen","type":"Role","_key":"31771","_from":"22175","_to":"22172"} +{"$label":"ACTS_IN","name":"Hanni","type":"Role","_key":"31769","_from":"22174","_to":"22172"} +{"$label":"ACTS_IN","name":"Kalle Damm","type":"Role","_key":"31768","_from":"22173","_to":"22172"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39922","_from":"22173","_to":"26965"} +{"$label":"ACTS_IN","name":"Lieschen Brunnhuber","type":"Role","_key":"31797","_from":"22193","_to":"22186"} +{"$label":"ACTS_IN","name":"Kriminalinspektor Busch","type":"Role","_key":"31796","_from":"22192","_to":"22186"} +{"$label":"ACTS_IN","name":"Hans Brunnhuber","type":"Role","_key":"31795","_from":"22191","_to":"22186"} +{"$label":"ACTS_IN","name":"Franz Jaguweit","type":"Role","_key":"31794","_from":"22190","_to":"22186"} +{"$label":"ACTS_IN","name":"Kurt Willbrand","type":"Role","_key":"31792","_from":"22189","_to":"22186"} +{"$label":"ACTS_IN","name":"Klatte, Inhaber der Broadway-Bar","type":"Role","_key":"31791","_from":"22188","_to":"22186"} +{"$label":"DIRECTED","_key":"31785","_from":"22187","_to":"22186"} +{"$label":"ACTS_IN","name":"Julian Craster","type":"Role","_key":"120333","_from":"22189","_to":"70681"} +{"$label":"ACTS_IN","name":"Herr Kuhn","type":"Role","_key":"40484","_from":"22190","_to":"27264"} +{"$label":"DIRECTED","_key":"31804","_from":"22197","_to":"22194"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"31801","_from":"22196","_to":"22194"} +{"$label":"ACTS_IN","name":"Billy Bagot","type":"Role","_key":"31800","_from":"22195","_to":"22194"} +{"$label":"DIRECTED","_key":"31816","_from":"22207","_to":"22198"} +{"$label":"DIRECTED","_key":"31815","_from":"22206","_to":"22198"} +{"$label":"ACTS_IN","name":"Anna Grant","type":"Role","_key":"31814","_from":"22205","_to":"22198"} +{"$label":"ACTS_IN","name":"Telefonistin","type":"Role","_key":"31813","_from":"22204","_to":"22198"} +{"$label":"ACTS_IN","name":"Molloy","type":"Role","_key":"31812","_from":"22203","_to":"22198"} +{"$label":"ACTS_IN","name":"Sergeant Harwell","type":"Role","_key":"31811","_from":"22202","_to":"22198"} +{"$label":"ACTS_IN","name":"dt. Kriminalbeamter","type":"Role","_key":"31810","_from":"22201","_to":"22198"} +{"$label":"ACTS_IN","name":"Stefan Grant","type":"Role","_key":"31809","_from":"22200","_to":"22198"} +{"$label":"ACTS_IN","name":"Major Baxter Grant","type":"Role","_key":"31805","_from":"22199","_to":"22198"} +{"$label":"ACTS_IN","name":"Jeff Douglas","type":"Role","_key":"115665","_from":"22199","_to":"68094"} +{"$label":"ACTS_IN","name":"Lt. Steve Maryk","type":"Role","_key":"61446","_from":"22199","_to":"38765"} +{"$label":"ACTS_IN","name":"La Goulue","type":"Role","_key":"66656","_from":"22205","_to":"41192"} +{"$label":"DIRECTED","_key":"31823","_from":"22211","_to":"22208"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"31822","_from":"22210","_to":"22208"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"31821","_from":"22209","_to":"22208"} +{"$label":"DIRECTED","_key":"31831","_from":"22218","_to":"22212"} +{"$label":"ACTS_IN","name":"Freddie Brooks","type":"Role","_key":"31830","_from":"22217","_to":"22212"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"31829","_from":"22216","_to":"22212"} +{"$label":"ACTS_IN","name":"Rose Brooks","type":"Role","_key":"31828","_from":"22215","_to":"22212"} +{"$label":"ACTS_IN","name":"Linda Sullivan","type":"Role","_key":"31826","_from":"22214","_to":"22212"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"31824","_from":"22213","_to":"22212"} +{"$label":"ACTS_IN","name":"Hammet","type":"Role","_key":"102174","_from":"22213","_to":"60129"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"72283","_from":"22213","_to":"43663"} +{"$label":"ACTS_IN","name":"Michael Knight","type":"Role","_key":"66989","_from":"22213","_to":"41357"} +{"$label":"ACTS_IN","name":"Ammer","type":"Role","_key":"53209","_from":"22213","_to":"34418"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"34281","_from":"22213","_to":"23524"} +{"$label":"ACTS_IN","name":"Michael Trutz vom Rhein","type":"Role","_key":"34162","_from":"22213","_to":"23460"} +{"$label":"ACTS_IN","name":"Vera Webster","type":"Role","_key":"54489","_from":"22215","_to":"34930"} +{"$label":"ACTS_IN","name":"Loretta Creswood","type":"Role","_key":"49674","_from":"22215","_to":"32500"} +{"$label":"ACTS_IN","name":"Robi","type":"Role","_key":"31842","_from":"22224","_to":"22219"} +{"$label":"ACTS_IN","name":"Martial","type":"Role","_key":"31840","_from":"22223","_to":"22219"} +{"$label":"ACTS_IN","name":"Philippe La Roche","type":"Role","_key":"31839","_from":"22222","_to":"22219"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"31837","_from":"22221","_to":"22219"} +{"$label":"DIRECTED","_key":"31832","_from":"22220","_to":"22219"} +{"$label":"DIRECTED","_key":"31850","_from":"22229","_to":"22225"} +{"$label":"ACTS_IN","name":"John Harkness","type":"Role","_key":"31849","_from":"22228","_to":"22225"} +{"$label":"ACTS_IN","name":"Emily Morton","type":"Role","_key":"31847","_from":"22227","_to":"22225"} +{"$label":"ACTS_IN","name":"Laura Harkness","type":"Role","_key":"31846","_from":"22226","_to":"22225"} +{"$label":"DIRECTED","_key":"67014","_from":"22229","_to":"41361"} +{"$label":"ACTS_IN","name":"Spanish Dancer","type":"Role","_key":"31862","_from":"22235","_to":"22230"} +{"$label":"ACTS_IN","name":"Gitarrist","type":"Role","_key":"31861","_from":"22234","_to":"22230"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"31859","_from":"22233","_to":"22230"} +{"$label":"ACTS_IN","name":"Beatrice","type":"Role","_key":"31858","_from":"22232","_to":"22230"} +{"$label":"DIRECTED","_key":"31851","_from":"22231","_to":"22230"} +{"$label":"DIRECTED","_key":"113422","_from":"22231","_to":"66828"} +{"$label":"DIRECTED","_key":"112155","_from":"22231","_to":"66231"} +{"$label":"DIRECTED","_key":"104698","_from":"22231","_to":"61589"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"121729","_from":"22235","_to":"71514"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Schneide","type":"Role","_key":"31873","_from":"22240","_to":"22236"} +{"$label":"ACTS_IN","name":"Scholtz, SS-Mann","type":"Role","_key":"31871","_from":"22239","_to":"22236"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"31869","_from":"22238","_to":"22236"} +{"$label":"DIRECTED","_key":"31864","_from":"22237","_to":"22236"} +{"$label":"DIRECTED","_key":"114212","_from":"22237","_to":"67273"} +{"$label":"DIRECTED","_key":"104536","_from":"22237","_to":"61490"} +{"$label":"DIRECTED","_key":"40680","_from":"22237","_to":"27383"} +{"$label":"ACTS_IN","name":"la m\u00e8re de Nina","type":"Role","_key":"89132","_from":"22238","_to":"52799"} +{"$label":"ACTS_IN","name":"Guilia","type":"Role","_key":"36197","_from":"22238","_to":"24558"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"44937","_from":"22239","_to":"29874"} +{"$label":"ACTS_IN","name":"Arnov","type":"Role","_key":"31885","_from":"22246","_to":"22241"} +{"$label":"ACTS_IN","name":"Maximilian","type":"Role","_key":"31884","_from":"22245","_to":"22241"} +{"$label":"ACTS_IN","name":"Col. Cagle","type":"Role","_key":"31881","_from":"22244","_to":"22241"} +{"$label":"ACTS_IN","name":"Mike Kells","type":"Role","_key":"31877","_from":"22243","_to":"22241"} +{"$label":"DIRECTED","_key":"31876","_from":"22242","_to":"22241"} +{"$label":"DIRECTED","_key":"121734","_from":"22242","_to":"71514"} +{"$label":"DIRECTED","_key":"115283","_from":"22242","_to":"67879"} +{"$label":"DIRECTED","_key":"112781","_from":"22242","_to":"66595"} +{"$label":"DIRECTED","_key":"72624","_from":"22242","_to":"43773"} +{"$label":"DIRECTED","_key":"64960","_from":"22242","_to":"40379"} +{"$label":"DIRECTED","_key":"43891","_from":"22242","_to":"29302"} +{"$label":"DIRECTED","_key":"42736","_from":"22242","_to":"28608"} +{"$label":"DIRECTED","_key":"40447","_from":"22242","_to":"27258"} +{"$label":"DIRECTED","_key":"35435","_from":"22242","_to":"24107"} +{"$label":"ACTS_IN","name":"Stanton 'Stan' Carlisle","type":"Role","_key":"119038","_from":"22243","_to":"69977"} +{"$label":"ACTS_IN","name":"Paul Van Riebeck","type":"Role","_key":"113423","_from":"22243","_to":"66828"} +{"$label":"ACTS_IN","name":"Dutch Henry Brown","type":"Role","_key":"100762","_from":"22244","_to":"59408"} +{"$label":"ACTS_IN","name":"Reporterin","type":"Role","_key":"31894","_from":"22251","_to":"22247"} +{"$label":"ACTS_IN","name":"Chefredakteur Dr. Kopp","type":"Role","_key":"31892","_from":"22250","_to":"22247"} +{"$label":"DIRECTED","_key":"31887","_from":"22249","_to":"22247"} +{"$label":"DIRECTED","_key":"31886","_from":"22248","_to":"22247"} +{"$label":"ACTS_IN","name":"Hunderson","type":"Role","_key":"67347","_from":"22250","_to":"41508"} +{"$label":"ACTS_IN","name":"B\u00fcroleiter","type":"Role","_key":"43765","_from":"22250","_to":"29221"} +{"$label":"ACTS_IN","name":"Charley Kurtsinger","type":"Role","_key":"31905","_from":"22255","_to":"22252"} +{"$label":"ACTS_IN","name":"George Woolf","type":"Role","_key":"31901","_from":"22254","_to":"22252"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"31897","_from":"22253","_to":"22252"} +{"$label":"ACTS_IN","name":"Mirka","type":"Role","_key":"31917","_from":"22263","_to":"22256"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"31915","_from":"22262","_to":"22256"} +{"$label":"ACTS_IN","name":"G\u00fcnter","type":"Role","_key":"31913","_from":"22261","_to":"22256"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"31912","_from":"22260","_to":"22256"} +{"$label":"ACTS_IN","name":"Gitte","type":"Role","_key":"31911","_from":"22259","_to":"22256"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"31910","_from":"22258","_to":"22256"} +{"$label":"ACTS_IN","name":"Marianne Gr\u00fcnwald","type":"Role","_key":"31908","_from":"22257","_to":"22256"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"68447","_from":"22257","_to":"41988"} +{"$label":"ACTS_IN","name":"Fabians Mutter","type":"Role","_key":"42906","_from":"22259","_to":"28665"} +{"$label":"ACTS_IN","name":"Hausmeister","type":"Role","_key":"31928","_from":"22271","_to":"22264"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"31927","_from":"22270","_to":"22264"} +{"$label":"ACTS_IN","name":"Kriminalbeamter","type":"Role","_key":"31925","_from":"22269","_to":"22264"} +{"$label":"ACTS_IN","name":"Herbert Schulz","type":"Role","_key":"31924","_from":"22268","_to":"22264"} +{"$label":"ACTS_IN","name":"Tina Germer","type":"Role","_key":"31922","_from":"22267","_to":"22264"} +{"$label":"ACTS_IN","name":"Julia Sellbach","type":"Role","_key":"31921","_from":"22266","_to":"22264"} +{"$label":"ACTS_IN","name":"Marie Sellbach","type":"Role","_key":"31919","_from":"22265","_to":"22264"} +{"$label":"ACTS_IN","name":"Hans-Joachim Scholz","type":"Role","_key":"42415","_from":"22270","_to":"28380"} +{"$label":"ACTS_IN","name":"Charley Wakeham","type":"Role","_key":"41089","_from":"22270","_to":"27647"} +{"$label":"DIRECTED","_key":"31931","_from":"22273","_to":"22272"} +{"$label":"ACTS_IN","name":"Dagobert","type":"Role","_key":"31944","_from":"22283","_to":"22274"} +{"$label":"ACTS_IN","name":"Nicole Schulz","type":"Role","_key":"31943","_from":"22282","_to":"22274"} +{"$label":"ACTS_IN","name":"Simone Vess","type":"Role","_key":"31941","_from":"22281","_to":"22274"} +{"$label":"ACTS_IN","name":"Kaufhausdirektor","type":"Role","_key":"31940","_from":"22280","_to":"22274"} +{"$label":"ACTS_IN","name":"Breitenbach","type":"Role","_key":"31938","_from":"22279","_to":"22274"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"31937","_from":"22278","_to":"22274"} +{"$label":"ACTS_IN","name":"Gina Lohr","type":"Role","_key":"31936","_from":"22277","_to":"22274"} +{"$label":"ACTS_IN","name":"Kriminalrat Hartmut Rote","type":"Role","_key":"31935","_from":"22276","_to":"22274"} +{"$label":"ACTS_IN","name":"Kommissar Theo Kaiser","type":"Role","_key":"31934","_from":"22275","_to":"22274"} +{"$label":"ACTS_IN","name":"Steink\u00f6hler","type":"Role","_key":"44018","_from":"22275","_to":"29358"} +{"$label":"ACTS_IN","name":"Penelope Zimmer","type":"Role","_key":"46688","_from":"22277","_to":"30826"} +{"$label":"ACTS_IN","name":"Karin Engel","type":"Role","_key":"44114","_from":"22277","_to":"29413"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"42300","_from":"22280","_to":"28316"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"31955","_from":"22287","_to":"22284"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"31953","_from":"22286","_to":"22284"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"31952","_from":"22285","_to":"22284"} +{"$label":"ACTS_IN","name":"Ben Lee","type":"Role","_key":"31963","_from":"22290","_to":"22288"} +{"$label":"DIRECTED","_key":"31956","_from":"22289","_to":"22288"} +{"$label":"DIRECTED","_key":"111165","_from":"22289","_to":"65654"} +{"$label":"ACTS_IN","name":"John T. O'Banion","type":"Role","_key":"31973","_from":"22295","_to":"22291"} +{"$label":"ACTS_IN","name":"James O'Banion","type":"Role","_key":"31972","_from":"22294","_to":"22291"} +{"$label":"ACTS_IN","name":"One Stab","type":"Role","_key":"31971","_from":"22293","_to":"22291"} +{"$label":"ACTS_IN","name":"Isabel Two Decker Ludlow","type":"Role","_key":"31970","_from":"22292","_to":"22291"} +{"$label":"ACTS_IN","name":"Zareta","type":"Role","_key":"114126","_from":"22292","_to":"67211"} +{"$label":"ACTS_IN","name":"Chief Red Cloud","type":"Role","_key":"94659","_from":"22293","_to":"55765"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"70628","_from":"22293","_to":"42977"} +{"$label":"ACTS_IN","name":"Gordy (voice)","type":"Role","_key":"46859","_from":"22293","_to":"30900"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"116311","_from":"22295","_to":"68473"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"107820","_from":"22295","_to":"63675"} +{"$label":"ACTS_IN","name":"Richard Nixon","type":"Role","_key":"93267","_from":"22295","_to":"54939"} +{"$label":"ACTS_IN","name":"Sean Phelan","type":"Role","_key":"31986","_from":"22299","_to":"22296"} +{"$label":"ACTS_IN","name":"Harry Sloan","type":"Role","_key":"31985","_from":"22298","_to":"22296"} +{"$label":"ACTS_IN","name":"Morgan O'Meara","type":"Role","_key":"31984","_from":"22297","_to":"22296"} +{"$label":"ACTS_IN","name":"Cedric","type":"Role","_key":"32498","_from":"22298","_to":"22603"} +{"$label":"ACTS_IN","name":"Van Buren","type":"Role","_key":"31997","_from":"22302","_to":"22300"} +{"$label":"ACTS_IN","name":"Mr. Langford","type":"Role","_key":"31996","_from":"22301","_to":"22300"} +{"$label":"ACTS_IN","name":"Genie","type":"Role","_key":"66084","_from":"22301","_to":"40891"} +{"$label":"ACTS_IN","name":"Cosette as child","type":"Role","_key":"32011","_from":"22308","_to":"22303"} +{"$label":"ACTS_IN","name":"Mme Th\u00e9nardier","type":"Role","_key":"32009","_from":"22307","_to":"22303"} +{"$label":"ACTS_IN","name":"Magliore","type":"Role","_key":"32007","_from":"22306","_to":"22303"} +{"$label":"ACTS_IN","name":"Fantine","type":"Role","_key":"32003","_from":"22305","_to":"22303"} +{"$label":"ACTS_IN","name":"Cosette","type":"Role","_key":"32000","_from":"22304","_to":"22303"} +{"$label":"ACTS_IN","name":"Sally Legge","type":"Role","_key":"41684","_from":"22304","_to":"27972"} +{"$label":"ACTS_IN","name":"Mrs. Waters","type":"Role","_key":"39414","_from":"22306","_to":"26641"} +{"$label":"ACTS_IN","name":"Angela Berenson","type":"Role","_key":"34768","_from":"22307","_to":"23765"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"32023","_from":"22315","_to":"22309"} +{"$label":"ACTS_IN","name":"Eliacin","type":"Role","_key":"32022","_from":"22314","_to":"22309"} +{"$label":"ACTS_IN","name":"Anglade","type":"Role","_key":"32021","_from":"22313","_to":"22309"} +{"$label":"ACTS_IN","name":"Philox\u00e8ne","type":"Role","_key":"32020","_from":"22312","_to":"22309"} +{"$label":"ACTS_IN","name":"Manon","type":"Role","_key":"32019","_from":"22311","_to":"22309"} +{"$label":"ACTS_IN","name":"Aim\u00e9e Cadoret","type":"Role","_key":"32017","_from":"22310","_to":"22309"} +{"$label":"ACTS_IN","name":"Oncle Jules","type":"Role","_key":"91221","_from":"22314","_to":"53793"} +{"$label":"ACTS_IN","name":"Oncle jules","type":"Role","_key":"91215","_from":"22314","_to":"53789"} +{"$label":"ACTS_IN","name":"Delphine","type":"Role","_key":"32030","_from":"22317","_to":"22316"} +{"$label":"ACTS_IN","name":"Vero","type":"Role","_key":"32039","_from":"22321","_to":"22318"} +{"$label":"ACTS_IN","name":"Dorothy Crumble","type":"Role","_key":"32038","_from":"22320","_to":"22318"} +{"$label":"ACTS_IN","name":"Emily Crumble","type":"Role","_key":"32037","_from":"22319","_to":"22318"} +{"$label":"ACTS_IN","name":"Igrayne","type":"Role","_key":"70433","_from":"22319","_to":"42880"} +{"$label":"ACTS_IN","name":"Guillemette","type":"Role","_key":"32050","_from":"22331","_to":"22322"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"32049","_from":"22330","_to":"22322"} +{"$label":"ACTS_IN","name":"Jean de Coras","type":"Role","_key":"32048","_from":"22329","_to":"22322"} +{"$label":"ACTS_IN","name":"Judge Rieux","type":"Role","_key":"32047","_from":"22328","_to":"22322"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"32046","_from":"22327","_to":"22322"} +{"$label":"ACTS_IN","name":"Catherine Boere","type":"Role","_key":"32044","_from":"22326","_to":"22322"} +{"$label":"ACTS_IN","name":"Martin Guerre","type":"Role","_key":"32043","_from":"22325","_to":"22322"} +{"$label":"ACTS_IN","name":"Uncle Pierre Guerre","type":"Role","_key":"32042","_from":"22324","_to":"22322"} +{"$label":"DIRECTED","_key":"32040","_from":"22323","_to":"22322"} +{"$label":"ACTS_IN","name":"Kovacs","type":"Role","_key":"88086","_from":"22324","_to":"52280"} +{"$label":"ACTS_IN","name":"Berri","type":"Role","_key":"65828","_from":"22324","_to":"40738"} +{"$label":"ACTS_IN","name":"Ziolev","type":"Role","_key":"38107","_from":"22324","_to":"25769"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33806","_from":"22324","_to":"23298"} +{"$label":"ACTS_IN","name":"Raymond Lemorne","type":"Role","_key":"50617","_from":"22325","_to":"33056"} +{"$label":"ACTS_IN","name":"Elo\u00efse","type":"Role","_key":"48813","_from":"22326","_to":"32011"} +{"$label":"ACTS_IN","name":"Andrea Charrier","type":"Role","_key":"32059","_from":"22336","_to":"22332"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"32058","_from":"22335","_to":"22332"} +{"$label":"ACTS_IN","name":"Louise Charrier","type":"Role","_key":"32057","_from":"22334","_to":"22332"} +{"$label":"ACTS_IN","name":"Laurent Baldi","type":"Role","_key":"32056","_from":"22333","_to":"22332"} +{"$label":"ACTS_IN","name":"Cynthia Hawkins","type":"Role","_key":"32066","_from":"22340","_to":"22337"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"32063","_from":"22339","_to":"22337"} +{"$label":"DIRECTED","_key":"32062","_from":"22338","_to":"22337"} +{"$label":"DIRECTED","_key":"73157","_from":"22338","_to":"43998"} +{"$label":"ACTS_IN","name":"Richard Cardinal","type":"Role","_key":"32074","_from":"22349","_to":"22341"} +{"$label":"ACTS_IN","name":"Fr. Leclerc","type":"Role","_key":"32073","_from":"22348","_to":"22341"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"32072","_from":"22347","_to":"22341"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"32071","_from":"22346","_to":"22341"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"32070","_from":"22345","_to":"22341"} +{"$label":"ACTS_IN","name":"Mireille","type":"Role","_key":"32069","_from":"22344","_to":"22341"} +{"$label":"ACTS_IN","name":"Daniel Coulombe","type":"Role","_key":"32068","_from":"22343","_to":"22341"} +{"$label":"DIRECTED","_key":"32067","_from":"22342","_to":"22341"} +{"$label":"DIRECTED","_key":"116414","_from":"22342","_to":"68526"} +{"$label":"DIRECTED","_key":"105679","_from":"22342","_to":"62205"} +{"$label":"DIRECTED","_key":"67523","_from":"22342","_to":"41573"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"120554","_from":"22343","_to":"70805"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"71942","_from":"22344","_to":"43522"} +{"$label":"ACTS_IN","name":"Sister Constance Lazure","type":"Role","_key":"67521","_from":"22345","_to":"41573"} +{"$label":"ACTS_IN","name":"R\u00e9my","type":"Role","_key":"116409","_from":"22346","_to":"68526"} +{"$label":"ACTS_IN","name":"Viktor Tagarov","type":"Role","_key":"114378","_from":"22346","_to":"67373"} +{"$label":"ACTS_IN","name":"Or\u00e9us Mailhot","type":"Role","_key":"107474","_from":"22346","_to":"63404"} +{"$label":"ACTS_IN","name":"Customs Agent (Montr\u00e9al)","type":"Role","_key":"99447","_from":"22346","_to":"58590"} +{"$label":"ACTS_IN","name":"R\u00e9my","type":"Role","_key":"67512","_from":"22346","_to":"41573"} +{"$label":"ACTS_IN","name":"Father St. Pierre","type":"Role","_key":"58511","_from":"22346","_to":"36974"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"116410","_from":"22349","_to":"68526"} +{"$label":"ACTS_IN","name":"Cur\u00e9 Leduc","type":"Role","_key":"107473","_from":"22349","_to":"63404"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"67518","_from":"22349","_to":"41573"} +{"$label":"ACTS_IN","name":"Doktor Trudeau","type":"Role","_key":"40059","_from":"22349","_to":"27036"} +{"$label":"ACTS_IN","name":"Belph\u00e9gor","type":"Role","_key":"32088","_from":"22358","_to":"22350"} +{"$label":"ACTS_IN","name":"Mme Gautrais","type":"Role","_key":"32084","_from":"22357","_to":"22350"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"32083","_from":"22356","_to":"22350"} +{"$label":"ACTS_IN","name":"Lady Hodwin","type":"Role","_key":"32081","_from":"22355","_to":"22350"} +{"$label":"ACTS_IN","name":"Boris Williams","type":"Role","_key":"32080","_from":"22354","_to":"22350"} +{"$label":"ACTS_IN","name":"Laurence \/ St\u00e9phanie","type":"Role","_key":"32079","_from":"22353","_to":"22350"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Bellegarde","type":"Role","_key":"32077","_from":"22352","_to":"22350"} +{"$label":"DIRECTED","_key":"32075","_from":"22351","_to":"22350"} +{"$label":"ACTS_IN","name":"Albert de Morcerf","type":"Role","_key":"32344","_from":"22352","_to":"22527"} +{"$label":"ACTS_IN","name":"Aglaonice","type":"Role","_key":"32673","_from":"22353","_to":"22696"} +{"$label":"ACTS_IN","name":"Wimmer","type":"Role","_key":"35121","_from":"22354","_to":"23944"} +{"$label":"ACTS_IN","name":"Madame Ivolvine","type":"Role","_key":"33775","_from":"22355","_to":"23281"} +{"$label":"ACTS_IN","name":"le vendeur de billets","type":"Role","_key":"33740","_from":"22356","_to":"23267"} +{"$label":"ACTS_IN","name":"B\u00e4uerin","type":"Role","_key":"32915","_from":"22357","_to":"22829"} +{"$label":"ACTS_IN","name":"Marcie Cunningham","type":"Role","_key":"32094","_from":"22364","_to":"22359"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"32093","_from":"22363","_to":"22359"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"32092","_from":"22362","_to":"22359"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"32091","_from":"22361","_to":"22359"} +{"$label":"ACTS_IN","name":"Mrs. Voorhees","type":"Role","_key":"32090","_from":"22360","_to":"22359"} +{"$label":"ACTS_IN","name":"Alice Hardy","type":"Role","_key":"56043","_from":"22361","_to":"35620"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32106","_from":"22374","_to":"22365"} +{"$label":"ACTS_IN","name":"o.A,","type":"Role","_key":"32105","_from":"22373","_to":"22365"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32103","_from":"22372","_to":"22365"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32102","_from":"22371","_to":"22365"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32101","_from":"22370","_to":"22365"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"32100","_from":"22369","_to":"22365"} +{"$label":"ACTS_IN","name":"Richter Jerichow","type":"Role","_key":"32099","_from":"22368","_to":"22365"} +{"$label":"ACTS_IN","name":"Gerhard Wismuth","type":"Role","_key":"32098","_from":"22367","_to":"22365"} +{"$label":"DIRECTED","_key":"32096","_from":"22366","_to":"22365"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61268","_from":"22367","_to":"38680"} +{"$label":"ACTS_IN","name":"Christian Wolfinger","type":"Role","_key":"42725","_from":"22367","_to":"28599"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33398","_from":"22374","_to":"23111"} +{"$label":"ACTS_IN","name":"Lissi","type":"Role","_key":"33285","_from":"22374","_to":"23060"} +{"$label":"ACTS_IN","name":"Portero","type":"Role","_key":"32115","_from":"22382","_to":"22375"} +{"$label":"ACTS_IN","name":"Montador","type":"Role","_key":"32114","_from":"22381","_to":"22375"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"32113","_from":"22380","_to":"22375"} +{"$label":"ACTS_IN","name":"T\u00eda Carmen","type":"Role","_key":"32112","_from":"22379","_to":"22375"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"32111","_from":"22378","_to":"22375"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"32109","_from":"22377","_to":"22375"} +{"$label":"DIRECTED","_key":"32107","_from":"22376","_to":"22375"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"48527","_from":"22377","_to":"31846"} +{"$label":"ACTS_IN","name":"Queti","type":"Role","_key":"48514","_from":"22378","_to":"31842"} +{"$label":"ACTS_IN","name":"Fugitivo","type":"Role","_key":"32124","_from":"22390","_to":"22383"} +{"$label":"ACTS_IN","name":"Frankenstein","type":"Role","_key":"32123","_from":"22389","_to":"22383"} +{"$label":"ACTS_IN","name":"M\u00e9dico","type":"Role","_key":"32122","_from":"22388","_to":"22383"} +{"$label":"ACTS_IN","name":"Do\u00f1a Luc\u00eda","type":"Role","_key":"32121","_from":"22387","_to":"22383"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"32120","_from":"22386","_to":"22383"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"32118","_from":"22385","_to":"22383"} +{"$label":"DIRECTED","_key":"32116","_from":"22384","_to":"22383"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"38081","_from":"22385","_to":"25754"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34506","_from":"22385","_to":"23625"} +{"$label":"ACTS_IN","name":"Figueroa","type":"Role","_key":"52983","_from":"22388","_to":"34322"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"56595","_from":"22390","_to":"35943"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"32129","_from":"22396","_to":"22391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"32128","_from":"22395","_to":"22391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"32127","_from":"22394","_to":"22391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"32126","_from":"22393","_to":"22391"} +{"$label":"DIRECTED","_key":"32125","_from":"22392","_to":"22391"} +{"$label":"ACTS_IN","name":"Cliente 'Striptease'","type":"Role","_key":"48551","_from":"22392","_to":"31857"} +{"$label":"ACTS_IN","name":"El Pel\u00f3n","type":"Role","_key":"32145","_from":"22407","_to":"22397"} +{"$label":"ACTS_IN","name":"Jos\u00e9 El Leproso","type":"Role","_key":"32144","_from":"22406","_to":"22397"} +{"$label":"ACTS_IN","name":"Enedina","type":"Role","_key":"32143","_from":"22405","_to":"22397"} +{"$label":"ACTS_IN","name":"Don Zequiel","type":"Role","_key":"32141","_from":"22404","_to":"22397"} +{"$label":"ACTS_IN","name":"El Poca","type":"Role","_key":"32140","_from":"22403","_to":"22397"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"32139","_from":"22402","_to":"22397"} +{"$label":"ACTS_IN","name":"Luc\u00eda","type":"Role","_key":"32138","_from":"22401","_to":"22397"} +{"$label":"ACTS_IN","name":"Viridiana","type":"Role","_key":"32133","_from":"22400","_to":"22397"} +{"$label":"DIRECTED","_key":"32132","_from":"22399","_to":"22397"} +{"$label":"DIRECTED","_key":"32131","_from":"22398","_to":"22397"} +{"$label":"ACTS_IN","name":"Publisher","type":"Role","_key":"114585","_from":"22398","_to":"67500"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"35424","_from":"22400","_to":"24102"} +{"$label":"ACTS_IN","name":"Ignacia","type":"Role","_key":"32154","_from":"22416","_to":"22408"} +{"$label":"ACTS_IN","name":"Estefan\u00eda","type":"Role","_key":"32153","_from":"22415","_to":"22408"} +{"$label":"ACTS_IN","name":"Antonio Rodr\u00edguez, el hermano mayor de Jos\u00e9 Luis","type":"Role","_key":"32151","_from":"22414","_to":"22408"} +{"$label":"ACTS_IN","name":"\u00c1lvarez, el enterrador","type":"Role","_key":"32150","_from":"22413","_to":"22408"} +{"$label":"ACTS_IN","name":"Carmen, la hija de Amadeo","type":"Role","_key":"32149","_from":"22412","_to":"22408"} +{"$label":"ACTS_IN","name":"Amadeo, el verdugo","type":"Role","_key":"32148","_from":"22411","_to":"22408"} +{"$label":"ACTS_IN","name":"Jos\u00e9 Luis Rodr\u00edguez, el enterrador","type":"Role","_key":"32147","_from":"22410","_to":"22408"} +{"$label":"DIRECTED","_key":"32146","_from":"22409","_to":"22408"} +{"$label":"ACTS_IN","name":"Giacinto Mazzatella","type":"Role","_key":"120055","_from":"22410","_to":"70506"} +{"$label":"ACTS_IN","name":"Dinah","type":"Role","_key":"44123","_from":"22412","_to":"29415"} +{"$label":"ACTS_IN","name":"Nataniele (Bartender)","type":"Role","_key":"65678","_from":"22413","_to":"40684"} +{"$label":"ACTS_IN","name":"Genaro Campillo","type":"Role","_key":"112207","_from":"22414","_to":"66264"} +{"$label":"ACTS_IN","name":"Achille Dambreuse","type":"Role","_key":"36333","_from":"22414","_to":"24646"} +{"$label":"ACTS_IN","name":"Chica bigotuda","type":"Role","_key":"32168","_from":"22424","_to":"22417"} +{"$label":"ACTS_IN","name":"Distribuidora Avon","type":"Role","_key":"32166","_from":"22423","_to":"22417"} +{"$label":"ACTS_IN","name":"Charito","type":"Role","_key":"32163","_from":"22422","_to":"22417"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"32160","_from":"22421","_to":"22417"} +{"$label":"ACTS_IN","name":"Bom","type":"Role","_key":"32159","_from":"22420","_to":"22417"} +{"$label":"ACTS_IN","name":"Luci","type":"Role","_key":"32158","_from":"22419","_to":"22417"} +{"$label":"DIRECTED","_key":"32155","_from":"22418","_to":"22417"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"48533","_from":"22419","_to":"31846"} +{"$label":"ACTS_IN","name":"Azafata","type":"Role","_key":"48519","_from":"22419","_to":"31842"} +{"$label":"ACTS_IN","name":"Angustias","type":"Role","_key":"48517","_from":"22422","_to":"31842"} +{"$label":"ACTS_IN","name":"Yolanda Bel","type":"Role","_key":"48521","_from":"22424","_to":"31846"} +{"$label":"ACTS_IN","name":"Macarra","type":"Role","_key":"32180","_from":"22434","_to":"22425"} +{"$label":"ACTS_IN","name":"Hombre supermercado","type":"Role","_key":"32179","_from":"22433","_to":"22425"} +{"$label":"ACTS_IN","name":"Warren Belch","type":"Role","_key":"32178","_from":"22432","_to":"22425"} +{"$label":"ACTS_IN","name":"Nicol\u00e1s","type":"Role","_key":"32176","_from":"22431","_to":"22425"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"32174","_from":"22430","_to":"22425"} +{"$label":"ACTS_IN","name":"Le\u00f3n","type":"Role","_key":"32173","_from":"22429","_to":"22425"} +{"$label":"ACTS_IN","name":"Violeta","type":"Role","_key":"32172","_from":"22428","_to":"22425"} +{"$label":"ACTS_IN","name":"Mat\u00edas","type":"Role","_key":"32171","_from":"22427","_to":"22425"} +{"$label":"DIRECTED","_key":"32170","_from":"22426","_to":"22425"} +{"$label":"ACTS_IN","name":"Richter Dr. Karst","type":"Role","_key":"32189","_from":"22443","_to":"22435"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"32187","_from":"22442","_to":"22435"} +{"$label":"ACTS_IN","name":"Staatsanwalt Baum","type":"Role","_key":"32186","_from":"22441","_to":"22435"} +{"$label":"ACTS_IN","name":"Kommissar Tandler","type":"Role","_key":"32185","_from":"22440","_to":"22435"} +{"$label":"ACTS_IN","name":"Dr. Horn","type":"Role","_key":"32184","_from":"22439","_to":"22435"} +{"$label":"ACTS_IN","name":"Hermann Rohrbach","type":"Role","_key":"32183","_from":"22438","_to":"22435"} +{"$label":"ACTS_IN","name":"Maria Rohrbach","type":"Role","_key":"32182","_from":"22437","_to":"22435"} +{"$label":"DIRECTED","_key":"32181","_from":"22436","_to":"22435"} +{"$label":"DIRECTED","_key":"41019","_from":"22436","_to":"27598"} +{"$label":"DIRECTED","_key":"32509","_from":"22436","_to":"22612"} +{"$label":"ACTS_IN","name":"Stratwitch","type":"Role","_key":"40485","_from":"22439","_to":"27264"} +{"$label":"ACTS_IN","name":"Inspector Jeff Mitchell","type":"Role","_key":"38188","_from":"22439","_to":"25808"} +{"$label":"ACTS_IN","name":"Pepe Garezzo","type":"Role","_key":"44213","_from":"22442","_to":"29461"} +{"$label":"ACTS_IN","name":"Padre de Jos\u00e9 Luis","type":"Role","_key":"32197","_from":"22447","_to":"22444"} +{"$label":"ACTS_IN","name":"Tomas","type":"Role","_key":"32192","_from":"22446","_to":"22444"} +{"$label":"DIRECTED","_key":"32190","_from":"22445","_to":"22444"} +{"$label":"DIRECTED","_key":"94163","_from":"22445","_to":"55446"} +{"$label":"ACTS_IN","name":"Baggagemaster","type":"Role","_key":"32212","_from":"22455","_to":"22448"} +{"$label":"ACTS_IN","name":"Express Messenger","type":"Role","_key":"32211","_from":"22454","_to":"22448"} +{"$label":"ACTS_IN","name":"Dick Liddil","type":"Role","_key":"32210","_from":"22453","_to":"22448"} +{"$label":"ACTS_IN","name":"Ed Miller","type":"Role","_key":"32209","_from":"22452","_to":"22448"} +{"$label":"ACTS_IN","name":"Tim James","type":"Role","_key":"32207","_from":"22451","_to":"22448"} +{"$label":"ACTS_IN","name":"Mary James","type":"Role","_key":"32206","_from":"22450","_to":"22448"} +{"$label":"DIRECTED","_key":"32198","_from":"22449","_to":"22448"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"111417","_from":"22449","_to":"65787"} +{"$label":"DIRECTED","_key":"54413","_from":"22449","_to":"34896"} +{"$label":"ACTS_IN","name":"Katie Garvey","type":"Role","_key":"97074","_from":"22450","_to":"57091"} +{"$label":"ACTS_IN","name":"Krug","type":"Role","_key":"116045","_from":"22452","_to":"68340"} +{"$label":"ACTS_IN","name":"Wendell","type":"Role","_key":"45545","_from":"22452","_to":"30156"} +{"$label":"ACTS_IN","name":"Rico Rice","type":"Role","_key":"115734","_from":"22453","_to":"68144"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"92833","_from":"22453","_to":"54766"} +{"$label":"ACTS_IN","name":"Lagrand","type":"Role","_key":"47085","_from":"22453","_to":"31049"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"44317","_from":"22453","_to":"29535"} +{"$label":"ACTS_IN","name":"Doug Hertz","type":"Role","_key":"32223","_from":"22460","_to":"22456"} +{"$label":"ACTS_IN","name":"Carter Davies","type":"Role","_key":"32221","_from":"22459","_to":"22456"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"32220","_from":"22458","_to":"22456"} +{"$label":"ACTS_IN","name":"Wilson Bulosan","type":"Role","_key":"32219","_from":"22457","_to":"22456"} +{"$label":"ACTS_IN","name":"Antarctic Angel","type":"Role","_key":"57935","_from":"22457","_to":"36647"} +{"$label":"ACTS_IN","name":"Doug Davis","type":"Role","_key":"50696","_from":"22457","_to":"33093"} +{"$label":"ACTS_IN","name":"Steve Valdez","type":"Role","_key":"54438","_from":"22458","_to":"34911"} +{"$label":"ACTS_IN","name":"Mr. Perenese","type":"Role","_key":"100282","_from":"22459","_to":"59136"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"93998","_from":"22459","_to":"55351"} +{"$label":"ACTS_IN","name":"Uncle John","type":"Role","_key":"91760","_from":"22459","_to":"54126"} +{"$label":"ACTS_IN","name":"Black Ops Leader","type":"Role","_key":"59918","_from":"22460","_to":"37824"} +{"$label":"ACTS_IN","name":"Moss","type":"Role","_key":"59131","_from":"22460","_to":"37329"} +{"$label":"ACTS_IN","name":"Damon","type":"Role","_key":"50693","_from":"22460","_to":"33093"} +{"$label":"ACTS_IN","name":"Today Show Host","type":"Role","_key":"32231","_from":"22463","_to":"22461"} +{"$label":"ACTS_IN","name":"Entourage","type":"Role","_key":"32230","_from":"22462","_to":"22461"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38760","_from":"22462","_to":"26188"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"32244","_from":"22471","_to":"22464"} +{"$label":"ACTS_IN","name":"Letellier","type":"Role","_key":"32243","_from":"22470","_to":"22464"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"32242","_from":"22469","_to":"22464"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"32238","_from":"22468","_to":"22464"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"32237","_from":"22467","_to":"22464"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"32236","_from":"22466","_to":"22464"} +{"$label":"DIRECTED","_key":"32234","_from":"22465","_to":"22464"} +{"$label":"DIRECTED","_key":"100048","_from":"22465","_to":"59020"} +{"$label":"DIRECTED","_key":"91168","_from":"22465","_to":"53774"} +{"$label":"DIRECTED","_key":"88082","_from":"22465","_to":"52280"} +{"$label":"DIRECTED","_key":"72038","_from":"22465","_to":"43560"} +{"$label":"DIRECTED","_key":"68377","_from":"22465","_to":"41963"} +{"$label":"DIRECTED","_key":"63017","_from":"22465","_to":"39553"} +{"$label":"ACTS_IN","name":"Hugo Marciac","type":"Role","_key":"105571","_from":"22466","_to":"62126"} +{"$label":"ACTS_IN","name":"Piotr","type":"Role","_key":"101448","_from":"22466","_to":"59718"} +{"$label":"ACTS_IN","name":"Ponchel","type":"Role","_key":"71374","_from":"22466","_to":"43289"} +{"$label":"ACTS_IN","name":"Antoine Bailleul","type":"Role","_key":"48603","_from":"22466","_to":"31880"} +{"$label":"DIRECTED","_key":"48600","_from":"22466","_to":"31880"} +{"$label":"ACTS_IN","name":"Emilie","type":"Role","_key":"63944","_from":"22467","_to":"39938"} +{"$label":"ACTS_IN","name":"Le pr\u00e9fet","type":"Role","_key":"118289","_from":"22470","_to":"69527"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"44692","_from":"22470","_to":"29734"} +{"$label":"ACTS_IN","name":"Marjolaine","type":"Role","_key":"48777","_from":"22471","_to":"31986"} +{"$label":"ACTS_IN","name":"Babington","type":"Role","_key":"32254","_from":"22474","_to":"22472"} +{"$label":"DIRECTED","_key":"32245","_from":"22473","_to":"22472"} +{"$label":"DIRECTED","_key":"90355","_from":"22473","_to":"53397"} +{"$label":"DIRECTED","_key":"52522","_from":"22473","_to":"34152"} +{"$label":"DIRECTED","_key":"32255","_from":"22473","_to":"22475"} +{"$label":"ACTS_IN","name":"Qwerty Doolittle","type":"Role","_key":"113801","_from":"22474","_to":"67048"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"105590","_from":"22474","_to":"62138"} +{"$label":"ACTS_IN","name":"William Stafford","type":"Role","_key":"88560","_from":"22474","_to":"52483"} +{"$label":"ACTS_IN","name":"Tony Baekeland","type":"Role","_key":"65998","_from":"22474","_to":"40841"} +{"$label":"ACTS_IN","name":"Sir Thomas Elyot","type":"Role","_key":"32270","_from":"22478","_to":"22475"} +{"$label":"ACTS_IN","name":"Queen Mary","type":"Role","_key":"32264","_from":"22477","_to":"22475"} +{"$label":"ACTS_IN","name":"Monsieur de Foix","type":"Role","_key":"32262","_from":"22476","_to":"22475"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117992","_from":"22476","_to":"69356"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"114618","_from":"22477","_to":"67516"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"64411","_from":"22477","_to":"40145"} +{"$label":"ACTS_IN","name":"Margaret 'Maggie' Mundy","type":"Role","_key":"37039","_from":"22477","_to":"25107"} +{"$label":"ACTS_IN","name":"Jed Willis","type":"Role","_key":"116168","_from":"22478","_to":"68402"} +{"$label":"ACTS_IN","name":"Ratter","type":"Role","_key":"100881","_from":"22478","_to":"59478"} +{"$label":"ACTS_IN","name":"La vendeuse","type":"Role","_key":"32285","_from":"22489","_to":"22479"} +{"$label":"ACTS_IN","name":"La veuve Juliette","type":"Role","_key":"32284","_from":"22488","_to":"22479"} +{"$label":"ACTS_IN","name":"Le Maire","type":"Role","_key":"32283","_from":"22487","_to":"22479"} +{"$label":"ACTS_IN","name":"Durieux","type":"Role","_key":"32282","_from":"22486","_to":"22479"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"32281","_from":"22485","_to":"22479"} +{"$label":"ACTS_IN","name":"Ren\u00e9","type":"Role","_key":"32280","_from":"22484","_to":"22479"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"32278","_from":"22483","_to":"22479"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"32276","_from":"22482","_to":"22479"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"32275","_from":"22481","_to":"22479"} +{"$label":"DIRECTED","_key":"32272","_from":"22480","_to":"22479"} +{"$label":"DIRECTED","_key":"56167","_from":"22480","_to":"35705"} +{"$label":"DIRECTED","_key":"52229","_from":"22480","_to":"34019"} +{"$label":"ACTS_IN","name":"Nicole Devereaux","type":"Role","_key":"111293","_from":"22482","_to":"65725"} +{"$label":"ACTS_IN","name":"Aur\u00e9lie","type":"Role","_key":"49642","_from":"22483","_to":"32481"} +{"$label":"ACTS_IN","name":"Emeline","type":"Role","_key":"33291","_from":"22483","_to":"23064"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71943","_from":"22486","_to":"43522"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"32290","_from":"22491","_to":"22490"} +{"$label":"ACTS_IN","name":"Bunny","type":"Role","_key":"32303","_from":"22497","_to":"22492"} +{"$label":"ACTS_IN","name":"Rapunzel","type":"Role","_key":"32302","_from":"22496","_to":"22492"} +{"$label":"ACTS_IN","name":"Pip in New York","type":"Role","_key":"32301","_from":"22493","_to":"22492"} +{"$label":"ACTS_IN","name":"Pip in Andalasia","type":"Role","_key":"32300","_from":"22495","_to":"22492"} +{"$label":"ACTS_IN","name":"Morgan Philip","type":"Role","_key":"32296","_from":"22494","_to":"22492"} +{"$label":"DIRECTED","_key":"32291","_from":"22493","_to":"22492"} +{"$label":"DIRECTED","_key":"105915","_from":"22493","_to":"62360"} +{"$label":"DIRECTED","_key":"63581","_from":"22493","_to":"39784"} +{"$label":"ACTS_IN","name":"Petrie \/ Spike","type":"Role","_key":"111930","_from":"22495","_to":"66073"} +{"$label":"ACTS_IN","name":"Smee (Voice)","type":"Role","_key":"109863","_from":"22495","_to":"64907"} +{"$label":"ACTS_IN","name":"Petrie","type":"Role","_key":"106595","_from":"22495","_to":"62811"} +{"$label":"ACTS_IN","name":"Bradley 'Brad' Uppercrust, III \/ Unemployment Lady \/ Chuck the Sportscaster (voice)","type":"Role","_key":"105307","_from":"22495","_to":"61968"} +{"$label":"ACTS_IN","name":"Tom (Voice)","type":"Role","_key":"101775","_from":"22495","_to":"59895"} +{"$label":"ACTS_IN","name":"Leggio \/ Dobbs \/ Jackson (voice)","type":"Role","_key":"93341","_from":"22495","_to":"54987"} +{"$label":"ACTS_IN","name":"Clank","type":"Role","_key":"93209","_from":"22495","_to":"54917"} +{"$label":"ACTS_IN","name":"Del Chillman \/ Sir Ian Locksley \/ Harpoon Gunner","type":"Role","_key":"91894","_from":"22495","_to":"54212"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"88986","_from":"22495","_to":"52708"} +{"$label":"ACTS_IN","name":"Atka","type":"Role","_key":"59406","_from":"22495","_to":"37525"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"58835","_from":"22495","_to":"37148"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"58367","_from":"22495","_to":"36888"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32324","_from":"22515","_to":"22499"} +{"$label":"ACTS_IN","name":"Voic of King","type":"Role","_key":"32322","_from":"22514","_to":"22499"} +{"$label":"ACTS_IN","name":"Voic of Insp. Khamar","type":"Role","_key":"32321","_from":"22513","_to":"22499"} +{"$label":"ACTS_IN","name":"Voic of Baker","type":"Role","_key":"32319","_from":"22512","_to":"22499"} +{"$label":"ACTS_IN","name":"Champa","type":"Role","_key":"32318","_from":"22511","_to":"22499"} +{"$label":"ACTS_IN","name":"Insp. Khamar","type":"Role","_key":"32317","_from":"22510","_to":"22499"} +{"$label":"ACTS_IN","name":"Rogers","type":"Role","_key":"32316","_from":"22509","_to":"22499"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"32315","_from":"22508","_to":"22499"} +{"$label":"ACTS_IN","name":"Barrett","type":"Role","_key":"32314","_from":"22500","_to":"22499"} +{"$label":"ACTS_IN","name":"Insp. DaSilva","type":"Role","_key":"32313","_from":"22507","_to":"22499"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"32312","_from":"22506","_to":"22499"} +{"$label":"ACTS_IN","name":"Philip Dawson","type":"Role","_key":"32311","_from":"22505","_to":"22499"} +{"$label":"ACTS_IN","name":"Michele","type":"Role","_key":"32310","_from":"22504","_to":"22499"} +{"$label":"ACTS_IN","name":"Sunny","type":"Role","_key":"32309","_from":"22503","_to":"22499"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"32307","_from":"22502","_to":"22499"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32305","_from":"22501","_to":"22499"} +{"$label":"DIRECTED","_key":"32304","_from":"22500","_to":"22499"} +{"$label":"ACTS_IN","name":"Almann","type":"Role","_key":"32392","_from":"22500","_to":"22544"} +{"$label":"DIRECTED","_key":"32380","_from":"22500","_to":"22544"} +{"$label":"ACTS_IN","name":"Cap. Tom Rowland","type":"Role","_key":"32424","_from":"22501","_to":"22563"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32412","_from":"22501","_to":"22555"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32399","_from":"22501","_to":"22551"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32383","_from":"22501","_to":"22544"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32365","_from":"22501","_to":"22535"} +{"$label":"ACTS_IN","name":"Capt. Tom Rowland","type":"Role","_key":"32327","_from":"22501","_to":"22516"} +{"$label":"ACTS_IN","name":"Riccordi","type":"Role","_key":"62812","_from":"22506","_to":"39474"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"42645","_from":"22512","_to":"28548"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"42325","_from":"22512","_to":"28337"} +{"$label":"ACTS_IN","name":"Ralf Dernburg","type":"Role","_key":"40985","_from":"22512","_to":"27570"} +{"$label":"ACTS_IN","name":"Voic of Supt. Ali","type":"Role","_key":"32430","_from":"22512","_to":"22563"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44217","_from":"22514","_to":"29461"} +{"$label":"ACTS_IN","name":"Jack Marlowe","type":"Role","_key":"90198","_from":"22515","_to":"53330"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32423","_from":"22515","_to":"22563"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32411","_from":"22515","_to":"22555"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32398","_from":"22515","_to":"22551"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32382","_from":"22515","_to":"22544"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32364","_from":"22515","_to":"22535"} +{"$label":"ACTS_IN","name":"Kommissar X","type":"Role","_key":"32326","_from":"22515","_to":"22516"} +{"$label":"ACTS_IN","name":"Voic of O`Brien","type":"Role","_key":"32339","_from":"22526","_to":"22516"} +{"$label":"ACTS_IN","name":"Voic of Kan","type":"Role","_key":"32337","_from":"22525","_to":"22516"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"32335","_from":"22524","_to":"22516"} +{"$label":"ACTS_IN","name":"Bobo","type":"Role","_key":"32334","_from":"22523","_to":"22516"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"32333","_from":"22522","_to":"22516"} +{"$label":"ACTS_IN","name":"Capt. Olson","type":"Role","_key":"32332","_from":"22521","_to":"22516"} +{"$label":"ACTS_IN","name":"Kan","type":"Role","_key":"32331","_from":"22520","_to":"22516"} +{"$label":"ACTS_IN","name":"O`Brien","type":"Role","_key":"32330","_from":"22519","_to":"22516"} +{"$label":"ACTS_IN","name":"Pamela Hudson","type":"Role","_key":"32329","_from":"22518","_to":"22516"} +{"$label":"DIRECTED","_key":"32325","_from":"22517","_to":"22516"} +{"$label":"ACTS_IN","name":"Smoky","type":"Role","_key":"32405","_from":"22517","_to":"22551"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"32376","_from":"22517","_to":"22535"} +{"$label":"DIRECTED","_key":"32397","_from":"22517","_to":"22551"} +{"$label":"DIRECTED","_key":"32381","_from":"22517","_to":"22544"} +{"$label":"DIRECTED","_key":"32363","_from":"22517","_to":"22535"} +{"$label":"ACTS_IN","name":"Gisela","type":"Role","_key":"32385","_from":"22518","_to":"22544"} +{"$label":"ACTS_IN","name":"Li Hu Wang","type":"Role","_key":"32374","_from":"22519","_to":"22535"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"32372","_from":"22520","_to":"22535"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"32371","_from":"22521","_to":"22535"} +{"$label":"ACTS_IN","name":"Serafina","type":"Role","_key":"33712","_from":"22522","_to":"23260"} +{"$label":"ACTS_IN","name":"Chef der Blaumiesen (Stimme)","type":"Role","_key":"88048","_from":"22525","_to":"52265"} +{"$label":"ACTS_IN","name":"Voic of Robert Hillary","type":"Role","_key":"32407","_from":"22525","_to":"22551"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38232","_from":"22526","_to":"25818"} +{"$label":"ACTS_IN","name":"Richard Shelton aka Richard Cravel","type":"Role","_key":"38157","_from":"22526","_to":"25795"} +{"$label":"ACTS_IN","name":"Bendetto","type":"Role","_key":"32352","_from":"22532","_to":"22527"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"32349","_from":"22531","_to":"22527"} +{"$label":"ACTS_IN","name":"Fernand Morcerf","type":"Role","_key":"32347","_from":"22530","_to":"22527"} +{"$label":"ACTS_IN","name":"Hayd\u00e9e","type":"Role","_key":"32345","_from":"22529","_to":"22527"} +{"$label":"DIRECTED","_key":"32340","_from":"22528","_to":"22527"} +{"$label":"DIRECTED","_key":"119102","_from":"22528","_to":"70009"} +{"$label":"ACTS_IN","name":"la patronne d'Hilda","type":"Role","_key":"33738","_from":"22529","_to":"23267"} +{"$label":"DIRECTED","_key":"32353","_from":"22534","_to":"22533"} +{"$label":"ACTS_IN","name":"John Bogus","type":"Role","_key":"48082","_from":"22534","_to":"31606"} +{"$label":"ACTS_IN","name":"Voic of Capt. Tom Rowland","type":"Role","_key":"32379","_from":"22543","_to":"22535"} +{"$label":"ACTS_IN","name":"Voic of Jonathan Taylor","type":"Role","_key":"32377","_from":"22542","_to":"22535"} +{"$label":"ACTS_IN","name":"Takato","type":"Role","_key":"32375","_from":"22541","_to":"22535"} +{"$label":"ACTS_IN","name":"Jonathan Taylor","type":"Role","_key":"32373","_from":"22540","_to":"22535"} +{"$label":"ACTS_IN","name":"Selena","type":"Role","_key":"32370","_from":"22539","_to":"22535"} +{"$label":"ACTS_IN","name":"Prof. Akron","type":"Role","_key":"32368","_from":"22538","_to":"22535"} +{"$label":"ACTS_IN","name":"Shabana","type":"Role","_key":"32367","_from":"22537","_to":"22535"} +{"$label":"ACTS_IN","name":"Sybille Akron","type":"Role","_key":"32366","_from":"22536","_to":"22535"} +{"$label":"ACTS_IN","name":"Sir Archibald","type":"Role","_key":"44808","_from":"22538","_to":"29804"} +{"$label":"ACTS_IN","name":"Lord Amery","type":"Role","_key":"41499","_from":"22538","_to":"27881"} +{"$label":"ACTS_IN","name":"Sir Archibald","type":"Role","_key":"38159","_from":"22538","_to":"25795"} +{"$label":"ACTS_IN","name":"Prof. Tavaria alias Frank Setefani","type":"Role","_key":"32428","_from":"22538","_to":"22563"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"35929","_from":"22539","_to":"24396"} +{"$label":"ACTS_IN","name":"Konsul Snyder","type":"Role","_key":"32391","_from":"22540","_to":"22544"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47355","_from":"22543","_to":"31181"} +{"$label":"ACTS_IN","name":"Voic of Konsul Snyder","type":"Role","_key":"32396","_from":"22550","_to":"22544"} +{"$label":"ACTS_IN","name":"Voic of Leyla Kessler","type":"Role","_key":"32394","_from":"22549","_to":"22544"} +{"$label":"ACTS_IN","name":"Insp. Rebat","type":"Role","_key":"32390","_from":"22548","_to":"22544"} +{"$label":"ACTS_IN","name":"Jenny Carter","type":"Role","_key":"32389","_from":"22547","_to":"22544"} +{"$label":"ACTS_IN","name":"George Hood","type":"Role","_key":"32386","_from":"22546","_to":"22544"} +{"$label":"ACTS_IN","name":"Leyla Kessler","type":"Role","_key":"32384","_from":"22545","_to":"22544"} +{"$label":"ACTS_IN","name":"Richard Moll","type":"Role","_key":"50884","_from":"22546","_to":"33211"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"50171","_from":"22546","_to":"32800"} +{"$label":"ACTS_IN","name":"Christian Bongert","type":"Role","_key":"43924","_from":"22546","_to":"29311"} +{"$label":"ACTS_IN","name":"Professor Edelsen","type":"Role","_key":"52605","_from":"22550","_to":"34181"} +{"$label":"ACTS_IN","name":"Dr. Senn","type":"Role","_key":"45367","_from":"22550","_to":"30082"} +{"$label":"ACTS_IN","name":"Deutscher Botschafter","type":"Role","_key":"44178","_from":"22550","_to":"29437"} +{"$label":"ACTS_IN","name":"Dr. Loxon","type":"Role","_key":"44071","_from":"22550","_to":"29386"} +{"$label":"ACTS_IN","name":"Insp. Lefevre","type":"Role","_key":"32404","_from":"22554","_to":"22551"} +{"$label":"ACTS_IN","name":"Betty Rogers","type":"Role","_key":"32401","_from":"22553","_to":"22551"} +{"$label":"ACTS_IN","name":"Emily Lambert","type":"Role","_key":"32400","_from":"22552","_to":"22551"} +{"$label":"ACTS_IN","name":"Isla Harris","type":"Role","_key":"55176","_from":"22552","_to":"35204"} +{"$label":"ACTS_IN","name":"Ruth J\u00fcttner","type":"Role","_key":"44847","_from":"22552","_to":"29829"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"42681","_from":"22552","_to":"28569"} +{"$label":"ACTS_IN","name":"Nora Benoni","type":"Role","_key":"40398","_from":"22552","_to":"27239"} +{"$label":"ACTS_IN","name":"Ingrid Brams","type":"Role","_key":"39956","_from":"22552","_to":"26992"} +{"$label":"ACTS_IN","name":"Trixi","type":"Role","_key":"43941","_from":"22553","_to":"29311"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"42647","_from":"22553","_to":"28548"} +{"$label":"ACTS_IN","name":"Kommisar X Freundin","type":"Role","_key":"32417","_from":"22553","_to":"22555"} +{"$label":"ACTS_IN","name":"Sergeant Balder","type":"Role","_key":"44807","_from":"22554","_to":"29804"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40750","_from":"22554","_to":"27425"} +{"$label":"ACTS_IN","name":"Phyllis Leighton","type":"Role","_key":"32415","_from":"22559","_to":"22555"} +{"$label":"ACTS_IN","name":"Maud Leighton","type":"Role","_key":"32414","_from":"22558","_to":"22555"} +{"$label":"ACTS_IN","name":"Kathin Russell","type":"Role","_key":"32413","_from":"22557","_to":"22555"} +{"$label":"DIRECTED","_key":"32410","_from":"22556","_to":"22555"} +{"$label":"ACTS_IN","name":"Cosima Schulze","type":"Role","_key":"45741","_from":"22558","_to":"30264"} +{"$label":"ACTS_IN","name":"Frau Heimann","type":"Role","_key":"42807","_from":"22558","_to":"28628"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41218","_from":"22558","_to":"27727"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"32421","_from":"22562","_to":"22560"} +{"$label":"DIRECTED","_key":"32420","_from":"22561","_to":"22560"} +{"$label":"ACTS_IN","name":"Tef Woolner","type":"Role","_key":"32429","_from":"22566","_to":"22563"} +{"$label":"ACTS_IN","name":"Shirin","type":"Role","_key":"32427","_from":"22565","_to":"22563"} +{"$label":"ACTS_IN","name":"Supt. Ali","type":"Role","_key":"32426","_from":"22564","_to":"22563"} +{"$label":"ACTS_IN","name":"Pike","type":"Role","_key":"89491","_from":"22566","_to":"52981"} +{"$label":"ACTS_IN","name":"Einsatzleiter Pluderer","type":"Role","_key":"72303","_from":"22566","_to":"43675"} +{"$label":"ACTS_IN","name":"Ewald","type":"Role","_key":"42529","_from":"22566","_to":"28471"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"41249","_from":"22566","_to":"27738"} +{"$label":"ACTS_IN","name":"Clock Five","type":"Role","_key":"39911","_from":"22566","_to":"26965"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"37424","_from":"22566","_to":"25358"} +{"$label":"ACTS_IN","name":"Fat","type":"Role","_key":"32822","_from":"22566","_to":"22783"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"32442","_from":"22570","_to":"22567"} +{"$label":"ACTS_IN","name":"Brendan","type":"Role","_key":"32440","_from":"22569","_to":"22567"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"32439","_from":"22568","_to":"22567"} +{"$label":"ACTS_IN","name":"Isobel McCordle","type":"Role","_key":"36875","_from":"22568","_to":"24998"} +{"$label":"ACTS_IN","name":"Kylie (voice)","type":"Role","_key":"62557","_from":"22569","_to":"39370"} +{"$label":"DIRECTED","_key":"41225","_from":"22569","_to":"27735"} +{"$label":"ACTS_IN","name":"Peaches","type":"Role","_key":"65422","_from":"22570","_to":"40563"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"32447","_from":"22574","_to":"22571"} +{"$label":"DIRECTED","_key":"32444","_from":"22573","_to":"22571"} +{"$label":"DIRECTED","_key":"32443","_from":"22572","_to":"22571"} +{"$label":"DIRECTED","_key":"89143","_from":"22573","_to":"52804"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"32468","_from":"22583","_to":"22575"} +{"$label":"ACTS_IN","name":"Mittenzwei","type":"Role","_key":"32467","_from":"22582","_to":"22575"} +{"$label":"ACTS_IN","name":"Gerold","type":"Role","_key":"32466","_from":"22581","_to":"22575"} +{"$label":"ACTS_IN","name":"Dienstag","type":"Role","_key":"32465","_from":"22580","_to":"22575"} +{"$label":"ACTS_IN","name":"Gustav mit der Hupe","type":"Role","_key":"32463","_from":"22579","_to":"22575"} +{"$label":"ACTS_IN","name":"Wachmeister Jeschke","type":"Role","_key":"32460","_from":"22578","_to":"22575"} +{"$label":"ACTS_IN","name":"Emil Tischbein","type":"Role","_key":"32457","_from":"22577","_to":"22575"} +{"$label":"DIRECTED","_key":"32456","_from":"22576","_to":"22575"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"32479","_from":"22592","_to":"22584"} +{"$label":"ACTS_IN","name":"Thesday","type":"Role","_key":"32478","_from":"22591","_to":"22584"} +{"$label":"ACTS_IN","name":"Gussy","type":"Role","_key":"32476","_from":"22590","_to":"22584"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"32475","_from":"22589","_to":"22584"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"32473","_from":"22588","_to":"22584"} +{"$label":"ACTS_IN","name":"Mrs. Blake","type":"Role","_key":"32472","_from":"22587","_to":"22584"} +{"$label":"ACTS_IN","name":"The Man in The Boeler Hat","type":"Role","_key":"32471","_from":"22586","_to":"22584"} +{"$label":"DIRECTED","_key":"32469","_from":"22585","_to":"22584"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41436","_from":"22588","_to":"27849"} +{"$label":"ACTS_IN","name":"Dienstag","type":"Role","_key":"32490","_from":"22602","_to":"22593"} +{"$label":"ACTS_IN","name":"Frau Tischbein","type":"Role","_key":"32488","_from":"22601","_to":"22593"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"32487","_from":"22600","_to":"22593"} +{"$label":"ACTS_IN","name":"Pony H\u00fctchen","type":"Role","_key":"32486","_from":"22599","_to":"22593"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"32485","_from":"22598","_to":"22593"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"32483","_from":"22597","_to":"22593"} +{"$label":"ACTS_IN","name":"Emil Tischbein","type":"Role","_key":"32482","_from":"22596","_to":"22593"} +{"$label":"ACTS_IN","name":"Baron","type":"Role","_key":"32481","_from":"22595","_to":"22593"} +{"$label":"DIRECTED","_key":"32480","_from":"22594","_to":"22593"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"93937","_from":"22595","_to":"55317"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44467","_from":"22600","_to":"29617"} +{"$label":"ACTS_IN","name":"Mary Wenner","type":"Role","_key":"44066","_from":"22601","_to":"29386"} +{"$label":"ACTS_IN","name":"Second guest's wife","type":"Role","_key":"32506","_from":"22611","_to":"22603"} +{"$label":"ACTS_IN","name":"Nurse #2","type":"Role","_key":"32505","_from":"22610","_to":"22603"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"32504","_from":"22609","_to":"22603"} +{"$label":"ACTS_IN","name":"Mrs. Moore","type":"Role","_key":"32503","_from":"22608","_to":"22603"} +{"$label":"ACTS_IN","name":"Severed head","type":"Role","_key":"32502","_from":"22607","_to":"22603"} +{"$label":"ACTS_IN","name":"Groom","type":"Role","_key":"32501","_from":"22606","_to":"22603"} +{"$label":"ACTS_IN","name":"Nurse #1","type":"Role","_key":"32500","_from":"22605","_to":"22603"} +{"$label":"ACTS_IN","name":"Mrs. Williams","type":"Role","_key":"32499","_from":"22604","_to":"22603"} +{"$label":"ACTS_IN","name":"Alice Brock","type":"Role","_key":"38241","_from":"22604","_to":"25825"} +{"$label":"ACTS_IN","name":"Kurgast","type":"Role","_key":"32520","_from":"22621","_to":"22612"} +{"$label":"ACTS_IN","name":"Stra\u00dfenbahnschaffner","type":"Role","_key":"32519","_from":"22620","_to":"22612"} +{"$label":"ACTS_IN","name":"Emils Onkel","type":"Role","_key":"32518","_from":"22619","_to":"22612"} +{"$label":"ACTS_IN","name":"Emils Tante","type":"Role","_key":"32517","_from":"22618","_to":"22612"} +{"$label":"ACTS_IN","name":"Oma Tischbein","type":"Role","_key":"32516","_from":"22617","_to":"22612"} +{"$label":"ACTS_IN","name":"Ponny H\u00fctchen","type":"Role","_key":"32515","_from":"22616","_to":"22612"} +{"$label":"ACTS_IN","name":"Anni Wandel","type":"Role","_key":"32514","_from":"22615","_to":"22612"} +{"$label":"ACTS_IN","name":"Frau Tischbein","type":"Role","_key":"32511","_from":"22614","_to":"22612"} +{"$label":"ACTS_IN","name":"Emil Tischbein","type":"Role","_key":"32510","_from":"22613","_to":"22612"} +{"$label":"ACTS_IN","name":"Johanna M\u00f6bius","type":"Role","_key":"44164","_from":"22615","_to":"29437"} +{"$label":"ACTS_IN","name":"Oma Jantzen","type":"Role","_key":"90218","_from":"22617","_to":"53344"} +{"$label":"ACTS_IN","name":"Oma Jantzen","type":"Role","_key":"49597","_from":"22617","_to":"32466"} +{"$label":"ACTS_IN","name":"Tante Agathe","type":"Role","_key":"43922","_from":"22617","_to":"29305"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"42328","_from":"22617","_to":"28337"} +{"$label":"ACTS_IN","name":"Josefine Kr\u00fcgler","type":"Role","_key":"42125","_from":"22617","_to":"28218"} +{"$label":"ACTS_IN","name":"Frau Kommerzienrat M\u00fchlberg","type":"Role","_key":"42006","_from":"22618","_to":"28144"} +{"$label":"ACTS_IN","name":"Trudchen Meyer","type":"Role","_key":"39993","_from":"22618","_to":"27002"} +{"$label":"ACTS_IN","name":"Max Sperling","type":"Role","_key":"44582","_from":"22620","_to":"29676"} +{"$label":"ACTS_IN","name":"Dr. Hans Sommer","type":"Role","_key":"44439","_from":"22620","_to":"29606"} +{"$label":"ACTS_IN","name":"Gendarm Eckzahn","type":"Role","_key":"42648","_from":"22620","_to":"28548"} +{"$label":"ACTS_IN","name":"Jacob Donath","type":"Role","_key":"45037","_from":"22621","_to":"29920"} +{"$label":"ACTS_IN","name":"Onkel Wilhelm","type":"Role","_key":"42329","_from":"22621","_to":"28337"} +{"$label":"ACTS_IN","name":"Hoteldetektiv","type":"Role","_key":"42047","_from":"22621","_to":"28168"} +{"$label":"ACTS_IN","name":"Stadtrat M\u00f6gele","type":"Role","_key":"41832","_from":"22621","_to":"28067"} +{"$label":"ACTS_IN","name":"Sperling","type":"Role","_key":"41150","_from":"22621","_to":"27686"} +{"$label":"ACTS_IN","name":"Dr. Wallner","type":"Role","_key":"41126","_from":"22621","_to":"27670"} +{"$label":"ACTS_IN","name":"Eugen Hempel","type":"Role","_key":"40354","_from":"22621","_to":"27219"} +{"$label":"ACTS_IN","name":"Willibald Knaake","type":"Role","_key":"40276","_from":"22621","_to":"27172"} +{"$label":"ACTS_IN","name":"Karl Otto Pringel","type":"Role","_key":"39995","_from":"22621","_to":"27002"} +{"$label":"ACTS_IN","name":"Valentine de Villefort","type":"Role","_key":"32530","_from":"22625","_to":"22623"} +{"$label":"DIRECTED","_key":"32522","_from":"22624","_to":"22623"} +{"$label":"ACTS_IN","name":"Dione","type":"Role","_key":"72866","_from":"22625","_to":"43890"} +{"$label":"ACTS_IN","name":"Evan Kurlander","type":"Role","_key":"32540","_from":"22628","_to":"22626"} +{"$label":"ACTS_IN","name":"Sarah Altman","type":"Role","_key":"32534","_from":"22627","_to":"22626"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"120462","_from":"22627","_to":"70763"} +{"$label":"ACTS_IN","name":"Isabella \"Bella\" Swan","type":"Role","_key":"115484","_from":"22627","_to":"67997"} +{"$label":"ACTS_IN","name":"Em Lewin","type":"Role","_key":"109622","_from":"22627","_to":"64750"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"107243","_from":"22627","_to":"63247"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"106881","_from":"22627","_to":"63011"} +{"$label":"ACTS_IN","name":"Melinda Sordino","type":"Role","_key":"102980","_from":"22627","_to":"60576"} +{"$label":"ACTS_IN","name":"Lucy Hardwicke","type":"Role","_key":"92302","_from":"22627","_to":"54472"} +{"$label":"ACTS_IN","name":"Kristen Tilson","type":"Role","_key":"91404","_from":"22627","_to":"53909"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"58652","_from":"22627","_to":"37053"} +{"$label":"ACTS_IN","name":"Bella Swan","type":"Role","_key":"51735","_from":"22627","_to":"33761"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"51593","_from":"22627","_to":"33665"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"48598","_from":"22627","_to":"31879"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"44949","_from":"22627","_to":"29879"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"40415","_from":"22627","_to":"27245"} +{"$label":"ACTS_IN","name":"Young Robin","type":"Role","_key":"33092","_from":"22627","_to":"22927"} +{"$label":"ACTS_IN","name":"Mr. Huberty","type":"Role","_key":"67764","_from":"22628","_to":"41653"} +{"$label":"ACTS_IN","name":"Merc\u00e9d\u00e8s jeune","type":"Role","_key":"32562","_from":"22636","_to":"22629"} +{"$label":"ACTS_IN","name":"Camille le Richardais","type":"Role","_key":"32555","_from":"22635","_to":"22629"} +{"$label":"ACTS_IN","name":"abb\u00e9 Faria","type":"Role","_key":"32553","_from":"22634","_to":"22629"} +{"$label":"ACTS_IN","name":"Hermine Danglars","type":"Role","_key":"32550","_from":"22633","_to":"22629"} +{"$label":"ACTS_IN","name":"Valentine de Villefort","type":"Role","_key":"32549","_from":"22632","_to":"22629"} +{"$label":"ACTS_IN","name":"Albert de Morcerf","type":"Role","_key":"32548","_from":"22631","_to":"22629"} +{"$label":"ACTS_IN","name":"Hayd\u00e9e","type":"Role","_key":"32547","_from":"22630","_to":"22629"} +{"$label":"ACTS_IN","name":"Aurora Fellove","type":"Role","_key":"55837","_from":"22630","_to":"35529"} +{"$label":"ACTS_IN","name":"Preah","type":"Role","_key":"54929","_from":"22630","_to":"35122"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"42440","_from":"22631","_to":"28418"} +{"$label":"ACTS_IN","name":"Marie de la Mesa","type":"Role","_key":"112302","_from":"22632","_to":"66304"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101519","_from":"22632","_to":"59754"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"96100","_from":"22632","_to":"56486"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"72978","_from":"22632","_to":"43926"} +{"$label":"ACTS_IN","name":"Jeanne Faussier","type":"Role","_key":"48618","_from":"22632","_to":"31888"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"45378","_from":"22636","_to":"30090"} +{"$label":"ACTS_IN","name":"StepMother, Australian","type":"Role","_key":"32570","_from":"22639","_to":"22637"} +{"$label":"ACTS_IN","name":"StepFather, Australian","type":"Role","_key":"32569","_from":"22638","_to":"22637"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"107176","_from":"22638","_to":"63215"} +{"$label":"ACTS_IN","name":"Jacko","type":"Role","_key":"97845","_from":"22638","_to":"57625"} +{"$label":"ACTS_IN","name":"Darryl","type":"Role","_key":"32582","_from":"22644","_to":"22640"} +{"$label":"ACTS_IN","name":"Linda Moon","type":"Role","_key":"32579","_from":"22643","_to":"22640"} +{"$label":"ACTS_IN","name":"Dabu","type":"Role","_key":"32576","_from":"22642","_to":"22640"} +{"$label":"DIRECTED","_key":"32571","_from":"22641","_to":"22640"} +{"$label":"DIRECTED","_key":"65658","_from":"22641","_to":"40679"} +{"$label":"DIRECTED","_key":"64750","_from":"22641","_to":"40300"} +{"$label":"DIRECTED","_key":"55319","_from":"22641","_to":"35264"} +{"$label":"DIRECTED","_key":"55158","_from":"22641","_to":"35201"} +{"$label":"DIRECTED","_key":"53647","_from":"22641","_to":"34604"} +{"$label":"DIRECTED","_key":"49539","_from":"22641","_to":"32434"} +{"$label":"ACTS_IN","name":"Black Man at Store","type":"Role","_key":"64747","_from":"22641","_to":"40300"} +{"$label":"ACTS_IN","name":"Percival","type":"Role","_key":"96863","_from":"22642","_to":"56966"} +{"$label":"ACTS_IN","name":"Clarence","type":"Role","_key":"93654","_from":"22642","_to":"55135"} +{"$label":"ACTS_IN","name":"Django","type":"Role","_key":"93192","_from":"22642","_to":"54916"} +{"$label":"ACTS_IN","name":"Avi","type":"Role","_key":"66236","_from":"22642","_to":"40976"} +{"$label":"ACTS_IN","name":"Elwyn the Crow","type":"Role","_key":"58985","_from":"22642","_to":"37240"} +{"$label":"ACTS_IN","name":"Jeremiah Mercer","type":"Role","_key":"48967","_from":"22642","_to":"32108"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"94843","_from":"22643","_to":"55853"} +{"$label":"ACTS_IN","name":"Isabelle Fuentes","type":"Role","_key":"55555","_from":"22643","_to":"35381"} +{"$label":"DIRECTED","_key":"32591","_from":"22650","_to":"22645"} +{"$label":"ACTS_IN","name":"Su-yeon","type":"Role","_key":"32590","_from":"22649","_to":"22645"} +{"$label":"ACTS_IN","name":"Su-mi","type":"Role","_key":"32589","_from":"22648","_to":"22645"} +{"$label":"ACTS_IN","name":"Stiefmutter","type":"Role","_key":"32588","_from":"22647","_to":"22645"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"32587","_from":"22646","_to":"22645"} +{"$label":"DIRECTED","_key":"103047","_from":"22650","_to":"60610"} +{"$label":"DIRECTED","_key":"69256","_from":"22650","_to":"42345"} +{"$label":"DIRECTED","_key":"32603","_from":"22657","_to":"22651"} +{"$label":"ACTS_IN","name":"Reynolds","type":"Role","_key":"32602","_from":"22656","_to":"22651"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"32601","_from":"22655","_to":"22651"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"32599","_from":"22654","_to":"22651"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"32598","_from":"22653","_to":"22651"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"32594","_from":"22652","_to":"22651"} +{"$label":"ACTS_IN","name":"Isabel","type":"Role","_key":"90965","_from":"22652","_to":"53668"} +{"$label":"ACTS_IN","name":"Victoria Arag\u00f3n","type":"Role","_key":"54689","_from":"22652","_to":"35016"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"107019","_from":"22654","_to":"63093"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"101255","_from":"22654","_to":"59627"} +{"$label":"ACTS_IN","name":"Dirty Dee","type":"Role","_key":"64550","_from":"22654","_to":"40205"} +{"$label":"ACTS_IN","name":"Lt. Greg Velasquez","type":"Role","_key":"52635","_from":"22654","_to":"34193"} +{"$label":"DIRECTED","_key":"67022","_from":"22657","_to":"41373"} +{"$label":"DIRECTED","_key":"44638","_from":"22657","_to":"29706"} +{"$label":"ACTS_IN","name":"Wilma de Loy","type":"Role","_key":"32620","_from":"22672","_to":"22658"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"32619","_from":"22671","_to":"22658"} +{"$label":"ACTS_IN","name":"Giuseppe","type":"Role","_key":"32618","_from":"22670","_to":"22658"} +{"$label":"ACTS_IN","name":"Billys Opa","type":"Role","_key":"32617","_from":"22669","_to":"22658"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"32616","_from":"22668","_to":"22658"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"32614","_from":"22667","_to":"22658"} +{"$label":"ACTS_IN","name":"Sophie Latimore","type":"Role","_key":"32612","_from":"22666","_to":"22658"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"32611","_from":"22665","_to":"22658"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"32610","_from":"22664","_to":"22658"} +{"$label":"ACTS_IN","name":"Alec Korsky","type":"Role","_key":"32608","_from":"22663","_to":"22658"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"32607","_from":"22662","_to":"22658"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32606","_from":"22661","_to":"22658"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32605","_from":"22660","_to":"22658"} +{"$label":"DIRECTED","_key":"32604","_from":"22659","_to":"22658"} +{"$label":"DIRECTED","_key":"119196","_from":"22659","_to":"70039"} +{"$label":"DIRECTED","_key":"55142","_from":"22659","_to":"35197"} +{"$label":"DIRECTED","_key":"32652","_from":"22659","_to":"22691"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32831","_from":"22660","_to":"22793"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32814","_from":"22660","_to":"22783"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32783","_from":"22660","_to":"22764"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32745","_from":"22660","_to":"22739"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32709","_from":"22660","_to":"22720"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32653","_from":"22660","_to":"22691"} +{"$label":"ACTS_IN","name":"Jerry Cotton","type":"Role","_key":"32622","_from":"22660","_to":"22673"} +{"$label":"ACTS_IN","name":"Kramer","type":"Role","_key":"40493","_from":"22661","_to":"27264"} +{"$label":"ACTS_IN","name":"John Bellamy","type":"Role","_key":"38170","_from":"22661","_to":"25798"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32832","_from":"22661","_to":"22793"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32815","_from":"22661","_to":"22783"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32784","_from":"22661","_to":"22764"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32746","_from":"22661","_to":"22739"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32712","_from":"22661","_to":"22720"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32655","_from":"22661","_to":"22691"} +{"$label":"ACTS_IN","name":"Phil Dekker","type":"Role","_key":"32623","_from":"22661","_to":"22673"} +{"$label":"ACTS_IN","name":"Ruth Warren","type":"Role","_key":"32659","_from":"22662","_to":"22691"} +{"$label":"ACTS_IN","name":"Timpe","type":"Role","_key":"39937","_from":"22664","_to":"26981"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"32667","_from":"22665","_to":"22691"} +{"$label":"ACTS_IN","name":"Cogan","type":"Role","_key":"35818","_from":"22667","_to":"24317"} +{"$label":"ACTS_IN","name":"der Rote K\u00f6hler","type":"Role","_key":"93251","_from":"22668","_to":"54923"} +{"$label":"ACTS_IN","name":"Circus director","type":"Role","_key":"71704","_from":"22668","_to":"43406"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"62574","_from":"22668","_to":"39375"} +{"$label":"ACTS_IN","name":"Inspektor Slack","type":"Role","_key":"41314","_from":"22668","_to":"27774"} +{"$label":"ACTS_IN","name":"Fernsehreporter","type":"Role","_key":"41816","_from":"22669","_to":"28050"} +{"$label":"ACTS_IN","name":"Schnapsbruder","type":"Role","_key":"40372","_from":"22669","_to":"27226"} +{"$label":"ACTS_IN","name":"Aettich","type":"Role","_key":"52606","_from":"22670","_to":"34181"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"32823","_from":"22672","_to":"22783"} +{"$label":"ACTS_IN","name":"Mary Springfield","type":"Role","_key":"32630","_from":"22681","_to":"22673"} +{"$label":"ACTS_IN","name":"Babe","type":"Role","_key":"32629","_from":"22680","_to":"22673"} +{"$label":"ACTS_IN","name":"Christallo","type":"Role","_key":"32628","_from":"22679","_to":"22673"} +{"$label":"ACTS_IN","name":"Sniff","type":"Role","_key":"32627","_from":"22678","_to":"22673"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"32626","_from":"22677","_to":"22673"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"32625","_from":"22676","_to":"22673"} +{"$label":"ACTS_IN","name":"Kitty Springfield","type":"Role","_key":"32624","_from":"22675","_to":"22673"} +{"$label":"DIRECTED","_key":"32621","_from":"22674","_to":"22673"} +{"$label":"ACTS_IN","name":"Monika genannt Mond\u00e4nika","type":"Role","_key":"45163","_from":"22676","_to":"29959"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"32716","_from":"22676","_to":"22720"} +{"$label":"ACTS_IN","name":"Helen Culver","type":"Role","_key":"32660","_from":"22676","_to":"22691"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"40556","_from":"22677","_to":"27300"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40542","_from":"22677","_to":"27297"} +{"$label":"ACTS_IN","name":"Bryan Dyers","type":"Role","_key":"32748","_from":"22677","_to":"22739"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"40383","_from":"22680","_to":"27226"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39921","_from":"22680","_to":"26965"} +{"$label":"ACTS_IN","name":"Carl Hasselburg","type":"Role","_key":"32647","_from":"22690","_to":"22682"} +{"$label":"ACTS_IN","name":"Ferdinand Bol","type":"Role","_key":"32646","_from":"22689","_to":"22682"} +{"$label":"ACTS_IN","name":"Frans Banning Cocq","type":"Role","_key":"32643","_from":"22688","_to":"22682"} +{"$label":"ACTS_IN","name":"Jacob Jorisz","type":"Role","_key":"32639","_from":"22687","_to":"22682"} +{"$label":"ACTS_IN","name":"Marieke","type":"Role","_key":"32638","_from":"22686","_to":"22682"} +{"$label":"ACTS_IN","name":"Titia Uylenburgh","type":"Role","_key":"32636","_from":"22685","_to":"22682"} +{"$label":"ACTS_IN","name":"Rombout Kemp","type":"Role","_key":"32635","_from":"22684","_to":"22682"} +{"$label":"ACTS_IN","name":"Hendrickje","type":"Role","_key":"32633","_from":"22683","_to":"22682"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"100630","_from":"22686","_to":"59336"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"71673","_from":"22686","_to":"43391"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"55915","_from":"22686","_to":"35565"} +{"$label":"ACTS_IN","name":"Vanderbrink","type":"Role","_key":"56002","_from":"22688","_to":"35597"} +{"$label":"ACTS_IN","name":"Lt. Howard","type":"Role","_key":"32666","_from":"22695","_to":"22691"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"32664","_from":"22694","_to":"22691"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"32661","_from":"22693","_to":"22691"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"32657","_from":"22692","_to":"22691"} +{"$label":"ACTS_IN","name":"Griselda","type":"Role","_key":"41311","_from":"22694","_to":"27774"} +{"$label":"ACTS_IN","name":"le commissaire","type":"Role","_key":"32677","_from":"22700","_to":"22696"} +{"$label":"ACTS_IN","name":"Jacques C\u00e9geste","type":"Role","_key":"32675","_from":"22699","_to":"22696"} +{"$label":"ACTS_IN","name":"l'\u00e9diteur","type":"Role","_key":"32674","_from":"22698","_to":"22696"} +{"$label":"ACTS_IN","name":"Eurydice","type":"Role","_key":"32672","_from":"22697","_to":"22696"} +{"$label":"ACTS_IN","name":"Mme Blanchot","type":"Role","_key":"33760","_from":"22697","_to":"23279"} +{"$label":"ACTS_IN","name":"le chef des m\u00e9d\u00e9cins","type":"Role","_key":"37896","_from":"22698","_to":"25666"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"104245","_from":"22699","_to":"61334"} +{"$label":"ACTS_IN","name":"Le grand-p\u00e8re de Juliette","type":"Role","_key":"48883","_from":"22700","_to":"32047"} +{"$label":"ACTS_IN","name":"Marquise Pipo","type":"Role","_key":"32687","_from":"22705","_to":"22701"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"32686","_from":"22704","_to":"22701"} +{"$label":"ACTS_IN","name":"Lucr\u00e9tia","type":"Role","_key":"32682","_from":"22703","_to":"22701"} +{"$label":"ACTS_IN","name":"BJ Cassidy","type":"Role","_key":"32679","_from":"22702","_to":"22701"} +{"$label":"ACTS_IN","name":"Bess Gluckman","type":"Role","_key":"94370","_from":"22702","_to":"55568"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"91151","_from":"22702","_to":"53770"} +{"$label":"ACTS_IN","name":"Beverly Barish, aka Beverly Burns","type":"Role","_key":"69517","_from":"22702","_to":"42464"} +{"$label":"ACTS_IN","name":"Jenny Hanley","type":"Role","_key":"52281","_from":"22702","_to":"34041"} +{"$label":"ACTS_IN","name":"Lida MacGillivery","type":"Role","_key":"40180","_from":"22702","_to":"27121"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71436","_from":"22703","_to":"43308"} +{"$label":"ACTS_IN","name":"Milada","type":"Role","_key":"32694","_from":"22713","_to":"22706"} +{"$label":"ACTS_IN","name":"Strana nudistkinja","type":"Role","_key":"32693","_from":"22712","_to":"22706"} +{"$label":"ACTS_IN","name":"Strani nudista","type":"Role","_key":"32692","_from":"22711","_to":"22706"} +{"$label":"ACTS_IN","name":"Zorz","type":"Role","_key":"32691","_from":"22710","_to":"22706"} +{"$label":"ACTS_IN","name":"Luka","type":"Role","_key":"32690","_from":"22709","_to":"22706"} +{"$label":"ACTS_IN","name":"Jaglika","type":"Role","_key":"32689","_from":"22708","_to":"22706"} +{"$label":"DIRECTED","_key":"32688","_from":"22707","_to":"22706"} +{"$label":"ACTS_IN","name":"Delenn","type":"Role","_key":"66884","_from":"22708","_to":"41298"} +{"$label":"ACTS_IN","name":"Delenn","type":"Role","_key":"66876","_from":"22708","_to":"41295"} +{"$label":"ACTS_IN","name":"Delenn","type":"Role","_key":"66870","_from":"22708","_to":"41294"} +{"$label":"ACTS_IN","name":"Frantz de Galais","type":"Role","_key":"35570","_from":"22711","_to":"24177"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32826","_from":"22711","_to":"22788"} +{"$label":"ACTS_IN","name":"Michelangelo","type":"Role","_key":"32804","_from":"22711","_to":"22779"} +{"$label":"ACTS_IN","name":"Octave","type":"Role","_key":"32796","_from":"22711","_to":"22774"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"32777","_from":"22711","_to":"22761"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"32763","_from":"22711","_to":"22749"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"32698","_from":"22711","_to":"22714"} +{"$label":"ACTS_IN","name":"master V","type":"Role","_key":"32707","_from":"22719","_to":"22714"} +{"$label":"ACTS_IN","name":"master IV","type":"Role","_key":"32706","_from":"22718","_to":"22714"} +{"$label":"ACTS_IN","name":"master III","type":"Role","_key":"32705","_from":"22717","_to":"22714"} +{"$label":"ACTS_IN","name":"Eric, master II","type":"Role","_key":"32703","_from":"22716","_to":"22714"} +{"$label":"DIRECTED","_key":"32695","_from":"22715","_to":"22714"} +{"$label":"DIRECTED","_key":"120029","_from":"22715","_to":"70489"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"32718","_from":"22723","_to":"22720"} +{"$label":"ACTS_IN","name":"George Davis","type":"Role","_key":"32714","_from":"22722","_to":"22720"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"32710","_from":"22721","_to":"22720"} +{"$label":"ACTS_IN","name":"Bob Hartau","type":"Role","_key":"39869","_from":"22722","_to":"26934"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"32743","_from":"22738","_to":"22725"} +{"$label":"ACTS_IN","name":"Brady","type":"Role","_key":"32742","_from":"22737","_to":"22725"} +{"$label":"ACTS_IN","name":"Twenty-Something Girl Dreaming","type":"Role","_key":"32741","_from":"22736","_to":"22725"} +{"$label":"ACTS_IN","name":"Lily York Goldenblatt","type":"Role","_key":"32740","_from":"22735","_to":"22725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"32739","_from":"22734","_to":"22725"} +{"$label":"ACTS_IN","name":"Bitsy von Muffling","type":"Role","_key":"32735","_from":"22733","_to":"22725"} +{"$label":"ACTS_IN","name":"Anthony Marantino","type":"Role","_key":"32734","_from":"22732","_to":"22725"} +{"$label":"ACTS_IN","name":"Mr. Big","type":"Role","_key":"32728","_from":"22731","_to":"22725"} +{"$label":"ACTS_IN","name":"Charlotte York Goldenblatt","type":"Role","_key":"32727","_from":"22730","_to":"22725"} +{"$label":"ACTS_IN","name":"Miranda Hobbes","type":"Role","_key":"32726","_from":"22729","_to":"22725"} +{"$label":"DIRECTED","_key":"32723","_from":"22728","_to":"22725"} +{"$label":"DIRECTED","_key":"32722","_from":"22727","_to":"22725"} +{"$label":"DIRECTED","_key":"32721","_from":"22726","_to":"22725"} +{"$label":"ACTS_IN","name":"Evangeline","type":"Role","_key":"118772","_from":"22729","_to":"69835"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"109496","_from":"22729","_to":"64679"} +{"$label":"ACTS_IN","name":"Karen Jameison","type":"Role","_key":"103087","_from":"22729","_to":"60638"} +{"$label":"ACTS_IN","name":"Gail Beltran","type":"Role","_key":"92343","_from":"22729","_to":"54499"} +{"$label":"ACTS_IN","name":"Gilbertine","type":"Role","_key":"68575","_from":"22729","_to":"42040"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"121402","_from":"22730","_to":"71336"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"99022","_from":"22730","_to":"58332"} +{"$label":"ACTS_IN","name":"Rebecca Douglas","type":"Role","_key":"60177","_from":"22730","_to":"37970"} +{"$label":"ACTS_IN","name":"Kelly Finch","type":"Role","_key":"58715","_from":"22730","_to":"37088"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121526","_from":"22731","_to":"71398"} +{"$label":"ACTS_IN","name":"Ben Cooper","type":"Role","_key":"105300","_from":"22731","_to":"61964"} +{"$label":"ACTS_IN","name":"Chick Dimitri","type":"Role","_key":"99980","_from":"22731","_to":"58990"} +{"$label":"ACTS_IN","name":"Auditioner","type":"Role","_key":"72069","_from":"22731","_to":"43573"} +{"$label":"ACTS_IN","name":"Jerry Lovett","type":"Role","_key":"49292","_from":"22731","_to":"32281"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103736","_from":"22732","_to":"61008"} +{"$label":"ACTS_IN","name":"Sidney (voice)","type":"Role","_key":"89796","_from":"22732","_to":"53142"} +{"$label":"ACTS_IN","name":"Herself (as L'il Kim)","type":"Role","_key":"53629","_from":"22734","_to":"34590"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"32752","_from":"22744","_to":"22739"} +{"$label":"ACTS_IN","name":"Burnie Johnson","type":"Role","_key":"32751","_from":"22743","_to":"22739"} +{"$label":"ACTS_IN","name":"Edna Cormick","type":"Role","_key":"32750","_from":"22742","_to":"22739"} +{"$label":"ACTS_IN","name":"Dyers","type":"Role","_key":"32749","_from":"22741","_to":"22739"} +{"$label":"DIRECTED","_key":"32744","_from":"22740","_to":"22739"} +{"$label":"DIRECTED","_key":"71533","_from":"22740","_to":"43345"} +{"$label":"DIRECTED","_key":"71222","_from":"22740","_to":"43222"} +{"$label":"DIRECTED","_key":"67058","_from":"22740","_to":"41394"} +{"$label":"DIRECTED","_key":"45732","_from":"22740","_to":"30264"} +{"$label":"DIRECTED","_key":"45352","_from":"22740","_to":"30082"} +{"$label":"DIRECTED","_key":"44890","_from":"22740","_to":"29857"} +{"$label":"DIRECTED","_key":"41205","_from":"22740","_to":"27727"} +{"$label":"DIRECTED","_key":"39865","_from":"22740","_to":"26934"} +{"$label":"DIRECTED","_key":"33548","_from":"22740","_to":"23194"} +{"$label":"ACTS_IN","name":"Admiral Lutjens","type":"Role","_key":"117456","_from":"22741","_to":"69075"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"43726","_from":"22742","_to":"29199"} +{"$label":"ACTS_IN","name":"Virginia Hampton","type":"Role","_key":"41316","_from":"22742","_to":"27774"} +{"$label":"ACTS_IN","name":"Dr. Robert Uthofft, gen. Nichtraucher","type":"Role","_key":"71224","_from":"22744","_to":"43222"} +{"$label":"ACTS_IN","name":"Oliver Kniehase","type":"Role","_key":"40010","_from":"22744","_to":"27017"} +{"$label":"ACTS_IN","name":"Titus Kleinwiehe","type":"Role","_key":"39966","_from":"22744","_to":"26992"} +{"$label":"ACTS_IN","name":"Heinz Jensen","type":"Role","_key":"39935","_from":"22744","_to":"26981"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39882","_from":"22744","_to":"26934"} +{"$label":"ACTS_IN","name":"Willi Nippens","type":"Role","_key":"39802","_from":"22744","_to":"26893"} +{"$label":"ACTS_IN","name":"Mr. Verne","type":"Role","_key":"32759","_from":"22748","_to":"22745"} +{"$label":"ACTS_IN","name":"Barry Grissom","type":"Role","_key":"32758","_from":"22747","_to":"22745"} +{"$label":"DIRECTED","_key":"32753","_from":"22746","_to":"22745"} +{"$label":"DIRECTED","_key":"109521","_from":"22746","_to":"64693"} +{"$label":"ACTS_IN","name":"Detective Griffin","type":"Role","_key":"98597","_from":"22747","_to":"58103"} +{"$label":"ACTS_IN","name":"Danny Noonan","type":"Role","_key":"73112","_from":"22747","_to":"43976"} +{"$label":"ACTS_IN","name":"Mike Medwicki","type":"Role","_key":"66712","_from":"22747","_to":"41210"} +{"$label":"ACTS_IN","name":"Trooper Finnerty","type":"Role","_key":"61505","_from":"22747","_to":"38787"} +{"$label":"ACTS_IN","name":"Michael Rangeloff","type":"Role","_key":"37570","_from":"22747","_to":"25467"} +{"$label":"ACTS_IN","name":"Kommissar","type":"Role","_key":"32775","_from":"22760","_to":"22749"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"32774","_from":"22759","_to":"22749"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"32773","_from":"22758","_to":"22749"} +{"$label":"ACTS_IN","name":"Xenia","type":"Role","_key":"32772","_from":"22757","_to":"22749"} +{"$label":"ACTS_IN","name":"Olaf","type":"Role","_key":"32771","_from":"22756","_to":"22749"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"32770","_from":"22755","_to":"22749"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"32769","_from":"22754","_to":"22749"} +{"$label":"ACTS_IN","name":"Dr. Barbara","type":"Role","_key":"32768","_from":"22753","_to":"22749"} +{"$label":"ACTS_IN","name":"Dolly","type":"Role","_key":"32766","_from":"22752","_to":"22749"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"32764","_from":"22751","_to":"22749"} +{"$label":"DIRECTED","_key":"32760","_from":"22750","_to":"22749"} +{"$label":"ACTS_IN","name":"Sonja Zollweger","type":"Role","_key":"89687","_from":"22752","_to":"53081"} +{"$label":"ACTS_IN","name":"Dr. Koska","type":"Role","_key":"39470","_from":"22753","_to":"26678"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"53412","_from":"22754","_to":"34508"} +{"$label":"ACTS_IN","name":"Franz Otto Friedrich","type":"Role","_key":"45744","_from":"22754","_to":"30264"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"35549","_from":"22755","_to":"24164"} +{"$label":"ACTS_IN","name":"Prof. Karl Kogel","type":"Role","_key":"34367","_from":"22760","_to":"23569"} +{"$label":"ACTS_IN","name":"femme fatale","type":"Role","_key":"32780","_from":"22763","_to":"22761"} +{"$label":"DIRECTED","_key":"32776","_from":"22762","_to":"22761"} +{"$label":"ACTS_IN","name":"Valentine Blondeau","type":"Role","_key":"35572","_from":"22763","_to":"24177"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"32794","_from":"22773","_to":"22764"} +{"$label":"ACTS_IN","name":"Peter Carp","type":"Role","_key":"32793","_from":"22772","_to":"22764"} +{"$label":"ACTS_IN","name":"Kit Davis","type":"Role","_key":"32791","_from":"22771","_to":"22764"} +{"$label":"ACTS_IN","name":"Linda Carp","type":"Role","_key":"32790","_from":"22770","_to":"22764"} +{"$label":"ACTS_IN","name":"Sam Parker","type":"Role","_key":"32789","_from":"22769","_to":"22764"} +{"$label":"ACTS_IN","name":"Francis Gordon","type":"Role","_key":"32788","_from":"22768","_to":"22764"} +{"$label":"ACTS_IN","name":"Dr. Saunders","type":"Role","_key":"32787","_from":"22767","_to":"22764"} +{"$label":"ACTS_IN","name":"Mr. Clark","type":"Role","_key":"32786","_from":"22766","_to":"22764"} +{"$label":"ACTS_IN","name":"Ria Payne","type":"Role","_key":"32785","_from":"22765","_to":"22764"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42819","_from":"22766","_to":"28628"} +{"$label":"ACTS_IN","name":"Siegfried Gersum","type":"Role","_key":"39806","_from":"22766","_to":"26893"} +{"$label":"ACTS_IN","name":"Moulian ( Chef von TETV )","type":"Role","_key":"37327","_from":"22766","_to":"25288"} +{"$label":"ACTS_IN","name":"Anathol","type":"Role","_key":"90553","_from":"22767","_to":"53485"} +{"$label":"ACTS_IN","name":"Gouverneur","type":"Role","_key":"45751","_from":"22767","_to":"30269"} +{"$label":"ACTS_IN","name":"John Bennet","type":"Role","_key":"44802","_from":"22767","_to":"29804"} +{"$label":"ACTS_IN","name":"Monsignore","type":"Role","_key":"39961","_from":"22767","_to":"26992"} +{"$label":"ACTS_IN","name":"Berenice","type":"Role","_key":"72488","_from":"22770","_to":"43735"} +{"$label":"ACTS_IN","name":"Betty Falks","type":"Role","_key":"55168","_from":"22770","_to":"35202"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"46592","_from":"22770","_to":"30780"} +{"$label":"ACTS_IN","name":"Do genannt Lady Superfein","type":"Role","_key":"45153","_from":"22770","_to":"29959"} +{"$label":"ACTS_IN","name":"Leslie Gine","type":"Role","_key":"44063","_from":"22770","_to":"29386"} +{"$label":"ACTS_IN","name":"Heinrich Sasse","type":"Role","_key":"73133","_from":"22771","_to":"43983"} +{"$label":"ACTS_IN","name":"Inspec. Japp","type":"Role","_key":"41501","_from":"22771","_to":"27881"} +{"$label":"ACTS_IN","name":"Vin","type":"Role","_key":"90769","_from":"22773","_to":"53570"} +{"$label":"ACTS_IN","name":"le vieux pr\u00eatre","type":"Role","_key":"32800","_from":"22778","_to":"22774"} +{"$label":"ACTS_IN","name":"Edouard","type":"Role","_key":"32799","_from":"22777","_to":"22774"} +{"$label":"ACTS_IN","name":"Gamiani","type":"Role","_key":"32797","_from":"22776","_to":"22774"} +{"$label":"DIRECTED","_key":"32795","_from":"22775","_to":"22774"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"71413","_from":"22776","_to":"43302"} +{"$label":"ACTS_IN","name":"Terr adulte - le commentateur (voice)","type":"Role","_key":"108596","_from":"22777","_to":"64171"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32812","_from":"22782","_to":"22779"} +{"$label":"ACTS_IN","name":"Dragan","type":"Role","_key":"32803","_from":"22781","_to":"22779"} +{"$label":"DIRECTED","_key":"32801","_from":"22780","_to":"22779"} +{"$label":"ACTS_IN","name":"Peva\u010d","type":"Role","_key":"114334","_from":"22781","_to":"67343"} +{"$label":"ACTS_IN","name":"Zlatan","type":"Role","_key":"64656","_from":"22781","_to":"40271"} +{"$label":"ACTS_IN","name":"Tomasio","type":"Role","_key":"32820","_from":"22787","_to":"22783"} +{"$label":"ACTS_IN","name":"Tackley","type":"Role","_key":"32819","_from":"22786","_to":"22783"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"32818","_from":"22785","_to":"22783"} +{"$label":"ACTS_IN","name":"Butt Lancaster","type":"Role","_key":"32817","_from":"22784","_to":"22783"} +{"$label":"ACTS_IN","name":"Joshua Broad","type":"Role","_key":"44803","_from":"22787","_to":"29804"} +{"$label":"ACTS_IN","name":"Sir William","type":"Role","_key":"38199","_from":"22787","_to":"25812"} +{"$label":"ACTS_IN","name":"Anthony, the butler","type":"Role","_key":"38193","_from":"22787","_to":"25808"} +{"$label":"ACTS_IN","name":"Jackson Shelton","type":"Role","_key":"38154","_from":"22787","_to":"25795"} +{"$label":"ACTS_IN","name":"R\u00fcdiger von Bechlarn","type":"Role","_key":"38039","_from":"22787","_to":"25742"} +{"$label":"ACTS_IN","name":"R\u00fcdiger von Bechlarn","type":"Role","_key":"38019","_from":"22787","_to":"25728"} +{"$label":"DIRECTED","_key":"32829","_from":"22792","_to":"22788"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32828","_from":"22791","_to":"22788"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32825","_from":"22790","_to":"22788"} +{"$label":"ACTS_IN","name":"Boro","type":"Role","_key":"32824","_from":"22789","_to":"22788"} +{"$label":"ACTS_IN","name":"Stanislav","type":"Role","_key":"103931","_from":"22789","_to":"61129"} +{"$label":"ACTS_IN","name":"Mr. Ross","type":"Role","_key":"32837","_from":"22798","_to":"22793"} +{"$label":"ACTS_IN","name":"Woody Davis","type":"Role","_key":"32836","_from":"22797","_to":"22793"} +{"$label":"ACTS_IN","name":"Alice Davis","type":"Role","_key":"32835","_from":"22796","_to":"22793"} +{"$label":"ACTS_IN","name":"Joe Costello","type":"Role","_key":"32834","_from":"22795","_to":"22793"} +{"$label":"ACTS_IN","name":"Cindy Holen","type":"Role","_key":"32833","_from":"22794","_to":"22793"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41208","_from":"22794","_to":"27727"} +{"$label":"ACTS_IN","name":"Lilliane Berndorf","type":"Role","_key":"39938","_from":"22794","_to":"26981"} +{"$label":"ACTS_IN","name":"Brunhild","type":"Role","_key":"35547","_from":"22794","_to":"24164"} +{"$label":"ACTS_IN","name":"Gomez","type":"Role","_key":"45752","_from":"22795","_to":"30269"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"49955","_from":"22796","_to":"32701"} +{"$label":"ACTS_IN","name":"Henrike","type":"Role","_key":"39695","_from":"22796","_to":"26821"} +{"$label":"ACTS_IN","name":"Willy Krekel","type":"Role","_key":"39964","_from":"22797","_to":"26992"} +{"$label":"ACTS_IN","name":"Dr. Klaus Diffring","type":"Role","_key":"39813","_from":"22797","_to":"26893"} +{"$label":"ACTS_IN","name":"Keyston","type":"Role","_key":"55167","_from":"22798","_to":"35202"} +{"$label":"ACTS_IN","name":"Hoffmann","type":"Role","_key":"49094","_from":"22798","_to":"32171"} +{"$label":"ACTS_IN","name":"Dr. Marschall","type":"Role","_key":"40399","_from":"22798","_to":"27239"} +{"$label":"ACTS_IN","name":"Barry, the New Hustler","type":"Role","_key":"32846","_from":"22803","_to":"22799"} +{"$label":"ACTS_IN","name":"David, the Gymnast","type":"Role","_key":"32845","_from":"22802","_to":"22799"} +{"$label":"ACTS_IN","name":"Patti, Geri's Lover","type":"Role","_key":"32844","_from":"22801","_to":"22799"} +{"$label":"ACTS_IN","name":"Geri, Joe's Wife","type":"Role","_key":"32843","_from":"22800","_to":"22799"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"115980","_from":"22801","_to":"68304"} +{"$label":"ACTS_IN","name":"Darcy","type":"Role","_key":"109322","_from":"22801","_to":"64585"} +{"$label":"ACTS_IN","name":"Loraine","type":"Role","_key":"33896","_from":"22801","_to":"23348"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"49400","_from":"22802","_to":"32344"} +{"$label":"ACTS_IN","name":"Frederick Winterbourne","type":"Role","_key":"33494","_from":"22803","_to":"23170"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"32854","_from":"22809","_to":"22804"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"32853","_from":"22808","_to":"22804"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"32852","_from":"22807","_to":"22804"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"32851","_from":"22806","_to":"22804"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"32850","_from":"22805","_to":"22804"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"49398","_from":"22805","_to":"32344"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32862","_from":"22813","_to":"22810"} +{"$label":"ACTS_IN","name":"Padovan","type":"Role","_key":"32858","_from":"22812","_to":"22810"} +{"$label":"DIRECTED","_key":"32855","_from":"22811","_to":"22810"} +{"$label":"ACTS_IN","name":"Patrick G\u00e9rard","type":"Role","_key":"33734","_from":"22811","_to":"23267"} +{"$label":"ACTS_IN","name":"American Tourist","type":"Role","_key":"40695","_from":"22813","_to":"27383"} +{"$label":"ACTS_IN","name":"Mary O'Brien","type":"Role","_key":"32878","_from":"22818","_to":"22815"} +{"$label":"ACTS_IN","name":"Dr. Reynolds","type":"Role","_key":"32877","_from":"22817","_to":"22815"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"32876","_from":"22816","_to":"22815"} +{"$label":"ACTS_IN","name":"Liang Jun Sheng","type":"Role","_key":"32886","_from":"22824","_to":"22819"} +{"$label":"ACTS_IN","name":"Huang Lei","type":"Role","_key":"32885","_from":"22823","_to":"22819"} +{"$label":"ACTS_IN","name":"Lai Shu Jin","type":"Role","_key":"32884","_from":"22822","_to":"22819"} +{"$label":"ACTS_IN","name":"Kuang Yu Min","type":"Role","_key":"32882","_from":"22821","_to":"22819"} +{"$label":"ACTS_IN","name":"Wang Jiazhi","type":"Role","_key":"32880","_from":"22820","_to":"22819"} +{"$label":"ACTS_IN","name":"Special appearance","type":"Role","_key":"70624","_from":"22824","_to":"42971"} +{"$label":"ACTS_IN","name":"Christen","type":"Role","_key":"32896","_from":"22828","_to":"22825"} +{"$label":"ACTS_IN","name":"Snake","type":"Role","_key":"32895","_from":"22827","_to":"22825"} +{"$label":"ACTS_IN","name":"Heath Pierson","type":"Role","_key":"32893","_from":"22826","_to":"22825"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"102808","_from":"22826","_to":"60475"} +{"$label":"ACTS_IN","name":"Duncan Idaho","type":"Role","_key":"99667","_from":"22826","_to":"58761"} +{"$label":"ACTS_IN","name":"Detective Anna Ramirez","type":"Role","_key":"97201","_from":"22828","_to":"57172"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32921","_from":"22837","_to":"22829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32919","_from":"22836","_to":"22829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32918","_from":"22835","_to":"22829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"32917","_from":"22834","_to":"22829"} +{"$label":"ACTS_IN","name":"G\u00e4rtner","type":"Role","_key":"32916","_from":"22833","_to":"22829"} +{"$label":"ACTS_IN","name":"Terroristin","type":"Role","_key":"32914","_from":"22832","_to":"22829"} +{"$label":"ACTS_IN","name":"Traum-Sergeant","type":"Role","_key":"32912","_from":"22831","_to":"22829"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"32904","_from":"22830","_to":"22829"} +{"$label":"ACTS_IN","name":"S\u00e9verine","type":"Role","_key":"112080","_from":"22830","_to":"66176"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89394","_from":"22830","_to":"52915"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"33818","_from":"22830","_to":"23307"} +{"$label":"ACTS_IN","name":"Inspecteur Alphonse","type":"Role","_key":"42250","_from":"22831","_to":"28293"} +{"$label":"ACTS_IN","name":"le lieutenant des dragons","type":"Role","_key":"37832","_from":"22831","_to":"25644"} +{"$label":"ACTS_IN","name":"Ulysse","type":"Role","_key":"35058","_from":"22831","_to":"23913"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33050","_from":"22831","_to":"22898"} +{"$label":"ACTS_IN","name":"le com\u00e9dien","type":"Role","_key":"89124","_from":"22835","_to":"52794"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"42454","_from":"22836","_to":"28427"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37993","_from":"22836","_to":"25718"} +{"$label":"ACTS_IN","name":"Edith Rosenblum","type":"Role","_key":"37844","_from":"22836","_to":"25644"} +{"$label":"ACTS_IN","name":"Manolo","type":"Role","_key":"33962","_from":"22837","_to":"23371"} +{"$label":"ACTS_IN","name":"Cafetier","type":"Role","_key":"32929","_from":"22842","_to":"22838"} +{"$label":"ACTS_IN","name":"Coiffeur","type":"Role","_key":"32928","_from":"22841","_to":"22838"} +{"$label":"ACTS_IN","name":"Jeannette","type":"Role","_key":"32927","_from":"22840","_to":"22838"} +{"$label":"ACTS_IN","name":"La femme de Roger","type":"Role","_key":"32926","_from":"22839","_to":"22838"} +{"$label":"DIRECTED","_key":"32930","_from":"22844","_to":"22843"} +{"$label":"DIRECTED","_key":"62433","_from":"22844","_to":"39330"} +{"$label":"DIRECTED","_key":"36402","_from":"22844","_to":"24696"} +{"$label":"ACTS_IN","name":"Nilma Prasad","type":"Role","_key":"32952","_from":"22851","_to":"22845"} +{"$label":"ACTS_IN","name":"Martina Allegretta","type":"Role","_key":"32951","_from":"22850","_to":"22845"} +{"$label":"ACTS_IN","name":"Jasmine Portman","type":"Role","_key":"32950","_from":"22849","_to":"22845"} +{"$label":"ACTS_IN","name":"Oliver Portman","type":"Role","_key":"32949","_from":"22848","_to":"22845"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"32947","_from":"22847","_to":"22845"} +{"$label":"ACTS_IN","name":"Pastor Dan Parker","type":"Role","_key":"32945","_from":"22846","_to":"22845"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"115024","_from":"22846","_to":"67733"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"114698","_from":"22846","_to":"67561"} +{"$label":"ACTS_IN","name":"Burwell","type":"Role","_key":"58655","_from":"22846","_to":"37053"} +{"$label":"ACTS_IN","name":"Ian Miller","type":"Role","_key":"49195","_from":"22846","_to":"32232"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"48352","_from":"22846","_to":"31743"} +{"$label":"ACTS_IN","name":"Victoria English","type":"Role","_key":"119261","_from":"22847","_to":"70075"} +{"$label":"ACTS_IN","name":"Cristabel Abbott","type":"Role","_key":"109931","_from":"22847","_to":"64952"} +{"$label":"ACTS_IN","name":"Lisa Mancini","type":"Role","_key":"101117","_from":"22847","_to":"59581"} +{"$label":"ACTS_IN","name":"Amber Sweet","type":"Role","_key":"99794","_from":"22847","_to":"58864"} +{"$label":"ACTS_IN","name":"Paige Edwards","type":"Role","_key":"60162","_from":"22847","_to":"37960"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53624","_from":"22847","_to":"34590"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"116429","_from":"22850","_to":"68531"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"98050","_from":"22850","_to":"57732"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"58626","_from":"22850","_to":"37036"} +{"$label":"ACTS_IN","name":"Brynn Lilly","type":"Role","_key":"56742","_from":"22850","_to":"36041"} +{"$label":"ACTS_IN","name":"Audrey Billings","type":"Role","_key":"53179","_from":"22850","_to":"34401"} +{"$label":"ACTS_IN","name":"Allegra Cole","type":"Role","_key":"50047","_from":"22850","_to":"32755"} +{"$label":"ACTS_IN","name":"Von Graichen","type":"Role","_key":"32970","_from":"22861","_to":"22852"} +{"$label":"ACTS_IN","name":"Heiden","type":"Role","_key":"32969","_from":"22860","_to":"22852"} +{"$label":"ACTS_IN","name":"Krankenschwester #2","type":"Role","_key":"32968","_from":"22859","_to":"22852"} +{"$label":"ACTS_IN","name":"Krankenschwester #1","type":"Role","_key":"32967","_from":"22858","_to":"22852"} +{"$label":"ACTS_IN","name":"Saide","type":"Role","_key":"32965","_from":"22857","_to":"22852"} +{"$label":"ACTS_IN","name":"Claudia Simon","type":"Role","_key":"32964","_from":"22856","_to":"22852"} +{"$label":"ACTS_IN","name":"Holger Dessaul","type":"Role","_key":"32962","_from":"22855","_to":"22852"} +{"$label":"ACTS_IN","name":"Kaul","type":"Role","_key":"32961","_from":"22854","_to":"22852"} +{"$label":"ACTS_IN","name":"Mannheimer","type":"Role","_key":"32959","_from":"22853","_to":"22852"} +{"$label":"ACTS_IN","name":"Katharina Fahlke","type":"Role","_key":"50903","_from":"22857","_to":"33222"} +{"$label":"ACTS_IN","name":"Tanja Schildknecht","type":"Role","_key":"42413","_from":"22858","_to":"28380"} +{"$label":"ACTS_IN","name":"Margot Hagemann","type":"Role","_key":"40065","_from":"22858","_to":"27043"} +{"$label":"ACTS_IN","name":"Dorothee","type":"Role","_key":"36151","_from":"22858","_to":"24525"} +{"$label":"ACTS_IN","name":"Dorothee","type":"Role","_key":"36142","_from":"22858","_to":"24523"} +{"$label":"ACTS_IN","name":"Dorothee","type":"Role","_key":"36131","_from":"22858","_to":"24515"} +{"$label":"ACTS_IN","name":"Natascha M\u00fcller","type":"Role","_key":"32974","_from":"22858","_to":"22862"} +{"$label":"ACTS_IN","name":"Hermann","type":"Role","_key":"42478","_from":"22860","_to":"28443"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36730","_from":"22860","_to":"24899"} +{"$label":"ACTS_IN","name":"Frau Busch","type":"Role","_key":"32979","_from":"22865","_to":"22862"} +{"$label":"ACTS_IN","name":"Jean-Jacques M\u00fcller","type":"Role","_key":"32975","_from":"22864","_to":"22862"} +{"$label":"ACTS_IN","name":"Carmen M\u00fcller","type":"Role","_key":"32972","_from":"22863","_to":"22862"} +{"$label":"ACTS_IN","name":"Mimi Schrillmann","type":"Role","_key":"33441","_from":"22863","_to":"23146"} +{"$label":"ACTS_IN","name":"Greer","type":"Role","_key":"32989","_from":"22875","_to":"22866"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"32988","_from":"22874","_to":"22866"} +{"$label":"ACTS_IN","name":"Vasquez","type":"Role","_key":"32987","_from":"22873","_to":"22866"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"32986","_from":"22872","_to":"22866"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"32985","_from":"22871","_to":"22866"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"32983","_from":"22870","_to":"22866"} +{"$label":"ACTS_IN","name":"Walters","type":"Role","_key":"32982","_from":"22869","_to":"22866"} +{"$label":"ACTS_IN","name":"Norman Scott","type":"Role","_key":"32981","_from":"22868","_to":"22866"} +{"$label":"DIRECTED","_key":"32980","_from":"22867","_to":"22866"} +{"$label":"ACTS_IN","name":"Connor MacLeod","type":"Role","_key":"88693","_from":"22868","_to":"52556"} +{"$label":"ACTS_IN","name":"John Henry Brennick","type":"Role","_key":"87954","_from":"22868","_to":"52231"} +{"$label":"ACTS_IN","name":"John Henry Brennick","type":"Role","_key":"67981","_from":"22868","_to":"41774"} +{"$label":"ACTS_IN","name":"Tarzan, Lord of the Apes","type":"Role","_key":"67215","_from":"22868","_to":"41453"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"64862","_from":"22868","_to":"40345"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"63836","_from":"22868","_to":"39902"} +{"$label":"ACTS_IN","name":"Det. John Prudhomme","type":"Role","_key":"62783","_from":"22868","_to":"39460"} +{"$label":"ACTS_IN","name":"Constantine","type":"Role","_key":"62063","_from":"22868","_to":"39083"} +{"$label":"ACTS_IN","name":"Lord Rayden","type":"Role","_key":"53046","_from":"22868","_to":"34342"} +{"$label":"ACTS_IN","name":"Jimi Dini","type":"Role","_key":"50721","_from":"22868","_to":"33108"} +{"$label":"ACTS_IN","name":"Connor 'The Highlander' MacLeod","type":"Role","_key":"47780","_from":"22868","_to":"31463"} +{"$label":"ACTS_IN","name":"Connor 'The Highlander' MacLeod","type":"Role","_key":"47764","_from":"22868","_to":"31453"} +{"$label":"ACTS_IN","name":"Connor 'The Highlander' MacLeod","type":"Role","_key":"47749","_from":"22868","_to":"31448"} +{"$label":"ACTS_IN","name":"Peter Sanderson","type":"Role","_key":"39351","_from":"22868","_to":"26617"} +{"$label":"ACTS_IN","name":"Beowulf","type":"Role","_key":"37353","_from":"22868","_to":"25315"} +{"$label":"ACTS_IN","name":"Alex Laney","type":"Role","_key":"35211","_from":"22868","_to":"23986"} +{"$label":"ACTS_IN","name":"Roy Knox","type":"Role","_key":"113716","_from":"22869","_to":"67017"} +{"$label":"ACTS_IN","name":"Ritchie Valens","type":"Role","_key":"109669","_from":"22869","_to":"64770"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"101849","_from":"22869","_to":"59942"} +{"$label":"ACTS_IN","name":"Jose Chavez y Chavez","type":"Role","_key":"73042","_from":"22869","_to":"43958"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"69485","_from":"22869","_to":"42450"} +{"$label":"ACTS_IN","name":"Staff Sergeant John Monfriez","type":"Role","_key":"65046","_from":"22869","_to":"40418"} +{"$label":"ACTS_IN","name":"Sheriff Emmett Kimsey","type":"Role","_key":"63677","_from":"22869","_to":"39828"} +{"$label":"ACTS_IN","name":"Yerzy Penalosa","type":"Role","_key":"62927","_from":"22869","_to":"39523"} +{"$label":"ACTS_IN","name":"Cisco","type":"Role","_key":"53931","_from":"22869","_to":"34704"} +{"$label":"ACTS_IN","name":"Jose Chavez y Chavez","type":"Role","_key":"52484","_from":"22869","_to":"34143"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"119024","_from":"22870","_to":"69971"} +{"$label":"ACTS_IN","name":"Neried","type":"Role","_key":"106235","_from":"22870","_to":"62573"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"56286","_from":"22870","_to":"35761"} +{"$label":"ACTS_IN","name":"Virgil","type":"Role","_key":"61991","_from":"22874","_to":"39018"} +{"$label":"ACTS_IN","name":"Agent MacDonald","type":"Role","_key":"62170","_from":"22875","_to":"39152"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"32998","_from":"22880","_to":"22876"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"32996","_from":"22879","_to":"22876"} +{"$label":"ACTS_IN","name":"Shmally","type":"Role","_key":"32993","_from":"22878","_to":"22876"} +{"$label":"DIRECTED","_key":"32991","_from":"22877","_to":"22876"} +{"$label":"ACTS_IN","name":"Ms. Thorne","type":"Role","_key":"120434","_from":"22878","_to":"70751"} +{"$label":"ACTS_IN","name":"Abigail 'Abby' Sawyer","type":"Role","_key":"119956","_from":"22878","_to":"70456"} +{"$label":"ACTS_IN","name":"Christina Robertson","type":"Role","_key":"111513","_from":"22878","_to":"65842"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"102955","_from":"22878","_to":"60559"} +{"$label":"ACTS_IN","name":"Haley","type":"Role","_key":"102744","_from":"22878","_to":"60442"} +{"$label":"ACTS_IN","name":"Ruthie","type":"Role","_key":"102336","_from":"22878","_to":"60214"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"101702","_from":"22878","_to":"59855"} +{"$label":"ACTS_IN","name":"Jane Brighton","type":"Role","_key":"98253","_from":"22878","_to":"57880"} +{"$label":"ACTS_IN","name":"Caroline Dukes","type":"Role","_key":"94872","_from":"22878","_to":"55861"} +{"$label":"ACTS_IN","name":"Chrissie","type":"Role","_key":"66686","_from":"22878","_to":"41203"} +{"$label":"ACTS_IN","name":"Doreen Carter","type":"Role","_key":"63450","_from":"22878","_to":"39744"} +{"$label":"ACTS_IN","name":"Laney Boggs","type":"Role","_key":"62545","_from":"22878","_to":"39367"} +{"$label":"ACTS_IN","name":"Lisa Calighan","type":"Role","_key":"59040","_from":"22878","_to":"37275"} +{"$label":"ACTS_IN","name":"Cheri","type":"Role","_key":"52836","_from":"22878","_to":"34252"} +{"$label":"ACTS_IN","name":"Deloris","type":"Role","_key":"49126","_from":"22878","_to":"32184"} +{"$label":"ACTS_IN","name":"Mr. Universe","type":"Role","_key":"108700","_from":"22879","_to":"64246"} +{"$label":"ACTS_IN","name":"Ben Abromowitz","type":"Role","_key":"101353","_from":"22879","_to":"59663"} +{"$label":"ACTS_IN","name":"Brian Sellars","type":"Role","_key":"96678","_from":"22879","_to":"56865"} +{"$label":"ACTS_IN","name":"Bernard the Elf","type":"Role","_key":"69595","_from":"22879","_to":"42487"} +{"$label":"ACTS_IN","name":"Goldstein","type":"Role","_key":"68881","_from":"22879","_to":"42187"} +{"$label":"ACTS_IN","name":"Joe Peltz","type":"Role","_key":"57276","_from":"22879","_to":"36323"} +{"$label":"ACTS_IN","name":"Bernard, der Elf","type":"Role","_key":"52046","_from":"22879","_to":"33935"} +{"$label":"ACTS_IN","name":"Benji Austin","type":"Role","_key":"49341","_from":"22879","_to":"32290"} +{"$label":"ACTS_IN","name":"Francis Davenport","type":"Role","_key":"40310","_from":"22879","_to":"27194"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"35065","_from":"22879","_to":"23914"} +{"$label":"ACTS_IN","name":"Carson Wigham","type":"Role","_key":"56477","_from":"22880","_to":"35880"} +{"$label":"ACTS_IN","name":"General Lasseter","type":"Role","_key":"33006","_from":"22883","_to":"22881"} +{"$label":"ACTS_IN","name":"Admiral Pollack","type":"Role","_key":"33003","_from":"22882","_to":"22881"} +{"$label":"ACTS_IN","name":"Warden Nichols","type":"Role","_key":"116610","_from":"22882","_to":"68642"} +{"$label":"ACTS_IN","name":"Major Donald Lemond","type":"Role","_key":"72411","_from":"22882","_to":"43714"} +{"$label":"ACTS_IN","name":"Terenzio","type":"Role","_key":"33013","_from":"22889","_to":"22884"} +{"$label":"ACTS_IN","name":"Fulgenzio","type":"Role","_key":"33012","_from":"22888","_to":"22884"} +{"$label":"ACTS_IN","name":"Placida","type":"Role","_key":"33011","_from":"22887","_to":"22884"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"33010","_from":"22886","_to":"22884"} +{"$label":"DIRECTED","_key":"33007","_from":"22885","_to":"22884"} +{"$label":"DIRECTED","_key":"45962","_from":"22885","_to":"30388"} +{"$label":"ACTS_IN","name":"Room Service Girl","type":"Role","_key":"33020","_from":"22886","_to":"22890"} +{"$label":"ACTS_IN","name":"Alvaro","type":"Role","_key":"33015","_from":"22888","_to":"22890"} +{"$label":"ACTS_IN","name":"Gianni","type":"Role","_key":"33019","_from":"22889","_to":"22890"} +{"$label":"ACTS_IN","name":"Cameriere dell'Hotel","type":"Role","_key":"33023","_from":"22894","_to":"22890"} +{"$label":"ACTS_IN","name":"Morelli","type":"Role","_key":"33017","_from":"22893","_to":"22890"} +{"$label":"ACTS_IN","name":"Paola","type":"Role","_key":"33016","_from":"22892","_to":"22890"} +{"$label":"DIRECTED","_key":"33014","_from":"22891","_to":"22890"} +{"$label":"ACTS_IN","name":"Diana Morris","type":"Role","_key":"50469","_from":"22892","_to":"32963"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"34894","_from":"22893","_to":"23838"} +{"$label":"ACTS_IN","name":"Worschula","type":"Role","_key":"33031","_from":"22897","_to":"22895"} +{"$label":"ACTS_IN","name":"Kantorka","type":"Role","_key":"33030","_from":"22896","_to":"22895"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"46745","_from":"22896","_to":"30844"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33058","_from":"22903","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33056","_from":"22902","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33055","_from":"22901","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33054","_from":"22900","_to":"22898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33047","_from":"22899","_to":"22898"} +{"$label":"ACTS_IN","name":"Magne","type":"Role","_key":"92126","_from":"22902","_to":"54359"} +{"$label":"ACTS_IN","name":"Narrator\/Adult Misty","type":"Role","_key":"33069","_from":"22910","_to":"22904"} +{"$label":"ACTS_IN","name":"Fearless","type":"Role","_key":"33068","_from":"22909","_to":"22904"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"33067","_from":"22908","_to":"22904"} +{"$label":"ACTS_IN","name":"Spit","type":"Role","_key":"33064","_from":"22907","_to":"22904"} +{"$label":"ACTS_IN","name":"Sparks","type":"Role","_key":"33063","_from":"22906","_to":"22904"} +{"$label":"ACTS_IN","name":"Misty","type":"Role","_key":"33062","_from":"22905","_to":"22904"} +{"$label":"ACTS_IN","name":"Michael Greene","type":"Role","_key":"65284","_from":"22905","_to":"40520"} +{"$label":"ACTS_IN","name":"Ashmol Williamson","type":"Role","_key":"105509","_from":"22906","_to":"62083"} +{"$label":"ACTS_IN","name":"Lady MacBeth","type":"Role","_key":"96313","_from":"22908","_to":"56600"} +{"$label":"ACTS_IN","name":"Officer Matt Henry","type":"Role","_key":"65286","_from":"22909","_to":"40520"} +{"$label":"ACTS_IN","name":"Mr. McSwatt","type":"Role","_key":"109754","_from":"22910","_to":"64813"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"43188","_from":"22910","_to":"28840"} +{"$label":"DIRECTED","_key":"33084","_from":"22926","_to":"22911"} +{"$label":"DIRECTED","_key":"33083","_from":"22925","_to":"22911"} +{"$label":"DIRECTED","_key":"33082","_from":"22924","_to":"22911"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"33081","_from":"22923","_to":"22911"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"33080","_from":"22922","_to":"22911"} +{"$label":"ACTS_IN","name":"Prostituierte","type":"Role","_key":"33079","_from":"22921","_to":"22911"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"33078","_from":"22920","_to":"22911"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Besitzer","type":"Role","_key":"33077","_from":"22919","_to":"22911"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"33076","_from":"22918","_to":"22911"} +{"$label":"ACTS_IN","name":"Mokhtars Chef","type":"Role","_key":"33075","_from":"22917","_to":"22911"} +{"$label":"ACTS_IN","name":"Kleines M\u00e4dchen","type":"Role","_key":"33074","_from":"22916","_to":"22911"} +{"$label":"ACTS_IN","name":"Ali Reza","type":"Role","_key":"33073","_from":"22915","_to":"22911"} +{"$label":"ACTS_IN","name":"Mokhtar","type":"Role","_key":"33072","_from":"22914","_to":"22911"} +{"$label":"ACTS_IN","name":"Marhab","type":"Role","_key":"33071","_from":"22913","_to":"22911"} +{"$label":"ACTS_IN","name":"Khatoun","type":"Role","_key":"33070","_from":"22912","_to":"22911"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"33090","_from":"22928","_to":"22927"} +{"$label":"ACTS_IN","name":"The Crook","type":"Role","_key":"107508","_from":"22928","_to":"63435"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"33097","_from":"22930","_to":"22929"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"33105","_from":"22936","_to":"22931"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"33103","_from":"22935","_to":"22931"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"33102","_from":"22934","_to":"22931"} +{"$label":"ACTS_IN","name":"Oberon","type":"Role","_key":"33100","_from":"22933","_to":"22931"} +{"$label":"ACTS_IN","name":"Hermia","type":"Role","_key":"33099","_from":"22932","_to":"22931"} +{"$label":"ACTS_IN","name":"Phoebe, Age 10-12","type":"Role","_key":"117754","_from":"22932","_to":"69222"} +{"$label":"ACTS_IN","name":"Rose Slavin","type":"Role","_key":"111164","_from":"22932","_to":"65654"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"97475","_from":"22932","_to":"57409"} +{"$label":"ACTS_IN","name":"Alyssa English","type":"Role","_key":"94586","_from":"22932","_to":"55732"} +{"$label":"ACTS_IN","name":"Jill Johnson","type":"Role","_key":"60009","_from":"22932","_to":"37876"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"57030","_from":"22932","_to":"36185"} +{"$label":"ACTS_IN","name":"Evolet","type":"Role","_key":"47324","_from":"22932","_to":"31165"} +{"$label":"ACTS_IN","name":"Holly McClaren","type":"Role","_key":"41423","_from":"22932","_to":"27846"} +{"$label":"ACTS_IN","name":"Shawn MacArthur","type":"Role","_key":"111921","_from":"22935","_to":"66071"} +{"$label":"ACTS_IN","name":"Rowdy Sparks","type":"Role","_key":"111457","_from":"22935","_to":"65807"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"102222","_from":"22935","_to":"60158"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"93195","_from":"22935","_to":"54916"} +{"$label":"ACTS_IN","name":"Pretty Boy Floyd","type":"Role","_key":"69124","_from":"22935","_to":"42291"} +{"$label":"ACTS_IN","name":"Tyler Gage","type":"Role","_key":"56404","_from":"22935","_to":"35840"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"55321","_from":"22935","_to":"35273"} +{"$label":"ACTS_IN","name":"Steve Shriver","type":"Role","_key":"51862","_from":"22935","_to":"33835"} +{"$label":"ACTS_IN","name":"Young Antonio","type":"Role","_key":"48307","_from":"22935","_to":"31726"} +{"$label":"ACTS_IN","name":"Jason Lyle","type":"Role","_key":"45954","_from":"22935","_to":"30380"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"98341","_from":"22936","_to":"57917"} +{"$label":"ACTS_IN","name":"Mother Nature","type":"Role","_key":"96251","_from":"22936","_to":"56561"} +{"$label":"ACTS_IN","name":"Donna Hynde","type":"Role","_key":"61685","_from":"22936","_to":"38856"} +{"$label":"ACTS_IN","name":"Mahogany","type":"Role","_key":"56274","_from":"22936","_to":"35746"} +{"$label":"ACTS_IN","name":"Mutter Natur","type":"Role","_key":"52051","_from":"22936","_to":"33935"} +{"$label":"ACTS_IN","name":"Peter Ian Staker","type":"Role","_key":"33123","_from":"22942","_to":"22937"} +{"$label":"ACTS_IN","name":"Tom Weaver","type":"Role","_key":"33122","_from":"22941","_to":"22937"} +{"$label":"ACTS_IN","name":"PC Doris Thatcher","type":"Role","_key":"33121","_from":"22940","_to":"22937"} +{"$label":"ACTS_IN","name":"PC Bob Walker","type":"Role","_key":"33120","_from":"22939","_to":"22937"} +{"$label":"ACTS_IN","name":"Sergeant Tony Fisher","type":"Role","_key":"33119","_from":"22938","_to":"22937"} +{"$label":"ACTS_IN","name":"McGill","type":"Role","_key":"59735","_from":"22938","_to":"37714"} +{"$label":"ACTS_IN","name":"John Deakin","type":"Role","_key":"35261","_from":"22939","_to":"24006"} +{"$label":"ACTS_IN","name":"Hairdresser","type":"Role","_key":"102774","_from":"22940","_to":"60460"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"60836","_from":"22940","_to":"38430"} +{"$label":"ACTS_IN","name":"Sergeant Howie","type":"Role","_key":"108606","_from":"22941","_to":"64180"} +{"$label":"ACTS_IN","name":"Lt. Harry 'Breaker' Morant","type":"Role","_key":"96553","_from":"22941","_to":"56784"} +{"$label":"ACTS_IN","name":"Mrs. Foster","type":"Role","_key":"33136","_from":"22946","_to":"22943"} +{"$label":"ACTS_IN","name":"Holly Meechum","type":"Role","_key":"33133","_from":"22945","_to":"22943"} +{"$label":"DIRECTED","_key":"33129","_from":"22944","_to":"22943"} +{"$label":"DIRECTED","_key":"99819","_from":"22944","_to":"58881"} +{"$label":"DIRECTED","_key":"99207","_from":"22944","_to":"58461"} +{"$label":"DIRECTED","_key":"58755","_from":"22944","_to":"37115"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"33147","_from":"22957","_to":"22947"} +{"$label":"ACTS_IN","name":"Peggy Bartlett","type":"Role","_key":"33146","_from":"22956","_to":"22947"} +{"$label":"ACTS_IN","name":"Ralph Bartlett","type":"Role","_key":"33145","_from":"22955","_to":"22947"} +{"$label":"ACTS_IN","name":"Marco Vega","type":"Role","_key":"33144","_from":"22954","_to":"22947"} +{"$label":"ACTS_IN","name":"Connor Kennedy","type":"Role","_key":"33143","_from":"22953","_to":"22947"} +{"$label":"ACTS_IN","name":"Harmoney","type":"Role","_key":"33142","_from":"22952","_to":"22947"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"33141","_from":"22951","_to":"22947"} +{"$label":"ACTS_IN","name":"Sawyer Sukkivan","type":"Role","_key":"33140","_from":"22950","_to":"22947"} +{"$label":"ACTS_IN","name":"Jamie Bartlett","type":"Role","_key":"33138","_from":"22949","_to":"22947"} +{"$label":"DIRECTED","_key":"33137","_from":"22948","_to":"22947"} +{"$label":"DIRECTED","_key":"97876","_from":"22948","_to":"57646"} +{"$label":"ACTS_IN","name":"Floor Manager","type":"Role","_key":"58508","_from":"22955","_to":"36974"} +{"$label":"ACTS_IN","name":"Finley","type":"Role","_key":"33163","_from":"22968","_to":"22958"} +{"$label":"ACTS_IN","name":"Reeves","type":"Role","_key":"33162","_from":"22967","_to":"22958"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"33161","_from":"22966","_to":"22958"} +{"$label":"ACTS_IN","name":"Danny Doran","type":"Role","_key":"33160","_from":"22965","_to":"22958"} +{"$label":"ACTS_IN","name":"Cate Lindsey","type":"Role","_key":"33159","_from":"22964","_to":"22958"} +{"$label":"ACTS_IN","name":"Perada","type":"Role","_key":"33158","_from":"22963","_to":"22958"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"33157","_from":"22962","_to":"22958"} +{"$label":"ACTS_IN","name":"Lapp","type":"Role","_key":"33156","_from":"22961","_to":"22958"} +{"$label":"ACTS_IN","name":"Carl Billings","type":"Role","_key":"33153","_from":"22960","_to":"22958"} +{"$label":"ACTS_IN","name":"Emily Thomas","type":"Role","_key":"33152","_from":"22959","_to":"22958"} +{"$label":"ACTS_IN","name":"Lisa Bellmer","type":"Role","_key":"110656","_from":"22959","_to":"65370"} +{"$label":"ACTS_IN","name":"Jill Hayes","type":"Role","_key":"65389","_from":"22959","_to":"40553"} +{"$label":"ACTS_IN","name":"Allison McAllister","type":"Role","_key":"59948","_from":"22959","_to":"37851"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"41229","_from":"22959","_to":"27735"} +{"$label":"ACTS_IN","name":"Shavoo","type":"Role","_key":"114802","_from":"22960","_to":"67620"} +{"$label":"ACTS_IN","name":"Drake","type":"Role","_key":"102708","_from":"22960","_to":"60424"} +{"$label":"ACTS_IN","name":"Platoon Commander Huggs","type":"Role","_key":"89362","_from":"22960","_to":"52887"} +{"$label":"DIRECTED","_key":"33171","_from":"22972","_to":"22969"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"33170","_from":"22971","_to":"22969"} +{"$label":"ACTS_IN","name":"Tom Rockett","type":"Role","_key":"33166","_from":"22970","_to":"22969"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"110247","_from":"22970","_to":"65163"} +{"$label":"ACTS_IN","name":"Jack Cameron","type":"Role","_key":"109131","_from":"22970","_to":"64473"} +{"$label":"ACTS_IN","name":"Bink","type":"Role","_key":"109018","_from":"22970","_to":"64423"} +{"$label":"ACTS_IN","name":"Lt. Cmdr. Quinton McHale","type":"Role","_key":"102430","_from":"22970","_to":"60274"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"101686","_from":"22970","_to":"59845"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96478","_from":"22970","_to":"56725"} +{"$label":"ACTS_IN","name":"Vern Newman","type":"Role","_key":"90888","_from":"22970","_to":"53623"} +{"$label":"ACTS_IN","name":"Mr. Hunkee","type":"Role","_key":"90852","_from":"22970","_to":"53609"} +{"$label":"ACTS_IN","name":"Marty Dwyer","type":"Role","_key":"70067","_from":"22970","_to":"42720"} +{"$label":"ACTS_IN","name":"Archie","type":"Role","_key":"64668","_from":"22970","_to":"40281"} +{"$label":"ACTS_IN","name":"Buck Rowan","type":"Role","_key":"56829","_from":"22970","_to":"36088"} +{"$label":"ACTS_IN","name":"Golfer (uncredited)","type":"Role","_key":"55045","_from":"22970","_to":"35160"} +{"$label":"ACTS_IN","name":"Ivy Selleck","type":"Role","_key":"121452","_from":"22971","_to":"71349"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"115324","_from":"22971","_to":"67901"} +{"$label":"ACTS_IN","name":"Frau Westphal","type":"Role","_key":"33179","_from":"22979","_to":"22973"} +{"$label":"ACTS_IN","name":"Herr Weber","type":"Role","_key":"33178","_from":"22978","_to":"22973"} +{"$label":"ACTS_IN","name":"Kurt Tietze","type":"Role","_key":"33177","_from":"22977","_to":"22973"} +{"$label":"ACTS_IN","name":"Gerda Tietze","type":"Role","_key":"33176","_from":"22976","_to":"22973"} +{"$label":"ACTS_IN","name":"Pauls Mutter","type":"Role","_key":"33175","_from":"22975","_to":"22973"} +{"$label":"ACTS_IN","name":"Margarethe Tietze","type":"Role","_key":"33174","_from":"22974","_to":"22973"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40764","_from":"22974","_to":"27430"} +{"$label":"ACTS_IN","name":"Renate Lohse","type":"Role","_key":"33432","_from":"22974","_to":"23140"} +{"$label":"ACTS_IN","name":"Beckerchen","type":"Role","_key":"45042","_from":"22975","_to":"29920"} +{"$label":"ACTS_IN","name":"Kinobesitzer Helmer","type":"Role","_key":"34178","_from":"22975","_to":"23469"} +{"$label":"ACTS_IN","name":"Margarethe Tenns","type":"Role","_key":"51440","_from":"22979","_to":"33555"} +{"$label":"ACTS_IN","name":"Elisabeth Steininger","type":"Role","_key":"43036","_from":"22979","_to":"28745"} +{"$label":"ACTS_IN","name":"Grete Br\u00f6nner","type":"Role","_key":"42539","_from":"22979","_to":"28476"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"40863","_from":"22979","_to":"27503"} +{"$label":"ACTS_IN","name":"Diener","type":"Role","_key":"33207","_from":"23000","_to":"22980"} +{"$label":"ACTS_IN","name":"Brautvater","type":"Role","_key":"33206","_from":"22999","_to":"22980"} +{"$label":"ACTS_IN","name":"M\u00fcller mit Esel","type":"Role","_key":"33205","_from":"22998","_to":"22980"} +{"$label":"ACTS_IN","name":"Spie\u00dfgeselle","type":"Role","_key":"33204","_from":"22997","_to":"22980"} +{"$label":"ACTS_IN","name":"Br\u00e4utigam","type":"Role","_key":"33203","_from":"22996","_to":"22980"} +{"$label":"ACTS_IN","name":"Braut","type":"Role","_key":"33202","_from":"22995","_to":"22980"} +{"$label":"ACTS_IN","name":"Herold","type":"Role","_key":"33201","_from":"22994","_to":"22980"} +{"$label":"ACTS_IN","name":"alte Frau","type":"Role","_key":"33200","_from":"22993","_to":"22980"} +{"$label":"ACTS_IN","name":"3. Musikant","type":"Role","_key":"33199","_from":"22992","_to":"22980"} +{"$label":"ACTS_IN","name":"2. Musikant","type":"Role","_key":"33198","_from":"22991","_to":"22980"} +{"$label":"ACTS_IN","name":"1. Musikant","type":"Role","_key":"33197","_from":"22990","_to":"22980"} +{"$label":"ACTS_IN","name":"Graf Ohnewitz","type":"Role","_key":"33196","_from":"22989","_to":"22980"} +{"$label":"ACTS_IN","name":"Schreihals","type":"Role","_key":"33193","_from":"22988","_to":"22980"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"33190","_from":"22987","_to":"22980"} +{"$label":"ACTS_IN","name":"Gret","type":"Role","_key":"33189","_from":"22986","_to":"22980"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"33187","_from":"22985","_to":"22980"} +{"$label":"ACTS_IN","name":"Weisenstein","type":"Role","_key":"33186","_from":"22984","_to":"22980"} +{"$label":"ACTS_IN","name":"Kunz","type":"Role","_key":"33183","_from":"22983","_to":"22980"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"33181","_from":"22982","_to":"22980"} +{"$label":"DIRECTED","_key":"33180","_from":"22981","_to":"22980"} +{"$label":"DIRECTED","_key":"93825","_from":"22981","_to":"55228"} +{"$label":"DIRECTED","_key":"92578","_from":"22981","_to":"54651"} +{"$label":"ACTS_IN","name":"Steuereintreiber","type":"Role","_key":"93834","_from":"22984","_to":"55237"} +{"$label":"ACTS_IN","name":"Herzog Adolar","type":"Role","_key":"93793","_from":"22984","_to":"55218"} +{"$label":"ACTS_IN","name":"Der Wirt","type":"Role","_key":"92588","_from":"22987","_to":"54651"} +{"$label":"ACTS_IN","name":"Graf Eitelfritz","type":"Role","_key":"93795","_from":"22989","_to":"55218"} +{"$label":"ACTS_IN","name":"Haushofmeister","type":"Role","_key":"92539","_from":"22989","_to":"54617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33215","_from":"23007","_to":"23001"} +{"$label":"ACTS_IN","name":"Anni K\u00fcbler","type":"Role","_key":"33214","_from":"23006","_to":"23001"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33213","_from":"23005","_to":"23001"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33211","_from":"23004","_to":"23001"} +{"$label":"ACTS_IN","name":"Kurt Baum","type":"Role","_key":"33209","_from":"23003","_to":"23001"} +{"$label":"DIRECTED","_key":"33208","_from":"23002","_to":"23001"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"40069","_from":"23003","_to":"27043"} +{"$label":"ACTS_IN","name":"Everett","type":"Role","_key":"44810","_from":"23004","_to":"29804"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"44625","_from":"23004","_to":"29691"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43724","_from":"23004","_to":"29199"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"43642","_from":"23004","_to":"29135"} +{"$label":"ACTS_IN","name":"Bankdirektor","type":"Role","_key":"41248","_from":"23004","_to":"27738"} +{"$label":"ACTS_IN","name":"Preissen","type":"Role","_key":"40488","_from":"23004","_to":"27264"} +{"$label":"ACTS_IN","name":"Berndorf","type":"Role","_key":"39939","_from":"23004","_to":"26981"} +{"$label":"ACTS_IN","name":"Inspector Rooper","type":"Role","_key":"38182","_from":"23004","_to":"25804"} +{"$label":"ACTS_IN","name":"Henry Shelton","type":"Role","_key":"38155","_from":"23004","_to":"25795"} +{"$label":"ACTS_IN","name":"Bernd Amberger","type":"Role","_key":"71597","_from":"23007","_to":"43365"} +{"$label":"ACTS_IN","name":"Ludwig Stocker","type":"Role","_key":"66547","_from":"23007","_to":"41143"} +{"$label":"ACTS_IN","name":"U-Boot-Kapit\u00e4n","type":"Role","_key":"63894","_from":"23007","_to":"39920"} +{"$label":"ACTS_IN","name":"Obelix (voice: German version)","type":"Role","_key":"53386","_from":"23007","_to":"34500"} +{"$label":"ACTS_IN","name":"Dr. Malzer","type":"Role","_key":"34366","_from":"23007","_to":"23569"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"34174","_from":"23007","_to":"23469"} +{"$label":"ACTS_IN","name":"Cook","type":"Role","_key":"34146","_from":"23007","_to":"23455"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33395","_from":"23007","_to":"23111"} +{"$label":"ACTS_IN","name":"Ecke","type":"Role","_key":"33280","_from":"23007","_to":"23060"} +{"$label":"ACTS_IN","name":"Franz der Kellner","type":"Role","_key":"33274","_from":"23007","_to":"23045"} +{"$label":"ACTS_IN","name":"Unertl","type":"Role","_key":"33220","_from":"23007","_to":"23008"} +{"$label":"ACTS_IN","name":"Ulli","type":"Role","_key":"33224","_from":"23014","_to":"23008"} +{"$label":"ACTS_IN","name":"Herr Schneider","type":"Role","_key":"33223","_from":"23013","_to":"23008"} +{"$label":"ACTS_IN","name":"Basti","type":"Role","_key":"33222","_from":"23012","_to":"23008"} +{"$label":"ACTS_IN","name":"Frau Radke","type":"Role","_key":"33219","_from":"23011","_to":"23008"} +{"$label":"DIRECTED","_key":"33218","_from":"23010","_to":"23008"} +{"$label":"DIRECTED","_key":"33217","_from":"23009","_to":"23008"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"33236","_from":"23024","_to":"23015"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"33235","_from":"23023","_to":"23015"} +{"$label":"ACTS_IN","name":"Paca","type":"Role","_key":"33234","_from":"23022","_to":"23015"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"33232","_from":"23021","_to":"23015"} +{"$label":"ACTS_IN","name":"Captain Sylvester","type":"Role","_key":"33231","_from":"23020","_to":"23015"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"33230","_from":"23019","_to":"23015"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"33229","_from":"23018","_to":"23015"} +{"$label":"ACTS_IN","name":"The Inspector","type":"Role","_key":"33226","_from":"23017","_to":"23015"} +{"$label":"DIRECTED","_key":"33225","_from":"23016","_to":"23015"} +{"$label":"DIRECTED","_key":"94219","_from":"23016","_to":"55485"} +{"$label":"ACTS_IN","name":"Joey Collins","type":"Role","_key":"104167","_from":"23017","_to":"61284"} +{"$label":"ACTS_IN","name":"Orvil Newton","type":"Role","_key":"62670","_from":"23017","_to":"39416"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35684","_from":"23018","_to":"24247"} +{"$label":"ACTS_IN","name":"Dr. Goran Jorovic","type":"Role","_key":"33242","_from":"23030","_to":"23025"} +{"$label":"ACTS_IN","name":"Enver","type":"Role","_key":"33241","_from":"23029","_to":"23025"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"33239","_from":"23028","_to":"23025"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"33238","_from":"23027","_to":"23025"} +{"$label":"DIRECTED","_key":"33237","_from":"23026","_to":"23025"} +{"$label":"ACTS_IN","name":"Alexander jung","type":"Role","_key":"90306","_from":"23027","_to":"53382"} +{"$label":"ACTS_IN","name":"Stalin","type":"Role","_key":"88230","_from":"23027","_to":"52345"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"57531","_from":"23027","_to":"36450"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"57481","_from":"23027","_to":"36429"} +{"$label":"ACTS_IN","name":"Gefreiter Kerner","type":"Role","_key":"88224","_from":"23028","_to":"52345"} +{"$label":"ACTS_IN","name":"Carl-Friedrich von Krempin","type":"Role","_key":"72950","_from":"23028","_to":"43917"} +{"$label":"ACTS_IN","name":"Siggi","type":"Role","_key":"69653","_from":"23028","_to":"42521"} +{"$label":"ACTS_IN","name":"Flin","type":"Role","_key":"68357","_from":"23028","_to":"41953"} +{"$label":"ACTS_IN","name":"Andreas Niedrig","type":"Role","_key":"63730","_from":"23028","_to":"39849"} +{"$label":"ACTS_IN","name":"Friedrich Weimer","type":"Role","_key":"53576","_from":"23028","_to":"34579"} +{"$label":"ACTS_IN","name":"Flin","type":"Role","_key":"53203","_from":"23028","_to":"34414"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"48274","_from":"23028","_to":"31707"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"47251","_from":"23028","_to":"31136"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"65630","_from":"23029","_to":"40670"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"60320","_from":"23029","_to":"38030"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"33256","_from":"23041","_to":"23031"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"33255","_from":"23040","_to":"23031"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"33254","_from":"23039","_to":"23031"} +{"$label":"ACTS_IN","name":"Caylin-Calandria","type":"Role","_key":"33253","_from":"23038","_to":"23031"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"33251","_from":"23037","_to":"23031"} +{"$label":"ACTS_IN","name":"Billy the Kid","type":"Role","_key":"33250","_from":"23036","_to":"23031"} +{"$label":"ACTS_IN","name":"Elissa","type":"Role","_key":"33249","_from":"23035","_to":"23031"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"33248","_from":"23034","_to":"23031"} +{"$label":"ACTS_IN","name":"Carmel","type":"Role","_key":"33247","_from":"23033","_to":"23031"} +{"$label":"DIRECTED","_key":"33243","_from":"23032","_to":"23031"} +{"$label":"DIRECTED","_key":"54439","_from":"23032","_to":"34911"} +{"$label":"ACTS_IN","name":"the Driver","type":"Role","_key":"39216","_from":"23032","_to":"26506"} +{"$label":"ACTS_IN","name":"Max Scholt","type":"Role","_key":"56570","_from":"23036","_to":"35929"} +{"$label":"ACTS_IN","name":"Davis","type":"Role","_key":"107978","_from":"23041","_to":"63771"} +{"$label":"ACTS_IN","name":"Preston Preston","type":"Role","_key":"59259","_from":"23041","_to":"37429"} +{"$label":"DIRECTED","_key":"33258","_from":"23044","_to":"23042"} +{"$label":"DIRECTED","_key":"33257","_from":"23043","_to":"23042"} +{"$label":"ACTS_IN","name":"Sascha Leitner","type":"Role","_key":"33277","_from":"23059","_to":"23045"} +{"$label":"ACTS_IN","name":"Werbeverk\u00e4ufer","type":"Role","_key":"33276","_from":"23058","_to":"23045"} +{"$label":"ACTS_IN","name":"Mike Kr\u00fcger","type":"Role","_key":"33275","_from":"23057","_to":"23045"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"33273","_from":"23056","_to":"23045"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"33272","_from":"23055","_to":"23045"} +{"$label":"ACTS_IN","name":"Evi","type":"Role","_key":"33270","_from":"23054","_to":"23045"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"33269","_from":"23053","_to":"23045"} +{"$label":"ACTS_IN","name":"Frl. Sauer","type":"Role","_key":"33267","_from":"23052","_to":"23045"} +{"$label":"ACTS_IN","name":"Nicole Leitner","type":"Role","_key":"33266","_from":"23051","_to":"23045"} +{"$label":"ACTS_IN","name":"Meisinger","type":"Role","_key":"33265","_from":"23050","_to":"23045"} +{"$label":"ACTS_IN","name":"Maxi","type":"Role","_key":"33264","_from":"23049","_to":"23045"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"33263","_from":"23048","_to":"23045"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"33262","_from":"23047","_to":"23045"} +{"$label":"DIRECTED","_key":"33260","_from":"23046","_to":"23045"} +{"$label":"DIRECTED","_key":"88008","_from":"23046","_to":"52248"} +{"$label":"DIRECTED","_key":"73129","_from":"23046","_to":"43983"} +{"$label":"ACTS_IN","name":"Gunther Schmidt","type":"Role","_key":"89558","_from":"23047","_to":"53001"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"88009","_from":"23047","_to":"52248"} +{"$label":"ACTS_IN","name":"Prinz Faruk al Habib","type":"Role","_key":"73130","_from":"23047","_to":"43983"} +{"$label":"ACTS_IN","name":"Hannes Engel","type":"Role","_key":"72480","_from":"23047","_to":"43734"} +{"$label":"ACTS_IN","name":"Thommy","type":"Role","_key":"72301","_from":"23047","_to":"43675"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"66269","_from":"23047","_to":"40996"} +{"$label":"ACTS_IN","name":"K\u00f6nig Gunther","type":"Role","_key":"54340","_from":"23047","_to":"34866"} +{"$label":"ACTS_IN","name":"Father Wolfgang","type":"Role","_key":"42794","_from":"23047","_to":"28626"} +{"$label":"ACTS_IN","name":"Frank Nordmann","type":"Role","_key":"34159","_from":"23047","_to":"23460"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"34145","_from":"23047","_to":"23455"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"33393","_from":"23047","_to":"23111"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"43745","_from":"23048","_to":"29215"} +{"$label":"ACTS_IN","name":"Wiggerl","type":"Role","_key":"43178","_from":"23048","_to":"28832"} +{"$label":"ACTS_IN","name":"Monaco Franze","type":"Role","_key":"34276","_from":"23048","_to":"23524"} +{"$label":"ACTS_IN","name":"Xaver Prielmayer","type":"Role","_key":"34160","_from":"23048","_to":"23460"} +{"$label":"ACTS_IN","name":"Schmidgruber","type":"Role","_key":"34147","_from":"23048","_to":"23455"} +{"$label":"ACTS_IN","name":"Moni","type":"Role","_key":"40571","_from":"23049","_to":"27319"} +{"$label":"ACTS_IN","name":"Erni K\u00e4slinger","type":"Role","_key":"40064","_from":"23049","_to":"27043"} +{"$label":"ACTS_IN","name":"Winfried Deutelmoser","type":"Role","_key":"66217","_from":"23050","_to":"40962"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"88010","_from":"23057","_to":"52248"} +{"$label":"ACTS_IN","name":"Mike Bachstein","type":"Role","_key":"73131","_from":"23057","_to":"43983"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"72302","_from":"23057","_to":"43675"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"66270","_from":"23057","_to":"40996"} +{"$label":"ACTS_IN","name":"Nalle","type":"Role","_key":"52467","_from":"23057","_to":"34132"} +{"$label":"ACTS_IN","name":"Michael Meier","type":"Role","_key":"52009","_from":"23057","_to":"33911"} +{"$label":"ACTS_IN","name":"Spliss \/ Luise Koschinsky","type":"Role","_key":"59782","_from":"23058","_to":"37734"} +{"$label":"ACTS_IN","name":"Spliss","type":"Role","_key":"56962","_from":"23058","_to":"36144"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"33284","_from":"23063","_to":"23060"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"33283","_from":"23062","_to":"23060"} +{"$label":"ACTS_IN","name":"Hans Kolp","type":"Role","_key":"33279","_from":"23061","_to":"23060"} +{"$label":"ACTS_IN","name":"M\u00e9cir","type":"Role","_key":"33292","_from":"23069","_to":"23064"} +{"$label":"ACTS_IN","name":"Choquet","type":"Role","_key":"33290","_from":"23068","_to":"23064"} +{"$label":"ACTS_IN","name":"Agn\u00e8s","type":"Role","_key":"33289","_from":"23067","_to":"23064"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"33287","_from":"23066","_to":"23064"} +{"$label":"DIRECTED","_key":"33286","_from":"23065","_to":"23064"} +{"$label":"ACTS_IN","name":"Simon Lenehan","type":"Role","_key":"33312","_from":"23066","_to":"23080"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33299","_from":"23066","_to":"23070"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Margot Dittermann","type":"Role","_key":"116297","_from":"23067","_to":"68466"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"96145","_from":"23067","_to":"56510"} +{"$label":"ACTS_IN","name":"Garance","type":"Role","_key":"95705","_from":"23067","_to":"56295"} +{"$label":"ACTS_IN","name":"Capitaine Estelle 'Pitbull' Kass","type":"Role","_key":"65873","_from":"23067","_to":"40762"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"62247","_from":"23067","_to":"39206"} +{"$label":"ACTS_IN","name":"Jamel","type":"Role","_key":"91618","_from":"23069","_to":"54016"} +{"$label":"ACTS_IN","name":"Kacem","type":"Role","_key":"43520","_from":"23069","_to":"29066"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33305","_from":"23079","_to":"23070"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33304","_from":"23078","_to":"23070"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33303","_from":"23077","_to":"23070"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33302","_from":"23076","_to":"23070"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33300","_from":"23075","_to":"23070"} +{"$label":"ACTS_IN","name":"L\u00e9a Rivi\u00e8re","type":"Role","_key":"33297","_from":"23074","_to":"23070"} +{"$label":"DIRECTED","_key":"33296","_from":"23073","_to":"23070"} +{"$label":"DIRECTED","_key":"33295","_from":"23072","_to":"23070"} +{"$label":"DIRECTED","_key":"33294","_from":"23071","_to":"23070"} +{"$label":"DIRECTED","_key":"33318","_from":"23088","_to":"23080"} +{"$label":"ACTS_IN","name":"Bob O'Madden Burke","type":"Role","_key":"33316","_from":"23087","_to":"23080"} +{"$label":"ACTS_IN","name":"Tony O'Madden Burke","type":"Role","_key":"33315","_from":"23086","_to":"23080"} +{"$label":"ACTS_IN","name":"Charles O'Madden Burke","type":"Role","_key":"33314","_from":"23085","_to":"23080"} +{"$label":"ACTS_IN","name":"Irina Lenehan","type":"Role","_key":"33311","_from":"23084","_to":"23080"} +{"$label":"ACTS_IN","name":"Edouard McGillis","type":"Role","_key":"33309","_from":"23083","_to":"23080"} +{"$label":"ACTS_IN","name":"Pascale McGillis","type":"Role","_key":"33308","_from":"23082","_to":"23080"} +{"$label":"ACTS_IN","name":"Yvan McGillis","type":"Role","_key":"33307","_from":"23081","_to":"23080"} +{"$label":"ACTS_IN","name":"Julienne","type":"Role","_key":"90703","_from":"23082","_to":"53543"} +{"$label":"ACTS_IN","name":"Vincent Fleury","type":"Role","_key":"62285","_from":"23086","_to":"39237"} +{"$label":"DIRECTED","_key":"51342","_from":"23088","_to":"33480"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"33325","_from":"23091","_to":"23089"} +{"$label":"ACTS_IN","name":"Frances Jeffries","type":"Role","_key":"33322","_from":"23090","_to":"23089"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"120036","_from":"23090","_to":"70493"} +{"$label":"ACTS_IN","name":"Geri Nichols","type":"Role","_key":"99857","_from":"23090","_to":"58893"} +{"$label":"ACTS_IN","name":"Marica","type":"Role","_key":"47830","_from":"23090","_to":"31490"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"43580","_from":"23090","_to":"29106"} +{"$label":"ACTS_IN","name":"le m\u00e9d\u00e9cin","type":"Role","_key":"33340","_from":"23095","_to":"23092"} +{"$label":"ACTS_IN","name":"l'avocate","type":"Role","_key":"33336","_from":"23094","_to":"23092"} +{"$label":"DIRECTED","_key":"33328","_from":"23093","_to":"23092"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33364","_from":"23103","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33363","_from":"23102","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33361","_from":"23101","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33360","_from":"23100","_to":"23096"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33355","_from":"23099","_to":"23096"} +{"$label":"ACTS_IN","name":"Anne Chartier","type":"Role","_key":"33351","_from":"23098","_to":"23096"} +{"$label":"ACTS_IN","name":"Andre Leoni","type":"Role","_key":"33348","_from":"23097","_to":"23096"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"33380","_from":"23099","_to":"23107"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"33968","_from":"23100","_to":"23371"} +{"$label":"ACTS_IN","name":"la servante","type":"Role","_key":"91320","_from":"23103","_to":"53854"} +{"$label":"DIRECTED","_key":"33376","_from":"23106","_to":"23104"} +{"$label":"ACTS_IN","name":"Madrou","type":"Role","_key":"33372","_from":"23105","_to":"23104"} +{"$label":"ACTS_IN","name":"Le patron","type":"Role","_key":"103381","_from":"23105","_to":"60813"} +{"$label":"ACTS_IN","name":"Vidal","type":"Role","_key":"62117","_from":"23105","_to":"39121"} +{"$label":"ACTS_IN","name":"Marchal","type":"Role","_key":"33387","_from":"23110","_to":"23107"} +{"$label":"ACTS_IN","name":"Isobel","type":"Role","_key":"33385","_from":"23109","_to":"23107"} +{"$label":"ACTS_IN","name":"Sam Golden","type":"Role","_key":"33383","_from":"23108","_to":"23107"} +{"$label":"ACTS_IN","name":"Mirko, le p\u00e8re","type":"Role","_key":"101307","_from":"23108","_to":"59644"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"38044","_from":"23108","_to":"25743"} +{"$label":"ACTS_IN","name":"Inspector Marcel Belmont","type":"Role","_key":"35744","_from":"23108","_to":"24291"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"33400","_from":"23108","_to":"23120"} +{"$label":"ACTS_IN","name":"Village Storekeeper","type":"Role","_key":"40691","_from":"23109","_to":"27383"} +{"$label":"ACTS_IN","name":"Le M\u00e9decin","type":"Role","_key":"40245","_from":"23110","_to":"27158"} +{"$label":"ACTS_IN","name":"le second ministre","type":"Role","_key":"37900","_from":"23110","_to":"25666"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"33399","_from":"23119","_to":"23111"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33397","_from":"23118","_to":"23111"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"33396","_from":"23117","_to":"23111"} +{"$label":"ACTS_IN","name":"Partygast","type":"Role","_key":"33394","_from":"23116","_to":"23111"} +{"$label":"ACTS_IN","name":"Benni Hirt","type":"Role","_key":"33391","_from":"23115","_to":"23111"} +{"$label":"ACTS_IN","name":"Pete Hirt","type":"Role","_key":"33390","_from":"23114","_to":"23111"} +{"$label":"ACTS_IN","name":"Lena Hirt","type":"Role","_key":"33389","_from":"23113","_to":"23111"} +{"$label":"DIRECTED","_key":"33388","_from":"23112","_to":"23111"} +{"$label":"DIRECTED","_key":"90405","_from":"23113","_to":"53412"} +{"$label":"ACTS_IN","name":"Franziska Busch","type":"Role","_key":"90397","_from":"23113","_to":"53412"} +{"$label":"ACTS_IN","name":"Pastor Kristensen","type":"Role","_key":"43283","_from":"23114","_to":"28910"} +{"$label":"ACTS_IN","name":"Laurens Straub","type":"Role","_key":"44406","_from":"23116","_to":"29572"} +{"$label":"DIRECTED","_key":"44387","_from":"23116","_to":"29572"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"33406","_from":"23123","_to":"23120"} +{"$label":"ACTS_IN","name":"le garagiste","type":"Role","_key":"33405","_from":"23122","_to":"23120"} +{"$label":"ACTS_IN","name":"Zopoulos","type":"Role","_key":"33403","_from":"23121","_to":"23120"} +{"$label":"ACTS_IN","name":"Sgt. Garcia","type":"Role","_key":"116255","_from":"23121","_to":"68442"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"33422","_from":"23135","_to":"23124"} +{"$label":"ACTS_IN","name":"Martha (Jude\u00b4s Mother)","type":"Role","_key":"33421","_from":"23134","_to":"23124"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"33420","_from":"23133","_to":"23124"} +{"$label":"ACTS_IN","name":"Cyril","type":"Role","_key":"33419","_from":"23132","_to":"23124"} +{"$label":"ACTS_IN","name":"Jude\u00b4s Liverpool Girlfriend","type":"Role","_key":"33418","_from":"23131","_to":"23124"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"33417","_from":"23130","_to":"23124"} +{"$label":"ACTS_IN","name":"Prudence","type":"Role","_key":"33416","_from":"23129","_to":"23124"} +{"$label":"ACTS_IN","name":"JoJo","type":"Role","_key":"33415","_from":"23128","_to":"23124"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"33414","_from":"23127","_to":"23124"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"33412","_from":"23126","_to":"23124"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"33411","_from":"23125","_to":"23124"} +{"$label":"ACTS_IN","name":"Cordelia (voice)","type":"Role","_key":"120519","_from":"23125","_to":"70788"} +{"$label":"ACTS_IN","name":"Melodie St. Ann Celestine","type":"Role","_key":"119430","_from":"23125","_to":"70168"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110302","_from":"23125","_to":"65180"} +{"$label":"ACTS_IN","name":"Kimberly Joyce","type":"Role","_key":"98870","_from":"23125","_to":"58262"} +{"$label":"ACTS_IN","name":"Young Diana","type":"Role","_key":"92347","_from":"23125","_to":"54502"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"88399","_from":"23125","_to":"52394"} +{"$label":"ACTS_IN","name":"Lilly Gilkeson","type":"Role","_key":"88296","_from":"23125","_to":"52369"} +{"$label":"ACTS_IN","name":"Lavender 'Popeye' Wolfmeyer","type":"Role","_key":"69361","_from":"23125","_to":"42408"} +{"$label":"ACTS_IN","name":"Tracy Louise Freeland","type":"Role","_key":"67355","_from":"23125","_to":"41513"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62563","_from":"23125","_to":"39371"} +{"$label":"ACTS_IN","name":"Lainey Christian Taransky","type":"Role","_key":"52961","_from":"23125","_to":"34311"} +{"$label":"ACTS_IN","name":"Tobe","type":"Role","_key":"47443","_from":"23125","_to":"31257"} +{"$label":"ACTS_IN","name":"Natalie Finch","type":"Role","_key":"46974","_from":"23125","_to":"30977"} +{"$label":"ACTS_IN","name":"Kylie Owens","type":"Role","_key":"43384","_from":"23125","_to":"28988"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"38881","_from":"23125","_to":"26262"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"113354","_from":"23126","_to":"66775"} +{"$label":"ACTS_IN","name":"Gavin Kossef","type":"Role","_key":"105039","_from":"23126","_to":"61815"} +{"$label":"ACTS_IN","name":"George Boleyn","type":"Role","_key":"88555","_from":"23126","_to":"52483"} +{"$label":"ACTS_IN","name":"Ben Campell","type":"Role","_key":"47990","_from":"23126","_to":"31575"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"47744","_from":"23126","_to":"31437"} +{"$label":"ACTS_IN","name":"Faith Evans","type":"Role","_key":"100116","_from":"23135","_to":"59044"} +{"$label":"ACTS_IN","name":"Choe","type":"Role","_key":"33429","_from":"23139","_to":"23136"} +{"$label":"ACTS_IN","name":"Yu-Sun","type":"Role","_key":"33428","_from":"23138","_to":"23136"} +{"$label":"ACTS_IN","name":"Ryus Schwester","type":"Role","_key":"33427","_from":"23137","_to":"23136"} +{"$label":"ACTS_IN","name":"Dieter Lohse","type":"Role","_key":"33439","_from":"23145","_to":"23140"} +{"$label":"ACTS_IN","name":"Dr\u00f6gel","type":"Role","_key":"33438","_from":"23144","_to":"23140"} +{"$label":"ACTS_IN","name":"Frau Kleinert","type":"Role","_key":"33436","_from":"23143","_to":"23140"} +{"$label":"ACTS_IN","name":"Brigitte Mielke","type":"Role","_key":"33434","_from":"23142","_to":"23140"} +{"$label":"ACTS_IN","name":"Gertrud Mielke","type":"Role","_key":"33433","_from":"23141","_to":"23140"} +{"$label":"ACTS_IN","name":"Erna","type":"Role","_key":"62530","_from":"23141","_to":"39364"} +{"$label":"ACTS_IN","name":"Genoveva","type":"Role","_key":"43103","_from":"23141","_to":"28790"} +{"$label":"ACTS_IN","name":"Edeltraud Storch","type":"Role","_key":"33448","_from":"23141","_to":"23146"} +{"$label":"ACTS_IN","name":"Frl. Grauvogel","type":"Role","_key":"45363","_from":"23143","_to":"30082"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"33457","_from":"23155","_to":"23146"} +{"$label":"ACTS_IN","name":"Avontante","type":"Role","_key":"33454","_from":"23154","_to":"23146"} +{"$label":"ACTS_IN","name":"Eislauflehrerin","type":"Role","_key":"33453","_from":"23153","_to":"23146"} +{"$label":"ACTS_IN","name":"Gitte","type":"Role","_key":"33451","_from":"23152","_to":"23146"} +{"$label":"ACTS_IN","name":"Vanessa Video","type":"Role","_key":"33449","_from":"23151","_to":"23146"} +{"$label":"ACTS_IN","name":"Frau Sommer","type":"Role","_key":"33445","_from":"23150","_to":"23146"} +{"$label":"ACTS_IN","name":"Elke Sommer","type":"Role","_key":"33444","_from":"23149","_to":"23146"} +{"$label":"ACTS_IN","name":"Willi Wunder","type":"Role","_key":"33442","_from":"23148","_to":"23146"} +{"$label":"DIRECTED","_key":"33440","_from":"23147","_to":"23146"} +{"$label":"ACTS_IN","name":"Egon Krenz","type":"Role","_key":"72666","_from":"23148","_to":"43794"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"68825","_from":"23148","_to":"42166"} +{"$label":"ACTS_IN","name":"Caruso","type":"Role","_key":"52466","_from":"23148","_to":"34132"} +{"$label":"ACTS_IN","name":"Pilot, Alien, Taxifahrer, Schwuler","type":"Role","_key":"51873","_from":"23148","_to":"33840"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62186","_from":"23149","_to":"39161"} +{"$label":"ACTS_IN","name":"Herzogin Ludovika","type":"Role","_key":"42297","_from":"23149","_to":"28316"} +{"$label":"ACTS_IN","name":"Christel von der Post","type":"Role","_key":"43111","_from":"23150","_to":"28790"} +{"$label":"DIRECTED","_key":"43098","_from":"23150","_to":"28790"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"44586","_from":"23153","_to":"29676"} +{"$label":"ACTS_IN","name":"Frl. Schmitz","type":"Role","_key":"39788","_from":"23153","_to":"26876"} +{"$label":"ACTS_IN","name":"Stryver","type":"Role","_key":"33475","_from":"23162","_to":"23156"} +{"$label":"ACTS_IN","name":"Vengeance","type":"Role","_key":"33474","_from":"23161","_to":"23156"} +{"$label":"ACTS_IN","name":"Madame Defargue","type":"Role","_key":"33473","_from":"23160","_to":"23156"} +{"$label":"ACTS_IN","name":"Miss Pross","type":"Role","_key":"33465","_from":"23159","_to":"23156"} +{"$label":"ACTS_IN","name":"Dr. Manette","type":"Role","_key":"33464","_from":"23158","_to":"23156"} +{"$label":"ACTS_IN","name":"Lucie Manette","type":"Role","_key":"33459","_from":"23157","_to":"23156"} +{"$label":"ACTS_IN","name":"Mildred Strete","type":"Role","_key":"41377","_from":"23157","_to":"27819"} +{"$label":"ACTS_IN","name":"Mrs. Dudley","type":"Role","_key":"71843","_from":"23160","_to":"43474"} +{"$label":"ACTS_IN","name":"Mrs. Seagrim","type":"Role","_key":"39411","_from":"23161","_to":"26641"} +{"$label":"DIRECTED","_key":"33491","_from":"23169","_to":"23163"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33490","_from":"23168","_to":"23163"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33489","_from":"23167","_to":"23163"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"33487","_from":"23166","_to":"23163"} +{"$label":"ACTS_IN","name":"Marguerite Rosmer","type":"Role","_key":"33486","_from":"23165","_to":"23163"} +{"$label":"ACTS_IN","name":"Ruiz","type":"Role","_key":"33484","_from":"23164","_to":"23163"} +{"$label":"ACTS_IN","name":"Kaiser","type":"Role","_key":"62527","_from":"23166","_to":"39364"} +{"$label":"ACTS_IN","name":"The Great Rodolfo","type":"Role","_key":"72054","_from":"23168","_to":"43571"} +{"$label":"ACTS_IN","name":"De la Guardia","type":"Role","_key":"71331","_from":"23168","_to":"43266"} +{"$label":"ACTS_IN","name":"Peter Cunningham","type":"Role","_key":"48880","_from":"23168","_to":"32047"} +{"$label":"ACTS_IN","name":"Eugenio","type":"Role","_key":"33501","_from":"23175","_to":"23170"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"33500","_from":"23174","_to":"23170"} +{"$label":"ACTS_IN","name":"Randolph Miller","type":"Role","_key":"33499","_from":"23173","_to":"23170"} +{"$label":"ACTS_IN","name":"Mrs. Walker","type":"Role","_key":"33498","_from":"23172","_to":"23170"} +{"$label":"DIRECTED","_key":"33492","_from":"23171","_to":"23170"} +{"$label":"DIRECTED","_key":"119982","_from":"23171","_to":"70461"} +{"$label":"DIRECTED","_key":"68964","_from":"23171","_to":"42221"} +{"$label":"DIRECTED","_key":"68348","_from":"23171","_to":"41949"} +{"$label":"DIRECTED","_key":"45262","_from":"23171","_to":"30037"} +{"$label":"DIRECTED","_key":"33502","_from":"23171","_to":"23176"} +{"$label":"ACTS_IN","name":"Sammy Michaels","type":"Role","_key":"119976","_from":"23171","_to":"70461"} +{"$label":"ACTS_IN","name":"Miss Bannister","type":"Role","_key":"118548","_from":"23172","_to":"69700"} +{"$label":"ACTS_IN","name":"Mrs. Peacock","type":"Role","_key":"103547","_from":"23172","_to":"60907"} +{"$label":"ACTS_IN","name":"Betty DeBoop","type":"Role","_key":"100938","_from":"23172","_to":"59497"} +{"$label":"ACTS_IN","name":"Capt. Doreen Lewis","type":"Role","_key":"65633","_from":"23172","_to":"40671"} +{"$label":"ACTS_IN","name":"Tess Skeffington","type":"Role","_key":"41382","_from":"23172","_to":"27822"} +{"$label":"ACTS_IN","name":"Paula Hollinger","type":"Role","_key":"35394","_from":"23172","_to":"24086"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"33507","_from":"23172","_to":"23176"} +{"$label":"ACTS_IN","name":"Jameson","type":"Role","_key":"93390","_from":"23174","_to":"55005"} +{"$label":"ACTS_IN","name":"Italia Varotto","type":"Role","_key":"33519","_from":"23181","_to":"23177"} +{"$label":"ACTS_IN","name":"Gustavo Scarpa","type":"Role","_key":"33516","_from":"23180","_to":"23177"} +{"$label":"ACTS_IN","name":"Leonida Bottacin","type":"Role","_key":"33514","_from":"23179","_to":"23177"} +{"$label":"DIRECTED","_key":"33511","_from":"23178","_to":"23177"} +{"$label":"ACTS_IN","name":"Giorgio (Giulietta's husband)","type":"Role","_key":"118788","_from":"23179","_to":"69840"} +{"$label":"ACTS_IN","name":"Renzo","type":"Role","_key":"33674","_from":"23179","_to":"23243"} +{"$label":"ACTS_IN","name":"Trainmaster","type":"Role","_key":"33535","_from":"23193","_to":"23182"} +{"$label":"ACTS_IN","name":"Frau Kummer","type":"Role","_key":"33534","_from":"23192","_to":"23182"} +{"$label":"ACTS_IN","name":"Baroness' Servant","type":"Role","_key":"33533","_from":"23191","_to":"23182"} +{"$label":"ACTS_IN","name":"Rose Flood Porter","type":"Role","_key":"33531","_from":"23190","_to":"23182"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"33530","_from":"23189","_to":"23182"} +{"$label":"ACTS_IN","name":"Baroness","type":"Role","_key":"33529","_from":"23188","_to":"23182"} +{"$label":"ACTS_IN","name":"Mrs. Todhunter","type":"Role","_key":"33528","_from":"23187","_to":"23182"} +{"$label":"ACTS_IN","name":"Todhunter","type":"Role","_key":"33527","_from":"23186","_to":"23182"} +{"$label":"ACTS_IN","name":"Caldicott","type":"Role","_key":"33526","_from":"23185","_to":"23182"} +{"$label":"ACTS_IN","name":"Charters","type":"Role","_key":"33525","_from":"23184","_to":"23182"} +{"$label":"DIRECTED","_key":"33520","_from":"23183","_to":"23182"} +{"$label":"ACTS_IN","name":"Dr. John H. Watson","type":"Role","_key":"41569","_from":"23184","_to":"27920"} +{"$label":"ACTS_IN","name":"Robin Cartwright","type":"Role","_key":"110485","_from":"23185","_to":"65275"} +{"$label":"ACTS_IN","name":"Rachel Locke","type":"Role","_key":"55294","_from":"23187","_to":"35259"} +{"$label":"ACTS_IN","name":"Mrs. MacKenzie","type":"Role","_key":"103114","_from":"23188","_to":"60651"} +{"$label":"ACTS_IN","name":"The Bashaw","type":"Role","_key":"101880","_from":"23193","_to":"59964"} +{"$label":"ACTS_IN","name":"Dr. Eiwort","type":"Role","_key":"34564","_from":"23193","_to":"23665"} +{"$label":"ACTS_IN","name":"Studienprof. Blaumeier","type":"Role","_key":"33547","_from":"23203","_to":"23194"} +{"$label":"ACTS_IN","name":"Pepe Nietnagel","type":"Role","_key":"33546","_from":"23202","_to":"23194"} +{"$label":"ACTS_IN","name":"Frau Nietnagel","type":"Role","_key":"33545","_from":"23201","_to":"23194"} +{"$label":"ACTS_IN","name":"Pedell Bloch","type":"Role","_key":"33544","_from":"23200","_to":"23194"} +{"$label":"ACTS_IN","name":"Dr. Pollhagen","type":"Role","_key":"33543","_from":"23199","_to":"23194"} +{"$label":"ACTS_IN","name":"Von Schnorr","type":"Role","_key":"33541","_from":"23198","_to":"23194"} +{"$label":"ACTS_IN","name":"Julia Schumann","type":"Role","_key":"33540","_from":"23197","_to":"23194"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"33538","_from":"23196","_to":"23194"} +{"$label":"ACTS_IN","name":"Dr. Peter Bach","type":"Role","_key":"33537","_from":"23195","_to":"23194"} +{"$label":"ACTS_IN","name":"Leopold","type":"Role","_key":"44891","_from":"23195","_to":"29857"} +{"$label":"ACTS_IN","name":"Peter Martens","type":"Role","_key":"43907","_from":"23195","_to":"29305"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"41828","_from":"23195","_to":"28067"} +{"$label":"ACTS_IN","name":"Peter Alexander","type":"Role","_key":"41804","_from":"23195","_to":"28050"} +{"$label":"ACTS_IN","name":"Dr. Otto Wilder","type":"Role","_key":"41057","_from":"23195","_to":"27618"} +{"$label":"ACTS_IN","name":"Rosel Fuchs","type":"Role","_key":"45149","_from":"23197","_to":"29959"} +{"$label":"ACTS_IN","name":"Leni","type":"Role","_key":"44707","_from":"23197","_to":"29749"} +{"$label":"ACTS_IN","name":"Hinz","type":"Role","_key":"46052","_from":"23198","_to":"30425"} +{"$label":"ACTS_IN","name":"Prof. Hinzelmann","type":"Role","_key":"44897","_from":"23198","_to":"29857"} +{"$label":"ACTS_IN","name":"Studienr\u00e4tin Dr. Pollhagen","type":"Role","_key":"88887","_from":"23199","_to":"52663"} +{"$label":"ACTS_IN","name":"Heidelinde Hansen","type":"Role","_key":"71535","_from":"23199","_to":"43345"} +{"$label":"ACTS_IN","name":"Annie Engel","type":"Role","_key":"45355","_from":"23199","_to":"30082"} +{"$label":"ACTS_IN","name":"Lilo Knopke","type":"Role","_key":"45028","_from":"23199","_to":"29913"} +{"$label":"ACTS_IN","name":"Karin Biedermann","type":"Role","_key":"44440","_from":"23199","_to":"29606"} +{"$label":"ACTS_IN","name":"Dorothea","type":"Role","_key":"43757","_from":"23199","_to":"29221"} +{"$label":"ACTS_IN","name":"Desiree","type":"Role","_key":"43717","_from":"23199","_to":"29199"} +{"$label":"ACTS_IN","name":"Frau Nohr","type":"Role","_key":"42809","_from":"23199","_to":"28628"} +{"$label":"ACTS_IN","name":"Gisela","type":"Role","_key":"41837","_from":"23199","_to":"28067"} +{"$label":"ACTS_IN","name":"Wicky Winter","type":"Role","_key":"41806","_from":"23199","_to":"28050"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"40987","_from":"23199","_to":"27570"} +{"$label":"ACTS_IN","name":"Sieglinde Hirsekorn","type":"Role","_key":"40930","_from":"23199","_to":"27539"} +{"$label":"ACTS_IN","name":"Schaffler","type":"Role","_key":"44624","_from":"23200","_to":"29691"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"41246","_from":"23200","_to":"27738"} +{"$label":"ACTS_IN","name":"Luitbert","type":"Role","_key":"40933","_from":"23200","_to":"27539"} +{"$label":"ACTS_IN","name":"Marquise de Sevigne","type":"Role","_key":"46051","_from":"23201","_to":"30425"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"41025","_from":"23201","_to":"27598"} +{"$label":"ACTS_IN","name":"Pepe Nietnagel","type":"Role","_key":"88883","_from":"23202","_to":"52663"} +{"$label":"ACTS_IN","name":"Pepe Nietnagel","type":"Role","_key":"67840","_from":"23202","_to":"41690"} +{"$label":"ACTS_IN","name":"Pepe Nietnagel","type":"Role","_key":"67059","_from":"23202","_to":"41394"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40752","_from":"23203","_to":"27425"} +{"$label":"ACTS_IN","name":"Hieronymus Huber","type":"Role","_key":"40357","_from":"23203","_to":"27219"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"33593","_from":"23209","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33592","_from":"23208","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33589","_from":"23207","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33587","_from":"23206","_to":"23204"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33575","_from":"23205","_to":"23204"} +{"$label":"ACTS_IN","name":"Hank Prosner","type":"Role","_key":"101488","_from":"23205","_to":"59732"} +{"$label":"DIRECTED","_key":"33598","_from":"23211","_to":"23210"} +{"$label":"DIRECTED","_key":"73074","_from":"23211","_to":"43967"} +{"$label":"DIRECTED","_key":"70845","_from":"23211","_to":"43059"} +{"$label":"DIRECTED","_key":"35794","_from":"23211","_to":"24312"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"33603","_from":"23214","_to":"23212"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"33602","_from":"23213","_to":"23212"} +{"$label":"ACTS_IN","name":"Ganimard","type":"Role","_key":"33623","_from":"23222","_to":"23215"} +{"$label":"ACTS_IN","name":"le croque-mort","type":"Role","_key":"33622","_from":"23221","_to":"23215"} +{"$label":"ACTS_IN","name":"M. de Bellac","type":"Role","_key":"33621","_from":"23220","_to":"23215"} +{"$label":"ACTS_IN","name":"Le chroniqueur mondain d\u00e9butant","type":"Role","_key":"33620","_from":"23219","_to":"23215"} +{"$label":"ACTS_IN","name":"M. de Vierne","type":"Role","_key":"33619","_from":"23218","_to":"23215"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"33615","_from":"23217","_to":"23215"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"33611","_from":"23216","_to":"23215"} +{"$label":"ACTS_IN","name":"Cathy Maxwell","type":"Role","_key":"53396","_from":"23216","_to":"34505"} +{"$label":"ACTS_IN","name":"Svetania","type":"Role","_key":"44301","_from":"23216","_to":"29525"} +{"$label":"ACTS_IN","name":"avocate","type":"Role","_key":"33834","_from":"23216","_to":"23315"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"33709","_from":"23216","_to":"23260"} +{"$label":"ACTS_IN","name":"Mary Ann","type":"Role","_key":"33701","_from":"23216","_to":"23254"} +{"$label":"ACTS_IN","name":"Paulette Balestri","type":"Role","_key":"33695","_from":"23216","_to":"23248"} +{"$label":"ACTS_IN","name":"Nicole Cruchot","type":"Role","_key":"33680","_from":"23216","_to":"23246"} +{"$label":"ACTS_IN","name":"Nicole Cruchot","type":"Role","_key":"33666","_from":"23216","_to":"23243"} +{"$label":"ACTS_IN","name":"Nicole Cruchot","type":"Role","_key":"33649","_from":"23216","_to":"23233"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"33656","_from":"23217","_to":"23233"} +{"$label":"ACTS_IN","name":"L\u00e9on","type":"Role","_key":"34086","_from":"23220","_to":"23422"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108600","_from":"23221","_to":"64171"} +{"$label":"ACTS_IN","name":"Carol Malone","type":"Role","_key":"33634","_from":"23229","_to":"23223"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"33633","_from":"23228","_to":"23223"} +{"$label":"ACTS_IN","name":"Andy Malone","type":"Role","_key":"33632","_from":"23227","_to":"23223"} +{"$label":"ACTS_IN","name":"Mrs. Platt","type":"Role","_key":"33631","_from":"23226","_to":"23223"} +{"$label":"ACTS_IN","name":"Jenn Platt","type":"Role","_key":"33629","_from":"23225","_to":"23223"} +{"$label":"DIRECTED","_key":"33625","_from":"23224","_to":"23223"} +{"$label":"DIRECTED","_key":"117066","_from":"23224","_to":"68895"} +{"$label":"DIRECTED","_key":"95178","_from":"23224","_to":"56001"} +{"$label":"DIRECTED","_key":"88276","_from":"23224","_to":"52363"} +{"$label":"DIRECTED","_key":"54678","_from":"23224","_to":"35009"} +{"$label":"ACTS_IN","name":"Reno Miller (as Jimmy Laine)","type":"Role","_key":"95179","_from":"23224","_to":"56001"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"68406","_from":"23225","_to":"41966"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"119841","_from":"23229","_to":"70375"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"98763","_from":"23229","_to":"58201"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"90277","_from":"23229","_to":"53368"} +{"$label":"ACTS_IN","name":"Mary Loomis","type":"Role","_key":"64187","_from":"23229","_to":"40047"} +{"$label":"ACTS_IN","name":"Teri Riley","type":"Role","_key":"33646","_from":"23232","_to":"23230"} +{"$label":"ACTS_IN","name":"Fortunio Balducci","type":"Role","_key":"33640","_from":"23231","_to":"23230"} +{"$label":"ACTS_IN","name":"Fishin' Hole Guy","type":"Role","_key":"96616","_from":"23231","_to":"56824"} +{"$label":"ACTS_IN","name":"Mme Gerber","type":"Role","_key":"33663","_from":"23242","_to":"23233"} +{"$label":"ACTS_IN","name":"Mme Lareine Leroy","type":"Role","_key":"33662","_from":"23241","_to":"23233"} +{"$label":"ACTS_IN","name":"Harper alias Ferguson","type":"Role","_key":"33659","_from":"23240","_to":"23233"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"33658","_from":"23239","_to":"23233"} +{"$label":"ACTS_IN","name":"Soeur Clotilde","type":"Role","_key":"33657","_from":"23238","_to":"23233"} +{"$label":"ACTS_IN","name":"Jean-Luc","type":"Role","_key":"33655","_from":"23237","_to":"23233"} +{"$label":"ACTS_IN","name":"Tricard","type":"Role","_key":"33653","_from":"23236","_to":"23233"} +{"$label":"ACTS_IN","name":"Logis Berlicot","type":"Role","_key":"33652","_from":"23235","_to":"23233"} +{"$label":"DIRECTED","_key":"33647","_from":"23234","_to":"23233"} +{"$label":"DIRECTED","_key":"90532","_from":"23234","_to":"53476"} +{"$label":"DIRECTED","_key":"72740","_from":"23234","_to":"43823"} +{"$label":"DIRECTED","_key":"72729","_from":"23234","_to":"43821"} +{"$label":"DIRECTED","_key":"71618","_from":"23234","_to":"43374"} +{"$label":"DIRECTED","_key":"71527","_from":"23234","_to":"43339"} +{"$label":"DIRECTED","_key":"63792","_from":"23234","_to":"39891"} +{"$label":"DIRECTED","_key":"53083","_from":"23234","_to":"34359"} +{"$label":"DIRECTED","_key":"33860","_from":"23234","_to":"23329"} +{"$label":"DIRECTED","_key":"33678","_from":"23234","_to":"23246"} +{"$label":"DIRECTED","_key":"33664","_from":"23234","_to":"23243"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des Logis Berlicot","type":"Role","_key":"72728","_from":"23235","_to":"43821"} +{"$label":"ACTS_IN","name":"Le soldat qui louche","type":"Role","_key":"48892","_from":"23235","_to":"32047"} +{"$label":"ACTS_IN","name":"Tricard","type":"Role","_key":"33685","_from":"23235","_to":"23246"} +{"$label":"ACTS_IN","name":"Berlicot","type":"Role","_key":"33670","_from":"23235","_to":"23243"} +{"$label":"ACTS_IN","name":"Mar\u00e9chal des Logis Tricard","type":"Role","_key":"72727","_from":"23236","_to":"43821"} +{"$label":"ACTS_IN","name":"Le musicien bavard","type":"Role","_key":"48896","_from":"23236","_to":"32047"} +{"$label":"ACTS_IN","name":"de la Madrigi\u00e8re","type":"Role","_key":"34087","_from":"23236","_to":"23422"} +{"$label":"ACTS_IN","name":"Berlicot","type":"Role","_key":"33684","_from":"23236","_to":"23246"} +{"$label":"ACTS_IN","name":"Tricard","type":"Role","_key":"33669","_from":"23236","_to":"23243"} +{"$label":"ACTS_IN","name":"Woman Selling Eyeglasses","type":"Role","_key":"61823","_from":"23238","_to":"38917"} +{"$label":"ACTS_IN","name":"Soeur Clotilde","type":"Role","_key":"33689","_from":"23238","_to":"23246"} +{"$label":"ACTS_IN","name":"Soeur Clotilde","type":"Role","_key":"33677","_from":"23238","_to":"23243"} +{"$label":"ACTS_IN","name":"le copain de Nicole","type":"Role","_key":"33675","_from":"23239","_to":"23243"} +{"$label":"ACTS_IN","name":"Mme Gerber","type":"Role","_key":"33690","_from":"23242","_to":"23246"} +{"$label":"ACTS_IN","name":"Aldo","type":"Role","_key":"33673","_from":"23245","_to":"23243"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"33672","_from":"23244","_to":"23243"} +{"$label":"ACTS_IN","name":"le colonel","type":"Role","_key":"33687","_from":"23247","_to":"23246"} +{"$label":"ACTS_IN","name":"Flavio","type":"Role","_key":"33698","_from":"23253","_to":"23248"} +{"$label":"ACTS_IN","name":"Santovski","type":"Role","_key":"33697","_from":"23252","_to":"23248"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"33696","_from":"23251","_to":"23248"} +{"$label":"ACTS_IN","name":"Comtesse de Labarthe","type":"Role","_key":"33693","_from":"23250","_to":"23248"} +{"$label":"DIRECTED","_key":"33691","_from":"23249","_to":"23248"} +{"$label":"ACTS_IN","name":"Nastasia","type":"Role","_key":"33773","_from":"23250","_to":"23281"} +{"$label":"ACTS_IN","name":"Sanya","type":"Role","_key":"114390","_from":"23251","_to":"67376"} +{"$label":"ACTS_IN","name":"Girobatol","type":"Role","_key":"33706","_from":"23259","_to":"23254"} +{"$label":"ACTS_IN","name":"Sergente Mitchell","type":"Role","_key":"33705","_from":"23258","_to":"23254"} +{"$label":"ACTS_IN","name":"Tenente Ross","type":"Role","_key":"33704","_from":"23257","_to":"23254"} +{"$label":"ACTS_IN","name":"Yanez","type":"Role","_key":"33702","_from":"23256","_to":"23254"} +{"$label":"ACTS_IN","name":"Sandokan","type":"Role","_key":"33700","_from":"23255","_to":"23254"} +{"$label":"ACTS_IN","name":"Phillipides","type":"Role","_key":"117149","_from":"23255","_to":"68924"} +{"$label":"ACTS_IN","name":"Dottore","type":"Role","_key":"37407","_from":"23259","_to":"25352"} +{"$label":"ACTS_IN","name":"M\u00e9rindol","type":"Role","_key":"33723","_from":"23266","_to":"23260"} +{"$label":"ACTS_IN","name":"Chiquita","type":"Role","_key":"33722","_from":"23265","_to":"23260"} +{"$label":"ACTS_IN","name":"Baron des Bruy\u00e8res","type":"Role","_key":"33721","_from":"23264","_to":"23260"} +{"$label":"ACTS_IN","name":"Agostin","type":"Role","_key":"33719","_from":"23263","_to":"23260"} +{"$label":"ACTS_IN","name":"Marquise des Bruy\u00e8res","type":"Role","_key":"33711","_from":"23262","_to":"23260"} +{"$label":"DIRECTED","_key":"33707","_from":"23261","_to":"23260"} +{"$label":"DIRECTED","_key":"53394","_from":"23261","_to":"34505"} +{"$label":"DIRECTED","_key":"35125","_from":"23261","_to":"23944"} +{"$label":"ACTS_IN","name":"Porthos","type":"Role","_key":"65318","_from":"23266","_to":"40531"} +{"$label":"ACTS_IN","name":"L'oncle Andr\u00e9 Rouleau","type":"Role","_key":"50764","_from":"23266","_to":"33128"} +{"$label":"ACTS_IN","name":"le patron du bistro","type":"Role","_key":"33742","_from":"23272","_to":"23267"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"33741","_from":"23271","_to":"23267"} +{"$label":"ACTS_IN","name":"la propri\u00e9taire de la loterie","type":"Role","_key":"33739","_from":"23270","_to":"23267"} +{"$label":"ACTS_IN","name":"le patron d'Hilda","type":"Role","_key":"33737","_from":"23269","_to":"23267"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"33731","_from":"23268","_to":"23267"} +{"$label":"ACTS_IN","name":"M. Vigier-Lefranc","type":"Role","_key":"49609","_from":"23268","_to":"32469"} +{"$label":"ACTS_IN","name":"Barby","type":"Role","_key":"34080","_from":"23269","_to":"23415"} +{"$label":"ACTS_IN","name":"Ravoux","type":"Role","_key":"33752","_from":"23278","_to":"23273"} +{"$label":"ACTS_IN","name":"Adeline","type":"Role","_key":"33751","_from":"23277","_to":"23273"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"33750","_from":"23276","_to":"23273"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"33749","_from":"23275","_to":"23273"} +{"$label":"ACTS_IN","name":"Gachet","type":"Role","_key":"33748","_from":"23274","_to":"23273"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"33961","_from":"23274","_to":"23371"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"66948","_from":"23276","_to":"41331"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"48743","_from":"23276","_to":"31971"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33766","_from":"23280","_to":"23279"} +{"$label":"ACTS_IN","name":"La copine du chef du FLSO","type":"Role","_key":"48089","_from":"23280","_to":"31610"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"33779","_from":"23286","_to":"23281"} +{"$label":"ACTS_IN","name":"Agla\u00e9","type":"Role","_key":"33777","_from":"23285","_to":"23281"} +{"$label":"ACTS_IN","name":"Rogogine","type":"Role","_key":"33774","_from":"23284","_to":"23281"} +{"$label":"ACTS_IN","name":"Miouchkine","type":"Role","_key":"33772","_from":"23283","_to":"23281"} +{"$label":"DIRECTED","_key":"33771","_from":"23282","_to":"23281"} +{"$label":"ACTS_IN","name":"Herr X.","type":"Role","_key":"33794","_from":"23297","_to":"23287"} +{"$label":"ACTS_IN","name":"Trainer","type":"Role","_key":"33793","_from":"23296","_to":"23287"} +{"$label":"ACTS_IN","name":"Herr Z.","type":"Role","_key":"33792","_from":"23295","_to":"23287"} +{"$label":"ACTS_IN","name":"Kollege","type":"Role","_key":"33790","_from":"23294","_to":"23287"} +{"$label":"ACTS_IN","name":"Tonka","type":"Role","_key":"33789","_from":"23293","_to":"23287"} +{"$label":"ACTS_IN","name":"Svenni","type":"Role","_key":"33788","_from":"23292","_to":"23287"} +{"$label":"ACTS_IN","name":"Boris Lehmann","type":"Role","_key":"33787","_from":"23291","_to":"23287"} +{"$label":"ACTS_IN","name":"Frau Wellinek","type":"Role","_key":"33785","_from":"23290","_to":"23287"} +{"$label":"ACTS_IN","name":"Jewgenia","type":"Role","_key":"33783","_from":"23289","_to":"23287"} +{"$label":"DIRECTED","_key":"33780","_from":"23288","_to":"23287"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"89270","_from":"23290","_to":"52854"} +{"$label":"ACTS_IN","name":"Ina Littmann","type":"Role","_key":"88306","_from":"23290","_to":"52374"} +{"$label":"ACTS_IN","name":"Beate Schuhmann-Weil","type":"Role","_key":"71707","_from":"23290","_to":"43407"} +{"$label":"ACTS_IN","name":"Katjas Vater","type":"Role","_key":"49753","_from":"23291","_to":"32550"} +{"$label":"ACTS_IN","name":"Gerd","type":"Role","_key":"34592","_from":"23295","_to":"23680"} +{"$label":"ACTS_IN","name":"Enno","type":"Role","_key":"91029","_from":"23296","_to":"53710"} +{"$label":"ACTS_IN","name":"Obergefreiter Fritz Reiser","type":"Role","_key":"67883","_from":"23296","_to":"41712"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"61728","_from":"23296","_to":"38875"} +{"$label":"ACTS_IN","name":"Capitaine Charles Delon","type":"Role","_key":"50231","_from":"23296","_to":"32829"} +{"$label":"ACTS_IN","name":"Ivekovic","type":"Role","_key":"38713","_from":"23296","_to":"26151"} +{"$label":"DIRECTED","_key":"33812","_from":"23306","_to":"23298"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33810","_from":"23305","_to":"23298"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33808","_from":"23304","_to":"23298"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"33805","_from":"23303","_to":"23298"} +{"$label":"ACTS_IN","name":"Norville","type":"Role","_key":"33803","_from":"23302","_to":"23298"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"33801","_from":"23301","_to":"23298"} +{"$label":"ACTS_IN","name":"\u00c9milie","type":"Role","_key":"33800","_from":"23300","_to":"23298"} +{"$label":"ACTS_IN","name":"Horace","type":"Role","_key":"33798","_from":"23299","_to":"23298"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"88712","_from":"23302","_to":"52563"} +{"$label":"DIRECTED","_key":"53406","_from":"23306","_to":"34508"} +{"$label":"DIRECTED","_key":"33813","_from":"23308","_to":"23307"} +{"$label":"ACTS_IN","name":"Granger","type":"Role","_key":"33830","_from":"23314","_to":"23309"} +{"$label":"ACTS_IN","name":"Laurence","type":"Role","_key":"33829","_from":"23313","_to":"23309"} +{"$label":"ACTS_IN","name":"Nathalie Granger","type":"Role","_key":"33828","_from":"23312","_to":"23309"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"33824","_from":"23311","_to":"23309"} +{"$label":"DIRECTED","_key":"33823","_from":"23310","_to":"23309"} +{"$label":"DIRECTED","_key":"33842","_from":"23319","_to":"23315"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33841","_from":"23318","_to":"23315"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"33836","_from":"23317","_to":"23315"} +{"$label":"ACTS_IN","name":"Jean-Philippe","type":"Role","_key":"33831","_from":"23316","_to":"23315"} +{"$label":"ACTS_IN","name":"Paul Guyot","type":"Role","_key":"35825","_from":"23316","_to":"24323"} +{"$label":"ACTS_IN","name":"Antoine Fromont","type":"Role","_key":"33861","_from":"23316","_to":"23329"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71435","_from":"23318","_to":"43308"} +{"$label":"ACTS_IN","name":"L\u00fcding, Konzernherr","type":"Role","_key":"33859","_from":"23328","_to":"23320"} +{"$label":"ACTS_IN","name":"Staatsanwalt Dr. Korten","type":"Role","_key":"33858","_from":"23327","_to":"23320"} +{"$label":"ACTS_IN","name":"Frau Pletzer","type":"Role","_key":"33857","_from":"23326","_to":"23320"} +{"$label":"ACTS_IN","name":"Alois Str\u00e4ubleder, Unternehmer","type":"Role","_key":"33856","_from":"23325","_to":"23320"} +{"$label":"ACTS_IN","name":"Konrad Beiters","type":"Role","_key":"33855","_from":"23324","_to":"23320"} +{"$label":"ACTS_IN","name":"Else Woltersheim, Patentante Katharinas","type":"Role","_key":"33854","_from":"23323","_to":"23320"} +{"$label":"ACTS_IN","name":"Trude Blorna","type":"Role","_key":"33850","_from":"23322","_to":"23320"} +{"$label":"DIRECTED","_key":"33844","_from":"23321","_to":"23320"} +{"$label":"ACTS_IN","name":"Margarethe","type":"Role","_key":"61901","_from":"23321","_to":"38955"} +{"$label":"DIRECTED","_key":"42880","_from":"23321","_to":"28665"} +{"$label":"DIRECTED","_key":"38280","_from":"23321","_to":"25853"} +{"$label":"ACTS_IN","name":"Gabi Teichert","type":"Role","_key":"90394","_from":"23322","_to":"53412"} +{"$label":"ACTS_IN","name":"Lena Hoelldobler","type":"Role","_key":"61805","_from":"23322","_to":"38905"} +{"$label":"ACTS_IN","name":"Maren Torkelsen","type":"Role","_key":"39689","_from":"23322","_to":"26821"} +{"$label":"ACTS_IN","name":"Maren Ohmsen","type":"Role","_key":"39680","_from":"23322","_to":"26819"} +{"$label":"ACTS_IN","name":"Maren Torkelsen","type":"Role","_key":"39669","_from":"23322","_to":"26810"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40762","_from":"23323","_to":"27430"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41224","_from":"23328","_to":"27727"} +{"$label":"ACTS_IN","name":"le joueur d\u00e9cav\u00e9","type":"Role","_key":"33875","_from":"23337","_to":"23329"} +{"$label":"ACTS_IN","name":"la m\u00e8re Fromont","type":"Role","_key":"33874","_from":"23336","_to":"23329"} +{"$label":"ACTS_IN","name":"Sylvie Fromont","type":"Role","_key":"33872","_from":"23335","_to":"23329"} +{"$label":"ACTS_IN","name":"Edouard Marchand","type":"Role","_key":"33870","_from":"23334","_to":"23329"} +{"$label":"ACTS_IN","name":"Fernand Marchand","type":"Role","_key":"33869","_from":"23333","_to":"23329"} +{"$label":"ACTS_IN","name":"la voyante","type":"Role","_key":"33865","_from":"23332","_to":"23329"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"33864","_from":"23331","_to":"23329"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"33863","_from":"23330","_to":"23329"} +{"$label":"ACTS_IN","name":"St\u00e9phanie","type":"Role","_key":"65826","_from":"23331","_to":"40738"} +{"$label":"ACTS_IN","name":"Dona Juana","type":"Role","_key":"99315","_from":"23332","_to":"58517"} +{"$label":"ACTS_IN","name":"Lucienne Roubier","type":"Role","_key":"72733","_from":"23332","_to":"43822"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108599","_from":"23337","_to":"64171"} +{"$label":"ACTS_IN","name":"le docteur","type":"Role","_key":"88451","_from":"23337","_to":"52428"} +{"$label":"ACTS_IN","name":"Le postier","type":"Role","_key":"72723","_from":"23337","_to":"43820"} +{"$label":"ACTS_IN","name":"la couturi\u00e8re","type":"Role","_key":"33893","_from":"23347","_to":"23338"} +{"$label":"ACTS_IN","name":"Elisabeth Lolo","type":"Role","_key":"33891","_from":"23346","_to":"23338"} +{"$label":"ACTS_IN","name":"la colonelle","type":"Role","_key":"33890","_from":"23345","_to":"23338"} +{"$label":"ACTS_IN","name":"le chauffeur de taxi","type":"Role","_key":"33889","_from":"23344","_to":"23338"} +{"$label":"ACTS_IN","name":"Ratin","type":"Role","_key":"33887","_from":"23343","_to":"23338"} +{"$label":"ACTS_IN","name":"le commissaire Boucher","type":"Role","_key":"33886","_from":"23342","_to":"23338"} +{"$label":"ACTS_IN","name":"Attalone","type":"Role","_key":"33885","_from":"23341","_to":"23338"} +{"$label":"ACTS_IN","name":"Herv\u00e9","type":"Role","_key":"33883","_from":"23340","_to":"23338"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"33882","_from":"23339","_to":"23338"} +{"$label":"ACTS_IN","name":"Bertram","type":"Role","_key":"40246","_from":"23340","_to":"27158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"33900","_from":"23349","_to":"23348"} +{"$label":"ACTS_IN","name":"Th\u00e9r\u00e8se","type":"Role","_key":"101264","_from":"23349","_to":"59631"} +{"$label":"ACTS_IN","name":"La Voisin","type":"Role","_key":"36087","_from":"23349","_to":"24488"} +{"$label":"DIRECTED","_key":"33901","_from":"23351","_to":"23350"} +{"$label":"ACTS_IN","name":"Amanda McCready","type":"Role","_key":"33914","_from":"23356","_to":"23352"} +{"$label":"ACTS_IN","name":"Cheese","type":"Role","_key":"33912","_from":"23355","_to":"23352"} +{"$label":"ACTS_IN","name":"Devin","type":"Role","_key":"33911","_from":"23354","_to":"23352"} +{"$label":"ACTS_IN","name":"Lionel McCready","type":"Role","_key":"33910","_from":"23353","_to":"23352"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"100254","_from":"23354","_to":"59123"} +{"$label":"ACTS_IN","name":"Laurent","type":"Role","_key":"115494","_from":"23355","_to":"67997"} +{"$label":"ACTS_IN","name":"Deputy Martin","type":"Role","_key":"100261","_from":"23355","_to":"59126"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"33926","_from":"23361","_to":"23357"} +{"$label":"ACTS_IN","name":"Philip Fairweather","type":"Role","_key":"33923","_from":"23360","_to":"23357"} +{"$label":"ACTS_IN","name":"Christopher's mother","type":"Role","_key":"33922","_from":"23359","_to":"23357"} +{"$label":"ACTS_IN","name":"Christopher's father","type":"Role","_key":"33921","_from":"23358","_to":"23357"} +{"$label":"ACTS_IN","name":"Agatha Spanner","type":"Role","_key":"119592","_from":"23359","_to":"70243"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"119393","_from":"23359","_to":"70145"} +{"$label":"ACTS_IN","name":"Mrs. Portinari","type":"Role","_key":"33940","_from":"23370","_to":"23362"} +{"$label":"ACTS_IN","name":"Italian Businessman","type":"Role","_key":"33939","_from":"23369","_to":"23362"} +{"$label":"ACTS_IN","name":"D'Annunzio","type":"Role","_key":"33938","_from":"23368","_to":"23362"} +{"$label":"ACTS_IN","name":"Ferguson","type":"Role","_key":"33937","_from":"23367","_to":"23362"} +{"$label":"ACTS_IN","name":"Farber","type":"Role","_key":"33935","_from":"23366","_to":"23362"} +{"$label":"ACTS_IN","name":"Inspector Brie","type":"Role","_key":"33934","_from":"23365","_to":"23362"} +{"$label":"ACTS_IN","name":"Amy Courtland","type":"Role","_key":"33932","_from":"23364","_to":"23362"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"33931","_from":"23363","_to":"23362"} +{"$label":"ACTS_IN","name":"Tom Barbour","type":"Role","_key":"101192","_from":"23367","_to":"59606"} +{"$label":"ACTS_IN","name":"Mr. Brenton","type":"Role","_key":"110140","_from":"23369","_to":"65080"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"33967","_from":"23379","_to":"23371"} +{"$label":"ACTS_IN","name":"le fabricant de faux papiers","type":"Role","_key":"33965","_from":"23378","_to":"23371"} +{"$label":"ACTS_IN","name":"Agn\u00e8s","type":"Role","_key":"33960","_from":"23377","_to":"23371"} +{"$label":"ACTS_IN","name":"Yvette, la femme de Ramon","type":"Role","_key":"33959","_from":"23376","_to":"23371"} +{"$label":"ACTS_IN","name":"un employ\u00e9 Pan-am","type":"Role","_key":"33957","_from":"23375","_to":"23371"} +{"$label":"ACTS_IN","name":"l'employ\u00e9 SNCF","type":"Role","_key":"33956","_from":"23374","_to":"23371"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"33954","_from":"23373","_to":"23371"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"33946","_from":"23372","_to":"23371"} +{"$label":"ACTS_IN","name":"le m\u00e9decin de Crespel","type":"Role","_key":"34062","_from":"23372","_to":"23411"} +{"$label":"ACTS_IN","name":"Priest of Leiris","type":"Role","_key":"103672","_from":"23373","_to":"60977"} +{"$label":"ACTS_IN","name":"Lebrac's mother","type":"Role","_key":"63169","_from":"23376","_to":"39624"} +{"$label":"ACTS_IN","name":"Germaine Coster","type":"Role","_key":"34061","_from":"23376","_to":"23411"} +{"$label":"ACTS_IN","name":"la vieille dame","type":"Role","_key":"34350","_from":"23379","_to":"23558"} +{"$label":"ACTS_IN","name":"Captain Fenard","type":"Role","_key":"33975","_from":"23382","_to":"23380"} +{"$label":"ACTS_IN","name":"Harlequin","type":"Role","_key":"33973","_from":"23381","_to":"23380"} +{"$label":"ACTS_IN","name":"Father Cassidy","type":"Role","_key":"103869","_from":"23382","_to":"61091"} +{"$label":"ACTS_IN","name":"Col. Vardovsky","type":"Role","_key":"72967","_from":"23382","_to":"43921"} +{"$label":"ACTS_IN","name":"Archmagus","type":"Role","_key":"56900","_from":"23382","_to":"36116"} +{"$label":"ACTS_IN","name":"Nigel Griffith","type":"Role","_key":"54909","_from":"23382","_to":"35108"} +{"$label":"ACTS_IN","name":"Lucien Leroy","type":"Role","_key":"33981","_from":"23384","_to":"23383"} +{"$label":"DIRECTED","_key":"33977","_from":"23384","_to":"23383"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"33990","_from":"23389","_to":"23385"} +{"$label":"ACTS_IN","name":"El Ciempi\u00e9s","type":"Role","_key":"33989","_from":"23388","_to":"23385"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"33988","_from":"23387","_to":"23385"} +{"$label":"DIRECTED","_key":"33985","_from":"23386","_to":"23385"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"49023","_from":"23388","_to":"32126"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"33997","_from":"23393","_to":"23390"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"33996","_from":"23392","_to":"23390"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"33994","_from":"23391","_to":"23390"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"91534","_from":"23391","_to":"53952"} +{"$label":"ACTS_IN","name":"Julia Flyte","type":"Role","_key":"90321","_from":"23391","_to":"53388"} +{"$label":"ACTS_IN","name":"Sue Trinder","type":"Role","_key":"105111","_from":"23392","_to":"61861"} +{"$label":"ACTS_IN","name":"Elly Carpenter","type":"Role","_key":"103056","_from":"23392","_to":"60626"} +{"$label":"ACTS_IN","name":"Anne Elliot","type":"Role","_key":"97687","_from":"23392","_to":"57524"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"89619","_from":"23392","_to":"53037"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"67927","_from":"23392","_to":"41735"} +{"$label":"ACTS_IN","name":"Poppy","type":"Role","_key":"63714","_from":"23392","_to":"39839"} +{"$label":"ACTS_IN","name":"Slasher","type":"Role","_key":"34304","_from":"23392","_to":"23533"} +{"$label":"ACTS_IN","name":"Insp. Badger","type":"Role","_key":"36886","_from":"23393","_to":"25001"} +{"$label":"DIRECTED","_key":"34010","_from":"23397","_to":"23394"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34008","_from":"23396","_to":"23394"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34004","_from":"23395","_to":"23394"} +{"$label":"DIRECTED","_key":"118173","_from":"23397","_to":"69450"} +{"$label":"DIRECTED","_key":"109784","_from":"23397","_to":"64846"} +{"$label":"ACTS_IN","name":"madre di Mic\u00f3l","type":"Role","_key":"34019","_from":"23402","_to":"23398"} +{"$label":"ACTS_IN","name":"padre di Mic\u00f3l","type":"Role","_key":"34018","_from":"23401","_to":"23398"} +{"$label":"ACTS_IN","name":"madre di Giorgio","type":"Role","_key":"34017","_from":"23400","_to":"23398"} +{"$label":"ACTS_IN","name":"Giorgio","type":"Role","_key":"34014","_from":"23399","_to":"23398"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34031","_from":"23406","_to":"23403"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34030","_from":"23405","_to":"23403"} +{"$label":"ACTS_IN","name":"Madame Gabrielle","type":"Role","_key":"34028","_from":"23404","_to":"23403"} +{"$label":"ACTS_IN","name":"Nanina Scognamilio","type":"Role","_key":"34038","_from":"23409","_to":"23407"} +{"$label":"DIRECTED","_key":"34033","_from":"23408","_to":"23407"} +{"$label":"ACTS_IN","name":"le technicien qui vient chercher Ridder","type":"Role","_key":"34063","_from":"23414","_to":"23411"} +{"$label":"ACTS_IN","name":"Marcelle Hannecart","type":"Role","_key":"34059","_from":"23413","_to":"23411"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"34054","_from":"23412","_to":"23411"} +{"$label":"ACTS_IN","name":"Joanna's Touring-Friend","type":"Role","_key":"39375","_from":"23412","_to":"26621"} +{"$label":"ACTS_IN","name":"Julia Anderson","type":"Role","_key":"34707","_from":"23412","_to":"23739"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"34674","_from":"23412","_to":"23728"} +{"$label":"ACTS_IN","name":"Isabelle Moreau","type":"Role","_key":"34411","_from":"23412","_to":"23581"} +{"$label":"ACTS_IN","name":"Marcillac","type":"Role","_key":"34078","_from":"23421","_to":"23415"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"34075","_from":"23420","_to":"23415"} +{"$label":"ACTS_IN","name":"Docteur Larmy","type":"Role","_key":"34074","_from":"23419","_to":"23415"} +{"$label":"ACTS_IN","name":"Gaston Berval","type":"Role","_key":"34073","_from":"23418","_to":"23415"} +{"$label":"ACTS_IN","name":"Florence Delage","type":"Role","_key":"34068","_from":"23417","_to":"23415"} +{"$label":"DIRECTED","_key":"34066","_from":"23416","_to":"23415"} +{"$label":"ACTS_IN","name":"Dr. Pasucha","type":"Role","_key":"40366","_from":"23421","_to":"27226"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34091","_from":"23425","_to":"23422"} +{"$label":"ACTS_IN","name":"le chef d\u00e9m\u00e9nageur","type":"Role","_key":"34090","_from":"23424","_to":"23422"} +{"$label":"DIRECTED","_key":"34082","_from":"23423","_to":"23422"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34100","_from":"23434","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34099","_from":"23433","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34098","_from":"23432","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34097","_from":"23431","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34096","_from":"23430","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34095","_from":"23429","_to":"23426"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"34094","_from":"23428","_to":"23426"} +{"$label":"DIRECTED","_key":"34093","_from":"23427","_to":"23426"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"108633","_from":"23431","_to":"64191"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"100434","_from":"23431","_to":"59220"} +{"$label":"DIRECTED","_key":"34121","_from":"23443","_to":"23436"} +{"$label":"ACTS_IN","name":"Ameer","type":"Role","_key":"34120","_from":"23442","_to":"23436"} +{"$label":"ACTS_IN","name":"Dancer in Desert","type":"Role","_key":"34119","_from":"23441","_to":"23436"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"34117","_from":"23440","_to":"23436"} +{"$label":"ACTS_IN","name":"Chistina","type":"Role","_key":"34115","_from":"23439","_to":"23436"} +{"$label":"ACTS_IN","name":"Nerissa","type":"Role","_key":"34113","_from":"23438","_to":"23436"} +{"$label":"ACTS_IN","name":"Sinbad","type":"Role","_key":"34112","_from":"23437","_to":"23436"} +{"$label":"ACTS_IN","name":"Goldwyn Girl","type":"Role","_key":"34247","_from":"23440","_to":"23507"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"34222","_from":"23440","_to":"23494"} +{"$label":"ACTS_IN","name":"Grace Shanway","type":"Role","_key":"119047","_from":"23442","_to":"69979"} +{"$label":"ACTS_IN","name":"Jean-Louis Gaudel","type":"Role","_key":"34133","_from":"23448","_to":"23444"} +{"$label":"ACTS_IN","name":"Mr. Felix","type":"Role","_key":"34132","_from":"23447","_to":"23444"} +{"$label":"ACTS_IN","name":"Sylvie Gaudel","type":"Role","_key":"34129","_from":"23446","_to":"23444"} +{"$label":"DIRECTED","_key":"34123","_from":"23445","_to":"23444"} +{"$label":"DIRECTED","_key":"34143","_from":"23454","_to":"23449"} +{"$label":"ACTS_IN","name":"Maurice Levine","type":"Role","_key":"34141","_from":"23453","_to":"23449"} +{"$label":"ACTS_IN","name":"Alexander Burnham","type":"Role","_key":"34139","_from":"23452","_to":"23449"} +{"$label":"ACTS_IN","name":"Jincey Baker","type":"Role","_key":"34136","_from":"23451","_to":"23449"} +{"$label":"ACTS_IN","name":"Miss Dove","type":"Role","_key":"34134","_from":"23450","_to":"23449"} +{"$label":"ACTS_IN","name":"Georgia Rawlins","type":"Role","_key":"44539","_from":"23451","_to":"29653"} +{"$label":"ACTS_IN","name":"Margaret Fitch","type":"Role","_key":"34210","_from":"23451","_to":"23489"} +{"$label":"ACTS_IN","name":"Quartermaster","type":"Role","_key":"106220","_from":"23452","_to":"62557"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"106326","_from":"23453","_to":"62635"} +{"$label":"ACTS_IN","name":"Ens. Barney Harding","type":"Role","_key":"61457","_from":"23453","_to":"38765"} +{"$label":"DIRECTED","_key":"88127","_from":"23453","_to":"52299"} +{"$label":"DIRECTED","_key":"61314","_from":"23453","_to":"38704"} +{"$label":"DIRECTED","_key":"120196","_from":"23454","_to":"70587"} +{"$label":"DIRECTED","_key":"72002","_from":"23454","_to":"43540"} +{"$label":"ACTS_IN","name":"Agent","type":"Role","_key":"34154","_from":"23459","_to":"23455"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"34151","_from":"23458","_to":"23455"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"34150","_from":"23457","_to":"23455"} +{"$label":"DIRECTED","_key":"34144","_from":"23456","_to":"23455"} +{"$label":"DIRECTED","_key":"119190","_from":"23456","_to":"70038"} +{"$label":"DIRECTED","_key":"119178","_from":"23456","_to":"70032"} +{"$label":"DIRECTED","_key":"44611","_from":"23456","_to":"29691"} +{"$label":"DIRECTED","_key":"44579","_from":"23456","_to":"29676"} +{"$label":"DIRECTED","_key":"44074","_from":"23456","_to":"29386"} +{"$label":"DIRECTED","_key":"41234","_from":"23456","_to":"27738"} +{"$label":"ACTS_IN","name":"Mrs. Cassedy","type":"Role","_key":"70224","_from":"23458","_to":"42794"} +{"$label":"ACTS_IN","name":"Schnecke","type":"Role","_key":"45736","_from":"23459","_to":"30264"} +{"$label":"ACTS_IN","name":"Kl\u00e4ger","type":"Role","_key":"39794","_from":"23459","_to":"26876"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"34170","_from":"23468","_to":"23460"} +{"$label":"ACTS_IN","name":"Erfinder","type":"Role","_key":"34169","_from":"23467","_to":"23460"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"34167","_from":"23466","_to":"23460"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"34166","_from":"23465","_to":"23460"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"34165","_from":"23464","_to":"23460"} +{"$label":"ACTS_IN","name":"Geiger","type":"Role","_key":"34164","_from":"23463","_to":"23460"} +{"$label":"ACTS_IN","name":"Sandy Wagner","type":"Role","_key":"34161","_from":"23462","_to":"23460"} +{"$label":"DIRECTED","_key":"34157","_from":"23461","_to":"23460"} +{"$label":"ACTS_IN","name":"Gloria Revelle","type":"Role","_key":"70256","_from":"23462","_to":"42814"} +{"$label":"ACTS_IN","name":"Professor Heinzel","type":"Role","_key":"66216","_from":"23467","_to":"40962"} +{"$label":"ACTS_IN","name":"Troubadix (voice: German version)","type":"Role","_key":"53388","_from":"23467","_to":"34500"} +{"$label":"ACTS_IN","name":"Henk","type":"Role","_key":"49099","_from":"23467","_to":"32171"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41251","_from":"23467","_to":"27738"} +{"$label":"ACTS_IN","name":"Wirtin","type":"Role","_key":"34189","_from":"23483","_to":"23469"} +{"$label":"ACTS_IN","name":"Jockel","type":"Role","_key":"34188","_from":"23482","_to":"23469"} +{"$label":"ACTS_IN","name":"US Offizierin","type":"Role","_key":"34186","_from":"23481","_to":"23469"} +{"$label":"ACTS_IN","name":"Leutnant Bruchm\u00fcller","type":"Role","_key":"34185","_from":"23480","_to":"23469"} +{"$label":"ACTS_IN","name":"Gastwirt Walter","type":"Role","_key":"34184","_from":"23479","_to":"23469"} +{"$label":"ACTS_IN","name":"Schnufel","type":"Role","_key":"34183","_from":"23478","_to":"23469"} +{"$label":"ACTS_IN","name":"Abdoul","type":"Role","_key":"34182","_from":"23477","_to":"23469"} +{"$label":"ACTS_IN","name":"Anna Waschmitzius","type":"Role","_key":"34181","_from":"23476","_to":"23469"} +{"$label":"ACTS_IN","name":"Gottfried","type":"Role","_key":"34179","_from":"23475","_to":"23469"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"34177","_from":"23474","_to":"23469"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"34176","_from":"23473","_to":"23469"} +{"$label":"ACTS_IN","name":"Otto Brettschneider","type":"Role","_key":"34175","_from":"23472","_to":"23469"} +{"$label":"DIRECTED","_key":"34173","_from":"23471","_to":"23469"} +{"$label":"DIRECTED","_key":"34172","_from":"23470","_to":"23469"} +{"$label":"ACTS_IN","name":"Herr Berg","type":"Role","_key":"103028","_from":"23475","_to":"60605"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"46299","_from":"23476","_to":"30593"} +{"$label":"ACTS_IN","name":"Herr Wokalek","type":"Role","_key":"49215","_from":"23477","_to":"32242"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62188","_from":"23478","_to":"39161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43002","_from":"23478","_to":"28721"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42491","_from":"23478","_to":"28443"} +{"$label":"ACTS_IN","name":"Old Consigliere","type":"Role","_key":"34201","_from":"23488","_to":"23484"} +{"$label":"ACTS_IN","name":"Big Angie","type":"Role","_key":"34199","_from":"23487","_to":"23484"} +{"$label":"ACTS_IN","name":"Ghost Dog (Child)","type":"Role","_key":"34198","_from":"23486","_to":"23484"} +{"$label":"ACTS_IN","name":"Louise Vargo","type":"Role","_key":"34193","_from":"23485","_to":"23484"} +{"$label":"ACTS_IN","name":"Luis's Girl #1","type":"Role","_key":"58532","_from":"23485","_to":"36982"} +{"$label":"ACTS_IN","name":"Billingsly","type":"Role","_key":"34214","_from":"23493","_to":"23489"} +{"$label":"ACTS_IN","name":"Col. Fred Parkson","type":"Role","_key":"34213","_from":"23492","_to":"23489"} +{"$label":"ACTS_IN","name":"Sgt. Jim Norby","type":"Role","_key":"34211","_from":"23491","_to":"23489"} +{"$label":"ACTS_IN","name":"Gen. Sloan","type":"Role","_key":"34209","_from":"23490","_to":"23489"} +{"$label":"ACTS_IN","name":"Paul Madvig","type":"Role","_key":"111211","_from":"23490","_to":"65677"} +{"$label":"ACTS_IN","name":"(in \"The Glass Key\") (archive footage)","type":"Role","_key":"53894","_from":"23490","_to":"34691"} +{"$label":"ACTS_IN","name":"Steve Walker","type":"Role","_key":"108340","_from":"23491","_to":"64045"} +{"$label":"ACTS_IN","name":"Dean Arbagast","type":"Role","_key":"105985","_from":"23491","_to":"62398"} +{"$label":"ACTS_IN","name":"Teddy Talbot","type":"Role","_key":"105492","_from":"23491","_to":"62078"} +{"$label":"ACTS_IN","name":"Jim Douglas","type":"Role","_key":"98694","_from":"23491","_to":"58168"} +{"$label":"ACTS_IN","name":"Jim Douglas","type":"Role","_key":"98663","_from":"23491","_to":"58148"} +{"$label":"ACTS_IN","name":"Herman Varnick","type":"Role","_key":"72091","_from":"23491","_to":"43579"} +{"$label":"ACTS_IN","name":"Bill Cooles","type":"Role","_key":"43477","_from":"23491","_to":"29038"} +{"$label":"ACTS_IN","name":"Dr. Lew Worship","type":"Role","_key":"35361","_from":"23491","_to":"24074"} +{"$label":"ACTS_IN","name":"Khao","type":"Role","_key":"52576","_from":"23493","_to":"34170"} +{"$label":"ACTS_IN","name":"3rd Princess of Ababu","type":"Role","_key":"34226","_from":"23501","_to":"23494"} +{"$label":"ACTS_IN","name":"2nd Princess of Ababu","type":"Role","_key":"34225","_from":"23500","_to":"23494"} +{"$label":"ACTS_IN","name":"1st Princess of Ababu","type":"Role","_key":"34224","_from":"23499","_to":"23494"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"34223","_from":"23498","_to":"23494"} +{"$label":"ACTS_IN","name":"Caliph","type":"Role","_key":"34220","_from":"23497","_to":"23494"} +{"$label":"ACTS_IN","name":"Lalume","type":"Role","_key":"34219","_from":"23496","_to":"23494"} +{"$label":"ACTS_IN","name":"The Poet","type":"Role","_key":"34217","_from":"23495","_to":"23494"} +{"$label":"ACTS_IN","name":"Gaylord Ravenal","type":"Role","_key":"114100","_from":"23495","_to":"67199"} +{"$label":"ACTS_IN","name":"Adam Pontipee","type":"Role","_key":"109550","_from":"23495","_to":"64708"} +{"$label":"ACTS_IN","name":"Wild Bill Hickok","type":"Role","_key":"98561","_from":"23495","_to":"58081"} +{"$label":"ACTS_IN","name":"Madeline Bradville","type":"Role","_key":"113443","_from":"23496","_to":"66834"} +{"$label":"ACTS_IN","name":"Dr. Grusin","type":"Role","_key":"34237","_from":"23505","_to":"23502"} +{"$label":"ACTS_IN","name":"Pepe Carrero","type":"Role","_key":"34236","_from":"23504","_to":"23502"} +{"$label":"ACTS_IN","name":"Alan Lowenthal","type":"Role","_key":"34235","_from":"23503","_to":"23502"} +{"$label":"ACTS_IN","name":"Harry the Horse","type":"Role","_key":"34251","_from":"23510","_to":"23507"} +{"$label":"ACTS_IN","name":"Benny Southstreet","type":"Role","_key":"34250","_from":"23509","_to":"23507"} +{"$label":"ACTS_IN","name":"Miss Adelaide","type":"Role","_key":"34249","_from":"23508","_to":"23507"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"121754","_from":"23510","_to":"71524"} +{"$label":"ACTS_IN","name":"Phil Church","type":"Role","_key":"100968","_from":"23510","_to":"59504"} +{"$label":"ACTS_IN","name":"Informatikerin","type":"Role","_key":"34262","_from":"23515","_to":"23511"} +{"$label":"ACTS_IN","name":"Antiquar","type":"Role","_key":"34261","_from":"23514","_to":"23511"} +{"$label":"ACTS_IN","name":"Ombretta","type":"Role","_key":"34258","_from":"23513","_to":"23511"} +{"$label":"DIRECTED","_key":"34254","_from":"23512","_to":"23511"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"34270","_from":"23523","_to":"23516"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"34269","_from":"23522","_to":"23516"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"34268","_from":"23521","_to":"23516"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"34267","_from":"23520","_to":"23516"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"34266","_from":"23519","_to":"23516"} +{"$label":"DIRECTED","_key":"34265","_from":"23518","_to":"23516"} +{"$label":"DIRECTED","_key":"34264","_from":"23517","_to":"23516"} +{"$label":"ACTS_IN","name":"Eugen Doleschal","type":"Role","_key":"34280","_from":"23528","_to":"23524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"34279","_from":"23527","_to":"23524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"34277","_from":"23526","_to":"23524"} +{"$label":"DIRECTED","_key":"34273","_from":"23525","_to":"23524"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"90438","_from":"23527","_to":"53431"} +{"$label":"ACTS_IN","name":"Yudale \/ Hughie","type":"Role","_key":"64247","_from":"23527","_to":"40074"} +{"$label":"ACTS_IN","name":"Yudale \/ Hughie","type":"Role","_key":"64241","_from":"23527","_to":"40071"} +{"$label":"ACTS_IN","name":"Huey \/ Yudale","type":"Role","_key":"64235","_from":"23527","_to":"40068"} +{"$label":"ACTS_IN","name":"Yudale \/ Huey","type":"Role","_key":"64228","_from":"23527","_to":"40064"} +{"$label":"ACTS_IN","name":"Yudale \/ Hughie","type":"Role","_key":"64223","_from":"23527","_to":"40060"} +{"$label":"ACTS_IN","name":"Georgina","type":"Role","_key":"34299","_from":"23532","_to":"23529"} +{"$label":"ACTS_IN","name":"Nino Papatakis","type":"Role","_key":"34294","_from":"23531","_to":"23529"} +{"$label":"ACTS_IN","name":"Gis\u00e8le","type":"Role","_key":"34288","_from":"23530","_to":"23529"} +{"$label":"ACTS_IN","name":"Marge Duval","type":"Role","_key":"62811","_from":"23530","_to":"39474"} +{"$label":"ACTS_IN","name":"Caroline Harrington \"Tchoo-Tchoo\"","type":"Role","_key":"114907","_from":"23532","_to":"67678"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"89290","_from":"23532","_to":"52859"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"66866","_from":"23532","_to":"41293"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"48085","_from":"23532","_to":"31610"} +{"$label":"ACTS_IN","name":"Albert Carter","type":"Role","_key":"34330","_from":"23550","_to":"23533"} +{"$label":"ACTS_IN","name":"Golf Host","type":"Role","_key":"34329","_from":"23549","_to":"23533"} +{"$label":"ACTS_IN","name":"Troop","type":"Role","_key":"34327","_from":"23548","_to":"23533"} +{"$label":"ACTS_IN","name":"Jerry Kilburn","type":"Role","_key":"34326","_from":"23547","_to":"23533"} +{"$label":"ACTS_IN","name":"Freddie Hurst","type":"Role","_key":"34324","_from":"23546","_to":"23533"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"34323","_from":"23545","_to":"23533"} +{"$label":"ACTS_IN","name":"Shanks","type":"Role","_key":"34322","_from":"23544","_to":"23533"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"34321","_from":"23543","_to":"23533"} +{"$label":"ACTS_IN","name":"Tiptoes","type":"Role","_key":"34318","_from":"23542","_to":"23533"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"34316","_from":"23541","_to":"23533"} +{"$label":"ACTS_IN","name":"Kinky","type":"Role","_key":"34315","_from":"23540","_to":"23533"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"34314","_from":"23539","_to":"23533"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"34313","_from":"23538","_to":"23533"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"34311","_from":"23537","_to":"23533"} +{"$label":"ACTS_IN","name":"Paul the Boatman","type":"Role","_key":"34310","_from":"23536","_to":"23533"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"34307","_from":"23535","_to":"23533"} +{"$label":"ACTS_IN","name":"Gazza","type":"Role","_key":"34305","_from":"23534","_to":"23533"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"113361","_from":"23535","_to":"66778"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"62443","_from":"23535","_to":"39336"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"59584","_from":"23535","_to":"37614"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"36095","_from":"23535","_to":"24494"} +{"$label":"ACTS_IN","name":"Gypsy Father (Oxford)","type":"Role","_key":"99424","_from":"23537","_to":"58590"} +{"$label":"ACTS_IN","name":"Jason, Narcissus Guy","type":"Role","_key":"36682","_from":"23542","_to":"24861"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"66245","_from":"23544","_to":"40976"} +{"$label":"ACTS_IN","name":"Nitro","type":"Role","_key":"59095","_from":"23544","_to":"37302"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"34340","_from":"23557","_to":"23551"} +{"$label":"ACTS_IN","name":"amie de Carole","type":"Role","_key":"34339","_from":"23556","_to":"23551"} +{"$label":"ACTS_IN","name":"Carole","type":"Role","_key":"34338","_from":"23555","_to":"23551"} +{"$label":"ACTS_IN","name":"Writer","type":"Role","_key":"34337","_from":"23554","_to":"23551"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"34336","_from":"23553","_to":"23551"} +{"$label":"ACTS_IN","name":"Hayd\u00e9e","type":"Role","_key":"34335","_from":"23552","_to":"23551"} +{"$label":"ACTS_IN","name":"le passeur","type":"Role","_key":"34351","_from":"23561","_to":"23558"} +{"$label":"ACTS_IN","name":"Directeur de l'IGN","type":"Role","_key":"34347","_from":"23560","_to":"23558"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"34343","_from":"23559","_to":"23558"} +{"$label":"ACTS_IN","name":"Professor Ping","type":"Role","_key":"48046","_from":"23560","_to":"31592"} +{"$label":"ACTS_IN","name":"Ponce-Pilate","type":"Role","_key":"88721","_from":"23561","_to":"52569"} +{"$label":"ACTS_IN","name":"Schira","type":"Role","_key":"34363","_from":"23568","_to":"23562"} +{"$label":"ACTS_IN","name":"Jaras Professor","type":"Role","_key":"34362","_from":"23567","_to":"23562"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"34361","_from":"23566","_to":"23562"} +{"$label":"ACTS_IN","name":"Joni","type":"Role","_key":"34360","_from":"23565","_to":"23562"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"34358","_from":"23564","_to":"23562"} +{"$label":"ACTS_IN","name":"Jara","type":"Role","_key":"34356","_from":"23563","_to":"23562"} +{"$label":"ACTS_IN","name":"Madame Z","type":"Role","_key":"59548","_from":"23564","_to":"37584"} +{"$label":"ACTS_IN","name":"Eldad","type":"Role","_key":"43225","_from":"23567","_to":"28864"} +{"$label":"ACTS_IN","name":"Dr. Dieter Bartels","type":"Role","_key":"34377","_from":"23575","_to":"23569"} +{"$label":"ACTS_IN","name":"Katharina Scholle","type":"Role","_key":"34376","_from":"23574","_to":"23569"} +{"$label":"ACTS_IN","name":"Schwester Susanne","type":"Role","_key":"34374","_from":"23573","_to":"23569"} +{"$label":"ACTS_IN","name":"Dr. Schiffers","type":"Role","_key":"34373","_from":"23572","_to":"23569"} +{"$label":"ACTS_IN","name":"Anja Kogel","type":"Role","_key":"34368","_from":"23571","_to":"23569"} +{"$label":"DIRECTED","_key":"34365","_from":"23570","_to":"23569"} +{"$label":"ACTS_IN","name":"Wondrazil","type":"Role","_key":"66221","_from":"23570","_to":"40962"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"52420","_from":"23574","_to":"34106"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44776","_from":"23575","_to":"29778"} +{"$label":"ACTS_IN","name":"Alex Perlacher","type":"Role","_key":"41124","_from":"23575","_to":"27670"} +{"$label":"ACTS_IN","name":"Dr. Lenfant","type":"Role","_key":"34395","_from":"23580","_to":"23576"} +{"$label":"ACTS_IN","name":"Dr. Duval","type":"Role","_key":"34394","_from":"23579","_to":"23576"} +{"$label":"ACTS_IN","name":"Mme Blomart","type":"Role","_key":"34388","_from":"23578","_to":"23576"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"34387","_from":"23577","_to":"23576"} +{"$label":"ACTS_IN","name":"Linda Loman","type":"Role","_key":"90616","_from":"23578","_to":"53515"} +{"$label":"ACTS_IN","name":"Dr. Ruth Leavitt","type":"Role","_key":"63785","_from":"23578","_to":"39883"} +{"$label":"ACTS_IN","name":"Bernard Vauquier","type":"Role","_key":"89993","_from":"23579","_to":"53238"} +{"$label":"ACTS_IN","name":"le ma\u00eetre d'h\u00f4tel","type":"Role","_key":"34626","_from":"23580","_to":"23691"} +{"$label":"ACTS_IN","name":"infirmi\u00e8re","type":"Role","_key":"34419","_from":"23587","_to":"23581"} +{"$label":"ACTS_IN","name":"Gorik","type":"Role","_key":"34418","_from":"23586","_to":"23581"} +{"$label":"ACTS_IN","name":"inspecteur de police","type":"Role","_key":"34417","_from":"23585","_to":"23581"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"34415","_from":"23584","_to":"23581"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"34414","_from":"23583","_to":"23581"} +{"$label":"DIRECTED","_key":"34408","_from":"23582","_to":"23581"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"34431","_from":"23591","_to":"23588"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"34430","_from":"23590","_to":"23588"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"34425","_from":"23589","_to":"23588"} +{"$label":"DIRECTED","_key":"34443","_from":"23595","_to":"23592"} +{"$label":"ACTS_IN","name":"Geen","type":"Role","_key":"34441","_from":"23594","_to":"23592"} +{"$label":"ACTS_IN","name":"Katke","type":"Role","_key":"34440","_from":"23593","_to":"23592"} +{"$label":"ACTS_IN","name":"Commander-in-Chief - 'King George'","type":"Role","_key":"117457","_from":"23594","_to":"69075"} +{"$label":"ACTS_IN","name":"King","type":"Role","_key":"107860","_from":"23594","_to":"63696"} +{"$label":"ACTS_IN","name":"Ashe","type":"Role","_key":"95310","_from":"23594","_to":"56070"} +{"$label":"ACTS_IN","name":"Marley's Ghost","type":"Role","_key":"93330","_from":"23594","_to":"54981"} +{"$label":"DIRECTED","_key":"70755","_from":"23595","_to":"43030"} +{"$label":"ACTS_IN","name":"Elsa Grohmann","type":"Role","_key":"34454","_from":"23600","_to":"23596"} +{"$label":"ACTS_IN","name":"Ilona Bergen","type":"Role","_key":"34452","_from":"23599","_to":"23596"} +{"$label":"ACTS_IN","name":"Mike Raven","type":"Role","_key":"34447","_from":"23598","_to":"23596"} +{"$label":"ACTS_IN","name":"Hugh Lombard","type":"Role","_key":"34445","_from":"23597","_to":"23596"} +{"$label":"ACTS_IN","name":"Hank Walker","type":"Role","_key":"34474","_from":"23597","_to":"23608"} +{"$label":"ACTS_IN","name":"Billy Pratt","type":"Role","_key":"43895","_from":"23598","_to":"29302"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"34797","_from":"23598","_to":"23780"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"34663","_from":"23598","_to":"23722"} +{"$label":"ACTS_IN","name":"Charles Arthur 'Pretty Boy' Floyd","type":"Role","_key":"34482","_from":"23598","_to":"23613"} +{"$label":"ACTS_IN","name":"Maria Sabrehm","type":"Role","_key":"118835","_from":"23599","_to":"69854"} +{"$label":"ACTS_IN","name":"Das M\u00e4chen 'Juwel'","type":"Role","_key":"69547","_from":"23599","_to":"42470"} +{"$label":"ACTS_IN","name":"Paloma","type":"Role","_key":"54600","_from":"23599","_to":"34977"} +{"$label":"ACTS_IN","name":"Johanna Stegen alias Luscha","type":"Role","_key":"45981","_from":"23600","_to":"30392"} +{"$label":"ACTS_IN","name":"Mrs. Butler","type":"Role","_key":"38217","_from":"23600","_to":"25817"} +{"$label":"DIRECTED","_key":"34470","_from":"23607","_to":"23601"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"34466","_from":"23606","_to":"23601"} +{"$label":"ACTS_IN","name":"Caro","type":"Role","_key":"34465","_from":"23605","_to":"23601"} +{"$label":"ACTS_IN","name":"Magnus","type":"Role","_key":"34462","_from":"23604","_to":"23601"} +{"$label":"ACTS_IN","name":"Jonina","type":"Role","_key":"34461","_from":"23603","_to":"23601"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"34458","_from":"23602","_to":"23601"} +{"$label":"ACTS_IN","name":"K\u00e4the","type":"Role","_key":"91413","_from":"23602","_to":"53912"} +{"$label":"ACTS_IN","name":"Chiara","type":"Role","_key":"42919","_from":"23606","_to":"28680"} +{"$label":"DIRECTED","_key":"91418","_from":"23607","_to":"53912"} +{"$label":"ACTS_IN","name":"Manuel Perez","type":"Role","_key":"34479","_from":"23612","_to":"23608"} +{"$label":"ACTS_IN","name":"Chuck Austin","type":"Role","_key":"34478","_from":"23611","_to":"23608"} +{"$label":"ACTS_IN","name":"Carol Lambert","type":"Role","_key":"34476","_from":"23610","_to":"23608"} +{"$label":"DIRECTED","_key":"34471","_from":"23609","_to":"23608"} +{"$label":"ACTS_IN","name":"Becky McLintock","type":"Role","_key":"103779","_from":"23610","_to":"61040"} +{"$label":"ACTS_IN","name":"Nicole Harris","type":"Role","_key":"66377","_from":"23610","_to":"41053"} +{"$label":"ACTS_IN","name":"Gloria Worship","type":"Role","_key":"35363","_from":"23610","_to":"24074"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"34492","_from":"23624","_to":"23613"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"34491","_from":"23623","_to":"23613"} +{"$label":"ACTS_IN","name":"Beryl","type":"Role","_key":"34490","_from":"23622","_to":"23613"} +{"$label":"ACTS_IN","name":"Huddy","type":"Role","_key":"34489","_from":"23621","_to":"23613"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"34488","_from":"23620","_to":"23613"} +{"$label":"ACTS_IN","name":"Hossler","type":"Role","_key":"34487","_from":"23619","_to":"23613"} +{"$label":"ACTS_IN","name":"Ned Short","type":"Role","_key":"34486","_from":"23618","_to":"23613"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"34485","_from":"23617","_to":"23613"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"34484","_from":"23616","_to":"23613"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"34483","_from":"23615","_to":"23613"} +{"$label":"DIRECTED","_key":"34481","_from":"23614","_to":"23613"} +{"$label":"ACTS_IN","name":"Pam Meritt","type":"Role","_key":"116932","_from":"23615","_to":"68831"} +{"$label":"ACTS_IN","name":"Deke Sommers","type":"Role","_key":"118477","_from":"23617","_to":"69646"} +{"$label":"ACTS_IN","name":"Clint Crockett","type":"Role","_key":"115630","_from":"23617","_to":"68070"} +{"$label":"ACTS_IN","name":"Matt MacDonald","type":"Role","_key":"44559","_from":"23617","_to":"29659"} +{"$label":"ACTS_IN","name":"Birdie Jewel","type":"Role","_key":"66717","_from":"23622","_to":"41210"} +{"$label":"DIRECTED","_key":"34507","_from":"23627","_to":"23625"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"34504","_from":"23626","_to":"23625"} +{"$label":"DIRECTED","_key":"63917","_from":"23627","_to":"39928"} +{"$label":"DIRECTED","_key":"34518","_from":"23634","_to":"23628"} +{"$label":"ACTS_IN","name":"Dr. Hans Yokem Werner","type":"Role","_key":"34516","_from":"23633","_to":"23628"} +{"$label":"ACTS_IN","name":"Ethel Mae Rodgers","type":"Role","_key":"34515","_from":"23632","_to":"23628"} +{"$label":"ACTS_IN","name":"Elmo Rodgers","type":"Role","_key":"34514","_from":"23631","_to":"23628"} +{"$label":"ACTS_IN","name":"Vera Claythorne","type":"Role","_key":"34510","_from":"23630","_to":"23628"} +{"$label":"ACTS_IN","name":"Philip Lombard","type":"Role","_key":"34509","_from":"23629","_to":"23628"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"66853","_from":"23629","_to":"41286"} +{"$label":"ACTS_IN","name":"Len","type":"Role","_key":"90099","_from":"23631","_to":"53288"} +{"$label":"ACTS_IN","name":"Falkon","type":"Role","_key":"55134","_from":"23631","_to":"35194"} +{"$label":"ACTS_IN","name":"Anthony Marston","type":"Role","_key":"34528","_from":"23645","_to":"23635"} +{"$label":"ACTS_IN","name":"Mrs. Rogers","type":"Role","_key":"34527","_from":"23644","_to":"23635"} +{"$label":"ACTS_IN","name":"Mr. Rogers","type":"Role","_key":"34526","_from":"23643","_to":"23635"} +{"$label":"ACTS_IN","name":"General MacArthur","type":"Role","_key":"34525","_from":"23642","_to":"23635"} +{"$label":"ACTS_IN","name":"Dr. Armstrong","type":"Role","_key":"34524","_from":"23641","_to":"23635"} +{"$label":"ACTS_IN","name":"Mr. Blore","type":"Role","_key":"34523","_from":"23640","_to":"23635"} +{"$label":"ACTS_IN","name":"Emily Brent","type":"Role","_key":"34522","_from":"23639","_to":"23635"} +{"$label":"ACTS_IN","name":"Old Justice Wargrave","type":"Role","_key":"34521","_from":"23638","_to":"23635"} +{"$label":"ACTS_IN","name":"Vera Claythorne","type":"Role","_key":"34520","_from":"23637","_to":"23635"} +{"$label":"DIRECTED","_key":"34519","_from":"23636","_to":"23635"} +{"$label":"ACTS_IN","name":"Kommissar","type":"Role","_key":"41346","_from":"23638","_to":"27784"} +{"$label":"ACTS_IN","name":"Prinz","type":"Role","_key":"100512","_from":"23645","_to":"59272"} +{"$label":"ACTS_IN","name":"Fred Narracott","type":"Role","_key":"34541","_from":"23651","_to":"23646"} +{"$label":"ACTS_IN","name":"Ethel Rogers","type":"Role","_key":"34540","_from":"23650","_to":"23646"} +{"$label":"ACTS_IN","name":"Prince Nikita 'Nikki' Starloff","type":"Role","_key":"34537","_from":"23649","_to":"23646"} +{"$label":"ACTS_IN","name":"Vera Claythorne","type":"Role","_key":"34532","_from":"23648","_to":"23646"} +{"$label":"ACTS_IN","name":"Philip Lombard","type":"Role","_key":"34531","_from":"23647","_to":"23646"} +{"$label":"ACTS_IN","name":"Princess","type":"Role","_key":"88868","_from":"23648","_to":"52654"} +{"$label":"ACTS_IN","name":"Ethne Burroughs","type":"Role","_key":"64126","_from":"23648","_to":"40015"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"95226","_from":"23649","_to":"56023"} +{"$label":"DIRECTED","_key":"34550","_from":"23660","_to":"23652"} +{"$label":"ACTS_IN","name":"Ali Bey","type":"Role","_key":"34549","_from":"23659","_to":"23652"} +{"$label":"ACTS_IN","name":"Mahmut","type":"Role","_key":"34548","_from":"23658","_to":"23652"} +{"$label":"ACTS_IN","name":"\u00dcnal","type":"Role","_key":"34547","_from":"23657","_to":"23652"} +{"$label":"ACTS_IN","name":"Muhittin","type":"Role","_key":"34546","_from":"23656","_to":"23652"} +{"$label":"ACTS_IN","name":"Hacer","type":"Role","_key":"34545","_from":"23655","_to":"23652"} +{"$label":"ACTS_IN","name":"Seyh","type":"Role","_key":"34544","_from":"23654","_to":"23652"} +{"$label":"ACTS_IN","name":"Muharrem","type":"Role","_key":"34542","_from":"23653","_to":"23652"} +{"$label":"ACTS_IN","name":"Nana","type":"Role","_key":"34554","_from":"23664","_to":"23661"} +{"$label":"ACTS_IN","name":"Sashka","type":"Role","_key":"34553","_from":"23663","_to":"23661"} +{"$label":"DIRECTED","_key":"34551","_from":"23662","_to":"23661"} +{"$label":"ACTS_IN","name":"russian girl on train","type":"Role","_key":"34568","_from":"23667","_to":"23665"} +{"$label":"ACTS_IN","name":"Basil","type":"Role","_key":"34565","_from":"23666","_to":"23665"} +{"$label":"ACTS_IN","name":"Madame","type":"Role","_key":"34572","_from":"23671","_to":"23668"} +{"$label":"ACTS_IN","name":"Yilan","type":"Role","_key":"34571","_from":"23670","_to":"23668"} +{"$label":"DIRECTED","_key":"34569","_from":"23669","_to":"23668"} +{"$label":"DIRECTED","_key":"121494","_from":"23669","_to":"71369"} +{"$label":"DIRECTED","_key":"114185","_from":"23669","_to":"67261"} +{"$label":"DIRECTED","_key":"112087","_from":"23669","_to":"66181"} +{"$label":"DIRECTED","_key":"99369","_from":"23669","_to":"58556"} +{"$label":"DIRECTED","_key":"61241","_from":"23669","_to":"38677"} +{"$label":"DIRECTED","_key":"46388","_from":"23669","_to":"30646"} +{"$label":"DIRECTED","_key":"40159","_from":"23669","_to":"27113"} +{"$label":"ACTS_IN","name":"2nd Agent","type":"Role","_key":"34589","_from":"23679","_to":"23672"} +{"$label":"ACTS_IN","name":"Assassin","type":"Role","_key":"34587","_from":"23678","_to":"23672"} +{"$label":"ACTS_IN","name":"Security","type":"Role","_key":"34585","_from":"23677","_to":"23672"} +{"$label":"ACTS_IN","name":"Stanilaus","type":"Role","_key":"34584","_from":"23676","_to":"23672"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"34583","_from":"23675","_to":"23672"} +{"$label":"ACTS_IN","name":"Simmias","type":"Role","_key":"34581","_from":"23674","_to":"23672"} +{"$label":"DIRECTED","_key":"34574","_from":"23673","_to":"23672"} +{"$label":"DIRECTED","_key":"88682","_from":"23673","_to":"52552"} +{"$label":"ACTS_IN","name":"Captain of Ehrenfels","type":"Role","_key":"120804","_from":"23678","_to":"70946"} +{"$label":"ACTS_IN","name":"Kommandant - The Germans","type":"Role","_key":"112045","_from":"23678","_to":"66149"} +{"$label":"ACTS_IN","name":"German Checkpoint Guard","type":"Role","_key":"95318","_from":"23678","_to":"56070"} +{"$label":"ACTS_IN","name":"SS Hauptman Sessler","type":"Role","_key":"66672","_from":"23678","_to":"41194"} +{"$label":"ACTS_IN","name":"Lt. Dietrich","type":"Role","_key":"40489","_from":"23678","_to":"27264"} +{"$label":"ACTS_IN","name":"Hermann","type":"Role","_key":"34595","_from":"23683","_to":"23680"} +{"$label":"ACTS_IN","name":"Kira","type":"Role","_key":"34593","_from":"23682","_to":"23680"} +{"$label":"DIRECTED","_key":"34590","_from":"23681","_to":"23680"} +{"$label":"ACTS_IN","name":"1. Einsatsleiter","type":"Role","_key":"36765","_from":"23683","_to":"24915"} +{"$label":"ACTS_IN","name":"le boucher","type":"Role","_key":"34610","_from":"23690","_to":"23684"} +{"$label":"ACTS_IN","name":"le grand-p\u00e8re de Fran\u00e7oise","type":"Role","_key":"34609","_from":"23689","_to":"23684"} +{"$label":"ACTS_IN","name":"la grand-m\u00e8re de Fran\u00e7oise","type":"Role","_key":"34608","_from":"23688","_to":"23684"} +{"$label":"ACTS_IN","name":"la directrice de l'institut Saint-Marc","type":"Role","_key":"34605","_from":"23687","_to":"23684"} +{"$label":"ACTS_IN","name":"la tante","type":"Role","_key":"34602","_from":"23686","_to":"23684"} +{"$label":"DIRECTED","_key":"34596","_from":"23685","_to":"23684"} +{"$label":"ACTS_IN","name":"la grande-m\u00e8re","type":"Role","_key":"34635","_from":"23688","_to":"23697"} +{"$label":"ACTS_IN","name":"Alexandre Duteil","type":"Role","_key":"34622","_from":"23696","_to":"23691"} +{"$label":"ACTS_IN","name":"G\u00e9rard Filiol","type":"Role","_key":"34621","_from":"23695","_to":"23691"} +{"$label":"ACTS_IN","name":"Marthe","type":"Role","_key":"34620","_from":"23694","_to":"23691"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"34617","_from":"23693","_to":"23691"} +{"$label":"ACTS_IN","name":"Philippe Morasseau","type":"Role","_key":"34616","_from":"23692","_to":"23691"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Sinh (voice)","type":"Role","_key":"108595","_from":"23692","_to":"64171"} +{"$label":"ACTS_IN","name":"Porphyre","type":"Role","_key":"35563","_from":"23692","_to":"24173"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"35247","_from":"23694","_to":"24002"} +{"$label":"ACTS_IN","name":"Obelix","type":"Role","_key":"55227","_from":"23696","_to":"35231"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"34633","_from":"23702","_to":"23697"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"34631","_from":"23701","_to":"23697"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"34629","_from":"23700","_to":"23697"} +{"$label":"DIRECTED","_key":"34628","_from":"23699","_to":"23697"} +{"$label":"DIRECTED","_key":"34627","_from":"23698","_to":"23697"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"50751","_from":"23700","_to":"33125"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34647","_from":"23708","_to":"23703"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34645","_from":"23707","_to":"23703"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"34643","_from":"23706","_to":"23703"} +{"$label":"ACTS_IN","name":"Pierre Jasmin","type":"Role","_key":"34639","_from":"23705","_to":"23703"} +{"$label":"DIRECTED","_key":"34637","_from":"23704","_to":"23703"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"34654","_from":"23714","_to":"23709"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"34653","_from":"23713","_to":"23709"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"34651","_from":"23712","_to":"23709"} +{"$label":"ACTS_IN","name":"Henrik","type":"Role","_key":"34650","_from":"23711","_to":"23709"} +{"$label":"DIRECTED","_key":"34648","_from":"23710","_to":"23709"} +{"$label":"ACTS_IN","name":"Heinz B\u00f6sel","type":"Role","_key":"67997","_from":"23711","_to":"41782"} +{"$label":"ACTS_IN","name":"Simon Brenner","type":"Role","_key":"63503","_from":"23711","_to":"39761"} +{"$label":"ACTS_IN","name":"Simon Brenner","type":"Role","_key":"51981","_from":"23711","_to":"33897"} +{"$label":"ACTS_IN","name":"Inspektor Nowak","type":"Role","_key":"51896","_from":"23711","_to":"33851"} +{"$label":"ACTS_IN","name":"Silvia","type":"Role","_key":"91389","_from":"23713","_to":"53902"} +{"$label":"ACTS_IN","name":"Anja Schattschneider","type":"Role","_key":"59224","_from":"23713","_to":"37399"} +{"$label":"ACTS_IN","name":"Ilse Hoch","type":"Role","_key":"91782","_from":"23714","_to":"54145"} +{"$label":"ACTS_IN","name":"Renate Siedler","type":"Role","_key":"44376","_from":"23714","_to":"29567"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"34662","_from":"23721","_to":"23715"} +{"$label":"ACTS_IN","name":"Winkelmann","type":"Role","_key":"34661","_from":"23720","_to":"23715"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"34659","_from":"23719","_to":"23715"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"34658","_from":"23718","_to":"23715"} +{"$label":"ACTS_IN","name":"Andrej","type":"Role","_key":"34657","_from":"23717","_to":"23715"} +{"$label":"DIRECTED","_key":"34656","_from":"23716","_to":"23715"} +{"$label":"ACTS_IN","name":"Soldat","type":"Role","_key":"91301","_from":"23717","_to":"53845"} +{"$label":"ACTS_IN","name":"Luca","type":"Role","_key":"91297","_from":"23717","_to":"53842"} +{"$label":"ACTS_IN","name":"Ruslan","type":"Role","_key":"91294","_from":"23717","_to":"53838"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"91289","_from":"23717","_to":"53836"} +{"$label":"ACTS_IN","name":"Wenzel","type":"Role","_key":"91286","_from":"23717","_to":"53834"} +{"$label":"DIRECTED","_key":"34670","_from":"23727","_to":"23722"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"34669","_from":"23726","_to":"23722"} +{"$label":"ACTS_IN","name":"Clarence","type":"Role","_key":"34668","_from":"23725","_to":"23722"} +{"$label":"ACTS_IN","name":"Hanford","type":"Role","_key":"34666","_from":"23724","_to":"23722"} +{"$label":"ACTS_IN","name":"Laura's mother","type":"Role","_key":"34665","_from":"23723","_to":"23722"} +{"$label":"ACTS_IN","name":"Yvonne de Gaulle","type":"Role","_key":"34702","_from":"23738","_to":"23728"} +{"$label":"ACTS_IN","name":"Charles de Gaulle","type":"Role","_key":"34701","_from":"23737","_to":"23728"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34700","_from":"23736","_to":"23728"} +{"$label":"ACTS_IN","name":"Mallison","type":"Role","_key":"34692","_from":"23735","_to":"23728"} +{"$label":"ACTS_IN","name":"Wolenski","type":"Role","_key":"34691","_from":"23734","_to":"23728"} +{"$label":"ACTS_IN","name":"General Colbert","type":"Role","_key":"34689","_from":"23733","_to":"23728"} +{"$label":"ACTS_IN","name":"Casson","type":"Role","_key":"34687","_from":"23732","_to":"23728"} +{"$label":"ACTS_IN","name":"Inspecteur Thomas","type":"Role","_key":"34684","_from":"23731","_to":"23728"} +{"$label":"ACTS_IN","name":"St. Clair","type":"Role","_key":"34682","_from":"23730","_to":"23728"} +{"$label":"ACTS_IN","name":"Colonel Rodin","type":"Role","_key":"34676","_from":"23729","_to":"23728"} +{"$label":"ACTS_IN","name":"Julianus","type":"Role","_key":"111755","_from":"23729","_to":"65965"} +{"$label":"ACTS_IN","name":"Lansen","type":"Role","_key":"36114","_from":"23729","_to":"24508"} +{"$label":"ACTS_IN","name":"Basil of Baker Street","type":"Role","_key":"59146","_from":"23730","_to":"37343"} +{"$label":"ACTS_IN","name":"General Suslev","type":"Role","_key":"38614","_from":"23730","_to":"26084"} +{"$label":"ACTS_IN","name":"Commander Richards","type":"Role","_key":"117458","_from":"23733","_to":"69075"} +{"$label":"ACTS_IN","name":"George Martin","type":"Role","_key":"105428","_from":"23733","_to":"62026"} +{"$label":"ACTS_IN","name":"all animals (voice)","type":"Role","_key":"72350","_from":"23733","_to":"43694"} +{"$label":"ACTS_IN","name":"Japp","type":"Role","_key":"41293","_from":"23733","_to":"27765"} +{"$label":"ACTS_IN","name":"Col. Mathieu","type":"Role","_key":"111808","_from":"23734","_to":"65999"} +{"$label":"ACTS_IN","name":"Sullivan","type":"Role","_key":"54089","_from":"23734","_to":"34779"} +{"$label":"ACTS_IN","name":"Pontius Pilazus","type":"Role","_key":"49702","_from":"23734","_to":"32523"} +{"$label":"ACTS_IN","name":"Lockhart","type":"Role","_key":"110489","_from":"23735","_to":"65277"} +{"$label":"ACTS_IN","name":"Miss Bird","type":"Role","_key":"34713","_from":"23743","_to":"23739"} +{"$label":"ACTS_IN","name":"James Pelham","type":"Role","_key":"34710","_from":"23742","_to":"23739"} +{"$label":"ACTS_IN","name":"Michael Pelham","type":"Role","_key":"34709","_from":"23741","_to":"23739"} +{"$label":"ACTS_IN","name":"Eve Pelham","type":"Role","_key":"34705","_from":"23740","_to":"23739"} +{"$label":"ACTS_IN","name":"Beth Williamson","type":"Role","_key":"34717","_from":"23745","_to":"23744"} +{"$label":"ACTS_IN","name":"Veronica Porche","type":"Role","_key":"50062","_from":"23745","_to":"32759"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"34732","_from":"23749","_to":"23746"} +{"$label":"ACTS_IN","name":"Larry Goldberg","type":"Role","_key":"34731","_from":"23748","_to":"23746"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"34729","_from":"23747","_to":"23746"} +{"$label":"ACTS_IN","name":"America - 7 & 8 Years Old","type":"Role","_key":"115084","_from":"23749","_to":"67773"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"104893","_from":"23749","_to":"61711"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"88522","_from":"23749","_to":"52467"} +{"$label":"ACTS_IN","name":"Gordy Jr.","type":"Role","_key":"64068","_from":"23749","_to":"39986"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"49314","_from":"23749","_to":"32290"} +{"$label":"ACTS_IN","name":"Paulie Bleeker","type":"Role","_key":"46435","_from":"23749","_to":"30676"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"34737","_from":"23753","_to":"23750"} +{"$label":"ACTS_IN","name":"Imam","type":"Role","_key":"34736","_from":"23752","_to":"23750"} +{"$label":"DIRECTED","_key":"34733","_from":"23751","_to":"23750"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"34757","_from":"23764","_to":"23755"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"34756","_from":"23763","_to":"23755"} +{"$label":"ACTS_IN","name":"Gery","type":"Role","_key":"34755","_from":"23762","_to":"23755"} +{"$label":"ACTS_IN","name":"Fellini","type":"Role","_key":"34754","_from":"23761","_to":"23755"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"34753","_from":"23760","_to":"23755"} +{"$label":"ACTS_IN","name":"Mez Smith","type":"Role","_key":"34751","_from":"23759","_to":"23755"} +{"$label":"ACTS_IN","name":"Dr. Moore","type":"Role","_key":"34750","_from":"23758","_to":"23755"} +{"$label":"ACTS_IN","name":"Blood (Voice)","type":"Role","_key":"34749","_from":"23757","_to":"23755"} +{"$label":"ACTS_IN","name":"Quilla June Holmes","type":"Role","_key":"34747","_from":"23756","_to":"23755"} +{"$label":"ACTS_IN","name":"Tiger Nelson","type":"Role","_key":"111591","_from":"23760","_to":"65881"} +{"$label":"ACTS_IN","name":"Karpov","type":"Role","_key":"34770","_from":"23767","_to":"23765"} +{"$label":"DIRECTED","_key":"34759","_from":"23766","_to":"23765"} +{"$label":"DIRECTED","_key":"101835","_from":"23766","_to":"59937"} +{"$label":"ACTS_IN","name":"Altamirano","type":"Role","_key":"69732","_from":"23767","_to":"42563"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"40888","_from":"23767","_to":"27510"} +{"$label":"ACTS_IN","name":"William O'Daniel","type":"Role","_key":"37068","_from":"23767","_to":"25120"} +{"$label":"DIRECTED","_key":"34775","_from":"23770","_to":"23768"} +{"$label":"ACTS_IN","name":"Antoinetta Conchiglia","type":"Role","_key":"34772","_from":"23769","_to":"23768"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"47949","_from":"23769","_to":"31545"} +{"$label":"ACTS_IN","name":"Maggy","type":"Role","_key":"35225","_from":"23769","_to":"23992"} +{"$label":"ACTS_IN","name":"Pleasant Curtis","type":"Role","_key":"34786","_from":"23774","_to":"23771"} +{"$label":"ACTS_IN","name":"Daisy's Best Friend","type":"Role","_key":"34785","_from":"23773","_to":"23771"} +{"$label":"ACTS_IN","name":"Queenie","type":"Role","_key":"34784","_from":"23772","_to":"23771"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"107635","_from":"23772","_to":"63534"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"104449","_from":"23772","_to":"61433"} +{"$label":"ACTS_IN","name":"Nedra","type":"Role","_key":"104136","_from":"23772","_to":"61261"} +{"$label":"ACTS_IN","name":"Clarice Clark","type":"Role","_key":"101966","_from":"23772","_to":"60005"} +{"$label":"ACTS_IN","name":"Shug","type":"Role","_key":"63552","_from":"23772","_to":"39779"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"62001","_from":"23772","_to":"39027"} +{"$label":"ACTS_IN","name":"Camille Mercer","type":"Role","_key":"48974","_from":"23772","_to":"32108"} +{"$label":"ACTS_IN","name":"Vernell Watson","type":"Role","_key":"43968","_from":"23772","_to":"29330"} +{"$label":"ACTS_IN","name":"Apathetic","type":"Role","_key":"34795","_from":"23779","_to":"23775"} +{"$label":"ACTS_IN","name":"Arthur Frayn \/ Zardoz","type":"Role","_key":"34793","_from":"23778","_to":"23775"} +{"$label":"ACTS_IN","name":"Avalow","type":"Role","_key":"34792","_from":"23777","_to":"23775"} +{"$label":"ACTS_IN","name":"Friend","type":"Role","_key":"34791","_from":"23776","_to":"23775"} +{"$label":"ACTS_IN","name":"John Clarke","type":"Role","_key":"50521","_from":"23776","_to":"33000"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"51950","_from":"23778","_to":"33875"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"48114","_from":"23778","_to":"31620"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"34800","_from":"23784","_to":"23780"} +{"$label":"ACTS_IN","name":"Evin Calder","type":"Role","_key":"34799","_from":"23783","_to":"23780"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"34798","_from":"23782","_to":"23780"} +{"$label":"DIRECTED","_key":"34796","_from":"23781","_to":"23780"} +{"$label":"ACTS_IN","name":"Disclaimer Guy","type":"Role","_key":"92264","_from":"23783","_to":"54447"} +{"$label":"ACTS_IN","name":"Pistolero","type":"Role","_key":"93786","_from":"23784","_to":"55216"} +{"$label":"DIRECTED","_key":"93785","_from":"23784","_to":"55216"} +{"$label":"ACTS_IN","name":"Bobby Burns","type":"Role","_key":"34806","_from":"23786","_to":"23785"} +{"$label":"ACTS_IN","name":"Patty Molner","type":"Role","_key":"34815","_from":"23790","_to":"23787"} +{"$label":"ACTS_IN","name":"Joan Molner","type":"Role","_key":"34810","_from":"23789","_to":"23787"} +{"$label":"DIRECTED","_key":"34808","_from":"23788","_to":"23787"} +{"$label":"ACTS_IN","name":"Lily Langford","type":"Role","_key":"35432","_from":"23789","_to":"24107"} +{"$label":"ACTS_IN","name":"Nancy Terman","type":"Role","_key":"35365","_from":"23789","_to":"24074"} +{"$label":"ACTS_IN","name":"Carroll Rennard","type":"Role","_key":"35326","_from":"23789","_to":"24060"} +{"$label":"ACTS_IN","name":"Emily Biddle","type":"Role","_key":"35049","_from":"23789","_to":"23910"} +{"$label":"ACTS_IN","name":"Nina Wylie","type":"Role","_key":"35028","_from":"23789","_to":"23901"} +{"$label":"ACTS_IN","name":"Eve Harrison","type":"Role","_key":"34961","_from":"23789","_to":"23872"} +{"$label":"ACTS_IN","name":"Evelyn Pittman","type":"Role","_key":"34932","_from":"23789","_to":"23859"} +{"$label":"ACTS_IN","name":"Annette Claiborne","type":"Role","_key":"34923","_from":"23789","_to":"23856"} +{"$label":"ACTS_IN","name":"Ruth Manning","type":"Role","_key":"34906","_from":"23789","_to":"23848"} +{"$label":"ACTS_IN","name":"Julia Madigan","type":"Role","_key":"34898","_from":"23789","_to":"23845"} +{"$label":"ACTS_IN","name":"Anne de Villemont","type":"Role","_key":"34882","_from":"23789","_to":"23838"} +{"$label":"ACTS_IN","name":"Rachel Warren","type":"Role","_key":"34865","_from":"23789","_to":"23835"} +{"$label":"ACTS_IN","name":"Sarah Crandall","type":"Role","_key":"34862","_from":"23789","_to":"23833"} +{"$label":"DIRECTED","_key":"34859","_from":"23832","_to":"23791"} +{"$label":"DIRECTED","_key":"34858","_from":"23831","_to":"23791"} +{"$label":"DIRECTED","_key":"34857","_from":"23830","_to":"23791"} +{"$label":"ACTS_IN","name":"Diva","type":"Role","_key":"34856","_from":"23829","_to":"23791"} +{"$label":"ACTS_IN","name":"Grubber #4","type":"Role","_key":"34855","_from":"23828","_to":"23791"} +{"$label":"ACTS_IN","name":"Grubber #3","type":"Role","_key":"34854","_from":"23827","_to":"23791"} +{"$label":"ACTS_IN","name":"Grubber #2","type":"Role","_key":"34853","_from":"23826","_to":"23791"} +{"$label":"ACTS_IN","name":"Grubber #1","type":"Role","_key":"34852","_from":"23825","_to":"23791"} +{"$label":"ACTS_IN","name":"Miss Anita Mann","type":"Role","_key":"34851","_from":"23824","_to":"23791"} +{"$label":"ACTS_IN","name":"Beer Guy","type":"Role","_key":"34850","_from":"23823","_to":"23791"} +{"$label":"ACTS_IN","name":"Marlene Dichtrich","type":"Role","_key":"34849","_from":"23822","_to":"23791"} +{"$label":"ACTS_IN","name":"Boy Toy","type":"Role","_key":"34848","_from":"23821","_to":"23791"} +{"$label":"ACTS_IN","name":"Sugar Daddy","type":"Role","_key":"34847","_from":"23820","_to":"23791"} +{"$label":"ACTS_IN","name":"Drag Queen","type":"Role","_key":"34846","_from":"23819","_to":"23791"} +{"$label":"ACTS_IN","name":"Bitchy Girl #3","type":"Role","_key":"34845","_from":"23818","_to":"23791"} +{"$label":"ACTS_IN","name":"Bitchy Girl #2","type":"Role","_key":"34844","_from":"23817","_to":"23791"} +{"$label":"ACTS_IN","name":"Bitchy Girl #1","type":"Role","_key":"34843","_from":"23816","_to":"23791"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"34842","_from":"23815","_to":"23791"} +{"$label":"ACTS_IN","name":"Joe Plonsky, Jr","type":"Role","_key":"34841","_from":"23814","_to":"23791"} +{"$label":"ACTS_IN","name":"Wrestling Jock","type":"Role","_key":"34840","_from":"23813","_to":"23791"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"34839","_from":"23812","_to":"23791"} +{"$label":"ACTS_IN","name":"Dan McAllistair","type":"Role","_key":"34838","_from":"23811","_to":"23791"} +{"$label":"ACTS_IN","name":"Party Hunk","type":"Role","_key":"34837","_from":"23810","_to":"23791"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"34836","_from":"23809","_to":"23791"} +{"$label":"ACTS_IN","name":"High School Party Friend #1","type":"Role","_key":"34834","_from":"23808","_to":"23791"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"34833","_from":"23807","_to":"23791"} +{"$label":"ACTS_IN","name":"Irate Customer","type":"Role","_key":"34832","_from":"23806","_to":"23791"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"34831","_from":"23805","_to":"23791"} +{"$label":"ACTS_IN","name":"Ruby Rogers","type":"Role","_key":"34830","_from":"23804","_to":"23791"} +{"$label":"ACTS_IN","name":"Foodtown","type":"Role","_key":"34829","_from":"23803","_to":"23791"} +{"$label":"ACTS_IN","name":"Chuckie","type":"Role","_key":"34828","_from":"23802","_to":"23791"} +{"$label":"ACTS_IN","name":"Jonathon","type":"Role","_key":"34827","_from":"23801","_to":"23791"} +{"$label":"ACTS_IN","name":"Gregg","type":"Role","_key":"34826","_from":"23800","_to":"23791"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"34825","_from":"23799","_to":"23791"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"34824","_from":"23798","_to":"23791"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"34823","_from":"23797","_to":"23791"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"34822","_from":"23796","_to":"23791"} +{"$label":"ACTS_IN","name":"Bonnie Hunter","type":"Role","_key":"34821","_from":"23795","_to":"23791"} +{"$label":"ACTS_IN","name":"Rod","type":"Role","_key":"34820","_from":"23794","_to":"23791"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"34819","_from":"23793","_to":"23791"} +{"$label":"ACTS_IN","name":"Eric Hunter","type":"Role","_key":"34818","_from":"23792","_to":"23791"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"112398","_from":"23793","_to":"66359"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"109474","_from":"23793","_to":"64667"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"47375","_from":"23793","_to":"31196"} +{"$label":"ACTS_IN","name":"Bonnie Hunter","type":"Role","_key":"91583","_from":"23795","_to":"53984"} +{"$label":"DIRECTED","_key":"37901","_from":"23832","_to":"25667"} +{"$label":"DIRECTED","_key":"34860","_from":"23834","_to":"23833"} +{"$label":"DIRECTED","_key":"35026","_from":"23834","_to":"23901"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"34877","_from":"23837","_to":"23835"} +{"$label":"ACTS_IN","name":"Francis Elroy Duffy","type":"Role","_key":"34874","_from":"23836","_to":"23835"} +{"$label":"ACTS_IN","name":"Signora Orragi","type":"Role","_key":"34893","_from":"23844","_to":"23838"} +{"$label":"ACTS_IN","name":"Bourdon","type":"Role","_key":"34892","_from":"23843","_to":"23838"} +{"$label":"ACTS_IN","name":"Goonelle","type":"Role","_key":"34891","_from":"23842","_to":"23838"} +{"$label":"ACTS_IN","name":"Maguy","type":"Role","_key":"34890","_from":"23841","_to":"23838"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"34889","_from":"23840","_to":"23838"} +{"$label":"ACTS_IN","name":"Morillon","type":"Role","_key":"34885","_from":"23839","_to":"23838"} +{"$label":"ACTS_IN","name":"Signora Gianna","type":"Role","_key":"62814","_from":"23844","_to":"39474"} +{"$label":"ACTS_IN","name":"Barney Benesh","type":"Role","_key":"34902","_from":"23847","_to":"23845"} +{"$label":"ACTS_IN","name":"Tricia Bentley","type":"Role","_key":"34901","_from":"23846","_to":"23845"} +{"$label":"ACTS_IN","name":"Magnolia Dusty Clydesdale","type":"Role","_key":"116997","_from":"23846","_to":"68858"} +{"$label":"ACTS_IN","name":"Det. Andy Parker","type":"Role","_key":"35355","_from":"23847","_to":"24069"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34919","_from":"23855","_to":"23848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34918","_from":"23854","_to":"23848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34914","_from":"23853","_to":"23848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34913","_from":"23852","_to":"23848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34911","_from":"23851","_to":"23848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"34909","_from":"23850","_to":"23848"} +{"$label":"ACTS_IN","name":"Ed Stander","type":"Role","_key":"34907","_from":"23849","_to":"23848"} +{"$label":"ACTS_IN","name":"Dennis Barlow","type":"Role","_key":"108556","_from":"23849","_to":"64161"} +{"$label":"ACTS_IN","name":"Christine Marlowe","type":"Role","_key":"106421","_from":"23850","_to":"62696"} +{"$label":"ACTS_IN","name":"Peggy Bowden","type":"Role","_key":"69280","_from":"23851","_to":"42356"} +{"$label":"ACTS_IN","name":"Mrs. Vernon-Williams","type":"Role","_key":"56487","_from":"23851","_to":"35884"} +{"$label":"ACTS_IN","name":"Saundan","type":"Role","_key":"107314","_from":"23852","_to":"63286"} +{"$label":"ACTS_IN","name":"Bernard Crawford","type":"Role","_key":"72638","_from":"23852","_to":"43777"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"54900","_from":"23852","_to":"35106"} +{"$label":"ACTS_IN","name":"Evelyne","type":"Role","_key":"39873","_from":"23853","_to":"26934"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38743","_from":"23853","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38400","_from":"23853","_to":"25936"} +{"$label":"ACTS_IN","name":"Marcus Lycus","type":"Role","_key":"113876","_from":"23854","_to":"67081"} +{"$label":"ACTS_IN","name":"Otto Meyer","type":"Role","_key":"70797","_from":"23854","_to":"43041"} +{"$label":"ACTS_IN","name":"Mercier","type":"Role","_key":"34927","_from":"23858","_to":"23856"} +{"$label":"ACTS_IN","name":"Ezra Peavey","type":"Role","_key":"34926","_from":"23857","_to":"23856"} +{"$label":"ACTS_IN","name":"Rittenhouse","type":"Role","_key":"93940","_from":"23857","_to":"55317"} +{"$label":"ACTS_IN","name":"Sam Royce","type":"Role","_key":"68006","_from":"23858","_to":"41786"} +{"$label":"ACTS_IN","name":"Cmdr. Adama","type":"Role","_key":"55214","_from":"23858","_to":"35225"} +{"$label":"ACTS_IN","name":"Henrietta Cobb","type":"Role","_key":"34940","_from":"23863","_to":"23859"} +{"$label":"ACTS_IN","name":"Meli","type":"Role","_key":"34939","_from":"23862","_to":"23859"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"34938","_from":"23861","_to":"23859"} +{"$label":"DIRECTED","_key":"34929","_from":"23860","_to":"23859"} +{"$label":"DIRECTED","_key":"98693","_from":"23860","_to":"58168"} +{"$label":"DIRECTED","_key":"88189","_from":"23860","_to":"52321"} +{"$label":"ACTS_IN","name":"Hank Larson","type":"Role","_key":"59563","_from":"23861","_to":"37600"} +{"$label":"ACTS_IN","name":"Henry Burroughs","type":"Role","_key":"35328","_from":"23861","_to":"24060"} +{"$label":"ACTS_IN","name":"Sariman","type":"Role","_key":"34953","_from":"23870","_to":"23864"} +{"$label":"ACTS_IN","name":"Hin","type":"Role","_key":"34952","_from":"23869","_to":"23864"} +{"$label":"ACTS_IN","name":"Koku\u00f4","type":"Role","_key":"34951","_from":"23868","_to":"23864"} +{"$label":"ACTS_IN","name":"Kakashi no Kabu","type":"Role","_key":"34950","_from":"23867","_to":"23864"} +{"$label":"ACTS_IN","name":"Kosh\u00f4","type":"Role","_key":"34949","_from":"23866","_to":"23864"} +{"$label":"ACTS_IN","name":"Sofi","type":"Role","_key":"34944","_from":"23865","_to":"23864"} +{"$label":"ACTS_IN","name":"'I' as a boy","type":"Role","_key":"90004","_from":"23866","_to":"53243"} +{"$label":"ACTS_IN","name":"Batou","type":"Role","_key":"117875","_from":"23868","_to":"69295"} +{"$label":"ACTS_IN","name":"Batou","type":"Role","_key":"98481","_from":"23868","_to":"58034"} +{"$label":"ACTS_IN","name":"Bat\u014d (voice)","type":"Role","_key":"88254","_from":"23868","_to":"52353"} +{"$label":"ACTS_IN","name":"Thadeus (voice)","type":"Role","_key":"51509","_from":"23868","_to":"33580"} +{"$label":"ACTS_IN","name":"Win Hollingsworth","type":"Role","_key":"34971","_from":"23876","_to":"23872"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"34967","_from":"23875","_to":"23872"} +{"$label":"ACTS_IN","name":"Davenport","type":"Role","_key":"34966","_from":"23874","_to":"23872"} +{"$label":"DIRECTED","_key":"34960","_from":"23873","_to":"23872"} +{"$label":"ACTS_IN","name":"Father Hussman","type":"Role","_key":"117442","_from":"23874","_to":"69067"} +{"$label":"ACTS_IN","name":"Martha Ricks","type":"Role","_key":"121368","_from":"23875","_to":"71319"} +{"$label":"ACTS_IN","name":"Frank Marston","type":"Role","_key":"34975","_from":"23880","_to":"23877"} +{"$label":"ACTS_IN","name":"Glenn Riordan","type":"Role","_key":"34974","_from":"23879","_to":"23877"} +{"$label":"DIRECTED","_key":"34972","_from":"23878","_to":"23877"} +{"$label":"DIRECTED","_key":"117232","_from":"23878","_to":"68960"} +{"$label":"DIRECTED","_key":"115663","_from":"23878","_to":"68087"} +{"$label":"DIRECTED","_key":"115622","_from":"23878","_to":"68059"} +{"$label":"DIRECTED","_key":"113764","_from":"23878","_to":"67035"} +{"$label":"DIRECTED","_key":"111762","_from":"23878","_to":"65965"} +{"$label":"DIRECTED","_key":"110185","_from":"23878","_to":"65118"} +{"$label":"DIRECTED","_key":"109704","_from":"23878","_to":"64787"} +{"$label":"DIRECTED","_key":"101408","_from":"23878","_to":"59696"} +{"$label":"DIRECTED","_key":"100763","_from":"23878","_to":"59408"} +{"$label":"DIRECTED","_key":"71100","_from":"23878","_to":"43162"} +{"$label":"ACTS_IN","name":"Capt. Bradley","type":"Role","_key":"54598","_from":"23879","_to":"34977"} +{"$label":"ACTS_IN","name":"Tony Flore","type":"Role","_key":"38481","_from":"23879","_to":"25997"} +{"$label":"ACTS_IN","name":"Det. Michael Crane","type":"Role","_key":"109904","_from":"23880","_to":"64940"} +{"$label":"ACTS_IN","name":"Prof. Harold Hill","type":"Role","_key":"95803","_from":"23880","_to":"56349"} +{"$label":"ACTS_IN","name":"Carroll 'Toddy' Todd","type":"Role","_key":"90610","_from":"23880","_to":"53513"} +{"$label":"ACTS_IN","name":"Roger Morgan","type":"Role","_key":"72617","_from":"23880","_to":"43773"} +{"$label":"ACTS_IN","name":"Centauri","type":"Role","_key":"72537","_from":"23880","_to":"43750"} +{"$label":"ACTS_IN","name":"Ace Bonner","type":"Role","_key":"40505","_from":"23880","_to":"27276"} +{"$label":"ACTS_IN","name":"Big Ed Bookman","type":"Role","_key":"35379","_from":"23880","_to":"24080"} +{"$label":"ACTS_IN","name":"Milkman Ernie","type":"Role","_key":"34988","_from":"23887","_to":"23881"} +{"$label":"ACTS_IN","name":"Vito","type":"Role","_key":"34987","_from":"23886","_to":"23881"} +{"$label":"ACTS_IN","name":"Winston Burr","type":"Role","_key":"34986","_from":"23885","_to":"23881"} +{"$label":"ACTS_IN","name":"Mr. Akins","type":"Role","_key":"34985","_from":"23884","_to":"23881"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"34984","_from":"23883","_to":"23881"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"34982","_from":"23882","_to":"23881"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99239","_from":"23882","_to":"58481"} +{"$label":"ACTS_IN","name":"The Operator","type":"Role","_key":"71120","_from":"23882","_to":"43172"} +{"$label":"ACTS_IN","name":"Theodore Banner","type":"Role","_key":"65248","_from":"23882","_to":"40504"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41290","_from":"23882","_to":"27765"} +{"$label":"ACTS_IN","name":"Jonathan Forbes","type":"Role","_key":"35078","_from":"23882","_to":"23921"} +{"$label":"ACTS_IN","name":"Templeton","type":"Role","_key":"103461","_from":"23884","_to":"60852"} +{"$label":"ACTS_IN","name":"Pete Davis","type":"Role","_key":"120175","_from":"23887","_to":"70580"} +{"$label":"ACTS_IN","name":"Sam Podds","type":"Role","_key":"34998","_from":"23892","_to":"23888"} +{"$label":"ACTS_IN","name":"Charly Cole","type":"Role","_key":"34995","_from":"23891","_to":"23888"} +{"$label":"ACTS_IN","name":"Ted Curry","type":"Role","_key":"34993","_from":"23890","_to":"23888"} +{"$label":"DIRECTED","_key":"34989","_from":"23889","_to":"23888"} +{"$label":"ACTS_IN","name":"Shorty Polaski","type":"Role","_key":"112427","_from":"23889","_to":"66378"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"35553","_from":"23890","_to":"24170"} +{"$label":"DIRECTED","_key":"34999","_from":"23894","_to":"23893"} +{"$label":"DIRECTED","_key":"67354","_from":"23894","_to":"41510"} +{"$label":"DIRECTED","_key":"47083","_from":"23894","_to":"31043"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"35015","_from":"23899","_to":"23895"} +{"$label":"ACTS_IN","name":"Bakes","type":"Role","_key":"35013","_from":"23898","_to":"23895"} +{"$label":"ACTS_IN","name":"Zoom","type":"Role","_key":"35012","_from":"23897","_to":"23895"} +{"$label":"ACTS_IN","name":"Curly","type":"Role","_key":"35011","_from":"23896","_to":"23895"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"112401","_from":"23896","_to":"66359"} +{"$label":"ACTS_IN","name":"MCPO Neil 'Spaz' Callaghan","type":"Role","_key":"59291","_from":"23896","_to":"37449"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"97049","_from":"23898","_to":"57091"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"92066","_from":"23898","_to":"54312"} +{"$label":"ACTS_IN","name":"Mack","type":"Role","_key":"35034","_from":"23905","_to":"23901"} +{"$label":"ACTS_IN","name":"Judge Randolph","type":"Role","_key":"35033","_from":"23904","_to":"23901"} +{"$label":"ACTS_IN","name":"Theodore 'Ted' Carleton","type":"Role","_key":"35031","_from":"23903","_to":"23901"} +{"$label":"ACTS_IN","name":"Gwen Seward","type":"Role","_key":"35029","_from":"23902","_to":"23901"} +{"$label":"ACTS_IN","name":"Chairman Ashe","type":"Role","_key":"38556","_from":"23904","_to":"26048"} +{"$label":"DIRECTED","_key":"35036","_from":"23907","_to":"23906"} +{"$label":"DIRECTED","_key":"89930","_from":"23907","_to":"53209"} +{"$label":"ACTS_IN","name":"Sgt. Luther Liskell","type":"Role","_key":"35054","_from":"23912","_to":"23910"} +{"$label":"ACTS_IN","name":"Lt. 'Pru' Prudessing","type":"Role","_key":"35053","_from":"23911","_to":"23910"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"70471","_from":"23911","_to":"42901"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"55151","_from":"23911","_to":"35198"} +{"$label":"ACTS_IN","name":"Scruvy","type":"Role","_key":"35074","_from":"23920","_to":"23914"} +{"$label":"ACTS_IN","name":"Bogie Lowenstien","type":"Role","_key":"35073","_from":"23919","_to":"23914"} +{"$label":"ACTS_IN","name":"Mandella","type":"Role","_key":"35067","_from":"23918","_to":"23914"} +{"$label":"ACTS_IN","name":"Joey Donner","type":"Role","_key":"35066","_from":"23917","_to":"23914"} +{"$label":"ACTS_IN","name":"Bianca Stratford","type":"Role","_key":"35064","_from":"23916","_to":"23914"} +{"$label":"DIRECTED","_key":"35060","_from":"23915","_to":"23914"} +{"$label":"DIRECTED","_key":"105867","_from":"23915","_to":"62320"} +{"$label":"DIRECTED","_key":"104833","_from":"23915","_to":"61678"} +{"$label":"DIRECTED","_key":"70052","_from":"23915","_to":"42711"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"59746","_from":"23916","_to":"37723"} +{"$label":"ACTS_IN","name":"Zack Dell","type":"Role","_key":"113826","_from":"23917","_to":"67053"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"91226","_from":"23917","_to":"53795"} +{"$label":"ACTS_IN","name":"Michael Cassio","type":"Role","_key":"67654","_from":"23917","_to":"41627"} +{"$label":"ACTS_IN","name":"Alicia DeGasario","type":"Role","_key":"100215","_from":"23918","_to":"59107"} +{"$label":"ACTS_IN","name":"Maureen Cummings","type":"Role","_key":"64084","_from":"23918","_to":"39997"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"54890","_from":"23918","_to":"35100"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"35082","_from":"23922","_to":"23921"} +{"$label":"ACTS_IN","name":"Terry Nessip","type":"Role","_key":"35093","_from":"23926","_to":"23924"} +{"$label":"ACTS_IN","name":"Swoop","type":"Role","_key":"35091","_from":"23925","_to":"23924"} +{"$label":"ACTS_IN","name":"Cordell","type":"Role","_key":"50428","_from":"23926","_to":"32943"} +{"$label":"DIRECTED","_key":"35113","_from":"23943","_to":"23927"} +{"$label":"DIRECTED","_key":"35112","_from":"23942","_to":"23927"} +{"$label":"ACTS_IN","name":"Frau Aubert","type":"Role","_key":"35111","_from":"23941","_to":"23927"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"35110","_from":"23940","_to":"23927"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"35109","_from":"23939","_to":"23927"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"35108","_from":"23938","_to":"23927"} +{"$label":"ACTS_IN","name":"Hertha","type":"Role","_key":"35107","_from":"23937","_to":"23927"} +{"$label":"ACTS_IN","name":"Frau von Ehrenhardt","type":"Role","_key":"35106","_from":"23936","_to":"23927"} +{"$label":"ACTS_IN","name":"Jossy","type":"Role","_key":"35105","_from":"23935","_to":"23927"} +{"$label":"ACTS_IN","name":"Miss Evans","type":"Role","_key":"35104","_from":"23934","_to":"23927"} +{"$label":"ACTS_IN","name":"Schneiderin","type":"Role","_key":"35103","_from":"23933","_to":"23927"} +{"$label":"ACTS_IN","name":"Edelgard von Kleist","type":"Role","_key":"35101","_from":"23932","_to":"23927"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"35100","_from":"23931","_to":"23927"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein von Rackett","type":"Role","_key":"35099","_from":"23930","_to":"23927"} +{"$label":"ACTS_IN","name":"Ilse","type":"Role","_key":"35097","_from":"23929","_to":"23927"} +{"$label":"ACTS_IN","name":"Frau Oberin","type":"Role","_key":"35096","_from":"23928","_to":"23927"} +{"$label":"ACTS_IN","name":"Mutter Lindner","type":"Role","_key":"43138","_from":"23928","_to":"28801"} +{"$label":"ACTS_IN","name":"Lady Abigail Kingsley","type":"Role","_key":"38115","_from":"23930","_to":"25774"} +{"$label":"ACTS_IN","name":"Baron Eggersdorf","type":"Role","_key":"35122","_from":"23945","_to":"23944"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"35130","_from":"23950","_to":"23946"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"35129","_from":"23949","_to":"23946"} +{"$label":"ACTS_IN","name":"Hardy Greaves","type":"Role","_key":"35128","_from":"23948","_to":"23946"} +{"$label":"ACTS_IN","name":"Bobby Jones","type":"Role","_key":"35127","_from":"23947","_to":"23946"} +{"$label":"ACTS_IN","name":"Nick's Father","type":"Role","_key":"94591","_from":"23947","_to":"55732"} +{"$label":"ACTS_IN","name":"Thomas Gates","type":"Role","_key":"44499","_from":"23947","_to":"29641"} +{"$label":"ACTS_IN","name":"Bob Bosenbeck","type":"Role","_key":"108428","_from":"23949","_to":"64098"} +{"$label":"ACTS_IN","name":"Wade Richardson","type":"Role","_key":"58059","_from":"23949","_to":"36729"} +{"$label":"ACTS_IN","name":"Viktor Haas","type":"Role","_key":"35144","_from":"23954","_to":"23951"} +{"$label":"ACTS_IN","name":"Francis Ehames","type":"Role","_key":"35143","_from":"23953","_to":"23951"} +{"$label":"ACTS_IN","name":"Martin White","type":"Role","_key":"35142","_from":"23952","_to":"23951"} +{"$label":"ACTS_IN","name":"Bernardo","type":"Role","_key":"99628","_from":"23953","_to":"58736"} +{"$label":"ACTS_IN","name":"Sir Thomas Grey","type":"Role","_key":"65165","_from":"23953","_to":"40473"} +{"$label":"ACTS_IN","name":"Maxence","type":"Role","_key":"61884","_from":"23954","_to":"38949"} +{"$label":"DIRECTED","_key":"35145","_from":"23956","_to":"23955"} +{"$label":"ACTS_IN","name":"Chuy","type":"Role","_key":"35154","_from":"23958","_to":"23957"} +{"$label":"ACTS_IN","name":"Servante","type":"Role","_key":"35163","_from":"23965","_to":"23959"} +{"$label":"ACTS_IN","name":"Une fille au bar","type":"Role","_key":"35162","_from":"23964","_to":"23959"} +{"$label":"ACTS_IN","name":"Moto Driver","type":"Role","_key":"35161","_from":"23963","_to":"23959"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"35160","_from":"23962","_to":"23959"} +{"$label":"ACTS_IN","name":"Fils","type":"Role","_key":"35159","_from":"23961","_to":"23959"} +{"$label":"DIRECTED","_key":"35158","_from":"23960","_to":"23959"} +{"$label":"ACTS_IN","name":"Jean-Pierre Vaillant","type":"Role","_key":"64168","_from":"23963","_to":"40036"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"35633","_from":"23963","_to":"24219"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"35165","_from":"23963","_to":"23966"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"35172","_from":"23972","_to":"23966"} +{"$label":"ACTS_IN","name":"Patron du bar","type":"Role","_key":"35171","_from":"23971","_to":"23966"} +{"$label":"ACTS_IN","name":"Murielle","type":"Role","_key":"35168","_from":"23970","_to":"23966"} +{"$label":"ACTS_IN","name":"Suzanna","type":"Role","_key":"35167","_from":"23969","_to":"23966"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"35166","_from":"23968","_to":"23966"} +{"$label":"DIRECTED","_key":"35164","_from":"23967","_to":"23966"} +{"$label":"ACTS_IN","name":"Athenais de Montespan","type":"Role","_key":"45818","_from":"23968","_to":"30302"} +{"$label":"ACTS_IN","name":"Ulrike","type":"Role","_key":"39731","_from":"23970","_to":"26850"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"35185","_from":"23979","_to":"23973"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"35182","_from":"23978","_to":"23973"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"35181","_from":"23977","_to":"23973"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"35178","_from":"23976","_to":"23973"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"35176","_from":"23975","_to":"23973"} +{"$label":"DIRECTED","_key":"35173","_from":"23974","_to":"23973"} +{"$label":"DIRECTED","_key":"45323","_from":"23974","_to":"30057"} +{"$label":"ACTS_IN","name":"Scarlett O'Donnell (Adult)","type":"Role","_key":"110783","_from":"23975","_to":"65438"} +{"$label":"ACTS_IN","name":"Elaine Warner","type":"Role","_key":"91428","_from":"23975","_to":"53926"} +{"$label":"ACTS_IN","name":"Ursula Stanhope","type":"Role","_key":"64453","_from":"23975","_to":"40161"} +{"$label":"ACTS_IN","name":"Robin Harris","type":"Role","_key":"57671","_from":"23975","_to":"36512"} +{"$label":"ACTS_IN","name":"Corinne Maloney","type":"Role","_key":"52162","_from":"23975","_to":"33995"} +{"$label":"ACTS_IN","name":"\"Carreys Frau\"","type":"Role","_key":"51614","_from":"23975","_to":"33675"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"49905","_from":"23975","_to":"32673"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"45321","_from":"23975","_to":"30057"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"120967","_from":"23976","_to":"71049"} +{"$label":"ACTS_IN","name":"Sydney Fife","type":"Role","_key":"109425","_from":"23976","_to":"64647"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"100801","_from":"23976","_to":"59419"} +{"$label":"ACTS_IN","name":"Peter Bretter","type":"Role","_key":"57492","_from":"23976","_to":"36436"} +{"$label":"ACTS_IN","name":"Leon (Paramedic #1)","type":"Role","_key":"52837","_from":"23976","_to":"34252"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"109631","_from":"23977","_to":"64750"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"101684","_from":"23977","_to":"59845"} +{"$label":"ACTS_IN","name":"James Masselin","type":"Role","_key":"49344","_from":"23977","_to":"32290"} +{"$label":"ACTS_IN","name":"Paulette","type":"Role","_key":"109619","_from":"23979","_to":"64750"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"93660","_from":"23979","_to":"55135"} +{"$label":"ACTS_IN","name":"Surgeon","type":"Role","_key":"91609","_from":"23979","_to":"54001"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"90335","_from":"23979","_to":"53393"} +{"$label":"ACTS_IN","name":"Ruffnut","type":"Role","_key":"61577","_from":"23979","_to":"38816"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"60246","_from":"23979","_to":"38004"} +{"$label":"ACTS_IN","name":"Yoga Instructor","type":"Role","_key":"57501","_from":"23979","_to":"36436"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"44096","_from":"23979","_to":"29399"} +{"$label":"ACTS_IN","name":"Cap. Burke","type":"Role","_key":"35192","_from":"23982","_to":"23980"} +{"$label":"ACTS_IN","name":"Cale","type":"Role","_key":"35191","_from":"23981","_to":"23980"} +{"$label":"ACTS_IN","name":"Mark Andrews","type":"Role","_key":"93989","_from":"23981","_to":"55349"} +{"$label":"ACTS_IN","name":"Crispus Allen","type":"Role","_key":"97185","_from":"23982","_to":"57172"} +{"$label":"ACTS_IN","name":"Christie","type":"Role","_key":"48135","_from":"23982","_to":"31632"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"45888","_from":"23982","_to":"30345"} +{"$label":"ACTS_IN","name":"Anna Riley","type":"Role","_key":"35205","_from":"23985","_to":"23984"} +{"$label":"ACTS_IN","name":"the Angel","type":"Role","_key":"102868","_from":"23985","_to":"60510"} +{"$label":"ACTS_IN","name":"Shari","type":"Role","_key":"69478","_from":"23985","_to":"42449"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"65209","_from":"23985","_to":"40495"} +{"$label":"ACTS_IN","name":"Sipho","type":"Role","_key":"35216","_from":"23990","_to":"23986"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"35214","_from":"23989","_to":"23986"} +{"$label":"ACTS_IN","name":"Christo Nichol","type":"Role","_key":"35213","_from":"23988","_to":"23986"} +{"$label":"DIRECTED","_key":"35210","_from":"23987","_to":"23986"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"35229","_from":"23997","_to":"23992"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"35228","_from":"23996","_to":"23992"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"35227","_from":"23995","_to":"23992"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"35226","_from":"23994","_to":"23992"} +{"$label":"DIRECTED","_key":"35224","_from":"23993","_to":"23992"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"35539","_from":"23995","_to":"24156"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"35239","_from":"24001","_to":"23998"} +{"$label":"ACTS_IN","name":"Juhl","type":"Role","_key":"35238","_from":"24000","_to":"23998"} +{"$label":"ACTS_IN","name":"Villumsen","type":"Role","_key":"35235","_from":"23999","_to":"23998"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"35244","_from":"24003","_to":"24002"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"105529","_from":"24003","_to":"62092"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"35249","_from":"24005","_to":"24004"} +{"$label":"ACTS_IN","name":"Fred Sterling","type":"Role","_key":"105239","_from":"24005","_to":"61936"} +{"$label":"ACTS_IN","name":"Le dandy","type":"Role","_key":"100099","_from":"24005","_to":"59039"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"48608","_from":"24005","_to":"31880"} +{"$label":"ACTS_IN","name":"Henrietta Moreas","type":"Role","_key":"35262","_from":"24010","_to":"24006"} +{"$label":"ACTS_IN","name":"Daniel Farson","type":"Role","_key":"35260","_from":"24009","_to":"24006"} +{"$label":"ACTS_IN","name":"Isabel Rawsthorne","type":"Role","_key":"35259","_from":"24008","_to":"24006"} +{"$label":"DIRECTED","_key":"35255","_from":"24007","_to":"24006"} +{"$label":"DIRECTED","_key":"98337","_from":"24007","_to":"57914"} +{"$label":"DIRECTED","_key":"55417","_from":"24007","_to":"35328"} +{"$label":"ACTS_IN","name":"Cynthia Cauffield","type":"Role","_key":"119112","_from":"24008","_to":"70011"} +{"$label":"ACTS_IN","name":"Customs Officer","type":"Role","_key":"103816","_from":"24009","_to":"61055"} +{"$label":"ACTS_IN","name":"Wilkes","type":"Role","_key":"50271","_from":"24009","_to":"32841"} +{"$label":"ACTS_IN","name":"Tante Elide","type":"Role","_key":"35268","_from":"24017","_to":"24011"} +{"$label":"ACTS_IN","name":"Janvier","type":"Role","_key":"35267","_from":"24016","_to":"24011"} +{"$label":"ACTS_IN","name":"Sorel","type":"Role","_key":"35266","_from":"24015","_to":"24011"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"35265","_from":"24014","_to":"24011"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"35264","_from":"24013","_to":"24011"} +{"$label":"DIRECTED","_key":"35263","_from":"24012","_to":"24011"} +{"$label":"DIRECTED","_key":"108967","_from":"24012","_to":"64395"} +{"$label":"DIRECTED","_key":"35280","_from":"24027","_to":"24018"} +{"$label":"ACTS_IN","name":"Kuga","type":"Role","_key":"35279","_from":"24028","_to":"24018"} +{"$label":"ACTS_IN","name":"Jin-nai","type":"Role","_key":"35278","_from":"24027","_to":"24018"} +{"$label":"ACTS_IN","name":"Kakimoto Nobue","type":"Role","_key":"35277","_from":"24026","_to":"24018"} +{"$label":"ACTS_IN","name":"Himuro Kei","type":"Role","_key":"35275","_from":"24025","_to":"24018"} +{"$label":"ACTS_IN","name":"Inui Sei-jiroh","type":"Role","_key":"35274","_from":"24024","_to":"24018"} +{"$label":"ACTS_IN","name":"Shima Tora-taroh","type":"Role","_key":"35273","_from":"24023","_to":"24018"} +{"$label":"ACTS_IN","name":"Osanai Morio","type":"Role","_key":"35272","_from":"24022","_to":"24018"} +{"$label":"ACTS_IN","name":"Tokita Kohsaku","type":"Role","_key":"35271","_from":"24021","_to":"24018"} +{"$label":"ACTS_IN","name":"Kogawa Toshimi","type":"Role","_key":"35270","_from":"24020","_to":"24018"} +{"$label":"ACTS_IN","name":"Paprika \/ Atsuko","type":"Role","_key":"35269","_from":"24019","_to":"24018"} +{"$label":"ACTS_IN","name":"Rei Ayanami","type":"Role","_key":"116381","_from":"24019","_to":"68510"} +{"$label":"ACTS_IN","name":"Rei Ayanami","type":"Role","_key":"103311","_from":"24019","_to":"60776"} +{"$label":"ACTS_IN","name":"Faye Valentine","type":"Role","_key":"69007","_from":"24019","_to":"42240"} +{"$label":"ACTS_IN","name":"Amuro Ray","type":"Role","_key":"107605","_from":"24021","_to":"63519"} +{"$label":"ACTS_IN","name":"Togusa","type":"Role","_key":"117876","_from":"24022","_to":"69295"} +{"$label":"ACTS_IN","name":"Jubei Kibagami","type":"Role","_key":"99395","_from":"24022","_to":"58585"} +{"$label":"ACTS_IN","name":"Togusa","type":"Role","_key":"98482","_from":"24022","_to":"58034"} +{"$label":"ACTS_IN","name":"Brialeos Hecatombcales","type":"Role","_key":"97939","_from":"24022","_to":"57677"} +{"$label":"ACTS_IN","name":"Togusa (voice)","type":"Role","_key":"88256","_from":"24022","_to":"52353"} +{"$label":"ACTS_IN","name":"Spike Spiegel","type":"Role","_key":"69003","_from":"24022","_to":"42240"} +{"$label":"ACTS_IN","name":"Togusa","type":"Role","_key":"53132","_from":"24022","_to":"34375"} +{"$label":"ACTS_IN","name":"Gin","type":"Role","_key":"94301","_from":"24024","_to":"55533"} +{"$label":"ACTS_IN","name":"Sunohara Youhei","type":"Role","_key":"109379","_from":"24025","_to":"64618"} +{"$label":"DIRECTED","_key":"94298","_from":"24027","_to":"55533"} +{"$label":"DIRECTED","_key":"63671","_from":"24027","_to":"39824"} +{"$label":"ACTS_IN","name":"Digit","type":"Role","_key":"35291","_from":"24037","_to":"24029"} +{"$label":"ACTS_IN","name":"Honest John","type":"Role","_key":"35289","_from":"24036","_to":"24029"} +{"$label":"ACTS_IN","name":"Tony Toponi","type":"Role","_key":"35288","_from":"24035","_to":"24029"} +{"$label":"ACTS_IN","name":"Warren T. Rat","type":"Role","_key":"35287","_from":"24034","_to":"24029"} +{"$label":"ACTS_IN","name":"Tanya Mousekewitz","type":"Role","_key":"35286","_from":"24033","_to":"24029"} +{"$label":"ACTS_IN","name":"Mama Mousekewitz","type":"Role","_key":"35285","_from":"24032","_to":"24029"} +{"$label":"ACTS_IN","name":"Fievel Mousekewitz","type":"Role","_key":"35282","_from":"24031","_to":"24029"} +{"$label":"DIRECTED","_key":"35281","_from":"24030","_to":"24029"} +{"$label":"DIRECTED","_key":"120514","_from":"24030","_to":"70787"} +{"$label":"DIRECTED","_key":"88281","_from":"24030","_to":"52365"} +{"$label":"DIRECTED","_key":"71668","_from":"24030","_to":"43389"} +{"$label":"DIRECTED","_key":"70183","_from":"24030","_to":"42776"} +{"$label":"DIRECTED","_key":"53913","_from":"24030","_to":"34698"} +{"$label":"DIRECTED","_key":"46690","_from":"24030","_to":"30828"} +{"$label":"ACTS_IN","name":"Fievel Mousekewitz","type":"Role","_key":"62904","_from":"24031","_to":"39516"} +{"$label":"ACTS_IN","name":"Mama Mousekewitz","type":"Role","_key":"62906","_from":"24032","_to":"39516"} +{"$label":"ACTS_IN","name":"News Anchor","type":"Role","_key":"97197","_from":"24035","_to":"57172"} +{"$label":"ACTS_IN","name":"Petrie","type":"Role","_key":"88285","_from":"24037","_to":"52365"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"35307","_from":"24051","_to":"24038"} +{"$label":"ACTS_IN","name":"Frau Buchner","type":"Role","_key":"35304","_from":"24050","_to":"24038"} +{"$label":"ACTS_IN","name":"Herr Buchner","type":"Role","_key":"35303","_from":"24049","_to":"24038"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"35302","_from":"24048","_to":"24038"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"35301","_from":"24047","_to":"24038"} +{"$label":"ACTS_IN","name":"David Ionesco","type":"Role","_key":"35300","_from":"24046","_to":"24038"} +{"$label":"ACTS_IN","name":"Trauernde","type":"Role","_key":"35299","_from":"24045","_to":"24038"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"35298","_from":"24044","_to":"24038"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"35297","_from":"24043","_to":"24038"} +{"$label":"ACTS_IN","name":"Frieder","type":"Role","_key":"35296","_from":"24042","_to":"24038"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"35295","_from":"24041","_to":"24038"} +{"$label":"DIRECTED","_key":"35294","_from":"24040","_to":"24038"} +{"$label":"DIRECTED","_key":"35293","_from":"24039","_to":"24038"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"39563","_from":"24043","_to":"26731"} +{"$label":"DIRECTED","_key":"48360","_from":"24048","_to":"31748"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"35311","_from":"24056","_to":"24052"} +{"$label":"ACTS_IN","name":"Penny Rimbaud","type":"Role","_key":"35310","_from":"24055","_to":"24052"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"35309","_from":"24054","_to":"24052"} +{"$label":"DIRECTED","_key":"35308","_from":"24053","_to":"24052"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"35319","_from":"24059","_to":"24057"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"35317","_from":"24058","_to":"24057"} +{"$label":"ACTS_IN","name":"Jack Dancing","type":"Role","_key":"111924","_from":"24059","_to":"66071"} +{"$label":"ACTS_IN","name":"Det. Craig Barnes","type":"Role","_key":"107189","_from":"24059","_to":"63224"} +{"$label":"ACTS_IN","name":"Marlo","type":"Role","_key":"100888","_from":"24059","_to":"59480"} +{"$label":"ACTS_IN","name":"Julian Ramose","type":"Role","_key":"97702","_from":"24059","_to":"57527"} +{"$label":"ACTS_IN","name":"Anthony Chapel","type":"Role","_key":"96091","_from":"24059","_to":"56483"} +{"$label":"ACTS_IN","name":"Tanner","type":"Role","_key":"54675","_from":"24059","_to":"35009"} +{"$label":"ACTS_IN","name":"Heywood","type":"Role","_key":"48940","_from":"24059","_to":"32087"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"35331","_from":"24062","_to":"24060"} +{"$label":"DIRECTED","_key":"35324","_from":"24061","_to":"24060"} +{"$label":"DIRECTED","_key":"115626","_from":"24061","_to":"68070"} +{"$label":"ACTS_IN","name":"Abigail","type":"Role","_key":"117126","_from":"24062","_to":"68912"} +{"$label":"ACTS_IN","name":"Grace Pander","type":"Role","_key":"93705","_from":"24062","_to":"55160"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"35333","_from":"24064","_to":"24063"} +{"$label":"ACTS_IN","name":"Rasmeusen","type":"Role","_key":"35346","_from":"24068","_to":"24065"} +{"$label":"ACTS_IN","name":"Nate Scarboro","type":"Role","_key":"35345","_from":"24067","_to":"24065"} +{"$label":"ACTS_IN","name":"Miss Toot","type":"Role","_key":"35344","_from":"24066","_to":"24065"} +{"$label":"ACTS_IN","name":"Marie D'Agoult","type":"Role","_key":"114573","_from":"24066","_to":"67493"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"112274","_from":"24066","_to":"66296"} +{"$label":"ACTS_IN","name":"Circe","type":"Role","_key":"111710","_from":"24066","_to":"65950"} +{"$label":"ACTS_IN","name":"Lily St. Regis","type":"Role","_key":"105743","_from":"24066","_to":"62249"} +{"$label":"ACTS_IN","name":"Angelique","type":"Role","_key":"93888","_from":"24066","_to":"55282"} +{"$label":"ACTS_IN","name":"Sophie (voice)","type":"Role","_key":"53907","_from":"24066","_to":"34698"} +{"$label":"ACTS_IN","name":"Muse","type":"Role","_key":"48499","_from":"24066","_to":"31835"} +{"$label":"ACTS_IN","name":"Marie Kimble Johnson","type":"Role","_key":"43553","_from":"24066","_to":"29093"} +{"$label":"ACTS_IN","name":"Cleveland Brown","type":"Role","_key":"99040","_from":"24068","_to":"58342"} +{"$label":"ACTS_IN","name":"Junior Justice","type":"Role","_key":"67238","_from":"24068","_to":"41458"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"35584","_from":"24068","_to":"24184"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"35359","_from":"24073","_to":"24069"} +{"$label":"ACTS_IN","name":"Det. Hal Willis","type":"Role","_key":"35358","_from":"24072","_to":"24069"} +{"$label":"ACTS_IN","name":"Lt. Byrnes","type":"Role","_key":"35356","_from":"24071","_to":"24069"} +{"$label":"DIRECTED","_key":"35348","_from":"24070","_to":"24069"} +{"$label":"ACTS_IN","name":"Drunken Prankster at Baby Shower (uncredited)","type":"Role","_key":"35373","_from":"24079","_to":"24074"} +{"$label":"ACTS_IN","name":"Dr. Pete Clarke","type":"Role","_key":"35371","_from":"24078","_to":"24074"} +{"$label":"ACTS_IN","name":"Beep","type":"Role","_key":"35369","_from":"24077","_to":"24074"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"35368","_from":"24076","_to":"24074"} +{"$label":"ACTS_IN","name":"Nurse Didi Loomis","type":"Role","_key":"35367","_from":"24075","_to":"24074"} +{"$label":"ACTS_IN","name":"Friedrich Bismarck","type":"Role","_key":"35380","_from":"24082","_to":"24080"} +{"$label":"DIRECTED","_key":"35375","_from":"24081","_to":"24080"} +{"$label":"DIRECTED","_key":"118896","_from":"24081","_to":"69879"} +{"$label":"DIRECTED","_key":"101194","_from":"24081","_to":"59606"} +{"$label":"DIRECTED","_key":"61162","_from":"24081","_to":"38653"} +{"$label":"DIRECTED","_key":"56266","_from":"24081","_to":"35740"} +{"$label":"DIRECTED","_key":"47702","_from":"24081","_to":"31415"} +{"$label":"ACTS_IN","name":"Bradford Compton","type":"Role","_key":"68915","_from":"24082","_to":"42196"} +{"$label":"ACTS_IN","name":"Alexis Montaigne","type":"Role","_key":"35388","_from":"24085","_to":"24083"} +{"$label":"DIRECTED","_key":"35386","_from":"24084","_to":"24083"} +{"$label":"DIRECTED","_key":"114767","_from":"24084","_to":"67603"} +{"$label":"DIRECTED","_key":"40453","_from":"24084","_to":"27259"} +{"$label":"ACTS_IN","name":"Elizabeth Pearce","type":"Role","_key":"116463","_from":"24085","_to":"68550"} +{"$label":"ACTS_IN","name":"Liz LaBreche","type":"Role","_key":"114845","_from":"24085","_to":"67649"} +{"$label":"ACTS_IN","name":"Myra Bruhl","type":"Role","_key":"113274","_from":"24085","_to":"66733"} +{"$label":"ACTS_IN","name":"Annette Bennett","type":"Role","_key":"97965","_from":"24085","_to":"57685"} +{"$label":"ACTS_IN","name":"Julia Farnsworth","type":"Role","_key":"88577","_from":"24085","_to":"52493"} +{"$label":"ACTS_IN","name":"Anna Carbone","type":"Role","_key":"64700","_from":"24085","_to":"40292"} +{"$label":"ACTS_IN","name":"Simone Legree","type":"Role","_key":"41617","_from":"24085","_to":"27943"} +{"$label":"ACTS_IN","name":"Peggy Summers","type":"Role","_key":"35400","_from":"24089","_to":"24086"} +{"$label":"ACTS_IN","name":"Gloria Hollinger","type":"Role","_key":"35399","_from":"24088","_to":"24086"} +{"$label":"ACTS_IN","name":"Herbie Dalitz","type":"Role","_key":"35398","_from":"24087","_to":"24086"} +{"$label":"ACTS_IN","name":"Mancuso","type":"Role","_key":"36477","_from":"24087","_to":"24738"} +{"$label":"ACTS_IN","name":"Nora Edward","type":"Role","_key":"46637","_from":"24088","_to":"30797"} +{"$label":"ACTS_IN","name":"Super Cherry","type":"Role","_key":"38980","_from":"24088","_to":"26338"} +{"$label":"ACTS_IN","name":"Marcie, Lamborghini Babe","type":"Role","_key":"72928","_from":"24089","_to":"43910"} +{"$label":"ACTS_IN","name":"Melody","type":"Role","_key":"49227","_from":"24089","_to":"32249"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"35420","_from":"24101","_to":"24090"} +{"$label":"ACTS_IN","name":"Earth","type":"Role","_key":"35418","_from":"24100","_to":"24090"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"35417","_from":"24099","_to":"24090"} +{"$label":"ACTS_IN","name":"Host TV show","type":"Role","_key":"35416","_from":"24098","_to":"24090"} +{"$label":"ACTS_IN","name":"Girl at stand","type":"Role","_key":"35414","_from":"24097","_to":"24090"} +{"$label":"ACTS_IN","name":"Kinesisk mafialeder","type":"Role","_key":"35412","_from":"24096","_to":"24090"} +{"$label":"ACTS_IN","name":"Anders","type":"Role","_key":"35411","_from":"24095","_to":"24090"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"35410","_from":"24094","_to":"24090"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"35409","_from":"24093","_to":"24090"} +{"$label":"ACTS_IN","name":"Farfar","type":"Role","_key":"35405","_from":"24092","_to":"24090"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"35403","_from":"24091","_to":"24090"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"121226","_from":"24091","_to":"71206"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"121219","_from":"24092","_to":"71206"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"121205","_from":"24092","_to":"71197"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"119097","_from":"24092","_to":"70002"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"43731","_from":"24094","_to":"29206"} +{"$label":"ACTS_IN","name":"Signe Jonsen","type":"Role","_key":"106490","_from":"24097","_to":"62738"} +{"$label":"ACTS_IN","name":"Smokey-Smokey","type":"Role","_key":"35429","_from":"24106","_to":"24102"} +{"$label":"ACTS_IN","name":"Latalla","type":"Role","_key":"35427","_from":"24105","_to":"24102"} +{"$label":"ACTS_IN","name":"Asha","type":"Role","_key":"35426","_from":"24104","_to":"24102"} +{"$label":"ACTS_IN","name":"Mallare","type":"Role","_key":"35423","_from":"24103","_to":"24102"} +{"$label":"ACTS_IN","name":"Captain Mark Markary","type":"Role","_key":"114389","_from":"24103","_to":"67376"} +{"$label":"ACTS_IN","name":"Griff Bonnell","type":"Role","_key":"101982","_from":"24103","_to":"60010"} +{"$label":"ACTS_IN","name":"Dr. Willis Stockle","type":"Role","_key":"68010","_from":"24103","_to":"41786"} +{"$label":"ACTS_IN","name":"Nora Evers","type":"Role","_key":"35434","_from":"24108","_to":"24107"} +{"$label":"ACTS_IN","name":"Becky Barnett","type":"Role","_key":"35448","_from":"24111","_to":"24109"} +{"$label":"ACTS_IN","name":"Maurice TT Rodriguez","type":"Role","_key":"35446","_from":"24110","_to":"24109"} +{"$label":"ACTS_IN","name":"Chango","type":"Role","_key":"119089","_from":"24110","_to":"69998"} +{"$label":"ACTS_IN","name":"Phil Ramos","type":"Role","_key":"116368","_from":"24110","_to":"68507"} +{"$label":"ACTS_IN","name":"Chucho (voice)","type":"Role","_key":"100068","_from":"24110","_to":"59023"} +{"$label":"ACTS_IN","name":"Juan Benitez","type":"Role","_key":"99978","_from":"24110","_to":"58990"} +{"$label":"ACTS_IN","name":"Det. Jim Vargas","type":"Role","_key":"93607","_from":"24110","_to":"55117"} +{"$label":"ACTS_IN","name":"Balon","type":"Role","_key":"91932","_from":"24110","_to":"54232"} +{"$label":"ACTS_IN","name":"Nacho Reyes","type":"Role","_key":"89097","_from":"24110","_to":"52779"} +{"$label":"ACTS_IN","name":"Quincy","type":"Role","_key":"70045","_from":"24110","_to":"42710"} +{"$label":"ACTS_IN","name":"Jacopo","type":"Role","_key":"69411","_from":"24110","_to":"42425"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"63282","_from":"24110","_to":"39669"} +{"$label":"ACTS_IN","name":"Eduardo Roel","type":"Role","_key":"62945","_from":"24110","_to":"39530"} +{"$label":"ACTS_IN","name":"Jumper","type":"Role","_key":"61672","_from":"24110","_to":"38852"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"61281","_from":"24110","_to":"38696"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"58524","_from":"24110","_to":"36982"} +{"$label":"ACTS_IN","name":"Sergeant Moorehead","type":"Role","_key":"57412","_from":"24110","_to":"36396"} +{"$label":"ACTS_IN","name":"Million Dollar Mendez","type":"Role","_key":"55283","_from":"24110","_to":"35249"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"54313","_from":"24110","_to":"34859"} +{"$label":"ACTS_IN","name":"Eddie Ortiz (as Luis Guzman)","type":"Role","_key":"54141","_from":"24110","_to":"34789"} +{"$label":"ACTS_IN","name":"Cosimo","type":"Role","_key":"52662","_from":"24110","_to":"34200"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"47876","_from":"24110","_to":"31510"} +{"$label":"ACTS_IN","name":"Raddimus","type":"Role","_key":"47218","_from":"24110","_to":"31117"} +{"$label":"ACTS_IN","name":"Pachanga","type":"Role","_key":"41515","_from":"24110","_to":"27891"} +{"$label":"ACTS_IN","name":"Tricia Danielson","type":"Role","_key":"121002","_from":"24111","_to":"71073"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"103714","_from":"24111","_to":"61002"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96773","_from":"24111","_to":"56920"} +{"$label":"ACTS_IN","name":"Lucinda Allen","type":"Role","_key":"94782","_from":"24111","_to":"55823"} +{"$label":"ACTS_IN","name":"Mellisa Green","type":"Role","_key":"67208","_from":"24111","_to":"41452"} +{"$label":"ACTS_IN","name":"Agnes' Vater","type":"Role","_key":"35458","_from":"24120","_to":"24112"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"35457","_from":"24119","_to":"24112"} +{"$label":"ACTS_IN","name":"Mimmi","type":"Role","_key":"35456","_from":"24118","_to":"24112"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"35454","_from":"24117","_to":"24112"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"35453","_from":"24114","_to":"24112"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"35452","_from":"24116","_to":"24112"} +{"$label":"ACTS_IN","name":"Konstantin","type":"Role","_key":"35451","_from":"24115","_to":"24112"} +{"$label":"DIRECTED","_key":"35450","_from":"24114","_to":"24112"} +{"$label":"DIRECTED","_key":"35449","_from":"24113","_to":"24112"} +{"$label":"DIRECTED","_key":"35474","_from":"24124","_to":"24121"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"35473","_from":"24123","_to":"24121"} +{"$label":"ACTS_IN","name":"Sharon Holmes","type":"Role","_key":"35463","_from":"24122","_to":"24121"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"113805","_from":"24122","_to":"67048"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"105311","_from":"24122","_to":"61970"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"65755","_from":"24122","_to":"40707"} +{"$label":"ACTS_IN","name":"Maddy Mozell","type":"Role","_key":"62930","_from":"24122","_to":"39524"} +{"$label":"ACTS_IN","name":"Laura Sobel","type":"Role","_key":"58243","_from":"24122","_to":"36834"} +{"$label":"ACTS_IN","name":"Lucia De Lury","type":"Role","_key":"57445","_from":"24122","_to":"36416"} +{"$label":"ACTS_IN","name":"Michele Weinberger","type":"Role","_key":"55014","_from":"24122","_to":"35158"} +{"$label":"ACTS_IN","name":"Laura MacNamara Sobel","type":"Role","_key":"54515","_from":"24122","_to":"34937"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"41274","_from":"24122","_to":"27753"} +{"$label":"ACTS_IN","name":"Army-Jacket","type":"Role","_key":"56780","_from":"24123","_to":"36060"} +{"$label":"DIRECTED","_key":"117558","_from":"24124","_to":"69118"} +{"$label":"ACTS_IN","name":"Erich Schlager","type":"Role","_key":"35484","_from":"24134","_to":"24125"} +{"$label":"ACTS_IN","name":"Pfleger Andi","type":"Role","_key":"35483","_from":"24133","_to":"24125"} +{"$label":"ACTS_IN","name":"Schwester Maria","type":"Role","_key":"35482","_from":"24132","_to":"24125"} +{"$label":"ACTS_IN","name":"Olgas Freundin (Wien)","type":"Role","_key":"35481","_from":"24131","_to":"24125"} +{"$label":"ACTS_IN","name":"Olgas Freundin (Ukraine)","type":"Role","_key":"35480","_from":"24130","_to":"24125"} +{"$label":"ACTS_IN","name":"Paulis Stiefvater","type":"Role","_key":"35478","_from":"24129","_to":"24125"} +{"$label":"ACTS_IN","name":"Pauli","type":"Role","_key":"35477","_from":"24128","_to":"24125"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"35476","_from":"24127","_to":"24125"} +{"$label":"DIRECTED","_key":"35475","_from":"24126","_to":"24125"} +{"$label":"DIRECTED","_key":"52101","_from":"24126","_to":"33965"} +{"$label":"ACTS_IN","name":"Kirchnerwirtin","type":"Role","_key":"67999","_from":"24132","_to":"41782"} +{"$label":"ACTS_IN","name":"Die Anhalterin","type":"Role","_key":"52091","_from":"24132","_to":"33965"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"42598","_from":"24132","_to":"28516"} +{"$label":"ACTS_IN","name":"Edi Rainer","type":"Role","_key":"109222","_from":"24133","_to":"64531"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"91633","_from":"24133","_to":"54033"} +{"$label":"ACTS_IN","name":"Angetrunkener Freund von Vikerl","type":"Role","_key":"52096","_from":"24133","_to":"33965"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"35490","_from":"24137","_to":"24135"} +{"$label":"ACTS_IN","name":"Detective Inspector Lomer","type":"Role","_key":"35489","_from":"24136","_to":"24135"} +{"$label":"ACTS_IN","name":"Thornton Donegin","type":"Role","_key":"44992","_from":"24136","_to":"29895"} +{"$label":"ACTS_IN","name":"Jeanne Gouard","type":"Role","_key":"35501","_from":"24143","_to":"24138"} +{"$label":"ACTS_IN","name":"Raymond Dolle","type":"Role","_key":"35500","_from":"24142","_to":"24138"} +{"$label":"ACTS_IN","name":"Monsieur Dolle","type":"Role","_key":"35497","_from":"24141","_to":"24138"} +{"$label":"ACTS_IN","name":"Madame Dolle","type":"Role","_key":"35496","_from":"24140","_to":"24138"} +{"$label":"ACTS_IN","name":"Francis Gouard","type":"Role","_key":"35494","_from":"24139","_to":"24138"} +{"$label":"ACTS_IN","name":"Virgilio Pinera","type":"Role","_key":"35511","_from":"24146","_to":"24144"} +{"$label":"ACTS_IN","name":"Pepe Malas","type":"Role","_key":"35506","_from":"24145","_to":"24144"} +{"$label":"ACTS_IN","name":"Teo \/ Gianni","type":"Role","_key":"117989","_from":"24145","_to":"69354"} +{"$label":"ACTS_IN","name":"Baron Raoul De Chagny","type":"Role","_key":"64366","_from":"24145","_to":"40115"} +{"$label":"ACTS_IN","name":"Benito","type":"Role","_key":"61642","_from":"24145","_to":"38839"} +{"$label":"DIRECTED","_key":"71663","_from":"24146","_to":"43388"} +{"$label":"DIRECTED","_key":"49780","_from":"24146","_to":"32571"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"35525","_from":"24155","_to":"24147"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"35524","_from":"24154","_to":"24147"} +{"$label":"ACTS_IN","name":"Mrs. Carlson","type":"Role","_key":"35522","_from":"24153","_to":"24147"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"35521","_from":"24152","_to":"24147"} +{"$label":"ACTS_IN","name":"Machine Gun","type":"Role","_key":"35520","_from":"24151","_to":"24147"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"35519","_from":"24150","_to":"24147"} +{"$label":"ACTS_IN","name":"Chris Randall","type":"Role","_key":"35518","_from":"24149","_to":"24147"} +{"$label":"DIRECTED","_key":"35514","_from":"24148","_to":"24147"} +{"$label":"DIRECTED","_key":"105658","_from":"24148","_to":"62188"} +{"$label":"DIRECTED","_key":"68903","_from":"24148","_to":"42195"} +{"$label":"ACTS_IN","name":"Aubrey James","type":"Role","_key":"119415","_from":"24149","_to":"70159"} +{"$label":"ACTS_IN","name":"Capt. Chester B. Hansen","type":"Role","_key":"68512","_from":"24150","_to":"42021"} +{"$label":"ACTS_IN","name":"Dr. Stan Weathers","type":"Role","_key":"50401","_from":"24150","_to":"32925"} +{"$label":"ACTS_IN","name":"Major Lowell","type":"Role","_key":"98466","_from":"24151","_to":"58017"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"35540","_from":"24163","_to":"24156"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"35536","_from":"24162","_to":"24156"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"35535","_from":"24161","_to":"24156"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"35534","_from":"24160","_to":"24156"} +{"$label":"ACTS_IN","name":"Andi","type":"Role","_key":"35532","_from":"24159","_to":"24156"} +{"$label":"ACTS_IN","name":"Erich","type":"Role","_key":"35531","_from":"24158","_to":"24156"} +{"$label":"DIRECTED","_key":"35526","_from":"24157","_to":"24156"} +{"$label":"DIRECTED","_key":"69077","_from":"24157","_to":"42272"} +{"$label":"DIRECTED","_key":"64116","_from":"24157","_to":"40010"} +{"$label":"ACTS_IN","name":"D\u00e4nu Wachsler","type":"Role","_key":"43256","_from":"24159","_to":"28890"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"46452","_from":"24161","_to":"30681"} +{"$label":"ACTS_IN","name":"R\u00fcdiger","type":"Role","_key":"37115","_from":"24161","_to":"25144"} +{"$label":"ACTS_IN","name":"Terror","type":"Role","_key":"36747","_from":"24161","_to":"24915"} +{"$label":"ACTS_IN","name":"Locker","type":"Role","_key":"35551","_from":"24169","_to":"24164"} +{"$label":"ACTS_IN","name":"Gunter","type":"Role","_key":"35548","_from":"24168","_to":"24164"} +{"$label":"ACTS_IN","name":"Gernot","type":"Role","_key":"35546","_from":"24167","_to":"24164"} +{"$label":"ACTS_IN","name":"Giselher","type":"Role","_key":"35545","_from":"24166","_to":"24164"} +{"$label":"DIRECTED","_key":"35541","_from":"24165","_to":"24164"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"39439","_from":"24165","_to":"26656"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38529","_from":"24165","_to":"26023"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"35558","_from":"24172","_to":"24170"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"35555","_from":"24171","_to":"24170"} +{"$label":"ACTS_IN","name":"Radio officer (uncredited)","type":"Role","_key":"104694","_from":"24172","_to":"61589"} +{"$label":"ACTS_IN","name":"Nastassia","type":"Role","_key":"35566","_from":"24176","_to":"24173"} +{"$label":"ACTS_IN","name":"Alione","type":"Role","_key":"35565","_from":"24175","_to":"24173"} +{"$label":"DIRECTED","_key":"35559","_from":"24174","_to":"24173"} +{"$label":"ACTS_IN","name":"The Mother","type":"Role","_key":"67162","_from":"24176","_to":"41439"} +{"$label":"ACTS_IN","name":"Madame Seurel","type":"Role","_key":"35575","_from":"24181","_to":"24177"} +{"$label":"ACTS_IN","name":"Ganache","type":"Role","_key":"35573","_from":"24180","_to":"24177"} +{"$label":"ACTS_IN","name":"Augustin Meaulnes","type":"Role","_key":"35569","_from":"24179","_to":"24177"} +{"$label":"DIRECTED","_key":"35567","_from":"24178","_to":"24177"} +{"$label":"ACTS_IN","name":"Collins P. Harrington","type":"Role","_key":"35579","_from":"24183","_to":"24182"} +{"$label":"DIRECTED","_key":"35589","_from":"24188","_to":"24184"} +{"$label":"ACTS_IN","name":"Barcuma","type":"Role","_key":"35587","_from":"24187","_to":"24184"} +{"$label":"ACTS_IN","name":"Ann Philips","type":"Role","_key":"35586","_from":"24186","_to":"24184"} +{"$label":"ACTS_IN","name":"Sam Bishop","type":"Role","_key":"35585","_from":"24185","_to":"24184"} +{"$label":"DIRECTED","_key":"113319","_from":"24188","_to":"66756"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"35596","_from":"24190","_to":"24189"} +{"$label":"ACTS_IN","name":"Tom Garnett","type":"Role","_key":"119408","_from":"24190","_to":"70150"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"65578","_from":"24190","_to":"40642"} +{"$label":"ACTS_IN","name":"Baz","type":"Role","_key":"59161","_from":"24190","_to":"37349"} +{"$label":"ACTS_IN","name":"Nikrotis","type":"Role","_key":"35603","_from":"24196","_to":"24192"} +{"$label":"ACTS_IN","name":"Hebron","type":"Role","_key":"35602","_from":"24195","_to":"24192"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"35601","_from":"24194","_to":"24192"} +{"$label":"DIRECTED","_key":"35598","_from":"24193","_to":"24192"} +{"$label":"ACTS_IN","name":"Krystyna","type":"Role","_key":"35691","_from":"24195","_to":"24252"} +{"$label":"DIRECTED","_key":"35622","_from":"24210","_to":"24197"} +{"$label":"ACTS_IN","name":"Bill Evans","type":"Role","_key":"35621","_from":"24209","_to":"24197"} +{"$label":"ACTS_IN","name":"Mike Kahn","type":"Role","_key":"35620","_from":"24208","_to":"24197"} +{"$label":"ACTS_IN","name":"Dave Busby","type":"Role","_key":"35619","_from":"24207","_to":"24197"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"35618","_from":"24206","_to":"24197"} +{"$label":"ACTS_IN","name":"Junger Priester","type":"Role","_key":"35617","_from":"24205","_to":"24197"} +{"$label":"ACTS_IN","name":"Alter Priester","type":"Role","_key":"35616","_from":"24204","_to":"24197"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"35615","_from":"24203","_to":"24197"} +{"$label":"ACTS_IN","name":"Regina im alter von 8 Jahren","type":"Role","_key":"35614","_from":"24202","_to":"24197"} +{"$label":"ACTS_IN","name":"Mr. Webster","type":"Role","_key":"35613","_from":"24201","_to":"24197"} +{"$label":"ACTS_IN","name":"Helen Malloy","type":"Role","_key":"35612","_from":"24200","_to":"24197"} +{"$label":"ACTS_IN","name":"Dr. Luria","type":"Role","_key":"35611","_from":"24199","_to":"24197"} +{"$label":"ACTS_IN","name":"Mrs. Malloy","type":"Role","_key":"35607","_from":"24198","_to":"24197"} +{"$label":"ACTS_IN","name":"Roz Allardyce","type":"Role","_key":"95148","_from":"24198","_to":"55990"} +{"$label":"ACTS_IN","name":"Little Mary Jackson","type":"Role","_key":"59462","_from":"24198","_to":"37556"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"119448","_from":"24200","_to":"70174"} +{"$label":"ACTS_IN","name":"A.L.","type":"Role","_key":"98237","_from":"24200","_to":"57868"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39385","_from":"24200","_to":"26628"} +{"$label":"ACTS_IN","name":"Ingram","type":"Role","_key":"104598","_from":"24201","_to":"61524"} +{"$label":"ACTS_IN","name":"Marshall","type":"Role","_key":"96062","_from":"24209","_to":"56457"} +{"$label":"ACTS_IN","name":"Ames Jainchill","type":"Role","_key":"97590","_from":"24210","_to":"57463"} +{"$label":"ACTS_IN","name":"Gen. Stillmore","type":"Role","_key":"72966","_from":"24210","_to":"43921"} +{"$label":"ACTS_IN","name":"Pvt. Little Joe","type":"Role","_key":"70906","_from":"24210","_to":"43079"} +{"$label":"ACTS_IN","name":"Beans","type":"Role","_key":"35629","_from":"24218","_to":"24211"} +{"$label":"ACTS_IN","name":"Owen Cannon","type":"Role","_key":"35628","_from":"24217","_to":"24211"} +{"$label":"ACTS_IN","name":"Zed","type":"Role","_key":"35627","_from":"24216","_to":"24211"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"35626","_from":"24215","_to":"24211"} +{"$label":"ACTS_IN","name":"Henna","type":"Role","_key":"35625","_from":"24214","_to":"24211"} +{"$label":"ACTS_IN","name":"Tia","type":"Role","_key":"35624","_from":"24213","_to":"24211"} +{"$label":"DIRECTED","_key":"35623","_from":"24212","_to":"24211"} +{"$label":"DIRECTED","_key":"39327","_from":"24215","_to":"26592"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"35636","_from":"24224","_to":"24219"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"35635","_from":"24223","_to":"24219"} +{"$label":"ACTS_IN","name":"Vladimir","type":"Role","_key":"35634","_from":"24222","_to":"24219"} +{"$label":"ACTS_IN","name":"Christelle","type":"Role","_key":"35631","_from":"24221","_to":"24219"} +{"$label":"DIRECTED","_key":"35630","_from":"24220","_to":"24219"} +{"$label":"ACTS_IN","name":"Juno","type":"Role","_key":"35648","_from":"24230","_to":"24225"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"35646","_from":"24229","_to":"24225"} +{"$label":"ACTS_IN","name":"Ferdinand","type":"Role","_key":"35645","_from":"24228","_to":"24225"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"35642","_from":"24227","_to":"24225"} +{"$label":"ACTS_IN","name":"Caliban","type":"Role","_key":"35639","_from":"24226","_to":"24225"} +{"$label":"ACTS_IN","name":"Pvt. Grace","type":"Role","_key":"70917","_from":"24226","_to":"43079"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"117756","_from":"24227","_to":"69222"} +{"$label":"ACTS_IN","name":"Sir Thomas Boleyn","type":"Role","_key":"88556","_from":"24228","_to":"52483"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"72334","_from":"24228","_to":"43687"} +{"$label":"ACTS_IN","name":"William Adamson","type":"Role","_key":"49865","_from":"24228","_to":"32648"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35655","_from":"24234","_to":"24231"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35654","_from":"24233","_to":"24231"} +{"$label":"DIRECTED","_key":"35649","_from":"24232","_to":"24231"} +{"$label":"DIRECTED","_key":"35663","_from":"24238","_to":"24235"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"35662","_from":"24237","_to":"24235"} +{"$label":"ACTS_IN","name":"Bank Clerk","type":"Role","_key":"35661","_from":"24236","_to":"24235"} +{"$label":"ACTS_IN","name":"Cosimo Medici","type":"Role","_key":"35668","_from":"24240","_to":"24239"} +{"$label":"ACTS_IN","name":"Marianne Swoboda","type":"Role","_key":"35681","_from":"24246","_to":"24242"} +{"$label":"ACTS_IN","name":"Herr Mitterbauer","type":"Role","_key":"35679","_from":"24245","_to":"24242"} +{"$label":"ACTS_IN","name":"Ali Mohamed","type":"Role","_key":"35678","_from":"24244","_to":"24242"} +{"$label":"DIRECTED","_key":"35677","_from":"24243","_to":"24242"} +{"$label":"DIRECTED","_key":"104586","_from":"24245","_to":"61523"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35688","_from":"24251","_to":"24247"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35687","_from":"24250","_to":"24247"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35686","_from":"24249","_to":"24247"} +{"$label":"DIRECTED","_key":"35683","_from":"24248","_to":"24247"} +{"$label":"ACTS_IN","name":"Stefka","type":"Role","_key":"35697","_from":"24259","_to":"24252"} +{"$label":"ACTS_IN","name":"Staniewiczowa","type":"Role","_key":"35696","_from":"24258","_to":"24252"} +{"$label":"ACTS_IN","name":"Pieniazek","type":"Role","_key":"35695","_from":"24257","_to":"24252"} +{"$label":"ACTS_IN","name":"Drewnowski","type":"Role","_key":"35694","_from":"24256","_to":"24252"} +{"$label":"ACTS_IN","name":"Andrzej","type":"Role","_key":"35693","_from":"24255","_to":"24252"} +{"$label":"ACTS_IN","name":"Szczuka","type":"Role","_key":"35692","_from":"24254","_to":"24252"} +{"$label":"ACTS_IN","name":"Maciek Chelmicki","type":"Role","_key":"35690","_from":"24253","_to":"24252"} +{"$label":"ACTS_IN","name":"Alfonse Van Worden","type":"Role","_key":"50856","_from":"24253","_to":"33197"} +{"$label":"ACTS_IN","name":"Zbyszek","type":"Role","_key":"50805","_from":"24253","_to":"33152"} +{"$label":"ACTS_IN","name":"don Pedro Uzeda","type":"Role","_key":"50861","_from":"24255","_to":"33197"} +{"$label":"ACTS_IN","name":"Miss Ashenden","type":"Role","_key":"35706","_from":"24264","_to":"24260"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"35705","_from":"24263","_to":"24260"} +{"$label":"ACTS_IN","name":"Robert Drummond","type":"Role","_key":"35704","_from":"24262","_to":"24260"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"35702","_from":"24261","_to":"24260"} +{"$label":"ACTS_IN","name":"Judy Hudson (Friday)","type":"Role","_key":"117968","_from":"24261","_to":"69342"} +{"$label":"ACTS_IN","name":"Unity Webster","type":"Role","_key":"36116","_from":"24261","_to":"24508"} +{"$label":"ACTS_IN","name":"Steve Hanson","type":"Role","_key":"70932","_from":"24262","_to":"43092"} +{"$label":"ACTS_IN","name":"Vulnavia","type":"Role","_key":"114490","_from":"24263","_to":"67443"} +{"$label":"ACTS_IN","name":"Paul Denis","type":"Role","_key":"35714","_from":"24270","_to":"24266"} +{"$label":"ACTS_IN","name":"B\u00e9r\u00e9nice Morel","type":"Role","_key":"35712","_from":"24269","_to":"24266"} +{"$label":"ACTS_IN","name":"Aur\u00e9lien Leurtillois","type":"Role","_key":"35711","_from":"24268","_to":"24266"} +{"$label":"DIRECTED","_key":"35710","_from":"24267","_to":"24266"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101518","_from":"24269","_to":"59754"} +{"$label":"ACTS_IN","name":"Anya","type":"Role","_key":"96415","_from":"24269","_to":"56686"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"90086","_from":"24269","_to":"53280"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"64522","_from":"24269","_to":"40189"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"88092","_from":"24270","_to":"52282"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"69027","_from":"24270","_to":"42252"} +{"$label":"ACTS_IN","name":"Doris Mann","type":"Role","_key":"35722","_from":"24279","_to":"24271"} +{"$label":"ACTS_IN","name":"Valeria Watt","type":"Role","_key":"35721","_from":"24278","_to":"24271"} +{"$label":"ACTS_IN","name":"Dan Dann","type":"Role","_key":"35720","_from":"24277","_to":"24271"} +{"$label":"ACTS_IN","name":"Emily Bung","type":"Role","_key":"35719","_from":"24276","_to":"24271"} +{"$label":"ACTS_IN","name":"Sidney Bung","type":"Role","_key":"35718","_from":"24275","_to":"24271"} +{"$label":"ACTS_IN","name":"Albert Potter","type":"Role","_key":"35717","_from":"24274","_to":"24271"} +{"$label":"ACTS_IN","name":"Orlando Watt","type":"Role","_key":"35716","_from":"24273","_to":"24271"} +{"$label":"DIRECTED","_key":"35715","_from":"24272","_to":"24271"} +{"$label":"DIRECTED","_key":"121017","_from":"24272","_to":"71078"} +{"$label":"DIRECTED","_key":"119641","_from":"24272","_to":"70277"} +{"$label":"DIRECTED","_key":"119605","_from":"24272","_to":"70257"} +{"$label":"DIRECTED","_key":"119579","_from":"24272","_to":"70243"} +{"$label":"DIRECTED","_key":"119550","_from":"24272","_to":"70231"} +{"$label":"DIRECTED","_key":"119382","_from":"24272","_to":"70145"} +{"$label":"DIRECTED","_key":"119366","_from":"24272","_to":"70140"} +{"$label":"DIRECTED","_key":"111746","_from":"24272","_to":"65956"} +{"$label":"DIRECTED","_key":"111176","_from":"24272","_to":"65658"} +{"$label":"DIRECTED","_key":"35781","_from":"24272","_to":"24306"} +{"$label":"DIRECTED","_key":"35770","_from":"24272","_to":"24304"} +{"$label":"DIRECTED","_key":"35755","_from":"24272","_to":"24297"} +{"$label":"DIRECTED","_key":"35723","_from":"24272","_to":"24280"} +{"$label":"ACTS_IN","name":"Doctor Kenneth Soaper","type":"Role","_key":"119645","_from":"24273","_to":"70277"} +{"$label":"ACTS_IN","name":"Professor Roland Crump","type":"Role","_key":"119607","_from":"24273","_to":"70257"} +{"$label":"ACTS_IN","name":"W. C. Boggs","type":"Role","_key":"119581","_from":"24273","_to":"70243"} +{"$label":"ACTS_IN","name":"Frederick Carver","type":"Role","_key":"119552","_from":"24273","_to":"70231"} +{"$label":"ACTS_IN","name":"Stuart Farquhar","type":"Role","_key":"119368","_from":"24273","_to":"70140"} +{"$label":"ACTS_IN","name":"Caeser","type":"Role","_key":"35783","_from":"24273","_to":"24306"} +{"$label":"ACTS_IN","name":"Judge Burke","type":"Role","_key":"35774","_from":"24273","_to":"24304"} +{"$label":"ACTS_IN","name":"Doctor Kenneth Tinkle","type":"Role","_key":"35757","_from":"24273","_to":"24297"} +{"$label":"ACTS_IN","name":"Citoyen Camembert","type":"Role","_key":"35728","_from":"24273","_to":"24280"} +{"$label":"ACTS_IN","name":"Christopher Columbus","type":"Role","_key":"121018","_from":"24274","_to":"71078"} +{"$label":"ACTS_IN","name":"Doctor Jimmy Nookey","type":"Role","_key":"119554","_from":"24274","_to":"70231"} +{"$label":"ACTS_IN","name":"House Painter","type":"Role","_key":"117904","_from":"24274","_to":"69304"} +{"$label":"ACTS_IN","name":"Dr. Terminus","type":"Role","_key":"67967","_from":"24274","_to":"41763"} +{"$label":"ACTS_IN","name":"Horsa","type":"Role","_key":"35784","_from":"24274","_to":"24306"} +{"$label":"ACTS_IN","name":"Marshal P. Knutt","type":"Role","_key":"35772","_from":"24274","_to":"24304"} +{"$label":"ACTS_IN","name":"Doctor Jim Kilmore","type":"Role","_key":"35756","_from":"24274","_to":"24297"} +{"$label":"ACTS_IN","name":"Lord Darcy Pue","type":"Role","_key":"35726","_from":"24274","_to":"24280"} +{"$label":"ACTS_IN","name":"Squire","type":"Role","_key":"72265","_from":"24275","_to":"43659"} +{"$label":"ACTS_IN","name":"Joan Fussey","type":"Role","_key":"119644","_from":"24276","_to":"70277"} +{"$label":"ACTS_IN","name":"Daphne Barnes","type":"Role","_key":"119611","_from":"24276","_to":"70257"} +{"$label":"ACTS_IN","name":"Chlo\u00eb Moore","type":"Role","_key":"119583","_from":"24276","_to":"70243"} +{"$label":"ACTS_IN","name":"Ellen Moore","type":"Role","_key":"119555","_from":"24276","_to":"70231"} +{"$label":"ACTS_IN","name":"Cora Flange","type":"Role","_key":"119370","_from":"24276","_to":"70140"} +{"$label":"ACTS_IN","name":"Lady Evelyn Bagley","type":"Role","_key":"111734","_from":"24276","_to":"65956"} +{"$label":"ACTS_IN","name":"Calpurnia","type":"Role","_key":"35786","_from":"24276","_to":"24306"} +{"$label":"ACTS_IN","name":"Belle Armitage","type":"Role","_key":"35776","_from":"24276","_to":"24304"} +{"$label":"ACTS_IN","name":"Chlo\u00eb Gibson","type":"Role","_key":"35760","_from":"24276","_to":"24297"} +{"$label":"ACTS_IN","name":"D\u00e9sir\u00e9e Dubarry","type":"Role","_key":"35730","_from":"24276","_to":"24280"} +{"$label":"ACTS_IN","name":"Charlie Muggins","type":"Role","_key":"119643","_from":"24277","_to":"70277"} +{"$label":"ACTS_IN","name":"Charles Coote","type":"Role","_key":"119582","_from":"24277","_to":"70243"} +{"$label":"ACTS_IN","name":"Doctor Ernest Stoppidge","type":"Role","_key":"119553","_from":"24277","_to":"70231"} +{"$label":"ACTS_IN","name":"Terry 'Pintpot' Tankard","type":"Role","_key":"119386","_from":"24277","_to":"70145"} +{"$label":"ACTS_IN","name":"Eustace Tuttle","type":"Role","_key":"119369","_from":"24277","_to":"70140"} +{"$label":"ACTS_IN","name":"Tonka the Great \/ Walter Bagley","type":"Role","_key":"111733","_from":"24277","_to":"65956"} +{"$label":"ACTS_IN","name":"Seneca","type":"Role","_key":"35788","_from":"24277","_to":"24306"} +{"$label":"ACTS_IN","name":"Chief Big Heap","type":"Role","_key":"35775","_from":"24277","_to":"24304"} +{"$label":"ACTS_IN","name":"Mr. Barron","type":"Role","_key":"35761","_from":"24277","_to":"24297"} +{"$label":"ACTS_IN","name":"Duc de Pomfrit","type":"Role","_key":"35729","_from":"24277","_to":"24280"} +{"$label":"ACTS_IN","name":"\"Mrs Foxfur\"","type":"Role","_key":"63583","_from":"24278","_to":"39786"} +{"$label":"ACTS_IN","name":"Annie Oakley","type":"Role","_key":"35773","_from":"24279","_to":"24304"} +{"$label":"ACTS_IN","name":"Bidet","type":"Role","_key":"35739","_from":"24290","_to":"24280"} +{"$label":"ACTS_IN","name":"First Lady","type":"Role","_key":"35738","_from":"24289","_to":"24280"} +{"$label":"ACTS_IN","name":"Second Lady \/ Girl at Execution","type":"Role","_key":"35737","_from":"24288","_to":"24280"} +{"$label":"ACTS_IN","name":"Captain of Soldiers","type":"Role","_key":"35736","_from":"24287","_to":"24280"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"35735","_from":"24286","_to":"24280"} +{"$label":"ACTS_IN","name":"Malabonce","type":"Role","_key":"35734","_from":"24285","_to":"24280"} +{"$label":"ACTS_IN","name":"Landlady","type":"Role","_key":"35732","_from":"24284","_to":"24280"} +{"$label":"ACTS_IN","name":"Citizen Robespierre","type":"Role","_key":"35731","_from":"24283","_to":"24280"} +{"$label":"ACTS_IN","name":"Sir Rodney Ffing","type":"Role","_key":"35725","_from":"24282","_to":"24280"} +{"$label":"DIRECTED","_key":"35724","_from":"24281","_to":"24280"} +{"$label":"ACTS_IN","name":"Sid Boggle","type":"Role","_key":"119642","_from":"24282","_to":"70277"} +{"$label":"ACTS_IN","name":"Sid Plummer","type":"Role","_key":"119580","_from":"24282","_to":"70243"} +{"$label":"ACTS_IN","name":"Gladstone Screwer","type":"Role","_key":"119551","_from":"24282","_to":"70231"} +{"$label":"ACTS_IN","name":"Charlie Hawkins","type":"Role","_key":"119383","_from":"24282","_to":"70145"} +{"$label":"ACTS_IN","name":"Vic Flange","type":"Role","_key":"119367","_from":"24282","_to":"70140"} +{"$label":"ACTS_IN","name":"Bill Boosey","type":"Role","_key":"111732","_from":"24282","_to":"65956"} +{"$label":"ACTS_IN","name":"Sid Abbot","type":"Role","_key":"111175","_from":"24282","_to":"65658"} +{"$label":"ACTS_IN","name":"Marc Anton","type":"Role","_key":"35782","_from":"24282","_to":"24306"} +{"$label":"ACTS_IN","name":"Johnny Finger, the Rumpo Kid","type":"Role","_key":"35771","_from":"24282","_to":"24304"} +{"$label":"ACTS_IN","name":"Charlie Roper","type":"Role","_key":"35758","_from":"24282","_to":"24297"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"119562","_from":"24283","_to":"70231"} +{"$label":"ACTS_IN","name":"Dr. Kitaj","type":"Role","_key":"114497","_from":"24283","_to":"67443"} +{"$label":"ACTS_IN","name":"Maud","type":"Role","_key":"119593","_from":"24284","_to":"70243"} +{"$label":"ACTS_IN","name":"Josh Fiddler","type":"Role","_key":"119652","_from":"24290","_to":"70277"} +{"$label":"ACTS_IN","name":"Henry Barnes","type":"Role","_key":"119613","_from":"24290","_to":"70257"} +{"$label":"ACTS_IN","name":"Shuffling Patient","type":"Role","_key":"119559","_from":"24290","_to":"70231"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"119374","_from":"24290","_to":"70140"} +{"$label":"ACTS_IN","name":"Doc","type":"Role","_key":"35778","_from":"24290","_to":"24304"} +{"$label":"ACTS_IN","name":"Mr. Smith","type":"Role","_key":"35765","_from":"24290","_to":"24297"} +{"$label":"DIRECTED","_key":"35754","_from":"24296","_to":"24292"} +{"$label":"DIRECTED","_key":"35753","_from":"24295","_to":"24292"} +{"$label":"DIRECTED","_key":"35752","_from":"24294","_to":"24292"} +{"$label":"ACTS_IN","name":"Max als Kind","type":"Role","_key":"35750","_from":"24293","_to":"24292"} +{"$label":"DIRECTED","_key":"101175","_from":"24294","_to":"59604"} +{"$label":"ACTS_IN","name":"Chaplain","type":"Role","_key":"35769","_from":"24303","_to":"24297"} +{"$label":"ACTS_IN","name":"Mrs. Roper","type":"Role","_key":"35768","_from":"24302","_to":"24297"} +{"$label":"ACTS_IN","name":"Sir Edmund Burke","type":"Role","_key":"35767","_from":"24301","_to":"24297"} +{"$label":"ACTS_IN","name":"Sister Hoggett","type":"Role","_key":"35766","_from":"24300","_to":"24297"} +{"$label":"ACTS_IN","name":"Matron","type":"Role","_key":"35764","_from":"24299","_to":"24297"} +{"$label":"ACTS_IN","name":"Francis Bigger","type":"Role","_key":"35762","_from":"24298","_to":"24297"} +{"$label":"ACTS_IN","name":"Professor Inigo Tinkle","type":"Role","_key":"111731","_from":"24298","_to":"65956"} +{"$label":"ACTS_IN","name":"Alphonse of Monte Carlo \/ Alfred Askett","type":"Role","_key":"99875","_from":"24298","_to":"58900"} +{"$label":"ACTS_IN","name":"Miss Haggard","type":"Role","_key":"119648","_from":"24299","_to":"70277"} +{"$label":"ACTS_IN","name":"Beattie Plummer","type":"Role","_key":"119584","_from":"24299","_to":"70243"} +{"$label":"ACTS_IN","name":"Matron","type":"Role","_key":"119557","_from":"24299","_to":"70231"} +{"$label":"ACTS_IN","name":"Peggy Hawkins","type":"Role","_key":"119384","_from":"24299","_to":"70145"} +{"$label":"ACTS_IN","name":"Floella","type":"Role","_key":"119377","_from":"24299","_to":"70140"} +{"$label":"ACTS_IN","name":"Woman with Rose","type":"Role","_key":"117906","_from":"24299","_to":"69304"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"119656","_from":"24301","_to":"70277"} +{"$label":"ACTS_IN","name":"Brother Martin","type":"Role","_key":"119378","_from":"24301","_to":"70140"} +{"$label":"ACTS_IN","name":"Sheriff Albert Earp","type":"Role","_key":"35780","_from":"24305","_to":"24304"} +{"$label":"ACTS_IN","name":"Segeant-Major","type":"Role","_key":"35793","_from":"24311","_to":"24306"} +{"$label":"ACTS_IN","name":"Brutus","type":"Role","_key":"35790","_from":"24310","_to":"24306"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"35789","_from":"24309","_to":"24306"} +{"$label":"ACTS_IN","name":"Hengist Pod","type":"Role","_key":"35787","_from":"24308","_to":"24306"} +{"$label":"ACTS_IN","name":"Cleopatra","type":"Role","_key":"35785","_from":"24307","_to":"24306"} +{"$label":"ACTS_IN","name":"Major Leep","type":"Role","_key":"119609","_from":"24308","_to":"70257"} +{"$label":"ACTS_IN","name":"Ted Watson","type":"Role","_key":"119385","_from":"24308","_to":"70145"} +{"$label":"ACTS_IN","name":"Stanley Blunt","type":"Role","_key":"119373","_from":"24308","_to":"70140"} +{"$label":"ACTS_IN","name":"Claude Chumley","type":"Role","_key":"111736","_from":"24308","_to":"65956"} +{"$label":"ACTS_IN","name":"Mr. Short","type":"Role","_key":"119655","_from":"24310","_to":"70277"} +{"$label":"ACTS_IN","name":"The Mate","type":"Role","_key":"36124","_from":"24311","_to":"24508"} +{"$label":"ACTS_IN","name":"Dr. Hermann","type":"Role","_key":"35807","_from":"24316","_to":"24312"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"35805","_from":"24315","_to":"24312"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric Henderson","type":"Role","_key":"35803","_from":"24314","_to":"24312"} +{"$label":"ACTS_IN","name":"Mathias Desgrez","type":"Role","_key":"35801","_from":"24313","_to":"24312"} +{"$label":"ACTS_IN","name":"Brandt","type":"Role","_key":"35820","_from":"24322","_to":"24317"} +{"$label":"ACTS_IN","name":"Brain","type":"Role","_key":"35819","_from":"24321","_to":"24317"} +{"$label":"ACTS_IN","name":"Josette","type":"Role","_key":"35816","_from":"24320","_to":"24317"} +{"$label":"ACTS_IN","name":"Inspector Mallouk","type":"Role","_key":"35813","_from":"24319","_to":"24317"} +{"$label":"DIRECTED","_key":"35808","_from":"24318","_to":"24317"} +{"$label":"DIRECTED","_key":"53378","_from":"24318","_to":"34497"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"44477","_from":"24320","_to":"29626"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"43755","_from":"24320","_to":"29221"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"42344","_from":"24320","_to":"28337"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42286","_from":"24320","_to":"28312"} +{"$label":"ACTS_IN","name":"George McGowan","type":"Role","_key":"48288","_from":"24321","_to":"31709"} +{"$label":"ACTS_IN","name":"Priester","type":"Role","_key":"37872","_from":"24322","_to":"25653"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"35827","_from":"24327","_to":"24323"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"35826","_from":"24326","_to":"24323"} +{"$label":"ACTS_IN","name":"Ludmilla \"Ludi\" Guyot","type":"Role","_key":"35822","_from":"24325","_to":"24323"} +{"$label":"DIRECTED","_key":"35821","_from":"24324","_to":"24323"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"35837","_from":"24325","_to":"24328"} +{"$label":"ACTS_IN","name":"La Voisine","type":"Role","_key":"35842","_from":"24332","_to":"24328"} +{"$label":"ACTS_IN","name":"Quidam Pigalle","type":"Role","_key":"35836","_from":"24331","_to":"24328"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"35834","_from":"24330","_to":"24328"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"35831","_from":"24329","_to":"24328"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"118698","_from":"24329","_to":"69798"} +{"$label":"ACTS_IN","name":"Melchior","type":"Role","_key":"115749","_from":"24329","_to":"68154"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"96132","_from":"24329","_to":"56503"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"91825","_from":"24329","_to":"54170"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"49246","_from":"24329","_to":"32254"} +{"$label":"DIRECTED","_key":"115752","_from":"24329","_to":"68154"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"59973","_from":"24330","_to":"37860"} +{"$label":"ACTS_IN","name":"Dumitru","type":"Role","_key":"35853","_from":"24343","_to":"24333"} +{"$label":"ACTS_IN","name":"Gheorge","type":"Role","_key":"35852","_from":"24342","_to":"24333"} +{"$label":"ACTS_IN","name":"Iaon","type":"Role","_key":"35851","_from":"24341","_to":"24333"} +{"$label":"ACTS_IN","name":"Vasile","type":"Role","_key":"35850","_from":"24340","_to":"24333"} +{"$label":"ACTS_IN","name":"Aurica","type":"Role","_key":"35849","_from":"24339","_to":"24333"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"35848","_from":"24338","_to":"24333"} +{"$label":"ACTS_IN","name":"Sami","type":"Role","_key":"35847","_from":"24337","_to":"24333"} +{"$label":"ACTS_IN","name":"Izidor","type":"Role","_key":"35846","_from":"24336","_to":"24333"} +{"$label":"ACTS_IN","name":"Sabrina","type":"Role","_key":"35845","_from":"24335","_to":"24333"} +{"$label":"DIRECTED","_key":"35843","_from":"24334","_to":"24333"} +{"$label":"DIRECTED","_key":"116399","_from":"24334","_to":"68520"} +{"$label":"ACTS_IN","name":"Magda Tellman","type":"Role","_key":"54287","_from":"24335","_to":"34846"} +{"$label":"ACTS_IN","name":"Hardy","type":"Role","_key":"120398","_from":"24343","_to":"70723"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"35859","_from":"24350","_to":"24344"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"35858","_from":"24349","_to":"24344"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"35857","_from":"24348","_to":"24344"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"35856","_from":"24347","_to":"24344"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"35855","_from":"24346","_to":"24344"} +{"$label":"DIRECTED","_key":"35854","_from":"24345","_to":"24344"} +{"$label":"DIRECTED","_key":"50159","_from":"24345","_to":"32793"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"113362","_from":"24346","_to":"66778"} +{"$label":"ACTS_IN","name":"Dennis Earle","type":"Role","_key":"111729","_from":"24346","_to":"65955"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"95107","_from":"24346","_to":"55971"} +{"$label":"ACTS_IN","name":"Hayden","type":"Role","_key":"92244","_from":"24346","_to":"54427"} +{"$label":"ACTS_IN","name":"Moff","type":"Role","_key":"68044","_from":"24346","_to":"41811"} +{"$label":"ACTS_IN","name":"Tommy Johnson","type":"Role","_key":"62441","_from":"24346","_to":"39336"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"59724","_from":"24346","_to":"37714"} +{"$label":"ACTS_IN","name":"Billy the Limpet","type":"Role","_key":"59091","_from":"24346","_to":"37302"} +{"$label":"ACTS_IN","name":"Gene Dekker","type":"Role","_key":"57906","_from":"24346","_to":"36634"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"36094","_from":"24346","_to":"24494"} +{"$label":"ACTS_IN","name":"Cassie Meyers","type":"Role","_key":"116159","_from":"24347","_to":"68398"} +{"$label":"ACTS_IN","name":"Marybeth Louise Hutchinson","type":"Role","_key":"52787","_from":"24347","_to":"34242"} +{"$label":"ACTS_IN","name":"Edward Fairfax Rochester","type":"Role","_key":"104838","_from":"24348","_to":"61687"} +{"$label":"ACTS_IN","name":"William Dodd","type":"Role","_key":"92015","_from":"24348","_to":"54290"} +{"$label":"ACTS_IN","name":"Othello","type":"Role","_key":"52991","_from":"24348","_to":"34323"} +{"$label":"ACTS_IN","name":"Alonzo","type":"Role","_key":"63580","_from":"24349","_to":"39784"} +{"$label":"ACTS_IN","name":"The Doge","type":"Role","_key":"55547","_from":"24349","_to":"35377"} +{"$label":"ACTS_IN","name":"Kaltfish","type":"Role","_key":"35867","_from":"24353","_to":"24351"} +{"$label":"DIRECTED","_key":"35862","_from":"24352","_to":"24351"} +{"$label":"ACTS_IN","name":"kr\u00f3l Ubu","type":"Role","_key":"116699","_from":"24353","_to":"68697"} +{"$label":"DIRECTED","_key":"35870","_from":"24356","_to":"24354"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"35869","_from":"24355","_to":"24354"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"35878","_from":"24360","_to":"24357"} +{"$label":"ACTS_IN","name":"Jeanne Deschamps","type":"Role","_key":"35875","_from":"24359","_to":"24357"} +{"$label":"DIRECTED","_key":"35871","_from":"24358","_to":"24357"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"96854","_from":"24359","_to":"56940"} +{"$label":"ACTS_IN","name":"L'enfant","type":"Role","_key":"35885","_from":"24365","_to":"24361"} +{"$label":"ACTS_IN","name":"Le facteur","type":"Role","_key":"35884","_from":"24364","_to":"24361"} +{"$label":"ACTS_IN","name":"La bonne","type":"Role","_key":"35883","_from":"24363","_to":"24361"} +{"$label":"ACTS_IN","name":"L'africain","type":"Role","_key":"35882","_from":"24362","_to":"24361"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35898","_from":"24377","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35897","_from":"24376","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35896","_from":"24375","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35895","_from":"24374","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35894","_from":"24373","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35893","_from":"24372","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35892","_from":"24371","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35891","_from":"24370","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35890","_from":"24369","_to":"24366"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35889","_from":"24368","_to":"24366"} +{"$label":"DIRECTED","_key":"35886","_from":"24367","_to":"24366"} +{"$label":"ACTS_IN","name":"Baldo","type":"Role","_key":"35902","_from":"24381","_to":"24378"} +{"$label":"ACTS_IN","name":"Il commendator Mordacchia","type":"Role","_key":"35901","_from":"24380","_to":"24378"} +{"$label":"DIRECTED","_key":"35899","_from":"24379","_to":"24378"} +{"$label":"ACTS_IN","name":"Ann's Father (uncredited)","type":"Role","_key":"45997","_from":"24380","_to":"30401"} +{"$label":"ACTS_IN","name":"Bisturi","type":"Role","_key":"37405","_from":"24381","_to":"25352"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35912","_from":"24388","_to":"24382"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35911","_from":"24387","_to":"24382"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35910","_from":"24386","_to":"24382"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35909","_from":"24385","_to":"24382"} +{"$label":"ACTS_IN","name":"Sandro","type":"Role","_key":"35906","_from":"24384","_to":"24382"} +{"$label":"DIRECTED","_key":"35903","_from":"24383","_to":"24382"} +{"$label":"ACTS_IN","name":"Franca Faccenda","type":"Role","_key":"35919","_from":"24395","_to":"24389"} +{"$label":"ACTS_IN","name":"Il commissario Frangipane","type":"Role","_key":"35918","_from":"24394","_to":"24389"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35917","_from":"24393","_to":"24389"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35916","_from":"24392","_to":"24389"} +{"$label":"ACTS_IN","name":"Gianni Orti","type":"Role","_key":"35915","_from":"24391","_to":"24389"} +{"$label":"DIRECTED","_key":"35913","_from":"24390","_to":"24389"} +{"$label":"DIRECTED","_key":"35956","_from":"24390","_to":"24420"} +{"$label":"DIRECTED","_key":"35942","_from":"24390","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35945","_from":"24391","_to":"24411"} +{"$label":"ACTS_IN","name":"Sandy Temple","type":"Role","_key":"35925","_from":"24395","_to":"24396"} +{"$label":"ACTS_IN","name":"Model","type":"Role","_key":"35931","_from":"24401","_to":"24396"} +{"$label":"ACTS_IN","name":"Rosalind","type":"Role","_key":"35928","_from":"24400","_to":"24396"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"35927","_from":"24399","_to":"24396"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"35922","_from":"24398","_to":"24396"} +{"$label":"DIRECTED","_key":"35920","_from":"24397","_to":"24396"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35948","_from":"24400","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35941","_from":"24410","_to":"24402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35940","_from":"24409","_to":"24402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35939","_from":"24408","_to":"24402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35937","_from":"24407","_to":"24402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35936","_from":"24406","_to":"24402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35935","_from":"24405","_to":"24402"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"35934","_from":"24404","_to":"24402"} +{"$label":"DIRECTED","_key":"35932","_from":"24403","_to":"24402"} +{"$label":"DIRECTED","_key":"90104","_from":"24403","_to":"53288"} +{"$label":"ACTS_IN","name":"Lella","type":"Role","_key":"89400","_from":"24407","_to":"52916"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"37210","_from":"24407","_to":"25204"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35949","_from":"24414","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35947","_from":"24413","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35946","_from":"24412","_to":"24411"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35954","_from":"24419","_to":"24415"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35953","_from":"24418","_to":"24415"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35952","_from":"24417","_to":"24415"} +{"$label":"DIRECTED","_key":"35950","_from":"24416","_to":"24415"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35959","_from":"24422","_to":"24420"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"35958","_from":"24421","_to":"24420"} +{"$label":"ACTS_IN","name":"Thorn-Grindel Hagen","type":"Role","_key":"35967","_from":"24429","_to":"24423"} +{"$label":"ACTS_IN","name":"Sunn","type":"Role","_key":"35966","_from":"24428","_to":"24423"} +{"$label":"ACTS_IN","name":"Skiold","type":"Role","_key":"35965","_from":"24427","_to":"24423"} +{"$label":"ACTS_IN","name":"Grimilde","type":"Role","_key":"35963","_from":"24426","_to":"24423"} +{"$label":"ACTS_IN","name":"DeJanira","type":"Role","_key":"35961","_from":"24425","_to":"24423"} +{"$label":"ACTS_IN","name":"Ator","type":"Role","_key":"35960","_from":"24424","_to":"24423"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"120606","_from":"24424","_to":"70829"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"48717","_from":"24424","_to":"31948"} +{"$label":"ACTS_IN","name":"Little John","type":"Role","_key":"47717","_from":"24424","_to":"31431"} +{"$label":"ACTS_IN","name":"Suzy Lee","type":"Role","_key":"71585","_from":"24426","_to":"43360"} +{"$label":"ACTS_IN","name":"Jackie Forrest","type":"Role","_key":"46232","_from":"24426","_to":"30553"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39497","_from":"24426","_to":"26693"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39400","_from":"24426","_to":"26628"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"37203","_from":"24426","_to":"25202"} +{"$label":"ACTS_IN","name":"Shai","type":"Role","_key":"35970","_from":"24431","_to":"24430"} +{"$label":"DIRECTED","_key":"35969","_from":"24431","_to":"24430"} +{"$label":"ACTS_IN","name":"Baby Langston Poplin","type":"Role","_key":"35979","_from":"24436","_to":"24432"} +{"$label":"ACTS_IN","name":"Patrolman Jessup","type":"Role","_key":"35978","_from":"24435","_to":"24432"} +{"$label":"ACTS_IN","name":"Patrolman Ernie Mashburn","type":"Role","_key":"35977","_from":"24434","_to":"24432"} +{"$label":"ACTS_IN","name":"Patrolman Maxwell Slide","type":"Role","_key":"35976","_from":"24433","_to":"24432"} +{"$label":"ACTS_IN","name":"Jeff Trent","type":"Role","_key":"63765","_from":"24434","_to":"39871"} +{"$label":"ACTS_IN","name":"Capt. Jerome","type":"Role","_key":"101879","_from":"24435","_to":"59964"} +{"$label":"ACTS_IN","name":"Mr. Goodwyn","type":"Role","_key":"89562","_from":"24435","_to":"53001"} +{"$label":"ACTS_IN","name":"Mary Dove","type":"Role","_key":"35989","_from":"24439","_to":"24437"} +{"$label":"ACTS_IN","name":"Big Sister","type":"Role","_key":"35985","_from":"24438","_to":"24437"} +{"$label":"ACTS_IN","name":"Anne Wyatt","type":"Role","_key":"106943","_from":"24438","_to":"63051"} +{"$label":"ACTS_IN","name":"Madame Medusa (voice)","type":"Role","_key":"69110","_from":"24438","_to":"42285"} +{"$label":"ACTS_IN","name":"Angie Lowe","type":"Role","_key":"43952","_from":"24438","_to":"29320"} +{"$label":"ACTS_IN","name":"Lelia","type":"Role","_key":"104622","_from":"24439","_to":"61544"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"36003","_from":"24447","_to":"24440"} +{"$label":"ACTS_IN","name":"Marshall","type":"Role","_key":"36002","_from":"24446","_to":"24440"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"36001","_from":"24445","_to":"24440"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"36000","_from":"24444","_to":"24440"} +{"$label":"ACTS_IN","name":"Reverend James","type":"Role","_key":"35999","_from":"24443","_to":"24440"} +{"$label":"ACTS_IN","name":"Dekan","type":"Role","_key":"35998","_from":"24442","_to":"24440"} +{"$label":"DIRECTED","_key":"35991","_from":"24441","_to":"24440"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"61342","_from":"24441","_to":"38711"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"89725","_from":"24442","_to":"53110"} +{"$label":"ACTS_IN","name":"George Lanter","type":"Role","_key":"121469","_from":"24443","_to":"71354"} +{"$label":"ACTS_IN","name":"Juror 10","type":"Role","_key":"88771","_from":"24443","_to":"52604"} +{"$label":"ACTS_IN","name":"Agent Stafford","type":"Role","_key":"64286","_from":"24443","_to":"40082"} +{"$label":"ACTS_IN","name":"Lassane Badiel","type":"Role","_key":"36008","_from":"24453","_to":"24448"} +{"$label":"ACTS_IN","name":"Han Yong-Sil","type":"Role","_key":"36007","_from":"24452","_to":"24448"} +{"$label":"ACTS_IN","name":"Penny Tefertiller","type":"Role","_key":"36006","_from":"24451","_to":"24448"} +{"$label":"ACTS_IN","name":"Anup Jagdale","type":"Role","_key":"36005","_from":"24450","_to":"24448"} +{"$label":"DIRECTED","_key":"36004","_from":"24449","_to":"24448"} +{"$label":"ACTS_IN","name":"Omar Adnan","type":"Role","_key":"36021","_from":"24459","_to":"24454"} +{"$label":"ACTS_IN","name":"Lina Fawal","type":"Role","_key":"36015","_from":"24458","_to":"24454"} +{"$label":"ACTS_IN","name":"Fatima Fawal","type":"Role","_key":"36013","_from":"24457","_to":"24454"} +{"$label":"ACTS_IN","name":"Khalid","type":"Role","_key":"36012","_from":"24456","_to":"24454"} +{"$label":"ACTS_IN","name":"Anwar El-Ibrahimi","type":"Role","_key":"36009","_from":"24455","_to":"24454"} +{"$label":"DIRECTED","_key":"36031","_from":"24462","_to":"24460"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"36024","_from":"24461","_to":"24460"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"97595","_from":"24461","_to":"57466"} +{"$label":"DIRECTED","_key":"95211","_from":"24462","_to":"56018"} +{"$label":"ACTS_IN","name":"Anna Paccione","type":"Role","_key":"36042","_from":"24471","_to":"24463"} +{"$label":"ACTS_IN","name":"Dylan Paccione","type":"Role","_key":"36041","_from":"24470","_to":"24463"} +{"$label":"ACTS_IN","name":"Brock","type":"Role","_key":"36039","_from":"24469","_to":"24463"} +{"$label":"ACTS_IN","name":"Crunch","type":"Role","_key":"36038","_from":"24468","_to":"24463"} +{"$label":"ACTS_IN","name":"Sonya","type":"Role","_key":"36037","_from":"24467","_to":"24463"} +{"$label":"ACTS_IN","name":"Drey Mayhew","type":"Role","_key":"36036","_from":"24466","_to":"24463"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"36035","_from":"24465","_to":"24463"} +{"$label":"DIRECTED","_key":"36032","_from":"24464","_to":"24463"} +{"$label":"ACTS_IN","name":"Ahsoka Tano (voice)","type":"Role","_key":"88510","_from":"24470","_to":"52456"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"65573","_from":"24470","_to":"40629"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"36053","_from":"24479","_to":"24472"} +{"$label":"ACTS_IN","name":"Interpol Agent","type":"Role","_key":"36052","_from":"24478","_to":"24472"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"36051","_from":"24477","_to":"24472"} +{"$label":"ACTS_IN","name":"Sly","type":"Role","_key":"36050","_from":"24476","_to":"24472"} +{"$label":"ACTS_IN","name":"Johnny Carrera","type":"Role","_key":"36048","_from":"24475","_to":"24472"} +{"$label":"ACTS_IN","name":"Barone","type":"Role","_key":"36046","_from":"24474","_to":"24472"} +{"$label":"DIRECTED","_key":"36044","_from":"24473","_to":"24472"} +{"$label":"ACTS_IN","name":"Dr. Kessler","type":"Role","_key":"36063","_from":"24483","_to":"24480"} +{"$label":"ACTS_IN","name":"Kaji","type":"Role","_key":"36061","_from":"24482","_to":"24480"} +{"$label":"DIRECTED","_key":"36054","_from":"24481","_to":"24480"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"113748","_from":"24482","_to":"67029"} +{"$label":"ACTS_IN","name":"Guru Satchabigknoba","type":"Role","_key":"88487","_from":"24482","_to":"52448"} +{"$label":"ACTS_IN","name":"Melik","type":"Role","_key":"56521","_from":"24482","_to":"35892"} +{"$label":"ACTS_IN","name":"Lupo","type":"Role","_key":"55542","_from":"24482","_to":"35377"} +{"$label":"ACTS_IN","name":"Tiger (voice)","type":"Role","_key":"47108","_from":"24482","_to":"31057"} +{"$label":"ACTS_IN","name":"La Petite Fille","type":"Role","_key":"36065","_from":"24485","_to":"24484"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"36080","_from":"24487","_to":"24486"} +{"$label":"ACTS_IN","name":"Thomas E. Burnett, Jr.","type":"Role","_key":"57238","_from":"24487","_to":"36299"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"57161","_from":"24487","_to":"36271"} +{"$label":"ACTS_IN","name":"Armande","type":"Role","_key":"36092","_from":"24493","_to":"24488"} +{"$label":"ACTS_IN","name":"Monsieur","type":"Role","_key":"36091","_from":"24492","_to":"24488"} +{"$label":"ACTS_IN","name":"Jean-Baptiste Lully","type":"Role","_key":"36088","_from":"24491","_to":"24488"} +{"$label":"ACTS_IN","name":"Gros-Rene","type":"Role","_key":"36085","_from":"24490","_to":"24488"} +{"$label":"DIRECTED","_key":"36081","_from":"24489","_to":"24488"} +{"$label":"DIRECTED","_key":"48637","_from":"24489","_to":"31906"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Pignon","type":"Role","_key":"118111","_from":"24490","_to":"69415"} +{"$label":"ACTS_IN","name":"Marc Roux","type":"Role","_key":"104008","_from":"24490","_to":"61190"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"70094","_from":"24490","_to":"42735"} +{"$label":"ACTS_IN","name":"Gwizdo","type":"Role","_key":"65883","_from":"24490","_to":"40764"} +{"$label":"ACTS_IN","name":"Filippo's Father","type":"Role","_key":"64182","_from":"24491","_to":"40046"} +{"$label":"ACTS_IN","name":"M. Valle","type":"Role","_key":"48644","_from":"24492","_to":"31906"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"36099","_from":"24498","_to":"24494"} +{"$label":"ACTS_IN","name":"The Chef","type":"Role","_key":"36098","_from":"24497","_to":"24494"} +{"$label":"ACTS_IN","name":"Carly","type":"Role","_key":"36097","_from":"24496","_to":"24494"} +{"$label":"DIRECTED","_key":"36093","_from":"24495","_to":"24494"} +{"$label":"DIRECTED","_key":"62448","_from":"24495","_to":"39336"} +{"$label":"DIRECTED","_key":"57904","_from":"24495","_to":"36634"} +{"$label":"ACTS_IN","name":"Floozy 1","type":"Role","_key":"59592","_from":"24496","_to":"37614"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"68058","_from":"24498","_to":"41817"} +{"$label":"ACTS_IN","name":"Miranda Green","type":"Role","_key":"65905","_from":"24498","_to":"40771"} +{"$label":"ACTS_IN","name":"Quan Le","type":"Role","_key":"36111","_from":"24507","_to":"24499"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"36110","_from":"24506","_to":"24499"} +{"$label":"ACTS_IN","name":"Angela Harris","type":"Role","_key":"36109","_from":"24505","_to":"24499"} +{"$label":"ACTS_IN","name":"Cherkasov","type":"Role","_key":"36108","_from":"24504","_to":"24499"} +{"$label":"ACTS_IN","name":"Bodyguard","type":"Role","_key":"36107","_from":"24503","_to":"24499"} +{"$label":"ACTS_IN","name":"Katherine Peyser","type":"Role","_key":"36106","_from":"24502","_to":"24499"} +{"$label":"ACTS_IN","name":"Melissa Peyser","type":"Role","_key":"36105","_from":"24501","_to":"24499"} +{"$label":"DIRECTED","_key":"36100","_from":"24500","_to":"24499"} +{"$label":"DIRECTED","_key":"98259","_from":"24500","_to":"57880"} +{"$label":"DIRECTED","_key":"90662","_from":"24500","_to":"53527"} +{"$label":"DIRECTED","_key":"64755","_from":"24500","_to":"40305"} +{"$label":"DIRECTED","_key":"52559","_from":"24500","_to":"34163"} +{"$label":"ACTS_IN","name":"Laurel Simon","type":"Role","_key":"111880","_from":"24501","_to":"66047"} +{"$label":"ACTS_IN","name":"Marcy","type":"Role","_key":"94313","_from":"24501","_to":"55539"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"93066","_from":"24501","_to":"54864"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"116057","_from":"24505","_to":"68345"} +{"$label":"ACTS_IN","name":"Abby Laramie","type":"Role","_key":"105290","_from":"24505","_to":"61959"} +{"$label":"ACTS_IN","name":"Melanie Hanson","type":"Role","_key":"95905","_from":"24505","_to":"56401"} +{"$label":"ACTS_IN","name":"Debra","type":"Role","_key":"95071","_from":"24505","_to":"55962"} +{"$label":"ACTS_IN","name":"Annie Garrett","type":"Role","_key":"71511","_from":"24505","_to":"43337"} +{"$label":"ACTS_IN","name":"Laura Parish","type":"Role","_key":"69258","_from":"24505","_to":"42348"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"63045","_from":"24505","_to":"39564"} +{"$label":"ACTS_IN","name":"Christine York","type":"Role","_key":"58339","_from":"24505","_to":"36876"} +{"$label":"ACTS_IN","name":"Sarah Bailey","type":"Role","_key":"52554","_from":"24505","_to":"34163"} +{"$label":"ACTS_IN","name":"Susan Lee","type":"Role","_key":"50339","_from":"24506","_to":"32881"} +{"$label":"ACTS_IN","name":"Karaoke Singer","type":"Role","_key":"59652","_from":"24507","_to":"37658"} +{"$label":"ACTS_IN","name":"Mr. Chang","type":"Role","_key":"59165","_from":"24507","_to":"37349"} +{"$label":"DIRECTED","_key":"36125","_from":"24514","_to":"24508"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"36123","_from":"24513","_to":"24508"} +{"$label":"ACTS_IN","name":"Patrick, the bartender","type":"Role","_key":"36121","_from":"24512","_to":"24508"} +{"$label":"ACTS_IN","name":"Ricaldi (as Benito Carruthers)","type":"Role","_key":"36120","_from":"24511","_to":"24508"} +{"$label":"ACTS_IN","name":"First Officer Hemmings","type":"Role","_key":"36119","_from":"24510","_to":"24508"} +{"$label":"ACTS_IN","name":"Dr. Webster","type":"Role","_key":"36118","_from":"24509","_to":"24508"} +{"$label":"ACTS_IN","name":"William Marshall","type":"Role","_key":"118379","_from":"24509","_to":"69592"} +{"$label":"ACTS_IN","name":"Cubitt","type":"Role","_key":"94233","_from":"24509","_to":"55491"} +{"$label":"ACTS_IN","name":"Flight Lt. Denys Cavendish \"The Surveyor\"","type":"Role","_key":"40481","_from":"24509","_to":"27264"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"104621","_from":"24511","_to":"61544"} +{"$label":"ACTS_IN","name":"G\u00fcnther","type":"Role","_key":"36135","_from":"24522","_to":"24515"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"36134","_from":"24521","_to":"24515"} +{"$label":"ACTS_IN","name":"Jochen Wagner","type":"Role","_key":"36133","_from":"24520","_to":"24515"} +{"$label":"ACTS_IN","name":"Erwin","type":"Role","_key":"36132","_from":"24519","_to":"24515"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"36129","_from":"24518","_to":"24515"} +{"$label":"ACTS_IN","name":"Seibt","type":"Role","_key":"36128","_from":"24517","_to":"24515"} +{"$label":"DIRECTED","_key":"36126","_from":"24516","_to":"24515"} +{"$label":"DIRECTED","_key":"36137","_from":"24516","_to":"24523"} +{"$label":"ACTS_IN","name":"Acki L\u00fcders (Bootsmann)","type":"Role","_key":"72946","_from":"24517","_to":"43917"} +{"$label":"ACTS_IN","name":"Bernd Kr\u00fcger","type":"Role","_key":"53744","_from":"24517","_to":"34649"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"49390","_from":"24517","_to":"32341"} +{"$label":"ACTS_IN","name":"Horst Strasser","type":"Role","_key":"37320","_from":"24517","_to":"25284"} +{"$label":"ACTS_IN","name":"Seibt","type":"Role","_key":"36152","_from":"24517","_to":"24525"} +{"$label":"ACTS_IN","name":"Seibt","type":"Role","_key":"36139","_from":"24517","_to":"24523"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"36149","_from":"24518","_to":"24525"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"36140","_from":"24518","_to":"24523"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36153","_from":"24519","_to":"24525"} +{"$label":"ACTS_IN","name":"Erwin","type":"Role","_key":"36143","_from":"24519","_to":"24523"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36159","_from":"24520","_to":"24525"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36156","_from":"24521","_to":"24525"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"36145","_from":"24521","_to":"24523"} +{"$label":"ACTS_IN","name":"Erzieher Diethelm","type":"Role","_key":"43801","_from":"24522","_to":"29250"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36155","_from":"24522","_to":"24525"} +{"$label":"ACTS_IN","name":"G\u00fcnther","type":"Role","_key":"36144","_from":"24522","_to":"24523"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36146","_from":"24524","_to":"24523"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36158","_from":"24528","_to":"24525"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36157","_from":"24527","_to":"24525"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36154","_from":"24526","_to":"24525"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"43468","_from":"24526","_to":"29036"} +{"$label":"ACTS_IN","name":"Lisa Naumann","type":"Role","_key":"39913","_from":"24527","_to":"26965"} +{"$label":"DIRECTED","_key":"36166","_from":"24536","_to":"24529"} +{"$label":"ACTS_IN","name":"Maciste","type":"Role","_key":"36165","_from":"24535","_to":"24529"} +{"$label":"ACTS_IN","name":"Fulvio Axilla","type":"Role","_key":"36164","_from":"24534","_to":"24529"} +{"$label":"ACTS_IN","name":"Karthalo","type":"Role","_key":"36163","_from":"24533","_to":"24529"} +{"$label":"ACTS_IN","name":"Croessa","type":"Role","_key":"36162","_from":"24532","_to":"24529"} +{"$label":"ACTS_IN","name":"Cabiria (Frau)","type":"Role","_key":"36161","_from":"24531","_to":"24529"} +{"$label":"ACTS_IN","name":"Cabiria (Kind)","type":"Role","_key":"36160","_from":"24530","_to":"24529"} +{"$label":"ACTS_IN","name":"Giuseppe Bragana","type":"Role","_key":"36174","_from":"24542","_to":"24537"} +{"$label":"ACTS_IN","name":"Don Remigio","type":"Role","_key":"36173","_from":"24541","_to":"24537"} +{"$label":"ACTS_IN","name":"Lo Spagnolo","type":"Role","_key":"36171","_from":"24540","_to":"24537"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"36170","_from":"24539","_to":"24537"} +{"$label":"ACTS_IN","name":"Giovanna Bragana","type":"Role","_key":"36168","_from":"24538","_to":"24537"} +{"$label":"ACTS_IN","name":"Attacchino","type":"Role","_key":"36180","_from":"24548","_to":"24543"} +{"$label":"ACTS_IN","name":"Mendicante","type":"Role","_key":"36179","_from":"24547","_to":"24543"} +{"$label":"ACTS_IN","name":"Maria Ricci","type":"Role","_key":"36178","_from":"24546","_to":"24543"} +{"$label":"ACTS_IN","name":"Bruno Ricci","type":"Role","_key":"36177","_from":"24545","_to":"24543"} +{"$label":"ACTS_IN","name":"Antonio Ricci","type":"Role","_key":"36176","_from":"24544","_to":"24543"} +{"$label":"ACTS_IN","name":"Lavonia","type":"Role","_key":"36189","_from":"24555","_to":"24549"} +{"$label":"ACTS_IN","name":"Junkyard Sal","type":"Role","_key":"36188","_from":"24554","_to":"24549"} +{"$label":"ACTS_IN","name":"Lamar Shedd","type":"Role","_key":"36187","_from":"24553","_to":"24549"} +{"$label":"ACTS_IN","name":"Nurse Flovilla Thatch","type":"Role","_key":"36186","_from":"24552","_to":"24549"} +{"$label":"ACTS_IN","name":"Eufaula Roop","type":"Role","_key":"36183","_from":"24551","_to":"24549"} +{"$label":"ACTS_IN","name":"Super Soul","type":"Role","_key":"36182","_from":"24550","_to":"24549"} +{"$label":"ACTS_IN","name":"Inga Lindstr\u00f6m","type":"Role","_key":"46636","_from":"24550","_to":"30797"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"39549","_from":"24550","_to":"26723"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39542","_from":"24550","_to":"26717"} +{"$label":"ACTS_IN","name":"Showgirl","type":"Role","_key":"39529","_from":"24550","_to":"26695"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39508","_from":"24550","_to":"26693"} +{"$label":"ACTS_IN","name":"Uschi","type":"Role","_key":"39487","_from":"24550","_to":"26690"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39460","_from":"24550","_to":"26676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39457","_from":"24550","_to":"26674"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39438","_from":"24550","_to":"26656"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39429","_from":"24550","_to":"26650"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"39424","_from":"24550","_to":"26649"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39386","_from":"24550","_to":"26628"} +{"$label":"ACTS_IN","name":"Brunette","type":"Role","_key":"39146","_from":"24550","_to":"26456"} +{"$label":"ACTS_IN","name":"Soul","type":"Role","_key":"39107","_from":"24550","_to":"26431"} +{"$label":"ACTS_IN","name":"SuperSoul \/ Telephon Operator","type":"Role","_key":"38977","_from":"24550","_to":"26338"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"38385","_from":"24553","_to":"25922"} +{"$label":"ACTS_IN","name":"Sally Sue","type":"Role","_key":"39156","_from":"24555","_to":"26462"} +{"$label":"ACTS_IN","name":"The Greek Chorus","type":"Role","_key":"38384","_from":"24555","_to":"25922"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"36190","_from":"24557","_to":"24556"} +{"$label":"ACTS_IN","name":"Corrado","type":"Role","_key":"36196","_from":"24561","_to":"24558"} +{"$label":"ACTS_IN","name":"Patrizia","type":"Role","_key":"36195","_from":"24560","_to":"24558"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"36192","_from":"24559","_to":"24558"} +{"$label":"ACTS_IN","name":"Mme Foucault","type":"Role","_key":"37834","_from":"24559","_to":"25644"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43668","_from":"24560","_to":"29161"} +{"$label":"ACTS_IN","name":"Lady Montague","type":"Role","_key":"41047","_from":"24560","_to":"27609"} +{"$label":"ACTS_IN","name":"Gracia","type":"Role","_key":"36201","_from":"24563","_to":"24562"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"36208","_from":"24569","_to":"24564"} +{"$label":"ACTS_IN","name":"Marcel Chevalier","type":"Role","_key":"36207","_from":"24568","_to":"24564"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"36206","_from":"24567","_to":"24564"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"36205","_from":"24566","_to":"24564"} +{"$label":"ACTS_IN","name":"Maman","type":"Role","_key":"36204","_from":"24565","_to":"24564"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"36223","_from":"24585","_to":"24570"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"36222","_from":"24584","_to":"24570"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"36221","_from":"24583","_to":"24570"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"36220","_from":"24582","_to":"24570"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"36219","_from":"24581","_to":"24570"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"36218","_from":"24580","_to":"24570"} +{"$label":"ACTS_IN","name":"Aliz\u00e9","type":"Role","_key":"36217","_from":"24579","_to":"24570"} +{"$label":"ACTS_IN","name":"Laeticia","type":"Role","_key":"36216","_from":"24578","_to":"24570"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"36215","_from":"24577","_to":"24570"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"36214","_from":"24576","_to":"24570"} +{"$label":"ACTS_IN","name":"Jojo","type":"Role","_key":"36213","_from":"24575","_to":"24570"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"36212","_from":"24574","_to":"24570"} +{"$label":"ACTS_IN","name":"Georges Lopez","type":"Role","_key":"36211","_from":"24573","_to":"24570"} +{"$label":"ACTS_IN","name":"Olivier","type":"Role","_key":"36210","_from":"24572","_to":"24570"} +{"$label":"DIRECTED","_key":"36209","_from":"24571","_to":"24570"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68175","_from":"24571","_to":"41872"} +{"$label":"DIRECTED","_key":"68171","_from":"24571","_to":"41872"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"121694","_from":"24573","_to":"71493"} +{"$label":"ACTS_IN","name":"Everardo","type":"Role","_key":"119699","_from":"24573","_to":"70302"} +{"$label":"ACTS_IN","name":"Eddie Serrano","type":"Role","_key":"119695","_from":"24573","_to":"70295"} +{"$label":"ACTS_IN","name":"Papi (voice)","type":"Role","_key":"100062","_from":"24573","_to":"59023"} +{"$label":"ACTS_IN","name":"Mr. Electricidad \/ Tobor \/ Ice Guardian","type":"Role","_key":"99020","_from":"24573","_to":"58332"} +{"$label":"ACTS_IN","name":"Father Salizar","type":"Role","_key":"92637","_from":"24573","_to":"54680"} +{"$label":"ACTS_IN","name":"Agent Ernie Rodriquez","type":"Role","_key":"56270","_from":"24573","_to":"35746"} +{"$label":"ACTS_IN","name":"Ramzi","type":"Role","_key":"36233","_from":"24592","_to":"24586"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"36232","_from":"24591","_to":"24586"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"36231","_from":"24590","_to":"24586"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"36229","_from":"24589","_to":"24586"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"36226","_from":"24588","_to":"24586"} +{"$label":"DIRECTED","_key":"36224","_from":"24587","_to":"24586"} +{"$label":"ACTS_IN","name":"Gaspard","type":"Role","_key":"115750","_from":"24589","_to":"68154"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"103579","_from":"24589","_to":"60921"} +{"$label":"ACTS_IN","name":"Fran\u00e7oise","type":"Role","_key":"112421","_from":"24590","_to":"66374"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"50595","_from":"24590","_to":"33043"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"48645","_from":"24590","_to":"31906"} +{"$label":"ACTS_IN","name":"Abdel","type":"Role","_key":"93883","_from":"24592","_to":"55271"} +{"$label":"DIRECTED","_key":"36245","_from":"24598","_to":"24593"} +{"$label":"ACTS_IN","name":"FBI Agent Mathis","type":"Role","_key":"36243","_from":"24597","_to":"24593"} +{"$label":"ACTS_IN","name":"Sunshine Farmer","type":"Role","_key":"36241","_from":"24596","_to":"24593"} +{"$label":"ACTS_IN","name":"Stanley Farmer","type":"Role","_key":"36240","_from":"24595","_to":"24593"} +{"$label":"ACTS_IN","name":"Shepard Farmer","type":"Role","_key":"36239","_from":"24594","_to":"24593"} +{"$label":"ACTS_IN","name":"Ned Nickerson","type":"Role","_key":"98252","_from":"24594","_to":"57880"} +{"$label":"ACTS_IN","name":"Will Shephard\/Charlie Kittredge","type":"Role","_key":"49305","_from":"24594","_to":"32288"} +{"$label":"ACTS_IN","name":"Young David","type":"Role","_key":"48596","_from":"24594","_to":"31879"} +{"$label":"ACTS_IN","name":"Henry McCarthy","type":"Role","_key":"69561","_from":"24597","_to":"42473"} +{"$label":"ACTS_IN","name":"Zwinglingszenobit 2","type":"Role","_key":"50748","_from":"24597","_to":"33114"} +{"$label":"DIRECTED","_key":"69556","_from":"24598","_to":"42473"} +{"$label":"ACTS_IN","name":"Zwinglingszenobit","type":"Role","_key":"50746","_from":"24598","_to":"33114"} +{"$label":"ACTS_IN","name":"Genevieve","type":"Role","_key":"36255","_from":"24602","_to":"24600"} +{"$label":"ACTS_IN","name":"Soo Yung","type":"Role","_key":"36253","_from":"24601","_to":"24600"} +{"$label":"ACTS_IN","name":"Ann Gao","type":"Role","_key":"114787","_from":"24601","_to":"67614"} +{"$label":"ACTS_IN","name":"Jane (as Zhang Jing Chu)","type":"Role","_key":"109734","_from":"24601","_to":"64808"} +{"$label":"ACTS_IN","name":"Pin Yu","type":"Role","_key":"89844","_from":"24601","_to":"53161"} +{"$label":"ACTS_IN","name":"Schwester","type":"Role","_key":"71757","_from":"24601","_to":"43434"} +{"$label":"ACTS_IN","name":"Langshu","type":"Role","_key":"40593","_from":"24601","_to":"27336"} +{"$label":"ACTS_IN","name":"Isabella Molina","type":"Role","_key":"36260","_from":"24604","_to":"24603"} +{"$label":"ACTS_IN","name":"Trina","type":"Role","_key":"120184","_from":"24604","_to":"70585"} +{"$label":"ACTS_IN","name":"Porphyria","type":"Role","_key":"119235","_from":"24604","_to":"70057"} +{"$label":"ACTS_IN","name":"Monique Vasquez","type":"Role","_key":"95846","_from":"24604","_to":"56368"} +{"$label":"ACTS_IN","name":"Nunez","type":"Role","_key":"65751","_from":"24604","_to":"40705"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"60128","_from":"24604","_to":"37937"} +{"$label":"ACTS_IN","name":"Gabriella","type":"Role","_key":"54658","_from":"24604","_to":"35006"} +{"$label":"ACTS_IN","name":"Tommy Darden","type":"Role","_key":"36275","_from":"24610","_to":"24605"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"36274","_from":"24609","_to":"24605"} +{"$label":"ACTS_IN","name":"Jorgensen","type":"Role","_key":"36273","_from":"24608","_to":"24605"} +{"$label":"ACTS_IN","name":"Campos","type":"Role","_key":"36272","_from":"24607","_to":"24605"} +{"$label":"ACTS_IN","name":"Glen Hollander","type":"Role","_key":"36271","_from":"24606","_to":"24605"} +{"$label":"ACTS_IN","name":"Chief of Police","type":"Role","_key":"60549","_from":"24606","_to":"38218"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"121175","_from":"24610","_to":"71181"} +{"$label":"ACTS_IN","name":"Scotch","type":"Role","_key":"116427","_from":"24610","_to":"68531"} +{"$label":"ACTS_IN","name":"Griffin Cavenaugh","type":"Role","_key":"88608","_from":"24610","_to":"52505"} +{"$label":"ACTS_IN","name":"S\u00f8vnforsker Arne","type":"Role","_key":"36286","_from":"24617","_to":"24611"} +{"$label":"ACTS_IN","name":"Allan Simonsen","type":"Role","_key":"36285","_from":"24616","_to":"24611"} +{"$label":"ACTS_IN","name":"Tejs","type":"Role","_key":"36283","_from":"24615","_to":"24611"} +{"$label":"ACTS_IN","name":"Dommeren","type":"Role","_key":"36281","_from":"24614","_to":"24611"} +{"$label":"ACTS_IN","name":"Franc","type":"Role","_key":"36280","_from":"24613","_to":"24611"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"36278","_from":"24612","_to":"24611"} +{"$label":"ACTS_IN","name":"Robert Hansen","type":"Role","_key":"106464","_from":"24612","_to":"62723"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"68471","_from":"24612","_to":"42002"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"95053","_from":"24614","_to":"55952"} +{"$label":"ACTS_IN","name":"Stig","type":"Role","_key":"106049","_from":"24615","_to":"62450"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"95494","_from":"24615","_to":"56171"} +{"$label":"ACTS_IN","name":"Willy, Anjas far","type":"Role","_key":"121206","_from":"24616","_to":"71197"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"36291","_from":"24619","_to":"24618"} +{"$label":"DIRECTED","_key":"54806","_from":"24619","_to":"35065"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"36300","_from":"24625","_to":"24620"} +{"$label":"ACTS_IN","name":"Mary McGregor","type":"Role","_key":"36299","_from":"24624","_to":"24620"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"36298","_from":"24623","_to":"24620"} +{"$label":"ACTS_IN","name":"Gordon Lowther","type":"Role","_key":"36297","_from":"24622","_to":"24620"} +{"$label":"ACTS_IN","name":"Teddy Lloyd","type":"Role","_key":"36294","_from":"24621","_to":"24620"} +{"$label":"ACTS_IN","name":"the Prince","type":"Role","_key":"41042","_from":"24621","_to":"27609"} +{"$label":"ACTS_IN","name":"Sherlock Holmes","type":"Role","_key":"36354","_from":"24621","_to":"24657"} +{"$label":"ACTS_IN","name":"Ercole Visconti","type":"Role","_key":"36328","_from":"24621","_to":"24646"} +{"$label":"ACTS_IN","name":"Carswell","type":"Role","_key":"103682","_from":"24622","_to":"60984"} +{"$label":"ACTS_IN","name":"Seaman Edward Birkett","type":"Role","_key":"67782","_from":"24622","_to":"41668"} +{"$label":"ACTS_IN","name":"Flight Lt. Sandy MacDonald \"Intelligence\"","type":"Role","_key":"40478","_from":"24622","_to":"27264"} +{"$label":"ACTS_IN","name":"Bride of Frankenstein (voice)","type":"Role","_key":"111838","_from":"24624","_to":"66010"} +{"$label":"ACTS_IN","name":"Lady Edgware","type":"Role","_key":"41406","_from":"24624","_to":"27831"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"36314","_from":"24638","_to":"24626"} +{"$label":"ACTS_IN","name":"Melinda Ross","type":"Role","_key":"36313","_from":"24637","_to":"24626"} +{"$label":"ACTS_IN","name":"Stud","type":"Role","_key":"36312","_from":"24636","_to":"24626"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"36311","_from":"24635","_to":"24626"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"36310","_from":"24634","_to":"24626"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"36309","_from":"24633","_to":"24626"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"36308","_from":"24632","_to":"24626"} +{"$label":"ACTS_IN","name":"Deidre","type":"Role","_key":"36307","_from":"24631","_to":"24626"} +{"$label":"ACTS_IN","name":"Lori","type":"Role","_key":"36306","_from":"24630","_to":"24626"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"36305","_from":"24629","_to":"24626"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"36303","_from":"24628","_to":"24626"} +{"$label":"ACTS_IN","name":"Todd Mathews","type":"Role","_key":"36302","_from":"24627","_to":"24626"} +{"$label":"ACTS_IN","name":"Robert Iverson","type":"Role","_key":"36487","_from":"24627","_to":"24747"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"110100","_from":"24629","_to":"65058"} +{"$label":"ACTS_IN","name":"Nora Iverson","type":"Role","_key":"36488","_from":"24631","_to":"24747"} +{"$label":"ACTS_IN","name":"Reva","type":"Role","_key":"36650","_from":"24632","_to":"24830"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"36653","_from":"24634","_to":"24839"} +{"$label":"ACTS_IN","name":"Jury Foreman","type":"Role","_key":"36493","_from":"24636","_to":"24747"} +{"$label":"ACTS_IN","name":"Alchemy","type":"Role","_key":"103419","_from":"24637","_to":"60834"} +{"$label":"ACTS_IN","name":"Officer Phillips","type":"Role","_key":"58289","_from":"24637","_to":"36857"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36324","_from":"24645","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36323","_from":"24644","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36322","_from":"24643","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36321","_from":"24642","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36320","_from":"24641","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36319","_from":"24640","_to":"24639"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36421","_from":"24640","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36420","_from":"24643","_to":"24708"} +{"$label":"ACTS_IN","name":"Crowder's Man","type":"Role","_key":"36339","_from":"24650","_to":"24646"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"36338","_from":"24649","_to":"24646"} +{"$label":"ACTS_IN","name":"Mme Dambreuse","type":"Role","_key":"36337","_from":"24648","_to":"24646"} +{"$label":"ACTS_IN","name":"Crowder","type":"Role","_key":"36332","_from":"24647","_to":"24646"} +{"$label":"ACTS_IN","name":"Samuel Fennan","type":"Role","_key":"101666","_from":"24647","_to":"59833"} +{"$label":"ACTS_IN","name":"Greta Brettanini","type":"Role","_key":"36353","_from":"24656","_to":"24651"} +{"$label":"ACTS_IN","name":"Katrin Wegener (7 Jahre alt)","type":"Role","_key":"36349","_from":"24655","_to":"24651"} +{"$label":"ACTS_IN","name":"Feddersen","type":"Role","_key":"36347","_from":"24654","_to":"24651"} +{"$label":"ACTS_IN","name":"Ruth H\u00e4ffgens","type":"Role","_key":"36345","_from":"24653","_to":"24651"} +{"$label":"DIRECTED","_key":"36340","_from":"24652","_to":"24651"} +{"$label":"ACTS_IN","name":"Joseph Goebbels","type":"Role","_key":"110287","_from":"24654","_to":"65170"} +{"$label":"ACTS_IN","name":"Oliver Bendt","type":"Role","_key":"46311","_from":"24654","_to":"30602"} +{"$label":"ACTS_IN","name":"Joseph Goebbels","type":"Role","_key":"42201","_from":"24654","_to":"28267"} +{"$label":"ACTS_IN","name":"Madame Petrova","type":"Role","_key":"36358","_from":"24658","_to":"24657"} +{"$label":"ACTS_IN","name":"Ballerina","type":"Role","_key":"39467","_from":"24658","_to":"26678"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36371","_from":"24670","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36370","_from":"24669","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36369","_from":"24668","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36368","_from":"24667","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36367","_from":"24666","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36366","_from":"24665","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36365","_from":"24664","_to":"24659"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36364","_from":"24663","_to":"24659"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"36363","_from":"24662","_to":"24659"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"36362","_from":"24661","_to":"24659"} +{"$label":"DIRECTED","_key":"36361","_from":"24660","_to":"24659"} +{"$label":"ACTS_IN","name":"Scene 3","type":"Role","_key":"97264","_from":"24663","_to":"57211"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88516","_from":"24663","_to":"52461"} +{"$label":"ACTS_IN","name":"Marco - Scene 5","type":"Role","_key":"99594","_from":"24664","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 4","type":"Role","_key":"97265","_from":"24664","_to":"57211"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88518","_from":"24664","_to":"52461"} +{"$label":"DIRECTED","_key":"88512","_from":"24664","_to":"52461"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"36379","_from":"24675","_to":"24671"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"36378","_from":"24674","_to":"24671"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"36377","_from":"24673","_to":"24671"} +{"$label":"DIRECTED","_key":"36372","_from":"24672","_to":"24671"} +{"$label":"ACTS_IN","name":"Helen Rhodes","type":"Role","_key":"58682","_from":"24673","_to":"37064"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"36388","_from":"24684","_to":"24676"} +{"$label":"ACTS_IN","name":"Dr. Jackson","type":"Role","_key":"36387","_from":"24683","_to":"24676"} +{"$label":"ACTS_IN","name":"Dr. Carmichael","type":"Role","_key":"36386","_from":"24682","_to":"24676"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"36385","_from":"24681","_to":"24676"} +{"$label":"ACTS_IN","name":"Andrea Watkins","type":"Role","_key":"36384","_from":"24680","_to":"24676"} +{"$label":"ACTS_IN","name":"Greg Arnold","type":"Role","_key":"36383","_from":"24679","_to":"24676"} +{"$label":"ACTS_IN","name":"Melinda Arnold","type":"Role","_key":"36382","_from":"24678","_to":"24676"} +{"$label":"DIRECTED","_key":"36381","_from":"24677","_to":"24676"} +{"$label":"ACTS_IN","name":"Nell","type":"Role","_key":"121177","_from":"24678","_to":"71181"} +{"$label":"ACTS_IN","name":"Mr. Buckell \/ Mr. Reeds","type":"Role","_key":"120915","_from":"24684","_to":"70994"} +{"$label":"ACTS_IN","name":"Male Detective","type":"Role","_key":"116888","_from":"24684","_to":"68815"} +{"$label":"ACTS_IN","name":"D.A. Hemmings","type":"Role","_key":"36495","_from":"24684","_to":"24747"} +{"$label":"DIRECTED","_key":"36389","_from":"24686","_to":"24685"} +{"$label":"ACTS_IN","name":"Rambo","type":"Role","_key":"36401","_from":"24695","_to":"24688"} +{"$label":"ACTS_IN","name":"Volleyballspieler","type":"Role","_key":"36400","_from":"24694","_to":"24688"} +{"$label":"ACTS_IN","name":"Flavio","type":"Role","_key":"36399","_from":"24693","_to":"24688"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"36398","_from":"24692","_to":"24688"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"36396","_from":"24691","_to":"24688"} +{"$label":"ACTS_IN","name":"Emily Reed","type":"Role","_key":"36395","_from":"24690","_to":"24688"} +{"$label":"DIRECTED","_key":"36393","_from":"24689","_to":"24688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38742","_from":"24689","_to":"26175"} +{"$label":"ACTS_IN","name":"Direktor","type":"Role","_key":"37018","_from":"24689","_to":"25084"} +{"$label":"DIRECTED","_key":"37008","_from":"24689","_to":"25084"} +{"$label":"DIRECTED","_key":"36971","_from":"24689","_to":"25064"} +{"$label":"DIRECTED","_key":"36966","_from":"24689","_to":"25061"} +{"$label":"DIRECTED","_key":"36935","_from":"24689","_to":"25042"} +{"$label":"DIRECTED","_key":"36912","_from":"24689","_to":"25022"} +{"$label":"DIRECTED","_key":"36892","_from":"24689","_to":"25008"} +{"$label":"DIRECTED","_key":"36843","_from":"24689","_to":"24987"} +{"$label":"DIRECTED","_key":"36806","_from":"24689","_to":"24964"} +{"$label":"DIRECTED","_key":"36779","_from":"24689","_to":"24943"} +{"$label":"DIRECTED","_key":"36606","_from":"24689","_to":"24811"} +{"$label":"DIRECTED","_key":"36594","_from":"24689","_to":"24806"} +{"$label":"DIRECTED","_key":"36575","_from":"24689","_to":"24794"} +{"$label":"DIRECTED","_key":"36559","_from":"24689","_to":"24786"} +{"$label":"DIRECTED","_key":"36523","_from":"24689","_to":"24766"} +{"$label":"DIRECTED","_key":"36496","_from":"24689","_to":"24754"} +{"$label":"ACTS_IN","name":"Adela de Otero","type":"Role","_key":"112204","_from":"24691","_to":"66264"} +{"$label":"ACTS_IN","name":"Duchessa Radal\u00ec","type":"Role","_key":"109453","_from":"24691","_to":"64659"} +{"$label":"ACTS_IN","name":"Mar\u00eda Cardenal","type":"Role","_key":"47845","_from":"24691","_to":"31496"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"49782","_from":"24693","_to":"32571"} +{"$label":"ACTS_IN","name":"Big Boss","type":"Role","_key":"36413","_from":"24707","_to":"24696"} +{"$label":"ACTS_IN","name":"Laci","type":"Role","_key":"36412","_from":"24706","_to":"24696"} +{"$label":"ACTS_IN","name":"Szofi","type":"Role","_key":"36411","_from":"24705","_to":"24696"} +{"$label":"ACTS_IN","name":"B\u00e9la","type":"Role","_key":"36410","_from":"24704","_to":"24696"} +{"$label":"ACTS_IN","name":"Shadow","type":"Role","_key":"36409","_from":"24703","_to":"24696"} +{"$label":"ACTS_IN","name":"Bootsie","type":"Role","_key":"36408","_from":"24702","_to":"24696"} +{"$label":"ACTS_IN","name":"Tibi","type":"Role","_key":"36407","_from":"24701","_to":"24696"} +{"$label":"ACTS_IN","name":"Lecs\u00f3","type":"Role","_key":"36406","_from":"24700","_to":"24696"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"36405","_from":"24699","_to":"24696"} +{"$label":"ACTS_IN","name":"Muki","type":"Role","_key":"36404","_from":"24698","_to":"24696"} +{"$label":"ACTS_IN","name":"Bulcs\u00fa","type":"Role","_key":"36403","_from":"24697","_to":"24696"} +{"$label":"ACTS_IN","name":"Tibi V\u00e1mos","type":"Role","_key":"95428","_from":"24697","_to":"56137"} +{"$label":"ACTS_IN","name":"Tam\u00e1s V\u00e1rnai","type":"Role","_key":"113926","_from":"24698","_to":"67105"} +{"$label":"ACTS_IN","name":"\u00c1kos V\u00e1rnai","type":"Role","_key":"113927","_from":"24703","_to":"67105"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"62071","_from":"24703","_to":"39083"} +{"$label":"ACTS_IN","name":"Baron Zedlitz","type":"Role","_key":"50823","_from":"24707","_to":"33167"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36432","_from":"24719","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36431","_from":"24718","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36430","_from":"24717","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36429","_from":"24716","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36427","_from":"24715","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36426","_from":"24714","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36425","_from":"24713","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36419","_from":"24712","_to":"24708"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"36418","_from":"24711","_to":"24708"} +{"$label":"DIRECTED","_key":"36415","_from":"24710","_to":"24708"} +{"$label":"DIRECTED","_key":"36414","_from":"24709","_to":"24708"} +{"$label":"DIRECTED","_key":"114852","_from":"24709","_to":"67656"} +{"$label":"ACTS_IN","name":"The Hulk","type":"Role","_key":"120512","_from":"24711","_to":"70786"} +{"$label":"ACTS_IN","name":"Lou Ferrigno","type":"Role","_key":"109437","_from":"24711","_to":"64647"} +{"$label":"ACTS_IN","name":"Finnur","type":"Role","_key":"36446","_from":"24724","_to":"24720"} +{"$label":"ACTS_IN","name":"Gorm","type":"Role","_key":"36439","_from":"24723","_to":"24720"} +{"$label":"ACTS_IN","name":"Heidi A.","type":"Role","_key":"36438","_from":"24722","_to":"24720"} +{"$label":"ACTS_IN","name":"Translator","type":"Role","_key":"36436","_from":"24721","_to":"24720"} +{"$label":"ACTS_IN","name":"Per Jensen","type":"Role","_key":"106673","_from":"24723","_to":"62863"} +{"$label":"ACTS_IN","name":"Nemesis","type":"Role","_key":"36450","_from":"24728","_to":"24725"} +{"$label":"ACTS_IN","name":"Helen Camden","type":"Role","_key":"36449","_from":"24727","_to":"24725"} +{"$label":"DIRECTED","_key":"36447","_from":"24726","_to":"24725"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"36470","_from":"24737","_to":"24729"} +{"$label":"ACTS_IN","name":"Packman","type":"Role","_key":"36469","_from":"24736","_to":"24729"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"36468","_from":"24735","_to":"24729"} +{"$label":"ACTS_IN","name":"Dorothy Stephens","type":"Role","_key":"36466","_from":"24734","_to":"24729"} +{"$label":"ACTS_IN","name":"Halsey","type":"Role","_key":"36464","_from":"24733","_to":"24729"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"36461","_from":"24732","_to":"24729"} +{"$label":"ACTS_IN","name":"Newton","type":"Role","_key":"36459","_from":"24731","_to":"24729"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"36458","_from":"24730","_to":"24729"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"119441","_from":"24732","_to":"70168"} +{"$label":"ACTS_IN","name":"Bobby Joe","type":"Role","_key":"101996","_from":"24732","_to":"60016"} +{"$label":"ACTS_IN","name":"Sandy Lane","type":"Role","_key":"101816","_from":"24732","_to":"59926"} +{"$label":"ACTS_IN","name":"David Boies","type":"Role","_key":"98286","_from":"24732","_to":"57900"} +{"$label":"ACTS_IN","name":"Poopchev (voice)","type":"Role","_key":"97731","_from":"24732","_to":"57545"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94141","_from":"24732","_to":"55439"} +{"$label":"ACTS_IN","name":"Jack Markin","type":"Role","_key":"72417","_from":"24732","_to":"43716"} +{"$label":"ACTS_IN","name":"Phillip Adams","type":"Role","_key":"70273","_from":"24732","_to":"42822"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"68199","_from":"24732","_to":"41884"} +{"$label":"ACTS_IN","name":"John 'Stumpy' Pepys","type":"Role","_key":"67429","_from":"24732","_to":"41533"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"61551","_from":"24732","_to":"38803"} +{"$label":"ACTS_IN","name":"Frank Landers","type":"Role","_key":"59953","_from":"24732","_to":"37851"} +{"$label":"ACTS_IN","name":"Joe Creigh","type":"Role","_key":"42616","_from":"24732","_to":"28531"} +{"$label":"ACTS_IN","name":"Griffin","type":"Role","_key":"38801","_from":"24732","_to":"26203"} +{"$label":"ACTS_IN","name":"Annette","type":"Role","_key":"102324","_from":"24734","_to":"60201"} +{"$label":"ACTS_IN","name":"Ken Rock","type":"Role","_key":"36485","_from":"24746","_to":"24738"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"36484","_from":"24745","_to":"24738"} +{"$label":"ACTS_IN","name":"Ecmee","type":"Role","_key":"36483","_from":"24744","_to":"24738"} +{"$label":"ACTS_IN","name":"Todd Nash","type":"Role","_key":"36482","_from":"24743","_to":"24738"} +{"$label":"ACTS_IN","name":"Sheila Dodge","type":"Role","_key":"36478","_from":"24742","_to":"24738"} +{"$label":"ACTS_IN","name":"Jenny O'Rourke","type":"Role","_key":"36475","_from":"24741","_to":"24738"} +{"$label":"ACTS_IN","name":"Nick Demec","type":"Role","_key":"36473","_from":"24740","_to":"24738"} +{"$label":"DIRECTED","_key":"36472","_from":"24739","_to":"24738"} +{"$label":"DIRECTED","_key":"116062","_from":"24739","_to":"68347"} +{"$label":"DIRECTED","_key":"113717","_from":"24739","_to":"67017"} +{"$label":"DIRECTED","_key":"112437","_from":"24739","_to":"66383"} +{"$label":"DIRECTED","_key":"72397","_from":"24739","_to":"43711"} +{"$label":"DIRECTED","_key":"66374","_from":"24739","_to":"41050"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"68998","_from":"24739","_to":"42233"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"91580","_from":"24740","_to":"53984"} +{"$label":"ACTS_IN","name":"Capt. Apollo","type":"Role","_key":"55212","_from":"24740","_to":"35225"} +{"$label":"ACTS_IN","name":"Sandy Sinclair","type":"Role","_key":"69723","_from":"24741","_to":"42559"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"36494","_from":"24753","_to":"24747"} +{"$label":"ACTS_IN","name":"Precious","type":"Role","_key":"36492","_from":"24752","_to":"24747"} +{"$label":"ACTS_IN","name":"Corinna Fleitta","type":"Role","_key":"36491","_from":"24751","_to":"24747"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"36490","_from":"24750","_to":"24747"} +{"$label":"ACTS_IN","name":"Pearl Gerard","type":"Role","_key":"36489","_from":"24749","_to":"24747"} +{"$label":"DIRECTED","_key":"36486","_from":"24748","_to":"24747"} +{"$label":"ACTS_IN","name":"Dad Asparagus (voice)","type":"Role","_key":"103470","_from":"24750","_to":"60857"} +{"$label":"ACTS_IN","name":"Buzzy's Flashback Girl","type":"Role","_key":"58295","_from":"24753","_to":"36857"} +{"$label":"ACTS_IN","name":"J.J. Clark","type":"Role","_key":"36512","_from":"24765","_to":"24754"} +{"$label":"ACTS_IN","name":"Colon. Winslow","type":"Role","_key":"36511","_from":"24764","_to":"24754"} +{"$label":"ACTS_IN","name":"Capt. Edwards","type":"Role","_key":"36510","_from":"24763","_to":"24754"} +{"$label":"ACTS_IN","name":"Joshua Winslow","type":"Role","_key":"36507","_from":"24762","_to":"24754"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"36504","_from":"24761","_to":"24754"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"36503","_from":"24760","_to":"24754"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"36501","_from":"24759","_to":"24754"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"36500","_from":"24758","_to":"24754"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"36499","_from":"24757","_to":"24754"} +{"$label":"ACTS_IN","name":"Elle","type":"Role","_key":"36498","_from":"24756","_to":"24754"} +{"$label":"ACTS_IN","name":"Blue McDonald","type":"Role","_key":"36497","_from":"24755","_to":"24754"} +{"$label":"ACTS_IN","name":"Suzzi","type":"Role","_key":"95354","_from":"24755","_to":"56098"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"64938","_from":"24755","_to":"40373"} +{"$label":"ACTS_IN","name":"Trudy","type":"Role","_key":"36579","_from":"24755","_to":"24794"} +{"$label":"ACTS_IN","name":"Aunt Helen","type":"Role","_key":"109755","_from":"24756","_to":"64813"} +{"$label":"ACTS_IN","name":"Jules Myers","type":"Role","_key":"55268","_from":"24756","_to":"35246"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"55627","_from":"24758","_to":"35413"} +{"$label":"ACTS_IN","name":"Marlene","type":"Role","_key":"36514","_from":"24758","_to":"24766"} +{"$label":"ACTS_IN","name":"Elanie","type":"Role","_key":"36588","_from":"24759","_to":"24794"} +{"$label":"ACTS_IN","name":"The American Tourist","type":"Role","_key":"36853","_from":"24762","_to":"24987"} +{"$label":"ACTS_IN","name":"Leader","type":"Role","_key":"60195","_from":"24763","_to":"37970"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"119978","_from":"24764","_to":"70461"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"36937","_from":"24765","_to":"25042"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"36522","_from":"24771","_to":"24766"} +{"$label":"ACTS_IN","name":"Heidi II.","type":"Role","_key":"36521","_from":"24770","_to":"24766"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"36520","_from":"24769","_to":"24766"} +{"$label":"ACTS_IN","name":"Heidi I.","type":"Role","_key":"36517","_from":"24768","_to":"24766"} +{"$label":"ACTS_IN","name":"Gabriella","type":"Role","_key":"36515","_from":"24767","_to":"24766"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"55697","_from":"24769","_to":"35443"} +{"$label":"ACTS_IN","name":"German","type":"Role","_key":"49473","_from":"24769","_to":"32393"} +{"$label":"ACTS_IN","name":"Schuhverk\u00e4ufer","type":"Role","_key":"36536","_from":"24776","_to":"24772"} +{"$label":"ACTS_IN","name":"Olsen","type":"Role","_key":"36533","_from":"24775","_to":"24772"} +{"$label":"ACTS_IN","name":"Alina","type":"Role","_key":"36528","_from":"24774","_to":"24772"} +{"$label":"ACTS_IN","name":"Yoko","type":"Role","_key":"36527","_from":"24773","_to":"24772"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"91023","_from":"24773","_to":"53709"} +{"$label":"ACTS_IN","name":"Min Wang","type":"Role","_key":"39637","_from":"24773","_to":"26786"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40539","_from":"24774","_to":"27297"} +{"$label":"ACTS_IN","name":"Olli","type":"Role","_key":"97508","_from":"24775","_to":"57421"} +{"$label":"ACTS_IN","name":"Rolf K\u00f6ster","type":"Role","_key":"72763","_from":"24775","_to":"43838"} +{"$label":"ACTS_IN","name":"Wagenbesitzer","type":"Role","_key":"68161","_from":"24775","_to":"41857"} +{"$label":"ACTS_IN","name":"Arno Hello","type":"Role","_key":"66829","_from":"24775","_to":"41279"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"59765","_from":"24775","_to":"37734"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"50165","_from":"24775","_to":"32800"} +{"$label":"ACTS_IN","name":"Pistol Woman","type":"Role","_key":"36551","_from":"24783","_to":"24777"} +{"$label":"ACTS_IN","name":"Chainsaw Kid","type":"Role","_key":"36549","_from":"24782","_to":"24777"} +{"$label":"ACTS_IN","name":"Harmony Age 7","type":"Role","_key":"36548","_from":"24781","_to":"24777"} +{"$label":"ACTS_IN","name":"Harry Age 9","type":"Role","_key":"36547","_from":"24780","_to":"24777"} +{"$label":"ACTS_IN","name":"Flicka","type":"Role","_key":"36546","_from":"24779","_to":"24777"} +{"$label":"ACTS_IN","name":"Mr. Fire","type":"Role","_key":"36544","_from":"24778","_to":"24777"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"104446","_from":"24778","_to":"61433"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"97706","_from":"24778","_to":"57531"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58830","_from":"24781","_to":"37148"} +{"$label":"ACTS_IN","name":"Ellie Layton","type":"Role","_key":"45179","_from":"24781","_to":"29971"} +{"$label":"DIRECTED","_key":"36554","_from":"24785","_to":"24784"} +{"$label":"DIRECTED","_key":"69062","_from":"24785","_to":"42267"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"36571","_from":"24793","_to":"24786"} +{"$label":"ACTS_IN","name":"Office Executive","type":"Role","_key":"36570","_from":"24792","_to":"24786"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"36569","_from":"24791","_to":"24786"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"36568","_from":"24790","_to":"24786"} +{"$label":"ACTS_IN","name":"Racquetball Player","type":"Role","_key":"36566","_from":"24789","_to":"24786"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"36563","_from":"24788","_to":"24786"} +{"$label":"DIRECTED","_key":"36558","_from":"24787","_to":"24786"} +{"$label":"DIRECTED","_key":"119671","_from":"24787","_to":"70289"} +{"$label":"DIRECTED","_key":"111855","_from":"24787","_to":"66031"} +{"$label":"DIRECTED","_key":"105413","_from":"24787","_to":"62020"} +{"$label":"DIRECTED","_key":"45144","_from":"24787","_to":"29955"} +{"$label":"ACTS_IN","name":"Blonde Woman","type":"Role","_key":"69996","_from":"24790","_to":"42693"} +{"$label":"ACTS_IN","name":"Trailerwoman","type":"Role","_key":"36593","_from":"24805","_to":"24794"} +{"$label":"ACTS_IN","name":"Trailerman","type":"Role","_key":"36592","_from":"24804","_to":"24794"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"36591","_from":"24803","_to":"24794"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"36590","_from":"24802","_to":"24794"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"36587","_from":"24801","_to":"24794"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"36586","_from":"24800","_to":"24794"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"36585","_from":"24799","_to":"24794"} +{"$label":"ACTS_IN","name":"The Other Woman","type":"Role","_key":"36583","_from":"24798","_to":"24794"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"36581","_from":"24797","_to":"24794"} +{"$label":"DIRECTED","_key":"36573","_from":"24796","_to":"24794"} +{"$label":"DIRECTED","_key":"36572","_from":"24795","_to":"24794"} +{"$label":"DIRECTED","_key":"37007","_from":"24795","_to":"25084"} +{"$label":"DIRECTED","_key":"37002","_from":"24795","_to":"25079"} +{"$label":"DIRECTED","_key":"36988","_from":"24795","_to":"25075"} +{"$label":"DIRECTED","_key":"36816","_from":"24795","_to":"24969"} +{"$label":"DIRECTED","_key":"36778","_from":"24795","_to":"24943"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"36899","_from":"24798","_to":"25008"} +{"$label":"ACTS_IN","name":"Justin Forrester's Attorney","type":"Role","_key":"60184","_from":"24801","_to":"37970"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"36967","_from":"24802","_to":"25061"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"36812","_from":"24802","_to":"24964"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"36601","_from":"24802","_to":"24806"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"36941","_from":"24803","_to":"25042"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"36814","_from":"24803","_to":"24964"} +{"$label":"ACTS_IN","name":"Trailerwoman","type":"Role","_key":"36605","_from":"24803","_to":"24806"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36979","_from":"24804","_to":"25064"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36982","_from":"24805","_to":"25064"} +{"$label":"ACTS_IN","name":"Trailerwoman","type":"Role","_key":"36813","_from":"24805","_to":"24964"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"36604","_from":"24805","_to":"24806"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"36603","_from":"24810","_to":"24806"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"36602","_from":"24809","_to":"24806"} +{"$label":"ACTS_IN","name":"Daria","type":"Role","_key":"36598","_from":"24808","_to":"24806"} +{"$label":"ACTS_IN","name":"Tracer","type":"Role","_key":"36596","_from":"24807","_to":"24806"} +{"$label":"ACTS_IN","name":"Jimmy Joe","type":"Role","_key":"62175","_from":"24807","_to":"39152"} +{"$label":"ACTS_IN","name":"Lance \"Lance the Dance\" Pere","type":"Role","_key":"56503","_from":"24807","_to":"35889"} +{"$label":"ACTS_IN","name":"Chad Douglas Fairchild","type":"Role","_key":"36612","_from":"24813","_to":"24811"} +{"$label":"ACTS_IN","name":"Patti Jean","type":"Role","_key":"36611","_from":"24812","_to":"24811"} +{"$label":"ACTS_IN","name":"David Axelrod","type":"Role","_key":"118751","_from":"24813","_to":"69830"} +{"$label":"ACTS_IN","name":"Mikuli \/ Jebel","type":"Role","_key":"36628","_from":"24817","_to":"24814"} +{"$label":"ACTS_IN","name":"Hoelun","type":"Role","_key":"36627","_from":"24816","_to":"24814"} +{"$label":"DIRECTED","_key":"36619","_from":"24815","_to":"24814"} +{"$label":"DIRECTED","_key":"50485","_from":"24815","_to":"32975"} +{"$label":"ACTS_IN","name":"Bob Redding","type":"Role","_key":"38583","_from":"24817","_to":"26068"} +{"$label":"ACTS_IN","name":"Advisor 2","type":"Role","_key":"36640","_from":"24829","_to":"24818"} +{"$label":"ACTS_IN","name":"Advisor 1","type":"Role","_key":"36639","_from":"24828","_to":"24818"} +{"$label":"ACTS_IN","name":"Goon 4","type":"Role","_key":"36638","_from":"24827","_to":"24818"} +{"$label":"ACTS_IN","name":"Goon 3","type":"Role","_key":"36637","_from":"24826","_to":"24818"} +{"$label":"ACTS_IN","name":"Goon 2","type":"Role","_key":"36636","_from":"24825","_to":"24818"} +{"$label":"ACTS_IN","name":"Goon 1","type":"Role","_key":"36635","_from":"24824","_to":"24818"} +{"$label":"ACTS_IN","name":"Sally Stephens","type":"Role","_key":"36634","_from":"24823","_to":"24818"} +{"$label":"ACTS_IN","name":"Brian Miranda","type":"Role","_key":"36633","_from":"24822","_to":"24818"} +{"$label":"ACTS_IN","name":"Corteza","type":"Role","_key":"36632","_from":"24821","_to":"24818"} +{"$label":"ACTS_IN","name":"Olivier Labelle","type":"Role","_key":"36631","_from":"24820","_to":"24818"} +{"$label":"DIRECTED","_key":"36629","_from":"24819","_to":"24818"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"71028","_from":"24820","_to":"43134"} +{"$label":"ACTS_IN","name":"Michael Bartel","type":"Role","_key":"67806","_from":"24820","_to":"41676"} +{"$label":"ACTS_IN","name":"Preston Rogers","type":"Role","_key":"59417","_from":"24820","_to":"37532"} +{"$label":"ACTS_IN","name":"Yunus","type":"Role","_key":"98420","_from":"24822","_to":"57978"} +{"$label":"ACTS_IN","name":"Cataline Stone","type":"Role","_key":"114643","_from":"24823","_to":"67534"} +{"$label":"ACTS_IN","name":"Girl 1","type":"Role","_key":"36649","_from":"24838","_to":"24830"} +{"$label":"ACTS_IN","name":"Deena","type":"Role","_key":"36647","_from":"24837","_to":"24830"} +{"$label":"ACTS_IN","name":"Len","type":"Role","_key":"36646","_from":"24836","_to":"24830"} +{"$label":"ACTS_IN","name":"T.J.","type":"Role","_key":"36645","_from":"24835","_to":"24830"} +{"$label":"ACTS_IN","name":"Dax","type":"Role","_key":"36644","_from":"24834","_to":"24830"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"36643","_from":"24833","_to":"24830"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"36642","_from":"24832","_to":"24830"} +{"$label":"DIRECTED","_key":"36641","_from":"24831","_to":"24830"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"36658","_from":"24846","_to":"24839"} +{"$label":"ACTS_IN","name":"Officer Casey","type":"Role","_key":"36657","_from":"24845","_to":"24839"} +{"$label":"ACTS_IN","name":"Officer Taylor","type":"Role","_key":"36656","_from":"24844","_to":"24839"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"36655","_from":"24843","_to":"24839"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"36654","_from":"24842","_to":"24839"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"36652","_from":"24841","_to":"24839"} +{"$label":"DIRECTED","_key":"36651","_from":"24840","_to":"24839"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"110099","_from":"24841","_to":"65058"} +{"$label":"ACTS_IN","name":"Monique\/Nikki","type":"Role","_key":"110097","_from":"24842","_to":"65058"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"36823","_from":"24844","_to":"24969"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"58290","_from":"24845","_to":"36857"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36667","_from":"24856","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36666","_from":"24855","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36665","_from":"24854","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36664","_from":"24853","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36663","_from":"24852","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36662","_from":"24851","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36661","_from":"24850","_to":"24847"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36660","_from":"24849","_to":"24847"} +{"$label":"DIRECTED","_key":"36659","_from":"24848","_to":"24847"} +{"$label":"ACTS_IN","name":"Lt. Finch","type":"Role","_key":"36676","_from":"24860","_to":"24857"} +{"$label":"ACTS_IN","name":"Vickie Kittrie","type":"Role","_key":"36671","_from":"24859","_to":"24857"} +{"$label":"DIRECTED","_key":"36668","_from":"24858","_to":"24857"} +{"$label":"DIRECTED","_key":"110259","_from":"24858","_to":"65163"} +{"$label":"ACTS_IN","name":"Mina Harker","type":"Role","_key":"50537","_from":"24859","_to":"33007"} +{"$label":"ACTS_IN","name":"Meeker","type":"Role","_key":"69402","_from":"24860","_to":"42424"} +{"$label":"ACTS_IN","name":"Sheriff Ben Meeker","type":"Role","_key":"69380","_from":"24860","_to":"42413"} +{"$label":"ACTS_IN","name":"Jack Scaglia","type":"Role","_key":"56140","_from":"24860","_to":"35683"} +{"$label":"ACTS_IN","name":"Geoff","type":"Role","_key":"36684","_from":"24866","_to":"24861"} +{"$label":"ACTS_IN","name":"Chas Lovett","type":"Role","_key":"36681","_from":"24865","_to":"24861"} +{"$label":"ACTS_IN","name":"Justine Alice Parker","type":"Role","_key":"36680","_from":"24864","_to":"24861"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"36678","_from":"24863","_to":"24861"} +{"$label":"DIRECTED","_key":"36677","_from":"24862","_to":"24861"} +{"$label":"DIRECTED","_key":"102047","_from":"24862","_to":"60035"} +{"$label":"DIRECTED","_key":"66749","_from":"24862","_to":"41220"} +{"$label":"ACTS_IN","name":"Richard Hanay","type":"Role","_key":"110332","_from":"24863","_to":"65199"} +{"$label":"ACTS_IN","name":"Captain Wentworth","type":"Role","_key":"97688","_from":"24863","_to":"57524"} +{"$label":"ACTS_IN","name":"Peter Gregory","type":"Role","_key":"90879","_from":"24863","_to":"53619"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"91654","_from":"24864","_to":"54052"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"54103","_from":"24864","_to":"34782"} +{"$label":"ACTS_IN","name":"June Davis","type":"Role","_key":"36693","_from":"24872","_to":"24867"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"36691","_from":"24871","_to":"24867"} +{"$label":"ACTS_IN","name":"Psych Patient","type":"Role","_key":"36690","_from":"24870","_to":"24867"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"36689","_from":"24869","_to":"24867"} +{"$label":"DIRECTED","_key":"36686","_from":"24868","_to":"24867"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"97710","_from":"24870","_to":"57531"} +{"$label":"ACTS_IN","name":"Clarissa","type":"Role","_key":"68883","_from":"24871","_to":"42187"} +{"$label":"ACTS_IN","name":"Veronica Bell","type":"Role","_key":"64376","_from":"24871","_to":"40118"} +{"$label":"ACTS_IN","name":"Tates Gro\u00dfmutter","type":"Role","_key":"45774","_from":"24872","_to":"30280"} +{"$label":"ACTS_IN","name":"Hyo-kyung","type":"Role","_key":"36700","_from":"24880","_to":"24873"} +{"$label":"ACTS_IN","name":"Rest stop owners husband","type":"Role","_key":"36699","_from":"24879","_to":"24873"} +{"$label":"ACTS_IN","name":"Young-woo","type":"Role","_key":"36698","_from":"24878","_to":"24873"} +{"$label":"ACTS_IN","name":"Su-jin","type":"Role","_key":"36697","_from":"24877","_to":"24873"} +{"$label":"ACTS_IN","name":"In-gyu","type":"Role","_key":"36696","_from":"24876","_to":"24873"} +{"$label":"ACTS_IN","name":"Mi-heun","type":"Role","_key":"36695","_from":"24875","_to":"24873"} +{"$label":"DIRECTED","_key":"36694","_from":"24874","_to":"24873"} +{"$label":"ACTS_IN","name":"Lee Myung-hyun \/ Lee Bang-hee","type":"Role","_key":"62753","_from":"24875","_to":"39449"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117182","_from":"24879","_to":"68939"} +{"$label":"ACTS_IN","name":"Sergeant Jin Chang-rok","type":"Role","_key":"107415","_from":"24879","_to":"63364"} +{"$label":"ACTS_IN","name":"Seo Jae-sik","type":"Role","_key":"103038","_from":"24879","_to":"60610"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"36711","_from":"24887","_to":"24881"} +{"$label":"ACTS_IN","name":"Hawk","type":"Role","_key":"36709","_from":"24886","_to":"24881"} +{"$label":"ACTS_IN","name":"Lincoln","type":"Role","_key":"36708","_from":"24885","_to":"24881"} +{"$label":"ACTS_IN","name":"Tristen Geiger","type":"Role","_key":"36706","_from":"24884","_to":"24881"} +{"$label":"ACTS_IN","name":"Zachary Shefford","type":"Role","_key":"36704","_from":"24883","_to":"24881"} +{"$label":"DIRECTED","_key":"36701","_from":"24882","_to":"24881"} +{"$label":"DIRECTED","_key":"111382","_from":"24882","_to":"65772"} +{"$label":"DIRECTED","_key":"40806","_from":"24882","_to":"27472"} +{"$label":"ACTS_IN","name":"Annabelle","type":"Role","_key":"120507","_from":"24884","_to":"70785"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"109982","_from":"24884","_to":"64985"} +{"$label":"ACTS_IN","name":"Cheryl Cunningham (2nd Victim)","type":"Role","_key":"50955","_from":"24884","_to":"33249"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"45890","_from":"24884","_to":"30345"} +{"$label":"ACTS_IN","name":"Running Fox","type":"Role","_key":"113981","_from":"24886","_to":"67127"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin","type":"Role","_key":"36724","_from":"24898","_to":"24888"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"36723","_from":"24897","_to":"24888"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"36722","_from":"24896","_to":"24888"} +{"$label":"ACTS_IN","name":"Mr. Callen","type":"Role","_key":"36721","_from":"24895","_to":"24888"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"36720","_from":"24894","_to":"24888"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"36719","_from":"24893","_to":"24888"} +{"$label":"ACTS_IN","name":"Graeme","type":"Role","_key":"36718","_from":"24892","_to":"24888"} +{"$label":"ACTS_IN","name":"Damien","type":"Role","_key":"36717","_from":"24891","_to":"24888"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"36715","_from":"24890","_to":"24888"} +{"$label":"DIRECTED","_key":"36713","_from":"24889","_to":"24888"} +{"$label":"DIRECTED","_key":"97224","_from":"24889","_to":"57181"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105648","_from":"24890","_to":"62183"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97755","_from":"24890","_to":"57562"} +{"$label":"ACTS_IN","name":"Klein","type":"Role","_key":"41573","_from":"24890","_to":"27920"} +{"$label":"ACTS_IN","name":"James Hall","type":"Role","_key":"119636","_from":"24896","_to":"70275"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"114659","_from":"24896","_to":"67545"} +{"$label":"ACTS_IN","name":"Gerry Ryan","type":"Role","_key":"55267","_from":"24896","_to":"35246"} +{"$label":"ACTS_IN","name":"John Wesley","type":"Role","_key":"97439","_from":"24897","_to":"57379"} +{"$label":"ACTS_IN","name":"Farmer's Wife","type":"Role","_key":"97464","_from":"24898","_to":"57394"} +{"$label":"ACTS_IN","name":"Frederik Splitt","type":"Role","_key":"36733","_from":"24906","_to":"24899"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36732","_from":"24905","_to":"24899"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36731","_from":"24904","_to":"24899"} +{"$label":"ACTS_IN","name":"Daniel Jakobsen","type":"Role","_key":"36729","_from":"24903","_to":"24899"} +{"$label":"ACTS_IN","name":"Anna Jakobsen","type":"Role","_key":"36728","_from":"24902","_to":"24899"} +{"$label":"ACTS_IN","name":"Eva Maria Splitt","type":"Role","_key":"36726","_from":"24901","_to":"24899"} +{"$label":"DIRECTED","_key":"36725","_from":"24900","_to":"24899"} +{"$label":"DIRECTED","_key":"106273","_from":"24900","_to":"62603"} +{"$label":"DIRECTED","_key":"42150","_from":"24900","_to":"28239"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"118867","_from":"24901","_to":"69864"} +{"$label":"ACTS_IN","name":"Maria Wassem","type":"Role","_key":"49095","_from":"24901","_to":"32171"} +{"$label":"ACTS_IN","name":"Carola","type":"Role","_key":"41206","_from":"24901","_to":"27727"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"41546","_from":"24902","_to":"27899"} +{"$label":"ACTS_IN","name":"Johannes 'Jo'","type":"Role","_key":"68957","_from":"24906","_to":"42219"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"64758","_from":"24906","_to":"40306"} +{"$label":"ACTS_IN","name":"Imad","type":"Role","_key":"36742","_from":"24914","_to":"24907"} +{"$label":"ACTS_IN","name":"Uri","type":"Role","_key":"36741","_from":"24913","_to":"24907"} +{"$label":"ACTS_IN","name":"Itzik","type":"Role","_key":"36740","_from":"24912","_to":"24907"} +{"$label":"ACTS_IN","name":"Papi","type":"Role","_key":"36739","_from":"24911","_to":"24907"} +{"$label":"ACTS_IN","name":"Khaled","type":"Role","_key":"36738","_from":"24910","_to":"24907"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"36737","_from":"24909","_to":"24907"} +{"$label":"DIRECTED","_key":"36734","_from":"24908","_to":"24907"} +{"$label":"DIRECTED","_key":"36775","_from":"24939","_to":"24915"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"36774","_from":"24938","_to":"24915"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"36773","_from":"24937","_to":"24915"} +{"$label":"ACTS_IN","name":"Junger Polizist","type":"Role","_key":"36772","_from":"24936","_to":"24915"} +{"$label":"ACTS_IN","name":"Polizist Ampel","type":"Role","_key":"36771","_from":"24935","_to":"24915"} +{"$label":"ACTS_IN","name":"Amerikanische Journalistin (als Shelley Dahlern Broughton)","type":"Role","_key":"36770","_from":"24934","_to":"24915"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"36769","_from":"24933","_to":"24915"} +{"$label":"ACTS_IN","name":"Nachrichtensprecherin (als Monica Jones)","type":"Role","_key":"36768","_from":"24932","_to":"24915"} +{"$label":"ACTS_IN","name":"Polizist im Schlafsaal","type":"Role","_key":"36767","_from":"24931","_to":"24915"} +{"$label":"ACTS_IN","name":"2. Einsatzleiter","type":"Role","_key":"36766","_from":"24930","_to":"24915"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"36764","_from":"24929","_to":"24915"} +{"$label":"ACTS_IN","name":"Kaufhausdetektiv","type":"Role","_key":"36763","_from":"24928","_to":"24915"} +{"$label":"ACTS_IN","name":"Journalistin (als Andrea Paul)","type":"Role","_key":"36762","_from":"24927","_to":"24915"} +{"$label":"ACTS_IN","name":"Staatsanwalt","type":"Role","_key":"36761","_from":"24926","_to":"24915"} +{"$label":"ACTS_IN","name":"Undersecretary of State","type":"Role","_key":"36760","_from":"24925","_to":"24915"} +{"$label":"ACTS_IN","name":"Melli","type":"Role","_key":"36759","_from":"24924","_to":"24915"} +{"$label":"ACTS_IN","name":"Malerin (als Johanna Rudolph)","type":"Role","_key":"36758","_from":"24923","_to":"24915"} +{"$label":"ACTS_IN","name":"Real Estate Agent","type":"Role","_key":"36757","_from":"24922","_to":"24915"} +{"$label":"ACTS_IN","name":"Agency Assistant","type":"Role","_key":"36756","_from":"24921","_to":"24915"} +{"$label":"ACTS_IN","name":"Schmitz","type":"Role","_key":"36755","_from":"24920","_to":"24915"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"36754","_from":"24919","_to":"24915"} +{"$label":"ACTS_IN","name":"B\u00fclent","type":"Role","_key":"36752","_from":"24918","_to":"24915"} +{"$label":"ACTS_IN","name":"Pritt","type":"Role","_key":"36751","_from":"24917","_to":"24915"} +{"$label":"ACTS_IN","name":"Flo","type":"Role","_key":"36748","_from":"24916","_to":"24915"} +{"$label":"ACTS_IN","name":"Paula's Mutter","type":"Role","_key":"46917","_from":"24917","_to":"30934"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"39657","_from":"24917","_to":"26800"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"42974","_from":"24919","_to":"28710"} +{"$label":"ACTS_IN","name":"Schwester Dorothee","type":"Role","_key":"42365","_from":"24927","_to":"28358"} +{"$label":"ACTS_IN","name":"Kosmetikerin","type":"Role","_key":"41547","_from":"24927","_to":"27899"} +{"$label":"ACTS_IN","name":"Menzke","type":"Role","_key":"49240","_from":"24933","_to":"32251"} +{"$label":"ACTS_IN","name":"Erler","type":"Role","_key":"43506","_from":"24933","_to":"29052"} +{"$label":"DIRECTED","_key":"52957","_from":"24939","_to":"34308"} +{"$label":"DIRECTED","_key":"46759","_from":"24939","_to":"30844"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"36777","_from":"24942","_to":"24940"} +{"$label":"DIRECTED","_key":"36776","_from":"24941","_to":"24940"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"36789","_from":"24952","_to":"24943"} +{"$label":"ACTS_IN","name":"Angel Dance Double","type":"Role","_key":"36788","_from":"24951","_to":"24943"} +{"$label":"ACTS_IN","name":"o.A,","type":"Role","_key":"36787","_from":"24950","_to":"24943"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36786","_from":"24949","_to":"24943"} +{"$label":"ACTS_IN","name":"Motel Girl","type":"Role","_key":"36785","_from":"24948","_to":"24943"} +{"$label":"ACTS_IN","name":"Car Girl","type":"Role","_key":"36784","_from":"24947","_to":"24943"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36783","_from":"24946","_to":"24943"} +{"$label":"ACTS_IN","name":"The Coach","type":"Role","_key":"36782","_from":"24945","_to":"24943"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"36781","_from":"24944","_to":"24943"} +{"$label":"ACTS_IN","name":"Hobo","type":"Role","_key":"36918","_from":"24944","_to":"25022"} +{"$label":"ACTS_IN","name":"Lee Tyson","type":"Role","_key":"102173","_from":"24950","_to":"60121"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"44007","_from":"24950","_to":"29354"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"36805","_from":"24963","_to":"24953"} +{"$label":"ACTS_IN","name":"Solider","type":"Role","_key":"36803","_from":"24962","_to":"24953"} +{"$label":"ACTS_IN","name":"Eddie Edwards","type":"Role","_key":"36801","_from":"24961","_to":"24953"} +{"$label":"ACTS_IN","name":"Bounty Hunter","type":"Role","_key":"36800","_from":"24960","_to":"24953"} +{"$label":"ACTS_IN","name":"Bounty Hunter","type":"Role","_key":"36799","_from":"24959","_to":"24953"} +{"$label":"ACTS_IN","name":"Franciene Sieff","type":"Role","_key":"36798","_from":"24958","_to":"24953"} +{"$label":"ACTS_IN","name":"Bounty Hunter","type":"Role","_key":"36797","_from":"24957","_to":"24953"} +{"$label":"ACTS_IN","name":"Oliver Dunbar","type":"Role","_key":"36796","_from":"24956","_to":"24953"} +{"$label":"ACTS_IN","name":"Pool Hustler","type":"Role","_key":"36795","_from":"24955","_to":"24953"} +{"$label":"DIRECTED","_key":"36793","_from":"24954","_to":"24953"} +{"$label":"DIRECTED","_key":"110217","_from":"24954","_to":"65143"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"36992","_from":"24956","_to":"25075"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"50790","_from":"24957","_to":"33143"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36832","_from":"24958","_to":"24974"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"37001","_from":"24960","_to":"25075"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"36936","_from":"24961","_to":"25042"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"36818","_from":"24961","_to":"24969"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"36811","_from":"24968","_to":"24964"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"36810","_from":"24967","_to":"24964"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36809","_from":"24966","_to":"24964"} +{"$label":"ACTS_IN","name":"The First Lady","type":"Role","_key":"36808","_from":"24965","_to":"24964"} +{"$label":"ACTS_IN","name":"Starlina","type":"Role","_key":"58256","_from":"24968","_to":"36839"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36824","_from":"24973","_to":"24969"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"36822","_from":"24972","_to":"24969"} +{"$label":"ACTS_IN","name":"Lori","type":"Role","_key":"36821","_from":"24971","_to":"24969"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36820","_from":"24970","_to":"24969"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36833","_from":"24973","_to":"24974"} +{"$label":"ACTS_IN","name":"Tattoo Artist","type":"Role","_key":"36841","_from":"24986","_to":"24974"} +{"$label":"ACTS_IN","name":"Chauffer","type":"Role","_key":"36840","_from":"24985","_to":"24974"} +{"$label":"ACTS_IN","name":"Wealthy Woman","type":"Role","_key":"36839","_from":"24984","_to":"24974"} +{"$label":"ACTS_IN","name":"Submitter","type":"Role","_key":"36838","_from":"24983","_to":"24974"} +{"$label":"ACTS_IN","name":"Domina 1","type":"Role","_key":"36837","_from":"24982","_to":"24974"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"36835","_from":"24981","_to":"24974"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36834","_from":"24980","_to":"24974"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36831","_from":"24979","_to":"24974"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36830","_from":"24978","_to":"24974"} +{"$label":"DIRECTED","_key":"36828","_from":"24977","_to":"24974"} +{"$label":"DIRECTED","_key":"36827","_from":"24976","_to":"24974"} +{"$label":"DIRECTED","_key":"36826","_from":"24975","_to":"24974"} +{"$label":"DIRECTED","_key":"116004","_from":"24975","_to":"68315"} +{"$label":"DIRECTED","_key":"115395","_from":"24975","_to":"67947"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"116110","_from":"24978","_to":"68369"} +{"$label":"ACTS_IN","name":"Marcie","type":"Role","_key":"119715","_from":"24979","_to":"70307"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"100474","_from":"24980","_to":"59242"} +{"$label":"ACTS_IN","name":"Drew D'Arcy","type":"Role","_key":"43412","_from":"24980","_to":"29000"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"36896","_from":"24980","_to":"25008"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"116009","_from":"24981","_to":"68315"} +{"$label":"ACTS_IN","name":"Kee Nang","type":"Role","_key":"61166","_from":"24981","_to":"38653"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"36999","_from":"24982","_to":"25075"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"37000","_from":"24984","_to":"25075"} +{"$label":"ACTS_IN","name":"American Friend","type":"Role","_key":"36855","_from":"24997","_to":"24987"} +{"$label":"ACTS_IN","name":"Scarf Vendor","type":"Role","_key":"36854","_from":"24996","_to":"24987"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"36852","_from":"24995","_to":"24987"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"36851","_from":"24994","_to":"24987"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"36850","_from":"24993","_to":"24987"} +{"$label":"ACTS_IN","name":"Train Woman","type":"Role","_key":"36849","_from":"24992","_to":"24987"} +{"$label":"ACTS_IN","name":"The Actress","type":"Role","_key":"36847","_from":"24991","_to":"24987"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"36846","_from":"24990","_to":"24987"} +{"$label":"ACTS_IN","name":"The Professor","type":"Role","_key":"36845","_from":"24989","_to":"24987"} +{"$label":"DIRECTED","_key":"36842","_from":"24988","_to":"24987"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"112410","_from":"24989","_to":"66359"} +{"$label":"ACTS_IN","name":"Shelly Webster","type":"Role","_key":"54248","_from":"24992","_to":"34832"} +{"$label":"ACTS_IN","name":"Dave Afton","type":"Role","_key":"116724","_from":"24993","_to":"68707"} +{"$label":"ACTS_IN","name":"Freddie Nesbitt","type":"Role","_key":"36877","_from":"25000","_to":"24998"} +{"$label":"ACTS_IN","name":"Jeremy Blond","type":"Role","_key":"36872","_from":"24999","_to":"24998"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"102799","_from":"24999","_to":"60471"} +{"$label":"ACTS_IN","name":"Jonathan Samuelson","type":"Role","_key":"102259","_from":"24999","_to":"60174"} +{"$label":"ACTS_IN","name":"Edward Thomas","type":"Role","_key":"103652","_from":"25000","_to":"60960"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"36891","_from":"25007","_to":"25001"} +{"$label":"ACTS_IN","name":"Dr. Chandra","type":"Role","_key":"36890","_from":"25006","_to":"25001"} +{"$label":"ACTS_IN","name":"D.I. Guffin","type":"Role","_key":"36889","_from":"25005","_to":"25001"} +{"$label":"ACTS_IN","name":"Prof. Corner","type":"Role","_key":"36884","_from":"25004","_to":"25001"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"36882","_from":"25003","_to":"25001"} +{"$label":"DIRECTED","_key":"36881","_from":"25002","_to":"25001"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"53042","_from":"25005","_to":"34339"} +{"$label":"ACTS_IN","name":"Mrs. Clay","type":"Role","_key":"110902","_from":"25007","_to":"65506"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"36901","_from":"25013","_to":"25008"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"36900","_from":"25012","_to":"25008"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"36897","_from":"25011","_to":"25008"} +{"$label":"ACTS_IN","name":"Bobbie phillips","type":"Role","_key":"36895","_from":"25010","_to":"25008"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"36894","_from":"25009","_to":"25008"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"50555","_from":"25009","_to":"33011"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"36911","_from":"25021","_to":"25014"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"36910","_from":"25020","_to":"25014"} +{"$label":"ACTS_IN","name":"Det. Inspector Hearst","type":"Role","_key":"36909","_from":"25019","_to":"25014"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"36908","_from":"25018","_to":"25014"} +{"$label":"ACTS_IN","name":"Dr. Adam Daley","type":"Role","_key":"36906","_from":"25017","_to":"25014"} +{"$label":"ACTS_IN","name":"Danny Hyde","type":"Role","_key":"36905","_from":"25016","_to":"25014"} +{"$label":"DIRECTED","_key":"36902","_from":"25015","_to":"25014"} +{"$label":"ACTS_IN","name":"Lt. Eccleston","type":"Role","_key":"120213","_from":"25017","_to":"70594"} +{"$label":"ACTS_IN","name":"Dollar Bill Woman","type":"Role","_key":"36921","_from":"25029","_to":"25022"} +{"$label":"ACTS_IN","name":"Dollar Bill Man","type":"Role","_key":"36920","_from":"25028","_to":"25022"} +{"$label":"ACTS_IN","name":"Hobo","type":"Role","_key":"36919","_from":"25027","_to":"25022"} +{"$label":"ACTS_IN","name":"Old Hobo","type":"Role","_key":"36917","_from":"25026","_to":"25022"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36915","_from":"25025","_to":"25022"} +{"$label":"ACTS_IN","name":"Mack Ross","type":"Role","_key":"36914","_from":"25024","_to":"25022"} +{"$label":"ACTS_IN","name":"Edna Gaines","type":"Role","_key":"36913","_from":"25023","_to":"25022"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36996","_from":"25025","_to":"25075"} +{"$label":"ACTS_IN","name":"David Manners","type":"Role","_key":"39081","_from":"25028","_to":"26424"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"39078","_from":"25028","_to":"26417"} +{"$label":"ACTS_IN","name":"Randy \/ Black Claw","type":"Role","_key":"39061","_from":"25028","_to":"26408"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"36934","_from":"25041","_to":"25030"} +{"$label":"ACTS_IN","name":"Domari","type":"Role","_key":"36933","_from":"25040","_to":"25030"} +{"$label":"ACTS_IN","name":"Viktor Ingi","type":"Role","_key":"36931","_from":"25039","_to":"25030"} +{"$label":"ACTS_IN","name":"Starri","type":"Role","_key":"36930","_from":"25038","_to":"25030"} +{"$label":"ACTS_IN","name":"Eirikur","type":"Role","_key":"36928","_from":"25037","_to":"25030"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"36927","_from":"25036","_to":"25030"} +{"$label":"ACTS_IN","name":"P\u00e9tur","type":"Role","_key":"36926","_from":"25035","_to":"25030"} +{"$label":"ACTS_IN","name":"Magnus","type":"Role","_key":"36925","_from":"25034","_to":"25030"} +{"$label":"ACTS_IN","name":"Gugga","type":"Role","_key":"36924","_from":"25033","_to":"25030"} +{"$label":"ACTS_IN","name":"Ottar Thor","type":"Role","_key":"36923","_from":"25032","_to":"25030"} +{"$label":"DIRECTED","_key":"36922","_from":"25031","_to":"25030"} +{"$label":"ACTS_IN","name":"Sigur\u00f0ur \u00d3li","type":"Role","_key":"107724","_from":"25032","_to":"63596"} +{"$label":"ACTS_IN","name":"\u00d6ryggisv\u00f6r\u00f0ur","type":"Role","_key":"107741","_from":"25041","_to":"63596"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"36949","_from":"25051","_to":"25042"} +{"$label":"ACTS_IN","name":"Cecelina","type":"Role","_key":"36948","_from":"25050","_to":"25042"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36947","_from":"25049","_to":"25042"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36946","_from":"25048","_to":"25042"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"36944","_from":"25047","_to":"25042"} +{"$label":"ACTS_IN","name":"Precious","type":"Role","_key":"36943","_from":"25046","_to":"25042"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"36942","_from":"25045","_to":"25042"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36939","_from":"25044","_to":"25042"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36938","_from":"25043","_to":"25042"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"36995","_from":"25050","_to":"25075"} +{"$label":"DIRECTED","_key":"36965","_from":"25060","_to":"25052"} +{"$label":"ACTS_IN","name":"Damon Richards","type":"Role","_key":"36963","_from":"25059","_to":"25052"} +{"$label":"ACTS_IN","name":"Marnie Rollins","type":"Role","_key":"36961","_from":"25058","_to":"25052"} +{"$label":"ACTS_IN","name":"Brendan Dax","type":"Role","_key":"36959","_from":"25057","_to":"25052"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"36957","_from":"25056","_to":"25052"} +{"$label":"ACTS_IN","name":"Karen Cross","type":"Role","_key":"36956","_from":"25055","_to":"25052"} +{"$label":"ACTS_IN","name":"Det. Vincent Durano","type":"Role","_key":"36955","_from":"25054","_to":"25052"} +{"$label":"ACTS_IN","name":"Det. Teddy Galloway","type":"Role","_key":"36954","_from":"25053","_to":"25052"} +{"$label":"ACTS_IN","name":"Nurse Evelyn \/ Sister Evelyn","type":"Role","_key":"101766","_from":"25053","_to":"59888"} +{"$label":"ACTS_IN","name":"Jennifer Peters","type":"Role","_key":"95259","_from":"25053","_to":"56052"} +{"$label":"ACTS_IN","name":"Mary Heller","type":"Role","_key":"64195","_from":"25053","_to":"40048"} +{"$label":"ACTS_IN","name":"Julia Bertram","type":"Role","_key":"63005","_from":"25053","_to":"39550"} +{"$label":"ACTS_IN","name":"Jerry Crane","type":"Role","_key":"93593","_from":"25054","_to":"55111"} +{"$label":"ACTS_IN","name":"Elizabeth Gardner","type":"Role","_key":"113889","_from":"25055","_to":"67087"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"107816","_from":"25056","_to":"63674"} +{"$label":"ACTS_IN","name":"Camden","type":"Role","_key":"102100","_from":"25056","_to":"60066"} +{"$label":"ACTS_IN","name":"Wally Weaver","type":"Role","_key":"93262","_from":"25056","_to":"54939"} +{"$label":"ACTS_IN","name":"Mt. Sinai Nurse","type":"Role","_key":"111142","_from":"25058","_to":"65639"} +{"$label":"ACTS_IN","name":"Z.Z.","type":"Role","_key":"57310","_from":"25058","_to":"36335"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"97128","_from":"25059","_to":"57136"} +{"$label":"ACTS_IN","name":"Mark Bingham","type":"Role","_key":"66971","_from":"25059","_to":"41341"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"59711","_from":"25059","_to":"37702"} +{"$label":"ACTS_IN","name":"State Trooper","type":"Role","_key":"57194","_from":"25059","_to":"36281"} +{"$label":"ACTS_IN","name":"Luke Grant","type":"Role","_key":"37693","_from":"25059","_to":"25555"} +{"$label":"DIRECTED","_key":"51224","_from":"25060","_to":"33397"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36970","_from":"25063","_to":"25061"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36969","_from":"25062","_to":"25061"} +{"$label":"ACTS_IN","name":"Alia","type":"Role","_key":"36989","_from":"25063","_to":"25075"} +{"$label":"ACTS_IN","name":"The New Man","type":"Role","_key":"36980","_from":"25070","_to":"25064"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36978","_from":"25069","_to":"25064"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"36977","_from":"25068","_to":"25064"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"36975","_from":"25067","_to":"25064"} +{"$label":"ACTS_IN","name":"Girlfriend","type":"Role","_key":"36974","_from":"25066","_to":"25064"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"36972","_from":"25065","_to":"25064"} +{"$label":"ACTS_IN","name":"Steve Howard","type":"Role","_key":"112272","_from":"25070","_to":"66294"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"95867","_from":"25070","_to":"56381"} +{"$label":"ACTS_IN","name":"Lupovich","type":"Role","_key":"69511","_from":"25070","_to":"42463"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36987","_from":"25074","_to":"25071"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36986","_from":"25073","_to":"25071"} +{"$label":"DIRECTED","_key":"36984","_from":"25072","_to":"25071"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"36997","_from":"25078","_to":"25075"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"36993","_from":"25077","_to":"25075"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"36990","_from":"25076","_to":"25075"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37006","_from":"25083","_to":"25079"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37005","_from":"25082","_to":"25079"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37004","_from":"25081","_to":"25079"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37003","_from":"25080","_to":"25079"} +{"$label":"ACTS_IN","name":"Tampa","type":"Role","_key":"37019","_from":"25092","_to":"25084"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37017","_from":"25091","_to":"25084"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37016","_from":"25090","_to":"25084"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37015","_from":"25089","_to":"25084"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37014","_from":"25088","_to":"25084"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37013","_from":"25087","_to":"25084"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"37012","_from":"25086","_to":"25084"} +{"$label":"DIRECTED","_key":"37009","_from":"25085","_to":"25084"} +{"$label":"ACTS_IN","name":"Erik Reno","type":"Role","_key":"107170","_from":"25088","_to":"63209"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"38633","_from":"25088","_to":"26098"} +{"$label":"ACTS_IN","name":"Bobby McCain","type":"Role","_key":"38624","_from":"25088","_to":"26092"} +{"$label":"ACTS_IN","name":"Rick Monroe \"Rick the Rocket\"","type":"Role","_key":"38616","_from":"25088","_to":"26086"} +{"$label":"ACTS_IN","name":"Allen Collier","type":"Role","_key":"38610","_from":"25088","_to":"26084"} +{"$label":"ACTS_IN","name":"Kristin","type":"Role","_key":"100797","_from":"25091","_to":"59419"} +{"$label":"DIRECTED","_key":"37024","_from":"25097","_to":"25093"} +{"$label":"ACTS_IN","name":"Sandra's Manager","type":"Role","_key":"37023","_from":"25096","_to":"25093"} +{"$label":"ACTS_IN","name":"John Doe","type":"Role","_key":"37022","_from":"25095","_to":"25093"} +{"$label":"ACTS_IN","name":"Steve Antin","type":"Role","_key":"37021","_from":"25094","_to":"25093"} +{"$label":"ACTS_IN","name":"Trucker","type":"Role","_key":"102021","_from":"25095","_to":"60027"} +{"$label":"ACTS_IN","name":"J.W. Brown","type":"Role","_key":"70028","_from":"25095","_to":"42703"} +{"$label":"ACTS_IN","name":"Pat McGurn","type":"Role","_key":"61157","_from":"25095","_to":"38646"} +{"$label":"ACTS_IN","name":"Mr. Worther","type":"Role","_key":"58603","_from":"25095","_to":"37025"} +{"$label":"ACTS_IN","name":"Boyd Wallace","type":"Role","_key":"46493","_from":"25095","_to":"30698"} +{"$label":"ACTS_IN","name":"Head Nurse","type":"Role","_key":"112316","_from":"25096","_to":"66307"} +{"$label":"ACTS_IN","name":"Dee Dee","type":"Role","_key":"39292","_from":"25096","_to":"26558"} +{"$label":"DIRECTED","_key":"37034","_from":"25106","_to":"25098"} +{"$label":"ACTS_IN","name":"Tarun","type":"Role","_key":"37033","_from":"25105","_to":"25098"} +{"$label":"ACTS_IN","name":"Bhairav","type":"Role","_key":"37032","_from":"25104","_to":"25098"} +{"$label":"ACTS_IN","name":"Amrita","type":"Role","_key":"37029","_from":"25103","_to":"25098"} +{"$label":"ACTS_IN","name":"Pundit Darbar","type":"Role","_key":"37028","_from":"25102","_to":"25098"} +{"$label":"ACTS_IN","name":"Vanraj","type":"Role","_key":"37027","_from":"25101","_to":"25098"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"37026","_from":"25100","_to":"25098"} +{"$label":"ACTS_IN","name":"Nandini","type":"Role","_key":"37025","_from":"25099","_to":"25098"} +{"$label":"ACTS_IN","name":"Diya Malhotra","type":"Role","_key":"120197","_from":"25099","_to":"70590"} +{"$label":"ACTS_IN","name":"Kiranjit Ahluwalia","type":"Role","_key":"106565","_from":"25099","_to":"62792"} +{"$label":"ACTS_IN","name":"Parvati \"Paro\" Chakraborty","type":"Role","_key":"106301","_from":"25099","_to":"62621"} +{"$label":"ACTS_IN","name":"Sujata Desai","type":"Role","_key":"105851","_from":"25099","_to":"62311"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"103429","_from":"25099","_to":"60838"} +{"$label":"ACTS_IN","name":"Anita Rajan","type":"Role","_key":"100005","_from":"25099","_to":"59000"} +{"$label":"ACTS_IN","name":"Sunehri","type":"Role","_key":"98979","_from":"25099","_to":"58312"} +{"$label":"ACTS_IN","name":"Jodhaa Bai","type":"Role","_key":"98398","_from":"25099","_to":"57963"} +{"$label":"ACTS_IN","name":"Lalita Bakshi","type":"Role","_key":"90173","_from":"25099","_to":"53317"} +{"$label":"ACTS_IN","name":"Special Appearance in Kajra re","type":"Role","_key":"71782","_from":"25099","_to":"43444"} +{"$label":"ACTS_IN","name":"Megha","type":"Role","_key":"70361","_from":"25099","_to":"42859"} +{"$label":"ACTS_IN","name":"Tilo","type":"Role","_key":"56024","_from":"25099","_to":"35612"} +{"$label":"ACTS_IN","name":"Mira","type":"Role","_key":"55873","_from":"25099","_to":"35542"} +{"$label":"ACTS_IN","name":"Imaan","type":"Role","_key":"108484","_from":"25100","_to":"64124"} +{"$label":"ACTS_IN","name":"Aman Mehra","type":"Role","_key":"72401","_from":"25100","_to":"43712"} +{"$label":"ACTS_IN","name":"Gopal","type":"Role","_key":"120876","_from":"25101","_to":"70976"} +{"$label":"ACTS_IN","name":"Malik","type":"Role","_key":"105799","_from":"25101","_to":"62286"} +{"$label":"ACTS_IN","name":"Omkara","type":"Role","_key":"101491","_from":"25101","_to":"59735"} +{"$label":"ACTS_IN","name":"Gopal","type":"Role","_key":"100727","_from":"25101","_to":"59389"} +{"$label":"ACTS_IN","name":"Kaushalya Mukherjee","type":"Role","_key":"106303","_from":"25103","_to":"62621"} +{"$label":"ACTS_IN","name":"Bharat","type":"Role","_key":"104308","_from":"25105","_to":"61371"} +{"$label":"ACTS_IN","name":"Amar Kaul","type":"Role","_key":"101638","_from":"25105","_to":"59822"} +{"$label":"ACTS_IN","name":"Mr. Chojar","type":"Role","_key":"98783","_from":"25105","_to":"58204"} +{"$label":"ACTS_IN","name":"Balwinder Khosla","type":"Role","_key":"98395","_from":"25105","_to":"57961"} +{"$label":"ACTS_IN","name":"Rabindra","type":"Role","_key":"46968","_from":"25105","_to":"30971"} +{"$label":"DIRECTED","_key":"108488","_from":"25106","_to":"64124"} +{"$label":"DIRECTED","_key":"106319","_from":"25106","_to":"62621"} +{"$label":"ACTS_IN","name":"Chemist","type":"Role","_key":"37049","_from":"25114","_to":"25107"} +{"$label":"ACTS_IN","name":"Austin Morgan","type":"Role","_key":"37048","_from":"25113","_to":"25107"} +{"$label":"ACTS_IN","name":"Sophie McLoughlin","type":"Role","_key":"37047","_from":"25112","_to":"25107"} +{"$label":"ACTS_IN","name":"Vera McLoughlin","type":"Role","_key":"37046","_from":"25111","_to":"25107"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Mundy","type":"Role","_key":"37044","_from":"25110","_to":"25107"} +{"$label":"ACTS_IN","name":"Danny Bradley","type":"Role","_key":"37043","_from":"25109","_to":"25107"} +{"$label":"ACTS_IN","name":"Agnes 'Aggie' Mundy","type":"Role","_key":"37038","_from":"25108","_to":"25107"} +{"$label":"ACTS_IN","name":"Carlos Sanchez-Verne","type":"Role","_key":"37056","_from":"25119","_to":"25115"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"37055","_from":"25118","_to":"25115"} +{"$label":"ACTS_IN","name":"Laura Werpachowsky","type":"Role","_key":"37054","_from":"25117","_to":"25115"} +{"$label":"ACTS_IN","name":"Margaret McKinney","type":"Role","_key":"37052","_from":"25116","_to":"25115"} +{"$label":"ACTS_IN","name":"Aunt Nan","type":"Role","_key":"100612","_from":"25116","_to":"59326"} +{"$label":"ACTS_IN","name":"Amber Spottiswood","type":"Role","_key":"99876","_from":"25116","_to":"58900"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"90145","_from":"25117","_to":"53304"} +{"$label":"ACTS_IN","name":"Neil Kincaid","type":"Role","_key":"37070","_from":"25122","_to":"25120"} +{"$label":"ACTS_IN","name":"Philip Seymour, 1st Lieutenant","type":"Role","_key":"37062","_from":"25121","_to":"25120"} +{"$label":"ACTS_IN","name":"Flight Lieutenant Gillibrand","type":"Role","_key":"106344","_from":"25122","_to":"62650"} +{"$label":"ACTS_IN","name":"Walter Reilly","type":"Role","_key":"55433","_from":"25122","_to":"35332"} +{"$label":"ACTS_IN","name":"Walter Reilly","type":"Role","_key":"53595","_from":"25122","_to":"34586"} +{"$label":"ACTS_IN","name":"Angelino","type":"Role","_key":"37080","_from":"25126","_to":"25123"} +{"$label":"ACTS_IN","name":"Pietro, the son","type":"Role","_key":"37077","_from":"25125","_to":"25123"} +{"$label":"DIRECTED","_key":"37072","_from":"25124","_to":"25123"} +{"$label":"DIRECTED","_key":"121491","_from":"25124","_to":"71368"} +{"$label":"DIRECTED","_key":"89839","_from":"25124","_to":"53155"} +{"$label":"DIRECTED","_key":"38651","_from":"25124","_to":"26112"} +{"$label":"DIRECTED","_key":"37081","_from":"25124","_to":"25127"} +{"$label":"ACTS_IN","name":"Geoffrey Chaucer","type":"Role","_key":"38659","_from":"25124","_to":"26112"} +{"$label":"ACTS_IN","name":"Signora Maggi","type":"Role","_key":"37100","_from":"25143","_to":"25127"} +{"$label":"ACTS_IN","name":"Collaborator","type":"Role","_key":"37098","_from":"25142","_to":"25127"} +{"$label":"ACTS_IN","name":"Collaborator","type":"Role","_key":"37097","_from":"25141","_to":"25127"} +{"$label":"ACTS_IN","name":"Collaborator","type":"Role","_key":"37096","_from":"25140","_to":"25127"} +{"$label":"ACTS_IN","name":"Collaborator","type":"Role","_key":"37095","_from":"25139","_to":"25127"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"37094","_from":"25138","_to":"25127"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"37093","_from":"25137","_to":"25127"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"37092","_from":"25136","_to":"25127"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"37091","_from":"25135","_to":"25127"} +{"$label":"ACTS_IN","name":"male victim","type":"Role","_key":"37090","_from":"25134","_to":"25127"} +{"$label":"ACTS_IN","name":"male victim","type":"Role","_key":"37089","_from":"25133","_to":"25127"} +{"$label":"ACTS_IN","name":"male victim","type":"Role","_key":"37088","_from":"25132","_to":"25127"} +{"$label":"ACTS_IN","name":"the pianist","type":"Role","_key":"37087","_from":"25131","_to":"25127"} +{"$label":"ACTS_IN","name":"the President","type":"Role","_key":"37085","_from":"25130","_to":"25127"} +{"$label":"ACTS_IN","name":"the Magistrate","type":"Role","_key":"37084","_from":"25129","_to":"25127"} +{"$label":"ACTS_IN","name":"the Bishop","type":"Role","_key":"37083","_from":"25128","_to":"25127"} +{"$label":"ACTS_IN","name":"Tanja","type":"Role","_key":"37110","_from":"25147","_to":"25144"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"37107","_from":"25146","_to":"25144"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"37106","_from":"25145","_to":"25144"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"62069","_from":"25147","_to":"39083"} +{"$label":"ACTS_IN","name":"Sissi","type":"Role","_key":"41552","_from":"25147","_to":"27899"} +{"$label":"DIRECTED","_key":"37126","_from":"25154","_to":"25148"} +{"$label":"ACTS_IN","name":"Lisica\/ \"Der Fuchs\"","type":"Role","_key":"37125","_from":"25153","_to":"25148"} +{"$label":"ACTS_IN","name":"Marda","type":"Role","_key":"37124","_from":"25152","_to":"25148"} +{"$label":"ACTS_IN","name":"Bosnierin","type":"Role","_key":"37123","_from":"25151","_to":"25148"} +{"$label":"ACTS_IN","name":"Srdjan","type":"Role","_key":"37121","_from":"25150","_to":"25148"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"37120","_from":"25149","_to":"25148"} +{"$label":"ACTS_IN","name":"Columbus","type":"Role","_key":"121458","_from":"25149","_to":"71351"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"120487","_from":"25149","_to":"70773"} +{"$label":"ACTS_IN","name":"James Brennan","type":"Role","_key":"109617","_from":"25149","_to":"64750"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"94486","_from":"25149","_to":"55647"} +{"$label":"ACTS_IN","name":"Walt Berkman","type":"Role","_key":"65179","_from":"25149","_to":"40485"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"59439","_from":"25149","_to":"37547"} +{"$label":"DIRECTED","_key":"54375","_from":"25154","_to":"34876"} +{"$label":"DIRECTED","_key":"37147","_from":"25171","_to":"25155"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"37146","_from":"25170","_to":"25155"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"37145","_from":"25169","_to":"25155"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"37144","_from":"25168","_to":"25155"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"37143","_from":"25167","_to":"25155"} +{"$label":"ACTS_IN","name":"Estelle","type":"Role","_key":"37142","_from":"25166","_to":"25155"} +{"$label":"ACTS_IN","name":"Verena","type":"Role","_key":"37141","_from":"25165","_to":"25155"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"37140","_from":"25164","_to":"25155"} +{"$label":"ACTS_IN","name":"Gregg","type":"Role","_key":"37138","_from":"25163","_to":"25155"} +{"$label":"ACTS_IN","name":"Der Chef","type":"Role","_key":"37137","_from":"25162","_to":"25155"} +{"$label":"ACTS_IN","name":"Cem","type":"Role","_key":"37136","_from":"25161","_to":"25155"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"37135","_from":"25160","_to":"25155"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"37133","_from":"25159","_to":"25155"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"37132","_from":"25158","_to":"25155"} +{"$label":"ACTS_IN","name":"Mitsch","type":"Role","_key":"37131","_from":"25157","_to":"25155"} +{"$label":"ACTS_IN","name":"Mavie","type":"Role","_key":"37128","_from":"25156","_to":"25155"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"69263","_from":"25156","_to":"42350"} +{"$label":"ACTS_IN","name":"Augustine","type":"Role","_key":"48472","_from":"25156","_to":"31822"} +{"$label":"ACTS_IN","name":"Gefreiter Kanopke","type":"Role","_key":"42097","_from":"25159","_to":"28198"} +{"$label":"ACTS_IN","name":"Tommy Zierer","type":"Role","_key":"64709","_from":"25160","_to":"40294"} +{"$label":"ACTS_IN","name":"D\u00f6ner","type":"Role","_key":"66602","_from":"25161","_to":"41171"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"121373","_from":"25166","_to":"71326"} +{"$label":"ACTS_IN","name":"Linda Elf","type":"Role","_key":"37158","_from":"25175","_to":"25172"} +{"$label":"ACTS_IN","name":"Papa Claus","type":"Role","_key":"37155","_from":"25174","_to":"25172"} +{"$label":"DIRECTED","_key":"37148","_from":"25173","_to":"25172"} +{"$label":"DIRECTED","_key":"54432","_from":"25173","_to":"34907"} +{"$label":"DIRECTED","_key":"41403","_from":"25173","_to":"27828"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"49015","_from":"25175","_to":"32124"} +{"$label":"ACTS_IN","name":"Stiefschwester 1\/Baby\/Rotk\u00e4ppchen","type":"Role","_key":"37178","_from":"25185","_to":"25176"} +{"$label":"ACTS_IN","name":"Freund 1","type":"Role","_key":"37177","_from":"25184","_to":"25176"} +{"$label":"ACTS_IN","name":"Hexe1","type":"Role","_key":"37175","_from":"25183","_to":"25176"} +{"$label":"ACTS_IN","name":"Freund 3\/Zwerg 3\/Bote\/Wolf 2","type":"Role","_key":"37174","_from":"25182","_to":"25176"} +{"$label":"ACTS_IN","name":"Freund 2","type":"Role","_key":"37168","_from":"25181","_to":"25176"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen","type":"Role","_key":"37167","_from":"25180","_to":"25176"} +{"$label":"ACTS_IN","name":"Gute Fee","type":"Role","_key":"37166","_from":"25179","_to":"25176"} +{"$label":"DIRECTED","_key":"37162","_from":"25178","_to":"25176"} +{"$label":"DIRECTED","_key":"37161","_from":"25177","_to":"25176"} +{"$label":"ACTS_IN","name":"Left Hand (Voice)","type":"Role","_key":"106602","_from":"25180","_to":"62814"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"106596","_from":"25181","_to":"62811"} +{"$label":"ACTS_IN","name":"Oobedoob Benubi \/ Thumbtrooper (voice)","type":"Role","_key":"102592","_from":"25181","_to":"60357"} +{"$label":"ACTS_IN","name":"Sal Maroni \/ Mole Man \/ Youth #4","type":"Role","_key":"97202","_from":"25181","_to":"57172"} +{"$label":"ACTS_IN","name":"Eubie \/ Kid \/ Turbo","type":"Role","_key":"95959","_from":"25181","_to":"56423"} +{"$label":"ACTS_IN","name":"Bobble","type":"Role","_key":"93220","_from":"25181","_to":"54917"} +{"$label":"ACTS_IN","name":"Chief","type":"Role","_key":"58382","_from":"25181","_to":"36888"} +{"$label":"ACTS_IN","name":"Peck the Rooster \/ Gopher","type":"Role","_key":"57872","_from":"25181","_to":"36614"} +{"$label":"ACTS_IN","name":"Beetle","type":"Role","_key":"57851","_from":"25181","_to":"36606"} +{"$label":"ACTS_IN","name":"Dr. Wolfowitz","type":"Role","_key":"106249","_from":"25182","_to":"62588"} +{"$label":"ACTS_IN","name":"Robot","type":"Role","_key":"95634","_from":"25182","_to":"56248"} +{"$label":"ACTS_IN","name":"Spongebob","type":"Role","_key":"72275","_from":"25182","_to":"43663"} +{"$label":"ACTS_IN","name":"Joe Blow","type":"Role","_key":"37771","_from":"25182","_to":"25613"} +{"$label":"ACTS_IN","name":"Grandma Gertie 'Pookie' \/ Mayor Dixie \/ Red","type":"Role","_key":"113735","_from":"25183","_to":"67021"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"93618","_from":"25183","_to":"55120"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"88987","_from":"25183","_to":"52708"} +{"$label":"ACTS_IN","name":"Hoonah","type":"Role","_key":"59412","_from":"25183","_to":"37525"} +{"$label":"ACTS_IN","name":"Queen Victoria ( voice )","type":"Role","_key":"45804","_from":"25183","_to":"30298"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"59392","_from":"25184","_to":"37511"} +{"$label":"ACTS_IN","name":"Kanga","type":"Role","_key":"110642","_from":"25185","_to":"65362"} +{"$label":"ACTS_IN","name":"Wendy Darling (voice)","type":"Role","_key":"109864","_from":"25185","_to":"64907"} +{"$label":"ACTS_IN","name":"Kanga (voice)","type":"Role","_key":"105322","_from":"25185","_to":"61972"} +{"$label":"ACTS_IN","name":"Kanga (voice)","type":"Role","_key":"102312","_from":"25185","_to":"60199"} +{"$label":"ACTS_IN","name":"Phillip \/ Lillian \/ Betty DeVille (voices)","type":"Role","_key":"100319","_from":"25185","_to":"59151"} +{"$label":"ACTS_IN","name":"Kanga (voice)","type":"Role","_key":"95861","_from":"25185","_to":"56376"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"58379","_from":"25185","_to":"36888"} +{"$label":"ACTS_IN","name":"Carol Radford","type":"Role","_key":"37195","_from":"25198","_to":"25186"} +{"$label":"ACTS_IN","name":"Laurence Rush","type":"Role","_key":"37193","_from":"25197","_to":"25186"} +{"$label":"ACTS_IN","name":"Patricia McLaughlin","type":"Role","_key":"37192","_from":"25196","_to":"25186"} +{"$label":"ACTS_IN","name":"Stanley McCombe","type":"Role","_key":"37191","_from":"25195","_to":"25186"} +{"$label":"ACTS_IN","name":"Caroline Gibson","type":"Role","_key":"37189","_from":"25194","_to":"25186"} +{"$label":"ACTS_IN","name":"Elizabeth Gibson","type":"Role","_key":"37188","_from":"25193","_to":"25186"} +{"$label":"ACTS_IN","name":"Cathy Gallagher","type":"Role","_key":"37187","_from":"25192","_to":"25186"} +{"$label":"ACTS_IN","name":"Sharon Gallagher","type":"Role","_key":"37186","_from":"25191","_to":"25186"} +{"$label":"ACTS_IN","name":"Mark Breslin","type":"Role","_key":"37185","_from":"25190","_to":"25186"} +{"$label":"ACTS_IN","name":"Patsy Gallagher","type":"Role","_key":"37182","_from":"25189","_to":"25186"} +{"$label":"ACTS_IN","name":"Michael Gallagher","type":"Role","_key":"37181","_from":"25188","_to":"25186"} +{"$label":"DIRECTED","_key":"37180","_from":"25187","_to":"25186"} +{"$label":"DIRECTED","_key":"46824","_from":"25187","_to":"30888"} +{"$label":"ACTS_IN","name":"Mr. Aherne","type":"Role","_key":"104760","_from":"25188","_to":"61625"} +{"$label":"ACTS_IN","name":"John Gilligan","type":"Role","_key":"64703","_from":"25188","_to":"40293"} +{"$label":"ACTS_IN","name":"Builder","type":"Role","_key":"95383","_from":"25195","_to":"56102"} +{"$label":"ACTS_IN","name":"Sylvie Cooper","type":"Role","_key":"52694","_from":"25196","_to":"34211"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"37201","_from":"25201","_to":"25199"} +{"$label":"ACTS_IN","name":"Katia Bennett","type":"Role","_key":"37199","_from":"25200","_to":"25199"} +{"$label":"ACTS_IN","name":"John Wilson","type":"Role","_key":"37205","_from":"25203","_to":"25202"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"37212","_from":"25208","_to":"25204"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"37211","_from":"25207","_to":"25204"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"37209","_from":"25206","_to":"25204"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"37208","_from":"25205","_to":"25204"} +{"$label":"ACTS_IN","name":"Anne Bowles","type":"Role","_key":"45990","_from":"25205","_to":"30401"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39387","_from":"25205","_to":"26628"} +{"$label":"ACTS_IN","name":"Jan, hitchhiker","type":"Role","_key":"37218","_from":"25213","_to":"25209"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"37217","_from":"25212","_to":"25209"} +{"$label":"ACTS_IN","name":"Mr. Kale","type":"Role","_key":"37216","_from":"25211","_to":"25209"} +{"$label":"ACTS_IN","name":"Frank Wyler","type":"Role","_key":"37214","_from":"25210","_to":"25209"} +{"$label":"ACTS_IN","name":"Simeon","type":"Role","_key":"37226","_from":"25220","_to":"25214"} +{"$label":"ACTS_IN","name":"Inspector Dannick","type":"Role","_key":"37225","_from":"25219","_to":"25214"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"37224","_from":"25218","_to":"25214"} +{"$label":"ACTS_IN","name":"Walter von Ravensbr\u00fcck","type":"Role","_key":"37223","_from":"25217","_to":"25214"} +{"$label":"ACTS_IN","name":"Eva von Ravensbr\u00fcck","type":"Role","_key":"37222","_from":"25216","_to":"25214"} +{"$label":"ACTS_IN","name":"Greta von Holstein","type":"Role","_key":"37220","_from":"25215","_to":"25214"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"121080","_from":"25215","_to":"71109"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37240","_from":"25232","_to":"25221"} +{"$label":"ACTS_IN","name":"Cajera dep\u00f3sito","type":"Role","_key":"37239","_from":"25231","_to":"25221"} +{"$label":"ACTS_IN","name":"Jugador de squash","type":"Role","_key":"37238","_from":"25230","_to":"25221"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"37236","_from":"25229","_to":"25221"} +{"$label":"ACTS_IN","name":"Sacerdote","type":"Role","_key":"37234","_from":"25228","_to":"25221"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"37233","_from":"25227","_to":"25221"} +{"$label":"ACTS_IN","name":"Segurata","type":"Role","_key":"37232","_from":"25226","_to":"25221"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"37231","_from":"25225","_to":"25221"} +{"$label":"ACTS_IN","name":"Rub\u00e9n","type":"Role","_key":"37230","_from":"25224","_to":"25221"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"37229","_from":"25223","_to":"25221"} +{"$label":"DIRECTED","_key":"37228","_from":"25222","_to":"25221"} +{"$label":"ACTS_IN","name":"Ramiro","type":"Role","_key":"106470","_from":"25223","_to":"62726"} +{"$label":"ACTS_IN","name":"Pascal","type":"Role","_key":"37935","_from":"25224","_to":"25684"} +{"$label":"ACTS_IN","name":"V\u00edctor Mart\u00ednez","type":"Role","_key":"37926","_from":"25224","_to":"25681"} +{"$label":"ACTS_IN","name":"Pere-Lluc","type":"Role","_key":"37243","_from":"25224","_to":"25233"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"113863","_from":"25225","_to":"67074"} +{"$label":"ACTS_IN","name":"Ajudant","type":"Role","_key":"37251","_from":"25241","_to":"25233"} +{"$label":"ACTS_IN","name":"Marit","type":"Role","_key":"37250","_from":"25240","_to":"25233"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"37249","_from":"25239","_to":"25233"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"37248","_from":"25238","_to":"25233"} +{"$label":"ACTS_IN","name":"Benet","type":"Role","_key":"37246","_from":"25237","_to":"25233"} +{"$label":"ACTS_IN","name":"\u00c0lex","type":"Role","_key":"37245","_from":"25236","_to":"25233"} +{"$label":"ACTS_IN","name":"Jordina","type":"Role","_key":"37244","_from":"25235","_to":"25233"} +{"$label":"DIRECTED","_key":"37242","_from":"25234","_to":"25233"} +{"$label":"ACTS_IN","name":"Ukrainischer Zeuge","type":"Role","_key":"37264","_from":"25248","_to":"25242"} +{"$label":"ACTS_IN","name":"Borchart","type":"Role","_key":"37262","_from":"25247","_to":"25242"} +{"$label":"ACTS_IN","name":"Hombach","type":"Role","_key":"37259","_from":"25246","_to":"25242"} +{"$label":"ACTS_IN","name":"Barbara Tries","type":"Role","_key":"37258","_from":"25245","_to":"25242"} +{"$label":"ACTS_IN","name":"Marlies Heidorn","type":"Role","_key":"37253","_from":"25244","_to":"25242"} +{"$label":"DIRECTED","_key":"37252","_from":"25243","_to":"25242"} +{"$label":"DIRECTED","_key":"88221","_from":"25243","_to":"52345"} +{"$label":"DIRECTED","_key":"49632","_from":"25243","_to":"32478"} +{"$label":"ACTS_IN","name":"Monika Faber","type":"Role","_key":"49624","_from":"25244","_to":"32478"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"45588","_from":"25244","_to":"30180"} +{"$label":"ACTS_IN","name":"Annabelle Hawkins","type":"Role","_key":"38312","_from":"25244","_to":"25875"} +{"$label":"ACTS_IN","name":"Katja Strasser","type":"Role","_key":"37319","_from":"25244","_to":"25284"} +{"$label":"ACTS_IN","name":"Katja Ullrich","type":"Role","_key":"37312","_from":"25244","_to":"25282"} +{"$label":"ACTS_IN","name":"Vivien","type":"Role","_key":"37303","_from":"25244","_to":"25277"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"37293","_from":"25244","_to":"25274"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"37276","_from":"25244","_to":"25258"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"43502","_from":"25245","_to":"29052"} +{"$label":"ACTS_IN","name":"Hansi Gibs","type":"Role","_key":"42532","_from":"25246","_to":"28471"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"42481","_from":"25246","_to":"28443"} +{"$label":"ACTS_IN","name":"Doctor Blaschke","type":"Role","_key":"106025","_from":"25247","_to":"62417"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42501","_from":"25247","_to":"28455"} +{"$label":"ACTS_IN","name":"Lasalle","type":"Role","_key":"39564","_from":"25247","_to":"26731"} +{"$label":"ACTS_IN","name":"Cherie Claymon","type":"Role","_key":"37274","_from":"25257","_to":"25250"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"37273","_from":"25256","_to":"25250"} +{"$label":"ACTS_IN","name":"Bunny Claymon","type":"Role","_key":"37272","_from":"25255","_to":"25250"} +{"$label":"ACTS_IN","name":"Mr. Felder","type":"Role","_key":"37271","_from":"25254","_to":"25250"} +{"$label":"ACTS_IN","name":"Headmaster Sherman","type":"Role","_key":"37269","_from":"25253","_to":"25250"} +{"$label":"ACTS_IN","name":"Danielle Sherman","type":"Role","_key":"37267","_from":"25252","_to":"25250"} +{"$label":"ACTS_IN","name":"Sebastian Valmont","type":"Role","_key":"37266","_from":"25251","_to":"25250"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"65273","_from":"25251","_to":"40514"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"55925","_from":"25251","_to":"35569"} +{"$label":"ACTS_IN","name":"Ryan Sommers","type":"Role","_key":"49914","_from":"25251","_to":"32678"} +{"$label":"ACTS_IN","name":"Angie Albright","type":"Role","_key":"105874","_from":"25252","_to":"62328"} +{"$label":"ACTS_IN","name":"Charles 'Chuck' Beeter","type":"Role","_key":"99551","_from":"25253","_to":"58686"} +{"$label":"ACTS_IN","name":"Mr. Palamino","type":"Role","_key":"59710","_from":"25253","_to":"37702"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"54521","_from":"25256","_to":"34938"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"102930","_from":"25257","_to":"60545"} +{"$label":"ACTS_IN","name":"Dee Vine","type":"Role","_key":"100217","_from":"25257","_to":"59107"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"37282","_from":"25263","_to":"25258"} +{"$label":"ACTS_IN","name":"Reza","type":"Role","_key":"37280","_from":"25262","_to":"25258"} +{"$label":"ACTS_IN","name":"Dorothee","type":"Role","_key":"37279","_from":"25261","_to":"25258"} +{"$label":"ACTS_IN","name":"Tariq Slimani","type":"Role","_key":"37277","_from":"25260","_to":"25258"} +{"$label":"DIRECTED","_key":"37275","_from":"25259","_to":"25258"} +{"$label":"ACTS_IN","name":"Ahmed","type":"Role","_key":"118232","_from":"25260","_to":"69499"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"95708","_from":"25260","_to":"56295"} +{"$label":"ACTS_IN","name":"Nizar","type":"Role","_key":"88100","_from":"25260","_to":"52284"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"50306","_from":"25260","_to":"32864"} +{"$label":"ACTS_IN","name":"Rashid","type":"Role","_key":"49214","_from":"25260","_to":"32242"} +{"$label":"ACTS_IN","name":"Valeria Caldas","type":"Role","_key":"37291","_from":"25273","_to":"25264"} +{"$label":"ACTS_IN","name":"Christopher Newborn","type":"Role","_key":"37290","_from":"25272","_to":"25264"} +{"$label":"ACTS_IN","name":"Michael Cattrall","type":"Role","_key":"37289","_from":"25271","_to":"25264"} +{"$label":"ACTS_IN","name":"Sheila Wright","type":"Role","_key":"37288","_from":"25270","_to":"25264"} +{"$label":"ACTS_IN","name":"Alison Lebray","type":"Role","_key":"37287","_from":"25269","_to":"25264"} +{"$label":"ACTS_IN","name":"Patrick Bales","type":"Role","_key":"37286","_from":"25268","_to":"25264"} +{"$label":"ACTS_IN","name":"Cassidy Merteuil","type":"Role","_key":"37285","_from":"25267","_to":"25264"} +{"$label":"ACTS_IN","name":"Jason Argyle","type":"Role","_key":"37284","_from":"25266","_to":"25264"} +{"$label":"DIRECTED","_key":"37283","_from":"25265","_to":"25264"} +{"$label":"DIRECTED","_key":"118310","_from":"25265","_to":"69543"} +{"$label":"DIRECTED","_key":"111297","_from":"25265","_to":"65727"} +{"$label":"ACTS_IN","name":"Axel Palmer","type":"Role","_key":"100259","_from":"25266","_to":"59126"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"89780","_from":"25266","_to":"53136"} +{"$label":"ACTS_IN","name":"Carter Horton","type":"Role","_key":"54496","_from":"25266","_to":"34931"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"59751","_from":"25267","_to":"37723"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"37299","_from":"25276","_to":"25274"} +{"$label":"DIRECTED","_key":"37292","_from":"25275","_to":"25274"} +{"$label":"DIRECTED","_key":"40024","_from":"25275","_to":"27025"} +{"$label":"ACTS_IN","name":"Schulz","type":"Role","_key":"68503","_from":"25276","_to":"42017"} +{"$label":"ACTS_IN","name":"Konsul Kanon","type":"Role","_key":"56982","_from":"25276","_to":"36154"} +{"$label":"ACTS_IN","name":"Gr\u00f6del (as Hans-Peter Hallwachs)","type":"Role","_key":"53464","_from":"25276","_to":"34535"} +{"$label":"ACTS_IN","name":"Vater von Eschenbach","type":"Role","_key":"42904","_from":"25276","_to":"28665"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"37307","_from":"25281","_to":"25277"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"37306","_from":"25280","_to":"25277"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"37302","_from":"25279","_to":"25277"} +{"$label":"DIRECTED","_key":"37301","_from":"25278","_to":"25277"} +{"$label":"DIRECTED","_key":"44372","_from":"25278","_to":"29567"} +{"$label":"DIRECTED","_key":"42493","_from":"25278","_to":"28455"} +{"$label":"ACTS_IN","name":"Frau Dr. Riffleson","type":"Role","_key":"63955","_from":"25279","_to":"39947"} +{"$label":"ACTS_IN","name":"Almut G\u00fctzkow","type":"Role","_key":"52850","_from":"25279","_to":"34257"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"50168","_from":"25279","_to":"32800"} +{"$label":"ACTS_IN","name":"Bundeskanzlerin","type":"Role","_key":"46686","_from":"25279","_to":"30826"} +{"$label":"ACTS_IN","name":"Isabella Wellingsen","type":"Role","_key":"42494","_from":"25279","_to":"28455"} +{"$label":"ACTS_IN","name":"Annerose Waguscheit","type":"Role","_key":"66213","_from":"25280","_to":"40962"} +{"$label":"ACTS_IN","name":"Irmgard L\u00f6ffler","type":"Role","_key":"46783","_from":"25280","_to":"30866"} +{"$label":"ACTS_IN","name":"Tusnelda","type":"Role","_key":"46286","_from":"25280","_to":"30593"} +{"$label":"ACTS_IN","name":"Ruth Hupach","type":"Role","_key":"37315","_from":"25280","_to":"25282"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"50169","_from":"25281","_to":"32800"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"43494","_from":"25281","_to":"29044"} +{"$label":"DIRECTED","_key":"37310","_from":"25283","_to":"25282"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37323","_from":"25287","_to":"25284"} +{"$label":"ACTS_IN","name":"Ralph Degenhardt","type":"Role","_key":"37322","_from":"25286","_to":"25284"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"37318","_from":"25285","_to":"25284"} +{"$label":"ACTS_IN","name":"Andreas Imdahl","type":"Role","_key":"49961","_from":"25285","_to":"32701"} +{"$label":"ACTS_IN","name":"Thomas Rieser","type":"Role","_key":"43712","_from":"25285","_to":"29186"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"60393","_from":"25286","_to":"38093"} +{"$label":"ACTS_IN","name":"Au\u00dfenreporterin von TETV","type":"Role","_key":"37341","_from":"25303","_to":"25288"} +{"$label":"ACTS_IN","name":"Sanit\u00e4ter","type":"Role","_key":"37340","_from":"25302","_to":"25288"} +{"$label":"ACTS_IN","name":"Au\u00dfenreporter von TETV","type":"Role","_key":"37339","_from":"25301","_to":"25288"} +{"$label":"ACTS_IN","name":"Au\u00dfenreporter von TETV","type":"Role","_key":"37338","_from":"25300","_to":"25288"} +{"$label":"ACTS_IN","name":"Hotelkellner","type":"Role","_key":"37337","_from":"25299","_to":"25288"} +{"$label":"ACTS_IN","name":"Claudia von Hohenheim","type":"Role","_key":"37336","_from":"25298","_to":"25288"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37335","_from":"25297","_to":"25288"} +{"$label":"ACTS_IN","name":"Frau Grote","type":"Role","_key":"37334","_from":"25296","_to":"25288"} +{"$label":"ACTS_IN","name":"Frau Steinfuhrt","type":"Role","_key":"37333","_from":"25295","_to":"25288"} +{"$label":"ACTS_IN","name":"Mutter Lotz","type":"Role","_key":"37332","_from":"25294","_to":"25288"} +{"$label":"ACTS_IN","name":"Witte ( Mitglied der K\u00f6hlerbande )","type":"Role","_key":"37330","_from":"25293","_to":"25288"} +{"$label":"ACTS_IN","name":"H\u00e4nsel ( Mitglied der K\u00f6hlerbande )","type":"Role","_key":"37329","_from":"25292","_to":"25288"} +{"$label":"ACTS_IN","name":"K\u00f6hler ( Chef der K\u00f6hlerbande )","type":"Role","_key":"37328","_from":"25291","_to":"25288"} +{"$label":"ACTS_IN","name":"Bernhard Lotz","type":"Role","_key":"37325","_from":"25290","_to":"25288"} +{"$label":"DIRECTED","_key":"37324","_from":"25289","_to":"25288"} +{"$label":"ACTS_IN","name":"Lord Francourt Bobberley","type":"Role","_key":"41087","_from":"25290","_to":"27647"} +{"$label":"ACTS_IN","name":"Didi","type":"Role","_key":"68500","_from":"25291","_to":"42017"} +{"$label":"ACTS_IN","name":"Dieter D\u00f6del","type":"Role","_key":"68361","_from":"25291","_to":"41954"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54343","_from":"25291","_to":"34866"} +{"$label":"ACTS_IN","name":"Hans Immer","type":"Role","_key":"50913","_from":"25291","_to":"33228"} +{"$label":"DIRECTED","_key":"68366","_from":"25291","_to":"41954"} +{"$label":"ACTS_IN","name":"Konsulin von Kohlen und Reibach","type":"Role","_key":"55354","_from":"25295","_to":"35292"} +{"$label":"ACTS_IN","name":"Elisabeth Langhoff","type":"Role","_key":"39807","_from":"25298","_to":"26893"} +{"$label":"DIRECTED","_key":"71044","_from":"25302","_to":"43142"} +{"$label":"DIRECTED","_key":"47343","_from":"25302","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47347","_from":"25302","_to":"31181"} +{"$label":"ACTS_IN","name":"Schwimmerin","type":"Role","_key":"37351","_from":"25314","_to":"25304"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"37350","_from":"25313","_to":"25304"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"37349","_from":"25312","_to":"25304"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"37348","_from":"25311","_to":"25304"} +{"$label":"ACTS_IN","name":"Lorenzo","type":"Role","_key":"37347","_from":"25310","_to":"25304"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"37346","_from":"25309","_to":"25304"} +{"$label":"ACTS_IN","name":"Lizelle","type":"Role","_key":"37345","_from":"25308","_to":"25304"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"37344","_from":"25307","_to":"25304"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"37343","_from":"25306","_to":"25304"} +{"$label":"DIRECTED","_key":"37342","_from":"25305","_to":"25304"} +{"$label":"ACTS_IN","name":"Cheryl Biggs","type":"Role","_key":"49673","_from":"25306","_to":"32500"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"37360","_from":"25320","_to":"25315"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"37359","_from":"25319","_to":"25315"} +{"$label":"ACTS_IN","name":"Weaponsmaster","type":"Role","_key":"37358","_from":"25318","_to":"25315"} +{"$label":"ACTS_IN","name":"Grendel","type":"Role","_key":"37357","_from":"25317","_to":"25315"} +{"$label":"DIRECTED","_key":"37352","_from":"25316","_to":"25315"} +{"$label":"DIRECTED","_key":"98761","_from":"25316","_to":"58201"} +{"$label":"DIRECTED","_key":"65657","_from":"25316","_to":"40676"} +{"$label":"DIRECTED","_key":"61097","_from":"25316","_to":"38618"} +{"$label":"ACTS_IN","name":"Buck Fryman","type":"Role","_key":"37731","_from":"25318","_to":"25589"} +{"$label":"ACTS_IN","name":"Grendel","type":"Role","_key":"37368","_from":"25325","_to":"25321"} +{"$label":"ACTS_IN","name":"Aeschere","type":"Role","_key":"37365","_from":"25324","_to":"25321"} +{"$label":"ACTS_IN","name":"Young Grendel","type":"Role","_key":"37362","_from":"25323","_to":"25321"} +{"$label":"DIRECTED","_key":"37361","_from":"25322","_to":"25321"} +{"$label":"ACTS_IN","name":"Erlendur","type":"Role","_key":"107722","_from":"25325","_to":"63596"} +{"$label":"ACTS_IN","name":"Gorelov","type":"Role","_key":"50362","_from":"25325","_to":"32894"} +{"$label":"ACTS_IN","name":"Peasant ( voice )","type":"Role","_key":"37376","_from":"25329","_to":"25326"} +{"$label":"ACTS_IN","name":"Queen Wealtheow ( voice )","type":"Role","_key":"37373","_from":"25328","_to":"25326"} +{"$label":"DIRECTED","_key":"37369","_from":"25327","_to":"25326"} +{"$label":"ACTS_IN","name":"Annet","type":"Role","_key":"37390","_from":"25341","_to":"25330"} +{"$label":"ACTS_IN","name":"Rie Slotemaker","type":"Role","_key":"37389","_from":"25340","_to":"25330"} +{"$label":"ACTS_IN","name":"Aunt Jet","type":"Role","_key":"37388","_from":"25339","_to":"25330"} +{"$label":"ACTS_IN","name":"Jutka Djindiz","type":"Role","_key":"37386","_from":"25338","_to":"25330"} +{"$label":"ACTS_IN","name":"Pieter","type":"Role","_key":"37385","_from":"25337","_to":"25330"} +{"$label":"ACTS_IN","name":"Hugo Duvall","type":"Role","_key":"37384","_from":"25336","_to":"25330"} +{"$label":"ACTS_IN","name":"Lijfwacht Piet","type":"Role","_key":"37383","_from":"25335","_to":"25330"} +{"$label":"ACTS_IN","name":"Pim","type":"Role","_key":"37381","_from":"25334","_to":"25330"} +{"$label":"ACTS_IN","name":"Broer Hansen","type":"Role","_key":"37380","_from":"25333","_to":"25330"} +{"$label":"ACTS_IN","name":"Adri","type":"Role","_key":"37379","_from":"25332","_to":"25330"} +{"$label":"DIRECTED","_key":"37377","_from":"25331","_to":"25330"} +{"$label":"ACTS_IN","name":"Proog (voice)","type":"Role","_key":"56401","_from":"25335","_to":"35838"} +{"$label":"ACTS_IN","name":"Emo (voice)","type":"Role","_key":"56402","_from":"25337","_to":"35838"} +{"$label":"ACTS_IN","name":"Old Ada","type":"Role","_key":"111973","_from":"25339","_to":"66095"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"37526","_from":"25341","_to":"25430"} +{"$label":"DIRECTED","_key":"37395","_from":"25345","_to":"25342"} +{"$label":"ACTS_IN","name":"Ludwig van Beethoven","type":"Role","_key":"37394","_from":"25344","_to":"25342"} +{"$label":"ACTS_IN","name":"Leopold","type":"Role","_key":"37392","_from":"25343","_to":"25342"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"37402","_from":"25351","_to":"25346"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"37401","_from":"25350","_to":"25346"} +{"$label":"ACTS_IN","name":"Dr. Aldo Spidini","type":"Role","_key":"37400","_from":"25349","_to":"25346"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"37399","_from":"25348","_to":"25346"} +{"$label":"ACTS_IN","name":"Dora Baldini","type":"Role","_key":"37397","_from":"25347","_to":"25346"} +{"$label":"ACTS_IN","name":"Elise Stallone Van Adler","type":"Role","_key":"109080","_from":"25347","_to":"64448"} +{"$label":"ACTS_IN","name":"Elisa Mandy","type":"Role","_key":"103590","_from":"25347","_to":"60927"} +{"$label":"ACTS_IN","name":"Carter \/ Dervy","type":"Role","_key":"114397","_from":"25349","_to":"67376"} +{"$label":"ACTS_IN","name":"Jonas Melvyn","type":"Role","_key":"50468","_from":"25349","_to":"32963"} +{"$label":"ACTS_IN","name":"Maria Sbravati","type":"Role","_key":"37409","_from":"25354","_to":"25352"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"37406","_from":"25353","_to":"25352"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"37415","_from":"25357","_to":"25355"} +{"$label":"DIRECTED","_key":"37411","_from":"25356","_to":"25355"} +{"$label":"ACTS_IN","name":"Mumu","type":"Role","_key":"37425","_from":"25361","_to":"25358"} +{"$label":"ACTS_IN","name":"Sofia Brandt","type":"Role","_key":"37422","_from":"25360","_to":"25358"} +{"$label":"ACTS_IN","name":"Tina Brandt","type":"Role","_key":"37419","_from":"25359","_to":"25358"} +{"$label":"ACTS_IN","name":"Mayor Dortmundt","type":"Role","_key":"37432","_from":"25364","_to":"25362"} +{"$label":"ACTS_IN","name":"Peter Kleist","type":"Role","_key":"37431","_from":"25363","_to":"25362"} +{"$label":"ACTS_IN","name":"Coby","type":"Role","_key":"90100","_from":"25363","_to":"53288"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"37438","_from":"25367","_to":"25365"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"37437","_from":"25366","_to":"25365"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"37454","_from":"25380","_to":"25368"} +{"$label":"ACTS_IN","name":"Lee Dae-pyung","type":"Role","_key":"37453","_from":"25379","_to":"25368"} +{"$label":"ACTS_IN","name":"Hwang Gyu-suk","type":"Role","_key":"37452","_from":"25378","_to":"25368"} +{"$label":"ACTS_IN","name":"OH Seul-mi","type":"Role","_key":"37451","_from":"25377","_to":"25368"} +{"$label":"ACTS_IN","name":"Sohn","type":"Role","_key":"37450","_from":"25376","_to":"25368"} +{"$label":"ACTS_IN","name":"Patientin","type":"Role","_key":"37449","_from":"25375","_to":"25368"} +{"$label":"ACTS_IN","name":"Die Mutter als Kind","type":"Role","_key":"37448","_from":"25374","_to":"25368"} +{"$label":"ACTS_IN","name":"Dr. Choi Seul-gi","type":"Role","_key":"37447","_from":"25373","_to":"25368"} +{"$label":"ACTS_IN","name":"Young-guns Gro\u00dfmutter","type":"Role","_key":"37446","_from":"25372","_to":"25368"} +{"$label":"ACTS_IN","name":"Young-guns Mutter","type":"Role","_key":"37445","_from":"25371","_to":"25368"} +{"$label":"ACTS_IN","name":"Il-sun","type":"Role","_key":"37444","_from":"25370","_to":"25368"} +{"$label":"ACTS_IN","name":"Young-gun","type":"Role","_key":"37443","_from":"25369","_to":"25368"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"37462","_from":"25389","_to":"25381"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"37461","_from":"25388","_to":"25381"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"37460","_from":"25387","_to":"25381"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"37459","_from":"25386","_to":"25381"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"37458","_from":"25385","_to":"25381"} +{"$label":"ACTS_IN","name":"Bouncer","type":"Role","_key":"37457","_from":"25384","_to":"25381"} +{"$label":"DIRECTED","_key":"37456","_from":"25383","_to":"25381"} +{"$label":"DIRECTED","_key":"37455","_from":"25382","_to":"25381"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"37471","_from":"25393","_to":"25390"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"37470","_from":"25392","_to":"25390"} +{"$label":"ACTS_IN","name":"Chrissy","type":"Role","_key":"37469","_from":"25391","_to":"25390"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37480","_from":"25401","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37478","_from":"25400","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37477","_from":"25399","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37476","_from":"25398","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37475","_from":"25397","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37474","_from":"25396","_to":"25394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"37473","_from":"25395","_to":"25394"} +{"$label":"DIRECTED","_key":"89486","_from":"25400","_to":"52980"} +{"$label":"ACTS_IN","name":"Liu Laoban","type":"Role","_key":"37495","_from":"25415","_to":"25402"} +{"$label":"ACTS_IN","name":"Slave Merchant","type":"Role","_key":"37494","_from":"25414","_to":"25402"} +{"$label":"ACTS_IN","name":"Dr. Brown","type":"Role","_key":"37493","_from":"25413","_to":"25402"} +{"$label":"ACTS_IN","name":"Interpreter","type":"Role","_key":"37492","_from":"25412","_to":"25402"} +{"$label":"ACTS_IN","name":"Murakami","type":"Role","_key":"37491","_from":"25411","_to":"25402"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"37490","_from":"25410","_to":"25402"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"37489","_from":"25409","_to":"25402"} +{"$label":"ACTS_IN","name":"Dr. Yagi","type":"Role","_key":"37488","_from":"25408","_to":"25402"} +{"$label":"ACTS_IN","name":"Mizoguchi","type":"Role","_key":"37487","_from":"25407","_to":"25402"} +{"$label":"ACTS_IN","name":"Xia","type":"Role","_key":"37486","_from":"25406","_to":"25402"} +{"$label":"ACTS_IN","name":"Milly","type":"Role","_key":"37485","_from":"25405","_to":"25402"} +{"$label":"ACTS_IN","name":"Miyamoto","type":"Role","_key":"37484","_from":"25404","_to":"25402"} +{"$label":"DIRECTED","_key":"37483","_from":"25403","_to":"25402"} +{"$label":"ACTS_IN","name":"Detective Yau Kin Bong","type":"Role","_key":"117891","_from":"25404","_to":"69301"} +{"$label":"ACTS_IN","name":"Zhuge Liang","type":"Role","_key":"104225","_from":"25404","_to":"61317"} +{"$label":"ACTS_IN","name":"Zhang Wen-Xiang","type":"Role","_key":"99993","_from":"25404","_to":"58993"} +{"$label":"ACTS_IN","name":"Chiba","type":"Role","_key":"92810","_from":"25404","_to":"54755"} +{"$label":"ACTS_IN","name":"Zhuge Liang","type":"Role","_key":"89224","_from":"25404","_to":"52831"} +{"$label":"ACTS_IN","name":"He Zhiwu","type":"Role","_key":"68620","_from":"25404","_to":"42067"} +{"$label":"ACTS_IN","name":"Ho Chi-Wu","type":"Role","_key":"67897","_from":"25404","_to":"41715"} +{"$label":"ACTS_IN","name":"Jin","type":"Role","_key":"54616","_from":"25404","_to":"34983"} +{"$label":"ACTS_IN","name":"Natsuki Mogi","type":"Role","_key":"109128","_from":"25405","_to":"64472"} +{"$label":"ACTS_IN","name":"Young Hatsue Imada","type":"Role","_key":"61779","_from":"25405","_to":"38895"} +{"$label":"ACTS_IN","name":"James Ray Steam (voice)","type":"Role","_key":"51624","_from":"25405","_to":"33686"} +{"$label":"ACTS_IN","name":"Nisai Sajiki","type":"Role","_key":"40122","_from":"25411","_to":"27080"} +{"$label":"ACTS_IN","name":"US Marine","type":"Role","_key":"105846","_from":"25413","_to":"62308"} +{"$label":"ACTS_IN","name":"Elmendorf","type":"Role","_key":"37502","_from":"25418","_to":"25416"} +{"$label":"DIRECTED","_key":"37496","_from":"25417","_to":"25416"} +{"$label":"ACTS_IN","name":"Opa Freddy","type":"Role","_key":"37515","_from":"25429","_to":"25419"} +{"$label":"ACTS_IN","name":"Basma","type":"Role","_key":"37514","_from":"25428","_to":"25419"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"37513","_from":"25427","_to":"25419"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"37512","_from":"25426","_to":"25419"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"37511","_from":"25425","_to":"25419"} +{"$label":"ACTS_IN","name":"Isole von Reichenberg","type":"Role","_key":"37510","_from":"25424","_to":"25419"} +{"$label":"ACTS_IN","name":"Timmi Falken","type":"Role","_key":"37508","_from":"25423","_to":"25419"} +{"$label":"ACTS_IN","name":"Franca Falken","type":"Role","_key":"37507","_from":"25422","_to":"25419"} +{"$label":"ACTS_IN","name":"Mareike Falken","type":"Role","_key":"37505","_from":"25421","_to":"25419"} +{"$label":"DIRECTED","_key":"37504","_from":"25420","_to":"25419"} +{"$label":"DIRECTED","_key":"42509","_from":"25420","_to":"28457"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"65951","_from":"25421","_to":"40798"} +{"$label":"ACTS_IN","name":"Frau Harms","type":"Role","_key":"42146","_from":"25424","_to":"28231"} +{"$label":"ACTS_IN","name":"Klaasje van Ophorst","type":"Role","_key":"37525","_from":"25438","_to":"25430"} +{"$label":"ACTS_IN","name":"Rens","type":"Role","_key":"37524","_from":"25437","_to":"25430"} +{"$label":"ACTS_IN","name":"Dekker","type":"Role","_key":"37523","_from":"25436","_to":"25430"} +{"$label":"ACTS_IN","name":"Rudolf van Hoogstraten Bosch","type":"Role","_key":"37522","_from":"25435","_to":"25430"} +{"$label":"ACTS_IN","name":"Victor Jollema","type":"Role","_key":"37521","_from":"25434","_to":"25430"} +{"$label":"ACTS_IN","name":"Simone Coelman","type":"Role","_key":"37520","_from":"25433","_to":"25430"} +{"$label":"ACTS_IN","name":"Saskia","type":"Role","_key":"37519","_from":"25432","_to":"25430"} +{"$label":"DIRECTED","_key":"37516","_from":"25431","_to":"25430"} +{"$label":"ACTS_IN","name":"Lisa van Beusekom","type":"Role","_key":"109560","_from":"25433","_to":"64710"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois van Vliet \/ Bruno von Lippe","type":"Role","_key":"106005","_from":"25434","_to":"62412"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"37537","_from":"25450","_to":"25439"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"37536","_from":"25449","_to":"25439"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"37535","_from":"25448","_to":"25439"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"37534","_from":"25447","_to":"25439"} +{"$label":"ACTS_IN","name":"Bobby Belfast","type":"Role","_key":"37533","_from":"25446","_to":"25439"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"37532","_from":"25445","_to":"25439"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"37531","_from":"25444","_to":"25439"} +{"$label":"ACTS_IN","name":"Robert Stewart","type":"Role","_key":"37530","_from":"25443","_to":"25439"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"37529","_from":"25442","_to":"25439"} +{"$label":"ACTS_IN","name":"Tina Tudor","type":"Role","_key":"37528","_from":"25441","_to":"25439"} +{"$label":"DIRECTED","_key":"37527","_from":"25440","_to":"25439"} +{"$label":"ACTS_IN","name":"Deputy Adams","type":"Role","_key":"58283","_from":"25450","_to":"36857"} +{"$label":"ACTS_IN","name":"Lula","type":"Role","_key":"58281","_from":"25450","_to":"36856"} +{"$label":"ACTS_IN","name":"Henderson","type":"Role","_key":"58264","_from":"25450","_to":"36848"} +{"$label":"ACTS_IN","name":"Mrs. Pinta","type":"Role","_key":"58253","_from":"25450","_to":"36839"} +{"$label":"ACTS_IN","name":"Mrs. Jensen","type":"Role","_key":"58251","_from":"25450","_to":"36837"} +{"$label":"ACTS_IN","name":"DANIELLE","type":"Role","_key":"58246","_from":"25450","_to":"36835"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"45872","_from":"25450","_to":"30338"} +{"$label":"ACTS_IN","name":"Jenny Mills","type":"Role","_key":"45860","_from":"25450","_to":"30326"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"45856","_from":"25450","_to":"30321"} +{"$label":"ACTS_IN","name":"Toni Nelson","type":"Role","_key":"45852","_from":"25450","_to":"30318"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"37550","_from":"25456","_to":"25451"} +{"$label":"ACTS_IN","name":"Dr. Kathy Wahlund","type":"Role","_key":"37549","_from":"25455","_to":"25451"} +{"$label":"ACTS_IN","name":"Poole","type":"Role","_key":"37548","_from":"25454","_to":"25451"} +{"$label":"ACTS_IN","name":"Sykes","type":"Role","_key":"37545","_from":"25453","_to":"25451"} +{"$label":"ACTS_IN","name":"Newman","type":"Role","_key":"37543","_from":"25452","_to":"25451"} +{"$label":"ACTS_IN","name":"Citizen G'Kar","type":"Role","_key":"106875","_from":"25453","_to":"63004"} +{"$label":"ACTS_IN","name":"G'Kar","type":"Role","_key":"66886","_from":"25453","_to":"41298"} +{"$label":"ACTS_IN","name":"G'Kar","type":"Role","_key":"66872","_from":"25453","_to":"41294"} +{"$label":"ACTS_IN","name":"Bobbi Porter","type":"Role","_key":"56455","_from":"25454","_to":"35870"} +{"$label":"ACTS_IN","name":"J.D.","type":"Role","_key":"121419","_from":"25455","_to":"71338"} +{"$label":"ACTS_IN","name":"Ms.Hulka","type":"Role","_key":"119686","_from":"25455","_to":"70295"} +{"$label":"ACTS_IN","name":"Gayle Sweeny","type":"Role","_key":"104160","_from":"25455","_to":"61278"} +{"$label":"ACTS_IN","name":"Dominique Blatt","type":"Role","_key":"103410","_from":"25455","_to":"60831"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94145","_from":"25455","_to":"55439"} +{"$label":"ACTS_IN","name":"Casting Director","type":"Role","_key":"93147","_from":"25455","_to":"54899"} +{"$label":"ACTS_IN","name":"Gretched (voice)","type":"Role","_key":"61593","_from":"25455","_to":"38823"} +{"$label":"ACTS_IN","name":"Gabby Corky","type":"Role","_key":"57654","_from":"25455","_to":"36500"} +{"$label":"ACTS_IN","name":"Lucy Bobby","type":"Role","_key":"55962","_from":"25455","_to":"35579"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"45320","_from":"25455","_to":"30057"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"43598","_from":"25455","_to":"29119"} +{"$label":"ACTS_IN","name":"The superintendent","type":"Role","_key":"37557","_from":"25460","_to":"25457"} +{"$label":"ACTS_IN","name":"\"One-Round\" (im Deutschen \u201ePfannkuchen\u201c) alias 'Mr. Lawson'","type":"Role","_key":"37556","_from":"25459","_to":"25457"} +{"$label":"ACTS_IN","name":"Mrs. Wilberforce","type":"Role","_key":"37551","_from":"25458","_to":"25457"} +{"$label":"ACTS_IN","name":"Karim","type":"Role","_key":"104791","_from":"25459","_to":"61650"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"37566","_from":"25466","_to":"25461"} +{"$label":"ACTS_IN","name":"Mrs. Bragg","type":"Role","_key":"37565","_from":"25465","_to":"25461"} +{"$label":"ACTS_IN","name":"Musiker","type":"Role","_key":"37563","_from":"25464","_to":"25461"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"37560","_from":"25463","_to":"25461"} +{"$label":"DIRECTED","_key":"37559","_from":"25462","_to":"25461"} +{"$label":"ACTS_IN","name":"Georgina Latimer","type":"Role","_key":"37573","_from":"25468","_to":"25467"} +{"$label":"ACTS_IN","name":"Mademoiselle Rimbaud","type":"Role","_key":"61309","_from":"25468","_to":"38701"} +{"$label":"ACTS_IN","name":"Lorelei","type":"Role","_key":"54490","_from":"25468","_to":"34930"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"37580","_from":"25472","_to":"25469"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"37579","_from":"25471","_to":"25469"} +{"$label":"DIRECTED","_key":"37578","_from":"25470","_to":"25469"} +{"$label":"ACTS_IN","name":"Bit Role","type":"Role","_key":"37595","_from":"25484","_to":"25473"} +{"$label":"ACTS_IN","name":"Gramps","type":"Role","_key":"37594","_from":"25483","_to":"25473"} +{"$label":"ACTS_IN","name":"Mailman","type":"Role","_key":"37593","_from":"25482","_to":"25473"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37592","_from":"25481","_to":"25473"} +{"$label":"ACTS_IN","name":"Hotel Clerk","type":"Role","_key":"37590","_from":"25480","_to":"25473"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"37588","_from":"25479","_to":"25473"} +{"$label":"ACTS_IN","name":"Mr. Fizpatrick","type":"Role","_key":"37586","_from":"25478","_to":"25473"} +{"$label":"ACTS_IN","name":"Tiger Kipps Jr.","type":"Role","_key":"37585","_from":"25477","_to":"25473"} +{"$label":"ACTS_IN","name":"Sue Kipps","type":"Role","_key":"37583","_from":"25476","_to":"25473"} +{"$label":"ACTS_IN","name":"Tiger Kipps","type":"Role","_key":"37582","_from":"25475","_to":"25473"} +{"$label":"DIRECTED","_key":"37581","_from":"25474","_to":"25473"} +{"$label":"DIRECTED","_key":"117128","_from":"25474","_to":"68912"} +{"$label":"ACTS_IN","name":"Scrappleton","type":"Role","_key":"116001","_from":"25475","_to":"68313"} +{"$label":"ACTS_IN","name":"Richard Sherman","type":"Role","_key":"64847","_from":"25475","_to":"40339"} +{"$label":"ACTS_IN","name":"Vera Radford","type":"Role","_key":"116931","_from":"25476","_to":"68831"} +{"$label":"ACTS_IN","name":"Kay Lawrence","type":"Role","_key":"67024","_from":"25476","_to":"41374"} +{"$label":"ACTS_IN","name":"Don Klausmeyer","type":"Role","_key":"121646","_from":"25478","_to":"71463"} +{"$label":"ACTS_IN","name":"Valerie, die Pianistin","type":"Role","_key":"37600","_from":"25487","_to":"25485"} +{"$label":"ACTS_IN","name":"Jane Lagrange","type":"Role","_key":"37599","_from":"25486","_to":"25485"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"89393","_from":"25486","_to":"52915"} +{"$label":"ACTS_IN","name":"Dominick","type":"Role","_key":"37605","_from":"25492","_to":"25488"} +{"$label":"ACTS_IN","name":"Sofia Jackson","type":"Role","_key":"37604","_from":"25491","_to":"25488"} +{"$label":"ACTS_IN","name":"Dino Jackson","type":"Role","_key":"37603","_from":"25490","_to":"25488"} +{"$label":"DIRECTED","_key":"37602","_from":"25489","_to":"25488"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37610","_from":"25498","_to":"25493"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37609","_from":"25497","_to":"25493"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37608","_from":"25496","_to":"25493"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37607","_from":"25495","_to":"25493"} +{"$label":"DIRECTED","_key":"37606","_from":"25494","_to":"25493"} +{"$label":"DIRECTED","_key":"37612","_from":"25494","_to":"25499"} +{"$label":"ACTS_IN","name":"Chaplain","type":"Role","_key":"37620","_from":"25504","_to":"25499"} +{"$label":"ACTS_IN","name":"Mrs. Satterlee","type":"Role","_key":"37618","_from":"25503","_to":"25499"} +{"$label":"ACTS_IN","name":"Kenneth","type":"Role","_key":"37617","_from":"25502","_to":"25499"} +{"$label":"ACTS_IN","name":"Carter Brooks","type":"Role","_key":"37615","_from":"25501","_to":"25499"} +{"$label":"ACTS_IN","name":"Barbara Hastings","type":"Role","_key":"37613","_from":"25500","_to":"25499"} +{"$label":"ACTS_IN","name":"Mountain Girl","type":"Role","_key":"37629","_from":"25508","_to":"25505"} +{"$label":"ACTS_IN","name":"Lump Hudson","type":"Role","_key":"37628","_from":"25507","_to":"25505"} +{"$label":"ACTS_IN","name":"Marva Munson","type":"Role","_key":"37624","_from":"25506","_to":"25505"} +{"$label":"ACTS_IN","name":"Mildred","type":"Role","_key":"109928","_from":"25506","_to":"64948"} +{"$label":"ACTS_IN","name":"Emma, Lintz's Maid","type":"Role","_key":"103453","_from":"25506","_to":"60850"} +{"$label":"ACTS_IN","name":"Binnie Rogers","type":"Role","_key":"71639","_from":"25506","_to":"43379"} +{"$label":"ACTS_IN","name":"Grandma Odessa","type":"Role","_key":"51135","_from":"25506","_to":"33354"} +{"$label":"ACTS_IN","name":"Minerva","type":"Role","_key":"48332","_from":"25506","_to":"31735"} +{"$label":"ACTS_IN","name":"Gerry Bertier","type":"Role","_key":"64763","_from":"25507","_to":"40308"} +{"$label":"ACTS_IN","name":"Sgt. Ernie Savage","type":"Role","_key":"64321","_from":"25507","_to":"40088"} +{"$label":"ACTS_IN","name":"Merle","type":"Role","_key":"106128","_from":"25508","_to":"62496"} +{"$label":"ACTS_IN","name":"Delores Adams","type":"Role","_key":"70283","_from":"25508","_to":"42822"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37636","_from":"25513","_to":"25509"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37635","_from":"25512","_to":"25509"} +{"$label":"ACTS_IN","name":"o. A.","type":"Role","_key":"37633","_from":"25511","_to":"25509"} +{"$label":"DIRECTED","_key":"37632","_from":"25510","_to":"25509"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37653","_from":"25528","_to":"25514"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37651","_from":"25527","_to":"25514"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"37650","_from":"25526","_to":"25514"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"37648","_from":"25525","_to":"25514"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"37647","_from":"25524","_to":"25514"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"37646","_from":"25523","_to":"25514"} +{"$label":"ACTS_IN","name":"Joy","type":"Role","_key":"37645","_from":"25522","_to":"25514"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"37644","_from":"25521","_to":"25514"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"37643","_from":"25520","_to":"25514"} +{"$label":"ACTS_IN","name":"Feeney","type":"Role","_key":"37642","_from":"25519","_to":"25514"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"37641","_from":"25518","_to":"25514"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"37640","_from":"25517","_to":"25514"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"37639","_from":"25516","_to":"25514"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"37638","_from":"25515","_to":"25514"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"38944","_from":"25520","_to":"26303"} +{"$label":"ACTS_IN","name":"Sheriff Able","type":"Role","_key":"38899","_from":"25523","_to":"26274"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38827","_from":"25527","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38339","_from":"25528","_to":"25894"} +{"$label":"ACTS_IN","name":"The Handyman","type":"Role","_key":"38283","_from":"25528","_to":"25856"} +{"$label":"ACTS_IN","name":"Olsen","type":"Role","_key":"37658","_from":"25533","_to":"25529"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"37657","_from":"25532","_to":"25529"} +{"$label":"ACTS_IN","name":"Dexter","type":"Role","_key":"37656","_from":"25531","_to":"25529"} +{"$label":"DIRECTED","_key":"37654","_from":"25530","_to":"25529"} +{"$label":"ACTS_IN","name":"Father David","type":"Role","_key":"37668","_from":"25538","_to":"25534"} +{"$label":"ACTS_IN","name":"Young Judy Chapman","type":"Role","_key":"37667","_from":"25537","_to":"25534"} +{"$label":"ACTS_IN","name":"Young Christine Chapman","type":"Role","_key":"37666","_from":"25536","_to":"25534"} +{"$label":"DIRECTED","_key":"37662","_from":"25535","_to":"25534"} +{"$label":"ACTS_IN","name":"Annie Wheaton","type":"Role","_key":"102635","_from":"25536","_to":"60385"} +{"$label":"ACTS_IN","name":"Sarah Sanderson","type":"Role","_key":"65011","_from":"25536","_to":"40403"} +{"$label":"ACTS_IN","name":"Male Cop","type":"Role","_key":"37680","_from":"25544","_to":"25539"} +{"$label":"ACTS_IN","name":"Female Cop","type":"Role","_key":"37677","_from":"25543","_to":"25539"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"37673","_from":"25542","_to":"25539"} +{"$label":"ACTS_IN","name":"Tepper","type":"Role","_key":"37670","_from":"25541","_to":"25539"} +{"$label":"DIRECTED","_key":"37669","_from":"25540","_to":"25539"} +{"$label":"ACTS_IN","name":"Keith Griffin","type":"Role","_key":"105570","_from":"25541","_to":"62121"} +{"$label":"ACTS_IN","name":"Desmond","type":"Role","_key":"95244","_from":"25541","_to":"56036"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"92074","_from":"25542","_to":"54329"} +{"$label":"ACTS_IN","name":"Shuli","type":"Role","_key":"63814","_from":"25542","_to":"39897"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"57892","_from":"25542","_to":"36625"} +{"$label":"ACTS_IN","name":"Myron (voice)","type":"Role","_key":"109165","_from":"25544","_to":"64489"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37689","_from":"25554","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37688","_from":"25553","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37687","_from":"25552","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37686","_from":"25551","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37685","_from":"25550","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37684","_from":"25549","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37683","_from":"25548","_to":"25545"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"37682","_from":"25547","_to":"25545"} +{"$label":"DIRECTED","_key":"37681","_from":"25546","_to":"25545"} +{"$label":"ACTS_IN","name":"Ko Ying Pui","type":"Role","_key":"115778","_from":"25547","_to":"68165"} +{"$label":"ACTS_IN","name":"Jack Brennan","type":"Role","_key":"37700","_from":"25565","_to":"25555"} +{"$label":"ACTS_IN","name":"Jeff Hobart","type":"Role","_key":"37699","_from":"25564","_to":"25555"} +{"$label":"ACTS_IN","name":"Alex Kandall","type":"Role","_key":"37698","_from":"25563","_to":"25555"} +{"$label":"ACTS_IN","name":"Tony Reckman","type":"Role","_key":"37697","_from":"25562","_to":"25555"} +{"$label":"ACTS_IN","name":"Shelly Lynch","type":"Role","_key":"37696","_from":"25561","_to":"25555"} +{"$label":"ACTS_IN","name":"Paul McLaren","type":"Role","_key":"37695","_from":"25560","_to":"25555"} +{"$label":"ACTS_IN","name":"Carl Delane","type":"Role","_key":"37694","_from":"25559","_to":"25555"} +{"$label":"ACTS_IN","name":"Melissa Brennan","type":"Role","_key":"37692","_from":"25558","_to":"25555"} +{"$label":"ACTS_IN","name":"Kate Brennan","type":"Role","_key":"37691","_from":"25557","_to":"25555"} +{"$label":"DIRECTED","_key":"37690","_from":"25556","_to":"25555"} +{"$label":"DIRECTED","_key":"120336","_from":"25556","_to":"70686"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"116201","_from":"25558","_to":"68420"} +{"$label":"ACTS_IN","name":"Brianna","type":"Role","_key":"115287","_from":"25558","_to":"67881"} +{"$label":"ACTS_IN","name":"Allison Snider","type":"Role","_key":"114718","_from":"25558","_to":"67571"} +{"$label":"ACTS_IN","name":"The Kit","type":"Role","_key":"60984","_from":"25558","_to":"38538"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"92789","_from":"25561","_to":"54733"} +{"$label":"ACTS_IN","name":"Sandwich Customer","type":"Role","_key":"93134","_from":"25562","_to":"54874"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"40717","_from":"25564","_to":"27400"} +{"$label":"ACTS_IN","name":"Harriette","type":"Role","_key":"37710","_from":"25575","_to":"25566"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"37709","_from":"25574","_to":"25566"} +{"$label":"ACTS_IN","name":"Bree","type":"Role","_key":"37708","_from":"25573","_to":"25566"} +{"$label":"ACTS_IN","name":"Servant","type":"Role","_key":"37707","_from":"25572","_to":"25566"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"37706","_from":"25571","_to":"25566"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"37705","_from":"25570","_to":"25566"} +{"$label":"ACTS_IN","name":"Thug","type":"Role","_key":"37704","_from":"25569","_to":"25566"} +{"$label":"ACTS_IN","name":"Gunman","type":"Role","_key":"37703","_from":"25568","_to":"25566"} +{"$label":"ACTS_IN","name":"Receptionistin","type":"Role","_key":"37702","_from":"25567","_to":"25566"} +{"$label":"ACTS_IN","name":"Detective Sandeval","type":"Role","_key":"98759","_from":"25568","_to":"58198"} +{"$label":"ACTS_IN","name":"Barrista","type":"Role","_key":"115326","_from":"25570","_to":"67901"} +{"$label":"ACTS_IN","name":"New Tabitha","type":"Role","_key":"104892","_from":"25571","_to":"61711"} +{"$label":"ACTS_IN","name":"Cleaning Lady","type":"Role","_key":"37723","_from":"25588","_to":"25576"} +{"$label":"ACTS_IN","name":"Joseph Ryan","type":"Role","_key":"37722","_from":"25587","_to":"25576"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"37721","_from":"25586","_to":"25576"} +{"$label":"ACTS_IN","name":"Sister","type":"Role","_key":"37720","_from":"25585","_to":"25576"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"37719","_from":"25584","_to":"25576"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"37717","_from":"25583","_to":"25576"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"37716","_from":"25582","_to":"25576"} +{"$label":"ACTS_IN","name":"Brother","type":"Role","_key":"37715","_from":"25581","_to":"25576"} +{"$label":"ACTS_IN","name":"Young Angelica","type":"Role","_key":"37714","_from":"25580","_to":"25576"} +{"$label":"ACTS_IN","name":"Angelica Arias","type":"Role","_key":"37713","_from":"25579","_to":"25576"} +{"$label":"ACTS_IN","name":"Richard Stander","type":"Role","_key":"37712","_from":"25578","_to":"25576"} +{"$label":"DIRECTED","_key":"37711","_from":"25577","_to":"25576"} +{"$label":"ACTS_IN","name":"Capt. Bullis","type":"Role","_key":"37730","_from":"25594","_to":"25589"} +{"$label":"ACTS_IN","name":"Det. Shoup","type":"Role","_key":"37728","_from":"25593","_to":"25589"} +{"$label":"ACTS_IN","name":"Beverly York","type":"Role","_key":"37727","_from":"25592","_to":"25589"} +{"$label":"ACTS_IN","name":"Woodrow York","type":"Role","_key":"37726","_from":"25591","_to":"25589"} +{"$label":"ACTS_IN","name":"Vikki Eaton","type":"Role","_key":"37725","_from":"25590","_to":"25589"} +{"$label":"ACTS_IN","name":"Cmdr. John Walker","type":"Role","_key":"72838","_from":"25591","_to":"43874"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"68702","_from":"25592","_to":"42097"} +{"$label":"ACTS_IN","name":"Allan Neyman","type":"Role","_key":"47768","_from":"25594","_to":"31453"} +{"$label":"ACTS_IN","name":"Stillwell","type":"Role","_key":"37744","_from":"25603","_to":"25595"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"37743","_from":"25602","_to":"25595"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"37742","_from":"25601","_to":"25595"} +{"$label":"ACTS_IN","name":"Eldridge","type":"Role","_key":"37741","_from":"25600","_to":"25595"} +{"$label":"ACTS_IN","name":"Warren Gresham","type":"Role","_key":"37740","_from":"25599","_to":"25595"} +{"$label":"ACTS_IN","name":"Bessie Gresham","type":"Role","_key":"37739","_from":"25598","_to":"25595"} +{"$label":"ACTS_IN","name":"Vinia","type":"Role","_key":"37738","_from":"25597","_to":"25595"} +{"$label":"DIRECTED","_key":"37734","_from":"25596","_to":"25595"} +{"$label":"ACTS_IN","name":"Mondain","type":"Role","_key":"37754","_from":"25609","_to":"25604"} +{"$label":"ACTS_IN","name":"P\u00e8re Maxence","type":"Role","_key":"37753","_from":"25608","_to":"25604"} +{"$label":"ACTS_IN","name":"P\u00e9pinot als Kind","type":"Role","_key":"37751","_from":"25607","_to":"25604"} +{"$label":"ACTS_IN","name":"Morhange als Kind","type":"Role","_key":"37749","_from":"25606","_to":"25604"} +{"$label":"DIRECTED","_key":"37746","_from":"25605","_to":"25604"} +{"$label":"ACTS_IN","name":"Vater der Franz\u00f6sin","type":"Role","_key":"37759","_from":"25612","_to":"25610"} +{"$label":"ACTS_IN","name":"Mutter der Franz\u00f6sin","type":"Role","_key":"37758","_from":"25611","_to":"25610"} +{"$label":"ACTS_IN","name":"Amelia E","type":"Role","_key":"37767","_from":"25616","_to":"25613"} +{"$label":"ACTS_IN","name":"Amelia C","type":"Role","_key":"37765","_from":"25615","_to":"25613"} +{"$label":"DIRECTED","_key":"37761","_from":"25614","_to":"25613"} +{"$label":"ACTS_IN","name":"Woman in Elevator","type":"Role","_key":"70310","_from":"25616","_to":"42835"} +{"$label":"ACTS_IN","name":"Lorelei","type":"Role","_key":"57566","_from":"25616","_to":"36462"} +{"$label":"ACTS_IN","name":"Joe Cox","type":"Role","_key":"37781","_from":"25620","_to":"25618"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"37779","_from":"25619","_to":"25618"} +{"$label":"ACTS_IN","name":"Hob","type":"Role","_key":"37792","_from":"25627","_to":"25621"} +{"$label":"ACTS_IN","name":"Whittaker","type":"Role","_key":"37791","_from":"25626","_to":"25621"} +{"$label":"ACTS_IN","name":"Surgeon General","type":"Role","_key":"37790","_from":"25625","_to":"25621"} +{"$label":"ACTS_IN","name":"Jess Perkins","type":"Role","_key":"37789","_from":"25624","_to":"25621"} +{"$label":"ACTS_IN","name":"Casey Wong","type":"Role","_key":"37788","_from":"25623","_to":"25621"} +{"$label":"ACTS_IN","name":"Dr. Juliette Faxx","type":"Role","_key":"37786","_from":"25622","_to":"25621"} +{"$label":"ACTS_IN","name":"Casey Wong","type":"Role","_key":"37797","_from":"25623","_to":"25628"} +{"$label":"ACTS_IN","name":"Cera's Dad","type":"Role","_key":"111934","_from":"25625","_to":"66073"} +{"$label":"ACTS_IN","name":"Littlefoot","type":"Role","_key":"88282","_from":"25627","_to":"52365"} +{"$label":"ACTS_IN","name":"Eiderly Woman","type":"Role","_key":"37804","_from":"25634","_to":"25628"} +{"$label":"ACTS_IN","name":"Bixby Snyder","type":"Role","_key":"37803","_from":"25633","_to":"25628"} +{"$label":"ACTS_IN","name":"Nikkos Dad","type":"Role","_key":"37800","_from":"25632","_to":"25628"} +{"$label":"ACTS_IN","name":"Nikkos Mom","type":"Role","_key":"37799","_from":"25631","_to":"25628"} +{"$label":"ACTS_IN","name":"Nikko","type":"Role","_key":"37798","_from":"25630","_to":"25628"} +{"$label":"DIRECTED","_key":"37795","_from":"25629","_to":"25628"} +{"$label":"DIRECTED","_key":"105813","_from":"25629","_to":"62291"} +{"$label":"DIRECTED","_key":"94915","_from":"25629","_to":"55876"} +{"$label":"ACTS_IN","name":"Korean Mother","type":"Role","_key":"72377","_from":"25631","_to":"43699"} +{"$label":"ACTS_IN","name":"Barbara Corvin","type":"Role","_key":"37816","_from":"25636","_to":"25635"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"90116","_from":"25636","_to":"53291"} +{"$label":"ACTS_IN","name":"Froebe","type":"Role","_key":"37827","_from":"25643","_to":"25637"} +{"$label":"ACTS_IN","name":"Checker","type":"Role","_key":"37826","_from":"25642","_to":"25637"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"37825","_from":"25641","_to":"25637"} +{"$label":"ACTS_IN","name":"Horus","type":"Role","_key":"37824","_from":"25640","_to":"25637"} +{"$label":"ACTS_IN","name":"Jill Bioskop","type":"Role","_key":"37820","_from":"25639","_to":"25637"} +{"$label":"DIRECTED","_key":"37819","_from":"25638","_to":"25637"} +{"$label":"ACTS_IN","name":"Bechet","type":"Role","_key":"108457","_from":"25643","_to":"64113"} +{"$label":"ACTS_IN","name":"Attila","type":"Role","_key":"103292","_from":"25643","_to":"60764"} +{"$label":"ACTS_IN","name":"le neuveu","type":"Role","_key":"37836","_from":"25646","_to":"25644"} +{"$label":"ACTS_IN","name":"la tante","type":"Role","_key":"37835","_from":"25645","_to":"25644"} +{"$label":"ACTS_IN","name":"Trudy","type":"Role","_key":"37864","_from":"25652","_to":"25647"} +{"$label":"ACTS_IN","name":"Bee Larry King","type":"Role","_key":"37858","_from":"25651","_to":"25647"} +{"$label":"ACTS_IN","name":"Barry B. Benson","type":"Role","_key":"37850","_from":"25650","_to":"25647"} +{"$label":"DIRECTED","_key":"37849","_from":"25649","_to":"25647"} +{"$label":"DIRECTED","_key":"37848","_from":"25648","_to":"25647"} +{"$label":"DIRECTED","_key":"57353","_from":"25648","_to":"36365"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"121637","_from":"25650","_to":"71460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119511","_from":"25651","_to":"70201"} +{"$label":"ACTS_IN","name":"Patty Plummer","type":"Role","_key":"91431","_from":"25652","_to":"53926"} +{"$label":"ACTS_IN","name":"Principal Walsh","type":"Role","_key":"46067","_from":"25652","_to":"30427"} +{"$label":"ACTS_IN","name":"Der B\u00e4cker","type":"Role","_key":"37875","_from":"25656","_to":"25653"} +{"$label":"ACTS_IN","name":"Arzt Michel","type":"Role","_key":"37873","_from":"25655","_to":"25653"} +{"$label":"ACTS_IN","name":"Glomaud","type":"Role","_key":"37867","_from":"25654","_to":"25653"} +{"$label":"ACTS_IN","name":"Koko\u0161ka","type":"Role","_key":"37886","_from":"25665","_to":"25657"} +{"$label":"ACTS_IN","name":"executioner","type":"Role","_key":"37885","_from":"25664","_to":"25657"} +{"$label":"ACTS_IN","name":"Ypsilon","type":"Role","_key":"37884","_from":"25663","_to":"25657"} +{"$label":"ACTS_IN","name":"Iks","type":"Role","_key":"37883","_from":"25662","_to":"25657"} +{"$label":"ACTS_IN","name":"king Dobromysl \u0159e\u010den\u00fd Vesel\u00fd","type":"Role","_key":"37882","_from":"25661","_to":"25657"} +{"$label":"ACTS_IN","name":"king Jind\u0159ich","type":"Role","_key":"37881","_from":"25660","_to":"25657"} +{"$label":"ACTS_IN","name":"princess Helena","type":"Role","_key":"37879","_from":"25659","_to":"25657"} +{"$label":"DIRECTED","_key":"37878","_from":"25658","_to":"25657"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"37906","_from":"25671","_to":"25667"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"37904","_from":"25670","_to":"25667"} +{"$label":"ACTS_IN","name":"Pablo Alesandro","type":"Role","_key":"37903","_from":"25669","_to":"25667"} +{"$label":"ACTS_IN","name":"Dean Seagrave","type":"Role","_key":"37902","_from":"25668","_to":"25667"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"53934","_from":"25669","_to":"34704"} +{"$label":"ACTS_IN","name":"G\u00e9rard Brian\u00e7on","type":"Role","_key":"37917","_from":"25674","_to":"25672"} +{"$label":"ACTS_IN","name":"Capucine Jamet","type":"Role","_key":"37912","_from":"25673","_to":"25672"} +{"$label":"ACTS_IN","name":"Estrellita","type":"Role","_key":"94165","_from":"25673","_to":"55446"} +{"$label":"ACTS_IN","name":"Space Girl","type":"Role","_key":"72961","_from":"25673","_to":"43920"} +{"$label":"ACTS_IN","name":"Le p\u00e8re de Julie","type":"Role","_key":"100359","_from":"25674","_to":"59177"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"37924","_from":"25680","_to":"25675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"37923","_from":"25679","_to":"25675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"37922","_from":"25678","_to":"25675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"37921","_from":"25677","_to":"25675"} +{"$label":"DIRECTED","_key":"37920","_from":"25676","_to":"25675"} +{"$label":"DIRECTED","_key":"42991","_from":"25676","_to":"28721"} +{"$label":"ACTS_IN","name":"Amador Rosales","type":"Role","_key":"37928","_from":"25683","_to":"25681"} +{"$label":"DIRECTED","_key":"37925","_from":"25682","_to":"25681"} +{"$label":"ACTS_IN","name":"Recepcionist","type":"Role","_key":"37940","_from":"25690","_to":"25684"} +{"$label":"ACTS_IN","name":"Bibliotecaria","type":"Role","_key":"37939","_from":"25689","_to":"25684"} +{"$label":"ACTS_IN","name":"Galois","type":"Role","_key":"37937","_from":"25688","_to":"25684"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"37936","_from":"25687","_to":"25684"} +{"$label":"DIRECTED","_key":"37933","_from":"25686","_to":"25684"} +{"$label":"DIRECTED","_key":"37932","_from":"25685","_to":"25684"} +{"$label":"ACTS_IN","name":"\u00c1lex","type":"Role","_key":"48183","_from":"25688","_to":"31649"} +{"$label":"ACTS_IN","name":"Kammerfrau","type":"Role","_key":"37948","_from":"25696","_to":"25691"} +{"$label":"ACTS_IN","name":"Hexe","type":"Role","_key":"37947","_from":"25695","_to":"25691"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"37946","_from":"25694","_to":"25691"} +{"$label":"ACTS_IN","name":"Hans","type":"Role","_key":"37942","_from":"25693","_to":"25691"} +{"$label":"DIRECTED","_key":"37941","_from":"25692","_to":"25691"} +{"$label":"ACTS_IN","name":"Magd Berta","type":"Role","_key":"93771","_from":"25695","_to":"55197"} +{"$label":"ACTS_IN","name":"Seniorinne 1","type":"Role","_key":"54165","_from":"25695","_to":"34798"} +{"$label":"DIRECTED","_key":"37959","_from":"25704","_to":"25697"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37957","_from":"25703","_to":"25697"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37955","_from":"25702","_to":"25697"} +{"$label":"ACTS_IN","name":"Schneider","type":"Role","_key":"37954","_from":"25701","_to":"25697"} +{"$label":"ACTS_IN","name":"Schneider","type":"Role","_key":"37953","_from":"25700","_to":"25697"} +{"$label":"ACTS_IN","name":"der Alte","type":"Role","_key":"37952","_from":"25699","_to":"25697"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"37951","_from":"25698","_to":"25697"} +{"$label":"ACTS_IN","name":"Generalin","type":"Role","_key":"53749","_from":"25703","_to":"34650"} +{"$label":"ACTS_IN","name":"H\u00e4schen","type":"Role","_key":"37967","_from":"25709","_to":"25705"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"37966","_from":"25708","_to":"25705"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"37963","_from":"25707","_to":"25705"} +{"$label":"DIRECTED","_key":"37960","_from":"25706","_to":"25705"} +{"$label":"ACTS_IN","name":"Knabe Wilhelm","type":"Role","_key":"93804","_from":"25709","_to":"55218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37971","_from":"25713","_to":"25710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37970","_from":"25712","_to":"25710"} +{"$label":"DIRECTED","_key":"37969","_from":"25711","_to":"25710"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"63476","_from":"25712","_to":"39747"} +{"$label":"ACTS_IN","name":"Mutter Zack","type":"Role","_key":"95465","_from":"25713","_to":"56162"} +{"$label":"ACTS_IN","name":"Jalda","type":"Role","_key":"37982","_from":"25717","_to":"25714"} +{"$label":"ACTS_IN","name":"Stengele","type":"Role","_key":"37980","_from":"25716","_to":"25714"} +{"$label":"DIRECTED","_key":"37975","_from":"25715","_to":"25714"} +{"$label":"ACTS_IN","name":"Martin Bullat","type":"Role","_key":"44059","_from":"25716","_to":"29371"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37997","_from":"25723","_to":"25718"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37996","_from":"25722","_to":"25718"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37995","_from":"25721","_to":"25718"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"37988","_from":"25720","_to":"25718"} +{"$label":"ACTS_IN","name":"G\u00e9r\u00f4me","type":"Role","_key":"37986","_from":"25719","_to":"25718"} +{"$label":"DIRECTED","_key":"37998","_from":"25725","_to":"25724"} +{"$label":"DIRECTED","_key":"104533","_from":"25725","_to":"61489"} +{"$label":"DIRECTED","_key":"38010","_from":"25727","_to":"25726"} +{"$label":"ACTS_IN","name":"Slaodel","type":"Role","_key":"38027","_from":"25741","_to":"25728"} +{"$label":"ACTS_IN","name":"Dankwart","type":"Role","_key":"38026","_from":"25740","_to":"25728"} +{"$label":"ACTS_IN","name":"Frigga","type":"Role","_key":"38025","_from":"25739","_to":"25728"} +{"$label":"ACTS_IN","name":"Gudrun","type":"Role","_key":"38024","_from":"25738","_to":"25728"} +{"$label":"ACTS_IN","name":"Hildegunt","type":"Role","_key":"38023","_from":"25737","_to":"25728"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Ute","type":"Role","_key":"38022","_from":"25736","_to":"25728"} +{"$label":"ACTS_IN","name":"Blo-Edin","type":"Role","_key":"38021","_from":"25735","_to":"25728"} +{"$label":"ACTS_IN","name":"Alberich","type":"Role","_key":"38020","_from":"25734","_to":"25728"} +{"$label":"ACTS_IN","name":"Gernot","type":"Role","_key":"38017","_from":"25733","_to":"25728"} +{"$label":"ACTS_IN","name":"Volker von Alzey","type":"Role","_key":"38016","_from":"25732","_to":"25728"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"38015","_from":"25731","_to":"25728"} +{"$label":"ACTS_IN","name":"Kriemhild","type":"Role","_key":"38013","_from":"25730","_to":"25728"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"38011","_from":"25729","_to":"25728"} +{"$label":"ACTS_IN","name":"Kriemhild","type":"Role","_key":"38030","_from":"25730","_to":"25742"} +{"$label":"ACTS_IN","name":"Insp. Cameron","type":"Role","_key":"43632","_from":"25731","_to":"29135"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"38033","_from":"25731","_to":"25742"} +{"$label":"ACTS_IN","name":"Florian","type":"Role","_key":"44708","_from":"25732","_to":"29749"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"44124","_from":"25732","_to":"29415"} +{"$label":"ACTS_IN","name":"Volker von Alzey","type":"Role","_key":"38037","_from":"25732","_to":"25742"} +{"$label":"ACTS_IN","name":"Peter von Hallstein","type":"Role","_key":"38134","_from":"25733","_to":"25783"} +{"$label":"ACTS_IN","name":"Inspector Ruppert Redford","type":"Role","_key":"38124","_from":"25733","_to":"25779"} +{"$label":"ACTS_IN","name":"Rex Forrester","type":"Role","_key":"38109","_from":"25733","_to":"25774"} +{"$label":"ACTS_IN","name":"Sabatino Lepori","type":"Role","_key":"38101","_from":"25733","_to":"25769"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"38086","_from":"25733","_to":"25759"} +{"$label":"ACTS_IN","name":"Jonathan Harker","type":"Role","_key":"38072","_from":"25733","_to":"25754"} +{"$label":"ACTS_IN","name":"Gernot","type":"Role","_key":"38036","_from":"25733","_to":"25742"} +{"$label":"ACTS_IN","name":"Blo-Edin","type":"Role","_key":"38040","_from":"25735","_to":"25742"} +{"$label":"ACTS_IN","name":"Hildegunt","type":"Role","_key":"38038","_from":"25737","_to":"25742"} +{"$label":"ACTS_IN","name":"Luckard","type":"Role","_key":"43087","_from":"25739","_to":"28781"} +{"$label":"ACTS_IN","name":"Mariann Rosenbauer","type":"Role","_key":"43070","_from":"25739","_to":"28764"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38052","_from":"25745","_to":"25743"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"38047","_from":"25744","_to":"25743"} +{"$label":"ACTS_IN","name":"Farmer Laurent","type":"Role","_key":"50626","_from":"25745","_to":"33056"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"38068","_from":"25753","_to":"25746"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38067","_from":"25752","_to":"25746"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38066","_from":"25751","_to":"25746"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38065","_from":"25750","_to":"25746"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38062","_from":"25749","_to":"25746"} +{"$label":"ACTS_IN","name":"Mlle Moreau","type":"Role","_key":"38060","_from":"25748","_to":"25746"} +{"$label":"ACTS_IN","name":"Leblanc","type":"Role","_key":"38059","_from":"25747","_to":"25746"} +{"$label":"ACTS_IN","name":"Winnie the Maid","type":"Role","_key":"116087","_from":"25749","_to":"68357"} +{"$label":"ACTS_IN","name":"Pamela Piggott","type":"Role","_key":"90080","_from":"25749","_to":"53278"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"38082","_from":"25758","_to":"25754"} +{"$label":"ACTS_IN","name":"Vampire Woman","type":"Role","_key":"38079","_from":"25757","_to":"25754"} +{"$label":"ACTS_IN","name":"Traveler","type":"Role","_key":"38078","_from":"25756","_to":"25754"} +{"$label":"ACTS_IN","name":"Lucy Westenra","type":"Role","_key":"38075","_from":"25755","_to":"25754"} +{"$label":"ACTS_IN","name":"Countess Nadine Carody","type":"Role","_key":"111956","_from":"25755","_to":"66086"} +{"$label":"ACTS_IN","name":"Jane Morgan","type":"Role","_key":"38110","_from":"25755","_to":"25774"} +{"$label":"ACTS_IN","name":"Morpho","type":"Role","_key":"111960","_from":"25756","_to":"66086"} +{"$label":"ACTS_IN","name":"Pepita","type":"Role","_key":"38097","_from":"25768","_to":"25759"} +{"$label":"ACTS_IN","name":"Mrs. Lapierre","type":"Role","_key":"38096","_from":"25767","_to":"25759"} +{"$label":"ACTS_IN","name":"la femme de Roland","type":"Role","_key":"38094","_from":"25766","_to":"25759"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"38093","_from":"25765","_to":"25759"} +{"$label":"ACTS_IN","name":"Prince Grokumat\u00e9","type":"Role","_key":"38092","_from":"25764","_to":"25759"} +{"$label":"ACTS_IN","name":"Bertrand Malou","type":"Role","_key":"38091","_from":"25763","_to":"25759"} +{"$label":"ACTS_IN","name":"Amira","type":"Role","_key":"38090","_from":"25762","_to":"25759"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"38089","_from":"25761","_to":"25759"} +{"$label":"ACTS_IN","name":"Joe Le Corsia","type":"Role","_key":"38088","_from":"25760","_to":"25759"} +{"$label":"ACTS_IN","name":"Lady Violet Dongby Albertini","type":"Role","_key":"38105","_from":"25773","_to":"25769"} +{"$label":"ACTS_IN","name":"Teresa Valegnani","type":"Role","_key":"38104","_from":"25772","_to":"25769"} +{"$label":"ACTS_IN","name":"Aureliano Fuciletto","type":"Role","_key":"38103","_from":"25771","_to":"25769"} +{"$label":"ACTS_IN","name":"Sir Reginald J. Dongby","type":"Role","_key":"38102","_from":"25770","_to":"25769"} +{"$label":"ACTS_IN","name":"Pharmacist's wife \/ Cinema spectator","type":"Role","_key":"67470","_from":"25772","_to":"41556"} +{"$label":"ACTS_IN","name":"Prof. Forrester","type":"Role","_key":"38122","_from":"25778","_to":"25774"} +{"$label":"ACTS_IN","name":"Assistant Inspector","type":"Role","_key":"38121","_from":"25777","_to":"25774"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"38120","_from":"25776","_to":"25774"} +{"$label":"ACTS_IN","name":"Ingrid Thorsson","type":"Role","_key":"38112","_from":"25775","_to":"25774"} +{"$label":"ACTS_IN","name":"Linda Westinghouse","type":"Role","_key":"111955","_from":"25775","_to":"66086"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"38130","_from":"25782","_to":"25779"} +{"$label":"ACTS_IN","name":"Helen Bennett","type":"Role","_key":"38129","_from":"25781","_to":"25779"} +{"$label":"ACTS_IN","name":"Ferencz","type":"Role","_key":"38127","_from":"25780","_to":"25779"} +{"$label":"ACTS_IN","name":"Notar Pr\u00e4torius","type":"Role","_key":"68362","_from":"25780","_to":"41954"} +{"$label":"ACTS_IN","name":"G\u00f6ssmann","type":"Role","_key":"64964","_from":"25780","_to":"40380"} +{"$label":"ACTS_IN","name":"Hauptwachmeister Glantz","type":"Role","_key":"39777","_from":"25780","_to":"26876"} +{"$label":"ACTS_IN","name":"Hermann Gromek","type":"Role","_key":"39468","_from":"25780","_to":"26678"} +{"$label":"ACTS_IN","name":"Petra, Chico's Wife","type":"Role","_key":"90773","_from":"25781","_to":"53570"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"53398","_from":"25781","_to":"34505"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"44616","_from":"25782","_to":"29691"} +{"$label":"ACTS_IN","name":"Am\u00e9lie","type":"Role","_key":"38137","_from":"25788","_to":"25783"} +{"$label":"ACTS_IN","name":"Dr. Fink","type":"Role","_key":"38136","_from":"25787","_to":"25783"} +{"$label":"ACTS_IN","name":"Jochen Reiter","type":"Role","_key":"38135","_from":"25786","_to":"25783"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"38132","_from":"25785","_to":"25783"} +{"$label":"DIRECTED","_key":"38131","_from":"25784","_to":"25783"} +{"$label":"ACTS_IN","name":"Mrs. Holland","type":"Role","_key":"72487","_from":"25785","_to":"43735"} +{"$label":"ACTS_IN","name":"Heidi Immer","type":"Role","_key":"50916","_from":"25785","_to":"33228"} +{"$label":"ACTS_IN","name":"Melissa Foster","type":"Role","_key":"43636","_from":"25785","_to":"29135"} +{"$label":"ACTS_IN","name":"Hilde Reimer","type":"Role","_key":"42684","_from":"25785","_to":"28571"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"38140","_from":"25785","_to":"25789"} +{"$label":"ACTS_IN","name":"Mr. Leach","type":"Role","_key":"44230","_from":"25786","_to":"29470"} +{"$label":"ACTS_IN","name":"Brocca","type":"Role","_key":"49090","_from":"25787","_to":"32171"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38233","_from":"25787","_to":"25818"} +{"$label":"ACTS_IN","name":"Putzfrau","type":"Role","_key":"38148","_from":"25794","_to":"25789"} +{"$label":"ACTS_IN","name":"Einbrecher","type":"Role","_key":"38147","_from":"25793","_to":"25789"} +{"$label":"ACTS_IN","name":"Erpresserin","type":"Role","_key":"38146","_from":"25792","_to":"25789"} +{"$label":"ACTS_IN","name":"Burkhardt","type":"Role","_key":"38144","_from":"25791","_to":"25789"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"38141","_from":"25790","_to":"25789"} +{"$label":"ACTS_IN","name":"Captain Moon","type":"Role","_key":"48049","_from":"25790","_to":"31592"} +{"$label":"ACTS_IN","name":"Inspizient","type":"Role","_key":"41826","_from":"25791","_to":"28050"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42288","_from":"25792","_to":"28312"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"39029","_from":"25792","_to":"26375"} +{"$label":"ACTS_IN","name":"Monkford","type":"Role","_key":"38160","_from":"25797","_to":"25795"} +{"$label":"ACTS_IN","name":"Ruth Lester aka Alice Cravel","type":"Role","_key":"38156","_from":"25796","_to":"25795"} +{"$label":"ACTS_IN","name":"Mr. Howett","type":"Role","_key":"38172","_from":"25803","_to":"25798"} +{"$label":"ACTS_IN","name":"Elaine Bellamy","type":"Role","_key":"38167","_from":"25802","_to":"25798"} +{"$label":"ACTS_IN","name":"Fay Savini","type":"Role","_key":"38166","_from":"25801","_to":"25798"} +{"$label":"ACTS_IN","name":"James Lamotte Featherstone","type":"Role","_key":"38162","_from":"25800","_to":"25798"} +{"$label":"DIRECTED","_key":"38161","_from":"25799","_to":"25798"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"40317","_from":"25799","_to":"27196"} +{"$label":"DIRECTED","_key":"40312","_from":"25799","_to":"27196"} +{"$label":"DIRECTED","_key":"39906","_from":"25799","_to":"26965"} +{"$label":"DIRECTED","_key":"39776","_from":"25799","_to":"26876"} +{"$label":"ACTS_IN","name":"Anna Smith","type":"Role","_key":"44144","_from":"25802","_to":"29420"} +{"$label":"ACTS_IN","name":"Dr. Donald Wells","type":"Role","_key":"38183","_from":"25807","_to":"25804"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"38181","_from":"25806","_to":"25804"} +{"$label":"ACTS_IN","name":"Basil Hale","type":"Role","_key":"38180","_from":"25805","_to":"25804"} +{"$label":"ACTS_IN","name":"Bruno Tiches","type":"Role","_key":"45058","_from":"25805","_to":"29929"} +{"$label":"ACTS_IN","name":"Werner 'The Ferret'","type":"Role","_key":"40482","_from":"25805","_to":"27264"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"46599","_from":"25806","_to":"30780"} +{"$label":"ACTS_IN","name":"Lohmann","type":"Role","_key":"45118","_from":"25806","_to":"29944"} +{"$label":"ACTS_IN","name":"Dr. Himboldt","type":"Role","_key":"40368","_from":"25806","_to":"27226"} +{"$label":"ACTS_IN","name":"Polizeikommissar","type":"Role","_key":"40363","_from":"25806","_to":"27219"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39880","_from":"25806","_to":"26934"} +{"$label":"ACTS_IN","name":"SS-Gruppenf\u00fchrer Schmidt-Lausitz","type":"Role","_key":"68967","_from":"25807","_to":"42224"} +{"$label":"ACTS_IN","name":"Dr. Tromby","type":"Role","_key":"38194","_from":"25811","_to":"25808"} +{"$label":"ACTS_IN","name":"Lucius Clark","type":"Role","_key":"38191","_from":"25810","_to":"25808"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"38189","_from":"25809","_to":"25808"} +{"$label":"ACTS_IN","name":"Robert Lorm","type":"Role","_key":"45969","_from":"25811","_to":"30392"} +{"$label":"ACTS_IN","name":"Monsieur d'Arol","type":"Role","_key":"38208","_from":"25816","_to":"25812"} +{"$label":"ACTS_IN","name":"Cunning","type":"Role","_key":"38207","_from":"25815","_to":"25812"} +{"$label":"ACTS_IN","name":"Mai Ling","type":"Role","_key":"38205","_from":"25814","_to":"25812"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"38202","_from":"25813","_to":"25812"} +{"$label":"ACTS_IN","name":"Gustav Petersen","type":"Role","_key":"40612","_from":"25815","_to":"27349"} +{"$label":"ACTS_IN","name":"Mr. Smooth","type":"Role","_key":"44072","_from":"25816","_to":"29386"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38237","_from":"25824","_to":"25818"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38236","_from":"25823","_to":"25818"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38235","_from":"25822","_to":"25818"} +{"$label":"ACTS_IN","name":"Karin Lucas","type":"Role","_key":"38230","_from":"25821","_to":"25818"} +{"$label":"ACTS_IN","name":"inspecteur Dubin","type":"Role","_key":"38227","_from":"25820","_to":"25818"} +{"$label":"ACTS_IN","name":"Angela Delpierre","type":"Role","_key":"38222","_from":"25819","_to":"25818"} +{"$label":"ACTS_IN","name":"Carole Rothmann","type":"Role","_key":"106037","_from":"25819","_to":"62438"} +{"$label":"ACTS_IN","name":"Professeur Br\u00fcgen","type":"Role","_key":"93985","_from":"25819","_to":"55346"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"60697","_from":"25819","_to":"38326"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"44804","_from":"25821","_to":"29804"} +{"$label":"ACTS_IN","name":"Ottmar Hauschild","type":"Role","_key":"42540","_from":"25823","_to":"28476"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"39652","_from":"25823","_to":"26800"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"38271","_from":"25852","_to":"25825"} +{"$label":"ACTS_IN","name":"Cop #2 (as John Quill)","type":"Role","_key":"38269","_from":"25851","_to":"25825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38267","_from":"25850","_to":"25825"} +{"$label":"ACTS_IN","name":"Waiter (as Thomas DeWolfe)","type":"Role","_key":"38266","_from":"25849","_to":"25825"} +{"$label":"ACTS_IN","name":"Medic","type":"Role","_key":"38265","_from":"25848","_to":"25825"} +{"$label":"ACTS_IN","name":"Landlady (as Eleanor Wilson)","type":"Role","_key":"38264","_from":"25847","_to":"25825"} +{"$label":"ACTS_IN","name":"Cop #1 (as Ronald Weyand)","type":"Role","_key":"38263","_from":"25846","_to":"25825"} +{"$label":"ACTS_IN","name":"Reenie","type":"Role","_key":"38261","_from":"25845","_to":"25825"} +{"$label":"ACTS_IN","name":"Funeral Director","type":"Role","_key":"38260","_from":"25844","_to":"25825"} +{"$label":"ACTS_IN","name":"2nd Deconsecration Minister","type":"Role","_key":"38259","_from":"25843","_to":"25825"} +{"$label":"ACTS_IN","name":"1st Deconsecration Minister","type":"Role","_key":"38258","_from":"25842","_to":"25825"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"38257","_from":"25841","_to":"25825"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"38256","_from":"25840","_to":"25825"} +{"$label":"ACTS_IN","name":"Private Jacob \/ Jake","type":"Role","_key":"38255","_from":"25839","_to":"25825"} +{"$label":"ACTS_IN","name":"Marjorie Guthrie","type":"Role","_key":"38254","_from":"25838","_to":"25825"} +{"$label":"ACTS_IN","name":"Draft Clerk","type":"Role","_key":"38253","_from":"25837","_to":"25825"} +{"$label":"ACTS_IN","name":"Woody Guthrie","type":"Role","_key":"38252","_from":"25836","_to":"25825"} +{"$label":"ACTS_IN","name":"Blueglass","type":"Role","_key":"38251","_from":"25835","_to":"25825"} +{"$label":"ACTS_IN","name":"Evangelist","type":"Role","_key":"38250","_from":"25834","_to":"25825"} +{"$label":"ACTS_IN","name":"Himself - Officer Obie","type":"Role","_key":"38249","_from":"25833","_to":"25825"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"38248","_from":"25832","_to":"25825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38247","_from":"25831","_to":"25825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38246","_from":"25830","_to":"25825"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"38245","_from":"25829","_to":"25825"} +{"$label":"ACTS_IN","name":"Roger Crowther","type":"Role","_key":"38244","_from":"25828","_to":"25825"} +{"$label":"ACTS_IN","name":"Mari-chan","type":"Role","_key":"38243","_from":"25827","_to":"25825"} +{"$label":"ACTS_IN","name":"Arlo Guthrie","type":"Role","_key":"38240","_from":"25826","_to":"25825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53996","_from":"25826","_to":"34725"} +{"$label":"ACTS_IN","name":"DeWitt","type":"Role","_key":"70572","_from":"25842","_to":"42937"} +{"$label":"ACTS_IN","name":"Dr. Maiser","type":"Role","_key":"38279","_from":"25855","_to":"25853"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"38278","_from":"25854","_to":"25853"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"88223","_from":"25854","_to":"52345"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"60388","_from":"25854","_to":"38093"} +{"$label":"ACTS_IN","name":"Susanne Droemer","type":"Role","_key":"43947","_from":"25854","_to":"29317"} +{"$label":"ACTS_IN","name":"Hans J. Lehm","type":"Role","_key":"42498","_from":"25855","_to":"28455"} +{"$label":"ACTS_IN","name":"Huber","type":"Role","_key":"42311","_from":"25855","_to":"28327"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38292","_from":"25866","_to":"25856"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"38291","_from":"25865","_to":"25856"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"38290","_from":"25864","_to":"25856"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"38289","_from":"25863","_to":"25856"} +{"$label":"ACTS_IN","name":"Artist","type":"Role","_key":"38288","_from":"25862","_to":"25856"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"38287","_from":"25861","_to":"25856"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38286","_from":"25860","_to":"25856"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"38285","_from":"25859","_to":"25856"} +{"$label":"ACTS_IN","name":"Street sweeper","type":"Role","_key":"38284","_from":"25858","_to":"25856"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"38282","_from":"25857","_to":"25856"} +{"$label":"ACTS_IN","name":"Cracker","type":"Role","_key":"39168","_from":"25858","_to":"26475"} +{"$label":"ACTS_IN","name":"Mr. Franklin","type":"Role","_key":"39106","_from":"25858","_to":"26431"} +{"$label":"ACTS_IN","name":"Silas","type":"Role","_key":"39097","_from":"25858","_to":"26427"} +{"$label":"ACTS_IN","name":"Brother Hanson","type":"Role","_key":"38900","_from":"25858","_to":"26274"} +{"$label":"ACTS_IN","name":"Snake Wolf","type":"Role","_key":"38336","_from":"25858","_to":"25894"} +{"$label":"ACTS_IN","name":"Chauvel","type":"Role","_key":"38304","_from":"25874","_to":"25867"} +{"$label":"ACTS_IN","name":"Charcot","type":"Role","_key":"38303","_from":"25873","_to":"25867"} +{"$label":"ACTS_IN","name":"jeune femme Passy","type":"Role","_key":"38302","_from":"25872","_to":"25867"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Moulinier, la premi\u00e8re victime","type":"Role","_key":"38301","_from":"25871","_to":"25867"} +{"$label":"ACTS_IN","name":"Blade","type":"Role","_key":"38297","_from":"25870","_to":"25867"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"38294","_from":"25869","_to":"25867"} +{"$label":"DIRECTED","_key":"38293","_from":"25868","_to":"25867"} +{"$label":"DIRECTED","_key":"116269","_from":"25868","_to":"68451"} +{"$label":"DIRECTED","_key":"103163","_from":"25868","_to":"60680"} +{"$label":"ACTS_IN","name":"Lambert","type":"Role","_key":"42933","_from":"25869","_to":"28687"} +{"$label":"ACTS_IN","name":"Soren","type":"Role","_key":"105101","_from":"25870","_to":"61857"} +{"$label":"ACTS_IN","name":"Girolamo Aleander","type":"Role","_key":"38404","_from":"25870","_to":"25944"} +{"$label":"ACTS_IN","name":"Leblanc","type":"Role","_key":"95712","_from":"25873","_to":"56295"} +{"$label":"ACTS_IN","name":"Comte de Verchemont","type":"Role","_key":"60493","_from":"25873","_to":"38170"} +{"$label":"ACTS_IN","name":"Lillian","type":"Role","_key":"38319","_from":"25882","_to":"25875"} +{"$label":"ACTS_IN","name":"Halil","type":"Role","_key":"38317","_from":"25881","_to":"25875"} +{"$label":"ACTS_IN","name":"O'Brian","type":"Role","_key":"38316","_from":"25880","_to":"25875"} +{"$label":"ACTS_IN","name":"Long John Silver","type":"Role","_key":"38308","_from":"25879","_to":"25875"} +{"$label":"ACTS_IN","name":"Sheila O'Donnell","type":"Role","_key":"38307","_from":"25878","_to":"25875"} +{"$label":"ACTS_IN","name":"Jim Hawkins","type":"Role","_key":"38306","_from":"25877","_to":"25875"} +{"$label":"DIRECTED","_key":"38305","_from":"25876","_to":"25875"} +{"$label":"DIRECTED","_key":"68959","_from":"25876","_to":"42219"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"89269","_from":"25877","_to":"52854"} +{"$label":"ACTS_IN","name":"Albert Mutz","type":"Role","_key":"89267","_from":"25877","_to":"52852"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"89262","_from":"25877","_to":"52849"} +{"$label":"ACTS_IN","name":"Kreuzkamm jr.","type":"Role","_key":"63808","_from":"25877","_to":"39895"} +{"$label":"ACTS_IN","name":"Hendrik","type":"Role","_key":"61025","_from":"25877","_to":"38564"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"52655","_from":"25877","_to":"34197"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"88063","_from":"25879","_to":"52271"} +{"$label":"ACTS_IN","name":"Max Kr\u00fcger","type":"Role","_key":"67630","_from":"25879","_to":"41622"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54347","_from":"25879","_to":"34866"} +{"$label":"ACTS_IN","name":"Thomas Dorn","type":"Role","_key":"49623","_from":"25879","_to":"32478"} +{"$label":"ACTS_IN","name":"Sakip","type":"Role","_key":"43201","_from":"25881","_to":"28852"} +{"$label":"ACTS_IN","name":"Bathing Beauty","type":"Role","_key":"38331","_from":"25893","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38330","_from":"25892","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38329","_from":"25891","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38328","_from":"25890","_to":"25883"} +{"$label":"ACTS_IN","name":"Cave Man","type":"Role","_key":"38326","_from":"25889","_to":"25883"} +{"$label":"ACTS_IN","name":"Strongfort","type":"Role","_key":"38325","_from":"25888","_to":"25883"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38324","_from":"25887","_to":"25883"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"38323","_from":"25886","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38322","_from":"25885","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38321","_from":"25884","_to":"25883"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38824","_from":"25887","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38335","_from":"25887","_to":"25894"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38844","_from":"25888","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38341","_from":"25888","_to":"25894"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38505","_from":"25889","_to":"26013"} +{"$label":"ACTS_IN","name":"Burlesque Announcer","type":"Role","_key":"38358","_from":"25889","_to":"25907"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38349","_from":"25889","_to":"25905"} +{"$label":"ACTS_IN","name":"Ruthie","type":"Role","_key":"39100","_from":"25893","_to":"26427"} +{"$label":"ACTS_IN","name":"Beachball Girl","type":"Role","_key":"38828","_from":"25893","_to":"26224"} +{"$label":"ACTS_IN","name":"Scary Woman","type":"Role","_key":"38347","_from":"25904","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38346","_from":"25903","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38345","_from":"25902","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38344","_from":"25901","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38343","_from":"25900","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38342","_from":"25899","_to":"25894"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38340","_from":"25898","_to":"25894"} +{"$label":"ACTS_IN","name":"The Bosom","type":"Role","_key":"38337","_from":"25897","_to":"25894"} +{"$label":"ACTS_IN","name":"Golden Nuggets Girl","type":"Role","_key":"38334","_from":"25896","_to":"25894"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"38333","_from":"25895","_to":"25894"} +{"$label":"ACTS_IN","name":"Angler","type":"Role","_key":"39098","_from":"25898","_to":"26427"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38821","_from":"25898","_to":"26224"} +{"$label":"ACTS_IN","name":"Matron","type":"Role","_key":"38943","_from":"25904","_to":"26303"} +{"$label":"ACTS_IN","name":"Maggie Marie","type":"Role","_key":"38895","_from":"25904","_to":"26274"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38833","_from":"25904","_to":"26224"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38350","_from":"25906","_to":"25905"} +{"$label":"ACTS_IN","name":"Nude in Window","type":"Role","_key":"38363","_from":"25917","_to":"25907"} +{"$label":"ACTS_IN","name":"Aufience Member","type":"Role","_key":"38362","_from":"25916","_to":"25907"} +{"$label":"ACTS_IN","name":"The Therapist","type":"Role","_key":"38360","_from":"25915","_to":"25907"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"38359","_from":"25914","_to":"25907"} +{"$label":"ACTS_IN","name":"Audience Member","type":"Role","_key":"38357","_from":"25913","_to":"25907"} +{"$label":"ACTS_IN","name":"The Beach Beauty","type":"Role","_key":"38356","_from":"25912","_to":"25907"} +{"$label":"ACTS_IN","name":"The Secretary","type":"Role","_key":"38355","_from":"25911","_to":"25907"} +{"$label":"ACTS_IN","name":"The Dental Assistant","type":"Role","_key":"38354","_from":"25910","_to":"25907"} +{"$label":"ACTS_IN","name":"The Waitress","type":"Role","_key":"38353","_from":"25909","_to":"25907"} +{"$label":"ACTS_IN","name":"Mr. Teas","type":"Role","_key":"38352","_from":"25908","_to":"25907"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38823","_from":"25913","_to":"26224"} +{"$label":"ACTS_IN","name":"Beachball Girl","type":"Role","_key":"38829","_from":"25915","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38365","_from":"25919","_to":"25918"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38837","_from":"25919","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38368","_from":"25921","_to":"25920"} +{"$label":"ACTS_IN","name":"The Commissioner","type":"Role","_key":"38383","_from":"25935","_to":"25922"} +{"$label":"ACTS_IN","name":"Pocohontas","type":"Role","_key":"38382","_from":"25934","_to":"25922"} +{"$label":"ACTS_IN","name":"Rafe","type":"Role","_key":"38381","_from":"25933","_to":"25922"} +{"$label":"ACTS_IN","name":"Leonard Box","type":"Role","_key":"38380","_from":"25932","_to":"25922"} +{"$label":"ACTS_IN","name":"Chester Young Thing","type":"Role","_key":"38379","_from":"25931","_to":"25922"} +{"$label":"ACTS_IN","name":"Gwendolyn","type":"Role","_key":"38378","_from":"25930","_to":"25922"} +{"$label":"ACTS_IN","name":"SweetLil Alice","type":"Role","_key":"38377","_from":"25929","_to":"25922"} +{"$label":"ACTS_IN","name":"Limehouse","type":"Role","_key":"38376","_from":"25928","_to":"25922"} +{"$label":"ACTS_IN","name":"The Ethopien Chef","type":"Role","_key":"38374","_from":"25927","_to":"25922"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"38373","_from":"25926","_to":"25922"} +{"$label":"ACTS_IN","name":"Homer Johnson","type":"Role","_key":"38372","_from":"25925","_to":"25922"} +{"$label":"ACTS_IN","name":"Margo Winchester","type":"Role","_key":"38371","_from":"25924","_to":"25922"} +{"$label":"ACTS_IN","name":"Adolph Schwarz","type":"Role","_key":"38370","_from":"25923","_to":"25922"} +{"$label":"ACTS_IN","name":"Father Nicoletta","type":"Role","_key":"105879","_from":"25925","_to":"62328"} +{"$label":"ACTS_IN","name":"Katsina","type":"Role","_key":"46641","_from":"25928","_to":"30797"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38396","_from":"25943","_to":"25936"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38395","_from":"25942","_to":"25936"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38394","_from":"25941","_to":"25936"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38393","_from":"25940","_to":"25936"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38392","_from":"25939","_to":"25936"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38391","_from":"25938","_to":"25936"} +{"$label":"DIRECTED","_key":"38388","_from":"25937","_to":"25936"} +{"$label":"ACTS_IN","name":"Fugger-Revisor","type":"Role","_key":"38423","_from":"25953","_to":"25944"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"38421","_from":"25952","_to":"25944"} +{"$label":"ACTS_IN","name":"Von Miltitz","type":"Role","_key":"38420","_from":"25951","_to":"25944"} +{"$label":"ACTS_IN","name":"Von der Eck","type":"Role","_key":"38419","_from":"25950","_to":"25944"} +{"$label":"ACTS_IN","name":"Charles V","type":"Role","_key":"38417","_from":"25949","_to":"25944"} +{"$label":"ACTS_IN","name":"Gunter","type":"Role","_key":"38416","_from":"25948","_to":"25944"} +{"$label":"ACTS_IN","name":"Philipp von Hessen","type":"Role","_key":"38415","_from":"25947","_to":"25944"} +{"$label":"ACTS_IN","name":"Andreas Karlstadt","type":"Role","_key":"38413","_from":"25946","_to":"25944"} +{"$label":"ACTS_IN","name":"Katharina von Bora","type":"Role","_key":"38405","_from":"25945","_to":"25944"} +{"$label":"ACTS_IN","name":"Derek, Julie's Friend","type":"Role","_key":"101950","_from":"25946","_to":"59995"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"45592","_from":"25947","_to":"30180"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42283","_from":"25948","_to":"28312"} +{"$label":"ACTS_IN","name":"Berthold Graf v. Stauffenberg","type":"Role","_key":"63116","_from":"25950","_to":"39591"} +{"$label":"ACTS_IN","name":"Markus B\u00f6tcher","type":"Role","_key":"43823","_from":"25951","_to":"29265"} +{"$label":"ACTS_IN","name":"Jan Eppstein","type":"Role","_key":"42052","_from":"25951","_to":"28173"} +{"$label":"ACTS_IN","name":"Napoleon","type":"Role","_key":"38440","_from":"25964","_to":"25954"} +{"$label":"ACTS_IN","name":"Mademoiselle Bourienne","type":"Role","_key":"38439","_from":"25963","_to":"25954"} +{"$label":"ACTS_IN","name":"Denisov","type":"Role","_key":"38438","_from":"25962","_to":"25954"} +{"$label":"ACTS_IN","name":"Anatole Kuragin","type":"Role","_key":"38437","_from":"25961","_to":"25954"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"38432","_from":"25960","_to":"25954"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"38431","_from":"25959","_to":"25954"} +{"$label":"ACTS_IN","name":"Comte Rostov","type":"Role","_key":"38430","_from":"25958","_to":"25954"} +{"$label":"ACTS_IN","name":"Andrej Bolkonski","type":"Role","_key":"38426","_from":"25957","_to":"25954"} +{"$label":"DIRECTED","_key":"38425","_from":"25956","_to":"25954"} +{"$label":"DIRECTED","_key":"38424","_from":"25955","_to":"25954"} +{"$label":"DIRECTED","_key":"47295","_from":"25955","_to":"31151"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"115385","_from":"25957","_to":"67943"} +{"$label":"ACTS_IN","name":"Matteo Carati","type":"Role","_key":"71355","_from":"25957","_to":"43279"} +{"$label":"ACTS_IN","name":"Siegfried Fehmer","type":"Role","_key":"96187","_from":"25961","_to":"56525"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"65820","_from":"25961","_to":"40734"} +{"$label":"ACTS_IN","name":"Ralf","type":"Role","_key":"54355","_from":"25961","_to":"34869"} +{"$label":"ACTS_IN","name":"Laser","type":"Role","_key":"50187","_from":"25961","_to":"32809"} +{"$label":"ACTS_IN","name":"Julius","type":"Role","_key":"54047","_from":"25962","_to":"34764"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"115761","_from":"25964","_to":"68156"} +{"$label":"ACTS_IN","name":"Lord Clive","type":"Role","_key":"38451","_from":"25972","_to":"25966"} +{"$label":"ACTS_IN","name":"Cleone","type":"Role","_key":"38449","_from":"25971","_to":"25966"} +{"$label":"ACTS_IN","name":"Capt. Raymond Deladier","type":"Role","_key":"38448","_from":"25970","_to":"25966"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"38447","_from":"25969","_to":"25966"} +{"$label":"ACTS_IN","name":"Isiah","type":"Role","_key":"38446","_from":"25968","_to":"25966"} +{"$label":"ACTS_IN","name":"Lady Susan Walker","type":"Role","_key":"38443","_from":"25967","_to":"25966"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"103685","_from":"25968","_to":"60984"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38457","_from":"25978","_to":"25973"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38456","_from":"25977","_to":"25973"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38455","_from":"25976","_to":"25973"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"38454","_from":"25975","_to":"25973"} +{"$label":"ACTS_IN","name":"Herman Umgar","type":"Role","_key":"38453","_from":"25974","_to":"25973"} +{"$label":"DIRECTED","_key":"38452","_from":"25974","_to":"25973"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"38493","_from":"25975","_to":"26003"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38484","_from":"25975","_to":"25997"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"38469","_from":"25975","_to":"25988"} +{"$label":"ACTS_IN","name":"Marlies Ruttger","type":"Role","_key":"38467","_from":"25987","_to":"25979"} +{"$label":"ACTS_IN","name":"Gerlinde","type":"Role","_key":"38466","_from":"25986","_to":"25979"} +{"$label":"ACTS_IN","name":"Nachbarin","type":"Role","_key":"38465","_from":"25985","_to":"25979"} +{"$label":"ACTS_IN","name":"Harald Niemann","type":"Role","_key":"38464","_from":"25984","_to":"25979"} +{"$label":"ACTS_IN","name":"Mirco","type":"Role","_key":"38463","_from":"25983","_to":"25979"} +{"$label":"ACTS_IN","name":"Tobias Wallraff","type":"Role","_key":"38462","_from":"25982","_to":"25979"} +{"$label":"ACTS_IN","name":"Tom Hatzky","type":"Role","_key":"38461","_from":"25981","_to":"25979"} +{"$label":"DIRECTED","_key":"38458","_from":"25980","_to":"25979"} +{"$label":"DIRECTED","_key":"68434","_from":"25980","_to":"41976"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"63736","_from":"25984","_to":"39849"} +{"$label":"DIRECTED","_key":"38477","_from":"25996","_to":"25988"} +{"$label":"ACTS_IN","name":"Adam Drake","type":"Role","_key":"38476","_from":"25995","_to":"25988"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"38475","_from":"25994","_to":"25988"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"38474","_from":"25993","_to":"25988"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"38473","_from":"25992","_to":"25988"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"38472","_from":"25991","_to":"25988"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"38471","_from":"25990","_to":"25988"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"38468","_from":"25989","_to":"25988"} +{"$label":"ACTS_IN","name":"Tracks","type":"Role","_key":"38483","_from":"26002","_to":"25997"} +{"$label":"ACTS_IN","name":"Willie Wade","type":"Role","_key":"38482","_from":"26001","_to":"25997"} +{"$label":"ACTS_IN","name":"Beth Wade","type":"Role","_key":"38480","_from":"26000","_to":"25997"} +{"$label":"ACTS_IN","name":"Sheriff Charlie Wade","type":"Role","_key":"38479","_from":"25999","_to":"25997"} +{"$label":"DIRECTED","_key":"38478","_from":"25998","_to":"25997"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"38494","_from":"26006","_to":"26003"} +{"$label":"ACTS_IN","name":"Billy Baker","type":"Role","_key":"38490","_from":"26005","_to":"26003"} +{"$label":"DIRECTED","_key":"38487","_from":"26004","_to":"26003"} +{"$label":"ACTS_IN","name":"Jeff Malene","type":"Role","_key":"108387","_from":"26005","_to":"64078"} +{"$label":"ACTS_IN","name":"David 'Davey' Rolf (as Lee H. Montgomery)","type":"Role","_key":"95149","_from":"26005","_to":"55990"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38502","_from":"26012","_to":"26007"} +{"$label":"ACTS_IN","name":"Himself \/ Moderator","type":"Role","_key":"38501","_from":"26011","_to":"26007"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38500","_from":"26010","_to":"26007"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38496","_from":"26009","_to":"26007"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38495","_from":"26008","_to":"26007"} +{"$label":"DIRECTED","_key":"45533","_from":"26008","_to":"30154"} +{"$label":"ACTS_IN","name":"Tom Brookman","type":"Role","_key":"62454","_from":"26012","_to":"39337"} +{"$label":"ACTS_IN","name":"Wilfred, Duke of Saxony","type":"Role","_key":"44313","_from":"26012","_to":"29525"} +{"$label":"ACTS_IN","name":"Jamie's Father","type":"Role","_key":"39240","_from":"26012","_to":"26527"} +{"$label":"ACTS_IN","name":"Dr. Howard Phillips","type":"Role","_key":"39082","_from":"26012","_to":"26424"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"38509","_from":"26018","_to":"26013"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38508","_from":"26017","_to":"26013"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38507","_from":"26016","_to":"26013"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38506","_from":"26015","_to":"26013"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38504","_from":"26014","_to":"26013"} +{"$label":"ACTS_IN","name":"Pro","type":"Role","_key":"39446","_from":"26016","_to":"26663"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"38515","_from":"26022","_to":"26019"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"38512","_from":"26021","_to":"26019"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"38511","_from":"26020","_to":"26019"} +{"$label":"ACTS_IN","name":"Urbanna Sprawl","type":"Role","_key":"57565","_from":"26020","_to":"36462"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38764","_from":"26020","_to":"26188"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38530","_from":"26030","_to":"26023"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38527","_from":"26029","_to":"26023"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38526","_from":"26028","_to":"26023"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38521","_from":"26027","_to":"26023"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38518","_from":"26026","_to":"26023"} +{"$label":"DIRECTED","_key":"38517","_from":"26025","_to":"26023"} +{"$label":"DIRECTED","_key":"38516","_from":"26024","_to":"26023"} +{"$label":"ACTS_IN","name":"Bookstore Customer","type":"Role","_key":"68996","_from":"26026","_to":"42233"} +{"$label":"ACTS_IN","name":"US Pr\u00e4sident","type":"Role","_key":"38796","_from":"26026","_to":"26203"} +{"$label":"DIRECTED","_key":"63781","_from":"26027","_to":"39871"} +{"$label":"ACTS_IN","name":"Man Holding Newspaper","type":"Role","_key":"63780","_from":"26027","_to":"39871"} +{"$label":"DIRECTED","_key":"99233","_from":"26028","_to":"58479"} +{"$label":"DIRECTED","_key":"55536","_from":"26028","_to":"35367"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38546","_from":"26047","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38545","_from":"26046","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38544","_from":"26045","_to":"26031"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"38543","_from":"26044","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38542","_from":"26043","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38541","_from":"26042","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38540","_from":"26041","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38539","_from":"26040","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38538","_from":"26039","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38537","_from":"26038","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38536","_from":"26037","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38535","_from":"26036","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38534","_from":"26035","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38533","_from":"26034","_to":"26031"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38532","_from":"26033","_to":"26031"} +{"$label":"DIRECTED","_key":"38531","_from":"26032","_to":"26031"} +{"$label":"DIRECTED","_key":"38757","_from":"26032","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38747","_from":"26044","_to":"26175"} +{"$label":"ACTS_IN","name":"Officer Lopez","type":"Role","_key":"38557","_from":"26053","_to":"26048"} +{"$label":"ACTS_IN","name":"Ruth Raines","type":"Role","_key":"38554","_from":"26052","_to":"26048"} +{"$label":"ACTS_IN","name":"McNulty","type":"Role","_key":"38553","_from":"26051","_to":"26048"} +{"$label":"ACTS_IN","name":"Martin Whistler \/ Detective Weisling","type":"Role","_key":"38552","_from":"26050","_to":"26048"} +{"$label":"ACTS_IN","name":"Hap Ashby","type":"Role","_key":"38551","_from":"26049","_to":"26048"} +{"$label":"ACTS_IN","name":"Mark Grunski","type":"Role","_key":"38561","_from":"26049","_to":"26054"} +{"$label":"ACTS_IN","name":"Russell Hollander","type":"Role","_key":"104011","_from":"26051","_to":"61192"} +{"$label":"ACTS_IN","name":"Tooth Fairy","type":"Role","_key":"96250","_from":"26051","_to":"56561"} +{"$label":"ACTS_IN","name":"Morton","type":"Role","_key":"90269","_from":"26051","_to":"53365"} +{"$label":"ACTS_IN","name":"Nearco Latella","type":"Role","_key":"45988","_from":"26053","_to":"30398"} +{"$label":"ACTS_IN","name":"Louie's mom","type":"Role","_key":"38571","_from":"26061","_to":"26054"} +{"$label":"ACTS_IN","name":"Ginger Grunski","type":"Role","_key":"38570","_from":"26060","_to":"26054"} +{"$label":"ACTS_IN","name":"Marsha Grunski","type":"Role","_key":"38569","_from":"26059","_to":"26054"} +{"$label":"ACTS_IN","name":"J.T.","type":"Role","_key":"38568","_from":"26058","_to":"26054"} +{"$label":"ACTS_IN","name":"Franklyn","type":"Role","_key":"38566","_from":"26057","_to":"26054"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"38559","_from":"26056","_to":"26054"} +{"$label":"DIRECTED","_key":"38558","_from":"26055","_to":"26054"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"54961","_from":"26056","_to":"35132"} +{"$label":"ACTS_IN","name":"T.C.","type":"Role","_key":"104508","_from":"26057","_to":"61466"} +{"$label":"ACTS_IN","name":"Peter Stegman","type":"Role","_key":"70693","_from":"26058","_to":"43003"} +{"$label":"ACTS_IN","name":"Ms. Jenkins","type":"Role","_key":"101399","_from":"26060","_to":"59681"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"55753","_from":"26060","_to":"35483"} +{"$label":"ACTS_IN","name":"Neighbor Lady","type":"Role","_key":"100560","_from":"26061","_to":"59308"} +{"$label":"DIRECTED","_key":"38577","_from":"26067","_to":"26062"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38576","_from":"26066","_to":"26062"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38575","_from":"26065","_to":"26062"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38574","_from":"26064","_to":"26062"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38573","_from":"26063","_to":"26062"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39432","_from":"26067","_to":"26650"} +{"$label":"DIRECTED","_key":"39425","_from":"26067","_to":"26650"} +{"$label":"DIRECTED","_key":"39423","_from":"26067","_to":"26649"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"38588","_from":"26072","_to":"26068"} +{"$label":"ACTS_IN","name":"Earl Hooter","type":"Role","_key":"38586","_from":"26071","_to":"26068"} +{"$label":"ACTS_IN","name":"Elvira \/ Aunt Morgana Talbot","type":"Role","_key":"38579","_from":"26070","_to":"26068"} +{"$label":"DIRECTED","_key":"38578","_from":"26069","_to":"26068"} +{"$label":"DIRECTED","_key":"115991","_from":"26069","_to":"68313"} +{"$label":"ACTS_IN","name":"Girl with Lugs","type":"Role","_key":"119419","_from":"26070","_to":"70159"} +{"$label":"ACTS_IN","name":"hostage","type":"Role","_key":"95416","_from":"26070","_to":"56129"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39502","_from":"26070","_to":"26693"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39395","_from":"26070","_to":"26628"} +{"$label":"ACTS_IN","name":"Roxy","type":"Role","_key":"38860","_from":"26070","_to":"26244"} +{"$label":"ACTS_IN","name":"Himself (as Twisted Sister)","type":"Role","_key":"38605","_from":"26083","_to":"26073"} +{"$label":"ACTS_IN","name":"Herself - as 'Dottie'","type":"Role","_key":"38604","_from":"26082","_to":"26073"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"38602","_from":"26081","_to":"26073"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"38601","_from":"26080","_to":"26073"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"38600","_from":"26079","_to":"26073"} +{"$label":"ACTS_IN","name":"Sgt. Hunter","type":"Role","_key":"38598","_from":"26078","_to":"26073"} +{"$label":"ACTS_IN","name":"Policeman #2","type":"Role","_key":"38597","_from":"26077","_to":"26073"} +{"$label":"ACTS_IN","name":"Mr. Crowtrey","type":"Role","_key":"38595","_from":"26076","_to":"26073"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"38594","_from":"26075","_to":"26073"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"38592","_from":"26074","_to":"26073"} +{"$label":"ACTS_IN","name":"Chubby","type":"Role","_key":"105069","_from":"26074","_to":"61836"} +{"$label":"ACTS_IN","name":"Chubby","type":"Role","_key":"72216","_from":"26074","_to":"43634"} +{"$label":"ACTS_IN","name":"Ozzie","type":"Role","_key":"72123","_from":"26074","_to":"43597"} +{"$label":"ACTS_IN","name":"Ward Dexter","type":"Role","_key":"90994","_from":"26077","_to":"53683"} +{"$label":"ACTS_IN","name":"Marshall Smith","type":"Role","_key":"119974","_from":"26079","_to":"70461"} +{"$label":"ACTS_IN","name":"Sid Goldberg","type":"Role","_key":"70262","_from":"26079","_to":"42814"} +{"$label":"ACTS_IN","name":"Himself (Uncredited)","type":"Role","_key":"119009","_from":"26080","_to":"69951"} +{"$label":"ACTS_IN","name":"Mr. Kenton","type":"Role","_key":"108560","_from":"26080","_to":"64161"} +{"$label":"ACTS_IN","name":"Hotel Clerk","type":"Role","_key":"89561","_from":"26080","_to":"53001"} +{"$label":"ACTS_IN","name":"J. Russell Finch","type":"Role","_key":"70788","_from":"26080","_to":"43041"} +{"$label":"ACTS_IN","name":"Sigrid Ivorstetter","type":"Role","_key":"43397","_from":"26082","_to":"28990"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"58001","_from":"26083","_to":"36693"} +{"$label":"ACTS_IN","name":"Jack Spaulding","type":"Role","_key":"38609","_from":"26085","_to":"26084"} +{"$label":"ACTS_IN","name":"Pete Bryant","type":"Role","_key":"38622","_from":"26091","_to":"26086"} +{"$label":"ACTS_IN","name":"Mrs. Johnson","type":"Role","_key":"38621","_from":"26090","_to":"26086"} +{"$label":"ACTS_IN","name":"Patsy","type":"Role","_key":"38620","_from":"26089","_to":"26086"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"38619","_from":"26088","_to":"26086"} +{"$label":"ACTS_IN","name":"Whitney Hanlon","type":"Role","_key":"38618","_from":"26087","_to":"26086"} +{"$label":"ACTS_IN","name":"Sara Blank","type":"Role","_key":"92876","_from":"26089","_to":"54784"} +{"$label":"ACTS_IN","name":"Gwen Jackson","type":"Role","_key":"58596","_from":"26089","_to":"37025"} +{"$label":"ACTS_IN","name":"Mary Flaherty","type":"Role","_key":"48713","_from":"26089","_to":"31948"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"47380","_from":"26089","_to":"31196"} +{"$label":"ACTS_IN","name":"Hester","type":"Role","_key":"90596","_from":"26090","_to":"53505"} +{"$label":"ACTS_IN","name":"Sarah Wheeler","type":"Role","_key":"51240","_from":"26090","_to":"33417"} +{"$label":"ACTS_IN","name":"Richard Gray","type":"Role","_key":"38630","_from":"26097","_to":"26092"} +{"$label":"ACTS_IN","name":"Al Eastman","type":"Role","_key":"38629","_from":"26096","_to":"26092"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"38628","_from":"26095","_to":"26092"} +{"$label":"ACTS_IN","name":"Julie Thomas","type":"Role","_key":"38627","_from":"26094","_to":"26092"} +{"$label":"DIRECTED","_key":"38623","_from":"26093","_to":"26092"} +{"$label":"ACTS_IN","name":"Princess Zarina","type":"Role","_key":"119537","_from":"26094","_to":"70221"} +{"$label":"ACTS_IN","name":"Lennie","type":"Role","_key":"102900","_from":"26096","_to":"60529"} +{"$label":"ACTS_IN","name":"Sailor","type":"Role","_key":"38643","_from":"26107","_to":"26098"} +{"$label":"ACTS_IN","name":"Sailor","type":"Role","_key":"38642","_from":"26106","_to":"26098"} +{"$label":"ACTS_IN","name":"Sailor","type":"Role","_key":"38641","_from":"26105","_to":"26098"} +{"$label":"ACTS_IN","name":"Young Richard","type":"Role","_key":"38640","_from":"26104","_to":"26098"} +{"$label":"ACTS_IN","name":"Young Emmeline","type":"Role","_key":"38639","_from":"26103","_to":"26098"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"38638","_from":"26102","_to":"26098"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"38637","_from":"26101","_to":"26098"} +{"$label":"ACTS_IN","name":"Lookout","type":"Role","_key":"38636","_from":"26100","_to":"26098"} +{"$label":"ACTS_IN","name":"Emmeline","type":"Role","_key":"38632","_from":"26099","_to":"26098"} +{"$label":"ACTS_IN","name":"Jade Butterfield","type":"Role","_key":"118750","_from":"26099","_to":"69830"} +{"$label":"ACTS_IN","name":"Skye Daley","type":"Role","_key":"113971","_from":"26099","_to":"67125"} +{"$label":"ACTS_IN","name":"Carol Ferris (voice)","type":"Role","_key":"98102","_from":"26099","_to":"57762"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"88903","_from":"26099","_to":"52665"} +{"$label":"ACTS_IN","name":"Customer in Pete's","type":"Role","_key":"72646","_from":"26099","_to":"43777"} +{"$label":"ACTS_IN","name":"Mimi Wolverton","type":"Role","_key":"68682","_from":"26099","_to":"42088"} +{"$label":"ACTS_IN","name":"Susan Hoff","type":"Role","_key":"61522","_from":"26099","_to":"38797"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"109746","_from":"26101","_to":"64813"} +{"$label":"ACTS_IN","name":"Simmons","type":"Role","_key":"97849","_from":"26101","_to":"57625"} +{"$label":"ACTS_IN","name":"Rev. Koestler","type":"Role","_key":"96808","_from":"26101","_to":"56926"} +{"$label":"ACTS_IN","name":"Lieutenant Nicholson","type":"Role","_key":"38647","_from":"26111","_to":"26108"} +{"$label":"ACTS_IN","name":"Diane Craddock","type":"Role","_key":"38646","_from":"26110","_to":"26108"} +{"$label":"DIRECTED","_key":"38644","_from":"26109","_to":"26108"} +{"$label":"ACTS_IN","name":"Marg","type":"Role","_key":"106884","_from":"26110","_to":"63011"} +{"$label":"ACTS_IN","name":"Mrs. Emerson","type":"Role","_key":"68643","_from":"26110","_to":"42071"} +{"$label":"ACTS_IN","name":"Dr. Glaser","type":"Role","_key":"45779","_from":"26110","_to":"30289"} +{"$label":"ACTS_IN","name":"Senator William 'Billy' Duvall","type":"Role","_key":"60437","_from":"26111","_to":"38128"} +{"$label":"ACTS_IN","name":"Jenkin","type":"Role","_key":"38664","_from":"26118","_to":"26112"} +{"$label":"ACTS_IN","name":"Host of the Tabard","type":"Role","_key":"38663","_from":"26117","_to":"26112"} +{"$label":"ACTS_IN","name":"Fighter","type":"Role","_key":"38662","_from":"26116","_to":"26112"} +{"$label":"ACTS_IN","name":"Cook","type":"Role","_key":"38660","_from":"26115","_to":"26112"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"38655","_from":"26114","_to":"26112"} +{"$label":"ACTS_IN","name":"Devil","type":"Role","_key":"38652","_from":"26113","_to":"26112"} +{"$label":"ACTS_IN","name":"Vittorio \"Accattone\" Cataldi","type":"Role","_key":"89832","_from":"26113","_to":"53155"} +{"$label":"ACTS_IN","name":"Prince Koura","type":"Role","_key":"114279","_from":"26118","_to":"67308"} +{"$label":"ACTS_IN","name":"Zeebad","type":"Role","_key":"109295","_from":"26118","_to":"64568"} +{"$label":"ACTS_IN","name":"Kris, Man of the Year 1992","type":"Role","_key":"38673","_from":"26127","_to":"26119"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"38672","_from":"26126","_to":"26119"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"38671","_from":"26125","_to":"26119"} +{"$label":"ACTS_IN","name":"Sean, Island Man","type":"Role","_key":"38670","_from":"26124","_to":"26119"} +{"$label":"ACTS_IN","name":"Julia, the girl","type":"Role","_key":"38669","_from":"26123","_to":"26119"} +{"$label":"ACTS_IN","name":"Doug, Man of 1994","type":"Role","_key":"38668","_from":"26122","_to":"26119"} +{"$label":"ACTS_IN","name":"John, Man of 1995","type":"Role","_key":"38667","_from":"26121","_to":"26119"} +{"$label":"ACTS_IN","name":"Darren, Man of the Decade","type":"Role","_key":"38666","_from":"26120","_to":"26119"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"38718","_from":"26121","_to":"26159"} +{"$label":"ACTS_IN","name":"Opal Fleener","type":"Role","_key":"38680","_from":"26131","_to":"26128"} +{"$label":"ACTS_IN","name":"Coach Jasper","type":"Role","_key":"38678","_from":"26130","_to":"26128"} +{"$label":"DIRECTED","_key":"38674","_from":"26129","_to":"26128"} +{"$label":"DIRECTED","_key":"100684","_from":"26129","_to":"59358"} +{"$label":"ACTS_IN","name":"Bandit","type":"Role","_key":"38690","_from":"26138","_to":"26133"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"38689","_from":"26137","_to":"26133"} +{"$label":"ACTS_IN","name":"Bandit","type":"Role","_key":"38688","_from":"26136","_to":"26133"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"38687","_from":"26135","_to":"26133"} +{"$label":"DIRECTED","_key":"38686","_from":"26134","_to":"26133"} +{"$label":"ACTS_IN","name":"Roger Starstruck","type":"Role","_key":"38696","_from":"26144","_to":"26139"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"38695","_from":"26143","_to":"26139"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"38694","_from":"26142","_to":"26139"} +{"$label":"ACTS_IN","name":"Dracula","type":"Role","_key":"38693","_from":"26141","_to":"26139"} +{"$label":"ACTS_IN","name":"Space Star","type":"Role","_key":"38692","_from":"26140","_to":"26139"} +{"$label":"ACTS_IN","name":"Major Tanner","type":"Role","_key":"38703","_from":"26150","_to":"26145"} +{"$label":"ACTS_IN","name":"Kate Mayfield","type":"Role","_key":"38702","_from":"26149","_to":"26145"} +{"$label":"ACTS_IN","name":"Martha Carden","type":"Role","_key":"38701","_from":"26148","_to":"26145"} +{"$label":"ACTS_IN","name":"Paul Cardenas","type":"Role","_key":"38699","_from":"26147","_to":"26145"} +{"$label":"DIRECTED","_key":"38698","_from":"26146","_to":"26145"} +{"$label":"DIRECTED","_key":"104798","_from":"26146","_to":"61650"} +{"$label":"DIRECTED","_key":"103156","_from":"26146","_to":"60676"} +{"$label":"ACTS_IN","name":"Mike Wallace","type":"Role","_key":"117421","_from":"26147","_to":"69060"} +{"$label":"ACTS_IN","name":"Machelli: Cromwell War Chancellor","type":"Role","_key":"97675","_from":"26147","_to":"57516"} +{"$label":"ACTS_IN","name":"Carla G\u00f6teborg","type":"Role","_key":"70753","_from":"26148","_to":"43030"} +{"$label":"ACTS_IN","name":"Duncan Doncaster","type":"Role","_key":"41297","_from":"26150","_to":"27765"} +{"$label":"ACTS_IN","name":"Zlata","type":"Role","_key":"38714","_from":"26158","_to":"26151"} +{"$label":"ACTS_IN","name":"Pavle","type":"Role","_key":"38710","_from":"26157","_to":"26151"} +{"$label":"ACTS_IN","name":"Nicola","type":"Role","_key":"38709","_from":"26156","_to":"26151"} +{"$label":"ACTS_IN","name":"Duro","type":"Role","_key":"38708","_from":"26155","_to":"26151"} +{"$label":"ACTS_IN","name":"Branko","type":"Role","_key":"38707","_from":"26154","_to":"26151"} +{"$label":"ACTS_IN","name":"Zora","type":"Role","_key":"38706","_from":"26153","_to":"26151"} +{"$label":"DIRECTED","_key":"38705","_from":"26152","_to":"26151"} +{"$label":"DIRECTED","_key":"44042","_from":"26152","_to":"29371"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"71762","_from":"26155","_to":"43439"} +{"$label":"ACTS_IN","name":"Janeck (10 Jahre alt)","type":"Role","_key":"47180","_from":"26157","_to":"31101"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"90317","_from":"26158","_to":"53386"} +{"$label":"ACTS_IN","name":"Desk Sergeant","type":"Role","_key":"38731","_from":"26174","_to":"26159"} +{"$label":"ACTS_IN","name":"Trooper","type":"Role","_key":"38730","_from":"26173","_to":"26159"} +{"$label":"ACTS_IN","name":"Goon #2","type":"Role","_key":"38729","_from":"26172","_to":"26159"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"38727","_from":"26171","_to":"26159"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"38726","_from":"26170","_to":"26159"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"38725","_from":"26169","_to":"26159"} +{"$label":"ACTS_IN","name":"Deke","type":"Role","_key":"38724","_from":"26168","_to":"26159"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"38723","_from":"26167","_to":"26159"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"38722","_from":"26166","_to":"26159"} +{"$label":"ACTS_IN","name":"Jefty","type":"Role","_key":"38721","_from":"26165","_to":"26159"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"38720","_from":"26164","_to":"26159"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"38719","_from":"26163","_to":"26159"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"38717","_from":"26162","_to":"26159"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"38716","_from":"26161","_to":"26159"} +{"$label":"DIRECTED","_key":"38715","_from":"26160","_to":"26159"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"38746","_from":"26183","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38740","_from":"26182","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38739","_from":"26181","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38738","_from":"26180","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38737","_from":"26179","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38736","_from":"26178","_to":"26175"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38735","_from":"26177","_to":"26175"} +{"$label":"DIRECTED","_key":"38732","_from":"26176","_to":"26175"} +{"$label":"ACTS_IN","name":"Charly Watt","type":"Role","_key":"39426","_from":"26177","_to":"26650"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38809","_from":"26181","_to":"26215"} +{"$label":"ACTS_IN","name":"Full-Figured Neighbor","type":"Role","_key":"101320","_from":"26183","_to":"59645"} +{"$label":"ACTS_IN","name":"Princess Diana aka Wonderwoman","type":"Role","_key":"38750","_from":"26187","_to":"26184"} +{"$label":"ACTS_IN","name":"Major Steven Leonard \"Steve\" Trevor","type":"Role","_key":"38749","_from":"26186","_to":"26184"} +{"$label":"DIRECTED","_key":"38748","_from":"26185","_to":"26184"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38765","_from":"26193","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38763","_from":"26192","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38762","_from":"26191","_to":"26188"} +{"$label":"ACTS_IN","name":"himsekf","type":"Role","_key":"38761","_from":"26190","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38759","_from":"26189","_to":"26188"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38768","_from":"26196","_to":"26194"} +{"$label":"DIRECTED","_key":"38766","_from":"26195","_to":"26194"} +{"$label":"DIRECTED","_key":"38780","_from":"26202","_to":"26197"} +{"$label":"ACTS_IN","name":"Steve Morris","type":"Role","_key":"38778","_from":"26201","_to":"26197"} +{"$label":"ACTS_IN","name":"Tony Wilson","type":"Role","_key":"38777","_from":"26200","_to":"26197"} +{"$label":"ACTS_IN","name":"Bernard Sumner","type":"Role","_key":"38775","_from":"26199","_to":"26197"} +{"$label":"ACTS_IN","name":"Ian Curtis","type":"Role","_key":"38771","_from":"26198","_to":"26197"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"51290","_from":"26198","_to":"33450"} +{"$label":"ACTS_IN","name":"Doon Harrow","type":"Role","_key":"95376","_from":"26201","_to":"56102"} +{"$label":"ACTS_IN","name":"Lifescenes Magazine","type":"Role","_key":"38806","_from":"26214","_to":"26203"} +{"$label":"ACTS_IN","name":"First Lady","type":"Role","_key":"38802","_from":"26213","_to":"26203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38800","_from":"26212","_to":"26203"} +{"$label":"ACTS_IN","name":"Nutte","type":"Role","_key":"38799","_from":"26211","_to":"26203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38797","_from":"26210","_to":"26203"} +{"$label":"ACTS_IN","name":"Capt. Nelson","type":"Role","_key":"38793","_from":"26209","_to":"26203"} +{"$label":"ACTS_IN","name":"Floor Manager","type":"Role","_key":"38789","_from":"26208","_to":"26203"} +{"$label":"ACTS_IN","name":"Weatherperson","type":"Role","_key":"38788","_from":"26207","_to":"26203"} +{"$label":"ACTS_IN","name":"Taryn Steele","type":"Role","_key":"38787","_from":"26206","_to":"26203"} +{"$label":"ACTS_IN","name":"Apartment Victim","type":"Role","_key":"38786","_from":"26205","_to":"26203"} +{"$label":"DIRECTED","_key":"38785","_from":"26204","_to":"26203"} +{"$label":"ACTS_IN","name":"Captain Crothers (voice)","type":"Role","_key":"94088","_from":"26205","_to":"55405"} +{"$label":"ACTS_IN","name":"Semmi \/ Extremely Ugly Girl \/ Morris \/ Reverend Brown","type":"Role","_key":"54956","_from":"26205","_to":"35132"} +{"$label":"ACTS_IN","name":"Clint Burton","type":"Role","_key":"116894","_from":"26209","_to":"68818"} +{"$label":"ACTS_IN","name":"General Sline","type":"Role","_key":"52443","_from":"26209","_to":"34119"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63997","_from":"26210","_to":"39959"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38818","_from":"26223","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38816","_from":"26222","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38815","_from":"26221","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38814","_from":"26220","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38813","_from":"26219","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38811","_from":"26218","_to":"26215"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38810","_from":"26217","_to":"26215"} +{"$label":"DIRECTED","_key":"38808","_from":"26216","_to":"26215"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88515","_from":"26218","_to":"52461"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38842","_from":"26237","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38841","_from":"26236","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38840","_from":"26235","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38839","_from":"26234","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38836","_from":"26233","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38835","_from":"26232","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38834","_from":"26231","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38832","_from":"26230","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38831","_from":"26229","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38830","_from":"26228","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38826","_from":"26227","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38825","_from":"26226","_to":"26224"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"38822","_from":"26225","_to":"26224"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"38852","_from":"26243","_to":"26238"} +{"$label":"ACTS_IN","name":"Consul Metellus","type":"Role","_key":"38850","_from":"26242","_to":"26238"} +{"$label":"ACTS_IN","name":"Livia","type":"Role","_key":"38849","_from":"26241","_to":"26238"} +{"$label":"ACTS_IN","name":"Spartacus","type":"Role","_key":"38846","_from":"26240","_to":"26238"} +{"$label":"DIRECTED","_key":"38845","_from":"26239","_to":"26238"} +{"$label":"DIRECTED","_key":"44327","_from":"26239","_to":"29543"} +{"$label":"ACTS_IN","name":"Steven Smith","type":"Role","_key":"38858","_from":"26240","_to":"26244"} +{"$label":"ACTS_IN","name":"Barton","type":"Role","_key":"44304","_from":"26242","_to":"29525"} +{"$label":"ACTS_IN","name":"Eric Boggs","type":"Role","_key":"38862","_from":"26247","_to":"26244"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"38859","_from":"26246","_to":"26244"} +{"$label":"DIRECTED","_key":"38853","_from":"26245","_to":"26244"} +{"$label":"ACTS_IN","name":"Frau Grobeck","type":"Role","_key":"38869","_from":"26254","_to":"26248"} +{"$label":"ACTS_IN","name":"Grobek","type":"Role","_key":"38868","_from":"26253","_to":"26248"} +{"$label":"ACTS_IN","name":"Andrea Rykalla","type":"Role","_key":"38867","_from":"26252","_to":"26248"} +{"$label":"ACTS_IN","name":"Opa Rykalla","type":"Role","_key":"38866","_from":"26251","_to":"26248"} +{"$label":"ACTS_IN","name":"Franz Rykalla","type":"Role","_key":"38865","_from":"26250","_to":"26248"} +{"$label":"ACTS_IN","name":"Elvira Rykalla","type":"Role","_key":"38864","_from":"26249","_to":"26248"} +{"$label":"ACTS_IN","name":"Helga Beimer","type":"Role","_key":"42404","_from":"26249","_to":"28380"} +{"$label":"ACTS_IN","name":"Marjan","type":"Role","_key":"39025","_from":"26249","_to":"26375"} +{"$label":"DIRECTED","_key":"38876","_from":"26261","_to":"26255"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"38875","_from":"26260","_to":"26255"} +{"$label":"ACTS_IN","name":"Noori","type":"Role","_key":"38874","_from":"26259","_to":"26255"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"38873","_from":"26258","_to":"26255"} +{"$label":"ACTS_IN","name":"Manish","type":"Role","_key":"38872","_from":"26257","_to":"26255"} +{"$label":"ACTS_IN","name":"Mohammad","type":"Role","_key":"38871","_from":"26256","_to":"26255"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"104906","_from":"26260","_to":"61730"} +{"$label":"DIRECTED","_key":"104909","_from":"26261","_to":"61730"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"38889","_from":"26273","_to":"26262"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"38888","_from":"26272","_to":"26262"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"38887","_from":"26271","_to":"26262"} +{"$label":"ACTS_IN","name":"McDonald\u00b4s Customer","type":"Role","_key":"38886","_from":"26270","_to":"26262"} +{"$label":"ACTS_IN","name":"Applebee\u00b4s Manager","type":"Role","_key":"38885","_from":"26269","_to":"26262"} +{"$label":"ACTS_IN","name":"McDonald\u00b4s Manager","type":"Role","_key":"38884","_from":"26268","_to":"26262"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"38883","_from":"26267","_to":"26262"} +{"$label":"ACTS_IN","name":"Pepper","type":"Role","_key":"38882","_from":"26266","_to":"26262"} +{"$label":"DIRECTED","_key":"38879","_from":"26265","_to":"26262"} +{"$label":"DIRECTED","_key":"38878","_from":"26264","_to":"26262"} +{"$label":"DIRECTED","_key":"38877","_from":"26263","_to":"26262"} +{"$label":"ACTS_IN","name":"Katie Rogers","type":"Role","_key":"105204","_from":"26267","_to":"61913"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"61158","_from":"26267","_to":"38646"} +{"$label":"ACTS_IN","name":"Alex Romero","type":"Role","_key":"108905","_from":"26268","_to":"64360"} +{"$label":"ACTS_IN","name":"Alice Cullen","type":"Role","_key":"115487","_from":"26270","_to":"67997"} +{"$label":"ACTS_IN","name":"Alice Cullen","type":"Role","_key":"51739","_from":"26270","_to":"33761"} +{"$label":"ACTS_IN","name":"Sister Hanson","type":"Role","_key":"38901","_from":"26280","_to":"26274"} +{"$label":"ACTS_IN","name":"Injoys","type":"Role","_key":"38897","_from":"26279","_to":"26274"} +{"$label":"ACTS_IN","name":"Clara Belle","type":"Role","_key":"38896","_from":"26278","_to":"26274"} +{"$label":"ACTS_IN","name":"Eule","type":"Role","_key":"38894","_from":"26277","_to":"26274"} +{"$label":"ACTS_IN","name":"Hannah Brenshaw","type":"Role","_key":"38892","_from":"26276","_to":"26274"} +{"$label":"ACTS_IN","name":"Sidney Brenshaw","type":"Role","_key":"38891","_from":"26275","_to":"26274"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"39094","_from":"26275","_to":"26427"} +{"$label":"ACTS_IN","name":"Lorna","type":"Role","_key":"39091","_from":"26278","_to":"26427"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39002","_from":"26278","_to":"26345"} +{"$label":"ACTS_IN","name":"Gail Maddox","type":"Role","_key":"38917","_from":"26292","_to":"26281"} +{"$label":"ACTS_IN","name":"Slick","type":"Role","_key":"38916","_from":"26291","_to":"26281"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"38915","_from":"26290","_to":"26281"} +{"$label":"ACTS_IN","name":"Brahmin","type":"Role","_key":"38914","_from":"26289","_to":"26281"} +{"$label":"ACTS_IN","name":"Jessica Fannin","type":"Role","_key":"38912","_from":"26288","_to":"26281"} +{"$label":"ACTS_IN","name":"Harry Bonner","type":"Role","_key":"38910","_from":"26287","_to":"26281"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"38909","_from":"26286","_to":"26281"} +{"$label":"ACTS_IN","name":"Ambulance Driver","type":"Role","_key":"38908","_from":"26285","_to":"26281"} +{"$label":"ACTS_IN","name":"Franks Frau","type":"Role","_key":"38907","_from":"26284","_to":"26281"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"38906","_from":"26283","_to":"26281"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"38905","_from":"26282","_to":"26281"} +{"$label":"ACTS_IN","name":"Truck driver","type":"Role","_key":"38986","_from":"26285","_to":"26338"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"39170","_from":"26286","_to":"26475"} +{"$label":"ACTS_IN","name":"Ezra","type":"Role","_key":"39096","_from":"26290","_to":"26427"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"38929","_from":"26302","_to":"26293"} +{"$label":"ACTS_IN","name":"Mountie","type":"Role","_key":"38927","_from":"26301","_to":"26293"} +{"$label":"ACTS_IN","name":"O`Bannion","type":"Role","_key":"38926","_from":"26300","_to":"26293"} +{"$label":"ACTS_IN","name":"Dave King","type":"Role","_key":"38925","_from":"26299","_to":"26293"} +{"$label":"ACTS_IN","name":"Janet King","type":"Role","_key":"38924","_from":"26298","_to":"26293"} +{"$label":"ACTS_IN","name":"Judd","type":"Role","_key":"38923","_from":"26297","_to":"26293"} +{"$label":"ACTS_IN","name":"Niles","type":"Role","_key":"38922","_from":"26296","_to":"26293"} +{"$label":"ACTS_IN","name":"Tom Palmer","type":"Role","_key":"38921","_from":"26295","_to":"26293"} +{"$label":"ACTS_IN","name":"Vixen Palmer","type":"Role","_key":"38920","_from":"26294","_to":"26293"} +{"$label":"ACTS_IN","name":"Roxanne","type":"Role","_key":"38939","_from":"26294","_to":"26303"} +{"$label":"ACTS_IN","name":"Fisherman","type":"Role","_key":"38984","_from":"26295","_to":"26338"} +{"$label":"ACTS_IN","name":"Deputy Ben Glover","type":"Role","_key":"58269","_from":"26296","_to":"36848"} +{"$label":"ACTS_IN","name":"Joshua Eldridge","type":"Role","_key":"53636","_from":"26296","_to":"34600"} +{"$label":"ACTS_IN","name":"Emerson Thome","type":"Role","_key":"38941","_from":"26296","_to":"26303"} +{"$label":"ACTS_IN","name":"Susan Lake","type":"Role","_key":"38940","_from":"26310","_to":"26303"} +{"$label":"ACTS_IN","name":"Ashley St. Ivens","type":"Role","_key":"38938","_from":"26309","_to":"26303"} +{"$label":"ACTS_IN","name":"Harris Allsworth","type":"Role","_key":"38937","_from":"26308","_to":"26303"} +{"$label":"ACTS_IN","name":"Ronnie Z-Man Barzell","type":"Role","_key":"38936","_from":"26307","_to":"26303"} +{"$label":"ACTS_IN","name":"Petronella Danforth","type":"Role","_key":"38935","_from":"26306","_to":"26303"} +{"$label":"ACTS_IN","name":"Casey Anderson","type":"Role","_key":"38934","_from":"26305","_to":"26303"} +{"$label":"ACTS_IN","name":"Kelly McNamara","type":"Role","_key":"38933","_from":"26304","_to":"26303"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39509","_from":"26309","_to":"26693"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39399","_from":"26309","_to":"26628"} +{"$label":"ACTS_IN","name":"Faye Osborn","type":"Role","_key":"39141","_from":"26309","_to":"26456"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39384","_from":"26310","_to":"26628"} +{"$label":"ACTS_IN","name":"Ex Girlfriend","type":"Role","_key":"38957","_from":"26323","_to":"26311"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"38956","_from":"26322","_to":"26311"} +{"$label":"ACTS_IN","name":"Heroin Addict","type":"Role","_key":"38955","_from":"26321","_to":"26311"} +{"$label":"ACTS_IN","name":"Girl's Mother","type":"Role","_key":"38954","_from":"26320","_to":"26311"} +{"$label":"ACTS_IN","name":"Guy's Dad","type":"Role","_key":"38953","_from":"26319","_to":"26311"} +{"$label":"ACTS_IN","name":"Eamon","type":"Role","_key":"38952","_from":"26318","_to":"26311"} +{"$label":"ACTS_IN","name":"Bassist","type":"Role","_key":"38951","_from":"26317","_to":"26311"} +{"$label":"ACTS_IN","name":"Lead Guitarist","type":"Role","_key":"38950","_from":"26316","_to":"26311"} +{"$label":"ACTS_IN","name":"Timmy Drummer","type":"Role","_key":"38949","_from":"26315","_to":"26311"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"38948","_from":"26314","_to":"26311"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"38947","_from":"26313","_to":"26311"} +{"$label":"DIRECTED","_key":"38946","_from":"26312","_to":"26311"} +{"$label":"ACTS_IN","name":"Louis Vass\u00e9","type":"Role","_key":"38972","_from":"26337","_to":"26324"} +{"$label":"ACTS_IN","name":"Val\u00e9rie Vass\u00e9","type":"Role","_key":"38971","_from":"26336","_to":"26324"} +{"$label":"ACTS_IN","name":"Phillipe Vass\u00e9","type":"Role","_key":"38970","_from":"26335","_to":"26324"} +{"$label":"ACTS_IN","name":"J.T. (1,5 Jahre)","type":"Role","_key":"38969","_from":"26334","_to":"26324"} +{"$label":"ACTS_IN","name":"J.T. (2 Jahre)","type":"Role","_key":"38968","_from":"26333","_to":"26324"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"38967","_from":"26332","_to":"26324"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"38966","_from":"26331","_to":"26324"} +{"$label":"ACTS_IN","name":"Isa","type":"Role","_key":"38965","_from":"26330","_to":"26324"} +{"$label":"ACTS_IN","name":"J\u00e9rome Vass\u00e9","type":"Role","_key":"38964","_from":"26329","_to":"26324"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"38963","_from":"26328","_to":"26324"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"38961","_from":"26327","_to":"26324"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"38960","_from":"26326","_to":"26324"} +{"$label":"DIRECTED","_key":"38958","_from":"26325","_to":"26324"} +{"$label":"ACTS_IN","name":"Berit K\u00f6ster","type":"Role","_key":"72766","_from":"26326","_to":"43838"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42610","_from":"26328","_to":"28516"} +{"$label":"ACTS_IN","name":"Jean-Do Paoli","type":"Role","_key":"106444","_from":"26329","_to":"62707"} +{"$label":"ACTS_IN","name":"Jacques l'impr\u00e9sario","type":"Role","_key":"100164","_from":"26329","_to":"59082"} +{"$label":"ACTS_IN","name":"Jean-Claude","type":"Role","_key":"72983","_from":"26329","_to":"43926"} +{"$label":"ACTS_IN","name":"Policier","type":"Role","_key":"70150","_from":"26329","_to":"42759"} +{"$label":"ACTS_IN","name":"Patron","type":"Role","_key":"70142","_from":"26329","_to":"42757"} +{"$label":"ACTS_IN","name":"Marchand","type":"Role","_key":"42231","_from":"26329","_to":"28283"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"70147","_from":"26337","_to":"42759"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"38983","_from":"26344","_to":"26338"} +{"$label":"ACTS_IN","name":"Super Eule","type":"Role","_key":"38981","_from":"26343","_to":"26338"} +{"$label":"ACTS_IN","name":"Super Lorna","type":"Role","_key":"38979","_from":"26342","_to":"26338"} +{"$label":"ACTS_IN","name":"Martin Bormann","type":"Role","_key":"38978","_from":"26341","_to":"26338"} +{"$label":"ACTS_IN","name":"Super Angel","type":"Role","_key":"38976","_from":"26340","_to":"26338"} +{"$label":"ACTS_IN","name":"Clint Ramsey","type":"Role","_key":"38974","_from":"26339","_to":"26338"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39001","_from":"26359","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39000","_from":"26358","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38999","_from":"26357","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38998","_from":"26356","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38997","_from":"26355","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38996","_from":"26354","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38995","_from":"26353","_to":"26345"} +{"$label":"ACTS_IN","name":"Xciting","type":"Role","_key":"38994","_from":"26352","_to":"26345"} +{"$label":"ACTS_IN","name":"Delicious","type":"Role","_key":"38993","_from":"26351","_to":"26345"} +{"$label":"ACTS_IN","name":"Yummy","type":"Role","_key":"38992","_from":"26350","_to":"26345"} +{"$label":"ACTS_IN","name":"Buxotic","type":"Role","_key":"38991","_from":"26349","_to":"26345"} +{"$label":"ACTS_IN","name":"Lucious","type":"Role","_key":"38990","_from":"26348","_to":"26345"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"38989","_from":"26347","_to":"26345"} +{"$label":"ACTS_IN","name":"Bouncy","type":"Role","_key":"38988","_from":"26346","_to":"26345"} +{"$label":"ACTS_IN","name":"Babette","type":"Role","_key":"39171","_from":"26346","_to":"26475"} +{"$label":"DIRECTED","_key":"39018","_from":"26374","_to":"26360"} +{"$label":"ACTS_IN","name":"Newspaper publisher","type":"Role","_key":"39017","_from":"26373","_to":"26360"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"39016","_from":"26372","_to":"26360"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"39015","_from":"26371","_to":"26360"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"39014","_from":"26370","_to":"26360"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"39013","_from":"26369","_to":"26360"} +{"$label":"ACTS_IN","name":"Chirurg","type":"Role","_key":"39012","_from":"26368","_to":"26360"} +{"$label":"ACTS_IN","name":"Miss Parker","type":"Role","_key":"39011","_from":"26367","_to":"26360"} +{"$label":"ACTS_IN","name":"Agent","type":"Role","_key":"39010","_from":"26366","_to":"26360"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"39009","_from":"26365","_to":"26360"} +{"$label":"ACTS_IN","name":"Flo Brown","type":"Role","_key":"39008","_from":"26364","_to":"26360"} +{"$label":"ACTS_IN","name":"Dr. Kovacz","type":"Role","_key":"39007","_from":"26363","_to":"26360"} +{"$label":"ACTS_IN","name":"Dr. Martin","type":"Role","_key":"39006","_from":"26362","_to":"26360"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"39005","_from":"26361","_to":"26360"} +{"$label":"ACTS_IN","name":"Maj. Gen. George Treeger","type":"Role","_key":"45518","_from":"26362","_to":"30146"} +{"$label":"ACTS_IN","name":"Sinan","type":"Role","_key":"46941","_from":"26371","_to":"30954"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"39028","_from":"26381","_to":"26375"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"39027","_from":"26380","_to":"26375"} +{"$label":"ACTS_IN","name":"Zigeunerin","type":"Role","_key":"39026","_from":"26379","_to":"26375"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"39023","_from":"26378","_to":"26375"} +{"$label":"ACTS_IN","name":"Dr. Laura","type":"Role","_key":"39021","_from":"26377","_to":"26375"} +{"$label":"DIRECTED","_key":"39019","_from":"26376","_to":"26375"} +{"$label":"DIRECTED","_key":"89392","_from":"26376","_to":"52915"} +{"$label":"ACTS_IN","name":"Magdalene Fuller","type":"Role","_key":"61903","_from":"26377","_to":"38955"} +{"$label":"ACTS_IN","name":"Lily Brest","type":"Role","_key":"61839","_from":"26377","_to":"38929"} +{"$label":"ACTS_IN","name":"Herzog von Blangis","type":"Role","_key":"39034","_from":"26384","_to":"26382"} +{"$label":"ACTS_IN","name":"Anf\u00fchrer der M\u00e4nner im Landhaus","type":"Role","_key":"39033","_from":"26383","_to":"26382"} +{"$label":"ACTS_IN","name":"Beverley","type":"Role","_key":"39042","_from":"26391","_to":"26385"} +{"$label":"ACTS_IN","name":"Trooper Moore","type":"Role","_key":"39041","_from":"26390","_to":"26385"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"39039","_from":"26389","_to":"26385"} +{"$label":"ACTS_IN","name":"Paul Melford","type":"Role","_key":"39038","_from":"26388","_to":"26385"} +{"$label":"ACTS_IN","name":"Cal Kincaid","type":"Role","_key":"39037","_from":"26387","_to":"26385"} +{"$label":"DIRECTED","_key":"39035","_from":"26386","_to":"26385"} +{"$label":"ACTS_IN","name":"Capt. Cyrus Harding","type":"Role","_key":"118398","_from":"26388","_to":"69604"} +{"$label":"ACTS_IN","name":"Caine Cordeaux","type":"Role","_key":"39052","_from":"26389","_to":"26399"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"39044","_from":"26389","_to":"26392"} +{"$label":"ACTS_IN","name":"Dobkin","type":"Role","_key":"54872","_from":"26390","_to":"35091"} +{"$label":"ACTS_IN","name":"Giuseppe","type":"Role","_key":"39050","_from":"26398","_to":"26392"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"39049","_from":"26397","_to":"26392"} +{"$label":"ACTS_IN","name":"Caroline's Father","type":"Role","_key":"39048","_from":"26396","_to":"26392"} +{"$label":"ACTS_IN","name":"Boo","type":"Role","_key":"39047","_from":"26395","_to":"26392"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"39045","_from":"26394","_to":"26392"} +{"$label":"DIRECTED","_key":"39043","_from":"26393","_to":"26392"} +{"$label":"ACTS_IN","name":"Mick Taylor","type":"Role","_key":"57602","_from":"26394","_to":"36474"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107959","_from":"26395","_to":"63755"} +{"$label":"ACTS_IN","name":"Harry M. Miller","type":"Role","_key":"97436","_from":"26395","_to":"57379"} +{"$label":"ACTS_IN","name":"Jim Goose, Main Force Patrol Officer","type":"Role","_key":"55367","_from":"26395","_to":"35296"} +{"$label":"ACTS_IN","name":"the Ranger","type":"Role","_key":"39059","_from":"26407","_to":"26399"} +{"$label":"ACTS_IN","name":"Billy Cordeaux","type":"Role","_key":"39058","_from":"26406","_to":"26399"} +{"$label":"ACTS_IN","name":"Davey-Joe Cordeaux","type":"Role","_key":"39057","_from":"26405","_to":"26399"} +{"$label":"ACTS_IN","name":"Dianne Cordeaux","type":"Role","_key":"39056","_from":"26404","_to":"26399"} +{"$label":"ACTS_IN","name":"Sole","type":"Role","_key":"39055","_from":"26403","_to":"26399"} +{"$label":"ACTS_IN","name":"Muriel Cordeaux","type":"Role","_key":"39054","_from":"26402","_to":"26399"} +{"$label":"ACTS_IN","name":"Alex Cordeaux","type":"Role","_key":"39053","_from":"26401","_to":"26399"} +{"$label":"DIRECTED","_key":"39051","_from":"26400","_to":"26399"} +{"$label":"ACTS_IN","name":"Brennan","type":"Role","_key":"65668","_from":"26407","_to":"40680"} +{"$label":"ACTS_IN","name":"Ormond","type":"Role","_key":"52155","_from":"26407","_to":"33992"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"39069","_from":"26416","_to":"26408"} +{"$label":"ACTS_IN","name":"Dr. Sharon Reynolds","type":"Role","_key":"39068","_from":"26415","_to":"26408"} +{"$label":"ACTS_IN","name":"Prof. Manchen","type":"Role","_key":"39067","_from":"26414","_to":"26408"} +{"$label":"ACTS_IN","name":"Ellen Corman","type":"Role","_key":"39066","_from":"26413","_to":"26408"} +{"$label":"ACTS_IN","name":"D.J.","type":"Role","_key":"39065","_from":"26412","_to":"26408"} +{"$label":"ACTS_IN","name":"Louise Landon","type":"Role","_key":"39064","_from":"26411","_to":"26408"} +{"$label":"ACTS_IN","name":"Ben Murphy","type":"Role","_key":"39063","_from":"26410","_to":"26408"} +{"$label":"ACTS_IN","name":"Kershaw Ellerbe","type":"Role","_key":"39062","_from":"26409","_to":"26408"} +{"$label":"ACTS_IN","name":"Mike Hodgson","type":"Role","_key":"39079","_from":"26410","_to":"26417"} +{"$label":"ACTS_IN","name":"Rula Murphy","type":"Role","_key":"39077","_from":"26415","_to":"26417"} +{"$label":"ACTS_IN","name":"Jack Murphy","type":"Role","_key":"39076","_from":"26423","_to":"26417"} +{"$label":"ACTS_IN","name":"Dr. Williams","type":"Role","_key":"39075","_from":"26422","_to":"26417"} +{"$label":"ACTS_IN","name":"Rieger","type":"Role","_key":"39074","_from":"26421","_to":"26417"} +{"$label":"ACTS_IN","name":"Mitchell Carter","type":"Role","_key":"39073","_from":"26420","_to":"26417"} +{"$label":"ACTS_IN","name":"Lisa Martyn","type":"Role","_key":"39072","_from":"26419","_to":"26417"} +{"$label":"ACTS_IN","name":"General Randolph","type":"Role","_key":"39071","_from":"26418","_to":"26417"} +{"$label":"ACTS_IN","name":"DRAGON Chief","type":"Role","_key":"115595","_from":"26418","_to":"68049"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"40963","_from":"26418","_to":"27561"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"39085","_from":"26425","_to":"26424"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"39095","_from":"26430","_to":"26427"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"39093","_from":"26429","_to":"26427"} +{"$label":"ACTS_IN","name":"The Convict","type":"Role","_key":"39092","_from":"26428","_to":"26427"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"39110","_from":"26437","_to":"26431"} +{"$label":"ACTS_IN","name":"Tankwart","type":"Role","_key":"39109","_from":"26436","_to":"26431"} +{"$label":"ACTS_IN","name":"Millie","type":"Role","_key":"39108","_from":"26435","_to":"26431"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"39105","_from":"26434","_to":"26431"} +{"$label":"ACTS_IN","name":"Cherry","type":"Role","_key":"39103","_from":"26433","_to":"26431"} +{"$label":"ACTS_IN","name":"Raquel","type":"Role","_key":"39102","_from":"26432","_to":"26431"} +{"$label":"ACTS_IN","name":"Horst der Kameramann","type":"Role","_key":"39121","_from":"26448","_to":"26438"} +{"$label":"ACTS_IN","name":"Mann mit dem Schaf","type":"Role","_key":"39120","_from":"26447","_to":"26438"} +{"$label":"ACTS_IN","name":"S\u00f6nke","type":"Role","_key":"39119","_from":"26439","_to":"26438"} +{"$label":"ACTS_IN","name":"Wolters","type":"Role","_key":"39118","_from":"26446","_to":"26438"} +{"$label":"ACTS_IN","name":"Ewa","type":"Role","_key":"39117","_from":"26445","_to":"26438"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"39116","_from":"26444","_to":"26438"} +{"$label":"ACTS_IN","name":"Armin","type":"Role","_key":"39115","_from":"26443","_to":"26438"} +{"$label":"ACTS_IN","name":"Ina","type":"Role","_key":"39114","_from":"26442","_to":"26438"} +{"$label":"ACTS_IN","name":"Veit","type":"Role","_key":"39113","_from":"26441","_to":"26438"} +{"$label":"DIRECTED","_key":"39112","_from":"26440","_to":"26438"} +{"$label":"DIRECTED","_key":"39111","_from":"26439","_to":"26438"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"46813","_from":"26439","_to":"30882"} +{"$label":"ACTS_IN","name":"Hanno","type":"Role","_key":"42379","_from":"26439","_to":"28358"} +{"$label":"ACTS_IN","name":"Gesch\u00e4ftsmann auf dem Klo \/ Hochzeitsgast","type":"Role","_key":"42393","_from":"26440","_to":"28358"} +{"$label":"ACTS_IN","name":"Admiral","type":"Role","_key":"39135","_from":"26455","_to":"26449"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"39133","_from":"26454","_to":"26449"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"39131","_from":"26453","_to":"26449"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"39126","_from":"26452","_to":"26449"} +{"$label":"ACTS_IN","name":"Fanny Hill","type":"Role","_key":"39125","_from":"26451","_to":"26449"} +{"$label":"DIRECTED","_key":"39124","_from":"26450","_to":"26449"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"116906","_from":"26451","_to":"68821"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"55140","_from":"26451","_to":"35195"} +{"$label":"ACTS_IN","name":"Armand Duvalle","type":"Role","_key":"101412","_from":"26455","_to":"59697"} +{"$label":"ACTS_IN","name":"J. Stewart Merrill","type":"Role","_key":"62455","_from":"26455","_to":"39337"} +{"$label":"ACTS_IN","name":"Sheri Moore","type":"Role","_key":"39144","_from":"26461","_to":"26456"} +{"$label":"ACTS_IN","name":"Constance Cumberland","type":"Role","_key":"39142","_from":"26460","_to":"26456"} +{"$label":"ACTS_IN","name":"Elmo Duncan","type":"Role","_key":"39139","_from":"26459","_to":"26456"} +{"$label":"ACTS_IN","name":"Maggie Russell","type":"Role","_key":"39138","_from":"26458","_to":"26456"} +{"$label":"ACTS_IN","name":"Mike Barrett","type":"Role","_key":"39137","_from":"26457","_to":"26456"} +{"$label":"ACTS_IN","name":"Louise Warren","type":"Role","_key":"103777","_from":"26460","_to":"61040"} +{"$label":"ACTS_IN","name":"Sephora","type":"Role","_key":"44955","_from":"26460","_to":"29886"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"39538","_from":"26461","_to":"26717"} +{"$label":"ACTS_IN","name":"Betty Bubbles","type":"Role","_key":"39161","_from":"26474","_to":"26462"} +{"$label":"ACTS_IN","name":"Ruby Rockets","type":"Role","_key":"39160","_from":"26463","_to":"26462"} +{"$label":"ACTS_IN","name":"Schattent\u00e4nzer","type":"Role","_key":"39159","_from":"26473","_to":"26462"} +{"$label":"ACTS_IN","name":"Rancher","type":"Role","_key":"39158","_from":"26472","_to":"26462"} +{"$label":"ACTS_IN","name":"Kitty","type":"Role","_key":"39157","_from":"26471","_to":"26462"} +{"$label":"ACTS_IN","name":"Fluffer","type":"Role","_key":"39155","_from":"26470","_to":"26462"} +{"$label":"ACTS_IN","name":"Hot Rod","type":"Role","_key":"39154","_from":"26469","_to":"26462"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"39153","_from":"26468","_to":"26462"} +{"$label":"ACTS_IN","name":"Big Eagle","type":"Role","_key":"39151","_from":"26467","_to":"26462"} +{"$label":"ACTS_IN","name":"Pussy LaMoore","type":"Role","_key":"39150","_from":"26466","_to":"26462"} +{"$label":"ACTS_IN","name":"Dixie Dee","type":"Role","_key":"39149","_from":"26465","_to":"26462"} +{"$label":"ACTS_IN","name":"Sheriff Snooker \/ Go Go Groupie","type":"Role","_key":"39148","_from":"26464","_to":"26462"} +{"$label":"DIRECTED","_key":"39147","_from":"26463","_to":"26462"} +{"$label":"ACTS_IN","name":"Laurence Talbot","type":"Role","_key":"39167","_from":"26479","_to":"26475"} +{"$label":"ACTS_IN","name":"Coral Hoople","type":"Role","_key":"39166","_from":"26478","_to":"26475"} +{"$label":"ACTS_IN","name":"Sheila Ross","type":"Role","_key":"39164","_from":"26477","_to":"26475"} +{"$label":"ACTS_IN","name":"Barney Rickert","type":"Role","_key":"39163","_from":"26476","_to":"26475"} +{"$label":"ACTS_IN","name":"Angel Boland","type":"Role","_key":"39174","_from":"26477","_to":"26480"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"39182","_from":"26486","_to":"26480"} +{"$label":"ACTS_IN","name":"Nude","type":"Role","_key":"39181","_from":"26485","_to":"26480"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"39179","_from":"26484","_to":"26480"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"39177","_from":"26483","_to":"26480"} +{"$label":"ACTS_IN","name":"Lana Boland","type":"Role","_key":"39175","_from":"26482","_to":"26480"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"39173","_from":"26481","_to":"26480"} +{"$label":"ACTS_IN","name":"Nagumo Jr.","type":"Role","_key":"39191","_from":"26495","_to":"26487"} +{"$label":"ACTS_IN","name":"Nagumo Sr.","type":"Role","_key":"39190","_from":"26494","_to":"26487"} +{"$label":"ACTS_IN","name":"Steiner","type":"Role","_key":"39189","_from":"26493","_to":"26487"} +{"$label":"ACTS_IN","name":"Police Chief","type":"Role","_key":"39188","_from":"26492","_to":"26487"} +{"$label":"ACTS_IN","name":"Collins","type":"Role","_key":"39187","_from":"26491","_to":"26487"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"39186","_from":"26490","_to":"26487"} +{"$label":"ACTS_IN","name":"Akashi","type":"Role","_key":"39185","_from":"26489","_to":"26487"} +{"$label":"ACTS_IN","name":"Mickey ''Mike'' Delano","type":"Role","_key":"39184","_from":"26488","_to":"26487"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"39196","_from":"26488","_to":"26496"} +{"$label":"ACTS_IN","name":"Gabriella","type":"Role","_key":"39203","_from":"26505","_to":"26496"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"39202","_from":"26504","_to":"26496"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"39201","_from":"26503","_to":"26496"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"39200","_from":"26502","_to":"26496"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"39198","_from":"26501","_to":"26496"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"39197","_from":"26500","_to":"26496"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"39195","_from":"26499","_to":"26496"} +{"$label":"ACTS_IN","name":"Chona","type":"Role","_key":"39194","_from":"26498","_to":"26496"} +{"$label":"DIRECTED","_key":"39193","_from":"26497","_to":"26496"} +{"$label":"DIRECTED","_key":"110102","_from":"26497","_to":"65058"} +{"$label":"ACTS_IN","name":"the Boy (older)","type":"Role","_key":"39215","_from":"26518","_to":"26506"} +{"$label":"ACTS_IN","name":"the Boy (young)","type":"Role","_key":"39214","_from":"26517","_to":"26506"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"39213","_from":"26516","_to":"26506"} +{"$label":"ACTS_IN","name":"Lover","type":"Role","_key":"39212","_from":"26515","_to":"26506"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"39211","_from":"26514","_to":"26506"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"39210","_from":"26513","_to":"26506"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"39209","_from":"26512","_to":"26506"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"39208","_from":"26511","_to":"26506"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"39207","_from":"26510","_to":"26506"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"39206","_from":"26509","_to":"26506"} +{"$label":"ACTS_IN","name":"Jonie","type":"Role","_key":"39205","_from":"26508","_to":"26506"} +{"$label":"DIRECTED","_key":"39204","_from":"26507","_to":"26506"} +{"$label":"DIRECTED","_key":"39274","_from":"26507","_to":"26554"} +{"$label":"DIRECTED","_key":"39241","_from":"26507","_to":"26527"} +{"$label":"DIRECTED","_key":"39226","_from":"26507","_to":"26519"} +{"$label":"ACTS_IN","name":"John Phillips","type":"Role","_key":"39263","_from":"26509","_to":"26554"} +{"$label":"ACTS_IN","name":"Howard Hansen","type":"Role","_key":"39255","_from":"26509","_to":"26549"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"39244","_from":"26509","_to":"26539"} +{"$label":"ACTS_IN","name":"Michael \"Mike\" Denton","type":"Role","_key":"39228","_from":"26509","_to":"26527"} +{"$label":"ACTS_IN","name":"Chuck Dawson","type":"Role","_key":"39219","_from":"26509","_to":"26519"} +{"$label":"ACTS_IN","name":"Diane Matthews","type":"Role","_key":"39224","_from":"26526","_to":"26519"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"39223","_from":"26525","_to":"26519"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"39222","_from":"26524","_to":"26519"} +{"$label":"ACTS_IN","name":"Jaimy","type":"Role","_key":"39221","_from":"26523","_to":"26519"} +{"$label":"ACTS_IN","name":"Jimmy Hallik","type":"Role","_key":"39220","_from":"26522","_to":"26519"} +{"$label":"ACTS_IN","name":"Det. Lt. Morgan","type":"Role","_key":"39218","_from":"26521","_to":"26519"} +{"$label":"ACTS_IN","name":"Rhonda Johnson","type":"Role","_key":"39217","_from":"26520","_to":"26519"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"101390","_from":"26520","_to":"59681"} +{"$label":"ACTS_IN","name":"Col. Hogan","type":"Role","_key":"39229","_from":"26521","_to":"26527"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"39245","_from":"26522","_to":"26539"} +{"$label":"ACTS_IN","name":"Lt. Thornton","type":"Role","_key":"39230","_from":"26522","_to":"26527"} +{"$label":"DIRECTED","_key":"39242","_from":"26538","_to":"26527"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"39239","_from":"26537","_to":"26527"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"39238","_from":"26536","_to":"26527"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"39237","_from":"26535","_to":"26527"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"39236","_from":"26534","_to":"26527"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"39235","_from":"26533","_to":"26527"} +{"$label":"ACTS_IN","name":"Hillbillie","type":"Role","_key":"39234","_from":"26532","_to":"26527"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"39233","_from":"26531","_to":"26527"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"39232","_from":"26530","_to":"26527"} +{"$label":"ACTS_IN","name":"Sybil","type":"Role","_key":"39231","_from":"26529","_to":"26527"} +{"$label":"ACTS_IN","name":"Don Michaelson","type":"Role","_key":"39227","_from":"26528","_to":"26527"} +{"$label":"ACTS_IN","name":"Johnny Hunter","type":"Role","_key":"118030","_from":"26528","_to":"69380"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"39268","_from":"26531","_to":"26554"} +{"$label":"ACTS_IN","name":"Actor #1","type":"Role","_key":"39273","_from":"26536","_to":"26554"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"39253","_from":"26548","_to":"26539"} +{"$label":"ACTS_IN","name":"Kimberley","type":"Role","_key":"39252","_from":"26547","_to":"26539"} +{"$label":"ACTS_IN","name":"Dianne","type":"Role","_key":"39251","_from":"26546","_to":"26539"} +{"$label":"ACTS_IN","name":"Deputy Johnson","type":"Role","_key":"39250","_from":"26545","_to":"26539"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"39249","_from":"26544","_to":"26539"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"39248","_from":"26543","_to":"26539"} +{"$label":"ACTS_IN","name":"Trapper","type":"Role","_key":"39247","_from":"26542","_to":"26539"} +{"$label":"ACTS_IN","name":"Sheriff Stone","type":"Role","_key":"39246","_from":"26541","_to":"26539"} +{"$label":"DIRECTED","_key":"39243","_from":"26540","_to":"26539"} +{"$label":"ACTS_IN","name":"Schumacher","type":"Role","_key":"95028","_from":"26541","_to":"55943"} +{"$label":"ACTS_IN","name":"Trina","type":"Role","_key":"39262","_from":"26553","_to":"26549"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"39260","_from":"26552","_to":"26549"} +{"$label":"ACTS_IN","name":"Carol McKay","type":"Role","_key":"39257","_from":"26551","_to":"26549"} +{"$label":"ACTS_IN","name":"Peggy Hansen","type":"Role","_key":"39256","_from":"26550","_to":"26549"} +{"$label":"ACTS_IN","name":"Queen Gedren","type":"Role","_key":"55133","_from":"26550","_to":"35194"} +{"$label":"ACTS_IN","name":"Valeria","type":"Role","_key":"53525","_from":"26550","_to":"34556"} +{"$label":"ACTS_IN","name":"Amanda Finch","type":"Role","_key":"56688","_from":"26551","_to":"35999"} +{"$label":"ACTS_IN","name":"Det. DeMarco","type":"Role","_key":"58292","_from":"26553","_to":"36857"} +{"$label":"ACTS_IN","name":"Barbara Phillips","type":"Role","_key":"58267","_from":"26553","_to":"36848"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"39272","_from":"26557","_to":"26554"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"39271","_from":"26556","_to":"26554"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"39270","_from":"26555","_to":"26554"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"39291","_from":"26574","_to":"26558"} +{"$label":"ACTS_IN","name":"Thom","type":"Role","_key":"39290","_from":"26573","_to":"26558"} +{"$label":"ACTS_IN","name":"Jimmy Morgan","type":"Role","_key":"39289","_from":"26572","_to":"26558"} +{"$label":"ACTS_IN","name":"Buck Hallren","type":"Role","_key":"39288","_from":"26571","_to":"26558"} +{"$label":"ACTS_IN","name":"Pledge Cartwright","type":"Role","_key":"39287","_from":"26570","_to":"26558"} +{"$label":"ACTS_IN","name":"Dr. Marsha Demarkey","type":"Role","_key":"39286","_from":"26569","_to":"26558"} +{"$label":"ACTS_IN","name":"Ed, the photographer","type":"Role","_key":"39285","_from":"26568","_to":"26558"} +{"$label":"ACTS_IN","name":"Howie Diadone","type":"Role","_key":"39284","_from":"26567","_to":"26558"} +{"$label":"ACTS_IN","name":"Betty Levy","type":"Role","_key":"39283","_from":"26566","_to":"26558"} +{"$label":"ACTS_IN","name":"Kelly Bound","type":"Role","_key":"39282","_from":"26565","_to":"26558"} +{"$label":"ACTS_IN","name":"Mike Miller","type":"Role","_key":"39281","_from":"26564","_to":"26558"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"39280","_from":"26563","_to":"26558"} +{"$label":"ACTS_IN","name":"Ken Shafer","type":"Role","_key":"39279","_from":"26562","_to":"26558"} +{"$label":"ACTS_IN","name":"Tammy Shafer","type":"Role","_key":"39278","_from":"26561","_to":"26558"} +{"$label":"ACTS_IN","name":"Angela Lucassy","type":"Role","_key":"39277","_from":"26560","_to":"26558"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"39276","_from":"26559","_to":"26558"} +{"$label":"DIRECTED","_key":"39275","_from":"26559","_to":"26558"} +{"$label":"DIRECTED","_key":"39303","_from":"26559","_to":"26583"} +{"$label":"ACTS_IN","name":"The Landlady","type":"Role","_key":"53927","_from":"26560","_to":"34703"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"51214","_from":"26565","_to":"33397"} +{"$label":"ACTS_IN","name":"Ticket Taker","type":"Role","_key":"95085","_from":"26569","_to":"55965"} +{"$label":"ACTS_IN","name":"Lindus","type":"Role","_key":"61739","_from":"26570","_to":"38878"} +{"$label":"DIRECTED","_key":"39302","_from":"26582","_to":"26576"} +{"$label":"DIRECTED","_key":"39301","_from":"26581","_to":"26576"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"39300","_from":"26580","_to":"26576"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"39299","_from":"26579","_to":"26576"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"39298","_from":"26578","_to":"26576"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"39297","_from":"26577","_to":"26576"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"39316","_from":"26579","_to":"26592"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"39320","_from":"26582","_to":"26592"} +{"$label":"ACTS_IN","name":"Police-Captain","type":"Role","_key":"39315","_from":"26591","_to":"26583"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"39314","_from":"26590","_to":"26583"} +{"$label":"ACTS_IN","name":"Bobby Ross","type":"Role","_key":"39313","_from":"26589","_to":"26583"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"39311","_from":"26588","_to":"26583"} +{"$label":"ACTS_IN","name":"Tad","type":"Role","_key":"39309","_from":"26587","_to":"26583"} +{"$label":"ACTS_IN","name":"Gill","type":"Role","_key":"39308","_from":"26586","_to":"26583"} +{"$label":"ACTS_IN","name":"Hector Ray","type":"Role","_key":"39305","_from":"26585","_to":"26583"} +{"$label":"ACTS_IN","name":"John Webster","type":"Role","_key":"39304","_from":"26584","_to":"26583"} +{"$label":"ACTS_IN","name":"George Loomis","type":"Role","_key":"121058","_from":"26588","_to":"71095"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"115978","_from":"26588","_to":"68304"} +{"$label":"ACTS_IN","name":"Roger Cobb","type":"Role","_key":"69720","_from":"26588","_to":"42559"} +{"$label":"ACTS_IN","name":"Tommy Ross","type":"Role","_key":"46460","_from":"26588","_to":"30685"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"105663","_from":"26590","_to":"62189"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"91579","_from":"26590","_to":"53984"} +{"$label":"ACTS_IN","name":"Friend at Party","type":"Role","_key":"39326","_from":"26601","_to":"26592"} +{"$label":"ACTS_IN","name":"Guy Who Lays Down","type":"Role","_key":"39325","_from":"26600","_to":"26592"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"39324","_from":"26599","_to":"26592"} +{"$label":"ACTS_IN","name":"Gaby","type":"Role","_key":"39323","_from":"26598","_to":"26592"} +{"$label":"ACTS_IN","name":"Minnie","type":"Role","_key":"39322","_from":"26597","_to":"26592"} +{"$label":"ACTS_IN","name":"Brian Duges","type":"Role","_key":"39321","_from":"26596","_to":"26592"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"39319","_from":"26595","_to":"26592"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"39318","_from":"26594","_to":"26592"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"39317","_from":"26593","_to":"26592"} +{"$label":"ACTS_IN","name":"Bass","type":"Role","_key":"39334","_from":"26607","_to":"26602"} +{"$label":"ACTS_IN","name":"Peter Carlos","type":"Role","_key":"39332","_from":"26606","_to":"26602"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"39331","_from":"26605","_to":"26602"} +{"$label":"ACTS_IN","name":"B. B.","type":"Role","_key":"39330","_from":"26604","_to":"26602"} +{"$label":"DIRECTED","_key":"39328","_from":"26603","_to":"26602"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"119689","_from":"26605","_to":"70295"} +{"$label":"ACTS_IN","name":"Sgt. Longacre","type":"Role","_key":"102606","_from":"26606","_to":"60371"} +{"$label":"ACTS_IN","name":"Camulus","type":"Role","_key":"91913","_from":"26606","_to":"54222"} +{"$label":"ACTS_IN","name":"Lord Maxton","type":"Role","_key":"39339","_from":"26612","_to":"26608"} +{"$label":"ACTS_IN","name":"Dr. Carey Williams","type":"Role","_key":"39338","_from":"26611","_to":"26608"} +{"$label":"ACTS_IN","name":"Sandra Barnes \/ Kia","type":"Role","_key":"39337","_from":"26610","_to":"26608"} +{"$label":"DIRECTED","_key":"39335","_from":"26609","_to":"26608"} +{"$label":"ACTS_IN","name":"Will Scarlett","type":"Role","_key":"39348","_from":"26616","_to":"26613"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"39346","_from":"26615","_to":"26613"} +{"$label":"ACTS_IN","name":"Cardaggian","type":"Role","_key":"39344","_from":"26614","_to":"26613"} +{"$label":"ACTS_IN","name":"Newcaster","type":"Role","_key":"39355","_from":"26618","_to":"26617"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"116637","_from":"26618","_to":"68658"} +{"$label":"ACTS_IN","name":"Pool Player","type":"Role","_key":"106575","_from":"26618","_to":"62801"} +{"$label":"ACTS_IN","name":"Duffy","type":"Role","_key":"45480","_from":"26618","_to":"30131"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"39358","_from":"26620","_to":"26619"} +{"$label":"ACTS_IN","name":"Joanna's Touring-Friend","type":"Role","_key":"39376","_from":"26627","_to":"26621"} +{"$label":"ACTS_IN","name":"Sylvia Obino","type":"Role","_key":"39374","_from":"26626","_to":"26621"} +{"$label":"ACTS_IN","name":"Yvonne de Florac","type":"Role","_key":"39373","_from":"26625","_to":"26621"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"39372","_from":"26624","_to":"26621"} +{"$label":"ACTS_IN","name":"Ruth Manchester","type":"Role","_key":"39371","_from":"26623","_to":"26621"} +{"$label":"ACTS_IN","name":"Cathy Manchester","type":"Role","_key":"39369","_from":"26622","_to":"26621"} +{"$label":"ACTS_IN","name":"Miss Minchin","type":"Role","_key":"118703","_from":"26622","_to":"69800"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"115340","_from":"26622","_to":"67907"} +{"$label":"ACTS_IN","name":"Ahme","type":"Role","_key":"101937","_from":"26622","_to":"59994"} +{"$label":"ACTS_IN","name":"Lady Wexmire","type":"Role","_key":"100624","_from":"26622","_to":"59333"} +{"$label":"ACTS_IN","name":"Mrs. Musgrove","type":"Role","_key":"110900","_from":"26624","_to":"65506"} +{"$label":"ACTS_IN","name":"Anya Claus","type":"Role","_key":"96223","_from":"26624","_to":"56557"} +{"$label":"ACTS_IN","name":"Girl Victim","type":"Role","_key":"39401","_from":"26640","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39398","_from":"26639","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39397","_from":"26638","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39396","_from":"26637","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39394","_from":"26636","_to":"26628"} +{"$label":"ACTS_IN","name":"Himself (Archive Footage)","type":"Role","_key":"39393","_from":"26635","_to":"26628"} +{"$label":"ACTS_IN","name":"Himself (Archive Footage)","type":"Role","_key":"39392","_from":"26634","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39391","_from":"26633","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39390","_from":"26632","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39388","_from":"26631","_to":"26628"} +{"$label":"ACTS_IN","name":"Herself (Archive Footage)","type":"Role","_key":"39381","_from":"26630","_to":"26628"} +{"$label":"DIRECTED","_key":"39377","_from":"26629","_to":"26628"} +{"$label":"DIRECTED","_key":"39489","_from":"26629","_to":"26693"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39491","_from":"26630","_to":"26693"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39498","_from":"26631","_to":"26693"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"95264","_from":"26632","_to":"56053"} +{"$label":"ACTS_IN","name":"Solange Beauregard","type":"Role","_key":"44224","_from":"26633","_to":"29470"} +{"$label":"ACTS_IN","name":"Peter West","type":"Role","_key":"45991","_from":"26634","_to":"30401"} +{"$label":"ACTS_IN","name":"Dr. Peter Chandler","type":"Role","_key":"45963","_from":"26634","_to":"30388"} +{"$label":"ACTS_IN","name":"Dolemite","type":"Role","_key":"119080","_from":"26635","_to":"69995"} +{"$label":"ACTS_IN","name":"Nate","type":"Role","_key":"116118","_from":"26635","_to":"68369"} +{"$label":"ACTS_IN","name":"Dolemite","type":"Role","_key":"102890","_from":"26635","_to":"60520"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39503","_from":"26637","_to":"26693"} +{"$label":"ACTS_IN","name":"Doreen","type":"Role","_key":"116736","_from":"26639","_to":"68714"} +{"$label":"ACTS_IN","name":"Laura Charles","type":"Role","_key":"97580","_from":"26639","_to":"57459"} +{"$label":"ACTS_IN","name":"Sydney Ash","type":"Role","_key":"60935","_from":"26639","_to":"38504"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39506","_from":"26639","_to":"26693"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39499","_from":"26640","_to":"26693"} +{"$label":"ACTS_IN","name":"Squire Allworthy","type":"Role","_key":"39409","_from":"26645","_to":"26641"} +{"$label":"ACTS_IN","name":"Molly Seagrim","type":"Role","_key":"39408","_from":"26644","_to":"26641"} +{"$label":"ACTS_IN","name":"Lady Bellaston","type":"Role","_key":"39407","_from":"26643","_to":"26641"} +{"$label":"ACTS_IN","name":"Miss Western","type":"Role","_key":"39406","_from":"26642","_to":"26641"} +{"$label":"ACTS_IN","name":"Dowager Queen","type":"Role","_key":"107857","_from":"26642","_to":"63696"} +{"$label":"ACTS_IN","name":"Ghost of Christmas Past","type":"Role","_key":"96227","_from":"26642","_to":"56558"} +{"$label":"ACTS_IN","name":"Lady Mary Fairchild","type":"Role","_key":"118399","_from":"26643","_to":"69604"} +{"$label":"ACTS_IN","name":"Peggy Macroon","type":"Role","_key":"109799","_from":"26643","_to":"64855"} +{"$label":"ACTS_IN","name":"Miss Rose","type":"Role","_key":"108609","_from":"26644","_to":"64180"} +{"$label":"ACTS_IN","name":"la bonne","type":"Role","_key":"39422","_from":"26648","_to":"26646"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"39421","_from":"26647","_to":"26646"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"39433","_from":"26655","_to":"26650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39431","_from":"26654","_to":"26650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39430","_from":"26653","_to":"26650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39428","_from":"26652","_to":"26650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39427","_from":"26651","_to":"26650"} +{"$label":"ACTS_IN","name":"Film Direktor","type":"Role","_key":"39437","_from":"26660","_to":"26656"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"39436","_from":"26659","_to":"26656"} +{"$label":"DIRECTED","_key":"39435","_from":"26658","_to":"26656"} +{"$label":"DIRECTED","_key":"39434","_from":"26657","_to":"26656"} +{"$label":"DIRECTED","_key":"39440","_from":"26662","_to":"26661"} +{"$label":"ACTS_IN","name":"Mr. Allen","type":"Role","_key":"39455","_from":"26673","_to":"26663"} +{"$label":"ACTS_IN","name":"Algona","type":"Role","_key":"39454","_from":"26672","_to":"26663"} +{"$label":"ACTS_IN","name":"Kenya Adler","type":"Role","_key":"39453","_from":"26671","_to":"26663"} +{"$label":"ACTS_IN","name":"Stanley Livingston","type":"Role","_key":"39452","_from":"26670","_to":"26663"} +{"$label":"ACTS_IN","name":"Tender Lee","type":"Role","_key":"39451","_from":"26669","_to":"26663"} +{"$label":"ACTS_IN","name":"Doris Matthews","type":"Role","_key":"39450","_from":"26668","_to":"26663"} +{"$label":"ACTS_IN","name":"Max Matthews","type":"Role","_key":"39449","_from":"26667","_to":"26663"} +{"$label":"ACTS_IN","name":"Jane Sommers","type":"Role","_key":"39448","_from":"26666","_to":"26663"} +{"$label":"ACTS_IN","name":"Hamilton Hornee","type":"Role","_key":"39447","_from":"26665","_to":"26663"} +{"$label":"DIRECTED","_key":"39445","_from":"26664","_to":"26663"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39456","_from":"26675","_to":"26674"} +{"$label":"DIRECTED","_key":"39459","_from":"26677","_to":"26676"} +{"$label":"ACTS_IN","name":"Farmer's Wife","type":"Role","_key":"39473","_from":"26681","_to":"26678"} +{"$label":"ACTS_IN","name":"Heinrich Gerhard","type":"Role","_key":"39466","_from":"26680","_to":"26678"} +{"$label":"ACTS_IN","name":"Countess Kuchinska","type":"Role","_key":"39465","_from":"26679","_to":"26678"} +{"$label":"ACTS_IN","name":"Madame Hortense","type":"Role","_key":"64460","_from":"26679","_to":"40162"} +{"$label":"ACTS_IN","name":"Hans Boeckel","type":"Role","_key":"45057","_from":"26680","_to":"29929"} +{"$label":"ACTS_IN","name":"Hein Jensen","type":"Role","_key":"39973","_from":"26680","_to":"27002"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"39485","_from":"26689","_to":"26683"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"39484","_from":"26688","_to":"26683"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"39483","_from":"26687","_to":"26683"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"39482","_from":"26686","_to":"26683"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"39481","_from":"26685","_to":"26683"} +{"$label":"DIRECTED","_key":"39480","_from":"26684","_to":"26683"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41973","_from":"26685","_to":"28127"} +{"$label":"ACTS_IN","name":"Mr. J.C. Kettering","type":"Role","_key":"121730","_from":"26689","_to":"71514"} +{"$label":"ACTS_IN","name":"Tallis","type":"Role","_key":"101781","_from":"26689","_to":"59899"} +{"$label":"ACTS_IN","name":"Der Mann","type":"Role","_key":"39488","_from":"26692","_to":"26690"} +{"$label":"DIRECTED","_key":"39486","_from":"26691","_to":"26690"} +{"$label":"DIRECTED","_key":"39536","_from":"26691","_to":"26717"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39505","_from":"26694","_to":"26693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39528","_from":"26712","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39526","_from":"26711","_to":"26695"} +{"$label":"ACTS_IN","name":"Angry Lady","type":"Role","_key":"39525","_from":"26710","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39524","_from":"26709","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39523","_from":"26708","_to":"26695"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"39522","_from":"26707","_to":"26695"} +{"$label":"ACTS_IN","name":"Man on Bus","type":"Role","_key":"39521","_from":"26696","_to":"26695"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"39520","_from":"26706","_to":"26695"} +{"$label":"ACTS_IN","name":"Radom Old Lady","type":"Role","_key":"39519","_from":"26705","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39518","_from":"26704","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39517","_from":"26703","_to":"26695"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39516","_from":"26702","_to":"26695"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"39515","_from":"26701","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39514","_from":"26700","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39513","_from":"26699","_to":"26695"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"39512","_from":"26698","_to":"26695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"39511","_from":"26697","_to":"26695"} +{"$label":"DIRECTED","_key":"39510","_from":"26696","_to":"26695"} +{"$label":"ACTS_IN","name":"Interrogator #1 \/ Slash \/ Holli's door (voice)","type":"Role","_key":"99232","_from":"26699","_to":"58470"} +{"$label":"ACTS_IN","name":"Detective Conroy","type":"Role","_key":"119296","_from":"26703","_to":"70090"} +{"$label":"ACTS_IN","name":"2nd Man","type":"Role","_key":"66756","_from":"26703","_to":"41244"} +{"$label":"ACTS_IN","name":"Indira (die Tante)","type":"Role","_key":"39533","_from":"26716","_to":"26713"} +{"$label":"ACTS_IN","name":"Apu (der Sohn)","type":"Role","_key":"39532","_from":"26715","_to":"26713"} +{"$label":"ACTS_IN","name":"Durga (die Tochter)","type":"Role","_key":"39531","_from":"26714","_to":"26713"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39543","_from":"26722","_to":"26717"} +{"$label":"ACTS_IN","name":"Britt","type":"Role","_key":"39541","_from":"26721","_to":"26717"} +{"$label":"ACTS_IN","name":"Luana","type":"Role","_key":"39540","_from":"26720","_to":"26717"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"39539","_from":"26719","_to":"26717"} +{"$label":"ACTS_IN","name":"Sappho","type":"Role","_key":"39537","_from":"26718","_to":"26717"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"39548","_from":"26728","_to":"26723"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"39547","_from":"26727","_to":"26723"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"39546","_from":"26726","_to":"26723"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"39545","_from":"26725","_to":"26723"} +{"$label":"DIRECTED","_key":"39544","_from":"26724","_to":"26723"} +{"$label":"ACTS_IN","name":"Frau","type":"Role","_key":"39551","_from":"26730","_to":"26729"} +{"$label":"ACTS_IN","name":"Informantin","type":"Role","_key":"39562","_from":"26737","_to":"26731"} +{"$label":"ACTS_IN","name":"Harder","type":"Role","_key":"39561","_from":"26736","_to":"26731"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"39560","_from":"26735","_to":"26731"} +{"$label":"ACTS_IN","name":"Dr. Schreier","type":"Role","_key":"39559","_from":"26734","_to":"26731"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"39556","_from":"26733","_to":"26731"} +{"$label":"DIRECTED","_key":"39554","_from":"26732","_to":"26731"} +{"$label":"DIRECTED","_key":"44837","_from":"26732","_to":"29813"} +{"$label":"ACTS_IN","name":"Heike Rosenfeld","type":"Role","_key":"64442","_from":"26733","_to":"40158"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39743","_from":"26735","_to":"26850"} +{"$label":"ACTS_IN","name":"Old shopkeepster","type":"Role","_key":"39579","_from":"26750","_to":"26738"} +{"$label":"ACTS_IN","name":"Vrouw","type":"Role","_key":"39578","_from":"26749","_to":"26738"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"39577","_from":"26748","_to":"26738"} +{"$label":"ACTS_IN","name":"Magere man","type":"Role","_key":"39576","_from":"26747","_to":"26738"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"39575","_from":"26746","_to":"26738"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"39573","_from":"26745","_to":"26738"} +{"$label":"ACTS_IN","name":"Zakenman 1","type":"Role","_key":"39572","_from":"26744","_to":"26738"} +{"$label":"ACTS_IN","name":"Zakenman 2","type":"Role","_key":"39571","_from":"26743","_to":"26738"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"39570","_from":"26742","_to":"26738"} +{"$label":"ACTS_IN","name":"Herman","type":"Role","_key":"39569","_from":"26741","_to":"26738"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"39568","_from":"26740","_to":"26738"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"39567","_from":"26739","_to":"26738"} +{"$label":"ACTS_IN","name":"Cleaning Woman","type":"Role","_key":"40225","_from":"26739","_to":"27143"} +{"$label":"ACTS_IN","name":"Father Rockanje","type":"Role","_key":"107281","_from":"26740","_to":"63270"} +{"$label":"ACTS_IN","name":"Busdriver","type":"Role","_key":"40233","_from":"26740","_to":"27143"} +{"$label":"ACTS_IN","name":"Young Lotte","type":"Role","_key":"107276","_from":"26742","_to":"63270"} +{"$label":"ACTS_IN","name":"Anna Teshemka","type":"Role","_key":"94102","_from":"26742","_to":"55414"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"49013","_from":"26742","_to":"32124"} +{"$label":"ACTS_IN","name":"Klara Singer","type":"Role","_key":"42893","_from":"26742","_to":"28665"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"40239","_from":"26743","_to":"27143"} +{"$label":"ACTS_IN","name":"Pieter","type":"Role","_key":"120453","_from":"26744","_to":"70760"} +{"$label":"ACTS_IN","name":"Lt. Kathleen Nash","type":"Role","_key":"42115","_from":"26745","_to":"28214"} +{"$label":"ACTS_IN","name":"Katadreuffe","type":"Role","_key":"111266","_from":"26746","_to":"65709"} +{"$label":"ACTS_IN","name":"Luis Marquez","type":"Role","_key":"42888","_from":"26746","_to":"28665"} +{"$label":"ACTS_IN","name":"Zoon Kees","type":"Role","_key":"64155","_from":"26750","_to":"40034"} +{"$label":"ACTS_IN","name":"Klaus Flodder","type":"Role","_key":"63059","_from":"26750","_to":"39569"} +{"$label":"DIRECTED","_key":"39599","_from":"26768","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Fan","type":"Role","_key":"39598","_from":"26767","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Friseur","type":"Role","_key":"39597","_from":"26766","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Berater","type":"Role","_key":"39596","_from":"26765","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Taschendieb","type":"Role","_key":"39595","_from":"26764","_to":"26751"} +{"$label":"ACTS_IN","name":"Uffe","type":"Role","_key":"39594","_from":"26763","_to":"26751"} +{"$label":"ACTS_IN","name":"Die Lehrerin","type":"Role","_key":"39593","_from":"26762","_to":"26751"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"39592","_from":"26761","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Tischler","type":"Role","_key":"39591","_from":"26760","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Gesch\u00e4ftsmann","type":"Role","_key":"39590","_from":"26759","_to":"26751"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"39589","_from":"26758","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Teppichh\u00e4ndler","type":"Role","_key":"39588","_from":"26757","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Mann auf dem Balkon","type":"Role","_key":"39587","_from":"26756","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Tubaspieler","type":"Role","_key":"39586","_from":"26755","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Professor","type":"Role","_key":"39585","_from":"26754","_to":"26751"} +{"$label":"ACTS_IN","name":"Micke Larsson","type":"Role","_key":"39584","_from":"26753","_to":"26751"} +{"$label":"ACTS_IN","name":"Der Psychologe","type":"Role","_key":"39583","_from":"26752","_to":"26751"} +{"$label":"DIRECTED","_key":"106759","_from":"26762","_to":"62933"} +{"$label":"DIRECTED","_key":"39607","_from":"26773","_to":"26771"} +{"$label":"ACTS_IN","name":"Jill Marin","type":"Role","_key":"39606","_from":"26772","_to":"26771"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"93062","_from":"26772","_to":"54864"} +{"$label":"ACTS_IN","name":"Sylvia (as Eva Longoria)","type":"Role","_key":"47477","_from":"26772","_to":"31280"} +{"$label":"DIRECTED","_key":"52639","_from":"26773","_to":"34193"} +{"$label":"ACTS_IN","name":"Mu-Mu","type":"Role","_key":"39610","_from":"26776","_to":"26774"} +{"$label":"ACTS_IN","name":"Beetle","type":"Role","_key":"39609","_from":"26775","_to":"26774"} +{"$label":"ACTS_IN","name":"Gracie","type":"Role","_key":"39618","_from":"26780","_to":"26777"} +{"$label":"ACTS_IN","name":"Angus MacMorrow","type":"Role","_key":"39614","_from":"26779","_to":"26777"} +{"$label":"DIRECTED","_key":"39612","_from":"26778","_to":"26777"} +{"$label":"DIRECTED","_key":"114331","_from":"26778","_to":"67342"} +{"$label":"DIRECTED","_key":"68041","_from":"26778","_to":"41810"} +{"$label":"ACTS_IN","name":"Damian","type":"Role","_key":"94156","_from":"26779","_to":"55443"} +{"$label":"ACTS_IN","name":"Cousine Ruby Sue","type":"Role","_key":"39631","_from":"26785","_to":"26781"} +{"$label":"ACTS_IN","name":"Cousin Rocky","type":"Role","_key":"39630","_from":"26784","_to":"26781"} +{"$label":"ACTS_IN","name":"Cousine Catherin","type":"Role","_key":"39629","_from":"26783","_to":"26781"} +{"$label":"ACTS_IN","name":"Frances Smith","type":"Role","_key":"39627","_from":"26782","_to":"26781"} +{"$label":"ACTS_IN","name":"Doris Bellinger","type":"Role","_key":"100855","_from":"26782","_to":"59456"} +{"$label":"ACTS_IN","name":"Peggy Roberts","type":"Role","_key":"96491","_from":"26782","_to":"56725"} +{"$label":"ACTS_IN","name":"Grandma Lilly","type":"Role","_key":"57751","_from":"26782","_to":"36554"} +{"$label":"ACTS_IN","name":"Mayor's Wife","type":"Role","_key":"49122","_from":"26782","_to":"32182"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"111933","_from":"26783","_to":"66073"} +{"$label":"ACTS_IN","name":"Cousin Catherine","type":"Role","_key":"68188","_from":"26783","_to":"41880"} +{"$label":"ACTS_IN","name":"Maa the Very Old Ewe (voice)","type":"Role","_key":"54936","_from":"26783","_to":"35123"} +{"$label":"ACTS_IN","name":"Ellen Gallagher","type":"Role","_key":"67189","_from":"26785","_to":"41448"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"39643","_from":"26793","_to":"26786"} +{"$label":"ACTS_IN","name":"Jakob","type":"Role","_key":"39642","_from":"26792","_to":"26786"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"39641","_from":"26791","_to":"26786"} +{"$label":"ACTS_IN","name":"Omi Hilde","type":"Role","_key":"39639","_from":"26790","_to":"26786"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"39638","_from":"26789","_to":"26786"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"39636","_from":"26788","_to":"26786"} +{"$label":"DIRECTED","_key":"39633","_from":"26787","_to":"26786"} +{"$label":"ACTS_IN","name":"Annabelle","type":"Role","_key":"43939","_from":"26790","_to":"29311"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"42892","_from":"26791","_to":"28665"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39649","_from":"26799","_to":"26794"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39648","_from":"26798","_to":"26794"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39647","_from":"26797","_to":"26794"} +{"$label":"ACTS_IN","name":"Irmgard Eisgruber","type":"Role","_key":"39645","_from":"26796","_to":"26794"} +{"$label":"DIRECTED","_key":"39644","_from":"26795","_to":"26794"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"45304","_from":"26795","_to":"30050"} +{"$label":"ACTS_IN","name":"Christian Pointer","type":"Role","_key":"40567","_from":"26795","_to":"27319"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"39660","_from":"26805","_to":"26800"} +{"$label":"ACTS_IN","name":"Heike","type":"Role","_key":"39659","_from":"26804","_to":"26800"} +{"$label":"ACTS_IN","name":"Gaby","type":"Role","_key":"39656","_from":"26803","_to":"26800"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"39653","_from":"26802","_to":"26800"} +{"$label":"DIRECTED","_key":"39650","_from":"26801","_to":"26800"} +{"$label":"ACTS_IN","name":"Julian Kemper","type":"Role","_key":"43142","_from":"26802","_to":"28811"} +{"$label":"ACTS_IN","name":"Platzwart vom FC St. Pauli","type":"Role","_key":"39948","_from":"26805","_to":"26988"} +{"$label":"ACTS_IN","name":"Inspektor Moore","type":"Role","_key":"39666","_from":"26809","_to":"26806"} +{"$label":"ACTS_IN","name":"Barbara Love","type":"Role","_key":"39664","_from":"26808","_to":"26806"} +{"$label":"ACTS_IN","name":"Connie Bell","type":"Role","_key":"39662","_from":"26807","_to":"26806"} +{"$label":"ACTS_IN","name":"Captain's Concubine","type":"Role","_key":"119133","_from":"26807","_to":"70017"} +{"$label":"ACTS_IN","name":"Andrea Minotti","type":"Role","_key":"49087","_from":"26807","_to":"32171"} +{"$label":"ACTS_IN","name":"Vera Jensen","type":"Role","_key":"39934","_from":"26807","_to":"26981"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"39678","_from":"26818","_to":"26810"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"39677","_from":"26817","_to":"26810"} +{"$label":"ACTS_IN","name":"S\u00f6ren","type":"Role","_key":"39676","_from":"26816","_to":"26810"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"39673","_from":"26815","_to":"26810"} +{"$label":"ACTS_IN","name":"Merle Ohmsen","type":"Role","_key":"39672","_from":"26814","_to":"26810"} +{"$label":"ACTS_IN","name":"May-Brit Ohmsen","type":"Role","_key":"39671","_from":"26813","_to":"26810"} +{"$label":"ACTS_IN","name":"Muriel Ohmsen","type":"Role","_key":"39670","_from":"26812","_to":"26810"} +{"$label":"DIRECTED","_key":"39668","_from":"26811","_to":"26810"} +{"$label":"DIRECTED","_key":"39688","_from":"26811","_to":"26821"} +{"$label":"ACTS_IN","name":"Irene K\u00fcrschner","type":"Role","_key":"42070","_from":"26812","_to":"28186"} +{"$label":"ACTS_IN","name":"Muriel Ohmsen","type":"Role","_key":"39690","_from":"26812","_to":"26821"} +{"$label":"ACTS_IN","name":"Muriel Ohmsen","type":"Role","_key":"39682","_from":"26812","_to":"26819"} +{"$label":"ACTS_IN","name":"May-Brit Ohmsen","type":"Role","_key":"39691","_from":"26813","_to":"26821"} +{"$label":"ACTS_IN","name":"Mary-Brit Ohmsen","type":"Role","_key":"39683","_from":"26813","_to":"26819"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"51058","_from":"26814","_to":"33315"} +{"$label":"ACTS_IN","name":"Merle Ohmsen","type":"Role","_key":"39692","_from":"26814","_to":"26821"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"65821","_from":"26817","_to":"40734"} +{"$label":"ACTS_IN","name":"Lehmi","type":"Role","_key":"99997","_from":"26818","_to":"58997"} +{"$label":"DIRECTED","_key":"39679","_from":"26820","_to":"26819"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"39694","_from":"26823","_to":"26821"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"39693","_from":"26822","_to":"26821"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"39703","_from":"26831","_to":"26824"} +{"$label":"ACTS_IN","name":"Skinkie ( voice )","type":"Role","_key":"39702","_from":"26830","_to":"26824"} +{"$label":"ACTS_IN","name":"Falso ( voice )","type":"Role","_key":"39701","_from":"26829","_to":"26824"} +{"$label":"ACTS_IN","name":"Little Kind ( voice )","type":"Role","_key":"39700","_from":"26828","_to":"26824"} +{"$label":"ACTS_IN","name":"Carol Jollimor ( voice )","type":"Role","_key":"39699","_from":"26827","_to":"26824"} +{"$label":"ACTS_IN","name":"Casper ( voice )","type":"Role","_key":"39698","_from":"26826","_to":"26824"} +{"$label":"DIRECTED","_key":"39697","_from":"26825","_to":"26824"} +{"$label":"DIRECTED","_key":"103446","_from":"26825","_to":"60846"} +{"$label":"ACTS_IN","name":"Toa Gali (voice)","type":"Role","_key":"119731","_from":"26827","_to":"70313"} +{"$label":"ACTS_IN","name":"Roodaka","type":"Role","_key":"115402","_from":"26827","_to":"67952"} +{"$label":"ACTS_IN","name":"Sammi","type":"Role","_key":"113794","_from":"26827","_to":"67046"} +{"$label":"ACTS_IN","name":"Laverna (voice)","type":"Role","_key":"110632","_from":"26827","_to":"65360"} +{"$label":"ACTS_IN","name":"Vanessa (voice)","type":"Role","_key":"109162","_from":"26827","_to":"64489"} +{"$label":"ACTS_IN","name":"Fairy Queen \/ Marie","type":"Role","_key":"102741","_from":"26827","_to":"60440"} +{"$label":"ACTS_IN","name":"Laverna","type":"Role","_key":"93729","_from":"26827","_to":"55176"} +{"$label":"ACTS_IN","name":"Laverna, Pixie #2 & Pixie #4","type":"Role","_key":"93716","_from":"26827","_to":"55166"} +{"$label":"ACTS_IN","name":"Moya","type":"Role","_key":"93382","_from":"26827","_to":"55001"} +{"$label":"ACTS_IN","name":"Mole Man","type":"Role","_key":"110739","_from":"26830","_to":"65413"} +{"$label":"ACTS_IN","name":"Newsreel Announcer (voice)","type":"Role","_key":"98800","_from":"26831","_to":"58215"} +{"$label":"DIRECTED","_key":"39706","_from":"26833","_to":"26832"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"39718","_from":"26842","_to":"26834"} +{"$label":"ACTS_IN","name":"Robby","type":"Role","_key":"39714","_from":"26841","_to":"26834"} +{"$label":"ACTS_IN","name":"Hanni","type":"Role","_key":"39713","_from":"26840","_to":"26834"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"39712","_from":"26839","_to":"26834"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"39711","_from":"26838","_to":"26834"} +{"$label":"ACTS_IN","name":"Bonzo","type":"Role","_key":"39709","_from":"26837","_to":"26834"} +{"$label":"ACTS_IN","name":"Bettina","type":"Role","_key":"39708","_from":"26836","_to":"26834"} +{"$label":"DIRECTED","_key":"39707","_from":"26835","_to":"26834"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"58322","_from":"26836","_to":"36872"} +{"$label":"ACTS_IN","name":"Bernd","type":"Role","_key":"90476","_from":"26837","_to":"53453"} +{"$label":"ACTS_IN","name":"Hans Wimpel","type":"Role","_key":"71881","_from":"26842","_to":"43491"} +{"$label":"ACTS_IN","name":"Frida","type":"Role","_key":"39727","_from":"26849","_to":"26843"} +{"$label":"ACTS_IN","name":"Ciro","type":"Role","_key":"39726","_from":"26848","_to":"26843"} +{"$label":"ACTS_IN","name":"Rodolfo Valentino","type":"Role","_key":"39725","_from":"26847","_to":"26843"} +{"$label":"ACTS_IN","name":"Vincenzo","type":"Role","_key":"39723","_from":"26846","_to":"26843"} +{"$label":"ACTS_IN","name":"Totonno","type":"Role","_key":"39720","_from":"26845","_to":"26843"} +{"$label":"DIRECTED","_key":"39719","_from":"26844","_to":"26843"} +{"$label":"ACTS_IN","name":"Alberto","type":"Role","_key":"90184","_from":"26845","_to":"53321"} +{"$label":"ACTS_IN","name":"Count Emilio Ponticelli","type":"Role","_key":"62673","_from":"26845","_to":"39416"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39752","_from":"26861","_to":"26850"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39751","_from":"26860","_to":"26850"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"39747","_from":"26859","_to":"26850"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"39746","_from":"26858","_to":"26850"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39744","_from":"26857","_to":"26850"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"39740","_from":"26856","_to":"26850"} +{"$label":"ACTS_IN","name":"Roberta","type":"Role","_key":"39739","_from":"26855","_to":"26850"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"39736","_from":"26854","_to":"26850"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"39735","_from":"26853","_to":"26850"} +{"$label":"ACTS_IN","name":"Timo","type":"Role","_key":"39734","_from":"26852","_to":"26850"} +{"$label":"ACTS_IN","name":"Rasta Robby","type":"Role","_key":"39729","_from":"26851","_to":"26850"} +{"$label":"ACTS_IN","name":"Luka \/ Frankie","type":"Role","_key":"68954","_from":"26856","_to":"42219"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"42515","_from":"26856","_to":"28459"} +{"$label":"ACTS_IN","name":"Oskar Wellenbring","type":"Role","_key":"40866","_from":"26857","_to":"27503"} +{"$label":"ACTS_IN","name":"Bubi\/Bubi-Image of Rumpelstilzchens","type":"Role","_key":"59768","_from":"26860","_to":"37734"} +{"$label":"ACTS_IN","name":"Amor","type":"Role","_key":"57699","_from":"26860","_to":"36525"} +{"$label":"ACTS_IN","name":"Otto, Baby-Otto, Otti, Gro\u00dfvater","type":"Role","_key":"57589","_from":"26860","_to":"36471"} +{"$label":"ACTS_IN","name":"Bubi","type":"Role","_key":"56953","_from":"26860","_to":"36144"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"55353","_from":"26860","_to":"35292"} +{"$label":"ACTS_IN","name":"Otto \/ Benno Gross","type":"Role","_key":"53462","_from":"26860","_to":"34535"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"52602","_from":"26860","_to":"34181"} +{"$label":"DIRECTED","_key":"57698","_from":"26860","_to":"36525"} +{"$label":"DIRECTED","_key":"55358","_from":"26860","_to":"35292"} +{"$label":"DIRECTED","_key":"53469","_from":"26860","_to":"34535"} +{"$label":"DIRECTED","_key":"52608","_from":"26860","_to":"34181"} +{"$label":"DIRECTED","_key":"39757","_from":"26867","_to":"26862"} +{"$label":"ACTS_IN","name":"Yakuza mit Amulett","type":"Role","_key":"39756","_from":"26866","_to":"26862"} +{"$label":"ACTS_IN","name":"Frau","type":"Role","_key":"39755","_from":"26865","_to":"26862"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"39754","_from":"26864","_to":"26862"} +{"$label":"ACTS_IN","name":"Prisoner KSC2-303","type":"Role","_key":"39753","_from":"26863","_to":"26862"} +{"$label":"ACTS_IN","name":"Grave","type":"Role","_key":"120251","_from":"26863","_to":"70613"} +{"$label":"ACTS_IN","name":"Momotaro Tsurugi","type":"Role","_key":"100496","_from":"26863","_to":"59261"} +{"$label":"ACTS_IN","name":"Yasha-maru","type":"Role","_key":"60919","_from":"26863","_to":"38490"} +{"$label":"ACTS_IN","name":"Tsuchi-Gumo","type":"Role","_key":"40129","_from":"26863","_to":"27084"} +{"$label":"ACTS_IN","name":"Mitglied der Sajiki-Familie (Bruder)","type":"Role","_key":"40120","_from":"26863","_to":"27080"} +{"$label":"ACTS_IN","name":"Herausforderer in der Zukunft","type":"Role","_key":"39766","_from":"26863","_to":"26870"} +{"$label":"ACTS_IN","name":"Zeros","type":"Role","_key":"39761","_from":"26863","_to":"26869"} +{"$label":"DIRECTED","_key":"100505","_from":"26863","_to":"59261"} +{"$label":"ACTS_IN","name":"Omito Date","type":"Role","_key":"100504","_from":"26864","_to":"59261"} +{"$label":"ACTS_IN","name":"Nagato","type":"Role","_key":"40121","_from":"26864","_to":"27080"} +{"$label":"ACTS_IN","name":"Freund des Samurais","type":"Role","_key":"39767","_from":"26864","_to":"26870"} +{"$label":"ACTS_IN","name":"Tenshu Yashiro","type":"Role","_key":"39759","_from":"26864","_to":"26869"} +{"$label":"ACTS_IN","name":"Saru","type":"Role","_key":"40119","_from":"26866","_to":"27080"} +{"$label":"ACTS_IN","name":"Einer der Gangster die Tatsuya \u00fcberfallen","type":"Role","_key":"39773","_from":"26866","_to":"26873"} +{"$label":"DIRECTED","_key":"105825","_from":"26867","_to":"62299"} +{"$label":"DIRECTED","_key":"61519","_from":"26867","_to":"38797"} +{"$label":"DIRECTED","_key":"40124","_from":"26867","_to":"27080"} +{"$label":"DIRECTED","_key":"39774","_from":"26867","_to":"26873"} +{"$label":"DIRECTED","_key":"39768","_from":"26867","_to":"26870"} +{"$label":"DIRECTED","_key":"39762","_from":"26867","_to":"26869"} +{"$label":"DIRECTED","_key":"39758","_from":"26867","_to":"26868"} +{"$label":"ACTS_IN","name":"die Frau","type":"Role","_key":"39765","_from":"26872","_to":"26870"} +{"$label":"ACTS_IN","name":"Samurai","type":"Role","_key":"39763","_from":"26871","_to":"26870"} +{"$label":"ACTS_IN","name":"Toma Fujihira","type":"Role","_key":"120256","_from":"26871","_to":"70616"} +{"$label":"ACTS_IN","name":"Tabito Takao","type":"Role","_key":"109789","_from":"26871","_to":"64849"} +{"$label":"ACTS_IN","name":"Tatsuya Kudo","type":"Role","_key":"39770","_from":"26871","_to":"26873"} +{"$label":"ACTS_IN","name":"Rei Miwa","type":"Role","_key":"39772","_from":"26872","_to":"26873"} +{"$label":"ACTS_IN","name":"Kohei Kanzaki","type":"Role","_key":"39771","_from":"26875","_to":"26873"} +{"$label":"ACTS_IN","name":"Mina Saeki \/ Izuko","type":"Role","_key":"39769","_from":"26874","_to":"26873"} +{"$label":"ACTS_IN","name":"Akane Yashiro","type":"Role","_key":"90751","_from":"26874","_to":"53561"} +{"$label":"ACTS_IN","name":"Tokino (voice)","type":"Role","_key":"106226","_from":"26875","_to":"62559"} +{"$label":"ACTS_IN","name":"Leon (voice)","type":"Role","_key":"94264","_from":"26875","_to":"55509"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"39798","_from":"26892","_to":"26876"} +{"$label":"ACTS_IN","name":"Taxifahrer","type":"Role","_key":"39797","_from":"26891","_to":"26876"} +{"$label":"ACTS_IN","name":"Lohausen","type":"Role","_key":"39796","_from":"26890","_to":"26876"} +{"$label":"ACTS_IN","name":"Dolmetscher","type":"Role","_key":"39793","_from":"26889","_to":"26876"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"39792","_from":"26888","_to":"26876"} +{"$label":"ACTS_IN","name":"Kohlhammer","type":"Role","_key":"39791","_from":"26887","_to":"26876"} +{"$label":"ACTS_IN","name":"L\u00e4pke","type":"Role","_key":"39790","_from":"26886","_to":"26876"} +{"$label":"ACTS_IN","name":"Pohl","type":"Role","_key":"39787","_from":"26885","_to":"26876"} +{"$label":"ACTS_IN","name":"L\u00fcthgen","type":"Role","_key":"39786","_from":"26884","_to":"26876"} +{"$label":"ACTS_IN","name":"Br\u00fcnjes","type":"Role","_key":"39785","_from":"26883","_to":"26876"} +{"$label":"ACTS_IN","name":"Paschke","type":"Role","_key":"39783","_from":"26882","_to":"26876"} +{"$label":"ACTS_IN","name":"Cherie","type":"Role","_key":"39782","_from":"26881","_to":"26876"} +{"$label":"ACTS_IN","name":"Hauptwachmeister Schriever","type":"Role","_key":"39780","_from":"26880","_to":"26876"} +{"$label":"ACTS_IN","name":"Bruno Kapp","type":"Role","_key":"39779","_from":"26879","_to":"26876"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"39778","_from":"26878","_to":"26876"} +{"$label":"DIRECTED","_key":"39775","_from":"26877","_to":"26876"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45097","_from":"26877","_to":"29936"} +{"$label":"ACTS_IN","name":"Mathilde Oberm\u00fcller","type":"Role","_key":"64686","_from":"26878","_to":"40289"} +{"$label":"ACTS_IN","name":"Kommissar Beringer","type":"Role","_key":"39931","_from":"26880","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39919","_from":"26882","_to":"26965"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43811","_from":"26885","_to":"29250"} +{"$label":"ACTS_IN","name":"Brasset","type":"Role","_key":"41096","_from":"26890","_to":"27647"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39984","_from":"26890","_to":"27002"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"39878","_from":"26892","_to":"26934"} +{"$label":"ACTS_IN","name":"Pfarrer Feddersen","type":"Role","_key":"39811","_from":"26899","_to":"26893"} +{"$label":"ACTS_IN","name":"Kriminalrat Janson","type":"Role","_key":"39810","_from":"26898","_to":"26893"} +{"$label":"ACTS_IN","name":"B\u00e4rbel Harms","type":"Role","_key":"39809","_from":"26897","_to":"26893"} +{"$label":"ACTS_IN","name":"Helmut Weiher","type":"Role","_key":"39808","_from":"26896","_to":"26893"} +{"$label":"ACTS_IN","name":"Gerda Heske","type":"Role","_key":"39805","_from":"26895","_to":"26893"} +{"$label":"ACTS_IN","name":"Karin Steffen","type":"Role","_key":"39803","_from":"26894","_to":"26893"} +{"$label":"ACTS_IN","name":"Sir David Lindsay","type":"Role","_key":"119188","_from":"26899","_to":"70038"} +{"$label":"ACTS_IN","name":"Sir David Lindsay","type":"Role","_key":"119176","_from":"26899","_to":"70032"} +{"$label":"ACTS_IN","name":"George Cockstone","type":"Role","_key":"118844","_from":"26899","_to":"69856"} +{"$label":"ACTS_IN","name":"Sir David Lindsay","type":"Role","_key":"90228","_from":"26899","_to":"53349"} +{"$label":"ACTS_IN","name":"David Judd aka Mr. Lennox \/ Reverend (Paul) Dearborn","type":"Role","_key":"55172","_from":"26899","_to":"35203"} +{"$label":"ACTS_IN","name":"Harry Lord Chelford","type":"Role","_key":"44064","_from":"26899","_to":"29386"} +{"$label":"ACTS_IN","name":"Pastor T\u00f6nning","type":"Role","_key":"39953","_from":"26899","_to":"26992"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"39827","_from":"26914","_to":"26900"} +{"$label":"ACTS_IN","name":"Yildiz Mutter","type":"Role","_key":"39826","_from":"26913","_to":"26900"} +{"$label":"ACTS_IN","name":"Yakups Mutter","type":"Role","_key":"39825","_from":"26912","_to":"26900"} +{"$label":"ACTS_IN","name":"\u00d6mers Mutter","type":"Role","_key":"39824","_from":"26911","_to":"26900"} +{"$label":"ACTS_IN","name":"Onkel Halil","type":"Role","_key":"39823","_from":"26910","_to":"26900"} +{"$label":"ACTS_IN","name":"Hirtenjunge Davut","type":"Role","_key":"39822","_from":"26909","_to":"26900"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"39821","_from":"26908","_to":"26900"} +{"$label":"ACTS_IN","name":"Yusuf","type":"Role","_key":"39820","_from":"26907","_to":"26900"} +{"$label":"ACTS_IN","name":"Zekeriya","type":"Role","_key":"39819","_from":"26906","_to":"26900"} +{"$label":"ACTS_IN","name":"\u0130mam","type":"Role","_key":"39818","_from":"26905","_to":"26900"} +{"$label":"ACTS_IN","name":"Y\u0131ld\u0131z","type":"Role","_key":"39817","_from":"26904","_to":"26900"} +{"$label":"ACTS_IN","name":"Yakup","type":"Role","_key":"39816","_from":"26903","_to":"26900"} +{"$label":"ACTS_IN","name":"\u00d6mer","type":"Role","_key":"39815","_from":"26902","_to":"26900"} +{"$label":"DIRECTED","_key":"39814","_from":"26901","_to":"26900"} +{"$label":"ACTS_IN","name":"Hotel Receptionist","type":"Role","_key":"57309","_from":"26908","_to":"36335"} +{"$label":"DIRECTED","_key":"39833","_from":"26918","_to":"26915"} +{"$label":"ACTS_IN","name":"Polizeichef Ben","type":"Role","_key":"39831","_from":"26917","_to":"26915"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"39829","_from":"26916","_to":"26915"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"117496","_from":"26916","_to":"69087"} +{"$label":"ACTS_IN","name":"Additional Voices (voice)","type":"Role","_key":"67177","_from":"26916","_to":"41441"} +{"$label":"ACTS_IN","name":"Ann Hogan","type":"Role","_key":"58926","_from":"26916","_to":"37201"} +{"$label":"ACTS_IN","name":"Kenny, Kit's Limo Driver","type":"Role","_key":"69337","_from":"26917","_to":"42372"} +{"$label":"DIRECTED","_key":"50210","_from":"26918","_to":"32820"} +{"$label":"DIRECTED","_key":"44996","_from":"26918","_to":"29901"} +{"$label":"DIRECTED","_key":"39842","_from":"26920","_to":"26919"} +{"$label":"DIRECTED","_key":"63424","_from":"26920","_to":"39729"} +{"$label":"DIRECTED","_key":"61711","_from":"26920","_to":"38866"} +{"$label":"DIRECTED","_key":"52216","_from":"26920","_to":"34015"} +{"$label":"ACTS_IN","name":"Mr. Fenster","type":"Role","_key":"39850","_from":"26929","_to":"26921"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"39849","_from":"26928","_to":"26921"} +{"$label":"ACTS_IN","name":"Wilbur Wang","type":"Role","_key":"39848","_from":"26927","_to":"26921"} +{"$label":"ACTS_IN","name":"Mr. Maltz","type":"Role","_key":"39847","_from":"26926","_to":"26921"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"39846","_from":"26925","_to":"26921"} +{"$label":"ACTS_IN","name":"Dr. Young","type":"Role","_key":"39845","_from":"26924","_to":"26921"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"39844","_from":"26923","_to":"26921"} +{"$label":"DIRECTED","_key":"39843","_from":"26922","_to":"26921"} +{"$label":"ACTS_IN","name":"Bush","type":"Role","_key":"39864","_from":"26933","_to":"26930"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"39861","_from":"26932","_to":"26930"} +{"$label":"ACTS_IN","name":"Julia Rainbird","type":"Role","_key":"39857","_from":"26931","_to":"26930"} +{"$label":"ACTS_IN","name":"Grandmother Janou","type":"Role","_key":"49279","_from":"26931","_to":"32271"} +{"$label":"ACTS_IN","name":"Blakelock","type":"Role","_key":"113668","_from":"26932","_to":"66986"} +{"$label":"ACTS_IN","name":"Chorus Boy","type":"Role","_key":"39885","_from":"26947","_to":"26934"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39884","_from":"26946","_to":"26934"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39883","_from":"26945","_to":"26934"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39881","_from":"26944","_to":"26934"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39879","_from":"26943","_to":"26934"} +{"$label":"ACTS_IN","name":"Rotk\u00e4ppchen","type":"Role","_key":"39877","_from":"26942","_to":"26934"} +{"$label":"ACTS_IN","name":"Manager Harry","type":"Role","_key":"39876","_from":"26941","_to":"26934"} +{"$label":"ACTS_IN","name":"Kuddel","type":"Role","_key":"39875","_from":"26940","_to":"26934"} +{"$label":"ACTS_IN","name":"Rosie Becker","type":"Role","_key":"39874","_from":"26939","_to":"26934"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"39872","_from":"26938","_to":"26934"} +{"$label":"ACTS_IN","name":"Theo Steinemann","type":"Role","_key":"39868","_from":"26937","_to":"26934"} +{"$label":"ACTS_IN","name":"Jimmy Jones","type":"Role","_key":"39867","_from":"26936","_to":"26934"} +{"$label":"DIRECTED","_key":"39866","_from":"26935","_to":"26934"} +{"$label":"ACTS_IN","name":"Fritz Meyer","type":"Role","_key":"46591","_from":"26936","_to":"30780"} +{"$label":"ACTS_IN","name":"Hans Ottensen","type":"Role","_key":"42968","_from":"26936","_to":"28701"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"43926","_from":"26938","_to":"29311"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"41824","_from":"26938","_to":"28050"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"41198","_from":"26938","_to":"27720"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40347","_from":"26938","_to":"27210"} +{"$label":"ACTS_IN","name":"Lemcke","type":"Role","_key":"43781","_from":"26944","_to":"29234"} +{"$label":"ACTS_IN","name":"Walter Brand","type":"Role","_key":"42636","_from":"26944","_to":"28542"} +{"$label":"ACTS_IN","name":"Hugo Sauer","type":"Role","_key":"41805","_from":"26944","_to":"28050"} +{"$label":"ACTS_IN","name":"Kellner Gottlieb","type":"Role","_key":"41123","_from":"26944","_to":"27670"} +{"$label":"ACTS_IN","name":"Shipmaker","type":"Role","_key":"41033","_from":"26944","_to":"27598"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42642","_from":"26946","_to":"28542"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39994","_from":"26946","_to":"27002"} +{"$label":"ACTS_IN","name":"Gerda pa scenen","type":"Role","_key":"39895","_from":"26958","_to":"26948"} +{"$label":"ACTS_IN","name":"Radiostimme","type":"Role","_key":"39894","_from":"26957","_to":"26948"} +{"$label":"ACTS_IN","name":"Jor pa scenen","type":"Role","_key":"39893","_from":"26956","_to":"26948"} +{"$label":"ACTS_IN","name":"Teatersjef","type":"Role","_key":"39892","_from":"26955","_to":"26948"} +{"$label":"ACTS_IN","name":"Prest","type":"Role","_key":"39891","_from":"26954","_to":"26948"} +{"$label":"ACTS_IN","name":"Morgans mor","type":"Role","_key":"39890","_from":"26953","_to":"26948"} +{"$label":"ACTS_IN","name":"Gerda","type":"Role","_key":"39889","_from":"26952","_to":"26948"} +{"$label":"ACTS_IN","name":"Jor","type":"Role","_key":"39888","_from":"26951","_to":"26948"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"39887","_from":"26950","_to":"26948"} +{"$label":"DIRECTED","_key":"39886","_from":"26949","_to":"26948"} +{"$label":"DIRECTED","_key":"91586","_from":"26949","_to":"53997"} +{"$label":"DIRECTED","_key":"39905","_from":"26964","_to":"26959"} +{"$label":"ACTS_IN","name":"Jazmin","type":"Role","_key":"39903","_from":"26963","_to":"26959"} +{"$label":"ACTS_IN","name":"Phil Lazarus","type":"Role","_key":"39901","_from":"26962","_to":"26959"} +{"$label":"ACTS_IN","name":"Jerrod","type":"Role","_key":"39900","_from":"26961","_to":"26959"} +{"$label":"ACTS_IN","name":"Aubrey Fleming\/ Dakota Moss","type":"Role","_key":"39897","_from":"26960","_to":"26959"} +{"$label":"ACTS_IN","name":"Thea Dixon","type":"Role","_key":"121162","_from":"26960","_to":"71176"} +{"$label":"ACTS_IN","name":"Rachel Wilcox","type":"Role","_key":"93056","_from":"26960","_to":"54863"} +{"$label":"ACTS_IN","name":"Maggie Peyton","type":"Role","_key":"69937","_from":"26960","_to":"42674"} +{"$label":"ACTS_IN","name":"Mary Elizabeth Cep","type":"Role","_key":"68062","_from":"26960","_to":"41819"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"65376","_from":"26960","_to":"40552"} +{"$label":"ACTS_IN","name":"Cady Heron","type":"Role","_key":"64677","_from":"26960","_to":"40287"} +{"$label":"ACTS_IN","name":"Anna Coleman","type":"Role","_key":"62622","_from":"26960","_to":"39392"} +{"$label":"ACTS_IN","name":"Ashley Albright","type":"Role","_key":"59536","_from":"26960","_to":"37584"} +{"$label":"ACTS_IN","name":"Hallie Parker \/ Annie James","type":"Role","_key":"57140","_from":"26960","_to":"36269"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"54456","_from":"26960","_to":"34916"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"49007","_from":"26960","_to":"32122"} +{"$label":"ACTS_IN","name":"Nancy Pitman","type":"Role","_key":"49001","_from":"26960","_to":"32119"} +{"$label":"ACTS_IN","name":"Groom","type":"Role","_key":"105232","_from":"26961","_to":"61933"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"100844","_from":"26961","_to":"59452"} +{"$label":"ACTS_IN","name":"Spc. Owen Eldridge","type":"Role","_key":"88391","_from":"26961","_to":"52392"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"60012","_from":"26961","_to":"37876"} +{"$label":"ACTS_IN","name":"Publisher","type":"Role","_key":"96486","_from":"26962","_to":"56725"} +{"$label":"DIRECTED","_key":"105577","_from":"26964","_to":"62128"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39930","_from":"26980","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39929","_from":"26979","_to":"26965"} +{"$label":"ACTS_IN","name":"Hansen","type":"Role","_key":"39928","_from":"26978","_to":"26965"} +{"$label":"ACTS_IN","name":"Anwalt Quassel","type":"Role","_key":"39927","_from":"26977","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39926","_from":"26976","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39925","_from":"26975","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39924","_from":"26974","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39923","_from":"26973","_to":"26965"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39920","_from":"26972","_to":"26965"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"39918","_from":"26971","_to":"26965"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"39917","_from":"26970","_to":"26965"} +{"$label":"ACTS_IN","name":"Mohr","type":"Role","_key":"39916","_from":"26969","_to":"26965"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"39915","_from":"26968","_to":"26965"} +{"$label":"ACTS_IN","name":"Elli","type":"Role","_key":"39914","_from":"26967","_to":"26965"} +{"$label":"ACTS_IN","name":"Blinky","type":"Role","_key":"39912","_from":"26966","_to":"26965"} +{"$label":"ACTS_IN","name":"Julius Appel","type":"Role","_key":"45738","_from":"26966","_to":"30264"} +{"$label":"ACTS_IN","name":"Herzberg","type":"Role","_key":"40374","_from":"26966","_to":"27226"} +{"$label":"ACTS_IN","name":"Binnies Mutter","type":"Role","_key":"40379","_from":"26968","_to":"27226"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"40381","_from":"26969","_to":"27226"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40322","_from":"26969","_to":"27196"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"39943","_from":"26969","_to":"26981"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40319","_from":"26970","_to":"27196"} +{"$label":"ACTS_IN","name":"Burkhardt","type":"Role","_key":"39945","_from":"26987","_to":"26981"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"39944","_from":"26986","_to":"26981"} +{"$label":"ACTS_IN","name":"Polizistin Fiedler","type":"Role","_key":"39942","_from":"26985","_to":"26981"} +{"$label":"ACTS_IN","name":"L\u00f6ffler","type":"Role","_key":"39941","_from":"26984","_to":"26981"} +{"$label":"ACTS_IN","name":"Maggy","type":"Role","_key":"39940","_from":"26983","_to":"26981"} +{"$label":"ACTS_IN","name":"Kommissar Knudsen","type":"Role","_key":"39936","_from":"26982","_to":"26981"} +{"$label":"DIRECTED","_key":"39949","_from":"26991","_to":"26988"} +{"$label":"ACTS_IN","name":"Friedhofsangestellter","type":"Role","_key":"39947","_from":"26990","_to":"26988"} +{"$label":"ACTS_IN","name":"FC St. Pauli Fan","type":"Role","_key":"39946","_from":"26989","_to":"26988"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39969","_from":"27001","_to":"26992"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39967","_from":"27000","_to":"26992"} +{"$label":"ACTS_IN","name":"Solveig","type":"Role","_key":"39965","_from":"26999","_to":"26992"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"39963","_from":"26998","_to":"26992"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39959","_from":"26997","_to":"26992"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"39958","_from":"26996","_to":"26992"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"39957","_from":"26995","_to":"26992"} +{"$label":"ACTS_IN","name":"Generaldirektor Carl Ostro","type":"Role","_key":"39955","_from":"26994","_to":"26992"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39952","_from":"26993","_to":"26992"} +{"$label":"ACTS_IN","name":"Halim Pascha","type":"Role","_key":"44472","_from":"26994","_to":"29626"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43161","_from":"26994","_to":"28819"} +{"$label":"ACTS_IN","name":"Page","type":"Role","_key":"40997","_from":"26995","_to":"27570"} +{"$label":"ACTS_IN","name":"Herbert","type":"Role","_key":"40937","_from":"26998","_to":"27539"} +{"$label":"ACTS_IN","name":"Hilla Pfennig","type":"Role","_key":"44932","_from":"26999","_to":"29874"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"40015","_from":"26999","_to":"27017"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Martens","type":"Role","_key":"39987","_from":"27011","_to":"27002"} +{"$label":"ACTS_IN","name":"Tato Willi","type":"Role","_key":"39986","_from":"27010","_to":"27002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39985","_from":"27009","_to":"27002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39983","_from":"27008","_to":"27002"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"39980","_from":"27007","_to":"27002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39979","_from":"27006","_to":"27002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"39977","_from":"27005","_to":"27002"} +{"$label":"ACTS_IN","name":"Hauptwachmeister Fiete Jensen","type":"Role","_key":"39974","_from":"27004","_to":"27002"} +{"$label":"DIRECTED","_key":"39971","_from":"27003","_to":"27002"} +{"$label":"ACTS_IN","name":"Bienert","type":"Role","_key":"45121","_from":"27010","_to":"29944"} +{"$label":"ACTS_IN","name":"Paulchen Klinke","type":"Role","_key":"44165","_from":"27010","_to":"29437"} +{"$label":"ACTS_IN","name":"Heidebewohner","type":"Role","_key":"43779","_from":"27010","_to":"29234"} +{"$label":"ACTS_IN","name":"Rechtsanwalt","type":"Role","_key":"44133","_from":"27011","_to":"29420"} +{"$label":"DIRECTED","_key":"39998","_from":"27013","_to":"27012"} +{"$label":"DIRECTED","_key":"40007","_from":"27016","_to":"27014"} +{"$label":"ACTS_IN","name":"Elke","type":"Role","_key":"40002","_from":"27015","_to":"27014"} +{"$label":"ACTS_IN","name":"Johanna Stauding","type":"Role","_key":"43198","_from":"27015","_to":"28852"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"42677","_from":"27015","_to":"28564"} +{"$label":"DIRECTED","_key":"62879","_from":"27016","_to":"39506"} +{"$label":"ACTS_IN","name":"Sanders","type":"Role","_key":"40022","_from":"27024","_to":"27017"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"40021","_from":"27023","_to":"27017"} +{"$label":"ACTS_IN","name":"Paon","type":"Role","_key":"40020","_from":"27022","_to":"27017"} +{"$label":"ACTS_IN","name":"Klaus Ritter","type":"Role","_key":"40017","_from":"27021","_to":"27017"} +{"$label":"ACTS_IN","name":"Konsul von Prossnitz","type":"Role","_key":"40016","_from":"27020","_to":"27017"} +{"$label":"ACTS_IN","name":"Vroni","type":"Role","_key":"40014","_from":"27019","_to":"27017"} +{"$label":"ACTS_IN","name":"Dr. Katrin Andersen","type":"Role","_key":"40011","_from":"27018","_to":"27017"} +{"$label":"ACTS_IN","name":"Erika Lohr","type":"Role","_key":"46046","_from":"27018","_to":"30425"} +{"$label":"ACTS_IN","name":"Kirsten Hansen","type":"Role","_key":"45059","_from":"27018","_to":"29929"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"43157","_from":"27019","_to":"28819"} +{"$label":"ACTS_IN","name":"Ricki","type":"Role","_key":"41242","_from":"27019","_to":"27738"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"40394","_from":"27019","_to":"27239"} +{"$label":"ACTS_IN","name":"Admiral","type":"Role","_key":"53410","_from":"27020","_to":"34508"} +{"$label":"ACTS_IN","name":"Petersen","type":"Role","_key":"45120","_from":"27020","_to":"29944"} +{"$label":"ACTS_IN","name":"Lara Florakis","type":"Role","_key":"110138","_from":"27023","_to":"65080"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"40032","_from":"27030","_to":"27025"} +{"$label":"ACTS_IN","name":"Domenica","type":"Role","_key":"40031","_from":"27029","_to":"27025"} +{"$label":"ACTS_IN","name":"von Thurn","type":"Role","_key":"40030","_from":"27028","_to":"27025"} +{"$label":"ACTS_IN","name":"Nikolaus","type":"Role","_key":"40027","_from":"27027","_to":"27025"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"40026","_from":"27026","_to":"27025"} +{"$label":"ACTS_IN","name":"Maria Rall","type":"Role","_key":"53745","_from":"27026","_to":"34649"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"40089","_from":"27026","_to":"27060"} +{"$label":"ACTS_IN","name":"Insane Officer 'Eden'","type":"Role","_key":"121379","_from":"27027","_to":"71326"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"72803","_from":"27027","_to":"43865"} +{"$label":"ACTS_IN","name":"DJ Kool","type":"Role","_key":"67717","_from":"27027","_to":"41641"} +{"$label":"ACTS_IN","name":"'Stone' Steiner","type":"Role","_key":"54731","_from":"27027","_to":"35032"} +{"$label":"ACTS_IN","name":"Jan Karl Raspe","type":"Role","_key":"45434","_from":"27027","_to":"30115"} +{"$label":"ACTS_IN","name":"Jessup","type":"Role","_key":"40044","_from":"27032","_to":"27031"} +{"$label":"ACTS_IN","name":"Sada","type":"Role","_key":"40047","_from":"27035","_to":"27033"} +{"$label":"DIRECTED","_key":"40046","_from":"27034","_to":"27033"} +{"$label":"DIRECTED","_key":"72908","_from":"27034","_to":"43905"} +{"$label":"DIRECTED","_key":"40061","_from":"27042","_to":"27036"} +{"$label":"ACTS_IN","name":"Schnulzens\u00e4nger","type":"Role","_key":"40058","_from":"27041","_to":"27036"} +{"$label":"ACTS_IN","name":"Produzent","type":"Role","_key":"40057","_from":"27040","_to":"27036"} +{"$label":"ACTS_IN","name":"Isabelle Carrington","type":"Role","_key":"40056","_from":"27039","_to":"27036"} +{"$label":"ACTS_IN","name":"Gilbert Carrington","type":"Role","_key":"40055","_from":"27038","_to":"27036"} +{"$label":"ACTS_IN","name":"Paul Gaylord","type":"Role","_key":"40053","_from":"27037","_to":"27036"} +{"$label":"DIRECTED","_key":"100161","_from":"27042","_to":"59082"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"40070","_from":"27048","_to":"27043"} +{"$label":"ACTS_IN","name":"Jens Martens","type":"Role","_key":"40068","_from":"27047","_to":"27043"} +{"$label":"ACTS_IN","name":"Frau Hagemann","type":"Role","_key":"40067","_from":"27046","_to":"27043"} +{"$label":"ACTS_IN","name":"Heidi K\u00e4slinger","type":"Role","_key":"40063","_from":"27045","_to":"27043"} +{"$label":"DIRECTED","_key":"40062","_from":"27044","_to":"27043"} +{"$label":"ACTS_IN","name":"Wirtschafterin","type":"Role","_key":"43785","_from":"27045","_to":"29234"} +{"$label":"ACTS_IN","name":"Tante Frieda Pumeier","type":"Role","_key":"42806","_from":"27045","_to":"28628"} +{"$label":"ACTS_IN","name":"Himself (also archive footage)","type":"Role","_key":"95610","_from":"27047","_to":"56239"} +{"$label":"DIRECTED","_key":"40084","_from":"27059","_to":"27049"} +{"$label":"ACTS_IN","name":"Prostituierte","type":"Role","_key":"40083","_from":"27058","_to":"27049"} +{"$label":"ACTS_IN","name":"Junger Michal","type":"Role","_key":"40082","_from":"27057","_to":"27049"} +{"$label":"ACTS_IN","name":"Junger Francis","type":"Role","_key":"40081","_from":"27056","_to":"27049"} +{"$label":"ACTS_IN","name":"Francis' Mutter","type":"Role","_key":"40080","_from":"27055","_to":"27049"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"40079","_from":"27054","_to":"27049"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"40078","_from":"27053","_to":"27049"} +{"$label":"ACTS_IN","name":"Michal","type":"Role","_key":"40076","_from":"27052","_to":"27049"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"40072","_from":"27051","_to":"27049"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"40071","_from":"27050","_to":"27049"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"40100","_from":"27067","_to":"27060"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"40099","_from":"27066","_to":"27060"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"40098","_from":"27065","_to":"27060"} +{"$label":"ACTS_IN","name":"Blondine","type":"Role","_key":"40097","_from":"27064","_to":"27060"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"40096","_from":"27063","_to":"27060"} +{"$label":"ACTS_IN","name":"Rainer","type":"Role","_key":"40095","_from":"27062","_to":"27060"} +{"$label":"ACTS_IN","name":"Frau","type":"Role","_key":"40094","_from":"27061","_to":"27060"} +{"$label":"ACTS_IN","name":"Thomas Sattler","type":"Role","_key":"41183","_from":"27062","_to":"27712"} +{"$label":"ACTS_IN","name":"Frank Thorwald","type":"Role","_key":"40864","_from":"27062","_to":"27503"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"118868","_from":"27063","_to":"69864"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"63625","_from":"27063","_to":"39802"} +{"$label":"ACTS_IN","name":"Frau Ewermann","type":"Role","_key":"40110","_from":"27075","_to":"27068"} +{"$label":"ACTS_IN","name":"Ohm Timmer","type":"Role","_key":"40108","_from":"27074","_to":"27068"} +{"$label":"ACTS_IN","name":"Frau Lafrens","type":"Role","_key":"40107","_from":"27073","_to":"27068"} +{"$label":"ACTS_IN","name":"Hummel","type":"Role","_key":"40106","_from":"27072","_to":"27068"} +{"$label":"ACTS_IN","name":"Heinrich Lafrenz","type":"Role","_key":"40104","_from":"27071","_to":"27068"} +{"$label":"ACTS_IN","name":"Hanna Carstens","type":"Role","_key":"40102","_from":"27070","_to":"27068"} +{"$label":"DIRECTED","_key":"40101","_from":"27069","_to":"27068"} +{"$label":"ACTS_IN","name":"Mary Berry","type":"Role","_key":"42041","_from":"27070","_to":"28168"} +{"$label":"ACTS_IN","name":"Do\u00f1a Amelia","type":"Role","_key":"47645","_from":"27073","_to":"31393"} +{"$label":"ACTS_IN","name":"Volkss\u00e4nger","type":"Role","_key":"40115","_from":"27079","_to":"27076"} +{"$label":"ACTS_IN","name":"Ballhaus Erna","type":"Role","_key":"40112","_from":"27078","_to":"27076"} +{"$label":"DIRECTED","_key":"40111","_from":"27077","_to":"27076"} +{"$label":"ACTS_IN","name":"Nagara","type":"Role","_key":"40118","_from":"27083","_to":"27080"} +{"$label":"ACTS_IN","name":"Nachi","type":"Role","_key":"40117","_from":"27082","_to":"27080"} +{"$label":"ACTS_IN","name":"\u3042\u305a\u307f","type":"Role","_key":"40116","_from":"27081","_to":"27080"} +{"$label":"ACTS_IN","name":"Naeko","type":"Role","_key":"40517","_from":"27081","_to":"27280"} +{"$label":"ACTS_IN","name":"\u3042\u305a\u307f","type":"Role","_key":"40125","_from":"27081","_to":"27084"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102566","_from":"27082","_to":"60342"} +{"$label":"ACTS_IN","name":"Kazuya Omori","type":"Role","_key":"99126","_from":"27082","_to":"58409"} +{"$label":"ACTS_IN","name":"Alphonse Heiderich","type":"Role","_key":"98065","_from":"27082","_to":"57739"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47021","_from":"27082","_to":"31001"} +{"$label":"ACTS_IN","name":"Shin'ichi Mizuki","type":"Role","_key":"40521","_from":"27082","_to":"27280"} +{"$label":"ACTS_IN","name":"Ginkaku","type":"Role","_key":"40128","_from":"27082","_to":"27084"} +{"$label":"ACTS_IN","name":"Nagara","type":"Role","_key":"40126","_from":"27083","_to":"27084"} +{"$label":"DIRECTED","_key":"40132","_from":"27085","_to":"27084"} +{"$label":"DIRECTED","_key":"107450","_from":"27085","_to":"63385"} +{"$label":"DIRECTED","_key":"106658","_from":"27085","_to":"62844"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40138","_from":"27092","_to":"27086"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40137","_from":"27091","_to":"27086"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40136","_from":"27090","_to":"27086"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40135","_from":"27089","_to":"27086"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40134","_from":"27088","_to":"27086"} +{"$label":"DIRECTED","_key":"40133","_from":"27087","_to":"27086"} +{"$label":"DIRECTED","_key":"40139","_from":"27087","_to":"27093"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40544","_from":"27089","_to":"27297"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40147","_from":"27101","_to":"27093"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40146","_from":"27100","_to":"27093"} +{"$label":"ACTS_IN","name":"Bodo","type":"Role","_key":"40145","_from":"27099","_to":"27093"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40144","_from":"27098","_to":"27093"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"40143","_from":"27097","_to":"27093"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"40142","_from":"27096","_to":"27093"} +{"$label":"ACTS_IN","name":"Inga L.","type":"Role","_key":"40141","_from":"27095","_to":"27093"} +{"$label":"DIRECTED","_key":"40140","_from":"27094","_to":"27093"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40157","_from":"27112","_to":"27102"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40156","_from":"27111","_to":"27102"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40155","_from":"27110","_to":"27102"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40154","_from":"27109","_to":"27102"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40153","_from":"27108","_to":"27102"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"40152","_from":"27107","_to":"27102"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"40151","_from":"27106","_to":"27102"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40150","_from":"27105","_to":"27102"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"40149","_from":"27104","_to":"27102"} +{"$label":"DIRECTED","_key":"40148","_from":"27103","_to":"27102"} +{"$label":"ACTS_IN","name":"Sue the waitress","type":"Role","_key":"40177","_from":"27120","_to":"27113"} +{"$label":"ACTS_IN","name":"Purse snatcher","type":"Role","_key":"40174","_from":"27119","_to":"27113"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"40171","_from":"27118","_to":"27113"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"40163","_from":"27117","_to":"27113"} +{"$label":"ACTS_IN","name":"Dot","type":"Role","_key":"40162","_from":"27116","_to":"27113"} +{"$label":"ACTS_IN","name":"Man with Strange Glasses","type":"Role","_key":"40160","_from":"27115","_to":"27113"} +{"$label":"DIRECTED","_key":"40158","_from":"27114","_to":"27113"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51310","_from":"27115","_to":"33463"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"95974","_from":"27116","_to":"56425"} +{"$label":"ACTS_IN","name":"Ruth Patchett","type":"Role","_key":"68198","_from":"27116","_to":"41884"} +{"$label":"ACTS_IN","name":"Julie (voice)","type":"Role","_key":"53325","_from":"27116","_to":"34476"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"88954","_from":"27117","_to":"52694"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"67017","_from":"27118","_to":"41373"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"61246","_from":"27118","_to":"38677"} +{"$label":"ACTS_IN","name":"Young Valentino","type":"Role","_key":"40190","_from":"27131","_to":"27121"} +{"$label":"ACTS_IN","name":"Young Valentino","type":"Role","_key":"40189","_from":"27130","_to":"27121"} +{"$label":"ACTS_IN","name":"Sleazy Maroccan Guide","type":"Role","_key":"40188","_from":"27129","_to":"27121"} +{"$label":"ACTS_IN","name":"Evita","type":"Role","_key":"40187","_from":"27128","_to":"27121"} +{"$label":"ACTS_IN","name":"Robert Stewart","type":"Role","_key":"40186","_from":"27127","_to":"27121"} +{"$label":"ACTS_IN","name":"Sheik","type":"Role","_key":"40185","_from":"27126","_to":"27121"} +{"$label":"ACTS_IN","name":"Paloma","type":"Role","_key":"40184","_from":"27125","_to":"27121"} +{"$label":"ACTS_IN","name":"Catalina","type":"Role","_key":"40183","_from":"27124","_to":"27121"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"40182","_from":"27123","_to":"27121"} +{"$label":"DIRECTED","_key":"40179","_from":"27122","_to":"27121"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"44966","_from":"27122","_to":"29886"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"116985","_from":"27125","_to":"68856"} +{"$label":"ACTS_IN","name":"Black Widow","type":"Role","_key":"101082","_from":"27125","_to":"59562"} +{"$label":"ACTS_IN","name":"Black Widow","type":"Role","_key":"101069","_from":"27125","_to":"59555"} +{"$label":"ACTS_IN","name":"Jane Porter","type":"Role","_key":"95868","_from":"27125","_to":"56381"} +{"$label":"ACTS_IN","name":"Molly Richardson","type":"Role","_key":"91494","_from":"27125","_to":"53940"} +{"$label":"ACTS_IN","name":"Jeeter","type":"Role","_key":"116909","_from":"27129","_to":"68821"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"110579","_from":"27130","_to":"65331"} +{"$label":"ACTS_IN","name":"Ellis","type":"Role","_key":"40197","_from":"27135","_to":"27133"} +{"$label":"DIRECTED","_key":"40192","_from":"27134","_to":"27133"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"40209","_from":"27142","_to":"27136"} +{"$label":"ACTS_IN","name":"Black man","type":"Role","_key":"40207","_from":"27141","_to":"27136"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"40206","_from":"27140","_to":"27136"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"40204","_from":"27139","_to":"27136"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"40203","_from":"27138","_to":"27136"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"40202","_from":"27137","_to":"27136"} +{"$label":"ACTS_IN","name":"De Vet","type":"Role","_key":"40219","_from":"27137","_to":"27143"} +{"$label":"ACTS_IN","name":"Chantalle's father","type":"Role","_key":"40236","_from":"27157","_to":"27143"} +{"$label":"ACTS_IN","name":"Chantalle","type":"Role","_key":"40234","_from":"27156","_to":"27143"} +{"$label":"ACTS_IN","name":"Hengelaar","type":"Role","_key":"40232","_from":"27155","_to":"27143"} +{"$label":"ACTS_IN","name":"Train conductor","type":"Role","_key":"40229","_from":"27154","_to":"27143"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"40226","_from":"27153","_to":"27143"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"40223","_from":"27152","_to":"27143"} +{"$label":"ACTS_IN","name":"Shopassistent","type":"Role","_key":"40221","_from":"27151","_to":"27143"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"40220","_from":"27150","_to":"27143"} +{"$label":"ACTS_IN","name":"Koerier","type":"Role","_key":"40218","_from":"27149","_to":"27143"} +{"$label":"ACTS_IN","name":"De Vos","type":"Role","_key":"40217","_from":"27148","_to":"27143"} +{"$label":"ACTS_IN","name":"Loohman","type":"Role","_key":"40216","_from":"27147","_to":"27143"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"40215","_from":"27146","_to":"27143"} +{"$label":"ACTS_IN","name":"Cremer","type":"Role","_key":"40214","_from":"27145","_to":"27143"} +{"$label":"ACTS_IN","name":"Mrs. Van Tilt","type":"Role","_key":"40213","_from":"27144","_to":"27143"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"120452","_from":"27148","_to":"70760"} +{"$label":"ACTS_IN","name":"Nino","type":"Role","_key":"109440","_from":"27149","_to":"64652"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"91046","_from":"27151","_to":"53722"} +{"$label":"DIRECTED","_key":"95626","_from":"27154","_to":"56243"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"117761","_from":"27156","_to":"69222"} +{"$label":"ACTS_IN","name":"Chef commando","type":"Role","_key":"40250","_from":"27163","_to":"27158"} +{"$label":"ACTS_IN","name":"Gendarme","type":"Role","_key":"40249","_from":"27162","_to":"27158"} +{"$label":"ACTS_IN","name":"Le Forestier","type":"Role","_key":"40248","_from":"27161","_to":"27158"} +{"$label":"ACTS_IN","name":"Homme oiseaux","type":"Role","_key":"40247","_from":"27160","_to":"27158"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"40243","_from":"27159","_to":"27158"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40272","_from":"27171","_to":"27165"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40271","_from":"27170","_to":"27165"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40270","_from":"27169","_to":"27165"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40269","_from":"27168","_to":"27165"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40268","_from":"27167","_to":"27165"} +{"$label":"DIRECTED","_key":"40267","_from":"27166","_to":"27165"} +{"$label":"ACTS_IN","name":"Polizeikommissar","type":"Role","_key":"40286","_from":"27183","_to":"27172"} +{"$label":"ACTS_IN","name":"Polizeikommissar","type":"Role","_key":"40285","_from":"27182","_to":"27172"} +{"$label":"ACTS_IN","name":"Rufus Palmer","type":"Role","_key":"40283","_from":"27181","_to":"27172"} +{"$label":"ACTS_IN","name":"Lilo Weissmantel","type":"Role","_key":"40282","_from":"27180","_to":"27172"} +{"$label":"ACTS_IN","name":"Benno Weissmantel","type":"Role","_key":"40281","_from":"27179","_to":"27172"} +{"$label":"ACTS_IN","name":"Kurt Knaake","type":"Role","_key":"40280","_from":"27178","_to":"27172"} +{"$label":"ACTS_IN","name":"Christel Gallenm\u00fcller","type":"Role","_key":"40279","_from":"27177","_to":"27172"} +{"$label":"ACTS_IN","name":"Frau Hanselmann","type":"Role","_key":"40278","_from":"27176","_to":"27172"} +{"$label":"ACTS_IN","name":"Fanny Gallenm\u00fcller","type":"Role","_key":"40277","_from":"27175","_to":"27172"} +{"$label":"ACTS_IN","name":"Alois Gallenm\u00fcller","type":"Role","_key":"40274","_from":"27174","_to":"27172"} +{"$label":"DIRECTED","_key":"40273","_from":"27173","_to":"27172"} +{"$label":"DIRECTED","_key":"40349","_from":"27173","_to":"27219"} +{"$label":"ACTS_IN","name":"Josef Stutzinger","type":"Role","_key":"45400","_from":"27174","_to":"30098"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"45150","_from":"27174","_to":"29959"} +{"$label":"ACTS_IN","name":"Jonathan Ratzenstaller","type":"Role","_key":"45018","_from":"27174","_to":"29913"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"44470","_from":"27174","_to":"29626"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44432","_from":"27174","_to":"29598"} +{"$label":"ACTS_IN","name":"Ferdinand Lechner","type":"Role","_key":"40350","_from":"27174","_to":"27219"} +{"$label":"DIRECTED","_key":"44469","_from":"27174","_to":"29626"} +{"$label":"DIRECTED","_key":"44455","_from":"27174","_to":"29617"} +{"$label":"ACTS_IN","name":"Franzi Schlott","type":"Role","_key":"45401","_from":"27175","_to":"30098"} +{"$label":"ACTS_IN","name":"Emerenzia Ratzenstaller","type":"Role","_key":"45019","_from":"27175","_to":"29913"} +{"$label":"ACTS_IN","name":"Mutter Engel","type":"Role","_key":"44745","_from":"27175","_to":"29769"} +{"$label":"ACTS_IN","name":"Kathi Lechner","type":"Role","_key":"40352","_from":"27175","_to":"27219"} +{"$label":"ACTS_IN","name":"Gloria von Merlen","type":"Role","_key":"40355","_from":"27180","_to":"27219"} +{"$label":"ACTS_IN","name":"Benedikt","type":"Role","_key":"43091","_from":"27183","_to":"28781"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40299","_from":"27193","_to":"27184"} +{"$label":"ACTS_IN","name":"Cylist","type":"Role","_key":"40298","_from":"27192","_to":"27184"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"40297","_from":"27191","_to":"27184"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n","type":"Role","_key":"40295","_from":"27190","_to":"27184"} +{"$label":"ACTS_IN","name":"Randy Alfred","type":"Role","_key":"40294","_from":"27189","_to":"27184"} +{"$label":"ACTS_IN","name":"Pilot Karl","type":"Role","_key":"40293","_from":"27188","_to":"27184"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"40292","_from":"27187","_to":"27184"} +{"$label":"ACTS_IN","name":"Jenny Hummel","type":"Role","_key":"40288","_from":"27186","_to":"27184"} +{"$label":"DIRECTED","_key":"40287","_from":"27185","_to":"27184"} +{"$label":"DIRECTED","_key":"40607","_from":"27185","_to":"27349"} +{"$label":"ACTS_IN","name":"Sandy Carver","type":"Role","_key":"40308","_from":"27195","_to":"27194"} +{"$label":"ACTS_IN","name":"Charles 'Charlie' Deveraux","type":"Role","_key":"71491","_from":"27195","_to":"43330"} +{"$label":"ACTS_IN","name":"Fred Tate","type":"Role","_key":"70392","_from":"27195","_to":"42870"} +{"$label":"ACTS_IN","name":"Alan Parrish (young)","type":"Role","_key":"51046","_from":"27195","_to":"33309"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40327","_from":"27205","_to":"27196"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40326","_from":"27204","_to":"27196"} +{"$label":"ACTS_IN","name":"Barkeeper","type":"Role","_key":"40325","_from":"27203","_to":"27196"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"40324","_from":"27202","_to":"27196"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40323","_from":"27201","_to":"27196"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"40321","_from":"27200","_to":"27196"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"40320","_from":"27199","_to":"27196"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40318","_from":"27198","_to":"27196"} +{"$label":"DIRECTED","_key":"40311","_from":"27197","_to":"27196"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"40552","_from":"27199","_to":"27300"} +{"$label":"ACTS_IN","name":"Stripteas Lehrer","type":"Role","_key":"40380","_from":"27199","_to":"27226"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40524","_from":"27203","_to":"27284"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"40395","_from":"27204","_to":"27239"} +{"$label":"ACTS_IN","name":"Tanake","type":"Role","_key":"40336","_from":"27209","_to":"27206"} +{"$label":"ACTS_IN","name":"Kudo","type":"Role","_key":"40335","_from":"27208","_to":"27206"} +{"$label":"ACTS_IN","name":"Yakuza-Mitglied","type":"Role","_key":"40334","_from":"27207","_to":"27206"} +{"$label":"ACTS_IN","name":"Kikuchi","type":"Role","_key":"90680","_from":"27209","_to":"53535"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"40348","_from":"27218","_to":"27210"} +{"$label":"ACTS_IN","name":"Quieto","type":"Role","_key":"40346","_from":"27217","_to":"27210"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"40345","_from":"27216","_to":"27210"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"40344","_from":"27215","_to":"27210"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Brinkmann","type":"Role","_key":"40343","_from":"27214","_to":"27210"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"40342","_from":"27213","_to":"27210"} +{"$label":"DIRECTED","_key":"40338","_from":"27212","_to":"27210"} +{"$label":"DIRECTED","_key":"40337","_from":"27211","_to":"27210"} +{"$label":"DIRECTED","_key":"49594","_from":"27212","_to":"32466"} +{"$label":"DIRECTED","_key":"49585","_from":"27212","_to":"32463"} +{"$label":"DIRECTED","_key":"43123","_from":"27212","_to":"28801"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43671","_from":"27215","_to":"29161"} +{"$label":"ACTS_IN","name":"Theophil","type":"Role","_key":"40362","_from":"27225","_to":"27219"} +{"$label":"ACTS_IN","name":"Obermoser","type":"Role","_key":"40361","_from":"27224","_to":"27219"} +{"$label":"ACTS_IN","name":"Fanny","type":"Role","_key":"40360","_from":"27223","_to":"27219"} +{"$label":"ACTS_IN","name":"Hans Holzner","type":"Role","_key":"40359","_from":"27222","_to":"27219"} +{"$label":"ACTS_IN","name":"B\u00e4rbel Lechner","type":"Role","_key":"40358","_from":"27221","_to":"27219"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"40353","_from":"27220","_to":"27219"} +{"$label":"ACTS_IN","name":"Woditschka","type":"Role","_key":"72506","_from":"27220","_to":"43741"} +{"$label":"ACTS_IN","name":"Nikolaus","type":"Role","_key":"45407","_from":"27220","_to":"30098"} +{"$label":"ACTS_IN","name":"Wokurka","type":"Role","_key":"44587","_from":"27220","_to":"29676"} +{"$label":"ACTS_IN","name":"Xaver","type":"Role","_key":"44445","_from":"27220","_to":"29606"} +{"$label":"ACTS_IN","name":"Wurzeneder","type":"Role","_key":"43937","_from":"27220","_to":"29311"} +{"$label":"ACTS_IN","name":"Xaver","type":"Role","_key":"42651","_from":"27220","_to":"28548"} +{"$label":"ACTS_IN","name":"Vroni","type":"Role","_key":"43132","_from":"27223","_to":"28801"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44901","_from":"27224","_to":"29857"} +{"$label":"ACTS_IN","name":"Pankratz","type":"Role","_key":"44720","_from":"27224","_to":"29749"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41064","_from":"27224","_to":"27618"} +{"$label":"ACTS_IN","name":"Narbengesicht","type":"Role","_key":"45031","_from":"27225","_to":"29913"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40387","_from":"27238","_to":"27226"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40386","_from":"27237","_to":"27226"} +{"$label":"ACTS_IN","name":"Agnes Mills","type":"Role","_key":"40385","_from":"27236","_to":"27226"} +{"$label":"ACTS_IN","name":"Nachtclubgast","type":"Role","_key":"40384","_from":"27235","_to":"27226"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"40382","_from":"27234","_to":"27226"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"40378","_from":"27233","_to":"27226"} +{"$label":"ACTS_IN","name":"Ingewolf","type":"Role","_key":"40377","_from":"27232","_to":"27226"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"40376","_from":"27231","_to":"27226"} +{"$label":"ACTS_IN","name":"Nutte","type":"Role","_key":"40375","_from":"27230","_to":"27226"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"40373","_from":"27229","_to":"27226"} +{"$label":"ACTS_IN","name":"Egon Mills","type":"Role","_key":"40371","_from":"27228","_to":"27226"} +{"$label":"ACTS_IN","name":"Binnie","type":"Role","_key":"40367","_from":"27227","_to":"27226"} +{"$label":"ACTS_IN","name":"Maubach","type":"Role","_key":"41996","_from":"27229","_to":"28139"} +{"$label":"ACTS_IN","name":"Mutter \/ Aufnahmenschwester \/ Schwester Ursula (voice)","type":"Role","_key":"54269","_from":"27230","_to":"34843"} +{"$label":"ACTS_IN","name":"Schauspieler","type":"Role","_key":"51876","_from":"27230","_to":"33840"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"44612","_from":"27236","_to":"29691"} +{"$label":"ACTS_IN","name":"Krulich","type":"Role","_key":"40401","_from":"27244","_to":"27239"} +{"$label":"ACTS_IN","name":"Peter Canisius","type":"Role","_key":"40397","_from":"27243","_to":"27239"} +{"$label":"ACTS_IN","name":"Kretschmann","type":"Role","_key":"40396","_from":"27242","_to":"27239"} +{"$label":"ACTS_IN","name":"Killian","type":"Role","_key":"40391","_from":"27241","_to":"27239"} +{"$label":"ACTS_IN","name":"Inge Bauer","type":"Role","_key":"40390","_from":"27240","_to":"27239"} +{"$label":"ACTS_IN","name":"Sozialarbeiterin","type":"Role","_key":"40414","_from":"27249","_to":"27245"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"40413","_from":"27248","_to":"27245"} +{"$label":"ACTS_IN","name":"Rainey","type":"Role","_key":"40408","_from":"27247","_to":"27245"} +{"$label":"ACTS_IN","name":"Christopher McCandless","type":"Role","_key":"40404","_from":"27246","_to":"27245"} +{"$label":"ACTS_IN","name":"Sedgewick Bell","type":"Role","_key":"111469","_from":"27246","_to":"65815"} +{"$label":"ACTS_IN","name":"Francis Doyle","type":"Role","_key":"110213","_from":"27246","_to":"65143"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"95641","_from":"27246","_to":"56251"} +{"$label":"ACTS_IN","name":"Matthew Kidman","type":"Role","_key":"64323","_from":"27246","_to":"40093"} +{"$label":"ACTS_IN","name":"Cleve Jones","type":"Role","_key":"61185","_from":"27246","_to":"38659"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"56785","_from":"27246","_to":"36065"} +{"$label":"ACTS_IN","name":"Speed Racer","type":"Role","_key":"46798","_from":"27246","_to":"30879"} +{"$label":"ACTS_IN","name":"Johnny Truelove","type":"Role","_key":"46762","_from":"27246","_to":"30852"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"102354","_from":"27248","_to":"60227"} +{"$label":"ACTS_IN","name":"Harold Clinton","type":"Role","_key":"40423","_from":"27253","_to":"27250"} +{"$label":"ACTS_IN","name":"Fran Clinton","type":"Role","_key":"40420","_from":"27252","_to":"27250"} +{"$label":"ACTS_IN","name":"Carol McCoy","type":"Role","_key":"40417","_from":"27251","_to":"27250"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"54838","_from":"27251","_to":"35082"} +{"$label":"ACTS_IN","name":"Jennifer Cavalleri","type":"Role","_key":"52349","_from":"27251","_to":"34075"} +{"$label":"DIRECTED","_key":"40430","_from":"27255","_to":"27254"} +{"$label":"ACTS_IN","name":"Lariot","type":"Role","_key":"40467","_from":"27263","_to":"27261"} +{"$label":"ACTS_IN","name":"Maturette","type":"Role","_key":"40463","_from":"27262","_to":"27261"} +{"$label":"ACTS_IN","name":"Young General Fleming","type":"Role","_key":"98020","_from":"27263","_to":"57719"} +{"$label":"ACTS_IN","name":"S.S. Officer Steinach","type":"Role","_key":"40495","_from":"27270","_to":"27264"} +{"$label":"ACTS_IN","name":"Griffith 'Tailor'","type":"Role","_key":"40491","_from":"27269","_to":"27264"} +{"$label":"ACTS_IN","name":"Haynes ('Diversions')","type":"Role","_key":"40490","_from":"27268","_to":"27264"} +{"$label":"ACTS_IN","name":"Goff","type":"Role","_key":"40483","_from":"27267","_to":"27264"} +{"$label":"ACTS_IN","name":"Flying Officer Archibald Ives \"The Mole\"","type":"Role","_key":"40480","_from":"27266","_to":"27264"} +{"$label":"ACTS_IN","name":"Flight Lt. William Dickes \"The Tunneler\"","type":"Role","_key":"40479","_from":"27265","_to":"27264"} +{"$label":"ACTS_IN","name":"Flying Officer Hoppy Hopkinson","type":"Role","_key":"106346","_from":"27266","_to":"62650"} +{"$label":"ACTS_IN","name":"Von Diepel","type":"Role","_key":"95035","_from":"27270","_to":"55943"} +{"$label":"ACTS_IN","name":"German tank commander","type":"Role","_key":"70923","_from":"27270","_to":"43079"} +{"$label":"DIRECTED","_key":"40502","_from":"27275","_to":"27271"} +{"$label":"DIRECTED","_key":"40501","_from":"27274","_to":"27271"} +{"$label":"ACTS_IN","name":"Willie the Driver","type":"Role","_key":"40500","_from":"27273","_to":"27271"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"40498","_from":"27272","_to":"27271"} +{"$label":"ACTS_IN","name":"Elvira Bonner","type":"Role","_key":"40507","_from":"27277","_to":"27276"} +{"$label":"ACTS_IN","name":"Ann Brandon","type":"Role","_key":"112381","_from":"27277","_to":"66350"} +{"$label":"ACTS_IN","name":"Lana Carlsen","type":"Role","_key":"110565","_from":"27277","_to":"65329"} +{"$label":"ACTS_IN","name":"Lucius","type":"Role","_key":"40514","_from":"27279","_to":"27278"} +{"$label":"ACTS_IN","name":"Hideo Otomo","type":"Role","_key":"40520","_from":"27283","_to":"27280"} +{"$label":"ACTS_IN","name":"Shige Sano","type":"Role","_key":"40519","_from":"27282","_to":"27280"} +{"$label":"ACTS_IN","name":"Takichiro Sada","type":"Role","_key":"40518","_from":"27281","_to":"27280"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40523","_from":"27286","_to":"27284"} +{"$label":"DIRECTED","_key":"40522","_from":"27285","_to":"27284"} +{"$label":"ACTS_IN","name":"Hinkefuss","type":"Role","_key":"40537","_from":"27296","_to":"27287"} +{"$label":"ACTS_IN","name":"Oehrchen","type":"Role","_key":"40536","_from":"27295","_to":"27287"} +{"$label":"ACTS_IN","name":"Manfred","type":"Role","_key":"40535","_from":"27294","_to":"27287"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"40534","_from":"27293","_to":"27287"} +{"$label":"ACTS_IN","name":"Viola","type":"Role","_key":"40533","_from":"27292","_to":"27287"} +{"$label":"ACTS_IN","name":"Jensen","type":"Role","_key":"40532","_from":"27291","_to":"27287"} +{"$label":"ACTS_IN","name":"Gerti Weber","type":"Role","_key":"40530","_from":"27290","_to":"27287"} +{"$label":"ACTS_IN","name":"Renate Petersen","type":"Role","_key":"40529","_from":"27289","_to":"27287"} +{"$label":"ACTS_IN","name":"Susanne Peterden","type":"Role","_key":"40528","_from":"27288","_to":"27287"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40543","_from":"27299","_to":"27297"} +{"$label":"DIRECTED","_key":"40538","_from":"27298","_to":"27297"} +{"$label":"ACTS_IN","name":"Richter","type":"Role","_key":"40557","_from":"27310","_to":"27300"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"40555","_from":"27309","_to":"27300"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"40554","_from":"27308","_to":"27300"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"40551","_from":"27307","_to":"27300"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"40550","_from":"27306","_to":"27300"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"40549","_from":"27305","_to":"27300"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"40548","_from":"27304","_to":"27300"} +{"$label":"ACTS_IN","name":"Rocker","type":"Role","_key":"40547","_from":"27303","_to":"27300"} +{"$label":"ACTS_IN","name":"Dr. Vogt","type":"Role","_key":"40546","_from":"27302","_to":"27300"} +{"$label":"DIRECTED","_key":"40545","_from":"27301","_to":"27300"} +{"$label":"DIRECTED","_key":"44578","_from":"27301","_to":"29676"} +{"$label":"ACTS_IN","name":"Wurstmaxe","type":"Role","_key":"46054","_from":"27310","_to":"30425"} +{"$label":"ACTS_IN","name":"Dagobert","type":"Role","_key":"44601","_from":"27310","_to":"29680"} +{"$label":"ACTS_IN","name":"Gendarm","type":"Role","_key":"40565","_from":"27318","_to":"27311"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"40564","_from":"27317","_to":"27311"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"40563","_from":"27316","_to":"27311"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"40562","_from":"27315","_to":"27311"} +{"$label":"ACTS_IN","name":"Monika","type":"Role","_key":"40561","_from":"27314","_to":"27311"} +{"$label":"ACTS_IN","name":"Bonifaz","type":"Role","_key":"40560","_from":"27312","_to":"27311"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"40559","_from":"27313","_to":"27311"} +{"$label":"DIRECTED","_key":"40558","_from":"27312","_to":"27311"} +{"$label":"ACTS_IN","name":"Dorfpolizist","type":"Role","_key":"40574","_from":"27312","_to":"27319"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45311","_from":"27314","_to":"30050"} +{"$label":"ACTS_IN","name":"Margot Rieser","type":"Role","_key":"43708","_from":"27314","_to":"29186"} +{"$label":"ACTS_IN","name":"Martha Pedersen","type":"Role","_key":"40570","_from":"27317","_to":"27319"} +{"$label":"ACTS_IN","name":"Wastel","type":"Role","_key":"40575","_from":"27325","_to":"27319"} +{"$label":"ACTS_IN","name":"Nothburga","type":"Role","_key":"40573","_from":"27324","_to":"27319"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"40572","_from":"27323","_to":"27319"} +{"$label":"ACTS_IN","name":"Everl","type":"Role","_key":"40569","_from":"27322","_to":"27319"} +{"$label":"ACTS_IN","name":"Bonifaz","type":"Role","_key":"40568","_from":"27321","_to":"27319"} +{"$label":"DIRECTED","_key":"40566","_from":"27320","_to":"27319"} +{"$label":"ACTS_IN","name":"Madame Ressel","type":"Role","_key":"40587","_from":"27335","_to":"27326"} +{"$label":"ACTS_IN","name":"Vater Gei\u00dfler","type":"Role","_key":"40585","_from":"27334","_to":"27326"} +{"$label":"ACTS_IN","name":"Georgine","type":"Role","_key":"40584","_from":"27333","_to":"27326"} +{"$label":"ACTS_IN","name":"Zuh\u00e4lter","type":"Role","_key":"40582","_from":"27332","_to":"27326"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"40581","_from":"27331","_to":"27326"} +{"$label":"ACTS_IN","name":"Helmut Brett","type":"Role","_key":"40580","_from":"27330","_to":"27326"} +{"$label":"ACTS_IN","name":"Varietebesitzerin","type":"Role","_key":"40579","_from":"27329","_to":"27326"} +{"$label":"ACTS_IN","name":"Angelika Gei\u00dfler","type":"Role","_key":"40577","_from":"27328","_to":"27326"} +{"$label":"DIRECTED","_key":"40576","_from":"27327","_to":"27326"} +{"$label":"ACTS_IN","name":"Hertha","type":"Role","_key":"64251","_from":"27328","_to":"40074"} +{"$label":"ACTS_IN","name":"Gundy","type":"Role","_key":"42680","_from":"27328","_to":"28569"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"45945","_from":"27330","_to":"30376"} +{"$label":"ACTS_IN","name":"Artist","type":"Role","_key":"42341","_from":"27330","_to":"28337"} +{"$label":"ACTS_IN","name":"Prinz Asaka","type":"Role","_key":"40594","_from":"27338","_to":"27336"} +{"$label":"DIRECTED","_key":"40588","_from":"27337","_to":"27336"} +{"$label":"ACTS_IN","name":"Ryuhei Sasaki","type":"Role","_key":"51555","_from":"27338","_to":"33636"} +{"$label":"ACTS_IN","name":"Freier","type":"Role","_key":"40606","_from":"27348","_to":"27339"} +{"$label":"ACTS_IN","name":"Nutte","type":"Role","_key":"40605","_from":"27347","_to":"27339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40603","_from":"27346","_to":"27339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40602","_from":"27345","_to":"27339"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"40601","_from":"27344","_to":"27339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40600","_from":"27343","_to":"27339"} +{"$label":"ACTS_IN","name":"Masken Ronnie","type":"Role","_key":"40599","_from":"27342","_to":"27339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40598","_from":"27341","_to":"27339"} +{"$label":"DIRECTED","_key":"40597","_from":"27340","_to":"27339"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40619","_from":"27356","_to":"27349"} +{"$label":"ACTS_IN","name":"T\u00e4m","type":"Role","_key":"40617","_from":"27355","_to":"27349"} +{"$label":"ACTS_IN","name":"Rosita","type":"Role","_key":"40616","_from":"27354","_to":"27349"} +{"$label":"ACTS_IN","name":"Hermann Polt","type":"Role","_key":"40614","_from":"27353","_to":"27349"} +{"$label":"ACTS_IN","name":"Ingeborg","type":"Role","_key":"40611","_from":"27352","_to":"27349"} +{"$label":"ACTS_IN","name":"Melchior Schl\u00f6mpp","type":"Role","_key":"40610","_from":"27351","_to":"27349"} +{"$label":"ACTS_IN","name":"Wilm","type":"Role","_key":"40609","_from":"27350","_to":"27349"} +{"$label":"ACTS_IN","name":"Prof. Mutzbauer","type":"Role","_key":"45527","_from":"27350","_to":"30151"} +{"$label":"ACTS_IN","name":"Organist Dramberger","type":"Role","_key":"42133","_from":"27350","_to":"28218"} +{"$label":"DIRECTED","_key":"40627","_from":"27359","_to":"27357"} +{"$label":"ACTS_IN","name":"Jasper Hadley","type":"Role","_key":"40626","_from":"27358","_to":"27357"} +{"$label":"ACTS_IN","name":"Mac McCreery","type":"Role","_key":"118165","_from":"27358","_to":"69448"} +{"$label":"DIRECTED","_key":"94599","_from":"27359","_to":"55738"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40636","_from":"27366","_to":"27360"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40635","_from":"27365","_to":"27360"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40632","_from":"27364","_to":"27360"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40631","_from":"27363","_to":"27360"} +{"$label":"ACTS_IN","name":"Der Major","type":"Role","_key":"40629","_from":"27362","_to":"27360"} +{"$label":"DIRECTED","_key":"40628","_from":"27361","_to":"27360"} +{"$label":"DIRECTED","_key":"43819","_from":"27361","_to":"29265"} +{"$label":"ACTS_IN","name":"Gustav Andresen","type":"Role","_key":"40759","_from":"27364","_to":"27430"} +{"$label":"ACTS_IN","name":"Held","type":"Role","_key":"40645","_from":"27370","_to":"27367"} +{"$label":"ACTS_IN","name":"Henze","type":"Role","_key":"40644","_from":"27369","_to":"27367"} +{"$label":"ACTS_IN","name":"Annemarie","type":"Role","_key":"40641","_from":"27368","_to":"27367"} +{"$label":"ACTS_IN","name":"Heimleiter Kollakowski","type":"Role","_key":"91032","_from":"27370","_to":"53710"} +{"$label":"DIRECTED","_key":"40665","_from":"27375","_to":"27371"} +{"$label":"ACTS_IN","name":"Dr. Samantha Yep","type":"Role","_key":"40662","_from":"27374","_to":"27371"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"40661","_from":"27373","_to":"27371"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"40659","_from":"27372","_to":"27371"} +{"$label":"ACTS_IN","name":"Neil Cotton","type":"Role","_key":"114384","_from":"27372","_to":"67374"} +{"$label":"ACTS_IN","name":"Paul Loomis","type":"Role","_key":"106713","_from":"27372","_to":"62890"} +{"$label":"ACTS_IN","name":"James Lansome","type":"Role","_key":"97878","_from":"27372","_to":"57652"} +{"$label":"ACTS_IN","name":"Kevin Parson","type":"Role","_key":"95258","_from":"27372","_to":"56052"} +{"$label":"ACTS_IN","name":"Tommy Boulay","type":"Role","_key":"70402","_from":"27372","_to":"42873"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"68855","_from":"27372","_to":"42177"} +{"$label":"ACTS_IN","name":"2nd Lt. Henry Herrick","type":"Role","_key":"64310","_from":"27372","_to":"40088"} +{"$label":"ACTS_IN","name":"David Lamont","type":"Role","_key":"57704","_from":"27372","_to":"36527"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"114728","_from":"27374","_to":"67574"} +{"$label":"ACTS_IN","name":"Kitsune (voice)","type":"Role","_key":"110020","_from":"27374","_to":"65008"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"40678","_from":"27382","_to":"27376"} +{"$label":"ACTS_IN","name":"Lehrerin Cornelia","type":"Role","_key":"40677","_from":"27381","_to":"27376"} +{"$label":"ACTS_IN","name":"Callcenter-Chef","type":"Role","_key":"40675","_from":"27380","_to":"27376"} +{"$label":"ACTS_IN","name":"Annas Mutter","type":"Role","_key":"40674","_from":"27379","_to":"27376"} +{"$label":"ACTS_IN","name":"Moritz","type":"Role","_key":"40669","_from":"27378","_to":"27376"} +{"$label":"DIRECTED","_key":"40666","_from":"27377","_to":"27376"} +{"$label":"DIRECTED","_key":"71388","_from":"27377","_to":"43298"} +{"$label":"DIRECTED","_key":"63958","_from":"27377","_to":"39947"} +{"$label":"ACTS_IN","name":"Juergen","type":"Role","_key":"66819","_from":"27380","_to":"41274"} +{"$label":"ACTS_IN","name":"Kriemhild Nastrowa","type":"Role","_key":"52646","_from":"27381","_to":"34194"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"42566","_from":"27381","_to":"28489"} +{"$label":"ACTS_IN","name":"Baptistin","type":"Role","_key":"40700","_from":"27391","_to":"27383"} +{"$label":"ACTS_IN","name":"Danish Tourist","type":"Role","_key":"40699","_from":"27390","_to":"27383"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"40698","_from":"27389","_to":"27383"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"40697","_from":"27388","_to":"27383"} +{"$label":"ACTS_IN","name":"American Tourist","type":"Role","_key":"40696","_from":"27387","_to":"27383"} +{"$label":"ACTS_IN","name":"Highway Policeman","type":"Role","_key":"40688","_from":"27386","_to":"27383"} +{"$label":"ACTS_IN","name":"Tall Girl","type":"Role","_key":"40687","_from":"27385","_to":"27383"} +{"$label":"ACTS_IN","name":"Danielle 'Dany' Lang","type":"Role","_key":"40681","_from":"27384","_to":"27383"} +{"$label":"ACTS_IN","name":"Emma Fairfax","type":"Role","_key":"106937","_from":"27384","_to":"63050"} +{"$label":"ACTS_IN","name":"Mamy","type":"Role","_key":"48839","_from":"27387","_to":"32023"} +{"$label":"ACTS_IN","name":"Commissaire Bretonnet","type":"Role","_key":"89992","_from":"27388","_to":"53238"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40710","_from":"27399","_to":"27392"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40709","_from":"27398","_to":"27392"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40707","_from":"27397","_to":"27392"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40706","_from":"27396","_to":"27392"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40705","_from":"27395","_to":"27392"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40703","_from":"27394","_to":"27392"} +{"$label":"DIRECTED","_key":"40702","_from":"27393","_to":"27392"} +{"$label":"DIRECTED","_key":"65129","_from":"27393","_to":"40454"} +{"$label":"ACTS_IN","name":"Resort Owner","type":"Role","_key":"40716","_from":"27402","_to":"27400"} +{"$label":"ACTS_IN","name":"Strom","type":"Role","_key":"40715","_from":"27401","_to":"27400"} +{"$label":"ACTS_IN","name":"Truck Woman","type":"Role","_key":"97617","_from":"27401","_to":"57466"} +{"$label":"ACTS_IN","name":"Edna Fender","type":"Role","_key":"58135","_from":"27401","_to":"36776"} +{"$label":"DIRECTED","_key":"40728","_from":"27405","_to":"27403"} +{"$label":"ACTS_IN","name":"Joshua Cairn","type":"Role","_key":"40724","_from":"27404","_to":"27403"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"40747","_from":"27424","_to":"27406"} +{"$label":"ACTS_IN","name":"Jochen","type":"Role","_key":"40746","_from":"27407","_to":"27406"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"40745","_from":"27423","_to":"27406"} +{"$label":"ACTS_IN","name":"Torsten","type":"Role","_key":"40744","_from":"27422","_to":"27406"} +{"$label":"ACTS_IN","name":"Rodriguez","type":"Role","_key":"40743","_from":"27421","_to":"27406"} +{"$label":"ACTS_IN","name":"Kraus","type":"Role","_key":"40742","_from":"27420","_to":"27406"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"40741","_from":"27419","_to":"27406"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"40740","_from":"27418","_to":"27406"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"40739","_from":"27417","_to":"27406"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"40738","_from":"27416","_to":"27406"} +{"$label":"ACTS_IN","name":"Pew","type":"Role","_key":"40737","_from":"27415","_to":"27406"} +{"$label":"ACTS_IN","name":"Mathew","type":"Role","_key":"40736","_from":"27414","_to":"27406"} +{"$label":"ACTS_IN","name":"Christiane","type":"Role","_key":"40735","_from":"27413","_to":"27406"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"40734","_from":"27412","_to":"27406"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"40733","_from":"27411","_to":"27406"} +{"$label":"ACTS_IN","name":"Ismael","type":"Role","_key":"40732","_from":"27410","_to":"27406"} +{"$label":"ACTS_IN","name":"Gustaf","type":"Role","_key":"40731","_from":"27409","_to":"27406"} +{"$label":"DIRECTED","_key":"40730","_from":"27408","_to":"27406"} +{"$label":"DIRECTED","_key":"40729","_from":"27407","_to":"27406"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40755","_from":"27429","_to":"27425"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40753","_from":"27428","_to":"27425"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40751","_from":"27427","_to":"27425"} +{"$label":"DIRECTED","_key":"40748","_from":"27426","_to":"27425"} +{"$label":"ACTS_IN","name":"Heidemann","type":"Role","_key":"41808","_from":"27427","_to":"28050"} +{"$label":"ACTS_IN","name":"Frau Krause","type":"Role","_key":"45041","_from":"27429","_to":"29920"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40765","_from":"27435","_to":"27430"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40763","_from":"27434","_to":"27430"} +{"$label":"ACTS_IN","name":"Elli Andresen","type":"Role","_key":"40761","_from":"27433","_to":"27430"} +{"$label":"ACTS_IN","name":"Klara Andresen","type":"Role","_key":"40758","_from":"27432","_to":"27430"} +{"$label":"DIRECTED","_key":"40757","_from":"27431","_to":"27430"} +{"$label":"ACTS_IN","name":"Frl. Nessel","type":"Role","_key":"45092","_from":"27432","_to":"29936"} +{"$label":"ACTS_IN","name":"Gretl Giese","type":"Role","_key":"41135","_from":"27432","_to":"27677"} +{"$label":"ACTS_IN","name":"Opa Dudu","type":"Role","_key":"40774","_from":"27444","_to":"27436"} +{"$label":"ACTS_IN","name":"Paulina","type":"Role","_key":"40773","_from":"27443","_to":"27436"} +{"$label":"ACTS_IN","name":"Tania","type":"Role","_key":"40772","_from":"27442","_to":"27436"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"40771","_from":"27441","_to":"27436"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"40770","_from":"27440","_to":"27436"} +{"$label":"ACTS_IN","name":"Mutter Gloria","type":"Role","_key":"40768","_from":"27439","_to":"27436"} +{"$label":"DIRECTED","_key":"40767","_from":"27438","_to":"27436"} +{"$label":"DIRECTED","_key":"40766","_from":"27437","_to":"27436"} +{"$label":"ACTS_IN","name":"Norma Belvedere","type":"Role","_key":"120153","_from":"27439","_to":"70569"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"91637","_from":"27441","_to":"54038"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"62655","_from":"27441","_to":"39410"} +{"$label":"ACTS_IN","name":"Gustav Adolf Ekdahl","type":"Role","_key":"40782","_from":"27451","_to":"27445"} +{"$label":"ACTS_IN","name":"Helena Ekdahl","type":"Role","_key":"40781","_from":"27450","_to":"27445"} +{"$label":"ACTS_IN","name":"Bischof Edvard Vergerus","type":"Role","_key":"40780","_from":"27449","_to":"27445"} +{"$label":"ACTS_IN","name":"Emilie Ekdahl","type":"Role","_key":"40779","_from":"27448","_to":"27445"} +{"$label":"ACTS_IN","name":"Fanny Ekdahl","type":"Role","_key":"40777","_from":"27447","_to":"27445"} +{"$label":"ACTS_IN","name":"Alexander Ekdahl","type":"Role","_key":"40776","_from":"27446","_to":"27445"} +{"$label":"ACTS_IN","name":"Harriet Vanger","type":"Role","_key":"104556","_from":"27448","_to":"61500"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"91589","_from":"27448","_to":"53997"} +{"$label":"ACTS_IN","name":"Ernest Levendahl","type":"Role","_key":"98612","_from":"27449","_to":"58110"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"56165","_from":"27449","_to":"35702"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"68950","_from":"27450","_to":"42214"} +{"$label":"ACTS_IN","name":"Old Lorens Lowenhielm","type":"Role","_key":"72260","_from":"27451","_to":"43656"} +{"$label":"ACTS_IN","name":"Lab Worker","type":"Role","_key":"40805","_from":"27471","_to":"27452"} +{"$label":"ACTS_IN","name":"EDAC Worker","type":"Role","_key":"40804","_from":"27470","_to":"27452"} +{"$label":"ACTS_IN","name":"Stun Suspect","type":"Role","_key":"40803","_from":"27469","_to":"27452"} +{"$label":"ACTS_IN","name":"Miss Potion","type":"Role","_key":"40802","_from":"27468","_to":"27452"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"40801","_from":"27467","_to":"27452"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"40800","_from":"27466","_to":"27452"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40799","_from":"27465","_to":"27452"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"40798","_from":"27464","_to":"27452"} +{"$label":"ACTS_IN","name":"Young Kara","type":"Role","_key":"40797","_from":"27463","_to":"27452"} +{"$label":"ACTS_IN","name":"Mary Jensen","type":"Role","_key":"40796","_from":"27462","_to":"27452"} +{"$label":"ACTS_IN","name":"Margaret Hannington","type":"Role","_key":"40795","_from":"27461","_to":"27452"} +{"$label":"ACTS_IN","name":"David Lincoln","type":"Role","_key":"40794","_from":"27460","_to":"27452"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"40793","_from":"27459","_to":"27452"} +{"$label":"ACTS_IN","name":"Dr. John Tedesco","type":"Role","_key":"40792","_from":"27458","_to":"27452"} +{"$label":"ACTS_IN","name":"Stan Chasen","type":"Role","_key":"40790","_from":"27457","_to":"27452"} +{"$label":"ACTS_IN","name":"Robert Booker","type":"Role","_key":"40789","_from":"27456","_to":"27452"} +{"$label":"ACTS_IN","name":"Kara Jensen","type":"Role","_key":"40788","_from":"27455","_to":"27452"} +{"$label":"ACTS_IN","name":"Julia Merrow","type":"Role","_key":"40787","_from":"27454","_to":"27452"} +{"$label":"DIRECTED","_key":"40785","_from":"27453","_to":"27452"} +{"$label":"ACTS_IN","name":"Detective Amanda Watts","type":"Role","_key":"116207","_from":"27454","_to":"68420"} +{"$label":"ACTS_IN","name":"Laurel Canyon","type":"Role","_key":"116043","_from":"27454","_to":"68338"} +{"$label":"ACTS_IN","name":"Melissa Anderson","type":"Role","_key":"43622","_from":"27454","_to":"29130"} +{"$label":"ACTS_IN","name":"Julie Miller","type":"Role","_key":"101125","_from":"27455","_to":"59583"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"67619","_from":"27455","_to":"41614"} +{"$label":"ACTS_IN","name":"Weston","type":"Role","_key":"115290","_from":"27457","_to":"67881"} +{"$label":"ACTS_IN","name":"Agent Tremain","type":"Role","_key":"60803","_from":"27457","_to":"38408"} +{"$label":"ACTS_IN","name":"Beat Cop","type":"Role","_key":"88275","_from":"27458","_to":"52358"} +{"$label":"DIRECTED","_key":"55929","_from":"27458","_to":"35569"} +{"$label":"ACTS_IN","name":"Kendall Mullins","type":"Role","_key":"58144","_from":"27460","_to":"36780"} +{"$label":"ACTS_IN","name":"Eugenia Parrado","type":"Role","_key":"46418","_from":"27461","_to":"30656"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109492","_from":"27463","_to":"64674"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"47968","_from":"27466","_to":"31551"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"40827","_from":"27488","_to":"27472"} +{"$label":"ACTS_IN","name":"Technikan","type":"Role","_key":"40826","_from":"27487","_to":"27472"} +{"$label":"ACTS_IN","name":"City Engineer","type":"Role","_key":"40825","_from":"27486","_to":"27472"} +{"$label":"ACTS_IN","name":"Mayor Salizar","type":"Role","_key":"40824","_from":"27485","_to":"27472"} +{"$label":"ACTS_IN","name":"Krissy","type":"Role","_key":"40823","_from":"27484","_to":"27472"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"40822","_from":"27483","_to":"27472"} +{"$label":"ACTS_IN","name":"Zero","type":"Role","_key":"40821","_from":"27482","_to":"27472"} +{"$label":"ACTS_IN","name":"Tara Beckett","type":"Role","_key":"40820","_from":"27481","_to":"27472"} +{"$label":"ACTS_IN","name":"Janet Hill","type":"Role","_key":"40819","_from":"27480","_to":"27472"} +{"$label":"ACTS_IN","name":"Norris","type":"Role","_key":"40818","_from":"27479","_to":"27472"} +{"$label":"ACTS_IN","name":"Styles","type":"Role","_key":"40817","_from":"27478","_to":"27472"} +{"$label":"ACTS_IN","name":"MacVaughn","type":"Role","_key":"40816","_from":"27477","_to":"27472"} +{"$label":"ACTS_IN","name":"Fingers","type":"Role","_key":"40815","_from":"27476","_to":"27472"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"40814","_from":"27475","_to":"27472"} +{"$label":"ACTS_IN","name":"Faith Beckett","type":"Role","_key":"40812","_from":"27474","_to":"27472"} +{"$label":"ACTS_IN","name":"Julie McGrath","type":"Role","_key":"40809","_from":"27473","_to":"27472"} +{"$label":"ACTS_IN","name":"Agent Amanda Stuart","type":"Role","_key":"114813","_from":"27473","_to":"67629"} +{"$label":"ACTS_IN","name":"Dr. Spencer","type":"Role","_key":"60249","_from":"27476","_to":"38004"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"43420","_from":"27479","_to":"29005"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"119743","_from":"27480","_to":"70316"} +{"$label":"ACTS_IN","name":"Henry Kissinger","type":"Role","_key":"93270","_from":"27486","_to":"54939"} +{"$label":"ACTS_IN","name":"Lyle Schell","type":"Role","_key":"58271","_from":"27486","_to":"36848"} +{"$label":"ACTS_IN","name":"Vivian Feffer","type":"Role","_key":"40837","_from":"27491","_to":"27489"} +{"$label":"DIRECTED","_key":"40828","_from":"27490","_to":"27489"} +{"$label":"DIRECTED","_key":"109439","_from":"27490","_to":"64647"} +{"$label":"DIRECTED","_key":"107602","_from":"27490","_to":"63517"} +{"$label":"ACTS_IN","name":"Carole Bennett","type":"Role","_key":"98664","_from":"27491","_to":"58148"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"40849","_from":"27497","_to":"27492"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"40848","_from":"27496","_to":"27492"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"40846","_from":"27495","_to":"27492"} +{"$label":"ACTS_IN","name":"Roland Cassard","type":"Role","_key":"40845","_from":"27494","_to":"27492"} +{"$label":"ACTS_IN","name":"Tante \u00c9lise","type":"Role","_key":"40844","_from":"27493","_to":"27492"} +{"$label":"ACTS_IN","name":"Ms. Milner","type":"Role","_key":"40857","_from":"27502","_to":"27498"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"40856","_from":"27501","_to":"27498"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"40855","_from":"27500","_to":"27498"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"40853","_from":"27499","_to":"27498"} +{"$label":"ACTS_IN","name":"Dan Torrance","type":"Role","_key":"118854","_from":"27499","_to":"69859"} +{"$label":"ACTS_IN","name":"SCU Lt. Dan Turpin","type":"Role","_key":"111027","_from":"27499","_to":"65577"} +{"$label":"ACTS_IN","name":"Victor Lyons","type":"Role","_key":"99732","_from":"27499","_to":"58819"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"72140","_from":"27501","_to":"43605"} +{"$label":"ACTS_IN","name":"Andy Stewart","type":"Role","_key":"54752","_from":"27501","_to":"35043"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"53735","_from":"27501","_to":"34643"} +{"$label":"ACTS_IN","name":"Barbra Warblers","type":"Role","_key":"119357","_from":"27502","_to":"70136"} +{"$label":"ACTS_IN","name":"Maria Heller","type":"Role","_key":"40868","_from":"27508","_to":"27503"} +{"$label":"ACTS_IN","name":"Felix Thorwald","type":"Role","_key":"40862","_from":"27507","_to":"27503"} +{"$label":"ACTS_IN","name":"Julia M\u00fcller","type":"Role","_key":"40861","_from":"27506","_to":"27503"} +{"$label":"ACTS_IN","name":"Theresa Mayr-Thorwald","type":"Role","_key":"40859","_from":"27505","_to":"27503"} +{"$label":"DIRECTED","_key":"40858","_from":"27504","_to":"27503"} +{"$label":"DIRECTED","_key":"43032","_from":"27504","_to":"28745"} +{"$label":"ACTS_IN","name":"Ariane Auer","type":"Role","_key":"42553","_from":"27505","_to":"28483"} +{"$label":"ACTS_IN","name":"Fabi","type":"Role","_key":"65490","_from":"27507","_to":"40600"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"40892","_from":"27512","_to":"27510"} +{"$label":"ACTS_IN","name":"Passersby","type":"Role","_key":"40890","_from":"27511","_to":"27510"} +{"$label":"ACTS_IN","name":"Black Dragon Clan Captain, Adon Chief, Pyle, Van's Father","type":"Role","_key":"110743","_from":"27511","_to":"65413"} +{"$label":"ACTS_IN","name":"Chef Insp. Hearne","type":"Role","_key":"40904","_from":"27517","_to":"27513"} +{"$label":"ACTS_IN","name":"Brogan-Moore","type":"Role","_key":"40901","_from":"27516","_to":"27513"} +{"$label":"ACTS_IN","name":"Mayhew","type":"Role","_key":"40900","_from":"27515","_to":"27513"} +{"$label":"DIRECTED","_key":"40893","_from":"27514","_to":"27513"} +{"$label":"ACTS_IN","name":"Uncle Jack","type":"Role","_key":"110586","_from":"27517","_to":"65331"} +{"$label":"ACTS_IN","name":"Miss French","type":"Role","_key":"40912","_from":"27526","_to":"27518"} +{"$label":"ACTS_IN","name":"Robert Mayherne","type":"Role","_key":"40911","_from":"27525","_to":"27518"} +{"$label":"ACTS_IN","name":"Leonard Vole","type":"Role","_key":"40910","_from":"27524","_to":"27518"} +{"$label":"ACTS_IN","name":"Romaine Heilger","type":"Role","_key":"40909","_from":"27523","_to":"27518"} +{"$label":"ACTS_IN","name":"Defending Counsel","type":"Role","_key":"40908","_from":"27522","_to":"27518"} +{"$label":"ACTS_IN","name":"Walker","type":"Role","_key":"40907","_from":"27521","_to":"27518"} +{"$label":"ACTS_IN","name":"Proseculting Counsel","type":"Role","_key":"40906","_from":"27520","_to":"27518"} +{"$label":"DIRECTED","_key":"40905","_from":"27519","_to":"27518"} +{"$label":"ACTS_IN","name":"Jack von Stuchitz","type":"Role","_key":"40920","_from":"27533","_to":"27527"} +{"$label":"ACTS_IN","name":"Gottlieb","type":"Role","_key":"40919","_from":"27532","_to":"27527"} +{"$label":"ACTS_IN","name":"Ernestine","type":"Role","_key":"40918","_from":"27531","_to":"27527"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"40917","_from":"27530","_to":"27527"} +{"$label":"ACTS_IN","name":"Aurelius","type":"Role","_key":"40916","_from":"27529","_to":"27527"} +{"$label":"DIRECTED","_key":"40913","_from":"27528","_to":"27527"} +{"$label":"DIRECTED","_key":"66800","_from":"27528","_to":"41265"} +{"$label":"ACTS_IN","name":"Martin Lahnstein","type":"Role","_key":"41189","_from":"27529","_to":"27712"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"104457","_from":"27530","_to":"61435"} +{"$label":"ACTS_IN","name":"Dr. Berger","type":"Role","_key":"44381","_from":"27533","_to":"29567"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42508","_from":"27533","_to":"28457"} +{"$label":"ACTS_IN","name":"Tante","type":"Role","_key":"40927","_from":"27538","_to":"27534"} +{"$label":"ACTS_IN","name":"Gast im Hotel","type":"Role","_key":"40926","_from":"27537","_to":"27534"} +{"$label":"ACTS_IN","name":"Gesch\u00e4ftsf\u00fchrer des Hotels","type":"Role","_key":"40925","_from":"27536","_to":"27534"} +{"$label":"ACTS_IN","name":"Br\u00e4utigam der Nichte","type":"Role","_key":"40924","_from":"27535","_to":"27534"} +{"$label":"ACTS_IN","name":"Landgerichtsrat a.D.","type":"Role","_key":"44917","_from":"27537","_to":"29866"} +{"$label":"ACTS_IN","name":"Manons Tante","type":"Role","_key":"41933","_from":"27538","_to":"28098"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40941","_from":"27546","_to":"27539"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"40939","_from":"27545","_to":"27539"} +{"$label":"ACTS_IN","name":"Clementine","type":"Role","_key":"40938","_from":"27544","_to":"27539"} +{"$label":"ACTS_IN","name":"Petra Buntje","type":"Role","_key":"40936","_from":"27543","_to":"27539"} +{"$label":"ACTS_IN","name":"Kuno Hirsekorn","type":"Role","_key":"40935","_from":"27542","_to":"27539"} +{"$label":"ACTS_IN","name":"Lotti Hirsekorn","type":"Role","_key":"40934","_from":"27541","_to":"27539"} +{"$label":"ACTS_IN","name":"Willi Alfons Hirsekorn","type":"Role","_key":"40929","_from":"27540","_to":"27539"} +{"$label":"ACTS_IN","name":"Kantor Aurelius Hampel","type":"Role","_key":"119194","_from":"27540","_to":"70039"} +{"$label":"ACTS_IN","name":"Georg Nolte","type":"Role","_key":"90722","_from":"27540","_to":"53551"} +{"$label":"ACTS_IN","name":"Willi Winzig","type":"Role","_key":"71534","_from":"27540","_to":"43345"} +{"$label":"ACTS_IN","name":"John Lion","type":"Role","_key":"46594","_from":"27540","_to":"30780"} +{"$label":"ACTS_IN","name":"Willi Kuckuck","type":"Role","_key":"45733","_from":"27540","_to":"30264"} +{"$label":"ACTS_IN","name":"Willi Winzig","type":"Role","_key":"45353","_from":"27540","_to":"30082"} +{"$label":"ACTS_IN","name":"Friedrich Scherzer","type":"Role","_key":"45081","_from":"27540","_to":"29936"} +{"$label":"ACTS_IN","name":"Klemke","type":"Role","_key":"43934","_from":"27540","_to":"29311"} +{"$label":"ACTS_IN","name":"Onkel Fritz","type":"Role","_key":"42812","_from":"27540","_to":"28628"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41214","_from":"27540","_to":"27727"} +{"$label":"ACTS_IN","name":"Paul Perlacher","type":"Role","_key":"41119","_from":"27540","_to":"27670"} +{"$label":"ACTS_IN","name":"Evelyn Thompson","type":"Role","_key":"40950","_from":"27550","_to":"27547"} +{"$label":"ACTS_IN","name":"Josh Campbell","type":"Role","_key":"40949","_from":"27549","_to":"27547"} +{"$label":"ACTS_IN","name":"Josh Campbell","type":"Role","_key":"40948","_from":"27548","_to":"27547"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"109718","_from":"27550","_to":"64795"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"40960","_from":"27560","_to":"27551"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"40959","_from":"27559","_to":"27551"} +{"$label":"ACTS_IN","name":"Hakan Hakke Bertil Bodin","type":"Role","_key":"40958","_from":"27558","_to":"27551"} +{"$label":"ACTS_IN","name":"Jenny Maria Brunander","type":"Role","_key":"40957","_from":"27557","_to":"27551"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"40956","_from":"27556","_to":"27551"} +{"$label":"ACTS_IN","name":"Karl Henrik","type":"Role","_key":"40955","_from":"27555","_to":"27551"} +{"$label":"ACTS_IN","name":"Carola Angelique Christiansson","type":"Role","_key":"40954","_from":"27554","_to":"27551"} +{"$label":"ACTS_IN","name":"Tobias Nils Carling","type":"Role","_key":"40953","_from":"27553","_to":"27551"} +{"$label":"DIRECTED","_key":"40952","_from":"27552","_to":"27551"} +{"$label":"ACTS_IN","name":"Dirch Frode","type":"Role","_key":"104561","_from":"27555","_to":"61500"} +{"$label":"ACTS_IN","name":"Grannen","type":"Role","_key":"98610","_from":"27555","_to":"58110"} +{"$label":"ACTS_IN","name":"Grannen","type":"Role","_key":"98555","_from":"27555","_to":"58073"} +{"$label":"ACTS_IN","name":"Grannen","type":"Role","_key":"95399","_from":"27555","_to":"56112"} +{"$label":"ACTS_IN","name":"Eivor","type":"Role","_key":"90556","_from":"27556","_to":"53486"} +{"$label":"ACTS_IN","name":"Isabelle Ducotel","type":"Role","_key":"40968","_from":"27563","_to":"27561"} +{"$label":"ACTS_IN","name":"Paul Trochard","type":"Role","_key":"40967","_from":"27562","_to":"27561"} +{"$label":"ACTS_IN","name":"Mabuses Dienerin Fine","type":"Role","_key":"40981","_from":"27569","_to":"27564"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"40978","_from":"27568","_to":"27564"} +{"$label":"ACTS_IN","name":"Spoerri","type":"Role","_key":"40977","_from":"27567","_to":"27564"} +{"$label":"ACTS_IN","name":"Edgar Hull","type":"Role","_key":"40976","_from":"27566","_to":"27564"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Dusy Told","type":"Role","_key":"40973","_from":"27565","_to":"27564"} +{"$label":"ACTS_IN","name":"Vater Engel","type":"Role","_key":"44744","_from":"27566","_to":"29769"} +{"$label":"ACTS_IN","name":"Leander Rosenbauer","type":"Role","_key":"43081","_from":"27568","_to":"28764"} +{"$label":"ACTS_IN","name":"Baron Giesbert von Bomberg","type":"Role","_key":"42031","_from":"27568","_to":"28155"} +{"$label":"ACTS_IN","name":"Bandleader","type":"Role","_key":"41002","_from":"27582","_to":"27570"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"41000","_from":"27581","_to":"27570"} +{"$label":"ACTS_IN","name":"Empfangschef","type":"Role","_key":"40999","_from":"27580","_to":"27570"} +{"$label":"ACTS_IN","name":"Barbesitzer","type":"Role","_key":"40998","_from":"27579","_to":"27570"} +{"$label":"ACTS_IN","name":"Portier","type":"Role","_key":"40996","_from":"27578","_to":"27570"} +{"$label":"ACTS_IN","name":"Frau Generalkonsul","type":"Role","_key":"40995","_from":"27577","_to":"27570"} +{"$label":"ACTS_IN","name":"Generalkonsul","type":"Role","_key":"40994","_from":"27576","_to":"27570"} +{"$label":"ACTS_IN","name":"Ulla Bergstr\u00f6m","type":"Role","_key":"40991","_from":"27575","_to":"27570"} +{"$label":"ACTS_IN","name":"Britta Nielsen","type":"Role","_key":"40990","_from":"27574","_to":"27570"} +{"$label":"ACTS_IN","name":"Wolke","type":"Role","_key":"40989","_from":"27573","_to":"27570"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"40988","_from":"27572","_to":"27570"} +{"$label":"DIRECTED","_key":"40982","_from":"27571","_to":"27570"} +{"$label":"DIRECTED","_key":"71734","_from":"27571","_to":"43419"} +{"$label":"DIRECTED","_key":"45145","_from":"27571","_to":"29959"} +{"$label":"DIRECTED","_key":"41307","_from":"27571","_to":"27774"} +{"$label":"ACTS_IN","name":"Herr Marek","type":"Role","_key":"41835","_from":"27572","_to":"28067"} +{"$label":"ACTS_IN","name":"Oberst Ferdinand von Wei\u00dfenburg-Schwarzeneck","type":"Role","_key":"44588","_from":"27573","_to":"29676"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"45105","_from":"27574","_to":"29943"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44468","_from":"27578","_to":"29617"} +{"$label":"ACTS_IN","name":"Friseur Fasel","type":"Role","_key":"44425","_from":"27578","_to":"29590"} +{"$label":"ACTS_IN","name":"Amtsdiener","type":"Role","_key":"41836","_from":"27578","_to":"28067"} +{"$label":"ACTS_IN","name":"Knoll","type":"Role","_key":"45103","_from":"27580","_to":"29943"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"45067","_from":"27580","_to":"29929"} +{"$label":"ACTS_IN","name":"Sepp","type":"Role","_key":"42130","_from":"27580","_to":"28218"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"41010","_from":"27588","_to":"27583"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"41008","_from":"27587","_to":"27583"} +{"$label":"ACTS_IN","name":"Telly","type":"Role","_key":"41007","_from":"27586","_to":"27583"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"41006","_from":"27585","_to":"27583"} +{"$label":"DIRECTED","_key":"41003","_from":"27584","_to":"27583"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"41018","_from":"27597","_to":"27589"} +{"$label":"ACTS_IN","name":"Donna Lucia d` Alvadorez","type":"Role","_key":"41017","_from":"27596","_to":"27589"} +{"$label":"ACTS_IN","name":"Lone Hornemann","type":"Role","_key":"41016","_from":"27595","_to":"27589"} +{"$label":"ACTS_IN","name":"Laura Hornemann","type":"Role","_key":"41015","_from":"27594","_to":"27589"} +{"$label":"ACTS_IN","name":"Peter Ahlevig","type":"Role","_key":"41014","_from":"27593","_to":"27589"} +{"$label":"ACTS_IN","name":"Charles Smith","type":"Role","_key":"41013","_from":"27592","_to":"27589"} +{"$label":"ACTS_IN","name":"Ditlev Greve Lensby","type":"Role","_key":"41012","_from":"27591","_to":"27589"} +{"$label":"DIRECTED","_key":"41011","_from":"27590","_to":"27589"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"104859","_from":"27592","_to":"61700"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"104855","_from":"27592","_to":"61698"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"104705","_from":"27592","_to":"61597"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"104699","_from":"27592","_to":"61596"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"91183","_from":"27592","_to":"53781"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"91176","_from":"27592","_to":"53778"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"90503","_from":"27592","_to":"53465"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"90190","_from":"27592","_to":"53324"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"88859","_from":"27592","_to":"52652"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"69578","_from":"27592","_to":"42484"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"69573","_from":"27592","_to":"42482"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"69568","_from":"27592","_to":"42480"} +{"$label":"ACTS_IN","name":"Egon Olsen","type":"Role","_key":"69564","_from":"27592","_to":"42475"} +{"$label":"ACTS_IN","name":"Frk. Bodil Hansen","type":"Role","_key":"88862","_from":"27594","_to":"52652"} +{"$label":"ACTS_IN","name":"Old Martina","type":"Role","_key":"72261","_from":"27596","_to":"43656"} +{"$label":"ACTS_IN","name":"Ela Delahey","type":"Role","_key":"41034","_from":"27608","_to":"27598"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"41032","_from":"27607","_to":"27598"} +{"$label":"ACTS_IN","name":"Miss Bedford","type":"Role","_key":"41031","_from":"27606","_to":"27598"} +{"$label":"ACTS_IN","name":"Aristhopan","type":"Role","_key":"41030","_from":"27605","_to":"27598"} +{"$label":"ACTS_IN","name":"Nelson","type":"Role","_key":"41029","_from":"27604","_to":"27598"} +{"$label":"ACTS_IN","name":"Mary Fin","type":"Role","_key":"41027","_from":"27603","_to":"27598"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"41024","_from":"27602","_to":"27598"} +{"$label":"ACTS_IN","name":"Stephan Spettik","type":"Role","_key":"41023","_from":"27601","_to":"27598"} +{"$label":"ACTS_IN","name":"Sir Francis Chesney","type":"Role","_key":"41022","_from":"27600","_to":"27598"} +{"$label":"ACTS_IN","name":"Fancourt Babbs Babberley","type":"Role","_key":"41021","_from":"27599","_to":"27598"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45346","_from":"27601","_to":"30073"} +{"$label":"DIRECTED","_key":"42067","_from":"27601","_to":"28185"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45043","_from":"27603","_to":"29920"} +{"$label":"ACTS_IN","name":"Lord Montague","type":"Role","_key":"41046","_from":"27613","_to":"27609"} +{"$label":"ACTS_IN","name":"Lady Capulet","type":"Role","_key":"41045","_from":"27612","_to":"27609"} +{"$label":"ACTS_IN","name":"Lord Capulet","type":"Role","_key":"41044","_from":"27611","_to":"27609"} +{"$label":"ACTS_IN","name":"the Nurse","type":"Role","_key":"41041","_from":"27610","_to":"27609"} +{"$label":"ACTS_IN","name":"Moussa","type":"Role","_key":"41055","_from":"27617","_to":"27614"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"41054","_from":"27616","_to":"27614"} +{"$label":"DIRECTED","_key":"41048","_from":"27615","_to":"27614"} +{"$label":"DIRECTED","_key":"42316","_from":"27615","_to":"28335"} +{"$label":"DIRECTED","_key":"42305","_from":"27615","_to":"28327"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41066","_from":"27626","_to":"27618"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41065","_from":"27625","_to":"27618"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"41063","_from":"27624","_to":"27618"} +{"$label":"ACTS_IN","name":"Ralf Wilder","type":"Role","_key":"41062","_from":"27623","_to":"27618"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41061","_from":"27622","_to":"27618"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41060","_from":"27621","_to":"27618"} +{"$label":"ACTS_IN","name":"Charley Sallmann","type":"Role","_key":"41059","_from":"27620","_to":"27618"} +{"$label":"DIRECTED","_key":"41056","_from":"27619","_to":"27618"} +{"$label":"DIRECTED","_key":"43906","_from":"27619","_to":"29305"} +{"$label":"DIRECTED","_key":"41827","_from":"27619","_to":"28067"} +{"$label":"DIRECTED","_key":"41193","_from":"27619","_to":"27720"} +{"$label":"ACTS_IN","name":"Der sch\u00f6ne Theodor","type":"Role","_key":"91513","_from":"27620","_to":"53947"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"46597","_from":"27620","_to":"30780"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"45090","_from":"27620","_to":"29936"} +{"$label":"ACTS_IN","name":"Hannes Hartung","type":"Role","_key":"41122","_from":"27620","_to":"27670"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44753","_from":"27623","_to":"29769"} +{"$label":"ACTS_IN","name":"Arpad Keleman","type":"Role","_key":"44566","_from":"27625","_to":"29666"} +{"$label":"ACTS_IN","name":"Sandor","type":"Role","_key":"67849","_from":"27626","_to":"41691"} +{"$label":"ACTS_IN","name":"Prof. Kersten","type":"Role","_key":"45973","_from":"27626","_to":"30392"} +{"$label":"ACTS_IN","name":"Paruccio","type":"Role","_key":"45102","_from":"27626","_to":"29943"} +{"$label":"ACTS_IN","name":"Herzmansky","type":"Role","_key":"44564","_from":"27626","_to":"29666"} +{"$label":"ACTS_IN","name":"Lorenz","type":"Role","_key":"43910","_from":"27626","_to":"29305"} +{"$label":"ACTS_IN","name":"Onkel Gustav","type":"Role","_key":"42327","_from":"27626","_to":"28337"} +{"$label":"DIRECTED","_key":"41077","_from":"27628","_to":"27627"} +{"$label":"ACTS_IN","name":"Brasset","type":"Role","_key":"41076","_from":"27637","_to":"27627"} +{"$label":"ACTS_IN","name":"Donna Lucia d` Alvadorez","type":"Role","_key":"41075","_from":"27636","_to":"27627"} +{"$label":"ACTS_IN","name":"Ella Delahay","type":"Role","_key":"41074","_from":"27635","_to":"27627"} +{"$label":"ACTS_IN","name":"Sir Francis Chesney","type":"Role","_key":"41073","_from":"27634","_to":"27627"} +{"$label":"ACTS_IN","name":"Jeremias Speetigue","type":"Role","_key":"41072","_from":"27633","_to":"27627"} +{"$label":"ACTS_IN","name":"Annie Speetigue","type":"Role","_key":"41071","_from":"27632","_to":"27627"} +{"$label":"ACTS_IN","name":"Kitty Werden","type":"Role","_key":"41070","_from":"27631","_to":"27627"} +{"$label":"ACTS_IN","name":"Charles Wykeham","type":"Role","_key":"41069","_from":"27630","_to":"27627"} +{"$label":"ACTS_IN","name":"Jack Chesney","type":"Role","_key":"41068","_from":"27629","_to":"27627"} +{"$label":"ACTS_IN","name":"Lord Francourt Bobberley","type":"Role","_key":"41067","_from":"27628","_to":"27627"} +{"$label":"DIRECTED","_key":"41085","_from":"27646","_to":"27638"} +{"$label":"ACTS_IN","name":"Hauger","type":"Role","_key":"41084","_from":"27645","_to":"27638"} +{"$label":"ACTS_IN","name":"Gunn","type":"Role","_key":"41083","_from":"27644","_to":"27638"} +{"$label":"ACTS_IN","name":"Alfons J\u00f8rgensen","type":"Role","_key":"41082","_from":"27643","_to":"27638"} +{"$label":"ACTS_IN","name":"Reidun Nordsletten","type":"Role","_key":"41081","_from":"27642","_to":"27638"} +{"$label":"ACTS_IN","name":"Frank \u00c5sli","type":"Role","_key":"41080","_from":"27641","_to":"27638"} +{"$label":"ACTS_IN","name":"Kjell Bjarne","type":"Role","_key":"41079","_from":"27640","_to":"27638"} +{"$label":"ACTS_IN","name":"Elling","type":"Role","_key":"41078","_from":"27639","_to":"27638"} +{"$label":"ACTS_IN","name":"Elling","type":"Role","_key":"87912","_from":"27639","_to":"52208"} +{"$label":"ACTS_IN","name":"Elling","type":"Role","_key":"68282","_from":"27639","_to":"41919"} +{"$label":"ACTS_IN","name":"Kjell Bjarne","type":"Role","_key":"87913","_from":"27640","_to":"52208"} +{"$label":"ACTS_IN","name":"Jarle's father","type":"Role","_key":"95434","_from":"27641","_to":"56139"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"103496","_from":"27644","_to":"60873"} +{"$label":"ACTS_IN","name":"Martin Linge","type":"Role","_key":"96188","_from":"27646","_to":"56525"} +{"$label":"DIRECTED","_key":"87914","_from":"27646","_to":"52208"} +{"$label":"ACTS_IN","name":"Stephen Spettigue","type":"Role","_key":"41095","_from":"27652","_to":"27647"} +{"$label":"ACTS_IN","name":"Ela Delahay","type":"Role","_key":"41093","_from":"27651","_to":"27647"} +{"$label":"ACTS_IN","name":"Kitty Verdun","type":"Role","_key":"41091","_from":"27650","_to":"27647"} +{"$label":"ACTS_IN","name":"Anny Spettigue","type":"Role","_key":"41090","_from":"27649","_to":"27647"} +{"$label":"ACTS_IN","name":"Jack Chesney","type":"Role","_key":"41088","_from":"27648","_to":"27647"} +{"$label":"ACTS_IN","name":"Young Girl","type":"Role","_key":"41108","_from":"27663","_to":"27653"} +{"$label":"ACTS_IN","name":"Anette de la Beraudiere","type":"Role","_key":"41107","_from":"27662","_to":"27653"} +{"$label":"ACTS_IN","name":"Frau Andersson","type":"Role","_key":"41106","_from":"27661","_to":"27653"} +{"$label":"ACTS_IN","name":"Professor Crosby","type":"Role","_key":"41104","_from":"27660","_to":"27653"} +{"$label":"ACTS_IN","name":"Alix Bellini","type":"Role","_key":"41103","_from":"27659","_to":"27653"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41102","_from":"27658","_to":"27653"} +{"$label":"ACTS_IN","name":"Frau Tissot","type":"Role","_key":"41100","_from":"27657","_to":"27653"} +{"$label":"ACTS_IN","name":"Francois \/ Andrea","type":"Role","_key":"41099","_from":"27656","_to":"27653"} +{"$label":"ACTS_IN","name":"Inger Andersson","type":"Role","_key":"41098","_from":"27655","_to":"27653"} +{"$label":"DIRECTED","_key":"41097","_from":"27654","_to":"27653"} +{"$label":"ACTS_IN","name":"Karl-Heinz","type":"Role","_key":"41117","_from":"27669","_to":"27664"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"41116","_from":"27668","_to":"27664"} +{"$label":"ACTS_IN","name":"Claudie","type":"Role","_key":"41115","_from":"27667","_to":"27664"} +{"$label":"ACTS_IN","name":"Barbie P\u00fcckler","type":"Role","_key":"41114","_from":"27666","_to":"27664"} +{"$label":"ACTS_IN","name":"Attila","type":"Role","_key":"41113","_from":"27665","_to":"27664"} +{"$label":"ACTS_IN","name":"Heike Petersen","type":"Role","_key":"71391","_from":"27666","_to":"43298"} +{"$label":"ACTS_IN","name":"Kriemhild","type":"Role","_key":"64882","_from":"27666","_to":"40350"} +{"$label":"ACTS_IN","name":"Annette Scheper","type":"Role","_key":"43469","_from":"27666","_to":"29036"} +{"$label":"ACTS_IN","name":"Postbote","type":"Role","_key":"41131","_from":"27676","_to":"27670"} +{"$label":"ACTS_IN","name":"Trude Perlacher","type":"Role","_key":"41130","_from":"27675","_to":"27670"} +{"$label":"ACTS_IN","name":"Staatsanwalt","type":"Role","_key":"41128","_from":"27674","_to":"27670"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"41125","_from":"27673","_to":"27670"} +{"$label":"ACTS_IN","name":"Inge Perlacher","type":"Role","_key":"41120","_from":"27672","_to":"27670"} +{"$label":"DIRECTED","_key":"41118","_from":"27671","_to":"27670"} +{"$label":"DIRECTED","_key":"45521","_from":"27671","_to":"30151"} +{"$label":"DIRECTED","_key":"44411","_from":"27671","_to":"29590"} +{"$label":"DIRECTED","_key":"43771","_from":"27671","_to":"29234"} +{"$label":"DIRECTED","_key":"41143","_from":"27671","_to":"27686"} +{"$label":"ACTS_IN","name":"George Pelham","type":"Role","_key":"43640","_from":"27676","_to":"29135"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41142","_from":"27685","_to":"27677"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41141","_from":"27684","_to":"27677"} +{"$label":"ACTS_IN","name":"Frau Eck","type":"Role","_key":"41140","_from":"27683","_to":"27677"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41139","_from":"27682","_to":"27677"} +{"$label":"ACTS_IN","name":"Hein","type":"Role","_key":"41138","_from":"27681","_to":"27677"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41137","_from":"27680","_to":"27677"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41136","_from":"27679","_to":"27677"} +{"$label":"DIRECTED","_key":"41133","_from":"27678","_to":"27677"} +{"$label":"ACTS_IN","name":"Frau Hansen","type":"Role","_key":"45084","_from":"27683","_to":"29936"} +{"$label":"ACTS_IN","name":"Heinrich Weichert","type":"Role","_key":"41149","_from":"27692","_to":"27686"} +{"$label":"ACTS_IN","name":"Matthias Scheibler","type":"Role","_key":"41148","_from":"27691","_to":"27686"} +{"$label":"ACTS_IN","name":"Fritz Str\u00e4ubler","type":"Role","_key":"41147","_from":"27690","_to":"27686"} +{"$label":"ACTS_IN","name":"Leni Str\u00e4ubler","type":"Role","_key":"41146","_from":"27689","_to":"27686"} +{"$label":"ACTS_IN","name":"Karoline Str\u00e4ubler","type":"Role","_key":"41145","_from":"27688","_to":"27686"} +{"$label":"ACTS_IN","name":"Karl Str\u00e4ubler","type":"Role","_key":"41144","_from":"27687","_to":"27686"} +{"$label":"ACTS_IN","name":"Jerimias Swoboda","type":"Role","_key":"44729","_from":"27687","_to":"29760"} +{"$label":"ACTS_IN","name":"Schutzmann Lemke","type":"Role","_key":"41160","_from":"27702","_to":"27693"} +{"$label":"ACTS_IN","name":"Werndorff","type":"Role","_key":"41159","_from":"27701","_to":"27693"} +{"$label":"ACTS_IN","name":"Scheelhase","type":"Role","_key":"41157","_from":"27700","_to":"27693"} +{"$label":"ACTS_IN","name":"Quitt","type":"Role","_key":"41156","_from":"27699","_to":"27693"} +{"$label":"ACTS_IN","name":"Egmont Bulcke","type":"Role","_key":"41155","_from":"27698","_to":"27693"} +{"$label":"ACTS_IN","name":"Katharina Bulcke","type":"Role","_key":"41154","_from":"27697","_to":"27693"} +{"$label":"ACTS_IN","name":"Hermine Bulcke","type":"Role","_key":"41153","_from":"27696","_to":"27693"} +{"$label":"DIRECTED","_key":"41152","_from":"27695","_to":"27693"} +{"$label":"DIRECTED","_key":"41151","_from":"27694","_to":"27693"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein von Nordeck zur Nidden - Oberin","type":"Role","_key":"55300","_from":"27696","_to":"35260"} +{"$label":"ACTS_IN","name":"Lisa Holgersson","type":"Role","_key":"41169","_from":"27707","_to":"27703"} +{"$label":"ACTS_IN","name":"Martinsson","type":"Role","_key":"41168","_from":"27706","_to":"27703"} +{"$label":"ACTS_IN","name":"Svedberg","type":"Role","_key":"41167","_from":"27705","_to":"27703"} +{"$label":"DIRECTED","_key":"41164","_from":"27704","_to":"27703"} +{"$label":"DIRECTED","_key":"114455","_from":"27704","_to":"67421"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"41179","_from":"27711","_to":"27708"} +{"$label":"ACTS_IN","name":"Remi","type":"Role","_key":"41175","_from":"27710","_to":"27708"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"41173","_from":"27709","_to":"27708"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"118701","_from":"27710","_to":"69798"} +{"$label":"ACTS_IN","name":"Martineau","type":"Role","_key":"114471","_from":"27710","_to":"67433"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"112136","_from":"27710","_to":"66222"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"96135","_from":"27710","_to":"56503"} +{"$label":"ACTS_IN","name":"Regine Hahn","type":"Role","_key":"41192","_from":"27719","_to":"27712"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"41191","_from":"27718","_to":"27712"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"41190","_from":"27717","_to":"27712"} +{"$label":"ACTS_IN","name":"Moritz Sattler","type":"Role","_key":"41188","_from":"27716","_to":"27712"} +{"$label":"ACTS_IN","name":"Felicitas Fernandez","type":"Role","_key":"41187","_from":"27715","_to":"27712"} +{"$label":"ACTS_IN","name":"Konrad Neuberger","type":"Role","_key":"41186","_from":"27714","_to":"27712"} +{"$label":"ACTS_IN","name":"Simone Jacob","type":"Role","_key":"41184","_from":"27713","_to":"27712"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43203","_from":"27714","_to":"28852"} +{"$label":"ACTS_IN","name":"Marie Larisch","type":"Role","_key":"47294","_from":"27715","_to":"31151"} +{"$label":"ACTS_IN","name":"Fritzchen","type":"Role","_key":"41204","_from":"27726","_to":"27720"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"41203","_from":"27725","_to":"27720"} +{"$label":"ACTS_IN","name":"Pierre Papillon Jr.","type":"Role","_key":"41201","_from":"27724","_to":"27720"} +{"$label":"ACTS_IN","name":"Fatme","type":"Role","_key":"41200","_from":"27723","_to":"27720"} +{"$label":"ACTS_IN","name":"Barbara Hagen","type":"Role","_key":"41196","_from":"27722","_to":"27720"} +{"$label":"ACTS_IN","name":"Charles F\u00fcrst","type":"Role","_key":"41195","_from":"27721","_to":"27720"} +{"$label":"ACTS_IN","name":"Jean Perrot","type":"Role","_key":"46048","_from":"27721","_to":"30425"} +{"$label":"ACTS_IN","name":"Michael Normann","type":"Role","_key":"42633","_from":"27721","_to":"28542"} +{"$label":"ACTS_IN","name":"Gerti","type":"Role","_key":"71732","_from":"27722","_to":"43419"} +{"$label":"ACTS_IN","name":"Karin Donath","type":"Role","_key":"45034","_from":"27722","_to":"29920"} +{"$label":"ACTS_IN","name":"Josepha Vogelhuber","type":"Role","_key":"44892","_from":"27722","_to":"29857"} +{"$label":"ACTS_IN","name":"R\u00f6ssl Wirtin Cordula","type":"Role","_key":"44233","_from":"27722","_to":"29476"} +{"$label":"ACTS_IN","name":"Inge Kunze","type":"Role","_key":"42120","_from":"27722","_to":"28218"} +{"$label":"ACTS_IN","name":"Kat Dramberger","type":"Role","_key":"42134","_from":"27723","_to":"28218"} +{"$label":"ACTS_IN","name":"Konzernchef","type":"Role","_key":"90572","_from":"27724","_to":"53494"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"61846","_from":"27724","_to":"38929"} +{"$label":"ACTS_IN","name":"Lacoste","type":"Role","_key":"46050","_from":"27724","_to":"30425"} +{"$label":"ACTS_IN","name":"Fritz Hohebirke","type":"Role","_key":"44443","_from":"27724","_to":"29606"} +{"$label":"ACTS_IN","name":"Taschen-August","type":"Role","_key":"43921","_from":"27724","_to":"29305"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43917","_from":"27725","_to":"29305"} +{"$label":"ACTS_IN","name":"Piccolo Franzl","type":"Role","_key":"44899","_from":"27726","_to":"29857"} +{"$label":"ACTS_IN","name":"Egon Schilling","type":"Role","_key":"43722","_from":"27726","_to":"29199"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41221","_from":"27734","_to":"27727"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41220","_from":"27733","_to":"27727"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"41219","_from":"27732","_to":"27727"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41217","_from":"27731","_to":"27727"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"41216","_from":"27730","_to":"27727"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41212","_from":"27729","_to":"27727"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41211","_from":"27728","_to":"27727"} +{"$label":"ACTS_IN","name":"Opa Jensen","type":"Role","_key":"42815","_from":"27729","_to":"28628"} +{"$label":"ACTS_IN","name":"Garderobenfrau","type":"Role","_key":"43932","_from":"27731","_to":"29311"} +{"$label":"ACTS_IN","name":"Wackernagel","type":"Role","_key":"43928","_from":"27733","_to":"29311"} +{"$label":"ACTS_IN","name":"G\u00fcnther Zach","type":"Role","_key":"42671","_from":"27733","_to":"28564"} +{"$label":"ACTS_IN","name":"Anderl Seidel","type":"Role","_key":"45148","_from":"27734","_to":"29959"} +{"$label":"ACTS_IN","name":"Otto Pfennig","type":"Role","_key":"44930","_from":"27734","_to":"29874"} +{"$label":"ACTS_IN","name":"Sigismund Suelzhammer","type":"Role","_key":"44896","_from":"27734","_to":"29857"} +{"$label":"ACTS_IN","name":"Baron Felix Zorndorf","type":"Role","_key":"44732","_from":"27734","_to":"29760"} +{"$label":"ACTS_IN","name":"Mikosch","type":"Role","_key":"44580","_from":"27734","_to":"29676"} +{"$label":"ACTS_IN","name":"Otto von Senff","type":"Role","_key":"44437","_from":"27734","_to":"29606"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44241","_from":"27734","_to":"29476"} +{"$label":"ACTS_IN","name":"Otto Zander","type":"Role","_key":"43925","_from":"27734","_to":"29311"} +{"$label":"ACTS_IN","name":"Dr. Leidl","type":"Role","_key":"41253","_from":"27734","_to":"27738"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"41232","_from":"27737","_to":"27735"} +{"$label":"ACTS_IN","name":"Dave \/ Daisey","type":"Role","_key":"41226","_from":"27736","_to":"27735"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"51751","_from":"27736","_to":"33768"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"41258","_from":"27748","_to":"27738"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"41257","_from":"27747","_to":"27738"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin","type":"Role","_key":"41255","_from":"27746","_to":"27738"} +{"$label":"ACTS_IN","name":"Skiweltmeister","type":"Role","_key":"41254","_from":"27745","_to":"27738"} +{"$label":"ACTS_IN","name":"Mann mit Koffer","type":"Role","_key":"41250","_from":"27744","_to":"27738"} +{"$label":"ACTS_IN","name":"Oskar","type":"Role","_key":"41244","_from":"27743","_to":"27738"} +{"$label":"ACTS_IN","name":"Frau Kommerzialrat","type":"Role","_key":"41241","_from":"27742","_to":"27738"} +{"$label":"ACTS_IN","name":"Sepp","type":"Role","_key":"41240","_from":"27741","_to":"27738"} +{"$label":"ACTS_IN","name":"Gerda","type":"Role","_key":"41238","_from":"27740","_to":"27738"} +{"$label":"ACTS_IN","name":"Moritz","type":"Role","_key":"41236","_from":"27739","_to":"27738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42214","_from":"27739","_to":"28267"} +{"$label":"ACTS_IN","name":"Sandler","type":"Role","_key":"44613","_from":"27741","_to":"29691"} +{"$label":"ACTS_IN","name":"Johanna","type":"Role","_key":"42061","_from":"27742","_to":"28185"} +{"$label":"ACTS_IN","name":"Gentleman Schorsch","type":"Role","_key":"45162","_from":"27743","_to":"29959"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44903","_from":"27743","_to":"29857"} +{"$label":"ACTS_IN","name":"Rottenwieser","type":"Role","_key":"44771","_from":"27743","_to":"29778"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44674","_from":"27743","_to":"29716"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43919","_from":"27743","_to":"29305"} +{"$label":"ACTS_IN","name":"Florian Thaler","type":"Role","_key":"45146","_from":"27745","_to":"29959"} +{"$label":"ACTS_IN","name":"Karl Ross","type":"Role","_key":"41270","_from":"27752","_to":"27749"} +{"$label":"ACTS_IN","name":"Lila Wittenborn","type":"Role","_key":"41266","_from":"27751","_to":"27749"} +{"$label":"DIRECTED","_key":"41259","_from":"27750","_to":"27749"} +{"$label":"ACTS_IN","name":"Annie Forman","type":"Role","_key":"96922","_from":"27751","_to":"57008"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"57795","_from":"27751","_to":"36578"} +{"$label":"ACTS_IN","name":"Martin Kennedy","type":"Role","_key":"41282","_from":"27758","_to":"27753"} +{"$label":"ACTS_IN","name":"Rose Kennedy","type":"Role","_key":"41281","_from":"27757","_to":"27753"} +{"$label":"ACTS_IN","name":"Ciara","type":"Role","_key":"41280","_from":"27756","_to":"27753"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"41279","_from":"27755","_to":"27753"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"41277","_from":"27754","_to":"27753"} +{"$label":"ACTS_IN","name":"Patrick Sullivan","type":"Role","_key":"94311","_from":"27754","_to":"55539"} +{"$label":"ACTS_IN","name":"Edward Blake \/ The Comedian","type":"Role","_key":"93255","_from":"27754","_to":"54939"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"120351","_from":"27755","_to":"70696"} +{"$label":"ACTS_IN","name":"Lord Piccolo","type":"Role","_key":"98855","_from":"27755","_to":"58251"} +{"$label":"ACTS_IN","name":"Lex Luthor","type":"Role","_key":"95631","_from":"27755","_to":"56248"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"92225","_from":"27755","_to":"54424"} +{"$label":"ACTS_IN","name":"Dora Bonner","type":"Role","_key":"41288","_from":"27764","_to":"27759"} +{"$label":"ACTS_IN","name":"Miss Hinchcliff","type":"Role","_key":"41287","_from":"27763","_to":"27759"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41285","_from":"27762","_to":"27759"} +{"$label":"ACTS_IN","name":"Miss Murgatroyd","type":"Role","_key":"41284","_from":"27761","_to":"27759"} +{"$label":"DIRECTED","_key":"41283","_from":"27760","_to":"27759"} +{"$label":"DIRECTED","_key":"41306","_from":"27773","_to":"27765"} +{"$label":"ACTS_IN","name":"Mrs. Fortune","type":"Role","_key":"41304","_from":"27772","_to":"27765"} +{"$label":"ACTS_IN","name":"Glamoure Girl","type":"Role","_key":"41303","_from":"27771","_to":"27765"} +{"$label":"ACTS_IN","name":"Betty Barnad","type":"Role","_key":"41302","_from":"27770","_to":"27765"} +{"$label":"ACTS_IN","name":"Lady Diane","type":"Role","_key":"41298","_from":"27769","_to":"27765"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"41296","_from":"27768","_to":"27765"} +{"$label":"ACTS_IN","name":"Mister K","type":"Role","_key":"41295","_from":"27767","_to":"27765"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41294","_from":"27766","_to":"27765"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41440","_from":"27768","_to":"27860"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41427","_from":"27768","_to":"27849"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41405","_from":"27768","_to":"27831"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"41319","_from":"27780","_to":"27774"} +{"$label":"ACTS_IN","name":"Dr. Haycock","type":"Role","_key":"41318","_from":"27779","_to":"27774"} +{"$label":"ACTS_IN","name":"Ronald Hawes","type":"Role","_key":"41317","_from":"27778","_to":"27774"} +{"$label":"ACTS_IN","name":"Price Ridley","type":"Role","_key":"41315","_from":"27777","_to":"27774"} +{"$label":"ACTS_IN","name":"Anne Hampton","type":"Role","_key":"41313","_from":"27776","_to":"27774"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"41309","_from":"27775","_to":"27774"} +{"$label":"ACTS_IN","name":"Dolly Bantry","type":"Role","_key":"41329","_from":"27783","_to":"27781"} +{"$label":"ACTS_IN","name":"Cherry Baker","type":"Role","_key":"41328","_from":"27782","_to":"27781"} +{"$label":"ACTS_IN","name":"Megan Wells","type":"Role","_key":"105432","_from":"27782","_to":"62026"} +{"$label":"DIRECTED","_key":"41351","_from":"27803","_to":"27784"} +{"$label":"ACTS_IN","name":"Mrs. Crump","type":"Role","_key":"41349","_from":"27802","_to":"27784"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41348","_from":"27801","_to":"27784"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41347","_from":"27800","_to":"27784"} +{"$label":"ACTS_IN","name":"Mrs. Griffith","type":"Role","_key":"41345","_from":"27799","_to":"27784"} +{"$label":"ACTS_IN","name":"Sergeant Hay","type":"Role","_key":"41344","_from":"27798","_to":"27784"} +{"$label":"ACTS_IN","name":"Gladys Martin","type":"Role","_key":"41343","_from":"27797","_to":"27784"} +{"$label":"ACTS_IN","name":"Gerald Wright","type":"Role","_key":"41342","_from":"27796","_to":"27784"} +{"$label":"ACTS_IN","name":"Mrs. MacKenzie","type":"Role","_key":"41341","_from":"27795","_to":"27784"} +{"$label":"ACTS_IN","name":"Mr. Crump","type":"Role","_key":"41340","_from":"27794","_to":"27784"} +{"$label":"ACTS_IN","name":"Miss Ramsbotten","type":"Role","_key":"41339","_from":"27793","_to":"27784"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"41338","_from":"27792","_to":"27784"} +{"$label":"ACTS_IN","name":"Patricia Fortescue","type":"Role","_key":"41337","_from":"27791","_to":"27784"} +{"$label":"ACTS_IN","name":"Lance Fortescue","type":"Role","_key":"41336","_from":"27790","_to":"27784"} +{"$label":"ACTS_IN","name":"Jennifer Fortescue","type":"Role","_key":"41335","_from":"27789","_to":"27784"} +{"$label":"ACTS_IN","name":"Percival Fortescue","type":"Role","_key":"41334","_from":"27788","_to":"27784"} +{"$label":"ACTS_IN","name":"Adele Fortescue","type":"Role","_key":"41333","_from":"27787","_to":"27784"} +{"$label":"ACTS_IN","name":"Inspector Neele","type":"Role","_key":"41332","_from":"27786","_to":"27784"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41331","_from":"27785","_to":"27784"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41732","_from":"27790","_to":"28002"} +{"$label":"ACTS_IN","name":"Til","type":"Role","_key":"72109","_from":"27796","_to":"43589"} +{"$label":"ACTS_IN","name":"Olenin","type":"Role","_key":"56442","_from":"27798","_to":"35857"} +{"$label":"DIRECTED","_key":"41726","_from":"27803","_to":"28002"} +{"$label":"DIRECTED","_key":"41370","_from":"27818","_to":"27804"} +{"$label":"ACTS_IN","name":"Hotel Guest","type":"Role","_key":"41366","_from":"27817","_to":"27804"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"41364","_from":"27816","_to":"27804"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"41363","_from":"27815","_to":"27804"} +{"$label":"ACTS_IN","name":"Arthur Jackson","type":"Role","_key":"41362","_from":"27814","_to":"27804"} +{"$label":"ACTS_IN","name":"Edward Hillingdon","type":"Role","_key":"41360","_from":"27813","_to":"27804"} +{"$label":"ACTS_IN","name":"Victoria Johnson","type":"Role","_key":"41359","_from":"27812","_to":"27804"} +{"$label":"ACTS_IN","name":"Evelyn Hillingdon","type":"Role","_key":"41358","_from":"27811","_to":"27804"} +{"$label":"ACTS_IN","name":"Greg Dyson","type":"Role","_key":"41357","_from":"27810","_to":"27804"} +{"$label":"ACTS_IN","name":"Cap. Daventry","type":"Role","_key":"41356","_from":"27809","_to":"27804"} +{"$label":"ACTS_IN","name":"Lucky Dyson","type":"Role","_key":"41355","_from":"27808","_to":"27804"} +{"$label":"ACTS_IN","name":"Molly Kandall","type":"Role","_key":"41354","_from":"27807","_to":"27804"} +{"$label":"ACTS_IN","name":"Tim Kendall","type":"Role","_key":"41353","_from":"27806","_to":"27804"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41352","_from":"27805","_to":"27804"} +{"$label":"ACTS_IN","name":"Lady St. Edmund","type":"Role","_key":"101090","_from":"27805","_to":"59565"} +{"$label":"ACTS_IN","name":"Mrs. Steinmetz","type":"Role","_key":"66375","_from":"27805","_to":"41053"} +{"$label":"ACTS_IN","name":"Miss Jane Marple","type":"Role","_key":"41372","_from":"27805","_to":"27819"} +{"$label":"ACTS_IN","name":"Brian Marsh","type":"Role","_key":"51124","_from":"27806","_to":"33352"} +{"$label":"ACTS_IN","name":"Dargent Peytraud","type":"Role","_key":"70216","_from":"27809","_to":"42794"} +{"$label":"ACTS_IN","name":"Wescott","type":"Role","_key":"47694","_from":"27809","_to":"31415"} +{"$label":"ACTS_IN","name":"Dr. Benjamin Iwabi","type":"Role","_key":"45272","_from":"27809","_to":"30038"} +{"$label":"ACTS_IN","name":"Warwick","type":"Role","_key":"119013","_from":"27810","_to":"69954"} +{"$label":"ACTS_IN","name":"Del","type":"Role","_key":"94902","_from":"27810","_to":"55876"} +{"$label":"ACTS_IN","name":"Pappagallo","type":"Role","_key":"50879","_from":"27814","_to":"33209"} +{"$label":"ACTS_IN","name":"Gina Markham","type":"Role","_key":"41376","_from":"27821","_to":"27819"} +{"$label":"DIRECTED","_key":"41371","_from":"27820","_to":"27819"} +{"$label":"DIRECTED","_key":"118327","_from":"27820","_to":"69556"} +{"$label":"DIRECTED","_key":"103262","_from":"27820","_to":"60755"} +{"$label":"DIRECTED","_key":"66983","_from":"27820","_to":"41351"} +{"$label":"ACTS_IN","name":"Willie Wang","type":"Role","_key":"41393","_from":"27827","_to":"27822"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"41391","_from":"27826","_to":"27822"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"41390","_from":"27825","_to":"27822"} +{"$label":"ACTS_IN","name":"Milo Perrier","type":"Role","_key":"41384","_from":"27824","_to":"27822"} +{"$label":"DIRECTED","_key":"41381","_from":"27823","_to":"27822"} +{"$label":"DIRECTED","_key":"100930","_from":"27823","_to":"59497"} +{"$label":"ACTS_IN","name":"Mr. Skeffington","type":"Role","_key":"72639","_from":"27824","_to":"43777"} +{"$label":"ACTS_IN","name":"Church lady collecting money in bar","type":"Role","_key":"70500","_from":"27826","_to":"42914"} +{"$label":"ACTS_IN","name":"Lord Nelson Rathbone","type":"Role","_key":"41400","_from":"27830","_to":"27828"} +{"$label":"ACTS_IN","name":"Chon Lin","type":"Role","_key":"41398","_from":"27829","_to":"27828"} +{"$label":"ACTS_IN","name":"Miles Jackson","type":"Role","_key":"111225","_from":"27830","_to":"65683"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"109614","_from":"27830","_to":"64747"} +{"$label":"ACTS_IN","name":"Duke of Merton","type":"Role","_key":"41412","_from":"27838","_to":"27831"} +{"$label":"ACTS_IN","name":"Lord Edgware","type":"Role","_key":"41411","_from":"27837","_to":"27831"} +{"$label":"ACTS_IN","name":"Bryan Martin","type":"Role","_key":"41410","_from":"27836","_to":"27831"} +{"$label":"ACTS_IN","name":"Cap. Roland Marsh","type":"Role","_key":"41409","_from":"27835","_to":"27831"} +{"$label":"ACTS_IN","name":"Insp. Japp","type":"Role","_key":"41408","_from":"27834","_to":"27831"} +{"$label":"ACTS_IN","name":"Cap. Hastings","type":"Role","_key":"41407","_from":"27833","_to":"27831"} +{"$label":"DIRECTED","_key":"41404","_from":"27832","_to":"27831"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97817","_from":"27833","_to":"57588"} +{"$label":"ACTS_IN","name":"Capt. Hastings","type":"Role","_key":"41442","_from":"27833","_to":"27860"} +{"$label":"ACTS_IN","name":"Raynor","type":"Role","_key":"41447","_from":"27835","_to":"27860"} +{"$label":"ACTS_IN","name":"Sir Claude Amory","type":"Role","_key":"41444","_from":"27837","_to":"27860"} +{"$label":"DIRECTED","_key":"41419","_from":"27845","_to":"27839"} +{"$label":"ACTS_IN","name":"General Harris","type":"Role","_key":"41418","_from":"27844","_to":"27839"} +{"$label":"ACTS_IN","name":"Marcie","type":"Role","_key":"41417","_from":"27843","_to":"27839"} +{"$label":"ACTS_IN","name":"Ly Tam","type":"Role","_key":"41416","_from":"27842","_to":"27839"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"41415","_from":"27841","_to":"27839"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"41414","_from":"27840","_to":"27839"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"46607","_from":"27840","_to":"30782"} +{"$label":"ACTS_IN","name":"Detective Enzo Marchi","type":"Role","_key":"103585","_from":"27841","_to":"60927"} +{"$label":"ACTS_IN","name":"The Guardian","type":"Role","_key":"94103","_from":"27841","_to":"55414"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"116450","_from":"27843","_to":"68543"} +{"$label":"ACTS_IN","name":"Lt. Johnson","type":"Role","_key":"41425","_from":"27848","_to":"27846"} +{"$label":"ACTS_IN","name":"Pogue","type":"Role","_key":"41422","_from":"27847","_to":"27846"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"110535","_from":"27847","_to":"65312"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41438","_from":"27859","_to":"27849"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41437","_from":"27858","_to":"27849"} +{"$label":"ACTS_IN","name":"Insp. Davis","type":"Role","_key":"41435","_from":"27857","_to":"27849"} +{"$label":"ACTS_IN","name":"Caryll Sheppard","type":"Role","_key":"41434","_from":"27856","_to":"27849"} +{"$label":"ACTS_IN","name":"Mrs. Ackroyd","type":"Role","_key":"41433","_from":"27855","_to":"27849"} +{"$label":"ACTS_IN","name":"Ralph Ackroyd","type":"Role","_key":"41432","_from":"27854","_to":"27849"} +{"$label":"ACTS_IN","name":"Lord Halliford","type":"Role","_key":"41431","_from":"27853","_to":"27849"} +{"$label":"ACTS_IN","name":"Ursula Browne","type":"Role","_key":"41429","_from":"27852","_to":"27849"} +{"$label":"ACTS_IN","name":"Sir Roger Ackroyd","type":"Role","_key":"41428","_from":"27851","_to":"27849"} +{"$label":"DIRECTED","_key":"41426","_from":"27850","_to":"27849"} +{"$label":"DIRECTED","_key":"41439","_from":"27850","_to":"27860"} +{"$label":"ACTS_IN","name":"Lucie Manette","type":"Role","_key":"114116","_from":"27852","_to":"67208"} +{"$label":"ACTS_IN","name":"Barbara Amory","type":"Role","_key":"41443","_from":"27852","_to":"27860"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41450","_from":"27865","_to":"27860"} +{"$label":"ACTS_IN","name":"Miss Amory","type":"Role","_key":"41449","_from":"27864","_to":"27860"} +{"$label":"ACTS_IN","name":"Dr. Carelli","type":"Role","_key":"41446","_from":"27863","_to":"27860"} +{"$label":"ACTS_IN","name":"Richard Amory","type":"Role","_key":"41445","_from":"27862","_to":"27860"} +{"$label":"ACTS_IN","name":"Lucia Amory","type":"Role","_key":"41441","_from":"27861","_to":"27860"} +{"$label":"ACTS_IN","name":"Angelica","type":"Role","_key":"41454","_from":"27867","_to":"27866"} +{"$label":"ACTS_IN","name":"Special Agent Phadkar","type":"Role","_key":"105044","_from":"27867","_to":"61815"} +{"$label":"ACTS_IN","name":"Carmen Naranjo","type":"Role","_key":"103179","_from":"27867","_to":"60693"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"51731","_from":"27867","_to":"33754"} +{"$label":"ACTS_IN","name":"Stacy Vetter","type":"Role","_key":"49535","_from":"27867","_to":"32434"} +{"$label":"ACTS_IN","name":"Carol Medford","type":"Role","_key":"41467","_from":"27871","_to":"27868"} +{"$label":"ACTS_IN","name":"Mrs. Biddle","type":"Role","_key":"41466","_from":"27870","_to":"27868"} +{"$label":"ACTS_IN","name":"Walter Neff","type":"Role","_key":"41464","_from":"27869","_to":"27868"} +{"$label":"ACTS_IN","name":"Old Operator","type":"Role","_key":"98894","_from":"27870","_to":"58269"} +{"$label":"ACTS_IN","name":"Rosie Kilmartin","type":"Role","_key":"41473","_from":"27873","_to":"27872"} +{"$label":"ACTS_IN","name":"Maggie Witzky","type":"Role","_key":"70994","_from":"27873","_to":"43121"} +{"$label":"ACTS_IN","name":"Michele MacKay","type":"Role","_key":"68241","_from":"27873","_to":"41905"} +{"$label":"ACTS_IN","name":"Anna Marvin","type":"Role","_key":"62338","_from":"27873","_to":"39279"} +{"$label":"DIRECTED","_key":"41487","_from":"27878","_to":"27874"} +{"$label":"ACTS_IN","name":"Stevie Littleton","type":"Role","_key":"41486","_from":"27877","_to":"27874"} +{"$label":"ACTS_IN","name":"Benny Chacon","type":"Role","_key":"41484","_from":"27876","_to":"27874"} +{"$label":"ACTS_IN","name":"Ellen Henry","type":"Role","_key":"41480","_from":"27875","_to":"27874"} +{"$label":"ACTS_IN","name":"Annie Tarrant","type":"Role","_key":"66008","_from":"27875","_to":"40846"} +{"$label":"ACTS_IN","name":"Jennifer, Electra's Neighbor","type":"Role","_key":"55695","_from":"27875","_to":"35443"} +{"$label":"ACTS_IN","name":"Lori Lee","type":"Role","_key":"45142","_from":"27875","_to":"29955"} +{"$label":"ACTS_IN","name":"Fontaine Rivera","type":"Role","_key":"114639","_from":"27876","_to":"67527"} +{"$label":"ACTS_IN","name":"Jimmy Espinosa","type":"Role","_key":"98709","_from":"27876","_to":"58173"} +{"$label":"ACTS_IN","name":"Lil Joker","type":"Role","_key":"63518","_from":"27876","_to":"39764"} +{"$label":"ACTS_IN","name":"Dos","type":"Role","_key":"59473","_from":"27876","_to":"37557"} +{"$label":"ACTS_IN","name":"Torres","type":"Role","_key":"52919","_from":"27876","_to":"34291"} +{"$label":"DIRECTED","_key":"69415","_from":"27878","_to":"42425"} +{"$label":"DIRECTED","_key":"63417","_from":"27878","_to":"39726"} +{"$label":"DIRECTED","_key":"52249","_from":"27878","_to":"34026"} +{"$label":"DIRECTED","_key":"49376","_from":"27878","_to":"32334"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"41494","_from":"27880","_to":"27879"} +{"$label":"ACTS_IN","name":"Dr. Carelli","type":"Role","_key":"41508","_from":"27890","_to":"27881"} +{"$label":"ACTS_IN","name":"Cap. Hastings","type":"Role","_key":"41506","_from":"27889","_to":"27881"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"41505","_from":"27888","_to":"27881"} +{"$label":"ACTS_IN","name":"Lucia","type":"Role","_key":"41504","_from":"27887","_to":"27881"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"41503","_from":"27886","_to":"27881"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"41502","_from":"27885","_to":"27881"} +{"$label":"ACTS_IN","name":"Dr. Graham","type":"Role","_key":"41498","_from":"27884","_to":"27881"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41497","_from":"27883","_to":"27881"} +{"$label":"DIRECTED","_key":"41496","_from":"27882","_to":"27881"} +{"$label":"ACTS_IN","name":"Dr. Rasan","type":"Role","_key":"45977","_from":"27890","_to":"30392"} +{"$label":"ACTS_IN","name":"S\u00e4nger in Disco","type":"Role","_key":"41526","_from":"27898","_to":"27891"} +{"$label":"ACTS_IN","name":"Copa Wiseguy","type":"Role","_key":"41524","_from":"27897","_to":"27891"} +{"$label":"ACTS_IN","name":"Richter Feinstein","type":"Role","_key":"41523","_from":"27896","_to":"27891"} +{"$label":"ACTS_IN","name":"Saso","type":"Role","_key":"41521","_from":"27895","_to":"27891"} +{"$label":"ACTS_IN","name":"Pete Amadesso","type":"Role","_key":"41520","_from":"27894","_to":"27891"} +{"$label":"ACTS_IN","name":"Vincent Taglialucci","type":"Role","_key":"41519","_from":"27893","_to":"27891"} +{"$label":"ACTS_IN","name":"Steffie","type":"Role","_key":"41514","_from":"27892","_to":"27891"} +{"$label":"ACTS_IN","name":"Carmine","type":"Role","_key":"57816","_from":"27893","_to":"36591"} +{"$label":"ACTS_IN","name":"Tony Darvo","type":"Role","_key":"52004","_from":"27894","_to":"33909"} +{"$label":"ACTS_IN","name":"Pvt. Sidney","type":"Role","_key":"61363","_from":"27896","_to":"38720"} +{"$label":"ACTS_IN","name":"Psychologist (voice)","type":"Role","_key":"51492","_from":"27896","_to":"33574"} +{"$label":"DIRECTED","_key":"58304","_from":"27896","_to":"36865"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"103945","_from":"27897","_to":"61143"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"91566","_from":"27897","_to":"53977"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"91436","_from":"27897","_to":"53928"} +{"$label":"ACTS_IN","name":"Zach","type":"Role","_key":"66235","_from":"27897","_to":"40976"} +{"$label":"ACTS_IN","name":"Cristiano","type":"Role","_key":"115302","_from":"27898","_to":"67887"} +{"$label":"ACTS_IN","name":"Hector Lavoe","type":"Role","_key":"106388","_from":"27898","_to":"62685"} +{"$label":"ACTS_IN","name":"S.S. Agent Ray","type":"Role","_key":"63248","_from":"27898","_to":"39652"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"54331","_from":"27898","_to":"34865"} +{"$label":"ACTS_IN","name":"Noel","type":"Role","_key":"50312","_from":"27898","_to":"32867"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"41550","_from":"27908","_to":"27899"} +{"$label":"ACTS_IN","name":"Lollo","type":"Role","_key":"41549","_from":"27907","_to":"27899"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"41548","_from":"27906","_to":"27899"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"41544","_from":"27905","_to":"27899"} +{"$label":"ACTS_IN","name":"Mandy","type":"Role","_key":"41541","_from":"27904","_to":"27899"} +{"$label":"ACTS_IN","name":"Daniela Berg","type":"Role","_key":"41540","_from":"27903","_to":"27899"} +{"$label":"ACTS_IN","name":"Celebrity-Br\u00e4utigam","type":"Role","_key":"41538","_from":"27902","_to":"27899"} +{"$label":"ACTS_IN","name":"Celebrity-Braut","type":"Role","_key":"41537","_from":"27901","_to":"27899"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"41535","_from":"27900","_to":"27899"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"46446","_from":"27900","_to":"30681"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"43183","_from":"27903","_to":"28832"} +{"$label":"ACTS_IN","name":"Felice Frank","type":"Role","_key":"42956","_from":"27903","_to":"28701"} +{"$label":"ACTS_IN","name":"Organisateur","type":"Role","_key":"41565","_from":"27919","_to":"27909"} +{"$label":"ACTS_IN","name":"Inspecteur","type":"Role","_key":"41564","_from":"27918","_to":"27909"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois Godon","type":"Role","_key":"41563","_from":"27917","_to":"27909"} +{"$label":"ACTS_IN","name":"Christine Godon","type":"Role","_key":"41561","_from":"27916","_to":"27909"} +{"$label":"ACTS_IN","name":"Ludo","type":"Role","_key":"41560","_from":"27915","_to":"27909"} +{"$label":"ACTS_IN","name":"Romain","type":"Role","_key":"41558","_from":"27914","_to":"27909"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"41557","_from":"27913","_to":"27909"} +{"$label":"ACTS_IN","name":"Le ma\u00eetre de c\u00e9r\u00e9monie","type":"Role","_key":"41556","_from":"27912","_to":"27909"} +{"$label":"ACTS_IN","name":"Sebastien","type":"Role","_key":"41554","_from":"27911","_to":"27909"} +{"$label":"DIRECTED","_key":"41553","_from":"27910","_to":"27909"} +{"$label":"ACTS_IN","name":"Louis Carambo","type":"Role","_key":"42244","_from":"27915","_to":"28283"} +{"$label":"ACTS_IN","name":"M","type":"Role","_key":"41577","_from":"27926","_to":"27920"} +{"$label":"ACTS_IN","name":"Columbo","type":"Role","_key":"41576","_from":"27925","_to":"27920"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41575","_from":"27924","_to":"27920"} +{"$label":"ACTS_IN","name":"The Other","type":"Role","_key":"41574","_from":"27923","_to":"27920"} +{"$label":"ACTS_IN","name":"Black","type":"Role","_key":"41572","_from":"27922","_to":"27920"} +{"$label":"DIRECTED","_key":"41567","_from":"27921","_to":"27920"} +{"$label":"DIRECTED","_key":"88685","_from":"27921","_to":"52552"} +{"$label":"ACTS_IN","name":"Kirk Matunas","type":"Role","_key":"47762","_from":"27923","_to":"31448"} +{"$label":"ACTS_IN","name":"\u0159editelka \u0161koly","type":"Role","_key":"41595","_from":"27939","_to":"27927"} +{"$label":"ACTS_IN","name":"\u010d\u00e1rkovan\u00e1","type":"Role","_key":"41593","_from":"27938","_to":"27927"} +{"$label":"ACTS_IN","name":"Lamkov\u00e1","type":"Role","_key":"41592","_from":"27937","_to":"27927"} +{"$label":"ACTS_IN","name":"Kvadrov\u00e1","type":"Role","_key":"41591","_from":"27936","_to":"27927"} +{"$label":"ACTS_IN","name":"Karel","type":"Role","_key":"41590","_from":"27935","_to":"27927"} +{"$label":"ACTS_IN","name":"Tom\u00edk","type":"Role","_key":"41589","_from":"27934","_to":"27927"} +{"$label":"ACTS_IN","name":"vedouc\u00ed \u0160ubrt","type":"Role","_key":"41588","_from":"27933","_to":"27927"} +{"$label":"ACTS_IN","name":"Pt\u00e1\u010dkov\u00e1","type":"Role","_key":"41586","_from":"27932","_to":"27927"} +{"$label":"ACTS_IN","name":"\u0158ez\u00e1\u010d","type":"Role","_key":"41584","_from":"27931","_to":"27927"} +{"$label":"ACTS_IN","name":"Robert Landa","type":"Role","_key":"41583","_from":"27930","_to":"27927"} +{"$label":"ACTS_IN","name":"Helenka","type":"Role","_key":"41582","_from":"27929","_to":"27927"} +{"$label":"ACTS_IN","name":"Eli\u0161ka Tkalounov\u00e1","type":"Role","_key":"41581","_from":"27928","_to":"27927"} +{"$label":"ACTS_IN","name":"maj. Halu\u0161ka","type":"Role","_key":"104230","_from":"27931","_to":"61320"} +{"$label":"ACTS_IN","name":"Vilda Houf","type":"Role","_key":"106024","_from":"27933","_to":"62417"} +{"$label":"ACTS_IN","name":"Alena","type":"Role","_key":"106681","_from":"27938","_to":"62865"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41606","_from":"27942","_to":"27940"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"41601","_from":"27941","_to":"27940"} +{"$label":"ACTS_IN","name":"Cunny","type":"Role","_key":"41626","_from":"27946","_to":"27943"} +{"$label":"ACTS_IN","name":"Claude Russo","type":"Role","_key":"41625","_from":"27945","_to":"27943"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41614","_from":"27944","_to":"27943"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"103681","_from":"27945","_to":"60984"} +{"$label":"DIRECTED","_key":"41645","_from":"27953","_to":"27948"} +{"$label":"ACTS_IN","name":"Dr. J\u00fcrgen Berger","type":"Role","_key":"41644","_from":"27952","_to":"27948"} +{"$label":"ACTS_IN","name":"Sophie Berger","type":"Role","_key":"41643","_from":"27951","_to":"27948"} +{"$label":"ACTS_IN","name":"Eva Keil","type":"Role","_key":"41641","_from":"27950","_to":"27948"} +{"$label":"ACTS_IN","name":"Jan Berger","type":"Role","_key":"41640","_from":"27949","_to":"27948"} +{"$label":"ACTS_IN","name":"Steffen","type":"Role","_key":"45377","_from":"27949","_to":"30090"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"88600","_from":"27950","_to":"52498"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"54732","_from":"27950","_to":"35032"} +{"$label":"ACTS_IN","name":"Leonie","type":"Role","_key":"54121","_from":"27950","_to":"34784"} +{"$label":"ACTS_IN","name":"Die Ermittlerin","type":"Role","_key":"63446","_from":"27951","_to":"39741"} +{"$label":"ACTS_IN","name":"Anna Bender","type":"Role","_key":"45958","_from":"27951","_to":"30385"} +{"$label":"ACTS_IN","name":"Cornelia M\u00f6hring","type":"Role","_key":"42660","_from":"27951","_to":"28559"} +{"$label":"ACTS_IN","name":"Kallenbach","type":"Role","_key":"52545","_from":"27952","_to":"34160"} +{"$label":"ACTS_IN","name":"Clemens Niebauer","type":"Role","_key":"42664","_from":"27952","_to":"28559"} +{"$label":"ACTS_IN","name":"Young Man","type":"Role","_key":"41663","_from":"27966","_to":"27954"} +{"$label":"ACTS_IN","name":"Duke of Mertons Footman","type":"Role","_key":"41662","_from":"27965","_to":"27954"} +{"$label":"ACTS_IN","name":"Moxon","type":"Role","_key":"41661","_from":"27964","_to":"27954"} +{"$label":"ACTS_IN","name":"Miss Caroll","type":"Role","_key":"41660","_from":"27963","_to":"27954"} +{"$label":"ACTS_IN","name":"Alice Bennett","type":"Role","_key":"41659","_from":"27962","_to":"27954"} +{"$label":"ACTS_IN","name":"Mr. Wildbum","type":"Role","_key":"41658","_from":"27961","_to":"27954"} +{"$label":"ACTS_IN","name":"Lord Edgeware","type":"Role","_key":"41657","_from":"27960","_to":"27954"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"41656","_from":"27959","_to":"27954"} +{"$label":"ACTS_IN","name":"Sir Corner","type":"Role","_key":"41655","_from":"27958","_to":"27954"} +{"$label":"ACTS_IN","name":"Bryan Martin","type":"Role","_key":"41654","_from":"27957","_to":"27954"} +{"$label":"ACTS_IN","name":"Jenny Driver","type":"Role","_key":"41651","_from":"27956","_to":"27954"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"41649","_from":"27955","_to":"27954"} +{"$label":"ACTS_IN","name":"Provost Cunningham","type":"Role","_key":"59686","_from":"27955","_to":"37685"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"41705","_from":"27955","_to":"27984"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"41677","_from":"27955","_to":"27972"} +{"$label":"ACTS_IN","name":"Prince Talon","type":"Role","_key":"97672","_from":"27957","_to":"57516"} +{"$label":"ACTS_IN","name":"Maj. Baker","type":"Role","_key":"66669","_from":"27958","_to":"41194"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"41671","_from":"27971","_to":"27967"} +{"$label":"ACTS_IN","name":"Gardener","type":"Role","_key":"41670","_from":"27970","_to":"27967"} +{"$label":"ACTS_IN","name":"Sir Max Mallowan","type":"Role","_key":"41668","_from":"27969","_to":"27967"} +{"$label":"DIRECTED","_key":"41665","_from":"27968","_to":"27967"} +{"$label":"ACTS_IN","name":"Mike Burns","type":"Role","_key":"109610","_from":"27969","_to":"64744"} +{"$label":"ACTS_IN","name":"Standesbeamte","type":"Role","_key":"44527","_from":"27969","_to":"29646"} +{"$label":"ACTS_IN","name":"Eddie South","type":"Role","_key":"41681","_from":"27973","_to":"27972"} +{"$label":"ACTS_IN","name":"Human Rights Assistant","type":"Role","_key":"41698","_from":"27983","_to":"27974"} +{"$label":"ACTS_IN","name":"COlonel Julio Figueroa","type":"Role","_key":"41696","_from":"27982","_to":"27974"} +{"$label":"ACTS_IN","name":"Archbishop Romero","type":"Role","_key":"41695","_from":"27981","_to":"27974"} +{"$label":"ACTS_IN","name":"Pauline Axelrod","type":"Role","_key":"41694","_from":"27980","_to":"27974"} +{"$label":"ACTS_IN","name":"Colonel Bentley Hyde Sr.","type":"Role","_key":"41693","_from":"27979","_to":"27974"} +{"$label":"ACTS_IN","name":"Cathy Moore","type":"Role","_key":"41692","_from":"27978","_to":"27974"} +{"$label":"ACTS_IN","name":"Jack Morgan","type":"Role","_key":"41691","_from":"27977","_to":"27974"} +{"$label":"ACTS_IN","name":"John Cassady","type":"Role","_key":"41689","_from":"27976","_to":"27974"} +{"$label":"ACTS_IN","name":"Human Rights Leader","type":"Role","_key":"41688","_from":"27975","_to":"27974"} +{"$label":"ACTS_IN","name":"Steven Pushkov","type":"Role","_key":"71912","_from":"27976","_to":"43508"} +{"$label":"ACTS_IN","name":"Claude Hooper Bukowski","type":"Role","_key":"64851","_from":"27976","_to":"40341"} +{"$label":"ACTS_IN","name":"McCrea, Albatross Crewman","type":"Role","_key":"63905","_from":"27976","_to":"39924"} +{"$label":"ACTS_IN","name":"Johnny Land","type":"Role","_key":"61710","_from":"27976","_to":"38866"} +{"$label":"ACTS_IN","name":"Rock","type":"Role","_key":"58805","_from":"27976","_to":"37140"} +{"$label":"ACTS_IN","name":"Sgt. McCron","type":"Role","_key":"50654","_from":"27976","_to":"33066"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"43531","_from":"27976","_to":"29077"} +{"$label":"ACTS_IN","name":"Louise\/Gypsy Lee Rose","type":"Role","_key":"114350","_from":"27978","_to":"67357"} +{"$label":"ACTS_IN","name":"Amanda Beckett","type":"Role","_key":"112330","_from":"27978","_to":"66317"} +{"$label":"ACTS_IN","name":"Jessie Chadwick","type":"Role","_key":"112323","_from":"27978","_to":"66316"} +{"$label":"ACTS_IN","name":"Sandy Banatoni","type":"Role","_key":"73037","_from":"27978","_to":"43957"} +{"$label":"ACTS_IN","name":"Gervase O'Dara","type":"Role","_key":"58012","_from":"27980","_to":"36700"} +{"$label":"ACTS_IN","name":"Reverend Babbington","type":"Role","_key":"41717","_from":"27993","_to":"27984"} +{"$label":"ACTS_IN","name":"Housekeeper","type":"Role","_key":"41716","_from":"27992","_to":"27984"} +{"$label":"ACTS_IN","name":"Mrs. Babbington","type":"Role","_key":"41715","_from":"27991","_to":"27984"} +{"$label":"ACTS_IN","name":"Janet Crisp","type":"Role","_key":"41714","_from":"27990","_to":"27984"} +{"$label":"ACTS_IN","name":"Angela Stafford","type":"Role","_key":"41712","_from":"27989","_to":"27984"} +{"$label":"ACTS_IN","name":"Daisy Eastman","type":"Role","_key":"41711","_from":"27988","_to":"27984"} +{"$label":"ACTS_IN","name":"Ricardo Montoya","type":"Role","_key":"41706","_from":"27987","_to":"27984"} +{"$label":"ACTS_IN","name":"Egg","type":"Role","_key":"41704","_from":"27986","_to":"27984"} +{"$label":"DIRECTED","_key":"41701","_from":"27985","_to":"27984"} +{"$label":"DIRECTED","_key":"120130","_from":"27985","_to":"70546"} +{"$label":"DIRECTED","_key":"106984","_from":"27985","_to":"63076"} +{"$label":"DIRECTED","_key":"55924","_from":"27985","_to":"35568"} +{"$label":"DIRECTED","_key":"54762","_from":"27985","_to":"35046"} +{"$label":"ACTS_IN","name":"Amanda Jacks","type":"Role","_key":"43566","_from":"27986","_to":"29099"} +{"$label":"ACTS_IN","name":"President of colombia","type":"Role","_key":"98200","_from":"27987","_to":"57841"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"104318","_from":"27990","_to":"61374"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41725","_from":"28001","_to":"27994"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41724","_from":"28000","_to":"27994"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41723","_from":"27999","_to":"27994"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41722","_from":"27998","_to":"27994"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41720","_from":"27997","_to":"27994"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41719","_from":"27996","_to":"27994"} +{"$label":"DIRECTED","_key":"41718","_from":"27995","_to":"27994"} +{"$label":"ACTS_IN","name":"La prostitu\u00e9e","type":"Role","_key":"48926","_from":"28000","_to":"32047"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41731","_from":"28007","_to":"28002"} +{"$label":"ACTS_IN","name":"Hastings","type":"Role","_key":"41730","_from":"28006","_to":"28002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41729","_from":"28005","_to":"28002"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41728","_from":"28004","_to":"28002"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41727","_from":"28003","_to":"28002"} +{"$label":"ACTS_IN","name":"Tony Foscarelli","type":"Role","_key":"41742","_from":"28014","_to":"28008"} +{"$label":"ACTS_IN","name":"William MacQueen","type":"Role","_key":"41741","_from":"28013","_to":"28008"} +{"$label":"ACTS_IN","name":"Bob Arbuthnot","type":"Role","_key":"41740","_from":"28012","_to":"28008"} +{"$label":"ACTS_IN","name":"Vera Rossakoff","type":"Role","_key":"41739","_from":"28011","_to":"28008"} +{"$label":"ACTS_IN","name":"Pierre Michel","type":"Role","_key":"41738","_from":"28010","_to":"28008"} +{"$label":"DIRECTED","_key":"41733","_from":"28009","_to":"28008"} +{"$label":"DIRECTED","_key":"64961","_from":"28009","_to":"40380"} +{"$label":"ACTS_IN","name":"Countess Alexandra - Exotic Woman","type":"Role","_key":"54173","_from":"28011","_to":"34805"} +{"$label":"ACTS_IN","name":"Grier Clark","type":"Role","_key":"109347","_from":"28012","_to":"64596"} +{"$label":"ACTS_IN","name":"Michael Pierce","type":"Role","_key":"103586","_from":"28013","_to":"60927"} +{"$label":"ACTS_IN","name":"Jake Yorkin","type":"Role","_key":"53330","_from":"28014","_to":"34478"} +{"$label":"ACTS_IN","name":"Agatha Christies Mutter","type":"Role","_key":"41756","_from":"28019","_to":"28015"} +{"$label":"ACTS_IN","name":"Kenward","type":"Role","_key":"41752","_from":"28018","_to":"28015"} +{"$label":"ACTS_IN","name":"Psychatrist","type":"Role","_key":"41751","_from":"28017","_to":"28015"} +{"$label":"DIRECTED","_key":"41747","_from":"28016","_to":"28015"} +{"$label":"ACTS_IN","name":"Underhill","type":"Role","_key":"56006","_from":"28017","_to":"35597"} +{"$label":"ACTS_IN","name":"Oily Librarian","type":"Role","_key":"97401","_from":"28018","_to":"57355"} +{"$label":"ACTS_IN","name":"Dr. Sheppard","type":"Role","_key":"41763","_from":"28026","_to":"28020"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41762","_from":"28025","_to":"28020"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41761","_from":"28024","_to":"28020"} +{"$label":"ACTS_IN","name":"Mrs. Ackroyd","type":"Role","_key":"41759","_from":"28023","_to":"28020"} +{"$label":"ACTS_IN","name":"Hercule Poirot","type":"Role","_key":"41758","_from":"28022","_to":"28020"} +{"$label":"DIRECTED","_key":"41757","_from":"28021","_to":"28020"} +{"$label":"ACTS_IN","name":"Dracula's Bride # 3","type":"Role","_key":"41777","_from":"28030","_to":"28027"} +{"$label":"ACTS_IN","name":"Dracula's Bride # 2","type":"Role","_key":"41776","_from":"28029","_to":"28027"} +{"$label":"ACTS_IN","name":"Mr. Hawkins","type":"Role","_key":"41774","_from":"28028","_to":"28027"} +{"$label":"ACTS_IN","name":"Hendrik","type":"Role","_key":"41783","_from":"28037","_to":"28031"} +{"$label":"ACTS_IN","name":"Fanie Raubenheimer","type":"Role","_key":"41782","_from":"28036","_to":"28031"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"41781","_from":"28035","_to":"28031"} +{"$label":"ACTS_IN","name":"Kotie","type":"Role","_key":"41780","_from":"28034","_to":"28031"} +{"$label":"ACTS_IN","name":"George Neethling","type":"Role","_key":"41779","_from":"28033","_to":"28031"} +{"$label":"DIRECTED","_key":"41778","_from":"28032","_to":"28031"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"60116","_from":"28033","_to":"37933"} +{"$label":"ACTS_IN","name":"Elton John","type":"Role","_key":"41798","_from":"28049","_to":"28038"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"41796","_from":"28048","_to":"28038"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"41795","_from":"28047","_to":"28038"} +{"$label":"ACTS_IN","name":"Mr. Step","type":"Role","_key":"41793","_from":"28046","_to":"28038"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"41792","_from":"28045","_to":"28038"} +{"$label":"ACTS_IN","name":"Geri","type":"Role","_key":"41790","_from":"28044","_to":"28038"} +{"$label":"ACTS_IN","name":"Melanie C","type":"Role","_key":"41789","_from":"28043","_to":"28038"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"41788","_from":"28042","_to":"28038"} +{"$label":"ACTS_IN","name":"Melanie B","type":"Role","_key":"41787","_from":"28041","_to":"28038"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"41786","_from":"28040","_to":"28038"} +{"$label":"DIRECTED","_key":"41785","_from":"28039","_to":"28038"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"104564","_from":"28041","_to":"61507"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113587","_from":"28047","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105839","_from":"28047","_to":"62306"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95687","_from":"28047","_to":"56281"} +{"$label":"ACTS_IN","name":"Hives The Butler","type":"Role","_key":"55815","_from":"28047","_to":"35512"} +{"$label":"ACTS_IN","name":"Pink","type":"Role","_key":"88043","_from":"28048","_to":"52261"} +{"$label":"ACTS_IN","name":"Local Lad","type":"Role","_key":"69154","_from":"28049","_to":"42295"} +{"$label":"ACTS_IN","name":"Harfinist","type":"Role","_key":"41825","_from":"28066","_to":"28050"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"41823","_from":"28065","_to":"28050"} +{"$label":"ACTS_IN","name":"Geiger","type":"Role","_key":"41822","_from":"28064","_to":"28050"} +{"$label":"ACTS_IN","name":"Singers","type":"Role","_key":"41821","_from":"28063","_to":"28050"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"41820","_from":"28062","_to":"28050"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"41819","_from":"28061","_to":"28050"} +{"$label":"ACTS_IN","name":"Orchesterleiter","type":"Role","_key":"41818","_from":"28060","_to":"28050"} +{"$label":"ACTS_IN","name":"Orchesterleiter","type":"Role","_key":"41817","_from":"28059","_to":"28050"} +{"$label":"ACTS_IN","name":"Luigi","type":"Role","_key":"41815","_from":"28058","_to":"28050"} +{"$label":"ACTS_IN","name":"Herr Mallwitz","type":"Role","_key":"41814","_from":"28057","_to":"28050"} +{"$label":"ACTS_IN","name":"Aro","type":"Role","_key":"41813","_from":"28056","_to":"28050"} +{"$label":"ACTS_IN","name":"Herr Osterhagen","type":"Role","_key":"41812","_from":"28055","_to":"28050"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"41811","_from":"28054","_to":"28050"} +{"$label":"ACTS_IN","name":"Silvio","type":"Role","_key":"41809","_from":"28053","_to":"28050"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"41807","_from":"28052","_to":"28050"} +{"$label":"ACTS_IN","name":"Catarina","type":"Role","_key":"41803","_from":"28051","_to":"28050"} +{"$label":"ACTS_IN","name":"Kasper","type":"Role","_key":"44600","_from":"28057","_to":"29680"} +{"$label":"ACTS_IN","name":"M\u00fchlmann","type":"Role","_key":"93225","_from":"28058","_to":"54923"} +{"$label":"ACTS_IN","name":"Friedrich Hoprecht","type":"Role","_key":"64687","_from":"28058","_to":"40289"} +{"$label":"ACTS_IN","name":"Zofe","type":"Role","_key":"41843","_from":"28073","_to":"28067"} +{"$label":"ACTS_IN","name":"M\u00f6belpacker","type":"Role","_key":"41842","_from":"28072","_to":"28067"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41840","_from":"28071","_to":"28067"} +{"$label":"ACTS_IN","name":"Trauzeuge","type":"Role","_key":"41838","_from":"28070","_to":"28067"} +{"$label":"ACTS_IN","name":"Albert Hinze","type":"Role","_key":"41833","_from":"28069","_to":"28067"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"41831","_from":"28068","_to":"28067"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44461","_from":"28069","_to":"29617"} +{"$label":"ACTS_IN","name":"Baron von Twackel","type":"Role","_key":"42008","_from":"28069","_to":"28144"} +{"$label":"DIRECTED","_key":"41848","_from":"28077","_to":"28074"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"41847","_from":"28076","_to":"28074"} +{"$label":"ACTS_IN","name":"Chris Trojano","type":"Role","_key":"41846","_from":"28075","_to":"28074"} +{"$label":"ACTS_IN","name":"Frank Russo","type":"Role","_key":"120031","_from":"28075","_to":"70492"} +{"$label":"ACTS_IN","name":"Doug Masters","type":"Role","_key":"67484","_from":"28075","_to":"41564"} +{"$label":"ACTS_IN","name":"Tony Cappucino","type":"Role","_key":"45457","_from":"28075","_to":"30120"} +{"$label":"DIRECTED","_key":"55189","_from":"28077","_to":"35208"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"41852","_from":"28080","_to":"28078"} +{"$label":"ACTS_IN","name":"Grand Princess","type":"Role","_key":"41851","_from":"28079","_to":"28078"} +{"$label":"ACTS_IN","name":"Vincenz Gellner","type":"Role","_key":"43055","_from":"28080","_to":"28755"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41863","_from":"28091","_to":"28082"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41862","_from":"28090","_to":"28082"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"41861","_from":"28089","_to":"28082"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41860","_from":"28088","_to":"28082"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41859","_from":"28087","_to":"28082"} +{"$label":"ACTS_IN","name":"Alexander Voss","type":"Role","_key":"41857","_from":"28086","_to":"28082"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41856","_from":"28085","_to":"28082"} +{"$label":"DIRECTED","_key":"41855","_from":"28084","_to":"28082"} +{"$label":"DIRECTED","_key":"41854","_from":"28083","_to":"28082"} +{"$label":"DIRECTED","_key":"41867","_from":"28083","_to":"28092"} +{"$label":"DIRECTED","_key":"42631","_from":"28084","_to":"28542"} +{"$label":"DIRECTED","_key":"41915","_from":"28084","_to":"28097"} +{"$label":"DIRECTED","_key":"41904","_from":"28084","_to":"28096"} +{"$label":"DIRECTED","_key":"41891","_from":"28084","_to":"28094"} +{"$label":"DIRECTED","_key":"41879","_from":"28084","_to":"28093"} +{"$label":"DIRECTED","_key":"41866","_from":"28084","_to":"28092"} +{"$label":"ACTS_IN","name":"Herr Bredow","type":"Role","_key":"72472","_from":"28085","_to":"43731"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41921","_from":"28085","_to":"28097"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41910","_from":"28085","_to":"28096"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41899","_from":"28085","_to":"28094"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41880","_from":"28085","_to":"28093"} +{"$label":"ACTS_IN","name":"Peter Voss","type":"Role","_key":"41868","_from":"28085","_to":"28092"} +{"$label":"ACTS_IN","name":"Alexander Voss","type":"Role","_key":"41923","_from":"28086","_to":"28097"} +{"$label":"ACTS_IN","name":"Alexander Voss","type":"Role","_key":"41911","_from":"28086","_to":"28096"} +{"$label":"ACTS_IN","name":"Alexander Voss","type":"Role","_key":"41882","_from":"28086","_to":"28093"} +{"$label":"ACTS_IN","name":"Alexander Voss","type":"Role","_key":"41869","_from":"28086","_to":"28092"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41919","_from":"28087","_to":"28097"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41907","_from":"28087","_to":"28096"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41897","_from":"28087","_to":"28094"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41886","_from":"28087","_to":"28093"} +{"$label":"ACTS_IN","name":"Prinz Abdul Hassan","type":"Role","_key":"41873","_from":"28087","_to":"28092"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41918","_from":"28088","_to":"28097"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41906","_from":"28088","_to":"28096"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41896","_from":"28088","_to":"28094"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41887","_from":"28088","_to":"28093"} +{"$label":"ACTS_IN","name":"James Morton","type":"Role","_key":"41874","_from":"28088","_to":"28092"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"41922","_from":"28089","_to":"28097"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"41900","_from":"28089","_to":"28094"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"41888","_from":"28089","_to":"28093"} +{"$label":"ACTS_IN","name":"Conchita","type":"Role","_key":"41875","_from":"28089","_to":"28092"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41925","_from":"28090","_to":"28097"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41912","_from":"28090","_to":"28096"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41902","_from":"28090","_to":"28094"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41889","_from":"28090","_to":"28093"} +{"$label":"ACTS_IN","name":"Roschana","type":"Role","_key":"41876","_from":"28090","_to":"28092"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41920","_from":"28091","_to":"28097"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41908","_from":"28091","_to":"28096"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41898","_from":"28091","_to":"28094"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41884","_from":"28091","_to":"28093"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"41878","_from":"28091","_to":"28092"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"41894","_from":"28095","_to":"28094"} +{"$label":"ACTS_IN","name":"Lescaut","type":"Role","_key":"41936","_from":"28106","_to":"28098"} +{"$label":"ACTS_IN","name":"Susanne","type":"Role","_key":"41934","_from":"28105","_to":"28098"} +{"$label":"ACTS_IN","name":"Manons Tante","type":"Role","_key":"41932","_from":"28104","_to":"28098"} +{"$label":"ACTS_IN","name":"Marquis de Bill","type":"Role","_key":"41931","_from":"28103","_to":"28098"} +{"$label":"ACTS_IN","name":"Marschall Des Grieux","type":"Role","_key":"41930","_from":"28102","_to":"28098"} +{"$label":"ACTS_IN","name":"Des Grieux","type":"Role","_key":"41929","_from":"28101","_to":"28098"} +{"$label":"ACTS_IN","name":"Manon Lescaut","type":"Role","_key":"41928","_from":"28100","_to":"28098"} +{"$label":"DIRECTED","_key":"41927","_from":"28099","_to":"28098"} +{"$label":"ACTS_IN","name":"Gretchens Mutter","type":"Role","_key":"65291","_from":"28104","_to":"40525"} +{"$label":"ACTS_IN","name":"Josefa","type":"Role","_key":"47647","_from":"28104","_to":"31393"} +{"$label":"ACTS_IN","name":"Dr. Marion Kang","type":"Role","_key":"41953","_from":"28110","_to":"28107"} +{"$label":"ACTS_IN","name":"Ciro","type":"Role","_key":"41952","_from":"28109","_to":"28107"} +{"$label":"ACTS_IN","name":"Resident","type":"Role","_key":"41951","_from":"28108","_to":"28107"} +{"$label":"ACTS_IN","name":"Marilyn Jones","type":"Role","_key":"71210","_from":"28108","_to":"43215"} +{"$label":"ACTS_IN","name":"Ryoko","type":"Role","_key":"101924","_from":"28110","_to":"59987"} +{"$label":"ACTS_IN","name":"Berliner Oberb\u00fcrgermeister","type":"Role","_key":"41971","_from":"28126","_to":"28111"} +{"$label":"ACTS_IN","name":"Polizist in Zivil","type":"Role","_key":"41970","_from":"28125","_to":"28111"} +{"$label":"ACTS_IN","name":"Germanistikstudent","type":"Role","_key":"41969","_from":"28124","_to":"28111"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"41968","_from":"28123","_to":"28111"} +{"$label":"ACTS_IN","name":"Restaurantgast","type":"Role","_key":"41967","_from":"28122","_to":"28111"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"41966","_from":"28121","_to":"28111"} +{"$label":"ACTS_IN","name":"Fine","type":"Role","_key":"41965","_from":"28120","_to":"28111"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"41964","_from":"28119","_to":"28111"} +{"$label":"ACTS_IN","name":"Polizeibeamter Schelling","type":"Role","_key":"41963","_from":"28118","_to":"28111"} +{"$label":"ACTS_IN","name":"Museumsdirektorin","type":"Role","_key":"41962","_from":"28117","_to":"28111"} +{"$label":"ACTS_IN","name":"Goller","type":"Role","_key":"41961","_from":"28116","_to":"28111"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"41959","_from":"28115","_to":"28111"} +{"$label":"ACTS_IN","name":"Julia Weber","type":"Role","_key":"41956","_from":"28114","_to":"28111"} +{"$label":"ACTS_IN","name":"Jean Berlinger","type":"Role","_key":"41955","_from":"28113","_to":"28111"} +{"$label":"DIRECTED","_key":"41954","_from":"28112","_to":"28111"} +{"$label":"ACTS_IN","name":"Christiene Wiemann","type":"Role","_key":"43821","_from":"28114","_to":"29265"} +{"$label":"ACTS_IN","name":"Gabriela","type":"Role","_key":"43177","_from":"28114","_to":"28832"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41978","_from":"28131","_to":"28127"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41977","_from":"28130","_to":"28127"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41975","_from":"28129","_to":"28127"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"41974","_from":"28128","_to":"28127"} +{"$label":"ACTS_IN","name":"The Photographer","type":"Role","_key":"110068","_from":"28130","_to":"65036"} +{"$label":"ACTS_IN","name":"Hartmut Baum","type":"Role","_key":"41989","_from":"28138","_to":"28132"} +{"$label":"ACTS_IN","name":"Polizeiarzt","type":"Role","_key":"41988","_from":"28137","_to":"28132"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"41987","_from":"28136","_to":"28132"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"41986","_from":"28135","_to":"28132"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"41983","_from":"28134","_to":"28132"} +{"$label":"DIRECTED","_key":"41979","_from":"28133","_to":"28132"} +{"$label":"ACTS_IN","name":"Sch\u00fctte","type":"Role","_key":"49630","_from":"28138","_to":"32478"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"41998","_from":"28143","_to":"28139"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"41995","_from":"28142","_to":"28139"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"41993","_from":"28141","_to":"28139"} +{"$label":"DIRECTED","_key":"41991","_from":"28140","_to":"28139"} +{"$label":"ACTS_IN","name":"Aunt Laura","type":"Role","_key":"42018","_from":"28154","_to":"28144"} +{"$label":"ACTS_IN","name":"Count Murveldt","type":"Role","_key":"42015","_from":"28153","_to":"28144"} +{"$label":"ACTS_IN","name":"Mathilde von Schnappwitz","type":"Role","_key":"42014","_from":"28152","_to":"28144"} +{"$label":"ACTS_IN","name":"Kuno von Schnappwitz","type":"Role","_key":"42013","_from":"28151","_to":"28144"} +{"$label":"ACTS_IN","name":"von Strullbach","type":"Role","_key":"42012","_from":"28150","_to":"28144"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"42011","_from":"28149","_to":"28144"} +{"$label":"ACTS_IN","name":"Editha","type":"Role","_key":"42010","_from":"28148","_to":"28144"} +{"$label":"ACTS_IN","name":"Barone\u00df Adelheid von Twackel","type":"Role","_key":"42007","_from":"28147","_to":"28144"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"42004","_from":"28146","_to":"28144"} +{"$label":"ACTS_IN","name":"Paula M\u00fchlberg","type":"Role","_key":"42001","_from":"28145","_to":"28144"} +{"$label":"ACTS_IN","name":"Baron Sandau","type":"Role","_key":"45108","_from":"28150","_to":"29943"} +{"$label":"ACTS_IN","name":"Hermann Schulze","type":"Role","_key":"44424","_from":"28153","_to":"29590"} +{"$label":"ACTS_IN","name":"Siristide","type":"Role","_key":"43218","_from":"28153","_to":"28859"} +{"$label":"ACTS_IN","name":"Blombergs Verwandschaft","type":"Role","_key":"42036","_from":"28167","_to":"28155"} +{"$label":"ACTS_IN","name":"Blombergs Verwandschaft","type":"Role","_key":"42035","_from":"28166","_to":"28155"} +{"$label":"ACTS_IN","name":"Gerichtsvolltieher","type":"Role","_key":"42034","_from":"28165","_to":"28155"} +{"$label":"ACTS_IN","name":"Bomberger Verwandschaft","type":"Role","_key":"42032","_from":"28164","_to":"28155"} +{"$label":"ACTS_IN","name":"Lt. Werner","type":"Role","_key":"42029","_from":"28163","_to":"28155"} +{"$label":"ACTS_IN","name":"Fiffi","type":"Role","_key":"42027","_from":"28162","_to":"28155"} +{"$label":"ACTS_IN","name":"Sophies Freundin","type":"Role","_key":"42024","_from":"28161","_to":"28155"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"42023","_from":"28160","_to":"28155"} +{"$label":"ACTS_IN","name":"Geiger","type":"Role","_key":"42022","_from":"28159","_to":"28155"} +{"$label":"ACTS_IN","name":"Verwandter von Blomberg","type":"Role","_key":"42021","_from":"28158","_to":"28155"} +{"$label":"ACTS_IN","name":"Frau von Gutelager","type":"Role","_key":"42020","_from":"28157","_to":"28155"} +{"$label":"DIRECTED","_key":"42019","_from":"28156","_to":"28155"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"42046","_from":"28172","_to":"28168"} +{"$label":"ACTS_IN","name":"Conductor","type":"Role","_key":"42044","_from":"28171","_to":"28168"} +{"$label":"ACTS_IN","name":"Polizei Offizier","type":"Role","_key":"42043","_from":"28170","_to":"28168"} +{"$label":"ACTS_IN","name":"Jane Berry","type":"Role","_key":"42042","_from":"28169","_to":"28168"} +{"$label":"ACTS_IN","name":"A. Anselmi","type":"Role","_key":"42060","_from":"28184","_to":"28173"} +{"$label":"ACTS_IN","name":"Dr. Thienhaus","type":"Role","_key":"42059","_from":"28183","_to":"28173"} +{"$label":"ACTS_IN","name":"Calvin Baker","type":"Role","_key":"42058","_from":"28182","_to":"28173"} +{"$label":"ACTS_IN","name":"Max-Thomas Wolf","type":"Role","_key":"42057","_from":"28181","_to":"28173"} +{"$label":"ACTS_IN","name":"Werner Kawinske","type":"Role","_key":"42056","_from":"28180","_to":"28173"} +{"$label":"ACTS_IN","name":"Josefine Schatz","type":"Role","_key":"42055","_from":"28179","_to":"28173"} +{"$label":"ACTS_IN","name":"Nellie Eppstein","type":"Role","_key":"42054","_from":"28178","_to":"28173"} +{"$label":"ACTS_IN","name":"Giuseppe Anselmi","type":"Role","_key":"42053","_from":"28177","_to":"28173"} +{"$label":"ACTS_IN","name":"Susanne Eppstein","type":"Role","_key":"42051","_from":"28176","_to":"28173"} +{"$label":"ACTS_IN","name":"Marianne Toeplitz","type":"Role","_key":"42050","_from":"28175","_to":"28173"} +{"$label":"DIRECTED","_key":"42049","_from":"28174","_to":"28173"} +{"$label":"ACTS_IN","name":"Anna Sommer","type":"Role","_key":"50885","_from":"28175","_to":"33211"} +{"$label":"ACTS_IN","name":"Dr. Kerner","type":"Role","_key":"42077","_from":"28195","_to":"28186"} +{"$label":"ACTS_IN","name":"Maurizio Trebiani","type":"Role","_key":"42076","_from":"28194","_to":"28186"} +{"$label":"ACTS_IN","name":"Dr. Schmitt","type":"Role","_key":"42075","_from":"28193","_to":"28186"} +{"$label":"ACTS_IN","name":"Luca Perugini","type":"Role","_key":"42074","_from":"28192","_to":"28186"} +{"$label":"ACTS_IN","name":"Dr. Niemeier","type":"Role","_key":"42073","_from":"28191","_to":"28186"} +{"$label":"ACTS_IN","name":"Nora Hansen","type":"Role","_key":"42072","_from":"28190","_to":"28186"} +{"$label":"ACTS_IN","name":"Dr. Peter Sommerfeld","type":"Role","_key":"42071","_from":"28189","_to":"28186"} +{"$label":"ACTS_IN","name":"Maria Trebiani","type":"Role","_key":"42069","_from":"28188","_to":"28186"} +{"$label":"DIRECTED","_key":"42068","_from":"28187","_to":"28186"} +{"$label":"ACTS_IN","name":"Oberst Herold","type":"Role","_key":"42094","_from":"28189","_to":"28198"} +{"$label":"ACTS_IN","name":"Traute Lafrenz","type":"Role","_key":"67598","_from":"28190","_to":"41609"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"66271","_from":"28190","_to":"40996"} +{"$label":"ACTS_IN","name":"Sister Catherine","type":"Role","_key":"62070","_from":"28190","_to":"39083"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"43150","_from":"28191","_to":"28811"} +{"$label":"ACTS_IN","name":"Vincenco Serboli","type":"Role","_key":"42673","_from":"28192","_to":"28564"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"50200","_from":"28195","_to":"32814"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"42085","_from":"28197","_to":"28196"} +{"$label":"DIRECTED","_key":"42111","_from":"28213","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42110","_from":"28212","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42109","_from":"28211","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42108","_from":"28210","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42107","_from":"28209","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42106","_from":"28208","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42105","_from":"28207","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42103","_from":"28206","_to":"28198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42102","_from":"28205","_to":"28198"} +{"$label":"ACTS_IN","name":"Rekrut","type":"Role","_key":"42101","_from":"28204","_to":"28198"} +{"$label":"ACTS_IN","name":"Rekrut","type":"Role","_key":"42098","_from":"28203","_to":"28198"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"42096","_from":"28202","_to":"28198"} +{"$label":"ACTS_IN","name":"Adjudant Klein","type":"Role","_key":"42093","_from":"28201","_to":"28198"} +{"$label":"ACTS_IN","name":"Prinzessin Shirin","type":"Role","_key":"42091","_from":"28200","_to":"28198"} +{"$label":"ACTS_IN","name":"Ausbilder Schmidt","type":"Role","_key":"42089","_from":"28199","_to":"28198"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"88179","_from":"28200","_to":"52318"} +{"$label":"ACTS_IN","name":"R\u00f6mischer Gesch\u00e4ftsmann","type":"Role","_key":"46290","_from":"28201","_to":"30593"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45448","_from":"28203","_to":"30115"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42213","_from":"28203","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45447","_from":"28204","_to":"30115"} +{"$label":"ACTS_IN","name":"Physiotherapeut","type":"Role","_key":"46451","_from":"28205","_to":"30681"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42212","_from":"28205","_to":"28267"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42116","_from":"28217","_to":"28214"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42114","_from":"28216","_to":"28214"} +{"$label":"DIRECTED","_key":"42112","_from":"28215","_to":"28214"} +{"$label":"ACTS_IN","name":"Dode","type":"Role","_key":"52749","_from":"28216","_to":"34224"} +{"$label":"ACTS_IN","name":"Rosl","type":"Role","_key":"42132","_from":"28225","_to":"28218"} +{"$label":"ACTS_IN","name":"Lina","type":"Role","_key":"42131","_from":"28224","_to":"28218"} +{"$label":"ACTS_IN","name":"Ursl","type":"Role","_key":"42129","_from":"28223","_to":"28218"} +{"$label":"ACTS_IN","name":"Anton Vogt","type":"Role","_key":"42128","_from":"28222","_to":"28218"} +{"$label":"ACTS_IN","name":"Kriminalinspektor","type":"Role","_key":"42126","_from":"28221","_to":"28218"} +{"$label":"ACTS_IN","name":"Fritz Mertens","type":"Role","_key":"42121","_from":"28220","_to":"28218"} +{"$label":"DIRECTED","_key":"42118","_from":"28219","_to":"28218"} +{"$label":"DIRECTED","_key":"89472","_from":"28219","_to":"52973"} +{"$label":"DIRECTED","_key":"44627","_from":"28219","_to":"29701"} +{"$label":"ACTS_IN","name":"Erzherzog Peter Ferdinand","type":"Role","_key":"44662","_from":"28220","_to":"29716"} +{"$label":"ACTS_IN","name":"Joseph Brandt ( B\u00e4renjoseph )","type":"Role","_key":"43064","_from":"28221","_to":"28764"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44608","_from":"28222","_to":"29680"} +{"$label":"ACTS_IN","name":"Frau Kostowisch","type":"Role","_key":"45091","_from":"28223","_to":"29936"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"44610","_from":"28223","_to":"29680"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"42138","_from":"28230","_to":"28226"} +{"$label":"ACTS_IN","name":"Miss Sophie","type":"Role","_key":"42137","_from":"28229","_to":"28226"} +{"$label":"ACTS_IN","name":"James the Butler","type":"Role","_key":"42136","_from":"28228","_to":"28226"} +{"$label":"DIRECTED","_key":"42135","_from":"28227","_to":"28226"} +{"$label":"ACTS_IN","name":"Dr. Bruno Wolf","type":"Role","_key":"42149","_from":"28238","_to":"28231"} +{"$label":"ACTS_IN","name":"Johann Petersen","type":"Role","_key":"42148","_from":"28237","_to":"28231"} +{"$label":"ACTS_IN","name":"Herr Harms","type":"Role","_key":"42145","_from":"28236","_to":"28231"} +{"$label":"ACTS_IN","name":"Patrick Groote","type":"Role","_key":"42143","_from":"28235","_to":"28231"} +{"$label":"ACTS_IN","name":"Melanie Jakobs","type":"Role","_key":"42142","_from":"28234","_to":"28231"} +{"$label":"ACTS_IN","name":"Dr. Corinna Jakobs","type":"Role","_key":"42140","_from":"28233","_to":"28231"} +{"$label":"DIRECTED","_key":"42139","_from":"28232","_to":"28231"} +{"$label":"ACTS_IN","name":"Grandfather Borcherts","type":"Role","_key":"88302","_from":"28236","_to":"52370"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43206","_from":"28236","_to":"28852"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"42862","_from":"28238","_to":"28655"} +{"$label":"ACTS_IN","name":"Bewerber","type":"Role","_key":"42164","_from":"28248","_to":"28239"} +{"$label":"ACTS_IN","name":"Frau Jessel","type":"Role","_key":"42162","_from":"28247","_to":"28239"} +{"$label":"ACTS_IN","name":"Vertreterin","type":"Role","_key":"42161","_from":"28246","_to":"28239"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"42160","_from":"28245","_to":"28239"} +{"$label":"ACTS_IN","name":"Schweizerin","type":"Role","_key":"42159","_from":"28244","_to":"28239"} +{"$label":"ACTS_IN","name":"Herr Klein","type":"Role","_key":"42158","_from":"28243","_to":"28239"} +{"$label":"ACTS_IN","name":"Nils Kleefeld","type":"Role","_key":"42156","_from":"28242","_to":"28239"} +{"$label":"ACTS_IN","name":"Sarah Kleefeld","type":"Role","_key":"42155","_from":"28241","_to":"28239"} +{"$label":"ACTS_IN","name":"Juliane Kostner","type":"Role","_key":"42151","_from":"28240","_to":"28239"} +{"$label":"ACTS_IN","name":"Johanna Wiemann","type":"Role","_key":"43820","_from":"28240","_to":"29265"} +{"$label":"ACTS_IN","name":"Helene Helsing","type":"Role","_key":"42959","_from":"28240","_to":"28701"} +{"$label":"ACTS_IN","name":"Elsa von Eschenbach","type":"Role","_key":"42905","_from":"28240","_to":"28665"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"42690","_from":"28243","_to":"28571"} +{"$label":"ACTS_IN","name":"Malte","type":"Role","_key":"62234","_from":"28248","_to":"39188"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"42181","_from":"28260","_to":"28249"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"42180","_from":"28259","_to":"28249"} +{"$label":"ACTS_IN","name":"Tadzio","type":"Role","_key":"42179","_from":"28258","_to":"28249"} +{"$label":"ACTS_IN","name":"Ute Dumitresco","type":"Role","_key":"42176","_from":"28257","_to":"28249"} +{"$label":"ACTS_IN","name":"Prof. Crespi","type":"Role","_key":"42174","_from":"28256","_to":"28249"} +{"$label":"ACTS_IN","name":"Anna Giuliano","type":"Role","_key":"42173","_from":"28255","_to":"28249"} +{"$label":"ACTS_IN","name":"Rosanna","type":"Role","_key":"42172","_from":"28254","_to":"28249"} +{"$label":"ACTS_IN","name":"Jacob Meerbaum","type":"Role","_key":"42171","_from":"28253","_to":"28249"} +{"$label":"ACTS_IN","name":"David Rauch","type":"Role","_key":"42168","_from":"28252","_to":"28249"} +{"$label":"ACTS_IN","name":"Sophie Martell","type":"Role","_key":"42166","_from":"28251","_to":"28249"} +{"$label":"DIRECTED","_key":"42165","_from":"28250","_to":"28249"} +{"$label":"ACTS_IN","name":"Alpha Steininger","type":"Role","_key":"43034","_from":"28251","_to":"28745"} +{"$label":"ACTS_IN","name":"Nase","type":"Role","_key":"64777","_from":"28252","_to":"40312"} +{"$label":"ACTS_IN","name":"Kurt Stockmann","type":"Role","_key":"42957","_from":"28252","_to":"28701"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51446","_from":"28257","_to":"33555"} +{"$label":"ACTS_IN","name":"Roberta Cavell","type":"Role","_key":"42195","_from":"28266","_to":"28261"} +{"$label":"ACTS_IN","name":"Young Duddits","type":"Role","_key":"42194","_from":"28265","_to":"28261"} +{"$label":"ACTS_IN","name":"Young Pete","type":"Role","_key":"42193","_from":"28264","_to":"28261"} +{"$label":"ACTS_IN","name":"Young Beaver","type":"Role","_key":"42191","_from":"28263","_to":"28261"} +{"$label":"ACTS_IN","name":"Young Henry","type":"Role","_key":"42190","_from":"28262","_to":"28261"} +{"$label":"ACTS_IN","name":"Bobby Funke","type":"Role","_key":"115170","_from":"28263","_to":"67820"} +{"$label":"ACTS_IN","name":"Hal Hefner","type":"Role","_key":"92310","_from":"28263","_to":"54473"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42228","_from":"28282","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42227","_from":"28281","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42226","_from":"28280","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42224","_from":"28279","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42223","_from":"28278","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42222","_from":"28277","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42221","_from":"28276","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42218","_from":"28275","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42216","_from":"28274","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42215","_from":"28273","_to":"28267"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42209","_from":"28272","_to":"28267"} +{"$label":"ACTS_IN","name":"Rottenf\u00fchrer Puffke","type":"Role","_key":"42208","_from":"28271","_to":"28267"} +{"$label":"ACTS_IN","name":"SS-Mann Moltke","type":"Role","_key":"42207","_from":"28270","_to":"28267"} +{"$label":"ACTS_IN","name":"Martin Bormann","type":"Role","_key":"42206","_from":"28269","_to":"28267"} +{"$label":"ACTS_IN","name":"Obergruppenf\u00fchrer Rattenhuber","type":"Role","_key":"42205","_from":"28268","_to":"28267"} +{"$label":"ACTS_IN","name":"Dr. Schulze","type":"Role","_key":"46833","_from":"28268","_to":"30889"} +{"$label":"ACTS_IN","name":"Heimleiter","type":"Role","_key":"67051","_from":"28269","_to":"41385"} +{"$label":"ACTS_IN","name":"Hauptmann Stummel","type":"Role","_key":"70342","_from":"28270","_to":"42854"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"48433","_from":"28270","_to":"31785"} +{"$label":"ACTS_IN","name":"Kellner","type":"Role","_key":"42692","_from":"28274","_to":"28571"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46329","_from":"28277","_to":"30610"} +{"$label":"ACTS_IN","name":"Diakonistin","type":"Role","_key":"46314","_from":"28277","_to":"30602"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"46455","_from":"28279","_to":"30681"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71893","_from":"28282","_to":"43491"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"42243","_from":"28292","_to":"28283"} +{"$label":"ACTS_IN","name":"L'Employ\u00e9e ANPE","type":"Role","_key":"42242","_from":"28291","_to":"28283"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"42241","_from":"28290","_to":"28283"} +{"$label":"ACTS_IN","name":"Le Barman","type":"Role","_key":"42240","_from":"28289","_to":"28283"} +{"$label":"ACTS_IN","name":"Richard Carambo","type":"Role","_key":"42239","_from":"28288","_to":"28283"} +{"$label":"ACTS_IN","name":"Mammouth","type":"Role","_key":"42238","_from":"28287","_to":"28283"} +{"$label":"ACTS_IN","name":"Jean-Fran\u00e7ois","type":"Role","_key":"42237","_from":"28286","_to":"28283"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"42234","_from":"28285","_to":"28283"} +{"$label":"ACTS_IN","name":"Masson","type":"Role","_key":"42233","_from":"28284","_to":"28283"} +{"$label":"ACTS_IN","name":"Nelly","type":"Role","_key":"115917","_from":"28285","_to":"68242"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"101712","_from":"28285","_to":"59865"} +{"$label":"ACTS_IN","name":"C\u00e9cile","type":"Role","_key":"100050","_from":"28285","_to":"59020"} +{"$label":"ACTS_IN","name":"Cl\u00e9mentine","type":"Role","_key":"66050","_from":"28285","_to":"40877"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"48774","_from":"28285","_to":"31986"} +{"$label":"DIRECTED","_key":"48615","_from":"28287","_to":"31888"} +{"$label":"ACTS_IN","name":"R\u00e9mi","type":"Role","_key":"105090","_from":"28288","_to":"61852"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"94805","_from":"28288","_to":"55832"} +{"$label":"ACTS_IN","name":"Le Commissaire","type":"Role","_key":"121770","_from":"28292","_to":"71533"} +{"$label":"ACTS_IN","name":"Le Commissaire","type":"Role","_key":"110837","_from":"28292","_to":"65471"} +{"$label":"ACTS_IN","name":"Inspecteur Beck","type":"Role","_key":"42257","_from":"28296","_to":"28293"} +{"$label":"ACTS_IN","name":"Sergent Marcel","type":"Role","_key":"42256","_from":"28295","_to":"28293"} +{"$label":"ACTS_IN","name":"Le marin","type":"Role","_key":"42255","_from":"28294","_to":"28293"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42277","_from":"28311","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42276","_from":"28310","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42275","_from":"28309","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42273","_from":"28308","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42272","_from":"28307","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42271","_from":"28306","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42270","_from":"28305","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42269","_from":"28304","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42267","_from":"28303","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42266","_from":"28302","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42265","_from":"28301","_to":"28297"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42264","_from":"28300","_to":"28297"} +{"$label":"ACTS_IN","name":"Anna G\u00f6llner","type":"Role","_key":"42259","_from":"28299","_to":"28297"} +{"$label":"DIRECTED","_key":"42258","_from":"28298","_to":"28297"} +{"$label":"ACTS_IN","name":"Nene","type":"Role","_key":"42293","_from":"28299","_to":"28316"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"42280","_from":"28299","_to":"28312"} +{"$label":"ACTS_IN","name":"Karls Mutter","type":"Role","_key":"91035","_from":"28300","_to":"53710"} +{"$label":"ACTS_IN","name":"Andr\u00e9e de Taverney-Maison-Rouge","type":"Role","_key":"71972","_from":"28300","_to":"43534"} +{"$label":"ACTS_IN","name":"Frau Radke","type":"Role","_key":"68156","_from":"28300","_to":"41857"} +{"$label":"ACTS_IN","name":"Frau Pfeffer-Kischewski","type":"Role","_key":"66785","_from":"28300","_to":"41259"} +{"$label":"ACTS_IN","name":"Andrea Loren","type":"Role","_key":"43199","_from":"28300","_to":"28852"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"42623","_from":"28300","_to":"28533"} +{"$label":"ACTS_IN","name":"Georg von Eiler","type":"Role","_key":"42459","_from":"28304","_to":"28429"} +{"$label":"ACTS_IN","name":"Peter 'Lotti' Lottmann","type":"Role","_key":"42411","_from":"28304","_to":"28380"} +{"$label":"ACTS_IN","name":"Manfred als Jugendlicher","type":"Role","_key":"43840","_from":"28305","_to":"29272"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42287","_from":"28310","_to":"28312"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42285","_from":"28315","_to":"28312"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"42279","_from":"28314","_to":"28312"} +{"$label":"DIRECTED","_key":"42278","_from":"28313","_to":"28312"} +{"$label":"DIRECTED","_key":"68452","_from":"28313","_to":"41988"} +{"$label":"ACTS_IN","name":"Generaladjudant Gr\u00fcnne","type":"Role","_key":"42298","_from":"28321","_to":"28316"} +{"$label":"ACTS_IN","name":"Erzherzogin Sophie","type":"Role","_key":"42295","_from":"28320","_to":"28316"} +{"$label":"ACTS_IN","name":"Kaiser Franz Joseph","type":"Role","_key":"42292","_from":"28319","_to":"28316"} +{"$label":"ACTS_IN","name":"Sisi","type":"Role","_key":"42291","_from":"28318","_to":"28316"} +{"$label":"DIRECTED","_key":"42290","_from":"28317","_to":"28316"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"42304","_from":"28326","_to":"28322"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"42303","_from":"28325","_to":"28322"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"42302","_from":"28324","_to":"28322"} +{"$label":"DIRECTED","_key":"42301","_from":"28323","_to":"28322"} +{"$label":"ACTS_IN","name":"Trauernde","type":"Role","_key":"42315","_from":"28334","_to":"28327"} +{"$label":"ACTS_IN","name":"Chorleiter","type":"Role","_key":"42314","_from":"28333","_to":"28327"} +{"$label":"ACTS_IN","name":"Frau im Laden","type":"Role","_key":"42313","_from":"28332","_to":"28327"} +{"$label":"ACTS_IN","name":"Griesbacher","type":"Role","_key":"42310","_from":"28331","_to":"28327"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"42309","_from":"28330","_to":"28327"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"42307","_from":"28329","_to":"28327"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"42306","_from":"28328","_to":"28327"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42318","_from":"28331","_to":"28335"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42319","_from":"28332","_to":"28335"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42320","_from":"28336","_to":"28335"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42347","_from":"28348","_to":"28337"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42345","_from":"28347","_to":"28337"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42343","_from":"28346","_to":"28337"} +{"$label":"ACTS_IN","name":"Milke","type":"Role","_key":"42342","_from":"28345","_to":"28337"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42339","_from":"28344","_to":"28337"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42338","_from":"28343","_to":"28337"} +{"$label":"ACTS_IN","name":"o.A.","type":"Role","_key":"42337","_from":"28342","_to":"28337"} +{"$label":"ACTS_IN","name":"Bahnhofsvorsteher","type":"Role","_key":"42336","_from":"28341","_to":"28337"} +{"$label":"ACTS_IN","name":"Madame Sperling","type":"Role","_key":"42335","_from":"28340","_to":"28337"} +{"$label":"ACTS_IN","name":"Tante Alwine","type":"Role","_key":"42334","_from":"28339","_to":"28337"} +{"$label":"ACTS_IN","name":"Tante Berta","type":"Role","_key":"42332","_from":"28338","_to":"28337"} +{"$label":"ACTS_IN","name":"Mrs. Roselieb","type":"Role","_key":"45065","_from":"28338","_to":"29929"} +{"$label":"ACTS_IN","name":"Mrs. H\u00e4flingen","type":"Role","_key":"45064","_from":"28340","_to":"29929"} +{"$label":"ACTS_IN","name":"Staatssekret\u00e4r Kuhl\u00e4nder","type":"Role","_key":"45359","_from":"28341","_to":"30082"} +{"$label":"ACTS_IN","name":"Deer Hunter","type":"Role","_key":"42355","_from":"28357","_to":"28349"} +{"$label":"ACTS_IN","name":"Freddys Onkel","type":"Role","_key":"42354","_from":"28356","_to":"28349"} +{"$label":"ACTS_IN","name":"Caretaker","type":"Role","_key":"42353","_from":"28355","_to":"28349"} +{"$label":"ACTS_IN","name":"Freddys Vater","type":"Role","_key":"42352","_from":"28354","_to":"28349"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"42351","_from":"28353","_to":"28349"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"42350","_from":"28352","_to":"28349"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"42349","_from":"28351","_to":"28349"} +{"$label":"DIRECTED","_key":"42348","_from":"28350","_to":"28349"} +{"$label":"ACTS_IN","name":"Jo Jo","type":"Role","_key":"99984","_from":"28351","_to":"58990"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"92836","_from":"28351","_to":"54766"} +{"$label":"ACTS_IN","name":"Nebenmann","type":"Role","_key":"42392","_from":"28379","_to":"28358"} +{"$label":"ACTS_IN","name":"Herr Richard","type":"Role","_key":"42391","_from":"28378","_to":"28358"} +{"$label":"ACTS_IN","name":"Stefan Huhn","type":"Role","_key":"42390","_from":"28377","_to":"28358"} +{"$label":"ACTS_IN","name":"Manager II","type":"Role","_key":"42389","_from":"28376","_to":"28358"} +{"$label":"ACTS_IN","name":"Frau Nagelbeere","type":"Role","_key":"42388","_from":"28375","_to":"28358"} +{"$label":"ACTS_IN","name":"Polizist III Bahnhof","type":"Role","_key":"42387","_from":"28374","_to":"28358"} +{"$label":"ACTS_IN","name":"Gef\u00e4ngnisw\u00e4rter","type":"Role","_key":"42386","_from":"28373","_to":"28358"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"42384","_from":"28372","_to":"28358"} +{"$label":"ACTS_IN","name":"Busschaffner","type":"Role","_key":"42383","_from":"28371","_to":"28358"} +{"$label":"ACTS_IN","name":"Haush\u00e4lterin","type":"Role","_key":"42381","_from":"28370","_to":"28358"} +{"$label":"ACTS_IN","name":"Zugschaffner","type":"Role","_key":"42380","_from":"28369","_to":"28358"} +{"$label":"ACTS_IN","name":"Polizist II Bahnhof","type":"Role","_key":"42378","_from":"28368","_to":"28358"} +{"$label":"ACTS_IN","name":"Freundlicher Nachbar","type":"Role","_key":"42377","_from":"28367","_to":"28358"} +{"$label":"ACTS_IN","name":"Pfleger","type":"Role","_key":"42375","_from":"28366","_to":"28358"} +{"$label":"ACTS_IN","name":"Freier","type":"Role","_key":"42373","_from":"28365","_to":"28358"} +{"$label":"ACTS_IN","name":"Bordsteinschwalbe","type":"Role","_key":"42372","_from":"28364","_to":"28358"} +{"$label":"ACTS_IN","name":"Manager I","type":"Role","_key":"42371","_from":"28363","_to":"28358"} +{"$label":"ACTS_IN","name":"Nele","type":"Role","_key":"42370","_from":"28362","_to":"28358"} +{"$label":"ACTS_IN","name":"Polizist I Klinik","type":"Role","_key":"42369","_from":"28361","_to":"28358"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"42366","_from":"28360","_to":"28358"} +{"$label":"DIRECTED","_key":"42357","_from":"28359","_to":"28358"} +{"$label":"DIRECTED","_key":"54336","_from":"28359","_to":"34866"} +{"$label":"ACTS_IN","name":"Mehdi","type":"Role","_key":"64109","_from":"28363","_to":"40006"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"104436","_from":"28365","_to":"61431"} +{"$label":"ACTS_IN","name":"Gervais","type":"Role","_key":"96156","_from":"28365","_to":"56512"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"66382","_from":"28365","_to":"41056"} +{"$label":"DIRECTED","_key":"96153","_from":"28365","_to":"56512"} +{"$label":"ACTS_IN","name":"Radiosprecher","type":"Role","_key":"42419","_from":"28401","_to":"28380"} +{"$label":"ACTS_IN","name":"Bruno Skabowski","type":"Role","_key":"42418","_from":"28400","_to":"28380"} +{"$label":"ACTS_IN","name":"Nastya Scholz-Pashenko","type":"Role","_key":"42417","_from":"28399","_to":"28380"} +{"$label":"ACTS_IN","name":"Hilde Scholz","type":"Role","_key":"42416","_from":"28398","_to":"28380"} +{"$label":"ACTS_IN","name":"Erich Schiller","type":"Role","_key":"42414","_from":"28397","_to":"28380"} +{"$label":"ACTS_IN","name":"Suzanne Richter","type":"Role","_key":"42412","_from":"28396","_to":"28380"} +{"$label":"ACTS_IN","name":"Olaf Kling","type":"Role","_key":"42410","_from":"28395","_to":"28380"} +{"$label":"ACTS_IN","name":"Dr. Carsten Fl\u00f6ter","type":"Role","_key":"42409","_from":"28394","_to":"28380"} +{"$label":"ACTS_IN","name":"Murat Dagdelen","type":"Role","_key":"42408","_from":"28393","_to":"28380"} +{"$label":"ACTS_IN","name":"Sabrina Buchstab","type":"Role","_key":"42407","_from":"28392","_to":"28380"} +{"$label":"ACTS_IN","name":"Nina Beimer","type":"Role","_key":"42406","_from":"28391","_to":"28380"} +{"$label":"ACTS_IN","name":"Klaus Beimer","type":"Role","_key":"42405","_from":"28390","_to":"28380"} +{"$label":"ACTS_IN","name":"Hans Beimer","type":"Role","_key":"42403","_from":"28389","_to":"28380"} +{"$label":"DIRECTED","_key":"42402","_from":"28388","_to":"28380"} +{"$label":"DIRECTED","_key":"42401","_from":"28387","_to":"28380"} +{"$label":"DIRECTED","_key":"42400","_from":"28386","_to":"28380"} +{"$label":"DIRECTED","_key":"42399","_from":"28385","_to":"28380"} +{"$label":"DIRECTED","_key":"42398","_from":"28384","_to":"28380"} +{"$label":"DIRECTED","_key":"42397","_from":"28383","_to":"28380"} +{"$label":"DIRECTED","_key":"42396","_from":"28382","_to":"28380"} +{"$label":"DIRECTED","_key":"42395","_from":"28381","_to":"28380"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"42527","_from":"28391","_to":"28471"} +{"$label":"ACTS_IN","name":"Kerstin","type":"Role","_key":"42518","_from":"28391","_to":"28459"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51445","_from":"28398","_to":"33555"} +{"$label":"ACTS_IN","name":"Frau Anderson","type":"Role","_key":"42547","_from":"28398","_to":"28476"} +{"$label":"ACTS_IN","name":"Jolanta","type":"Role","_key":"42505","_from":"28399","_to":"28457"} +{"$label":"ACTS_IN","name":"Elene","type":"Role","_key":"42467","_from":"28399","_to":"28438"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n","type":"Role","_key":"42429","_from":"28410","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42428","_from":"28409","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42427","_from":"28408","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42426","_from":"28407","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42425","_from":"28403","_to":"28402"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n","type":"Role","_key":"42424","_from":"28406","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42423","_from":"28405","_to":"28402"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42422","_from":"28404","_to":"28402"} +{"$label":"DIRECTED","_key":"42421","_from":"28403","_to":"28402"} +{"$label":"ACTS_IN","name":"Lauras Mutter","type":"Role","_key":"42437","_from":"28417","_to":"28411"} +{"$label":"ACTS_IN","name":"N\u00f6jd","type":"Role","_key":"42436","_from":"28416","_to":"28411"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"42435","_from":"28415","_to":"28411"} +{"$label":"ACTS_IN","name":"Dr. \u00d6sterberg","type":"Role","_key":"42434","_from":"28414","_to":"28411"} +{"$label":"ACTS_IN","name":"Adolf","type":"Role","_key":"42431","_from":"28413","_to":"28411"} +{"$label":"DIRECTED","_key":"42430","_from":"28412","_to":"28411"} +{"$label":"ACTS_IN","name":"Thin Herdsman","type":"Role","_key":"71339","_from":"28416","_to":"43269"} +{"$label":"DIRECTED","_key":"42448","_from":"28426","_to":"28418"} +{"$label":"ACTS_IN","name":"Mme Bertrand","type":"Role","_key":"42447","_from":"28425","_to":"28418"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"42446","_from":"28424","_to":"28418"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"42445","_from":"28423","_to":"28418"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"42443","_from":"28422","_to":"28418"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"42442","_from":"28421","_to":"28418"} +{"$label":"ACTS_IN","name":"Marilyn","type":"Role","_key":"42441","_from":"28420","_to":"28418"} +{"$label":"ACTS_IN","name":"Jean-Marie Kunstler","type":"Role","_key":"42439","_from":"28419","_to":"28418"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115743","_from":"28419","_to":"68151"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"104466","_from":"28419","_to":"61444"} +{"$label":"ACTS_IN","name":"Vincent Disse","type":"Role","_key":"104007","_from":"28419","_to":"61190"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"91826","_from":"28419","_to":"54170"} +{"$label":"ACTS_IN","name":"Le Marquis Gr\u00e9goire Ponceludon de Malavoy","type":"Role","_key":"91162","_from":"28419","_to":"53774"} +{"$label":"ACTS_IN","name":"Eug\u00e8ne","type":"Role","_key":"90804","_from":"28419","_to":"53582"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"48808","_from":"28419","_to":"32011"} +{"$label":"ACTS_IN","name":"Lise","type":"Role","_key":"120730","_from":"28420","_to":"70913"} +{"$label":"ACTS_IN","name":"Sophie Gatineau","type":"Role","_key":"92118","_from":"28420","_to":"54355"} +{"$label":"DIRECTED","_key":"104024","_from":"28426","_to":"61200"} +{"$label":"DIRECTED","_key":"68191","_from":"28426","_to":"41883"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Dupr\u00e9","type":"Role","_key":"42455","_from":"28428","_to":"28427"} +{"$label":"ACTS_IN","name":"Freundin Georg","type":"Role","_key":"42461","_from":"28434","_to":"28429"} +{"$label":"ACTS_IN","name":"Freundin Georg","type":"Role","_key":"42460","_from":"28433","_to":"28429"} +{"$label":"ACTS_IN","name":"Stein","type":"Role","_key":"42458","_from":"28432","_to":"28429"} +{"$label":"ACTS_IN","name":"Ammalie","type":"Role","_key":"42457","_from":"28431","_to":"28429"} +{"$label":"DIRECTED","_key":"42456","_from":"28430","_to":"28429"} +{"$label":"ACTS_IN","name":"Redakteurin Alina","type":"Role","_key":"42483","_from":"28431","_to":"28443"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42464","_from":"28432","_to":"28435"} +{"$label":"ACTS_IN","name":"Minnie van Hoogen","type":"Role","_key":"42463","_from":"28437","_to":"28435"} +{"$label":"DIRECTED","_key":"42462","_from":"28436","_to":"28435"} +{"$label":"DIRECTED","_key":"61428","_from":"28436","_to":"38743"} +{"$label":"ACTS_IN","name":"Zorab","type":"Role","_key":"42471","_from":"28442","_to":"28438"} +{"$label":"ACTS_IN","name":"Grandfather Georgi","type":"Role","_key":"42470","_from":"28441","_to":"28438"} +{"$label":"ACTS_IN","name":"Lady Death","type":"Role","_key":"42469","_from":"28440","_to":"28438"} +{"$label":"DIRECTED","_key":"42465","_from":"28439","_to":"28438"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42489","_from":"28454","_to":"28443"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42488","_from":"28453","_to":"28443"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42487","_from":"28452","_to":"28443"} +{"$label":"ACTS_IN","name":"Herr Sievert","type":"Role","_key":"42486","_from":"28451","_to":"28443"} +{"$label":"ACTS_IN","name":"Redakteurin Franka","type":"Role","_key":"42484","_from":"28450","_to":"28443"} +{"$label":"ACTS_IN","name":"Marietta","type":"Role","_key":"42482","_from":"28449","_to":"28443"} +{"$label":"ACTS_IN","name":"Kroll-Morawetz","type":"Role","_key":"42480","_from":"28448","_to":"28443"} +{"$label":"ACTS_IN","name":"Kyra Rosentreter","type":"Role","_key":"42479","_from":"28447","_to":"28443"} +{"$label":"ACTS_IN","name":"Birgit","type":"Role","_key":"42477","_from":"28446","_to":"28443"} +{"$label":"ACTS_IN","name":"Thea","type":"Role","_key":"42475","_from":"28445","_to":"28443"} +{"$label":"DIRECTED","_key":"42472","_from":"28444","_to":"28443"} +{"$label":"DIRECTED","_key":"66558","_from":"28444","_to":"41143"} +{"$label":"ACTS_IN","name":"Sigrid","type":"Role","_key":"43837","_from":"28447","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42499","_from":"28456","_to":"28455"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43451","_from":"28456","_to":"29026"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"42507","_from":"28458","_to":"28457"} +{"$label":"ACTS_IN","name":"Frau Kempinski","type":"Role","_key":"71768","_from":"28458","_to":"43439"} +{"$label":"ACTS_IN","name":"Frau Heinckel","type":"Role","_key":"68157","_from":"28458","_to":"41857"} +{"$label":"ACTS_IN","name":"Vera Malkowski","type":"Role","_key":"52643","_from":"28458","_to":"34194"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"42523","_from":"28470","_to":"28459"} +{"$label":"ACTS_IN","name":"Pr\u00fcgler Muki","type":"Role","_key":"42522","_from":"28469","_to":"28459"} +{"$label":"ACTS_IN","name":"Oma Seifert","type":"Role","_key":"42521","_from":"28468","_to":"28459"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"42520","_from":"28467","_to":"28459"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"42519","_from":"28466","_to":"28459"} +{"$label":"ACTS_IN","name":"Franks Mutter","type":"Role","_key":"42516","_from":"28465","_to":"28459"} +{"$label":"ACTS_IN","name":"Aishe","type":"Role","_key":"42514","_from":"28464","_to":"28459"} +{"$label":"ACTS_IN","name":"Burhan","type":"Role","_key":"42513","_from":"28463","_to":"28459"} +{"$label":"ACTS_IN","name":"Wolle","type":"Role","_key":"42512","_from":"28462","_to":"28459"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"42511","_from":"28461","_to":"28459"} +{"$label":"DIRECTED","_key":"42510","_from":"28460","_to":"28459"} +{"$label":"DIRECTED","_key":"44111","_from":"28460","_to":"29413"} +{"$label":"ACTS_IN","name":"Vio","type":"Role","_key":"72772","_from":"28465","_to":"43840"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"52542","_from":"28465","_to":"34160"} +{"$label":"ACTS_IN","name":"Simona","type":"Role","_key":"65218","_from":"28467","_to":"40496"} +{"$label":"ACTS_IN","name":"Penelope \"Nele\" Kaufmann","type":"Role","_key":"65119","_from":"28467","_to":"40449"} +{"$label":"ACTS_IN","name":"Ralfie","type":"Role","_key":"59770","_from":"28469","_to":"37734"} +{"$label":"ACTS_IN","name":"8. Zwerg","type":"Role","_key":"56966","_from":"28469","_to":"36144"} +{"$label":"DIRECTED","_key":"42535","_from":"28475","_to":"28471"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"42530","_from":"28474","_to":"28471"} +{"$label":"ACTS_IN","name":"Linus","type":"Role","_key":"42528","_from":"28473","_to":"28471"} +{"$label":"ACTS_IN","name":"Robi","type":"Role","_key":"42525","_from":"28472","_to":"28471"} +{"$label":"ACTS_IN","name":"Giorgi","type":"Role","_key":"42548","_from":"28482","_to":"28476"} +{"$label":"ACTS_IN","name":"Erika Kern","type":"Role","_key":"42545","_from":"28481","_to":"28476"} +{"$label":"ACTS_IN","name":"Frau Klemm","type":"Role","_key":"42544","_from":"28480","_to":"28476"} +{"$label":"ACTS_IN","name":"Frau Huber","type":"Role","_key":"42542","_from":"28479","_to":"28476"} +{"$label":"ACTS_IN","name":"Berthold Geier","type":"Role","_key":"42541","_from":"28478","_to":"28476"} +{"$label":"DIRECTED","_key":"42536","_from":"28477","_to":"28476"} +{"$label":"ACTS_IN","name":"Oberleutnant Lukas","type":"Role","_key":"72508","_from":"28478","_to":"43741"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"43788","_from":"28478","_to":"29234"} +{"$label":"ACTS_IN","name":"Ziborius","type":"Role","_key":"43163","_from":"28478","_to":"28819"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"42696","_from":"28478","_to":"28571"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"45107","_from":"28479","_to":"29943"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43097","_from":"28479","_to":"28781"} +{"$label":"ACTS_IN","name":"Jutta Heckmann","type":"Role","_key":"55687","_from":"28480","_to":"35440"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"43485","_from":"28480","_to":"29044"} +{"$label":"ACTS_IN","name":"Stefan G\u00fcrtler","type":"Role","_key":"42561","_from":"28488","_to":"28483"} +{"$label":"ACTS_IN","name":"Lara Bischof","type":"Role","_key":"42560","_from":"28487","_to":"28483"} +{"$label":"ACTS_IN","name":"Achim G\u00fcrtler","type":"Role","_key":"42557","_from":"28486","_to":"28483"} +{"$label":"ACTS_IN","name":"Carla Robitsch","type":"Role","_key":"42555","_from":"28485","_to":"28483"} +{"$label":"DIRECTED","_key":"42549","_from":"28484","_to":"28483"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"50201","_from":"28486","_to":"32814"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"42569","_from":"28495","_to":"28489"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"42568","_from":"28494","_to":"28489"} +{"$label":"ACTS_IN","name":"Mandy","type":"Role","_key":"42567","_from":"28493","_to":"28489"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"42565","_from":"28492","_to":"28489"} +{"$label":"ACTS_IN","name":"Silvio","type":"Role","_key":"42564","_from":"28491","_to":"28489"} +{"$label":"DIRECTED","_key":"42562","_from":"28490","_to":"28489"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"51339","_from":"28492","_to":"33478"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42585","_from":"28508","_to":"28496"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42584","_from":"28507","_to":"28496"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42583","_from":"28506","_to":"28496"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42582","_from":"28505","_to":"28496"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42581","_from":"28504","_to":"28496"} +{"$label":"ACTS_IN","name":"F\u00f6rster","type":"Role","_key":"42580","_from":"28503","_to":"28496"} +{"$label":"ACTS_IN","name":"Vinzenz","type":"Role","_key":"42578","_from":"28502","_to":"28496"} +{"$label":"ACTS_IN","name":"Amada","type":"Role","_key":"42577","_from":"28501","_to":"28496"} +{"$label":"ACTS_IN","name":"Bertl","type":"Role","_key":"42574","_from":"28500","_to":"28496"} +{"$label":"ACTS_IN","name":"Riki","type":"Role","_key":"42573","_from":"28499","_to":"28496"} +{"$label":"ACTS_IN","name":"Gerda","type":"Role","_key":"42572","_from":"28498","_to":"28496"} +{"$label":"DIRECTED","_key":"42570","_from":"28497","_to":"28496"} +{"$label":"ACTS_IN","name":"Liesl Leonhard","type":"Role","_key":"91708","_from":"28498","_to":"54103"} +{"$label":"ACTS_IN","name":"Dr, Behrmanns","type":"Role","_key":"44851","_from":"28504","_to":"29829"} +{"$label":"ACTS_IN","name":"Jeanette Leysenbrink","type":"Role","_key":"42592","_from":"28515","_to":"28509"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"42591","_from":"28514","_to":"28509"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"42590","_from":"28513","_to":"28509"} +{"$label":"ACTS_IN","name":"Fritzi","type":"Role","_key":"42589","_from":"28512","_to":"28509"} +{"$label":"ACTS_IN","name":"Marie Gruber","type":"Role","_key":"42587","_from":"28511","_to":"28509"} +{"$label":"DIRECTED","_key":"42586","_from":"28510","_to":"28509"} +{"$label":"ACTS_IN","name":"Frau Held","type":"Role","_key":"58956","_from":"28511","_to":"37225"} +{"$label":"ACTS_IN","name":"Veverl","type":"Role","_key":"44647","_from":"28511","_to":"29707"} +{"$label":"ACTS_IN","name":"Freya von Hepp","type":"Role","_key":"44010","_from":"28511","_to":"29357"} +{"$label":"ACTS_IN","name":"Hedi Ohlsen","type":"Role","_key":"43279","_from":"28511","_to":"28910"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42609","_from":"28530","_to":"28516"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"42608","_from":"28529","_to":"28516"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"42607","_from":"28528","_to":"28516"} +{"$label":"ACTS_IN","name":"Madame","type":"Role","_key":"42606","_from":"28527","_to":"28516"} +{"$label":"ACTS_IN","name":"Cherie","type":"Role","_key":"42605","_from":"28526","_to":"28516"} +{"$label":"ACTS_IN","name":"Snezana","type":"Role","_key":"42604","_from":"28525","_to":"28516"} +{"$label":"ACTS_IN","name":"Ozrens Vater","type":"Role","_key":"42603","_from":"28524","_to":"28516"} +{"$label":"ACTS_IN","name":"School Teacher","type":"Role","_key":"42602","_from":"28523","_to":"28516"} +{"$label":"ACTS_IN","name":"Joschi","type":"Role","_key":"42601","_from":"28522","_to":"28516"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42600","_from":"28521","_to":"28516"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42599","_from":"28520","_to":"28516"} +{"$label":"ACTS_IN","name":"Pepi","type":"Role","_key":"42597","_from":"28519","_to":"28516"} +{"$label":"ACTS_IN","name":"Ozren","type":"Role","_key":"42594","_from":"28518","_to":"28516"} +{"$label":"DIRECTED","_key":"42593","_from":"28517","_to":"28516"} +{"$label":"ACTS_IN","name":"Bill Searle","type":"Role","_key":"42617","_from":"28532","_to":"28531"} +{"$label":"ACTS_IN","name":"The Red Skull \/ Tadzio de Santis","type":"Role","_key":"98014","_from":"28532","_to":"57719"} +{"$label":"ACTS_IN","name":"Kirk Lolley","type":"Role","_key":"72217","_from":"28532","_to":"43634"} +{"$label":"ACTS_IN","name":"Brian Hunter","type":"Role","_key":"49676","_from":"28532","_to":"32500"} +{"$label":"ACTS_IN","name":"Zack Gregory","type":"Role","_key":"45279","_from":"28532","_to":"30040"} +{"$label":"ACTS_IN","name":"Grillender Mann","type":"Role","_key":"42630","_from":"28541","_to":"28533"} +{"$label":"ACTS_IN","name":"Sachverst\u00e4ndiger","type":"Role","_key":"42628","_from":"28540","_to":"28533"} +{"$label":"ACTS_IN","name":"Dr. Zellweger","type":"Role","_key":"42627","_from":"28539","_to":"28533"} +{"$label":"ACTS_IN","name":"Nadja Ullmann","type":"Role","_key":"42625","_from":"28538","_to":"28533"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"42624","_from":"28537","_to":"28533"} +{"$label":"ACTS_IN","name":"Marc Werner","type":"Role","_key":"42622","_from":"28536","_to":"28533"} +{"$label":"ACTS_IN","name":"Alexandra Werner","type":"Role","_key":"42621","_from":"28535","_to":"28533"} +{"$label":"DIRECTED","_key":"42620","_from":"28534","_to":"28533"} +{"$label":"DIRECTED","_key":"57588","_from":"28534","_to":"36471"} +{"$label":"DIRECTED","_key":"50202","_from":"28534","_to":"32814"} +{"$label":"ACTS_IN","name":"Susanne Reimer","type":"Role","_key":"42685","_from":"28535","_to":"28571"} +{"$label":"ACTS_IN","name":"Rufus Lindner","type":"Role","_key":"53746","_from":"28536","_to":"34649"} +{"$label":"ACTS_IN","name":"Bauhaus","type":"Role","_key":"62365","_from":"28539","_to":"39289"} +{"$label":"ACTS_IN","name":"M\u00fcmmelmann","type":"Role","_key":"42640","_from":"28547","_to":"28542"} +{"$label":"ACTS_IN","name":"Direktor Schuehlein","type":"Role","_key":"42639","_from":"28546","_to":"28542"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42638","_from":"28545","_to":"28542"} +{"$label":"ACTS_IN","name":"Elvira Schuehlein","type":"Role","_key":"42637","_from":"28544","_to":"28542"} +{"$label":"ACTS_IN","name":"Marika Karoly","type":"Role","_key":"42632","_from":"28543","_to":"28542"} +{"$label":"ACTS_IN","name":"Otto Schummrich","type":"Role","_key":"44581","_from":"28546","_to":"29676"} +{"$label":"ACTS_IN","name":"Obereunuche Selam","type":"Role","_key":"44475","_from":"28546","_to":"29626"} +{"$label":"ACTS_IN","name":"Amandus","type":"Role","_key":"43761","_from":"28546","_to":"29221"} +{"$label":"ACTS_IN","name":"Ruppich","type":"Role","_key":"42650","_from":"28546","_to":"28548"} +{"$label":"ACTS_IN","name":"Jazzmusiker","type":"Role","_key":"42658","_from":"28558","_to":"28548"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"42657","_from":"28557","_to":"28548"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"42656","_from":"28556","_to":"28548"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"42655","_from":"28555","_to":"28548"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"42654","_from":"28554","_to":"28548"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"42653","_from":"28553","_to":"28548"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"42652","_from":"28552","_to":"28548"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"42646","_from":"28551","_to":"28548"} +{"$label":"ACTS_IN","name":"Birgit","type":"Role","_key":"42644","_from":"28550","_to":"28548"} +{"$label":"DIRECTED","_key":"42643","_from":"28549","_to":"28548"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"109616","_from":"28557","_to":"64748"} +{"$label":"ACTS_IN","name":"Shanti Jhabvala","type":"Role","_key":"42666","_from":"28563","_to":"28559"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"42665","_from":"28562","_to":"28559"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"42661","_from":"28561","_to":"28559"} +{"$label":"DIRECTED","_key":"42659","_from":"28560","_to":"28559"} +{"$label":"ACTS_IN","name":"Female Crew Officer","type":"Role","_key":"121387","_from":"28563","_to":"71326"} +{"$label":"ACTS_IN","name":"Sujata","type":"Role","_key":"49156","_from":"28563","_to":"32202"} +{"$label":"DIRECTED","_key":"91004","_from":"28563","_to":"53697"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"42675","_from":"28568","_to":"28564"} +{"$label":"ACTS_IN","name":"Martin Schmitz","type":"Role","_key":"42674","_from":"28567","_to":"28564"} +{"$label":"ACTS_IN","name":"Karlheins P\u00fctz","type":"Role","_key":"42670","_from":"28566","_to":"28564"} +{"$label":"DIRECTED","_key":"42667","_from":"28565","_to":"28564"} +{"$label":"ACTS_IN","name":"Dr. Guenther","type":"Role","_key":"42864","_from":"28566","_to":"28655"} +{"$label":"DIRECTED","_key":"42678","_from":"28570","_to":"28569"} +{"$label":"ACTS_IN","name":"Discjokey","type":"Role","_key":"42694","_from":"28576","_to":"28571"} +{"$label":"ACTS_IN","name":"Bankangestellte","type":"Role","_key":"42693","_from":"28575","_to":"28571"} +{"$label":"ACTS_IN","name":"Dorothea","type":"Role","_key":"42691","_from":"28574","_to":"28571"} +{"$label":"ACTS_IN","name":"Frank Sesink","type":"Role","_key":"42688","_from":"28573","_to":"28571"} +{"$label":"DIRECTED","_key":"42683","_from":"28572","_to":"28571"} +{"$label":"ACTS_IN","name":"Spie\u00dfb\u00fcrger","type":"Role","_key":"42707","_from":"28584","_to":"28577"} +{"$label":"ACTS_IN","name":"Mann mit Bart","type":"Role","_key":"42706","_from":"28583","_to":"28577"} +{"$label":"ACTS_IN","name":"Gendarm","type":"Role","_key":"42704","_from":"28582","_to":"28577"} +{"$label":"ACTS_IN","name":"Requisiteur","type":"Role","_key":"42703","_from":"28581","_to":"28577"} +{"$label":"ACTS_IN","name":"Friedrich Wilhelm IV.","type":"Role","_key":"42702","_from":"28580","_to":"28577"} +{"$label":"ACTS_IN","name":"Friedrich","type":"Role","_key":"42699","_from":"28579","_to":"28577"} +{"$label":"ACTS_IN","name":"Spie\u00dfb\u00fcrger","type":"Role","_key":"42698","_from":"28578","_to":"28577"} +{"$label":"ACTS_IN","name":"Reisiger Kuno","type":"Role","_key":"93249","_from":"28578","_to":"54923"} +{"$label":"ACTS_IN","name":"Zeitungsverk\u00e4ufer","type":"Role","_key":"44187","_from":"28578","_to":"29437"} +{"$label":"ACTS_IN","name":"Wilhelm","type":"Role","_key":"45122","_from":"28579","_to":"29944"} +{"$label":"ACTS_IN","name":"Bauer Gro\u00dfkopf","type":"Role","_key":"93243","_from":"28582","_to":"54923"} +{"$label":"ACTS_IN","name":"Der greise K\u00f6nig","type":"Role","_key":"89876","_from":"28583","_to":"53173"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42713","_from":"28590","_to":"28585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42712","_from":"28589","_to":"28585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42711","_from":"28588","_to":"28585"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42710","_from":"28587","_to":"28585"} +{"$label":"DIRECTED","_key":"42709","_from":"28586","_to":"28585"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"42722","_from":"28598","_to":"28591"} +{"$label":"ACTS_IN","name":"Dr. Franz Wegener","type":"Role","_key":"42721","_from":"28597","_to":"28591"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"42720","_from":"28596","_to":"28591"} +{"$label":"ACTS_IN","name":"Vetter Theo","type":"Role","_key":"42719","_from":"28595","_to":"28591"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"42718","_from":"28594","_to":"28591"} +{"$label":"ACTS_IN","name":"Lissi","type":"Role","_key":"42716","_from":"28593","_to":"28591"} +{"$label":"ACTS_IN","name":"Rudolf Schrader","type":"Role","_key":"42715","_from":"28592","_to":"28591"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"65290","_from":"28593","_to":"40525"} +{"$label":"ACTS_IN","name":"Sigrid Eckberg","type":"Role","_key":"45944","_from":"28594","_to":"30376"} +{"$label":"DIRECTED","_key":"90219","_from":"28596","_to":"53344"} +{"$label":"ACTS_IN","name":"Intendant","type":"Role","_key":"46057","_from":"28598","_to":"30425"} +{"$label":"ACTS_IN","name":"Adolf Kratky","type":"Role","_key":"42735","_from":"28607","_to":"28599"} +{"$label":"ACTS_IN","name":"Simon Polt","type":"Role","_key":"42734","_from":"28606","_to":"28599"} +{"$label":"ACTS_IN","name":"Franz F\u00fcrst","type":"Role","_key":"42733","_from":"28605","_to":"28599"} +{"$label":"ACTS_IN","name":"Ernst H\u00f6llenbauer","type":"Role","_key":"42731","_from":"28604","_to":"28599"} +{"$label":"ACTS_IN","name":"Bruno Bartl","type":"Role","_key":"42730","_from":"28603","_to":"28599"} +{"$label":"ACTS_IN","name":"Amalie","type":"Role","_key":"42729","_from":"28602","_to":"28599"} +{"$label":"ACTS_IN","name":"Frau Stirbl","type":"Role","_key":"42728","_from":"28601","_to":"28599"} +{"$label":"DIRECTED","_key":"42724","_from":"28600","_to":"28599"} +{"$label":"ACTS_IN","name":"Emil Landauer","type":"Role","_key":"109225","_from":"28606","_to":"64531"} +{"$label":"ACTS_IN","name":"Arno von Mehling","type":"Role","_key":"66214","_from":"28607","_to":"40962"} +{"$label":"ACTS_IN","name":"Sigurd","type":"Role","_key":"46296","_from":"28607","_to":"30593"} +{"$label":"ACTS_IN","name":"Queen Guinevere","type":"Role","_key":"42752","_from":"28615","_to":"28608"} +{"$label":"ACTS_IN","name":"Prinz Eisenherz mit 12 Jahren","type":"Role","_key":"42749","_from":"28614","_to":"28608"} +{"$label":"ACTS_IN","name":"Sir Kay","type":"Role","_key":"42748","_from":"28613","_to":"28608"} +{"$label":"ACTS_IN","name":"Morgan Todd","type":"Role","_key":"42747","_from":"28612","_to":"28608"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"42746","_from":"28611","_to":"28608"} +{"$label":"ACTS_IN","name":"King Luke","type":"Role","_key":"42745","_from":"28610","_to":"28608"} +{"$label":"ACTS_IN","name":"Ilene","type":"Role","_key":"42740","_from":"28609","_to":"28608"} +{"$label":"ACTS_IN","name":"Lilia","type":"Role","_key":"44956","_from":"28609","_to":"29886"} +{"$label":"ACTS_IN","name":"Mr. Lundie","type":"Role","_key":"115667","_from":"28610","_to":"68094"} +{"$label":"ACTS_IN","name":"Lord Haw-Haw, German radio commentator (voice) (uncredited)","type":"Role","_key":"104695","_from":"28610","_to":"61589"} +{"$label":"ACTS_IN","name":"Henry Doyle","type":"Role","_key":"102695","_from":"28610","_to":"60415"} +{"$label":"ACTS_IN","name":"Mrs. Berent","type":"Role","_key":"113456","_from":"28611","_to":"66843"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"42770","_from":"28620","_to":"28616"} +{"$label":"ACTS_IN","name":"Sir Eckar","type":"Role","_key":"42769","_from":"28619","_to":"28616"} +{"$label":"ACTS_IN","name":"Prince Gawain","type":"Role","_key":"42767","_from":"28617","_to":"28616"} +{"$label":"ACTS_IN","name":"Prince Arn","type":"Role","_key":"42765","_from":"28618","_to":"28616"} +{"$label":"DIRECTED","_key":"42756","_from":"28617","_to":"28616"} +{"$label":"DIRECTED","_key":"107633","_from":"28617","_to":"63525"} +{"$label":"DIRECTED","_key":"98936","_from":"28617","_to":"58290"} +{"$label":"DIRECTED","_key":"70734","_from":"28617","_to":"43015"} +{"$label":"DIRECTED","_key":"42777","_from":"28623","_to":"28621"} +{"$label":"ACTS_IN","name":"Z\u00e9ro","type":"Role","_key":"42775","_from":"28622","_to":"28621"} +{"$label":"DIRECTED","_key":"90182","_from":"28623","_to":"53319"} +{"$label":"ACTS_IN","name":"Jared Wilke","type":"Role","_key":"42783","_from":"28625","_to":"28624"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42822","_from":"28636","_to":"28628"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42821","_from":"28635","_to":"28628"} +{"$label":"ACTS_IN","name":"Micky","type":"Role","_key":"42820","_from":"28634","_to":"28628"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42818","_from":"28633","_to":"28628"} +{"$label":"ACTS_IN","name":"Lehrerin","type":"Role","_key":"42817","_from":"28632","_to":"28628"} +{"$label":"ACTS_IN","name":"K\u00e4the Pumeier","type":"Role","_key":"42816","_from":"28631","_to":"28628"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"42814","_from":"28630","_to":"28628"} +{"$label":"ACTS_IN","name":"Klein Erna","type":"Role","_key":"42810","_from":"28629","_to":"28628"} +{"$label":"DIRECTED","_key":"42829","_from":"28640","_to":"28637"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"42827","_from":"28639","_to":"28637"} +{"$label":"ACTS_IN","name":"Cammie","type":"Role","_key":"42826","_from":"28638","_to":"28637"} +{"$label":"ACTS_IN","name":"Madelaine","type":"Role","_key":"120011","_from":"28638","_to":"70480"} +{"$label":"ACTS_IN","name":"Kristen","type":"Role","_key":"117806","_from":"28638","_to":"69246"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"117653","_from":"28638","_to":"69157"} +{"$label":"ACTS_IN","name":"Krysta","type":"Role","_key":"102798","_from":"28638","_to":"60471"} +{"$label":"ACTS_IN","name":"Strawberry","type":"Role","_key":"92079","_from":"28638","_to":"54332"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"89782","_from":"28638","_to":"53136"} +{"$label":"ACTS_IN","name":"Sara Johnson","type":"Role","_key":"57115","_from":"28638","_to":"36249"} +{"$label":"ACTS_IN","name":"Holly Garnett","type":"Role","_key":"103272","_from":"28639","_to":"60758"} +{"$label":"ACTS_IN","name":"Kyra Kessler","type":"Role","_key":"101567","_from":"28639","_to":"59773"} +{"$label":"ACTS_IN","name":"Victoria's Secret Gown","type":"Role","_key":"94189","_from":"28639","_to":"55461"} +{"$label":"DIRECTED","_key":"64701","_from":"28640","_to":"40292"} +{"$label":"ACTS_IN","name":"Leon Villard","type":"Role","_key":"42840","_from":"28647","_to":"28642"} +{"$label":"ACTS_IN","name":"La mere Michel","type":"Role","_key":"42838","_from":"28646","_to":"28642"} +{"$label":"ACTS_IN","name":"Catherine Cornusse","type":"Role","_key":"42837","_from":"28645","_to":"28642"} +{"$label":"ACTS_IN","name":"Gaspard Cornusse","type":"Role","_key":"42836","_from":"28644","_to":"28642"} +{"$label":"DIRECTED","_key":"42835","_from":"28643","_to":"28642"} +{"$label":"DIRECTED","_key":"90138","_from":"28643","_to":"53300"} +{"$label":"ACTS_IN","name":"La M\u00e9re Busato","type":"Role","_key":"50767","_from":"28645","_to":"33128"} +{"$label":"ACTS_IN","name":"Dr. Zoller ( Rechtsanwalt )","type":"Role","_key":"42851","_from":"28652","_to":"28648"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"42848","_from":"28651","_to":"28648"} +{"$label":"ACTS_IN","name":"Tom Steinmetz","type":"Role","_key":"42847","_from":"28650","_to":"28648"} +{"$label":"DIRECTED","_key":"42845","_from":"28649","_to":"28648"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"49108","_from":"28652","_to":"32177"} +{"$label":"DIRECTED","_key":"42858","_from":"28654","_to":"28653"} +{"$label":"DIRECTED","_key":"113583","_from":"28654","_to":"66935"} +{"$label":"ACTS_IN","name":"Barnikow","type":"Role","_key":"42870","_from":"28661","_to":"28655"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"42869","_from":"28660","_to":"28655"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"42868","_from":"28659","_to":"28655"} +{"$label":"ACTS_IN","name":"Funktion\u00e4r","type":"Role","_key":"42867","_from":"28658","_to":"28655"} +{"$label":"ACTS_IN","name":"Alfons","type":"Role","_key":"42866","_from":"28657","_to":"28655"} +{"$label":"DIRECTED","_key":"42859","_from":"28656","_to":"28655"} +{"$label":"DIRECTED","_key":"54805","_from":"28656","_to":"35064"} +{"$label":"DIRECTED","_key":"45652","_from":"28656","_to":"30218"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43147","_from":"28661","_to":"28811"} +{"$label":"ACTS_IN","name":"Thomas d'Apcher","type":"Role","_key":"42875","_from":"28664","_to":"28662"} +{"$label":"ACTS_IN","name":"Gr\u00e9goire de Fronsack","type":"Role","_key":"42871","_from":"28663","_to":"28662"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"116098","_from":"28663","_to":"68365"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"96105","_from":"28663","_to":"56487"} +{"$label":"ACTS_IN","name":"Goetz","type":"Role","_key":"94807","_from":"28663","_to":"55832"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"88090","_from":"28663","_to":"52282"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"120306","_from":"28664","_to":"70660"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106293","_from":"28664","_to":"62617"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"88755","_from":"28664","_to":"52597"} +{"$label":"ACTS_IN","name":"Thierry","type":"Role","_key":"88344","_from":"28664","_to":"52382"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"70145","_from":"28664","_to":"42759"} +{"$label":"ACTS_IN","name":"Claudy","type":"Role","_key":"51375","_from":"28664","_to":"33501"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"50591","_from":"28664","_to":"33043"} +{"$label":"ACTS_IN","name":"Eirik","type":"Role","_key":"49016","_from":"28664","_to":"32124"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00e9mie","type":"Role","_key":"48809","_from":"28664","_to":"32011"} +{"$label":"ACTS_IN","name":"Erikas Vater","type":"Role","_key":"42911","_from":"28679","_to":"28665"} +{"$label":"ACTS_IN","name":"Hauptsturmf\u00fchrer Weber","type":"Role","_key":"42910","_from":"28678","_to":"28665"} +{"$label":"ACTS_IN","name":"Joseph Goebbels","type":"Role","_key":"42909","_from":"28677","_to":"28665"} +{"$label":"ACTS_IN","name":"Litzy","type":"Role","_key":"42908","_from":"28676","_to":"28665"} +{"$label":"ACTS_IN","name":"Fabians Vater","type":"Role","_key":"42907","_from":"28675","_to":"28665"} +{"$label":"ACTS_IN","name":"Norissa","type":"Role","_key":"42903","_from":"28674","_to":"28665"} +{"$label":"ACTS_IN","name":"J\u00fcdischer Ordner","type":"Role","_key":"42902","_from":"28673","_to":"28665"} +{"$label":"ACTS_IN","name":"SS Schneider","type":"Role","_key":"42900","_from":"28672","_to":"28665"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"42899","_from":"28671","_to":"28665"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"42898","_from":"28670","_to":"28665"} +{"$label":"ACTS_IN","name":"Erikas Mutter","type":"Role","_key":"42897","_from":"28669","_to":"28665"} +{"$label":"ACTS_IN","name":"Frau Goldberg","type":"Role","_key":"42894","_from":"28668","_to":"28665"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"42891","_from":"28667","_to":"28665"} +{"$label":"ACTS_IN","name":"Ruth Weinstein ( 60 Jahre alt )","type":"Role","_key":"42884","_from":"28666","_to":"28665"} +{"$label":"ACTS_IN","name":"Zuckerb\u00e4ckerin","type":"Role","_key":"93803","_from":"28668","_to":"55218"} +{"$label":"ACTS_IN","name":"Dr. Schmidt","type":"Role","_key":"58962","_from":"28675","_to":"37225"} +{"$label":"ACTS_IN","name":"Nina Gr\u00e4fin v. Stauffenberg","type":"Role","_key":"63117","_from":"28676","_to":"39591"} +{"$label":"ACTS_IN","name":"Erwin Hull","type":"Role","_key":"63695","_from":"28677","_to":"39833"} +{"$label":"ACTS_IN","name":"Yin Chek Hsia","type":"Role","_key":"52276","_from":"28677","_to":"34038"} +{"$label":"ACTS_IN","name":"Yin Chek Hsia","type":"Role","_key":"52269","_from":"28677","_to":"34034"} +{"$label":"ACTS_IN","name":"Chiaras Chef","type":"Role","_key":"42920","_from":"28684","_to":"28680"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"42918","_from":"28683","_to":"28680"} +{"$label":"ACTS_IN","name":"Frau Brenner","type":"Role","_key":"42917","_from":"28682","_to":"28680"} +{"$label":"DIRECTED","_key":"42912","_from":"28681","_to":"28680"} +{"$label":"ACTS_IN","name":"Henri Kappes","type":"Role","_key":"91536","_from":"28683","_to":"53957"} +{"$label":"ACTS_IN","name":"Staplerfahrer Klaus","type":"Role","_key":"55483","_from":"28683","_to":"35356"} +{"$label":"DIRECTED","_key":"42921","_from":"28686","_to":"28685"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"42940","_from":"28692","_to":"28687"} +{"$label":"ACTS_IN","name":"Nez Casse","type":"Role","_key":"42939","_from":"28691","_to":"28687"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"42937","_from":"28690","_to":"28687"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"42936","_from":"28689","_to":"28687"} +{"$label":"ACTS_IN","name":"Marie Vedret","type":"Role","_key":"42934","_from":"28688","_to":"28687"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42954","_from":"28700","_to":"28693"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42953","_from":"28699","_to":"28693"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42951","_from":"28698","_to":"28693"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42949","_from":"28697","_to":"28693"} +{"$label":"ACTS_IN","name":"Henrik Andersson","type":"Role","_key":"42945","_from":"28696","_to":"28693"} +{"$label":"ACTS_IN","name":"Bibi Andersson","type":"Role","_key":"42944","_from":"28695","_to":"28693"} +{"$label":"DIRECTED","_key":"42941","_from":"28694","_to":"28693"} +{"$label":"DIRECTED","_key":"88132","_from":"28694","_to":"52300"} +{"$label":"DIRECTED","_key":"72952","_from":"28694","_to":"43917"} +{"$label":"ACTS_IN","name":"Jochen Hailer","type":"Role","_key":"71886","_from":"28697","_to":"43491"} +{"$label":"ACTS_IN","name":"Marko","type":"Role","_key":"42967","_from":"28709","_to":"28701"} +{"$label":"ACTS_IN","name":"Hotelportier","type":"Role","_key":"42966","_from":"28708","_to":"28701"} +{"$label":"ACTS_IN","name":"Dr. With\u00fcs","type":"Role","_key":"42964","_from":"28707","_to":"28701"} +{"$label":"ACTS_IN","name":"Leo Hoffmann","type":"Role","_key":"42963","_from":"28706","_to":"28701"} +{"$label":"ACTS_IN","name":"Doris Braun","type":"Role","_key":"42962","_from":"28705","_to":"28701"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"42961","_from":"28704","_to":"28701"} +{"$label":"ACTS_IN","name":"Frauke Helsing","type":"Role","_key":"42960","_from":"28703","_to":"28701"} +{"$label":"DIRECTED","_key":"42955","_from":"28702","_to":"28701"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43207","_from":"28708","_to":"28852"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"42975","_from":"28714","_to":"28710"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"42973","_from":"28713","_to":"28710"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"42972","_from":"28712","_to":"28710"} +{"$label":"DIRECTED","_key":"42970","_from":"28711","_to":"28710"} +{"$label":"ACTS_IN","name":"Barbara Grant","type":"Role","_key":"91800","_from":"28712","_to":"54153"} +{"$label":"ACTS_IN","name":"Sch\u00fclerin","type":"Role","_key":"88886","_from":"28712","_to":"52663"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"72169","_from":"28712","_to":"43622"} +{"$label":"ACTS_IN","name":"Hilde D\u00f6bbelin","type":"Role","_key":"68517","_from":"28712","_to":"42023"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"42983","_from":"28717","_to":"28715"} +{"$label":"ACTS_IN","name":"Icelan","type":"Role","_key":"42982","_from":"28716","_to":"28715"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"119451","_from":"28717","_to":"70174"} +{"$label":"DIRECTED","_key":"42990","_from":"28720","_to":"28718"} +{"$label":"ACTS_IN","name":"Nora Stark","type":"Role","_key":"42989","_from":"28719","_to":"28718"} +{"$label":"ACTS_IN","name":"Liz Pappas","type":"Role","_key":"97881","_from":"28719","_to":"57652"} +{"$label":"ACTS_IN","name":"Christie","type":"Role","_key":"67661","_from":"28719","_to":"41628"} +{"$label":"ACTS_IN","name":"Vanessa Struthers","type":"Role","_key":"54722","_from":"28719","_to":"35030"} +{"$label":"ACTS_IN","name":"Sunshine","type":"Role","_key":"52479","_from":"28719","_to":"34138"} +{"$label":"ACTS_IN","name":"Assistant D.A.","type":"Role","_key":"96074","_from":"28720","_to":"56457"} +{"$label":"DIRECTED","_key":"96042","_from":"28720","_to":"56457"} +{"$label":"DIRECTED","_key":"65397","_from":"28720","_to":"40555"} +{"$label":"DIRECTED","_key":"63965","_from":"28720","_to":"39949"} +{"$label":"DIRECTED","_key":"54307","_from":"28720","_to":"34857"} +{"$label":"DIRECTED","_key":"53972","_from":"28720","_to":"34719"} +{"$label":"DIRECTED","_key":"45883","_from":"28720","_to":"30345"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43004","_from":"28729","_to":"28721"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43003","_from":"28728","_to":"28721"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43001","_from":"28727","_to":"28721"} +{"$label":"ACTS_IN","name":"Sari","type":"Role","_key":"43000","_from":"28726","_to":"28721"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"42999","_from":"28725","_to":"28721"} +{"$label":"ACTS_IN","name":"Anton Windisch","type":"Role","_key":"42998","_from":"28724","_to":"28721"} +{"$label":"ACTS_IN","name":"Ralf Br\u00fcckner","type":"Role","_key":"42997","_from":"28723","_to":"28721"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Wegerer","type":"Role","_key":"42996","_from":"28722","_to":"28721"} +{"$label":"ACTS_IN","name":"Owner 'California'","type":"Role","_key":"90766","_from":"28722","_to":"53569"} +{"$label":"ACTS_IN","name":"Max Marek","type":"Role","_key":"66440","_from":"28722","_to":"41074"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Wegerer","type":"Role","_key":"43023","_from":"28722","_to":"28738"} +{"$label":"ACTS_IN","name":"Anton Windisch","type":"Role","_key":"43028","_from":"28724","_to":"28738"} +{"$label":"ACTS_IN","name":"Rosamunde D\u00f6rfler","type":"Role","_key":"43029","_from":"28725","_to":"28738"} +{"$label":"ACTS_IN","name":"Sari","type":"Role","_key":"43025","_from":"28726","_to":"28738"} +{"$label":"ACTS_IN","name":"die Frauen\u00e4rztin","type":"Role","_key":"43017","_from":"28737","_to":"28730"} +{"$label":"ACTS_IN","name":"Juliett","type":"Role","_key":"43015","_from":"28736","_to":"28730"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"43014","_from":"28735","_to":"28730"} +{"$label":"ACTS_IN","name":"Jean-Paul","type":"Role","_key":"43013","_from":"28734","_to":"28730"} +{"$label":"ACTS_IN","name":"die Tante","type":"Role","_key":"43012","_from":"28733","_to":"28730"} +{"$label":"ACTS_IN","name":"die Mutter","type":"Role","_key":"43010","_from":"28732","_to":"28730"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"43006","_from":"28731","_to":"28730"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"118285","_from":"28731","_to":"69527"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"101292","_from":"28731","_to":"59641"} +{"$label":"ACTS_IN","name":"Millau","type":"Role","_key":"120735","_from":"28734","_to":"70913"} +{"$label":"ACTS_IN","name":"Sascha","type":"Role","_key":"43031","_from":"28744","_to":"28738"} +{"$label":"ACTS_IN","name":"Frau Hallbach","type":"Role","_key":"43027","_from":"28743","_to":"28738"} +{"$label":"ACTS_IN","name":"Magdalena","type":"Role","_key":"43026","_from":"28742","_to":"28738"} +{"$label":"ACTS_IN","name":"Frau Fischhuber","type":"Role","_key":"43024","_from":"28741","_to":"28738"} +{"$label":"ACTS_IN","name":"Julia Henschel","type":"Role","_key":"43022","_from":"28740","_to":"28738"} +{"$label":"DIRECTED","_key":"43019","_from":"28739","_to":"28738"} +{"$label":"ACTS_IN","name":"Hanni Gruber","type":"Role","_key":"43119","_from":"28742","_to":"28795"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43050","_from":"28754","_to":"28745"} +{"$label":"ACTS_IN","name":"Tessy","type":"Role","_key":"43048","_from":"28753","_to":"28745"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43046","_from":"28752","_to":"28745"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"43045","_from":"28751","_to":"28745"} +{"$label":"ACTS_IN","name":"Calida","type":"Role","_key":"43043","_from":"28750","_to":"28745"} +{"$label":"ACTS_IN","name":"Karin Schr\u00f6der","type":"Role","_key":"43040","_from":"28749","_to":"28745"} +{"$label":"ACTS_IN","name":"Robert Fox","type":"Role","_key":"43039","_from":"28748","_to":"28745"} +{"$label":"ACTS_IN","name":"Valerie Landau","type":"Role","_key":"43038","_from":"28747","_to":"28745"} +{"$label":"ACTS_IN","name":"Cleo Steininger","type":"Role","_key":"43037","_from":"28746","_to":"28745"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"91034","_from":"28746","_to":"53710"} +{"$label":"ACTS_IN","name":"Pia","type":"Role","_key":"50192","_from":"28747","_to":"32809"} +{"$label":"ACTS_IN","name":"Leonie Schmidt-Ohlsen","type":"Role","_key":"43280","_from":"28747","_to":"28910"} +{"$label":"ACTS_IN","name":"Herr Referee","type":"Role","_key":"59037","_from":"28748","_to":"37261"} +{"$label":"ACTS_IN","name":"Myriam","type":"Role","_key":"46832","_from":"28750","_to":"30889"} +{"$label":"ACTS_IN","name":"Afra","type":"Role","_key":"43060","_from":"28763","_to":"28755"} +{"$label":"ACTS_IN","name":"Roferbauer Jun.","type":"Role","_key":"43059","_from":"28762","_to":"28755"} +{"$label":"ACTS_IN","name":"Klettenmeyer","type":"Role","_key":"43058","_from":"28761","_to":"28755"} +{"$label":"ACTS_IN","name":"Obermagd","type":"Role","_key":"43057","_from":"28760","_to":"28755"} +{"$label":"ACTS_IN","name":"Luckard","type":"Role","_key":"43056","_from":"28759","_to":"28755"} +{"$label":"ACTS_IN","name":"Der B\u00e4ren Joseph","type":"Role","_key":"43054","_from":"28758","_to":"28755"} +{"$label":"ACTS_IN","name":"Wally ( seine Tochter )","type":"Role","_key":"43053","_from":"28757","_to":"28755"} +{"$label":"DIRECTED","_key":"43051","_from":"28756","_to":"28755"} +{"$label":"DIRECTED","_key":"104587","_from":"28758","_to":"61524"} +{"$label":"ACTS_IN","name":"H\u00fcterjunge","type":"Role","_key":"43080","_from":"28780","_to":"28764"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"43079","_from":"28779","_to":"28764"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"43078","_from":"28778","_to":"28764"} +{"$label":"ACTS_IN","name":"Oberf\u00f6rster","type":"Role","_key":"43077","_from":"28777","_to":"28764"} +{"$label":"ACTS_IN","name":"Graf","type":"Role","_key":"43076","_from":"28776","_to":"28764"} +{"$label":"ACTS_IN","name":"Dorfbote","type":"Role","_key":"43075","_from":"28775","_to":"28764"} +{"$label":"ACTS_IN","name":"Ochsenwirtin","type":"Role","_key":"43074","_from":"28774","_to":"28764"} +{"$label":"ACTS_IN","name":"Obermagd","type":"Role","_key":"43073","_from":"28773","_to":"28764"} +{"$label":"ACTS_IN","name":"Resi","type":"Role","_key":"43072","_from":"28772","_to":"28764"} +{"$label":"ACTS_IN","name":"Nicodemus Rosenbauer","type":"Role","_key":"43071","_from":"28771","_to":"28764"} +{"$label":"ACTS_IN","name":"Klettenmeier","type":"Role","_key":"43069","_from":"28770","_to":"28764"} +{"$label":"ACTS_IN","name":"Luckard","type":"Role","_key":"43068","_from":"28769","_to":"28764"} +{"$label":"ACTS_IN","name":"Vinzenz Gellner","type":"Role","_key":"43067","_from":"28768","_to":"28764"} +{"$label":"ACTS_IN","name":"Afra Kuttner","type":"Role","_key":"43066","_from":"28767","_to":"28764"} +{"$label":"ACTS_IN","name":"Alois Fender","type":"Role","_key":"43065","_from":"28766","_to":"28764"} +{"$label":"DIRECTED","_key":"43062","_from":"28765","_to":"28764"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44748","_from":"28766","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44754","_from":"28768","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44752","_from":"28774","_to":"29769"} +{"$label":"ACTS_IN","name":"Draxl","type":"Role","_key":"43096","_from":"28789","_to":"28781"} +{"$label":"ACTS_IN","name":"Bartl","type":"Role","_key":"43095","_from":"28788","_to":"28781"} +{"$label":"ACTS_IN","name":"Lammwirtin","type":"Role","_key":"43094","_from":"28787","_to":"28781"} +{"$label":"ACTS_IN","name":"Curat","type":"Role","_key":"43090","_from":"28786","_to":"28781"} +{"$label":"ACTS_IN","name":"Afra","type":"Role","_key":"43089","_from":"28785","_to":"28781"} +{"$label":"ACTS_IN","name":"H\u00f6chstbauer","type":"Role","_key":"43088","_from":"28784","_to":"28781"} +{"$label":"ACTS_IN","name":"Lorenz","type":"Role","_key":"43085","_from":"28783","_to":"28781"} +{"$label":"DIRECTED","_key":"43082","_from":"28782","_to":"28781"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44654","_from":"28789","_to":"29707"} +{"$label":"ACTS_IN","name":"Wirtin","type":"Role","_key":"43110","_from":"28794","_to":"28790"} +{"$label":"ACTS_IN","name":"Geier","type":"Role","_key":"43108","_from":"28793","_to":"28790"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43107","_from":"28792","_to":"28790"} +{"$label":"ACTS_IN","name":"B\u00e4renjoseph","type":"Role","_key":"43101","_from":"28791","_to":"28790"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"43121","_from":"28800","_to":"28795"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"43120","_from":"28799","_to":"28795"} +{"$label":"ACTS_IN","name":"Veronika","type":"Role","_key":"43118","_from":"28798","_to":"28795"} +{"$label":"ACTS_IN","name":"Wally Flender","type":"Role","_key":"43114","_from":"28797","_to":"28795"} +{"$label":"DIRECTED","_key":"43113","_from":"28796","_to":"28795"} +{"$label":"DIRECTED","_key":"43175","_from":"28796","_to":"28832"} +{"$label":"ACTS_IN","name":"Lioba","type":"Role","_key":"56451","_from":"28797","_to":"35868"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"53467","_from":"28797","_to":"34535"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"43137","_from":"28810","_to":"28801"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"43136","_from":"28809","_to":"28801"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"43135","_from":"28808","_to":"28801"} +{"$label":"ACTS_IN","name":"Dorflehrer","type":"Role","_key":"43134","_from":"28807","_to":"28801"} +{"$label":"ACTS_IN","name":"Huberb\u00e4uerin","type":"Role","_key":"43133","_from":"28806","_to":"28801"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"43131","_from":"28805","_to":"28801"} +{"$label":"ACTS_IN","name":"Herr Kramer","type":"Role","_key":"43129","_from":"28804","_to":"28801"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"43127","_from":"28803","_to":"28801"} +{"$label":"ACTS_IN","name":"Thymian Retzer","type":"Role","_key":"43126","_from":"28802","_to":"28801"} +{"$label":"ACTS_IN","name":"K\u00f6nigin","type":"Role","_key":"49593","_from":"28803","_to":"32463"} +{"$label":"ACTS_IN","name":"Bildhauer","type":"Role","_key":"45976","_from":"28807","_to":"30392"} +{"$label":"ACTS_IN","name":"Tante Elvira","type":"Role","_key":"45734","_from":"28808","_to":"30264"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"43149","_from":"28818","_to":"28811"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43148","_from":"28817","_to":"28811"} +{"$label":"ACTS_IN","name":"G\u00fcnther Kramer","type":"Role","_key":"43146","_from":"28816","_to":"28811"} +{"$label":"ACTS_IN","name":"Mutter Gauditz","type":"Role","_key":"43144","_from":"28815","_to":"28811"} +{"$label":"ACTS_IN","name":"Staatsanwalt Mautner","type":"Role","_key":"43143","_from":"28814","_to":"28811"} +{"$label":"ACTS_IN","name":"Petra Gauditz","type":"Role","_key":"43141","_from":"28813","_to":"28811"} +{"$label":"DIRECTED","_key":"43139","_from":"28812","_to":"28811"} +{"$label":"ACTS_IN","name":"Stasi-Mann","type":"Role","_key":"44833","_from":"28816","_to":"29813"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"43162","_from":"28825","_to":"28819"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43160","_from":"28824","_to":"28819"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43159","_from":"28823","_to":"28819"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43158","_from":"28822","_to":"28819"} +{"$label":"ACTS_IN","name":"Onkel Fritz","type":"Role","_key":"43154","_from":"28821","_to":"28819"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"43152","_from":"28820","_to":"28819"} +{"$label":"ACTS_IN","name":"Viktor Hempel","type":"Role","_key":"46047","_from":"28821","_to":"30425"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"43174","_from":"28831","_to":"28826"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43173","_from":"28830","_to":"28826"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"43172","_from":"28829","_to":"28826"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43171","_from":"28828","_to":"28826"} +{"$label":"ACTS_IN","name":"Fluggast","type":"Role","_key":"43170","_from":"28827","_to":"28826"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"101141","_from":"28827","_to":"59587"} +{"$label":"ACTS_IN","name":"Mya","type":"Role","_key":"50157","_from":"28827","_to":"32793"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"107798","_from":"28831","_to":"63633"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"63590","_from":"28831","_to":"39786"} +{"$label":"ACTS_IN","name":"Lankowitz","type":"Role","_key":"43185","_from":"28839","_to":"28832"} +{"$label":"ACTS_IN","name":"Swoboda","type":"Role","_key":"43184","_from":"28838","_to":"28832"} +{"$label":"ACTS_IN","name":"Frau Gutmann","type":"Role","_key":"43182","_from":"28837","_to":"28832"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"43181","_from":"28836","_to":"28832"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"43180","_from":"28835","_to":"28832"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"43179","_from":"28834","_to":"28832"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"43176","_from":"28833","_to":"28832"} +{"$label":"DIRECTED","_key":"43190","_from":"28843","_to":"28840"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"43189","_from":"28842","_to":"28840"} +{"$label":"ACTS_IN","name":"Wookie","type":"Role","_key":"43187","_from":"28841","_to":"28840"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"110314","_from":"28841","_to":"65182"} +{"$label":"ACTS_IN","name":"Trev Spackney","type":"Role","_key":"106831","_from":"28841","_to":"62978"} +{"$label":"ACTS_IN","name":"Graham Kennedy","type":"Role","_key":"97433","_from":"28841","_to":"57379"} +{"$label":"ACTS_IN","name":"Dale Kerrigan","type":"Role","_key":"97206","_from":"28841","_to":"57181"} +{"$label":"ACTS_IN","name":"Mal the Butcher","type":"Role","_key":"106837","_from":"28842","_to":"62978"} +{"$label":"DIRECTED","_key":"121102","_from":"28843","_to":"71124"} +{"$label":"DIRECTED","_key":"43191","_from":"28845","_to":"28844"} +{"$label":"DIRECTED","_key":"43196","_from":"28851","_to":"28846"} +{"$label":"DIRECTED","_key":"43195","_from":"28850","_to":"28846"} +{"$label":"DIRECTED","_key":"43194","_from":"28849","_to":"28846"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"43193","_from":"28848","_to":"28846"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"43192","_from":"28847","_to":"28846"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43209","_from":"28858","_to":"28852"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43208","_from":"28857","_to":"28852"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43205","_from":"28856","_to":"28852"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43204","_from":"28855","_to":"28852"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"43202","_from":"28854","_to":"28852"} +{"$label":"DIRECTED","_key":"43197","_from":"28853","_to":"28852"} +{"$label":"ACTS_IN","name":"Berg","type":"Role","_key":"43844","_from":"28857","_to":"29272"} +{"$label":"ACTS_IN","name":"Bibinski","type":"Role","_key":"43216","_from":"28863","_to":"28859"} +{"$label":"ACTS_IN","name":"Tatjana","type":"Role","_key":"43214","_from":"28862","_to":"28859"} +{"$label":"ACTS_IN","name":"Ninotschka","type":"Role","_key":"43211","_from":"28861","_to":"28859"} +{"$label":"DIRECTED","_key":"43210","_from":"28860","_to":"28859"} +{"$label":"DIRECTED","_key":"43713","_from":"28860","_to":"29199"} +{"$label":"ACTS_IN","name":"Franziska","type":"Role","_key":"44628","_from":"28861","_to":"29701"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"62528","_from":"28862","_to":"39364"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"43718","_from":"28863","_to":"29199"} +{"$label":"ACTS_IN","name":"Malka","type":"Role","_key":"43233","_from":"28877","_to":"28864"} +{"$label":"ACTS_IN","name":"Joy","type":"Role","_key":"43232","_from":"28876","_to":"28864"} +{"$label":"ACTS_IN","name":"Keren","type":"Role","_key":"43231","_from":"28875","_to":"28864"} +{"$label":"ACTS_IN","name":"Das kleine M\u00e4dchen","type":"Role","_key":"43230","_from":"28874","_to":"28864"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"43229","_from":"28873","_to":"28864"} +{"$label":"ACTS_IN","name":"Amir","type":"Role","_key":"43228","_from":"28872","_to":"28864"} +{"$label":"ACTS_IN","name":"Tikva","type":"Role","_key":"43227","_from":"28871","_to":"28864"} +{"$label":"ACTS_IN","name":"Galia","type":"Role","_key":"43224","_from":"28870","_to":"28864"} +{"$label":"ACTS_IN","name":"Relly","type":"Role","_key":"43223","_from":"28869","_to":"28864"} +{"$label":"ACTS_IN","name":"Tamar","type":"Role","_key":"43222","_from":"28868","_to":"28864"} +{"$label":"ACTS_IN","name":"Batya","type":"Role","_key":"43221","_from":"28867","_to":"28864"} +{"$label":"DIRECTED","_key":"43220","_from":"28866","_to":"28864"} +{"$label":"DIRECTED","_key":"43219","_from":"28865","_to":"28864"} +{"$label":"ACTS_IN","name":"Jewel Bentley","type":"Role","_key":"43237","_from":"28880","_to":"28878"} +{"$label":"ACTS_IN","name":"Debbie Lipton","type":"Role","_key":"43236","_from":"28879","_to":"28878"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"95754","_from":"28879","_to":"56323"} +{"$label":"ACTS_IN","name":"Karen B. Brennick","type":"Role","_key":"87956","_from":"28880","_to":"52231"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"43243","_from":"28883","_to":"28881"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"43242","_from":"28882","_to":"28881"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"91775","_from":"28882","_to":"54142"} +{"$label":"ACTS_IN","name":"Greta Siegel","type":"Role","_key":"117821","_from":"28883","_to":"69258"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"90030","_from":"28883","_to":"53253"} +{"$label":"ACTS_IN","name":"Kat Arujo","type":"Role","_key":"68440","_from":"28883","_to":"41985"} +{"$label":"ACTS_IN","name":"Angela \"Angie\" Green","type":"Role","_key":"62997","_from":"28883","_to":"39549"} +{"$label":"ACTS_IN","name":"Mary Jackson","type":"Role","_key":"59275","_from":"28883","_to":"37437"} +{"$label":"ACTS_IN","name":"Tracy Stover","type":"Role","_key":"52842","_from":"28883","_to":"34256"} +{"$label":"ACTS_IN","name":"Sparky","type":"Role","_key":"51132","_from":"28883","_to":"33354"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"43251","_from":"28889","_to":"28884"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"43249","_from":"28888","_to":"28884"} +{"$label":"ACTS_IN","name":"Anni","type":"Role","_key":"43248","_from":"28887","_to":"28884"} +{"$label":"ACTS_IN","name":"Alien \/ 'Alois'","type":"Role","_key":"43247","_from":"28886","_to":"28884"} +{"$label":"DIRECTED","_key":"43246","_from":"28885","_to":"28884"} +{"$label":"ACTS_IN","name":"Sandra Steffen","type":"Role","_key":"43263","_from":"28898","_to":"28890"} +{"$label":"ACTS_IN","name":"Maggi K\u00fchnis","type":"Role","_key":"43262","_from":"28897","_to":"28890"} +{"$label":"ACTS_IN","name":"Wilson Smith","type":"Role","_key":"43261","_from":"28896","_to":"28890"} +{"$label":"ACTS_IN","name":"Dominik H\u00e4chler","type":"Role","_key":"43260","_from":"28895","_to":"28890"} +{"$label":"ACTS_IN","name":"Otto Reuter","type":"Role","_key":"43259","_from":"28894","_to":"28890"} +{"$label":"ACTS_IN","name":"Fritz G\u00e4hwiler","type":"Role","_key":"43257","_from":"28893","_to":"28890"} +{"$label":"ACTS_IN","name":"Christian Keller","type":"Role","_key":"43255","_from":"28892","_to":"28890"} +{"$label":"DIRECTED","_key":"43253","_from":"28891","_to":"28890"} +{"$label":"DIRECTED","_key":"50866","_from":"28891","_to":"33205"} +{"$label":"ACTS_IN","name":"Schlunegger","type":"Role","_key":"109228","_from":"28893","_to":"64531"} +{"$label":"ACTS_IN","name":"Ernst Zollweger","type":"Role","_key":"89679","_from":"28893","_to":"53081"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43276","_from":"28909","_to":"28899"} +{"$label":"ACTS_IN","name":"Uncle Brady","type":"Role","_key":"43275","_from":"28908","_to":"28899"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43274","_from":"28907","_to":"28899"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43273","_from":"28906","_to":"28899"} +{"$label":"ACTS_IN","name":"Alua","type":"Role","_key":"43272","_from":"28905","_to":"28899"} +{"$label":"ACTS_IN","name":"Dimhea","type":"Role","_key":"43271","_from":"28904","_to":"28899"} +{"$label":"ACTS_IN","name":"Ulla","type":"Role","_key":"43270","_from":"28903","_to":"28899"} +{"$label":"ACTS_IN","name":"Anlulu","type":"Role","_key":"43269","_from":"28902","_to":"28899"} +{"$label":"ACTS_IN","name":"Mama","type":"Role","_key":"43268","_from":"28901","_to":"28899"} +{"$label":"DIRECTED","_key":"43264","_from":"28900","_to":"28899"} +{"$label":"DIRECTED","_key":"69436","_from":"28900","_to":"42437"} +{"$label":"DIRECTED","_key":"69190","_from":"28900","_to":"42317"} +{"$label":"DIRECTED","_key":"65674","_from":"28900","_to":"40684"} +{"$label":"DIRECTED","_key":"52126","_from":"28900","_to":"33979"} +{"$label":"DIRECTED","_key":"46945","_from":"28900","_to":"30961"} +{"$label":"DIRECTED","_key":"45564","_from":"28900","_to":"30163"} +{"$label":"DIRECTED","_key":"43569","_from":"28900","_to":"29101"} +{"$label":"ACTS_IN","name":"Sprechstundenhilfe","type":"Role","_key":"43289","_from":"28916","_to":"28910"} +{"$label":"ACTS_IN","name":"Mollie","type":"Role","_key":"43287","_from":"28915","_to":"28910"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"43285","_from":"28914","_to":"28910"} +{"$label":"ACTS_IN","name":"Jules Taverrier","type":"Role","_key":"43284","_from":"28913","_to":"28910"} +{"$label":"ACTS_IN","name":"Omi Agnes","type":"Role","_key":"43281","_from":"28912","_to":"28910"} +{"$label":"DIRECTED","_key":"43278","_from":"28911","_to":"28910"} +{"$label":"ACTS_IN","name":"Lilli","type":"Role","_key":"65071","_from":"28912","_to":"40429"} +{"$label":"ACTS_IN","name":"Opa Kischewski","type":"Role","_key":"66790","_from":"28914","_to":"41259"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43308","_from":"28932","_to":"28917"} +{"$label":"ACTS_IN","name":"Johns Vater","type":"Role","_key":"43307","_from":"28931","_to":"28917"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43305","_from":"28930","_to":"28917"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43304","_from":"28929","_to":"28917"} +{"$label":"ACTS_IN","name":"Mr. Brill","type":"Role","_key":"43303","_from":"28928","_to":"28917"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43302","_from":"28927","_to":"28917"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43301","_from":"28926","_to":"28917"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43300","_from":"28925","_to":"28917"} +{"$label":"ACTS_IN","name":"Sabrina Hollburg","type":"Role","_key":"43299","_from":"28924","_to":"28917"} +{"$label":"ACTS_IN","name":"Jeremias \" Jerry\" Berndssen","type":"Role","_key":"43298","_from":"28923","_to":"28917"} +{"$label":"ACTS_IN","name":"Dr. Wolfgang Gardner","type":"Role","_key":"43297","_from":"28922","_to":"28917"} +{"$label":"ACTS_IN","name":"Lance Gardener","type":"Role","_key":"43296","_from":"28921","_to":"28917"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"43295","_from":"28920","_to":"28917"} +{"$label":"ACTS_IN","name":"Oliver Berndssen","type":"Role","_key":"43294","_from":"28919","_to":"28917"} +{"$label":"DIRECTED","_key":"43291","_from":"28918","_to":"28917"} +{"$label":"ACTS_IN","name":"Klaus Hintze","type":"Role","_key":"106278","_from":"28921","_to":"62605"} +{"$label":"ACTS_IN","name":"Chemist","type":"Role","_key":"46336","_from":"28921","_to":"30618"} +{"$label":"ACTS_IN","name":"Hauptfeldwebel Werner Rachtman","type":"Role","_key":"110286","_from":"28922","_to":"65170"} +{"$label":"ACTS_IN","name":"Moeller","type":"Role","_key":"103388","_from":"28922","_to":"60813"} +{"$label":"ACTS_IN","name":"Schulman","type":"Role","_key":"100342","_from":"28922","_to":"59165"} +{"$label":"ACTS_IN","name":"Trapped Officer 'Eden'","type":"Role","_key":"121386","_from":"28926","_to":"71326"} +{"$label":"ACTS_IN","name":"Matrose","type":"Role","_key":"43331","_from":"28950","_to":"28933"} +{"$label":"ACTS_IN","name":"Kutscher","type":"Role","_key":"43330","_from":"28949","_to":"28933"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"43329","_from":"28948","_to":"28933"} +{"$label":"ACTS_IN","name":"Ausrufer","type":"Role","_key":"43328","_from":"28947","_to":"28933"} +{"$label":"ACTS_IN","name":"Kutscher","type":"Role","_key":"43327","_from":"28946","_to":"28933"} +{"$label":"ACTS_IN","name":"\u00c4btissin","type":"Role","_key":"43326","_from":"28945","_to":"28933"} +{"$label":"ACTS_IN","name":"Sargtr\u00e4ger","type":"Role","_key":"43325","_from":"28944","_to":"28933"} +{"$label":"ACTS_IN","name":"Magd","type":"Role","_key":"43324","_from":"28943","_to":"28933"} +{"$label":"ACTS_IN","name":"Kutscher","type":"Role","_key":"43323","_from":"28942","_to":"28933"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"43322","_from":"28941","_to":"28933"} +{"$label":"ACTS_IN","name":"Ratsherr","type":"Role","_key":"43321","_from":"28940","_to":"28933"} +{"$label":"ACTS_IN","name":"Gerichtsbeamter","type":"Role","_key":"43320","_from":"28939","_to":"28933"} +{"$label":"ACTS_IN","name":"Mina","type":"Role","_key":"43318","_from":"28938","_to":"28933"} +{"$label":"ACTS_IN","name":"Schrader","type":"Role","_key":"43317","_from":"28937","_to":"28933"} +{"$label":"ACTS_IN","name":"Hafenmeister","type":"Role","_key":"43316","_from":"28936","_to":"28933"} +{"$label":"ACTS_IN","name":"Dr. Van Helsing","type":"Role","_key":"43314","_from":"28935","_to":"28933"} +{"$label":"ACTS_IN","name":"Renfield","type":"Role","_key":"43313","_from":"28934","_to":"28933"} +{"$label":"ACTS_IN","name":"Professor Daumer","type":"Role","_key":"71702","_from":"28935","_to":"43406"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43809","_from":"28936","_to":"29250"} +{"$label":"ACTS_IN","name":"Scheitz","type":"Role","_key":"71626","_from":"28939","_to":"43377"} +{"$label":"ACTS_IN","name":"Japanischer Fan","type":"Role","_key":"43344","_from":"28962","_to":"28951"} +{"$label":"ACTS_IN","name":"Nong Toom (als junger M\u00f6nch)","type":"Role","_key":"43343","_from":"28961","_to":"28951"} +{"$label":"ACTS_IN","name":"Nong Toom (als kleiner Junge)","type":"Role","_key":"43342","_from":"28960","_to":"28951"} +{"$label":"ACTS_IN","name":"Jack (Der Reporter)","type":"Role","_key":"43341","_from":"28959","_to":"28951"} +{"$label":"ACTS_IN","name":"Sich selbst (Weibliche Wrestlerin)","type":"Role","_key":"43340","_from":"28958","_to":"28951"} +{"$label":"ACTS_IN","name":"Nat","type":"Role","_key":"43339","_from":"28957","_to":"28951"} +{"$label":"ACTS_IN","name":"Nong Tooms Vater","type":"Role","_key":"43338","_from":"28956","_to":"28951"} +{"$label":"ACTS_IN","name":"Nong Tooms Mutter","type":"Role","_key":"43337","_from":"28955","_to":"28951"} +{"$label":"ACTS_IN","name":"Pi Chart","type":"Role","_key":"43336","_from":"28954","_to":"28951"} +{"$label":"ACTS_IN","name":"Nong Toom\/Parinya Charoenphol","type":"Role","_key":"43335","_from":"28953","_to":"28951"} +{"$label":"DIRECTED","_key":"43334","_from":"28952","_to":"28951"} +{"$label":"ACTS_IN","name":"Chernang","type":"Role","_key":"108862","_from":"28954","_to":"64339"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"43357","_from":"28966","_to":"28964"} +{"$label":"DIRECTED","_key":"43353","_from":"28965","_to":"28964"} +{"$label":"DIRECTED","_key":"90383","_from":"28965","_to":"53408"} +{"$label":"DIRECTED","_key":"71503","_from":"28965","_to":"43336"} +{"$label":"DIRECTED","_key":"57578","_from":"28965","_to":"36468"} +{"$label":"DIRECTED","_key":"51126","_from":"28965","_to":"33353"} +{"$label":"ACTS_IN","name":"Kirsten","type":"Role","_key":"47244","_from":"28966","_to":"31133"} +{"$label":"ACTS_IN","name":"Politistul","type":"Role","_key":"43368","_from":"28977","_to":"28967"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43367","_from":"28976","_to":"28967"} +{"$label":"ACTS_IN","name":"Florika","type":"Role","_key":"43366","_from":"28975","_to":"28967"} +{"$label":"ACTS_IN","name":"Tiberiu","type":"Role","_key":"43365","_from":"28974","_to":"28967"} +{"$label":"ACTS_IN","name":"Petru","type":"Role","_key":"43364","_from":"28973","_to":"28967"} +{"$label":"ACTS_IN","name":"JR","type":"Role","_key":"43363","_from":"28972","_to":"28967"} +{"$label":"ACTS_IN","name":"Dragomir","type":"Role","_key":"43362","_from":"28971","_to":"28967"} +{"$label":"ACTS_IN","name":"Janku","type":"Role","_key":"43361","_from":"28970","_to":"28967"} +{"$label":"ACTS_IN","name":"Radu","type":"Role","_key":"43359","_from":"28969","_to":"28967"} +{"$label":"DIRECTED","_key":"43358","_from":"28968","_to":"28967"} +{"$label":"DIRECTED","_key":"49389","_from":"28968","_to":"32339"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"43373","_from":"28979","_to":"28978"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"43381","_from":"28987","_to":"28980"} +{"$label":"ACTS_IN","name":"Dame","type":"Role","_key":"43380","_from":"28986","_to":"28980"} +{"$label":"ACTS_IN","name":"Trainerin","type":"Role","_key":"43379","_from":"28985","_to":"28980"} +{"$label":"ACTS_IN","name":"Lollo","type":"Role","_key":"43378","_from":"28984","_to":"28980"} +{"$label":"ACTS_IN","name":"Barfrau","type":"Role","_key":"43377","_from":"28983","_to":"28980"} +{"$label":"ACTS_IN","name":"Ricki","type":"Role","_key":"43376","_from":"28982","_to":"28980"} +{"$label":"DIRECTED","_key":"43374","_from":"28981","_to":"28980"} +{"$label":"ACTS_IN","name":"Antonia Owens","type":"Role","_key":"43389","_from":"28989","_to":"28988"} +{"$label":"DIRECTED","_key":"43398","_from":"28996","_to":"28990"} +{"$label":"ACTS_IN","name":"Johanna Pressler","type":"Role","_key":"43396","_from":"28995","_to":"28990"} +{"$label":"ACTS_IN","name":"Yukiko Fujisaki","type":"Role","_key":"43395","_from":"28994","_to":"28990"} +{"$label":"ACTS_IN","name":"Meg Dundee","type":"Role","_key":"43394","_from":"28993","_to":"28990"} +{"$label":"ACTS_IN","name":"Tully Vallis","type":"Role","_key":"43393","_from":"28992","_to":"28990"} +{"$label":"ACTS_IN","name":"Ali McGinty","type":"Role","_key":"43392","_from":"28991","_to":"28990"} +{"$label":"ACTS_IN","name":"Lisa Brooks","type":"Role","_key":"121201","_from":"28994","_to":"71196"} +{"$label":"ACTS_IN","name":"Miyumi \/ Miss Mirimoto (voice)","type":"Role","_key":"109051","_from":"28994","_to":"64441"} +{"$label":"ACTS_IN","name":"Detective Hanover","type":"Role","_key":"104876","_from":"28994","_to":"61706"} +{"$label":"ACTS_IN","name":"Micki Yang","type":"Role","_key":"104109","_from":"28994","_to":"61250"} +{"$label":"ACTS_IN","name":"Lilith","type":"Role","_key":"102201","_from":"28994","_to":"60140"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"99064","_from":"28994","_to":"58360"} +{"$label":"ACTS_IN","name":"Jiyoung","type":"Role","_key":"95643","_from":"28994","_to":"56251"} +{"$label":"ACTS_IN","name":"Shen (voice)","type":"Role","_key":"93340","_from":"28994","_to":"54987"} +{"$label":"ACTS_IN","name":"Sona","type":"Role","_key":"64666","_from":"28994","_to":"40281"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"53173","_from":"28994","_to":"34399"} +{"$label":"ACTS_IN","name":"Leah Diehl","type":"Role","_key":"68126","_from":"28995","_to":"41845"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"52773","_from":"28995","_to":"34237"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"49956","_from":"28995","_to":"32701"} +{"$label":"DIRECTED","_key":"43402","_from":"28998","_to":"28997"} +{"$label":"DIRECTED","_key":"44188","_from":"28998","_to":"29455"} +{"$label":"DIRECTED","_key":"43416","_from":"29004","_to":"29000"} +{"$label":"ACTS_IN","name":"Frank Riggio","type":"Role","_key":"43415","_from":"29003","_to":"29000"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"43413","_from":"29002","_to":"29000"} +{"$label":"ACTS_IN","name":"Diana Davenport","type":"Role","_key":"43411","_from":"29001","_to":"29000"} +{"$label":"DIRECTED","_key":"43421","_from":"29009","_to":"29005"} +{"$label":"ACTS_IN","name":"Dez","type":"Role","_key":"43419","_from":"29008","_to":"29005"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"43418","_from":"29007","_to":"29005"} +{"$label":"ACTS_IN","name":"Allie","type":"Role","_key":"43417","_from":"29006","_to":"29005"} +{"$label":"ACTS_IN","name":"Lutger Reinhardt","type":"Role","_key":"43428","_from":"29016","_to":"29010"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"43427","_from":"29015","_to":"29010"} +{"$label":"ACTS_IN","name":"Frau Sussmann","type":"Role","_key":"43426","_from":"29014","_to":"29010"} +{"$label":"ACTS_IN","name":"Thorsten Rehm","type":"Role","_key":"43425","_from":"29013","_to":"29010"} +{"$label":"ACTS_IN","name":"Tina Schaffner","type":"Role","_key":"43424","_from":"29012","_to":"29010"} +{"$label":"DIRECTED","_key":"43422","_from":"29011","_to":"29010"} +{"$label":"ACTS_IN","name":"Kleines Arschloch \/ Inge Koschmidder (voice)","type":"Role","_key":"54266","_from":"29014","_to":"34843"} +{"$label":"ACTS_IN","name":"Das Kleine Arschloch","type":"Role","_key":"51872","_from":"29014","_to":"33840"} +{"$label":"ACTS_IN","name":"Ginette Mauprivet","type":"Role","_key":"43444","_from":"29025","_to":"29017"} +{"$label":"ACTS_IN","name":"Madame Mauprivet","type":"Role","_key":"43443","_from":"29024","_to":"29017"} +{"$label":"ACTS_IN","name":"la femme au bus","type":"Role","_key":"43441","_from":"29023","_to":"29017"} +{"$label":"ACTS_IN","name":"Madame Lafosse","type":"Role","_key":"43438","_from":"29022","_to":"29017"} +{"$label":"ACTS_IN","name":"Totoff Billard","type":"Role","_key":"43437","_from":"29021","_to":"29017"} +{"$label":"ACTS_IN","name":"Jean-Marie Billard","type":"Role","_key":"43436","_from":"29020","_to":"29017"} +{"$label":"ACTS_IN","name":"Jeanne Billard","type":"Role","_key":"43434","_from":"29019","_to":"29017"} +{"$label":"ACTS_IN","name":"Jean-Pierre Billard","type":"Role","_key":"43433","_from":"29018","_to":"29017"} +{"$label":"ACTS_IN","name":"Plantieux","type":"Role","_key":"103387","_from":"29018","_to":"60813"} +{"$label":"ACTS_IN","name":"Guillaume","type":"Role","_key":"91828","_from":"29018","_to":"54170"} +{"$label":"ACTS_IN","name":"Calamit\u00e9","type":"Role","_key":"52228","_from":"29023","_to":"34019"} +{"$label":"ACTS_IN","name":"Yvette, la grand-m\u00e8re de Louis","type":"Role","_key":"89128","_from":"29024","_to":"52799"} +{"$label":"ACTS_IN","name":"Mme Robert","type":"Role","_key":"89116","_from":"29024","_to":"52794"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43452","_from":"29030","_to":"29026"} +{"$label":"ACTS_IN","name":"Big","type":"Role","_key":"43449","_from":"29029","_to":"29026"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"43447","_from":"29028","_to":"29026"} +{"$label":"DIRECTED","_key":"43445","_from":"29027","_to":"29026"} +{"$label":"DIRECTED","_key":"69267","_from":"29027","_to":"42350"} +{"$label":"ACTS_IN","name":"Bert Heubler","type":"Role","_key":"46756","_from":"29028","_to":"30844"} +{"$label":"ACTS_IN","name":"Butoh- T\u00e4nzer","type":"Role","_key":"43463","_from":"29035","_to":"29031"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"43462","_from":"29034","_to":"29031"} +{"$label":"ACTS_IN","name":"Celine","type":"Role","_key":"43461","_from":"29033","_to":"29031"} +{"$label":"ACTS_IN","name":"Yu","type":"Role","_key":"43457","_from":"29032","_to":"29031"} +{"$label":"DIRECTED","_key":"43465","_from":"29037","_to":"29036"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"43483","_from":"29043","_to":"29038"} +{"$label":"ACTS_IN","name":"Ozzie","type":"Role","_key":"43481","_from":"29042","_to":"29038"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"43480","_from":"29041","_to":"29038"} +{"$label":"ACTS_IN","name":"Harriet","type":"Role","_key":"43479","_from":"29040","_to":"29038"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"43478","_from":"29039","_to":"29038"} +{"$label":"ACTS_IN","name":"Dickie","type":"Role","_key":"96075","_from":"29039","_to":"56457"} +{"$label":"ACTS_IN","name":"Sid Hogenson","type":"Role","_key":"70568","_from":"29042","_to":"42937"} +{"$label":"ACTS_IN","name":"Mr. Guttman","type":"Role","_key":"62339","_from":"29042","_to":"39279"} +{"$label":"ACTS_IN","name":"Frau Koltzsch","type":"Role","_key":"43497","_from":"29051","_to":"29044"} +{"$label":"ACTS_IN","name":"Kriminalbeamter Knauer","type":"Role","_key":"43496","_from":"29050","_to":"29044"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"43495","_from":"29049","_to":"29044"} +{"$label":"ACTS_IN","name":"Alf","type":"Role","_key":"43492","_from":"29048","_to":"29044"} +{"$label":"ACTS_IN","name":"Sylvi","type":"Role","_key":"43490","_from":"29047","_to":"29044"} +{"$label":"ACTS_IN","name":"Koltzsch","type":"Role","_key":"43488","_from":"29046","_to":"29044"} +{"$label":"DIRECTED","_key":"43484","_from":"29045","_to":"29044"} +{"$label":"ACTS_IN","name":"Tutmosis","type":"Role","_key":"68860","_from":"29048","_to":"42182"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"47413","_from":"29048","_to":"31231"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"97517","_from":"29049","_to":"57421"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"43508","_from":"29058","_to":"29052"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"43507","_from":"29057","_to":"29052"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"43504","_from":"29056","_to":"29052"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"43503","_from":"29055","_to":"29052"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"43501","_from":"29054","_to":"29052"} +{"$label":"DIRECTED","_key":"43498","_from":"29053","_to":"29052"} +{"$label":"ACTS_IN","name":"Leutnant Bodenschatz","type":"Role","_key":"49237","_from":"29054","_to":"32251"} +{"$label":"ACTS_IN","name":"Will Rollins","type":"Role","_key":"43511","_from":"29061","_to":"29059"} +{"$label":"ACTS_IN","name":"Jason Voorhees","type":"Role","_key":"43510","_from":"29060","_to":"29059"} +{"$label":"ACTS_IN","name":"Pa","type":"Role","_key":"93311","_from":"29060","_to":"54964"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"120488","_from":"29061","_to":"70773"} +{"$label":"ACTS_IN","name":"Lionel Travitz","type":"Role","_key":"109343","_from":"29061","_to":"64596"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"101682","_from":"29061","_to":"59845"} +{"$label":"ACTS_IN","name":"Berliner Philharmoniker","type":"Role","_key":"43516","_from":"29065","_to":"29062"} +{"$label":"ACTS_IN","name":"Dirigent","type":"Role","_key":"43515","_from":"29064","_to":"29062"} +{"$label":"DIRECTED","_key":"43514","_from":"29063","_to":"29062"} +{"$label":"DIRECTED","_key":"68610","_from":"29063","_to":"42059"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68609","_from":"29064","_to":"42059"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"43528","_from":"29076","_to":"29066"} +{"$label":"ACTS_IN","name":"Anes","type":"Role","_key":"43527","_from":"29075","_to":"29066"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"43526","_from":"29074","_to":"29066"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43525","_from":"29073","_to":"29066"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43524","_from":"29072","_to":"29066"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43523","_from":"29071","_to":"29066"} +{"$label":"ACTS_IN","name":"Direktor","type":"Role","_key":"43522","_from":"29070","_to":"29066"} +{"$label":"ACTS_IN","name":"Garnier","type":"Role","_key":"43521","_from":"29069","_to":"29066"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"43518","_from":"29068","_to":"29066"} +{"$label":"DIRECTED","_key":"43517","_from":"29067","_to":"29066"} +{"$label":"DIRECTED","_key":"91612","_from":"29067","_to":"54016"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"91614","_from":"29068","_to":"54016"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"96159","_from":"29076","_to":"56512"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"91613","_from":"29076","_to":"54016"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"64646","_from":"29076","_to":"40271"} +{"$label":"ACTS_IN","name":"Isabelle 'Isa' Tostin","type":"Role","_key":"57383","_from":"29076","_to":"36380"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"43545","_from":"29089","_to":"29077"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"43544","_from":"29088","_to":"29077"} +{"$label":"ACTS_IN","name":"Brandi","type":"Role","_key":"43543","_from":"29087","_to":"29077"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43542","_from":"29086","_to":"29077"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"43539","_from":"29085","_to":"29077"} +{"$label":"ACTS_IN","name":"Cindy Lane","type":"Role","_key":"43538","_from":"29084","_to":"29077"} +{"$label":"ACTS_IN","name":"Mickey Lane","type":"Role","_key":"43536","_from":"29083","_to":"29077"} +{"$label":"ACTS_IN","name":"Jonathan Fitzsimmons","type":"Role","_key":"43535","_from":"29082","_to":"29077"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"43534","_from":"29081","_to":"29077"} +{"$label":"ACTS_IN","name":"Venokur","type":"Role","_key":"43533","_from":"29080","_to":"29077"} +{"$label":"ACTS_IN","name":"Anthony Vilachi","type":"Role","_key":"43532","_from":"29079","_to":"29077"} +{"$label":"DIRECTED","_key":"43529","_from":"29078","_to":"29077"} +{"$label":"ACTS_IN","name":"Witkoff","type":"Role","_key":"93671","_from":"29079","_to":"55145"} +{"$label":"DIRECTED","_key":"43551","_from":"29092","_to":"29090"} +{"$label":"ACTS_IN","name":"Breaker","type":"Role","_key":"43549","_from":"29091","_to":"29090"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"43556","_from":"29096","_to":"29093"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"43555","_from":"29095","_to":"29093"} +{"$label":"ACTS_IN","name":"Patty Bernstein","type":"Role","_key":"43554","_from":"29094","_to":"29093"} +{"$label":"ACTS_IN","name":"Barry Carlisle","type":"Role","_key":"43562","_from":"29098","_to":"29097"} +{"$label":"ACTS_IN","name":"Ens. Thomas Garth","type":"Role","_key":"69763","_from":"29098","_to":"42583"} +{"$label":"ACTS_IN","name":"Darksuit","type":"Role","_key":"65174","_from":"29098","_to":"40482"} +{"$label":"DIRECTED","_key":"43568","_from":"29100","_to":"29099"} +{"$label":"ACTS_IN","name":"Dr. Chester Lynne","type":"Role","_key":"43577","_from":"29105","_to":"29101"} +{"$label":"ACTS_IN","name":"Geraldine","type":"Role","_key":"43576","_from":"29104","_to":"29101"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"43575","_from":"29103","_to":"29101"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"43571","_from":"29102","_to":"29101"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"114287","_from":"29102","_to":"67308"} +{"$label":"ACTS_IN","name":"Mr. Foster","type":"Role","_key":"43592","_from":"29118","_to":"29106"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"43591","_from":"29117","_to":"29106"} +{"$label":"ACTS_IN","name":"Cody Taylor","type":"Role","_key":"43590","_from":"29116","_to":"29106"} +{"$label":"ACTS_IN","name":"Mr. Taylor","type":"Role","_key":"43589","_from":"29115","_to":"29106"} +{"$label":"ACTS_IN","name":"Reverend Cabot","type":"Role","_key":"43588","_from":"29114","_to":"29106"} +{"$label":"ACTS_IN","name":"Edna","type":"Role","_key":"43587","_from":"29113","_to":"29106"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"43586","_from":"29112","_to":"29106"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"43585","_from":"29111","_to":"29106"} +{"$label":"ACTS_IN","name":"The Mexican","type":"Role","_key":"43584","_from":"29110","_to":"29106"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"43583","_from":"29109","_to":"29106"} +{"$label":"ACTS_IN","name":"Ape","type":"Role","_key":"43582","_from":"29108","_to":"29106"} +{"$label":"DIRECTED","_key":"43578","_from":"29107","_to":"29106"} +{"$label":"ACTS_IN","name":"Warner","type":"Role","_key":"117434","_from":"29112","_to":"69064"} +{"$label":"ACTS_IN","name":"Teddy (voice)","type":"Role","_key":"94396","_from":"29116","_to":"55580"} +{"$label":"ACTS_IN","name":"Mrs. Lift","type":"Role","_key":"72607","_from":"29117","_to":"43772"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"43602","_from":"29122","_to":"29119"} +{"$label":"ACTS_IN","name":"Theodore","type":"Role","_key":"43601","_from":"29121","_to":"29119"} +{"$label":"DIRECTED","_key":"43594","_from":"29120","_to":"29119"} +{"$label":"DIRECTED","_key":"61716","_from":"29120","_to":"38867"} +{"$label":"DIRECTED","_key":"54368","_from":"29120","_to":"34872"} +{"$label":"ACTS_IN","name":"Terence","type":"Role","_key":"93208","_from":"29121","_to":"54917"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"43620","_from":"29129","_to":"29124"} +{"$label":"ACTS_IN","name":"Alpha Female","type":"Role","_key":"43619","_from":"29128","_to":"29124"} +{"$label":"ACTS_IN","name":"Mike - Military Escort","type":"Role","_key":"43616","_from":"29127","_to":"29124"} +{"$label":"ACTS_IN","name":"Marley","type":"Role","_key":"43615","_from":"29126","_to":"29124"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"43614","_from":"29125","_to":"29124"} +{"$label":"ACTS_IN","name":"Countee","type":"Role","_key":"49311","_from":"29126","_to":"32288"} +{"$label":"ACTS_IN","name":"Police Sergeant","type":"Role","_key":"51664","_from":"29127","_to":"33701"} +{"$label":"ACTS_IN","name":"Berta Davenport","type":"Role","_key":"94468","_from":"29129","_to":"55632"} +{"$label":"ACTS_IN","name":"Half & Half","type":"Role","_key":"89062","_from":"29129","_to":"52762"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"43628","_from":"29134","_to":"29130"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"43625","_from":"29133","_to":"29130"} +{"$label":"ACTS_IN","name":"Dr. Gardner","type":"Role","_key":"43623","_from":"29132","_to":"29130"} +{"$label":"DIRECTED","_key":"43621","_from":"29131","_to":"29130"} +{"$label":"DIRECTED","_key":"107305","_from":"29131","_to":"63286"} +{"$label":"ACTS_IN","name":"Inquisitor","type":"Role","_key":"59472","_from":"29132","_to":"37557"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43652","_from":"29150","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43651","_from":"29149","_to":"29135"} +{"$label":"ACTS_IN","name":"Tom Billings","type":"Role","_key":"43650","_from":"29148","_to":"29135"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"43649","_from":"29147","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43648","_from":"29146","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43647","_from":"29145","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43646","_from":"29144","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43645","_from":"29143","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43644","_from":"29142","_to":"29135"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43643","_from":"29141","_to":"29135"} +{"$label":"ACTS_IN","name":"George Antrobus","type":"Role","_key":"43641","_from":"29140","_to":"29135"} +{"$label":"ACTS_IN","name":"Mary Antrobus","type":"Role","_key":"43639","_from":"29139","_to":"29135"} +{"$label":"ACTS_IN","name":"Carol Stewart","type":"Role","_key":"43638","_from":"29138","_to":"29135"} +{"$label":"ACTS_IN","name":"Dr. Swanson","type":"Role","_key":"43637","_from":"29137","_to":"29135"} +{"$label":"ACTS_IN","name":"Joyce Dean","type":"Role","_key":"43634","_from":"29136","_to":"29135"} +{"$label":"ACTS_IN","name":"Graeme Hepburn","type":"Role","_key":"43664","_from":"29160","_to":"29151"} +{"$label":"ACTS_IN","name":"Milissa McKensie","type":"Role","_key":"43663","_from":"29159","_to":"29151"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43662","_from":"29158","_to":"29151"} +{"$label":"ACTS_IN","name":"Physiotherapeut","type":"Role","_key":"43661","_from":"29157","_to":"29151"} +{"$label":"ACTS_IN","name":"Afrikanischer Priester","type":"Role","_key":"43660","_from":"29156","_to":"29151"} +{"$label":"ACTS_IN","name":"Afrikanischer Doktor","type":"Role","_key":"43658","_from":"29155","_to":"29151"} +{"$label":"ACTS_IN","name":"Bonnie Foster","type":"Role","_key":"43657","_from":"29154","_to":"29151"} +{"$label":"ACTS_IN","name":"Guy Foster","type":"Role","_key":"43656","_from":"29153","_to":"29151"} +{"$label":"DIRECTED","_key":"43655","_from":"29152","_to":"29151"} +{"$label":"ACTS_IN","name":"Lorainne Morrissey","type":"Role","_key":"116230","_from":"29159","_to":"68436"} +{"$label":"ACTS_IN","name":"Valerie Sonnenschein","type":"Role","_key":"113908","_from":"29159","_to":"67089"} +{"$label":"ACTS_IN","name":"Elizabeth Bennet","type":"Role","_key":"101461","_from":"29159","_to":"59721"} +{"$label":"ACTS_IN","name":"Constance Lloyd Wilde","type":"Role","_key":"69429","_from":"29159","_to":"42430"} +{"$label":"ACTS_IN","name":"Noel Curley","type":"Role","_key":"110354","_from":"29160","_to":"65211"} +{"$label":"ACTS_IN","name":"Philip Conolly","type":"Role","_key":"106817","_from":"29160","_to":"62970"} +{"$label":"ACTS_IN","name":"Maguire","type":"Role","_key":"69541","_from":"29160","_to":"42469"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43676","_from":"29168","_to":"29161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43673","_from":"29167","_to":"29161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43672","_from":"29166","_to":"29161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43670","_from":"29165","_to":"29161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43669","_from":"29164","_to":"29161"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43667","_from":"29163","_to":"29161"} +{"$label":"DIRECTED","_key":"43665","_from":"29162","_to":"29161"} +{"$label":"ACTS_IN","name":"Ministro","type":"Role","_key":"91479","_from":"29168","_to":"53935"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43678","_from":"29171","_to":"29169"} +{"$label":"DIRECTED","_key":"43677","_from":"29170","_to":"29169"} +{"$label":"DIRECTED","_key":"46379","_from":"29170","_to":"30645"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"43682","_from":"29176","_to":"29172"} +{"$label":"ACTS_IN","name":"Ilias","type":"Role","_key":"43681","_from":"29175","_to":"29172"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"43680","_from":"29174","_to":"29172"} +{"$label":"DIRECTED","_key":"43679","_from":"29173","_to":"29172"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43689","_from":"29182","_to":"29177"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43688","_from":"29181","_to":"29177"} +{"$label":"ACTS_IN","name":"Yohji","type":"Role","_key":"43687","_from":"29180","_to":"29177"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"43686","_from":"29179","_to":"29177"} +{"$label":"DIRECTED","_key":"43683","_from":"29178","_to":"29177"} +{"$label":"DIRECTED","_key":"43696","_from":"29185","_to":"29183"} +{"$label":"ACTS_IN","name":"Sheriff Lloyd Parsons","type":"Role","_key":"43694","_from":"29184","_to":"29183"} +{"$label":"ACTS_IN","name":"James Riley","type":"Role","_key":"66760","_from":"29184","_to":"41244"} +{"$label":"ACTS_IN","name":"Alan Mordecai","type":"Role","_key":"57564","_from":"29184","_to":"36462"} +{"$label":"DIRECTED","_key":"62615","_from":"29185","_to":"39391"} +{"$label":"DIRECTED","_key":"52195","_from":"29185","_to":"34007"} +{"$label":"DIRECTED","_key":"46405","_from":"29185","_to":"30656"} +{"$label":"ACTS_IN","name":"Herr Heidenreich","type":"Role","_key":"43711","_from":"29198","_to":"29186"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43710","_from":"29197","_to":"29186"} +{"$label":"ACTS_IN","name":"Frau Westermann","type":"Role","_key":"43709","_from":"29196","_to":"29186"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43707","_from":"29195","_to":"29186"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"43706","_from":"29194","_to":"29186"} +{"$label":"ACTS_IN","name":"Winnie Rieser","type":"Role","_key":"43705","_from":"29193","_to":"29186"} +{"$label":"ACTS_IN","name":"Schifferklavierspieler","type":"Role","_key":"43704","_from":"29192","_to":"29186"} +{"$label":"ACTS_IN","name":"Frau Heidenreich","type":"Role","_key":"43703","_from":"29191","_to":"29186"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"43702","_from":"29190","_to":"29186"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43701","_from":"29189","_to":"29186"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"43699","_from":"29188","_to":"29186"} +{"$label":"DIRECTED","_key":"43697","_from":"29187","_to":"29186"} +{"$label":"DIRECTED","_key":"89985","_from":"29187","_to":"53231"} +{"$label":"ACTS_IN","name":"Brother Michael (Vienna)","type":"Role","_key":"99414","_from":"29188","_to":"58590"} +{"$label":"ACTS_IN","name":"Polizeiinsp. Friedrich","type":"Role","_key":"43728","_from":"29205","_to":"29199"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43727","_from":"29204","_to":"29199"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43725","_from":"29203","_to":"29199"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"43721","_from":"29202","_to":"29199"} +{"$label":"ACTS_IN","name":"Charly Gibbons","type":"Role","_key":"43720","_from":"29201","_to":"29199"} +{"$label":"ACTS_IN","name":"Pauline Schilling","type":"Role","_key":"43715","_from":"29200","_to":"29199"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"44478","_from":"29200","_to":"29626"} +{"$label":"ACTS_IN","name":"le major Achbach","type":"Role","_key":"48886","_from":"29201","_to":"32047"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"43733","_from":"29207","_to":"29206"} +{"$label":"DIRECTED","_key":"43741","_from":"29214","_to":"29208"} +{"$label":"DIRECTED","_key":"43740","_from":"29213","_to":"29208"} +{"$label":"ACTS_IN","name":"Blue Ranger","type":"Role","_key":"43739","_from":"29212","_to":"29208"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"43738","_from":"29211","_to":"29208"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"43737","_from":"29210","_to":"29208"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"43736","_from":"29209","_to":"29208"} +{"$label":"ACTS_IN","name":"Adam Park, schwarzer Ranger","type":"Role","_key":"52389","_from":"29209","_to":"34092"} +{"$label":"ACTS_IN","name":"Tommy Oliver, wei\u00dfer Ranger","type":"Role","_key":"52385","_from":"29211","_to":"34092"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"43751","_from":"29220","_to":"29215"} +{"$label":"ACTS_IN","name":"Schorsch","type":"Role","_key":"43749","_from":"29219","_to":"29215"} +{"$label":"ACTS_IN","name":"Utz","type":"Role","_key":"43746","_from":"29218","_to":"29215"} +{"$label":"ACTS_IN","name":"Postwirt","type":"Role","_key":"43744","_from":"29217","_to":"29215"} +{"$label":"DIRECTED","_key":"43742","_from":"29216","_to":"29215"} +{"$label":"DIRECTED","_key":"72173","_from":"29216","_to":"43622"} +{"$label":"ACTS_IN","name":"Meister Eder","type":"Role","_key":"89856","_from":"29217","_to":"53171"} +{"$label":"ACTS_IN","name":"Xaver Huber","type":"Role","_key":"45029","_from":"29220","_to":"29913"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43768","_from":"29230","_to":"29221"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43767","_from":"29229","_to":"29221"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"43766","_from":"29228","_to":"29221"} +{"$label":"ACTS_IN","name":"Pips","type":"Role","_key":"43764","_from":"29227","_to":"29221"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"43762","_from":"29226","_to":"29221"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"43760","_from":"29225","_to":"29221"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"43759","_from":"29224","_to":"29221"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"43758","_from":"29223","_to":"29221"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"43754","_from":"29222","_to":"29221"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"45022","_from":"29222","_to":"29913"} +{"$label":"ACTS_IN","name":"Edeltraut Hertel","type":"Role","_key":"43770","_from":"29233","_to":"29231"} +{"$label":"DIRECTED","_key":"43769","_from":"29232","_to":"29231"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"43786","_from":"29240","_to":"29234"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"43780","_from":"29239","_to":"29234"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"43778","_from":"29238","_to":"29234"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"43776","_from":"29237","_to":"29234"} +{"$label":"ACTS_IN","name":"F\u00f6rster Harkort","type":"Role","_key":"43775","_from":"29236","_to":"29234"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"43774","_from":"29235","_to":"29234"} +{"$label":"ACTS_IN","name":"Koska","type":"Role","_key":"49098","_from":"29235","_to":"32171"} +{"$label":"ACTS_IN","name":"Boxer-Franz","type":"Role","_key":"43909","_from":"29235","_to":"29305"} +{"$label":"ACTS_IN","name":"Mr. Broen","type":"Role","_key":"44131","_from":"29236","_to":"29420"} +{"$label":"ACTS_IN","name":"Hein Daddel","type":"Role","_key":"49600","_from":"29239","_to":"32466"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"48410","_from":"29240","_to":"31768"} +{"$label":"ACTS_IN","name":"M\u00e4uschen genannt Die Unscheinbare","type":"Role","_key":"45151","_from":"29240","_to":"29959"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"43797","_from":"29249","_to":"29241"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"43796","_from":"29248","_to":"29241"} +{"$label":"ACTS_IN","name":"Friseur","type":"Role","_key":"43795","_from":"29247","_to":"29241"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"43794","_from":"29246","_to":"29241"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"43793","_from":"29245","_to":"29241"} +{"$label":"ACTS_IN","name":"Franz M\u00fcller","type":"Role","_key":"43792","_from":"29244","_to":"29241"} +{"$label":"ACTS_IN","name":"Anni M\u00fcller","type":"Role","_key":"43790","_from":"29243","_to":"29241"} +{"$label":"DIRECTED","_key":"43789","_from":"29242","_to":"29241"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43818","_from":"29264","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43817","_from":"29263","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43816","_from":"29262","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43815","_from":"29261","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43814","_from":"29260","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43813","_from":"29259","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43812","_from":"29258","_to":"29250"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43810","_from":"29257","_to":"29250"} +{"$label":"ACTS_IN","name":"Clemens Krauthagen","type":"Role","_key":"43808","_from":"29256","_to":"29250"} +{"$label":"ACTS_IN","name":"Direktor Reichmuth","type":"Role","_key":"43807","_from":"29255","_to":"29250"} +{"$label":"ACTS_IN","name":"Frau Manzoni","type":"Role","_key":"43806","_from":"29254","_to":"29250"} +{"$label":"ACTS_IN","name":"Giorgio Manzoni","type":"Role","_key":"43805","_from":"29253","_to":"29250"} +{"$label":"ACTS_IN","name":"Banette","type":"Role","_key":"43804","_from":"29252","_to":"29250"} +{"$label":"ACTS_IN","name":"Thomas Manzoni","type":"Role","_key":"43800","_from":"29251","_to":"29250"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"43824","_from":"29267","_to":"29265"} +{"$label":"ACTS_IN","name":"Jenny Wiemann","type":"Role","_key":"43822","_from":"29266","_to":"29265"} +{"$label":"ACTS_IN","name":"Ted Barnes","type":"Role","_key":"43834","_from":"29271","_to":"29268"} +{"$label":"ACTS_IN","name":"Dr. Langtry","type":"Role","_key":"43831","_from":"29270","_to":"29268"} +{"$label":"ACTS_IN","name":"Kathy Saunders","type":"Role","_key":"43828","_from":"29269","_to":"29268"} +{"$label":"ACTS_IN","name":"Tobie","type":"Role","_key":"104257","_from":"29269","_to":"61341"} +{"$label":"ACTS_IN","name":"Bernd Briesow","type":"Role","_key":"43861","_from":"29289","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43859","_from":"29288","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43858","_from":"29287","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43856","_from":"29286","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43855","_from":"29285","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43854","_from":"29284","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43853","_from":"29283","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43852","_from":"29282","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43851","_from":"29281","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43850","_from":"29280","_to":"29272"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43847","_from":"29279","_to":"29272"} +{"$label":"ACTS_IN","name":"Bernd als Jugendlicher","type":"Role","_key":"43842","_from":"29278","_to":"29272"} +{"$label":"ACTS_IN","name":"Philip als Jugendlicher","type":"Role","_key":"43841","_from":"29277","_to":"29272"} +{"$label":"ACTS_IN","name":"Lutz als Jugendlicher","type":"Role","_key":"43839","_from":"29276","_to":"29272"} +{"$label":"ACTS_IN","name":"Regine Lehmann","type":"Role","_key":"43838","_from":"29275","_to":"29272"} +{"$label":"ACTS_IN","name":"Manfred Brettschneider","type":"Role","_key":"43836","_from":"29274","_to":"29272"} +{"$label":"DIRECTED","_key":"43835","_from":"29273","_to":"29272"} +{"$label":"ACTS_IN","name":"Simon Bathge","type":"Role","_key":"52701","_from":"29274","_to":"34212"} +{"$label":"ACTS_IN","name":"Motte","type":"Role","_key":"63734","_from":"29276","_to":"39849"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"47260","_from":"29277","_to":"31136"} +{"$label":"ACTS_IN","name":"Temelko","type":"Role","_key":"46557","_from":"29277","_to":"30753"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"64443","_from":"29288","_to":"40158"} +{"$label":"ACTS_IN","name":"Klassenlehrer","type":"Role","_key":"44831","_from":"29289","_to":"29813"} +{"$label":"DIRECTED","_key":"43867","_from":"29294","_to":"29290"} +{"$label":"ACTS_IN","name":"Daisy Duke","type":"Role","_key":"43866","_from":"29293","_to":"29290"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"43865","_from":"29292","_to":"29290"} +{"$label":"ACTS_IN","name":"Laurie Pullman","type":"Role","_key":"43864","_from":"29291","_to":"29290"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"102931","_from":"29291","_to":"60545"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"100411","_from":"29291","_to":"59211"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"95018","_from":"29291","_to":"55939"} +{"$label":"ACTS_IN","name":"Felix Bean","type":"Role","_key":"95232","_from":"29292","_to":"56030"} +{"$label":"ACTS_IN","name":"Fink \/ Emcee","type":"Role","_key":"59020","_from":"29292","_to":"37261"} +{"$label":"ACTS_IN","name":"Private Megan Valentine","type":"Role","_key":"105212","_from":"29293","_to":"61918"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"102742","_from":"29293","_to":"60442"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"56877","_from":"29293","_to":"36109"} +{"$label":"ACTS_IN","name":"Zach","type":"Role","_key":"95230","_from":"29294","_to":"56030"} +{"$label":"ACTS_IN","name":"Putman","type":"Role","_key":"68598","_from":"29294","_to":"42057"} +{"$label":"ACTS_IN","name":"Barry \/ Blind Sikh","type":"Role","_key":"59019","_from":"29294","_to":"37261"} +{"$label":"DIRECTED","_key":"95229","_from":"29294","_to":"56030"} +{"$label":"DIRECTED","_key":"68605","_from":"29294","_to":"42057"} +{"$label":"DIRECTED","_key":"59017","_from":"29294","_to":"37261"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"43888","_from":"29301","_to":"29297"} +{"$label":"ACTS_IN","name":"Can't Get Right","type":"Role","_key":"43887","_from":"29300","_to":"29297"} +{"$label":"ACTS_IN","name":"Biscuit","type":"Role","_key":"43886","_from":"29299","_to":"29297"} +{"$label":"ACTS_IN","name":"Goldmouth","type":"Role","_key":"43883","_from":"29298","_to":"29297"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"113248","_from":"29298","_to":"66724"} +{"$label":"ACTS_IN","name":"Car thief","type":"Role","_key":"56193","_from":"29298","_to":"35707"} +{"$label":"ACTS_IN","name":"Darnell","type":"Role","_key":"93693","_from":"29299","_to":"55157"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"115218","_from":"29300","_to":"67851"} +{"$label":"ACTS_IN","name":"Anchilles","type":"Role","_key":"101783","_from":"29300","_to":"59899"} +{"$label":"ACTS_IN","name":"Cole","type":"Role","_key":"99249","_from":"29300","_to":"58489"} +{"$label":"ACTS_IN","name":"Miles Templeton","type":"Role","_key":"98413","_from":"29300","_to":"57976"} +{"$label":"ACTS_IN","name":"Mr. Tarraion","type":"Role","_key":"90516","_from":"29300","_to":"53471"} +{"$label":"ACTS_IN","name":"Coretta James","type":"Role","_key":"50111","_from":"29301","_to":"32780"} +{"$label":"ACTS_IN","name":"George Pratt","type":"Role","_key":"43893","_from":"29303","_to":"29302"} +{"$label":"ACTS_IN","name":"Old Surehand","type":"Role","_key":"119191","_from":"29303","_to":"70039"} +{"$label":"ACTS_IN","name":"Old Surehand","type":"Role","_key":"55137","_from":"29303","_to":"35195"} +{"$label":"ACTS_IN","name":"Old Surehand","type":"Role","_key":"53271","_from":"29303","_to":"34453"} +{"$label":"ACTS_IN","name":"Sir Edward Matherson","type":"Role","_key":"45675","_from":"29303","_to":"30229"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43920","_from":"29310","_to":"29305"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43918","_from":"29309","_to":"29305"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43916","_from":"29308","_to":"29305"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43915","_from":"29307","_to":"29305"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"43908","_from":"29306","_to":"29305"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"43936","_from":"29316","_to":"29311"} +{"$label":"ACTS_IN","name":"Tante Bertha","type":"Role","_key":"43935","_from":"29315","_to":"29311"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"43933","_from":"29314","_to":"29311"} +{"$label":"ACTS_IN","name":"Gloria Anden","type":"Role","_key":"43931","_from":"29313","_to":"29311"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"43929","_from":"29312","_to":"29311"} +{"$label":"ACTS_IN","name":"Frank Kuhl\u00e4nder","type":"Role","_key":"45357","_from":"29312","_to":"30082"} +{"$label":"ACTS_IN","name":"Frau Sacher","type":"Role","_key":"44665","_from":"29315","_to":"29716"} +{"$label":"ACTS_IN","name":"Niko","type":"Role","_key":"43949","_from":"29319","_to":"29317"} +{"$label":"DIRECTED","_key":"43944","_from":"29318","_to":"29317"} +{"$label":"DIRECTED","_key":"90310","_from":"29318","_to":"53386"} +{"$label":"ACTS_IN","name":"Otawanga","type":"Role","_key":"43963","_from":"29329","_to":"29320"} +{"$label":"ACTS_IN","name":"Pferdeh\u00e4ndler","type":"Role","_key":"43962","_from":"29328","_to":"29320"} +{"$label":"ACTS_IN","name":"Lowes Partner","type":"Role","_key":"43961","_from":"29327","_to":"29320"} +{"$label":"ACTS_IN","name":"Johnny Lowe","type":"Role","_key":"43959","_from":"29326","_to":"29320"} +{"$label":"ACTS_IN","name":"Lt. McKay","type":"Role","_key":"43958","_from":"29325","_to":"29320"} +{"$label":"ACTS_IN","name":"Ed KLowe","type":"Role","_key":"43957","_from":"29324","_to":"29320"} +{"$label":"ACTS_IN","name":"Lennie","type":"Role","_key":"43956","_from":"29323","_to":"29320"} +{"$label":"ACTS_IN","name":"Vittorio","type":"Role","_key":"43954","_from":"29322","_to":"29320"} +{"$label":"DIRECTED","_key":"43950","_from":"29321","_to":"29320"} +{"$label":"DIRECTED","_key":"121655","_from":"29321","_to":"71463"} +{"$label":"ACTS_IN","name":"FBI Agent Robert Graham","type":"Role","_key":"67697","_from":"29323","_to":"41637"} +{"$label":"ACTS_IN","name":"The Thing","type":"Role","_key":"65781","_from":"29323","_to":"40713"} +{"$label":"ACTS_IN","name":"Jake Barton","type":"Role","_key":"44155","_from":"29324","_to":"29428"} +{"$label":"ACTS_IN","name":"Johnny Carson","type":"Role","_key":"43976","_from":"29335","_to":"29330"} +{"$label":"ACTS_IN","name":"James Brown","type":"Role","_key":"43975","_from":"29334","_to":"29330"} +{"$label":"ACTS_IN","name":"Program Director","type":"Role","_key":"43974","_from":"29333","_to":"29330"} +{"$label":"ACTS_IN","name":"Ronnie Simmons","type":"Role","_key":"43973","_from":"29332","_to":"29330"} +{"$label":"ACTS_IN","name":"Milo Hughes","type":"Role","_key":"43970","_from":"29331","_to":"29330"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"118641","_from":"29331","_to":"69757"} +{"$label":"ACTS_IN","name":"Black Doug","type":"Role","_key":"117499","_from":"29331","_to":"69087"} +{"$label":"ACTS_IN","name":"Brody","type":"Role","_key":"114800","_from":"29331","_to":"67620"} +{"$label":"ACTS_IN","name":"Duane Henderson","type":"Role","_key":"101317","_from":"29331","_to":"59645"} +{"$label":"ACTS_IN","name":"Byron","type":"Role","_key":"100718","_from":"29331","_to":"59387"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"97698","_from":"29331","_to":"57527"} +{"$label":"ACTS_IN","name":"Boog (Voice)","type":"Role","_key":"95897","_from":"29331","_to":"56396"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"94784","_from":"29331","_to":"55823"} +{"$label":"ACTS_IN","name":"Day-Day","type":"Role","_key":"63513","_from":"29331","_to":"39764"} +{"$label":"ACTS_IN","name":"Day-Day \/ Old Man with Shotgun","type":"Role","_key":"63218","_from":"29331","_to":"39644"} +{"$label":"ACTS_IN","name":"Baby Powder","type":"Role","_key":"49453","_from":"29331","_to":"32384"} +{"$label":"ACTS_IN","name":"L.J.","type":"Role","_key":"47278","_from":"29331","_to":"31150"} +{"$label":"DIRECTED","_key":"64370","_from":"29333","_to":"40118"} +{"$label":"ACTS_IN","name":"Tiagos Mutter Maria","type":"Role","_key":"43986","_from":"29345","_to":"29336"} +{"$label":"ACTS_IN","name":"Rato","type":"Role","_key":"43985","_from":"29344","_to":"29336"} +{"$label":"ACTS_IN","name":"Cocada","type":"Role","_key":"43983","_from":"29343","_to":"29336"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"43982","_from":"29342","_to":"29336"} +{"$label":"ACTS_IN","name":"Juliana","type":"Role","_key":"43981","_from":"29341","_to":"29336"} +{"$label":"ACTS_IN","name":"Sabia","type":"Role","_key":"43980","_from":"29340","_to":"29336"} +{"$label":"ACTS_IN","name":"Tubaro","type":"Role","_key":"43979","_from":"29339","_to":"29336"} +{"$label":"ACTS_IN","name":"Tiago","type":"Role","_key":"43978","_from":"29338","_to":"29336"} +{"$label":"DIRECTED","_key":"43977","_from":"29337","_to":"29336"} +{"$label":"ACTS_IN","name":"Tom\u00e1s","type":"Role","_key":"43996","_from":"29353","_to":"29346"} +{"$label":"ACTS_IN","name":"Balaban","type":"Role","_key":"43994","_from":"29352","_to":"29346"} +{"$label":"ACTS_IN","name":"Enrique","type":"Role","_key":"43993","_from":"29351","_to":"29346"} +{"$label":"ACTS_IN","name":"Benigna","type":"Role","_key":"43992","_from":"29350","_to":"29346"} +{"$label":"ACTS_IN","name":"Sim\u00f3n","type":"Role","_key":"43990","_from":"29349","_to":"29346"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"43989","_from":"29348","_to":"29346"} +{"$label":"DIRECTED","_key":"43987","_from":"29347","_to":"29346"} +{"$label":"ACTS_IN","name":"Charlies Engel","type":"Role","_key":"44005","_from":"29356","_to":"29354"} +{"$label":"ACTS_IN","name":"Charlies Engel","type":"Role","_key":"44003","_from":"29355","_to":"29354"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"107257","_from":"29355","_to":"63247"} +{"$label":"ACTS_IN","name":"Rebecca Fay","type":"Role","_key":"57705","_from":"29355","_to":"36527"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"102231","_from":"29356","_to":"60158"} +{"$label":"ACTS_IN","name":"Angela Bridges","type":"Role","_key":"94679","_from":"29356","_to":"55785"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"61282","_from":"29356","_to":"38696"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"60146","_from":"29356","_to":"37948"} +{"$label":"ACTS_IN","name":"Samantha Wise","type":"Role","_key":"45252","_from":"29356","_to":"30031"} +{"$label":"ACTS_IN","name":"Gisela","type":"Role","_key":"44021","_from":"29362","_to":"29358"} +{"$label":"ACTS_IN","name":"Elvira","type":"Role","_key":"44020","_from":"29361","_to":"29358"} +{"$label":"ACTS_IN","name":"Reschke","type":"Role","_key":"44019","_from":"29360","_to":"29358"} +{"$label":"DIRECTED","_key":"44017","_from":"29359","_to":"29358"} +{"$label":"DIRECTED","_key":"44034","_from":"29368","_to":"29363"} +{"$label":"DIRECTED","_key":"44033","_from":"29367","_to":"29363"} +{"$label":"ACTS_IN","name":"Ruck","type":"Role","_key":"44031","_from":"29366","_to":"29363"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"44029","_from":"29365","_to":"29363"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"44023","_from":"29364","_to":"29363"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"103082","_from":"29364","_to":"60637"} +{"$label":"ACTS_IN","name":"Alex Chance Browning","type":"Role","_key":"54494","_from":"29364","_to":"34931"} +{"$label":"ACTS_IN","name":"Scott Wormer","type":"Role","_key":"52687","_from":"29364","_to":"34207"} +{"$label":"DIRECTED","_key":"114623","_from":"29367","_to":"67521"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"44037","_from":"29370","_to":"29369"} +{"$label":"ACTS_IN","name":"Kind","type":"Role","_key":"44061","_from":"29385","_to":"29371"} +{"$label":"ACTS_IN","name":"Kind","type":"Role","_key":"44060","_from":"29384","_to":"29371"} +{"$label":"ACTS_IN","name":"Prof. Vesely","type":"Role","_key":"44058","_from":"29383","_to":"29371"} +{"$label":"ACTS_IN","name":"Barbara Schneider","type":"Role","_key":"44055","_from":"29382","_to":"29371"} +{"$label":"ACTS_IN","name":"Franziska Scharf","type":"Role","_key":"44054","_from":"29381","_to":"29371"} +{"$label":"ACTS_IN","name":"n.A.","type":"Role","_key":"44053","_from":"29380","_to":"29371"} +{"$label":"ACTS_IN","name":"n.A.","type":"Role","_key":"44052","_from":"29379","_to":"29371"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44051","_from":"29378","_to":"29371"} +{"$label":"ACTS_IN","name":"n.A.","type":"Role","_key":"44050","_from":"29377","_to":"29371"} +{"$label":"ACTS_IN","name":"Albrecht Wischala","type":"Role","_key":"44049","_from":"29376","_to":"29371"} +{"$label":"ACTS_IN","name":"\u00d6konom Endler","type":"Role","_key":"44047","_from":"29375","_to":"29371"} +{"$label":"ACTS_IN","name":"Renate Reese","type":"Role","_key":"44045","_from":"29374","_to":"29371"} +{"$label":"ACTS_IN","name":"Wanda Brenner","type":"Role","_key":"44044","_from":"29373","_to":"29371"} +{"$label":"ACTS_IN","name":"Daniel Brenner","type":"Role","_key":"44043","_from":"29372","_to":"29371"} +{"$label":"ACTS_IN","name":"BLG-Vorsitzender","type":"Role","_key":"45730","_from":"29375","_to":"30261"} +{"$label":"ACTS_IN","name":"Lady Chelford","type":"Role","_key":"44069","_from":"29387","_to":"29386"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"44084","_from":"29392","_to":"29388"} +{"$label":"ACTS_IN","name":"Taxi Fahrer Khaleel","type":"Role","_key":"44082","_from":"29391","_to":"29388"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"44081","_from":"29390","_to":"29388"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"44078","_from":"29389","_to":"29388"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"121397","_from":"29389","_to":"71336"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"115525","_from":"29389","_to":"68009"} +{"$label":"ACTS_IN","name":"Laurie Juspeczyk \/ Silk Spectre","type":"Role","_key":"93252","_from":"29389","_to":"54939"} +{"$label":"ACTS_IN","name":"Liane","type":"Role","_key":"68882","_from":"29389","_to":"42187"} +{"$label":"ACTS_IN","name":"Tara","type":"Role","_key":"60250","_from":"29389","_to":"38004"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"52204","_from":"29389","_to":"34014"} +{"$label":"ACTS_IN","name":"Ed Reese","type":"Role","_key":"49942","_from":"29390","_to":"32693"} +{"$label":"ACTS_IN","name":"Brian Powell","type":"Role","_key":"45824","_from":"29390","_to":"30306"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"90453","_from":"29392","_to":"53436"} +{"$label":"DIRECTED","_key":"44091","_from":"29398","_to":"29393"} +{"$label":"ACTS_IN","name":"Madison Osgood","type":"Role","_key":"44090","_from":"29397","_to":"29393"} +{"$label":"ACTS_IN","name":"Brooks","type":"Role","_key":"44089","_from":"29396","_to":"29393"} +{"$label":"ACTS_IN","name":"Heather Boyd","type":"Role","_key":"44088","_from":"29395","_to":"29393"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"44086","_from":"29394","_to":"29393"} +{"$label":"ACTS_IN","name":"Nicole Stone","type":"Role","_key":"120423","_from":"29397","_to":"70745"} +{"$label":"ACTS_IN","name":"Jordan Roark","type":"Role","_key":"99003","_from":"29397","_to":"58325"} +{"$label":"ACTS_IN","name":"Jennifer Tree","type":"Role","_key":"98578","_from":"29397","_to":"58095"} +{"$label":"ACTS_IN","name":"Darcie","type":"Role","_key":"71192","_from":"29397","_to":"43207"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"64325","_from":"29397","_to":"40093"} +{"$label":"ACTS_IN","name":"Venessa Parks","type":"Role","_key":"61924","_from":"29397","_to":"38966"} +{"$label":"ACTS_IN","name":"Carly Jones","type":"Role","_key":"60161","_from":"29397","_to":"37960"} +{"$label":"ACTS_IN","name":"Nina Deer","type":"Role","_key":"57029","_from":"29397","_to":"36185"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"44095","_from":"29402","_to":"29399"} +{"$label":"ACTS_IN","name":"Darlene Madison","type":"Role","_key":"44094","_from":"29401","_to":"29399"} +{"$label":"DIRECTED","_key":"44092","_from":"29400","_to":"29399"} +{"$label":"DIRECTED","_key":"111891","_from":"29400","_to":"66047"} +{"$label":"DIRECTED","_key":"107505","_from":"29400","_to":"63424"} +{"$label":"ACTS_IN","name":"Autograph Seeker","type":"Role","_key":"90284","_from":"29400","_to":"53368"} +{"$label":"DIRECTED","_key":"120989","_from":"29401","_to":"71049"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"120963","_from":"29401","_to":"71049"} +{"$label":"ACTS_IN","name":"Jen Stauber","type":"Role","_key":"93168","_from":"29401","_to":"54906"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"60252","_from":"29401","_to":"38004"} +{"$label":"ACTS_IN","name":"Katie Van Waldenberg","type":"Role","_key":"58500","_from":"29401","_to":"36974"} +{"$label":"ACTS_IN","name":"LEROY","type":"Role","_key":"116320","_from":"29402","_to":"68476"} +{"$label":"ACTS_IN","name":"Leon Phelps","type":"Role","_key":"110365","_from":"29402","_to":"65216"} +{"$label":"ACTS_IN","name":"Cornelius","type":"Role","_key":"93657","_from":"29402","_to":"55135"} +{"$label":"ACTS_IN","name":"Mr. Duvall","type":"Role","_key":"64682","_from":"29402","_to":"40287"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"58542","_from":"29402","_to":"36989"} +{"$label":"ACTS_IN","name":"Athletic Cone","type":"Role","_key":"55043","_from":"29402","_to":"35160"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"44100","_from":"29404","_to":"29403"} +{"$label":"DIRECTED","_key":"44104","_from":"29407","_to":"29405"} +{"$label":"ACTS_IN","name":"Patricia von Knesewitz","type":"Role","_key":"44102","_from":"29406","_to":"29405"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"62224","_from":"29406","_to":"39188"} +{"$label":"ACTS_IN","name":"Sina Lehmann","type":"Role","_key":"46808","_from":"29406","_to":"30882"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"46447","_from":"29406","_to":"30681"} +{"$label":"DIRECTED","_key":"44110","_from":"29412","_to":"29408"} +{"$label":"ACTS_IN","name":"Energievision\u00e4r Arbeit","type":"Role","_key":"44109","_from":"29411","_to":"29408"} +{"$label":"ACTS_IN","name":"Blinde Seherin \/ Abgeordnete","type":"Role","_key":"44108","_from":"29410","_to":"29408"} +{"$label":"ACTS_IN","name":"Energievision\u00e4r Umwelt \/ Choreograph","type":"Role","_key":"44107","_from":"29409","_to":"29408"} +{"$label":"ACTS_IN","name":"Reimann","type":"Role","_key":"44115","_from":"29414","_to":"29413"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44125","_from":"29419","_to":"29415"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"44121","_from":"29418","_to":"29415"} +{"$label":"DIRECTED","_key":"44118","_from":"29417","_to":"29415"} +{"$label":"DIRECTED","_key":"44117","_from":"29416","_to":"29415"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"44141","_from":"29427","_to":"29420"} +{"$label":"ACTS_IN","name":"Nachtw\u00e4chter","type":"Role","_key":"44139","_from":"29426","_to":"29420"} +{"$label":"ACTS_IN","name":"Donovan","type":"Role","_key":"44138","_from":"29425","_to":"29420"} +{"$label":"ACTS_IN","name":"Betrunkender","type":"Role","_key":"44137","_from":"29424","_to":"29420"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"44136","_from":"29423","_to":"29420"} +{"$label":"ACTS_IN","name":"Sergeant Frank","type":"Role","_key":"44135","_from":"29422","_to":"29420"} +{"$label":"ACTS_IN","name":"Big Willy","type":"Role","_key":"44134","_from":"29421","_to":"29420"} +{"$label":"ACTS_IN","name":"Paul DuBois","type":"Role","_key":"44157","_from":"29436","_to":"29428"} +{"$label":"ACTS_IN","name":"Marthe DuBois","type":"Role","_key":"44156","_from":"29435","_to":"29428"} +{"$label":"ACTS_IN","name":"Gov. William Clayton","type":"Role","_key":"44152","_from":"29434","_to":"29428"} +{"$label":"ACTS_IN","name":"Jeanne Dubois","type":"Role","_key":"44150","_from":"29433","_to":"29428"} +{"$label":"ACTS_IN","name":"Cam Bleeker","type":"Role","_key":"44149","_from":"29432","_to":"29428"} +{"$label":"ACTS_IN","name":"Luke Darcy","type":"Role","_key":"44148","_from":"29431","_to":"29428"} +{"$label":"DIRECTED","_key":"44147","_from":"29430","_to":"29428"} +{"$label":"DIRECTED","_key":"44146","_from":"29429","_to":"29428"} +{"$label":"DIRECTED","_key":"119285","_from":"29430","_to":"70080"} +{"$label":"DIRECTED","_key":"72298","_from":"29430","_to":"43672"} +{"$label":"ACTS_IN","name":"johnathan dartland","type":"Role","_key":"61836","_from":"29431","_to":"38927"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71982","_from":"29433","_to":"43534"} +{"$label":"ACTS_IN","name":"Dorffotograf","type":"Role","_key":"44186","_from":"29454","_to":"29437"} +{"$label":"ACTS_IN","name":"Chauffeur","type":"Role","_key":"44185","_from":"29453","_to":"29437"} +{"$label":"ACTS_IN","name":"Polizeihauptmann","type":"Role","_key":"44184","_from":"29452","_to":"29437"} +{"$label":"ACTS_IN","name":"Dienstm\u00e4dchen","type":"Role","_key":"44183","_from":"29451","_to":"29437"} +{"$label":"ACTS_IN","name":"Ministinguette","type":"Role","_key":"44182","_from":"29450","_to":"29437"} +{"$label":"ACTS_IN","name":"Presseattache","type":"Role","_key":"44181","_from":"29449","_to":"29437"} +{"$label":"ACTS_IN","name":"Amtsgerichtsrat","type":"Role","_key":"44180","_from":"29448","_to":"29437"} +{"$label":"ACTS_IN","name":"Rektor","type":"Role","_key":"44179","_from":"29447","_to":"29437"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister im Quartier Latin","type":"Role","_key":"44177","_from":"29446","_to":"29437"} +{"$label":"ACTS_IN","name":"Landpolizist","type":"Role","_key":"44176","_from":"29445","_to":"29437"} +{"$label":"ACTS_IN","name":"Justizwachmeister","type":"Role","_key":"44175","_from":"29444","_to":"29437"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister in Berlin","type":"Role","_key":"44174","_from":"29443","_to":"29437"} +{"$label":"ACTS_IN","name":"Amtsarzt","type":"Role","_key":"44170","_from":"29442","_to":"29437"} +{"$label":"ACTS_IN","name":"Otto Vietzke","type":"Role","_key":"44169","_from":"29441","_to":"29437"} +{"$label":"ACTS_IN","name":"Otto Kroppke","type":"Role","_key":"44167","_from":"29440","_to":"29437"} +{"$label":"ACTS_IN","name":"Mahrenholz","type":"Role","_key":"44166","_from":"29439","_to":"29437"} +{"$label":"DIRECTED","_key":"44158","_from":"29438","_to":"29437"} +{"$label":"ACTS_IN","name":"Peter Munk","type":"Role","_key":"92604","_from":"29440","_to":"54659"} +{"$label":"ACTS_IN","name":"Ratte, der Kriegsknecht","type":"Role","_key":"93228","_from":"29453","_to":"54923"} +{"$label":"ACTS_IN","name":"Zeremonienmeister","type":"Role","_key":"89875","_from":"29454","_to":"53173"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44607","_from":"29454","_to":"29680"} +{"$label":"ACTS_IN","name":"Prillinger","type":"Role","_key":"44216","_from":"29454","_to":"29461"} +{"$label":"ACTS_IN","name":"kleiner Junge","type":"Role","_key":"44198","_from":"29460","_to":"29455"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"44197","_from":"29459","_to":"29455"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"44196","_from":"29458","_to":"29455"} +{"$label":"ACTS_IN","name":"Sicherheitsdienst","type":"Role","_key":"44195","_from":"29457","_to":"29455"} +{"$label":"ACTS_IN","name":"Jack Unger","type":"Role","_key":"44193","_from":"29456","_to":"29455"} +{"$label":"ACTS_IN","name":"Nicky Gazelle","type":"Role","_key":"46396","_from":"29456","_to":"30650"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"44215","_from":"29469","_to":"29461"} +{"$label":"ACTS_IN","name":"Herr Borchert","type":"Role","_key":"44212","_from":"29468","_to":"29461"} +{"$label":"ACTS_IN","name":"Kudde","type":"Role","_key":"44211","_from":"29467","_to":"29461"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"44210","_from":"29466","_to":"29461"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"44209","_from":"29465","_to":"29461"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"44208","_from":"29464","_to":"29461"} +{"$label":"ACTS_IN","name":"Frau Borchert","type":"Role","_key":"44206","_from":"29463","_to":"29461"} +{"$label":"DIRECTED","_key":"44201","_from":"29462","_to":"29461"} +{"$label":"ACTS_IN","name":"Helen Edmonds","type":"Role","_key":"44229","_from":"29475","_to":"29470"} +{"$label":"ACTS_IN","name":"Janet Bryant","type":"Role","_key":"44228","_from":"29474","_to":"29470"} +{"$label":"ACTS_IN","name":"Brenda Pilchard","type":"Role","_key":"44226","_from":"29473","_to":"29470"} +{"$label":"ACTS_IN","name":"Elizabeth Seccles","type":"Role","_key":"44223","_from":"29472","_to":"29470"} +{"$label":"DIRECTED","_key":"44219","_from":"29471","_to":"29470"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"45739","_from":"29473","_to":"30264"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44244","_from":"29482","_to":"29476"} +{"$label":"ACTS_IN","name":"Monika","type":"Role","_key":"44242","_from":"29481","_to":"29476"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin Manuela","type":"Role","_key":"44239","_from":"29480","_to":"29476"} +{"$label":"ACTS_IN","name":"Ignaz","type":"Role","_key":"44238","_from":"29479","_to":"29476"} +{"$label":"ACTS_IN","name":"Schlagers\u00e4nger","type":"Role","_key":"44236","_from":"29478","_to":"29476"} +{"$label":"ACTS_IN","name":"Sieglinde","type":"Role","_key":"44235","_from":"29477","_to":"29476"} +{"$label":"ACTS_IN","name":"Dr. Asimov","type":"Role","_key":"44253","_from":"29491","_to":"29483"} +{"$label":"ACTS_IN","name":"General Hyodo","type":"Role","_key":"44252","_from":"29490","_to":"29483"} +{"$label":"ACTS_IN","name":"Comm. Takaki Aso","type":"Role","_key":"44251","_from":"29489","_to":"29483"} +{"$label":"ACTS_IN","name":"Prof. Omae","type":"Role","_key":"44250","_from":"29488","_to":"29483"} +{"$label":"ACTS_IN","name":"Miki Saegusa","type":"Role","_key":"44249","_from":"29487","_to":"29483"} +{"$label":"ACTS_IN","name":"Azusa Gojo","type":"Role","_key":"44248","_from":"29486","_to":"29483"} +{"$label":"ACTS_IN","name":"Kazuma Aoki","type":"Role","_key":"44247","_from":"29485","_to":"29483"} +{"$label":"DIRECTED","_key":"44246","_from":"29484","_to":"29483"} +{"$label":"DIRECTED","_key":"90297","_from":"29484","_to":"53374"} +{"$label":"DIRECTED","_key":"64799","_from":"29484","_to":"40316"} +{"$label":"ACTS_IN","name":"Brooklyn","type":"Role","_key":"49567","_from":"29485","_to":"32456"} +{"$label":"ACTS_IN","name":"Miki Saegusa","type":"Role","_key":"115685","_from":"29487","_to":"68098"} +{"$label":"ACTS_IN","name":"Miki Saegusa","type":"Role","_key":"90293","_from":"29487","_to":"53374"} +{"$label":"ACTS_IN","name":"Commander Takaki Aso","type":"Role","_key":"90296","_from":"29489","_to":"53374"} +{"$label":"ACTS_IN","name":"General Hyodo","type":"Role","_key":"115693","_from":"29490","_to":"68098"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"44266","_from":"29500","_to":"29492"} +{"$label":"ACTS_IN","name":"Doris Daniels","type":"Role","_key":"44265","_from":"29499","_to":"29492"} +{"$label":"ACTS_IN","name":"Detec. Flynn","type":"Role","_key":"44264","_from":"29498","_to":"29492"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"44263","_from":"29497","_to":"29492"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44262","_from":"29496","_to":"29492"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44261","_from":"29495","_to":"29492"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44260","_from":"29494","_to":"29492"} +{"$label":"ACTS_IN","name":"Derek Lidor","type":"Role","_key":"44257","_from":"29493","_to":"29492"} +{"$label":"ACTS_IN","name":"Raymond Miles","type":"Role","_key":"107194","_from":"29493","_to":"63224"} +{"$label":"ACTS_IN","name":"Bill Owens","type":"Role","_key":"62418","_from":"29493","_to":"39323"} +{"$label":"ACTS_IN","name":"Graphikerin","type":"Role","_key":"44274","_from":"29508","_to":"29501"} +{"$label":"ACTS_IN","name":"Tagesschausprecher","type":"Role","_key":"44273","_from":"29507","_to":"29501"} +{"$label":"ACTS_IN","name":"Werbekunde","type":"Role","_key":"44272","_from":"29506","_to":"29501"} +{"$label":"ACTS_IN","name":"Frau Hartmann-Hartmann","type":"Role","_key":"44271","_from":"29505","_to":"29501"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"44270","_from":"29504","_to":"29501"} +{"$label":"ACTS_IN","name":"Ariela","type":"Role","_key":"44269","_from":"29503","_to":"29501"} +{"$label":"DIRECTED","_key":"44267","_from":"29502","_to":"29501"} +{"$label":"ACTS_IN","name":"Dokter","type":"Role","_key":"44284","_from":"29516","_to":"29509"} +{"$label":"ACTS_IN","name":"Sam Shannon","type":"Role","_key":"44283","_from":"29515","_to":"29509"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"44282","_from":"29514","_to":"29509"} +{"$label":"ACTS_IN","name":"The Witch","type":"Role","_key":"44281","_from":"29513","_to":"29509"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"44279","_from":"29512","_to":"29509"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"44278","_from":"29511","_to":"29509"} +{"$label":"DIRECTED","_key":"44275","_from":"29510","_to":"29509"} +{"$label":"ACTS_IN","name":"Paola Menard","type":"Role","_key":"45993","_from":"29511","_to":"30401"} +{"$label":"DIRECTED","_key":"67859","_from":"29515","_to":"41695"} +{"$label":"ACTS_IN","name":"Wache","type":"Role","_key":"49706","_from":"29515","_to":"32523"} +{"$label":"ACTS_IN","name":"Ben Sterner","type":"Role","_key":"44299","_from":"29524","_to":"29517"} +{"$label":"ACTS_IN","name":"General Marcos Castro","type":"Role","_key":"44297","_from":"29523","_to":"29517"} +{"$label":"ACTS_IN","name":"Pancho Gill","type":"Role","_key":"44296","_from":"29522","_to":"29517"} +{"$label":"ACTS_IN","name":"Santiago Santos","type":"Role","_key":"44295","_from":"29521","_to":"29517"} +{"$label":"ACTS_IN","name":"Sgt. Sutton","type":"Role","_key":"44294","_from":"29520","_to":"29517"} +{"$label":"ACTS_IN","name":"Helen Colton","type":"Role","_key":"44289","_from":"29519","_to":"29517"} +{"$label":"DIRECTED","_key":"44287","_from":"29518","_to":"29517"} +{"$label":"DIRECTED","_key":"88686","_from":"29518","_to":"52552"} +{"$label":"ACTS_IN","name":"Billie Ellis","type":"Role","_key":"101404","_from":"29519","_to":"59696"} +{"$label":"ACTS_IN","name":"Doreen Stockwell","type":"Role","_key":"46121","_from":"29519","_to":"30473"} +{"$label":"ACTS_IN","name":"Louis Ciavelli","type":"Role","_key":"110623","_from":"29521","_to":"65354"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"44311","_from":"29534","_to":"29525"} +{"$label":"ACTS_IN","name":"King Dagobert","type":"Role","_key":"44310","_from":"29533","_to":"29525"} +{"$label":"ACTS_IN","name":"Wilfreds Henchman","type":"Role","_key":"44309","_from":"29532","_to":"29525"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44308","_from":"29531","_to":"29525"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44307","_from":"29530","_to":"29525"} +{"$label":"ACTS_IN","name":"Dag","type":"Role","_key":"44306","_from":"29529","_to":"29525"} +{"$label":"ACTS_IN","name":"Queen Patricia","type":"Role","_key":"44305","_from":"29528","_to":"29525"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"44303","_from":"29527","_to":"29525"} +{"$label":"DIRECTED","_key":"44300","_from":"29526","_to":"29525"} +{"$label":"ACTS_IN","name":"Callimaco","type":"Role","_key":"117153","_from":"29527","_to":"68924"} +{"$label":"ACTS_IN","name":"Sabata","type":"Role","_key":"48284","_from":"29529","_to":"31709"} +{"$label":"ACTS_IN","name":"Mrs. Schindler","type":"Role","_key":"44325","_from":"29542","_to":"29535"} +{"$label":"ACTS_IN","name":"Mr. Shaw","type":"Role","_key":"44324","_from":"29541","_to":"29535"} +{"$label":"ACTS_IN","name":"Mr. Hofstedter","type":"Role","_key":"44323","_from":"29540","_to":"29535"} +{"$label":"ACTS_IN","name":"Mrs. Gruner","type":"Role","_key":"44322","_from":"29539","_to":"29535"} +{"$label":"ACTS_IN","name":"Reverend Bock","type":"Role","_key":"44321","_from":"29538","_to":"29535"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"44319","_from":"29537","_to":"29535"} +{"$label":"DIRECTED","_key":"44314","_from":"29536","_to":"29535"} +{"$label":"DIRECTED","_key":"93636","_from":"29536","_to":"55125"} +{"$label":"ACTS_IN","name":"Lucy Gallagher","type":"Role","_key":"62762","_from":"29539","_to":"39453"} +{"$label":"ACTS_IN","name":"Franny","type":"Role","_key":"45232","_from":"29539","_to":"30022"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44333","_from":"29548","_to":"29543"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"44332","_from":"29547","_to":"29543"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"44331","_from":"29546","_to":"29543"} +{"$label":"ACTS_IN","name":"Errol Robinson","type":"Role","_key":"44330","_from":"29545","_to":"29543"} +{"$label":"ACTS_IN","name":"Nike","type":"Role","_key":"44329","_from":"29544","_to":"29543"} +{"$label":"ACTS_IN","name":"Tadzio","type":"Role","_key":"44340","_from":"29550","_to":"29549"} +{"$label":"ACTS_IN","name":"Maude Larrabee","type":"Role","_key":"44356","_from":"29556","_to":"29551"} +{"$label":"ACTS_IN","name":"Mr. Tyson","type":"Role","_key":"44354","_from":"29555","_to":"29551"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"44353","_from":"29554","_to":"29551"} +{"$label":"ACTS_IN","name":"Gretchen Van Horn","type":"Role","_key":"44350","_from":"29553","_to":"29551"} +{"$label":"ACTS_IN","name":"Oliver Larrabee","type":"Role","_key":"44348","_from":"29552","_to":"29551"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"70127","_from":"29554","_to":"42747"} +{"$label":"ACTS_IN","name":"Michael Gruber","type":"Role","_key":"44365","_from":"29563","_to":"29557"} +{"$label":"ACTS_IN","name":"Gerda Strohmetz","type":"Role","_key":"44364","_from":"29562","_to":"29557"} +{"$label":"ACTS_IN","name":"Rita Adranski","type":"Role","_key":"44363","_from":"29561","_to":"29557"} +{"$label":"ACTS_IN","name":"Stefan Vorbrugg","type":"Role","_key":"44362","_from":"29560","_to":"29557"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"44358","_from":"29559","_to":"29557"} +{"$label":"DIRECTED","_key":"44357","_from":"29558","_to":"29557"} +{"$label":"ACTS_IN","name":"Marlene Engel","type":"Role","_key":"71885","_from":"29562","_to":"43491"} +{"$label":"DIRECTED","_key":"44371","_from":"29566","_to":"29564"} +{"$label":"DIRECTED","_key":"44370","_from":"29565","_to":"29564"} +{"$label":"DIRECTED","_key":"102623","_from":"29565","_to":"60382"} +{"$label":"DIRECTED","_key":"64819","_from":"29565","_to":"40327"} +{"$label":"DIRECTED","_key":"50334","_from":"29565","_to":"32880"} +{"$label":"DIRECTED","_key":"118998","_from":"29566","_to":"69944"} +{"$label":"ACTS_IN","name":"Hans Wolgast","type":"Role","_key":"44384","_from":"29571","_to":"29567"} +{"$label":"ACTS_IN","name":"Felix Glauber","type":"Role","_key":"44383","_from":"29570","_to":"29567"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44380","_from":"29569","_to":"29567"} +{"$label":"ACTS_IN","name":"Veith Seewald","type":"Role","_key":"44377","_from":"29568","_to":"29567"} +{"$label":"ACTS_IN","name":"Helmut Schmidt","type":"Role","_key":"69016","_from":"29568","_to":"42247"} +{"$label":"ACTS_IN","name":"Nettie's father","type":"Role","_key":"59223","_from":"29568","_to":"37399"} +{"$label":"ACTS_IN","name":"Mosk","type":"Role","_key":"66598","_from":"29569","_to":"41171"} +{"$label":"ACTS_IN","name":"Veith von F\u00fcrstenberg","type":"Role","_key":"44410","_from":"29589","_to":"29572"} +{"$label":"ACTS_IN","name":"Luggi Waldleitner","type":"Role","_key":"44408","_from":"29588","_to":"29572"} +{"$label":"ACTS_IN","name":"Dan Talbot","type":"Role","_key":"44407","_from":"29587","_to":"29572"} +{"$label":"ACTS_IN","name":"Peter Sickert","type":"Role","_key":"44405","_from":"29586","_to":"29572"} +{"$label":"ACTS_IN","name":"Thomas Schamoni","type":"Role","_key":"44404","_from":"29585","_to":"29572"} +{"$label":"ACTS_IN","name":"Hans Noever","type":"Role","_key":"44403","_from":"29584","_to":"29572"} +{"$label":"ACTS_IN","name":"Lynda Myles","type":"Role","_key":"44402","_from":"29583","_to":"29572"} +{"$label":"ACTS_IN","name":"Margaret M\u00e9n\u00e9goz","type":"Role","_key":"44401","_from":"29582","_to":"29572"} +{"$label":"ACTS_IN","name":"Tom Luddy","type":"Role","_key":"44400","_from":"29581","_to":"29572"} +{"$label":"ACTS_IN","name":"Peter Lilienthal","type":"Role","_key":"44399","_from":"29580","_to":"29572"} +{"$label":"ACTS_IN","name":"Alexander Kluge","type":"Role","_key":"44398","_from":"29579","_to":"29572"} +{"$label":"ACTS_IN","name":"Peter Handke","type":"Role","_key":"44395","_from":"29578","_to":"29572"} +{"$label":"ACTS_IN","name":"Michael Fengler","type":"Role","_key":"44393","_from":"29577","_to":"29572"} +{"$label":"ACTS_IN","name":"Uwe Brandner","type":"Role","_key":"44391","_from":"29576","_to":"29572"} +{"$label":"ACTS_IN","name":"Rudolf Augstein","type":"Role","_key":"44388","_from":"29575","_to":"29572"} +{"$label":"DIRECTED","_key":"44386","_from":"29574","_to":"29572"} +{"$label":"DIRECTED","_key":"44385","_from":"29573","_to":"29572"} +{"$label":"DIRECTED","_key":"68581","_from":"29573","_to":"42042"} +{"$label":"DIRECTED","_key":"62508","_from":"29577","_to":"39360"} +{"$label":"DIRECTED","_key":"90401","_from":"29579","_to":"53412"} +{"$label":"ACTS_IN","name":"Marcangelo","type":"Role","_key":"68636","_from":"29580","_to":"42069"} +{"$label":"DIRECTED","_key":"65937","_from":"29580","_to":"40790"} +{"$label":"ACTS_IN","name":"Lore Hartmann","type":"Role","_key":"44423","_from":"29597","_to":"29590"} +{"$label":"ACTS_IN","name":"Berthold M\u00fcller","type":"Role","_key":"44422","_from":"29596","_to":"29590"} +{"$label":"ACTS_IN","name":"Christel Hartmann","type":"Role","_key":"44419","_from":"29595","_to":"29590"} +{"$label":"ACTS_IN","name":"Ferdinand Pohl","type":"Role","_key":"44418","_from":"29594","_to":"29590"} +{"$label":"ACTS_IN","name":"Ludwig Steiner","type":"Role","_key":"44415","_from":"29593","_to":"29590"} +{"$label":"ACTS_IN","name":"Robert Hellmich","type":"Role","_key":"44414","_from":"29592","_to":"29590"} +{"$label":"ACTS_IN","name":"Mutter Hellmich","type":"Role","_key":"44412","_from":"29591","_to":"29590"} +{"$label":"ACTS_IN","name":"Ezechiel","type":"Role","_key":"92598","_from":"29593","_to":"54659"} +{"$label":"ACTS_IN","name":"Blom","type":"Role","_key":"88007","_from":"29593","_to":"52247"} +{"$label":"ACTS_IN","name":"Herr Kaiser","type":"Role","_key":"71537","_from":"29593","_to":"43345"} +{"$label":"ACTS_IN","name":"Motzmann","type":"Role","_key":"45361","_from":"29593","_to":"30082"} +{"$label":"ACTS_IN","name":"Corporal","type":"Role","_key":"45112","_from":"29593","_to":"29943"} +{"$label":"ACTS_IN","name":"Friseur","type":"Role","_key":"46058","_from":"29594","_to":"30425"} +{"$label":"ACTS_IN","name":"Lotte Wendel","type":"Role","_key":"45413","_from":"29595","_to":"30098"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"67846","_from":"29596","_to":"41691"} +{"$label":"ACTS_IN","name":"J\u00f6rg Strasser","type":"Role","_key":"44761","_from":"29596","_to":"29778"} +{"$label":"ACTS_IN","name":"Dr. Richard Moebius","type":"Role","_key":"44441","_from":"29596","_to":"29606"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44435","_from":"29605","_to":"29598"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44434","_from":"29604","_to":"29598"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44433","_from":"29603","_to":"29598"} +{"$label":"ACTS_IN","name":"Frau Schr\u00f6der","type":"Role","_key":"44431","_from":"29602","_to":"29598"} +{"$label":"ACTS_IN","name":"Hans Brandtner","type":"Role","_key":"44429","_from":"29601","_to":"29598"} +{"$label":"ACTS_IN","name":"Christine Schr\u00f6der","type":"Role","_key":"44427","_from":"29600","_to":"29598"} +{"$label":"DIRECTED","_key":"44426","_from":"29599","_to":"29598"} +{"$label":"ACTS_IN","name":"Frau Elise","type":"Role","_key":"45409","_from":"29603","_to":"30098"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44454","_from":"29616","_to":"29606"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44453","_from":"29615","_to":"29606"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"44451","_from":"29614","_to":"29606"} +{"$label":"ACTS_IN","name":"Tante Katie","type":"Role","_key":"44450","_from":"29613","_to":"29606"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"44447","_from":"29612","_to":"29606"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"44446","_from":"29611","_to":"29606"} +{"$label":"ACTS_IN","name":"Lili Jonas","type":"Role","_key":"44444","_from":"29610","_to":"29606"} +{"$label":"ACTS_IN","name":"Ulla","type":"Role","_key":"44442","_from":"29609","_to":"29606"} +{"$label":"ACTS_IN","name":"Gaby Marshall","type":"Role","_key":"44438","_from":"29608","_to":"29606"} +{"$label":"DIRECTED","_key":"44436","_from":"29607","_to":"29606"} +{"$label":"DIRECTED","_key":"46045","_from":"29607","_to":"30425"} +{"$label":"ACTS_IN","name":"Betje Ackerboom","type":"Role","_key":"90724","_from":"29608","_to":"53551"} +{"$label":"ACTS_IN","name":"Karin Scherzer","type":"Role","_key":"45082","_from":"29608","_to":"29936"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44904","_from":"29610","_to":"29857"} +{"$label":"ACTS_IN","name":"Obstverk\u00e4ufer","type":"Role","_key":"45076","_from":"29612","_to":"29929"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"45023","_from":"29612","_to":"29913"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44466","_from":"29625","_to":"29617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44465","_from":"29624","_to":"29617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44464","_from":"29623","_to":"29617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44462","_from":"29622","_to":"29617"} +{"$label":"ACTS_IN","name":"Soldat Franz","type":"Role","_key":"44460","_from":"29621","_to":"29617"} +{"$label":"ACTS_IN","name":"Soldat Claus","type":"Role","_key":"44459","_from":"29620","_to":"29617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44458","_from":"29619","_to":"29617"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44457","_from":"29618","_to":"29617"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Oberkogler","type":"Role","_key":"91712","_from":"29621","_to":"54103"} +{"$label":"ACTS_IN","name":"der Graue K\u00f6hler","type":"Role","_key":"93239","_from":"29622","_to":"54923"} +{"$label":"ACTS_IN","name":"Ali der Schuhputzer","type":"Role","_key":"44481","_from":"29632","_to":"29626"} +{"$label":"ACTS_IN","name":"Hieronymus Walden","type":"Role","_key":"44480","_from":"29631","_to":"29626"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"44479","_from":"29630","_to":"29626"} +{"$label":"ACTS_IN","name":"Xylander","type":"Role","_key":"44476","_from":"29629","_to":"29626"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"44474","_from":"29628","_to":"29626"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"44473","_from":"29627","_to":"29626"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"44488","_from":"29640","_to":"29633"} +{"$label":"ACTS_IN","name":"Mesera","type":"Role","_key":"44487","_from":"29639","_to":"29633"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"44486","_from":"29638","_to":"29633"} +{"$label":"ACTS_IN","name":"Ramos","type":"Role","_key":"44485","_from":"29637","_to":"29633"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"44484","_from":"29636","_to":"29633"} +{"$label":"ACTS_IN","name":"unknown","type":"Role","_key":"44483","_from":"29635","_to":"29633"} +{"$label":"DIRECTED","_key":"44482","_from":"29634","_to":"29633"} +{"$label":"ACTS_IN","name":"Guti\u00e9rrez","type":"Role","_key":"62410","_from":"29635","_to":"39317"} +{"$label":"ACTS_IN","name":"Marcelo","type":"Role","_key":"51369","_from":"29635","_to":"33494"} +{"$label":"ACTS_IN","name":"Junge Witwe","type":"Role","_key":"44514","_from":"29645","_to":"29642"} +{"$label":"ACTS_IN","name":"America Vicuna","type":"Role","_key":"44513","_from":"29644","_to":"29642"} +{"$label":"ACTS_IN","name":"junger Florentino","type":"Role","_key":"44503","_from":"29643","_to":"29642"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"65934","_from":"29643","_to":"40785"} +{"$label":"ACTS_IN","name":"La colombiana","type":"Role","_key":"121239","_from":"29645","_to":"71217"} +{"$label":"DIRECTED","_key":"44529","_from":"29652","_to":"29646"} +{"$label":"ACTS_IN","name":"James Wildstone","type":"Role","_key":"44528","_from":"29651","_to":"29646"} +{"$label":"ACTS_IN","name":"David Williams","type":"Role","_key":"44525","_from":"29650","_to":"29646"} +{"$label":"ACTS_IN","name":"Felicity Wentworth","type":"Role","_key":"44521","_from":"29649","_to":"29646"} +{"$label":"ACTS_IN","name":"Tallulah Wentworth","type":"Role","_key":"44519","_from":"29648","_to":"29646"} +{"$label":"ACTS_IN","name":"Paolo Sarmiento","type":"Role","_key":"44518","_from":"29647","_to":"29646"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"57262","_from":"29647","_to":"36317"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"116659","_from":"29648","_to":"68665"} +{"$label":"ACTS_IN","name":"Capitaine Worriss","type":"Role","_key":"100660","_from":"29651","_to":"59349"} +{"$label":"DIRECTED","_key":"108530","_from":"29652","_to":"64146"} +{"$label":"DIRECTED","_key":"61416","_from":"29652","_to":"38738"} +{"$label":"ACTS_IN","name":"Lost Bird","type":"Role","_key":"44542","_from":"29658","_to":"29653"} +{"$label":"ACTS_IN","name":"Andy Zachary","type":"Role","_key":"44541","_from":"29657","_to":"29653"} +{"$label":"ACTS_IN","name":"Jude Rawlins","type":"Role","_key":"44540","_from":"29656","_to":"29653"} +{"$label":"ACTS_IN","name":"Hagar Rawlins","type":"Role","_key":"44538","_from":"29655","_to":"29653"} +{"$label":"ACTS_IN","name":"Cash Zachary","type":"Role","_key":"44533","_from":"29654","_to":"29653"} +{"$label":"ACTS_IN","name":"Audie Murphy","type":"Role","_key":"109364","_from":"29654","_to":"64613"} +{"$label":"ACTS_IN","name":"Mark Arveson","type":"Role","_key":"116741","_from":"29657","_to":"68714"} +{"$label":"ACTS_IN","name":"The Slapper","type":"Role","_key":"72939","_from":"29657","_to":"43910"} +{"$label":"ACTS_IN","name":"Lun Tha","type":"Role","_key":"109388","_from":"29658","_to":"64625"} +{"$label":"ACTS_IN","name":"Luke MacDonald","type":"Role","_key":"44558","_from":"29665","_to":"29659"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"44557","_from":"29664","_to":"29659"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"44555","_from":"29663","_to":"29659"} +{"$label":"ACTS_IN","name":"Josephine MacDonald","type":"Role","_key":"44551","_from":"29662","_to":"29659"} +{"$label":"ACTS_IN","name":"Bull Harris","type":"Role","_key":"44550","_from":"29661","_to":"29659"} +{"$label":"ACTS_IN","name":"Maudie","type":"Role","_key":"44548","_from":"29660","_to":"29659"} +{"$label":"ACTS_IN","name":"Bernice \/ Betty \/ Suzie \/ Alice","type":"Role","_key":"117107","_from":"29662","_to":"68905"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44572","_from":"29670","_to":"29666"} +{"$label":"ACTS_IN","name":"Gerichtsvollzieher","type":"Role","_key":"44570","_from":"29669","_to":"29666"} +{"$label":"ACTS_IN","name":"W\u00fcrschich","type":"Role","_key":"44569","_from":"29668","_to":"29666"} +{"$label":"ACTS_IN","name":"Viktor Keller","type":"Role","_key":"44562","_from":"29667","_to":"29666"} +{"$label":"DIRECTED","_key":"44577","_from":"29675","_to":"29671"} +{"$label":"ACTS_IN","name":"Squire Trelawney","type":"Role","_key":"44576","_from":"29674","_to":"29671"} +{"$label":"ACTS_IN","name":"Captain Smollett","type":"Role","_key":"44575","_from":"29673","_to":"29671"} +{"$label":"ACTS_IN","name":"Jim Hawkins","type":"Role","_key":"44573","_from":"29672","_to":"29671"} +{"$label":"ACTS_IN","name":"Peter Pan","type":"Role","_key":"65090","_from":"29672","_to":"40438"} +{"$label":"DIRECTED","_key":"51782","_from":"29675","_to":"33785"} +{"$label":"DIRECTED","_key":"46585","_from":"29675","_to":"30776"} +{"$label":"ACTS_IN","name":"Christine Ganiew","type":"Role","_key":"44590","_from":"29679","_to":"29676"} +{"$label":"ACTS_IN","name":"Rittmeister Gustl von Sch\u00f6ndorn","type":"Role","_key":"44585","_from":"29678","_to":"29676"} +{"$label":"ACTS_IN","name":"Susi Lindinger","type":"Role","_key":"44583","_from":"29677","_to":"29676"} +{"$label":"ACTS_IN","name":"Ella Bennet","type":"Role","_key":"44800","_from":"29679","_to":"29804"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44609","_from":"29690","_to":"29680"} +{"$label":"ACTS_IN","name":"Ertl","type":"Role","_key":"44606","_from":"29689","_to":"29680"} +{"$label":"ACTS_IN","name":"T\u00fcnnes","type":"Role","_key":"44603","_from":"29688","_to":"29680"} +{"$label":"ACTS_IN","name":"Nachtigall","type":"Role","_key":"44602","_from":"29687","_to":"29680"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"44599","_from":"29686","_to":"29680"} +{"$label":"ACTS_IN","name":"Kati Ertl","type":"Role","_key":"44598","_from":"29685","_to":"29680"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"44597","_from":"29684","_to":"29680"} +{"$label":"ACTS_IN","name":"Weber","type":"Role","_key":"44596","_from":"29683","_to":"29680"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"44594","_from":"29682","_to":"29680"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"44593","_from":"29681","_to":"29680"} +{"$label":"ACTS_IN","name":"Herzk\u00f6nigin (Stimme)","type":"Role","_key":"87979","_from":"29684","_to":"52236"} +{"$label":"ACTS_IN","name":"Frau K\u00fchn","type":"Role","_key":"45532","_from":"29684","_to":"30151"} +{"$label":"ACTS_IN","name":"Frau Moeslein","type":"Role","_key":"45528","_from":"29690","_to":"30151"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44626","_from":"29700","_to":"29691"} +{"$label":"ACTS_IN","name":"Kuhhirtin","type":"Role","_key":"44623","_from":"29699","_to":"29691"} +{"$label":"ACTS_IN","name":"Zenzi","type":"Role","_key":"44622","_from":"29698","_to":"29691"} +{"$label":"ACTS_IN","name":"Prof. Solo","type":"Role","_key":"44621","_from":"29697","_to":"29691"} +{"$label":"ACTS_IN","name":"Lois","type":"Role","_key":"44620","_from":"29696","_to":"29691"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44619","_from":"29695","_to":"29691"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44618","_from":"29694","_to":"29691"} +{"$label":"ACTS_IN","name":"Heiner","type":"Role","_key":"44615","_from":"29693","_to":"29691"} +{"$label":"ACTS_IN","name":"Tino","type":"Role","_key":"44614","_from":"29692","_to":"29691"} +{"$label":"ACTS_IN","name":"Kathrin","type":"Role","_key":"44637","_from":"29705","_to":"29701"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"44636","_from":"29704","_to":"29701"} +{"$label":"ACTS_IN","name":"Mr. Blacky White","type":"Role","_key":"44632","_from":"29703","_to":"29701"} +{"$label":"ACTS_IN","name":"Prof. Thiemann","type":"Role","_key":"44631","_from":"29702","_to":"29701"} +{"$label":"ACTS_IN","name":"Untersuchungsrichter","type":"Role","_key":"44653","_from":"29702","_to":"29707"} +{"$label":"ACTS_IN","name":"Harry Lime","type":"Role","_key":"44801","_from":"29703","_to":"29804"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44658","_from":"29715","_to":"29707"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44657","_from":"29714","_to":"29707"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44656","_from":"29713","_to":"29707"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44655","_from":"29712","_to":"29707"} +{"$label":"ACTS_IN","name":"Dori","type":"Role","_key":"44651","_from":"29711","_to":"29707"} +{"$label":"ACTS_IN","name":"Pepperl","type":"Role","_key":"44649","_from":"29710","_to":"29707"} +{"$label":"ACTS_IN","name":"Mariann ( Finkenb\u00e4uerin )","type":"Role","_key":"44648","_from":"29709","_to":"29707"} +{"$label":"DIRECTED","_key":"44645","_from":"29708","_to":"29707"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44675","_from":"29725","_to":"29716"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44672","_from":"29724","_to":"29716"} +{"$label":"ACTS_IN","name":"Kommerzinalrat","type":"Role","_key":"44670","_from":"29723","_to":"29716"} +{"$label":"ACTS_IN","name":"Baron Lazi K\u00f6r\u00f6shazi","type":"Role","_key":"44669","_from":"29722","_to":"29716"} +{"$label":"ACTS_IN","name":"Baronin Ilona","type":"Role","_key":"44668","_from":"29721","_to":"29716"} +{"$label":"ACTS_IN","name":"Toni Reitmeier","type":"Role","_key":"44666","_from":"29720","_to":"29716"} +{"$label":"ACTS_IN","name":"Mizzi Starek","type":"Role","_key":"44663","_from":"29719","_to":"29716"} +{"$label":"ACTS_IN","name":"Lixie H\u00e4rtl","type":"Role","_key":"44661","_from":"29718","_to":"29716"} +{"$label":"DIRECTED","_key":"44660","_from":"29717","_to":"29716"} +{"$label":"ACTS_IN","name":"Bertl Erblehner","type":"Role","_key":"91710","_from":"29720","_to":"54103"} +{"$label":"ACTS_IN","name":"Max Freiberg","type":"Role","_key":"91711","_from":"29723","_to":"54103"} +{"$label":"ACTS_IN","name":"Josef Walz","type":"Role","_key":"45166","_from":"29724","_to":"29959"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"44687","_from":"29733","_to":"29726"} +{"$label":"ACTS_IN","name":"Lior","type":"Role","_key":"44686","_from":"29732","_to":"29726"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"44685","_from":"29731","_to":"29726"} +{"$label":"ACTS_IN","name":"Eviatar","type":"Role","_key":"44684","_from":"29730","_to":"29726"} +{"$label":"ACTS_IN","name":"Dona","type":"Role","_key":"44683","_from":"29729","_to":"29726"} +{"$label":"ACTS_IN","name":"M\u00e9m\u00e9","type":"Role","_key":"44682","_from":"29728","_to":"29726"} +{"$label":"DIRECTED","_key":"44677","_from":"29727","_to":"29726"} +{"$label":"DIRECTED","_key":"90420","_from":"29727","_to":"53425"} +{"$label":"DIRECTED","_key":"44705","_from":"29748","_to":"29734"} +{"$label":"ACTS_IN","name":"Le serveur \u00e0 la piscine","type":"Role","_key":"44704","_from":"29747","_to":"29734"} +{"$label":"ACTS_IN","name":"Le chirurgien esth\u00e9tique","type":"Role","_key":"44703","_from":"29746","_to":"29734"} +{"$label":"ACTS_IN","name":"Le r\u00e9ceptionniste \u00e0 Monaco (as Fr\u00e9d\u00e9ric Bocquet)","type":"Role","_key":"44702","_from":"29745","_to":"29734"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"44701","_from":"29744","_to":"29734"} +{"$label":"ACTS_IN","name":"Le coll\u00e8gue de Jean \u00e0 Biarritz","type":"Role","_key":"44700","_from":"29743","_to":"29734"} +{"$label":"ACTS_IN","name":"Le serveur au restaurant \u00e0 Biarritz","type":"Role","_key":"44699","_from":"29742","_to":"29734"} +{"$label":"ACTS_IN","name":"La femme de chambre","type":"Role","_key":"44698","_from":"29741","_to":"29734"} +{"$label":"ACTS_IN","name":"Le responsable du bar \u00e0 Biarritz","type":"Role","_key":"44696","_from":"29740","_to":"29734"} +{"$label":"ACTS_IN","name":"La dame au dogue","type":"Role","_key":"44695","_from":"29739","_to":"29734"} +{"$label":"ACTS_IN","name":"La dame au chihuahua","type":"Role","_key":"44694","_from":"29738","_to":"29734"} +{"$label":"ACTS_IN","name":"Agn\u00e8s","type":"Role","_key":"44693","_from":"29737","_to":"29734"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"44690","_from":"29736","_to":"29734"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"44688","_from":"29735","_to":"29734"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"118279","_from":"29735","_to":"69527"} +{"$label":"ACTS_IN","name":"Choukri, alias Chouchou","type":"Role","_key":"113633","_from":"29735","_to":"66968"} +{"$label":"ACTS_IN","name":"Ben Salaad","type":"Role","_key":"113239","_from":"29735","_to":"66717"} +{"$label":"ACTS_IN","name":"Manzatou","type":"Role","_key":"47922","_from":"29735","_to":"31519"} +{"$label":"DIRECTED","_key":"118278","_from":"29735","_to":"69527"} +{"$label":"ACTS_IN","name":"Val\u00e9rie","type":"Role","_key":"59972","_from":"29737","_to":"37860"} +{"$label":"ACTS_IN","name":"Victoire","type":"Role","_key":"48776","_from":"29737","_to":"31986"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107411","_from":"29738","_to":"63342"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"62249","_from":"29746","_to":"39206"} +{"$label":"ACTS_IN","name":"Jakob Rohrbacher","type":"Role","_key":"44721","_from":"29759","_to":"29749"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44719","_from":"29758","_to":"29749"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"44718","_from":"29757","_to":"29749"} +{"$label":"ACTS_IN","name":"Burgl","type":"Role","_key":"44717","_from":"29756","_to":"29749"} +{"$label":"ACTS_IN","name":"Ferdinand","type":"Role","_key":"44716","_from":"29755","_to":"29749"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"44715","_from":"29754","_to":"29749"} +{"$label":"ACTS_IN","name":"Leopold","type":"Role","_key":"44714","_from":"29753","_to":"29749"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"44713","_from":"29752","_to":"29749"} +{"$label":"ACTS_IN","name":"Almhofbauer","type":"Role","_key":"44711","_from":"29751","_to":"29749"} +{"$label":"DIRECTED","_key":"44706","_from":"29750","_to":"29749"} +{"$label":"ACTS_IN","name":"Fasser","type":"Role","_key":"45410","_from":"29751","_to":"30098"} +{"$label":"ACTS_IN","name":"Gustav Hnoll","type":"Role","_key":"44739","_from":"29768","_to":"29760"} +{"$label":"ACTS_IN","name":"Karl Weber","type":"Role","_key":"44738","_from":"29767","_to":"29760"} +{"$label":"ACTS_IN","name":"Josef Stigler","type":"Role","_key":"44736","_from":"29766","_to":"29760"} +{"$label":"ACTS_IN","name":"Franz Mittermeier","type":"Role","_key":"44735","_from":"29765","_to":"29760"} +{"$label":"ACTS_IN","name":"Wilhelm August Jurek","type":"Role","_key":"44731","_from":"29764","_to":"29760"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Burgstetten","type":"Role","_key":"44728","_from":"29763","_to":"29760"} +{"$label":"ACTS_IN","name":"Hansi F\u00fchrer","type":"Role","_key":"44726","_from":"29762","_to":"29760"} +{"$label":"DIRECTED","_key":"44723","_from":"29761","_to":"29760"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44758","_from":"29777","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44757","_from":"29776","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44755","_from":"29775","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44751","_from":"29774","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44750","_from":"29773","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44749","_from":"29772","_to":"29769"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"44747","_from":"29771","_to":"29769"} +{"$label":"DIRECTED","_key":"44740","_from":"29770","_to":"29769"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44775","_from":"29789","_to":"29778"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44774","_from":"29788","_to":"29778"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44773","_from":"29787","_to":"29778"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44772","_from":"29786","_to":"29778"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"44770","_from":"29785","_to":"29778"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"44768","_from":"29784","_to":"29778"} +{"$label":"ACTS_IN","name":"Anni","type":"Role","_key":"44767","_from":"29783","_to":"29778"} +{"$label":"ACTS_IN","name":"Yvonne Sommer","type":"Role","_key":"44766","_from":"29782","_to":"29778"} +{"$label":"ACTS_IN","name":"Bindinger - Gerichtsvollzieher","type":"Role","_key":"44765","_from":"29781","_to":"29778"} +{"$label":"ACTS_IN","name":"Elisabeth Teky","type":"Role","_key":"44760","_from":"29780","_to":"29778"} +{"$label":"DIRECTED","_key":"44759","_from":"29779","_to":"29778"} +{"$label":"ACTS_IN","name":"Peggy Riva alias Liesel Schmidt","type":"Role","_key":"45035","_from":"29780","_to":"29920"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"47646","_from":"29781","_to":"31393"} +{"$label":"ACTS_IN","name":"Produzent","type":"Role","_key":"44789","_from":"29798","_to":"29790"} +{"$label":"ACTS_IN","name":"Celia Martin","type":"Role","_key":"44788","_from":"29797","_to":"29790"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"44787","_from":"29796","_to":"29790"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"44786","_from":"29795","_to":"29790"} +{"$label":"ACTS_IN","name":"Emile","type":"Role","_key":"44785","_from":"29794","_to":"29790"} +{"$label":"ACTS_IN","name":"Delores","type":"Role","_key":"44784","_from":"29793","_to":"29790"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"44782","_from":"29792","_to":"29790"} +{"$label":"DIRECTED","_key":"44778","_from":"29791","_to":"29790"} +{"$label":"ACTS_IN","name":"Britta","type":"Role","_key":"44794","_from":"29803","_to":"29799"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"44793","_from":"29802","_to":"29799"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"44792","_from":"29801","_to":"29799"} +{"$label":"DIRECTED","_key":"44790","_from":"29800","_to":"29799"} +{"$label":"ACTS_IN","name":"Mutter Uhltzscht","type":"Role","_key":"70592","_from":"29801","_to":"42948"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44819","_from":"29812","_to":"29804"} +{"$label":"ACTS_IN","name":"Lord Charles Farnsworth","type":"Role","_key":"44818","_from":"29811","_to":"29804"} +{"$label":"ACTS_IN","name":"Sergeant Rubby","type":"Role","_key":"44817","_from":"29810","_to":"29804"} +{"$label":"ACTS_IN","name":"Inspektor Genter","type":"Role","_key":"44815","_from":"29809","_to":"29804"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44814","_from":"29808","_to":"29804"} +{"$label":"ACTS_IN","name":"Lady Maggie Farnsworth","type":"Role","_key":"44812","_from":"29807","_to":"29804"} +{"$label":"ACTS_IN","name":"Mills","type":"Role","_key":"44811","_from":"29806","_to":"29804"} +{"$label":"ACTS_IN","name":"Ray Bennet","type":"Role","_key":"44805","_from":"29805","_to":"29804"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44836","_from":"29825","_to":"29813"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44835","_from":"29824","_to":"29813"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"44834","_from":"29823","_to":"29813"} +{"$label":"ACTS_IN","name":"FDJ-Ordner","type":"Role","_key":"44832","_from":"29822","_to":"29813"} +{"$label":"ACTS_IN","name":"Schwarzh\u00e4ndler","type":"Role","_key":"44830","_from":"29821","_to":"29813"} +{"$label":"ACTS_IN","name":"Herr L\u00fctjens","type":"Role","_key":"44829","_from":"29820","_to":"29813"} +{"$label":"ACTS_IN","name":"Alexandra L\u00fctjens-Petersen \/ Edith L\u00fctjens","type":"Role","_key":"44828","_from":"29819","_to":"29813"} +{"$label":"ACTS_IN","name":"Genossin Anita Hartung","type":"Role","_key":"44825","_from":"29818","_to":"29813"} +{"$label":"ACTS_IN","name":"Hauptmann Pfefferkorn","type":"Role","_key":"44824","_from":"29817","_to":"29813"} +{"$label":"ACTS_IN","name":"Alexandra L\u00fctjens-Petersen","type":"Role","_key":"44822","_from":"29816","_to":"29813"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"44821","_from":"29815","_to":"29813"} +{"$label":"ACTS_IN","name":"Jenny L\u00fctjens","type":"Role","_key":"44820","_from":"29814","_to":"29813"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"88196","_from":"29814","_to":"52329"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"73148","_from":"29814","_to":"43990"} +{"$label":"ACTS_IN","name":"Leon Bischoff","type":"Role","_key":"49385","_from":"29815","_to":"32339"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"108435","_from":"29818","_to":"64105"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Metapha","type":"Role","_key":"56978","_from":"29818","_to":"36154"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"44886","_from":"29818","_to":"29855"} +{"$label":"ACTS_IN","name":"Caramba","type":"Role","_key":"45724","_from":"29819","_to":"30261"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45449","_from":"29821","_to":"30115"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"44839","_from":"29828","_to":"29826"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"44838","_from":"29827","_to":"29826"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"112250","_from":"29827","_to":"66289"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"93441","_from":"29827","_to":"55020"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"93420","_from":"29827","_to":"55011"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"55423","_from":"29827","_to":"35328"} +{"$label":"ACTS_IN","name":"Marty Puccio","type":"Role","_key":"54403","_from":"29827","_to":"34894"} +{"$label":"ACTS_IN","name":"Todd Bowden","type":"Role","_key":"53916","_from":"29827","_to":"34700"} +{"$label":"ACTS_IN","name":"Pickle","type":"Role","_key":"100803","_from":"29828","_to":"59419"} +{"$label":"ACTS_IN","name":"Walter Dobel","type":"Role","_key":"44856","_from":"29836","_to":"29829"} +{"$label":"ACTS_IN","name":"Gerda Siebert","type":"Role","_key":"44855","_from":"29835","_to":"29829"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"44853","_from":"29834","_to":"29829"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"44849","_from":"29833","_to":"29829"} +{"$label":"ACTS_IN","name":"Evas Mutter","type":"Role","_key":"44848","_from":"29832","_to":"29829"} +{"$label":"ACTS_IN","name":"Frau Reimers","type":"Role","_key":"44845","_from":"29831","_to":"29829"} +{"$label":"DIRECTED","_key":"44844","_from":"29830","_to":"29829"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"45946","_from":"29833","_to":"30376"} +{"$label":"ACTS_IN","name":"Steinbichler ( Polizist )","type":"Role","_key":"44874","_from":"29853","_to":"29837"} +{"$label":"ACTS_IN","name":"Jatschin T\u00f6r\u00f6k","type":"Role","_key":"44873","_from":"29852","_to":"29837"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"44872","_from":"29851","_to":"29837"} +{"$label":"ACTS_IN","name":"Pater Lucius","type":"Role","_key":"44871","_from":"29850","_to":"29837"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"44870","_from":"29849","_to":"29837"} +{"$label":"ACTS_IN","name":"Frau Drusewitsch","type":"Role","_key":"44869","_from":"29848","_to":"29837"} +{"$label":"ACTS_IN","name":"Theres T\u00f6r\u00f6k","type":"Role","_key":"44868","_from":"29847","_to":"29837"} +{"$label":"ACTS_IN","name":"Johann","type":"Role","_key":"44867","_from":"29846","_to":"29837"} +{"$label":"ACTS_IN","name":"Emmerich Passenegger","type":"Role","_key":"44866","_from":"29845","_to":"29837"} +{"$label":"ACTS_IN","name":"Gusti","type":"Role","_key":"44865","_from":"29844","_to":"29837"} +{"$label":"ACTS_IN","name":"Mchael","type":"Role","_key":"44864","_from":"29843","_to":"29837"} +{"$label":"ACTS_IN","name":"Haberer","type":"Role","_key":"44863","_from":"29842","_to":"29837"} +{"$label":"ACTS_IN","name":"Anunziata","type":"Role","_key":"44862","_from":"29841","_to":"29837"} +{"$label":"ACTS_IN","name":"Stefan von Mansfeld","type":"Role","_key":"44861","_from":"29840","_to":"29837"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"44859","_from":"29839","_to":"29837"} +{"$label":"DIRECTED","_key":"44858","_from":"29838","_to":"29837"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"44888","_from":"29856","_to":"29855"} +{"$label":"ACTS_IN","name":"Miss Pennymarket","type":"Role","_key":"46208","_from":"29856","_to":"30544"} +{"$label":"ACTS_IN","name":"Wurzelsepp","type":"Role","_key":"44908","_from":"29865","_to":"29857"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44907","_from":"29864","_to":"29857"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44906","_from":"29863","_to":"29857"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44905","_from":"29862","_to":"29857"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44902","_from":"29861","_to":"29857"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44900","_from":"29860","_to":"29857"} +{"$label":"ACTS_IN","name":"Giesecke","type":"Role","_key":"44898","_from":"29859","_to":"29857"} +{"$label":"ACTS_IN","name":"Kl\u00e4rchen Hinzelmann","type":"Role","_key":"44895","_from":"29858","_to":"29857"} +{"$label":"ACTS_IN","name":"Butler Jakob","type":"Role","_key":"89858","_from":"29860","_to":"53171"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister","type":"Role","_key":"45408","_from":"29860","_to":"30098"} +{"$label":"ACTS_IN","name":"Diener","type":"Role","_key":"44922","_from":"29873","_to":"29866"} +{"$label":"ACTS_IN","name":"Pater Faramund","type":"Role","_key":"44921","_from":"29872","_to":"29866"} +{"$label":"ACTS_IN","name":"Majordomus","type":"Role","_key":"44920","_from":"29871","_to":"29866"} +{"$label":"ACTS_IN","name":"K\u00fcchenjunge","type":"Role","_key":"44919","_from":"29870","_to":"29866"} +{"$label":"ACTS_IN","name":"Graf Johann Oetsch","type":"Role","_key":"44913","_from":"29869","_to":"29866"} +{"$label":"ACTS_IN","name":"Lady Centa von Vogelschey","type":"Role","_key":"44912","_from":"29868","_to":"29866"} +{"$label":"ACTS_IN","name":"Lord von Vogelschrey auf Vogeloed","type":"Role","_key":"44911","_from":"29867","_to":"29866"} +{"$label":"ACTS_IN","name":"Frl. Putzke","type":"Role","_key":"44934","_from":"29878","_to":"29874"} +{"$label":"ACTS_IN","name":"Protokolchef","type":"Role","_key":"44933","_from":"29877","_to":"29874"} +{"$label":"ACTS_IN","name":"Dora K\u00f6slin","type":"Role","_key":"44931","_from":"29876","_to":"29874"} +{"$label":"ACTS_IN","name":"Marylin Parker","type":"Role","_key":"44925","_from":"29875","_to":"29874"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44948","_from":"29885","_to":"29879"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44947","_from":"29884","_to":"29879"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44946","_from":"29883","_to":"29879"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"44945","_from":"29882","_to":"29879"} +{"$label":"ACTS_IN","name":"Astronaut","type":"Role","_key":"44941","_from":"29881","_to":"29879"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"44939","_from":"29880","_to":"29879"} +{"$label":"ACTS_IN","name":"Zach Lair","type":"Role","_key":"104730","_from":"29880","_to":"61613"} +{"$label":"ACTS_IN","name":"Tod","type":"Role","_key":"58368","_from":"29880","_to":"36888"} +{"$label":"ACTS_IN","name":"Noah Cooper","type":"Role","_key":"109886","_from":"29881","_to":"64928"} +{"$label":"ACTS_IN","name":"Gale","type":"Role","_key":"94717","_from":"29881","_to":"55790"} +{"$label":"ACTS_IN","name":"Tom Marshall","type":"Role","_key":"65601","_from":"29881","_to":"40653"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"65547","_from":"29881","_to":"40621"} +{"$label":"ACTS_IN","name":"John Lyshitski","type":"Role","_key":"57002","_from":"29881","_to":"36167"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"56878","_from":"29881","_to":"36109"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"50836","_from":"29881","_to":"33179"} +{"$label":"ACTS_IN","name":"Frito","type":"Role","_key":"47004","_from":"29881","_to":"30989"} +{"$label":"ACTS_IN","name":"Jason Vorhees","type":"Role","_key":"93474","_from":"29882","_to":"55036"} +{"$label":"ACTS_IN","name":"Virg","type":"Role","_key":"46707","_from":"29884","_to":"30829"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"64628","_from":"29885","_to":"40258"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"47058","_from":"29885","_to":"31034"} +{"$label":"ACTS_IN","name":"Slave","type":"Role","_key":"44985","_from":"29894","_to":"29886"} +{"$label":"ACTS_IN","name":"Attendant","type":"Role","_key":"44983","_from":"29893","_to":"29886"} +{"$label":"ACTS_IN","name":"Hebrew at Rameses' Gate","type":"Role","_key":"44977","_from":"29892","_to":"29886"} +{"$label":"ACTS_IN","name":"Korah's Wife","type":"Role","_key":"44972","_from":"29891","_to":"29886"} +{"$label":"ACTS_IN","name":"Hur Ben Caleb","type":"Role","_key":"44970","_from":"29890","_to":"29886"} +{"$label":"ACTS_IN","name":"Jethro","type":"Role","_key":"44968","_from":"29889","_to":"29886"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"44967","_from":"29888","_to":"29886"} +{"$label":"ACTS_IN","name":"Pentaur","type":"Role","_key":"44964","_from":"29887","_to":"29886"} +{"$label":"ACTS_IN","name":"Dr. Schaefer","type":"Role","_key":"118425","_from":"29890","_to":"69611"} +{"$label":"ACTS_IN","name":"Captain Twombley, group chaplain (uncredited)","type":"Role","_key":"104692","_from":"29890","_to":"61589"} +{"$label":"ACTS_IN","name":"Editor","type":"Role","_key":"69715","_from":"29890","_to":"42555"} +{"$label":"ACTS_IN","name":"Angus (as Carl Switzer)","type":"Role","_key":"69717","_from":"29894","_to":"42555"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"44995","_from":"29900","_to":"29895"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"44994","_from":"29899","_to":"29895"} +{"$label":"ACTS_IN","name":"Fritz Grossman","type":"Role","_key":"44993","_from":"29898","_to":"29895"} +{"$label":"ACTS_IN","name":"Candia Leighton","type":"Role","_key":"44988","_from":"29897","_to":"29895"} +{"$label":"DIRECTED","_key":"44986","_from":"29896","_to":"29895"} +{"$label":"ACTS_IN","name":"Gun Salesman","type":"Role","_key":"45007","_from":"29905","_to":"29901"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"45004","_from":"29904","_to":"29901"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"45002","_from":"29903","_to":"29901"} +{"$label":"ACTS_IN","name":"Demo","type":"Role","_key":"45001","_from":"29902","_to":"29901"} +{"$label":"ACTS_IN","name":"Phil Wenneck","type":"Role","_key":"117489","_from":"29902","_to":"69087"} +{"$label":"ACTS_IN","name":"Travis Patterson","type":"Role","_key":"106909","_from":"29902","_to":"63027"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"65548","_from":"29902","_to":"40621"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"61675","_from":"29902","_to":"38852"} +{"$label":"ACTS_IN","name":"Bradley Cooper","type":"Role","_key":"61520","_from":"29902","_to":"38797"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"61514","_from":"29902","_to":"38795"} +{"$label":"ACTS_IN","name":"Zachary 'Sack' Lodge","type":"Role","_key":"54426","_from":"29902","_to":"34907"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"68913","_from":"29903","_to":"42196"} +{"$label":"ACTS_IN","name":"Bobby Dukes","type":"Role","_key":"99729","_from":"29905","_to":"58816"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"93656","_from":"29905","_to":"55135"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"58516","_from":"29905","_to":"36974"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"52207","_from":"29905","_to":"34014"} +{"$label":"ACTS_IN","name":"Hater","type":"Role","_key":"52138","_from":"29905","_to":"33981"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"47322","_from":"29905","_to":"31163"} +{"$label":"ACTS_IN","name":"Molly's Father","type":"Role","_key":"45016","_from":"29912","_to":"29906"} +{"$label":"ACTS_IN","name":"Vet","type":"Role","_key":"45012","_from":"29911","_to":"29906"} +{"$label":"ACTS_IN","name":"Research Assistant","type":"Role","_key":"45011","_from":"29910","_to":"29906"} +{"$label":"ACTS_IN","name":"Jamie Seaver","type":"Role","_key":"45010","_from":"29909","_to":"29906"} +{"$label":"ACTS_IN","name":"Desk Sergeant","type":"Role","_key":"45009","_from":"29908","_to":"29906"} +{"$label":"DIRECTED","_key":"45008","_from":"29907","_to":"29906"} +{"$label":"ACTS_IN","name":"Kuni","type":"Role","_key":"45027","_from":"29919","_to":"29913"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45026","_from":"29918","_to":"29913"} +{"$label":"ACTS_IN","name":"Ria","type":"Role","_key":"45025","_from":"29917","_to":"29913"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"45024","_from":"29916","_to":"29913"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45021","_from":"29915","_to":"29913"} +{"$label":"DIRECTED","_key":"45017","_from":"29914","_to":"29913"} +{"$label":"DIRECTED","_key":"45032","_from":"29921","_to":"29920"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"45050","_from":"29925","_to":"29922"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"45049","_from":"29924","_to":"29922"} +{"$label":"DIRECTED","_key":"45044","_from":"29923","_to":"29922"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"45054","_from":"29928","_to":"29926"} +{"$label":"DIRECTED","_key":"45053","_from":"29927","_to":"29926"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"110777","_from":"29928","_to":"65435"} +{"$label":"ACTS_IN","name":"Jake Gallo","type":"Role","_key":"88606","_from":"29928","_to":"52505"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"65764","_from":"29928","_to":"40707"} +{"$label":"ACTS_IN","name":"Pfc. W. Roy Potts","type":"Role","_key":"64353","_from":"29928","_to":"40107"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"47318","_from":"29928","_to":"31163"} +{"$label":"ACTS_IN","name":"Izzy","type":"Role","_key":"46990","_from":"29928","_to":"30983"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"45077","_from":"29935","_to":"29929"} +{"$label":"ACTS_IN","name":"Dr. Sinsberg","type":"Role","_key":"45073","_from":"29934","_to":"29929"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45069","_from":"29933","_to":"29929"} +{"$label":"ACTS_IN","name":"Schally Meisegeier","type":"Role","_key":"45063","_from":"29932","_to":"29929"} +{"$label":"ACTS_IN","name":"Doddy Meisegeier","type":"Role","_key":"45061","_from":"29931","_to":"29929"} +{"$label":"ACTS_IN","name":"Vera von Lieven","type":"Role","_key":"45060","_from":"29930","_to":"29929"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"67847","_from":"29930","_to":"41691"} +{"$label":"ACTS_IN","name":"Frl. Frosch","type":"Role","_key":"45095","_from":"29942","_to":"29936"} +{"$label":"ACTS_IN","name":"Meta Sengstake","type":"Role","_key":"45093","_from":"29941","_to":"29936"} +{"$label":"ACTS_IN","name":"Julchen Scherzer","type":"Role","_key":"45087","_from":"29940","_to":"29936"} +{"$label":"ACTS_IN","name":"Anne Scherzer","type":"Role","_key":"45086","_from":"29939","_to":"29936"} +{"$label":"ACTS_IN","name":"Marie Scherzer","type":"Role","_key":"45085","_from":"29938","_to":"29936"} +{"$label":"DIRECTED","_key":"45080","_from":"29937","_to":"29936"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"90214","_from":"29938","_to":"53344"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"49603","_from":"29938","_to":"32466"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"45123","_from":"29947","_to":"29944"} +{"$label":"DIRECTED","_key":"45115","_from":"29946","_to":"29944"} +{"$label":"DIRECTED","_key":"45114","_from":"29945","_to":"29944"} +{"$label":"ACTS_IN","name":"Gymnast","type":"Role","_key":"45138","_from":"29954","_to":"29948"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45137","_from":"29953","_to":"29948"} +{"$label":"ACTS_IN","name":"Conductor","type":"Role","_key":"45136","_from":"29952","_to":"29948"} +{"$label":"ACTS_IN","name":"Jeremias","type":"Role","_key":"45134","_from":"29951","_to":"29948"} +{"$label":"ACTS_IN","name":"Attila","type":"Role","_key":"45131","_from":"29950","_to":"29948"} +{"$label":"DIRECTED","_key":"45127","_from":"29949","_to":"29948"} +{"$label":"ACTS_IN","name":"Linda Lee","type":"Role","_key":"45143","_from":"29958","_to":"29955"} +{"$label":"ACTS_IN","name":"Terrence \"Terry\" Chandler","type":"Role","_key":"45141","_from":"29957","_to":"29955"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"45140","_from":"29956","_to":"29955"} +{"$label":"ACTS_IN","name":"Mimi genannt Mimosa die Gekr\u00e4nkte","type":"Role","_key":"45165","_from":"29970","_to":"29959"} +{"$label":"ACTS_IN","name":"Rittmeister Lanz","type":"Role","_key":"45164","_from":"29969","_to":"29959"} +{"$label":"ACTS_IN","name":"Der Stramme Max","type":"Role","_key":"45161","_from":"29968","_to":"29959"} +{"$label":"ACTS_IN","name":"Lizzi genant die Juke Box","type":"Role","_key":"45159","_from":"29967","_to":"29959"} +{"$label":"ACTS_IN","name":"Ruth genannt Die Pedantische","type":"Role","_key":"45158","_from":"29966","_to":"29959"} +{"$label":"ACTS_IN","name":"Coco genannt Der Papagei","type":"Role","_key":"45157","_from":"29965","_to":"29959"} +{"$label":"ACTS_IN","name":"Sweety genannt Die wandelnde Konditorei","type":"Role","_key":"45156","_from":"29964","_to":"29959"} +{"$label":"ACTS_IN","name":"Revierinspektor","type":"Role","_key":"45155","_from":"29963","_to":"29959"} +{"$label":"ACTS_IN","name":"Vera genannt Die Narhafte","type":"Role","_key":"45154","_from":"29962","_to":"29959"} +{"$label":"ACTS_IN","name":"Sabine genannt Die Handgestrickte","type":"Role","_key":"45152","_from":"29961","_to":"29959"} +{"$label":"ACTS_IN","name":"Eva genannt Amazone","type":"Role","_key":"45147","_from":"29960","_to":"29959"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"47650","_from":"29963","_to":"31393"} +{"$label":"ACTS_IN","name":"Dr. Painter","type":"Role","_key":"45186","_from":"29982","_to":"29971"} +{"$label":"ACTS_IN","name":"Dr. Julie Cohn","type":"Role","_key":"45185","_from":"29981","_to":"29971"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"45184","_from":"29980","_to":"29971"} +{"$label":"ACTS_IN","name":"Child Beth","type":"Role","_key":"45183","_from":"29979","_to":"29971"} +{"$label":"ACTS_IN","name":"Mrs. Ford","type":"Role","_key":"45182","_from":"29978","_to":"29971"} +{"$label":"ACTS_IN","name":"Laurel Layton","type":"Role","_key":"45181","_from":"29977","_to":"29971"} +{"$label":"ACTS_IN","name":"Monster Ellie","type":"Role","_key":"45180","_from":"29976","_to":"29971"} +{"$label":"ACTS_IN","name":"Monster Marie","type":"Role","_key":"45178","_from":"29975","_to":"29971"} +{"$label":"ACTS_IN","name":"Marie Layton","type":"Role","_key":"45177","_from":"29974","_to":"29971"} +{"$label":"ACTS_IN","name":"Brian Sousa","type":"Role","_key":"45173","_from":"29973","_to":"29971"} +{"$label":"DIRECTED","_key":"45167","_from":"29972","_to":"29971"} +{"$label":"ACTS_IN","name":"Saleswoman","type":"Role","_key":"46509","_from":"29974","_to":"30698"} +{"$label":"ACTS_IN","name":"Frau Doktor","type":"Role","_key":"45192","_from":"29987","_to":"29983"} +{"$label":"ACTS_IN","name":"Beauty ( Yesterdays Tochter )","type":"Role","_key":"45191","_from":"29986","_to":"29983"} +{"$label":"ACTS_IN","name":"Yesterdays Mann","type":"Role","_key":"45189","_from":"29985","_to":"29983"} +{"$label":"DIRECTED","_key":"45187","_from":"29984","_to":"29983"} +{"$label":"DIRECTED","_key":"99072","_from":"29984","_to":"58367"} +{"$label":"DIRECTED","_key":"66097","_from":"29984","_to":"40893"} +{"$label":"ACTS_IN","name":"Fretin","type":"Role","_key":"45209","_from":"30005","_to":"29988"} +{"$label":"ACTS_IN","name":"Orsini","type":"Role","_key":"45208","_from":"30004","_to":"29988"} +{"$label":"ACTS_IN","name":"Djamel","type":"Role","_key":"45207","_from":"30003","_to":"29988"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45206","_from":"30002","_to":"29988"} +{"$label":"ACTS_IN","name":"Fatima","type":"Role","_key":"45205","_from":"30001","_to":"29988"} +{"$label":"ACTS_IN","name":"Aila","type":"Role","_key":"45204","_from":"30000","_to":"29988"} +{"$label":"ACTS_IN","name":"Michelin","type":"Role","_key":"45203","_from":"29999","_to":"29988"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"45202","_from":"29998","_to":"29988"} +{"$label":"ACTS_IN","name":"Tango","type":"Role","_key":"45201","_from":"29997","_to":"29988"} +{"$label":"ACTS_IN","name":"Sitting Bull","type":"Role","_key":"45200","_from":"29996","_to":"29988"} +{"$label":"ACTS_IN","name":"Rocket","type":"Role","_key":"45199","_from":"29995","_to":"29988"} +{"$label":"ACTS_IN","name":"Zicmu","type":"Role","_key":"45198","_from":"29994","_to":"29988"} +{"$label":"ACTS_IN","name":"La Belette","type":"Role","_key":"45197","_from":"29993","_to":"29988"} +{"$label":"ACTS_IN","name":"L`Araignee","type":"Role","_key":"45196","_from":"29992","_to":"29988"} +{"$label":"ACTS_IN","name":"Baseball","type":"Role","_key":"45195","_from":"29991","_to":"29988"} +{"$label":"DIRECTED","_key":"45194","_from":"29990","_to":"29988"} +{"$label":"DIRECTED","_key":"45193","_from":"29989","_to":"29988"} +{"$label":"ACTS_IN","name":"P\u00e8re","type":"Role","_key":"62384","_from":"29998","_to":"39303"} +{"$label":"ACTS_IN","name":"Zizou","type":"Role","_key":"49249","_from":"29998","_to":"32254"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"45217","_from":"30014","_to":"30006"} +{"$label":"ACTS_IN","name":"Desmedt","type":"Role","_key":"45216","_from":"30013","_to":"30006"} +{"$label":"ACTS_IN","name":"Bogaert","type":"Role","_key":"45215","_from":"30012","_to":"30006"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"45214","_from":"30011","_to":"30006"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"45213","_from":"30010","_to":"30006"} +{"$label":"ACTS_IN","name":"Scarlite","type":"Role","_key":"45212","_from":"30009","_to":"30006"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"45211","_from":"30008","_to":"30006"} +{"$label":"DIRECTED","_key":"45210","_from":"30007","_to":"30006"} +{"$label":"ACTS_IN","name":"Craig Patrick","type":"Role","_key":"45225","_from":"30021","_to":"30015"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"45224","_from":"30020","_to":"30015"} +{"$label":"ACTS_IN","name":"Kaminsky","type":"Role","_key":"45223","_from":"30019","_to":"30015"} +{"$label":"ACTS_IN","name":"Lee Auge","type":"Role","_key":"45222","_from":"30018","_to":"30015"} +{"$label":"ACTS_IN","name":"Mike Eruzione","type":"Role","_key":"45220","_from":"30017","_to":"30015"} +{"$label":"DIRECTED","_key":"45218","_from":"30016","_to":"30015"} +{"$label":"DIRECTED","_key":"71794","_from":"30016","_to":"43454"} +{"$label":"ACTS_IN","name":"Paul McAnn","type":"Role","_key":"116729","_from":"30017","_to":"68712"} +{"$label":"ACTS_IN","name":"Andrew Davis","type":"Role","_key":"59072","_from":"30017","_to":"37284"} +{"$label":"ACTS_IN","name":"Dave 'Killer' Carlson","type":"Role","_key":"70930","_from":"30018","_to":"43092"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"45234","_from":"30027","_to":"30022"} +{"$label":"ACTS_IN","name":"Alvin","type":"Role","_key":"45231","_from":"30026","_to":"30022"} +{"$label":"ACTS_IN","name":"Willi","type":"Role","_key":"45230","_from":"30025","_to":"30022"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"45228","_from":"30024","_to":"30022"} +{"$label":"DIRECTED","_key":"45226","_from":"30023","_to":"30022"} +{"$label":"ACTS_IN","name":"George O'Hara","type":"Role","_key":"120829","_from":"30025","_to":"70947"} +{"$label":"ACTS_IN","name":"Christop Crane","type":"Role","_key":"45248","_from":"30030","_to":"30028"} +{"$label":"ACTS_IN","name":"Robert Percy","type":"Role","_key":"45244","_from":"30029","_to":"30028"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"113755","_from":"30030","_to":"67033"} +{"$label":"ACTS_IN","name":"Zach Harper","type":"Role","_key":"111879","_from":"30030","_to":"66047"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"111610","_from":"30030","_to":"65893"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"45256","_from":"30036","_to":"30031"} +{"$label":"ACTS_IN","name":"Alice Fasulo","type":"Role","_key":"45254","_from":"30035","_to":"30031"} +{"$label":"ACTS_IN","name":"Marcy Turner","type":"Role","_key":"45253","_from":"30034","_to":"30031"} +{"$label":"ACTS_IN","name":"Heather Fasulo","type":"Role","_key":"45250","_from":"30033","_to":"30031"} +{"$label":"DIRECTED","_key":"45249","_from":"30032","_to":"30031"} +{"$label":"DIRECTED","_key":"93437","_from":"30032","_to":"55017"} +{"$label":"DIRECTED","_key":"66505","_from":"30032","_to":"41119"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"119328","_from":"30033","_to":"70114"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"105272","_from":"30033","_to":"61948"} +{"$label":"ACTS_IN","name":"Susye","type":"Role","_key":"95894","_from":"30033","_to":"56393"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"60302","_from":"30033","_to":"38030"} +{"$label":"ACTS_IN","name":"Pippa Ridley","type":"Role","_key":"57251","_from":"30033","_to":"36317"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"48349","_from":"30033","_to":"31743"} +{"$label":"ACTS_IN","name":"Eden","type":"Role","_key":"45876","_from":"30033","_to":"30341"} +{"$label":"ACTS_IN","name":"Samantha Gray","type":"Role","_key":"114375","_from":"30035","_to":"67373"} +{"$label":"ACTS_IN","name":"John Culver","type":"Role","_key":"120338","_from":"30036","_to":"70686"} +{"$label":"ACTS_IN","name":"David Goodman","type":"Role","_key":"114759","_from":"30036","_to":"67595"} +{"$label":"ACTS_IN","name":"Dr. Mascelli","type":"Role","_key":"45273","_from":"30039","_to":"30038"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"45283","_from":"30043","_to":"30040"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"45281","_from":"30042","_to":"30040"} +{"$label":"ACTS_IN","name":"Emily Carson","type":"Role","_key":"45277","_from":"30041","_to":"30040"} +{"$label":"ACTS_IN","name":"Lois Simmons","type":"Role","_key":"121317","_from":"30041","_to":"71281"} +{"$label":"ACTS_IN","name":"Mattie Blaylock","type":"Role","_key":"88379","_from":"30041","_to":"52390"} +{"$label":"ACTS_IN","name":"Wendy Beamish","type":"Role","_key":"70650","_from":"30041","_to":"42993"} +{"$label":"ACTS_IN","name":"Elsie Cahill","type":"Role","_key":"46673","_from":"30041","_to":"30821"} +{"$label":"ACTS_IN","name":"Melvin Mander","type":"Role","_key":"45297","_from":"30049","_to":"30044"} +{"$label":"ACTS_IN","name":"Diane Fisk","type":"Role","_key":"45296","_from":"30048","_to":"30044"} +{"$label":"ACTS_IN","name":"Pete Stark","type":"Role","_key":"45293","_from":"30047","_to":"30044"} +{"$label":"ACTS_IN","name":"Hank Dudney","type":"Role","_key":"45291","_from":"30046","_to":"30044"} +{"$label":"ACTS_IN","name":"Reverend","type":"Role","_key":"45289","_from":"30045","_to":"30044"} +{"$label":"ACTS_IN","name":"Willie Brown","type":"Role","_key":"104251","_from":"30045","_to":"61340"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45313","_from":"30056","_to":"30050"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45312","_from":"30055","_to":"30050"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45309","_from":"30054","_to":"30050"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"45308","_from":"30053","_to":"30050"} +{"$label":"ACTS_IN","name":"Ambros Lutz","type":"Role","_key":"45301","_from":"30052","_to":"30050"} +{"$label":"DIRECTED","_key":"45299","_from":"30051","_to":"30050"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"45318","_from":"30058","_to":"30057"} +{"$label":"ACTS_IN","name":"Darren Roanoke","type":"Role","_key":"88485","_from":"30058","_to":"52448"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"58505","_from":"30058","_to":"36974"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"50840","_from":"30058","_to":"33179"} +{"$label":"ACTS_IN","name":"Security Man","type":"Role","_key":"45338","_from":"30072","_to":"30059"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"45337","_from":"30071","_to":"30059"} +{"$label":"ACTS_IN","name":"Angela Winkler","type":"Role","_key":"45336","_from":"30070","_to":"30059"} +{"$label":"ACTS_IN","name":"Josh Whitley","type":"Role","_key":"45335","_from":"30069","_to":"30059"} +{"$label":"ACTS_IN","name":"Garrett Evans","type":"Role","_key":"45334","_from":"30068","_to":"30059"} +{"$label":"ACTS_IN","name":"Ranger James Jummy Trivette","type":"Role","_key":"45333","_from":"30067","_to":"30059"} +{"$label":"ACTS_IN","name":"Kay Austin","type":"Role","_key":"45332","_from":"30066","_to":"30059"} +{"$label":"ACTS_IN","name":"Blue Eye","type":"Role","_key":"45331","_from":"30065","_to":"30059"} +{"$label":"ACTS_IN","name":"Detec. Mike Burton","type":"Role","_key":"45330","_from":"30064","_to":"30059"} +{"$label":"ACTS_IN","name":"Ranger Rhett Harper","type":"Role","_key":"45328","_from":"30063","_to":"30059"} +{"$label":"ACTS_IN","name":"Alex Cahill-Walker","type":"Role","_key":"45326","_from":"30062","_to":"30059"} +{"$label":"ACTS_IN","name":"Capt. Ranger Cordell Walker","type":"Role","_key":"45325","_from":"30061","_to":"30059"} +{"$label":"DIRECTED","_key":"45324","_from":"30060","_to":"30059"} +{"$label":"DIRECTED","_key":"118656","_from":"30060","_to":"69763"} +{"$label":"ACTS_IN","name":"John David 'J.D.' Dawes","type":"Role","_key":"118741","_from":"30061","_to":"69823"} +{"$label":"ACTS_IN","name":"Col. Scott McCoy","type":"Role","_key":"118652","_from":"30061","_to":"69763"} +{"$label":"ACTS_IN","name":"Major Scott McCoy","type":"Role","_key":"107119","_from":"30061","_to":"63169"} +{"$label":"ACTS_IN","name":"Matt Hunter","type":"Role","_key":"106563","_from":"30061","_to":"62791"} +{"$label":"ACTS_IN","name":"Col. James Braddock","type":"Role","_key":"104191","_from":"30061","_to":"61299"} +{"$label":"ACTS_IN","name":"J.J. McQuade","type":"Role","_key":"102090","_from":"30061","_to":"60064"} +{"$label":"ACTS_IN","name":"Colt","type":"Role","_key":"93948","_from":"30061","_to":"55322"} +{"$label":"ACTS_IN","name":"Colonel James Braddock","type":"Role","_key":"91366","_from":"30061","_to":"53887"} +{"$label":"ACTS_IN","name":"Max Donigan","type":"Role","_key":"91205","_from":"30061","_to":"53788"} +{"$label":"ACTS_IN","name":"Colt","type":"Role","_key":"54021","_from":"30061","_to":"34752"} +{"$label":"ACTS_IN","name":"Captain David Nester","type":"Role","_key":"91368","_from":"30064","_to":"53887"} +{"$label":"ACTS_IN","name":"Creighton Duke","type":"Role","_key":"62378","_from":"30064","_to":"39299"} +{"$label":"ACTS_IN","name":"Miyamoto","type":"Role","_key":"59206","_from":"30065","_to":"37387"} +{"$label":"ACTS_IN","name":"Jessie Deighan","type":"Role","_key":"53293","_from":"30066","_to":"34457"} +{"$label":"ACTS_IN","name":"Douglas J. \u201eD.J.\u201c Hartner","type":"Role","_key":"52970","_from":"30069","_to":"34313"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45351","_from":"30081","_to":"30073"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45350","_from":"30080","_to":"30073"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45348","_from":"30079","_to":"30073"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45347","_from":"30078","_to":"30073"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45345","_from":"30077","_to":"30073"} +{"$label":"ACTS_IN","name":"Levassor alias John Constantinescu","type":"Role","_key":"45344","_from":"30076","_to":"30073"} +{"$label":"ACTS_IN","name":"Kleinsilber","type":"Role","_key":"45342","_from":"30075","_to":"30073"} +{"$label":"DIRECTED","_key":"45339","_from":"30074","_to":"30073"} +{"$label":"ACTS_IN","name":"Aga Ben Nemzich","type":"Role","_key":"45365","_from":"30085","_to":"30082"} +{"$label":"ACTS_IN","name":"Prof. Klappm\u00fcller","type":"Role","_key":"45364","_from":"30084","_to":"30082"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"45356","_from":"30083","_to":"30082"} +{"$label":"DIRECTED","_key":"45376","_from":"30089","_to":"30086"} +{"$label":"ACTS_IN","name":"TJ","type":"Role","_key":"45374","_from":"30088","_to":"30086"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"45372","_from":"30087","_to":"30086"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"108779","_from":"30087","_to":"64301"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"50148","_from":"30087","_to":"32793"} +{"$label":"DIRECTED","_key":"45379","_from":"30091","_to":"30090"} +{"$label":"DIRECTED","_key":"105262","_from":"30091","_to":"61947"} +{"$label":"DIRECTED","_key":"71308","_from":"30091","_to":"43257"} +{"$label":"DIRECTED","_key":"64060","_from":"30091","_to":"39982"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"45389","_from":"30096","_to":"30092"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"45388","_from":"30095","_to":"30092"} +{"$label":"ACTS_IN","name":"Russ","type":"Role","_key":"45386","_from":"30094","_to":"30092"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"45384","_from":"30093","_to":"30092"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"61560","_from":"30093","_to":"38809"} +{"$label":"ACTS_IN","name":"John Johnson","type":"Role","_key":"116372","_from":"30094","_to":"68507"} +{"$label":"ACTS_IN","name":"Boca","type":"Role","_key":"108206","_from":"30094","_to":"63954"} +{"$label":"ACTS_IN","name":"Max Cantrell","type":"Role","_key":"71313","_from":"30094","_to":"43258"} +{"$label":"ACTS_IN","name":"Keates","type":"Role","_key":"45412","_from":"30102","_to":"30098"} +{"$label":"ACTS_IN","name":"Winii Pardubitz","type":"Role","_key":"45405","_from":"30101","_to":"30098"} +{"$label":"ACTS_IN","name":"Lydia Bartnik","type":"Role","_key":"45404","_from":"30100","_to":"30098"} +{"$label":"ACTS_IN","name":"Katharina Brandl","type":"Role","_key":"45403","_from":"30099","_to":"30098"} +{"$label":"ACTS_IN","name":"Dowalapik`s Frau","type":"Role","_key":"45423","_from":"30109","_to":"30103"} +{"$label":"ACTS_IN","name":"Sowaiapik","type":"Role","_key":"45422","_from":"30108","_to":"30103"} +{"$label":"ACTS_IN","name":"Shaman","type":"Role","_key":"45421","_from":"30107","_to":"30103"} +{"$label":"ACTS_IN","name":"Neevee","type":"Role","_key":"45420","_from":"30106","_to":"30103"} +{"$label":"ACTS_IN","name":"Sarkak","type":"Role","_key":"45419","_from":"30105","_to":"30103"} +{"$label":"ACTS_IN","name":"Kangiak","type":"Role","_key":"45418","_from":"30104","_to":"30103"} +{"$label":"ACTS_IN","name":"Lemalians Mutter","type":"Role","_key":"45430","_from":"30114","_to":"30110"} +{"$label":"ACTS_IN","name":"Pater Bernado","type":"Role","_key":"45428","_from":"30113","_to":"30110"} +{"$label":"ACTS_IN","name":"Lemalian","type":"Role","_key":"45426","_from":"30112","_to":"30110"} +{"$label":"DIRECTED","_key":"45424","_from":"30111","_to":"30110"} +{"$label":"DIRECTED","_key":"52647","_from":"30111","_to":"34197"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"110279","_from":"30112","_to":"65170"} +{"$label":"ACTS_IN","name":"Fer+","type":"Role","_key":"88461","_from":"30112","_to":"52431"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45450","_from":"30119","_to":"30115"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45444","_from":"30118","_to":"30115"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"45443","_from":"30117","_to":"30115"} +{"$label":"ACTS_IN","name":"G\u00fcnther Scheicher","type":"Role","_key":"45437","_from":"30116","_to":"30115"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"45473","_from":"30130","_to":"30120"} +{"$label":"ACTS_IN","name":"Skinny","type":"Role","_key":"45471","_from":"30129","_to":"30120"} +{"$label":"ACTS_IN","name":"Stievie","type":"Role","_key":"45469","_from":"30128","_to":"30120"} +{"$label":"ACTS_IN","name":"Saulley","type":"Role","_key":"45468","_from":"30127","_to":"30120"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"45465","_from":"30126","_to":"30120"} +{"$label":"ACTS_IN","name":"Mikey Vitello","type":"Role","_key":"45462","_from":"30125","_to":"30120"} +{"$label":"ACTS_IN","name":"Angelina Vitello","type":"Role","_key":"45460","_from":"30124","_to":"30120"} +{"$label":"ACTS_IN","name":"Liz O`Callahan","type":"Role","_key":"45459","_from":"30123","_to":"30120"} +{"$label":"ACTS_IN","name":"Joey Vitello","type":"Role","_key":"45453","_from":"30122","_to":"30120"} +{"$label":"DIRECTED","_key":"45452","_from":"30121","_to":"30120"} +{"$label":"ACTS_IN","name":"Dixie Rose Delton","type":"Role","_key":"97170","_from":"30123","_to":"57155"} +{"$label":"ACTS_IN","name":"Willa","type":"Role","_key":"91129","_from":"30123","_to":"53764"} +{"$label":"ACTS_IN","name":"Loretta Bell","type":"Role","_key":"45546","_from":"30123","_to":"30156"} +{"$label":"ACTS_IN","name":"Dr. Freedman","type":"Role","_key":"70888","_from":"30127","_to":"43072"} +{"$label":"ACTS_IN","name":"Sammy Capulet","type":"Role","_key":"108215","_from":"30128","_to":"63955"} +{"$label":"ACTS_IN","name":"Joel De La Garza","type":"Role","_key":"101216","_from":"30130","_to":"59618"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"45481","_from":"30135","_to":"30131"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"45478","_from":"30134","_to":"30131"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"45477","_from":"30133","_to":"30131"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"45475","_from":"30132","_to":"30131"} +{"$label":"ACTS_IN","name":"Jackson Baring","type":"Role","_key":"114435","_from":"30132","_to":"67412"} +{"$label":"ACTS_IN","name":"Frank Sears","type":"Role","_key":"98967","_from":"30132","_to":"58306"} +{"$label":"ACTS_IN","name":"George Fletcher","type":"Role","_key":"96818","_from":"30132","_to":"56936"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"96679","_from":"30132","_to":"56865"} +{"$label":"ACTS_IN","name":"Xavier Red","type":"Role","_key":"95177","_from":"30132","_to":"56000"} +{"$label":"ACTS_IN","name":"Kit","type":"Role","_key":"89783","_from":"30132","_to":"53136"} +{"$label":"ACTS_IN","name":"Jimmy Mattingly","type":"Role","_key":"54883","_from":"30132","_to":"35099"} +{"$label":"ACTS_IN","name":"Richard Fenton","type":"Role","_key":"50256","_from":"30132","_to":"32836"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"46276","_from":"30132","_to":"30589"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"59132","_from":"30133","_to":"37329"} +{"$label":"ACTS_IN","name":"Sally Doane","type":"Role","_key":"45490","_from":"30138","_to":"30136"} +{"$label":"DIRECTED","_key":"45483","_from":"30137","_to":"30136"} +{"$label":"DIRECTED","_key":"116918","_from":"30137","_to":"68826"} +{"$label":"DIRECTED","_key":"115609","_from":"30137","_to":"68053"} +{"$label":"DIRECTED","_key":"113688","_from":"30137","_to":"66993"} +{"$label":"DIRECTED","_key":"67701","_from":"30137","_to":"41637"} +{"$label":"ACTS_IN","name":"Cindy Hilliard","type":"Role","_key":"116807","_from":"30138","_to":"68770"} +{"$label":"ACTS_IN","name":"King George","type":"Role","_key":"45498","_from":"30140","_to":"30139"} +{"$label":"ACTS_IN","name":"Fingerbone","type":"Role","_key":"99537","_from":"30140","_to":"58679"} +{"$label":"ACTS_IN","name":"The Storyteller","type":"Role","_key":"98364","_from":"30140","_to":"57926"} +{"$label":"ACTS_IN","name":"Neville Bell","type":"Role","_key":"55434","_from":"30140","_to":"35332"} +{"$label":"ACTS_IN","name":"Moodoo der F\u00e4hrtensucher","type":"Role","_key":"54647","_from":"30140","_to":"35000"} +{"$label":"ACTS_IN","name":"Private Robert Ortiez","type":"Role","_key":"45511","_from":"30145","_to":"30141"} +{"$label":"ACTS_IN","name":"Specialist Ennis Long","type":"Role","_key":"45510","_from":"30144","_to":"30141"} +{"$label":"ACTS_IN","name":"Specialist Gordon Bonner","type":"Role","_key":"45509","_from":"30143","_to":"30141"} +{"$label":"ACTS_IN","name":"Corporal Penning","type":"Role","_key":"45508","_from":"30142","_to":"30141"} +{"$label":"ACTS_IN","name":"Harry Flournoy","type":"Role","_key":"58050","_from":"30144","_to":"36729"} +{"$label":"ACTS_IN","name":"Dr. Frank Gordon","type":"Role","_key":"45520","_from":"30150","_to":"30146"} +{"$label":"ACTS_IN","name":"Prof. Paul Weiner","type":"Role","_key":"45519","_from":"30149","_to":"30146"} +{"$label":"ACTS_IN","name":"Dr. Iris Ryan","type":"Role","_key":"45515","_from":"30148","_to":"30146"} +{"$label":"DIRECTED","_key":"45513","_from":"30147","_to":"30146"} +{"$label":"ACTS_IN","name":"Lieselotte","type":"Role","_key":"45531","_from":"30153","_to":"30151"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"45530","_from":"30152","_to":"30151"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"45536","_from":"30155","_to":"30154"} +{"$label":"ACTS_IN","name":"Strangled Deputy","type":"Role","_key":"45553","_from":"30160","_to":"30156"} +{"$label":"ACTS_IN","name":"Sheriff's Secretary","type":"Role","_key":"45552","_from":"30159","_to":"30156"} +{"$label":"ACTS_IN","name":"Poolside Woman","type":"Role","_key":"45551","_from":"30158","_to":"30156"} +{"$label":"ACTS_IN","name":"El Paso Sheriff","type":"Role","_key":"45549","_from":"30157","_to":"30156"} +{"$label":"ACTS_IN","name":"Lightning","type":"Role","_key":"45562","_from":"30162","_to":"30161"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"45573","_from":"30169","_to":"30163"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45571","_from":"30168","_to":"30163"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45570","_from":"30167","_to":"30163"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45569","_from":"30166","_to":"30163"} +{"$label":"ACTS_IN","name":"Elvira Sciaccaluga","type":"Role","_key":"45568","_from":"30165","_to":"30163"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"45567","_from":"30164","_to":"30163"} +{"$label":"ACTS_IN","name":"Susanna","type":"Role","_key":"69440","_from":"30165","_to":"42437"} +{"$label":"ACTS_IN","name":"Prof. Mallroy Baynes","type":"Role","_key":"45585","_from":"30179","_to":"30170"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"45584","_from":"30178","_to":"30170"} +{"$label":"ACTS_IN","name":"Ariene","type":"Role","_key":"45583","_from":"30177","_to":"30170"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"45581","_from":"30176","_to":"30170"} +{"$label":"ACTS_IN","name":"Glenn Woods","type":"Role","_key":"45580","_from":"30175","_to":"30170"} +{"$label":"ACTS_IN","name":"Jacy Woods","type":"Role","_key":"45579","_from":"30174","_to":"30170"} +{"$label":"ACTS_IN","name":"Jules Biggs","type":"Role","_key":"45577","_from":"30173","_to":"30170"} +{"$label":"ACTS_IN","name":"Michael Woods","type":"Role","_key":"45575","_from":"30172","_to":"30170"} +{"$label":"DIRECTED","_key":"45574","_from":"30171","_to":"30170"} +{"$label":"DIRECTED","_key":"96019","_from":"30171","_to":"56441"} +{"$label":"ACTS_IN","name":"Bobby Chester","type":"Role","_key":"119829","_from":"30172","_to":"70368"} +{"$label":"ACTS_IN","name":"DeeCee","type":"Role","_key":"114430","_from":"30172","_to":"67409"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"88875","_from":"30172","_to":"52660"} +{"$label":"ACTS_IN","name":"Officer Michael Deacon","type":"Role","_key":"57394","_from":"30172","_to":"36384"} +{"$label":"ACTS_IN","name":"Dr. Gibbs","type":"Role","_key":"102829","_from":"30175","_to":"60486"} +{"$label":"ACTS_IN","name":"Raymond Kingsley","type":"Role","_key":"52178","_from":"30175","_to":"34000"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120687","_from":"30177","_to":"70879"} +{"$label":"ACTS_IN","name":"Fa Li","type":"Role","_key":"88983","_from":"30177","_to":"52708"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"45590","_from":"30181","_to":"30180"} +{"$label":"ACTS_IN","name":"August Wilhelm Iffland","type":"Role","_key":"63135","_from":"30181","_to":"39598"} +{"$label":"ACTS_IN","name":"Taxi driver","type":"Role","_key":"45600","_from":"30187","_to":"30182"} +{"$label":"ACTS_IN","name":"James Simpson","type":"Role","_key":"45598","_from":"30186","_to":"30182"} +{"$label":"ACTS_IN","name":"Serg. Daniel Shine","type":"Role","_key":"45596","_from":"30185","_to":"30182"} +{"$label":"ACTS_IN","name":"Rex Willoughby","type":"Role","_key":"45594","_from":"30184","_to":"30182"} +{"$label":"DIRECTED","_key":"45593","_from":"30183","_to":"30182"} +{"$label":"ACTS_IN","name":"District Attorney Tom Paine","type":"Role","_key":"104098","_from":"30186","_to":"61243"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"45610","_from":"30197","_to":"30188"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"45609","_from":"30196","_to":"30188"} +{"$label":"ACTS_IN","name":"Ronny Jansen","type":"Role","_key":"45608","_from":"30195","_to":"30188"} +{"$label":"ACTS_IN","name":"Willem","type":"Role","_key":"45607","_from":"30194","_to":"30188"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"45606","_from":"30193","_to":"30188"} +{"$label":"ACTS_IN","name":"Reene Klein","type":"Role","_key":"45605","_from":"30192","_to":"30188"} +{"$label":"ACTS_IN","name":"Bennie","type":"Role","_key":"45604","_from":"30191","_to":"30188"} +{"$label":"ACTS_IN","name":"Erik Verginkel","type":"Role","_key":"45603","_from":"30190","_to":"30188"} +{"$label":"DIRECTED","_key":"45602","_from":"30189","_to":"30188"} +{"$label":"ACTS_IN","name":"Mrs. Byrd","type":"Role","_key":"45613","_from":"30199","_to":"30198"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"45627","_from":"30209","_to":"30200"} +{"$label":"ACTS_IN","name":"Danny Dale","type":"Role","_key":"45626","_from":"30208","_to":"30200"} +{"$label":"ACTS_IN","name":"Dr. Karros","type":"Role","_key":"45625","_from":"30207","_to":"30200"} +{"$label":"ACTS_IN","name":"Julia Caine","type":"Role","_key":"45624","_from":"30206","_to":"30200"} +{"$label":"ACTS_IN","name":"Marty Bloom","type":"Role","_key":"45623","_from":"30205","_to":"30200"} +{"$label":"ACTS_IN","name":"Henry Caine","type":"Role","_key":"45622","_from":"30204","_to":"30200"} +{"$label":"ACTS_IN","name":"Sherry Clarke","type":"Role","_key":"45621","_from":"30203","_to":"30200"} +{"$label":"ACTS_IN","name":"Abe Dale","type":"Role","_key":"45620","_from":"30202","_to":"30200"} +{"$label":"DIRECTED","_key":"45619","_from":"30201","_to":"30200"} +{"$label":"DIRECTED","_key":"100256","_from":"30201","_to":"59126"} +{"$label":"DIRECTED","_key":"64210","_from":"30201","_to":"40055"} +{"$label":"DIRECTED","_key":"64200","_from":"30201","_to":"40050"} +{"$label":"DIRECTED","_key":"64191","_from":"30201","_to":"40048"} +{"$label":"DIRECTED","_key":"51992","_from":"30201","_to":"33900"} +{"$label":"ACTS_IN","name":"Mal","type":"Role","_key":"108690","_from":"30202","_to":"64246"} +{"$label":"ACTS_IN","name":"Col. Steve Trevor","type":"Role","_key":"104077","_from":"30202","_to":"61239"} +{"$label":"ACTS_IN","name":"Captain Hammer (3 episodes, 2008)","type":"Role","_key":"99526","_from":"30202","_to":"58670"} +{"$label":"ACTS_IN","name":"Dr. Pomatter","type":"Role","_key":"65513","_from":"30202","_to":"40608"} +{"$label":"ACTS_IN","name":"Bill Pardy","type":"Role","_key":"52183","_from":"30202","_to":"34004"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"101782","_from":"30203","_to":"59899"} +{"$label":"ACTS_IN","name":"Pat Tate","type":"Role","_key":"92211","_from":"30204","_to":"54418"} +{"$label":"ACTS_IN","name":"Nick Barton","type":"Role","_key":"51097","_from":"30204","_to":"33334"} +{"$label":"ACTS_IN","name":"Cujo","type":"Role","_key":"58147","_from":"30205","_to":"36780"} +{"$label":"ACTS_IN","name":"Ms. Chambers (ISN reporter)","type":"Role","_key":"103870","_from":"30206","_to":"61091"} +{"$label":"ACTS_IN","name":"Catherine Sandborn","type":"Role","_key":"100029","_from":"30206","_to":"59005"} +{"$label":"ACTS_IN","name":"Pink Merfairy","type":"Role","_key":"93739","_from":"30206","_to":"55176"} +{"$label":"ACTS_IN","name":"Col. Gavin Bishop","type":"Role","_key":"51911","_from":"30207","_to":"33857"} +{"$label":"ACTS_IN","name":"Jingo Asakuma","type":"Role","_key":"45638","_from":"30213","_to":"30210"} +{"$label":"ACTS_IN","name":"Ishihara","type":"Role","_key":"45636","_from":"30212","_to":"30210"} +{"$label":"ACTS_IN","name":"Bob Richmond","type":"Role","_key":"45633","_from":"30211","_to":"30210"} +{"$label":"ACTS_IN","name":"Mr. Arable","type":"Role","_key":"58990","_from":"30211","_to":"37240"} +{"$label":"ACTS_IN","name":"Ben Woodward","type":"Role","_key":"46654","_from":"30211","_to":"30813"} +{"$label":"ACTS_IN","name":"Kenji","type":"Role","_key":"95952","_from":"30212","_to":"56416"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"119736","_from":"30213","_to":"70316"} +{"$label":"ACTS_IN","name":"Akivasha","type":"Role","_key":"114121","_from":"30213","_to":"67211"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"108074","_from":"30213","_to":"63848"} +{"$label":"ACTS_IN","name":"Nani","type":"Role","_key":"104944","_from":"30213","_to":"61750"} +{"$label":"ACTS_IN","name":"Minako Okeya","type":"Role","_key":"93032","_from":"30213","_to":"54849"} +{"$label":"ACTS_IN","name":"Nani (voice)","type":"Role","_key":"70543","_from":"30213","_to":"42931"} +{"$label":"ACTS_IN","name":"Victoria Chapell","type":"Role","_key":"53026","_from":"30213","_to":"34336"} +{"$label":"ACTS_IN","name":"Cassandra Wong","type":"Role","_key":"51206","_from":"30213","_to":"33394"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"51199","_from":"30213","_to":"33391"} +{"$label":"ACTS_IN","name":"District Commissioner","type":"Role","_key":"45651","_from":"30217","_to":"30214"} +{"$label":"ACTS_IN","name":"Rina Van Niekirk","type":"Role","_key":"45646","_from":"30216","_to":"30214"} +{"$label":"ACTS_IN","name":"Major Horn","type":"Role","_key":"45645","_from":"30215","_to":"30214"} +{"$label":"ACTS_IN","name":"William McCrory","type":"Role","_key":"119794","_from":"30215","_to":"70340"} +{"$label":"ACTS_IN","name":"Dr. Worley\/Nome King","type":"Role","_key":"93040","_from":"30215","_to":"54853"} +{"$label":"ACTS_IN","name":"Father Morning","type":"Role","_key":"70879","_from":"30215","_to":"43072"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"70429","_from":"30215","_to":"42880"} +{"$label":"ACTS_IN","name":"Little John","type":"Role","_key":"65790","_from":"30215","_to":"40718"} +{"$label":"ACTS_IN","name":"Colin Mackenzie","type":"Role","_key":"120800","_from":"30217","_to":"70946"} +{"$label":"ACTS_IN","name":"Capt. Collier","type":"Role","_key":"119207","_from":"30217","_to":"70041"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"106251","_from":"30217","_to":"62589"} +{"$label":"ACTS_IN","name":"Prestongrange","type":"Role","_key":"91799","_from":"30217","_to":"54153"} +{"$label":"ACTS_IN","name":"Junggeselle","type":"Role","_key":"45669","_from":"30228","_to":"30218"} +{"$label":"ACTS_IN","name":"Titus","type":"Role","_key":"45667","_from":"30227","_to":"30218"} +{"$label":"ACTS_IN","name":"Luki","type":"Role","_key":"45666","_from":"30226","_to":"30218"} +{"$label":"ACTS_IN","name":"Torte","type":"Role","_key":"45660","_from":"30225","_to":"30218"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"45658","_from":"30224","_to":"30218"} +{"$label":"ACTS_IN","name":"Wilma","type":"Role","_key":"45657","_from":"30223","_to":"30218"} +{"$label":"ACTS_IN","name":"Trude","type":"Role","_key":"45656","_from":"30222","_to":"30218"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"45655","_from":"30221","_to":"30218"} +{"$label":"ACTS_IN","name":"Frieda","type":"Role","_key":"45654","_from":"30220","_to":"30218"} +{"$label":"ACTS_IN","name":"Sprotte","type":"Role","_key":"45653","_from":"30219","_to":"30218"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"103025","_from":"30220","_to":"60605"} +{"$label":"ACTS_IN","name":"Jenny Schmidt","type":"Role","_key":"90473","_from":"30220","_to":"53453"} +{"$label":"ACTS_IN","name":"Mc Donald","type":"Role","_key":"71769","_from":"30228","_to":"43439"} +{"$label":"ACTS_IN","name":"Kreuzkamm Senior","type":"Role","_key":"63804","_from":"30228","_to":"39895"} +{"$label":"ACTS_IN","name":"Julius Limbani","type":"Role","_key":"45682","_from":"30235","_to":"30229"} +{"$label":"ACTS_IN","name":"Sgt. Jock McTaggart","type":"Role","_key":"45680","_from":"30234","_to":"30229"} +{"$label":"ACTS_IN","name":"Arthur Witty","type":"Role","_key":"45679","_from":"30233","_to":"30229"} +{"$label":"ACTS_IN","name":"RSM Sandy Young","type":"Role","_key":"45677","_from":"30232","_to":"30229"} +{"$label":"ACTS_IN","name":"Sgt. Jesse Blake","type":"Role","_key":"45676","_from":"30231","_to":"30229"} +{"$label":"DIRECTED","_key":"45670","_from":"30230","_to":"30229"} +{"$label":"DIRECTED","_key":"120792","_from":"30230","_to":"70946"} +{"$label":"DIRECTED","_key":"118320","_from":"30230","_to":"69552"} +{"$label":"DIRECTED","_key":"103774","_from":"30230","_to":"61040"} +{"$label":"DIRECTED","_key":"66111","_from":"30230","_to":"40897"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"64263","_from":"30231","_to":"40077"} +{"$label":"ACTS_IN","name":"Charlie Wilton","type":"Role","_key":"120799","_from":"30233","_to":"70946"} +{"$label":"ACTS_IN","name":"Wireless Operator John 'Jack' Phillips","type":"Role","_key":"67009","_from":"30233","_to":"41361"} +{"$label":"ACTS_IN","name":"Uncle Jim","type":"Role","_key":"101438","_from":"30234","_to":"59709"} +{"$label":"ACTS_IN","name":"Mlungisi","type":"Role","_key":"97021","_from":"30235","_to":"57064"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"45694","_from":"30246","_to":"30236"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"45693","_from":"30245","_to":"30236"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"45692","_from":"30244","_to":"30236"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"45691","_from":"30243","_to":"30236"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"45690","_from":"30242","_to":"30236"} +{"$label":"ACTS_IN","name":"Dr. Haiden","type":"Role","_key":"45688","_from":"30241","_to":"30236"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"45687","_from":"30240","_to":"30236"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"45686","_from":"30239","_to":"30236"} +{"$label":"ACTS_IN","name":"Laura Collins","type":"Role","_key":"45685","_from":"30238","_to":"30236"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"45684","_from":"30237","_to":"30236"} +{"$label":"ACTS_IN","name":"Dr. Austin","type":"Role","_key":"45707","_from":"30251","_to":"30247"} +{"$label":"ACTS_IN","name":"Airman Billy McCoy","type":"Role","_key":"45704","_from":"30250","_to":"30247"} +{"$label":"ACTS_IN","name":"Denise Dahlberg","type":"Role","_key":"45702","_from":"30249","_to":"30247"} +{"$label":"ACTS_IN","name":"Jim Dahlberg","type":"Role","_key":"45697","_from":"30248","_to":"30247"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"120182","_from":"30248","_to":"70585"} +{"$label":"ACTS_IN","name":"Pap Noone","type":"Role","_key":"56702","_from":"30248","_to":"36013"} +{"$label":"ACTS_IN","name":"Dirk Michaels","type":"Role","_key":"113480","_from":"30250","_to":"66866"} +{"$label":"ACTS_IN","name":"Braden","type":"Role","_key":"58763","_from":"30250","_to":"37115"} +{"$label":"DIRECTED","_key":"45714","_from":"30255","_to":"30252"} +{"$label":"ACTS_IN","name":"La voisine","type":"Role","_key":"45712","_from":"30254","_to":"30252"} +{"$label":"ACTS_IN","name":"La secr\u00e9taire","type":"Role","_key":"45711","_from":"30253","_to":"30252"} +{"$label":"DIRECTED","_key":"45721","_from":"30260","_to":"30256"} +{"$label":"ACTS_IN","name":"Taxi Dispatcher","type":"Role","_key":"45720","_from":"30259","_to":"30256"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"45719","_from":"30258","_to":"30256"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"45718","_from":"30257","_to":"30256"} +{"$label":"ACTS_IN","name":"Enik","type":"Role","_key":"115114","_from":"30257","_to":"67789"} +{"$label":"ACTS_IN","name":"Heiner","type":"Role","_key":"45728","_from":"30263","_to":"30261"} +{"$label":"ACTS_IN","name":"Militz","type":"Role","_key":"45726","_from":"30262","_to":"30261"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"45743","_from":"30268","_to":"30264"} +{"$label":"ACTS_IN","name":"Wolfgang Amadeus Wirsing","type":"Role","_key":"45742","_from":"30267","_to":"30264"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"45740","_from":"30266","_to":"30264"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"45737","_from":"30265","_to":"30264"} +{"$label":"ACTS_IN","name":"Oberstudienrat Blaumeier","type":"Role","_key":"88888","_from":"30267","_to":"52663"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"45755","_from":"30272","_to":"30269"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"45754","_from":"30271","_to":"30269"} +{"$label":"ACTS_IN","name":"Wei\u00dfer B\u00fcffel","type":"Role","_key":"45753","_from":"30270","_to":"30269"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"45762","_from":"30279","_to":"30273"} +{"$label":"ACTS_IN","name":"Mr. Howard","type":"Role","_key":"45761","_from":"30278","_to":"30273"} +{"$label":"ACTS_IN","name":"Mr. Dugan","type":"Role","_key":"45760","_from":"30277","_to":"30273"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"45759","_from":"30276","_to":"30273"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"45757","_from":"30275","_to":"30273"} +{"$label":"DIRECTED","_key":"45756","_from":"30274","_to":"30273"} +{"$label":"ACTS_IN","name":"Byron","type":"Role","_key":"121413","_from":"30275","_to":"71338"} +{"$label":"ACTS_IN","name":"Male Voice (voice)","type":"Role","_key":"104890","_from":"30275","_to":"61711"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"67606","_from":"30276","_to":"41614"} +{"$label":"ACTS_IN","name":"Col. Fairchild","type":"Role","_key":"120823","_from":"30278","_to":"70947"} +{"$label":"ACTS_IN","name":"Chris Hayden","type":"Role","_key":"110596","_from":"30278","_to":"65341"} +{"$label":"ACTS_IN","name":"David McMillian","type":"Role","_key":"97327","_from":"30278","_to":"57305"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46322","_from":"30278","_to":"30610"} +{"$label":"ACTS_IN","name":"Lisa Janusch","type":"Role","_key":"109941","_from":"30279","_to":"64959"} +{"$label":"ACTS_IN","name":"Maggie Carter","type":"Role","_key":"108162","_from":"30279","_to":"63922"} +{"$label":"ACTS_IN","name":"Wilma","type":"Role","_key":"51154","_from":"30279","_to":"33367"} +{"$label":"ACTS_IN","name":"Tates Gro\u00dfvater","type":"Role","_key":"45775","_from":"30288","_to":"30280"} +{"$label":"ACTS_IN","name":"Claudes Vater","type":"Role","_key":"45772","_from":"30287","_to":"30280"} +{"$label":"ACTS_IN","name":"Ken Park","type":"Role","_key":"45770","_from":"30286","_to":"30280"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"45769","_from":"30285","_to":"30280"} +{"$label":"ACTS_IN","name":"Shawn","type":"Role","_key":"45768","_from":"30284","_to":"30280"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"45767","_from":"30283","_to":"30280"} +{"$label":"DIRECTED","_key":"45764","_from":"30282","_to":"30280"} +{"$label":"DIRECTED","_key":"45763","_from":"30281","_to":"30280"} +{"$label":"DIRECTED","_key":"116347","_from":"30281","_to":"68488"} +{"$label":"DIRECTED","_key":"91231","_from":"30281","_to":"53795"} +{"$label":"DIRECTED","_key":"54407","_from":"30281","_to":"34894"} +{"$label":"DIRECTED","_key":"53244","_from":"30281","_to":"34430"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"91230","_from":"30283","_to":"53795"} +{"$label":"DIRECTED","_key":"45792","_from":"30297","_to":"30289"} +{"$label":"ACTS_IN","name":"Victim Girl","type":"Role","_key":"45791","_from":"30296","_to":"30289"} +{"$label":"ACTS_IN","name":"Editor #1","type":"Role","_key":"45789","_from":"30295","_to":"30289"} +{"$label":"ACTS_IN","name":"Joke Guy","type":"Role","_key":"45787","_from":"30294","_to":"30289"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"45786","_from":"30293","_to":"30289"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"45785","_from":"30292","_to":"30289"} +{"$label":"ACTS_IN","name":"Theater Girl","type":"Role","_key":"45784","_from":"30291","_to":"30289"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"45781","_from":"30290","_to":"30289"} +{"$label":"ACTS_IN","name":"Kate Hartounian","type":"Role","_key":"116470","_from":"30292","_to":"68550"} +{"$label":"ACTS_IN","name":"Fatso Gribbens","type":"Role","_key":"108503","_from":"30295","_to":"64131"} +{"$label":"ACTS_IN","name":"Lady ( voice )","type":"Role","_key":"45803","_from":"30301","_to":"30298"} +{"$label":"ACTS_IN","name":"Palastwache ( voice )","type":"Role","_key":"45800","_from":"30300","_to":"30298"} +{"$label":"DIRECTED","_key":"45793","_from":"30299","_to":"30298"} +{"$label":"ACTS_IN","name":"Carmila (Voice)","type":"Role","_key":"106604","_from":"30301","_to":"62814"} +{"$label":"ACTS_IN","name":"K\u00f6nigin Marie-Therese","type":"Role","_key":"45821","_from":"30305","_to":"30302"} +{"$label":"ACTS_IN","name":"Colbert","type":"Role","_key":"45815","_from":"30304","_to":"30302"} +{"$label":"ACTS_IN","name":"Philippe d`Orleans","type":"Role","_key":"45814","_from":"30303","_to":"30302"} +{"$label":"ACTS_IN","name":"Louis Durante","type":"Role","_key":"45828","_from":"30309","_to":"30306"} +{"$label":"ACTS_IN","name":"Dolores Durante","type":"Role","_key":"45827","_from":"30308","_to":"30306"} +{"$label":"ACTS_IN","name":"Lawrence Woodruff","type":"Role","_key":"45826","_from":"30307","_to":"30306"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102932","_from":"30307","_to":"60545"} +{"$label":"ACTS_IN","name":"Elliot Hopper","type":"Role","_key":"63610","_from":"30307","_to":"39797"} +{"$label":"ACTS_IN","name":"Pearl (voice)","type":"Role","_key":"120522","_from":"30308","_to":"70788"} +{"$label":"ACTS_IN","name":"Joy Miller","type":"Role","_key":"114260","_from":"30308","_to":"67297"} +{"$label":"ACTS_IN","name":"Pamela Finklestein","type":"Role","_key":"72994","_from":"30308","_to":"43930"} +{"$label":"ACTS_IN","name":"Bobbi Flekman","type":"Role","_key":"67430","_from":"30308","_to":"41533"} +{"$label":"ACTS_IN","name":"Joy Munchack","type":"Role","_key":"61357","_from":"30308","_to":"38719"} +{"$label":"ACTS_IN","name":"Dr. Jekyll","type":"Role","_key":"45851","_from":"30317","_to":"30311"} +{"$label":"ACTS_IN","name":"Dr. Victor Frankenstein","type":"Role","_key":"45849","_from":"30316","_to":"30311"} +{"$label":"ACTS_IN","name":"Verona","type":"Role","_key":"45847","_from":"30315","_to":"30311"} +{"$label":"ACTS_IN","name":"Velkan","type":"Role","_key":"45844","_from":"30314","_to":"30311"} +{"$label":"ACTS_IN","name":"Frankenstein's Monster","type":"Role","_key":"45842","_from":"30313","_to":"30311"} +{"$label":"ACTS_IN","name":"Marishka","type":"Role","_key":"45840","_from":"30312","_to":"30311"} +{"$label":"ACTS_IN","name":"Lulu Fritz","type":"Role","_key":"102043","_from":"30312","_to":"60035"} +{"$label":"ACTS_IN","name":"Kira Hayden","type":"Role","_key":"95197","_from":"30312","_to":"56012"} +{"$label":"ACTS_IN","name":"Rafe Perry","type":"Role","_key":"109646","_from":"30314","_to":"64758"} +{"$label":"ACTS_IN","name":"Blake Collins","type":"Role","_key":"49064","_from":"30314","_to":"32152"} +{"$label":"ACTS_IN","name":"Carmilla","type":"Role","_key":"115473","_from":"30315","_to":"67985"} +{"$label":"ACTS_IN","name":"Mr. Elliot","type":"Role","_key":"110898","_from":"30316","_to":"65506"} +{"$label":"ACTS_IN","name":"Gunther","type":"Role","_key":"68420","_from":"30316","_to":"41974"} +{"$label":"ACTS_IN","name":"Leonard Bast","type":"Role","_key":"48987","_from":"30316","_to":"32111"} +{"$label":"DIRECTED","_key":"45854","_from":"30320","_to":"30318"} +{"$label":"ACTS_IN","name":"Jake Denning","type":"Role","_key":"45853","_from":"30319","_to":"30318"} +{"$label":"ACTS_IN","name":"Kull","type":"Role","_key":"114120","_from":"30319","_to":"67211"} +{"$label":"ACTS_IN","name":"Sheriff Preston Biggs","type":"Role","_key":"110530","_from":"30319","_to":"65312"} +{"$label":"ACTS_IN","name":"Nick Prescott","type":"Role","_key":"103029","_from":"30319","_to":"60608"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"59061","_from":"30319","_to":"37284"} +{"$label":"ACTS_IN","name":"Hauptmann","type":"Role","_key":"46193","_from":"30319","_to":"30529"} +{"$label":"DIRECTED","_key":"58297","_from":"30320","_to":"36857"} +{"$label":"DIRECTED","_key":"58280","_from":"30320","_to":"36848"} +{"$label":"ACTS_IN","name":"Man in Sheriff's Station","type":"Role","_key":"58279","_from":"30320","_to":"36848"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"45859","_from":"30325","_to":"30321"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"45858","_from":"30324","_to":"30321"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"45857","_from":"30323","_to":"30321"} +{"$label":"DIRECTED","_key":"45855","_from":"30322","_to":"30321"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"58247","_from":"30323","_to":"36835"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"58248","_from":"30324","_to":"36835"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"58249","_from":"30325","_to":"36835"} +{"$label":"DIRECTED","_key":"45871","_from":"30337","_to":"30326"} +{"$label":"ACTS_IN","name":"Hunter's Kid","type":"Role","_key":"45870","_from":"30336","_to":"30326"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"45869","_from":"30335","_to":"30326"} +{"$label":"ACTS_IN","name":"Iris","type":"Role","_key":"45868","_from":"30334","_to":"30326"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"45867","_from":"30333","_to":"30326"} +{"$label":"ACTS_IN","name":"Chris' Mom","type":"Role","_key":"45866","_from":"30332","_to":"30326"} +{"$label":"ACTS_IN","name":"AK","type":"Role","_key":"45865","_from":"30331","_to":"30326"} +{"$label":"ACTS_IN","name":"Jack Hays","type":"Role","_key":"45864","_from":"30330","_to":"30326"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"45863","_from":"30329","_to":"30326"} +{"$label":"ACTS_IN","name":"Nick Mills","type":"Role","_key":"45862","_from":"30328","_to":"30326"} +{"$label":"ACTS_IN","name":"Sam Mills","type":"Role","_key":"45861","_from":"30327","_to":"30326"} +{"$label":"ACTS_IN","name":"Dr. Ahmed","type":"Role","_key":"58218","_from":"30329","_to":"36816"} +{"$label":"ACTS_IN","name":"Freddy Li","type":"Role","_key":"61794","_from":"30330","_to":"38899"} +{"$label":"DIRECTED","_key":"45874","_from":"30340","_to":"30338"} +{"$label":"ACTS_IN","name":"Princess \/ Dancer","type":"Role","_key":"45873","_from":"30339","_to":"30338"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"45880","_from":"30344","_to":"30341"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"45879","_from":"30343","_to":"30341"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"45878","_from":"30342","_to":"30341"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"118961","_from":"30342","_to":"69920"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"68180","_from":"30342","_to":"41878"} +{"$label":"ACTS_IN","name":"Sarah Wenham","type":"Role","_key":"58476","_from":"30342","_to":"36963"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"55322","_from":"30342","_to":"35273"} +{"$label":"ACTS_IN","name":"Elizabeth Clayton","type":"Role","_key":"45891","_from":"30347","_to":"30345"} +{"$label":"ACTS_IN","name":"Lt. Tejada","type":"Role","_key":"45889","_from":"30346","_to":"30345"} +{"$label":"ACTS_IN","name":"Mrs. Kasperian","type":"Role","_key":"104330","_from":"30347","_to":"61380"} +{"$label":"ACTS_IN","name":"Lei","type":"Role","_key":"45905","_from":"30361","_to":"30348"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"45904","_from":"30360","_to":"30348"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"45903","_from":"30359","_to":"30348"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"45902","_from":"30358","_to":"30348"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"45901","_from":"30357","_to":"30348"} +{"$label":"ACTS_IN","name":"Jenn","type":"Role","_key":"45900","_from":"30356","_to":"30348"} +{"$label":"ACTS_IN","name":"Kassierer","type":"Role","_key":"45899","_from":"30355","_to":"30348"} +{"$label":"ACTS_IN","name":"Hud","type":"Role","_key":"45898","_from":"30354","_to":"30348"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"45896","_from":"30353","_to":"30348"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"45895","_from":"30352","_to":"30348"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"45894","_from":"30351","_to":"30348"} +{"$label":"ACTS_IN","name":"Marlena","type":"Role","_key":"45893","_from":"30350","_to":"30348"} +{"$label":"DIRECTED","_key":"45892","_from":"30349","_to":"30348"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"117807","_from":"30350","_to":"69246"} +{"$label":"ACTS_IN","name":"Ami","type":"Role","_key":"95367","_from":"30350","_to":"56099"} +{"$label":"ACTS_IN","name":"Janis Ian","type":"Role","_key":"64683","_from":"30350","_to":"40287"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"96752","_from":"30351","_to":"56913"} +{"$label":"ACTS_IN","name":"Kate Tunney","type":"Role","_key":"58477","_from":"30351","_to":"36963"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"55330","_from":"30351","_to":"35273"} +{"$label":"ACTS_IN","name":"Casey Beldon","type":"Role","_key":"96641","_from":"30352","_to":"56839"} +{"$label":"ACTS_IN","name":"Tuffnut","type":"Role","_key":"61576","_from":"30354","_to":"38816"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"119331","_from":"30357","_to":"70114"} +{"$label":"ACTS_IN","name":"Spaz","type":"Role","_key":"112251","_from":"30357","_to":"66289"} +{"$label":"ACTS_IN","name":"Tino Hull","type":"Role","_key":"102619","_from":"30357","_to":"60376"} +{"$label":"ACTS_IN","name":"Reece","type":"Role","_key":"105271","_from":"30358","_to":"61948"} +{"$label":"ACTS_IN","name":"Abraham","type":"Role","_key":"48354","_from":"30358","_to":"31743"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"57755","_from":"30359","_to":"36554"} +{"$label":"ACTS_IN","name":"Agent Sophie Trinh","type":"Role","_key":"96764","_from":"30360","_to":"56916"} +{"$label":"ACTS_IN","name":"Kianna","type":"Role","_key":"47995","_from":"30360","_to":"31575"} +{"$label":"DIRECTED","_key":"45906","_from":"30363","_to":"30362"} +{"$label":"ACTS_IN","name":"Jesse James","type":"Role","_key":"101540","_from":"30363","_to":"59766"} +{"$label":"ACTS_IN","name":"J\u00fcrgens","type":"Role","_key":"45926","_from":"30369","_to":"30364"} +{"$label":"ACTS_IN","name":"Nick Sturm","type":"Role","_key":"45924","_from":"30368","_to":"30364"} +{"$label":"ACTS_IN","name":"Chefin Autovermietung","type":"Role","_key":"45923","_from":"30367","_to":"30364"} +{"$label":"ACTS_IN","name":"Lissie","type":"Role","_key":"45921","_from":"30366","_to":"30364"} +{"$label":"ACTS_IN","name":"Ewa","type":"Role","_key":"45919","_from":"30365","_to":"30364"} +{"$label":"ACTS_IN","name":"Korba","type":"Role","_key":"100809","_from":"30365","_to":"59429"} +{"$label":"ACTS_IN","name":"Vincent Stevens","type":"Role","_key":"114150","_from":"30369","_to":"67228"} +{"$label":"ACTS_IN","name":"Richard Panter","type":"Role","_key":"71880","_from":"30369","_to":"43491"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"63749","_from":"30369","_to":"39862"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"51337","_from":"30369","_to":"33478"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"45940","_from":"30375","_to":"30370"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"45939","_from":"30374","_to":"30370"} +{"$label":"ACTS_IN","name":"Clay","type":"Role","_key":"45937","_from":"30373","_to":"30370"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"45936","_from":"30372","_to":"30370"} +{"$label":"ACTS_IN","name":"Cara","type":"Role","_key":"45935","_from":"30371","_to":"30370"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"107701","_from":"30371","_to":"63574"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"119443","_from":"30374","_to":"70168"} +{"$label":"ACTS_IN","name":"Edie","type":"Role","_key":"105348","_from":"30374","_to":"61983"} +{"$label":"ACTS_IN","name":"Eliot","type":"Role","_key":"61225","_from":"30374","_to":"38671"} +{"$label":"ACTS_IN","name":"Boy's Mother","type":"Role","_key":"48010","_from":"30374","_to":"31581"} +{"$label":"ACTS_IN","name":"Selma","type":"Role","_key":"45948","_from":"30379","_to":"30376"} +{"$label":"ACTS_IN","name":"Barbara Cleving","type":"Role","_key":"45947","_from":"30378","_to":"30376"} +{"$label":"ACTS_IN","name":"Erich Eckberg","type":"Role","_key":"45943","_from":"30377","_to":"30376"} +{"$label":"DIRECTED","_key":"45956","_from":"30384","_to":"30380"} +{"$label":"ACTS_IN","name":"Maddux","type":"Role","_key":"45955","_from":"30383","_to":"30380"} +{"$label":"ACTS_IN","name":"Timo Cruz","type":"Role","_key":"45953","_from":"30382","_to":"30380"} +{"$label":"ACTS_IN","name":"Damien Carter","type":"Role","_key":"45952","_from":"30381","_to":"30380"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"95443","_from":"30381","_to":"56146"} +{"$label":"ACTS_IN","name":"Aseel Tare","type":"Role","_key":"65539","_from":"30381","_to":"40621"} +{"$label":"ACTS_IN","name":"Blake","type":"Role","_key":"60167","_from":"30381","_to":"37960"} +{"$label":"ACTS_IN","name":"Andy Lopez","type":"Role","_key":"106983","_from":"30382","_to":"63058"} +{"$label":"ACTS_IN","name":"Wilson Jr.","type":"Role","_key":"103401","_from":"30382","_to":"60828"} +{"$label":"ACTS_IN","name":"Rudy Bonilla","type":"Role","_key":"101218","_from":"30382","_to":"59618"} +{"$label":"ACTS_IN","name":"Naps","type":"Role","_key":"100722","_from":"30382","_to":"59387"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"96941","_from":"30382","_to":"57014"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"55556","_from":"30382","_to":"35381"} +{"$label":"ACTS_IN","name":"Carey Fuller","type":"Role","_key":"98858","_from":"30383","_to":"58251"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"93303","_from":"30383","_to":"54964"} +{"$label":"ACTS_IN","name":"Lewis Romero","type":"Role","_key":"52869","_from":"30383","_to":"34263"} +{"$label":"DIRECTED","_key":"63146","_from":"30384","_to":"39600"} +{"$label":"DIRECTED","_key":"57092","_from":"30384","_to":"36232"} +{"$label":"DIRECTED","_key":"51164","_from":"30384","_to":"33370"} +{"$label":"DIRECTED","_key":"45961","_from":"30387","_to":"30385"} +{"$label":"ACTS_IN","name":"Tim Bender","type":"Role","_key":"45957","_from":"30386","_to":"30385"} +{"$label":"ACTS_IN","name":"George Harper","type":"Role","_key":"45966","_from":"30391","_to":"30388"} +{"$label":"ACTS_IN","name":"Susan Kelly","type":"Role","_key":"45965","_from":"30390","_to":"30388"} +{"$label":"ACTS_IN","name":"Lory Ridgeway","type":"Role","_key":"45964","_from":"30389","_to":"30388"} +{"$label":"ACTS_IN","name":"Geheimrat Winter","type":"Role","_key":"45980","_from":"30397","_to":"30392"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"45978","_from":"30396","_to":"30392"} +{"$label":"ACTS_IN","name":"Anstaltsarzt","type":"Role","_key":"45974","_from":"30395","_to":"30392"} +{"$label":"ACTS_IN","name":"Leo L`Arronge","type":"Role","_key":"45972","_from":"30394","_to":"30392"} +{"$label":"ACTS_IN","name":"Frau von Aldenhoff","type":"Role","_key":"45971","_from":"30393","_to":"30392"} +{"$label":"ACTS_IN","name":"Nancy Pertinance","type":"Role","_key":"45983","_from":"30400","_to":"30398"} +{"$label":"DIRECTED","_key":"45982","_from":"30399","_to":"30398"} +{"$label":"ACTS_IN","name":"Queen Fallopia","type":"Role","_key":"101247","_from":"30400","_to":"59626"} +{"$label":"ACTS_IN","name":"Veronica Flame","type":"Role","_key":"71754","_from":"30400","_to":"43433"} +{"$label":"ACTS_IN","name":"Zombie","type":"Role","_key":"45998","_from":"30405","_to":"30401"} +{"$label":"ACTS_IN","name":"Menard's Nurse","type":"Role","_key":"45996","_from":"30404","_to":"30401"} +{"$label":"ACTS_IN","name":"Susan Barrett","type":"Role","_key":"45995","_from":"30403","_to":"30401"} +{"$label":"ACTS_IN","name":"Brian Hull","type":"Role","_key":"45994","_from":"30402","_to":"30401"} +{"$label":"ACTS_IN","name":"Dr. Harris","type":"Role","_key":"119223","_from":"30402","_to":"70047"} +{"$label":"DIRECTED","_key":"46009","_from":"30411","_to":"30406"} +{"$label":"ACTS_IN","name":"Will Castle","type":"Role","_key":"46008","_from":"30410","_to":"30406"} +{"$label":"ACTS_IN","name":"Harry Heck","type":"Role","_key":"46005","_from":"30409","_to":"30406"} +{"$label":"ACTS_IN","name":"Bobby Saint","type":"Role","_key":"46004","_from":"30408","_to":"30406"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"46003","_from":"30407","_to":"30406"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"102551","_from":"30407","_to":"60336"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"70484","_from":"30407","_to":"42911"} +{"$label":"ACTS_IN","name":"Jessie Duncan","type":"Role","_key":"67601","_from":"30407","_to":"41612"} +{"$label":"ACTS_IN","name":"Nina Giamoro","type":"Role","_key":"56733","_from":"30407","_to":"36041"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"52966","_from":"30407","_to":"34311"} +{"$label":"ACTS_IN","name":"Laure\/lily","type":"Role","_key":"52815","_from":"30407","_to":"34249"} +{"$label":"ACTS_IN","name":"Cpl. Aliteri","type":"Role","_key":"97523","_from":"30408","_to":"57426"} +{"$label":"DIRECTED","_key":"46010","_from":"30413","_to":"30412"} +{"$label":"DIRECTED","_key":"104663","_from":"30413","_to":"61577"} +{"$label":"ACTS_IN","name":"Chefredakteur","type":"Role","_key":"46029","_from":"30418","_to":"30414"} +{"$label":"ACTS_IN","name":"Conferencier","type":"Role","_key":"46027","_from":"30417","_to":"30414"} +{"$label":"ACTS_IN","name":"Anatol","type":"Role","_key":"46023","_from":"30416","_to":"30414"} +{"$label":"DIRECTED","_key":"46020","_from":"30415","_to":"30414"} +{"$label":"DIRECTED","_key":"68360","_from":"30415","_to":"41953"} +{"$label":"ACTS_IN","name":"Pfarrer","type":"Role","_key":"89264","_from":"30416","_to":"52849"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"63178","_from":"30416","_to":"39627"} +{"$label":"ACTS_IN","name":"Ari Leschnikoff","type":"Role","_key":"54444","_from":"30416","_to":"34914"} +{"$label":"ACTS_IN","name":"Frank Dranneman","type":"Role","_key":"106269","_from":"30418","_to":"62603"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"58323","_from":"30418","_to":"36872"} +{"$label":"DIRECTED","_key":"46044","_from":"30424","_to":"30419"} +{"$label":"ACTS_IN","name":"Raffi","type":"Role","_key":"46042","_from":"30423","_to":"30419"} +{"$label":"ACTS_IN","name":"Mauricet","type":"Role","_key":"46040","_from":"30422","_to":"30419"} +{"$label":"ACTS_IN","name":"Vogel","type":"Role","_key":"46038","_from":"30421","_to":"30419"} +{"$label":"ACTS_IN","name":"Vavinet","type":"Role","_key":"46037","_from":"30420","_to":"30419"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"69878","_from":"30420","_to":"42634"} +{"$label":"ACTS_IN","name":"Lionel","type":"Role","_key":"118054","_from":"30422","_to":"69385"} +{"$label":"ACTS_IN","name":"\u00c9ric","type":"Role","_key":"105243","_from":"30422","_to":"61936"} +{"$label":"ACTS_IN","name":"Gaby (le coiffeur)","type":"Role","_key":"100053","_from":"30422","_to":"59020"} +{"$label":"ACTS_IN","name":"Alba","type":"Role","_key":"69888","_from":"30422","_to":"42634"} +{"$label":"ACTS_IN","name":"Ponce","type":"Role","_key":"69886","_from":"30423","_to":"42634"} +{"$label":"DIRECTED","_key":"118801","_from":"30424","_to":"69846"} +{"$label":"DIRECTED","_key":"118114","_from":"30424","_to":"69415"} +{"$label":"DIRECTED","_key":"69869","_from":"30424","_to":"42634"} +{"$label":"DIRECTED","_key":"63609","_from":"30424","_to":"39796"} +{"$label":"DIRECTED","_key":"53753","_from":"30424","_to":"34652"} +{"$label":"ACTS_IN","name":"Kriminalkommissar","type":"Role","_key":"46053","_from":"30426","_to":"30425"} +{"$label":"ACTS_IN","name":"Karl-Heinz","type":"Role","_key":"47822","_from":"30426","_to":"31481"} +{"$label":"ACTS_IN","name":"Keith Ellis","type":"Role","_key":"46066","_from":"30430","_to":"30427"} +{"$label":"ACTS_IN","name":"Mr. Newirth","type":"Role","_key":"46064","_from":"30429","_to":"30427"} +{"$label":"DIRECTED","_key":"46060","_from":"30428","_to":"30427"} +{"$label":"DIRECTED","_key":"100822","_from":"30428","_to":"59439"} +{"$label":"DIRECTED","_key":"65921","_from":"30428","_to":"40778"} +{"$label":"DIRECTED","_key":"65189","_from":"30428","_to":"40488"} +{"$label":"DIRECTED","_key":"63529","_from":"30428","_to":"39764"} +{"$label":"DIRECTED","_key":"61409","_from":"30428","_to":"38734"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"64813","_from":"30429","_to":"40325"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"57408","_from":"30429","_to":"36396"} +{"$label":"ACTS_IN","name":"Nick Ragoni","type":"Role","_key":"54657","_from":"30429","_to":"35006"} +{"$label":"ACTS_IN","name":"Sipra","type":"Role","_key":"46080","_from":"30443","_to":"30431"} +{"$label":"ACTS_IN","name":"Linnea","type":"Role","_key":"46079","_from":"30442","_to":"30431"} +{"$label":"ACTS_IN","name":"Rongar","type":"Role","_key":"46078","_from":"30441","_to":"30431"} +{"$label":"ACTS_IN","name":"Hurla","type":"Role","_key":"46077","_from":"30440","_to":"30431"} +{"$label":"ACTS_IN","name":"King Taylor","type":"Role","_key":"46076","_from":"30439","_to":"30431"} +{"$label":"ACTS_IN","name":"Old Simon","type":"Role","_key":"46075","_from":"30438","_to":"30431"} +{"$label":"ACTS_IN","name":"Aura","type":"Role","_key":"46074","_from":"30437","_to":"30431"} +{"$label":"ACTS_IN","name":"Acrasia","type":"Role","_key":"46073","_from":"30436","_to":"30431"} +{"$label":"ACTS_IN","name":"Udea","type":"Role","_key":"46072","_from":"30435","_to":"30431"} +{"$label":"ACTS_IN","name":"Shurka","type":"Role","_key":"46071","_from":"30434","_to":"30431"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"46070","_from":"30433","_to":"30431"} +{"$label":"DIRECTED","_key":"46068","_from":"30432","_to":"30431"} +{"$label":"ACTS_IN","name":"Flightplain","type":"Role","_key":"46131","_from":"30434","_to":"30480"} +{"$label":"ACTS_IN","name":"Freyja","type":"Role","_key":"46092","_from":"30452","_to":"30444"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"46090","_from":"30451","_to":"30444"} +{"$label":"ACTS_IN","name":"Vanir","type":"Role","_key":"46089","_from":"30450","_to":"30444"} +{"$label":"ACTS_IN","name":"Amathea","type":"Role","_key":"46087","_from":"30449","_to":"30444"} +{"$label":"ACTS_IN","name":"Erman","type":"Role","_key":"46086","_from":"30448","_to":"30444"} +{"$label":"ACTS_IN","name":"Idun","type":"Role","_key":"46085","_from":"30447","_to":"30444"} +{"$label":"ACTS_IN","name":"Tyor","type":"Role","_key":"46083","_from":"30446","_to":"30444"} +{"$label":"DIRECTED","_key":"46081","_from":"30445","_to":"30444"} +{"$label":"ACTS_IN","name":"Kaira","type":"Role","_key":"106242","_from":"30449","_to":"62582"} +{"$label":"ACTS_IN","name":"Cyrus Gilson","type":"Role","_key":"105208","_from":"30450","_to":"61913"} +{"$label":"DIRECTED","_key":"46100","_from":"30457","_to":"30453"} +{"$label":"DIRECTED","_key":"46099","_from":"30456","_to":"30453"} +{"$label":"ACTS_IN","name":"Meg Griffin","type":"Role","_key":"46096","_from":"30455","_to":"30453"} +{"$label":"ACTS_IN","name":"Tom Tucker","type":"Role","_key":"46093","_from":"30454","_to":"30453"} +{"$label":"ACTS_IN","name":"Peter Griffin","type":"Role","_key":"99038","_from":"30454","_to":"58342"} +{"$label":"ACTS_IN","name":"Michelle McAllister","type":"Role","_key":"114706","_from":"30455","_to":"67566"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"111087","_from":"30455","_to":"65620"} +{"$label":"ACTS_IN","name":"sophie","type":"Role","_key":"101257","_from":"30455","_to":"59629"} +{"$label":"ACTS_IN","name":"Meg Griffin","type":"Role","_key":"99042","_from":"30455","_to":"58342"} +{"$label":"ACTS_IN","name":"Mona Sax","type":"Role","_key":"92176","_from":"30455","_to":"54404"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"90338","_from":"30455","_to":"53393"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"65270","_from":"30455","_to":"40514"} +{"$label":"ACTS_IN","name":"Basin","type":"Role","_key":"59952","_from":"30455","_to":"37851"} +{"$label":"ACTS_IN","name":"Racheal","type":"Role","_key":"57494","_from":"30455","_to":"36436"} +{"$label":"DIRECTED","_key":"46105","_from":"30460","_to":"30458"} +{"$label":"ACTS_IN","name":"Turanga Leela","type":"Role","_key":"46104","_from":"30459","_to":"30458"} +{"$label":"ACTS_IN","name":"Turanga Leela","type":"Role","_key":"103003","_from":"30459","_to":"60586"} +{"$label":"ACTS_IN","name":"Turanga Leela","type":"Role","_key":"93614","_from":"30459","_to":"55120"} +{"$label":"ACTS_IN","name":"Turanga Leela","type":"Role","_key":"91863","_from":"30459","_to":"54199"} +{"$label":"DIRECTED","_key":"93619","_from":"30460","_to":"55120"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"46113","_from":"30468","_to":"30461"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"46112","_from":"30467","_to":"30461"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"46111","_from":"30466","_to":"30461"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"46110","_from":"30465","_to":"30461"} +{"$label":"ACTS_IN","name":"N-A.","type":"Role","_key":"46109","_from":"30464","_to":"30461"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"46108","_from":"30463","_to":"30461"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"46107","_from":"30462","_to":"30461"} +{"$label":"DIRECTED","_key":"46106","_from":"30462","_to":"30461"} +{"$label":"DIRECTED","_key":"46116","_from":"30472","_to":"30469"} +{"$label":"ACTS_IN","name":"Tessa","type":"Role","_key":"46115","_from":"30471","_to":"30469"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"46114","_from":"30470","_to":"30469"} +{"$label":"ACTS_IN","name":"Nabonga der Gorilla","type":"Role","_key":"46125","_from":"30479","_to":"30473"} +{"$label":"ACTS_IN","name":"Doreen Stockwell als Kind","type":"Role","_key":"46124","_from":"30478","_to":"30473"} +{"$label":"ACTS_IN","name":"T.F. Stockwell","type":"Role","_key":"46123","_from":"30477","_to":"30473"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"46122","_from":"30476","_to":"30473"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"46119","_from":"30475","_to":"30473"} +{"$label":"DIRECTED","_key":"46117","_from":"30474","_to":"30473"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"46135","_from":"30485","_to":"30480"} +{"$label":"ACTS_IN","name":"Zariatin","type":"Role","_key":"46133","_from":"30484","_to":"30480"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"46130","_from":"30483","_to":"30480"} +{"$label":"ACTS_IN","name":"Aldebarian","type":"Role","_key":"46129","_from":"30482","_to":"30480"} +{"$label":"DIRECTED","_key":"46126","_from":"30481","_to":"30480"} +{"$label":"DIRECTED","_key":"46146","_from":"30488","_to":"30487"} +{"$label":"ACTS_IN","name":"Vertreter der K\u00fcnstlichen Intelligentsia","type":"Role","_key":"46145","_from":"30492","_to":"30487"} +{"$label":"ACTS_IN","name":"Dr. Eudemoina","type":"Role","_key":"46144","_from":"30491","_to":"30487"} +{"$label":"ACTS_IN","name":"Martin Gebhardt","type":"Role","_key":"46143","_from":"30490","_to":"30487"} +{"$label":"ACTS_IN","name":"Mathias Eimann","type":"Role","_key":"46142","_from":"30489","_to":"30487"} +{"$label":"ACTS_IN","name":"Stefan Kluge","type":"Role","_key":"46141","_from":"30488","_to":"30487"} +{"$label":"ACTS_IN","name":"Baby","type":"Role","_key":"46153","_from":"30500","_to":"30493"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"46152","_from":"30499","_to":"30493"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"46151","_from":"30498","_to":"30493"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"46150","_from":"30497","_to":"30493"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"46149","_from":"30496","_to":"30493"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"46148","_from":"30495","_to":"30493"} +{"$label":"DIRECTED","_key":"46147","_from":"30494","_to":"30493"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"46160","_from":"30508","_to":"30501"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"46159","_from":"30507","_to":"30501"} +{"$label":"ACTS_IN","name":"Mika Yamashta","type":"Role","_key":"46158","_from":"30506","_to":"30501"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"46157","_from":"30505","_to":"30501"} +{"$label":"ACTS_IN","name":"Masao Yamashta","type":"Role","_key":"46156","_from":"30504","_to":"30501"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"46155","_from":"30503","_to":"30501"} +{"$label":"DIRECTED","_key":"46154","_from":"30502","_to":"30501"} +{"$label":"ACTS_IN","name":"Barry Sheene","type":"Role","_key":"105083","_from":"30503","_to":"61850"} +{"$label":"ACTS_IN","name":"Gadea Padre","type":"Role","_key":"46168","_from":"30514","_to":"30509"} +{"$label":"ACTS_IN","name":"Marinaro Julio","type":"Role","_key":"46167","_from":"30513","_to":"30509"} +{"$label":"ACTS_IN","name":"Iribarren","type":"Role","_key":"46166","_from":"30512","_to":"30509"} +{"$label":"ACTS_IN","name":"El Turu","type":"Role","_key":"46165","_from":"30511","_to":"30509"} +{"$label":"ACTS_IN","name":"Alvaro","type":"Role","_key":"46164","_from":"30510","_to":"30509"} +{"$label":"ACTS_IN","name":"Alberto","type":"Role","_key":"46179","_from":"30510","_to":"30520"} +{"$label":"ACTS_IN","name":"Voisin","type":"Role","_key":"46174","_from":"30519","_to":"30515"} +{"$label":"ACTS_IN","name":"Voisine","type":"Role","_key":"46173","_from":"30518","_to":"30515"} +{"$label":"ACTS_IN","name":"Voisine","type":"Role","_key":"46172","_from":"30517","_to":"30515"} +{"$label":"ACTS_IN","name":"Voisin","type":"Role","_key":"46171","_from":"30516","_to":"30515"} +{"$label":"ACTS_IN","name":"Mart\u00edn","type":"Role","_key":"46180","_from":"30523","_to":"30520"} +{"$label":"ACTS_IN","name":"Juana","type":"Role","_key":"46177","_from":"30522","_to":"30520"} +{"$label":"DIRECTED","_key":"46175","_from":"30521","_to":"30520"} +{"$label":"ACTS_IN","name":"Elmos","type":"Role","_key":"46187","_from":"30528","_to":"30524"} +{"$label":"ACTS_IN","name":"Egon","type":"Role","_key":"46186","_from":"30527","_to":"30524"} +{"$label":"ACTS_IN","name":"Princess Mecede","type":"Role","_key":"46183","_from":"30526","_to":"30524"} +{"$label":"DIRECTED","_key":"46181","_from":"30525","_to":"30524"} +{"$label":"ACTS_IN","name":"Leonidas","type":"Role","_key":"46190","_from":"30532","_to":"30529"} +{"$label":"DIRECTED","_key":"46189","_from":"30531","_to":"30529"} +{"$label":"DIRECTED","_key":"46188","_from":"30530","_to":"30529"} +{"$label":"DIRECTED","_key":"96769","_from":"30530","_to":"56920"} +{"$label":"DIRECTED","_key":"60271","_from":"30530","_to":"38015"} +{"$label":"DIRECTED","_key":"56399","_from":"30530","_to":"35829"} +{"$label":"DIRECTED","_key":"96770","_from":"30531","_to":"56920"} +{"$label":"DIRECTED","_key":"60270","_from":"30531","_to":"38015"} +{"$label":"DIRECTED","_key":"56400","_from":"30531","_to":"35829"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"46201","_from":"30534","_to":"30533"} +{"$label":"ACTS_IN","name":"Falco","type":"Role","_key":"46200","_from":"30540","_to":"30533"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"46199","_from":"30539","_to":"30533"} +{"$label":"ACTS_IN","name":"Palmay","type":"Role","_key":"46198","_from":"30538","_to":"30533"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"46197","_from":"30537","_to":"30533"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"46196","_from":"30536","_to":"30533"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"46195","_from":"30535","_to":"30533"} +{"$label":"DIRECTED","_key":"46194","_from":"30534","_to":"30533"} +{"$label":"DIRECTED","_key":"95262","_from":"30534","_to":"56053"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"105233","_from":"30536","_to":"61933"} +{"$label":"ACTS_IN","name":"Sheryl","type":"Role","_key":"51223","_from":"30536","_to":"33397"} +{"$label":"ACTS_IN","name":"Gen. Wakgen","type":"Role","_key":"113213","_from":"30539","_to":"66707"} +{"$label":"DIRECTED","_key":"46205","_from":"30543","_to":"30541"} +{"$label":"ACTS_IN","name":"Siddharth","type":"Role","_key":"46204","_from":"30542","_to":"30541"} +{"$label":"ACTS_IN","name":"Joseph Mascarenhas","type":"Role","_key":"120895","_from":"30542","_to":"70980"} +{"$label":"ACTS_IN","name":"Jasjit","type":"Role","_key":"112476","_from":"30542","_to":"66413"} +{"$label":"ACTS_IN","name":"Jai","type":"Role","_key":"100015","_from":"30542","_to":"59002"} +{"$label":"ACTS_IN","name":"Mukesh Mehra","type":"Role","_key":"48143","_from":"30542","_to":"31634"} +{"$label":"ACTS_IN","name":"Dieter Dubinsky","type":"Role","_key":"46209","_from":"30545","_to":"30544"} +{"$label":"ACTS_IN","name":"Wollner","type":"Role","_key":"72484","_from":"30545","_to":"43734"} +{"$label":"ACTS_IN","name":"Joseph Goebbels","type":"Role","_key":"63119","_from":"30545","_to":"39591"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"46218","_from":"30550","_to":"30546"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"46217","_from":"30549","_to":"30546"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"46216","_from":"30548","_to":"30546"} +{"$label":"DIRECTED","_key":"46215","_from":"30547","_to":"30546"} +{"$label":"ACTS_IN","name":"Mrs. Connelly","type":"Role","_key":"46221","_from":"30552","_to":"30551"} +{"$label":"ACTS_IN","name":"Hold Me-Touch Me","type":"Role","_key":"57727","_from":"30552","_to":"36543"} +{"$label":"ACTS_IN","name":"Attorney","type":"Role","_key":"46234","_from":"30563","_to":"30553"} +{"$label":"ACTS_IN","name":"Tony Maier","type":"Role","_key":"46233","_from":"30562","_to":"30553"} +{"$label":"ACTS_IN","name":"Lionel Durrington","type":"Role","_key":"46231","_from":"30561","_to":"30553"} +{"$label":"ACTS_IN","name":"Sonny Durrington","type":"Role","_key":"46230","_from":"30560","_to":"30553"} +{"$label":"ACTS_IN","name":"Bob Durrington","type":"Role","_key":"46229","_from":"30559","_to":"30553"} +{"$label":"ACTS_IN","name":"Joanna Durrington","type":"Role","_key":"46228","_from":"30558","_to":"30553"} +{"$label":"ACTS_IN","name":"Alfred Durrington","type":"Role","_key":"46227","_from":"30557","_to":"30553"} +{"$label":"ACTS_IN","name":"George Durrington","type":"Role","_key":"46226","_from":"30556","_to":"30553"} +{"$label":"ACTS_IN","name":"Dana Durrington","type":"Role","_key":"46225","_from":"30555","_to":"30553"} +{"$label":"ACTS_IN","name":"Sarah Asproon","type":"Role","_key":"46224","_from":"30554","_to":"30553"} +{"$label":"ACTS_IN","name":"Mrs. Predident","type":"Role","_key":"46247","_from":"30574","_to":"30564"} +{"$label":"ACTS_IN","name":"Conductor","type":"Role","_key":"46246","_from":"30573","_to":"30564"} +{"$label":"ACTS_IN","name":"Yetta Pussel","type":"Role","_key":"46245","_from":"30572","_to":"30564"} +{"$label":"ACTS_IN","name":"Halverson","type":"Role","_key":"46244","_from":"30571","_to":"30564"} +{"$label":"ACTS_IN","name":"Lt. Bradford Shitzu","type":"Role","_key":"46242","_from":"30570","_to":"30564"} +{"$label":"ACTS_IN","name":"Mr. President","type":"Role","_key":"46241","_from":"30569","_to":"30564"} +{"$label":"ACTS_IN","name":"Dr. Uschi K\u00fcnstler","type":"Role","_key":"46240","_from":"30568","_to":"30564"} +{"$label":"ACTS_IN","name":"Cap. Valentino Di Pasquale","type":"Role","_key":"46238","_from":"30567","_to":"30564"} +{"$label":"ACTS_IN","name":"Cassandra Menage","type":"Role","_key":"46237","_from":"30566","_to":"30564"} +{"$label":"DIRECTED","_key":"46235","_from":"30565","_to":"30564"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"89399","_from":"30567","_to":"52916"} +{"$label":"ACTS_IN","name":"Antonio Motel","type":"Role","_key":"63425","_from":"30567","_to":"39730"} +{"$label":"DIRECTED","_key":"63429","_from":"30567","_to":"39730"} +{"$label":"ACTS_IN","name":"Mina Murry","type":"Role","_key":"66096","_from":"30568","_to":"40893"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"61375","_from":"30568","_to":"38724"} +{"$label":"ACTS_IN","name":"Ali (as Pierre)","type":"Role","_key":"116112","_from":"30570","_to":"68369"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71729","_from":"30572","_to":"43418"} +{"$label":"ACTS_IN","name":"Groluc","type":"Role","_key":"46257","_from":"30579","_to":"30575"} +{"$label":"ACTS_IN","name":"Eve Verhagen","type":"Role","_key":"46256","_from":"30578","_to":"30575"} +{"$label":"ACTS_IN","name":"Titi Brasseur","type":"Role","_key":"46255","_from":"30577","_to":"30575"} +{"$label":"DIRECTED","_key":"46248","_from":"30576","_to":"30575"} +{"$label":"DIRECTED","_key":"101710","_from":"30576","_to":"59865"} +{"$label":"ACTS_IN","name":"Henri Pasquet","type":"Role","_key":"100788","_from":"30576","_to":"59416"} +{"$label":"ACTS_IN","name":"Bernard Valenti","type":"Role","_key":"65845","_from":"30576","_to":"40747"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"114215","_from":"30577","_to":"67274"} +{"$label":"ACTS_IN","name":"Kovalski","type":"Role","_key":"101714","_from":"30577","_to":"59865"} +{"$label":"ACTS_IN","name":"Marie Ang\u00e9li","type":"Role","_key":"101713","_from":"30578","_to":"59865"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"105089","_from":"30579","_to":"61852"} +{"$label":"ACTS_IN","name":"Jumbo","type":"Role","_key":"101716","_from":"30579","_to":"59865"} +{"$label":"ACTS_IN","name":"Yann Vandernoout","type":"Role","_key":"48607","_from":"30579","_to":"31880"} +{"$label":"ACTS_IN","name":"Santos","type":"Role","_key":"46267","_from":"30584","_to":"30580"} +{"$label":"ACTS_IN","name":"Deputy Cash","type":"Role","_key":"46265","_from":"30583","_to":"30580"} +{"$label":"ACTS_IN","name":"Lacy","type":"Role","_key":"46260","_from":"30582","_to":"30580"} +{"$label":"DIRECTED","_key":"46259","_from":"30581","_to":"30580"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"95243","_from":"30582","_to":"56036"} +{"$label":"ACTS_IN","name":"Marisa Costa","type":"Role","_key":"91718","_from":"30582","_to":"54106"} +{"$label":"ACTS_IN","name":"Marcy","type":"Role","_key":"70561","_from":"30582","_to":"42935"} +{"$label":"ACTS_IN","name":"Areola","type":"Role","_key":"69610","_from":"30582","_to":"42492"} +{"$label":"ACTS_IN","name":"Dusty","type":"Role","_key":"105991","_from":"30584","_to":"62403"} +{"$label":"ACTS_IN","name":"Jorge Wardell (as Noel G)","type":"Role","_key":"102620","_from":"30584","_to":"60376"} +{"$label":"ACTS_IN","name":"Flaco","type":"Role","_key":"47484","_from":"30584","_to":"31280"} +{"$label":"ACTS_IN","name":"Kaisa Nieminen","type":"Role","_key":"46273","_from":"30588","_to":"30585"} +{"$label":"ACTS_IN","name":"Nieminen","type":"Role","_key":"46272","_from":"30587","_to":"30585"} +{"$label":"ACTS_IN","name":"The Man Without A Past","type":"Role","_key":"46270","_from":"30586","_to":"30585"} +{"$label":"ACTS_IN","name":"Berg","type":"Role","_key":"89842","_from":"30586","_to":"53161"} +{"$label":"ACTS_IN","name":"Lajunen","type":"Role","_key":"48478","_from":"30586","_to":"31824"} +{"$label":"ACTS_IN","name":"Perry","type":"Role","_key":"46283","_from":"30592","_to":"30589"} +{"$label":"ACTS_IN","name":"Gorman Bellec","type":"Role","_key":"46280","_from":"30591","_to":"30589"} +{"$label":"DIRECTED","_key":"46275","_from":"30590","_to":"30589"} +{"$label":"DIRECTED","_key":"89784","_from":"30590","_to":"53136"} +{"$label":"DIRECTED","_key":"66275","_from":"30590","_to":"40999"} +{"$label":"DIRECTED","_key":"46300","_from":"30601","_to":"30593"} +{"$label":"ACTS_IN","name":"Figaro Nino","type":"Role","_key":"46298","_from":"30600","_to":"30593"} +{"$label":"ACTS_IN","name":"Algunda","type":"Role","_key":"46297","_from":"30599","_to":"30593"} +{"$label":"ACTS_IN","name":"Matrone","type":"Role","_key":"46294","_from":"30598","_to":"30593"} +{"$label":"ACTS_IN","name":"Sejanus","type":"Role","_key":"46293","_from":"30597","_to":"30593"} +{"$label":"ACTS_IN","name":"Notar","type":"Role","_key":"46291","_from":"30596","_to":"30593"} +{"$label":"ACTS_IN","name":"Saba","type":"Role","_key":"46289","_from":"30595","_to":"30593"} +{"$label":"ACTS_IN","name":"Germanikus","type":"Role","_key":"46285","_from":"30594","_to":"30593"} +{"$label":"ACTS_IN","name":"Ferdinand Weitel","type":"Role","_key":"66212","_from":"30594","_to":"40962"} +{"$label":"ACTS_IN","name":"Ernst Held","type":"Role","_key":"58955","_from":"30594","_to":"37225"} +{"$label":"ACTS_IN","name":"Erwin L\u00f6ffler","type":"Role","_key":"46782","_from":"30594","_to":"30866"} +{"$label":"DIRECTED","_key":"58953","_from":"30594","_to":"37225"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"112169","_from":"30595","_to":"66238"} +{"$label":"ACTS_IN","name":"Polizeibeamter Luzern","type":"Role","_key":"105287","_from":"30596","_to":"61949"} +{"$label":"ACTS_IN","name":"Boris Ruf","type":"Role","_key":"105161","_from":"30596","_to":"61884"} +{"$label":"ACTS_IN","name":"Cornelia","type":"Role","_key":"69198","_from":"30598","_to":"42318"} +{"$label":"ACTS_IN","name":"Carlotta Altieri","type":"Role","_key":"64367","_from":"30598","_to":"40115"} +{"$label":"ACTS_IN","name":"Speedy","type":"Role","_key":"59767","_from":"30600","_to":"37734"} +{"$label":"ACTS_IN","name":"Speedy","type":"Role","_key":"56958","_from":"30600","_to":"36144"} +{"$label":"DIRECTED","_key":"66211","_from":"30601","_to":"40962"} +{"$label":"DIRECTED","_key":"46797","_from":"30601","_to":"30866"} +{"$label":"ACTS_IN","name":"Adjudant","type":"Role","_key":"46313","_from":"30609","_to":"30602"} +{"$label":"ACTS_IN","name":"Sch\u00fctzenk\u00f6nig","type":"Role","_key":"46312","_from":"30608","_to":"30602"} +{"$label":"ACTS_IN","name":"Torsten","type":"Role","_key":"46309","_from":"30607","_to":"30602"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"46308","_from":"30606","_to":"30602"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"46306","_from":"30605","_to":"30602"} +{"$label":"ACTS_IN","name":"Jette","type":"Role","_key":"46305","_from":"30604","_to":"30602"} +{"$label":"DIRECTED","_key":"46301","_from":"30603","_to":"30602"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"91285","_from":"30604","_to":"53834"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46331","_from":"30617","_to":"30610"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46330","_from":"30616","_to":"30610"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46328","_from":"30615","_to":"30610"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"46327","_from":"30614","_to":"30610"} +{"$label":"ACTS_IN","name":"Judy Birk","type":"Role","_key":"46320","_from":"30613","_to":"30610"} +{"$label":"ACTS_IN","name":"Anthoy Birk","type":"Role","_key":"46319","_from":"30612","_to":"30610"} +{"$label":"DIRECTED","_key":"46316","_from":"30611","_to":"30610"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"116199","_from":"30613","_to":"68420"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"67618","_from":"30615","_to":"41614"} +{"$label":"ACTS_IN","name":"Roy Evarts","type":"Role","_key":"46542","_from":"30615","_to":"30733"} +{"$label":"ACTS_IN","name":"Sigfrid Larsson","type":"Role","_key":"111037","_from":"30617","_to":"65586"} +{"$label":"ACTS_IN","name":"Gunvald Larsson","type":"Role","_key":"98605","_from":"30617","_to":"58110"} +{"$label":"ACTS_IN","name":"Gunvald Larsson","type":"Role","_key":"98547","_from":"30617","_to":"58073"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"95450","_from":"30617","_to":"56149"} +{"$label":"ACTS_IN","name":"Gunvald Larsson","type":"Role","_key":"95394","_from":"30617","_to":"56112"} +{"$label":"ACTS_IN","name":"Carl Johan Ruth","type":"Role","_key":"93499","_from":"30617","_to":"55052"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"50660","_from":"30617","_to":"33075"} +{"$label":"DIRECTED","_key":"46347","_from":"30624","_to":"30618"} +{"$label":"ACTS_IN","name":"Lisa Preston","type":"Role","_key":"46345","_from":"30623","_to":"30618"} +{"$label":"ACTS_IN","name":"Preston's Wife","type":"Role","_key":"46344","_from":"30622","_to":"30618"} +{"$label":"ACTS_IN","name":"Robbie Preston","type":"Role","_key":"46343","_from":"30621","_to":"30618"} +{"$label":"ACTS_IN","name":"Gate Guard","type":"Role","_key":"46341","_from":"30620","_to":"30618"} +{"$label":"ACTS_IN","name":"Evidentiary Storage Officer","type":"Role","_key":"46340","_from":"30619","_to":"30618"} +{"$label":"ACTS_IN","name":"Young Fritz Vincken","type":"Role","_key":"113433","_from":"30621","_to":"66832"} +{"$label":"ACTS_IN","name":"Madre di Giovanni","type":"Role","_key":"62466","_from":"30622","_to":"39340"} +{"$label":"DIRECTED","_key":"58071","_from":"30624","_to":"36741"} +{"$label":"DIRECTED","_key":"46363","_from":"30636","_to":"30625"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"46362","_from":"30635","_to":"30625"} +{"$label":"ACTS_IN","name":"Liza","type":"Role","_key":"46361","_from":"30634","_to":"30625"} +{"$label":"ACTS_IN","name":"Kristen","type":"Role","_key":"46359","_from":"30633","_to":"30625"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"46358","_from":"30632","_to":"30625"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"46357","_from":"30631","_to":"30625"} +{"$label":"ACTS_IN","name":"Frank Burroughs","type":"Role","_key":"46356","_from":"30630","_to":"30625"} +{"$label":"ACTS_IN","name":"Mrs. Elaine Lieberman","type":"Role","_key":"46354","_from":"30629","_to":"30625"} +{"$label":"ACTS_IN","name":"Mr. Yates, Jr.","type":"Role","_key":"46353","_from":"30628","_to":"30625"} +{"$label":"ACTS_IN","name":"Sammy Parker","type":"Role","_key":"46351","_from":"30627","_to":"30625"} +{"$label":"ACTS_IN","name":"Maggie Taylor","type":"Role","_key":"46350","_from":"30626","_to":"30625"} +{"$label":"ACTS_IN","name":"Shanti","type":"Role","_key":"102251","_from":"30626","_to":"60169"} +{"$label":"ACTS_IN","name":"Tinker Bell","type":"Role","_key":"93202","_from":"30626","_to":"54917"} +{"$label":"ACTS_IN","name":"Libby Magruder","type":"Role","_key":"89813","_from":"30626","_to":"53150"} +{"$label":"ACTS_IN","name":"Bernice Pruitt","type":"Role","_key":"55943","_from":"30626","_to":"35575"} +{"$label":"ACTS_IN","name":"Alex Pruitt","type":"Role","_key":"55935","_from":"30627","_to":"35573"} +{"$label":"ACTS_IN","name":"Young Cale","type":"Role","_key":"46698","_from":"30627","_to":"30828"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"65704","_from":"30629","_to":"40694"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"61128","_from":"30629","_to":"38638"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"97172","_from":"30631","_to":"57155"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"64737","_from":"30631","_to":"40300"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"63221","_from":"30631","_to":"39644"} +{"$label":"ACTS_IN","name":"Mamma King","type":"Role","_key":"49454","_from":"30631","_to":"32384"} +{"$label":"ACTS_IN","name":"Debbie Hunt","type":"Role","_key":"67685","_from":"30633","_to":"41633"} +{"$label":"ACTS_IN","name":"Evelyn Gardner - Right Field","type":"Role","_key":"68930","_from":"30635","_to":"42198"} +{"$label":"DIRECTED","_key":"111467","_from":"30636","_to":"65815"} +{"$label":"DIRECTED","_key":"61726","_from":"30636","_to":"38874"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"46377","_from":"30644","_to":"30637"} +{"$label":"ACTS_IN","name":"Doug the preacher","type":"Role","_key":"46376","_from":"30643","_to":"30637"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"46375","_from":"30642","_to":"30637"} +{"$label":"ACTS_IN","name":"Phillip - Welder","type":"Role","_key":"46373","_from":"30641","_to":"30637"} +{"$label":"ACTS_IN","name":"Bar Patron","type":"Role","_key":"46371","_from":"30640","_to":"30637"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"46370","_from":"30639","_to":"30637"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"46369","_from":"30638","_to":"30637"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"56833","_from":"30641","_to":"36088"} +{"$label":"ACTS_IN","name":"Reese","type":"Role","_key":"47237","_from":"30641","_to":"31128"} +{"$label":"ACTS_IN","name":"Cora","type":"Role","_key":"46387","_from":"30649","_to":"30646"} +{"$label":"ACTS_IN","name":"Lily Kim","type":"Role","_key":"46386","_from":"30648","_to":"30646"} +{"$label":"ACTS_IN","name":"Ty Ventura","type":"Role","_key":"46384","_from":"30647","_to":"30646"} +{"$label":"DIRECTED","_key":"46404","_from":"30655","_to":"30650"} +{"$label":"ACTS_IN","name":"Divina","type":"Role","_key":"46402","_from":"30654","_to":"30650"} +{"$label":"ACTS_IN","name":"Edele","type":"Role","_key":"46399","_from":"30653","_to":"30650"} +{"$label":"ACTS_IN","name":"Sal \"Gummy Bear\" Franzone","type":"Role","_key":"46397","_from":"30652","_to":"30650"} +{"$label":"ACTS_IN","name":"Oleg Yugorsky","type":"Role","_key":"46390","_from":"30651","_to":"30650"} +{"$label":"ACTS_IN","name":"Quil Ateara","type":"Role","_key":"115504","_from":"30651","_to":"67997"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"108762","_from":"30651","_to":"64293"} +{"$label":"ACTS_IN","name":"Danny Saunders","type":"Role","_key":"98493","_from":"30651","_to":"58035"} +{"$label":"ACTS_IN","name":"Adam Duncan","type":"Role","_key":"67603","_from":"30651","_to":"41612"} +{"$label":"ACTS_IN","name":"Young Sean","type":"Role","_key":"65361","_from":"30651","_to":"40550"} +{"$label":"ACTS_IN","name":"Six","type":"Role","_key":"58073","_from":"30651","_to":"36741"} +{"$label":"ACTS_IN","name":"Cole","type":"Role","_key":"65026","_from":"30652","_to":"40406"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"100666","_from":"30653","_to":"59356"} +{"$label":"ACTS_IN","name":"Mrs.Clause","type":"Role","_key":"96240","_from":"30653","_to":"56561"} +{"$label":"ACTS_IN","name":"Julia 'Jules' Sullivan","type":"Role","_key":"64065","_from":"30653","_to":"39986"} +{"$label":"ACTS_IN","name":"Principal Carol Newman","type":"Role","_key":"52045","_from":"30653","_to":"33935"} +{"$label":"ACTS_IN","name":"Herself (as Idalis Deleon)","type":"Role","_key":"116127","_from":"30654","_to":"68369"} +{"$label":"DIRECTED","_key":"105035","_from":"30655","_to":"61815"} +{"$label":"DIRECTED","_key":"65404","_from":"30655","_to":"40556"} +{"$label":"ACTS_IN","name":"Federico Aranda","type":"Role","_key":"46412","_from":"30660","_to":"30656"} +{"$label":"ACTS_IN","name":"Antonio Vizint\u00edn","type":"Role","_key":"46411","_from":"30659","_to":"30656"} +{"$label":"ACTS_IN","name":"Roberto Canessa","type":"Role","_key":"46410","_from":"30658","_to":"30656"} +{"$label":"ACTS_IN","name":"Gustavo Zerbino","type":"Role","_key":"46409","_from":"30657","_to":"30656"} +{"$label":"ACTS_IN","name":"Roderick","type":"Role","_key":"119404","_from":"30658","_to":"70150"} +{"$label":"ACTS_IN","name":"Cons","type":"Role","_key":"112256","_from":"30658","_to":"66291"} +{"$label":"ACTS_IN","name":"Jeffrey Hawks","type":"Role","_key":"108529","_from":"30658","_to":"64146"} +{"$label":"ACTS_IN","name":"Todd Anderson","type":"Role","_key":"47391","_from":"30658","_to":"31218"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"47064","_from":"30659","_to":"31034"} +{"$label":"ACTS_IN","name":"Salvatore Picone","type":"Role","_key":"46432","_from":"30675","_to":"30661"} +{"$label":"ACTS_IN","name":"Umberto Arena","type":"Role","_key":"46431","_from":"30674","_to":"30661"} +{"$label":"ACTS_IN","name":"Stefano Treccagnoli","type":"Role","_key":"46430","_from":"30673","_to":"30661"} +{"$label":"ACTS_IN","name":"Giulio Treccagnoli","type":"Role","_key":"46429","_from":"30672","_to":"30661"} +{"$label":"ACTS_IN","name":"Donato Ceglie","type":"Role","_key":"46428","_from":"30671","_to":"30661"} +{"$label":"ACTS_IN","name":"Antonio Montesarchio","type":"Role","_key":"46427","_from":"30670","_to":"30661"} +{"$label":"ACTS_IN","name":"Espedito Marletta","type":"Role","_key":"46426","_from":"30669","_to":"30661"} +{"$label":"ACTS_IN","name":"Mario Cannavacciuolo","type":"Role","_key":"46425","_from":"30668","_to":"30661"} +{"$label":"ACTS_IN","name":"Sabatino Cannavacciuolo","type":"Role","_key":"46424","_from":"30667","_to":"30661"} +{"$label":"ACTS_IN","name":"Patrizia Gerlando","type":"Role","_key":"46423","_from":"30666","_to":"30661"} +{"$label":"ACTS_IN","name":"Raffaele Del Giudice","type":"Role","_key":"46422","_from":"30665","_to":"30661"} +{"$label":"DIRECTED","_key":"46421","_from":"30664","_to":"30661"} +{"$label":"DIRECTED","_key":"46420","_from":"30663","_to":"30661"} +{"$label":"DIRECTED","_key":"46419","_from":"30662","_to":"30661"} +{"$label":"ACTS_IN","name":"Steve Rendazo","type":"Role","_key":"46443","_from":"30680","_to":"30676"} +{"$label":"ACTS_IN","name":"Gerta Rauss","type":"Role","_key":"46441","_from":"30679","_to":"30676"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"46440","_from":"30678","_to":"30676"} +{"$label":"DIRECTED","_key":"46433","_from":"30677","_to":"30676"} +{"$label":"DIRECTED","_key":"53546","_from":"30677","_to":"34562"} +{"$label":"ACTS_IN","name":"Tess Sullivan","type":"Role","_key":"121323","_from":"30678","_to":"71285"} +{"$label":"ACTS_IN","name":"Samantha Marris","type":"Role","_key":"100230","_from":"30678","_to":"59116"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"97997","_from":"30678","_to":"57710"} +{"$label":"ACTS_IN","name":"Daniel Russell","type":"Role","_key":"116234","_from":"30680","_to":"68436"} +{"$label":"ACTS_IN","name":"Pf\u00f6rtner der Bank","type":"Role","_key":"46456","_from":"30684","_to":"30681"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"46445","_from":"30683","_to":"30681"} +{"$label":"DIRECTED","_key":"46444","_from":"30682","_to":"30681"} +{"$label":"ACTS_IN","name":"Vance or Towers","type":"Role","_key":"46479","_from":"30697","_to":"30685"} +{"$label":"ACTS_IN","name":"Vance or Towers","type":"Role","_key":"46478","_from":"30696","_to":"30685"} +{"$label":"ACTS_IN","name":"Bobby Erbeter, the Boy on the Bike","type":"Role","_key":"46477","_from":"30695","_to":"30685"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"46475","_from":"30694","_to":"30685"} +{"$label":"ACTS_IN","name":"Ernest Peterson","type":"Role","_key":"46474","_from":"30693","_to":"30685"} +{"$label":"ACTS_IN","name":"Rhonda Wilson","type":"Role","_key":"46473","_from":"30692","_to":"30685"} +{"$label":"ACTS_IN","name":"Cora Wilson","type":"Role","_key":"46472","_from":"30691","_to":"30685"} +{"$label":"ACTS_IN","name":"Frieda Jason","type":"Role","_key":"46471","_from":"30690","_to":"30685"} +{"$label":"ACTS_IN","name":"George Dawson","type":"Role","_key":"46470","_from":"30689","_to":"30685"} +{"$label":"ACTS_IN","name":"The Beak","type":"Role","_key":"46469","_from":"30688","_to":"30685"} +{"$label":"ACTS_IN","name":"Mr. Henry Morton","type":"Role","_key":"46467","_from":"30687","_to":"30685"} +{"$label":"ACTS_IN","name":"Miss Collins","type":"Role","_key":"46461","_from":"30686","_to":"30685"} +{"$label":"ACTS_IN","name":"Sondra Walker","type":"Role","_key":"64980","_from":"30686","_to":"40386"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"50294","_from":"30686","_to":"32858"} +{"$label":"ACTS_IN","name":"House Majority Leader","type":"Role","_key":"70713","_from":"30687","_to":"43007"} +{"$label":"DIRECTED","_key":"46523","_from":"30732","_to":"30698"} +{"$label":"ACTS_IN","name":"Deputy D.A. (Karen)","type":"Role","_key":"46522","_from":"30732","_to":"30698"} +{"$label":"ACTS_IN","name":"Skateboard Kid","type":"Role","_key":"46521","_from":"30731","_to":"30698"} +{"$label":"ACTS_IN","name":"Girl in Classroom","type":"Role","_key":"46520","_from":"30730","_to":"30698"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"46519","_from":"30729","_to":"30698"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"46518","_from":"30728","_to":"30698"} +{"$label":"ACTS_IN","name":"High School Student","type":"Role","_key":"46517","_from":"30727","_to":"30698"} +{"$label":"ACTS_IN","name":"Fleeing Party Boy","type":"Role","_key":"46516","_from":"30726","_to":"30698"} +{"$label":"ACTS_IN","name":"Student Bystander","type":"Role","_key":"46515","_from":"30725","_to":"30698"} +{"$label":"ACTS_IN","name":"The Ref","type":"Role","_key":"46514","_from":"30724","_to":"30698"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"46513","_from":"30723","_to":"30698"} +{"$label":"ACTS_IN","name":"Gardening Girl","type":"Role","_key":"46512","_from":"30722","_to":"30698"} +{"$label":"ACTS_IN","name":"Fleeing Party Girl","type":"Role","_key":"46511","_from":"30721","_to":"30698"} +{"$label":"ACTS_IN","name":"Jesse's Spotter","type":"Role","_key":"46510","_from":"30720","_to":"30698"} +{"$label":"ACTS_IN","name":"Tuba Player","type":"Role","_key":"46508","_from":"30719","_to":"30698"} +{"$label":"ACTS_IN","name":"Headbanging Patient","type":"Role","_key":"46507","_from":"30718","_to":"30698"} +{"$label":"ACTS_IN","name":"Night Nurse","type":"Role","_key":"46506","_from":"30717","_to":"30698"} +{"$label":"ACTS_IN","name":"Female Vet","type":"Role","_key":"46505","_from":"30716","_to":"30698"} +{"$label":"ACTS_IN","name":"Smiling Patient","type":"Role","_key":"46504","_from":"30715","_to":"30698"} +{"$label":"ACTS_IN","name":"Party Girl","type":"Role","_key":"46503","_from":"30714","_to":"30698"} +{"$label":"ACTS_IN","name":"Senior D.A.","type":"Role","_key":"46502","_from":"30713","_to":"30698"} +{"$label":"ACTS_IN","name":"Young Rachel Lang","type":"Role","_key":"46501","_from":"30712","_to":"30698"} +{"$label":"ACTS_IN","name":"English Teacher","type":"Role","_key":"46500","_from":"30711","_to":"30698"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"46499","_from":"30710","_to":"30698"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"46498","_from":"30709","_to":"30698"} +{"$label":"ACTS_IN","name":"Emilyn Wallace","type":"Role","_key":"46497","_from":"30708","_to":"30698"} +{"$label":"ACTS_IN","name":"Sheriff Kelton","type":"Role","_key":"46495","_from":"30707","_to":"30698"} +{"$label":"ACTS_IN","name":"Mr. Stark","type":"Role","_key":"46494","_from":"30706","_to":"30698"} +{"$label":"ACTS_IN","name":"Chuck Potter","type":"Role","_key":"46490","_from":"30705","_to":"30698"} +{"$label":"ACTS_IN","name":"Monica Jones","type":"Role","_key":"46488","_from":"30704","_to":"30698"} +{"$label":"ACTS_IN","name":"Eric Stark","type":"Role","_key":"46486","_from":"30703","_to":"30698"} +{"$label":"ACTS_IN","name":"Mark Bing","type":"Role","_key":"46485","_from":"30702","_to":"30698"} +{"$label":"ACTS_IN","name":"Barbara Lang","type":"Role","_key":"46484","_from":"30701","_to":"30698"} +{"$label":"ACTS_IN","name":"Jesse Ryan","type":"Role","_key":"46482","_from":"30700","_to":"30698"} +{"$label":"ACTS_IN","name":"Rachel Lang","type":"Role","_key":"46481","_from":"30699","_to":"30698"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"120390","_from":"30700","_to":"70723"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"102165","_from":"30700","_to":"60121"} +{"$label":"ACTS_IN","name":"Rick Rambis","type":"Role","_key":"99833","_from":"30700","_to":"58886"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"64213","_from":"30700","_to":"40055"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"64204","_from":"30700","_to":"40050"} +{"$label":"ACTS_IN","name":"Randall 'Pink' Floyd","type":"Role","_key":"54763","_from":"30700","_to":"35048"} +{"$label":"ACTS_IN","name":"Bobby Ray","type":"Role","_key":"52502","_from":"30700","_to":"34147"} +{"$label":"ACTS_IN","name":"Sgt. Talbot","type":"Role","_key":"97570","_from":"30702","_to":"57454"} +{"$label":"ACTS_IN","name":"Yates","type":"Role","_key":"65855","_from":"30702","_to":"40750"} +{"$label":"ACTS_IN","name":"Hannah Wald","type":"Role","_key":"109945","_from":"30704","_to":"64959"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"105117","_from":"30704","_to":"61863"} +{"$label":"ACTS_IN","name":"Chloe Pearce","type":"Role","_key":"100826","_from":"30704","_to":"59442"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"56135","_from":"30704","_to":"35683"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"51354","_from":"30704","_to":"33484"} +{"$label":"ACTS_IN","name":"Coach Mark Maddox","type":"Role","_key":"95852","_from":"30706","_to":"56368"} +{"$label":"ACTS_IN","name":"Mike Lechy","type":"Role","_key":"63273","_from":"30711","_to":"39660"} +{"$label":"ACTS_IN","name":"Patsy","type":"Role","_key":"90900","_from":"30732","_to":"53624"} +{"$label":"DIRECTED","_key":"52693","_from":"30732","_to":"34211"} +{"$label":"ACTS_IN","name":"Jackie Talbot","type":"Role","_key":"46541","_from":"30742","_to":"30733"} +{"$label":"ACTS_IN","name":"Mrs. Horan","type":"Role","_key":"46540","_from":"30741","_to":"30733"} +{"$label":"ACTS_IN","name":"Principal Morton","type":"Role","_key":"46536","_from":"30740","_to":"30733"} +{"$label":"ACTS_IN","name":"Kenny Garson","type":"Role","_key":"46535","_from":"30739","_to":"30733"} +{"$label":"ACTS_IN","name":"Norma Watson","type":"Role","_key":"46531","_from":"30738","_to":"30733"} +{"$label":"ACTS_IN","name":"Billy Nolan","type":"Role","_key":"46530","_from":"30737","_to":"30733"} +{"$label":"ACTS_IN","name":"Tommy Ross","type":"Role","_key":"46529","_from":"30736","_to":"30733"} +{"$label":"ACTS_IN","name":"Christine Hargenson","type":"Role","_key":"46528","_from":"30735","_to":"30733"} +{"$label":"ACTS_IN","name":"Sue Snell","type":"Role","_key":"46527","_from":"30734","_to":"30733"} +{"$label":"ACTS_IN","name":"Mary 'Mac' Mackenzie","type":"Role","_key":"90500","_from":"30735","_to":"53462"} +{"$label":"ACTS_IN","name":"Anna Patzke","type":"Role","_key":"69123","_from":"30735","_to":"42291"} +{"$label":"ACTS_IN","name":"Brenda Carter","type":"Role","_key":"56847","_from":"30735","_to":"36092"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"52742","_from":"30735","_to":"34224"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"105409","_from":"30736","_to":"62020"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"60997","_from":"30742","_to":"38538"} +{"$label":"ACTS_IN","name":"Clayton","type":"Role","_key":"46555","_from":"30752","_to":"30743"} +{"$label":"ACTS_IN","name":"Clayton","type":"Role","_key":"46554","_from":"30751","_to":"30743"} +{"$label":"ACTS_IN","name":"Caju","type":"Role","_key":"46553","_from":"30750","_to":"30743"} +{"$label":"ACTS_IN","name":"Fiel","type":"Role","_key":"46552","_from":"30749","_to":"30743"} +{"$label":"ACTS_IN","name":"Nefast \u00b4Fasto\u00b4","type":"Role","_key":"46551","_from":"30748","_to":"30743"} +{"$label":"ACTS_IN","name":"Camila","type":"Role","_key":"46550","_from":"30747","_to":"30743"} +{"$label":"ACTS_IN","name":"Cris","type":"Role","_key":"46549","_from":"30746","_to":"30743"} +{"$label":"ACTS_IN","name":"Heraldo","type":"Role","_key":"46548","_from":"30745","_to":"30743"} +{"$label":"DIRECTED","_key":"46544","_from":"30744","_to":"30743"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"46559","_from":"30756","_to":"30753"} +{"$label":"ACTS_IN","name":"Aya","type":"Role","_key":"46558","_from":"30755","_to":"30753"} +{"$label":"DIRECTED","_key":"46556","_from":"30754","_to":"30753"} +{"$label":"DIRECTED","_key":"48095","_from":"30754","_to":"31613"} +{"$label":"ACTS_IN","name":"Mary Sunday (Young)","type":"Role","_key":"46571","_from":"30763","_to":"30757"} +{"$label":"ACTS_IN","name":"Mr. Bandy","type":"Role","_key":"46570","_from":"30762","_to":"30757"} +{"$label":"ACTS_IN","name":"Abel Sunday","type":"Role","_key":"46569","_from":"30761","_to":"30757"} +{"$label":"ACTS_IN","name":"Mary Sunday","type":"Role","_key":"46567","_from":"30760","_to":"30757"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"46566","_from":"30759","_to":"30757"} +{"$label":"ACTS_IN","name":"H. W.","type":"Role","_key":"46563","_from":"30758","_to":"30757"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"46578","_from":"30769","_to":"30764"} +{"$label":"ACTS_IN","name":"Sak (as Law Wing Cheong)","type":"Role","_key":"46577","_from":"30768","_to":"30764"} +{"$label":"ACTS_IN","name":"Mr. Fu Kim Tong (as Lo Hoi Pang)","type":"Role","_key":"46576","_from":"30767","_to":"30764"} +{"$label":"ACTS_IN","name":"Bo (as Lam Ka Tung)","type":"Role","_key":"46575","_from":"30766","_to":"30764"} +{"$label":"ACTS_IN","name":"Chun Lei","type":"Role","_key":"46574","_from":"30765","_to":"30764"} +{"$label":"ACTS_IN","name":"Amnesia","type":"Role","_key":"108737","_from":"30765","_to":"64278"} +{"$label":"ACTS_IN","name":"May Cheung","type":"Role","_key":"98127","_from":"30765","_to":"57774"} +{"$label":"ACTS_IN","name":"Fong","type":"Role","_key":"73002","_from":"30765","_to":"43934"} +{"$label":"ACTS_IN","name":"Chin","type":"Role","_key":"54817","_from":"30765","_to":"35073"} +{"$label":"ACTS_IN","name":"Chu","type":"Role","_key":"118003","_from":"30766","_to":"69361"} +{"$label":"ACTS_IN","name":"Kun (as Lam Ka Tung)","type":"Role","_key":"117328","_from":"30766","_to":"69005"} +{"$label":"ACTS_IN","name":"Kun (as Lam Ka Tung)","type":"Role","_key":"103104","_from":"30766","_to":"60647"} +{"$label":"ACTS_IN","name":"Ko Chi Wai (as Lam Ka Tung)","type":"Role","_key":"98126","_from":"30766","_to":"57774"} +{"$label":"ACTS_IN","name":"Capitao Fabio","type":"Role","_key":"46584","_from":"30775","_to":"30770"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Matias","type":"Role","_key":"46583","_from":"30774","_to":"30770"} +{"$label":"ACTS_IN","name":"Neto","type":"Role","_key":"46582","_from":"30773","_to":"30770"} +{"$label":"ACTS_IN","name":"Capit\u00e3o Nascimento","type":"Role","_key":"46581","_from":"30772","_to":"30770"} +{"$label":"DIRECTED","_key":"46580","_from":"30771","_to":"30770"} +{"$label":"DIRECTED","_key":"49774","_from":"30771","_to":"32565"} +{"$label":"ACTS_IN","name":"Naldinho","type":"Role","_key":"49831","_from":"30772","_to":"32617"} +{"$label":"ACTS_IN","name":"Suel","type":"Role","_key":"49810","_from":"30772","_to":"32588"} +{"$label":"ACTS_IN","name":"Zico","type":"Role","_key":"49791","_from":"30772","_to":"32571"} +{"$label":"ACTS_IN","name":"Not Dead","type":"Role","_key":"89453","_from":"30775","_to":"52964"} +{"$label":"ACTS_IN","name":"Peixeira","type":"Role","_key":"49798","_from":"30775","_to":"32571"} +{"$label":"ACTS_IN","name":"The Monkey","type":"Role","_key":"46589","_from":"30779","_to":"30776"} +{"$label":"ACTS_IN","name":"Friday","type":"Role","_key":"46587","_from":"30778","_to":"30776"} +{"$label":"ACTS_IN","name":"Com. Christopher \" Kit \" Draper","type":"Role","_key":"46586","_from":"30777","_to":"30776"} +{"$label":"ACTS_IN","name":"Silvia","type":"Role","_key":"46593","_from":"30781","_to":"30780"} +{"$label":"ACTS_IN","name":"Roger Chambers","type":"Role","_key":"46606","_from":"30785","_to":"30782"} +{"$label":"ACTS_IN","name":"Dr. Hollins","type":"Role","_key":"46604","_from":"30784","_to":"30782"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"46603","_from":"30783","_to":"30782"} +{"$label":"ACTS_IN","name":"Billy Collier","type":"Role","_key":"112886","_from":"30783","_to":"66632"} +{"$label":"ACTS_IN","name":"Danny Epstein","type":"Role","_key":"101314","_from":"30783","_to":"59645"} +{"$label":"ACTS_IN","name":"Brain","type":"Role","_key":"99278","_from":"30783","_to":"58502"} +{"$label":"ACTS_IN","name":"Richard Levy the Shameless","type":"Role","_key":"94704","_from":"30783","_to":"55789"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"114105","_from":"30784","_to":"67202"} +{"$label":"ACTS_IN","name":"James Ellerby","type":"Role","_key":"111471","_from":"30784","_to":"65815"} +{"$label":"ACTS_IN","name":"Dick Goodwin","type":"Role","_key":"69933","_from":"30784","_to":"42673"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"46614","_from":"30791","_to":"30786"} +{"$label":"ACTS_IN","name":"Santos","type":"Role","_key":"46613","_from":"30790","_to":"30786"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"46612","_from":"30789","_to":"30786"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"46611","_from":"30788","_to":"30786"} +{"$label":"DIRECTED","_key":"46608","_from":"30787","_to":"30786"} +{"$label":"DIRECTED","_key":"57387","_from":"30787","_to":"36380"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"115320","_from":"30789","_to":"67891"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109978","_from":"30789","_to":"64979"} +{"$label":"DIRECTED","_key":"46617","_from":"30793","_to":"30792"} +{"$label":"DIRECTED","_key":"46632","_from":"30796","_to":"30794"} +{"$label":"ACTS_IN","name":"Dr. Frank Hopper","type":"Role","_key":"46631","_from":"30795","_to":"30794"} +{"$label":"ACTS_IN","name":"Chief Floyd","type":"Role","_key":"73118","_from":"30795","_to":"43978"} +{"$label":"DIRECTED","_key":"102565","_from":"30796","_to":"60339"} +{"$label":"DIRECTED","_key":"46651","_from":"30812","_to":"30797"} +{"$label":"ACTS_IN","name":"Beggar","type":"Role","_key":"46650","_from":"30811","_to":"30797"} +{"$label":"ACTS_IN","name":"Scheich bei der Auktion","type":"Role","_key":"46649","_from":"30810","_to":"30797"} +{"$label":"ACTS_IN","name":"Harem M\u00e4dchen","type":"Role","_key":"46648","_from":"30809","_to":"30797"} +{"$label":"ACTS_IN","name":"\u00d6l Scheich","type":"Role","_key":"46647","_from":"30808","_to":"30797"} +{"$label":"ACTS_IN","name":"Prince Salim","type":"Role","_key":"46646","_from":"30807","_to":"30797"} +{"$label":"ACTS_IN","name":"unbekannt","type":"Role","_key":"46645","_from":"30806","_to":"30797"} +{"$label":"ACTS_IN","name":"unbekannt","type":"Role","_key":"46644","_from":"30805","_to":"30797"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"46643","_from":"30804","_to":"30797"} +{"$label":"ACTS_IN","name":"Kaiser","type":"Role","_key":"46642","_from":"30803","_to":"30797"} +{"$label":"ACTS_IN","name":"Velvet","type":"Role","_key":"46640","_from":"30802","_to":"30797"} +{"$label":"ACTS_IN","name":"Satin","type":"Role","_key":"46639","_from":"30801","_to":"30797"} +{"$label":"ACTS_IN","name":"El Sharif","type":"Role","_key":"46635","_from":"30800","_to":"30797"} +{"$label":"ACTS_IN","name":"Commander Adam, US Navy","type":"Role","_key":"46634","_from":"30799","_to":"30797"} +{"$label":"ACTS_IN","name":"Ilsa","type":"Role","_key":"46633","_from":"30798","_to":"30797"} +{"$label":"ACTS_IN","name":"Synne","type":"Role","_key":"115590","_from":"30802","_to":"68049"} +{"$label":"ACTS_IN","name":"Cleopatra Schwartz","type":"Role","_key":"70975","_from":"30802","_to":"43107"} +{"$label":"ACTS_IN","name":"Drifter","type":"Role","_key":"49133","_from":"30811","_to":"32186"} +{"$label":"DIRECTED","_key":"46657","_from":"30816","_to":"30813"} +{"$label":"ACTS_IN","name":"Locke","type":"Role","_key":"46656","_from":"30815","_to":"30813"} +{"$label":"ACTS_IN","name":"Chloe Williams","type":"Role","_key":"46655","_from":"30814","_to":"30813"} +{"$label":"ACTS_IN","name":"Talk Show Host","type":"Role","_key":"109207","_from":"30815","_to":"64519"} +{"$label":"DIRECTED","_key":"70358","_from":"30816","_to":"42858"} +{"$label":"DIRECTED","_key":"62341","_from":"30816","_to":"39280"} +{"$label":"DIRECTED","_key":"61222","_from":"30816","_to":"38671"} +{"$label":"DIRECTED","_key":"52759","_from":"30816","_to":"34232"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"46661","_from":"30819","_to":"30817"} +{"$label":"DIRECTED","_key":"46658","_from":"30818","_to":"30817"} +{"$label":"DIRECTED","_key":"46668","_from":"30822","_to":"30821"} +{"$label":"DIRECTED","_key":"110757","_from":"30822","_to":"65429"} +{"$label":"DIRECTED","_key":"63764","_from":"30822","_to":"39869"} +{"$label":"DIRECTED","_key":"61343","_from":"30822","_to":"38711"} +{"$label":"DIRECTED","_key":"60068","_from":"30822","_to":"37905"} +{"$label":"DIRECTED","_key":"47651","_from":"30822","_to":"31397"} +{"$label":"DIRECTED","_key":"46689","_from":"30827","_to":"30826"} +{"$label":"DIRECTED","_key":"64760","_from":"30827","_to":"40306"} +{"$label":"ACTS_IN","name":"J.J.","type":"Role","_key":"46708","_from":"30832","_to":"30829"} +{"$label":"ACTS_IN","name":"Kolya","type":"Role","_key":"46705","_from":"30831","_to":"30829"} +{"$label":"ACTS_IN","name":"Agent Toby Lee Shavers","type":"Role","_key":"46704","_from":"30830","_to":"30829"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"116323","_from":"30832","_to":"68476"} +{"$label":"ACTS_IN","name":"Ophelia Franklin","type":"Role","_key":"96720","_from":"30832","_to":"56883"} +{"$label":"ACTS_IN","name":"Terri Jones","type":"Role","_key":"64514","_from":"30832","_to":"40186"} +{"$label":"ACTS_IN","name":"Mary-Kay","type":"Role","_key":"55719","_from":"30832","_to":"35451"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"46722","_from":"30836","_to":"30833"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"46721","_from":"30835","_to":"30833"} +{"$label":"ACTS_IN","name":"Spangler","type":"Role","_key":"46716","_from":"30834","_to":"30833"} +{"$label":"ACTS_IN","name":"Janice Waily","type":"Role","_key":"107778","_from":"30836","_to":"63633"} +{"$label":"DIRECTED","_key":"46738","_from":"30840","_to":"30837"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"46737","_from":"30839","_to":"30837"} +{"$label":"ACTS_IN","name":"Fook","type":"Role","_key":"46731","_from":"30838","_to":"30837"} +{"$label":"ACTS_IN","name":"Fireman","type":"Role","_key":"107907","_from":"30839","_to":"63713"} +{"$label":"DIRECTED","_key":"93637","_from":"30840","_to":"55126"} +{"$label":"DIRECTED","_key":"93543","_from":"30840","_to":"55082"} +{"$label":"ACTS_IN","name":"Pvt. Neumann","type":"Role","_key":"46744","_from":"30843","_to":"30841"} +{"$label":"DIRECTED","_key":"46739","_from":"30842","_to":"30841"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"116967","_from":"30843","_to":"68851"} +{"$label":"ACTS_IN","name":"Kris","type":"Role","_key":"114741","_from":"30843","_to":"67581"} +{"$label":"ACTS_IN","name":"Kenneth","type":"Role","_key":"102703","_from":"30843","_to":"60423"} +{"$label":"ACTS_IN","name":"Jutta Heubler","type":"Role","_key":"46757","_from":"30851","_to":"30844"} +{"$label":"ACTS_IN","name":"Frau Koch","type":"Role","_key":"46755","_from":"30850","_to":"30844"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"46753","_from":"30849","_to":"30844"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"46751","_from":"30848","_to":"30844"} +{"$label":"ACTS_IN","name":"Ayse","type":"Role","_key":"46750","_from":"30847","_to":"30844"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"46748","_from":"30846","_to":"30844"} +{"$label":"ACTS_IN","name":"Uli","type":"Role","_key":"46747","_from":"30845","_to":"30844"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"49750","_from":"30846","_to":"32550"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"68505","_from":"30848","_to":"42019"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"67709","_from":"30848","_to":"41641"} +{"$label":"ACTS_IN","name":"Wanda Haynes","type":"Role","_key":"46780","_from":"30865","_to":"30852"} +{"$label":"ACTS_IN","name":"Butch Mazursky","type":"Role","_key":"46777","_from":"30864","_to":"30852"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"46775","_from":"30863","_to":"30852"} +{"$label":"ACTS_IN","name":"Party Girl","type":"Role","_key":"46773","_from":"30862","_to":"30852"} +{"$label":"ACTS_IN","name":"Dance Bitch Girl","type":"Role","_key":"46772","_from":"30861","_to":"30852"} +{"$label":"ACTS_IN","name":"Neighborhood Girl on Couch","type":"Role","_key":"46771","_from":"30860","_to":"30852"} +{"$label":"ACTS_IN","name":"Adrian Jones","type":"Role","_key":"46770","_from":"30859","_to":"30852"} +{"$label":"ACTS_IN","name":"P.J. Truelove","type":"Role","_key":"46768","_from":"30858","_to":"30852"} +{"$label":"ACTS_IN","name":"Bobby '911'","type":"Role","_key":"46767","_from":"30857","_to":"30852"} +{"$label":"ACTS_IN","name":"Elvis Schmidt","type":"Role","_key":"46766","_from":"30856","_to":"30852"} +{"$label":"ACTS_IN","name":"Pick Giaimo","type":"Role","_key":"46764","_from":"30855","_to":"30852"} +{"$label":"ACTS_IN","name":"Tiko 'TKO' Martinez","type":"Role","_key":"46763","_from":"30854","_to":"30852"} +{"$label":"ACTS_IN","name":"Interviewer (as Matt Barry)","type":"Role","_key":"46761","_from":"30853","_to":"30852"} +{"$label":"ACTS_IN","name":"Billy Hankins","type":"Role","_key":"59489","_from":"30853","_to":"37565"} +{"$label":"ACTS_IN","name":"Snake - Flat Critter","type":"Role","_key":"119958","_from":"30855","_to":"70456"} +{"$label":"ACTS_IN","name":"Thomas Caffey","type":"Role","_key":"101761","_from":"30855","_to":"59885"} +{"$label":"ACTS_IN","name":"John McCain","type":"Role","_key":"116890","_from":"30856","_to":"68817"} +{"$label":"ACTS_IN","name":"Thaddeus James","type":"Role","_key":"105420","_from":"30856","_to":"62025"} +{"$label":"ACTS_IN","name":"Tim Dunphy","type":"Role","_key":"100900","_from":"30856","_to":"59484"} +{"$label":"ACTS_IN","name":"Ricky Garvey","type":"Role","_key":"97054","_from":"30856","_to":"57091"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"91565","_from":"30856","_to":"53977"} +{"$label":"ACTS_IN","name":"Armand Benoit","type":"Role","_key":"71634","_from":"30856","_to":"43379"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"65401","_from":"30856","_to":"40556"} +{"$label":"ACTS_IN","name":"Eddie Hicks","type":"Role","_key":"63533","_from":"30856","_to":"39770"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"54825","_from":"30856","_to":"35077"} +{"$label":"ACTS_IN","name":"Duffy","type":"Role","_key":"52831","_from":"30856","_to":"34252"} +{"$label":"ACTS_IN","name":"Stan Rosado","type":"Role","_key":"52789","_from":"30856","_to":"34242"} +{"$label":"ACTS_IN","name":"Mitch Quigley","type":"Role","_key":"50024","_from":"30856","_to":"32743"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"104351","_from":"30857","_to":"61389"} +{"$label":"ACTS_IN","name":"406","type":"Role","_key":"121462","_from":"30863","_to":"71351"} +{"$label":"ACTS_IN","name":"Kelly Porter","type":"Role","_key":"121435","_from":"30863","_to":"71342"} +{"$label":"ACTS_IN","name":"Christie","type":"Role","_key":"112244","_from":"30863","_to":"66289"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"69646","_from":"30863","_to":"42516"} +{"$label":"ACTS_IN","name":"Angie Anderson","type":"Role","_key":"61545","_from":"30863","_to":"38803"} +{"$label":"ACTS_IN","name":"Mandy Lane","type":"Role","_key":"52055","_from":"30863","_to":"33937"} +{"$label":"ACTS_IN","name":"Baja Miller","type":"Role","_key":"49897","_from":"30863","_to":"32664"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"109202","_from":"30864","_to":"64518"} +{"$label":"ACTS_IN","name":"Sara Tuffington","type":"Role","_key":"67482","_from":"30865","_to":"41562"} +{"$label":"ACTS_IN","name":"Julie Bird","type":"Role","_key":"50025","_from":"30865","_to":"32743"} +{"$label":"ACTS_IN","name":"Dr. Am\u00f6bius","type":"Role","_key":"46796","_from":"30878","_to":"30866"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"46795","_from":"30877","_to":"30866"} +{"$label":"ACTS_IN","name":"Receptionist in high-class hotel","type":"Role","_key":"46794","_from":"30876","_to":"30866"} +{"$label":"ACTS_IN","name":"Giancarlo","type":"Role","_key":"46793","_from":"30875","_to":"30866"} +{"$label":"ACTS_IN","name":"Violetta","type":"Role","_key":"46792","_from":"30874","_to":"30866"} +{"$label":"ACTS_IN","name":"Heinz R\u00fcdiger","type":"Role","_key":"46791","_from":"30873","_to":"30866"} +{"$label":"ACTS_IN","name":"Mrs. H\u00e4berle","type":"Role","_key":"46790","_from":"30872","_to":"30866"} +{"$label":"ACTS_IN","name":"Mrs. Endress","type":"Role","_key":"46789","_from":"30871","_to":"30866"} +{"$label":"ACTS_IN","name":"Mr. Endress","type":"Role","_key":"46788","_from":"30870","_to":"30866"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"46787","_from":"30869","_to":"30866"} +{"$label":"ACTS_IN","name":"Von Bronstedt","type":"Role","_key":"46786","_from":"30868","_to":"30866"} +{"$label":"ACTS_IN","name":"Dr. Friedhelm Eigenbrodt","type":"Role","_key":"46784","_from":"30867","_to":"30866"} +{"$label":"ACTS_IN","name":"Kfz-Meister","type":"Role","_key":"71596","_from":"30867","_to":"43365"} +{"$label":"ACTS_IN","name":"Dr. Berzelmeier","type":"Role","_key":"66215","_from":"30867","_to":"40962"} +{"$label":"ACTS_IN","name":"Herr Fuchs","type":"Role","_key":"51441","_from":"30867","_to":"33555"} +{"$label":"ACTS_IN","name":"Bracalone","type":"Role","_key":"72134","_from":"30869","_to":"43603"} +{"$label":"ACTS_IN","name":"Caputo","type":"Role","_key":"68216","_from":"30869","_to":"41891"} +{"$label":"ACTS_IN","name":"Caputo","type":"Role","_key":"67583","_from":"30869","_to":"41606"} +{"$label":"ACTS_IN","name":"Inspector Caputo","type":"Role","_key":"67574","_from":"30869","_to":"41602"} +{"$label":"ACTS_IN","name":"Frau Dietzl","type":"Role","_key":"58959","_from":"30871","_to":"37225"} +{"$label":"ACTS_IN","name":"Rex Racer","type":"Role","_key":"46802","_from":"30881","_to":"30879"} +{"$label":"ACTS_IN","name":"Racer X","type":"Role","_key":"46800","_from":"30880","_to":"30879"} +{"$label":"ACTS_IN","name":"Red Dawson","type":"Role","_key":"68306","_from":"30880","_to":"41931"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"47082","_from":"30880","_to":"31043"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"46816","_from":"30880","_to":"30888"} +{"$label":"ACTS_IN","name":"Colin Thompson","type":"Role","_key":"68321","_from":"30881","_to":"41934"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"50251","_from":"30881","_to":"32836"} +{"$label":"DIRECTED","_key":"46814","_from":"30887","_to":"30882"} +{"$label":"ACTS_IN","name":"Zuralski","type":"Role","_key":"46812","_from":"30886","_to":"30882"} +{"$label":"ACTS_IN","name":"M\u00f6llerin (Irms Kollegin)","type":"Role","_key":"46810","_from":"30885","_to":"30882"} +{"$label":"ACTS_IN","name":"Irms Mutter","type":"Role","_key":"46809","_from":"30884","_to":"30882"} +{"$label":"ACTS_IN","name":"Irm Krischka","type":"Role","_key":"46807","_from":"30883","_to":"30882"} +{"$label":"ACTS_IN","name":"Gesch\u00e4ftsfrau mit Bier","type":"Role","_key":"48407","_from":"30886","_to":"31768"} +{"$label":"ACTS_IN","name":"Staatsanwalt","type":"Role","_key":"46834","_from":"30891","_to":"30889"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"46831","_from":"30890","_to":"30889"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"57590","_from":"30890","_to":"36471"} +{"$label":"ACTS_IN","name":"Melle","type":"Role","_key":"52881","_from":"30890","_to":"34274"} +{"$label":"ACTS_IN","name":"Oasis Man","type":"Role","_key":"46847","_from":"30899","_to":"30892"} +{"$label":"ACTS_IN","name":"Gas Salesman","type":"Role","_key":"46846","_from":"30898","_to":"30892"} +{"$label":"ACTS_IN","name":"Security A","type":"Role","_key":"46844","_from":"30897","_to":"30892"} +{"$label":"ACTS_IN","name":"Moshe Ben Moshe","type":"Role","_key":"46843","_from":"30896","_to":"30892"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"46842","_from":"30895","_to":"30892"} +{"$label":"ACTS_IN","name":"Samir aka \"The American\"","type":"Role","_key":"46841","_from":"30894","_to":"30892"} +{"$label":"ACTS_IN","name":"Hanna Ben Moshe","type":"Role","_key":"46838","_from":"30893","_to":"30892"} +{"$label":"ACTS_IN","name":"Rachel Shwester","type":"Role","_key":"116511","_from":"30893","_to":"68578"} +{"$label":"ACTS_IN","name":"O'Toole (voice)","type":"Role","_key":"46866","_from":"30908","_to":"30900"} +{"$label":"ACTS_IN","name":"Maria (voice)","type":"Role","_key":"46865","_from":"30907","_to":"30900"} +{"$label":"ACTS_IN","name":"Serge (voice)","type":"Role","_key":"46863","_from":"30906","_to":"30900"} +{"$label":"ACTS_IN","name":"Rosie (voice)","type":"Role","_key":"46862","_from":"30905","_to":"30900"} +{"$label":"ACTS_IN","name":"Bobbie (voice)","type":"Role","_key":"46856","_from":"30904","_to":"30900"} +{"$label":"DIRECTED","_key":"46850","_from":"30903","_to":"30900"} +{"$label":"DIRECTED","_key":"46849","_from":"30902","_to":"30900"} +{"$label":"DIRECTED","_key":"46848","_from":"30901","_to":"30900"} +{"$label":"DIRECTED","_key":"50219","_from":"30901","_to":"32826"} +{"$label":"ACTS_IN","name":"Love-a-Lot-Bear (voice)","type":"Role","_key":"68753","_from":"30904","_to":"42127"} +{"$label":"ACTS_IN","name":"Alissa Vincent (voice)","type":"Role","_key":"93344","_from":"30905","_to":"54987"} +{"$label":"ACTS_IN","name":"Asajj Ventress (voice)","type":"Role","_key":"88509","_from":"30905","_to":"52456"} +{"$label":"ACTS_IN","name":"Allosaurus","type":"Role","_key":"111935","_from":"30906","_to":"66073"} +{"$label":"ACTS_IN","name":"Construction Worker Steve (voice)","type":"Role","_key":"98804","_from":"30906","_to":"58215"} +{"$label":"ACTS_IN","name":"Dino \/ Zoo Penguin","type":"Role","_key":"57345","_from":"30906","_to":"36355"} +{"$label":"ACTS_IN","name":"Ferdinand the Duck (voice)","type":"Role","_key":"54934","_from":"30906","_to":"35123"} +{"$label":"ACTS_IN","name":"Junior Agent","type":"Role","_key":"46881","_from":"30914","_to":"30909"} +{"$label":"ACTS_IN","name":"Senior Agent","type":"Role","_key":"46880","_from":"30913","_to":"30909"} +{"$label":"ACTS_IN","name":"Donnie Fenn","type":"Role","_key":"46879","_from":"30912","_to":"30909"} +{"$label":"ACTS_IN","name":"Officer Stanley Timmons","type":"Role","_key":"46877","_from":"30911","_to":"30909"} +{"$label":"ACTS_IN","name":"Louis Dobbler","type":"Role","_key":"46873","_from":"30910","_to":"30909"} +{"$label":"ACTS_IN","name":"Freeman Franks","type":"Role","_key":"67353","_from":"30911","_to":"41510"} +{"$label":"ACTS_IN","name":"Detective Lavastic","type":"Role","_key":"116313","_from":"30913","_to":"68473"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"60333","_from":"30913","_to":"38046"} +{"$label":"ACTS_IN","name":"Fireworks Guy","type":"Role","_key":"58725","_from":"30913","_to":"37088"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"46895","_from":"30924","_to":"30915"} +{"$label":"ACTS_IN","name":"Murakawa-gumi kumiin","type":"Role","_key":"46894","_from":"30923","_to":"30915"} +{"$label":"ACTS_IN","name":"A member of kitajima-gumi","type":"Role","_key":"46893","_from":"30922","_to":"30915"} +{"$label":"ACTS_IN","name":"Gangster","type":"Role","_key":"46892","_from":"30921","_to":"30915"} +{"$label":"ACTS_IN","name":"The Hit Man","type":"Role","_key":"46891","_from":"30920","_to":"30915"} +{"$label":"ACTS_IN","name":"Takahashi","type":"Role","_key":"46890","_from":"30919","_to":"30915"} +{"$label":"ACTS_IN","name":"Kitajima","type":"Role","_key":"46889","_from":"30918","_to":"30915"} +{"$label":"ACTS_IN","name":"Ryoji","type":"Role","_key":"46886","_from":"30917","_to":"30915"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"46884","_from":"30916","_to":"30915"} +{"$label":"ACTS_IN","name":"Kisaragi Saemon","type":"Role","_key":"60931","_from":"30922","_to":"38490"} +{"$label":"ACTS_IN","name":"Sailor's Lover","type":"Role","_key":"55778","_from":"30922","_to":"35497"} +{"$label":"DIRECTED","_key":"46913","_from":"30933","_to":"30925"} +{"$label":"DIRECTED","_key":"46912","_from":"30932","_to":"30925"} +{"$label":"ACTS_IN","name":"Teeze","type":"Role","_key":"46910","_from":"30931","_to":"30925"} +{"$label":"ACTS_IN","name":"Heslep the Barkeep","type":"Role","_key":"46908","_from":"30930","_to":"30925"} +{"$label":"ACTS_IN","name":"Matty at 13","type":"Role","_key":"46907","_from":"30929","_to":"30925"} +{"$label":"ACTS_IN","name":"Deputy Ward","type":"Role","_key":"46904","_from":"30928","_to":"30925"} +{"$label":"ACTS_IN","name":"Freddy the Watch","type":"Role","_key":"46903","_from":"30927","_to":"30925"} +{"$label":"ACTS_IN","name":"Chris Scarpa","type":"Role","_key":"46898","_from":"30926","_to":"30925"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"60045","_from":"30926","_to":"37890"} +{"$label":"ACTS_IN","name":"Jack Shepard","type":"Role","_key":"64064","_from":"30928","_to":"39986"} +{"$label":"ACTS_IN","name":"Jaller (voice)","type":"Role","_key":"119724","_from":"30929","_to":"70313"} +{"$label":"ACTS_IN","name":"Dilandau","type":"Role","_key":"110735","_from":"30929","_to":"65413"} +{"$label":"ACTS_IN","name":"Linden (voice)","type":"Role","_key":"110633","_from":"30929","_to":"65360"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"56756","_from":"30929","_to":"36045"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"119299","_from":"30931","_to":"70090"} +{"$label":"ACTS_IN","name":"Adrian","type":"Role","_key":"114761","_from":"30931","_to":"67595"} +{"$label":"ACTS_IN","name":"Little Steve","type":"Role","_key":"59965","_from":"30931","_to":"37851"} +{"$label":"DIRECTED","_key":"46923","_from":"30942","_to":"30934"} +{"$label":"ACTS_IN","name":"Paulas Freundin","type":"Role","_key":"46922","_from":"30941","_to":"30934"} +{"$label":"ACTS_IN","name":"Paulas Freundin","type":"Role","_key":"46921","_from":"30940","_to":"30934"} +{"$label":"ACTS_IN","name":"Bademeister","type":"Role","_key":"46920","_from":"30939","_to":"30934"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"46919","_from":"30938","_to":"30934"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"46918","_from":"30937","_to":"30934"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"46915","_from":"30936","_to":"30934"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"46914","_from":"30935","_to":"30934"} +{"$label":"ACTS_IN","name":"Siri (13 Jahre alt)","type":"Role","_key":"47179","_from":"30935","_to":"31101"} +{"$label":"ACTS_IN","name":"Achim","type":"Role","_key":"99186","_from":"30936","_to":"58439"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"90312","_from":"30936","_to":"53386"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"88237","_from":"30936","_to":"52346"} +{"$label":"ACTS_IN","name":"Alexander Karow","type":"Role","_key":"88222","_from":"30936","_to":"52345"} +{"$label":"ACTS_IN","name":"Tamaz","type":"Role","_key":"88061","_from":"30936","_to":"52271"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"48435","_from":"30936","_to":"31785"} +{"$label":"ACTS_IN","name":"Guido","type":"Role","_key":"48362","_from":"30936","_to":"31748"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"47256","_from":"30936","_to":"31136"} +{"$label":"ACTS_IN","name":"Sher Singh","type":"Role","_key":"46934","_from":"30952","_to":"30943"} +{"$label":"ACTS_IN","name":"Toto Ramji","type":"Role","_key":"46933","_from":"30951","_to":"30943"} +{"$label":"ACTS_IN","name":"Butcher","type":"Role","_key":"46932","_from":"30950","_to":"30943"} +{"$label":"ACTS_IN","name":"Mr. Rogers","type":"Role","_key":"46930","_from":"30949","_to":"30943"} +{"$label":"ACTS_IN","name":"Rustom Sethna","type":"Role","_key":"46929","_from":"30948","_to":"30943"} +{"$label":"ACTS_IN","name":"Bunty Sethna","type":"Role","_key":"46928","_from":"30947","_to":"30943"} +{"$label":"ACTS_IN","name":"Lenny Sethna","type":"Role","_key":"46927","_from":"30946","_to":"30943"} +{"$label":"ACTS_IN","name":"Shanta","type":"Role","_key":"46926","_from":"30945","_to":"30943"} +{"$label":"ACTS_IN","name":"Dil Navaz","type":"Role","_key":"46925","_from":"30944","_to":"30943"} +{"$label":"ACTS_IN","name":"Bhuvan","type":"Role","_key":"120836","_from":"30944","_to":"70961"} +{"$label":"ACTS_IN","name":"Rohit Kumar","type":"Role","_key":"110380","_from":"30944","_to":"65223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108792","_from":"30944","_to":"64303"} +{"$label":"ACTS_IN","name":"Akash","type":"Role","_key":"101644","_from":"30944","_to":"59825"} +{"$label":"ACTS_IN","name":"Sanjay Singhania","type":"Role","_key":"98380","_from":"30944","_to":"57950"} +{"$label":"ACTS_IN","name":"Rehan Qadri","type":"Role","_key":"49878","_from":"30944","_to":"32652"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"47508","_from":"30944","_to":"31300"} +{"$label":"ACTS_IN","name":"Ram Shankar Nikumbh","type":"Role","_key":"46956","_from":"30944","_to":"30965"} +{"$label":"DIRECTED","_key":"46954","_from":"30944","_to":"30965"} +{"$label":"ACTS_IN","name":"Anisha Roy","type":"Role","_key":"120659","_from":"30947","_to":"70859"} +{"$label":"ACTS_IN","name":"Narang","type":"Role","_key":"112486","_from":"30950","_to":"66413"} +{"$label":"ACTS_IN","name":"Geet's Chacha","type":"Role","_key":"72098","_from":"30950","_to":"43580"} +{"$label":"ACTS_IN","name":"Julna","type":"Role","_key":"46944","_from":"30960","_to":"30954"} +{"$label":"ACTS_IN","name":"Makar","type":"Role","_key":"46943","_from":"30959","_to":"30954"} +{"$label":"ACTS_IN","name":"King Toranshah","type":"Role","_key":"46940","_from":"30958","_to":"30954"} +{"$label":"ACTS_IN","name":"Aishah","type":"Role","_key":"46938","_from":"30957","_to":"30954"} +{"$label":"ACTS_IN","name":"Princess Shalimar","type":"Role","_key":"46937","_from":"30956","_to":"30954"} +{"$label":"DIRECTED","_key":"46935","_from":"30955","_to":"30954"} +{"$label":"ACTS_IN","name":"Steve Lacey","type":"Role","_key":"120626","_from":"30955","_to":"70847"} +{"$label":"ACTS_IN","name":"Tommy Edlon Drake","type":"Role","_key":"101009","_from":"30958","_to":"59526"} +{"$label":"ACTS_IN","name":"Valencia","type":"Role","_key":"46953","_from":"30964","_to":"30961"} +{"$label":"ACTS_IN","name":"Romero","type":"Role","_key":"46952","_from":"30963","_to":"30961"} +{"$label":"ACTS_IN","name":"Sheba","type":"Role","_key":"46947","_from":"30962","_to":"30961"} +{"$label":"ACTS_IN","name":"Rajan Damodaran","type":"Role","_key":"46960","_from":"30970","_to":"30965"} +{"$label":"ACTS_IN","name":"Yohaan Awasthi","type":"Role","_key":"46959","_from":"30969","_to":"30965"} +{"$label":"ACTS_IN","name":"Nandkishore Awasthi","type":"Role","_key":"46958","_from":"30968","_to":"30965"} +{"$label":"ACTS_IN","name":"Maya Awasthi","type":"Role","_key":"46957","_from":"30967","_to":"30965"} +{"$label":"ACTS_IN","name":"Ishaan Nandkishore Awasthi","type":"Role","_key":"46955","_from":"30966","_to":"30965"} +{"$label":"ACTS_IN","name":"Servant","type":"Role","_key":"121558","_from":"30968","_to":"71418"} +{"$label":"ACTS_IN","name":"Gulabi","type":"Role","_key":"46967","_from":"30976","_to":"30971"} +{"$label":"ACTS_IN","name":"Shakuntala","type":"Role","_key":"46966","_from":"30975","_to":"30971"} +{"$label":"ACTS_IN","name":"Bhagavati, Narayan's Mother","type":"Role","_key":"46965","_from":"30974","_to":"30971"} +{"$label":"ACTS_IN","name":"Narayan","type":"Role","_key":"46964","_from":"30973","_to":"30971"} +{"$label":"ACTS_IN","name":"Chuyia","type":"Role","_key":"46963","_from":"30972","_to":"30971"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"120702","_from":"30973","_to":"70894"} +{"$label":"ACTS_IN","name":"Sameer","type":"Role","_key":"120617","_from":"30973","_to":"70842"} +{"$label":"ACTS_IN","name":"Kabir","type":"Role","_key":"112358","_from":"30973","_to":"66339"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108795","_from":"30973","_to":"64303"} +{"$label":"ACTS_IN","name":"Guest Appearance","type":"Role","_key":"100011","_from":"30973","_to":"59002"} +{"$label":"ACTS_IN","name":"Kunal","type":"Role","_key":"98384","_from":"30973","_to":"57955"} +{"$label":"ACTS_IN","name":"Ranibai","type":"Role","_key":"105803","_from":"30975","_to":"62286"} +{"$label":"ACTS_IN","name":"Dr. Vandana","type":"Role","_key":"104746","_from":"30975","_to":"61621"} +{"$label":"DIRECTED","_key":"46985","_from":"30982","_to":"30977"} +{"$label":"ACTS_IN","name":"Poo","type":"Role","_key":"46984","_from":"30981","_to":"30977"} +{"$label":"ACTS_IN","name":"Six-Year-Old Augusten Burroughs","type":"Role","_key":"46983","_from":"30980","_to":"30977"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"46981","_from":"30979","_to":"30977"} +{"$label":"ACTS_IN","name":"Fern Stewart","type":"Role","_key":"46980","_from":"30978","_to":"30977"} +{"$label":"ACTS_IN","name":"Rosetta","type":"Role","_key":"93203","_from":"30978","_to":"54917"} +{"$label":"ACTS_IN","name":"Tia Hall","type":"Role","_key":"58716","_from":"30978","_to":"37088"} +{"$label":"ACTS_IN","name":"Maria Kelly","type":"Role","_key":"56013","_from":"30978","_to":"35606"} +{"$label":"ACTS_IN","name":"Mary Jo Gornicke","type":"Role","_key":"54482","_from":"30978","_to":"34927"} +{"$label":"ACTS_IN","name":"Terry Alba","type":"Role","_key":"106716","_from":"30979","_to":"62890"} +{"$label":"ACTS_IN","name":"Merced\u00e8s Iguanada","type":"Role","_key":"69409","_from":"30979","_to":"42425"} +{"$label":"ACTS_IN","name":"Agnes Gebhard","type":"Role","_key":"68393","_from":"30979","_to":"41964"} +{"$label":"DIRECTED","_key":"51595","_from":"30982","_to":"33668"} +{"$label":"ACTS_IN","name":"Stripper #2","type":"Role","_key":"47000","_from":"30988","_to":"30983"} +{"$label":"ACTS_IN","name":"Stripper #1","type":"Role","_key":"46999","_from":"30987","_to":"30983"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"46998","_from":"30986","_to":"30983"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"46997","_from":"30985","_to":"30983"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"46989","_from":"30984","_to":"30983"} +{"$label":"ACTS_IN","name":"Millie Harris","type":"Role","_key":"48594","_from":"30984","_to":"31879"} +{"$label":"ACTS_IN","name":"President Camacho","type":"Role","_key":"47017","_from":"31000","_to":"30989"} +{"$label":"ACTS_IN","name":"Trashy Guy","type":"Role","_key":"47016","_from":"30999","_to":"30989"} +{"$label":"ACTS_IN","name":"Yuppie Husband","type":"Role","_key":"47014","_from":"30998","_to":"30989"} +{"$label":"ACTS_IN","name":"Horny Guy","type":"Role","_key":"47013","_from":"30997","_to":"30989"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"47012","_from":"30996","_to":"30989"} +{"$label":"ACTS_IN","name":"Hospital Technician","type":"Role","_key":"47010","_from":"30995","_to":"30989"} +{"$label":"ACTS_IN","name":"Sgt. Keller","type":"Role","_key":"47009","_from":"30994","_to":"30989"} +{"$label":"ACTS_IN","name":"Bailiff","type":"Role","_key":"47008","_from":"30993","_to":"30989"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"47007","_from":"30992","_to":"30989"} +{"$label":"ACTS_IN","name":"Secretary of Defense","type":"Role","_key":"47005","_from":"30991","_to":"30989"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"47003","_from":"30990","_to":"30989"} +{"$label":"ACTS_IN","name":"Verona De Tessant","type":"Role","_key":"119395","_from":"30990","_to":"70150"} +{"$label":"ACTS_IN","name":"Michael Perry","type":"Role","_key":"108472","_from":"30998","_to":"64118"} +{"$label":"ACTS_IN","name":"Deputy DA Ellis Loew","type":"Role","_key":"55474","_from":"30998","_to":"35352"} +{"$label":"ACTS_IN","name":"Hackman","type":"Role","_key":"116422","_from":"31000","_to":"68531"} +{"$label":"ACTS_IN","name":"Officer DeGepse","type":"Role","_key":"95090","_from":"31000","_to":"55966"} +{"$label":"ACTS_IN","name":"Agent 91","type":"Role","_key":"71399","_from":"31000","_to":"43300"} +{"$label":"ACTS_IN","name":"Damon","type":"Role","_key":"63227","_from":"31000","_to":"39644"} +{"$label":"ACTS_IN","name":"Poker Guy #1","type":"Role","_key":"58557","_from":"31000","_to":"36989"} +{"$label":"ACTS_IN","name":"Big Jack Latimore","type":"Role","_key":"56351","_from":"31000","_to":"35808"} +{"$label":"ACTS_IN","name":"Cheeseburger Eddy","type":"Role","_key":"52915","_from":"31000","_to":"34291"} +{"$label":"ACTS_IN","name":"Darrell","type":"Role","_key":"47488","_from":"31000","_to":"31280"} +{"$label":"DIRECTED","_key":"47025","_from":"31007","_to":"31001"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47024","_from":"31006","_to":"31001"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47023","_from":"31005","_to":"31001"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47022","_from":"31004","_to":"31001"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47020","_from":"31003","_to":"31001"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"47019","_from":"31002","_to":"31001"} +{"$label":"ACTS_IN","name":"Hotarubi","type":"Role","_key":"60916","_from":"31002","_to":"38490"} +{"$label":"ACTS_IN","name":"Keyman","type":"Role","_key":"106850","_from":"31005","_to":"62987"} +{"$label":"DIRECTED","_key":"47050","_from":"31033","_to":"31008"} +{"$label":"ACTS_IN","name":"Himself (uncredited)","type":"Role","_key":"47049","_from":"31032","_to":"31008"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"47048","_from":"31031","_to":"31008"} +{"$label":"ACTS_IN","name":"Elsa Friend","type":"Role","_key":"47047","_from":"31030","_to":"31008"} +{"$label":"ACTS_IN","name":"Elsa Friend","type":"Role","_key":"47046","_from":"31029","_to":"31008"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"47045","_from":"31028","_to":"31008"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"47044","_from":"31027","_to":"31008"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"47043","_from":"31026","_to":"31008"} +{"$label":"ACTS_IN","name":"Editor","type":"Role","_key":"47042","_from":"31025","_to":"31008"} +{"$label":"ACTS_IN","name":"Barmaid","type":"Role","_key":"47041","_from":"31024","_to":"31008"} +{"$label":"ACTS_IN","name":"Fitz","type":"Role","_key":"47040","_from":"31023","_to":"31008"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"47039","_from":"31022","_to":"31008"} +{"$label":"ACTS_IN","name":"DJ at Dance","type":"Role","_key":"47038","_from":"31021","_to":"31008"} +{"$label":"ACTS_IN","name":"Longa","type":"Role","_key":"47037","_from":"31020","_to":"31008"} +{"$label":"ACTS_IN","name":"Market Woman","type":"Role","_key":"47036","_from":"31019","_to":"31008"} +{"$label":"ACTS_IN","name":"Housewife","type":"Role","_key":"47035","_from":"31018","_to":"31008"} +{"$label":"ACTS_IN","name":"Pushcart Boy","type":"Role","_key":"47034","_from":"31017","_to":"31008"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"47033","_from":"31016","_to":"31008"} +{"$label":"ACTS_IN","name":"Detective Ray Jones","type":"Role","_key":"47032","_from":"31015","_to":"31008"} +{"$label":"ACTS_IN","name":"Hilton","type":"Role","_key":"47031","_from":"31014","_to":"31008"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"47030","_from":"31013","_to":"31008"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"47029","_from":"31012","_to":"31008"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"47028","_from":"31011","_to":"31008"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"47027","_from":"31010","_to":"31008"} +{"$label":"ACTS_IN","name":"Ivanhoe \"Ivan\" Martin","type":"Role","_key":"47026","_from":"31009","_to":"31008"} +{"$label":"ACTS_IN","name":"Police officer #1","type":"Role","_key":"119022","_from":"31011","_to":"69958"} +{"$label":"DIRECTED","_key":"47066","_from":"31042","_to":"31034"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"47063","_from":"31041","_to":"31034"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"47062","_from":"31040","_to":"31034"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"47061","_from":"31039","_to":"31034"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"47060","_from":"31038","_to":"31034"} +{"$label":"ACTS_IN","name":"Therapist","type":"Role","_key":"47057","_from":"31037","_to":"31034"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"47056","_from":"31036","_to":"31034"} +{"$label":"ACTS_IN","name":"Mallory","type":"Role","_key":"47053","_from":"31035","_to":"31034"} +{"$label":"ACTS_IN","name":"Bianca Kittles","type":"Role","_key":"94780","_from":"31035","_to":"55823"} +{"$label":"ACTS_IN","name":"Cheryl Smolley","type":"Role","_key":"94467","_from":"31035","_to":"55632"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"65367","_from":"31035","_to":"40552"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"60070","_from":"31035","_to":"37905"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"59602","_from":"31035","_to":"37627"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"57951","_from":"31035","_to":"36665"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"57252","_from":"31035","_to":"36317"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"60294","_from":"31036","_to":"38026"} +{"$label":"ACTS_IN","name":"Gloria Cleary","type":"Role","_key":"54424","_from":"31036","_to":"34907"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"49486","_from":"31036","_to":"32398"} +{"$label":"ACTS_IN","name":"Luvlee","type":"Role","_key":"48657","_from":"31036","_to":"31916"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"47313","_from":"31036","_to":"31163"} +{"$label":"DIRECTED","_key":"64546","_from":"31037","_to":"40205"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"96864","_from":"31039","_to":"56966"} +{"$label":"ACTS_IN","name":"Amy Carson","type":"Role","_key":"94956","_from":"31039","_to":"55920"} +{"$label":"ACTS_IN","name":"Claire Kuchever","type":"Role","_key":"47184","_from":"31039","_to":"31106"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"90652","_from":"31040","_to":"53522"} +{"$label":"ACTS_IN","name":"Norah","type":"Role","_key":"88523","_from":"31040","_to":"52467"} +{"$label":"ACTS_IN","name":"Darcy","type":"Role","_key":"61616","_from":"31040","_to":"38831"} +{"$label":"ACTS_IN","name":"Susan Gardner","type":"Role","_key":"50396","_from":"31040","_to":"32925"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"47450","_from":"31040","_to":"31257"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"102293","_from":"31041","_to":"60192"} +{"$label":"ACTS_IN","name":"Top Coated Gunman","type":"Role","_key":"47080","_from":"31048","_to":"31043"} +{"$label":"ACTS_IN","name":"FBI Aid","type":"Role","_key":"47079","_from":"31047","_to":"31043"} +{"$label":"ACTS_IN","name":"Freeman Heller","type":"Role","_key":"47078","_from":"31046","_to":"31043"} +{"$label":"ACTS_IN","name":"Beanie","type":"Role","_key":"47076","_from":"31045","_to":"31043"} +{"$label":"ACTS_IN","name":"Primo Sparazza","type":"Role","_key":"47069","_from":"31044","_to":"31043"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"97682","_from":"31044","_to":"57516"} +{"$label":"DIRECTED","_key":"47096","_from":"31056","_to":"31049"} +{"$label":"DIRECTED","_key":"47095","_from":"31055","_to":"31049"} +{"$label":"ACTS_IN","name":"Todd Thomas","type":"Role","_key":"47094","_from":"31054","_to":"31049"} +{"$label":"ACTS_IN","name":"Oldfield","type":"Role","_key":"47092","_from":"31053","_to":"31049"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"47091","_from":"31052","_to":"31049"} +{"$label":"ACTS_IN","name":"Hesh","type":"Role","_key":"47090","_from":"31051","_to":"31049"} +{"$label":"ACTS_IN","name":"John \"Rugged\" Rudgate","type":"Role","_key":"47084","_from":"31050","_to":"31049"} +{"$label":"ACTS_IN","name":"Beagle","type":"Role","_key":"106882","_from":"31050","_to":"63011"} +{"$label":"ACTS_IN","name":"Neal Downs","type":"Role","_key":"92077","_from":"31050","_to":"54332"} +{"$label":"ACTS_IN","name":"Doug Bukowski","type":"Role","_key":"56844","_from":"31050","_to":"36092"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"116176","_from":"31051","_to":"68405"} +{"$label":"ACTS_IN","name":"Scott Brumberg","type":"Role","_key":"88403","_from":"31051","_to":"52394"} +{"$label":"ACTS_IN","name":"Ingenieur","type":"Role","_key":"68854","_from":"31051","_to":"42177"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"60280","_from":"31051","_to":"38015"} +{"$label":"ACTS_IN","name":"Beer Guy","type":"Role","_key":"60226","_from":"31051","_to":"37994"} +{"$label":"ACTS_IN","name":"13-Year-Old Oliver","type":"Role","_key":"55610","_from":"31052","_to":"35408"} +{"$label":"ACTS_IN","name":"Megawatti","type":"Role","_key":"92881","_from":"31054","_to":"54784"} +{"$label":"DIRECTED","_key":"47113","_from":"31064","_to":"31057"} +{"$label":"DIRECTED","_key":"47112","_from":"31063","_to":"31057"} +{"$label":"ACTS_IN","name":"Quillo (voice)","type":"Role","_key":"47111","_from":"31062","_to":"31057"} +{"$label":"ACTS_IN","name":"Spike (voice)","type":"Role","_key":"47110","_from":"31061","_to":"31057"} +{"$label":"ACTS_IN","name":"Bucky (voice)","type":"Role","_key":"47109","_from":"31060","_to":"31057"} +{"$label":"ACTS_IN","name":"Heather (voice)","type":"Role","_key":"47107","_from":"31059","_to":"31057"} +{"$label":"ACTS_IN","name":"Verne (voice)","type":"Role","_key":"47098","_from":"31058","_to":"31057"} +{"$label":"ACTS_IN","name":"Harold Anderson","type":"Role","_key":"63107","_from":"31058","_to":"39590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53630","_from":"31058","_to":"34590"} +{"$label":"ACTS_IN","name":"Beatrice Bell","type":"Role","_key":"98745","_from":"31059","_to":"58191"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"49029","_from":"31059","_to":"32126"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58821","_from":"31061","_to":"37148"} +{"$label":"ACTS_IN","name":"Young Laura","type":"Role","_key":"119298","_from":"31062","_to":"70090"} +{"$label":"ACTS_IN","name":"Ruthie Smithens","type":"Role","_key":"49309","_from":"31062","_to":"32288"} +{"$label":"DIRECTED","_key":"100123","_from":"31063","_to":"59057"} +{"$label":"DIRECTED","_key":"51483","_from":"31063","_to":"33574"} +{"$label":"DIRECTED","_key":"121016","_from":"31064","_to":"71073"} +{"$label":"DIRECTED","_key":"47116","_from":"31066","_to":"31065"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"47120","_from":"31068","_to":"31067"} +{"$label":"ACTS_IN","name":"Flora","type":"Role","_key":"59996","_from":"31068","_to":"37868"} +{"$label":"ACTS_IN","name":"Chippy McDuffy","type":"Role","_key":"55983","_from":"31068","_to":"35588"} +{"$label":"ACTS_IN","name":"Man with Michelle","type":"Role","_key":"47136","_from":"31079","_to":"31069"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"47135","_from":"31078","_to":"31069"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"47133","_from":"31077","_to":"31069"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"47132","_from":"31076","_to":"31069"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"47130","_from":"31075","_to":"31069"} +{"$label":"ACTS_IN","name":"Doll","type":"Role","_key":"47127","_from":"31074","_to":"31069"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"47126","_from":"31073","_to":"31069"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"47125","_from":"31072","_to":"31069"} +{"$label":"ACTS_IN","name":"Motel Clerk","type":"Role","_key":"47124","_from":"31071","_to":"31069"} +{"$label":"ACTS_IN","name":"Motel Man","type":"Role","_key":"47123","_from":"31070","_to":"31069"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"120444","_from":"31072","_to":"70755"} +{"$label":"ACTS_IN","name":"Karla Homolka","type":"Role","_key":"55748","_from":"31072","_to":"35483"} +{"$label":"ACTS_IN","name":"Edward Koogle","type":"Role","_key":"101593","_from":"31075","_to":"59795"} +{"$label":"ACTS_IN","name":"Snack Stand Vendor","type":"Role","_key":"60603","_from":"31076","_to":"38253"} +{"$label":"ACTS_IN","name":"Funeral Attendant","type":"Role","_key":"58623","_from":"31077","_to":"37036"} +{"$label":"DIRECTED","_key":"47153","_from":"31087","_to":"31080"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"47152","_from":"31086","_to":"31080"} +{"$label":"ACTS_IN","name":"Ratcliffe","type":"Role","_key":"47148","_from":"31085","_to":"31080"} +{"$label":"ACTS_IN","name":"Vaughan","type":"Role","_key":"47147","_from":"31084","_to":"31080"} +{"$label":"ACTS_IN","name":"Alcock","type":"Role","_key":"47146","_from":"31083","_to":"31080"} +{"$label":"ACTS_IN","name":"Sackville","type":"Role","_key":"47145","_from":"31082","_to":"31080"} +{"$label":"ACTS_IN","name":"Chiffinch","type":"Role","_key":"47139","_from":"31081","_to":"31080"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"107797","_from":"31081","_to":"63633"} +{"$label":"ACTS_IN","name":"Geography Teacher","type":"Role","_key":"93645","_from":"31081","_to":"55126"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108089","_from":"31082","_to":"63851"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"104426","_from":"31082","_to":"61430"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"94153","_from":"31082","_to":"55440"} +{"$label":"ACTS_IN","name":"Amis","type":"Role","_key":"56051","_from":"31083","_to":"35624"} +{"$label":"ACTS_IN","name":"Tus","type":"Role","_key":"54575","_from":"31083","_to":"34967"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"51292","_from":"31083","_to":"33450"} +{"$label":"ACTS_IN","name":"Baggy","type":"Role","_key":"95880","_from":"31084","_to":"56389"} +{"$label":"ACTS_IN","name":"Bluey","type":"Role","_key":"94455","_from":"31084","_to":"55618"} +{"$label":"ACTS_IN","name":"Mita","type":"Role","_key":"47168","_from":"31100","_to":"31088"} +{"$label":"ACTS_IN","name":"English Businessman","type":"Role","_key":"47166","_from":"31099","_to":"31088"} +{"$label":"ACTS_IN","name":"American Businessman","type":"Role","_key":"47165","_from":"31098","_to":"31088"} +{"$label":"ACTS_IN","name":"Fight Referee","type":"Role","_key":"47164","_from":"31097","_to":"31088"} +{"$label":"ACTS_IN","name":"English Boxer","type":"Role","_key":"47163","_from":"31096","_to":"31088"} +{"$label":"ACTS_IN","name":"Spanish Swordman","type":"Role","_key":"47162","_from":"31095","_to":"31088"} +{"$label":"ACTS_IN","name":"Belgian Fighter","type":"Role","_key":"47161","_from":"31094","_to":"31088"} +{"$label":"ACTS_IN","name":"Hercules O'Brien","type":"Role","_key":"47160","_from":"31093","_to":"31088"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"47159","_from":"31092","_to":"31088"} +{"$label":"ACTS_IN","name":"Yuanjia's Mother","type":"Role","_key":"47158","_from":"31091","_to":"31088"} +{"$label":"ACTS_IN","name":"Nong Jinsun","type":"Role","_key":"47157","_from":"31090","_to":"31088"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"47156","_from":"31089","_to":"31088"} +{"$label":"ACTS_IN","name":"T.K.","type":"Role","_key":"51827","_from":"31093","_to":"33818"} +{"$label":"ACTS_IN","name":"Drunken businessman fighter","type":"Role","_key":"106336","_from":"31094","_to":"62646"} +{"$label":"ACTS_IN","name":"Special Department Medical Officer","type":"Role","_key":"94596","_from":"31094","_to":"55732"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"97677","_from":"31095","_to":"57516"} +{"$label":"ACTS_IN","name":"Blade","type":"Role","_key":"71292","_from":"31095","_to":"43245"} +{"$label":"DIRECTED","_key":"49569","_from":"31100","_to":"32456"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"47181","_from":"31105","_to":"31101"} +{"$label":"ACTS_IN","name":"Siri (8 Jahre alt)","type":"Role","_key":"47178","_from":"31104","_to":"31101"} +{"$label":"ACTS_IN","name":"Frau im Laden","type":"Role","_key":"47177","_from":"31103","_to":"31101"} +{"$label":"ACTS_IN","name":"Kristian","type":"Role","_key":"47176","_from":"31102","_to":"31101"} +{"$label":"ACTS_IN","name":"Agent Kevin Donnelly - ATF","type":"Role","_key":"47197","_from":"31109","_to":"31106"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"47193","_from":"31108","_to":"31106"} +{"$label":"ACTS_IN","name":"Agent Stalhuth","type":"Role","_key":"47191","_from":"31107","_to":"31106"} +{"$label":"ACTS_IN","name":"Jack's Assistant","type":"Role","_key":"47211","_from":"31116","_to":"31110"} +{"$label":"ACTS_IN","name":"Dick's Secretary","type":"Role","_key":"47209","_from":"31115","_to":"31110"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"47208","_from":"31114","_to":"31110"} +{"$label":"ACTS_IN","name":"Billy Harper","type":"Role","_key":"47207","_from":"31113","_to":"31110"} +{"$label":"ACTS_IN","name":"Oz Peterson","type":"Role","_key":"47206","_from":"31112","_to":"31110"} +{"$label":"ACTS_IN","name":"Veronica Cleeman","type":"Role","_key":"47203","_from":"31111","_to":"31110"} +{"$label":"ACTS_IN","name":"Commissioner Barbara Gordon","type":"Role","_key":"108229","_from":"31111","_to":"63962"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"93583","_from":"31111","_to":"55109"} +{"$label":"ACTS_IN","name":"Ronica Miles","type":"Role","_key":"66774","_from":"31111","_to":"41256"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"62302","_from":"31111","_to":"39249"} +{"$label":"ACTS_IN","name":"Kate Crawford","type":"Role","_key":"56111","_from":"31111","_to":"35670"} +{"$label":"ACTS_IN","name":"Tod","type":"Role","_key":"121006","_from":"31116","_to":"71073"} +{"$label":"ACTS_IN","name":"Rikki Simms","type":"Role","_key":"101846","_from":"31116","_to":"59942"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"51924","_from":"31116","_to":"33869"} +{"$label":"DIRECTED","_key":"47229","_from":"31124","_to":"31117"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"47226","_from":"31123","_to":"31117"} +{"$label":"ACTS_IN","name":"T-Dog","type":"Role","_key":"47225","_from":"31122","_to":"31117"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"47224","_from":"31121","_to":"31117"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"47222","_from":"31120","_to":"31117"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"47221","_from":"31119","_to":"31117"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"47220","_from":"31118","_to":"31117"} +{"$label":"ACTS_IN","name":"Calvin","type":"Role","_key":"103203","_from":"31120","_to":"60705"} +{"$label":"ACTS_IN","name":"Joanne Charis","type":"Role","_key":"60896","_from":"31121","_to":"38475"} +{"$label":"ACTS_IN","name":"Corporal Marshall","type":"Role","_key":"105357","_from":"31122","_to":"61986"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"100409","_from":"31122","_to":"59211"} +{"$label":"ACTS_IN","name":"Drake Hanswald","type":"Role","_key":"113759","_from":"31123","_to":"67033"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"103206","_from":"31123","_to":"60705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47231","_from":"31127","_to":"31125"} +{"$label":"DIRECTED","_key":"47230","_from":"31126","_to":"31125"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"47242","_from":"31132","_to":"31128"} +{"$label":"ACTS_IN","name":"Tint","type":"Role","_key":"47239","_from":"31131","_to":"31128"} +{"$label":"ACTS_IN","name":"En-Joo","type":"Role","_key":"47238","_from":"31130","_to":"31128"} +{"$label":"ACTS_IN","name":"Diaz","type":"Role","_key":"47236","_from":"31129","_to":"31128"} +{"$label":"DIRECTED","_key":"47247","_from":"31135","_to":"31133"} +{"$label":"ACTS_IN","name":"Psychologist","type":"Role","_key":"47246","_from":"31134","_to":"31133"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"67047","_from":"31134","_to":"41385"} +{"$label":"ACTS_IN","name":"Angelika","type":"Role","_key":"52287","_from":"31134","_to":"34043"} +{"$label":"ACTS_IN","name":"Kaschi","type":"Role","_key":"47261","_from":"31144","_to":"31136"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"47259","_from":"31143","_to":"31136"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"47258","_from":"31142","_to":"31136"} +{"$label":"ACTS_IN","name":"Bomber","type":"Role","_key":"47257","_from":"31141","_to":"31136"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"47255","_from":"31140","_to":"31136"} +{"$label":"ACTS_IN","name":"Sinan","type":"Role","_key":"47254","_from":"31139","_to":"31136"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"47250","_from":"31138","_to":"31136"} +{"$label":"DIRECTED","_key":"47248","_from":"31137","_to":"31136"} +{"$label":"DIRECTED","_key":"53580","_from":"31137","_to":"34579"} +{"$label":"DIRECTED","_key":"53205","_from":"31137","_to":"34414"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"88229","_from":"31138","_to":"52345"} +{"$label":"ACTS_IN","name":"Matz Selbmann","type":"Role","_key":"63807","_from":"31138","_to":"39895"} +{"$label":"ACTS_IN","name":"Rico Bartsch","type":"Role","_key":"47678","_from":"31138","_to":"31413"} +{"$label":"ACTS_IN","name":"Elyas","type":"Role","_key":"99185","_from":"31139","_to":"58439"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"47271","_from":"31149","_to":"31145"} +{"$label":"ACTS_IN","name":"Rosy","type":"Role","_key":"47268","_from":"31148","_to":"31145"} +{"$label":"ACTS_IN","name":"Helga","type":"Role","_key":"47266","_from":"31147","_to":"31145"} +{"$label":"ACTS_IN","name":"Erich","type":"Role","_key":"47265","_from":"31146","_to":"31145"} +{"$label":"ACTS_IN","name":"Hans Epp","type":"Role","_key":"62514","_from":"31146","_to":"39362"} +{"$label":"ACTS_IN","name":"Frau R.","type":"Role","_key":"62509","_from":"31147","_to":"39360"} +{"$label":"ACTS_IN","name":"M\u00e4dchen im ersten Caf\u00e9","type":"Role","_key":"61904","_from":"31147","_to":"38955"} +{"$label":"ACTS_IN","name":"Helene Vetsera","type":"Role","_key":"47292","_from":"31156","_to":"31151"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"47291","_from":"31155","_to":"31151"} +{"$label":"ACTS_IN","name":"Bohumil","type":"Role","_key":"47289","_from":"31154","_to":"31151"} +{"$label":"ACTS_IN","name":"Sissi","type":"Role","_key":"47283","_from":"31153","_to":"31151"} +{"$label":"ACTS_IN","name":"Mary Vetsera","type":"Role","_key":"47281","_from":"31152","_to":"31151"} +{"$label":"ACTS_IN","name":"Madleine Dumoulin","type":"Role","_key":"89676","_from":"31156","_to":"53081"} +{"$label":"ACTS_IN","name":"The Perfect Woman","type":"Role","_key":"89662","_from":"31156","_to":"53067"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"69876","_from":"31156","_to":"42634"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"47304","_from":"31160","_to":"31157"} +{"$label":"ACTS_IN","name":"Dr. Gavrila","type":"Role","_key":"47302","_from":"31159","_to":"31157"} +{"$label":"ACTS_IN","name":"Pandit","type":"Role","_key":"47301","_from":"31158","_to":"31157"} +{"$label":"ACTS_IN","name":"Grapini","type":"Role","_key":"56003","_from":"31158","_to":"35597"} +{"$label":"DIRECTED","_key":"47310","_from":"31162","_to":"31161"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"47320","_from":"31164","_to":"31163"} +{"$label":"ACTS_IN","name":"Lu\u2019Kibu","type":"Role","_key":"47333","_from":"31173","_to":"31165"} +{"$label":"ACTS_IN","name":"Moha","type":"Role","_key":"47332","_from":"31172","_to":"31165"} +{"$label":"ACTS_IN","name":"One-Eye","type":"Role","_key":"47331","_from":"31171","_to":"31165"} +{"$label":"ACTS_IN","name":"Alte Mutter","type":"Role","_key":"47330","_from":"31170","_to":"31165"} +{"$label":"ACTS_IN","name":"Warlord","type":"Role","_key":"47329","_from":"31169","_to":"31165"} +{"$label":"ACTS_IN","name":"Ka\u2019Ren","type":"Role","_key":"47328","_from":"31168","_to":"31165"} +{"$label":"ACTS_IN","name":"Baku","type":"Role","_key":"47327","_from":"31167","_to":"31165"} +{"$label":"ACTS_IN","name":"D'Leh","type":"Role","_key":"47325","_from":"31166","_to":"31165"} +{"$label":"ACTS_IN","name":"Caleb Danvers","type":"Role","_key":"58475","_from":"31166","_to":"36963"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"108933","_from":"31170","_to":"64373"} +{"$label":"ACTS_IN","name":"Anwalt","type":"Role","_key":"47342","_from":"31180","_to":"31174"} +{"$label":"ACTS_IN","name":"Don Baravelli","type":"Role","_key":"47341","_from":"31179","_to":"31174"} +{"$label":"ACTS_IN","name":"Titta Biondi","type":"Role","_key":"47340","_from":"31178","_to":"31174"} +{"$label":"ACTS_IN","name":"Patacca","type":"Role","_key":"47339","_from":"31177","_to":"31174"} +{"$label":"ACTS_IN","name":"Teo","type":"Role","_key":"47338","_from":"31176","_to":"31174"} +{"$label":"ACTS_IN","name":"Aurelio Biondi","type":"Role","_key":"47336","_from":"31175","_to":"31174"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"47359","_from":"31195","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47358","_from":"31194","_to":"31181"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"47357","_from":"31193","_to":"31181"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"47356","_from":"31192","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"47354","_from":"31191","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"47353","_from":"31190","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"47352","_from":"31189","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"47351","_from":"31188","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"47350","_from":"31187","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47349","_from":"31186","_to":"31181"} +{"$label":"ACTS_IN","name":"S\u00e4ngerin","type":"Role","_key":"47348","_from":"31185","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47346","_from":"31184","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47345","_from":"31183","_to":"31181"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47344","_from":"31182","_to":"31181"} +{"$label":"ACTS_IN","name":"Tinas Vater","type":"Role","_key":"57701","_from":"31194","_to":"36525"} +{"$label":"DIRECTED","_key":"47383","_from":"31212","_to":"31196"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"47379","_from":"31211","_to":"31196"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"47377","_from":"31210","_to":"31196"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"47376","_from":"31209","_to":"31196"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"47374","_from":"31208","_to":"31196"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"47373","_from":"31207","_to":"31196"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"47372","_from":"31206","_to":"31196"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"47371","_from":"31205","_to":"31196"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"47370","_from":"31204","_to":"31196"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"47369","_from":"31203","_to":"31196"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"47368","_from":"31202","_to":"31196"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"47367","_from":"31201","_to":"31196"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"47366","_from":"31200","_to":"31196"} +{"$label":"ACTS_IN","name":"Terrance","type":"Role","_key":"47365","_from":"31199","_to":"31196"} +{"$label":"ACTS_IN","name":"Drey","type":"Role","_key":"47364","_from":"31198","_to":"31196"} +{"$label":"ACTS_IN","name":"Roodly","type":"Role","_key":"47363","_from":"31197","_to":"31196"} +{"$label":"ACTS_IN","name":"Tech","type":"Role","_key":"99749","_from":"31210","_to":"58829"} +{"$label":"ACTS_IN","name":"Major William Bowman","type":"Role","_key":"92106","_from":"31210","_to":"54348"} +{"$label":"ACTS_IN","name":"Sgt. JT Sanborn","type":"Role","_key":"88390","_from":"31210","_to":"52392"} +{"$label":"ACTS_IN","name":"Nate Ruffin","type":"Role","_key":"68307","_from":"31210","_to":"41931"} +{"$label":"ACTS_IN","name":"Billy Williams","type":"Role","_key":"58577","_from":"31210","_to":"37011"} +{"$label":"ACTS_IN","name":"Hammer","type":"Role","_key":"57254","_from":"31210","_to":"36317"} +{"$label":"ACTS_IN","name":"Ronnie Heflin","type":"Role","_key":"50255","_from":"31211","_to":"32836"} +{"$label":"DIRECTED","_key":"121774","_from":"31212","_to":"71537"} +{"$label":"DIRECTED","_key":"110841","_from":"31212","_to":"65475"} +{"$label":"ACTS_IN","name":"Frau des Verteidigungsministers","type":"Role","_key":"47389","_from":"31217","_to":"31213"} +{"$label":"ACTS_IN","name":"Verteidigungsminister","type":"Role","_key":"47388","_from":"31216","_to":"31213"} +{"$label":"ACTS_IN","name":"Abu Hussam","type":"Role","_key":"47386","_from":"31215","_to":"31213"} +{"$label":"DIRECTED","_key":"47384","_from":"31214","_to":"31213"} +{"$label":"ACTS_IN","name":"Purohit N. Virajnarianan","type":"Role","_key":"47396","_from":"31222","_to":"31218"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"47395","_from":"31221","_to":"31218"} +{"$label":"ACTS_IN","name":"Gaurav","type":"Role","_key":"47393","_from":"31220","_to":"31218"} +{"$label":"DIRECTED","_key":"47390","_from":"31219","_to":"31218"} +{"$label":"ACTS_IN","name":"Rothaarige","type":"Role","_key":"47410","_from":"31228","_to":"31223"} +{"$label":"ACTS_IN","name":"Aglaya","type":"Role","_key":"47408","_from":"31227","_to":"31223"} +{"$label":"ACTS_IN","name":"Atze","type":"Role","_key":"47403","_from":"31226","_to":"31223"} +{"$label":"ACTS_IN","name":"Holst","type":"Role","_key":"47401","_from":"31225","_to":"31223"} +{"$label":"ACTS_IN","name":"Sorowitsch","type":"Role","_key":"47398","_from":"31224","_to":"31223"} +{"$label":"ACTS_IN","name":"Dr. Holmer","type":"Role","_key":"72768","_from":"31226","_to":"43838"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"65222","_from":"31227","_to":"40498"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"53708","_from":"31227","_to":"34633"} +{"$label":"ACTS_IN","name":"Emilia Bauer","type":"Role","_key":"52737","_from":"31227","_to":"34223"} +{"$label":"ACTS_IN","name":"Franziska","type":"Role","_key":"51335","_from":"31227","_to":"33478"} +{"$label":"ACTS_IN","name":"Uschi","type":"Role","_key":"49369","_from":"31227","_to":"32333"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"48470","_from":"31227","_to":"31822"} +{"$label":"DIRECTED","_key":"47422","_from":"31239","_to":"31231"} +{"$label":"ACTS_IN","name":"2. Musiker (Der \"Herr Kollege\")","type":"Role","_key":"47421","_from":"31238","_to":"31231"} +{"$label":"ACTS_IN","name":"1. Musiker (Das \"Handtuch\")","type":"Role","_key":"47420","_from":"31237","_to":"31231"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"47419","_from":"31236","_to":"31231"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"47418","_from":"31235","_to":"31231"} +{"$label":"ACTS_IN","name":"Nadja","type":"Role","_key":"47417","_from":"31234","_to":"31231"} +{"$label":"ACTS_IN","name":"Sofia Winter","type":"Role","_key":"47416","_from":"31233","_to":"31231"} +{"$label":"ACTS_IN","name":"Phil Winter","type":"Role","_key":"47415","_from":"31232","_to":"31231"} +{"$label":"DIRECTED","_key":"47441","_from":"31232","_to":"31254"} +{"$label":"ACTS_IN","name":"Otto Neumaier","type":"Role","_key":"68862","_from":"31238","_to":"42182"} +{"$label":"DIRECTED","_key":"68864","_from":"31239","_to":"42182"} +{"$label":"DIRECTED","_key":"47428","_from":"31239","_to":"31240"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"68861","_from":"31239","_to":"42182"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"47436","_from":"31239","_to":"31251"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"47432","_from":"31239","_to":"31246"} +{"$label":"DIRECTED","_key":"47427","_from":"31245","_to":"31240"} +{"$label":"ACTS_IN","name":"Wachtmeister","type":"Role","_key":"47426","_from":"31244","_to":"31240"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"47425","_from":"31243","_to":"31240"} +{"$label":"ACTS_IN","name":"Steffen","type":"Role","_key":"47424","_from":"31242","_to":"31240"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"47423","_from":"31241","_to":"31240"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"47437","_from":"31245","_to":"31251"} +{"$label":"DIRECTED","_key":"47433","_from":"31250","_to":"31246"} +{"$label":"ACTS_IN","name":"Tara","type":"Role","_key":"47431","_from":"31249","_to":"31246"} +{"$label":"ACTS_IN","name":"Rundweltm\u00e4dchen","type":"Role","_key":"47430","_from":"31248","_to":"31246"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"47429","_from":"31247","_to":"31246"} +{"$label":"DIRECTED","_key":"47438","_from":"31250","_to":"31251"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"47435","_from":"31253","_to":"31251"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"47434","_from":"31252","_to":"31251"} +{"$label":"ACTS_IN","name":"Tak","type":"Role","_key":"47440","_from":"31256","_to":"31254"} +{"$label":"ACTS_IN","name":"Dogg","type":"Role","_key":"47439","_from":"31255","_to":"31254"} +{"$label":"DIRECTED","_key":"47457","_from":"31262","_to":"31257"} +{"$label":"ACTS_IN","name":"Hispanic Kid","type":"Role","_key":"47456","_from":"31261","_to":"31257"} +{"$label":"ACTS_IN","name":"Shell","type":"Role","_key":"47454","_from":"31260","_to":"31257"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"47453","_from":"31259","_to":"31257"} +{"$label":"ACTS_IN","name":"Sherri","type":"Role","_key":"47452","_from":"31258","_to":"31257"} +{"$label":"ACTS_IN","name":"Nicola","type":"Role","_key":"49320","_from":"31258","_to":"32290"} +{"$label":"ACTS_IN","name":"Baby Seymour","type":"Role","_key":"57341","_from":"31261","_to":"36355"} +{"$label":"DIRECTED","_key":"47465","_from":"31270","_to":"31263"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"47464","_from":"31269","_to":"31263"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"47463","_from":"31268","_to":"31263"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"47462","_from":"31267","_to":"31263"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"47461","_from":"31266","_to":"31263"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"47460","_from":"31265","_to":"31263"} +{"$label":"ACTS_IN","name":"Zach Danner","type":"Role","_key":"47459","_from":"31264","_to":"31263"} +{"$label":"DIRECTED","_key":"47473","_from":"31279","_to":"31271"} +{"$label":"ACTS_IN","name":"Military Interrogator Sheberghan","type":"Role","_key":"47472","_from":"31278","_to":"31271"} +{"$label":"ACTS_IN","name":"Sher Khan","type":"Role","_key":"47471","_from":"31277","_to":"31271"} +{"$label":"ACTS_IN","name":"Zahid","type":"Role","_key":"47470","_from":"31276","_to":"31271"} +{"$label":"ACTS_IN","name":"Asif Iqbal","type":"Role","_key":"47469","_from":"31275","_to":"31271"} +{"$label":"ACTS_IN","name":"Monir","type":"Role","_key":"47468","_from":"31274","_to":"31271"} +{"$label":"ACTS_IN","name":"Ruhel","type":"Role","_key":"47467","_from":"31273","_to":"31271"} +{"$label":"ACTS_IN","name":"Shafiq","type":"Role","_key":"47466","_from":"31272","_to":"31271"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"47489","_from":"31288","_to":"31280"} +{"$label":"ACTS_IN","name":"Listo","type":"Role","_key":"47487","_from":"31287","_to":"31280"} +{"$label":"ACTS_IN","name":"Wilo (as Geo Corvera)","type":"Role","_key":"47486","_from":"31286","_to":"31280"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"47485","_from":"31285","_to":"31280"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"47483","_from":"31284","_to":"31280"} +{"$label":"ACTS_IN","name":"Letty","type":"Role","_key":"47482","_from":"31283","_to":"31280"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"47479","_from":"31282","_to":"31280"} +{"$label":"ACTS_IN","name":"Toussant","type":"Role","_key":"47478","_from":"31281","_to":"31280"} +{"$label":"ACTS_IN","name":"Gangster #3","type":"Role","_key":"64416","_from":"31287","_to":"40148"} +{"$label":"ACTS_IN","name":"Francisco","type":"Role","_key":"59575","_from":"31287","_to":"37600"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"52975","_from":"31288","_to":"34318"} +{"$label":"DIRECTED","_key":"47506","_from":"31299","_to":"31289"} +{"$label":"ACTS_IN","name":"Kell","type":"Role","_key":"47505","_from":"31298","_to":"31289"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"47504","_from":"31297","_to":"31289"} +{"$label":"ACTS_IN","name":"Bojo","type":"Role","_key":"47503","_from":"31296","_to":"31289"} +{"$label":"ACTS_IN","name":"Mayella","type":"Role","_key":"47502","_from":"31295","_to":"31289"} +{"$label":"ACTS_IN","name":"Lincoln","type":"Role","_key":"47500","_from":"31294","_to":"31289"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"47499","_from":"31293","_to":"31289"} +{"$label":"ACTS_IN","name":"Rose Woods","type":"Role","_key":"47498","_from":"31292","_to":"31289"} +{"$label":"ACTS_IN","name":"Gill","type":"Role","_key":"47497","_from":"31291","_to":"31289"} +{"$label":"ACTS_IN","name":"Tehronne","type":"Role","_key":"47496","_from":"31290","_to":"31289"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"114071","_from":"31293","_to":"67170"} +{"$label":"ACTS_IN","name":"Tia Malone","type":"Role","_key":"101913","_from":"31293","_to":"59980"} +{"$label":"ACTS_IN","name":"Tia Malone","type":"Role","_key":"101906","_from":"31293","_to":"59978"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"97141","_from":"31293","_to":"57141"} +{"$label":"DIRECTED","_key":"63555","_from":"31299","_to":"39779"} +{"$label":"ACTS_IN","name":"Ajay Rathod","type":"Role","_key":"47514","_from":"31307","_to":"31300"} +{"$label":"ACTS_IN","name":"Laxman Pandey","type":"Role","_key":"47513","_from":"31306","_to":"31300"} +{"$label":"ACTS_IN","name":"Aslam","type":"Role","_key":"47512","_from":"31305","_to":"31300"} +{"$label":"ACTS_IN","name":"Sukhi","type":"Role","_key":"47511","_from":"31304","_to":"31300"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"47510","_from":"31303","_to":"31300"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"47509","_from":"31302","_to":"31300"} +{"$label":"DIRECTED","_key":"47507","_from":"31301","_to":"31300"} +{"$label":"ACTS_IN","name":"Pooja","type":"Role","_key":"121671","_from":"31302","_to":"71480"} +{"$label":"ACTS_IN","name":"Rupali Joshi","type":"Role","_key":"109419","_from":"31302","_to":"64644"} +{"$label":"ACTS_IN","name":"Laxmi","type":"Role","_key":"120879","_from":"31304","_to":"70976"} +{"$label":"ACTS_IN","name":"Pankaj aka Pakkaya","type":"Role","_key":"120081","_from":"31304","_to":"70520"} +{"$label":"ACTS_IN","name":"Mr. Joginder Ahluwalia","type":"Role","_key":"106168","_from":"31305","_to":"62530"} +{"$label":"ACTS_IN","name":"Imran","type":"Role","_key":"98774","_from":"31305","_to":"58204"} +{"$label":"ACTS_IN","name":"Manohar","type":"Role","_key":"121541","_from":"31307","_to":"71410"} +{"$label":"ACTS_IN","name":"Nikhil Agarwal","type":"Role","_key":"109417","_from":"31307","_to":"64644"} +{"$label":"ACTS_IN","name":"Shyam Saxena","type":"Role","_key":"105853","_from":"31307","_to":"62311"} +{"$label":"ACTS_IN","name":"Col. Kent","type":"Role","_key":"47524","_from":"31318","_to":"31308"} +{"$label":"ACTS_IN","name":"Solagro","type":"Role","_key":"47523","_from":"31317","_to":"31308"} +{"$label":"ACTS_IN","name":"Theo Enrich","type":"Role","_key":"47522","_from":"31316","_to":"31308"} +{"$label":"ACTS_IN","name":"Kmhel","type":"Role","_key":"47521","_from":"31315","_to":"31308"} +{"$label":"ACTS_IN","name":"Helen Parker","type":"Role","_key":"47520","_from":"31314","_to":"31308"} +{"$label":"ACTS_IN","name":"Amhed Gail","type":"Role","_key":"47519","_from":"31313","_to":"31308"} +{"$label":"ACTS_IN","name":"Dale Hergov","type":"Role","_key":"47518","_from":"31312","_to":"31308"} +{"$label":"ACTS_IN","name":"Ethan Kurtz","type":"Role","_key":"47517","_from":"31311","_to":"31308"} +{"$label":"ACTS_IN","name":"Jack taylor","type":"Role","_key":"47516","_from":"31310","_to":"31308"} +{"$label":"DIRECTED","_key":"47515","_from":"31309","_to":"31308"} +{"$label":"DIRECTED","_key":"47969","_from":"31309","_to":"31559"} +{"$label":"DIRECTED","_key":"47677","_from":"31309","_to":"31407"} +{"$label":"DIRECTED","_key":"47525","_from":"31309","_to":"31319"} +{"$label":"ACTS_IN","name":"Consul","type":"Role","_key":"47527","_from":"31321","_to":"31319"} +{"$label":"ACTS_IN","name":"Journalist\/Ancel","type":"Role","_key":"47526","_from":"31320","_to":"31319"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"47532","_from":"31323","_to":"31322"} +{"$label":"ACTS_IN","name":"Lieutenant General George Hammond","type":"Role","_key":"91911","_from":"31323","_to":"54222"} +{"$label":"ACTS_IN","name":"Charlie Collins, Racine Coach (as Don Davis)","type":"Role","_key":"68931","_from":"31323","_to":"42198"} +{"$label":"ACTS_IN","name":"Grover","type":"Role","_key":"47546","_from":"31331","_to":"31324"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"47545","_from":"31330","_to":"31324"} +{"$label":"ACTS_IN","name":"Claudine","type":"Role","_key":"47544","_from":"31329","_to":"31324"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"47543","_from":"31328","_to":"31324"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"47542","_from":"31327","_to":"31324"} +{"$label":"ACTS_IN","name":"Maya Goshdashtidar","type":"Role","_key":"47541","_from":"31326","_to":"31324"} +{"$label":"ACTS_IN","name":"Mr. Goshdashtidar","type":"Role","_key":"47540","_from":"31325","_to":"31324"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"110573","_from":"31329","_to":"65331"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"89617","_from":"31329","_to":"53037"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47554","_from":"31336","_to":"31332"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47553","_from":"31335","_to":"31332"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47552","_from":"31334","_to":"31332"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"47551","_from":"31333","_to":"31332"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97810","_from":"31333","_to":"57588"} +{"$label":"ACTS_IN","name":"Sam 'Hogman' Patin","type":"Role","_key":"97926","_from":"31336","_to":"57668"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"47569","_from":"31342","_to":"31338"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"47565","_from":"31341","_to":"31338"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"47562","_from":"31340","_to":"31338"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"47559","_from":"31339","_to":"31338"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"109472","_from":"31339","_to":"64667"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"93306","_from":"31339","_to":"54964"} +{"$label":"ACTS_IN","name":"Bassam","type":"Role","_key":"47582","_from":"31354","_to":"31343"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"47581","_from":"31353","_to":"31343"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"47580","_from":"31352","_to":"31343"} +{"$label":"ACTS_IN","name":"Siham","type":"Role","_key":"47579","_from":"31351","_to":"31343"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"47578","_from":"31350","_to":"31343"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"47577","_from":"31349","_to":"31343"} +{"$label":"ACTS_IN","name":"Youssef","type":"Role","_key":"47576","_from":"31348","_to":"31343"} +{"$label":"ACTS_IN","name":"Jamale","type":"Role","_key":"47575","_from":"31347","_to":"31343"} +{"$label":"ACTS_IN","name":"Rima","type":"Role","_key":"47574","_from":"31346","_to":"31343"} +{"$label":"ACTS_IN","name":"Nisrine","type":"Role","_key":"47573","_from":"31345","_to":"31343"} +{"$label":"ACTS_IN","name":"Layale","type":"Role","_key":"47572","_from":"31344","_to":"31343"} +{"$label":"DIRECTED","_key":"47571","_from":"31344","_to":"31343"} +{"$label":"ACTS_IN","name":"Aarne","type":"Role","_key":"47594","_from":"31364","_to":"31355"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"47592","_from":"31363","_to":"31355"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"47591","_from":"31362","_to":"31355"} +{"$label":"ACTS_IN","name":"Mann in Bar","type":"Role","_key":"47590","_from":"31361","_to":"31355"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"47589","_from":"31360","_to":"31355"} +{"$label":"ACTS_IN","name":"S\u00e4nger","type":"Role","_key":"47588","_from":"31359","_to":"31355"} +{"$label":"ACTS_IN","name":"Iris' Bruder","type":"Role","_key":"47587","_from":"31358","_to":"31355"} +{"$label":"ACTS_IN","name":"Stiefvater","type":"Role","_key":"47586","_from":"31357","_to":"31355"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"47585","_from":"31356","_to":"31355"} +{"$label":"ACTS_IN","name":"Gertrud","type":"Role","_key":"50701","_from":"31356","_to":"33098"} +{"$label":"ACTS_IN","name":"Polonius","type":"Role","_key":"50698","_from":"31357","_to":"33098"} +{"$label":"ACTS_IN","name":"Boss","type":"Role","_key":"47601","_from":"31369","_to":"31365"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"47600","_from":"31368","_to":"31365"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin","type":"Role","_key":"47599","_from":"31367","_to":"31365"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"47597","_from":"31366","_to":"31365"} +{"$label":"ACTS_IN","name":"Bruce Lester","type":"Role","_key":"102960","_from":"31369","_to":"60559"} +{"$label":"ACTS_IN","name":"Geza Von Habsburg","type":"Role","_key":"48339","_from":"31369","_to":"31735"} +{"$label":"ACTS_IN","name":"Ben Talbot","type":"Role","_key":"47612","_from":"31375","_to":"31370"} +{"$label":"ACTS_IN","name":"Gypsy Mother","type":"Role","_key":"47611","_from":"31374","_to":"31370"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"47610","_from":"31373","_to":"31370"} +{"$label":"ACTS_IN","name":"Kirk","type":"Role","_key":"47609","_from":"31372","_to":"31370"} +{"$label":"ACTS_IN","name":"Solana Talbot","type":"Role","_key":"47608","_from":"31371","_to":"31370"} +{"$label":"ACTS_IN","name":"Jorgen","type":"Role","_key":"111647","_from":"31372","_to":"65911"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"47620","_from":"31381","_to":"31376"} +{"$label":"ACTS_IN","name":"Young Hassan","type":"Role","_key":"47619","_from":"31380","_to":"31376"} +{"$label":"ACTS_IN","name":"Young Amir","type":"Role","_key":"47618","_from":"31379","_to":"31376"} +{"$label":"ACTS_IN","name":"Soraya","type":"Role","_key":"47616","_from":"31378","_to":"31376"} +{"$label":"ACTS_IN","name":"Amir","type":"Role","_key":"47615","_from":"31377","_to":"31376"} +{"$label":"ACTS_IN","name":"Ruth Connors","type":"Role","_key":"47629","_from":"31384","_to":"31382"} +{"$label":"ACTS_IN","name":"Lindsey","type":"Role","_key":"47628","_from":"31383","_to":"31382"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47639","_from":"31392","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47638","_from":"31391","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47637","_from":"31390","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47636","_from":"31389","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47634","_from":"31388","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47633","_from":"31387","_to":"31385"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47632","_from":"31386","_to":"31385"} +{"$label":"ACTS_IN","name":"Natario","type":"Role","_key":"47649","_from":"31396","_to":"31393"} +{"$label":"ACTS_IN","name":"Nando","type":"Role","_key":"47648","_from":"31395","_to":"31393"} +{"$label":"ACTS_IN","name":"Marques Sebastian Roccabruna","type":"Role","_key":"47643","_from":"31394","_to":"31393"} +{"$label":"ACTS_IN","name":"Paddy Armstrong","type":"Role","_key":"47657","_from":"31399","_to":"31397"} +{"$label":"ACTS_IN","name":"Carole Richardson","type":"Role","_key":"47656","_from":"31398","_to":"31397"} +{"$label":"ACTS_IN","name":"Natalia","type":"Role","_key":"95545","_from":"31398","_to":"56192"} +{"$label":"ACTS_IN","name":"Heather MacLeod","type":"Role","_key":"47753","_from":"31398","_to":"31448"} +{"$label":"DIRECTED","_key":"47671","_from":"31406","_to":"31400"} +{"$label":"DIRECTED","_key":"47670","_from":"31405","_to":"31400"} +{"$label":"ACTS_IN","name":"Krull","type":"Role","_key":"47669","_from":"31404","_to":"31400"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"47668","_from":"31403","_to":"31400"} +{"$label":"ACTS_IN","name":"Mrs. Vanderman","type":"Role","_key":"47666","_from":"31402","_to":"31400"} +{"$label":"ACTS_IN","name":"Mr. Vanderman","type":"Role","_key":"47665","_from":"31401","_to":"31400"} +{"$label":"ACTS_IN","name":"Ronny Heaslop","type":"Role","_key":"106362","_from":"31401","_to":"62660"} +{"$label":"ACTS_IN","name":"Dr. Rawlins","type":"Role","_key":"60830","_from":"31401","_to":"38429"} +{"$label":"ACTS_IN","name":"Caius","type":"Role","_key":"47676","_from":"31412","_to":"31407"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"47675","_from":"31411","_to":"31407"} +{"$label":"ACTS_IN","name":"Augustus","type":"Role","_key":"47674","_from":"31410","_to":"31407"} +{"$label":"ACTS_IN","name":"Alissa","type":"Role","_key":"47673","_from":"31409","_to":"31407"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"47672","_from":"31408","_to":"31407"} +{"$label":"DIRECTED","_key":"47686","_from":"31414","_to":"31413"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"47700","_from":"31424","_to":"31415"} +{"$label":"ACTS_IN","name":"Mrs. Burgess","type":"Role","_key":"47699","_from":"31423","_to":"31415"} +{"$label":"ACTS_IN","name":"Doctor #3","type":"Role","_key":"47698","_from":"31422","_to":"31415"} +{"$label":"ACTS_IN","name":"Doctor #2","type":"Role","_key":"47697","_from":"31421","_to":"31415"} +{"$label":"ACTS_IN","name":"Doctor #1","type":"Role","_key":"47696","_from":"31420","_to":"31415"} +{"$label":"ACTS_IN","name":"Justin Maynard","type":"Role","_key":"47695","_from":"31419","_to":"31415"} +{"$label":"ACTS_IN","name":"Hizzoner","type":"Role","_key":"47693","_from":"31418","_to":"31415"} +{"$label":"ACTS_IN","name":"Rollo","type":"Role","_key":"47691","_from":"31417","_to":"31415"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"47689","_from":"31416","_to":"31415"} +{"$label":"ACTS_IN","name":"Caroline Wallace","type":"Role","_key":"110685","_from":"31416","_to":"65381"} +{"$label":"ACTS_IN","name":"Royce","type":"Role","_key":"117432","_from":"31420","_to":"69064"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"47708","_from":"31430","_to":"31425"} +{"$label":"ACTS_IN","name":"Geoff","type":"Role","_key":"47707","_from":"31429","_to":"31425"} +{"$label":"ACTS_IN","name":"Karol","type":"Role","_key":"47706","_from":"31428","_to":"31425"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"47705","_from":"31427","_to":"31425"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"47704","_from":"31426","_to":"31425"} +{"$label":"ACTS_IN","name":"Kate Carter","type":"Role","_key":"92217","_from":"31426","_to":"54418"} +{"$label":"ACTS_IN","name":"Will Scarlet O'Hara","type":"Role","_key":"47718","_from":"31433","_to":"31431"} +{"$label":"ACTS_IN","name":"Broomhilde","type":"Role","_key":"47716","_from":"31432","_to":"31431"} +{"$label":"ACTS_IN","name":"Stressy","type":"Role","_key":"116064","_from":"31432","_to":"68351"} +{"$label":"ACTS_IN","name":"Fighter Pilot #2 (voice)","type":"Role","_key":"102591","_from":"31432","_to":"60357"} +{"$label":"ACTS_IN","name":"Judy Neutron (voice)","type":"Role","_key":"90483","_from":"31432","_to":"53459"} +{"$label":"ACTS_IN","name":"Essie","type":"Role","_key":"88081","_from":"31432","_to":"52279"} +{"$label":"ACTS_IN","name":"Marla Hooch - 2nd Base","type":"Role","_key":"68927","_from":"31432","_to":"42198"} +{"$label":"ACTS_IN","name":"Miroslav Lokar","type":"Role","_key":"47730","_from":"31436","_to":"31434"} +{"$label":"ACTS_IN","name":"Capt. Rodway, USMC","type":"Role","_key":"47728","_from":"31435","_to":"31434"} +{"$label":"ACTS_IN","name":"Smokey","type":"Role","_key":"96838","_from":"31435","_to":"56940"} +{"$label":"ACTS_IN","name":"Morgenstern","type":"Role","_key":"119440","_from":"31436","_to":"70168"} +{"$label":"ACTS_IN","name":"Jean LaFleur","type":"Role","_key":"67211","_from":"31436","_to":"41452"} +{"$label":"ACTS_IN","name":"Peter Beaupre","type":"Role","_key":"55936","_from":"31436","_to":"35573"} +{"$label":"DIRECTED","_key":"47748","_from":"31447","_to":"31437"} +{"$label":"ACTS_IN","name":"Cute Guy","type":"Role","_key":"47746","_from":"31446","_to":"31437"} +{"$label":"ACTS_IN","name":"Squeegee Girl","type":"Role","_key":"47745","_from":"31445","_to":"31437"} +{"$label":"ACTS_IN","name":"Scrawny Boy","type":"Role","_key":"47742","_from":"31444","_to":"31437"} +{"$label":"ACTS_IN","name":"Blade","type":"Role","_key":"47741","_from":"31443","_to":"31437"} +{"$label":"ACTS_IN","name":"Manson","type":"Role","_key":"47740","_from":"31442","_to":"31437"} +{"$label":"ACTS_IN","name":"Mad Ax","type":"Role","_key":"47739","_from":"31441","_to":"31437"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"47738","_from":"31440","_to":"31437"} +{"$label":"ACTS_IN","name":"Dog","type":"Role","_key":"47737","_from":"31439","_to":"31437"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"47735","_from":"31438","_to":"31437"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"118565","_from":"31438","_to":"69710"} +{"$label":"ACTS_IN","name":"Dugal MacLeod","type":"Role","_key":"47759","_from":"31452","_to":"31448"} +{"$label":"ACTS_IN","name":"Aman Fasil","type":"Role","_key":"47758","_from":"31451","_to":"31448"} +{"$label":"ACTS_IN","name":"Rachel Ellenstein","type":"Role","_key":"47756","_from":"31450","_to":"31448"} +{"$label":"ACTS_IN","name":"Lieutenant Frank Moran","type":"Role","_key":"47754","_from":"31449","_to":"31448"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"69701","_from":"31449","_to":"42545"} +{"$label":"ACTS_IN","name":"Braddock","type":"Role","_key":"68399","_from":"31449","_to":"41965"} +{"$label":"ACTS_IN","name":"Mrs. Norris","type":"Role","_key":"63001","_from":"31450","_to":"39550"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"47778","_from":"31462","_to":"31453"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"47777","_from":"31461","_to":"31453"} +{"$label":"ACTS_IN","name":"Reno","type":"Role","_key":"47776","_from":"31460","_to":"31453"} +{"$label":"ACTS_IN","name":"Corda","type":"Role","_key":"47775","_from":"31459","_to":"31453"} +{"$label":"ACTS_IN","name":"Horatio","type":"Role","_key":"47774","_from":"31458","_to":"31453"} +{"$label":"ACTS_IN","name":"Hamlet","type":"Role","_key":"47773","_from":"31457","_to":"31453"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"47772","_from":"31456","_to":"31453"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"47771","_from":"31455","_to":"31453"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"47770","_from":"31454","_to":"31453"} +{"$label":"ACTS_IN","name":"Amelia Minchin","type":"Role","_key":"118705","_from":"31455","_to":"69800"} +{"$label":"ACTS_IN","name":"Big Betty","type":"Role","_key":"55849","_from":"31455","_to":"35533"} +{"$label":"ACTS_IN","name":"Angry Driver","type":"Role","_key":"90452","_from":"31460","_to":"53436"} +{"$label":"ACTS_IN","name":"Bill Jones (as Jeffrey Altman)","type":"Role","_key":"116003","_from":"31462","_to":"68313"} +{"$label":"DIRECTED","_key":"47788","_from":"31467","_to":"31463"} +{"$label":"ACTS_IN","name":"Pierre Bouchet","type":"Role","_key":"47786","_from":"31466","_to":"31463"} +{"$label":"ACTS_IN","name":"Takamura","type":"Role","_key":"47785","_from":"31465","_to":"31463"} +{"$label":"ACTS_IN","name":"Stenn","type":"Role","_key":"47784","_from":"31464","_to":"31463"} +{"$label":"ACTS_IN","name":"Lt. Hans Klosterman","type":"Role","_key":"113435","_from":"31464","_to":"66832"} +{"$label":"DIRECTED","_key":"118873","_from":"31467","_to":"69865"} +{"$label":"ACTS_IN","name":"Fay Devoe","type":"Role","_key":"47803","_from":"31471","_to":"31468"} +{"$label":"ACTS_IN","name":"Dick Allen","type":"Role","_key":"47802","_from":"31470","_to":"31468"} +{"$label":"ACTS_IN","name":"Nicki","type":"Role","_key":"47797","_from":"31469","_to":"31468"} +{"$label":"ACTS_IN","name":"Commentator","type":"Role","_key":"96463","_from":"31470","_to":"56725"} +{"$label":"ACTS_IN","name":"Miss Mazeppa","type":"Role","_key":"114355","_from":"31471","_to":"67357"} +{"$label":"ACTS_IN","name":"Hak-Chi","type":"Role","_key":"47811","_from":"31477","_to":"31472"} +{"$label":"ACTS_IN","name":"Hak-Chi","type":"Role","_key":"47810","_from":"31476","_to":"31472"} +{"$label":"ACTS_IN","name":"Jampala","type":"Role","_key":"47809","_from":"31475","_to":"31472"} +{"$label":"ACTS_IN","name":"Jalan","type":"Role","_key":"47807","_from":"31474","_to":"31472"} +{"$label":"DIRECTED","_key":"47805","_from":"31473","_to":"31472"} +{"$label":"DIRECTED","_key":"49160","_from":"31473","_to":"32202"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47816","_from":"31480","_to":"31478"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"47812","_from":"31479","_to":"31478"} +{"$label":"ACTS_IN","name":"Il maestro","type":"Role","_key":"47823","_from":"31485","_to":"31481"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"47821","_from":"31484","_to":"31481"} +{"$label":"ACTS_IN","name":"Il Padre","type":"Role","_key":"47820","_from":"31483","_to":"31481"} +{"$label":"ACTS_IN","name":"Edmund","type":"Role","_key":"47819","_from":"31482","_to":"31481"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"47826","_from":"31489","_to":"31486"} +{"$label":"ACTS_IN","name":"N.A.","type":"Role","_key":"47825","_from":"31488","_to":"31486"} +{"$label":"DIRECTED","_key":"47824","_from":"31487","_to":"31486"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"47843","_from":"31495","_to":"31493"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"47841","_from":"31494","_to":"31493"} +{"$label":"ACTS_IN","name":"Pepper Lowenstein","type":"Role","_key":"118933","_from":"31495","_to":"69895"} +{"$label":"ACTS_IN","name":"Leona Bloom","type":"Role","_key":"105108","_from":"31495","_to":"61860"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"64896","_from":"31495","_to":"40353"} +{"$label":"ACTS_IN","name":"Maria Portokalos","type":"Role","_key":"49196","_from":"31495","_to":"32232"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"47848","_from":"31497","_to":"31496"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"67040","_from":"31497","_to":"41382"} +{"$label":"ACTS_IN","name":"Zog","type":"Role","_key":"47860","_from":"31502","_to":"31498"} +{"$label":"ACTS_IN","name":"Uto","type":"Role","_key":"47859","_from":"31501","_to":"31498"} +{"$label":"ACTS_IN","name":"Ham","type":"Role","_key":"47855","_from":"31500","_to":"31498"} +{"$label":"DIRECTED","_key":"47853","_from":"31499","_to":"31498"} +{"$label":"DIRECTED","_key":"72137","_from":"31499","_to":"43603"} +{"$label":"ACTS_IN","name":"Principe Giacomo","type":"Role","_key":"109450","_from":"31500","_to":"64659"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"47870","_from":"31508","_to":"31503"} +{"$label":"ACTS_IN","name":"Hassan","type":"Role","_key":"47868","_from":"31507","_to":"31503"} +{"$label":"ACTS_IN","name":"M\u00e8re d\u2019Antoine","type":"Role","_key":"47865","_from":"31506","_to":"31503"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"47863","_from":"31505","_to":"31503"} +{"$label":"DIRECTED","_key":"47861","_from":"31504","_to":"31503"} +{"$label":"ACTS_IN","name":"Damia","type":"Role","_key":"112076","_from":"31505","_to":"66172"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"100355","_from":"31505","_to":"59177"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"50304","_from":"31505","_to":"32864"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89288","_from":"31506","_to":"52859"} +{"$label":"ACTS_IN","name":"Walter the Dentist","type":"Role","_key":"47878","_from":"31512","_to":"31510"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"47877","_from":"31511","_to":"31510"} +{"$label":"ACTS_IN","name":"Melinda","type":"Role","_key":"109473","_from":"31511","_to":"64667"} +{"$label":"ACTS_IN","name":"Lynn","type":"Role","_key":"92493","_from":"31511","_to":"54598"} +{"$label":"ACTS_IN","name":"Janet Stone","type":"Role","_key":"56306","_from":"31511","_to":"35776"} +{"$label":"ACTS_IN","name":"Beefy","type":"Role","_key":"55498","_from":"31512","_to":"35362"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"47902","_from":"31516","_to":"31515"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"47912","_from":"31518","_to":"31517"} +{"$label":"ACTS_IN","name":"Sura","type":"Role","_key":"47921","_from":"31523","_to":"31519"} +{"$label":"ACTS_IN","name":"Yankele","type":"Role","_key":"47920","_from":"31522","_to":"31519"} +{"$label":"ACTS_IN","name":"Schmecht","type":"Role","_key":"47919","_from":"31521","_to":"31519"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"47917","_from":"31520","_to":"31519"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"115139","_from":"31520","_to":"67804"} +{"$label":"ACTS_IN","name":"P\u00e8re Jean","type":"Role","_key":"112419","_from":"31521","_to":"66374"} +{"$label":"ACTS_IN","name":"Frank Schoubya","type":"Role","_key":"57877","_from":"31521","_to":"36622"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"49428","_from":"31521","_to":"32360"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"105033","_from":"31522","_to":"61813"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47930","_from":"31530","_to":"31524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47929","_from":"31529","_to":"31524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47928","_from":"31528","_to":"31524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47926","_from":"31527","_to":"31524"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47925","_from":"31526","_to":"31524"} +{"$label":"DIRECTED","_key":"47924","_from":"31525","_to":"31524"} +{"$label":"DIRECTED","_key":"47931","_from":"31525","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47935","_from":"31529","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47946","_from":"31544","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47945","_from":"31543","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47944","_from":"31542","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47943","_from":"31541","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47942","_from":"31540","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47941","_from":"31539","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47940","_from":"31538","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47939","_from":"31537","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47938","_from":"31536","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47937","_from":"31535","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47934","_from":"31534","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47933","_from":"31533","_to":"31531"} +{"$label":"ACTS_IN","name":"-","type":"Role","_key":"47932","_from":"31532","_to":"31531"} +{"$label":"DIRECTED","_key":"47955","_from":"31550","_to":"31545"} +{"$label":"ACTS_IN","name":"Herr Pockrandt","type":"Role","_key":"47953","_from":"31549","_to":"31545"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"47951","_from":"31548","_to":"31545"} +{"$label":"ACTS_IN","name":"Clemens","type":"Role","_key":"47950","_from":"31547","_to":"31545"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"47947","_from":"31546","_to":"31545"} +{"$label":"ACTS_IN","name":"Heiko Degener","type":"Role","_key":"64708","_from":"31547","_to":"40294"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"49217","_from":"31547","_to":"32242"} +{"$label":"ACTS_IN","name":"Alvin Waters","type":"Role","_key":"47967","_from":"31558","_to":"31551"} +{"$label":"ACTS_IN","name":"Little Charlie","type":"Role","_key":"47965","_from":"31557","_to":"31551"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"47964","_from":"31556","_to":"31551"} +{"$label":"ACTS_IN","name":"Mrs. Walsh","type":"Role","_key":"47963","_from":"31555","_to":"31551"} +{"$label":"ACTS_IN","name":"Miss Jones","type":"Role","_key":"47962","_from":"31554","_to":"31551"} +{"$label":"ACTS_IN","name":"Kay Nesbitt","type":"Role","_key":"47960","_from":"31553","_to":"31551"} +{"$label":"DIRECTED","_key":"47956","_from":"31552","_to":"31551"} +{"$label":"ACTS_IN","name":"Della Frye","type":"Role","_key":"110769","_from":"31553","_to":"65435"} +{"$label":"ACTS_IN","name":"Colee Dunn","type":"Role","_key":"106642","_from":"31553","_to":"62835"} +{"$label":"ACTS_IN","name":"Jessica Spencer","type":"Role","_key":"72368","_from":"31553","_to":"43699"} +{"$label":"ACTS_IN","name":"Lisa Reisert","type":"Role","_key":"69992","_from":"31553","_to":"42693"} +{"$label":"ACTS_IN","name":"Allie Hamilton","type":"Role","_key":"67474","_from":"31553","_to":"41562"} +{"$label":"ACTS_IN","name":"Regina George","type":"Role","_key":"64678","_from":"31553","_to":"40287"} +{"$label":"ACTS_IN","name":"Irene Adler","type":"Role","_key":"63862","_from":"31553","_to":"39907"} +{"$label":"ACTS_IN","name":"Claire Cleary","type":"Role","_key":"54423","_from":"31553","_to":"34907"} +{"$label":"ACTS_IN","name":"Amy Stone","type":"Role","_key":"52238","_from":"31553","_to":"34024"} +{"$label":"ACTS_IN","name":"Mitchell","type":"Role","_key":"97124","_from":"31558","_to":"57136"} +{"$label":"ACTS_IN","name":"Herbie Conklin","type":"Role","_key":"94208","_from":"31558","_to":"55472"} +{"$label":"ACTS_IN","name":"Callaway","type":"Role","_key":"61137","_from":"31558","_to":"38639"} +{"$label":"DIRECTED","_key":"47976","_from":"31561","_to":"31560"} +{"$label":"ACTS_IN","name":"Mark Divo","type":"Role","_key":"47975","_from":"31566","_to":"31560"} +{"$label":"ACTS_IN","name":"Isolde Meurer von Infeld","type":"Role","_key":"47974","_from":"31565","_to":"31560"} +{"$label":"ACTS_IN","name":"J\u00f6rg Haemmerli","type":"Role","_key":"47973","_from":"31564","_to":"31560"} +{"$label":"ACTS_IN","name":"Bruna Haemmerli","type":"Role","_key":"47972","_from":"31563","_to":"31560"} +{"$label":"ACTS_IN","name":"Eric Haemmerli","type":"Role","_key":"47971","_from":"31562","_to":"31560"} +{"$label":"ACTS_IN","name":"Thomas Haemmerli","type":"Role","_key":"47970","_from":"31561","_to":"31560"} +{"$label":"DIRECTED","_key":"88619","_from":"31561","_to":"52510"} +{"$label":"ACTS_IN","name":"Autor","type":"Role","_key":"88618","_from":"31561","_to":"52510"} +{"$label":"DIRECTED","_key":"47989","_from":"31574","_to":"31568"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"47988","_from":"31573","_to":"31568"} +{"$label":"ACTS_IN","name":"Scholle","type":"Role","_key":"47985","_from":"31572","_to":"31568"} +{"$label":"ACTS_IN","name":"Tibets Mutter","type":"Role","_key":"47984","_from":"31571","_to":"31568"} +{"$label":"ACTS_IN","name":"Meryem","type":"Role","_key":"47983","_from":"31570","_to":"31568"} +{"$label":"ACTS_IN","name":"Tibet","type":"Role","_key":"47980","_from":"31569","_to":"31568"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"66605","_from":"31572","_to":"41171"} +{"$label":"ACTS_IN","name":"Kartengeber","type":"Role","_key":"48000","_from":"31580","_to":"31575"} +{"$label":"ACTS_IN","name":"Cam","type":"Role","_key":"47999","_from":"31579","_to":"31575"} +{"$label":"ACTS_IN","name":"Miles Connoly","type":"Role","_key":"47998","_from":"31578","_to":"31575"} +{"$label":"ACTS_IN","name":"Fisher","type":"Role","_key":"47996","_from":"31577","_to":"31575"} +{"$label":"ACTS_IN","name":"Choi","type":"Role","_key":"47994","_from":"31576","_to":"31575"} +{"$label":"ACTS_IN","name":"-UnKnown-","type":"Role","_key":"121163","_from":"31576","_to":"71176"} +{"$label":"ACTS_IN","name":"Humanez Dude","type":"Role","_key":"116420","_from":"31576","_to":"68531"} +{"$label":"ACTS_IN","name":"Lyle Nomura","type":"Role","_key":"111727","_from":"31576","_to":"65954"} +{"$label":"ACTS_IN","name":"Chewie","type":"Role","_key":"93479","_from":"31576","_to":"55036"} +{"$label":"ACTS_IN","name":"Thom","type":"Role","_key":"88524","_from":"31576","_to":"52467"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"48694","_from":"31576","_to":"31943"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"105349","_from":"31577","_to":"61983"} +{"$label":"ACTS_IN","name":"Cooper Harris","type":"Role","_key":"53296","_from":"31577","_to":"34458"} +{"$label":"ACTS_IN","name":"Grigori","type":"Role","_key":"50374","_from":"31577","_to":"32894"} +{"$label":"ACTS_IN","name":"Matt Gadman","type":"Role","_key":"61526","_from":"31578","_to":"38798"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"48007","_from":"31582","_to":"31581"} +{"$label":"ACTS_IN","name":"Esme Cullen","type":"Role","_key":"115489","_from":"31582","_to":"67997"} +{"$label":"ACTS_IN","name":"Esme Cullen","type":"Role","_key":"51738","_from":"31582","_to":"33761"} +{"$label":"ACTS_IN","name":"Violet Eldred Gesteten","type":"Role","_key":"48023","_from":"31585","_to":"31583"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"48020","_from":"31584","_to":"31583"} +{"$label":"ACTS_IN","name":"John H. Groberg","type":"Role","_key":"109727","_from":"31584","_to":"64802"} +{"$label":"ACTS_IN","name":"Granny Forbes","type":"Role","_key":"58013","_from":"31585","_to":"36700"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"48040","_from":"31591","_to":"31586"} +{"$label":"ACTS_IN","name":"Quino","type":"Role","_key":"48039","_from":"31590","_to":"31586"} +{"$label":"ACTS_IN","name":"Ni\u00f1o","type":"Role","_key":"48037","_from":"31589","_to":"31586"} +{"$label":"ACTS_IN","name":"Zamira","type":"Role","_key":"48035","_from":"31588","_to":"31586"} +{"$label":"ACTS_IN","name":"Tavo","type":"Role","_key":"48034","_from":"31587","_to":"31586"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"119717","_from":"31587","_to":"70307"} +{"$label":"ACTS_IN","name":"Glossina","type":"Role","_key":"48052","_from":"31596","_to":"31592"} +{"$label":"ACTS_IN","name":"Stomoxys","type":"Role","_key":"48051","_from":"31595","_to":"31592"} +{"$label":"ACTS_IN","name":"The Great Tyrant","type":"Role","_key":"48045","_from":"31594","_to":"31592"} +{"$label":"DIRECTED","_key":"48042","_from":"31593","_to":"31592"} +{"$label":"DIRECTED","_key":"49604","_from":"31593","_to":"32469"} +{"$label":"ACTS_IN","name":"The Queen","type":"Role","_key":"107349","_from":"31594","_to":"63306"} +{"$label":"ACTS_IN","name":"Georges","type":"Role","_key":"48058","_from":"31598","_to":"31597"} +{"$label":"ACTS_IN","name":"L\u00e9on","type":"Role","_key":"48067","_from":"31603","_to":"31599"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"48066","_from":"31602","_to":"31599"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"48065","_from":"31601","_to":"31599"} +{"$label":"ACTS_IN","name":"Genevieve","type":"Role","_key":"48064","_from":"31600","_to":"31599"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"48083","_from":"31609","_to":"31606"} +{"$label":"ACTS_IN","name":"Robert Jeanson","type":"Role","_key":"48081","_from":"31608","_to":"31606"} +{"$label":"ACTS_IN","name":"Monsieur G\u00e9rard","type":"Role","_key":"48078","_from":"31607","_to":"31606"} +{"$label":"ACTS_IN","name":"l'homme de la ferme","type":"Role","_key":"48094","_from":"31612","_to":"31610"} +{"$label":"ACTS_IN","name":"L'auto-stoppeur","type":"Role","_key":"48091","_from":"31611","_to":"31610"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"48102","_from":"31619","_to":"31613"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"48101","_from":"31618","_to":"31613"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"48100","_from":"31617","_to":"31613"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"48099","_from":"31616","_to":"31613"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"48098","_from":"31615","_to":"31613"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"48097","_from":"31614","_to":"31613"} +{"$label":"ACTS_IN","name":"Newt","type":"Role","_key":"48126","_from":"31631","_to":"31620"} +{"$label":"ACTS_IN","name":"Boggs","type":"Role","_key":"48125","_from":"31630","_to":"31620"} +{"$label":"ACTS_IN","name":"Company Man","type":"Role","_key":"48124","_from":"31629","_to":"31620"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"48123","_from":"31628","_to":"31620"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"48122","_from":"31627","_to":"31620"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"48120","_from":"31626","_to":"31620"} +{"$label":"ACTS_IN","name":"Rains","type":"Role","_key":"48116","_from":"31625","_to":"31620"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"48115","_from":"31624","_to":"31620"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"48113","_from":"31623","_to":"31620"} +{"$label":"ACTS_IN","name":"Golic","type":"Role","_key":"48109","_from":"31622","_to":"31620"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"48108","_from":"31621","_to":"31620"} +{"$label":"ACTS_IN","name":"Gysin","type":"Role","_key":"113817","_from":"31621","_to":"67050"} +{"$label":"ACTS_IN","name":"Danny the Dealer","type":"Role","_key":"94497","_from":"31621","_to":"55653"} +{"$label":"ACTS_IN","name":"Sergeant Major","type":"Role","_key":"91092","_from":"31621","_to":"53747"} +{"$label":"ACTS_IN","name":"Burton","type":"Role","_key":"59085","_from":"31621","_to":"37302"} +{"$label":"ACTS_IN","name":"Vicar","type":"Role","_key":"115470","_from":"31622","_to":"67985"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"105475","_from":"31622","_to":"62065"} +{"$label":"ACTS_IN","name":"Marwood (I)","type":"Role","_key":"94494","_from":"31622","_to":"55653"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"69891","_from":"31622","_to":"42644"} +{"$label":"ACTS_IN","name":"Mullion","type":"Role","_key":"101147","_from":"31626","_to":"59587"} +{"$label":"ACTS_IN","name":"Spanky (as Dhobi Oparei)","type":"Role","_key":"55994","_from":"31626","_to":"35597"} +{"$label":"ACTS_IN","name":"Vincent Distephano","type":"Role","_key":"48138","_from":"31633","_to":"31632"} +{"$label":"ACTS_IN","name":"Chuey","type":"Role","_key":"55864","_from":"31633","_to":"35537"} +{"$label":"ACTS_IN","name":"Producer of movie Apahij Pyaar","type":"Role","_key":"48156","_from":"31643","_to":"31634"} +{"$label":"ACTS_IN","name":"Dolly","type":"Role","_key":"48152","_from":"31642","_to":"31634"} +{"$label":"ACTS_IN","name":"Shahwar","type":"Role","_key":"48151","_from":"31641","_to":"31634"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48150","_from":"31640","_to":"31634"} +{"$label":"ACTS_IN","name":"Special appearance","type":"Role","_key":"48147","_from":"31639","_to":"31634"} +{"$label":"ACTS_IN","name":"Anwar","type":"Role","_key":"48146","_from":"31638","_to":"31634"} +{"$label":"ACTS_IN","name":"Pappau Master","type":"Role","_key":"48144","_from":"31637","_to":"31634"} +{"$label":"ACTS_IN","name":"Shanti Priya","type":"Role","_key":"48142","_from":"31636","_to":"31634"} +{"$label":"DIRECTED","_key":"48140","_from":"31635","_to":"31634"} +{"$label":"DIRECTED","_key":"98648","_from":"31635","_to":"58139"} +{"$label":"ACTS_IN","name":"Meera Pandit","type":"Role","_key":"120786","_from":"31636","_to":"70943"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108816","_from":"31636","_to":"64308"} +{"$label":"ACTS_IN","name":"Gayatri","type":"Role","_key":"106164","_from":"31636","_to":"62530"} +{"$label":"ACTS_IN","name":"Laxman Prashad Apte","type":"Role","_key":"100729","_from":"31637","_to":"59389"} +{"$label":"ACTS_IN","name":"Ira Malhotra","type":"Role","_key":"120681","_from":"31643","_to":"70876"} +{"$label":"ACTS_IN","name":"Minty Rolly","type":"Role","_key":"108785","_from":"31643","_to":"64303"} +{"$label":"ACTS_IN","name":"Anjali Sharma","type":"Role","_key":"106519","_from":"31643","_to":"62759"} +{"$label":"ACTS_IN","name":"Haseena Bano Jaan","type":"Role","_key":"104524","_from":"31643","_to":"61483"} +{"$label":"ACTS_IN","name":"Wonder Woman","type":"Role","_key":"48167","_from":"31648","_to":"31646"} +{"$label":"ACTS_IN","name":"Batman","type":"Role","_key":"48166","_from":"31647","_to":"31646"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"109615","_from":"31647","_to":"64747"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"48192","_from":"31660","_to":"31649"} +{"$label":"ACTS_IN","name":"Camarero ciego","type":"Role","_key":"48191","_from":"31659","_to":"31649"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"48190","_from":"31658","_to":"31649"} +{"$label":"ACTS_IN","name":"Dr. Blasco","type":"Role","_key":"48189","_from":"31657","_to":"31649"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"48188","_from":"31656","_to":"31649"} +{"$label":"ACTS_IN","name":"Padre de Lena","type":"Role","_key":"48185","_from":"31655","_to":"31649"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"48184","_from":"31654","_to":"31649"} +{"$label":"ACTS_IN","name":"Model","type":"Role","_key":"48181","_from":"31653","_to":"31649"} +{"$label":"ACTS_IN","name":"Chon","type":"Role","_key":"48180","_from":"31652","_to":"31649"} +{"$label":"ACTS_IN","name":"Ray X","type":"Role","_key":"48173","_from":"31651","_to":"31649"} +{"$label":"ACTS_IN","name":"Ernesto Martel","type":"Role","_key":"48172","_from":"31650","_to":"31649"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"61262","_from":"31656","_to":"38680"} +{"$label":"ACTS_IN","name":"Richard Brooks","type":"Role","_key":"48198","_from":"31665","_to":"31662"} +{"$label":"ACTS_IN","name":"Stella Marsh","type":"Role","_key":"48197","_from":"31664","_to":"31662"} +{"$label":"ACTS_IN","name":"Griffin Dowd","type":"Role","_key":"48195","_from":"31663","_to":"31662"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"115322","_from":"31663","_to":"67901"} +{"$label":"ACTS_IN","name":"Jonny","type":"Role","_key":"111579","_from":"31663","_to":"65876"} +{"$label":"ACTS_IN","name":"Troy Gabel","type":"Role","_key":"108468","_from":"31663","_to":"64118"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"90660","_from":"31663","_to":"53522"} +{"$label":"ACTS_IN","name":"Shaun Brumder","type":"Role","_key":"72413","_from":"31663","_to":"43715"} +{"$label":"ACTS_IN","name":"Felix Woods","type":"Role","_key":"59949","_from":"31663","_to":"37851"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"52833","_from":"31663","_to":"34252"} +{"$label":"ACTS_IN","name":"Henry Durand","type":"Role","_key":"52675","_from":"31663","_to":"34206"} +{"$label":"ACTS_IN","name":"Joyce Richardson","type":"Role","_key":"108330","_from":"31664","_to":"64040"} +{"$label":"ACTS_IN","name":"Helen Holm","type":"Role","_key":"69049","_from":"31664","_to":"42265"} +{"$label":"ACTS_IN","name":"Mrs. Bell","type":"Role","_key":"55789","_from":"31664","_to":"35507"} +{"$label":"ACTS_IN","name":"Constance","type":"Role","_key":"50313","_from":"31664","_to":"32867"} +{"$label":"ACTS_IN","name":"Richterin Brewster","type":"Role","_key":"50284","_from":"31664","_to":"32852"} +{"$label":"ACTS_IN","name":"Arthur Gayle","type":"Role","_key":"48205","_from":"31668","_to":"31667"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"112343","_from":"31668","_to":"66325"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"105545","_from":"31668","_to":"62108"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"91572","_from":"31668","_to":"53984"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"48216","_from":"31676","_to":"31669"} +{"$label":"ACTS_IN","name":"Schamanin","type":"Role","_key":"48215","_from":"31675","_to":"31669"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"48214","_from":"31674","_to":"31669"} +{"$label":"ACTS_IN","name":"Zolzaya","type":"Role","_key":"48213","_from":"31673","_to":"31669"} +{"$label":"ACTS_IN","name":"Bagi","type":"Role","_key":"48212","_from":"31672","_to":"31669"} +{"$label":"DIRECTED","_key":"48211","_from":"31671","_to":"31669"} +{"$label":"DIRECTED","_key":"48210","_from":"31670","_to":"31669"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"48222","_from":"31681","_to":"31677"} +{"$label":"ACTS_IN","name":"Una","type":"Role","_key":"48221","_from":"31680","_to":"31677"} +{"$label":"ACTS_IN","name":"Crispina","type":"Role","_key":"48220","_from":"31679","_to":"31677"} +{"$label":"ACTS_IN","name":"Bernadette","type":"Role","_key":"48219","_from":"31678","_to":"31677"} +{"$label":"ACTS_IN","name":"Saiorse Reilly","type":"Role","_key":"119573","_from":"31678","_to":"70238"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"53574","_from":"31678","_to":"34573"} +{"$label":"ACTS_IN","name":"Palace Guard","type":"Role","_key":"48238","_from":"31689","_to":"31682"} +{"$label":"ACTS_IN","name":"Pothinus","type":"Role","_key":"48237","_from":"31688","_to":"31682"} +{"$label":"ACTS_IN","name":"High Priestess","type":"Role","_key":"48235","_from":"31687","_to":"31682"} +{"$label":"ACTS_IN","name":"Flavius","type":"Role","_key":"48234","_from":"31686","_to":"31682"} +{"$label":"ACTS_IN","name":"Brutus","type":"Role","_key":"48233","_from":"31685","_to":"31682"} +{"$label":"ACTS_IN","name":"Agrippa","type":"Role","_key":"48232","_from":"31684","_to":"31682"} +{"$label":"ACTS_IN","name":"Sosigenes","type":"Role","_key":"48231","_from":"31683","_to":"31682"} +{"$label":"ACTS_IN","name":"Bill Rintels","type":"Role","_key":"112065","_from":"31683","_to":"66169"} +{"$label":"ACTS_IN","name":"Dr. Carr","type":"Role","_key":"98764","_from":"31683","_to":"58201"} +{"$label":"ACTS_IN","name":"Sparks","type":"Role","_key":"93942","_from":"31683","_to":"55317"} +{"$label":"ACTS_IN","name":"Juror 9","type":"Role","_key":"88770","_from":"31683","_to":"52604"} +{"$label":"ACTS_IN","name":"Frank Riley","type":"Role","_key":"70563","_from":"31683","_to":"42937"} +{"$label":"ACTS_IN","name":"Joseph 'Joe' Finley","type":"Role","_key":"68901","_from":"31683","_to":"42195"} +{"$label":"ACTS_IN","name":"Rupert Horn","type":"Role","_key":"67650","_from":"31683","_to":"41626"} +{"$label":"ACTS_IN","name":"Joseph Finley","type":"Role","_key":"62613","_from":"31683","_to":"39390"} +{"$label":"ACTS_IN","name":"Polybius","type":"Role","_key":"111757","_from":"31684","_to":"65965"} +{"$label":"ACTS_IN","name":"Father Sandor","type":"Role","_key":"111132","_from":"31684","_to":"65637"} +{"$label":"ACTS_IN","name":"Wyler","type":"Role","_key":"109022","_from":"31684","_to":"64424"} +{"$label":"ACTS_IN","name":"Brierly","type":"Role","_key":"69550","_from":"31684","_to":"42470"} +{"$label":"ACTS_IN","name":"Bill Appleby","type":"Role","_key":"101662","_from":"31685","_to":"59833"} +{"$label":"ACTS_IN","name":"'Flash' Harry","type":"Role","_key":"110419","_from":"31686","_to":"65235"} +{"$label":"ACTS_IN","name":"Atlee Jackson","type":"Role","_key":"108318","_from":"31686","_to":"64026"} +{"$label":"ACTS_IN","name":"'Flash' Harry","type":"Role","_key":"99877","_from":"31686","_to":"58900"} +{"$label":"ACTS_IN","name":"Young Ebenezer Scrooge","type":"Role","_key":"93331","_from":"31686","_to":"54981"} +{"$label":"ACTS_IN","name":"Flash Harry","type":"Role","_key":"69641","_from":"31686","_to":"42513"} +{"$label":"ACTS_IN","name":"Der Butler Mr. Poole","type":"Role","_key":"52525","_from":"31686","_to":"34153"} +{"$label":"ACTS_IN","name":"Queen Eleanor [of Aquitaine]","type":"Role","_key":"104345","_from":"31687","_to":"61385"} +{"$label":"ACTS_IN","name":"Hakim","type":"Role","_key":"114282","_from":"31688","_to":"67308"} +{"$label":"ACTS_IN","name":"Chief of Lugash Police","type":"Role","_key":"72322","_from":"31688","_to":"43680"} +{"$label":"ACTS_IN","name":"havran \/ \u010darod\u011bj","type":"Role","_key":"48241","_from":"31693","_to":"31690"} +{"$label":"ACTS_IN","name":"vyprav\u011b\u010d","type":"Role","_key":"48240","_from":"31692","_to":"31690"} +{"$label":"DIRECTED","_key":"48239","_from":"31691","_to":"31690"} +{"$label":"DIRECTED","_key":"121094","_from":"31691","_to":"71118"} +{"$label":"DIRECTED","_key":"50827","_from":"31691","_to":"33173"} +{"$label":"ACTS_IN","name":"Zulu","type":"Role","_key":"48254","_from":"31701","_to":"31694"} +{"$label":"ACTS_IN","name":"Perfume","type":"Role","_key":"48253","_from":"31700","_to":"31694"} +{"$label":"ACTS_IN","name":"Scrag","type":"Role","_key":"48252","_from":"31699","_to":"31694"} +{"$label":"ACTS_IN","name":"Hooligan","type":"Role","_key":"48251","_from":"31698","_to":"31694"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"48250","_from":"31697","_to":"31694"} +{"$label":"ACTS_IN","name":"McGowan","type":"Role","_key":"48247","_from":"31696","_to":"31694"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"48246","_from":"31695","_to":"31694"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"102495","_from":"31696","_to":"60305"} +{"$label":"ACTS_IN","name":"Tony Brady","type":"Role","_key":"89828","_from":"31696","_to":"53152"} +{"$label":"ACTS_IN","name":"Reuben","type":"Role","_key":"56134","_from":"31696","_to":"35683"} +{"$label":"DIRECTED","_key":"48255","_from":"31703","_to":"31702"} +{"$label":"DIRECTED","_key":"68201","_from":"31703","_to":"41884"} +{"$label":"ACTS_IN","name":"Stef","type":"Role","_key":"48269","_from":"31705","_to":"31704"} +{"$label":"ACTS_IN","name":"Sid Vance","type":"Role","_key":"95199","_from":"31705","_to":"56012"} +{"$label":"ACTS_IN","name":"Karlchen","type":"Role","_key":"64090","_from":"31705","_to":"39999"} +{"$label":"ACTS_IN","name":"Pf\u00f6rtner","type":"Role","_key":"48279","_from":"31708","_to":"31707"} +{"$label":"DIRECTED","_key":"48273","_from":"31708","_to":"31707"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"48287","_from":"31714","_to":"31709"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"48286","_from":"31713","_to":"31709"} +{"$label":"ACTS_IN","name":"Miller","type":"Role","_key":"48285","_from":"31712","_to":"31709"} +{"$label":"ACTS_IN","name":"Leon Pompera","type":"Role","_key":"48283","_from":"31711","_to":"31709"} +{"$label":"DIRECTED","_key":"48281","_from":"31710","_to":"31709"} +{"$label":"ACTS_IN","name":"Capt. Segura","type":"Role","_key":"109783","_from":"31711","_to":"64846"} +{"$label":"ACTS_IN","name":"Mayor Duncan","type":"Role","_key":"90199","_from":"31711","_to":"53330"} +{"$label":"ACTS_IN","name":"Ilene","type":"Role","_key":"48302","_from":"31725","_to":"31715"} +{"$label":"ACTS_IN","name":"Trisha","type":"Role","_key":"48301","_from":"31724","_to":"31715"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"48300","_from":"31723","_to":"31715"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"48299","_from":"31722","_to":"31715"} +{"$label":"ACTS_IN","name":"Deb","type":"Role","_key":"48297","_from":"31721","_to":"31715"} +{"$label":"ACTS_IN","name":"Summer","type":"Role","_key":"48296","_from":"31720","_to":"31715"} +{"$label":"ACTS_IN","name":"LaFawnduh","type":"Role","_key":"48295","_from":"31719","_to":"31715"} +{"$label":"ACTS_IN","name":"Kip Dynamite","type":"Role","_key":"48292","_from":"31718","_to":"31715"} +{"$label":"ACTS_IN","name":"Napoleon Dynamite","type":"Role","_key":"48291","_from":"31717","_to":"31715"} +{"$label":"DIRECTED","_key":"48290","_from":"31716","_to":"31715"} +{"$label":"DIRECTED","_key":"53304","_from":"31716","_to":"34465"} +{"$label":"ACTS_IN","name":"Orlie","type":"Role","_key":"114707","_from":"31717","_to":"67566"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"94716","_from":"31717","_to":"55790"} +{"$label":"ACTS_IN","name":"Jeffrey Mannus","type":"Role","_key":"93136","_from":"31717","_to":"54897"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"58538","_from":"31717","_to":"36989"} +{"$label":"ACTS_IN","name":"Jimmy MacElroy","type":"Role","_key":"58498","_from":"31717","_to":"36974"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"57403","_from":"31717","_to":"36396"} +{"$label":"ACTS_IN","name":"Chicken Joe","type":"Role","_key":"53689","_from":"31717","_to":"34627"} +{"$label":"ACTS_IN","name":"Lashindra Davis","type":"Role","_key":"58128","_from":"31719","_to":"36776"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"119339","_from":"31720","_to":"70121"} +{"$label":"ACTS_IN","name":"Gina Adams","type":"Role","_key":"70286","_from":"31720","_to":"42822"} +{"$label":"ACTS_IN","name":"Ava Marchetta","type":"Role","_key":"60943","_from":"31720","_to":"38506"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"111250","_from":"31721","_to":"65695"} +{"$label":"ACTS_IN","name":"Molly Singer","type":"Role","_key":"63479","_from":"31721","_to":"39755"} +{"$label":"ACTS_IN","name":"Jessica Green","type":"Role","_key":"63421","_from":"31721","_to":"39729"} +{"$label":"ACTS_IN","name":"Antonio's Father","type":"Role","_key":"48315","_from":"31732","_to":"31726"} +{"$label":"ACTS_IN","name":"Guiseppe","type":"Role","_key":"48314","_from":"31731","_to":"31726"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"48313","_from":"31730","_to":"31726"} +{"$label":"ACTS_IN","name":"Aunt Mary","type":"Role","_key":"48309","_from":"31729","_to":"31726"} +{"$label":"ACTS_IN","name":"Young Laurie","type":"Role","_key":"48306","_from":"31728","_to":"31726"} +{"$label":"DIRECTED","_key":"48303","_from":"31727","_to":"31726"} +{"$label":"DIRECTED","_key":"111920","_from":"31727","_to":"66071"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"115173","_from":"31728","_to":"67820"} +{"$label":"ACTS_IN","name":"Maribel Benitez","type":"Role","_key":"99986","_from":"31728","_to":"58990"} +{"$label":"ACTS_IN","name":"Ivonne","type":"Role","_key":"90666","_from":"31728","_to":"53527"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"63811","_from":"31728","_to":"39897"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"88945","_from":"31730","_to":"52677"} +{"$label":"ACTS_IN","name":"Natacha Kirilova","type":"Role","_key":"48323","_from":"31734","_to":"31733"} +{"$label":"ACTS_IN","name":"Sara Warren","type":"Role","_key":"48341","_from":"31739","_to":"31735"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"48338","_from":"31738","_to":"31735"} +{"$label":"ACTS_IN","name":"Chablis Deveau","type":"Role","_key":"48334","_from":"31737","_to":"31735"} +{"$label":"ACTS_IN","name":"Joe Odom","type":"Role","_key":"48333","_from":"31736","_to":"31735"} +{"$label":"ACTS_IN","name":"Joe Tunney","type":"Role","_key":"48347","_from":"31742","_to":"31740"} +{"$label":"ACTS_IN","name":"Phuong","type":"Role","_key":"48345","_from":"31741","_to":"31740"} +{"$label":"ACTS_IN","name":"Mr. Burns","type":"Role","_key":"63462","_from":"31742","_to":"39745"} +{"$label":"ACTS_IN","name":"Ted Van Sant","type":"Role","_key":"57626","_from":"31742","_to":"36484"} +{"$label":"ACTS_IN","name":"Erb Crandal","type":"Role","_key":"57563","_from":"31742","_to":"36462"} +{"$label":"ACTS_IN","name":"Advisor","type":"Role","_key":"56611","_from":"31742","_to":"35958"} +{"$label":"DIRECTED","_key":"48359","_from":"31747","_to":"31743"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"48358","_from":"31746","_to":"31743"} +{"$label":"ACTS_IN","name":"Aunt Sadie","type":"Role","_key":"48357","_from":"31745","_to":"31743"} +{"$label":"ACTS_IN","name":"Dreamer","type":"Role","_key":"48356","_from":"31744","_to":"31743"} +{"$label":"ACTS_IN","name":"Roy Harrison","type":"Role","_key":"106964","_from":"31744","_to":"63058"} +{"$label":"ACTS_IN","name":"Vater Jan","type":"Role","_key":"48375","_from":"31756","_to":"31748"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"48373","_from":"31755","_to":"31748"} +{"$label":"ACTS_IN","name":"Bertram","type":"Role","_key":"48371","_from":"31754","_to":"31748"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"48369","_from":"31753","_to":"31748"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"48368","_from":"31752","_to":"31748"} +{"$label":"ACTS_IN","name":"Katrin","type":"Role","_key":"48367","_from":"31751","_to":"31748"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"48366","_from":"31750","_to":"31748"} +{"$label":"DIRECTED","_key":"48361","_from":"31749","_to":"31748"} +{"$label":"DIRECTED","_key":"88620","_from":"31749","_to":"52511"} +{"$label":"DIRECTED","_key":"48425","_from":"31749","_to":"31785"} +{"$label":"ACTS_IN","name":"Zwinso","type":"Role","_key":"88629","_from":"31754","_to":"52511"} +{"$label":"ACTS_IN","name":"Seger","type":"Role","_key":"66612","_from":"31754","_to":"41171"} +{"$label":"DIRECTED","_key":"48377","_from":"31759","_to":"31757"} +{"$label":"DIRECTED","_key":"48376","_from":"31758","_to":"31757"} +{"$label":"DIRECTED","_key":"48388","_from":"31763","_to":"31760"} +{"$label":"ACTS_IN","name":"Claudius","type":"Role","_key":"48387","_from":"31762","_to":"31760"} +{"$label":"ACTS_IN","name":"Inari","type":"Role","_key":"48384","_from":"31761","_to":"31760"} +{"$label":"ACTS_IN","name":"2nd Lieutenant (Team 4)","type":"Role","_key":"121388","_from":"31761","_to":"71326"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"103182","_from":"31762","_to":"60693"} +{"$label":"ACTS_IN","name":"Robert Schumann","type":"Role","_key":"51333","_from":"31762","_to":"33476"} +{"$label":"DIRECTED","_key":"121708","_from":"31763","_to":"71494"} +{"$label":"ACTS_IN","name":"Helen's Co-Worker","type":"Role","_key":"48399","_from":"31767","_to":"31764"} +{"$label":"ACTS_IN","name":"Young Lucinda","type":"Role","_key":"48398","_from":"31766","_to":"31764"} +{"$label":"DIRECTED","_key":"48389","_from":"31765","_to":"31764"} +{"$label":"DIRECTED","_key":"90249","_from":"31765","_to":"53362"} +{"$label":"DIRECTED","_key":"64676","_from":"31765","_to":"40287"} +{"$label":"DIRECTED","_key":"51969","_from":"31765","_to":"33893"} +{"$label":"ACTS_IN","name":"Dr. Decker","type":"Role","_key":"48413","_from":"31778","_to":"31768"} +{"$label":"ACTS_IN","name":"Clara Rauch","type":"Role","_key":"48411","_from":"31777","_to":"31768"} +{"$label":"ACTS_IN","name":"Kassierer in der Tankstelle","type":"Role","_key":"48408","_from":"31776","_to":"31768"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"48406","_from":"31775","_to":"31768"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"48405","_from":"31774","_to":"31768"} +{"$label":"DIRECTED","_key":"48404","_from":"31773","_to":"31768"} +{"$label":"DIRECTED","_key":"48403","_from":"31772","_to":"31768"} +{"$label":"DIRECTED","_key":"48402","_from":"31771","_to":"31768"} +{"$label":"DIRECTED","_key":"48401","_from":"31770","_to":"31768"} +{"$label":"DIRECTED","_key":"48400","_from":"31769","_to":"31768"} +{"$label":"DIRECTED","_key":"50137","_from":"31772","_to":"32788"} +{"$label":"ACTS_IN","name":"Jill Lawrence","type":"Role","_key":"48424","_from":"31784","_to":"31779"} +{"$label":"ACTS_IN","name":"Binstead","type":"Role","_key":"48422","_from":"31783","_to":"31779"} +{"$label":"ACTS_IN","name":"Nurse Agnes","type":"Role","_key":"48421","_from":"31782","_to":"31779"} +{"$label":"ACTS_IN","name":"Ramon Levine","type":"Role","_key":"48419","_from":"31781","_to":"31779"} +{"$label":"ACTS_IN","name":"Clive","type":"Role","_key":"48418","_from":"31780","_to":"31779"} +{"$label":"ACTS_IN","name":"Dr. George Bradman","type":"Role","_key":"118600","_from":"31780","_to":"69736"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"48437","_from":"31791","_to":"31785"} +{"$label":"ACTS_IN","name":"Pelle","type":"Role","_key":"48436","_from":"31790","_to":"31785"} +{"$label":"ACTS_IN","name":"Uwe","type":"Role","_key":"48432","_from":"31789","_to":"31785"} +{"$label":"ACTS_IN","name":"Yavuz","type":"Role","_key":"48429","_from":"31788","_to":"31785"} +{"$label":"DIRECTED","_key":"48428","_from":"31787","_to":"31785"} +{"$label":"DIRECTED","_key":"48427","_from":"31786","_to":"31785"} +{"$label":"DIRECTED","_key":"88621","_from":"31786","_to":"52511"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"91631","_from":"31790","_to":"54033"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"66593","_from":"31790","_to":"41168"} +{"$label":"DIRECTED","_key":"48455","_from":"31808","_to":"31792"} +{"$label":"DIRECTED","_key":"48454","_from":"31807","_to":"31792"} +{"$label":"DIRECTED","_key":"48453","_from":"31806","_to":"31792"} +{"$label":"ACTS_IN","name":"Pawe\u0142 Pawlak","type":"Role","_key":"48452","_from":"31805","_to":"31792"} +{"$label":"ACTS_IN","name":"Sprzedawczyni lis\u00f3w na targu","type":"Role","_key":"48451","_from":"31804","_to":"31792"} +{"$label":"ACTS_IN","name":"Saszka, \u017co\u0142nierz radziecki","type":"Role","_key":"48450","_from":"31803","_to":"31792"} +{"$label":"ACTS_IN","name":"Sprzedawca kota","type":"Role","_key":"48448","_from":"31802","_to":"31792"} +{"$label":"ACTS_IN","name":"Aniela Kargulowa","type":"Role","_key":"48447","_from":"31801","_to":"31792"} +{"$label":"ACTS_IN","name":"Warszawiak","type":"Role","_key":"48446","_from":"31800","_to":"31792"} +{"$label":"ACTS_IN","name":"So\u0142tys","type":"Role","_key":"48445","_from":"31799","_to":"31792"} +{"$label":"ACTS_IN","name":"Witia Pawlak","type":"Role","_key":"48443","_from":"31798","_to":"31792"} +{"$label":"ACTS_IN","name":"Jad\u017aka","type":"Role","_key":"48442","_from":"31797","_to":"31792"} +{"$label":"ACTS_IN","name":"Kokeszko","type":"Role","_key":"48441","_from":"31796","_to":"31792"} +{"$label":"ACTS_IN","name":"John Pawlak","type":"Role","_key":"48440","_from":"31795","_to":"31792"} +{"$label":"ACTS_IN","name":"W\u0142adys\u0142aw Kargul","type":"Role","_key":"48439","_from":"31794","_to":"31792"} +{"$label":"ACTS_IN","name":"Kazimierz Pawlak","type":"Role","_key":"48438","_from":"31793","_to":"31792"} +{"$label":"ACTS_IN","name":"pot\u0119piony B\u0142a\u017cej","type":"Role","_key":"50863","_from":"31800","_to":"33197"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48467","_from":"31821","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48466","_from":"31820","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48465","_from":"31819","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48464","_from":"31818","_to":"31809"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"48463","_from":"31817","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48462","_from":"31816","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48461","_from":"31815","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48460","_from":"31814","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48459","_from":"31813","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48458","_from":"31812","_to":"31809"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"48457","_from":"31811","_to":"31809"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"48456","_from":"31810","_to":"31809"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"48474","_from":"31823","_to":"31822"} +{"$label":"ACTS_IN","name":"Bletch (voice) (uncredited)","type":"Role","_key":"48490","_from":"31834","_to":"31825"} +{"$label":"ACTS_IN","name":"Killer man (uncredited)","type":"Role","_key":"48489","_from":"31833","_to":"31825"} +{"$label":"ACTS_IN","name":"Heidi the Hippo","type":"Role","_key":"48488","_from":"31832","_to":"31825"} +{"$label":"ACTS_IN","name":"Sid the Elephant \/ The Cockroach \/ Louie the Fish (voice)","type":"Role","_key":"48487","_from":"31831","_to":"31825"} +{"$label":"ACTS_IN","name":"Bletch \/ Arfur the Worm (voice)","type":"Role","_key":"48486","_from":"31830","_to":"31825"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"48485","_from":"31829","_to":"31825"} +{"$label":"ACTS_IN","name":"Wynyard the Frog \/ Trevor the Rat \/ The Fly (voice)","type":"Role","_key":"48484","_from":"31828","_to":"31825"} +{"$label":"ACTS_IN","name":"Heidi \/ Robert \/ Barry the Bulldog (voice)","type":"Role","_key":"48483","_from":"31827","_to":"31825"} +{"$label":"ACTS_IN","name":"Samantha the Cat \/ The Sheep (voice)","type":"Role","_key":"48481","_from":"31826","_to":"31825"} +{"$label":"ACTS_IN","name":"Ken, Dorothy's Husband","type":"Role","_key":"48508","_from":"31841","_to":"31835"} +{"$label":"ACTS_IN","name":"Alice as Child","type":"Role","_key":"48506","_from":"31840","_to":"31835"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"48505","_from":"31839","_to":"31835"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"48504","_from":"31838","_to":"31835"} +{"$label":"ACTS_IN","name":"Alice's Father","type":"Role","_key":"48503","_from":"31837","_to":"31835"} +{"$label":"ACTS_IN","name":"Alice's Mother","type":"Role","_key":"48502","_from":"31836","_to":"31835"} +{"$label":"ACTS_IN","name":"Capt. Adams","type":"Role","_key":"51052","_from":"31837","_to":"33312"} +{"$label":"ACTS_IN","name":"Georgine Rose Corrigan","type":"Role","_key":"57247","_from":"31838","_to":"36299"} +{"$label":"ACTS_IN","name":"Jenna Reide","type":"Role","_key":"108359","_from":"31840","_to":"64053"} +{"$label":"ACTS_IN","name":"Penny Deerborn","type":"Role","_key":"104886","_from":"31840","_to":"61709"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"57264","_from":"31840","_to":"36317"} +{"$label":"ACTS_IN","name":"Martha Linscott","type":"Role","_key":"55481","_from":"31840","_to":"35352"} +{"$label":"ACTS_IN","name":"isa Connelly","type":"Role","_key":"54404","_from":"31840","_to":"34894"} +{"$label":"ACTS_IN","name":"Mr. Casey","type":"Role","_key":"50779","_from":"31841","_to":"33134"} +{"$label":"ACTS_IN","name":"Eusebio","type":"Role","_key":"48518","_from":"31845","_to":"31842"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"48516","_from":"31844","_to":"31842"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"48515","_from":"31843","_to":"31842"} +{"$label":"ACTS_IN","name":"Novicia","type":"Role","_key":"48541","_from":"31856","_to":"31846"} +{"$label":"ACTS_IN","name":"Espe","type":"Role","_key":"48538","_from":"31855","_to":"31846"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"48537","_from":"31854","_to":"31846"} +{"$label":"ACTS_IN","name":"Periodista","type":"Role","_key":"48536","_from":"31853","_to":"31846"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"48534","_from":"31852","_to":"31846"} +{"$label":"ACTS_IN","name":"Cura","type":"Role","_key":"48530","_from":"31851","_to":"31846"} +{"$label":"ACTS_IN","name":"Marquesa","type":"Role","_key":"48529","_from":"31850","_to":"31846"} +{"$label":"ACTS_IN","name":"Madero","type":"Role","_key":"48528","_from":"31849","_to":"31846"} +{"$label":"ACTS_IN","name":"Lina","type":"Role","_key":"48526","_from":"31848","_to":"31846"} +{"$label":"ACTS_IN","name":"Sor V\u00edbora","type":"Role","_key":"48524","_from":"31847","_to":"31846"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"48557","_from":"31864","_to":"31857"} +{"$label":"ACTS_IN","name":"Dentista","type":"Role","_key":"48553","_from":"31863","_to":"31857"} +{"$label":"ACTS_IN","name":"Ingrid M\u00fcller","type":"Role","_key":"48552","_from":"31862","_to":"31857"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"48550","_from":"31861","_to":"31857"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"48549","_from":"31860","_to":"31857"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"48548","_from":"31859","_to":"31857"} +{"$label":"ACTS_IN","name":"Cristal","type":"Role","_key":"48546","_from":"31858","_to":"31857"} +{"$label":"ACTS_IN","name":"Kika","type":"Role","_key":"48559","_from":"31858","_to":"31865"} +{"$label":"ACTS_IN","name":"Modelo","type":"Role","_key":"48573","_from":"31872","_to":"31865"} +{"$label":"ACTS_IN","name":"V\u00edctima del asesino","type":"Role","_key":"48572","_from":"31871","_to":"31865"} +{"$label":"ACTS_IN","name":"Paca","type":"Role","_key":"48570","_from":"31870","_to":"31865"} +{"$label":"ACTS_IN","name":"Polic\u00eda","type":"Role","_key":"48567","_from":"31869","_to":"31865"} +{"$label":"ACTS_IN","name":"Amparo","type":"Role","_key":"48566","_from":"31868","_to":"31865"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"48564","_from":"31867","_to":"31865"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"48563","_from":"31866","_to":"31865"} +{"$label":"ACTS_IN","name":"Ricardo","type":"Role","_key":"70087","_from":"31869","_to":"42731"} +{"$label":"ACTS_IN","name":"Miami Girlfriend","type":"Role","_key":"48585","_from":"31872","_to":"31873"} +{"$label":"ACTS_IN","name":"Mrs. Christian","type":"Role","_key":"48589","_from":"31878","_to":"31873"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"48588","_from":"31877","_to":"31873"} +{"$label":"ACTS_IN","name":"Computer Wizard","type":"Role","_key":"48587","_from":"31876","_to":"31873"} +{"$label":"ACTS_IN","name":"Mary Ann Mathews","type":"Role","_key":"48584","_from":"31875","_to":"31873"} +{"$label":"ACTS_IN","name":"Janet Mathews","type":"Role","_key":"48583","_from":"31874","_to":"31873"} +{"$label":"ACTS_IN","name":"Betty Shin","type":"Role","_key":"101847","_from":"31876","_to":"59942"} +{"$label":"ACTS_IN","name":"Fabrice Canoli","type":"Role","_key":"48614","_from":"31887","_to":"31880"} +{"$label":"ACTS_IN","name":"inspecteur Lebic","type":"Role","_key":"48612","_from":"31886","_to":"31880"} +{"$label":"ACTS_IN","name":"le gendarme","type":"Role","_key":"48610","_from":"31885","_to":"31880"} +{"$label":"ACTS_IN","name":"Annabelle Deconninck","type":"Role","_key":"48609","_from":"31884","_to":"31880"} +{"$label":"ACTS_IN","name":"Madame Bailleul","type":"Role","_key":"48605","_from":"31883","_to":"31880"} +{"$label":"ACTS_IN","name":"Julie Abrams","type":"Role","_key":"48604","_from":"31882","_to":"31880"} +{"$label":"DIRECTED","_key":"48601","_from":"31881","_to":"31880"} +{"$label":"ACTS_IN","name":"La vendeuse supermarch\u00e9","type":"Role","_key":"113646","_from":"31884","_to":"66968"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"112160","_from":"31884","_to":"66233"} +{"$label":"ACTS_IN","name":"La femme flic","type":"Role","_key":"96148","_from":"31884","_to":"56510"} +{"$label":"ACTS_IN","name":"Le truand #1","type":"Role","_key":"96147","_from":"31885","_to":"56510"} +{"$label":"ACTS_IN","name":"Le client","type":"Role","_key":"64655","_from":"31887","_to":"40271"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"48626","_from":"31894","_to":"31888"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"48624","_from":"31893","_to":"31888"} +{"$label":"ACTS_IN","name":"Maria Luzzato","type":"Role","_key":"48623","_from":"31892","_to":"31888"} +{"$label":"ACTS_IN","name":"Ga\u00eblle Lemenech","type":"Role","_key":"48620","_from":"31891","_to":"31888"} +{"$label":"ACTS_IN","name":"Suzy Desprez","type":"Role","_key":"48619","_from":"31890","_to":"31888"} +{"$label":"DIRECTED","_key":"48616","_from":"31889","_to":"31888"} +{"$label":"DIRECTED","_key":"70522","_from":"31889","_to":"42926"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"121149","_from":"31890","_to":"71158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101283","_from":"31890","_to":"59637"} +{"$label":"ACTS_IN","name":"Caty","type":"Role","_key":"72985","_from":"31890","_to":"43928"} +{"$label":"ACTS_IN","name":"Adrienne Chanel","type":"Role","_key":"68195","_from":"31890","_to":"41883"} +{"$label":"ACTS_IN","name":"Fleur","type":"Role","_key":"88430","_from":"31891","_to":"52413"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"70146","_from":"31891","_to":"42759"} +{"$label":"ACTS_IN","name":"M\u00e9lanie Prouvost","type":"Role","_key":"49740","_from":"31891","_to":"32543"} +{"$label":"ACTS_IN","name":"Mirella Utano","type":"Role","_key":"71359","_from":"31892","_to":"43279"} +{"$label":"ACTS_IN","name":"Tartamudo","type":"Role","_key":"48636","_from":"31905","_to":"31895"} +{"$label":"ACTS_IN","name":"Meleyo","type":"Role","_key":"48635","_from":"31904","_to":"31895"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"48634","_from":"31903","_to":"31895"} +{"$label":"ACTS_IN","name":"Tica","type":"Role","_key":"48633","_from":"31902","_to":"31895"} +{"$label":"ACTS_IN","name":"Nacente","type":"Role","_key":"48632","_from":"31901","_to":"31895"} +{"$label":"ACTS_IN","name":"Valvulina","type":"Role","_key":"48631","_from":"31900","_to":"31895"} +{"$label":"ACTS_IN","name":"Silvia","type":"Role","_key":"48630","_from":"31899","_to":"31895"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"48629","_from":"31898","_to":"31895"} +{"$label":"ACTS_IN","name":"Beto","type":"Role","_key":"48628","_from":"31897","_to":"31895"} +{"$label":"DIRECTED","_key":"48627","_from":"31896","_to":"31895"} +{"$label":"ACTS_IN","name":"Madame Valle","type":"Role","_key":"48643","_from":"31908","_to":"31906"} +{"$label":"ACTS_IN","name":"Misha","type":"Role","_key":"48638","_from":"31907","_to":"31906"} +{"$label":"ACTS_IN","name":"Topuz","type":"Role","_key":"48653","_from":"31915","_to":"31909"} +{"$label":"ACTS_IN","name":"Runjo","type":"Role","_key":"48652","_from":"31914","_to":"31909"} +{"$label":"ACTS_IN","name":"Bosa, Lehrerin","type":"Role","_key":"48651","_from":"31913","_to":"31909"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater Zivojin Markovic","type":"Role","_key":"48649","_from":"31912","_to":"31909"} +{"$label":"ACTS_IN","name":"Tsane","type":"Role","_key":"48648","_from":"31911","_to":"31909"} +{"$label":"ACTS_IN","name":"Jasna","type":"Role","_key":"48647","_from":"31910","_to":"31909"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"114333","_from":"31912","_to":"67343"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"48689","_from":"31942","_to":"31916"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"48688","_from":"31941","_to":"31916"} +{"$label":"ACTS_IN","name":"Ted\u2019s Wife","type":"Role","_key":"48687","_from":"31940","_to":"31916"} +{"$label":"ACTS_IN","name":"State Trooper","type":"Role","_key":"48686","_from":"31939","_to":"31916"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"48685","_from":"31938","_to":"31916"} +{"$label":"ACTS_IN","name":"Farmer on Thresher","type":"Role","_key":"48684","_from":"31937","_to":"31916"} +{"$label":"ACTS_IN","name":"Department store clerk","type":"Role","_key":"48683","_from":"31936","_to":"31916"} +{"$label":"ACTS_IN","name":"Elderly Man with Walker","type":"Role","_key":"48682","_from":"31935","_to":"31916"} +{"$label":"ACTS_IN","name":"Motorcycle couple","type":"Role","_key":"48681","_from":"31934","_to":"31916"} +{"$label":"ACTS_IN","name":"Motorcycle couple","type":"Role","_key":"48680","_from":"31933","_to":"31916"} +{"$label":"ACTS_IN","name":"Woman reading at bar","type":"Role","_key":"48679","_from":"31932","_to":"31916"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"48678","_from":"31931","_to":"31916"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"48677","_from":"31930","_to":"31916"} +{"$label":"ACTS_IN","name":"Cameron\u2019s Girlfriend","type":"Role","_key":"48676","_from":"31929","_to":"31916"} +{"$label":"ACTS_IN","name":"Cameron Pratt","type":"Role","_key":"48675","_from":"31928","_to":"31916"} +{"$label":"ACTS_IN","name":"Alison Pratt","type":"Role","_key":"48674","_from":"31927","_to":"31916"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"48673","_from":"31926","_to":"31916"} +{"$label":"ACTS_IN","name":"Woman in bar","type":"Role","_key":"48672","_from":"31925","_to":"31916"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"48671","_from":"31924","_to":"31916"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"48669","_from":"31923","_to":"31916"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"48668","_from":"31922","_to":"31916"} +{"$label":"ACTS_IN","name":"Maura","type":"Role","_key":"48667","_from":"31921","_to":"31916"} +{"$label":"ACTS_IN","name":"Cork","type":"Role","_key":"48666","_from":"31920","_to":"31916"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"48665","_from":"31919","_to":"31916"} +{"$label":"ACTS_IN","name":"Bone","type":"Role","_key":"48664","_from":"31918","_to":"31916"} +{"$label":"ACTS_IN","name":"Deputy Ted","type":"Role","_key":"48662","_from":"31917","_to":"31916"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"115505","_from":"31921","_to":"67997"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"97062","_from":"31924","_to":"57091"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"62128","_from":"31928","_to":"39125"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"92620","_from":"31929","_to":"54673"} +{"$label":"ACTS_IN","name":"Ram #1","type":"Role","_key":"59382","_from":"31931","_to":"37511"} +{"$label":"ACTS_IN","name":"Female Tech","type":"Role","_key":"97057","_from":"31932","_to":"57091"} +{"$label":"DIRECTED","_key":"97076","_from":"31936","_to":"57091"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"97058","_from":"31937","_to":"57091"} +{"$label":"ACTS_IN","name":"Dani","type":"Role","_key":"110553","_from":"31942","_to":"65323"} +{"$label":"DIRECTED","_key":"48697","_from":"31944","_to":"31943"} +{"$label":"DIRECTED","_key":"92101","_from":"31944","_to":"54348"} +{"$label":"DIRECTED","_key":"70046","_from":"31944","_to":"42710"} +{"$label":"DIRECTED","_key":"67749","_from":"31944","_to":"41652"} +{"$label":"DIRECTED","_key":"57883","_from":"31944","_to":"36625"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"48703","_from":"31947","_to":"31945"} +{"$label":"DIRECTED","_key":"48698","_from":"31946","_to":"31945"} +{"$label":"ACTS_IN","name":"Stephen, Alice's Husband","type":"Role","_key":"90867","_from":"31947","_to":"53612"} +{"$label":"ACTS_IN","name":"Father Lucci","type":"Role","_key":"67754","_from":"31947","_to":"41653"} +{"$label":"ACTS_IN","name":"Lt. Gold","type":"Role","_key":"58578","_from":"31947","_to":"37011"} +{"$label":"ACTS_IN","name":"Graham Knox","type":"Role","_key":"54981","_from":"31947","_to":"35139"} +{"$label":"ACTS_IN","name":"Leslie Summers","type":"Role","_key":"48720","_from":"31953","_to":"31948"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"48719","_from":"31952","_to":"31948"} +{"$label":"ACTS_IN","name":"Officer Krystal","type":"Role","_key":"48718","_from":"31951","_to":"31948"} +{"$label":"ACTS_IN","name":"Fr\u00e4ulein Brandi","type":"Role","_key":"48716","_from":"31950","_to":"31948"} +{"$label":"DIRECTED","_key":"48704","_from":"31949","_to":"31948"} +{"$label":"DIRECTED","_key":"58909","_from":"31949","_to":"37201"} +{"$label":"DIRECTED","_key":"49460","_from":"31949","_to":"32384"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"64330","_from":"31950","_to":"40093"} +{"$label":"ACTS_IN","name":"Sage","type":"Role","_key":"58740","_from":"31950","_to":"37102"} +{"$label":"ACTS_IN","name":"Linda Murphy","type":"Role","_key":"94121","_from":"31952","_to":"55425"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"48732","_from":"31963","_to":"31954"} +{"$label":"ACTS_IN","name":"Sheree","type":"Role","_key":"48731","_from":"31962","_to":"31954"} +{"$label":"ACTS_IN","name":"Arianna","type":"Role","_key":"48730","_from":"31961","_to":"31954"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"48728","_from":"31960","_to":"31954"} +{"$label":"ACTS_IN","name":"Brandon Vandecamp","type":"Role","_key":"48727","_from":"31959","_to":"31954"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"48726","_from":"31958","_to":"31954"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"48725","_from":"31957","_to":"31954"} +{"$label":"ACTS_IN","name":"Matt Stifler","type":"Role","_key":"48723","_from":"31956","_to":"31954"} +{"$label":"DIRECTED","_key":"48721","_from":"31955","_to":"31954"} +{"$label":"DIRECTED","_key":"103764","_from":"31955","_to":"61022"} +{"$label":"DIRECTED","_key":"93456","_from":"31955","_to":"55025"} +{"$label":"DIRECTED","_key":"91925","_from":"31955","_to":"54230"} +{"$label":"DIRECTED","_key":"68569","_from":"31955","_to":"42036"} +{"$label":"DIRECTED","_key":"67919","_from":"31955","_to":"41725"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"96753","_from":"31956","_to":"56913"} +{"$label":"ACTS_IN","name":"Chance Marquis","type":"Role","_key":"91821","_from":"31956","_to":"54167"} +{"$label":"ACTS_IN","name":"Jenny Starz","type":"Role","_key":"110932","_from":"31962","_to":"65527"} +{"$label":"ACTS_IN","name":"Mike Coozeman","type":"Role","_key":"48740","_from":"31970","_to":"31964"} +{"$label":"ACTS_IN","name":"Rock","type":"Role","_key":"48739","_from":"31969","_to":"31964"} +{"$label":"ACTS_IN","name":"Dwight Stifler","type":"Role","_key":"48738","_from":"31968","_to":"31964"} +{"$label":"ACTS_IN","name":"Tracey","type":"Role","_key":"48737","_from":"31967","_to":"31964"} +{"$label":"ACTS_IN","name":"Erik Stifler","type":"Role","_key":"48736","_from":"31966","_to":"31964"} +{"$label":"DIRECTED","_key":"48733","_from":"31965","_to":"31964"} +{"$label":"DIRECTED","_key":"101790","_from":"31965","_to":"59906"} +{"$label":"DIRECTED","_key":"65553","_from":"31965","_to":"40629"} +{"$label":"DIRECTED","_key":"57648","_from":"31965","_to":"36500"} +{"$label":"ACTS_IN","name":"Erik Stifler","type":"Role","_key":"48756","_from":"31966","_to":"31982"} +{"$label":"ACTS_IN","name":"Dick Arnold","type":"Role","_key":"121249","_from":"31968","_to":"71223"} +{"$label":"ACTS_IN","name":"Dwight Stifler","type":"Role","_key":"48757","_from":"31968","_to":"31982"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"49014","_from":"31969","_to":"32124"} +{"$label":"ACTS_IN","name":"Mike Coozeman","type":"Role","_key":"48760","_from":"31970","_to":"31982"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"48754","_from":"31981","_to":"31971"} +{"$label":"ACTS_IN","name":"G\u00e9rard","type":"Role","_key":"48753","_from":"31980","_to":"31971"} +{"$label":"ACTS_IN","name":"Conseill\u00e8re d'insertion","type":"Role","_key":"48752","_from":"31979","_to":"31971"} +{"$label":"ACTS_IN","name":"Kaisha","type":"Role","_key":"48751","_from":"31978","_to":"31971"} +{"$label":"ACTS_IN","name":"Samir","type":"Role","_key":"48750","_from":"31977","_to":"31971"} +{"$label":"ACTS_IN","name":"Papy Paul","type":"Role","_key":"48749","_from":"31976","_to":"31971"} +{"$label":"ACTS_IN","name":"P'tit Lys","type":"Role","_key":"48748","_from":"31975","_to":"31971"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"48745","_from":"31974","_to":"31971"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"48744","_from":"31973","_to":"31971"} +{"$label":"DIRECTED","_key":"48741","_from":"31972","_to":"31971"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"115919","_from":"31973","_to":"68242"} +{"$label":"ACTS_IN","name":"Mme Fandango","type":"Role","_key":"121772","_from":"31979","_to":"71533"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"119468","_from":"31979","_to":"70178"} +{"$label":"ACTS_IN","name":"Mme Fandango","type":"Role","_key":"110839","_from":"31979","_to":"65471"} +{"$label":"ACTS_IN","name":"La femme de Mich","type":"Role","_key":"50596","_from":"31979","_to":"33043"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"48762","_from":"31985","_to":"31982"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"48761","_from":"31984","_to":"31982"} +{"$label":"DIRECTED","_key":"48755","_from":"31983","_to":"31982"} +{"$label":"ACTS_IN","name":"Corporal Benedict","type":"Role","_key":"121250","_from":"31984","_to":"71223"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"48780","_from":"31991","_to":"31986"} +{"$label":"ACTS_IN","name":"Farida","type":"Role","_key":"48779","_from":"31990","_to":"31986"} +{"$label":"ACTS_IN","name":"Pr\u00e9sentateur t\u00e9l\u00e9","type":"Role","_key":"48778","_from":"31989","_to":"31986"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"48773","_from":"31988","_to":"31986"} +{"$label":"ACTS_IN","name":"Franky","type":"Role","_key":"48770","_from":"31987","_to":"31986"} +{"$label":"ACTS_IN","name":"Zoran (voix)","type":"Role","_key":"118731","_from":"31987","_to":"69812"} +{"$label":"ACTS_IN","name":"Vincent Goumard","type":"Role","_key":"96151","_from":"31987","_to":"56510"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"95607","_from":"31987","_to":"56238"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"89576","_from":"31987","_to":"53004"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"71009","_from":"31987","_to":"43127"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"65848","_from":"31987","_to":"40747"} +{"$label":"ACTS_IN","name":"Sergei Nimov Nimovitch","type":"Role","_key":"49639","_from":"31987","_to":"32481"} +{"$label":"ACTS_IN","name":"La guide perspective","type":"Role","_key":"118051","_from":"31988","_to":"69385"} +{"$label":"ACTS_IN","name":"Eleonor","type":"Role","_key":"116300","_from":"31988","_to":"68466"} +{"$label":"ACTS_IN","name":"Muriel","type":"Role","_key":"111894","_from":"31988","_to":"66051"} +{"$label":"ACTS_IN","name":"Adrienne Bledish","type":"Role","_key":"105236","_from":"31988","_to":"61936"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"62406","_from":"31988","_to":"39313"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"62383","_from":"31990","_to":"39303"} +{"$label":"ACTS_IN","name":"Serguei","type":"Role","_key":"48796","_from":"32006","_to":"31992"} +{"$label":"ACTS_IN","name":"Latifa","type":"Role","_key":"48795","_from":"32005","_to":"31992"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"48793","_from":"32004","_to":"31992"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"48792","_from":"32003","_to":"31992"} +{"$label":"ACTS_IN","name":"Majid","type":"Role","_key":"48791","_from":"32002","_to":"31992"} +{"$label":"ACTS_IN","name":"Kader","type":"Role","_key":"48790","_from":"32001","_to":"31992"} +{"$label":"ACTS_IN","name":"Lilia","type":"Role","_key":"48789","_from":"32000","_to":"31992"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"48788","_from":"31999","_to":"31992"} +{"$label":"ACTS_IN","name":"Souad","type":"Role","_key":"48787","_from":"31998","_to":"31992"} +{"$label":"ACTS_IN","name":"Hamid","type":"Role","_key":"48786","_from":"31997","_to":"31992"} +{"$label":"ACTS_IN","name":"Karima","type":"Role","_key":"48785","_from":"31996","_to":"31992"} +{"$label":"ACTS_IN","name":"Rym","type":"Role","_key":"48784","_from":"31995","_to":"31992"} +{"$label":"ACTS_IN","name":"Slimane","type":"Role","_key":"48783","_from":"31994","_to":"31992"} +{"$label":"DIRECTED","_key":"48782","_from":"31993","_to":"31992"} +{"$label":"ACTS_IN","name":"Le\u00efla","type":"Role","_key":"100058","_from":"31995","_to":"59021"} +{"$label":"ACTS_IN","name":"Sofia Adulte","type":"Role","_key":"62382","_from":"31995","_to":"39303"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106295","_from":"31999","_to":"62617"} +{"$label":"ACTS_IN","name":"Bouddha","type":"Role","_key":"103288","_from":"32003","_to":"60764"} +{"$label":"ACTS_IN","name":"La Serveuse","type":"Role","_key":"48799","_from":"32010","_to":"32007"} +{"$label":"DIRECTED","_key":"48798","_from":"32009","_to":"32007"} +{"$label":"DIRECTED","_key":"48797","_from":"32008","_to":"32007"} +{"$label":"ACTS_IN","name":"Patricia \/ Cinzia","type":"Role","_key":"99866","_from":"32010","_to":"58894"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"62491","_from":"32010","_to":"39356"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"48816","_from":"32016","_to":"32011"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"48815","_from":"32015","_to":"32011"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"48814","_from":"32014","_to":"32011"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"48812","_from":"32013","_to":"32011"} +{"$label":"DIRECTED","_key":"48805","_from":"32012","_to":"32011"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Labaume","type":"Role","_key":"62202","_from":"32013","_to":"39172"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"104054","_from":"32016","_to":"61214"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"51347","_from":"32016","_to":"33480"} +{"$label":"DIRECTED","_key":"48818","_from":"32019","_to":"32017"} +{"$label":"DIRECTED","_key":"48817","_from":"32018","_to":"32017"} +{"$label":"ACTS_IN","name":"Nude","type":"Role","_key":"48826","_from":"32021","_to":"32020"} +{"$label":"ACTS_IN","name":"Jilly","type":"Role","_key":"120464","_from":"32021","_to":"70763"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"110379","_from":"32021","_to":"65220"} +{"$label":"ACTS_IN","name":"List Member #1","type":"Role","_key":"92063","_from":"32021","_to":"54312"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"57464","_from":"32021","_to":"36424"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9ric","type":"Role","_key":"48841","_from":"32024","_to":"32023"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48856","_from":"32040","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48855","_from":"32039","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48854","_from":"32038","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48853","_from":"32037","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48852","_from":"32036","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48851","_from":"32035","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48850","_from":"32034","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48849","_from":"32033","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48848","_from":"32032","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48847","_from":"32031","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48846","_from":"32030","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48845","_from":"32029","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48844","_from":"32028","_to":"32025"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"48843","_from":"32027","_to":"32025"} +{"$label":"DIRECTED","_key":"48842","_from":"32026","_to":"32025"} +{"$label":"ACTS_IN","name":"Mrs. Baker","type":"Role","_key":"48868","_from":"32045","_to":"32041"} +{"$label":"ACTS_IN","name":"Mr. Thomson","type":"Role","_key":"48866","_from":"32044","_to":"32041"} +{"$label":"ACTS_IN","name":"Student Foxx","type":"Role","_key":"48865","_from":"32043","_to":"32041"} +{"$label":"ACTS_IN","name":"Mr. Hayes","type":"Role","_key":"48864","_from":"32042","_to":"32041"} +{"$label":"ACTS_IN","name":"Le second allemand au hammam","type":"Role","_key":"48933","_from":"32086","_to":"32047"} +{"$label":"ACTS_IN","name":"Marguerite","type":"Role","_key":"48932","_from":"32085","_to":"32047"} +{"$label":"ACTS_IN","name":"Faust","type":"Role","_key":"48931","_from":"32084","_to":"32047"} +{"$label":"ACTS_IN","name":"Le premier gar\u00e7on","type":"Role","_key":"48930","_from":"32083","_to":"32047"} +{"$label":"ACTS_IN","name":"Ludwig","type":"Role","_key":"48929","_from":"32082","_to":"32047"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"48928","_from":"32081","_to":"32047"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"48927","_from":"32080","_to":"32047"} +{"$label":"ACTS_IN","name":"John, le bombardier","type":"Role","_key":"48925","_from":"32079","_to":"32047"} +{"$label":"ACTS_IN","name":"Harry, le mitrailleur","type":"Role","_key":"48924","_from":"32078","_to":"32047"} +{"$label":"ACTS_IN","name":"Patrick, le m\u00e9canicien","type":"Role","_key":"48923","_from":"32077","_to":"32047"} +{"$label":"ACTS_IN","name":"Un soldat allemand","type":"Role","_key":"48922","_from":"32076","_to":"32047"} +{"$label":"ACTS_IN","name":"Un autre colonel allemand","type":"Role","_key":"48921","_from":"32075","_to":"32047"} +{"$label":"ACTS_IN","name":"B\u00e9bert","type":"Role","_key":"48920","_from":"32074","_to":"32047"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"48919","_from":"32073","_to":"32047"} +{"$label":"ACTS_IN","name":"Un g\u00e9n\u00e9ral allemand","type":"Role","_key":"48918","_from":"32072","_to":"32047"} +{"$label":"ACTS_IN","name":"Plombin","type":"Role","_key":"48917","_from":"32071","_to":"32047"} +{"$label":"ACTS_IN","name":"Un sous-officier allemand","type":"Role","_key":"48916","_from":"32070","_to":"32047"} +{"$label":"ACTS_IN","name":"L'employ\u00e9 du bain turc","type":"Role","_key":"48915","_from":"32069","_to":"32047"} +{"$label":"ACTS_IN","name":"Un soldat allemand","type":"Role","_key":"48914","_from":"32068","_to":"32047"} +{"$label":"ACTS_IN","name":"Le soldat allemand assomm\u00e9","type":"Role","_key":"48913","_from":"32067","_to":"32047"} +{"$label":"ACTS_IN","name":"Un officier allemand","type":"Role","_key":"48912","_from":"32066","_to":"32047"} +{"$label":"ACTS_IN","name":"Un employ\u00e9 de la gare","type":"Role","_key":"48910","_from":"32065","_to":"32047"} +{"$label":"ACTS_IN","name":"L'allemand du train","type":"Role","_key":"48908","_from":"32064","_to":"32047"} +{"$label":"ACTS_IN","name":"Un client du wagon-restaurant","type":"Role","_key":"48906","_from":"32063","_to":"32047"} +{"$label":"ACTS_IN","name":"La vieille locataire","type":"Role","_key":"48905","_from":"32062","_to":"32047"} +{"$label":"ACTS_IN","name":"Le motard qui prend la citrouille","type":"Role","_key":"48904","_from":"32061","_to":"32047"} +{"$label":"ACTS_IN","name":"Un figurant \u00e0 l'op\u00e9ra","type":"Role","_key":"48903","_from":"32060","_to":"32047"} +{"$label":"ACTS_IN","name":"\"La doublure de Louis de Fun\u00e8s\"","type":"Role","_key":"48902","_from":"32059","_to":"32047"} +{"$label":"ACTS_IN","name":"Figuration","type":"Role","_key":"48901","_from":"32058","_to":"32047"} +{"$label":"ACTS_IN","name":"Un homme de la gestapo","type":"Role","_key":"48900","_from":"32057","_to":"32047"} +{"$label":"ACTS_IN","name":"un soldat allemand","type":"Role","_key":"48899","_from":"32056","_to":"32047"} +{"$label":"ACTS_IN","name":"Le moustachu du bain turc","type":"Role","_key":"48898","_from":"32055","_to":"32047"} +{"$label":"ACTS_IN","name":"L'autre musicien bavard","type":"Role","_key":"48897","_from":"32054","_to":"32047"} +{"$label":"ACTS_IN","name":"Le postier \u00e0 la gare","type":"Role","_key":"48895","_from":"32053","_to":"32047"} +{"$label":"ACTS_IN","name":"M\u00e9phisto, un r\u00e9sistant","type":"Role","_key":"48893","_from":"32052","_to":"32047"} +{"$label":"ACTS_IN","name":"Un soldat allemand","type":"Role","_key":"48891","_from":"32051","_to":"32047"} +{"$label":"ACTS_IN","name":"Une religieuse","type":"Role","_key":"48890","_from":"32050","_to":"32047"} +{"$label":"ACTS_IN","name":"Mme Germaine, patronne de l'h\u00f4tel","type":"Role","_key":"48889","_from":"32049","_to":"32047"} +{"$label":"ACTS_IN","name":"Le gardien du zoo de Vincennes","type":"Role","_key":"48888","_from":"32048","_to":"32047"} +{"$label":"ACTS_IN","name":"Pellot","type":"Role","_key":"72722","_from":"32055","_to":"43820"} +{"$label":"DIRECTED","_key":"115762","_from":"32058","_to":"68156"} +{"$label":"DIRECTED","_key":"101446","_from":"32058","_to":"59718"} +{"$label":"DIRECTED","_key":"59966","_from":"32058","_to":"37860"} +{"$label":"ACTS_IN","name":"E.J.","type":"Role","_key":"48961","_from":"32107","_to":"32087"} +{"$label":"ACTS_IN","name":"Member, Last Poets","type":"Role","_key":"48960","_from":"32106","_to":"32087"} +{"$label":"ACTS_IN","name":"Member, Last Poets","type":"Role","_key":"48959","_from":"32105","_to":"32087"} +{"$label":"ACTS_IN","name":"Member, Last Poets","type":"Role","_key":"48958","_from":"32104","_to":"32087"} +{"$label":"ACTS_IN","name":"Member, Last Poets","type":"Role","_key":"48957","_from":"32103","_to":"32087"} +{"$label":"ACTS_IN","name":"Truck driver","type":"Role","_key":"48956","_from":"32102","_to":"32087"} +{"$label":"ACTS_IN","name":"Aunt May","type":"Role","_key":"48955","_from":"32101","_to":"32087"} +{"$label":"ACTS_IN","name":"Helicopter pilot #1","type":"Role","_key":"48954","_from":"32100","_to":"32087"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"48953","_from":"32099","_to":"32087"} +{"$label":"ACTS_IN","name":"Female Cousin","type":"Role","_key":"48951","_from":"32098","_to":"32087"} +{"$label":"ACTS_IN","name":"Panhandler","type":"Role","_key":"48950","_from":"32097","_to":"32087"} +{"$label":"ACTS_IN","name":"Shante","type":"Role","_key":"48949","_from":"32096","_to":"32087"} +{"$label":"ACTS_IN","name":"Ticket Taker","type":"Role","_key":"48948","_from":"32095","_to":"32087"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"48947","_from":"32094","_to":"32087"} +{"$label":"ACTS_IN","name":"Thug #1","type":"Role","_key":"48946","_from":"32093","_to":"32087"} +{"$label":"ACTS_IN","name":"Thug #2","type":"Role","_key":"48945","_from":"32092","_to":"32087"} +{"$label":"ACTS_IN","name":"Aunt June","type":"Role","_key":"48943","_from":"32091","_to":"32087"} +{"$label":"ACTS_IN","name":"Chicago","type":"Role","_key":"48938","_from":"32090","_to":"32087"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"48936","_from":"32089","_to":"32087"} +{"$label":"ACTS_IN","name":"Justice","type":"Role","_key":"48935","_from":"32088","_to":"32087"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"111503","_from":"32088","_to":"65841"} +{"$label":"ACTS_IN","name":"Denise Gaines","type":"Role","_key":"88056","_from":"32088","_to":"52270"} +{"$label":"ACTS_IN","name":"Birdie","type":"Role","_key":"118666","_from":"32089","_to":"69770"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"107380","_from":"32089","_to":"63339"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"100475","_from":"32089","_to":"59242"} +{"$label":"ACTS_IN","name":"Detective Rodriguez","type":"Role","_key":"100035","_from":"32089","_to":"59013"} +{"$label":"ACTS_IN","name":"Ezekiel 'Spoon' Whitmore","type":"Role","_key":"89817","_from":"32089","_to":"53151"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"110028","_from":"32091","_to":"65011"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"113630","_from":"32094","_to":"66966"} +{"$label":"ACTS_IN","name":"Morris the Barber","type":"Role","_key":"56360","_from":"32097","_to":"35808"} +{"$label":"ACTS_IN","name":"Evan","type":"Role","_key":"48976","_from":"32110","_to":"32108"} +{"$label":"ACTS_IN","name":"Sofi","type":"Role","_key":"48971","_from":"32109","_to":"32108"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"109927","_from":"32109","_to":"64948"} +{"$label":"ACTS_IN","name":"T.T.","type":"Role","_key":"105380","_from":"32109","_to":"61998"} +{"$label":"ACTS_IN","name":"Loridonna","type":"Role","_key":"71650","_from":"32109","_to":"43385"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"117500","_from":"32110","_to":"69087"} +{"$label":"ACTS_IN","name":"Dupree Brouchard","type":"Role","_key":"50112","_from":"32110","_to":"32780"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"48986","_from":"32114","_to":"32111"} +{"$label":"ACTS_IN","name":"Tibby Schlegel","type":"Role","_key":"48985","_from":"32113","_to":"32111"} +{"$label":"ACTS_IN","name":"Paul Wilcox","type":"Role","_key":"48984","_from":"32112","_to":"32111"} +{"$label":"ACTS_IN","name":"Lord George","type":"Role","_key":"100626","_from":"32113","_to":"59333"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"48998","_from":"32118","_to":"32116"} +{"$label":"DIRECTED","_key":"48995","_from":"32117","_to":"32116"} +{"$label":"DIRECTED","_key":"65069","_from":"32117","_to":"40428"} +{"$label":"ACTS_IN","name":"Zoey","type":"Role","_key":"112259","_from":"32118","_to":"66291"} +{"$label":"ACTS_IN","name":"KW","type":"Role","_key":"109395","_from":"32118","_to":"64630"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"102861","_from":"32118","_to":"60510"} +{"$label":"ACTS_IN","name":"Gilda Radner","type":"Role","_key":"49004","_from":"32121","_to":"32119"} +{"$label":"ACTS_IN","name":"John Lennon","type":"Role","_key":"49003","_from":"32120","_to":"32119"} +{"$label":"ACTS_IN","name":"Nick Hopewell","type":"Role","_key":"73008","_from":"32120","_to":"43937"} +{"$label":"DIRECTED","_key":"49005","_from":"32123","_to":"32122"} +{"$label":"DIRECTED","_key":"49008","_from":"32125","_to":"32124"} +{"$label":"ACTS_IN","name":"Francisco","type":"Role","_key":"49033","_from":"32131","_to":"32126"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"49032","_from":"32130","_to":"32126"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"49031","_from":"32129","_to":"32126"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"49030","_from":"32128","_to":"32126"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"49022","_from":"32127","_to":"32126"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"52060","_from":"32128","_to":"33937"} +{"$label":"DIRECTED","_key":"49034","_from":"32133","_to":"32132"} +{"$label":"DIRECTED","_key":"68683","_from":"32133","_to":"42088"} +{"$label":"ACTS_IN","name":"X-Ray","type":"Role","_key":"49048","_from":"32138","_to":"32134"} +{"$label":"ACTS_IN","name":"Armpit","type":"Role","_key":"49047","_from":"32137","_to":"32134"} +{"$label":"ACTS_IN","name":"Squid","type":"Role","_key":"49046","_from":"32136","_to":"32134"} +{"$label":"ACTS_IN","name":"Hector Zeroni","type":"Role","_key":"49045","_from":"32135","_to":"32134"} +{"$label":"ACTS_IN","name":"Mixed Mike","type":"Role","_key":"100724","_from":"32135","_to":"59387"} +{"$label":"ACTS_IN","name":"Tourist Wife","type":"Role","_key":"49061","_from":"32151","_to":"32139"} +{"$label":"ACTS_IN","name":"The Prostitute","type":"Role","_key":"49060","_from":"32150","_to":"32139"} +{"$label":"ACTS_IN","name":"Lut, He whose planet is Pluto","type":"Role","_key":"49059","_from":"32149","_to":"32139"} +{"$label":"ACTS_IN","name":"Axon, He whose planet is Neptune","type":"Role","_key":"49058","_from":"32148","_to":"32139"} +{"$label":"ACTS_IN","name":"Berg, He whose planet is Uranus","type":"Role","_key":"49057","_from":"32147","_to":"32139"} +{"$label":"ACTS_IN","name":"Sel, She whose planet is Saturn","type":"Role","_key":"49056","_from":"32146","_to":"32139"} +{"$label":"ACTS_IN","name":"Klen, He whose planet is Jupiter","type":"Role","_key":"49055","_from":"32145","_to":"32139"} +{"$label":"ACTS_IN","name":"Isla, She whose planet is Mars","type":"Role","_key":"49054","_from":"32144","_to":"32139"} +{"$label":"ACTS_IN","name":"Fon, He whose planet is Venus","type":"Role","_key":"49053","_from":"32143","_to":"32139"} +{"$label":"ACTS_IN","name":"The Written Woman","type":"Role","_key":"49052","_from":"32142","_to":"32139"} +{"$label":"ACTS_IN","name":"The Thief","type":"Role","_key":"49051","_from":"32141","_to":"32139"} +{"$label":"ACTS_IN","name":"The Alchemist","type":"Role","_key":"49050","_from":"32140","_to":"32139"} +{"$label":"DIRECTED","_key":"49049","_from":"32140","_to":"32139"} +{"$label":"DIRECTED","_key":"119315","_from":"32140","_to":"70107"} +{"$label":"DIRECTED","_key":"92114","_from":"32140","_to":"54350"} +{"$label":"ACTS_IN","name":"El Topo","type":"Role","_key":"92110","_from":"32140","_to":"54350"} +{"$label":"DIRECTED","_key":"49070","_from":"32159","_to":"32152"} +{"$label":"ACTS_IN","name":"Tuck","type":"Role","_key":"49069","_from":"32158","_to":"32152"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"49068","_from":"32157","_to":"32152"} +{"$label":"ACTS_IN","name":"Missy","type":"Role","_key":"49067","_from":"32156","_to":"32152"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"49066","_from":"32155","_to":"32152"} +{"$label":"ACTS_IN","name":"Sophie Donovan","type":"Role","_key":"49065","_from":"32154","_to":"32152"} +{"$label":"ACTS_IN","name":"Andie West","type":"Role","_key":"49062","_from":"32153","_to":"32152"} +{"$label":"ACTS_IN","name":"Corey","type":"Role","_key":"112796","_from":"32153","_to":"66602"} +{"$label":"DIRECTED","_key":"49081","_from":"32170","_to":"32160"} +{"$label":"DIRECTED","_key":"49080","_from":"32169","_to":"32160"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"49079","_from":"32168","_to":"32160"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"49078","_from":"32167","_to":"32160"} +{"$label":"ACTS_IN","name":"Guillem","type":"Role","_key":"49077","_from":"32166","_to":"32160"} +{"$label":"ACTS_IN","name":"Frau Izquierdo","type":"Role","_key":"49076","_from":"32165","_to":"32160"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"49075","_from":"32164","_to":"32160"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"49074","_from":"32163","_to":"32160"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"49073","_from":"32162","_to":"32160"} +{"$label":"ACTS_IN","name":"C\u00e9sar","type":"Role","_key":"49072","_from":"32161","_to":"32160"} +{"$label":"ACTS_IN","name":"Rosso","type":"Role","_key":"64921","_from":"32162","_to":"40363"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"119072","_from":"32163","_to":"69983"} +{"$label":"ACTS_IN","name":"Dr. Death","type":"Role","_key":"102544","_from":"32164","_to":"60327"} +{"$label":"ACTS_IN","name":"Sra. Izquierdo","type":"Role","_key":"64924","_from":"32165","_to":"40363"} +{"$label":"ACTS_IN","name":"Manu","type":"Role","_key":"64920","_from":"32167","_to":"40363"} +{"$label":"DIRECTED","_key":"111570","_from":"32169","_to":"65871"} +{"$label":"DIRECTED","_key":"69277","_from":"32169","_to":"42354"} +{"$label":"DIRECTED","_key":"67592","_from":"32169","_to":"41608"} +{"$label":"DIRECTED","_key":"64917","_from":"32169","_to":"40363"} +{"$label":"DIRECTED","_key":"53848","_from":"32169","_to":"34685"} +{"$label":"DIRECTED","_key":"90833","_from":"32170","_to":"53594"} +{"$label":"DIRECTED","_key":"64918","_from":"32170","_to":"40363"} +{"$label":"ACTS_IN","name":"Krimininalbeamter","type":"Role","_key":"49101","_from":"32176","_to":"32171"} +{"$label":"ACTS_IN","name":"Polizeioffizier","type":"Role","_key":"49100","_from":"32175","_to":"32171"} +{"$label":"ACTS_IN","name":"Bars\u00e4ngerin Miriam","type":"Role","_key":"49097","_from":"32174","_to":"32171"} +{"$label":"ACTS_IN","name":"Frau Brocca","type":"Role","_key":"49096","_from":"32173","_to":"32171"} +{"$label":"ACTS_IN","name":"Johnston","type":"Role","_key":"49093","_from":"32172","_to":"32171"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"49111","_from":"32181","_to":"32177"} +{"$label":"ACTS_IN","name":"Frau Hering","type":"Role","_key":"49107","_from":"32180","_to":"32177"} +{"$label":"ACTS_IN","name":"Polizist Wagner","type":"Role","_key":"49105","_from":"32179","_to":"32177"} +{"$label":"DIRECTED","_key":"49103","_from":"32178","_to":"32177"} +{"$label":"DIRECTED","_key":"121394","_from":"32178","_to":"71326"} +{"$label":"DIRECTED","_key":"91540","_from":"32178","_to":"53957"} +{"$label":"ACTS_IN","name":"Jonathan Trotz","type":"Role","_key":"63805","_from":"32181","_to":"39895"} +{"$label":"ACTS_IN","name":"Mr. Brown - George Steever","type":"Role","_key":"49118","_from":"32183","_to":"32182"} +{"$label":"ACTS_IN","name":"J.H. Potts","type":"Role","_key":"120129","_from":"32183","_to":"70546"} +{"$label":"DIRECTED","_key":"49123","_from":"32185","_to":"32184"} +{"$label":"ACTS_IN","name":"Street Preacher","type":"Role","_key":"49134","_from":"32189","_to":"32186"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"49131","_from":"32188","_to":"32186"} +{"$label":"ACTS_IN","name":"Nada","type":"Role","_key":"49130","_from":"32187","_to":"32186"} +{"$label":"ACTS_IN","name":"Homeless George","type":"Role","_key":"88731","_from":"32187","_to":"52574"} +{"$label":"ACTS_IN","name":"Jackson Smith","type":"Role","_key":"88470","_from":"32187","_to":"52436"} +{"$label":"ACTS_IN","name":"Lynn Devereaux","type":"Role","_key":"118811","_from":"32188","_to":"69847"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"99855","_from":"32188","_to":"58891"} +{"$label":"ACTS_IN","name":"Ali Tanner","type":"Role","_key":"88924","_from":"32188","_to":"52676"} +{"$label":"ACTS_IN","name":"Evil-Lyn","type":"Role","_key":"71282","_from":"32188","_to":"43245"} +{"$label":"ACTS_IN","name":"Jean Markham","type":"Role","_key":"70466","_from":"32188","_to":"42897"} +{"$label":"ACTS_IN","name":"Junge","type":"Role","_key":"49146","_from":"32193","_to":"32190"} +{"$label":"ACTS_IN","name":"Frau des ersten Blinden","type":"Role","_key":"49143","_from":"32192","_to":"32190"} +{"$label":"ACTS_IN","name":"Der erste Blinde","type":"Role","_key":"49142","_from":"32191","_to":"32190"} +{"$label":"ACTS_IN","name":"Kimura (voice)","type":"Role","_key":"96194","_from":"32191","_to":"56536"} +{"$label":"ACTS_IN","name":"Minamoto no Yoshitsune","type":"Role","_key":"95618","_from":"32191","_to":"56241"} +{"$label":"ACTS_IN","name":"Tetsuya Azuma","type":"Role","_key":"71376","_from":"32191","_to":"43291"} +{"$label":"ACTS_IN","name":"Shizuka","type":"Role","_key":"95620","_from":"32192","_to":"56241"} +{"$label":"ACTS_IN","name":"Shirkooh","type":"Role","_key":"49153","_from":"32201","_to":"32194"} +{"$label":"ACTS_IN","name":"Riga","type":"Role","_key":"49152","_from":"32200","_to":"32194"} +{"$label":"ACTS_IN","name":"Hengov","type":"Role","_key":"49151","_from":"32199","_to":"32194"} +{"$label":"ACTS_IN","name":"Pashow","type":"Role","_key":"49150","_from":"32198","_to":"32194"} +{"$label":"ACTS_IN","name":"Argin","type":"Role","_key":"49149","_from":"32197","_to":"32194"} +{"$label":"ACTS_IN","name":"Satellite","type":"Role","_key":"49148","_from":"32196","_to":"32194"} +{"$label":"DIRECTED","_key":"49147","_from":"32195","_to":"32194"} +{"$label":"ACTS_IN","name":"Sonam","type":"Role","_key":"49159","_from":"32207","_to":"32202"} +{"$label":"ACTS_IN","name":"Karma","type":"Role","_key":"49158","_from":"32206","_to":"32202"} +{"$label":"ACTS_IN","name":"Dawa","type":"Role","_key":"49157","_from":"32205","_to":"32202"} +{"$label":"ACTS_IN","name":"Pema","type":"Role","_key":"49155","_from":"32204","_to":"32202"} +{"$label":"ACTS_IN","name":"Tashi","type":"Role","_key":"49154","_from":"32203","_to":"32202"} +{"$label":"ACTS_IN","name":"Michelle Yeung","type":"Role","_key":"117048","_from":"32204","_to":"68884"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"49167","_from":"32214","_to":"32208"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"49166","_from":"32213","_to":"32208"} +{"$label":"ACTS_IN","name":"Marchand","type":"Role","_key":"49165","_from":"32212","_to":"32208"} +{"$label":"ACTS_IN","name":"Cera","type":"Role","_key":"49164","_from":"32211","_to":"32208"} +{"$label":"ACTS_IN","name":"Nino","type":"Role","_key":"49163","_from":"32210","_to":"32208"} +{"$label":"ACTS_IN","name":"Ciki","type":"Role","_key":"49162","_from":"32209","_to":"32208"} +{"$label":"ACTS_IN","name":"Patrol Officer","type":"Role","_key":"49178","_from":"32221","_to":"32215"} +{"$label":"ACTS_IN","name":"Sheriff Thomas Pellegrino","type":"Role","_key":"49177","_from":"32220","_to":"32215"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"49176","_from":"32219","_to":"32215"} +{"$label":"ACTS_IN","name":"Oli","type":"Role","_key":"49175","_from":"32218","_to":"32215"} +{"$label":"ACTS_IN","name":"Celina","type":"Role","_key":"49172","_from":"32217","_to":"32215"} +{"$label":"DIRECTED","_key":"49170","_from":"32216","_to":"32215"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"118745","_from":"32218","_to":"69825"} +{"$label":"ACTS_IN","name":"Anna Rivers","type":"Role","_key":"72085","_from":"32218","_to":"43578"} +{"$label":"ACTS_IN","name":"Veronica Roberts","type":"Role","_key":"65146","_from":"32218","_to":"40469"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"114697","_from":"32219","_to":"67561"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"49188","_from":"32227","_to":"32222"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"49187","_from":"32226","_to":"32222"} +{"$label":"ACTS_IN","name":"Joschka","type":"Role","_key":"49186","_from":"32225","_to":"32222"} +{"$label":"ACTS_IN","name":"Juli","type":"Role","_key":"49185","_from":"32224","_to":"32222"} +{"$label":"ACTS_IN","name":"Deniz","type":"Role","_key":"49182","_from":"32223","_to":"32222"} +{"$label":"ACTS_IN","name":"Oliver Huber","type":"Role","_key":"65942","_from":"32224","_to":"40793"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"49192","_from":"32231","_to":"32228"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"49191","_from":"32230","_to":"32228"} +{"$label":"DIRECTED","_key":"49190","_from":"32229","_to":"32228"} +{"$label":"ACTS_IN","name":"Harriet Miller","type":"Role","_key":"49207","_from":"32241","_to":"32232"} +{"$label":"ACTS_IN","name":"Yiayia","type":"Role","_key":"49205","_from":"32240","_to":"32232"} +{"$label":"ACTS_IN","name":"Uncle Taki","type":"Role","_key":"49204","_from":"32239","_to":"32232"} +{"$label":"ACTS_IN","name":"Toula Teenager","type":"Role","_key":"49203","_from":"32238","_to":"32232"} +{"$label":"ACTS_IN","name":"Toula as child","type":"Role","_key":"49202","_from":"32237","_to":"32232"} +{"$label":"ACTS_IN","name":"Nick Portokalos","type":"Role","_key":"49200","_from":"32236","_to":"32232"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"49199","_from":"32235","_to":"32232"} +{"$label":"ACTS_IN","name":"Toula","type":"Role","_key":"49194","_from":"32234","_to":"32232"} +{"$label":"DIRECTED","_key":"49193","_from":"32233","_to":"32232"} +{"$label":"DIRECTED","_key":"102933","_from":"32233","_to":"60545"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"105404","_from":"32234","_to":"62019"} +{"$label":"ACTS_IN","name":"Bones","type":"Role","_key":"97721","_from":"32235","_to":"57539"} +{"$label":"ACTS_IN","name":"Terrel","type":"Role","_key":"97611","_from":"32236","_to":"57466"} +{"$label":"DIRECTED","_key":"49222","_from":"32248","_to":"32242"} +{"$label":"ACTS_IN","name":"Larissa","type":"Role","_key":"49221","_from":"32247","_to":"32242"} +{"$label":"ACTS_IN","name":"Busfahrerin","type":"Role","_key":"49220","_from":"32246","_to":"32242"} +{"$label":"ACTS_IN","name":"Frau Wokalek","type":"Role","_key":"49218","_from":"32245","_to":"32242"} +{"$label":"ACTS_IN","name":"Carolin Wagner","type":"Role","_key":"49211","_from":"32244","_to":"32242"} +{"$label":"ACTS_IN","name":"Gast","type":"Role","_key":"49210","_from":"32243","_to":"32242"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"104453","_from":"32247","_to":"61435"} +{"$label":"DIRECTED","_key":"49223","_from":"32250","_to":"32249"} +{"$label":"DIRECTED","_key":"71909","_from":"32250","_to":"43508"} +{"$label":"DIRECTED","_key":"67331","_from":"32250","_to":"41493"} +{"$label":"DIRECTED","_key":"66847","_from":"32250","_to":"41285"} +{"$label":"DIRECTED","_key":"49230","_from":"32252","_to":"32251"} +{"$label":"ACTS_IN","name":"Toto","type":"Role","_key":"49254","_from":"32257","_to":"32254"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"49253","_from":"32256","_to":"32254"} +{"$label":"ACTS_IN","name":"Zizou","type":"Role","_key":"49250","_from":"32255","_to":"32254"} +{"$label":"ACTS_IN","name":"Yekea","type":"Role","_key":"113638","_from":"32255","_to":"66968"} +{"$label":"ACTS_IN","name":"Samy","type":"Role","_key":"105223","_from":"32255","_to":"61923"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"49260","_from":"32262","_to":"32258"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"49259","_from":"32261","_to":"32258"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"49258","_from":"32260","_to":"32258"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"49257","_from":"32259","_to":"32258"} +{"$label":"ACTS_IN","name":"Zweiter Mann","type":"Role","_key":"49266","_from":"32268","_to":"32263"} +{"$label":"ACTS_IN","name":"Erster Mann","type":"Role","_key":"49265","_from":"32267","_to":"32263"} +{"$label":"ACTS_IN","name":"Zweite Frau","type":"Role","_key":"49264","_from":"32266","_to":"32263"} +{"$label":"ACTS_IN","name":"Erste Frau","type":"Role","_key":"49263","_from":"32265","_to":"32263"} +{"$label":"DIRECTED","_key":"49262","_from":"32264","_to":"32263"} +{"$label":"ACTS_IN","name":"Ned Hathaway","type":"Role","_key":"49280","_from":"32274","_to":"32271"} +{"$label":"ACTS_IN","name":"Lois Clark","type":"Role","_key":"49278","_from":"32273","_to":"32271"} +{"$label":"ACTS_IN","name":"Kenneth Bradley","type":"Role","_key":"49277","_from":"32272","_to":"32271"} +{"$label":"ACTS_IN","name":"Taylor Henry","type":"Role","_key":"111215","_from":"32272","_to":"65677"} +{"$label":"ACTS_IN","name":"Mark Williams","type":"Role","_key":"67025","_from":"32272","_to":"41374"} +{"$label":"ACTS_IN","name":"O.W. Schultz, Salesman Atlas Suspender Co.","type":"Role","_key":"117444","_from":"32274","_to":"69067"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"49288","_from":"32280","_to":"32275"} +{"$label":"ACTS_IN","name":"Elliot","type":"Role","_key":"49287","_from":"32279","_to":"32275"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"49285","_from":"32278","_to":"32275"} +{"$label":"DIRECTED","_key":"49283","_from":"32277","_to":"32275"} +{"$label":"DIRECTED","_key":"49282","_from":"32276","_to":"32275"} +{"$label":"ACTS_IN","name":"G2","type":"Role","_key":"121120","_from":"32278","_to":"71139"} +{"$label":"ACTS_IN","name":"Mrs. Lanzelin","type":"Role","_key":"110933","_from":"32278","_to":"65527"} +{"$label":"ACTS_IN","name":"Evian Carrie Graham","type":"Role","_key":"97040","_from":"32278","_to":"57090"} +{"$label":"ACTS_IN","name":"Meredith Blake","type":"Role","_key":"57143","_from":"32278","_to":"36269"} +{"$label":"ACTS_IN","name":"Jeffrey Reardon","type":"Role","_key":"59994","_from":"32280","_to":"37868"} +{"$label":"ACTS_IN","name":"Lev","type":"Role","_key":"49299","_from":"32287","_to":"32281"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"49298","_from":"32286","_to":"32281"} +{"$label":"ACTS_IN","name":"Nicolai","type":"Role","_key":"49297","_from":"32285","_to":"32281"} +{"$label":"ACTS_IN","name":"Dick Peterson","type":"Role","_key":"49296","_from":"32284","_to":"32281"} +{"$label":"ACTS_IN","name":"Fyodor","type":"Role","_key":"49295","_from":"32283","_to":"32281"} +{"$label":"ACTS_IN","name":"Bettina Peterson","type":"Role","_key":"49294","_from":"32282","_to":"32281"} +{"$label":"ACTS_IN","name":"Kolya","type":"Role","_key":"119245","_from":"32287","_to":"70057"} +{"$label":"DIRECTED","_key":"49312","_from":"32289","_to":"32288"} +{"$label":"DIRECTED","_key":"63011","_from":"32289","_to":"39550"} +{"$label":"DIRECTED","_key":"49499","_from":"32289","_to":"32401"} +{"$label":"DIRECTED","_key":"49365","_from":"32332","_to":"32290"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"49364","_from":"32331","_to":"32290"} +{"$label":"ACTS_IN","name":"Party Teenager #3","type":"Role","_key":"49363","_from":"32330","_to":"32290"} +{"$label":"ACTS_IN","name":"Party Teenager #2","type":"Role","_key":"49362","_from":"32329","_to":"32290"} +{"$label":"ACTS_IN","name":"Party Teenager #1","type":"Role","_key":"49361","_from":"32328","_to":"32290"} +{"$label":"ACTS_IN","name":"Elementary Principal","type":"Role","_key":"49360","_from":"32327","_to":"32290"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"49359","_from":"32326","_to":"32290"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"49358","_from":"32325","_to":"32290"} +{"$label":"ACTS_IN","name":"Vagtastic Voyage Girl #2","type":"Role","_key":"49357","_from":"32324","_to":"32290"} +{"$label":"ACTS_IN","name":"Vagtastic Voyage Girl #1","type":"Role","_key":"49356","_from":"32323","_to":"32290"} +{"$label":"ACTS_IN","name":"Vagtastic Voyager","type":"Role","_key":"49355","_from":"32322","_to":"32290"} +{"$label":"ACTS_IN","name":"Young Becca","type":"Role","_key":"49354","_from":"32321","_to":"32290"} +{"$label":"ACTS_IN","name":"Young Seth","type":"Role","_key":"49353","_from":"32320","_to":"32290"} +{"$label":"ACTS_IN","name":"Math Teacher","type":"Role","_key":"49352","_from":"32319","_to":"32290"} +{"$label":"ACTS_IN","name":"Gym Teacher","type":"Role","_key":"49351","_from":"32318","_to":"32290"} +{"$label":"ACTS_IN","name":"Mrs. Hayworth","type":"Role","_key":"49350","_from":"32317","_to":"32290"} +{"$label":"ACTS_IN","name":"Muffin Selby","type":"Role","_key":"49349","_from":"32316","_to":"32290"} +{"$label":"ACTS_IN","name":"Tiger Greendragon","type":"Role","_key":"49348","_from":"32315","_to":"32290"} +{"$label":"ACTS_IN","name":"Scarlett Brighton","type":"Role","_key":"49347","_from":"32314","_to":"32290"} +{"$label":"ACTS_IN","name":"Kane Cloverdale","type":"Role","_key":"49346","_from":"32313","_to":"32290"} +{"$label":"ACTS_IN","name":"Coffee Fairmount","type":"Role","_key":"49343","_from":"32312","_to":"32290"} +{"$label":"ACTS_IN","name":"Billy Baybridge","type":"Role","_key":"49342","_from":"32311","_to":"32290"} +{"$label":"ACTS_IN","name":"Patrick Manchester","type":"Role","_key":"49340","_from":"32310","_to":"32290"} +{"$label":"ACTS_IN","name":"Tut Long John Silver","type":"Role","_key":"49339","_from":"32309","_to":"32290"} +{"$label":"ACTS_IN","name":"Quince Danbury","type":"Role","_key":"49338","_from":"32308","_to":"32290"} +{"$label":"ACTS_IN","name":"Period Blood Girl","type":"Role","_key":"49337","_from":"32307","_to":"32290"} +{"$label":"ACTS_IN","name":"Good Shopper Security","type":"Role","_key":"49336","_from":"32306","_to":"32290"} +{"$label":"ACTS_IN","name":"Old Lady","type":"Role","_key":"49335","_from":"32305","_to":"32290"} +{"$label":"ACTS_IN","name":"Good Shopper Cashier","type":"Role","_key":"49334","_from":"32304","_to":"32290"} +{"$label":"ACTS_IN","name":"Father with Bat","type":"Role","_key":"49333","_from":"32303","_to":"32290"} +{"$label":"ACTS_IN","name":"Evan's Mom (Evans Mutter)","type":"Role","_key":"49332","_from":"32302","_to":"32290"} +{"$label":"ACTS_IN","name":"Prosthetic Leg Kid (Kind mit Beinprothese)","type":"Role","_key":"49331","_from":"32301","_to":"32290"} +{"$label":"ACTS_IN","name":"Miroki","type":"Role","_key":"49330","_from":"32300","_to":"32290"} +{"$label":"ACTS_IN","name":"Shirley","type":"Role","_key":"49329","_from":"32299","_to":"32290"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"49328","_from":"32298","_to":"32290"} +{"$label":"ACTS_IN","name":"Gaby","type":"Role","_key":"49327","_from":"32297","_to":"32290"} +{"$label":"ACTS_IN","name":"Greg (Soccer Player \/ Fu\u00dfballspieler)","type":"Role","_key":"49326","_from":"32296","_to":"32290"} +{"$label":"ACTS_IN","name":"Liquor Store Clerk (Mitarbeiter Getr\u00e4nkeladen)","type":"Role","_key":"49325","_from":"32295","_to":"32290"} +{"$label":"ACTS_IN","name":"Mindy","type":"Role","_key":"49324","_from":"32294","_to":"32290"} +{"$label":"ACTS_IN","name":"Homeless Guy (Obdachloser)","type":"Role","_key":"49323","_from":"32293","_to":"32290"} +{"$label":"ACTS_IN","name":"Becca","type":"Role","_key":"49318","_from":"32292","_to":"32290"} +{"$label":"ACTS_IN","name":"Fogell","type":"Role","_key":"49315","_from":"32291","_to":"32290"} +{"$label":"ACTS_IN","name":"Augie Farks","type":"Role","_key":"104158","_from":"32291","_to":"61278"} +{"$label":"ACTS_IN","name":"Fishlegs","type":"Role","_key":"61575","_from":"32291","_to":"38816"} +{"$label":"ACTS_IN","name":"Paige","type":"Role","_key":"116053","_from":"32292","_to":"68340"} +{"$label":"ACTS_IN","name":"Raul","type":"Role","_key":"58130","_from":"32295","_to":"36776"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"115837","_from":"32302","_to":"68192"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"100940","_from":"32302","_to":"59498"} +{"$label":"ACTS_IN","name":"Toni Peck","type":"Role","_key":"113304","_from":"32307","_to":"66746"} +{"$label":"ACTS_IN","name":"Vera Downing","type":"Role","_key":"111376","_from":"32307","_to":"65768"} +{"$label":"ACTS_IN","name":"Gag Me Girl","type":"Role","_key":"57500","_from":"32307","_to":"36436"} +{"$label":"ACTS_IN","name":"Chick 'The Truck' Wallace","type":"Role","_key":"94739","_from":"32308","_to":"55799"} +{"$label":"DIRECTED","_key":"110745","_from":"32309","_to":"65426"} +{"$label":"DIRECTED","_key":"94742","_from":"32309","_to":"55799"} +{"$label":"ACTS_IN","name":"Mike McAlister","type":"Role","_key":"94741","_from":"32309","_to":"55799"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"62024","_from":"32310","_to":"39042"} +{"$label":"ACTS_IN","name":"Junior TV Exec","type":"Role","_key":"56543","_from":"32310","_to":"35892"} +{"$label":"ACTS_IN","name":"Yusef","type":"Role","_key":"61662","_from":"32311","_to":"38850"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"93019","_from":"32323","_to":"54839"} +{"$label":"ACTS_IN","name":"Pornstar on Strike","type":"Role","_key":"103143","_from":"32324","_to":"60667"} +{"$label":"ACTS_IN","name":"Anne, Slave Girl - Scene 6","type":"Role","_key":"99579","_from":"32324","_to":"58694"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"93014","_from":"32324","_to":"54839"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"115120","_from":"32327","_to":"67789"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"95015","_from":"32328","_to":"55939"} +{"$label":"DIRECTED","_key":"109633","_from":"32332","_to":"64750"} +{"$label":"ACTS_IN","name":"Constanza","type":"Role","_key":"49384","_from":"32338","_to":"32335"} +{"$label":"ACTS_IN","name":"Marita","type":"Role","_key":"49382","_from":"32337","_to":"32335"} +{"$label":"ACTS_IN","name":"David Bourne","type":"Role","_key":"49378","_from":"32336","_to":"32335"} +{"$label":"ACTS_IN","name":"Charles Haden","type":"Role","_key":"114874","_from":"32336","_to":"67661"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"100408","_from":"32336","_to":"59211"} +{"$label":"ACTS_IN","name":"Wulfric","type":"Role","_key":"63873","_from":"32336","_to":"39910"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"100849","_from":"32337","_to":"59455"} +{"$label":"ACTS_IN","name":"Valeria","type":"Role","_key":"96031","_from":"32337","_to":"56448"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"89406","_from":"32337","_to":"52924"} +{"$label":"ACTS_IN","name":"Miss Maupassant","type":"Role","_key":"65434","_from":"32337","_to":"40563"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"51608","_from":"32337","_to":"33671"} +{"$label":"ACTS_IN","name":"Romy Bischoff","type":"Role","_key":"49387","_from":"32340","_to":"32339"} +{"$label":"DIRECTED","_key":"49394","_from":"32343","_to":"32341"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"49393","_from":"32342","_to":"32341"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"49404","_from":"32349","_to":"32344"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"49403","_from":"32348","_to":"32344"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"49402","_from":"32347","_to":"32344"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"49401","_from":"32346","_to":"32344"} +{"$label":"ACTS_IN","name":"Brother","type":"Role","_key":"49399","_from":"32345","_to":"32344"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"49416","_from":"32352","_to":"32350"} +{"$label":"ACTS_IN","name":"Leo Spitz","type":"Role","_key":"49415","_from":"32351","_to":"32350"} +{"$label":"ACTS_IN","name":"Delgado","type":"Role","_key":"116373","_from":"32351","_to":"68507"} +{"$label":"ACTS_IN","name":"Lupe La Rosa","type":"Role","_key":"97089","_from":"32351","_to":"57110"} +{"$label":"ACTS_IN","name":"Eduardo","type":"Role","_key":"90455","_from":"32351","_to":"53436"} +{"$label":"ACTS_IN","name":"Alison Bromley","type":"Role","_key":"121428","_from":"32352","_to":"71341"} +{"$label":"DIRECTED","_key":"49426","_from":"32359","_to":"32353"} +{"$label":"ACTS_IN","name":"Yakavetta","type":"Role","_key":"49424","_from":"32358","_to":"32353"} +{"$label":"ACTS_IN","name":"Detective Duffy","type":"Role","_key":"49422","_from":"32357","_to":"32353"} +{"$label":"ACTS_IN","name":"Detective Dolly","type":"Role","_key":"49421","_from":"32356","_to":"32353"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"49420","_from":"32355","_to":"32353"} +{"$label":"ACTS_IN","name":"Connor McManus","type":"Role","_key":"49419","_from":"32354","_to":"32353"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"121563","_from":"32354","_to":"71425"} +{"$label":"ACTS_IN","name":"Cole Thompson","type":"Role","_key":"119566","_from":"32354","_to":"70235"} +{"$label":"ACTS_IN","name":"Jake Greyman","type":"Role","_key":"118306","_from":"32354","_to":"69543"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"107811","_from":"32354","_to":"63672"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"102017","_from":"32354","_to":"60027"} +{"$label":"ACTS_IN","name":"Rick Hamilton","type":"Role","_key":"100492","_from":"32354","_to":"59260"} +{"$label":"ACTS_IN","name":"Jeremy 'Powder' Reed","type":"Role","_key":"90919","_from":"32354","_to":"53634"} +{"$label":"ACTS_IN","name":"Max Minot","type":"Role","_key":"64936","_from":"32354","_to":"40373"} +{"$label":"ACTS_IN","name":"Senator Mills","type":"Role","_key":"57690","_from":"32356","_to":"36513"} +{"$label":"ACTS_IN","name":"Vlad","type":"Role","_key":"49433","_from":"32364","_to":"32360"} +{"$label":"ACTS_IN","name":"Cristea","type":"Role","_key":"49432","_from":"32363","_to":"32360"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"49430","_from":"32362","_to":"32360"} +{"$label":"ACTS_IN","name":"L'Inspecteur","type":"Role","_key":"49429","_from":"32361","_to":"32360"} +{"$label":"ACTS_IN","name":"EDWARDS","type":"Role","_key":"121138","_from":"32363","_to":"71145"} +{"$label":"ACTS_IN","name":"Paxian Ru","type":"Role","_key":"110815","_from":"32363","_to":"65453"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"49441","_from":"32372","_to":"32365"} +{"$label":"ACTS_IN","name":"Graziela","type":"Role","_key":"49440","_from":"32371","_to":"32365"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"49439","_from":"32370","_to":"32365"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"49438","_from":"32369","_to":"32365"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"49437","_from":"32368","_to":"32365"} +{"$label":"ACTS_IN","name":"Andrei","type":"Role","_key":"49436","_from":"32367","_to":"32365"} +{"$label":"DIRECTED","_key":"49434","_from":"32366","_to":"32365"} +{"$label":"DIRECTED","_key":"49444","_from":"32375","_to":"32373"} +{"$label":"ACTS_IN","name":"Ice Kool","type":"Role","_key":"49443","_from":"32374","_to":"32373"} +{"$label":"ACTS_IN","name":"Chedda","type":"Role","_key":"94136","_from":"32374","_to":"55435"} +{"$label":"ACTS_IN","name":"Vet","type":"Role","_key":"60233","_from":"32374","_to":"37994"} +{"$label":"ACTS_IN","name":"Dr. Goodspeed","type":"Role","_key":"58254","_from":"32374","_to":"36839"} +{"$label":"DIRECTED","_key":"102177","_from":"32375","_to":"60129"} +{"$label":"DIRECTED","_key":"96093","_from":"32375","_to":"56483"} +{"$label":"ACTS_IN","name":"Isolde","type":"Role","_key":"49449","_from":"32381","_to":"32376"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"49448","_from":"32380","_to":"32376"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"49447","_from":"32379","_to":"32376"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"49446","_from":"32378","_to":"32376"} +{"$label":"DIRECTED","_key":"49445","_from":"32377","_to":"32376"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"49459","_from":"32387","_to":"32384"} +{"$label":"ACTS_IN","name":"Musikband","type":"Role","_key":"49458","_from":"32386","_to":"32384"} +{"$label":"ACTS_IN","name":"Jamal King","type":"Role","_key":"49451","_from":"32385","_to":"32384"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68791","_from":"32385","_to":"42147"} +{"$label":"DIRECTED","_key":"49465","_from":"32392","_to":"32388"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"49464","_from":"32391","_to":"32388"} +{"$label":"ACTS_IN","name":"k.A.","type":"Role","_key":"49463","_from":"32390","_to":"32388"} +{"$label":"ACTS_IN","name":"Bone Conn","type":"Role","_key":"49462","_from":"32389","_to":"32388"} +{"$label":"ACTS_IN","name":"Silent Movie Actress","type":"Role","_key":"49481","_from":"32397","_to":"32393"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"49479","_from":"32396","_to":"32393"} +{"$label":"ACTS_IN","name":"Rodrigo","type":"Role","_key":"49470","_from":"32395","_to":"32393"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"49469","_from":"32394","_to":"32393"} +{"$label":"ACTS_IN","name":"Shower Girl","type":"Role","_key":"101401","_from":"32397","_to":"59681"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"95137","_from":"32397","_to":"55981"} +{"$label":"ACTS_IN","name":"Body Double","type":"Role","_key":"90901","_from":"32397","_to":"53624"} +{"$label":"ACTS_IN","name":"Girl #3 in Bathroom","type":"Role","_key":"70268","_from":"32397","_to":"42814"} +{"$label":"ACTS_IN","name":"Girlfriend","type":"Role","_key":"67444","_from":"32397","_to":"41533"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"58291","_from":"32397","_to":"36857"} +{"$label":"DIRECTED","_key":"49494","_from":"32400","_to":"32398"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"49490","_from":"32399","_to":"32398"} +{"$label":"ACTS_IN","name":"Samantha Pierce","type":"Role","_key":"116885","_from":"32399","_to":"68813"} +{"$label":"ACTS_IN","name":"Susan Shine Wright","type":"Role","_key":"109115","_from":"32399","_to":"64469"} +{"$label":"ACTS_IN","name":"Boris' Friend #1","type":"Role","_key":"119431","_from":"32400","_to":"70168"} +{"$label":"DIRECTED","_key":"117749","_from":"32400","_to":"69222"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"49496","_from":"32403","_to":"32401"} +{"$label":"ACTS_IN","name":"Camille Baker","type":"Role","_key":"49495","_from":"32402","_to":"32401"} +{"$label":"ACTS_IN","name":"Kanta no ob\u00e2san","type":"Role","_key":"49506","_from":"32409","_to":"32404"} +{"$label":"ACTS_IN","name":"Tatsuo Kusakabe","type":"Role","_key":"49504","_from":"32408","_to":"32404"} +{"$label":"ACTS_IN","name":"Mei","type":"Role","_key":"49503","_from":"32407","_to":"32404"} +{"$label":"ACTS_IN","name":"Totoro","type":"Role","_key":"49502","_from":"32406","_to":"32404"} +{"$label":"ACTS_IN","name":"Satsuki","type":"Role","_key":"49501","_from":"32405","_to":"32404"} +{"$label":"ACTS_IN","name":"Sam Boga","type":"Role","_key":"49512","_from":"32415","_to":"32410"} +{"$label":"ACTS_IN","name":"Kate Thompson","type":"Role","_key":"49511","_from":"32414","_to":"32410"} +{"$label":"ACTS_IN","name":"Mpudi","type":"Role","_key":"49509","_from":"32413","_to":"32410"} +{"$label":"ACTS_IN","name":"Xixo","type":"Role","_key":"49508","_from":"32412","_to":"32410"} +{"$label":"DIRECTED","_key":"49507","_from":"32411","_to":"32410"} +{"$label":"DIRECTED","_key":"72851","_from":"32411","_to":"43878"} +{"$label":"DIRECTED","_key":"68699","_from":"32411","_to":"42095"} +{"$label":"ACTS_IN","name":"Xixo","type":"Role","_key":"72850","_from":"32412","_to":"43878"} +{"$label":"DIRECTED","_key":"49513","_from":"32417","_to":"32416"} +{"$label":"ACTS_IN","name":"Officer Edwards","type":"Role","_key":"49520","_from":"32423","_to":"32418"} +{"$label":"ACTS_IN","name":"Takstellen Angestellter","type":"Role","_key":"49519","_from":"32422","_to":"32418"} +{"$label":"ACTS_IN","name":"Jim Halsey","type":"Role","_key":"49517","_from":"32421","_to":"32418"} +{"$label":"ACTS_IN","name":"Grace Andrews","type":"Role","_key":"49516","_from":"32420","_to":"32418"} +{"$label":"DIRECTED","_key":"49514","_from":"32419","_to":"32418"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"119335","_from":"32420","_to":"70120"} +{"$label":"ACTS_IN","name":"Zoe Lang","type":"Role","_key":"111456","_from":"32420","_to":"65807"} +{"$label":"ACTS_IN","name":"October","type":"Role","_key":"60208","_from":"32420","_to":"37980"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"52942","_from":"32420","_to":"34304"} +{"$label":"ACTS_IN","name":"Brillo Murphy","type":"Role","_key":"97088","_from":"32421","_to":"57110"} +{"$label":"DIRECTED","_key":"49521","_from":"32425","_to":"32424"} +{"$label":"ACTS_IN","name":"Bub","type":"Role","_key":"49529","_from":"32433","_to":"32426"} +{"$label":"ACTS_IN","name":"Dr. Logan","type":"Role","_key":"49528","_from":"32432","_to":"32426"} +{"$label":"ACTS_IN","name":"Pvt. Miguel Salazar","type":"Role","_key":"49527","_from":"32431","_to":"32426"} +{"$label":"ACTS_IN","name":"William McDermott","type":"Role","_key":"49526","_from":"32430","_to":"32426"} +{"$label":"ACTS_IN","name":"Captain Rhodes","type":"Role","_key":"49525","_from":"32429","_to":"32426"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"49524","_from":"32428","_to":"32426"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"49523","_from":"32427","_to":"32426"} +{"$label":"ACTS_IN","name":"Victor Manning","type":"Role","_key":"119990","_from":"32433","_to":"70466"} +{"$label":"ACTS_IN","name":"Dr. Dietz","type":"Role","_key":"94994","_from":"32433","_to":"55928"} +{"$label":"ACTS_IN","name":"Pomona Joe","type":"Role","_key":"49538","_from":"32436","_to":"32434"} +{"$label":"ACTS_IN","name":"Memo Lucero","type":"Role","_key":"49534","_from":"32435","_to":"32434"} +{"$label":"ACTS_IN","name":"Tate","type":"Role","_key":"121686","_from":"32436","_to":"71490"} +{"$label":"ACTS_IN","name":"Redding","type":"Role","_key":"56864","_from":"32436","_to":"36099"} +{"$label":"ACTS_IN","name":"Mathematician","type":"Role","_key":"49549","_from":"32445","_to":"32437"} +{"$label":"ACTS_IN","name":"Mathematician","type":"Role","_key":"49548","_from":"32444","_to":"32437"} +{"$label":"ACTS_IN","name":"Mathematician","type":"Role","_key":"49547","_from":"32443","_to":"32437"} +{"$label":"ACTS_IN","name":"Astronaut pilot","type":"Role","_key":"49546","_from":"32442","_to":"32437"} +{"$label":"ACTS_IN","name":"Astronaut biochemist","type":"Role","_key":"49545","_from":"32441","_to":"32437"} +{"$label":"ACTS_IN","name":"Astronaut Plasma Physicist","type":"Role","_key":"49544","_from":"32440","_to":"32437"} +{"$label":"ACTS_IN","name":"Astronaut physician","type":"Role","_key":"49543","_from":"32439","_to":"32437"} +{"$label":"ACTS_IN","name":"Astronaut Commander","type":"Role","_key":"49542","_from":"32438","_to":"32437"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"49555","_from":"32448","_to":"32447"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"119744","_from":"32448","_to":"70316"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"111507","_from":"32448","_to":"65841"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"107607","_from":"32448","_to":"63522"} +{"$label":"ACTS_IN","name":"Summer G","type":"Role","_key":"103390","_from":"32448","_to":"60821"} +{"$label":"ACTS_IN","name":"Mann im Restaurant","type":"Role","_key":"49565","_from":"32455","_to":"32449"} +{"$label":"ACTS_IN","name":"Frau im Restaurant","type":"Role","_key":"49564","_from":"32454","_to":"32449"} +{"$label":"ACTS_IN","name":"Kellnerin","type":"Role","_key":"49563","_from":"32453","_to":"32449"} +{"$label":"ACTS_IN","name":"Maitre","type":"Role","_key":"49562","_from":"32452","_to":"32449"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"49561","_from":"32451","_to":"32449"} +{"$label":"ACTS_IN","name":"Robert Peders","type":"Role","_key":"49560","_from":"32450","_to":"32449"} +{"$label":"ACTS_IN","name":"Mr. Herrell","type":"Role","_key":"56839","_from":"32450","_to":"36088"} +{"$label":"ACTS_IN","name":"Madre di Giulia","type":"Role","_key":"49579","_from":"32459","_to":"32457"} +{"$label":"ACTS_IN","name":"Professor Quadri","type":"Role","_key":"49575","_from":"32458","_to":"32457"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"72247","_from":"32458","_to":"43650"} +{"$label":"ACTS_IN","name":"Dorothea Sturm","type":"Role","_key":"49584","_from":"32462","_to":"32460"} +{"$label":"DIRECTED","_key":"49580","_from":"32461","_to":"32460"} +{"$label":"DIRECTED","_key":"49586","_from":"32461","_to":"32463"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"49588","_from":"32462","_to":"32463"} +{"$label":"ACTS_IN","name":"K\u00f6nig Friedrich Wilhelm III.","type":"Role","_key":"49592","_from":"32465","_to":"32463"} +{"$label":"ACTS_IN","name":"Gneisenau","type":"Role","_key":"49589","_from":"32464","_to":"32463"} +{"$label":"ACTS_IN","name":"Mans.","type":"Role","_key":"49602","_from":"32468","_to":"32466"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"49596","_from":"32467","_to":"32466"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"91514","_from":"32468","_to":"53947"} +{"$label":"ACTS_IN","name":"Lucienne","type":"Role","_key":"49611","_from":"32471","_to":"32469"} +{"$label":"ACTS_IN","name":"Mme Vigier-Lefranc","type":"Role","_key":"49610","_from":"32470","_to":"32469"} +{"$label":"DIRECTED","_key":"49613","_from":"32474","_to":"32472"} +{"$label":"DIRECTED","_key":"49612","_from":"32473","_to":"32472"} +{"$label":"ACTS_IN","name":"Luca Parondi","type":"Role","_key":"49621","_from":"32477","_to":"32475"} +{"$label":"ACTS_IN","name":"Rosaria Parondi","type":"Role","_key":"49619","_from":"32476","_to":"32475"} +{"$label":"ACTS_IN","name":"Vater Pasquale","type":"Role","_key":"49631","_from":"32480","_to":"32478"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"49626","_from":"32479","_to":"32478"} +{"$label":"ACTS_IN","name":"Elisabeth Landauer","type":"Role","_key":"109227","_from":"32479","_to":"64531"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"88062","_from":"32479","_to":"52271"} +{"$label":"ACTS_IN","name":"Alice Lenz","type":"Role","_key":"66023","_from":"32479","_to":"40855"} +{"$label":"ACTS_IN","name":"Julien \u00e0 8 ans","type":"Role","_key":"49641","_from":"32487","_to":"32481"} +{"$label":"ACTS_IN","name":"M\u00e8re de Julien","type":"Role","_key":"49640","_from":"32486","_to":"32481"} +{"$label":"ACTS_IN","name":"Dorzac","type":"Role","_key":"49638","_from":"32485","_to":"32481"} +{"$label":"ACTS_IN","name":"Clothilde","type":"Role","_key":"49637","_from":"32484","_to":"32481"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"49636","_from":"32483","_to":"32481"} +{"$label":"DIRECTED","_key":"49633","_from":"32482","_to":"32481"} +{"$label":"DIRECTED","_key":"99002","_from":"32482","_to":"58325"} +{"$label":"ACTS_IN","name":"Petite Fille","type":"Role","_key":"49652","_from":"32491","_to":"32488"} +{"$label":"ACTS_IN","name":"Janine Boitard","type":"Role","_key":"49650","_from":"32490","_to":"32488"} +{"$label":"ACTS_IN","name":"Costes","type":"Role","_key":"49649","_from":"32489","_to":"32488"} +{"$label":"DIRECTED","_key":"49657","_from":"32496","_to":"32492"} +{"$label":"ACTS_IN","name":"Ryou Ryank","type":"Role","_key":"49655","_from":"32495","_to":"32492"} +{"$label":"ACTS_IN","name":"Feihong","type":"Role","_key":"49654","_from":"32494","_to":"32492"} +{"$label":"ACTS_IN","name":"Glico","type":"Role","_key":"49653","_from":"32493","_to":"32492"} +{"$label":"DIRECTED","_key":"109785","_from":"32496","_to":"64849"} +{"$label":"DIRECTED","_key":"90346","_from":"32496","_to":"53397"} +{"$label":"ACTS_IN","name":"Lieutenant Percy","type":"Role","_key":"49663","_from":"32499","_to":"32497"} +{"$label":"ACTS_IN","name":"Lunchbox","type":"Role","_key":"49661","_from":"32498","_to":"32497"} +{"$label":"ACTS_IN","name":"Singing Groom","type":"Role","_key":"102116","_from":"32498","_to":"60066"} +{"$label":"ACTS_IN","name":"David Deaver","type":"Role","_key":"49677","_from":"32505","_to":"32500"} +{"$label":"ACTS_IN","name":"Mr. Woodward","type":"Role","_key":"49670","_from":"32504","_to":"32500"} +{"$label":"ACTS_IN","name":"Paige Woodward","type":"Role","_key":"49669","_from":"32503","_to":"32500"} +{"$label":"ACTS_IN","name":"Luis Chavez","type":"Role","_key":"49668","_from":"32502","_to":"32500"} +{"$label":"DIRECTED","_key":"49665","_from":"32501","_to":"32500"} +{"$label":"DIRECTED","_key":"99286","_from":"32501","_to":"58508"} +{"$label":"DIRECTED","_key":"95073","_from":"32501","_to":"55962"} +{"$label":"ACTS_IN","name":"Wilson Turner","type":"Role","_key":"120121","_from":"32505","_to":"70546"} +{"$label":"ACTS_IN","name":"German soldier","type":"Role","_key":"49696","_from":"32522","_to":"32506"} +{"$label":"ACTS_IN","name":"Dale","type":"Role","_key":"49695","_from":"32521","_to":"32506"} +{"$label":"ACTS_IN","name":"Massimo","type":"Role","_key":"49693","_from":"32520","_to":"32506"} +{"$label":"ACTS_IN","name":"Harriet, the nurse","type":"Role","_key":"49692","_from":"32519","_to":"32506"} +{"$label":"ACTS_IN","name":"Fred, an American soldier","type":"Role","_key":"49691","_from":"32518","_to":"32506"} +{"$label":"ACTS_IN","name":"Pasquale","type":"Role","_key":"49689","_from":"32517","_to":"32506"} +{"$label":"ACTS_IN","name":"American MP","type":"Role","_key":"49688","_from":"32516","_to":"32506"} +{"$label":"ACTS_IN","name":"An American soldier","type":"Role","_key":"49687","_from":"32515","_to":"32506"} +{"$label":"ACTS_IN","name":"Swede, an American soldier","type":"Role","_key":"49686","_from":"32514","_to":"32506"} +{"$label":"ACTS_IN","name":"Merlin, American Soldier","type":"Role","_key":"49685","_from":"32513","_to":"32506"} +{"$label":"ACTS_IN","name":"German soldier","type":"Role","_key":"49684","_from":"32512","_to":"32506"} +{"$label":"ACTS_IN","name":"Harry, a German soldier","type":"Role","_key":"49683","_from":"32511","_to":"32506"} +{"$label":"ACTS_IN","name":"American Soldier","type":"Role","_key":"49682","_from":"32510","_to":"32506"} +{"$label":"ACTS_IN","name":"American Soldier","type":"Role","_key":"49681","_from":"32509","_to":"32506"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"49680","_from":"32508","_to":"32506"} +{"$label":"ACTS_IN","name":"Carmela","type":"Role","_key":"49679","_from":"32507","_to":"32506"} +{"$label":"ACTS_IN","name":"Thomasina Paine","type":"Role","_key":"93706","_from":"32519","_to":"55160"} +{"$label":"ACTS_IN","name":"Maria Magdalena","type":"Role","_key":"49705","_from":"32529","_to":"32523"} +{"$label":"ACTS_IN","name":"Re Saul","type":"Role","_key":"49703","_from":"32528","_to":"32523"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"49701","_from":"32527","_to":"32523"} +{"$label":"ACTS_IN","name":"Giovanni Battista","type":"Role","_key":"49700","_from":"32526","_to":"32523"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"49699","_from":"32525","_to":"32523"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"49698","_from":"32524","_to":"32523"} +{"$label":"ACTS_IN","name":"Sanuel","type":"Role","_key":"49725","_from":"32537","_to":"32530"} +{"$label":"ACTS_IN","name":"Mme Davy","type":"Role","_key":"49724","_from":"32536","_to":"32530"} +{"$label":"ACTS_IN","name":"Dr. Davy","type":"Role","_key":"49723","_from":"32535","_to":"32530"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"49722","_from":"32534","_to":"32530"} +{"$label":"ACTS_IN","name":"l'homme au parasol","type":"Role","_key":"49721","_from":"32533","_to":"32530"} +{"$label":"ACTS_IN","name":"Rena-Nanou","type":"Role","_key":"49720","_from":"32532","_to":"32530"} +{"$label":"ACTS_IN","name":"Maxime","type":"Role","_key":"49713","_from":"32531","_to":"32530"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"119458","_from":"32531","_to":"70178"} +{"$label":"ACTS_IN","name":"Mathieu Lacaze","type":"Role","_key":"96139","_from":"32531","_to":"56505"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"59124","_from":"32534","_to":"37311"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"114218","_from":"32535","_to":"67274"} +{"$label":"ACTS_IN","name":"Camille B\u00e9rang\u00e8re","type":"Role","_key":"63837","_from":"32535","_to":"39902"} +{"$label":"ACTS_IN","name":"Lindsey","type":"Role","_key":"49735","_from":"32542","_to":"32538"} +{"$label":"ACTS_IN","name":"Tristam Shandy, 9 years","type":"Role","_key":"49732","_from":"32541","_to":"32538"} +{"$label":"ACTS_IN","name":"Tristam Shandy 6 years","type":"Role","_key":"49731","_from":"32540","_to":"32538"} +{"$label":"ACTS_IN","name":"Capt. Toby Shandy","type":"Role","_key":"49728","_from":"32539","_to":"32538"} +{"$label":"ACTS_IN","name":"Morris Campbell \/ Prime Minister","type":"Role","_key":"100610","_from":"32539","_to":"59326"} +{"$label":"ACTS_IN","name":"Phlegma the Fierce","type":"Role","_key":"61581","_from":"32542","_to":"38816"} +{"$label":"DIRECTED","_key":"49749","_from":"32549","_to":"32543"} +{"$label":"DIRECTED","_key":"49748","_from":"32548","_to":"32543"} +{"$label":"ACTS_IN","name":"Werker","type":"Role","_key":"49747","_from":"32547","_to":"32543"} +{"$label":"ACTS_IN","name":"Tristan Fouch\u00e9court","type":"Role","_key":"49746","_from":"32546","_to":"32543"} +{"$label":"ACTS_IN","name":"Madame Prouvost","type":"Role","_key":"49743","_from":"32545","_to":"32543"} +{"$label":"ACTS_IN","name":"Laurent","type":"Role","_key":"49742","_from":"32544","_to":"32543"} +{"$label":"ACTS_IN","name":"Maryse","type":"Role","_key":"104023","_from":"32545","_to":"61197"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"103332","_from":"32545","_to":"60786"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"96109","_from":"32545","_to":"56487"} +{"$label":"DIRECTED","_key":"49763","_from":"32562","_to":"32550"} +{"$label":"DIRECTED","_key":"49762","_from":"32561","_to":"32550"} +{"$label":"ACTS_IN","name":"Anmachertyp","type":"Role","_key":"49761","_from":"32560","_to":"32550"} +{"$label":"ACTS_IN","name":"Standesbeamtin","type":"Role","_key":"49760","_from":"32559","_to":"32550"} +{"$label":"ACTS_IN","name":"Arztkollege","type":"Role","_key":"49759","_from":"32558","_to":"32550"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"49758","_from":"32557","_to":"32550"} +{"$label":"ACTS_IN","name":"Ahmed","type":"Role","_key":"49757","_from":"32556","_to":"32550"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"49756","_from":"32555","_to":"32550"} +{"$label":"ACTS_IN","name":"Tinka","type":"Role","_key":"49755","_from":"32554","_to":"32550"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"49754","_from":"32553","_to":"32550"} +{"$label":"ACTS_IN","name":"Sa\u00efda","type":"Role","_key":"49752","_from":"32552","_to":"32550"} +{"$label":"ACTS_IN","name":"Hendrik","type":"Role","_key":"49751","_from":"32551","_to":"32550"} +{"$label":"DIRECTED","_key":"49764","_from":"32564","_to":"32563"} +{"$label":"DIRECTED","_key":"113790","_from":"32564","_to":"67043"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"49779","_from":"32570","_to":"32565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"49778","_from":"32569","_to":"32565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"49777","_from":"32568","_to":"32565"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"49776","_from":"32567","_to":"32565"} +{"$label":"DIRECTED","_key":"49775","_from":"32566","_to":"32565"} +{"$label":"ACTS_IN","name":"Fuinha","type":"Role","_key":"49800","_from":"32587","_to":"32571"} +{"$label":"ACTS_IN","name":"Lula","type":"Role","_key":"49799","_from":"32586","_to":"32571"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"49797","_from":"32585","_to":"32571"} +{"$label":"ACTS_IN","name":"C\u00e9lia","type":"Role","_key":"49796","_from":"32584","_to":"32571"} +{"$label":"ACTS_IN","name":"Claudiomiro","type":"Role","_key":"49795","_from":"32583","_to":"32571"} +{"$label":"ACTS_IN","name":"Ant\u00f4nio Carlos","type":"Role","_key":"49794","_from":"32582","_to":"32571"} +{"$label":"ACTS_IN","name":"Francineide","type":"Role","_key":"49793","_from":"32581","_to":"32571"} +{"$label":"ACTS_IN","name":"Catarina","type":"Role","_key":"49792","_from":"32580","_to":"32571"} +{"$label":"ACTS_IN","name":"Deusdete","type":"Role","_key":"49790","_from":"32579","_to":"32571"} +{"$label":"ACTS_IN","name":"Ezequiel","type":"Role","_key":"49789","_from":"32578","_to":"32571"} +{"$label":"ACTS_IN","name":"No Way","type":"Role","_key":"49788","_from":"32577","_to":"32571"} +{"$label":"ACTS_IN","name":"Rosirene","type":"Role","_key":"49786","_from":"32576","_to":"32571"} +{"$label":"ACTS_IN","name":"Dalva","type":"Role","_key":"49785","_from":"32575","_to":"32571"} +{"$label":"ACTS_IN","name":"Majestad","type":"Role","_key":"49784","_from":"32574","_to":"32571"} +{"$label":"ACTS_IN","name":"Ebony","type":"Role","_key":"49783","_from":"32573","_to":"32571"} +{"$label":"ACTS_IN","name":"Physician","type":"Role","_key":"49781","_from":"32572","_to":"32571"} +{"$label":"ACTS_IN","name":"Malu","type":"Role","_key":"49825","_from":"32575","_to":"32604"} +{"$label":"ACTS_IN","name":"Deco","type":"Role","_key":"49832","_from":"32578","_to":"32617"} +{"$label":"ACTS_IN","name":"Marc\u00e3o","type":"Role","_key":"49807","_from":"32578","_to":"32588"} +{"$label":"ACTS_IN","name":"Zilmar","type":"Role","_key":"49817","_from":"32603","_to":"32588"} +{"$label":"ACTS_IN","name":"S\u00edlvio","type":"Role","_key":"49816","_from":"32602","_to":"32588"} +{"$label":"ACTS_IN","name":"Gonzaga","type":"Role","_key":"49815","_from":"32601","_to":"32588"} +{"$label":"ACTS_IN","name":"Gabriela","type":"Role","_key":"49814","_from":"32600","_to":"32588"} +{"$label":"ACTS_IN","name":"Gabriela","type":"Role","_key":"49813","_from":"32599","_to":"32588"} +{"$label":"ACTS_IN","name":"delegado Santana","type":"Role","_key":"49812","_from":"32598","_to":"32588"} +{"$label":"ACTS_IN","name":"Marl\u00eanio","type":"Role","_key":"49811","_from":"32597","_to":"32588"} +{"$label":"ACTS_IN","name":"Enoque","type":"Role","_key":"49809","_from":"32596","_to":"32588"} +{"$label":"ACTS_IN","name":"Robinson","type":"Role","_key":"49808","_from":"32595","_to":"32588"} +{"$label":"ACTS_IN","name":"Galego","type":"Role","_key":"49806","_from":"32594","_to":"32588"} +{"$label":"ACTS_IN","name":"dr. Carvalho","type":"Role","_key":"49805","_from":"32593","_to":"32588"} +{"$label":"ACTS_IN","name":"\u00c9rica","type":"Role","_key":"49804","_from":"32592","_to":"32588"} +{"$label":"ACTS_IN","name":"Cledir","type":"Role","_key":"49803","_from":"32591","_to":"32588"} +{"$label":"ACTS_IN","name":"M\u00e1iquel","type":"Role","_key":"49802","_from":"32590","_to":"32588"} +{"$label":"DIRECTED","_key":"49801","_from":"32589","_to":"32588"} +{"$label":"ACTS_IN","name":"Toninho Oliveira","type":"Role","_key":"101196","_from":"32590","_to":"59608"} +{"$label":"ACTS_IN","name":"Dr. Miguel Ornega","type":"Role","_key":"52530","_from":"32602","_to":"34154"} +{"$label":"ACTS_IN","name":"Fernando - jovem","type":"Role","_key":"49830","_from":"32616","_to":"32604"} +{"$label":"ACTS_IN","name":"Diretor de cinema","type":"Role","_key":"49829","_from":"32615","_to":"32604"} +{"$label":"ACTS_IN","name":"Comiss\u00e1rio","type":"Role","_key":"49828","_from":"32614","_to":"32604"} +{"$label":"ACTS_IN","name":"Atriz de TV","type":"Role","_key":"49827","_from":"32613","_to":"32604"} +{"$label":"ACTS_IN","name":"Advogado","type":"Role","_key":"49826","_from":"32612","_to":"32604"} +{"$label":"ACTS_IN","name":"Ana Luc\u00eda","type":"Role","_key":"49824","_from":"32611","_to":"32604"} +{"$label":"ACTS_IN","name":"Lobato","type":"Role","_key":"49823","_from":"32610","_to":"32604"} +{"$label":"ACTS_IN","name":"Cafu","type":"Role","_key":"49822","_from":"32609","_to":"32604"} +{"$label":"ACTS_IN","name":"Iracema","type":"Role","_key":"49821","_from":"32608","_to":"32604"} +{"$label":"ACTS_IN","name":"Cida","type":"Role","_key":"49820","_from":"32607","_to":"32604"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"49819","_from":"32606","_to":"32604"} +{"$label":"DIRECTED","_key":"49818","_from":"32605","_to":"32604"} +{"$label":"ACTS_IN","name":"Coelho","type":"Role","_key":"89458","_from":"32614","_to":"52964"} +{"$label":"DIRECTED","_key":"49841","_from":"32625","_to":"32617"} +{"$label":"ACTS_IN","name":"Dois Mundos","type":"Role","_key":"49840","_from":"32624","_to":"32617"} +{"$label":"ACTS_IN","name":"Sergipano","type":"Role","_key":"49839","_from":"32623","_to":"32617"} +{"$label":"ACTS_IN","name":"Zil\u00fa","type":"Role","_key":"49838","_from":"32622","_to":"32617"} +{"$label":"ACTS_IN","name":"Sirlene","type":"Role","_key":"49837","_from":"32621","_to":"32617"} +{"$label":"ACTS_IN","name":"Edvan","type":"Role","_key":"49836","_from":"32620","_to":"32617"} +{"$label":"ACTS_IN","name":"Luzinete","type":"Role","_key":"49835","_from":"32619","_to":"32617"} +{"$label":"ACTS_IN","name":"Careca","type":"Role","_key":"49834","_from":"32618","_to":"32617"} +{"$label":"ACTS_IN","name":"Gilvan","type":"Role","_key":"49850","_from":"32634","_to":"32626"} +{"$label":"ACTS_IN","name":"Jailto","type":"Role","_key":"49849","_from":"32633","_to":"32626"} +{"$label":"ACTS_IN","name":"Cida","type":"Role","_key":"49848","_from":"32632","_to":"32626"} +{"$label":"ACTS_IN","name":"Quit\u00e9ria","type":"Role","_key":"49847","_from":"32631","_to":"32626"} +{"$label":"ACTS_IN","name":"Cr\u00e9o","type":"Role","_key":"49846","_from":"32630","_to":"32626"} +{"$label":"ACTS_IN","name":"Roxane","type":"Role","_key":"49845","_from":"32629","_to":"32626"} +{"$label":"ACTS_IN","name":"Raimunda","type":"Role","_key":"49844","_from":"32628","_to":"32626"} +{"$label":"DIRECTED","_key":"49842","_from":"32627","_to":"32626"} +{"$label":"ACTS_IN","name":"Borgm\u00e4starinnan","type":"Role","_key":"49859","_from":"32643","_to":"32635"} +{"$label":"ACTS_IN","name":"Fru Nilsson","type":"Role","_key":"49857","_from":"32642","_to":"32635"} +{"$label":"ACTS_IN","name":"Alva","type":"Role","_key":"49856","_from":"32641","_to":"32635"} +{"$label":"ACTS_IN","name":"Pappan","type":"Role","_key":"49855","_from":"32640","_to":"32635"} +{"$label":"ACTS_IN","name":"Mamman","type":"Role","_key":"49854","_from":"32639","_to":"32635"} +{"$label":"ACTS_IN","name":"Lisabet","type":"Role","_key":"49853","_from":"32638","_to":"32635"} +{"$label":"ACTS_IN","name":"Madicken","type":"Role","_key":"49852","_from":"32637","_to":"32635"} +{"$label":"DIRECTED","_key":"49851","_from":"32636","_to":"32635"} +{"$label":"ACTS_IN","name":"Morell","type":"Role","_key":"104555","_from":"32640","_to":"61500"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"68329","_from":"32640","_to":"41937"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"111078","_from":"32642","_to":"65612"} +{"$label":"ACTS_IN","name":"Fat Sam","type":"Role","_key":"49864","_from":"32647","_to":"32644"} +{"$label":"ACTS_IN","name":"Dandy Dan","type":"Role","_key":"49863","_from":"32646","_to":"32644"} +{"$label":"ACTS_IN","name":"Blousey Brown","type":"Role","_key":"49861","_from":"32645","_to":"32644"} +{"$label":"DIRECTED","_key":"49869","_from":"32649","_to":"32648"} +{"$label":"ACTS_IN","name":"Talia Elsworth","type":"Role","_key":"49874","_from":"32651","_to":"32650"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"102368","_from":"32651","_to":"60234"} +{"$label":"ACTS_IN","name":"Daisy Adair","type":"Role","_key":"102063","_from":"32651","_to":"60045"} +{"$label":"ACTS_IN","name":"Claire Van Owen","type":"Role","_key":"62919","_from":"32651","_to":"39521"} +{"$label":"ACTS_IN","name":"Bobo","type":"Role","_key":"49891","_from":"32663","_to":"32652"} +{"$label":"ACTS_IN","name":"Rehan","type":"Role","_key":"49890","_from":"32662","_to":"32652"} +{"$label":"ACTS_IN","name":"Balwant","type":"Role","_key":"49889","_from":"32661","_to":"32652"} +{"$label":"ACTS_IN","name":"Jaspal Bhatti","type":"Role","_key":"49888","_from":"32660","_to":"32652"} +{"$label":"ACTS_IN","name":"Fatima","type":"Role","_key":"49887","_from":"32659","_to":"32652"} +{"$label":"ACTS_IN","name":"Anti-Terrorist Official Rahul Rawat","type":"Role","_key":"49886","_from":"32658","_to":"32652"} +{"$label":"ACTS_IN","name":"Rubeina","type":"Role","_key":"49885","_from":"32657","_to":"32652"} +{"$label":"ACTS_IN","name":"Shiney Ahuja","type":"Role","_key":"49884","_from":"32656","_to":"32652"} +{"$label":"ACTS_IN","name":"Zeenat","type":"Role","_key":"49883","_from":"32655","_to":"32652"} +{"$label":"ACTS_IN","name":"Nafisa Ali Begum","type":"Role","_key":"49882","_from":"32654","_to":"32652"} +{"$label":"ACTS_IN","name":"Zooni Ali Beg","type":"Role","_key":"49879","_from":"32653","_to":"32652"} +{"$label":"ACTS_IN","name":"Priya Chopra","type":"Role","_key":"120744","_from":"32653","_to":"70928"} +{"$label":"ACTS_IN","name":"Simran Singh","type":"Role","_key":"120045","_from":"32653","_to":"70499"} +{"$label":"ACTS_IN","name":"Item Number","type":"Role","_key":"100014","_from":"32653","_to":"59002"} +{"$label":"ACTS_IN","name":"Anjali Sharma Khanna","type":"Role","_key":"72399","_from":"32653","_to":"43712"} +{"$label":"ACTS_IN","name":"Anjali Sharma","type":"Role","_key":"65504","_from":"32653","_to":"40603"} +{"$label":"ACTS_IN","name":"Ashima Ganguli","type":"Role","_key":"109956","_from":"32654","_to":"64968"} +{"$label":"ACTS_IN","name":"Nina Verma","type":"Role","_key":"109562","_from":"32654","_to":"64715"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"98660","_from":"32654","_to":"58139"} +{"$label":"ACTS_IN","name":"Billu's Wife","type":"Role","_key":"108807","_from":"32655","_to":"64308"} +{"$label":"ACTS_IN","name":"Siddharth Chaturvedi\/Raja Vibhuti Narayan","type":"Role","_key":"118497","_from":"32656","_to":"69661"} +{"$label":"ACTS_IN","name":"Babloo Pachisia","type":"Role","_key":"100739","_from":"32658","_to":"59389"} +{"$label":"ACTS_IN","name":"The House Servent","type":"Role","_key":"120886","_from":"32661","_to":"70976"} +{"$label":"ACTS_IN","name":"Anthony Gonsalves","type":"Role","_key":"100738","_from":"32661","_to":"59389"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"49903","_from":"32672","_to":"32664"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"49902","_from":"32671","_to":"32664"} +{"$label":"ACTS_IN","name":"Charlie Tyler","type":"Role","_key":"49901","_from":"32670","_to":"32664"} +{"$label":"ACTS_IN","name":"Max Cooperman","type":"Role","_key":"49900","_from":"32669","_to":"32664"} +{"$label":"ACTS_IN","name":"Margot Tyler","type":"Role","_key":"49899","_from":"32668","_to":"32664"} +{"$label":"ACTS_IN","name":"Ryan McCarthy","type":"Role","_key":"49898","_from":"32667","_to":"32664"} +{"$label":"ACTS_IN","name":"Jake Tyler","type":"Role","_key":"49896","_from":"32666","_to":"32664"} +{"$label":"DIRECTED","_key":"49894","_from":"32665","_to":"32664"} +{"$label":"DIRECTED","_key":"60576","_from":"32665","_to":"38237"} +{"$label":"ACTS_IN","name":"William Beardsley","type":"Role","_key":"94858","_from":"32666","_to":"55856"} +{"$label":"ACTS_IN","name":"Steve Phillips","type":"Role","_key":"57653","_from":"32666","_to":"36500"} +{"$label":"ACTS_IN","name":"Gallo","type":"Role","_key":"121372","_from":"32667","_to":"71326"} +{"$label":"ACTS_IN","name":"Mark Hardigan","type":"Role","_key":"96644","_from":"32667","_to":"56839"} +{"$label":"ACTS_IN","name":"Susan Wilkins","type":"Role","_key":"61385","_from":"32668","_to":"38727"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"61129","_from":"32668","_to":"38638"} +{"$label":"ACTS_IN","name":"Charisse Darrow","type":"Role","_key":"59998","_from":"32668","_to":"37868"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"57658","_from":"32669","_to":"36500"} +{"$label":"ACTS_IN","name":"Boy in Crowd","type":"Role","_key":"96501","_from":"32670","_to":"56725"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"65565","_from":"32672","_to":"40629"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"49912","_from":"32677","_to":"32673"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"49911","_from":"32676","_to":"32673"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"49909","_from":"32675","_to":"32673"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"49906","_from":"32674","_to":"32673"} +{"$label":"ACTS_IN","name":"Will Stanton","type":"Role","_key":"115112","_from":"32677","_to":"67789"} +{"$label":"ACTS_IN","name":"Caucasian Crackhead","type":"Role","_key":"110751","_from":"32677","_to":"65426"} +{"$label":"ACTS_IN","name":"Fred Simmons","type":"Role","_key":"94738","_from":"32677","_to":"55799"} +{"$label":"ACTS_IN","name":"Bust-Ass (as Danny R. McBride)","type":"Role","_key":"92835","_from":"32677","_to":"54766"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"61542","_from":"32677","_to":"38803"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"60297","_from":"32677","_to":"38026"} +{"$label":"DIRECTED","_key":"49920","_from":"32683","_to":"32678"} +{"$label":"ACTS_IN","name":"Winston Taft","type":"Role","_key":"49919","_from":"32682","_to":"32678"} +{"$label":"ACTS_IN","name":"Greg Sommers","type":"Role","_key":"49918","_from":"32681","_to":"32678"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"49916","_from":"32680","_to":"32678"} +{"$label":"ACTS_IN","name":"Parker Neal","type":"Role","_key":"49915","_from":"32679","_to":"32678"} +{"$label":"ACTS_IN","name":"Captain Ben Halberstom","type":"Role","_key":"106153","_from":"32681","_to":"62517"} +{"$label":"ACTS_IN","name":"Dean Ryans","type":"Role","_key":"97325","_from":"32681","_to":"57305"} +{"$label":"ACTS_IN","name":"Dr. Woods","type":"Role","_key":"61005","_from":"32682","_to":"38548"} +{"$label":"DIRECTED","_key":"67111","_from":"32683","_to":"41418"} +{"$label":"DIRECTED","_key":"63257","_from":"32683","_to":"39660"} +{"$label":"DIRECTED","_key":"57205","_from":"32683","_to":"36288"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"49930","_from":"32689","_to":"32684"} +{"$label":"ACTS_IN","name":"Betsys Schw\u00e4gerin","type":"Role","_key":"49929","_from":"32688","_to":"32684"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"49928","_from":"32687","_to":"32684"} +{"$label":"ACTS_IN","name":"Georgie","type":"Role","_key":"49926","_from":"32686","_to":"32684"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"49925","_from":"32685","_to":"32684"} +{"$label":"ACTS_IN","name":"Alan Tracy","type":"Role","_key":"101139","_from":"32685","_to":"59587"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"68314","_from":"32685","_to":"41932"} +{"$label":"ACTS_IN","name":"Mason Freeland","type":"Role","_key":"67359","_from":"32685","_to":"41513"} +{"$label":"ACTS_IN","name":"Regine","type":"Role","_key":"49937","_from":"32692","_to":"32690"} +{"$label":"ACTS_IN","name":"Maria Lechner (Mizzi)","type":"Role","_key":"49936","_from":"32691","_to":"32690"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"49943","_from":"32694","_to":"32693"} +{"$label":"ACTS_IN","name":"Mayor Claire","type":"Role","_key":"49953","_from":"32700","_to":"32695"} +{"$label":"ACTS_IN","name":"Officer Gayle","type":"Role","_key":"49951","_from":"32699","_to":"32695"} +{"$label":"ACTS_IN","name":"Michel O'Shea","type":"Role","_key":"49950","_from":"32698","_to":"32695"} +{"$label":"ACTS_IN","name":"Sandy Fawkes","type":"Role","_key":"49948","_from":"32697","_to":"32695"} +{"$label":"DIRECTED","_key":"49946","_from":"32696","_to":"32695"} +{"$label":"ACTS_IN","name":"James (Jim) Floyd","type":"Role","_key":"120811","_from":"32698","_to":"70947"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"118439","_from":"32698","_to":"69627"} +{"$label":"ACTS_IN","name":"Col. Preston Waters","type":"Role","_key":"106277","_from":"32698","_to":"62605"} +{"$label":"ACTS_IN","name":"Chief Knickle","type":"Role","_key":"103513","_from":"32698","_to":"60898"} +{"$label":"ACTS_IN","name":"Finster","type":"Role","_key":"61136","_from":"32698","_to":"38639"} +{"$label":"ACTS_IN","name":"Father Duffel","type":"Role","_key":"98348","_from":"32699","_to":"57917"} +{"$label":"ACTS_IN","name":"Robert Beck","type":"Role","_key":"49960","_from":"32705","_to":"32701"} +{"$label":"ACTS_IN","name":"Susi Dorn","type":"Role","_key":"49959","_from":"32704","_to":"32701"} +{"$label":"ACTS_IN","name":"Bruno Tomasi","type":"Role","_key":"49958","_from":"32703","_to":"32701"} +{"$label":"DIRECTED","_key":"49954","_from":"32702","_to":"32701"} +{"$label":"DIRECTED","_key":"72801","_from":"32702","_to":"43865"} +{"$label":"DIRECTED","_key":"68826","_from":"32702","_to":"42166"} +{"$label":"DIRECTED","_key":"59924","_from":"32702","_to":"37835"} +{"$label":"DIRECTED","_key":"57967","_from":"32702","_to":"36679"} +{"$label":"DIRECTED","_key":"49972","_from":"32711","_to":"32707"} +{"$label":"ACTS_IN","name":"Mr. Watson","type":"Role","_key":"49971","_from":"32710","_to":"32707"} +{"$label":"ACTS_IN","name":"Mr. Skin","type":"Role","_key":"49970","_from":"32709","_to":"32707"} +{"$label":"ACTS_IN","name":"Jackie Bangs","type":"Role","_key":"49969","_from":"32708","_to":"32707"} +{"$label":"DIRECTED","_key":"109952","_from":"32711","_to":"64962"} +{"$label":"ACTS_IN","name":"Wild Guy #3","type":"Role","_key":"107223","_from":"32711","_to":"63230"} +{"$label":"DIRECTED","_key":"50014","_from":"32742","_to":"32712"} +{"$label":"DIRECTED","_key":"50013","_from":"32741","_to":"32712"} +{"$label":"ACTS_IN","name":"Mongol","type":"Role","_key":"50011","_from":"32740","_to":"32712"} +{"$label":"ACTS_IN","name":"Sorority Girl","type":"Role","_key":"50010","_from":"32739","_to":"32712"} +{"$label":"ACTS_IN","name":"Lucky Boy","type":"Role","_key":"50009","_from":"32738","_to":"32712"} +{"$label":"ACTS_IN","name":"Man On Street","type":"Role","_key":"50008","_from":"32737","_to":"32712"} +{"$label":"ACTS_IN","name":"Omega","type":"Role","_key":"50007","_from":"32736","_to":"32712"} +{"$label":"ACTS_IN","name":"Dean's Secretary","type":"Role","_key":"50006","_from":"32735","_to":"32712"} +{"$label":"ACTS_IN","name":"Gigantic Dude","type":"Role","_key":"50005","_from":"32734","_to":"32712"} +{"$label":"ACTS_IN","name":"Meanest Dude","type":"Role","_key":"50004","_from":"32733","_to":"32712"} +{"$label":"ACTS_IN","name":"Meaner Dude","type":"Role","_key":"50003","_from":"32732","_to":"32712"} +{"$label":"ACTS_IN","name":"Mean Dude","type":"Role","_key":"50002","_from":"32731","_to":"32712"} +{"$label":"ACTS_IN","name":"Noreen","type":"Role","_key":"50001","_from":"32730","_to":"32712"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"50000","_from":"32729","_to":"32712"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"49999","_from":"32728","_to":"32712"} +{"$label":"ACTS_IN","name":"Brunella","type":"Role","_key":"49998","_from":"32727","_to":"32712"} +{"$label":"ACTS_IN","name":"Otis Day","type":"Role","_key":"49997","_from":"32726","_to":"32712"} +{"$label":"ACTS_IN","name":"Sissy","type":"Role","_key":"49995","_from":"32725","_to":"32712"} +{"$label":"ACTS_IN","name":"Clorette DePasto","type":"Role","_key":"49994","_from":"32724","_to":"32712"} +{"$label":"ACTS_IN","name":"Mothball","type":"Role","_key":"49991","_from":"32723","_to":"32712"} +{"$label":"ACTS_IN","name":"B.B.","type":"Role","_key":"49990","_from":"32722","_to":"32712"} +{"$label":"ACTS_IN","name":"Hardbar","type":"Role","_key":"49989","_from":"32721","_to":"32712"} +{"$label":"ACTS_IN","name":"Stork","type":"Role","_key":"49988","_from":"32720","_to":"32712"} +{"$label":"ACTS_IN","name":"Greg Marmalard","type":"Role","_key":"49987","_from":"32719","_to":"32712"} +{"$label":"ACTS_IN","name":"Babs Jansen","type":"Role","_key":"49986","_from":"32718","_to":"32712"} +{"$label":"ACTS_IN","name":"Mandy Pepperidge","type":"Role","_key":"49985","_from":"32717","_to":"32712"} +{"$label":"ACTS_IN","name":"Kent Dorfman","type":"Role","_key":"49984","_from":"32716","_to":"32712"} +{"$label":"ACTS_IN","name":"Robert Hoover","type":"Role","_key":"49982","_from":"32715","_to":"32712"} +{"$label":"ACTS_IN","name":"Doug Neidermeyer","type":"Role","_key":"49980","_from":"32714","_to":"32712"} +{"$label":"ACTS_IN","name":"Marion Wormer","type":"Role","_key":"49976","_from":"32713","_to":"32712"} +{"$label":"ACTS_IN","name":"Sarah Belding","type":"Role","_key":"72657","_from":"32713","_to":"43788"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"66124","_from":"32713","_to":"40908"} +{"$label":"ACTS_IN","name":"Harold - Blue Team Leader","type":"Role","_key":"114548","_from":"32716","_to":"67478"} +{"$label":"ACTS_IN","name":"Booster","type":"Role","_key":"107938","_from":"32716","_to":"63745"} +{"$label":"ACTS_IN","name":"Albert Ianuzzi","type":"Role","_key":"100755","_from":"32716","_to":"59407"} +{"$label":"ACTS_IN","name":"Vir Cotto","type":"Role","_key":"66878","_from":"32716","_to":"41295"} +{"$label":"ACTS_IN","name":"Lloyd (as De Wayne Jessie)","type":"Role","_key":"104501","_from":"32726","_to":"61466"} +{"$label":"ACTS_IN","name":"Mrs. Sanders","type":"Role","_key":"50350","_from":"32727","_to":"32881"} +{"$label":"DIRECTED","_key":"97032","_from":"32741","_to":"57064"} +{"$label":"ACTS_IN","name":"Lester Matthews","type":"Role","_key":"50027","_from":"32747","_to":"32743"} +{"$label":"ACTS_IN","name":"Dr. Ellen Klein","type":"Role","_key":"50021","_from":"32746","_to":"32743"} +{"$label":"ACTS_IN","name":"Mike Archibald","type":"Role","_key":"50020","_from":"32745","_to":"32743"} +{"$label":"ACTS_IN","name":"Denise Archibald","type":"Role","_key":"50019","_from":"32744","_to":"32743"} +{"$label":"ACTS_IN","name":"Sue Davis","type":"Role","_key":"109017","_from":"32744","_to":"64423"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"107931","_from":"32744","_to":"63743"} +{"$label":"ACTS_IN","name":"FBI Ag. Eugenie Rose","type":"Role","_key":"100441","_from":"32744","_to":"59224"} +{"$label":"ACTS_IN","name":"Pearl Farmer","type":"Role","_key":"98270","_from":"32744","_to":"57887"} +{"$label":"ACTS_IN","name":"Tisean","type":"Role","_key":"53645","_from":"32744","_to":"34604"} +{"$label":"ACTS_IN","name":"Freddy Tiffany","type":"Role","_key":"117666","_from":"32747","_to":"69164"} +{"$label":"ACTS_IN","name":"Eddie Griffin","type":"Role","_key":"114595","_from":"32747","_to":"67505"} +{"$label":"ACTS_IN","name":"Armand Tucker","type":"Role","_key":"111867","_from":"32747","_to":"66041"} +{"$label":"ACTS_IN","name":"Infamous","type":"Role","_key":"109065","_from":"32747","_to":"64444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100587","_from":"32747","_to":"59319"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"97718","_from":"32747","_to":"57539"} +{"$label":"ACTS_IN","name":"Undercover Brother","type":"Role","_key":"89172","_from":"32747","_to":"52818"} +{"$label":"ACTS_IN","name":"McTeague","type":"Role","_key":"88538","_from":"32747","_to":"52472"} +{"$label":"ACTS_IN","name":"T.J. Hicks","type":"Role","_key":"69949","_from":"32747","_to":"42676"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"68763","_from":"32747","_to":"42134"} +{"$label":"ACTS_IN","name":"Luther","type":"Role","_key":"67099","_from":"32747","_to":"41408"} +{"$label":"ACTS_IN","name":"Tiberius Jefferson \"T.J.\" Hicks","type":"Role","_key":"63024","_from":"32747","_to":"39557"} +{"$label":"ACTS_IN","name":"Frank Jones","type":"Role","_key":"60278","_from":"32747","_to":"38015"} +{"$label":"ACTS_IN","name":"Pope Sweet Jesus","type":"Role","_key":"56363","_from":"32747","_to":"35808"} +{"$label":"ACTS_IN","name":"Customer","type":"Role","_key":"55027","_from":"32747","_to":"35160"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"50031","_from":"32750","_to":"32748"} +{"$label":"DIRECTED","_key":"50029","_from":"32749","_to":"32748"} +{"$label":"ACTS_IN","name":"Gwupigrubynudny-landians","type":"Role","_key":"107768","_from":"32749","_to":"63633"} +{"$label":"DIRECTED","_key":"60597","_from":"32749","_to":"38253"} +{"$label":"ACTS_IN","name":"Wilhelmina 'Wil' Pang","type":"Role","_key":"119675","_from":"32750","_to":"70290"} +{"$label":"ACTS_IN","name":"Yang Shu Ling","type":"Role","_key":"111438","_from":"32750","_to":"65798"} +{"$label":"ACTS_IN","name":"Chong","type":"Role","_key":"52133","_from":"32750","_to":"33981"} +{"$label":"ACTS_IN","name":"Big reb","type":"Role","_key":"50042","_from":"32754","_to":"32751"} +{"$label":"ACTS_IN","name":"Miss Lippenrieder","type":"Role","_key":"50040","_from":"32753","_to":"32751"} +{"$label":"ACTS_IN","name":"Amazonia","type":"Role","_key":"50038","_from":"32752","_to":"32751"} +{"$label":"ACTS_IN","name":"Cressida Baylor","type":"Role","_key":"50050","_from":"32758","_to":"32755"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"50049","_from":"32757","_to":"32755"} +{"$label":"ACTS_IN","name":"Casey Sedgewick","type":"Role","_key":"50048","_from":"32756","_to":"32755"} +{"$label":"ACTS_IN","name":"Leslie Taylor","type":"Role","_key":"101958","_from":"32756","_to":"60001"} +{"$label":"ACTS_IN","name":"Dean Deeley","type":"Role","_key":"119213","_from":"32757","_to":"70044"} +{"$label":"ACTS_IN","name":"Will Brennan","type":"Role","_key":"71486","_from":"32757","_to":"43330"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"103537","_from":"32758","_to":"60904"} +{"$label":"ACTS_IN","name":"Dr. Ferdie Pacheco","type":"Role","_key":"50064","_from":"32760","_to":"32759"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"119707","_from":"32760","_to":"70307"} +{"$label":"ACTS_IN","name":"Mr. Wong","type":"Role","_key":"116136","_from":"32760","_to":"68383"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112919","_from":"32760","_to":"66638"} +{"$label":"ACTS_IN","name":"Orlando Castillo","type":"Role","_key":"103193","_from":"32760","_to":"60693"} +{"$label":"ACTS_IN","name":"Chico (voice)","type":"Role","_key":"100063","_from":"32760","_to":"59023"} +{"$label":"ACTS_IN","name":"Detective Ronaldo Arrango","type":"Role","_key":"54786","_from":"32760","_to":"35055"} +{"$label":"DIRECTED","_key":"50085","_from":"32765","_to":"32761"} +{"$label":"ACTS_IN","name":"Andy Davis","type":"Role","_key":"50083","_from":"32764","_to":"32761"} +{"$label":"ACTS_IN","name":"Mirandez","type":"Role","_key":"50080","_from":"32763","_to":"32761"} +{"$label":"ACTS_IN","name":"Elena Morales","type":"Role","_key":"50076","_from":"32762","_to":"32761"} +{"$label":"ACTS_IN","name":"Dolores","type":"Role","_key":"55869","_from":"32762","_to":"35537"} +{"$label":"ACTS_IN","name":"Tawny","type":"Role","_key":"50092","_from":"32772","_to":"32766"} +{"$label":"ACTS_IN","name":"Tina, Vito's Girl","type":"Role","_key":"50091","_from":"32771","_to":"32766"} +{"$label":"ACTS_IN","name":"Paulie, Vito's Hit Man","type":"Role","_key":"50090","_from":"32770","_to":"32766"} +{"$label":"ACTS_IN","name":"Bernie Lomax","type":"Role","_key":"50089","_from":"32769","_to":"32766"} +{"$label":"ACTS_IN","name":"Gwen Saunders","type":"Role","_key":"50088","_from":"32768","_to":"32766"} +{"$label":"ACTS_IN","name":"Richard Parker","type":"Role","_key":"50087","_from":"32767","_to":"32766"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"116467","_from":"32767","_to":"68550"} +{"$label":"ACTS_IN","name":"WES","type":"Role","_key":"116322","_from":"32767","_to":"68476"} +{"$label":"ACTS_IN","name":"Barry Thomas","type":"Role","_key":"113996","_from":"32767","_to":"67134"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111888","_from":"32767","_to":"66047"} +{"$label":"ACTS_IN","name":"Drew Boreman","type":"Role","_key":"108391","_from":"32767","_to":"64078"} +{"$label":"ACTS_IN","name":"Bachelor","type":"Role","_key":"105768","_from":"32767","_to":"62266"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"97714","_from":"32767","_to":"57539"} +{"$label":"ACTS_IN","name":"Richard Parker","type":"Role","_key":"50095","_from":"32767","_to":"32773"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"116277","_from":"32768","_to":"68456"} +{"$label":"ACTS_IN","name":"Bunny Miller","type":"Role","_key":"101633","_from":"32768","_to":"59820"} +{"$label":"ACTS_IN","name":"Maggie Gordon","type":"Role","_key":"72534","_from":"32768","_to":"43750"} +{"$label":"ACTS_IN","name":"Dr. Crews","type":"Role","_key":"62360","_from":"32769","_to":"39284"} +{"$label":"ACTS_IN","name":"Bernie Lomax","type":"Role","_key":"50096","_from":"32769","_to":"32773"} +{"$label":"ACTS_IN","name":"Ernie Kaltenbrunner","type":"Role","_key":"66780","_from":"32770","_to":"41258"} +{"$label":"DIRECTED","_key":"50102","_from":"32779","_to":"32773"} +{"$label":"ACTS_IN","name":"Mobu","type":"Role","_key":"50101","_from":"32778","_to":"32773"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"50100","_from":"32777","_to":"32773"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"50099","_from":"32776","_to":"32773"} +{"$label":"ACTS_IN","name":"Arthur Hummel","type":"Role","_key":"50098","_from":"32775","_to":"32773"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"50097","_from":"32774","_to":"32773"} +{"$label":"ACTS_IN","name":"Tracy Shaw","type":"Role","_key":"116109","_from":"32774","_to":"68369"} +{"$label":"ACTS_IN","name":"Beth Hastings","type":"Role","_key":"67915","_from":"32774","_to":"41725"} +{"$label":"ACTS_IN","name":"Dashiel Biedermeyer","type":"Role","_key":"98258","_from":"32775","_to":"57880"} +{"$label":"ACTS_IN","name":"Thunderbolt","type":"Role","_key":"95727","_from":"32775","_to":"56304"} +{"$label":"ACTS_IN","name":"Nathan Lloyd","type":"Role","_key":"64372","_from":"32775","_to":"40118"} +{"$label":"ACTS_IN","name":"Norman Coleman","type":"Role","_key":"63914","_from":"32775","_to":"39925"} +{"$label":"ACTS_IN","name":"The Hitchhiker","type":"Role","_key":"108500","_from":"32776","_to":"64131"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"61413","_from":"32776","_to":"38737"} +{"$label":"ACTS_IN","name":"Kung Fu Joe","type":"Role","_key":"110860","_from":"32777","_to":"65484"} +{"$label":"ACTS_IN","name":"Cpl. Curtis Jackson","type":"Role","_key":"89905","_from":"32777","_to":"53202"} +{"$label":"ACTS_IN","name":"Junior Fornay","type":"Role","_key":"50113","_from":"32782","_to":"32780"} +{"$label":"ACTS_IN","name":"Joppy","type":"Role","_key":"50109","_from":"32781","_to":"32780"} +{"$label":"ACTS_IN","name":"Melvin the Mechanic","type":"Role","_key":"72191","_from":"32781","_to":"43625"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"50135","_from":"32787","_to":"32785"} +{"$label":"DIRECTED","_key":"50129","_from":"32786","_to":"32785"} +{"$label":"DIRECTED","_key":"100872","_from":"32786","_to":"59473"} +{"$label":"DIRECTED","_key":"53943","_from":"32786","_to":"34709"} +{"$label":"ACTS_IN","name":"Lonnie Urquart","type":"Role","_key":"121612","_from":"32787","_to":"71446"} +{"$label":"ACTS_IN","name":"Big John","type":"Role","_key":"113750","_from":"32787","_to":"67029"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"50144","_from":"32792","_to":"32788"} +{"$label":"ACTS_IN","name":"Sibille","type":"Role","_key":"50143","_from":"32791","_to":"32788"} +{"$label":"ACTS_IN","name":"August","type":"Role","_key":"50139","_from":"32790","_to":"32788"} +{"$label":"ACTS_IN","name":"Konstantin","type":"Role","_key":"50138","_from":"32789","_to":"32788"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"50158","_from":"32799","_to":"32793"} +{"$label":"ACTS_IN","name":"Freund","type":"Role","_key":"50155","_from":"32798","_to":"32793"} +{"$label":"ACTS_IN","name":"Mann","type":"Role","_key":"50153","_from":"32797","_to":"32793"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"50152","_from":"32796","_to":"32793"} +{"$label":"ACTS_IN","name":"Mandy","type":"Role","_key":"50150","_from":"32795","_to":"32793"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"50149","_from":"32794","_to":"32793"} +{"$label":"ACTS_IN","name":"Engel","type":"Role","_key":"50174","_from":"32804","_to":"32800"} +{"$label":"ACTS_IN","name":"Marie (jung)","type":"Role","_key":"50172","_from":"32803","_to":"32800"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"50162","_from":"32802","_to":"32800"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"50161","_from":"32801","_to":"32800"} +{"$label":"ACTS_IN","name":"Su Li","type":"Role","_key":"50181","_from":"32808","_to":"32805"} +{"$label":"ACTS_IN","name":"Koch","type":"Role","_key":"50180","_from":"32807","_to":"32805"} +{"$label":"DIRECTED","_key":"50176","_from":"32806","_to":"32805"} +{"$label":"DIRECTED","_key":"50198","_from":"32813","_to":"32809"} +{"$label":"ACTS_IN","name":"Detektiv","type":"Role","_key":"50196","_from":"32812","_to":"32809"} +{"$label":"ACTS_IN","name":"Maier","type":"Role","_key":"50195","_from":"32811","_to":"32809"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"50191","_from":"32810","_to":"32809"} +{"$label":"DIRECTED","_key":"50203","_from":"32819","_to":"32818"} +{"$label":"DIRECTED","_key":"50218","_from":"32825","_to":"32821"} +{"$label":"ACTS_IN","name":"Khongorzul","type":"Role","_key":"50217","_from":"32824","_to":"32821"} +{"$label":"ACTS_IN","name":"Sukhee","type":"Role","_key":"50216","_from":"32823","_to":"32821"} +{"$label":"ACTS_IN","name":"Jinjiimaa","type":"Role","_key":"50215","_from":"32822","_to":"32821"} +{"$label":"ACTS_IN","name":"Young Nala","type":"Role","_key":"50224","_from":"32828","_to":"32826"} +{"$label":"ACTS_IN","name":"Young Simba","type":"Role","_key":"50221","_from":"32827","_to":"32826"} +{"$label":"ACTS_IN","name":"Pinocchio","type":"Role","_key":"118323","_from":"32827","_to":"69555"} +{"$label":"ACTS_IN","name":"Jake Wilkinson","type":"Role","_key":"110954","_from":"32827","_to":"65537"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98748","_from":"32827","_to":"58193"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"50234","_from":"32832","_to":"32829"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"50233","_from":"32831","_to":"32829"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"50232","_from":"32830","_to":"32829"} +{"$label":"ACTS_IN","name":"Seso","type":"Role","_key":"54572","_from":"32831","_to":"34967"} +{"$label":"DIRECTED","_key":"50248","_from":"32835","_to":"32834"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"50254","_from":"32840","_to":"32836"} +{"$label":"ACTS_IN","name":"Lisa Hines","type":"Role","_key":"50253","_from":"32839","_to":"32836"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"50252","_from":"32838","_to":"32836"} +{"$label":"DIRECTED","_key":"50249","_from":"32837","_to":"32836"} +{"$label":"DIRECTED","_key":"121431","_from":"32837","_to":"71342"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"56871","_from":"32838","_to":"36099"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"120243","_from":"32840","_to":"70611"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"107696","_from":"32840","_to":"63574"} +{"$label":"DIRECTED","_key":"50273","_from":"32850","_to":"32841"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"50272","_from":"32849","_to":"32841"} +{"$label":"ACTS_IN","name":"Akhtar","type":"Role","_key":"50268","_from":"32848","_to":"32841"} +{"$label":"ACTS_IN","name":"Posner","type":"Role","_key":"50267","_from":"32847","_to":"32841"} +{"$label":"ACTS_IN","name":"Rudge","type":"Role","_key":"50264","_from":"32846","_to":"32841"} +{"$label":"ACTS_IN","name":"Lockwood","type":"Role","_key":"50263","_from":"32845","_to":"32841"} +{"$label":"ACTS_IN","name":"Irwin","type":"Role","_key":"50260","_from":"32844","_to":"32841"} +{"$label":"ACTS_IN","name":"Timms","type":"Role","_key":"50259","_from":"32843","_to":"32841"} +{"$label":"ACTS_IN","name":"Crowther","type":"Role","_key":"50258","_from":"32842","_to":"32841"} +{"$label":"ACTS_IN","name":"Mr. Morgan","type":"Role","_key":"61090","_from":"32842","_to":"38616"} +{"$label":"ACTS_IN","name":"Fletch","type":"Role","_key":"115468","_from":"32843","_to":"67985"} +{"$label":"ACTS_IN","name":"Rory","type":"Role","_key":"89615","_from":"32843","_to":"53037"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"108777","_from":"32844","_to":"64301"} +{"$label":"ACTS_IN","name":"Adam Fenwick-Symes","type":"Role","_key":"103814","_from":"32844","_to":"61055"} +{"$label":"ACTS_IN","name":"Kevin Swain","type":"Role","_key":"51082","_from":"32844","_to":"33334"} +{"$label":"ACTS_IN","name":"Dickon","type":"Role","_key":"68724","_from":"32845","_to":"42113"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"51093","_from":"32849","_to":"33334"} +{"$label":"DIRECTED","_key":"111190","_from":"32850","_to":"65664"} +{"$label":"DIRECTED","_key":"69104","_from":"32850","_to":"42284"} +{"$label":"DIRECTED","_key":"64086","_from":"32850","_to":"39997"} +{"$label":"DIRECTED","_key":"50286","_from":"32854","_to":"32852"} +{"$label":"ACTS_IN","name":"Emily Rose","type":"Role","_key":"50282","_from":"32853","_to":"32852"} +{"$label":"ACTS_IN","name":"Angela Vidal","type":"Role","_key":"96815","_from":"32853","_to":"56936"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"93191","_from":"32853","_to":"54916"} +{"$label":"DIRECTED","_key":"90527","_from":"32854","_to":"53475"} +{"$label":"DIRECTED","_key":"61659","_from":"32854","_to":"38850"} +{"$label":"DIRECTED","_key":"50288","_from":"32857","_to":"32855"} +{"$label":"DIRECTED","_key":"50287","_from":"32856","_to":"32855"} +{"$label":"ACTS_IN","name":"Laura K\u00f6nig","type":"Role","_key":"50300","_from":"32862","_to":"32859"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"50298","_from":"32861","_to":"32859"} +{"$label":"DIRECTED","_key":"50295","_from":"32860","_to":"32859"} +{"$label":"ACTS_IN","name":"Nathalie","type":"Role","_key":"50305","_from":"32866","_to":"32864"} +{"$label":"DIRECTED","_key":"50301","_from":"32865","_to":"32864"} +{"$label":"DIRECTED","_key":"50316","_from":"32870","_to":"32869"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"50319","_from":"32873","_to":"32871"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"50318","_from":"32872","_to":"32871"} +{"$label":"ACTS_IN","name":"Kirin","type":"Role","_key":"89460","_from":"32873","_to":"52964"} +{"$label":"ACTS_IN","name":"Kouga Gen-no-suke","type":"Role","_key":"60918","_from":"32873","_to":"38490"} +{"$label":"ACTS_IN","name":"Mang-Chee","type":"Role","_key":"50324","_from":"32878","_to":"32874"} +{"$label":"ACTS_IN","name":"Eun-A","type":"Role","_key":"50323","_from":"32877","_to":"32874"} +{"$label":"ACTS_IN","name":"Hyun-Shik","type":"Role","_key":"50322","_from":"32876","_to":"32874"} +{"$label":"ACTS_IN","name":"Hee-Jin","type":"Role","_key":"50321","_from":"32875","_to":"32874"} +{"$label":"ACTS_IN","name":"Company president Kang","type":"Role","_key":"103865","_from":"32878","_to":"61087"} +{"$label":"ACTS_IN","name":"Yun Gyu-yeob","type":"Role","_key":"94940","_from":"32878","_to":"55906"} +{"$label":"ACTS_IN","name":"Hyeong-jun","type":"Role","_key":"62110","_from":"32878","_to":"39116"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"50348","_from":"32893","_to":"32881"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"50347","_from":"32892","_to":"32881"} +{"$label":"ACTS_IN","name":"Tracey Nichols","type":"Role","_key":"50346","_from":"32891","_to":"32881"} +{"$label":"ACTS_IN","name":"Brooks","type":"Role","_key":"50345","_from":"32890","_to":"32881"} +{"$label":"ACTS_IN","name":"Kerry Sanders","type":"Role","_key":"50344","_from":"32889","_to":"32881"} +{"$label":"ACTS_IN","name":"Ripley","type":"Role","_key":"50343","_from":"32888","_to":"32881"} +{"$label":"ACTS_IN","name":"Margo Hilling","type":"Role","_key":"50342","_from":"32887","_to":"32881"} +{"$label":"ACTS_IN","name":"Kevin Muldoon","type":"Role","_key":"50341","_from":"32886","_to":"32881"} +{"$label":"ACTS_IN","name":"Lex","type":"Role","_key":"50340","_from":"32885","_to":"32881"} +{"$label":"ACTS_IN","name":"Ty Conner","type":"Role","_key":"50338","_from":"32884","_to":"32881"} +{"$label":"ACTS_IN","name":"Flight Attendant Kate Phillips","type":"Role","_key":"50337","_from":"32883","_to":"32881"} +{"$label":"DIRECTED","_key":"50335","_from":"32882","_to":"32881"} +{"$label":"DIRECTED","_key":"97983","_from":"32882","_to":"57709"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"114644","_from":"32883","_to":"67536"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"101855","_from":"32883","_to":"59946"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"98242","_from":"32883","_to":"57874"} +{"$label":"ACTS_IN","name":"Connie Swail","type":"Role","_key":"59528","_from":"32883","_to":"37581"} +{"$label":"ACTS_IN","name":"Leigh Cabot","type":"Role","_key":"50773","_from":"32883","_to":"33134"} +{"$label":"ACTS_IN","name":"Rhee","type":"Role","_key":"114019","_from":"32886","_to":"67145"} +{"$label":"ACTS_IN","name":"Paul Holt","type":"Role","_key":"56042","_from":"32886","_to":"35620"} +{"$label":"ACTS_IN","name":"Suslov","type":"Role","_key":"50379","_from":"32913","_to":"32894"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"50378","_from":"32912","_to":"32894"} +{"$label":"ACTS_IN","name":"Yevgeny Borzenkov","type":"Role","_key":"50377","_from":"32911","_to":"32894"} +{"$label":"ACTS_IN","name":"Dr. Gavril","type":"Role","_key":"50376","_from":"32910","_to":"32894"} +{"$label":"ACTS_IN","name":"Oleg","type":"Role","_key":"50375","_from":"32909","_to":"32894"} +{"$label":"ACTS_IN","name":"Stepan","type":"Role","_key":"50373","_from":"32908","_to":"32894"} +{"$label":"ACTS_IN","name":"Danya Yashin","type":"Role","_key":"50372","_from":"32907","_to":"32894"} +{"$label":"ACTS_IN","name":"Maxim","type":"Role","_key":"50371","_from":"32906","_to":"32894"} +{"$label":"ACTS_IN","name":"Sergei","type":"Role","_key":"50369","_from":"32905","_to":"32894"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"50368","_from":"32904","_to":"32894"} +{"$label":"ACTS_IN","name":"Leonid","type":"Role","_key":"50367","_from":"32903","_to":"32894"} +{"$label":"ACTS_IN","name":"Lapinsh","type":"Role","_key":"50366","_from":"32902","_to":"32894"} +{"$label":"ACTS_IN","name":"Kuryshev","type":"Role","_key":"50365","_from":"32901","_to":"32894"} +{"$label":"ACTS_IN","name":"Vasily","type":"Role","_key":"50364","_from":"32900","_to":"32894"} +{"$label":"ACTS_IN","name":"Dmitri","type":"Role","_key":"50363","_from":"32899","_to":"32894"} +{"$label":"ACTS_IN","name":"Kornilov","type":"Role","_key":"50361","_from":"32898","_to":"32894"} +{"$label":"ACTS_IN","name":"Anatoly","type":"Role","_key":"50360","_from":"32897","_to":"32894"} +{"$label":"ACTS_IN","name":"Konstantin","type":"Role","_key":"50359","_from":"32896","_to":"32894"} +{"$label":"ACTS_IN","name":"Demichev","type":"Role","_key":"50358","_from":"32895","_to":"32894"} +{"$label":"ACTS_IN","name":"Dinger","type":"Role","_key":"105941","_from":"32895","_to":"62378"} +{"$label":"ACTS_IN","name":"Dieter Klein","type":"Role","_key":"54177","_from":"32895","_to":"34805"} +{"$label":"ACTS_IN","name":"Sgt. Grieves","type":"Role","_key":"57918","_from":"32896","_to":"36634"} +{"$label":"ACTS_IN","name":"Banner","type":"Role","_key":"56005","_from":"32896","_to":"35597"} +{"$label":"ACTS_IN","name":"Tyro","type":"Role","_key":"117848","_from":"32898","_to":"69278"} +{"$label":"ACTS_IN","name":"John Tracy","type":"Role","_key":"101161","_from":"32898","_to":"59587"} +{"$label":"ACTS_IN","name":"Stuart Allen","type":"Role","_key":"101919","_from":"32899","_to":"59982"} +{"$label":"ACTS_IN","name":"Hospital Director","type":"Role","_key":"96289","_from":"32899","_to":"56572"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"96746","_from":"32900","_to":"56911"} +{"$label":"ACTS_IN","name":"Phil Valenz","type":"Role","_key":"109824","_from":"32901","_to":"64879"} +{"$label":"ACTS_IN","name":"Thad","type":"Role","_key":"111119","_from":"32902","_to":"65632"} +{"$label":"ACTS_IN","name":"Stephan","type":"Role","_key":"116309","_from":"32905","_to":"68473"} +{"$label":"ACTS_IN","name":"Eckhart","type":"Role","_key":"57691","_from":"32905","_to":"36513"} +{"$label":"ACTS_IN","name":"Larry Banks","type":"Role","_key":"59044","_from":"32906","_to":"37275"} +{"$label":"ACTS_IN","name":"Jan Zurakowski","type":"Role","_key":"120826","_from":"32910","_to":"70947"} +{"$label":"ACTS_IN","name":"Col. John Cambridge","type":"Role","_key":"88397","_from":"32912","_to":"52392"} +{"$label":"DIRECTED","_key":"50391","_from":"32924","_to":"32914"} +{"$label":"DIRECTED","_key":"50390","_from":"32923","_to":"32914"} +{"$label":"ACTS_IN","name":"Frau Stolte","type":"Role","_key":"50389","_from":"32922","_to":"32914"} +{"$label":"ACTS_IN","name":"Saskia Henning","type":"Role","_key":"50388","_from":"32921","_to":"32914"} +{"$label":"ACTS_IN","name":"Wolfgang","type":"Role","_key":"50387","_from":"32920","_to":"32914"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"50386","_from":"32919","_to":"32914"} +{"$label":"ACTS_IN","name":"Wiebke","type":"Role","_key":"50385","_from":"32918","_to":"32914"} +{"$label":"ACTS_IN","name":"Frau Kramer","type":"Role","_key":"50384","_from":"32917","_to":"32914"} +{"$label":"ACTS_IN","name":"Petra Opels","type":"Role","_key":"50383","_from":"32916","_to":"32914"} +{"$label":"ACTS_IN","name":"Barbara Henning","type":"Role","_key":"50382","_from":"32915","_to":"32914"} +{"$label":"ACTS_IN","name":"Officer Hansen","type":"Role","_key":"50402","_from":"32930","_to":"32925"} +{"$label":"ACTS_IN","name":"Whitney Drummond","type":"Role","_key":"50400","_from":"32929","_to":"32925"} +{"$label":"ACTS_IN","name":"Len Arbuckle","type":"Role","_key":"50399","_from":"32928","_to":"32925"} +{"$label":"ACTS_IN","name":"Kip Crombwell","type":"Role","_key":"50398","_from":"32927","_to":"32925"} +{"$label":"DIRECTED","_key":"50392","_from":"32926","_to":"32925"} +{"$label":"ACTS_IN","name":"Oliver Cauffield","type":"Role","_key":"119117","_from":"32927","_to":"70011"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"70664","_from":"32928","_to":"42995"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"61004","_from":"32928","_to":"38548"} +{"$label":"ACTS_IN","name":"Joe Paloffski","type":"Role","_key":"120814","_from":"32930","_to":"70947"} +{"$label":"ACTS_IN","name":"Sancho","type":"Role","_key":"50419","_from":"32942","_to":"32932"} +{"$label":"ACTS_IN","name":"Porn Star","type":"Role","_key":"50418","_from":"32941","_to":"32932"} +{"$label":"ACTS_IN","name":"Guy Black Giant Cock","type":"Role","_key":"50417","_from":"32940","_to":"32932"} +{"$label":"ACTS_IN","name":"Guy White Giant Cock","type":"Role","_key":"50416","_from":"32939","_to":"32932"} +{"$label":"ACTS_IN","name":"Jimmy the Fish","type":"Role","_key":"50415","_from":"32938","_to":"32932"} +{"$label":"ACTS_IN","name":"A-Cop","type":"Role","_key":"50414","_from":"32937","_to":"32932"} +{"$label":"ACTS_IN","name":"Rodgers","type":"Role","_key":"50413","_from":"32936","_to":"32932"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"50412","_from":"32935","_to":"32932"} +{"$label":"ACTS_IN","name":"Maxxx Orbison","type":"Role","_key":"50411","_from":"32934","_to":"32932"} +{"$label":"ACTS_IN","name":"Ben Chapleski","type":"Role","_key":"50408","_from":"32933","_to":"32932"} +{"$label":"ACTS_IN","name":"Stacey \"Skip\" Holmes","type":"Role","_key":"110060","_from":"32933","_to":"65036"} +{"$label":"ACTS_IN","name":"Squeak Scolari","type":"Role","_key":"98112","_from":"32933","_to":"57766"} +{"$label":"ACTS_IN","name":"George Noon","type":"Role","_key":"92272","_from":"32933","_to":"54453"} +{"$label":"ACTS_IN","name":"Bigg Bunny","type":"Role","_key":"50427","_from":"32945","_to":"32943"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"50426","_from":"32944","_to":"32943"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"58282","_from":"32944","_to":"36856"} +{"$label":"ACTS_IN","name":"Tree","type":"Role","_key":"101968","_from":"32945","_to":"60005"} +{"$label":"ACTS_IN","name":"Nashawn","type":"Role","_key":"90853","_from":"32945","_to":"53609"} +{"$label":"ACTS_IN","name":"Nr. 17","type":"Role","_key":"68852","_from":"32945","_to":"42177"} +{"$label":"ACTS_IN","name":"Marie St. Jacques","type":"Role","_key":"50431","_from":"32947","_to":"32946"} +{"$label":"ACTS_IN","name":"Antonia","type":"Role","_key":"50442","_from":"32951","_to":"32948"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"50440","_from":"32950","_to":"32948"} +{"$label":"ACTS_IN","name":"Dolly Keeling","type":"Role","_key":"50437","_from":"32949","_to":"32948"} +{"$label":"ACTS_IN","name":"Henrietta Musgrove","type":"Role","_key":"110905","_from":"32950","_to":"65506"} +{"$label":"ACTS_IN","name":"Maria Bertram Rushworth","type":"Role","_key":"63003","_from":"32950","_to":"39550"} +{"$label":"DIRECTED","_key":"50450","_from":"32955","_to":"32952"} +{"$label":"ACTS_IN","name":"Diva","type":"Role","_key":"50448","_from":"32954","_to":"32952"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"50447","_from":"32953","_to":"32952"} +{"$label":"ACTS_IN","name":"Tiffany Madison","type":"Role","_key":"60010","_from":"32953","_to":"37876"} +{"$label":"ACTS_IN","name":"Kelli Presley","type":"Role","_key":"55336","_from":"32953","_to":"35281"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"119265","_from":"32954","_to":"70075"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"65807","_from":"32954","_to":"40722"} +{"$label":"ACTS_IN","name":"Christie Allen","type":"Role","_key":"52292","_from":"32954","_to":"34046"} +{"$label":"DIRECTED","_key":"59854","_from":"32955","_to":"37799"} +{"$label":"ACTS_IN","name":"Alan Yates","type":"Role","_key":"50462","_from":"32962","_to":"32957"} +{"$label":"ACTS_IN","name":"Faye","type":"Role","_key":"50461","_from":"32961","_to":"32957"} +{"$label":"ACTS_IN","name":"Chaco Losojos","type":"Role","_key":"50460","_from":"32960","_to":"32957"} +{"$label":"ACTS_IN","name":"Mark Tomaso","type":"Role","_key":"50459","_from":"32959","_to":"32957"} +{"$label":"ACTS_IN","name":"Jack Anders","type":"Role","_key":"50458","_from":"32958","_to":"32957"} +{"$label":"ACTS_IN","name":"Captain Fraternidade","type":"Role","_key":"70336","_from":"32960","_to":"42852"} +{"$label":"ACTS_IN","name":"Matatigres, the bully","type":"Role","_key":"59236","_from":"32960","_to":"37408"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"50476","_from":"32970","_to":"32963"} +{"$label":"ACTS_IN","name":"Lt. Creal","type":"Role","_key":"50475","_from":"32969","_to":"32963"} +{"$label":"ACTS_IN","name":"Inspector Logan","type":"Role","_key":"50474","_from":"32968","_to":"32963"} +{"$label":"ACTS_IN","name":"Keran","type":"Role","_key":"50473","_from":"32967","_to":"32963"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"50471","_from":"32966","_to":"32963"} +{"$label":"ACTS_IN","name":"Mowara","type":"Role","_key":"50470","_from":"32965","_to":"32963"} +{"$label":"ACTS_IN","name":"Sheila Morris","type":"Role","_key":"50466","_from":"32964","_to":"32963"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"52356","_from":"32965","_to":"34076"} +{"$label":"ACTS_IN","name":"Myra Stenn","type":"Role","_key":"50481","_from":"32966","_to":"32971"} +{"$label":"ACTS_IN","name":"Gloria Davis","type":"Role","_key":"50483","_from":"32974","_to":"32971"} +{"$label":"ACTS_IN","name":"Pat Johnson","type":"Role","_key":"50482","_from":"32973","_to":"32971"} +{"$label":"ACTS_IN","name":"Rudy Davis","type":"Role","_key":"50479","_from":"32972","_to":"32971"} +{"$label":"ACTS_IN","name":"Mall Guard","type":"Role","_key":"50496","_from":"32982","_to":"32975"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"50493","_from":"32981","_to":"32975"} +{"$label":"ACTS_IN","name":"Dr. Phil Mendez","type":"Role","_key":"50492","_from":"32980","_to":"32975"} +{"$label":"ACTS_IN","name":"Captain McCoy","type":"Role","_key":"50491","_from":"32979","_to":"32975"} +{"$label":"ACTS_IN","name":"Tom Thompson","type":"Role","_key":"50490","_from":"32978","_to":"32975"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"50489","_from":"32977","_to":"32975"} +{"$label":"ACTS_IN","name":"Jane Hopper","type":"Role","_key":"50488","_from":"32976","_to":"32975"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"50512","_from":"32993","_to":"32983"} +{"$label":"ACTS_IN","name":"Mrs. Perkins","type":"Role","_key":"50511","_from":"32992","_to":"32983"} +{"$label":"ACTS_IN","name":"Big Annie","type":"Role","_key":"50510","_from":"32991","_to":"32983"} +{"$label":"ACTS_IN","name":"Blacksmith","type":"Role","_key":"50509","_from":"32990","_to":"32983"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"50508","_from":"32989","_to":"32983"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"50507","_from":"32988","_to":"32983"} +{"$label":"ACTS_IN","name":"The Fisherman","type":"Role","_key":"50506","_from":"32987","_to":"32983"} +{"$label":"ACTS_IN","name":"The Fat Man","type":"Role","_key":"50504","_from":"32986","_to":"32983"} +{"$label":"ACTS_IN","name":"Mr. Perkins","type":"Role","_key":"50502","_from":"32985","_to":"32983"} +{"$label":"DIRECTED","_key":"50497","_from":"32984","_to":"32983"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92953","_from":"32986","_to":"54810"} +{"$label":"ACTS_IN","name":"Joyboy's Mother","type":"Role","_key":"108576","_from":"32991","_to":"64161"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"50518","_from":"32999","_to":"32994"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"50517","_from":"32998","_to":"32994"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"50516","_from":"32997","_to":"32994"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"50515","_from":"32996","_to":"32994"} +{"$label":"DIRECTED","_key":"50513","_from":"32995","_to":"32994"} +{"$label":"ACTS_IN","name":"Scene 4","type":"Role","_key":"99592","_from":"32996","_to":"58694"} +{"$label":"ACTS_IN","name":"Lawrence Sertain","type":"Role","_key":"50524","_from":"33002","_to":"33000"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"50523","_from":"33001","_to":"33000"} +{"$label":"ACTS_IN","name":"Fairy Godmother","type":"Role","_key":"107851","_from":"33001","_to":"63696"} +{"$label":"ACTS_IN","name":"Earp","type":"Role","_key":"116447","_from":"33002","_to":"68543"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"50532","_from":"33006","_to":"33003"} +{"$label":"ACTS_IN","name":"Yuki","type":"Role","_key":"50531","_from":"33005","_to":"33003"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"50530","_from":"33004","_to":"33003"} +{"$label":"ACTS_IN","name":"Tom Sawyer","type":"Role","_key":"50540","_from":"33009","_to":"33007"} +{"$label":"ACTS_IN","name":"Dorian Gray","type":"Role","_key":"50539","_from":"33008","_to":"33007"} +{"$label":"ACTS_IN","name":"Guy Malyon","type":"Role","_key":"117532","_from":"33008","_to":"69106"} +{"$label":"ACTS_IN","name":"Vernon","type":"Role","_key":"100884","_from":"33008","_to":"59480"} +{"$label":"ACTS_IN","name":"Buddy Endrow","type":"Role","_key":"91900","_from":"33008","_to":"54219"} +{"$label":"ACTS_IN","name":"Lestat de Lioncourt","type":"Role","_key":"73121","_from":"33008","_to":"43980"} +{"$label":"ACTS_IN","name":"William \"Will\" Jennings","type":"Role","_key":"52213","_from":"33008","_to":"34015"} +{"$label":"DIRECTED","_key":"93186","_from":"33008","_to":"54916"} +{"$label":"ACTS_IN","name":"Darby Crash","type":"Role","_key":"111248","_from":"33009","_to":"65695"} +{"$label":"ACTS_IN","name":"Max Peterson","type":"Role","_key":"108746","_from":"33009","_to":"64285"} +{"$label":"ACTS_IN","name":"Ryan Woodman","type":"Role","_key":"108161","_from":"33009","_to":"63922"} +{"$label":"ACTS_IN","name":"Street Wilkenson","type":"Role","_key":"102952","_from":"33009","_to":"60559"} +{"$label":"ACTS_IN","name":"Jeff Keller","type":"Role","_key":"102614","_from":"33009","_to":"60376"} +{"$label":"ACTS_IN","name":"Landon Carter","type":"Role","_key":"61831","_from":"33009","_to":"38926"} +{"$label":"ACTS_IN","name":"Bentley 'Striker' Scrumfeld","type":"Role","_key":"59954","_from":"33009","_to":"37851"} +{"$label":"ACTS_IN","name":"Rev. Wally Jones","type":"Role","_key":"50554","_from":"33016","_to":"33011"} +{"$label":"ACTS_IN","name":"Ethel Tucker","type":"Role","_key":"50553","_from":"33015","_to":"33011"} +{"$label":"ACTS_IN","name":"Dale Tucker","type":"Role","_key":"50552","_from":"33014","_to":"33011"} +{"$label":"ACTS_IN","name":"Brett Tucker","type":"Role","_key":"50551","_from":"33013","_to":"33011"} +{"$label":"ACTS_IN","name":"D.J. Tucker","type":"Role","_key":"50550","_from":"33012","_to":"33011"} +{"$label":"ACTS_IN","name":"John Crichton","type":"Role","_key":"97346","_from":"33012","_to":"57329"} +{"$label":"ACTS_IN","name":"Cameron Mitchell","type":"Role","_key":"91952","_from":"33012","_to":"54247"} +{"$label":"ACTS_IN","name":"Captain of the Achilles","type":"Role","_key":"91903","_from":"33012","_to":"54222"} +{"$label":"ACTS_IN","name":"Mikey Racini (aka Johnny Rebel)","type":"Role","_key":"113767","_from":"33013","_to":"67037"} +{"$label":"ACTS_IN","name":"Erno Windt","type":"Role","_key":"70675","_from":"33014","_to":"42998"} +{"$label":"ACTS_IN","name":"Moonpie","type":"Role","_key":"70124","_from":"33014","_to":"42746"} +{"$label":"ACTS_IN","name":"Earl","type":"Role","_key":"115804","_from":"33016","_to":"68174"} +{"$label":"ACTS_IN","name":"Frank Bones","type":"Role","_key":"94877","_from":"33016","_to":"55861"} +{"$label":"ACTS_IN","name":"Baronin von Eck","type":"Role","_key":"50575","_from":"33034","_to":"33017"} +{"$label":"ACTS_IN","name":"Gr\u00e4fin Stauff","type":"Role","_key":"50574","_from":"33033","_to":"33017"} +{"$label":"ACTS_IN","name":"Kleinr\u00f6schen","type":"Role","_key":"50573","_from":"33032","_to":"33017"} +{"$label":"ACTS_IN","name":"Hofnarr","type":"Role","_key":"50572","_from":"33031","_to":"33017"} +{"$label":"ACTS_IN","name":"Zeremonienmeister","type":"Role","_key":"50571","_from":"33030","_to":"33017"} +{"$label":"ACTS_IN","name":"J\u00e4ger","type":"Role","_key":"50570","_from":"33029","_to":"33017"} +{"$label":"ACTS_IN","name":"Meier","type":"Role","_key":"50569","_from":"33028","_to":"33017"} +{"$label":"ACTS_IN","name":"K\u00fcchenjunge","type":"Role","_key":"50568","_from":"33027","_to":"33017"} +{"$label":"ACTS_IN","name":"Wirtschafterin","type":"Role","_key":"50567","_from":"33026","_to":"33017"} +{"$label":"ACTS_IN","name":"Vitek","type":"Role","_key":"50566","_from":"33025","_to":"33017"} +{"$label":"ACTS_IN","name":"Kamil","type":"Role","_key":"50565","_from":"33024","_to":"33017"} +{"$label":"ACTS_IN","name":"Pr\u00e4zeptor","type":"Role","_key":"50564","_from":"33023","_to":"33017"} +{"$label":"ACTS_IN","name":"Vinzek","type":"Role","_key":"50563","_from":"33022","_to":"33017"} +{"$label":"ACTS_IN","name":"Dora","type":"Role","_key":"50562","_from":"33021","_to":"33017"} +{"$label":"ACTS_IN","name":"kr\u00e1lovna","type":"Role","_key":"50561","_from":"33020","_to":"33017"} +{"$label":"ACTS_IN","name":"princ","type":"Role","_key":"50558","_from":"33019","_to":"33017"} +{"$label":"DIRECTED","_key":"50556","_from":"33018","_to":"33017"} +{"$label":"DIRECTED","_key":"50576","_from":"33018","_to":"33035"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"93815","_from":"33019","_to":"55228"} +{"$label":"ACTS_IN","name":"Karel","type":"Role","_key":"50581","_from":"33022","_to":"33035"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"118446","_from":"33026","_to":"69634"} +{"$label":"ACTS_IN","name":"Frau auf dem Markt","type":"Role","_key":"93808","_from":"33033","_to":"55218"} +{"$label":"ACTS_IN","name":"Bertik","type":"Role","_key":"50579","_from":"33037","_to":"33035"} +{"$label":"ACTS_IN","name":"Dr Jindrich Mr\u00e1cek","type":"Role","_key":"50577","_from":"33036","_to":"33035"} +{"$label":"ACTS_IN","name":"strojv\u016fdce Smejkal","type":"Role","_key":"121114","_from":"33036","_to":"71127"} +{"$label":"ACTS_IN","name":"Vojta","type":"Role","_key":"50583","_from":"33036","_to":"33038"} +{"$label":"ACTS_IN","name":"Tonka","type":"Role","_key":"50586","_from":"33042","_to":"33038"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"50585","_from":"33041","_to":"33038"} +{"$label":"ACTS_IN","name":"Terina","type":"Role","_key":"50584","_from":"33040","_to":"33038"} +{"$label":"DIRECTED","_key":"50582","_from":"33039","_to":"33038"} +{"$label":"ACTS_IN","name":"Le commissaire Laurence","type":"Role","_key":"50594","_from":"33045","_to":"33043"} +{"$label":"DIRECTED","_key":"50587","_from":"33044","_to":"33043"} +{"$label":"DIRECTED","_key":"106445","_from":"33044","_to":"62707"} +{"$label":"ACTS_IN","name":"Magali Brunel","type":"Role","_key":"101525","_from":"33045","_to":"59761"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"101337","_from":"33045","_to":"59657"} +{"$label":"ACTS_IN","name":"Jacob Zion","type":"Role","_key":"50602","_from":"33048","_to":"33046"} +{"$label":"ACTS_IN","name":"Ram Oren","type":"Role","_key":"50601","_from":"33047","_to":"33046"} +{"$label":"ACTS_IN","name":"Majak","type":"Role","_key":"118415","_from":"33048","_to":"69611"} +{"$label":"ACTS_IN","name":"Keith 'Cherokee' Mandon","type":"Role","_key":"115601","_from":"33048","_to":"68053"} +{"$label":"ACTS_IN","name":"Lt. Perry","type":"Role","_key":"50611","_from":"33052","_to":"33049"} +{"$label":"ACTS_IN","name":"Black Cloud","type":"Role","_key":"50610","_from":"33051","_to":"33049"} +{"$label":"ACTS_IN","name":"Commander Dan Thurman","type":"Role","_key":"50608","_from":"33050","_to":"33049"} +{"$label":"ACTS_IN","name":"Luisa Brand","type":"Role","_key":"50616","_from":"33055","_to":"33053"} +{"$label":"DIRECTED","_key":"50613","_from":"33054","_to":"33053"} +{"$label":"ACTS_IN","name":"TV Journalist","type":"Role","_key":"50627","_from":"33065","_to":"33056"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"50625","_from":"33064","_to":"33056"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"50624","_from":"33063","_to":"33056"} +{"$label":"ACTS_IN","name":"Gabrielle Lemorne","type":"Role","_key":"50623","_from":"33062","_to":"33056"} +{"$label":"ACTS_IN","name":"Denise Lemorne","type":"Role","_key":"50622","_from":"33061","_to":"33056"} +{"$label":"ACTS_IN","name":"Simone Lemorne","type":"Role","_key":"50621","_from":"33060","_to":"33056"} +{"$label":"ACTS_IN","name":"Lieneke","type":"Role","_key":"50620","_from":"33059","_to":"33056"} +{"$label":"ACTS_IN","name":"Saskia Wagter","type":"Role","_key":"50619","_from":"33058","_to":"33056"} +{"$label":"ACTS_IN","name":"Rex Hofman","type":"Role","_key":"50618","_from":"33057","_to":"33056"} +{"$label":"ACTS_IN","name":"Johanna Reiss","type":"Role","_key":"95980","_from":"33058","_to":"56429"} +{"$label":"ACTS_IN","name":"Pvt. Charlie Dale","type":"Role","_key":"50652","_from":"33074","_to":"33066"} +{"$label":"ACTS_IN","name":"Melanesian Villager","type":"Role","_key":"50651","_from":"33073","_to":"33066"} +{"$label":"ACTS_IN","name":"Cpl. Queen","type":"Role","_key":"50649","_from":"33072","_to":"33066"} +{"$label":"ACTS_IN","name":"1st Lt. Band","type":"Role","_key":"50648","_from":"33071","_to":"33066"} +{"$label":"ACTS_IN","name":"Cpl. Thorne","type":"Role","_key":"50645","_from":"33070","_to":"33066"} +{"$label":"ACTS_IN","name":"Pvt. Henry","type":"Role","_key":"50644","_from":"33069","_to":"33066"} +{"$label":"ACTS_IN","name":"Lt. Col. Billig","type":"Role","_key":"50642","_from":"33068","_to":"33066"} +{"$label":"ACTS_IN","name":"Pvt. Tella","type":"Role","_key":"50640","_from":"33067","_to":"33066"} +{"$label":"ACTS_IN","name":"Broker","type":"Role","_key":"98946","_from":"33067","_to":"58292"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"50662","_from":"33079","_to":"33075"} +{"$label":"ACTS_IN","name":"Greger Krona","type":"Role","_key":"50661","_from":"33078","_to":"33075"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"50659","_from":"33077","_to":"33075"} +{"$label":"DIRECTED","_key":"50658","_from":"33076","_to":"33075"} +{"$label":"DIRECTED","_key":"53245","_from":"33076","_to":"34435"} +{"$label":"ACTS_IN","name":"Cecilia Algotsdotter","type":"Role","_key":"94790","_from":"33077","_to":"55826"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"90555","_from":"33077","_to":"53486"} +{"$label":"ACTS_IN","name":"Wennerstr\u00f6m","type":"Role","_key":"104557","_from":"33078","_to":"61500"} +{"$label":"ACTS_IN","name":"Woman with money, from \"Notater om k\u00e6rligheden\" 1989 featured in segment \"Obstruction #4 - The Perfect Human","type":"Role","_key":"89670","_from":"33079","_to":"53067"} +{"$label":"ACTS_IN","name":"Dorothy Johnson","type":"Role","_key":"50682","_from":"33087","_to":"33081"} +{"$label":"ACTS_IN","name":"Uncle Walter Ling","type":"Role","_key":"50681","_from":"33086","_to":"33081"} +{"$label":"ACTS_IN","name":"Miss Ettinger","type":"Role","_key":"50680","_from":"33085","_to":"33081"} +{"$label":"ACTS_IN","name":"Barney Thatcher","type":"Role","_key":"50679","_from":"33084","_to":"33081"} +{"$label":"ACTS_IN","name":"Sue-Lin","type":"Role","_key":"50676","_from":"33083","_to":"33081"} +{"$label":"ACTS_IN","name":"Diane Warren","type":"Role","_key":"50674","_from":"33082","_to":"33081"} +{"$label":"ACTS_IN","name":"Lt. Dolores Crandall, RN","type":"Role","_key":"55370","_from":"33082","_to":"35299"} +{"$label":"ACTS_IN","name":"Elena de la Madrid","type":"Role","_key":"116243","_from":"33087","_to":"68438"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"50689","_from":"33092","_to":"33088"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"50688","_from":"33091","_to":"33088"} +{"$label":"ACTS_IN","name":"Thomas Mollison","type":"Role","_key":"50685","_from":"33090","_to":"33088"} +{"$label":"DIRECTED","_key":"50683","_from":"33089","_to":"33088"} +{"$label":"ACTS_IN","name":"Eric Elisi","type":"Role","_key":"50695","_from":"33097","_to":"33093"} +{"$label":"ACTS_IN","name":"Jarrod","type":"Role","_key":"50692","_from":"33096","_to":"33093"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"50691","_from":"33095","_to":"33093"} +{"$label":"DIRECTED","_key":"50690","_from":"33094","_to":"33093"} +{"$label":"ACTS_IN","name":"Mr. Va'a","type":"Role","_key":"100278","_from":"33097","_to":"59136"} +{"$label":"ACTS_IN","name":"Hamlet","type":"Role","_key":"50704","_from":"33101","_to":"33098"} +{"$label":"ACTS_IN","name":"Simo","type":"Role","_key":"50703","_from":"33100","_to":"33098"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"50699","_from":"33099","_to":"33098"} +{"$label":"ACTS_IN","name":"Martin, Nicks Manager","type":"Role","_key":"50719","_from":"33107","_to":"33102"} +{"$label":"ACTS_IN","name":"Major Crumpler","type":"Role","_key":"50718","_from":"33106","_to":"33102"} +{"$label":"ACTS_IN","name":"Chocolate Mousse","type":"Role","_key":"50716","_from":"33105","_to":"33102"} +{"$label":"ACTS_IN","name":"Du Quois","type":"Role","_key":"50714","_from":"33104","_to":"33102"} +{"$label":"ACTS_IN","name":"Hillary Flammond","type":"Role","_key":"50709","_from":"33103","_to":"33102"} +{"$label":"DIRECTED","_key":"50729","_from":"33113","_to":"33108"} +{"$label":"ACTS_IN","name":"Dr. Ratzenberger","type":"Role","_key":"50728","_from":"33112","_to":"33108"} +{"$label":"ACTS_IN","name":"Red Rover","type":"Role","_key":"50727","_from":"33111","_to":"33108"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"50726","_from":"33110","_to":"33108"} +{"$label":"ACTS_IN","name":"Solo","type":"Role","_key":"50723","_from":"33109","_to":"33108"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"105439","_from":"33111","_to":"62031"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"50747","_from":"33124","_to":"33114"} +{"$label":"ACTS_IN","name":"Parker","type":"Role","_key":"50744","_from":"33123","_to":"33114"} +{"$label":"ACTS_IN","name":"Rimmer","type":"Role","_key":"50743","_from":"33122","_to":"33114"} +{"$label":"ACTS_IN","name":"Die Bestie","type":"Role","_key":"50740","_from":"33121","_to":"33114"} +{"$label":"ACTS_IN","name":"Sharpe","type":"Role","_key":"50739","_from":"33120","_to":"33114"} +{"$label":"ACTS_IN","name":"Jack Merchant","type":"Role","_key":"50738","_from":"33119","_to":"33114"} +{"$label":"ACTS_IN","name":"Auguste","type":"Role","_key":"50737","_from":"33118","_to":"33114"} +{"$label":"ACTS_IN","name":"Duc de L'Isle","type":"Role","_key":"50736","_from":"33117","_to":"33114"} +{"$label":"ACTS_IN","name":"Genevieve L'Merchant","type":"Role","_key":"50733","_from":"33116","_to":"33114"} +{"$label":"DIRECTED","_key":"50730","_from":"33115","_to":"33114"} +{"$label":"ACTS_IN","name":"Henry \"Uh-Huh\" Rogers","type":"Role","_key":"66525","_from":"33119","_to":"41127"} +{"$label":"ACTS_IN","name":"Laurel","type":"Role","_key":"120391","_from":"33124","_to":"70723"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"112287","_from":"33124","_to":"66300"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"91086","_from":"33124","_to":"53744"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"90526","_from":"33124","_to":"53475"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"70733","_from":"33124","_to":"43015"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"68773","_from":"33124","_to":"42138"} +{"$label":"ACTS_IN","name":"Pinhead","type":"Role","_key":"52366","_from":"33124","_to":"34079"} +{"$label":"ACTS_IN","name":"Lead Cenobite (Pinhead)","type":"Role","_key":"51956","_from":"33124","_to":"33875"} +{"$label":"ACTS_IN","name":"Hyacinthe","type":"Role","_key":"50756","_from":"33127","_to":"33125"} +{"$label":"ACTS_IN","name":"Yves Mourousi","type":"Role","_key":"50755","_from":"33126","_to":"33125"} +{"$label":"ACTS_IN","name":"la directrice de l'\u00e9cole","type":"Role","_key":"50768","_from":"33133","_to":"33128"} +{"$label":"ACTS_IN","name":"Mauricette","type":"Role","_key":"50766","_from":"33132","_to":"33128"} +{"$label":"ACTS_IN","name":"S\u00e9verine Longuet","type":"Role","_key":"50763","_from":"33131","_to":"33128"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"50762","_from":"33130","_to":"33128"} +{"$label":"ACTS_IN","name":"Michel Davenne","type":"Role","_key":"50761","_from":"33129","_to":"33128"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"62427","_from":"33130","_to":"39328"} +{"$label":"ACTS_IN","name":"Marylin","type":"Role","_key":"114469","_from":"33132","_to":"67433"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"89161","_from":"33133","_to":"52806"} +{"$label":"ACTS_IN","name":"Michael Cunningham","type":"Role","_key":"50785","_from":"33140","_to":"33134"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"50784","_from":"33139","_to":"33134"} +{"$label":"ACTS_IN","name":"Don Vandenberg","type":"Role","_key":"50782","_from":"33138","_to":"33134"} +{"$label":"ACTS_IN","name":"Richard Trelawney","type":"Role","_key":"50781","_from":"33137","_to":"33134"} +{"$label":"ACTS_IN","name":"Buddy Repperton","type":"Role","_key":"50778","_from":"33136","_to":"33134"} +{"$label":"ACTS_IN","name":"Regina Cunningham","type":"Role","_key":"50776","_from":"33135","_to":"33134"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102665","_from":"33138","_to":"60399"} +{"$label":"DIRECTED","_key":"50786","_from":"33142","_to":"33141"} +{"$label":"DIRECTED","_key":"50787","_from":"33144","_to":"33143"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"50802","_from":"33150","_to":"33145"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"50800","_from":"33149","_to":"33145"} +{"$label":"ACTS_IN","name":"Matthieu","type":"Role","_key":"50799","_from":"33148","_to":"33145"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"50798","_from":"33147","_to":"33145"} +{"$label":"DIRECTED","_key":"50794","_from":"33146","_to":"33145"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"93871","_from":"33150","_to":"55271"} +{"$label":"ACTS_IN","name":"Mariska","type":"Role","_key":"50812","_from":"33159","_to":"33153"} +{"$label":"ACTS_IN","name":"Lajos T\u00f3th","type":"Role","_key":"50811","_from":"33158","_to":"33153"} +{"$label":"ACTS_IN","name":"Agika","type":"Role","_key":"50810","_from":"33157","_to":"33153"} +{"$label":"ACTS_IN","name":"Brieftr\u00e4ger","type":"Role","_key":"50809","_from":"33156","_to":"33153"} +{"$label":"ACTS_IN","name":"Major","type":"Role","_key":"50808","_from":"33155","_to":"33153"} +{"$label":"DIRECTED","_key":"50807","_from":"33154","_to":"33153"} +{"$label":"DIRECTED","_key":"50813","_from":"33154","_to":"33160"} +{"$label":"ACTS_IN","name":"Antal Konr\u00e1d","type":"Role","_key":"50819","_from":"33166","_to":"33160"} +{"$label":"ACTS_IN","name":"Cellat\u00e1rs","type":"Role","_key":"50818","_from":"33165","_to":"33160"} +{"$label":"ACTS_IN","name":"\u00c1goston doktor","type":"Role","_key":"50817","_from":"33164","_to":"33160"} +{"$label":"ACTS_IN","name":"Pelle Gyula","type":"Role","_key":"50816","_from":"33163","_to":"33160"} +{"$label":"ACTS_IN","name":"Hannover Istv\u00e1n","type":"Role","_key":"50815","_from":"33162","_to":"33160"} +{"$label":"ACTS_IN","name":"Netti","type":"Role","_key":"50814","_from":"33161","_to":"33160"} +{"$label":"ACTS_IN","name":"Kosztol\u00e1nyi","type":"Role","_key":"50826","_from":"33172","_to":"33167"} +{"$label":"ACTS_IN","name":"Kl\u00e1ra Rh\u00e9dey","type":"Role","_key":"50825","_from":"33171","_to":"33167"} +{"$label":"ACTS_IN","name":"Ilse","type":"Role","_key":"50824","_from":"33170","_to":"33167"} +{"$label":"ACTS_IN","name":"Psych\u00e9","type":"Role","_key":"50821","_from":"33169","_to":"33167"} +{"$label":"DIRECTED","_key":"50820","_from":"33168","_to":"33167"} +{"$label":"ACTS_IN","name":"narrator","type":"Role","_key":"50832","_from":"33178","_to":"33173"} +{"$label":"ACTS_IN","name":"Jenda","type":"Role","_key":"50831","_from":"33177","_to":"33173"} +{"$label":"ACTS_IN","name":"Petr","type":"Role","_key":"50830","_from":"33176","_to":"33173"} +{"$label":"ACTS_IN","name":"Ton\u00edk","type":"Role","_key":"50829","_from":"33175","_to":"33173"} +{"$label":"ACTS_IN","name":"Jirka","type":"Role","_key":"50828","_from":"33174","_to":"33173"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"50843","_from":"33184","_to":"33179"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"50842","_from":"33183","_to":"33179"} +{"$label":"ACTS_IN","name":"Angie Ostrowiski","type":"Role","_key":"50835","_from":"33182","_to":"33179"} +{"$label":"ACTS_IN","name":"Kate Holbrook","type":"Role","_key":"50834","_from":"33181","_to":"33179"} +{"$label":"DIRECTED","_key":"50833","_from":"33180","_to":"33179"} +{"$label":"ACTS_IN","name":"Ms. Norbury","type":"Role","_key":"64681","_from":"33181","_to":"40287"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"57678","_from":"33181","_to":"36513"} +{"$label":"ACTS_IN","name":"Gayle O'Brien","type":"Role","_key":"117658","_from":"33182","_to":"69161"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"93634","_from":"33182","_to":"55125"} +{"$label":"ACTS_IN","name":"Fairchild Van Waldenberg","type":"Role","_key":"58501","_from":"33182","_to":"36974"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"57681","_from":"33182","_to":"36513"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"61693","_from":"33183","_to":"38858"} +{"$label":"ACTS_IN","name":"Dean Solomon","type":"Role","_key":"60245","_from":"33183","_to":"38004"} +{"$label":"ACTS_IN","name":"Philosophical and Hymn-Singing Astronaut","type":"Role","_key":"98467","_from":"33184","_to":"58017"} +{"$label":"ACTS_IN","name":"Gustave","type":"Role","_key":"58718","_from":"33184","_to":"37088"} +{"$label":"DIRECTED","_key":"50849","_from":"33191","_to":"33185"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"50848","_from":"33190","_to":"33185"} +{"$label":"ACTS_IN","name":"Detective Murphy","type":"Role","_key":"50847","_from":"33189","_to":"33185"} +{"$label":"ACTS_IN","name":"Niko","type":"Role","_key":"50846","_from":"33188","_to":"33185"} +{"$label":"ACTS_IN","name":"Enzo","type":"Role","_key":"50845","_from":"33187","_to":"33185"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"50844","_from":"33186","_to":"33185"} +{"$label":"DIRECTED","_key":"50854","_from":"33196","_to":"33193"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"50853","_from":"33195","_to":"33193"} +{"$label":"ACTS_IN","name":"Glitter","type":"Role","_key":"50851","_from":"33194","_to":"33193"} +{"$label":"ACTS_IN","name":"gitarzysta w gospodzie","type":"Role","_key":"50865","_from":"33204","_to":"33197"} +{"$label":"ACTS_IN","name":"Donna Rebecca Uzeda","type":"Role","_key":"50862","_from":"33203","_to":"33197"} +{"$label":"ACTS_IN","name":"Hrabia Pena Flor","type":"Role","_key":"50860","_from":"33202","_to":"33197"} +{"$label":"ACTS_IN","name":"Don Pedro","type":"Role","_key":"50859","_from":"33201","_to":"33197"} +{"$label":"ACTS_IN","name":"Donna Frasquetta","type":"Role","_key":"50858","_from":"33200","_to":"33197"} +{"$label":"ACTS_IN","name":"Emina","type":"Role","_key":"50857","_from":"33199","_to":"33197"} +{"$label":"DIRECTED","_key":"50855","_from":"33198","_to":"33197"} +{"$label":"ACTS_IN","name":"Krininalhauptmeister Julius","type":"Role","_key":"50874","_from":"33208","_to":"33205"} +{"$label":"ACTS_IN","name":"Klara","type":"Role","_key":"50873","_from":"33207","_to":"33205"} +{"$label":"ACTS_IN","name":"Nick T\u00e4schner","type":"Role","_key":"50871","_from":"33206","_to":"33205"} +{"$label":"ACTS_IN","name":"The Toadie","type":"Role","_key":"50881","_from":"33210","_to":"33209"} +{"$label":"DIRECTED","_key":"50887","_from":"33213","_to":"33211"} +{"$label":"ACTS_IN","name":"Katja Sommer","type":"Role","_key":"50886","_from":"33212","_to":"33211"} +{"$label":"DIRECTED","_key":"71877","_from":"33213","_to":"43491"} +{"$label":"ACTS_IN","name":"moster Ulla","type":"Role","_key":"50896","_from":"33219","_to":"33215"} +{"$label":"ACTS_IN","name":"Ingemars Mutter","type":"Role","_key":"50895","_from":"33218","_to":"33215"} +{"$label":"ACTS_IN","name":"Gunnar","type":"Role","_key":"50894","_from":"33217","_to":"33215"} +{"$label":"ACTS_IN","name":"Ingemar","type":"Role","_key":"50893","_from":"33216","_to":"33215"} +{"$label":"ACTS_IN","name":"Grandmother Ingrid","type":"Role","_key":"117597","_from":"33218","_to":"69134"} +{"$label":"ACTS_IN","name":"Cowboy Joey","type":"Role","_key":"50911","_from":"33227","_to":"33222"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"50909","_from":"33226","_to":"33222"} +{"$label":"ACTS_IN","name":"Paula","type":"Role","_key":"50907","_from":"33225","_to":"33222"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"50906","_from":"33224","_to":"33222"} +{"$label":"ACTS_IN","name":"Lily Thelen","type":"Role","_key":"50905","_from":"33223","_to":"33222"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"53656","_from":"33226","_to":"34607"} +{"$label":"ACTS_IN","name":"Lt. Pattison","type":"Role","_key":"106200","_from":"33227","_to":"62549"} +{"$label":"DIRECTED","_key":"50917","_from":"33231","_to":"33228"} +{"$label":"ACTS_IN","name":"Heinrich","type":"Role","_key":"50915","_from":"33230","_to":"33228"} +{"$label":"ACTS_IN","name":"Poldi von P\u00f6sel","type":"Role","_key":"50914","_from":"33229","_to":"33228"} +{"$label":"DIRECTED","_key":"90445","_from":"33231","_to":"53431"} +{"$label":"DIRECTED","_key":"50922","_from":"33236","_to":"33232"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"50920","_from":"33235","_to":"33232"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"50919","_from":"33234","_to":"33232"} +{"$label":"ACTS_IN","name":"Octave","type":"Role","_key":"50918","_from":"33233","_to":"33232"} +{"$label":"ACTS_IN","name":"Brice de Nice","type":"Role","_key":"111979","_from":"33233","_to":"66100"} +{"$label":"ACTS_IN","name":"Hubert Bonisseur de la Bath, OSS 117","type":"Role","_key":"105095","_from":"33233","_to":"61854"} +{"$label":"ACTS_IN","name":"Hubert Bonisseur de La Bath, alias OSS 117","type":"Role","_key":"103374","_from":"33233","_to":"60813"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96029","_from":"33233","_to":"56448"} +{"$label":"ACTS_IN","name":"Cash","type":"Role","_key":"95702","_from":"33233","_to":"56295"} +{"$label":"ACTS_IN","name":"Diane \/ Lisa","type":"Role","_key":"118230","_from":"33234","_to":"69499"} +{"$label":"ACTS_IN","name":"Elodie","type":"Role","_key":"105254","_from":"33234","_to":"61942"} +{"$label":"ACTS_IN","name":"Nadia Sancho","type":"Role","_key":"105029","_from":"33234","_to":"61813"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"59885","_from":"33234","_to":"37818"} +{"$label":"ACTS_IN","name":"Ludo","type":"Role","_key":"115918","_from":"33235","_to":"68242"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"100090","_from":"33235","_to":"59039"} +{"$label":"DIRECTED","_key":"62716","_from":"33236","_to":"39431"} +{"$label":"DIRECTED","_key":"59875","_from":"33236","_to":"37818"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"59892","_from":"33236","_to":"37818"} +{"$label":"ACTS_IN","name":"Giulio Andreotti","type":"Role","_key":"50929","_from":"33240","_to":"33238"} +{"$label":"DIRECTED","_key":"50928","_from":"33239","_to":"33238"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"51266","_from":"33240","_to":"33426"} +{"$label":"ACTS_IN","name":"Managing director of the 'double agency'","type":"Role","_key":"50934","_from":"33244","_to":"33241"} +{"$label":"ACTS_IN","name":"Olympia Chavez","type":"Role","_key":"50933","_from":"33243","_to":"33241"} +{"$label":"DIRECTED","_key":"50930","_from":"33242","_to":"33241"} +{"$label":"DIRECTED","_key":"72243","_from":"33242","_to":"43650"} +{"$label":"DIRECTED","_key":"71751","_from":"33242","_to":"43433"} +{"$label":"DIRECTED","_key":"71582","_from":"33242","_to":"43360"} +{"$label":"DIRECTED","_key":"71075","_from":"33242","_to":"43154"} +{"$label":"DIRECTED","_key":"71054","_from":"33242","_to":"43146"} +{"$label":"DIRECTED","_key":"70178","_from":"33242","_to":"42774"} +{"$label":"DIRECTED","_key":"53585","_from":"33242","_to":"34582"} +{"$label":"ACTS_IN","name":"Agent Lowry","type":"Role","_key":"50939","_from":"33246","_to":"33245"} +{"$label":"ACTS_IN","name":"Warner Huntington III","type":"Role","_key":"50944","_from":"33248","_to":"33247"} +{"$label":"ACTS_IN","name":"Pastor John","type":"Role","_key":"112802","_from":"33248","_to":"66602"} +{"$label":"ACTS_IN","name":"Odell","type":"Role","_key":"90487","_from":"33248","_to":"53461"} +{"$label":"ACTS_IN","name":"Travis Stark","type":"Role","_key":"88698","_from":"33248","_to":"52559"} +{"$label":"ACTS_IN","name":"Pvt. Jim Paxton","type":"Role","_key":"65060","_from":"33248","_to":"40427"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"58180","_from":"33248","_to":"36805"} +{"$label":"ACTS_IN","name":"Matt Tollman","type":"Role","_key":"52707","_from":"33248","_to":"34216"} +{"$label":"DIRECTED","_key":"50989","_from":"33276","_to":"33249"} +{"$label":"DIRECTED","_key":"50988","_from":"33283","_to":"33249"} +{"$label":"DIRECTED","_key":"50987","_from":"33282","_to":"33249"} +{"$label":"DIRECTED","_key":"50986","_from":"33281","_to":"33249"} +{"$label":"DIRECTED","_key":"50985","_from":"33280","_to":"33249"} +{"$label":"ACTS_IN","name":"Board Room Doctor","type":"Role","_key":"50984","_from":"33279","_to":"33249"} +{"$label":"ACTS_IN","name":"Female Hallway Agent","type":"Role","_key":"50983","_from":"33278","_to":"33249"} +{"$label":"ACTS_IN","name":"FBI Agent","type":"Role","_key":"50982","_from":"33277","_to":"33249"} +{"$label":"ACTS_IN","name":"Man sitting in hospital hallway","type":"Role","_key":"50981","_from":"33276","_to":"33249"} +{"$label":"ACTS_IN","name":"D-Man","type":"Role","_key":"50980","_from":"33275","_to":"33249"} +{"$label":"ACTS_IN","name":"Tow Truck Driver","type":"Role","_key":"50979","_from":"33274","_to":"33249"} +{"$label":"ACTS_IN","name":"Sheriff Horton","type":"Role","_key":"50978","_from":"33273","_to":"33249"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"50977","_from":"33272","_to":"33249"} +{"$label":"ACTS_IN","name":"Anesthesiologist","type":"Role","_key":"50976","_from":"33271","_to":"33249"} +{"$label":"ACTS_IN","name":"Whispering Priest","type":"Role","_key":"50975","_from":"33270","_to":"33249"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"50974","_from":"33269","_to":"33249"} +{"$label":"ACTS_IN","name":"Surgeon","type":"Role","_key":"50973","_from":"33268","_to":"33249"} +{"$label":"ACTS_IN","name":"O.R. Nurse","type":"Role","_key":"50972","_from":"33267","_to":"33249"} +{"$label":"ACTS_IN","name":"Hallway Agent","type":"Role","_key":"50971","_from":"33266","_to":"33249"} +{"$label":"ACTS_IN","name":"Doctor's Colleague","type":"Role","_key":"50970","_from":"33265","_to":"33249"} +{"$label":"ACTS_IN","name":"Special Agent in Charge","type":"Role","_key":"50969","_from":"33264","_to":"33249"} +{"$label":"ACTS_IN","name":"1st Cop","type":"Role","_key":"50968","_from":"33263","_to":"33249"} +{"$label":"ACTS_IN","name":"Suited Man","type":"Role","_key":"50967","_from":"33262","_to":"33249"} +{"$label":"ACTS_IN","name":"On Screen Doctor","type":"Role","_key":"50966","_from":"33261","_to":"33249"} +{"$label":"ACTS_IN","name":"Monica Bannan","type":"Role","_key":"50965","_from":"33260","_to":"33249"} +{"$label":"ACTS_IN","name":"Feed Store Proprietor","type":"Role","_key":"50964","_from":"33259","_to":"33249"} +{"$label":"ACTS_IN","name":"Elderly Gent","type":"Role","_key":"50963","_from":"33258","_to":"33249"} +{"$label":"ACTS_IN","name":"Slight Man","type":"Role","_key":"50962","_from":"33257","_to":"33249"} +{"$label":"ACTS_IN","name":"Male Assistant","type":"Role","_key":"50961","_from":"33256","_to":"33249"} +{"$label":"ACTS_IN","name":"Female Assistant","type":"Role","_key":"50960","_from":"33255","_to":"33249"} +{"$label":"ACTS_IN","name":"Blair Fearon","type":"Role","_key":"50959","_from":"33254","_to":"33249"} +{"$label":"ACTS_IN","name":"Margaret Fearon","type":"Role","_key":"50958","_from":"33253","_to":"33249"} +{"$label":"ACTS_IN","name":"Christian Fearon","type":"Role","_key":"50957","_from":"33252","_to":"33249"} +{"$label":"ACTS_IN","name":"Franz Tomczeszyn (1st Abductor)","type":"Role","_key":"50956","_from":"33251","_to":"33249"} +{"$label":"ACTS_IN","name":"Father Ybarra","type":"Role","_key":"50953","_from":"33250","_to":"33249"} +{"$label":"ACTS_IN","name":"Fishin' Hole Guy","type":"Role","_key":"96617","_from":"33259","_to":"56824"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"93127","_from":"33259","_to":"54874"} +{"$label":"ACTS_IN","name":"Uptight Mom","type":"Role","_key":"52187","_from":"33260","_to":"34004"} +{"$label":"ACTS_IN","name":"Psychiatrist \/ Social Worker","type":"Role","_key":"93110","_from":"33261","_to":"54874"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"109136","_from":"33264","_to":"64473"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"68772","_from":"33264","_to":"42138"} +{"$label":"ACTS_IN","name":"Tibby's Mother","type":"Role","_key":"56670","_from":"33264","_to":"35987"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110322","_from":"33268","_to":"65191"} +{"$label":"DIRECTED","_key":"50991","_from":"33286","_to":"33284"} +{"$label":"DIRECTED","_key":"50990","_from":"33285","_to":"33284"} +{"$label":"ACTS_IN","name":"Casper (McFadden)","type":"Role","_key":"50998","_from":"33289","_to":"33288"} +{"$label":"ACTS_IN","name":"Young Einon","type":"Role","_key":"51010","_from":"33291","_to":"33290"} +{"$label":"ACTS_IN","name":"Gem Thief #3","type":"Role","_key":"68675","_from":"33291","_to":"42086"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"56528","_from":"33291","_to":"35892"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"51025","_from":"33304","_to":"33292"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"51024","_from":"33303","_to":"33292"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"51023","_from":"33302","_to":"33292"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"51022","_from":"33301","_to":"33292"} +{"$label":"ACTS_IN","name":"Rabah","type":"Role","_key":"51021","_from":"33300","_to":"33292"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"51020","_from":"33299","_to":"33292"} +{"$label":"ACTS_IN","name":"Cherif","type":"Role","_key":"51019","_from":"33298","_to":"33292"} +{"$label":"ACTS_IN","name":"Wei","type":"Role","_key":"51018","_from":"33297","_to":"33292"} +{"$label":"ACTS_IN","name":"Khoumba","type":"Role","_key":"51017","_from":"33296","_to":"33292"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"51016","_from":"33295","_to":"33292"} +{"$label":"ACTS_IN","name":"Souleyman","type":"Role","_key":"51015","_from":"33294","_to":"33292"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Marin","type":"Role","_key":"51014","_from":"33293","_to":"33292"} +{"$label":"DIRECTED","_key":"51038","_from":"33308","_to":"33306"} +{"$label":"ACTS_IN","name":"Anne Marie Vicksey","type":"Role","_key":"51036","_from":"33307","_to":"33306"} +{"$label":"DIRECTED","_key":"101764","_from":"33308","_to":"59888"} +{"$label":"ACTS_IN","name":"Sarah Whittle (young)","type":"Role","_key":"51045","_from":"33311","_to":"33309"} +{"$label":"ACTS_IN","name":"Mrs. Thomas the Realtor","type":"Role","_key":"51044","_from":"33310","_to":"33309"} +{"$label":"ACTS_IN","name":"Audrey Duncan","type":"Role","_key":"60810","_from":"33310","_to":"38408"} +{"$label":"ACTS_IN","name":"Domiani","type":"Role","_key":"51054","_from":"33314","_to":"33312"} +{"$label":"ACTS_IN","name":"Tackman","type":"Role","_key":"51053","_from":"33313","_to":"33312"} +{"$label":"ACTS_IN","name":"Ken Masters","type":"Role","_key":"71421","_from":"33313","_to":"43306"} +{"$label":"ACTS_IN","name":"Miklo","type":"Role","_key":"55855","_from":"33313","_to":"35537"} +{"$label":"ACTS_IN","name":"Monsieur du Lac","type":"Role","_key":"63402","_from":"33314","_to":"39720"} +{"$label":"ACTS_IN","name":"Taxi-Fahrer","type":"Role","_key":"51065","_from":"33320","_to":"33315"} +{"$label":"ACTS_IN","name":"Rasmus","type":"Role","_key":"51063","_from":"33319","_to":"33315"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"51062","_from":"33318","_to":"33315"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"51061","_from":"33317","_to":"33315"} +{"$label":"DIRECTED","_key":"51057","_from":"33316","_to":"33315"} +{"$label":"ACTS_IN","name":"Ralf","type":"Role","_key":"88598","_from":"33320","_to":"52498"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51078","_from":"33333","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51077","_from":"33332","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51076","_from":"33331","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51075","_from":"33330","_to":"33321"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51074","_from":"33329","_to":"33321"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51073","_from":"33328","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51072","_from":"33327","_to":"33321"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51071","_from":"33326","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51070","_from":"33325","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51069","_from":"33324","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51068","_from":"33323","_to":"33321"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51067","_from":"33322","_to":"33321"} +{"$label":"ACTS_IN","name":"Sonia Bern","type":"Role","_key":"51099","_from":"33342","_to":"33334"} +{"$label":"ACTS_IN","name":"Gale Benson","type":"Role","_key":"51094","_from":"33341","_to":"33334"} +{"$label":"ACTS_IN","name":"Michael X","type":"Role","_key":"51092","_from":"33340","_to":"33334"} +{"$label":"ACTS_IN","name":"Roy Given","type":"Role","_key":"51091","_from":"33339","_to":"33334"} +{"$label":"ACTS_IN","name":"Phillip Lisle","type":"Role","_key":"51090","_from":"33338","_to":"33334"} +{"$label":"ACTS_IN","name":"Gerald Pyke","type":"Role","_key":"51088","_from":"33337","_to":"33334"} +{"$label":"ACTS_IN","name":"Eddie Burton","type":"Role","_key":"51086","_from":"33336","_to":"33334"} +{"$label":"ACTS_IN","name":"Bambas","type":"Role","_key":"51085","_from":"33335","_to":"33334"} +{"$label":"ACTS_IN","name":"Captain Mavros","type":"Role","_key":"106236","_from":"33335","_to":"62573"} +{"$label":"ACTS_IN","name":"Beckinsale","type":"Role","_key":"60492","_from":"33338","_to":"38170"} +{"$label":"ACTS_IN","name":"Nikolaus Johann van Beethoven","type":"Role","_key":"95985","_from":"33339","_to":"56429"} +{"$label":"DIRECTED","_key":"51106","_from":"33345","_to":"33343"} +{"$label":"ACTS_IN","name":"Lu Schnitman","type":"Role","_key":"51104","_from":"33344","_to":"33343"} +{"$label":"DIRECTED","_key":"118619","_from":"33345","_to":"69747"} +{"$label":"DIRECTED","_key":"72441","_from":"33345","_to":"43722"} +{"$label":"DIRECTED","_key":"72339","_from":"33345","_to":"43689"} +{"$label":"DIRECTED","_key":"68591","_from":"33345","_to":"42053"} +{"$label":"DIRECTED","_key":"66434","_from":"33345","_to":"41073"} +{"$label":"DIRECTED","_key":"51119","_from":"33351","_to":"33347"} +{"$label":"ACTS_IN","name":"Dr. T. Hallen","type":"Role","_key":"51118","_from":"33350","_to":"33347"} +{"$label":"ACTS_IN","name":"Lieutenant Dave","type":"Role","_key":"51116","_from":"33349","_to":"33347"} +{"$label":"ACTS_IN","name":"Jane Martin","type":"Role","_key":"51115","_from":"33348","_to":"33347"} +{"$label":"DIRECTED","_key":"51138","_from":"33357","_to":"33354"} +{"$label":"ACTS_IN","name":"Lamont","type":"Role","_key":"51137","_from":"33356","_to":"33354"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"51136","_from":"33355","_to":"33354"} +{"$label":"DIRECTED","_key":"73034","_from":"33357","_to":"43957"} +{"$label":"ACTS_IN","name":"Sato","type":"Role","_key":"51146","_from":"33364","_to":"33359"} +{"$label":"ACTS_IN","name":"Taro","type":"Role","_key":"51145","_from":"33363","_to":"33359"} +{"$label":"ACTS_IN","name":"Toshio","type":"Role","_key":"51144","_from":"33362","_to":"33359"} +{"$label":"ACTS_IN","name":"Chozen","type":"Role","_key":"51143","_from":"33361","_to":"33359"} +{"$label":"ACTS_IN","name":"Miyagi's Father","type":"Role","_key":"51142","_from":"33360","_to":"33359"} +{"$label":"ACTS_IN","name":"Pestilence","type":"Role","_key":"109305","_from":"33361","_to":"64573"} +{"$label":"ACTS_IN","name":"Yee Sook Ree","type":"Role","_key":"95779","_from":"33361","_to":"56331"} +{"$label":"ACTS_IN","name":"Doctor Lee","type":"Role","_key":"56124","_from":"33361","_to":"35670"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"99371","_from":"33363","_to":"58556"} +{"$label":"DIRECTED","_key":"51155","_from":"33369","_to":"33367"} +{"$label":"ACTS_IN","name":"Christie Boner","type":"Role","_key":"51152","_from":"33368","_to":"33367"} +{"$label":"ACTS_IN","name":"Shannon Muir","type":"Role","_key":"119672","_from":"33368","_to":"70289"} +{"$label":"ACTS_IN","name":"Camille Shafer","type":"Role","_key":"115039","_from":"33368","_to":"67739"} +{"$label":"ACTS_IN","name":"Laurie Bennett","type":"Role","_key":"97951","_from":"33368","_to":"57685"} +{"$label":"ACTS_IN","name":"Natalie Voss","type":"Role","_key":"65097","_from":"33368","_to":"40441"} +{"$label":"ACTS_IN","name":"Buffy Summers","type":"Role","_key":"61700","_from":"33368","_to":"38864"} +{"$label":"ACTS_IN","name":"Diana Palmer","type":"Role","_key":"57198","_from":"33368","_to":"36287"} +{"$label":"DIRECTED","_key":"98703","_from":"33369","_to":"58170"} +{"$label":"DIRECTED","_key":"68884","_from":"33369","_to":"42187"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"51162","_from":"33374","_to":"33370"} +{"$label":"ACTS_IN","name":"Officer Forbes","type":"Role","_key":"51159","_from":"33373","_to":"33370"} +{"$label":"ACTS_IN","name":"Lt. Sam Baffett","type":"Role","_key":"51158","_from":"33372","_to":"33370"} +{"$label":"ACTS_IN","name":"Detective Kimura","type":"Role","_key":"51157","_from":"33371","_to":"33370"} +{"$label":"DIRECTED","_key":"51165","_from":"33376","_to":"33375"} +{"$label":"DIRECTED","_key":"51174","_from":"33380","_to":"33379"} +{"$label":"DIRECTED","_key":"51176","_from":"33383","_to":"33381"} +{"$label":"DIRECTED","_key":"51175","_from":"33382","_to":"33381"} +{"$label":"ACTS_IN","name":"Mike Parker","type":"Role","_key":"51184","_from":"33387","_to":"33384"} +{"$label":"ACTS_IN","name":"Sheriff Samantha Parker","type":"Role","_key":"51183","_from":"33386","_to":"33384"} +{"$label":"DIRECTED","_key":"51181","_from":"33385","_to":"33384"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"120389","_from":"33386","_to":"70723"} +{"$label":"ACTS_IN","name":"Amy Klein","type":"Role","_key":"112281","_from":"33386","_to":"66300"} +{"$label":"ACTS_IN","name":"Sam Finney","type":"Role","_key":"96460","_from":"33387","_to":"56725"} +{"$label":"ACTS_IN","name":"Young Matt","type":"Role","_key":"54134","_from":"33387","_to":"34788"} +{"$label":"DIRECTED","_key":"51186","_from":"33389","_to":"33388"} +{"$label":"DIRECTED","_key":"51201","_from":"33393","_to":"33391"} +{"$label":"ACTS_IN","name":"Garth Algar","type":"Role","_key":"51197","_from":"33392","_to":"33391"} +{"$label":"ACTS_IN","name":"Maurice L. Pogue","type":"Role","_key":"116977","_from":"33392","_to":"68856"} +{"$label":"ACTS_IN","name":"Pistachio Disguisey","type":"Role","_key":"97372","_from":"33392","_to":"57346"} +{"$label":"ACTS_IN","name":"Richie Evans","type":"Role","_key":"67492","_from":"33392","_to":"41566"} +{"$label":"ACTS_IN","name":"Mime Waiter","type":"Role","_key":"67433","_from":"33392","_to":"41533"} +{"$label":"ACTS_IN","name":"George Kellogg","type":"Role","_key":"63494","_from":"33392","_to":"39759"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"55500","_from":"33392","_to":"35362"} +{"$label":"ACTS_IN","name":"Garth Algar","type":"Role","_key":"51204","_from":"33392","_to":"33394"} +{"$label":"DIRECTED","_key":"98034","_from":"33393","_to":"57727"} +{"$label":"DIRECTED","_key":"90131","_from":"33393","_to":"53299"} +{"$label":"DIRECTED","_key":"67511","_from":"33393","_to":"41572"} +{"$label":"DIRECTED","_key":"66540","_from":"33393","_to":"41127"} +{"$label":"DIRECTED","_key":"51202","_from":"33395","_to":"33394"} +{"$label":"DIRECTED","_key":"95881","_from":"33395","_to":"56389"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"51222","_from":"33405","_to":"33397"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"51221","_from":"33404","_to":"33397"} +{"$label":"ACTS_IN","name":"Lonnie","type":"Role","_key":"51220","_from":"33403","_to":"33397"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"51219","_from":"33402","_to":"33397"} +{"$label":"ACTS_IN","name":"Brody","type":"Role","_key":"51218","_from":"33401","_to":"33397"} +{"$label":"ACTS_IN","name":"Darryl","type":"Role","_key":"51216","_from":"33400","_to":"33397"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"51215","_from":"33399","_to":"33397"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"51212","_from":"33398","_to":"33397"} +{"$label":"ACTS_IN","name":"Young Mark","type":"Role","_key":"95084","_from":"33402","_to":"55965"} +{"$label":"ACTS_IN","name":"Young Farmer","type":"Role","_key":"51229","_from":"33410","_to":"33406"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"51228","_from":"33409","_to":"33406"} +{"$label":"ACTS_IN","name":"Double Agent","type":"Role","_key":"51227","_from":"33408","_to":"33406"} +{"$label":"DIRECTED","_key":"51225","_from":"33407","_to":"33406"} +{"$label":"DIRECTED","_key":"51235","_from":"33407","_to":"33416"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"51234","_from":"33415","_to":"33411"} +{"$label":"ACTS_IN","name":"Kate Alden","type":"Role","_key":"51233","_from":"33414","_to":"33411"} +{"$label":"ACTS_IN","name":"Det. Somersen","type":"Role","_key":"51232","_from":"33413","_to":"33411"} +{"$label":"DIRECTED","_key":"51230","_from":"33412","_to":"33411"} +{"$label":"ACTS_IN","name":"Megan Wheeler","type":"Role","_key":"51243","_from":"33418","_to":"33417"} +{"$label":"ACTS_IN","name":"Epifan\u00edo D\u00edaz","type":"Role","_key":"51256","_from":"33425","_to":"33420"} +{"$label":"ACTS_IN","name":"Esteban","type":"Role","_key":"51255","_from":"33424","_to":"33420"} +{"$label":"ACTS_IN","name":"Alejandro Ramirez","type":"Role","_key":"51254","_from":"33423","_to":"33420"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"51252","_from":"33422","_to":"33420"} +{"$label":"ACTS_IN","name":"Fidel Castro","type":"Role","_key":"51251","_from":"33421","_to":"33420"} +{"$label":"ACTS_IN","name":"Jorge Ruiz","type":"Role","_key":"98044","_from":"33423","_to":"57729"} +{"$label":"ACTS_IN","name":"Chille","type":"Role","_key":"96834","_from":"33423","_to":"56940"} +{"$label":"ACTS_IN","name":"Mateo Reyes","type":"Role","_key":"51711","_from":"33423","_to":"33743"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"51274","_from":"33442","_to":"33426"} +{"$label":"ACTS_IN","name":"Ciro","type":"Role","_key":"51273","_from":"33441","_to":"33426"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"51272","_from":"33440","_to":"33426"} +{"$label":"ACTS_IN","name":"Xian","type":"Role","_key":"51271","_from":"33439","_to":"33426"} +{"$label":"ACTS_IN","name":"Iavarone","type":"Role","_key":"51270","_from":"33438","_to":"33426"} +{"$label":"ACTS_IN","name":"Pasquale","type":"Role","_key":"51269","_from":"33437","_to":"33426"} +{"$label":"ACTS_IN","name":"Dante Serini","type":"Role","_key":"51268","_from":"33436","_to":"33426"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"51267","_from":"33435","_to":"33426"} +{"$label":"ACTS_IN","name":"Scissionista","type":"Role","_key":"51265","_from":"33434","_to":"33426"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"51264","_from":"33433","_to":"33426"} +{"$label":"ACTS_IN","name":"Don Ciro","type":"Role","_key":"51263","_from":"33432","_to":"33426"} +{"$label":"ACTS_IN","name":"Pitbull","type":"Role","_key":"51262","_from":"33431","_to":"33426"} +{"$label":"ACTS_IN","name":"Boxer","type":"Role","_key":"51261","_from":"33430","_to":"33426"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"51260","_from":"33429","_to":"33426"} +{"$label":"ACTS_IN","name":"Toto","type":"Role","_key":"51259","_from":"33428","_to":"33426"} +{"$label":"DIRECTED","_key":"51258","_from":"33427","_to":"33426"} +{"$label":"ACTS_IN","name":"Alfonso","type":"Role","_key":"113389","_from":"33436","_to":"66788"} +{"$label":"ACTS_IN","name":"Ravnen","type":"Role","_key":"51282","_from":"33449","_to":"33443"} +{"$label":"ACTS_IN","name":"Bodil","type":"Role","_key":"51281","_from":"33448","_to":"33443"} +{"$label":"ACTS_IN","name":"Spex","type":"Role","_key":"51280","_from":"33447","_to":"33443"} +{"$label":"ACTS_IN","name":"Ketty Selmer","type":"Role","_key":"51278","_from":"33446","_to":"33443"} +{"$label":"ACTS_IN","name":"Winther","type":"Role","_key":"51277","_from":"33445","_to":"33443"} +{"$label":"DIRECTED","_key":"51275","_from":"33444","_to":"33443"} +{"$label":"DIRECTED","_key":"106677","_from":"33444","_to":"62865"} +{"$label":"DIRECTED","_key":"102360","_from":"33444","_to":"60227"} +{"$label":"ACTS_IN","name":"Maja","type":"Role","_key":"106680","_from":"33446","_to":"62865"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"106063","_from":"33446","_to":"62457"} +{"$label":"ACTS_IN","name":"Peter schou","type":"Role","_key":"106488","_from":"33449","_to":"62738"} +{"$label":"ACTS_IN","name":"Necromancer","type":"Role","_key":"95495","_from":"33449","_to":"56171"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"51299","_from":"33457","_to":"33450"} +{"$label":"ACTS_IN","name":"Patient","type":"Role","_key":"51298","_from":"33456","_to":"33450"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"51297","_from":"33455","_to":"33450"} +{"$label":"ACTS_IN","name":"Frank Grant","type":"Role","_key":"51296","_from":"33454","_to":"33450"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"51295","_from":"33453","_to":"33450"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"51294","_from":"33452","_to":"33450"} +{"$label":"DIRECTED","_key":"51286","_from":"33451","_to":"33450"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92409","_from":"33452","_to":"54549"} +{"$label":"ACTS_IN","name":"Alien Fan","type":"Role","_key":"56566","_from":"33452","_to":"35892"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"62868","_from":"33454","_to":"39502"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"51304","_from":"33459","_to":"33458"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"51303","_from":"33462","_to":"33458"} +{"$label":"ACTS_IN","name":"Dror Harazi","type":"Role","_key":"51302","_from":"33461","_to":"33458"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"51301","_from":"33460","_to":"33458"} +{"$label":"DIRECTED","_key":"51300","_from":"33459","_to":"33458"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"51311","_from":"33465","_to":"33463"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"51309","_from":"33464","_to":"33463"} +{"$label":"ACTS_IN","name":"Jimi","type":"Role","_key":"51314","_from":"33468","_to":"33466"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"51313","_from":"33467","_to":"33466"} +{"$label":"ACTS_IN","name":"Elodie Dumoulin","type":"Role","_key":"89678","_from":"33467","_to":"53081"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51325","_from":"33470","_to":"33469"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51330","_from":"33475","_to":"33471"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51329","_from":"33474","_to":"33471"} +{"$label":"DIRECTED","_key":"51327","_from":"33473","_to":"33471"} +{"$label":"DIRECTED","_key":"51326","_from":"33472","_to":"33471"} +{"$label":"DIRECTED","_key":"90730","_from":"33473","_to":"53552"} +{"$label":"ACTS_IN","name":"Buckingham","type":"Role","_key":"105456","_from":"33474","_to":"62042"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"102734","_from":"33474","_to":"60438"} +{"$label":"ACTS_IN","name":"Paola","type":"Role","_key":"69918","_from":"33474","_to":"42667"} +{"$label":"ACTS_IN","name":"Mathilde Uran","type":"Role","_key":"65879","_from":"33474","_to":"40763"} +{"$label":"ACTS_IN","name":"Valentine Lefort","type":"Role","_key":"59969","_from":"33474","_to":"37860"} +{"$label":"DIRECTED","_key":"51331","_from":"33477","_to":"33476"} +{"$label":"DIRECTED","_key":"51334","_from":"33479","_to":"33478"} +{"$label":"ACTS_IN","name":"Vendeuse","type":"Role","_key":"51350","_from":"33481","_to":"33480"} +{"$label":"DIRECTED","_key":"51351","_from":"33483","_to":"33482"} +{"$label":"ACTS_IN","name":"Delivery Guy","type":"Role","_key":"51359","_from":"33489","_to":"33484"} +{"$label":"ACTS_IN","name":"Security Officer","type":"Role","_key":"51357","_from":"33488","_to":"33484"} +{"$label":"ACTS_IN","name":"Young Simon","type":"Role","_key":"51355","_from":"33487","_to":"33484"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"51353","_from":"33486","_to":"33484"} +{"$label":"DIRECTED","_key":"51352","_from":"33485","_to":"33484"} +{"$label":"DIRECTED","_key":"108846","_from":"33485","_to":"64332"} +{"$label":"DIRECTED","_key":"61770","_from":"33485","_to":"38889"} +{"$label":"DIRECTED","_key":"56146","_from":"33485","_to":"35683"} +{"$label":"DIRECTED","_key":"51361","_from":"33491","_to":"33490"} +{"$label":"DIRECTED","_key":"51362","_from":"33493","_to":"33492"} +{"$label":"ACTS_IN","name":"Tia Lala","type":"Role","_key":"51371","_from":"33500","_to":"33494"} +{"$label":"ACTS_IN","name":"Candita","type":"Role","_key":"51370","_from":"33499","_to":"33494"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"51368","_from":"33498","_to":"33494"} +{"$label":"ACTS_IN","name":"Josefina","type":"Role","_key":"51367","_from":"33497","_to":"33494"} +{"$label":"ACTS_IN","name":"Ver\u00f3nica","type":"Role","_key":"51366","_from":"33496","_to":"33494"} +{"$label":"DIRECTED","_key":"51365","_from":"33495","_to":"33494"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"68169","_from":"33499","_to":"41863"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"65972","_from":"33499","_to":"40811"} +{"$label":"ACTS_IN","name":"Sokol","type":"Role","_key":"51377","_from":"33506","_to":"33501"} +{"$label":"ACTS_IN","name":"Fabio","type":"Role","_key":"51376","_from":"33505","_to":"33501"} +{"$label":"ACTS_IN","name":"Lorna","type":"Role","_key":"51374","_from":"33504","_to":"33501"} +{"$label":"DIRECTED","_key":"51373","_from":"33503","_to":"33501"} +{"$label":"DIRECTED","_key":"51372","_from":"33502","_to":"33501"} +{"$label":"DIRECTED","_key":"70143","_from":"33502","_to":"42759"} +{"$label":"DIRECTED","_key":"70138","_from":"33502","_to":"42757"} +{"$label":"DIRECTED","_key":"70144","_from":"33503","_to":"42759"} +{"$label":"DIRECTED","_key":"70137","_from":"33503","_to":"42757"} +{"$label":"ACTS_IN","name":"Salvi","type":"Role","_key":"88759","_from":"33505","_to":"52597"} +{"$label":"ACTS_IN","name":"Riquet","type":"Role","_key":"70141","_from":"33505","_to":"42757"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"51387","_from":"33516","_to":"33507"} +{"$label":"ACTS_IN","name":"Abogado de Oficio","type":"Role","_key":"51386","_from":"33515","_to":"33507"} +{"$label":"ACTS_IN","name":"Perito Psic\u00f3logo","type":"Role","_key":"51385","_from":"33514","_to":"33507"} +{"$label":"ACTS_IN","name":"Ugo Casman","type":"Role","_key":"51384","_from":"33513","_to":"33507"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"51383","_from":"33512","_to":"33507"} +{"$label":"ACTS_IN","name":"Tom\u00e1s VI","type":"Role","_key":"51382","_from":"33511","_to":"33507"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"51380","_from":"33510","_to":"33507"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"51379","_from":"33509","_to":"33507"} +{"$label":"DIRECTED","_key":"51378","_from":"33508","_to":"33507"} +{"$label":"ACTS_IN","name":"Emmanuelle","type":"Role","_key":"51393","_from":"33520","_to":"33517"} +{"$label":"ACTS_IN","name":"Yasmine","type":"Role","_key":"51391","_from":"33519","_to":"33517"} +{"$label":"DIRECTED","_key":"51388","_from":"33518","_to":"33517"} +{"$label":"ACTS_IN","name":"Le\u00efla \/ Chadia","type":"Role","_key":"118233","_from":"33519","_to":"69499"} +{"$label":"ACTS_IN","name":"D\u00eanis","type":"Role","_key":"51400","_from":"33525","_to":"33521"} +{"$label":"ACTS_IN","name":"Reginaldo","type":"Role","_key":"51399","_from":"33524","_to":"33521"} +{"$label":"ACTS_IN","name":"Dinho","type":"Role","_key":"51398","_from":"33523","_to":"33521"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51397","_from":"33522","_to":"33521"} +{"$label":"DIRECTED","_key":"51401","_from":"33527","_to":"33526"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51404","_from":"33531","_to":"33528"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51403","_from":"33530","_to":"33528"} +{"$label":"DIRECTED","_key":"51402","_from":"33529","_to":"33528"} +{"$label":"ACTS_IN","name":"Intang","type":"Role","_key":"98475","_from":"33530","_to":"58027"} +{"$label":"ACTS_IN","name":"The Child","type":"Role","_key":"51411","_from":"33539","_to":"33532"} +{"$label":"ACTS_IN","name":"Bayram","type":"Role","_key":"51410","_from":"33538","_to":"33532"} +{"$label":"ACTS_IN","name":"Servet","type":"Role","_key":"51409","_from":"33537","_to":"33532"} +{"$label":"ACTS_IN","name":"Ismail","type":"Role","_key":"51408","_from":"33536","_to":"33532"} +{"$label":"ACTS_IN","name":"Hacer","type":"Role","_key":"51407","_from":"33535","_to":"33532"} +{"$label":"ACTS_IN","name":"Ey\u00fcp","type":"Role","_key":"51406","_from":"33534","_to":"33532"} +{"$label":"DIRECTED","_key":"51405","_from":"33533","_to":"33532"} +{"$label":"DIRECTED","_key":"116101","_from":"33533","_to":"68367"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"51416","_from":"33542","_to":"33540"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"51415","_from":"33541","_to":"33540"} +{"$label":"DIRECTED","_key":"51417","_from":"33544","_to":"33543"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51420","_from":"33547","_to":"33545"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51419","_from":"33546","_to":"33545"} +{"$label":"ACTS_IN","name":"Puya","type":"Role","_key":"51436","_from":"33554","_to":"33548"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"51435","_from":"33553","_to":"33548"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"51434","_from":"33552","_to":"33548"} +{"$label":"ACTS_IN","name":"Assassin Max Petridge","type":"Role","_key":"51433","_from":"33551","_to":"33548"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"51429","_from":"33550","_to":"33548"} +{"$label":"ACTS_IN","name":"The Repairman","type":"Role","_key":"51428","_from":"33549","_to":"33548"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"112284","_from":"33549","_to":"66300"} +{"$label":"ACTS_IN","name":"Teatime","type":"Role","_key":"72711","_from":"33549","_to":"43814"} +{"$label":"ACTS_IN","name":"Casting Director","type":"Role","_key":"104113","_from":"33552","_to":"61250"} +{"$label":"ACTS_IN","name":"Officer Roman Duda","type":"Role","_key":"121705","_from":"33553","_to":"71494"} +{"$label":"ACTS_IN","name":"Brason","type":"Role","_key":"92887","_from":"33553","_to":"54784"} +{"$label":"ACTS_IN","name":"Fletcher","type":"Role","_key":"63819","_from":"33553","_to":"39898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51447","_from":"33556","_to":"33555"} +{"$label":"ACTS_IN","name":"Victor Pascow","type":"Role","_key":"51452","_from":"33561","_to":"33557"} +{"$label":"ACTS_IN","name":"Jud Crandall","type":"Role","_key":"51450","_from":"33560","_to":"33557"} +{"$label":"ACTS_IN","name":"Louis Creed","type":"Role","_key":"51449","_from":"33559","_to":"33557"} +{"$label":"DIRECTED","_key":"51448","_from":"33558","_to":"33557"} +{"$label":"DIRECTED","_key":"66625","_from":"33558","_to":"41181"} +{"$label":"DIRECTED","_key":"62422","_from":"33558","_to":"39323"} +{"$label":"ACTS_IN","name":"Dr. Frank Richards","type":"Role","_key":"108394","_from":"33559","_to":"64080"} +{"$label":"ACTS_IN","name":"Clark Davis","type":"Role","_key":"108351","_from":"33559","_to":"64047"} +{"$label":"ACTS_IN","name":"Judge Chamberlain Haller","type":"Role","_key":"62894","_from":"33560","_to":"39510"} +{"$label":"ACTS_IN","name":"Doug Posey","type":"Role","_key":"107826","_from":"33561","_to":"63677"} +{"$label":"ACTS_IN","name":"Friend of Janice","type":"Role","_key":"51470","_from":"33571","_to":"33562"} +{"$label":"ACTS_IN","name":"Girl #2","type":"Role","_key":"51469","_from":"33570","_to":"33562"} +{"$label":"ACTS_IN","name":"Boy #2","type":"Role","_key":"51468","_from":"33569","_to":"33562"} +{"$label":"ACTS_IN","name":"Girl #1","type":"Role","_key":"51467","_from":"33568","_to":"33562"} +{"$label":"ACTS_IN","name":"Boy #1","type":"Role","_key":"51466","_from":"33567","_to":"33562"} +{"$label":"ACTS_IN","name":"Helicopter Winch Operator","type":"Role","_key":"51465","_from":"33566","_to":"33562"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"51463","_from":"33565","_to":"33562"} +{"$label":"ACTS_IN","name":"Boat Captain","type":"Role","_key":"51462","_from":"33564","_to":"33562"} +{"$label":"ACTS_IN","name":"Brenda Kerns","type":"Role","_key":"51461","_from":"33563","_to":"33562"} +{"$label":"ACTS_IN","name":"Steven Barrows","type":"Role","_key":"109986","_from":"33566","_to":"64987"} +{"$label":"ACTS_IN","name":"Juan Pedilla","type":"Role","_key":"66499","_from":"33566","_to":"41115"} +{"$label":"ACTS_IN","name":"Ens. David Barnes","type":"Role","_key":"59303","_from":"33567","_to":"37449"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"58736","_from":"33568","_to":"37102"} +{"$label":"ACTS_IN","name":"Salad Girl \/ Sarah","type":"Role","_key":"58546","_from":"33568","_to":"36989"} +{"$label":"ACTS_IN","name":"Slim Gordon","type":"Role","_key":"51475","_from":"33573","_to":"33572"} +{"$label":"ACTS_IN","name":"Dr. Tyler Voller","type":"Role","_key":"115730","_from":"33573","_to":"68140"} +{"$label":"ACTS_IN","name":"Ian Miellor","type":"Role","_key":"102448","_from":"33573","_to":"60287"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"92070","_from":"33573","_to":"54329"} +{"$label":"ACTS_IN","name":"Foreman (voice)","type":"Role","_key":"51493","_from":"33576","_to":"33574"} +{"$label":"ACTS_IN","name":"Muffy (voice)","type":"Role","_key":"51488","_from":"33575","_to":"33574"} +{"$label":"ACTS_IN","name":"Joyce Klaven","type":"Role","_key":"109430","_from":"33575","_to":"64647"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"101535","_from":"33575","_to":"59764"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"99070","_from":"33575","_to":"58364"} +{"$label":"ACTS_IN","name":"Judge Claire Whittaker","type":"Role","_key":"60183","_from":"33575","_to":"37970"} +{"$label":"ACTS_IN","name":"Prymatt Conehead","type":"Role","_key":"55022","_from":"33575","_to":"35160"} +{"$label":"ACTS_IN","name":"Teacher (segment \"Kid's Story\") (voice)","type":"Role","_key":"51512","_from":"33587","_to":"33580"} +{"$label":"ACTS_IN","name":"Michael Karl Popper aka The Kid","type":"Role","_key":"51510","_from":"33586","_to":"33580"} +{"$label":"DIRECTED","_key":"51508","_from":"33585","_to":"33580"} +{"$label":"DIRECTED","_key":"51506","_from":"33584","_to":"33580"} +{"$label":"DIRECTED","_key":"51505","_from":"33583","_to":"33580"} +{"$label":"DIRECTED","_key":"51504","_from":"33582","_to":"33580"} +{"$label":"DIRECTED","_key":"51503","_from":"33581","_to":"33580"} +{"$label":"DIRECTED","_key":"106597","_from":"33582","_to":"62814"} +{"$label":"DIRECTED","_key":"93379","_from":"33582","_to":"55001"} +{"$label":"DIRECTED","_key":"69008","_from":"33585","_to":"42240"} +{"$label":"ACTS_IN","name":"Fazio","type":"Role","_key":"119531","_from":"33587","_to":"70216"} +{"$label":"ACTS_IN","name":"Alan Elbourne \/ Priest (Voice)","type":"Role","_key":"106610","_from":"33587","_to":"62814"} +{"$label":"ACTS_IN","name":"Jezelle Gay Hartman","type":"Role","_key":"51517","_from":"33592","_to":"33588"} +{"$label":"ACTS_IN","name":"The Creeper","type":"Role","_key":"51516","_from":"33591","_to":"33588"} +{"$label":"ACTS_IN","name":"Patricia 'Trish' Jenner","type":"Role","_key":"51514","_from":"33590","_to":"33588"} +{"$label":"DIRECTED","_key":"51513","_from":"33589","_to":"33588"} +{"$label":"DIRECTED","_key":"95886","_from":"33589","_to":"56393"} +{"$label":"DIRECTED","_key":"90923","_from":"33589","_to":"53634"} +{"$label":"DIRECTED","_key":"69295","_from":"33589","_to":"42368"} +{"$label":"ACTS_IN","name":"Karen Baldwin","type":"Role","_key":"60882","_from":"33590","_to":"38466"} +{"$label":"ACTS_IN","name":"The Creeper","type":"Role","_key":"69297","_from":"33591","_to":"42368"} +{"$label":"ACTS_IN","name":"Depot Supervisor","type":"Role","_key":"57221","_from":"33592","_to":"36289"} +{"$label":"ACTS_IN","name":"Pete Dunham","type":"Role","_key":"51521","_from":"33595","_to":"33593"} +{"$label":"DIRECTED","_key":"51518","_from":"33594","_to":"33593"} +{"$label":"DIRECTED","_key":"92227","_from":"33594","_to":"54425"} +{"$label":"ACTS_IN","name":"Embry Larkin","type":"Role","_key":"106580","_from":"33595","_to":"62806"} +{"$label":"ACTS_IN","name":"Patric","type":"Role","_key":"55739","_from":"33595","_to":"35462"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51525","_from":"33598","_to":"33596"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"51524","_from":"33597","_to":"33596"} +{"$label":"ACTS_IN","name":"Dark Angel","type":"Role","_key":"54529","_from":"33597","_to":"34943"} +{"$label":"DIRECTED","_key":"51527","_from":"33601","_to":"33600"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"51539","_from":"33613","_to":"33602"} +{"$label":"ACTS_IN","name":"Henrik","type":"Role","_key":"51538","_from":"33612","_to":"33602"} +{"$label":"ACTS_IN","name":"Sonen","type":"Role","_key":"51537","_from":"33611","_to":"33602"} +{"$label":"ACTS_IN","name":"Cecilia","type":"Role","_key":"51536","_from":"33610","_to":"33602"} +{"$label":"ACTS_IN","name":"Olle","type":"Role","_key":"51534","_from":"33609","_to":"33602"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"51533","_from":"33608","_to":"33602"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"51532","_from":"33607","_to":"33602"} +{"$label":"ACTS_IN","name":"Leif","type":"Role","_key":"51531","_from":"33606","_to":"33602"} +{"$label":"ACTS_IN","name":"Linnea","type":"Role","_key":"51530","_from":"33605","_to":"33602"} +{"$label":"ACTS_IN","name":"Villmar","type":"Role","_key":"51529","_from":"33604","_to":"33602"} +{"$label":"DIRECTED","_key":"51528","_from":"33603","_to":"33602"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"100344","_from":"33605","_to":"59165"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51543","_from":"33617","_to":"33614"} +{"$label":"DIRECTED","_key":"51541","_from":"33616","_to":"33614"} +{"$label":"DIRECTED","_key":"51540","_from":"33615","_to":"33614"} +{"$label":"DIRECTED","_key":"51544","_from":"33619","_to":"33618"} +{"$label":"DIRECTED","_key":"51545","_from":"33621","_to":"33620"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"51549","_from":"33626","_to":"33622"} +{"$label":"ACTS_IN","name":"Fausto","type":"Role","_key":"51548","_from":"33625","_to":"33622"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"51547","_from":"33624","_to":"33622"} +{"$label":"DIRECTED","_key":"51546","_from":"33623","_to":"33622"} +{"$label":"DIRECTED","_key":"51550","_from":"33628","_to":"33627"} +{"$label":"DIRECTED","_key":"51551","_from":"33630","_to":"33629"} +{"$label":"DIRECTED","_key":"67771","_from":"33630","_to":"41659"} +{"$label":"DIRECTED","_key":"63549","_from":"33630","_to":"39778"} +{"$label":"DIRECTED","_key":"51552","_from":"33632","_to":"33631"} +{"$label":"DIRECTED","_key":"51553","_from":"33634","_to":"33633"} +{"$label":"ACTS_IN","name":"Kenji Sasaki","type":"Role","_key":"51558","_from":"33640","_to":"33636"} +{"$label":"ACTS_IN","name":"Takashi Sasaki","type":"Role","_key":"51557","_from":"33639","_to":"33636"} +{"$label":"ACTS_IN","name":"Megumi Sasaki","type":"Role","_key":"51556","_from":"33638","_to":"33636"} +{"$label":"DIRECTED","_key":"51554","_from":"33637","_to":"33636"} +{"$label":"ACTS_IN","name":"Yoko, Commercial Executive","type":"Role","_key":"107292","_from":"33638","_to":"63279"} +{"$label":"ACTS_IN","name":"Hiroko (segment \"Interior Design\")","type":"Role","_key":"51563","_from":"33643","_to":"33641"} +{"$label":"ACTS_IN","name":"Pizza-Delivery Girl (segment \"Shaking Tokyo\")","type":"Role","_key":"51562","_from":"33642","_to":"33641"} +{"$label":"ACTS_IN","name":"Taeko","type":"Role","_key":"120767","_from":"33642","_to":"70937"} +{"$label":"ACTS_IN","name":"Shiori Tsuda","type":"Role","_key":"109794","_from":"33642","_to":"64849"} +{"$label":"DIRECTED","_key":"51565","_from":"33645","_to":"33644"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51567","_from":"33648","_to":"33646"} +{"$label":"DIRECTED","_key":"51566","_from":"33647","_to":"33646"} +{"$label":"DIRECTED","_key":"111693","_from":"33647","_to":"65944"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117498","_from":"33648","_to":"69087"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"51577","_from":"33657","_to":"33649"} +{"$label":"ACTS_IN","name":"P'tit Louis","type":"Role","_key":"51576","_from":"33656","_to":"33649"} +{"$label":"ACTS_IN","name":"Madame Herchel","type":"Role","_key":"51575","_from":"33655","_to":"33649"} +{"$label":"ACTS_IN","name":"Enzo adolescent","type":"Role","_key":"51574","_from":"33654","_to":"33649"} +{"$label":"ACTS_IN","name":"Jean-Jacques","type":"Role","_key":"51573","_from":"33653","_to":"33649"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"51571","_from":"33652","_to":"33649"} +{"$label":"ACTS_IN","name":"Enzo","type":"Role","_key":"51570","_from":"33651","_to":"33649"} +{"$label":"DIRECTED","_key":"51568","_from":"33650","_to":"33649"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"88346","_from":"33653","_to":"52382"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107409","_from":"33655","_to":"63342"} +{"$label":"ACTS_IN","name":"Icky","type":"Role","_key":"51581","_from":"33660","_to":"33658"} +{"$label":"DIRECTED","_key":"51578","_from":"33659","_to":"33658"} +{"$label":"ACTS_IN","name":"Li Chuan","type":"Role","_key":"51585","_from":"33664","_to":"33661"} +{"$label":"ACTS_IN","name":"Wang Yao","type":"Role","_key":"51584","_from":"33663","_to":"33661"} +{"$label":"DIRECTED","_key":"51583","_from":"33662","_to":"33661"} +{"$label":"ACTS_IN","name":"Jiao Dapeng","type":"Role","_key":"98264","_from":"33663","_to":"57882"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"51603","_from":"33669","_to":"33668"} +{"$label":"ACTS_IN","name":"Michela Nardini","type":"Role","_key":"51609","_from":"33674","_to":"33671"} +{"$label":"ACTS_IN","name":"Stefano Nardini","type":"Role","_key":"51607","_from":"33673","_to":"33671"} +{"$label":"DIRECTED","_key":"51606","_from":"33672","_to":"33671"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"89438","_from":"33673","_to":"52953"} +{"$label":"ACTS_IN","name":"Blake","type":"Role","_key":"51623","_from":"33685","_to":"33675"} +{"$label":"ACTS_IN","name":"Young Doctor","type":"Role","_key":"51622","_from":"33684","_to":"33675"} +{"$label":"ACTS_IN","name":"Larry Bukheim","type":"Role","_key":"51621","_from":"33683","_to":"33675"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"51620","_from":"33682","_to":"33675"} +{"$label":"ACTS_IN","name":"Sheriff Deputy","type":"Role","_key":"51619","_from":"33681","_to":"33675"} +{"$label":"ACTS_IN","name":"Racist Client","type":"Role","_key":"51618","_from":"33680","_to":"33675"} +{"$label":"ACTS_IN","name":"Prison Gaurd","type":"Role","_key":"51617","_from":"33679","_to":"33675"} +{"$label":"ACTS_IN","name":"Steven's Brother","type":"Role","_key":"51616","_from":"33678","_to":"33675"} +{"$label":"DIRECTED","_key":"51611","_from":"33677","_to":"33675"} +{"$label":"DIRECTED","_key":"51610","_from":"33676","_to":"33675"} +{"$label":"DIRECTED","_key":"67154","_from":"33677","_to":"41435"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"51629","_from":"33691","_to":"33686"} +{"$label":"ACTS_IN","name":"Robert Stephenson","type":"Role","_key":"51628","_from":"33690","_to":"33686"} +{"$label":"ACTS_IN","name":"Scarlett O'Hara","type":"Role","_key":"51627","_from":"33689","_to":"33686"} +{"$label":"ACTS_IN","name":"Dr. Lloyd Steam","type":"Role","_key":"51626","_from":"33688","_to":"33686"} +{"$label":"ACTS_IN","name":"Dr. Eddie Steam#","type":"Role","_key":"51625","_from":"33687","_to":"33686"} +{"$label":"ACTS_IN","name":"Karl Haushofer","type":"Role","_key":"98066","_from":"33687","_to":"57739"} +{"$label":"ACTS_IN","name":"Kazue Fujiki","type":"Role","_key":"92811","_from":"33689","_to":"54755"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"51645","_from":"33697","_to":"33692"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"51644","_from":"33696","_to":"33692"} +{"$label":"ACTS_IN","name":"Jimmy McBride","type":"Role","_key":"51641","_from":"33695","_to":"33692"} +{"$label":"ACTS_IN","name":"Lucas Arno","type":"Role","_key":"51640","_from":"33694","_to":"33692"} +{"$label":"ACTS_IN","name":"Josh Learner","type":"Role","_key":"51636","_from":"33693","_to":"33692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51648","_from":"33700","_to":"33698"} +{"$label":"DIRECTED","_key":"51646","_from":"33699","_to":"33698"} +{"$label":"ACTS_IN","name":"Police K-9 officer","type":"Role","_key":"51699","_from":"33742","_to":"33701"} +{"$label":"ACTS_IN","name":"Theatergoer","type":"Role","_key":"51698","_from":"33741","_to":"33701"} +{"$label":"ACTS_IN","name":"Theater Guest","type":"Role","_key":"51697","_from":"33740","_to":"33701"} +{"$label":"ACTS_IN","name":"Theater patron","type":"Role","_key":"51696","_from":"33739","_to":"33701"} +{"$label":"ACTS_IN","name":"Inmate","type":"Role","_key":"51694","_from":"33738","_to":"33701"} +{"$label":"ACTS_IN","name":"Girl In Crowd #2","type":"Role","_key":"51693","_from":"33737","_to":"33701"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"51692","_from":"33736","_to":"33701"} +{"$label":"ACTS_IN","name":"Corrections Guard","type":"Role","_key":"51691","_from":"33735","_to":"33701"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"51690","_from":"33734","_to":"33701"} +{"$label":"ACTS_IN","name":"Visitor at hospital","type":"Role","_key":"51689","_from":"33733","_to":"33701"} +{"$label":"ACTS_IN","name":"Chain Gang Guard","type":"Role","_key":"51688","_from":"33732","_to":"33701"} +{"$label":"ACTS_IN","name":"Radio Caller (voice)","type":"Role","_key":"51687","_from":"33731","_to":"33701"} +{"$label":"ACTS_IN","name":"Lapd","type":"Role","_key":"51686","_from":"33730","_to":"33701"} +{"$label":"ACTS_IN","name":"KCOT Reporter","type":"Role","_key":"51685","_from":"33729","_to":"33701"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"51684","_from":"33728","_to":"33701"} +{"$label":"ACTS_IN","name":"Mug Shot Officer","type":"Role","_key":"51683","_from":"33727","_to":"33701"} +{"$label":"ACTS_IN","name":"ER Doctor","type":"Role","_key":"51682","_from":"33726","_to":"33701"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"51681","_from":"33725","_to":"33701"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"51680","_from":"33724","_to":"33701"} +{"$label":"ACTS_IN","name":"Jr exec","type":"Role","_key":"51679","_from":"33723","_to":"33701"} +{"$label":"ACTS_IN","name":"Guy In Back","type":"Role","_key":"51678","_from":"33722","_to":"33701"} +{"$label":"ACTS_IN","name":"Aaron Embrey","type":"Role","_key":"51677","_from":"33721","_to":"33701"} +{"$label":"ACTS_IN","name":"AA Convict #2","type":"Role","_key":"51676","_from":"33720","_to":"33701"} +{"$label":"ACTS_IN","name":"Yuppie Husband","type":"Role","_key":"51675","_from":"33719","_to":"33701"} +{"$label":"ACTS_IN","name":"News anchor","type":"Role","_key":"51674","_from":"33718","_to":"33701"} +{"$label":"ACTS_IN","name":"Police Chief","type":"Role","_key":"51673","_from":"33717","_to":"33701"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"51672","_from":"33716","_to":"33701"} +{"$label":"ACTS_IN","name":"Ice Cream Truck Kid #1","type":"Role","_key":"51671","_from":"33715","_to":"33701"} +{"$label":"ACTS_IN","name":"LAPD Officer","type":"Role","_key":"51670","_from":"33714","_to":"33701"} +{"$label":"ACTS_IN","name":"Hostage","type":"Role","_key":"51669","_from":"33713","_to":"33701"} +{"$label":"ACTS_IN","name":"Little Girl In Crowd","type":"Role","_key":"51667","_from":"33712","_to":"33701"} +{"$label":"ACTS_IN","name":"Reporter #2","type":"Role","_key":"51666","_from":"33711","_to":"33701"} +{"$label":"ACTS_IN","name":"Boy at Bus Stop","type":"Role","_key":"51665","_from":"33710","_to":"33701"} +{"$label":"ACTS_IN","name":"Hostage","type":"Role","_key":"51663","_from":"33709","_to":"33701"} +{"$label":"ACTS_IN","name":"Female Cop","type":"Role","_key":"51662","_from":"33708","_to":"33701"} +{"$label":"ACTS_IN","name":"White Coated Doctor","type":"Role","_key":"51661","_from":"33707","_to":"33701"} +{"$label":"ACTS_IN","name":"Female Exec","type":"Role","_key":"51660","_from":"33706","_to":"33701"} +{"$label":"ACTS_IN","name":"ER Nurse","type":"Role","_key":"51659","_from":"33705","_to":"33701"} +{"$label":"ACTS_IN","name":"Man Mountain","type":"Role","_key":"51658","_from":"33704","_to":"33701"} +{"$label":"ACTS_IN","name":"Fan","type":"Role","_key":"51656","_from":"33703","_to":"33701"} +{"$label":"ACTS_IN","name":"Hottie","type":"Role","_key":"51654","_from":"33702","_to":"33701"} +{"$label":"ACTS_IN","name":"Young Viet Cong","type":"Role","_key":"59286","_from":"33723","_to":"37437"} +{"$label":"ACTS_IN","name":"Goran","type":"Role","_key":"70199","_from":"33724","_to":"42782"} +{"$label":"ACTS_IN","name":"Hugh Hefner","type":"Role","_key":"70197","_from":"33724","_to":"42781"} +{"$label":"ACTS_IN","name":"Ted Koppel","type":"Role","_key":"93272","_from":"33725","_to":"54939"} +{"$label":"ACTS_IN","name":"Marco Vargas","type":"Role","_key":"51710","_from":"33746","_to":"33743"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"51709","_from":"33745","_to":"33743"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"51706","_from":"33744","_to":"33743"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113952","_from":"33744","_to":"67118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112543","_from":"33744","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112526","_from":"33744","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112516","_from":"33744","_to":"66439"} +{"$label":"ACTS_IN","name":"Emil Matasareanu","type":"Role","_key":"102014","_from":"33744","_to":"60025"} +{"$label":"ACTS_IN","name":"Denekin","type":"Role","_key":"70487","_from":"33744","_to":"42911"} +{"$label":"ACTS_IN","name":"Prison Guard #2","type":"Role","_key":"56514","_from":"33744","_to":"35891"} +{"$label":"ACTS_IN","name":"Ping Pung","type":"Role","_key":"99985","_from":"33745","_to":"58990"} +{"$label":"ACTS_IN","name":"Negrito","type":"Role","_key":"57283","_from":"33745","_to":"36323"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"51725","_from":"33753","_to":"33748"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"51724","_from":"33752","_to":"33748"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"51723","_from":"33751","_to":"33748"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"51722","_from":"33750","_to":"33748"} +{"$label":"DIRECTED","_key":"51721","_from":"33749","_to":"33748"} +{"$label":"ACTS_IN","name":"Sweet","type":"Role","_key":"51733","_from":"33760","_to":"33754"} +{"$label":"ACTS_IN","name":"Mole","type":"Role","_key":"51732","_from":"33759","_to":"33754"} +{"$label":"ACTS_IN","name":"Kida","type":"Role","_key":"51730","_from":"33758","_to":"33754"} +{"$label":"DIRECTED","_key":"51728","_from":"33757","_to":"33754"} +{"$label":"DIRECTED","_key":"51727","_from":"33756","_to":"33754"} +{"$label":"DIRECTED","_key":"51726","_from":"33755","_to":"33754"} +{"$label":"DIRECTED","_key":"109826","_from":"33756","_to":"64882"} +{"$label":"DIRECTED","_key":"93457","_from":"33756","_to":"55026"} +{"$label":"DIRECTED","_key":"110015","_from":"33757","_to":"65008"} +{"$label":"DIRECTED","_key":"107936","_from":"33757","_to":"63745"} +{"$label":"DIRECTED","_key":"93458","_from":"33757","_to":"55026"} +{"$label":"DIRECTED","_key":"68738","_from":"33757","_to":"42116"} +{"$label":"ACTS_IN","name":"Christy (voice) (as Cree Summer Francks)","type":"Role","_key":"121659","_from":"33758","_to":"71468"} +{"$label":"ACTS_IN","name":"Cleo","type":"Role","_key":"118474","_from":"33758","_to":"69645"} +{"$label":"ACTS_IN","name":"Tomax","type":"Role","_key":"112188","_from":"33759","_to":"66249"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"98602","_from":"33759","_to":"58106"} +{"$label":"ACTS_IN","name":"The Scarecrow","type":"Role","_key":"97190","_from":"33759","_to":"57172"} +{"$label":"ACTS_IN","name":"Gaetan 'The Mole' Moliere (","type":"Role","_key":"66355","_from":"33759","_to":"41042"} +{"$label":"ACTS_IN","name":"Pip Wingo","type":"Role","_key":"101120","_from":"33760","_to":"59581"} +{"$label":"ACTS_IN","name":"Hansen \/ Glenn (voice)","type":"Role","_key":"93346","_from":"33760","_to":"54987"} +{"$label":"ACTS_IN","name":"Deputy McBride","type":"Role","_key":"59436","_from":"33760","_to":"37532"} +{"$label":"ACTS_IN","name":"Rosalie Hale","type":"Role","_key":"51742","_from":"33764","_to":"33761"} +{"$label":"ACTS_IN","name":"Jacob Black","type":"Role","_key":"51740","_from":"33763","_to":"33761"} +{"$label":"ACTS_IN","name":"Carlisle Cullen","type":"Role","_key":"51737","_from":"33762","_to":"33761"} +{"$label":"ACTS_IN","name":"Carlisle Cullen","type":"Role","_key":"115488","_from":"33762","_to":"67997"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"112341","_from":"33762","_to":"66325"} +{"$label":"ACTS_IN","name":"Bob Walker","type":"Role","_key":"105641","_from":"33762","_to":"62181"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"102862","_from":"33762","_to":"60510"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"92296","_from":"33762","_to":"54469"} +{"$label":"ACTS_IN","name":"Det. Frank Turner","type":"Role","_key":"51908","_from":"33762","_to":"33857"} +{"$label":"ACTS_IN","name":"Jacob Black","type":"Role","_key":"115486","_from":"33763","_to":"67997"} +{"$label":"ACTS_IN","name":"Sharkboy","type":"Role","_key":"99017","_from":"33763","_to":"58332"} +{"$label":"ACTS_IN","name":"Rosalie Hale","type":"Role","_key":"115491","_from":"33764","_to":"67997"} +{"$label":"ACTS_IN","name":"Minerva 'Mini' Droggs","type":"Role","_key":"103962","_from":"33764","_to":"61155"} +{"$label":"ACTS_IN","name":"Shay Bettencourt","type":"Role","_key":"98590","_from":"33764","_to":"58103"} +{"$label":"ACTS_IN","name":"Evie Zamora","type":"Role","_key":"67356","_from":"33764","_to":"41513"} +{"$label":"ACTS_IN","name":"Kathy Alva","type":"Role","_key":"56790","_from":"33764","_to":"36065"} +{"$label":"ACTS_IN","name":"Jack's Wife","type":"Role","_key":"51748","_from":"33767","_to":"33765"} +{"$label":"ACTS_IN","name":"Mrs. O'Brien","type":"Role","_key":"51746","_from":"33766","_to":"33765"} +{"$label":"ACTS_IN","name":"Charlotte Ormand","type":"Role","_key":"115903","_from":"33766","_to":"68234"} +{"$label":"ACTS_IN","name":"Alice Abbott","type":"Role","_key":"91264","_from":"33767","_to":"53818"} +{"$label":"ACTS_IN","name":"Josie Marcus","type":"Role","_key":"88371","_from":"33767","_to":"52390"} +{"$label":"ACTS_IN","name":"Jennifer Pailery, M.D.","type":"Role","_key":"57204","_from":"33767","_to":"36288"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"51754","_from":"33771","_to":"33768"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"51750","_from":"33770","_to":"33768"} +{"$label":"DIRECTED","_key":"51749","_from":"33769","_to":"33768"} +{"$label":"DIRECTED","_key":"63452","_from":"33769","_to":"39744"} +{"$label":"ACTS_IN","name":"Pam Asbury","type":"Role","_key":"102641","_from":"33770","_to":"60385"} +{"$label":"ACTS_IN","name":"Mary Haskins","type":"Role","_key":"58055","_from":"33770","_to":"36729"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"51757","_from":"33773","_to":"33772"} +{"$label":"ACTS_IN","name":"Dr. Darcey","type":"Role","_key":"89213","_from":"33773","_to":"52826"} +{"$label":"DIRECTED","_key":"51765","_from":"33776","_to":"33774"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"51764","_from":"33775","_to":"33774"} +{"$label":"ACTS_IN","name":"Simon \/ Don Roritor \/ Cabbie \/ Gunther \/ Cop #1 \/ Nina Bedford \/ Melanie \/ Drill sergeant \/ White-trash woman","type":"Role","_key":"116072","_from":"33775","_to":"68352"} +{"$label":"DIRECTED","_key":"98232","_from":"33776","_to":"57867"} +{"$label":"DIRECTED","_key":"96546","_from":"33776","_to":"56725"} +{"$label":"DIRECTED","_key":"68255","_from":"33776","_to":"41905"} +{"$label":"DIRECTED","_key":"64451","_from":"33776","_to":"40161"} +{"$label":"DIRECTED","_key":"51770","_from":"33780","_to":"33777"} +{"$label":"ACTS_IN","name":"Franz Wahl","type":"Role","_key":"51769","_from":"33779","_to":"33777"} +{"$label":"ACTS_IN","name":"Hans-J\u00fcrgen Massaquoi","type":"Role","_key":"51767","_from":"33778","_to":"33777"} +{"$label":"ACTS_IN","name":"Martin Pries","type":"Role","_key":"71890","_from":"33779","_to":"43491"} +{"$label":"ACTS_IN","name":"Jennifer Desiderio","type":"Role","_key":"51775","_from":"33784","_to":"33781"} +{"$label":"ACTS_IN","name":"Caspar Quaid","type":"Role","_key":"51774","_from":"33783","_to":"33781"} +{"$label":"ACTS_IN","name":"Young Butterfield","type":"Role","_key":"51771","_from":"33782","_to":"33781"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"61740","_from":"33784","_to":"38878"} +{"$label":"ACTS_IN","name":"Dr. Bilderbeck","type":"Role","_key":"51781","_from":"33789","_to":"33785"} +{"$label":"ACTS_IN","name":"Dr. Pryor","type":"Role","_key":"51780","_from":"33788","_to":"33785"} +{"$label":"ACTS_IN","name":"Sylvia Van Buren","type":"Role","_key":"51778","_from":"33787","_to":"33785"} +{"$label":"ACTS_IN","name":"Dr. Clayton Forrester","type":"Role","_key":"51777","_from":"33786","_to":"33785"} +{"$label":"ACTS_IN","name":"roy Barrett, Treasury Agent","type":"Role","_key":"119858","_from":"33786","_to":"70384"} +{"$label":"ACTS_IN","name":"Wes Bonnell","type":"Role","_key":"101985","_from":"33786","_to":"60010"} +{"$label":"ACTS_IN","name":"Dr. Arthur Carrington","type":"Role","_key":"65778","_from":"33788","_to":"40713"} +{"$label":"DIRECTED","_key":"51789","_from":"33796","_to":"33790"} +{"$label":"ACTS_IN","name":"Terrorist","type":"Role","_key":"51788","_from":"33795","_to":"33790"} +{"$label":"ACTS_IN","name":"Van Buren","type":"Role","_key":"51787","_from":"33794","_to":"33790"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"51786","_from":"33793","_to":"33790"} +{"$label":"ACTS_IN","name":"Kate Triton","type":"Role","_key":"51784","_from":"33792","_to":"33790"} +{"$label":"ACTS_IN","name":"John Triton","type":"Role","_key":"51783","_from":"33791","_to":"33790"} +{"$label":"ACTS_IN","name":"Det. Danny Fisher","type":"Role","_key":"111224","_from":"33791","_to":"65683"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"110928","_from":"33792","_to":"65527"} +{"$label":"ACTS_IN","name":"Christie - Wife #6","type":"Role","_key":"65590","_from":"33792","_to":"40642"} +{"$label":"ACTS_IN","name":"Pvt. Charlie Soda","type":"Role","_key":"62486","_from":"33792","_to":"39352"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"119251","_from":"33795","_to":"70065"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"51796","_from":"33799","_to":"33797"} +{"$label":"ACTS_IN","name":"Brent Friehl","type":"Role","_key":"51794","_from":"33798","_to":"33797"} +{"$label":"ACTS_IN","name":"Michael Essex","type":"Role","_key":"105109","_from":"33798","_to":"61860"} +{"$label":"ACTS_IN","name":"Suzy Winters","type":"Role","_key":"119214","_from":"33799","_to":"70044"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"64417","_from":"33799","_to":"40148"} +{"$label":"ACTS_IN","name":"Brandy","type":"Role","_key":"62016","_from":"33799","_to":"39042"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"58605","_from":"33799","_to":"37025"} +{"$label":"DIRECTED","_key":"51798","_from":"33801","_to":"33800"} +{"$label":"ACTS_IN","name":"Smiley","type":"Role","_key":"51807","_from":"33805","_to":"33802"} +{"$label":"ACTS_IN","name":"Iris Ferry","type":"Role","_key":"51804","_from":"33804","_to":"33802"} +{"$label":"DIRECTED","_key":"51799","_from":"33803","_to":"33802"} +{"$label":"DIRECTED","_key":"104124","_from":"33803","_to":"61260"} +{"$label":"DIRECTED","_key":"95608","_from":"33803","_to":"56238"} +{"$label":"ACTS_IN","name":"Audrey Andrews","type":"Role","_key":"93988","_from":"33804","_to":"55349"} +{"$label":"ACTS_IN","name":"blin bling","type":"Role","_key":"116319","_from":"33805","_to":"68476"} +{"$label":"ACTS_IN","name":"Nicolas 'Nick' Frazier","type":"Role","_key":"61371","_from":"33805","_to":"38724"} +{"$label":"ACTS_IN","name":"David 'Gage' Williams","type":"Role","_key":"59160","_from":"33805","_to":"37349"} +{"$label":"DIRECTED","_key":"51814","_from":"33812","_to":"33807"} +{"$label":"ACTS_IN","name":"Profesor Bacterio","type":"Role","_key":"51812","_from":"33811","_to":"33807"} +{"$label":"ACTS_IN","name":"El Super","type":"Role","_key":"51811","_from":"33810","_to":"33807"} +{"$label":"ACTS_IN","name":"Calimero","type":"Role","_key":"51810","_from":"33809","_to":"33807"} +{"$label":"ACTS_IN","name":"Clever","type":"Role","_key":"51808","_from":"33808","_to":"33807"} +{"$label":"ACTS_IN","name":"Jos\u00e9","type":"Role","_key":"114256","_from":"33810","_to":"67295"} +{"$label":"DIRECTED","_key":"114258","_from":"33812","_to":"67295"} +{"$label":"DIRECTED","_key":"51822","_from":"33817","_to":"33813"} +{"$label":"ACTS_IN","name":"Nell","type":"Role","_key":"51818","_from":"33816","_to":"33813"} +{"$label":"ACTS_IN","name":"M\u00e4dchen","type":"Role","_key":"51816","_from":"33815","_to":"33813"} +{"$label":"ACTS_IN","name":"Miss MacKenzie","type":"Role","_key":"51815","_from":"33814","_to":"33813"} +{"$label":"DIRECTED","_key":"51828","_from":"33823","_to":"33818"} +{"$label":"ACTS_IN","name":"Madame Rose","type":"Role","_key":"51826","_from":"33822","_to":"33818"} +{"$label":"ACTS_IN","name":"Pla","type":"Role","_key":"51825","_from":"33821","_to":"33818"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"51824","_from":"33820","_to":"33818"} +{"$label":"ACTS_IN","name":"Kham","type":"Role","_key":"51823","_from":"33819","_to":"33818"} +{"$label":"DIRECTED","_key":"108865","_from":"33819","_to":"64339"} +{"$label":"ACTS_IN","name":"Tiang","type":"Role","_key":"108860","_from":"33819","_to":"64339"} +{"$label":"ACTS_IN","name":"Ting","type":"Role","_key":"53074","_from":"33819","_to":"34355"} +{"$label":"ACTS_IN","name":"Humlae \/ Dirty Balls \/ George","type":"Role","_key":"53073","_from":"33820","_to":"34355"} +{"$label":"DIRECTED","_key":"102652","_from":"33823","_to":"60396"} +{"$label":"DIRECTED","_key":"53078","_from":"33823","_to":"34355"} +{"$label":"DIRECTED","_key":"51829","_from":"33825","_to":"33824"} +{"$label":"DIRECTED","_key":"90719","_from":"33825","_to":"53547"} +{"$label":"DIRECTED","_key":"66832","_from":"33825","_to":"41279"} +{"$label":"DIRECTED","_key":"63511","_from":"33825","_to":"39763"} +{"$label":"DIRECTED","_key":"54624","_from":"33825","_to":"34985"} +{"$label":"DIRECTED","_key":"54374","_from":"33825","_to":"34873"} +{"$label":"DIRECTED","_key":"54271","_from":"33825","_to":"34843"} +{"$label":"DIRECTED","_key":"51870","_from":"33825","_to":"33840"} +{"$label":"ACTS_IN","name":"Cindy Chang","type":"Role","_key":"51839","_from":"33827","_to":"33826"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120684","_from":"33827","_to":"70879"} +{"$label":"ACTS_IN","name":"Yon Greene","type":"Role","_key":"113715","_from":"33827","_to":"67017"} +{"$label":"DIRECTED","_key":"51844","_from":"33829","_to":"33828"} +{"$label":"DIRECTED","_key":"111035","_from":"33829","_to":"65586"} +{"$label":"DIRECTED","_key":"55252","_from":"33829","_to":"35239"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"51848","_from":"33832","_to":"33830"} +{"$label":"ACTS_IN","name":"Frank Wheeler","type":"Role","_key":"51847","_from":"33831","_to":"33830"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"110956","_from":"33832","_to":"65537"} +{"$label":"ACTS_IN","name":"Willa","type":"Role","_key":"51854","_from":"33834","_to":"33833"} +{"$label":"ACTS_IN","name":"Ernie Henderson","type":"Role","_key":"51868","_from":"33839","_to":"33836"} +{"$label":"ACTS_IN","name":"Sarah Henderson","type":"Role","_key":"51867","_from":"33838","_to":"33836"} +{"$label":"DIRECTED","_key":"51864","_from":"33837","_to":"33836"} +{"$label":"DIRECTED","_key":"51884","_from":"33849","_to":"33841"} +{"$label":"DIRECTED","_key":"51883","_from":"33848","_to":"33841"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"51882","_from":"33847","_to":"33841"} +{"$label":"ACTS_IN","name":"Harrison","type":"Role","_key":"51881","_from":"33846","_to":"33841"} +{"$label":"ACTS_IN","name":"Sallyanne","type":"Role","_key":"51880","_from":"33845","_to":"33841"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"51879","_from":"33844","_to":"33841"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"51878","_from":"33843","_to":"33841"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"51877","_from":"33842","_to":"33841"} +{"$label":"DIRECTED","_key":"121422","_from":"33848","_to":"71341"} +{"$label":"DIRECTED","_key":"121423","_from":"33849","_to":"71341"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"51897","_from":"33853","_to":"33851"} +{"$label":"ACTS_IN","name":"Konstantin","type":"Role","_key":"51895","_from":"33852","_to":"33851"} +{"$label":"ACTS_IN","name":"Zenek Dracz","type":"Role","_key":"51904","_from":"33856","_to":"33854"} +{"$label":"ACTS_IN","name":"David Perel - Salomons Bruder","type":"Role","_key":"51902","_from":"33855","_to":"33854"} +{"$label":"ACTS_IN","name":"Josh (as Nolan Funk)","type":"Role","_key":"51921","_from":"33868","_to":"33857"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"51920","_from":"33867","_to":"33857"} +{"$label":"ACTS_IN","name":"Washroom Man","type":"Role","_key":"51918","_from":"33866","_to":"33857"} +{"$label":"ACTS_IN","name":"Elderly Husband","type":"Role","_key":"51917","_from":"33865","_to":"33857"} +{"$label":"ACTS_IN","name":"Dr. Devin Villiers","type":"Role","_key":"51916","_from":"33864","_to":"33857"} +{"$label":"ACTS_IN","name":"Pearl Girl","type":"Role","_key":"51915","_from":"33863","_to":"33857"} +{"$label":"ACTS_IN","name":"Trophy Wife","type":"Role","_key":"51914","_from":"33862","_to":"33857"} +{"$label":"ACTS_IN","name":"Heather Dalton","type":"Role","_key":"51913","_from":"33861","_to":"33857"} +{"$label":"ACTS_IN","name":"Det. Lisa Martinez","type":"Role","_key":"51912","_from":"33860","_to":"33857"} +{"$label":"ACTS_IN","name":"Dr. Maggie Dalton","type":"Role","_key":"51909","_from":"33859","_to":"33857"} +{"$label":"DIRECTED","_key":"51906","_from":"33858","_to":"33857"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"106907","_from":"33859","_to":"63027"} +{"$label":"ACTS_IN","name":"Julia Lund","type":"Role","_key":"106712","_from":"33859","_to":"62890"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"102785","_from":"33859","_to":"60464"} +{"$label":"ACTS_IN","name":"Lisa Ashen","type":"Role","_key":"98051","_from":"33859","_to":"57732"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"90866","_from":"33859","_to":"53612"} +{"$label":"ACTS_IN","name":"Cara Tapper","type":"Role","_key":"120339","_from":"33860","_to":"70686"} +{"$label":"ACTS_IN","name":"Vet","type":"Role","_key":"119488","_from":"33860","_to":"70191"} +{"$label":"ACTS_IN","name":"Megan Helms","type":"Role","_key":"55346","_from":"33861","_to":"35281"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"67616","_from":"33862","_to":"41614"} +{"$label":"ACTS_IN","name":"Giles","type":"Role","_key":"114751","_from":"33864","_to":"67588"} +{"$label":"ACTS_IN","name":"Doug Roth","type":"Role","_key":"93266","_from":"33864","_to":"54939"} +{"$label":"ACTS_IN","name":"Nikko Alexander","type":"Role","_key":"115542","_from":"33868","_to":"68020"} +{"$label":"DIRECTED","_key":"51930","_from":"33871","_to":"33869"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"51927","_from":"33870","_to":"33869"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58825","_from":"33870","_to":"37148"} +{"$label":"ACTS_IN","name":"Train Conductor","type":"Role","_key":"51936","_from":"33874","_to":"33872"} +{"$label":"ACTS_IN","name":"Amy Schine","type":"Role","_key":"51933","_from":"33873","_to":"33872"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"51955","_from":"33887","_to":"33875"} +{"$label":"ACTS_IN","name":"Weiblicher Zenobit","type":"Role","_key":"51953","_from":"33886","_to":"33875"} +{"$label":"ACTS_IN","name":"Butterball-Zenobit","type":"Role","_key":"51952","_from":"33885","_to":"33875"} +{"$label":"ACTS_IN","name":"Chatterer-Zenobit","type":"Role","_key":"51951","_from":"33884","_to":"33875"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"51949","_from":"33883","_to":"33875"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"51948","_from":"33882","_to":"33875"} +{"$label":"ACTS_IN","name":"Drittes Opfer","type":"Role","_key":"51947","_from":"33881","_to":"33875"} +{"$label":"ACTS_IN","name":"Zweites Opfer","type":"Role","_key":"51946","_from":"33880","_to":"33875"} +{"$label":"ACTS_IN","name":"Erstes Opfer","type":"Role","_key":"51945","_from":"33879","_to":"33875"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"51944","_from":"33878","_to":"33875"} +{"$label":"ACTS_IN","name":"Frank Cotton","type":"Role","_key":"51942","_from":"33877","_to":"33875"} +{"$label":"ACTS_IN","name":"Kirsty Cotton","type":"Role","_key":"51941","_from":"33876","_to":"33875"} +{"$label":"ACTS_IN","name":"Kirsty","type":"Role","_key":"68770","_from":"33876","_to":"42138"} +{"$label":"ACTS_IN","name":"Kirsty Cotton","type":"Role","_key":"52360","_from":"33876","_to":"34079"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"60391","_from":"33877","_to":"38093"} +{"$label":"ACTS_IN","name":"Frank Cotton","type":"Role","_key":"52363","_from":"33877","_to":"34079"} +{"$label":"ACTS_IN","name":"Dylan West \/ Houdini","type":"Role","_key":"98541","_from":"33881","_to":"58071"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"51962","_from":"33892","_to":"33889"} +{"$label":"ACTS_IN","name":"Culligan","type":"Role","_key":"51961","_from":"33891","_to":"33889"} +{"$label":"ACTS_IN","name":"Rusti","type":"Role","_key":"51960","_from":"33890","_to":"33889"} +{"$label":"ACTS_IN","name":"Jenny Reeves","type":"Role","_key":"107200","_from":"33890","_to":"63224"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"106809","_from":"33890","_to":"62951"} +{"$label":"ACTS_IN","name":"Abby Brody","type":"Role","_key":"51967","_from":"33894","_to":"33893"} +{"$label":"ACTS_IN","name":"Opernregisseur","type":"Role","_key":"51985","_from":"33899","_to":"33897"} +{"$label":"ACTS_IN","name":"Konstanze Dornhelm","type":"Role","_key":"51984","_from":"33898","_to":"33897"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"51990","_from":"33903","_to":"33900"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"51989","_from":"33902","_to":"33900"} +{"$label":"ACTS_IN","name":"Danyael","type":"Role","_key":"51988","_from":"33901","_to":"33900"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"95237","_from":"33902","_to":"56030"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51997","_from":"33908","_to":"33904"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51996","_from":"33907","_to":"33904"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"51995","_from":"33906","_to":"33904"} +{"$label":"DIRECTED","_key":"51993","_from":"33905","_to":"33904"} +{"$label":"DIRECTED","_key":"108519","_from":"33905","_to":"64139"} +{"$label":"DIRECTED","_key":"87986","_from":"33905","_to":"52244"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"118607","_from":"33906","_to":"69743"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108513","_from":"33906","_to":"64139"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98768","_from":"33906","_to":"58203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"87988","_from":"33906","_to":"52244"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58426","_from":"33906","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108515","_from":"33907","_to":"64139"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98769","_from":"33907","_to":"58203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"87989","_from":"33907","_to":"52244"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58427","_from":"33907","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108516","_from":"33908","_to":"64139"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98770","_from":"33908","_to":"58203"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"87990","_from":"33908","_to":"52244"} +{"$label":"ACTS_IN","name":"Jigsaw (voice)","type":"Role","_key":"52018","_from":"33919","_to":"33911"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"52017","_from":"33918","_to":"33911"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"52016","_from":"33917","_to":"33911"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"52015","_from":"33916","_to":"33911"} +{"$label":"ACTS_IN","name":"Ficki","type":"Role","_key":"52011","_from":"33915","_to":"33911"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"52010","_from":"33914","_to":"33911"} +{"$label":"ACTS_IN","name":"Sidneys Vater","type":"Role","_key":"52008","_from":"33913","_to":"33911"} +{"$label":"ACTS_IN","name":"Tim M\u00e4lzer","type":"Role","_key":"52007","_from":"33912","_to":"33911"} +{"$label":"ACTS_IN","name":"John Silver","type":"Role","_key":"52027","_from":"33921","_to":"33920"} +{"$label":"DIRECTED","_key":"52043","_from":"33932","_to":"33922"} +{"$label":"ACTS_IN","name":"Nazi Soldier 3","type":"Role","_key":"52042","_from":"33931","_to":"33922"} +{"$label":"ACTS_IN","name":"Nazi Soldier 2","type":"Role","_key":"52041","_from":"33930","_to":"33922"} +{"$label":"ACTS_IN","name":"Newsreader","type":"Role","_key":"52039","_from":"33929","_to":"33922"} +{"$label":"ACTS_IN","name":"The Breather","type":"Role","_key":"52038","_from":"33928","_to":"33922"} +{"$label":"ACTS_IN","name":"Voyteche","type":"Role","_key":"52036","_from":"33927","_to":"33922"} +{"$label":"ACTS_IN","name":"Cotter","type":"Role","_key":"52035","_from":"33926","_to":"33922"} +{"$label":"ACTS_IN","name":"Taktarov","type":"Role","_key":"52034","_from":"33925","_to":"33922"} +{"$label":"ACTS_IN","name":"Jordan","type":"Role","_key":"52033","_from":"33924","_to":"33922"} +{"$label":"ACTS_IN","name":"D.C.","type":"Role","_key":"52030","_from":"33923","_to":"33922"} +{"$label":"ACTS_IN","name":"Frank Castle","type":"Role","_key":"92228","_from":"33923","_to":"54425"} +{"$label":"ACTS_IN","name":"Dagonet","type":"Role","_key":"54115","_from":"33923","_to":"34783"} +{"$label":"ACTS_IN","name":"Reg Fuller","type":"Role","_key":"120552","_from":"33924","_to":"70802"} +{"$label":"DIRECTED","_key":"52053","_from":"33936","_to":"33935"} +{"$label":"DIRECTED","_key":"96256","_from":"33936","_to":"56561"} +{"$label":"ACTS_IN","name":"Trucker","type":"Role","_key":"52066","_from":"33948","_to":"33937"} +{"$label":"ACTS_IN","name":"Cousin Jen","type":"Role","_key":"52065","_from":"33947","_to":"33937"} +{"$label":"ACTS_IN","name":"Aunt Jo","type":"Role","_key":"52064","_from":"33946","_to":"33937"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"52063","_from":"33945","_to":"33937"} +{"$label":"ACTS_IN","name":"Marlin","type":"Role","_key":"52062","_from":"33944","_to":"33937"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"52061","_from":"33943","_to":"33937"} +{"$label":"ACTS_IN","name":"Bird","type":"Role","_key":"52059","_from":"33942","_to":"33937"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"52058","_from":"33941","_to":"33937"} +{"$label":"ACTS_IN","name":"Emmet","type":"Role","_key":"52057","_from":"33940","_to":"33937"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"52056","_from":"33939","_to":"33937"} +{"$label":"DIRECTED","_key":"52054","_from":"33938","_to":"33937"} +{"$label":"DIRECTED","_key":"97993","_from":"33938","_to":"57710"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"111209","_from":"33939","_to":"65675"} +{"$label":"ACTS_IN","name":"Tex Jr","type":"Role","_key":"104362","_from":"33939","_to":"61395"} +{"$label":"ACTS_IN","name":"Mike Newton","type":"Role","_key":"115497","_from":"33940","_to":"67997"} +{"$label":"ACTS_IN","name":"Trevor Bowman","type":"Role","_key":"95420","_from":"33940","_to":"56132"} +{"$label":"ACTS_IN","name":"Laraine","type":"Role","_key":"60613","_from":"33946","_to":"38253"} +{"$label":"ACTS_IN","name":"Grocery Shopper","type":"Role","_key":"60260","_from":"33947","_to":"38004"} +{"$label":"DIRECTED","_key":"52074","_from":"33953","_to":"33949"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"52072","_from":"33952","_to":"33949"} +{"$label":"ACTS_IN","name":"Murphy","type":"Role","_key":"52071","_from":"33951","_to":"33949"} +{"$label":"ACTS_IN","name":"Little Creek","type":"Role","_key":"52069","_from":"33950","_to":"33949"} +{"$label":"ACTS_IN","name":"Julian Russell","type":"Role","_key":"52089","_from":"33964","_to":"33954"} +{"$label":"ACTS_IN","name":"Harry Wegman","type":"Role","_key":"52087","_from":"33963","_to":"33954"} +{"$label":"ACTS_IN","name":"Eleanor Hanover","type":"Role","_key":"52085","_from":"33962","_to":"33954"} +{"$label":"ACTS_IN","name":"Mrs. Elinor Vigushin","type":"Role","_key":"52084","_from":"33961","_to":"33954"} +{"$label":"ACTS_IN","name":"Vincent the Bartender","type":"Role","_key":"52083","_from":"33960","_to":"33954"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"52082","_from":"33959","_to":"33954"} +{"$label":"ACTS_IN","name":"Charlie the Doorman","type":"Role","_key":"52081","_from":"33958","_to":"33954"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"52080","_from":"33957","_to":"33954"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"52079","_from":"33956","_to":"33954"} +{"$label":"ACTS_IN","name":"Milton Glickman","type":"Role","_key":"52078","_from":"33955","_to":"33954"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"67212","_from":"33959","_to":"41452"} +{"$label":"ACTS_IN","name":"Chet","type":"Role","_key":"56184","_from":"33959","_to":"35707"} +{"$label":"ACTS_IN","name":"Mary Jo Perrin","type":"Role","_key":"54638","_from":"33962","_to":"34989"} +{"$label":"ACTS_IN","name":"Bagel","type":"Role","_key":"96372","_from":"33963","_to":"56647"} +{"$label":"ACTS_IN","name":"Tibbles","type":"Role","_key":"68242","_from":"33963","_to":"41905"} +{"$label":"ACTS_IN","name":"Buddy Thornton","type":"Role","_key":"66706","_from":"33963","_to":"41210"} +{"$label":"ACTS_IN","name":"Haush\u00e4lterin des Alten Mannes","type":"Role","_key":"52100","_from":"33973","_to":"33965"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"52099","_from":"33972","_to":"33965"} +{"$label":"ACTS_IN","name":"Der geschiedene Mann","type":"Role","_key":"52098","_from":"33971","_to":"33965"} +{"$label":"ACTS_IN","name":"Die geschiedene Frau und Freundin des Masseurs","type":"Role","_key":"52097","_from":"33970","_to":"33965"} +{"$label":"ACTS_IN","name":"Vikerl","type":"Role","_key":"52095","_from":"33969","_to":"33965"} +{"$label":"ACTS_IN","name":"Lehrerin und Geliebte von Vikerl","type":"Role","_key":"52094","_from":"33968","_to":"33965"} +{"$label":"ACTS_IN","name":"Die Freundin des Opel-Freaks","type":"Role","_key":"52093","_from":"33967","_to":"33965"} +{"$label":"ACTS_IN","name":"Der Mann f\u00fcr die Sicherheit","type":"Role","_key":"52092","_from":"33966","_to":"33965"} +{"$label":"DIRECTED","_key":"52108","_from":"33975","_to":"33974"} +{"$label":"DIRECTED","_key":"117637","_from":"33975","_to":"69149"} +{"$label":"DIRECTED","_key":"109177","_from":"33975","_to":"64502"} +{"$label":"DIRECTED","_key":"65435","_from":"33975","_to":"40563"} +{"$label":"DIRECTED","_key":"52117","_from":"33978","_to":"33976"} +{"$label":"ACTS_IN","name":"Edwin","type":"Role","_key":"52116","_from":"33977","_to":"33976"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"52124","_from":"33980","_to":"33979"} +{"$label":"ACTS_IN","name":"Dave the bear","type":"Role","_key":"52137","_from":"33985","_to":"33981"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"52136","_from":"33984","_to":"33981"} +{"$label":"ACTS_IN","name":"Tipper","type":"Role","_key":"52130","_from":"33983","_to":"33981"} +{"$label":"DIRECTED","_key":"52127","_from":"33982","_to":"33981"} +{"$label":"DIRECTED","_key":"98315","_from":"33982","_to":"57908"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"93064","_from":"33983","_to":"54864"} +{"$label":"ACTS_IN","name":"Patrol Witch \/ Wagon Witch #2 (voice)","type":"Role","_key":"61594","_from":"33983","_to":"38823"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"120477","_from":"33985","_to":"70764"} +{"$label":"ACTS_IN","name":"Alan Garner","type":"Role","_key":"117491","_from":"33985","_to":"69087"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109290","_from":"33985","_to":"64567"} +{"$label":"ACTS_IN","name":"Self","type":"Role","_key":"109289","_from":"33985","_to":"64566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109288","_from":"33985","_to":"64565"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"99835","_from":"33985","_to":"58886"} +{"$label":"ACTS_IN","name":"Weird Wally","type":"Role","_key":"90490","_from":"33985","_to":"53461"} +{"$label":"DIRECTED","_key":"52151","_from":"33991","_to":"33986"} +{"$label":"DIRECTED","_key":"52150","_from":"33990","_to":"33986"} +{"$label":"ACTS_IN","name":"Alicia Millstone","type":"Role","_key":"52147","_from":"33989","_to":"33986"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"52145","_from":"33988","_to":"33986"} +{"$label":"ACTS_IN","name":"Ana Christina Martinez","type":"Role","_key":"52143","_from":"33987","_to":"33986"} +{"$label":"ACTS_IN","name":"Rachel Hansen","type":"Role","_key":"121480","_from":"33989","_to":"71361"} +{"$label":"ACTS_IN","name":"Darby","type":"Role","_key":"110636","_from":"33989","_to":"65362"} +{"$label":"ACTS_IN","name":"Young Penny (voice)","type":"Role","_key":"92203","_from":"33989","_to":"54410"} +{"$label":"ACTS_IN","name":"Emma Tunny","type":"Role","_key":"66278","_from":"33989","_to":"40999"} +{"$label":"ACTS_IN","name":"Chelsea Lutz","type":"Role","_key":"60145","_from":"33989","_to":"37948"} +{"$label":"ACTS_IN","name":"Melissa Norman","type":"Role","_key":"60039","_from":"33989","_to":"37890"} +{"$label":"DIRECTED","_key":"66055","_from":"33990","_to":"40877"} +{"$label":"DIRECTED","_key":"66056","_from":"33991","_to":"40877"} +{"$label":"ACTS_IN","name":"Mama Leone","type":"Role","_key":"52156","_from":"33994","_to":"33992"} +{"$label":"DIRECTED","_key":"52152","_from":"33993","_to":"33992"} +{"$label":"ACTS_IN","name":"Julian 'Frankenstien' McGrath","type":"Role","_key":"52161","_from":"33996","_to":"33995"} +{"$label":"DIRECTED","_key":"52173","_from":"33999","_to":"33997"} +{"$label":"ACTS_IN","name":"Samayel","type":"Role","_key":"52171","_from":"33998","_to":"33997"} +{"$label":"DIRECTED","_key":"52182","_from":"34003","_to":"34000"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"52181","_from":"34002","_to":"34000"} +{"$label":"ACTS_IN","name":"Ginger Kingsley","type":"Role","_key":"52179","_from":"34001","_to":"34000"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"120930","_from":"34001","_to":"71009"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"120489","_from":"34001","_to":"70773"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"93375","_from":"34001","_to":"54999"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"92348","_from":"34001","_to":"54502"} +{"$label":"ACTS_IN","name":"General Nick Fury","type":"Role","_key":"101085","_from":"34002","_to":"59562"} +{"$label":"ACTS_IN","name":"Nick Fury","type":"Role","_key":"101073","_from":"34002","_to":"59555"} +{"$label":"DIRECTED","_key":"52188","_from":"34006","_to":"34004"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"52184","_from":"34005","_to":"34004"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"97671","_from":"34005","_to":"57513"} +{"$label":"ACTS_IN","name":"Detective Gallagher","type":"Role","_key":"93269","_from":"34005","_to":"54939"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"120962","_from":"34006","_to":"71049"} +{"$label":"ACTS_IN","name":"Found a Peanut Father","type":"Role","_key":"108221","_from":"34006","_to":"63955"} +{"$label":"DIRECTED","_key":"52202","_from":"34013","_to":"34008"} +{"$label":"ACTS_IN","name":"Rhonda Ritter","type":"Role","_key":"52201","_from":"34012","_to":"34008"} +{"$label":"ACTS_IN","name":"Sharon Cooper","type":"Role","_key":"52199","_from":"34011","_to":"34008"} +{"$label":"ACTS_IN","name":"Paulette Rebchuck","type":"Role","_key":"52198","_from":"34010","_to":"34008"} +{"$label":"ACTS_IN","name":"Michael Carrington","type":"Role","_key":"52196","_from":"34009","_to":"34008"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"120529","_from":"34009","_to":"70790"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"107632","_from":"34009","_to":"63525"} +{"$label":"ACTS_IN","name":"Rex Manning","type":"Role","_key":"95069","_from":"34009","_to":"55962"} +{"$label":"ACTS_IN","name":"Leslie Lane","type":"Role","_key":"52222","_from":"34018","_to":"34016"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"52221","_from":"34017","_to":"34016"} +{"$label":"ACTS_IN","name":"Florimond, dit 'Pin-Pon'","type":"Role","_key":"52225","_from":"34020","_to":"34019"} +{"$label":"DIRECTED","_key":"52235","_from":"34023","_to":"34021"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"52231","_from":"34022","_to":"34021"} +{"$label":"ACTS_IN","name":"Brock Houseman","type":"Role","_key":"101970","_from":"34022","_to":"60005"} +{"$label":"DIRECTED","_key":"52243","_from":"34025","_to":"34024"} +{"$label":"ACTS_IN","name":"Gersteins Frau","type":"Role","_key":"52257","_from":"34028","_to":"34027"} +{"$label":"ACTS_IN","name":"Asian officer","type":"Role","_key":"52267","_from":"34033","_to":"34030"} +{"$label":"ACTS_IN","name":"Andrej","type":"Role","_key":"52266","_from":"34032","_to":"34030"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"52265","_from":"34031","_to":"34030"} +{"$label":"DIRECTED","_key":"52272","_from":"34037","_to":"34034"} +{"$label":"ACTS_IN","name":"Tree Devil","type":"Role","_key":"52270","_from":"34036","_to":"34034"} +{"$label":"ACTS_IN","name":"Lit Sin Seen","type":"Role","_key":"52268","_from":"34035","_to":"34034"} +{"$label":"ACTS_IN","name":"Snow","type":"Role","_key":"117013","_from":"34035","_to":"68866"} +{"$label":"ACTS_IN","name":"Ching Fung","type":"Role","_key":"52273","_from":"34035","_to":"34038"} +{"$label":"ACTS_IN","name":"Ngok (as Siu Ming Lau)","type":"Role","_key":"117779","_from":"34036","_to":"69234"} +{"$label":"DIRECTED","_key":"117788","_from":"34037","_to":"69234"} +{"$label":"DIRECTED","_key":"117574","_from":"34037","_to":"69124"} +{"$label":"DIRECTED","_key":"117039","_from":"34037","_to":"68879"} +{"$label":"DIRECTED","_key":"117011","_from":"34037","_to":"68866"} +{"$label":"DIRECTED","_key":"100703","_from":"34037","_to":"59378"} +{"$label":"DIRECTED","_key":"90155","_from":"34037","_to":"53305"} +{"$label":"DIRECTED","_key":"66308","_from":"34037","_to":"41012"} +{"$label":"DIRECTED","_key":"52278","_from":"34037","_to":"34038"} +{"$label":"ACTS_IN","name":"Chi Chau","type":"Role","_key":"52275","_from":"34040","_to":"34038"} +{"$label":"ACTS_IN","name":"Yuet Chi","type":"Role","_key":"52274","_from":"34039","_to":"34038"} +{"$label":"ACTS_IN","name":"Kiddo","type":"Role","_key":"117036","_from":"34039","_to":"68879"} +{"$label":"ACTS_IN","name":"Ting Ting","type":"Role","_key":"114039","_from":"34039","_to":"67155"} +{"$label":"ACTS_IN","name":"Ting Ting","type":"Role","_key":"113472","_from":"34039","_to":"66860"} +{"$label":"ACTS_IN","name":"The Killer's Agent","type":"Role","_key":"68619","_from":"34039","_to":"42067"} +{"$label":"ACTS_IN","name":"Au Yeung","type":"Role","_key":"117776","_from":"34040","_to":"69234"} +{"$label":"ACTS_IN","name":"Frankie Lone","type":"Role","_key":"117001","_from":"34040","_to":"68861"} +{"$label":"ACTS_IN","name":"Zeb","type":"Role","_key":"115789","_from":"34040","_to":"68169"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"72706","_from":"34040","_to":"43813"} +{"$label":"ACTS_IN","name":"Buck Teeth Soh","type":"Role","_key":"64590","_from":"34040","_to":"40235"} +{"$label":"ACTS_IN","name":"George Webber","type":"Role","_key":"52279","_from":"34042","_to":"34041"} +{"$label":"ACTS_IN","name":"Stanley Moon","type":"Role","_key":"115338","_from":"34042","_to":"67907"} +{"$label":"ACTS_IN","name":"Ad executive","type":"Role","_key":"110124","_from":"34042","_to":"65074"} +{"$label":"ACTS_IN","name":"Stanley Tibbets","type":"Role","_key":"105328","_from":"34042","_to":"61977"} +{"$label":"ACTS_IN","name":"Patch","type":"Role","_key":"96219","_from":"34042","_to":"56557"} +{"$label":"ACTS_IN","name":"Arthur Bach","type":"Role","_key":"95745","_from":"34042","_to":"56323"} +{"$label":"ACTS_IN","name":"Wylie Cooper","type":"Role","_key":"68624","_from":"34042","_to":"42068"} +{"$label":"ACTS_IN","name":"Bernd","type":"Role","_key":"52288","_from":"34045","_to":"34043"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"52286","_from":"34044","_to":"34043"} +{"$label":"ACTS_IN","name":"Weatherby","type":"Role","_key":"52297","_from":"34050","_to":"34046"} +{"$label":"ACTS_IN","name":"Ryu Hayabusa","type":"Role","_key":"52295","_from":"34049","_to":"34046"} +{"$label":"ACTS_IN","name":"Helena Douglas","type":"Role","_key":"52293","_from":"34048","_to":"34046"} +{"$label":"ACTS_IN","name":"Tina Armstrong","type":"Role","_key":"52290","_from":"34047","_to":"34046"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"115397","_from":"34047","_to":"67949"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"109428","_from":"34047","_to":"64647"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"106127","_from":"34047","_to":"62496"} +{"$label":"ACTS_IN","name":"Girlfriend #1","type":"Role","_key":"102864","_from":"34047","_to":"60510"} +{"$label":"ACTS_IN","name":"Priscilla","type":"Role","_key":"69606","_from":"34047","_to":"42492"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"66960","_from":"34047","_to":"41336"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"59747","_from":"34047","_to":"37723"} +{"$label":"ACTS_IN","name":"Kristen Haas","type":"Role","_key":"119263","_from":"34048","_to":"70075"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"102701","_from":"34048","_to":"60423"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"99134","_from":"34048","_to":"58414"} +{"$label":"ACTS_IN","name":"Chanel","type":"Role","_key":"57261","_from":"34048","_to":"36317"} +{"$label":"ACTS_IN","name":"Ry\u00fb","type":"Role","_key":"112222","_from":"34049","_to":"66275"} +{"$label":"ACTS_IN","name":"Katsunori Kazama","type":"Role","_key":"105830","_from":"34049","_to":"62299"} +{"$label":"ACTS_IN","name":"Temple Garden Warrior","type":"Role","_key":"63294","_from":"34049","_to":"39669"} +{"$label":"ACTS_IN","name":"K.C. Carlyle","type":"Role","_key":"111453","_from":"34050","_to":"65807"} +{"$label":"ACTS_IN","name":"Agnew","type":"Role","_key":"103204","_from":"34050","_to":"60705"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"63820","_from":"34050","_to":"39898"} +{"$label":"DIRECTED","_key":"52304","_from":"34052","_to":"34051"} +{"$label":"DIRECTED","_key":"102263","_from":"34052","_to":"60174"} +{"$label":"DIRECTED","_key":"73039","_from":"34052","_to":"43958"} +{"$label":"DIRECTED","_key":"68692","_from":"34052","_to":"42093"} +{"$label":"DIRECTED","_key":"60432","_from":"34052","_to":"38126"} +{"$label":"ACTS_IN","name":"Supt. Raymond Li","type":"Role","_key":"52308","_from":"34056","_to":"34054"} +{"$label":"ACTS_IN","name":"Selina Fong","type":"Role","_key":"52306","_from":"34055","_to":"34054"} +{"$label":"ACTS_IN","name":"Lian Nichang","type":"Role","_key":"117612","_from":"34055","_to":"69142"} +{"$label":"ACTS_IN","name":"Snow","type":"Role","_key":"117589","_from":"34055","_to":"69130"} +{"$label":"ACTS_IN","name":"Asia the Invincible (Dong Fang Bu Bai)","type":"Role","_key":"117035","_from":"34055","_to":"68879"} +{"$label":"ACTS_IN","name":"Asia the Invincible (or 'Dong Fong But Bai')","type":"Role","_key":"117012","_from":"34055","_to":"68866"} +{"$label":"ACTS_IN","name":"Mu-rong Yin \/ Mu-rong Yang","type":"Role","_key":"103846","_from":"34055","_to":"61067"} +{"$label":"ACTS_IN","name":"Lady in blond wig","type":"Role","_key":"67894","_from":"34055","_to":"41715"} +{"$label":"ACTS_IN","name":"Supt. Raymond Li","type":"Role","_key":"65463","_from":"34056","_to":"40581"} +{"$label":"DIRECTED","_key":"52316","_from":"34059","_to":"34057"} +{"$label":"ACTS_IN","name":"Lex","type":"Role","_key":"52315","_from":"34058","_to":"34057"} +{"$label":"DIRECTED","_key":"112327","_from":"34059","_to":"66317"} +{"$label":"DIRECTED","_key":"52329","_from":"34062","_to":"34061"} +{"$label":"DIRECTED","_key":"113262","_from":"34062","_to":"66728"} +{"$label":"DIRECTED","_key":"107385","_from":"34062","_to":"63339"} +{"$label":"DIRECTED","_key":"69513","_from":"34062","_to":"42463"} +{"$label":"DIRECTED","_key":"65259","_from":"34062","_to":"40509"} +{"$label":"DIRECTED","_key":"52336","_from":"34069","_to":"34063"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"52334","_from":"34068","_to":"34063"} +{"$label":"ACTS_IN","name":"Mrs. Lee","type":"Role","_key":"52333","_from":"34067","_to":"34063"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"52332","_from":"34066","_to":"34063"} +{"$label":"ACTS_IN","name":"Mr. Lee","type":"Role","_key":"52331","_from":"34065","_to":"34063"} +{"$label":"ACTS_IN","name":"Masseuse","type":"Role","_key":"52330","_from":"34064","_to":"34063"} +{"$label":"ACTS_IN","name":"Siu Fong-Fong \/ 'Little Trumpet'","type":"Role","_key":"120246","_from":"34065","_to":"70612"} +{"$label":"ACTS_IN","name":"Wei Wang \/ Andy Lau","type":"Role","_key":"117406","_from":"34065","_to":"69054"} +{"$label":"ACTS_IN","name":"Big D","type":"Role","_key":"117325","_from":"34065","_to":"69005"} +{"$label":"ACTS_IN","name":"Huang Yao-shi","type":"Role","_key":"103844","_from":"34065","_to":"61067"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"71317","_from":"34065","_to":"43260"} +{"$label":"ACTS_IN","name":"The Chinaman","type":"Role","_key":"67161","_from":"34065","_to":"41439"} +{"$label":"ACTS_IN","name":"Master Blackwood","type":"Role","_key":"62086","_from":"34065","_to":"39097"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"62153","_from":"34066","_to":"39140"} +{"$label":"DIRECTED","_key":"117644","_from":"34069","_to":"69150"} +{"$label":"DIRECTED","_key":"117390","_from":"34069","_to":"69048"} +{"$label":"DIRECTED","_key":"52348","_from":"34074","_to":"34070"} +{"$label":"ACTS_IN","name":"Delores Rodriguez","type":"Role","_key":"52347","_from":"34073","_to":"34070"} +{"$label":"ACTS_IN","name":"Detective T.J. Wilcox","type":"Role","_key":"52344","_from":"34072","_to":"34070"} +{"$label":"ACTS_IN","name":"Bobby Earl","type":"Role","_key":"52339","_from":"34071","_to":"34070"} +{"$label":"ACTS_IN","name":"Fitz","type":"Role","_key":"121420","_from":"34071","_to":"71338"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"110024","_from":"34071","_to":"65011"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"103529","_from":"34071","_to":"60902"} +{"$label":"ACTS_IN","name":"Chip Hightower","type":"Role","_key":"103391","_from":"34071","_to":"60821"} +{"$label":"ACTS_IN","name":"Tom Gibbsons","type":"Role","_key":"94367","_from":"34071","_to":"55568"} +{"$label":"ACTS_IN","name":"Keith Weston","type":"Role","_key":"53646","_from":"34071","_to":"34604"} +{"$label":"ACTS_IN","name":"Big Rosa","type":"Role","_key":"117148","_from":"34073","_to":"68921"} +{"$label":"ACTS_IN","name":"Kramer","type":"Role","_key":"52357","_from":"34078","_to":"34076"} +{"$label":"ACTS_IN","name":"Osborne","type":"Role","_key":"52355","_from":"34077","_to":"34076"} +{"$label":"ACTS_IN","name":"Livy","type":"Role","_key":"120331","_from":"34077","_to":"70681"} +{"$label":"ACTS_IN","name":"Captain 'Prince of Wales'","type":"Role","_key":"117460","_from":"34077","_to":"69075"} +{"$label":"ACTS_IN","name":"Old Judge","type":"Role","_key":"95314","_from":"34077","_to":"56070"} +{"$label":"DIRECTED","_key":"52367","_from":"34081","_to":"34079"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"52362","_from":"34080","_to":"34079"} +{"$label":"ACTS_IN","name":"Uncle Kessler","type":"Role","_key":"52371","_from":"34083","_to":"34082"} +{"$label":"ACTS_IN","name":"Mrs. Cummings","type":"Role","_key":"52377","_from":"34086","_to":"34084"} +{"$label":"ACTS_IN","name":"Carol Brady","type":"Role","_key":"52373","_from":"34085","_to":"34084"} +{"$label":"ACTS_IN","name":"Tala","type":"Role","_key":"118033","_from":"34085","_to":"69382"} +{"$label":"ACTS_IN","name":"Belinda Keaton","type":"Role","_key":"101591","_from":"34085","_to":"59795"} +{"$label":"ACTS_IN","name":"Carol Brady","type":"Role","_key":"90565","_from":"34085","_to":"53492"} +{"$label":"ACTS_IN","name":"Anna Crowley Beissart","type":"Role","_key":"63485","_from":"34085","_to":"39758"} +{"$label":"ACTS_IN","name":"Tyrell Tyrelle","type":"Role","_key":"105551","_from":"34086","_to":"62108"} +{"$label":"ACTS_IN","name":"Rachel Tensions","type":"Role","_key":"52503","_from":"34086","_to":"34147"} +{"$label":"DIRECTED","_key":"52383","_from":"34088","_to":"34087"} +{"$label":"DIRECTED","_key":"68897","_from":"34088","_to":"42190"} +{"$label":"DIRECTED","_key":"52384","_from":"34091","_to":"34090"} +{"$label":"DIRECTED","_key":"52390","_from":"34096","_to":"34092"} +{"$label":"ACTS_IN","name":"Rocky DeSantos, roter Ranger","type":"Role","_key":"52388","_from":"34095","_to":"34092"} +{"$label":"ACTS_IN","name":"Billy Cranston, blauer Ranger","type":"Role","_key":"52387","_from":"34094","_to":"34092"} +{"$label":"ACTS_IN","name":"Kimberly Hart, pinker Ranger","type":"Role","_key":"52386","_from":"34093","_to":"34092"} +{"$label":"DIRECTED","_key":"102434","_from":"34096","_to":"60274"} +{"$label":"DIRECTED","_key":"62858","_from":"34096","_to":"39498"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"52400","_from":"34100","_to":"34098"} +{"$label":"ACTS_IN","name":"Pops","type":"Role","_key":"52399","_from":"34099","_to":"34098"} +{"$label":"ACTS_IN","name":"Scrap Iron","type":"Role","_key":"110368","_from":"34099","_to":"65216"} +{"$label":"ACTS_IN","name":"Silas Green","type":"Role","_key":"88358","_from":"34099","_to":"52387"} +{"$label":"ACTS_IN","name":"Mr. Jackson","type":"Role","_key":"67667","_from":"34099","_to":"41628"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"64736","_from":"34099","_to":"40300"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"63515","_from":"34099","_to":"39764"} +{"$label":"ACTS_IN","name":"Mr. Jones","type":"Role","_key":"63219","_from":"34099","_to":"39644"} +{"$label":"ACTS_IN","name":"Blaster the Guinea Pig (voice)","type":"Role","_key":"120468","_from":"34100","_to":"70764"} +{"$label":"ACTS_IN","name":"LeeJohn","type":"Role","_key":"100182","_from":"34100","_to":"59094"} +{"$label":"ACTS_IN","name":"Meat Man","type":"Role","_key":"56609","_from":"34100","_to":"35958"} +{"$label":"ACTS_IN","name":"Ms. Tucker","type":"Role","_key":"52921","_from":"34100","_to":"34291"} +{"$label":"DIRECTED","_key":"52411","_from":"34104","_to":"34102"} +{"$label":"ACTS_IN","name":"Lt. Rita Carbone","type":"Role","_key":"52410","_from":"34103","_to":"34102"} +{"$label":"ACTS_IN","name":"Mittens (voice)","type":"Role","_key":"109589","_from":"34103","_to":"64731"} +{"$label":"ACTS_IN","name":"Mittens (voice)","type":"Role","_key":"92193","_from":"34103","_to":"54410"} +{"$label":"DIRECTED","_key":"100021","_from":"34104","_to":"59004"} +{"$label":"DIRECTED","_key":"94817","_from":"34104","_to":"55841"} +{"$label":"DIRECTED","_key":"67203","_from":"34104","_to":"41452"} +{"$label":"DIRECTED","_key":"63758","_from":"34104","_to":"39867"} +{"$label":"DIRECTED","_key":"63047","_from":"34104","_to":"39564"} +{"$label":"DIRECTED","_key":"54794","_from":"34104","_to":"35058"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"52421","_from":"34107","_to":"34106"} +{"$label":"DIRECTED","_key":"52428","_from":"34113","_to":"34108"} +{"$label":"ACTS_IN","name":"Stephanie 'Steve' Clayton","type":"Role","_key":"52427","_from":"34112","_to":"34108"} +{"$label":"ACTS_IN","name":"Sheriff Jack Andrews","type":"Role","_key":"52426","_from":"34111","_to":"34108"} +{"$label":"ACTS_IN","name":"Joe Burch","type":"Role","_key":"52425","_from":"34110","_to":"34108"} +{"$label":"ACTS_IN","name":"Dr. Matt Hastings","type":"Role","_key":"52423","_from":"34109","_to":"34108"} +{"$label":"ACTS_IN","name":"Pfc Peter Conway","type":"Role","_key":"117219","_from":"34109","_to":"68953"} +{"$label":"ACTS_IN","name":"Lt. Flint Cohill","type":"Role","_key":"97390","_from":"34109","_to":"57354"} +{"$label":"ACTS_IN","name":"Captain Lucas","type":"Role","_key":"67027","_from":"34111","_to":"41374"} +{"$label":"DIRECTED","_key":"52433","_from":"34116","_to":"34114"} +{"$label":"ACTS_IN","name":"Archimedes the Owl","type":"Role","_key":"52431","_from":"34115","_to":"34114"} +{"$label":"DIRECTED","_key":"120959","_from":"34116","_to":"71045"} +{"$label":"DIRECTED","_key":"108347","_from":"34116","_to":"64045"} +{"$label":"DIRECTED","_key":"96077","_from":"34116","_to":"56475"} +{"$label":"DIRECTED","_key":"88858","_from":"34116","_to":"52647"} +{"$label":"DIRECTED","_key":"72539","_from":"34116","_to":"43753"} +{"$label":"DIRECTED","_key":"69106","_from":"34116","_to":"42285"} +{"$label":"DIRECTED","_key":"60859","_from":"34116","_to":"38442"} +{"$label":"DIRECTED","_key":"53141","_from":"34116","_to":"34379"} +{"$label":"ACTS_IN","name":"Richard Geddes","type":"Role","_key":"52438","_from":"34118","_to":"34117"} +{"$label":"ACTS_IN","name":"Horace Vanglider","type":"Role","_key":"104936","_from":"34118","_to":"61746"} +{"$label":"ACTS_IN","name":"Dr. White","type":"Role","_key":"90785","_from":"34118","_to":"53571"} +{"$label":"ACTS_IN","name":"Dean Buckley","type":"Role","_key":"65016","_from":"34118","_to":"40406"} +{"$label":"ACTS_IN","name":"Police Captain Parker","type":"Role","_key":"57218","_from":"34118","_to":"36289"} +{"$label":"ACTS_IN","name":"Shakey Fuller","type":"Role","_key":"56117","_from":"34118","_to":"35670"} +{"$label":"ACTS_IN","name":"Karen Boyer","type":"Role","_key":"52444","_from":"34120","_to":"34119"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"88898","_from":"34120","_to":"52665"} +{"$label":"ACTS_IN","name":"Caveh Zahedi","type":"Role","_key":"52458","_from":"34126","_to":"34121"} +{"$label":"ACTS_IN","name":"Angry Man in Jail","type":"Role","_key":"52457","_from":"34125","_to":"34121"} +{"$label":"ACTS_IN","name":"Boat Car Guy","type":"Role","_key":"52456","_from":"34124","_to":"34121"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"52453","_from":"34123","_to":"34121"} +{"$label":"ACTS_IN","name":"Main Character","type":"Role","_key":"52450","_from":"34122","_to":"34121"} +{"$label":"ACTS_IN","name":"Mitch Kramer","type":"Role","_key":"54765","_from":"34122","_to":"35048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113368","_from":"34126","_to":"66781"} +{"$label":"DIRECTED","_key":"113367","_from":"34126","_to":"66781"} +{"$label":"DIRECTED","_key":"52462","_from":"34130","_to":"34127"} +{"$label":"DIRECTED","_key":"52461","_from":"34129","_to":"34127"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"52460","_from":"34128","_to":"34127"} +{"$label":"DIRECTED","_key":"67920","_from":"34130","_to":"41729"} +{"$label":"DIRECTED","_key":"52470","_from":"34137","_to":"34132"} +{"$label":"DIRECTED","_key":"52469","_from":"34136","_to":"34132"} +{"$label":"ACTS_IN","name":"Manili","type":"Role","_key":"52468","_from":"34135","_to":"34132"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"52465","_from":"34134","_to":"34132"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"52463","_from":"34133","_to":"34132"} +{"$label":"ACTS_IN","name":"D\u00f6rte Brandt","type":"Role","_key":"64672","_from":"34134","_to":"40282"} +{"$label":"ACTS_IN","name":"Alanta","type":"Role","_key":"66796","_from":"34135","_to":"41265"} +{"$label":"DIRECTED","_key":"91069","_from":"34136","_to":"53732"} +{"$label":"DIRECTED","_key":"91070","_from":"34137","_to":"53732"} +{"$label":"ACTS_IN","name":"Dominique La Rue","type":"Role","_key":"52480","_from":"34142","_to":"34138"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"52478","_from":"34141","_to":"34138"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"52477","_from":"34140","_to":"34138"} +{"$label":"ACTS_IN","name":"Bennie Wilson","type":"Role","_key":"52474","_from":"34139","_to":"34138"} +{"$label":"ACTS_IN","name":"Roxy Harvey","type":"Role","_key":"102061","_from":"34142","_to":"60045"} +{"$label":"DIRECTED","_key":"52515","_from":"34151","_to":"34149"} +{"$label":"ACTS_IN","name":"Little Lilliana 'Lilly' Hoffman","type":"Role","_key":"52513","_from":"34150","_to":"34149"} +{"$label":"ACTS_IN","name":"Jahausa","type":"Role","_key":"52533","_from":"34157","_to":"34154"} +{"$label":"ACTS_IN","name":"Medicine Man","type":"Role","_key":"52532","_from":"34156","_to":"34154"} +{"$label":"ACTS_IN","name":"Tanaki","type":"Role","_key":"52531","_from":"34155","_to":"34154"} +{"$label":"DIRECTED","_key":"52535","_from":"34159","_to":"34158"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"52543","_from":"34161","_to":"34160"} +{"$label":"ACTS_IN","name":"Dr. Daniel Hoffmann","type":"Role","_key":"67693","_from":"34161","_to":"41636"} +{"$label":"ACTS_IN","name":"Freddie Bahlo","type":"Role","_key":"61788","_from":"34161","_to":"38898"} +{"$label":"DIRECTED","_key":"52565","_from":"34165","_to":"34164"} +{"$label":"DIRECTED","_key":"67669","_from":"34165","_to":"41630"} +{"$label":"DIRECTED","_key":"65901","_from":"34165","_to":"40771"} +{"$label":"DIRECTED","_key":"58305","_from":"34165","_to":"36867"} +{"$label":"ACTS_IN","name":"Ace Jefferson","type":"Role","_key":"52569","_from":"34169","_to":"34166"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"52568","_from":"34168","_to":"34166"} +{"$label":"ACTS_IN","name":"Becker","type":"Role","_key":"52567","_from":"34167","_to":"34166"} +{"$label":"ACTS_IN","name":"Detective Conk Adams","type":"Role","_key":"70627","_from":"34167","_to":"42977"} +{"$label":"ACTS_IN","name":"Carrie Newton","type":"Role","_key":"52575","_from":"34171","_to":"34170"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"52585","_from":"34174","_to":"34172"} +{"$label":"DIRECTED","_key":"52578","_from":"34173","_to":"34172"} +{"$label":"DIRECTED","_key":"112252","_from":"34173","_to":"66289"} +{"$label":"DIRECTED","_key":"94451","_from":"34173","_to":"55608"} +{"$label":"DIRECTED","_key":"63972","_from":"34173","_to":"39951"} +{"$label":"ACTS_IN","name":"Frakes","type":"Role","_key":"52600","_from":"34180","_to":"34175"} +{"$label":"ACTS_IN","name":"Shepherd","type":"Role","_key":"52599","_from":"34179","_to":"34175"} +{"$label":"ACTS_IN","name":"Novacek","type":"Role","_key":"52598","_from":"34178","_to":"34175"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"52595","_from":"34177","_to":"34175"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"52592","_from":"34176","_to":"34175"} +{"$label":"ACTS_IN","name":"Hendrix","type":"Role","_key":"116984","_from":"34177","_to":"68856"} +{"$label":"ACTS_IN","name":"Hank Yates","type":"Role","_key":"98908","_from":"34177","_to":"58276"} +{"$label":"ACTS_IN","name":"Clancy","type":"Role","_key":"58741","_from":"34177","_to":"37102"} +{"$label":"ACTS_IN","name":"Neil Darrow","type":"Role","_key":"60002","_from":"34178","_to":"37868"} +{"$label":"DIRECTED","_key":"52607","_from":"34184","_to":"34181"} +{"$label":"ACTS_IN","name":"Gabi Dr\u00f6sel","type":"Role","_key":"52604","_from":"34183","_to":"34181"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"52603","_from":"34182","_to":"34181"} +{"$label":"DIRECTED","_key":"55357","_from":"34184","_to":"35292"} +{"$label":"DIRECTED","_key":"54049","_from":"34184","_to":"34764"} +{"$label":"DIRECTED","_key":"52628","_from":"34192","_to":"34187"} +{"$label":"ACTS_IN","name":"Agneta","type":"Role","_key":"52627","_from":"34191","_to":"34187"} +{"$label":"ACTS_IN","name":"Lasse","type":"Role","_key":"52626","_from":"34190","_to":"34187"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"52625","_from":"34189","_to":"34187"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"52624","_from":"34188","_to":"34187"} +{"$label":"ACTS_IN","name":"Roro","type":"Role","_key":"67063","_from":"34188","_to":"41395"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"58817","_from":"34188","_to":"37140"} +{"$label":"ACTS_IN","name":"Sven Skoogh","type":"Role","_key":"103505","_from":"34189","_to":"60892"} +{"$label":"ACTS_IN","name":"M\u00e5ns","type":"Role","_key":"67064","_from":"34189","_to":"41395"} +{"$label":"ACTS_IN","name":"Ludvig","type":"Role","_key":"65452","_from":"34189","_to":"40575"} +{"$label":"DIRECTED","_key":"67062","_from":"34192","_to":"41395"} +{"$label":"ACTS_IN","name":"Siegfried Purzmann","type":"Role","_key":"52642","_from":"34196","_to":"34194"} +{"$label":"DIRECTED","_key":"52640","_from":"34195","_to":"34194"} +{"$label":"DIRECTED","_key":"64885","_from":"34195","_to":"40350"} +{"$label":"DIRECTED","_key":"59762","_from":"34195","_to":"37734"} +{"$label":"DIRECTED","_key":"56968","_from":"34195","_to":"36144"} +{"$label":"ACTS_IN","name":"Edwina","type":"Role","_key":"52652","_from":"34199","_to":"34197"} +{"$label":"ACTS_IN","name":"Bibi Blocksberg","type":"Role","_key":"52648","_from":"34198","_to":"34197"} +{"$label":"ACTS_IN","name":"Caro","type":"Role","_key":"55682","_from":"34199","_to":"35440"} +{"$label":"ACTS_IN","name":"Frau Gao","type":"Role","_key":"52671","_from":"34205","_to":"34201"} +{"$label":"ACTS_IN","name":"Wei-Wei","type":"Role","_key":"52669","_from":"34204","_to":"34201"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"52668","_from":"34203","_to":"34201"} +{"$label":"ACTS_IN","name":"Wai-Tung Gao","type":"Role","_key":"52667","_from":"34202","_to":"34201"} +{"$label":"DIRECTED","_key":"92791","_from":"34203","_to":"54739"} +{"$label":"ACTS_IN","name":"Crazy Pete","type":"Role","_key":"52686","_from":"34210","_to":"34207"} +{"$label":"ACTS_IN","name":"Young Chrissy DeWitt","type":"Role","_key":"52684","_from":"34209","_to":"34207"} +{"$label":"DIRECTED","_key":"52677","_from":"34208","_to":"34207"} +{"$label":"ACTS_IN","name":"Christian Zander","type":"Role","_key":"52704","_from":"34215","_to":"34212"} +{"$label":"ACTS_IN","name":"Vera Gemini","type":"Role","_key":"52700","_from":"34214","_to":"34212"} +{"$label":"DIRECTED","_key":"52699","_from":"34213","_to":"34212"} +{"$label":"DIRECTED","_key":"90767","_from":"34213","_to":"53569"} +{"$label":"ACTS_IN","name":"\u00d6zlem","type":"Role","_key":"88624","_from":"34214","_to":"52511"} +{"$label":"ACTS_IN","name":"Drew","type":"Role","_key":"52711","_from":"34218","_to":"34216"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"52709","_from":"34217","_to":"34216"} +{"$label":"ACTS_IN","name":"Quinn","type":"Role","_key":"73051","_from":"34218","_to":"43959"} +{"$label":"DIRECTED","_key":"52718","_from":"34220","_to":"34219"} +{"$label":"DIRECTED","_key":"72910","_from":"34220","_to":"43907"} +{"$label":"ACTS_IN","name":"Tony Two-Toes","type":"Role","_key":"52729","_from":"34222","_to":"34221"} +{"$label":"ACTS_IN","name":"Jelly","type":"Role","_key":"58244","_from":"34222","_to":"36834"} +{"$label":"DIRECTED","_key":"52751","_from":"34228","_to":"34224"} +{"$label":"ACTS_IN","name":"The Brain","type":"Role","_key":"52750","_from":"34227","_to":"34224"} +{"$label":"ACTS_IN","name":"Tugger","type":"Role","_key":"52747","_from":"34226","_to":"34224"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"52743","_from":"34225","_to":"34224"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"94391","_from":"34225","_to":"55578"} +{"$label":"ACTS_IN","name":"Sol Rosenbaum","type":"Role","_key":"55276","_from":"34226","_to":"35249"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"101346","_from":"34227","_to":"59660"} +{"$label":"ACTS_IN","name":"Young Fenton","type":"Role","_key":"88313","_from":"34227","_to":"52375"} +{"$label":"ACTS_IN","name":"Dr. Darrel Lindenmeyer","type":"Role","_key":"52757","_from":"34231","_to":"34229"} +{"$label":"DIRECTED","_key":"52752","_from":"34230","_to":"34229"} +{"$label":"DIRECTED","_key":"117931","_from":"34230","_to":"69318"} +{"$label":"DIRECTED","_key":"94100","_from":"34230","_to":"55414"} +{"$label":"DIRECTED","_key":"61349","_from":"34230","_to":"38717"} +{"$label":"ACTS_IN","name":"Val Mayerick","type":"Role","_key":"117927","_from":"34230","_to":"69318"} +{"$label":"ACTS_IN","name":"Knox","type":"Role","_key":"61737","_from":"34231","_to":"38878"} +{"$label":"ACTS_IN","name":"Chicken Man","type":"Role","_key":"55578","_from":"34231","_to":"35390"} +{"$label":"ACTS_IN","name":"Connie Evans","type":"Role","_key":"52765","_from":"34233","_to":"34232"} +{"$label":"DIRECTED","_key":"52770","_from":"34236","_to":"34234"} +{"$label":"ACTS_IN","name":"Ouda","type":"Role","_key":"52769","_from":"34235","_to":"34234"} +{"$label":"DIRECTED","_key":"116067","_from":"34236","_to":"68351"} +{"$label":"DIRECTED","_key":"72582","_from":"34236","_to":"43763"} +{"$label":"DIRECTED","_key":"71498","_from":"34236","_to":"43335"} +{"$label":"DIRECTED","_key":"57852","_from":"34236","_to":"36614"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"116066","_from":"34236","_to":"68351"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116063","_from":"34236","_to":"68349"} +{"$label":"ACTS_IN","name":"Loke Groundrunner \/ Beboobeep \/ Unwise Council Member \/ The Puppet \/ Gabba the Butt \/ Big Toe & Yes Man \/ Aunt Gonnabiteit (voice)","type":"Role","_key":"102583","_from":"34236","_to":"60357"} +{"$label":"ACTS_IN","name":"The Chosen One","type":"Role","_key":"72581","_from":"34236","_to":"43763"} +{"$label":"ACTS_IN","name":"Snotty Boy \/ Mr. Beady \/ Snotty Boy's Father","type":"Role","_key":"57867","_from":"34236","_to":"36614"} +{"$label":"DIRECTED","_key":"52777","_from":"34240","_to":"34237"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"52776","_from":"34239","_to":"34237"} +{"$label":"ACTS_IN","name":"Gei\u00dfenpeter","type":"Role","_key":"52775","_from":"34238","_to":"34237"} +{"$label":"DIRECTED","_key":"88175","_from":"34240","_to":"52318"} +{"$label":"ACTS_IN","name":"Gabe Santora","type":"Role","_key":"52792","_from":"34243","_to":"34242"} +{"$label":"ACTS_IN","name":"Randolph Douglas Scipio","type":"Role","_key":"94875","_from":"34243","_to":"55861"} +{"$label":"ACTS_IN","name":"Brad Carter","type":"Role","_key":"52807","_from":"34246","_to":"34245"} +{"$label":"ACTS_IN","name":"Thanatos","type":"Role","_key":"119907","_from":"34246","_to":"70418"} +{"$label":"ACTS_IN","name":"Looney","type":"Role","_key":"118763","_from":"34246","_to":"69835"} +{"$label":"ACTS_IN","name":"Myron Larabee","type":"Role","_key":"52812","_from":"34248","_to":"34247"} +{"$label":"ACTS_IN","name":"Mr. Wheat","type":"Role","_key":"101887","_from":"34248","_to":"59966"} +{"$label":"ACTS_IN","name":"Sam Simms","type":"Role","_key":"90265","_from":"34248","_to":"53365"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"55023","_from":"34248","_to":"35160"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"52818","_from":"34250","_to":"34249"} +{"$label":"ACTS_IN","name":"Angel-A","type":"Role","_key":"68666","_from":"34250","_to":"42085"} +{"$label":"ACTS_IN","name":"Kevin (Paramedic #2)","type":"Role","_key":"52838","_from":"34255","_to":"34252"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"52827","_from":"34254","_to":"34252"} +{"$label":"DIRECTED","_key":"52825","_from":"34253","_to":"34252"} +{"$label":"DIRECTED","_key":"108754","_from":"34253","_to":"64285"} +{"$label":"ACTS_IN","name":"Matt Kur","type":"Role","_key":"106186","_from":"34254","_to":"62546"} +{"$label":"ACTS_IN","name":"Sp4 Galen Bungum","type":"Role","_key":"64313","_from":"34254","_to":"40088"} +{"$label":"ACTS_IN","name":"Zuppi G\u00fctzkow","type":"Role","_key":"52852","_from":"34259","_to":"34257"} +{"$label":"ACTS_IN","name":"Betty G\u00fctzkow","type":"Role","_key":"52851","_from":"34258","_to":"34257"} +{"$label":"ACTS_IN","name":"Kyle Edwards","type":"Role","_key":"52860","_from":"34262","_to":"34260"} +{"$label":"DIRECTED","_key":"52855","_from":"34261","_to":"34260"} +{"$label":"DIRECTED","_key":"117504","_from":"34261","_to":"69087"} +{"$label":"DIRECTED","_key":"71186","_from":"34261","_to":"43207"} +{"$label":"DIRECTED","_key":"57401","_from":"34261","_to":"36396"} +{"$label":"DIRECTED","_key":"53504","_from":"34261","_to":"34547"} +{"$label":"ACTS_IN","name":"Dizzy Harrison\/Gil Harris","type":"Role","_key":"67090","_from":"34262","_to":"41408"} +{"$label":"ACTS_IN","name":"Bludworth","type":"Role","_key":"52875","_from":"34273","_to":"34263"} +{"$label":"ACTS_IN","name":"Amber Regan","type":"Role","_key":"52874","_from":"34272","_to":"34263"} +{"$label":"ACTS_IN","name":"Perry Malinowski","type":"Role","_key":"52873","_from":"34271","_to":"34263"} +{"$label":"ACTS_IN","name":"Julie Christensen","type":"Role","_key":"52872","_from":"34270","_to":"34263"} +{"$label":"ACTS_IN","name":"Ashlyn Halperin","type":"Role","_key":"52871","_from":"34269","_to":"34263"} +{"$label":"ACTS_IN","name":"Carrie Dreyer","type":"Role","_key":"52868","_from":"34268","_to":"34263"} +{"$label":"ACTS_IN","name":"Jason Wise","type":"Role","_key":"52867","_from":"34267","_to":"34263"} +{"$label":"ACTS_IN","name":"Erin Ulmer","type":"Role","_key":"52865","_from":"34266","_to":"34263"} +{"$label":"ACTS_IN","name":"Kevin Fischer","type":"Role","_key":"52863","_from":"34265","_to":"34263"} +{"$label":"DIRECTED","_key":"52861","_from":"34264","_to":"34263"} +{"$label":"DIRECTED","_key":"98866","_from":"34264","_to":"58251"} +{"$label":"DIRECTED","_key":"65849","_from":"34264","_to":"40750"} +{"$label":"DIRECTED","_key":"54499","_from":"34264","_to":"34931"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"119338","_from":"34265","_to":"70121"} +{"$label":"ACTS_IN","name":"Jim Rabb","type":"Role","_key":"102605","_from":"34265","_to":"60371"} +{"$label":"ACTS_IN","name":"Nils","type":"Role","_key":"115543","_from":"34267","_to":"68020"} +{"$label":"ACTS_IN","name":"Andrew Stilwell","type":"Role","_key":"101061","_from":"34267","_to":"59551"} +{"$label":"ACTS_IN","name":"Robert W. Gardner","type":"Role","_key":"97127","_from":"34267","_to":"57136"} +{"$label":"ACTS_IN","name":"Jason McCardy","type":"Role","_key":"57507","_from":"34267","_to":"36439"} +{"$label":"ACTS_IN","name":"Victoria Bronte","type":"Role","_key":"102088","_from":"34268","_to":"60060"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"101127","_from":"34268","_to":"59583"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"93308","_from":"34269","_to":"54964"} +{"$label":"ACTS_IN","name":"Cam's Wedding Friend","type":"Role","_key":"59658","_from":"34269","_to":"37658"} +{"$label":"ACTS_IN","name":"Lauren Hannon","type":"Role","_key":"55342","_from":"34269","_to":"35281"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"117473","_from":"34270","_to":"69081"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"95014","_from":"34270","_to":"55939"} +{"$label":"ACTS_IN","name":"Kia","type":"Role","_key":"55329","_from":"34270","_to":"35273"} +{"$label":"ACTS_IN","name":"Giorgio","type":"Role","_key":"117290","_from":"34273","_to":"68981"} +{"$label":"ACTS_IN","name":"Sam Stone","type":"Role","_key":"52879","_from":"34275","_to":"34274"} +{"$label":"DIRECTED","_key":"52891","_from":"34284","_to":"34276"} +{"$label":"DIRECTED","_key":"52890","_from":"34283","_to":"34276"} +{"$label":"DIRECTED","_key":"52889","_from":"34282","_to":"34276"} +{"$label":"ACTS_IN","name":"Ormaline","type":"Role","_key":"52888","_from":"34281","_to":"34276"} +{"$label":"ACTS_IN","name":"Nim","type":"Role","_key":"52887","_from":"34280","_to":"34276"} +{"$label":"ACTS_IN","name":"Lux","type":"Role","_key":"52886","_from":"34279","_to":"34276"} +{"$label":"ACTS_IN","name":"Melora","type":"Role","_key":"52885","_from":"34278","_to":"34276"} +{"$label":"ACTS_IN","name":"Berek","type":"Role","_key":"52884","_from":"34277","_to":"34276"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"116976","_from":"34277","_to":"68851"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"59928","_from":"34277","_to":"37835"} +{"$label":"ACTS_IN","name":"Princess Kirsten","type":"Role","_key":"105100","_from":"34278","_to":"61857"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"115474","_from":"34281","_to":"67985"} +{"$label":"DIRECTED","_key":"52893","_from":"34286","_to":"34285"} +{"$label":"ACTS_IN","name":"Arnan Rothman","type":"Role","_key":"52907","_from":"34290","_to":"34287"} +{"$label":"ACTS_IN","name":"Sue Charleton","type":"Role","_key":"52906","_from":"34289","_to":"34287"} +{"$label":"ACTS_IN","name":"Michael J. 'Crocodile' Dundee","type":"Role","_key":"52905","_from":"34288","_to":"34287"} +{"$label":"ACTS_IN","name":"Michael J. 'Crocodile' Dundee","type":"Role","_key":"55431","_from":"34288","_to":"35332"} +{"$label":"ACTS_IN","name":"Michael J. 'Crocodile' Dundee","type":"Role","_key":"53593","_from":"34288","_to":"34586"} +{"$label":"ACTS_IN","name":"Jill McGowan","type":"Role","_key":"88152","_from":"34289","_to":"52303"} +{"$label":"ACTS_IN","name":"Sue Charlton","type":"Role","_key":"55432","_from":"34289","_to":"35332"} +{"$label":"ACTS_IN","name":"Sue Charlton","type":"Role","_key":"53594","_from":"34289","_to":"34586"} +{"$label":"ACTS_IN","name":"Agent Hotchkiss","type":"Role","_key":"104819","_from":"34290","_to":"61674"} +{"$label":"ACTS_IN","name":"Guard Malloy","type":"Role","_key":"52929","_from":"34302","_to":"34291"} +{"$label":"ACTS_IN","name":"Guard Webster","type":"Role","_key":"52928","_from":"34301","_to":"34291"} +{"$label":"ACTS_IN","name":"Guard Garner","type":"Role","_key":"52926","_from":"34300","_to":"34291"} +{"$label":"ACTS_IN","name":"Guard Dunham","type":"Role","_key":"52925","_from":"34299","_to":"34291"} +{"$label":"ACTS_IN","name":"Guard Engleheart","type":"Role","_key":"52924","_from":"34298","_to":"34291"} +{"$label":"ACTS_IN","name":"Guard Lambert","type":"Role","_key":"52923","_from":"34297","_to":"34291"} +{"$label":"ACTS_IN","name":"Turley","type":"Role","_key":"52918","_from":"34296","_to":"34291"} +{"$label":"ACTS_IN","name":"Switowski","type":"Role","_key":"52916","_from":"34295","_to":"34291"} +{"$label":"ACTS_IN","name":"Battle","type":"Role","_key":"52914","_from":"34294","_to":"34291"} +{"$label":"ACTS_IN","name":"Megget","type":"Role","_key":"52913","_from":"34293","_to":"34291"} +{"$label":"ACTS_IN","name":"Deacon Moss","type":"Role","_key":"52912","_from":"34292","_to":"34291"} +{"$label":"ACTS_IN","name":"William Burke","type":"Role","_key":"96086","_from":"34294","_to":"56481"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"90498","_from":"34294","_to":"53462"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"62831","_from":"34294","_to":"39480"} +{"$label":"ACTS_IN","name":"Beno","type":"Role","_key":"110935","_from":"34295","_to":"65527"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"58356","_from":"34295","_to":"36877"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"58549","_from":"34297","_to":"36989"} +{"$label":"ACTS_IN","name":"Conrad","type":"Role","_key":"101220","_from":"34299","_to":"59620"} +{"$label":"ACTS_IN","name":"Kevlar Guy","type":"Role","_key":"60558","_from":"34302","_to":"38218"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"52941","_from":"34306","_to":"34304"} +{"$label":"ACTS_IN","name":"John Tucker","type":"Role","_key":"52939","_from":"34305","_to":"34304"} +{"$label":"ACTS_IN","name":"Granger Woodruff","type":"Role","_key":"111913","_from":"34305","_to":"66067"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"111370","_from":"34305","_to":"65768"} +{"$label":"ACTS_IN","name":"Tristan Price","type":"Role","_key":"101050","_from":"34305","_to":"59547"} +{"$label":"ACTS_IN","name":"Anastacia","type":"Role","_key":"52956","_from":"34310","_to":"34308"} +{"$label":"ACTS_IN","name":"Thomas D","type":"Role","_key":"52955","_from":"34309","_to":"34308"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"91537","_from":"34309","_to":"53957"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"52959","_from":"34312","_to":"34311"} +{"$label":"DIRECTED","_key":"52973","_from":"34317","_to":"34313"} +{"$label":"ACTS_IN","name":"Jenny Bennett","type":"Role","_key":"52972","_from":"34316","_to":"34313"} +{"$label":"ACTS_IN","name":"Ketchup","type":"Role","_key":"52971","_from":"34315","_to":"34313"} +{"$label":"ACTS_IN","name":"Kleines M\u00e4dchen","type":"Role","_key":"52968","_from":"34314","_to":"34313"} +{"$label":"ACTS_IN","name":"Cindy Collins \/ Princess","type":"Role","_key":"98542","_from":"34314","_to":"58071"} +{"$label":"DIRECTED","_key":"95374","_from":"34317","_to":"56102"} +{"$label":"DIRECTED","_key":"52978","_from":"34321","_to":"34318"} +{"$label":"ACTS_IN","name":"Hoochie 2","type":"Role","_key":"52977","_from":"34320","_to":"34318"} +{"$label":"ACTS_IN","name":"Hoochie 1","type":"Role","_key":"52976","_from":"34319","_to":"34318"} +{"$label":"DIRECTED","_key":"58691","_from":"34321","_to":"37074"} +{"$label":"DIRECTED","_key":"52992","_from":"34327","_to":"34323"} +{"$label":"ACTS_IN","name":"Earl of Moray","type":"Role","_key":"52990","_from":"34326","_to":"34323"} +{"$label":"ACTS_IN","name":"Falsetto\/Angel","type":"Role","_key":"52987","_from":"34325","_to":"34323"} +{"$label":"ACTS_IN","name":"Elizabeth I","type":"Role","_key":"52986","_from":"34324","_to":"34323"} +{"$label":"ACTS_IN","name":"Charles Musgrove","type":"Role","_key":"110901","_from":"34326","_to":"65506"} +{"$label":"DIRECTED","_key":"53017","_from":"34334","_to":"34332"} +{"$label":"DIRECTED","_key":"53016","_from":"34333","_to":"34332"} +{"$label":"ACTS_IN","name":"Juliane Christiansen","type":"Role","_key":"53041","_from":"34341","_to":"34339"} +{"$label":"ACTS_IN","name":"Inuit J\u00e4ger","type":"Role","_key":"53039","_from":"34340","_to":"34339"} +{"$label":"ACTS_IN","name":"Reptile","type":"Role","_key":"53055","_from":"34348","_to":"34342"} +{"$label":"ACTS_IN","name":"Sub-Zero","type":"Role","_key":"53054","_from":"34347","_to":"34342"} +{"$label":"ACTS_IN","name":"Scorpion","type":"Role","_key":"53053","_from":"34346","_to":"34342"} +{"$label":"ACTS_IN","name":"Kano","type":"Role","_key":"53052","_from":"34345","_to":"34342"} +{"$label":"ACTS_IN","name":"Johnny Cage","type":"Role","_key":"53048","_from":"34344","_to":"34342"} +{"$label":"ACTS_IN","name":"Liu Kang","type":"Role","_key":"53047","_from":"34343","_to":"34342"} +{"$label":"ACTS_IN","name":"Gen","type":"Role","_key":"103806","_from":"34343","_to":"61054"} +{"$label":"ACTS_IN","name":"14K","type":"Role","_key":"63604","_from":"34343","_to":"39790"} +{"$label":"ACTS_IN","name":"Liu Kang","type":"Role","_key":"57167","_from":"34343","_to":"36274"} +{"$label":"ACTS_IN","name":"Gobei","type":"Role","_key":"55109","_from":"34343","_to":"35188"} +{"$label":"ACTS_IN","name":"Cross","type":"Role","_key":"102874","_from":"34344","_to":"60513"} +{"$label":"ACTS_IN","name":"McKenna","type":"Role","_key":"99253","_from":"34344","_to":"58489"} +{"$label":"ACTS_IN","name":"Detective Adams","type":"Role","_key":"98757","_from":"34344","_to":"58198"} +{"$label":"ACTS_IN","name":"Morgan Earp","type":"Role","_key":"88369","_from":"34344","_to":"52390"} +{"$label":"DIRECTED","_key":"53062","_from":"34350","_to":"34349"} +{"$label":"DIRECTED","_key":"64301","_from":"34350","_to":"40088"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"53072","_from":"34354","_to":"34352"} +{"$label":"DIRECTED","_key":"53068","_from":"34353","_to":"34352"} +{"$label":"DIRECTED","_key":"57873","_from":"34353","_to":"36622"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"60599","_from":"34354","_to":"38253"} +{"$label":"ACTS_IN","name":"Sister Willow","type":"Role","_key":"55911","_from":"34354","_to":"35563"} +{"$label":"ACTS_IN","name":"Uncle Mao","type":"Role","_key":"53077","_from":"34358","_to":"34355"} +{"$label":"ACTS_IN","name":"Komtuan","type":"Role","_key":"53076","_from":"34357","_to":"34355"} +{"$label":"ACTS_IN","name":"Muay Lek","type":"Role","_key":"53075","_from":"34356","_to":"34355"} +{"$label":"DIRECTED","_key":"53088","_from":"34362","_to":"34360"} +{"$label":"ACTS_IN","name":"Jolitorax (voice)","type":"Role","_key":"53086","_from":"34361","_to":"34360"} +{"$label":"ACTS_IN","name":"Boodle's Porter","type":"Role","_key":"53113","_from":"34368","_to":"34364"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"53112","_from":"34367","_to":"34364"} +{"$label":"ACTS_IN","name":"Dr. Darling","type":"Role","_key":"53111","_from":"34366","_to":"34364"} +{"$label":"ACTS_IN","name":"Donavan","type":"Role","_key":"53110","_from":"34365","_to":"34364"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"53116","_from":"34370","_to":"34369"} +{"$label":"ACTS_IN","name":"Zap","type":"Role","_key":"53126","_from":"34374","_to":"34371"} +{"$label":"ACTS_IN","name":"Coyotte","type":"Role","_key":"53125","_from":"34373","_to":"34371"} +{"$label":"ACTS_IN","name":"Nikita","type":"Role","_key":"53123","_from":"34372","_to":"34371"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"103580","_from":"34372","_to":"60921"} +{"$label":"ACTS_IN","name":"Aramaki","type":"Role","_key":"53133","_from":"34378","_to":"34375"} +{"$label":"ACTS_IN","name":"Motoko Kusanagi","type":"Role","_key":"53130","_from":"34377","_to":"34375"} +{"$label":"DIRECTED","_key":"53129","_from":"34376","_to":"34375"} +{"$label":"DIRECTED","_key":"106298","_from":"34376","_to":"62620"} +{"$label":"DIRECTED","_key":"106222","_from":"34376","_to":"62559"} +{"$label":"DIRECTED","_key":"100862","_from":"34376","_to":"59463"} +{"$label":"DIRECTED","_key":"100861","_from":"34376","_to":"59462"} +{"$label":"DIRECTED","_key":"98485","_from":"34376","_to":"58034"} +{"$label":"DIRECTED","_key":"88253","_from":"34376","_to":"52353"} +{"$label":"DIRECTED","_key":"66446","_from":"34376","_to":"41077"} +{"$label":"ACTS_IN","name":"Motoko Kusangai","type":"Role","_key":"117873","_from":"34377","_to":"69295"} +{"$label":"ACTS_IN","name":"Motoko Kusanagi","type":"Role","_key":"117683","_from":"34377","_to":"69171"} +{"$label":"ACTS_IN","name":"Motoko Kusanagi","type":"Role","_key":"98480","_from":"34377","_to":"58034"} +{"$label":"ACTS_IN","name":"Motoko Kusanagi (voice)","type":"Role","_key":"88258","_from":"34377","_to":"52353"} +{"$label":"ACTS_IN","name":"Section 9 Department Chief Aramaki","type":"Role","_key":"98483","_from":"34378","_to":"58034"} +{"$label":"ACTS_IN","name":"Mowgli","type":"Role","_key":"53140","_from":"34382","_to":"34379"} +{"$label":"ACTS_IN","name":"King Louie (voice)","type":"Role","_key":"53136","_from":"34381","_to":"34379"} +{"$label":"ACTS_IN","name":"Baloo (voice)","type":"Role","_key":"53134","_from":"34380","_to":"34379"} +{"$label":"ACTS_IN","name":"Ed Joseph","type":"Role","_key":"113850","_from":"34380","_to":"67061"} +{"$label":"ACTS_IN","name":"Little John (voice)","type":"Role","_key":"72541","_from":"34380","_to":"43753"} +{"$label":"ACTS_IN","name":"O'Malley","type":"Role","_key":"60855","_from":"34380","_to":"38442"} +{"$label":"ACTS_IN","name":"Ira","type":"Role","_key":"53146","_from":"34384","_to":"34383"} +{"$label":"ACTS_IN","name":"Harry Munchack","type":"Role","_key":"61358","_from":"34384","_to":"38719"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"53160","_from":"34395","_to":"34388"} +{"$label":"ACTS_IN","name":"Ranvir","type":"Role","_key":"53159","_from":"34394","_to":"34388"} +{"$label":"ACTS_IN","name":"Inspector Khushroo","type":"Role","_key":"53158","_from":"34393","_to":"34388"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"53157","_from":"34392","_to":"34388"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"53156","_from":"34391","_to":"34388"} +{"$label":"ACTS_IN","name":"Vik","type":"Role","_key":"53155","_from":"34390","_to":"34388"} +{"$label":"DIRECTED","_key":"53154","_from":"34389","_to":"34388"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"111253","_from":"34393","_to":"65697"} +{"$label":"ACTS_IN","name":"Bhuvan Chaudhry","type":"Role","_key":"106318","_from":"34394","_to":"62621"} +{"$label":"ACTS_IN","name":"Memnon","type":"Role","_key":"53175","_from":"34400","_to":"34399"} +{"$label":"ACTS_IN","name":"John Rimbauer","type":"Role","_key":"107823","_from":"34400","_to":"63677"} +{"$label":"ACTS_IN","name":"Gianni Chellini","type":"Role","_key":"53181","_from":"34403","_to":"34401"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"53180","_from":"34402","_to":"34401"} +{"$label":"ACTS_IN","name":"Tatianna","type":"Role","_key":"95853","_from":"34402","_to":"56368"} +{"$label":"ACTS_IN","name":"Davide","type":"Role","_key":"105445","_from":"34403","_to":"62031"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"89405","_from":"34403","_to":"52924"} +{"$label":"ACTS_IN","name":"Cadet Kyle Blankes","type":"Role","_key":"53197","_from":"34413","_to":"34404"} +{"$label":"ACTS_IN","name":"Capt. Reed","type":"Role","_key":"53195","_from":"34412","_to":"34404"} +{"$label":"ACTS_IN","name":"Cadet Douglas Fackler","type":"Role","_key":"53194","_from":"34411","_to":"34404"} +{"$label":"ACTS_IN","name":"Mrs. Fackler","type":"Role","_key":"53193","_from":"34410","_to":"34404"} +{"$label":"ACTS_IN","name":"Cadet Eugene Tackleberry","type":"Role","_key":"53190","_from":"34409","_to":"34404"} +{"$label":"ACTS_IN","name":"Cadet George Mart\u00edn","type":"Role","_key":"53189","_from":"34408","_to":"34404"} +{"$label":"ACTS_IN","name":"Cmndt. Eric Lassard","type":"Role","_key":"53188","_from":"34407","_to":"34404"} +{"$label":"ACTS_IN","name":"Cadet Leslie Barbara","type":"Role","_key":"53187","_from":"34406","_to":"34404"} +{"$label":"ACTS_IN","name":"Cadet Moses Hightower","type":"Role","_key":"53186","_from":"34405","_to":"34404"} +{"$label":"ACTS_IN","name":"Sgt. Moses Hightower","type":"Role","_key":"88129","_from":"34405","_to":"52299"} +{"$label":"ACTS_IN","name":"Lt. Moses Hightower","type":"Role","_key":"72599","_from":"34405","_to":"43770"} +{"$label":"ACTS_IN","name":"Sgt. Moses Hightower","type":"Role","_key":"72223","_from":"34405","_to":"43642"} +{"$label":"ACTS_IN","name":"Sgt. Moses Hightowe","type":"Role","_key":"64270","_from":"34405","_to":"40078"} +{"$label":"ACTS_IN","name":"Hightower","type":"Role","_key":"61316","_from":"34405","_to":"38704"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"119682","_from":"34406","_to":"70293"} +{"$label":"ACTS_IN","name":"Eric Lassard","type":"Role","_key":"70551","_from":"34407","_to":"42933"} +{"$label":"ACTS_IN","name":"Dr. Forrest","type":"Role","_key":"53888","_from":"34407","_to":"34691"} +{"$label":"ACTS_IN","name":"Sgt. Eugene Tackleberry","type":"Role","_key":"88130","_from":"34409","_to":"52299"} +{"$label":"ACTS_IN","name":"Sgt. Eugene Tackleberry","type":"Role","_key":"72600","_from":"34409","_to":"43770"} +{"$label":"ACTS_IN","name":"Sgt. Eugene Tackleberry","type":"Role","_key":"72224","_from":"34409","_to":"43642"} +{"$label":"ACTS_IN","name":"Eugene Tackleberry","type":"Role","_key":"70555","_from":"34409","_to":"42933"} +{"$label":"ACTS_IN","name":"Tackleberry","type":"Role","_key":"61317","_from":"34409","_to":"38704"} +{"$label":"ACTS_IN","name":"Mr. Booth, the Lawyer","type":"Role","_key":"108238","_from":"34412","_to":"63963"} +{"$label":"ACTS_IN","name":"Bitterman","type":"Role","_key":"95751","_from":"34412","_to":"56323"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"53202","_from":"34416","_to":"34414"} +{"$label":"ACTS_IN","name":"Inken","type":"Role","_key":"53199","_from":"34415","_to":"34414"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"88200","_from":"34415","_to":"52329"} +{"$label":"ACTS_IN","name":"Inken","type":"Role","_key":"68354","_from":"34415","_to":"41953"} +{"$label":"ACTS_IN","name":"Maja Paradis","type":"Role","_key":"54778","_from":"34415","_to":"35052"} +{"$label":"DIRECTED","_key":"53211","_from":"34419","_to":"34418"} +{"$label":"DIRECTED","_key":"67218","_from":"34419","_to":"41454"} +{"$label":"DIRECTED","_key":"64916","_from":"34419","_to":"40359"} +{"$label":"DIRECTED","_key":"61688","_from":"34419","_to":"38858"} +{"$label":"ACTS_IN","name":"Andy Carmichael","type":"Role","_key":"53217","_from":"34422","_to":"34420"} +{"$label":"ACTS_IN","name":"Lawrence 'Chunk' Cohen","type":"Role","_key":"53214","_from":"34421","_to":"34420"} +{"$label":"ACTS_IN","name":"Jennifer Chester","type":"Role","_key":"119828","_from":"34422","_to":"70368"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"94052","_from":"34422","_to":"55385"} +{"$label":"ACTS_IN","name":"Young Joaqu\u00edn Murrieta","type":"Role","_key":"53230","_from":"34425","_to":"34424"} +{"$label":"ACTS_IN","name":"Captain (Orinoco Paul)","type":"Role","_key":"53235","_from":"34429","_to":"34426"} +{"$label":"ACTS_IN","name":"Cholo","type":"Role","_key":"53234","_from":"34428","_to":"34426"} +{"$label":"ACTS_IN","name":"Don Aquilino","type":"Role","_key":"53233","_from":"34427","_to":"34426"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"71662","_from":"34427","_to":"43388"} +{"$label":"ACTS_IN","name":"Don Octavio Coutinho","type":"Role","_key":"70335","_from":"34427","_to":"42852"} +{"$label":"ACTS_IN","name":"Pancho","type":"Role","_key":"100225","_from":"34428","_to":"59110"} +{"$label":"ACTS_IN","name":"Deli Owner","type":"Role","_key":"53241","_from":"34434","_to":"34430"} +{"$label":"ACTS_IN","name":"Casper","type":"Role","_key":"53240","_from":"34433","_to":"34430"} +{"$label":"ACTS_IN","name":"Girl #1","type":"Role","_key":"53239","_from":"34432","_to":"34430"} +{"$label":"ACTS_IN","name":"Telly","type":"Role","_key":"53238","_from":"34431","_to":"34430"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"109465","_from":"34431","_to":"64667"} +{"$label":"ACTS_IN","name":"Roach","type":"Role","_key":"63514","_from":"34433","_to":"39764"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53265","_from":"34450","_to":"34435"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53264","_from":"34449","_to":"34435"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53263","_from":"34448","_to":"34435"} +{"$label":"ACTS_IN","name":"Anna's father","type":"Role","_key":"53262","_from":"34447","_to":"34435"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53261","_from":"34446","_to":"34435"} +{"$label":"ACTS_IN","name":"Philip Ceder","type":"Role","_key":"53260","_from":"34445","_to":"34435"} +{"$label":"ACTS_IN","name":"Ahmed Aalam","type":"Role","_key":"53259","_from":"34444","_to":"34435"} +{"$label":"ACTS_IN","name":"Preben Smed","type":"Role","_key":"53258","_from":"34443","_to":"34435"} +{"$label":"ACTS_IN","name":"\u00c5ke","type":"Role","_key":"53257","_from":"34442","_to":"34435"} +{"$label":"ACTS_IN","name":"Ebba Skepphult","type":"Role","_key":"53256","_from":"34441","_to":"34435"} +{"$label":"ACTS_IN","name":"The Russian","type":"Role","_key":"53255","_from":"34440","_to":"34435"} +{"$label":"ACTS_IN","name":"Louise Rahmberg","type":"Role","_key":"53253","_from":"34439","_to":"34435"} +{"$label":"ACTS_IN","name":"Diana Malm","type":"Role","_key":"53252","_from":"34438","_to":"34435"} +{"$label":"ACTS_IN","name":"Anna Skepphult","type":"Role","_key":"53251","_from":"34437","_to":"34435"} +{"$label":"ACTS_IN","name":"Morgan Nordenstr\u00e5le","type":"Role","_key":"53248","_from":"34436","_to":"34435"} +{"$label":"ACTS_IN","name":"Ingvild","type":"Role","_key":"88423","_from":"34437","_to":"52404"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"90577","_from":"34439","_to":"53496"} +{"$label":"DIRECTED","_key":"53270","_from":"34452","_to":"34451"} +{"$label":"ACTS_IN","name":"Veronica Roberts","type":"Role","_key":"53286","_from":"34456","_to":"34455"} +{"$label":"ACTS_IN","name":"Alice Connor","type":"Role","_key":"70325","_from":"34456","_to":"42848"} +{"$label":"DIRECTED","_key":"53303","_from":"34464","_to":"34458"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"53301","_from":"34463","_to":"34458"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"53299","_from":"34462","_to":"34458"} +{"$label":"ACTS_IN","name":"Mrs. Thomas","type":"Role","_key":"53298","_from":"34461","_to":"34458"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"53297","_from":"34460","_to":"34458"} +{"$label":"ACTS_IN","name":"Scott Thomas","type":"Role","_key":"53295","_from":"34459","_to":"34458"} +{"$label":"ACTS_IN","name":"Dan Millman","type":"Role","_key":"95887","_from":"34459","_to":"56393"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"89204","_from":"34459","_to":"52824"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"60619","_from":"34459","_to":"38265"} +{"$label":"ACTS_IN","name":"Chun-Li","type":"Role","_key":"103801","_from":"34460","_to":"61054"} +{"$label":"ACTS_IN","name":"Naseem Khan","type":"Role","_key":"101054","_from":"34460","_to":"59551"} +{"$label":"ACTS_IN","name":"Tenar","type":"Role","_key":"56893","_from":"34460","_to":"36116"} +{"$label":"ACTS_IN","name":"Ronald Thompson","type":"Role","_key":"53312","_from":"34471","_to":"34466"} +{"$label":"ACTS_IN","name":"Russell Thompson Jr.","type":"Role","_key":"53311","_from":"34470","_to":"34466"} +{"$label":"ACTS_IN","name":"Amy Szalinski","type":"Role","_key":"53309","_from":"34469","_to":"34466"} +{"$label":"ACTS_IN","name":"Mae Thompson","type":"Role","_key":"53308","_from":"34468","_to":"34466"} +{"$label":"ACTS_IN","name":"Diane Szalinski","type":"Role","_key":"53306","_from":"34467","_to":"34466"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"100421","_from":"34467","_to":"59213"} +{"$label":"ACTS_IN","name":"Diane Szalinski","type":"Role","_key":"68203","_from":"34467","_to":"41885"} +{"$label":"ACTS_IN","name":"Clyde Parker","type":"Role","_key":"66624","_from":"34471","_to":"41181"} +{"$label":"DIRECTED","_key":"53320","_from":"34475","_to":"34472"} +{"$label":"ACTS_IN","name":"Master","type":"Role","_key":"53318","_from":"34474","_to":"34472"} +{"$label":"ACTS_IN","name":"Savannah Nix","type":"Role","_key":"53317","_from":"34473","_to":"34472"} +{"$label":"DIRECTED","_key":"53326","_from":"34477","_to":"34476"} +{"$label":"DIRECTED","_key":"110123","_from":"34477","_to":"65070"} +{"$label":"DIRECTED","_key":"102780","_from":"34477","_to":"60460"} +{"$label":"DIRECTED","_key":"94026","_from":"34477","_to":"55369"} +{"$label":"DIRECTED","_key":"69746","_from":"34477","_to":"42567"} +{"$label":"DIRECTED","_key":"64794","_from":"34477","_to":"40315"} +{"$label":"DIRECTED","_key":"54965","_from":"34477","_to":"35134"} +{"$label":"DIRECTED","_key":"54242","_from":"34477","_to":"34831"} +{"$label":"DIRECTED","_key":"53331","_from":"34479","_to":"34478"} +{"$label":"DIRECTED","_key":"110178","_from":"34479","_to":"65101"} +{"$label":"ACTS_IN","name":"Officer Thomas Burke","type":"Role","_key":"53334","_from":"34481","_to":"34480"} +{"$label":"ACTS_IN","name":"Alice Munro","type":"Role","_key":"53355","_from":"34486","_to":"34484"} +{"$label":"ACTS_IN","name":"Uncas","type":"Role","_key":"53354","_from":"34485","_to":"34484"} +{"$label":"ACTS_IN","name":"Gall","type":"Role","_key":"94668","_from":"34485","_to":"55765"} +{"$label":"ACTS_IN","name":"Evelyn Adams","type":"Role","_key":"96704","_from":"34486","_to":"56883"} +{"$label":"ACTS_IN","name":"Rhonda LeBeck","type":"Role","_key":"53360","_from":"34488","_to":"34487"} +{"$label":"ACTS_IN","name":"Mauricio (Moco)","type":"Role","_key":"53376","_from":"34496","_to":"34493"} +{"$label":"ACTS_IN","name":"Bigot\u00f3n","type":"Role","_key":"53375","_from":"34495","_to":"34493"} +{"$label":"ACTS_IN","name":"Domino","type":"Role","_key":"53374","_from":"34494","_to":"34493"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"53383","_from":"34499","_to":"34497"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"53381","_from":"34498","_to":"34497"} +{"$label":"DIRECTED","_key":"53393","_from":"34504","_to":"34500"} +{"$label":"ACTS_IN","name":"Medicine man (voice: German version)","type":"Role","_key":"53391","_from":"34503","_to":"34500"} +{"$label":"ACTS_IN","name":"Ha-Tschi (voice: German version)","type":"Role","_key":"53390","_from":"34502","_to":"34500"} +{"$label":"ACTS_IN","name":"Majestix (voice: German version)","type":"Role","_key":"53389","_from":"34501","_to":"34500"} +{"$label":"DIRECTED","_key":"54265","_from":"34504","_to":"34837"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"53403","_from":"34507","_to":"34505"} +{"$label":"ACTS_IN","name":"Paoli","type":"Role","_key":"53401","_from":"34506","_to":"34505"} +{"$label":"ACTS_IN","name":"Benito Juarez","type":"Role","_key":"119163","_from":"34506","_to":"70028"} +{"$label":"ACTS_IN","name":"F\u00e4hnrich","type":"Role","_key":"53414","_from":"34511","_to":"34508"} +{"$label":"ACTS_IN","name":"Philander","type":"Role","_key":"53413","_from":"34510","_to":"34508"} +{"$label":"ACTS_IN","name":"Zeezee","type":"Role","_key":"53411","_from":"34509","_to":"34508"} +{"$label":"DIRECTED","_key":"53430","_from":"34513","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53429","_from":"34527","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53428","_from":"34526","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53427","_from":"34525","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53426","_from":"34524","_to":"34512"} +{"$label":"ACTS_IN","name":"Herself (as Dr. Lisa Young)","type":"Role","_key":"53425","_from":"34523","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself (as Dr. David Satcher)","type":"Role","_key":"53424","_from":"34522","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself (as John F. Banzhaf III)","type":"Role","_key":"53423","_from":"34521","_to":"34512"} +{"$label":"ACTS_IN","name":"Herself - Morgan's Girlfriend (as Healthy Chef Alex)","type":"Role","_key":"53422","_from":"34520","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself, former editor, Walking","type":"Role","_key":"53421","_from":"34519","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself, exercise physiologist","type":"Role","_key":"53420","_from":"34518","_to":"34512"} +{"$label":"ACTS_IN","name":"Herself (as Bridget Bennett R.D.)","type":"Role","_key":"53419","_from":"34517","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself (as Steven Siegel MD FACC Cardiologist)","type":"Role","_key":"53418","_from":"34516","_to":"34512"} +{"$label":"ACTS_IN","name":"Herself (as Lisa Ganjhu D.O. Gastroenterologist & Hepatologist)","type":"Role","_key":"53417","_from":"34515","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself (as Daryl M. Isaacs MD Internal Medicine)","type":"Role","_key":"53416","_from":"34514","_to":"34512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53415","_from":"34513","_to":"34512"} +{"$label":"ACTS_IN","name":"Morgan Spurlock","type":"Role","_key":"88501","_from":"34513","_to":"52455"} +{"$label":"DIRECTED","_key":"88500","_from":"34513","_to":"52455"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"61060","_from":"34523","_to":"38583"} +{"$label":"ACTS_IN","name":"Pepper","type":"Role","_key":"53433","_from":"34529","_to":"34528"} +{"$label":"ACTS_IN","name":"Carrie Freeborn","type":"Role","_key":"98968","_from":"34529","_to":"58306"} +{"$label":"ACTS_IN","name":"Nina Papas","type":"Role","_key":"93301","_from":"34529","_to":"54964"} +{"$label":"ACTS_IN","name":"Erica Geerson","type":"Role","_key":"70462","_from":"34529","_to":"42894"} +{"$label":"DIRECTED","_key":"53461","_from":"34534","_to":"34533"} +{"$label":"DIRECTED","_key":"55245","_from":"34534","_to":"35238"} +{"$label":"DIRECTED","_key":"53468","_from":"34538","_to":"34535"} +{"$label":"ACTS_IN","name":"Baron von Platt","type":"Role","_key":"53466","_from":"34537","_to":"34535"} +{"$label":"ACTS_IN","name":"Frauke","type":"Role","_key":"53463","_from":"34536","_to":"34535"} +{"$label":"ACTS_IN","name":"Polizeipr\u00e4sident","type":"Role","_key":"90573","_from":"34537","_to":"53494"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"53482","_from":"34544","_to":"34540"} +{"$label":"ACTS_IN","name":"Junger Hacker","type":"Role","_key":"53481","_from":"34543","_to":"34540"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"53480","_from":"34542","_to":"34540"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"53473","_from":"34541","_to":"34540"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115745","_from":"34541","_to":"68151"} +{"$label":"ACTS_IN","name":"L\u00e9a \/ Naomi","type":"Role","_key":"100046","_from":"34541","_to":"59019"} +{"$label":"ACTS_IN","name":"Manon Br\u00fcgen","type":"Role","_key":"93986","_from":"34541","_to":"55346"} +{"$label":"ACTS_IN","name":"das M\u00e4dchen","type":"Role","_key":"62887","_from":"34541","_to":"39508"} +{"$label":"ACTS_IN","name":"Le\u00efto","type":"Role","_key":"104072","_from":"34543","_to":"61236"} +{"$label":"ACTS_IN","name":"Le\u00efto","type":"Role","_key":"59855","_from":"34543","_to":"37799"} +{"$label":"DIRECTED","_key":"53513","_from":"34554","_to":"34548"} +{"$label":"DIRECTED","_key":"53512","_from":"34553","_to":"34548"} +{"$label":"DIRECTED","_key":"53511","_from":"34552","_to":"34548"} +{"$label":"DIRECTED","_key":"53510","_from":"34551","_to":"34548"} +{"$label":"ACTS_IN","name":"Le r\u00e9ceptionniste (voice)","type":"Role","_key":"53508","_from":"34550","_to":"34548"} +{"$label":"ACTS_IN","name":"Abraracourcix (voice)","type":"Role","_key":"53507","_from":"34549","_to":"34548"} +{"$label":"ACTS_IN","name":"Ob\u00e9lix (voice)","type":"Role","_key":"67543","_from":"34549","_to":"41586"} +{"$label":"ACTS_IN","name":"Obelix (voice)","type":"Role","_key":"58230","_from":"34549","_to":"36830"} +{"$label":"ACTS_IN","name":"Panoramix (voice)","type":"Role","_key":"71126","_from":"34550","_to":"43173"} +{"$label":"DIRECTED","_key":"58226","_from":"34551","_to":"36830"} +{"$label":"DIRECTED","_key":"58228","_from":"34553","_to":"36830"} +{"$label":"ACTS_IN","name":"Slave Girl","type":"Role","_key":"53537","_from":"34561","_to":"34556"} +{"$label":"ACTS_IN","name":"Conan's Mother","type":"Role","_key":"53534","_from":"34560","_to":"34556"} +{"$label":"ACTS_IN","name":"The Princess","type":"Role","_key":"53530","_from":"34559","_to":"34556"} +{"$label":"ACTS_IN","name":"Rexor","type":"Role","_key":"53527","_from":"34558","_to":"34556"} +{"$label":"ACTS_IN","name":"The Witch","type":"Role","_key":"53526","_from":"34557","_to":"34556"} +{"$label":"ACTS_IN","name":"Lina (as Valerie Quennessen)","type":"Role","_key":"120069","_from":"34559","_to":"70511"} +{"$label":"ACTS_IN","name":"Robin Williger","type":"Role","_key":"53540","_from":"34564","_to":"34562"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53539","_from":"34563","_to":"34562"} +{"$label":"DIRECTED","_key":"53547","_from":"34566","_to":"34565"} +{"$label":"ACTS_IN","name":"Former Girlfriend","type":"Role","_key":"53556","_from":"34568","_to":"34567"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"53563","_from":"34572","_to":"34569"} +{"$label":"ACTS_IN","name":"John Logan","type":"Role","_key":"53562","_from":"34571","_to":"34569"} +{"$label":"ACTS_IN","name":"Boy in Balloon","type":"Role","_key":"53561","_from":"34570","_to":"34569"} +{"$label":"DIRECTED","_key":"53575","_from":"34578","_to":"34573"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"53573","_from":"34577","_to":"34573"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"53572","_from":"34576","_to":"34573"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"53571","_from":"34575","_to":"34573"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"53569","_from":"34574","_to":"34573"} +{"$label":"ACTS_IN","name":"Mercer","type":"Role","_key":"90468","_from":"34575","_to":"53450"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"70163","_from":"34575","_to":"42770"} +{"$label":"ACTS_IN","name":"Lotte","type":"Role","_key":"115471","_from":"34577","_to":"67985"} +{"$label":"DIRECTED","_key":"94620","_from":"34578","_to":"55748"} +{"$label":"DIRECTED","_key":"72526","_from":"34578","_to":"43746"} +{"$label":"ACTS_IN","name":"Tjaden","type":"Role","_key":"53579","_from":"34581","_to":"34579"} +{"$label":"ACTS_IN","name":"Christoph Schneider","type":"Role","_key":"53578","_from":"34580","_to":"34579"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"53584","_from":"34583","_to":"34582"} +{"$label":"ACTS_IN","name":"Tony Salvano","type":"Role","_key":"53591","_from":"34585","_to":"34584"} +{"$label":"DIRECTED","_key":"53597","_from":"34588","_to":"34586"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"53596","_from":"34587","_to":"34586"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53632","_from":"34599","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53628","_from":"34598","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53626","_from":"34597","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself (as DJ Mark Ronson)","type":"Role","_key":"53623","_from":"34596","_to":"34590"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"53621","_from":"34595","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53620","_from":"34594","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53618","_from":"34593","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53617","_from":"34592","_to":"34590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53615","_from":"34591","_to":"34590"} +{"$label":"ACTS_IN","name":"Primo","type":"Role","_key":"73054","_from":"34597","_to":"43959"} +{"$label":"DIRECTED","_key":"53641","_from":"34603","_to":"34600"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne Gaultier","type":"Role","_key":"53640","_from":"34602","_to":"34600"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"53637","_from":"34601","_to":"34600"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"116402","_from":"34602","_to":"68524"} +{"$label":"ACTS_IN","name":"Sarah Hargrave","type":"Role","_key":"97307","_from":"34602","_to":"57291"} +{"$label":"DIRECTED","_key":"58140","_from":"34603","_to":"36780"} +{"$label":"DIRECTED","_key":"54916","_from":"34603","_to":"35108"} +{"$label":"ACTS_IN","name":"Allan Hopper","type":"Role","_key":"53650","_from":"34606","_to":"34605"} +{"$label":"DIRECTED","_key":"53657","_from":"34609","_to":"34607"} +{"$label":"ACTS_IN","name":"Wigald","type":"Role","_key":"53653","_from":"34608","_to":"34607"} +{"$label":"ACTS_IN","name":"Professor Habakuk Tibatong","type":"Role","_key":"65962","_from":"34608","_to":"40802"} +{"$label":"DIRECTED","_key":"65409","_from":"34609","_to":"40557"} +{"$label":"ACTS_IN","name":"Howard Stern","type":"Role","_key":"53659","_from":"34611","_to":"34610"} +{"$label":"DIRECTED","_key":"53669","_from":"34618","_to":"34612"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"53668","_from":"34617","_to":"34612"} +{"$label":"ACTS_IN","name":"Col. Gregor Yegorov","type":"Role","_key":"53667","_from":"34616","_to":"34612"} +{"$label":"ACTS_IN","name":"'Uncle' Bill Wong","type":"Role","_key":"53666","_from":"34615","_to":"34612"} +{"$label":"ACTS_IN","name":"Annie Tsui","type":"Role","_key":"53665","_from":"34614","_to":"34612"} +{"$label":"ACTS_IN","name":"Jackson Tsui","type":"Role","_key":"53664","_from":"34613","_to":"34612"} +{"$label":"ACTS_IN","name":"Bill Wong","type":"Role","_key":"65464","_from":"34615","_to":"40581"} +{"$label":"DIRECTED","_key":"117038","_from":"34618","_to":"68879"} +{"$label":"DIRECTED","_key":"71321","_from":"34618","_to":"43260"} +{"$label":"DIRECTED","_key":"68086","_from":"34618","_to":"41824"} +{"$label":"DIRECTED","_key":"53840","_from":"34618","_to":"34683"} +{"$label":"DIRECTED","_key":"53680","_from":"34624","_to":"34620"} +{"$label":"DIRECTED","_key":"53679","_from":"34623","_to":"34620"} +{"$label":"ACTS_IN","name":"Amy Finch","type":"Role","_key":"53678","_from":"34622","_to":"34620"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"53677","_from":"34621","_to":"34620"} +{"$label":"ACTS_IN","name":"Fiona Wormwood","type":"Role","_key":"100195","_from":"34622","_to":"59097"} +{"$label":"ACTS_IN","name":"Meg Harper","type":"Role","_key":"89255","_from":"34622","_to":"52848"} +{"$label":"ACTS_IN","name":"Virginia Venit","type":"Role","_key":"55059","_from":"34622","_to":"35171"} +{"$label":"ACTS_IN","name":"Bob Ghery","type":"Role","_key":"53683","_from":"34626","_to":"34625"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"109495","_from":"34626","_to":"64679"} +{"$label":"ACTS_IN","name":"Eric Gordon","type":"Role","_key":"67313","_from":"34626","_to":"41492"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"56658","_from":"34626","_to":"35987"} +{"$label":"DIRECTED","_key":"53691","_from":"34629","_to":"34627"} +{"$label":"DIRECTED","_key":"53690","_from":"34628","_to":"34627"} +{"$label":"DIRECTED","_key":"53711","_from":"34634","_to":"34633"} +{"$label":"DIRECTED","_key":"53716","_from":"34636","_to":"34635"} +{"$label":"DIRECTED","_key":"53726","_from":"34640","_to":"34638"} +{"$label":"ACTS_IN","name":"Agent Nick Spikings","type":"Role","_key":"53724","_from":"34639","_to":"34638"} +{"$label":"ACTS_IN","name":"Simon Schlermer","type":"Role","_key":"103540","_from":"34639","_to":"60906"} +{"$label":"DIRECTED","_key":"93027","_from":"34640","_to":"54848"} +{"$label":"DIRECTED","_key":"69382","_from":"34640","_to":"42413"} +{"$label":"DIRECTED","_key":"68732","_from":"34640","_to":"42115"} +{"$label":"DIRECTED","_key":"61415","_from":"34640","_to":"38737"} +{"$label":"ACTS_IN","name":"Grace Cipriani","type":"Role","_key":"53730","_from":"34642","_to":"34641"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"120596","_from":"34642","_to":"70829"} +{"$label":"ACTS_IN","name":"Jean Hamilton","type":"Role","_key":"105299","_from":"34642","_to":"61964"} +{"$label":"ACTS_IN","name":"Roma Schleine","type":"Role","_key":"102511","_from":"34642","_to":"60309"} +{"$label":"ACTS_IN","name":"Victoria 'Vicky' Tomlinson McGee","type":"Role","_key":"70172","_from":"34642","_to":"42773"} +{"$label":"ACTS_IN","name":"Dusty Tails","type":"Role","_key":"65212","_from":"34642","_to":"40495"} +{"$label":"DIRECTED","_key":"53737","_from":"34645","_to":"34643"} +{"$label":"ACTS_IN","name":"Cass Lake","type":"Role","_key":"53736","_from":"34644","_to":"34643"} +{"$label":"DIRECTED","_key":"53742","_from":"34647","_to":"34646"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"53741","_from":"34648","_to":"34646"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"53739","_from":"34647","_to":"34646"} +{"$label":"DIRECTED","_key":"70083","_from":"34647","_to":"42727"} +{"$label":"ACTS_IN","name":"Olivers Vater","type":"Role","_key":"65947","_from":"34648","_to":"40793"} +{"$label":"ACTS_IN","name":"Josefine","type":"Role","_key":"53750","_from":"34651","_to":"34650"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"60390","_from":"34651","_to":"38093"} +{"$label":"DIRECTED","_key":"53763","_from":"34655","_to":"34654"} +{"$label":"ACTS_IN","name":"Caine 607","type":"Role","_key":"53774","_from":"34658","_to":"34657"} +{"$label":"ACTS_IN","name":"Oraz","type":"Role","_key":"120228","_from":"34658","_to":"70601"} +{"$label":"ACTS_IN","name":"Aladdin","type":"Role","_key":"114910","_from":"34658","_to":"67679"} +{"$label":"ACTS_IN","name":"ryan chan","type":"Role","_key":"114777","_from":"34658","_to":"67606"} +{"$label":"ACTS_IN","name":"Mowgli","type":"Role","_key":"65202","_from":"34658","_to":"40494"} +{"$label":"ACTS_IN","name":"Father Uffizi","type":"Role","_key":"64212","_from":"34658","_to":"40055"} +{"$label":"ACTS_IN","name":"Father Uffizi","type":"Role","_key":"64203","_from":"34658","_to":"40050"} +{"$label":"ACTS_IN","name":"Noro","type":"Role","_key":"63413","_from":"34658","_to":"39726"} +{"$label":"ACTS_IN","name":"Bruce Lee","type":"Role","_key":"63181","_from":"34658","_to":"39629"} +{"$label":"ACTS_IN","name":"Tawny","type":"Role","_key":"53781","_from":"34660","_to":"34659"} +{"$label":"DIRECTED","_key":"53789","_from":"34664","_to":"34661"} +{"$label":"ACTS_IN","name":"Lomper","type":"Role","_key":"53786","_from":"34663","_to":"34661"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"53785","_from":"34662","_to":"34661"} +{"$label":"DIRECTED","_key":"105507","_from":"34664","_to":"62083"} +{"$label":"DIRECTED","_key":"61524","_from":"34664","_to":"38798"} +{"$label":"ACTS_IN","name":"Doug Butabi","type":"Role","_key":"53802","_from":"34668","_to":"34666"} +{"$label":"DIRECTED","_key":"53800","_from":"34667","_to":"34666"} +{"$label":"ACTS_IN","name":"Corky Romano","type":"Role","_key":"113718","_from":"34668","_to":"67018"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"110911","_from":"34668","_to":"65512"} +{"$label":"ACTS_IN","name":"Leonard Cardoza","type":"Role","_key":"98491","_from":"34668","_to":"58035"} +{"$label":"ACTS_IN","name":"Mr. Feather","type":"Role","_key":"89173","_from":"34668","_to":"52818"} +{"$label":"ACTS_IN","name":"Switterman","type":"Role","_key":"53815","_from":"34671","_to":"34669"} +{"$label":"ACTS_IN","name":"Simon Baines","type":"Role","_key":"53813","_from":"34670","_to":"34669"} +{"$label":"ACTS_IN","name":"Binky","type":"Role","_key":"116836","_from":"34670","_to":"68777"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"108371","_from":"34670","_to":"64065"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"56911","_from":"34670","_to":"36124"} +{"$label":"ACTS_IN","name":"Big Brain","type":"Role","_key":"56853","_from":"34670","_to":"36092"} +{"$label":"DIRECTED","_key":"53819","_from":"34674","_to":"34672"} +{"$label":"ACTS_IN","name":"Lillith","type":"Role","_key":"53818","_from":"34673","_to":"34672"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"116137","_from":"34673","_to":"68383"} +{"$label":"ACTS_IN","name":"Lea Calot","type":"Role","_key":"115140","_from":"34673","_to":"67804"} +{"$label":"DIRECTED","_key":"53830","_from":"34678","_to":"34677"} +{"$label":"DIRECTED","_key":"102530","_from":"34678","_to":"60318"} +{"$label":"DIRECTED","_key":"90743","_from":"34678","_to":"53556"} +{"$label":"ACTS_IN","name":"Davey Sikes","type":"Role","_key":"53839","_from":"34682","_to":"34681"} +{"$label":"ACTS_IN","name":"Agent CIA Gus Anders","type":"Role","_key":"53846","_from":"34684","_to":"34683"} +{"$label":"ACTS_IN","name":"Marc Gifford","type":"Role","_key":"53853","_from":"34688","_to":"34685"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"53852","_from":"34687","_to":"34685"} +{"$label":"ACTS_IN","name":"Claudia Horts de Gifford","type":"Role","_key":"53849","_from":"34686","_to":"34685"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"66080","_from":"34688","_to":"40886"} +{"$label":"ACTS_IN","name":"(in \"The Killers\") (archive footage)","type":"Role","_key":"53893","_from":"34694","_to":"34691"} +{"$label":"ACTS_IN","name":"Waiter (as Frank McCarthy)","type":"Role","_key":"53889","_from":"34693","_to":"34691"} +{"$label":"ACTS_IN","name":"(in \"The Glass Key\") (archive footage)","type":"Role","_key":"53878","_from":"34692","_to":"34691"} +{"$label":"ACTS_IN","name":"Lt Olivia D'Arcy","type":"Role","_key":"113937","_from":"34692","_to":"67114"} +{"$label":"ACTS_IN","name":"Janet Henry","type":"Role","_key":"111212","_from":"34692","_to":"65677"} +{"$label":"ACTS_IN","name":"Ellen Graham","type":"Role","_key":"109903","_from":"34692","_to":"64940"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"108578","_from":"34692","_to":"64167"} +{"$label":"ACTS_IN","name":"Joyce Harwood","type":"Role","_key":"107014","_from":"34692","_to":"63091"} +{"$label":"ACTS_IN","name":"Jennie Liddell","type":"Role","_key":"53900","_from":"34697","_to":"34695"} +{"$label":"DIRECTED","_key":"53897","_from":"34696","_to":"34695"} +{"$label":"DIRECTED","_key":"91108","_from":"34696","_to":"53749"} +{"$label":"DIRECTED","_key":"67214","_from":"34696","_to":"41453"} +{"$label":"DIRECTED","_key":"53912","_from":"34699","_to":"34698"} +{"$label":"DIRECTED","_key":"120513","_from":"34699","_to":"70787"} +{"$label":"DIRECTED","_key":"70184","_from":"34699","_to":"42776"} +{"$label":"DIRECTED","_key":"53919","_from":"34702","_to":"34701"} +{"$label":"DIRECTED","_key":"89259","_from":"34702","_to":"52848"} +{"$label":"DIRECTED","_key":"69590","_from":"34702","_to":"42487"} +{"$label":"DIRECTED","_key":"59807","_from":"34702","_to":"37760"} +{"$label":"DIRECTED","_key":"53929","_from":"34705","_to":"34704"} +{"$label":"DIRECTED","_key":"117762","_from":"34705","_to":"69226"} +{"$label":"ACTS_IN","name":"Exterminator Jeff","type":"Role","_key":"53941","_from":"34708","_to":"34706"} +{"$label":"ACTS_IN","name":"Pete Lender","type":"Role","_key":"53940","_from":"34707","_to":"34706"} +{"$label":"ACTS_IN","name":"Arthur Weasley","type":"Role","_key":"89533","_from":"34708","_to":"52992"} +{"$label":"ACTS_IN","name":"Tremaine","type":"Role","_key":"59727","_from":"34708","_to":"37714"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"53947","_from":"34711","_to":"34709"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"53945","_from":"34710","_to":"34709"} +{"$label":"ACTS_IN","name":"Topaz Mortmain","type":"Role","_key":"114382","_from":"34710","_to":"67374"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"110087","_from":"34710","_to":"65055"} +{"$label":"ACTS_IN","name":"Susan Whitmore","type":"Role","_key":"106016","_from":"34710","_to":"62417"} +{"$label":"ACTS_IN","name":"Estella Campion","type":"Role","_key":"90019","_from":"34710","_to":"53251"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"64517","_from":"34710","_to":"40187"} +{"$label":"ACTS_IN","name":"Tammy Metzler","type":"Role","_key":"53952","_from":"34713","_to":"34712"} +{"$label":"ACTS_IN","name":"Drusilla","type":"Role","_key":"53960","_from":"34717","_to":"34715"} +{"$label":"DIRECTED","_key":"53958","_from":"34716","_to":"34715"} +{"$label":"ACTS_IN","name":"Lauren Randall","type":"Role","_key":"53977","_from":"34722","_to":"34720"} +{"$label":"DIRECTED","_key":"53973","_from":"34721","_to":"34720"} +{"$label":"DIRECTED","_key":"88491","_from":"34721","_to":"52451"} +{"$label":"ACTS_IN","name":"Ashley Grant","type":"Role","_key":"108160","_from":"34722","_to":"63922"} +{"$label":"ACTS_IN","name":"Sarah Wainthrope","type":"Role","_key":"71490","_from":"34722","_to":"43330"} +{"$label":"ACTS_IN","name":"Taylor Vaughan","type":"Role","_key":"62548","_from":"34722","_to":"39367"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"54004","_from":"34740","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"54003","_from":"34739","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"54002","_from":"34738","_to":"34725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54001","_from":"34737","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"54000","_from":"34736","_to":"34725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53999","_from":"34735","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"53998","_from":"34734","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"53997","_from":"34733","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"53995","_from":"34732","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"53994","_from":"34731","_to":"34725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53992","_from":"34730","_to":"34725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53991","_from":"34729","_to":"34725"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"53990","_from":"34728","_to":"34725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"53989","_from":"34727","_to":"34725"} +{"$label":"DIRECTED","_key":"53988","_from":"34726","_to":"34725"} +{"$label":"DIRECTED","_key":"65269","_from":"34726","_to":"40513"} +{"$label":"DIRECTED","_key":"54012","_from":"34747","_to":"34741"} +{"$label":"ACTS_IN","name":"Jimmy Jimmy","type":"Role","_key":"54011","_from":"34746","_to":"34741"} +{"$label":"ACTS_IN","name":"King Kau (as Anthony Wong)","type":"Role","_key":"54010","_from":"34745","_to":"34741"} +{"$label":"ACTS_IN","name":"Commander Hung (as Patrick Lung)","type":"Role","_key":"54009","_from":"34744","_to":"34741"} +{"$label":"ACTS_IN","name":"Mei Lin (as Francoise C.J. Yip)","type":"Role","_key":"54008","_from":"34743","_to":"34741"} +{"$label":"ACTS_IN","name":"Tracy Lee","type":"Role","_key":"54007","_from":"34742","_to":"34741"} +{"$label":"ACTS_IN","name":"Kong Yat Hung","type":"Role","_key":"103306","_from":"34742","_to":"60775"} +{"$label":"ACTS_IN","name":"Pak Jing Jing","type":"Role","_key":"94043","_from":"34742","_to":"55377"} +{"$label":"ACTS_IN","name":"Blondie","type":"Role","_key":"68622","_from":"34742","_to":"42067"} +{"$label":"ACTS_IN","name":"Janice Long","type":"Role","_key":"62305","_from":"34743","_to":"39249"} +{"$label":"ACTS_IN","name":"Crow","type":"Role","_key":"60136","_from":"34743","_to":"37937"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64631","_from":"34744","_to":"40258"} +{"$label":"ACTS_IN","name":"Kwai","type":"Role","_key":"118002","_from":"34745","_to":"69361"} +{"$label":"ACTS_IN","name":"Prada","type":"Role","_key":"112298","_from":"34745","_to":"66303"} +{"$label":"ACTS_IN","name":"Bunta 'Tofuman' Fujiwara","type":"Role","_key":"109127","_from":"34745","_to":"64472"} +{"$label":"ACTS_IN","name":"SP Wong Chi Shing","type":"Role","_key":"99564","_from":"34745","_to":"58693"} +{"$label":"ACTS_IN","name":"Blaze","type":"Role","_key":"96775","_from":"34745","_to":"56921"} +{"$label":"ACTS_IN","name":"Yuda","type":"Role","_key":"89451","_from":"34745","_to":"52964"} +{"$label":"ACTS_IN","name":"Inspector Wong Chi Shing","type":"Role","_key":"71267","_from":"34745","_to":"43242"} +{"$label":"ACTS_IN","name":"SP Wong Chi Shing","type":"Role","_key":"65697","_from":"34745","_to":"40692"} +{"$label":"ACTS_IN","name":"'Clubfoot' Seven","type":"Role","_key":"64627","_from":"34746","_to":"40258"} +{"$label":"ACTS_IN","name":"Club Foot \/ Thunder Foot","type":"Role","_key":"64623","_from":"34746","_to":"40256"} +{"$label":"ACTS_IN","name":"Kung","type":"Role","_key":"64610","_from":"34746","_to":"40250"} +{"$label":"DIRECTED","_key":"117611","_from":"34747","_to":"69139"} +{"$label":"DIRECTED","_key":"100699","_from":"34747","_to":"59376"} +{"$label":"ACTS_IN","name":"Bolo","type":"Role","_key":"54017","_from":"34751","_to":"34748"} +{"$label":"ACTS_IN","name":"Williams","type":"Role","_key":"54015","_from":"34750","_to":"34748"} +{"$label":"DIRECTED","_key":"54013","_from":"34749","_to":"34748"} +{"$label":"DIRECTED","_key":"119455","_from":"34749","_to":"70174"} +{"$label":"DIRECTED","_key":"115586","_from":"34749","_to":"68036"} +{"$label":"DIRECTED","_key":"100857","_from":"34749","_to":"59459"} +{"$label":"DIRECTED","_key":"93945","_from":"34749","_to":"55322"} +{"$label":"DIRECTED","_key":"93756","_from":"34749","_to":"55191"} +{"$label":"DIRECTED","_key":"93753","_from":"34749","_to":"55188"} +{"$label":"ACTS_IN","name":"Robert Sand","type":"Role","_key":"115587","_from":"34750","_to":"68049"} +{"$label":"ACTS_IN","name":"Black Belt Jones","type":"Role","_key":"115571","_from":"34750","_to":"68036"} +{"$label":"ACTS_IN","name":"Chong Li","type":"Role","_key":"71591","_from":"34751","_to":"43361"} +{"$label":"ACTS_IN","name":"Millionaire Chan","type":"Role","_key":"59850","_from":"34751","_to":"37785"} +{"$label":"ACTS_IN","name":"Moon","type":"Role","_key":"54910","_from":"34751","_to":"35108"} +{"$label":"ACTS_IN","name":"Chen Ching Hua","type":"Role","_key":"54020","_from":"34753","_to":"34752"} +{"$label":"ACTS_IN","name":"Yuan Le-erh","type":"Role","_key":"71719","_from":"34753","_to":"43415"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"54027","_from":"34760","_to":"34754"} +{"$label":"ACTS_IN","name":"Count Magnus Lee","type":"Role","_key":"54026","_from":"34759","_to":"34754"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"54025","_from":"34758","_to":"34754"} +{"$label":"ACTS_IN","name":"D","type":"Role","_key":"54024","_from":"34757","_to":"34754"} +{"$label":"DIRECTED","_key":"54023","_from":"34756","_to":"34754"} +{"$label":"DIRECTED","_key":"54022","_from":"34755","_to":"34754"} +{"$label":"DIRECTED","_key":"121336","_from":"34755","_to":"71298"} +{"$label":"ACTS_IN","name":"Rei","type":"Role","_key":"121342","_from":"34757","_to":"71298"} +{"$label":"ACTS_IN","name":"Amerikaner Hollow","type":"Role","_key":"54048","_from":"34765","_to":"34764"} +{"$label":"ACTS_IN","name":"Coleman 'Booger' Sykes","type":"Role","_key":"54055","_from":"34768","_to":"34766"} +{"$label":"ACTS_IN","name":"Jesus Shuttlesworth","type":"Role","_key":"54052","_from":"34767","_to":"34766"} +{"$label":"ACTS_IN","name":"Will Beckford","type":"Role","_key":"70092","_from":"34768","_to":"42734"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"60114","_from":"34768","_to":"37933"} +{"$label":"DIRECTED","_key":"54061","_from":"34770","_to":"34769"} +{"$label":"ACTS_IN","name":"Donut","type":"Role","_key":"54060","_from":"34774","_to":"34769"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"54059","_from":"34773","_to":"34769"} +{"$label":"ACTS_IN","name":"Fong","type":"Role","_key":"54058","_from":"34772","_to":"34769"} +{"$label":"ACTS_IN","name":"Crocodile Gang Boss (as Feng Xiao Gang)","type":"Role","_key":"54057","_from":"34771","_to":"34769"} +{"$label":"ACTS_IN","name":"Sing","type":"Role","_key":"54056","_from":"34770","_to":"34769"} +{"$label":"DIRECTED","_key":"95885","_from":"34770","_to":"56390"} +{"$label":"DIRECTED","_key":"71819","_from":"34770","_to":"43465"} +{"$label":"ACTS_IN","name":"Ti","type":"Role","_key":"95882","_from":"34770","_to":"56390"} +{"$label":"ACTS_IN","name":"Joker","type":"Role","_key":"94040","_from":"34770","_to":"55377"} +{"$label":"ACTS_IN","name":"Sing","type":"Role","_key":"71820","_from":"34770","_to":"43465"} +{"$label":"DIRECTED","_key":"115456","_from":"34771","_to":"67979"} +{"$label":"DIRECTED","_key":"100370","_from":"34771","_to":"59186"} +{"$label":"ACTS_IN","name":"Officer Pak Yut-Suet (as Eva Huang)","type":"Role","_key":"117602","_from":"34772","_to":"69139"} +{"$label":"ACTS_IN","name":"Zhor","type":"Role","_key":"117782","_from":"34773","_to":"69234"} +{"$label":"ACTS_IN","name":"Chang Chung\/Chang Yung","type":"Role","_key":"106429","_from":"34773","_to":"62698"} +{"$label":"ACTS_IN","name":"Panther","type":"Role","_key":"68083","_from":"34773","_to":"41824"} +{"$label":"ACTS_IN","name":"Gangster with Kidstuff","type":"Role","_key":"59851","_from":"34773","_to":"37785"} +{"$label":"DIRECTED","_key":"54078","_from":"34777","_to":"34776"} +{"$label":"DIRECTED","_key":"54091","_from":"34780","_to":"34779"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"54120","_from":"34785","_to":"34784"} +{"$label":"ACTS_IN","name":"Merle","type":"Role","_key":"57530","_from":"34785","_to":"36450"} +{"$label":"ACTS_IN","name":"Martina","type":"Role","_key":"54360","_from":"34785","_to":"34870"} +{"$label":"DIRECTED","_key":"54127","_from":"34787","_to":"34786"} +{"$label":"DIRECTED","_key":"101980","_from":"34787","_to":"60008"} +{"$label":"DIRECTED","_key":"63936","_from":"34787","_to":"39934"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"54150","_from":"34796","_to":"34789"} +{"$label":"ACTS_IN","name":"Train Engineer (as Jim Bulleit)","type":"Role","_key":"54149","_from":"34795","_to":"34789"} +{"$label":"ACTS_IN","name":"Alan Rubin","type":"Role","_key":"54148","_from":"34794","_to":"34789"} +{"$label":"ACTS_IN","name":"Lindsay Rubin","type":"Role","_key":"54147","_from":"34793","_to":"34789"} +{"$label":"ACTS_IN","name":"Lieutenant Carl Hanson","type":"Role","_key":"54146","_from":"34792","_to":"34789"} +{"$label":"ACTS_IN","name":"Detective Paulie Sellitto","type":"Role","_key":"54145","_from":"34791","_to":"34789"} +{"$label":"ACTS_IN","name":"Detective Kenny Solomon","type":"Role","_key":"54140","_from":"34790","_to":"34789"} +{"$label":"ACTS_IN","name":"Patrick McMullen","type":"Role","_key":"109039","_from":"34790","_to":"64434"} +{"$label":"ACTS_IN","name":"Francis Fitzpatrick","type":"Role","_key":"69417","_from":"34790","_to":"42427"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"121232","_from":"34791","_to":"71215"} +{"$label":"ACTS_IN","name":"Burch","type":"Role","_key":"68302","_from":"34791","_to":"41929"} +{"$label":"ACTS_IN","name":"Dick Simmons","type":"Role","_key":"65757","_from":"34791","_to":"40707"} +{"$label":"ACTS_IN","name":"Brannigan","type":"Role","_key":"62715","_from":"34791","_to":"39429"} +{"$label":"ACTS_IN","name":"Lt. Amos","type":"Role","_key":"54607","_from":"34791","_to":"34978"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"60636","_from":"34795","_to":"38272"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"70609","_from":"34796","_to":"42955"} +{"$label":"ACTS_IN","name":"Gorman Twoberry","type":"Role","_key":"58494","_from":"34796","_to":"36963"} +{"$label":"ACTS_IN","name":"Seniorinne 3","type":"Role","_key":"54167","_from":"34802","_to":"34798"} +{"$label":"ACTS_IN","name":"Seniorinne 2","type":"Role","_key":"54166","_from":"34801","_to":"34798"} +{"$label":"ACTS_IN","name":"Manfred's Wife","type":"Role","_key":"54164","_from":"34800","_to":"34798"} +{"$label":"ACTS_IN","name":"J\u00fcrgen's Wife","type":"Role","_key":"54163","_from":"34799","_to":"34798"} +{"$label":"DIRECTED","_key":"54186","_from":"34812","_to":"34805"} +{"$label":"ACTS_IN","name":"Assailant","type":"Role","_key":"54185","_from":"34811","_to":"34805"} +{"$label":"ACTS_IN","name":"Snobby Woman","type":"Role","_key":"54183","_from":"34810","_to":"34805"} +{"$label":"ACTS_IN","name":"Sir Anthony Chevenix","type":"Role","_key":"54182","_from":"34809","_to":"34805"} +{"$label":"ACTS_IN","name":"Pegasus' Secretary","type":"Role","_key":"54181","_from":"34808","_to":"34805"} +{"$label":"ACTS_IN","name":"Carlos Vendetta","type":"Role","_key":"54176","_from":"34807","_to":"34805"} +{"$label":"ACTS_IN","name":"Lorna Campbell","type":"Role","_key":"54172","_from":"34806","_to":"34805"} +{"$label":"ACTS_IN","name":"Bob Shrot","type":"Role","_key":"59049","_from":"34807","_to":"37275"} +{"$label":"ACTS_IN","name":"Doug's Mother","type":"Role","_key":"56032","_from":"34808","_to":"35612"} +{"$label":"DIRECTED","_key":"68124","_from":"34812","_to":"41844"} +{"$label":"DIRECTED","_key":"61756","_from":"34812","_to":"38887"} +{"$label":"DIRECTED","_key":"59038","_from":"34812","_to":"37275"} +{"$label":"ACTS_IN","name":"Manny (voice)","type":"Role","_key":"54193","_from":"34816","_to":"34813"} +{"$label":"ACTS_IN","name":"Heimlich (voice)","type":"Role","_key":"54192","_from":"34815","_to":"34813"} +{"$label":"ACTS_IN","name":"Queen (voice)","type":"Role","_key":"54190","_from":"34814","_to":"34813"} +{"$label":"ACTS_IN","name":"The Monster's Mate","type":"Role","_key":"111766","_from":"34814","_to":"65967"} +{"$label":"ACTS_IN","name":"Juni Cortez","type":"Role","_key":"54202","_from":"34819","_to":"34817"} +{"$label":"ACTS_IN","name":"Carmen Cortez","type":"Role","_key":"54201","_from":"34818","_to":"34817"} +{"$label":"ACTS_IN","name":"Shilo Wallace","type":"Role","_key":"99790","_from":"34818","_to":"58864"} +{"$label":"ACTS_IN","name":"Carmen Cortez","type":"Role","_key":"89189","_from":"34818","_to":"52822"} +{"$label":"ACTS_IN","name":"Carmen Cortez","type":"Role","_key":"60032","_from":"34818","_to":"37889"} +{"$label":"ACTS_IN","name":"Julie Corky","type":"Role","_key":"57649","_from":"34818","_to":"36500"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"120244","_from":"34819","_to":"70611"} +{"$label":"ACTS_IN","name":"Juni Cortez","type":"Role","_key":"89190","_from":"34819","_to":"52822"} +{"$label":"ACTS_IN","name":"Juni Cortez","type":"Role","_key":"60033","_from":"34819","_to":"37889"} +{"$label":"ACTS_IN","name":"Young Kathleen Kelly","type":"Role","_key":"54210","_from":"34821","_to":"34820"} +{"$label":"DIRECTED","_key":"54222","_from":"34827","_to":"34822"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"54221","_from":"34826","_to":"34822"} +{"$label":"ACTS_IN","name":"Samson Simpson","type":"Role","_key":"54220","_from":"34825","_to":"34822"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"54217","_from":"34824","_to":"34822"} +{"$label":"ACTS_IN","name":"Squirrel Master","type":"Role","_key":"54214","_from":"34823","_to":"34822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106731","_from":"34823","_to":"62909"} +{"$label":"ACTS_IN","name":"Corsican Brother","type":"Role","_key":"101734","_from":"34823","_to":"59878"} +{"$label":"ACTS_IN","name":"Chong","type":"Role","_key":"95412","_from":"34823","_to":"56129"} +{"$label":"ACTS_IN","name":"Chong","type":"Role","_key":"91044","_from":"34823","_to":"53722"} +{"$label":"ACTS_IN","name":"El Nebuloso","type":"Role","_key":"71035","_from":"34823","_to":"43138"} +{"$label":"ACTS_IN","name":"Anthony 'Man' Stoner","type":"Role","_key":"69961","_from":"34823","_to":"42680"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"66125","_from":"34823","_to":"40908"} +{"$label":"ACTS_IN","name":"Jimbo Leary","type":"Role","_key":"60539","_from":"34823","_to":"38203"} +{"$label":"DIRECTED","_key":"101739","_from":"34823","_to":"59878"} +{"$label":"DIRECTED","_key":"95417","_from":"34823","_to":"56129"} +{"$label":"DIRECTED","_key":"91050","_from":"34823","_to":"53722"} +{"$label":"ACTS_IN","name":"Bobby Shy","type":"Role","_key":"116742","_from":"34825","_to":"68714"} +{"$label":"ACTS_IN","name":"Father Stratton","type":"Role","_key":"58522","_from":"34825","_to":"36982"} +{"$label":"DIRECTED","_key":"121560","_from":"34827","_to":"71425"} +{"$label":"DIRECTED","_key":"111210","_from":"34827","_to":"65675"} +{"$label":"DIRECTED","_key":"67315","_from":"34827","_to":"41492"} +{"$label":"ACTS_IN","name":"Linda Mason","type":"Role","_key":"54234","_from":"34830","_to":"34829"} +{"$label":"ACTS_IN","name":"Louisa Kracklite","type":"Role","_key":"111629","_from":"34830","_to":"65904"} +{"$label":"ACTS_IN","name":"Nancy Spungen","type":"Role","_key":"102494","_from":"34830","_to":"60305"} +{"$label":"ACTS_IN","name":"Torres","type":"Role","_key":"54258","_from":"34836","_to":"34832"} +{"$label":"ACTS_IN","name":"Tin Tin","type":"Role","_key":"54252","_from":"34835","_to":"34832"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"54244","_from":"34834","_to":"34832"} +{"$label":"ACTS_IN","name":"Eric Draven","type":"Role","_key":"54243","_from":"34833","_to":"34832"} +{"$label":"ACTS_IN","name":"Johnny Murata","type":"Role","_key":"93030","_from":"34833","_to":"54849"} +{"$label":"ACTS_IN","name":"Jake Lo","type":"Role","_key":"93026","_from":"34833","_to":"54848"} +{"$label":"ACTS_IN","name":"Paul Cook \/ 'Lord Nikon'","type":"Role","_key":"63244","_from":"34835","_to":"39652"} +{"$label":"ACTS_IN","name":"Mr. Marquez","type":"Role","_key":"90675","_from":"34836","_to":"53527"} +{"$label":"ACTS_IN","name":"Keders\u00fcdel \/ R\u00f6hre (voice)","type":"Role","_key":"54264","_from":"34842","_to":"34837"} +{"$label":"ACTS_IN","name":"Eckat (voice)","type":"Role","_key":"54263","_from":"34841","_to":"34837"} +{"$label":"ACTS_IN","name":"R\u00f6hrich \/ Andi \/ Brassmann (voice)","type":"Role","_key":"54262","_from":"34840","_to":"34837"} +{"$label":"ACTS_IN","name":"Herr H\u00fcpenbecker (voice)","type":"Role","_key":"54261","_from":"34839","_to":"34837"} +{"$label":"ACTS_IN","name":"Werner \/ Oma Wernersen \/ F\u00fchrer (voice)","type":"Role","_key":"54260","_from":"34838","_to":"34837"} +{"$label":"ACTS_IN","name":"Werner (voice)","type":"Role","_key":"63508","_from":"34838","_to":"39763"} +{"$label":"ACTS_IN","name":"Werner (voice)","type":"Role","_key":"56229","_from":"34838","_to":"35728"} +{"$label":"ACTS_IN","name":"Werner \/ Herbert (voice)","type":"Role","_key":"54369","_from":"34838","_to":"34873"} +{"$label":"ACTS_IN","name":"Andi (voice)","type":"Role","_key":"63509","_from":"34840","_to":"39763"} +{"$label":"ACTS_IN","name":"Meister R\u00f6hrich \/ Andi (voice)","type":"Role","_key":"56230","_from":"34840","_to":"35728"} +{"$label":"ACTS_IN","name":"Andi (voice)","type":"Role","_key":"54370","_from":"34840","_to":"34873"} +{"$label":"ACTS_IN","name":"Br\u00f6sel","type":"Role","_key":"56231","_from":"34842","_to":"35728"} +{"$label":"DIRECTED","_key":"54270","_from":"34845","_to":"34843"} +{"$label":"ACTS_IN","name":"Vater (voice)","type":"Role","_key":"54268","_from":"34844","_to":"34843"} +{"$label":"ACTS_IN","name":"Ballet Mistress","type":"Role","_key":"54286","_from":"34849","_to":"34846"} +{"$label":"ACTS_IN","name":"Antoine de Persand","type":"Role","_key":"54283","_from":"34848","_to":"34846"} +{"$label":"ACTS_IN","name":"Gennie de Persand","type":"Role","_key":"54282","_from":"34847","_to":"34846"} +{"$label":"ACTS_IN","name":"Emu O'Hara","type":"Role","_key":"54290","_from":"34852","_to":"34851"} +{"$label":"DIRECTED","_key":"54296","_from":"34855","_to":"34853"} +{"$label":"DIRECTED","_key":"54295","_from":"34854","_to":"34853"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54320","_from":"34861","_to":"34859"} +{"$label":"ACTS_IN","name":"Sam, Dave's Lawyer","type":"Role","_key":"54316","_from":"34860","_to":"34859"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"94184","_from":"34860","_to":"55461"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"65188","_from":"34860","_to":"40488"} +{"$label":"ACTS_IN","name":"Mr. Cheezle","type":"Role","_key":"57750","_from":"34860","_to":"36554"} +{"$label":"ACTS_IN","name":"Gatekeeper","type":"Role","_key":"55502","_from":"34860","_to":"35362"} +{"$label":"ACTS_IN","name":"Senator","type":"Role","_key":"55039","_from":"34860","_to":"35160"} +{"$label":"ACTS_IN","name":"Dr. Charles Luther","type":"Role","_key":"54323","_from":"34863","_to":"34862"} +{"$label":"ACTS_IN","name":"Joe Adler","type":"Role","_key":"90337","_from":"34863","_to":"53393"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"54349","_from":"34868","_to":"34866"} +{"$label":"DIRECTED","_key":"54335","_from":"34867","_to":"34866"} +{"$label":"DIRECTED","_key":"54361","_from":"34871","_to":"34870"} +{"$label":"DIRECTED","_key":"54373","_from":"34875","_to":"34873"} +{"$label":"ACTS_IN","name":"Eckat (voice)","type":"Role","_key":"54371","_from":"34874","_to":"34873"} +{"$label":"ACTS_IN","name":"The Matador","type":"Role","_key":"54395","_from":"34891","_to":"34876"} +{"$label":"ACTS_IN","name":"Fat Man","type":"Role","_key":"54394","_from":"34890","_to":"34876"} +{"$label":"ACTS_IN","name":"Hotel Bartender 2","type":"Role","_key":"54393","_from":"34889","_to":"34876"} +{"$label":"ACTS_IN","name":"Cantina Turista #1","type":"Role","_key":"54392","_from":"34888","_to":"34876"} +{"$label":"ACTS_IN","name":"Cantina Turista #2","type":"Role","_key":"54391","_from":"34887","_to":"34876"} +{"$label":"ACTS_IN","name":"Hotel Lobby Musicians","type":"Role","_key":"54390","_from":"34886","_to":"34876"} +{"$label":"ACTS_IN","name":"School Girl","type":"Role","_key":"54388","_from":"34885","_to":"34876"} +{"$label":"ACTS_IN","name":"Shooting Stand Owner","type":"Role","_key":"54387","_from":"34884","_to":"34876"} +{"$label":"ACTS_IN","name":"Hotel Bartender 1","type":"Role","_key":"54386","_from":"34883","_to":"34876"} +{"$label":"ACTS_IN","name":"Genevive","type":"Role","_key":"54385","_from":"34882","_to":"34876"} +{"$label":"ACTS_IN","name":"Skinny Mexican Man","type":"Role","_key":"54384","_from":"34881","_to":"34876"} +{"$label":"ACTS_IN","name":"Ten Year Old Boy's Mother","type":"Role","_key":"54383","_from":"34880","_to":"34876"} +{"$label":"ACTS_IN","name":"Ten Year Old Boy","type":"Role","_key":"54379","_from":"34879","_to":"34876"} +{"$label":"ACTS_IN","name":"Young Denver Fling","type":"Role","_key":"54378","_from":"34878","_to":"34876"} +{"$label":"ACTS_IN","name":"Radio DJ","type":"Role","_key":"54377","_from":"34877","_to":"34876"} +{"$label":"ACTS_IN","name":"Tavern Waitress Marci","type":"Role","_key":"106973","_from":"34882","_to":"63058"} +{"$label":"ACTS_IN","name":"Caine 'Kaydee' Lawson","type":"Role","_key":"54396","_from":"34893","_to":"34892"} +{"$label":"ACTS_IN","name":"Detective Downie","type":"Role","_key":"54412","_from":"34900","_to":"34896"} +{"$label":"ACTS_IN","name":"Bluey","type":"Role","_key":"54411","_from":"34899","_to":"34896"} +{"$label":"ACTS_IN","name":"Keithy George","type":"Role","_key":"54410","_from":"34898","_to":"34896"} +{"$label":"ACTS_IN","name":"Jimmy Loughnan","type":"Role","_key":"54409","_from":"34897","_to":"34896"} +{"$label":"ACTS_IN","name":"Brownie","type":"Role","_key":"106860","_from":"34898","_to":"62996"} +{"$label":"ACTS_IN","name":"Acko","type":"Role","_key":"94439","_from":"34898","_to":"55608"} +{"$label":"ACTS_IN","name":"Gaoler Bisdee","type":"Role","_key":"106829","_from":"34900","_to":"62970"} +{"$label":"DIRECTED","_key":"54419","_from":"34905","_to":"34901"} +{"$label":"ACTS_IN","name":"Riccio","type":"Role","_key":"54418","_from":"34904","_to":"34901"} +{"$label":"ACTS_IN","name":"Hornet","type":"Role","_key":"54417","_from":"34903","_to":"34901"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"54415","_from":"34902","_to":"34901"} +{"$label":"ACTS_IN","name":"Randolph","type":"Role","_key":"54430","_from":"34910","_to":"34907"} +{"$label":"ACTS_IN","name":"Trap","type":"Role","_key":"54429","_from":"34909","_to":"34907"} +{"$label":"ACTS_IN","name":"Todd Cleary","type":"Role","_key":"54428","_from":"34908","_to":"34907"} +{"$label":"ACTS_IN","name":"Veck Sims","type":"Role","_key":"100817","_from":"34908","_to":"59439"} +{"$label":"ACTS_IN","name":"The Laugh","type":"Role","_key":"96749","_from":"34908","_to":"56913"} +{"$label":"ACTS_IN","name":"Tony Croft","type":"Role","_key":"62345","_from":"34909","_to":"39280"} +{"$label":"ACTS_IN","name":"Jane 'Janie' O'May","type":"Role","_key":"54434","_from":"34913","_to":"34911"} +{"$label":"ACTS_IN","name":"Detective Leon Zat","type":"Role","_key":"54433","_from":"34912","_to":"34911"} +{"$label":"ACTS_IN","name":"Jim Peck (voice)","type":"Role","_key":"119668","_from":"34912","_to":"70284"} +{"$label":"ACTS_IN","name":"Stevie Dee","type":"Role","_key":"118102","_from":"34912","_to":"69414"} +{"$label":"ACTS_IN","name":"Leo Waters","type":"Role","_key":"116757","_from":"34912","_to":"68729"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"114449","_from":"34912","_to":"67420"} +{"$label":"ACTS_IN","name":"Simon O'Reily","type":"Role","_key":"104627","_from":"34912","_to":"61549"} +{"$label":"ACTS_IN","name":"Joe Reaves","type":"Role","_key":"95067","_from":"34912","_to":"55962"} +{"$label":"ACTS_IN","name":"Barry 'The Blade' Muldano","type":"Role","_key":"65312","_from":"34912","_to":"40530"} +{"$label":"ACTS_IN","name":"John Volpe","type":"Role","_key":"64787","_from":"34912","_to":"40314"} +{"$label":"ACTS_IN","name":"Tony Giardino","type":"Role","_key":"63378","_from":"34912","_to":"39714"} +{"$label":"ACTS_IN","name":"Boss Skua","type":"Role","_key":"57342","_from":"34912","_to":"36355"} +{"$label":"ACTS_IN","name":"Dusty","type":"Role","_key":"54457","_from":"34919","_to":"34916"} +{"$label":"ACTS_IN","name":"GK","type":"Role","_key":"54454","_from":"34918","_to":"34916"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"54450","_from":"34917","_to":"34916"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"120278","_from":"34917","_to":"70628"} +{"$label":"DIRECTED","_key":"54465","_from":"34923","_to":"34920"} +{"$label":"DIRECTED","_key":"54464","_from":"34921","_to":"34920"} +{"$label":"ACTS_IN","name":"Maja","type":"Role","_key":"54463","_from":"34922","_to":"34920"} +{"$label":"ACTS_IN","name":"Tommie","type":"Role","_key":"54460","_from":"34921","_to":"34920"} +{"$label":"ACTS_IN","name":"Personalchef Beck","type":"Role","_key":"67716","_from":"34921","_to":"41641"} +{"$label":"ACTS_IN","name":"Siegfried","type":"Role","_key":"64881","_from":"34921","_to":"40350"} +{"$label":"ACTS_IN","name":"Tommie \/ Dieter \/ Heinz","type":"Role","_key":"55450","_from":"34921","_to":"35342"} +{"$label":"DIRECTED","_key":"108438","_from":"34923","_to":"64105"} +{"$label":"DIRECTED","_key":"90731","_from":"34923","_to":"53552"} +{"$label":"DIRECTED","_key":"67718","_from":"34923","_to":"41641"} +{"$label":"DIRECTED","_key":"54476","_from":"34926","_to":"34925"} +{"$label":"DIRECTED","_key":"95991","_from":"34926","_to":"56429"} +{"$label":"ACTS_IN","name":"Elector Max Friedrich","type":"Role","_key":"95990","_from":"34926","_to":"56429"} +{"$label":"ACTS_IN","name":"Cassie Munro","type":"Role","_key":"54479","_from":"34929","_to":"34927"} +{"$label":"ACTS_IN","name":"Jamie Munro","type":"Role","_key":"54478","_from":"34928","_to":"34927"} +{"$label":"ACTS_IN","name":"Lisa DePardo","type":"Role","_key":"121164","_from":"34928","_to":"71176"} +{"$label":"ACTS_IN","name":"Lainie Schwartzman","type":"Role","_key":"104190","_from":"34928","_to":"61297"} +{"$label":"ACTS_IN","name":"Meg","type":"Role","_key":"92641","_from":"34928","_to":"54680"} +{"$label":"ACTS_IN","name":"Luna","type":"Role","_key":"72080","_from":"34928","_to":"43576"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"65515","_from":"34928","_to":"40608"} +{"$label":"ACTS_IN","name":"Hailey","type":"Role","_key":"98952","_from":"34929","_to":"58296"} +{"$label":"DIRECTED","_key":"54512","_from":"34936","_to":"34933"} +{"$label":"ACTS_IN","name":"Don Antonio Fraguas","type":"Role","_key":"54510","_from":"34935","_to":"34933"} +{"$label":"ACTS_IN","name":"Lourdes","type":"Role","_key":"54509","_from":"34934","_to":"34933"} +{"$label":"ACTS_IN","name":"Jaime","type":"Role","_key":"106472","_from":"34935","_to":"62726"} +{"$label":"DIRECTED","_key":"89008","_from":"34936","_to":"52726"} +{"$label":"DIRECTED","_key":"70088","_from":"34936","_to":"42731"} +{"$label":"DIRECTED","_key":"65254","_from":"34936","_to":"40506"} +{"$label":"DIRECTED","_key":"57451","_from":"34936","_to":"36418"} +{"$label":"DIRECTED","_key":"54526","_from":"34942","_to":"34938"} +{"$label":"ACTS_IN","name":"T.C. Romulus","type":"Role","_key":"54524","_from":"34941","_to":"34938"} +{"$label":"ACTS_IN","name":"Mimi Simkins","type":"Role","_key":"54523","_from":"34940","_to":"34938"} +{"$label":"ACTS_IN","name":"Bud Macintosh","type":"Role","_key":"54518","_from":"34939","_to":"34938"} +{"$label":"ACTS_IN","name":"Tommy Collins","type":"Role","_key":"119735","_from":"34939","_to":"70316"} +{"$label":"ACTS_IN","name":"Bobby Zimmeruski (voice)","type":"Role","_key":"105309","_from":"34939","_to":"61968"} +{"$label":"ACTS_IN","name":"Crawl","type":"Role","_key":"93451","_from":"34939","_to":"55025"} +{"$label":"ACTS_IN","name":"Bones Conway","type":"Role","_key":"89729","_from":"34939","_to":"53116"} +{"$label":"ACTS_IN","name":"Stoney Brown","type":"Role","_key":"63043","_from":"34939","_to":"39564"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"54535","_from":"34949","_to":"34943"} +{"$label":"ACTS_IN","name":"Young Mechanic","type":"Role","_key":"54534","_from":"34948","_to":"34943"} +{"$label":"ACTS_IN","name":"Swiss Guard #2","type":"Role","_key":"54533","_from":"34947","_to":"34943"} +{"$label":"ACTS_IN","name":"Swiss Guard #1","type":"Role","_key":"54532","_from":"34946","_to":"34943"} +{"$label":"ACTS_IN","name":"Scared Priest","type":"Role","_key":"54531","_from":"34945","_to":"34943"} +{"$label":"ACTS_IN","name":"Young Priest","type":"Role","_key":"54530","_from":"34944","_to":"34943"} +{"$label":"ACTS_IN","name":"Cameron Vale","type":"Role","_key":"54537","_from":"34951","_to":"34950"} +{"$label":"ACTS_IN","name":"La Femme","type":"Role","_key":"54549","_from":"34960","_to":"34952"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"54548","_from":"34959","_to":"34952"} +{"$label":"ACTS_IN","name":"La M\u00e8re","type":"Role","_key":"54547","_from":"34958","_to":"34952"} +{"$label":"ACTS_IN","name":"Le P\u00e8re","type":"Role","_key":"54546","_from":"34957","_to":"34952"} +{"$label":"ACTS_IN","name":"Mademoiselle","type":"Role","_key":"54545","_from":"34956","_to":"34952"} +{"$label":"ACTS_IN","name":"Bourreau","type":"Role","_key":"54544","_from":"34955","_to":"34952"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"54543","_from":"34954","_to":"34952"} +{"$label":"DIRECTED","_key":"54541","_from":"34953","_to":"34952"} +{"$label":"ACTS_IN","name":"Cary","type":"Role","_key":"54552","_from":"34962","_to":"34961"} +{"$label":"ACTS_IN","name":"Gertie Trinke","type":"Role","_key":"54556","_from":"34964","_to":"34963"} +{"$label":"DIRECTED","_key":"54567","_from":"34966","_to":"34965"} +{"$label":"ACTS_IN","name":"April \/ Cole","type":"Role","_key":"113884","_from":"34966","_to":"67083"} +{"$label":"DIRECTED","_key":"106718","_from":"34966","_to":"62890"} +{"$label":"DIRECTED","_key":"101774","_from":"34966","_to":"59894"} +{"$label":"DIRECTED","_key":"63093","_from":"34966","_to":"39584"} +{"$label":"ACTS_IN","name":"Tamina","type":"Role","_key":"54570","_from":"34968","_to":"34967"} +{"$label":"ACTS_IN","name":"Elizabeth Bennet","type":"Role","_key":"120098","_from":"34968","_to":"70530"} +{"$label":"ACTS_IN","name":"Desiree","type":"Role","_key":"118263","_from":"34968","_to":"69515"} +{"$label":"ACTS_IN","name":"Io","type":"Role","_key":"117647","_from":"34968","_to":"69157"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"102482","_from":"34968","_to":"60299"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"96794","_from":"34968","_to":"56924"} +{"$label":"ACTS_IN","name":"Strawberry Fields","type":"Role","_key":"65626","_from":"34968","_to":"40670"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"65424","_from":"34968","_to":"40563"} +{"$label":"DIRECTED","_key":"54583","_from":"34971","_to":"34969"} +{"$label":"ACTS_IN","name":"Denise Stone","type":"Role","_key":"54581","_from":"34970","_to":"34969"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"107774","_from":"34970","_to":"63633"} +{"$label":"DIRECTED","_key":"119286","_from":"34971","_to":"70090"} +{"$label":"DIRECTED","_key":"69492","_from":"34971","_to":"42456"} +{"$label":"ACTS_IN","name":"El Cirujano","type":"Role","_key":"54588","_from":"34974","_to":"34972"} +{"$label":"ACTS_IN","name":"Doug Papich","type":"Role","_key":"54587","_from":"34973","_to":"34972"} +{"$label":"ACTS_IN","name":"Bernard Shaw","type":"Role","_key":"58869","_from":"34974","_to":"37175"} +{"$label":"ACTS_IN","name":"D.A. Priscilla Brimleigh","type":"Role","_key":"54594","_from":"34976","_to":"34975"} +{"$label":"ACTS_IN","name":"Susan Fields","type":"Role","_key":"99640","_from":"34976","_to":"58741"} +{"$label":"ACTS_IN","name":"Don Cleveland","type":"Role","_key":"54605","_from":"34981","_to":"34978"} +{"$label":"ACTS_IN","name":"Colleen Sutton","type":"Role","_key":"54604","_from":"34980","_to":"34978"} +{"$label":"ACTS_IN","name":"Ford Fairlane","type":"Role","_key":"54602","_from":"34979","_to":"34978"} +{"$label":"ACTS_IN","name":"Yee","type":"Role","_key":"54619","_from":"34984","_to":"34983"} +{"$label":"DIRECTED","_key":"54623","_from":"34988","_to":"34985"} +{"$label":"ACTS_IN","name":"Dieter Bohlen (voice)","type":"Role","_key":"54622","_from":"34987","_to":"34985"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler (voice)","type":"Role","_key":"54621","_from":"34986","_to":"34985"} +{"$label":"ACTS_IN","name":"Senator at Party","type":"Role","_key":"54639","_from":"34996","_to":"34989"} +{"$label":"ACTS_IN","name":"Karras' Uncle","type":"Role","_key":"54637","_from":"34995","_to":"34989"} +{"$label":"ACTS_IN","name":"Dr. Taney","type":"Role","_key":"54636","_from":"34994","_to":"34989"} +{"$label":"ACTS_IN","name":"Dr. Barringer - Clinic Director (as Pete Masterson)","type":"Role","_key":"54634","_from":"34993","_to":"34989"} +{"$label":"ACTS_IN","name":"Dr. Klein","type":"Role","_key":"54633","_from":"34992","_to":"34989"} +{"$label":"ACTS_IN","name":"Father Dyer","type":"Role","_key":"54630","_from":"34991","_to":"34989"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"54628","_from":"34990","_to":"34989"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"107592","_from":"34992","_to":"63511"} +{"$label":"ACTS_IN","name":"Walter Eberhart","type":"Role","_key":"88806","_from":"34993","_to":"52618"} +{"$label":"ACTS_IN","name":"Lanky Nibs","type":"Role","_key":"61473","_from":"34994","_to":"38771"} +{"$label":"ACTS_IN","name":"Uncle Kakakis","type":"Role","_key":"101191","_from":"34995","_to":"59606"} +{"$label":"ACTS_IN","name":"Hart","type":"Role","_key":"115260","_from":"34996","_to":"67870"} +{"$label":"DIRECTED","_key":"54642","_from":"34998","_to":"34997"} +{"$label":"ACTS_IN","name":"Gracie Fields","type":"Role","_key":"54645","_from":"35003","_to":"35000"} +{"$label":"ACTS_IN","name":"Daisy Craig","type":"Role","_key":"54644","_from":"35002","_to":"35000"} +{"$label":"ACTS_IN","name":"Molly Craig","type":"Role","_key":"54643","_from":"35001","_to":"35000"} +{"$label":"ACTS_IN","name":"Yakitito","type":"Role","_key":"54653","_from":"35005","_to":"35004"} +{"$label":"DIRECTED","_key":"54662","_from":"35008","_to":"35006"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"54660","_from":"35007","_to":"35006"} +{"$label":"DIRECTED","_key":"59678","_from":"35008","_to":"37685"} +{"$label":"ACTS_IN","name":"King Tito","type":"Role","_key":"54677","_from":"35013","_to":"35009"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"54676","_from":"35012","_to":"35009"} +{"$label":"ACTS_IN","name":"Larry Wong","type":"Role","_key":"54669","_from":"35011","_to":"35009"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"54668","_from":"35010","_to":"35009"} +{"$label":"ACTS_IN","name":"Ronnie Chang","type":"Role","_key":"67323","_from":"35011","_to":"41493"} +{"$label":"ACTS_IN","name":"Phillip 'Buzz' Perry","type":"Role","_key":"54683","_from":"35015","_to":"35014"} +{"$label":"DIRECTED","_key":"54698","_from":"35018","_to":"35017"} +{"$label":"ACTS_IN","name":"Morgan Reynolds","type":"Role","_key":"54697","_from":"35024","_to":"35017"} +{"$label":"ACTS_IN","name":"Annie Machon","type":"Role","_key":"54696","_from":"35023","_to":"35017"} +{"$label":"ACTS_IN","name":"Michael Meacher","type":"Role","_key":"54695","_from":"35022","_to":"35017"} +{"$label":"ACTS_IN","name":"Steven Jones","type":"Role","_key":"54694","_from":"35021","_to":"35017"} +{"$label":"ACTS_IN","name":"Cindy Sheehan","type":"Role","_key":"54693","_from":"35020","_to":"35017"} +{"$label":"ACTS_IN","name":"Ray McGovern","type":"Role","_key":"54692","_from":"35019","_to":"35017"} +{"$label":"ACTS_IN","name":"Alex Jones","type":"Role","_key":"54691","_from":"35018","_to":"35017"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110708","_from":"35018","_to":"65401"} +{"$label":"DIRECTED","_key":"110703","_from":"35018","_to":"65401"} +{"$label":"DIRECTED","_key":"108755","_from":"35018","_to":"64288"} +{"$label":"ACTS_IN","name":"Arnaut's Deputy","type":"Role","_key":"54712","_from":"35029","_to":"35025"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Dontelle","type":"Role","_key":"54711","_from":"35028","_to":"35025"} +{"$label":"ACTS_IN","name":"Josh Stern","type":"Role","_key":"54707","_from":"35027","_to":"35025"} +{"$label":"ACTS_IN","name":"Lady Claire","type":"Role","_key":"54704","_from":"35026","_to":"35025"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"115111","_from":"35026","_to":"67789"} +{"$label":"ACTS_IN","name":"Elizabeth Bathory","type":"Role","_key":"103595","_from":"35026","_to":"60931"} +{"$label":"ACTS_IN","name":"Roz Harmison","type":"Role","_key":"57074","_from":"35026","_to":"36223"} +{"$label":"ACTS_IN","name":"Roz Harmison","type":"Role","_key":"56422","_from":"35026","_to":"35852"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"110934","_from":"35027","_to":"65527"} +{"$label":"ACTS_IN","name":"Sam Burnside","type":"Role","_key":"106714","_from":"35027","_to":"62890"} +{"$label":"ACTS_IN","name":"Preston","type":"Role","_key":"102859","_from":"35027","_to":"60510"} +{"$label":"ACTS_IN","name":"Ethan O'Fallon","type":"Role","_key":"95662","_from":"35027","_to":"56264"} +{"$label":"ACTS_IN","name":"Russell 'Rusty' Griswold","type":"Role","_key":"69750","_from":"35027","_to":"42570"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"62431","_from":"35027","_to":"39330"} +{"$label":"ACTS_IN","name":"T.B. Player","type":"Role","_key":"54887","_from":"35027","_to":"35099"} +{"$label":"ACTS_IN","name":"Donnie Rose","type":"Role","_key":"102782","_from":"35028","_to":"60464"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"117537","_from":"35029","_to":"69106"} +{"$label":"ACTS_IN","name":"Handler (Montr\u00e9al)","type":"Role","_key":"99451","_from":"35029","_to":"58590"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"54730","_from":"35034","_to":"35032"} +{"$label":"DIRECTED","_key":"54728","_from":"35033","_to":"35032"} +{"$label":"DIRECTED","_key":"65220","_from":"35033","_to":"40496"} +{"$label":"ACTS_IN","name":"Marie Kalt","type":"Role","_key":"70340","_from":"35034","_to":"42854"} +{"$label":"ACTS_IN","name":"Sabine Niedrig","type":"Role","_key":"63731","_from":"35034","_to":"39849"} +{"$label":"DIRECTED","_key":"54750","_from":"35042","_to":"35037"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"54749","_from":"35041","_to":"35037"} +{"$label":"ACTS_IN","name":"Detective Sunshine","type":"Role","_key":"54748","_from":"35040","_to":"35037"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"54746","_from":"35039","_to":"35037"} +{"$label":"ACTS_IN","name":"Brooke Feinstone","type":"Role","_key":"54745","_from":"35038","_to":"35037"} +{"$label":"DIRECTED","_key":"114927","_from":"35042","_to":"67685"} +{"$label":"DIRECTED","_key":"90098","_from":"35042","_to":"53283"} +{"$label":"DIRECTED","_key":"69811","_from":"35042","_to":"42603"} +{"$label":"DIRECTED","_key":"54756","_from":"35045","_to":"35043"} +{"$label":"ACTS_IN","name":"Felicia Storm","type":"Role","_key":"54755","_from":"35044","_to":"35043"} +{"$label":"ACTS_IN","name":"Lt. Charles Pizer","type":"Role","_key":"54760","_from":"35047","_to":"35046"} +{"$label":"ACTS_IN","name":"Jodie Kramer","type":"Role","_key":"54767","_from":"35051","_to":"35048"} +{"$label":"ACTS_IN","name":"Don Dawson","type":"Role","_key":"54766","_from":"35050","_to":"35048"} +{"$label":"ACTS_IN","name":"Ron Slater","type":"Role","_key":"54764","_from":"35049","_to":"35048"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"105354","_from":"35049","_to":"61986"} +{"$label":"ACTS_IN","name":"Sgt. Carl S. Webb","type":"Role","_key":"64351","_from":"35049","_to":"40107"} +{"$label":"ACTS_IN","name":"Nikki Reese","type":"Role","_key":"67679","_from":"35051","_to":"41630"} +{"$label":"ACTS_IN","name":"Connie Conehead","type":"Role","_key":"55034","_from":"35051","_to":"35160"} +{"$label":"ACTS_IN","name":"Schumi","type":"Role","_key":"54780","_from":"35054","_to":"35052"} +{"$label":"ACTS_IN","name":"Silke","type":"Role","_key":"54779","_from":"35053","_to":"35052"} +{"$label":"ACTS_IN","name":"Tobias 'Toby' Niepmann","type":"Role","_key":"68955","_from":"35054","_to":"42219"} +{"$label":"ACTS_IN","name":"Detective Jaye Winston","type":"Role","_key":"54785","_from":"35057","_to":"35055"} +{"$label":"ACTS_IN","name":"Graciella Rivers","type":"Role","_key":"54784","_from":"35056","_to":"35055"} +{"$label":"ACTS_IN","name":"Millie DeLeon","type":"Role","_key":"103402","_from":"35056","_to":"60828"} +{"$label":"ACTS_IN","name":"Akooshay","type":"Role","_key":"59476","_from":"35056","_to":"37557"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"95934","_from":"35057","_to":"56415"} +{"$label":"ACTS_IN","name":"Grace Taylor","type":"Role","_key":"62417","_from":"35057","_to":"39323"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54804","_from":"35062","_to":"35060"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54803","_from":"35061","_to":"35060"} +{"$label":"ACTS_IN","name":"Le motard","type":"Role","_key":"54813","_from":"35072","_to":"35065"} +{"$label":"ACTS_IN","name":"L'automobiliste","type":"Role","_key":"54812","_from":"35071","_to":"35065"} +{"$label":"ACTS_IN","name":"Le Prof","type":"Role","_key":"54811","_from":"35070","_to":"35065"} +{"$label":"ACTS_IN","name":"Vieil Homme","type":"Role","_key":"54810","_from":"35069","_to":"35065"} +{"$label":"ACTS_IN","name":"Vieille Dame","type":"Role","_key":"54809","_from":"35068","_to":"35065"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"54808","_from":"35067","_to":"35065"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"54807","_from":"35066","_to":"35065"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96165","_from":"35067","_to":"56513"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"89972","_from":"35067","_to":"53224"} +{"$label":"DIRECTED","_key":"54820","_from":"35076","_to":"35073"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"54818","_from":"35075","_to":"35073"} +{"$label":"ACTS_IN","name":"O","type":"Role","_key":"54815","_from":"35074","_to":"35073"} +{"$label":"ACTS_IN","name":"Shohachi Moriwaki","type":"Role","_key":"120765","_from":"35074","_to":"70937"} +{"$label":"DIRECTED","_key":"98123","_from":"35076","_to":"57774"} +{"$label":"DIRECTED","_key":"54828","_from":"35079","_to":"35077"} +{"$label":"ACTS_IN","name":"Ray Donovan","type":"Role","_key":"54826","_from":"35078","_to":"35077"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"100793","_from":"35078","_to":"59419"} +{"$label":"ACTS_IN","name":"Lance","type":"Role","_key":"98729","_from":"35078","_to":"58185"} +{"$label":"ACTS_IN","name":"Garret","type":"Role","_key":"97980","_from":"35078","_to":"57707"} +{"$label":"DIRECTED","_key":"54836","_from":"35081","_to":"35080"} +{"$label":"DIRECTED","_key":"87937","_from":"35081","_to":"52222"} +{"$label":"ACTS_IN","name":"Widow Woman","type":"Role","_key":"54841","_from":"35083","_to":"35082"} +{"$label":"DIRECTED","_key":"54849","_from":"35087","_to":"35084"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"54848","_from":"35086","_to":"35084"} +{"$label":"ACTS_IN","name":"Mahtob","type":"Role","_key":"54846","_from":"35085","_to":"35084"} +{"$label":"DIRECTED","_key":"66892","_from":"35087","_to":"41301"} +{"$label":"DIRECTED","_key":"54866","_from":"35090","_to":"35089"} +{"$label":"DIRECTED","_key":"109740","_from":"35090","_to":"64813"} +{"$label":"DIRECTED","_key":"97405","_from":"35090","_to":"57355"} +{"$label":"DIRECTED","_key":"90881","_from":"35090","_to":"53619"} +{"$label":"ACTS_IN","name":"Grimmelman","type":"Role","_key":"54871","_from":"35092","_to":"35091"} +{"$label":"ACTS_IN","name":"Yondalao","type":"Role","_key":"97356","_from":"35092","_to":"57329"} +{"$label":"ACTS_IN","name":"Sir Allan Miles","type":"Role","_key":"58876","_from":"35092","_to":"37175"} +{"$label":"ACTS_IN","name":"Leiche","type":"Role","_key":"54877","_from":"35097","_to":"35093"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"54876","_from":"35096","_to":"35093"} +{"$label":"ACTS_IN","name":"Detlev","type":"Role","_key":"54875","_from":"35095","_to":"35093"} +{"$label":"ACTS_IN","name":"Christiane","type":"Role","_key":"54874","_from":"35094","_to":"35093"} +{"$label":"DIRECTED","_key":"54895","_from":"35105","_to":"35100"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"54894","_from":"35104","_to":"35100"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"54893","_from":"35103","_to":"35100"} +{"$label":"ACTS_IN","name":"Zach","type":"Role","_key":"54892","_from":"35102","_to":"35100"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"54891","_from":"35101","_to":"35100"} +{"$label":"ACTS_IN","name":"Alexia","type":"Role","_key":"101170","_from":"35103","_to":"59602"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"99554","_from":"35104","_to":"58688"} +{"$label":"ACTS_IN","name":"Hero","type":"Role","_key":"60232","_from":"35104","_to":"37994"} +{"$label":"ACTS_IN","name":"Danny Madigan","type":"Role","_key":"54897","_from":"35107","_to":"35106"} +{"$label":"ACTS_IN","name":"Peter Parkette","type":"Role","_key":"70416","_from":"35107","_to":"42877"} +{"$label":"ACTS_IN","name":"Nick Zsigmond","type":"Role","_key":"69098","_from":"35107","_to":"42283"} +{"$label":"ACTS_IN","name":"Peter Parkette","type":"Role","_key":"61353","_from":"35107","_to":"38717"} +{"$label":"ACTS_IN","name":"Baby Alex","type":"Role","_key":"54915","_from":"35116","_to":"35108"} +{"$label":"ACTS_IN","name":"Baby Chad","type":"Role","_key":"54914","_from":"35115","_to":"35108"} +{"$label":"ACTS_IN","name":"Klimax Klub Bouncer","type":"Role","_key":"54913","_from":"35114","_to":"35108"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"54912","_from":"35113","_to":"35108"} +{"$label":"ACTS_IN","name":"Paul Wagner","type":"Role","_key":"54911","_from":"35112","_to":"35108"} +{"$label":"ACTS_IN","name":"Raymond Zhang","type":"Role","_key":"54908","_from":"35111","_to":"35108"} +{"$label":"ACTS_IN","name":"Kara","type":"Role","_key":"54907","_from":"35110","_to":"35108"} +{"$label":"ACTS_IN","name":"Danielle Wilde","type":"Role","_key":"54906","_from":"35109","_to":"35108"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"117399","_from":"35111","_to":"69050"} +{"$label":"ACTS_IN","name":"Supt. Pang","type":"Role","_key":"71951","_from":"35111","_to":"43526"} +{"$label":"ACTS_IN","name":"Julie (voice)","type":"Role","_key":"108171","_from":"35113","_to":"63928"} +{"$label":"ACTS_IN","name":"Aerobics \/ Locker Room Girl","type":"Role","_key":"70319","_from":"35113","_to":"42835"} +{"$label":"ACTS_IN","name":"Drummer - The K\u00fcblb\u00f6ck Band","type":"Role","_key":"54925","_from":"35121","_to":"35118"} +{"$label":"ACTS_IN","name":"Bass - The K\u00fcblb\u00f6ck Band","type":"Role","_key":"54924","_from":"35120","_to":"35118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"54922","_from":"35119","_to":"35118"} +{"$label":"DIRECTED","_key":"54939","_from":"35125","_to":"35123"} +{"$label":"ACTS_IN","name":"Babe the Gallant Pig (voice)","type":"Role","_key":"54932","_from":"35124","_to":"35123"} +{"$label":"ACTS_IN","name":"Chuckie Finster (voice)","type":"Role","_key":"100318","_from":"35124","_to":"59151"} +{"$label":"DIRECTED","_key":"97868","_from":"35125","_to":"57645"} +{"$label":"ACTS_IN","name":"Paul Taylor","type":"Role","_key":"54942","_from":"35127","_to":"35126"} +{"$label":"ACTS_IN","name":"Trent Pierce","type":"Role","_key":"54950","_from":"35130","_to":"35128"} +{"$label":"DIRECTED","_key":"54946","_from":"35129","_to":"35128"} +{"$label":"DIRECTED","_key":"100071","_from":"35129","_to":"59023"} +{"$label":"DIRECTED","_key":"94859","_from":"35129","_to":"55856"} +{"$label":"DIRECTED","_key":"69364","_from":"35129","_to":"42409"} +{"$label":"DIRECTED","_key":"67369","_from":"35129","_to":"41514"} +{"$label":"DIRECTED","_key":"55939","_from":"35129","_to":"35573"} +{"$label":"DIRECTED","_key":"55190","_from":"35129","_to":"35209"} +{"$label":"ACTS_IN","name":"Lisa McDowell","type":"Role","_key":"54959","_from":"35133","_to":"35132"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"118648","_from":"35133","_to":"69761"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"54971","_from":"35137","_to":"35134"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"54970","_from":"35136","_to":"35134"} +{"$label":"ACTS_IN","name":"Dionne","type":"Role","_key":"54967","_from":"35135","_to":"35134"} +{"$label":"ACTS_IN","name":"Geraldine Liston","type":"Role","_key":"116691","_from":"35135","_to":"68694"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"115782","_from":"35135","_to":"68168"} +{"$label":"ACTS_IN","name":"Brianna (as Stacey L. Dash)","type":"Role","_key":"102767","_from":"35135","_to":"60460"} +{"$label":"ACTS_IN","name":"Amber Evans","type":"Role","_key":"89052","_from":"35135","_to":"52761"} +{"$label":"ACTS_IN","name":"Soldat Miranda Myers","type":"Role","_key":"72419","_from":"35135","_to":"43716"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"114799","_from":"35136","_to":"67620"} +{"$label":"ACTS_IN","name":"drummer","type":"Role","_key":"102867","_from":"35136","_to":"60510"} +{"$label":"ACTS_IN","name":"Huey","type":"Role","_key":"102508","_from":"35136","_to":"60309"} +{"$label":"ACTS_IN","name":"Ash","type":"Role","_key":"100543","_from":"35136","_to":"59303"} +{"$label":"ACTS_IN","name":"Cletis","type":"Role","_key":"99981","_from":"35136","_to":"58990"} +{"$label":"DIRECTED","_key":"54988","_from":"35145","_to":"35140"} +{"$label":"ACTS_IN","name":"Duke Red (voice)","type":"Role","_key":"54987","_from":"35144","_to":"35140"} +{"$label":"ACTS_IN","name":"Rock (voice)","type":"Role","_key":"54986","_from":"35143","_to":"35140"} +{"$label":"ACTS_IN","name":"Kenichi (voice)","type":"Role","_key":"54985","_from":"35142","_to":"35140"} +{"$label":"ACTS_IN","name":"Tima (voice)","type":"Role","_key":"54984","_from":"35141","_to":"35140"} +{"$label":"DIRECTED","_key":"111093","_from":"35145","_to":"65622"} +{"$label":"DIRECTED","_key":"103636","_from":"35145","_to":"60953"} +{"$label":"DIRECTED","_key":"54990","_from":"35148","_to":"35146"} +{"$label":"DIRECTED","_key":"54989","_from":"35147","_to":"35146"} +{"$label":"DIRECTED","_key":"110978","_from":"35147","_to":"65545"} +{"$label":"DIRECTED","_key":"56249","_from":"35147","_to":"35738"} +{"$label":"DIRECTED","_key":"56250","_from":"35148","_to":"35738"} +{"$label":"DIRECTED","_key":"55000","_from":"35154","_to":"35149"} +{"$label":"ACTS_IN","name":"Brom Bones","type":"Role","_key":"54999","_from":"35153","_to":"35149"} +{"$label":"ACTS_IN","name":"Mrs. Van Tassle","type":"Role","_key":"54998","_from":"35152","_to":"35149"} +{"$label":"ACTS_IN","name":"Mr. Van Tassle","type":"Role","_key":"54997","_from":"35151","_to":"35149"} +{"$label":"ACTS_IN","name":"Katrina Van Tassle","type":"Role","_key":"54996","_from":"35150","_to":"35149"} +{"$label":"ACTS_IN","name":"Naomi","type":"Role","_key":"116818","_from":"35150","_to":"68771"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"115495","_from":"35150","_to":"67997"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108167","_from":"35150","_to":"63924"} +{"$label":"ACTS_IN","name":"Leonie Adderly","type":"Role","_key":"104852","_from":"35150","_to":"61696"} +{"$label":"ACTS_IN","name":"Howard Poolin","type":"Role","_key":"71832","_from":"35151","_to":"43469"} +{"$label":"ACTS_IN","name":"Bombaata","type":"Role","_key":"55011","_from":"35157","_to":"35156"} +{"$label":"DIRECTED","_key":"55018","_from":"35159","_to":"35158"} +{"$label":"DIRECTED","_key":"66063","_from":"35159","_to":"40881"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"55049","_from":"35169","_to":"35160"} +{"$label":"ACTS_IN","name":"Highmaster Mentot","type":"Role","_key":"55044","_from":"35168","_to":"35160"} +{"$label":"ACTS_IN","name":"Fire Marshal","type":"Role","_key":"55042","_from":"35167","_to":"35160"} +{"$label":"ACTS_IN","name":"Female Agent","type":"Role","_key":"55033","_from":"35166","_to":"35160"} +{"$label":"ACTS_IN","name":"Khoudri","type":"Role","_key":"55032","_from":"35165","_to":"35160"} +{"$label":"ACTS_IN","name":"Taxi Passenger","type":"Role","_key":"55031","_from":"35164","_to":"35160"} +{"$label":"ACTS_IN","name":"Eli Turnbull, INS Agent","type":"Role","_key":"55029","_from":"35163","_to":"35160"} +{"$label":"ACTS_IN","name":"Motel Clerk","type":"Role","_key":"55028","_from":"35162","_to":"35160"} +{"$label":"ACTS_IN","name":"Ronnie the Mechanic","type":"Role","_key":"55026","_from":"35161","_to":"35160"} +{"$label":"ACTS_IN","name":"Bartholomew Hunt","type":"Role","_key":"99683","_from":"35161","_to":"58778"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98032","_from":"35161","_to":"57727"} +{"$label":"ACTS_IN","name":"Officer Wilson","type":"Role","_key":"95350","_from":"35161","_to":"56098"} +{"$label":"ACTS_IN","name":"Thomas 'Tommy' Callahan III","type":"Role","_key":"69514","_from":"35161","_to":"42464"} +{"$label":"ACTS_IN","name":"Haru","type":"Role","_key":"55107","_from":"35161","_to":"35188"} +{"$label":"ACTS_IN","name":"Richard 'Ricky' Rietti","type":"Role","_key":"113888","_from":"35162","_to":"67087"} +{"$label":"ACTS_IN","name":"Doug Beech","type":"Role","_key":"95358","_from":"35162","_to":"56098"} +{"$label":"ACTS_IN","name":"Stanley Spadowski","type":"Role","_key":"72992","_from":"35162","_to":"43930"} +{"$label":"ACTS_IN","name":"Martin Beck","type":"Role","_key":"67738","_from":"35162","_to":"41649"} +{"$label":"ACTS_IN","name":"Ranger Frank (voice)","type":"Role","_key":"100315","_from":"35163","_to":"59151"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98033","_from":"35163","_to":"57727"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"97966","_from":"35163","_to":"57685"} +{"$label":"ACTS_IN","name":"Dickie Roberts","type":"Role","_key":"96457","_from":"35163","_to":"56725"} +{"$label":"ACTS_IN","name":"Kuzco","type":"Role","_key":"94415","_from":"35163","_to":"55586"} +{"$label":"ACTS_IN","name":"Scott Thorpe","type":"Role","_key":"90128","_from":"35163","_to":"53299"} +{"$label":"ACTS_IN","name":"Kuzco (voice)","type":"Role","_key":"71574","_from":"35163","_to":"43357"} +{"$label":"ACTS_IN","name":"Richard Hayden","type":"Role","_key":"69515","_from":"35163","_to":"42464"} +{"$label":"ACTS_IN","name":"Joe Dirt","type":"Role","_key":"66956","_from":"35163","_to":"41336"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"58540","_from":"35163","_to":"36989"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103738","_from":"35164","_to":"61008"} +{"$label":"ACTS_IN","name":"Han","type":"Role","_key":"55067","_from":"35177","_to":"35172"} +{"$label":"ACTS_IN","name":"D.K.","type":"Role","_key":"55066","_from":"35176","_to":"35172"} +{"$label":"ACTS_IN","name":"Neela","type":"Role","_key":"55065","_from":"35175","_to":"35172"} +{"$label":"ACTS_IN","name":"Twinkie","type":"Role","_key":"55064","_from":"35174","_to":"35172"} +{"$label":"DIRECTED","_key":"55062","_from":"35173","_to":"35172"} +{"$label":"DIRECTED","_key":"96768","_from":"35173","_to":"56916"} +{"$label":"DIRECTED","_key":"93666","_from":"35173","_to":"55142"} +{"$label":"ACTS_IN","name":"D.J. Johnson","type":"Role","_key":"118649","_from":"35174","_to":"69761"} +{"$label":"ACTS_IN","name":"Xavier 'X' Smith","type":"Role","_key":"100714","_from":"35174","_to":"59387"} +{"$label":"ACTS_IN","name":"Han Lue","type":"Role","_key":"96765","_from":"35177","_to":"56916"} +{"$label":"ACTS_IN","name":"Special Agent Goi","type":"Role","_key":"63285","_from":"35177","_to":"39669"} +{"$label":"ACTS_IN","name":"Doran","type":"Role","_key":"59199","_from":"35177","_to":"37387"} +{"$label":"ACTS_IN","name":"Face","type":"Role","_key":"55088","_from":"35183","_to":"35180"} +{"$label":"DIRECTED","_key":"55081","_from":"35182","_to":"35180"} +{"$label":"DIRECTED","_key":"55080","_from":"35181","_to":"35180"} +{"$label":"DIRECTED","_key":"72592","_from":"35181","_to":"43768"} +{"$label":"DIRECTED","_key":"96218","_from":"35182","_to":"56555"} +{"$label":"ACTS_IN","name":"Cobra Khan","type":"Role","_key":"109402","_from":"35183","_to":"64636"} +{"$label":"ACTS_IN","name":"Matt Cordell","type":"Role","_key":"99238","_from":"35183","_to":"58479"} +{"$label":"ACTS_IN","name":"Lauren Wando","type":"Role","_key":"55096","_from":"35185","_to":"35184"} +{"$label":"DIRECTED","_key":"55130","_from":"35193","_to":"35191"} +{"$label":"ACTS_IN","name":"Jessica Cole","type":"Role","_key":"55129","_from":"35192","_to":"35191"} +{"$label":"ACTS_IN","name":"Jennifer Lyons","type":"Role","_key":"99734","_from":"35192","_to":"58819"} +{"$label":"ACTS_IN","name":"Heather DiStefano","type":"Role","_key":"95946","_from":"35192","_to":"56416"} +{"$label":"ACTS_IN","name":"Ricki","type":"Role","_key":"89563","_from":"35192","_to":"53001"} +{"$label":"ACTS_IN","name":"Gen. Jack O'Neal","type":"Role","_key":"55139","_from":"35196","_to":"35195"} +{"$label":"ACTS_IN","name":"Old Firehand","type":"Role","_key":"55148","_from":"35199","_to":"35198"} +{"$label":"ACTS_IN","name":"Cora Ann Milton","type":"Role","_key":"55183","_from":"35207","_to":"35205"} +{"$label":"ACTS_IN","name":"Lady Aston","type":"Role","_key":"55182","_from":"35206","_to":"35205"} +{"$label":"ACTS_IN","name":"Scrappy-Doo (voice)","type":"Role","_key":"55197","_from":"35211","_to":"35209"} +{"$label":"ACTS_IN","name":"Scooby-Doo (voice)","type":"Role","_key":"55196","_from":"35210","_to":"35209"} +{"$label":"ACTS_IN","name":"Scooby Doo \/ Shaggy","type":"Role","_key":"113626","_from":"35211","_to":"66966"} +{"$label":"ACTS_IN","name":"Scooby-Doo","type":"Role","_key":"105141","_from":"35211","_to":"61873"} +{"$label":"DIRECTED","_key":"55205","_from":"35220","_to":"35212"} +{"$label":"ACTS_IN","name":"The Tall Man","type":"Role","_key":"55204","_from":"35219","_to":"35212"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"55203","_from":"35218","_to":"35212"} +{"$label":"ACTS_IN","name":"Fortuneteller's Granddaughter","type":"Role","_key":"55202","_from":"35217","_to":"35212"} +{"$label":"ACTS_IN","name":"Lady in Lavender","type":"Role","_key":"55201","_from":"35216","_to":"35212"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"55200","_from":"35215","_to":"35212"} +{"$label":"ACTS_IN","name":"Jody Pearson","type":"Role","_key":"55199","_from":"35214","_to":"35212"} +{"$label":"ACTS_IN","name":"Michael 'Mike' Pearson","type":"Role","_key":"55198","_from":"35213","_to":"35212"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"107453","_from":"35213","_to":"63393"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"107425","_from":"35213","_to":"63374"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"107454","_from":"35214","_to":"63393"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"107427","_from":"35214","_to":"63374"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"107455","_from":"35215","_to":"63393"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"107426","_from":"35215","_to":"63374"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"103417","_from":"35215","_to":"60834"} +{"$label":"ACTS_IN","name":"The Tall Man \/ Dr. Jebediah Morningside","type":"Role","_key":"107458","_from":"35219","_to":"63393"} +{"$label":"ACTS_IN","name":"The Tall Man","type":"Role","_key":"107433","_from":"35219","_to":"63374"} +{"$label":"ACTS_IN","name":"The Tall Man","type":"Role","_key":"103415","_from":"35219","_to":"60834"} +{"$label":"DIRECTED","_key":"109243","_from":"35220","_to":"64540"} +{"$label":"DIRECTED","_key":"107468","_from":"35220","_to":"63393"} +{"$label":"DIRECTED","_key":"107440","_from":"35220","_to":"63374"} +{"$label":"DIRECTED","_key":"103414","_from":"35220","_to":"60834"} +{"$label":"DIRECTED","_key":"55908","_from":"35220","_to":"35560"} +{"$label":"DIRECTED","_key":"55211","_from":"35224","_to":"35221"} +{"$label":"DIRECTED","_key":"55210","_from":"35223","_to":"35221"} +{"$label":"ACTS_IN","name":"Young Oliver","type":"Role","_key":"55209","_from":"35222","_to":"35221"} +{"$label":"DIRECTED","_key":"56875","_from":"35223","_to":"36099"} +{"$label":"DIRECTED","_key":"55217","_from":"35228","_to":"35225"} +{"$label":"ACTS_IN","name":"Lt. Boomer","type":"Role","_key":"55215","_from":"35227","_to":"35225"} +{"$label":"ACTS_IN","name":"Lt. Starbuck","type":"Role","_key":"55213","_from":"35226","_to":"35225"} +{"$label":"ACTS_IN","name":"Victor Stevens","type":"Role","_key":"106149","_from":"35226","_to":"62517"} +{"$label":"ACTS_IN","name":"Douglas Burnett","type":"Role","_key":"69661","_from":"35226","_to":"42524"} +{"$label":"ACTS_IN","name":"Bud McNulty","type":"Role","_key":"55222","_from":"35230","_to":"35229"} +{"$label":"ACTS_IN","name":"Van Wilder","type":"Role","_key":"121245","_from":"35230","_to":"71223"} +{"$label":"ACTS_IN","name":"Bo Duke","type":"Role","_key":"120446","_from":"35230","_to":"70756"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"100542","_from":"35230","_to":"59303"} +{"$label":"DIRECTED","_key":"55229","_from":"35233","_to":"35231"} +{"$label":"DIRECTED","_key":"55228","_from":"35232","_to":"35231"} +{"$label":"DIRECTED","_key":"90584","_from":"35232","_to":"53500"} +{"$label":"DIRECTED","_key":"65867","_from":"35232","_to":"40757"} +{"$label":"ACTS_IN","name":"Miss Destiny Demeanor","type":"Role","_key":"55243","_from":"35237","_to":"35235"} +{"$label":"DIRECTED","_key":"55238","_from":"35236","_to":"35235"} +{"$label":"ACTS_IN","name":"Rick Axberg","type":"Role","_key":"55257","_from":"35244","_to":"35239"} +{"$label":"ACTS_IN","name":"Older brother","type":"Role","_key":"55256","_from":"35243","_to":"35239"} +{"$label":"ACTS_IN","name":"Olof's Mother","type":"Role","_key":"55255","_from":"35242","_to":"35239"} +{"$label":"ACTS_IN","name":"Olof's Stepmother","type":"Role","_key":"55254","_from":"35241","_to":"35239"} +{"$label":"ACTS_IN","name":"Olof Persson","type":"Role","_key":"55253","_from":"35240","_to":"35239"} +{"$label":"DIRECTED","_key":"55269","_from":"35247","_to":"35246"} +{"$label":"ACTS_IN","name":"Goodlife","type":"Role","_key":"55284","_from":"35257","_to":"35249"} +{"$label":"ACTS_IN","name":"Detective Lee","type":"Role","_key":"55282","_from":"35256","_to":"35249"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"55280","_from":"35255","_to":"35249"} +{"$label":"ACTS_IN","name":"Gino Gambetta","type":"Role","_key":"55279","_from":"35254","_to":"35249"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"55275","_from":"35253","_to":"35249"} +{"$label":"ACTS_IN","name":"Rainn","type":"Role","_key":"55274","_from":"35252","_to":"35249"} +{"$label":"ACTS_IN","name":"Chang (as James Liao)","type":"Role","_key":"55273","_from":"35251","_to":"35249"} +{"$label":"ACTS_IN","name":"Angela (as Jacquelyn Quinones)","type":"Role","_key":"55271","_from":"35250","_to":"35249"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"57119","_from":"35252","_to":"36249"} +{"$label":"ACTS_IN","name":"Serene Man","type":"Role","_key":"110921","_from":"35254","_to":"65519"} +{"$label":"ACTS_IN","name":"Paul Honeywell","type":"Role","_key":"88662","_from":"35254","_to":"52530"} +{"$label":"DIRECTED","_key":"55303","_from":"35263","_to":"35260"} +{"$label":"DIRECTED","_key":"55302","_from":"35262","_to":"35260"} +{"$label":"ACTS_IN","name":"Lilli von Kattner","type":"Role","_key":"55301","_from":"35261","_to":"35260"} +{"$label":"ACTS_IN","name":"Stella's Receptionist","type":"Role","_key":"55318","_from":"35272","_to":"35264"} +{"$label":"ACTS_IN","name":"Second Detective","type":"Role","_key":"55317","_from":"35271","_to":"35264"} +{"$label":"ACTS_IN","name":"First Detective","type":"Role","_key":"55316","_from":"35270","_to":"35264"} +{"$label":"ACTS_IN","name":"Garbageman","type":"Role","_key":"55315","_from":"35269","_to":"35264"} +{"$label":"ACTS_IN","name":"Garbageman","type":"Role","_key":"55314","_from":"35268","_to":"35264"} +{"$label":"ACTS_IN","name":"Garbageman","type":"Role","_key":"55313","_from":"35267","_to":"35264"} +{"$label":"ACTS_IN","name":"Garbageman","type":"Role","_key":"55312","_from":"35266","_to":"35264"} +{"$label":"ACTS_IN","name":"Italian Guard","type":"Role","_key":"55308","_from":"35265","_to":"35264"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"60041","_from":"35270","_to":"37890"} +{"$label":"DIRECTED","_key":"55335","_from":"35280","_to":"35273"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"55334","_from":"35279","_to":"35273"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"55333","_from":"35278","_to":"35273"} +{"$label":"ACTS_IN","name":"Andrew (as Clifton Murray)","type":"Role","_key":"55332","_from":"35277","_to":"35273"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"55328","_from":"35276","_to":"35273"} +{"$label":"ACTS_IN","name":"Monique (as Alex Breckenridge)","type":"Role","_key":"55327","_from":"35275","_to":"35273"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"55326","_from":"35274","_to":"35273"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"93480","_from":"35276","_to":"55036"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"110920","_from":"35278","_to":"65519"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"57903","_from":"35279","_to":"36625"} +{"$label":"DIRECTED","_key":"97142","_from":"35280","_to":"57141"} +{"$label":"DIRECTED","_key":"95857","_from":"35280","_to":"56368"} +{"$label":"DIRECTED","_key":"95446","_from":"35280","_to":"56146"} +{"$label":"DIRECTED","_key":"55352","_from":"35291","_to":"35281"} +{"$label":"ACTS_IN","name":"Kyle Autry","type":"Role","_key":"55351","_from":"35290","_to":"35281"} +{"$label":"ACTS_IN","name":"Candy Striper","type":"Role","_key":"55350","_from":"35289","_to":"35281"} +{"$label":"ACTS_IN","name":"Billy Lenz - 5","type":"Role","_key":"55349","_from":"35288","_to":"35281"} +{"$label":"ACTS_IN","name":"Eve Agnew","type":"Role","_key":"55348","_from":"35287","_to":"35281"} +{"$label":"ACTS_IN","name":"Clair Crosby","type":"Role","_key":"55347","_from":"35286","_to":"35281"} +{"$label":"ACTS_IN","name":"Billy Lenz - 20","type":"Role","_key":"55345","_from":"35285","_to":"35281"} +{"$label":"ACTS_IN","name":"Agnes - 16","type":"Role","_key":"55344","_from":"35284","_to":"35281"} +{"$label":"ACTS_IN","name":"Billy's Mother","type":"Role","_key":"55343","_from":"35283","_to":"35281"} +{"$label":"ACTS_IN","name":"Leigh Colvin","type":"Role","_key":"55338","_from":"35282","_to":"35281"} +{"$label":"ACTS_IN","name":"Sister Clara","type":"Role","_key":"88269","_from":"35283","_to":"52358"} +{"$label":"ACTS_IN","name":"Misha Pressel","type":"Role","_key":"103128","_from":"35289","_to":"60659"} +{"$label":"ACTS_IN","name":"TJ","type":"Role","_key":"99151","_from":"35290","_to":"58416"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"60115","_from":"35290","_to":"37933"} +{"$label":"DIRECTED","_key":"66808","_from":"35291","_to":"41269"} +{"$label":"ACTS_IN","name":"Silvia von Kohlen und Reibach","type":"Role","_key":"55356","_from":"35293","_to":"35292"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"57700","_from":"35293","_to":"36525"} +{"$label":"DIRECTED","_key":"55363","_from":"35295","_to":"35294"} +{"$label":"ACTS_IN","name":"Toecutter","type":"Role","_key":"55366","_from":"35298","_to":"35296"} +{"$label":"ACTS_IN","name":"Jessie Rockatansky","type":"Role","_key":"55365","_from":"35297","_to":"35296"} +{"$label":"ACTS_IN","name":"Toad","type":"Role","_key":"102542","_from":"35298","_to":"60327"} +{"$label":"ACTS_IN","name":"Grunchlik","type":"Role","_key":"97354","_from":"35298","_to":"57329"} +{"$label":"ACTS_IN","name":"Ernest Hunkle","type":"Role","_key":"55375","_from":"35303","_to":"35299"} +{"$label":"ACTS_IN","name":"Ens. Stovall","type":"Role","_key":"55374","_from":"35302","_to":"35299"} +{"$label":"ACTS_IN","name":"Chief Molumphry","type":"Role","_key":"55373","_from":"35301","_to":"35299"} +{"$label":"ACTS_IN","name":"Lt. Barbara Duran, RN","type":"Role","_key":"55371","_from":"35300","_to":"35299"} +{"$label":"ACTS_IN","name":"Cynthia Young","type":"Role","_key":"116466","_from":"35300","_to":"68550"} +{"$label":"ACTS_IN","name":"Tom Danby","type":"Role","_key":"70778","_from":"35301","_to":"43036"} +{"$label":"ACTS_IN","name":"George Beckett","type":"Role","_key":"94030","_from":"35302","_to":"55371"} +{"$label":"ACTS_IN","name":"Moriarty (tank crewman)","type":"Role","_key":"70904","_from":"35303","_to":"43079"} +{"$label":"ACTS_IN","name":"Les Triplettes (voice)","type":"Role","_key":"55380","_from":"35307","_to":"35304"} +{"$label":"ACTS_IN","name":"Les Triplettes (voice)","type":"Role","_key":"55379","_from":"35306","_to":"35304"} +{"$label":"ACTS_IN","name":"Les Triplettes (voice)","type":"Role","_key":"55378","_from":"35305","_to":"35304"} +{"$label":"DIRECTED","_key":"55389","_from":"35309","_to":"35308"} +{"$label":"ACTS_IN","name":"Judge Feeney","type":"Role","_key":"110252","_from":"35309","_to":"65163"} +{"$label":"DIRECTED","_key":"55405","_from":"35320","_to":"35310"} +{"$label":"ACTS_IN","name":"Vernon Toddman","type":"Role","_key":"55403","_from":"35319","_to":"35310"} +{"$label":"ACTS_IN","name":"Eddie Beagle","type":"Role","_key":"55401","_from":"35318","_to":"35310"} +{"$label":"ACTS_IN","name":"Mrs. Lowry","type":"Role","_key":"55400","_from":"35317","_to":"35310"} +{"$label":"ACTS_IN","name":"Briggs Lowry","type":"Role","_key":"55399","_from":"35316","_to":"35310"} +{"$label":"ACTS_IN","name":"Eugene Skinner","type":"Role","_key":"55397","_from":"35315","_to":"35310"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"55396","_from":"35314","_to":"35310"} +{"$label":"ACTS_IN","name":"Mrs. Jensen","type":"Role","_key":"55395","_from":"35313","_to":"35310"} +{"$label":"ACTS_IN","name":"William Jensen","type":"Role","_key":"55393","_from":"35312","_to":"35310"} +{"$label":"ACTS_IN","name":"Cinema Usher","type":"Role","_key":"55391","_from":"35311","_to":"35310"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"62650","_from":"35312","_to":"39410"} +{"$label":"ACTS_IN","name":"Redmond Schmeichel","type":"Role","_key":"59046","_from":"35316","_to":"37275"} +{"$label":"ACTS_IN","name":"Student #1","type":"Role","_key":"97482","_from":"35318","_to":"57409"} +{"$label":"ACTS_IN","name":"Bradford Easton","type":"Role","_key":"96012","_from":"35320","_to":"56439"} +{"$label":"ACTS_IN","name":"Pvt. Jupiter Sharts","type":"Role","_key":"55410","_from":"35322","_to":"35321"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"95945","_from":"35322","_to":"56416"} +{"$label":"ACTS_IN","name":"Chiharu","type":"Role","_key":"55415","_from":"35327","_to":"35323"} +{"$label":"ACTS_IN","name":"Noritaka","type":"Role","_key":"55414","_from":"35326","_to":"35323"} +{"$label":"ACTS_IN","name":"Tomoka Miura","type":"Role","_key":"55413","_from":"35325","_to":"35323"} +{"$label":"ACTS_IN","name":"Kyoko Harase","type":"Role","_key":"55412","_from":"35324","_to":"35323"} +{"$label":"ACTS_IN","name":"Chiharu","type":"Role","_key":"72291","_from":"35327","_to":"43669"} +{"$label":"ACTS_IN","name":"Detective Omuta","type":"Role","_key":"55429","_from":"35331","_to":"35329"} +{"$label":"ACTS_IN","name":"Dr. Kawajiri","type":"Role","_key":"55428","_from":"35330","_to":"35329"} +{"$label":"ACTS_IN","name":"Kunio Hamada","type":"Role","_key":"88669","_from":"35330","_to":"52540"} +{"$label":"ACTS_IN","name":"Dr. Kozuki","type":"Role","_key":"71380","_from":"35330","_to":"43291"} +{"$label":"DIRECTED","_key":"55435","_from":"35333","_to":"35332"} +{"$label":"ACTS_IN","name":"Gore Vidal","type":"Role","_key":"55447","_from":"35341","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55445","_from":"35340","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55444","_from":"35339","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55443","_from":"35338","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55442","_from":"35337","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55441","_from":"35336","_to":"35334"} +{"$label":"ACTS_IN","name":"El Morroco Band","type":"Role","_key":"55440","_from":"35335","_to":"35334"} +{"$label":"ACTS_IN","name":"Gianna S","type":"Role","_key":"55455","_from":"35344","_to":"35342"} +{"$label":"ACTS_IN","name":"Gabi","type":"Role","_key":"55453","_from":"35343","_to":"35342"} +{"$label":"ACTS_IN","name":"Cora H\u00fcbsch","type":"Role","_key":"67692","_from":"35343","_to":"41636"} +{"$label":"DIRECTED","_key":"55461","_from":"35350","_to":"35345"} +{"$label":"ACTS_IN","name":"Akiko Miyaji","type":"Role","_key":"55460","_from":"35349","_to":"35345"} +{"$label":"ACTS_IN","name":"Etsuko Tachihara","type":"Role","_key":"55459","_from":"35348","_to":"35345"} +{"$label":"ACTS_IN","name":"Hiroshi T\u00f4yama","type":"Role","_key":"55458","_from":"35347","_to":"35345"} +{"$label":"ACTS_IN","name":"Sadako Yamamura","type":"Role","_key":"55457","_from":"35346","_to":"35345"} +{"$label":"ACTS_IN","name":"Oboro","type":"Role","_key":"60915","_from":"35346","_to":"38490"} +{"$label":"ACTS_IN","name":"Kazuhiro Suzuki","type":"Role","_key":"117266","_from":"35347","_to":"68972"} +{"$label":"ACTS_IN","name":"Luna Kozuki","type":"Role","_key":"71377","_from":"35348","_to":"43291"} +{"$label":"ACTS_IN","name":"Asuka Okouchi","type":"Role","_key":"115681","_from":"35349","_to":"68098"} +{"$label":"ACTS_IN","name":"Capt. John Tierney (as Angus MacInnis)","type":"Role","_key":"55480","_from":"35355","_to":"35352"} +{"$label":"ACTS_IN","name":"Morrie Friedman","type":"Role","_key":"55478","_from":"35354","_to":"35352"} +{"$label":"ACTS_IN","name":"Dolph Bleichert","type":"Role","_key":"55475","_from":"35353","_to":"35352"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"56357","_from":"35354","_to":"35808"} +{"$label":"ACTS_IN","name":"Reynolds","type":"Role","_key":"111951","_from":"35355","_to":"66083"} +{"$label":"DIRECTED","_key":"55488","_from":"35361","_to":"35356"} +{"$label":"DIRECTED","_key":"55487","_from":"35360","_to":"35356"} +{"$label":"ACTS_IN","name":"Helmut, der abst\u00fcrzt","type":"Role","_key":"55486","_from":"35359","_to":"35356"} +{"$label":"ACTS_IN","name":"Springender Kollege","type":"Role","_key":"55485","_from":"35358","_to":"35356"} +{"$label":"ACTS_IN","name":"Schulungsleiter","type":"Role","_key":"55484","_from":"35357","_to":"35356"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"55497","_from":"35363","_to":"35362"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96538","_from":"35363","_to":"56725"} +{"$label":"ACTS_IN","name":"Lyle Robideaux","type":"Role","_key":"64911","_from":"35363","_to":"40359"} +{"$label":"DIRECTED","_key":"55520","_from":"35366","_to":"35364"} +{"$label":"ACTS_IN","name":"Mirror Man","type":"Role","_key":"55508","_from":"35365","_to":"35364"} +{"$label":"DIRECTED","_key":"66651","_from":"35366","_to":"41190"} +{"$label":"DIRECTED","_key":"55898","_from":"35366","_to":"35554"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"55535","_from":"35376","_to":"35367"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"55534","_from":"35375","_to":"35367"} +{"$label":"ACTS_IN","name":"Mac Cronin (as Thom McFadden)","type":"Role","_key":"55532","_from":"35374","_to":"35367"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"55530","_from":"35373","_to":"35367"} +{"$label":"ACTS_IN","name":"Louise Harper","type":"Role","_key":"55527","_from":"35372","_to":"35367"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"55526","_from":"35371","_to":"35367"} +{"$label":"ACTS_IN","name":"Sally Baker","type":"Role","_key":"55524","_from":"35370","_to":"35367"} +{"$label":"ACTS_IN","name":"Jody Baker","type":"Role","_key":"55523","_from":"35369","_to":"35367"} +{"$label":"ACTS_IN","name":"Sam Harper (as David Shark Fralick)","type":"Role","_key":"55522","_from":"35368","_to":"35367"} +{"$label":"ACTS_IN","name":"Vittorio","type":"Role","_key":"55551","_from":"35380","_to":"35377"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"55549","_from":"35379","_to":"35377"} +{"$label":"ACTS_IN","name":"Donato","type":"Role","_key":"55543","_from":"35378","_to":"35377"} +{"$label":"DIRECTED","_key":"55568","_from":"35389","_to":"35381"} +{"$label":"ACTS_IN","name":"Male Newscaster #2","type":"Role","_key":"55567","_from":"35388","_to":"35381"} +{"$label":"ACTS_IN","name":"Phantom (as Mike Regan)","type":"Role","_key":"55566","_from":"35387","_to":"35381"} +{"$label":"ACTS_IN","name":"Newscaster","type":"Role","_key":"55565","_from":"35386","_to":"35381"} +{"$label":"ACTS_IN","name":"Douglas Zieglar","type":"Role","_key":"55562","_from":"35385","_to":"35381"} +{"$label":"ACTS_IN","name":"Dark Figure","type":"Role","_key":"55561","_from":"35384","_to":"35381"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"55558","_from":"35383","_to":"35381"} +{"$label":"ACTS_IN","name":"Mattie","type":"Role","_key":"55553","_from":"35382","_to":"35381"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"121399","_from":"35382","_to":"71336"} +{"$label":"ACTS_IN","name":"Cora (voice)","type":"Role","_key":"109568","_from":"35382","_to":"64719"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"95078","_from":"35382","_to":"55963"} +{"$label":"ACTS_IN","name":"Beth Harper","type":"Role","_key":"94713","_from":"35382","_to":"55790"} +{"$label":"ACTS_IN","name":"Gracie","type":"Role","_key":"94389","_from":"35382","_to":"55578"} +{"$label":"ACTS_IN","name":"Laura Newton","type":"Role","_key":"68303","_from":"35382","_to":"41929"} +{"$label":"ACTS_IN","name":"Record Executive's Daughter","type":"Role","_key":"64564","_from":"35382","_to":"40205"} +{"$label":"ACTS_IN","name":"Nurse Laurie","type":"Role","_key":"57995","_from":"35382","_to":"36693"} +{"$label":"ACTS_IN","name":"Sarah Marshall","type":"Role","_key":"57493","_from":"35382","_to":"36436"} +{"$label":"ACTS_IN","name":"Gerold Hirschberg","type":"Role","_key":"110273","_from":"35383","_to":"65170"} +{"$label":"ACTS_IN","name":"Spanky","type":"Role","_key":"65562","_from":"35383","_to":"40629"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"58133","_from":"35385","_to":"36776"} +{"$label":"ACTS_IN","name":"Papa Beast","type":"Role","_key":"60242","_from":"35387","_to":"37994"} +{"$label":"DIRECTED","_key":"55584","_from":"35396","_to":"35390"} +{"$label":"ACTS_IN","name":"Rubber Woman","type":"Role","_key":"55583","_from":"35395","_to":"35390"} +{"$label":"ACTS_IN","name":"Li'l Zip","type":"Role","_key":"55581","_from":"35394","_to":"35390"} +{"$label":"ACTS_IN","name":"Lisa, Mark's Sister","type":"Role","_key":"55579","_from":"35393","_to":"35390"} +{"$label":"ACTS_IN","name":"Pappy \/ Pippy","type":"Role","_key":"55577","_from":"35392","_to":"35390"} +{"$label":"ACTS_IN","name":"Pushpop","type":"Role","_key":"55576","_from":"35391","_to":"35390"} +{"$label":"ACTS_IN","name":"Cardinal O'Fallon \/ Arman \/ Scruffy Man","type":"Role","_key":"97200","_from":"35391","_to":"57172"} +{"$label":"ACTS_IN","name":"Iqbal","type":"Role","_key":"56881","_from":"35391","_to":"36109"} +{"$label":"ACTS_IN","name":"Sheriff Bob","type":"Role","_key":"58784","_from":"35392","_to":"37126"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"55599","_from":"35407","_to":"35397"} +{"$label":"ACTS_IN","name":"Musician Friend","type":"Role","_key":"55598","_from":"35406","_to":"35397"} +{"$label":"ACTS_IN","name":"Musician Friend","type":"Role","_key":"55597","_from":"35405","_to":"35397"} +{"$label":"ACTS_IN","name":"Alvin (as Ron Cephas Jones)","type":"Role","_key":"55596","_from":"35404","_to":"35397"} +{"$label":"ACTS_IN","name":"Omer","type":"Role","_key":"55595","_from":"35403","_to":"35397"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"55594","_from":"35402","_to":"35397"} +{"$label":"ACTS_IN","name":"Iris - Hooker #2","type":"Role","_key":"55593","_from":"35401","_to":"35397"} +{"$label":"ACTS_IN","name":"Hazel - Hooker #1","type":"Role","_key":"55592","_from":"35400","_to":"35397"} +{"$label":"ACTS_IN","name":"A.J. Pickman","type":"Role","_key":"55587","_from":"35399","_to":"35397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55586","_from":"35398","_to":"35397"} +{"$label":"ACTS_IN","name":"Dayna Jurgens","type":"Role","_key":"94976","_from":"35401","_to":"55928"} +{"$label":"DIRECTED","_key":"55616","_from":"35412","_to":"35408"} +{"$label":"ACTS_IN","name":"Lisa Fiedler","type":"Role","_key":"55615","_from":"35411","_to":"35408"} +{"$label":"ACTS_IN","name":"Little Cadet","type":"Role","_key":"55613","_from":"35410","_to":"35408"} +{"$label":"ACTS_IN","name":"Lt. Ernest Smith, Pershing Academy","type":"Role","_key":"55611","_from":"35409","_to":"35408"} +{"$label":"ACTS_IN","name":"Kirby","type":"Role","_key":"109013","_from":"35409","_to":"64421"} +{"$label":"ACTS_IN","name":"Mr. Leeds","type":"Role","_key":"55788","_from":"35409","_to":"35507"} +{"$label":"DIRECTED","_key":"110790","_from":"35412","_to":"65438"} +{"$label":"ACTS_IN","name":"Citizen","type":"Role","_key":"55631","_from":"35424","_to":"35413"} +{"$label":"ACTS_IN","name":"Store Clerk","type":"Role","_key":"55630","_from":"35423","_to":"35413"} +{"$label":"ACTS_IN","name":"Detective Flynn \/ Clifford, The Doorman \/ Cop","type":"Role","_key":"55629","_from":"35422","_to":"35413"} +{"$label":"ACTS_IN","name":"Theater Manager","type":"Role","_key":"55628","_from":"35421","_to":"35413"} +{"$label":"ACTS_IN","name":"Shandu, The Magician","type":"Role","_key":"55626","_from":"35420","_to":"35413"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"55625","_from":"35419","_to":"35413"} +{"$label":"ACTS_IN","name":"Aunt Ceil","type":"Role","_key":"55624","_from":"35418","_to":"35413"} +{"$label":"ACTS_IN","name":"Board Member","type":"Role","_key":"55623","_from":"35417","_to":"35413"} +{"$label":"ACTS_IN","name":"Sheldon's Secretary","type":"Role","_key":"55621","_from":"35416","_to":"35413"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"55619","_from":"35415","_to":"35413"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"55618","_from":"35414","_to":"35413"} +{"$label":"ACTS_IN","name":"Glandular Diagnosis Doctor","type":"Role","_key":"67414","_from":"35414","_to":"41529"} +{"$label":"ACTS_IN","name":"Boris Yellnikoff","type":"Role","_key":"119429","_from":"35421","_to":"70168"} +{"$label":"ACTS_IN","name":"Salesman","type":"Role","_key":"96059","_from":"35422","_to":"56457"} +{"$label":"DIRECTED","_key":"55640","_from":"35427","_to":"35425"} +{"$label":"ACTS_IN","name":"TV Chat Show Presenter","type":"Role","_key":"55639","_from":"35426","_to":"35425"} +{"$label":"ACTS_IN","name":"Bouncer","type":"Role","_key":"104430","_from":"35426","_to":"61430"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"55654","_from":"35433","_to":"35428"} +{"$label":"ACTS_IN","name":"Jack Oliver","type":"Role","_key":"55649","_from":"35432","_to":"35428"} +{"$label":"ACTS_IN","name":"Man with Dog","type":"Role","_key":"55646","_from":"35431","_to":"35428"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"55643","_from":"35430","_to":"35428"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"55642","_from":"35429","_to":"35428"} +{"$label":"ACTS_IN","name":"Assistant Controller","type":"Role","_key":"92048","_from":"35430","_to":"54312"} +{"$label":"ACTS_IN","name":"Barbeque Guest","type":"Role","_key":"55668","_from":"35430","_to":"35434"} +{"$label":"ACTS_IN","name":"Mr. Cubano","type":"Role","_key":"115336","_from":"35432","_to":"67904"} +{"$label":"ACTS_IN","name":"Carlyle Pianist","type":"Role","_key":"55671","_from":"35439","_to":"35434"} +{"$label":"ACTS_IN","name":"Barbeque Guest","type":"Role","_key":"55670","_from":"35438","_to":"35434"} +{"$label":"ACTS_IN","name":"Barbeque Guest","type":"Role","_key":"55669","_from":"35437","_to":"35434"} +{"$label":"ACTS_IN","name":"Commercial A.D.","type":"Role","_key":"55665","_from":"35436","_to":"35434"} +{"$label":"ACTS_IN","name":"Galaxie Executive","type":"Role","_key":"55659","_from":"35435","_to":"35434"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64139","_from":"35437","_to":"40021"} +{"$label":"ACTS_IN","name":"Tommi Drexler","type":"Role","_key":"55685","_from":"35442","_to":"35440"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"55683","_from":"35441","_to":"35440"} +{"$label":"ACTS_IN","name":"Dowager","type":"Role","_key":"55703","_from":"35450","_to":"35443"} +{"$label":"ACTS_IN","name":"Cemetery Caretaker","type":"Role","_key":"55702","_from":"35449","_to":"35443"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"55701","_from":"35448","_to":"35443"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"55700","_from":"35447","_to":"35443"} +{"$label":"ACTS_IN","name":"Buyer with Remy","type":"Role","_key":"55699","_from":"35446","_to":"35443"} +{"$label":"ACTS_IN","name":"Buyer with Remy","type":"Role","_key":"55698","_from":"35445","_to":"35443"} +{"$label":"ACTS_IN","name":"Nicolai Tashlinkov","type":"Role","_key":"55692","_from":"35444","_to":"35443"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"116905","_from":"35446","_to":"68821"} +{"$label":"DIRECTED","_key":"55720","_from":"35461","_to":"35451"} +{"$label":"ACTS_IN","name":"Girl on Bus","type":"Role","_key":"55718","_from":"35460","_to":"35451"} +{"$label":"ACTS_IN","name":"Little Girl on Bus (as Clara Infinity Daniels)","type":"Role","_key":"55717","_from":"35459","_to":"35451"} +{"$label":"ACTS_IN","name":"Cherub","type":"Role","_key":"55716","_from":"35458","_to":"35451"} +{"$label":"ACTS_IN","name":"Boy at Playground","type":"Role","_key":"55715","_from":"35457","_to":"35451"} +{"$label":"ACTS_IN","name":"Annette","type":"Role","_key":"55714","_from":"35456","_to":"35451"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"55713","_from":"35455","_to":"35451"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"55711","_from":"35454","_to":"35451"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"55709","_from":"35453","_to":"35451"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"55706","_from":"35452","_to":"35451"} +{"$label":"ACTS_IN","name":"Fred Ostroff","type":"Role","_key":"89732","_from":"35452","_to":"53116"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"67660","_from":"35452","_to":"41628"} +{"$label":"ACTS_IN","name":"Jim Fields","type":"Role","_key":"56017","_from":"35452","_to":"35606"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"94139","_from":"35453","_to":"55435"} +{"$label":"ACTS_IN","name":"Fish Dhafer","type":"Role","_key":"55741","_from":"35477","_to":"35462"} +{"$label":"ACTS_IN","name":"Kee","type":"Role","_key":"55738","_from":"35476","_to":"35462"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"55735","_from":"35475","_to":"35462"} +{"$label":"ACTS_IN","name":"Shirley","type":"Role","_key":"55733","_from":"35474","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55732","_from":"35473","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer (as Atlanta White)","type":"Role","_key":"55731","_from":"35472","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55730","_from":"35471","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55729","_from":"35470","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55728","_from":"35469","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55727","_from":"35468","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55726","_from":"35467","_to":"35462"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Customer","type":"Role","_key":"55725","_from":"35466","_to":"35462"} +{"$label":"ACTS_IN","name":"Newsreader","type":"Role","_key":"55724","_from":"35465","_to":"35462"} +{"$label":"ACTS_IN","name":"Newsreader","type":"Role","_key":"55723","_from":"35464","_to":"35462"} +{"$label":"ACTS_IN","name":"Baby Diego (as Juan Yacuzzi)","type":"Role","_key":"55722","_from":"35463","_to":"35462"} +{"$label":"ACTS_IN","name":"Abdullah Omar","type":"Role","_key":"100664","_from":"35477","_to":"59349"} +{"$label":"ACTS_IN","name":"Yoko Okazaki","type":"Role","_key":"55746","_from":"35482","_to":"35478"} +{"$label":"ACTS_IN","name":"Natsumi Konishi","type":"Role","_key":"55745","_from":"35481","_to":"35478"} +{"$label":"ACTS_IN","name":"Shin'ichi Tsutsumi","type":"Role","_key":"55744","_from":"35480","_to":"35478"} +{"$label":"ACTS_IN","name":"Yumi Nakamura","type":"Role","_key":"55743","_from":"35479","_to":"35478"} +{"$label":"ACTS_IN","name":"Abe Reiko","type":"Role","_key":"109992","_from":"35479","_to":"64989"} +{"$label":"ACTS_IN","name":"Dororo","type":"Role","_key":"108159","_from":"35479","_to":"63919"} +{"$label":"ACTS_IN","name":"Kyoko","type":"Role","_key":"104678","_from":"35479","_to":"61585"} +{"$label":"ACTS_IN","name":"Mari Tanaka","type":"Role","_key":"117268","_from":"35481","_to":"68972"} +{"$label":"DIRECTED","_key":"55763","_from":"35496","_to":"35483"} +{"$label":"ACTS_IN","name":"Tina's Friend","type":"Role","_key":"55762","_from":"35495","_to":"35483"} +{"$label":"ACTS_IN","name":"Tina McCarthy (as Kristen Swieconek)","type":"Role","_key":"55761","_from":"35494","_to":"35483"} +{"$label":"ACTS_IN","name":"Border Guard #1","type":"Role","_key":"55760","_from":"35493","_to":"35483"} +{"$label":"ACTS_IN","name":"Rape Victim #2","type":"Role","_key":"55759","_from":"35492","_to":"35483"} +{"$label":"ACTS_IN","name":"Detective Porter","type":"Role","_key":"55758","_from":"35491","_to":"35483"} +{"$label":"ACTS_IN","name":"Tammy Homolka","type":"Role","_key":"55757","_from":"35490","_to":"35483"} +{"$label":"ACTS_IN","name":"Detective Morgan","type":"Role","_key":"55756","_from":"35489","_to":"35483"} +{"$label":"ACTS_IN","name":"Detective Steve Kirby","type":"Role","_key":"55755","_from":"35488","_to":"35483"} +{"$label":"ACTS_IN","name":"Rape Victim #1","type":"Role","_key":"55754","_from":"35487","_to":"35483"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"55752","_from":"35486","_to":"35483"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"55751","_from":"35485","_to":"35483"} +{"$label":"ACTS_IN","name":"Paul Bernardo","type":"Role","_key":"55749","_from":"35484","_to":"35483"} +{"$label":"ACTS_IN","name":"Market Clerk","type":"Role","_key":"106974","_from":"35490","_to":"63058"} +{"$label":"ACTS_IN","name":"Richard Addis","type":"Role","_key":"99268","_from":"35491","_to":"58498"} +{"$label":"ACTS_IN","name":"Newscaster #2","type":"Role","_key":"58029","_from":"35491","_to":"36714"} +{"$label":"ACTS_IN","name":"Coffee Shop Manager","type":"Role","_key":"55777","_from":"35506","_to":"35497"} +{"$label":"ACTS_IN","name":"Kaneko","type":"Role","_key":"55776","_from":"35505","_to":"35497"} +{"$label":"ACTS_IN","name":"Jir\u00f4 \/ Sabur\u00f4","type":"Role","_key":"55774","_from":"35504","_to":"35497"} +{"$label":"ACTS_IN","name":"Inoue","type":"Role","_key":"55773","_from":"35503","_to":"35497"} +{"$label":"ACTS_IN","name":"Ryu Long (as Kee)","type":"Role","_key":"55772","_from":"35502","_to":"35497"} +{"$label":"ACTS_IN","name":"Nakazawa","type":"Role","_key":"55771","_from":"35501","_to":"35497"} +{"$label":"ACTS_IN","name":"Fujiwara","type":"Role","_key":"55770","_from":"35500","_to":"35497"} +{"$label":"ACTS_IN","name":"Jijii","type":"Role","_key":"55766","_from":"35499","_to":"35497"} +{"$label":"ACTS_IN","name":"Ichi","type":"Role","_key":"55765","_from":"35498","_to":"35497"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"103148","_from":"35498","_to":"60670"} +{"$label":"ACTS_IN","name":"Father of the poor family","type":"Role","_key":"107921","_from":"35501","_to":"63729"} +{"$label":"ACTS_IN","name":"Makoto Tsuchiya","type":"Role","_key":"93900","_from":"35502","_to":"55285"} +{"$label":"ACTS_IN","name":"One-Eyebrow Smoker","type":"Role","_key":"55794","_from":"35511","_to":"35507"} +{"$label":"ACTS_IN","name":"Long Haired Smoker","type":"Role","_key":"55791","_from":"35510","_to":"35507"} +{"$label":"ACTS_IN","name":"Joey Dury","type":"Role","_key":"55790","_from":"35509","_to":"35507"} +{"$label":"ACTS_IN","name":"Young-Soon Choi","type":"Role","_key":"55785","_from":"35508","_to":"35507"} +{"$label":"DIRECTED","_key":"55817","_from":"35526","_to":"35512"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"55816","_from":"35525","_to":"35512"} +{"$label":"ACTS_IN","name":"Biff McMahon","type":"Role","_key":"55810","_from":"35524","_to":"35512"} +{"$label":"ACTS_IN","name":"Angel Eyes McMahon","type":"Role","_key":"55809","_from":"35523","_to":"35512"} +{"$label":"ACTS_IN","name":"Bruno McMahon","type":"Role","_key":"55808","_from":"35522","_to":"35512"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"55806","_from":"35521","_to":"35512"} +{"$label":"ACTS_IN","name":"Chuch","type":"Role","_key":"55804","_from":"35520","_to":"35512"} +{"$label":"ACTS_IN","name":"Gomez","type":"Role","_key":"55803","_from":"35519","_to":"35512"} +{"$label":"ACTS_IN","name":"Dead Man in Car","type":"Role","_key":"55802","_from":"35518","_to":"35512"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"55801","_from":"35517","_to":"35512"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"55800","_from":"35516","_to":"35512"} +{"$label":"ACTS_IN","name":"Simms","type":"Role","_key":"55799","_from":"35515","_to":"35512"} +{"$label":"ACTS_IN","name":"Norwood","type":"Role","_key":"55797","_from":"35514","_to":"35512"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"55796","_from":"35513","_to":"35512"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"96950","_from":"35513","_to":"57026"} +{"$label":"ACTS_IN","name":"Doo-Dah Understudy","type":"Role","_key":"104939","_from":"35514","_to":"61746"} +{"$label":"ACTS_IN","name":"Johnny aka Elvis","type":"Role","_key":"69039","_from":"35515","_to":"42262"} +{"$label":"DIRECTED","_key":"68070","_from":"35520","_to":"41819"} +{"$label":"DIRECTED","_key":"102503","_from":"35526","_to":"60305"} +{"$label":"DIRECTED","_key":"96952","_from":"35526","_to":"57026"} +{"$label":"ACTS_IN","name":"Gringo","type":"Role","_key":"100224","_from":"35526","_to":"59110"} +{"$label":"ACTS_IN","name":"Clouseau's Father","type":"Role","_key":"55822","_from":"35528","_to":"35527"} +{"$label":"ACTS_IN","name":"Einstein","type":"Role","_key":"88878","_from":"35528","_to":"52660"} +{"$label":"ACTS_IN","name":"Gen. George Armstrong Custer","type":"Role","_key":"67504","_from":"35528","_to":"41571"} +{"$label":"ACTS_IN","name":"Rodney","type":"Role","_key":"55834","_from":"35532","_to":"35529"} +{"$label":"ACTS_IN","name":"Leonela","type":"Role","_key":"55830","_from":"35531","_to":"35529"} +{"$label":"ACTS_IN","name":"Mercedes Fellove","type":"Role","_key":"55827","_from":"35530","_to":"35529"} +{"$label":"ACTS_IN","name":"Leslie Conlin","type":"Role","_key":"55850","_from":"35536","_to":"35533"} +{"$label":"ACTS_IN","name":"Sammy Aimes","type":"Role","_key":"55841","_from":"35535","_to":"35533"} +{"$label":"ACTS_IN","name":"Karen Aimes","type":"Role","_key":"55840","_from":"35534","_to":"35533"} +{"$label":"ACTS_IN","name":"Charlie Bratley","type":"Role","_key":"97480","_from":"35535","_to":"57409"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"55868","_from":"35541","_to":"35537"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"55863","_from":"35540","_to":"35537"} +{"$label":"ACTS_IN","name":"Magic Mike","type":"Role","_key":"55859","_from":"35539","_to":"35537"} +{"$label":"ACTS_IN","name":"Cruz","type":"Role","_key":"55856","_from":"35538","_to":"35537"} +{"$label":"ACTS_IN","name":"Santiago","type":"Role","_key":"116608","_from":"35539","_to":"68642"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"95646","_from":"35539","_to":"56251"} +{"$label":"ACTS_IN","name":"Immigration Aide","type":"Role","_key":"119718","_from":"35541","_to":"70307"} +{"$label":"DIRECTED","_key":"55886","_from":"35546","_to":"35542"} +{"$label":"ACTS_IN","name":"Kustennin","type":"Role","_key":"55883","_from":"35545","_to":"35542"} +{"$label":"ACTS_IN","name":"Vatrenus","type":"Role","_key":"55881","_from":"35544","_to":"35542"} +{"$label":"ACTS_IN","name":"Batiatus","type":"Role","_key":"55880","_from":"35543","_to":"35542"} +{"$label":"ACTS_IN","name":"Cass","type":"Role","_key":"100629","_from":"35543","_to":"59336"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"96791","_from":"35543","_to":"56924"} +{"$label":"ACTS_IN","name":"Ezra","type":"Role","_key":"63727","_from":"35543","_to":"39839"} +{"$label":"ACTS_IN","name":"Harold Price","type":"Role","_key":"108930","_from":"35545","_to":"64373"} +{"$label":"ACTS_IN","name":"Hugh Rhys-Jones","type":"Role","_key":"66723","_from":"35545","_to":"41220"} +{"$label":"DIRECTED","_key":"63539","_from":"35546","_to":"39772"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55892","_from":"35553","_to":"35547"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55891","_from":"35552","_to":"35547"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55890","_from":"35551","_to":"35547"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"55889","_from":"35550","_to":"35547"} +{"$label":"DIRECTED","_key":"55888","_from":"35549","_to":"35547"} +{"$label":"DIRECTED","_key":"55887","_from":"35548","_to":"35547"} +{"$label":"DIRECTED","_key":"55903","_from":"35559","_to":"35555"} +{"$label":"ACTS_IN","name":"Miyashita","type":"Role","_key":"55902","_from":"35558","_to":"35555"} +{"$label":"ACTS_IN","name":"Sadako Yamamura","type":"Role","_key":"55901","_from":"35557","_to":"35555"} +{"$label":"ACTS_IN","name":"Mitsuo Ando","type":"Role","_key":"55899","_from":"35556","_to":"35555"} +{"$label":"ACTS_IN","name":"Toda Taicho","type":"Role","_key":"114271","_from":"35556","_to":"67298"} +{"$label":"ACTS_IN","name":"Hajime Saito","type":"Role","_key":"100398","_from":"35556","_to":"59206"} +{"$label":"ACTS_IN","name":"Taira no Kiyomori","type":"Role","_key":"95616","_from":"35556","_to":"56241"} +{"$label":"ACTS_IN","name":"Kyoko Sekino","type":"Role","_key":"69433","_from":"35557","_to":"42432"} +{"$label":"ACTS_IN","name":"Callie","type":"Role","_key":"55907","_from":"35562","_to":"35560"} +{"$label":"ACTS_IN","name":"The Nurse","type":"Role","_key":"55906","_from":"35561","_to":"35560"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"119260","_from":"35561","_to":"70072"} +{"$label":"ACTS_IN","name":"Jennifer 'Jenny' Wheeler","type":"Role","_key":"107456","_from":"35562","_to":"63393"} +{"$label":"DIRECTED","_key":"55914","_from":"35564","_to":"35563"} +{"$label":"DIRECTED","_key":"100942","_from":"35564","_to":"59498"} +{"$label":"DIRECTED","_key":"93690","_from":"35564","_to":"55148"} +{"$label":"DIRECTED","_key":"63576","_from":"35564","_to":"39783"} +{"$label":"DIRECTED","_key":"55919","_from":"35567","_to":"35565"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"55918","_from":"35566","_to":"35565"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"55928","_from":"35571","_to":"35569"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"55927","_from":"35570","_to":"35569"} +{"$label":"ACTS_IN","name":"Nikki Sinclaire","type":"Role","_key":"103088","_from":"35570","_to":"60638"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"67096","_from":"35570","_to":"41408"} +{"$label":"ACTS_IN","name":"Isis","type":"Role","_key":"119521","_from":"35571","_to":"70212"} +{"$label":"ACTS_IN","name":"Alice Ribbons","type":"Role","_key":"55937","_from":"35574","_to":"35573"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"55947","_from":"35577","_to":"35576"} +{"$label":"DIRECTED","_key":"55974","_from":"35582","_to":"35579"} +{"$label":"ACTS_IN","name":"10-Year-Old Ricky","type":"Role","_key":"55972","_from":"35587","_to":"35579"} +{"$label":"ACTS_IN","name":"ESPN Reporter","type":"Role","_key":"55970","_from":"35586","_to":"35579"} +{"$label":"ACTS_IN","name":"Waffle House Manager","type":"Role","_key":"55969","_from":"35585","_to":"35579"} +{"$label":"ACTS_IN","name":"Glenn","type":"Role","_key":"55966","_from":"35584","_to":"35579"} +{"$label":"ACTS_IN","name":"Schoolteacher","type":"Role","_key":"55965","_from":"35583","_to":"35579"} +{"$label":"ACTS_IN","name":"Terry Cheveaux","type":"Role","_key":"55964","_from":"35582","_to":"35579"} +{"$label":"ACTS_IN","name":"10-Year-Old Cal","type":"Role","_key":"55959","_from":"35581","_to":"35579"} +{"$label":"ACTS_IN","name":"5-Year-Old Ricky","type":"Role","_key":"55958","_from":"35580","_to":"35579"} +{"$label":"DIRECTED","_key":"88207","_from":"35582","_to":"52337"} +{"$label":"DIRECTED","_key":"58642","_from":"35582","_to":"37052"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99727","_from":"35584","_to":"58816"} +{"$label":"ACTS_IN","name":"Darald","type":"Role","_key":"57498","_from":"35584","_to":"36436"} +{"$label":"DIRECTED","_key":"55991","_from":"35596","_to":"35588"} +{"$label":"DIRECTED","_key":"55990","_from":"35595","_to":"35588"} +{"$label":"ACTS_IN","name":"Casey Whitner","type":"Role","_key":"55988","_from":"35594","_to":"35588"} +{"$label":"ACTS_IN","name":"Hansie Prinsinger","type":"Role","_key":"55987","_from":"35593","_to":"35588"} +{"$label":"ACTS_IN","name":"Courtney Burke","type":"Role","_key":"55986","_from":"35592","_to":"35588"} +{"$label":"ACTS_IN","name":"Burt Wohlfert","type":"Role","_key":"55985","_from":"35591","_to":"35588"} +{"$label":"ACTS_IN","name":"Julie Thurber","type":"Role","_key":"55979","_from":"35590","_to":"35588"} +{"$label":"ACTS_IN","name":"Pumpkin Romanoff","type":"Role","_key":"55976","_from":"35589","_to":"35588"} +{"$label":"ACTS_IN","name":"Sarah Archer","type":"Role","_key":"98523","_from":"35590","_to":"58062"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"93092","_from":"35590","_to":"54874"} +{"$label":"ACTS_IN","name":"Jo Lynn Jordan","type":"Role","_key":"62702","_from":"35590","_to":"39424"} +{"$label":"ACTS_IN","name":"Alita Covas","type":"Role","_key":"60464","_from":"35592","_to":"38147"} +{"$label":"ACTS_IN","name":"Michael Zimmerman","type":"Role","_key":"110275","_from":"35594","_to":"65170"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"107256","_from":"35594","_to":"63247"} +{"$label":"DIRECTED","_key":"56007","_from":"35605","_to":"35597"} +{"$label":"ACTS_IN","name":"Captain Szabo","type":"Role","_key":"56001","_from":"35604","_to":"35597"} +{"$label":"ACTS_IN","name":"Pro 2","type":"Role","_key":"56000","_from":"35603","_to":"35597"} +{"$label":"ACTS_IN","name":"Pro 1","type":"Role","_key":"55999","_from":"35602","_to":"35597"} +{"$label":"ACTS_IN","name":"Frank 'Bull' Mercea","type":"Role","_key":"55998","_from":"35601","_to":"35597"} +{"$label":"ACTS_IN","name":"Mikhail","type":"Role","_key":"55997","_from":"35600","_to":"35597"} +{"$label":"ACTS_IN","name":"Suza","type":"Role","_key":"55995","_from":"35599","_to":"35597"} +{"$label":"ACTS_IN","name":"Sgt. Kelly Anders","type":"Role","_key":"55993","_from":"35598","_to":"35597"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"120392","_from":"35599","_to":"70723"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"112285","_from":"35599","_to":"66300"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"99303","_from":"35599","_to":"58513"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"99083","_from":"35599","_to":"58369"} +{"$label":"ACTS_IN","name":"Velos","type":"Role","_key":"57974","_from":"35602","_to":"36679"} +{"$label":"ACTS_IN","name":"Ambassador","type":"Role","_key":"59935","_from":"35604","_to":"37835"} +{"$label":"DIRECTED","_key":"119037","_from":"35605","_to":"69974"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"56022","_from":"35611","_to":"35606"} +{"$label":"ACTS_IN","name":"Sheila Wyatt","type":"Role","_key":"56021","_from":"35610","_to":"35606"} +{"$label":"ACTS_IN","name":"Aunt Clara","type":"Role","_key":"56019","_from":"35609","_to":"35606"} +{"$label":"ACTS_IN","name":"Stu Robison","type":"Role","_key":"56016","_from":"35608","_to":"35606"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"56015","_from":"35607","_to":"35606"} +{"$label":"ACTS_IN","name":"Doktor","type":"Role","_key":"68856","_from":"35607","_to":"42177"} +{"$label":"ACTS_IN","name":"Jim Davidson 'The Captain'","type":"Role","_key":"58927","_from":"35607","_to":"37201"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105836","_from":"35608","_to":"62306"} +{"$label":"ACTS_IN","name":"President Hathaway (voice)","type":"Role","_key":"104779","_from":"35608","_to":"61645"} +{"$label":"ACTS_IN","name":"Chuck Noblet","type":"Role","_key":"92870","_from":"35608","_to":"54784"} +{"$label":"ACTS_IN","name":"Lady Klucky","type":"Role","_key":"72548","_from":"35609","_to":"43753"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"115026","_from":"35610","_to":"67733"} +{"$label":"ACTS_IN","name":"Felicity Hammer","type":"Role","_key":"60791","_from":"35610","_to":"38393"} +{"$label":"ACTS_IN","name":"The Director (voice)","type":"Role","_key":"92196","_from":"35611","_to":"54410"} +{"$label":"DIRECTED","_key":"56039","_from":"35619","_to":"35612"} +{"$label":"ACTS_IN","name":"Bougainvillea Girl","type":"Role","_key":"56038","_from":"35618","_to":"35612"} +{"$label":"ACTS_IN","name":"Satish - Geeta's dad","type":"Role","_key":"56036","_from":"35617","_to":"35612"} +{"$label":"ACTS_IN","name":"Geeta","type":"Role","_key":"56034","_from":"35616","_to":"35612"} +{"$label":"ACTS_IN","name":"Young Doug","type":"Role","_key":"56033","_from":"35615","_to":"35612"} +{"$label":"ACTS_IN","name":"Jagjit","type":"Role","_key":"56031","_from":"35614","_to":"35612"} +{"$label":"ACTS_IN","name":"Haroun Rehman","type":"Role","_key":"56026","_from":"35613","_to":"35612"} +{"$label":"ACTS_IN","name":"Madhuvanthi","type":"Role","_key":"92016","_from":"35616","_to":"54290"} +{"$label":"DIRECTED","_key":"56045","_from":"35623","_to":"35620"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"56044","_from":"35622","_to":"35620"} +{"$label":"ACTS_IN","name":"Ginny Field","type":"Role","_key":"56041","_from":"35621","_to":"35620"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"59685","_from":"35621","_to":"37685"} +{"$label":"ACTS_IN","name":"Hippie Taunting Deputy","type":"Role","_key":"104809","_from":"35623","_to":"61659"} +{"$label":"DIRECTED","_key":"95421","_from":"35623","_to":"56132"} +{"$label":"DIRECTED","_key":"94886","_from":"35623","_to":"55861"} +{"$label":"DIRECTED","_key":"89186","_from":"35623","_to":"52820"} +{"$label":"DIRECTED","_key":"71483","_from":"35623","_to":"43330"} +{"$label":"DIRECTED","_key":"69729","_from":"35623","_to":"42559"} +{"$label":"DIRECTED","_key":"69235","_from":"35623","_to":"42338"} +{"$label":"DIRECTED","_key":"63622","_from":"35623","_to":"39800"} +{"$label":"DIRECTED","_key":"57195","_from":"35623","_to":"36281"} +{"$label":"DIRECTED","_key":"56130","_from":"35623","_to":"35678"} +{"$label":"ACTS_IN","name":"English Couple #1","type":"Role","_key":"56107","_from":"35669","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56106","_from":"35668","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56105","_from":"35667","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56104","_from":"35666","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56103","_from":"35665","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56102","_from":"35664","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56101","_from":"35663","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56100","_from":"35662","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56099","_from":"35661","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56098","_from":"35660","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56097","_from":"35659","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56096","_from":"35658","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56095","_from":"35657","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56094","_from":"35656","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56093","_from":"35655","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56092","_from":"35654","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56091","_from":"35653","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56089","_from":"35652","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56087","_from":"35651","_to":"35624"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56085","_from":"35650","_to":"35624"} +{"$label":"ACTS_IN","name":"Hip Hopper #2","type":"Role","_key":"56083","_from":"35649","_to":"35624"} +{"$label":"ACTS_IN","name":"Hip Hopper #1","type":"Role","_key":"56082","_from":"35648","_to":"35624"} +{"$label":"ACTS_IN","name":"Young Fanny","type":"Role","_key":"56081","_from":"35647","_to":"35624"} +{"$label":"ACTS_IN","name":"Fanny's Mother","type":"Role","_key":"56080","_from":"35646","_to":"35624"} +{"$label":"ACTS_IN","name":"Broker #2","type":"Role","_key":"56079","_from":"35645","_to":"35624"} +{"$label":"ACTS_IN","name":"Broker #1","type":"Role","_key":"56078","_from":"35644","_to":"35624"} +{"$label":"ACTS_IN","name":"Chateau Buyer","type":"Role","_key":"56077","_from":"35643","_to":"35624"} +{"$label":"ACTS_IN","name":"Chateau Buyer","type":"Role","_key":"56076","_from":"35642","_to":"35624"} +{"$label":"ACTS_IN","name":"American Customer #2","type":"Role","_key":"56074","_from":"35641","_to":"35624"} +{"$label":"ACTS_IN","name":"American Customer #1","type":"Role","_key":"56073","_from":"35640","_to":"35624"} +{"$label":"ACTS_IN","name":"Hostess","type":"Role","_key":"56072","_from":"35639","_to":"35624"} +{"$label":"ACTS_IN","name":"English Couple #2","type":"Role","_key":"56071","_from":"35638","_to":"35624"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"56067","_from":"35637","_to":"35624"} +{"$label":"ACTS_IN","name":"Russian Couple #2","type":"Role","_key":"56066","_from":"35636","_to":"35624"} +{"$label":"ACTS_IN","name":"Russian Couple #1","type":"Role","_key":"56065","_from":"35635","_to":"35624"} +{"$label":"ACTS_IN","name":"Ludivine Duflot","type":"Role","_key":"56063","_from":"35634","_to":"35624"} +{"$label":"ACTS_IN","name":"Francis Duflot","type":"Role","_key":"56062","_from":"35633","_to":"35624"} +{"$label":"ACTS_IN","name":"Gemma's Friend","type":"Role","_key":"56061","_from":"35632","_to":"35624"} +{"$label":"ACTS_IN","name":"Rental Car Employee","type":"Role","_key":"56060","_from":"35631","_to":"35624"} +{"$label":"ACTS_IN","name":"Maitre D'","type":"Role","_key":"56058","_from":"35630","_to":"35624"} +{"$label":"ACTS_IN","name":"Newscaster #2","type":"Role","_key":"56057","_from":"35629","_to":"35624"} +{"$label":"ACTS_IN","name":"Newscaster #1","type":"Role","_key":"56056","_from":"35628","_to":"35624"} +{"$label":"ACTS_IN","name":"20-Something Beauty","type":"Role","_key":"56054","_from":"35627","_to":"35624"} +{"$label":"ACTS_IN","name":"Trader #2","type":"Role","_key":"56053","_from":"35626","_to":"35624"} +{"$label":"ACTS_IN","name":"Trader #1","type":"Role","_key":"56052","_from":"35625","_to":"35624"} +{"$label":"ACTS_IN","name":"Bryan","type":"Role","_key":"93399","_from":"35625","_to":"55005"} +{"$label":"ACTS_IN","name":"Hellory Sinclair","type":"Role","_key":"110336","_from":"35626","_to":"65199"} +{"$label":"ACTS_IN","name":"William Marston","type":"Role","_key":"102914","_from":"35626","_to":"60541"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"120401","_from":"35633","_to":"70729"} +{"$label":"ACTS_IN","name":"Balthazar","type":"Role","_key":"115748","_from":"35633","_to":"68154"} +{"$label":"DIRECTED","_key":"120400","_from":"35633","_to":"70729"} +{"$label":"DIRECTED","_key":"115751","_from":"35633","_to":"68154"} +{"$label":"ACTS_IN","name":"Stockbroker","type":"Role","_key":"105892","_from":"35640","_to":"62344"} +{"$label":"ACTS_IN","name":"Kass","type":"Role","_key":"105868","_from":"35640","_to":"62324"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"105859","_from":"35640","_to":"62315"} +{"$label":"ACTS_IN","name":"Reverend Smalls","type":"Role","_key":"57437","_from":"35640","_to":"36404"} +{"$label":"ACTS_IN","name":"Darren","type":"Role","_key":"69898","_from":"35645","_to":"42644"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"110667","_from":"35650","_to":"65376"} +{"$label":"ACTS_IN","name":"Liza Merril (as Katherine MacColl)","type":"Role","_key":"119226","_from":"35669","_to":"70047"} +{"$label":"DIRECTED","_key":"56125","_from":"35677","_to":"35670"} +{"$label":"ACTS_IN","name":"Lewis Detimore","type":"Role","_key":"56123","_from":"35676","_to":"35670"} +{"$label":"ACTS_IN","name":"Billy Bergoon","type":"Role","_key":"56121","_from":"35675","_to":"35670"} +{"$label":"ACTS_IN","name":"Agent Smith","type":"Role","_key":"56120","_from":"35674","_to":"35670"} +{"$label":"ACTS_IN","name":"Janice Frost","type":"Role","_key":"56119","_from":"35673","_to":"35670"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"56115","_from":"35672","_to":"35670"} +{"$label":"ACTS_IN","name":"Brian Martin","type":"Role","_key":"56113","_from":"35671","_to":"35670"} +{"$label":"ACTS_IN","name":"Nicky Parzeno","type":"Role","_key":"117069","_from":"35672","_to":"68895"} +{"$label":"ACTS_IN","name":"Tommy Yates","type":"Role","_key":"98904","_from":"35675","_to":"58276"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"95139","_from":"35675","_to":"55986"} +{"$label":"DIRECTED","_key":"109068","_from":"35677","_to":"64444"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"56129","_from":"35682","_to":"35678"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"56128","_from":"35681","_to":"35678"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"56127","_from":"35680","_to":"35678"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"56126","_from":"35679","_to":"35678"} +{"$label":"ACTS_IN","name":"Oghris","type":"Role","_key":"106241","_from":"35681","_to":"62582"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102661","_from":"35681","_to":"60399"} +{"$label":"ACTS_IN","name":"Irv Fleischman","type":"Role","_key":"56145","_from":"35689","_to":"35683"} +{"$label":"ACTS_IN","name":"NY Hotel Concierge","type":"Role","_key":"56144","_from":"35688","_to":"35683"} +{"$label":"ACTS_IN","name":"Publishing Executive","type":"Role","_key":"56142","_from":"35687","_to":"35683"} +{"$label":"ACTS_IN","name":"Mrs. O'Flaherty","type":"Role","_key":"56139","_from":"35686","_to":"35683"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"56138","_from":"35685","_to":"35683"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"56137","_from":"35684","_to":"35683"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"92072","_from":"35684","_to":"54329"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"71460","_from":"35684","_to":"43319"} +{"$label":"ACTS_IN","name":"Cyd","type":"Role","_key":"97125","_from":"35687","_to":"57136"} +{"$label":"ACTS_IN","name":"Aunt Jillian","type":"Role","_key":"94771","_from":"35687","_to":"55817"} +{"$label":"ACTS_IN","name":"Dolores Driscoll","type":"Role","_key":"61766","_from":"35687","_to":"38889"} +{"$label":"ACTS_IN","name":"Serokin","type":"Role","_key":"70488","_from":"35688","_to":"42911"} +{"$label":"DIRECTED","_key":"56151","_from":"35693","_to":"35690"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"56150","_from":"35692","_to":"35690"} +{"$label":"ACTS_IN","name":"Rob Dier","type":"Role","_key":"56148","_from":"35691","_to":"35690"} +{"$label":"ACTS_IN","name":"Masucci (as E. Erich Anderson)","type":"Role","_key":"104198","_from":"35691","_to":"61299"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102654","_from":"35691","_to":"60399"} +{"$label":"DIRECTED","_key":"106564","_from":"35693","_to":"62791"} +{"$label":"DIRECTED","_key":"104206","_from":"35693","_to":"61299"} +{"$label":"DIRECTED","_key":"90910","_from":"35693","_to":"53628"} +{"$label":"DIRECTED","_key":"56156","_from":"35698","_to":"35694"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"56154","_from":"35697","_to":"35694"} +{"$label":"ACTS_IN","name":"Nurse Yates","type":"Role","_key":"56153","_from":"35696","_to":"35694"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"56152","_from":"35695","_to":"35694"} +{"$label":"ACTS_IN","name":"Vincent 'Alphabet' Languilli","type":"Role","_key":"64841","_from":"35695","_to":"40337"} +{"$label":"DIRECTED","_key":"101402","_from":"35698","_to":"59681"} +{"$label":"DIRECTED","_key":"56161","_from":"35701","_to":"35699"} +{"$label":"ACTS_IN","name":"Adult Kiara","type":"Role","_key":"56160","_from":"35700","_to":"35699"} +{"$label":"DIRECTED","_key":"88970","_from":"35701","_to":"52708"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"56171","_from":"35706","_to":"35705"} +{"$label":"ACTS_IN","name":"Quincy Burnett","type":"Role","_key":"56202","_from":"35721","_to":"35707"} +{"$label":"ACTS_IN","name":"James Burnett","type":"Role","_key":"56201","_from":"35720","_to":"35707"} +{"$label":"ACTS_IN","name":"Megan Burnett","type":"Role","_key":"56200","_from":"35719","_to":"35707"} +{"$label":"ACTS_IN","name":"Officer Bill O'Fee","type":"Role","_key":"56199","_from":"35718","_to":"35707"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"56198","_from":"35717","_to":"35707"} +{"$label":"ACTS_IN","name":"Women at the box training","type":"Role","_key":"56197","_from":"35716","_to":"35707"} +{"$label":"ACTS_IN","name":"Lois Fields","type":"Role","_key":"56196","_from":"35715","_to":"35707"} +{"$label":"ACTS_IN","name":"Maxie Logan","type":"Role","_key":"56195","_from":"35714","_to":"35707"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"56194","_from":"35713","_to":"35707"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"56192","_from":"35712","_to":"35707"} +{"$label":"ACTS_IN","name":"Kuni","type":"Role","_key":"56189","_from":"35711","_to":"35707"} +{"$label":"ACTS_IN","name":"Eddie Dominguez","type":"Role","_key":"56188","_from":"35710","_to":"35707"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"56187","_from":"35709","_to":"35707"} +{"$label":"ACTS_IN","name":"Ferguson","type":"Role","_key":"56185","_from":"35708","_to":"35707"} +{"$label":"ACTS_IN","name":"Antwone Fisher Age 14","type":"Role","_key":"94465","_from":"35720","_to":"55632"} +{"$label":"DIRECTED","_key":"56216","_from":"35725","_to":"35723"} +{"$label":"ACTS_IN","name":"Dr. Raymond Cocteau","type":"Role","_key":"56214","_from":"35724","_to":"35723"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110864","_from":"35724","_to":"65485"} +{"$label":"ACTS_IN","name":"Martin Van Buren","type":"Role","_key":"72254","_from":"35724","_to":"43655"} +{"$label":"ACTS_IN","name":"George III","type":"Role","_key":"69100","_from":"35724","_to":"42284"} +{"$label":"ACTS_IN","name":"Fflewddur Fflam (voice)","type":"Role","_key":"66965","_from":"35724","_to":"41338"} +{"$label":"DIRECTED","_key":"88807","_from":"35725","_to":"52620"} +{"$label":"DIRECTED","_key":"56237","_from":"35732","_to":"35731"} +{"$label":"DIRECTED","_key":"120673","_from":"35732","_to":"70872"} +{"$label":"DIRECTED","_key":"102492","_from":"35732","_to":"60304"} +{"$label":"DIRECTED","_key":"94767","_from":"35732","_to":"55816"} +{"$label":"DIRECTED","_key":"61278","_from":"35732","_to":"38696"} +{"$label":"ACTS_IN","name":"Dalai Lama (Age 12)","type":"Role","_key":"56242","_from":"35737","_to":"35733"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"56241","_from":"35736","_to":"35733"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"56240","_from":"35735","_to":"35733"} +{"$label":"ACTS_IN","name":"Dalai Lama (Adult)","type":"Role","_key":"56239","_from":"35734","_to":"35733"} +{"$label":"ACTS_IN","name":"Bernard","type":"Role","_key":"56248","_from":"35739","_to":"35738"} +{"$label":"ACTS_IN","name":"Gummy","type":"Role","_key":"56264","_from":"35745","_to":"35740"} +{"$label":"ACTS_IN","name":"Ted Underhill","type":"Role","_key":"56261","_from":"35744","_to":"35740"} +{"$label":"ACTS_IN","name":"Speaker","type":"Role","_key":"56260","_from":"35743","_to":"35740"} +{"$label":"ACTS_IN","name":"Fat Sam","type":"Role","_key":"56258","_from":"35742","_to":"35740"} +{"$label":"ACTS_IN","name":"Gail Stanwyk","type":"Role","_key":"56253","_from":"35741","_to":"35740"} +{"$label":"ACTS_IN","name":"Santa","type":"Role","_key":"105842","_from":"35742","_to":"62306"} +{"$label":"ACTS_IN","name":"Buster","type":"Role","_key":"95938","_from":"35742","_to":"56416"} +{"$label":"ACTS_IN","name":"Harold Gorton","type":"Role","_key":"69721","_from":"35742","_to":"42559"} +{"$label":"ACTS_IN","name":"Keller","type":"Role","_key":"65078","_from":"35742","_to":"40431"} +{"$label":"ACTS_IN","name":"The Cop","type":"Role","_key":"103554","_from":"35743","_to":"60907"} +{"$label":"ACTS_IN","name":"Randy Daytona, jung","type":"Role","_key":"56273","_from":"35749","_to":"35746"} +{"$label":"ACTS_IN","name":"Randy Daytona","type":"Role","_key":"56268","_from":"35748","_to":"35746"} +{"$label":"DIRECTED","_key":"56267","_from":"35747","_to":"35746"} +{"$label":"ACTS_IN","name":"Deputy Travis Junior","type":"Role","_key":"60551","_from":"35747","_to":"38218"} +{"$label":"DIRECTED","_key":"60548","_from":"35747","_to":"38218"} +{"$label":"ACTS_IN","name":"Hutch","type":"Role","_key":"95076","_from":"35748","_to":"55963"} +{"$label":"ACTS_IN","name":"Dr. Stu Kaminsky","type":"Role","_key":"59650","_from":"35748","_to":"37658"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"57413","_from":"35748","_to":"36396"} +{"$label":"ACTS_IN","name":"Mbulelo Jonas","type":"Role","_key":"56284","_from":"35760","_to":"35750"} +{"$label":"ACTS_IN","name":"Xola Putye","type":"Role","_key":"56283","_from":"35759","_to":"35750"} +{"$label":"ACTS_IN","name":"Nolyanda Mquiwana","type":"Role","_key":"56282","_from":"35758","_to":"35750"} +{"$label":"ACTS_IN","name":"Theo Ndindwa","type":"Role","_key":"56281","_from":"35757","_to":"35750"} +{"$label":"ACTS_IN","name":"Nqaba Mafilika","type":"Role","_key":"56280","_from":"35756","_to":"35750"} +{"$label":"ACTS_IN","name":"Zandile Constable","type":"Role","_key":"56279","_from":"35755","_to":"35750"} +{"$label":"ACTS_IN","name":"Phyllis Spira","type":"Role","_key":"56278","_from":"35754","_to":"35750"} +{"$label":"ACTS_IN","name":"Philip Boyd","type":"Role","_key":"56277","_from":"35753","_to":"35750"} +{"$label":"DIRECTED","_key":"56276","_from":"35752","_to":"35750"} +{"$label":"DIRECTED","_key":"56275","_from":"35751","_to":"35750"} +{"$label":"DIRECTED","_key":"56300","_from":"35775","_to":"35761"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"56299","_from":"35774","_to":"35761"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"56298","_from":"35773","_to":"35761"} +{"$label":"ACTS_IN","name":"Ardell","type":"Role","_key":"56297","_from":"35772","_to":"35761"} +{"$label":"ACTS_IN","name":"Godfrey","type":"Role","_key":"56296","_from":"35771","_to":"35761"} +{"$label":"ACTS_IN","name":"Island Girl 2","type":"Role","_key":"56295","_from":"35770","_to":"35761"} +{"$label":"ACTS_IN","name":"Island Girl 1","type":"Role","_key":"56294","_from":"35769","_to":"35761"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"56293","_from":"35768","_to":"35761"} +{"$label":"ACTS_IN","name":"Pepe","type":"Role","_key":"56292","_from":"35767","_to":"35761"} +{"$label":"ACTS_IN","name":"Maggie Richards","type":"Role","_key":"56291","_from":"35766","_to":"35761"} +{"$label":"ACTS_IN","name":"Captain Richards","type":"Role","_key":"56290","_from":"35765","_to":"35761"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"56289","_from":"35764","_to":"35761"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"56288","_from":"35763","_to":"35761"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"56287","_from":"35762","_to":"35761"} +{"$label":"ACTS_IN","name":"Percy the Robot","type":"Role","_key":"61474","_from":"35765","_to":"38771"} +{"$label":"DIRECTED","_key":"64484","_from":"35775","_to":"40178"} +{"$label":"DIRECTED","_key":"61480","_from":"35775","_to":"38771"} +{"$label":"DIRECTED","_key":"57023","_from":"35775","_to":"36181"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"56315","_from":"35783","_to":"35776"} +{"$label":"ACTS_IN","name":"Ravi","type":"Role","_key":"56314","_from":"35782","_to":"35776"} +{"$label":"ACTS_IN","name":"Rich","type":"Role","_key":"56313","_from":"35781","_to":"35776"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"56312","_from":"35780","_to":"35776"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"56311","_from":"35779","_to":"35776"} +{"$label":"ACTS_IN","name":"Bank Employee #1","type":"Role","_key":"56307","_from":"35778","_to":"35776"} +{"$label":"ACTS_IN","name":"Sarah Stanfield","type":"Role","_key":"56304","_from":"35777","_to":"35776"} +{"$label":"ACTS_IN","name":"Melina Bianco","type":"Role","_key":"117288","_from":"35777","_to":"68981"} +{"$label":"ACTS_IN","name":"Grace Bowen","type":"Role","_key":"104949","_from":"35777","_to":"61751"} +{"$label":"ACTS_IN","name":"Jessica Newman","type":"Role","_key":"99075","_from":"35777","_to":"58367"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"93307","_from":"35779","_to":"54964"} +{"$label":"ACTS_IN","name":"Otto Danzig","type":"Role","_key":"117100","_from":"35781","_to":"68902"} +{"$label":"ACTS_IN","name":"Risko","type":"Role","_key":"110848","_from":"35781","_to":"65478"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"102099","_from":"35781","_to":"60066"} +{"$label":"ACTS_IN","name":"Dave Bristol","type":"Role","_key":"101128","_from":"35781","_to":"59583"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"58726","_from":"35781","_to":"37088"} +{"$label":"ACTS_IN","name":"Walt Lawson","type":"Role","_key":"57185","_from":"35781","_to":"36281"} +{"$label":"ACTS_IN","name":"Desi","type":"Role","_key":"59051","_from":"35782","_to":"37275"} +{"$label":"DIRECTED","_key":"56332","_from":"35795","_to":"35784"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"56331","_from":"35794","_to":"35784"} +{"$label":"ACTS_IN","name":"Roman's Mom","type":"Role","_key":"56330","_from":"35793","_to":"35784"} +{"$label":"ACTS_IN","name":"Worm Host Creature","type":"Role","_key":"56329","_from":"35792","_to":"35784"} +{"$label":"ACTS_IN","name":"Ble-Ka","type":"Role","_key":"56328","_from":"35791","_to":"35784"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"56327","_from":"35790","_to":"35784"} +{"$label":"ACTS_IN","name":"Damian's wife (as Carrie-Ann Fleming)","type":"Role","_key":"56326","_from":"35789","_to":"35784"} +{"$label":"ACTS_IN","name":"Officer Brackish","type":"Role","_key":"56325","_from":"35788","_to":"35784"} +{"$label":"ACTS_IN","name":"Phleg","type":"Role","_key":"56324","_from":"35787","_to":"35784"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"56322","_from":"35786","_to":"35784"} +{"$label":"ACTS_IN","name":"Damian","type":"Role","_key":"56318","_from":"35785","_to":"35784"} +{"$label":"ACTS_IN","name":"Matt Wilson","type":"Role","_key":"63046","_from":"35786","_to":"39564"} +{"$label":"ACTS_IN","name":"Detective Soreson","type":"Role","_key":"61926","_from":"35786","_to":"38966"} +{"$label":"ACTS_IN","name":"Castillo","type":"Role","_key":"67617","_from":"35787","_to":"41614"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"116200","_from":"35788","_to":"68420"} +{"$label":"ACTS_IN","name":"Jenifer","type":"Role","_key":"103276","_from":"35789","_to":"60760"} +{"$label":"ACTS_IN","name":"Dirty Talker","type":"Role","_key":"59655","_from":"35789","_to":"37658"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"60327","_from":"35794","_to":"38046"} +{"$label":"DIRECTED","_key":"116197","_from":"35795","_to":"68420"} +{"$label":"DIRECTED","_key":"56348","_from":"35807","_to":"35796"} +{"$label":"ACTS_IN","name":"Bingo Announcer","type":"Role","_key":"56347","_from":"35806","_to":"35796"} +{"$label":"ACTS_IN","name":"Gordon McCloud","type":"Role","_key":"56346","_from":"35805","_to":"35796"} +{"$label":"ACTS_IN","name":"Kate McCulloch (as Nichola B)","type":"Role","_key":"56345","_from":"35804","_to":"35796"} +{"$label":"ACTS_IN","name":"Gaelic Speaking Woman","type":"Role","_key":"56344","_from":"35803","_to":"35796"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"56343","_from":"35802","_to":"35796"} +{"$label":"ACTS_IN","name":"Reverend James McMahon (as Michael Wilson)","type":"Role","_key":"56342","_from":"35801","_to":"35796"} +{"$label":"ACTS_IN","name":"Mary Murray","type":"Role","_key":"56339","_from":"35800","_to":"35796"} +{"$label":"ACTS_IN","name":"Dr. Robert Freedman","type":"Role","_key":"56337","_from":"35799","_to":"35796"} +{"$label":"ACTS_IN","name":"Sharon Winton","type":"Role","_key":"56336","_from":"35798","_to":"35796"} +{"$label":"ACTS_IN","name":"Thomas Carlson (as Beans Balawi)","type":"Role","_key":"56335","_from":"35797","_to":"35796"} +{"$label":"DIRECTED","_key":"56364","_from":"35816","_to":"35808"} +{"$label":"ACTS_IN","name":"Mrs. Ling Ling Wong","type":"Role","_key":"56362","_from":"35815","_to":"35808"} +{"$label":"ACTS_IN","name":"Mrs. Coleman","type":"Role","_key":"56359","_from":"35814","_to":"35808"} +{"$label":"ACTS_IN","name":"Mrs. Henderson","type":"Role","_key":"56358","_from":"35813","_to":"35808"} +{"$label":"ACTS_IN","name":"Abe the Tailor","type":"Role","_key":"56356","_from":"35812","_to":"35808"} +{"$label":"ACTS_IN","name":"Lord Have Mercy","type":"Role","_key":"56355","_from":"35811","_to":"35808"} +{"$label":"ACTS_IN","name":"Blue Latimore (as Lester 'Rasta' Speight)","type":"Role","_key":"56353","_from":"35810","_to":"35808"} +{"$label":"ACTS_IN","name":"Earl Latimore","type":"Role","_key":"56352","_from":"35809","_to":"35808"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105557","_from":"35809","_to":"62117"} +{"$label":"ACTS_IN","name":"Sgt. Benjamn Dalton","type":"Role","_key":"100270","_from":"35809","_to":"59133"} +{"$label":"ACTS_IN","name":"Officer Eddie King","type":"Role","_key":"100189","_from":"35809","_to":"59094"} +{"$label":"ACTS_IN","name":"Jeremiah Peet","type":"Role","_key":"69512","_from":"35809","_to":"42463"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"63526","_from":"35809","_to":"39764"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"63222","_from":"35809","_to":"39644"} +{"$label":"DIRECTED","_key":"105555","_from":"35809","_to":"62117"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100605","_from":"35811","_to":"59324"} +{"$label":"ACTS_IN","name":"Rickey","type":"Role","_key":"100181","_from":"35811","_to":"59094"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94766","_from":"35811","_to":"55816"} +{"$label":"ACTS_IN","name":"Money Mike","type":"Role","_key":"63225","_from":"35811","_to":"39644"} +{"$label":"DIRECTED","_key":"101888","_from":"35816","_to":"59966"} +{"$label":"DIRECTED","_key":"101505","_from":"35816","_to":"59741"} +{"$label":"DIRECTED","_key":"68846","_from":"35816","_to":"42177"} +{"$label":"DIRECTED","_key":"60175","_from":"35816","_to":"37970"} +{"$label":"ACTS_IN","name":"Dana Bayback","type":"Role","_key":"56379","_from":"35828","_to":"35817"} +{"$label":"ACTS_IN","name":"Aging Security Guard","type":"Role","_key":"56378","_from":"35827","_to":"35817"} +{"$label":"ACTS_IN","name":"Young Guard","type":"Role","_key":"56377","_from":"35826","_to":"35817"} +{"$label":"ACTS_IN","name":"Porsche Girl","type":"Role","_key":"56376","_from":"35825","_to":"35817"} +{"$label":"ACTS_IN","name":"Girl at Concert","type":"Role","_key":"56375","_from":"35824","_to":"35817"} +{"$label":"ACTS_IN","name":"Excitable Customer","type":"Role","_key":"56373","_from":"35823","_to":"35817"} +{"$label":"ACTS_IN","name":"Chloe's Chilly Friend","type":"Role","_key":"56372","_from":"35822","_to":"35817"} +{"$label":"ACTS_IN","name":"Surf Girl's Friend","type":"Role","_key":"56371","_from":"35821","_to":"35817"} +{"$label":"ACTS_IN","name":"Timid Boy","type":"Role","_key":"56370","_from":"35820","_to":"35817"} +{"$label":"ACTS_IN","name":"Young Security Guard","type":"Role","_key":"56368","_from":"35819","_to":"35817"} +{"$label":"ACTS_IN","name":"Irate Customer #1","type":"Role","_key":"56366","_from":"35818","_to":"35817"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"99225","_from":"35827","_to":"58470"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"116834","_from":"35828","_to":"68777"} +{"$label":"ACTS_IN","name":"Hermoine","type":"Role","_key":"56398","_from":"35837","_to":"35829"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"56397","_from":"35836","_to":"35829"} +{"$label":"ACTS_IN","name":"Harry Potter","type":"Role","_key":"56396","_from":"35835","_to":"35829"} +{"$label":"ACTS_IN","name":"Captain Jack Swallows","type":"Role","_key":"56392","_from":"35834","_to":"35829"} +{"$label":"ACTS_IN","name":"Mr. Tumnus","type":"Role","_key":"56391","_from":"35833","_to":"35829"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"56388","_from":"35832","_to":"35829"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"56387","_from":"35831","_to":"35829"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"56385","_from":"35830","_to":"35829"} +{"$label":"ACTS_IN","name":"Grant Funkyerdoder","type":"Role","_key":"60273","_from":"35830","_to":"38015"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"104827","_from":"35831","_to":"61678"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"100818","_from":"35831","_to":"59439"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"69995","_from":"35831","_to":"42693"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"90142","_from":"35832","_to":"53302"} +{"$label":"ACTS_IN","name":"Dr. Dwayne","type":"Role","_key":"113757","_from":"35834","_to":"67033"} +{"$label":"ACTS_IN","name":"Dr. Chris Cooper \/ Doreen \/ Chris' dad \/ Lacey","type":"Role","_key":"116071","_from":"35835","_to":"68352"} +{"$label":"ACTS_IN","name":"Pleakley","type":"Role","_key":"104946","_from":"35835","_to":"61750"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96774","_from":"35837","_to":"56920"} +{"$label":"DIRECTED","_key":"56403","_from":"35839","_to":"35838"} +{"$label":"ACTS_IN","name":"Mac's Mother (as Carlyncia Peck)","type":"Role","_key":"56418","_from":"35851","_to":"35840"} +{"$label":"ACTS_IN","name":"Bill Freeman","type":"Role","_key":"56417","_from":"35850","_to":"35840"} +{"$label":"ACTS_IN","name":"Lena Freeman","type":"Role","_key":"56416","_from":"35849","_to":"35840"} +{"$label":"ACTS_IN","name":"Nora's Mom \/ Katherine Clark","type":"Role","_key":"56415","_from":"35848","_to":"35840"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"56413","_from":"35847","_to":"35840"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"56412","_from":"35846","_to":"35840"} +{"$label":"ACTS_IN","name":"Brett Dolan","type":"Role","_key":"56411","_from":"35845","_to":"35840"} +{"$label":"ACTS_IN","name":"Lucy Avila","type":"Role","_key":"56409","_from":"35844","_to":"35840"} +{"$label":"ACTS_IN","name":"Miles Darby","type":"Role","_key":"56408","_from":"35843","_to":"35840"} +{"$label":"ACTS_IN","name":"Skinny Carter","type":"Role","_key":"56407","_from":"35842","_to":"35840"} +{"$label":"ACTS_IN","name":"Mac Carter","type":"Role","_key":"56406","_from":"35841","_to":"35840"} +{"$label":"ACTS_IN","name":"Willie 'Scoops' Cager","type":"Role","_key":"58052","_from":"35841","_to":"36729"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"102199","_from":"35844","_to":"60140"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"97174","_from":"35845","_to":"57155"} +{"$label":"ACTS_IN","name":"Caitlyn Geller","type":"Role","_key":"95734","_from":"35847","_to":"56306"} +{"$label":"ACTS_IN","name":"Sarah Baker","type":"Role","_key":"67246","_from":"35847","_to":"41460"} +{"$label":"ACTS_IN","name":"Detective Tylar","type":"Role","_key":"121442","_from":"35848","_to":"71342"} +{"$label":"ACTS_IN","name":"Miss McNally","type":"Role","_key":"60588","_from":"35849","_to":"38237"} +{"$label":"ACTS_IN","name":"Jamie Drew","type":"Role","_key":"56434","_from":"35856","_to":"35852"} +{"$label":"ACTS_IN","name":"Rory","type":"Role","_key":"56432","_from":"35855","_to":"35852"} +{"$label":"ACTS_IN","name":"Val","type":"Role","_key":"56430","_from":"35854","_to":"35852"} +{"$label":"ACTS_IN","name":"Santiago Munez","type":"Role","_key":"56420","_from":"35853","_to":"35852"} +{"$label":"ACTS_IN","name":"Mansur","type":"Role","_key":"120226","_from":"35853","_to":"70601"} +{"$label":"ACTS_IN","name":"Santiago Munez","type":"Role","_key":"118870","_from":"35853","_to":"69865"} +{"$label":"ACTS_IN","name":"Ellis","type":"Role","_key":"102966","_from":"35853","_to":"60564"} +{"$label":"ACTS_IN","name":"Santiago Mu\u00f1ez","type":"Role","_key":"57072","_from":"35853","_to":"36223"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56446","_from":"35867","_to":"35857"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56445","_from":"35866","_to":"35857"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"56444","_from":"35865","_to":"35857"} +{"$label":"ACTS_IN","name":"(as M. Bychkov)","type":"Role","_key":"56443","_from":"35864","_to":"35857"} +{"$label":"ACTS_IN","name":"Turtwigin","type":"Role","_key":"56441","_from":"35863","_to":"35857"} +{"$label":"ACTS_IN","name":"Jan Bao","type":"Role","_key":"56440","_from":"35862","_to":"35857"} +{"$label":"ACTS_IN","name":"Wowa son of Arsenjev","type":"Role","_key":"56439","_from":"35861","_to":"35857"} +{"$label":"ACTS_IN","name":"Mrs. Arseniev","type":"Role","_key":"56438","_from":"35860","_to":"35857"} +{"$label":"ACTS_IN","name":"Captain Vladimir Arseniev","type":"Role","_key":"56437","_from":"35859","_to":"35857"} +{"$label":"ACTS_IN","name":"Dersu Uzala","type":"Role","_key":"56436","_from":"35858","_to":"35857"} +{"$label":"ACTS_IN","name":"Tamy","type":"Role","_key":"56450","_from":"35869","_to":"35868"} +{"$label":"ACTS_IN","name":"Jamal Evans","type":"Role","_key":"56467","_from":"35879","_to":"35870"} +{"$label":"ACTS_IN","name":"Roger Weathers","type":"Role","_key":"56466","_from":"35878","_to":"35870"} +{"$label":"ACTS_IN","name":"Danyelle Rollins","type":"Role","_key":"56465","_from":"35877","_to":"35870"} +{"$label":"ACTS_IN","name":"Kenny Bates","type":"Role","_key":"56463","_from":"35876","_to":"35870"} +{"$label":"ACTS_IN","name":"Donald Madlock (as James Earl III)","type":"Role","_key":"56462","_from":"35875","_to":"35870"} +{"$label":"ACTS_IN","name":"Leon Hayes","type":"Role","_key":"56461","_from":"35874","_to":"35870"} +{"$label":"ACTS_IN","name":"Junior Palaita","type":"Role","_key":"56460","_from":"35873","_to":"35870"} +{"$label":"ACTS_IN","name":"Kelvin Owens (as David Thomas)","type":"Role","_key":"56459","_from":"35872","_to":"35870"} +{"$label":"ACTS_IN","name":"Willie Weathers","type":"Role","_key":"56458","_from":"35871","_to":"35870"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"104213","_from":"35871","_to":"61310"} +{"$label":"ACTS_IN","name":"Tori","type":"Role","_key":"100723","_from":"35877","_to":"59387"} +{"$label":"ACTS_IN","name":"Samantha Booke","type":"Role","_key":"98266","_from":"35877","_to":"57887"} +{"$label":"ACTS_IN","name":"Tye","type":"Role","_key":"59333","_from":"35878","_to":"37480"} +{"$label":"ACTS_IN","name":"Mrs. Grobowski","type":"Role","_key":"56483","_from":"35883","_to":"35880"} +{"$label":"ACTS_IN","name":"Carol Grobowski","type":"Role","_key":"56482","_from":"35882","_to":"35880"} +{"$label":"ACTS_IN","name":"Howard Meyers","type":"Role","_key":"56480","_from":"35881","_to":"35880"} +{"$label":"ACTS_IN","name":"Woman Victim","type":"Role","_key":"95579","_from":"35883","_to":"56195"} +{"$label":"ACTS_IN","name":"Pepper Walker","type":"Role","_key":"56491","_from":"35886","_to":"35884"} +{"$label":"ACTS_IN","name":"Wanda Woodward","type":"Role","_key":"56489","_from":"35885","_to":"35884"} +{"$label":"ACTS_IN","name":"Gina Conte","type":"Role","_key":"106927","_from":"35885","_to":"63044"} +{"$label":"ACTS_IN","name":"Bubbles","type":"Role","_key":"62777","_from":"35885","_to":"39457"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"115382","_from":"35886","_to":"67939"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"113778","_from":"35886","_to":"67043"} +{"$label":"ACTS_IN","name":"Libby","type":"Role","_key":"98991","_from":"35886","_to":"58316"} +{"$label":"ACTS_IN","name":"Misty Sutphin","type":"Role","_key":"70947","_from":"35886","_to":"43099"} +{"$label":"DIRECTED","_key":"56507","_from":"35890","_to":"35889"} +{"$label":"DIRECTED","_key":"56567","_from":"35928","_to":"35892"} +{"$label":"ACTS_IN","name":"Worker at Gary's Office","type":"Role","_key":"56565","_from":"35927","_to":"35892"} +{"$label":"ACTS_IN","name":"Flight Attendant","type":"Role","_key":"56564","_from":"35926","_to":"35892"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"56562","_from":"35925","_to":"35892"} +{"$label":"ACTS_IN","name":"Seller","type":"Role","_key":"56561","_from":"35924","_to":"35892"} +{"$label":"ACTS_IN","name":"UFO Enthusiast","type":"Role","_key":"56559","_from":"35923","_to":"35892"} +{"$label":"ACTS_IN","name":"Geek Girl","type":"Role","_key":"56558","_from":"35922","_to":"35892"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"56557","_from":"35921","_to":"35892"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"56556","_from":"35920","_to":"35892"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"56555","_from":"35919","_to":"35892"} +{"$label":"ACTS_IN","name":"NY host","type":"Role","_key":"56553","_from":"35918","_to":"35892"} +{"$label":"ACTS_IN","name":"Stewardess - Mexicana","type":"Role","_key":"56552","_from":"35917","_to":"35892"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"56551","_from":"35916","_to":"35892"} +{"$label":"ACTS_IN","name":"Peruvian TV Host","type":"Role","_key":"56550","_from":"35915","_to":"35892"} +{"$label":"ACTS_IN","name":"Amber Fuentes","type":"Role","_key":"56549","_from":"35914","_to":"35892"} +{"$label":"ACTS_IN","name":"Stewardess - Argentina","type":"Role","_key":"56548","_from":"35913","_to":"35892"} +{"$label":"ACTS_IN","name":"TV News Anchor","type":"Role","_key":"56545","_from":"35912","_to":"35892"} +{"$label":"ACTS_IN","name":"Mr. Gonzalez","type":"Role","_key":"56541","_from":"35911","_to":"35892"} +{"$label":"ACTS_IN","name":"French TV Buyer","type":"Role","_key":"56540","_from":"35910","_to":"35892"} +{"$label":"ACTS_IN","name":"Pentagon Officer","type":"Role","_key":"56538","_from":"35909","_to":"35892"} +{"$label":"ACTS_IN","name":"Museum Director","type":"Role","_key":"56537","_from":"35908","_to":"35892"} +{"$label":"ACTS_IN","name":"Doreen","type":"Role","_key":"56536","_from":"35907","_to":"35892"} +{"$label":"ACTS_IN","name":"Preston","type":"Role","_key":"56535","_from":"35906","_to":"35892"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"56534","_from":"35905","_to":"35892"} +{"$label":"ACTS_IN","name":"Aunty P","type":"Role","_key":"56533","_from":"35904","_to":"35892"} +{"$label":"ACTS_IN","name":"Young Harvey","type":"Role","_key":"56532","_from":"35903","_to":"35892"} +{"$label":"ACTS_IN","name":"Zachary","type":"Role","_key":"56531","_from":"35902","_to":"35892"} +{"$label":"ACTS_IN","name":"Gary's Boss","type":"Role","_key":"56530","_from":"35901","_to":"35892"} +{"$label":"ACTS_IN","name":"Trading Standards Officer","type":"Role","_key":"56529","_from":"35900","_to":"35892"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"56527","_from":"35899","_to":"35892"} +{"$label":"ACTS_IN","name":"Nan","type":"Role","_key":"56526","_from":"35898","_to":"35892"} +{"$label":"ACTS_IN","name":"Camera Team","type":"Role","_key":"56524","_from":"35897","_to":"35892"} +{"$label":"ACTS_IN","name":"Camera Team","type":"Role","_key":"56523","_from":"35896","_to":"35892"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"56520","_from":"35895","_to":"35892"} +{"$label":"ACTS_IN","name":"Gary Shoefield","type":"Role","_key":"56517","_from":"35894","_to":"35892"} +{"$label":"ACTS_IN","name":"Ray Santilli","type":"Role","_key":"56516","_from":"35893","_to":"35892"} +{"$label":"ACTS_IN","name":"Professor Hieronymous Grost","type":"Role","_key":"118333","_from":"35899","_to":"69559"} +{"$label":"ACTS_IN","name":"Waverley","type":"Role","_key":"114502","_from":"35899","_to":"67443"} +{"$label":"ACTS_IN","name":"Arnold Pepperell","type":"Role","_key":"107893","_from":"35899","_to":"63713"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"119180","_from":"35900","_to":"70033"} +{"$label":"ACTS_IN","name":"Fat Alan","type":"Role","_key":"114615","_from":"35900","_to":"67516"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"102499","_from":"35900","_to":"60305"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120241","_from":"35901","_to":"70610"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116777","_from":"35901","_to":"68744"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104388","_from":"35901","_to":"61408"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104153","_from":"35901","_to":"61277"} +{"$label":"ACTS_IN","name":"Antony","type":"Role","_key":"60842","_from":"35901","_to":"38430"} +{"$label":"ACTS_IN","name":"John Crawford","type":"Role","_key":"58894","_from":"35901","_to":"37189"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"59884","_from":"35914","_to":"37818"} +{"$label":"DIRECTED","_key":"56583","_from":"35942","_to":"35929"} +{"$label":"ACTS_IN","name":"Smiling PNG Stretcher Bearer","type":"Role","_key":"56582","_from":"35941","_to":"35929"} +{"$label":"ACTS_IN","name":"Wounded Man","type":"Role","_key":"56581","_from":"35940","_to":"35929"} +{"$label":"ACTS_IN","name":"Soldier - Forward Position","type":"Role","_key":"56580","_from":"35939","_to":"35929"} +{"$label":"ACTS_IN","name":"The Colonel","type":"Role","_key":"56579","_from":"35938","_to":"35929"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"56578","_from":"35937","_to":"35929"} +{"$label":"ACTS_IN","name":"The Lieutenant","type":"Role","_key":"56577","_from":"35936","_to":"35929"} +{"$label":"ACTS_IN","name":"Wilstead","type":"Role","_key":"56576","_from":"35935","_to":"35929"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"56575","_from":"35934","_to":"35929"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"56574","_from":"35933","_to":"35929"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"56573","_from":"35932","_to":"35929"} +{"$label":"ACTS_IN","name":"Darko","type":"Role","_key":"56569","_from":"35931","_to":"35929"} +{"$label":"ACTS_IN","name":"Jack Scholt","type":"Role","_key":"56568","_from":"35930","_to":"35929"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"111300","_from":"35931","_to":"65730"} +{"$label":"ACTS_IN","name":"The Tall Thug","type":"Role","_key":"96691","_from":"35932","_to":"56874"} +{"$label":"ACTS_IN","name":"Ugly Dave Gray","type":"Role","_key":"97447","_from":"35933","_to":"57379"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"107552","_from":"35938","_to":"63475"} +{"$label":"DIRECTED","_key":"56599","_from":"35957","_to":"35943"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"56598","_from":"35956","_to":"35943"} +{"$label":"ACTS_IN","name":"Imanol","type":"Role","_key":"56597","_from":"35955","_to":"35943"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"56596","_from":"35954","_to":"35943"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"56594","_from":"35953","_to":"35943"} +{"$label":"ACTS_IN","name":"Luc\u00eda","type":"Role","_key":"56593","_from":"35952","_to":"35943"} +{"$label":"ACTS_IN","name":"Yuta","type":"Role","_key":"56592","_from":"35951","_to":"35943"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"56591","_from":"35950","_to":"35943"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"56590","_from":"35949","_to":"35943"} +{"$label":"ACTS_IN","name":"Imanol","type":"Role","_key":"56589","_from":"35948","_to":"35943"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"56588","_from":"35947","_to":"35943"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"56587","_from":"35946","_to":"35943"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"56586","_from":"35945","_to":"35943"} +{"$label":"ACTS_IN","name":"Alfredo","type":"Role","_key":"56584","_from":"35944","_to":"35943"} +{"$label":"ACTS_IN","name":"Nino Belvedere","type":"Role","_key":"120152","_from":"35951","_to":"70569"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"56619","_from":"35968","_to":"35958"} +{"$label":"ACTS_IN","name":"Mr. Hawkins","type":"Role","_key":"56618","_from":"35967","_to":"35958"} +{"$label":"ACTS_IN","name":"Gen. Olson James","type":"Role","_key":"56617","_from":"35966","_to":"35958"} +{"$label":"ACTS_IN","name":"Gaines","type":"Role","_key":"56616","_from":"35965","_to":"35958"} +{"$label":"ACTS_IN","name":"Nate's girl","type":"Role","_key":"56615","_from":"35964","_to":"35958"} +{"$label":"ACTS_IN","name":"Nate's girl","type":"Role","_key":"56614","_from":"35963","_to":"35958"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"56613","_from":"35962","_to":"35958"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"56610","_from":"35961","_to":"35958"} +{"$label":"ACTS_IN","name":"Lisa Clark","type":"Role","_key":"56606","_from":"35960","_to":"35958"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"56605","_from":"35959","_to":"35958"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"104450","_from":"35959","_to":"61433"} +{"$label":"ACTS_IN","name":"Jacqueline 'Jackie \/ Jack' Broyer","type":"Role","_key":"67658","_from":"35959","_to":"41628"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"107614","_from":"35960","_to":"63522"} +{"$label":"ACTS_IN","name":"Girlfriend #2","type":"Role","_key":"102865","_from":"35960","_to":"60510"} +{"$label":"ACTS_IN","name":"Kim Hinton","type":"Role","_key":"98727","_from":"35960","_to":"58185"} +{"$label":"ACTS_IN","name":"Laura Leeton","type":"Role","_key":"96687","_from":"35960","_to":"56865"} +{"$label":"ACTS_IN","name":"Janiece","type":"Role","_key":"67213","_from":"35960","_to":"41452"} +{"$label":"ACTS_IN","name":"D'wana","type":"Role","_key":"63524","_from":"35960","_to":"39764"} +{"$label":"ACTS_IN","name":"Kia","type":"Role","_key":"59158","_from":"35960","_to":"37349"} +{"$label":"ACTS_IN","name":"University Friend","type":"Role","_key":"56634","_from":"35976","_to":"35969"} +{"$label":"ACTS_IN","name":"University Friend","type":"Role","_key":"56632","_from":"35975","_to":"35969"} +{"$label":"ACTS_IN","name":"Band Vocalist","type":"Role","_key":"56631","_from":"35974","_to":"35969"} +{"$label":"ACTS_IN","name":"Friend at Party","type":"Role","_key":"56629","_from":"35973","_to":"35969"} +{"$label":"ACTS_IN","name":"Friend at Party","type":"Role","_key":"56628","_from":"35972","_to":"35969"} +{"$label":"ACTS_IN","name":"Limo Driver","type":"Role","_key":"56626","_from":"35971","_to":"35969"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"56624","_from":"35970","_to":"35969"} +{"$label":"ACTS_IN","name":"Officer Greguski","type":"Role","_key":"60149","_from":"35970","_to":"37948"} +{"$label":"ACTS_IN","name":"Louis Trager","type":"Role","_key":"56650","_from":"35986","_to":"35977"} +{"$label":"ACTS_IN","name":"Courtney Kansky","type":"Role","_key":"56649","_from":"35985","_to":"35977"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"56646","_from":"35984","_to":"35977"} +{"$label":"ACTS_IN","name":"Host at Serendipity","type":"Role","_key":"56644","_from":"35983","_to":"35977"} +{"$label":"ACTS_IN","name":"Bloomingdale's Saleswoman #2","type":"Role","_key":"56643","_from":"35982","_to":"35977"} +{"$label":"ACTS_IN","name":"Bloomingdale's Saleswoman #1","type":"Role","_key":"56642","_from":"35981","_to":"35977"} +{"$label":"ACTS_IN","name":"Customer at Bloomingdale's","type":"Role","_key":"56641","_from":"35980","_to":"35977"} +{"$label":"ACTS_IN","name":"Customer at Bloomingdale's","type":"Role","_key":"56640","_from":"35979","_to":"35977"} +{"$label":"ACTS_IN","name":"Bloomingdale's Stock Girl","type":"Role","_key":"56639","_from":"35978","_to":"35977"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"109346","_from":"35985","_to":"64596"} +{"$label":"ACTS_IN","name":"Officer Hayward","type":"Role","_key":"70632","_from":"35986","_to":"42977"} +{"$label":"ACTS_IN","name":"Bridget's Mother","type":"Role","_key":"56672","_from":"35998","_to":"35987"} +{"$label":"ACTS_IN","name":"Bridget's Father","type":"Role","_key":"56671","_from":"35997","_to":"35987"} +{"$label":"ACTS_IN","name":"Lena's Mother","type":"Role","_key":"56669","_from":"35996","_to":"35987"} +{"$label":"ACTS_IN","name":"Krista Rodman","type":"Role","_key":"56668","_from":"35995","_to":"35987"} +{"$label":"ACTS_IN","name":"Soccer Pal Diana","type":"Role","_key":"56667","_from":"35994","_to":"35987"} +{"$label":"ACTS_IN","name":"Papou","type":"Role","_key":"56665","_from":"35993","_to":"35987"} +{"$label":"ACTS_IN","name":"Yia Yia","type":"Role","_key":"56664","_from":"35992","_to":"35987"} +{"$label":"ACTS_IN","name":"Kostas","type":"Role","_key":"56662","_from":"35991","_to":"35987"} +{"$label":"ACTS_IN","name":"Bailey","type":"Role","_key":"56657","_from":"35990","_to":"35987"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"56656","_from":"35989","_to":"35987"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"56655","_from":"35988","_to":"35987"} +{"$label":"ACTS_IN","name":"Fawn","type":"Role","_key":"93206","_from":"35988","_to":"54917"} +{"$label":"ACTS_IN","name":"Blanca","type":"Role","_key":"89495","_from":"35988","_to":"52985"} +{"$label":"ACTS_IN","name":"Astrid","type":"Role","_key":"61573","_from":"35988","_to":"38816"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"61537","_from":"35988","_to":"38801"} +{"$label":"ACTS_IN","name":"Anabelle","type":"Role","_key":"120362","_from":"35989","_to":"70708"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"61538","_from":"35989","_to":"38801"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"56807","_from":"35989","_to":"36070"} +{"$label":"ACTS_IN","name":"Sally Finney","type":"Role","_key":"96461","_from":"35990","_to":"56725"} +{"$label":"ACTS_IN","name":"Dot Gilkeson","type":"Role","_key":"88297","_from":"35990","_to":"52369"} +{"$label":"ACTS_IN","name":"Detective Nelson","type":"Role","_key":"93035","_from":"35997","_to":"54849"} +{"$label":"ACTS_IN","name":"Foreman","type":"Role","_key":"67135","_from":"35997","_to":"41425"} +{"$label":"ACTS_IN","name":"Deena Burnett","type":"Role","_key":"66970","_from":"35998","_to":"41341"} +{"$label":"DIRECTED","_key":"56694","_from":"36012","_to":"35999"} +{"$label":"ACTS_IN","name":"Study Hall Teacher","type":"Role","_key":"56693","_from":"36011","_to":"35999"} +{"$label":"ACTS_IN","name":"Chongo","type":"Role","_key":"56692","_from":"36010","_to":"35999"} +{"$label":"ACTS_IN","name":"Little Kid","type":"Role","_key":"56691","_from":"36009","_to":"35999"} +{"$label":"ACTS_IN","name":"Father Phillip McNulty","type":"Role","_key":"56690","_from":"36008","_to":"35999"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"56689","_from":"36007","_to":"35999"} +{"$label":"ACTS_IN","name":"Detroit Priest","type":"Role","_key":"56687","_from":"36006","_to":"35999"} +{"$label":"ACTS_IN","name":"Mrs. Stewart Bumsteen","type":"Role","_key":"56686","_from":"36005","_to":"35999"} +{"$label":"ACTS_IN","name":"Mr. Stewart Bumsteen","type":"Role","_key":"56685","_from":"36004","_to":"35999"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"56684","_from":"36003","_to":"35999"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"56683","_from":"36002","_to":"35999"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"56682","_from":"36001","_to":"35999"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"56681","_from":"36000","_to":"35999"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"119257","_from":"36002","_to":"70070"} +{"$label":"ACTS_IN","name":"Jordy","type":"Role","_key":"111088","_from":"36002","_to":"65620"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"109310","_from":"36002","_to":"64573"} +{"$label":"ACTS_IN","name":"Revetta Chess","type":"Role","_key":"99520","_from":"36002","_to":"58668"} +{"$label":"ACTS_IN","name":"Morela Sterlinfg","type":"Role","_key":"95914","_from":"36002","_to":"56401"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"94260","_from":"36002","_to":"55508"} +{"$label":"ACTS_IN","name":"Dalia","type":"Role","_key":"64894","_from":"36002","_to":"40353"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"59743","_from":"36002","_to":"37723"} +{"$label":"ACTS_IN","name":"Carly","type":"Role","_key":"57780","_from":"36002","_to":"36576"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"100644","_from":"36007","_to":"59344"} +{"$label":"ACTS_IN","name":"Jeb, the Goat","type":"Role","_key":"95973","_from":"36008","_to":"56425"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"93126","_from":"36008","_to":"54874"} +{"$label":"ACTS_IN","name":"Vic DeRubis","type":"Role","_key":"88900","_from":"36008","_to":"52665"} +{"$label":"ACTS_IN","name":"Lawyer","type":"Role","_key":"72234","_from":"36008","_to":"43646"} +{"$label":"ACTS_IN","name":"Marion Walker","type":"Role","_key":"98056","_from":"36011","_to":"57732"} +{"$label":"ACTS_IN","name":"Laura Shepard","type":"Role","_key":"64077","_from":"36011","_to":"39986"} +{"$label":"DIRECTED","_key":"101250","_from":"36012","_to":"59626"} +{"$label":"DIRECTED","_key":"65100","_from":"36012","_to":"40441"} +{"$label":"ACTS_IN","name":"Ishbo","type":"Role","_key":"101242","_from":"36012","_to":"59626"} +{"$label":"DIRECTED","_key":"56710","_from":"36021","_to":"36013"} +{"$label":"ACTS_IN","name":"Hospital Security Guard","type":"Role","_key":"56709","_from":"36020","_to":"36013"} +{"$label":"ACTS_IN","name":"Mail Clerk","type":"Role","_key":"56707","_from":"36019","_to":"36013"} +{"$label":"ACTS_IN","name":"Flight Attendant","type":"Role","_key":"56706","_from":"36018","_to":"36013"} +{"$label":"ACTS_IN","name":"Pant Suited Woman","type":"Role","_key":"56705","_from":"36017","_to":"36013"} +{"$label":"ACTS_IN","name":"Female Neighbor","type":"Role","_key":"56704","_from":"36016","_to":"36013"} +{"$label":"ACTS_IN","name":"Darlie Noone","type":"Role","_key":"56703","_from":"36015","_to":"36013"} +{"$label":"ACTS_IN","name":"Young Man at Party","type":"Role","_key":"56701","_from":"36014","_to":"36013"} +{"$label":"DIRECTED","_key":"56731","_from":"36040","_to":"36022"} +{"$label":"ACTS_IN","name":"Gisella","type":"Role","_key":"56729","_from":"36039","_to":"36022"} +{"$label":"ACTS_IN","name":"Lichterhand","type":"Role","_key":"56728","_from":"36038","_to":"36022"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"56727","_from":"36037","_to":"36022"} +{"$label":"ACTS_IN","name":"Young Quecha Indian Girl","type":"Role","_key":"56726","_from":"36036","_to":"36022"} +{"$label":"ACTS_IN","name":"Rayven","type":"Role","_key":"56725","_from":"36035","_to":"36022"} +{"$label":"ACTS_IN","name":"Ira","type":"Role","_key":"56724","_from":"36034","_to":"36022"} +{"$label":"ACTS_IN","name":"Frank \/ PVS Host","type":"Role","_key":"56723","_from":"36033","_to":"36022"} +{"$label":"ACTS_IN","name":"The Face","type":"Role","_key":"56721","_from":"36032","_to":"36022"} +{"$label":"ACTS_IN","name":"The Bald Man","type":"Role","_key":"56720","_from":"36031","_to":"36022"} +{"$label":"ACTS_IN","name":"Ned","type":"Role","_key":"56719","_from":"36030","_to":"36022"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"56718","_from":"36029","_to":"36022"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"56717","_from":"36028","_to":"36022"} +{"$label":"ACTS_IN","name":"George Grieves","type":"Role","_key":"56715","_from":"36027","_to":"36022"} +{"$label":"ACTS_IN","name":"Friar Lazaro Mate","type":"Role","_key":"56714","_from":"36026","_to":"36022"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"56713","_from":"36025","_to":"36022"} +{"$label":"ACTS_IN","name":"Dr. Sharazi","type":"Role","_key":"56712","_from":"36024","_to":"36022"} +{"$label":"ACTS_IN","name":"P.J.","type":"Role","_key":"56711","_from":"36023","_to":"36022"} +{"$label":"ACTS_IN","name":"Binky","type":"Role","_key":"94853","_from":"36025","_to":"55853"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"120016","_from":"36026","_to":"70480"} +{"$label":"ACTS_IN","name":"Barry Bergman","type":"Role","_key":"111429","_from":"36027","_to":"65795"} +{"$label":"ACTS_IN","name":"Val Duncan","type":"Role","_key":"110327","_from":"36027","_to":"65196"} +{"$label":"ACTS_IN","name":"Eric McNally","type":"Role","_key":"108299","_from":"36027","_to":"64012"} +{"$label":"ACTS_IN","name":"Sam Baldwin","type":"Role","_key":"102033","_from":"36027","_to":"60031"} +{"$label":"ACTS_IN","name":"Alexis","type":"Role","_key":"101613","_from":"36028","_to":"59810"} +{"$label":"ACTS_IN","name":"Colin Gray","type":"Role","_key":"121700","_from":"36030","_to":"71494"} +{"$label":"ACTS_IN","name":"Matt Campbell","type":"Role","_key":"117471","_from":"36030","_to":"69081"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"93435","_from":"36030","_to":"55017"} +{"$label":"ACTS_IN","name":"Patrick Highsmith","type":"Role","_key":"117418","_from":"36033","_to":"69060"} +{"$label":"ACTS_IN","name":"Father Lyle Dey","type":"Role","_key":"106926","_from":"36033","_to":"63044"} +{"$label":"ACTS_IN","name":"Dan Lynch","type":"Role","_key":"99831","_from":"36033","_to":"58883"} +{"$label":"ACTS_IN","name":"Man in Black \/ Guido \/ Man \/ Youth 3","type":"Role","_key":"97192","_from":"36033","_to":"57172"} +{"$label":"ACTS_IN","name":"Bryan MacKenzie","type":"Role","_key":"72343","_from":"36033","_to":"43689"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"104350","_from":"36037","_to":"61389"} +{"$label":"DIRECTED","_key":"104822","_from":"36040","_to":"61674"} +{"$label":"ACTS_IN","name":"Barbara Giamoro","type":"Role","_key":"56744","_from":"36044","_to":"36041"} +{"$label":"ACTS_IN","name":"Lucky Reynolds","type":"Role","_key":"56743","_from":"36043","_to":"36041"} +{"$label":"ACTS_IN","name":"Sela","type":"Role","_key":"56736","_from":"36042","_to":"36041"} +{"$label":"ACTS_IN","name":"Isaiah Charles","type":"Role","_key":"60127","_from":"36043","_to":"37937"} +{"$label":"DIRECTED","_key":"56768","_from":"36059","_to":"36045"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"56767","_from":"36058","_to":"36045"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"56766","_from":"36057","_to":"36045"} +{"$label":"ACTS_IN","name":"Football Jock","type":"Role","_key":"56765","_from":"36056","_to":"36045"} +{"$label":"ACTS_IN","name":"Ms. Barclay","type":"Role","_key":"56764","_from":"36055","_to":"36045"} +{"$label":"ACTS_IN","name":"Suzie","type":"Role","_key":"56762","_from":"36054","_to":"36045"} +{"$label":"ACTS_IN","name":"Victor Newton","type":"Role","_key":"56761","_from":"36053","_to":"36045"} +{"$label":"ACTS_IN","name":"Lindy Newton","type":"Role","_key":"56759","_from":"36052","_to":"36045"} +{"$label":"ACTS_IN","name":"Martin Egan","type":"Role","_key":"56758","_from":"36051","_to":"36045"} +{"$label":"ACTS_IN","name":"Sharon Egan","type":"Role","_key":"56757","_from":"36050","_to":"36045"} +{"$label":"ACTS_IN","name":"Detective Kate Tunney","type":"Role","_key":"56754","_from":"36049","_to":"36045"} +{"$label":"ACTS_IN","name":"Marcus Bohem","type":"Role","_key":"56752","_from":"36048","_to":"36045"} +{"$label":"ACTS_IN","name":"Pete Egan","type":"Role","_key":"56751","_from":"36047","_to":"36045"} +{"$label":"ACTS_IN","name":"Annie Newton","type":"Role","_key":"56749","_from":"36046","_to":"36045"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"121489","_from":"36046","_to":"71364"} +{"$label":"ACTS_IN","name":"Lisa P.","type":"Role","_key":"109626","_from":"36046","_to":"64750"} +{"$label":"ACTS_IN","name":"Ekaterina Filippovna","type":"Role","_key":"105341","_from":"36046","_to":"61982"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"120490","_from":"36047","_to":"70773"} +{"$label":"ACTS_IN","name":"Carl Jenkins","type":"Role","_key":"119211","_from":"36047","_to":"70044"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98749","_from":"36047","_to":"58193"} +{"$label":"ACTS_IN","name":"Pope","type":"Role","_key":"97140","_from":"36047","_to":"57141"} +{"$label":"ACTS_IN","name":"Linus","type":"Role","_key":"95075","_from":"36047","_to":"55963"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"64327","_from":"36047","_to":"40093"} +{"$label":"ACTS_IN","name":"Mike Brander","type":"Role","_key":"59704","_from":"36047","_to":"37702"} +{"$label":"ACTS_IN","name":"Deputy Eric Fraser","type":"Role","_key":"117920","_from":"36048","_to":"69318"} +{"$label":"ACTS_IN","name":"Jack Flange","type":"Role","_key":"106857","_from":"36048","_to":"62996"} +{"$label":"ACTS_IN","name":"The Cowboy","type":"Role","_key":"105692","_from":"36051","_to":"62205"} +{"$label":"ACTS_IN","name":"Judge Wettick","type":"Role","_key":"102112","_from":"36051","_to":"60066"} +{"$label":"ACTS_IN","name":"Mary Parks","type":"Role","_key":"106717","_from":"36052","_to":"62890"} +{"$label":"ACTS_IN","name":"Helen Schriver","type":"Role","_key":"93592","_from":"36052","_to":"55111"} +{"$label":"DIRECTED","_key":"96645","_from":"36059","_to":"56839"} +{"$label":"ACTS_IN","name":"Kiss-Ass","type":"Role","_key":"56783","_from":"36064","_to":"36060"} +{"$label":"ACTS_IN","name":"Flower","type":"Role","_key":"56782","_from":"36063","_to":"36060"} +{"$label":"ACTS_IN","name":"Eno","type":"Role","_key":"56781","_from":"36062","_to":"36060"} +{"$label":"ACTS_IN","name":"Professor Okamura","type":"Role","_key":"56779","_from":"36061","_to":"36060"} +{"$label":"ACTS_IN","name":"Urethane Wheels Guy","type":"Role","_key":"56799","_from":"36069","_to":"36065"} +{"$label":"ACTS_IN","name":"Stecyk","type":"Role","_key":"56797","_from":"36068","_to":"36065"} +{"$label":"ACTS_IN","name":"Montoya","type":"Role","_key":"56796","_from":"36067","_to":"36065"} +{"$label":"ACTS_IN","name":"Tony Alva","type":"Role","_key":"56786","_from":"36066","_to":"36065"} +{"$label":"ACTS_IN","name":"Bo Douglas","type":"Role","_key":"109896","_from":"36066","_to":"64931"} +{"$label":"ACTS_IN","name":"Simon Col\u00f3n","type":"Role","_key":"98355","_from":"36066","_to":"57925"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"57258","_from":"36066","_to":"36317"} +{"$label":"DIRECTED","_key":"56816","_from":"36080","_to":"36070"} +{"$label":"ACTS_IN","name":"Maurice \/ The Ringers","type":"Role","_key":"56813","_from":"36079","_to":"36070"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"56812","_from":"36078","_to":"36070"} +{"$label":"ACTS_IN","name":"Abernathy","type":"Role","_key":"56811","_from":"36077","_to":"36070"} +{"$label":"ACTS_IN","name":"Lizzie Gaines","type":"Role","_key":"56810","_from":"36076","_to":"36070"} +{"$label":"ACTS_IN","name":"Diane Gaines","type":"Role","_key":"56809","_from":"36075","_to":"36070"} +{"$label":"ACTS_IN","name":"Jack Gaines","type":"Role","_key":"56808","_from":"36074","_to":"36070"} +{"$label":"ACTS_IN","name":"Uncle Ben","type":"Role","_key":"56806","_from":"36073","_to":"36070"} +{"$label":"ACTS_IN","name":"Rory","type":"Role","_key":"56805","_from":"36072","_to":"36070"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"56803","_from":"36071","_to":"36070"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"101313","_from":"36071","_to":"59645"} +{"$label":"ACTS_IN","name":"Ami","type":"Role","_key":"109467","_from":"36072","_to":"64667"} +{"$label":"ACTS_IN","name":"Tammi Littlenut","type":"Role","_key":"92884","_from":"36072","_to":"54784"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103734","_from":"36073","_to":"61008"} +{"$label":"ACTS_IN","name":"Jimmy (voice)","type":"Role","_key":"89795","_from":"36073","_to":"53142"} +{"$label":"ACTS_IN","name":"Eddie Langston","type":"Role","_key":"57676","_from":"36073","_to":"36513"} +{"$label":"ACTS_IN","name":"Angela Blake","type":"Role","_key":"112342","_from":"36075","_to":"66325"} +{"$label":"ACTS_IN","name":"Melissa Ventura","type":"Role","_key":"104015","_from":"36075","_to":"61192"} +{"$label":"ACTS_IN","name":"Shirley Baker - Left Field","type":"Role","_key":"68933","_from":"36075","_to":"42198"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"91336","_from":"36076","_to":"53865"} +{"$label":"ACTS_IN","name":"Guy Employee","type":"Role","_key":"95913","_from":"36077","_to":"56401"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"88931","_from":"36077","_to":"52677"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"95366","_from":"36078","_to":"56099"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"92071","_from":"36078","_to":"54329"} +{"$label":"ACTS_IN","name":"Bailey","type":"Role","_key":"65743","_from":"36078","_to":"40702"} +{"$label":"ACTS_IN","name":"Tuesday Blackwell","type":"Role","_key":"59558","_from":"36078","_to":"37600"} +{"$label":"DIRECTED","_key":"56822","_from":"36087","_to":"36081"} +{"$label":"ACTS_IN","name":"Accios Mutter","type":"Role","_key":"56821","_from":"36086","_to":"36081"} +{"$label":"ACTS_IN","name":"Violetta","type":"Role","_key":"56820","_from":"36085","_to":"36081"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"56819","_from":"36084","_to":"36081"} +{"$label":"ACTS_IN","name":"Manrico","type":"Role","_key":"56818","_from":"36083","_to":"36081"} +{"$label":"ACTS_IN","name":"Accio","type":"Role","_key":"56817","_from":"36082","_to":"36081"} +{"$label":"ACTS_IN","name":"Enzo Ferrari (At 18 years)","type":"Role","_key":"104583","_from":"36082","_to":"61510"} +{"$label":"ACTS_IN","name":"Pierpaolo","type":"Role","_key":"61641","_from":"36082","_to":"38839"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"102854","_from":"36083","_to":"60509"} +{"$label":"ACTS_IN","name":"Il Nero","type":"Role","_key":"99865","_from":"36083","_to":"58894"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"91743","_from":"36085","_to":"54117"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"115387","_from":"36086","_to":"67943"} +{"$label":"ACTS_IN","name":"Silvana","type":"Role","_key":"89443","_from":"36086","_to":"52953"} +{"$label":"ACTS_IN","name":"Jacob Horvath","type":"Role","_key":"56841","_from":"36091","_to":"36088"} +{"$label":"ACTS_IN","name":"Psycho Mike","type":"Role","_key":"56836","_from":"36090","_to":"36088"} +{"$label":"ACTS_IN","name":"T.J.","type":"Role","_key":"56834","_from":"36089","_to":"36088"} +{"$label":"ACTS_IN","name":"Attila","type":"Role","_key":"57282","_from":"36090","_to":"36323"} +{"$label":"ACTS_IN","name":"Chris Cellano","type":"Role","_key":"58419","_from":"36091","_to":"36916"} +{"$label":"DIRECTED","_key":"56859","_from":"36098","_to":"36092"} +{"$label":"ACTS_IN","name":"Baby Catherine","type":"Role","_key":"56858","_from":"36097","_to":"36092"} +{"$label":"ACTS_IN","name":"Cyst","type":"Role","_key":"56857","_from":"36096","_to":"36092"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"56856","_from":"36095","_to":"36092"} +{"$label":"ACTS_IN","name":"Goggle","type":"Role","_key":"56854","_from":"36094","_to":"36092"} +{"$label":"ACTS_IN","name":"Bobby Carter","type":"Role","_key":"56848","_from":"36093","_to":"36092"} +{"$label":"ACTS_IN","name":"Jonathan Doyle","type":"Role","_key":"99168","_from":"36093","_to":"58429"} +{"$label":"ACTS_IN","name":"Carter Farrell","type":"Role","_key":"68778","_from":"36093","_to":"42142"} +{"$label":"ACTS_IN","name":"Makeup Effects Guy #3","type":"Role","_key":"110152","_from":"36096","_to":"65091"} +{"$label":"ACTS_IN","name":"Bridgekeeper Zombie","type":"Role","_key":"71556","_from":"36096","_to":"43346"} +{"$label":"DIRECTED","_key":"94954","_from":"36098","_to":"55920"} +{"$label":"DIRECTED","_key":"61814","_from":"36098","_to":"38914"} +{"$label":"ACTS_IN","name":"Stump","type":"Role","_key":"56874","_from":"36108","_to":"36099"} +{"$label":"ACTS_IN","name":"Insurgent","type":"Role","_key":"56872","_from":"36107","_to":"36099"} +{"$label":"ACTS_IN","name":"Spitter","type":"Role","_key":"56870","_from":"36106","_to":"36099"} +{"$label":"ACTS_IN","name":"Missy","type":"Role","_key":"56869","_from":"36105","_to":"36099"} +{"$label":"ACTS_IN","name":"Delmar","type":"Role","_key":"56868","_from":"36104","_to":"36099"} +{"$label":"ACTS_IN","name":"Stabber","type":"Role","_key":"56867","_from":"36103","_to":"36099"} +{"$label":"ACTS_IN","name":"Hansel","type":"Role","_key":"56866","_from":"36102","_to":"36099"} +{"$label":"ACTS_IN","name":"Han","type":"Role","_key":"56862","_from":"36101","_to":"36099"} +{"$label":"ACTS_IN","name":"Pregnant Woman","type":"Role","_key":"56860","_from":"36100","_to":"36099"} +{"$label":"ACTS_IN","name":"Chris Comer","type":"Role","_key":"94404","_from":"36104","_to":"55583"} +{"$label":"ACTS_IN","name":"Posie","type":"Role","_key":"104363","_from":"36105","_to":"61395"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"93304","_from":"36105","_to":"54964"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"101683","_from":"36106","_to":"59845"} +{"$label":"DIRECTED","_key":"56891","_from":"36115","_to":"36109"} +{"$label":"ACTS_IN","name":"Grumpy Lady","type":"Role","_key":"56890","_from":"36114","_to":"36109"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"56889","_from":"36113","_to":"36109"} +{"$label":"ACTS_IN","name":"Greeter","type":"Role","_key":"56888","_from":"36112","_to":"36109"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"56887","_from":"36111","_to":"36109"} +{"$label":"ACTS_IN","name":"Semi","type":"Role","_key":"56883","_from":"36110","_to":"36109"} +{"$label":"ACTS_IN","name":"Big Man","type":"Role","_key":"99751","_from":"36110","_to":"58829"} +{"$label":"ACTS_IN","name":"Dunain","type":"Role","_key":"56903","_from":"36123","_to":"36116"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"56902","_from":"36122","_to":"36116"} +{"$label":"ACTS_IN","name":"Skiorch","type":"Role","_key":"56901","_from":"36121","_to":"36116"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"56899","_from":"36120","_to":"36116"} +{"$label":"ACTS_IN","name":"Kossil","type":"Role","_key":"56897","_from":"36119","_to":"36116"} +{"$label":"ACTS_IN","name":"Vetch","type":"Role","_key":"56896","_from":"36118","_to":"36116"} +{"$label":"ACTS_IN","name":"Ged","type":"Role","_key":"56892","_from":"36117","_to":"36116"} +{"$label":"ACTS_IN","name":"Rob Donovan","type":"Role","_key":"121203","_from":"36117","_to":"71196"} +{"$label":"ACTS_IN","name":"Denys","type":"Role","_key":"115134","_from":"36117","_to":"67802"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"101342","_from":"36117","_to":"59660"} +{"$label":"ACTS_IN","name":"Cadet Major Brad Rigby","type":"Role","_key":"98099","_from":"36117","_to":"57760"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"68181","_from":"36117","_to":"41878"} +{"$label":"ACTS_IN","name":"Connor","type":"Role","_key":"57033","_from":"36117","_to":"36185"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"101130","_from":"36118","_to":"59583"} +{"$label":"ACTS_IN","name":"Mistress Deborah","type":"Role","_key":"115293","_from":"36119","_to":"67881"} +{"$label":"ACTS_IN","name":"Prince Daniel","type":"Role","_key":"102737","_from":"36120","_to":"60440"} +{"$label":"ACTS_IN","name":"Vakama","type":"Role","_key":"115406","_from":"36121","_to":"67952"} +{"$label":"ACTS_IN","name":"Nalu","type":"Role","_key":"93737","_from":"36121","_to":"55176"} +{"$label":"ACTS_IN","name":"Prince Nalu","type":"Role","_key":"93720","_from":"36121","_to":"55166"} +{"$label":"ACTS_IN","name":"Jamoru","type":"Role","_key":"56922","_from":"36134","_to":"36124"} +{"$label":"ACTS_IN","name":"Ranan","type":"Role","_key":"56921","_from":"36133","_to":"36124"} +{"$label":"ACTS_IN","name":"Jacar\u00e9","type":"Role","_key":"56920","_from":"36132","_to":"36124"} +{"$label":"ACTS_IN","name":"Camila","type":"Role","_key":"56919","_from":"36131","_to":"36124"} +{"$label":"ACTS_IN","name":"Arolea","type":"Role","_key":"56918","_from":"36130","_to":"36124"} +{"$label":"ACTS_IN","name":"Native Beauty","type":"Role","_key":"56917","_from":"36129","_to":"36124"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"56916","_from":"36128","_to":"36124"} +{"$label":"ACTS_IN","name":"Zamora","type":"Role","_key":"56915","_from":"36127","_to":"36124"} +{"$label":"ACTS_IN","name":"Kiko","type":"Role","_key":"56914","_from":"36126","_to":"36124"} +{"$label":"ACTS_IN","name":"Liam","type":"Role","_key":"56913","_from":"36125","_to":"36124"} +{"$label":"DIRECTED","_key":"56927","_from":"36139","_to":"36135"} +{"$label":"ACTS_IN","name":"Boyarina Efrosinia Staritskaya","type":"Role","_key":"56926","_from":"36138","_to":"36135"} +{"$label":"ACTS_IN","name":"Czarina Anastasia Romanovna","type":"Role","_key":"56925","_from":"36137","_to":"36135"} +{"$label":"ACTS_IN","name":"Czar Ivan IV","type":"Role","_key":"56924","_from":"36136","_to":"36135"} +{"$label":"ACTS_IN","name":"Alexander Newski","type":"Role","_key":"61856","_from":"36136","_to":"38934"} +{"$label":"ACTS_IN","name":"Spiegel","type":"Role","_key":"56965","_from":"36150","_to":"36144"} +{"$label":"ACTS_IN","name":"Hofnarr","type":"Role","_key":"56963","_from":"36149","_to":"36144"} +{"$label":"ACTS_IN","name":"Ralf Schmitz\t ... \tSunny","type":"Role","_key":"56959","_from":"36148","_to":"36144"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"56957","_from":"36147","_to":"36144"} +{"$label":"ACTS_IN","name":"Cloudy","type":"Role","_key":"56956","_from":"36146","_to":"36144"} +{"$label":"ACTS_IN","name":"Tschakko","type":"Role","_key":"56955","_from":"36145","_to":"36144"} +{"$label":"ACTS_IN","name":"Mechanische Katze","type":"Role","_key":"91067","_from":"36145","_to":"53732"} +{"$label":"ACTS_IN","name":"Tschakko","type":"Role","_key":"59763","_from":"36145","_to":"37734"} +{"$label":"ACTS_IN","name":"Mann mit Kind","type":"Role","_key":"65441","_from":"36146","_to":"40569"} +{"$label":"ACTS_IN","name":"Cloudy","type":"Role","_key":"59764","_from":"36146","_to":"37734"} +{"$label":"ACTS_IN","name":"Sunny","type":"Role","_key":"59766","_from":"36148","_to":"37734"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"107954","_from":"36149","_to":"63754"} +{"$label":"ACTS_IN","name":"Hofnarr","type":"Role","_key":"59778","_from":"36149","_to":"37734"} +{"$label":"ACTS_IN","name":"Spieglein an der Wand","type":"Role","_key":"59772","_from":"36150","_to":"37734"} +{"$label":"ACTS_IN","name":"Elder \/ Survivor","type":"Role","_key":"56972","_from":"36153","_to":"36151"} +{"$label":"ACTS_IN","name":"Drifter","type":"Role","_key":"56970","_from":"36152","_to":"36151"} +{"$label":"ACTS_IN","name":"Ochoa","type":"Role","_key":"99012","_from":"36153","_to":"58328"} +{"$label":"ACTS_IN","name":"Senator Bean","type":"Role","_key":"56983","_from":"36155","_to":"36154"} +{"$label":"ACTS_IN","name":"Kapit\u00e4n Lackner","type":"Role","_key":"57591","_from":"36155","_to":"36471"} +{"$label":"ACTS_IN","name":"Violet Parr (voice)","type":"Role","_key":"56995","_from":"36162","_to":"36156"} +{"$label":"ACTS_IN","name":"Dashiell 'Dash' Parr (voice)","type":"Role","_key":"56994","_from":"36161","_to":"36156"} +{"$label":"ACTS_IN","name":"Jack Jack Parr (voice)","type":"Role","_key":"56993","_from":"36160","_to":"36156"} +{"$label":"ACTS_IN","name":"Jack Jack Parr (voice)","type":"Role","_key":"56992","_from":"36159","_to":"36156"} +{"$label":"ACTS_IN","name":"Newsreel Narrator (voice)","type":"Role","_key":"56991","_from":"36158","_to":"36156"} +{"$label":"ACTS_IN","name":"Bomb Voyage (voice)","type":"Role","_key":"56990","_from":"36157","_to":"36156"} +{"$label":"ACTS_IN","name":"Jack-Jack Parr","type":"Role","_key":"97553","_from":"36159","_to":"57447"} +{"$label":"ACTS_IN","name":"Mudbud","type":"Role","_key":"58790","_from":"36161","_to":"37126"} +{"$label":"DIRECTED","_key":"57001","_from":"36166","_to":"36163"} +{"$label":"ACTS_IN","name":"Patricia O'Connor","type":"Role","_key":"57000","_from":"36165","_to":"36163"} +{"$label":"ACTS_IN","name":"Jeremiah, Al's grandpa","type":"Role","_key":"56999","_from":"36164","_to":"36163"} +{"$label":"DIRECTED","_key":"71058","_from":"36166","_to":"43147"} +{"$label":"DIRECTED","_key":"62440","_from":"36166","_to":"39331"} +{"$label":"DIRECTED","_key":"57022","_from":"36179","_to":"36167"} +{"$label":"ACTS_IN","name":"Korean Pharmacist","type":"Role","_key":"57021","_from":"36180","_to":"36167"} +{"$label":"ACTS_IN","name":"Duane","type":"Role","_key":"57020","_from":"36179","_to":"36167"} +{"$label":"ACTS_IN","name":"Deputy Mayor","type":"Role","_key":"57019","_from":"36178","_to":"36167"} +{"$label":"ACTS_IN","name":"Sgt. Barker","type":"Role","_key":"57018","_from":"36177","_to":"36167"} +{"$label":"ACTS_IN","name":"Stripper","type":"Role","_key":"57017","_from":"36176","_to":"36167"} +{"$label":"ACTS_IN","name":"Old Bartender","type":"Role","_key":"57016","_from":"36175","_to":"36167"} +{"$label":"ACTS_IN","name":"Breen Guard","type":"Role","_key":"57015","_from":"36174","_to":"36167"} +{"$label":"ACTS_IN","name":"John - 18 years","type":"Role","_key":"57014","_from":"36173","_to":"36167"} +{"$label":"ACTS_IN","name":"John - 8 years","type":"Role","_key":"57013","_from":"36172","_to":"36167"} +{"$label":"ACTS_IN","name":"Pawn Broker","type":"Role","_key":"57012","_from":"36171","_to":"36167"} +{"$label":"ACTS_IN","name":"Judge Eva Fwae Wun","type":"Role","_key":"57010","_from":"36170","_to":"36167"} +{"$label":"ACTS_IN","name":"Icepick","type":"Role","_key":"57009","_from":"36169","_to":"36167"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"57008","_from":"36168","_to":"36167"} +{"$label":"ACTS_IN","name":"Mrs. Kwan","type":"Role","_key":"64278","_from":"36170","_to":"40080"} +{"$label":"ACTS_IN","name":"Mrs. Ho-Kym","type":"Role","_key":"63523","_from":"36170","_to":"39764"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"98676","_from":"36174","_to":"58151"} +{"$label":"ACTS_IN","name":"Terry Twillstein","type":"Role","_key":"102491","_from":"36179","_to":"60304"} +{"$label":"DIRECTED","_key":"60243","_from":"36179","_to":"38004"} +{"$label":"DIRECTED","_key":"57028","_from":"36184","_to":"36182"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"57025","_from":"36183","_to":"36182"} +{"$label":"ACTS_IN","name":"Tina Shenk","type":"Role","_key":"67254","_from":"36183","_to":"41460"} +{"$label":"DIRECTED","_key":"57049","_from":"36200","_to":"36185"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"57048","_from":"36199","_to":"36185"} +{"$label":"ACTS_IN","name":"High School Student","type":"Role","_key":"57047","_from":"36198","_to":"36185"} +{"$label":"ACTS_IN","name":"Regina McQueen","type":"Role","_key":"57046","_from":"36197","_to":"36185"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"57045","_from":"36196","_to":"36185"} +{"$label":"ACTS_IN","name":"Sign Language Interpreter","type":"Role","_key":"57044","_from":"36195","_to":"36185"} +{"$label":"ACTS_IN","name":"Newscaster #2","type":"Role","_key":"57043","_from":"36194","_to":"36185"} +{"$label":"ACTS_IN","name":"Newscaster #1","type":"Role","_key":"57042","_from":"36193","_to":"36185"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"57041","_from":"36192","_to":"36185"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"57040","_from":"36191","_to":"36185"} +{"$label":"ACTS_IN","name":"Mr. Piln","type":"Role","_key":"57038","_from":"36190","_to":"36185"} +{"$label":"ACTS_IN","name":"Myrna","type":"Role","_key":"57037","_from":"36189","_to":"36185"} +{"$label":"ACTS_IN","name":"Mrs. Feltswatter","type":"Role","_key":"57036","_from":"36188","_to":"36185"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"57035","_from":"36187","_to":"36185"} +{"$label":"ACTS_IN","name":"Michelle Fell","type":"Role","_key":"57034","_from":"36186","_to":"36185"} +{"$label":"ACTS_IN","name":"Mikey Ubriacco","type":"Role","_key":"73138","_from":"36187","_to":"43986"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"101612","_from":"36199","_to":"59810"} +{"$label":"ACTS_IN","name":"Emma Sharp","type":"Role","_key":"94854","_from":"36199","_to":"55853"} +{"$label":"DIRECTED","_key":"63810","_from":"36200","_to":"39897"} +{"$label":"ACTS_IN","name":"Little Girl in Car","type":"Role","_key":"57070","_from":"36222","_to":"36201"} +{"$label":"ACTS_IN","name":"Lizzie in Past","type":"Role","_key":"57069","_from":"36221","_to":"36201"} +{"$label":"ACTS_IN","name":"Lizzie the Ghost Girl","type":"Role","_key":"57068","_from":"36220","_to":"36201"} +{"$label":"ACTS_IN","name":"Nurse from Past","type":"Role","_key":"57067","_from":"36219","_to":"36201"} +{"$label":"ACTS_IN","name":"Traci","type":"Role","_key":"57066","_from":"36218","_to":"36201"} +{"$label":"ACTS_IN","name":"Death in Morgue","type":"Role","_key":"57065","_from":"36217","_to":"36201"} +{"$label":"ACTS_IN","name":"Death in Sanatorium","type":"Role","_key":"57064","_from":"36216","_to":"36201"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"57063","_from":"36215","_to":"36201"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"57062","_from":"36214","_to":"36201"} +{"$label":"ACTS_IN","name":"Ghost Nurse","type":"Role","_key":"57061","_from":"36213","_to":"36201"} +{"$label":"ACTS_IN","name":"Dr. Vangard","type":"Role","_key":"57060","_from":"36212","_to":"36201"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"57059","_from":"36211","_to":"36201"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"57058","_from":"36210","_to":"36201"} +{"$label":"ACTS_IN","name":"Gio","type":"Role","_key":"57057","_from":"36209","_to":"36201"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"57056","_from":"36208","_to":"36201"} +{"$label":"ACTS_IN","name":"Tori","type":"Role","_key":"57055","_from":"36207","_to":"36201"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"57054","_from":"36206","_to":"36201"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"57053","_from":"36205","_to":"36201"} +{"$label":"ACTS_IN","name":"Devon","type":"Role","_key":"57052","_from":"36204","_to":"36201"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"57051","_from":"36203","_to":"36201"} +{"$label":"DIRECTED","_key":"57050","_from":"36202","_to":"36201"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"120919","_from":"36206","_to":"70994"} +{"$label":"ACTS_IN","name":"Degrasso","type":"Role","_key":"66566","_from":"36211","_to":"41149"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57091","_from":"36231","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57090","_from":"36230","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57089","_from":"36229","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57088","_from":"36228","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57087","_from":"36227","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57086","_from":"36226","_to":"36223"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57085","_from":"36225","_to":"36223"} +{"$label":"DIRECTED","_key":"57071","_from":"36224","_to":"36223"} +{"$label":"DIRECTED","_key":"60160","_from":"36224","_to":"37960"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"57113","_from":"36248","_to":"36232"} +{"$label":"ACTS_IN","name":"Lakisha","type":"Role","_key":"57112","_from":"36247","_to":"36232"} +{"$label":"ACTS_IN","name":"Stern Judge","type":"Role","_key":"57111","_from":"36246","_to":"36232"} +{"$label":"ACTS_IN","name":"Wonk","type":"Role","_key":"57110","_from":"36245","_to":"36232"} +{"$label":"ACTS_IN","name":"Mr. Campbell","type":"Role","_key":"57109","_from":"36244","_to":"36232"} +{"$label":"ACTS_IN","name":"Mrs. Gwynn","type":"Role","_key":"57108","_from":"36243","_to":"36232"} +{"$label":"ACTS_IN","name":"Woman on Train","type":"Role","_key":"57107","_from":"36242","_to":"36232"} +{"$label":"ACTS_IN","name":"Lindsay Johnson","type":"Role","_key":"57106","_from":"36241","_to":"36232"} +{"$label":"ACTS_IN","name":"Momma Dean","type":"Role","_key":"57105","_from":"36240","_to":"36232"} +{"$label":"ACTS_IN","name":"Glynn","type":"Role","_key":"57104","_from":"36239","_to":"36232"} +{"$label":"ACTS_IN","name":"Lip","type":"Role","_key":"57103","_from":"36238","_to":"36232"} +{"$label":"ACTS_IN","name":"Arvel","type":"Role","_key":"57102","_from":"36237","_to":"36232"} +{"$label":"ACTS_IN","name":"Diggy","type":"Role","_key":"57101","_from":"36236","_to":"36232"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"57100","_from":"36235","_to":"36232"} +{"$label":"ACTS_IN","name":"Snookie","type":"Role","_key":"57099","_from":"36234","_to":"36232"} +{"$label":"ACTS_IN","name":"Malakai","type":"Role","_key":"57096","_from":"36233","_to":"36232"} +{"$label":"ACTS_IN","name":"Ballet Dancer","type":"Role","_key":"57134","_from":"36265","_to":"36249"} +{"$label":"ACTS_IN","name":"Ballet Dancer","type":"Role","_key":"57132","_from":"36264","_to":"36249"} +{"$label":"ACTS_IN","name":"Ballet Dancer","type":"Role","_key":"57131","_from":"36263","_to":"36249"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"57130","_from":"36262","_to":"36249"} +{"$label":"ACTS_IN","name":"Ballet Dancer","type":"Role","_key":"57129","_from":"36261","_to":"36249"} +{"$label":"ACTS_IN","name":"Mr. Stills","type":"Role","_key":"57128","_from":"36260","_to":"36249"} +{"$label":"ACTS_IN","name":"Nigel","type":"Role","_key":"57127","_from":"36259","_to":"36249"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"57126","_from":"36258","_to":"36249"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"57125","_from":"36257","_to":"36249"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"57124","_from":"36256","_to":"36249"} +{"$label":"ACTS_IN","name":"Bella the Pianist","type":"Role","_key":"57123","_from":"36255","_to":"36249"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"57122","_from":"36254","_to":"36249"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"57121","_from":"36253","_to":"36249"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"57120","_from":"36252","_to":"36249"} +{"$label":"ACTS_IN","name":"Katrina","type":"Role","_key":"57118","_from":"36251","_to":"36249"} +{"$label":"DIRECTED","_key":"57114","_from":"36250","_to":"36249"} +{"$label":"DIRECTED","_key":"57139","_from":"36268","_to":"36267"} +{"$label":"ACTS_IN","name":"Partyguest","type":"Role","_key":"57165","_from":"36273","_to":"36271"} +{"$label":"ACTS_IN","name":"Vern","type":"Role","_key":"57162","_from":"36272","_to":"36271"} +{"$label":"DIRECTED","_key":"57171","_from":"36277","_to":"36274"} +{"$label":"ACTS_IN","name":"Jax","type":"Role","_key":"57170","_from":"36276","_to":"36274"} +{"$label":"ACTS_IN","name":"Sonya Blade","type":"Role","_key":"57169","_from":"36275","_to":"36274"} +{"$label":"DIRECTED","_key":"101123","_from":"36277","_to":"59583"} +{"$label":"DIRECTED","_key":"57179","_from":"36280","_to":"36278"} +{"$label":"ACTS_IN","name":"The Invisible Boy","type":"Role","_key":"57175","_from":"36279","_to":"36278"} +{"$label":"ACTS_IN","name":"T-Bone","type":"Role","_key":"118471","_from":"36279","_to":"69645"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"101884","_from":"36279","_to":"59966"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"57193","_from":"36286","_to":"36281"} +{"$label":"ACTS_IN","name":"Officer Coulson","type":"Role","_key":"57192","_from":"36285","_to":"36281"} +{"$label":"ACTS_IN","name":"Deputy Stevens","type":"Role","_key":"57191","_from":"36284","_to":"36281"} +{"$label":"ACTS_IN","name":"Stephen Daniels","type":"Role","_key":"57186","_from":"36283","_to":"36281"} +{"$label":"ACTS_IN","name":"Mrs. Delores Bickerman","type":"Role","_key":"57184","_from":"36282","_to":"36281"} +{"$label":"ACTS_IN","name":"Grandma Annie","type":"Role","_key":"115523","_from":"36282","_to":"68009"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100581","_from":"36282","_to":"59315"} +{"$label":"ACTS_IN","name":"Lillian Jordan","type":"Role","_key":"88785","_from":"36282","_to":"52605"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"57226","_from":"36298","_to":"36289"} +{"$label":"ACTS_IN","name":"Lone Cop","type":"Role","_key":"57225","_from":"36297","_to":"36289"} +{"$label":"ACTS_IN","name":"Uzi Henchman","type":"Role","_key":"57224","_from":"36296","_to":"36289"} +{"$label":"ACTS_IN","name":"Detective Molina","type":"Role","_key":"57223","_from":"36295","_to":"36289"} +{"$label":"ACTS_IN","name":"Iron Cross","type":"Role","_key":"57222","_from":"36294","_to":"36289"} +{"$label":"ACTS_IN","name":"Ponytail","type":"Role","_key":"57220","_from":"36293","_to":"36289"} +{"$label":"ACTS_IN","name":"County Doctor","type":"Role","_key":"57219","_from":"36292","_to":"36289"} +{"$label":"ACTS_IN","name":"Detective Anderson","type":"Role","_key":"57214","_from":"36291","_to":"36289"} +{"$label":"DIRECTED","_key":"57206","_from":"36290","_to":"36289"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"102937","_from":"36291","_to":"60550"} +{"$label":"ACTS_IN","name":"PFC Aldridge","type":"Role","_key":"97530","_from":"36291","_to":"57426"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"58458","_from":"36291","_to":"36947"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"97597","_from":"36292","_to":"57466"} +{"$label":"ACTS_IN","name":"T-Ray","type":"Role","_key":"103967","_from":"36295","_to":"61156"} +{"$label":"ACTS_IN","name":"Kristin White Gould","type":"Role","_key":"57246","_from":"36316","_to":"36299"} +{"$label":"ACTS_IN","name":"Deora Frances Bodley","type":"Role","_key":"57245","_from":"36315","_to":"36299"} +{"$label":"ACTS_IN","name":"Lauren Catuzzi Grandcolas","type":"Role","_key":"57244","_from":"36314","_to":"36299"} +{"$label":"ACTS_IN","name":"Linda Gronlund","type":"Role","_key":"57243","_from":"36313","_to":"36299"} +{"$label":"ACTS_IN","name":"Jeremy Glick","type":"Role","_key":"57242","_from":"36312","_to":"36299"} +{"$label":"ACTS_IN","name":"Colleen Fraser","type":"Role","_key":"57241","_from":"36311","_to":"36299"} +{"$label":"ACTS_IN","name":"Joseph DeLuca","type":"Role","_key":"57240","_from":"36310","_to":"36299"} +{"$label":"ACTS_IN","name":"Waleska Martinez","type":"Role","_key":"57239","_from":"36309","_to":"36299"} +{"$label":"ACTS_IN","name":"William Joseph Cashman","type":"Role","_key":"57237","_from":"36308","_to":"36299"} +{"$label":"ACTS_IN","name":"Todd Beamer","type":"Role","_key":"57236","_from":"36307","_to":"36299"} +{"$label":"ACTS_IN","name":"Wanda Anita Green","type":"Role","_key":"57234","_from":"36306","_to":"36299"} +{"$label":"ACTS_IN","name":"First Officer LeRoy Homer","type":"Role","_key":"57233","_from":"36305","_to":"36299"} +{"$label":"ACTS_IN","name":"CeeCee Lyles","type":"Role","_key":"57232","_from":"36304","_to":"36299"} +{"$label":"ACTS_IN","name":"Lorraine G. Bay","type":"Role","_key":"57231","_from":"36303","_to":"36299"} +{"$label":"ACTS_IN","name":"Sandra Bradshaw","type":"Role","_key":"57230","_from":"36302","_to":"36299"} +{"$label":"ACTS_IN","name":"Deborah Welsh","type":"Role","_key":"57229","_from":"36301","_to":"36299"} +{"$label":"ACTS_IN","name":"Captain Jason Dahl","type":"Role","_key":"57228","_from":"36300","_to":"36299"} +{"$label":"ACTS_IN","name":"Sanderman","type":"Role","_key":"88665","_from":"36312","_to":"52530"} +{"$label":"ACTS_IN","name":"Kelly Mandrakis","type":"Role","_key":"60015","_from":"36314","_to":"37876"} +{"$label":"ACTS_IN","name":"John the Baptist","type":"Role","_key":"57268","_from":"36322","_to":"36317"} +{"$label":"ACTS_IN","name":"Officer Franklin","type":"Role","_key":"57267","_from":"36321","_to":"36317"} +{"$label":"ACTS_IN","name":"Kimo","type":"Role","_key":"57266","_from":"36320","_to":"36317"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"57257","_from":"36319","_to":"36317"} +{"$label":"DIRECTED","_key":"57248","_from":"36318","_to":"36317"} +{"$label":"ACTS_IN","name":"Junebug","type":"Role","_key":"60080","_from":"36320","_to":"37905"} +{"$label":"ACTS_IN","name":"Biggs","type":"Role","_key":"97093","_from":"36322","_to":"57114"} +{"$label":"ACTS_IN","name":"Beneficia","type":"Role","_key":"57287","_from":"36333","_to":"36323"} +{"$label":"ACTS_IN","name":"Friend of Segundo","type":"Role","_key":"57286","_from":"36332","_to":"36323"} +{"$label":"ACTS_IN","name":"Constance, Newborn","type":"Role","_key":"57285","_from":"36331","_to":"36323"} +{"$label":"ACTS_IN","name":"Beneficio","type":"Role","_key":"57284","_from":"36330","_to":"36323"} +{"$label":"ACTS_IN","name":"Constance, Six Months","type":"Role","_key":"57281","_from":"36329","_to":"36323"} +{"$label":"ACTS_IN","name":"Constance, Toddler","type":"Role","_key":"57280","_from":"36328","_to":"36323"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"57279","_from":"36327","_to":"36323"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"57278","_from":"36326","_to":"36323"} +{"$label":"ACTS_IN","name":"Segundo Dejesus","type":"Role","_key":"57272","_from":"36325","_to":"36323"} +{"$label":"DIRECTED","_key":"57269","_from":"36324","_to":"36323"} +{"$label":"ACTS_IN","name":"Hector Soto","type":"Role","_key":"119801","_from":"36330","_to":"70342"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"90450","_from":"36330","_to":"53436"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"99987","_from":"36333","_to":"58990"} +{"$label":"ACTS_IN","name":"Ivanakov","type":"Role","_key":"57319","_from":"36352","_to":"36335"} +{"$label":"ACTS_IN","name":"Suzer Receptionist","type":"Role","_key":"57318","_from":"36351","_to":"36335"} +{"$label":"ACTS_IN","name":"Delivery Man","type":"Role","_key":"57317","_from":"36350","_to":"36335"} +{"$label":"ACTS_IN","name":"Galata Guard #2","type":"Role","_key":"57316","_from":"36349","_to":"36335"} +{"$label":"ACTS_IN","name":"Galata Guard #1","type":"Role","_key":"57315","_from":"36348","_to":"36335"} +{"$label":"ACTS_IN","name":"Galata Head of Security","type":"Role","_key":"57314","_from":"36347","_to":"36335"} +{"$label":"ACTS_IN","name":"Ibrahim Zoralan","type":"Role","_key":"57313","_from":"36346","_to":"36335"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"57312","_from":"36345","_to":"36335"} +{"$label":"ACTS_IN","name":"Street Vendor","type":"Role","_key":"57311","_from":"36344","_to":"36335"} +{"$label":"ACTS_IN","name":"Customs Official","type":"Role","_key":"57308","_from":"36343","_to":"36335"} +{"$label":"ACTS_IN","name":"James Haven","type":"Role","_key":"57307","_from":"36342","_to":"36335"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"57306","_from":"36341","_to":"36335"} +{"$label":"ACTS_IN","name":"Dr. Kavak","type":"Role","_key":"57305","_from":"36340","_to":"36335"} +{"$label":"ACTS_IN","name":"Embassy Clerk","type":"Role","_key":"57304","_from":"36336","_to":"36335"} +{"$label":"ACTS_IN","name":"Roxelana","type":"Role","_key":"57302","_from":"36339","_to":"36335"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"57301","_from":"36338","_to":"36335"} +{"$label":"ACTS_IN","name":"Hope Cassidy","type":"Role","_key":"57300","_from":"36337","_to":"36335"} +{"$label":"DIRECTED","_key":"57299","_from":"36336","_to":"36335"} +{"$label":"DIRECTED","_key":"121037","_from":"36336","_to":"71082"} +{"$label":"ACTS_IN","name":"Pepper Gianini","type":"Role","_key":"57323","_from":"36354","_to":"36353"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"57347","_from":"36364","_to":"36355"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"57346","_from":"36363","_to":"36355"} +{"$label":"ACTS_IN","name":"Baby Gloria","type":"Role","_key":"57344","_from":"36362","_to":"36355"} +{"$label":"ACTS_IN","name":"Seymour","type":"Role","_key":"57343","_from":"36361","_to":"36355"} +{"$label":"ACTS_IN","name":"Rinaldo","type":"Role","_key":"57332","_from":"36360","_to":"36355"} +{"$label":"ACTS_IN","name":"Nestor","type":"Role","_key":"57331","_from":"36359","_to":"36355"} +{"$label":"ACTS_IN","name":"Lombardo","type":"Role","_key":"57330","_from":"36358","_to":"36355"} +{"$label":"DIRECTED","_key":"57326","_from":"36357","_to":"36355"} +{"$label":"DIRECTED","_key":"57325","_from":"36356","_to":"36355"} +{"$label":"ACTS_IN","name":"Deputy James Garcia","type":"Role","_key":"60552","_from":"36359","_to":"38218"} +{"$label":"ACTS_IN","name":"Sheen Estevez (voice)","type":"Role","_key":"90485","_from":"36360","_to":"53459"} +{"$label":"ACTS_IN","name":"Pip the Mouse","type":"Role","_key":"57860","_from":"36360","_to":"36614"} +{"$label":"ACTS_IN","name":"Tito Severe","type":"Role","_key":"94138","_from":"36361","_to":"55435"} +{"$label":"DIRECTED","_key":"57352","_from":"36366","_to":"36365"} +{"$label":"ACTS_IN","name":"Umbopo","type":"Role","_key":"57359","_from":"36368","_to":"36367"} +{"$label":"ACTS_IN","name":"Leader of the warriors","type":"Role","_key":"116498","_from":"36368","_to":"68568"} +{"$label":"ACTS_IN","name":"TV Reporter","type":"Role","_key":"57381","_from":"36379","_to":"36369"} +{"$label":"ACTS_IN","name":"Steiger's Girlfriend","type":"Role","_key":"57380","_from":"36378","_to":"36369"} +{"$label":"ACTS_IN","name":"Gemilla","type":"Role","_key":"57379","_from":"36377","_to":"36369"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"57378","_from":"36376","_to":"36369"} +{"$label":"ACTS_IN","name":"Rolly","type":"Role","_key":"57375","_from":"36375","_to":"36369"} +{"$label":"ACTS_IN","name":"Jojo","type":"Role","_key":"57374","_from":"36374","_to":"36369"} +{"$label":"ACTS_IN","name":"Anna Bauford","type":"Role","_key":"57373","_from":"36373","_to":"36369"} +{"$label":"ACTS_IN","name":"Jimmy Bauford","type":"Role","_key":"57372","_from":"36372","_to":"36369"} +{"$label":"ACTS_IN","name":"Mrs. Bauford","type":"Role","_key":"57371","_from":"36371","_to":"36369"} +{"$label":"ACTS_IN","name":"Master of Ceremonies","type":"Role","_key":"57370","_from":"36370","_to":"36369"} +{"$label":"ACTS_IN","name":"Paul Tyler","type":"Role","_key":"119119","_from":"36375","_to":"70011"} +{"$label":"ACTS_IN","name":"Man in Hardware Store","type":"Role","_key":"108070","_from":"36376","_to":"63815"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"57386","_from":"36383","_to":"36380"} +{"$label":"ACTS_IN","name":"Chriss","type":"Role","_key":"57385","_from":"36382","_to":"36380"} +{"$label":"ACTS_IN","name":"Marie Thomas","type":"Role","_key":"57384","_from":"36381","_to":"36380"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104469","_from":"36381","_to":"61445"} +{"$label":"ACTS_IN","name":"Gilles Sentain","type":"Role","_key":"101178","_from":"36382","_to":"59604"} +{"$label":"ACTS_IN","name":"The killer \/ kzl-303","type":"Role","_key":"57400","_from":"36395","_to":"36384"} +{"$label":"ACTS_IN","name":"Twin #1","type":"Role","_key":"57399","_from":"36394","_to":"36384"} +{"$label":"ACTS_IN","name":"Scotty","type":"Role","_key":"57398","_from":"36393","_to":"36384"} +{"$label":"ACTS_IN","name":"Twin #2","type":"Role","_key":"57397","_from":"36392","_to":"36384"} +{"$label":"ACTS_IN","name":"College Student","type":"Role","_key":"57396","_from":"36391","_to":"36384"} +{"$label":"ACTS_IN","name":"The Ranger","type":"Role","_key":"57395","_from":"36390","_to":"36384"} +{"$label":"ACTS_IN","name":"The Father","type":"Role","_key":"57393","_from":"36389","_to":"36384"} +{"$label":"ACTS_IN","name":"Jess Hilts","type":"Role","_key":"57392","_from":"36388","_to":"36384"} +{"$label":"ACTS_IN","name":"Nicole Carrow","type":"Role","_key":"57391","_from":"36387","_to":"36384"} +{"$label":"ACTS_IN","name":"Tracy Kress","type":"Role","_key":"57390","_from":"36386","_to":"36384"} +{"$label":"DIRECTED","_key":"57388","_from":"36385","_to":"36384"} +{"$label":"ACTS_IN","name":"Sif","type":"Role","_key":"61613","_from":"36387","_to":"38831"} +{"$label":"ACTS_IN","name":"Classmate","type":"Role","_key":"57421","_from":"36403","_to":"36396"} +{"$label":"ACTS_IN","name":"Mrs. Washington","type":"Role","_key":"57420","_from":"36402","_to":"36396"} +{"$label":"ACTS_IN","name":"Lawrence","type":"Role","_key":"57419","_from":"36401","_to":"36396"} +{"$label":"ACTS_IN","name":"Lois","type":"Role","_key":"57418","_from":"36400","_to":"36396"} +{"$label":"ACTS_IN","name":"Little Pete","type":"Role","_key":"57416","_from":"36399","_to":"36396"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"57415","_from":"36398","_to":"36396"} +{"$label":"ACTS_IN","name":"Walsh","type":"Role","_key":"57409","_from":"36397","_to":"36396"} +{"$label":"ACTS_IN","name":"Father Pat","type":"Role","_key":"93659","_from":"36397","_to":"55135"} +{"$label":"ACTS_IN","name":"Lenny Pear","type":"Role","_key":"99724","_from":"36399","_to":"58816"} +{"$label":"ACTS_IN","name":"Mrs. Ziminsky","type":"Role","_key":"115193","_from":"36400","_to":"67837"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"60961","_from":"36400","_to":"38506"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"58205","_from":"36403","_to":"36816"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"57441","_from":"36415","_to":"36404"} +{"$label":"ACTS_IN","name":"Snuff Movie victim","type":"Role","_key":"57440","_from":"36414","_to":"36404"} +{"$label":"ACTS_IN","name":"Oregon Undertaker","type":"Role","_key":"57439","_from":"36413","_to":"36404"} +{"$label":"ACTS_IN","name":"Melanie 3","type":"Role","_key":"57438","_from":"36412","_to":"36404"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"57435","_from":"36411","_to":"36404"} +{"$label":"ACTS_IN","name":"Melanie 2","type":"Role","_key":"57434","_from":"36410","_to":"36404"} +{"$label":"ACTS_IN","name":"Call Center Supervisor","type":"Role","_key":"57433","_from":"36409","_to":"36404"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"57432","_from":"36408","_to":"36404"} +{"$label":"ACTS_IN","name":"Josie McBroom","type":"Role","_key":"57429","_from":"36407","_to":"36404"} +{"$label":"ACTS_IN","name":"Deputy Garman","type":"Role","_key":"57428","_from":"36406","_to":"36404"} +{"$label":"DIRECTED","_key":"57422","_from":"36405","_to":"36404"} +{"$label":"ACTS_IN","name":"Claire Shepard","type":"Role","_key":"105042","_from":"36407","_to":"61815"} +{"$label":"ACTS_IN","name":"Alice Harbinson","type":"Role","_key":"98317","_from":"36407","_to":"57908"} +{"$label":"DIRECTED","_key":"57442","_from":"36417","_to":"36416"} +{"$label":"DIRECTED","_key":"102489","_from":"36417","_to":"60303"} +{"$label":"DIRECTED","_key":"66343","_from":"36417","_to":"41033"} +{"$label":"ACTS_IN","name":"Thomas Bateman","type":"Role","_key":"57458","_from":"36423","_to":"36419"} +{"$label":"ACTS_IN","name":"Bianca Torres","type":"Role","_key":"57455","_from":"36422","_to":"36419"} +{"$label":"ACTS_IN","name":"John Vukovich","type":"Role","_key":"57454","_from":"36421","_to":"36419"} +{"$label":"ACTS_IN","name":"Richard Chance","type":"Role","_key":"57452","_from":"36420","_to":"36419"} +{"$label":"ACTS_IN","name":"Joseph P. Kennedy","type":"Role","_key":"105893","_from":"36420","_to":"62344"} +{"$label":"ACTS_IN","name":"Juror 12","type":"Role","_key":"88773","_from":"36420","_to":"52604"} +{"$label":"ACTS_IN","name":"Will Graham","type":"Role","_key":"69955","_from":"36420","_to":"42679"} +{"$label":"ACTS_IN","name":"Jack Flynn","type":"Role","_key":"67141","_from":"36420","_to":"41425"} +{"$label":"ACTS_IN","name":"Steve Walker","type":"Role","_key":"63961","_from":"36420","_to":"39949"} +{"$label":"ACTS_IN","name":"Vince McBride","type":"Role","_key":"111188","_from":"36421","_to":"65664"} +{"$label":"ACTS_IN","name":"Kovacs","type":"Role","_key":"70571","_from":"36421","_to":"42937"} +{"$label":"ACTS_IN","name":"Dietz","type":"Role","_key":"61132","_from":"36421","_to":"38638"} +{"$label":"ACTS_IN","name":"Fred Melrose","type":"Role","_key":"59517","_from":"36421","_to":"37578"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"91545","_from":"36422","_to":"53960"} +{"$label":"ACTS_IN","name":"J's Mom","type":"Role","_key":"57479","_from":"36428","_to":"36426"} +{"$label":"DIRECTED","_key":"57474","_from":"36427","_to":"36426"} +{"$label":"ACTS_IN","name":"George Lucas","type":"Role","_key":"101791","_from":"36427","_to":"59906"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"57485","_from":"36434","_to":"36429"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"57484","_from":"36433","_to":"36429"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"57483","_from":"36432","_to":"36429"} +{"$label":"ACTS_IN","name":"Polina","type":"Role","_key":"57482","_from":"36431","_to":"36429"} +{"$label":"DIRECTED","_key":"57480","_from":"36430","_to":"36429"} +{"$label":"ACTS_IN","name":"Aldous Snow","type":"Role","_key":"57495","_from":"36438","_to":"36436"} +{"$label":"DIRECTED","_key":"57491","_from":"36437","_to":"36436"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106227","_from":"36438","_to":"62562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106192","_from":"36438","_to":"62548"} +{"$label":"ACTS_IN","name":"Flash Harry","type":"Role","_key":"65432","_from":"36438","_to":"40563"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"61684","_from":"36438","_to":"38856"} +{"$label":"ACTS_IN","name":"Brigitte 'B' Fitzgerald","type":"Role","_key":"57509","_from":"36441","_to":"36439"} +{"$label":"ACTS_IN","name":"Trina Sinclair","type":"Role","_key":"57508","_from":"36440","_to":"36439"} +{"$label":"ACTS_IN","name":"Britt","type":"Role","_key":"103412","_from":"36441","_to":"60831"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"90428","_from":"36441","_to":"53428"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"62795","_from":"36441","_to":"39467"} +{"$label":"ACTS_IN","name":"Lori Swenson","type":"Role","_key":"57515","_from":"36444","_to":"36442"} +{"$label":"ACTS_IN","name":"Steve Jackson","type":"Role","_key":"57513","_from":"36443","_to":"36442"} +{"$label":"ACTS_IN","name":"Cindy Mancini","type":"Role","_key":"91919","_from":"36444","_to":"54230"} +{"$label":"DIRECTED","_key":"57522","_from":"36448","_to":"36445"} +{"$label":"ACTS_IN","name":"Col. Mason","type":"Role","_key":"57521","_from":"36447","_to":"36445"} +{"$label":"ACTS_IN","name":"Lipton","type":"Role","_key":"57520","_from":"36446","_to":"36445"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"108393","_from":"36446","_to":"64080"} +{"$label":"ACTS_IN","name":"John Burrows","type":"Role","_key":"102001","_from":"36446","_to":"60016"} +{"$label":"ACTS_IN","name":"Sheriff Hightower","type":"Role","_key":"91236","_from":"36446","_to":"53798"} +{"$label":"ACTS_IN","name":"Tom Haver","type":"Role","_key":"71325","_from":"36446","_to":"43264"} +{"$label":"ACTS_IN","name":"Bill Freeman","type":"Role","_key":"61021","_from":"36446","_to":"38561"} +{"$label":"DIRECTED","_key":"101425","_from":"36448","_to":"59708"} +{"$label":"ACTS_IN","name":"Katja","type":"Role","_key":"57533","_from":"36452","_to":"36450"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"57532","_from":"36451","_to":"36450"} +{"$label":"ACTS_IN","name":"Tutti Bomowski","type":"Role","_key":"57539","_from":"36454","_to":"36453"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"68345","_from":"36454","_to":"41949"} +{"$label":"ACTS_IN","name":"Claire Prince Timkin","type":"Role","_key":"59500","_from":"36454","_to":"37569"} +{"$label":"ACTS_IN","name":"Brenda Bates","type":"Role","_key":"57545","_from":"36457","_to":"36455"} +{"$label":"DIRECTED","_key":"57542","_from":"36456","_to":"36455"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107960","_from":"36456","_to":"63755"} +{"$label":"DIRECTED","_key":"100437","_from":"36456","_to":"59220"} +{"$label":"DIRECTED","_key":"67089","_from":"36456","_to":"41406"} +{"$label":"ACTS_IN","name":"Julie Freeman","type":"Role","_key":"117963","_from":"36457","_to":"69340"} +{"$label":"ACTS_IN","name":"Mickey Lubitch","type":"Role","_key":"57553","_from":"36461","_to":"36458"} +{"$label":"ACTS_IN","name":"Johnny Lubitch","type":"Role","_key":"57552","_from":"36460","_to":"36458"} +{"$label":"ACTS_IN","name":"Gina Biggs","type":"Role","_key":"57551","_from":"36459","_to":"36458"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"110122","_from":"36459","_to":"65070"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"57570","_from":"36466","_to":"36462"} +{"$label":"ACTS_IN","name":"Ariel Sharon","type":"Role","_key":"57567","_from":"36465","_to":"36462"} +{"$label":"ACTS_IN","name":"Orly","type":"Role","_key":"57562","_from":"36464","_to":"36462"} +{"$label":"DIRECTED","_key":"57554","_from":"36463","_to":"36462"} +{"$label":"DIRECTED","_key":"90017","_from":"36463","_to":"53250"} +{"$label":"DIRECTED","_key":"64890","_from":"36463","_to":"40352"} +{"$label":"DIRECTED","_key":"61382","_from":"36463","_to":"38726"} +{"$label":"ACTS_IN","name":"Jimmy Katz","type":"Role","_key":"58410","_from":"36464","_to":"36916"} +{"$label":"ACTS_IN","name":"Detective LaRue","type":"Role","_key":"102460","_from":"36466","_to":"60289"} +{"$label":"ACTS_IN","name":"Margot Krosmansky","type":"Role","_key":"57582","_from":"36469","_to":"36468"} +{"$label":"ACTS_IN","name":"Kern","type":"Role","_key":"57592","_from":"36472","_to":"36471"} +{"$label":"ACTS_IN","name":"Ben Mitchell","type":"Role","_key":"57605","_from":"36478","_to":"36474"} +{"$label":"ACTS_IN","name":"Kristy Earl","type":"Role","_key":"57604","_from":"36477","_to":"36474"} +{"$label":"ACTS_IN","name":"Liz Hunter","type":"Role","_key":"57603","_from":"36476","_to":"36474"} +{"$label":"DIRECTED","_key":"57601","_from":"36475","_to":"36474"} +{"$label":"DIRECTED","_key":"92085","_from":"36475","_to":"54333"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"114657","_from":"36478","_to":"67545"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"109063","_from":"36478","_to":"64444"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"106833","_from":"36478","_to":"62978"} +{"$label":"ACTS_IN","name":"Trig","type":"Role","_key":"98619","_from":"36478","_to":"58112"} +{"$label":"DIRECTED","_key":"57606","_from":"36480","_to":"36479"} +{"$label":"ACTS_IN","name":"Marianne Stevens","type":"Role","_key":"57634","_from":"36492","_to":"36484"} +{"$label":"ACTS_IN","name":"Carol Wainwright","type":"Role","_key":"57632","_from":"36491","_to":"36484"} +{"$label":"ACTS_IN","name":"Charmaine Van Sant","type":"Role","_key":"57631","_from":"36490","_to":"36484"} +{"$label":"ACTS_IN","name":"Ed Wainwright","type":"Role","_key":"57630","_from":"36489","_to":"36484"} +{"$label":"ACTS_IN","name":"Stan Peters","type":"Role","_key":"57629","_from":"36488","_to":"36484"} +{"$label":"ACTS_IN","name":"Pete Kresby","type":"Role","_key":"57628","_from":"36487","_to":"36484"} +{"$label":"ACTS_IN","name":"Sarah Sunderson","type":"Role","_key":"57627","_from":"36486","_to":"36484"} +{"$label":"ACTS_IN","name":"Kimberly Kresby","type":"Role","_key":"57625","_from":"36485","_to":"36484"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"119442","_from":"36489","_to":"70168"} +{"$label":"ACTS_IN","name":"Albert Vanderkamp","type":"Role","_key":"57789","_from":"36489","_to":"36578"} +{"$label":"ACTS_IN","name":"Homeless Man","type":"Role","_key":"57647","_from":"36499","_to":"36493"} +{"$label":"ACTS_IN","name":"Newscaster","type":"Role","_key":"57646","_from":"36498","_to":"36493"} +{"$label":"ACTS_IN","name":"Policeman #1","type":"Role","_key":"57645","_from":"36497","_to":"36493"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"57644","_from":"36496","_to":"36493"} +{"$label":"ACTS_IN","name":"Jared Roth","type":"Role","_key":"57638","_from":"36495","_to":"36493"} +{"$label":"DIRECTED","_key":"57635","_from":"36494","_to":"36493"} +{"$label":"DIRECTED","_key":"105277","_from":"36494","_to":"61948"} +{"$label":"ACTS_IN","name":"The Male","type":"Role","_key":"111483","_from":"36495","_to":"65827"} +{"$label":"ACTS_IN","name":"Dodger","type":"Role","_key":"100301","_from":"36495","_to":"59141"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"57668","_from":"36511","_to":"36500"} +{"$label":"ACTS_IN","name":"Bouncer","type":"Role","_key":"57667","_from":"36510","_to":"36500"} +{"$label":"ACTS_IN","name":"Jenna Allen","type":"Role","_key":"57666","_from":"36509","_to":"36500"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"57665","_from":"36508","_to":"36500"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"57664","_from":"36507","_to":"36500"} +{"$label":"ACTS_IN","name":"Gregg","type":"Role","_key":"57663","_from":"36506","_to":"36500"} +{"$label":"ACTS_IN","name":"Jay Corky","type":"Role","_key":"57662","_from":"36505","_to":"36500"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"57661","_from":"36504","_to":"36500"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"57657","_from":"36503","_to":"36500"} +{"$label":"ACTS_IN","name":"Stacie","type":"Role","_key":"57656","_from":"36502","_to":"36500"} +{"$label":"ACTS_IN","name":"Yancy","type":"Role","_key":"57655","_from":"36501","_to":"36500"} +{"$label":"ACTS_IN","name":"Mari Collingwood","type":"Role","_key":"116050","_from":"36502","_to":"68340"} +{"$label":"ACTS_IN","name":"Aquamarine","type":"Role","_key":"98953","_from":"36502","_to":"58296"} +{"$label":"ACTS_IN","name":"Jill Johnson","type":"Role","_key":"72753","_from":"36502","_to":"43830"} +{"$label":"ACTS_IN","name":"Rachel Witchburn","type":"Role","_key":"65555","_from":"36502","_to":"40629"} +{"$label":"ACTS_IN","name":"Ed Lawson","type":"Role","_key":"99148","_from":"36505","_to":"58416"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"94385","_from":"36505","_to":"55575"} +{"$label":"ACTS_IN","name":"James Aaron","type":"Role","_key":"92298","_from":"36505","_to":"54471"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"65185","_from":"36505","_to":"40488"} +{"$label":"ACTS_IN","name":"voice of Captain","type":"Role","_key":"65033","_from":"36505","_to":"40412"} +{"$label":"DIRECTED","_key":"92297","_from":"36505","_to":"54471"} +{"$label":"ACTS_IN","name":"Nicolas Yuleson","type":"Role","_key":"90499","_from":"36506","_to":"53462"} +{"$label":"ACTS_IN","name":"Grimaldi","type":"Role","_key":"57692","_from":"36523","_to":"36513"} +{"$label":"ACTS_IN","name":"President Kellogg","type":"Role","_key":"57689","_from":"36522","_to":"36513"} +{"$label":"ACTS_IN","name":"Political Commentator #2","type":"Role","_key":"57687","_from":"36521","_to":"36513"} +{"$label":"ACTS_IN","name":"Alison McAndrews","type":"Role","_key":"57686","_from":"36520","_to":"36513"} +{"$label":"ACTS_IN","name":"Hemmings","type":"Role","_key":"57685","_from":"36519","_to":"36513"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"57684","_from":"36518","_to":"36513"} +{"$label":"ACTS_IN","name":"Political Commentator #1","type":"Role","_key":"57683","_from":"36517","_to":"36513"} +{"$label":"ACTS_IN","name":"News Anchor #1","type":"Role","_key":"57682","_from":"36516","_to":"36513"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"57680","_from":"36515","_to":"36513"} +{"$label":"ACTS_IN","name":"Moderator","type":"Role","_key":"57679","_from":"36514","_to":"36513"} +{"$label":"ACTS_IN","name":"Raffi","type":"Role","_key":"108851","_from":"36515","_to":"64332"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"105686","_from":"36519","_to":"62205"} +{"$label":"ACTS_IN","name":"Tinas Mutter","type":"Role","_key":"57702","_from":"36526","_to":"36525"} +{"$label":"ACTS_IN","name":"Party Girl 1","type":"Role","_key":"57722","_from":"36542","_to":"36527"} +{"$label":"ACTS_IN","name":"Corporate Executive","type":"Role","_key":"57721","_from":"36541","_to":"36527"} +{"$label":"ACTS_IN","name":"Office Worker \/ Civilian","type":"Role","_key":"57720","_from":"36540","_to":"36527"} +{"$label":"ACTS_IN","name":"Drunk Party Guest","type":"Role","_key":"57719","_from":"36539","_to":"36527"} +{"$label":"ACTS_IN","name":"Executive #1","type":"Role","_key":"57717","_from":"36538","_to":"36527"} +{"$label":"ACTS_IN","name":"Garret Rankin","type":"Role","_key":"57716","_from":"36537","_to":"36527"} +{"$label":"ACTS_IN","name":"Bar patron","type":"Role","_key":"57715","_from":"36536","_to":"36527"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"57713","_from":"36535","_to":"36527"} +{"$label":"ACTS_IN","name":"Executive #2","type":"Role","_key":"57712","_from":"36534","_to":"36527"} +{"$label":"ACTS_IN","name":"Kathy Mahoni","type":"Role","_key":"57711","_from":"36533","_to":"36527"} +{"$label":"ACTS_IN","name":"Bobby Reed","type":"Role","_key":"57710","_from":"36532","_to":"36527"} +{"$label":"ACTS_IN","name":"Female Caterer","type":"Role","_key":"57709","_from":"36531","_to":"36527"} +{"$label":"ACTS_IN","name":"Jared Thurber","type":"Role","_key":"57708","_from":"36530","_to":"36527"} +{"$label":"ACTS_IN","name":"Goodman","type":"Role","_key":"57707","_from":"36529","_to":"36527"} +{"$label":"DIRECTED","_key":"57703","_from":"36528","_to":"36527"} +{"$label":"ACTS_IN","name":"Cab Driver","type":"Role","_key":"57741","_from":"36553","_to":"36543"} +{"$label":"ACTS_IN","name":"Misfit Showgirl","type":"Role","_key":"57740","_from":"36552","_to":"36543"} +{"$label":"ACTS_IN","name":"Brian the Set Designer","type":"Role","_key":"57739","_from":"36551","_to":"36543"} +{"$label":"ACTS_IN","name":"Bag Lady","type":"Role","_key":"57738","_from":"36550","_to":"36543"} +{"$label":"ACTS_IN","name":"Bum","type":"Role","_key":"57737","_from":"36549","_to":"36543"} +{"$label":"ACTS_IN","name":"Workman \/ Little Old Lady","type":"Role","_key":"57736","_from":"36548","_to":"36543"} +{"$label":"ACTS_IN","name":"Usherette \/ Girl with Pearls \/ Little Old Lady \/ Bavarian Peasant","type":"Role","_key":"57735","_from":"36547","_to":"36543"} +{"$label":"ACTS_IN","name":"Usherette \/ Girl with Pearls \/ Little Old Lady \/ Tapping Brown Shirt","type":"Role","_key":"57734","_from":"36546","_to":"36543"} +{"$label":"ACTS_IN","name":"Roger DeBris","type":"Role","_key":"57728","_from":"36545","_to":"36543"} +{"$label":"DIRECTED","_key":"57723","_from":"36544","_to":"36543"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"105329","_from":"36550","_to":"61977"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"101582","_from":"36550","_to":"59785"} +{"$label":"ACTS_IN","name":"Day Doorman","type":"Role","_key":"91606","_from":"36553","_to":"54001"} +{"$label":"ACTS_IN","name":"Party Guy","type":"Role","_key":"57764","_from":"36564","_to":"36554"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"57763","_from":"36563","_to":"36554"} +{"$label":"ACTS_IN","name":"Best Man","type":"Role","_key":"57762","_from":"36562","_to":"36554"} +{"$label":"ACTS_IN","name":"Businessman","type":"Role","_key":"57761","_from":"36561","_to":"36554"} +{"$label":"ACTS_IN","name":"Milk Maid","type":"Role","_key":"57760","_from":"36560","_to":"36554"} +{"$label":"ACTS_IN","name":"Pamela Mills","type":"Role","_key":"57759","_from":"36559","_to":"36554"} +{"$label":"ACTS_IN","name":"Bobby, Co-Worker #1","type":"Role","_key":"57758","_from":"36558","_to":"36554"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"57756","_from":"36557","_to":"36554"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"57752","_from":"36556","_to":"36554"} +{"$label":"DIRECTED","_key":"57744","_from":"36555","_to":"36554"} +{"$label":"ACTS_IN","name":"Laurey Williams","type":"Role","_key":"97575","_from":"36556","_to":"57456"} +{"$label":"ACTS_IN","name":"Marian Paroo","type":"Role","_key":"95804","_from":"36556","_to":"56349"} +{"$label":"ACTS_IN","name":"Passing Man with Camera","type":"Role","_key":"96496","_from":"36561","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57776","_from":"36566","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57775","_from":"36575","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57774","_from":"36574","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57773","_from":"36573","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57772","_from":"36572","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57771","_from":"36571","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57770","_from":"36570","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57769","_from":"36569","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57768","_from":"36568","_to":"36565"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"57767","_from":"36567","_to":"36565"} +{"$label":"DIRECTED","_key":"57765","_from":"36566","_to":"36565"} +{"$label":"DIRECTED","_key":"57777","_from":"36577","_to":"36576"} +{"$label":"DIRECTED","_key":"97636","_from":"36577","_to":"57491"} +{"$label":"ACTS_IN","name":"Puffy Man","type":"Role","_key":"57802","_from":"36590","_to":"36578"} +{"$label":"ACTS_IN","name":"Man in Blue Jeans","type":"Role","_key":"57801","_from":"36589","_to":"36578"} +{"$label":"ACTS_IN","name":"Man with Red Tie","type":"Role","_key":"57800","_from":"36588","_to":"36578"} +{"$label":"ACTS_IN","name":"Fredrick Van Pallandt","type":"Role","_key":"57799","_from":"36587","_to":"36578"} +{"$label":"ACTS_IN","name":"Bahamas Desk Clerk","type":"Role","_key":"57798","_from":"36586","_to":"36578"} +{"$label":"ACTS_IN","name":"Car Salesman","type":"Role","_key":"57797","_from":"36585","_to":"36578"} +{"$label":"ACTS_IN","name":"Sporting Goods Salesman","type":"Role","_key":"57796","_from":"36584","_to":"36578"} +{"$label":"ACTS_IN","name":"Malika","type":"Role","_key":"57794","_from":"36583","_to":"36578"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"57791","_from":"36582","_to":"36578"} +{"$label":"ACTS_IN","name":"Bike Messenger","type":"Role","_key":"57790","_from":"36581","_to":"36578"} +{"$label":"ACTS_IN","name":"Brad Silber","type":"Role","_key":"57786","_from":"36580","_to":"36578"} +{"$label":"ACTS_IN","name":"Harold McGraw","type":"Role","_key":"57785","_from":"36579","_to":"36578"} +{"$label":"DIRECTED","_key":"106446","_from":"36579","_to":"62710"} +{"$label":"ACTS_IN","name":"Millroy","type":"Role","_key":"88660","_from":"36580","_to":"52530"} +{"$label":"DIRECTED","_key":"118574","_from":"36589","_to":"69710"} +{"$label":"ACTS_IN","name":"Scraw","type":"Role","_key":"57823","_from":"36603","_to":"36591"} +{"$label":"ACTS_IN","name":"Hyrax","type":"Role","_key":"57822","_from":"36602","_to":"36591"} +{"$label":"ACTS_IN","name":"Mama Hippo","type":"Role","_key":"57821","_from":"36601","_to":"36591"} +{"$label":"ACTS_IN","name":"Scab","type":"Role","_key":"57820","_from":"36600","_to":"36591"} +{"$label":"ACTS_IN","name":"Hamir","type":"Role","_key":"57818","_from":"36599","_to":"36591"} +{"$label":"ACTS_IN","name":"Hamir","type":"Role","_key":"57817","_from":"36598","_to":"36591"} +{"$label":"ACTS_IN","name":"Eze","type":"Role","_key":"57815","_from":"36597","_to":"36591"} +{"$label":"ACTS_IN","name":"Fergus Flamingo","type":"Role","_key":"57814","_from":"36596","_to":"36591"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"57813","_from":"36595","_to":"36591"} +{"$label":"ACTS_IN","name":"Penguin MC","type":"Role","_key":"57811","_from":"36594","_to":"36591"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"57810","_from":"36593","_to":"36591"} +{"$label":"DIRECTED","_key":"57803","_from":"36592","_to":"36591"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"97455","_from":"36596","_to":"57394"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"108300","_from":"36602","_to":"64012"} +{"$label":"ACTS_IN","name":"New York Butcher","type":"Role","_key":"96621","_from":"36602","_to":"56824"} +{"$label":"ACTS_IN","name":"McCabe","type":"Role","_key":"58353","_from":"36602","_to":"36877"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"57830","_from":"36605","_to":"36604"} +{"$label":"ACTS_IN","name":"Sleeping Ant #1 \/ Head Lice #1 \/ Head Lice #2 \/ Head Lice #3 \/ Head Lice #4 \/ Brett","type":"Role","_key":"57850","_from":"36613","_to":"36606"} +{"$label":"ACTS_IN","name":"Glow Worm \/ Wasp Survivor","type":"Role","_key":"57849","_from":"36612","_to":"36606"} +{"$label":"ACTS_IN","name":"Tiffany Nickle","type":"Role","_key":"57848","_from":"36611","_to":"36606"} +{"$label":"ACTS_IN","name":"Nicky","type":"Role","_key":"57847","_from":"36610","_to":"36606"} +{"$label":"ACTS_IN","name":"Mullet Boy","type":"Role","_key":"57844","_from":"36609","_to":"36606"} +{"$label":"ACTS_IN","name":"Lucas Nickle","type":"Role","_key":"57841","_from":"36608","_to":"36606"} +{"$label":"DIRECTED","_key":"57831","_from":"36607","_to":"36606"} +{"$label":"DIRECTED","_key":"90486","_from":"36607","_to":"53459"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"103533","_from":"36610","_to":"60904"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"113842","_from":"36611","_to":"67053"} +{"$label":"ACTS_IN","name":"Eddy the Cow","type":"Role","_key":"57861","_from":"36612","_to":"36614"} +{"$label":"ACTS_IN","name":"Prissypeo (voice)","type":"Role","_key":"102586","_from":"36613","_to":"60357"} +{"$label":"ACTS_IN","name":"Mrs. Beady","type":"Role","_key":"57871","_from":"36621","_to":"36614"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"57870","_from":"36620","_to":"36614"} +{"$label":"ACTS_IN","name":"Root the Rooster","type":"Role","_key":"57869","_from":"36619","_to":"36614"} +{"$label":"ACTS_IN","name":"Maddy the Chick","type":"Role","_key":"57868","_from":"36618","_to":"36614"} +{"$label":"ACTS_IN","name":"Pig the Pig","type":"Role","_key":"57866","_from":"36617","_to":"36614"} +{"$label":"ACTS_IN","name":"Duke the Dog","type":"Role","_key":"57865","_from":"36616","_to":"36614"} +{"$label":"ACTS_IN","name":"Freddy the Ferret","type":"Role","_key":"57863","_from":"36615","_to":"36614"} +{"$label":"ACTS_IN","name":"Perry Greavy","type":"Role","_key":"120264","_from":"36617","_to":"70619"} +{"$label":"ACTS_IN","name":"Hulk","type":"Role","_key":"101098","_from":"36620","_to":"59566"} +{"$label":"ACTS_IN","name":"The Hulk","type":"Role","_key":"101087","_from":"36620","_to":"59562"} +{"$label":"ACTS_IN","name":"The Hulk","type":"Role","_key":"101075","_from":"36620","_to":"59555"} +{"$label":"ACTS_IN","name":"8 (voice)","type":"Role","_key":"89007","_from":"36620","_to":"52724"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"109287","_from":"36621","_to":"64565"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"67175","_from":"36621","_to":"41441"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"65765","_from":"36621","_to":"40707"} +{"$label":"DIRECTED","_key":"57878","_from":"36624","_to":"36623"} +{"$label":"ACTS_IN","name":"Mitch","type":"Role","_key":"57902","_from":"36633","_to":"36625"} +{"$label":"ACTS_IN","name":"Brandon's Dad","type":"Role","_key":"57901","_from":"36632","_to":"36625"} +{"$label":"ACTS_IN","name":"Coach","type":"Role","_key":"57900","_from":"36631","_to":"36625"} +{"$label":"ACTS_IN","name":"Brandon's Mom","type":"Role","_key":"57899","_from":"36630","_to":"36625"} +{"$label":"ACTS_IN","name":"Amir","type":"Role","_key":"57896","_from":"36629","_to":"36625"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"57895","_from":"36628","_to":"36625"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"57894","_from":"36627","_to":"36625"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"57893","_from":"36626","_to":"36625"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"103872","_from":"36629","_to":"61091"} +{"$label":"ACTS_IN","name":"Lorraine (as Denise Galik-Furey)","type":"Role","_key":"108427","_from":"36630","_to":"64098"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"107818","_from":"36633","_to":"63675"} +{"$label":"ACTS_IN","name":"Manning's Lawyer","type":"Role","_key":"57924","_from":"36646","_to":"36634"} +{"$label":"ACTS_IN","name":"Walter Furlong","type":"Role","_key":"57923","_from":"36645","_to":"36634"} +{"$label":"ACTS_IN","name":"Manning","type":"Role","_key":"57922","_from":"36644","_to":"36634"} +{"$label":"ACTS_IN","name":"Kid 3","type":"Role","_key":"57921","_from":"36643","_to":"36634"} +{"$label":"ACTS_IN","name":"Radio Reporter","type":"Role","_key":"57920","_from":"36642","_to":"36634"} +{"$label":"ACTS_IN","name":"Bryant's Wife","type":"Role","_key":"57919","_from":"36641","_to":"36634"} +{"$label":"ACTS_IN","name":"Kid 1","type":"Role","_key":"57917","_from":"36640","_to":"36634"} +{"$label":"ACTS_IN","name":"Kid 2","type":"Role","_key":"57916","_from":"36639","_to":"36634"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"57915","_from":"36638","_to":"36634"} +{"$label":"ACTS_IN","name":"Subaru Kid 2","type":"Role","_key":"57914","_from":"36637","_to":"36634"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"57913","_from":"36636","_to":"36634"} +{"$label":"ACTS_IN","name":"Subaru Kid 3","type":"Role","_key":"57912","_from":"36635","_to":"36634"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"57945","_from":"36664","_to":"36647"} +{"$label":"ACTS_IN","name":"Purser","type":"Role","_key":"57944","_from":"36663","_to":"36647"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"57943","_from":"36662","_to":"36647"} +{"$label":"ACTS_IN","name":"Burt's Neighbour","type":"Role","_key":"57942","_from":"36661","_to":"36647"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"57940","_from":"36660","_to":"36647"} +{"$label":"ACTS_IN","name":"Burt's Neighbour","type":"Role","_key":"57939","_from":"36659","_to":"36647"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"57938","_from":"36658","_to":"36647"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"57937","_from":"36657","_to":"36647"} +{"$label":"ACTS_IN","name":"Cook","type":"Role","_key":"57936","_from":"36656","_to":"36647"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"57934","_from":"36655","_to":"36647"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"57933","_from":"36654","_to":"36647"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"57932","_from":"36653","_to":"36647"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"57931","_from":"36652","_to":"36647"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"57930","_from":"36651","_to":"36647"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"57929","_from":"36650","_to":"36647"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"57928","_from":"36649","_to":"36647"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"57927","_from":"36648","_to":"36647"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"91759","_from":"36655","_to":"54126"} +{"$label":"ACTS_IN","name":"Billy Newwood","type":"Role","_key":"65596","_from":"36655","_to":"40653"} +{"$label":"ACTS_IN","name":"Mama Cecile","type":"Role","_key":"57966","_from":"36678","_to":"36665"} +{"$label":"ACTS_IN","name":"Papa Justify","type":"Role","_key":"57965","_from":"36677","_to":"36665"} +{"$label":"ACTS_IN","name":"Creole Mother","type":"Role","_key":"57964","_from":"36676","_to":"36665"} +{"$label":"ACTS_IN","name":"Nurse Audrey","type":"Role","_key":"57962","_from":"36675","_to":"36665"} +{"$label":"ACTS_IN","name":"Martin Thorpe","type":"Role","_key":"57961","_from":"36674","_to":"36665"} +{"$label":"ACTS_IN","name":"Grace Thorpe","type":"Role","_key":"57960","_from":"36673","_to":"36665"} +{"$label":"ACTS_IN","name":"Robertson Thorpe","type":"Role","_key":"57959","_from":"36672","_to":"36665"} +{"$label":"ACTS_IN","name":"Madeleine Thorpe","type":"Role","_key":"57958","_from":"36671","_to":"36665"} +{"$label":"ACTS_IN","name":"Nurse Trula","type":"Role","_key":"57957","_from":"36670","_to":"36665"} +{"$label":"ACTS_IN","name":"C.N.A.","type":"Role","_key":"57956","_from":"36669","_to":"36665"} +{"$label":"ACTS_IN","name":"Hallie","type":"Role","_key":"57954","_from":"36668","_to":"36665"} +{"$label":"ACTS_IN","name":"Mama Cynthia","type":"Role","_key":"57953","_from":"36667","_to":"36665"} +{"$label":"ACTS_IN","name":"Bayou Woman","type":"Role","_key":"57952","_from":"36666","_to":"36665"} +{"$label":"ACTS_IN","name":"Mark Baker","type":"Role","_key":"67250","_from":"36674","_to":"41460"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"57986","_from":"36692","_to":"36679"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"57985","_from":"36691","_to":"36679"} +{"$label":"ACTS_IN","name":"Jack's Girlfriend","type":"Role","_key":"57984","_from":"36690","_to":"36679"} +{"$label":"ACTS_IN","name":"Male Cab Driver","type":"Role","_key":"57983","_from":"36689","_to":"36679"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"57982","_from":"36688","_to":"36679"} +{"$label":"ACTS_IN","name":"Jack's Secretary","type":"Role","_key":"57981","_from":"36687","_to":"36679"} +{"$label":"ACTS_IN","name":"Urick","type":"Role","_key":"57980","_from":"36686","_to":"36679"} +{"$label":"ACTS_IN","name":"Chambers","type":"Role","_key":"57978","_from":"36685","_to":"36679"} +{"$label":"ACTS_IN","name":"Schmitt","type":"Role","_key":"57977","_from":"36684","_to":"36679"} +{"$label":"ACTS_IN","name":"Seaka","type":"Role","_key":"57976","_from":"36683","_to":"36679"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"57973","_from":"36682","_to":"36679"} +{"$label":"ACTS_IN","name":"Anya","type":"Role","_key":"57972","_from":"36681","_to":"36679"} +{"$label":"ACTS_IN","name":"Amanda Foster","type":"Role","_key":"57971","_from":"36680","_to":"36679"} +{"$label":"ACTS_IN","name":"Mina","type":"Role","_key":"110970","_from":"36680","_to":"65545"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"102880","_from":"36680","_to":"60513"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"98731","_from":"36680","_to":"58186"} +{"$label":"ACTS_IN","name":"Mr. Big","type":"Role","_key":"58173","_from":"36683","_to":"36795"} +{"$label":"ACTS_IN","name":"Detective Lambert","type":"Role","_key":"59936","_from":"36686","_to":"37835"} +{"$label":"ACTS_IN","name":"Florin","type":"Role","_key":"105678","_from":"36689","_to":"62198"} +{"$label":"ACTS_IN","name":"Joe Littlefeet","type":"Role","_key":"58000","_from":"36699","_to":"36693"} +{"$label":"ACTS_IN","name":"Boxing Announcer","type":"Role","_key":"57999","_from":"36698","_to":"36693"} +{"$label":"ACTS_IN","name":"Petersen","type":"Role","_key":"57998","_from":"36697","_to":"36693"} +{"$label":"ACTS_IN","name":"Stripper","type":"Role","_key":"57997","_from":"36696","_to":"36693"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"57996","_from":"36695","_to":"36693"} +{"$label":"DIRECTED","_key":"57988","_from":"36694","_to":"36693"} +{"$label":"ACTS_IN","name":"Elderly Woman","type":"Role","_key":"58022","_from":"36713","_to":"36700"} +{"$label":"ACTS_IN","name":"Cleet Kai","type":"Role","_key":"58021","_from":"36712","_to":"36700"} +{"$label":"ACTS_IN","name":"Cullen","type":"Role","_key":"58020","_from":"36711","_to":"36700"} +{"$label":"ACTS_IN","name":"Glynnis","type":"Role","_key":"58019","_from":"36710","_to":"36700"} +{"$label":"ACTS_IN","name":"Elen Forbes","type":"Role","_key":"58017","_from":"36709","_to":"36700"} +{"$label":"ACTS_IN","name":"Bletsung McLeod","type":"Role","_key":"58016","_from":"36708","_to":"36700"} +{"$label":"ACTS_IN","name":"Lilybet","type":"Role","_key":"58015","_from":"36707","_to":"36700"} +{"$label":"ACTS_IN","name":"Fia Forbes","type":"Role","_key":"58009","_from":"36706","_to":"36700"} +{"$label":"ACTS_IN","name":"Cadi Forbes","type":"Role","_key":"58008","_from":"36705","_to":"36700"} +{"$label":"ACTS_IN","name":"Brogan Kai","type":"Role","_key":"58007","_from":"36704","_to":"36700"} +{"$label":"ACTS_IN","name":"Angor Forbes","type":"Role","_key":"58006","_from":"36703","_to":"36700"} +{"$label":"ACTS_IN","name":"Fagan Kai","type":"Role","_key":"58005","_from":"36702","_to":"36700"} +{"$label":"DIRECTED","_key":"58002","_from":"36701","_to":"36700"} +{"$label":"DIRECTED","_key":"108349","_from":"36701","_to":"64047"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"106793","_from":"36702","_to":"62951"} +{"$label":"ACTS_IN","name":"Fermat","type":"Role","_key":"101140","_from":"36702","_to":"59587"} +{"$label":"ACTS_IN","name":"Rhonda Reynolds","type":"Role","_key":"66645","_from":"36708","_to":"41189"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"64662","_from":"36708","_to":"40278"} +{"$label":"ACTS_IN","name":"Alison Blanchard","type":"Role","_key":"60474","_from":"36710","_to":"38147"} +{"$label":"ACTS_IN","name":"Look-A-Like","type":"Role","_key":"58043","_from":"36728","_to":"36714"} +{"$label":"ACTS_IN","name":"Newscaster #3","type":"Role","_key":"58042","_from":"36727","_to":"36714"} +{"$label":"ACTS_IN","name":"Bank Woman","type":"Role","_key":"58041","_from":"36726","_to":"36714"} +{"$label":"ACTS_IN","name":"Gangster #1","type":"Role","_key":"58040","_from":"36725","_to":"36714"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"58039","_from":"36724","_to":"36714"} +{"$label":"ACTS_IN","name":"Black Security Guard","type":"Role","_key":"58038","_from":"36723","_to":"36714"} +{"$label":"ACTS_IN","name":"White Security Guard","type":"Role","_key":"58036","_from":"36722","_to":"36714"} +{"$label":"ACTS_IN","name":"Gangster #2","type":"Role","_key":"58035","_from":"36721","_to":"36714"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"58034","_from":"36720","_to":"36714"} +{"$label":"ACTS_IN","name":"Rock","type":"Role","_key":"58033","_from":"36719","_to":"36714"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"58032","_from":"36718","_to":"36714"} +{"$label":"ACTS_IN","name":"Fencing House Lady","type":"Role","_key":"58031","_from":"36717","_to":"36714"} +{"$label":"ACTS_IN","name":"Newscaster #1","type":"Role","_key":"58030","_from":"36716","_to":"36714"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"58027","_from":"36715","_to":"36714"} +{"$label":"ACTS_IN","name":"David Palacio","type":"Role","_key":"58064","_from":"36739","_to":"36729"} +{"$label":"ACTS_IN","name":"Dick Myers","type":"Role","_key":"58063","_from":"36738","_to":"36729"} +{"$label":"ACTS_IN","name":"Louis 'Flip' Baudoin","type":"Role","_key":"58062","_from":"36737","_to":"36729"} +{"$label":"ACTS_IN","name":"Togo Railey","type":"Role","_key":"58058","_from":"36736","_to":"36729"} +{"$label":"ACTS_IN","name":"Nevil Shed","type":"Role","_key":"58057","_from":"36735","_to":"36729"} +{"$label":"ACTS_IN","name":"Ross Moore","type":"Role","_key":"58056","_from":"36734","_to":"36729"} +{"$label":"ACTS_IN","name":"Orsten Artis","type":"Role","_key":"58054","_from":"36733","_to":"36729"} +{"$label":"ACTS_IN","name":"David Lattin","type":"Role","_key":"58053","_from":"36732","_to":"36729"} +{"$label":"ACTS_IN","name":"Willie Worsley","type":"Role","_key":"58051","_from":"36731","_to":"36729"} +{"$label":"DIRECTED","_key":"58044","_from":"36730","_to":"36729"} +{"$label":"ACTS_IN","name":"Billy Marsh","type":"Role","_key":"98909","_from":"36731","_to":"58276"} +{"$label":"ACTS_IN","name":"Bucky","type":"Role","_key":"102925","_from":"36733","_to":"60545"} +{"$label":"ACTS_IN","name":"Red Webster","type":"Role","_key":"61154","_from":"36734","_to":"38646"} +{"$label":"ACTS_IN","name":"Bachman","type":"Role","_key":"60530","_from":"36738","_to":"38203"} +{"$label":"ACTS_IN","name":"Medical Tech 1","type":"Role","_key":"58091","_from":"36757","_to":"36741"} +{"$label":"ACTS_IN","name":"L.L.D.D. Guard","type":"Role","_key":"58090","_from":"36756","_to":"36741"} +{"$label":"ACTS_IN","name":"Daxus Aide 2","type":"Role","_key":"58089","_from":"36755","_to":"36741"} +{"$label":"ACTS_IN","name":"Hospital Hemophage","type":"Role","_key":"58088","_from":"36754","_to":"36741"} +{"$label":"ACTS_IN","name":"Daxus Aide 1","type":"Role","_key":"58087","_from":"36753","_to":"36741"} +{"$label":"ACTS_IN","name":"Chief of Staff","type":"Role","_key":"58086","_from":"36752","_to":"36741"} +{"$label":"ACTS_IN","name":"Rebel Hemophage","type":"Role","_key":"58085","_from":"36751","_to":"36741"} +{"$label":"ACTS_IN","name":"Elizabeth P. Watkins","type":"Role","_key":"58084","_from":"36750","_to":"36741"} +{"$label":"ACTS_IN","name":"Young Daxus","type":"Role","_key":"58083","_from":"36749","_to":"36741"} +{"$label":"ACTS_IN","name":"Detective Cross","type":"Role","_key":"58082","_from":"36748","_to":"36741"} +{"$label":"ACTS_IN","name":"Detective Breeder","type":"Role","_key":"58081","_from":"36747","_to":"36741"} +{"$label":"ACTS_IN","name":"Violet's Husband","type":"Role","_key":"58080","_from":"36746","_to":"36741"} +{"$label":"ACTS_IN","name":"BF-1","type":"Role","_key":"58079","_from":"36745","_to":"36741"} +{"$label":"ACTS_IN","name":"Detective Endera","type":"Role","_key":"58078","_from":"36744","_to":"36741"} +{"$label":"ACTS_IN","name":"Nerva","type":"Role","_key":"58077","_from":"36743","_to":"36741"} +{"$label":"ACTS_IN","name":"Young Violet","type":"Role","_key":"58076","_from":"36742","_to":"36741"} +{"$label":"ACTS_IN","name":"Soundguy","type":"Role","_key":"58563","_from":"36754","_to":"36999"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"58112","_from":"36773","_to":"36758"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"58111","_from":"36772","_to":"36758"} +{"$label":"ACTS_IN","name":"Lamar","type":"Role","_key":"58110","_from":"36771","_to":"36758"} +{"$label":"ACTS_IN","name":"A.J.","type":"Role","_key":"58109","_from":"36770","_to":"36758"} +{"$label":"ACTS_IN","name":"Mikey's Father","type":"Role","_key":"58108","_from":"36769","_to":"36758"} +{"$label":"ACTS_IN","name":"Little Mikey","type":"Role","_key":"58107","_from":"36768","_to":"36758"} +{"$label":"ACTS_IN","name":"Anthony - age 7","type":"Role","_key":"58106","_from":"36767","_to":"36758"} +{"$label":"ACTS_IN","name":"Real Estate Agent","type":"Role","_key":"58105","_from":"36766","_to":"36758"} +{"$label":"ACTS_IN","name":"Mikey's Mother","type":"Role","_key":"58104","_from":"36765","_to":"36758"} +{"$label":"ACTS_IN","name":"Man in Hotel","type":"Role","_key":"58103","_from":"36764","_to":"36758"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"58102","_from":"36763","_to":"36758"} +{"$label":"ACTS_IN","name":"Anthony - Age 3","type":"Role","_key":"58101","_from":"36762","_to":"36758"} +{"$label":"ACTS_IN","name":"Precious","type":"Role","_key":"58100","_from":"36761","_to":"36758"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"58099","_from":"36760","_to":"36758"} +{"$label":"ACTS_IN","name":"Neisha","type":"Role","_key":"58098","_from":"36759","_to":"36758"} +{"$label":"ACTS_IN","name":"Taffy","type":"Role","_key":"96869","_from":"36759","_to":"56966"} +{"$label":"ACTS_IN","name":"Lashandra Davis","type":"Role","_key":"58127","_from":"36759","_to":"36776"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"94785","_from":"36761","_to":"55823"} +{"$label":"ACTS_IN","name":"Lateesha Rodriguez","type":"Role","_key":"58124","_from":"36761","_to":"36776"} +{"$label":"ACTS_IN","name":"Bridge City Mayor","type":"Role","_key":"58117","_from":"36775","_to":"36774"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58129","_from":"36779","_to":"36776"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58126","_from":"36778","_to":"36776"} +{"$label":"ACTS_IN","name":"Alf","type":"Role","_key":"58125","_from":"36777","_to":"36776"} +{"$label":"ACTS_IN","name":"Holden","type":"Role","_key":"98755","_from":"36778","_to":"58198"} +{"$label":"ACTS_IN","name":"Autograph Hound","type":"Role","_key":"58160","_from":"36794","_to":"36780"} +{"$label":"ACTS_IN","name":"Newscaster #1","type":"Role","_key":"58159","_from":"36793","_to":"36780"} +{"$label":"ACTS_IN","name":"Demar","type":"Role","_key":"58158","_from":"36792","_to":"36780"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"58157","_from":"36791","_to":"36780"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"58156","_from":"36790","_to":"36780"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"58155","_from":"36789","_to":"36780"} +{"$label":"ACTS_IN","name":"Jessie Otero","type":"Role","_key":"58154","_from":"36788","_to":"36780"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"58153","_from":"36787","_to":"36780"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"58152","_from":"36786","_to":"36780"} +{"$label":"ACTS_IN","name":"Clarence Bowden","type":"Role","_key":"58151","_from":"36785","_to":"36780"} +{"$label":"ACTS_IN","name":"Casey Bledsoe","type":"Role","_key":"58150","_from":"36784","_to":"36780"} +{"$label":"ACTS_IN","name":"High Dog","type":"Role","_key":"58149","_from":"36783","_to":"36780"} +{"$label":"ACTS_IN","name":"Terrell Singletery","type":"Role","_key":"58146","_from":"36782","_to":"36780"} +{"$label":"ACTS_IN","name":"Detective Teague","type":"Role","_key":"58145","_from":"36781","_to":"36780"} +{"$label":"ACTS_IN","name":"Action Man","type":"Role","_key":"110081","_from":"36784","_to":"65052"} +{"$label":"ACTS_IN","name":"Action Man","type":"Role","_key":"110079","_from":"36784","_to":"65050"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"60324","_from":"36785","_to":"38046"} +{"$label":"ACTS_IN","name":"Hand Ninja #2","type":"Role","_key":"58361","_from":"36786","_to":"36877"} +{"$label":"ACTS_IN","name":"Norad General #1","type":"Role","_key":"93271","_from":"36790","_to":"54939"} +{"$label":"ACTS_IN","name":"Ridiculuz","type":"Role","_key":"119485","_from":"36791","_to":"70191"} +{"$label":"ACTS_IN","name":"Retarted Party Guest","type":"Role","_key":"58177","_from":"36804","_to":"36795"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"58176","_from":"36803","_to":"36795"} +{"$label":"ACTS_IN","name":"Vlad","type":"Role","_key":"58175","_from":"36802","_to":"36795"} +{"$label":"ACTS_IN","name":"Business Man","type":"Role","_key":"58174","_from":"36801","_to":"36795"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"58172","_from":"36800","_to":"36795"} +{"$label":"ACTS_IN","name":"Stan Martin","type":"Role","_key":"58171","_from":"36799","_to":"36795"} +{"$label":"ACTS_IN","name":"MM. Virginia","type":"Role","_key":"58170","_from":"36798","_to":"36795"} +{"$label":"ACTS_IN","name":"Denis Slater","type":"Role","_key":"58169","_from":"36797","_to":"36795"} +{"$label":"DIRECTED","_key":"58161","_from":"36796","_to":"36795"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"111373","_from":"36797","_to":"65768"} +{"$label":"ACTS_IN","name":"Ira","type":"Role","_key":"102042","_from":"36797","_to":"60035"} +{"$label":"ACTS_IN","name":"Shakey","type":"Role","_key":"91731","_from":"36797","_to":"54107"} +{"$label":"ACTS_IN","name":"Tiny Shorts Guy","type":"Role","_key":"65587","_from":"36797","_to":"40642"} +{"$label":"ACTS_IN","name":"Kids Korner Salesman","type":"Role","_key":"67765","_from":"36804","_to":"41653"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"58196","_from":"36815","_to":"36805"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"58195","_from":"36814","_to":"36805"} +{"$label":"ACTS_IN","name":"Ringmaster","type":"Role","_key":"58194","_from":"36813","_to":"36805"} +{"$label":"ACTS_IN","name":"Strongman \/ Kagan Vampire Guard #3","type":"Role","_key":"58193","_from":"36812","_to":"36805"} +{"$label":"ACTS_IN","name":"Rayne's Mother","type":"Role","_key":"58192","_from":"36811","_to":"36805"} +{"$label":"ACTS_IN","name":"Rayne - Age 5","type":"Role","_key":"58191","_from":"36810","_to":"36805"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"58190","_from":"36809","_to":"36805"} +{"$label":"ACTS_IN","name":"Rok","type":"Role","_key":"58189","_from":"36808","_to":"36805"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"58187","_from":"36807","_to":"36805"} +{"$label":"ACTS_IN","name":"Domastir","type":"Role","_key":"58183","_from":"36806","_to":"36805"} +{"$label":"ACTS_IN","name":"Sgt. Hall","type":"Role","_key":"118455","_from":"36806","_to":"69639"} +{"$label":"ACTS_IN","name":"Max Seed","type":"Role","_key":"104396","_from":"36806","_to":"61413"} +{"$label":"ACTS_IN","name":"Agent Miles","type":"Role","_key":"88266","_from":"36806","_to":"52358"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"67613","_from":"36806","_to":"41614"} +{"$label":"ACTS_IN","name":"John Dillon","type":"Role","_key":"88268","_from":"36807","_to":"52358"} +{"$label":"ACTS_IN","name":"Rival Tribe Indian Brave","type":"Role","_key":"64635","_from":"36812","_to":"40258"} +{"$label":"ACTS_IN","name":"Mr. Henderson","type":"Role","_key":"58219","_from":"36828","_to":"36816"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"58217","_from":"36827","_to":"36816"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"58216","_from":"36826","_to":"36816"} +{"$label":"ACTS_IN","name":"David Patrick","type":"Role","_key":"58215","_from":"36825","_to":"36816"} +{"$label":"ACTS_IN","name":"Steve Levy","type":"Role","_key":"58214","_from":"36824","_to":"36816"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"58213","_from":"36823","_to":"36816"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"58212","_from":"36822","_to":"36816"} +{"$label":"ACTS_IN","name":"Paulie","type":"Role","_key":"58210","_from":"36821","_to":"36816"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"58208","_from":"36820","_to":"36816"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"58207","_from":"36819","_to":"36816"} +{"$label":"ACTS_IN","name":"Stavi","type":"Role","_key":"58203","_from":"36818","_to":"36816"} +{"$label":"DIRECTED","_key":"58199","_from":"36817","_to":"36816"} +{"$label":"DIRECTED","_key":"99368","_from":"36817","_to":"58552"} +{"$label":"ACTS_IN","name":"Mr. Marlin","type":"Role","_key":"60604","_from":"36828","_to":"38253"} +{"$label":"ACTS_IN","name":"Kleopatra (voice)","type":"Role","_key":"58232","_from":"36832","_to":"36830"} +{"$label":"DIRECTED","_key":"58227","_from":"36831","_to":"36830"} +{"$label":"DIRECTED","_key":"58250","_from":"36836","_to":"36835"} +{"$label":"DIRECTED","_key":"58252","_from":"36838","_to":"36837"} +{"$label":"DIRECTED","_key":"58263","_from":"36847","_to":"36839"} +{"$label":"DIRECTED","_key":"58262","_from":"36846","_to":"36839"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"58261","_from":"36845","_to":"36839"} +{"$label":"ACTS_IN","name":"Che","type":"Role","_key":"58260","_from":"36844","_to":"36839"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"58259","_from":"36843","_to":"36839"} +{"$label":"ACTS_IN","name":"Det. Noriega","type":"Role","_key":"58258","_from":"36842","_to":"36839"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"58257","_from":"36841","_to":"36839"} +{"$label":"ACTS_IN","name":"Navarro","type":"Role","_key":"58255","_from":"36840","_to":"36839"} +{"$label":"ACTS_IN","name":"Morgue Clerk","type":"Role","_key":"58278","_from":"36855","_to":"36848"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"58277","_from":"36854","_to":"36848"} +{"$label":"ACTS_IN","name":"Gen. Mayhem","type":"Role","_key":"58276","_from":"36853","_to":"36848"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"58273","_from":"36852","_to":"36848"} +{"$label":"ACTS_IN","name":"Josh McCoy","type":"Role","_key":"58272","_from":"36851","_to":"36848"} +{"$label":"ACTS_IN","name":"Lola Tanner","type":"Role","_key":"58270","_from":"36850","_to":"36848"} +{"$label":"ACTS_IN","name":"Capt. Connelly","type":"Role","_key":"58268","_from":"36849","_to":"36848"} +{"$label":"ACTS_IN","name":"Mike Tobacco","type":"Role","_key":"108520","_from":"36851","_to":"64143"} +{"$label":"ACTS_IN","name":"Buzzy","type":"Role","_key":"58288","_from":"36855","_to":"36857"} +{"$label":"DIRECTED","_key":"58298","_from":"36864","_to":"36857"} +{"$label":"ACTS_IN","name":"Buzzy's Flashback Girl","type":"Role","_key":"58294","_from":"36863","_to":"36857"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"58293","_from":"36862","_to":"36857"} +{"$label":"ACTS_IN","name":"Tammy Rae","type":"Role","_key":"58287","_from":"36861","_to":"36857"} +{"$label":"ACTS_IN","name":"Angela Caruso","type":"Role","_key":"58286","_from":"36860","_to":"36857"} +{"$label":"ACTS_IN","name":"Parker Jameson","type":"Role","_key":"58285","_from":"36859","_to":"36857"} +{"$label":"ACTS_IN","name":"Ms. Hendricks","type":"Role","_key":"58284","_from":"36858","_to":"36857"} +{"$label":"ACTS_IN","name":"Jenny Whiteman","type":"Role","_key":"58303","_from":"36866","_to":"36865"} +{"$label":"ACTS_IN","name":"Haywood","type":"Role","_key":"58317","_from":"36871","_to":"36867"} +{"$label":"ACTS_IN","name":"Harry Doyle","type":"Role","_key":"58315","_from":"36870","_to":"36867"} +{"$label":"ACTS_IN","name":"Suzanne Dorn","type":"Role","_key":"58314","_from":"36869","_to":"36867"} +{"$label":"ACTS_IN","name":"Rachel Phelps","type":"Role","_key":"58309","_from":"36868","_to":"36867"} +{"$label":"ACTS_IN","name":"Holly Stevenson","type":"Role","_key":"103318","_from":"36868","_to":"60782"} +{"$label":"ACTS_IN","name":"Catherine Palin","type":"Role","_key":"63711","_from":"36868","_to":"39837"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"60199","_from":"36868","_to":"37979"} +{"$label":"ACTS_IN","name":"Vera Prescott","type":"Role","_key":"59516","_from":"36868","_to":"37578"} +{"$label":"ACTS_IN","name":"Harry Doyle","type":"Role","_key":"67681","_from":"36870","_to":"41630"} +{"$label":"ACTS_IN","name":"Jan Valek","type":"Role","_key":"58334","_from":"36875","_to":"36874"} +{"$label":"ACTS_IN","name":"Brandon Miller","type":"Role","_key":"114778","_from":"36875","_to":"67606"} +{"$label":"ACTS_IN","name":"General Taligaro","type":"Role","_key":"114122","_from":"36875","_to":"67211"} +{"$label":"ACTS_IN","name":"Terry Silver","type":"Role","_key":"63675","_from":"36875","_to":"39827"} +{"$label":"ACTS_IN","name":"Young Elektra's Mother","type":"Role","_key":"58365","_from":"36887","_to":"36877"} +{"$label":"ACTS_IN","name":"Nikolas Natchios","type":"Role","_key":"58363","_from":"36886","_to":"36877"} +{"$label":"ACTS_IN","name":"Roshi Servant","type":"Role","_key":"58362","_from":"36885","_to":"36877"} +{"$label":"ACTS_IN","name":"Pool Shark","type":"Role","_key":"58360","_from":"36884","_to":"36877"} +{"$label":"ACTS_IN","name":"Young Elektra","type":"Role","_key":"58359","_from":"36883","_to":"36877"} +{"$label":"ACTS_IN","name":"Meizumi","type":"Role","_key":"58358","_from":"36882","_to":"36877"} +{"$label":"ACTS_IN","name":"Tattoo","type":"Role","_key":"58355","_from":"36881","_to":"36877"} +{"$label":"ACTS_IN","name":"Kinkou","type":"Role","_key":"58354","_from":"36880","_to":"36877"} +{"$label":"ACTS_IN","name":"Abby Miller","type":"Role","_key":"58352","_from":"36879","_to":"36877"} +{"$label":"ACTS_IN","name":"Kirigi","type":"Role","_key":"58348","_from":"36878","_to":"36877"} +{"$label":"ACTS_IN","name":"Det. Ben Lock","type":"Role","_key":"104263","_from":"36884","_to":"61344"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"58381","_from":"36895","_to":"36888"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"58380","_from":"36894","_to":"36888"} +{"$label":"ACTS_IN","name":"Lyle","type":"Role","_key":"58375","_from":"36893","_to":"36888"} +{"$label":"ACTS_IN","name":"Copper","type":"Role","_key":"58374","_from":"36892","_to":"36888"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"58373","_from":"36891","_to":"36888"} +{"$label":"ACTS_IN","name":"Granny Rose","type":"Role","_key":"58372","_from":"36890","_to":"36888"} +{"$label":"DIRECTED","_key":"58366","_from":"36889","_to":"36888"} +{"$label":"DIRECTED","_key":"95725","_from":"36889","_to":"56304"} +{"$label":"DIRECTED","_key":"66546","_from":"36889","_to":"41140"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"59411","_from":"36894","_to":"37525"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"58401","_from":"36915","_to":"36896"} +{"$label":"ACTS_IN","name":"Yumi's Voice","type":"Role","_key":"58400","_from":"36914","_to":"36896"} +{"$label":"ACTS_IN","name":"Police Man B","type":"Role","_key":"58399","_from":"36913","_to":"36896"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"58398","_from":"36912","_to":"36896"} +{"$label":"ACTS_IN","name":"Police Man A","type":"Role","_key":"58397","_from":"36911","_to":"36896"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"58396","_from":"36910","_to":"36896"} +{"$label":"ACTS_IN","name":"Client","type":"Role","_key":"58395","_from":"36909","_to":"36896"} +{"$label":"ACTS_IN","name":"Make-up girl","type":"Role","_key":"58394","_from":"36908","_to":"36896"} +{"$label":"ACTS_IN","name":"Motorcycle Man","type":"Role","_key":"58393","_from":"36907","_to":"36896"} +{"$label":"ACTS_IN","name":"Assistant Photographer","type":"Role","_key":"58392","_from":"36906","_to":"36896"} +{"$label":"ACTS_IN","name":"Strange Man","type":"Role","_key":"58391","_from":"36905","_to":"36896"} +{"$label":"ACTS_IN","name":"Ghost","type":"Role","_key":"58390","_from":"36904","_to":"36896"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"58389","_from":"36903","_to":"36896"} +{"$label":"ACTS_IN","name":"Police Man","type":"Role","_key":"58388","_from":"36902","_to":"36896"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"58387","_from":"36901","_to":"36896"} +{"$label":"ACTS_IN","name":"Amanda Ross","type":"Role","_key":"58386","_from":"36900","_to":"36896"} +{"$label":"ACTS_IN","name":"Yumi","type":"Role","_key":"58385","_from":"36899","_to":"36896"} +{"$label":"ACTS_IN","name":"Greg Ross","type":"Role","_key":"58384","_from":"36898","_to":"36896"} +{"$label":"DIRECTED","_key":"58383","_from":"36897","_to":"36896"} +{"$label":"ACTS_IN","name":"Losing Gambler","type":"Role","_key":"106802","_from":"36914","_to":"62951"} +{"$label":"ACTS_IN","name":"Henry Kelsey","type":"Role","_key":"58422","_from":"36923","_to":"36916"} +{"$label":"ACTS_IN","name":"Pissaro","type":"Role","_key":"58421","_from":"36922","_to":"36916"} +{"$label":"ACTS_IN","name":"Alessandro Tedeschi","type":"Role","_key":"58417","_from":"36921","_to":"36916"} +{"$label":"ACTS_IN","name":"Henry Fiuli","type":"Role","_key":"58416","_from":"36920","_to":"36916"} +{"$label":"ACTS_IN","name":"Mike Belaggio","type":"Role","_key":"58415","_from":"36919","_to":"36916"} +{"$label":"ACTS_IN","name":"Joe Bellini","type":"Role","_key":"58411","_from":"36918","_to":"36916"} +{"$label":"ACTS_IN","name":"Tom Napoli","type":"Role","_key":"58406","_from":"36917","_to":"36916"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58431","_from":"36931","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58430","_from":"36930","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58429","_from":"36929","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58428","_from":"36928","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58425","_from":"36927","_to":"36924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58424","_from":"36926","_to":"36924"} +{"$label":"DIRECTED","_key":"58423","_from":"36925","_to":"36924"} +{"$label":"ACTS_IN","name":"Procet","type":"Role","_key":"58451","_from":"36946","_to":"36932"} +{"$label":"ACTS_IN","name":"Phisit","type":"Role","_key":"58450","_from":"36945","_to":"36932"} +{"$label":"ACTS_IN","name":"Y.C.","type":"Role","_key":"58449","_from":"36944","_to":"36932"} +{"$label":"ACTS_IN","name":"Walkie Talkie","type":"Role","_key":"58448","_from":"36943","_to":"36932"} +{"$label":"ACTS_IN","name":"Crazy Horse","type":"Role","_key":"58447","_from":"36942","_to":"36932"} +{"$label":"ACTS_IN","name":"Nook the Rock","type":"Role","_key":"58446","_from":"36941","_to":"36932"} +{"$label":"ACTS_IN","name":"Jumbo","type":"Role","_key":"58445","_from":"36940","_to":"36932"} +{"$label":"ACTS_IN","name":"Little Hitler","type":"Role","_key":"58443","_from":"36939","_to":"36932"} +{"$label":"ACTS_IN","name":"U.S. Navy Pilot","type":"Role","_key":"58442","_from":"36938","_to":"36932"} +{"$label":"ACTS_IN","name":"Pathet Lao Guard","type":"Role","_key":"58441","_from":"36937","_to":"36932"} +{"$label":"ACTS_IN","name":"Farkas","type":"Role","_key":"58440","_from":"36936","_to":"36932"} +{"$label":"ACTS_IN","name":"Jet Pilot","type":"Role","_key":"58439","_from":"36935","_to":"36932"} +{"$label":"ACTS_IN","name":"Province Governor","type":"Role","_key":"58438","_from":"36934","_to":"36932"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"58437","_from":"36933","_to":"36932"} +{"$label":"ACTS_IN","name":"Grant the Mechanic","type":"Role","_key":"107271","_from":"36933","_to":"63247"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"64434","_from":"36933","_to":"40148"} +{"$label":"ACTS_IN","name":"Quick Kick","type":"Role","_key":"112190","_from":"36934","_to":"66249"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"102958","_from":"36934","_to":"60559"} +{"$label":"ACTS_IN","name":"Jayson","type":"Role","_key":"94829","_from":"36936","_to":"55842"} +{"$label":"ACTS_IN","name":"Streetcar Girl","type":"Role","_key":"58473","_from":"36962","_to":"36947"} +{"$label":"ACTS_IN","name":"Old Man #2","type":"Role","_key":"58472","_from":"36961","_to":"36947"} +{"$label":"ACTS_IN","name":"Man #2","type":"Role","_key":"58471","_from":"36960","_to":"36947"} +{"$label":"ACTS_IN","name":"Man #1","type":"Role","_key":"58470","_from":"36959","_to":"36947"} +{"$label":"ACTS_IN","name":"Man #3","type":"Role","_key":"58469","_from":"36958","_to":"36947"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"58468","_from":"36957","_to":"36947"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"58467","_from":"36956","_to":"36947"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"58466","_from":"36955","_to":"36947"} +{"$label":"ACTS_IN","name":"Ruthie","type":"Role","_key":"58465","_from":"36954","_to":"36947"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"58464","_from":"36953","_to":"36947"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"58463","_from":"36952","_to":"36947"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"58462","_from":"36951","_to":"36947"} +{"$label":"ACTS_IN","name":"Streetcar Boy","type":"Role","_key":"58461","_from":"36950","_to":"36947"} +{"$label":"ACTS_IN","name":"Cecil","type":"Role","_key":"58459","_from":"36949","_to":"36947"} +{"$label":"DIRECTED","_key":"58453","_from":"36948","_to":"36947"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"59549","_from":"36949","_to":"37584"} +{"$label":"ACTS_IN","name":"Mr. Hoffman","type":"Role","_key":"58493","_from":"36973","_to":"36963"} +{"$label":"ACTS_IN","name":"Semi-Driver","type":"Role","_key":"58492","_from":"36972","_to":"36963"} +{"$label":"ACTS_IN","name":"Mr. Pennyworth","type":"Role","_key":"58491","_from":"36971","_to":"36963"} +{"$label":"ACTS_IN","name":"Ryan Bael","type":"Role","_key":"58490","_from":"36970","_to":"36963"} +{"$label":"ACTS_IN","name":"Party Kid","type":"Role","_key":"58489","_from":"36969","_to":"36963"} +{"$label":"ACTS_IN","name":"Patrolman Reeve","type":"Role","_key":"58488","_from":"36968","_to":"36963"} +{"$label":"ACTS_IN","name":"Dead Teenage Boy","type":"Role","_key":"58487","_from":"36967","_to":"36963"} +{"$label":"ACTS_IN","name":"Nicky's Bar Waitress","type":"Role","_key":"58486","_from":"36966","_to":"36963"} +{"$label":"ACTS_IN","name":"Reid Garwin","type":"Role","_key":"58485","_from":"36965","_to":"36963"} +{"$label":"ACTS_IN","name":"Tyler Simms","type":"Role","_key":"58480","_from":"36964","_to":"36963"} +{"$label":"ACTS_IN","name":"Joseph Young","type":"Role","_key":"101611","_from":"36964","_to":"59810"} +{"$label":"ACTS_IN","name":"Burke","type":"Role","_key":"118970","_from":"36968","_to":"69921"} +{"$label":"ACTS_IN","name":"Dr. Smith","type":"Role","_key":"114377","_from":"36968","_to":"67373"} +{"$label":"ACTS_IN","name":"Rink Official World Games","type":"Role","_key":"58514","_from":"36981","_to":"36974"} +{"$label":"ACTS_IN","name":"Fox","type":"Role","_key":"58513","_from":"36980","_to":"36974"} +{"$label":"ACTS_IN","name":"Young Jimmy","type":"Role","_key":"58512","_from":"36979","_to":"36974"} +{"$label":"ACTS_IN","name":"Sports Anchor","type":"Role","_key":"58510","_from":"36978","_to":"36974"} +{"$label":"ACTS_IN","name":"Mountie","type":"Role","_key":"58509","_from":"36977","_to":"36974"} +{"$label":"DIRECTED","_key":"58496","_from":"36976","_to":"36974"} +{"$label":"DIRECTED","_key":"58495","_from":"36975","_to":"36974"} +{"$label":"ACTS_IN","name":"Scout Master","type":"Role","_key":"58536","_from":"36988","_to":"36982"} +{"$label":"ACTS_IN","name":"Bartholomew Ender","type":"Role","_key":"58535","_from":"36987","_to":"36982"} +{"$label":"ACTS_IN","name":"Luis's Girl #2","type":"Role","_key":"58534","_from":"36986","_to":"36982"} +{"$label":"ACTS_IN","name":"Whizzy","type":"Role","_key":"58533","_from":"36985","_to":"36982"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"58528","_from":"36984","_to":"36982"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"58527","_from":"36983","_to":"36982"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"103167","_from":"36984","_to":"60682"} +{"$label":"ACTS_IN","name":"Kid Catcher #1 Game #2","type":"Role","_key":"58556","_from":"36998","_to":"36989"} +{"$label":"ACTS_IN","name":"Autograph Kid","type":"Role","_key":"58555","_from":"36997","_to":"36989"} +{"$label":"ACTS_IN","name":"Female Customer","type":"Role","_key":"58554","_from":"36996","_to":"36989"} +{"$label":"ACTS_IN","name":"Marcus Ellwood","type":"Role","_key":"58553","_from":"36995","_to":"36989"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"58552","_from":"36994","_to":"36989"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"58551","_from":"36993","_to":"36989"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"58550","_from":"36992","_to":"36989"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"58547","_from":"36991","_to":"36989"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"58545","_from":"36990","_to":"36989"} +{"$label":"ACTS_IN","name":"Diora","type":"Role","_key":"114410","_from":"36990","_to":"67392"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"61674","_from":"36990","_to":"38852"} +{"$label":"ACTS_IN","name":"Baxter","type":"Role","_key":"60191","_from":"36991","_to":"37970"} +{"$label":"ACTS_IN","name":"Booger","type":"Role","_key":"72382","_from":"36992","_to":"43699"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"94183","_from":"36996","_to":"55461"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"58570","_from":"37010","_to":"36999"} +{"$label":"ACTS_IN","name":"Motorcycle Dick","type":"Role","_key":"58569","_from":"37009","_to":"36999"} +{"$label":"ACTS_IN","name":"Dick #2","type":"Role","_key":"58568","_from":"37008","_to":"36999"} +{"$label":"ACTS_IN","name":"Dick #1","type":"Role","_key":"58567","_from":"37007","_to":"36999"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"58566","_from":"37006","_to":"36999"} +{"$label":"ACTS_IN","name":"Cory","type":"Role","_key":"58565","_from":"37005","_to":"36999"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"58562","_from":"37004","_to":"36999"} +{"$label":"ACTS_IN","name":"Patrick Lewis","type":"Role","_key":"58561","_from":"37003","_to":"36999"} +{"$label":"ACTS_IN","name":"Trinity","type":"Role","_key":"58560","_from":"37002","_to":"36999"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"58559","_from":"37001","_to":"36999"} +{"$label":"DIRECTED","_key":"58558","_from":"37000","_to":"36999"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"58589","_from":"37021","_to":"37011"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"58588","_from":"37020","_to":"37011"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"58587","_from":"37019","_to":"37011"} +{"$label":"ACTS_IN","name":"Vicky \/ Rafik's Sister","type":"Role","_key":"58586","_from":"37018","_to":"37011"} +{"$label":"ACTS_IN","name":"Rafik","type":"Role","_key":"58585","_from":"37017","_to":"37011"} +{"$label":"ACTS_IN","name":"Doreen \/ Rafik's Sister","type":"Role","_key":"58584","_from":"37016","_to":"37011"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"58583","_from":"37015","_to":"37011"} +{"$label":"ACTS_IN","name":"Reverend Longway","type":"Role","_key":"58582","_from":"37014","_to":"37011"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"58575","_from":"37013","_to":"37011"} +{"$label":"DIRECTED","_key":"58571","_from":"37012","_to":"37011"} +{"$label":"DIRECTED","_key":"110375","_from":"37012","_to":"65219"} +{"$label":"DIRECTED","_key":"95829","_from":"37012","_to":"56354"} +{"$label":"DIRECTED","_key":"70037","_from":"37012","_to":"42709"} +{"$label":"ACTS_IN","name":"Sistah Girl","type":"Role","_key":"89175","_from":"37013","_to":"52818"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"73117","_from":"37013","_to":"43978"} +{"$label":"ACTS_IN","name":"Anderson","type":"Role","_key":"59264","_from":"37014","_to":"37434"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"58593","_from":"37024","_to":"37022"} +{"$label":"DIRECTED","_key":"58592","_from":"37023","_to":"37022"} +{"$label":"ACTS_IN","name":"Record Executive","type":"Role","_key":"107516","_from":"37024","_to":"63435"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"58613","_from":"37035","_to":"37025"} +{"$label":"ACTS_IN","name":"Bits","type":"Role","_key":"58612","_from":"37034","_to":"37025"} +{"$label":"ACTS_IN","name":"Floberta","type":"Role","_key":"58611","_from":"37033","_to":"37025"} +{"$label":"ACTS_IN","name":"Blackberry Vendor","type":"Role","_key":"58610","_from":"37032","_to":"37025"} +{"$label":"ACTS_IN","name":"Old Woman","type":"Role","_key":"58609","_from":"37031","_to":"37025"} +{"$label":"ACTS_IN","name":"Big Haired Woman","type":"Role","_key":"58608","_from":"37030","_to":"37025"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"58607","_from":"37029","_to":"37025"} +{"$label":"ACTS_IN","name":"Haggard Woman","type":"Role","_key":"58606","_from":"37028","_to":"37025"} +{"$label":"ACTS_IN","name":"Corny","type":"Role","_key":"58597","_from":"37027","_to":"37025"} +{"$label":"DIRECTED","_key":"58594","_from":"37026","_to":"37025"} +{"$label":"ACTS_IN","name":"Myron Stubbs","type":"Role","_key":"109887","_from":"37027","_to":"64928"} +{"$label":"DIRECTED","_key":"95283","_from":"37027","_to":"56059"} +{"$label":"ACTS_IN","name":"Doctor's Assistant","type":"Role","_key":"58634","_from":"37046","_to":"37036"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"58632","_from":"37045","_to":"37036"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"58631","_from":"37044","_to":"37036"} +{"$label":"ACTS_IN","name":"School Aide","type":"Role","_key":"58630","_from":"37043","_to":"37036"} +{"$label":"ACTS_IN","name":"Young Priest","type":"Role","_key":"58628","_from":"37042","_to":"37036"} +{"$label":"ACTS_IN","name":"Funeral Attendant","type":"Role","_key":"58625","_from":"37041","_to":"37036"} +{"$label":"ACTS_IN","name":"Mrs. Quinn","type":"Role","_key":"58624","_from":"37040","_to":"37036"} +{"$label":"ACTS_IN","name":"Megan Hanson","type":"Role","_key":"58620","_from":"37039","_to":"37036"} +{"$label":"ACTS_IN","name":"Bridgette Hanson","type":"Role","_key":"58618","_from":"37038","_to":"37036"} +{"$label":"DIRECTED","_key":"58615","_from":"37037","_to":"37036"} +{"$label":"DIRECTED","_key":"63441","_from":"37037","_to":"39741"} +{"$label":"ACTS_IN","name":"April Rimbauer (5 yrs)","type":"Role","_key":"107830","_from":"37038","_to":"63677"} +{"$label":"ACTS_IN","name":"Sheriff Terri Frankel","type":"Role","_key":"93498","_from":"37043","_to":"55048"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"58640","_from":"37051","_to":"37047"} +{"$label":"ACTS_IN","name":"Giles","type":"Role","_key":"58639","_from":"37050","_to":"37047"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"58638","_from":"37049","_to":"37047"} +{"$label":"ACTS_IN","name":"Ozzy","type":"Role","_key":"58637","_from":"37048","_to":"37047"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"58669","_from":"37063","_to":"37053"} +{"$label":"ACTS_IN","name":"Deputy","type":"Role","_key":"58668","_from":"37062","_to":"37053"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"58667","_from":"37061","_to":"37053"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"58666","_from":"37060","_to":"37053"} +{"$label":"ACTS_IN","name":"Mary Rollins","type":"Role","_key":"58665","_from":"37059","_to":"37053"} +{"$label":"ACTS_IN","name":"Lindsay Rollins","type":"Role","_key":"58663","_from":"37058","_to":"37053"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"58662","_from":"37057","_to":"37053"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"58660","_from":"37056","_to":"37053"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"58659","_from":"37055","_to":"37053"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"58658","_from":"37054","_to":"37053"} +{"$label":"ACTS_IN","name":"Trevor Eastman","type":"Role","_key":"101126","_from":"37056","_to":"59583"} +{"$label":"ACTS_IN","name":"Mary Dexter","type":"Role","_key":"92099","_from":"37058","_to":"54339"} +{"$label":"ACTS_IN","name":"Ghost","type":"Role","_key":"62796","_from":"37058","_to":"39467"} +{"$label":"ACTS_IN","name":"Gericault","type":"Role","_key":"58690","_from":"37073","_to":"37064"} +{"$label":"ACTS_IN","name":"Mrs. Charts","type":"Role","_key":"58689","_from":"37072","_to":"37064"} +{"$label":"ACTS_IN","name":"Sen. Hastings","type":"Role","_key":"58688","_from":"37071","_to":"37064"} +{"$label":"ACTS_IN","name":"Mai Ling","type":"Role","_key":"58687","_from":"37070","_to":"37064"} +{"$label":"ACTS_IN","name":"Mrs. MacGregor","type":"Role","_key":"58686","_from":"37069","_to":"37064"} +{"$label":"ACTS_IN","name":"Paul MacGregor","type":"Role","_key":"58684","_from":"37068","_to":"37064"} +{"$label":"ACTS_IN","name":"Jiang","type":"Role","_key":"58681","_from":"37067","_to":"37064"} +{"$label":"ACTS_IN","name":"Lai Fun","type":"Role","_key":"58680","_from":"37066","_to":"37064"} +{"$label":"ACTS_IN","name":"Blaster","type":"Role","_key":"58679","_from":"37065","_to":"37064"} +{"$label":"ACTS_IN","name":"Female Cop","type":"Role","_key":"58711","_from":"37087","_to":"37074"} +{"$label":"ACTS_IN","name":"Mrs Wherry","type":"Role","_key":"58710","_from":"37086","_to":"37074"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"58709","_from":"37085","_to":"37074"} +{"$label":"ACTS_IN","name":"TV Reporter","type":"Role","_key":"58708","_from":"37084","_to":"37074"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"58707","_from":"37083","_to":"37074"} +{"$label":"ACTS_IN","name":"Paperboy","type":"Role","_key":"58706","_from":"37082","_to":"37074"} +{"$label":"ACTS_IN","name":"Korean-am teenager","type":"Role","_key":"58705","_from":"37081","_to":"37074"} +{"$label":"ACTS_IN","name":"Detective Boyle","type":"Role","_key":"58704","_from":"37080","_to":"37074"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"58703","_from":"37079","_to":"37074"} +{"$label":"ACTS_IN","name":"Hair Stylist","type":"Role","_key":"58702","_from":"37078","_to":"37074"} +{"$label":"ACTS_IN","name":"Mr. Branch","type":"Role","_key":"58701","_from":"37077","_to":"37074"} +{"$label":"ACTS_IN","name":"Cam","type":"Role","_key":"58700","_from":"37076","_to":"37074"} +{"$label":"ACTS_IN","name":"Avis","type":"Role","_key":"58699","_from":"37075","_to":"37074"} +{"$label":"ACTS_IN","name":"Young Man Afraid","type":"Role","_key":"94660","_from":"37076","_to":"55765"} +{"$label":"ACTS_IN","name":"Locksmith","type":"Role","_key":"93123","_from":"37077","_to":"54874"} +{"$label":"ACTS_IN","name":"Air Marshal Wilf Curtis","type":"Role","_key":"120827","_from":"37080","_to":"70947"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"97061","_from":"37080","_to":"57091"} +{"$label":"ACTS_IN","name":"Billy Campbell","type":"Role","_key":"117476","_from":"37082","_to":"69081"} +{"$label":"ACTS_IN","name":"Young Ben","type":"Role","_key":"97065","_from":"37082","_to":"57091"} +{"$label":"ACTS_IN","name":"Dinky","type":"Role","_key":"97126","_from":"37083","_to":"57136"} +{"$label":"ACTS_IN","name":"Sam Fischer","type":"Role","_key":"88264","_from":"37083","_to":"52358"} +{"$label":"ACTS_IN","name":"Shepard","type":"Role","_key":"62708","_from":"37083","_to":"39426"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"58732","_from":"37101","_to":"37088"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"58731","_from":"37100","_to":"37088"} +{"$label":"ACTS_IN","name":"Mackenzie","type":"Role","_key":"58730","_from":"37099","_to":"37088"} +{"$label":"ACTS_IN","name":"Mrs. Ryor","type":"Role","_key":"58729","_from":"37098","_to":"37088"} +{"$label":"ACTS_IN","name":"Gerta","type":"Role","_key":"58728","_from":"37097","_to":"37088"} +{"$label":"ACTS_IN","name":"Bob Murray","type":"Role","_key":"58727","_from":"37096","_to":"37088"} +{"$label":"ACTS_IN","name":"Sheriff Dave","type":"Role","_key":"58724","_from":"37095","_to":"37088"} +{"$label":"ACTS_IN","name":"Emily Hall","type":"Role","_key":"58723","_from":"37094","_to":"37088"} +{"$label":"ACTS_IN","name":"Madison Finch","type":"Role","_key":"58721","_from":"37093","_to":"37088"} +{"$label":"ACTS_IN","name":"Ashley Hall","type":"Role","_key":"58720","_from":"37092","_to":"37088"} +{"$label":"ACTS_IN","name":"Carter Finch","type":"Role","_key":"58719","_from":"37091","_to":"37088"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"58717","_from":"37090","_to":"37088"} +{"$label":"DIRECTED","_key":"58712","_from":"37089","_to":"37088"} +{"$label":"DIRECTED","_key":"94378","_from":"37089","_to":"55568"} +{"$label":"DIRECTED","_key":"70700","_from":"37089","_to":"43005"} +{"$label":"ACTS_IN","name":"Louie (voice)","type":"Role","_key":"109166","_from":"37095","_to":"64489"} +{"$label":"ACTS_IN","name":"Coach (as Garry Chalk)","type":"Role","_key":"102113","_from":"37095","_to":"60066"} +{"$label":"ACTS_IN","name":"Agent Gardenia","type":"Role","_key":"60985","_from":"37095","_to":"38538"} +{"$label":"ACTS_IN","name":"Walt","type":"Role","_key":"121414","_from":"37096","_to":"71338"} +{"$label":"ACTS_IN","name":"Fay Vaughn","type":"Role","_key":"113332","_from":"37098","_to":"66763"} +{"$label":"ACTS_IN","name":"The Runner","type":"Role","_key":"107233","_from":"37098","_to":"63230"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"106971","_from":"37098","_to":"63058"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"72233","_from":"37098","_to":"43646"} +{"$label":"ACTS_IN","name":"The Spirit (voice)","type":"Role","_key":"68752","_from":"37098","_to":"42127"} +{"$label":"ACTS_IN","name":"Henrietta Stiles","type":"Role","_key":"66805","_from":"37098","_to":"41269"} +{"$label":"ACTS_IN","name":"Katara","type":"Role","_key":"61621","_from":"37099","_to":"38834"} +{"$label":"ACTS_IN","name":"Movie Theatre Babe","type":"Role","_key":"58753","_from":"37114","_to":"37102"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"58752","_from":"37113","_to":"37102"} +{"$label":"ACTS_IN","name":"Doorman","type":"Role","_key":"58751","_from":"37112","_to":"37102"} +{"$label":"ACTS_IN","name":"Stunning Brunette","type":"Role","_key":"58750","_from":"37111","_to":"37102"} +{"$label":"ACTS_IN","name":"Landscaping Co-Worker","type":"Role","_key":"58749","_from":"37110","_to":"37102"} +{"$label":"ACTS_IN","name":"Felicia","type":"Role","_key":"58748","_from":"37109","_to":"37102"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"58747","_from":"37108","_to":"37102"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"58746","_from":"37107","_to":"37102"} +{"$label":"ACTS_IN","name":"Bridget","type":"Role","_key":"58745","_from":"37106","_to":"37102"} +{"$label":"ACTS_IN","name":"Bar-Back Chick","type":"Role","_key":"58744","_from":"37105","_to":"37102"} +{"$label":"ACTS_IN","name":"Steven's Boss","type":"Role","_key":"58743","_from":"37104","_to":"37102"} +{"$label":"DIRECTED","_key":"58733","_from":"37103","_to":"37102"} +{"$label":"ACTS_IN","name":"Mike Damone","type":"Role","_key":"94020","_from":"37104","_to":"55369"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"58775","_from":"37125","_to":"37115"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"58774","_from":"37124","_to":"37115"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"58773","_from":"37123","_to":"37115"} +{"$label":"ACTS_IN","name":"Chink's Gang Member","type":"Role","_key":"58771","_from":"37122","_to":"37115"} +{"$label":"ACTS_IN","name":"Mastrone","type":"Role","_key":"58770","_from":"37121","_to":"37115"} +{"$label":"ACTS_IN","name":"Louie Munafo","type":"Role","_key":"58769","_from":"37120","_to":"37115"} +{"$label":"ACTS_IN","name":"Chink's Gang Member","type":"Role","_key":"58768","_from":"37119","_to":"37115"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"58767","_from":"37118","_to":"37115"} +{"$label":"ACTS_IN","name":"Wiley","type":"Role","_key":"58766","_from":"37117","_to":"37115"} +{"$label":"ACTS_IN","name":"First Base","type":"Role","_key":"58765","_from":"37116","_to":"37115"} +{"$label":"ACTS_IN","name":"Darkman","type":"Role","_key":"119784","_from":"37125","_to":"70331"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"104881","_from":"37125","_to":"61706"} +{"$label":"ACTS_IN","name":"House Keeper","type":"Role","_key":"58796","_from":"37139","_to":"37126"} +{"$label":"ACTS_IN","name":"B-Dawg Boy","type":"Role","_key":"58795","_from":"37138","_to":"37126"} +{"$label":"ACTS_IN","name":"Bob Framms","type":"Role","_key":"58794","_from":"37137","_to":"37126"} +{"$label":"ACTS_IN","name":"Patrick Framm","type":"Role","_key":"58791","_from":"37136","_to":"37126"} +{"$label":"ACTS_IN","name":"Bartleby Livingston","type":"Role","_key":"58789","_from":"37135","_to":"37126"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"58788","_from":"37134","_to":"37126"} +{"$label":"ACTS_IN","name":"Denning","type":"Role","_key":"58787","_from":"37133","_to":"37126"} +{"$label":"ACTS_IN","name":"Concession Attendant","type":"Role","_key":"58786","_from":"37132","_to":"37126"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"58783","_from":"37131","_to":"37126"} +{"$label":"ACTS_IN","name":"Bud-dha","type":"Role","_key":"58782","_from":"37130","_to":"37126"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"58779","_from":"37129","_to":"37126"} +{"$label":"ACTS_IN","name":"Grim","type":"Role","_key":"58778","_from":"37128","_to":"37126"} +{"$label":"DIRECTED","_key":"58776","_from":"37127","_to":"37126"} +{"$label":"DIRECTED","_key":"101630","_from":"37127","_to":"59819"} +{"$label":"DIRECTED","_key":"98330","_from":"37127","_to":"57913"} +{"$label":"ACTS_IN","name":"Zach","type":"Role","_key":"112395","_from":"37128","_to":"66359"} +{"$label":"ACTS_IN","name":"Caleb","type":"Role","_key":"105273","_from":"37128","_to":"61948"} +{"$label":"ACTS_IN","name":"Wilbur","type":"Role","_key":"58986","_from":"37130","_to":"37240"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"115195","_from":"37131","_to":"67837"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"98728","_from":"37133","_to":"58185"} +{"$label":"ACTS_IN","name":"Parent #3","type":"Role","_key":"117298","_from":"37137","_to":"68981"} +{"$label":"ACTS_IN","name":"Cop at Fancy Restaurant","type":"Role","_key":"93117","_from":"37139","_to":"54874"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"58816","_from":"37147","_to":"37140"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"58815","_from":"37146","_to":"37140"} +{"$label":"ACTS_IN","name":"Cowgirl Bouncer","type":"Role","_key":"58814","_from":"37145","_to":"37140"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"58809","_from":"37144","_to":"37140"} +{"$label":"ACTS_IN","name":"Rob Wolfton","type":"Role","_key":"58808","_from":"37143","_to":"37140"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"58803","_from":"37142","_to":"37140"} +{"$label":"DIRECTED","_key":"58797","_from":"37141","_to":"37140"} +{"$label":"ACTS_IN","name":"Erik Ponti","type":"Role","_key":"68476","_from":"37142","_to":"42004"} +{"$label":"ACTS_IN","name":"Seen It Cab Driver","type":"Role","_key":"58838","_from":"37156","_to":"37148"} +{"$label":"ACTS_IN","name":"Edu","type":"Role","_key":"58836","_from":"37155","_to":"37148"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58832","_from":"37154","_to":"37148"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58829","_from":"37153","_to":"37148"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58828","_from":"37152","_to":"37148"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58826","_from":"37151","_to":"37148"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"58823","_from":"37150","_to":"37148"} +{"$label":"DIRECTED","_key":"58818","_from":"37149","_to":"37148"} +{"$label":"DIRECTED","_key":"95895","_from":"37149","_to":"56396"} +{"$label":"ACTS_IN","name":"Mining Camp Boy","type":"Role","_key":"108724","_from":"37152","_to":"64246"} +{"$label":"ACTS_IN","name":"Young Nita","type":"Role","_key":"59407","_from":"37153","_to":"37525"} +{"$label":"ACTS_IN","name":"Senator Ron Davis (Voice)","type":"Role","_key":"95674","_from":"37156","_to":"56269"} +{"$label":"ACTS_IN","name":"News Commentator","type":"Role","_key":"58859","_from":"37174","_to":"37157"} +{"$label":"ACTS_IN","name":"Dragon Lady","type":"Role","_key":"58858","_from":"37173","_to":"37157"} +{"$label":"ACTS_IN","name":"Packing Boy","type":"Role","_key":"58857","_from":"37172","_to":"37157"} +{"$label":"ACTS_IN","name":"Valet","type":"Role","_key":"58856","_from":"37171","_to":"37157"} +{"$label":"ACTS_IN","name":"Pinoccio","type":"Role","_key":"58855","_from":"37170","_to":"37157"} +{"$label":"ACTS_IN","name":"He Head","type":"Role","_key":"58854","_from":"37169","_to":"37157"} +{"$label":"ACTS_IN","name":"Mayor Flarin","type":"Role","_key":"58853","_from":"37168","_to":"37157"} +{"$label":"ACTS_IN","name":"Mrs. Flarin","type":"Role","_key":"58852","_from":"37167","_to":"37157"} +{"$label":"ACTS_IN","name":"She Head","type":"Role","_key":"58851","_from":"37166","_to":"37157"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"58850","_from":"37165","_to":"37157"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"58849","_from":"37164","_to":"37157"} +{"$label":"ACTS_IN","name":"Satan Man","type":"Role","_key":"58848","_from":"37163","_to":"37157"} +{"$label":"ACTS_IN","name":"Vernon Martin","type":"Role","_key":"58847","_from":"37162","_to":"37157"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"58846","_from":"37161","_to":"37157"} +{"$label":"ACTS_IN","name":"Mrs. Sylvia Tishbaum","type":"Role","_key":"58845","_from":"37160","_to":"37157"} +{"$label":"ACTS_IN","name":"Douglas \"Dougie\" Whooly","type":"Role","_key":"58841","_from":"37159","_to":"37157"} +{"$label":"DIRECTED","_key":"58839","_from":"37158","_to":"37157"} +{"$label":"ACTS_IN","name":"Beria","type":"Role","_key":"58880","_from":"37188","_to":"37175"} +{"$label":"ACTS_IN","name":"Minister Frank","type":"Role","_key":"58879","_from":"37187","_to":"37175"} +{"$label":"ACTS_IN","name":"Mrs. Savage","type":"Role","_key":"58878","_from":"37186","_to":"37175"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"58877","_from":"37185","_to":"37175"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"58875","_from":"37184","_to":"37175"} +{"$label":"ACTS_IN","name":"Yuri Nikolayev","type":"Role","_key":"58874","_from":"37183","_to":"37175"} +{"$label":"ACTS_IN","name":"Colin 'Col' Slansky","type":"Role","_key":"58873","_from":"37182","_to":"37175"} +{"$label":"ACTS_IN","name":"Mavis Craig","type":"Role","_key":"58872","_from":"37181","_to":"37175"} +{"$label":"ACTS_IN","name":"Brendan Shaw","type":"Role","_key":"58871","_from":"37180","_to":"37175"} +{"$label":"ACTS_IN","name":"Joe Welch at 8 Years","type":"Role","_key":"58870","_from":"37179","_to":"37175"} +{"$label":"ACTS_IN","name":"Prof. C.W. 'Wilf' Wilke","type":"Role","_key":"58868","_from":"37178","_to":"37175"} +{"$label":"ACTS_IN","name":"Barry Rogers","type":"Role","_key":"58867","_from":"37177","_to":"37175"} +{"$label":"DIRECTED","_key":"58860","_from":"37176","_to":"37175"} +{"$label":"ACTS_IN","name":"Christiaan Botha","type":"Role","_key":"96561","_from":"37177","_to":"56784"} +{"$label":"ACTS_IN","name":"Doug Gillespie","type":"Role","_key":"106396","_from":"37180","_to":"62687"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"98688","_from":"37181","_to":"58157"} +{"$label":"DIRECTED","_key":"106775","_from":"37182","_to":"62951"} +{"$label":"DIRECTED","_key":"96970","_from":"37182","_to":"57027"} +{"$label":"DIRECTED","_key":"59125","_from":"37182","_to":"37329"} +{"$label":"ACTS_IN","name":"Bernard May","type":"Role","_key":"98629","_from":"37183","_to":"58112"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"96416","_from":"37183","_to":"56686"} +{"$label":"ACTS_IN","name":"Martin's mother","type":"Role","_key":"102404","_from":"37186","_to":"60259"} +{"$label":"ACTS_IN","name":"Slater","type":"Role","_key":"58901","_from":"37198","_to":"37189"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"58900","_from":"37197","_to":"37189"} +{"$label":"ACTS_IN","name":"MI6 Man","type":"Role","_key":"58899","_from":"37196","_to":"37189"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"58898","_from":"37195","_to":"37189"} +{"$label":"ACTS_IN","name":"Vicar","type":"Role","_key":"58897","_from":"37194","_to":"37189"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"58896","_from":"37193","_to":"37189"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"58895","_from":"37192","_to":"37189"} +{"$label":"ACTS_IN","name":"Alex Rider","type":"Role","_key":"58893","_from":"37191","_to":"37189"} +{"$label":"DIRECTED","_key":"58881","_from":"37190","_to":"37189"} +{"$label":"DIRECTED","_key":"105474","_from":"37190","_to":"62065"} +{"$label":"DIRECTED","_key":"72083","_from":"37190","_to":"43578"} +{"$label":"ACTS_IN","name":"Al B (as Asher D)","type":"Role","_key":"119030","_from":"37192","_to":"69971"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"116452","_from":"37192","_to":"68543"} +{"$label":"ACTS_IN","name":"Daniel Leone","type":"Role","_key":"103060","_from":"37192","_to":"60626"} +{"$label":"ACTS_IN","name":"Antwan","type":"Role","_key":"60075","_from":"37192","_to":"37905"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"58906","_from":"37200","_to":"37199"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"58929","_from":"37213","_to":"37201"} +{"$label":"ACTS_IN","name":"Donna Jones","type":"Role","_key":"58928","_from":"37212","_to":"37201"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"58924","_from":"37211","_to":"37201"} +{"$label":"ACTS_IN","name":"Gian Piero","type":"Role","_key":"58923","_from":"37210","_to":"37201"} +{"$label":"ACTS_IN","name":"Connor","type":"Role","_key":"58922","_from":"37209","_to":"37201"} +{"$label":"ACTS_IN","name":"Massimo","type":"Role","_key":"58921","_from":"37208","_to":"37201"} +{"$label":"ACTS_IN","name":"Ambrose","type":"Role","_key":"58920","_from":"37207","_to":"37201"} +{"$label":"ACTS_IN","name":"Byong Sun","type":"Role","_key":"58919","_from":"37206","_to":"37201"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"58918","_from":"37205","_to":"37201"} +{"$label":"ACTS_IN","name":"Sam Weston","type":"Role","_key":"58917","_from":"37204","_to":"37201"} +{"$label":"ACTS_IN","name":"Mike Ditka","type":"Role","_key":"58916","_from":"37203","_to":"37201"} +{"$label":"ACTS_IN","name":"Barbara Weston","type":"Role","_key":"58912","_from":"37202","_to":"37201"} +{"$label":"ACTS_IN","name":"Anchor Woman","type":"Role","_key":"64556","_from":"37212","_to":"40205"} +{"$label":"ACTS_IN","name":"Morkubine Porcupine \/ Coach","type":"Role","_key":"58950","_from":"37215","_to":"37214"} +{"$label":"ACTS_IN","name":"Kirby - Alien Kid","type":"Role","_key":"58949","_from":"37221","_to":"37214"} +{"$label":"ACTS_IN","name":"Kirby - Alien Kid","type":"Role","_key":"58948","_from":"37220","_to":"37214"} +{"$label":"ACTS_IN","name":"Kirby - Alien Kid","type":"Role","_key":"58947","_from":"37219","_to":"37214"} +{"$label":"ACTS_IN","name":"Goosey Loosey","type":"Role","_key":"58946","_from":"37218","_to":"37214"} +{"$label":"ACTS_IN","name":"Rodriguez \/ Acorn Mascot \/ Umpire","type":"Role","_key":"58945","_from":"37217","_to":"37214"} +{"$label":"ACTS_IN","name":"Fish Out of Water","type":"Role","_key":"58944","_from":"37216","_to":"37214"} +{"$label":"DIRECTED","_key":"58930","_from":"37215","_to":"37214"} +{"$label":"DIRECTED","_key":"71573","_from":"37215","_to":"43357"} +{"$label":"ACTS_IN","name":"Rhino (voice","type":"Role","_key":"109588","_from":"37218","_to":"64731"} +{"$label":"ACTS_IN","name":"Rhino (voice)","type":"Role","_key":"92194","_from":"37218","_to":"54410"} +{"$label":"ACTS_IN","name":"Fred \/ Walker \/ Shoe \/ Nurse \/ Jon \/ Boxman \/ Hac \/ Mac \/ Guard \/ Old Man \/ Zombies","type":"Role","_key":"58952","_from":"37224","_to":"37222"} +{"$label":"DIRECTED","_key":"58951","_from":"37223","_to":"37222"} +{"$label":"ACTS_IN","name":"Actor#1","type":"Role","_key":"58974","_from":"37239","_to":"37225"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"58973","_from":"37238","_to":"37225"} +{"$label":"ACTS_IN","name":"Waitress at 'Goldener L\u00f6ffel'","type":"Role","_key":"58972","_from":"37237","_to":"37225"} +{"$label":"ACTS_IN","name":"Waitress at 'Zum Augustiner'","type":"Role","_key":"58971","_from":"37236","_to":"37225"} +{"$label":"ACTS_IN","name":"Tramp","type":"Role","_key":"58970","_from":"37235","_to":"37225"} +{"$label":"ACTS_IN","name":"Elder lady on street","type":"Role","_key":"58969","_from":"37234","_to":"37225"} +{"$label":"ACTS_IN","name":"Herr Weindl","type":"Role","_key":"58968","_from":"37233","_to":"37225"} +{"$label":"ACTS_IN","name":"Dr. Wanz","type":"Role","_key":"58967","_from":"37232","_to":"37225"} +{"$label":"ACTS_IN","name":"Porter","type":"Role","_key":"58966","_from":"37231","_to":"37225"} +{"$label":"ACTS_IN","name":"Herr Pfau","type":"Role","_key":"58963","_from":"37230","_to":"37225"} +{"$label":"ACTS_IN","name":"Herr van der Leer, Psychotrainer","type":"Role","_key":"58961","_from":"37229","_to":"37225"} +{"$label":"ACTS_IN","name":"Camilla Bleiss","type":"Role","_key":"58960","_from":"37228","_to":"37225"} +{"$label":"ACTS_IN","name":"Herr Fuchs","type":"Role","_key":"58958","_from":"37227","_to":"37225"} +{"$label":"DIRECTED","_key":"58954","_from":"37226","_to":"37225"} +{"$label":"ACTS_IN","name":"Henry Fussy","type":"Role","_key":"58995","_from":"37244","_to":"37240"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"58994","_from":"37243","_to":"37240"} +{"$label":"ACTS_IN","name":"Avery","type":"Role","_key":"58993","_from":"37242","_to":"37240"} +{"$label":"DIRECTED","_key":"58975","_from":"37241","_to":"37240"} +{"$label":"DIRECTED","_key":"63815","_from":"37241","_to":"39898"} +{"$label":"DIRECTED","_key":"60647","_from":"37241","_to":"38293"} +{"$label":"ACTS_IN","name":"MacDuff's Son","type":"Role","_key":"96348","_from":"37242","_to":"56600"} +{"$label":"ACTS_IN","name":"Highwater, Guard #1","type":"Role","_key":"59016","_from":"37260","_to":"37245"} +{"$label":"ACTS_IN","name":"Wheel Chair Patient","type":"Role","_key":"59014","_from":"37259","_to":"37245"} +{"$label":"ACTS_IN","name":"Police Officer #1","type":"Role","_key":"59013","_from":"37258","_to":"37245"} +{"$label":"ACTS_IN","name":"Doctor #1","type":"Role","_key":"59012","_from":"37257","_to":"37245"} +{"$label":"ACTS_IN","name":"Social Worker","type":"Role","_key":"59011","_from":"37256","_to":"37245"} +{"$label":"ACTS_IN","name":"Slattery, Guard #2","type":"Role","_key":"59010","_from":"37255","_to":"37245"} +{"$label":"ACTS_IN","name":"Hospital Cleaning Lady","type":"Role","_key":"59009","_from":"37254","_to":"37245"} +{"$label":"ACTS_IN","name":"Creature","type":"Role","_key":"59008","_from":"37253","_to":"37245"} +{"$label":"ACTS_IN","name":"Female Creature","type":"Role","_key":"59007","_from":"37252","_to":"37245"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"59006","_from":"37251","_to":"37245"} +{"$label":"ACTS_IN","name":"Desk Nurse","type":"Role","_key":"59005","_from":"37250","_to":"37245"} +{"$label":"ACTS_IN","name":"Harry Jellenik","type":"Role","_key":"59004","_from":"37249","_to":"37245"} +{"$label":"ACTS_IN","name":"Alex Borden","type":"Role","_key":"59003","_from":"37248","_to":"37245"} +{"$label":"ACTS_IN","name":"Dr. Denise Bell","type":"Role","_key":"59002","_from":"37247","_to":"37245"} +{"$label":"DIRECTED","_key":"58996","_from":"37246","_to":"37245"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"69148","_from":"37248","_to":"42293"} +{"$label":"ACTS_IN","name":"Pim Scutney","type":"Role","_key":"59036","_from":"37274","_to":"37261"} +{"$label":"ACTS_IN","name":"Mexican","type":"Role","_key":"59035","_from":"37273","_to":"37261"} +{"$label":"ACTS_IN","name":"Inga","type":"Role","_key":"59034","_from":"37272","_to":"37261"} +{"$label":"ACTS_IN","name":"Little Boy","type":"Role","_key":"59033","_from":"37271","_to":"37261"} +{"$label":"ACTS_IN","name":"Door Bouncer","type":"Role","_key":"59032","_from":"37270","_to":"37261"} +{"$label":"ACTS_IN","name":"Aussie Sailor #2","type":"Role","_key":"59031","_from":"37269","_to":"37261"} +{"$label":"ACTS_IN","name":"Mr. Schniedelwichsen","type":"Role","_key":"59030","_from":"37268","_to":"37261"} +{"$label":"ACTS_IN","name":"German Producer","type":"Role","_key":"59029","_from":"37267","_to":"37261"} +{"$label":"ACTS_IN","name":"Aussie Sailor #1","type":"Role","_key":"59028","_from":"37266","_to":"37261"} +{"$label":"ACTS_IN","name":"Helmut","type":"Role","_key":"59027","_from":"37265","_to":"37261"} +{"$label":"ACTS_IN","name":"Jan Wolfhouse","type":"Role","_key":"59022","_from":"37264","_to":"37261"} +{"$label":"ACTS_IN","name":"Landfill \/ Gil \/ Sausage Lady","type":"Role","_key":"59021","_from":"37263","_to":"37261"} +{"$label":"ACTS_IN","name":"Todd Wolfhouse \/ Young Baron Ludwig","type":"Role","_key":"59018","_from":"37262","_to":"37261"} +{"$label":"ACTS_IN","name":"Freaky Reaky","type":"Role","_key":"95234","_from":"37262","_to":"56030"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"68600","_from":"37262","_to":"42057"} +{"$label":"ACTS_IN","name":"Whitaker","type":"Role","_key":"99140","_from":"37263","_to":"58416"} +{"$label":"ACTS_IN","name":"Grogan","type":"Role","_key":"95231","_from":"37263","_to":"56030"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"68597","_from":"37263","_to":"42057"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"95233","_from":"37264","_to":"56030"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"68599","_from":"37264","_to":"42057"} +{"$label":"ACTS_IN","name":"Mechanic Enrique","type":"Role","_key":"106957","_from":"37273","_to":"63058"} +{"$label":"ACTS_IN","name":"Gary's Secretary","type":"Role","_key":"59058","_from":"37283","_to":"37275"} +{"$label":"ACTS_IN","name":"Ken Cosgrove","type":"Role","_key":"59057","_from":"37282","_to":"37275"} +{"$label":"ACTS_IN","name":"Danny Solskj\u00e6r","type":"Role","_key":"59056","_from":"37281","_to":"37275"} +{"$label":"ACTS_IN","name":"Lawyer","type":"Role","_key":"59055","_from":"37280","_to":"37275"} +{"$label":"ACTS_IN","name":"Shrot's Assistant","type":"Role","_key":"59054","_from":"37279","_to":"37275"} +{"$label":"ACTS_IN","name":"Randy Sheringham","type":"Role","_key":"59050","_from":"37278","_to":"37275"} +{"$label":"ACTS_IN","name":"Brian Bissel","type":"Role","_key":"59048","_from":"37277","_to":"37275"} +{"$label":"ACTS_IN","name":"Teddy Chin","type":"Role","_key":"59047","_from":"37276","_to":"37275"} +{"$label":"ACTS_IN","name":"Chang Lee","type":"Role","_key":"105479","_from":"37276","_to":"62065"} +{"$label":"ACTS_IN","name":"Reisman","type":"Role","_key":"64392","_from":"37280","_to":"40128"} +{"$label":"ACTS_IN","name":"Agent Clark","type":"Role","_key":"59079","_from":"37301","_to":"37284"} +{"$label":"ACTS_IN","name":"Agent Stevens","type":"Role","_key":"59078","_from":"37300","_to":"37284"} +{"$label":"ACTS_IN","name":"Ruiz","type":"Role","_key":"59077","_from":"37299","_to":"37284"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"59076","_from":"37298","_to":"37284"} +{"$label":"ACTS_IN","name":"Agent Anderson","type":"Role","_key":"59075","_from":"37297","_to":"37284"} +{"$label":"ACTS_IN","name":"John Bishop","type":"Role","_key":"59074","_from":"37296","_to":"37284"} +{"$label":"ACTS_IN","name":"Art","type":"Role","_key":"59073","_from":"37295","_to":"37284"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"59071","_from":"37294","_to":"37284"} +{"$label":"ACTS_IN","name":"Lt. Doug Maxwell","type":"Role","_key":"59070","_from":"37293","_to":"37284"} +{"$label":"ACTS_IN","name":"Agent Russell","type":"Role","_key":"59069","_from":"37292","_to":"37284"} +{"$label":"ACTS_IN","name":"Ramona","type":"Role","_key":"59068","_from":"37291","_to":"37284"} +{"$label":"ACTS_IN","name":"Crystal Martin","type":"Role","_key":"59067","_from":"37290","_to":"37284"} +{"$label":"ACTS_IN","name":"Ciro","type":"Role","_key":"59066","_from":"37289","_to":"37284"} +{"$label":"ACTS_IN","name":"Samantha Jensen","type":"Role","_key":"59064","_from":"37288","_to":"37284"} +{"$label":"ACTS_IN","name":"Octavio Perez","type":"Role","_key":"59063","_from":"37287","_to":"37284"} +{"$label":"ACTS_IN","name":"Agent Marcia Tunney","type":"Role","_key":"59062","_from":"37286","_to":"37284"} +{"$label":"DIRECTED","_key":"59059","_from":"37285","_to":"37284"} +{"$label":"ACTS_IN","name":"Gwen Tennyson","type":"Role","_key":"106621","_from":"37288","_to":"62820"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"59100","_from":"37310","_to":"37302"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"59099","_from":"37309","_to":"37302"} +{"$label":"ACTS_IN","name":"Second Barman","type":"Role","_key":"59098","_from":"37308","_to":"37302"} +{"$label":"ACTS_IN","name":"Hayter","type":"Role","_key":"59097","_from":"37307","_to":"37302"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"59094","_from":"37306","_to":"37302"} +{"$label":"ACTS_IN","name":"Z","type":"Role","_key":"59093","_from":"37305","_to":"37302"} +{"$label":"ACTS_IN","name":"Sykes","type":"Role","_key":"59089","_from":"37304","_to":"37302"} +{"$label":"DIRECTED","_key":"59080","_from":"37303","_to":"37302"} +{"$label":"ACTS_IN","name":"Matassalai #4","type":"Role","_key":"59121","_from":"37328","_to":"37311"} +{"$label":"ACTS_IN","name":"Police Officer #2","type":"Role","_key":"59120","_from":"37327","_to":"37311"} +{"$label":"ACTS_IN","name":"Matassalai #5","type":"Role","_key":"59119","_from":"37326","_to":"37311"} +{"$label":"ACTS_IN","name":"Matassalai #3","type":"Role","_key":"59118","_from":"37325","_to":"37311"} +{"$label":"ACTS_IN","name":"Matassalai #2","type":"Role","_key":"59117","_from":"37324","_to":"37311"} +{"$label":"ACTS_IN","name":"Repairman","type":"Role","_key":"59116","_from":"37323","_to":"37311"} +{"$label":"ACTS_IN","name":"Matassalai #1","type":"Role","_key":"59115","_from":"37322","_to":"37311"} +{"$label":"ACTS_IN","name":"Mover #1","type":"Role","_key":"59114","_from":"37321","_to":"37311"} +{"$label":"ACTS_IN","name":"Mover #2","type":"Role","_key":"59113","_from":"37320","_to":"37311"} +{"$label":"ACTS_IN","name":"Baliff","type":"Role","_key":"59112","_from":"37319","_to":"37311"} +{"$label":"ACTS_IN","name":"Massai Chief","type":"Role","_key":"59110","_from":"37318","_to":"37311"} +{"$label":"ACTS_IN","name":"Arthur's Father","type":"Role","_key":"59109","_from":"37317","_to":"37311"} +{"$label":"ACTS_IN","name":"Saleslady","type":"Role","_key":"59108","_from":"37316","_to":"37311"} +{"$label":"ACTS_IN","name":"Davido","type":"Role","_key":"59107","_from":"37315","_to":"37311"} +{"$label":"ACTS_IN","name":"Police Officer #1","type":"Role","_key":"59106","_from":"37314","_to":"37311"} +{"$label":"ACTS_IN","name":"Arthur's Mother","type":"Role","_key":"59105","_from":"37313","_to":"37311"} +{"$label":"ACTS_IN","name":"Archibald","type":"Role","_key":"59104","_from":"37312","_to":"37311"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"59145","_from":"37342","_to":"37329"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"59144","_from":"37341","_to":"37329"} +{"$label":"ACTS_IN","name":"Night Club Singer","type":"Role","_key":"59143","_from":"37340","_to":"37329"} +{"$label":"ACTS_IN","name":"Tania","type":"Role","_key":"59142","_from":"37339","_to":"37329"} +{"$label":"ACTS_IN","name":"Mingh","type":"Role","_key":"59141","_from":"37338","_to":"37329"} +{"$label":"ACTS_IN","name":"Mr. Chan","type":"Role","_key":"59140","_from":"37337","_to":"37329"} +{"$label":"ACTS_IN","name":"Tran","type":"Role","_key":"59139","_from":"37336","_to":"37329"} +{"$label":"ACTS_IN","name":"Khiem","type":"Role","_key":"59138","_from":"37335","_to":"37329"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"59137","_from":"37334","_to":"37329"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"59136","_from":"37333","_to":"37329"} +{"$label":"ACTS_IN","name":"Mai","type":"Role","_key":"59135","_from":"37332","_to":"37329"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"59134","_from":"37331","_to":"37329"} +{"$label":"ACTS_IN","name":"Jonny","type":"Role","_key":"59133","_from":"37330","_to":"37329"} +{"$label":"ACTS_IN","name":"Glam","type":"Role","_key":"117949","_from":"37330","_to":"69327"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"107550","_from":"37333","_to":"63475"} +{"$label":"ACTS_IN","name":"News Reporter","type":"Role","_key":"59351","_from":"37338","_to":"37480"} +{"$label":"DIRECTED","_key":"59153","_from":"37348","_to":"37343"} +{"$label":"DIRECTED","_key":"59152","_from":"37347","_to":"37343"} +{"$label":"ACTS_IN","name":"Fidget","type":"Role","_key":"59150","_from":"37346","_to":"37343"} +{"$label":"ACTS_IN","name":"Olivia Flaversham","type":"Role","_key":"59149","_from":"37345","_to":"37343"} +{"$label":"ACTS_IN","name":"Dr. David Q. Dawson","type":"Role","_key":"59147","_from":"37344","_to":"37343"} +{"$label":"DIRECTED","_key":"101866","_from":"37347","_to":"59955"} +{"$label":"ACTS_IN","name":"Denzel \/ Diamond","type":"Role","_key":"59175","_from":"37364","_to":"37349"} +{"$label":"ACTS_IN","name":"Urie","type":"Role","_key":"59174","_from":"37363","_to":"37349"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"59173","_from":"37362","_to":"37349"} +{"$label":"ACTS_IN","name":"Smiley","type":"Role","_key":"59172","_from":"37361","_to":"37349"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"59171","_from":"37360","_to":"37349"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"59170","_from":"37359","_to":"37349"} +{"$label":"ACTS_IN","name":"Deborah","type":"Role","_key":"59169","_from":"37358","_to":"37349"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"59168","_from":"37357","_to":"37349"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"59167","_from":"37356","_to":"37349"} +{"$label":"ACTS_IN","name":"Master Mix","type":"Role","_key":"59166","_from":"37355","_to":"37349"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"59164","_from":"37354","_to":"37349"} +{"$label":"ACTS_IN","name":"Seamus","type":"Role","_key":"59163","_from":"37353","_to":"37349"} +{"$label":"ACTS_IN","name":"Marshall","type":"Role","_key":"59162","_from":"37352","_to":"37349"} +{"$label":"ACTS_IN","name":"Mr. White","type":"Role","_key":"59159","_from":"37351","_to":"37349"} +{"$label":"DIRECTED","_key":"59155","_from":"37350","_to":"37349"} +{"$label":"ACTS_IN","name":"Dr. Garth Bender","type":"Role","_key":"106148","_from":"37351","_to":"62517"} +{"$label":"ACTS_IN","name":"Big Daddy","type":"Role","_key":"71544","_from":"37352","_to":"43346"} +{"$label":"ACTS_IN","name":"Kasada","type":"Role","_key":"93449","_from":"37363","_to":"55021"} +{"$label":"ACTS_IN","name":"Psycho","type":"Role","_key":"66492","_from":"37363","_to":"41111"} +{"$label":"ACTS_IN","name":"Xander","type":"Role","_key":"59197","_from":"37386","_to":"37365"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"59196","_from":"37385","_to":"37365"} +{"$label":"ACTS_IN","name":"Leather Girl","type":"Role","_key":"59195","_from":"37384","_to":"37365"} +{"$label":"ACTS_IN","name":"Clay","type":"Role","_key":"59194","_from":"37383","_to":"37365"} +{"$label":"ACTS_IN","name":"Paddich","type":"Role","_key":"59193","_from":"37382","_to":"37365"} +{"$label":"ACTS_IN","name":"Krianna","type":"Role","_key":"59192","_from":"37381","_to":"37365"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"59191","_from":"37380","_to":"37365"} +{"$label":"ACTS_IN","name":"Balan","type":"Role","_key":"59190","_from":"37379","_to":"37365"} +{"$label":"ACTS_IN","name":"Molloch","type":"Role","_key":"59189","_from":"37378","_to":"37365"} +{"$label":"ACTS_IN","name":"Baliel","type":"Role","_key":"59188","_from":"37377","_to":"37365"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"59187","_from":"37376","_to":"37365"} +{"$label":"ACTS_IN","name":"Ithuriel","type":"Role","_key":"59186","_from":"37375","_to":"37365"} +{"$label":"ACTS_IN","name":"Ahriman","type":"Role","_key":"59185","_from":"37374","_to":"37365"} +{"$label":"ACTS_IN","name":"Uriel","type":"Role","_key":"59184","_from":"37373","_to":"37365"} +{"$label":"ACTS_IN","name":"Asmodeus","type":"Role","_key":"59183","_from":"37372","_to":"37365"} +{"$label":"ACTS_IN","name":"Jade \/ Amitiel","type":"Role","_key":"59182","_from":"37371","_to":"37365"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"59181","_from":"37370","_to":"37365"} +{"$label":"ACTS_IN","name":"Lilith","type":"Role","_key":"59180","_from":"37369","_to":"37365"} +{"$label":"ACTS_IN","name":"Raphael","type":"Role","_key":"59179","_from":"37368","_to":"37365"} +{"$label":"ACTS_IN","name":"Sammael","type":"Role","_key":"59178","_from":"37367","_to":"37365"} +{"$label":"DIRECTED","_key":"59177","_from":"37366","_to":"37365"} +{"$label":"ACTS_IN","name":"Kira","type":"Role","_key":"59334","_from":"37371","_to":"37480"} +{"$label":"ACTS_IN","name":"Hana","type":"Role","_key":"59216","_from":"37398","_to":"37387"} +{"$label":"ACTS_IN","name":"Seki, Age 10","type":"Role","_key":"59215","_from":"37397","_to":"37387"} +{"$label":"ACTS_IN","name":"Yang Sze","type":"Role","_key":"59214","_from":"37396","_to":"37387"} +{"$label":"ACTS_IN","name":"Che-Kahn","type":"Role","_key":"59213","_from":"37395","_to":"37387"} +{"$label":"ACTS_IN","name":"Lank","type":"Role","_key":"59212","_from":"37394","_to":"37387"} +{"$label":"ACTS_IN","name":"Yawn","type":"Role","_key":"59211","_from":"37393","_to":"37387"} +{"$label":"ACTS_IN","name":"The Warrior","type":"Role","_key":"59210","_from":"37392","_to":"37387"} +{"$label":"ACTS_IN","name":"Tall Tall","type":"Role","_key":"59208","_from":"37391","_to":"37387"} +{"$label":"ACTS_IN","name":"Mouse","type":"Role","_key":"59207","_from":"37390","_to":"37387"} +{"$label":"ACTS_IN","name":"Seki","type":"Role","_key":"59200","_from":"37389","_to":"37387"} +{"$label":"DIRECTED","_key":"59198","_from":"37388","_to":"37387"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"60279","_from":"37389","_to":"38015"} +{"$label":"ACTS_IN","name":"Marius","type":"Role","_key":"59232","_from":"37407","_to":"37399"} +{"$label":"ACTS_IN","name":"Toni","type":"Role","_key":"59231","_from":"37406","_to":"37399"} +{"$label":"ACTS_IN","name":"Singer of \"Ave Maria\"","type":"Role","_key":"59230","_from":"37405","_to":"37399"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"59229","_from":"37404","_to":"37399"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"59228","_from":"37403","_to":"37399"} +{"$label":"ACTS_IN","name":"Seller in department store","type":"Role","_key":"59227","_from":"37402","_to":"37399"} +{"$label":"ACTS_IN","name":"Sybille","type":"Role","_key":"59225","_from":"37401","_to":"37399"} +{"$label":"DIRECTED","_key":"59219","_from":"37400","_to":"37399"} +{"$label":"ACTS_IN","name":"V\u00edctor Honorio Mosquera, the owner's lawyer","type":"Role","_key":"59253","_from":"37428","_to":"37408"} +{"$label":"ACTS_IN","name":"Car washer","type":"Role","_key":"59252","_from":"37427","_to":"37408"} +{"$label":"ACTS_IN","name":"Misia Triana, the housekeeper","type":"Role","_key":"59251","_from":"37426","_to":"37408"} +{"$label":"ACTS_IN","name":"Do\u00f1a Eulalia, the pious murderess","type":"Role","_key":"59250","_from":"37425","_to":"37408"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"59249","_from":"37424","_to":"37408"} +{"$label":"ACTS_IN","name":"Neighbour","type":"Role","_key":"59248","_from":"37423","_to":"37408"} +{"$label":"ACTS_IN","name":"Truck driver #1","type":"Role","_key":"59247","_from":"37422","_to":"37408"} +{"$label":"ACTS_IN","name":"Truck driver #2","type":"Role","_key":"59246","_from":"37421","_to":"37408"} +{"$label":"ACTS_IN","name":"Di\u00f3genes","type":"Role","_key":"59245","_from":"37420","_to":"37408"} +{"$label":"ACTS_IN","name":"Justo, the left-wing militant","type":"Role","_key":"59244","_from":"37419","_to":"37408"} +{"$label":"ACTS_IN","name":"Small boy","type":"Role","_key":"59243","_from":"37418","_to":"37408"} +{"$label":"ACTS_IN","name":"News operator B","type":"Role","_key":"59242","_from":"37417","_to":"37408"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59241","_from":"37416","_to":"37408"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"59240","_from":"37415","_to":"37408"} +{"$label":"ACTS_IN","name":"Bodyguard #2","type":"Role","_key":"59239","_from":"37414","_to":"37408"} +{"$label":"ACTS_IN","name":"Don Jacinto","type":"Role","_key":"59238","_from":"37413","_to":"37408"} +{"$label":"ACTS_IN","name":"Court secretary","type":"Role","_key":"59237","_from":"37412","_to":"37408"} +{"$label":"ACTS_IN","name":"Treasure buyer","type":"Role","_key":"59235","_from":"37411","_to":"37408"} +{"$label":"ACTS_IN","name":"Father Luis, the accomplice priest","type":"Role","_key":"59234","_from":"37410","_to":"37408"} +{"$label":"DIRECTED","_key":"59233","_from":"37409","_to":"37408"} +{"$label":"ACTS_IN","name":"Mrs. Einstein","type":"Role","_key":"59258","_from":"37433","_to":"37429"} +{"$label":"ACTS_IN","name":"Mr. Einstein","type":"Role","_key":"59257","_from":"37432","_to":"37429"} +{"$label":"ACTS_IN","name":"Marie Curie","type":"Role","_key":"59256","_from":"37431","_to":"37429"} +{"$label":"ACTS_IN","name":"Albert Einstein","type":"Role","_key":"59255","_from":"37430","_to":"37429"} +{"$label":"DIRECTED","_key":"59254","_from":"37430","_to":"37429"} +{"$label":"ACTS_IN","name":"Madam","type":"Role","_key":"107155","_from":"37433","_to":"63188"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"59261","_from":"37435","_to":"37434"} +{"$label":"ACTS_IN","name":"Marielle Duchamp","type":"Role","_key":"70215","_from":"37435","_to":"42794"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"59289","_from":"37448","_to":"37437"} +{"$label":"ACTS_IN","name":"Drunk Driver","type":"Role","_key":"59288","_from":"37447","_to":"37437"} +{"$label":"ACTS_IN","name":"Young Johnny","type":"Role","_key":"59287","_from":"37446","_to":"37437"} +{"$label":"ACTS_IN","name":"Cha'an","type":"Role","_key":"59285","_from":"37445","_to":"37437"} +{"$label":"ACTS_IN","name":"Brian Ross","type":"Role","_key":"59284","_from":"37444","_to":"37437"} +{"$label":"ACTS_IN","name":"Shih","type":"Role","_key":"59283","_from":"37443","_to":"37437"} +{"$label":"ACTS_IN","name":"Ellie Carver","type":"Role","_key":"59282","_from":"37442","_to":"37437"} +{"$label":"ACTS_IN","name":"Cynthia Smith","type":"Role","_key":"59280","_from":"37441","_to":"37437"} +{"$label":"ACTS_IN","name":"David Carver","type":"Role","_key":"59279","_from":"37440","_to":"37437"} +{"$label":"ACTS_IN","name":"Pie Carver","type":"Role","_key":"59278","_from":"37439","_to":"37437"} +{"$label":"DIRECTED","_key":"59271","_from":"37438","_to":"37437"} +{"$label":"DIRECTED","_key":"95001","_from":"37438","_to":"55928"} +{"$label":"DIRECTED","_key":"89779","_from":"37438","_to":"53135"} +{"$label":"DIRECTED","_key":"69806","_from":"37438","_to":"42601"} +{"$label":"DIRECTED","_key":"61091","_from":"37438","_to":"38616"} +{"$label":"ACTS_IN","name":"Henry Dunbarton","type":"Role","_key":"94992","_from":"37438","_to":"55928"} +{"$label":"ACTS_IN","name":"Chrissa Maxwell","type":"Role","_key":"115186","_from":"37439","_to":"67837"} +{"$label":"ACTS_IN","name":"Tyler Clarke","type":"Role","_key":"112200","_from":"37441","_to":"66261"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"59310","_from":"37461","_to":"37449"} +{"$label":"ACTS_IN","name":"XO","type":"Role","_key":"59309","_from":"37460","_to":"37449"} +{"$label":"ACTS_IN","name":"Additional Secretary","type":"Role","_key":"59308","_from":"37459","_to":"37449"} +{"$label":"ACTS_IN","name":"Col. Chung Joon - Hunter","type":"Role","_key":"59307","_from":"37458","_to":"37449"} +{"$label":"ACTS_IN","name":"Col. Koh Lip","type":"Role","_key":"59306","_from":"37457","_to":"37449"} +{"$label":"ACTS_IN","name":"Cmdr. Hwang","type":"Role","_key":"59305","_from":"37456","_to":"37449"} +{"$label":"ACTS_IN","name":"CWO Lawrence Meideros","type":"Role","_key":"59304","_from":"37455","_to":"37449"} +{"$label":"ACTS_IN","name":"Ambassador Li Sung Park","type":"Role","_key":"59302","_from":"37454","_to":"37449"} +{"$label":"ACTS_IN","name":"PO2 Corey Schulteiss","type":"Role","_key":"59301","_from":"37453","_to":"37449"} +{"$label":"ACTS_IN","name":"Campbell Dunleavy","type":"Role","_key":"59300","_from":"37452","_to":"37449"} +{"$label":"ACTS_IN","name":"Lt. Robert James","type":"Role","_key":"59296","_from":"37451","_to":"37449"} +{"$label":"DIRECTED","_key":"59290","_from":"37450","_to":"37449"} +{"$label":"DIRECTED","_key":"111912","_from":"37450","_to":"66067"} +{"$label":"ACTS_IN","name":"Dr. Ben Douglas","type":"Role","_key":"68730","_from":"37451","_to":"42115"} +{"$label":"ACTS_IN","name":"Officer Rodriguez","type":"Role","_key":"64422","_from":"37451","_to":"40148"} +{"$label":"ACTS_IN","name":"Takada","type":"Role","_key":"63287","_from":"37454","_to":"39669"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"66282","_from":"37461","_to":"40999"} +{"$label":"ACTS_IN","name":"Roulette Dealer","type":"Role","_key":"59331","_from":"37479","_to":"37462"} +{"$label":"ACTS_IN","name":"Alyssa","type":"Role","_key":"59330","_from":"37478","_to":"37462"} +{"$label":"ACTS_IN","name":"Petey","type":"Role","_key":"59329","_from":"37477","_to":"37462"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"59328","_from":"37476","_to":"37462"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"59327","_from":"37475","_to":"37462"} +{"$label":"ACTS_IN","name":"Serdy","type":"Role","_key":"59326","_from":"37474","_to":"37462"} +{"$label":"ACTS_IN","name":"Casino Waitress","type":"Role","_key":"59325","_from":"37473","_to":"37462"} +{"$label":"ACTS_IN","name":"Casino Extra","type":"Role","_key":"59324","_from":"37472","_to":"37462"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"59323","_from":"37471","_to":"37462"} +{"$label":"ACTS_IN","name":"Cyrus Woods","type":"Role","_key":"59322","_from":"37470","_to":"37462"} +{"$label":"ACTS_IN","name":"Conner","type":"Role","_key":"59321","_from":"37469","_to":"37462"} +{"$label":"ACTS_IN","name":"Stanley the Bank Teller","type":"Role","_key":"59320","_from":"37468","_to":"37462"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"59319","_from":"37467","_to":"37462"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"59318","_from":"37466","_to":"37462"} +{"$label":"ACTS_IN","name":"Man Shot By Young Mackey","type":"Role","_key":"59317","_from":"37465","_to":"37462"} +{"$label":"ACTS_IN","name":"Diner Patron","type":"Role","_key":"59316","_from":"37464","_to":"37462"} +{"$label":"ACTS_IN","name":"Buckley","type":"Role","_key":"59315","_from":"37463","_to":"37462"} +{"$label":"DIRECTED","_key":"59311","_from":"37463","_to":"37462"} +{"$label":"ACTS_IN","name":"Molly Bell","type":"Role","_key":"103940","_from":"37466","_to":"61142"} +{"$label":"ACTS_IN","name":"Officer 3","type":"Role","_key":"59352","_from":"37497","_to":"37480"} +{"$label":"ACTS_IN","name":"Young Girl","type":"Role","_key":"59350","_from":"37496","_to":"37480"} +{"$label":"ACTS_IN","name":"Officer 1","type":"Role","_key":"59349","_from":"37495","_to":"37480"} +{"$label":"ACTS_IN","name":"Officer 2","type":"Role","_key":"59348","_from":"37494","_to":"37480"} +{"$label":"ACTS_IN","name":"Blaine","type":"Role","_key":"59347","_from":"37493","_to":"37480"} +{"$label":"ACTS_IN","name":"Eyeless Women","type":"Role","_key":"59346","_from":"37492","_to":"37480"} +{"$label":"ACTS_IN","name":"Young Jacob","type":"Role","_key":"59345","_from":"37491","_to":"37480"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"59344","_from":"37490","_to":"37480"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"59343","_from":"37489","_to":"37480"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"59342","_from":"37488","_to":"37480"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"59341","_from":"37487","_to":"37480"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"59340","_from":"37486","_to":"37480"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"59338","_from":"37485","_to":"37480"} +{"$label":"ACTS_IN","name":"Williams","type":"Role","_key":"59337","_from":"37484","_to":"37480"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"59336","_from":"37483","_to":"37480"} +{"$label":"ACTS_IN","name":"Jacob Goodnight","type":"Role","_key":"59335","_from":"37482","_to":"37480"} +{"$label":"DIRECTED","_key":"59332","_from":"37481","_to":"37480"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"100255","_from":"37483","_to":"59123"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"69914","_from":"37483","_to":"42663"} +{"$label":"ACTS_IN","name":"Pendlebury","type":"Role","_key":"106397","_from":"37484","_to":"62687"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"94442","_from":"37484","_to":"55608"} +{"$label":"ACTS_IN","name":"David - Father","type":"Role","_key":"59371","_from":"37510","_to":"37498"} +{"$label":"ACTS_IN","name":"Elizabeth Powell - Mother","type":"Role","_key":"59370","_from":"37509","_to":"37498"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"59369","_from":"37508","_to":"37498"} +{"$label":"ACTS_IN","name":"Joel Bell","type":"Role","_key":"59368","_from":"37507","_to":"37498"} +{"$label":"ACTS_IN","name":"Joel Bell","type":"Role","_key":"59367","_from":"37506","_to":"37498"} +{"$label":"ACTS_IN","name":"Richard Bell","type":"Role","_key":"59366","_from":"37505","_to":"37498"} +{"$label":"ACTS_IN","name":"Ethereal Girl","type":"Role","_key":"59365","_from":"37504","_to":"37498"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"59364","_from":"37503","_to":"37498"} +{"$label":"ACTS_IN","name":"Joshua Gardner","type":"Role","_key":"59363","_from":"37502","_to":"37498"} +{"$label":"ACTS_IN","name":"Theny Thorn","type":"Role","_key":"59362","_from":"37501","_to":"37498"} +{"$label":"ACTS_IN","name":"John Bell Jr.","type":"Role","_key":"59360","_from":"37500","_to":"37498"} +{"$label":"DIRECTED","_key":"59353","_from":"37499","_to":"37498"} +{"$label":"DIRECTED","_key":"72351","_from":"37499","_to":"43696"} +{"$label":"ACTS_IN","name":"Cardinal Giovanni","type":"Role","_key":"94108","_from":"37500","_to":"55414"} +{"$label":"ACTS_IN","name":"P.R. Man","type":"Role","_key":"118990","_from":"37510","_to":"69921"} +{"$label":"ACTS_IN","name":"Foreign Croatian Bear","type":"Role","_key":"59394","_from":"37524","_to":"37511"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"59393","_from":"37523","_to":"37511"} +{"$label":"ACTS_IN","name":"Inuit Narrator","type":"Role","_key":"59391","_from":"37522","_to":"37511"} +{"$label":"ACTS_IN","name":"Male Lover Bear","type":"Role","_key":"59390","_from":"37521","_to":"37511"} +{"$label":"ACTS_IN","name":"Chipmunks","type":"Role","_key":"59388","_from":"37520","_to":"37511"} +{"$label":"ACTS_IN","name":"Sitka","type":"Role","_key":"59386","_from":"37519","_to":"37511"} +{"$label":"ACTS_IN","name":"Old Lady Bear","type":"Role","_key":"59385","_from":"37518","_to":"37511"} +{"$label":"ACTS_IN","name":"Tuke","type":"Role","_key":"59384","_from":"37517","_to":"37511"} +{"$label":"ACTS_IN","name":"Ram #2","type":"Role","_key":"59383","_from":"37516","_to":"37511"} +{"$label":"ACTS_IN","name":"Denahi","type":"Role","_key":"59381","_from":"37515","_to":"37511"} +{"$label":"ACTS_IN","name":"Koda","type":"Role","_key":"59377","_from":"37514","_to":"37511"} +{"$label":"DIRECTED","_key":"59374","_from":"37513","_to":"37511"} +{"$label":"DIRECTED","_key":"59373","_from":"37512","_to":"37511"} +{"$label":"ACTS_IN","name":"Koda","type":"Role","_key":"59397","_from":"37514","_to":"37525"} +{"$label":"DIRECTED","_key":"91937","_from":"37517","_to":"54234"} +{"$label":"ACTS_IN","name":"Doug McKenzie","type":"Role","_key":"91934","_from":"37517","_to":"54234"} +{"$label":"ACTS_IN","name":"Thunder-Karlsson (voice)","type":"Role","_key":"90718","_from":"37517","_to":"53547"} +{"$label":"ACTS_IN","name":"Tuke","type":"Role","_key":"59398","_from":"37517","_to":"37525"} +{"$label":"ACTS_IN","name":"Grandma Addams","type":"Role","_key":"70276","_from":"37518","_to":"42822"} +{"$label":"ACTS_IN","name":"Mrs. Potato Head (voice)","type":"Role","_key":"61610","_from":"37518","_to":"38829"} +{"$label":"ACTS_IN","name":"Doug Dorsey","type":"Role","_key":"109546","_from":"37519","_to":"64707"} +{"$label":"ACTS_IN","name":"Travis Walton","type":"Role","_key":"105197","_from":"37519","_to":"61913"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"104882","_from":"37519","_to":"61706"} +{"$label":"ACTS_IN","name":"Jack Sordino","type":"Role","_key":"102984","_from":"37519","_to":"60576"} +{"$label":"ACTS_IN","name":"Joseph 'Shoeless Joe' Jackson","type":"Role","_key":"95184","_from":"37519","_to":"56003"} +{"$label":"ACTS_IN","name":"Lt. Phil Lowenthal","type":"Role","_key":"90819","_from":"37519","_to":"53591"} +{"$label":"ACTS_IN","name":"Colonel Driscoll","type":"Role","_key":"89359","_from":"37519","_to":"52887"} +{"$label":"ACTS_IN","name":"Aladar","type":"Role","_key":"64117","_from":"37519","_to":"40012"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59414","_from":"37531","_to":"37525"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"59413","_from":"37530","_to":"37525"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"59410","_from":"37529","_to":"37525"} +{"$label":"ACTS_IN","name":"Young Kenai","type":"Role","_key":"59409","_from":"37528","_to":"37525"} +{"$label":"ACTS_IN","name":"Aunt Siqiniq","type":"Role","_key":"59404","_from":"37527","_to":"37525"} +{"$label":"DIRECTED","_key":"59395","_from":"37526","_to":"37525"} +{"$label":"DIRECTED","_key":"91720","_from":"37526","_to":"54107"} +{"$label":"ACTS_IN","name":"Chicha","type":"Role","_key":"94412","_from":"37527","_to":"55586"} +{"$label":"ACTS_IN","name":"Max Goof (voice)","type":"Role","_key":"105305","_from":"37529","_to":"61968"} +{"$label":"ACTS_IN","name":"Thomas Wayne","type":"Role","_key":"97186","_from":"37529","_to":"57172"} +{"$label":"DIRECTED","_key":"121500","_from":"37531","_to":"71373"} +{"$label":"DIRECTED","_key":"105084","_from":"37531","_to":"61852"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"59435","_from":"37546","_to":"37532"} +{"$label":"ACTS_IN","name":"Deputy Jackson","type":"Role","_key":"59433","_from":"37545","_to":"37532"} +{"$label":"ACTS_IN","name":"Deputy Conners","type":"Role","_key":"59432","_from":"37544","_to":"37532"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"59431","_from":"37543","_to":"37532"} +{"$label":"ACTS_IN","name":"Sparky","type":"Role","_key":"59430","_from":"37542","_to":"37532"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"59429","_from":"37541","_to":"37532"} +{"$label":"ACTS_IN","name":"Dr. Seussmeyer","type":"Role","_key":"59428","_from":"37540","_to":"37532"} +{"$label":"ACTS_IN","name":"Deputy Parker","type":"Role","_key":"59427","_from":"37539","_to":"37532"} +{"$label":"ACTS_IN","name":"Karen Herdberger","type":"Role","_key":"59426","_from":"37538","_to":"37532"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"59424","_from":"37537","_to":"37532"} +{"$label":"ACTS_IN","name":"C.J.","type":"Role","_key":"59423","_from":"37536","_to":"37532"} +{"$label":"ACTS_IN","name":"Otis Wilhelm","type":"Role","_key":"59419","_from":"37535","_to":"37532"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"59418","_from":"37534","_to":"37532"} +{"$label":"DIRECTED","_key":"59416","_from":"37533","_to":"37532"} +{"$label":"ACTS_IN","name":"LAPD Officer Bobby Aldrich \/ 'A' World Inmate #1","type":"Role","_key":"65854","_from":"37540","_to":"40750"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"120921","_from":"37541","_to":"70994"} +{"$label":"ACTS_IN","name":"Marina the Nudist","type":"Role","_key":"115088","_from":"37541","_to":"67774"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"108219","_from":"37541","_to":"63955"} +{"$label":"ACTS_IN","name":"Cassie Blue","type":"Role","_key":"102456","_from":"37541","_to":"60289"} +{"$label":"ACTS_IN","name":"Beautiful Headcrushing Witness","type":"Role","_key":"98088","_from":"37541","_to":"57748"} +{"$label":"ACTS_IN","name":"Zela","type":"Role","_key":"59437","_from":"37548","_to":"37547"} +{"$label":"ACTS_IN","name":"Giddy","type":"Role","_key":"90022","_from":"37548","_to":"53251"} +{"$label":"ACTS_IN","name":"Richard Norvik","type":"Role","_key":"59445","_from":"37550","_to":"37549"} +{"$label":"ACTS_IN","name":"Bobby C.","type":"Role","_key":"67275","_from":"37550","_to":"41479"} +{"$label":"DIRECTED","_key":"59456","_from":"37555","_to":"37551"} +{"$label":"ACTS_IN","name":"Ken Walsh","type":"Role","_key":"59453","_from":"37554","_to":"37551"} +{"$label":"ACTS_IN","name":"Ron Grady","type":"Role","_key":"59452","_from":"37553","_to":"37551"} +{"$label":"ACTS_IN","name":"Jesse Walsh","type":"Role","_key":"59450","_from":"37552","_to":"37551"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"72146","_from":"37553","_to":"43605"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"96736","_from":"37554","_to":"56902"} +{"$label":"ACTS_IN","name":"Burt Wilson","type":"Role","_key":"66778","_from":"37554","_to":"41258"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"60231","_from":"37554","_to":"37994"} +{"$label":"DIRECTED","_key":"113997","_from":"37555","_to":"67134"} +{"$label":"DIRECTED","_key":"90517","_from":"37555","_to":"53471"} +{"$label":"DIRECTED","_key":"90471","_from":"37555","_to":"53450"} +{"$label":"DIRECTED","_key":"89740","_from":"37555","_to":"53117"} +{"$label":"DIRECTED","_key":"62922","_from":"37555","_to":"39523"} +{"$label":"ACTS_IN","name":"Woman Warrior","type":"Role","_key":"59484","_from":"37564","_to":"37557"} +{"$label":"ACTS_IN","name":"Rodale","type":"Role","_key":"59483","_from":"37563","_to":"37557"} +{"$label":"ACTS_IN","name":"Man in the Rover","type":"Role","_key":"59482","_from":"37562","_to":"37557"} +{"$label":"ACTS_IN","name":"Zimmerman","type":"Role","_key":"59480","_from":"37561","_to":"37557"} +{"$label":"ACTS_IN","name":"Benchley","type":"Role","_key":"59479","_from":"37560","_to":"37557"} +{"$label":"ACTS_IN","name":"Uno","type":"Role","_key":"59478","_from":"37559","_to":"37557"} +{"$label":"ACTS_IN","name":"Michael Descanso","type":"Role","_key":"59477","_from":"37558","_to":"37557"} +{"$label":"ACTS_IN","name":"Alvin Mack","type":"Role","_key":"115041","_from":"37559","_to":"67739"} +{"$label":"ACTS_IN","name":"Jock","type":"Role","_key":"61124","_from":"37559","_to":"38625"} +{"$label":"ACTS_IN","name":"Sargeant Nash (as Douglas McGrath)","type":"Role","_key":"110595","_from":"37560","_to":"65341"} +{"$label":"ACTS_IN","name":"Sam McGuire","type":"Role","_key":"117284","_from":"37563","_to":"68981"} +{"$label":"ACTS_IN","name":"Clay Sparks","type":"Role","_key":"111459","_from":"37563","_to":"65807"} +{"$label":"ACTS_IN","name":"Pvt. Zab, 1st Squad","type":"Role","_key":"107140","_from":"37563","_to":"63187"} +{"$label":"ACTS_IN","name":"Slim Honeycutt - Cowboy","type":"Role","_key":"104973","_from":"37563","_to":"61763"} +{"$label":"ACTS_IN","name":"Darwin","type":"Role","_key":"104376","_from":"37563","_to":"61401"} +{"$label":"ACTS_IN","name":"Bob Younger","type":"Role","_key":"101539","_from":"37563","_to":"59766"} +{"$label":"ACTS_IN","name":"Louis Skolnick","type":"Role","_key":"98295","_from":"37563","_to":"57901"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"91153","_from":"37563","_to":"53770"} +{"$label":"DIRECTED","_key":"59490","_from":"37566","_to":"37565"} +{"$label":"ACTS_IN","name":"Kristina","type":"Role","_key":"59494","_from":"37568","_to":"37567"} +{"$label":"DIRECTED","_key":"59504","_from":"37571","_to":"37569"} +{"$label":"ACTS_IN","name":"Roxie Shield","type":"Role","_key":"59503","_from":"37570","_to":"37569"} +{"$label":"ACTS_IN","name":"Gaston (voice)","type":"Role","_key":"59509","_from":"37577","_to":"37572"} +{"$label":"ACTS_IN","name":"Beast (voice)","type":"Role","_key":"59508","_from":"37576","_to":"37572"} +{"$label":"ACTS_IN","name":"Belle (voice)","type":"Role","_key":"59507","_from":"37575","_to":"37572"} +{"$label":"DIRECTED","_key":"59506","_from":"37574","_to":"37572"} +{"$label":"DIRECTED","_key":"59505","_from":"37573","_to":"37572"} +{"$label":"ACTS_IN","name":"Santa (voice)","type":"Role","_key":"94283","_from":"37573","_to":"55521"} +{"$label":"DIRECTED","_key":"94275","_from":"37573","_to":"55521"} +{"$label":"DIRECTED","_key":"66358","_from":"37573","_to":"41042"} +{"$label":"DIRECTED","_key":"63978","_from":"37573","_to":"39952"} +{"$label":"DIRECTED","_key":"62094","_from":"37573","_to":"39107"} +{"$label":"DIRECTED","_key":"66359","_from":"37574","_to":"41042"} +{"$label":"DIRECTED","_key":"63979","_from":"37574","_to":"39952"} +{"$label":"ACTS_IN","name":"Belle","type":"Role","_key":"93884","_from":"37575","_to":"55282"} +{"$label":"ACTS_IN","name":"Beast","type":"Role","_key":"93885","_from":"37576","_to":"55282"} +{"$label":"ACTS_IN","name":"Julie Plummer","type":"Role","_key":"59522","_from":"37580","_to":"37579"} +{"$label":"DIRECTED","_key":"59529","_from":"37582","_to":"37581"} +{"$label":"ACTS_IN","name":"Concert Goer","type":"Role","_key":"59556","_from":"37599","_to":"37584"} +{"$label":"ACTS_IN","name":"Phillips Minion","type":"Role","_key":"59555","_from":"37598","_to":"37584"} +{"$label":"ACTS_IN","name":"Tom Gilpin","type":"Role","_key":"59554","_from":"37597","_to":"37584"} +{"$label":"ACTS_IN","name":"Tough Jailbird","type":"Role","_key":"59553","_from":"37596","_to":"37584"} +{"$label":"ACTS_IN","name":"Aunt Martha","type":"Role","_key":"59552","_from":"37595","_to":"37584"} +{"$label":"ACTS_IN","name":"Doorman Oscar","type":"Role","_key":"59551","_from":"37594","_to":"37584"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"59550","_from":"37593","_to":"37584"} +{"$label":"ACTS_IN","name":"Himself - McFly Band Member","type":"Role","_key":"59547","_from":"37592","_to":"37584"} +{"$label":"ACTS_IN","name":"Himself - McFly Band Member","type":"Role","_key":"59546","_from":"37591","_to":"37584"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"59545","_from":"37590","_to":"37584"} +{"$label":"ACTS_IN","name":"Himself - McFly Band Member","type":"Role","_key":"59544","_from":"37589","_to":"37584"} +{"$label":"ACTS_IN","name":"Himself - McFly Band Member","type":"Role","_key":"59543","_from":"37588","_to":"37584"} +{"$label":"ACTS_IN","name":"Damon Phillips","type":"Role","_key":"59542","_from":"37587","_to":"37584"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"59541","_from":"37586","_to":"37584"} +{"$label":"ACTS_IN","name":"Jake Hardin","type":"Role","_key":"59538","_from":"37585","_to":"37584"} +{"$label":"ACTS_IN","name":"Bo Barrett","type":"Role","_key":"98030","_from":"37585","_to":"57725"} +{"$label":"ACTS_IN","name":"Kirk","type":"Role","_key":"94683","_from":"37585","_to":"55786"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"93074","_from":"37585","_to":"54867"} +{"$label":"ACTS_IN","name":"Nicholas Devereaux","type":"Role","_key":"68053","_from":"37585","_to":"41815"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"111889","_from":"37586","_to":"66047"} +{"$label":"ACTS_IN","name":"Tina Hammersmith","type":"Role","_key":"90140","_from":"37586","_to":"53302"} +{"$label":"ACTS_IN","name":"Martha Utterson","type":"Role","_key":"62264","_from":"37586","_to":"39219"} +{"$label":"ACTS_IN","name":"Liz Knowles","type":"Role","_key":"60788","_from":"37586","_to":"38393"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"121405","_from":"37587","_to":"71336"} +{"$label":"ACTS_IN","name":"Tiger J","type":"Role","_key":"116117","_from":"37587","_to":"68369"} +{"$label":"ACTS_IN","name":"Coach Harlan","type":"Role","_key":"100988","_from":"37587","_to":"59518"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"96866","_from":"37587","_to":"56966"} +{"$label":"ACTS_IN","name":"Big Worm","type":"Role","_key":"64740","_from":"37587","_to":"40300"} +{"$label":"ACTS_IN","name":"Double T","type":"Role","_key":"62007","_from":"37587","_to":"39027"} +{"$label":"ACTS_IN","name":"Salvadore","type":"Role","_key":"121409","_from":"37590","_to":"71336"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"108776","_from":"37599","_to":"64301"} +{"$label":"ACTS_IN","name":"Homeless Guy","type":"Role","_key":"59577","_from":"37613","_to":"37600"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"59576","_from":"37612","_to":"37600"} +{"$label":"ACTS_IN","name":"Bodyguard","type":"Role","_key":"59574","_from":"37611","_to":"37600"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"59573","_from":"37610","_to":"37600"} +{"$label":"ACTS_IN","name":"Bitsy","type":"Role","_key":"59572","_from":"37609","_to":"37600"} +{"$label":"ACTS_IN","name":"Dr. Winters","type":"Role","_key":"59571","_from":"37608","_to":"37600"} +{"$label":"ACTS_IN","name":"Officer Sternfield","type":"Role","_key":"59570","_from":"37607","_to":"37600"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"59569","_from":"37606","_to":"37600"} +{"$label":"ACTS_IN","name":"Dewayne Longfellow","type":"Role","_key":"59568","_from":"37605","_to":"37600"} +{"$label":"ACTS_IN","name":"Caesar Lopez","type":"Role","_key":"59566","_from":"37604","_to":"37600"} +{"$label":"ACTS_IN","name":"Harlan Woodriff","type":"Role","_key":"59562","_from":"37603","_to":"37600"} +{"$label":"ACTS_IN","name":"Jude","type":"Role","_key":"59560","_from":"37602","_to":"37600"} +{"$label":"DIRECTED","_key":"59557","_from":"37601","_to":"37600"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"117079","_from":"37602","_to":"68896"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"120445","_from":"37604","_to":"70755"} +{"$label":"ACTS_IN","name":"Officer Walters","type":"Role","_key":"98714","_from":"37605","_to":"58173"} +{"$label":"ACTS_IN","name":"Goth Dancer","type":"Role","_key":"60534","_from":"37609","_to":"38203"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"105358","_from":"37610","_to":"61986"} +{"$label":"ACTS_IN","name":"Sgt. Vincent Degetau","type":"Role","_key":"102266","_from":"37610","_to":"60175"} +{"$label":"ACTS_IN","name":"Floozy 2","type":"Role","_key":"59598","_from":"37626","_to":"37614"} +{"$label":"ACTS_IN","name":"Boxing Boss","type":"Role","_key":"59597","_from":"37625","_to":"37614"} +{"$label":"ACTS_IN","name":"Baby Danny","type":"Role","_key":"59596","_from":"37624","_to":"37614"} +{"$label":"ACTS_IN","name":"Baby Danny","type":"Role","_key":"59594","_from":"37623","_to":"37614"} +{"$label":"ACTS_IN","name":"Little Danny","type":"Role","_key":"59593","_from":"37622","_to":"37614"} +{"$label":"ACTS_IN","name":"Danny's Mother","type":"Role","_key":"59591","_from":"37621","_to":"37614"} +{"$label":"ACTS_IN","name":"Teen Danny","type":"Role","_key":"59590","_from":"37620","_to":"37614"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"59589","_from":"37619","_to":"37614"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"59588","_from":"37618","_to":"37614"} +{"$label":"ACTS_IN","name":"Maddy","type":"Role","_key":"59587","_from":"37617","_to":"37614"} +{"$label":"ACTS_IN","name":"Wyeth","type":"Role","_key":"59586","_from":"37616","_to":"37614"} +{"$label":"ACTS_IN","name":"Lefty","type":"Role","_key":"59583","_from":"37615","_to":"37614"} +{"$label":"ACTS_IN","name":"Caf\u00e9 Waitress","type":"Role","_key":"110611","_from":"37618","_to":"65352"} +{"$label":"ACTS_IN","name":"Assistant Director","type":"Role","_key":"59619","_from":"37644","_to":"37627"} +{"$label":"ACTS_IN","name":"Barber","type":"Role","_key":"59618","_from":"37643","_to":"37627"} +{"$label":"ACTS_IN","name":"Choreographer","type":"Role","_key":"59617","_from":"37642","_to":"37627"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"59616","_from":"37641","_to":"37627"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"59615","_from":"37640","_to":"37627"} +{"$label":"ACTS_IN","name":"Letitia","type":"Role","_key":"59614","_from":"37639","_to":"37627"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"59613","_from":"37638","_to":"37627"} +{"$label":"ACTS_IN","name":"Marisol","type":"Role","_key":"59612","_from":"37637","_to":"37627"} +{"$label":"ACTS_IN","name":"Katrina","type":"Role","_key":"59611","_from":"37636","_to":"37627"} +{"$label":"ACTS_IN","name":"Mrs. Strom","type":"Role","_key":"59610","_from":"37635","_to":"37627"} +{"$label":"ACTS_IN","name":"B.B.","type":"Role","_key":"59609","_from":"37634","_to":"37627"} +{"$label":"ACTS_IN","name":"Mr. Daniels","type":"Role","_key":"59607","_from":"37633","_to":"37627"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"59606","_from":"37632","_to":"37627"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"59605","_from":"37631","_to":"37627"} +{"$label":"ACTS_IN","name":"Michael Ellis","type":"Role","_key":"59604","_from":"37630","_to":"37627"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"59603","_from":"37629","_to":"37627"} +{"$label":"DIRECTED","_key":"59599","_from":"37628","_to":"37627"} +{"$label":"DIRECTED","_key":"98924","_from":"37628","_to":"58287"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"105274","_from":"37630","_to":"61948"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"87972","_from":"37630","_to":"52234"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"102790","_from":"37634","_to":"60464"} +{"$label":"ACTS_IN","name":"Dr. Franks","type":"Role","_key":"64379","_from":"37637","_to":"40118"} +{"$label":"ACTS_IN","name":"Doctor #3","type":"Role","_key":"59639","_from":"37657","_to":"37645"} +{"$label":"ACTS_IN","name":"Clerk","type":"Role","_key":"59638","_from":"37656","_to":"37645"} +{"$label":"ACTS_IN","name":"Cop at Hospital","type":"Role","_key":"59637","_from":"37655","_to":"37645"} +{"$label":"ACTS_IN","name":"Doctor #2","type":"Role","_key":"59636","_from":"37654","_to":"37645"} +{"$label":"ACTS_IN","name":"Doctor #1","type":"Role","_key":"59635","_from":"37653","_to":"37645"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"59633","_from":"37652","_to":"37645"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"59632","_from":"37651","_to":"37645"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"59631","_from":"37650","_to":"37645"} +{"$label":"ACTS_IN","name":"Adam Berkow Jr.","type":"Role","_key":"59630","_from":"37649","_to":"37645"} +{"$label":"ACTS_IN","name":"Timmy Berkow","type":"Role","_key":"59629","_from":"37648","_to":"37645"} +{"$label":"ACTS_IN","name":"Suit","type":"Role","_key":"59628","_from":"37647","_to":"37645"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"59627","_from":"37646","_to":"37645"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"110537","_from":"37647","_to":"65312"} +{"$label":"ACTS_IN","name":"Screaming Little Girl","type":"Role","_key":"59660","_from":"37669","_to":"37658"} +{"$label":"ACTS_IN","name":"Carol's New Man","type":"Role","_key":"59659","_from":"37668","_to":"37658"} +{"$label":"ACTS_IN","name":"Female Wedding Guest","type":"Role","_key":"59657","_from":"37667","_to":"37658"} +{"$label":"ACTS_IN","name":"Groomsman","type":"Role","_key":"59656","_from":"37666","_to":"37658"} +{"$label":"ACTS_IN","name":"Reba","type":"Role","_key":"59651","_from":"37665","_to":"37658"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"59649","_from":"37664","_to":"37658"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"59648","_from":"37663","_to":"37658"} +{"$label":"ACTS_IN","name":"Birthday Girl","type":"Role","_key":"59647","_from":"37662","_to":"37658"} +{"$label":"ACTS_IN","name":"Goth Girl","type":"Role","_key":"59645","_from":"37661","_to":"37658"} +{"$label":"ACTS_IN","name":"Young Stu","type":"Role","_key":"59644","_from":"37660","_to":"37658"} +{"$label":"DIRECTED","_key":"59641","_from":"37659","_to":"37658"} +{"$label":"ACTS_IN","name":"Aparna Tsurutani","type":"Role","_key":"98828","_from":"37667","_to":"58224"} +{"$label":"ACTS_IN","name":"Karen Clark","type":"Role","_key":"59677","_from":"37684","_to":"37670"} +{"$label":"ACTS_IN","name":"Sarah Henson","type":"Role","_key":"59676","_from":"37683","_to":"37670"} +{"$label":"ACTS_IN","name":"Natasha Carlton","type":"Role","_key":"59675","_from":"37682","_to":"37670"} +{"$label":"ACTS_IN","name":"John Duncan","type":"Role","_key":"59674","_from":"37681","_to":"37670"} +{"$label":"ACTS_IN","name":"Emily Henson","type":"Role","_key":"59673","_from":"37680","_to":"37670"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"59672","_from":"37679","_to":"37670"} +{"$label":"ACTS_IN","name":"Owen Hall","type":"Role","_key":"59671","_from":"37678","_to":"37670"} +{"$label":"ACTS_IN","name":"Mike Taylor","type":"Role","_key":"59670","_from":"37677","_to":"37670"} +{"$label":"ACTS_IN","name":"Sim Beards","type":"Role","_key":"59669","_from":"37676","_to":"37670"} +{"$label":"ACTS_IN","name":"Joyce Reece","type":"Role","_key":"59668","_from":"37675","_to":"37670"} +{"$label":"ACTS_IN","name":"Daniel King","type":"Role","_key":"59667","_from":"37674","_to":"37670"} +{"$label":"ACTS_IN","name":"Jim Trenton","type":"Role","_key":"59666","_from":"37673","_to":"37670"} +{"$label":"ACTS_IN","name":"Laura Peters","type":"Role","_key":"59665","_from":"37672","_to":"37670"} +{"$label":"DIRECTED","_key":"59662","_from":"37671","_to":"37670"} +{"$label":"ACTS_IN","name":"Irish Woman","type":"Role","_key":"59698","_from":"37701","_to":"37685"} +{"$label":"ACTS_IN","name":"Charlotte's Father","type":"Role","_key":"59697","_from":"37700","_to":"37685"} +{"$label":"ACTS_IN","name":"Charlotte's Mother","type":"Role","_key":"59696","_from":"37699","_to":"37685"} +{"$label":"ACTS_IN","name":"Old Bearded Man","type":"Role","_key":"59695","_from":"37698","_to":"37685"} +{"$label":"ACTS_IN","name":"Sir Wilfred Owen","type":"Role","_key":"59694","_from":"37697","_to":"37685"} +{"$label":"ACTS_IN","name":"Taj's Mother","type":"Role","_key":"59693","_from":"37696","_to":"37685"} +{"$label":"ACTS_IN","name":"Percy","type":"Role","_key":"59692","_from":"37695","_to":"37685"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"59691","_from":"37694","_to":"37685"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"59690","_from":"37693","_to":"37685"} +{"$label":"ACTS_IN","name":"Taj's Father","type":"Role","_key":"59689","_from":"37692","_to":"37685"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"59687","_from":"37691","_to":"37685"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"59684","_from":"37690","_to":"37685"} +{"$label":"ACTS_IN","name":"Gethin","type":"Role","_key":"59683","_from":"37689","_to":"37685"} +{"$label":"ACTS_IN","name":"Seamus","type":"Role","_key":"59682","_from":"37688","_to":"37685"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"59681","_from":"37687","_to":"37685"} +{"$label":"ACTS_IN","name":"Pip","type":"Role","_key":"59680","_from":"37686","_to":"37685"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"102879","_from":"37686","_to":"60513"} +{"$label":"ACTS_IN","name":"Suzy Welch","type":"Role","_key":"116022","_from":"37691","_to":"68318"} +{"$label":"ACTS_IN","name":"Aslam","type":"Role","_key":"114978","_from":"37692","_to":"67711"} +{"$label":"ACTS_IN","name":"Nurse Kelly","type":"Role","_key":"88746","_from":"37701","_to":"52574"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"88465","_from":"37701","_to":"52436"} +{"$label":"ACTS_IN","name":"Jock #2","type":"Role","_key":"59718","_from":"37713","_to":"37702"} +{"$label":"ACTS_IN","name":"Jock #1","type":"Role","_key":"59717","_from":"37712","_to":"37702"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"59716","_from":"37711","_to":"37702"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"59715","_from":"37710","_to":"37702"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"59714","_from":"37709","_to":"37702"} +{"$label":"ACTS_IN","name":"Hockey Dad","type":"Role","_key":"59713","_from":"37708","_to":"37702"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"59712","_from":"37707","_to":"37702"} +{"$label":"ACTS_IN","name":"Mrs. Palamino","type":"Role","_key":"59709","_from":"37706","_to":"37702"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"59708","_from":"37705","_to":"37702"} +{"$label":"ACTS_IN","name":"Darla","type":"Role","_key":"59707","_from":"37704","_to":"37702"} +{"$label":"ACTS_IN","name":"Young Mike Brander","type":"Role","_key":"59706","_from":"37703","_to":"37702"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"114431","_from":"37704","_to":"67409"} +{"$label":"ACTS_IN","name":"Janice Fraser","type":"Role","_key":"115729","_from":"37706","_to":"68140"} +{"$label":"ACTS_IN","name":"Mrs. Carlson","type":"Role","_key":"114427","_from":"37706","_to":"67409"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"70665","_from":"37706","_to":"42995"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"59738","_from":"37722","_to":"37714"} +{"$label":"ACTS_IN","name":"Suspect","type":"Role","_key":"59734","_from":"37721","_to":"37714"} +{"$label":"ACTS_IN","name":"Romantic actor","type":"Role","_key":"59733","_from":"37720","_to":"37714"} +{"$label":"ACTS_IN","name":"Bloodied actor","type":"Role","_key":"59732","_from":"37719","_to":"37714"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"59731","_from":"37718","_to":"37714"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"59730","_from":"37717","_to":"37714"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"59729","_from":"37716","_to":"37714"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"59728","_from":"37715","_to":"37714"} +{"$label":"ACTS_IN","name":"Ball Buster","type":"Role","_key":"59760","_from":"37733","_to":"37723"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"59759","_from":"37732","_to":"37723"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"59758","_from":"37731","_to":"37723"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"59757","_from":"37730","_to":"37723"} +{"$label":"ACTS_IN","name":"Rhonda","type":"Role","_key":"59756","_from":"37729","_to":"37723"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"59755","_from":"37728","_to":"37723"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"59754","_from":"37727","_to":"37723"} +{"$label":"ACTS_IN","name":"Janeite #1","type":"Role","_key":"59753","_from":"37726","_to":"37723"} +{"$label":"ACTS_IN","name":"Janeite #2","type":"Role","_key":"59752","_from":"37725","_to":"37723"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"59750","_from":"37724","_to":"37723"} +{"$label":"ACTS_IN","name":"Call Girl","type":"Role","_key":"117680","_from":"37731","_to":"69168"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen als Hexensohn","type":"Role","_key":"59781","_from":"37737","_to":"37734"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"59780","_from":"37736","_to":"37734"} +{"$label":"ACTS_IN","name":"Rumpelstilzchen","type":"Role","_key":"59779","_from":"37735","_to":"37734"} +{"$label":"ACTS_IN","name":"Alberich","type":"Role","_key":"64884","_from":"37735","_to":"40350"} +{"$label":"DIRECTED","_key":"108439","_from":"37737","_to":"64105"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"108433","_from":"37737","_to":"64105"} +{"$label":"ACTS_IN","name":"Robert Gomez","type":"Role","_key":"59797","_from":"37749","_to":"37738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59796","_from":"37748","_to":"37738"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59795","_from":"37747","_to":"37738"} +{"$label":"ACTS_IN","name":"Jackie Rojas","type":"Role","_key":"59794","_from":"37746","_to":"37738"} +{"$label":"ACTS_IN","name":"Smoking Sentry","type":"Role","_key":"59792","_from":"37745","_to":"37738"} +{"$label":"ACTS_IN","name":"General Santiago","type":"Role","_key":"59791","_from":"37744","_to":"37738"} +{"$label":"ACTS_IN","name":"Rasheed","type":"Role","_key":"59790","_from":"37743","_to":"37738"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"59789","_from":"37742","_to":"37738"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"59788","_from":"37741","_to":"37738"} +{"$label":"ACTS_IN","name":"Simmons","type":"Role","_key":"59787","_from":"37740","_to":"37738"} +{"$label":"DIRECTED","_key":"59783","_from":"37739","_to":"37738"} +{"$label":"ACTS_IN","name":"Capt. Seth Cooper","type":"Role","_key":"117630","_from":"37741","_to":"69148"} +{"$label":"ACTS_IN","name":"Spec. Hank Jackson","type":"Role","_key":"117631","_from":"37742","_to":"69148"} +{"$label":"DIRECTED","_key":"59806","_from":"37759","_to":"37750"} +{"$label":"ACTS_IN","name":"Soo-jin","type":"Role","_key":"59805","_from":"37758","_to":"37750"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59804","_from":"37757","_to":"37750"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59803","_from":"37756","_to":"37750"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59802","_from":"37755","_to":"37750"} +{"$label":"ACTS_IN","name":"Nurse Won","type":"Role","_key":"59801","_from":"37754","_to":"37750"} +{"$label":"ACTS_IN","name":"Lee Min-su","type":"Role","_key":"59800","_from":"37753","_to":"37750"} +{"$label":"ACTS_IN","name":"Kyung-min","type":"Role","_key":"59799","_from":"37752","_to":"37750"} +{"$label":"ACTS_IN","name":"Han Hye-won","type":"Role","_key":"59798","_from":"37751","_to":"37750"} +{"$label":"ACTS_IN","name":"Im Jungwhan","type":"Role","_key":"120503","_from":"37752","_to":"70782"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"59821","_from":"37771","_to":"37761"} +{"$label":"ACTS_IN","name":"Patrick Bateman","type":"Role","_key":"59820","_from":"37770","_to":"37761"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"59819","_from":"37769","_to":"37761"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"59818","_from":"37768","_to":"37761"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"59817","_from":"37767","_to":"37761"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"59816","_from":"37766","_to":"37761"} +{"$label":"ACTS_IN","name":"Chesse","type":"Role","_key":"59815","_from":"37765","_to":"37761"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"59814","_from":"37764","_to":"37761"} +{"$label":"DIRECTED","_key":"59813","_from":"37763","_to":"37761"} +{"$label":"DIRECTED","_key":"59812","_from":"37762","_to":"37761"} +{"$label":"ACTS_IN","name":"Young Petr","type":"Role","_key":"59833","_from":"37784","_to":"37772"} +{"$label":"ACTS_IN","name":"Vlad","type":"Role","_key":"59832","_from":"37783","_to":"37772"} +{"$label":"ACTS_IN","name":"Petr \/ Human","type":"Role","_key":"59831","_from":"37782","_to":"37772"} +{"$label":"ACTS_IN","name":"Slava","type":"Role","_key":"59830","_from":"37781","_to":"37772"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"59829","_from":"37780","_to":"37772"} +{"$label":"ACTS_IN","name":"Ori","type":"Role","_key":"59828","_from":"37779","_to":"37772"} +{"$label":"ACTS_IN","name":"Ambrose","type":"Role","_key":"59827","_from":"37778","_to":"37772"} +{"$label":"ACTS_IN","name":"Domingo","type":"Role","_key":"59826","_from":"37777","_to":"37772"} +{"$label":"ACTS_IN","name":"Gannon","type":"Role","_key":"59825","_from":"37776","_to":"37772"} +{"$label":"ACTS_IN","name":"Miranda","type":"Role","_key":"59824","_from":"37775","_to":"37772"} +{"$label":"ACTS_IN","name":"Bailey","type":"Role","_key":"59823","_from":"37774","_to":"37772"} +{"$label":"DIRECTED","_key":"59822","_from":"37773","_to":"37772"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"100535","_from":"37778","_to":"59298"} +{"$label":"ACTS_IN","name":"Japanese Fighter","type":"Role","_key":"59849","_from":"37798","_to":"37785"} +{"$label":"ACTS_IN","name":"Parole Officer","type":"Role","_key":"59848","_from":"37797","_to":"37785"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59847","_from":"37796","_to":"37785"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59846","_from":"37795","_to":"37785"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59845","_from":"37794","_to":"37785"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59844","_from":"37793","_to":"37785"} +{"$label":"ACTS_IN","name":"Rawhide","type":"Role","_key":"59843","_from":"37792","_to":"37785"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"59842","_from":"37791","_to":"37785"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"59841","_from":"37790","_to":"37785"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"59840","_from":"37789","_to":"37785"} +{"$label":"ACTS_IN","name":"Swordflower \/ Barbara Woo","type":"Role","_key":"59839","_from":"37788","_to":"37785"} +{"$label":"ACTS_IN","name":"Kidstuff \/ Fastbuck","type":"Role","_key":"59838","_from":"37786","_to":"37785"} +{"$label":"ACTS_IN","name":"Ricky Fung","type":"Role","_key":"59837","_from":"37787","_to":"37785"} +{"$label":"DIRECTED","_key":"59834","_from":"37786","_to":"37785"} +{"$label":"ACTS_IN","name":"Kong Long (as Sammo Hung)","type":"Role","_key":"117604","_from":"37786","_to":"69139"} +{"$label":"ACTS_IN","name":"Lam Sai-wing \/ 'Butcher Wing'","type":"Role","_key":"117575","_from":"37786","_to":"69126"} +{"$label":"ACTS_IN","name":"Fatty Liu Hsi Chia \/ John Liu","type":"Role","_key":"117405","_from":"37786","_to":"69054"} +{"$label":"ACTS_IN","name":"Danny \/ Dodo Fung (as Samo Hung)","type":"Role","_key":"117392","_from":"37786","_to":"69048"} +{"$label":"ACTS_IN","name":"Kidstuff \/ Fastbuck","type":"Role","_key":"117203","_from":"37786","_to":"68950"} +{"$label":"ACTS_IN","name":"Li Hui","type":"Role","_key":"109858","_from":"37786","_to":"64903"} +{"$label":"ACTS_IN","name":"White Eyebrows","type":"Role","_key":"108738","_from":"37786","_to":"64278"} +{"$label":"ACTS_IN","name":"Uncle Luck","type":"Role","_key":"106424","_from":"37786","_to":"62698"} +{"$label":"ACTS_IN","name":"Bold Cheung","type":"Role","_key":"105644","_from":"37786","_to":"62182"} +{"$label":"ACTS_IN","name":"Luo Ping-An","type":"Role","_key":"100695","_from":"37786","_to":"59376"} +{"$label":"ACTS_IN","name":"Wong Po","type":"Role","_key":"92805","_from":"37786","_to":"54752"} +{"$label":"ACTS_IN","name":"Moby","type":"Role","_key":"68529","_from":"37786","_to":"42025"} +{"$label":"ACTS_IN","name":"Chang San Fung","type":"Role","_key":"66256","_from":"37786","_to":"40989"} +{"$label":"DIRECTED","_key":"117389","_from":"37786","_to":"69048"} +{"$label":"DIRECTED","_key":"117208","_from":"37786","_to":"68950"} +{"$label":"DIRECTED","_key":"105646","_from":"37786","_to":"62182"} +{"$label":"DIRECTED","_key":"68533","_from":"37786","_to":"42025"} +{"$label":"DIRECTED","_key":"66254","_from":"37786","_to":"40989"} +{"$label":"DIRECTED","_key":"64658","_from":"37786","_to":"40278"} +{"$label":"DIRECTED","_key":"64624","_from":"37786","_to":"40258"} +{"$label":"ACTS_IN","name":"Lui Lun","type":"Role","_key":"117585","_from":"37787","_to":"69130"} +{"$label":"ACTS_IN","name":"Foon","type":"Role","_key":"117578","_from":"37787","_to":"69126"} +{"$label":"ACTS_IN","name":"Master of the Five Fists","type":"Role","_key":"117360","_from":"37787","_to":"69027"} +{"$label":"ACTS_IN","name":"Ricky Fung","type":"Role","_key":"117204","_from":"37787","_to":"68950"} +{"$label":"ACTS_IN","name":"Billy Lo","type":"Role","_key":"93953","_from":"37787","_to":"55322"} +{"$label":"ACTS_IN","name":"Sang Kung's Son","type":"Role","_key":"70687","_from":"37787","_to":"43001"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"68530","_from":"37787","_to":"42025"} +{"$label":"ACTS_IN","name":"Leung Fu","type":"Role","_key":"64589","_from":"37787","_to":"40235"} +{"$label":"ACTS_IN","name":"Siu-wan","type":"Role","_key":"113475","_from":"37788","_to":"66860"} +{"$label":"ACTS_IN","name":"Lei Ying","type":"Role","_key":"119004","_from":"37789","_to":"69947"} +{"$label":"ACTS_IN","name":"\"Wimp Lo\"","type":"Role","_key":"72580","_from":"37789","_to":"43763"} +{"$label":"ACTS_IN","name":"General Yin","type":"Role","_key":"72306","_from":"37789","_to":"43677"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"117207","_from":"37790","_to":"68950"} +{"$label":"ACTS_IN","name":"Wong","type":"Role","_key":"106332","_from":"37790","_to":"62646"} +{"$label":"ACTS_IN","name":"King of Green Bat: Wai Yat Siu","type":"Role","_key":"66257","_from":"37790","_to":"40989"} +{"$label":"ACTS_IN","name":"Han","type":"Role","_key":"64632","_from":"37790","_to":"40258"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"117206","_from":"37791","_to":"68950"} +{"$label":"ACTS_IN","name":"Cowboy's Father","type":"Role","_key":"109105","_from":"37793","_to":"64466"} +{"$label":"ACTS_IN","name":"Lau (as Ma Wo)","type":"Role","_key":"117780","_from":"37794","_to":"69234"} +{"$label":"ACTS_IN","name":"Fire Master","type":"Role","_key":"117588","_from":"37794","_to":"69130"} +{"$label":"ACTS_IN","name":"Old Man","type":"Role","_key":"64605","_from":"37794","_to":"40235"} +{"$label":"ACTS_IN","name":"Kuk (as Ching Ying Lam)","type":"Role","_key":"117781","_from":"37796","_to":"69234"} +{"$label":"ACTS_IN","name":"The Inspector","type":"Role","_key":"105645","_from":"37796","_to":"62182"} +{"$label":"ACTS_IN","name":"Cameo appearance","type":"Role","_key":"66268","_from":"37796","_to":"40989"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"119502","_from":"37797","_to":"70198"} +{"$label":"ACTS_IN","name":"Luk","type":"Role","_key":"117359","_from":"37797","_to":"69027"} +{"$label":"ACTS_IN","name":"Old Chan","type":"Role","_key":"117313","_from":"37797","_to":"68995"} +{"$label":"ACTS_IN","name":"Chang Wu-Yi","type":"Role","_key":"117279","_from":"37797","_to":"68979"} +{"$label":"ACTS_IN","name":"Hsiu Chien","type":"Role","_key":"89765","_from":"37797","_to":"53130"} +{"$label":"ACTS_IN","name":"Fan Chun-hsia","type":"Role","_key":"71720","_from":"37797","_to":"43415"} +{"$label":"ACTS_IN","name":"Garde 1","type":"Role","_key":"59873","_from":"37817","_to":"37799"} +{"$label":"ACTS_IN","name":"Le Chinois","type":"Role","_key":"59872","_from":"37816","_to":"37799"} +{"$label":"ACTS_IN","name":"Garde 2","type":"Role","_key":"59871","_from":"37815","_to":"37799"} +{"$label":"ACTS_IN","name":"Le gros mercenaire","type":"Role","_key":"59870","_from":"37814","_to":"37799"} +{"$label":"ACTS_IN","name":"Tarik","type":"Role","_key":"59869","_from":"37813","_to":"37799"} +{"$label":"ACTS_IN","name":"Cerb\u00e8re Taha","type":"Role","_key":"59868","_from":"37812","_to":"37799"} +{"$label":"ACTS_IN","name":"Para 2","type":"Role","_key":"59867","_from":"37811","_to":"37799"} +{"$label":"ACTS_IN","name":"Gorille entr\u00e9e Marronniers","type":"Role","_key":"59866","_from":"37810","_to":"37799"} +{"$label":"ACTS_IN","name":"Para 3","type":"Role","_key":"59865","_from":"37809","_to":"37799"} +{"$label":"ACTS_IN","name":"Jamel","type":"Role","_key":"59864","_from":"37808","_to":"37799"} +{"$label":"ACTS_IN","name":"K2 boy 1","type":"Role","_key":"59863","_from":"37807","_to":"37799"} +{"$label":"ACTS_IN","name":"Yoyo","type":"Role","_key":"59862","_from":"37806","_to":"37799"} +{"$label":"ACTS_IN","name":"Le colonel","type":"Role","_key":"59861","_from":"37805","_to":"37799"} +{"$label":"ACTS_IN","name":"Kr\u00fcger","type":"Role","_key":"59860","_from":"37804","_to":"37799"} +{"$label":"ACTS_IN","name":"Corsini","type":"Role","_key":"59859","_from":"37803","_to":"37799"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"59858","_from":"37802","_to":"37799"} +{"$label":"ACTS_IN","name":"Taha Bemamud","type":"Role","_key":"59857","_from":"37801","_to":"37799"} +{"$label":"ACTS_IN","name":"K2","type":"Role","_key":"59856","_from":"37800","_to":"37799"} +{"$label":"ACTS_IN","name":"le p\u00e8re de Brice","type":"Role","_key":"111984","_from":"37804","_to":"66100"} +{"$label":"ACTS_IN","name":"Boualem Malik","type":"Role","_key":"121766","_from":"37808","_to":"71533"} +{"$label":"ACTS_IN","name":"Boualem Malik","type":"Role","_key":"110833","_from":"37808","_to":"65471"} +{"$label":"ACTS_IN","name":"Policier BAC","type":"Role","_key":"93880","_from":"37814","_to":"55271"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"59895","_from":"37822","_to":"37818"} +{"$label":"ACTS_IN","name":"Young Runi","type":"Role","_key":"59894","_from":"37821","_to":"37818"} +{"$label":"ACTS_IN","name":"Kheetseen","type":"Role","_key":"59891","_from":"37820","_to":"37818"} +{"$label":"ACTS_IN","name":"Kateri","type":"Role","_key":"59890","_from":"37819","_to":"37818"} +{"$label":"ACTS_IN","name":"Korean Girl","type":"Role","_key":"59923","_from":"37834","_to":"37824"} +{"$label":"ACTS_IN","name":"Rangoon Terrorist","type":"Role","_key":"59922","_from":"37833","_to":"37824"} +{"$label":"ACTS_IN","name":"Commander 3rd Fleet","type":"Role","_key":"59921","_from":"37832","_to":"37824"} +{"$label":"ACTS_IN","name":"USS Abraham Lincoln Sailor","type":"Role","_key":"59920","_from":"37831","_to":"37824"} +{"$label":"ACTS_IN","name":"USS Abraham Lincoln Sailor","type":"Role","_key":"59916","_from":"37830","_to":"37824"} +{"$label":"ACTS_IN","name":"USS Abraham Lincoln Sailor","type":"Role","_key":"59915","_from":"37829","_to":"37824"} +{"$label":"ACTS_IN","name":"Lt. Aaron Shaftsbury","type":"Role","_key":"59914","_from":"37828","_to":"37824"} +{"$label":"ACTS_IN","name":"Master at Arms","type":"Role","_key":"59913","_from":"37827","_to":"37824"} +{"$label":"ACTS_IN","name":"USS Abraham Lincoln Sailor","type":"Role","_key":"59912","_from":"37826","_to":"37824"} +{"$label":"ACTS_IN","name":"Naval Controller","type":"Role","_key":"59911","_from":"37825","_to":"37824"} +{"$label":"ACTS_IN","name":"Pippos","type":"Role","_key":"96981","_from":"37825","_to":"57043"} +{"$label":"ACTS_IN","name":"Rodney Thibadeaux","type":"Role","_key":"117926","_from":"37828","_to":"69318"} +{"$label":"ACTS_IN","name":"Potter","type":"Role","_key":"96990","_from":"37828","_to":"57043"} +{"$label":"ACTS_IN","name":"Old Woman #2","type":"Role","_key":"59944","_from":"37850","_to":"37835"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"59943","_from":"37849","_to":"37835"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"59942","_from":"37848","_to":"37835"} +{"$label":"ACTS_IN","name":"Sedan Driver","type":"Role","_key":"59941","_from":"37847","_to":"37835"} +{"$label":"ACTS_IN","name":"Reina","type":"Role","_key":"59940","_from":"37846","_to":"37835"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"59939","_from":"37845","_to":"37835"} +{"$label":"ACTS_IN","name":"Tourist #1","type":"Role","_key":"59938","_from":"37844","_to":"37835"} +{"$label":"ACTS_IN","name":"Soldier #1","type":"Role","_key":"59937","_from":"37843","_to":"37835"} +{"$label":"ACTS_IN","name":"Aroon","type":"Role","_key":"59934","_from":"37842","_to":"37835"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"59933","_from":"37841","_to":"37835"} +{"$label":"ACTS_IN","name":"Tia","type":"Role","_key":"59932","_from":"37840","_to":"37835"} +{"$label":"ACTS_IN","name":"Admiral's Aide","type":"Role","_key":"59931","_from":"37839","_to":"37835"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"59930","_from":"37838","_to":"37835"} +{"$label":"ACTS_IN","name":"Dwayne Dixon","type":"Role","_key":"59929","_from":"37837","_to":"37835"} +{"$label":"ACTS_IN","name":"Robinson","type":"Role","_key":"59927","_from":"37836","_to":"37835"} +{"$label":"ACTS_IN","name":"London Constable","type":"Role","_key":"110342","_from":"37841","_to":"65199"} +{"$label":"ACTS_IN","name":"Ragman","type":"Role","_key":"64219","_from":"37843","_to":"40055"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"64216","_from":"37845","_to":"40055"} +{"$label":"ACTS_IN","name":"Jean-Michel","type":"Role","_key":"98589","_from":"37848","_to":"58099"} +{"$label":"ACTS_IN","name":"Grendan","type":"Role","_key":"59964","_from":"37859","_to":"37851"} +{"$label":"ACTS_IN","name":"Chook","type":"Role","_key":"59963","_from":"37858","_to":"37851"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"59962","_from":"37857","_to":"37851"} +{"$label":"ACTS_IN","name":"Dora Lynn Tisdale","type":"Role","_key":"59961","_from":"37856","_to":"37851"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"59960","_from":"37855","_to":"37851"} +{"$label":"ACTS_IN","name":"Peter Wong","type":"Role","_key":"59959","_from":"37854","_to":"37851"} +{"$label":"ACTS_IN","name":"Dennis Wallace","type":"Role","_key":"59955","_from":"37853","_to":"37851"} +{"$label":"DIRECTED","_key":"59945","_from":"37852","_to":"37851"} +{"$label":"DIRECTED","_key":"100297","_from":"37852","_to":"59140"} +{"$label":"DIRECTED","_key":"91996","_from":"37852","_to":"54274"} +{"$label":"ACTS_IN","name":"Dr. Rupert Brooks","type":"Role","_key":"72564","_from":"37853","_to":"43760"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"120102","_from":"37854","_to":"70533"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"115289","_from":"37854","_to":"67881"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"93201","_from":"37854","_to":"54916"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"91084","_from":"37854","_to":"53744"} +{"$label":"ACTS_IN","name":"Lucy Westerman","type":"Role","_key":"64196","_from":"37855","_to":"40048"} +{"$label":"ACTS_IN","name":"Corey Vandermeer","type":"Role","_key":"71833","_from":"37859","_to":"43469"} +{"$label":"ACTS_IN","name":"Werner","type":"Role","_key":"59985","_from":"37867","_to":"37860"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"59984","_from":"37866","_to":"37860"} +{"$label":"ACTS_IN","name":"Margot","type":"Role","_key":"59982","_from":"37865","_to":"37860"} +{"$label":"ACTS_IN","name":"Gr\u00e9goire Bergonhe","type":"Role","_key":"59981","_from":"37864","_to":"37860"} +{"$label":"ACTS_IN","name":"Magali Garrel","type":"Role","_key":"59978","_from":"37863","_to":"37860"} +{"$label":"ACTS_IN","name":"Daniel Bercoff","type":"Role","_key":"59977","_from":"37862","_to":"37860"} +{"$label":"ACTS_IN","name":"Catherine Versen","type":"Role","_key":"59975","_from":"37861","_to":"37860"} +{"$label":"ACTS_IN","name":"Val\u00e9rie","type":"Role","_key":"118059","_from":"37861","_to":"69385"} +{"$label":"ACTS_IN","name":"B\u00e9atrice de Montmirail","type":"Role","_key":"71571","_from":"37861","_to":"43356"} +{"$label":"ACTS_IN","name":"The doctor \/ The samurai (voice)","type":"Role","_key":"107400","_from":"37864","_to":"63342"} +{"$label":"ACTS_IN","name":"Lardier","type":"Role","_key":"95713","_from":"37864","_to":"56295"} +{"$label":"ACTS_IN","name":"Phillip Darrow","type":"Role","_key":"60007","_from":"37875","_to":"37868"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"60006","_from":"37874","_to":"37868"} +{"$label":"ACTS_IN","name":"Surgical Nurse","type":"Role","_key":"60005","_from":"37873","_to":"37868"} +{"$label":"ACTS_IN","name":"Eulogist","type":"Role","_key":"60004","_from":"37872","_to":"37868"} +{"$label":"ACTS_IN","name":"Surgical Nurse","type":"Role","_key":"60003","_from":"37871","_to":"37868"} +{"$label":"ACTS_IN","name":"Suicide Girl","type":"Role","_key":"60000","_from":"37870","_to":"37868"} +{"$label":"ACTS_IN","name":"Emily Darrow","type":"Role","_key":"59991","_from":"37869","_to":"37868"} +{"$label":"ACTS_IN","name":"Man Calling Dog","type":"Role","_key":"60028","_from":"37888","_to":"37876"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"60027","_from":"37887","_to":"37876"} +{"$label":"ACTS_IN","name":"Track Coach","type":"Role","_key":"60026","_from":"37886","_to":"37876"} +{"$label":"ACTS_IN","name":"Boom Boom","type":"Role","_key":"60025","_from":"37885","_to":"37876"} +{"$label":"ACTS_IN","name":"Officer Lewis","type":"Role","_key":"60024","_from":"37884","_to":"37876"} +{"$label":"ACTS_IN","name":"Parent","type":"Role","_key":"60023","_from":"37883","_to":"37876"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"60022","_from":"37882","_to":"37876"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"60021","_from":"37881","_to":"37876"} +{"$label":"ACTS_IN","name":"Allison Mandrakis","type":"Role","_key":"60020","_from":"37880","_to":"37876"} +{"$label":"ACTS_IN","name":"Will Mandrakis","type":"Role","_key":"60019","_from":"37879","_to":"37876"} +{"$label":"ACTS_IN","name":"Officer Burroughs","type":"Role","_key":"60018","_from":"37878","_to":"37876"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"60017","_from":"37877","_to":"37876"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"102240","_from":"37877","_to":"60160"} +{"$label":"ACTS_IN","name":"Marty Nichols","type":"Role","_key":"97596","_from":"37878","_to":"57466"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"66458","_from":"37878","_to":"41089"} +{"$label":"ACTS_IN","name":"Nurse Henderson","type":"Role","_key":"111380","_from":"37883","_to":"65768"} +{"$label":"ACTS_IN","name":"Nurse Montgomery","type":"Role","_key":"60056","_from":"37900","_to":"37890"} +{"$label":"ACTS_IN","name":"Dr. Kent","type":"Role","_key":"60054","_from":"37899","_to":"37890"} +{"$label":"ACTS_IN","name":"Nurse Holiday","type":"Role","_key":"60053","_from":"37898","_to":"37890"} +{"$label":"ACTS_IN","name":"Nurse Park","type":"Role","_key":"60052","_from":"37897","_to":"37890"} +{"$label":"ACTS_IN","name":"Nurse Lowe","type":"Role","_key":"60050","_from":"37896","_to":"37890"} +{"$label":"ACTS_IN","name":"James Brewster","type":"Role","_key":"60049","_from":"37895","_to":"37890"} +{"$label":"ACTS_IN","name":"Nurse Price","type":"Role","_key":"60048","_from":"37894","_to":"37890"} +{"$label":"ACTS_IN","name":"Young Amy","type":"Role","_key":"60047","_from":"37893","_to":"37890"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"60044","_from":"37892","_to":"37890"} +{"$label":"DIRECTED","_key":"60036","_from":"37891","_to":"37890"} +{"$label":"ACTS_IN","name":"Crash","type":"Role","_key":"100281","_from":"37891","_to":"59136"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"69401","_from":"37892","_to":"42424"} +{"$label":"ACTS_IN","name":"Rachel Carruthers","type":"Role","_key":"69376","_from":"37892","_to":"42413"} +{"$label":"ACTS_IN","name":"Casper","type":"Role","_key":"67612","_from":"37892","_to":"41614"} +{"$label":"ACTS_IN","name":"Stuart 'Stu' Pickles (voice)","type":"Role","_key":"100322","_from":"37895","_to":"59151"} +{"$label":"ACTS_IN","name":"Pole Cat Stripper","type":"Role","_key":"72390","_from":"37896","_to":"43699"} +{"$label":"ACTS_IN","name":"Gloria Price","type":"Role","_key":"60060","_from":"37903","_to":"37901"} +{"$label":"ACTS_IN","name":"Davy Gordon","type":"Role","_key":"60059","_from":"37902","_to":"37901"} +{"$label":"ACTS_IN","name":"Marcus' Relative","type":"Role","_key":"60088","_from":"37916","_to":"37905"} +{"$label":"ACTS_IN","name":"Marcus' Relative","type":"Role","_key":"60087","_from":"37915","_to":"37905"} +{"$label":"ACTS_IN","name":"Marcus' Relative","type":"Role","_key":"60086","_from":"37914","_to":"37905"} +{"$label":"ACTS_IN","name":"Uncle Ray","type":"Role","_key":"60085","_from":"37913","_to":"37905"} +{"$label":"ACTS_IN","name":"Uncle Deuce","type":"Role","_key":"60084","_from":"37912","_to":"37905"} +{"$label":"ACTS_IN","name":"Marcus' Relative","type":"Role","_key":"60083","_from":"37911","_to":"37905"} +{"$label":"ACTS_IN","name":"Odell","type":"Role","_key":"60082","_from":"37910","_to":"37905"} +{"$label":"ACTS_IN","name":"Katrina","type":"Role","_key":"60081","_from":"37909","_to":"37905"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"60078","_from":"37908","_to":"37905"} +{"$label":"ACTS_IN","name":"Young Marcus","type":"Role","_key":"60077","_from":"37907","_to":"37905"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"60069","_from":"37906","_to":"37905"} +{"$label":"ACTS_IN","name":"Stan Green","type":"Role","_key":"121034","_from":"37906","_to":"71082"} +{"$label":"ACTS_IN","name":"Jamal Aiken","type":"Role","_key":"98902","_from":"37906","_to":"58276"} +{"$label":"ACTS_IN","name":"Spider","type":"Role","_key":"94249","_from":"37906","_to":"55507"} +{"$label":"ACTS_IN","name":"Lil Cease","type":"Role","_key":"100105","_from":"37907","_to":"59044"} +{"$label":"ACTS_IN","name":"Will, George's Friend","type":"Role","_key":"67178","_from":"37907","_to":"41441"} +{"$label":"ACTS_IN","name":"Rashid","type":"Role","_key":"97177","_from":"37910","_to":"57167"} +{"$label":"ACTS_IN","name":"Jean-Paul","type":"Role","_key":"64285","_from":"37910","_to":"40082"} +{"$label":"ACTS_IN","name":"Flinty Eyed Corporal","type":"Role","_key":"60111","_from":"37932","_to":"37918"} +{"$label":"ACTS_IN","name":"Lennox","type":"Role","_key":"60110","_from":"37931","_to":"37918"} +{"$label":"ACTS_IN","name":"Orderly #2","type":"Role","_key":"60109","_from":"37930","_to":"37918"} +{"$label":"ACTS_IN","name":"Orderly","type":"Role","_key":"60108","_from":"37929","_to":"37918"} +{"$label":"ACTS_IN","name":"Recruitment Officer","type":"Role","_key":"60107","_from":"37928","_to":"37918"} +{"$label":"ACTS_IN","name":"Scrub","type":"Role","_key":"60106","_from":"37927","_to":"37918"} +{"$label":"ACTS_IN","name":"PFC Delroy","type":"Role","_key":"60105","_from":"37926","_to":"37918"} +{"$label":"ACTS_IN","name":"Dr. Stroheim","type":"Role","_key":"60104","_from":"37925","_to":"37918"} +{"$label":"ACTS_IN","name":"Sgt. Dodds","type":"Role","_key":"60102","_from":"37924","_to":"37918"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"60101","_from":"37923","_to":"37918"} +{"$label":"ACTS_IN","name":"Zoe Snow","type":"Role","_key":"60100","_from":"37922","_to":"37918"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"60099","_from":"37921","_to":"37918"} +{"$label":"ACTS_IN","name":"Waylon","type":"Role","_key":"60098","_from":"37920","_to":"37918"} +{"$label":"DIRECTED","_key":"60096","_from":"37919","_to":"37918"} +{"$label":"DIRECTED","_key":"121215","_from":"37919","_to":"71198"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"60570","_from":"37925","_to":"38229"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"60119","_from":"37936","_to":"37933"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"60117","_from":"37935","_to":"37933"} +{"$label":"DIRECTED","_key":"60112","_from":"37934","_to":"37933"} +{"$label":"ACTS_IN","name":"Tyler Crowe","type":"Role","_key":"104964","_from":"37936","_to":"61762"} +{"$label":"ACTS_IN","name":"Nick Larson","type":"Role","_key":"101124","_from":"37936","_to":"59583"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"60140","_from":"37947","_to":"37937"} +{"$label":"ACTS_IN","name":"Droste","type":"Role","_key":"60139","_from":"37946","_to":"37937"} +{"$label":"ACTS_IN","name":"Campos","type":"Role","_key":"60138","_from":"37945","_to":"37937"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"60137","_from":"37944","_to":"37937"} +{"$label":"ACTS_IN","name":"Rook","type":"Role","_key":"60135","_from":"37943","_to":"37937"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"60134","_from":"37942","_to":"37937"} +{"$label":"ACTS_IN","name":"Ives","type":"Role","_key":"60133","_from":"37941","_to":"37937"} +{"$label":"ACTS_IN","name":"Wu","type":"Role","_key":"60132","_from":"37940","_to":"37937"} +{"$label":"ACTS_IN","name":"Reyes","type":"Role","_key":"60131","_from":"37939","_to":"37937"} +{"$label":"DIRECTED","_key":"60120","_from":"37938","_to":"37937"} +{"$label":"DIRECTED","_key":"61992","_from":"37938","_to":"39027"} +{"$label":"ACTS_IN","name":"Master Burton","type":"Role","_key":"115294","_from":"37941","_to":"67881"} +{"$label":"ACTS_IN","name":"Dr. Parker Wickson","type":"Role","_key":"104395","_from":"37941","_to":"61413"} +{"$label":"ACTS_IN","name":"Andrew Scott \/ GR13","type":"Role","_key":"65147","_from":"37941","_to":"40469"} +{"$label":"ACTS_IN","name":"Scary Leashed Indian","type":"Role","_key":"60159","_from":"37959","_to":"37948"} +{"$label":"ACTS_IN","name":"Grocery Cashier","type":"Role","_key":"60158","_from":"37958","_to":"37948"} +{"$label":"ACTS_IN","name":"Nurse Fuller","type":"Role","_key":"60157","_from":"37957","_to":"37948"} +{"$label":"ACTS_IN","name":"Stitch","type":"Role","_key":"60156","_from":"37956","_to":"37948"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"60155","_from":"37955","_to":"37948"} +{"$label":"ACTS_IN","name":"Realtor","type":"Role","_key":"60154","_from":"37954","_to":"37948"} +{"$label":"ACTS_IN","name":"Chief of Police","type":"Role","_key":"60153","_from":"37953","_to":"37948"} +{"$label":"ACTS_IN","name":"ER Doctor","type":"Role","_key":"60152","_from":"37952","_to":"37948"} +{"$label":"ACTS_IN","name":"Ronald Defeo","type":"Role","_key":"60151","_from":"37951","_to":"37948"} +{"$label":"ACTS_IN","name":"Jodie Defeo","type":"Role","_key":"60150","_from":"37950","_to":"37948"} +{"$label":"DIRECTED","_key":"60141","_from":"37949","_to":"37948"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"60174","_from":"37969","_to":"37960"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"60173","_from":"37968","_to":"37960"} +{"$label":"ACTS_IN","name":"Roadkill Driver","type":"Role","_key":"60172","_from":"37967","_to":"37960"} +{"$label":"ACTS_IN","name":"Young Vincent","type":"Role","_key":"60171","_from":"37966","_to":"37960"} +{"$label":"ACTS_IN","name":"Dr. Victor Sinclair","type":"Role","_key":"60170","_from":"37965","_to":"37960"} +{"$label":"ACTS_IN","name":"Trudy Sinclair","type":"Role","_key":"60169","_from":"37964","_to":"37960"} +{"$label":"ACTS_IN","name":"Young Bo","type":"Role","_key":"60168","_from":"37963","_to":"37960"} +{"$label":"ACTS_IN","name":"Nick Jones","type":"Role","_key":"60165","_from":"37962","_to":"37960"} +{"$label":"ACTS_IN","name":"Wade","type":"Role","_key":"60164","_from":"37961","_to":"37960"} +{"$label":"ACTS_IN","name":"Clay","type":"Role","_key":"93475","_from":"37961","_to":"55036"} +{"$label":"ACTS_IN","name":"John Davis","type":"Role","_key":"72458","_from":"37961","_to":"43726"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"60579","_from":"37961","_to":"38237"} +{"$label":"ACTS_IN","name":"Jordan Owens","type":"Role","_key":"98905","_from":"37962","_to":"58276"} +{"$label":"ACTS_IN","name":"Austin Ames","type":"Role","_key":"68777","_from":"37962","_to":"42142"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"116775","_from":"37968","_to":"68740"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"116766","_from":"37968","_to":"68735"} +{"$label":"ACTS_IN","name":"Steph","type":"Role","_key":"96648","_from":"37968","_to":"56840"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"60194","_from":"37978","_to":"37970"} +{"$label":"ACTS_IN","name":"Lori","type":"Role","_key":"60193","_from":"37977","_to":"37970"} +{"$label":"ACTS_IN","name":"Janey","type":"Role","_key":"60192","_from":"37976","_to":"37970"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"60190","_from":"37975","_to":"37970"} +{"$label":"ACTS_IN","name":"Trey","type":"Role","_key":"60188","_from":"37974","_to":"37970"} +{"$label":"ACTS_IN","name":"Dr. Gwen Lichtman","type":"Role","_key":"60186","_from":"37973","_to":"37970"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"60185","_from":"37972","_to":"37970"} +{"$label":"ACTS_IN","name":"Carly Douglas","type":"Role","_key":"60181","_from":"37971","_to":"37970"} +{"$label":"ACTS_IN","name":"Travis Carlson","type":"Role","_key":"106788","_from":"37975","_to":"62951"} +{"$label":"ACTS_IN","name":"Dean Sebastian","type":"Role","_key":"90141","_from":"37975","_to":"53302"} +{"$label":"ACTS_IN","name":"News Reporter","type":"Role","_key":"60220","_from":"37993","_to":"37980"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"60219","_from":"37992","_to":"37980"} +{"$label":"ACTS_IN","name":"Young Rookie","type":"Role","_key":"60218","_from":"37991","_to":"37980"} +{"$label":"ACTS_IN","name":"Stay Alive Game Voice-Over","type":"Role","_key":"60217","_from":"37990","_to":"37980"} +{"$label":"ACTS_IN","name":"Countess","type":"Role","_key":"60216","_from":"37989","_to":"37980"} +{"$label":"ACTS_IN","name":"Mrs. Crowley","type":"Role","_key":"60215","_from":"37988","_to":"37980"} +{"$label":"ACTS_IN","name":"Fidget","type":"Role","_key":"60214","_from":"37987","_to":"37980"} +{"$label":"ACTS_IN","name":"Detective King","type":"Role","_key":"60213","_from":"37986","_to":"37980"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"60212","_from":"37985","_to":"37980"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"60211","_from":"37984","_to":"37980"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"60210","_from":"37983","_to":"37980"} +{"$label":"ACTS_IN","name":"Swink","type":"Role","_key":"60204","_from":"37982","_to":"37980"} +{"$label":"DIRECTED","_key":"60201","_from":"37981","_to":"37980"} +{"$label":"ACTS_IN","name":"Willie Morris","type":"Role","_key":"114328","_from":"37982","_to":"67342"} +{"$label":"ACTS_IN","name":"Cody Banks","type":"Role","_key":"110979","_from":"37982","_to":"65549"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"104894","_from":"37982","_to":"61711"} +{"$label":"ACTS_IN","name":"Jason Shepherd","type":"Role","_key":"72474","_from":"37982","_to":"43733"} +{"$label":"ACTS_IN","name":"Cody Banks","type":"Role","_key":"66772","_from":"37982","_to":"41256"} +{"$label":"ACTS_IN","name":"Mama Beast","type":"Role","_key":"60241","_from":"38003","_to":"37994"} +{"$label":"ACTS_IN","name":"Finger Girl","type":"Role","_key":"60240","_from":"38002","_to":"37994"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"60237","_from":"38001","_to":"37994"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"60236","_from":"38000","_to":"37994"} +{"$label":"ACTS_IN","name":"Harley Mom","type":"Role","_key":"60235","_from":"37999","_to":"37994"} +{"$label":"ACTS_IN","name":"Drunk Girl","type":"Role","_key":"60234","_from":"37998","_to":"37994"} +{"$label":"ACTS_IN","name":"Hot Wheels","type":"Role","_key":"60230","_from":"37997","_to":"37994"} +{"$label":"ACTS_IN","name":"Heroine","type":"Role","_key":"60225","_from":"37996","_to":"37994"} +{"$label":"DIRECTED","_key":"60222","_from":"37995","_to":"37994"} +{"$label":"DIRECTED","_key":"96734","_from":"37995","_to":"56902"} +{"$label":"ACTS_IN","name":"Goldie \/ Maurice Gregory","type":"Role","_key":"61923","_from":"37995","_to":"38966"} +{"$label":"ACTS_IN","name":"Freya McAllister","type":"Role","_key":"102560","_from":"37996","_to":"60339"} +{"$label":"ACTS_IN","name":"Decker","type":"Role","_key":"116722","_from":"37997","_to":"68707"} +{"$label":"ACTS_IN","name":"Brian Valco","type":"Role","_key":"104932","_from":"37997","_to":"61746"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"95013","_from":"37997","_to":"55939"} +{"$label":"ACTS_IN","name":"Sarah Wilkie","type":"Role","_key":"99305","_from":"37999","_to":"58513"} +{"$label":"ACTS_IN","name":"Mrs. Sorenstram","type":"Role","_key":"99080","_from":"37999","_to":"58369"} +{"$label":"ACTS_IN","name":"Biker Queen","type":"Role","_key":"96737","_from":"37999","_to":"56902"} +{"$label":"ACTS_IN","name":"Connor","type":"Role","_key":"120481","_from":"38001","_to":"70764"} +{"$label":"ACTS_IN","name":"Cash","type":"Role","_key":"106617","_from":"38001","_to":"62820"} +{"$label":"ACTS_IN","name":"Medical Delivery Guy","type":"Role","_key":"60262","_from":"38012","_to":"38004"} +{"$label":"ACTS_IN","name":"Grocery Checker","type":"Role","_key":"60261","_from":"38011","_to":"38004"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"60258","_from":"38010","_to":"38004"} +{"$label":"ACTS_IN","name":"Video Store Clerk","type":"Role","_key":"60257","_from":"38009","_to":"38004"} +{"$label":"ACTS_IN","name":"Dr. Wong","type":"Role","_key":"60256","_from":"38008","_to":"38004"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"60255","_from":"38007","_to":"38004"} +{"$label":"ACTS_IN","name":"Dr. Wang","type":"Role","_key":"60254","_from":"38006","_to":"38004"} +{"$label":"ACTS_IN","name":"Young John Solomon","type":"Role","_key":"60253","_from":"38005","_to":"38004"} +{"$label":"ACTS_IN","name":"Dr. Neil Gordon","type":"Role","_key":"60265","_from":"38014","_to":"38013"} +{"$label":"ACTS_IN","name":"Jake Scully","type":"Role","_key":"70253","_from":"38014","_to":"42814"} +{"$label":"ACTS_IN","name":"Jewelry Store Clerk","type":"Role","_key":"60291","_from":"38025","_to":"38015"} +{"$label":"ACTS_IN","name":"Gandalf","type":"Role","_key":"60290","_from":"38024","_to":"38015"} +{"$label":"ACTS_IN","name":"Jell-O","type":"Role","_key":"60289","_from":"38023","_to":"38015"} +{"$label":"ACTS_IN","name":"Frodo","type":"Role","_key":"60288","_from":"38022","_to":"38015"} +{"$label":"ACTS_IN","name":"Wedding Planner \/ Receptionist","type":"Role","_key":"60287","_from":"38021","_to":"38015"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"60286","_from":"38020","_to":"38015"} +{"$label":"ACTS_IN","name":"Old Cat Woman","type":"Role","_key":"60285","_from":"38019","_to":"38015"} +{"$label":"ACTS_IN","name":"Justice of the Peace","type":"Role","_key":"60284","_from":"38018","_to":"38015"} +{"$label":"ACTS_IN","name":"Eduardo \/ Housekeeper","type":"Role","_key":"60283","_from":"38017","_to":"38015"} +{"$label":"ACTS_IN","name":"Linda Jones","type":"Role","_key":"60277","_from":"38016","_to":"38015"} +{"$label":"ACTS_IN","name":"Ollie, the Pig","type":"Role","_key":"95968","_from":"38018","_to":"56425"} +{"$label":"ACTS_IN","name":"Kevin Powell","type":"Role","_key":"60298","_from":"38029","_to":"38026"} +{"$label":"ACTS_IN","name":"Rod Kimble","type":"Role","_key":"60293","_from":"38028","_to":"38026"} +{"$label":"DIRECTED","_key":"60292","_from":"38027","_to":"38026"} +{"$label":"ACTS_IN","name":"Robbie Klaven","type":"Role","_key":"109431","_from":"38028","_to":"64647"} +{"$label":"ACTS_IN","name":"Ham III","type":"Role","_key":"72079","_from":"38028","_to":"43576"} +{"$label":"ACTS_IN","name":"Chaka","type":"Role","_key":"115113","_from":"38029","_to":"67789"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"60321","_from":"38045","_to":"38030"} +{"$label":"ACTS_IN","name":"Vivian's Brother","type":"Role","_key":"60319","_from":"38044","_to":"38030"} +{"$label":"ACTS_IN","name":"Young Vivian's Father","type":"Role","_key":"60318","_from":"38043","_to":"38030"} +{"$label":"ACTS_IN","name":"Vivian's Sister","type":"Role","_key":"60317","_from":"38042","_to":"38030"} +{"$label":"ACTS_IN","name":"Young Vivian's Mother","type":"Role","_key":"60316","_from":"38041","_to":"38030"} +{"$label":"ACTS_IN","name":"Young Vivian","type":"Role","_key":"60315","_from":"38040","_to":"38030"} +{"$label":"ACTS_IN","name":"Pharmacist","type":"Role","_key":"60314","_from":"38039","_to":"38030"} +{"$label":"ACTS_IN","name":"Mrs. Bellagra","type":"Role","_key":"60313","_from":"38038","_to":"38030"} +{"$label":"ACTS_IN","name":"Albu","type":"Role","_key":"60311","_from":"38037","_to":"38030"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"60310","_from":"38036","_to":"38030"} +{"$label":"ACTS_IN","name":"Constani","type":"Role","_key":"60309","_from":"38035","_to":"38030"} +{"$label":"ACTS_IN","name":"Willem","type":"Role","_key":"60308","_from":"38034","_to":"38030"} +{"$label":"ACTS_IN","name":"Ulf","type":"Role","_key":"60307","_from":"38033","_to":"38030"} +{"$label":"ACTS_IN","name":"Rafe","type":"Role","_key":"60306","_from":"38032","_to":"38030"} +{"$label":"DIRECTED","_key":"60301","_from":"38031","_to":"38030"} +{"$label":"DIRECTED","_key":"70423","_from":"38031","_to":"42879"} +{"$label":"DIRECTED","_key":"63180","_from":"38031","_to":"39627"} +{"$label":"ACTS_IN","name":"Logging Company Board Member","type":"Role","_key":"60342","_from":"38061","_to":"38046"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"60341","_from":"38060","_to":"38046"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"60340","_from":"38059","_to":"38046"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"60339","_from":"38058","_to":"38046"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"60338","_from":"38057","_to":"38046"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"60337","_from":"38056","_to":"38046"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"60336","_from":"38055","_to":"38046"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"60335","_from":"38054","_to":"38046"} +{"$label":"ACTS_IN","name":"Mills","type":"Role","_key":"60334","_from":"38053","_to":"38046"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"60331","_from":"38052","_to":"38046"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"60330","_from":"38051","_to":"38046"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"60329","_from":"38050","_to":"38046"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"60326","_from":"38049","_to":"38046"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"60323","_from":"38048","_to":"38046"} +{"$label":"DIRECTED","_key":"60322","_from":"38047","_to":"38046"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"119018","_from":"38048","_to":"69958"} +{"$label":"ACTS_IN","name":"Mad Max","type":"Role","_key":"97095","_from":"38048","_to":"57114"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"102103","_from":"38049","_to":"60066"} +{"$label":"ACTS_IN","name":"Detective Fine","type":"Role","_key":"93268","_from":"38050","_to":"54939"} +{"$label":"ACTS_IN","name":"Marco Langford","type":"Role","_key":"117053","_from":"38051","_to":"68886"} +{"$label":"ACTS_IN","name":"Malcolm Williams","type":"Role","_key":"101132","_from":"38051","_to":"59583"} +{"$label":"ACTS_IN","name":"Bryce","type":"Role","_key":"93087","_from":"38051","_to":"54872"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"90430","_from":"38051","_to":"53428"} +{"$label":"ACTS_IN","name":"Thomas J. Dodd","type":"Role","_key":"117941","_from":"38052","_to":"69324"} +{"$label":"ACTS_IN","name":"Lon Saunders","type":"Role","_key":"120343","_from":"38055","_to":"70686"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"94775","_from":"38055","_to":"55817"} +{"$label":"ACTS_IN","name":"Dulann","type":"Role","_key":"106876","_from":"38056","_to":"63004"} +{"$label":"ACTS_IN","name":"The Lineman","type":"Role","_key":"97053","_from":"38058","_to":"57091"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"115286","_from":"38060","_to":"67881"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"102239","_from":"38060","_to":"60160"} +{"$label":"ACTS_IN","name":"Delivery Man","type":"Role","_key":"60363","_from":"38072","_to":"38062"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"60362","_from":"38071","_to":"38062"} +{"$label":"ACTS_IN","name":"Elderly Woman","type":"Role","_key":"60361","_from":"38070","_to":"38062"} +{"$label":"ACTS_IN","name":"Chinese Man II","type":"Role","_key":"60360","_from":"38069","_to":"38062"} +{"$label":"ACTS_IN","name":"Chinese Man I","type":"Role","_key":"60359","_from":"38068","_to":"38062"} +{"$label":"ACTS_IN","name":"Newswoman on TV","type":"Role","_key":"60358","_from":"38067","_to":"38062"} +{"$label":"ACTS_IN","name":"Onlooker","type":"Role","_key":"60357","_from":"38066","_to":"38062"} +{"$label":"ACTS_IN","name":"George the Doorman","type":"Role","_key":"60356","_from":"38065","_to":"38062"} +{"$label":"ACTS_IN","name":"Young Technician","type":"Role","_key":"60353","_from":"38064","_to":"38062"} +{"$label":"ACTS_IN","name":"Jenny Krase","type":"Role","_key":"60349","_from":"38063","_to":"38062"} +{"$label":"ACTS_IN","name":"Amanda Price","type":"Role","_key":"120099","_from":"38063","_to":"70530"} +{"$label":"ACTS_IN","name":"Nicola","type":"Role","_key":"108929","_from":"38063","_to":"64373"} +{"$label":"ACTS_IN","name":"Manservant (Oxford) (as Stuart Ong)","type":"Role","_key":"99426","_from":"38068","_to":"58590"} +{"$label":"ACTS_IN","name":"Cafeteria Waitress","type":"Role","_key":"60384","_from":"38092","_to":"38073"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"60383","_from":"38091","_to":"38073"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"60382","_from":"38090","_to":"38073"} +{"$label":"ACTS_IN","name":"Tony White","type":"Role","_key":"60381","_from":"38089","_to":"38073"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"60380","_from":"38088","_to":"38073"} +{"$label":"ACTS_IN","name":"Malky","type":"Role","_key":"60379","_from":"38087","_to":"38073"} +{"$label":"ACTS_IN","name":"Danni","type":"Role","_key":"60378","_from":"38086","_to":"38073"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"60377","_from":"38085","_to":"38073"} +{"$label":"ACTS_IN","name":"Magic Shop Manager","type":"Role","_key":"60376","_from":"38084","_to":"38073"} +{"$label":"ACTS_IN","name":"Female Colleague","type":"Role","_key":"60375","_from":"38083","_to":"38073"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"60374","_from":"38082","_to":"38073"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"60373","_from":"38081","_to":"38073"} +{"$label":"ACTS_IN","name":"Male Customer","type":"Role","_key":"60370","_from":"38080","_to":"38073"} +{"$label":"ACTS_IN","name":"Female Customer","type":"Role","_key":"60369","_from":"38079","_to":"38073"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"60368","_from":"38078","_to":"38073"} +{"$label":"ACTS_IN","name":"Theatre Manager","type":"Role","_key":"60367","_from":"38077","_to":"38073"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"60366","_from":"38076","_to":"38073"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"60365","_from":"38075","_to":"38073"} +{"$label":"DIRECTED","_key":"60364","_from":"38074","_to":"38073"} +{"$label":"ACTS_IN","name":"David - Writer","type":"Role","_key":"102778","_from":"38075","_to":"60460"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"60854","_from":"38075","_to":"38430"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"60846","_from":"38078","_to":"38430"} +{"$label":"ACTS_IN","name":"Bessie","type":"Role","_key":"107897","_from":"38085","_to":"63713"} +{"$label":"ACTS_IN","name":"Period Film Lover","type":"Role","_key":"96299","_from":"38086","_to":"56572"} +{"$label":"ACTS_IN","name":"Dawn","type":"Role","_key":"63718","_from":"38086","_to":"39839"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"60405","_from":"38105","_to":"38093"} +{"$label":"ACTS_IN","name":"RAF Officer","type":"Role","_key":"60404","_from":"38104","_to":"38093"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"60403","_from":"38103","_to":"38093"} +{"$label":"ACTS_IN","name":"Neville","type":"Role","_key":"60402","_from":"38102","_to":"38093"} +{"$label":"ACTS_IN","name":"Sgt Harry Stone","type":"Role","_key":"60401","_from":"38101","_to":"38093"} +{"$label":"ACTS_IN","name":"British Agent","type":"Role","_key":"60400","_from":"38100","_to":"38093"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"60398","_from":"38099","_to":"38093"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"60397","_from":"38098","_to":"38093"} +{"$label":"ACTS_IN","name":"Bothringaye","type":"Role","_key":"60396","_from":"38097","_to":"38093"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"60395","_from":"38096","_to":"38093"} +{"$label":"ACTS_IN","name":"Gouldovsky","type":"Role","_key":"60394","_from":"38095","_to":"38093"} +{"$label":"DIRECTED","_key":"60385","_from":"38094","_to":"38093"} +{"$label":"DIRECTED","_key":"103773","_from":"38100","_to":"61031"} +{"$label":"ACTS_IN","name":"Chief Mst Sgt. Walter Harriman","type":"Role","_key":"91914","_from":"38100","_to":"54222"} +{"$label":"ACTS_IN","name":"Carlton Leach","type":"Role","_key":"92209","_from":"38101","_to":"54418"} +{"$label":"ACTS_IN","name":"Man in School","type":"Role","_key":"60425","_from":"38125","_to":"38106"} +{"$label":"ACTS_IN","name":"Gumbo","type":"Role","_key":"60424","_from":"38124","_to":"38106"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"60423","_from":"38123","_to":"38106"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"60422","_from":"38122","_to":"38106"} +{"$label":"ACTS_IN","name":"Maria Vierra","type":"Role","_key":"60420","_from":"38121","_to":"38106"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"60419","_from":"38120","_to":"38106"} +{"$label":"ACTS_IN","name":"Mom","type":"Role","_key":"60418","_from":"38119","_to":"38106"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"60417","_from":"38118","_to":"38106"} +{"$label":"ACTS_IN","name":"Young Sarah","type":"Role","_key":"60416","_from":"38117","_to":"38106"} +{"$label":"ACTS_IN","name":"Parnell","type":"Role","_key":"60415","_from":"38116","_to":"38106"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"60414","_from":"38115","_to":"38106"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"60413","_from":"38114","_to":"38106"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"60412","_from":"38113","_to":"38106"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"60411","_from":"38112","_to":"38106"} +{"$label":"ACTS_IN","name":"Deon","type":"Role","_key":"60410","_from":"38111","_to":"38106"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"60409","_from":"38110","_to":"38106"} +{"$label":"ACTS_IN","name":"Tre","type":"Role","_key":"60408","_from":"38109","_to":"38106"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"60407","_from":"38108","_to":"38106"} +{"$label":"DIRECTED","_key":"60406","_from":"38107","_to":"38106"} +{"$label":"ACTS_IN","name":"Agent Reynolds","type":"Role","_key":"120382","_from":"38113","_to":"70716"} +{"$label":"ACTS_IN","name":"Treena Lester","type":"Role","_key":"60431","_from":"38127","_to":"38126"} +{"$label":"ACTS_IN","name":"La Donna","type":"Role","_key":"107060","_from":"38127","_to":"63126"} +{"$label":"ACTS_IN","name":"Nightclub Sket","type":"Role","_key":"60459","_from":"38146","_to":"38129"} +{"$label":"ACTS_IN","name":"Bluefoot by phone","type":"Role","_key":"60458","_from":"38145","_to":"38129"} +{"$label":"ACTS_IN","name":"Clubber","type":"Role","_key":"60457","_from":"38144","_to":"38129"} +{"$label":"ACTS_IN","name":"Drug Dealer","type":"Role","_key":"60456","_from":"38143","_to":"38129"} +{"$label":"ACTS_IN","name":"Dickie","type":"Role","_key":"60455","_from":"38142","_to":"38129"} +{"$label":"ACTS_IN","name":"Officer Walker","type":"Role","_key":"60454","_from":"38141","_to":"38129"} +{"$label":"ACTS_IN","name":"Devon","type":"Role","_key":"60453","_from":"38140","_to":"38129"} +{"$label":"ACTS_IN","name":"Det. Anderson","type":"Role","_key":"60452","_from":"38139","_to":"38129"} +{"$label":"ACTS_IN","name":"Rage","type":"Role","_key":"60450","_from":"38138","_to":"38129"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"60449","_from":"38137","_to":"38129"} +{"$label":"ACTS_IN","name":"Det. Newmyer","type":"Role","_key":"60448","_from":"38136","_to":"38129"} +{"$label":"ACTS_IN","name":"Too Fine","type":"Role","_key":"60447","_from":"38135","_to":"38129"} +{"$label":"ACTS_IN","name":"Det. Ed Haines","type":"Role","_key":"60446","_from":"38134","_to":"38129"} +{"$label":"ACTS_IN","name":"David Brumby","type":"Role","_key":"60445","_from":"38133","_to":"38129"} +{"$label":"ACTS_IN","name":"Hope","type":"Role","_key":"60444","_from":"38132","_to":"38129"} +{"$label":"ACTS_IN","name":"Detective Andy White","type":"Role","_key":"60442","_from":"38131","_to":"38129"} +{"$label":"DIRECTED","_key":"60439","_from":"38130","_to":"38129"} +{"$label":"DIRECTED","_key":"92208","_from":"38130","_to":"54418"} +{"$label":"ACTS_IN","name":"Tony Tucker","type":"Role","_key":"92210","_from":"38131","_to":"54418"} +{"$label":"ACTS_IN","name":"Perry Elley","type":"Role","_key":"116016","_from":"38133","_to":"68318"} +{"$label":"ACTS_IN","name":"Mickey Steele","type":"Role","_key":"92215","_from":"38133","_to":"54418"} +{"$label":"ACTS_IN","name":"Jimmy Gerenuk","type":"Role","_key":"92216","_from":"38137","_to":"54418"} +{"$label":"ACTS_IN","name":"Medical Student","type":"Role","_key":"60477","_from":"38162","_to":"38147"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"60476","_from":"38161","_to":"38147"} +{"$label":"ACTS_IN","name":"Jasmin Blanchard","type":"Role","_key":"60475","_from":"38160","_to":"38147"} +{"$label":"ACTS_IN","name":"Security Officer","type":"Role","_key":"60473","_from":"38159","_to":"38147"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"60472","_from":"38158","_to":"38147"} +{"$label":"ACTS_IN","name":"Dr. Carolyn Saltz","type":"Role","_key":"60471","_from":"38157","_to":"38147"} +{"$label":"ACTS_IN","name":"Medical Records Clerk","type":"Role","_key":"60470","_from":"38156","_to":"38147"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"60469","_from":"38155","_to":"38147"} +{"$label":"ACTS_IN","name":"Malcolm Little","type":"Role","_key":"60467","_from":"38154","_to":"38147"} +{"$label":"ACTS_IN","name":"Ivan Verbukh","type":"Role","_key":"60466","_from":"38153","_to":"38147"} +{"$label":"ACTS_IN","name":"Rick O'Connor","type":"Role","_key":"60465","_from":"38152","_to":"38147"} +{"$label":"ACTS_IN","name":"Alison Blanchard","type":"Role","_key":"60463","_from":"38151","_to":"38147"} +{"$label":"ACTS_IN","name":"Brian Cross","type":"Role","_key":"60462","_from":"38150","_to":"38147"} +{"$label":"ACTS_IN","name":"Carlos Aclar","type":"Role","_key":"60461","_from":"38149","_to":"38147"} +{"$label":"DIRECTED","_key":"60460","_from":"38148","_to":"38147"} +{"$label":"DIRECTED","_key":"91716","_from":"38148","_to":"54106"} +{"$label":"ACTS_IN","name":"Jake Bianski","type":"Role","_key":"91717","_from":"38152","_to":"54106"} +{"$label":"ACTS_IN","name":"Boby","type":"Role","_key":"60484","_from":"38169","_to":"38163"} +{"$label":"ACTS_IN","name":"Malou","type":"Role","_key":"60483","_from":"38168","_to":"38163"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"60482","_from":"38167","_to":"38163"} +{"$label":"ACTS_IN","name":"Ben's mother","type":"Role","_key":"60481","_from":"38166","_to":"38163"} +{"$label":"DIRECTED","_key":"60479","_from":"38165","_to":"38163"} +{"$label":"DIRECTED","_key":"60478","_from":"38164","_to":"38163"} +{"$label":"ACTS_IN","name":"Milos","type":"Role","_key":"60504","_from":"38181","_to":"38170"} +{"$label":"ACTS_IN","name":"Purvis","type":"Role","_key":"60503","_from":"38180","_to":"38170"} +{"$label":"ACTS_IN","name":"Roi Mateke Seko","type":"Role","_key":"60502","_from":"38179","_to":"38170"} +{"$label":"ACTS_IN","name":"Sir Walter Stephenson","type":"Role","_key":"60501","_from":"38178","_to":"38170"} +{"$label":"ACTS_IN","name":"Bakaro","type":"Role","_key":"60500","_from":"38177","_to":"38170"} +{"$label":"ACTS_IN","name":"Hector Duncan","type":"Role","_key":"60497","_from":"38176","_to":"38170"} +{"$label":"ACTS_IN","name":"Zachary","type":"Role","_key":"60496","_from":"38175","_to":"38170"} +{"$label":"ACTS_IN","name":"Douglas","type":"Role","_key":"60495","_from":"38174","_to":"38170"} +{"$label":"ACTS_IN","name":"Angus","type":"Role","_key":"60494","_from":"38173","_to":"38170"} +{"$label":"ACTS_IN","name":"Likola","type":"Role","_key":"60490","_from":"38172","_to":"38170"} +{"$label":"ACTS_IN","name":"Toko","type":"Role","_key":"60489","_from":"38171","_to":"38170"} +{"$label":"ACTS_IN","name":"High Priest","type":"Role","_key":"94761","_from":"38174","_to":"55802"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"60526","_from":"38202","_to":"38182"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"60525","_from":"38201","_to":"38182"} +{"$label":"ACTS_IN","name":"Mr. Rooney","type":"Role","_key":"60524","_from":"38200","_to":"38182"} +{"$label":"ACTS_IN","name":"Grown Man","type":"Role","_key":"60523","_from":"38199","_to":"38182"} +{"$label":"ACTS_IN","name":"Dream Killer","type":"Role","_key":"60522","_from":"38198","_to":"38182"} +{"$label":"ACTS_IN","name":"Burglary Kid","type":"Role","_key":"60521","_from":"38197","_to":"38182"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"60520","_from":"38196","_to":"38182"} +{"$label":"ACTS_IN","name":"Ty","type":"Role","_key":"60519","_from":"38195","_to":"38182"} +{"$label":"ACTS_IN","name":"Truck Girl #1","type":"Role","_key":"60518","_from":"38194","_to":"38182"} +{"$label":"ACTS_IN","name":"High School Girl #2","type":"Role","_key":"60517","_from":"38193","_to":"38182"} +{"$label":"ACTS_IN","name":"Pizza manager","type":"Role","_key":"60516","_from":"38192","_to":"38182"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"60515","_from":"38191","_to":"38182"} +{"$label":"ACTS_IN","name":"Truck Girl","type":"Role","_key":"60514","_from":"38190","_to":"38182"} +{"$label":"ACTS_IN","name":"Homeless man","type":"Role","_key":"60513","_from":"38189","_to":"38182"} +{"$label":"ACTS_IN","name":"Lex","type":"Role","_key":"60512","_from":"38188","_to":"38182"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"60511","_from":"38187","_to":"38182"} +{"$label":"ACTS_IN","name":"Christina","type":"Role","_key":"60510","_from":"38186","_to":"38182"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"60509","_from":"38185","_to":"38182"} +{"$label":"ACTS_IN","name":"Rich","type":"Role","_key":"60508","_from":"38184","_to":"38182"} +{"$label":"DIRECTED","_key":"60506","_from":"38183","_to":"38182"} +{"$label":"ACTS_IN","name":"Samantha Teal","type":"Role","_key":"104671","_from":"38185","_to":"61578"} +{"$label":"ACTS_IN","name":"Darlene Hamilton","type":"Role","_key":"104670","_from":"38186","_to":"61578"} +{"$label":"ACTS_IN","name":"Francis Hamilton","type":"Role","_key":"104667","_from":"38195","_to":"61578"} +{"$label":"ACTS_IN","name":"Male Dancer","type":"Role","_key":"60547","_from":"38217","_to":"38203"} +{"$label":"ACTS_IN","name":"Bouncer","type":"Role","_key":"60546","_from":"38216","_to":"38203"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"60545","_from":"38215","_to":"38203"} +{"$label":"ACTS_IN","name":"Delivery Guy","type":"Role","_key":"60544","_from":"38214","_to":"38203"} +{"$label":"ACTS_IN","name":"Bong World Dancer","type":"Role","_key":"60543","_from":"38213","_to":"38203"} +{"$label":"ACTS_IN","name":"Bong World Dancer","type":"Role","_key":"60542","_from":"38212","_to":"38203"} +{"$label":"ACTS_IN","name":"Bong World Dancer","type":"Role","_key":"60541","_from":"38211","_to":"38203"} +{"$label":"ACTS_IN","name":"Cyril","type":"Role","_key":"60538","_from":"38210","_to":"38203"} +{"$label":"ACTS_IN","name":"Evil Bong \/ Eebee","type":"Role","_key":"60537","_from":"38209","_to":"38203"} +{"$label":"ACTS_IN","name":"Luann","type":"Role","_key":"60533","_from":"38208","_to":"38203"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"60532","_from":"38207","_to":"38203"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"60531","_from":"38206","_to":"38203"} +{"$label":"ACTS_IN","name":"Larnell","type":"Role","_key":"60529","_from":"38205","_to":"38203"} +{"$label":"ACTS_IN","name":"Alistair","type":"Role","_key":"60528","_from":"38204","_to":"38203"} +{"$label":"ACTS_IN","name":"Rich","type":"Role","_key":"91333","_from":"38206","_to":"53865"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"91331","_from":"38207","_to":"53865"} +{"$label":"ACTS_IN","name":"Sir Ian Cavenaugh","type":"Role","_key":"110158","_from":"38210","_to":"65091"} +{"$label":"ACTS_IN","name":"Party girl","type":"Role","_key":"63204","_from":"38213","_to":"39632"} +{"$label":"ACTS_IN","name":"Deputy Trudy Wiegel","type":"Role","_key":"60567","_from":"38228","_to":"38218"} +{"$label":"ACTS_IN","name":"Spring Break Dream Girl","type":"Role","_key":"60566","_from":"38227","_to":"38218"} +{"$label":"ACTS_IN","name":"Persnickety Desk Worker","type":"Role","_key":"60565","_from":"38226","_to":"38218"} +{"$label":"ACTS_IN","name":"Miss Acapulco","type":"Role","_key":"60561","_from":"38225","_to":"38218"} +{"$label":"ACTS_IN","name":"Cheyenne the Helicopter Model","type":"Role","_key":"60560","_from":"38224","_to":"38218"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"60559","_from":"38223","_to":"38218"} +{"$label":"ACTS_IN","name":"Deputy S. Jones","type":"Role","_key":"60556","_from":"38222","_to":"38218"} +{"$label":"ACTS_IN","name":"Deputy Clementine Johnson","type":"Role","_key":"60555","_from":"38221","_to":"38218"} +{"$label":"ACTS_IN","name":"Deputy Raineesha Williams","type":"Role","_key":"60554","_from":"38220","_to":"38218"} +{"$label":"ACTS_IN","name":"Deputy Cherisha Kimball","type":"Role","_key":"60553","_from":"38219","_to":"38218"} +{"$label":"ACTS_IN","name":"Rosalita","type":"Role","_key":"120479","_from":"38220","_to":"70764"} +{"$label":"ACTS_IN","name":"Doreen Lumby","type":"Role","_key":"60575","_from":"38236","_to":"38229"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"60574","_from":"38235","_to":"38229"} +{"$label":"ACTS_IN","name":"Chizzy","type":"Role","_key":"60573","_from":"38234","_to":"38229"} +{"$label":"ACTS_IN","name":"David Lumby","type":"Role","_key":"60572","_from":"38233","_to":"38229"} +{"$label":"ACTS_IN","name":"Heath","type":"Role","_key":"60571","_from":"38232","_to":"38229"} +{"$label":"DIRECTED","_key":"60569","_from":"38231","_to":"38229"} +{"$label":"DIRECTED","_key":"60568","_from":"38230","_to":"38229"} +{"$label":"ACTS_IN","name":"Field Hockey Player","type":"Role","_key":"60595","_from":"38252","_to":"38237"} +{"$label":"ACTS_IN","name":"Game Player","type":"Role","_key":"60594","_from":"38251","_to":"38237"} +{"$label":"ACTS_IN","name":"Game Player","type":"Role","_key":"60593","_from":"38250","_to":"38237"} +{"$label":"ACTS_IN","name":"Resident Advisor","type":"Role","_key":"60592","_from":"38249","_to":"38237"} +{"$label":"ACTS_IN","name":"Custodian","type":"Role","_key":"60591","_from":"38248","_to":"38237"} +{"$label":"ACTS_IN","name":"Game Player","type":"Role","_key":"60590","_from":"38247","_to":"38237"} +{"$label":"ACTS_IN","name":"Game Player","type":"Role","_key":"60589","_from":"38246","_to":"38237"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"60587","_from":"38245","_to":"38237"} +{"$label":"ACTS_IN","name":"Headmaster Tinsley","type":"Role","_key":"60586","_from":"38244","_to":"38237"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"60585","_from":"38243","_to":"38237"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"60584","_from":"38242","_to":"38237"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"60583","_from":"38241","_to":"38237"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"60582","_from":"38240","_to":"38237"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"60581","_from":"38239","_to":"38237"} +{"$label":"ACTS_IN","name":"Owen Matthews","type":"Role","_key":"60577","_from":"38238","_to":"38237"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"111607","_from":"38238","_to":"65893"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"94457","_from":"38238","_to":"55618"} +{"$label":"ACTS_IN","name":"Elena Sandoval","type":"Role","_key":"111178","_from":"38240","_to":"65660"} +{"$label":"ACTS_IN","name":"Mrs. Travis","type":"Role","_key":"70714","_from":"38244","_to":"43007"} +{"$label":"ACTS_IN","name":"Tavern Cowboy","type":"Role","_key":"60617","_from":"38264","_to":"38253"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"60616","_from":"38263","_to":"38253"} +{"$label":"ACTS_IN","name":"Additional voices","type":"Role","_key":"60615","_from":"38262","_to":"38253"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"60614","_from":"38261","_to":"38253"} +{"$label":"ACTS_IN","name":"Bella","type":"Role","_key":"60612","_from":"38260","_to":"38253"} +{"$label":"ACTS_IN","name":"Higgins","type":"Role","_key":"60610","_from":"38259","_to":"38253"} +{"$label":"ACTS_IN","name":"Ambrose Miller","type":"Role","_key":"60609","_from":"38258","_to":"38253"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"60607","_from":"38257","_to":"38253"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"60606","_from":"38256","_to":"38253"} +{"$label":"ACTS_IN","name":"Young Joanna Mills","type":"Role","_key":"60605","_from":"38255","_to":"38253"} +{"$label":"ACTS_IN","name":"Terry Stahl","type":"Role","_key":"60601","_from":"38254","_to":"38253"} +{"$label":"DIRECTED","_key":"61001","_from":"38257","_to":"38548"} +{"$label":"DIRECTED","_key":"117469","_from":"38264","_to":"69081"} +{"$label":"ACTS_IN","name":"Ingrid","type":"Role","_key":"60625","_from":"38271","_to":"38265"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"60624","_from":"38270","_to":"38265"} +{"$label":"ACTS_IN","name":"Teenage Cashier","type":"Role","_key":"60623","_from":"38269","_to":"38265"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"60622","_from":"38268","_to":"38265"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"60621","_from":"38267","_to":"38265"} +{"$label":"DIRECTED","_key":"60618","_from":"38266","_to":"38265"} +{"$label":"ACTS_IN","name":"Sean Higgins","type":"Role","_key":"88815","_from":"38267","_to":"52622"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"111304","_from":"38271","_to":"65730"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"60646","_from":"38292","_to":"38272"} +{"$label":"ACTS_IN","name":"Officer McCready","type":"Role","_key":"60645","_from":"38291","_to":"38272"} +{"$label":"ACTS_IN","name":"Girl in Basement","type":"Role","_key":"60644","_from":"38290","_to":"38272"} +{"$label":"ACTS_IN","name":"Walsingham","type":"Role","_key":"60643","_from":"38289","_to":"38272"} +{"$label":"ACTS_IN","name":"Seductress","type":"Role","_key":"60642","_from":"38288","_to":"38272"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"60641","_from":"38287","_to":"38272"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"60640","_from":"38286","_to":"38272"} +{"$label":"ACTS_IN","name":"Second Seductress","type":"Role","_key":"60639","_from":"38285","_to":"38272"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"60638","_from":"38284","_to":"38272"} +{"$label":"ACTS_IN","name":"Stu","type":"Role","_key":"60637","_from":"38283","_to":"38272"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"60635","_from":"38282","_to":"38272"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"60634","_from":"38281","_to":"38272"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"60633","_from":"38280","_to":"38272"} +{"$label":"ACTS_IN","name":"Ruben","type":"Role","_key":"60632","_from":"38279","_to":"38272"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"60631","_from":"38278","_to":"38272"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"60630","_from":"38277","_to":"38272"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"60629","_from":"38276","_to":"38272"} +{"$label":"ACTS_IN","name":"Misty","type":"Role","_key":"60628","_from":"38275","_to":"38272"} +{"$label":"ACTS_IN","name":"Todd Harding","type":"Role","_key":"60627","_from":"38274","_to":"38272"} +{"$label":"DIRECTED","_key":"60626","_from":"38273","_to":"38272"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"93217","_from":"38275","_to":"54917"} +{"$label":"ACTS_IN","name":"Young Matt","type":"Role","_key":"60653","_from":"38295","_to":"38293"} +{"$label":"ACTS_IN","name":"Young Jenna","type":"Role","_key":"60652","_from":"38294","_to":"38293"} +{"$label":"ACTS_IN","name":"Samantha's Boyfriend","type":"Role","_key":"60674","_from":"38310","_to":"38296"} +{"$label":"ACTS_IN","name":"Drinker","type":"Role","_key":"60673","_from":"38309","_to":"38296"} +{"$label":"ACTS_IN","name":"Garda #2","type":"Role","_key":"60672","_from":"38308","_to":"38296"} +{"$label":"ACTS_IN","name":"The Beggar","type":"Role","_key":"60671","_from":"38307","_to":"38296"} +{"$label":"ACTS_IN","name":"Larry's Secretary","type":"Role","_key":"60670","_from":"38306","_to":"38296"} +{"$label":"ACTS_IN","name":"District Judge","type":"Role","_key":"60669","_from":"38305","_to":"38296"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"60667","_from":"38304","_to":"38296"} +{"$label":"ACTS_IN","name":"Connor O'Leary","type":"Role","_key":"60666","_from":"38303","_to":"38296"} +{"$label":"ACTS_IN","name":"Male nurse","type":"Role","_key":"60665","_from":"38302","_to":"38296"} +{"$label":"ACTS_IN","name":"Maeve - Liam's Mother","type":"Role","_key":"60664","_from":"38301","_to":"38296"} +{"$label":"ACTS_IN","name":"Felim","type":"Role","_key":"60663","_from":"38300","_to":"38296"} +{"$label":"ACTS_IN","name":"Bertie Brennan","type":"Role","_key":"60662","_from":"38299","_to":"38296"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"60661","_from":"38298","_to":"38296"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"60660","_from":"38297","_to":"38296"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"110357","_from":"38297","_to":"65211"} +{"$label":"ACTS_IN","name":"Imelda Quirke","type":"Role","_key":"71386","_from":"38297","_to":"43295"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"110359","_from":"38307","_to":"65211"} +{"$label":"ACTS_IN","name":"Craig Curley","type":"Role","_key":"90914","_from":"38307","_to":"53631"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"61340","_from":"38307","_to":"38711"} +{"$label":"ACTS_IN","name":"Bridegroom","type":"Role","_key":"60695","_from":"38325","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in wedding scene","type":"Role","_key":"60694","_from":"38324","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in wedding scene","type":"Role","_key":"60693","_from":"38323","_to":"38311"} +{"$label":"ACTS_IN","name":"Bum","type":"Role","_key":"60692","_from":"38322","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in wedding scene","type":"Role","_key":"60691","_from":"38321","_to":"38311"} +{"$label":"ACTS_IN","name":"Pickpocket \/ Guest \/ Devil","type":"Role","_key":"60690","_from":"38320","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in alley scene","type":"Role","_key":"60689","_from":"38319","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in wedding scene","type":"Role","_key":"60688","_from":"38318","_to":"38311"} +{"$label":"ACTS_IN","name":"Welfare officer","type":"Role","_key":"60687","_from":"38317","_to":"38311"} +{"$label":"ACTS_IN","name":"Extra in reception scene","type":"Role","_key":"60686","_from":"38316","_to":"38311"} +{"$label":"ACTS_IN","name":"His assistant","type":"Role","_key":"60685","_from":"38315","_to":"38311"} +{"$label":"ACTS_IN","name":"Slum nurse","type":"Role","_key":"60684","_from":"38314","_to":"38311"} +{"$label":"ACTS_IN","name":"The Man","type":"Role","_key":"60681","_from":"38313","_to":"38311"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"60680","_from":"38312","_to":"38311"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60708","_from":"38338","_to":"38326"} +{"$label":"ACTS_IN","name":"L'infirmier","type":"Role","_key":"60707","_from":"38337","_to":"38326"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60706","_from":"38336","_to":"38326"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60705","_from":"38335","_to":"38326"} +{"$label":"ACTS_IN","name":"Maudet","type":"Role","_key":"60704","_from":"38334","_to":"38326"} +{"$label":"ACTS_IN","name":"Mr.Cerutti","type":"Role","_key":"60703","_from":"38333","_to":"38326"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"60702","_from":"38332","_to":"38326"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"60701","_from":"38331","_to":"38326"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"60700","_from":"38330","_to":"38326"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60699","_from":"38329","_to":"38326"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60698","_from":"38328","_to":"38326"} +{"$label":"DIRECTED","_key":"60696","_from":"38327","_to":"38326"} +{"$label":"ACTS_IN","name":"Professeur de fran\u00e7ais","type":"Role","_key":"89685","_from":"38334","_to":"53081"} +{"$label":"ACTS_IN","name":"Dr. Verena Brandauer","type":"Role","_key":"60713","_from":"38341","_to":"38339"} +{"$label":"DIRECTED","_key":"60709","_from":"38340","_to":"38339"} +{"$label":"DIRECTED","_key":"68523","_from":"38340","_to":"42023"} +{"$label":"ACTS_IN","name":"Olga, STASI Officer 'Fr\u00e4ulein'","type":"Role","_key":"72667","_from":"38341","_to":"43794"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"65953","_from":"38341","_to":"40798"} +{"$label":"ACTS_IN","name":"Yeong-ho Kim, assistant inspector","type":"Role","_key":"60731","_from":"38354","_to":"38343"} +{"$label":"ACTS_IN","name":"Runaway boy 2","type":"Role","_key":"60730","_from":"38353","_to":"38343"} +{"$label":"ACTS_IN","name":"Woman cop of police box","type":"Role","_key":"60729","_from":"38352","_to":"38343"} +{"$label":"ACTS_IN","name":"Chang-soo Shin, criminal","type":"Role","_key":"60728","_from":"38351","_to":"38343"} +{"$label":"ACTS_IN","name":"Runaway boy 1","type":"Role","_key":"60727","_from":"38350","_to":"38343"} +{"$label":"ACTS_IN","name":"Chief of police box","type":"Role","_key":"60726","_from":"38349","_to":"38343"} +{"$label":"ACTS_IN","name":"Guy on platform","type":"Role","_key":"60725","_from":"38348","_to":"38343"} +{"$label":"ACTS_IN","name":"Guy, taking of hostage","type":"Role","_key":"60724","_from":"38347","_to":"38343"} +{"$label":"ACTS_IN","name":"Prince","type":"Role","_key":"60723","_from":"38346","_to":"38343"} +{"$label":"ACTS_IN","name":"Myung-woo Ko","type":"Role","_key":"60721","_from":"38345","_to":"38343"} +{"$label":"DIRECTED","_key":"60720","_from":"38344","_to":"38343"} +{"$label":"DIRECTED","_key":"120675","_from":"38344","_to":"70873"} +{"$label":"DIRECTED","_key":"120177","_from":"38344","_to":"70581"} +{"$label":"DIRECTED","_key":"68353","_from":"38344","_to":"41950"} +{"$label":"ACTS_IN","name":"Sung Byeong-gi","type":"Role","_key":"116537","_from":"38348","_to":"68597"} +{"$label":"ACTS_IN","name":"Seung-ryong","type":"Role","_key":"116524","_from":"38348","_to":"68586"} +{"$label":"ACTS_IN","name":"Jung Ha-suk","type":"Role","_key":"116102","_from":"38348","_to":"68368"} +{"$label":"ACTS_IN","name":"Nam Hyeon-su","type":"Role","_key":"115967","_from":"38348","_to":"68297"} +{"$label":"ACTS_IN","name":"Soo-ho","type":"Role","_key":"94342","_from":"38348","_to":"55555"} +{"$label":"ACTS_IN","name":"Kyun-woo","type":"Role","_key":"68349","_from":"38348","_to":"41950"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117184","_from":"38350","_to":"68939"} +{"$label":"ACTS_IN","name":"Tech Girl #1","type":"Role","_key":"60753","_from":"38371","_to":"38355"} +{"$label":"ACTS_IN","name":"Professor Rex Cavendish","type":"Role","_key":"60752","_from":"38370","_to":"38355"} +{"$label":"ACTS_IN","name":"Rusty Daugerdaus","type":"Role","_key":"60751","_from":"38369","_to":"38355"} +{"$label":"ACTS_IN","name":"Stukas","type":"Role","_key":"60750","_from":"38368","_to":"38355"} +{"$label":"ACTS_IN","name":"Lynne","type":"Role","_key":"60749","_from":"38367","_to":"38355"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"60748","_from":"38366","_to":"38355"} +{"$label":"ACTS_IN","name":"Brady","type":"Role","_key":"60747","_from":"38365","_to":"38355"} +{"$label":"ACTS_IN","name":"Wang","type":"Role","_key":"60744","_from":"38364","_to":"38355"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"60743","_from":"38363","_to":"38355"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"60742","_from":"38362","_to":"38355"} +{"$label":"ACTS_IN","name":"Gerri Farber","type":"Role","_key":"60740","_from":"38361","_to":"38355"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"60739","_from":"38360","_to":"38355"} +{"$label":"ACTS_IN","name":"Pete Hanson","type":"Role","_key":"60738","_from":"38359","_to":"38355"} +{"$label":"ACTS_IN","name":"Rachel Hubber","type":"Role","_key":"60734","_from":"38358","_to":"38355"} +{"$label":"DIRECTED","_key":"60733","_from":"38357","_to":"38355"} +{"$label":"DIRECTED","_key":"60732","_from":"38356","_to":"38355"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"114933","_from":"38358","_to":"67695"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"114934","_from":"38359","_to":"67695"} +{"$label":"ACTS_IN","name":"Gerri Farber","type":"Role","_key":"114936","_from":"38361","_to":"67695"} +{"$label":"ACTS_IN","name":"Girlfriend #3","type":"Role","_key":"102866","_from":"38367","_to":"60510"} +{"$label":"ACTS_IN","name":"Ghost Figure","type":"Role","_key":"60774","_from":"38392","_to":"38372"} +{"$label":"ACTS_IN","name":"Conversing German #2","type":"Role","_key":"60773","_from":"38391","_to":"38372"} +{"$label":"ACTS_IN","name":"Conversing German #3","type":"Role","_key":"60772","_from":"38390","_to":"38372"} +{"$label":"ACTS_IN","name":"Conversing German #1","type":"Role","_key":"60771","_from":"38389","_to":"38372"} +{"$label":"ACTS_IN","name":"Injured One-Armed Soldier","type":"Role","_key":"60770","_from":"38388","_to":"38372"} +{"$label":"ACTS_IN","name":"German Soldier #2","type":"Role","_key":"60769","_from":"38387","_to":"38372"} +{"$label":"ACTS_IN","name":"German Officer #1","type":"Role","_key":"60768","_from":"38386","_to":"38372"} +{"$label":"ACTS_IN","name":"German Soldier #1","type":"Role","_key":"60767","_from":"38385","_to":"38372"} +{"$label":"ACTS_IN","name":"Weeping Soldier","type":"Role","_key":"60766","_from":"38384","_to":"38372"} +{"$label":"ACTS_IN","name":"American Soldier #1","type":"Role","_key":"60765","_from":"38383","_to":"38372"} +{"$label":"ACTS_IN","name":"Private McKinley","type":"Role","_key":"60764","_from":"38382","_to":"38372"} +{"$label":"ACTS_IN","name":"Radio Announcer","type":"Role","_key":"60763","_from":"38381","_to":"38372"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"60762","_from":"38380","_to":"38372"} +{"$label":"ACTS_IN","name":"Gordon Gunderson","type":"Role","_key":"60761","_from":"38379","_to":"38372"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"60760","_from":"38378","_to":"38372"} +{"$label":"ACTS_IN","name":"Rudi","type":"Role","_key":"60759","_from":"38377","_to":"38372"} +{"$label":"ACTS_IN","name":"Corporal Nathan 'Deacon' Greer","type":"Role","_key":"60758","_from":"38376","_to":"38372"} +{"$label":"ACTS_IN","name":"Flight Sergeant Oberon Winley","type":"Role","_key":"60757","_from":"38375","_to":"38372"} +{"$label":"ACTS_IN","name":"Medic Steven Gould","type":"Role","_key":"60756","_from":"38374","_to":"38372"} +{"$label":"DIRECTED","_key":"60754","_from":"38373","_to":"38372"} +{"$label":"ACTS_IN","name":"Elder Hezekiah Calhoun","type":"Role","_key":"109802","_from":"38375","_to":"64859"} +{"$label":"ACTS_IN","name":"Charles Bingley","type":"Role","_key":"114862","_from":"38382","_to":"67659"} +{"$label":"ACTS_IN","name":"Rick Robinson","type":"Role","_key":"114705","_from":"38382","_to":"67566"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"60795","_from":"38407","_to":"38393"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"60794","_from":"38406","_to":"38393"} +{"$label":"ACTS_IN","name":"Captain Jessie Presley","type":"Role","_key":"60793","_from":"38405","_to":"38393"} +{"$label":"ACTS_IN","name":"Burr Baldwin","type":"Role","_key":"60792","_from":"38404","_to":"38393"} +{"$label":"ACTS_IN","name":"Corbin Sellars","type":"Role","_key":"60790","_from":"38403","_to":"38393"} +{"$label":"ACTS_IN","name":"Jasmine \"J.J.\" Presley","type":"Role","_key":"60789","_from":"38402","_to":"38393"} +{"$label":"ACTS_IN","name":"Rexxx \/ Dewey the Dog","type":"Role","_key":"60787","_from":"38401","_to":"38393"} +{"$label":"ACTS_IN","name":"Rexxx \/ Dewey the Dog","type":"Role","_key":"60786","_from":"38400","_to":"38393"} +{"$label":"ACTS_IN","name":"Rexxx \/ Dewey the Dog","type":"Role","_key":"60785","_from":"38399","_to":"38393"} +{"$label":"ACTS_IN","name":"Zachary Hayden","type":"Role","_key":"60784","_from":"38398","_to":"38393"} +{"$label":"ACTS_IN","name":"Pep Clemente","type":"Role","_key":"60782","_from":"38397","_to":"38393"} +{"$label":"ACTS_IN","name":"Rexxx \/ Dewey the Dog","type":"Role","_key":"60781","_from":"38396","_to":"38393"} +{"$label":"ACTS_IN","name":"Terence Kahn","type":"Role","_key":"60780","_from":"38395","_to":"38393"} +{"$label":"ACTS_IN","name":"Lionel Bradford","type":"Role","_key":"60779","_from":"38394","_to":"38393"} +{"$label":"ACTS_IN","name":"Pastor joe","type":"Role","_key":"107703","_from":"38398","_to":"63574"} +{"$label":"ACTS_IN","name":"Robert F. Kennedy","type":"Role","_key":"73082","_from":"38398","_to":"43970"} +{"$label":"ACTS_IN","name":"Robert Campbell","type":"Role","_key":"62379","_from":"38398","_to":"39299"} +{"$label":"ACTS_IN","name":"Judy Ryan","type":"Role","_key":"93591","_from":"38405","_to":"55111"} +{"$label":"ACTS_IN","name":"Alison Natolly","type":"Role","_key":"62134","_from":"38405","_to":"39125"} +{"$label":"ACTS_IN","name":"Taiba Muhammad","type":"Role","_key":"60815","_from":"38418","_to":"38408"} +{"$label":"ACTS_IN","name":"Father Sullivan","type":"Role","_key":"60814","_from":"38417","_to":"38408"} +{"$label":"ACTS_IN","name":"Montgomery County Concilwoman","type":"Role","_key":"60813","_from":"38416","_to":"38408"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"60812","_from":"38415","_to":"38408"} +{"$label":"ACTS_IN","name":"George Lenahan","type":"Role","_key":"60811","_from":"38414","_to":"38408"} +{"$label":"ACTS_IN","name":"Gordon Wolf","type":"Role","_key":"60809","_from":"38413","_to":"38408"} +{"$label":"ACTS_IN","name":"Sylvia Mack","type":"Role","_key":"60808","_from":"38412","_to":"38408"} +{"$label":"ACTS_IN","name":"Detective Paulson","type":"Role","_key":"60807","_from":"38411","_to":"38408"} +{"$label":"ACTS_IN","name":"John Lee Malvo","type":"Role","_key":"60804","_from":"38410","_to":"38408"} +{"$label":"DIRECTED","_key":"60796","_from":"38409","_to":"38408"} +{"$label":"DIRECTED","_key":"61813","_from":"38409","_to":"38907"} +{"$label":"ACTS_IN","name":"Young Roland","type":"Role","_key":"107612","_from":"38410","_to":"63522"} +{"$label":"ACTS_IN","name":"Man #1 - Restaurant","type":"Role","_key":"93105","_from":"38411","_to":"54874"} +{"$label":"ACTS_IN","name":"Suman Shah","type":"Role","_key":"91655","_from":"38412","_to":"54052"} +{"$label":"ACTS_IN","name":"Balder","type":"Role","_key":"103722","_from":"38414","_to":"61003"} +{"$label":"ACTS_IN","name":"Thor","type":"Role","_key":"101102","_from":"38414","_to":"59566"} +{"$label":"ACTS_IN","name":"Tweetie","type":"Role","_key":"60826","_from":"38428","_to":"38419"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"60825","_from":"38427","_to":"38419"} +{"$label":"ACTS_IN","name":"White Dragon","type":"Role","_key":"60824","_from":"38426","_to":"38419"} +{"$label":"ACTS_IN","name":"Palace Guard #1","type":"Role","_key":"60822","_from":"38425","_to":"38419"} +{"$label":"ACTS_IN","name":"Blindie \/ \"Chicken Feathers\"","type":"Role","_key":"60821","_from":"38424","_to":"38419"} +{"$label":"ACTS_IN","name":"Second Prince Tian Yang","type":"Role","_key":"60820","_from":"38423","_to":"38419"} +{"$label":"ACTS_IN","name":"Tian Sheng, First prince","type":"Role","_key":"60819","_from":"38422","_to":"38419"} +{"$label":"ACTS_IN","name":"Deer Claw \/ Various Characters","type":"Role","_key":"60818","_from":"38421","_to":"38419"} +{"$label":"DIRECTED","_key":"60816","_from":"38420","_to":"38419"} +{"$label":"DIRECTED","_key":"106163","_from":"38420","_to":"62527"} +{"$label":"DIRECTED","_key":"101675","_from":"38420","_to":"59836"} +{"$label":"DIRECTED","_key":"92809","_from":"38420","_to":"54752"} +{"$label":"ACTS_IN","name":"Inspector Ho Ka On","type":"Role","_key":"98125","_from":"38423","_to":"57774"} +{"$label":"ACTS_IN","name":"Male Ji Wushuang","type":"Role","_key":"117613","_from":"38424","_to":"69142"} +{"$label":"ACTS_IN","name":"Tai","type":"Role","_key":"96776","_from":"38424","_to":"56921"} +{"$label":"ACTS_IN","name":"Lok","type":"Role","_key":"92575","_from":"38424","_to":"54644"} +{"$label":"ACTS_IN","name":"Ngai Wing Hau","type":"Role","_key":"71270","_from":"38424","_to":"43242"} +{"$label":"ACTS_IN","name":"Chang Tsui San","type":"Role","_key":"66261","_from":"38424","_to":"40989"} +{"$label":"ACTS_IN","name":"Registrar","type":"Role","_key":"60853","_from":"38441","_to":"38430"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"60852","_from":"38440","_to":"38430"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"60851","_from":"38439","_to":"38430"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"60850","_from":"38438","_to":"38430"} +{"$label":"ACTS_IN","name":"Sam's Mum","type":"Role","_key":"60845","_from":"38437","_to":"38430"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"60844","_from":"38436","_to":"38430"} +{"$label":"ACTS_IN","name":"Snoopy","type":"Role","_key":"60843","_from":"38435","_to":"38430"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"60840","_from":"38434","_to":"38430"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"60839","_from":"38433","_to":"38430"} +{"$label":"ACTS_IN","name":"Archie","type":"Role","_key":"60838","_from":"38432","_to":"38430"} +{"$label":"DIRECTED","_key":"60833","_from":"38431","_to":"38430"} +{"$label":"ACTS_IN","name":"Suzi","type":"Role","_key":"104431","_from":"38434","_to":"61430"} +{"$label":"ACTS_IN","name":"Rev Clarke","type":"Role","_key":"114879","_from":"38436","_to":"67661"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"117091","_from":"38437","_to":"68900"} +{"$label":"ACTS_IN","name":"Mrs. Bennet","type":"Role","_key":"101460","_from":"38437","_to":"59721"} +{"$label":"ACTS_IN","name":"Duchess","type":"Role","_key":"60858","_from":"38443","_to":"38442"} +{"$label":"ACTS_IN","name":"Liane d'Exelmans","type":"Role","_key":"111773","_from":"38443","_to":"65970"} +{"$label":"ACTS_IN","name":"Miss Bianca (voice)","type":"Role","_key":"69109","_from":"38443","_to":"42285"} +{"$label":"ACTS_IN","name":"Miss Bianca (voice)","type":"Role","_key":"68090","_from":"38443","_to":"41826"} +{"$label":"ACTS_IN","name":"Tuck Reed","type":"Role","_key":"60880","_from":"38465","_to":"38444"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"60879","_from":"38464","_to":"38444"} +{"$label":"ACTS_IN","name":"Heston","type":"Role","_key":"60878","_from":"38463","_to":"38444"} +{"$label":"ACTS_IN","name":"Veteran Police Officer","type":"Role","_key":"60877","_from":"38462","_to":"38444"} +{"$label":"ACTS_IN","name":"Phillip","type":"Role","_key":"60876","_from":"38461","_to":"38444"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"60875","_from":"38460","_to":"38444"} +{"$label":"ACTS_IN","name":"Osbourne","type":"Role","_key":"60874","_from":"38459","_to":"38444"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"60873","_from":"38458","_to":"38444"} +{"$label":"ACTS_IN","name":"Mr. Parrish","type":"Role","_key":"60872","_from":"38457","_to":"38444"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"60871","_from":"38456","_to":"38444"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"60870","_from":"38455","_to":"38444"} +{"$label":"ACTS_IN","name":"Detective Peters","type":"Role","_key":"60869","_from":"38454","_to":"38444"} +{"$label":"ACTS_IN","name":"Cop 3","type":"Role","_key":"60868","_from":"38453","_to":"38444"} +{"$label":"ACTS_IN","name":"Gale","type":"Role","_key":"60867","_from":"38452","_to":"38444"} +{"$label":"ACTS_IN","name":"Happy Clown","type":"Role","_key":"60866","_from":"38451","_to":"38444"} +{"$label":"ACTS_IN","name":"Cop with children","type":"Role","_key":"60865","_from":"38450","_to":"38444"} +{"$label":"ACTS_IN","name":"Officer Patrick","type":"Role","_key":"60864","_from":"38449","_to":"38444"} +{"$label":"ACTS_IN","name":"Lynn Blodgett","type":"Role","_key":"60863","_from":"38448","_to":"38444"} +{"$label":"ACTS_IN","name":"Shivers the Clown","type":"Role","_key":"60862","_from":"38447","_to":"38444"} +{"$label":"ACTS_IN","name":"Mediator","type":"Role","_key":"60861","_from":"38446","_to":"38444"} +{"$label":"DIRECTED","_key":"60860","_from":"38445","_to":"38444"} +{"$label":"ACTS_IN","name":"Secretary #2","type":"Role","_key":"60892","_from":"38474","_to":"38466"} +{"$label":"ACTS_IN","name":"Secretary #1","type":"Role","_key":"60891","_from":"38473","_to":"38466"} +{"$label":"ACTS_IN","name":"Messenger","type":"Role","_key":"60890","_from":"38472","_to":"38466"} +{"$label":"ACTS_IN","name":"Young Karen","type":"Role","_key":"60889","_from":"38471","_to":"38466"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"60888","_from":"38470","_to":"38466"} +{"$label":"ACTS_IN","name":"Young Wendy","type":"Role","_key":"60887","_from":"38469","_to":"38466"} +{"$label":"ACTS_IN","name":"Wendy Baldwin","type":"Role","_key":"60885","_from":"38468","_to":"38466"} +{"$label":"DIRECTED","_key":"60881","_from":"38467","_to":"38466"} +{"$label":"ACTS_IN","name":"Marina Dell","type":"Role","_key":"116042","_from":"38468","_to":"68338"} +{"$label":"ACTS_IN","name":"Lori Carline","type":"Role","_key":"106804","_from":"38471","_to":"62951"} +{"$label":"ACTS_IN","name":"Jennifer Faye 'Jennie' Likens","type":"Role","_key":"91993","_from":"38471","_to":"54274"} +{"$label":"ACTS_IN","name":"Stussy","type":"Role","_key":"60913","_from":"38489","_to":"38475"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"60912","_from":"38488","_to":"38475"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"60911","_from":"38487","_to":"38475"} +{"$label":"ACTS_IN","name":"Tricia Skilken","type":"Role","_key":"60910","_from":"38486","_to":"38475"} +{"$label":"ACTS_IN","name":"Mrs. Charis","type":"Role","_key":"60909","_from":"38485","_to":"38475"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"60908","_from":"38484","_to":"38475"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"60907","_from":"38483","_to":"38475"} +{"$label":"ACTS_IN","name":"Dorrie","type":"Role","_key":"60905","_from":"38482","_to":"38475"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"60904","_from":"38481","_to":"38475"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"60899","_from":"38480","_to":"38475"} +{"$label":"ACTS_IN","name":"Wei Wei Yong","type":"Role","_key":"60898","_from":"38479","_to":"38475"} +{"$label":"ACTS_IN","name":"Mina Hoyt","type":"Role","_key":"60897","_from":"38478","_to":"38475"} +{"$label":"ACTS_IN","name":"Haley Graham","type":"Role","_key":"60895","_from":"38477","_to":"38475"} +{"$label":"DIRECTED","_key":"60893","_from":"38476","_to":"38475"} +{"$label":"ACTS_IN","name":"Emmett Cullen","type":"Role","_key":"115490","_from":"38480","_to":"67997"} +{"$label":"ACTS_IN","name":"Mark Rider","type":"Role","_key":"104962","_from":"38480","_to":"61762"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"88468","_from":"38480","_to":"52436"} +{"$label":"ACTS_IN","name":"Bart Taylor","type":"Role","_key":"97150","_from":"38484","_to":"57143"} +{"$label":"ACTS_IN","name":"Vialula (Lou)","type":"Role","_key":"72184","_from":"38485","_to":"43625"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"104821","_from":"38486","_to":"61674"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"99179","_from":"38486","_to":"58429"} +{"$label":"ACTS_IN","name":"Tokugawa Ieyasu","type":"Role","_key":"60930","_from":"38503","_to":"38490"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"60929","_from":"38502","_to":"38490"} +{"$label":"ACTS_IN","name":"Nankaibou Tenkai","type":"Role","_key":"60928","_from":"38501","_to":"38490"} +{"$label":"ACTS_IN","name":"Kouga Danjou","type":"Role","_key":"60927","_from":"38500","_to":"38490"} +{"$label":"ACTS_IN","name":"Yagyu Tajima-no-kami Munenori","type":"Role","_key":"60926","_from":"38499","_to":"38490"} +{"$label":"ACTS_IN","name":"Yagyu Jyubei Mitsuyoshi","type":"Role","_key":"60925","_from":"38498","_to":"38490"} +{"$label":"ACTS_IN","name":"O-Gen","type":"Role","_key":"60924","_from":"38497","_to":"38490"} +{"$label":"ACTS_IN","name":"Chikuma Koshirou","type":"Role","_key":"60923","_from":"38496","_to":"38490"} +{"$label":"ACTS_IN","name":"Minonenki","type":"Role","_key":"60922","_from":"38495","_to":"38490"} +{"$label":"ACTS_IN","name":"Muroga Hyouma","type":"Role","_key":"60921","_from":"38494","_to":"38490"} +{"$label":"ACTS_IN","name":"Yakushiji Tenzen","type":"Role","_key":"60920","_from":"38493","_to":"38490"} +{"$label":"ACTS_IN","name":"Kagerou","type":"Role","_key":"60917","_from":"38492","_to":"38490"} +{"$label":"DIRECTED","_key":"60914","_from":"38491","_to":"38490"} +{"$label":"ACTS_IN","name":"Ikuo Matsumura","type":"Role","_key":"99124","_from":"38493","_to":"58409"} +{"$label":"ACTS_IN","name":"Benkei","type":"Role","_key":"95619","_from":"38501","_to":"56241"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"93904","_from":"38501","_to":"55285"} +{"$label":"ACTS_IN","name":"Boss","type":"Role","_key":"89805","_from":"38501","_to":"53144"} +{"$label":"ACTS_IN","name":"Aoki","type":"Role","_key":"69086","_from":"38501","_to":"42277"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"94268","_from":"38502","_to":"55509"} +{"$label":"ACTS_IN","name":"Foreign Minister Yosuke Matsuoka","type":"Role","_key":"68271","_from":"38503","_to":"41908"} +{"$label":"DIRECTED","_key":"60940","_from":"38505","_to":"38504"} +{"$label":"DIRECTED","_key":"121693","_from":"38505","_to":"71490"} +{"$label":"DIRECTED","_key":"119992","_from":"38505","_to":"70466"} +{"$label":"DIRECTED","_key":"107821","_from":"38505","_to":"63677"} +{"$label":"DIRECTED","_key":"105737","_from":"38505","_to":"62248"} +{"$label":"DIRECTED","_key":"102632","_from":"38505","_to":"60385"} +{"$label":"DIRECTED","_key":"99247","_from":"38505","_to":"58489"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"60960","_from":"38518","_to":"38506"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"60959","_from":"38517","_to":"38506"} +{"$label":"ACTS_IN","name":"Mic Rionn","type":"Role","_key":"60958","_from":"38516","_to":"38506"} +{"$label":"ACTS_IN","name":"Margo Thorness","type":"Role","_key":"60957","_from":"38515","_to":"38506"} +{"$label":"ACTS_IN","name":"Joe Tweeney","type":"Role","_key":"60956","_from":"38514","_to":"38506"} +{"$label":"ACTS_IN","name":"Brigitta","type":"Role","_key":"60955","_from":"38513","_to":"38506"} +{"$label":"ACTS_IN","name":"Jaden","type":"Role","_key":"60953","_from":"38512","_to":"38506"} +{"$label":"ACTS_IN","name":"Martinique","type":"Role","_key":"60952","_from":"38511","_to":"38506"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"60951","_from":"38510","_to":"38506"} +{"$label":"ACTS_IN","name":"Ned Nakamori","type":"Role","_key":"60950","_from":"38509","_to":"38506"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"60948","_from":"38508","_to":"38506"} +{"$label":"DIRECTED","_key":"60941","_from":"38507","_to":"38506"} +{"$label":"DIRECTED","_key":"114847","_from":"38507","_to":"67649"} +{"$label":"DIRECTED","_key":"99845","_from":"38507","_to":"58889"} +{"$label":"DIRECTED","_key":"68110","_from":"38507","_to":"41834"} +{"$label":"ACTS_IN","name":"Angela Viracco","type":"Role","_key":"97582","_from":"38517","_to":"57459"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"70709","_from":"38517","_to":"43007"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"63621","_from":"38517","_to":"39800"} +{"$label":"ACTS_IN","name":"Fr. Christennsen","type":"Role","_key":"60979","_from":"38537","_to":"38519"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"60978","_from":"38536","_to":"38519"} +{"$label":"ACTS_IN","name":"Rikard","type":"Role","_key":"60977","_from":"38535","_to":"38519"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"60976","_from":"38534","_to":"38519"} +{"$label":"ACTS_IN","name":"Prest","type":"Role","_key":"60975","_from":"38533","_to":"38519"} +{"$label":"ACTS_IN","name":"Ingun","type":"Role","_key":"60974","_from":"38532","_to":"38519"} +{"$label":"ACTS_IN","name":"Selma","type":"Role","_key":"60973","_from":"38531","_to":"38519"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"60972","_from":"38530","_to":"38519"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"60971","_from":"38529","_to":"38519"} +{"$label":"ACTS_IN","name":"Annelise","type":"Role","_key":"60970","_from":"38528","_to":"38519"} +{"$label":"ACTS_IN","name":"Lille-Trond","type":"Role","_key":"60969","_from":"38527","_to":"38519"} +{"$label":"ACTS_IN","name":"Minsten","type":"Role","_key":"60968","_from":"38526","_to":"38519"} +{"$label":"ACTS_IN","name":"Karstens fl\u00f8rt","type":"Role","_key":"60967","_from":"38525","_to":"38519"} +{"$label":"ACTS_IN","name":"Elin","type":"Role","_key":"60966","_from":"38524","_to":"38519"} +{"$label":"ACTS_IN","name":"Ekspeditrise","type":"Role","_key":"60965","_from":"38523","_to":"38519"} +{"$label":"ACTS_IN","name":"L\u00e6rer","type":"Role","_key":"60964","_from":"38522","_to":"38519"} +{"$label":"ACTS_IN","name":"Karsten","type":"Role","_key":"60963","_from":"38521","_to":"38519"} +{"$label":"DIRECTED","_key":"60962","_from":"38520","_to":"38519"} +{"$label":"DIRECTED","_key":"113219","_from":"38520","_to":"66713"} +{"$label":"ACTS_IN","name":"Torunn Neshov","type":"Role","_key":"87909","_from":"38528","_to":"52199"} +{"$label":"ACTS_IN","name":"Karl XI","type":"Role","_key":"110212","_from":"38529","_to":"65137"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109901","_from":"38529","_to":"64936"} +{"$label":"ACTS_IN","name":"G\u00f6ran Skoogh","type":"Role","_key":"103504","_from":"38529","_to":"60892"} +{"$label":"ACTS_IN","name":"Knut Eriksson","type":"Role","_key":"94797","_from":"38529","_to":"55826"} +{"$label":"ACTS_IN","name":"Nicklas","type":"Role","_key":"92108","_from":"38529","_to":"54349"} +{"$label":"ACTS_IN","name":"Otto Silverhielm","type":"Role","_key":"68478","_from":"38529","_to":"42004"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"66019","_from":"38534","_to":"40848"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"103830","_from":"38536","_to":"61062"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"100381","_from":"38536","_to":"59189"} +{"$label":"ACTS_IN","name":"Mr. Laine","type":"Role","_key":"61000","_from":"38547","_to":"38538"} +{"$label":"ACTS_IN","name":"Suzan","type":"Role","_key":"60996","_from":"38546","_to":"38538"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"60995","_from":"38545","_to":"38538"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"60994","_from":"38544","_to":"38538"} +{"$label":"ACTS_IN","name":"One Eye","type":"Role","_key":"60993","_from":"38543","_to":"38538"} +{"$label":"ACTS_IN","name":"Louie Ramoli","type":"Role","_key":"60990","_from":"38542","_to":"38538"} +{"$label":"ACTS_IN","name":"Agent Campbell","type":"Role","_key":"60989","_from":"38541","_to":"38538"} +{"$label":"ACTS_IN","name":"Ad Pilot \/ Ken","type":"Role","_key":"60988","_from":"38540","_to":"38538"} +{"$label":"DIRECTED","_key":"60980","_from":"38539","_to":"38538"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"115297","_from":"38540","_to":"67881"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"111120","_from":"38542","_to":"65632"} +{"$label":"ACTS_IN","name":"Volstagg","type":"Role","_key":"103723","_from":"38542","_to":"61003"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"102110","_from":"38542","_to":"60066"} +{"$label":"ACTS_IN","name":"Dr. Chuck Nelken","type":"Role","_key":"96607","_from":"38542","_to":"56824"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"67621","_from":"38542","_to":"41614"} +{"$label":"ACTS_IN","name":"Faban (voice)","type":"Role","_key":"110630","_from":"38547","_to":"65360"} +{"$label":"ACTS_IN","name":"Colin MacLeod","type":"Role","_key":"93380","_from":"38547","_to":"55001"} +{"$label":"ACTS_IN","name":"Yaguchi","type":"Role","_key":"61016","_from":"38560","_to":"38548"} +{"$label":"ACTS_IN","name":"Piper","type":"Role","_key":"61015","_from":"38559","_to":"38548"} +{"$label":"ACTS_IN","name":"Reynolds","type":"Role","_key":"61014","_from":"38558","_to":"38548"} +{"$label":"ACTS_IN","name":"Hudak","type":"Role","_key":"61013","_from":"38557","_to":"38548"} +{"$label":"ACTS_IN","name":"Turner","type":"Role","_key":"61012","_from":"38556","_to":"38548"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"61011","_from":"38555","_to":"38548"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"61010","_from":"38554","_to":"38548"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"61009","_from":"38553","_to":"38548"} +{"$label":"ACTS_IN","name":"Peter Isaacs","type":"Role","_key":"61008","_from":"38552","_to":"38548"} +{"$label":"ACTS_IN","name":"Izzy","type":"Role","_key":"61007","_from":"38551","_to":"38548"} +{"$label":"ACTS_IN","name":"Fix","type":"Role","_key":"61006","_from":"38550","_to":"38548"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"61003","_from":"38549","_to":"38548"} +{"$label":"ACTS_IN","name":"Capt. Dietrich","type":"Role","_key":"113437","_from":"38552","_to":"66832"} +{"$label":"ACTS_IN","name":"Joe Salle","type":"Role","_key":"92184","_from":"38556","_to":"54404"} +{"$label":"ACTS_IN","name":"Jeff Freeman","type":"Role","_key":"61019","_from":"38563","_to":"38561"} +{"$label":"ACTS_IN","name":"David Scott Freeman","type":"Role","_key":"61017","_from":"38562","_to":"38561"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"72211","_from":"38563","_to":"43634"} +{"$label":"ACTS_IN","name":"Verk\u00e4ufer","type":"Role","_key":"61044","_from":"38582","_to":"38564"} +{"$label":"ACTS_IN","name":"Sylvianne","type":"Role","_key":"61043","_from":"38581","_to":"38564"} +{"$label":"ACTS_IN","name":"Jean-Luc","type":"Role","_key":"61042","_from":"38580","_to":"38564"} +{"$label":"ACTS_IN","name":"Beachboy 1","type":"Role","_key":"61041","_from":"38579","_to":"38564"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"61040","_from":"38578","_to":"38564"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"61039","_from":"38577","_to":"38564"} +{"$label":"ACTS_IN","name":"Jeu Fini","type":"Role","_key":"61038","_from":"38576","_to":"38564"} +{"$label":"ACTS_IN","name":"Sebastien","type":"Role","_key":"61037","_from":"38575","_to":"38564"} +{"$label":"ACTS_IN","name":"Mutter Cyril","type":"Role","_key":"61036","_from":"38574","_to":"38564"} +{"$label":"ACTS_IN","name":"Niklas","type":"Role","_key":"61034","_from":"38573","_to":"38564"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"61033","_from":"38572","_to":"38564"} +{"$label":"ACTS_IN","name":"F\u00fcnftkl\u00e4sslerin","type":"Role","_key":"61032","_from":"38571","_to":"38564"} +{"$label":"ACTS_IN","name":"Aur\u00e9lie","type":"Role","_key":"61031","_from":"38570","_to":"38564"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"61030","_from":"38569","_to":"38564"} +{"$label":"ACTS_IN","name":"Vater Henrik","type":"Role","_key":"61029","_from":"38568","_to":"38564"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"61027","_from":"38567","_to":"38564"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"61026","_from":"38566","_to":"38564"} +{"$label":"DIRECTED","_key":"61024","_from":"38565","_to":"38564"} +{"$label":"DIRECTED","_key":"88232","_from":"38565","_to":"52346"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"88064","_from":"38578","_to":"52271"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"61065","_from":"38600","_to":"38583"} +{"$label":"ACTS_IN","name":"Teenage Girl","type":"Role","_key":"61064","_from":"38599","_to":"38583"} +{"$label":"ACTS_IN","name":"Paramedic #2","type":"Role","_key":"61063","_from":"38598","_to":"38583"} +{"$label":"ACTS_IN","name":"Trina Foote","type":"Role","_key":"61062","_from":"38597","_to":"38583"} +{"$label":"ACTS_IN","name":"Triage Nurse","type":"Role","_key":"61061","_from":"38596","_to":"38583"} +{"$label":"ACTS_IN","name":"Deputy Wilson","type":"Role","_key":"61059","_from":"38595","_to":"38583"} +{"$label":"ACTS_IN","name":"Guard #1","type":"Role","_key":"61058","_from":"38594","_to":"38583"} +{"$label":"ACTS_IN","name":"Paramedic #1","type":"Role","_key":"61057","_from":"38593","_to":"38583"} +{"$label":"ACTS_IN","name":"The Warden","type":"Role","_key":"61056","_from":"38592","_to":"38583"} +{"$label":"ACTS_IN","name":"Doctor Drayis","type":"Role","_key":"61055","_from":"38591","_to":"38583"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"61054","_from":"38590","_to":"38583"} +{"$label":"ACTS_IN","name":"Nurse Grafton","type":"Role","_key":"61053","_from":"38589","_to":"38583"} +{"$label":"ACTS_IN","name":"Ms. Wexler","type":"Role","_key":"61052","_from":"38588","_to":"38583"} +{"$label":"ACTS_IN","name":"Doctor Hitchens","type":"Role","_key":"61050","_from":"38587","_to":"38583"} +{"$label":"ACTS_IN","name":"Sara Wexler","type":"Role","_key":"61049","_from":"38586","_to":"38583"} +{"$label":"ACTS_IN","name":"Chambers","type":"Role","_key":"61047","_from":"38585","_to":"38583"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"61046","_from":"38584","_to":"38583"} +{"$label":"ACTS_IN","name":"Pharmacist","type":"Role","_key":"62270","_from":"38589","_to":"39219"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"64384","_from":"38592","_to":"40118"} +{"$label":"ACTS_IN","name":"Tracy Thurman (as Amy Lalonde)","type":"Role","_key":"92094","_from":"38596","_to":"54339"} +{"$label":"ACTS_IN","name":"Miss Pearce","type":"Role","_key":"61983","_from":"38596","_to":"39018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61078","_from":"38614","_to":"38601"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61077","_from":"38613","_to":"38601"} +{"$label":"ACTS_IN","name":"Ginekolog Peric","type":"Role","_key":"61076","_from":"38612","_to":"38601"} +{"$label":"ACTS_IN","name":"Prostitutka Lidija","type":"Role","_key":"61075","_from":"38611","_to":"38601"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61074","_from":"38610","_to":"38601"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61073","_from":"38609","_to":"38601"} +{"$label":"ACTS_IN","name":"Blaz","type":"Role","_key":"61072","_from":"38608","_to":"38601"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61071","_from":"38607","_to":"38601"} +{"$label":"ACTS_IN","name":"Gazdarica Olga","type":"Role","_key":"61070","_from":"38606","_to":"38601"} +{"$label":"ACTS_IN","name":"Iva","type":"Role","_key":"61069","_from":"38605","_to":"38601"} +{"$label":"ACTS_IN","name":"Marija","type":"Role","_key":"61068","_from":"38604","_to":"38601"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"61067","_from":"38603","_to":"38601"} +{"$label":"DIRECTED","_key":"61066","_from":"38602","_to":"38601"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"61089","_from":"38617","_to":"38616"} +{"$label":"ACTS_IN","name":"Cassandra","type":"Role","_key":"61096","_from":"38619","_to":"38618"} +{"$label":"ACTS_IN","name":"Resl","type":"Role","_key":"61102","_from":"38621","_to":"38620"} +{"$label":"ACTS_IN","name":"Dr. Louis Leakey","type":"Role","_key":"61108","_from":"38624","_to":"38622"} +{"$label":"ACTS_IN","name":"Sembagare","type":"Role","_key":"61107","_from":"38623","_to":"38622"} +{"$label":"ACTS_IN","name":"Soul from Freddy's Chest","type":"Role","_key":"61123","_from":"38637","_to":"38625"} +{"$label":"ACTS_IN","name":"Pin Up Girl","type":"Role","_key":"61121","_from":"38636","_to":"38625"} +{"$label":"ACTS_IN","name":"Elaine Parker","type":"Role","_key":"61120","_from":"38635","_to":"38625"} +{"$label":"ACTS_IN","name":"Dennis Johnson","type":"Role","_key":"61119","_from":"38634","_to":"38625"} +{"$label":"ACTS_IN","name":"Sheila Kopecky","type":"Role","_key":"61118","_from":"38633","_to":"38625"} +{"$label":"ACTS_IN","name":"Debbie Stevens","type":"Role","_key":"61117","_from":"38632","_to":"38625"} +{"$label":"ACTS_IN","name":"Dan Jordan","type":"Role","_key":"61116","_from":"38631","_to":"38625"} +{"$label":"ACTS_IN","name":"Rick Johnson","type":"Role","_key":"61115","_from":"38630","_to":"38625"} +{"$label":"ACTS_IN","name":"Alice Johnson","type":"Role","_key":"61114","_from":"38629","_to":"38625"} +{"$label":"ACTS_IN","name":"Joey Crusel","type":"Role","_key":"61113","_from":"38628","_to":"38625"} +{"$label":"ACTS_IN","name":"Roland Kincaid","type":"Role","_key":"61112","_from":"38627","_to":"38625"} +{"$label":"ACTS_IN","name":"Kristen Parker","type":"Role","_key":"61111","_from":"38626","_to":"38625"} +{"$label":"ACTS_IN","name":"Alice Johnson","type":"Role","_key":"61331","_from":"38629","_to":"38707"} +{"$label":"ACTS_IN","name":"Trevor Blackburn","type":"Role","_key":"111270","_from":"38630","_to":"65712"} +{"$label":"ACTS_IN","name":"Sally Campion","type":"Role","_key":"94990","_from":"38636","_to":"55928"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"101387","_from":"38637","_to":"59681"} +{"$label":"ACTS_IN","name":"Blonde in Spa","type":"Role","_key":"91049","_from":"38637","_to":"53722"} +{"$label":"ACTS_IN","name":"Trash","type":"Role","_key":"66782","_from":"38637","_to":"41258"} +{"$label":"DIRECTED","_key":"61147","_from":"38645","_to":"38640"} +{"$label":"ACTS_IN","name":"Pearl Prophet","type":"Role","_key":"61146","_from":"38644","_to":"38640"} +{"$label":"ACTS_IN","name":"Marshall Strat","type":"Role","_key":"61144","_from":"38643","_to":"38640"} +{"$label":"ACTS_IN","name":"Fender Tremolo","type":"Role","_key":"61143","_from":"38642","_to":"38640"} +{"$label":"ACTS_IN","name":"Nady Simmons","type":"Role","_key":"61142","_from":"38641","_to":"38640"} +{"$label":"DIRECTED","_key":"111239","_from":"38645","_to":"65690"} +{"$label":"DIRECTED","_key":"98027","_from":"38645","_to":"57719"} +{"$label":"DIRECTED","_key":"61161","_from":"38652","_to":"38646"} +{"$label":"ACTS_IN","name":"Younger","type":"Role","_key":"61160","_from":"38651","_to":"38646"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"61159","_from":"38650","_to":"38646"} +{"$label":"ACTS_IN","name":"Emmet (as 'Sunshine' Parker)","type":"Role","_key":"61155","_from":"38649","_to":"38646"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"61153","_from":"38648","_to":"38646"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"61152","_from":"38647","_to":"38646"} +{"$label":"ACTS_IN","name":"Merle Bisby","type":"Role","_key":"107630","_from":"38649","_to":"63525"} +{"$label":"DIRECTED","_key":"111694","_from":"38652","_to":"65946"} +{"$label":"DIRECTED","_key":"67723","_from":"38652","_to":"41643"} +{"$label":"ACTS_IN","name":"Golden Child","type":"Role","_key":"61163","_from":"38654","_to":"38653"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"61181","_from":"38658","_to":"38656"} +{"$label":"ACTS_IN","name":"Melina Vostokoff \/ Iron Maiden","type":"Role","_key":"61179","_from":"38657","_to":"38656"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"111375","_from":"38657","_to":"65768"} +{"$label":"ACTS_IN","name":"JJ","type":"Role","_key":"121607","_from":"38658","_to":"71444"} +{"$label":"ACTS_IN","name":"Miranda Hollander","type":"Role","_key":"103614","_from":"38658","_to":"60939"} +{"$label":"ACTS_IN","name":"Pug","type":"Role","_key":"61199","_from":"38665","_to":"38660"} +{"$label":"ACTS_IN","name":"Rynelf","type":"Role","_key":"61197","_from":"38664","_to":"38660"} +{"$label":"ACTS_IN","name":"Rhince","type":"Role","_key":"61195","_from":"38663","_to":"38660"} +{"$label":"ACTS_IN","name":"Lord Drinian","type":"Role","_key":"61194","_from":"38662","_to":"38660"} +{"$label":"ACTS_IN","name":"Eustance Clarence Scrubb","type":"Role","_key":"61192","_from":"38661","_to":"38660"} +{"$label":"ACTS_IN","name":"Lee Carter","type":"Role","_key":"93642","_from":"38661","_to":"55126"} +{"$label":"ACTS_IN","name":"Duncan","type":"Role","_key":"96335","_from":"38662","_to":"56600"} +{"$label":"ACTS_IN","name":"Ariel (voice)","type":"Role","_key":"61220","_from":"38670","_to":"38669"} +{"$label":"ACTS_IN","name":"Asenath","type":"Role","_key":"108915","_from":"38670","_to":"64366"} +{"$label":"ACTS_IN","name":"Ariel","type":"Role","_key":"95839","_from":"38670","_to":"56363"} +{"$label":"ACTS_IN","name":"Ariel (voice)","type":"Role","_key":"66541","_from":"38670","_to":"41140"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"61226","_from":"38672","_to":"38671"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"61232","_from":"38675","_to":"38674"} +{"$label":"ACTS_IN","name":"Molly Grue (voice)","type":"Role","_key":"61252","_from":"38679","_to":"38678"} +{"$label":"ACTS_IN","name":"Special Guest","type":"Role","_key":"61277","_from":"38695","_to":"38680"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"61276","_from":"38694","_to":"38680"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61275","_from":"38693","_to":"38680"} +{"$label":"ACTS_IN","name":"\u00c4rztin","type":"Role","_key":"61274","_from":"38692","_to":"38680"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"61273","_from":"38691","_to":"38680"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"61272","_from":"38690","_to":"38680"} +{"$label":"ACTS_IN","name":"Pfister","type":"Role","_key":"61271","_from":"38689","_to":"38680"} +{"$label":"ACTS_IN","name":"Frau Christen","type":"Role","_key":"61270","_from":"38688","_to":"38680"} +{"$label":"ACTS_IN","name":"Brandenberger","type":"Role","_key":"61269","_from":"38687","_to":"38680"} +{"$label":"ACTS_IN","name":"Vater Nico","type":"Role","_key":"61266","_from":"38686","_to":"38680"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"61265","_from":"38685","_to":"38680"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"61264","_from":"38684","_to":"38680"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"61263","_from":"38683","_to":"38680"} +{"$label":"ACTS_IN","name":"Boris","type":"Role","_key":"61260","_from":"38682","_to":"38680"} +{"$label":"DIRECTED","_key":"61259","_from":"38681","_to":"38680"} +{"$label":"ACTS_IN","name":"Prune","type":"Role","_key":"100092","_from":"38683","_to":"59039"} +{"$label":"ACTS_IN","name":"Salbach","type":"Role","_key":"68131","_from":"38684","_to":"41845"} +{"$label":"ACTS_IN","name":"Leon Schroeder","type":"Role","_key":"63659","_from":"38684","_to":"39822"} +{"$label":"ACTS_IN","name":"Vater Eugen","type":"Role","_key":"105282","_from":"38695","_to":"61949"} +{"$label":"ACTS_IN","name":"Raoul Furrer","type":"Role","_key":"105167","_from":"38695","_to":"61884"} +{"$label":"DIRECTED","_key":"61294","_from":"38699","_to":"38698"} +{"$label":"DIRECTED","_key":"116068","_from":"38699","_to":"68352"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"61312","_from":"38703","_to":"38701"} +{"$label":"ACTS_IN","name":"Swiftus","type":"Role","_key":"61307","_from":"38702","_to":"38701"} +{"$label":"ACTS_IN","name":"Brophy","type":"Role","_key":"90109","_from":"38702","_to":"53290"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"88730","_from":"38703","_to":"52574"} +{"$label":"ACTS_IN","name":"Gurney Orderly","type":"Role","_key":"61334","_from":"38710","_to":"38707"} +{"$label":"ACTS_IN","name":"Mrs. Jordan","type":"Role","_key":"61333","_from":"38709","_to":"38707"} +{"$label":"ACTS_IN","name":"Greta Gibson","type":"Role","_key":"61332","_from":"38708","_to":"38707"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"61341","_from":"38714","_to":"38711"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"61339","_from":"38713","_to":"38711"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"61338","_from":"38712","_to":"38711"} +{"$label":"DIRECTED","_key":"61344","_from":"38716","_to":"38715"} +{"$label":"DIRECTED","_key":"68890","_from":"38716","_to":"42189"} +{"$label":"ACTS_IN","name":"Marnie Burke","type":"Role","_key":"61352","_from":"38718","_to":"38717"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"72518","_from":"38718","_to":"43745"} +{"$label":"ACTS_IN","name":"Luke Eveshim","type":"Role","_key":"61367","_from":"38723","_to":"38721"} +{"$label":"ACTS_IN","name":"Helga Eveshim","type":"Role","_key":"61366","_from":"38722","_to":"38721"} +{"$label":"DIRECTED","_key":"61376","_from":"38725","_to":"38724"} +{"$label":"DIRECTED","_key":"105062","_from":"38725","_to":"61833"} +{"$label":"DIRECTED","_key":"63708","_from":"38725","_to":"39835"} +{"$label":"ACTS_IN","name":"Pizza Man","type":"Role","_key":"61387","_from":"38728","_to":"38727"} +{"$label":"DIRECTED","_key":"61397","_from":"38730","_to":"38729"} +{"$label":"DIRECTED","_key":"117239","_from":"38730","_to":"68961"} +{"$label":"DIRECTED","_key":"101751","_from":"38730","_to":"59884"} +{"$label":"DIRECTED","_key":"88287","_from":"38730","_to":"52367"} +{"$label":"DIRECTED","_key":"71904","_from":"38730","_to":"43507"} +{"$label":"DIRECTED","_key":"70869","_from":"38730","_to":"43068"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"61402","_from":"38733","_to":"38731"} +{"$label":"ACTS_IN","name":"Herbert Hencke","type":"Role","_key":"61401","_from":"38732","_to":"38731"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"114856","_from":"38733","_to":"67657"} +{"$label":"ACTS_IN","name":"Kevin Persons","type":"Role","_key":"61408","_from":"38736","_to":"38734"} +{"$label":"ACTS_IN","name":"Lindsey Persons","type":"Role","_key":"61407","_from":"38735","_to":"38734"} +{"$label":"ACTS_IN","name":"Lindsey Kingston","type":"Role","_key":"71202","_from":"38735","_to":"43214"} +{"$label":"ACTS_IN","name":"I.Q. (voice)","type":"Role","_key":"97729","_from":"38736","_to":"57545"} +{"$label":"ACTS_IN","name":"Kevin Kingston","type":"Role","_key":"71203","_from":"38736","_to":"43214"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"61420","_from":"38742","_to":"38738"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"61419","_from":"38741","_to":"38738"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"61418","_from":"38740","_to":"38738"} +{"$label":"DIRECTED","_key":"61417","_from":"38739","_to":"38738"} +{"$label":"ACTS_IN","name":"Erikssons Pupil","type":"Role","_key":"61427","_from":"38749","_to":"38743"} +{"$label":"ACTS_IN","name":"Erikssons Pupil","type":"Role","_key":"61426","_from":"38748","_to":"38743"} +{"$label":"ACTS_IN","name":"Erikssons Pupil","type":"Role","_key":"61425","_from":"38747","_to":"38743"} +{"$label":"ACTS_IN","name":"Erkissons Pupil","type":"Role","_key":"61424","_from":"38746","_to":"38743"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"61423","_from":"38745","_to":"38743"} +{"$label":"ACTS_IN","name":"Lars Eriksson","type":"Role","_key":"61422","_from":"38744","_to":"38743"} +{"$label":"ACTS_IN","name":"Scientist","type":"Role","_key":"61434","_from":"38755","_to":"38750"} +{"$label":"ACTS_IN","name":"Perrin","type":"Role","_key":"61433","_from":"38754","_to":"38750"} +{"$label":"ACTS_IN","name":"Api's Mate","type":"Role","_key":"61432","_from":"38753","_to":"38750"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"61430","_from":"38752","_to":"38750"} +{"$label":"ACTS_IN","name":"Zac Hobson","type":"Role","_key":"61429","_from":"38751","_to":"38750"} +{"$label":"ACTS_IN","name":"Mulvaney","type":"Role","_key":"107180","_from":"38751","_to":"63215"} +{"$label":"DIRECTED","_key":"61443","_from":"38764","_to":"38756"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"61442","_from":"38763","_to":"38756"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"61441","_from":"38762","_to":"38756"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"61440","_from":"38761","_to":"38756"} +{"$label":"ACTS_IN","name":"Dream Alien","type":"Role","_key":"61439","_from":"38760","_to":"38756"} +{"$label":"ACTS_IN","name":"Ricky Anderson","type":"Role","_key":"61438","_from":"38759","_to":"38756"} +{"$label":"ACTS_IN","name":"Michelle Fox","type":"Role","_key":"61437","_from":"38758","_to":"38756"} +{"$label":"ACTS_IN","name":"Llyr Williams","type":"Role","_key":"61436","_from":"38757","_to":"38756"} +{"$label":"ACTS_IN","name":"Hartford","type":"Role","_key":"98514","_from":"38757","_to":"58055"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"69412","_from":"38757","_to":"42425"} +{"$label":"ACTS_IN","name":"Mrs. Keith","type":"Role","_key":"61456","_from":"38770","_to":"38765"} +{"$label":"ACTS_IN","name":"Capt. Blakely","type":"Role","_key":"61454","_from":"38769","_to":"38765"} +{"$label":"ACTS_IN","name":"Lt. JG H. Paynter Jr.","type":"Role","_key":"61452","_from":"38768","_to":"38765"} +{"$label":"ACTS_IN","name":"May Wynn","type":"Role","_key":"61449","_from":"38767","_to":"38765"} +{"$label":"ACTS_IN","name":"Ens. Willis Seward 'Willie' Keith","type":"Role","_key":"61448","_from":"38766","_to":"38765"} +{"$label":"ACTS_IN","name":"Old Karina","type":"Role","_key":"61477","_from":"38781","_to":"38771"} +{"$label":"ACTS_IN","name":"Patch","type":"Role","_key":"61475","_from":"38780","_to":"38771"} +{"$label":"ACTS_IN","name":"Fitzcairn \/ Prisoner","type":"Role","_key":"61472","_from":"38779","_to":"38771"} +{"$label":"ACTS_IN","name":"Frog Lady","type":"Role","_key":"61471","_from":"38778","_to":"38771"} +{"$label":"ACTS_IN","name":"Count Paisley","type":"Role","_key":"61470","_from":"38777","_to":"38771"} +{"$label":"ACTS_IN","name":"Wendon","type":"Role","_key":"61469","_from":"38776","_to":"38771"} +{"$label":"ACTS_IN","name":"Zorn","type":"Role","_key":"61468","_from":"38775","_to":"38771"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"61467","_from":"38774","_to":"38771"} +{"$label":"ACTS_IN","name":"Killjoy","type":"Role","_key":"61464","_from":"38773","_to":"38771"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"61460","_from":"38772","_to":"38771"} +{"$label":"ACTS_IN","name":"Jake Spoon","type":"Role","_key":"92240","_from":"38772","_to":"54426"} +{"$label":"ACTS_IN","name":"Peters Far","type":"Role","_key":"61492","_from":"38786","_to":"38782"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"61491","_from":"38785","_to":"38782"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"61488","_from":"38784","_to":"38782"} +{"$label":"ACTS_IN","name":"Torkild","type":"Role","_key":"61482","_from":"38783","_to":"38782"} +{"$label":"ACTS_IN","name":"Consul","type":"Role","_key":"119639","_from":"38783","_to":"70275"} +{"$label":"ACTS_IN","name":"Agnetes far","type":"Role","_key":"106726","_from":"38783","_to":"62892"} +{"$label":"ACTS_IN","name":"Erik Dreier Jensen","type":"Role","_key":"106486","_from":"38783","_to":"62738"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"61504","_from":"38794","_to":"38787"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"61503","_from":"38793","_to":"38787"} +{"$label":"ACTS_IN","name":"Guy Versailles","type":"Role","_key":"61502","_from":"38792","_to":"38787"} +{"$label":"ACTS_IN","name":"Bernie Littlewolf","type":"Role","_key":"61501","_from":"38791","_to":"38787"} +{"$label":"ACTS_IN","name":"TJ","type":"Role","_key":"61500","_from":"38790","_to":"38787"} +{"$label":"ACTS_IN","name":"Lila Littlewolf","type":"Role","_key":"61499","_from":"38789","_to":"38787"} +{"$label":"DIRECTED","_key":"61497","_from":"38788","_to":"38787"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"95021","_from":"38790","_to":"55939"} +{"$label":"ACTS_IN","name":"Jake Johnson","type":"Role","_key":"93180","_from":"38790","_to":"54908"} +{"$label":"ACTS_IN","name":"Hot Girl","type":"Role","_key":"61518","_from":"38796","_to":"38795"} +{"$label":"DIRECTED","_key":"61529","_from":"38800","_to":"38799"} +{"$label":"DIRECTED","_key":"61534","_from":"38802","_to":"38801"} +{"$label":"DIRECTED","_key":"104129","_from":"38802","_to":"61261"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"61554","_from":"38808","_to":"38803"} +{"$label":"ACTS_IN","name":"Matheson","type":"Role","_key":"61550","_from":"38807","_to":"38803"} +{"$label":"ACTS_IN","name":"Carrie Longwood","type":"Role","_key":"61548","_from":"38806","_to":"38803"} +{"$label":"ACTS_IN","name":"Ack","type":"Role","_key":"61546","_from":"38805","_to":"38803"} +{"$label":"DIRECTED","_key":"61539","_from":"38804","_to":"38803"} +{"$label":"DIRECTED","_key":"115733","_from":"38804","_to":"68144"} +{"$label":"DIRECTED","_key":"107241","_from":"38804","_to":"63247"} +{"$label":"DIRECTED","_key":"98311","_from":"38804","_to":"57907"} +{"$label":"DIRECTED","_key":"92839","_from":"38804","_to":"54766"} +{"$label":"DIRECTED","_key":"61849","_from":"38804","_to":"38932"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121454","_from":"38807","_to":"71349"} +{"$label":"ACTS_IN","name":"Horsedick.MPEG","type":"Role","_key":"120375","_from":"38807","_to":"70713"} +{"$label":"ACTS_IN","name":"Delaney","type":"Role","_key":"62781","_from":"38807","_to":"39457"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"62019","_from":"38807","_to":"39042"} +{"$label":"ACTS_IN","name":"Cookie (voice)","type":"Role","_key":"61591","_from":"38807","_to":"38823"} +{"$label":"ACTS_IN","name":"Jasira","type":"Role","_key":"61566","_from":"38815","_to":"38809"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"61565","_from":"38814","_to":"38809"} +{"$label":"ACTS_IN","name":"Rifat","type":"Role","_key":"61562","_from":"38813","_to":"38809"} +{"$label":"ACTS_IN","name":"Mr. Bradley","type":"Role","_key":"61561","_from":"38812","_to":"38809"} +{"$label":"ACTS_IN","name":"Thomas Bradley","type":"Role","_key":"61559","_from":"38811","_to":"38809"} +{"$label":"DIRECTED","_key":"61558","_from":"38810","_to":"38809"} +{"$label":"ACTS_IN","name":"Taslima Jahangir","type":"Role","_key":"105043","_from":"38815","_to":"61815"} +{"$label":"ACTS_IN","name":"Spitelout","type":"Role","_key":"61582","_from":"38822","_to":"38816"} +{"$label":"ACTS_IN","name":"Hoark the Haggard","type":"Role","_key":"61580","_from":"38821","_to":"38816"} +{"$label":"ACTS_IN","name":"Starkard","type":"Role","_key":"61579","_from":"38820","_to":"38816"} +{"$label":"ACTS_IN","name":"Ack","type":"Role","_key":"61578","_from":"38819","_to":"38816"} +{"$label":"DIRECTED","_key":"61569","_from":"38818","_to":"38816"} +{"$label":"DIRECTED","_key":"61568","_from":"38817","_to":"38816"} +{"$label":"DIRECTED","_key":"101796","_from":"38817","_to":"59910"} +{"$label":"DIRECTED","_key":"70540","_from":"38817","_to":"42931"} +{"$label":"ACTS_IN","name":"'Stitch' (voice)","type":"Role","_key":"70542","_from":"38818","_to":"42931"} +{"$label":"DIRECTED","_key":"70539","_from":"38818","_to":"42931"} +{"$label":"ACTS_IN","name":"Ginger Littlejohn","type":"Role","_key":"103822","_from":"38822","_to":"61055"} +{"$label":"ACTS_IN","name":"Arthur Eddington","type":"Role","_key":"102911","_from":"38822","_to":"60541"} +{"$label":"ACTS_IN","name":"Hamish","type":"Role","_key":"100395","_from":"38822","_to":"59203"} +{"$label":"ACTS_IN","name":"Broomsy Witch (voice)","type":"Role","_key":"61598","_from":"38828","_to":"38823"} +{"$label":"ACTS_IN","name":"Pumpkin Witch \/ Palace Witch (voice)","type":"Role","_key":"61597","_from":"38827","_to":"38823"} +{"$label":"ACTS_IN","name":"Rumpelstiltskin \/ Priest \/ Krekraw Ogre (voice)","type":"Role","_key":"61592","_from":"38826","_to":"38823"} +{"$label":"ACTS_IN","name":"Brogan (voice)","type":"Role","_key":"61589","_from":"38825","_to":"38823"} +{"$label":"DIRECTED","_key":"61583","_from":"38824","_to":"38823"} +{"$label":"DIRECTED","_key":"104943","_from":"38824","_to":"61746"} +{"$label":"DIRECTED","_key":"69991","_from":"38824","_to":"42690"} +{"$label":"DIRECTED","_key":"63027","_from":"38824","_to":"39557"} +{"$label":"ACTS_IN","name":"Skydiving Guide Chris Knarl","type":"Role","_key":"93173","_from":"38825","_to":"54908"} +{"$label":"ACTS_IN","name":"Capt. Matt Dillon","type":"Role","_key":"64315","_from":"38825","_to":"40088"} +{"$label":"ACTS_IN","name":"Character","type":"Role","_key":"61665","_from":"38825","_to":"38850"} +{"$label":"ACTS_IN","name":"Loki","type":"Role","_key":"61612","_from":"38833","_to":"38831"} +{"$label":"ACTS_IN","name":"Thor","type":"Role","_key":"61611","_from":"38832","_to":"38831"} +{"$label":"ACTS_IN","name":"George Kirk","type":"Role","_key":"94696","_from":"38832","_to":"55786"} +{"$label":"ACTS_IN","name":"Kale","type":"Role","_key":"89308","_from":"38832","_to":"52867"} +{"$label":"ACTS_IN","name":"Avatar Roku","type":"Role","_key":"61627","_from":"38838","_to":"38834"} +{"$label":"ACTS_IN","name":"Zuko","type":"Role","_key":"61623","_from":"38837","_to":"38834"} +{"$label":"ACTS_IN","name":"Sokka","type":"Role","_key":"61622","_from":"38836","_to":"38834"} +{"$label":"ACTS_IN","name":"Aang","type":"Role","_key":"61620","_from":"38835","_to":"38834"} +{"$label":"ACTS_IN","name":"Jasper Hale","type":"Role","_key":"115492","_from":"38836","_to":"67997"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"112800","_from":"38836","_to":"66602"} +{"$label":"ACTS_IN","name":"Jamal Malik","type":"Role","_key":"89319","_from":"38837","_to":"52870"} +{"$label":"ACTS_IN","name":"Jaconelli","type":"Role","_key":"61643","_from":"38842","_to":"38839"} +{"$label":"ACTS_IN","name":"Fausto","type":"Role","_key":"61640","_from":"38841","_to":"38839"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"61638","_from":"38840","_to":"38839"} +{"$label":"DIRECTED","_key":"119160","_from":"38840","_to":"70024"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"61650","_from":"38846","_to":"38843"} +{"$label":"ACTS_IN","name":"Louis","type":"Role","_key":"61649","_from":"38845","_to":"38843"} +{"$label":"ACTS_IN","name":"Prince Naveen","type":"Role","_key":"61647","_from":"38844","_to":"38843"} +{"$label":"ACTS_IN","name":"Det. Klaski","type":"Role","_key":"65171","_from":"38844","_to":"40482"} +{"$label":"DIRECTED","_key":"61654","_from":"38849","_to":"38847"} +{"$label":"DIRECTED","_key":"61652","_from":"38848","_to":"38847"} +{"$label":"DIRECTED","_key":"71093","_from":"38849","_to":"43161"} +{"$label":"ACTS_IN","name":"Soldat","type":"Role","_key":"61663","_from":"38851","_to":"38850"} +{"$label":"ACTS_IN","name":"Rooney","type":"Role","_key":"61673","_from":"38855","_to":"38852"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"61670","_from":"38854","_to":"38852"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"61669","_from":"38853","_to":"38852"} +{"$label":"ACTS_IN","name":"Angus","type":"Role","_key":"118265","_from":"38853","_to":"69515"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113325","_from":"38853","_to":"66760"} +{"$label":"ACTS_IN","name":"Steve the roommate","type":"Role","_key":"93144","_from":"38855","_to":"54899"} +{"$label":"ACTS_IN","name":"Jean Michel","type":"Role","_key":"61691","_from":"38859","_to":"38858"} +{"$label":"DIRECTED","_key":"61699","_from":"38863","_to":"38860"} +{"$label":"ACTS_IN","name":"Lossman","type":"Role","_key":"61698","_from":"38862","_to":"38860"} +{"$label":"ACTS_IN","name":"Brad \/ Scarman","type":"Role","_key":"61696","_from":"38861","_to":"38860"} +{"$label":"DIRECTED","_key":"61706","_from":"38865","_to":"38864"} +{"$label":"ACTS_IN","name":"Pepe the Prawn","type":"Role","_key":"61714","_from":"38870","_to":"38867"} +{"$label":"ACTS_IN","name":"Gonzo","type":"Role","_key":"61713","_from":"38869","_to":"38867"} +{"$label":"ACTS_IN","name":"Kermit the Frog","type":"Role","_key":"61712","_from":"38868","_to":"38867"} +{"$label":"ACTS_IN","name":"Rizzo the Rat \/ Gill - Frog \/ Baby Kermit \/ Chicken \/ College Student in Audience \/ Dog \/ Lew Zealand (voice)","type":"Role","_key":"72632","_from":"38868","_to":"43777"} +{"$label":"ACTS_IN","name":"Scientist","type":"Role","_key":"71218","_from":"38868","_to":"43219"} +{"$label":"ACTS_IN","name":"Various Characters","type":"Role","_key":"93574","_from":"38869","_to":"55106"} +{"$label":"ACTS_IN","name":"Gonzo \/ Chester - Rat \/ Bill - Frog \/ Zoot \/ Beauregard \/ Dog \/ Dr. Bunsen Honeydew \/ Penguin (voice)","type":"Role","_key":"72631","_from":"38869","_to":"43777"} +{"$label":"ACTS_IN","name":"Fizzgig, A Friendly Monster","type":"Role","_key":"71217","_from":"38869","_to":"43219"} +{"$label":"ACTS_IN","name":"The Great Gonzo \/ Dr. Bunsen Honeydew \/ Zoot \/ Doglion \/ Iraqian in El Sleezo Cafe \/ Pig (voice)","type":"Role","_key":"68340","_from":"38869","_to":"41944"} +{"$label":"ACTS_IN","name":"Robert Marley","type":"Role","_key":"63354","_from":"38869","_to":"39701"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"61720","_from":"38873","_to":"38871"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"61719","_from":"38872","_to":"38871"} +{"$label":"ACTS_IN","name":"Jochen (as Oliver B\u00e4\u00dfler)","type":"Role","_key":"61729","_from":"38877","_to":"38875"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"61727","_from":"38876","_to":"38875"} +{"$label":"DIRECTED","_key":"61742","_from":"38880","_to":"38878"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"61738","_from":"38879","_to":"38878"} +{"$label":"DIRECTED","_key":"61747","_from":"38883","_to":"38881"} +{"$label":"ACTS_IN","name":"Esmeralda\/Santanico Pandemonium","type":"Role","_key":"61745","_from":"38882","_to":"38881"} +{"$label":"DIRECTED","_key":"99261","_from":"38883","_to":"58498"} +{"$label":"DIRECTED","_key":"61751","_from":"38886","_to":"38884"} +{"$label":"ACTS_IN","name":"Tonya Avery","type":"Role","_key":"61750","_from":"38885","_to":"38884"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"100895","_from":"38885","_to":"59482"} +{"$label":"DIRECTED","_key":"67153","_from":"38886","_to":"41435"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"61769","_from":"38892","_to":"38889"} +{"$label":"ACTS_IN","name":"Sam Burnel","type":"Role","_key":"61765","_from":"38891","_to":"38889"} +{"$label":"ACTS_IN","name":"Zoe Stevens","type":"Role","_key":"61763","_from":"38890","_to":"38889"} +{"$label":"ACTS_IN","name":"Radio D.J. (voice)","type":"Role","_key":"107232","_from":"38891","_to":"63230"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"61774","_from":"38894","_to":"38893"} +{"$label":"ACTS_IN","name":"Young Ishmael Chambers","type":"Role","_key":"61778","_from":"38896","_to":"38895"} +{"$label":"DIRECTED","_key":"61796","_from":"38903","_to":"38899"} +{"$label":"DIRECTED","_key":"61795","_from":"38902","_to":"38899"} +{"$label":"ACTS_IN","name":"Xian Chow","type":"Role","_key":"61793","_from":"38901","_to":"38899"} +{"$label":"ACTS_IN","name":"Eric Sloane","type":"Role","_key":"61792","_from":"38900","_to":"38899"} +{"$label":"DIRECTED","_key":"114641","_from":"38903","_to":"67534"} +{"$label":"DIRECTED","_key":"61806","_from":"38906","_to":"38905"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"61812","_from":"38913","_to":"38907"} +{"$label":"ACTS_IN","name":"Cort","type":"Role","_key":"61811","_from":"38912","_to":"38907"} +{"$label":"ACTS_IN","name":"Sissy","type":"Role","_key":"61810","_from":"38911","_to":"38907"} +{"$label":"ACTS_IN","name":"Sheriff Garris","type":"Role","_key":"61809","_from":"38910","_to":"38907"} +{"$label":"ACTS_IN","name":"Megan Garris","type":"Role","_key":"61808","_from":"38909","_to":"38907"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"61807","_from":"38908","_to":"38907"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"66781","_from":"38908","_to":"41258"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"61818","_from":"38916","_to":"38914"} +{"$label":"ACTS_IN","name":"Alexia (as Ma\u00efwenn)","type":"Role","_key":"61816","_from":"38915","_to":"38914"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101523","_from":"38915","_to":"59754"} +{"$label":"DIRECTED","_key":"101516","_from":"38915","_to":"59754"} +{"$label":"DIRECTED","_key":"94677","_from":"38916","_to":"55785"} +{"$label":"ACTS_IN","name":"Young Tourist","type":"Role","_key":"61821","_from":"38918","_to":"38917"} +{"$label":"DIRECTED","_key":"61829","_from":"38925","_to":"38919"} +{"$label":"DIRECTED","_key":"61828","_from":"38924","_to":"38919"} +{"$label":"ACTS_IN","name":"Pikachu","type":"Role","_key":"61827","_from":"38923","_to":"38919"} +{"$label":"ACTS_IN","name":"Takeshi (\"Brock\")","type":"Role","_key":"61826","_from":"38922","_to":"38919"} +{"$label":"ACTS_IN","name":"Kasumi (\"Misty\")","type":"Role","_key":"61825","_from":"38921","_to":"38919"} +{"$label":"ACTS_IN","name":"Satoshi (\"Ash Ketchum\")","type":"Role","_key":"61824","_from":"38920","_to":"38919"} +{"$label":"ACTS_IN","name":"Nataku","type":"Role","_key":"111100","_from":"38920","_to":"65622"} +{"$label":"ACTS_IN","name":"Rumi","type":"Role","_key":"63667","_from":"38920","_to":"39824"} +{"$label":"ACTS_IN","name":"Yukari \/ Sora","type":"Role","_key":"110722","_from":"38921","_to":"65413"} +{"$label":"ACTS_IN","name":"Merle","type":"Role","_key":"110726","_from":"38923","_to":"65413"} +{"$label":"ACTS_IN","name":"Pikachu (voice)","type":"Role","_key":"90542","_from":"38923","_to":"53479"} +{"$label":"ACTS_IN","name":"Pikachu (voice)","type":"Role","_key":"90536","_from":"38923","_to":"53477"} +{"$label":"DIRECTED","_key":"90537","_from":"38924","_to":"53477"} +{"$label":"DIRECTED","_key":"67147","_from":"38924","_to":"41431"} +{"$label":"DIRECTED","_key":"90544","_from":"38925","_to":"53479"} +{"$label":"DIRECTED","_key":"90538","_from":"38925","_to":"53477"} +{"$label":"DIRECTED","_key":"67148","_from":"38925","_to":"41431"} +{"$label":"ACTS_IN","name":"doc","type":"Role","_key":"61837","_from":"38928","_to":"38927"} +{"$label":"ACTS_IN","name":"Hank Hanneman","type":"Role","_key":"118879","_from":"38928","_to":"69866"} +{"$label":"ACTS_IN","name":"Jimmy Doyle","type":"Role","_key":"117479","_from":"38928","_to":"69085"} +{"$label":"ACTS_IN","name":"Heidt \/ Tim, the Doorman","type":"Role","_key":"111244","_from":"38928","_to":"65692"} +{"$label":"ACTS_IN","name":"Johnny Prince","type":"Role","_key":"111001","_from":"38928","_to":"65563"} +{"$label":"ACTS_IN","name":"Waco Johnnie Dean","type":"Role","_key":"100761","_from":"38928","_to":"59408"} +{"$label":"ACTS_IN","name":"Marie-Antoinette","type":"Role","_key":"61843","_from":"38931","_to":"38929"} +{"$label":"DIRECTED","_key":"61838","_from":"38930","_to":"38929"} +{"$label":"ACTS_IN","name":"Igraham","type":"Role","_key":"68637","_from":"38930","_to":"42069"} +{"$label":"ACTS_IN","name":"Ignat - the Master Armorer","type":"Role","_key":"61859","_from":"38937","_to":"38934"} +{"$label":"ACTS_IN","name":"Gavrilo Oleksich","type":"Role","_key":"61858","_from":"38936","_to":"38934"} +{"$label":"ACTS_IN","name":"Vasili Buslai","type":"Role","_key":"61857","_from":"38935","_to":"38934"} +{"$label":"ACTS_IN","name":"Rainelle Downing","type":"Role","_key":"61870","_from":"38944","_to":"38939"} +{"$label":"ACTS_IN","name":"Myrtle Young","type":"Role","_key":"61869","_from":"38943","_to":"38939"} +{"$label":"ACTS_IN","name":"Delphine Downing","type":"Role","_key":"61868","_from":"38942","_to":"38939"} +{"$label":"ACTS_IN","name":"Martha Beck","type":"Role","_key":"61866","_from":"38941","_to":"38939"} +{"$label":"DIRECTED","_key":"61865","_from":"38940","_to":"38939"} +{"$label":"ACTS_IN","name":"Steven's Mother","type":"Role","_key":"71917","_from":"38941","_to":"43508"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"61874","_from":"38946","_to":"38945"} +{"$label":"ACTS_IN","name":"\u00c9tienne","type":"Role","_key":"61880","_from":"38948","_to":"38947"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"61886","_from":"38951","_to":"38949"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"61885","_from":"38950","_to":"38949"} +{"$label":"ACTS_IN","name":"Marty Mc Donald","type":"Role","_key":"61891","_from":"38953","_to":"38952"} +{"$label":"ACTS_IN","name":"Lt. Pat Murphy","type":"Role","_key":"114667","_from":"38953","_to":"67551"} +{"$label":"ACTS_IN","name":"Lt. Commander Alwin D. Kramer","type":"Role","_key":"68264","_from":"38953","_to":"41908"} +{"$label":"ACTS_IN","name":"Nelson Chaney","type":"Role","_key":"65691","_from":"38953","_to":"40690"} +{"$label":"ACTS_IN","name":"Inspektor","type":"Role","_key":"61911","_from":"38960","_to":"38955"} +{"$label":"ACTS_IN","name":"Marian","type":"Role","_key":"61910","_from":"38959","_to":"38955"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"61908","_from":"38958","_to":"38955"} +{"$label":"ACTS_IN","name":"Kommissar","type":"Role","_key":"61907","_from":"38957","_to":"38955"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"61902","_from":"38956","_to":"38955"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"61917","_from":"38965","_to":"38961"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"61916","_from":"38964","_to":"38961"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"61915","_from":"38963","_to":"38961"} +{"$label":"ACTS_IN","name":"Pee Wee","type":"Role","_key":"61914","_from":"38962","_to":"38961"} +{"$label":"ACTS_IN","name":"Merton Morrison","type":"Role","_key":"88915","_from":"38962","_to":"52671"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"115810","_from":"38965","_to":"68174"} +{"$label":"ACTS_IN","name":"Rexer","type":"Role","_key":"91456","_from":"38965","_to":"53931"} +{"$label":"ACTS_IN","name":"Maitre'D","type":"Role","_key":"61941","_from":"38982","_to":"38966"} +{"$label":"ACTS_IN","name":"Phil's Wife","type":"Role","_key":"61940","_from":"38981","_to":"38966"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"61939","_from":"38980","_to":"38966"} +{"$label":"ACTS_IN","name":"Copy Boy","type":"Role","_key":"61938","_from":"38979","_to":"38966"} +{"$label":"ACTS_IN","name":"ADD Assistant","type":"Role","_key":"61937","_from":"38978","_to":"38966"} +{"$label":"ACTS_IN","name":"Shelby's Secretary","type":"Role","_key":"61936","_from":"38977","_to":"38966"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"61935","_from":"38976","_to":"38966"} +{"$label":"ACTS_IN","name":"Jessica Light","type":"Role","_key":"61933","_from":"38975","_to":"38966"} +{"$label":"ACTS_IN","name":"Dr. Willis","type":"Role","_key":"61932","_from":"38974","_to":"38966"} +{"$label":"ACTS_IN","name":"Derrick Miles","type":"Role","_key":"61931","_from":"38973","_to":"38966"} +{"$label":"ACTS_IN","name":"Ralf Coleman","type":"Role","_key":"61930","_from":"38972","_to":"38966"} +{"$label":"ACTS_IN","name":"Paula Metzler","type":"Role","_key":"61929","_from":"38971","_to":"38966"} +{"$label":"ACTS_IN","name":"Nancy Felt","type":"Role","_key":"61928","_from":"38970","_to":"38966"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"61927","_from":"38969","_to":"38966"} +{"$label":"ACTS_IN","name":"Scott Harper","type":"Role","_key":"61925","_from":"38968","_to":"38966"} +{"$label":"DIRECTED","_key":"61921","_from":"38967","_to":"38966"} +{"$label":"ACTS_IN","name":"The Nun","type":"Role","_key":"88279","_from":"38975","_to":"52363"} +{"$label":"ACTS_IN","name":"Zwerg Erwin #1","type":"Role","_key":"61960","_from":"39002","_to":"38983"} +{"$label":"ACTS_IN","name":"Steward","type":"Role","_key":"61959","_from":"39001","_to":"38983"} +{"$label":"ACTS_IN","name":"Bauer und Ringverteiler","type":"Role","_key":"61958","_from":"39000","_to":"38983"} +{"$label":"ACTS_IN","name":"TV-Werbefrau","type":"Role","_key":"61957","_from":"38999","_to":"38983"} +{"$label":"ACTS_IN","name":"Zwerg Erwin #2","type":"Role","_key":"61956","_from":"38998","_to":"38983"} +{"$label":"ACTS_IN","name":"W\u00e4chter","type":"Role","_key":"61955","_from":"38997","_to":"38983"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"61954","_from":"38996","_to":"38983"} +{"$label":"ACTS_IN","name":"Lord Sauraus","type":"Role","_key":"61953","_from":"38995","_to":"38983"} +{"$label":"ACTS_IN","name":"Kaiser von China","type":"Role","_key":"61952","_from":"38994","_to":"38983"} +{"$label":"ACTS_IN","name":"Elfenk\u00f6nigin","type":"Role","_key":"61951","_from":"38993","_to":"38983"} +{"$label":"ACTS_IN","name":"Elfenk\u00f6nig","type":"Role","_key":"61950","_from":"38992","_to":"38983"} +{"$label":"ACTS_IN","name":"H\u00e4sslicher Handlanger","type":"Role","_key":"61949","_from":"38991","_to":"38983"} +{"$label":"ACTS_IN","name":"Pupsi","type":"Role","_key":"61948","_from":"38990","_to":"38983"} +{"$label":"ACTS_IN","name":"Rackaroll \/ Voice of Tree","type":"Role","_key":"61947","_from":"38989","_to":"38983"} +{"$label":"ACTS_IN","name":"Schleimli","type":"Role","_key":"61946","_from":"38988","_to":"38983"} +{"$label":"ACTS_IN","name":"Almgandhi","type":"Role","_key":"61945","_from":"38987","_to":"38983"} +{"$label":"ACTS_IN","name":"Fredi","type":"Role","_key":"61944","_from":"38986","_to":"38983"} +{"$label":"ACTS_IN","name":"Grmpfli","type":"Role","_key":"61943","_from":"38985","_to":"38983"} +{"$label":"DIRECTED","_key":"61942","_from":"38984","_to":"38983"} +{"$label":"ACTS_IN","name":"Chip","type":"Role","_key":"61980","_from":"39017","_to":"39004"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"61979","_from":"39016","_to":"39004"} +{"$label":"ACTS_IN","name":"Mrs. Mayhew","type":"Role","_key":"61978","_from":"39015","_to":"39004"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"61977","_from":"39014","_to":"39004"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"61976","_from":"39013","_to":"39004"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"61975","_from":"39012","_to":"39004"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"61974","_from":"39011","_to":"39004"} +{"$label":"ACTS_IN","name":"Atlanta","type":"Role","_key":"61973","_from":"39010","_to":"39004"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"61972","_from":"39009","_to":"39004"} +{"$label":"ACTS_IN","name":"Franklin Mayhew","type":"Role","_key":"61971","_from":"39008","_to":"39004"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"61970","_from":"39007","_to":"39004"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"61969","_from":"39006","_to":"39004"} +{"$label":"DIRECTED","_key":"61968","_from":"39005","_to":"39004"} +{"$label":"ACTS_IN","name":"Mr. Garrison","type":"Role","_key":"61990","_from":"39026","_to":"39018"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"61989","_from":"39025","_to":"39018"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"61988","_from":"39024","_to":"39018"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"61987","_from":"39023","_to":"39018"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"61986","_from":"39022","_to":"39018"} +{"$label":"ACTS_IN","name":"Cecilia","type":"Role","_key":"61985","_from":"39021","_to":"39018"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"61984","_from":"39020","_to":"39018"} +{"$label":"DIRECTED","_key":"61981","_from":"39019","_to":"39018"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"68067","_from":"39022","_to":"41819"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"110852","_from":"39024","_to":"65481"} +{"$label":"ACTS_IN","name":"Assassin","type":"Role","_key":"62012","_from":"39041","_to":"39027"} +{"$label":"ACTS_IN","name":"Police Leader","type":"Role","_key":"62011","_from":"39040","_to":"39027"} +{"$label":"ACTS_IN","name":"Dinky","type":"Role","_key":"62010","_from":"39039","_to":"39027"} +{"$label":"ACTS_IN","name":"New Fish","type":"Role","_key":"62009","_from":"39038","_to":"39027"} +{"$label":"ACTS_IN","name":"Young Darius","type":"Role","_key":"62008","_from":"39037","_to":"39027"} +{"$label":"ACTS_IN","name":"CO #1","type":"Role","_key":"62006","_from":"39036","_to":"39027"} +{"$label":"ACTS_IN","name":"CO #2","type":"Role","_key":"62005","_from":"39035","_to":"39027"} +{"$label":"ACTS_IN","name":"Roach","type":"Role","_key":"62004","_from":"39034","_to":"39027"} +{"$label":"ACTS_IN","name":"Bad Guy #2","type":"Role","_key":"62003","_from":"39033","_to":"39027"} +{"$label":"ACTS_IN","name":"Big Dre","type":"Role","_key":"62002","_from":"39032","_to":"39027"} +{"$label":"ACTS_IN","name":"Spyda","type":"Role","_key":"62000","_from":"39031","_to":"39027"} +{"$label":"ACTS_IN","name":"Kevin Belzer","type":"Role","_key":"61999","_from":"39030","_to":"39027"} +{"$label":"ACTS_IN","name":"Paul Wilson","type":"Role","_key":"61998","_from":"39029","_to":"39027"} +{"$label":"ACTS_IN","name":"Assassin 1 - Berwell","type":"Role","_key":"61997","_from":"39028","_to":"39027"} +{"$label":"ACTS_IN","name":"Mystery Driver","type":"Role","_key":"62033","_from":"39054","_to":"39042"} +{"$label":"ACTS_IN","name":"Homeless Native American","type":"Role","_key":"62032","_from":"39053","_to":"39042"} +{"$label":"ACTS_IN","name":"Sarah's Nurse","type":"Role","_key":"62031","_from":"39052","_to":"39042"} +{"$label":"ACTS_IN","name":"Dr. Austin","type":"Role","_key":"62030","_from":"39051","_to":"39042"} +{"$label":"ACTS_IN","name":"Head Doctor","type":"Role","_key":"62029","_from":"39050","_to":"39042"} +{"$label":"ACTS_IN","name":"Young Ethan","type":"Role","_key":"62028","_from":"39049","_to":"39042"} +{"$label":"ACTS_IN","name":"Sarah's Mother","type":"Role","_key":"62027","_from":"39048","_to":"39042"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"62026","_from":"39047","_to":"39042"} +{"$label":"ACTS_IN","name":"Mr. Belafonte","type":"Role","_key":"62023","_from":"39046","_to":"39042"} +{"$label":"ACTS_IN","name":"Agent Judah Campbell","type":"Role","_key":"62022","_from":"39045","_to":"39042"} +{"$label":"ACTS_IN","name":"Sarah Daniels","type":"Role","_key":"62020","_from":"39044","_to":"39042"} +{"$label":"DIRECTED","_key":"62013","_from":"39043","_to":"39042"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"104877","_from":"39044","_to":"61706"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"88058","_from":"39045","_to":"52270"} +{"$label":"ACTS_IN","name":"Officer Bill","type":"Role","_key":"105116","_from":"39051","_to":"61863"} +{"$label":"ACTS_IN","name":"Additional Characters","type":"Role","_key":"62054","_from":"39076","_to":"39055"} +{"$label":"ACTS_IN","name":"Scruff","type":"Role","_key":"62053","_from":"39075","_to":"39055"} +{"$label":"ACTS_IN","name":"Tukta \/ Newscaster","type":"Role","_key":"62052","_from":"39074","_to":"39055"} +{"$label":"ACTS_IN","name":"Nui","type":"Role","_key":"62051","_from":"39073","_to":"39055"} +{"$label":"ACTS_IN","name":"Mali","type":"Role","_key":"62050","_from":"39072","_to":"39055"} +{"$label":"ACTS_IN","name":"Lieutenant Thripundomrong Liddomerong","type":"Role","_key":"62049","_from":"39071","_to":"39055"} +{"$label":"ACTS_IN","name":"Disabled","type":"Role","_key":"62048","_from":"39070","_to":"39055"} +{"$label":"ACTS_IN","name":"Village Head","type":"Role","_key":"62047","_from":"39069","_to":"39055"} +{"$label":"ACTS_IN","name":"Baetoey","type":"Role","_key":"62046","_from":"39068","_to":"39055"} +{"$label":"ACTS_IN","name":"Foong","type":"Role","_key":"62045","_from":"39067","_to":"39055"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"62044","_from":"39066","_to":"39055"} +{"$label":"ACTS_IN","name":"Nye","type":"Role","_key":"62043","_from":"39065","_to":"39055"} +{"$label":"ACTS_IN","name":"Nui","type":"Role","_key":"62042","_from":"39064","_to":"39055"} +{"$label":"ACTS_IN","name":"Tunta","type":"Role","_key":"62041","_from":"39063","_to":"39055"} +{"$label":"ACTS_IN","name":"Moo","type":"Role","_key":"62040","_from":"39062","_to":"39055"} +{"$label":"ACTS_IN","name":"Tun","type":"Role","_key":"62039","_from":"39061","_to":"39055"} +{"$label":"ACTS_IN","name":"Tug","type":"Role","_key":"62038","_from":"39060","_to":"39055"} +{"$label":"ACTS_IN","name":"Deaw","type":"Role","_key":"62037","_from":"39059","_to":"39055"} +{"$label":"ACTS_IN","name":"General Jang Sei Yang","type":"Role","_key":"62036","_from":"39058","_to":"39055"} +{"$label":"ACTS_IN","name":"Lowfei","type":"Role","_key":"62035","_from":"39057","_to":"39055"} +{"$label":"DIRECTED","_key":"62034","_from":"39056","_to":"39055"} +{"$label":"DIRECTED","_key":"108864","_from":"39056","_to":"64339"} +{"$label":"ACTS_IN","name":"Jiney's Mum","type":"Role","_key":"62060","_from":"39082","_to":"39077"} +{"$label":"ACTS_IN","name":"Professor in Figure Painting Class","type":"Role","_key":"62059","_from":"39081","_to":"39077"} +{"$label":"ACTS_IN","name":"Anson","type":"Role","_key":"62058","_from":"39080","_to":"39077"} +{"$label":"ACTS_IN","name":"Jiney","type":"Role","_key":"62057","_from":"39079","_to":"39077"} +{"$label":"ACTS_IN","name":"Jas","type":"Role","_key":"62056","_from":"39078","_to":"39077"} +{"$label":"ACTS_IN","name":"Monastery Monk","type":"Role","_key":"62079","_from":"39096","_to":"39083"} +{"$label":"ACTS_IN","name":"Keith's Mom","type":"Role","_key":"62078","_from":"39095","_to":"39083"} +{"$label":"ACTS_IN","name":"Keith's Dad","type":"Role","_key":"62077","_from":"39094","_to":"39083"} +{"$label":"ACTS_IN","name":"Crater Faced Man","type":"Role","_key":"62076","_from":"39084","_to":"39083"} +{"$label":"ACTS_IN","name":"Tough Local","type":"Role","_key":"62075","_from":"39093","_to":"39083"} +{"$label":"ACTS_IN","name":"Count Thurzo","type":"Role","_key":"62074","_from":"39092","_to":"39083"} +{"$label":"ACTS_IN","name":"Igor","type":"Role","_key":"62073","_from":"39091","_to":"39083"} +{"$label":"ACTS_IN","name":"Elizabeth Bathory","type":"Role","_key":"62072","_from":"39090","_to":"39083"} +{"$label":"ACTS_IN","name":"Brother Alexis","type":"Role","_key":"62068","_from":"39089","_to":"39083"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"62067","_from":"39088","_to":"39083"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"62066","_from":"39087","_to":"39083"} +{"$label":"ACTS_IN","name":"J.J.","type":"Role","_key":"62065","_from":"39086","_to":"39083"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"62064","_from":"39085","_to":"39083"} +{"$label":"DIRECTED","_key":"62062","_from":"39084","_to":"39083"} +{"$label":"ACTS_IN","name":"Luke Callahan","type":"Role","_key":"116215","_from":"39085","_to":"68425"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"116208","_from":"39085","_to":"68420"} +{"$label":"ACTS_IN","name":"Olive","type":"Role","_key":"100290","_from":"39088","_to":"59140"} +{"$label":"ACTS_IN","name":"Louisa Musgrove","type":"Role","_key":"97695","_from":"39088","_to":"57524"} +{"$label":"ACTS_IN","name":"Inmate","type":"Role","_key":"99260","_from":"39093","_to":"58489"} +{"$label":"ACTS_IN","name":"Rebel Leader","type":"Role","_key":"62092","_from":"39106","_to":"39097"} +{"$label":"ACTS_IN","name":"Red Vulture","type":"Role","_key":"62091","_from":"39105","_to":"39097"} +{"$label":"ACTS_IN","name":"Blockhead","type":"Role","_key":"62090","_from":"39104","_to":"39097"} +{"$label":"ACTS_IN","name":"Wei Liao","type":"Role","_key":"62089","_from":"39103","_to":"39097"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"62088","_from":"39102","_to":"39097"} +{"$label":"ACTS_IN","name":"Charcoal Head","type":"Role","_key":"62087","_from":"39101","_to":"39097"} +{"$label":"ACTS_IN","name":"Blue Bird","type":"Role","_key":"62084","_from":"39100","_to":"39097"} +{"$label":"ACTS_IN","name":"13th Young Master","type":"Role","_key":"62083","_from":"39099","_to":"39097"} +{"$label":"DIRECTED","_key":"62080","_from":"39098","_to":"39097"} +{"$label":"ACTS_IN","name":"Zhu Yanzhi","type":"Role","_key":"120163","_from":"39099","_to":"70575"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"112296","_from":"39099","_to":"66303"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"111146","_from":"39099","_to":"65641"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"106426","_from":"39099","_to":"62698"} +{"$label":"ACTS_IN","name":"Gypsy","type":"Role","_key":"112297","_from":"39100","_to":"66303"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"106425","_from":"39100","_to":"62698"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"109732","_from":"39103","_to":"64808"} +{"$label":"ACTS_IN","name":"Prince Wu Luan","type":"Role","_key":"100369","_from":"39103","_to":"59186"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"92572","_from":"39103","_to":"54644"} +{"$label":"ACTS_IN","name":"Jack Chen","type":"Role","_key":"66298","_from":"39103","_to":"41012"} +{"$label":"ACTS_IN","name":"Cavalry Chief Yi Yue","type":"Role","_key":"101841","_from":"39105","_to":"59938"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62107","_from":"39115","_to":"39107"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62106","_from":"39114","_to":"39107"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62105","_from":"39113","_to":"39107"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62104","_from":"39112","_to":"39107"} +{"$label":"ACTS_IN","name":"Doorman, TV Announcer","type":"Role","_key":"62103","_from":"39111","_to":"39107"} +{"$label":"ACTS_IN","name":"Old Lady","type":"Role","_key":"62102","_from":"39110","_to":"39107"} +{"$label":"ACTS_IN","name":"Additional Voice","type":"Role","_key":"62101","_from":"39109","_to":"39107"} +{"$label":"ACTS_IN","name":"Ted the Polar Bear","type":"Role","_key":"62099","_from":"39108","_to":"39107"} +{"$label":"ACTS_IN","name":"Tom Cullen","type":"Role","_key":"94981","_from":"39108","_to":"55928"} +{"$label":"ACTS_IN","name":"Patrick Star (voice)","type":"Role","_key":"72278","_from":"39108","_to":"43663"} +{"$label":"ACTS_IN","name":"Bumper","type":"Role","_key":"118677","_from":"39109","_to":"69773"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62112","_from":"39120","_to":"39116"} +{"$label":"ACTS_IN","name":"Yun-hee","type":"Role","_key":"62111","_from":"39119","_to":"39116"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62109","_from":"39118","_to":"39116"} +{"$label":"DIRECTED","_key":"62108","_from":"39117","_to":"39116"} +{"$label":"ACTS_IN","name":"Captain Park","type":"Role","_key":"107422","_from":"39118","_to":"63364"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94944","_from":"39118","_to":"55906"} +{"$label":"ACTS_IN","name":"Steve Brooks","type":"Role","_key":"62124","_from":"39123","_to":"39122"} +{"$label":"ACTS_IN","name":"Andrew Norris","type":"Role","_key":"70691","_from":"39123","_to":"43003"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"62142","_from":"39138","_to":"39125"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"62141","_from":"39137","_to":"39125"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"62140","_from":"39136","_to":"39125"} +{"$label":"ACTS_IN","name":"Freshman Girl #1","type":"Role","_key":"62139","_from":"39135","_to":"39125"} +{"$label":"ACTS_IN","name":"Mr. Riley","type":"Role","_key":"62138","_from":"39134","_to":"39125"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"62137","_from":"39133","_to":"39125"} +{"$label":"ACTS_IN","name":"Freshman Girl #2","type":"Role","_key":"62136","_from":"39132","_to":"39125"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"62135","_from":"39131","_to":"39125"} +{"$label":"ACTS_IN","name":"Kisha","type":"Role","_key":"62132","_from":"39130","_to":"39125"} +{"$label":"ACTS_IN","name":"Shawn","type":"Role","_key":"62131","_from":"39129","_to":"39125"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"62130","_from":"39128","_to":"39125"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"62129","_from":"39127","_to":"39125"} +{"$label":"DIRECTED","_key":"62126","_from":"39126","_to":"39125"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"62835","_from":"39128","_to":"39483"} +{"$label":"ACTS_IN","name":"The Horny American","type":"Role","_key":"91838","_from":"39129","_to":"54174"} +{"$label":"ACTS_IN","name":"Engineer #1","type":"Role","_key":"120830","_from":"39134","_to":"70947"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62163","_from":"39151","_to":"39140"} +{"$label":"ACTS_IN","name":"US marine","type":"Role","_key":"62162","_from":"39150","_to":"39140"} +{"$label":"ACTS_IN","name":"Police Commissioner Yam","type":"Role","_key":"62161","_from":"39149","_to":"39140"} +{"$label":"ACTS_IN","name":"Policewoman","type":"Role","_key":"62160","_from":"39148","_to":"39140"} +{"$label":"ACTS_IN","name":"Saya","type":"Role","_key":"62159","_from":"39147","_to":"39140"} +{"$label":"ACTS_IN","name":"Lady in U.S. Embassy","type":"Role","_key":"62158","_from":"39146","_to":"39140"} +{"$label":"ACTS_IN","name":"Policewoman","type":"Role","_key":"62157","_from":"39145","_to":"39140"} +{"$label":"ACTS_IN","name":"Choi Sun-ah","type":"Role","_key":"62156","_from":"39144","_to":"39140"} +{"$label":"ACTS_IN","name":"Jeon","type":"Role","_key":"62155","_from":"39143","_to":"39140"} +{"$label":"ACTS_IN","name":"Owen Lee","type":"Role","_key":"62154","_from":"39142","_to":"39140"} +{"$label":"DIRECTED","_key":"62150","_from":"39141","_to":"39140"} +{"$label":"DIRECTED","_key":"120162","_from":"39141","_to":"70575"} +{"$label":"ACTS_IN","name":"Ming","type":"Role","_key":"111054","_from":"39142","_to":"65598"} +{"$label":"ACTS_IN","name":"Sergeant Chen (as Richie Jen)","type":"Role","_key":"96779","_from":"39142","_to":"56921"} +{"$label":"ACTS_IN","name":"Yuen","type":"Role","_key":"90156","_from":"39142","_to":"53306"} +{"$label":"ACTS_IN","name":"Hung Chi","type":"Role","_key":"103840","_from":"39146","_to":"61067"} +{"$label":"ACTS_IN","name":"Gunny Bailey","type":"Role","_key":"62179","_from":"39160","_to":"39152"} +{"$label":"ACTS_IN","name":"Red Fuentes","type":"Role","_key":"62176","_from":"39159","_to":"39152"} +{"$label":"ACTS_IN","name":"Young Doc Jordan","type":"Role","_key":"62174","_from":"39158","_to":"39152"} +{"$label":"ACTS_IN","name":"Chico \/ Spaceman","type":"Role","_key":"62173","_from":"39157","_to":"39152"} +{"$label":"ACTS_IN","name":"Agent Cooper","type":"Role","_key":"62172","_from":"39156","_to":"39152"} +{"$label":"ACTS_IN","name":"CIA Agent Huang","type":"Role","_key":"62171","_from":"39155","_to":"39152"} +{"$label":"ACTS_IN","name":"Denis McBride","type":"Role","_key":"62168","_from":"39154","_to":"39152"} +{"$label":"DIRECTED","_key":"62164","_from":"39153","_to":"39152"} +{"$label":"DIRECTED","_key":"118662","_from":"39153","_to":"69764"} +{"$label":"DIRECTED","_key":"103677","_from":"39153","_to":"60984"} +{"$label":"DIRECTED","_key":"89075","_from":"39153","_to":"52767"} +{"$label":"DIRECTED","_key":"72968","_from":"39153","_to":"43921"} +{"$label":"DIRECTED","_key":"69682","_from":"39153","_to":"42544"} +{"$label":"DIRECTED","_key":"67487","_from":"39153","_to":"41564"} +{"$label":"ACTS_IN","name":"Skinheadanf\u00fchrer","type":"Role","_key":"62194","_from":"39171","_to":"39161"} +{"$label":"ACTS_IN","name":"Kola","type":"Role","_key":"62193","_from":"39170","_to":"39161"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"62192","_from":"39169","_to":"39161"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62191","_from":"39168","_to":"39161"} +{"$label":"ACTS_IN","name":"Guildo","type":"Role","_key":"62190","_from":"39167","_to":"39161"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62185","_from":"39166","_to":"39161"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"62184","_from":"39165","_to":"39161"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62183","_from":"39164","_to":"39161"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62182","_from":"39163","_to":"39161"} +{"$label":"DIRECTED","_key":"62181","_from":"39162","_to":"39161"} +{"$label":"ACTS_IN","name":"Le serveur du restaurant","type":"Role","_key":"62215","_from":"39186","_to":"39172"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"62214","_from":"39185","_to":"39172"} +{"$label":"ACTS_IN","name":"La grand-m\u00e8re","type":"Role","_key":"62213","_from":"39184","_to":"39172"} +{"$label":"ACTS_IN","name":"Sylvie","type":"Role","_key":"62212","_from":"39183","_to":"39172"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"62208","_from":"39182","_to":"39172"} +{"$label":"ACTS_IN","name":"Huguette","type":"Role","_key":"62207","_from":"39181","_to":"39172"} +{"$label":"ACTS_IN","name":"Le patron du caf\u00e9","type":"Role","_key":"62206","_from":"39180","_to":"39172"} +{"$label":"ACTS_IN","name":"Thierry","type":"Role","_key":"62205","_from":"39179","_to":"39172"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"62204","_from":"39178","_to":"39172"} +{"$label":"ACTS_IN","name":"Jean-Paul","type":"Role","_key":"62203","_from":"39177","_to":"39172"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"62200","_from":"39176","_to":"39172"} +{"$label":"ACTS_IN","name":"Roland Blanchot","type":"Role","_key":"62198","_from":"39175","_to":"39172"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"62197","_from":"39174","_to":"39172"} +{"$label":"DIRECTED","_key":"62195","_from":"39173","_to":"39172"} +{"$label":"DIRECTED","_key":"96024","_from":"39173","_to":"56447"} +{"$label":"ACTS_IN","name":"LUIZA","type":"Role","_key":"121132","_from":"39174","_to":"71145"} +{"$label":"ACTS_IN","name":"Francis Bertatoff","type":"Role","_key":"121573","_from":"39175","_to":"71429"} +{"$label":"ACTS_IN","name":"Paul Josse","type":"Role","_key":"120543","_from":"39175","_to":"70795"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"96027","_from":"39175","_to":"56447"} +{"$label":"ACTS_IN","name":"Bernard Vigneaux","type":"Role","_key":"89551","_from":"39175","_to":"52998"} +{"$label":"ACTS_IN","name":"Genevi\u00e8ve","type":"Role","_key":"119469","_from":"39184","_to":"70178"} +{"$label":"ACTS_IN","name":"Madame Ren\u00e9e","type":"Role","_key":"72972","_from":"39184","_to":"43923"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"62242","_from":"39205","_to":"39188"} +{"$label":"ACTS_IN","name":"Master","type":"Role","_key":"62241","_from":"39204","_to":"39188"} +{"$label":"ACTS_IN","name":"Kristina","type":"Role","_key":"62240","_from":"39203","_to":"39188"} +{"$label":"ACTS_IN","name":"Young Kleo","type":"Role","_key":"62239","_from":"39202","_to":"39188"} +{"$label":"ACTS_IN","name":"Kleo","type":"Role","_key":"62238","_from":"39201","_to":"39188"} +{"$label":"ACTS_IN","name":"Lieutenant Strachwitz","type":"Role","_key":"62237","_from":"39200","_to":"39188"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"62236","_from":"39199","_to":"39188"} +{"$label":"ACTS_IN","name":"Berlin Fighter","type":"Role","_key":"62235","_from":"39198","_to":"39188"} +{"$label":"ACTS_IN","name":"Young Bosco","type":"Role","_key":"62233","_from":"39197","_to":"39188"} +{"$label":"ACTS_IN","name":"Leutnant Lee","type":"Role","_key":"62232","_from":"39196","_to":"39188"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"62231","_from":"39195","_to":"39188"} +{"$label":"ACTS_IN","name":"Edgar","type":"Role","_key":"62230","_from":"39194","_to":"39188"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"62227","_from":"39193","_to":"39188"} +{"$label":"ACTS_IN","name":"Bosco","type":"Role","_key":"62226","_from":"39192","_to":"39188"} +{"$label":"ACTS_IN","name":"Vinzent Lakotta","type":"Role","_key":"62225","_from":"39191","_to":"39188"} +{"$label":"ACTS_IN","name":"Jonas Klingenberg","type":"Role","_key":"62223","_from":"39190","_to":"39188"} +{"$label":"DIRECTED","_key":"62222","_from":"39189","_to":"39188"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Rapha\u00ebl","type":"Role","_key":"62262","_from":"39218","_to":"39206"} +{"$label":"ACTS_IN","name":"La directrice litt\u00e9raire","type":"Role","_key":"62261","_from":"39217","_to":"39206"} +{"$label":"ACTS_IN","name":"La yuppie 3","type":"Role","_key":"62260","_from":"39216","_to":"39206"} +{"$label":"ACTS_IN","name":"La yuppie 2","type":"Role","_key":"62259","_from":"39215","_to":"39206"} +{"$label":"ACTS_IN","name":"La yuppie 1","type":"Role","_key":"62258","_from":"39214","_to":"39206"} +{"$label":"ACTS_IN","name":"La Top Model","type":"Role","_key":"62256","_from":"39213","_to":"39206"} +{"$label":"ACTS_IN","name":"Le mec 2","type":"Role","_key":"62255","_from":"39212","_to":"39206"} +{"$label":"ACTS_IN","name":"Le mec 1","type":"Role","_key":"62254","_from":"39211","_to":"39206"} +{"$label":"ACTS_IN","name":"La sage-femme","type":"Role","_key":"62253","_from":"39210","_to":"39206"} +{"$label":"ACTS_IN","name":"Le roi","type":"Role","_key":"62252","_from":"39209","_to":"39206"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl ado","type":"Role","_key":"62251","_from":"39208","_to":"39206"} +{"$label":"DIRECTED","_key":"62243","_from":"39207","_to":"39206"} +{"$label":"ACTS_IN","name":"Lanyon's Girlfriend","type":"Role","_key":"62283","_from":"39236","_to":"39219"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"62282","_from":"39235","_to":"39219"} +{"$label":"ACTS_IN","name":"Hot Female Bartender","type":"Role","_key":"62281","_from":"39234","_to":"39219"} +{"$label":"ACTS_IN","name":"Beaten Victim","type":"Role","_key":"62280","_from":"39233","_to":"39219"} +{"$label":"ACTS_IN","name":"Nightclub Girl","type":"Role","_key":"62279","_from":"39232","_to":"39219"} +{"$label":"ACTS_IN","name":"Josh Enfield","type":"Role","_key":"62278","_from":"39231","_to":"39219"} +{"$label":"ACTS_IN","name":"Gun Victim","type":"Role","_key":"62277","_from":"39230","_to":"39219"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"62276","_from":"39229","_to":"39219"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"62275","_from":"39228","_to":"39219"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"62274","_from":"39227","_to":"39219"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"62273","_from":"39226","_to":"39219"} +{"$label":"ACTS_IN","name":"Heather Poole","type":"Role","_key":"62272","_from":"39225","_to":"39219"} +{"$label":"ACTS_IN","name":"Jessie - Bathtub Victim","type":"Role","_key":"62271","_from":"39224","_to":"39219"} +{"$label":"ACTS_IN","name":"Lanyon","type":"Role","_key":"62268","_from":"39223","_to":"39219"} +{"$label":"ACTS_IN","name":"Henry 'J' Jekyll \/ Hyde","type":"Role","_key":"62267","_from":"39222","_to":"39219"} +{"$label":"ACTS_IN","name":"Professor Poole","type":"Role","_key":"62266","_from":"39221","_to":"39219"} +{"$label":"DIRECTED","_key":"62263","_from":"39220","_to":"39219"} +{"$label":"ACTS_IN","name":"Det. Valdez","type":"Role","_key":"64374","_from":"39221","_to":"40118"} +{"$label":"ACTS_IN","name":"Fenia Gaitanides","type":"Role","_key":"62296","_from":"39248","_to":"39237"} +{"$label":"ACTS_IN","name":"Yannis","type":"Role","_key":"62295","_from":"39247","_to":"39237"} +{"$label":"ACTS_IN","name":"Eleni","type":"Role","_key":"62294","_from":"39246","_to":"39237"} +{"$label":"ACTS_IN","name":"Le douanier","type":"Role","_key":"62293","_from":"39245","_to":"39237"} +{"$label":"ACTS_IN","name":"Le beau-p\u00e8re","type":"Role","_key":"62292","_from":"39244","_to":"39237"} +{"$label":"ACTS_IN","name":"Le petit Thomas","type":"Role","_key":"62291","_from":"39243","_to":"39237"} +{"$label":"ACTS_IN","name":"V\u00e9ronique Fleury","type":"Role","_key":"62290","_from":"39242","_to":"39237"} +{"$label":"ACTS_IN","name":"Pierre Forster","type":"Role","_key":"62289","_from":"39241","_to":"39237"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"62288","_from":"39240","_to":"39237"} +{"$label":"ACTS_IN","name":"Le r\u00e9ceptionniste","type":"Role","_key":"62287","_from":"39239","_to":"39237"} +{"$label":"DIRECTED","_key":"62284","_from":"39238","_to":"39237"} +{"$label":"ACTS_IN","name":"Agent Grazer","type":"Role","_key":"62317","_from":"39262","_to":"39249"} +{"$label":"ACTS_IN","name":"Jared's Secretary","type":"Role","_key":"62316","_from":"39261","_to":"39249"} +{"$label":"ACTS_IN","name":"Erma","type":"Role","_key":"62315","_from":"39260","_to":"39249"} +{"$label":"ACTS_IN","name":"Senator Lucas","type":"Role","_key":"62314","_from":"39259","_to":"39249"} +{"$label":"ACTS_IN","name":"Clark Jackwell","type":"Role","_key":"62313","_from":"39258","_to":"39249"} +{"$label":"ACTS_IN","name":"Nicholai Chernoff","type":"Role","_key":"62312","_from":"39257","_to":"39249"} +{"$label":"ACTS_IN","name":"Lucy Rahlston","type":"Role","_key":"62311","_from":"39256","_to":"39249"} +{"$label":"ACTS_IN","name":"Sara Kester","type":"Role","_key":"62310","_from":"39255","_to":"39249"} +{"$label":"ACTS_IN","name":"Jerome Halliday","type":"Role","_key":"62309","_from":"39254","_to":"39249"} +{"$label":"ACTS_IN","name":"Shane Waller","type":"Role","_key":"62308","_from":"39253","_to":"39249"} +{"$label":"ACTS_IN","name":"Theo Gorbov","type":"Role","_key":"62307","_from":"39252","_to":"39249"} +{"$label":"ACTS_IN","name":"Richard Kester","type":"Role","_key":"62306","_from":"39251","_to":"39249"} +{"$label":"DIRECTED","_key":"62297","_from":"39250","_to":"39249"} +{"$label":"ACTS_IN","name":"Ryan \/ Colt \/ Detective Morse","type":"Role","_key":"116872","_from":"39251","_to":"68802"} +{"$label":"ACTS_IN","name":"Sheriff Kirkland","type":"Role","_key":"114720","_from":"39251","_to":"67571"} +{"$label":"ACTS_IN","name":"Barracks Officer","type":"Role","_key":"94699","_from":"39251","_to":"55786"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"64395","_from":"39251","_to":"40128"} +{"$label":"ACTS_IN","name":"Sergei Petkov","type":"Role","_key":"110549","_from":"39252","_to":"65319"} +{"$label":"ACTS_IN","name":"Prof. Peter Lang","type":"Role","_key":"118454","_from":"39253","_to":"69639"} +{"$label":"ACTS_IN","name":"Lt. Austin Burke","type":"Role","_key":"120340","_from":"39254","_to":"70686"} +{"$label":"ACTS_IN","name":"Parent #2","type":"Role","_key":"117297","_from":"39256","_to":"68981"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"120342","_from":"39261","_to":"70686"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62333","_from":"39278","_to":"39263"} +{"$label":"ACTS_IN","name":"Shi Fu","type":"Role","_key":"62332","_from":"39277","_to":"39263"} +{"$label":"ACTS_IN","name":"Wei Kong","type":"Role","_key":"62331","_from":"39276","_to":"39263"} +{"$label":"ACTS_IN","name":"Wu Kong","type":"Role","_key":"62330","_from":"39275","_to":"39263"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62329","_from":"39274","_to":"39263"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62328","_from":"39273","_to":"39263"} +{"$label":"ACTS_IN","name":"Xuan Kong","type":"Role","_key":"62327","_from":"39272","_to":"39263"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62326","_from":"39271","_to":"39263"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62325","_from":"39270","_to":"39263"} +{"$label":"ACTS_IN","name":"Ban Kong","type":"Role","_key":"62324","_from":"39269","_to":"39263"} +{"$label":"ACTS_IN","name":"Se Kong","type":"Role","_key":"62323","_from":"39268","_to":"39263"} +{"$label":"ACTS_IN","name":"Liao Kong","type":"Role","_key":"62322","_from":"39267","_to":"39263"} +{"$label":"ACTS_IN","name":"Bai Wu Xia","type":"Role","_key":"62321","_from":"39266","_to":"39263"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"62320","_from":"39265","_to":"39263"} +{"$label":"DIRECTED","_key":"62318","_from":"39264","_to":"39263"} +{"$label":"DIRECTED","_key":"62351","_from":"39283","_to":"39282"} +{"$label":"DIRECTED","_key":"111390","_from":"39283","_to":"65780"} +{"$label":"DIRECTED","_key":"73004","_from":"39283","_to":"43937"} +{"$label":"DIRECTED","_key":"72045","_from":"39283","_to":"43562"} +{"$label":"DIRECTED","_key":"64253","_from":"39283","_to":"40075"} +{"$label":"ACTS_IN","name":"Carl Hough","type":"Role","_key":"94984","_from":"39283","_to":"55928"} +{"$label":"DIRECTED","_key":"62361","_from":"39288","_to":"39284"} +{"$label":"ACTS_IN","name":"Nick (as Kevin Blair)","type":"Role","_key":"62359","_from":"39287","_to":"39284"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"62358","_from":"39286","_to":"39284"} +{"$label":"ACTS_IN","name":"Tina Shepard","type":"Role","_key":"62357","_from":"39285","_to":"39284"} +{"$label":"ACTS_IN","name":"Orson Biggs","type":"Role","_key":"110154","_from":"39288","_to":"65091"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102662","_from":"39288","_to":"60399"} +{"$label":"ACTS_IN","name":"Vierstern","type":"Role","_key":"62366","_from":"39291","_to":"39289"} +{"$label":"ACTS_IN","name":"Horst K\u00f6pper","type":"Role","_key":"62362","_from":"39290","_to":"39289"} +{"$label":"DIRECTED","_key":"62374","_from":"39298","_to":"39292"} +{"$label":"ACTS_IN","name":"Young Jason","type":"Role","_key":"62373","_from":"39297","_to":"39292"} +{"$label":"ACTS_IN","name":"Colleen Van Deusen","type":"Role","_key":"62372","_from":"39296","_to":"39292"} +{"$label":"ACTS_IN","name":"Rennie Wickham","type":"Role","_key":"62371","_from":"39295","_to":"39292"} +{"$label":"ACTS_IN","name":"Suzi Donaldson","type":"Role","_key":"62369","_from":"39294","_to":"39292"} +{"$label":"ACTS_IN","name":"Jim Miller","type":"Role","_key":"62368","_from":"39293","_to":"39292"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102670","_from":"39295","_to":"60399"} +{"$label":"ACTS_IN","name":"Maj. Melissa Hill","type":"Role","_key":"66982","_from":"39295","_to":"41351"} +{"$label":"DIRECTED","_key":"62380","_from":"39302","_to":"39299"} +{"$label":"ACTS_IN","name":"Jessica Kimble","type":"Role","_key":"62377","_from":"39301","_to":"39299"} +{"$label":"ACTS_IN","name":"Steven Freeman","type":"Role","_key":"62376","_from":"39300","_to":"39299"} +{"$label":"DIRECTED","_key":"93623","_from":"39302","_to":"55122"} +{"$label":"ACTS_IN","name":"Mme Laktani","type":"Role","_key":"62386","_from":"39306","_to":"39303"} +{"$label":"ACTS_IN","name":"Sofia enfant","type":"Role","_key":"62385","_from":"39305","_to":"39303"} +{"$label":"DIRECTED","_key":"62381","_from":"39304","_to":"39303"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"62393","_from":"39309","_to":"39307"} +{"$label":"DIRECTED","_key":"62387","_from":"39308","_to":"39307"} +{"$label":"DIRECTED","_key":"62401","_from":"39312","_to":"39310"} +{"$label":"ACTS_IN","name":"Timmy Robinson","type":"Role","_key":"62398","_from":"39311","_to":"39310"} +{"$label":"ACTS_IN","name":"Eglantine","type":"Role","_key":"62405","_from":"39316","_to":"39313"} +{"$label":"DIRECTED","_key":"62403","_from":"39315","_to":"39313"} +{"$label":"DIRECTED","_key":"62402","_from":"39314","_to":"39313"} +{"$label":"DIRECTED","_key":"114107","_from":"39314","_to":"67203"} +{"$label":"DIRECTED","_key":"114108","_from":"39315","_to":"67203"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"62414","_from":"39322","_to":"39317"} +{"$label":"ACTS_IN","name":"Conserge","type":"Role","_key":"62413","_from":"39321","_to":"39317"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"62412","_from":"39320","_to":"39317"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"62411","_from":"39319","_to":"39317"} +{"$label":"DIRECTED","_key":"62409","_from":"39318","_to":"39317"} +{"$label":"ACTS_IN","name":"Pam Owens","type":"Role","_key":"62421","_from":"39327","_to":"39323"} +{"$label":"ACTS_IN","name":"Young Mary Banner \/ 'Bloody Mary'","type":"Role","_key":"62420","_from":"39326","_to":"39323"} +{"$label":"ACTS_IN","name":"Buck Jacoby","type":"Role","_key":"62419","_from":"39325","_to":"39323"} +{"$label":"ACTS_IN","name":"David Owens","type":"Role","_key":"62416","_from":"39324","_to":"39323"} +{"$label":"ACTS_IN","name":"Joyce Collins","type":"Role","_key":"71024","_from":"39327","_to":"43134"} +{"$label":"ACTS_IN","name":"Pauline","type":"Role","_key":"62423","_from":"39329","_to":"39328"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"62439","_from":"39335","_to":"39331"} +{"$label":"ACTS_IN","name":"Robert Delman \/ Ralph Duran","type":"Role","_key":"62438","_from":"39334","_to":"39331"} +{"$label":"ACTS_IN","name":"Charro","type":"Role","_key":"62437","_from":"39333","_to":"39331"} +{"$label":"ACTS_IN","name":"Chief Tanney","type":"Role","_key":"62436","_from":"39332","_to":"39331"} +{"$label":"ACTS_IN","name":"Loco Dempsey","type":"Role","_key":"62449","_from":"39338","_to":"39337"} +{"$label":"DIRECTED","_key":"62468","_from":"39342","_to":"39340"} +{"$label":"ACTS_IN","name":"Padre di Geg\u00e9","type":"Role","_key":"62467","_from":"39341","_to":"39340"} +{"$label":"DIRECTED","_key":"62477","_from":"39348","_to":"39343"} +{"$label":"ACTS_IN","name":"La Divina","type":"Role","_key":"62476","_from":"39350","_to":"39343"} +{"$label":"ACTS_IN","name":"Romy","type":"Role","_key":"62475","_from":"39349","_to":"39343"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"62474","_from":"39348","_to":"39343"} +{"$label":"ACTS_IN","name":"Annamaria","type":"Role","_key":"62473","_from":"39347","_to":"39343"} +{"$label":"ACTS_IN","name":"Alfonso","type":"Role","_key":"62472","_from":"39346","_to":"39343"} +{"$label":"ACTS_IN","name":"Ricardo","type":"Role","_key":"62471","_from":"39345","_to":"39343"} +{"$label":"ACTS_IN","name":"Raffaele","type":"Role","_key":"62470","_from":"39344","_to":"39343"} +{"$label":"ACTS_IN","name":"Aurora \/ Italia \/ Libera","type":"Role","_key":"105694","_from":"39350","_to":"62212"} +{"$label":"ACTS_IN","name":"Mario's Lover #1","type":"Role","_key":"89412","_from":"39350","_to":"52924"} +{"$label":"ACTS_IN","name":"Pvt. Billie Otter","type":"Role","_key":"62487","_from":"39355","_to":"39352"} +{"$label":"ACTS_IN","name":"Pvt. Ottis Brick","type":"Role","_key":"62484","_from":"39354","_to":"39352"} +{"$label":"DIRECTED","_key":"62483","_from":"39353","_to":"39352"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"62500","_from":"39358","_to":"39357"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"62512","_from":"39361","_to":"39360"} +{"$label":"ACTS_IN","name":"Wayne Boggs","type":"Role","_key":"62550","_from":"39369","_to":"39367"} +{"$label":"DIRECTED","_key":"62543","_from":"39368","_to":"39367"} +{"$label":"DIRECTED","_key":"121157","_from":"39368","_to":"71172"} +{"$label":"DIRECTED","_key":"115541","_from":"39368","_to":"68020"} +{"$label":"DIRECTED","_key":"106639","_from":"39368","_to":"62833"} +{"$label":"DIRECTED","_key":"64162","_from":"39368","_to":"40035"} +{"$label":"DIRECTED","_key":"62568","_from":"39373","_to":"39372"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"62573","_from":"39376","_to":"39375"} +{"$label":"DIRECTED","_key":"62592","_from":"39381","_to":"39379"} +{"$label":"ACTS_IN","name":"Perseus","type":"Role","_key":"62589","_from":"39380","_to":"39379"} +{"$label":"ACTS_IN","name":"Doc Kovac","type":"Role","_key":"103640","_from":"39380","_to":"60957"} +{"$label":"ACTS_IN","name":"Sky Pierson","type":"Role","_key":"99143","_from":"39380","_to":"58416"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"62600","_from":"39385","_to":"39382"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"62598","_from":"39384","_to":"39382"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"62595","_from":"39383","_to":"39382"} +{"$label":"DIRECTED","_key":"62593","_from":"39383","_to":"39382"} +{"$label":"ACTS_IN","name":"Tommaso Pensara","type":"Role","_key":"98356","_from":"39384","_to":"57925"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"62604","_from":"39387","_to":"39386"} +{"$label":"DIRECTED","_key":"62605","_from":"39389","_to":"39388"} +{"$label":"DIRECTED","_key":"98121","_from":"39389","_to":"57768"} +{"$label":"DIRECTED","_key":"62620","_from":"39393","_to":"39392"} +{"$label":"ACTS_IN","name":"Washington Military Reporter","type":"Role","_key":"62638","_from":"39406","_to":"39394"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"62637","_from":"39405","_to":"39394"} +{"$label":"ACTS_IN","name":"Field Reporter","type":"Role","_key":"62635","_from":"39404","_to":"39394"} +{"$label":"ACTS_IN","name":"Cemetery Zombie","type":"Role","_key":"62634","_from":"39403","_to":"39394"} +{"$label":"ACTS_IN","name":"Newscaster \/ Zombie","type":"Role","_key":"62633","_from":"39402","_to":"39394"} +{"$label":"ACTS_IN","name":"Karen Cooper","type":"Role","_key":"62632","_from":"39401","_to":"39394"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"62631","_from":"39400","_to":"39394"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"62630","_from":"39399","_to":"39394"} +{"$label":"ACTS_IN","name":"Helen Cooper","type":"Role","_key":"62629","_from":"39398","_to":"39394"} +{"$label":"ACTS_IN","name":"Harry Cooper","type":"Role","_key":"62628","_from":"39397","_to":"39394"} +{"$label":"ACTS_IN","name":"Barbra","type":"Role","_key":"62627","_from":"39396","_to":"39394"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"62626","_from":"39395","_to":"39394"} +{"$label":"ACTS_IN","name":"Alcalde","type":"Role","_key":"62654","_from":"39412","_to":"39410"} +{"$label":"DIRECTED","_key":"62647","_from":"39411","_to":"39410"} +{"$label":"ACTS_IN","name":"Diego","type":"Role","_key":"90060","_from":"39412","_to":"53266"} +{"$label":"DIRECTED","_key":"62657","_from":"39414","_to":"39413"} +{"$label":"DIRECTED","_key":"120268","_from":"39414","_to":"70622"} +{"$label":"ACTS_IN","name":"Tramp (voice)","type":"Role","_key":"62689","_from":"39422","_to":"39418"} +{"$label":"ACTS_IN","name":"Lady (voice)","type":"Role","_key":"62688","_from":"39421","_to":"39418"} +{"$label":"ACTS_IN","name":"Si (voice)","type":"Role","_key":"62687","_from":"39420","_to":"39418"} +{"$label":"DIRECTED","_key":"62686","_from":"39419","_to":"39418"} +{"$label":"DIRECTED","_key":"94624","_from":"39419","_to":"55755"} +{"$label":"DIRECTED","_key":"88856","_from":"39419","_to":"52647"} +{"$label":"DIRECTED","_key":"87973","_from":"39419","_to":"52236"} +{"$label":"DIRECTED","_key":"68651","_from":"39419","_to":"42072"} +{"$label":"DIRECTED","_key":"66451","_from":"39419","_to":"41081"} +{"$label":"DIRECTED","_key":"65094","_from":"39419","_to":"40438"} +{"$label":"ACTS_IN","name":"Mother Rabbit\/ Little Sister Mouse","type":"Role","_key":"72546","_from":"39421","_to":"43753"} +{"$label":"DIRECTED","_key":"62703","_from":"39425","_to":"39424"} +{"$label":"DIRECTED","_key":"62710","_from":"39428","_to":"39426"} +{"$label":"ACTS_IN","name":"Dr. Jainway","type":"Role","_key":"62709","_from":"39427","_to":"39426"} +{"$label":"DIRECTED","_key":"62711","_from":"39430","_to":"39429"} +{"$label":"DIRECTED","_key":"90119","_from":"39430","_to":"53291"} +{"$label":"DIRECTED","_key":"72206","_from":"39430","_to":"43634"} +{"$label":"DIRECTED","_key":"63363","_from":"39430","_to":"39705"} +{"$label":"DIRECTED","_key":"62726","_from":"39437","_to":"39432"} +{"$label":"ACTS_IN","name":"Saw's thug","type":"Role","_key":"62725","_from":"39436","_to":"39432"} +{"$label":"ACTS_IN","name":"Warner 'Cougar' Kaugman","type":"Role","_key":"62724","_from":"39435","_to":"39432"} +{"$label":"ACTS_IN","name":"Steve Cannon","type":"Role","_key":"62723","_from":"39434","_to":"39432"} +{"$label":"ACTS_IN","name":"Amy Yip","type":"Role","_key":"62722","_from":"39433","_to":"39432"} +{"$label":"ACTS_IN","name":"Quin's Wife","type":"Role","_key":"109735","_from":"39433","_to":"64808"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109109","_from":"39436","_to":"64466"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"68085","_from":"39436","_to":"41824"} +{"$label":"DIRECTED","_key":"114033","_from":"39437","_to":"67151"} +{"$label":"DIRECTED","_key":"114027","_from":"39437","_to":"67150"} +{"$label":"DIRECTED","_key":"64509","_from":"39437","_to":"40185"} +{"$label":"DIRECTED","_key":"62736","_from":"39440","_to":"39439"} +{"$label":"DIRECTED","_key":"62741","_from":"39444","_to":"39441"} +{"$label":"ACTS_IN","name":"Nick Merritt","type":"Role","_key":"62740","_from":"39443","_to":"39441"} +{"$label":"ACTS_IN","name":"Alexandra Amberson","type":"Role","_key":"62738","_from":"39442","_to":"39441"} +{"$label":"DIRECTED","_key":"115377","_from":"39444","_to":"67934"} +{"$label":"ACTS_IN","name":"Ginette la Clocharde","type":"Role","_key":"62745","_from":"39447","_to":"39445"} +{"$label":"DIRECTED","_key":"62742","_from":"39446","_to":"39445"} +{"$label":"DIRECTED","_key":"101743","_from":"39446","_to":"59883"} +{"$label":"DIRECTED","_key":"101273","_from":"39446","_to":"59631"} +{"$label":"DIRECTED","_key":"71568","_from":"39446","_to":"43356"} +{"$label":"ACTS_IN","name":"Z\u00e9zette","type":"Role","_key":"101265","_from":"39447","_to":"59631"} +{"$label":"ACTS_IN","name":"Ginette","type":"Role","_key":"71572","_from":"39447","_to":"43356"} +{"$label":"ACTS_IN","name":"Gigi","type":"Role","_key":"68379","_from":"39447","_to":"41963"} +{"$label":"DIRECTED","_key":"62757","_from":"39452","_to":"39449"} +{"$label":"ACTS_IN","name":"Yu JongWon","type":"Role","_key":"62756","_from":"39451","_to":"39449"} +{"$label":"ACTS_IN","name":"Jung Dae-Ho (credited as Derek Kim)","type":"Role","_key":"62755","_from":"39450","_to":"39449"} +{"$label":"ACTS_IN","name":"Detective Cho","type":"Role","_key":"108943","_from":"39451","_to":"64380"} +{"$label":"DIRECTED","_key":"71353","_from":"39452","_to":"43274"} +{"$label":"DIRECTED","_key":"62765","_from":"39455","_to":"39453"} +{"$label":"ACTS_IN","name":"Father Andrews","type":"Role","_key":"62763","_from":"39454","_to":"39453"} +{"$label":"ACTS_IN","name":"Delaney's Wife","type":"Role","_key":"62782","_from":"39459","_to":"39457"} +{"$label":"ACTS_IN","name":"Mr. Surya","type":"Role","_key":"62776","_from":"39458","_to":"39457"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"107091","_from":"39459","_to":"63144"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"107080","_from":"39459","_to":"63141"} +{"$label":"ACTS_IN","name":"Sidney","type":"Role","_key":"107057","_from":"39459","_to":"63126"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"67665","_from":"39459","_to":"41628"} +{"$label":"ACTS_IN","name":"Chiffon","type":"Role","_key":"65707","_from":"39459","_to":"40694"} +{"$label":"ACTS_IN","name":"Sanit\u00e4ter","type":"Role","_key":"62787","_from":"39463","_to":"39460"} +{"$label":"ACTS_IN","name":"Nachrichtensprecher","type":"Role","_key":"62786","_from":"39462","_to":"39460"} +{"$label":"ACTS_IN","name":"Sara Prudhomme","type":"Role","_key":"62785","_from":"39461","_to":"39460"} +{"$label":"DIRECTED","_key":"62794","_from":"39466","_to":"39464"} +{"$label":"ACTS_IN","name":"Helena Bereen","type":"Role","_key":"62792","_from":"39465","_to":"39464"} +{"$label":"DIRECTED","_key":"62803","_from":"39472","_to":"39467"} +{"$label":"ACTS_IN","name":"Dr. Brookner","type":"Role","_key":"62802","_from":"39471","_to":"39467"} +{"$label":"ACTS_IN","name":"Beth-ann","type":"Role","_key":"62801","_from":"39470","_to":"39467"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"62798","_from":"39469","_to":"39467"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"62797","_from":"39468","_to":"39467"} +{"$label":"ACTS_IN","name":"Deputy Colleen","type":"Role","_key":"71836","_from":"39469","_to":"43469"} +{"$label":"ACTS_IN","name":"The Belgian lady","type":"Role","_key":"62815","_from":"39475","_to":"39474"} +{"$label":"ACTS_IN","name":"Major Major","type":"Role","_key":"62825","_from":"39479","_to":"39476"} +{"$label":"ACTS_IN","name":"Dr. \"Doc\" Daneeka","type":"Role","_key":"62823","_from":"39478","_to":"39476"} +{"$label":"ACTS_IN","name":"Captain Nately","type":"Role","_key":"62822","_from":"39477","_to":"39476"} +{"$label":"ACTS_IN","name":"Gog","type":"Role","_key":"118034","_from":"39478","_to":"69382"} +{"$label":"ACTS_IN","name":"Hysterium","type":"Role","_key":"113879","_from":"39478","_to":"67081"} +{"$label":"ACTS_IN","name":"Bernard 'Bernie' Lefkowitz","type":"Role","_key":"68902","_from":"39478","_to":"42195"} +{"$label":"ACTS_IN","name":"Judson","type":"Role","_key":"101532","_from":"39479","_to":"59764"} +{"$label":"ACTS_IN","name":"Judson","type":"Role","_key":"99069","_from":"39479","_to":"58364"} +{"$label":"ACTS_IN","name":"Judson","type":"Role","_key":"99062","_from":"39479","_to":"58360"} +{"$label":"ACTS_IN","name":"Bernard (voice)","type":"Role","_key":"69108","_from":"39479","_to":"42285"} +{"$label":"ACTS_IN","name":"Bernard (voice)","type":"Role","_key":"68089","_from":"39479","_to":"41826"} +{"$label":"ACTS_IN","name":"Papa Elf","type":"Role","_key":"65233","_from":"39479","_to":"40502"} +{"$label":"DIRECTED","_key":"62833","_from":"39482","_to":"39480"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"62830","_from":"39481","_to":"39480"} +{"$label":"DIRECTED","_key":"62838","_from":"39487","_to":"39483"} +{"$label":"ACTS_IN","name":"Lecture Hall Girl","type":"Role","_key":"62837","_from":"39486","_to":"39483"} +{"$label":"ACTS_IN","name":"Maya King","type":"Role","_key":"62836","_from":"39485","_to":"39483"} +{"$label":"ACTS_IN","name":"Brittney Havers","type":"Role","_key":"62834","_from":"39484","_to":"39483"} +{"$label":"DIRECTED","_key":"114346","_from":"39487","_to":"67354"} +{"$label":"ACTS_IN","name":"Axel H\u00e4ring","type":"Role","_key":"62847","_from":"39491","_to":"39489"} +{"$label":"ACTS_IN","name":"Dr. Annika Hofer","type":"Role","_key":"62846","_from":"39490","_to":"39489"} +{"$label":"DIRECTED","_key":"62853","_from":"39497","_to":"39492"} +{"$label":"ACTS_IN","name":"Rudolf","type":"Role","_key":"62852","_from":"39496","_to":"39492"} +{"$label":"ACTS_IN","name":"Inge","type":"Role","_key":"62851","_from":"39495","_to":"39492"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"62850","_from":"39494","_to":"39492"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"62849","_from":"39493","_to":"39492"} +{"$label":"DIRECTED","_key":"92634","_from":"39497","_to":"54678"} +{"$label":"DIRECTED","_key":"90549","_from":"39497","_to":"53481"} +{"$label":"DIRECTED","_key":"71149","_from":"39497","_to":"43185"} +{"$label":"ACTS_IN","name":"Guy on Street","type":"Role","_key":"92632","_from":"39497","_to":"54678"} +{"$label":"DIRECTED","_key":"62864","_from":"39501","_to":"39499"} +{"$label":"DIRECTED","_key":"62863","_from":"39500","_to":"39499"} +{"$label":"DIRECTED","_key":"62874","_from":"39505","_to":"39502"} +{"$label":"ACTS_IN","name":"Monkey","type":"Role","_key":"62872","_from":"39504","_to":"39502"} +{"$label":"ACTS_IN","name":"Steph","type":"Role","_key":"62866","_from":"39503","_to":"39502"} +{"$label":"DIRECTED","_key":"62889","_from":"39509","_to":"39508"} +{"$label":"DIRECTED","_key":"119300","_from":"39509","_to":"70095"} +{"$label":"DIRECTED","_key":"68592","_from":"39509","_to":"42055"} +{"$label":"DIRECTED","_key":"66459","_from":"39509","_to":"41092"} +{"$label":"DIRECTED","_key":"66369","_from":"39509","_to":"41046"} +{"$label":"DIRECTED","_key":"62896","_from":"39512","_to":"39511"} +{"$label":"DIRECTED","_key":"62903","_from":"39515","_to":"39513"} +{"$label":"ACTS_IN","name":"Murray","type":"Role","_key":"62902","_from":"39514","_to":"39513"} +{"$label":"DIRECTED","_key":"62909","_from":"39518","_to":"39516"} +{"$label":"ACTS_IN","name":"Tanya Mousekewitz","type":"Role","_key":"62907","_from":"39517","_to":"39516"} +{"$label":"DIRECTED","_key":"62915","_from":"39520","_to":"39519"} +{"$label":"DIRECTED","_key":"62916","_from":"39522","_to":"39521"} +{"$label":"ACTS_IN","name":"General Fan Yuqi","type":"Role","_key":"62941","_from":"39529","_to":"39526"} +{"$label":"ACTS_IN","name":"Dan, Prince of Yan","type":"Role","_key":"62940","_from":"39528","_to":"39526"} +{"$label":"ACTS_IN","name":"Jing Ke","type":"Role","_key":"62939","_from":"39527","_to":"39526"} +{"$label":"ACTS_IN","name":"Cao Cao","type":"Role","_key":"104226","_from":"39527","_to":"61317"} +{"$label":"ACTS_IN","name":"Duan Xiaolou (segment \"Shitou\")","type":"Role","_key":"67180","_from":"39527","_to":"41446"} +{"$label":"ACTS_IN","name":"Yingying","type":"Role","_key":"62954","_from":"39535","_to":"39531"} +{"$label":"ACTS_IN","name":"Ling","type":"Role","_key":"62953","_from":"39534","_to":"39531"} +{"$label":"ACTS_IN","name":"Dr. Wah","type":"Role","_key":"62952","_from":"39533","_to":"39531"} +{"$label":"ACTS_IN","name":"Wong Kar Mun","type":"Role","_key":"62951","_from":"39532","_to":"39531"} +{"$label":"ACTS_IN","name":"Tsui Ting-Yin","type":"Role","_key":"94325","_from":"39532","_to":"55545"} +{"$label":"ACTS_IN","name":"Officer James Lam, INTERPOL","type":"Role","_key":"117603","_from":"39533","_to":"69139"} +{"$label":"ACTS_IN","name":"Lawrence","type":"Role","_key":"94326","_from":"39533","_to":"55545"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"62963","_from":"39538","_to":"39537"} +{"$label":"DIRECTED","_key":"62968","_from":"39540","_to":"39539"} +{"$label":"ACTS_IN","name":"Middle Frank","type":"Role","_key":"62992","_from":"39548","_to":"39545"} +{"$label":"ACTS_IN","name":"Older Frank","type":"Role","_key":"62991","_from":"39547","_to":"39545"} +{"$label":"ACTS_IN","name":"Young Frank","type":"Role","_key":"62990","_from":"39546","_to":"39545"} +{"$label":"ACTS_IN","name":"Frankie Browne","type":"Role","_key":"104752","_from":"39548","_to":"61625"} +{"$label":"ACTS_IN","name":"Lesra Martin","type":"Role","_key":"63013","_from":"39552","_to":"39551"} +{"$label":"ACTS_IN","name":"Darius","type":"Role","_key":"93446","_from":"39552","_to":"55021"} +{"$label":"ACTS_IN","name":"Lt. Lamar T. Archer","type":"Role","_key":"64350","_from":"39552","_to":"40107"} +{"$label":"ACTS_IN","name":"Ir\u00e8ne","type":"Role","_key":"63021","_from":"39556","_to":"39553"} +{"$label":"ACTS_IN","name":"Takis","type":"Role","_key":"63020","_from":"39555","_to":"39553"} +{"$label":"ACTS_IN","name":"Ad\u00e8le","type":"Role","_key":"63018","_from":"39554","_to":"39553"} +{"$label":"ACTS_IN","name":"Housekeeper","type":"Role","_key":"63039","_from":"39563","_to":"39559"} +{"$label":"ACTS_IN","name":"The Master","type":"Role","_key":"63038","_from":"39562","_to":"39559"} +{"$label":"ACTS_IN","name":"Zhuoyan","type":"Role","_key":"63037","_from":"39561","_to":"39559"} +{"$label":"ACTS_IN","name":"Meishan","type":"Role","_key":"63036","_from":"39560","_to":"39559"} +{"$label":"ACTS_IN","name":"Robyn Sweeney","type":"Role","_key":"63044","_from":"39565","_to":"39564"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"100199","_from":"39565","_to":"59099"} +{"$label":"ACTS_IN","name":"Lily Dougherty","type":"Role","_key":"73012","_from":"39565","_to":"43939"} +{"$label":"ACTS_IN","name":"Moseby's Secretary","type":"Role","_key":"63051","_from":"39568","_to":"39566"} +{"$label":"ACTS_IN","name":"Becky Metcalf","type":"Role","_key":"63050","_from":"39567","_to":"39566"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"119703","_from":"39567","_to":"70306"} +{"$label":"ACTS_IN","name":"Lois Lane","type":"Role","_key":"111020","_from":"39567","_to":"65577"} +{"$label":"ACTS_IN","name":"Andrea Beaumont","type":"Role","_key":"102468","_from":"39567","_to":"60297"} +{"$label":"ACTS_IN","name":"Susan Barnes","type":"Role","_key":"67731","_from":"39567","_to":"41647"} +{"$label":"ACTS_IN","name":"Kees Flodder","type":"Role","_key":"63058","_from":"39570","_to":"39569"} +{"$label":"ACTS_IN","name":"Tochter Kees","type":"Role","_key":"64156","_from":"39570","_to":"40034"} +{"$label":"ACTS_IN","name":"Shirley Hastings","type":"Role","_key":"63065","_from":"39573","_to":"39571"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"63063","_from":"39572","_to":"39571"} +{"$label":"ACTS_IN","name":"Jo Hoffa","type":"Role","_key":"63073","_from":"39575","_to":"39574"} +{"$label":"ACTS_IN","name":"Celia Kirby","type":"Role","_key":"63079","_from":"39578","_to":"39576"} +{"$label":"ACTS_IN","name":"Dick Dodge","type":"Role","_key":"63076","_from":"39577","_to":"39576"} +{"$label":"ACTS_IN","name":"Walter Warner","type":"Role","_key":"93453","_from":"39577","_to":"55025"} +{"$label":"ACTS_IN","name":"Coach Jack Reilly","type":"Role","_key":"63096","_from":"39577","_to":"39586"} +{"$label":"ACTS_IN","name":"Penelope Marsh","type":"Role","_key":"98906","_from":"39578","_to":"58276"} +{"$label":"ACTS_IN","name":"Dr. Corrina Devonshire","type":"Role","_key":"72462","_from":"39578","_to":"43727"} +{"$label":"DIRECTED","_key":"63087","_from":"39583","_to":"39579"} +{"$label":"ACTS_IN","name":"Sonny Jim","type":"Role","_key":"63085","_from":"39582","_to":"39579"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"63084","_from":"39581","_to":"39579"} +{"$label":"ACTS_IN","name":"Davey","type":"Role","_key":"63082","_from":"39580","_to":"39579"} +{"$label":"ACTS_IN","name":"Dr. Hargreaves","type":"Role","_key":"114496","_from":"39581","_to":"67443"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"104823","_from":"39581","_to":"61676"} +{"$label":"DIRECTED","_key":"96361","_from":"39583","_to":"56600"} +{"$label":"DIRECTED","_key":"90649","_from":"39583","_to":"53521"} +{"$label":"ACTS_IN","name":"Bree Anderson","type":"Role","_key":"63092","_from":"39585","_to":"39584"} +{"$label":"ACTS_IN","name":"Greg Goldberg","type":"Role","_key":"63100","_from":"39588","_to":"39586"} +{"$label":"ACTS_IN","name":"Casey Conway","type":"Role","_key":"63097","_from":"39587","_to":"39586"} +{"$label":"ACTS_IN","name":"Casey Conway","type":"Role","_key":"65017","_from":"39587","_to":"40406"} +{"$label":"ACTS_IN","name":"Greg Goldberg","type":"Role","_key":"68248","_from":"39588","_to":"41905"} +{"$label":"ACTS_IN","name":"Greg \"Goldie\" Goldberg","type":"Role","_key":"65021","_from":"39588","_to":"40406"} +{"$label":"ACTS_IN","name":"Albrecht Ritter Mertz v. Quirnheim","type":"Role","_key":"63130","_from":"39597","_to":"39591"} +{"$label":"ACTS_IN","name":"Major Otto Remer","type":"Role","_key":"63129","_from":"39596","_to":"39591"} +{"$label":"ACTS_IN","name":"General der Infanterie Friedrich Olbricht","type":"Role","_key":"63128","_from":"39595","_to":"39591"} +{"$label":"ACTS_IN","name":"Sekret\u00e4rin Alix von Winterfeldt","type":"Role","_key":"63127","_from":"39594","_to":"39591"} +{"$label":"ACTS_IN","name":"Deliah, 2. Sekret\u00e4rin Stauffenberg","type":"Role","_key":"63126","_from":"39593","_to":"39591"} +{"$label":"ACTS_IN","name":"Oberfeldwebel Kolbe","type":"Role","_key":"63124","_from":"39592","_to":"39591"} +{"$label":"DIRECTED","_key":"63139","_from":"39599","_to":"39598"} +{"$label":"ACTS_IN","name":"Willi M\u00fcller","type":"Role","_key":"63145","_from":"39602","_to":"39600"} +{"$label":"ACTS_IN","name":"Evey","type":"Role","_key":"63144","_from":"39601","_to":"39600"} +{"$label":"ACTS_IN","name":"Stammkunde 3","type":"Role","_key":"63167","_from":"39623","_to":"39603"} +{"$label":"ACTS_IN","name":"Stammkunde 1","type":"Role","_key":"63166","_from":"39622","_to":"39603"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"63165","_from":"39621","_to":"39603"} +{"$label":"ACTS_IN","name":"Stammkunde 2","type":"Role","_key":"63164","_from":"39620","_to":"39603"} +{"$label":"ACTS_IN","name":"K\u00fcnstlerin","type":"Role","_key":"63163","_from":"39619","_to":"39603"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"63162","_from":"39618","_to":"39603"} +{"$label":"ACTS_IN","name":"Momo","type":"Role","_key":"63161","_from":"39617","_to":"39603"} +{"$label":"ACTS_IN","name":"Autofahrer","type":"Role","_key":"63160","_from":"39616","_to":"39603"} +{"$label":"ACTS_IN","name":"Sheila","type":"Role","_key":"63159","_from":"39615","_to":"39603"} +{"$label":"ACTS_IN","name":"Arzt","type":"Role","_key":"63158","_from":"39614","_to":"39603"} +{"$label":"ACTS_IN","name":"Apothekerin","type":"Role","_key":"63157","_from":"39613","_to":"39603"} +{"$label":"ACTS_IN","name":"\u00c4rztin","type":"Role","_key":"63156","_from":"39612","_to":"39603"} +{"$label":"ACTS_IN","name":"Geigenspieler","type":"Role","_key":"63155","_from":"39611","_to":"39603"} +{"$label":"ACTS_IN","name":"Mila","type":"Role","_key":"63154","_from":"39610","_to":"39603"} +{"$label":"ACTS_IN","name":"Junger Mann","type":"Role","_key":"63153","_from":"39609","_to":"39603"} +{"$label":"ACTS_IN","name":"Stefan","type":"Role","_key":"63152","_from":"39608","_to":"39603"} +{"$label":"ACTS_IN","name":"Fredi","type":"Role","_key":"63151","_from":"39607","_to":"39603"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"63150","_from":"39606","_to":"39603"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"63149","_from":"39605","_to":"39603"} +{"$label":"DIRECTED","_key":"63147","_from":"39604","_to":"39603"} +{"$label":"ACTS_IN","name":"Lebrac","type":"Role","_key":"63173","_from":"39626","_to":"39624"} +{"$label":"ACTS_IN","name":"L'Aztec","type":"Role","_key":"63172","_from":"39625","_to":"39624"} +{"$label":"ACTS_IN","name":"Susa","type":"Role","_key":"63179","_from":"39628","_to":"39627"} +{"$label":"ACTS_IN","name":"Vivian Emery","type":"Role","_key":"63184","_from":"39630","_to":"39629"} +{"$label":"ACTS_IN","name":"Nana Louise Hanlon","type":"Role","_key":"115188","_from":"39630","_to":"67837"} +{"$label":"ACTS_IN","name":"Aryan Brotherhood inmate","type":"Role","_key":"63215","_from":"39643","_to":"39632"} +{"$label":"ACTS_IN","name":"Monk's bikini babe #2","type":"Role","_key":"63213","_from":"39642","_to":"39632"} +{"$label":"ACTS_IN","name":"Server at party","type":"Role","_key":"63212","_from":"39641","_to":"39632"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"63211","_from":"39640","_to":"39632"} +{"$label":"ACTS_IN","name":"Monk's Boat Captain","type":"Role","_key":"63209","_from":"39639","_to":"39632"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"63208","_from":"39638","_to":"39632"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"63207","_from":"39637","_to":"39632"} +{"$label":"ACTS_IN","name":"Felipe","type":"Role","_key":"63206","_from":"39636","_to":"39632"} +{"$label":"ACTS_IN","name":"Surfer Girl","type":"Role","_key":"63202","_from":"39635","_to":"39632"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"63201","_from":"39634","_to":"39632"} +{"$label":"ACTS_IN","name":"Drug dealer","type":"Role","_key":"63200","_from":"39633","_to":"39632"} +{"$label":"ACTS_IN","name":"Male Customer","type":"Role","_key":"97614","_from":"39633","_to":"57466"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"103969","_from":"39634","_to":"61156"} +{"$label":"DIRECTED","_key":"63229","_from":"39649","_to":"39644"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"63226","_from":"39648","_to":"39644"} +{"$label":"ACTS_IN","name":"Mrs. Pearly","type":"Role","_key":"63224","_from":"39647","_to":"39644"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"63223","_from":"39646","_to":"39644"} +{"$label":"ACTS_IN","name":"Uncle Elroy","type":"Role","_key":"63220","_from":"39645","_to":"39644"} +{"$label":"ACTS_IN","name":"Uncle Elroy","type":"Role","_key":"63516","_from":"39645","_to":"39764"} +{"$label":"ACTS_IN","name":"Giselle","type":"Role","_key":"90856","_from":"39646","_to":"53609"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"63231","_from":"39651","_to":"39650"} +{"$label":"ACTS_IN","name":"Young Dade Murphy \/ 'Zero Cool'","type":"Role","_key":"63256","_from":"39659","_to":"39652"} +{"$label":"ACTS_IN","name":"S.S. Agent, Seattle","type":"Role","_key":"63255","_from":"39658","_to":"39652"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"63254","_from":"39657","_to":"39652"} +{"$label":"ACTS_IN","name":"Duke Ellingson","type":"Role","_key":"63253","_from":"39656","_to":"39652"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"63252","_from":"39655","_to":"39652"} +{"$label":"ACTS_IN","name":"Razor","type":"Role","_key":"63251","_from":"39654","_to":"39652"} +{"$label":"ACTS_IN","name":"Blade","type":"Role","_key":"63250","_from":"39653","_to":"39652"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"63275","_from":"39668","_to":"39660"} +{"$label":"ACTS_IN","name":"Chris Munson","type":"Role","_key":"63274","_from":"39667","_to":"39660"} +{"$label":"ACTS_IN","name":"Jake Cronin","type":"Role","_key":"63272","_from":"39666","_to":"39660"} +{"$label":"ACTS_IN","name":"Committee Chairman","type":"Role","_key":"63271","_from":"39665","_to":"39660"} +{"$label":"ACTS_IN","name":"Shelley","type":"Role","_key":"63270","_from":"39664","_to":"39660"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"63269","_from":"39663","_to":"39660"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"63266","_from":"39662","_to":"39660"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"63259","_from":"39661","_to":"39660"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"107494","_from":"39661","_to":"63424"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"121576","_from":"39665","_to":"71431"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"72406","_from":"39665","_to":"43713"} +{"$label":"ACTS_IN","name":"Daniel Crawford","type":"Role","_key":"63297","_from":"39678","_to":"39669"} +{"$label":"ACTS_IN","name":"Amy Lone","type":"Role","_key":"63296","_from":"39677","_to":"39669"} +{"$label":"ACTS_IN","name":"Ana Chang","type":"Role","_key":"63293","_from":"39676","_to":"39669"} +{"$label":"ACTS_IN","name":"Diane Lone","type":"Role","_key":"63292","_from":"39675","_to":"39669"} +{"$label":"ACTS_IN","name":"Wu Ti","type":"Role","_key":"63291","_from":"39674","_to":"39669"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"63289","_from":"39673","_to":"39669"} +{"$label":"ACTS_IN","name":"Special Agent Wick","type":"Role","_key":"63288","_from":"39672","_to":"39669"} +{"$label":"ACTS_IN","name":"Jenny Crawford","type":"Role","_key":"63286","_from":"39671","_to":"39669"} +{"$label":"DIRECTED","_key":"63277","_from":"39670","_to":"39669"} +{"$label":"ACTS_IN","name":"Present","type":"Role","_key":"109132","_from":"39671","_to":"64473"} +{"$label":"ACTS_IN","name":"Seth","type":"Role","_key":"97704","_from":"39672","_to":"57531"} +{"$label":"ACTS_IN","name":"Ming","type":"Role","_key":"93086","_from":"39675","_to":"54872"} +{"$label":"ACTS_IN","name":"Vincent King","type":"Role","_key":"63318","_from":"39695","_to":"39679"} +{"$label":"ACTS_IN","name":"Dismembered Hunter","type":"Role","_key":"63317","_from":"39694","_to":"39679"} +{"$label":"ACTS_IN","name":"Tatooed Leg Pumper","type":"Role","_key":"63316","_from":"39693","_to":"39679"} +{"$label":"ACTS_IN","name":"Hot Coed","type":"Role","_key":"63315","_from":"39692","_to":"39679"} +{"$label":"ACTS_IN","name":"Samantha, Tim's girlfriend","type":"Role","_key":"63314","_from":"39691","_to":"39679"} +{"$label":"ACTS_IN","name":"Maddy's Tough Girlfriend","type":"Role","_key":"63313","_from":"39690","_to":"39679"} +{"$label":"ACTS_IN","name":"Vincent's Father","type":"Role","_key":"63312","_from":"39689","_to":"39679"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"63311","_from":"39688","_to":"39679"} +{"$label":"ACTS_IN","name":"Mr. Argento","type":"Role","_key":"63310","_from":"39687","_to":"39679"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"63309","_from":"39686","_to":"39679"} +{"$label":"ACTS_IN","name":"'Q'","type":"Role","_key":"63305","_from":"39685","_to":"39679"} +{"$label":"ACTS_IN","name":"Maddy Roth","type":"Role","_key":"63304","_from":"39684","_to":"39679"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"63303","_from":"39683","_to":"39679"} +{"$label":"ACTS_IN","name":"Emily Longley","type":"Role","_key":"63300","_from":"39682","_to":"39679"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"63299","_from":"39681","_to":"39679"} +{"$label":"DIRECTED","_key":"63298","_from":"39680","_to":"39679"} +{"$label":"ACTS_IN","name":"Eric Yorkie","type":"Role","_key":"115499","_from":"39683","_to":"67997"} +{"$label":"ACTS_IN","name":"Yong Kim","type":"Role","_key":"105045","_from":"39683","_to":"61815"} +{"$label":"ACTS_IN","name":"Louisa van der Luyden","type":"Role","_key":"63349","_from":"39700","_to":"39699"} +{"$label":"ACTS_IN","name":"Mrs. Hallet","type":"Role","_key":"121626","_from":"39700","_to":"71454"} +{"$label":"ACTS_IN","name":"Jeanne Star","type":"Role","_key":"114096","_from":"39700","_to":"67196"} +{"$label":"ACTS_IN","name":"Belle","type":"Role","_key":"67491","_from":"39700","_to":"41566"} +{"$label":"DIRECTED","_key":"63357","_from":"39704","_to":"39701"} +{"$label":"ACTS_IN","name":"Belle","type":"Role","_key":"63356","_from":"39703","_to":"39701"} +{"$label":"ACTS_IN","name":"Ghost of Christmas Yet to Come","type":"Role","_key":"63355","_from":"39702","_to":"39701"} +{"$label":"DIRECTED","_key":"97358","_from":"39704","_to":"57329"} +{"$label":"DIRECTED","_key":"66408","_from":"39704","_to":"41066"} +{"$label":"ACTS_IN","name":"Emily Newton","type":"Role","_key":"63362","_from":"39708","_to":"39705"} +{"$label":"ACTS_IN","name":"Ted Newton","type":"Role","_key":"63361","_from":"39707","_to":"39705"} +{"$label":"ACTS_IN","name":"Ryce Newton","type":"Role","_key":"63360","_from":"39706","_to":"39705"} +{"$label":"ACTS_IN","name":"Ryce Newton","type":"Role","_key":"72092","_from":"39706","_to":"43579"} +{"$label":"DIRECTED","_key":"63369","_from":"39711","_to":"39709"} +{"$label":"ACTS_IN","name":"Max Dennison","type":"Role","_key":"63367","_from":"39710","_to":"39709"} +{"$label":"DIRECTED","_key":"103913","_from":"39711","_to":"61125"} +{"$label":"DIRECTED","_key":"95677","_from":"39711","_to":"56280"} +{"$label":"DIRECTED","_key":"95288","_from":"39711","_to":"56061"} +{"$label":"DIRECTED","_key":"72558","_from":"39711","_to":"43759"} +{"$label":"DIRECTED","_key":"66913","_from":"39711","_to":"41309"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"95291","_from":"39711","_to":"56061"} +{"$label":"DIRECTED","_key":"63381","_from":"39715","_to":"39714"} +{"$label":"ACTS_IN","name":"Jonny Briggs","type":"Role","_key":"63391","_from":"39718","_to":"39717"} +{"$label":"DIRECTED","_key":"63406","_from":"39724","_to":"39720"} +{"$label":"DIRECTED","_key":"63405","_from":"39723","_to":"39720"} +{"$label":"ACTS_IN","name":"Red John","type":"Role","_key":"63404","_from":"39722","_to":"39720"} +{"$label":"ACTS_IN","name":"Lady Catherine","type":"Role","_key":"63403","_from":"39721","_to":"39720"} +{"$label":"ACTS_IN","name":"Ariki-mau","type":"Role","_key":"63416","_from":"39728","_to":"39726"} +{"$label":"ACTS_IN","name":"Make","type":"Role","_key":"63414","_from":"39727","_to":"39726"} +{"$label":"ACTS_IN","name":"Markie","type":"Role","_key":"117719","_from":"39727","_to":"69199"} +{"$label":"ACTS_IN","name":"Bob Morales","type":"Role","_key":"109670","_from":"39727","_to":"64770"} +{"$label":"ACTS_IN","name":"Paco Moreno","type":"Role","_key":"95561","_from":"39727","_to":"56195"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"92564","_from":"39727","_to":"54641"} +{"$label":"ACTS_IN","name":"Sgt. Stern","type":"Role","_key":"89733","_from":"39727","_to":"53116"} +{"$label":"ACTS_IN","name":"Jia-Jen","type":"Role","_key":"63433","_from":"39734","_to":"39731"} +{"$label":"ACTS_IN","name":"Jia-Chien","type":"Role","_key":"63432","_from":"39733","_to":"39731"} +{"$label":"ACTS_IN","name":"Jia-Ning","type":"Role","_key":"63431","_from":"39732","_to":"39731"} +{"$label":"ACTS_IN","name":"Siu Yiu-Yiu","type":"Role","_key":"120248","_from":"39733","_to":"70612"} +{"$label":"ACTS_IN","name":"Der junge Polizist","type":"Role","_key":"63445","_from":"39742","_to":"39741"} +{"$label":"ACTS_IN","name":"Susan Hollander","type":"Role","_key":"63458","_from":"39746","_to":"39745"} +{"$label":"ACTS_IN","name":"Darius","type":"Role","_key":"63474","_from":"39754","_to":"39747"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"63473","_from":"39753","_to":"39747"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"63472","_from":"39752","_to":"39747"} +{"$label":"ACTS_IN","name":"Dicker Henry","type":"Role","_key":"63470","_from":"39751","_to":"39747"} +{"$label":"ACTS_IN","name":"Gustav","type":"Role","_key":"63469","_from":"39750","_to":"39747"} +{"$label":"ACTS_IN","name":"Edmund","type":"Role","_key":"63468","_from":"39749","_to":"39747"} +{"$label":"DIRECTED","_key":"63465","_from":"39748","_to":"39747"} +{"$label":"ACTS_IN","name":"Kubak","type":"Role","_key":"91386","_from":"39754","_to":"53902"} +{"$label":"ACTS_IN","name":"Jacek Lazar","type":"Role","_key":"65467","_from":"39754","_to":"40582"} +{"$label":"DIRECTED","_key":"63483","_from":"39756","_to":"39755"} +{"$label":"DIRECTED","_key":"66930","_from":"39756","_to":"41321"} +{"$label":"DIRECTED","_key":"63507","_from":"39762","_to":"39761"} +{"$label":"ACTS_IN","name":"Tyrone","type":"Role","_key":"63527","_from":"39769","_to":"39764"} +{"$label":"ACTS_IN","name":"Baby D'","type":"Role","_key":"63525","_from":"39768","_to":"39764"} +{"$label":"ACTS_IN","name":"Suga","type":"Role","_key":"63522","_from":"39767","_to":"39764"} +{"$label":"ACTS_IN","name":"Karla","type":"Role","_key":"63520","_from":"39766","_to":"39764"} +{"$label":"ACTS_IN","name":"Baby Joker","type":"Role","_key":"63519","_from":"39765","_to":"39764"} +{"$label":"ACTS_IN","name":"Female Co-Worker #1","type":"Role","_key":"109436","_from":"39767","_to":"64647"} +{"$label":"DIRECTED","_key":"63534","_from":"39771","_to":"39770"} +{"$label":"ACTS_IN","name":"Novice Monk Mansel","type":"Role","_key":"63538","_from":"39774","_to":"39772"} +{"$label":"ACTS_IN","name":"Lian","type":"Role","_key":"63537","_from":"39773","_to":"39772"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"63543","_from":"39777","_to":"39775"} +{"$label":"DIRECTED","_key":"63540","_from":"39776","_to":"39775"} +{"$label":"DIRECTED","_key":"93443","_from":"39776","_to":"55020"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"100846","_from":"39777","_to":"59452"} +{"$label":"ACTS_IN","name":"Chloe Simon","type":"Role","_key":"63579","_from":"39785","_to":"39784"} +{"$label":"ACTS_IN","name":"Kerry","type":"Role","_key":"104429","_from":"39785","_to":"61430"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"63591","_from":"39789","_to":"39786"} +{"$label":"ACTS_IN","name":"Mrs Nice","type":"Role","_key":"63588","_from":"39788","_to":"39786"} +{"$label":"ACTS_IN","name":"Gina Carbonara","type":"Role","_key":"63585","_from":"39787","_to":"39786"} +{"$label":"ACTS_IN","name":"Henry Austen","type":"Role","_key":"114876","_from":"39789","_to":"67661"} +{"$label":"ACTS_IN","name":"Hector Grimm","type":"Role","_key":"63603","_from":"39795","_to":"39790"} +{"$label":"ACTS_IN","name":"Travis Colt","type":"Role","_key":"63602","_from":"39794","_to":"39790"} +{"$label":"ACTS_IN","name":"Lists","type":"Role","_key":"63601","_from":"39793","_to":"39790"} +{"$label":"ACTS_IN","name":"Guard Ulrich","type":"Role","_key":"63600","_from":"39792","_to":"39790"} +{"$label":"ACTS_IN","name":"Elizabeth Case","type":"Role","_key":"63597","_from":"39791","_to":"39790"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"92618","_from":"39793","_to":"54673"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"110511","_from":"39795","_to":"65293"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"64432","_from":"39795","_to":"40148"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"63612","_from":"39799","_to":"39797"} +{"$label":"ACTS_IN","name":"Diane Hopper","type":"Role","_key":"63611","_from":"39798","_to":"39797"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"63619","_from":"39801","_to":"39800"} +{"$label":"DIRECTED","_key":"63628","_from":"39805","_to":"39802"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"63627","_from":"39804","_to":"39802"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"63623","_from":"39803","_to":"39802"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"118866","_from":"39803","_to":"69864"} +{"$label":"DIRECTED","_key":"118869","_from":"39805","_to":"69864"} +{"$label":"DIRECTED","_key":"63634","_from":"39809","_to":"39806"} +{"$label":"DIRECTED","_key":"63633","_from":"39808","_to":"39806"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"63632","_from":"39807","_to":"39806"} +{"$label":"DIRECTED","_key":"109498","_from":"39808","_to":"64679"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"63645","_from":"39818","_to":"39810"} +{"$label":"ACTS_IN","name":"Masen","type":"Role","_key":"63644","_from":"39817","_to":"39810"} +{"$label":"ACTS_IN","name":"Bannerman","type":"Role","_key":"63643","_from":"39816","_to":"39810"} +{"$label":"ACTS_IN","name":"Gary Pervier","type":"Role","_key":"63642","_from":"39815","_to":"39810"} +{"$label":"ACTS_IN","name":"Brett Camber (as Billy Jacoby)","type":"Role","_key":"63641","_from":"39814","_to":"39810"} +{"$label":"ACTS_IN","name":"Charity Camber","type":"Role","_key":"63640","_from":"39813","_to":"39810"} +{"$label":"ACTS_IN","name":"Steve Kemp","type":"Role","_key":"63638","_from":"39812","_to":"39810"} +{"$label":"ACTS_IN","name":"Tad Trenton","type":"Role","_key":"63636","_from":"39811","_to":"39810"} +{"$label":"ACTS_IN","name":"R. William 'Bill' Neill","type":"Role","_key":"68984","_from":"39812","_to":"42233"} +{"$label":"ACTS_IN","name":"Young Tony 'Mouth' Donato","type":"Role","_key":"118938","_from":"39814","_to":"69895"} +{"$label":"ACTS_IN","name":"George Harshaw","type":"Role","_key":"102184","_from":"39817","_to":"60132"} +{"$label":"DIRECTED","_key":"63652","_from":"39820","_to":"39819"} +{"$label":"ACTS_IN","name":"Tadokoro","type":"Role","_key":"63669","_from":"39826","_to":"39824"} +{"$label":"ACTS_IN","name":"Mima Kirigoe","type":"Role","_key":"63668","_from":"39825","_to":"39824"} +{"$label":"ACTS_IN","name":"Monou Kotori","type":"Role","_key":"111107","_from":"39825","_to":"65622"} +{"$label":"ACTS_IN","name":"Commander Lance","type":"Role","_key":"97941","_from":"39826","_to":"57677"} +{"$label":"DIRECTED","_key":"63681","_from":"39829","_to":"39828"} +{"$label":"DIRECTED","_key":"109981","_from":"39829","_to":"64985"} +{"$label":"DIRECTED","_key":"63692","_from":"39832","_to":"39831"} +{"$label":"DIRECTED","_key":"63707","_from":"39836","_to":"39835"} +{"$label":"DIRECTED","_key":"64040","_from":"39836","_to":"39973"} +{"$label":"ACTS_IN","name":"Gloria Norstadt","type":"Role","_key":"63712","_from":"39838","_to":"39837"} +{"$label":"ACTS_IN","name":"Betty Armstrong","type":"Role","_key":"117703","_from":"39838","_to":"69183"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"97027","_from":"39838","_to":"57064"} +{"$label":"DIRECTED","_key":"63728","_from":"39848","_to":"39839"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"63726","_from":"39847","_to":"39839"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"63725","_from":"39846","_to":"39839"} +{"$label":"ACTS_IN","name":"Rosita, Flamencolehrerin","type":"Role","_key":"63723","_from":"39845","_to":"39839"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"63722","_from":"39844","_to":"39839"} +{"$label":"ACTS_IN","name":"Tash","type":"Role","_key":"63721","_from":"39843","_to":"39839"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"63720","_from":"39842","_to":"39839"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"63717","_from":"39841","_to":"39839"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"63715","_from":"39840","_to":"39839"} +{"$label":"ACTS_IN","name":"Harris Bigg","type":"Role","_key":"114875","_from":"39841","_to":"67661"} +{"$label":"DIRECTED","_key":"89614","_from":"39848","_to":"53037"} +{"$label":"DIRECTED","_key":"68214","_from":"39848","_to":"41888"} +{"$label":"DIRECTED","_key":"67931","_from":"39848","_to":"41735"} +{"$label":"ACTS_IN","name":"Salih","type":"Role","_key":"63738","_from":"39853","_to":"39849"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"63737","_from":"39852","_to":"39849"} +{"$label":"ACTS_IN","name":"Ismail","type":"Role","_key":"63735","_from":"39851","_to":"39849"} +{"$label":"DIRECTED","_key":"63729","_from":"39850","_to":"39849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"63745","_from":"39859","_to":"39854"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"63744","_from":"39858","_to":"39854"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"63743","_from":"39857","_to":"39854"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"63741","_from":"39856","_to":"39854"} +{"$label":"DIRECTED","_key":"63740","_from":"39855","_to":"39854"} +{"$label":"DIRECTED","_key":"63746","_from":"39861","_to":"39860"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"63751","_from":"39866","_to":"39862"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"63750","_from":"39865","_to":"39862"} +{"$label":"ACTS_IN","name":"Gilles","type":"Role","_key":"63748","_from":"39864","_to":"39862"} +{"$label":"DIRECTED","_key":"63747","_from":"39863","_to":"39862"} +{"$label":"ACTS_IN","name":"Alberta Leonard","type":"Role","_key":"63757","_from":"39868","_to":"39867"} +{"$label":"ACTS_IN","name":"Ariel","type":"Role","_key":"63762","_from":"39870","_to":"39869"} +{"$label":"ACTS_IN","name":"Himself \/ Narrator","type":"Role","_key":"63779","_from":"39882","_to":"39871"} +{"$label":"ACTS_IN","name":"General","type":"Role","_key":"63775","_from":"39881","_to":"39871"} +{"$label":"ACTS_IN","name":"Ruler","type":"Role","_key":"63774","_from":"39880","_to":"39871"} +{"$label":"ACTS_IN","name":"Tanna","type":"Role","_key":"63773","_from":"39879","_to":"39871"} +{"$label":"ACTS_IN","name":"Eros","type":"Role","_key":"63772","_from":"39878","_to":"39871"} +{"$label":"ACTS_IN","name":"Inspector Clay","type":"Role","_key":"63771","_from":"39877","_to":"39871"} +{"$label":"ACTS_IN","name":"Patrolman Kelton","type":"Role","_key":"63770","_from":"39876","_to":"39871"} +{"$label":"ACTS_IN","name":"Patrolman Larry","type":"Role","_key":"63769","_from":"39875","_to":"39871"} +{"$label":"ACTS_IN","name":"Col. Tom Edwards","type":"Role","_key":"63768","_from":"39874","_to":"39871"} +{"$label":"ACTS_IN","name":"Lt. John Harper","type":"Role","_key":"63767","_from":"39873","_to":"39871"} +{"$label":"ACTS_IN","name":"Paula Trent","type":"Role","_key":"63766","_from":"39872","_to":"39871"} +{"$label":"ACTS_IN","name":"Dr. Mark Hall","type":"Role","_key":"63784","_from":"39885","_to":"39883"} +{"$label":"ACTS_IN","name":"Dr. Jeremy Stone","type":"Role","_key":"63782","_from":"39884","_to":"39883"} +{"$label":"ACTS_IN","name":"Caleb Grainger","type":"Role","_key":"94200","_from":"39884","_to":"55472"} +{"$label":"ACTS_IN","name":"Dr. Duffy","type":"Role","_key":"64782","_from":"39884","_to":"40313"} +{"$label":"ACTS_IN","name":"Father Adamsky","type":"Role","_key":"108231","_from":"39885","_to":"63963"} +{"$label":"ACTS_IN","name":"Dora (voice)","type":"Role","_key":"63791","_from":"39890","_to":"39886"} +{"$label":"ACTS_IN","name":"Muska (voice)","type":"Role","_key":"63790","_from":"39889","_to":"39886"} +{"$label":"ACTS_IN","name":"Pazu (voice)","type":"Role","_key":"63789","_from":"39888","_to":"39886"} +{"$label":"ACTS_IN","name":"Sheeta (voice)","type":"Role","_key":"63788","_from":"39887","_to":"39886"} +{"$label":"ACTS_IN","name":"Monkey D. Luffy","type":"Role","_key":"120442","_from":"39888","_to":"70752"} +{"$label":"ACTS_IN","name":"Taupin","type":"Role","_key":"63796","_from":"39892","_to":"39891"} +{"$label":"ACTS_IN","name":"Martin Thaler","type":"Role","_key":"63806","_from":"39896","_to":"39895"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"63823","_from":"39899","_to":"39898"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"63844","_from":"39904","_to":"39903"} +{"$label":"ACTS_IN","name":"Mrs. Dove","type":"Role","_key":"121702","_from":"39904","_to":"71494"} +{"$label":"ACTS_IN","name":"Mrs. Banks","type":"Role","_key":"66776","_from":"39904","_to":"41256"} +{"$label":"ACTS_IN","name":"Constable Clark","type":"Role","_key":"63870","_from":"39909","_to":"39907"} +{"$label":"ACTS_IN","name":"Dredger","type":"Role","_key":"63868","_from":"39908","_to":"39907"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"113359","_from":"39909","_to":"66775"} +{"$label":"DIRECTED","_key":"63876","_from":"39911","_to":"39910"} +{"$label":"DIRECTED","_key":"63884","_from":"39915","_to":"39912"} +{"$label":"DIRECTED","_key":"63883","_from":"39914","_to":"39912"} +{"$label":"ACTS_IN","name":"Pocahontas","type":"Role","_key":"63877","_from":"39913","_to":"39912"} +{"$label":"ACTS_IN","name":"Catori (Voice)","type":"Role","_key":"110964","_from":"39913","_to":"65540"} +{"$label":"ACTS_IN","name":"Pocahontas","type":"Role","_key":"96202","_from":"39913","_to":"56549"} +{"$label":"DIRECTED","_key":"68088","_from":"39914","_to":"41826"} +{"$label":"ACTS_IN","name":"Dr. Miranda's Son","type":"Role","_key":"63890","_from":"39919","_to":"39916"} +{"$label":"ACTS_IN","name":"Dr. Miranda's Son","type":"Role","_key":"63889","_from":"39918","_to":"39916"} +{"$label":"ACTS_IN","name":"Dr. Miranda's Wife","type":"Role","_key":"63888","_from":"39917","_to":"39916"} +{"$label":"DIRECTED","_key":"63896","_from":"39921","_to":"39920"} +{"$label":"ACTS_IN","name":"Mituba","type":"Role","_key":"63900","_from":"39923","_to":"39922"} +{"$label":"DIRECTED","_key":"63916","_from":"39927","_to":"39925"} +{"$label":"ACTS_IN","name":"General Rancor","type":"Role","_key":"63915","_from":"39926","_to":"39925"} +{"$label":"ACTS_IN","name":"Will Stockdale","type":"Role","_key":"121618","_from":"39926","_to":"71450"} +{"$label":"ACTS_IN","name":"John Wallace","type":"Role","_key":"120119","_from":"39926","_to":"70546"} +{"$label":"ACTS_IN","name":"Colonel Ticonderoga","type":"Role","_key":"118463","_from":"39926","_to":"69644"} +{"$label":"ACTS_IN","name":"Melchior","type":"Role","_key":"95651","_from":"39926","_to":"56254"} +{"$label":"ACTS_IN","name":"Old Joe","type":"Role","_key":"65514","_from":"39926","_to":"40608"} +{"$label":"ACTS_IN","name":"Lorna","type":"Role","_key":"63921","_from":"39930","_to":"39928"} +{"$label":"ACTS_IN","name":"Professor Simon Peach","type":"Role","_key":"63920","_from":"39929","_to":"39928"} +{"$label":"ACTS_IN","name":"Toymaker","type":"Role","_key":"71690","_from":"39929","_to":"43398"} +{"$label":"DIRECTED","_key":"63928","_from":"39933","_to":"39932"} +{"$label":"DIRECTED","_key":"116617","_from":"39933","_to":"68642"} +{"$label":"DIRECTED","_key":"115801","_from":"39933","_to":"68174"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"63931","_from":"39935","_to":"39934"} +{"$label":"ACTS_IN","name":"Montone","type":"Role","_key":"63941","_from":"39937","_to":"39936"} +{"$label":"ACTS_IN","name":"Ray Hanley","type":"Role","_key":"109659","_from":"39937","_to":"64764"} +{"$label":"ACTS_IN","name":"Reverend Foote","type":"Role","_key":"65586","_from":"39937","_to":"40642"} +{"$label":"DIRECTED","_key":"63952","_from":"39939","_to":"39938"} +{"$label":"ACTS_IN","name":"Kellner der Hotelbar","type":"Role","_key":"63951","_from":"39946","_to":"39938"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"63950","_from":"39945","_to":"39938"} +{"$label":"ACTS_IN","name":"Eglantine","type":"Role","_key":"63949","_from":"39944","_to":"39938"} +{"$label":"ACTS_IN","name":"P\u00e9n\u00e9lope","type":"Role","_key":"63948","_from":"39943","_to":"39938"} +{"$label":"ACTS_IN","name":"Caline","type":"Role","_key":"63947","_from":"39942","_to":"39938"} +{"$label":"ACTS_IN","name":"Claudio","type":"Role","_key":"63946","_from":"39941","_to":"39938"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"63945","_from":"39940","_to":"39938"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"63943","_from":"39939","_to":"39938"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"92132","_from":"39940","_to":"54359"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"66051","_from":"39940","_to":"40877"} +{"$label":"ACTS_IN","name":"Fernando de la Mesa","type":"Role","_key":"112304","_from":"39941","_to":"66304"} +{"$label":"ACTS_IN","name":"Fabrizio","type":"Role","_key":"104461","_from":"39941","_to":"61441"} +{"$label":"ACTS_IN","name":"Commissario Scialoja","type":"Role","_key":"99861","_from":"39941","_to":"58894"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"89233","_from":"39941","_to":"52837"} +{"$label":"ACTS_IN","name":"Manuella (voix)","type":"Role","_key":"118732","_from":"39942","_to":"69812"} +{"$label":"ACTS_IN","name":"Aurore","type":"Role","_key":"113379","_from":"39942","_to":"66786"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"105088","_from":"39942","_to":"61852"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"100091","_from":"39942","_to":"59039"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"63956","_from":"39948","_to":"39947"} +{"$label":"ACTS_IN","name":"Toby Walker","type":"Role","_key":"63964","_from":"39950","_to":"39949"} +{"$label":"ACTS_IN","name":"Frollo","type":"Role","_key":"63977","_from":"39953","_to":"39952"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"114293","_from":"39953","_to":"67315"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"95205","_from":"39953","_to":"56014"} +{"$label":"DIRECTED","_key":"63985","_from":"39956","_to":"39954"} +{"$label":"ACTS_IN","name":"Judah Earl","type":"Role","_key":"63984","_from":"39955","_to":"39954"} +{"$label":"ACTS_IN","name":"JPL Guard #1","type":"Role","_key":"63989","_from":"39958","_to":"39957"} +{"$label":"DIRECTED","_key":"63999","_from":"39963","_to":"39959"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63995","_from":"39962","_to":"39959"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63994","_from":"39961","_to":"39959"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"63993","_from":"39960","_to":"39959"} +{"$label":"DIRECTED","_key":"95409","_from":"39963","_to":"56118"} +{"$label":"DIRECTED","_key":"64018","_from":"39966","_to":"39965"} +{"$label":"ACTS_IN","name":"Maj. Rayner Fleming","type":"Role","_key":"64037","_from":"39971","_to":"39969"} +{"$label":"ACTS_IN","name":"Conn MacCleary","type":"Role","_key":"64035","_from":"39970","_to":"39969"} +{"$label":"ACTS_IN","name":"Oscar Grace","type":"Role","_key":"100128","_from":"39970","_to":"59059"} +{"$label":"ACTS_IN","name":"Rachel Prescott","type":"Role","_key":"113838","_from":"39971","_to":"67053"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"72608","_from":"39971","_to":"43772"} +{"$label":"DIRECTED","_key":"64042","_from":"39974","_to":"39973"} +{"$label":"DIRECTED","_key":"104770","_from":"39974","_to":"61645"} +{"$label":"DIRECTED","_key":"64050","_from":"39978","_to":"39975"} +{"$label":"ACTS_IN","name":"Pony H\u00fctchen","type":"Role","_key":"64048","_from":"39977","_to":"39975"} +{"$label":"ACTS_IN","name":"Emil Tischbein","type":"Role","_key":"64046","_from":"39976","_to":"39975"} +{"$label":"DIRECTED","_key":"64055","_from":"39981","_to":"39979"} +{"$label":"ACTS_IN","name":"Nazir Khan","type":"Role","_key":"64053","_from":"39980","_to":"39979"} +{"$label":"ACTS_IN","name":"Marlene Kosinski","type":"Role","_key":"64059","_from":"39985","_to":"39982"} +{"$label":"ACTS_IN","name":"Man 2","type":"Role","_key":"64058","_from":"39984","_to":"39982"} +{"$label":"ACTS_IN","name":"Man 1","type":"Role","_key":"64057","_from":"39983","_to":"39982"} +{"$label":"ACTS_IN","name":"Daryl Simpson","type":"Role","_key":"64081","_from":"39996","_to":"39986"} +{"$label":"ACTS_IN","name":"Carrie Reynolds","type":"Role","_key":"64080","_from":"39995","_to":"39986"} +{"$label":"ACTS_IN","name":"Teenage Runaway","type":"Role","_key":"64079","_from":"39994","_to":"39986"} +{"$label":"ACTS_IN","name":"Graham 'Gib' Gibson","type":"Role","_key":"64078","_from":"39993","_to":"39986"} +{"$label":"ACTS_IN","name":"Chuck Hayes","type":"Role","_key":"64076","_from":"39992","_to":"39986"} +{"$label":"ACTS_IN","name":"Sissy Clark","type":"Role","_key":"64075","_from":"39991","_to":"39986"} +{"$label":"ACTS_IN","name":"Gordo Hersch","type":"Role","_key":"64073","_from":"39990","_to":"39986"} +{"$label":"ACTS_IN","name":"Commander Butch O'Connell","type":"Role","_key":"64072","_from":"39989","_to":"39986"} +{"$label":"ACTS_IN","name":"Johnny Sullivan","type":"Role","_key":"64071","_from":"39988","_to":"39986"} +{"$label":"ACTS_IN","name":"Samantha Thomas","type":"Role","_key":"64069","_from":"39987","_to":"39986"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"109717","_from":"39987","_to":"64795"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"121417","_from":"39991","_to":"71338"} +{"$label":"ACTS_IN","name":"Miss Davis","type":"Role","_key":"121010","_from":"39991","_to":"71073"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"102688","_from":"39991","_to":"60412"} +{"$label":"ACTS_IN","name":"Coffee Shop Cashier","type":"Role","_key":"66134","_from":"39996","_to":"40908"} +{"$label":"ACTS_IN","name":"Jody Sawyer","type":"Role","_key":"64082","_from":"39998","_to":"39997"} +{"$label":"DIRECTED","_key":"64091","_from":"40000","_to":"39999"} +{"$label":"DIRECTED","_key":"64101","_from":"40003","_to":"40002"} +{"$label":"DIRECTED","_key":"103413","_from":"40003","_to":"60831"} +{"$label":"DIRECTED","_key":"90143","_from":"40003","_to":"53302"} +{"$label":"DIRECTED","_key":"64106","_from":"40005","_to":"40004"} +{"$label":"DIRECTED","_key":"64111","_from":"40009","_to":"40006"} +{"$label":"ACTS_IN","name":"Yonca","type":"Role","_key":"64110","_from":"40008","_to":"40006"} +{"$label":"ACTS_IN","name":"Ertan","type":"Role","_key":"64107","_from":"40007","_to":"40006"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"64115","_from":"40011","_to":"40010"} +{"$label":"DIRECTED","_key":"64122","_from":"40014","_to":"40012"} +{"$label":"DIRECTED","_key":"64121","_from":"40013","_to":"40012"} +{"$label":"DIRECTED","_key":"64130","_from":"40020","_to":"40015"} +{"$label":"ACTS_IN","name":"Peter Burroughs","type":"Role","_key":"64129","_from":"40019","_to":"40015"} +{"$label":"ACTS_IN","name":"Lieutenant Willoughby","type":"Role","_key":"64128","_from":"40018","_to":"40015"} +{"$label":"ACTS_IN","name":"General Faversham","type":"Role","_key":"64127","_from":"40017","_to":"40015"} +{"$label":"ACTS_IN","name":"Harry Faversham","type":"Role","_key":"64124","_from":"40016","_to":"40015"} +{"$label":"DIRECTED","_key":"117483","_from":"40020","_to":"69085"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"64151","_from":"40033","_to":"40021"} +{"$label":"ACTS_IN","name":"TV News Reporter","type":"Role","_key":"64150","_from":"40032","_to":"40021"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"64149","_from":"40031","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64148","_from":"40030","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64146","_from":"40029","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64145","_from":"40028","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64144","_from":"40027","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64143","_from":"40026","_to":"40021"} +{"$label":"ACTS_IN","name":"Dynamite Dealer","type":"Role","_key":"64142","_from":"40025","_to":"40021"} +{"$label":"ACTS_IN","name":"Cookie Store Customer","type":"Role","_key":"64141","_from":"40024","_to":"40021"} +{"$label":"ACTS_IN","name":"Real Estate Agent","type":"Role","_key":"64140","_from":"40023","_to":"40021"} +{"$label":"ACTS_IN","name":"Candy Salesperson","type":"Role","_key":"64133","_from":"40022","_to":"40021"} +{"$label":"DIRECTED","_key":"91132","_from":"40031","_to":"53764"} +{"$label":"DIRECTED","_key":"64169","_from":"40039","_to":"40036"} +{"$label":"ACTS_IN","name":"\u00c9lisabeth Vaillant","type":"Role","_key":"64167","_from":"40038","_to":"40036"} +{"$label":"ACTS_IN","name":"Michel Vaillant","type":"Role","_key":"64163","_from":"40037","_to":"40036"} +{"$label":"DIRECTED","_key":"64174","_from":"40042","_to":"40040"} +{"$label":"ACTS_IN","name":"Safar","type":"Role","_key":"64172","_from":"40041","_to":"40040"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"64178","_from":"40045","_to":"40043"} +{"$label":"ACTS_IN","name":"Gisa H\u00e4uptlein","type":"Role","_key":"64176","_from":"40044","_to":"40043"} +{"$label":"ACTS_IN","name":"Valerie Sharpe","type":"Role","_key":"64199","_from":"40049","_to":"40048"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"64208","_from":"40054","_to":"40050"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"64207","_from":"40053","_to":"40050"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"64206","_from":"40052","_to":"40050"} +{"$label":"ACTS_IN","name":"Elisabeth Blaine","type":"Role","_key":"64205","_from":"40051","_to":"40050"} +{"$label":"ACTS_IN","name":"Elizabeth Blaine","type":"Role","_key":"64214","_from":"40051","_to":"40055"} +{"$label":"ACTS_IN","name":"Cyborg","type":"Role","_key":"108276","_from":"40052","_to":"63995"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"105565","_from":"40052","_to":"62121"} +{"$label":"ACTS_IN","name":"JP Money","type":"Role","_key":"99045","_from":"40052","_to":"58344"} +{"$label":"ACTS_IN","name":"Derrick","type":"Role","_key":"91082","_from":"40052","_to":"53744"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"104366","_from":"40053","_to":"61395"} +{"$label":"ACTS_IN","name":"John Riegert \/ Satan","type":"Role","_key":"120387","_from":"40054","_to":"70723"} +{"$label":"ACTS_IN","name":"Walter Hankins","type":"Role","_key":"101057","_from":"40054","_to":"59551"} +{"$label":"ACTS_IN","name":"Robert Newman","type":"Role","_key":"68525","_from":"40054","_to":"42024"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"64218","_from":"40059","_to":"40055"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"64217","_from":"40058","_to":"40055"} +{"$label":"ACTS_IN","name":"Bogdan","type":"Role","_key":"64215","_from":"40057","_to":"40055"} +{"$label":"ACTS_IN","name":"Julia Hughes","type":"Role","_key":"64211","_from":"40056","_to":"40055"} +{"$label":"DIRECTED","_key":"64225","_from":"40063","_to":"40060"} +{"$label":"ACTS_IN","name":"Nili","type":"Role","_key":"64224","_from":"40062","_to":"40060"} +{"$label":"ACTS_IN","name":"Benzi \/ Benji","type":"Role","_key":"64221","_from":"40061","_to":"40060"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"90439","_from":"40061","_to":"53431"} +{"$label":"ACTS_IN","name":"Benzi","type":"Role","_key":"64248","_from":"40061","_to":"40074"} +{"$label":"ACTS_IN","name":"Benzi \/ Benji","type":"Role","_key":"64240","_from":"40061","_to":"40071"} +{"$label":"ACTS_IN","name":"Benji","type":"Role","_key":"64233","_from":"40061","_to":"40068"} +{"$label":"ACTS_IN","name":"Benji","type":"Role","_key":"64226","_from":"40061","_to":"40064"} +{"$label":"DIRECTED","_key":"95004","_from":"40063","_to":"55933"} +{"$label":"DIRECTED","_key":"64246","_from":"40063","_to":"40071"} +{"$label":"DIRECTED","_key":"64239","_from":"40063","_to":"40068"} +{"$label":"DIRECTED","_key":"64232","_from":"40063","_to":"40064"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"64231","_from":"40067","_to":"40064"} +{"$label":"ACTS_IN","name":"Bracha \/ Martha","type":"Role","_key":"64229","_from":"40066","_to":"40064"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"64227","_from":"40065","_to":"40064"} +{"$label":"ACTS_IN","name":"Martha \/ Bracha","type":"Role","_key":"64238","_from":"40066","_to":"40068"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"64237","_from":"40070","_to":"40068"} +{"$label":"ACTS_IN","name":"Doris \/ Sally","type":"Role","_key":"64236","_from":"40069","_to":"40068"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"64245","_from":"40073","_to":"40071"} +{"$label":"ACTS_IN","name":"Rina \/ Ren\u00e9","type":"Role","_key":"64243","_from":"40072","_to":"40071"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"64250","_from":"40072","_to":"40074"} +{"$label":"ACTS_IN","name":"Andy Barclay","type":"Role","_key":"64257","_from":"40076","_to":"40075"} +{"$label":"ACTS_IN","name":"Andy Barclay","type":"Role","_key":"68403","_from":"40076","_to":"41966"} +{"$label":"DIRECTED","_key":"64268","_from":"40079","_to":"40078"} +{"$label":"DIRECTED","_key":"88906","_from":"40079","_to":"52665"} +{"$label":"DIRECTED","_key":"64279","_from":"40081","_to":"40080"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"64300","_from":"40087","_to":"40082"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"64299","_from":"40086","_to":"40082"} +{"$label":"ACTS_IN","name":"Popcorn Victim","type":"Role","_key":"64298","_from":"40085","_to":"40082"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"64295","_from":"40084","_to":"40082"} +{"$label":"ACTS_IN","name":"Lakers FBI Agent","type":"Role","_key":"64293","_from":"40083","_to":"40082"} +{"$label":"ACTS_IN","name":"Andy Kewzer","type":"Role","_key":"121471","_from":"40085","_to":"71354"} +{"$label":"ACTS_IN","name":"Numbers Man","type":"Role","_key":"106792","_from":"40085","_to":"62951"} +{"$label":"ACTS_IN","name":"Capt. Ed 'Too Tall' Freeman","type":"Role","_key":"64318","_from":"40092","_to":"40088"} +{"$label":"ACTS_IN","name":"Sp4 Russell Adams","type":"Role","_key":"64317","_from":"40091","_to":"40088"} +{"$label":"ACTS_IN","name":"Sp4 Robert Ouellette","type":"Role","_key":"64314","_from":"40090","_to":"40088"} +{"$label":"ACTS_IN","name":"1st Lt. Charlie Hastings","type":"Role","_key":"64312","_from":"40089","_to":"40088"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"110659","_from":"40089","_to":"65370"} +{"$label":"DIRECTED","_key":"101122","_from":"40091","_to":"59581"} +{"$label":"ACTS_IN","name":"Ryan Wenger","type":"Role","_key":"64342","_from":"40106","_to":"40093"} +{"$label":"ACTS_IN","name":"Mrs. Peterson","type":"Role","_key":"64341","_from":"40105","_to":"40093"} +{"$label":"ACTS_IN","name":"Mr. Peterson","type":"Role","_key":"64340","_from":"40104","_to":"40093"} +{"$label":"ACTS_IN","name":"Mr. Ruether","type":"Role","_key":"64339","_from":"40103","_to":"40093"} +{"$label":"ACTS_IN","name":"Dr. Salinger","type":"Role","_key":"64338","_from":"40102","_to":"40093"} +{"$label":"ACTS_IN","name":"Hunter","type":"Role","_key":"64337","_from":"40101","_to":"40093"} +{"$label":"ACTS_IN","name":"Ferrari","type":"Role","_key":"64336","_from":"40100","_to":"40093"} +{"$label":"ACTS_IN","name":"Mrs. Kidman","type":"Role","_key":"64335","_from":"40099","_to":"40093"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"64334","_from":"40098","_to":"40093"} +{"$label":"ACTS_IN","name":"Samnang","type":"Role","_key":"64333","_from":"40097","_to":"40093"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"64332","_from":"40096","_to":"40093"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"64331","_from":"40095","_to":"40093"} +{"$label":"DIRECTED","_key":"64322","_from":"40094","_to":"40093"} +{"$label":"DIRECTED","_key":"67824","_from":"40094","_to":"41685"} +{"$label":"ACTS_IN","name":"Hoo-Chi","type":"Role","_key":"106125","_from":"40100","_to":"62496"} +{"$label":"ACTS_IN","name":"Kobi","type":"Role","_key":"102305","_from":"40100","_to":"60192"} +{"$label":"ACTS_IN","name":"Mrs. Pressman","type":"Role","_key":"121013","_from":"40105","_to":"71073"} +{"$label":"ACTS_IN","name":"Mrs. Elliott","type":"Role","_key":"96943","_from":"40105","_to":"57014"} +{"$label":"ACTS_IN","name":"Cpl. D.F. Lisko","type":"Role","_key":"64362","_from":"40114","_to":"40107"} +{"$label":"ACTS_IN","name":"Pvt. G.H. 'Cookie' Bell","type":"Role","_key":"64361","_from":"40113","_to":"40107"} +{"$label":"ACTS_IN","name":"Pvt. Bert D. 'Moose' Codman","type":"Role","_key":"64360","_from":"40112","_to":"40107"} +{"$label":"ACTS_IN","name":"Maj. Joe Clary","type":"Role","_key":"64359","_from":"40111","_to":"40107"} +{"$label":"ACTS_IN","name":"Cpl. Joe S. Cromin","type":"Role","_key":"64358","_from":"40110","_to":"40107"} +{"$label":"ACTS_IN","name":"Capt. R.G. Sisk","type":"Role","_key":"64357","_from":"40109","_to":"40107"} +{"$label":"ACTS_IN","name":"Pfc. Dennis A. Gerber","type":"Role","_key":"64356","_from":"40108","_to":"40107"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"95785","_from":"40109","_to":"56339"} +{"$label":"ACTS_IN","name":"Agent Holden","type":"Role","_key":"94595","_from":"40110","_to":"55732"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"116179","_from":"40113","_to":"68405"} +{"$label":"ACTS_IN","name":"D.J.","type":"Role","_key":"116058","_from":"40113","_to":"68345"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"106415","_from":"40113","_to":"62695"} +{"$label":"ACTS_IN","name":"Sam Raynor","type":"Role","_key":"104335","_from":"40113","_to":"61383"} +{"$label":"ACTS_IN","name":"Orin Hanner Jr","type":"Role","_key":"99482","_from":"40113","_to":"58645"} +{"$label":"ACTS_IN","name":"Pvt. Colin Chevasse","type":"Role","_key":"90385","_from":"40114","_to":"53409"} +{"$label":"DIRECTED","_key":"64369","_from":"40117","_to":"40115"} +{"$label":"ACTS_IN","name":"Honorine","type":"Role","_key":"64368","_from":"40116","_to":"40115"} +{"$label":"ACTS_IN","name":"Giselle Mares","type":"Role","_key":"103591","_from":"40116","_to":"60927"} +{"$label":"DIRECTED","_key":"109082","_from":"40117","_to":"64448"} +{"$label":"DIRECTED","_key":"104619","_from":"40117","_to":"61542"} +{"$label":"DIRECTED","_key":"103583","_from":"40117","_to":"60927"} +{"$label":"DIRECTED","_key":"103279","_from":"40117","_to":"60760"} +{"$label":"DIRECTED","_key":"72694","_from":"40117","_to":"43802"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"64386","_from":"40127","_to":"40118"} +{"$label":"ACTS_IN","name":"Swim Coach","type":"Role","_key":"64385","_from":"40126","_to":"40118"} +{"$label":"ACTS_IN","name":"Conrad","type":"Role","_key":"64383","_from":"40125","_to":"40118"} +{"$label":"ACTS_IN","name":"Killebrew","type":"Role","_key":"64382","_from":"40124","_to":"40118"} +{"$label":"ACTS_IN","name":"Ethan Rawlings","type":"Role","_key":"64381","_from":"40123","_to":"40118"} +{"$label":"ACTS_IN","name":"Sam Brooks","type":"Role","_key":"64380","_from":"40122","_to":"40118"} +{"$label":"ACTS_IN","name":"Roger Lloyd","type":"Role","_key":"64378","_from":"40121","_to":"40118"} +{"$label":"ACTS_IN","name":"Dean Lawton","type":"Role","_key":"64375","_from":"40120","_to":"40118"} +{"$label":"ACTS_IN","name":"Brian Kelly","type":"Role","_key":"64373","_from":"40119","_to":"40118"} +{"$label":"ACTS_IN","name":"Tommy Ballenger","type":"Role","_key":"106117","_from":"40119","_to":"62493"} +{"$label":"ACTS_IN","name":"Jonesy","type":"Role","_key":"93305","_from":"40119","_to":"54964"} +{"$label":"ACTS_IN","name":"Norm Archer","type":"Role","_key":"101725","_from":"40120","_to":"59873"} +{"$label":"ACTS_IN","name":"Dr. Stephen Strange","type":"Role","_key":"101926","_from":"40121","_to":"59989"} +{"$label":"ACTS_IN","name":"Skylar Eckerman","type":"Role","_key":"100824","_from":"40123","_to":"59442"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"94773","_from":"40123","_to":"55817"} +{"$label":"ACTS_IN","name":"Downtown Home Infant","type":"Role","_key":"64409","_from":"40144","_to":"40128"} +{"$label":"ACTS_IN","name":"Downtown Home Infant","type":"Role","_key":"64408","_from":"40143","_to":"40128"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"64407","_from":"40142","_to":"40128"} +{"$label":"ACTS_IN","name":"911 Operator","type":"Role","_key":"64406","_from":"40141","_to":"40128"} +{"$label":"ACTS_IN","name":"Agent #1","type":"Role","_key":"64405","_from":"40140","_to":"40128"} +{"$label":"ACTS_IN","name":"Wendy Wyckham","type":"Role","_key":"64404","_from":"40139","_to":"40128"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"64403","_from":"40138","_to":"40128"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"64402","_from":"40137","_to":"40128"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"64401","_from":"40136","_to":"40128"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"64400","_from":"40135","_to":"40128"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"64399","_from":"40134","_to":"40128"} +{"$label":"ACTS_IN","name":"Snotty Concierge","type":"Role","_key":"64398","_from":"40133","_to":"40128"} +{"$label":"ACTS_IN","name":"Gwendolyn","type":"Role","_key":"64397","_from":"40132","_to":"40128"} +{"$label":"ACTS_IN","name":"Mrs. Riley","type":"Role","_key":"64396","_from":"40131","_to":"40128"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"64394","_from":"40130","_to":"40128"} +{"$label":"ACTS_IN","name":"Roarke","type":"Role","_key":"64393","_from":"40129","_to":"40128"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"93109","_from":"40129","_to":"54874"} +{"$label":"ACTS_IN","name":"Alice, Jane's Sister","type":"Role","_key":"90865","_from":"40130","_to":"53612"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"67800","_from":"40130","_to":"41672"} +{"$label":"ACTS_IN","name":"Noble Heart Horse (voice)","type":"Role","_key":"121663","_from":"40131","_to":"71468"} +{"$label":"ACTS_IN","name":"Wise Fish","type":"Role","_key":"93733","_from":"40131","_to":"55176"} +{"$label":"ACTS_IN","name":"Parent #1","type":"Role","_key":"117296","_from":"40142","_to":"68981"} +{"$label":"DIRECTED","_key":"64414","_from":"40147","_to":"40145"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"64410","_from":"40146","_to":"40145"} +{"$label":"ACTS_IN","name":"Plug","type":"Role","_key":"111723","_from":"40146","_to":"65952"} +{"$label":"ACTS_IN","name":"King George VI","type":"Role","_key":"101105","_from":"40146","_to":"59575"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"64431","_from":"40155","_to":"40148"} +{"$label":"ACTS_IN","name":"Canadian #1","type":"Role","_key":"64430","_from":"40154","_to":"40148"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"64429","_from":"40153","_to":"40148"} +{"$label":"ACTS_IN","name":"Brax","type":"Role","_key":"64427","_from":"40152","_to":"40148"} +{"$label":"ACTS_IN","name":"Daddy","type":"Role","_key":"64424","_from":"40151","_to":"40148"} +{"$label":"ACTS_IN","name":"Gangster #4","type":"Role","_key":"64420","_from":"40150","_to":"40148"} +{"$label":"ACTS_IN","name":"Gangster #1","type":"Role","_key":"64419","_from":"40149","_to":"40148"} +{"$label":"ACTS_IN","name":"Emmanuel's Entourage","type":"Role","_key":"96469","_from":"40151","_to":"56725"} +{"$label":"ACTS_IN","name":"Raze","type":"Role","_key":"89485","_from":"40151","_to":"52980"} +{"$label":"ACTS_IN","name":"Kit's Bodyguard","type":"Role","_key":"69339","_from":"40151","_to":"42372"} +{"$label":"ACTS_IN","name":"Guch","type":"Role","_key":"114801","_from":"40152","_to":"67620"} +{"$label":"ACTS_IN","name":"Darnell Gooden","type":"Role","_key":"101971","_from":"40152","_to":"60005"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"92558","_from":"40152","_to":"54641"} +{"$label":"ACTS_IN","name":"Julius Campbell","type":"Role","_key":"64764","_from":"40152","_to":"40308"} +{"$label":"ACTS_IN","name":"Wendell Hamilton","type":"Role","_key":"104669","_from":"40154","_to":"61578"} +{"$label":"ACTS_IN","name":"Lucignolo","type":"Role","_key":"64439","_from":"40157","_to":"40156"} +{"$label":"ACTS_IN","name":"Il Freddo","type":"Role","_key":"99862","_from":"40157","_to":"58894"} +{"$label":"ACTS_IN","name":"Peter Pan","type":"Role","_key":"64445","_from":"40160","_to":"40159"} +{"$label":"ACTS_IN","name":"Gavin Gore","type":"Role","_key":"118512","_from":"40160","_to":"69676"} +{"$label":"ACTS_IN","name":"Young Adam","type":"Role","_key":"88314","_from":"40160","_to":"52375"} +{"$label":"ACTS_IN","name":"Peasant Girl","type":"Role","_key":"64466","_from":"40169","_to":"40162"} +{"$label":"ACTS_IN","name":"Mavrandoni","type":"Role","_key":"64464","_from":"40168","_to":"40162"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"64463","_from":"40167","_to":"40162"} +{"$label":"ACTS_IN","name":"Manolakas","type":"Role","_key":"64462","_from":"40166","_to":"40162"} +{"$label":"ACTS_IN","name":"Soul","type":"Role","_key":"64461","_from":"40165","_to":"40162"} +{"$label":"ACTS_IN","name":"Mimithos","type":"Role","_key":"64459","_from":"40164","_to":"40162"} +{"$label":"DIRECTED","_key":"64456","_from":"40163","_to":"40162"} +{"$label":"ACTS_IN","name":"Achmed","type":"Role","_key":"114284","_from":"40166","_to":"67308"} +{"$label":"ACTS_IN","name":"Miss Brazil","type":"Role","_key":"64478","_from":"40177","_to":"40170"} +{"$label":"ACTS_IN","name":"Brody","type":"Role","_key":"64477","_from":"40176","_to":"40170"} +{"$label":"ACTS_IN","name":"Una","type":"Role","_key":"64476","_from":"40175","_to":"40170"} +{"$label":"ACTS_IN","name":"Nurse Lupe","type":"Role","_key":"64475","_from":"40174","_to":"40170"} +{"$label":"ACTS_IN","name":"Ray Collins","type":"Role","_key":"64474","_from":"40173","_to":"40170"} +{"$label":"ACTS_IN","name":"Jesse Brooks","type":"Role","_key":"64472","_from":"40172","_to":"40170"} +{"$label":"ACTS_IN","name":"Father Rodrigo","type":"Role","_key":"64470","_from":"40171","_to":"40170"} +{"$label":"ACTS_IN","name":"Castro","type":"Role","_key":"65752","_from":"40171","_to":"40705"} +{"$label":"ACTS_IN","name":"Anna Heymes","type":"Role","_key":"65877","_from":"40175","_to":"40763"} +{"$label":"DIRECTED","_key":"64490","_from":"40182","_to":"40179"} +{"$label":"ACTS_IN","name":"Sister","type":"Role","_key":"64488","_from":"40181","_to":"40179"} +{"$label":"ACTS_IN","name":"Dashiki","type":"Role","_key":"64487","_from":"40180","_to":"40179"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"121311","_from":"40180","_to":"71273"} +{"$label":"DIRECTED","_key":"64520","_from":"40188","_to":"40187"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"64533","_from":"40196","_to":"40189"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"64532","_from":"40195","_to":"40189"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"64531","_from":"40194","_to":"40189"} +{"$label":"ACTS_IN","name":"Kanana","type":"Role","_key":"64530","_from":"40193","_to":"40189"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"64528","_from":"40192","_to":"40189"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"64526","_from":"40191","_to":"40189"} +{"$label":"DIRECTED","_key":"64521","_from":"40190","_to":"40189"} +{"$label":"DIRECTED","_key":"106064","_from":"40190","_to":"62457"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"118711","_from":"40192","_to":"69802"} +{"$label":"ACTS_IN","name":"Dell","type":"Role","_key":"70660","_from":"40192","_to":"42995"} +{"$label":"ACTS_IN","name":"Lenny Otis","type":"Role","_key":"64544","_from":"40204","_to":"40197"} +{"$label":"ACTS_IN","name":"Ex-Girlfriend","type":"Role","_key":"64543","_from":"40203","_to":"40197"} +{"$label":"ACTS_IN","name":"Deejay","type":"Role","_key":"64542","_from":"40202","_to":"40197"} +{"$label":"ACTS_IN","name":"Nutmeg, Radio Station Receptionist","type":"Role","_key":"64541","_from":"40201","_to":"40197"} +{"$label":"ACTS_IN","name":"Misty","type":"Role","_key":"64539","_from":"40200","_to":"40197"} +{"$label":"ACTS_IN","name":"Clifford","type":"Role","_key":"64538","_from":"40199","_to":"40197"} +{"$label":"ACTS_IN","name":"Mickey Burnett","type":"Role","_key":"64537","_from":"40198","_to":"40197"} +{"$label":"ACTS_IN","name":"Solo Girl Singer","type":"Role","_key":"64566","_from":"40217","_to":"40205"} +{"$label":"ACTS_IN","name":"Little Pootie","type":"Role","_key":"64565","_from":"40216","_to":"40205"} +{"$label":"ACTS_IN","name":"Singing Lady","type":"Role","_key":"64562","_from":"40215","_to":"40205"} +{"$label":"ACTS_IN","name":"Singing Lady","type":"Role","_key":"64561","_from":"40214","_to":"40205"} +{"$label":"ACTS_IN","name":"Froggy","type":"Role","_key":"64560","_from":"40213","_to":"40205"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"64559","_from":"40212","_to":"40205"} +{"$label":"ACTS_IN","name":"Shakey","type":"Role","_key":"64558","_from":"40211","_to":"40205"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"64557","_from":"40210","_to":"40205"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"64555","_from":"40209","_to":"40205"} +{"$label":"ACTS_IN","name":"Lacey","type":"Role","_key":"64554","_from":"40208","_to":"40205"} +{"$label":"ACTS_IN","name":"Trucky","type":"Role","_key":"64549","_from":"40207","_to":"40205"} +{"$label":"ACTS_IN","name":"Pootie Tang","type":"Role","_key":"64548","_from":"40206","_to":"40205"} +{"$label":"ACTS_IN","name":"Apollo M.C.","type":"Role","_key":"108542","_from":"40208","_to":"64148"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64585","_from":"40234","_to":"40218"} +{"$label":"ACTS_IN","name":"Assassin","type":"Role","_key":"64584","_from":"40233","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64583","_from":"40232","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64582","_from":"40231","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64581","_from":"40230","_to":"40218"} +{"$label":"ACTS_IN","name":"Kau","type":"Role","_key":"64580","_from":"40229","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64579","_from":"40228","_to":"40218"} +{"$label":"ACTS_IN","name":"Father at Amusement Park","type":"Role","_key":"64578","_from":"40227","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64577","_from":"40226","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64576","_from":"40225","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64575","_from":"40224","_to":"40218"} +{"$label":"ACTS_IN","name":"Eiji Tsukamoto","type":"Role","_key":"64574","_from":"40223","_to":"40218"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64573","_from":"40222","_to":"40218"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"64572","_from":"40221","_to":"40218"} +{"$label":"ACTS_IN","name":"Tall Guy - Eiji's Bodyguard","type":"Role","_key":"64571","_from":"40220","_to":"40218"} +{"$label":"DIRECTED","_key":"64567","_from":"40219","_to":"40218"} +{"$label":"ACTS_IN","name":"Cameo appearance","type":"Role","_key":"66265","_from":"40229","_to":"40989"} +{"$label":"ACTS_IN","name":"Aunt Yee","type":"Role","_key":"64606","_from":"40249","_to":"40235"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64604","_from":"40248","_to":"40235"} +{"$label":"ACTS_IN","name":"Honorable Manchu Soldier","type":"Role","_key":"64603","_from":"40247","_to":"40235"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64602","_from":"40246","_to":"40235"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"64601","_from":"40245","_to":"40235"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64599","_from":"40244","_to":"40235"} +{"$label":"ACTS_IN","name":"Naval Commander","type":"Role","_key":"64598","_from":"40243","_to":"40235"} +{"$label":"ACTS_IN","name":"British general","type":"Role","_key":"64597","_from":"40242","_to":"40235"} +{"$label":"ACTS_IN","name":"Commander Man","type":"Role","_key":"64596","_from":"40241","_to":"40235"} +{"$label":"ACTS_IN","name":"Old man who gives advise","type":"Role","_key":"64595","_from":"40240","_to":"40235"} +{"$label":"ACTS_IN","name":"Iron Robe Yim","type":"Role","_key":"64594","_from":"40239","_to":"40235"} +{"$label":"ACTS_IN","name":"Jackson","type":"Role","_key":"64593","_from":"40238","_to":"40235"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"64592","_from":"40237","_to":"40235"} +{"$label":"ACTS_IN","name":"Porky Lang","type":"Role","_key":"64591","_from":"40236","_to":"40235"} +{"$label":"ACTS_IN","name":"Detective Hung","type":"Role","_key":"117764","_from":"40236","_to":"69226"} +{"$label":"ACTS_IN","name":"Charlie Leung Kam-Po","type":"Role","_key":"117046","_from":"40236","_to":"68884"} +{"$label":"ACTS_IN","name":"Hiu Hing","type":"Role","_key":"91507","_from":"40239","_to":"53944"} +{"$label":"ACTS_IN","name":"Ruck","type":"Role","_key":"118036","_from":"40242","_to":"69382"} +{"$label":"ACTS_IN","name":"The Eunuch","type":"Role","_key":"117783","_from":"40243","_to":"69234"} +{"$label":"ACTS_IN","name":"Wong Kei-ying","type":"Role","_key":"64620","_from":"40243","_to":"40256"} +{"$label":"DIRECTED","_key":"106729","_from":"40246","_to":"62904"} +{"$label":"ACTS_IN","name":"The Drunken Taoist \/ Grandmother","type":"Role","_key":"106727","_from":"40246","_to":"62904"} +{"$label":"ACTS_IN","name":"Ling","type":"Role","_key":"68137","_from":"40246","_to":"41849"} +{"$label":"ACTS_IN","name":"Old Devil aka Master Ruthless","type":"Role","_key":"106728","_from":"40247","_to":"62904"} +{"$label":"ACTS_IN","name":"Lorelei","type":"Role","_key":"67034","_from":"40249","_to":"41379"} +{"$label":"ACTS_IN","name":"Aunt Yee","type":"Role","_key":"64626","_from":"40249","_to":"40258"} +{"$label":"ACTS_IN","name":"Aunt Yee (segment \"Penny\")","type":"Role","_key":"64619","_from":"40249","_to":"40256"} +{"$label":"ACTS_IN","name":"Shao Yun, said ' 13-th aunt '","type":"Role","_key":"64612","_from":"40249","_to":"40250"} +{"$label":"ACTS_IN","name":"British Consul","type":"Role","_key":"64616","_from":"40255","_to":"40250"} +{"$label":"ACTS_IN","name":"Leung Foon","type":"Role","_key":"64615","_from":"40254","_to":"40250"} +{"$label":"ACTS_IN","name":"Mak","type":"Role","_key":"64614","_from":"40253","_to":"40250"} +{"$label":"ACTS_IN","name":"Chung","type":"Role","_key":"64613","_from":"40252","_to":"40250"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"64611","_from":"40251","_to":"40250"} +{"$label":"ACTS_IN","name":"Yen","type":"Role","_key":"119504","_from":"40252","_to":"70198"} +{"$label":"ACTS_IN","name":"Warden Sugiyama","type":"Role","_key":"112333","_from":"40253","_to":"66318"} +{"$label":"ACTS_IN","name":"Leung Fun","type":"Role","_key":"64621","_from":"40254","_to":"40256"} +{"$label":"ACTS_IN","name":"Tumanovsky","type":"Role","_key":"64622","_from":"40257","_to":"40256"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64644","_from":"40270","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64643","_from":"40269","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64642","_from":"40268","_to":"40258"} +{"$label":"ACTS_IN","name":"Fierce Eagle","type":"Role","_key":"64641","_from":"40267","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64640","_from":"40266","_to":"40258"} +{"$label":"ACTS_IN","name":"Flying Eagle","type":"Role","_key":"64639","_from":"40265","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64638","_from":"40264","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64637","_from":"40263","_to":"40258"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64636","_from":"40262","_to":"40258"} +{"$label":"ACTS_IN","name":"Bandit Leader","type":"Role","_key":"64633","_from":"40261","_to":"40258"} +{"$label":"ACTS_IN","name":"Sol","type":"Role","_key":"64630","_from":"40260","_to":"40258"} +{"$label":"ACTS_IN","name":"Sarah, the Indian Girl","type":"Role","_key":"64629","_from":"40259","_to":"40258"} +{"$label":"ACTS_IN","name":"L'ami agent","type":"Role","_key":"64654","_from":"40277","_to":"40271"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"64653","_from":"40276","_to":"40271"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"64652","_from":"40275","_to":"40271"} +{"$label":"ACTS_IN","name":"La Flic","type":"Role","_key":"64651","_from":"40274","_to":"40271"} +{"$label":"ACTS_IN","name":"Dragan","type":"Role","_key":"64649","_from":"40273","_to":"40271"} +{"$label":"ACTS_IN","name":"Le Polizier","type":"Role","_key":"64648","_from":"40272","_to":"40271"} +{"$label":"ACTS_IN","name":"Vodja 'Pantera'","type":"Role","_key":"111085","_from":"40273","_to":"65617"} +{"$label":"ACTS_IN","name":"Ooq-Mi-Fay Taqnufmini","type":"Role","_key":"93358","_from":"40273","_to":"54992"} +{"$label":"ACTS_IN","name":"Miki","type":"Role","_key":"64661","_from":"40280","_to":"40278"} +{"$label":"ACTS_IN","name":"Giancarlo","type":"Role","_key":"64660","_from":"40279","_to":"40278"} +{"$label":"ACTS_IN","name":"Zamir","type":"Role","_key":"100860","_from":"40279","_to":"59459"} +{"$label":"ACTS_IN","name":"Matt Conroy","type":"Role","_key":"93755","_from":"40279","_to":"55191"} +{"$label":"ACTS_IN","name":"Matt Conroy","type":"Role","_key":"93752","_from":"40279","_to":"55188"} +{"$label":"ACTS_IN","name":"Colonel McDonald","type":"Role","_key":"68486","_from":"40279","_to":"42007"} +{"$label":"ACTS_IN","name":"Ponnie","type":"Role","_key":"64675","_from":"40286","_to":"40282"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"64674","_from":"40285","_to":"40282"} +{"$label":"ACTS_IN","name":"Jens Meier","type":"Role","_key":"64673","_from":"40284","_to":"40282"} +{"$label":"DIRECTED","_key":"64671","_from":"40283","_to":"40282"} +{"$label":"ACTS_IN","name":"Karen Smith","type":"Role","_key":"64680","_from":"40288","_to":"40287"} +{"$label":"ACTS_IN","name":"Anita \"Needy\" Lesnicky","type":"Role","_key":"121696","_from":"40288","_to":"71494"} +{"$label":"ACTS_IN","name":"Zoe","type":"Role","_key":"101344","_from":"40288","_to":"59660"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"71158","_from":"40288","_to":"43190"} +{"$label":"ACTS_IN","name":"Dr. Oberm\u00fcller","type":"Role","_key":"64685","_from":"40290","_to":"40289"} +{"$label":"DIRECTED","_key":"64713","_from":"40296","_to":"40294"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"64710","_from":"40295","_to":"40294"} +{"$label":"ACTS_IN","name":"Red's Father","type":"Role","_key":"64748","_from":"40304","_to":"40300"} +{"$label":"ACTS_IN","name":"China","type":"Role","_key":"64746","_from":"40303","_to":"40300"} +{"$label":"ACTS_IN","name":"Ezal","type":"Role","_key":"64743","_from":"40302","_to":"40300"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"64741","_from":"40301","_to":"40300"} +{"$label":"DIRECTED","_key":"94353","_from":"40301","_to":"55558"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"94347","_from":"40301","_to":"55558"} +{"$label":"ACTS_IN","name":"L'il Man","type":"Role","_key":"121308","_from":"40302","_to":"71273"} +{"$label":"ACTS_IN","name":"James (as A.J. Johnson)","type":"Role","_key":"116113","_from":"40302","_to":"68369"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"109505","_from":"40303","_to":"64682"} +{"$label":"ACTS_IN","name":"Tessa","type":"Role","_key":"64759","_from":"40307","_to":"40306"} +{"$label":"DIRECTED","_key":"64766","_from":"40309","_to":"40308"} +{"$label":"DIRECTED","_key":"102504","_from":"40309","_to":"60309"} +{"$label":"DIRECTED","_key":"96859","_from":"40309","_to":"56940"} +{"$label":"ACTS_IN","name":"Captain Cummings","type":"Role","_key":"64770","_from":"40311","_to":"40310"} +{"$label":"ACTS_IN","name":"Mitsuo Katagiri","type":"Role","_key":"64798","_from":"40320","_to":"40316"} +{"$label":"ACTS_IN","name":"Io Shinoda","type":"Role","_key":"64797","_from":"40319","_to":"40316"} +{"$label":"ACTS_IN","name":"Yuki Ichinose","type":"Role","_key":"64796","_from":"40318","_to":"40316"} +{"$label":"ACTS_IN","name":"Yuji Shinoda","type":"Role","_key":"64795","_from":"40317","_to":"40316"} +{"$label":"ACTS_IN","name":"Chiaki Ono","type":"Role","_key":"100400","_from":"40317","_to":"59206"} +{"$label":"ACTS_IN","name":"Shizue Katakuri","type":"Role","_key":"107915","_from":"40318","_to":"63729"} +{"$label":"ACTS_IN","name":"Aoyama, the Hypnotist","type":"Role","_key":"107293","_from":"40320","_to":"63279"} +{"$label":"ACTS_IN","name":"Misashi","type":"Role","_key":"102649","_from":"40320","_to":"60396"} +{"$label":"DIRECTED","_key":"64809","_from":"40324","_to":"40322"} +{"$label":"ACTS_IN","name":"Das Sams","type":"Role","_key":"64806","_from":"40323","_to":"40322"} +{"$label":"DIRECTED","_key":"64814","_from":"40326","_to":"40325"} +{"$label":"DIRECTED","_key":"64829","_from":"40331","_to":"40329"} +{"$label":"ACTS_IN","name":"Insp. Kate Moore","type":"Role","_key":"64826","_from":"40330","_to":"40329"} +{"$label":"DIRECTED","_key":"104327","_from":"40331","_to":"61379"} +{"$label":"ACTS_IN","name":"Jennifer Spencer","type":"Role","_key":"64831","_from":"40333","_to":"40332"} +{"$label":"ACTS_IN","name":"Gus Mally","type":"Role","_key":"113666","_from":"40333","_to":"66986"} +{"$label":"ACTS_IN","name":"Lynn Halsey-Taylor","type":"Role","_key":"111407","_from":"40333","_to":"65785"} +{"$label":"ACTS_IN","name":"Lynn Halsey-Taylor","type":"Role","_key":"104324","_from":"40333","_to":"61379"} +{"$label":"ACTS_IN","name":"Laura Lee","type":"Role","_key":"65412","_from":"40333","_to":"40561"} +{"$label":"DIRECTED","_key":"64840","_from":"40336","_to":"40334"} +{"$label":"ACTS_IN","name":"Insp. Al Quan","type":"Role","_key":"64838","_from":"40335","_to":"40334"} +{"$label":"DIRECTED","_key":"111412","_from":"40336","_to":"65785"} +{"$label":"ACTS_IN","name":"Motown","type":"Role","_key":"64842","_from":"40338","_to":"40337"} +{"$label":"ACTS_IN","name":"Tom MacKenzie","type":"Role","_key":"64849","_from":"40340","_to":"40339"} +{"$label":"ACTS_IN","name":"Jeannie Ryan","type":"Role","_key":"64853","_from":"40342","_to":"40341"} +{"$label":"DIRECTED","_key":"64860","_from":"40344","_to":"40343"} +{"$label":"DIRECTED","_key":"106890","_from":"40344","_to":"63012"} +{"$label":"DIRECTED","_key":"64875","_from":"40347","_to":"40346"} +{"$label":"DIRECTED","_key":"64880","_from":"40349","_to":"40348"} +{"$label":"DIRECTED","_key":"68629","_from":"40349","_to":"42068"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"64883","_from":"40351","_to":"40350"} +{"$label":"ACTS_IN","name":"Oori","type":"Role","_key":"64902","_from":"40358","_to":"40353"} +{"$label":"ACTS_IN","name":"Walbridge","type":"Role","_key":"64900","_from":"40357","_to":"40353"} +{"$label":"ACTS_IN","name":"Mrs. Greenhouse","type":"Role","_key":"64899","_from":"40356","_to":"40353"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"64898","_from":"40355","_to":"40353"} +{"$label":"ACTS_IN","name":"Nasi","type":"Role","_key":"64897","_from":"40354","_to":"40353"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"114178","_from":"40355","_to":"67261"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"100904","_from":"40355","_to":"59485"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96464","_from":"40357","_to":"56725"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"64913","_from":"40362","_to":"40359"} +{"$label":"ACTS_IN","name":"Casey Bugge","type":"Role","_key":"64912","_from":"40361","_to":"40359"} +{"$label":"ACTS_IN","name":"Coach Red Beaulieu","type":"Role","_key":"64907","_from":"40360","_to":"40359"} +{"$label":"ACTS_IN","name":"Cledus Snow\/Bandit","type":"Role","_key":"103261","_from":"40360","_to":"60755"} +{"$label":"ACTS_IN","name":"Col. George Walker","type":"Role","_key":"102440","_from":"40360","_to":"60279"} +{"$label":"ACTS_IN","name":"Cledus Snow","type":"Role","_key":"91135","_from":"40360","_to":"53765"} +{"$label":"ACTS_IN","name":"Cledus 'Snowman' Snow","type":"Role","_key":"67236","_from":"40360","_to":"41458"} +{"$label":"ACTS_IN","name":"The Tourist","type":"Role","_key":"114628","_from":"40362","_to":"67521"} +{"$label":"ACTS_IN","name":"Jefferey","type":"Role","_key":"101598","_from":"40362","_to":"59795"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"95944","_from":"40362","_to":"56416"} +{"$label":"ACTS_IN","name":"Dogcatcher","type":"Role","_key":"70294","_from":"40362","_to":"42822"} +{"$label":"ACTS_IN","name":"Salish","type":"Role","_key":"67608","_from":"40362","_to":"41614"} +{"$label":"ACTS_IN","name":"Martos","type":"Role","_key":"64926","_from":"40366","_to":"40363"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"64923","_from":"40365","_to":"40363"} +{"$label":"ACTS_IN","name":"Ni\u00f1a Medeiros","type":"Role","_key":"64922","_from":"40364","_to":"40363"} +{"$label":"DIRECTED","_key":"64927","_from":"40368","_to":"40367"} +{"$label":"DIRECTED","_key":"64930","_from":"40370","_to":"40369"} +{"$label":"DIRECTED","_key":"64932","_from":"40372","_to":"40371"} +{"$label":"DIRECTED","_key":"64940","_from":"40374","_to":"40373"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"64945","_from":"40376","_to":"40375"} +{"$label":"DIRECTED","_key":"64953","_from":"40378","_to":"40377"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"64962","_from":"40381","_to":"40380"} +{"$label":"DIRECTED","_key":"64973","_from":"40385","_to":"40383"} +{"$label":"DIRECTED","_key":"64972","_from":"40384","_to":"40383"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"64982","_from":"40387","_to":"40386"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"64997","_from":"40400","_to":"40388"} +{"$label":"ACTS_IN","name":"Nurse Agnes","type":"Role","_key":"64996","_from":"40399","_to":"40388"} +{"$label":"ACTS_IN","name":"Walter Jones","type":"Role","_key":"64995","_from":"40398","_to":"40388"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"64994","_from":"40397","_to":"40388"} +{"$label":"ACTS_IN","name":"Harry Grimbridge","type":"Role","_key":"64993","_from":"40396","_to":"40388"} +{"$label":"ACTS_IN","name":"Starker (as Jon Terry)","type":"Role","_key":"64992","_from":"40395","_to":"40388"} +{"$label":"ACTS_IN","name":"Marge Guttman","type":"Role","_key":"64990","_from":"40394","_to":"40388"} +{"$label":"ACTS_IN","name":"'Little' Buddy Kupfer Jr. (as Bradley Schachter)","type":"Role","_key":"64989","_from":"40393","_to":"40388"} +{"$label":"ACTS_IN","name":"Betty Kupfer","type":"Role","_key":"64988","_from":"40392","_to":"40388"} +{"$label":"ACTS_IN","name":"Buddy Kupfer","type":"Role","_key":"64987","_from":"40391","_to":"40388"} +{"$label":"ACTS_IN","name":"Rafferty","type":"Role","_key":"64986","_from":"40390","_to":"40388"} +{"$label":"ACTS_IN","name":"Ellie Grimbridge","type":"Role","_key":"64984","_from":"40389","_to":"40388"} +{"$label":"DIRECTED","_key":"65005","_from":"40402","_to":"40401"} +{"$label":"DIRECTED","_key":"110326","_from":"40402","_to":"65196"} +{"$label":"DIRECTED","_key":"65013","_from":"40405","_to":"40404"} +{"$label":"ACTS_IN","name":"Commander Dwarf","type":"Role","_key":"104646","_from":"40405","_to":"61558"} +{"$label":"DIRECTED","_key":"104643","_from":"40405","_to":"61558"} +{"$label":"ACTS_IN","name":"Dean Portman","type":"Role","_key":"65028","_from":"40411","_to":"40406"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"65027","_from":"40410","_to":"40406"} +{"$label":"ACTS_IN","name":"Guy Germaine","type":"Role","_key":"65024","_from":"40409","_to":"40406"} +{"$label":"ACTS_IN","name":"Lester Averman","type":"Role","_key":"65023","_from":"40408","_to":"40406"} +{"$label":"ACTS_IN","name":"Adam Banks","type":"Role","_key":"65022","_from":"40407","_to":"40406"} +{"$label":"ACTS_IN","name":"Adam Banks","type":"Role","_key":"68253","_from":"40407","_to":"41905"} +{"$label":"ACTS_IN","name":"Lester Averman","type":"Role","_key":"68249","_from":"40408","_to":"41905"} +{"$label":"ACTS_IN","name":"Young Tom Kimball","type":"Role","_key":"98026","_from":"40409","_to":"57719"} +{"$label":"ACTS_IN","name":"Young Richard","type":"Role","_key":"97310","_from":"40409","_to":"57291"} +{"$label":"ACTS_IN","name":"Guy Germaine","type":"Role","_key":"68251","_from":"40409","_to":"41905"} +{"$label":"ACTS_IN","name":"voice of AUTO","type":"Role","_key":"65035","_from":"40415","_to":"40412"} +{"$label":"ACTS_IN","name":"Voice of EVE","type":"Role","_key":"65032","_from":"40414","_to":"40412"} +{"$label":"ACTS_IN","name":"voice of Wall-E, M-O","type":"Role","_key":"65031","_from":"40413","_to":"40412"} +{"$label":"DIRECTED","_key":"103123","_from":"40413","_to":"60656"} +{"$label":"ACTS_IN","name":"WALL\u00b7E \/ M-O","type":"Role","_key":"94384","_from":"40413","_to":"55575"} +{"$label":"ACTS_IN","name":"EVE","type":"Role","_key":"94386","_from":"40414","_to":"55575"} +{"$label":"DIRECTED","_key":"65043","_from":"40417","_to":"40416"} +{"$label":"DIRECTED","_key":"109479","_from":"40417","_to":"64667"} +{"$label":"DIRECTED","_key":"92324","_from":"40417","_to":"54486"} +{"$label":"DIRECTED","_key":"69916","_from":"40417","_to":"42663"} +{"$label":"DIRECTED","_key":"65053","_from":"40420","_to":"40419"} +{"$label":"DIRECTED","_key":"65058","_from":"40426","_to":"40421"} +{"$label":"ACTS_IN","name":"Heishiro Inukai","type":"Role","_key":"65057","_from":"40425","_to":"40421"} +{"$label":"ACTS_IN","name":"Koharu Mizoguchi","type":"Role","_key":"65056","_from":"40424","_to":"40421"} +{"$label":"ACTS_IN","name":"Rannosuke Kazamatsuri","type":"Role","_key":"65055","_from":"40423","_to":"40421"} +{"$label":"ACTS_IN","name":"Hanbei Mizoguchi","type":"Role","_key":"65054","_from":"40422","_to":"40421"} +{"$label":"ACTS_IN","name":"Kentaro Ohmachi","type":"Role","_key":"92816","_from":"40425","_to":"54755"} +{"$label":"ACTS_IN","name":"Sven Krone","type":"Role","_key":"65073","_from":"40430","_to":"40429"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"65083","_from":"40433","_to":"40432"} +{"$label":"ACTS_IN","name":"Dead Couple - Wife","type":"Role","_key":"65088","_from":"40437","_to":"40434"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"65087","_from":"40436","_to":"40434"} +{"$label":"ACTS_IN","name":"Dead Woman \/ Dead Prostitute \/ Hooker","type":"Role","_key":"65085","_from":"40435","_to":"40434"} +{"$label":"ACTS_IN","name":"Mr. Smee","type":"Role","_key":"65093","_from":"40440","_to":"40438"} +{"$label":"ACTS_IN","name":"Wendy Darling","type":"Role","_key":"65091","_from":"40439","_to":"40438"} +{"$label":"ACTS_IN","name":"Alice (voice)","type":"Role","_key":"87976","_from":"40439","_to":"52236"} +{"$label":"ACTS_IN","name":"Gelehrter","type":"Role","_key":"65102","_from":"40443","_to":"40442"} +{"$label":"ACTS_IN","name":"Julian \"Dice\" Black","type":"Role","_key":"65108","_from":"40446","_to":"40444"} +{"$label":"ACTS_IN","name":"Billie Frank","type":"Role","_key":"65107","_from":"40445","_to":"40444"} +{"$label":"ACTS_IN","name":"Professionally Dressed Woman","type":"Role","_key":"94361","_from":"40445","_to":"55562"} +{"$label":"ACTS_IN","name":"Franck Moreno","type":"Role","_key":"65118","_from":"40448","_to":"40447"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"118229","_from":"40448","_to":"69499"} +{"$label":"ACTS_IN","name":"Molt\u00e8s","type":"Role","_key":"116267","_from":"40448","_to":"68451"} +{"$label":"ACTS_IN","name":"Alain Colonna","type":"Role","_key":"116099","_from":"40448","_to":"68365"} +{"$label":"ACTS_IN","name":"Charly Bauer","type":"Role","_key":"104128","_from":"40448","_to":"61260"} +{"$label":"ACTS_IN","name":"Serge","type":"Role","_key":"99025","_from":"40448","_to":"58335"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"92135","_from":"40448","_to":"54363"} +{"$label":"ACTS_IN","name":"Michel Saint-Josse","type":"Role","_key":"92117","_from":"40448","_to":"54355"} +{"$label":"ACTS_IN","name":"Louis Coline","type":"Role","_key":"89126","_from":"40448","_to":"52799"} +{"$label":"ACTS_IN","name":"St\u00e9phane Carella","type":"Role","_key":"88084","_from":"40448","_to":"52280"} +{"$label":"ACTS_IN","name":"Antoine Beranger","type":"Role","_key":"71424","_from":"40448","_to":"43308"} +{"$label":"DIRECTED","_key":"65123","_from":"40452","_to":"40449"} +{"$label":"ACTS_IN","name":"Kopfi","type":"Role","_key":"65122","_from":"40451","_to":"40449"} +{"$label":"ACTS_IN","name":"Hacki","type":"Role","_key":"65121","_from":"40450","_to":"40449"} +{"$label":"ACTS_IN","name":"Himself - Airport police officer","type":"Role","_key":"65133","_from":"40458","_to":"40454"} +{"$label":"ACTS_IN","name":"Himself - Fish factory owner","type":"Role","_key":"65132","_from":"40457","_to":"40454"} +{"$label":"ACTS_IN","name":"Himself - Night guard","type":"Role","_key":"65131","_from":"40456","_to":"40454"} +{"$label":"ACTS_IN","name":"Herself - Pilots' girlfriend, singer","type":"Role","_key":"65130","_from":"40455","_to":"40454"} +{"$label":"ACTS_IN","name":"Appariation","type":"Role","_key":"65139","_from":"40464","_to":"40459"} +{"$label":"ACTS_IN","name":"Phantom","type":"Role","_key":"65138","_from":"40463","_to":"40459"} +{"$label":"ACTS_IN","name":"young woman","type":"Role","_key":"65137","_from":"40462","_to":"40459"} +{"$label":"ACTS_IN","name":"older woman","type":"Role","_key":"65136","_from":"40461","_to":"40459"} +{"$label":"DIRECTED","_key":"65134","_from":"40460","_to":"40459"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"91555","_from":"40462","_to":"53972"} +{"$label":"ACTS_IN","name":"Xin Long Zi","type":"Role","_key":"65143","_from":"40468","_to":"40465"} +{"$label":"ACTS_IN","name":"Wu Yuan Yin","type":"Role","_key":"65142","_from":"40467","_to":"40465"} +{"$label":"ACTS_IN","name":"Yang Yun Chong","type":"Role","_key":"65141","_from":"40466","_to":"40465"} +{"$label":"ACTS_IN","name":"Duan Lanquan","type":"Role","_key":"100702","_from":"40466","_to":"59378"} +{"$label":"ACTS_IN","name":"Inspector \/ SP Yeung Kam Wing","type":"Role","_key":"99562","_from":"40466","_to":"58693"} +{"$label":"ACTS_IN","name":"Wong Chi-Ming","type":"Role","_key":"68618","_from":"40466","_to":"42067"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"117003","_from":"40467","_to":"68861"} +{"$label":"ACTS_IN","name":"Fon","type":"Role","_key":"93286","_from":"40467","_to":"54950"} +{"$label":"ACTS_IN","name":"Lee Yuk-lin","type":"Role","_key":"73001","_from":"40467","_to":"43934"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"68621","_from":"40467","_to":"42067"} +{"$label":"DIRECTED","_key":"65149","_from":"40472","_to":"40469"} +{"$label":"ACTS_IN","name":"Peterson \/ GR80","type":"Role","_key":"65148","_from":"40471","_to":"40469"} +{"$label":"ACTS_IN","name":"Luc Devereaux \/ GR44","type":"Role","_key":"65145","_from":"40470","_to":"40469"} +{"$label":"DIRECTED","_key":"117316","_from":"40472","_to":"68998"} +{"$label":"ACTS_IN","name":"Williams","type":"Role","_key":"65169","_from":"40481","_to":"40473"} +{"$label":"ACTS_IN","name":"Sir Thomas Erpingham","type":"Role","_key":"65166","_from":"40480","_to":"40473"} +{"$label":"ACTS_IN","name":"Lord Henry Scroop","type":"Role","_key":"65164","_from":"40479","_to":"40473"} +{"$label":"ACTS_IN","name":"Earl Richard of Cambridge","type":"Role","_key":"65163","_from":"40478","_to":"40473"} +{"$label":"ACTS_IN","name":"Archbishop of Canterbury","type":"Role","_key":"65161","_from":"40477","_to":"40473"} +{"$label":"ACTS_IN","name":"Duke Edward of York","type":"Role","_key":"65160","_from":"40476","_to":"40473"} +{"$label":"ACTS_IN","name":"Duke Humphrey of Gloucester","type":"Role","_key":"65159","_from":"40475","_to":"40473"} +{"$label":"ACTS_IN","name":"Bedford","type":"Role","_key":"65153","_from":"40474","_to":"40473"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"70153","_from":"40475","_to":"42763"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"97860","_from":"40479","_to":"57638"} +{"$label":"DIRECTED","_key":"65176","_from":"40484","_to":"40482"} +{"$label":"ACTS_IN","name":"Sal Aguirre","type":"Role","_key":"65175","_from":"40483","_to":"40482"} +{"$label":"DIRECTED","_key":"65183","_from":"40487","_to":"40485"} +{"$label":"ACTS_IN","name":"Frank Berkman","type":"Role","_key":"65180","_from":"40486","_to":"40485"} +{"$label":"DIRECTED","_key":"98035","_from":"40487","_to":"57728"} +{"$label":"ACTS_IN","name":"S\u00f6ren","type":"Role","_key":"65217","_from":"40497","_to":"40496"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"65224","_from":"40499","_to":"40498"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"71728","_from":"40499","_to":"43418"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"67631","_from":"40499","_to":"41622"} +{"$label":"DIRECTED","_key":"65230","_from":"40501","_to":"40500"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65239","_from":"40503","_to":"40502"} +{"$label":"ACTS_IN","name":"Rosario","type":"Role","_key":"65253","_from":"40508","_to":"40506"} +{"$label":"ACTS_IN","name":"Cavan","type":"Role","_key":"65251","_from":"40507","_to":"40506"} +{"$label":"ACTS_IN","name":"Bledsoe","type":"Role","_key":"65258","_from":"40510","_to":"40509"} +{"$label":"ACTS_IN","name":"Captain Buckholz","type":"Role","_key":"65262","_from":"40512","_to":"40511"} +{"$label":"DIRECTED","_key":"65281","_from":"40519","_to":"40514"} +{"$label":"ACTS_IN","name":"Daniels' Mom","type":"Role","_key":"65280","_from":"40518","_to":"40514"} +{"$label":"ACTS_IN","name":"Patrick Bateman","type":"Role","_key":"65277","_from":"40517","_to":"40514"} +{"$label":"ACTS_IN","name":"Young Rachael","type":"Role","_key":"65276","_from":"40516","_to":"40514"} +{"$label":"ACTS_IN","name":"Keith Lawson","type":"Role","_key":"65275","_from":"40515","_to":"40514"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"98345","_from":"40518","_to":"57917"} +{"$label":"DIRECTED","_key":"65287","_from":"40524","_to":"40520"} +{"$label":"ACTS_IN","name":"Larry Fleishman","type":"Role","_key":"65285","_from":"40523","_to":"40520"} +{"$label":"ACTS_IN","name":"Caitlin Greene","type":"Role","_key":"65283","_from":"40522","_to":"40520"} +{"$label":"ACTS_IN","name":"Kyle Walsh","type":"Role","_key":"65282","_from":"40521","_to":"40520"} +{"$label":"DIRECTED","_key":"65740","_from":"40524","_to":"40702"} +{"$label":"DIRECTED","_key":"65299","_from":"40528","_to":"40526"} +{"$label":"ACTS_IN","name":"Lt. Jameson","type":"Role","_key":"65297","_from":"40527","_to":"40526"} +{"$label":"DIRECTED","_key":"65326","_from":"40533","_to":"40532"} +{"$label":"DIRECTED","_key":"101219","_from":"40533","_to":"59618"} +{"$label":"ACTS_IN","name":"Zimmerman","type":"Role","_key":"65344","_from":"40546","_to":"40534"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"65342","_from":"40545","_to":"40534"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"65341","_from":"40544","_to":"40534"} +{"$label":"ACTS_IN","name":"Cranston","type":"Role","_key":"65340","_from":"40543","_to":"40534"} +{"$label":"ACTS_IN","name":"Litmus","type":"Role","_key":"65339","_from":"40542","_to":"40534"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"65338","_from":"40541","_to":"40534"} +{"$label":"ACTS_IN","name":"Cellblock Captain","type":"Role","_key":"65337","_from":"40540","_to":"40534"} +{"$label":"ACTS_IN","name":"Bobs","type":"Role","_key":"65336","_from":"40539","_to":"40534"} +{"$label":"ACTS_IN","name":"Exam Guard","type":"Role","_key":"65335","_from":"40538","_to":"40534"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"65334","_from":"40537","_to":"40534"} +{"$label":"ACTS_IN","name":"Medical Technical Assistant","type":"Role","_key":"65333","_from":"40536","_to":"40534"} +{"$label":"ACTS_IN","name":"Fight Guard","type":"Role","_key":"65331","_from":"40535","_to":"40534"} +{"$label":"ACTS_IN","name":"Lord Morley","type":"Role","_key":"96215","_from":"40545","_to":"56552"} +{"$label":"ACTS_IN","name":"Granddad","type":"Role","_key":"104958","_from":"40546","_to":"61751"} +{"$label":"DIRECTED","_key":"65352","_from":"40548","_to":"40547"} +{"$label":"DIRECTED","_key":"67375","_from":"40548","_to":"41515"} +{"$label":"DIRECTED","_key":"65365","_from":"40551","_to":"40550"} +{"$label":"DIRECTED","_key":"72227","_from":"40551","_to":"43644"} +{"$label":"DIRECTED","_key":"65390","_from":"40554","_to":"40553"} +{"$label":"ACTS_IN","name":"Ines Roeggeli","type":"Role","_key":"65407","_from":"40560","_to":"40557"} +{"$label":"ACTS_IN","name":"Enno Goldini","type":"Role","_key":"65406","_from":"40559","_to":"40557"} +{"$label":"ACTS_IN","name":"Theo Gromberg","type":"Role","_key":"65405","_from":"40558","_to":"40557"} +{"$label":"ACTS_IN","name":"Lone Watie","type":"Role","_key":"65411","_from":"40562","_to":"40561"} +{"$label":"ACTS_IN","name":"Old Lodge Skins","type":"Role","_key":"67502","_from":"40562","_to":"41571"} +{"$label":"DIRECTED","_key":"65436","_from":"40568","_to":"40563"} +{"$label":"ACTS_IN","name":"Verity","type":"Role","_key":"65427","_from":"40567","_to":"40563"} +{"$label":"ACTS_IN","name":"Chelsea","type":"Role","_key":"65426","_from":"40566","_to":"40563"} +{"$label":"ACTS_IN","name":"Beverly","type":"Role","_key":"65420","_from":"40565","_to":"40563"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"65419","_from":"40564","_to":"40563"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"111648","_from":"40564","_to":"65911"} +{"$label":"ACTS_IN","name":"Flora","type":"Role","_key":"97081","_from":"40566","_to":"57107"} +{"$label":"ACTS_IN","name":"Hattie","type":"Role","_key":"100289","_from":"40567","_to":"59140"} +{"$label":"DIRECTED","_key":"65442","_from":"40571","_to":"40569"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"65440","_from":"40570","_to":"40569"} +{"$label":"DIRECTED","_key":"65448","_from":"40574","_to":"40572"} +{"$label":"ACTS_IN","name":"Jonathan 'Snuffy' Bradberry","type":"Role","_key":"65445","_from":"40573","_to":"40572"} +{"$label":"ACTS_IN","name":"Kenny Crandell","type":"Role","_key":"104316","_from":"40573","_to":"61374"} +{"$label":"ACTS_IN","name":"Brad Anderson","type":"Role","_key":"99826","_from":"40573","_to":"58883"} +{"$label":"DIRECTED","_key":"89735","_from":"40574","_to":"53116"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"65459","_from":"40580","_to":"40576"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"65458","_from":"40579","_to":"40576"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"65457","_from":"40578","_to":"40576"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"65456","_from":"40577","_to":"40576"} +{"$label":"ACTS_IN","name":"Beatka","type":"Role","_key":"65484","_from":"40599","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65483","_from":"40598","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65482","_from":"40597","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65481","_from":"40596","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65480","_from":"40595","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65479","_from":"40594","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65478","_from":"40593","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65477","_from":"40592","_to":"40582"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"65476","_from":"40591","_to":"40582"} +{"$label":"ACTS_IN","name":"Andrzej","type":"Role","_key":"65475","_from":"40590","_to":"40582"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"65474","_from":"40589","_to":"40582"} +{"$label":"ACTS_IN","name":"Przewodniczacy Komisji","type":"Role","_key":"65473","_from":"40588","_to":"40582"} +{"$label":"ACTS_IN","name":"Bileterka","type":"Role","_key":"65472","_from":"40587","_to":"40582"} +{"$label":"ACTS_IN","name":"Piotr Balicki","type":"Role","_key":"65471","_from":"40586","_to":"40582"} +{"$label":"ACTS_IN","name":"Waldemar Rekowski","type":"Role","_key":"65470","_from":"40585","_to":"40582"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"65469","_from":"40584","_to":"40582"} +{"$label":"ACTS_IN","name":"Naczelnik","type":"Role","_key":"65468","_from":"40583","_to":"40582"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"120904","_from":"40590","_to":"70988"} +{"$label":"ACTS_IN","name":"Konstanty","type":"Role","_key":"116825","_from":"40590","_to":"68774"} +{"$label":"ACTS_IN","name":"Sara Evers","type":"Role","_key":"65498","_from":"40602","_to":"40601"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"116962","_from":"40602","_to":"68851"} +{"$label":"ACTS_IN","name":"Azra","type":"Role","_key":"110554","_from":"40602","_to":"65323"} +{"$label":"ACTS_IN","name":"Victoria the Chambermaid \/ Nicole","type":"Role","_key":"70048","_from":"40602","_to":"42711"} +{"$label":"DIRECTED","_key":"65510","_from":"40607","_to":"40603"} +{"$label":"ACTS_IN","name":"Bauji","type":"Role","_key":"65509","_from":"40606","_to":"40603"} +{"$label":"ACTS_IN","name":"Sayeeda","type":"Role","_key":"65508","_from":"40605","_to":"40603"} +{"$label":"ACTS_IN","name":"Rohan Raichand","type":"Role","_key":"65505","_from":"40604","_to":"40603"} +{"$label":"ACTS_IN","name":"Rohit\/Raj Chopra","type":"Role","_key":"110710","_from":"40604","_to":"65406"} +{"$label":"ACTS_IN","name":"Zaffar Khan","type":"Role","_key":"108782","_from":"40604","_to":"64303"} +{"$label":"ACTS_IN","name":"Aryan","type":"Role","_key":"98977","_from":"40604","_to":"58312"} +{"$label":"ACTS_IN","name":"Jalaluddin Mohammad Akbar","type":"Role","_key":"98397","_from":"40604","_to":"57963"} +{"$label":"ACTS_IN","name":"Lajwanti","type":"Role","_key":"120047","_from":"40605","_to":"70499"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108796","_from":"40607","_to":"64303"} +{"$label":"ACTS_IN","name":"Guest Appearance","type":"Role","_key":"100016","_from":"40607","_to":"59002"} +{"$label":"DIRECTED","_key":"100017","_from":"40607","_to":"59002"} +{"$label":"DIRECTED","_key":"72402","_from":"40607","_to":"43712"} +{"$label":"ACTS_IN","name":"Char","type":"Role","_key":"65531","_from":"40620","_to":"40608"} +{"$label":"ACTS_IN","name":"Obnoxious Toddler","type":"Role","_key":"65530","_from":"40619","_to":"40608"} +{"$label":"ACTS_IN","name":"Flower Girl","type":"Role","_key":"65529","_from":"40618","_to":"40608"} +{"$label":"ACTS_IN","name":"Pregnant Woman","type":"Role","_key":"65528","_from":"40617","_to":"40608"} +{"$label":"ACTS_IN","name":"Doctor's Assistant","type":"Role","_key":"65526","_from":"40616","_to":"40608"} +{"$label":"ACTS_IN","name":"Dr. Lily Mueller","type":"Role","_key":"65525","_from":"40615","_to":"40608"} +{"$label":"ACTS_IN","name":"Exhausted Mother","type":"Role","_key":"65524","_from":"40614","_to":"40608"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"65523","_from":"40613","_to":"40608"} +{"$label":"ACTS_IN","name":"Nurse Norma","type":"Role","_key":"65522","_from":"40612","_to":"40608"} +{"$label":"ACTS_IN","name":"Hospital Nurse","type":"Role","_key":"65521","_from":"40611","_to":"40608"} +{"$label":"ACTS_IN","name":"Francine Pomatter","type":"Role","_key":"65520","_from":"40610","_to":"40608"} +{"$label":"ACTS_IN","name":"Dawn","type":"Role","_key":"65518","_from":"40609","_to":"40608"} +{"$label":"DIRECTED","_key":"65511","_from":"40609","_to":"40608"} +{"$label":"ACTS_IN","name":"Juanita Bartlett","type":"Role","_key":"118671","_from":"40615","_to":"69773"} +{"$label":"ACTS_IN","name":"Titans Coach","type":"Role","_key":"65551","_from":"40628","_to":"40621"} +{"$label":"ACTS_IN","name":"Trotter","type":"Role","_key":"65544","_from":"40627","_to":"40621"} +{"$label":"ACTS_IN","name":"Randy Randinger","type":"Role","_key":"65543","_from":"40626","_to":"40621"} +{"$label":"ACTS_IN","name":"Jorge Juanson","type":"Role","_key":"65542","_from":"40625","_to":"40621"} +{"$label":"ACTS_IN","name":"Jasminder Featherfoot","type":"Role","_key":"65541","_from":"40624","_to":"40621"} +{"$label":"ACTS_IN","name":"Buddy Boy","type":"Role","_key":"65540","_from":"40623","_to":"40621"} +{"$label":"DIRECTED","_key":"65532","_from":"40622","_to":"40621"} +{"$label":"DIRECTED","_key":"72392","_from":"40622","_to":"43699"} +{"$label":"ACTS_IN","name":"Salwa","type":"Role","_key":"99299","_from":"40624","_to":"58513"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"90259","_from":"40624","_to":"53362"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"101690","_from":"40625","_to":"59845"} +{"$label":"ACTS_IN","name":"Zig-Zag","type":"Role","_key":"101316","_from":"40627","_to":"59645"} +{"$label":"ACTS_IN","name":"Esquire","type":"Role","_key":"97774","_from":"40627","_to":"57579"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"96875","_from":"40627","_to":"56966"} +{"$label":"ACTS_IN","name":"Shaun","type":"Role","_key":"87946","_from":"40628","_to":"52222"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"65572","_from":"40641","_to":"40629"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"65571","_from":"40640","_to":"40629"} +{"$label":"ACTS_IN","name":"Goth Girl","type":"Role","_key":"65570","_from":"40639","_to":"40629"} +{"$label":"ACTS_IN","name":"Young Sydney White","type":"Role","_key":"65569","_from":"40638","_to":"40629"} +{"$label":"ACTS_IN","name":"Professor Carleton","type":"Role","_key":"65568","_from":"40637","_to":"40629"} +{"$label":"ACTS_IN","name":"Embele","type":"Role","_key":"65567","_from":"40636","_to":"40629"} +{"$label":"ACTS_IN","name":"Christy","type":"Role","_key":"65566","_from":"40635","_to":"40629"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"65564","_from":"40634","_to":"40629"} +{"$label":"ACTS_IN","name":"Paul White","type":"Role","_key":"65563","_from":"40633","_to":"40629"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"65561","_from":"40632","_to":"40629"} +{"$label":"ACTS_IN","name":"Demetria Rosemead 'Dinky' Hotchkiss","type":"Role","_key":"65560","_from":"40631","_to":"40629"} +{"$label":"ACTS_IN","name":"Lenny","type":"Role","_key":"65559","_from":"40630","_to":"40629"} +{"$label":"ACTS_IN","name":"Jill Overton","type":"Role","_key":"119127","_from":"40631","_to":"70016"} +{"$label":"ACTS_IN","name":"Bartlett Henry","type":"Role","_key":"114743","_from":"40633","_to":"67588"} +{"$label":"ACTS_IN","name":"Sheriff James Riley","type":"Role","_key":"110961","_from":"40633","_to":"65539"} +{"$label":"ACTS_IN","name":"Vitamin J","type":"Role","_key":"90667","_from":"40634","_to":"53527"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"103757","_from":"40639","_to":"61022"} +{"$label":"ACTS_IN","name":"Psycho Blogger","type":"Role","_key":"65594","_from":"40652","_to":"40642"} +{"$label":"ACTS_IN","name":"Christie's Lawyer","type":"Role","_key":"65593","_from":"40651","_to":"40642"} +{"$label":"ACTS_IN","name":"Restaurant Hostess","type":"Role","_key":"65592","_from":"40650","_to":"40642"} +{"$label":"ACTS_IN","name":"Lingerie Salesgirl","type":"Role","_key":"65591","_from":"40649","_to":"40642"} +{"$label":"ACTS_IN","name":"Grandma Pearl","type":"Role","_key":"65589","_from":"40648","_to":"40642"} +{"$label":"ACTS_IN","name":"Hilary","type":"Role","_key":"65585","_from":"40647","_to":"40642"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"65582","_from":"40646","_to":"40642"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"65581","_from":"40645","_to":"40642"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"65580","_from":"40644","_to":"40642"} +{"$label":"DIRECTED","_key":"65574","_from":"40643","_to":"40642"} +{"$label":"DIRECTED","_key":"69067","_from":"40643","_to":"42268"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"110861","_from":"40645","_to":"65484"} +{"$label":"ACTS_IN","name":"Brookes","type":"Role","_key":"95439","_from":"40645","_to":"56146"} +{"$label":"ACTS_IN","name":"Julius Jones","type":"Role","_key":"88357","_from":"40645","_to":"52387"} +{"$label":"ACTS_IN","name":"Soldat Jamaal Montgomery","type":"Role","_key":"72420","_from":"40645","_to":"43716"} +{"$label":"ACTS_IN","name":"Giselle","type":"Role","_key":"65614","_from":"40668","_to":"40653"} +{"$label":"ACTS_IN","name":"Bonnie Newwood","type":"Role","_key":"65613","_from":"40667","_to":"40653"} +{"$label":"ACTS_IN","name":"Old Woman","type":"Role","_key":"65612","_from":"40666","_to":"40653"} +{"$label":"ACTS_IN","name":"River Guide","type":"Role","_key":"65611","_from":"40665","_to":"40653"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"65609","_from":"40664","_to":"40653"} +{"$label":"ACTS_IN","name":"Sandi","type":"Role","_key":"65608","_from":"40663","_to":"40653"} +{"$label":"ACTS_IN","name":"Greasy Man","type":"Role","_key":"65607","_from":"40662","_to":"40653"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"65606","_from":"40661","_to":"40653"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"65605","_from":"40660","_to":"40653"} +{"$label":"ACTS_IN","name":"Dick Stark","type":"Role","_key":"65604","_from":"40659","_to":"40653"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"65603","_from":"40658","_to":"40653"} +{"$label":"ACTS_IN","name":"Young Billy","type":"Role","_key":"65600","_from":"40657","_to":"40653"} +{"$label":"ACTS_IN","name":"Young Tom","type":"Role","_key":"65599","_from":"40656","_to":"40653"} +{"$label":"ACTS_IN","name":"Young Dan","type":"Role","_key":"65598","_from":"40655","_to":"40653"} +{"$label":"ACTS_IN","name":"Young Jerry","type":"Role","_key":"65597","_from":"40654","_to":"40653"} +{"$label":"ACTS_IN","name":"Suzie Cavandish","type":"Role","_key":"121166","_from":"40661","_to":"71176"} +{"$label":"ACTS_IN","name":"Sina","type":"Role","_key":"100277","_from":"40668","_to":"59136"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"91754","_from":"40668","_to":"54126"} +{"$label":"ACTS_IN","name":"Mark Thorn","type":"Role","_key":"65649","_from":"40675","_to":"40672"} +{"$label":"ACTS_IN","name":"Joan Hart","type":"Role","_key":"65645","_from":"40674","_to":"40672"} +{"$label":"ACTS_IN","name":"Damien Thorn","type":"Role","_key":"65642","_from":"40673","_to":"40672"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"65656","_from":"40678","_to":"40676"} +{"$label":"ACTS_IN","name":"Kate Reynolds","type":"Role","_key":"65655","_from":"40677","_to":"40676"} +{"$label":"ACTS_IN","name":"H7-25 - extraterrestrial child","type":"Role","_key":"65667","_from":"40681","_to":"40680"} +{"$label":"ACTS_IN","name":"H7-25 (aka Charlie Warren)","type":"Role","_key":"67496","_from":"40681","_to":"41568"} +{"$label":"DIRECTED","_key":"65669","_from":"40683","_to":"40682"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"65677","_from":"40686","_to":"40684"} +{"$label":"ACTS_IN","name":"Gen. Hugo Rodriguez","type":"Role","_key":"65676","_from":"40685","_to":"40684"} +{"$label":"ACTS_IN","name":"Lady Conway","type":"Role","_key":"65684","_from":"40689","_to":"40687"} +{"$label":"ACTS_IN","name":"Bertie","type":"Role","_key":"65681","_from":"40688","_to":"40687"} +{"$label":"ACTS_IN","name":"Great Ahmed Kahn","type":"Role","_key":"65693","_from":"40691","_to":"40690"} +{"$label":"ACTS_IN","name":"Destro \/ Iceberg","type":"Role","_key":"112187","_from":"40691","_to":"66249"} +{"$label":"DIRECTED","_key":"65701","_from":"40693","_to":"40692"} +{"$label":"DIRECTED","_key":"117895","_from":"40693","_to":"69301"} +{"$label":"DIRECTED","_key":"109130","_from":"40693","_to":"64472"} +{"$label":"DIRECTED","_key":"99568","_from":"40693","_to":"58693"} +{"$label":"DIRECTED","_key":"71273","_from":"40693","_to":"43242"} +{"$label":"ACTS_IN","name":"Mrs. Waterhouse","type":"Role","_key":"65734","_from":"40700","_to":"40696"} +{"$label":"ACTS_IN","name":"Old Lady Bradley","type":"Role","_key":"65729","_from":"40699","_to":"40696"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"65727","_from":"40698","_to":"40696"} +{"$label":"ACTS_IN","name":"The Judge","type":"Role","_key":"65725","_from":"40697","_to":"40696"} +{"$label":"ACTS_IN","name":"Bill Andrews","type":"Role","_key":"106987","_from":"40697","_to":"63076"} +{"$label":"ACTS_IN","name":"Dean Dunn","type":"Role","_key":"105068","_from":"40697","_to":"61836"} +{"$label":"ACTS_IN","name":"Prof. Gangreen","type":"Role","_key":"104612","_from":"40697","_to":"61532"} +{"$label":"ACTS_IN","name":"Mr. Everett Beasley","type":"Role","_key":"91160","_from":"40697","_to":"53771"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"65744","_from":"40704","_to":"40702"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"65742","_from":"40703","_to":"40702"} +{"$label":"ACTS_IN","name":"Styles","type":"Role","_key":"65749","_from":"40706","_to":"40705"} +{"$label":"ACTS_IN","name":"Clark Kent\/Superman","type":"Role","_key":"119705","_from":"40706","_to":"70306"} +{"$label":"ACTS_IN","name":"Clark Kent","type":"Role","_key":"111018","_from":"40706","_to":"65577"} +{"$label":"ACTS_IN","name":"Ronald Gibb","type":"Role","_key":"106763","_from":"40706","_to":"62941"} +{"$label":"ACTS_IN","name":"Mike Anderson","type":"Role","_key":"105735","_from":"40706","_to":"62248"} +{"$label":"ACTS_IN","name":"William 'Billy' Howard","type":"Role","_key":"96368","_from":"40706","_to":"56647"} +{"$label":"ACTS_IN","name":"Frank Peterson","type":"Role","_key":"67958","_from":"40706","_to":"41761"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"65768","_from":"40709","_to":"40707"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"65767","_from":"40708","_to":"40707"} +{"$label":"DIRECTED","_key":"65776","_from":"40712","_to":"40710"} +{"$label":"ACTS_IN","name":"Sally Bowles","type":"Role","_key":"65770","_from":"40711","_to":"40710"} +{"$label":"ACTS_IN","name":"Linda Marolla","type":"Role","_key":"95746","_from":"40711","_to":"56323"} +{"$label":"ACTS_IN","name":"Francine Evans","type":"Role","_key":"90756","_from":"40711","_to":"53566"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"72645","_from":"40711","_to":"43777"} +{"$label":"DIRECTED","_key":"110218","_from":"40712","_to":"65144"} +{"$label":"DIRECTED","_key":"65784","_from":"40717","_to":"40713"} +{"$label":"ACTS_IN","name":"Crew Chief Bob","type":"Role","_key":"65783","_from":"40716","_to":"40713"} +{"$label":"ACTS_IN","name":"Lt. Eddie Dykes","type":"Role","_key":"65780","_from":"40715","_to":"40713"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"65777","_from":"40714","_to":"40713"} +{"$label":"ACTS_IN","name":"Hal Griffin","type":"Role","_key":"116805","_from":"40716","_to":"68770"} +{"$label":"ACTS_IN","name":"Friar Tuck","type":"Role","_key":"65792","_from":"40719","_to":"40718"} +{"$label":"ACTS_IN","name":"Dr. Arthur Kemp","type":"Role","_key":"65796","_from":"40721","_to":"40720"} +{"$label":"ACTS_IN","name":"Keswani","type":"Role","_key":"65810","_from":"40726","_to":"40722"} +{"$label":"ACTS_IN","name":"Kamini","type":"Role","_key":"65803","_from":"40725","_to":"40722"} +{"$label":"ACTS_IN","name":"Lucky Shergill","type":"Role","_key":"65802","_from":"40724","_to":"40722"} +{"$label":"DIRECTED","_key":"65799","_from":"40723","_to":"40722"} +{"$label":"ACTS_IN","name":"Esha","type":"Role","_key":"100732","_from":"40725","_to":"59389"} +{"$label":"DIRECTED","_key":"65816","_from":"40733","_to":"40728"} +{"$label":"ACTS_IN","name":"Anatoliy","type":"Role","_key":"65815","_from":"40732","_to":"40728"} +{"$label":"ACTS_IN","name":"Marie's Mother","type":"Role","_key":"65814","_from":"40731","_to":"40728"} +{"$label":"ACTS_IN","name":"Andrei Misharin \/ Kolya Kaidavosky","type":"Role","_key":"65813","_from":"40730","_to":"40728"} +{"$label":"ACTS_IN","name":"Marie Jones","type":"Role","_key":"65811","_from":"40729","_to":"40728"} +{"$label":"ACTS_IN","name":"Fatos","type":"Role","_key":"65823","_from":"40737","_to":"40734"} +{"$label":"ACTS_IN","name":"Silke","type":"Role","_key":"65822","_from":"40736","_to":"40734"} +{"$label":"DIRECTED","_key":"65817","_from":"40735","_to":"40734"} +{"$label":"DIRECTED","_key":"73146","_from":"40735","_to":"43990"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"65827","_from":"40739","_to":"40738"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"65830","_from":"40742","_to":"40740"} +{"$label":"DIRECTED","_key":"65829","_from":"40741","_to":"40740"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"65835","_from":"40746","_to":"40743"} +{"$label":"ACTS_IN","name":"Ballerina","type":"Role","_key":"65834","_from":"40745","_to":"40743"} +{"$label":"ACTS_IN","name":"Michele Monet","type":"Role","_key":"65833","_from":"40744","_to":"40743"} +{"$label":"ACTS_IN","name":"Lieutenant Philippe Meynard","type":"Role","_key":"65847","_from":"40749","_to":"40747"} +{"$label":"ACTS_IN","name":"Charlotte Bertaud","type":"Role","_key":"65846","_from":"40748","_to":"40747"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"104048","_from":"40748","_to":"61214"} +{"$label":"ACTS_IN","name":"Jack Jefferson","type":"Role","_key":"103377","_from":"40749","_to":"60813"} +{"$label":"ACTS_IN","name":"Cesar","type":"Role","_key":"65864","_from":"40756","_to":"40750"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"65863","_from":"40755","_to":"40750"} +{"$label":"ACTS_IN","name":"Rotten Ronnie","type":"Role","_key":"65862","_from":"40754","_to":"40750"} +{"$label":"ACTS_IN","name":"MRI Technician","type":"Role","_key":"65860","_from":"40753","_to":"40750"} +{"$label":"ACTS_IN","name":"Prison Warden","type":"Role","_key":"65858","_from":"40752","_to":"40750"} +{"$label":"ACTS_IN","name":"D'Antoni","type":"Role","_key":"65856","_from":"40751","_to":"40750"} +{"$label":"ACTS_IN","name":"Filmmaker","type":"Role","_key":"99240","_from":"40756","_to":"58482"} +{"$label":"ACTS_IN","name":"Terkel's Mum","type":"Role","_key":"65869","_from":"40761","_to":"40757"} +{"$label":"ACTS_IN","name":"Sten","type":"Role","_key":"65868","_from":"40760","_to":"40757"} +{"$label":"DIRECTED","_key":"65866","_from":"40759","_to":"40757"} +{"$label":"DIRECTED","_key":"65865","_from":"40758","_to":"40757"} +{"$label":"DIRECTED","_key":"106671","_from":"40758","_to":"62863"} +{"$label":"DIRECTED","_key":"106672","_from":"40759","_to":"62863"} +{"$label":"DIRECTED","_key":"114464","_from":"40760","_to":"67424"} +{"$label":"ACTS_IN","name":"Alex Klein","type":"Role","_key":"114456","_from":"40760","_to":"67424"} +{"$label":"ACTS_IN","name":"Anders Matthesen","type":"Role","_key":"110352","_from":"40760","_to":"65210"} +{"$label":"ACTS_IN","name":"Kriss","type":"Role","_key":"95051","_from":"40760","_to":"55952"} +{"$label":"ACTS_IN","name":"Gildas","type":"Role","_key":"65885","_from":"40767","_to":"40764"} +{"$label":"DIRECTED","_key":"65881","_from":"40766","_to":"40764"} +{"$label":"DIRECTED","_key":"65880","_from":"40765","_to":"40764"} +{"$label":"ACTS_IN","name":"Helma Schl\u00f6nzke","type":"Role","_key":"65920","_from":"40777","_to":"40774"} +{"$label":"ACTS_IN","name":"Heinz W\u00e4scher","type":"Role","_key":"65918","_from":"40776","_to":"40774"} +{"$label":"ACTS_IN","name":"Peter Schl\u00f6nzke","type":"Role","_key":"65917","_from":"40775","_to":"40774"} +{"$label":"DIRECTED","_key":"65916","_from":"40775","_to":"40774"} +{"$label":"ACTS_IN","name":"Horst Schl\u00e4mmer","type":"Role","_key":"108766","_from":"40775","_to":"64295"} +{"$label":"ACTS_IN","name":"Olaf Kischewski","type":"Role","_key":"66784","_from":"40775","_to":"41259"} +{"$label":"ACTS_IN","name":"Don Pascual","type":"Role","_key":"65931","_from":"40784","_to":"40779"} +{"$label":"ACTS_IN","name":"Gracia","type":"Role","_key":"65930","_from":"40783","_to":"40779"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"65929","_from":"40782","_to":"40779"} +{"$label":"ACTS_IN","name":"Silvio","type":"Role","_key":"65928","_from":"40781","_to":"40779"} +{"$label":"DIRECTED","_key":"65927","_from":"40780","_to":"40779"} +{"$label":"ACTS_IN","name":"Jonhefe","type":"Role","_key":"65936","_from":"40789","_to":"40785"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"65935","_from":"40788","_to":"40785"} +{"$label":"ACTS_IN","name":"Rosario Tijeras","type":"Role","_key":"65933","_from":"40787","_to":"40785"} +{"$label":"DIRECTED","_key":"65932","_from":"40786","_to":"40785"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"73145","_from":"40787","_to":"43989"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"65939","_from":"40792","_to":"40790"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"65938","_from":"40791","_to":"40790"} +{"$label":"ACTS_IN","name":"Lehrer Altmann","type":"Role","_key":"65949","_from":"40797","_to":"40793"} +{"$label":"ACTS_IN","name":"Silke","type":"Role","_key":"65943","_from":"40796","_to":"40793"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"65941","_from":"40795","_to":"40793"} +{"$label":"DIRECTED","_key":"65940","_from":"40794","_to":"40793"} +{"$label":"ACTS_IN","name":"Sozialarbeiterin","type":"Role","_key":"65954","_from":"40801","_to":"40798"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"65952","_from":"40800","_to":"40798"} +{"$label":"DIRECTED","_key":"65950","_from":"40799","_to":"40798"} +{"$label":"ACTS_IN","name":"Mutter Kroko","type":"Role","_key":"68433","_from":"40801","_to":"41976"} +{"$label":"ACTS_IN","name":"Urmel","type":"Role","_key":"65961","_from":"40805","_to":"40802"} +{"$label":"DIRECTED","_key":"65958","_from":"40804","_to":"40802"} +{"$label":"DIRECTED","_key":"65957","_from":"40803","_to":"40802"} +{"$label":"DIRECTED","_key":"68293","_from":"40803","_to":"41927"} +{"$label":"DIRECTED","_key":"66801","_from":"40804","_to":"41265"} +{"$label":"ACTS_IN","name":"Garnik","type":"Role","_key":"65967","_from":"40810","_to":"40807"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"65966","_from":"40809","_to":"40807"} +{"$label":"DIRECTED","_key":"65964","_from":"40808","_to":"40807"} +{"$label":"ACTS_IN","name":"Mecha","type":"Role","_key":"65973","_from":"40815","_to":"40811"} +{"$label":"ACTS_IN","name":"Nacho","type":"Role","_key":"65971","_from":"40814","_to":"40811"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"65970","_from":"40813","_to":"40811"} +{"$label":"DIRECTED","_key":"65969","_from":"40812","_to":"40811"} +{"$label":"ACTS_IN","name":"Julio","type":"Role","_key":"95722","_from":"40813","_to":"56298"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"65978","_from":"40821","_to":"40816"} +{"$label":"ACTS_IN","name":"Floriane","type":"Role","_key":"65977","_from":"40820","_to":"40816"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"65976","_from":"40819","_to":"40816"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"65975","_from":"40818","_to":"40816"} +{"$label":"DIRECTED","_key":"65974","_from":"40817","_to":"40816"} +{"$label":"DIRECTED","_key":"65984","_from":"40828","_to":"40822"} +{"$label":"ACTS_IN","name":"Gruby","type":"Role","_key":"65983","_from":"40827","_to":"40822"} +{"$label":"ACTS_IN","name":"Dziadek Ka\u015bki","type":"Role","_key":"65982","_from":"40826","_to":"40822"} +{"$label":"ACTS_IN","name":"Ksi\u0105dz Adam","type":"Role","_key":"65981","_from":"40825","_to":"40822"} +{"$label":"ACTS_IN","name":"Lisowska","type":"Role","_key":"65980","_from":"40824","_to":"40822"} +{"$label":"ACTS_IN","name":"Chrzestny","type":"Role","_key":"65979","_from":"40823","_to":"40822"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"65990","_from":"40835","_to":"40829"} +{"$label":"ACTS_IN","name":"Irmgard","type":"Role","_key":"65989","_from":"40834","_to":"40829"} +{"$label":"ACTS_IN","name":"Korbinian","type":"Role","_key":"65988","_from":"40833","_to":"40829"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"65987","_from":"40832","_to":"40829"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"65986","_from":"40831","_to":"40829"} +{"$label":"DIRECTED","_key":"65985","_from":"40830","_to":"40829"} +{"$label":"ACTS_IN","name":"Sermet Bey","type":"Role","_key":"65994","_from":"40840","_to":"40836"} +{"$label":"ACTS_IN","name":"M\u00fcnire","type":"Role","_key":"65993","_from":"40839","_to":"40836"} +{"$label":"ACTS_IN","name":"S\u00fcleyman","type":"Role","_key":"65992","_from":"40838","_to":"40836"} +{"$label":"DIRECTED","_key":"65991","_from":"40837","_to":"40836"} +{"$label":"ACTS_IN","name":"Birg\u00fcl","type":"Role","_key":"94273","_from":"40839","_to":"55515"} +{"$label":"DIRECTED","_key":"65995","_from":"40842","_to":"40841"} +{"$label":"DIRECTED","_key":"66006","_from":"40845","_to":"40843"} +{"$label":"ACTS_IN","name":"Israel (uncredited)","type":"Role","_key":"66005","_from":"40844","_to":"40843"} +{"$label":"ACTS_IN","name":"Detective Ray Levesque","type":"Role","_key":"66011","_from":"40847","_to":"40846"} +{"$label":"ACTS_IN","name":"Mr. Hiort","type":"Role","_key":"66020","_from":"40854","_to":"40848"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"66018","_from":"40853","_to":"40848"} +{"$label":"ACTS_IN","name":"Tone","type":"Role","_key":"66017","_from":"40852","_to":"40848"} +{"$label":"ACTS_IN","name":"Lasse","type":"Role","_key":"66016","_from":"40851","_to":"40848"} +{"$label":"ACTS_IN","name":"Alise","type":"Role","_key":"66015","_from":"40850","_to":"40848"} +{"$label":"DIRECTED","_key":"66014","_from":"40849","_to":"40848"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"113218","_from":"40852","_to":"66713"} +{"$label":"ACTS_IN","name":"Sissel","type":"Role","_key":"107074","_from":"40852","_to":"63130"} +{"$label":"ACTS_IN","name":"Lieber Gott","type":"Role","_key":"66025","_from":"40859","_to":"40855"} +{"$label":"ACTS_IN","name":"Peter Lenz","type":"Role","_key":"66024","_from":"40858","_to":"40855"} +{"$label":"ACTS_IN","name":"Karo Lenz","type":"Role","_key":"66022","_from":"40857","_to":"40855"} +{"$label":"DIRECTED","_key":"66021","_from":"40856","_to":"40855"} +{"$label":"ACTS_IN","name":"Albert von Allmen","type":"Role","_key":"109226","_from":"40859","_to":"64531"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66029","_from":"40864","_to":"40860"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66028","_from":"40863","_to":"40860"} +{"$label":"DIRECTED","_key":"66027","_from":"40862","_to":"40860"} +{"$label":"DIRECTED","_key":"66026","_from":"40861","_to":"40860"} +{"$label":"DIRECTED","_key":"89675","_from":"40862","_to":"53081"} +{"$label":"DIRECTED","_key":"66034","_from":"40869","_to":"40865"} +{"$label":"ACTS_IN","name":"Jodi Chang","type":"Role","_key":"66032","_from":"40868","_to":"40865"} +{"$label":"ACTS_IN","name":"Desert Jack Sawyer","type":"Role","_key":"66031","_from":"40867","_to":"40865"} +{"$label":"ACTS_IN","name":"Burt Gummer","type":"Role","_key":"66030","_from":"40866","_to":"40865"} +{"$label":"ACTS_IN","name":"Dr. Frank Reno","type":"Role","_key":"107169","_from":"40866","_to":"63209"} +{"$label":"ACTS_IN","name":"Burt Gummer","type":"Role","_key":"67691","_from":"40866","_to":"41634"} +{"$label":"ACTS_IN","name":"Hiram Gummer","type":"Role","_key":"66496","_from":"40866","_to":"41115"} +{"$label":"ACTS_IN","name":"Lavender","type":"Role","_key":"66043","_from":"40872","_to":"40870"} +{"$label":"ACTS_IN","name":"Michael 'Mikey' Wormwood","type":"Role","_key":"66042","_from":"40871","_to":"40870"} +{"$label":"ACTS_IN","name":"Mr. Talmann","type":"Role","_key":"66048","_from":"40876","_to":"40873"} +{"$label":"ACTS_IN","name":"Mrs. Talmann","type":"Role","_key":"66047","_from":"40875","_to":"40873"} +{"$label":"ACTS_IN","name":"Mrs. Herbert","type":"Role","_key":"66046","_from":"40874","_to":"40873"} +{"$label":"ACTS_IN","name":"Ninereeds","type":"Role","_key":"95120","_from":"40874","_to":"55975"} +{"$label":"ACTS_IN","name":"Sister Superior","type":"Role","_key":"68059","_from":"40874","_to":"41817"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"66054","_from":"40880","_to":"40877"} +{"$label":"ACTS_IN","name":"Sanda","type":"Role","_key":"66053","_from":"40879","_to":"40877"} +{"$label":"ACTS_IN","name":"Ilona","type":"Role","_key":"66052","_from":"40878","_to":"40877"} +{"$label":"ACTS_IN","name":"Fung Sei","type":"Role","_key":"66072","_from":"40885","_to":"40883"} +{"$label":"ACTS_IN","name":"Jennie","type":"Role","_key":"66071","_from":"40884","_to":"40883"} +{"$label":"ACTS_IN","name":"Fong Tuk","type":"Role","_key":"113476","_from":"40885","_to":"66860"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"66081","_from":"40890","_to":"40886"} +{"$label":"ACTS_IN","name":"Ux\u00eda Cambarro","type":"Role","_key":"66079","_from":"40889","_to":"40886"} +{"$label":"ACTS_IN","name":"B\u00e1rbara","type":"Role","_key":"66078","_from":"40888","_to":"40886"} +{"$label":"ACTS_IN","name":"Paul Marsh","type":"Role","_key":"66076","_from":"40887","_to":"40886"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"111571","_from":"40889","_to":"65871"} +{"$label":"DIRECTED","_key":"66088","_from":"40892","_to":"40891"} +{"$label":"ACTS_IN","name":"Arthur \"The Professor\" Holmwood","type":"Role","_key":"66092","_from":"40894","_to":"40893"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66121","_from":"40907","_to":"40898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66120","_from":"40906","_to":"40898"} +{"$label":"ACTS_IN","name":"Gozo","type":"Role","_key":"66119","_from":"40905","_to":"40898"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66118","_from":"40904","_to":"40898"} +{"$label":"ACTS_IN","name":"Yuji","type":"Role","_key":"66116","_from":"40903","_to":"40898"} +{"$label":"ACTS_IN","name":"Young Mitsuko","type":"Role","_key":"66115","_from":"40902","_to":"40898"} +{"$label":"ACTS_IN","name":"Mitsuko \/ Sayuri \/ Taeko","type":"Role","_key":"66114","_from":"40901","_to":"40898"} +{"$label":"ACTS_IN","name":"Young Mitsuko","type":"Role","_key":"66113","_from":"40900","_to":"40898"} +{"$label":"DIRECTED","_key":"66112","_from":"40899","_to":"40898"} +{"$label":"DIRECTED","_key":"91245","_from":"40899","_to":"53800"} +{"$label":"ACTS_IN","name":"Suguru Sugihara","type":"Role","_key":"97830","_from":"40907","_to":"57614"} +{"$label":"ACTS_IN","name":"Subway Attendant","type":"Role","_key":"66137","_from":"40911","_to":"40908"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"66135","_from":"40910","_to":"40908"} +{"$label":"ACTS_IN","name":"Street Pickup","type":"Role","_key":"66132","_from":"40909","_to":"40908"} +{"$label":"ACTS_IN","name":"Aleki Tali","type":"Role","_key":"66160","_from":"40930","_to":"40912"} +{"$label":"ACTS_IN","name":"Dorothy Crimp","type":"Role","_key":"66159","_from":"40929","_to":"40912"} +{"$label":"ACTS_IN","name":"Leo Wilson","type":"Role","_key":"66158","_from":"40928","_to":"40912"} +{"$label":"ACTS_IN","name":"Rene Aarsen","type":"Role","_key":"66157","_from":"40927","_to":"40912"} +{"$label":"ACTS_IN","name":"Brian Wilson","type":"Role","_key":"66156","_from":"40926","_to":"40912"} +{"$label":"ACTS_IN","name":"AOS \/ ATS Officer","type":"Role","_key":"66154","_from":"40925","_to":"40912"} +{"$label":"ACTS_IN","name":"Ross Percy","type":"Role","_key":"66153","_from":"40924","_to":"40912"} +{"$label":"ACTS_IN","name":"Dion Percy","type":"Role","_key":"66152","_from":"40923","_to":"40912"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"66151","_from":"40922","_to":"40912"} +{"$label":"ACTS_IN","name":"Jimmy Dickson","type":"Role","_key":"66150","_from":"40921","_to":"40912"} +{"$label":"ACTS_IN","name":"Stacey Percy","type":"Role","_key":"66149","_from":"40920","_to":"40912"} +{"$label":"ACTS_IN","name":"Chiquita Holden","type":"Role","_key":"66148","_from":"40919","_to":"40912"} +{"$label":"ACTS_IN","name":"Stu Guthrie","type":"Role","_key":"66147","_from":"40918","_to":"40912"} +{"$label":"ACTS_IN","name":"Paul Knox","type":"Role","_key":"66146","_from":"40917","_to":"40912"} +{"$label":"ACTS_IN","name":"Helen Dickson","type":"Role","_key":"66145","_from":"40916","_to":"40912"} +{"$label":"ACTS_IN","name":"David Gray","type":"Role","_key":"66144","_from":"40915","_to":"40912"} +{"$label":"ACTS_IN","name":"Garry Holden","type":"Role","_key":"66143","_from":"40914","_to":"40912"} +{"$label":"DIRECTED","_key":"66140","_from":"40913","_to":"40912"} +{"$label":"ACTS_IN","name":"Vigo","type":"Role","_key":"111787","_from":"40915","_to":"65980"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"66165","_from":"40933","_to":"40931"} +{"$label":"ACTS_IN","name":"Anderson Lee","type":"Role","_key":"66164","_from":"40932","_to":"40931"} +{"$label":"ACTS_IN","name":"Hitchhiker","type":"Role","_key":"111284","_from":"40933","_to":"65718"} +{"$label":"ACTS_IN","name":"US Marine","type":"Role","_key":"66186","_from":"40948","_to":"40934"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66185","_from":"40947","_to":"40934"} +{"$label":"ACTS_IN","name":"Firas scarpe","type":"Role","_key":"66184","_from":"40946","_to":"40934"} +{"$label":"ACTS_IN","name":"Soldato americano","type":"Role","_key":"66183","_from":"40945","_to":"40934"} +{"$label":"ACTS_IN","name":"First Sergeant","type":"Role","_key":"66182","_from":"40944","_to":"40934"} +{"$label":"ACTS_IN","name":"Vecchio campo minato","type":"Role","_key":"66181","_from":"40943","_to":"40934"} +{"$label":"ACTS_IN","name":"Ladro bazar","type":"Role","_key":"66180","_from":"40942","_to":"40934"} +{"$label":"ACTS_IN","name":"Al Giumeil","type":"Role","_key":"66179","_from":"40941","_to":"40934"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"66178","_from":"40940","_to":"40934"} +{"$label":"ACTS_IN","name":"Dottore Salman","type":"Role","_key":"66177","_from":"40939","_to":"40934"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"66176","_from":"40938","_to":"40934"} +{"$label":"ACTS_IN","name":"Dottor Guazzelli","type":"Role","_key":"66175","_from":"40937","_to":"40934"} +{"$label":"ACTS_IN","name":"Avvocato Scuotilancia","type":"Role","_key":"66174","_from":"40936","_to":"40934"} +{"$label":"ACTS_IN","name":"Signora Serao","type":"Role","_key":"66173","_from":"40935","_to":"40934"} +{"$label":"DIRECTED","_key":"66192","_from":"40952","_to":"40949"} +{"$label":"ACTS_IN","name":"Piggy","type":"Role","_key":"66190","_from":"40951","_to":"40949"} +{"$label":"ACTS_IN","name":"Jack Merridew","type":"Role","_key":"66189","_from":"40950","_to":"40949"} +{"$label":"ACTS_IN","name":"Alessia","type":"Role","_key":"66204","_from":"40959","_to":"40953"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"66203","_from":"40958","_to":"40953"} +{"$label":"ACTS_IN","name":"Gianni","type":"Role","_key":"66202","_from":"40957","_to":"40953"} +{"$label":"ACTS_IN","name":"Lucia","type":"Role","_key":"66201","_from":"40956","_to":"40953"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"66200","_from":"40955","_to":"40953"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"66197","_from":"40954","_to":"40953"} +{"$label":"DIRECTED","_key":"66193","_from":"40954","_to":"40953"} +{"$label":"ACTS_IN","name":"Cecilia's Sister","type":"Role","_key":"66209","_from":"40961","_to":"40960"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66231","_from":"40975","_to":"40962"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"66230","_from":"40974","_to":"40962"} +{"$label":"ACTS_IN","name":"Schwanthaler","type":"Role","_key":"66229","_from":"40973","_to":"40962"} +{"$label":"ACTS_IN","name":"Garderobiere","type":"Role","_key":"66228","_from":"40972","_to":"40962"} +{"$label":"ACTS_IN","name":"Garderobiere","type":"Role","_key":"66227","_from":"40971","_to":"40962"} +{"$label":"ACTS_IN","name":"Gerda Jessike","type":"Role","_key":"66226","_from":"40970","_to":"40962"} +{"$label":"ACTS_IN","name":"Frl. Matussek","type":"Role","_key":"66225","_from":"40969","_to":"40962"} +{"$label":"ACTS_IN","name":"Klofrau","type":"Role","_key":"66224","_from":"40968","_to":"40962"} +{"$label":"ACTS_IN","name":"Markus Wandrey","type":"Role","_key":"66223","_from":"40967","_to":"40962"} +{"$label":"ACTS_IN","name":"Heinz B\u00f6hm","type":"Role","_key":"66222","_from":"40966","_to":"40962"} +{"$label":"ACTS_IN","name":"Bemmerl","type":"Role","_key":"66220","_from":"40965","_to":"40962"} +{"$label":"ACTS_IN","name":"Dr. von R\u00fcden","type":"Role","_key":"66219","_from":"40964","_to":"40962"} +{"$label":"ACTS_IN","name":"Frl. Miriam","type":"Role","_key":"66218","_from":"40963","_to":"40962"} +{"$label":"ACTS_IN","name":"Magdalena Trenner","type":"Role","_key":"89977","_from":"40968","_to":"53231"} +{"$label":"ACTS_IN","name":"Fat Dan","type":"Role","_key":"66251","_from":"40988","_to":"40976"} +{"$label":"ACTS_IN","name":"Eddie C","type":"Role","_key":"66250","_from":"40987","_to":"40976"} +{"$label":"ACTS_IN","name":"Eddie B","type":"Role","_key":"66249","_from":"40986","_to":"40976"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"66248","_from":"40985","_to":"40976"} +{"$label":"ACTS_IN","name":"Lord John","type":"Role","_key":"66247","_from":"40984","_to":"40976"} +{"$label":"ACTS_IN","name":"Eddie A","type":"Role","_key":"66246","_from":"40983","_to":"40976"} +{"$label":"ACTS_IN","name":"Doreen","type":"Role","_key":"66244","_from":"40982","_to":"40976"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"66243","_from":"40981","_to":"40976"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"66242","_from":"40980","_to":"40976"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"66241","_from":"40979","_to":"40976"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"66240","_from":"40978","_to":"40976"} +{"$label":"ACTS_IN","name":"French Paul","type":"Role","_key":"66238","_from":"40977","_to":"40976"} +{"$label":"ACTS_IN","name":"Harper","type":"Role","_key":"102028","_from":"40977","_to":"60028"} +{"$label":"ACTS_IN","name":"Hector Lee","type":"Role","_key":"98635","_from":"40980","_to":"58112"} +{"$label":"ACTS_IN","name":"Hoag","type":"Role","_key":"90495","_from":"40980","_to":"53461"} +{"$label":"ACTS_IN","name":"Fong","type":"Role","_key":"94749","_from":"40984","_to":"55802"} +{"$label":"ACTS_IN","name":"General Jantapan","type":"Role","_key":"90154","_from":"40984","_to":"53305"} +{"$label":"ACTS_IN","name":"Shaolin Monk","type":"Role","_key":"66267","_from":"40995","_to":"40989"} +{"$label":"ACTS_IN","name":"Sung Yuen Kin","type":"Role","_key":"66264","_from":"40994","_to":"40989"} +{"$label":"ACTS_IN","name":"Chow Chi Yu","type":"Role","_key":"66263","_from":"40993","_to":"40989"} +{"$label":"ACTS_IN","name":"Yan So So \/ Chao Min","type":"Role","_key":"66260","_from":"40992","_to":"40989"} +{"$label":"ACTS_IN","name":"Siu Chiu","type":"Role","_key":"66259","_from":"40991","_to":"40989"} +{"$label":"DIRECTED","_key":"66253","_from":"40990","_to":"40989"} +{"$label":"DIRECTED","_key":"120249","_from":"40990","_to":"70612"} +{"$label":"DIRECTED","_key":"117263","_from":"40990","_to":"68969"} +{"$label":"DIRECTED","_key":"117018","_from":"40990","_to":"68869"} +{"$label":"DIRECTED","_key":"117004","_from":"40990","_to":"68861"} +{"$label":"DIRECTED","_key":"108416","_from":"40990","_to":"64096"} +{"$label":"DIRECTED","_key":"68492","_from":"40990","_to":"42007"} +{"$label":"ACTS_IN","name":"Hoi Tong","type":"Role","_key":"120247","_from":"40991","_to":"70612"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"117002","_from":"40991","_to":"68861"} +{"$label":"ACTS_IN","name":"Saeko Nogami \/ Anna","type":"Role","_key":"68485","_from":"40991","_to":"42007"} +{"$label":"ACTS_IN","name":"Ren Ying Ying","type":"Role","_key":"117777","_from":"40992","_to":"69234"} +{"$label":"ACTS_IN","name":"Ti Yi-er (as Man Cheung)","type":"Role","_key":"117259","_from":"40992","_to":"68969"} +{"$label":"ACTS_IN","name":"Fok Yun Gap as adult (as Kar Yan Leung)","type":"Role","_key":"117734","_from":"40994","_to":"69206"} +{"$label":"ACTS_IN","name":"Leung Fu","type":"Role","_key":"117262","_from":"40994","_to":"68969"} +{"$label":"DIRECTED","_key":"66274","_from":"40998","_to":"40996"} +{"$label":"ACTS_IN","name":"Ling Ling","type":"Role","_key":"66272","_from":"40997","_to":"40996"} +{"$label":"DIRECTED","_key":"72300","_from":"40998","_to":"43675"} +{"$label":"ACTS_IN","name":"Zombie","type":"Role","_key":"66295","_from":"41011","_to":"40999"} +{"$label":"ACTS_IN","name":"Zombie","type":"Role","_key":"66294","_from":"41010","_to":"40999"} +{"$label":"ACTS_IN","name":"Zombie","type":"Role","_key":"66293","_from":"41009","_to":"40999"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"66292","_from":"41008","_to":"40999"} +{"$label":"ACTS_IN","name":"Caleb","type":"Role","_key":"66291","_from":"41007","_to":"40999"} +{"$label":"ACTS_IN","name":"Russel","type":"Role","_key":"66290","_from":"41006","_to":"40999"} +{"$label":"ACTS_IN","name":"Explosives Captain","type":"Role","_key":"66289","_from":"41005","_to":"40999"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"66288","_from":"41004","_to":"40999"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"66287","_from":"41003","_to":"40999"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"66286","_from":"41002","_to":"40999"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"66285","_from":"41001","_to":"40999"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"66281","_from":"41000","_to":"40999"} +{"$label":"ACTS_IN","name":"Tattooed Yakuza Boss","type":"Role","_key":"66307","_from":"41022","_to":"41012"} +{"$label":"ACTS_IN","name":"Student murdered in Cage","type":"Role","_key":"66306","_from":"41021","_to":"41012"} +{"$label":"ACTS_IN","name":"Jing","type":"Role","_key":"66305","_from":"41020","_to":"41012"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"66304","_from":"41019","_to":"41012"} +{"$label":"ACTS_IN","name":"Drillmaster","type":"Role","_key":"66302","_from":"41018","_to":"41012"} +{"$label":"ACTS_IN","name":"Little Jing (as Mo Ka Lai)","type":"Role","_key":"66301","_from":"41017","_to":"41012"} +{"$label":"ACTS_IN","name":"Young Charlene Ching","type":"Role","_key":"66300","_from":"41016","_to":"41012"} +{"$label":"ACTS_IN","name":"Little Katherine","type":"Role","_key":"66299","_from":"41015","_to":"41012"} +{"$label":"ACTS_IN","name":"Madam M","type":"Role","_key":"66297","_from":"41014","_to":"41012"} +{"$label":"ACTS_IN","name":"Fiona Birch","type":"Role","_key":"66296","_from":"41013","_to":"41012"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"90153","_from":"41021","_to":"53305"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"66311","_from":"41024","_to":"41023"} +{"$label":"DIRECTED","_key":"66318","_from":"41027","_to":"41025"} +{"$label":"ACTS_IN","name":"Announcer","type":"Role","_key":"66317","_from":"41026","_to":"41025"} +{"$label":"ACTS_IN","name":"Truvy Jones","type":"Role","_key":"66330","_from":"41031","_to":"41030"} +{"$label":"ACTS_IN","name":"Doralee Rhodes","type":"Role","_key":"120222","_from":"41031","_to":"70600"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"109481","_from":"41031","_to":"64671"} +{"$label":"ACTS_IN","name":"Mona Stangley","type":"Role","_key":"108888","_from":"41031","_to":"64354"} +{"$label":"ACTS_IN","name":"Ron Wachter","type":"Role","_key":"66342","_from":"41034","_to":"41033"} +{"$label":"ACTS_IN","name":"David Rose","type":"Role","_key":"66347","_from":"41037","_to":"41035"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"66346","_from":"41036","_to":"41035"} +{"$label":"ACTS_IN","name":"Lehrer","type":"Role","_key":"66351","_from":"41041","_to":"41038"} +{"$label":"ACTS_IN","name":"Charlotte Palfy","type":"Role","_key":"66350","_from":"41040","_to":"41038"} +{"$label":"ACTS_IN","name":"Louise Kroeger","type":"Role","_key":"66349","_from":"41039","_to":"41038"} +{"$label":"ACTS_IN","name":"Helga Katrina Sinclair","type":"Role","_key":"66356","_from":"41043","_to":"41042"} +{"$label":"ACTS_IN","name":"Brenda Lee Van Buren","type":"Role","_key":"89738","_from":"41043","_to":"53117"} +{"$label":"ACTS_IN","name":"Susan Ivanova","type":"Role","_key":"66875","_from":"41043","_to":"41295"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"66363","_from":"41045","_to":"41044"} +{"$label":"ACTS_IN","name":"Renato's Mother","type":"Role","_key":"66368","_from":"41049","_to":"41046"} +{"$label":"ACTS_IN","name":"Renato's Father","type":"Role","_key":"66367","_from":"41048","_to":"41046"} +{"$label":"ACTS_IN","name":"Renato Amoroso","type":"Role","_key":"66366","_from":"41047","_to":"41046"} +{"$label":"ACTS_IN","name":"Cliff \"Scorpion\" Albrect","type":"Role","_key":"66373","_from":"41052","_to":"41050"} +{"$label":"ACTS_IN","name":"Kenneth Joyce","type":"Role","_key":"66372","_from":"41051","_to":"41050"} +{"$label":"ACTS_IN","name":"Dr. Hamilton","type":"Role","_key":"119783","_from":"41052","_to":"70331"} +{"$label":"ACTS_IN","name":"Agent Thornton","type":"Role","_key":"93412","_from":"41052","_to":"55011"} +{"$label":"ACTS_IN","name":"Loostgarten","type":"Role","_key":"66380","_from":"41055","_to":"41053"} +{"$label":"ACTS_IN","name":"Willoughby Whitfield","type":"Role","_key":"66376","_from":"41054","_to":"41053"} +{"$label":"DIRECTED","_key":"66386","_from":"41059","_to":"41056"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"66384","_from":"41058","_to":"41056"} +{"$label":"ACTS_IN","name":"Averell","type":"Role","_key":"66383","_from":"41057","_to":"41056"} +{"$label":"ACTS_IN","name":"Ramzy","type":"Role","_key":"104437","_from":"41057","_to":"61431"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"96155","_from":"41057","_to":"56512"} +{"$label":"DIRECTED","_key":"96154","_from":"41057","_to":"56512"} +{"$label":"DIRECTED","_key":"118236","_from":"41059","_to":"69499"} +{"$label":"DIRECTED","_key":"66393","_from":"41063","_to":"41060"} +{"$label":"ACTS_IN","name":"Andy LaCrosse","type":"Role","_key":"66388","_from":"41062","_to":"41060"} +{"$label":"ACTS_IN","name":"Missy, the Babysitter","type":"Role","_key":"66387","_from":"41061","_to":"41060"} +{"$label":"DIRECTED","_key":"66413","_from":"41069","_to":"41067"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"66412","_from":"41068","_to":"41067"} +{"$label":"DIRECTED","_key":"116622","_from":"41069","_to":"68648"} +{"$label":"ACTS_IN","name":"Gregor Vandenburg","type":"Role","_key":"66439","_from":"41076","_to":"41074"} +{"$label":"ACTS_IN","name":"Eva Thompson","type":"Role","_key":"66437","_from":"41075","_to":"41074"} +{"$label":"ACTS_IN","name":"Stunner","type":"Role","_key":"66445","_from":"41080","_to":"41077"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"66444","_from":"41079","_to":"41077"} +{"$label":"ACTS_IN","name":"Ash","type":"Role","_key":"66441","_from":"41078","_to":"41077"} +{"$label":"ACTS_IN","name":"Flora","type":"Role","_key":"66450","_from":"41085","_to":"41081"} +{"$label":"ACTS_IN","name":"Maleficent","type":"Role","_key":"66449","_from":"41084","_to":"41081"} +{"$label":"ACTS_IN","name":"Prince Phillip","type":"Role","_key":"66448","_from":"41083","_to":"41081"} +{"$label":"ACTS_IN","name":"Princess Aurora","type":"Role","_key":"66447","_from":"41082","_to":"41081"} +{"$label":"ACTS_IN","name":"Lady Tremaine (voice)","type":"Role","_key":"68648","_from":"41084","_to":"42072"} +{"$label":"ACTS_IN","name":"Mrs. August Pennyfeather","type":"Role","_key":"112152","_from":"41085","_to":"66231"} +{"$label":"ACTS_IN","name":"Queen of Hearts (voice)","type":"Role","_key":"87978","_from":"41085","_to":"52236"} +{"$label":"ACTS_IN","name":"Fairy Godmother (voice)","type":"Role","_key":"68649","_from":"41085","_to":"42072"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66453","_from":"41088","_to":"41086"} +{"$label":"DIRECTED","_key":"66452","_from":"41087","_to":"41086"} +{"$label":"ACTS_IN","name":"Megumi Tanaka","type":"Role","_key":"66457","_from":"41091","_to":"41089"} +{"$label":"DIRECTED","_key":"66454","_from":"41090","_to":"41089"} +{"$label":"ACTS_IN","name":"Rika Nishina","type":"Role","_key":"72290","_from":"41091","_to":"43669"} +{"$label":"ACTS_IN","name":"Avvocatessa di Irena","type":"Role","_key":"66464","_from":"41095","_to":"41092"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"66462","_from":"41094","_to":"41092"} +{"$label":"ACTS_IN","name":"Irena","type":"Role","_key":"66460","_from":"41093","_to":"41092"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"91741","_from":"41095","_to":"54117"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66466","_from":"41098","_to":"41096"} +{"$label":"DIRECTED","_key":"66465","_from":"41097","_to":"41096"} +{"$label":"ACTS_IN","name":"Falafel Verk\u00e4ufer","type":"Role","_key":"66475","_from":"41108","_to":"41099"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"66474","_from":"41107","_to":"41099"} +{"$label":"ACTS_IN","name":"H\u00e4ftling","type":"Role","_key":"66473","_from":"41106","_to":"41099"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"66472","_from":"41105","_to":"41099"} +{"$label":"ACTS_IN","name":"Nino","type":"Role","_key":"66471","_from":"41104","_to":"41099"} +{"$label":"ACTS_IN","name":"Abboudi","type":"Role","_key":"66470","_from":"41103","_to":"41099"} +{"$label":"ACTS_IN","name":"Yasmin","type":"Role","_key":"66469","_from":"41102","_to":"41099"} +{"$label":"ACTS_IN","name":"Toufic","type":"Role","_key":"66468","_from":"41101","_to":"41099"} +{"$label":"DIRECTED","_key":"66467","_from":"41100","_to":"41099"} +{"$label":"ACTS_IN","name":"Phil Dawn","type":"Role","_key":"66478","_from":"41110","_to":"41109"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"66491","_from":"41114","_to":"41111"} +{"$label":"ACTS_IN","name":"Col. Glass","type":"Role","_key":"66490","_from":"41113","_to":"41111"} +{"$label":"ACTS_IN","name":"Stillman's Aid","type":"Role","_key":"66488","_from":"41112","_to":"41111"} +{"$label":"DIRECTED","_key":"66500","_from":"41116","_to":"41115"} +{"$label":"DIRECTED","_key":"67687","_from":"41116","_to":"41634"} +{"$label":"DIRECTED","_key":"66514","_from":"41125","_to":"41120"} +{"$label":"ACTS_IN","name":"Lampwick (voice)","type":"Role","_key":"66512","_from":"41124","_to":"41120"} +{"$label":"ACTS_IN","name":"Carnival Barker (voice)","type":"Role","_key":"66509","_from":"41123","_to":"41120"} +{"$label":"ACTS_IN","name":"Cleo \/ Figaro \/ Gideon \/ Additional Voices (voice)","type":"Role","_key":"66508","_from":"41122","_to":"41120"} +{"$label":"ACTS_IN","name":"Alexander \/ Pinocchio (voice)","type":"Role","_key":"66506","_from":"41121","_to":"41120"} +{"$label":"ACTS_IN","name":"Mr. Spacely (voice)","type":"Role","_key":"110877","_from":"41122","_to":"65488"} +{"$label":"DIRECTED","_key":"69394","_from":"41125","_to":"42422"} +{"$label":"ACTS_IN","name":"Twin #2","type":"Role","_key":"66536","_from":"41139","_to":"41127"} +{"$label":"ACTS_IN","name":"Twin #1","type":"Role","_key":"66535","_from":"41138","_to":"41127"} +{"$label":"ACTS_IN","name":"Darla","type":"Role","_key":"66530","_from":"41137","_to":"41127"} +{"$label":"ACTS_IN","name":"Mary Ann Jackson","type":"Role","_key":"66529","_from":"41136","_to":"41127"} +{"$label":"ACTS_IN","name":"Waldo Aloysius Johnston III","type":"Role","_key":"66528","_from":"41135","_to":"41127"} +{"$label":"ACTS_IN","name":"Woim","type":"Role","_key":"66527","_from":"41134","_to":"41127"} +{"$label":"ACTS_IN","name":"Butch","type":"Role","_key":"66526","_from":"41133","_to":"41127"} +{"$label":"ACTS_IN","name":"William \"Buckwheat\" Thomas","type":"Role","_key":"66524","_from":"41132","_to":"41127"} +{"$label":"ACTS_IN","name":"Eugene \"Porky\" Lee","type":"Role","_key":"66523","_from":"41131","_to":"41127"} +{"$label":"ACTS_IN","name":"Billy \"Froggy\" Laughlin","type":"Role","_key":"66522","_from":"41130","_to":"41127"} +{"$label":"ACTS_IN","name":"Matthew \"Stymie\" Beard","type":"Role","_key":"66521","_from":"41129","_to":"41127"} +{"$label":"ACTS_IN","name":"George \"Spanky\" McFarland","type":"Role","_key":"66520","_from":"41128","_to":"41127"} +{"$label":"ACTS_IN","name":"Jane Ryan","type":"Role","_key":"67370","_from":"41138","_to":"41515"} +{"$label":"ACTS_IN","name":"Union","type":"Role","_key":"97998","_from":"41139","_to":"57710"} +{"$label":"ACTS_IN","name":"Roxy Ryan","type":"Role","_key":"67371","_from":"41139","_to":"41515"} +{"$label":"ACTS_IN","name":"Scuttle (voice)","type":"Role","_key":"66545","_from":"41142","_to":"41140"} +{"$label":"ACTS_IN","name":"Sebastian (voice)","type":"Role","_key":"66542","_from":"41141","_to":"41140"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"95840","_from":"41141","_to":"56363"} +{"$label":"ACTS_IN","name":"Tennessee Steinmetz","type":"Role","_key":"98665","_from":"41142","_to":"58148"} +{"$label":"ACTS_IN","name":"Marcellus Washburn","type":"Role","_key":"95805","_from":"41142","_to":"56349"} +{"$label":"ACTS_IN","name":"Benjy Benjamin","type":"Role","_key":"70790","_from":"41142","_to":"43041"} +{"$label":"ACTS_IN","name":"Heini \"Mustang\" Harms","type":"Role","_key":"66554","_from":"41148","_to":"41143"} +{"$label":"ACTS_IN","name":"Charlie \"Commander\" H\u00fcsskes","type":"Role","_key":"66553","_from":"41147","_to":"41143"} +{"$label":"ACTS_IN","name":"Fritzie Pippig","type":"Role","_key":"66552","_from":"41146","_to":"41143"} +{"$label":"ACTS_IN","name":"Viola Pippig","type":"Role","_key":"66551","_from":"41145","_to":"41143"} +{"$label":"ACTS_IN","name":"Ilse Pacholke","type":"Role","_key":"66550","_from":"41144","_to":"41143"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"66579","_from":"41161","_to":"41149"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"66578","_from":"41160","_to":"41149"} +{"$label":"ACTS_IN","name":"Jim Conrad","type":"Role","_key":"66577","_from":"41159","_to":"41149"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"66576","_from":"41158","_to":"41149"} +{"$label":"ACTS_IN","name":"Wright","type":"Role","_key":"66573","_from":"41157","_to":"41149"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"66572","_from":"41156","_to":"41149"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"66571","_from":"41155","_to":"41149"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"66570","_from":"41154","_to":"41149"} +{"$label":"ACTS_IN","name":"Elaine Meyer","type":"Role","_key":"66569","_from":"41153","_to":"41149"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"66567","_from":"41152","_to":"41149"} +{"$label":"ACTS_IN","name":"Grocery Man","type":"Role","_key":"66565","_from":"41151","_to":"41149"} +{"$label":"ACTS_IN","name":"Dad (Steven)","type":"Role","_key":"66564","_from":"41150","_to":"41149"} +{"$label":"ACTS_IN","name":"Joy","type":"Role","_key":"114429","_from":"41153","_to":"67409"} +{"$label":"ACTS_IN","name":"Inspector Gadget","type":"Role","_key":"121119","_from":"41159","_to":"71139"} +{"$label":"ACTS_IN","name":"Seth Winnick","type":"Role","_key":"103269","_from":"41159","_to":"60758"} +{"$label":"ACTS_IN","name":"Dr. Earl Dopler","type":"Role","_key":"102830","_from":"41159","_to":"60486"} +{"$label":"ACTS_IN","name":"Happy","type":"Role","_key":"102429","_from":"41159","_to":"60274"} +{"$label":"ACTS_IN","name":"Marv Merchants","type":"Role","_key":"90113","_from":"41159","_to":"53291"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66587","_from":"41167","_to":"41163"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"66582","_from":"41166","_to":"41163"} +{"$label":"DIRECTED","_key":"66581","_from":"41165","_to":"41163"} +{"$label":"DIRECTED","_key":"66580","_from":"41164","_to":"41163"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"66595","_from":"41170","_to":"41168"} +{"$label":"DIRECTED","_key":"66592","_from":"41169","_to":"41168"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"66611","_from":"41178","_to":"41171"} +{"$label":"ACTS_IN","name":"Seger","type":"Role","_key":"66610","_from":"41177","_to":"41171"} +{"$label":"ACTS_IN","name":"Dethloff","type":"Role","_key":"66609","_from":"41176","_to":"41171"} +{"$label":"ACTS_IN","name":"Blume","type":"Role","_key":"66608","_from":"41175","_to":"41171"} +{"$label":"ACTS_IN","name":"Staatssekret\u00e4r B\u00fcchner","type":"Role","_key":"66607","_from":"41174","_to":"41171"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"66599","_from":"41173","_to":"41171"} +{"$label":"DIRECTED","_key":"66597","_from":"41172","_to":"41171"} +{"$label":"ACTS_IN","name":"Male Tech","type":"Role","_key":"97056","_from":"41174","_to":"57091"} +{"$label":"DIRECTED","_key":"66620","_from":"41180","_to":"41179"} +{"$label":"DIRECTED","_key":"118299","_from":"41180","_to":"69534"} +{"$label":"DIRECTED","_key":"92630","_from":"41180","_to":"54673"} +{"$label":"DIRECTED","_key":"66641","_from":"41188","_to":"41182"} +{"$label":"ACTS_IN","name":"Sir Ralf","type":"Role","_key":"66639","_from":"41187","_to":"41182"} +{"$label":"ACTS_IN","name":"Sir Essex","type":"Role","_key":"66638","_from":"41186","_to":"41182"} +{"$label":"ACTS_IN","name":"Bishop of the Black Canons","type":"Role","_key":"66637","_from":"41185","_to":"41182"} +{"$label":"ACTS_IN","name":"Much","type":"Role","_key":"66636","_from":"41184","_to":"41182"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"66635","_from":"41183","_to":"41182"} +{"$label":"ACTS_IN","name":"Norah","type":"Role","_key":"95794","_from":"41183","_to":"56341"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"89252","_from":"41184","_to":"52845"} +{"$label":"ACTS_IN","name":"Carrie Laughlin","type":"Role","_key":"66650","_from":"41191","_to":"41190"} +{"$label":"ACTS_IN","name":"Madge Grubb","type":"Role","_key":"102896","_from":"41191","_to":"60527"} +{"$label":"ACTS_IN","name":"Countess de Toulouse-Lautrec","type":"Role","_key":"66655","_from":"41193","_to":"41192"} +{"$label":"ACTS_IN","name":"Weaver","type":"Role","_key":"66670","_from":"41198","_to":"41194"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"66665","_from":"41197","_to":"41194"} +{"$label":"ACTS_IN","name":"Pvt. Spyros Pappadimos","type":"Role","_key":"66663","_from":"41196","_to":"41194"} +{"$label":"ACTS_IN","name":"Pvt. 'Butcher' Brown","type":"Role","_key":"66661","_from":"41195","_to":"41194"} +{"$label":"ACTS_IN","name":"Mordred","type":"Role","_key":"121584","_from":"41195","_to":"71435"} +{"$label":"ACTS_IN","name":"Bennett","type":"Role","_key":"110491","_from":"41195","_to":"65277"} +{"$label":"ACTS_IN","name":"Lt. John Chard","type":"Role","_key":"100239","_from":"41195","_to":"59121"} +{"$label":"DIRECTED","_key":"66679","_from":"41200","_to":"41199"} +{"$label":"DIRECTED","_key":"106327","_from":"41200","_to":"62635"} +{"$label":"DIRECTED","_key":"91161","_from":"41200","_to":"53771"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"66683","_from":"41202","_to":"41201"} +{"$label":"DIRECTED","_key":"66685","_from":"41204","_to":"41203"} +{"$label":"ACTS_IN","name":"Bill Locomotiva","type":"Role","_key":"66694","_from":"41206","_to":"41205"} +{"$label":"ACTS_IN","name":"Dureena Nafeel","type":"Role","_key":"66701","_from":"41209","_to":"41207"} +{"$label":"ACTS_IN","name":"Michael Garibaldi","type":"Role","_key":"66699","_from":"41208","_to":"41207"} +{"$label":"ACTS_IN","name":"Michael Garibaldi","type":"Role","_key":"66883","_from":"41208","_to":"41298"} +{"$label":"ACTS_IN","name":"Michael Alfredo Garibaldi","type":"Role","_key":"66750","_from":"41208","_to":"41244"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"66718","_from":"41219","_to":"41210"} +{"$label":"ACTS_IN","name":"Star","type":"Role","_key":"66716","_from":"41218","_to":"41210"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"66715","_from":"41217","_to":"41210"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"66714","_from":"41216","_to":"41210"} +{"$label":"ACTS_IN","name":"Harvey Sledge","type":"Role","_key":"66713","_from":"41215","_to":"41210"} +{"$label":"ACTS_IN","name":"Annie Meacham","type":"Role","_key":"66710","_from":"41214","_to":"41210"} +{"$label":"ACTS_IN","name":"Wanda Bradley Sledge","type":"Role","_key":"66709","_from":"41213","_to":"41210"} +{"$label":"ACTS_IN","name":"Jean Glessner","type":"Role","_key":"66708","_from":"41212","_to":"41210"} +{"$label":"ACTS_IN","name":"D.A. Mark Calhoun","type":"Role","_key":"66707","_from":"41211","_to":"41210"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"104741","_from":"41213","_to":"61613"} +{"$label":"ACTS_IN","name":"Pharmacist (uncredited)","type":"Role","_key":"66748","_from":"41242","_to":"41220"} +{"$label":"ACTS_IN","name":"Andrea Cass (uncredited)","type":"Role","_key":"66747","_from":"41241","_to":"41220"} +{"$label":"ACTS_IN","name":"Gravedigger","type":"Role","_key":"66746","_from":"41240","_to":"41220"} +{"$label":"ACTS_IN","name":"Reverend Price","type":"Role","_key":"66745","_from":"41239","_to":"41220"} +{"$label":"ACTS_IN","name":"Kindly Old Lady","type":"Role","_key":"66744","_from":"41238","_to":"41220"} +{"$label":"ACTS_IN","name":"Dr. Owen","type":"Role","_key":"66743","_from":"41237","_to":"41220"} +{"$label":"ACTS_IN","name":"Piano Player","type":"Role","_key":"66742","_from":"41236","_to":"41220"} +{"$label":"ACTS_IN","name":"Candace Pontefreece","type":"Role","_key":"66741","_from":"41235","_to":"41220"} +{"$label":"ACTS_IN","name":"Vegas Showgirl #2","type":"Role","_key":"66740","_from":"41234","_to":"41220"} +{"$label":"ACTS_IN","name":"Vegas Showgirl #1","type":"Role","_key":"66739","_from":"41233","_to":"41220"} +{"$label":"ACTS_IN","name":"Mourner #2","type":"Role","_key":"66738","_from":"41232","_to":"41220"} +{"$label":"ACTS_IN","name":"Mourner #1","type":"Role","_key":"66737","_from":"41231","_to":"41220"} +{"$label":"ACTS_IN","name":"Bob Murdock","type":"Role","_key":"66736","_from":"41230","_to":"41220"} +{"$label":"ACTS_IN","name":"Star Trek Funeral Minister","type":"Role","_key":"66735","_from":"41229","_to":"41220"} +{"$label":"ACTS_IN","name":"Elsie Edwards","type":"Role","_key":"66734","_from":"41228","_to":"41220"} +{"$label":"ACTS_IN","name":"Albert Edwards","type":"Role","_key":"66733","_from":"41227","_to":"41220"} +{"$label":"ACTS_IN","name":"Willie","type":"Role","_key":"66731","_from":"41226","_to":"41220"} +{"$label":"ACTS_IN","name":"Albert Pontefreece","type":"Role","_key":"66730","_from":"41225","_to":"41220"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66728","_from":"41224","_to":"41220"} +{"$label":"ACTS_IN","name":"Dilys Rhys-Jones","type":"Role","_key":"66727","_from":"41223","_to":"41220"} +{"$label":"ACTS_IN","name":"Young Boris (as Josh Jenkins)","type":"Role","_key":"66725","_from":"41222","_to":"41220"} +{"$label":"ACTS_IN","name":"Young Betty","type":"Role","_key":"66724","_from":"41221","_to":"41220"} +{"$label":"DIRECTED","_key":"66764","_from":"41253","_to":"41244"} +{"$label":"ACTS_IN","name":"male hologram","type":"Role","_key":"66763","_from":"41252","_to":"41244"} +{"$label":"ACTS_IN","name":"Jacob Mayhew","type":"Role","_key":"66762","_from":"41251","_to":"41244"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"66761","_from":"41250","_to":"41244"} +{"$label":"ACTS_IN","name":"Lt. David Corwin","type":"Role","_key":"66759","_from":"41249","_to":"41244"} +{"$label":"ACTS_IN","name":"Customer","type":"Role","_key":"66758","_from":"41248","_to":"41244"} +{"$label":"ACTS_IN","name":"Soul One","type":"Role","_key":"66757","_from":"41247","_to":"41244"} +{"$label":"ACTS_IN","name":"Stephen Franklin, M.D.","type":"Role","_key":"66753","_from":"41246","_to":"41244"} +{"$label":"ACTS_IN","name":"Capt. Elizabeth Lochley","type":"Role","_key":"66751","_from":"41245","_to":"41244"} +{"$label":"ACTS_IN","name":"Colonel Elizabeth Lochley","type":"Role","_key":"103873","_from":"41245","_to":"61091"} +{"$label":"ACTS_IN","name":"Stephen Franklin, M.D.","type":"Role","_key":"66871","_from":"41246","_to":"41294"} +{"$label":"ACTS_IN","name":"Giles","type":"Role","_key":"116047","_from":"41249","_to":"68340"} +{"$label":"ACTS_IN","name":"Jake Fedderman","type":"Role","_key":"89748","_from":"41251","_to":"53125"} +{"$label":"DIRECTED","_key":"66771","_from":"41255","_to":"41254"} +{"$label":"DIRECTED","_key":"99618","_from":"41255","_to":"58730"} +{"$label":"DIRECTED","_key":"90800","_from":"41255","_to":"53581"} +{"$label":"DIRECTED","_key":"88033","_from":"41255","_to":"52258"} +{"$label":"DIRECTED","_key":"70950","_from":"41255","_to":"43100"} +{"$label":"DIRECTED","_key":"66794","_from":"41264","_to":"41259"} +{"$label":"ACTS_IN","name":"Gioia","type":"Role","_key":"66793","_from":"41263","_to":"41259"} +{"$label":"ACTS_IN","name":"Filippo Amoroso \/ Felicidade Amoroso-Kischewski","type":"Role","_key":"66792","_from":"41262","_to":"41259"} +{"$label":"ACTS_IN","name":"Alegra aka Frau Schmidt","type":"Role","_key":"66789","_from":"41261","_to":"41259"} +{"$label":"ACTS_IN","name":"Juliane \"Julchen\" Wollberg+","type":"Role","_key":"66788","_from":"41260","_to":"41259"} +{"$label":"ACTS_IN","name":"Zino","type":"Role","_key":"66798","_from":"41267","_to":"41265"} +{"$label":"ACTS_IN","name":"Zeck","type":"Role","_key":"66797","_from":"41266","_to":"41265"} +{"$label":"ACTS_IN","name":"Mr. Garter","type":"Role","_key":"66807","_from":"41271","_to":"41269"} +{"$label":"ACTS_IN","name":"Ms. Leach","type":"Role","_key":"66806","_from":"41270","_to":"41269"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114090","_from":"41271","_to":"67170"} +{"$label":"ACTS_IN","name":"Mich\u00e8le Charpin-Vasseur","type":"Role","_key":"66810","_from":"41273","_to":"41272"} +{"$label":"ACTS_IN","name":"Laeticia","type":"Role","_key":"121502","_from":"41273","_to":"71373"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101520","_from":"41273","_to":"59754"} +{"$label":"DIRECTED","_key":"66826","_from":"41278","_to":"41275"} +{"$label":"ACTS_IN","name":"Slobo","type":"Role","_key":"66824","_from":"41277","_to":"41275"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"66821","_from":"41276","_to":"41275"} +{"$label":"DIRECTED","_key":"66833","_from":"41282","_to":"41279"} +{"$label":"ACTS_IN","name":"Dr. Zark","type":"Role","_key":"66831","_from":"41281","_to":"41279"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"66830","_from":"41280","_to":"41279"} +{"$label":"ACTS_IN","name":"Udo Struutz","type":"Role","_key":"71593","_from":"41281","_to":"43365"} +{"$label":"ACTS_IN","name":"Udo Struutz","type":"Role","_key":"68294","_from":"41281","_to":"41927"} +{"$label":"DIRECTED","_key":"66839","_from":"41284","_to":"41283"} +{"$label":"DIRECTED","_key":"66862","_from":"41292","_to":"41287"} +{"$label":"ACTS_IN","name":"Ryan McBride","type":"Role","_key":"66860","_from":"41291","_to":"41287"} +{"$label":"ACTS_IN","name":"Mr. Bennett","type":"Role","_key":"66859","_from":"41290","_to":"41287"} +{"$label":"ACTS_IN","name":"Jamie Gangel","type":"Role","_key":"66858","_from":"41289","_to":"41287"} +{"$label":"ACTS_IN","name":"Sandra Gangel","type":"Role","_key":"66856","_from":"41288","_to":"41287"} +{"$label":"DIRECTED","_key":"66880","_from":"41297","_to":"41295"} +{"$label":"ACTS_IN","name":"Elizabeth Trent","type":"Role","_key":"66877","_from":"41296","_to":"41295"} +{"$label":"ACTS_IN","name":"Serena","type":"Role","_key":"70155","_from":"41296","_to":"42763"} +{"$label":"DIRECTED","_key":"66887","_from":"41300","_to":"41298"} +{"$label":"ACTS_IN","name":"Cmdr. Jeffrey Sinclair","type":"Role","_key":"66881","_from":"41299","_to":"41298"} +{"$label":"ACTS_IN","name":"Angela Sands","type":"Role","_key":"66897","_from":"41304","_to":"41302"} +{"$label":"ACTS_IN","name":"Detective Rodriguez","type":"Role","_key":"66896","_from":"41303","_to":"41302"} +{"$label":"ACTS_IN","name":"Clutch","type":"Role","_key":"111667","_from":"41303","_to":"65929"} +{"$label":"DIRECTED","_key":"66906","_from":"41308","_to":"41306"} +{"$label":"DIRECTED","_key":"66905","_from":"41307","_to":"41306"} +{"$label":"DIRECTED","_key":"67335","_from":"41308","_to":"41501"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"66912","_from":"41313","_to":"41309"} +{"$label":"ACTS_IN","name":"Ryan Evans","type":"Role","_key":"66911","_from":"41312","_to":"41309"} +{"$label":"ACTS_IN","name":"Sharpay Evans","type":"Role","_key":"66910","_from":"41311","_to":"41309"} +{"$label":"ACTS_IN","name":"Gabriella Montez","type":"Role","_key":"66909","_from":"41310","_to":"41309"} +{"$label":"ACTS_IN","name":"Tintin","type":"Role","_key":"101160","_from":"41310","_to":"59587"} +{"$label":"ACTS_IN","name":"Gabriella Montez","type":"Role","_key":"95679","_from":"41310","_to":"56280"} +{"$label":"ACTS_IN","name":"Gabriella Montez","type":"Role","_key":"72560","_from":"41310","_to":"43759"} +{"$label":"ACTS_IN","name":"Noel","type":"Role","_key":"67357","_from":"41310","_to":"41513"} +{"$label":"ACTS_IN","name":"Mandie Gilbert","type":"Role","_key":"105386","_from":"41311","_to":"62004"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103759","_from":"41311","_to":"61022"} +{"$label":"ACTS_IN","name":"Sharpay Evans","type":"Role","_key":"95680","_from":"41311","_to":"56280"} +{"$label":"ACTS_IN","name":"Sharpay Evans","type":"Role","_key":"72561","_from":"41311","_to":"43759"} +{"$label":"ACTS_IN","name":"Ryan Evans","type":"Role","_key":"95681","_from":"41312","_to":"56280"} +{"$label":"ACTS_IN","name":"Ryan Evans","type":"Role","_key":"72562","_from":"41312","_to":"43759"} +{"$label":"ACTS_IN","name":"Izzy Daniels","type":"Role","_key":"97869","_from":"41313","_to":"57646"} +{"$label":"ACTS_IN","name":"Chad Danforth","type":"Role","_key":"95682","_from":"41313","_to":"56280"} +{"$label":"DIRECTED","_key":"66920","_from":"41317","_to":"41314"} +{"$label":"DIRECTED","_key":"66919","_from":"41316","_to":"41314"} +{"$label":"DIRECTED","_key":"66918","_from":"41315","_to":"41314"} +{"$label":"DIRECTED","_key":"66967","_from":"41315","_to":"41338"} +{"$label":"DIRECTED","_key":"108345","_from":"41316","_to":"64045"} +{"$label":"DIRECTED","_key":"69105","_from":"41316","_to":"42285"} +{"$label":"DIRECTED","_key":"66966","_from":"41317","_to":"41338"} +{"$label":"ACTS_IN","name":"Oliver Twist","type":"Role","_key":"66923","_from":"41320","_to":"41318"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"66922","_from":"41319","_to":"41318"} +{"$label":"DIRECTED","_key":"66935","_from":"41324","_to":"41322"} +{"$label":"ACTS_IN","name":"L.W. Lo","type":"Role","_key":"66934","_from":"41323","_to":"41322"} +{"$label":"DIRECTED","_key":"66945","_from":"41330","_to":"41326"} +{"$label":"ACTS_IN","name":"Micha","type":"Role","_key":"66944","_from":"41329","_to":"41326"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"66943","_from":"41328","_to":"41326"} +{"$label":"ACTS_IN","name":"Eddi","type":"Role","_key":"66942","_from":"41327","_to":"41326"} +{"$label":"DIRECTED","_key":"66950","_from":"41332","_to":"41331"} +{"$label":"DIRECTED","_key":"66955","_from":"41335","_to":"41333"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"66953","_from":"41334","_to":"41333"} +{"$label":"DIRECTED","_key":"66961","_from":"41337","_to":"41336"} +{"$label":"ACTS_IN","name":"Eilonwy (voice)","type":"Role","_key":"66963","_from":"41340","_to":"41338"} +{"$label":"ACTS_IN","name":"Taran (voice)","type":"Role","_key":"66962","_from":"41339","_to":"41338"} +{"$label":"DIRECTED","_key":"66972","_from":"41343","_to":"41341"} +{"$label":"ACTS_IN","name":"Todd Beamer","type":"Role","_key":"66969","_from":"41342","_to":"41341"} +{"$label":"DIRECTED","_key":"116892","_from":"41343","_to":"68817"} +{"$label":"DIRECTED","_key":"112326","_from":"41343","_to":"66316"} +{"$label":"DIRECTED","_key":"66978","_from":"41350","_to":"41344"} +{"$label":"DIRECTED","_key":"66977","_from":"41349","_to":"41344"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"66976","_from":"41348","_to":"41344"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"66975","_from":"41347","_to":"41344"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"66974","_from":"41346","_to":"41344"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"66973","_from":"41345","_to":"41344"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"66979","_from":"41352","_to":"41351"} +{"$label":"DIRECTED","_key":"66988","_from":"41355","_to":"41353"} +{"$label":"ACTS_IN","name":"Leslie Vernon","type":"Role","_key":"66984","_from":"41354","_to":"41353"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"101253","_from":"41354","_to":"59627"} +{"$label":"DIRECTED","_key":"66993","_from":"41359","_to":"41357"} +{"$label":"ACTS_IN","name":"Officer Shawn McCormick","type":"Role","_key":"66991","_from":"41358","_to":"41357"} +{"$label":"ACTS_IN","name":"First Officer William Murdoch","type":"Role","_key":"67012","_from":"41372","_to":"41361"} +{"$label":"ACTS_IN","name":"Chairman J. Bruce Ismay","type":"Role","_key":"67011","_from":"41371","_to":"41361"} +{"$label":"ACTS_IN","name":"Lady Richard","type":"Role","_key":"67010","_from":"41370","_to":"41361"} +{"$label":"ACTS_IN","name":"Thomas Andrews","type":"Role","_key":"67008","_from":"41369","_to":"41361"} +{"$label":"ACTS_IN","name":"Col. Archibald Gracie","type":"Role","_key":"67007","_from":"41368","_to":"41361"} +{"$label":"ACTS_IN","name":"Mrs. Sylvia Lightoller","type":"Role","_key":"67006","_from":"41367","_to":"41361"} +{"$label":"ACTS_IN","name":"Mrs. Clarke","type":"Role","_key":"67005","_from":"41366","_to":"41361"} +{"$label":"ACTS_IN","name":"Mr. Murphy","type":"Role","_key":"67004","_from":"41365","_to":"41361"} +{"$label":"ACTS_IN","name":"Capt. Arthur Rostron (Carpathia)","type":"Role","_key":"67003","_from":"41364","_to":"41361"} +{"$label":"ACTS_IN","name":"Maj. Arthur Peuchen","type":"Role","_key":"67001","_from":"41363","_to":"41361"} +{"$label":"ACTS_IN","name":"Second Officer Charles Herbert Lightoller","type":"Role","_key":"66999","_from":"41362","_to":"41361"} +{"$label":"ACTS_IN","name":"Captain Shepard","type":"Role","_key":"117451","_from":"41362","_to":"69075"} +{"$label":"ACTS_IN","name":"Chamberlain","type":"Role","_key":"107858","_from":"41362","_to":"63696"} +{"$label":"ACTS_IN","name":"Ghost of Christmas Present","type":"Role","_key":"96228","_from":"41362","_to":"56558"} +{"$label":"ACTS_IN","name":"Mr. Millington Drake - British Minister, Montevideo","type":"Role","_key":"113282","_from":"41364","_to":"66734"} +{"$label":"ACTS_IN","name":"Captain Banister","type":"Role","_key":"117459","_from":"41369","_to":"69075"} +{"$label":"ACTS_IN","name":"Captain McCall - R.N., British Naval Attache for Buenos Aires","type":"Role","_key":"113284","_from":"41369","_to":"66734"} +{"$label":"ACTS_IN","name":"Squadron Leader Frank Adams","type":"Role","_key":"106343","_from":"41369","_to":"62650"} +{"$label":"DIRECTED","_key":"67031","_from":"41378","_to":"41374"} +{"$label":"ACTS_IN","name":"Chico","type":"Role","_key":"67030","_from":"41377","_to":"41374"} +{"$label":"ACTS_IN","name":"Zako","type":"Role","_key":"67029","_from":"41376","_to":"41374"} +{"$label":"ACTS_IN","name":"David Reed","type":"Role","_key":"67023","_from":"41375","_to":"41374"} +{"$label":"ACTS_IN","name":"John Putnam","type":"Role","_key":"120170","_from":"41375","_to":"70580"} +{"$label":"DIRECTED","_key":"120176","_from":"41378","_to":"70580"} +{"$label":"DIRECTED","_key":"90810","_from":"41378","_to":"53584"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"67035","_from":"41381","_to":"41379"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"67033","_from":"41380","_to":"41379"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"68531","_from":"41381","_to":"42025"} +{"$label":"ACTS_IN","name":"Momoko","type":"Role","_key":"67041","_from":"41384","_to":"41382"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"67039","_from":"41383","_to":"41382"} +{"$label":"DIRECTED","_key":"67057","_from":"41393","_to":"41385"} +{"$label":"ACTS_IN","name":"Eugen","type":"Role","_key":"67056","_from":"41392","_to":"41385"} +{"$label":"ACTS_IN","name":"Joschka","type":"Role","_key":"67055","_from":"41391","_to":"41385"} +{"$label":"ACTS_IN","name":"Pfleger","type":"Role","_key":"67054","_from":"41390","_to":"41385"} +{"$label":"ACTS_IN","name":"B\u00e4nker","type":"Role","_key":"67053","_from":"41389","_to":"41385"} +{"$label":"ACTS_IN","name":"Hagedorn","type":"Role","_key":"67052","_from":"41388","_to":"41385"} +{"$label":"ACTS_IN","name":"Lulle","type":"Role","_key":"67048","_from":"41387","_to":"41385"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"67046","_from":"41386","_to":"41385"} +{"$label":"ACTS_IN","name":"Yasmin","type":"Role","_key":"67066","_from":"41397","_to":"41395"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"67065","_from":"41396","_to":"41395"} +{"$label":"ACTS_IN","name":"Anna Wohlin","type":"Role","_key":"113812","_from":"41396","_to":"67050"} +{"$label":"ACTS_IN","name":"Hedvig Sparre","type":"Role","_key":"110210","_from":"41396","_to":"65137"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"106386","_from":"41396","_to":"62681"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"106066","_from":"41396","_to":"62460"} +{"$label":"ACTS_IN","name":"Annelie","type":"Role","_key":"92109","_from":"41396","_to":"54349"} +{"$label":"ACTS_IN","name":"Danish Maria","type":"Role","_key":"91757","_from":"41396","_to":"54126"} +{"$label":"ACTS_IN","name":"H\u00fcbsches M\u00e4dchen","type":"Role","_key":"72783","_from":"41396","_to":"43844"} +{"$label":"ACTS_IN","name":"Susie","type":"Role","_key":"70032","_from":"41396","_to":"42704"} +{"$label":"DIRECTED","_key":"67073","_from":"41400","_to":"41399"} +{"$label":"DIRECTED","_key":"67085","_from":"41405","_to":"41402"} +{"$label":"DIRECTED","_key":"67084","_from":"41404","_to":"41402"} +{"$label":"DIRECTED","_key":"67083","_from":"41403","_to":"41402"} +{"$label":"ACTS_IN","name":"Adam Carr","type":"Role","_key":"67087","_from":"41407","_to":"41406"} +{"$label":"ACTS_IN","name":"Keith Clark","type":"Role","_key":"120924","_from":"41407","_to":"71005"} +{"$label":"ACTS_IN","name":"Lance Valenteen","type":"Role","_key":"116517","_from":"41407","_to":"68580"} +{"$label":"ACTS_IN","name":"Luc Crash","type":"Role","_key":"109303","_from":"41407","_to":"64573"} +{"$label":"ACTS_IN","name":"Hal Jordan \/ Green Lantern (voice)","type":"Role","_key":"98100","_from":"41407","_to":"57762"} +{"$label":"DIRECTED","_key":"67100","_from":"41411","_to":"41408"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"67095","_from":"41410","_to":"41408"} +{"$label":"ACTS_IN","name":"Dizzy Harrison (at a younger age)","type":"Role","_key":"67091","_from":"41409","_to":"41408"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"115089","_from":"41410","_to":"67774"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"103445","_from":"41410","_to":"60845"} +{"$label":"DIRECTED","_key":"67106","_from":"41417","_to":"41412"} +{"$label":"DIRECTED","_key":"67105","_from":"41416","_to":"41412"} +{"$label":"ACTS_IN","name":"Renata","type":"Role","_key":"67104","_from":"41415","_to":"41412"} +{"$label":"ACTS_IN","name":"Mamie","type":"Role","_key":"67103","_from":"41414","_to":"41412"} +{"$label":"ACTS_IN","name":"Elia Codogno","type":"Role","_key":"67101","_from":"41413","_to":"41412"} +{"$label":"ACTS_IN","name":"Barnaba Cecchini","type":"Role","_key":"69853","_from":"41413","_to":"42625"} +{"$label":"DIRECTED","_key":"69855","_from":"41416","_to":"42625"} +{"$label":"DIRECTED","_key":"69854","_from":"41417","_to":"42625"} +{"$label":"ACTS_IN","name":"Kara Strode","type":"Role","_key":"67109","_from":"41419","_to":"41418"} +{"$label":"DIRECTED","_key":"67121","_from":"41424","_to":"41421"} +{"$label":"ACTS_IN","name":"H\u00f3f\u00ed","type":"Role","_key":"67120","_from":"41423","_to":"41421"} +{"$label":"ACTS_IN","name":"Berglind","type":"Role","_key":"67119","_from":"41422","_to":"41421"} +{"$label":"DIRECTED","_key":"107721","_from":"41424","_to":"63596"} +{"$label":"DIRECTED","_key":"103280","_from":"41424","_to":"60763"} +{"$label":"DIRECTED","_key":"90777","_from":"41424","_to":"53571"} +{"$label":"DIRECTED","_key":"67142","_from":"41430","_to":"41425"} +{"$label":"ACTS_IN","name":"Spaghetti Girl","type":"Role","_key":"67137","_from":"41429","_to":"41425"} +{"$label":"ACTS_IN","name":"Perino's Girl","type":"Role","_key":"67136","_from":"41428","_to":"41425"} +{"$label":"ACTS_IN","name":"Cigarette Girl","type":"Role","_key":"67134","_from":"41427","_to":"41425"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"67132","_from":"41426","_to":"41425"} +{"$label":"ACTS_IN","name":"Brock \/ James \/ Squirtle","type":"Role","_key":"67146","_from":"41434","_to":"41431"} +{"$label":"ACTS_IN","name":"Misty \/ Jessie \/ Wigglytuff","type":"Role","_key":"67145","_from":"41433","_to":"41431"} +{"$label":"ACTS_IN","name":"Ash Ketchum","type":"Role","_key":"67144","_from":"41432","_to":"41431"} +{"$label":"ACTS_IN","name":"Ash Ketchum (voice)","type":"Role","_key":"90539","_from":"41432","_to":"53479"} +{"$label":"ACTS_IN","name":"Ash Ketchum (voice)","type":"Role","_key":"90533","_from":"41432","_to":"53477"} +{"$label":"ACTS_IN","name":"Misty (voice)","type":"Role","_key":"90540","_from":"41433","_to":"53479"} +{"$label":"ACTS_IN","name":"Misty (voice)","type":"Role","_key":"90534","_from":"41433","_to":"53477"} +{"$label":"ACTS_IN","name":"Seto Kaiba","type":"Role","_key":"67568","_from":"41434","_to":"41597"} +{"$label":"ACTS_IN","name":"Scotty Brody","type":"Role","_key":"67151","_from":"41436","_to":"41435"} +{"$label":"DIRECTED","_key":"67159","_from":"41438","_to":"41437"} +{"$label":"ACTS_IN","name":"The Elder Brother","type":"Role","_key":"67163","_from":"41440","_to":"41439"} +{"$label":"ACTS_IN","name":"Jean","type":"Role","_key":"89280","_from":"41440","_to":"52859"} +{"$label":"ACTS_IN","name":"Irwin (as Kevin Johnson Olson)","type":"Role","_key":"67176","_from":"41445","_to":"41441"} +{"$label":"ACTS_IN","name":"Martha Little","type":"Role","_key":"67170","_from":"41444","_to":"41441"} +{"$label":"ACTS_IN","name":"Martha Little","type":"Role","_key":"67169","_from":"41443","_to":"41441"} +{"$label":"ACTS_IN","name":"George Little","type":"Role","_key":"67168","_from":"41442","_to":"41441"} +{"$label":"ACTS_IN","name":"Ricky Lapinski","type":"Role","_key":"99988","_from":"41445","_to":"58990"} +{"$label":"ACTS_IN","name":"Master Guan","type":"Role","_key":"67182","_from":"41447","_to":"41446"} +{"$label":"DIRECTED","_key":"67190","_from":"41450","_to":"41449"} +{"$label":"DIRECTED","_key":"93028","_from":"41450","_to":"54849"} +{"$label":"DIRECTED","_key":"70695","_from":"41450","_to":"43003"} +{"$label":"DIRECTED","_key":"70173","_from":"41450","_to":"42773"} +{"$label":"ACTS_IN","name":"Mrs. Lowe","type":"Role","_key":"67233","_from":"41457","_to":"41456"} +{"$label":"DIRECTED","_key":"67239","_from":"41459","_to":"41458"} +{"$label":"DIRECTED","_key":"119420","_from":"41459","_to":"70159"} +{"$label":"DIRECTED","_key":"117014","_from":"41459","_to":"68868"} +{"$label":"DIRECTED","_key":"108142","_from":"41459","_to":"63912"} +{"$label":"DIRECTED","_key":"97143","_from":"41459","_to":"57143"} +{"$label":"DIRECTED","_key":"91139","_from":"41459","_to":"53765"} +{"$label":"DIRECTED","_key":"72940","_from":"41459","_to":"43910"} +{"$label":"DIRECTED","_key":"68904","_from":"41459","_to":"42196"} +{"$label":"ACTS_IN","name":"Kyle Baker","type":"Role","_key":"67253","_from":"41466","_to":"41460"} +{"$label":"ACTS_IN","name":"Nigel Baker","type":"Role","_key":"67252","_from":"41465","_to":"41460"} +{"$label":"ACTS_IN","name":"Mike Baker","type":"Role","_key":"67251","_from":"41464","_to":"41460"} +{"$label":"ACTS_IN","name":"Kim Baker","type":"Role","_key":"67249","_from":"41463","_to":"41460"} +{"$label":"ACTS_IN","name":"Jessica Baker","type":"Role","_key":"67248","_from":"41462","_to":"41460"} +{"$label":"ACTS_IN","name":"Henry Baker","type":"Role","_key":"67245","_from":"41461","_to":"41460"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"120149","_from":"41461","_to":"70565"} +{"$label":"ACTS_IN","name":"Lucy Miller","type":"Role","_key":"96246","_from":"41462","_to":"56561"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"88989","_from":"41462","_to":"52708"} +{"$label":"ACTS_IN","name":"David Sandborn","type":"Role","_key":"100023","_from":"41464","_to":"59005"} +{"$label":"ACTS_IN","name":"Dr. Phillips","type":"Role","_key":"67270","_from":"41478","_to":"41467"} +{"$label":"ACTS_IN","name":"Lt. Wiseman","type":"Role","_key":"67268","_from":"41477","_to":"41467"} +{"$label":"ACTS_IN","name":"New Cadet","type":"Role","_key":"67267","_from":"41476","_to":"41467"} +{"$label":"ACTS_IN","name":"Wellington Cadet Captain","type":"Role","_key":"67266","_from":"41475","_to":"41467"} +{"$label":"ACTS_IN","name":"Police Sergeant","type":"Role","_key":"67265","_from":"41474","_to":"41467"} +{"$label":"ACTS_IN","name":"Cadet Leland","type":"Role","_key":"67264","_from":"41473","_to":"41467"} +{"$label":"ACTS_IN","name":"Cadet Sgt. Johnson","type":"Role","_key":"67263","_from":"41472","_to":"41467"} +{"$label":"ACTS_IN","name":"Cadet Kevin 'Tiger' Dunne","type":"Role","_key":"67262","_from":"41471","_to":"41467"} +{"$label":"ACTS_IN","name":"Cadet Bryan","type":"Role","_key":"67260","_from":"41470","_to":"41467"} +{"$label":"ACTS_IN","name":"Huge Biker","type":"Role","_key":"67259","_from":"41469","_to":"41467"} +{"$label":"ACTS_IN","name":"Col. Braggart","type":"Role","_key":"67258","_from":"41468","_to":"41467"} +{"$label":"ACTS_IN","name":"Dr. Pike","type":"Role","_key":"106933","_from":"41477","_to":"63044"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"67276","_from":"41481","_to":"41479"} +{"$label":"ACTS_IN","name":"Stephanie Mangano","type":"Role","_key":"67274","_from":"41480","_to":"41479"} +{"$label":"ACTS_IN","name":"Beatrice Russo","type":"Role","_key":"67280","_from":"41484","_to":"41482"} +{"$label":"ACTS_IN","name":"Mario Ruoppolo","type":"Role","_key":"67279","_from":"41483","_to":"41482"} +{"$label":"ACTS_IN","name":"Sally Fleming","type":"Role","_key":"67292","_from":"41487","_to":"41486"} +{"$label":"DIRECTED","_key":"67294","_from":"41489","_to":"41488"} +{"$label":"DIRECTED","_key":"116827","_from":"41489","_to":"68776"} +{"$label":"ACTS_IN","name":"Commissioner Brendon S. Sullivan","type":"Role","_key":"67330","_from":"41500","_to":"41493"} +{"$label":"ACTS_IN","name":"Francis Kearney","type":"Role","_key":"67329","_from":"41499","_to":"41493"} +{"$label":"ACTS_IN","name":"Elder","type":"Role","_key":"67328","_from":"41498","_to":"41493"} +{"$label":"ACTS_IN","name":"Elder","type":"Role","_key":"67327","_from":"41497","_to":"41493"} +{"$label":"ACTS_IN","name":"Fred Hung","type":"Role","_key":"67326","_from":"41496","_to":"41493"} +{"$label":"ACTS_IN","name":"Milton Bin","type":"Role","_key":"67325","_from":"41495","_to":"41493"} +{"$label":"ACTS_IN","name":"Tracy Tzu","type":"Role","_key":"67318","_from":"41494","_to":"41493"} +{"$label":"DIRECTED","_key":"67334","_from":"41502","_to":"41501"} +{"$label":"ACTS_IN","name":"Minnie","type":"Role","_key":"67340","_from":"41507","_to":"41503"} +{"$label":"ACTS_IN","name":"Miss Lumley","type":"Role","_key":"67339","_from":"41506","_to":"41503"} +{"$label":"ACTS_IN","name":"Mlle. de Poitiers","type":"Role","_key":"67338","_from":"41505","_to":"41503"} +{"$label":"ACTS_IN","name":"Miss McCraw","type":"Role","_key":"67337","_from":"41504","_to":"41503"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"102549","_from":"41505","_to":"60327"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"67344","_from":"41509","_to":"41508"} +{"$label":"ACTS_IN","name":"Jeanine Mueller","type":"Role","_key":"67352","_from":"41512","_to":"41510"} +{"$label":"ACTS_IN","name":"Walter Dandridge","type":"Role","_key":"67351","_from":"41511","_to":"41510"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"67374","_from":"41516","_to":"41515"} +{"$label":"ACTS_IN","name":"Chauncey Boyd","type":"Role","_key":"119210","_from":"41516","_to":"70044"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"104211","_from":"41516","_to":"61310"} +{"$label":"ACTS_IN","name":"Russ","type":"Role","_key":"102238","_from":"41516","_to":"60160"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"67379","_from":"41518","_to":"41517"} +{"$label":"ACTS_IN","name":"Nick Papadakis","type":"Role","_key":"67384","_from":"41520","_to":"41519"} +{"$label":"ACTS_IN","name":"'Silky' Foster","type":"Role","_key":"67402","_from":"41527","_to":"41521"} +{"$label":"ACTS_IN","name":"Patrolman (as Edward St. Pe)","type":"Role","_key":"67401","_from":"41526","_to":"41521"} +{"$label":"ACTS_IN","name":"Freddie Angelo","type":"Role","_key":"67400","_from":"41525","_to":"41521"} +{"$label":"ACTS_IN","name":"Daddy Mention","type":"Role","_key":"67398","_from":"41524","_to":"41521"} +{"$label":"ACTS_IN","name":"Lamar Parmentel","type":"Role","_key":"67395","_from":"41523","_to":"41521"} +{"$label":"ACTS_IN","name":"Ed Dodge","type":"Role","_key":"67393","_from":"41522","_to":"41521"} +{"$label":"ACTS_IN","name":"Dr. Birsky","type":"Role","_key":"67416","_from":"41532","_to":"41529"} +{"$label":"ACTS_IN","name":"Mexican Food Doctor","type":"Role","_key":"67415","_from":"41531","_to":"41529"} +{"$label":"ACTS_IN","name":"Dr. Sindell","type":"Role","_key":"67412","_from":"41530","_to":"41529"} +{"$label":"ACTS_IN","name":"Mr. Matthews (as Stanley H. Swerdlow)","type":"Role","_key":"69424","_from":"41531","_to":"42428"} +{"$label":"ACTS_IN","name":"Commercial Headbanger","type":"Role","_key":"67445","_from":"41546","_to":"41533"} +{"$label":"ACTS_IN","name":"Airport Security Officer","type":"Role","_key":"67441","_from":"41545","_to":"41533"} +{"$label":"ACTS_IN","name":"Belinda","type":"Role","_key":"67440","_from":"41544","_to":"41533"} +{"$label":"ACTS_IN","name":"Jeanine Pettibone","type":"Role","_key":"67439","_from":"41543","_to":"41533"} +{"$label":"ACTS_IN","name":"Student Promoter","type":"Role","_key":"67438","_from":"41542","_to":"41533"} +{"$label":"ACTS_IN","name":"Angelo DiMentibelio","type":"Role","_key":"67434","_from":"41541","_to":"41533"} +{"$label":"ACTS_IN","name":"Mime Waitress","type":"Role","_key":"67432","_from":"41540","_to":"41533"} +{"$label":"ACTS_IN","name":"Heavy Metal Fan","type":"Role","_key":"67428","_from":"41539","_to":"41533"} +{"$label":"ACTS_IN","name":"Heavy Metal Fan","type":"Role","_key":"67427","_from":"41538","_to":"41533"} +{"$label":"ACTS_IN","name":"Heavy Metal Fan","type":"Role","_key":"67426","_from":"41537","_to":"41533"} +{"$label":"ACTS_IN","name":"Viv Savage","type":"Role","_key":"67425","_from":"41536","_to":"41533"} +{"$label":"ACTS_IN","name":"Ian Faith","type":"Role","_key":"67424","_from":"41535","_to":"41533"} +{"$label":"ACTS_IN","name":"Mick Shrimpton","type":"Role","_key":"67419","_from":"41534","_to":"41533"} +{"$label":"ACTS_IN","name":"Mom (voice)","type":"Role","_key":"93569","_from":"41540","_to":"55099"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"109329","_from":"41541","_to":"64585"} +{"$label":"DIRECTED","_key":"67452","_from":"41553","_to":"41547"} +{"$label":"DIRECTED","_key":"67451","_from":"41552","_to":"41547"} +{"$label":"ACTS_IN","name":"Gef\u00e4ngnisw\u00e4rter","type":"Role","_key":"67450","_from":"41551","_to":"41547"} +{"$label":"ACTS_IN","name":"Nico Thunder","type":"Role","_key":"67449","_from":"41550","_to":"41547"} +{"$label":"ACTS_IN","name":"Bruce Ochsenmauler","type":"Role","_key":"67448","_from":"41549","_to":"41547"} +{"$label":"ACTS_IN","name":"Alfonso Gnocchi","type":"Role","_key":"67447","_from":"41548","_to":"41547"} +{"$label":"DIRECTED","_key":"67472","_from":"41561","_to":"41556"} +{"$label":"ACTS_IN","name":"Cardinal Ottaviani","type":"Role","_key":"67469","_from":"41560","_to":"41556"} +{"$label":"ACTS_IN","name":"Princess Domitilla","type":"Role","_key":"67467","_from":"41559","_to":"41556"} +{"$label":"ACTS_IN","name":"Young Prostitute","type":"Role","_key":"67466","_from":"41558","_to":"41556"} +{"$label":"ACTS_IN","name":"Fellini, Age 18","type":"Role","_key":"67465","_from":"41557","_to":"41556"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"67480","_from":"41563","_to":"41562"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"67486","_from":"41565","_to":"41564"} +{"$label":"ACTS_IN","name":"Lamar Latrell","type":"Role","_key":"98300","_from":"41565","_to":"57901"} +{"$label":"ACTS_IN","name":"Rudy Tyler","type":"Role","_key":"96234","_from":"41565","_to":"56559"} +{"$label":"DIRECTED","_key":"67494","_from":"41567","_to":"41566"} +{"$label":"DIRECTED","_key":"98294","_from":"41567","_to":"57901"} +{"$label":"ACTS_IN","name":"Alien Boss","type":"Role","_key":"67498","_from":"41570","_to":"41568"} +{"$label":"ACTS_IN","name":"Howard, City Mayor","type":"Role","_key":"67497","_from":"41569","_to":"41568"} +{"$label":"ACTS_IN","name":"Ghislaine","type":"Role","_key":"67522","_from":"41577","_to":"41573"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"67517","_from":"41576","_to":"41573"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"67516","_from":"41575","_to":"41573"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"67514","_from":"41574","_to":"41573"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"116406","_from":"41574","_to":"68526"} +{"$label":"ACTS_IN","name":"Secretary (Montr\u00e9al)","type":"Role","_key":"99450","_from":"41574","_to":"58590"} +{"$label":"ACTS_IN","name":"Dominique","type":"Role","_key":"116405","_from":"41575","_to":"68526"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"116408","_from":"41576","_to":"68526"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"67533","_from":"41581","_to":"41580"} +{"$label":"ACTS_IN","name":"Issac","type":"Role","_key":"110033","_from":"41581","_to":"65011"} +{"$label":"DIRECTED","_key":"67540","_from":"41585","_to":"41582"} +{"$label":"ACTS_IN","name":"Col. Wyatt Turner, DSO MC","type":"Role","_key":"67539","_from":"41584","_to":"41582"} +{"$label":"ACTS_IN","name":"Mary Elison","type":"Role","_key":"67538","_from":"41583","_to":"41582"} +{"$label":"DIRECTED","_key":"120563","_from":"41585","_to":"70809"} +{"$label":"DIRECTED","_key":"70924","_from":"41585","_to":"43079"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"116928","_from":"41585","_to":"68828"} +{"$label":"ACTS_IN","name":"Assurancetourix (voice)","type":"Role","_key":"67545","_from":"41588","_to":"41586"} +{"$label":"DIRECTED","_key":"67541","_from":"41587","_to":"41586"} +{"$label":"DIRECTED","_key":"67550","_from":"41590","_to":"41589"} +{"$label":"DIRECTED","_key":"69226","_from":"41590","_to":"42333"} +{"$label":"DIRECTED","_key":"68219","_from":"41590","_to":"41891"} +{"$label":"DIRECTED","_key":"67586","_from":"41590","_to":"41606"} +{"$label":"DIRECTED","_key":"67576","_from":"41590","_to":"41602"} +{"$label":"DIRECTED","_key":"67552","_from":"41593","_to":"41591"} +{"$label":"ACTS_IN","name":"Octave","type":"Role","_key":"67551","_from":"41592","_to":"41591"} +{"$label":"ACTS_IN","name":"Zealot","type":"Role","_key":"67565","_from":"41596","_to":"41595"} +{"$label":"DIRECTED","_key":"67571","_from":"41601","_to":"41597"} +{"$label":"ACTS_IN","name":"Joey Wheeler","type":"Role","_key":"67570","_from":"41600","_to":"41597"} +{"$label":"ACTS_IN","name":"Anubis","type":"Role","_key":"67569","_from":"41599","_to":"41597"} +{"$label":"ACTS_IN","name":"Yugi Moto","type":"Role","_key":"67567","_from":"41598","_to":"41597"} +{"$label":"ACTS_IN","name":"Motormouth Maybelle","type":"Role","_key":"67578","_from":"41605","_to":"41603"} +{"$label":"ACTS_IN","name":"Franklin von Tussle","type":"Role","_key":"67577","_from":"41604","_to":"41603"} +{"$label":"ACTS_IN","name":"Smollet","type":"Role","_key":"67585","_from":"41607","_to":"41606"} +{"$label":"ACTS_IN","name":"Alex Schmorell","type":"Role","_key":"67595","_from":"41611","_to":"41609"} +{"$label":"ACTS_IN","name":"Hans Scholl","type":"Role","_key":"67594","_from":"41610","_to":"41609"} +{"$label":"ACTS_IN","name":"Susan Pierce","type":"Role","_key":"67604","_from":"41613","_to":"41612"} +{"$label":"ACTS_IN","name":"Rogan","type":"Role","_key":"67622","_from":"41620","_to":"41614"} +{"$label":"ACTS_IN","name":"Karma","type":"Role","_key":"67615","_from":"41619","_to":"41614"} +{"$label":"ACTS_IN","name":"Liberty","type":"Role","_key":"67614","_from":"41618","_to":"41614"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"67610","_from":"41617","_to":"41614"} +{"$label":"ACTS_IN","name":"Alicia","type":"Role","_key":"67609","_from":"41616","_to":"41614"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"67607","_from":"41615","_to":"41614"} +{"$label":"ACTS_IN","name":"Karl Scott","type":"Role","_key":"88808","_from":"41615","_to":"52620"} +{"$label":"ACTS_IN","name":"Dr. Cole","type":"Role","_key":"118452","_from":"41616","_to":"69639"} +{"$label":"ACTS_IN","name":"Model #1","type":"Role","_key":"117293","_from":"41616","_to":"68981"} +{"$label":"ACTS_IN","name":"Nisha","type":"Role","_key":"100835","_from":"41618","_to":"59442"} +{"$label":"ACTS_IN","name":"Major Michael Ross","type":"Role","_key":"118453","_from":"41620","_to":"69639"} +{"$label":"DIRECTED","_key":"67633","_from":"41623","_to":"41622"} +{"$label":"DIRECTED","_key":"67668","_from":"41629","_to":"41628"} +{"$label":"DIRECTED","_key":"110374","_from":"41629","_to":"65216"} +{"$label":"DIRECTED","_key":"107052","_from":"41629","_to":"63126"} +{"$label":"DIRECTED","_key":"91440","_from":"41629","_to":"53928"} +{"$label":"ACTS_IN","name":"Rodney Roach (voice)","type":"Role","_key":"73014","_from":"41629","_to":"43939"} +{"$label":"ACTS_IN","name":"Isuro Tanaka","type":"Role","_key":"67677","_from":"41632","_to":"41630"} +{"$label":"ACTS_IN","name":"Rube Baker","type":"Role","_key":"67676","_from":"41631","_to":"41630"} +{"$label":"ACTS_IN","name":"Grady Hoover","type":"Role","_key":"67689","_from":"41635","_to":"41634"} +{"$label":"ACTS_IN","name":"Dr. Pat Medford","type":"Role","_key":"67699","_from":"41638","_to":"41637"} +{"$label":"ACTS_IN","name":"Sheriff Bart","type":"Role","_key":"67702","_from":"41640","_to":"41639"} +{"$label":"ACTS_IN","name":"Calculus Entropy","type":"Role","_key":"101185","_from":"41640","_to":"59606"} +{"$label":"ACTS_IN","name":"Super Soul","type":"Role","_key":"72942","_from":"41640","_to":"43915"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"67711","_from":"41642","_to":"41641"} +{"$label":"ACTS_IN","name":"Shigehiko Aoyama","type":"Role","_key":"67726","_from":"41646","_to":"41644"} +{"$label":"ACTS_IN","name":"Asami Yamazaki","type":"Role","_key":"67725","_from":"41645","_to":"41644"} +{"$label":"ACTS_IN","name":"Ruka","type":"Role","_key":"106849","_from":"41645","_to":"62987"} +{"$label":"DIRECTED","_key":"67733","_from":"41648","_to":"41647"} +{"$label":"DIRECTED","_key":"111706","_from":"41648","_to":"65947"} +{"$label":"DIRECTED","_key":"106268","_from":"41648","_to":"62597"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"67736","_from":"41650","_to":"41649"} +{"$label":"ACTS_IN","name":"Administrator","type":"Role","_key":"67763","_from":"41658","_to":"41653"} +{"$label":"ACTS_IN","name":"Novitiate","type":"Role","_key":"67760","_from":"41657","_to":"41653"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"67759","_from":"41656","_to":"41653"} +{"$label":"ACTS_IN","name":"Avi","type":"Role","_key":"67755","_from":"41655","_to":"41653"} +{"$label":"DIRECTED","_key":"67750","_from":"41654","_to":"41653"} +{"$label":"ACTS_IN","name":"Malmberg","type":"Role","_key":"67769","_from":"41663","_to":"41659"} +{"$label":"ACTS_IN","name":"Grant","type":"Role","_key":"67768","_from":"41662","_to":"41659"} +{"$label":"ACTS_IN","name":"Folke Nilsson","type":"Role","_key":"67767","_from":"41661","_to":"41659"} +{"$label":"ACTS_IN","name":"Isak Bj\u00f8rvik","type":"Role","_key":"67766","_from":"41660","_to":"41659"} +{"$label":"ACTS_IN","name":"Olle Marklund","type":"Role","_key":"111044","_from":"41661","_to":"65590"} +{"$label":"ACTS_IN","name":"Jarle","type":"Role","_key":"116455","_from":"41662","_to":"68545"} +{"$label":"ACTS_IN","name":"Hamre","type":"Role","_key":"114713","_from":"41662","_to":"67569"} +{"$label":"ACTS_IN","name":"Jacob Hamre","type":"Role","_key":"109842","_from":"41662","_to":"64893"} +{"$label":"ACTS_IN","name":"Hamre","type":"Role","_key":"109833","_from":"41662","_to":"64885"} +{"$label":"ACTS_IN","name":"Hamre","type":"Role","_key":"106514","_from":"41662","_to":"62756"} +{"$label":"ACTS_IN","name":"Trausti","type":"Role","_key":"110202","_from":"41663","_to":"65134"} +{"$label":"ACTS_IN","name":"Henkie Flodder","type":"Role","_key":"67775","_from":"41667","_to":"41664"} +{"$label":"ACTS_IN","name":"Kees Flodder","type":"Role","_key":"67774","_from":"41666","_to":"41664"} +{"$label":"ACTS_IN","name":"Johnnie Flodder","type":"Role","_key":"67773","_from":"41665","_to":"41664"} +{"$label":"ACTS_IN","name":"Midshipman Edward Young","type":"Role","_key":"67786","_from":"41671","_to":"41668"} +{"$label":"ACTS_IN","name":"John Frye","type":"Role","_key":"67785","_from":"41670","_to":"41668"} +{"$label":"ACTS_IN","name":"Michael Byrne","type":"Role","_key":"67783","_from":"41669","_to":"41668"} +{"$label":"ACTS_IN","name":"Bob Leffert","type":"Role","_key":"67802","_from":"41675","_to":"41672"} +{"$label":"ACTS_IN","name":"Irene Terwilliger","type":"Role","_key":"67799","_from":"41674","_to":"41672"} +{"$label":"ACTS_IN","name":"Emmett Smith","type":"Role","_key":"67796","_from":"41673","_to":"41672"} +{"$label":"DIRECTED","_key":"67814","_from":"41678","_to":"41677"} +{"$label":"DIRECTED","_key":"89301","_from":"41678","_to":"52865"} +{"$label":"DIRECTED","_key":"68304","_from":"41678","_to":"41929"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67819","_from":"41684","_to":"41679"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67818","_from":"41683","_to":"41679"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67817","_from":"41682","_to":"41679"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67816","_from":"41681","_to":"41679"} +{"$label":"DIRECTED","_key":"67815","_from":"41680","_to":"41679"} +{"$label":"ACTS_IN","name":"Rianna","type":"Role","_key":"67821","_from":"41686","_to":"41685"} +{"$label":"DIRECTED","_key":"67857","_from":"41694","_to":"41693"} +{"$label":"ACTS_IN","name":"Siegfried Hohenleitner","type":"Role","_key":"67863","_from":"41698","_to":"41695"} +{"$label":"ACTS_IN","name":"Liuba Halsman","type":"Role","_key":"67862","_from":"41697","_to":"41695"} +{"$label":"ACTS_IN","name":"Phillippe Halsman","type":"Role","_key":"67861","_from":"41696","_to":"41695"} +{"$label":"ACTS_IN","name":"Thelma","type":"Role","_key":"67870","_from":"41701","_to":"41699"} +{"$label":"DIRECTED","_key":"67866","_from":"41700","_to":"41699"} +{"$label":"ACTS_IN","name":"Leslie Quennell","type":"Role","_key":"119114","_from":"41701","_to":"70011"} +{"$label":"ACTS_IN","name":"Eleanor Bannet","type":"Role","_key":"113333","_from":"41701","_to":"66763"} +{"$label":"ACTS_IN","name":"Miikolais Vater","type":"Role","_key":"67881","_from":"41711","_to":"41702"} +{"$label":"ACTS_IN","name":"Nikolais Mutter","type":"Role","_key":"67880","_from":"41710","_to":"41702"} +{"$label":"ACTS_IN","name":"Lieutenant","type":"Role","_key":"67879","_from":"41709","_to":"41702"} +{"$label":"ACTS_IN","name":"Mosgh","type":"Role","_key":"67878","_from":"41708","_to":"41702"} +{"$label":"ACTS_IN","name":"Valoudia","type":"Role","_key":"67877","_from":"41707","_to":"41702"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"67876","_from":"41706","_to":"41702"} +{"$label":"ACTS_IN","name":"Assad","type":"Role","_key":"67875","_from":"41705","_to":"41702"} +{"$label":"ACTS_IN","name":"Najmoudine","type":"Role","_key":"67874","_from":"41704","_to":"41702"} +{"$label":"DIRECTED","_key":"67871","_from":"41703","_to":"41702"} +{"$label":"DIRECTED","_key":"67887","_from":"41714","_to":"41713"} +{"$label":"DIRECTED","_key":"111605","_from":"41714","_to":"65893"} +{"$label":"ACTS_IN","name":"May","type":"Role","_key":"67900","_from":"41718","_to":"41715"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"67899","_from":"41717","_to":"41715"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"67898","_from":"41716","_to":"41715"} +{"$label":"DIRECTED","_key":"67903","_from":"41722","_to":"41719"} +{"$label":"DIRECTED","_key":"67902","_from":"41721","_to":"41719"} +{"$label":"DIRECTED","_key":"67901","_from":"41720","_to":"41719"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"67907","_from":"41724","_to":"41723"} +{"$label":"ACTS_IN","name":"Stacy Patton","type":"Role","_key":"67918","_from":"41728","_to":"41725"} +{"$label":"ACTS_IN","name":"Terry Hastings","type":"Role","_key":"67917","_from":"41727","_to":"41725"} +{"$label":"ACTS_IN","name":"Nate Wilson","type":"Role","_key":"67916","_from":"41726","_to":"41725"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"109926","_from":"41727","_to":"64948"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67925","_from":"41734","_to":"41729"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67924","_from":"41733","_to":"41729"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67923","_from":"41732","_to":"41729"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67922","_from":"41731","_to":"41729"} +{"$label":"ACTS_IN","name":"sich selbst","type":"Role","_key":"67921","_from":"41730","_to":"41729"} +{"$label":"ACTS_IN","name":"Nellie","type":"Role","_key":"67930","_from":"41736","_to":"41735"} +{"$label":"DIRECTED","_key":"67947","_from":"41752","_to":"41737"} +{"$label":"ACTS_IN","name":"Avi","type":"Role","_key":"67946","_from":"41751","_to":"41737"} +{"$label":"ACTS_IN","name":"Uzi","type":"Role","_key":"67945","_from":"41750","_to":"41737"} +{"$label":"ACTS_IN","name":"Ronen","type":"Role","_key":"67944","_from":"41749","_to":"41737"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"67943","_from":"41748","_to":"41737"} +{"$label":"ACTS_IN","name":"Zila","type":"Role","_key":"67942","_from":"41747","_to":"41737"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"67941","_from":"41746","_to":"41737"} +{"$label":"ACTS_IN","name":"Zvi","type":"Role","_key":"67940","_from":"41745","_to":"41737"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"67939","_from":"41744","_to":"41737"} +{"$label":"ACTS_IN","name":"Eyal","type":"Role","_key":"67938","_from":"41743","_to":"41737"} +{"$label":"ACTS_IN","name":"Etty","type":"Role","_key":"67937","_from":"41742","_to":"41737"} +{"$label":"ACTS_IN","name":"Shimshon","type":"Role","_key":"67936","_from":"41741","_to":"41737"} +{"$label":"ACTS_IN","name":"Avraham","type":"Role","_key":"67935","_from":"41740","_to":"41737"} +{"$label":"ACTS_IN","name":"Miri","type":"Role","_key":"67933","_from":"41739","_to":"41737"} +{"$label":"ACTS_IN","name":"Dvir","type":"Role","_key":"67932","_from":"41738","_to":"41737"} +{"$label":"ACTS_IN","name":"Himself - Climber","type":"Role","_key":"67954","_from":"41760","_to":"41753"} +{"$label":"ACTS_IN","name":"Himself - Climber","type":"Role","_key":"67953","_from":"41759","_to":"41753"} +{"$label":"ACTS_IN","name":"Himself - Climber","type":"Role","_key":"67952","_from":"41758","_to":"41753"} +{"$label":"ACTS_IN","name":"Herself - Climber","type":"Role","_key":"67951","_from":"41757","_to":"41753"} +{"$label":"ACTS_IN","name":"Himself - Climber","type":"Role","_key":"67950","_from":"41756","_to":"41753"} +{"$label":"DIRECTED","_key":"67949","_from":"41755","_to":"41753"} +{"$label":"DIRECTED","_key":"67948","_from":"41754","_to":"41753"} +{"$label":"DIRECTED","_key":"119518","_from":"41755","_to":"70207"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"67971","_from":"41765","_to":"41763"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"67966","_from":"41764","_to":"41763"} +{"$label":"ACTS_IN","name":"Toby a Turtle","type":"Role","_key":"72557","_from":"41765","_to":"43753"} +{"$label":"ACTS_IN","name":"Mr. Stillman","type":"Role","_key":"67979","_from":"41770","_to":"41766"} +{"$label":"ACTS_IN","name":"Helen Vinson","type":"Role","_key":"67977","_from":"41769","_to":"41766"} +{"$label":"ACTS_IN","name":"Alex Stillman","type":"Role","_key":"67975","_from":"41768","_to":"41766"} +{"$label":"DIRECTED","_key":"67973","_from":"41767","_to":"41766"} +{"$label":"ACTS_IN","name":"Karen Brennick","type":"Role","_key":"67985","_from":"41778","_to":"41774"} +{"$label":"ACTS_IN","name":"Elena Rivera","type":"Role","_key":"67984","_from":"41777","_to":"41774"} +{"$label":"ACTS_IN","name":"Nestor Tubman","type":"Role","_key":"67983","_from":"41776","_to":"41774"} +{"$label":"ACTS_IN","name":"Danny Brennick","type":"Role","_key":"67982","_from":"41775","_to":"41774"} +{"$label":"ACTS_IN","name":"Herrena","type":"Role","_key":"95123","_from":"41777","_to":"55975"} +{"$label":"ACTS_IN","name":"John Durbeyfield","type":"Role","_key":"67995","_from":"41781","_to":"41780"} +{"$label":"DIRECTED","_key":"68001","_from":"41785","_to":"41782"} +{"$label":"ACTS_IN","name":"Kirchbergwirt","type":"Role","_key":"68000","_from":"41784","_to":"41782"} +{"$label":"ACTS_IN","name":"Kurt Fellner","type":"Role","_key":"67998","_from":"41783","_to":"41782"} +{"$label":"ACTS_IN","name":"Mischa Neugebauer | Polizist Gratzl","type":"Role","_key":"104479","_from":"41783","_to":"61453"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"68014","_from":"41789","_to":"41786"} +{"$label":"ACTS_IN","name":"Rosa Amici","type":"Role","_key":"68012","_from":"41788","_to":"41786"} +{"$label":"ACTS_IN","name":"Jody","type":"Role","_key":"68009","_from":"41787","_to":"41786"} +{"$label":"DIRECTED","_key":"68018","_from":"41794","_to":"41790"} +{"$label":"DIRECTED","_key":"68017","_from":"41793","_to":"41790"} +{"$label":"ACTS_IN","name":"Son","type":"Role","_key":"68016","_from":"41792","_to":"41790"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"68015","_from":"41791","_to":"41790"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"68028","_from":"41792","_to":"41799"} +{"$label":"DIRECTED","_key":"99214","_from":"41793","_to":"58464"} +{"$label":"DIRECTED","_key":"68030","_from":"41793","_to":"41799"} +{"$label":"DIRECTED","_key":"68022","_from":"41793","_to":"41795"} +{"$label":"ACTS_IN","name":"Andrea Grandfather","type":"Role","_key":"68021","_from":"41798","_to":"41795"} +{"$label":"ACTS_IN","name":"Simona","type":"Role","_key":"68020","_from":"41797","_to":"41795"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"68019","_from":"41796","_to":"41795"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"68029","_from":"41805","_to":"41799"} +{"$label":"ACTS_IN","name":"Maurizio Gironi","type":"Role","_key":"68027","_from":"41804","_to":"41799"} +{"$label":"ACTS_IN","name":"Miryam Cerci","type":"Role","_key":"68026","_from":"41803","_to":"41799"} +{"$label":"ACTS_IN","name":"Federico Ciccone","type":"Role","_key":"68025","_from":"41802","_to":"41799"} +{"$label":"ACTS_IN","name":"Daniel Giordani","type":"Role","_key":"68024","_from":"41801","_to":"41799"} +{"$label":"ACTS_IN","name":"Giorgia Mastrangeli","type":"Role","_key":"68023","_from":"41800","_to":"41799"} +{"$label":"DIRECTED","_key":"68035","_from":"41809","_to":"41806"} +{"$label":"ACTS_IN","name":"Sky Marshal Omar Anoke","type":"Role","_key":"68033","_from":"41808","_to":"41806"} +{"$label":"ACTS_IN","name":"Lola Beck","type":"Role","_key":"68032","_from":"41807","_to":"41806"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"120353","_from":"41807","_to":"70696"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"68047","_from":"41814","_to":"41811"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"68045","_from":"41813","_to":"41811"} +{"$label":"DIRECTED","_key":"68042","_from":"41812","_to":"41811"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"110756","_from":"41813","_to":"65429"} +{"$label":"ACTS_IN","name":"Andrew Jacoby","type":"Role","_key":"68054","_from":"41816","_to":"41815"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"116964","_from":"41816","_to":"68851"} +{"$label":"ACTS_IN","name":"Gregory Wilcox","type":"Role","_key":"102617","_from":"41816","_to":"60376"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"102062","_from":"41816","_to":"60045"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"92073","_from":"41816","_to":"54329"} +{"$label":"ACTS_IN","name":"Schwester Mary of the Sacred Heart","type":"Role","_key":"68060","_from":"41818","_to":"41817"} +{"$label":"ACTS_IN","name":"Mrs. Mabel Butler","type":"Role","_key":"119361","_from":"41818","_to":"70137"} +{"$label":"ACTS_IN","name":"Stan's Mum","type":"Role","_key":"119342","_from":"41818","_to":"70122"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"68069","_from":"41821","_to":"41819"} +{"$label":"ACTS_IN","name":"le contr\u00f4leur de billets","type":"Role","_key":"68068","_from":"41820","_to":"41819"} +{"$label":"ACTS_IN","name":"Old Indian","type":"Role","_key":"68076","_from":"41823","_to":"41822"} +{"$label":"ACTS_IN","name":"General in Thailand","type":"Role","_key":"68084","_from":"41825","_to":"41824"} +{"$label":"ACTS_IN","name":"General Tien","type":"Role","_key":"72305","_from":"41825","_to":"43677"} +{"$label":"ACTS_IN","name":"Radio Announcer \/ Airplane Captain (voice)","type":"Role","_key":"68103","_from":"41832","_to":"41826"} +{"$label":"ACTS_IN","name":"Faloo \/ Mother (voice)","type":"Role","_key":"68101","_from":"41831","_to":"41826"} +{"$label":"ACTS_IN","name":"Francois (voice)","type":"Role","_key":"68100","_from":"41830","_to":"41826"} +{"$label":"ACTS_IN","name":"Cody (voice)","type":"Role","_key":"68093","_from":"41829","_to":"41826"} +{"$label":"ACTS_IN","name":"Jake (voice)","type":"Role","_key":"68092","_from":"41828","_to":"41826"} +{"$label":"DIRECTED","_key":"68087","_from":"41827","_to":"41826"} +{"$label":"ACTS_IN","name":"General Hawk","type":"Role","_key":"112197","_from":"41830","_to":"66249"} +{"$label":"ACTS_IN","name":"Prince Edvard","type":"Role","_key":"68106","_from":"41835","_to":"41834"} +{"$label":"ACTS_IN","name":"Prince Edvard","type":"Role","_key":"105097","_from":"41835","_to":"61857"} +{"$label":"DIRECTED","_key":"68117","_from":"41842","_to":"41837"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"68116","_from":"41841","_to":"41837"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"68115","_from":"41840","_to":"41837"} +{"$label":"ACTS_IN","name":"Leolo","type":"Role","_key":"68112","_from":"41839","_to":"41837"} +{"$label":"ACTS_IN","name":"Narrator (Stimme)","type":"Role","_key":"68111","_from":"41838","_to":"41837"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"68130","_from":"41848","_to":"41845"} +{"$label":"ACTS_IN","name":"Marten","type":"Role","_key":"68129","_from":"41847","_to":"41845"} +{"$label":"ACTS_IN","name":"Tobias 'Dobbs' Steiger","type":"Role","_key":"68127","_from":"41846","_to":"41845"} +{"$label":"DIRECTED","_key":"68138","_from":"41851","_to":"41849"} +{"$label":"ACTS_IN","name":"Chin Bo","type":"Role","_key":"68135","_from":"41850","_to":"41849"} +{"$label":"ACTS_IN","name":"Hou Ting-An","type":"Role","_key":"114031","_from":"41850","_to":"67151"} +{"$label":"DIRECTED","_key":"117730","_from":"41851","_to":"69206"} +{"$label":"DIRECTED","_key":"117264","_from":"41851","_to":"68969"} +{"$label":"DIRECTED","_key":"91509","_from":"41851","_to":"53944"} +{"$label":"DIRECTED","_key":"70502","_from":"41851","_to":"42916"} +{"$label":"DIRECTED","_key":"68684","_from":"41851","_to":"42090"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"68143","_from":"41855","_to":"41852"} +{"$label":"ACTS_IN","name":"Rothaariger Junge","type":"Role","_key":"68142","_from":"41854","_to":"41852"} +{"$label":"ACTS_IN","name":"Gerry","type":"Role","_key":"68141","_from":"41853","_to":"41852"} +{"$label":"DIRECTED","_key":"68162","_from":"41862","_to":"41857"} +{"$label":"ACTS_IN","name":"Frau Blume","type":"Role","_key":"68159","_from":"41861","_to":"41857"} +{"$label":"ACTS_IN","name":"Frau Kampmann","type":"Role","_key":"68158","_from":"41860","_to":"41857"} +{"$label":"ACTS_IN","name":"Flori Striesow","type":"Role","_key":"68154","_from":"41859","_to":"41857"} +{"$label":"ACTS_IN","name":"Ute Striesow","type":"Role","_key":"68152","_from":"41858","_to":"41857"} +{"$label":"DIRECTED","_key":"72769","_from":"41862","_to":"43838"} +{"$label":"ACTS_IN","name":"Alvaro","type":"Role","_key":"68168","_from":"41869","_to":"41863"} +{"$label":"ACTS_IN","name":"Ramiro","type":"Role","_key":"68167","_from":"41868","_to":"41863"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"68166","_from":"41867","_to":"41863"} +{"$label":"ACTS_IN","name":"Suli","type":"Role","_key":"68165","_from":"41866","_to":"41863"} +{"$label":"ACTS_IN","name":"Kraken","type":"Role","_key":"68164","_from":"41865","_to":"41863"} +{"$label":"DIRECTED","_key":"68163","_from":"41864","_to":"41863"} +{"$label":"ACTS_IN","name":"Rafael Belvedere","type":"Role","_key":"120151","_from":"41865","_to":"70569"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"114842","_from":"41865","_to":"67647"} +{"$label":"ACTS_IN","name":"Esteban Espinosa","type":"Role","_key":"95719","_from":"41865","_to":"56298"} +{"$label":"ACTS_IN","name":"La Tana Ferro","type":"Role","_key":"110501","_from":"41866","_to":"65287"} +{"$label":"ACTS_IN","name":"Sohn von Mr. Tv","type":"Role","_key":"93907","_from":"41866","_to":"55289"} +{"$label":"DIRECTED","_key":"68170","_from":"41871","_to":"41870"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68174","_from":"41875","_to":"41872"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68173","_from":"41874","_to":"41872"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68172","_from":"41873","_to":"41872"} +{"$label":"DIRECTED","_key":"68176","_from":"41877","_to":"41876"} +{"$label":"DIRECTED","_key":"68177","_from":"41879","_to":"41878"} +{"$label":"ACTS_IN","name":"Aunt Edna","type":"Role","_key":"68185","_from":"41881","_to":"41880"} +{"$label":"ACTS_IN","name":"Adam Szalinski","type":"Role","_key":"68206","_from":"41887","_to":"41885"} +{"$label":"ACTS_IN","name":"Adam Szalinski","type":"Role","_key":"68205","_from":"41886","_to":"41885"} +{"$label":"ACTS_IN","name":"Roxanne Purley","type":"Role","_key":"68212","_from":"41890","_to":"41888"} +{"$label":"ACTS_IN","name":"Monica Purley","type":"Role","_key":"68210","_from":"41889","_to":"41888"} +{"$label":"ACTS_IN","name":"Bodo","type":"Role","_key":"68217","_from":"41892","_to":"41891"} +{"$label":"ACTS_IN","name":"Chaplain Johnson","type":"Role","_key":"68228","_from":"41900","_to":"41893"} +{"$label":"ACTS_IN","name":"Heidi Philipps","type":"Role","_key":"68227","_from":"41899","_to":"41893"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"68226","_from":"41898","_to":"41893"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"68225","_from":"41897","_to":"41893"} +{"$label":"ACTS_IN","name":"Dawn Philipps","type":"Role","_key":"68224","_from":"41896","_to":"41893"} +{"$label":"ACTS_IN","name":"Captain Riggs","type":"Role","_key":"68223","_from":"41895","_to":"41893"} +{"$label":"DIRECTED","_key":"68220","_from":"41894","_to":"41893"} +{"$label":"ACTS_IN","name":"Eumolpo","type":"Role","_key":"68238","_from":"41904","_to":"41902"} +{"$label":"ACTS_IN","name":"Gitone","type":"Role","_key":"68237","_from":"41903","_to":"41902"} +{"$label":"ACTS_IN","name":"Jesse Hall","type":"Role","_key":"68250","_from":"41907","_to":"41905"} +{"$label":"ACTS_IN","name":"Mar\u00eda","type":"Role","_key":"68246","_from":"41906","_to":"41905"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"93368","_from":"41907","_to":"54996"} +{"$label":"ACTS_IN","name":"Poindexter 'Fool' Williams","type":"Role","_key":"92800","_from":"41907","_to":"54745"} +{"$label":"DIRECTED","_key":"68281","_from":"41918","_to":"41908"} +{"$label":"ACTS_IN","name":"Vice Admiral Chuichi Nagumo (as Eijiro Tono)","type":"Role","_key":"68278","_from":"41917","_to":"41908"} +{"$label":"ACTS_IN","name":"General George C. Marshall","type":"Role","_key":"68277","_from":"41916","_to":"41908"} +{"$label":"ACTS_IN","name":"Admiral Koshiro Oikawa (as Bontaro Miyake)","type":"Role","_key":"68274","_from":"41915","_to":"41908"} +{"$label":"ACTS_IN","name":"Admiral Zengo Yoshida","type":"Role","_key":"68269","_from":"41914","_to":"41908"} +{"$label":"ACTS_IN","name":"Prime Minister Prince Fumimaro Konoye","type":"Role","_key":"68267","_from":"41913","_to":"41908"} +{"$label":"ACTS_IN","name":"Lt. Commander Francis J. Thomas - USS Nevada","type":"Role","_key":"68266","_from":"41912","_to":"41908"} +{"$label":"ACTS_IN","name":"Japanese Ambassador Kichisaburo Nomura","type":"Role","_key":"68265","_from":"41911","_to":"41908"} +{"$label":"ACTS_IN","name":"Lt. Commander Mitsuo Fuchida","type":"Role","_key":"68262","_from":"41910","_to":"41908"} +{"$label":"ACTS_IN","name":"Vice-Admiral Isoroku Yamamoto","type":"Role","_key":"68257","_from":"41909","_to":"41908"} +{"$label":"ACTS_IN","name":"Koichi Hirayama","type":"Role","_key":"115062","_from":"41909","_to":"67755"} +{"$label":"ACTS_IN","name":"Iwakiri Sencho","type":"Role","_key":"114269","_from":"41909","_to":"67298"} +{"$label":"ACTS_IN","name":"Mr. Sakamoto","type":"Role","_key":"95941","_from":"41909","_to":"56416"} +{"$label":"ACTS_IN","name":"Sanpei Numata","type":"Role","_key":"115065","_from":"41917","_to":"67755"} +{"$label":"DIRECTED","_key":"68286","_from":"41923","_to":"41919"} +{"$label":"ACTS_IN","name":"Mag","type":"Role","_key":"68285","_from":"41922","_to":"41919"} +{"$label":"ACTS_IN","name":"Bugge-H\u00f8vik","type":"Role","_key":"68284","_from":"41921","_to":"41919"} +{"$label":"ACTS_IN","name":"Mor","type":"Role","_key":"68283","_from":"41920","_to":"41919"} +{"$label":"ACTS_IN","name":"Anna Neshov","type":"Role","_key":"87910","_from":"41920","_to":"52199"} +{"$label":"ACTS_IN","name":"Rudolf Blodstrupmoen","type":"Role","_key":"118014","_from":"41921","_to":"69363"} +{"$label":"DIRECTED","_key":"68291","_from":"41926","_to":"41924"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"68288","_from":"41925","_to":"41924"} +{"$label":"ACTS_IN","name":"Victoria Page","type":"Role","_key":"120327","_from":"41925","_to":"70681"} +{"$label":"DIRECTED","_key":"120334","_from":"41926","_to":"70681"} +{"$label":"DIRECTED","_key":"113291","_from":"41926","_to":"66734"} +{"$label":"DIRECTED","_key":"109061","_from":"41926","_to":"64443"} +{"$label":"DIRECTED","_key":"105485","_from":"41926","_to":"62074"} +{"$label":"DIRECTED","_key":"88873","_from":"41926","_to":"52654"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"68296","_from":"41928","_to":"41927"} +{"$label":"ACTS_IN","name":"Jacqueline Struutz","type":"Role","_key":"71594","_from":"41928","_to":"43365"} +{"$label":"ACTS_IN","name":"Jackie Black","type":"Role","_key":"68301","_from":"41930","_to":"41929"} +{"$label":"ACTS_IN","name":"Alfred","type":"Role","_key":"68316","_from":"41933","_to":"41932"} +{"$label":"ACTS_IN","name":"John Oldman","type":"Role","_key":"94116","_from":"41933","_to":"55425"} +{"$label":"ACTS_IN","name":"Cora Corman","type":"Role","_key":"68323","_from":"41935","_to":"41934"} +{"$label":"ACTS_IN","name":"Molly Hartley","type":"Role","_key":"101609","_from":"41935","_to":"59810"} +{"$label":"ACTS_IN","name":"Forvalter \/ Foreman","type":"Role","_key":"68328","_from":"41939","_to":"41937"} +{"$label":"ACTS_IN","name":"Pelle","type":"Role","_key":"68326","_from":"41938","_to":"41937"} +{"$label":"ACTS_IN","name":"Jack Dalton","type":"Role","_key":"68334","_from":"41943","_to":"41940"} +{"$label":"ACTS_IN","name":"Averell Dalton","type":"Role","_key":"68332","_from":"41942","_to":"41940"} +{"$label":"ACTS_IN","name":"Lotta Legs","type":"Role","_key":"68331","_from":"41941","_to":"41940"} +{"$label":"ACTS_IN","name":"Paula Powers","type":"Role","_key":"121044","_from":"41941","_to":"71084"} +{"$label":"DIRECTED","_key":"68342","_from":"41948","_to":"41944"} +{"$label":"ACTS_IN","name":"Scooter \/ Statler \/ Janice \/ Sweetums \/ Beaker \/ Fozzie Bear (assistant) (voice)","type":"Role","_key":"68339","_from":"41947","_to":"41944"} +{"$label":"ACTS_IN","name":"Floyd Pepper \/ Robin the Frog \/ Crazy Harry \/ Lew Zealand \/ Camilla \/ Dr. Bunsen Honeydew (assistant) (uncredited) (voice)","type":"Role","_key":"68338","_from":"41946","_to":"41944"} +{"$label":"ACTS_IN","name":"Kermit the Frog \/ Rowlf \/ Dr. Teeth \/ Waldorf \/ Doc Hopper's Men \/ Link Hogthrob \/ Swedish Chef (voice)","type":"Role","_key":"68336","_from":"41945","_to":"41944"} +{"$label":"ACTS_IN","name":"Kermit the Frog","type":"Role","_key":"102386","_from":"41945","_to":"60249"} +{"$label":"ACTS_IN","name":"Various Characters","type":"Role","_key":"93572","_from":"41945","_to":"55106"} +{"$label":"ACTS_IN","name":"Kermit the Frog \/ Rowlf \/ Dr. Teeth \/ Waldorf \/ Swedish Chef \/ Ernie \/ Granny \/ Horse & Carriage Rider \/ Link Hogthrob \/ The Newsman (voice)","type":"Role","_key":"72629","_from":"41945","_to":"43777"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"71214","_from":"41945","_to":"43219"} +{"$label":"DIRECTED","_key":"95370","_from":"41945","_to":"56100"} +{"$label":"DIRECTED","_key":"71221","_from":"41945","_to":"43219"} +{"$label":"ACTS_IN","name":"Camilla \/ Lew Zealand \/ Floyd \/ Bear \/ Chicken \/ Crazy Harry \/ Dog \/ Dr. Julias Strangepork \/ Granny \/ Penguin \/ Pops \/ The Count (voice)","type":"Role","_key":"72634","_from":"41946","_to":"43777"} +{"$label":"ACTS_IN","name":"Scooter \/ Statler \/ Janice \/ Beaker \/ Dog (voice)","type":"Role","_key":"72633","_from":"41947","_to":"43777"} +{"$label":"DIRECTED","_key":"118857","_from":"41948","_to":"69859"} +{"$label":"ACTS_IN","name":"The Girl's mother","type":"Role","_key":"68352","_from":"41952","_to":"41950"} +{"$label":"ACTS_IN","name":"The Girl's father","type":"Role","_key":"68351","_from":"41951","_to":"41950"} +{"$label":"DIRECTED","_key":"68365","_from":"41956","_to":"41954"} +{"$label":"ACTS_IN","name":"Kommissar Becker","type":"Role","_key":"68363","_from":"41955","_to":"41954"} +{"$label":"DIRECTED","_key":"68376","_from":"41962","_to":"41957"} +{"$label":"ACTS_IN","name":"Muhammed","type":"Role","_key":"68374","_from":"41961","_to":"41957"} +{"$label":"ACTS_IN","name":"Kahrmann","type":"Role","_key":"68371","_from":"41960","_to":"41957"} +{"$label":"ACTS_IN","name":"Deniz","type":"Role","_key":"68369","_from":"41959","_to":"41957"} +{"$label":"ACTS_IN","name":"Yasemin","type":"Role","_key":"68367","_from":"41958","_to":"41957"} +{"$label":"DIRECTED","_key":"68409","_from":"41967","_to":"41966"} +{"$label":"DIRECTED","_key":"68416","_from":"41973","_to":"41968"} +{"$label":"ACTS_IN","name":"Harold Aubrey Whitehurst","type":"Role","_key":"68414","_from":"41972","_to":"41968"} +{"$label":"ACTS_IN","name":"Ronald Tyler","type":"Role","_key":"68412","_from":"41971","_to":"41968"} +{"$label":"ACTS_IN","name":"Kristen De Silva","type":"Role","_key":"68411","_from":"41970","_to":"41968"} +{"$label":"ACTS_IN","name":"Andy Barclay","type":"Role","_key":"68410","_from":"41969","_to":"41968"} +{"$label":"ACTS_IN","name":"Ridley Freeborn","type":"Role","_key":"72352","_from":"41969","_to":"43696"} +{"$label":"ACTS_IN","name":"Alberich","type":"Role","_key":"68424","_from":"41975","_to":"41974"} +{"$label":"ACTS_IN","name":"New High Priest","type":"Role","_key":"94764","_from":"41975","_to":"55802"} +{"$label":"ACTS_IN","name":"Rolle","type":"Role","_key":"68431","_from":"41978","_to":"41976"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"68429","_from":"41977","_to":"41976"} +{"$label":"DIRECTED","_key":"68439","_from":"41984","_to":"41979"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"68438","_from":"41983","_to":"41979"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"68437","_from":"41982","_to":"41979"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"68436","_from":"41981","_to":"41979"} +{"$label":"ACTS_IN","name":"Andrey","type":"Role","_key":"68435","_from":"41980","_to":"41979"} +{"$label":"DIRECTED","_key":"90347","_from":"41984","_to":"53397"} +{"$label":"ACTS_IN","name":"Charles Gordon Windsor, Jr.","type":"Role","_key":"68445","_from":"41987","_to":"41985"} +{"$label":"ACTS_IN","name":"Tim Travers","type":"Role","_key":"68444","_from":"41986","_to":"41985"} +{"$label":"ACTS_IN","name":"Jim McCardle","type":"Role","_key":"119126","_from":"41986","_to":"70016"} +{"$label":"ACTS_IN","name":"Larry Underwood","type":"Role","_key":"94998","_from":"41987","_to":"55928"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"68450","_from":"41989","_to":"41988"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"68454","_from":"41991","_to":"41990"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68461","_from":"41998","_to":"41992"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68460","_from":"41997","_to":"41992"} +{"$label":"ACTS_IN","name":"Richard Hawking","type":"Role","_key":"68459","_from":"41996","_to":"41992"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68458","_from":"41995","_to":"41992"} +{"$label":"ACTS_IN","name":"Simon Yates","type":"Role","_key":"68457","_from":"41994","_to":"41992"} +{"$label":"ACTS_IN","name":"Joe Simpson","type":"Role","_key":"68456","_from":"41993","_to":"41992"} +{"$label":"ACTS_IN","name":"Byron","type":"Role","_key":"120369","_from":"41993","_to":"70710"} +{"$label":"ACTS_IN","name":"Raymond Schmitt","type":"Role","_key":"68468","_from":"42001","_to":"41999"} +{"$label":"ACTS_IN","name":"Roger Kremer","type":"Role","_key":"68467","_from":"42000","_to":"41999"} +{"$label":"DIRECTED","_key":"68475","_from":"42003","_to":"42002"} +{"$label":"DIRECTED","_key":"106495","_from":"42003","_to":"62740"} +{"$label":"ACTS_IN","name":"Dahl\u00e9n","type":"Role","_key":"68480","_from":"42006","_to":"42004"} +{"$label":"ACTS_IN","name":"Marja","type":"Role","_key":"68479","_from":"42005","_to":"42004"} +{"$label":"ACTS_IN","name":"Saekos Partnerin","type":"Role","_key":"68491","_from":"42014","_to":"42007"} +{"$label":"ACTS_IN","name":"DJ Hard","type":"Role","_key":"68490","_from":"42013","_to":"42007"} +{"$label":"ACTS_IN","name":"DJ Soft","type":"Role","_key":"68489","_from":"42012","_to":"42007"} +{"$label":"ACTS_IN","name":"Kasino - Kellnerin","type":"Role","_key":"68488","_from":"42011","_to":"42007"} +{"$label":"ACTS_IN","name":"blonder Handlanger mit Zopf","type":"Role","_key":"68487","_from":"42010","_to":"42007"} +{"$label":"ACTS_IN","name":"Kiyoko \/ Shizuko Imamura","type":"Role","_key":"68484","_from":"42009","_to":"42007"} +{"$label":"ACTS_IN","name":"Kaori Makimura \/ Carrie","type":"Role","_key":"68483","_from":"42008","_to":"42007"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"108414","_from":"42008","_to":"64096"} +{"$label":"ACTS_IN","name":"The White Dragon","type":"Role","_key":"109404","_from":"42010","_to":"64636"} +{"$label":"DIRECTED","_key":"68499","_from":"42016","_to":"42015"} +{"$label":"DIRECTED","_key":"69947","_from":"42016","_to":"42675"} +{"$label":"DIRECTED","_key":"68504","_from":"42018","_to":"42017"} +{"$label":"DIRECTED","_key":"68509","_from":"42020","_to":"42019"} +{"$label":"DIRECTED","_key":"72670","_from":"42020","_to":"43794"} +{"$label":"ACTS_IN","name":"Brig. Gen. Hobart Carver","type":"Role","_key":"68513","_from":"42022","_to":"42021"} +{"$label":"ACTS_IN","name":"Sam Hendrix","type":"Role","_key":"68537","_from":"42027","_to":"42026"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"111026","_from":"42027","_to":"65577"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"105979","_from":"42027","_to":"62398"} +{"$label":"ACTS_IN","name":"Alfred Pennyworth","type":"Role","_key":"102469","_from":"42027","_to":"60297"} +{"$label":"DIRECTED","_key":"68544","_from":"42031","_to":"42028"} +{"$label":"ACTS_IN","name":"Canan","type":"Role","_key":"68543","_from":"42030","_to":"42028"} +{"$label":"ACTS_IN","name":"Dilek","type":"Role","_key":"68542","_from":"42029","_to":"42028"} +{"$label":"ACTS_IN","name":"Freitag","type":"Role","_key":"68558","_from":"42035","_to":"42034"} +{"$label":"ACTS_IN","name":"Winnie","type":"Role","_key":"68568","_from":"42039","_to":"42036"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"68567","_from":"42038","_to":"42036"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"68566","_from":"42037","_to":"42036"} +{"$label":"ACTS_IN","name":"Nikki Johnson","type":"Role","_key":"118650","_from":"42037","_to":"69761"} +{"$label":"DIRECTED","_key":"68570","_from":"42041","_to":"42040"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68580","_from":"42047","_to":"42042"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68579","_from":"42046","_to":"42042"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68578","_from":"42045","_to":"42042"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68577","_from":"42044","_to":"42042"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68576","_from":"42043","_to":"42042"} +{"$label":"DIRECTED","_key":"68585","_from":"42052","_to":"42048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68584","_from":"42051","_to":"42048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68583","_from":"42050","_to":"42048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68582","_from":"42049","_to":"42048"} +{"$label":"ACTS_IN","name":"Elizabeth Wiatt","type":"Role","_key":"68589","_from":"42054","_to":"42053"} +{"$label":"ACTS_IN","name":"Salvatore als Kind","type":"Role","_key":"68596","_from":"42056","_to":"42055"} +{"$label":"ACTS_IN","name":"Kellie","type":"Role","_key":"68601","_from":"42058","_to":"42057"} +{"$label":"DIRECTED","_key":"68611","_from":"42063","_to":"42059"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68608","_from":"42062","_to":"42059"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68607","_from":"42061","_to":"42059"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"68606","_from":"42060","_to":"42059"} +{"$label":"ACTS_IN","name":"Arnie Rogers","type":"Role","_key":"68616","_from":"42066","_to":"42064"} +{"$label":"ACTS_IN","name":"Mrs. Wiggs","type":"Role","_key":"68615","_from":"42065","_to":"42064"} +{"$label":"ACTS_IN","name":"Arzt in Paris","type":"Role","_key":"68638","_from":"42070","_to":"42069"} +{"$label":"ACTS_IN","name":"Additional Voices (voice) (as Claire DuBrey)","type":"Role","_key":"68650","_from":"42074","_to":"42072"} +{"$label":"ACTS_IN","name":"Cinderella (voice)","type":"Role","_key":"68647","_from":"42073","_to":"42072"} +{"$label":"DIRECTED","_key":"68654","_from":"42076","_to":"42075"} +{"$label":"DIRECTED","_key":"88111","_from":"42076","_to":"52292"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"68664","_from":"42084","_to":"42077"} +{"$label":"ACTS_IN","name":"Police Commissioner","type":"Role","_key":"68663","_from":"42083","_to":"42077"} +{"$label":"ACTS_IN","name":"Gisella Montani (as Amanda)","type":"Role","_key":"68662","_from":"42082","_to":"42077"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"68661","_from":"42081","_to":"42077"} +{"$label":"ACTS_IN","name":"Patrizia","type":"Role","_key":"68660","_from":"42080","_to":"42077"} +{"$label":"ACTS_IN","name":"Maurizio Montani","type":"Role","_key":"68659","_from":"42079","_to":"42077"} +{"$label":"DIRECTED","_key":"68655","_from":"42078","_to":"42077"} +{"$label":"ACTS_IN","name":"Grace Calloway","type":"Role","_key":"68676","_from":"42087","_to":"42086"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"105822","_from":"42087","_to":"62297"} +{"$label":"ACTS_IN","name":"Aunt Dorrie","type":"Role","_key":"93689","_from":"42087","_to":"55148"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"89063","_from":"42087","_to":"52762"} +{"$label":"ACTS_IN","name":"Detective Mike Breer","type":"Role","_key":"68679","_from":"42089","_to":"42088"} +{"$label":"ACTS_IN","name":"Thunderleg","type":"Role","_key":"68687","_from":"42092","_to":"42090"} +{"$label":"ACTS_IN","name":"Sam Seed","type":"Role","_key":"68686","_from":"42091","_to":"42090"} +{"$label":"ACTS_IN","name":"Grandmaster Pai Cheng-Tien (as Hsiao-Tien Yuan)","type":"Role","_key":"70504","_from":"42091","_to":"42916"} +{"$label":"ACTS_IN","name":"The Magician","type":"Role","_key":"117582","_from":"42092","_to":"69128"} +{"$label":"ACTS_IN","name":"Lord Sheng Kuan (as Cheng-Li Huang)","type":"Role","_key":"70505","_from":"42092","_to":"42916"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"68698","_from":"42096","_to":"42095"} +{"$label":"DIRECTED","_key":"68704","_from":"42099","_to":"42097"} +{"$label":"ACTS_IN","name":"Dutch","type":"Role","_key":"68703","_from":"42098","_to":"42097"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"112882","_from":"42098","_to":"66629"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"105217","_from":"42098","_to":"61920"} +{"$label":"DIRECTED","_key":"117081","_from":"42099","_to":"68897"} +{"$label":"DIRECTED","_key":"68721","_from":"42112","_to":"42100"} +{"$label":"ACTS_IN","name":"Geddes","type":"Role","_key":"68720","_from":"42111","_to":"42100"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"68719","_from":"42110","_to":"42100"} +{"$label":"ACTS_IN","name":"Roddy","type":"Role","_key":"68718","_from":"42109","_to":"42100"} +{"$label":"ACTS_IN","name":"Donaldson","type":"Role","_key":"68717","_from":"42108","_to":"42100"} +{"$label":"ACTS_IN","name":"Cal (as John Jackson)","type":"Role","_key":"68716","_from":"42107","_to":"42100"} +{"$label":"ACTS_IN","name":"Rev Macpherson (as Christopher Asante)","type":"Role","_key":"68715","_from":"42106","_to":"42100"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"68714","_from":"42105","_to":"42100"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"68713","_from":"42104","_to":"42100"} +{"$label":"ACTS_IN","name":"Moritz","type":"Role","_key":"68709","_from":"42103","_to":"42100"} +{"$label":"ACTS_IN","name":"Urquhart","type":"Role","_key":"68708","_from":"42102","_to":"42100"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"68707","_from":"42101","_to":"42100"} +{"$label":"ACTS_IN","name":"Bud Dodge","type":"Role","_key":"108421","_from":"42107","_to":"64098"} +{"$label":"ACTS_IN","name":"Colin Craven","type":"Role","_key":"68723","_from":"42114","_to":"42113"} +{"$label":"DIRECTED","_key":"68744","_from":"42122","_to":"42117"} +{"$label":"ACTS_IN","name":"Tokichi Hattori","type":"Role","_key":"68743","_from":"42121","_to":"42117"} +{"$label":"ACTS_IN","name":"Toyoko Takahashi","type":"Role","_key":"68742","_from":"42120","_to":"42117"} +{"$label":"ACTS_IN","name":"Tomio Aoki","type":"Role","_key":"68741","_from":"42119","_to":"42117"} +{"$label":"ACTS_IN","name":"Mai Kishikawa","type":"Role","_key":"68740","_from":"42118","_to":"42117"} +{"$label":"ACTS_IN","name":"TV Reporter \/ Singer","type":"Role","_key":"107918","_from":"42119","_to":"63729"} +{"$label":"ACTS_IN","name":"Shoan","type":"Role","_key":"97935","_from":"42119","_to":"57672"} +{"$label":"ACTS_IN","name":"Salim","type":"Role","_key":"68749","_from":"42125","_to":"42123"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"68748","_from":"42124","_to":"42123"} +{"$label":"DIRECTED","_key":"68760","_from":"42133","_to":"42127"} +{"$label":"ACTS_IN","name":"Grumpy Bear (voice)","type":"Role","_key":"68758","_from":"42132","_to":"42127"} +{"$label":"ACTS_IN","name":"Birthday Bear \/ Cheer Bear (voice)","type":"Role","_key":"68757","_from":"42131","_to":"42127"} +{"$label":"ACTS_IN","name":"Funshine Bear \/ Share Bear (voice)","type":"Role","_key":"68756","_from":"42130","_to":"42127"} +{"$label":"ACTS_IN","name":"Friend Bear \/ Swift Heart Rabbit (voice)","type":"Role","_key":"68755","_from":"42129","_to":"42127"} +{"$label":"ACTS_IN","name":"Jason (voice)","type":"Role","_key":"68754","_from":"42128","_to":"42127"} +{"$label":"DIRECTED","_key":"68768","_from":"42135","_to":"42134"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"68766","_from":"42137","_to":"42134"} +{"$label":"ACTS_IN","name":"Mrs. Reed","type":"Role","_key":"68762","_from":"42136","_to":"42134"} +{"$label":"ACTS_IN","name":"Jefferson Reed","type":"Role","_key":"68761","_from":"42135","_to":"42134"} +{"$label":"DIRECTED","_key":"116692","_from":"42135","_to":"68694"} +{"$label":"DIRECTED","_key":"116104","_from":"42135","_to":"68369"} +{"$label":"DIRECTED","_key":"111319","_from":"42135","_to":"65744"} +{"$label":"DIRECTED","_key":"68774","_from":"42141","_to":"42138"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"68771","_from":"42140","_to":"42138"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"68769","_from":"42139","_to":"42138"} +{"$label":"ACTS_IN","name":"Capt. O'Brien","type":"Role","_key":"118456","_from":"42140","_to":"69639"} +{"$label":"DIRECTED","_key":"112288","_from":"42141","_to":"66300"} +{"$label":"DIRECTED","_key":"91087","_from":"42141","_to":"53744"} +{"$label":"DIRECTED","_key":"68781","_from":"42144","_to":"42142"} +{"$label":"ACTS_IN","name":"Shelby Cummings","type":"Role","_key":"68780","_from":"42143","_to":"42142"} +{"$label":"ACTS_IN","name":"Desiree Thomas","type":"Role","_key":"98592","_from":"42143","_to":"58103"} +{"$label":"ACTS_IN","name":"Blair Krank","type":"Role","_key":"95824","_from":"42143","_to":"56354"} +{"$label":"DIRECTED","_key":"105302","_from":"42144","_to":"61964"} +{"$label":"DIRECTED","_key":"68787","_from":"42146","_to":"42145"} +{"$label":"DIRECTED","_key":"68794","_from":"42149","_to":"42147"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"68792","_from":"42148","_to":"42147"} +{"$label":"ACTS_IN","name":"Emily Sommers","type":"Role","_key":"110981","_from":"42148","_to":"65549"} +{"$label":"DIRECTED","_key":"68808","_from":"42163","_to":"42150"} +{"$label":"ACTS_IN","name":"Teenage Boy","type":"Role","_key":"68807","_from":"42162","_to":"42150"} +{"$label":"ACTS_IN","name":"Old Grandpa","type":"Role","_key":"68806","_from":"42161","_to":"42150"} +{"$label":"ACTS_IN","name":"The Guy","type":"Role","_key":"68805","_from":"42160","_to":"42150"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"68804","_from":"42159","_to":"42150"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"68803","_from":"42158","_to":"42150"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"68802","_from":"42157","_to":"42150"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"68801","_from":"42156","_to":"42150"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"68800","_from":"42155","_to":"42150"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"68799","_from":"42154","_to":"42150"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"68798","_from":"42153","_to":"42150"} +{"$label":"ACTS_IN","name":"Julie Olivieri","type":"Role","_key":"68797","_from":"42152","_to":"42150"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"68796","_from":"42151","_to":"42150"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"68824","_from":"42169","_to":"42166"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"68823","_from":"42168","_to":"42166"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"68822","_from":"42167","_to":"42166"} +{"$label":"ACTS_IN","name":"Lukas Mutter","type":"Role","_key":"68958","_from":"42169","_to":"42219"} +{"$label":"DIRECTED","_key":"68829","_from":"42173","_to":"42170"} +{"$label":"DIRECTED","_key":"68828","_from":"42172","_to":"42170"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"68827","_from":"42171","_to":"42170"} +{"$label":"ACTS_IN","name":"Knox","type":"Role","_key":"68859","_from":"42181","_to":"42177"} +{"$label":"ACTS_IN","name":"Old Navy Customer","type":"Role","_key":"68858","_from":"42180","_to":"42177"} +{"$label":"ACTS_IN","name":"Josh Morrison","type":"Role","_key":"68857","_from":"42179","_to":"42177"} +{"$label":"ACTS_IN","name":"Nr.4- Sicherheitsoffizier","type":"Role","_key":"68853","_from":"42178","_to":"42177"} +{"$label":"ACTS_IN","name":"Lenny Horton","type":"Role","_key":"105301","_from":"42181","_to":"61964"} +{"$label":"ACTS_IN","name":"Werner Riemer","type":"Role","_key":"68863","_from":"42183","_to":"42182"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"68868","_from":"42185","_to":"42184"} +{"$label":"ACTS_IN","name":"Harold Lee","type":"Role","_key":"68877","_from":"42188","_to":"42187"} +{"$label":"ACTS_IN","name":"Phil Quon","type":"Role","_key":"108541","_from":"42188","_to":"64148"} +{"$label":"ACTS_IN","name":"Hikaru Sulu","type":"Role","_key":"94690","_from":"42188","_to":"55786"} +{"$label":"ACTS_IN","name":"Harold Lee","type":"Role","_key":"93971","_from":"42188","_to":"55341"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"93149","_from":"42188","_to":"54899"} +{"$label":"ACTS_IN","name":"Nightclub Cleaner","type":"Role","_key":"69335","_from":"42188","_to":"42372"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"68895","_from":"42194","_to":"42190"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"68894","_from":"42193","_to":"42190"} +{"$label":"ACTS_IN","name":"John Doe","type":"Role","_key":"68893","_from":"42192","_to":"42190"} +{"$label":"ACTS_IN","name":"Maggie Burroughs","type":"Role","_key":"68892","_from":"42191","_to":"42190"} +{"$label":"ACTS_IN","name":"The Sheik","type":"Role","_key":"68916","_from":"42197","_to":"42196"} +{"$label":"ACTS_IN","name":"The Sheik","type":"Role","_key":"72925","_from":"42197","_to":"43910"} +{"$label":"ACTS_IN","name":"Alice Gaspers - Left Field \/ Center Field (as Renee Coleman)","type":"Role","_key":"68932","_from":"42199","_to":"42198"} +{"$label":"DIRECTED","_key":"68946","_from":"42213","_to":"42200"} +{"$label":"DIRECTED","_key":"68945","_from":"42212","_to":"42200"} +{"$label":"ACTS_IN","name":"Cuddles (voice)","type":"Role","_key":"68944","_from":"42211","_to":"42200"} +{"$label":"ACTS_IN","name":"Lumpy \/ Splendid (voice)","type":"Role","_key":"68943","_from":"42210","_to":"42200"} +{"$label":"ACTS_IN","name":"Flaky","type":"Role","_key":"68942","_from":"42209","_to":"42200"} +{"$label":"ACTS_IN","name":"Nutty (voice)","type":"Role","_key":"68941","_from":"42208","_to":"42200"} +{"$label":"ACTS_IN","name":"Toothy \/ Handy (voice)","type":"Role","_key":"68940","_from":"42207","_to":"42200"} +{"$label":"ACTS_IN","name":"Lifty \/ Shifty","type":"Role","_key":"68939","_from":"42206","_to":"42200"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"68938","_from":"42205","_to":"42200"} +{"$label":"ACTS_IN","name":"Giggles \/ Petunia \/ Cub (voice)","type":"Role","_key":"68937","_from":"42204","_to":"42200"} +{"$label":"ACTS_IN","name":"Pop \/ Flippy (voice)","type":"Role","_key":"68936","_from":"42203","_to":"42200"} +{"$label":"ACTS_IN","name":"Sniffles","type":"Role","_key":"68935","_from":"42202","_to":"42200"} +{"$label":"ACTS_IN","name":"Disco Bear","type":"Role","_key":"68934","_from":"42201","_to":"42200"} +{"$label":"DIRECTED","_key":"68953","_from":"42218","_to":"42214"} +{"$label":"ACTS_IN","name":"Jossi","type":"Role","_key":"68951","_from":"42217","_to":"42214"} +{"$label":"ACTS_IN","name":"Skorpan","type":"Role","_key":"68948","_from":"42216","_to":"42214"} +{"$label":"ACTS_IN","name":"Jonatan","type":"Role","_key":"68947","_from":"42215","_to":"42214"} +{"$label":"DIRECTED","_key":"88170","_from":"42218","_to":"52316"} +{"$label":"DIRECTED","_key":"88002","_from":"42218","_to":"52247"} +{"$label":"DIRECTED","_key":"72903","_from":"42218","_to":"43904"} +{"$label":"DIRECTED","_key":"72898","_from":"42218","_to":"43903"} +{"$label":"DIRECTED","_key":"72893","_from":"42218","_to":"43900"} +{"$label":"DIRECTED","_key":"71129","_from":"42218","_to":"43175"} +{"$label":"ACTS_IN","name":"Christoph 'Chico' Wagenhorst","type":"Role","_key":"68956","_from":"42220","_to":"42219"} +{"$label":"ACTS_IN","name":"Addie Loggins","type":"Role","_key":"68961","_from":"42222","_to":"42221"} +{"$label":"ACTS_IN","name":"Mr. Columbato","type":"Role","_key":"68973","_from":"42227","_to":"42225"} +{"$label":"ACTS_IN","name":"Doctor Major Weiss","type":"Role","_key":"68972","_from":"42226","_to":"42225"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"115002","_from":"42227","_to":"67722"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"114627","_from":"42227","_to":"67521"} +{"$label":"ACTS_IN","name":"John Marino","type":"Role","_key":"71231","_from":"42227","_to":"43224"} +{"$label":"DIRECTED","_key":"68979","_from":"42232","_to":"42228"} +{"$label":"ACTS_IN","name":"Inspector Choo","type":"Role","_key":"68978","_from":"42231","_to":"42228"} +{"$label":"ACTS_IN","name":"Su-ni","type":"Role","_key":"68977","_from":"42230","_to":"42228"} +{"$label":"ACTS_IN","name":"Kang Man-shik","type":"Role","_key":"68976","_from":"42229","_to":"42228"} +{"$label":"ACTS_IN","name":"President Baek","type":"Role","_key":"69252","_from":"42230","_to":"42345"} +{"$label":"ACTS_IN","name":"Porn Store Patron","type":"Role","_key":"68997","_from":"42239","_to":"42233"} +{"$label":"ACTS_IN","name":"Shantz","type":"Role","_key":"68995","_from":"42238","_to":"42233"} +{"$label":"ACTS_IN","name":"Lew Landers","type":"Role","_key":"68994","_from":"42237","_to":"42233"} +{"$label":"ACTS_IN","name":"Jerry Warren","type":"Role","_key":"68993","_from":"42236","_to":"42233"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"68991","_from":"42235","_to":"42233"} +{"$label":"ACTS_IN","name":"Marsha Quist","type":"Role","_key":"68989","_from":"42234","_to":"42233"} +{"$label":"ACTS_IN","name":"Vice Principal Rusty Thorne","type":"Role","_key":"72213","_from":"42237","_to":"43634"} +{"$label":"ACTS_IN","name":"Electra","type":"Role","_key":"69006","_from":"42243","_to":"42240"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"69005","_from":"42242","_to":"42240"} +{"$label":"ACTS_IN","name":"Jet Black","type":"Role","_key":"69004","_from":"42241","_to":"42240"} +{"$label":"ACTS_IN","name":"Okabe (voice)","type":"Role","_key":"91942","_from":"42241","_to":"54235"} +{"$label":"ACTS_IN","name":"Deunan Knute","type":"Role","_key":"97938","_from":"42243","_to":"57677"} +{"$label":"ACTS_IN","name":"Deunan","type":"Role","_key":"71174","_from":"42243","_to":"43196"} +{"$label":"ACTS_IN","name":"Frenchy","type":"Role","_key":"69012","_from":"42246","_to":"42244"} +{"$label":"ACTS_IN","name":"Counter Man","type":"Role","_key":"69011","_from":"42245","_to":"42244"} +{"$label":"ACTS_IN","name":"Hanns-Martin Schleyer","type":"Role","_key":"69014","_from":"42248","_to":"42247"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"69022","_from":"42251","_to":"42249"} +{"$label":"ACTS_IN","name":"General Emilio M. Vargas","type":"Role","_key":"69021","_from":"42250","_to":"42249"} +{"$label":"DIRECTED","_key":"69028","_from":"42253","_to":"42252"} +{"$label":"DIRECTED","_key":"69036","_from":"42261","_to":"42254"} +{"$label":"DIRECTED","_key":"69035","_from":"42260","_to":"42254"} +{"$label":"DIRECTED","_key":"69034","_from":"42259","_to":"42254"} +{"$label":"DIRECTED","_key":"69033","_from":"42258","_to":"42254"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69032","_from":"42258","_to":"42254"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69031","_from":"42257","_to":"42254"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69030","_from":"42256","_to":"42254"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69029","_from":"42255","_to":"42254"} +{"$label":"ACTS_IN","name":"Jun","type":"Role","_key":"69037","_from":"42263","_to":"42262"} +{"$label":"ACTS_IN","name":"Detective Shibusawa","type":"Role","_key":"91241","_from":"42263","_to":"53800"} +{"$label":"DIRECTED","_key":"69072","_from":"42271","_to":"42269"} +{"$label":"ACTS_IN","name":"Feind","type":"Role","_key":"69071","_from":"42270","_to":"42269"} +{"$label":"ACTS_IN","name":"Meret, Joes Mutter","type":"Role","_key":"69075","_from":"42273","_to":"42272"} +{"$label":"DIRECTED","_key":"69083","_from":"42276","_to":"42275"} +{"$label":"ACTS_IN","name":"Satake","type":"Role","_key":"69087","_from":"42280","_to":"42277"} +{"$label":"ACTS_IN","name":"Det. Jojima","type":"Role","_key":"69085","_from":"42279","_to":"42277"} +{"$label":"ACTS_IN","name":"Ryuuichi","type":"Role","_key":"69084","_from":"42278","_to":"42277"} +{"$label":"ACTS_IN","name":"Hanerunojyuu","type":"Role","_key":"71607","_from":"42278","_to":"43368"} +{"$label":"ACTS_IN","name":"Ozaki","type":"Role","_key":"89800","_from":"42279","_to":"53144"} +{"$label":"ACTS_IN","name":"Banquo","type":"Role","_key":"69091","_from":"42282","_to":"42281"} +{"$label":"ACTS_IN","name":"Rachid","type":"Role","_key":"114281","_from":"42282","_to":"67308"} +{"$label":"ACTS_IN","name":"Adam Dalgliesh","type":"Role","_key":"113607","_from":"42282","_to":"66954"} +{"$label":"ACTS_IN","name":"Mr. Snoops (voice)","type":"Role","_key":"69111","_from":"42287","_to":"42285"} +{"$label":"DIRECTED","_key":"69107","_from":"42286","_to":"42285"} +{"$label":"DIRECTED","_key":"108346","_from":"42286","_to":"64045"} +{"$label":"DIRECTED","_key":"96076","_from":"42286","_to":"56475"} +{"$label":"ACTS_IN","name":"Havershaw","type":"Role","_key":"98666","_from":"42287","_to":"58148"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"69115","_from":"42290","_to":"42289"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"69150","_from":"42294","_to":"42293"} +{"$label":"ACTS_IN","name":"The Preacher","type":"Role","_key":"69155","_from":"42297","_to":"42295"} +{"$label":"ACTS_IN","name":"Tommy Walker","type":"Role","_key":"69153","_from":"42296","_to":"42295"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113263","_from":"42297","_to":"66729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97796","_from":"42297","_to":"57588"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"69160","_from":"42300","_to":"42298"} +{"$label":"ACTS_IN","name":"Billy Hayes","type":"Role","_key":"69159","_from":"42299","_to":"42298"} +{"$label":"ACTS_IN","name":"Rose Elliot","type":"Role","_key":"109078","_from":"42300","_to":"64448"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"69167","_from":"42304","_to":"42301"} +{"$label":"ACTS_IN","name":"Kusse-Kurt","type":"Role","_key":"69166","_from":"42303","_to":"42301"} +{"$label":"ACTS_IN","name":"Smeden","type":"Role","_key":"69165","_from":"42302","_to":"42301"} +{"$label":"ACTS_IN","name":"Kusse-Kurt","type":"Role","_key":"69177","_from":"42303","_to":"42306"} +{"$label":"ACTS_IN","name":"Little Mohammed","type":"Role","_key":"69176","_from":"42308","_to":"42306"} +{"$label":"ACTS_IN","name":"Milena","type":"Role","_key":"69175","_from":"42307","_to":"42306"} +{"$label":"ACTS_IN","name":"Cafe Proprietor","type":"Role","_key":"69182","_from":"42312","_to":"42309"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"69181","_from":"42311","_to":"42309"} +{"$label":"ACTS_IN","name":"The Boy","type":"Role","_key":"69180","_from":"42310","_to":"42309"} +{"$label":"ACTS_IN","name":"Larry Giff (cabdriver)","type":"Role","_key":"115658","_from":"42311","_to":"68087"} +{"$label":"ACTS_IN","name":"Eddie Johnson Union President AAW Local 291","type":"Role","_key":"101997","_from":"42311","_to":"60016"} +{"$label":"ACTS_IN","name":"'Creeps' Binder","type":"Role","_key":"100970","_from":"42311","_to":"59504"} +{"$label":"ACTS_IN","name":"Simato","type":"Role","_key":"69188","_from":"42316","_to":"42313"} +{"$label":"ACTS_IN","name":"Kito","type":"Role","_key":"69187","_from":"42315","_to":"42313"} +{"$label":"ACTS_IN","name":"Storey Emmenthal","type":"Role","_key":"69186","_from":"42314","_to":"42313"} +{"$label":"ACTS_IN","name":"Mizky Segawa","type":"Role","_key":"102819","_from":"42315","_to":"60477"} +{"$label":"DIRECTED","_key":"69199","_from":"42321","_to":"42318"} +{"$label":"ACTS_IN","name":"Antonio Servilio","type":"Role","_key":"69197","_from":"42320","_to":"42318"} +{"$label":"ACTS_IN","name":"Cesare Atticus","type":"Role","_key":"69196","_from":"42319","_to":"42318"} +{"$label":"ACTS_IN","name":"Sarah Bracknell","type":"Role","_key":"69206","_from":"42324","_to":"42323"} +{"$label":"ACTS_IN","name":"Abbey","type":"Role","_key":"109709","_from":"42324","_to":"64794"} +{"$label":"ACTS_IN","name":"Carolyn","type":"Role","_key":"94323","_from":"42324","_to":"55539"} +{"$label":"ACTS_IN","name":"Elizabeth Driscoll","type":"Role","_key":"72358","_from":"42324","_to":"43697"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"69212","_from":"42326","_to":"42325"} +{"$label":"ACTS_IN","name":"Suzy Bannion","type":"Role","_key":"72683","_from":"42326","_to":"43802"} +{"$label":"ACTS_IN","name":"Ellen Okin","type":"Role","_key":"69216","_from":"42328","_to":"42327"} +{"$label":"DIRECTED","_key":"69225","_from":"42332","_to":"42329"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"69224","_from":"42331","_to":"42329"} +{"$label":"ACTS_IN","name":"Aunt from Musik SAT","type":"Role","_key":"69223","_from":"42330","_to":"42329"} +{"$label":"ACTS_IN","name":"Torsillo","type":"Role","_key":"69230","_from":"42336","_to":"42333"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"69229","_from":"42335","_to":"42333"} +{"$label":"ACTS_IN","name":"Dorianne","type":"Role","_key":"69228","_from":"42334","_to":"42333"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"90083","_from":"42336","_to":"53278"} +{"$label":"ACTS_IN","name":"Ned Tibbets","type":"Role","_key":"69247","_from":"42344","_to":"42339"} +{"$label":"ACTS_IN","name":"Majorie Glick","type":"Role","_key":"69245","_from":"42343","_to":"42339"} +{"$label":"ACTS_IN","name":"Dr. Bill Norton","type":"Role","_key":"69244","_from":"42342","_to":"42339"} +{"$label":"ACTS_IN","name":"Bonnie Sawyer","type":"Role","_key":"69241","_from":"42341","_to":"42339"} +{"$label":"ACTS_IN","name":"Mark Petrie","type":"Role","_key":"69238","_from":"42340","_to":"42339"} +{"$label":"ACTS_IN","name":"Col. Richard Fell","type":"Role","_key":"118070","_from":"42342","_to":"69396"} +{"$label":"ACTS_IN","name":"Father Joseph Kevin Dyer","type":"Role","_key":"70876","_from":"42342","_to":"43072"} +{"$label":"ACTS_IN","name":"Mr. Kang","type":"Role","_key":"69254","_from":"42347","_to":"42345"} +{"$label":"ACTS_IN","name":"Min-gi","type":"Role","_key":"69253","_from":"42346","_to":"42345"} +{"$label":"DIRECTED","_key":"69261","_from":"42349","_to":"42348"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"69266","_from":"42351","_to":"42350"} +{"$label":"ACTS_IN","name":"Eve Trent","type":"Role","_key":"69270","_from":"42353","_to":"42352"} +{"$label":"ACTS_IN","name":"Amy Nicholls","type":"Role","_key":"69273","_from":"42355","_to":"42354"} +{"$label":"ACTS_IN","name":"Acting Student","type":"Role","_key":"72066","_from":"42355","_to":"43573"} +{"$label":"ACTS_IN","name":"Nancy Bowden","type":"Role","_key":"69281","_from":"42357","_to":"42356"} +{"$label":"DIRECTED","_key":"69294","_from":"42367","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69292","_from":"42366","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69291","_from":"42365","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69290","_from":"42364","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69289","_from":"42363","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69288","_from":"42362","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69287","_from":"42361","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69286","_from":"42360","_to":"42358"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69285","_from":"42359","_to":"42358"} +{"$label":"ACTS_IN","name":"Scott 'Scotty' Braddock","type":"Role","_key":"69299","_from":"42370","_to":"42368"} +{"$label":"ACTS_IN","name":"Deaundre 'Double D' Davis","type":"Role","_key":"69298","_from":"42369","_to":"42368"} +{"$label":"ACTS_IN","name":"Meeker","type":"Role","_key":"102833","_from":"42369","_to":"60486"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"69355","_from":"42407","_to":"42372"} +{"$label":"ACTS_IN","name":"Black Masked Ninja","type":"Role","_key":"69354","_from":"42406","_to":"42372"} +{"$label":"ACTS_IN","name":"'Mongo' Premiere Guest","type":"Role","_key":"69353","_from":"42405","_to":"42372"} +{"$label":"ACTS_IN","name":"Reporter at Premier","type":"Role","_key":"69352","_from":"42404","_to":"42372"} +{"$label":"ACTS_IN","name":"Betsy - Bowfinger's Dog","type":"Role","_key":"69351","_from":"42403","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69350","_from":"42402","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69349","_from":"42401","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69348","_from":"42400","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69347","_from":"42399","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69346","_from":"42398","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69345","_from":"42397","_to":"42372"} +{"$label":"ACTS_IN","name":"Laker Girl","type":"Role","_key":"69344","_from":"42396","_to":"42372"} +{"$label":"ACTS_IN","name":"Farrah, Hollywood Lesbian","type":"Role","_key":"69343","_from":"42395","_to":"42372"} +{"$label":"ACTS_IN","name":"E! Channel Interviewer","type":"Role","_key":"69342","_from":"42394","_to":"42372"} +{"$label":"ACTS_IN","name":"Studio Executive","type":"Role","_key":"69341","_from":"42393","_to":"42372"} +{"$label":"ACTS_IN","name":"Kit's Assistant","type":"Role","_key":"69340","_from":"42392","_to":"42372"} +{"$label":"ACTS_IN","name":"Kit's Bodyguard","type":"Role","_key":"69338","_from":"42391","_to":"42372"} +{"$label":"ACTS_IN","name":"Camera Store Clerk","type":"Role","_key":"69336","_from":"42390","_to":"42372"} +{"$label":"ACTS_IN","name":"Renfro's Executive","type":"Role","_key":"69334","_from":"42389","_to":"42372"} +{"$label":"ACTS_IN","name":"Clothing Sales Clerk","type":"Role","_key":"69333","_from":"42388","_to":"42372"} +{"$label":"ACTS_IN","name":"Young Actress at Audition","type":"Role","_key":"69332","_from":"42387","_to":"42372"} +{"$label":"ACTS_IN","name":"Federal Express Man","type":"Role","_key":"69330","_from":"42386","_to":"42372"} +{"$label":"ACTS_IN","name":"Camera Security Guard","type":"Role","_key":"69329","_from":"42385","_to":"42372"} +{"$label":"ACTS_IN","name":"MindHead Executive","type":"Role","_key":"69328","_from":"42384","_to":"42372"} +{"$label":"ACTS_IN","name":"LA Cop","type":"Role","_key":"69327","_from":"42383","_to":"42372"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"69326","_from":"42382","_to":"42372"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"69325","_from":"42381","_to":"42372"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"69324","_from":"42380","_to":"42372"} +{"$label":"ACTS_IN","name":"Martinez","type":"Role","_key":"69323","_from":"42379","_to":"42372"} +{"$label":"ACTS_IN","name":"Sanchez","type":"Role","_key":"69322","_from":"42378","_to":"42372"} +{"$label":"ACTS_IN","name":"Slater","type":"Role","_key":"69318","_from":"42377","_to":"42372"} +{"$label":"DIRECTED","_key":"69310","_from":"42376","_to":"42372"} +{"$label":"DIRECTED","_key":"69309","_from":"42375","_to":"42372"} +{"$label":"DIRECTED","_key":"69308","_from":"42374","_to":"42372"} +{"$label":"DIRECTED","_key":"69307","_from":"42373","_to":"42372"} +{"$label":"ACTS_IN","name":"Moe","type":"Role","_key":"112406","_from":"42378","_to":"66359"} +{"$label":"ACTS_IN","name":"Dad (segment \"People Can Lick Too\")","type":"Role","_key":"108674","_from":"42385","_to":"64215"} +{"$label":"ACTS_IN","name":"Laura Porter","type":"Role","_key":"92025","_from":"42387","_to":"54296"} +{"$label":"ACTS_IN","name":"Miss Haskell","type":"Role","_key":"69369","_from":"42410","_to":"42409"} +{"$label":"DIRECTED","_key":"69374","_from":"42412","_to":"42411"} +{"$label":"ACTS_IN","name":"Harry Edison","type":"Role","_key":"119272","_from":"42412","_to":"70080"} +{"$label":"DIRECTED","_key":"114226","_from":"42412","_to":"67279"} +{"$label":"ACTS_IN","name":"Kelly Meeker","type":"Role","_key":"69381","_from":"42415","_to":"42413"} +{"$label":"ACTS_IN","name":"Michael Myers","type":"Role","_key":"69378","_from":"42414","_to":"42413"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"114922","_from":"42415","_to":"67685"} +{"$label":"ACTS_IN","name":"Exotic Beauty","type":"Role","_key":"69388","_from":"42418","_to":"42416"} +{"$label":"DIRECTED","_key":"69383","_from":"42417","_to":"42416"} +{"$label":"DIRECTED","_key":"102709","_from":"42417","_to":"60424"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"118746","_from":"42418","_to":"69825"} +{"$label":"ACTS_IN","name":"Little Bear","type":"Role","_key":"69390","_from":"42421","_to":"42419"} +{"$label":"ACTS_IN","name":"Omri","type":"Role","_key":"69389","_from":"42420","_to":"42419"} +{"$label":"ACTS_IN","name":"Ascalante","type":"Role","_key":"114123","_from":"42421","_to":"67211"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler (voice)","type":"Role","_key":"69397","_from":"42423","_to":"42422"} +{"$label":"ACTS_IN","name":"Luigi Vampa","type":"Role","_key":"69413","_from":"42426","_to":"42425"} +{"$label":"ACTS_IN","name":"Court Clerk (as R.M. Haley)","type":"Role","_key":"69423","_from":"42429","_to":"42428"} +{"$label":"DIRECTED","_key":"69430","_from":"42431","_to":"42430"} +{"$label":"DIRECTED","_key":"69435","_from":"42436","_to":"42432"} +{"$label":"ACTS_IN","name":"Chie Marayama","type":"Role","_key":"69434","_from":"42435","_to":"42432"} +{"$label":"ACTS_IN","name":"Shuichi Saito","type":"Role","_key":"69432","_from":"42434","_to":"42432"} +{"$label":"ACTS_IN","name":"Kirie Goshima","type":"Role","_key":"69431","_from":"42433","_to":"42432"} +{"$label":"ACTS_IN","name":"Psychiater","type":"Role","_key":"69450","_from":"42440","_to":"42439"} +{"$label":"ACTS_IN","name":"Ljubica","type":"Role","_key":"69473","_from":"42448","_to":"42444"} +{"$label":"ACTS_IN","name":"Polizeichef","type":"Role","_key":"69472","_from":"42447","_to":"42444"} +{"$label":"ACTS_IN","name":"Nebosja","type":"Role","_key":"69471","_from":"42446","_to":"42444"} +{"$label":"ACTS_IN","name":"Der Sperber","type":"Role","_key":"69470","_from":"42445","_to":"42444"} +{"$label":"ACTS_IN","name":"Olivia Robidoux","type":"Role","_key":"69486","_from":"42451","_to":"42450"} +{"$label":"DIRECTED","_key":"69491","_from":"42455","_to":"42452"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"69490","_from":"42454","_to":"42452"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"69489","_from":"42453","_to":"42452"} +{"$label":"ACTS_IN","name":"Lastwagenfahrer","type":"Role","_key":"69500","_from":"42460","_to":"42457"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"69499","_from":"42459","_to":"42457"} +{"$label":"ACTS_IN","name":"Mechaniker","type":"Role","_key":"69498","_from":"42458","_to":"42457"} +{"$label":"DIRECTED","_key":"69508","_from":"42462","_to":"42461"} +{"$label":"ACTS_IN","name":"Dain Waris","type":"Role","_key":"69554","_from":"42472","_to":"42470"} +{"$label":"ACTS_IN","name":"Doramin","type":"Role","_key":"69553","_from":"42471","_to":"42470"} +{"$label":"ACTS_IN","name":"Ransui Tokunaga","type":"Role","_key":"117619","_from":"42472","_to":"69144"} +{"$label":"DIRECTED","_key":"72252","_from":"42472","_to":"43652"} +{"$label":"ACTS_IN","name":"Wino","type":"Role","_key":"69562","_from":"42474","_to":"42473"} +{"$label":"ACTS_IN","name":"Kriminalassistent Mortensen","type":"Role","_key":"69567","_from":"42479","_to":"42475"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"69566","_from":"42478","_to":"42475"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"69565","_from":"42477","_to":"42475"} +{"$label":"DIRECTED","_key":"69563","_from":"42476","_to":"42475"} +{"$label":"DIRECTED","_key":"104863","_from":"42476","_to":"61700"} +{"$label":"DIRECTED","_key":"104704","_from":"42476","_to":"61597"} +{"$label":"DIRECTED","_key":"104703","_from":"42476","_to":"61596"} +{"$label":"DIRECTED","_key":"91189","_from":"42476","_to":"53781"} +{"$label":"DIRECTED","_key":"91182","_from":"42476","_to":"53778"} +{"$label":"DIRECTED","_key":"90507","_from":"42476","_to":"53465"} +{"$label":"DIRECTED","_key":"88865","_from":"42476","_to":"52652"} +{"$label":"DIRECTED","_key":"69582","_from":"42476","_to":"42484"} +{"$label":"DIRECTED","_key":"69577","_from":"42476","_to":"42482"} +{"$label":"DIRECTED","_key":"69572","_from":"42476","_to":"42480"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"106069","_from":"42477","_to":"62460"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"104860","_from":"42477","_to":"61700"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"104856","_from":"42477","_to":"61698"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"104706","_from":"42477","_to":"61597"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"104700","_from":"42477","_to":"61596"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"91184","_from":"42477","_to":"53781"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"91177","_from":"42477","_to":"53778"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"90504","_from":"42477","_to":"53465"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"90191","_from":"42477","_to":"53324"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"88860","_from":"42477","_to":"52652"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"69579","_from":"42477","_to":"42484"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"69574","_from":"42477","_to":"42482"} +{"$label":"ACTS_IN","name":"Benny Frandsen","type":"Role","_key":"69569","_from":"42477","_to":"42480"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"104861","_from":"42478","_to":"61700"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"104857","_from":"42478","_to":"61698"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"104707","_from":"42478","_to":"61597"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"104701","_from":"42478","_to":"61596"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"91185","_from":"42478","_to":"53781"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"91178","_from":"42478","_to":"53778"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"90505","_from":"42478","_to":"53465"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"90192","_from":"42478","_to":"53324"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"88861","_from":"42478","_to":"52652"} +{"$label":"ACTS_IN","name":"Bedemand","type":"Role","_key":"71742","_from":"42478","_to":"43422"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"69580","_from":"42478","_to":"42484"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"69575","_from":"42478","_to":"42482"} +{"$label":"ACTS_IN","name":"Kjeld Jensen","type":"Role","_key":"69570","_from":"42478","_to":"42480"} +{"$label":"ACTS_IN","name":"Kriminalassistent William Mortensen","type":"Role","_key":"88863","_from":"42479","_to":"52652"} +{"$label":"ACTS_IN","name":"Kriminalassistent","type":"Role","_key":"71740","_from":"42479","_to":"43422"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"69571","_from":"42481","_to":"42480"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"104858","_from":"42481","_to":"61698"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"104702","_from":"42481","_to":"61596"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"91179","_from":"42481","_to":"53778"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"90506","_from":"42481","_to":"53465"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"69581","_from":"42481","_to":"42484"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"69576","_from":"42483","_to":"42482"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"104862","_from":"42483","_to":"61700"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"104708","_from":"42483","_to":"61597"} +{"$label":"ACTS_IN","name":"Yvonne Jensen","type":"Role","_key":"91186","_from":"42483","_to":"53781"} +{"$label":"ACTS_IN","name":"Judy the Elf","type":"Role","_key":"69596","_from":"42488","_to":"42487"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"69601","_from":"42491","_to":"42489"} +{"$label":"ACTS_IN","name":"Laetitia","type":"Role","_key":"69599","_from":"42490","_to":"42489"} +{"$label":"ACTS_IN","name":"Janey Briggs","type":"Role","_key":"69604","_from":"42494","_to":"42492"} +{"$label":"DIRECTED","_key":"69603","_from":"42493","_to":"42492"} +{"$label":"DIRECTED","_key":"114170","_from":"42493","_to":"67256"} +{"$label":"DIRECTED","_key":"100607","_from":"42493","_to":"59324"} +{"$label":"DIRECTED","_key":"100597","_from":"42493","_to":"59319"} +{"$label":"ACTS_IN","name":"S\u00e9bastien","type":"Role","_key":"69621","_from":"42499","_to":"42496"} +{"$label":"ACTS_IN","name":"Karine Cassard","type":"Role","_key":"69620","_from":"42498","_to":"42496"} +{"$label":"ACTS_IN","name":"Lolita Cassard","type":"Role","_key":"69616","_from":"42497","_to":"42496"} +{"$label":"ACTS_IN","name":"M\u00e9lanie, Vilaine","type":"Role","_key":"113378","_from":"42497","_to":"66786"} +{"$label":"ACTS_IN","name":"Pocahontas","type":"Role","_key":"69624","_from":"42501","_to":"42500"} +{"$label":"DIRECTED","_key":"69639","_from":"42512","_to":"42502"} +{"$label":"DIRECTED","_key":"69638","_from":"42511","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69637","_from":"42510","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69636","_from":"42509","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69635","_from":"42508","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69634","_from":"42507","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69633","_from":"42506","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69632","_from":"42505","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69631","_from":"42504","_to":"42502"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"69630","_from":"42503","_to":"42502"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109965","_from":"42503","_to":"64973"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118722","_from":"42504","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109966","_from":"42504","_to":"64973"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109967","_from":"42505","_to":"64973"} +{"$label":"DIRECTED","_key":"111537","_from":"42511","_to":"65849"} +{"$label":"DIRECTED","_key":"111526","_from":"42511","_to":"65843"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"111528","_from":"42511","_to":"65843"} +{"$label":"DIRECTED","_key":"111536","_from":"42512","_to":"65849"} +{"$label":"DIRECTED","_key":"111525","_from":"42512","_to":"65843"} +{"$label":"DIRECTED","_key":"70459","_from":"42512","_to":"42894"} +{"$label":"ACTS_IN","name":"Himself (voice)","type":"Role","_key":"111527","_from":"42512","_to":"65843"} +{"$label":"DIRECTED","_key":"69643","_from":"42515","_to":"42513"} +{"$label":"ACTS_IN","name":"Policewoman Ruby Gates","type":"Role","_key":"69642","_from":"42514","_to":"42513"} +{"$label":"ACTS_IN","name":"Sergeant Ruby Gates","type":"Role","_key":"110420","_from":"42514","_to":"65235"} +{"$label":"DIRECTED","_key":"110417","_from":"42515","_to":"65235"} +{"$label":"DIRECTED","_key":"99893","_from":"42515","_to":"58900"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"69647","_from":"42518","_to":"42516"} +{"$label":"DIRECTED","_key":"69644","_from":"42517","_to":"42516"} +{"$label":"DIRECTED","_key":"104387","_from":"42517","_to":"61407"} +{"$label":"ACTS_IN","name":"Maxwell McKinder","type":"Role","_key":"105363","_from":"42518","_to":"61992"} +{"$label":"DIRECTED","_key":"69648","_from":"42520","_to":"42519"} +{"$label":"ACTS_IN","name":"Frau M\u00e4nnchen","type":"Role","_key":"69658","_from":"42523","_to":"42521"} +{"$label":"ACTS_IN","name":"Wolle","type":"Role","_key":"69655","_from":"42522","_to":"42521"} +{"$label":"ACTS_IN","name":"Bepo","type":"Role","_key":"69674","_from":"42535","_to":"42525"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"69673","_from":"42534","_to":"42525"} +{"$label":"ACTS_IN","name":"Ngurg","type":"Role","_key":"69672","_from":"42533","_to":"42525"} +{"$label":"ACTS_IN","name":"Raucher","type":"Role","_key":"69671","_from":"42532","_to":"42525"} +{"$label":"ACTS_IN","name":"T\u00e4nzerin","type":"Role","_key":"69670","_from":"42531","_to":"42525"} +{"$label":"ACTS_IN","name":"Fritz Lang","type":"Role","_key":"69669","_from":"42530","_to":"42525"} +{"$label":"ACTS_IN","name":"Urmacho","type":"Role","_key":"69668","_from":"42529","_to":"42525"} +{"$label":"ACTS_IN","name":"Sergej","type":"Role","_key":"69667","_from":"42528","_to":"42525"} +{"$label":"DIRECTED","_key":"69666","_from":"42527","_to":"42525"} +{"$label":"DIRECTED","_key":"69665","_from":"42526","_to":"42525"} +{"$label":"DIRECTED","_key":"69675","_from":"42527","_to":"42536"} +{"$label":"ACTS_IN","name":"kameraassistenz","type":"Role","_key":"69680","_from":"42541","_to":"42536"} +{"$label":"ACTS_IN","name":"ivan michailowitsch","type":"Role","_key":"69679","_from":"42540","_to":"42536"} +{"$label":"ACTS_IN","name":"der produzent","type":"Role","_key":"69678","_from":"42539","_to":"42536"} +{"$label":"ACTS_IN","name":"dolmetscherin","type":"Role","_key":"69677","_from":"42538","_to":"42536"} +{"$label":"ACTS_IN","name":"willhelm kurz","type":"Role","_key":"69676","_from":"42537","_to":"42536"} +{"$label":"DIRECTED","_key":"69681","_from":"42543","_to":"42542"} +{"$label":"ACTS_IN","name":"Girl #2","type":"Role","_key":"69699","_from":"42551","_to":"42545"} +{"$label":"ACTS_IN","name":"Girl #1","type":"Role","_key":"69698","_from":"42550","_to":"42545"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"69697","_from":"42549","_to":"42545"} +{"$label":"ACTS_IN","name":"Trin","type":"Role","_key":"69696","_from":"42548","_to":"42545"} +{"$label":"ACTS_IN","name":"One-Eyed Jack","type":"Role","_key":"69695","_from":"42547","_to":"42545"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"69691","_from":"42546","_to":"42545"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"109895","_from":"42546","_to":"64931"} +{"$label":"DIRECTED","_key":"69706","_from":"42554","_to":"42552"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"69705","_from":"42553","_to":"42552"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"69718","_from":"42558","_to":"42555"} +{"$label":"ACTS_IN","name":"Solly","type":"Role","_key":"69713","_from":"42557","_to":"42555"} +{"$label":"ACTS_IN","name":"Billy's mother","type":"Role","_key":"69711","_from":"42556","_to":"42555"} +{"$label":"ACTS_IN","name":"Irene Nelson","type":"Role","_key":"118161","_from":"42556","_to":"69448"} +{"$label":"ACTS_IN","name":"Jack Belicec","type":"Role","_key":"70579","_from":"42557","_to":"42941"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"69727","_from":"42562","_to":"42559"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"69726","_from":"42561","_to":"42559"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"69724","_from":"42560","_to":"42559"} +{"$label":"ACTS_IN","name":"Vrouw in Lift","type":"Role","_key":"69739","_from":"42566","_to":"42564"} +{"$label":"ACTS_IN","name":"Saskia Adelaar","type":"Role","_key":"69738","_from":"42565","_to":"42564"} +{"$label":"ACTS_IN","name":"Russell 'Rusty' Griswold","type":"Role","_key":"69744","_from":"42569","_to":"42567"} +{"$label":"ACTS_IN","name":"Audrey Griswold","type":"Role","_key":"69743","_from":"42568","_to":"42567"} +{"$label":"ACTS_IN","name":"Christopher 'Chris' Romero","type":"Role","_key":"105809","_from":"42569","_to":"62291"} +{"$label":"DIRECTED","_key":"69751","_from":"42571","_to":"42570"} +{"$label":"DIRECTED","_key":"69757","_from":"42578","_to":"42572"} +{"$label":"DIRECTED","_key":"69756","_from":"42577","_to":"42572"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69755","_from":"42576","_to":"42572"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"69754","_from":"42575","_to":"42572"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69753","_from":"42574","_to":"42572"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69752","_from":"42573","_to":"42572"} +{"$label":"DIRECTED","_key":"69761","_from":"42582","_to":"42579"} +{"$label":"ACTS_IN","name":"Zachary Beaulieu 6 \u00e0 8 ans","type":"Role","_key":"69760","_from":"42581","_to":"42579"} +{"$label":"ACTS_IN","name":"Laurianne Beaulieu","type":"Role","_key":"69759","_from":"42580","_to":"42579"} +{"$label":"DIRECTED","_key":"115822","_from":"42582","_to":"68180"} +{"$label":"ACTS_IN","name":"Sergeant Shin Dong-chul","type":"Role","_key":"69773","_from":"42587","_to":"42584"} +{"$label":"ACTS_IN","name":"Detective Cho Yong-koo","type":"Role","_key":"69772","_from":"42586","_to":"42584"} +{"$label":"ACTS_IN","name":"Detective Seo Tae-Yoon","type":"Role","_key":"69771","_from":"42585","_to":"42584"} +{"$label":"DIRECTED","_key":"69783","_from":"42591","_to":"42588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"69782","_from":"42590","_to":"42588"} +{"$label":"ACTS_IN","name":"George Kittredge","type":"Role","_key":"69779","_from":"42589","_to":"42588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113603","_from":"42590","_to":"66951"} +{"$label":"ACTS_IN","name":"Louis Armstrong","type":"Role","_key":"98224","_from":"42590","_to":"57864"} +{"$label":"DIRECTED","_key":"120066","_from":"42591","_to":"70508"} +{"$label":"DIRECTED","_key":"69788","_from":"42594","_to":"42592"} +{"$label":"ACTS_IN","name":"Adam Szalinski","type":"Role","_key":"69786","_from":"42593","_to":"42592"} +{"$label":"ACTS_IN","name":"Cal","type":"Role","_key":"99175","_from":"42593","_to":"58429"} +{"$label":"DIRECTED","_key":"69801","_from":"42600","_to":"42596"} +{"$label":"DIRECTED","_key":"69800","_from":"42599","_to":"42596"} +{"$label":"ACTS_IN","name":"Marion Harrington","type":"Role","_key":"69799","_from":"42598","_to":"42596"} +{"$label":"ACTS_IN","name":"Richard Harrington","type":"Role","_key":"69798","_from":"42597","_to":"42596"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"120270","_from":"42598","_to":"70623"} +{"$label":"ACTS_IN","name":"Fern Rogers","type":"Role","_key":"109946","_from":"42598","_to":"64959"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"106845","_from":"42598","_to":"62986"} +{"$label":"ACTS_IN","name":"Scarlett May","type":"Role","_key":"102459","_from":"42598","_to":"60289"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"97238","_from":"42598","_to":"57206"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"72374","_from":"42598","_to":"43699"} +{"$label":"ACTS_IN","name":"Charles Brady","type":"Role","_key":"69802","_from":"42602","_to":"42601"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"97311","_from":"42602","_to":"57291"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"94013","_from":"42602","_to":"55364"} +{"$label":"ACTS_IN","name":"Emily Phillips","type":"Role","_key":"69810","_from":"42605","_to":"42603"} +{"$label":"ACTS_IN","name":"Young Howard 'Howie' Phillips","type":"Role","_key":"69808","_from":"42604","_to":"42603"} +{"$label":"DIRECTED","_key":"69817","_from":"42608","_to":"42606"} +{"$label":"ACTS_IN","name":"Pumbaa","type":"Role","_key":"69813","_from":"42607","_to":"42606"} +{"$label":"DIRECTED","_key":"93221","_from":"42608","_to":"54917"} +{"$label":"DIRECTED","_key":"89572","_from":"42608","_to":"53002"} +{"$label":"ACTS_IN","name":"Viv","type":"Role","_key":"69823","_from":"42612","_to":"42609"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"69822","_from":"42611","_to":"42609"} +{"$label":"ACTS_IN","name":"Artie","type":"Role","_key":"69821","_from":"42610","_to":"42609"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"69844","_from":"42622","_to":"42613"} +{"$label":"ACTS_IN","name":"War Crime Prosecutor","type":"Role","_key":"69843","_from":"42621","_to":"42613"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"69842","_from":"42620","_to":"42613"} +{"$label":"ACTS_IN","name":"FBI Officer","type":"Role","_key":"69841","_from":"42619","_to":"42613"} +{"$label":"ACTS_IN","name":"SKY TV newsreader","type":"Role","_key":"69838","_from":"42618","_to":"42613"} +{"$label":"ACTS_IN","name":"The Island Reporter","type":"Role","_key":"69836","_from":"42617","_to":"42613"} +{"$label":"ACTS_IN","name":"FBI Agent #1","type":"Role","_key":"69834","_from":"42616","_to":"42613"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"69833","_from":"42615","_to":"42613"} +{"$label":"ACTS_IN","name":"Josh","type":"Role","_key":"69832","_from":"42614","_to":"42613"} +{"$label":"ACTS_IN","name":"Detective Phil Warren","type":"Role","_key":"92633","_from":"42619","_to":"54678"} +{"$label":"DIRECTED","_key":"69848","_from":"42624","_to":"42623"} +{"$label":"ACTS_IN","name":"Consul","type":"Role","_key":"69852","_from":"42627","_to":"42625"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"69851","_from":"42626","_to":"42625"} +{"$label":"ACTS_IN","name":"Sara Moyer","type":"Role","_key":"69859","_from":"42630","_to":"42628"} +{"$label":"ACTS_IN","name":"Michael Myers","type":"Role","_key":"69857","_from":"42629","_to":"42628"} +{"$label":"ACTS_IN","name":"Deliah Benson","type":"Role","_key":"69866","_from":"42633","_to":"42631"} +{"$label":"ACTS_IN","name":"Juanita Benson","type":"Role","_key":"69865","_from":"42632","_to":"42631"} +{"$label":"ACTS_IN","name":"Nichole","type":"Role","_key":"96829","_from":"42633","_to":"56940"} +{"$label":"ACTS_IN","name":"Le sommelier","type":"Role","_key":"69889","_from":"42643","_to":"42634"} +{"$label":"ACTS_IN","name":"Le maitre d'h\u00f4tel","type":"Role","_key":"69887","_from":"42642","_to":"42634"} +{"$label":"ACTS_IN","name":"Lambert","type":"Role","_key":"69885","_from":"42641","_to":"42634"} +{"$label":"ACTS_IN","name":"Moreau","type":"Role","_key":"69884","_from":"42640","_to":"42634"} +{"$label":"ACTS_IN","name":"Suzanne","type":"Role","_key":"69882","_from":"42639","_to":"42634"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"69881","_from":"42638","_to":"42634"} +{"$label":"ACTS_IN","name":"Ariane","type":"Role","_key":"69880","_from":"42637","_to":"42634"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"69879","_from":"42636","_to":"42634"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"69877","_from":"42635","_to":"42634"} +{"$label":"ACTS_IN","name":"le p\u00e8re d'Audrey","type":"Role","_key":"120407","_from":"42641","_to":"70729"} +{"$label":"ACTS_IN","name":"Katy","type":"Role","_key":"69910","_from":"42662","_to":"42644"} +{"$label":"ACTS_IN","name":"Baby Jordan","type":"Role","_key":"69909","_from":"42661","_to":"42644"} +{"$label":"ACTS_IN","name":"Tall Bully","type":"Role","_key":"69908","_from":"42660","_to":"42644"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"69907","_from":"42659","_to":"42644"} +{"$label":"ACTS_IN","name":"Irina's Neighbour","type":"Role","_key":"69906","_from":"42658","_to":"42644"} +{"$label":"ACTS_IN","name":"Illegal Worker","type":"Role","_key":"69904","_from":"42657","_to":"42644"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"69903","_from":"42656","_to":"42644"} +{"$label":"ACTS_IN","name":"Terminal Hostess","type":"Role","_key":"69902","_from":"42655","_to":"42644"} +{"$label":"ACTS_IN","name":"Prostitute","type":"Role","_key":"69901","_from":"42654","_to":"42644"} +{"$label":"ACTS_IN","name":"Art Tutor","type":"Role","_key":"69900","_from":"42653","_to":"42644"} +{"$label":"ACTS_IN","name":"Tasha's Father","type":"Role","_key":"69899","_from":"42652","_to":"42644"} +{"$label":"ACTS_IN","name":"Tasha's Husband","type":"Role","_key":"69897","_from":"42651","_to":"42644"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"69896","_from":"42650","_to":"42644"} +{"$label":"ACTS_IN","name":"Tasha","type":"Role","_key":"69895","_from":"42649","_to":"42644"} +{"$label":"ACTS_IN","name":"Irina","type":"Role","_key":"69894","_from":"42648","_to":"42644"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"69893","_from":"42647","_to":"42644"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"69892","_from":"42646","_to":"42644"} +{"$label":"DIRECTED","_key":"69890","_from":"42645","_to":"42644"} +{"$label":"ACTS_IN","name":"Cecile","type":"Role","_key":"121192","_from":"42649","_to":"71185"} +{"$label":"ACTS_IN","name":"Taras (Ukrainian Dad)","type":"Role","_key":"103950","_from":"42652","_to":"61143"} +{"$label":"ACTS_IN","name":"Dick","type":"Role","_key":"121189","_from":"42653","_to":"71185"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"121190","_from":"42654","_to":"71185"} +{"$label":"ACTS_IN","name":"DCI Cartwright","type":"Role","_key":"121196","_from":"42655","_to":"71185"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"121191","_from":"42656","_to":"71185"} +{"$label":"ACTS_IN","name":"Chrissy","type":"Role","_key":"69915","_from":"42666","_to":"42663"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"69913","_from":"42665","_to":"42663"} +{"$label":"ACTS_IN","name":"Lolita","type":"Role","_key":"69912","_from":"42664","_to":"42663"} +{"$label":"DIRECTED","_key":"69921","_from":"42668","_to":"42667"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"69920","_from":"42670","_to":"42667"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"69919","_from":"42669","_to":"42667"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"69917","_from":"42668","_to":"42667"} +{"$label":"DIRECTED","_key":"102735","_from":"42668","_to":"60438"} +{"$label":"ACTS_IN","name":"Michele Apicella","type":"Role","_key":"102733","_from":"42668","_to":"60438"} +{"$label":"DIRECTED","_key":"69954","_from":"42678","_to":"42676"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"69952","_from":"42677","_to":"42676"} +{"$label":"DIRECTED","_key":"69964","_from":"42681","_to":"42680"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106735","_from":"42681","_to":"62909"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"69968","_from":"42685","_to":"42682"} +{"$label":"ACTS_IN","name":"Laurie","type":"Role","_key":"69967","_from":"42684","_to":"42682"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"69966","_from":"42683","_to":"42682"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"69976","_from":"42687","_to":"42686"} +{"$label":"ACTS_IN","name":"Sarah Murphy","type":"Role","_key":"103648","_from":"42687","_to":"60960"} +{"$label":"ACTS_IN","name":"V.A. Hospital Doctor","type":"Role","_key":"98911","_from":"42687","_to":"58276"} +{"$label":"DIRECTED","_key":"69983","_from":"42689","_to":"42688"} +{"$label":"DIRECTED","_key":"72072","_from":"42689","_to":"43573"} +{"$label":"ACTS_IN","name":"Magenta","type":"Role","_key":"69989","_from":"42692","_to":"42690"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"69988","_from":"42691","_to":"42690"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"98257","_from":"42692","_to":"57880"} +{"$label":"ACTS_IN","name":"Ticket Taker","type":"Role","_key":"70008","_from":"42699","_to":"42694"} +{"$label":"ACTS_IN","name":"Reggie Wetherby","type":"Role","_key":"70006","_from":"42698","_to":"42694"} +{"$label":"ACTS_IN","name":"Isobel Sedbusk","type":"Role","_key":"70005","_from":"42697","_to":"42694"} +{"$label":"ACTS_IN","name":"Ethel","type":"Role","_key":"70004","_from":"42696","_to":"42694"} +{"$label":"ACTS_IN","name":"Mrs. Newsham","type":"Role","_key":"70003","_from":"42695","_to":"42694"} +{"$label":"ACTS_IN","name":"Mrs.Higley","type":"Role","_key":"93941","_from":"42696","_to":"55317"} +{"$label":"ACTS_IN","name":"Robert von Metz","type":"Role","_key":"70022","_from":"42702","_to":"42701"} +{"$label":"DIRECTED","_key":"70036","_from":"42708","_to":"42704"} +{"$label":"ACTS_IN","name":"Billy Davidsson","type":"Role","_key":"70035","_from":"42707","_to":"42704"} +{"$label":"ACTS_IN","name":"Grits P\u00f6lsa","type":"Role","_key":"70034","_from":"42706","_to":"42704"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"70033","_from":"42705","_to":"42704"} +{"$label":"ACTS_IN","name":"Frank Eriksson","type":"Role","_key":"106913","_from":"42707","_to":"63033"} +{"$label":"DIRECTED","_key":"70057","_from":"42716","_to":"42712"} +{"$label":"ACTS_IN","name":"Kay-Em 14","type":"Role","_key":"70056","_from":"42715","_to":"42712"} +{"$label":"ACTS_IN","name":"Tsunaron","type":"Role","_key":"70055","_from":"42714","_to":"42712"} +{"$label":"ACTS_IN","name":"Rowan","type":"Role","_key":"70054","_from":"42713","_to":"42712"} +{"$label":"ACTS_IN","name":"Camille","type":"Role","_key":"109822","_from":"42713","_to":"64879"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102663","_from":"42714","_to":"60399"} +{"$label":"DIRECTED","_key":"99128","_from":"42716","_to":"58414"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"70060","_from":"42719","_to":"42717"} +{"$label":"ACTS_IN","name":"Sung Tse-Ho","type":"Role","_key":"70058","_from":"42718","_to":"42717"} +{"$label":"ACTS_IN","name":"Zhu Gongyuan","type":"Role","_key":"120164","_from":"42718","_to":"70575"} +{"$label":"ACTS_IN","name":"Tse-Ho Sung","type":"Role","_key":"115773","_from":"42718","_to":"68165"} +{"$label":"ACTS_IN","name":"Wong Kei-ying","type":"Role","_key":"88679","_from":"42718","_to":"52549"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"117393","_from":"42719","_to":"69048"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"115775","_from":"42719","_to":"68165"} +{"$label":"ACTS_IN","name":"Snow","type":"Role","_key":"70070","_from":"42723","_to":"42721"} +{"$label":"ACTS_IN","name":"Cleon","type":"Role","_key":"70069","_from":"42722","_to":"42721"} +{"$label":"ACTS_IN","name":"The Leningrad Cowboys","type":"Role","_key":"70077","_from":"42726","_to":"42724"} +{"$label":"ACTS_IN","name":"The Leningrad Cowboys","type":"Role","_key":"70076","_from":"42725","_to":"42724"} +{"$label":"ACTS_IN","name":"Irina","type":"Role","_key":"70082","_from":"42730","_to":"42727"} +{"$label":"ACTS_IN","name":"Kamenev","type":"Role","_key":"70081","_from":"42729","_to":"42727"} +{"$label":"ACTS_IN","name":"Clemens Forell","type":"Role","_key":"70079","_from":"42728","_to":"42727"} +{"$label":"ACTS_IN","name":"Encarna","type":"Role","_key":"70086","_from":"42733","_to":"42731"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"70085","_from":"42732","_to":"42731"} +{"$label":"DIRECTED","_key":"70098","_from":"42737","_to":"42735"} +{"$label":"ACTS_IN","name":"Mimi-Siku","type":"Role","_key":"70095","_from":"42736","_to":"42735"} +{"$label":"ACTS_IN","name":"Cloquet","type":"Role","_key":"70102","_from":"42739","_to":"42738"} +{"$label":"ACTS_IN","name":"'68'","type":"Role","_key":"96146","_from":"42739","_to":"56510"} +{"$label":"ACTS_IN","name":"Colin","type":"Role","_key":"70106","_from":"42741","_to":"42740"} +{"$label":"ACTS_IN","name":"Prince Alfonso","type":"Role","_key":"109699","_from":"42741","_to":"64787"} +{"$label":"ACTS_IN","name":"Boomako","type":"Role","_key":"70118","_from":"42745","_to":"42743"} +{"$label":"ACTS_IN","name":"The Frog - Jean-Baptiste","type":"Role","_key":"70116","_from":"42744","_to":"42743"} +{"$label":"ACTS_IN","name":"Miss Blair","type":"Role","_key":"70128","_from":"42748","_to":"42747"} +{"$label":"DIRECTED","_key":"70136","_from":"42756","_to":"42749"} +{"$label":"ACTS_IN","name":"Skier","type":"Role","_key":"70135","_from":"42755","_to":"42749"} +{"$label":"ACTS_IN","name":"Skier","type":"Role","_key":"70134","_from":"42754","_to":"42749"} +{"$label":"ACTS_IN","name":"Skier","type":"Role","_key":"70133","_from":"42753","_to":"42749"} +{"$label":"ACTS_IN","name":"Skier","type":"Role","_key":"70132","_from":"42752","_to":"42749"} +{"$label":"ACTS_IN","name":"Hangglider","type":"Role","_key":"70131","_from":"42751","_to":"42749"} +{"$label":"ACTS_IN","name":"Wind Surfer","type":"Role","_key":"70130","_from":"42750","_to":"42749"} +{"$label":"DIRECTED","_key":"70156","_from":"42756","_to":"42763"} +{"$label":"ACTS_IN","name":"M\u00e8re","type":"Role","_key":"70140","_from":"42758","_to":"42757"} +{"$label":"ACTS_IN","name":"M\u00e8re de Bruno","type":"Role","_key":"70151","_from":"42762","_to":"42759"} +{"$label":"ACTS_IN","name":"La receleuse","type":"Role","_key":"70149","_from":"42761","_to":"42759"} +{"$label":"ACTS_IN","name":"Remy","type":"Role","_key":"70148","_from":"42760","_to":"42759"} +{"$label":"ACTS_IN","name":"Xiao Hong","type":"Role","_key":"70161","_from":"42769","_to":"42764"} +{"$label":"ACTS_IN","name":"Tang Zhaoyang","type":"Role","_key":"70160","_from":"42768","_to":"42764"} +{"$label":"ACTS_IN","name":"Yuan Fengming","type":"Role","_key":"70159","_from":"42767","_to":"42764"} +{"$label":"ACTS_IN","name":"Song Jinming","type":"Role","_key":"70158","_from":"42766","_to":"42764"} +{"$label":"DIRECTED","_key":"70157","_from":"42765","_to":"42764"} +{"$label":"DIRECTED","_key":"70166","_from":"42772","_to":"42770"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"70165","_from":"42771","_to":"42770"} +{"$label":"ACTS_IN","name":"Reggie Weller","type":"Role","_key":"94107","_from":"42771","_to":"55414"} +{"$label":"DIRECTED","_key":"90388","_from":"42772","_to":"53409"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"70176","_from":"42775","_to":"42774"} +{"$label":"DIRECTED","_key":"70185","_from":"42778","_to":"42776"} +{"$label":"ACTS_IN","name":"Whippet Angel (Annabelle)","type":"Role","_key":"70182","_from":"42777","_to":"42776"} +{"$label":"ACTS_IN","name":"Schwester Constance","type":"Role","_key":"70190","_from":"42780","_to":"42779"} +{"$label":"DIRECTED","_key":"70208","_from":"42791","_to":"42782"} +{"$label":"ACTS_IN","name":"Alen","type":"Role","_key":"70207","_from":"42790","_to":"42782"} +{"$label":"ACTS_IN","name":"Mladen","type":"Role","_key":"70206","_from":"42789","_to":"42782"} +{"$label":"ACTS_IN","name":"Edita","type":"Role","_key":"70205","_from":"42788","_to":"42782"} +{"$label":"ACTS_IN","name":"Aleksandra","type":"Role","_key":"70204","_from":"42787","_to":"42782"} +{"$label":"ACTS_IN","name":"Milica","type":"Role","_key":"70203","_from":"42786","_to":"42782"} +{"$label":"ACTS_IN","name":"Ljube","type":"Role","_key":"70202","_from":"42785","_to":"42782"} +{"$label":"ACTS_IN","name":"Sergeant Djuro","type":"Role","_key":"70201","_from":"42784","_to":"42782"} +{"$label":"ACTS_IN","name":"Assim","type":"Role","_key":"70200","_from":"42783","_to":"42782"} +{"$label":"ACTS_IN","name":"Krystyna","type":"Role","_key":"70210","_from":"42793","_to":"42792"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"70221","_from":"42797","_to":"42794"} +{"$label":"ACTS_IN","name":"Gaston","type":"Role","_key":"70220","_from":"42796","_to":"42794"} +{"$label":"ACTS_IN","name":"Louis Mozart","type":"Role","_key":"70218","_from":"42795","_to":"42794"} +{"$label":"ACTS_IN","name":"Robert Lee Gates","type":"Role","_key":"120126","_from":"42795","_to":"70546"} +{"$label":"ACTS_IN","name":"Jewel","type":"Role","_key":"108890","_from":"42797","_to":"64354"} +{"$label":"ACTS_IN","name":"Mrs. Crosby","type":"Role","_key":"101577","_from":"42797","_to":"59785"} +{"$label":"DIRECTED","_key":"70241","_from":"42807","_to":"42798"} +{"$label":"ACTS_IN","name":"President Hashina","type":"Role","_key":"70240","_from":"42806","_to":"42798"} +{"$label":"ACTS_IN","name":"Ringo","type":"Role","_key":"70239","_from":"42805","_to":"42798"} +{"$label":"ACTS_IN","name":"Deak","type":"Role","_key":"70238","_from":"42804","_to":"42798"} +{"$label":"ACTS_IN","name":"Theresa Wilcox","type":"Role","_key":"70237","_from":"42803","_to":"42798"} +{"$label":"ACTS_IN","name":"Hutch","type":"Role","_key":"70236","_from":"42802","_to":"42798"} +{"$label":"ACTS_IN","name":"Mark Wilcox","type":"Role","_key":"70235","_from":"42801","_to":"42798"} +{"$label":"ACTS_IN","name":"Margie Tanen","type":"Role","_key":"70231","_from":"42800","_to":"42798"} +{"$label":"ACTS_IN","name":"Gen. Suitor","type":"Role","_key":"70230","_from":"42799","_to":"42798"} +{"$label":"ACTS_IN","name":"Ralph Waters","type":"Role","_key":"97786","_from":"42801","_to":"57584"} +{"$label":"ACTS_IN","name":"Eugene","type":"Role","_key":"94906","_from":"42801","_to":"55876"} +{"$label":"ACTS_IN","name":"Oatmeal","type":"Role","_key":"116866","_from":"42804","_to":"68798"} +{"$label":"ACTS_IN","name":"Joe Jack","type":"Role","_key":"101193","_from":"42804","_to":"59606"} +{"$label":"DIRECTED","_key":"115679","_from":"42807","_to":"68096"} +{"$label":"DIRECTED","_key":"90776","_from":"42807","_to":"53570"} +{"$label":"DIRECTED","_key":"70781","_from":"42807","_to":"43036"} +{"$label":"DIRECTED","_key":"70246","_from":"42810","_to":"42808"} +{"$label":"ACTS_IN","name":"Matt Nolan","type":"Role","_key":"70244","_from":"42809","_to":"42808"} +{"$label":"ACTS_IN","name":"The Waiter","type":"Role","_key":"70250","_from":"42813","_to":"42811"} +{"$label":"ACTS_IN","name":"The Bartender","type":"Role","_key":"70249","_from":"42812","_to":"42811"} +{"$label":"ACTS_IN","name":"Girl #2 in 'Holly Does Hollywood'","type":"Role","_key":"70269","_from":"42821","_to":"42814"} +{"$label":"ACTS_IN","name":"Girl #2 in Bathroom","type":"Role","_key":"70267","_from":"42820","_to":"42814"} +{"$label":"ACTS_IN","name":"Girl #1 in Bathroom","type":"Role","_key":"70266","_from":"42819","_to":"42814"} +{"$label":"ACTS_IN","name":"Mindi","type":"Role","_key":"70264","_from":"42818","_to":"42814"} +{"$label":"ACTS_IN","name":"Linda Shaw","type":"Role","_key":"70263","_from":"42817","_to":"42814"} +{"$label":"ACTS_IN","name":"Kimberly Hess","type":"Role","_key":"70260","_from":"42816","_to":"42814"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"70259","_from":"42815","_to":"42814"} +{"$label":"DIRECTED","_key":"70295","_from":"42833","_to":"42822"} +{"$label":"ACTS_IN","name":"Patrice","type":"Role","_key":"70293","_from":"42832","_to":"42822"} +{"$label":"ACTS_IN","name":"Ballroom Waiter","type":"Role","_key":"70291","_from":"42831","_to":"42822"} +{"$label":"ACTS_IN","name":"Hanging Mailman","type":"Role","_key":"70290","_from":"42830","_to":"42822"} +{"$label":"ACTS_IN","name":"Beautiful Lounger","type":"Role","_key":"70288","_from":"42829","_to":"42822"} +{"$label":"ACTS_IN","name":"Katherine Adams","type":"Role","_key":"70285","_from":"42828","_to":"42822"} +{"$label":"ACTS_IN","name":"Geoff Adams","type":"Role","_key":"70284","_from":"42827","_to":"42822"} +{"$label":"ACTS_IN","name":"Uncle Fester Frump","type":"Role","_key":"70282","_from":"42826","_to":"42822"} +{"$label":"ACTS_IN","name":"Melinda Adams","type":"Role","_key":"70281","_from":"42825","_to":"42822"} +{"$label":"ACTS_IN","name":"Wednesday Addams","type":"Role","_key":"70280","_from":"42824","_to":"42822"} +{"$label":"ACTS_IN","name":"Pugsley Addams","type":"Role","_key":"70279","_from":"42823","_to":"42822"} +{"$label":"ACTS_IN","name":"Angry Neighbor","type":"Role","_key":"97723","_from":"42829","_to":"57539"} +{"$label":"ACTS_IN","name":"Shirl","type":"Role","_key":"88027","_from":"42832","_to":"52257"} +{"$label":"DIRECTED","_key":"116841","_from":"42833","_to":"68777"} +{"$label":"DIRECTED","_key":"100413","_from":"42833","_to":"59213"} +{"$label":"DIRECTED","_key":"70322","_from":"42847","_to":"42835"} +{"$label":"ACTS_IN","name":"Aerobics \/ Locker Room Girl","type":"Role","_key":"70320","_from":"42846","_to":"42835"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70318","_from":"42845","_to":"42835"} +{"$label":"ACTS_IN","name":"Man on Studio Tour","type":"Role","_key":"70316","_from":"42844","_to":"42835"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70315","_from":"42843","_to":"42835"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70314","_from":"42842","_to":"42835"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"70313","_from":"42841","_to":"42835"} +{"$label":"ACTS_IN","name":"Incredible Girl","type":"Role","_key":"70312","_from":"42840","_to":"42835"} +{"$label":"ACTS_IN","name":"Man in Car","type":"Role","_key":"70309","_from":"42839","_to":"42835"} +{"$label":"ACTS_IN","name":"Bimbo Student","type":"Role","_key":"70308","_from":"42838","_to":"42835"} +{"$label":"ACTS_IN","name":"Fanny Ray Weller","type":"Role","_key":"70307","_from":"42837","_to":"42835"} +{"$label":"ACTS_IN","name":"Braydon Aglet","type":"Role","_key":"70306","_from":"42836","_to":"42835"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"70326","_from":"42849","_to":"42848"} +{"$label":"DIRECTED","_key":"70332","_from":"42851","_to":"42850"} +{"$label":"ACTS_IN","name":"Taparica","type":"Role","_key":"70334","_from":"42853","_to":"42852"} +{"$label":"ACTS_IN","name":"Henrik Heidler","type":"Role","_key":"70339","_from":"42855","_to":"42854"} +{"$label":"DIRECTED","_key":"70373","_from":"42867","_to":"42859"} +{"$label":"ACTS_IN","name":"Sanjana's Father","type":"Role","_key":"70372","_from":"42866","_to":"42859"} +{"$label":"ACTS_IN","name":"Preeto","type":"Role","_key":"70369","_from":"42865","_to":"42859"} +{"$label":"ACTS_IN","name":"Ishika Dhanrajgir","type":"Role","_key":"70368","_from":"42864","_to":"42859"} +{"$label":"ACTS_IN","name":"Vikram Kapoor","type":"Role","_key":"70367","_from":"42863","_to":"42859"} +{"$label":"ACTS_IN","name":"Sanjana","type":"Role","_key":"70365","_from":"42862","_to":"42859"} +{"$label":"ACTS_IN","name":"Sameer Sharma","type":"Role","_key":"70364","_from":"42861","_to":"42859"} +{"$label":"ACTS_IN","name":"Kiran","type":"Role","_key":"70363","_from":"42860","_to":"42859"} +{"$label":"ACTS_IN","name":"Sanjeev Mehta","type":"Role","_key":"98781","_from":"42861","_to":"58204"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"112359","_from":"42863","_to":"66339"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"98980","_from":"42863","_to":"58312"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"98661","_from":"42863","_to":"58139"} +{"$label":"ACTS_IN","name":"Mrs. Handa","type":"Role","_key":"106528","_from":"42865","_to":"62762"} +{"$label":"ACTS_IN","name":"Acting Teacher","type":"Role","_key":"108788","_from":"42866","_to":"64303"} +{"$label":"ACTS_IN","name":"Boss Dasgupta","type":"Role","_key":"101642","_from":"42866","_to":"59822"} +{"$label":"ACTS_IN","name":"Sergeant Srinivas","type":"Role","_key":"89320","_from":"42866","_to":"52870"} +{"$label":"DIRECTED","_key":"120054","_from":"42867","_to":"70499"} +{"$label":"DIRECTED","_key":"98393","_from":"42867","_to":"57961"} +{"$label":"ACTS_IN","name":"Philip F. \"Duckie\" Dale","type":"Role","_key":"70396","_from":"42872","_to":"42871"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"121418","_from":"42872","_to":"71338"} +{"$label":"ACTS_IN","name":"Richard Pig","type":"Role","_key":"106246","_from":"42872","_to":"62588"} +{"$label":"DIRECTED","_key":"70405","_from":"42874","_to":"42873"} +{"$label":"ACTS_IN","name":"Attaglia","type":"Role","_key":"70411","_from":"42876","_to":"42875"} +{"$label":"DIRECTED","_key":"70418","_from":"42878","_to":"42877"} +{"$label":"ACTS_IN","name":"Kay","type":"Role","_key":"70437","_from":"42884","_to":"42880"} +{"$label":"ACTS_IN","name":"Uryens","type":"Role","_key":"70432","_from":"42883","_to":"42880"} +{"$label":"ACTS_IN","name":"Mordred","type":"Role","_key":"70430","_from":"42882","_to":"42880"} +{"$label":"ACTS_IN","name":"Perceval","type":"Role","_key":"70428","_from":"42881","_to":"42880"} +{"$label":"DIRECTED","_key":"70448","_from":"42890","_to":"42885"} +{"$label":"ACTS_IN","name":"Young Mr. Mertle","type":"Role","_key":"70446","_from":"42889","_to":"42885"} +{"$label":"ACTS_IN","name":"Michael 'Squints' Palledorous","type":"Role","_key":"70443","_from":"42888","_to":"42885"} +{"$label":"ACTS_IN","name":"Hamilton 'Ham' Porter","type":"Role","_key":"70442","_from":"42887","_to":"42885"} +{"$label":"ACTS_IN","name":"Benjamin Franklin Rodriguez","type":"Role","_key":"70440","_from":"42886","_to":"42885"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"104349","_from":"42887","_to":"61389"} +{"$label":"DIRECTED","_key":"105374","_from":"42890","_to":"61997"} +{"$label":"DIRECTED","_key":"104017","_from":"42890","_to":"61192"} +{"$label":"DIRECTED","_key":"103832","_from":"42890","_to":"61064"} +{"$label":"DIRECTED","_key":"90270","_from":"42890","_to":"53365"} +{"$label":"ACTS_IN","name":"Le contrema\u00eetre","type":"Role","_key":"70457","_from":"42893","_to":"42892"} +{"$label":"ACTS_IN","name":"Stephen Ryan Parker","type":"Role","_key":"70464","_from":"42896","_to":"42894"} +{"$label":"ACTS_IN","name":"Tristen Ryler","type":"Role","_key":"70463","_from":"42895","_to":"42894"} +{"$label":"ACTS_IN","name":"Tomme","type":"Role","_key":"70469","_from":"42900","_to":"42897"} +{"$label":"ACTS_IN","name":"Young Tommy","type":"Role","_key":"70468","_from":"42899","_to":"42897"} +{"$label":"ACTS_IN","name":"Young Heather","type":"Role","_key":"70467","_from":"42898","_to":"42897"} +{"$label":"ACTS_IN","name":"Argos","type":"Role","_key":"70474","_from":"42903","_to":"42901"} +{"$label":"ACTS_IN","name":"Medea","type":"Role","_key":"70472","_from":"42902","_to":"42901"} +{"$label":"ACTS_IN","name":"Nellie Bly","type":"Role","_key":"117122","_from":"42902","_to":"68912"} +{"$label":"ACTS_IN","name":"First Sea Lord","type":"Role","_key":"117454","_from":"42903","_to":"69075"} +{"$label":"ACTS_IN","name":"Reverend Angus Paddie","type":"Role","_key":"103113","_from":"42903","_to":"60651"} +{"$label":"ACTS_IN","name":"Mr. Fezziwig","type":"Role","_key":"96229","_from":"42903","_to":"56558"} +{"$label":"ACTS_IN","name":"Doctor Willers","type":"Role","_key":"71853","_from":"42903","_to":"43479"} +{"$label":"DIRECTED","_key":"70481","_from":"42910","_to":"42904"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"70480","_from":"42909","_to":"42904"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"70479","_from":"42908","_to":"42904"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"70478","_from":"42907","_to":"42904"} +{"$label":"ACTS_IN","name":"Tong","type":"Role","_key":"70477","_from":"42906","_to":"42904"} +{"$label":"ACTS_IN","name":"Keng","type":"Role","_key":"70476","_from":"42905","_to":"42904"} +{"$label":"ACTS_IN","name":"Coach Olga","type":"Role","_key":"70491","_from":"42913","_to":"42911"} +{"$label":"ACTS_IN","name":"Assistant Gold Coach","type":"Role","_key":"70490","_from":"42912","_to":"42911"} +{"$label":"ACTS_IN","name":"Fletcher's grandfather","type":"Role","_key":"70498","_from":"42915","_to":"42914"} +{"$label":"DIRECTED","_key":"70512","_from":"42923","_to":"42917"} +{"$label":"ACTS_IN","name":"The White Witch","type":"Role","_key":"70511","_from":"42922","_to":"42917"} +{"$label":"ACTS_IN","name":"Lucy Pevensie","type":"Role","_key":"70510","_from":"42921","_to":"42917"} +{"$label":"ACTS_IN","name":"Edmund Pevensie","type":"Role","_key":"70509","_from":"42920","_to":"42917"} +{"$label":"ACTS_IN","name":"Susan Pevensie","type":"Role","_key":"70508","_from":"42919","_to":"42917"} +{"$label":"ACTS_IN","name":"Peter Pevensie","type":"Role","_key":"70507","_from":"42918","_to":"42917"} +{"$label":"ACTS_IN","name":"Mrs. Cromwell","type":"Role","_key":"120797","_from":"42922","_to":"70946"} +{"$label":"ACTS_IN","name":"Smilzo","type":"Role","_key":"70516","_from":"42925","_to":"42924"} +{"$label":"ACTS_IN","name":"Paolo Borsellino","type":"Role","_key":"119152","_from":"42925","_to":"70024"} +{"$label":"ACTS_IN","name":"killer","type":"Role","_key":"89500","_from":"42925","_to":"52988"} +{"$label":"ACTS_IN","name":"Mason Parrish, Professor of Endocrinology at Harvard Medical School","type":"Role","_key":"70531","_from":"42929","_to":"42928"} +{"$label":"ACTS_IN","name":"Lucky Jack","type":"Role","_key":"95971","_from":"42929","_to":"56425"} +{"$label":"DIRECTED","_key":"70550","_from":"42934","_to":"42933"} +{"$label":"DIRECTED","_key":"108392","_from":"42934","_to":"64078"} +{"$label":"DIRECTED","_key":"105118","_from":"42934","_to":"61864"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"70558","_from":"42936","_to":"42935"} +{"$label":"ACTS_IN","name":"Ford","type":"Role","_key":"104374","_from":"42936","_to":"61401"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"99301","_from":"42936","_to":"58513"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"95140","_from":"42936","_to":"55986"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"70570","_from":"42940","_to":"42937"} +{"$label":"ACTS_IN","name":"Muriel Hogenson","type":"Role","_key":"70569","_from":"42939","_to":"42937"} +{"$label":"ACTS_IN","name":"Mason Baylor","type":"Role","_key":"70567","_from":"42938","_to":"42937"} +{"$label":"ACTS_IN","name":"Ben Wells","type":"Role","_key":"98594","_from":"42938","_to":"58103"} +{"$label":"ACTS_IN","name":"Vinnie","type":"Role","_key":"105504","_from":"42940","_to":"62082"} +{"$label":"ACTS_IN","name":"Stanley Driscoll","type":"Role","_key":"70585","_from":"42947","_to":"42941"} +{"$label":"ACTS_IN","name":"Officer Sam Janzek","type":"Role","_key":"70584","_from":"42946","_to":"42941"} +{"$label":"ACTS_IN","name":"Uncle Ira Lentz","type":"Role","_key":"70583","_from":"42945","_to":"42941"} +{"$label":"ACTS_IN","name":"Police Chief Nick Grivett","type":"Role","_key":"70582","_from":"42944","_to":"42941"} +{"$label":"ACTS_IN","name":"Nurse Sally Withers","type":"Role","_key":"70581","_from":"42943","_to":"42941"} +{"$label":"ACTS_IN","name":"Becky Driscoll","type":"Role","_key":"70577","_from":"42942","_to":"42941"} +{"$label":"ACTS_IN","name":"Anne Davis","type":"Role","_key":"117452","_from":"42942","_to":"69075"} +{"$label":"ACTS_IN","name":"La Signorita","type":"Role","_key":"70746","_from":"42942","_to":"43020"} +{"$label":"ACTS_IN","name":"Jim Tallman","type":"Role","_key":"116567","_from":"42944","_to":"68613"} +{"$label":"ACTS_IN","name":"Gus Gustavson the Train Fireman","type":"Role","_key":"117557","_from":"42945","_to":"69116"} +{"$label":"DIRECTED","_key":"70593","_from":"42953","_to":"42948"} +{"$label":"ACTS_IN","name":"Yvonne als Kind","type":"Role","_key":"70591","_from":"42952","_to":"42948"} +{"$label":"ACTS_IN","name":"Klaus als Kind","type":"Role","_key":"70590","_from":"42951","_to":"42948"} +{"$label":"ACTS_IN","name":"Yvonne Anders","type":"Role","_key":"70589","_from":"42950","_to":"42948"} +{"$label":"ACTS_IN","name":"Klaus Uhltzscht","type":"Role","_key":"70588","_from":"42949","_to":"42948"} +{"$label":"ACTS_IN","name":"Sigurbj\u00f6rn \u00c1sgeirsson","type":"Role","_key":"70608","_from":"42963","_to":"42955"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"70607","_from":"42962","_to":"42955"} +{"$label":"ACTS_IN","name":"Elizabeth Anderson","type":"Role","_key":"70606","_from":"42961","_to":"42955"} +{"$label":"ACTS_IN","name":"Gum-Chewing Girl","type":"Role","_key":"70605","_from":"42960","_to":"42955"} +{"$label":"ACTS_IN","name":"Max Anderson","type":"Role","_key":"70604","_from":"42959","_to":"42955"} +{"$label":"ACTS_IN","name":"Professor Alan Kitzens","type":"Role","_key":"70603","_from":"42958","_to":"42955"} +{"$label":"ACTS_IN","name":"Hannah \u00c1sgeirsson","type":"Role","_key":"70602","_from":"42957","_to":"42955"} +{"$label":"DIRECTED","_key":"70599","_from":"42956","_to":"42955"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"117662","_from":"42958","_to":"69161"} +{"$label":"DIRECTED","_key":"70616","_from":"42970","_to":"42964"} +{"$label":"ACTS_IN","name":"Doze","type":"Role","_key":"70615","_from":"42969","_to":"42964"} +{"$label":"ACTS_IN","name":"Jun","type":"Role","_key":"70614","_from":"42968","_to":"42964"} +{"$label":"ACTS_IN","name":"Xuan","type":"Role","_key":"70613","_from":"42967","_to":"42964"} +{"$label":"ACTS_IN","name":"Hao-Hao","type":"Role","_key":"70612","_from":"42966","_to":"42964"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"70611","_from":"42965","_to":"42964"} +{"$label":"DIRECTED","_key":"88638","_from":"42970","_to":"52522"} +{"$label":"DIRECTED","_key":"70625","_from":"42970","_to":"42971"} +{"$label":"ACTS_IN","name":"Hostess \/ Mickey","type":"Role","_key":"70623","_from":"42976","_to":"42971"} +{"$label":"ACTS_IN","name":"Haruko \/ Ah Mei","type":"Role","_key":"70622","_from":"42975","_to":"42971"} +{"$label":"ACTS_IN","name":"Mays Mutter \/ Madam","type":"Role","_key":"70621","_from":"42974","_to":"42971"} +{"$label":"ACTS_IN","name":"Madam \/ Jings Mutter","type":"Role","_key":"70620","_from":"42973","_to":"42971"} +{"$label":"ACTS_IN","name":"Alte Frau","type":"Role","_key":"70619","_from":"42972","_to":"42971"} +{"$label":"DIRECTED","_key":"114679","_from":"42975","_to":"67558"} +{"$label":"ACTS_IN","name":"Dr. James","type":"Role","_key":"70638","_from":"42986","_to":"42977"} +{"$label":"ACTS_IN","name":"Tiny Wind","type":"Role","_key":"70637","_from":"42985","_to":"42977"} +{"$label":"ACTS_IN","name":"White Wind","type":"Role","_key":"70636","_from":"42984","_to":"42977"} +{"$label":"ACTS_IN","name":"Florence Adams","type":"Role","_key":"70635","_from":"42983","_to":"42977"} +{"$label":"ACTS_IN","name":"Father Gabe","type":"Role","_key":"70634","_from":"42982","_to":"42977"} +{"$label":"ACTS_IN","name":"Sergeant Mathis","type":"Role","_key":"70633","_from":"42981","_to":"42977"} +{"$label":"ACTS_IN","name":"Catherine Nyland","type":"Role","_key":"70631","_from":"42980","_to":"42977"} +{"$label":"ACTS_IN","name":"Red Wind","type":"Role","_key":"70630","_from":"42979","_to":"42977"} +{"$label":"DIRECTED","_key":"70626","_from":"42978","_to":"42977"} +{"$label":"DIRECTED","_key":"70644","_from":"42992","_to":"42987"} +{"$label":"ACTS_IN","name":"Eulogia","type":"Role","_key":"70643","_from":"42991","_to":"42987"} +{"$label":"ACTS_IN","name":"Tomson","type":"Role","_key":"70642","_from":"42990","_to":"42987"} +{"$label":"ACTS_IN","name":"Sv\u00f3boda","type":"Role","_key":"70641","_from":"42989","_to":"42987"} +{"$label":"ACTS_IN","name":"Nene","type":"Role","_key":"70640","_from":"42988","_to":"42987"} +{"$label":"ACTS_IN","name":"Dell's Mother","type":"Role","_key":"70666","_from":"42996","_to":"42995"} +{"$label":"ACTS_IN","name":"Dr. Melik","type":"Role","_key":"70676","_from":"42999","_to":"42998"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"70688","_from":"43002","_to":"43001"} +{"$label":"ACTS_IN","name":"Chik","type":"Role","_key":"117577","_from":"43002","_to":"69126"} +{"$label":"ACTS_IN","name":"Chang Saam","type":"Role","_key":"94949","_from":"43002","_to":"55914"} +{"$label":"ACTS_IN","name":"Diane Norris","type":"Role","_key":"70692","_from":"43004","_to":"43003"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"70699","_from":"43006","_to":"43005"} +{"$label":"ACTS_IN","name":"Berkeley","type":"Role","_key":"116304","_from":"43006","_to":"68469"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"113756","_from":"43006","_to":"67033"} +{"$label":"ACTS_IN","name":"Senate Majority Leader","type":"Role","_key":"70712","_from":"43008","_to":"43007"} +{"$label":"DIRECTED","_key":"70723","_from":"43012","_to":"43009"} +{"$label":"ACTS_IN","name":"Yvonne Walzer","type":"Role","_key":"70720","_from":"43011","_to":"43009"} +{"$label":"ACTS_IN","name":"Mark Walzer","type":"Role","_key":"70719","_from":"43010","_to":"43009"} +{"$label":"ACTS_IN","name":"Buster Blues","type":"Role","_key":"70727","_from":"43014","_to":"43013"} +{"$label":"ACTS_IN","name":"Michael 'Tum Tum' Douglas","type":"Role","_key":"117947","_from":"43014","_to":"69327"} +{"$label":"ACTS_IN","name":"Daniel 'Doc' Fisher","type":"Role","_key":"70732","_from":"43019","_to":"43015"} +{"$label":"ACTS_IN","name":"Joanne 'Joey' Summerskill","type":"Role","_key":"70731","_from":"43018","_to":"43015"} +{"$label":"ACTS_IN","name":"Bum","type":"Role","_key":"70730","_from":"43017","_to":"43015"} +{"$label":"ACTS_IN","name":"J.P. Monroe","type":"Role","_key":"70729","_from":"43016","_to":"43015"} +{"$label":"ACTS_IN","name":"Valerie Desmond","type":"Role","_key":"105125","_from":"43018","_to":"61864"} +{"$label":"ACTS_IN","name":"Stub Ear","type":"Role","_key":"70749","_from":"43029","_to":"43020"} +{"$label":"ACTS_IN","name":"Claw Paw","type":"Role","_key":"70748","_from":"43028","_to":"43020"} +{"$label":"ACTS_IN","name":"Colonel","type":"Role","_key":"70745","_from":"43027","_to":"43020"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"70744","_from":"43026","_to":"43020"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"70743","_from":"43025","_to":"43020"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"70741","_from":"43024","_to":"43020"} +{"$label":"ACTS_IN","name":"Baron Jose Gruda","type":"Role","_key":"70740","_from":"43023","_to":"43020"} +{"$label":"ACTS_IN","name":"Consuelo","type":"Role","_key":"70737","_from":"43022","_to":"43020"} +{"$label":"ACTS_IN","name":"Ojo","type":"Role","_key":"70736","_from":"43021","_to":"43020"} +{"$label":"ACTS_IN","name":"Dr. Langmann - German Minister, Montevideo","type":"Role","_key":"113286","_from":"43029","_to":"66734"} +{"$label":"ACTS_IN","name":"Krantz","type":"Role","_key":"109264","_from":"43029","_to":"64542"} +{"$label":"DIRECTED","_key":"70764","_from":"43033","_to":"43031"} +{"$label":"DIRECTED","_key":"70763","_from":"43032","_to":"43031"} +{"$label":"DIRECTED","_key":"70769","_from":"43035","_to":"43034"} +{"$label":"DIRECTED","_key":"121086","_from":"43035","_to":"71109"} +{"$label":"ACTS_IN","name":"Luke Danby","type":"Role","_key":"70780","_from":"43039","_to":"43036"} +{"$label":"ACTS_IN","name":"Fred Johnson","type":"Role","_key":"70779","_from":"43038","_to":"43036"} +{"$label":"ACTS_IN","name":"Thomas Devery","type":"Role","_key":"70777","_from":"43037","_to":"43036"} +{"$label":"ACTS_IN","name":"Carney - Secret Service detail chief","type":"Role","_key":"116035","_from":"43037","_to":"68332"} +{"$label":"ACTS_IN","name":"Lt. Ted Wilks","type":"Role","_key":"100915","_from":"43037","_to":"59488"} +{"$label":"ACTS_IN","name":"Secretary Schwartz","type":"Role","_key":"70829","_from":"43057","_to":"43041"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"70826","_from":"43056","_to":"43041"} +{"$label":"ACTS_IN","name":"Irwin","type":"Role","_key":"70820","_from":"43055","_to":"43041"} +{"$label":"ACTS_IN","name":"First Cab Driver","type":"Role","_key":"70818","_from":"43054","_to":"43041"} +{"$label":"ACTS_IN","name":"Billie Sue Culpepper (voice)","type":"Role","_key":"70817","_from":"43053","_to":"43041"} +{"$label":"ACTS_IN","name":"Deputy Sheriff","type":"Role","_key":"70816","_from":"43052","_to":"43041"} +{"$label":"ACTS_IN","name":"Col. Wilberforce","type":"Role","_key":"70815","_from":"43051","_to":"43041"} +{"$label":"ACTS_IN","name":"Ginger Culpepper (voice)","type":"Role","_key":"70812","_from":"43050","_to":"43041"} +{"$label":"ACTS_IN","name":"Sylvester's Girlfriend","type":"Role","_key":"70808","_from":"43049","_to":"43041"} +{"$label":"ACTS_IN","name":"Police Sergeant","type":"Role","_key":"70806","_from":"43048","_to":"43041"} +{"$label":"ACTS_IN","name":"Biplane Pilot","type":"Role","_key":"70804","_from":"43047","_to":"43041"} +{"$label":"ACTS_IN","name":"Second Cab Driver","type":"Role","_key":"70802","_from":"43046","_to":"43041"} +{"$label":"ACTS_IN","name":"Mrs. Marcus","type":"Role","_key":"70795","_from":"43045","_to":"43041"} +{"$label":"ACTS_IN","name":"Airport Firemen #3","type":"Role","_key":"70794","_from":"43044","_to":"43041"} +{"$label":"ACTS_IN","name":"Airport Firemen #2","type":"Role","_key":"70793","_from":"43043","_to":"43041"} +{"$label":"ACTS_IN","name":"Airport Firemen #1","type":"Role","_key":"70792","_from":"43042","_to":"43041"} +{"$label":"ACTS_IN","name":"Le docteur Spiletti \/ Il dottore Spiletti","type":"Role","_key":"70844","_from":"43062","_to":"43059"} +{"$label":"ACTS_IN","name":"Maria Botazzi, moglie di Peppone","type":"Role","_key":"70843","_from":"43061","_to":"43059"} +{"$label":"ACTS_IN","name":"Don Camillo","type":"Role","_key":"70841","_from":"43060","_to":"43059"} +{"$label":"ACTS_IN","name":"Don Camillo","type":"Role","_key":"73075","_from":"43060","_to":"43967"} +{"$label":"ACTS_IN","name":"Don Camillo","type":"Role","_key":"70853","_from":"43060","_to":"43064"} +{"$label":"ACTS_IN","name":"Don Camillo","type":"Role","_key":"70846","_from":"43060","_to":"43063"} +{"$label":"ACTS_IN","name":"Maria Botazzi, moglie di Peppone","type":"Role","_key":"70854","_from":"43061","_to":"43064"} +{"$label":"ACTS_IN","name":"Maria Botazzi, moglie di Peppone","type":"Role","_key":"70849","_from":"43061","_to":"43063"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"70858","_from":"43067","_to":"43066"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"89139","_from":"43067","_to":"52801"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"70867","_from":"43070","_to":"43068"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"70865","_from":"43069","_to":"43068"} +{"$label":"ACTS_IN","name":"Whitley","type":"Role","_key":"100033","_from":"43069","_to":"59005"} +{"$label":"DIRECTED","_key":"70890","_from":"43075","_to":"43072"} +{"$label":"ACTS_IN","name":"Nurse Keating","type":"Role","_key":"70889","_from":"43074","_to":"43072"} +{"$label":"ACTS_IN","name":"Mrs. Clelia","type":"Role","_key":"70886","_from":"43073","_to":"43072"} +{"$label":"ACTS_IN","name":"Charlotte Thompson","type":"Role","_key":"119980","_from":"43073","_to":"70461"} +{"$label":"ACTS_IN","name":"Dr. Fromme","type":"Role","_key":"118080","_from":"43075","_to":"69396"} +{"$label":"DIRECTED","_key":"118067","_from":"43075","_to":"69396"} +{"$label":"ACTS_IN","name":"l'intrus","type":"Role","_key":"70897","_from":"43078","_to":"43076"} +{"$label":"ACTS_IN","name":"l'infirmi\u00e8re Clayton","type":"Role","_key":"70896","_from":"43077","_to":"43076"} +{"$label":"ACTS_IN","name":"Turk (tank crewman)","type":"Role","_key":"70922","_from":"43091","_to":"43079"} +{"$label":"ACTS_IN","name":"German lieutenant (as John Heller)","type":"Role","_key":"70921","_from":"43090","_to":"43079"} +{"$label":"ACTS_IN","name":"1st Sgt. Mulligan (artillerly unit)","type":"Role","_key":"70920","_from":"43089","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Jonesey","type":"Role","_key":"70919","_from":"43088","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Penn","type":"Role","_key":"70918","_from":"43087","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Mitchell","type":"Role","_key":"70916","_from":"43086","_to":"43079"} +{"$label":"ACTS_IN","name":"Col. Dunkhepf","type":"Role","_key":"70915","_from":"43085","_to":"43079"} +{"$label":"ACTS_IN","name":"Platoon Sgt. Bellamy (42nd Engineers)","type":"Role","_key":"70914","_from":"43084","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Babra","type":"Role","_key":"70913","_from":"43083","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Fisher","type":"Role","_key":"70912","_from":"43082","_to":"43079"} +{"$label":"ACTS_IN","name":"Pvt. Cowboy","type":"Role","_key":"70907","_from":"43081","_to":"43079"} +{"$label":"ACTS_IN","name":"Capt. Maitland","type":"Role","_key":"70905","_from":"43080","_to":"43079"} +{"$label":"ACTS_IN","name":"Jean-Guy Drouin","type":"Role","_key":"70938","_from":"43097","_to":"43092"} +{"$label":"ACTS_IN","name":"Denis Lemieux","type":"Role","_key":"70934","_from":"43096","_to":"43092"} +{"$label":"ACTS_IN","name":"Jack Hanson","type":"Role","_key":"70933","_from":"43095","_to":"43092"} +{"$label":"ACTS_IN","name":"Jeff Hanson","type":"Role","_key":"70931","_from":"43094","_to":"43092"} +{"$label":"ACTS_IN","name":"Francine Dunlop","type":"Role","_key":"70928","_from":"43093","_to":"43092"} +{"$label":"DIRECTED","_key":"70959","_from":"43103","_to":"43101"} +{"$label":"ACTS_IN","name":"Phoebus de Chateaupers","type":"Role","_key":"70957","_from":"43102","_to":"43101"} +{"$label":"ACTS_IN","name":"Housewife","type":"Role","_key":"70978","_from":"43109","_to":"43107"} +{"$label":"ACTS_IN","name":"Schwartz","type":"Role","_key":"70976","_from":"43108","_to":"43107"} +{"$label":"ACTS_IN","name":"Xiao Hong","type":"Role","_key":"70984","_from":"43114","_to":"43110"} +{"$label":"ACTS_IN","name":"Lao B.","type":"Role","_key":"70983","_from":"43113","_to":"43110"} +{"$label":"ACTS_IN","name":"Mardar","type":"Role","_key":"70982","_from":"43112","_to":"43110"} +{"$label":"DIRECTED","_key":"70980","_from":"43111","_to":"43110"} +{"$label":"ACTS_IN","name":"Sergeant Jim Vasquez","type":"Role","_key":"70990","_from":"43120","_to":"43115"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"70989","_from":"43119","_to":"43115"} +{"$label":"ACTS_IN","name":"Master Sergeant Sweet","type":"Role","_key":"70988","_from":"43118","_to":"43115"} +{"$label":"ACTS_IN","name":"Lawyer McCoy","type":"Role","_key":"70987","_from":"43117","_to":"43115"} +{"$label":"ACTS_IN","name":"Angel Salazar","type":"Role","_key":"70986","_from":"43116","_to":"43115"} +{"$label":"ACTS_IN","name":"Jake Witzky","type":"Role","_key":"70992","_from":"43122","_to":"43121"} +{"$label":"ACTS_IN","name":"Fredrik (segment \"Minus\")","type":"Role","_key":"70999","_from":"43124","_to":"43123"} +{"$label":"DIRECTED","_key":"71005","_from":"43126","_to":"43125"} +{"$label":"DIRECTED","_key":"71010","_from":"43128","_to":"43127"} +{"$label":"DIRECTED","_key":"100047","_from":"43128","_to":"59019"} +{"$label":"DIRECTED","_key":"71022","_from":"43133","_to":"43130"} +{"$label":"ACTS_IN","name":"Nid","type":"Role","_key":"71020","_from":"43132","_to":"43130"} +{"$label":"ACTS_IN","name":"Noi","type":"Role","_key":"71019","_from":"43131","_to":"43130"} +{"$label":"DIRECTED","_key":"99204","_from":"43133","_to":"58453"} +{"$label":"ACTS_IN","name":"Dr. Diane Norris","type":"Role","_key":"71029","_from":"43137","_to":"43134"} +{"$label":"ACTS_IN","name":"McBride","type":"Role","_key":"71025","_from":"43136","_to":"43134"} +{"$label":"ACTS_IN","name":"Captain Phillip Laidlaw","type":"Role","_key":"71023","_from":"43135","_to":"43134"} +{"$label":"ACTS_IN","name":"LCDR Ellis Dorn","type":"Role","_key":"107171","_from":"43136","_to":"63209"} +{"$label":"ACTS_IN","name":"Connie Warner","type":"Role","_key":"93455","_from":"43137","_to":"55025"} +{"$label":"DIRECTED","_key":"71038","_from":"43139","_to":"43138"} +{"$label":"DIRECTED","_key":"101637","_from":"43139","_to":"59820"} +{"$label":"ACTS_IN","name":"Humphrey Bogart","type":"Role","_key":"71042","_from":"43141","_to":"43140"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"71047","_from":"43145","_to":"43142"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"71046","_from":"43144","_to":"43142"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"71045","_from":"43143","_to":"43142"} +{"$label":"ACTS_IN","name":"Sergeant Haig","type":"Role","_key":"71057","_from":"43148","_to":"43147"} +{"$label":"ACTS_IN","name":"Rosco Dunn","type":"Role","_key":"71062","_from":"43152","_to":"43149"} +{"$label":"ACTS_IN","name":"Giorgio Desideri (Giorgione)","type":"Role","_key":"71061","_from":"43151","_to":"43149"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"71060","_from":"43150","_to":"43149"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109149","_from":"43152","_to":"64483"} +{"$label":"ACTS_IN","name":"Fatalona","type":"Role","_key":"71074","_from":"43157","_to":"43154"} +{"$label":"ACTS_IN","name":"Mr. Spider","type":"Role","_key":"71073","_from":"43156","_to":"43154"} +{"$label":"ACTS_IN","name":"K1","type":"Role","_key":"71071","_from":"43155","_to":"43154"} +{"$label":"ACTS_IN","name":"Trooper Jefferson 'Jeff' Yorke","type":"Role","_key":"71079","_from":"43159","_to":"43158"} +{"$label":"ACTS_IN","name":"Imperial Guard","type":"Role","_key":"71098","_from":"43164","_to":"43162"} +{"$label":"ACTS_IN","name":"Marcus Vinicius","type":"Role","_key":"71094","_from":"43163","_to":"43162"} +{"$label":"ACTS_IN","name":"Lancelot","type":"Role","_key":"121580","_from":"43163","_to":"71435"} +{"$label":"ACTS_IN","name":"Pikkoro-oyaji (voice)","type":"Role","_key":"71103","_from":"43168","_to":"43165"} +{"$label":"ACTS_IN","name":"Jina-sama (voice)","type":"Role","_key":"71102","_from":"43167","_to":"43165"} +{"$label":"ACTS_IN","name":"Kurenai no Buta (voice)","type":"Role","_key":"71101","_from":"43166","_to":"43165"} +{"$label":"DIRECTED","_key":"71115","_from":"43171","_to":"43170"} +{"$label":"DIRECTED","_key":"71128","_from":"43174","_to":"43173"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"71133","_from":"43179","_to":"43175"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"71132","_from":"43178","_to":"43175"} +{"$label":"ACTS_IN","name":"Annika","type":"Role","_key":"71131","_from":"43177","_to":"43175"} +{"$label":"ACTS_IN","name":"Pippi L\u00e5ngstrump","type":"Role","_key":"71130","_from":"43176","_to":"43175"} +{"$label":"ACTS_IN","name":"Pippi Langstrump","type":"Role","_key":"88171","_from":"43176","_to":"52316"} +{"$label":"ACTS_IN","name":"Pippi Langstrumpf","type":"Role","_key":"88003","_from":"43176","_to":"52247"} +{"$label":"ACTS_IN","name":"Annika Settergren","type":"Role","_key":"88173","_from":"43177","_to":"52316"} +{"$label":"ACTS_IN","name":"Annika Settergren","type":"Role","_key":"88005","_from":"43177","_to":"52247"} +{"$label":"ACTS_IN","name":"Tommy Settergren","type":"Role","_key":"88172","_from":"43178","_to":"52316"} +{"$label":"ACTS_IN","name":"Tommy Settergren","type":"Role","_key":"88004","_from":"43178","_to":"52247"} +{"$label":"ACTS_IN","name":"Garbo","type":"Role","_key":"111081","_from":"43179","_to":"65612"} +{"$label":"DIRECTED","_key":"71134","_from":"43181","_to":"43180"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"71143","_from":"43184","_to":"43182"} +{"$label":"ACTS_IN","name":"Romano","type":"Role","_key":"71142","_from":"43183","_to":"43182"} +{"$label":"ACTS_IN","name":"Geena","type":"Role","_key":"71147","_from":"43188","_to":"43185"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"71146","_from":"43187","_to":"43185"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"71145","_from":"43186","_to":"43185"} +{"$label":"ACTS_IN","name":"... \t Dr. Francis B. Gross","type":"Role","_key":"106258","_from":"43186","_to":"62594"} +{"$label":"ACTS_IN","name":"Dr. Francis B. Gross","type":"Role","_key":"106255","_from":"43186","_to":"62592"} +{"$label":"ACTS_IN","name":"Dr. Francis B. Gr\u00f6ss","type":"Role","_key":"106253","_from":"43186","_to":"62591"} +{"$label":"ACTS_IN","name":"Dr. Francis B. Gr\u00f6ss","type":"Role","_key":"88907","_from":"43186","_to":"52666"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"71165","_from":"43194","_to":"43190"} +{"$label":"ACTS_IN","name":"Gregoris","type":"Role","_key":"71164","_from":"43193","_to":"43190"} +{"$label":"ACTS_IN","name":"Sam's PA","type":"Role","_key":"71163","_from":"43192","_to":"43190"} +{"$label":"DIRECTED","_key":"71155","_from":"43191","_to":"43190"} +{"$label":"DIRECTED","_key":"71179","_from":"43200","_to":"43196"} +{"$label":"ACTS_IN","name":"Deunan","type":"Role","_key":"71177","_from":"43199","_to":"43196"} +{"$label":"ACTS_IN","name":"Hitomi","type":"Role","_key":"71176","_from":"43198","_to":"43196"} +{"$label":"ACTS_IN","name":"Briareos","type":"Role","_key":"71175","_from":"43197","_to":"43196"} +{"$label":"ACTS_IN","name":"Orihime Inoue","type":"Role","_key":"105002","_from":"43198","_to":"61775"} +{"$label":"DIRECTED","_key":"97937","_from":"43200","_to":"57677"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"71185","_from":"43206","_to":"43201"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"71184","_from":"43205","_to":"43201"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"71183","_from":"43204","_to":"43201"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"71182","_from":"43203","_to":"43201"} +{"$label":"ACTS_IN","name":"Elin","type":"Role","_key":"71181","_from":"43202","_to":"43201"} +{"$label":"ACTS_IN","name":"Lara Campbell","type":"Role","_key":"71191","_from":"43208","_to":"43207"} +{"$label":"DIRECTED","_key":"71199","_from":"43213","_to":"43209"} +{"$label":"ACTS_IN","name":"Robber","type":"Role","_key":"71198","_from":"43212","_to":"43209"} +{"$label":"ACTS_IN","name":"Negotiator","type":"Role","_key":"71197","_from":"43211","_to":"43209"} +{"$label":"ACTS_IN","name":"Zheng Xiaofeng","type":"Role","_key":"71196","_from":"43210","_to":"43209"} +{"$label":"ACTS_IN","name":"Sergeant Tong","type":"Role","_key":"114786","_from":"43210","_to":"67614"} +{"$label":"ACTS_IN","name":"Tiger Wong","type":"Role","_key":"106159","_from":"43210","_to":"62527"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"92567","_from":"43210","_to":"54644"} +{"$label":"DIRECTED","_key":"120580","_from":"43213","_to":"70821"} +{"$label":"DIRECTED","_key":"120310","_from":"43213","_to":"70666"} +{"$label":"DIRECTED","_key":"92577","_from":"43213","_to":"54644"} +{"$label":"DIRECTED","_key":"71213","_from":"43218","_to":"43215"} +{"$label":"ACTS_IN","name":"Keisha Jones","type":"Role","_key":"71212","_from":"43217","_to":"43215"} +{"$label":"ACTS_IN","name":"Howard Jones","type":"Role","_key":"71211","_from":"43216","_to":"43215"} +{"$label":"DIRECTED","_key":"71219","_from":"43221","_to":"43219"} +{"$label":"ACTS_IN","name":"Kira","type":"Role","_key":"71215","_from":"43220","_to":"43219"} +{"$label":"ACTS_IN","name":"Theodor Laban","type":"Role","_key":"71226","_from":"43223","_to":"43222"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71242","_from":"43227","_to":"43224"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"71236","_from":"43226","_to":"43224"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"71235","_from":"43225","_to":"43224"} +{"$label":"ACTS_IN","name":"Sandy Ricks","type":"Role","_key":"121362","_from":"43226","_to":"71319"} +{"$label":"ACTS_IN","name":"Det. Mackey","type":"Role","_key":"71253","_from":"43231","_to":"43228"} +{"$label":"ACTS_IN","name":"Donahue","type":"Role","_key":"71252","_from":"43230","_to":"43228"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"71251","_from":"43229","_to":"43228"} +{"$label":"ACTS_IN","name":"Tank","type":"Role","_key":"96376","_from":"43231","_to":"56647"} +{"$label":"ACTS_IN","name":"Saburo Naotora Ichimonji","type":"Role","_key":"71259","_from":"43236","_to":"43232"} +{"$label":"ACTS_IN","name":"Jiro Masatora Ichimonji","type":"Role","_key":"71258","_from":"43235","_to":"43232"} +{"$label":"ACTS_IN","name":"Taro Takatora Ichimonji","type":"Role","_key":"71257","_from":"43234","_to":"43232"} +{"$label":"ACTS_IN","name":"Lord Hidetora Ichimonji","type":"Role","_key":"71256","_from":"43233","_to":"43232"} +{"$label":"ACTS_IN","name":"Ryunosuke Tsukue","type":"Role","_key":"121351","_from":"43233","_to":"71310"} +{"$label":"ACTS_IN","name":"Hanshiro Tsugumo","type":"Role","_key":"100690","_from":"43233","_to":"59371"} +{"$label":"ACTS_IN","name":"Chief Detective Tokura","type":"Role","_key":"89850","_from":"43233","_to":"53168"} +{"$label":"ACTS_IN","name":"Shingen Takeda \/ Kagemusha","type":"Role","_key":"72953","_from":"43233","_to":"43918"} +{"$label":"ACTS_IN","name":"Unosuke, gunfighter","type":"Role","_key":"72511","_from":"43233","_to":"43743"} +{"$label":"ACTS_IN","name":"Hanbei Muroto","type":"Role","_key":"71714","_from":"43233","_to":"43413"} +{"$label":"ACTS_IN","name":"I","type":"Role","_key":"90000","_from":"43234","_to":"53243"} +{"$label":"ACTS_IN","name":"Dr. Kotaro Azuma","type":"Role","_key":"71378","_from":"43234","_to":"43291"} +{"$label":"ACTS_IN","name":"Sohachiro Tsuchiya","type":"Role","_key":"72956","_from":"43235","_to":"43918"} +{"$label":"ACTS_IN","name":"Les McCann","type":"Role","_key":"71264","_from":"43241","_to":"43237"} +{"$label":"ACTS_IN","name":"Rose Hamilton","type":"Role","_key":"71263","_from":"43240","_to":"43237"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"71262","_from":"43239","_to":"43237"} +{"$label":"ACTS_IN","name":"Archy Hamilton","type":"Role","_key":"71260","_from":"43238","_to":"43237"} +{"$label":"ACTS_IN","name":"Tom Alcock","type":"Role","_key":"121599","_from":"43241","_to":"71440"} +{"$label":"DIRECTED","_key":"71279","_from":"43244","_to":"43243"} +{"$label":"DIRECTED","_key":"71295","_from":"43253","_to":"43245"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"71294","_from":"43252","_to":"43245"} +{"$label":"ACTS_IN","name":"Karg","type":"Role","_key":"71293","_from":"43251","_to":"43245"} +{"$label":"ACTS_IN","name":"Saurod","type":"Role","_key":"71291","_from":"43250","_to":"43245"} +{"$label":"ACTS_IN","name":"Beast Man","type":"Role","_key":"71290","_from":"43249","_to":"43245"} +{"$label":"ACTS_IN","name":"Sorceress","type":"Role","_key":"71289","_from":"43248","_to":"43245"} +{"$label":"ACTS_IN","name":"Man At Arms","type":"Role","_key":"71286","_from":"43247","_to":"43245"} +{"$label":"ACTS_IN","name":"Kevin Corrigan","type":"Role","_key":"71285","_from":"43246","_to":"43245"} +{"$label":"ACTS_IN","name":"Mickey Jax","type":"Role","_key":"118774","_from":"43251","_to":"69835"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96528","_from":"43252","_to":"56725"} +{"$label":"DIRECTED","_key":"71301","_from":"43256","_to":"43254"} +{"$label":"ACTS_IN","name":"Saadia","type":"Role","_key":"71298","_from":"43255","_to":"43254"} +{"$label":"DIRECTED","_key":"71314","_from":"43259","_to":"43258"} +{"$label":"ACTS_IN","name":"Dragon","type":"Role","_key":"71319","_from":"43263","_to":"43260"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"71318","_from":"43262","_to":"43260"} +{"$label":"ACTS_IN","name":"Ok-soo","type":"Role","_key":"71316","_from":"43261","_to":"43260"} +{"$label":"ACTS_IN","name":"Sullie","type":"Role","_key":"109096","_from":"43261","_to":"64459"} +{"$label":"ACTS_IN","name":"Kuhu","type":"Role","_key":"120890","_from":"43262","_to":"70978"} +{"$label":"ACTS_IN","name":"Champa","type":"Role","_key":"105857","_from":"43262","_to":"62311"} +{"$label":"ACTS_IN","name":"Thug (as Low Houi-Kang)","type":"Role","_key":"117245","_from":"43263","_to":"68965"} +{"$label":"ACTS_IN","name":"Alice Cavender","type":"Role","_key":"71326","_from":"43265","_to":"43264"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"71333","_from":"43268","_to":"43266"} +{"$label":"ACTS_IN","name":"Mercedes","type":"Role","_key":"71332","_from":"43267","_to":"43266"} +{"$label":"ACTS_IN","name":"Karin","type":"Role","_key":"71338","_from":"43271","_to":"43269"} +{"$label":"ACTS_IN","name":"M\u00e4reta","type":"Role","_key":"71336","_from":"43270","_to":"43269"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"71346","_from":"43273","_to":"43272"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"71352","_from":"43278","_to":"43274"} +{"$label":"ACTS_IN","name":"Yong-man","type":"Role","_key":"71351","_from":"43277","_to":"43274"} +{"$label":"ACTS_IN","name":"Young-shin Kim","type":"Role","_key":"71350","_from":"43276","_to":"43274"} +{"$label":"ACTS_IN","name":"Jin-seok Lee","type":"Role","_key":"71349","_from":"43275","_to":"43274"} +{"$label":"ACTS_IN","name":"Kyung-Su","type":"Role","_key":"117183","_from":"43277","_to":"68939"} +{"$label":"DIRECTED","_key":"71360","_from":"43281","_to":"43279"} +{"$label":"ACTS_IN","name":"Giulia Monfalco","type":"Role","_key":"71357","_from":"43280","_to":"43279"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"71367","_from":"43288","_to":"43282"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"71366","_from":"43287","_to":"43282"} +{"$label":"ACTS_IN","name":"Home Owner","type":"Role","_key":"71365","_from":"43286","_to":"43282"} +{"$label":"ACTS_IN","name":"The Bald Guy","type":"Role","_key":"71364","_from":"43285","_to":"43282"} +{"$label":"ACTS_IN","name":"The Policeman","type":"Role","_key":"71363","_from":"43284","_to":"43282"} +{"$label":"ACTS_IN","name":"Cobb","type":"Role","_key":"71361","_from":"43283","_to":"43282"} +{"$label":"DIRECTED","_key":"71375","_from":"43290","_to":"43289"} +{"$label":"DIRECTED","_key":"71382","_from":"43294","_to":"43291"} +{"$label":"ACTS_IN","name":"Akubon","type":"Role","_key":"71381","_from":"43293","_to":"43291"} +{"$label":"ACTS_IN","name":"Midori Azuma","type":"Role","_key":"71379","_from":"43292","_to":"43291"} +{"$label":"ACTS_IN","name":"Sachiko","type":"Role","_key":"88416","_from":"43292","_to":"52403"} +{"$label":"ACTS_IN","name":"Steven Clifford","type":"Role","_key":"71385","_from":"43297","_to":"43295"} +{"$label":"ACTS_IN","name":"Jimmy Rabbitte","type":"Role","_key":"71384","_from":"43296","_to":"43295"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"71392","_from":"43299","_to":"43298"} +{"$label":"ACTS_IN","name":"Ladislas Krstic","type":"Role","_key":"71404","_from":"43301","_to":"43300"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"71411","_from":"43305","_to":"43302"} +{"$label":"ACTS_IN","name":"Helene","type":"Role","_key":"71409","_from":"43304","_to":"43302"} +{"$label":"ACTS_IN","name":"Janine","type":"Role","_key":"71408","_from":"43303","_to":"43302"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"71466","_from":"43303","_to":"43324"} +{"$label":"ACTS_IN","name":"Claire Garland","type":"Role","_key":"71443","_from":"43303","_to":"43314"} +{"$label":"ACTS_IN","name":"Solange Ferrand","type":"Role","_key":"71429","_from":"43303","_to":"43308"} +{"$label":"DIRECTED","_key":"71417","_from":"43307","_to":"43306"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71434","_from":"43313","_to":"43308"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71432","_from":"43312","_to":"43308"} +{"$label":"ACTS_IN","name":"Raoul Ferrand","type":"Role","_key":"71430","_from":"43311","_to":"43308"} +{"$label":"ACTS_IN","name":"Jegou","type":"Role","_key":"71428","_from":"43310","_to":"43308"} +{"$label":"DIRECTED","_key":"71423","_from":"43309","_to":"43308"} +{"$label":"DIRECTED","_key":"71438","_from":"43315","_to":"43314"} +{"$label":"ACTS_IN","name":"la future maman","type":"Role","_key":"71452","_from":"43318","_to":"43316"} +{"$label":"ACTS_IN","name":"Fuchs","type":"Role","_key":"71449","_from":"43317","_to":"43316"} +{"$label":"ACTS_IN","name":"Consuelas Bruder","type":"Role","_key":"71464","_from":"43323","_to":"43319"} +{"$label":"ACTS_IN","name":"Charlie Rose","type":"Role","_key":"71463","_from":"43322","_to":"43319"} +{"$label":"ACTS_IN","name":"Kris Banjee","type":"Role","_key":"71462","_from":"43321","_to":"43319"} +{"$label":"ACTS_IN","name":"Susan Reese","type":"Role","_key":"71461","_from":"43320","_to":"43319"} +{"$label":"ACTS_IN","name":"Jacques","type":"Role","_key":"71470","_from":"43326","_to":"43324"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"71469","_from":"43325","_to":"43324"} +{"$label":"ACTS_IN","name":"Roxane","type":"Role","_key":"71474","_from":"43328","_to":"43327"} +{"$label":"ACTS_IN","name":"Solange Josse","type":"Role","_key":"120542","_from":"43328","_to":"70795"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"71497","_from":"43334","_to":"43330"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"71496","_from":"43333","_to":"43330"} +{"$label":"ACTS_IN","name":"Detective 'Fitz' Fitzsimmons","type":"Role","_key":"71495","_from":"43332","_to":"43330"} +{"$label":"ACTS_IN","name":"Tony Allegre","type":"Role","_key":"71493","_from":"43331","_to":"43330"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"105276","_from":"43332","_to":"61948"} +{"$label":"ACTS_IN","name":"Anselme","type":"Role","_key":"71523","_from":"43341","_to":"43339"} +{"$label":"ACTS_IN","name":"Val\u00e9re","type":"Role","_key":"71522","_from":"43340","_to":"43339"} +{"$label":"DIRECTED","_key":"71532","_from":"43344","_to":"43342"} +{"$label":"ACTS_IN","name":"Menendez","type":"Role","_key":"71531","_from":"43343","_to":"43342"} +{"$label":"ACTS_IN","name":"Motown","type":"Role","_key":"71551","_from":"43351","_to":"43346"} +{"$label":"ACTS_IN","name":"Brubaker","type":"Role","_key":"71550","_from":"43350","_to":"43346"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"71549","_from":"43349","_to":"43346"} +{"$label":"ACTS_IN","name":"Number 9","type":"Role","_key":"71547","_from":"43348","_to":"43346"} +{"$label":"ACTS_IN","name":"Pretty Boy","type":"Role","_key":"71545","_from":"43347","_to":"43346"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"120104","_from":"43349","_to":"70533"} +{"$label":"ACTS_IN","name":"Tony Ravello","type":"Role","_key":"92093","_from":"43349","_to":"54339"} +{"$label":"ACTS_IN","name":"Burnham","type":"Role","_key":"88652","_from":"43349","_to":"52530"} +{"$label":"ACTS_IN","name":"Old Nehamkin","type":"Role","_key":"71565","_from":"43355","_to":"43354"} +{"$label":"ACTS_IN","name":"Kronk (Dt. Stimme)","type":"Role","_key":"71581","_from":"43359","_to":"43357"} +{"$label":"ACTS_IN","name":"Patcha (Dt. Stimme)","type":"Role","_key":"71577","_from":"43358","_to":"43357"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"71590","_from":"43364","_to":"43361"} +{"$label":"ACTS_IN","name":"Ray Jackson","type":"Role","_key":"71589","_from":"43363","_to":"43361"} +{"$label":"DIRECTED","_key":"71587","_from":"43362","_to":"43361"} +{"$label":"ACTS_IN","name":"Fred \"The Ogre\" Palowakski","type":"Role","_key":"98306","_from":"43363","_to":"57901"} +{"$label":"ACTS_IN","name":"Playboy","type":"Role","_key":"71599","_from":"43366","_to":"43365"} +{"$label":"DIRECTED","_key":"71606","_from":"43369","_to":"43368"} +{"$label":"DIRECTED","_key":"71613","_from":"43373","_to":"43370"} +{"$label":"ACTS_IN","name":"Shouter","type":"Role","_key":"71612","_from":"43372","_to":"43370"} +{"$label":"ACTS_IN","name":"Jed","type":"Role","_key":"71611","_from":"43371","_to":"43370"} +{"$label":"DIRECTED","_key":"101416","_from":"43373","_to":"59700"} +{"$label":"ACTS_IN","name":"Philippe Bosquier","type":"Role","_key":"71617","_from":"43375","_to":"43374"} +{"$label":"ACTS_IN","name":"Der Bruno Stroszek","type":"Role","_key":"71624","_from":"43378","_to":"43377"} +{"$label":"ACTS_IN","name":"Kaspar Hauser","type":"Role","_key":"71701","_from":"43378","_to":"43406"} +{"$label":"ACTS_IN","name":"Daryl","type":"Role","_key":"71636","_from":"43381","_to":"43379"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"71635","_from":"43380","_to":"43379"} +{"$label":"ACTS_IN","name":"Vincent McClure","type":"Role","_key":"106976","_from":"43380","_to":"63058"} +{"$label":"ACTS_IN","name":"Agent Ben Stasiak","type":"Role","_key":"96763","_from":"43380","_to":"56916"} +{"$label":"ACTS_IN","name":"Ranger Holt","type":"Role","_key":"94850","_from":"43380","_to":"55853"} +{"$label":"ACTS_IN","name":"Dennis Farell","type":"Role","_key":"93493","_from":"43380","_to":"55048"} +{"$label":"ACTS_IN","name":"Tip","type":"Role","_key":"92838","_from":"43380","_to":"54766"} +{"$label":"ACTS_IN","name":"James Farmer Jr.","type":"Role","_key":"98269","_from":"43381","_to":"57887"} +{"$label":"ACTS_IN","name":"Countess Charlotte Malcolm","type":"Role","_key":"71646","_from":"43384","_to":"43382"} +{"$label":"ACTS_IN","name":"Desiree Armfeldt","type":"Role","_key":"71644","_from":"43383","_to":"43382"} +{"$label":"DIRECTED","_key":"71653","_from":"43386","_to":"43385"} +{"$label":"ACTS_IN","name":"Mrs. Brisby (voice)","type":"Role","_key":"71665","_from":"43390","_to":"43389"} +{"$label":"ACTS_IN","name":"King Richard's Mother","type":"Role","_key":"72554","_from":"43390","_to":"43753"} +{"$label":"ACTS_IN","name":"Avery","type":"Role","_key":"71674","_from":"43394","_to":"43391"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"71670","_from":"43393","_to":"43391"} +{"$label":"DIRECTED","_key":"71669","_from":"43392","_to":"43391"} +{"$label":"ACTS_IN","name":"Jamie McDonald","type":"Role","_key":"121286","_from":"43394","_to":"71254"} +{"$label":"DIRECTED","_key":"71684","_from":"43397","_to":"43396"} +{"$label":"DIRECTED","_key":"71694","_from":"43403","_to":"43398"} +{"$label":"ACTS_IN","name":"Jeremy Potts","type":"Role","_key":"71693","_from":"43402","_to":"43398"} +{"$label":"ACTS_IN","name":"Jemima Potts","type":"Role","_key":"71692","_from":"43401","_to":"43398"} +{"$label":"ACTS_IN","name":"Child Catcher","type":"Role","_key":"71691","_from":"43400","_to":"43398"} +{"$label":"ACTS_IN","name":"Truly Scrumptious","type":"Role","_key":"71686","_from":"43399","_to":"43398"} +{"$label":"ACTS_IN","name":"Sally O'Hara","type":"Role","_key":"95330","_from":"43399","_to":"56079"} +{"$label":"ACTS_IN","name":"Ivan Boleslawsky","type":"Role","_key":"120329","_from":"43400","_to":"70681"} +{"$label":"ACTS_IN","name":"Dr. Roget","type":"Role","_key":"111558","_from":"43400","_to":"65862"} +{"$label":"DIRECTED","_key":"88683","_from":"43403","_to":"52552"} +{"$label":"DIRECTED","_key":"71699","_from":"43405","_to":"43404"} +{"$label":"ACTS_IN","name":"Schauspielstudent","type":"Role","_key":"71711","_from":"43412","_to":"43407"} +{"$label":"ACTS_IN","name":"Gu\u0308nter Schuhmann-Weil","type":"Role","_key":"71710","_from":"43411","_to":"43407"} +{"$label":"ACTS_IN","name":"Elfie","type":"Role","_key":"71709","_from":"43410","_to":"43407"} +{"$label":"ACTS_IN","name":"Th omas-Albert \u201aTom\u2018 Schuhmann-Weil","type":"Role","_key":"71706","_from":"43409","_to":"43407"} +{"$label":"DIRECTED","_key":"71705","_from":"43408","_to":"43407"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"73151","_from":"43412","_to":"43990"} +{"$label":"ACTS_IN","name":"The Spy","type":"Role","_key":"71715","_from":"43414","_to":"43413"} +{"$label":"DIRECTED","_key":"71722","_from":"43417","_to":"43415"} +{"$label":"ACTS_IN","name":"Yen","type":"Role","_key":"71721","_from":"43416","_to":"43415"} +{"$label":"ACTS_IN","name":"Chow Mei","type":"Role","_key":"89764","_from":"43416","_to":"53130"} +{"$label":"DIRECTED","_key":"117364","_from":"43417","_to":"69027"} +{"$label":"DIRECTED","_key":"117354","_from":"43417","_to":"69019"} +{"$label":"DIRECTED","_key":"117315","_from":"43417","_to":"68995"} +{"$label":"DIRECTED","_key":"117280","_from":"43417","_to":"68979"} +{"$label":"DIRECTED","_key":"117009","_from":"43417","_to":"68863"} +{"$label":"DIRECTED","_key":"89767","_from":"43417","_to":"53130"} +{"$label":"ACTS_IN","name":"Ulli","type":"Role","_key":"71731","_from":"43420","_to":"43419"} +{"$label":"DIRECTED","_key":"71745","_from":"43431","_to":"43422"} +{"$label":"DIRECTED","_key":"71744","_from":"43430","_to":"43422"} +{"$label":"DIRECTED","_key":"71743","_from":"43429","_to":"43422"} +{"$label":"ACTS_IN","name":"Kriminalkommissar","type":"Role","_key":"71741","_from":"43428","_to":"43422"} +{"$label":"ACTS_IN","name":"Larsen","type":"Role","_key":"71739","_from":"43427","_to":"43422"} +{"$label":"ACTS_IN","name":"Marie-Louise Dessau","type":"Role","_key":"71738","_from":"43426","_to":"43422"} +{"$label":"ACTS_IN","name":"Karen Bentzen","type":"Role","_key":"71737","_from":"43425","_to":"43422"} +{"$label":"ACTS_IN","name":"Hans Thomsen","type":"Role","_key":"71736","_from":"43424","_to":"43422"} +{"$label":"ACTS_IN","name":"Allan Berg","type":"Role","_key":"71735","_from":"43423","_to":"43422"} +{"$label":"ACTS_IN","name":"Stoiss","type":"Role","_key":"110460","_from":"43423","_to":"65258"} +{"$label":"ACTS_IN","name":"Gao Weiguo","type":"Role","_key":"71758","_from":"43436","_to":"43434"} +{"$label":"DIRECTED","_key":"71756","_from":"43435","_to":"43434"} +{"$label":"DIRECTED","_key":"71759","_from":"43438","_to":"43437"} +{"$label":"ACTS_IN","name":"Mila","type":"Role","_key":"71763","_from":"43441","_to":"43439"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"71761","_from":"43440","_to":"43439"} +{"$label":"DIRECTED","_key":"71770","_from":"43443","_to":"43442"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"71781","_from":"43447","_to":"43444"} +{"$label":"ACTS_IN","name":"Trivedi","type":"Role","_key":"71780","_from":"43446","_to":"43444"} +{"$label":"DIRECTED","_key":"71776","_from":"43445","_to":"43444"} +{"$label":"ACTS_IN","name":"Withers","type":"Role","_key":"71793","_from":"43453","_to":"43448"} +{"$label":"ACTS_IN","name":"Frau Dollmann","type":"Role","_key":"71790","_from":"43452","_to":"43448"} +{"$label":"ACTS_IN","name":"Boehme","type":"Role","_key":"71789","_from":"43451","_to":"43448"} +{"$label":"ACTS_IN","name":"Von Br\u00fcning","type":"Role","_key":"71788","_from":"43450","_to":"43448"} +{"$label":"DIRECTED","_key":"71783","_from":"43449","_to":"43448"} +{"$label":"DIRECTED","_key":"115093","_from":"43449","_to":"67779"} +{"$label":"DIRECTED","_key":"91985","_from":"43449","_to":"54263"} +{"$label":"ACTS_IN","name":"First Officer of Ehrenfels (as Jurgen Anderson)","type":"Role","_key":"120805","_from":"43450","_to":"70946"} +{"$label":"ACTS_IN","name":"Sgt. Bauer","type":"Role","_key":"111952","_from":"43451","_to":"66083"} +{"$label":"ACTS_IN","name":"DeeDee","type":"Role","_key":"71799","_from":"43457","_to":"43454"} +{"$label":"ACTS_IN","name":"Garreth","type":"Role","_key":"71798","_from":"43456","_to":"43454"} +{"$label":"ACTS_IN","name":"Jackie Stevens","type":"Role","_key":"71797","_from":"43455","_to":"43454"} +{"$label":"ACTS_IN","name":"Horst","type":"Role","_key":"71809","_from":"43460","_to":"43458"} +{"$label":"ACTS_IN","name":"Hera","type":"Role","_key":"71807","_from":"43459","_to":"43458"} +{"$label":"ACTS_IN","name":"Inga Bergmann","type":"Role","_key":"114945","_from":"43459","_to":"67699"} +{"$label":"DIRECTED","_key":"71818","_from":"43464","_to":"43461"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"71817","_from":"43463","_to":"43461"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"71812","_from":"43462","_to":"43461"} +{"$label":"ACTS_IN","name":"Mui","type":"Role","_key":"71823","_from":"43468","_to":"43465"} +{"$label":"ACTS_IN","name":"Hung","type":"Role","_key":"71822","_from":"43467","_to":"43465"} +{"$label":"ACTS_IN","name":"Fung","type":"Role","_key":"71821","_from":"43466","_to":"43465"} +{"$label":"ACTS_IN","name":"Assistant Master","type":"Role","_key":"94049","_from":"43466","_to":"55377"} +{"$label":"ACTS_IN","name":"Pei Rong","type":"Role","_key":"114026","_from":"43468","_to":"67150"} +{"$label":"ACTS_IN","name":"Sun Shangxiang","type":"Role","_key":"104227","_from":"43468","_to":"61317"} +{"$label":"ACTS_IN","name":"Ai Quan","type":"Role","_key":"103305","_from":"43468","_to":"60775"} +{"$label":"ACTS_IN","name":"Wen Zhu","type":"Role","_key":"101811","_from":"43468","_to":"59923"} +{"$label":"ACTS_IN","name":"Sun Shangxiang","type":"Role","_key":"89228","_from":"43468","_to":"52831"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71837","_from":"43473","_to":"43469"} +{"$label":"ACTS_IN","name":"Vicky Poolin","type":"Role","_key":"71834","_from":"43472","_to":"43469"} +{"$label":"ACTS_IN","name":"Joyce Winters","type":"Role","_key":"71831","_from":"43471","_to":"43469"} +{"$label":"ACTS_IN","name":"Len Winters","type":"Role","_key":"71830","_from":"43470","_to":"43469"} +{"$label":"ACTS_IN","name":"C. D. Howe","type":"Role","_key":"120816","_from":"43470","_to":"70947"} +{"$label":"ACTS_IN","name":"Mr. Wheeler","type":"Role","_key":"107208","_from":"43470","_to":"63230"} +{"$label":"ACTS_IN","name":"Eldridge Harper","type":"Role","_key":"71847","_from":"43478","_to":"43474"} +{"$label":"ACTS_IN","name":"Carrie Fredericks","type":"Role","_key":"71846","_from":"43477","_to":"43474"} +{"$label":"ACTS_IN","name":"Mr. Dudley","type":"Role","_key":"71845","_from":"43476","_to":"43474"} +{"$label":"ACTS_IN","name":"Mrs. Sanderson","type":"Role","_key":"71842","_from":"43475","_to":"43474"} +{"$label":"DIRECTED","_key":"71860","_from":"43485","_to":"43479"} +{"$label":"ACTS_IN","name":"Janet Pawle","type":"Role","_key":"71856","_from":"43484","_to":"43479"} +{"$label":"ACTS_IN","name":"Mrs. Harrington","type":"Role","_key":"71855","_from":"43483","_to":"43479"} +{"$label":"ACTS_IN","name":"Harrington","type":"Role","_key":"71854","_from":"43482","_to":"43479"} +{"$label":"ACTS_IN","name":"David Zellaby","type":"Role","_key":"71851","_from":"43481","_to":"43479"} +{"$label":"ACTS_IN","name":"Anthea Zellaby","type":"Role","_key":"71850","_from":"43480","_to":"43479"} +{"$label":"ACTS_IN","name":"Helen Kent","type":"Role","_key":"111131","_from":"43480","_to":"65637"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"108953","_from":"43481","_to":"64386"} +{"$label":"ACTS_IN","name":"Mrs. Tranter","type":"Role","_key":"90124","_from":"43484","_to":"53294"} +{"$label":"ACTS_IN","name":"Sunny","type":"Role","_key":"71867","_from":"43489","_to":"43486"} +{"$label":"ACTS_IN","name":"Sunny","type":"Role","_key":"71866","_from":"43488","_to":"43486"} +{"$label":"ACTS_IN","name":"Violet Baudelaire","type":"Role","_key":"71865","_from":"43487","_to":"43486"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"99294","_from":"43487","_to":"58511"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71903","_from":"43506","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71902","_from":"43505","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71901","_from":"43504","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71900","_from":"43503","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71899","_from":"43502","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71898","_from":"43501","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71897","_from":"43500","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71896","_from":"43499","_to":"43491"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71895","_from":"43498","_to":"43491"} +{"$label":"ACTS_IN","name":"Birgit Henning","type":"Role","_key":"71891","_from":"43497","_to":"43491"} +{"$label":"ACTS_IN","name":"Aenne Bubach","type":"Role","_key":"71888","_from":"43496","_to":"43491"} +{"$label":"ACTS_IN","name":"Britta Sandfu\u00df","type":"Role","_key":"71887","_from":"43495","_to":"43491"} +{"$label":"ACTS_IN","name":"Sabine Bender","type":"Role","_key":"71884","_from":"43494","_to":"43491"} +{"$label":"ACTS_IN","name":"Silvia Bender","type":"Role","_key":"71883","_from":"43493","_to":"43491"} +{"$label":"ACTS_IN","name":"Peter Koch","type":"Role","_key":"71879","_from":"43492","_to":"43491"} +{"$label":"ACTS_IN","name":"\u00c5ke St\u00e5lhandske","type":"Role","_key":"113374","_from":"43502","_to":"66785"} +{"$label":"ACTS_IN","name":"Linda's Father","type":"Role","_key":"71923","_from":"43515","_to":"43508"} +{"$label":"ACTS_IN","name":"Stan's Girl","type":"Role","_key":"71922","_from":"43514","_to":"43508"} +{"$label":"ACTS_IN","name":"Bridesmaid","type":"Role","_key":"71921","_from":"43513","_to":"43508"} +{"$label":"ACTS_IN","name":"Axel's Girl","type":"Role","_key":"71920","_from":"43512","_to":"43508"} +{"$label":"ACTS_IN","name":"Julien","type":"Role","_key":"71919","_from":"43511","_to":"43508"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"71918","_from":"43510","_to":"43508"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"71916","_from":"43509","_to":"43508"} +{"$label":"ACTS_IN","name":"Dolores Montelli","type":"Role","_key":"108233","_from":"43510","_to":"63963"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"71929","_from":"43520","_to":"43516"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"71928","_from":"43519","_to":"43516"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"71927","_from":"43518","_to":"43516"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"71926","_from":"43517","_to":"43516"} +{"$label":"DIRECTED","_key":"71947","_from":"43525","_to":"43522"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71944","_from":"43524","_to":"43522"} +{"$label":"ACTS_IN","name":"Milan","type":"Role","_key":"71941","_from":"43523","_to":"43522"} +{"$label":"ACTS_IN","name":"Teresa Chang","type":"Role","_key":"71950","_from":"43527","_to":"43526"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71964","_from":"43533","_to":"43528"} +{"$label":"ACTS_IN","name":"Fabr\u00e8gue","type":"Role","_key":"71962","_from":"43532","_to":"43528"} +{"$label":"ACTS_IN","name":"Durand","type":"Role","_key":"71961","_from":"43531","_to":"43528"} +{"$label":"ACTS_IN","name":"Emmanuelle","type":"Role","_key":"71959","_from":"43530","_to":"43528"} +{"$label":"DIRECTED","_key":"71954","_from":"43529","_to":"43528"} +{"$label":"ACTS_IN","name":"Marie-Antoinette","type":"Role","_key":"71977","_from":"43536","_to":"43534"} +{"$label":"ACTS_IN","name":"Lorenza","type":"Role","_key":"71973","_from":"43535","_to":"43534"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71991","_from":"43539","_to":"43537"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"71989","_from":"43538","_to":"43537"} +{"$label":"ACTS_IN","name":"Dr. Sanderson","type":"Role","_key":"72001","_from":"43542","_to":"43540"} +{"$label":"ACTS_IN","name":"Miss Kelly","type":"Role","_key":"72000","_from":"43541","_to":"43540"} +{"$label":"ACTS_IN","name":"Sheriff Matt Warren","type":"Role","_key":"120172","_from":"43542","_to":"70580"} +{"$label":"ACTS_IN","name":"Navigator","type":"Role","_key":"105996","_from":"43542","_to":"62406"} +{"$label":"DIRECTED","_key":"72008","_from":"43544","_to":"43543"} +{"$label":"DIRECTED","_key":"95130","_from":"43544","_to":"55976"} +{"$label":"ACTS_IN","name":"Feofar Khan","type":"Role","_key":"72015","_from":"43548","_to":"43545"} +{"$label":"ACTS_IN","name":"Ogareff","type":"Role","_key":"72012","_from":"43547","_to":"43545"} +{"$label":"DIRECTED","_key":"72009","_from":"43546","_to":"43545"} +{"$label":"DIRECTED","_key":"91807","_from":"43546","_to":"54153"} +{"$label":"ACTS_IN","name":"Sarah Johnson","type":"Role","_key":"72020","_from":"43550","_to":"43549"} +{"$label":"ACTS_IN","name":"Cecile","type":"Role","_key":"72027","_from":"43552","_to":"43551"} +{"$label":"DIRECTED","_key":"72033","_from":"43559","_to":"43554"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"72032","_from":"43558","_to":"43554"} +{"$label":"ACTS_IN","name":"Crane","type":"Role","_key":"72031","_from":"43557","_to":"43554"} +{"$label":"ACTS_IN","name":"Cori Edwards","type":"Role","_key":"72030","_from":"43556","_to":"43554"} +{"$label":"ACTS_IN","name":"Sean Barker","type":"Role","_key":"72029","_from":"43555","_to":"43554"} +{"$label":"ACTS_IN","name":"Ambroise Dupr\u00e9 dit Isidore Agopian","type":"Role","_key":"72037","_from":"43561","_to":"43560"} +{"$label":"ACTS_IN","name":"Billy Cole","type":"Role","_key":"72044","_from":"43565","_to":"43562"} +{"$label":"ACTS_IN","name":"'Evil' Ed Thompson","type":"Role","_key":"72043","_from":"43564","_to":"43562"} +{"$label":"ACTS_IN","name":"Amy Peterson","type":"Role","_key":"72041","_from":"43563","_to":"43562"} +{"$label":"ACTS_IN","name":"Aggie","type":"Role","_key":"96055","_from":"43564","_to":"56457"} +{"$label":"DIRECTED","_key":"72050","_from":"43570","_to":"43566"} +{"$label":"ACTS_IN","name":"Milky","type":"Role","_key":"72049","_from":"43569","_to":"43566"} +{"$label":"ACTS_IN","name":"Cynth","type":"Role","_key":"72048","_from":"43568","_to":"43566"} +{"$label":"ACTS_IN","name":"Shaun","type":"Role","_key":"72046","_from":"43567","_to":"43566"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"94922","_from":"43567","_to":"55885"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"91849","_from":"43568","_to":"54185"} +{"$label":"DIRECTED","_key":"99514","_from":"43570","_to":"58667"} +{"$label":"DIRECTED","_key":"91845","_from":"43570","_to":"54185"} +{"$label":"ACTS_IN","name":"Werther","type":"Role","_key":"72056","_from":"43572","_to":"43571"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"72070","_from":"43574","_to":"43573"} +{"$label":"DIRECTED","_key":"72078","_from":"43577","_to":"43576"} +{"$label":"DIRECTED","_key":"72101","_from":"43587","_to":"43580"} +{"$label":"ACTS_IN","name":"Mrs. Khanna","type":"Role","_key":"72100","_from":"43586","_to":"43580"} +{"$label":"ACTS_IN","name":"Mrs. Dhillon","type":"Role","_key":"72099","_from":"43585","_to":"43580"} +{"$label":"ACTS_IN","name":"Dadji","type":"Role","_key":"72097","_from":"43584","_to":"43580"} +{"$label":"ACTS_IN","name":"Anshuman","type":"Role","_key":"72096","_from":"43583","_to":"43580"} +{"$label":"ACTS_IN","name":"Roop Kaur Dhillon","type":"Role","_key":"72095","_from":"43582","_to":"43580"} +{"$label":"ACTS_IN","name":"Aditya Kashyap","type":"Role","_key":"72093","_from":"43581","_to":"43580"} +{"$label":"ACTS_IN","name":"Jeetu","type":"Role","_key":"120710","_from":"43581","_to":"70898"} +{"$label":"ACTS_IN","name":"Raj Malhotra","type":"Role","_key":"104522","_from":"43581","_to":"61483"} +{"$label":"DIRECTED","_key":"120791","_from":"43587","_to":"70943"} +{"$label":"ACTS_IN","name":"Karl V","type":"Role","_key":"72114","_from":"43592","_to":"43589"} +{"$label":"ACTS_IN","name":"Lamme","type":"Role","_key":"72113","_from":"43591","_to":"43589"} +{"$label":"ACTS_IN","name":"Klaas","type":"Role","_key":"72111","_from":"43590","_to":"43589"} +{"$label":"DIRECTED","_key":"72119","_from":"43596","_to":"43593"} +{"$label":"ACTS_IN","name":"Theaterdirektor","type":"Role","_key":"72118","_from":"43595","_to":"43593"} +{"$label":"ACTS_IN","name":"Filatowa","type":"Role","_key":"72117","_from":"43594","_to":"43593"} +{"$label":"DIRECTED","_key":"72127","_from":"43601","_to":"43597"} +{"$label":"ACTS_IN","name":"J.D. Reding","type":"Role","_key":"72126","_from":"43600","_to":"43597"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"72124","_from":"43599","_to":"43597"} +{"$label":"ACTS_IN","name":"Nathan Murphy","type":"Role","_key":"72122","_from":"43598","_to":"43597"} +{"$label":"ACTS_IN","name":"Alex Mason, Jr. (as Robert Gorman)","type":"Role","_key":"119904","_from":"43599","_to":"70418"} +{"$label":"ACTS_IN","name":"Walter Crandell","type":"Role","_key":"104320","_from":"43599","_to":"61374"} +{"$label":"DIRECTED","_key":"94014","_from":"43601","_to":"55364"} +{"$label":"ACTS_IN","name":"Romanello","type":"Role","_key":"72135","_from":"43604","_to":"43603"} +{"$label":"ACTS_IN","name":"Hilly","type":"Role","_key":"72144","_from":"43607","_to":"43605"} +{"$label":"ACTS_IN","name":"Wyatt Donnelly","type":"Role","_key":"72141","_from":"43606","_to":"43605"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102656","_from":"43607","_to":"60399"} +{"$label":"ACTS_IN","name":"Patricia Hickock","type":"Role","_key":"89906","_from":"43607","_to":"53202"} +{"$label":"DIRECTED","_key":"72151","_from":"43610","_to":"43608"} +{"$label":"ACTS_IN","name":"Helene Delambre","type":"Role","_key":"72148","_from":"43609","_to":"43608"} +{"$label":"ACTS_IN","name":"Billy Ray","type":"Role","_key":"72155","_from":"43612","_to":"43611"} +{"$label":"ACTS_IN","name":"Jonathan Bellah","type":"Role","_key":"101632","_from":"43612","_to":"59820"} +{"$label":"ACTS_IN","name":"Sax","type":"Role","_key":"72162","_from":"43615","_to":"43613"} +{"$label":"DIRECTED","_key":"72157","_from":"43614","_to":"43613"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"104264","_from":"43615","_to":"61344"} +{"$label":"ACTS_IN","name":"Charles Carvery","type":"Role","_key":"102787","_from":"43615","_to":"60464"} +{"$label":"ACTS_IN","name":"James Jr","type":"Role","_key":"93445","_from":"43615","_to":"55021"} +{"$label":"DIRECTED","_key":"72168","_from":"43621","_to":"43616"} +{"$label":"DIRECTED","_key":"72167","_from":"43620","_to":"43616"} +{"$label":"ACTS_IN","name":"Memati Bas","type":"Role","_key":"72166","_from":"43619","_to":"43616"} +{"$label":"ACTS_IN","name":"Abdurrahman Halis Karuki","type":"Role","_key":"72165","_from":"43618","_to":"43616"} +{"$label":"ACTS_IN","name":"Polat Alemdar","type":"Role","_key":"72163","_from":"43617","_to":"43616"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"72171","_from":"43623","_to":"43622"} +{"$label":"ACTS_IN","name":"Deputy Cotton","type":"Role","_key":"72194","_from":"43627","_to":"43625"} +{"$label":"ACTS_IN","name":"Maddie, Welcoming Committee","type":"Role","_key":"72192","_from":"43626","_to":"43625"} +{"$label":"DIRECTED","_key":"72199","_from":"43632","_to":"43628"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"72198","_from":"43631","_to":"43628"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"72197","_from":"43630","_to":"43628"} +{"$label":"ACTS_IN","name":"Robert Schmadtke","type":"Role","_key":"72195","_from":"43629","_to":"43628"} +{"$label":"DIRECTED","_key":"105716","_from":"43632","_to":"62234"} +{"$label":"ACTS_IN","name":"Malcolm","type":"Role","_key":"72221","_from":"43641","_to":"43634"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"72219","_from":"43640","_to":"43634"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"72218","_from":"43639","_to":"43634"} +{"$label":"ACTS_IN","name":"Coach Bobby Finstock","type":"Role","_key":"72215","_from":"43638","_to":"43634"} +{"$label":"ACTS_IN","name":"Mick McAllister","type":"Role","_key":"72214","_from":"43637","_to":"43634"} +{"$label":"ACTS_IN","name":"Pamela Wells","type":"Role","_key":"72212","_from":"43636","_to":"43634"} +{"$label":"ACTS_IN","name":"Lisa 'Boof' Marconi","type":"Role","_key":"72209","_from":"43635","_to":"43634"} +{"$label":"DIRECTED","_key":"72222","_from":"43643","_to":"43642"} +{"$label":"ACTS_IN","name":"Deedee Dove","type":"Role","_key":"72231","_from":"43645","_to":"43644"} +{"$label":"ACTS_IN","name":"Karine Bassett","type":"Role","_key":"121611","_from":"43645","_to":"71446"} +{"$label":"DIRECTED","_key":"72237","_from":"43648","_to":"43646"} +{"$label":"ACTS_IN","name":"Hanover Fiste","type":"Role","_key":"72232","_from":"43647","_to":"43646"} +{"$label":"ACTS_IN","name":"Squidward (voice)","type":"Role","_key":"72277","_from":"43647","_to":"43663"} +{"$label":"ACTS_IN","name":"Trinity's girl","type":"Role","_key":"72246","_from":"43651","_to":"43650"} +{"$label":"ACTS_IN","name":"Tampopo","type":"Role","_key":"72249","_from":"43654","_to":"43652"} +{"$label":"ACTS_IN","name":"Goro","type":"Role","_key":"72248","_from":"43653","_to":"43652"} +{"$label":"ACTS_IN","name":"Ikuei Sasaki","type":"Role","_key":"110109","_from":"43653","_to":"65066"} +{"$label":"ACTS_IN","name":"Nobukado Takeda","type":"Role","_key":"72954","_from":"43653","_to":"43918"} +{"$label":"DIRECTED","_key":"72262","_from":"43658","_to":"43656"} +{"$label":"ACTS_IN","name":"Old Philippa","type":"Role","_key":"72259","_from":"43657","_to":"43656"} +{"$label":"ACTS_IN","name":"King Bruno the Questionable","type":"Role","_key":"72267","_from":"43660","_to":"43659"} +{"$label":"ACTS_IN","name":"Lucas Hume","type":"Role","_key":"72271","_from":"43662","_to":"43661"} +{"$label":"ACTS_IN","name":"Sandy (voice)","type":"Role","_key":"72279","_from":"43665","_to":"43663"} +{"$label":"DIRECTED","_key":"72274","_from":"43664","_to":"43663"} +{"$label":"DIRECTED","_key":"72288","_from":"43668","_to":"43666"} +{"$label":"ACTS_IN","name":"Captain Holly","type":"Role","_key":"72287","_from":"43667","_to":"43666"} +{"$label":"ACTS_IN","name":"Hitomi Tokunaga","type":"Role","_key":"72293","_from":"43671","_to":"43669"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"72292","_from":"43670","_to":"43669"} +{"$label":"DIRECTED","_key":"72299","_from":"43674","_to":"43672"} +{"$label":"ACTS_IN","name":"Hubert Hawkins","type":"Role","_key":"72294","_from":"43673","_to":"43672"} +{"$label":"ACTS_IN","name":"Professor Hobart Frisbee","type":"Role","_key":"114112","_from":"43673","_to":"67205"} +{"$label":"ACTS_IN","name":"Ernest Loring Nichols","type":"Role","_key":"113601","_from":"43673","_to":"66951"} +{"$label":"ACTS_IN","name":"Hans Christian Andersen","type":"Role","_key":"109649","_from":"43673","_to":"64763"} +{"$label":"ACTS_IN","name":"Phil Davis","type":"Role","_key":"94124","_from":"43673","_to":"55432"} +{"$label":"ACTS_IN","name":"Susi","type":"Role","_key":"72304","_from":"43676","_to":"43675"} +{"$label":"ACTS_IN","name":"Liu Tsai","type":"Role","_key":"72307","_from":"43678","_to":"43677"} +{"$label":"ACTS_IN","name":"Hashimoto","type":"Role","_key":"117571","_from":"43678","_to":"69124"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"72323","_from":"43682","_to":"43680"} +{"$label":"ACTS_IN","name":"Gen. Wadafi","type":"Role","_key":"72321","_from":"43681","_to":"43680"} +{"$label":"ACTS_IN","name":"Inspector Trout","type":"Role","_key":"114499","_from":"43681","_to":"67443"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"72331","_from":"43686","_to":"43683"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"72330","_from":"43685","_to":"43683"} +{"$label":"ACTS_IN","name":"'Bimbo'","type":"Role","_key":"72329","_from":"43684","_to":"43683"} +{"$label":"ACTS_IN","name":"Eileen McMahon","type":"Role","_key":"105759","_from":"43685","_to":"62258"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"72337","_from":"43688","_to":"43687"} +{"$label":"ACTS_IN","name":"Annie Banks","type":"Role","_key":"72342","_from":"43690","_to":"43689"} +{"$label":"ACTS_IN","name":"Annie Banks-MacKenzie","type":"Role","_key":"72440","_from":"43690","_to":"43722"} +{"$label":"ACTS_IN","name":"Yong","type":"Role","_key":"72348","_from":"43693","_to":"43691"} +{"$label":"DIRECTED","_key":"72345","_from":"43692","_to":"43691"} +{"$label":"ACTS_IN","name":"Pregnant candidate","type":"Role","_key":"115463","_from":"43693","_to":"67979"} +{"$label":"ACTS_IN","name":"narrator (voice)","type":"Role","_key":"72349","_from":"43695","_to":"43694"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"72389","_from":"43710","_to":"43699"} +{"$label":"ACTS_IN","name":"Night Club Bartender","type":"Role","_key":"72388","_from":"43709","_to":"43699"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"72387","_from":"43708","_to":"43699"} +{"$label":"ACTS_IN","name":"Hildenburg","type":"Role","_key":"72386","_from":"43707","_to":"43699"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"72385","_from":"43706","_to":"43699"} +{"$label":"ACTS_IN","name":"DJ","type":"Role","_key":"72384","_from":"43705","_to":"43699"} +{"$label":"ACTS_IN","name":"Madame Mambuza","type":"Role","_key":"72381","_from":"43704","_to":"43699"} +{"$label":"ACTS_IN","name":"Sissy","type":"Role","_key":"72379","_from":"43703","_to":"43699"} +{"$label":"ACTS_IN","name":"Venetia","type":"Role","_key":"72378","_from":"43702","_to":"43699"} +{"$label":"ACTS_IN","name":"Mrs. Thomas","type":"Role","_key":"72376","_from":"43701","_to":"43699"} +{"$label":"ACTS_IN","name":"Keecia","type":"Role","_key":"72375","_from":"43700","_to":"43699"} +{"$label":"DIRECTED","_key":"72426","_from":"43718","_to":"43717"} +{"$label":"DIRECTED","_key":"72436","_from":"43721","_to":"43720"} +{"$label":"DIRECTED","_key":"102406","_from":"43721","_to":"60259"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"72451","_from":"43725","_to":"43724"} +{"$label":"DIRECTED","_key":"72459","_from":"43728","_to":"43727"} +{"$label":"ACTS_IN","name":"Mina Holmwood","type":"Role","_key":"72467","_from":"43730","_to":"43729"} +{"$label":"ACTS_IN","name":"Hansen","type":"Role","_key":"72471","_from":"43732","_to":"43731"} +{"$label":"DIRECTED","_key":"72489","_from":"43736","_to":"43735"} +{"$label":"DIRECTED","_key":"72509","_from":"43736","_to":"43741"} +{"$label":"ACTS_IN","name":"Kathi","type":"Role","_key":"72507","_from":"43742","_to":"43741"} +{"$label":"ACTS_IN","name":"Nui","type":"Role","_key":"72512","_from":"43744","_to":"43743"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"72524","_from":"43747","_to":"43746"} +{"$label":"ACTS_IN","name":"Fred Gailey","type":"Role","_key":"72528","_from":"43749","_to":"43748"} +{"$label":"ACTS_IN","name":"Xur","type":"Role","_key":"72536","_from":"43752","_to":"43750"} +{"$label":"ACTS_IN","name":"Jane Rogan","type":"Role","_key":"72535","_from":"43751","_to":"43750"} +{"$label":"ACTS_IN","name":"taglong","type":"Role","_key":"72552","_from":"43758","_to":"43753"} +{"$label":"ACTS_IN","name":"Skippy","type":"Role","_key":"72551","_from":"43757","_to":"43753"} +{"$label":"ACTS_IN","name":"Maid Marian","type":"Role","_key":"72547","_from":"43756","_to":"43753"} +{"$label":"ACTS_IN","name":"trigger","type":"Role","_key":"72545","_from":"43755","_to":"43753"} +{"$label":"ACTS_IN","name":"Robin Hood (voice)","type":"Role","_key":"72540","_from":"43754","_to":"43753"} +{"$label":"ACTS_IN","name":"\"Chew Fat Lip\"","type":"Role","_key":"72579","_from":"43766","_to":"43763"} +{"$label":"ACTS_IN","name":"\"Master Tang\"","type":"Role","_key":"72578","_from":"43765","_to":"43763"} +{"$label":"ACTS_IN","name":"\"The Chosen One\"","type":"Role","_key":"72577","_from":"43764","_to":"43763"} +{"$label":"ACTS_IN","name":"The Unicorn","type":"Role","_key":"119503","_from":"43765","_to":"70198"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117351","_from":"43765","_to":"69019"} +{"$label":"ACTS_IN","name":"Chan Chi-Pei","type":"Role","_key":"117310","_from":"43765","_to":"68995"} +{"$label":"DIRECTED","_key":"72603","_from":"43771","_to":"43770"} +{"$label":"DIRECTED","_key":"72626","_from":"43775","_to":"43773"} +{"$label":"ACTS_IN","name":"Charlie Gant","type":"Role","_key":"72620","_from":"43774","_to":"43773"} +{"$label":"DIRECTED","_key":"121589","_from":"43775","_to":"71435"} +{"$label":"DIRECTED","_key":"117131","_from":"43775","_to":"68915"} +{"$label":"DIRECTED","_key":"105494","_from":"43775","_to":"62078"} +{"$label":"DIRECTED","_key":"100992","_from":"43775","_to":"59522"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"72650","_from":"43782","_to":"43777"} +{"$label":"ACTS_IN","name":"Himself (as The Honorable Edward I. Koch)","type":"Role","_key":"72648","_from":"43781","_to":"43777"} +{"$label":"ACTS_IN","name":"Kermit's doctor","type":"Role","_key":"72642","_from":"43780","_to":"43777"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"72637","_from":"43779","_to":"43777"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"72635","_from":"43778","_to":"43777"} +{"$label":"ACTS_IN","name":"Ben Loman","type":"Role","_key":"90620","_from":"43779","_to":"53515"} +{"$label":"ACTS_IN","name":"Chicklets","type":"Role","_key":"72654","_from":"43787","_to":"43783"} +{"$label":"ACTS_IN","name":"Pobrecita","type":"Role","_key":"72653","_from":"43786","_to":"43783"} +{"$label":"ACTS_IN","name":"Erzieher","type":"Role","_key":"72652","_from":"43785","_to":"43783"} +{"$label":"ACTS_IN","name":"Hombr\u00e9","type":"Role","_key":"72651","_from":"43784","_to":"43783"} +{"$label":"ACTS_IN","name":"Callie Travers","type":"Role","_key":"72658","_from":"43789","_to":"43788"} +{"$label":"ACTS_IN","name":"Lani Kaimana","type":"Role","_key":"117970","_from":"43789","_to":"69342"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"72664","_from":"43793","_to":"43790"} +{"$label":"ACTS_IN","name":"Natalija","type":"Role","_key":"72663","_from":"43792","_to":"43790"} +{"$label":"ACTS_IN","name":"Crni","type":"Role","_key":"72662","_from":"43791","_to":"43790"} +{"$label":"ACTS_IN","name":"Volker","type":"Role","_key":"72669","_from":"43796","_to":"43794"} +{"$label":"ACTS_IN","name":"Jenny Ecker","type":"Role","_key":"72668","_from":"43795","_to":"43794"} +{"$label":"ACTS_IN","name":"John Watson","type":"Role","_key":"72672","_from":"43798","_to":"43797"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"72679","_from":"43801","_to":"43799"} +{"$label":"ACTS_IN","name":"Rosaleen","type":"Role","_key":"72676","_from":"43800","_to":"43799"} +{"$label":"ACTS_IN","name":"Pat Hingle","type":"Role","_key":"72689","_from":"43806","_to":"43802"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"72688","_from":"43805","_to":"43802"} +{"$label":"ACTS_IN","name":"Olga","type":"Role","_key":"72687","_from":"43804","_to":"43802"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"72686","_from":"43803","_to":"43802"} +{"$label":"ACTS_IN","name":"Lady Anna Warwick","type":"Role","_key":"105455","_from":"43805","_to":"62042"} +{"$label":"ACTS_IN","name":"Lothar Sticker","type":"Role","_key":"72697","_from":"43809","_to":"43807"} +{"$label":"ACTS_IN","name":"Orfeo de Altamar","type":"Role","_key":"72696","_from":"43808","_to":"43807"} +{"$label":"DIRECTED","_key":"91679","_from":"43808","_to":"54072"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"91674","_from":"43808","_to":"54072"} +{"$label":"ACTS_IN","name":"Marybeth","type":"Role","_key":"72702","_from":"43812","_to":"43810"} +{"$label":"DIRECTED","_key":"72700","_from":"43811","_to":"43810"} +{"$label":"ACTS_IN","name":"Toothless McHomeless","type":"Role","_key":"110157","_from":"43811","_to":"65091"} +{"$label":"DIRECTED","_key":"72714","_from":"43817","_to":"43814"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"72712","_from":"43816","_to":"43814"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"72710","_from":"43815","_to":"43814"} +{"$label":"ACTS_IN","name":"The BFG","type":"Role","_key":"104391","_from":"43815","_to":"61411"} +{"$label":"ACTS_IN","name":"Rincewind","type":"Role","_key":"95113","_from":"43815","_to":"55975"} +{"$label":"DIRECTED","_key":"95125","_from":"43817","_to":"55975"} +{"$label":"ACTS_IN","name":"Nicoletta von Niebuhr","type":"Role","_key":"72717","_from":"43819","_to":"43818"} +{"$label":"DIRECTED","_key":"72739","_from":"43824","_to":"43823"} +{"$label":"ACTS_IN","name":"Gen. LeClaire","type":"Role","_key":"72744","_from":"43827","_to":"43825"} +{"$label":"ACTS_IN","name":"Col. Beltran","type":"Role","_key":"72743","_from":"43826","_to":"43825"} +{"$label":"DIRECTED","_key":"72746","_from":"43829","_to":"43828"} +{"$label":"ACTS_IN","name":"Dragonfly","type":"Role","_key":"72752","_from":"43832","_to":"43830"} +{"$label":"DIRECTED","_key":"72751","_from":"43831","_to":"43830"} +{"$label":"ACTS_IN","name":"Kevin Brewer","type":"Role","_key":"97999","_from":"43832","_to":"57711"} +{"$label":"ACTS_IN","name":"Butch Hare (voice)","type":"Role","_key":"92040","_from":"43832","_to":"54309"} +{"$label":"ACTS_IN","name":"Rex Guilty","type":"Role","_key":"72762","_from":"43837","_to":"43833"} +{"$label":"ACTS_IN","name":"Dietlind Abate-Fetel","type":"Role","_key":"72761","_from":"43836","_to":"43833"} +{"$label":"ACTS_IN","name":"Captain Cosmotic","type":"Role","_key":"72759","_from":"43835","_to":"43833"} +{"$label":"DIRECTED","_key":"72758","_from":"43834","_to":"43833"} +{"$label":"ACTS_IN","name":"Paul K\u00f6ster","type":"Role","_key":"72767","_from":"43839","_to":"43838"} +{"$label":"ACTS_IN","name":"Anette","type":"Role","_key":"72771","_from":"43841","_to":"43840"} +{"$label":"ACTS_IN","name":"Matte","type":"Role","_key":"72782","_from":"43852","_to":"43844"} +{"$label":"ACTS_IN","name":"Rosita","type":"Role","_key":"72781","_from":"43851","_to":"43844"} +{"$label":"ACTS_IN","name":"Pernilla","type":"Role","_key":"72780","_from":"43850","_to":"43844"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"72779","_from":"43849","_to":"43844"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"72778","_from":"43848","_to":"43844"} +{"$label":"ACTS_IN","name":"Anders","type":"Role","_key":"72777","_from":"43847","_to":"43844"} +{"$label":"DIRECTED","_key":"72776","_from":"43846","_to":"43844"} +{"$label":"DIRECTED","_key":"72775","_from":"43845","_to":"43844"} +{"$label":"ACTS_IN","name":"Biosyn","type":"Role","_key":"72789","_from":"43859","_to":"43853"} +{"$label":"ACTS_IN","name":"Rachael","type":"Role","_key":"72788","_from":"43858","_to":"43853"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"72787","_from":"43857","_to":"43853"} +{"$label":"ACTS_IN","name":"Lead Biosyn","type":"Role","_key":"72786","_from":"43856","_to":"43853"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"72785","_from":"43855","_to":"43853"} +{"$label":"DIRECTED","_key":"72784","_from":"43854","_to":"43853"} +{"$label":"DIRECTED","_key":"72790","_from":"43861","_to":"43860"} +{"$label":"ACTS_IN","name":"Bennie","type":"Role","_key":"72795","_from":"43863","_to":"43862"} +{"$label":"ACTS_IN","name":"Karl-Heinz","type":"Role","_key":"72802","_from":"43866","_to":"43865"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"72816","_from":"43869","_to":"43868"} +{"$label":"ACTS_IN","name":"Renalda Squiriniszu","type":"Role","_key":"72823","_from":"43872","_to":"43870"} +{"$label":"ACTS_IN","name":"Miss Purdah","type":"Role","_key":"72821","_from":"43871","_to":"43870"} +{"$label":"ACTS_IN","name":"Doris","type":"Role","_key":"92629","_from":"43871","_to":"54673"} +{"$label":"ACTS_IN","name":"Donatella (Woman on roller skates)","type":"Role","_key":"72845","_from":"43877","_to":"43875"} +{"$label":"ACTS_IN","name":"Woman on train","type":"Role","_key":"72844","_from":"43876","_to":"43875"} +{"$label":"ACTS_IN","name":"Xiri","type":"Role","_key":"72849","_from":"43881","_to":"43878"} +{"$label":"ACTS_IN","name":"Dr. Stephen Marshall","type":"Role","_key":"72848","_from":"43880","_to":"43878"} +{"$label":"ACTS_IN","name":"Dr. Ann Taylor","type":"Role","_key":"72847","_from":"43879","_to":"43878"} +{"$label":"DIRECTED","_key":"72856","_from":"43886","_to":"43882"} +{"$label":"ACTS_IN","name":"Clint","type":"Role","_key":"72855","_from":"43885","_to":"43882"} +{"$label":"ACTS_IN","name":"Ted","type":"Role","_key":"72854","_from":"43884","_to":"43882"} +{"$label":"ACTS_IN","name":"Woman Teacher","type":"Role","_key":"72853","_from":"43883","_to":"43882"} +{"$label":"ACTS_IN","name":"Gil Stewart","type":"Role","_key":"72861","_from":"43889","_to":"43887"} +{"$label":"DIRECTED","_key":"72857","_from":"43888","_to":"43887"} +{"$label":"DIRECTED","_key":"118874","_from":"43888","_to":"69866"} +{"$label":"ACTS_IN","name":"Zenobia","type":"Role","_key":"72867","_from":"43891","_to":"43890"} +{"$label":"ACTS_IN","name":"Quill","type":"Role","_key":"72873","_from":"43894","_to":"43892"} +{"$label":"ACTS_IN","name":"Elita","type":"Role","_key":"72871","_from":"43893","_to":"43892"} +{"$label":"ACTS_IN","name":"Willy Grogan","type":"Role","_key":"117096","_from":"43894","_to":"68902"} +{"$label":"ACTS_IN","name":"Chuck Wright","type":"Role","_key":"116806","_from":"43894","_to":"68770"} +{"$label":"ACTS_IN","name":"Co-Pilot","type":"Role","_key":"105994","_from":"43894","_to":"62406"} +{"$label":"ACTS_IN","name":"Jim Marshall","type":"Role","_key":"93951","_from":"43894","_to":"55322"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"91157","_from":"43894","_to":"53771"} +{"$label":"ACTS_IN","name":"Caleb","type":"Role","_key":"72878","_from":"43898","_to":"43895"} +{"$label":"ACTS_IN","name":"Swan","type":"Role","_key":"72877","_from":"43897","_to":"43895"} +{"$label":"ACTS_IN","name":"Bear Claw","type":"Role","_key":"72876","_from":"43896","_to":"43895"} +{"$label":"ACTS_IN","name":"Alma Svensson","type":"Role","_key":"72892","_from":"43902","_to":"43900"} +{"$label":"ACTS_IN","name":"Ida Svensson","type":"Role","_key":"72890","_from":"43901","_to":"43900"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"72900","_from":"43901","_to":"43904"} +{"$label":"ACTS_IN","name":"Ida","type":"Role","_key":"72895","_from":"43901","_to":"43903"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"72902","_from":"43902","_to":"43904"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"72897","_from":"43902","_to":"43903"} +{"$label":"ACTS_IN","name":"Col. John Lawrence","type":"Role","_key":"72905","_from":"43906","_to":"43905"} +{"$label":"ACTS_IN","name":"Costas","type":"Role","_key":"117089","_from":"43906","_to":"68900"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"72917","_from":"43909","_to":"43907"} +{"$label":"DIRECTED","_key":"72909","_from":"43908","_to":"43907"} +{"$label":"ACTS_IN","name":"Ron Nasty","type":"Role","_key":"108990","_from":"43909","_to":"64408"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"72938","_from":"43914","_to":"43910"} +{"$label":"ACTS_IN","name":"Pvt. Homer Lyle","type":"Role","_key":"72936","_from":"43913","_to":"43910"} +{"$label":"ACTS_IN","name":"CHP Officer","type":"Role","_key":"72930","_from":"43912","_to":"43910"} +{"$label":"ACTS_IN","name":"Jill, Lamborghini Babe","type":"Role","_key":"72927","_from":"43911","_to":"43910"} +{"$label":"ACTS_IN","name":"Gangster Amos Tucker","type":"Role","_key":"116994","_from":"43912","_to":"68858"} +{"$label":"ACTS_IN","name":"Dr. Tart","type":"Role","_key":"96209","_from":"43912","_to":"56552"} +{"$label":"ACTS_IN","name":"Skip Jones (voice)","type":"Role","_key":"94086","_from":"43912","_to":"55405"} +{"$label":"ACTS_IN","name":"Lugs Harvey","type":"Role","_key":"119414","_from":"43913","_to":"70159"} +{"$label":"ACTS_IN","name":"Deputy Fred","type":"Role","_key":"108891","_from":"43913","_to":"64354"} +{"$label":"ACTS_IN","name":"Mr. Renfield","type":"Role","_key":"118296","_from":"43914","_to":"69534"} +{"$label":"ACTS_IN","name":"Vera Thornton","type":"Role","_key":"72944","_from":"43916","_to":"43915"} +{"$label":"ACTS_IN","name":"Katsuyori Takeda","type":"Role","_key":"72955","_from":"43919","_to":"43918"} +{"$label":"ACTS_IN","name":"Capt. Matt Cooper","type":"Role","_key":"72965","_from":"43922","_to":"43921"} +{"$label":"ACTS_IN","name":"Michel","type":"Role","_key":"72973","_from":"43925","_to":"43923"} +{"$label":"ACTS_IN","name":"Chlo\u00e9","type":"Role","_key":"72970","_from":"43924","_to":"43923"} +{"$label":"ACTS_IN","name":"Ulysse","type":"Role","_key":"72982","_from":"43927","_to":"43926"} +{"$label":"ACTS_IN","name":"Loulou","type":"Role","_key":"72989","_from":"43929","_to":"43928"} +{"$label":"DIRECTED","_key":"72998","_from":"43933","_to":"43930"} +{"$label":"ACTS_IN","name":"Philo","type":"Role","_key":"72996","_from":"43932","_to":"43930"} +{"$label":"ACTS_IN","name":"George Newman","type":"Role","_key":"72990","_from":"43931","_to":"43930"} +{"$label":"ACTS_IN","name":"Chow Lok-Yun","type":"Role","_key":"73003","_from":"43936","_to":"43934"} +{"$label":"DIRECTED","_key":"72999","_from":"43935","_to":"43934"} +{"$label":"ACTS_IN","name":"Albert Kaussner","type":"Role","_key":"73009","_from":"43938","_to":"43937"} +{"$label":"DIRECTED","_key":"73010","_from":"43940","_to":"43939"} +{"$label":"ACTS_IN","name":"Des Grieux","type":"Role","_key":"73027","_from":"43950","_to":"43942"} +{"$label":"ACTS_IN","name":"Blanche","type":"Role","_key":"73026","_from":"43949","_to":"43942"} +{"$label":"ACTS_IN","name":"Babuschka","type":"Role","_key":"73025","_from":"43948","_to":"43942"} +{"$label":"ACTS_IN","name":"Gerneral","type":"Role","_key":"73024","_from":"43947","_to":"43942"} +{"$label":"ACTS_IN","name":"Alexej","type":"Role","_key":"73023","_from":"43946","_to":"43942"} +{"$label":"ACTS_IN","name":"Mr. Astley","type":"Role","_key":"73022","_from":"43945","_to":"43942"} +{"$label":"ACTS_IN","name":"Polina","type":"Role","_key":"73021","_from":"43944","_to":"43942"} +{"$label":"DIRECTED","_key":"73020","_from":"43943","_to":"43942"} +{"$label":"DIRECTED","_key":"73028","_from":"43943","_to":"43951"} +{"$label":"ACTS_IN","name":"Freund","type":"Role","_key":"73033","_from":"43956","_to":"43951"} +{"$label":"ACTS_IN","name":"Sohn","type":"Role","_key":"73032","_from":"43955","_to":"43951"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"73031","_from":"43954","_to":"43951"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"73030","_from":"43953","_to":"43951"} +{"$label":"DIRECTED","_key":"73029","_from":"43952","_to":"43951"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"73053","_from":"43962","_to":"43959"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"73049","_from":"43961","_to":"43959"} +{"$label":"DIRECTED","_key":"73044","_from":"43960","_to":"43959"} +{"$label":"ACTS_IN","name":"Molly Porter","type":"Role","_key":"111226","_from":"43961","_to":"65683"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"99141","_from":"43961","_to":"58416"} +{"$label":"ACTS_IN","name":"Junger Hercules (Stimme)","type":"Role","_key":"73065","_from":"43965","_to":"43964"} +{"$label":"ACTS_IN","name":"Mariolino Brusco","type":"Role","_key":"73078","_from":"43969","_to":"43967"} +{"$label":"ACTS_IN","name":"Gina Filotti","type":"Role","_key":"73077","_from":"43968","_to":"43967"} +{"$label":"ACTS_IN","name":"Moraldo Rubini","type":"Role","_key":"90183","_from":"43969","_to":"53321"} +{"$label":"ACTS_IN","name":"Walter Seznick","type":"Role","_key":"73095","_from":"43973","_to":"43971"} +{"$label":"ACTS_IN","name":"Dave Peterson","type":"Role","_key":"73087","_from":"43972","_to":"43971"} +{"$label":"ACTS_IN","name":"R.W. Hepworth","type":"Role","_key":"117135","_from":"43973","_to":"68916"} +{"$label":"ACTS_IN","name":"Richter Elihu Smails","type":"Role","_key":"73111","_from":"43977","_to":"43976"} +{"$label":"DIRECTED","_key":"73113","_from":"43979","_to":"43978"} +{"$label":"DIRECTED","_key":"100117","_from":"43979","_to":"59044"} +{"$label":"DIRECTED","_key":"73124","_from":"43982","_to":"43981"} +{"$label":"ACTS_IN","name":"Prinzessin Fatima","type":"Role","_key":"73134","_from":"43985","_to":"43983"} +{"$label":"ACTS_IN","name":"Sabine Sasse","type":"Role","_key":"73132","_from":"43984","_to":"43983"} +{"$label":"ACTS_IN","name":"Julie Ubriacco","type":"Role","_key":"73139","_from":"43988","_to":"43986"} +{"$label":"DIRECTED","_key":"73135","_from":"43987","_to":"43986"} +{"$label":"ACTS_IN","name":"Marylin","type":"Role","_key":"73150","_from":"43992","_to":"43990"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"73147","_from":"43991","_to":"43990"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"90560","_from":"43991","_to":"53490"} +{"$label":"ACTS_IN","name":"Otto","type":"Role","_key":"88623","_from":"43991","_to":"52511"} +{"$label":"DIRECTED","_key":"73156","_from":"43997","_to":"43993"} +{"$label":"ACTS_IN","name":"May Lin","type":"Role","_key":"73155","_from":"43996","_to":"43993"} +{"$label":"ACTS_IN","name":"Ah-jung","type":"Role","_key":"73154","_from":"43995","_to":"43993"} +{"$label":"ACTS_IN","name":"Hsiao-kang","type":"Role","_key":"73153","_from":"43994","_to":"43993"} +{"$label":"ACTS_IN","name":"Hsiao-kang","type":"Role","_key":"88190","_from":"43994","_to":"52325"} +{"$label":"DIRECTED","_key":"88194","_from":"43997","_to":"52325"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"73161","_from":"43999","_to":"43998"} +{"$label":"DIRECTED","_key":"87902","_from":"52198","_to":"52197"} +{"$label":"ACTS_IN","name":"Krumme","type":"Role","_key":"87911","_from":"52206","_to":"52199"} +{"$label":"ACTS_IN","name":"Erlend Neshov","type":"Role","_key":"87908","_from":"52205","_to":"52199"} +{"$label":"ACTS_IN","name":"Margido Neshov","type":"Role","_key":"87907","_from":"52204","_to":"52199"} +{"$label":"ACTS_IN","name":"Tormod Neshov","type":"Role","_key":"87906","_from":"52203","_to":"52199"} +{"$label":"ACTS_IN","name":"Tor Neshov","type":"Role","_key":"87905","_from":"52202","_to":"52199"} +{"$label":"DIRECTED","_key":"87904","_from":"52201","_to":"52199"} +{"$label":"DIRECTED","_key":"87903","_from":"52200","_to":"52199"} +{"$label":"ACTS_IN","name":"The Wanderer","type":"Role","_key":"100380","_from":"52204","_to":"59189"} +{"$label":"ACTS_IN","name":"Niels Vibe Stockfleth","type":"Role","_key":"93504","_from":"52204","_to":"55052"} +{"$label":"ACTS_IN","name":"Dr. Petter \/ Kelner \/ Pasient med utslett \/ MF Gaffeltr\u00f8kkf\u00f8rer (voice)","type":"Role","_key":"106629","_from":"52205","_to":"62823"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"87921","_from":"52213","_to":"52210"} +{"$label":"ACTS_IN","name":"Guard Andel","type":"Role","_key":"87920","_from":"52212","_to":"52210"} +{"$label":"ACTS_IN","name":"Trustee","type":"Role","_key":"87916","_from":"52211","_to":"52210"} +{"$label":"ACTS_IN","name":"Karel Kopfrkingl","type":"Role","_key":"115866","_from":"52211","_to":"68222"} +{"$label":"ACTS_IN","name":"April Love","type":"Role","_key":"87928","_from":"52216","_to":"52214"} +{"$label":"DIRECTED","_key":"87923","_from":"52215","_to":"52214"} +{"$label":"DIRECTED","_key":"116536","_from":"52215","_to":"68596"} +{"$label":"DIRECTED","_key":"116324","_from":"52215","_to":"68477"} +{"$label":"DIRECTED","_key":"87936","_from":"52221","_to":"52217"} +{"$label":"ACTS_IN","name":"Dr. M\u00e9ndez","type":"Role","_key":"87935","_from":"52220","_to":"52217"} +{"$label":"ACTS_IN","name":"Hector Luis","type":"Role","_key":"87934","_from":"52219","_to":"52217"} +{"$label":"ACTS_IN","name":"Wanda","type":"Role","_key":"87933","_from":"52218","_to":"52217"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"87942","_from":"52223","_to":"52222"} +{"$label":"ACTS_IN","name":"Father McEnroe","type":"Role","_key":"87951","_from":"52229","_to":"52224"} +{"$label":"ACTS_IN","name":"Mar\u00eda Luisa","type":"Role","_key":"87950","_from":"52228","_to":"52224"} +{"$label":"ACTS_IN","name":"Machuca","type":"Role","_key":"87949","_from":"52227","_to":"52224"} +{"$label":"ACTS_IN","name":"Gonzalo","type":"Role","_key":"87948","_from":"52226","_to":"52224"} +{"$label":"DIRECTED","_key":"87947","_from":"52225","_to":"52224"} +{"$label":"ACTS_IN","name":"Abraham","type":"Role","_key":"87959","_from":"52232","_to":"52231"} +{"$label":"ACTS_IN","name":"Peter Prentiss","type":"Role","_key":"87971","_from":"52235","_to":"52234"} +{"$label":"ACTS_IN","name":"Cal Cooper","type":"Role","_key":"109716","_from":"52235","_to":"64795"} +{"$label":"ACTS_IN","name":"Alice (Stimme)","type":"Role","_key":"87977","_from":"52237","_to":"52236"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"87985","_from":"52243","_to":"52238"} +{"$label":"ACTS_IN","name":"Aunt Anna","type":"Role","_key":"87984","_from":"52242","_to":"52238"} +{"$label":"ACTS_IN","name":"Lilja's mother","type":"Role","_key":"87983","_from":"52241","_to":"52238"} +{"$label":"ACTS_IN","name":"Wolodja","type":"Role","_key":"87982","_from":"52240","_to":"52238"} +{"$label":"ACTS_IN","name":"Lilja","type":"Role","_key":"87981","_from":"52239","_to":"52238"} +{"$label":"ACTS_IN","name":"Farah","type":"Role","_key":"88012","_from":"52250","_to":"52248"} +{"$label":"ACTS_IN","name":"Birgit","type":"Role","_key":"88011","_from":"52249","_to":"52248"} +{"$label":"ACTS_IN","name":"Zottel","type":"Role","_key":"88018","_from":"52255","_to":"52251"} +{"$label":"ACTS_IN","name":"Koma","type":"Role","_key":"88016","_from":"52254","_to":"52251"} +{"$label":"ACTS_IN","name":"Janosch","type":"Role","_key":"88015","_from":"52253","_to":"52251"} +{"$label":"DIRECTED","_key":"88013","_from":"52252","_to":"52251"} +{"$label":"ACTS_IN","name":"Billy Kramer","type":"Role","_key":"88032","_from":"52259","_to":"52258"} +{"$label":"ACTS_IN","name":"Mike Baker","type":"Role","_key":"103355","_from":"52259","_to":"60795"} +{"$label":"ACTS_IN","name":"Pink's Wife","type":"Role","_key":"88042","_from":"52264","_to":"52261"} +{"$label":"ACTS_IN","name":"Pink's Father","type":"Role","_key":"88041","_from":"52263","_to":"52261"} +{"$label":"ACTS_IN","name":"Pink's Mother","type":"Role","_key":"88040","_from":"52262","_to":"52261"} +{"$label":"ACTS_IN","name":"Cecily Farr","type":"Role","_key":"105429","_from":"52264","_to":"62026"} +{"$label":"ACTS_IN","name":"Ringo (Stimme)","type":"Role","_key":"88047","_from":"52268","_to":"52265"} +{"$label":"ACTS_IN","name":"as themselves","type":"Role","_key":"88045","_from":"52267","_to":"52265"} +{"$label":"DIRECTED","_key":"88044","_from":"52266","_to":"52265"} +{"$label":"DIRECTED","_key":"88066","_from":"52273","_to":"52271"} +{"$label":"ACTS_IN","name":"Ciro","type":"Role","_key":"88065","_from":"52272","_to":"52271"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"88071","_from":"52278","_to":"52274"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"88069","_from":"52277","_to":"52274"} +{"$label":"ACTS_IN","name":"Frankie Wilde","type":"Role","_key":"88068","_from":"52276","_to":"52274"} +{"$label":"DIRECTED","_key":"88067","_from":"52275","_to":"52274"} +{"$label":"DIRECTED","_key":"97970","_from":"52275","_to":"57699"} +{"$label":"ACTS_IN","name":"Cliff Starkey","type":"Role","_key":"104424","_from":"52276","_to":"61430"} +{"$label":"ACTS_IN","name":"Gelb","type":"Role","_key":"103058","_from":"52276","_to":"60626"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"116449","_from":"52277","_to":"68543"} +{"$label":"ACTS_IN","name":"Mazetti","type":"Role","_key":"88087","_from":"52281","_to":"52280"} +{"$label":"DIRECTED","_key":"88088","_from":"52283","_to":"52282"} +{"$label":"ACTS_IN","name":"Frau Beutel","type":"Role","_key":"88110","_from":"52291","_to":"52285"} +{"$label":"ACTS_IN","name":"Volvo-Fahrer","type":"Role","_key":"88109","_from":"52290","_to":"52285"} +{"$label":"ACTS_IN","name":"Zauberer","type":"Role","_key":"88108","_from":"52289","_to":"52285"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater","type":"Role","_key":"88107","_from":"52288","_to":"52285"} +{"$label":"ACTS_IN","name":"Rosi","type":"Role","_key":"88106","_from":"52287","_to":"52285"} +{"$label":"ACTS_IN","name":"Rieke","type":"Role","_key":"88104","_from":"52286","_to":"52285"} +{"$label":"ACTS_IN","name":"Imbissmann","type":"Role","_key":"88115","_from":"52294","_to":"52292"} +{"$label":"ACTS_IN","name":"Zuh\u00e4lter","type":"Role","_key":"88114","_from":"52293","_to":"52292"} +{"$label":"ACTS_IN","name":"Fabienne","type":"Role","_key":"88121","_from":"52297","_to":"52295"} +{"$label":"ACTS_IN","name":"H\u00e9l\u00e8ne","type":"Role","_key":"88118","_from":"52296","_to":"52295"} +{"$label":"ACTS_IN","name":"Paizinho","type":"Role","_key":"88166","_from":"52312","_to":"52305"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"88165","_from":"52311","_to":"52305"} +{"$label":"ACTS_IN","name":"Violeta","type":"Role","_key":"88164","_from":"52310","_to":"52305"} +{"$label":"ACTS_IN","name":"Monitor","type":"Role","_key":"88163","_from":"52309","_to":"52305"} +{"$label":"ACTS_IN","name":"Vidala","type":"Role","_key":"88162","_from":"52308","_to":"52305"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"88161","_from":"52307","_to":"52305"} +{"$label":"DIRECTED","_key":"88160","_from":"52306","_to":"52305"} +{"$label":"ACTS_IN","name":"n.a.","type":"Role","_key":"88169","_from":"52314","_to":"52313"} +{"$label":"ACTS_IN","name":"Woman at the Till","type":"Role","_key":"88825","_from":"52314","_to":"52622"} +{"$label":"ACTS_IN","name":"Herr Settergren","type":"Role","_key":"88174","_from":"52317","_to":"52316"} +{"$label":"ACTS_IN","name":"Wurst","type":"Role","_key":"88178","_from":"52320","_to":"52318"} +{"$label":"ACTS_IN","name":"Konrad","type":"Role","_key":"88177","_from":"52319","_to":"52318"} +{"$label":"ACTS_IN","name":"Nuno","type":"Role","_key":"90479","_from":"52320","_to":"53453"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"88184","_from":"52324","_to":"52321"} +{"$label":"ACTS_IN","name":"Melissa Drake","type":"Role","_key":"88183","_from":"52323","_to":"52321"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"88182","_from":"52322","_to":"52321"} +{"$label":"ACTS_IN","name":"Lady Boss","type":"Role","_key":"88193","_from":"52328","_to":"52325"} +{"$label":"ACTS_IN","name":"Chyi","type":"Role","_key":"88192","_from":"52327","_to":"52325"} +{"$label":"ACTS_IN","name":"Rawang","type":"Role","_key":"88191","_from":"52326","_to":"52325"} +{"$label":"ACTS_IN","name":"Holger","type":"Role","_key":"88199","_from":"52331","_to":"52329"} +{"$label":"ACTS_IN","name":"Geli","type":"Role","_key":"88198","_from":"52330","_to":"52329"} +{"$label":"DIRECTED","_key":"97506","_from":"52330","_to":"57421"} +{"$label":"ACTS_IN","name":"Armado","type":"Role","_key":"88206","_from":"52336","_to":"52332"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"88205","_from":"52335","_to":"52332"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"88203","_from":"52334","_to":"52332"} +{"$label":"DIRECTED","_key":"88202","_from":"52333","_to":"52332"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"88215","_from":"52339","_to":"52337"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"88214","_from":"52338","_to":"52337"} +{"$label":"ACTS_IN","name":"Officer Franklin","type":"Role","_key":"117501","_from":"52339","_to":"69087"} +{"$label":"ACTS_IN","name":"Eddie Reynolds","type":"Role","_key":"99725","_from":"52339","_to":"58816"} +{"$label":"ACTS_IN","name":"Bieke","type":"Role","_key":"88220","_from":"52344","_to":"52340"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"88219","_from":"52343","_to":"52340"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"88218","_from":"52342","_to":"52340"} +{"$label":"DIRECTED","_key":"88217","_from":"52341","_to":"52340"} +{"$label":"ACTS_IN","name":"Chouki","type":"Role","_key":"121762","_from":"52343","_to":"71527"} +{"$label":"ACTS_IN","name":"Filip Willems","type":"Role","_key":"114151","_from":"52343","_to":"67228"} +{"$label":"ACTS_IN","name":"Chouki","type":"Role","_key":"110829","_from":"52343","_to":"65465"} +{"$label":"ACTS_IN","name":"Olli","type":"Role","_key":"88242","_from":"52349","_to":"52346"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"88236","_from":"52348","_to":"52346"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"88234","_from":"52347","_to":"52346"} +{"$label":"DIRECTED","_key":"88243","_from":"52351","_to":"52350"} +{"$label":"ACTS_IN","name":"Motoko Kusanagi (Stimme)","type":"Role","_key":"88259","_from":"52356","_to":"52353"} +{"$label":"ACTS_IN","name":"Togusa (Stimme)","type":"Role","_key":"88257","_from":"52355","_to":"52353"} +{"$label":"ACTS_IN","name":"Bat\u014d (Stimme)","type":"Role","_key":"88255","_from":"52354","_to":"52353"} +{"$label":"ACTS_IN","name":"James Pinkerton","type":"Role","_key":"88274","_from":"52362","_to":"52358"} +{"$label":"ACTS_IN","name":"Krash","type":"Role","_key":"88273","_from":"52361","_to":"52358"} +{"$label":"ACTS_IN","name":"Young Edward","type":"Role","_key":"88272","_from":"52360","_to":"52358"} +{"$label":"ACTS_IN","name":"80's Sheriff (as Craig Brunanski)","type":"Role","_key":"88270","_from":"52359","_to":"52358"} +{"$label":"ACTS_IN","name":"Ariane","type":"Role","_key":"88280","_from":"52364","_to":"52363"} +{"$label":"ACTS_IN","name":"Cera","type":"Role","_key":"88283","_from":"52366","_to":"52365"} +{"$label":"ACTS_IN","name":"Cera","type":"Role","_key":"106593","_from":"52366","_to":"62811"} +{"$label":"ACTS_IN","name":"Sydney Lotterby","type":"Role","_key":"88291","_from":"52368","_to":"52367"} +{"$label":"ACTS_IN","name":"Captain Pellew","type":"Role","_key":"120210","_from":"52368","_to":"70594"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"88301","_from":"52373","_to":"52370"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"88299","_from":"52372","_to":"52370"} +{"$label":"DIRECTED","_key":"88298","_from":"52371","_to":"52370"} +{"$label":"ACTS_IN","name":"Vera","type":"Role","_key":"90313","_from":"52372","_to":"53386"} +{"$label":"ACTS_IN","name":"Carol Dodsworth","type":"Role","_key":"88327","_from":"52378","_to":"52377"} +{"$label":"ACTS_IN","name":"Brittany Wilson","type":"Role","_key":"88334","_from":"52380","_to":"52379"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"88347","_from":"52385","_to":"52382"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"88345","_from":"52384","_to":"52382"} +{"$label":"DIRECTED","_key":"88342","_from":"52383","_to":"52382"} +{"$label":"ACTS_IN","name":"Yves","type":"Role","_key":"104021","_from":"52384","_to":"61197"} +{"$label":"ACTS_IN","name":"Gwendal","type":"Role","_key":"100360","_from":"52384","_to":"59177"} +{"$label":"DIRECTED","_key":"88359","_from":"52389","_to":"52388"} +{"$label":"ACTS_IN","name":"Beckham","type":"Role","_key":"88396","_from":"52393","_to":"52392"} +{"$label":"ACTS_IN","name":"Necro Butcher","type":"Role","_key":"88404","_from":"52395","_to":"52394"} +{"$label":"ACTS_IN","name":"Santiago","type":"Role","_key":"88413","_from":"52402","_to":"52396"} +{"$label":"ACTS_IN","name":"Cristobal","type":"Role","_key":"88412","_from":"52401","_to":"52396"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"88411","_from":"52400","_to":"52396"} +{"$label":"ACTS_IN","name":"Mariana","type":"Role","_key":"88410","_from":"52399","_to":"52396"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"88409","_from":"52398","_to":"52396"} +{"$label":"DIRECTED","_key":"88405","_from":"52397","_to":"52396"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"111581","_from":"52402","_to":"65876"} +{"$label":"ACTS_IN","name":"Asbj\u00f8rn","type":"Role","_key":"88424","_from":"52411","_to":"52404"} +{"$label":"ACTS_IN","name":"Lillemor","type":"Role","_key":"88422","_from":"52410","_to":"52404"} +{"$label":"ACTS_IN","name":"Marte","type":"Role","_key":"88421","_from":"52409","_to":"52404"} +{"$label":"ACTS_IN","name":"Gard","type":"Role","_key":"88420","_from":"52408","_to":"52404"} +{"$label":"ACTS_IN","name":"Tori","type":"Role","_key":"88419","_from":"52407","_to":"52404"} +{"$label":"ACTS_IN","name":"Geirr","type":"Role","_key":"88418","_from":"52406","_to":"52404"} +{"$label":"DIRECTED","_key":"88417","_from":"52405","_to":"52404"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"106516","_from":"52406","_to":"62756"} +{"$label":"ACTS_IN","name":"Solan Gundersen","type":"Role","_key":"118010","_from":"52410","_to":"69363"} +{"$label":"ACTS_IN","name":"Hugo","type":"Role","_key":"93917","_from":"52411","_to":"55297"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"88431","_from":"52416","_to":"52413"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl","type":"Role","_key":"88429","_from":"52415","_to":"52413"} +{"$label":"DIRECTED","_key":"88427","_from":"52414","_to":"52413"} +{"$label":"ACTS_IN","name":"Maxime","type":"Role","_key":"88438","_from":"52421","_to":"52417"} +{"$label":"ACTS_IN","name":"Cl\u00e9mence","type":"Role","_key":"88435","_from":"52420","_to":"52417"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"88434","_from":"52419","_to":"52417"} +{"$label":"DIRECTED","_key":"88433","_from":"52418","_to":"52417"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"91818","_from":"52421","_to":"54162"} +{"$label":"ACTS_IN","name":"Jenny Walker","type":"Role","_key":"88443","_from":"52426","_to":"52422"} +{"$label":"ACTS_IN","name":"Brad Kopple","type":"Role","_key":"88442","_from":"52425","_to":"52422"} +{"$label":"ACTS_IN","name":"Medea","type":"Role","_key":"88441","_from":"52424","_to":"52422"} +{"$label":"DIRECTED","_key":"88439","_from":"52423","_to":"52422"} +{"$label":"ACTS_IN","name":"Barry Brickman","type":"Role","_key":"88816","_from":"52425","_to":"52622"} +{"$label":"ACTS_IN","name":"Charlotte Warren","type":"Role","_key":"88497","_from":"52426","_to":"52451"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88454","_from":"52430","_to":"52428"} +{"$label":"ACTS_IN","name":"le recteur","type":"Role","_key":"88450","_from":"52429","_to":"52428"} +{"$label":"ACTS_IN","name":"Henri, l'\u00e9b\u00e9niste","type":"Role","_key":"88716","_from":"52430","_to":"52563"} +{"$label":"ACTS_IN","name":"Le pr\u00e9tendant","type":"Role","_key":"88464","_from":"52435","_to":"52431"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"88463","_from":"52434","_to":"52431"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"88460","_from":"52433","_to":"52431"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"88459","_from":"52432","_to":"52431"} +{"$label":"DIRECTED","_key":"88473","_from":"52442","_to":"52436"} +{"$label":"ACTS_IN","name":"George Winfield","type":"Role","_key":"88472","_from":"52441","_to":"52436"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"88471","_from":"52440","_to":"52436"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"88469","_from":"52439","_to":"52436"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"88467","_from":"52438","_to":"52436"} +{"$label":"ACTS_IN","name":"Keri","type":"Role","_key":"88466","_from":"52437","_to":"52436"} +{"$label":"ACTS_IN","name":"Crystal","type":"Role","_key":"116139","_from":"52439","_to":"68383"} +{"$label":"ACTS_IN","name":"Trish Prescott","type":"Role","_key":"113827","_from":"52439","_to":"67053"} +{"$label":"ACTS_IN","name":"Brittany Van Horn","type":"Role","_key":"95442","_from":"52439","_to":"56146"} +{"$label":"ACTS_IN","name":"Barrett","type":"Role","_key":"119776","_from":"52440","_to":"70331"} +{"$label":"ACTS_IN","name":"Trip","type":"Role","_key":"100417","_from":"52440","_to":"59213"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"88480","_from":"52447","_to":"52443"} +{"$label":"ACTS_IN","name":"Perla","type":"Role","_key":"88478","_from":"52446","_to":"52443"} +{"$label":"ACTS_IN","name":"Chris Miller","type":"Role","_key":"88476","_from":"52445","_to":"52443"} +{"$label":"DIRECTED","_key":"88474","_from":"52444","_to":"52443"} +{"$label":"ACTS_IN","name":"Deepak Chopra","type":"Role","_key":"88489","_from":"52450","_to":"52448"} +{"$label":"DIRECTED","_key":"88481","_from":"52449","_to":"52448"} +{"$label":"ACTS_IN","name":"Chestnut Seller","type":"Role","_key":"88499","_from":"52454","_to":"52451"} +{"$label":"ACTS_IN","name":"Margery","type":"Role","_key":"88496","_from":"52453","_to":"52451"} +{"$label":"ACTS_IN","name":"Michael Pardue","type":"Role","_key":"88494","_from":"52452","_to":"52451"} +{"$label":"ACTS_IN","name":"Roy Walker \/ Blue Bandit","type":"Role","_key":"101767","_from":"52452","_to":"59888"} +{"$label":"DIRECTED","_key":"88511","_from":"52460","_to":"52456"} +{"$label":"ACTS_IN","name":"General Grievous (voice)","type":"Role","_key":"88507","_from":"52459","_to":"52456"} +{"$label":"ACTS_IN","name":"Yoda (voice)","type":"Role","_key":"88506","_from":"52458","_to":"52456"} +{"$label":"ACTS_IN","name":"Anakin Skywalker (voice)","type":"Role","_key":"88505","_from":"52457","_to":"52456"} +{"$label":"ACTS_IN","name":"Zack Conroy","type":"Role","_key":"103124","_from":"52457","_to":"60659"} +{"$label":"ACTS_IN","name":"Will Farmer","type":"Role","_key":"98751","_from":"52457","_to":"58195"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"96771","_from":"52457","_to":"56920"} +{"$label":"ACTS_IN","name":"Tony Stark \/ Iron Man \/ Ultron","type":"Role","_key":"101097","_from":"52458","_to":"59566"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88520","_from":"52466","_to":"52461"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88519","_from":"52465","_to":"52461"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88517","_from":"52464","_to":"52461"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"88514","_from":"52463","_to":"52461"} +{"$label":"ACTS_IN","name":"Thea","type":"Role","_key":"88513","_from":"52462","_to":"52461"} +{"$label":"ACTS_IN","name":"Aunt Clara","type":"Role","_key":"93015","_from":"52462","_to":"54839"} +{"$label":"ACTS_IN","name":"Party Goer (as Harvey Cowen)","type":"Role","_key":"116747","_from":"52464","_to":"68714"} +{"$label":"ACTS_IN","name":"Lethariot","type":"Role","_key":"88528","_from":"52471","_to":"52467"} +{"$label":"ACTS_IN","name":"Hipster","type":"Role","_key":"88527","_from":"52470","_to":"52467"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"88526","_from":"52469","_to":"52467"} +{"$label":"DIRECTED","_key":"88521","_from":"52468","_to":"52467"} +{"$label":"ACTS_IN","name":"Federale Officer","type":"Role","_key":"88550","_from":"52482","_to":"52472"} +{"$label":"ACTS_IN","name":"Sonny Sr.","type":"Role","_key":"88549","_from":"52481","_to":"52472"} +{"$label":"ACTS_IN","name":"Dr. Van Horn","type":"Role","_key":"88548","_from":"52480","_to":"52472"} +{"$label":"ACTS_IN","name":"Otto Brinker","type":"Role","_key":"88547","_from":"52479","_to":"52472"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"88546","_from":"52478","_to":"52472"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"88545","_from":"52477","_to":"52472"} +{"$label":"ACTS_IN","name":"Reverend Shackelton","type":"Role","_key":"88544","_from":"52476","_to":"52472"} +{"$label":"ACTS_IN","name":"Wanda King","type":"Role","_key":"88543","_from":"52475","_to":"52472"} +{"$label":"ACTS_IN","name":"Bob Draper","type":"Role","_key":"88542","_from":"52474","_to":"52472"} +{"$label":"DIRECTED","_key":"88529","_from":"52473","_to":"52472"} +{"$label":"ACTS_IN","name":"Jane Seymour","type":"Role","_key":"88571","_from":"52492","_to":"52483"} +{"$label":"ACTS_IN","name":"King's Messenger","type":"Role","_key":"88570","_from":"52491","_to":"52483"} +{"$label":"ACTS_IN","name":"Brandon\tMark","type":"Role","_key":"88569","_from":"52490","_to":"52483"} +{"$label":"ACTS_IN","name":"Thomas Cromwell","type":"Role","_key":"88567","_from":"52489","_to":"52483"} +{"$label":"ACTS_IN","name":"Lady in Waiting","type":"Role","_key":"88566","_from":"52488","_to":"52483"} +{"$label":"ACTS_IN","name":"Henry Percy","type":"Role","_key":"88565","_from":"52487","_to":"52483"} +{"$label":"ACTS_IN","name":"William Carey","type":"Role","_key":"88564","_from":"52486","_to":"52483"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"88563","_from":"52485","_to":"52483"} +{"$label":"DIRECTED","_key":"88551","_from":"52484","_to":"52483"} +{"$label":"ACTS_IN","name":"Flash Man","type":"Role","_key":"102989","_from":"52484","_to":"60579"} +{"$label":"ACTS_IN","name":"Kevin Hubble","type":"Role","_key":"96710","_from":"52491","_to":"56883"} +{"$label":"DIRECTED","_key":"88593","_from":"52497","_to":"52496"} +{"$label":"ACTS_IN","name":"Marie Bremer","type":"Role","_key":"88599","_from":"52501","_to":"52498"} +{"$label":"ACTS_IN","name":"Adrian Becher","type":"Role","_key":"88595","_from":"52500","_to":"52498"} +{"$label":"DIRECTED","_key":"88594","_from":"52499","_to":"52498"} +{"$label":"DIRECTED","_key":"88602","_from":"52504","_to":"52502"} +{"$label":"DIRECTED","_key":"88601","_from":"52503","_to":"52502"} +{"$label":"ACTS_IN","name":"Catherine Ivy","type":"Role","_key":"88610","_from":"52507","_to":"52505"} +{"$label":"DIRECTED","_key":"88603","_from":"52506","_to":"52505"} +{"$label":"DIRECTED","_key":"88617","_from":"52509","_to":"52508"} +{"$label":"DIRECTED","_key":"97771","_from":"52509","_to":"57562"} +{"$label":"ACTS_IN","name":"Mareille","type":"Role","_key":"88630","_from":"52514","_to":"52511"} +{"$label":"ACTS_IN","name":"Mischa","type":"Role","_key":"88628","_from":"52513","_to":"52511"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"88625","_from":"52512","_to":"52511"} +{"$label":"ACTS_IN","name":"Henning","type":"Role","_key":"88637","_from":"52521","_to":"52515"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"88636","_from":"52520","_to":"52515"} +{"$label":"ACTS_IN","name":"Kari","type":"Role","_key":"88635","_from":"52519","_to":"52515"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"88634","_from":"52518","_to":"52515"} +{"$label":"ACTS_IN","name":"Philipp","type":"Role","_key":"88633","_from":"52517","_to":"52515"} +{"$label":"DIRECTED","_key":"88632","_from":"52516","_to":"52515"} +{"$label":"ACTS_IN","name":"Ingunn","type":"Role","_key":"104422","_from":"52519","_to":"61426"} +{"$label":"ACTS_IN","name":"Kolbein Lauring","type":"Role","_key":"96179","_from":"52520","_to":"56525"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"88643","_from":"52525","_to":"52522"} +{"$label":"ACTS_IN","name":"Song","type":"Role","_key":"88641","_from":"52524","_to":"52522"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"88640","_from":"52523","_to":"52522"} +{"$label":"DIRECTED","_key":"88646","_from":"52528","_to":"52526"} +{"$label":"DIRECTED","_key":"88645","_from":"52527","_to":"52526"} +{"$label":"DIRECTED","_key":"88647","_from":"52527","_to":"52529"} +{"$label":"ACTS_IN","name":"Northmoor Doctor","type":"Role","_key":"88664","_from":"52538","_to":"52530"} +{"$label":"ACTS_IN","name":"Robinson Jr.","type":"Role","_key":"88663","_from":"52537","_to":"52530"} +{"$label":"ACTS_IN","name":"Hospital Nurse","type":"Role","_key":"88661","_from":"52536","_to":"52530"} +{"$label":"ACTS_IN","name":"The agent one","type":"Role","_key":"88659","_from":"52535","_to":"52530"} +{"$label":"ACTS_IN","name":"Melissa Conway","type":"Role","_key":"88656","_from":"52534","_to":"52530"} +{"$label":"ACTS_IN","name":"Det. Darcy Jones","type":"Role","_key":"88655","_from":"52533","_to":"52530"} +{"$label":"ACTS_IN","name":"Emma Craven","type":"Role","_key":"88654","_from":"52532","_to":"52530"} +{"$label":"ACTS_IN","name":"Moore","type":"Role","_key":"88653","_from":"52531","_to":"52530"} +{"$label":"ACTS_IN","name":"Mr. Gilbertson","type":"Role","_key":"115524","_from":"52531","_to":"68009"} +{"$label":"ACTS_IN","name":"Ilenka Ganush","type":"Role","_key":"110300","_from":"52532","_to":"65177"} +{"$label":"ACTS_IN","name":"Driver","type":"Role","_key":"98716","_from":"52537","_to":"58173"} +{"$label":"ACTS_IN","name":"Ikuko Matsubara (6 years old)","type":"Role","_key":"88671","_from":"52544","_to":"52540"} +{"$label":"ACTS_IN","name":"Ikuko Hamada (16 years old)","type":"Role","_key":"88670","_from":"52543","_to":"52540"} +{"$label":"ACTS_IN","name":"Mitsuko Kawai","type":"Role","_key":"88668","_from":"52542","_to":"52540"} +{"$label":"ACTS_IN","name":"Yoshimi Matsubara","type":"Role","_key":"88667","_from":"52541","_to":"52540"} +{"$label":"ACTS_IN","name":"Bulle","type":"Role","_key":"88676","_from":"52548","_to":"52545"} +{"$label":"ACTS_IN","name":"Erpresser","type":"Role","_key":"88675","_from":"52547","_to":"52545"} +{"$label":"ACTS_IN","name":"Prof. Dr. Baum","type":"Role","_key":"88674","_from":"52546","_to":"52545"} +{"$label":"ACTS_IN","name":"Tsang","type":"Role","_key":"88681","_from":"52551","_to":"52549"} +{"$label":"ACTS_IN","name":"Mrs. Wong","type":"Role","_key":"88680","_from":"52550","_to":"52549"} +{"$label":"ACTS_IN","name":"Inspector Fong","type":"Role","_key":"117241","_from":"52550","_to":"68965"} +{"$label":"DIRECTED","_key":"88691","_from":"52554","_to":"52553"} +{"$label":"DIRECTED","_key":"88692","_from":"52554","_to":"52555"} +{"$label":"DIRECTED","_key":"88696","_from":"52558","_to":"52556"} +{"$label":"ACTS_IN","name":"Duncan MacLeod","type":"Role","_key":"88695","_from":"52557","_to":"52556"} +{"$label":"ACTS_IN","name":"Cole\/Daggun","type":"Role","_key":"114014","_from":"52557","_to":"67145"} +{"$label":"ACTS_IN","name":"Duncan MacLeod","type":"Role","_key":"94101","_from":"52557","_to":"55414"} +{"$label":"DIRECTED","_key":"94814","_from":"52558","_to":"55838"} +{"$label":"DIRECTED","_key":"88703","_from":"52561","_to":"52559"} +{"$label":"ACTS_IN","name":"Amy Mayfield","type":"Role","_key":"88697","_from":"52560","_to":"52559"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"119337","_from":"52560","_to":"70120"} +{"$label":"ACTS_IN","name":"Missy Vanglider","type":"Role","_key":"104934","_from":"52560","_to":"61746"} +{"$label":"ACTS_IN","name":"Winona Kirk","type":"Role","_key":"94697","_from":"52560","_to":"55786"} +{"$label":"ACTS_IN","name":"Mindy","type":"Role","_key":"93070","_from":"52560","_to":"54866"} +{"$label":"ACTS_IN","name":"Sylvia Faguet","type":"Role","_key":"88714","_from":"52568","_to":"52563"} +{"$label":"ACTS_IN","name":"Franck","type":"Role","_key":"88713","_from":"52567","_to":"52563"} +{"$label":"ACTS_IN","name":"Lalie","type":"Role","_key":"88711","_from":"52566","_to":"52563"} +{"$label":"ACTS_IN","name":"Ensor, l'adjoint de Servolle","type":"Role","_key":"88710","_from":"52565","_to":"52563"} +{"$label":"DIRECTED","_key":"88704","_from":"52564","_to":"52563"} +{"$label":"ACTS_IN","name":"Ca\u00efphe","type":"Role","_key":"88724","_from":"52573","_to":"52569"} +{"$label":"ACTS_IN","name":"Marie-Madeleine","type":"Role","_key":"88723","_from":"52572","_to":"52569"} +{"$label":"ACTS_IN","name":"Judas","type":"Role","_key":"88720","_from":"52571","_to":"52569"} +{"$label":"DIRECTED","_key":"88717","_from":"52570","_to":"52569"} +{"$label":"DIRECTED","_key":"88753","_from":"52596","_to":"52574"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"88752","_from":"52595","_to":"52574"} +{"$label":"ACTS_IN","name":"Apartment dweller","type":"Role","_key":"88750","_from":"52594","_to":"52574"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"88749","_from":"52593","_to":"52574"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"88748","_from":"52592","_to":"52574"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"88747","_from":"52591","_to":"52574"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"88745","_from":"52590","_to":"52574"} +{"$label":"ACTS_IN","name":"Guard Grant","type":"Role","_key":"88744","_from":"52589","_to":"52574"} +{"$label":"ACTS_IN","name":"Nurse Lucy","type":"Role","_key":"88743","_from":"52588","_to":"52574"} +{"$label":"ACTS_IN","name":"Orderly","type":"Role","_key":"88741","_from":"52587","_to":"52574"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"88740","_from":"52586","_to":"52574"} +{"$label":"ACTS_IN","name":"Bradley","type":"Role","_key":"88739","_from":"52585","_to":"52574"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"88738","_from":"52584","_to":"52574"} +{"$label":"ACTS_IN","name":"Malcolm Francis","type":"Role","_key":"88737","_from":"52583","_to":"52574"} +{"$label":"ACTS_IN","name":"Custodian Leon","type":"Role","_key":"88736","_from":"52582","_to":"52574"} +{"$label":"ACTS_IN","name":"Alexis","type":"Role","_key":"88735","_from":"52581","_to":"52574"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"88734","_from":"52580","_to":"52574"} +{"$label":"ACTS_IN","name":"Charlie Jessup","type":"Role","_key":"88733","_from":"52579","_to":"52574"} +{"$label":"ACTS_IN","name":"Dr. Mulog","type":"Role","_key":"88732","_from":"52578","_to":"52574"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"88729","_from":"52577","_to":"52574"} +{"$label":"ACTS_IN","name":"April Meddows","type":"Role","_key":"88727","_from":"52576","_to":"52574"} +{"$label":"ACTS_IN","name":"Daniel Savanah","type":"Role","_key":"88726","_from":"52575","_to":"52574"} +{"$label":"ACTS_IN","name":"Deputy Harris McAllister","type":"Role","_key":"116838","_from":"52575","_to":"68777"} +{"$label":"ACTS_IN","name":"Detective Daniels","type":"Role","_key":"98710","_from":"52575","_to":"58173"} +{"$label":"ACTS_IN","name":"Sylvia Desmet","type":"Role","_key":"88758","_from":"52601","_to":"52597"} +{"$label":"ACTS_IN","name":"Polizist","type":"Role","_key":"88757","_from":"52600","_to":"52597"} +{"$label":"ACTS_IN","name":"Malika","type":"Role","_key":"88756","_from":"52599","_to":"52597"} +{"$label":"DIRECTED","_key":"88754","_from":"52598","_to":"52597"} +{"$label":"DIRECTED","_key":"88760","_from":"52603","_to":"52602"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"88787","_from":"52608","_to":"52605"} +{"$label":"ACTS_IN","name":"Josh Jordan at two and a half","type":"Role","_key":"88779","_from":"52607","_to":"52605"} +{"$label":"ACTS_IN","name":"Josh Jordan at twelve","type":"Role","_key":"88778","_from":"52606","_to":"52605"} +{"$label":"ACTS_IN","name":"Father Zabriskie","type":"Role","_key":"95823","_from":"52608","_to":"56354"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"88793","_from":"52614","_to":"52609"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"88792","_from":"52613","_to":"52609"} +{"$label":"ACTS_IN","name":"Rui","type":"Role","_key":"88791","_from":"52612","_to":"52609"} +{"$label":"ACTS_IN","name":"Odete","type":"Role","_key":"88790","_from":"52611","_to":"52609"} +{"$label":"DIRECTED","_key":"88789","_from":"52610","_to":"52609"} +{"$label":"DIRECTED","_key":"88795","_from":"52617","_to":"52615"} +{"$label":"DIRECTED","_key":"88794","_from":"52616","_to":"52615"} +{"$label":"ACTS_IN","name":"Carol Van Sant","type":"Role","_key":"88803","_from":"52619","_to":"52618"} +{"$label":"ACTS_IN","name":"Marion Waldo","type":"Role","_key":"88811","_from":"52621","_to":"52620"} +{"$label":"ACTS_IN","name":"Shampoo \/ Frozen Girl 1","type":"Role","_key":"88832","_from":"52637","_to":"52622"} +{"$label":"ACTS_IN","name":"Old Lady at Deli Counter","type":"Role","_key":"88831","_from":"52636","_to":"52622"} +{"$label":"ACTS_IN","name":"Woman with Trolley","type":"Role","_key":"88830","_from":"52635","_to":"52622"} +{"$label":"ACTS_IN","name":"Shampoo \/ Frozen Girl 2","type":"Role","_key":"88829","_from":"52634","_to":"52622"} +{"$label":"ACTS_IN","name":"Deer Girl in Sainsbury's","type":"Role","_key":"88828","_from":"52633","_to":"52622"} +{"$label":"ACTS_IN","name":"Art Class Girl","type":"Role","_key":"88827","_from":"52632","_to":"52622"} +{"$label":"ACTS_IN","name":"Betting Employee","type":"Role","_key":"88826","_from":"52631","_to":"52622"} +{"$label":"ACTS_IN","name":"Art Class Teacher","type":"Role","_key":"88824","_from":"52630","_to":"52622"} +{"$label":"ACTS_IN","name":"Matt Stephens","type":"Role","_key":"88823","_from":"52629","_to":"52622"} +{"$label":"ACTS_IN","name":"Brian 'Kung-Fu'","type":"Role","_key":"88822","_from":"52628","_to":"52622"} +{"$label":"ACTS_IN","name":"Canteen Lady","type":"Role","_key":"88821","_from":"52627","_to":"52622"} +{"$label":"ACTS_IN","name":"Art Class Life Model","type":"Role","_key":"88820","_from":"52626","_to":"52622"} +{"$label":"ACTS_IN","name":"Young Ben Willis","type":"Role","_key":"88819","_from":"52625","_to":"52622"} +{"$label":"ACTS_IN","name":"Jenkins","type":"Role","_key":"88818","_from":"52624","_to":"52622"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"88817","_from":"52623","_to":"52622"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108269","_from":"52623","_to":"63988"} +{"$label":"ACTS_IN","name":"Belinda Casey","type":"Role","_key":"88837","_from":"52639","_to":"52638"} +{"$label":"ACTS_IN","name":"Katherine Larson","type":"Role","_key":"101131","_from":"52639","_to":"59583"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"88841","_from":"52642","_to":"52640"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"88839","_from":"52641","_to":"52640"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"88847","_from":"52646","_to":"52643"} +{"$label":"ACTS_IN","name":"Kev","type":"Role","_key":"88846","_from":"52645","_to":"52643"} +{"$label":"ACTS_IN","name":"Boab","type":"Role","_key":"88844","_from":"52644","_to":"52643"} +{"$label":"ACTS_IN","name":"Perdita","type":"Role","_key":"88855","_from":"52651","_to":"52647"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"88854","_from":"52650","_to":"52647"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"88853","_from":"52649","_to":"52647"} +{"$label":"ACTS_IN","name":"Cruella De Vil","type":"Role","_key":"88852","_from":"52648","_to":"52647"} +{"$label":"ACTS_IN","name":"Dynamit Harry","type":"Role","_key":"88864","_from":"52653","_to":"52652"} +{"$label":"DIRECTED","_key":"88874","_from":"52659","_to":"52654"} +{"$label":"DIRECTED","_key":"88872","_from":"52658","_to":"52654"} +{"$label":"ACTS_IN","name":"Djinn","type":"Role","_key":"88870","_from":"52657","_to":"52654"} +{"$label":"ACTS_IN","name":"Ahmad","type":"Role","_key":"88869","_from":"52656","_to":"52654"} +{"$label":"ACTS_IN","name":"Abu","type":"Role","_key":"88867","_from":"52655","_to":"52654"} +{"$label":"ACTS_IN","name":"Shawn Kildare","type":"Role","_key":"113426","_from":"52656","_to":"66828"} +{"$label":"ACTS_IN","name":"Tambul","type":"Role","_key":"117482","_from":"52657","_to":"69085"} +{"$label":"DIRECTED","_key":"88881","_from":"52662","_to":"52660"} +{"$label":"ACTS_IN","name":"Dodger","type":"Role","_key":"88876","_from":"52661","_to":"52660"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110913","_from":"52661","_to":"65516"} +{"$label":"DIRECTED","_key":"88912","_from":"52670","_to":"52666"} +{"$label":"ACTS_IN","name":"Leader of Flesh Eating Cult","type":"Role","_key":"88911","_from":"52669","_to":"52666"} +{"$label":"ACTS_IN","name":"suicide victim shown jumping out of a window","type":"Role","_key":"88909","_from":"52668","_to":"52666"} +{"$label":"ACTS_IN","name":"Cryogenics patient","type":"Role","_key":"88908","_from":"52667","_to":"52666"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106260","_from":"52667","_to":"62595"} +{"$label":"DIRECTED","_key":"106257","_from":"52669","_to":"62594"} +{"$label":"DIRECTED","_key":"106259","_from":"52670","_to":"62595"} +{"$label":"DIRECTED","_key":"106256","_from":"52670","_to":"62593"} +{"$label":"DIRECTED","_key":"106254","_from":"52670","_to":"62592"} +{"$label":"DIRECTED","_key":"106252","_from":"52670","_to":"62591"} +{"$label":"DIRECTED","_key":"88918","_from":"52675","_to":"52671"} +{"$label":"ACTS_IN","name":"Ezra Hannon","type":"Role","_key":"88917","_from":"52674","_to":"52671"} +{"$label":"ACTS_IN","name":"Dwight Renfield","type":"Role","_key":"88916","_from":"52673","_to":"52671"} +{"$label":"ACTS_IN","name":"Katherine 'Jimmy' Blair","type":"Role","_key":"88914","_from":"52672","_to":"52671"} +{"$label":"ACTS_IN","name":"Bank Employee","type":"Role","_key":"88948","_from":"52693","_to":"52677"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"88947","_from":"52692","_to":"52677"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"88946","_from":"52691","_to":"52677"} +{"$label":"ACTS_IN","name":"Mrs. Garson","type":"Role","_key":"88944","_from":"52690","_to":"52677"} +{"$label":"ACTS_IN","name":"Army Recruiter","type":"Role","_key":"88943","_from":"52689","_to":"52677"} +{"$label":"ACTS_IN","name":"Stella Miller","type":"Role","_key":"88942","_from":"52688","_to":"52677"} +{"$label":"ACTS_IN","name":"Bank Officer","type":"Role","_key":"88941","_from":"52687","_to":"52677"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"88940","_from":"52686","_to":"52677"} +{"$label":"ACTS_IN","name":"Army Officer","type":"Role","_key":"88939","_from":"52685","_to":"52677"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"88938","_from":"52684","_to":"52677"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"88937","_from":"52683","_to":"52677"} +{"$label":"ACTS_IN","name":"The Preacher","type":"Role","_key":"88936","_from":"52682","_to":"52677"} +{"$label":"ACTS_IN","name":"Mike Miller","type":"Role","_key":"88935","_from":"52681","_to":"52677"} +{"$label":"ACTS_IN","name":"Steve Garson","type":"Role","_key":"88934","_from":"52680","_to":"52677"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"88933","_from":"52679","_to":"52677"} +{"$label":"DIRECTED","_key":"88928","_from":"52678","_to":"52677"} +{"$label":"ACTS_IN","name":"Falling Man","type":"Role","_key":"88969","_from":"52707","_to":"52694"} +{"$label":"ACTS_IN","name":"Beheaded French Revolutionary","type":"Role","_key":"88968","_from":"52706","_to":"52694"} +{"$label":"ACTS_IN","name":"Red Haired Waitress","type":"Role","_key":"88967","_from":"52705","_to":"52694"} +{"$label":"ACTS_IN","name":"Young Gabriela","type":"Role","_key":"88966","_from":"52704","_to":"52694"} +{"$label":"ACTS_IN","name":"San the Barback","type":"Role","_key":"88965","_from":"52703","_to":"52694"} +{"$label":"ACTS_IN","name":"PFCS Spokesmaid","type":"Role","_key":"88964","_from":"52702","_to":"52694"} +{"$label":"ACTS_IN","name":"Young Gabriela's Mother","type":"Role","_key":"88963","_from":"52701","_to":"52694"} +{"$label":"ACTS_IN","name":"Marie Clement","type":"Role","_key":"88962","_from":"52700","_to":"52694"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"88961","_from":"52699","_to":"52694"} +{"$label":"ACTS_IN","name":"Lourdes","type":"Role","_key":"88960","_from":"52698","_to":"52694"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"88959","_from":"52697","_to":"52694"} +{"$label":"ACTS_IN","name":"Gabriela","type":"Role","_key":"88955","_from":"52696","_to":"52694"} +{"$label":"DIRECTED","_key":"88949","_from":"52695","_to":"52694"} +{"$label":"ACTS_IN","name":"Additional Voices","type":"Role","_key":"88991","_from":"52714","_to":"52708"} +{"$label":"ACTS_IN","name":"Sha-Ron","type":"Role","_key":"88990","_from":"52713","_to":"52708"} +{"$label":"ACTS_IN","name":"Chien-Po","type":"Role","_key":"88988","_from":"52712","_to":"52708"} +{"$label":"ACTS_IN","name":"Grandmother Fa","type":"Role","_key":"88982","_from":"52711","_to":"52708"} +{"$label":"ACTS_IN","name":"Mushu","type":"Role","_key":"88974","_from":"52710","_to":"52708"} +{"$label":"DIRECTED","_key":"88971","_from":"52709","_to":"52708"} +{"$label":"ACTS_IN","name":"Teacher \/ Karen \/ Additional Voices (voice)","type":"Role","_key":"95837","_from":"52711","_to":"56360"} +{"$label":"ACTS_IN","name":"Nagaina the Cobra, Wife of Nag \/ Teddy's Mother \/ Darzee's Wife (voice)","type":"Role","_key":"94395","_from":"52711","_to":"55580"} +{"$label":"ACTS_IN","name":"Kazuo","type":"Role","_key":"95950","_from":"52712","_to":"56416"} +{"$label":"DIRECTED","_key":"88999","_from":"52723","_to":"52715"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"88998","_from":"52722","_to":"52715"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"88997","_from":"52721","_to":"52715"} +{"$label":"ACTS_IN","name":"Schwester","type":"Role","_key":"88996","_from":"52720","_to":"52715"} +{"$label":"ACTS_IN","name":"Freundin","type":"Role","_key":"88995","_from":"52719","_to":"52715"} +{"$label":"ACTS_IN","name":"Wutang","type":"Role","_key":"88994","_from":"52718","_to":"52715"} +{"$label":"ACTS_IN","name":"Skate","type":"Role","_key":"88993","_from":"52717","_to":"52715"} +{"$label":"ACTS_IN","name":"the| Gamer","type":"Role","_key":"88992","_from":"52716","_to":"52715"} +{"$label":"DIRECTED","_key":"89000","_from":"52725","_to":"52724"} +{"$label":"ACTS_IN","name":"Targutai","type":"Role","_key":"89019","_from":"52733","_to":"52727"} +{"$label":"ACTS_IN","name":"Oelun","type":"Role","_key":"89018","_from":"52732","_to":"52727"} +{"$label":"ACTS_IN","name":"Esugei","type":"Role","_key":"89017","_from":"52731","_to":"52727"} +{"$label":"ACTS_IN","name":"Borte","type":"Role","_key":"89016","_from":"52730","_to":"52727"} +{"$label":"ACTS_IN","name":"Jamukha","type":"Role","_key":"89015","_from":"52729","_to":"52727"} +{"$label":"DIRECTED","_key":"89013","_from":"52728","_to":"52727"} +{"$label":"DIRECTED","_key":"120235","_from":"52728","_to":"70601"} +{"$label":"ACTS_IN","name":"Deema","type":"Role","_key":"117676","_from":"52728","_to":"69168"} +{"$label":"ACTS_IN","name":"Shampoo","type":"Role","_key":"89035","_from":"52749","_to":"52734"} +{"$label":"ACTS_IN","name":"Mark Hayes","type":"Role","_key":"89034","_from":"52748","_to":"52734"} +{"$label":"ACTS_IN","name":"John Hayes","type":"Role","_key":"89033","_from":"52747","_to":"52734"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"89032","_from":"52746","_to":"52734"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"89031","_from":"52745","_to":"52734"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"89030","_from":"52744","_to":"52734"} +{"$label":"ACTS_IN","name":"Cleaman Hayes","type":"Role","_key":"89029","_from":"52743","_to":"52734"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"89028","_from":"52742","_to":"52734"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"89027","_from":"52741","_to":"52734"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"89026","_from":"52740","_to":"52734"} +{"$label":"ACTS_IN","name":"Kid Hayes","type":"Role","_key":"89025","_from":"52739","_to":"52734"} +{"$label":"ACTS_IN","name":"Boy Hayes","type":"Role","_key":"89024","_from":"52738","_to":"52734"} +{"$label":"ACTS_IN","name":"Stephen Hayes","type":"Role","_key":"89023","_from":"52737","_to":"52734"} +{"$label":"ACTS_IN","name":"Annie Hayes","type":"Role","_key":"89022","_from":"52736","_to":"52734"} +{"$label":"DIRECTED","_key":"89020","_from":"52735","_to":"52734"} +{"$label":"ACTS_IN","name":"Elsie Hickam","type":"Role","_key":"94635","_from":"52740","_to":"55757"} +{"$label":"ACTS_IN","name":"Linda Wheatley","type":"Role","_key":"89896","_from":"52740","_to":"53200"} +{"$label":"ACTS_IN","name":"La morte myst\u00e9rieuse","type":"Role","_key":"89049","_from":"52760","_to":"52750"} +{"$label":"ACTS_IN","name":"La finlandaise bavarde","type":"Role","_key":"89048","_from":"52759","_to":"52750"} +{"$label":"ACTS_IN","name":"L'amant","type":"Role","_key":"89045","_from":"52758","_to":"52750"} +{"$label":"ACTS_IN","name":"Le m\u00e9decin","type":"Role","_key":"89044","_from":"52757","_to":"52750"} +{"$label":"ACTS_IN","name":"Le patron","type":"Role","_key":"89043","_from":"52756","_to":"52750"} +{"$label":"ACTS_IN","name":"Le Chinois","type":"Role","_key":"89042","_from":"52755","_to":"52750"} +{"$label":"ACTS_IN","name":"L'\u00e9pouse","type":"Role","_key":"89041","_from":"52754","_to":"52750"} +{"$label":"ACTS_IN","name":"Le paysan","type":"Role","_key":"89040","_from":"52753","_to":"52750"} +{"$label":"ACTS_IN","name":"L'ouvrier agricole","type":"Role","_key":"89039","_from":"52752","_to":"52750"} +{"$label":"ACTS_IN","name":"L'employ\u00e9","type":"Role","_key":"89038","_from":"52751","_to":"52750"} +{"$label":"DIRECTED","_key":"89037","_from":"52752","_to":"52750"} +{"$label":"DIRECTED","_key":"89036","_from":"52751","_to":"52750"} +{"$label":"DIRECTED","_key":"89064","_from":"52763","_to":"52762"} +{"$label":"DIRECTED","_key":"89070","_from":"52766","_to":"52764"} +{"$label":"ACTS_IN","name":"Mr. Woodhouse","type":"Role","_key":"89066","_from":"52765","_to":"52764"} +{"$label":"ACTS_IN","name":"Sam Toovey","type":"Role","_key":"107888","_from":"52765","_to":"63713"} +{"$label":"DIRECTED","_key":"113613","_from":"52766","_to":"66954"} +{"$label":"ACTS_IN","name":"Dietmar","type":"Role","_key":"89079","_from":"52770","_to":"52768"} +{"$label":"ACTS_IN","name":"Marlis","type":"Role","_key":"89077","_from":"52769","_to":"52768"} +{"$label":"ACTS_IN","name":"prabhu","type":"Role","_key":"89086","_from":"52773","_to":"52772"} +{"$label":"DIRECTED","_key":"89093","_from":"52778","_to":"52774"} +{"$label":"ACTS_IN","name":"Gabbar Singh","type":"Role","_key":"89092","_from":"52777","_to":"52774"} +{"$label":"ACTS_IN","name":"Thakur Baldev Singh","type":"Role","_key":"89089","_from":"52776","_to":"52774"} +{"$label":"ACTS_IN","name":"Veeru","type":"Role","_key":"89088","_from":"52775","_to":"52774"} +{"$label":"DIRECTED","_key":"89094","_from":"52780","_to":"52779"} +{"$label":"ACTS_IN","name":"Bobby Carter","type":"Role","_key":"89114","_from":"52792","_to":"52781"} +{"$label":"ACTS_IN","name":"Mercury","type":"Role","_key":"89113","_from":"52791","_to":"52781"} +{"$label":"ACTS_IN","name":"Mama","type":"Role","_key":"89112","_from":"52790","_to":"52781"} +{"$label":"ACTS_IN","name":"Mars","type":"Role","_key":"89111","_from":"52789","_to":"52781"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"89110","_from":"52788","_to":"52781"} +{"$label":"ACTS_IN","name":"Ethel Carter","type":"Role","_key":"89108","_from":"52787","_to":"52781"} +{"$label":"ACTS_IN","name":"Jupiter","type":"Role","_key":"89107","_from":"52786","_to":"52781"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"89106","_from":"52785","_to":"52781"} +{"$label":"ACTS_IN","name":"Big Bob Carter","type":"Role","_key":"89105","_from":"52784","_to":"52781"} +{"$label":"ACTS_IN","name":"Doug Wood","type":"Role","_key":"89103","_from":"52783","_to":"52781"} +{"$label":"ACTS_IN","name":"Brenda Carter","type":"Role","_key":"89102","_from":"52782","_to":"52781"} +{"$label":"DIRECTED","_key":"103259","_from":"52792","_to":"60752"} +{"$label":"ACTS_IN","name":"la scripte","type":"Role","_key":"89123","_from":"52798","_to":"52794"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"89120","_from":"52797","_to":"52794"} +{"$label":"ACTS_IN","name":"le r\u00e9alisateur","type":"Role","_key":"89118","_from":"52796","_to":"52794"} +{"$label":"DIRECTED","_key":"89115","_from":"52795","_to":"52794"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89287","_from":"52796","_to":"52859"} +{"$label":"DIRECTED","_key":"89279","_from":"52796","_to":"52859"} +{"$label":"DIRECTED","_key":"89150","_from":"52796","_to":"52806"} +{"$label":"ACTS_IN","name":"Brigid Polk","type":"Role","_key":"89149","_from":"52805","_to":"52804"} +{"$label":"ACTS_IN","name":"Inspecteur Alice Sands","type":"Role","_key":"100845","_from":"52805","_to":"59452"} +{"$label":"ACTS_IN","name":"Catherine, la petite fille","type":"Role","_key":"89160","_from":"52807","_to":"52806"} +{"$label":"DIRECTED","_key":"89164","_from":"52810","_to":"52808"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"89162","_from":"52809","_to":"52808"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"120757","_from":"52809","_to":"70935"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"120618","_from":"52809","_to":"70842"} +{"$label":"ACTS_IN","name":"Aisha","type":"Role","_key":"89166","_from":"52814","_to":"52812"} +{"$label":"ACTS_IN","name":"Fahri","type":"Role","_key":"89165","_from":"52813","_to":"52812"} +{"$label":"ACTS_IN","name":"Zhao Di, Old","type":"Role","_key":"89169","_from":"52817","_to":"52815"} +{"$label":"ACTS_IN","name":"Luo Changyu","type":"Role","_key":"89168","_from":"52816","_to":"52815"} +{"$label":"DIRECTED","_key":"89171","_from":"52819","_to":"52818"} +{"$label":"DIRECTED","_key":"101309","_from":"52819","_to":"59645"} +{"$label":"DIRECTED","_key":"94788","_from":"52819","_to":"55823"} +{"$label":"ACTS_IN","name":"Gordon Bloomfeld","type":"Role","_key":"89181","_from":"52821","_to":"52820"} +{"$label":"DIRECTED","_key":"89208","_from":"52825","_to":"52824"} +{"$label":"ACTS_IN","name":"Raffi Brunetti","type":"Role","_key":"89218","_from":"52830","_to":"52828"} +{"$label":"ACTS_IN","name":"Chiara Brunetti","type":"Role","_key":"89217","_from":"52829","_to":"52828"} +{"$label":"ACTS_IN","name":"Zhao Yun","type":"Role","_key":"89229","_from":"52835","_to":"52831"} +{"$label":"ACTS_IN","name":"Gan Xing","type":"Role","_key":"89227","_from":"52834","_to":"52831"} +{"$label":"ACTS_IN","name":"Xiao Qiao","type":"Role","_key":"89226","_from":"52833","_to":"52831"} +{"$label":"ACTS_IN","name":"Cao Cao","type":"Role","_key":"89225","_from":"52832","_to":"52831"} +{"$label":"ACTS_IN","name":"Alberto","type":"Role","_key":"89232","_from":"52839","_to":"52837"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"89231","_from":"52838","_to":"52837"} +{"$label":"ACTS_IN","name":"Nike","type":"Role","_key":"89407","_from":"52838","_to":"52924"} +{"$label":"DIRECTED","_key":"89240","_from":"52843","_to":"52840"} +{"$label":"ACTS_IN","name":"Ed Thompson","type":"Role","_key":"89239","_from":"52842","_to":"52840"} +{"$label":"ACTS_IN","name":"Debbie Thompson","type":"Role","_key":"89237","_from":"52841","_to":"52840"} +{"$label":"ACTS_IN","name":"Gwendoline","type":"Role","_key":"120024","_from":"52841","_to":"70489"} +{"$label":"ACTS_IN","name":"Linda Brewster","type":"Role","_key":"114593","_from":"52841","_to":"67502"} +{"$label":"DIRECTED","_key":"114721","_from":"52843","_to":"67571"} +{"$label":"DIRECTED","_key":"89253","_from":"52847","_to":"52845"} +{"$label":"ACTS_IN","name":"Byam","type":"Role","_key":"89251","_from":"52846","_to":"52845"} +{"$label":"ACTS_IN","name":"The President","type":"Role","_key":"111448","_from":"52846","_to":"65805"} +{"$label":"ACTS_IN","name":"Sanna","type":"Role","_key":"89263","_from":"52851","_to":"52849"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"89261","_from":"52850","_to":"52849"} +{"$label":"DIRECTED","_key":"89266","_from":"52853","_to":"52852"} +{"$label":"DIRECTED","_key":"89272","_from":"52855","_to":"52854"} +{"$label":"DIRECTED","_key":"89278","_from":"52858","_to":"52857"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89289","_from":"52862","_to":"52859"} +{"$label":"ACTS_IN","name":"Caoudal","type":"Role","_key":"89284","_from":"52861","_to":"52859"} +{"$label":"ACTS_IN","name":"Ocle C\u00e9zaire","type":"Role","_key":"89282","_from":"52860","_to":"52859"} +{"$label":"ACTS_IN","name":"Jean-Christophe","type":"Role","_key":"89973","_from":"52861","_to":"53224"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"89306","_from":"52868","_to":"52867"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"111371","_from":"52868","_to":"65768"} +{"$label":"ACTS_IN","name":"Latika","type":"Role","_key":"89323","_from":"52876","_to":"52870"} +{"$label":"ACTS_IN","name":"Vision Mixer","type":"Role","_key":"89322","_from":"52875","_to":"52870"} +{"$label":"ACTS_IN","name":"Director (as Raj Zutshi)","type":"Role","_key":"89321","_from":"52874","_to":"52870"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"89318","_from":"52873","_to":"52870"} +{"$label":"ACTS_IN","name":"Prem Kumar","type":"Role","_key":"89317","_from":"52872","_to":"52870"} +{"$label":"DIRECTED","_key":"89315","_from":"52871","_to":"52870"} +{"$label":"ACTS_IN","name":"Robert D'Costa aka R.D.","type":"Role","_key":"120758","_from":"52872","_to":"70935"} +{"$label":"ACTS_IN","name":"Rajan Mathur","type":"Role","_key":"110544","_from":"52872","_to":"65318"} +{"$label":"ACTS_IN","name":"Bhaiyyaji","type":"Role","_key":"98975","_from":"52872","_to":"58310"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"121556","_from":"52874","_to":"71418"} +{"$label":"ACTS_IN","name":"Mahesh Verma","type":"Role","_key":"120875","_from":"52874","_to":"70973"} +{"$label":"ACTS_IN","name":"Tamao","type":"Role","_key":"89327","_from":"52878","_to":"52877"} +{"$label":"DIRECTED","_key":"89340","_from":"52882","_to":"52881"} +{"$label":"ACTS_IN","name":"Melanie Isaacs","type":"Role","_key":"89349","_from":"52886","_to":"52883"} +{"$label":"ACTS_IN","name":"Soraya","type":"Role","_key":"89348","_from":"52885","_to":"52883"} +{"$label":"DIRECTED","_key":"89345","_from":"52884","_to":"52883"} +{"$label":"ACTS_IN","name":"Astarte","type":"Role","_key":"94751","_from":"52885","_to":"55802"} +{"$label":"DIRECTED","_key":"89364","_from":"52889","_to":"52888"} +{"$label":"ACTS_IN","name":"Milkas Vater","type":"Role","_key":"89374","_from":"52900","_to":"52890"} +{"$label":"ACTS_IN","name":"Milkas Mutter","type":"Role","_key":"89373","_from":"52899","_to":"52890"} +{"$label":"ACTS_IN","name":"Constantin","type":"Role","_key":"89372","_from":"52898","_to":"52890"} +{"$label":"ACTS_IN","name":"Silviu","type":"Role","_key":"89371","_from":"52897","_to":"52890"} +{"$label":"ACTS_IN","name":"Andrej","type":"Role","_key":"89370","_from":"52896","_to":"52890"} +{"$label":"ACTS_IN","name":"Nicu","type":"Role","_key":"89369","_from":"52895","_to":"52890"} +{"$label":"ACTS_IN","name":"Milka","type":"Role","_key":"89368","_from":"52894","_to":"52890"} +{"$label":"ACTS_IN","name":"Cristu","type":"Role","_key":"89367","_from":"52893","_to":"52890"} +{"$label":"ACTS_IN","name":"Bica","type":"Role","_key":"89366","_from":"52892","_to":"52890"} +{"$label":"DIRECTED","_key":"89365","_from":"52891","_to":"52890"} +{"$label":"ACTS_IN","name":"Gruber","type":"Role","_key":"99196","_from":"52893","_to":"58439"} +{"$label":"ACTS_IN","name":"Philipp","type":"Role","_key":"89380","_from":"52903","_to":"52901"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"89379","_from":"52902","_to":"52901"} +{"$label":"ACTS_IN","name":"Mikhail","type":"Role","_key":"89385","_from":"52909","_to":"52904"} +{"$label":"ACTS_IN","name":"G\u00fclefer","type":"Role","_key":"89384","_from":"52908","_to":"52904"} +{"$label":"ACTS_IN","name":"Eka","type":"Role","_key":"89383","_from":"52907","_to":"52904"} +{"$label":"ACTS_IN","name":"Yusuf","type":"Role","_key":"89382","_from":"52906","_to":"52904"} +{"$label":"DIRECTED","_key":"89381","_from":"52905","_to":"52904"} +{"$label":"ACTS_IN","name":"Fazil","type":"Role","_key":"89391","_from":"52914","_to":"52911"} +{"$label":"ACTS_IN","name":"Mihram","type":"Role","_key":"89390","_from":"52913","_to":"52911"} +{"$label":"DIRECTED","_key":"89389","_from":"52912","_to":"52911"} +{"$label":"DIRECTED","_key":"107761","_from":"52912","_to":"63633"} +{"$label":"ACTS_IN","name":"Marcella","type":"Role","_key":"89401","_from":"52920","_to":"52916"} +{"$label":"ACTS_IN","name":"Giovanna","type":"Role","_key":"89397","_from":"52919","_to":"52916"} +{"$label":"ACTS_IN","name":"Prof. Michele Casali","type":"Role","_key":"89396","_from":"52918","_to":"52916"} +{"$label":"DIRECTED","_key":"89395","_from":"52917","_to":"52916"} +{"$label":"DIRECTED","_key":"89403","_from":"52923","_to":"52921"} +{"$label":"DIRECTED","_key":"89402","_from":"52922","_to":"52921"} +{"$label":"ACTS_IN","name":"Gabriele's Girlfriend","type":"Role","_key":"89416","_from":"52932","_to":"52924"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"89415","_from":"52931","_to":"52924"} +{"$label":"ACTS_IN","name":"Andrologist","type":"Role","_key":"89414","_from":"52930","_to":"52924"} +{"$label":"ACTS_IN","name":"Mario's Lover #2","type":"Role","_key":"89413","_from":"52929","_to":"52924"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"89411","_from":"52928","_to":"52924"} +{"$label":"ACTS_IN","name":"Gabriele","type":"Role","_key":"89410","_from":"52927","_to":"52924"} +{"$label":"ACTS_IN","name":"Veronica's Mother","type":"Role","_key":"89408","_from":"52926","_to":"52924"} +{"$label":"DIRECTED","_key":"89404","_from":"52925","_to":"52924"} +{"$label":"DIRECTED","_key":"105693","_from":"52925","_to":"62212"} +{"$label":"ACTS_IN","name":"Mara","type":"Role","_key":"89442","_from":"52930","_to":"52953"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"89437","_from":"52931","_to":"52953"} +{"$label":"DIRECTED","_key":"89417","_from":"52934","_to":"52933"} +{"$label":"DIRECTED","_key":"89418","_from":"52936","_to":"52935"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"89432","_from":"52949","_to":"52937"} +{"$label":"ACTS_IN","name":"Yoshie","type":"Role","_key":"89431","_from":"52948","_to":"52937"} +{"$label":"ACTS_IN","name":"Kumiko","type":"Role","_key":"89429","_from":"52947","_to":"52937"} +{"$label":"ACTS_IN","name":"Kayo","type":"Role","_key":"89428","_from":"52946","_to":"52937"} +{"$label":"ACTS_IN","name":"Anchorman","type":"Role","_key":"89427","_from":"52945","_to":"52937"} +{"$label":"ACTS_IN","name":"Ponyo's Sisters","type":"Role","_key":"89426","_from":"52944","_to":"52937"} +{"$label":"ACTS_IN","name":"Koichi","type":"Role","_key":"89425","_from":"52943","_to":"52937"} +{"$label":"ACTS_IN","name":"Grandmammare","type":"Role","_key":"89424","_from":"52942","_to":"52937"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"89423","_from":"52941","_to":"52937"} +{"$label":"ACTS_IN","name":"Fujimoto","type":"Role","_key":"89422","_from":"52940","_to":"52937"} +{"$label":"ACTS_IN","name":"Sosuke","type":"Role","_key":"89421","_from":"52939","_to":"52937"} +{"$label":"ACTS_IN","name":"Ponyo","type":"Role","_key":"89420","_from":"52938","_to":"52937"} +{"$label":"ACTS_IN","name":"Fujihara Sensei","type":"Role","_key":"107985","_from":"52944","_to":"63772"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"89435","_from":"52952","_to":"52950"} +{"$label":"DIRECTED","_key":"89434","_from":"52951","_to":"52950"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89448","_from":"52961","_to":"52953"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"89447","_from":"52960","_to":"52953"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"89446","_from":"52959","_to":"52953"} +{"$label":"ACTS_IN","name":"Valentina","type":"Role","_key":"89445","_from":"52958","_to":"52953"} +{"$label":"ACTS_IN","name":"Aris","type":"Role","_key":"89441","_from":"52957","_to":"52953"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"89440","_from":"52956","_to":"52953"} +{"$label":"ACTS_IN","name":"Elio Fioravanti","type":"Role","_key":"89439","_from":"52955","_to":"52953"} +{"$label":"DIRECTED","_key":"89436","_from":"52954","_to":"52953"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"115389","_from":"52955","_to":"67943"} +{"$label":"DIRECTED","_key":"89449","_from":"52963","_to":"52962"} +{"$label":"ACTS_IN","name":"TV Reporter","type":"Role","_key":"89459","_from":"52970","_to":"52964"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"89457","_from":"52969","_to":"52964"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"89456","_from":"52968","_to":"52964"} +{"$label":"ACTS_IN","name":"Ocho","type":"Role","_key":"89455","_from":"52967","_to":"52964"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89452","_from":"52966","_to":"52964"} +{"$label":"DIRECTED","_key":"89450","_from":"52965","_to":"52964"} +{"$label":"ACTS_IN","name":"Lynette","type":"Role","_key":"89469","_from":"52972","_to":"52971"} +{"$label":"ACTS_IN","name":"June Boatwright","type":"Role","_key":"91813","_from":"52972","_to":"54159"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"89479","_from":"52979","_to":"52973"} +{"$label":"ACTS_IN","name":"Indian Joe","type":"Role","_key":"89478","_from":"52978","_to":"52973"} +{"$label":"ACTS_IN","name":"Muff Potter","type":"Role","_key":"89477","_from":"52977","_to":"52973"} +{"$label":"ACTS_IN","name":"Becky Thatcher","type":"Role","_key":"89475","_from":"52976","_to":"52973"} +{"$label":"ACTS_IN","name":"Tom Sawyer","type":"Role","_key":"89473","_from":"52975","_to":"52973"} +{"$label":"DIRECTED","_key":"89471","_from":"52974","_to":"52973"} +{"$label":"ACTS_IN","name":"Frau Weldon","type":"Role","_key":"89492","_from":"52983","_to":"52981"} +{"$label":"ACTS_IN","name":"Dick Sand","type":"Role","_key":"89489","_from":"52982","_to":"52981"} +{"$label":"ACTS_IN","name":"Dona Genoveva","type":"Role","_key":"89496","_from":"52987","_to":"52985"} +{"$label":"DIRECTED","_key":"89493","_from":"52986","_to":"52985"} +{"$label":"ACTS_IN","name":"ricky","type":"Role","_key":"89499","_from":"52990","_to":"52988"} +{"$label":"ACTS_IN","name":"marie anne","type":"Role","_key":"89498","_from":"52989","_to":"52988"} +{"$label":"ACTS_IN","name":"Reg Cattermole","type":"Role","_key":"89538","_from":"52996","_to":"52992"} +{"$label":"ACTS_IN","name":"George Weasley","type":"Role","_key":"89531","_from":"52995","_to":"52992"} +{"$label":"ACTS_IN","name":"Luna Lovegood","type":"Role","_key":"89523","_from":"52994","_to":"52992"} +{"$label":"ACTS_IN","name":"Gellert Grindelwald","type":"Role","_key":"89519","_from":"52993","_to":"52992"} +{"$label":"ACTS_IN","name":"Caius","type":"Role","_key":"115509","_from":"52993","_to":"67997"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"109558","_from":"52993","_to":"64710"} +{"$label":"DIRECTED","_key":"89557","_from":"53000","_to":"52998"} +{"$label":"ACTS_IN","name":"Mme Corlet","type":"Role","_key":"89556","_from":"52999","_to":"52998"} +{"$label":"ACTS_IN","name":"Clopin","type":"Role","_key":"89569","_from":"53003","_to":"53002"} +{"$label":"ACTS_IN","name":"Annabelle","type":"Role","_key":"89578","_from":"53007","_to":"53004"} +{"$label":"ACTS_IN","name":"Moreno","type":"Role","_key":"89575","_from":"53006","_to":"53004"} +{"$label":"DIRECTED","_key":"89573","_from":"53005","_to":"53004"} +{"$label":"ACTS_IN","name":"L'inspecteur Vivant","type":"Role","_key":"105221","_from":"53006","_to":"61923"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"102855","_from":"53006","_to":"60509"} +{"$label":"DIRECTED","_key":"89586","_from":"53010","_to":"53008"} +{"$label":"ACTS_IN","name":"Captain Good","type":"Role","_key":"89582","_from":"53009","_to":"53008"} +{"$label":"DIRECTED","_key":"114780","_from":"53010","_to":"67606"} +{"$label":"DIRECTED","_key":"111452","_from":"53010","_to":"65807"} +{"$label":"DIRECTED","_key":"89588","_from":"53013","_to":"53011"} +{"$label":"ACTS_IN","name":"Lady Tara","type":"Role","_key":"89587","_from":"53012","_to":"53011"} +{"$label":"ACTS_IN","name":"Didier Varence","type":"Role","_key":"89594","_from":"53017","_to":"53014"} +{"$label":"ACTS_IN","name":"Rapha\u00ebl Mallois","type":"Role","_key":"89592","_from":"53016","_to":"53014"} +{"$label":"DIRECTED","_key":"89589","_from":"53015","_to":"53014"} +{"$label":"ACTS_IN","name":"Lionel","type":"Role","_key":"89613","_from":"53019","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89612","_from":"53036","_to":"53018"} +{"$label":"ACTS_IN","name":"Videostore traeder","type":"Role","_key":"89611","_from":"53035","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89610","_from":"53034","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89609","_from":"53033","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89608","_from":"53032","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89607","_from":"53031","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89606","_from":"53030","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89605","_from":"53029","_to":"53018"} +{"$label":"ACTS_IN","name":"Guy in the Museum","type":"Role","_key":"89604","_from":"53028","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89603","_from":"53027","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89602","_from":"53026","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89601","_from":"53025","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89600","_from":"53024","_to":"53018"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"89599","_from":"53023","_to":"53018"} +{"$label":"ACTS_IN","name":"Rui","type":"Role","_key":"89598","_from":"53022","_to":"53018"} +{"$label":"ACTS_IN","name":"Lo\u00efc","type":"Role","_key":"89597","_from":"53021","_to":"53018"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89596","_from":"53020","_to":"53018"} +{"$label":"DIRECTED","_key":"89595","_from":"53019","_to":"53018"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"89634","_from":"53051","_to":"53037"} +{"$label":"ACTS_IN","name":"Dr. Simon Griffith","type":"Role","_key":"89633","_from":"53050","_to":"53037"} +{"$label":"ACTS_IN","name":"Ange","type":"Role","_key":"89632","_from":"53049","_to":"53037"} +{"$label":"ACTS_IN","name":"Dinah","type":"Role","_key":"89631","_from":"53048","_to":"53037"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"89630","_from":"53047","_to":"53037"} +{"$label":"ACTS_IN","name":"Neville","type":"Role","_key":"89629","_from":"53046","_to":"53037"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"89628","_from":"53045","_to":"53037"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"89626","_from":"53044","_to":"53037"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"89625","_from":"53043","_to":"53037"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"89624","_from":"53042","_to":"53037"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"89622","_from":"53041","_to":"53037"} +{"$label":"ACTS_IN","name":"C\u00e9cile","type":"Role","_key":"89621","_from":"53040","_to":"53037"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"89620","_from":"53039","_to":"53037"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"89618","_from":"53038","_to":"53037"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"111810","_from":"53038","_to":"66002"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"110975","_from":"53045","_to":"65545"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"111522","_from":"53047","_to":"65842"} +{"$label":"ACTS_IN","name":"Nicolas Morb\u00e9","type":"Role","_key":"89653","_from":"53053","_to":"53052"} +{"$label":"ACTS_IN","name":"Herv\u00e9","type":"Role","_key":"89652","_from":"53066","_to":"53052"} +{"$label":"ACTS_IN","name":"Commissaire","type":"Role","_key":"89651","_from":"53065","_to":"53052"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"89650","_from":"53064","_to":"53052"} +{"$label":"ACTS_IN","name":"Marchand","type":"Role","_key":"89649","_from":"53063","_to":"53052"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"89648","_from":"53062","_to":"53052"} +{"$label":"ACTS_IN","name":"Armurier","type":"Role","_key":"89647","_from":"53061","_to":"53052"} +{"$label":"ACTS_IN","name":"Alex Derou\u00e8re, le fr\u00e8re d'Antoine","type":"Role","_key":"89646","_from":"53060","_to":"53052"} +{"$label":"ACTS_IN","name":"Mireille, la logeuse","type":"Role","_key":"89645","_from":"53059","_to":"53052"} +{"$label":"ACTS_IN","name":"M. Derou\u00e8re, le p\u00e8re d'Antoine","type":"Role","_key":"89644","_from":"53058","_to":"53052"} +{"$label":"ACTS_IN","name":"Julie Derou\u00e8re, la femme d'Antoine","type":"Role","_key":"89643","_from":"53057","_to":"53052"} +{"$label":"ACTS_IN","name":"L'Anglais","type":"Role","_key":"89642","_from":"53056","_to":"53052"} +{"$label":"ACTS_IN","name":"Mme Derou\u00e8re, la m\u00e8re d'Antoine","type":"Role","_key":"89641","_from":"53055","_to":"53052"} +{"$label":"ACTS_IN","name":"Antoine Derou\u00e8re","type":"Role","_key":"89639","_from":"53054","_to":"53052"} +{"$label":"DIRECTED","_key":"89635","_from":"53053","_to":"53052"} +{"$label":"DIRECTED","_key":"112068","_from":"53054","_to":"66172"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"114584","_from":"53056","_to":"67500"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"112072","_from":"53057","_to":"66172"} +{"$label":"ACTS_IN","name":"Speaker \/ Himself - Director \/ Speaker \/ The Perfect Man \/ Speaker \/ Speaker \/ J\u00f8rgen Leth \/ The Perfect Human \/ Speaker","type":"Role","_key":"89674","_from":"53068","_to":"53067"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"89673","_from":"53080","_to":"53067"} +{"$label":"ACTS_IN","name":"Naked Woman - from \"Notater om k\u00e6rligheden\" 1989 featured in segment \"Obstruction #4 - The Perfect Human: Cartoon\"","type":"Role","_key":"89672","_from":"53079","_to":"53067"} +{"$label":"ACTS_IN","name":"Man with jacket, from \"Notater om k\u00e6rligheden\" 1989 featured in segment \"Obstruction #4 - The Perfect Human","type":"Role","_key":"89671","_from":"53078","_to":"53067"} +{"$label":"ACTS_IN","name":"Gangster from \"Det gode og det onde\" 1975 featured in segment \"Obstruction #4 - The Perfect Human: Cartoon\"","type":"Role","_key":"89669","_from":"53077","_to":"53067"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"89668","_from":"53076","_to":"53067"} +{"$label":"ACTS_IN","name":"Couple","type":"Role","_key":"89667","_from":"53075","_to":"53067"} +{"$label":"ACTS_IN","name":"Couple","type":"Role","_key":"89666","_from":"53074","_to":"53067"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89664","_from":"53073","_to":"53067"} +{"$label":"ACTS_IN","name":"The Perfect Man","type":"Role","_key":"89661","_from":"53072","_to":"53067"} +{"$label":"ACTS_IN","name":"The Perfect Woman","type":"Role","_key":"89660","_from":"53071","_to":"53067"} +{"$label":"ACTS_IN","name":"The Perfect Woman, from 'Det perfekte menneske' 1967)","type":"Role","_key":"89659","_from":"53070","_to":"53067"} +{"$label":"ACTS_IN","name":"The Perfect Man - from 'Det perfekte menneske' 1967","type":"Role","_key":"89657","_from":"53069","_to":"53067"} +{"$label":"DIRECTED","_key":"89655","_from":"53068","_to":"53067"} +{"$label":"ACTS_IN","name":"Ben Dumoulin","type":"Role","_key":"89686","_from":"53087","_to":"53081"} +{"$label":"ACTS_IN","name":"Kathrin Zollweger","type":"Role","_key":"89684","_from":"53086","_to":"53081"} +{"$label":"ACTS_IN","name":"Evelyne Carter","type":"Role","_key":"89683","_from":"53085","_to":"53081"} +{"$label":"ACTS_IN","name":"Mahaut Dumoulin","type":"Role","_key":"89682","_from":"53084","_to":"53081"} +{"$label":"ACTS_IN","name":"Mahaut Dumoulin","type":"Role","_key":"89681","_from":"53083","_to":"53081"} +{"$label":"ACTS_IN","name":"Sebastian Zollweger","type":"Role","_key":"89680","_from":"53082","_to":"53081"} +{"$label":"ACTS_IN","name":"Hideyoshi Toyotomi","type":"Role","_key":"89692","_from":"53091","_to":"53088"} +{"$label":"ACTS_IN","name":"Urakusai Oda","type":"Role","_key":"89691","_from":"53090","_to":"53088"} +{"$label":"ACTS_IN","name":"Honkakubo","type":"Role","_key":"89688","_from":"53089","_to":"53088"} +{"$label":"ACTS_IN","name":"Sayako","type":"Role","_key":"89701","_from":"53098","_to":"53092"} +{"$label":"ACTS_IN","name":"Kayo","type":"Role","_key":"89700","_from":"53097","_to":"53092"} +{"$label":"ACTS_IN","name":"Shino's father","type":"Role","_key":"89699","_from":"53096","_to":"53092"} +{"$label":"ACTS_IN","name":"Tetsuro's mother","type":"Role","_key":"89698","_from":"53095","_to":"53092"} +{"$label":"ACTS_IN","name":"Tetsuro's father","type":"Role","_key":"89697","_from":"53094","_to":"53092"} +{"$label":"ACTS_IN","name":"Shino","type":"Role","_key":"89695","_from":"53093","_to":"53092"} +{"$label":"ACTS_IN","name":"Keiko Mitani","type":"Role","_key":"89702","_from":"53093","_to":"53099"} +{"$label":"ACTS_IN","name":"Yukio","type":"Role","_key":"89706","_from":"53102","_to":"53099"} +{"$label":"ACTS_IN","name":"Hideo Takeuchi","type":"Role","_key":"89705","_from":"53101","_to":"53099"} +{"$label":"ACTS_IN","name":"Osaki as young woman","type":"Role","_key":"89703","_from":"53100","_to":"53099"} +{"$label":"DIRECTED","_key":"89712","_from":"53108","_to":"53103"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89711","_from":"53107","_to":"53103"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89710","_from":"53106","_to":"53103"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89709","_from":"53105","_to":"53103"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"89708","_from":"53104","_to":"53103"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"89726","_from":"53113","_to":"53110"} +{"$label":"ACTS_IN","name":"Zainab","type":"Role","_key":"89723","_from":"53112","_to":"53110"} +{"$label":"ACTS_IN","name":"Tarek Khalil","type":"Role","_key":"89722","_from":"53111","_to":"53110"} +{"$label":"DIRECTED","_key":"89728","_from":"53115","_to":"53114"} +{"$label":"ACTS_IN","name":"Lt. John Masterson","type":"Role","_key":"89739","_from":"53118","_to":"53117"} +{"$label":"DIRECTED","_key":"89745","_from":"53124","_to":"53119"} +{"$label":"ACTS_IN","name":"Aunt (voice)","type":"Role","_key":"89744","_from":"53123","_to":"53119"} +{"$label":"ACTS_IN","name":"Mother (voice)","type":"Role","_key":"89743","_from":"53122","_to":"53119"} +{"$label":"ACTS_IN","name":"Setsuko (voice)","type":"Role","_key":"89742","_from":"53121","_to":"53119"} +{"$label":"ACTS_IN","name":"Seita (voice)","type":"Role","_key":"89741","_from":"53120","_to":"53119"} +{"$label":"DIRECTED","_key":"107979","_from":"53124","_to":"63772"} +{"$label":"DIRECTED","_key":"103861","_from":"53124","_to":"61079"} +{"$label":"DIRECTED","_key":"103109","_from":"53124","_to":"60650"} +{"$label":"DIRECTED","_key":"89757","_from":"53127","_to":"53126"} +{"$label":"ACTS_IN","name":"Franz","type":"Role","_key":"89759","_from":"53129","_to":"53128"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"91649","_from":"53129","_to":"54047"} +{"$label":"DIRECTED","_key":"89768","_from":"53132","_to":"53130"} +{"$label":"ACTS_IN","name":"Hsiao Mi (The Boss)","type":"Role","_key":"89766","_from":"53131","_to":"53130"} +{"$label":"ACTS_IN","name":"Zeitungsverk\u00e4uferin","type":"Role","_key":"89772","_from":"53134","_to":"53133"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"89781","_from":"53137","_to":"53136"} +{"$label":"ACTS_IN","name":"Ed Waxman","type":"Role","_key":"118744","_from":"53137","_to":"69825"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"100828","_from":"53137","_to":"59442"} +{"$label":"DIRECTED","_key":"89789","_from":"53141","_to":"53138"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"89787","_from":"53140","_to":"53138"} +{"$label":"ACTS_IN","name":"Caroline McKeever","type":"Role","_key":"89786","_from":"53139","_to":"53138"} +{"$label":"DIRECTED","_key":"89790","_from":"53143","_to":"53142"} +{"$label":"DIRECTED","_key":"100899","_from":"53143","_to":"59482"} +{"$label":"ACTS_IN","name":"Innkeeper's Brother","type":"Role","_key":"89804","_from":"53149","_to":"53144"} +{"$label":"ACTS_IN","name":"Innkeeper","type":"Role","_key":"89803","_from":"53148","_to":"53144"} +{"$label":"ACTS_IN","name":"Nose","type":"Role","_key":"89802","_from":"53147","_to":"53144"} +{"$label":"ACTS_IN","name":"Female Ozaki","type":"Role","_key":"89801","_from":"53146","_to":"53144"} +{"$label":"ACTS_IN","name":"Minami","type":"Role","_key":"89799","_from":"53145","_to":"53144"} +{"$label":"DIRECTED","_key":"89831","_from":"53154","_to":"53152"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"89827","_from":"53153","_to":"53152"} +{"$label":"ACTS_IN","name":"Piede D'Oro","type":"Role","_key":"89838","_from":"53160","_to":"53155"} +{"$label":"ACTS_IN","name":"Il Moicano","type":"Role","_key":"89837","_from":"53159","_to":"53155"} +{"$label":"ACTS_IN","name":"Ascenza","type":"Role","_key":"89835","_from":"53158","_to":"53155"} +{"$label":"ACTS_IN","name":"Maddalena","type":"Role","_key":"89834","_from":"53157","_to":"53155"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"89833","_from":"53156","_to":"53155"} +{"$label":"ACTS_IN","name":"Cho","type":"Role","_key":"89847","_from":"53167","_to":"53161"} +{"$label":"ACTS_IN","name":"Weckstr\u00f6m","type":"Role","_key":"89846","_from":"53166","_to":"53161"} +{"$label":"ACTS_IN","name":"Demoni","type":"Role","_key":"89845","_from":"53165","_to":"53161"} +{"$label":"ACTS_IN","name":"Ronja","type":"Role","_key":"89843","_from":"53164","_to":"53161"} +{"$label":"ACTS_IN","name":"Kai","type":"Role","_key":"89841","_from":"53163","_to":"53161"} +{"$label":"DIRECTED","_key":"89840","_from":"53162","_to":"53161"} +{"$label":"DIRECTED","_key":"107664","_from":"53162","_to":"63547"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"107666","_from":"53163","_to":"63547"} +{"$label":"ACTS_IN","name":"Detective Nakao","type":"Role","_key":"89855","_from":"53170","_to":"53168"} +{"$label":"ACTS_IN","name":"Chief Detective 'Bos'n' Taguchi","type":"Role","_key":"89854","_from":"53169","_to":"53168"} +{"$label":"DIRECTED","_key":"89860","_from":"53172","_to":"53171"} +{"$label":"ACTS_IN","name":"Page","type":"Role","_key":"89877","_from":"53187","_to":"53173"} +{"$label":"ACTS_IN","name":"G\u00e4rtner","type":"Role","_key":"89874","_from":"53186","_to":"53173"} +{"$label":"ACTS_IN","name":"Bauer","type":"Role","_key":"89873","_from":"53185","_to":"53173"} +{"$label":"ACTS_IN","name":"W\u00e4chter","type":"Role","_key":"89872","_from":"53184","_to":"53173"} +{"$label":"ACTS_IN","name":"Page","type":"Role","_key":"89871","_from":"53183","_to":"53173"} +{"$label":"ACTS_IN","name":"Page","type":"Role","_key":"89870","_from":"53182","_to":"53173"} +{"$label":"ACTS_IN","name":"Page","type":"Role","_key":"89869","_from":"53181","_to":"53173"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"89868","_from":"53180","_to":"53173"} +{"$label":"ACTS_IN","name":"Schlo\u00dfhauptmann","type":"Role","_key":"89866","_from":"53179","_to":"53173"} +{"$label":"ACTS_IN","name":"Amme","type":"Role","_key":"89865","_from":"53178","_to":"53173"} +{"$label":"ACTS_IN","name":"Der b\u00f6se Zwerg","type":"Role","_key":"89864","_from":"53177","_to":"53173"} +{"$label":"ACTS_IN","name":"Der sch\u00f6ne Prinz \/ B\u00e4r","type":"Role","_key":"89863","_from":"53176","_to":"53173"} +{"$label":"ACTS_IN","name":"Die hochm\u00fctige Prinzessin","type":"Role","_key":"89862","_from":"53175","_to":"53173"} +{"$label":"DIRECTED","_key":"89861","_from":"53174","_to":"53173"} +{"$label":"DIRECTED","_key":"89882","_from":"53191","_to":"53188"} +{"$label":"ACTS_IN","name":"Choubei Kusaka","type":"Role","_key":"89880","_from":"53190","_to":"53188"} +{"$label":"ACTS_IN","name":"Tomoe Iinuma","type":"Role","_key":"89879","_from":"53189","_to":"53188"} +{"$label":"DIRECTED","_key":"89890","_from":"53199","_to":"53192"} +{"$label":"ACTS_IN","name":"Fanis Iakovidis (17 years old)","type":"Role","_key":"89888","_from":"53198","_to":"53192"} +{"$label":"ACTS_IN","name":"Granpa","type":"Role","_key":"89887","_from":"53197","_to":"53192"} +{"$label":"ACTS_IN","name":"Uncle Emilios","type":"Role","_key":"89886","_from":"53196","_to":"53192"} +{"$label":"ACTS_IN","name":"Mustafa","type":"Role","_key":"89885","_from":"53195","_to":"53192"} +{"$label":"ACTS_IN","name":"Soultana Iakovidou","type":"Role","_key":"89884","_from":"53194","_to":"53192"} +{"$label":"ACTS_IN","name":"Savvas Iakovidis","type":"Role","_key":"89883","_from":"53193","_to":"53192"} +{"$label":"DIRECTED","_key":"89908","_from":"53204","_to":"53202"} +{"$label":"ACTS_IN","name":"Col. William T. Hickock","type":"Role","_key":"89907","_from":"53203","_to":"53202"} +{"$label":"DIRECTED","_key":"112306","_from":"53204","_to":"66307"} +{"$label":"ACTS_IN","name":"Isela","type":"Role","_key":"89924","_from":"53208","_to":"53207"} +{"$label":"ACTS_IN","name":"Livia Maria Dolores","type":"Role","_key":"89928","_from":"53210","_to":"53209"} +{"$label":"ACTS_IN","name":"Jorgen","type":"Role","_key":"89950","_from":"53217","_to":"53214"} +{"$label":"ACTS_IN","name":"Ghode","type":"Role","_key":"89949","_from":"53216","_to":"53214"} +{"$label":"ACTS_IN","name":"A.C.","type":"Role","_key":"89948","_from":"53215","_to":"53214"} +{"$label":"ACTS_IN","name":"Charles Pollock","type":"Role","_key":"89960","_from":"53219","_to":"53218"} +{"$label":"ACTS_IN","name":"Helena Moguentes","type":"Role","_key":"89965","_from":"53223","_to":"53222"} +{"$label":"ACTS_IN","name":"La coll\u00e8gue de Marie-Jo","type":"Role","_key":"89976","_from":"53230","_to":"53224"} +{"$label":"ACTS_IN","name":"Mrs. Fauvelet","type":"Role","_key":"89975","_from":"53229","_to":"53224"} +{"$label":"ACTS_IN","name":"Sylvain","type":"Role","_key":"89974","_from":"53228","_to":"53224"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"89971","_from":"53227","_to":"53224"} +{"$label":"ACTS_IN","name":"Marie-Jo","type":"Role","_key":"89969","_from":"53226","_to":"53224"} +{"$label":"DIRECTED","_key":"89968","_from":"53225","_to":"53224"} +{"$label":"ACTS_IN","name":"Manuela Lopez","type":"Role","_key":"120544","_from":"53226","_to":"70795"} +{"$label":"ACTS_IN","name":"Herv\u00e9","type":"Role","_key":"104022","_from":"53228","_to":"61197"} +{"$label":"ACTS_IN","name":"B\u00fcrgermeister Matthias","type":"Role","_key":"89984","_from":"53237","_to":"53231"} +{"$label":"ACTS_IN","name":"Polizist Django","type":"Role","_key":"89982","_from":"53236","_to":"53231"} +{"$label":"ACTS_IN","name":"Polizist Bene","type":"Role","_key":"89981","_from":"53235","_to":"53231"} +{"$label":"ACTS_IN","name":"Pfarrer Anton Selbertinger","type":"Role","_key":"89980","_from":"53234","_to":"53231"} +{"$label":"ACTS_IN","name":"Theophile","type":"Role","_key":"89979","_from":"53233","_to":"53231"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"89978","_from":"53232","_to":"53231"} +{"$label":"ACTS_IN","name":"Campanez","type":"Role","_key":"89999","_from":"53242","_to":"53238"} +{"$label":"ACTS_IN","name":"Matteo Gallone","type":"Role","_key":"89997","_from":"53241","_to":"53238"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"89996","_from":"53240","_to":"53238"} +{"$label":"DIRECTED","_key":"89986","_from":"53239","_to":"53238"} +{"$label":"ACTS_IN","name":"Brother Francisco","type":"Role","_key":"116257","_from":"53241","_to":"68442"} +{"$label":"ACTS_IN","name":"The Snow Fairy","type":"Role","_key":"90003","_from":"53246","_to":"53243"} +{"$label":"ACTS_IN","name":"Mother carrying child","type":"Role","_key":"90002","_from":"53245","_to":"53243"} +{"$label":"ACTS_IN","name":"Mother of 'I'","type":"Role","_key":"90001","_from":"53244","_to":"53243"} +{"$label":"ACTS_IN","name":"Mademoiselle Vicky","type":"Role","_key":"90010","_from":"53249","_to":"53247"} +{"$label":"DIRECTED","_key":"90008","_from":"53248","_to":"53247"} +{"$label":"DIRECTED","_key":"108845","_from":"53248","_to":"64330"} +{"$label":"DIRECTED","_key":"90023","_from":"53252","_to":"53251"} +{"$label":"DIRECTED","_key":"121601","_from":"53252","_to":"71440"} +{"$label":"DIRECTED","_key":"117540","_from":"53252","_to":"69106"} +{"$label":"DIRECTED","_key":"90031","_from":"53255","_to":"53253"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"90026","_from":"53254","_to":"53253"} +{"$label":"DIRECTED","_key":"104369","_from":"53255","_to":"61395"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"90035","_from":"53257","_to":"53256"} +{"$label":"DIRECTED","_key":"90051","_from":"53262","_to":"53260"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"90050","_from":"53261","_to":"53260"} +{"$label":"ACTS_IN","name":"Pizza Harris","type":"Role","_key":"90058","_from":"53265","_to":"53263"} +{"$label":"ACTS_IN","name":"Man in Grocery Store","type":"Role","_key":"90057","_from":"53264","_to":"53263"} +{"$label":"ACTS_IN","name":"Cartusian (voice)","type":"Role","_key":"93347","_from":"53265","_to":"54987"} +{"$label":"DIRECTED","_key":"90065","_from":"53271","_to":"53266"} +{"$label":"DIRECTED","_key":"90064","_from":"53270","_to":"53266"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"90063","_from":"53269","_to":"53266"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"90062","_from":"53268","_to":"53266"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"90061","_from":"53267","_to":"53266"} +{"$label":"ACTS_IN","name":"Pfc. Simms","type":"Role","_key":"90069","_from":"53273","_to":"53272"} +{"$label":"ACTS_IN","name":"Franz l'Acrobata","type":"Role","_key":"90077","_from":"53277","_to":"53274"} +{"$label":"ACTS_IN","name":"Hans l'Acrobata","type":"Role","_key":"90076","_from":"53276","_to":"53274"} +{"$label":"ACTS_IN","name":"Finch","type":"Role","_key":"90075","_from":"53275","_to":"53274"} +{"$label":"ACTS_IN","name":"Il supremo","type":"Role","_key":"90101","_from":"53275","_to":"53288"} +{"$label":"ACTS_IN","name":"Arnold Trotta","type":"Role","_key":"90084","_from":"53279","_to":"53278"} +{"$label":"DIRECTED","_key":"90090","_from":"53282","_to":"53280"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"90088","_from":"53281","_to":"53280"} +{"$label":"ACTS_IN","name":"Eduardo Sanchez","type":"Role","_key":"114583","_from":"53281","_to":"67500"} +{"$label":"ACTS_IN","name":"Henry Marsac","type":"Role","_key":"113500","_from":"53281","_to":"66874"} +{"$label":"ACTS_IN","name":"Nacho","type":"Role","_key":"90097","_from":"53287","_to":"53283"} +{"$label":"ACTS_IN","name":"Alyah","type":"Role","_key":"90093","_from":"53286","_to":"53283"} +{"$label":"ACTS_IN","name":"Ula","type":"Role","_key":"90092","_from":"53285","_to":"53283"} +{"$label":"ACTS_IN","name":"Dante","type":"Role","_key":"90091","_from":"53284","_to":"53283"} +{"$label":"ACTS_IN","name":"Miss Peabody","type":"Role","_key":"90102","_from":"53289","_to":"53288"} +{"$label":"ACTS_IN","name":"Kate McCallister","type":"Role","_key":"90118","_from":"53293","_to":"53291"} +{"$label":"ACTS_IN","name":"Kevin McCallister","type":"Role","_key":"90115","_from":"53292","_to":"53291"} +{"$label":"DIRECTED","_key":"90126","_from":"53298","_to":"53294"} +{"$label":"ACTS_IN","name":"Ernestina","type":"Role","_key":"90125","_from":"53297","_to":"53294"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"90123","_from":"53296","_to":"53294"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"90122","_from":"53295","_to":"53294"} +{"$label":"ACTS_IN","name":"Baron La Mouche","type":"Role","_key":"90134","_from":"53301","_to":"53300"} +{"$label":"ACTS_IN","name":"Whittier","type":"Role","_key":"90139","_from":"53303","_to":"53302"} +{"$label":"ACTS_IN","name":"Eric Yeung","type":"Role","_key":"90159","_from":"53309","_to":"53306"} +{"$label":"ACTS_IN","name":"Inspector Cheung","type":"Role","_key":"90158","_from":"53308","_to":"53306"} +{"$label":"ACTS_IN","name":"Commissioner Rebecca Fong","type":"Role","_key":"90157","_from":"53307","_to":"53306"} +{"$label":"ACTS_IN","name":"Yen Feier","type":"Role","_key":"100701","_from":"53307","_to":"59378"} +{"$label":"ACTS_IN","name":"Dr. Lee Sum Yee","type":"Role","_key":"99566","_from":"53307","_to":"58693"} +{"$label":"ACTS_IN","name":"Jet","type":"Role","_key":"117327","_from":"53308","_to":"69005"} +{"$label":"ACTS_IN","name":"Hung","type":"Role","_key":"114788","_from":"53308","_to":"67614"} +{"$label":"ACTS_IN","name":"Jet","type":"Role","_key":"103103","_from":"53308","_to":"60647"} +{"$label":"ACTS_IN","name":"Wo","type":"Role","_key":"96778","_from":"53308","_to":"56921"} +{"$label":"ACTS_IN","name":"Mr. So (as Cheung Siu Fai)","type":"Role","_key":"117329","_from":"53309","_to":"69005"} +{"$label":"ACTS_IN","name":"Mr. So (as Cheung Siu Fai)","type":"Role","_key":"103106","_from":"53309","_to":"60647"} +{"$label":"ACTS_IN","name":"Violent Man - Ko's Inner Personality (as Cheung Siu Fai)","type":"Role","_key":"98131","_from":"53309","_to":"57774"} +{"$label":"ACTS_IN","name":"Marinella","type":"Role","_key":"90166","_from":"53311","_to":"53310"} +{"$label":"ACTS_IN","name":"Pontius Pilate","type":"Role","_key":"90171","_from":"53316","_to":"53312"} +{"$label":"ACTS_IN","name":"Mary Magdalene","type":"Role","_key":"90170","_from":"53315","_to":"53312"} +{"$label":"ACTS_IN","name":"Judas Iscariot","type":"Role","_key":"90169","_from":"53314","_to":"53312"} +{"$label":"ACTS_IN","name":"Jesus Christ","type":"Role","_key":"90168","_from":"53313","_to":"53312"} +{"$label":"ACTS_IN","name":"Mrs. Manorama ChjamanBakshi","type":"Role","_key":"90175","_from":"53318","_to":"53317"} +{"$label":"ACTS_IN","name":"Gustavo","type":"Role","_key":"90181","_from":"53320","_to":"53319"} +{"$label":"ACTS_IN","name":"Sandra Rubini","type":"Role","_key":"90188","_from":"53323","_to":"53321"} +{"$label":"ACTS_IN","name":"Riccardo","type":"Role","_key":"90187","_from":"53322","_to":"53321"} +{"$label":"DIRECTED","_key":"90197","_from":"53329","_to":"53324"} +{"$label":"DIRECTED","_key":"90196","_from":"53328","_to":"53324"} +{"$label":"ACTS_IN","name":"Kriminalassistent Jensen","type":"Role","_key":"90195","_from":"53327","_to":"53324"} +{"$label":"ACTS_IN","name":"Holm Hansen","type":"Role","_key":"90194","_from":"53326","_to":"53324"} +{"$label":"ACTS_IN","name":"Hallandsen","type":"Role","_key":"90193","_from":"53325","_to":"53324"} +{"$label":"ACTS_IN","name":"Kriminalassistent Jensen","type":"Role","_key":"91187","_from":"53327","_to":"53781"} +{"$label":"DIRECTED","_key":"90213","_from":"53343","_to":"53330"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"90212","_from":"53342","_to":"53330"} +{"$label":"ACTS_IN","name":"Station Manager","type":"Role","_key":"90211","_from":"53341","_to":"53330"} +{"$label":"ACTS_IN","name":"Doncella","type":"Role","_key":"90209","_from":"53340","_to":"53330"} +{"$label":"ACTS_IN","name":"Governor's Maid","type":"Role","_key":"90208","_from":"53339","_to":"53330"} +{"$label":"ACTS_IN","name":"Governor","type":"Role","_key":"90207","_from":"53338","_to":"53330"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"90206","_from":"53337","_to":"53330"} +{"$label":"ACTS_IN","name":"Amalia","type":"Role","_key":"90205","_from":"53336","_to":"53330"} +{"$label":"ACTS_IN","name":"Bert","type":"Role","_key":"90204","_from":"53335","_to":"53330"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"90203","_from":"53334","_to":"53330"} +{"$label":"ACTS_IN","name":"Murdo","type":"Role","_key":"90202","_from":"53333","_to":"53330"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"90201","_from":"53332","_to":"53330"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"90200","_from":"53331","_to":"53330"} +{"$label":"DIRECTED","_key":"90223","_from":"53346","_to":"53345"} +{"$label":"ACTS_IN","name":"Erz\u00e4hler","type":"Role","_key":"90222","_from":"53348","_to":"53345"} +{"$label":"ACTS_IN","name":"Kommentar","type":"Role","_key":"90221","_from":"53347","_to":"53345"} +{"$label":"ACTS_IN","name":"Kommentar","type":"Role","_key":"90220","_from":"53346","_to":"53345"} +{"$label":"ACTS_IN","name":"Annette Galingr\u00e9","type":"Role","_key":"90230","_from":"53350","_to":"53349"} +{"$label":"DIRECTED","_key":"90238","_from":"53352","_to":"53351"} +{"$label":"ACTS_IN","name":"Karel","type":"Role","_key":"90247","_from":"53361","_to":"53353"} +{"$label":"ACTS_IN","name":"Hotelchef","type":"Role","_key":"90246","_from":"53360","_to":"53353"} +{"$label":"ACTS_IN","name":"Brandejs","type":"Role","_key":"90245","_from":"53359","_to":"53353"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"90244","_from":"53358","_to":"53353"} +{"$label":"ACTS_IN","name":"Skriv\u00e1nek","type":"Role","_key":"90243","_from":"53357","_to":"53353"} +{"$label":"ACTS_IN","name":"Walden","type":"Role","_key":"90242","_from":"53356","_to":"53353"} +{"$label":"ACTS_IN","name":"Jan D\u00edte senior","type":"Role","_key":"90240","_from":"53355","_to":"53353"} +{"$label":"ACTS_IN","name":"Jan D\u00edte junior","type":"Role","_key":"90239","_from":"53354","_to":"53353"} +{"$label":"ACTS_IN","name":"Jan Machat\u00fd","type":"Role","_key":"106018","_from":"53355","_to":"62417"} +{"$label":"ACTS_IN","name":"u\u010ditel Z\u00edma","type":"Role","_key":"110669","_from":"53356","_to":"65376"} +{"$label":"ACTS_IN","name":"Policeman at station","type":"Role","_key":"118221","_from":"53360","_to":"69482"} +{"$label":"ACTS_IN","name":"Newspaper Vendor","type":"Role","_key":"118122","_from":"53360","_to":"69418"} +{"$label":"ACTS_IN","name":"Railwayman Ka\u0148ka","type":"Role","_key":"106021","_from":"53361","_to":"62417"} +{"$label":"ACTS_IN","name":"Dash","type":"Role","_key":"90267","_from":"53367","_to":"53365"} +{"$label":"ACTS_IN","name":"Luke Davenport","type":"Role","_key":"90266","_from":"53366","_to":"53365"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"90287","_from":"53373","_to":"53368"} +{"$label":"ACTS_IN","name":"Airline Hostess","type":"Role","_key":"90286","_from":"53372","_to":"53368"} +{"$label":"ACTS_IN","name":"Running Dog Driver","type":"Role","_key":"90283","_from":"53371","_to":"53368"} +{"$label":"ACTS_IN","name":"Peter the Cop","type":"Role","_key":"90281","_from":"53370","_to":"53368"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"90280","_from":"53369","_to":"53368"} +{"$label":"ACTS_IN","name":"Professor Fukazawa","type":"Role","_key":"90295","_from":"53379","_to":"53374"} +{"$label":"ACTS_IN","name":"Meru Ozawa","type":"Role","_key":"90294","_from":"53378","_to":"53374"} +{"$label":"ACTS_IN","name":"Kenichi Yamane","type":"Role","_key":"90292","_from":"53377","_to":"53374"} +{"$label":"ACTS_IN","name":"Yukari Yamane","type":"Role","_key":"90291","_from":"53376","_to":"53374"} +{"$label":"ACTS_IN","name":"Dr. Kensaku Ijuin","type":"Role","_key":"90290","_from":"53375","_to":"53374"} +{"$label":"ACTS_IN","name":"Steffi","type":"Role","_key":"90307","_from":"53385","_to":"53382"} +{"$label":"ACTS_IN","name":"Juri als Kind","type":"Role","_key":"90304","_from":"53384","_to":"53382"} +{"$label":"DIRECTED","_key":"90298","_from":"53383","_to":"53382"} +{"$label":"ACTS_IN","name":"Ludwigs Vater","type":"Role","_key":"90314","_from":"53387","_to":"53386"} +{"$label":"ACTS_IN","name":"Rex Mottram","type":"Role","_key":"90330","_from":"53392","_to":"53388"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"90328","_from":"53391","_to":"53388"} +{"$label":"ACTS_IN","name":"Anthony Blanche","type":"Role","_key":"90327","_from":"53390","_to":"53388"} +{"$label":"ACTS_IN","name":"Cordelia Flyte","type":"Role","_key":"90325","_from":"53389","_to":"53388"} +{"$label":"ACTS_IN","name":"Catherine Morland","type":"Role","_key":"114892","_from":"53389","_to":"67666"} +{"$label":"ACTS_IN","name":"Young Ruth Davies","type":"Role","_key":"96707","_from":"53389","_to":"56883"} +{"$label":"ACTS_IN","name":"Eric Visnijc","type":"Role","_key":"111291","_from":"53390","_to":"65725"} +{"$label":"ACTS_IN","name":"Margaret","type":"Role","_key":"101724","_from":"53391","_to":"59867"} +{"$label":"ACTS_IN","name":"Nero","type":"Role","_key":"108870","_from":"53392","_to":"64343"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"90341","_from":"53395","_to":"53394"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"121140","_from":"53395","_to":"71154"} +{"$label":"ACTS_IN","name":"Eli\u0161ka\/Hana","type":"Role","_key":"121118","_from":"53395","_to":"71138"} +{"$label":"DIRECTED","_key":"90356","_from":"53399","_to":"53397"} +{"$label":"DIRECTED","_key":"90345","_from":"53398","_to":"53397"} +{"$label":"ACTS_IN","name":"Lieutenant Li","type":"Role","_key":"101808","_from":"53398","_to":"59923"} +{"$label":"ACTS_IN","name":"Sarah Gopnik","type":"Role","_key":"90371","_from":"53405","_to":"53400"} +{"$label":"ACTS_IN","name":"Danny Gopnik","type":"Role","_key":"90370","_from":"53404","_to":"53400"} +{"$label":"ACTS_IN","name":"Judith Gopnik","type":"Role","_key":"90369","_from":"53403","_to":"53400"} +{"$label":"ACTS_IN","name":"Sy Ableman","type":"Role","_key":"90368","_from":"53402","_to":"53400"} +{"$label":"ACTS_IN","name":"Larry Gopnik","type":"Role","_key":"90366","_from":"53401","_to":"53400"} +{"$label":"ACTS_IN","name":"Devon Butler","type":"Role","_key":"90375","_from":"53407","_to":"53406"} +{"$label":"ACTS_IN","name":"Martin Plummer","type":"Role","_key":"90386","_from":"53410","_to":"53409"} +{"$label":"DIRECTED","_key":"90407","_from":"53418","_to":"53412"} +{"$label":"DIRECTED","_key":"90404","_from":"53417","_to":"53412"} +{"$label":"DIRECTED","_key":"90403","_from":"53416","_to":"53412"} +{"$label":"DIRECTED","_key":"90402","_from":"53415","_to":"53412"} +{"$label":"DIRECTED","_key":"90399","_from":"53414","_to":"53412"} +{"$label":"DIRECTED","_key":"90398","_from":"53413","_to":"53412"} +{"$label":"ACTS_IN","name":"Arlette Coudray","type":"Role","_key":"90412","_from":"53420","_to":"53419"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"90417","_from":"53424","_to":"53421"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"90416","_from":"53423","_to":"53421"} +{"$label":"ACTS_IN","name":"Okada Izo","type":"Role","_key":"90414","_from":"53422","_to":"53421"} +{"$label":"ACTS_IN","name":"Jun Ariyoshi","type":"Role","_key":"93898","_from":"53423","_to":"55285"} +{"$label":"DIRECTED","_key":"90426","_from":"53427","_to":"53426"} +{"$label":"DIRECTED","_key":"116285","_from":"53427","_to":"68456"} +{"$label":"DIRECTED","_key":"99814","_from":"53427","_to":"58878"} +{"$label":"DIRECTED","_key":"90431","_from":"53429","_to":"53428"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"90444","_from":"53435","_to":"53431"} +{"$label":"ACTS_IN","name":"Romek Weiss","type":"Role","_key":"90443","_from":"53434","_to":"53431"} +{"$label":"ACTS_IN","name":"Polly","type":"Role","_key":"90442","_from":"53433","_to":"53431"} +{"$label":"ACTS_IN","name":"Charly","type":"Role","_key":"90441","_from":"53432","_to":"53431"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"90466","_from":"53449","_to":"53436"} +{"$label":"ACTS_IN","name":"Pieter","type":"Role","_key":"90465","_from":"53448","_to":"53436"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"90464","_from":"53447","_to":"53436"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"90463","_from":"53446","_to":"53436"} +{"$label":"ACTS_IN","name":"Pepito","type":"Role","_key":"90460","_from":"53445","_to":"53436"} +{"$label":"ACTS_IN","name":"Father on Beach","type":"Role","_key":"90459","_from":"53444","_to":"53436"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"90458","_from":"53443","_to":"53436"} +{"$label":"ACTS_IN","name":"Bodega Clerk","type":"Role","_key":"90457","_from":"53442","_to":"53436"} +{"$label":"ACTS_IN","name":"Frannie","type":"Role","_key":"90456","_from":"53441","_to":"53436"} +{"$label":"ACTS_IN","name":"Johannes","type":"Role","_key":"90454","_from":"53440","_to":"53436"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"90451","_from":"53439","_to":"53436"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"90449","_from":"53438","_to":"53436"} +{"$label":"DIRECTED","_key":"90446","_from":"53437","_to":"53436"} +{"$label":"ACTS_IN","name":"Kate \/ Repli-Kate","type":"Role","_key":"108369","_from":"53438","_to":"64065"} +{"$label":"ACTS_IN","name":"Elissa","type":"Role","_key":"95441","_from":"53438","_to":"56146"} +{"$label":"ACTS_IN","name":"Wilson DeLeon Sr.","type":"Role","_key":"103405","_from":"53439","_to":"60828"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"115529","_from":"53447","_to":"68009"} +{"$label":"ACTS_IN","name":"Declin","type":"Role","_key":"94318","_from":"53447","_to":"55539"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"90470","_from":"53452","_to":"53450"} +{"$label":"ACTS_IN","name":"Valentine","type":"Role","_key":"90467","_from":"53451","_to":"53450"} +{"$label":"DIRECTED","_key":"90481","_from":"53458","_to":"53453"} +{"$label":"ACTS_IN","name":"Vicky","type":"Role","_key":"90478","_from":"53457","_to":"53453"} +{"$label":"ACTS_IN","name":"Malte","type":"Role","_key":"90477","_from":"53456","_to":"53453"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"90475","_from":"53455","_to":"53453"} +{"$label":"ACTS_IN","name":"Mel Wandel","type":"Role","_key":"90472","_from":"53454","_to":"53453"} +{"$label":"ACTS_IN","name":"James 'Jimmy' Isaac Neutron (voice)","type":"Role","_key":"90482","_from":"53460","_to":"53459"} +{"$label":"DIRECTED","_key":"90502","_from":"53464","_to":"53462"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"90501","_from":"53463","_to":"53462"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"90511","_from":"53470","_to":"53466"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"90510","_from":"53469","_to":"53466"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"90509","_from":"53468","_to":"53466"} +{"$label":"ACTS_IN","name":"Fritz the Cat (voice)","type":"Role","_key":"90508","_from":"53467","_to":"53466"} +{"$label":"ACTS_IN","name":"Odessa, Willy's nurse","type":"Role","_key":"109539","_from":"53468","_to":"64702"} +{"$label":"ACTS_IN","name":"Morgana","type":"Role","_key":"90515","_from":"53473","_to":"53471"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"90514","_from":"53472","_to":"53471"} +{"$label":"ACTS_IN","name":"Meowth (voice)","type":"Role","_key":"90535","_from":"53478","_to":"53477"} +{"$label":"ACTS_IN","name":"Meowth (voice)","type":"Role","_key":"90541","_from":"53478","_to":"53479"} +{"$label":"DIRECTED","_key":"90543","_from":"53480","_to":"53479"} +{"$label":"ACTS_IN","name":"David Riven","type":"Role","_key":"90547","_from":"53484","_to":"53481"} +{"$label":"ACTS_IN","name":"Thomas Munster","type":"Role","_key":"90546","_from":"53483","_to":"53481"} +{"$label":"ACTS_IN","name":"Rebecca Verlaine","type":"Role","_key":"90545","_from":"53482","_to":"53481"} +{"$label":"DIRECTED","_key":"90559","_from":"53489","_to":"53486"} +{"$label":"ACTS_IN","name":"Barbro","type":"Role","_key":"90558","_from":"53488","_to":"53486"} +{"$label":"ACTS_IN","name":"Gunilla","type":"Role","_key":"90557","_from":"53487","_to":"53486"} +{"$label":"DIRECTED","_key":"90564","_from":"53491","_to":"53490"} +{"$label":"DIRECTED","_key":"90569","_from":"53493","_to":"53492"} +{"$label":"DIRECTED","_key":"110953","_from":"53493","_to":"65537"} +{"$label":"DIRECTED","_key":"90574","_from":"53495","_to":"53494"} +{"$label":"DIRECTED","_key":"90579","_from":"53499","_to":"53496"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"90576","_from":"53498","_to":"53496"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"90575","_from":"53497","_to":"53496"} +{"$label":"DIRECTED","_key":"90586","_from":"53503","_to":"53500"} +{"$label":"DIRECTED","_key":"90585","_from":"53502","_to":"53500"} +{"$label":"ACTS_IN","name":"Joe (voice)","type":"Role","_key":"90580","_from":"53501","_to":"53500"} +{"$label":"DIRECTED","_key":"94963","_from":"53502","_to":"55924"} +{"$label":"DIRECTED","_key":"90603","_from":"53507","_to":"53506"} +{"$label":"DIRECTED","_key":"96748","_from":"53507","_to":"56913"} +{"$label":"DIRECTED","_key":"90607","_from":"53512","_to":"53508"} +{"$label":"ACTS_IN","name":"Chun-Li (voice)","type":"Role","_key":"90606","_from":"53511","_to":"53508"} +{"$label":"ACTS_IN","name":"Ken Masters (voice)","type":"Role","_key":"90605","_from":"53510","_to":"53508"} +{"$label":"ACTS_IN","name":"Ry\u00fb (voice)","type":"Role","_key":"90604","_from":"53509","_to":"53508"} +{"$label":"ACTS_IN","name":"'Squash' Bernstein","type":"Role","_key":"90612","_from":"53514","_to":"53513"} +{"$label":"ACTS_IN","name":"Charlie Carlyle","type":"Role","_key":"90626","_from":"53517","_to":"53516"} +{"$label":"ACTS_IN","name":"Boo","type":"Role","_key":"100721","_from":"53517","_to":"59387"} +{"$label":"DIRECTED","_key":"90635","_from":"53519","_to":"53518"} +{"$label":"DIRECTED","_key":"119062","_from":"53519","_to":"69982"} +{"$label":"DIRECTED","_key":"90661","_from":"53526","_to":"53522"} +{"$label":"ACTS_IN","name":"Harmony","type":"Role","_key":"90659","_from":"53525","_to":"53522"} +{"$label":"ACTS_IN","name":"Colby","type":"Role","_key":"90658","_from":"53524","_to":"53522"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"90657","_from":"53523","_to":"53522"} +{"$label":"DIRECTED","_key":"99136","_from":"53526","_to":"58416"} +{"$label":"ACTS_IN","name":"Dickie's Corner Man","type":"Role","_key":"96465","_from":"53526","_to":"56725"} +{"$label":"ACTS_IN","name":"Danny the Waiter","type":"Role","_key":"90677","_from":"53534","_to":"53527"} +{"$label":"ACTS_IN","name":"Mrs. Marquez","type":"Role","_key":"90676","_from":"53533","_to":"53527"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"90671","_from":"53532","_to":"53527"} +{"$label":"ACTS_IN","name":"Chuy","type":"Role","_key":"90670","_from":"53531","_to":"53527"} +{"$label":"ACTS_IN","name":"Epiphany Sellars","type":"Role","_key":"90669","_from":"53530","_to":"53527"} +{"$label":"ACTS_IN","name":"Rand Posin","type":"Role","_key":"90668","_from":"53529","_to":"53527"} +{"$label":"ACTS_IN","name":"Octavio","type":"Role","_key":"90665","_from":"53528","_to":"53527"} +{"$label":"ACTS_IN","name":"Yoshinari","type":"Role","_key":"90681","_from":"53537","_to":"53535"} +{"$label":"ACTS_IN","name":"Akari","type":"Role","_key":"90679","_from":"53536","_to":"53535"} +{"$label":"DIRECTED","_key":"90692","_from":"53541","_to":"53539"} +{"$label":"ACTS_IN","name":"Keno","type":"Role","_key":"90690","_from":"53540","_to":"53539"} +{"$label":"ACTS_IN","name":"Bill Cronenberg","type":"Role","_key":"100455","_from":"53540","_to":"59228"} +{"$label":"DIRECTED","_key":"90704","_from":"53544","_to":"53543"} +{"$label":"DIRECTED","_key":"90720","_from":"53550","_to":"53547"} +{"$label":"ACTS_IN","name":"Teacher (voice)","type":"Role","_key":"90717","_from":"53549","_to":"53547"} +{"$label":"ACTS_IN","name":"Pippi Longstocking (voice)","type":"Role","_key":"90715","_from":"53548","_to":"53547"} +{"$label":"ACTS_IN","name":"Lord Stanhope","type":"Role","_key":"90728","_from":"53553","_to":"53552"} +{"$label":"ACTS_IN","name":"Emily Hardin","type":"Role","_key":"90735","_from":"53555","_to":"53554"} +{"$label":"ACTS_IN","name":"Ringo Starr","type":"Role","_key":"90748","_from":"53560","_to":"53557"} +{"$label":"ACTS_IN","name":"George Harrison","type":"Role","_key":"90747","_from":"53559","_to":"53557"} +{"$label":"ACTS_IN","name":"Paul McCartney","type":"Role","_key":"90746","_from":"53558","_to":"53557"} +{"$label":"DIRECTED","_key":"90755","_from":"53565","_to":"53561"} +{"$label":"ACTS_IN","name":"JSDF Lieutenant Togashi","type":"Role","_key":"90754","_from":"53564","_to":"53561"} +{"$label":"ACTS_IN","name":"Sara Yuhara","type":"Role","_key":"90753","_from":"53563","_to":"53561"} +{"$label":"ACTS_IN","name":"Tokumitsu Yuhara","type":"Role","_key":"90752","_from":"53562","_to":"53561"} +{"$label":"ACTS_IN","name":"Bernice Bennett","type":"Role","_key":"90760","_from":"53568","_to":"53566"} +{"$label":"ACTS_IN","name":"Paul Wilson","type":"Role","_key":"90759","_from":"53567","_to":"53566"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"90787","_from":"53574","_to":"53571"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"90786","_from":"53573","_to":"53571"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"90784","_from":"53572","_to":"53571"} +{"$label":"DIRECTED","_key":"90793","_from":"53580","_to":"53575"} +{"$label":"DIRECTED","_key":"90792","_from":"53579","_to":"53575"} +{"$label":"ACTS_IN","name":"Tjalfe (voice)","type":"Role","_key":"90791","_from":"53578","_to":"53575"} +{"$label":"ACTS_IN","name":"Loke (voice)","type":"Role","_key":"90789","_from":"53577","_to":"53575"} +{"$label":"ACTS_IN","name":"Thor (voice)","type":"Role","_key":"90788","_from":"53576","_to":"53575"} +{"$label":"DIRECTED","_key":"90805","_from":"53583","_to":"53582"} +{"$label":"DIRECTED","_key":"96168","_from":"53583","_to":"56519"} +{"$label":"ACTS_IN","name":"Will Buckley","type":"Role","_key":"90806","_from":"53585","_to":"53584"} +{"$label":"ACTS_IN","name":"Dallow","type":"Role","_key":"94230","_from":"53585","_to":"55491"} +{"$label":"DIRECTED","_key":"90815","_from":"53590","_to":"53586"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"90814","_from":"53589","_to":"53586"} +{"$label":"ACTS_IN","name":".","type":"Role","_key":"90813","_from":"53588","_to":"53586"} +{"$label":"ACTS_IN","name":"Han Sung-hyun","type":"Role","_key":"90811","_from":"53587","_to":"53586"} +{"$label":"ACTS_IN","name":"Jacqueline","type":"Role","_key":"90826","_from":"53593","_to":"53592"} +{"$label":"ACTS_IN","name":"District Attorney Luciano de la Bastida","type":"Role","_key":"90832","_from":"53596","_to":"53594"} +{"$label":"ACTS_IN","name":"B\u00e1rbara","type":"Role","_key":"90830","_from":"53595","_to":"53594"} +{"$label":"DIRECTED","_key":"90834","_from":"53598","_to":"53597"} +{"$label":"ACTS_IN","name":"Johnner Doyle","type":"Role","_key":"90843","_from":"53606","_to":"53599"} +{"$label":"ACTS_IN","name":"Anto","type":"Role","_key":"90842","_from":"53605","_to":"53599"} +{"$label":"ACTS_IN","name":"Antoine Byrne","type":"Role","_key":"90841","_from":"53604","_to":"53599"} +{"$label":"ACTS_IN","name":"Frank Grogan","type":"Role","_key":"90840","_from":"53603","_to":"53599"} +{"$label":"ACTS_IN","name":"Tom French","type":"Role","_key":"90839","_from":"53602","_to":"53599"} +{"$label":"ACTS_IN","name":"Git Hynes","type":"Role","_key":"90838","_from":"53601","_to":"53599"} +{"$label":"DIRECTED","_key":"90836","_from":"53600","_to":"53599"} +{"$label":"DIRECTED","_key":"111524","_from":"53600","_to":"65842"} +{"$label":"DIRECTED","_key":"102704","_from":"53600","_to":"60423"} +{"$label":"DIRECTED","_key":"100406","_from":"53600","_to":"59211"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"111519","_from":"53601","_to":"65842"} +{"$label":"ACTS_IN","name":"Colin Garrivan","type":"Role","_key":"105758","_from":"53605","_to":"62258"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"113360","_from":"53606","_to":"66775"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"111520","_from":"53606","_to":"65842"} +{"$label":"DIRECTED","_key":"90851","_from":"53608","_to":"53607"} +{"$label":"DIRECTED","_key":"90859","_from":"53611","_to":"53609"} +{"$label":"ACTS_IN","name":"Gaeman","type":"Role","_key":"90857","_from":"53610","_to":"53609"} +{"$label":"DIRECTED","_key":"90874","_from":"53618","_to":"53613"} +{"$label":"ACTS_IN","name":"Da Huan","type":"Role","_key":"90873","_from":"53617","_to":"53613"} +{"$label":"ACTS_IN","name":"Xiao","type":"Role","_key":"90872","_from":"53616","_to":"53613"} +{"$label":"ACTS_IN","name":"Jian","type":"Role","_key":"90870","_from":"53615","_to":"53613"} +{"$label":"ACTS_IN","name":"Guo Liangui","type":"Role","_key":"90869","_from":"53614","_to":"53613"} +{"$label":"ACTS_IN","name":"Junior Policeman (Shanghai)","type":"Role","_key":"99433","_from":"53618","_to":"58590"} +{"$label":"ACTS_IN","name":"Borowski","type":"Role","_key":"90880","_from":"53622","_to":"53619"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"90878","_from":"53621","_to":"53619"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"90877","_from":"53620","_to":"53619"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"90899","_from":"53627","_to":"53624"} +{"$label":"ACTS_IN","name":"Father Brian","type":"Role","_key":"90897","_from":"53626","_to":"53624"} +{"$label":"ACTS_IN","name":"Sheriff John Hunt","type":"Role","_key":"90894","_from":"53625","_to":"53624"} +{"$label":"ACTS_IN","name":"Sgt. Mendez","type":"Role","_key":"90908","_from":"53630","_to":"53628"} +{"$label":"ACTS_IN","name":"Kallunda Kintash","type":"Role","_key":"90905","_from":"53629","_to":"53628"} +{"$label":"ACTS_IN","name":"Sonny Curley","type":"Role","_key":"90915","_from":"53633","_to":"53631"} +{"$label":"ACTS_IN","name":"Sharon Curley","type":"Role","_key":"90912","_from":"53632","_to":"53631"} +{"$label":"DIRECTED","_key":"90932","_from":"53645","_to":"53636"} +{"$label":"ACTS_IN","name":"Dr. Anita Pendleton","type":"Role","_key":"90931","_from":"53644","_to":"53636"} +{"$label":"ACTS_IN","name":"Danielle McNamara","type":"Role","_key":"90930","_from":"53643","_to":"53636"} +{"$label":"ACTS_IN","name":"Scott Tyrell","type":"Role","_key":"90929","_from":"53642","_to":"53636"} +{"$label":"ACTS_IN","name":"Brad Bauer","type":"Role","_key":"90928","_from":"53641","_to":"53636"} +{"$label":"ACTS_IN","name":"Paul Tierson","type":"Role","_key":"90927","_from":"53640","_to":"53636"} +{"$label":"ACTS_IN","name":"Adair Conlon","type":"Role","_key":"90926","_from":"53639","_to":"53636"} +{"$label":"ACTS_IN","name":"Ryan McNamara","type":"Role","_key":"90925","_from":"53638","_to":"53636"} +{"$label":"ACTS_IN","name":"Chris McNamara","type":"Role","_key":"90924","_from":"53637","_to":"53636"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"90943","_from":"53638","_to":"53654"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"90933","_from":"53638","_to":"53646"} +{"$label":"ACTS_IN","name":"Shanna","type":"Role","_key":"90950","_from":"53639","_to":"53654"} +{"$label":"ACTS_IN","name":"Dylan","type":"Role","_key":"90946","_from":"53640","_to":"53654"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"90945","_from":"53641","_to":"53654"} +{"$label":"ACTS_IN","name":"Peter McLaine","type":"Role","_key":"90939","_from":"53641","_to":"53646"} +{"$label":"ACTS_IN","name":"Mr. Wincott","type":"Role","_key":"90944","_from":"53642","_to":"53654"} +{"$label":"ACTS_IN","name":"Molly Ann Hoffman","type":"Role","_key":"90942","_from":"53643","_to":"53646"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"90941","_from":"53653","_to":"53646"} +{"$label":"ACTS_IN","name":"Samantha Jones","type":"Role","_key":"90940","_from":"53652","_to":"53646"} +{"$label":"ACTS_IN","name":"Dr. Pamela Alley","type":"Role","_key":"90938","_from":"53651","_to":"53646"} +{"$label":"ACTS_IN","name":"Sara Van Devender","type":"Role","_key":"90937","_from":"53650","_to":"53646"} +{"$label":"ACTS_IN","name":"Lauren Van Devender","type":"Role","_key":"90936","_from":"53649","_to":"53646"} +{"$label":"ACTS_IN","name":"Hunter Jones","type":"Role","_key":"90935","_from":"53648","_to":"53646"} +{"$label":"ACTS_IN","name":"Paris","type":"Role","_key":"90934","_from":"53647","_to":"53646"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"90960","_from":"53667","_to":"53654"} +{"$label":"ACTS_IN","name":"Phillip Monroe","type":"Role","_key":"90959","_from":"53666","_to":"53654"} +{"$label":"ACTS_IN","name":"Jackie Phillips","type":"Role","_key":"90958","_from":"53665","_to":"53654"} +{"$label":"ACTS_IN","name":"Ava Monroe","type":"Role","_key":"90957","_from":"53664","_to":"53654"} +{"$label":"ACTS_IN","name":"Caleb Monroe","type":"Role","_key":"90956","_from":"53663","_to":"53654"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"90955","_from":"53662","_to":"53654"} +{"$label":"ACTS_IN","name":"Becca","type":"Role","_key":"90954","_from":"53661","_to":"53654"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"90953","_from":"53660","_to":"53654"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"90952","_from":"53659","_to":"53654"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"90951","_from":"53658","_to":"53654"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"90949","_from":"53657","_to":"53654"} +{"$label":"ACTS_IN","name":"Kathryn","type":"Role","_key":"90948","_from":"53656","_to":"53654"} +{"$label":"ACTS_IN","name":"Brooke\/Caitlen","type":"Role","_key":"90947","_from":"53655","_to":"53654"} +{"$label":"ACTS_IN","name":"Lech\u00f3n","type":"Role","_key":"90966","_from":"53670","_to":"53668"} +{"$label":"DIRECTED","_key":"90961","_from":"53669","_to":"53668"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"90970","_from":"53675","_to":"53671"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"90969","_from":"53674","_to":"53671"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"90968","_from":"53673","_to":"53671"} +{"$label":"DIRECTED","_key":"90967","_from":"53672","_to":"53671"} +{"$label":"ACTS_IN","name":"Fork","type":"Role","_key":"90978","_from":"53682","_to":"53678"} +{"$label":"ACTS_IN","name":"Carrie Rieger","type":"Role","_key":"90973","_from":"53681","_to":"53678"} +{"$label":"DIRECTED","_key":"90972","_from":"53680","_to":"53678"} +{"$label":"DIRECTED","_key":"90971","_from":"53679","_to":"53678"} +{"$label":"DIRECTED","_key":"90980","_from":"53679","_to":"53683"} +{"$label":"DIRECTED","_key":"90979","_from":"53680","_to":"53683"} +{"$label":"ACTS_IN","name":"Martha Dennison","type":"Role","_key":"110546","_from":"53681","_to":"65319"} +{"$label":"ACTS_IN","name":"Christian Markelli","type":"Role","_key":"105562","_from":"53682","_to":"62121"} +{"$label":"ACTS_IN","name":"Elizabeth Dexter \/ Witch","type":"Role","_key":"90993","_from":"53687","_to":"53683"} +{"$label":"ACTS_IN","name":"Sinclair","type":"Role","_key":"90992","_from":"53686","_to":"53683"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"90982","_from":"53685","_to":"53683"} +{"$label":"ACTS_IN","name":"Edward Carnby","type":"Role","_key":"90981","_from":"53684","_to":"53683"} +{"$label":"ACTS_IN","name":"Chance Templeton","type":"Role","_key":"98411","_from":"53684","_to":"57976"} +{"$label":"ACTS_IN","name":"Professor A.F. Chatman","type":"Role","_key":"91003","_from":"53693","_to":"53688"} +{"$label":"ACTS_IN","name":"Hollingshead","type":"Role","_key":"91002","_from":"53692","_to":"53688"} +{"$label":"ACTS_IN","name":"Superintendent Talbot","type":"Role","_key":"91001","_from":"53691","_to":"53688"} +{"$label":"ACTS_IN","name":"Renee","type":"Role","_key":"91000","_from":"53690","_to":"53688"} +{"$label":"ACTS_IN","name":"Stevie - Sylvia's Young Brother","type":"Role","_key":"90998","_from":"53689","_to":"53688"} +{"$label":"DIRECTED","_key":"91005","_from":"53698","_to":"53697"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"91015","_from":"53707","_to":"53699"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"91014","_from":"53706","_to":"53699"} +{"$label":"ACTS_IN","name":"Peter Dyer","type":"Role","_key":"91013","_from":"53705","_to":"53699"} +{"$label":"ACTS_IN","name":"Connie Nicholson","type":"Role","_key":"91012","_from":"53704","_to":"53699"} +{"$label":"ACTS_IN","name":"Bob Nicholson","type":"Role","_key":"91011","_from":"53703","_to":"53699"} +{"$label":"ACTS_IN","name":"Dave the Laugh","type":"Role","_key":"91010","_from":"53702","_to":"53699"} +{"$label":"ACTS_IN","name":"Jas","type":"Role","_key":"91008","_from":"53701","_to":"53699"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"91007","_from":"53700","_to":"53699"} +{"$label":"ACTS_IN","name":"Joanne","type":"Role","_key":"101917","_from":"53700","_to":"59982"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"91033","_from":"53716","_to":"53710"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"91028","_from":"53715","_to":"53710"} +{"$label":"ACTS_IN","name":"Karl Schneider","type":"Role","_key":"91027","_from":"53714","_to":"53710"} +{"$label":"ACTS_IN","name":"Hilde","type":"Role","_key":"91026","_from":"53713","_to":"53710"} +{"$label":"DIRECTED","_key":"91025","_from":"53712","_to":"53710"} +{"$label":"DIRECTED","_key":"91024","_from":"53711","_to":"53710"} +{"$label":"DIRECTED","_key":"91042","_from":"53721","_to":"53717"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"91040","_from":"53720","_to":"53717"} +{"$label":"ACTS_IN","name":"Benjamine","type":"Role","_key":"91039","_from":"53719","_to":"53717"} +{"$label":"ACTS_IN","name":"Joseph","type":"Role","_key":"91038","_from":"53718","_to":"53717"} +{"$label":"ACTS_IN","name":"Hotel Maid","type":"Role","_key":"91048","_from":"53725","_to":"53722"} +{"$label":"ACTS_IN","name":"Assistant Manager","type":"Role","_key":"91047","_from":"53724","_to":"53722"} +{"$label":"ACTS_IN","name":"Promoter","type":"Role","_key":"91045","_from":"53723","_to":"53722"} +{"$label":"DIRECTED","_key":"91061","_from":"53731","_to":"53726"} +{"$label":"ACTS_IN","name":"Paul mit 8 Jahren","type":"Role","_key":"91060","_from":"53730","_to":"53726"} +{"$label":"ACTS_IN","name":"Lene mit 9 Jahren","type":"Role","_key":"91059","_from":"53729","_to":"53726"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"91057","_from":"53728","_to":"53726"} +{"$label":"ACTS_IN","name":"Goetz Hildebrand","type":"Role","_key":"91054","_from":"53727","_to":"53726"} +{"$label":"ACTS_IN","name":"Achims Mutter","type":"Role","_key":"99195","_from":"53728","_to":"58439"} +{"$label":"ACTS_IN","name":"Mini Hase","type":"Role","_key":"91068","_from":"53737","_to":"53732"} +{"$label":"ACTS_IN","name":"Mama","type":"Role","_key":"91065","_from":"53736","_to":"53732"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"91064","_from":"53735","_to":"53732"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"91063","_from":"53734","_to":"53732"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"91062","_from":"53733","_to":"53732"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91077","_from":"53743","_to":"53738"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"91075","_from":"53742","_to":"53738"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"91073","_from":"53741","_to":"53738"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"91072","_from":"53740","_to":"53738"} +{"$label":"ACTS_IN","name":"sich","type":"Role","_key":"91071","_from":"53739","_to":"53738"} +{"$label":"ACTS_IN","name":"Allison","type":"Role","_key":"91081","_from":"53746","_to":"53744"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"91079","_from":"53745","_to":"53744"} +{"$label":"ACTS_IN","name":"Cheche","type":"Role","_key":"91091","_from":"53748","_to":"53747"} +{"$label":"ACTS_IN","name":"Corty","type":"Role","_key":"91102","_from":"53753","_to":"53749"} +{"$label":"ACTS_IN","name":"Mr. McConnahay","type":"Role","_key":"91100","_from":"53752","_to":"53749"} +{"$label":"ACTS_IN","name":"Liberty Woman","type":"Role","_key":"91098","_from":"53751","_to":"53749"} +{"$label":"ACTS_IN","name":"Young Ned","type":"Role","_key":"91097","_from":"53750","_to":"53749"} +{"$label":"DIRECTED","_key":"91116","_from":"53758","_to":"53754"} +{"$label":"ACTS_IN","name":"Betty Briggs","type":"Role","_key":"91113","_from":"53757","_to":"53754"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"91111","_from":"53756","_to":"53754"} +{"$label":"ACTS_IN","name":"Clifford","type":"Role","_key":"91109","_from":"53755","_to":"53754"} +{"$label":"ACTS_IN","name":"Mrs. Lemon","type":"Role","_key":"91122","_from":"53763","_to":"53759"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"91121","_from":"53762","_to":"53759"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"91120","_from":"53761","_to":"53759"} +{"$label":"ACTS_IN","name":"Lilly","type":"Role","_key":"91119","_from":"53760","_to":"53759"} +{"$label":"ACTS_IN","name":"Little Enos Burdette","type":"Role","_key":"91137","_from":"53766","_to":"53765"} +{"$label":"ACTS_IN","name":"Gunther Fry","type":"Role","_key":"108573","_from":"53766","_to":"64161"} +{"$label":"ACTS_IN","name":"Car Dealer","type":"Role","_key":"91143","_from":"53769","_to":"53767"} +{"$label":"ACTS_IN","name":"Giles Cremorne","type":"Role","_key":"91140","_from":"53768","_to":"53767"} +{"$label":"ACTS_IN","name":"Doctor Gruber","type":"Role","_key":"91159","_from":"53773","_to":"53771"} +{"$label":"ACTS_IN","name":"Connie Emerson","type":"Role","_key":"91158","_from":"53772","_to":"53771"} +{"$label":"ACTS_IN","name":"Mathilde de Bellegarde","type":"Role","_key":"91165","_from":"53775","_to":"53774"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"91174","_from":"53777","_to":"53776"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"105431","_from":"53777","_to":"62026"} +{"$label":"ACTS_IN","name":"Mester Hansen","type":"Role","_key":"91181","_from":"53780","_to":"53778"} +{"$label":"ACTS_IN","name":"Georg","type":"Role","_key":"91180","_from":"53779","_to":"53778"} +{"$label":"ACTS_IN","name":"Politiassistent Holm","type":"Role","_key":"91188","_from":"53782","_to":"53781"} +{"$label":"ACTS_IN","name":"Erika","type":"Role","_key":"91193","_from":"53785","_to":"53783"} +{"$label":"ACTS_IN","name":"Jacques Sibaud","type":"Role","_key":"91192","_from":"53784","_to":"53783"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"101450","_from":"53784","_to":"59718"} +{"$label":"ACTS_IN","name":"Maxime Nathan Grinberg \/ Grimbert","type":"Role","_key":"96097","_from":"53784","_to":"56486"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"110560","_from":"53785","_to":"65327"} +{"$label":"ACTS_IN","name":"Gayle Bainbridge","type":"Role","_key":"91202","_from":"53787","_to":"53786"} +{"$label":"ACTS_IN","name":"Marcel \u00e0 11 ans","type":"Role","_key":"91216","_from":"53792","_to":"53789"} +{"$label":"ACTS_IN","name":"Augustine","type":"Role","_key":"91214","_from":"53791","_to":"53789"} +{"$label":"ACTS_IN","name":"Joseph Pagnol","type":"Role","_key":"91213","_from":"53790","_to":"53789"} +{"$label":"ACTS_IN","name":"Joseph Pagnol","type":"Role","_key":"91219","_from":"53790","_to":"53793"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"93872","_from":"53791","_to":"55271"} +{"$label":"ACTS_IN","name":"Augustine Pagnol","type":"Role","_key":"91220","_from":"53791","_to":"53793"} +{"$label":"ACTS_IN","name":"Marcel Pagnol","type":"Role","_key":"91223","_from":"53792","_to":"53793"} +{"$label":"ACTS_IN","name":"Paul Pagnol","type":"Role","_key":"91224","_from":"53794","_to":"53793"} +{"$label":"ACTS_IN","name":"Neil","type":"Role","_key":"91228","_from":"53797","_to":"53795"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"91227","_from":"53796","_to":"53795"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"91561","_from":"53796","_to":"53977"} +{"$label":"DIRECTED","_key":"91238","_from":"53799","_to":"53798"} +{"$label":"ACTS_IN","name":"Security Guard Jiro Suzuki","type":"Role","_key":"91244","_from":"53803","_to":"53800"} +{"$label":"ACTS_IN","name":"Detective Hagitani","type":"Role","_key":"91243","_from":"53802","_to":"53800"} +{"$label":"ACTS_IN","name":"Mitsuko","type":"Role","_key":"91242","_from":"53801","_to":"53800"} +{"$label":"ACTS_IN","name":"Scott","type":"Role","_key":"91251","_from":"53809","_to":"53804"} +{"$label":"ACTS_IN","name":"Sensei Lee","type":"Role","_key":"91250","_from":"53808","_to":"53804"} +{"$label":"ACTS_IN","name":"Kelly Reilly","type":"Role","_key":"91249","_from":"53807","_to":"53804"} +{"$label":"ACTS_IN","name":"R.J. Madison","type":"Role","_key":"91248","_from":"53806","_to":"53804"} +{"$label":"ACTS_IN","name":"Jason Stillwell","type":"Role","_key":"91246","_from":"53805","_to":"53804"} +{"$label":"ACTS_IN","name":"Billy Lo","type":"Role","_key":"93952","_from":"53808","_to":"55322"} +{"$label":"DIRECTED","_key":"91259","_from":"53817","_to":"53810"} +{"$label":"ACTS_IN","name":"Jim's Best Friend","type":"Role","_key":"91258","_from":"53816","_to":"53810"} +{"$label":"ACTS_IN","name":"Cameraman REUTERS","type":"Role","_key":"91257","_from":"53815","_to":"53810"} +{"$label":"ACTS_IN","name":"Editor in Chief GEO SAISON Magazine","type":"Role","_key":"91256","_from":"53814","_to":"53810"} +{"$label":"ACTS_IN","name":"Foreign Editor STERN Magazine","type":"Role","_key":"91255","_from":"53813","_to":"53810"} +{"$label":"ACTS_IN","name":"Chief International Correspondent CNN","type":"Role","_key":"91254","_from":"53812","_to":"53810"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"91253","_from":"53811","_to":"53810"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"91267","_from":"53819","_to":"53818"} +{"$label":"DIRECTED","_key":"91284","_from":"53833","_to":"53820"} +{"$label":"ACTS_IN","name":"Davina","type":"Role","_key":"91283","_from":"53832","_to":"53820"} +{"$label":"ACTS_IN","name":"Young Christine","type":"Role","_key":"91281","_from":"53831","_to":"53820"} +{"$label":"ACTS_IN","name":"Saul","type":"Role","_key":"91279","_from":"53830","_to":"53820"} +{"$label":"ACTS_IN","name":"Dickie-Boy","type":"Role","_key":"91278","_from":"53829","_to":"53820"} +{"$label":"ACTS_IN","name":"Sapphira","type":"Role","_key":"91277","_from":"53828","_to":"53820"} +{"$label":"ACTS_IN","name":"Biff","type":"Role","_key":"91276","_from":"53827","_to":"53820"} +{"$label":"ACTS_IN","name":"Kaitlin","type":"Role","_key":"91275","_from":"53826","_to":"53820"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"91274","_from":"53825","_to":"53820"} +{"$label":"ACTS_IN","name":"Brant","type":"Role","_key":"91273","_from":"53824","_to":"53820"} +{"$label":"ACTS_IN","name":"Mo","type":"Role","_key":"91272","_from":"53823","_to":"53820"} +{"$label":"ACTS_IN","name":"Frijole","type":"Role","_key":"91271","_from":"53822","_to":"53820"} +{"$label":"ACTS_IN","name":"Clorissa","type":"Role","_key":"91270","_from":"53821","_to":"53820"} +{"$label":"ACTS_IN","name":"Frances Culpepper","type":"Role","_key":"95201","_from":"53823","_to":"56012"} +{"$label":"ACTS_IN","name":"Pregnant Woman","type":"Role","_key":"98094","_from":"53831","_to":"57748"} +{"$label":"ACTS_IN","name":"Haunted Woman","type":"Role","_key":"95203","_from":"53831","_to":"56012"} +{"$label":"DIRECTED","_key":"95195","_from":"53833","_to":"56012"} +{"$label":"DIRECTED","_key":"91288","_from":"53835","_to":"53834"} +{"$label":"DIRECTED","_key":"91291","_from":"53837","_to":"53836"} +{"$label":"DIRECTED","_key":"91296","_from":"53841","_to":"53838"} +{"$label":"ACTS_IN","name":"Dimi","type":"Role","_key":"91293","_from":"53840","_to":"53838"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"91292","_from":"53839","_to":"53838"} +{"$label":"DIRECTED","_key":"91298","_from":"53843","_to":"53842"} +{"$label":"DIRECTED","_key":"91302","_from":"53847","_to":"53845"} +{"$label":"ACTS_IN","name":"Filmemacher","type":"Role","_key":"91300","_from":"53846","_to":"53845"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"91309","_from":"53853","_to":"53848"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"91308","_from":"53852","_to":"53848"} +{"$label":"ACTS_IN","name":"un moniteur","type":"Role","_key":"91307","_from":"53851","_to":"53848"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"91306","_from":"53850","_to":"53848"} +{"$label":"ACTS_IN","name":"le petit Bougnat","type":"Role","_key":"91304","_from":"53849","_to":"53848"} +{"$label":"ACTS_IN","name":"Van der Goes","type":"Role","_key":"91321","_from":"53861","_to":"53854"} +{"$label":"ACTS_IN","name":"la gouvernante","type":"Role","_key":"91319","_from":"53860","_to":"53854"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"91317","_from":"53859","_to":"53854"} +{"$label":"ACTS_IN","name":"Botticelli","type":"Role","_key":"91316","_from":"53858","_to":"53854"} +{"$label":"ACTS_IN","name":"Battestini","type":"Role","_key":"91315","_from":"53857","_to":"53854"} +{"$label":"ACTS_IN","name":"le roi Alphonse V","type":"Role","_key":"91314","_from":"53856","_to":"53854"} +{"$label":"DIRECTED","_key":"91310","_from":"53855","_to":"53854"} +{"$label":"DIRECTED","_key":"91328","_from":"53864","_to":"53862"} +{"$label":"ACTS_IN","name":"Sally Davis","type":"Role","_key":"91327","_from":"53863","_to":"53862"} +{"$label":"ACTS_IN","name":"Lester Fillbrook","type":"Role","_key":"91335","_from":"53870","_to":"53865"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"91334","_from":"53869","_to":"53865"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"91332","_from":"53868","_to":"53865"} +{"$label":"ACTS_IN","name":"Deedee Fillbrook","type":"Role","_key":"91330","_from":"53867","_to":"53865"} +{"$label":"ACTS_IN","name":"Guy Fillbrook","type":"Role","_key":"91329","_from":"53866","_to":"53865"} +{"$label":"ACTS_IN","name":"Reed Lawson","type":"Role","_key":"104820","_from":"53866","_to":"61674"} +{"$label":"ACTS_IN","name":"Karl Gallas","type":"Role","_key":"91343","_from":"53875","_to":"53871"} +{"$label":"ACTS_IN","name":"Jenni Bruhns","type":"Role","_key":"91341","_from":"53874","_to":"53871"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Langner","type":"Role","_key":"91340","_from":"53873","_to":"53871"} +{"$label":"ACTS_IN","name":"Dr. Claus Reiter","type":"Role","_key":"91339","_from":"53872","_to":"53871"} +{"$label":"ACTS_IN","name":"Nina Hoffman","type":"Role","_key":"100335","_from":"53874","_to":"59165"} +{"$label":"ACTS_IN","name":"Charlotte's private secretary","type":"Role","_key":"91349","_from":"53878","_to":"53876"} +{"$label":"ACTS_IN","name":"Viktor","type":"Role","_key":"91348","_from":"53877","_to":"53876"} +{"$label":"ACTS_IN","name":"Dunderklumpen","type":"Role","_key":"96741","_from":"53877","_to":"56903"} +{"$label":"ACTS_IN","name":"Barney Dunn","type":"Role","_key":"91356","_from":"53882","_to":"53879"} +{"$label":"ACTS_IN","name":"Ray Webb","type":"Role","_key":"91355","_from":"53881","_to":"53879"} +{"$label":"ACTS_IN","name":"Lou Canova","type":"Role","_key":"91354","_from":"53880","_to":"53879"} +{"$label":"DIRECTED","_key":"91365","_from":"53886","_to":"53883"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"91364","_from":"53885","_to":"53883"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"91363","_from":"53884","_to":"53883"} +{"$label":"DIRECTED","_key":"91385","_from":"53901","_to":"53887"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"91384","_from":"53900","_to":"53887"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"91383","_from":"53899","_to":"53887"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"91382","_from":"53898","_to":"53887"} +{"$label":"ACTS_IN","name":"Hooker","type":"Role","_key":"91381","_from":"53897","_to":"53887"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"91379","_from":"53896","_to":"53887"} +{"$label":"ACTS_IN","name":"Kirtle (as Dean Ferrandini)","type":"Role","_key":"91378","_from":"53895","_to":"53887"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"91377","_from":"53894","_to":"53887"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"91375","_from":"53893","_to":"53887"} +{"$label":"ACTS_IN","name":"Dou Chou","type":"Role","_key":"91373","_from":"53892","_to":"53887"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"91372","_from":"53891","_to":"53887"} +{"$label":"ACTS_IN","name":"Opelka","type":"Role","_key":"91371","_from":"53890","_to":"53887"} +{"$label":"ACTS_IN","name":"Mazilli","type":"Role","_key":"91370","_from":"53889","_to":"53887"} +{"$label":"ACTS_IN","name":"Captain Ho","type":"Role","_key":"91369","_from":"53888","_to":"53887"} +{"$label":"DIRECTED","_key":"91391","_from":"53905","_to":"53902"} +{"$label":"ACTS_IN","name":"Constantin","type":"Role","_key":"91388","_from":"53904","_to":"53902"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"91387","_from":"53903","_to":"53902"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"91396","_from":"53908","_to":"53906"} +{"$label":"ACTS_IN","name":"Countess Marie Duvarre","type":"Role","_key":"91394","_from":"53907","_to":"53906"} +{"$label":"ACTS_IN","name":"Sheriff Ferguson","type":"Role","_key":"91406","_from":"53911","_to":"53909"} +{"$label":"ACTS_IN","name":"Jesse Tilson","type":"Role","_key":"91405","_from":"53910","_to":"53909"} +{"$label":"ACTS_IN","name":"Patti (as Dana Erika Eskelson)","type":"Role","_key":"103097","_from":"53911","_to":"60638"} +{"$label":"ACTS_IN","name":"Roland","type":"Role","_key":"91417","_from":"53918","_to":"53912"} +{"$label":"ACTS_IN","name":"Till","type":"Role","_key":"91415","_from":"53917","_to":"53912"} +{"$label":"ACTS_IN","name":"Micky","type":"Role","_key":"91414","_from":"53916","_to":"53912"} +{"$label":"ACTS_IN","name":"Anke","type":"Role","_key":"91412","_from":"53915","_to":"53912"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"91411","_from":"53914","_to":"53912"} +{"$label":"ACTS_IN","name":"Pit","type":"Role","_key":"91409","_from":"53913","_to":"53912"} +{"$label":"DIRECTED","_key":"91425","_from":"53925","_to":"53919"} +{"$label":"ACTS_IN","name":"Amie d'Isabelle","type":"Role","_key":"91424","_from":"53924","_to":"53919"} +{"$label":"ACTS_IN","name":"S\u00e9bastien","type":"Role","_key":"91423","_from":"53923","_to":"53919"} +{"$label":"ACTS_IN","name":"S\u00e9bastien's Father","type":"Role","_key":"91422","_from":"53922","_to":"53919"} +{"$label":"ACTS_IN","name":"Elsa's Mother","type":"Role","_key":"91421","_from":"53921","_to":"53919"} +{"$label":"ACTS_IN","name":"Elsa","type":"Role","_key":"91420","_from":"53920","_to":"53919"} +{"$label":"DIRECTED","_key":"91433","_from":"53927","_to":"53926"} +{"$label":"ACTS_IN","name":"Alice \/ Cisco \/ Grivo \/ Worm pill scientist \/ Cop #2 \/ Cancer boy \/ White-trash man","type":"Role","_key":"116070","_from":"53927","_to":"68352"} +{"$label":"DIRECTED","_key":"100838","_from":"53927","_to":"59442"} +{"$label":"DIRECTED","_key":"97037","_from":"53927","_to":"57090"} +{"$label":"DIRECTED","_key":"91448","_from":"53930","_to":"53929"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"91469","_from":"53934","_to":"53933"} +{"$label":"ACTS_IN","name":"Jim Craig","type":"Role","_key":"97836","_from":"53934","_to":"57625"} +{"$label":"ACTS_IN","name":"Gianna","type":"Role","_key":"91482","_from":"53937","_to":"53935"} +{"$label":"ACTS_IN","name":"Giudice","type":"Role","_key":"91481","_from":"53936","_to":"53935"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"91487","_from":"53939","_to":"53938"} +{"$label":"ACTS_IN","name":"Ducalon","type":"Role","_key":"114128","_from":"53939","_to":"67211"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"91500","_from":"53943","_to":"53941"} +{"$label":"ACTS_IN","name":"Giuseppe 'Guido' Esposito","type":"Role","_key":"91497","_from":"53942","_to":"53941"} +{"$label":"ACTS_IN","name":"Wong Fei-Hung","type":"Role","_key":"91508","_from":"53946","_to":"53944"} +{"$label":"ACTS_IN","name":"Miss Orchid","type":"Role","_key":"91506","_from":"53945","_to":"53944"} +{"$label":"ACTS_IN","name":"Uli","type":"Role","_key":"91516","_from":"53950","_to":"53947"} +{"$label":"ACTS_IN","name":"Matz","type":"Role","_key":"91515","_from":"53949","_to":"53947"} +{"$label":"ACTS_IN","name":"Schwester Beate","type":"Role","_key":"91511","_from":"53948","_to":"53947"} +{"$label":"ACTS_IN","name":"Lady Teazle","type":"Role","_key":"91535","_from":"53956","_to":"53952"} +{"$label":"ACTS_IN","name":"Young Georgiana","type":"Role","_key":"91531","_from":"53955","_to":"53952"} +{"$label":"ACTS_IN","name":"Richard Brinsley Sheridan","type":"Role","_key":"91529","_from":"53954","_to":"53952"} +{"$label":"DIRECTED","_key":"91526","_from":"53953","_to":"53952"} +{"$label":"ACTS_IN","name":"John Eshton","type":"Role","_key":"104845","_from":"53954","_to":"61687"} +{"$label":"ACTS_IN","name":"Slannen","type":"Role","_key":"100287","_from":"53954","_to":"59140"} +{"$label":"ACTS_IN","name":"Harriet","type":"Role","_key":"97894","_from":"53956","_to":"57658"} +{"$label":"ACTS_IN","name":"Stritzl","type":"Role","_key":"91539","_from":"53959","_to":"53957"} +{"$label":"ACTS_IN","name":"Flagg","type":"Role","_key":"91538","_from":"53958","_to":"53957"} +{"$label":"ACTS_IN","name":"Wounded Officer 'Eden'","type":"Role","_key":"121384","_from":"53959","_to":"71326"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"91546","_from":"53962","_to":"53960"} +{"$label":"DIRECTED","_key":"91541","_from":"53961","_to":"53960"} +{"$label":"DIRECTED","_key":"91548","_from":"53965","_to":"53964"} +{"$label":"ACTS_IN","name":"Le taxidermiste","type":"Role","_key":"91553","_from":"53971","_to":"53966"} +{"$label":"ACTS_IN","name":"Marie Neige","type":"Role","_key":"91552","_from":"53970","_to":"53966"} +{"$label":"ACTS_IN","name":"La femme africaine","type":"Role","_key":"91551","_from":"53969","_to":"53966"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"91550","_from":"53968","_to":"53966"} +{"$label":"DIRECTED","_key":"91549","_from":"53967","_to":"53966"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"91558","_from":"53976","_to":"53972"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"91557","_from":"53975","_to":"53972"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"91556","_from":"53974","_to":"53972"} +{"$label":"DIRECTED","_key":"91554","_from":"53973","_to":"53972"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108166","_from":"53974","_to":"63924"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"91564","_from":"53980","_to":"53977"} +{"$label":"ACTS_IN","name":"Jesse","type":"Role","_key":"91563","_from":"53979","_to":"53977"} +{"$label":"DIRECTED","_key":"91559","_from":"53978","_to":"53977"} +{"$label":"ACTS_IN","name":"James Brighton \/ Matthew Honeycutt","type":"Role","_key":"91569","_from":"53983","_to":"53981"} +{"$label":"DIRECTED","_key":"91567","_from":"53982","_to":"53981"} +{"$label":"ACTS_IN","name":"Beau","type":"Role","_key":"91585","_from":"53996","_to":"53984"} +{"$label":"ACTS_IN","name":"Mrs. Wilson (as Lypsinka)","type":"Role","_key":"91584","_from":"53995","_to":"53984"} +{"$label":"ACTS_IN","name":"Ryder","type":"Role","_key":"91582","_from":"53994","_to":"53984"} +{"$label":"ACTS_IN","name":"Grandpa Muffler","type":"Role","_key":"91581","_from":"53993","_to":"53984"} +{"$label":"ACTS_IN","name":"Tiki","type":"Role","_key":"91578","_from":"53992","_to":"53984"} +{"$label":"ACTS_IN","name":"Mr. Puckov","type":"Role","_key":"91577","_from":"53991","_to":"53984"} +{"$label":"ACTS_IN","name":"Mr. Wilson","type":"Role","_key":"91576","_from":"53990","_to":"53984"} +{"$label":"ACTS_IN","name":"Muffler","type":"Role","_key":"91575","_from":"53989","_to":"53984"} +{"$label":"ACTS_IN","name":"Griff","type":"Role","_key":"91574","_from":"53988","_to":"53984"} +{"$label":"ACTS_IN","name":"Jarod","type":"Role","_key":"91573","_from":"53987","_to":"53984"} +{"$label":"ACTS_IN","name":"Andy Wilson","type":"Role","_key":"91571","_from":"53986","_to":"53984"} +{"$label":"DIRECTED","_key":"91570","_from":"53985","_to":"53984"} +{"$label":"DIRECTED","_key":"105544","_from":"53985","_to":"62108"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"105350","_from":"53989","_to":"61983"} +{"$label":"ACTS_IN","name":"Baxter \/ Mrs. Hurdicure \/ Wally Terzinsky \/ Malek \/ Big Stummies scientist \/ The Queen \/ Raj \/ Clemptor","type":"Role","_key":"116073","_from":"53990","_to":"68352"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103740","_from":"53990","_to":"61008"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"102773","_from":"53991","_to":"60460"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"91590","_from":"54000","_to":"53997"} +{"$label":"ACTS_IN","name":"Ulf","type":"Role","_key":"91588","_from":"53999","_to":"53997"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"91587","_from":"53998","_to":"53997"} +{"$label":"ACTS_IN","name":"Morten","type":"Role","_key":"116454","_from":"53999","_to":"68545"} +{"$label":"ACTS_IN","name":"Kristoffer Haukeland","type":"Role","_key":"103483","_from":"53999","_to":"60873"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"96309","_from":"53999","_to":"56598"} +{"$label":"ACTS_IN","name":"Gregers Gram","type":"Role","_key":"96177","_from":"53999","_to":"56525"} +{"$label":"ACTS_IN","name":"Admitting Nurse","type":"Role","_key":"91608","_from":"54013","_to":"54001"} +{"$label":"ACTS_IN","name":"Resident","type":"Role","_key":"91607","_from":"54012","_to":"54001"} +{"$label":"ACTS_IN","name":"Food Delivery Guy","type":"Role","_key":"91605","_from":"54011","_to":"54001"} +{"$label":"ACTS_IN","name":"Greenpeace Guy","type":"Role","_key":"91604","_from":"54010","_to":"54001"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"91603","_from":"54009","_to":"54001"} +{"$label":"ACTS_IN","name":"Upper East Side Lady","type":"Role","_key":"91601","_from":"54008","_to":"54001"} +{"$label":"ACTS_IN","name":"Sneezy Lady","type":"Role","_key":"91600","_from":"54007","_to":"54001"} +{"$label":"ACTS_IN","name":"Sneezy Cop (as Tyre Simpson)","type":"Role","_key":"91599","_from":"54006","_to":"54001"} +{"$label":"ACTS_IN","name":"Accident Bystander #2","type":"Role","_key":"91598","_from":"54005","_to":"54001"} +{"$label":"ACTS_IN","name":"Accident Bystander #1","type":"Role","_key":"91597","_from":"54004","_to":"54001"} +{"$label":"ACTS_IN","name":"Young Wife","type":"Role","_key":"91596","_from":"54003","_to":"54001"} +{"$label":"ACTS_IN","name":"Young Husband","type":"Role","_key":"91595","_from":"54002","_to":"54001"} +{"$label":"DIRECTED","_key":"91611","_from":"54015","_to":"54014"} +{"$label":"DIRECTED","_key":"115393","_from":"54015","_to":"67943"} +{"$label":"ACTS_IN","name":"Karim","type":"Role","_key":"91619","_from":"54020","_to":"54016"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"91617","_from":"54019","_to":"54016"} +{"$label":"ACTS_IN","name":"Samir","type":"Role","_key":"91616","_from":"54018","_to":"54016"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"91615","_from":"54017","_to":"54016"} +{"$label":"DIRECTED","_key":"91620","_from":"54022","_to":"54021"} +{"$label":"DIRECTED","_key":"91621","_from":"54024","_to":"54023"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"91623","_from":"54027","_to":"54025"} +{"$label":"DIRECTED","_key":"91622","_from":"54026","_to":"54025"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"91626","_from":"54030","_to":"54028"} +{"$label":"DIRECTED","_key":"91625","_from":"54029","_to":"54028"} +{"$label":"DIRECTED","_key":"91831","_from":"54029","_to":"54172"} +{"$label":"DIRECTED","_key":"91628","_from":"54032","_to":"54031"} +{"$label":"ACTS_IN","name":"Sonjas Kollegin","type":"Role","_key":"91635","_from":"54037","_to":"54033"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"91632","_from":"54036","_to":"54033"} +{"$label":"ACTS_IN","name":"Sonja","type":"Role","_key":"91630","_from":"54035","_to":"54033"} +{"$label":"DIRECTED","_key":"91629","_from":"54034","_to":"54033"} +{"$label":"ACTS_IN","name":"Arturo","type":"Role","_key":"91645","_from":"54046","_to":"54038"} +{"$label":"ACTS_IN","name":"Madre de Dani","type":"Role","_key":"91644","_from":"54045","_to":"54038"} +{"$label":"ACTS_IN","name":"Marianne","type":"Role","_key":"91643","_from":"54044","_to":"54038"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"91641","_from":"54043","_to":"54038"} +{"$label":"ACTS_IN","name":"Berta","type":"Role","_key":"91640","_from":"54042","_to":"54038"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"91639","_from":"54041","_to":"54038"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"91638","_from":"54040","_to":"54038"} +{"$label":"DIRECTED","_key":"91636","_from":"54039","_to":"54038"} +{"$label":"ACTS_IN","name":"Voisine","type":"Role","_key":"91651","_from":"54051","_to":"54047"} +{"$label":"ACTS_IN","name":"Voisin","type":"Role","_key":"91650","_from":"54050","_to":"54047"} +{"$label":"ACTS_IN","name":"Cheyenne","type":"Role","_key":"91647","_from":"54049","_to":"54047"} +{"$label":"DIRECTED","_key":"91646","_from":"54048","_to":"54047"} +{"$label":"DIRECTED","_key":"91662","_from":"54058","_to":"54052"} +{"$label":"ACTS_IN","name":"Priya Shah","type":"Role","_key":"91661","_from":"54057","_to":"54052"} +{"$label":"ACTS_IN","name":"Mohan Shah","type":"Role","_key":"91659","_from":"54056","_to":"54052"} +{"$label":"ACTS_IN","name":"Sanjay Khanna","type":"Role","_key":"91658","_from":"54055","_to":"54052"} +{"$label":"ACTS_IN","name":"Bobbi","type":"Role","_key":"91656","_from":"54054","_to":"54052"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"91653","_from":"54053","_to":"54052"} +{"$label":"ACTS_IN","name":"Nathir","type":"Role","_key":"93745","_from":"54056","_to":"55182"} +{"$label":"ACTS_IN","name":"Dakota","type":"Role","_key":"91667","_from":"54064","_to":"54060"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"91666","_from":"54063","_to":"54060"} +{"$label":"ACTS_IN","name":"Mishka","type":"Role","_key":"91665","_from":"54062","_to":"54060"} +{"$label":"ACTS_IN","name":"Josey Fargo","type":"Role","_key":"91664","_from":"54061","_to":"54060"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"91672","_from":"54069","_to":"54065"} +{"$label":"ACTS_IN","name":"Lia","type":"Role","_key":"91670","_from":"54068","_to":"54065"} +{"$label":"ACTS_IN","name":"Kinha","type":"Role","_key":"91669","_from":"54067","_to":"54065"} +{"$label":"DIRECTED","_key":"91668","_from":"54066","_to":"54065"} +{"$label":"DIRECTED","_key":"91673","_from":"54071","_to":"54070"} +{"$label":"ACTS_IN","name":"Uschi","type":"Role","_key":"91678","_from":"54074","_to":"54072"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"91676","_from":"54073","_to":"54072"} +{"$label":"ACTS_IN","name":"Herself, associate director of Anti-Defamation League","type":"Role","_key":"91700","_from":"54096","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, Blood","type":"Role","_key":"91699","_from":"54095","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, pastor of The Church of Jesus Christ-Christian","type":"Role","_key":"91698","_from":"54094","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, End Hate Now negotiator","type":"Role","_key":"91697","_from":"54093","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, leader of White Revolution","type":"Role","_key":"91696","_from":"54092","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself - Rabbi","type":"Role","_key":"91695","_from":"54091","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, Sunny Bastards Records","type":"Role","_key":"91694","_from":"54090","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, Blood","type":"Role","_key":"91693","_from":"54089","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, civil rights attorney","type":"Role","_key":"91692","_from":"54088","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, White Aryan Resistance organizer","type":"Role","_key":"91691","_from":"54087","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, politologist","type":"Role","_key":"91690","_from":"54086","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, Sniper Records","type":"Role","_key":"91689","_from":"54085","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, police","type":"Role","_key":"91688","_from":"54084","_to":"54076"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"91687","_from":"54083","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, policeman","type":"Role","_key":"91686","_from":"54082","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, editor of 'Kriegsberichter'","type":"Role","_key":"91685","_from":"54081","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, Blood","type":"Role","_key":"91684","_from":"54080","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself, editor of \"Expo\"","type":"Role","_key":"91683","_from":"54079","_to":"54076"} +{"$label":"ACTS_IN","name":"Herself, editor of \"Der Bund\"","type":"Role","_key":"91682","_from":"54078","_to":"54076"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91681","_from":"54077","_to":"54076"} +{"$label":"DIRECTED","_key":"91680","_from":"54077","_to":"54076"} +{"$label":"DIRECTED","_key":"91701","_from":"54077","_to":"54097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91706","_from":"54102","_to":"54097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91705","_from":"54101","_to":"54097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91704","_from":"54100","_to":"54097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91703","_from":"54099","_to":"54097"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91702","_from":"54098","_to":"54097"} +{"$label":"DIRECTED","_key":"91715","_from":"54105","_to":"54103"} +{"$label":"ACTS_IN","name":"Hofrat Leonhard","type":"Role","_key":"91713","_from":"54104","_to":"54103"} +{"$label":"ACTS_IN","name":"Garth","type":"Role","_key":"91732","_from":"54112","_to":"54107"} +{"$label":"ACTS_IN","name":"Paddy","type":"Role","_key":"91730","_from":"54111","_to":"54107"} +{"$label":"ACTS_IN","name":"Salty","type":"Role","_key":"91729","_from":"54110","_to":"54107"} +{"$label":"ACTS_IN","name":"Sweets","type":"Role","_key":"91728","_from":"54109","_to":"54107"} +{"$label":"DIRECTED","_key":"91719","_from":"54108","_to":"54107"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"93687","_from":"54109","_to":"55148"} +{"$label":"ACTS_IN","name":"Sebastion","type":"Role","_key":"110557","_from":"54112","_to":"65323"} +{"$label":"ACTS_IN","name":"Sam Reide","type":"Role","_key":"108358","_from":"54112","_to":"64053"} +{"$label":"DIRECTED","_key":"91739","_from":"54116","_to":"54114"} +{"$label":"ACTS_IN","name":"Bob Rogers","type":"Role","_key":"91736","_from":"54115","_to":"54114"} +{"$label":"ACTS_IN","name":"Accountant Terzetti","type":"Role","_key":"91749","_from":"54124","_to":"54117"} +{"$label":"ACTS_IN","name":"Luciano","type":"Role","_key":"91748","_from":"54123","_to":"54117"} +{"$label":"ACTS_IN","name":"Micheles Vater","type":"Role","_key":"91747","_from":"54122","_to":"54117"} +{"$label":"ACTS_IN","name":"Salviati","type":"Role","_key":"91746","_from":"54121","_to":"54117"} +{"$label":"ACTS_IN","name":"Riki","type":"Role","_key":"91745","_from":"54120","_to":"54117"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"91744","_from":"54119","_to":"54117"} +{"$label":"ACTS_IN","name":"Michele","type":"Role","_key":"91742","_from":"54118","_to":"54117"} +{"$label":"ACTS_IN","name":"Da Baker","type":"Role","_key":"91771","_from":"54141","_to":"54126"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"91770","_from":"54140","_to":"54126"} +{"$label":"ACTS_IN","name":"Maria as a Child","type":"Role","_key":"91769","_from":"54139","_to":"54126"} +{"$label":"ACTS_IN","name":"Pater Francis","type":"Role","_key":"91768","_from":"54138","_to":"54126"} +{"$label":"ACTS_IN","name":"Aunt Marama","type":"Role","_key":"91767","_from":"54137","_to":"54126"} +{"$label":"ACTS_IN","name":"Pule","type":"Role","_key":"91766","_from":"54136","_to":"54126"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"91765","_from":"54135","_to":"54126"} +{"$label":"ACTS_IN","name":"Moses","type":"Role","_key":"91764","_from":"54134","_to":"54126"} +{"$label":"ACTS_IN","name":"Nia","type":"Role","_key":"91763","_from":"54133","_to":"54126"} +{"$label":"ACTS_IN","name":"Aunty Cat","type":"Role","_key":"91762","_from":"54132","_to":"54126"} +{"$label":"ACTS_IN","name":"Uncle Percy","type":"Role","_key":"91761","_from":"54131","_to":"54126"} +{"$label":"ACTS_IN","name":"Tyson","type":"Role","_key":"91758","_from":"54130","_to":"54126"} +{"$label":"ACTS_IN","name":"Erasmus","type":"Role","_key":"91756","_from":"54129","_to":"54126"} +{"$label":"ACTS_IN","name":"Hibiscus","type":"Role","_key":"91755","_from":"54128","_to":"54126"} +{"$label":"DIRECTED","_key":"91751","_from":"54127","_to":"54126"} +{"$label":"ACTS_IN","name":"Sisse","type":"Role","_key":"91774","_from":"54144","_to":"54142"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"91773","_from":"54143","_to":"54142"} +{"$label":"ACTS_IN","name":"Andropov","type":"Role","_key":"91787","_from":"54150","_to":"54145"} +{"$label":"ACTS_IN","name":"Anatol","type":"Role","_key":"91785","_from":"54149","_to":"54145"} +{"$label":"ACTS_IN","name":"B\u00e4rbel Maltaus","type":"Role","_key":"91784","_from":"54148","_to":"54145"} +{"$label":"ACTS_IN","name":"Friedrich Hoch","type":"Role","_key":"91783","_from":"54147","_to":"54145"} +{"$label":"ACTS_IN","name":"Andrej","type":"Role","_key":"91779","_from":"54146","_to":"54145"} +{"$label":"ACTS_IN","name":"James Stewart of the Glens","type":"Role","_key":"91806","_from":"54158","_to":"54153"} +{"$label":"ACTS_IN","name":"Simon Fraser","type":"Role","_key":"91805","_from":"54157","_to":"54153"} +{"$label":"ACTS_IN","name":"Charles Stewart","type":"Role","_key":"91804","_from":"54156","_to":"54153"} +{"$label":"ACTS_IN","name":"Catriona Drummond","type":"Role","_key":"91798","_from":"54155","_to":"54153"} +{"$label":"ACTS_IN","name":"David Balfour","type":"Role","_key":"91796","_from":"54154","_to":"54153"} +{"$label":"ACTS_IN","name":"Violet","type":"Role","_key":"91814","_from":"54161","_to":"54159"} +{"$label":"DIRECTED","_key":"91808","_from":"54160","_to":"54159"} +{"$label":"DIRECTED","_key":"101571","_from":"54160","_to":"59773"} +{"$label":"ACTS_IN","name":"S\u00e9bastien","type":"Role","_key":"91820","_from":"54166","_to":"54162"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"91819","_from":"54165","_to":"54162"} +{"$label":"ACTS_IN","name":"Lucie","type":"Role","_key":"91817","_from":"54164","_to":"54162"} +{"$label":"DIRECTED","_key":"91816","_from":"54163","_to":"54162"} +{"$label":"ACTS_IN","name":"Clara, la baby-sitter","type":"Role","_key":"119466","_from":"54164","_to":"70178"} +{"$label":"DIRECTED","_key":"91823","_from":"54169","_to":"54167"} +{"$label":"ACTS_IN","name":"Levi Sparks","type":"Role","_key":"91822","_from":"54168","_to":"54167"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"91830","_from":"54171","_to":"54170"} +{"$label":"DIRECTED","_key":"91844","_from":"54184","_to":"54174"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"91843","_from":"54183","_to":"54174"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"91842","_from":"54182","_to":"54174"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"91841","_from":"54181","_to":"54174"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"91840","_from":"54180","_to":"54174"} +{"$label":"ACTS_IN","name":"Hal (as Nicholas Ouellette)","type":"Role","_key":"91839","_from":"54179","_to":"54174"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"91837","_from":"54178","_to":"54174"} +{"$label":"ACTS_IN","name":"Gloria O'Neil","type":"Role","_key":"91836","_from":"54177","_to":"54174"} +{"$label":"ACTS_IN","name":"Mr. Logue","type":"Role","_key":"91835","_from":"54176","_to":"54174"} +{"$label":"ACTS_IN","name":"Mrs. Logue","type":"Role","_key":"91834","_from":"54175","_to":"54174"} +{"$label":"ACTS_IN","name":"Gypsy John","type":"Role","_key":"91855","_from":"54191","_to":"54185"} +{"$label":"ACTS_IN","name":"Patti","type":"Role","_key":"91854","_from":"54190","_to":"54185"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"91853","_from":"54189","_to":"54185"} +{"$label":"ACTS_IN","name":"Tuff","type":"Role","_key":"91852","_from":"54188","_to":"54185"} +{"$label":"ACTS_IN","name":"Herbie","type":"Role","_key":"91851","_from":"54187","_to":"54185"} +{"$label":"ACTS_IN","name":"Big Al","type":"Role","_key":"91850","_from":"54186","_to":"54185"} +{"$label":"ACTS_IN","name":"Tionne","type":"Role","_key":"91860","_from":"54198","_to":"54195"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"91858","_from":"54197","_to":"54195"} +{"$label":"ACTS_IN","name":"Sincere","type":"Role","_key":"91857","_from":"54196","_to":"54195"} +{"$label":"ACTS_IN","name":"Hermes Conrad","type":"Role","_key":"91868","_from":"54201","_to":"54199"} +{"$label":"DIRECTED","_key":"91861","_from":"54200","_to":"54199"} +{"$label":"DIRECTED","_key":"103008","_from":"54200","_to":"60586"} +{"$label":"ACTS_IN","name":"Space Villain \/ Glacier of Evil \/ Dracula \/ Judge Roy Spleen \/ Underworld Cop (voice)","type":"Role","_key":"111844","_from":"54201","_to":"66010"} +{"$label":"ACTS_IN","name":"Hermes Conrad","type":"Role","_key":"103006","_from":"54201","_to":"60586"} +{"$label":"ACTS_IN","name":"Hermes Conrad","type":"Role","_key":"93616","_from":"54201","_to":"55120"} +{"$label":"ACTS_IN","name":"Angus Haggart \/ Volunteer #2","type":"Role","_key":"91896","_from":"54201","_to":"54212"} +{"$label":"DIRECTED","_key":"91871","_from":"54203","_to":"54202"} +{"$label":"DIRECTED","_key":"91881","_from":"54206","_to":"54204"} +{"$label":"ACTS_IN","name":"SS Maj.Gen. Heinrich M\u00fcller","type":"Role","_key":"91880","_from":"54205","_to":"54204"} +{"$label":"ACTS_IN","name":"Davey Gulliver","type":"Role","_key":"100661","_from":"54205","_to":"59349"} +{"$label":"DIRECTED","_key":"120569","_from":"54206","_to":"70813"} +{"$label":"DIRECTED","_key":"110409","_from":"54206","_to":"65230"} +{"$label":"DIRECTED","_key":"91886","_from":"54211","_to":"54207"} +{"$label":"ACTS_IN","name":"Robert Hutchings","type":"Role","_key":"91885","_from":"54210","_to":"54207"} +{"$label":"ACTS_IN","name":"Ali Fadhil","type":"Role","_key":"91884","_from":"54209","_to":"54207"} +{"$label":"ACTS_IN","name":"Gerald Burke","type":"Role","_key":"91883","_from":"54208","_to":"54207"} +{"$label":"ACTS_IN","name":"Professor Fiona Pembrooke","type":"Role","_key":"91897","_from":"54216","_to":"54212"} +{"$label":"ACTS_IN","name":"Velma","type":"Role","_key":"91891","_from":"54215","_to":"54212"} +{"$label":"DIRECTED","_key":"91888","_from":"54214","_to":"54212"} +{"$label":"DIRECTED","_key":"91887","_from":"54213","_to":"54212"} +{"$label":"ACTS_IN","name":"Velma (voice)","type":"Role","_key":"109049","_from":"54215","_to":"64441"} +{"$label":"ACTS_IN","name":"Velma (voice)","type":"Role","_key":"94085","_from":"54215","_to":"55405"} +{"$label":"DIRECTED","_key":"91902","_from":"54221","_to":"54219"} +{"$label":"ACTS_IN","name":"Paula Crowe","type":"Role","_key":"91901","_from":"54220","_to":"54219"} +{"$label":"DIRECTED","_key":"121204","_from":"54221","_to":"71196"} +{"$label":"DIRECTED","_key":"98872","_from":"54221","_to":"58262"} +{"$label":"DIRECTED","_key":"91917","_from":"54228","_to":"54222"} +{"$label":"ACTS_IN","name":"Nirrti","type":"Role","_key":"91916","_from":"54227","_to":"54222"} +{"$label":"ACTS_IN","name":"Ba'al","type":"Role","_key":"91910","_from":"54226","_to":"54222"} +{"$label":"ACTS_IN","name":"Dr. Daniel Jackson","type":"Role","_key":"91906","_from":"54225","_to":"54222"} +{"$label":"ACTS_IN","name":"Teal'c","type":"Role","_key":"91905","_from":"54224","_to":"54222"} +{"$label":"ACTS_IN","name":"Colonel Samantha Carter","type":"Role","_key":"91904","_from":"54223","_to":"54222"} +{"$label":"ACTS_IN","name":"Samantha Carter","type":"Role","_key":"91953","_from":"54223","_to":"54247"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"116873","_from":"54224","_to":"68802"} +{"$label":"ACTS_IN","name":"Teal'c","type":"Role","_key":"91954","_from":"54224","_to":"54247"} +{"$label":"ACTS_IN","name":"Jacob Thain","type":"Role","_key":"117052","_from":"54225","_to":"68886"} +{"$label":"ACTS_IN","name":"Daniel Jackson","type":"Role","_key":"91955","_from":"54225","_to":"54247"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"91923","_from":"54231","_to":"54230"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102671","_from":"54231","_to":"60399"} +{"$label":"DIRECTED","_key":"91933","_from":"54233","_to":"54232"} +{"$label":"ACTS_IN","name":"Scott McCoy","type":"Role","_key":"119529","_from":"54233","_to":"70216"} +{"$label":"ACTS_IN","name":"Maki Kasahara (voice)","type":"Role","_key":"91944","_from":"54241","_to":"54235"} +{"$label":"ACTS_IN","name":"Tomizawa (voice)","type":"Role","_key":"91943","_from":"54240","_to":"54235"} +{"$label":"ACTS_IN","name":"Sayuri Sawatari (voice) (as Yuuka Nanri)","type":"Role","_key":"91941","_from":"54239","_to":"54235"} +{"$label":"ACTS_IN","name":"Takuya Shirakawa (voice)","type":"Role","_key":"91940","_from":"54238","_to":"54235"} +{"$label":"ACTS_IN","name":"Hiroki Fujisawa (voice)","type":"Role","_key":"91939","_from":"54237","_to":"54235"} +{"$label":"DIRECTED","_key":"91938","_from":"54236","_to":"54235"} +{"$label":"ACTS_IN","name":"Kakashi Hatake","type":"Role","_key":"117795","_from":"54240","_to":"69239"} +{"$label":"ACTS_IN","name":"Kigai Yuto","type":"Role","_key":"111105","_from":"54240","_to":"65622"} +{"$label":"ACTS_IN","name":"Kakashi Hatake","type":"Role","_key":"110456","_from":"54240","_to":"65255"} +{"$label":"ACTS_IN","name":"DJ Ti\u00ebsto","type":"Role","_key":"91945","_from":"54243","_to":"54242"} +{"$label":"ACTS_IN","name":"DJ Ti\u00ebsto","type":"Role","_key":"108688","_from":"54243","_to":"64245"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105184","_from":"54243","_to":"61901"} +{"$label":"DIRECTED","_key":"91950","_from":"54246","_to":"54244"} +{"$label":"ACTS_IN","name":"Margaret \/ Melissa \/ Mary","type":"Role","_key":"91947","_from":"54245","_to":"54244"} +{"$label":"DIRECTED","_key":"91951","_from":"54248","_to":"54247"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"91959","_from":"54252","_to":"54250"} +{"$label":"DIRECTED","_key":"91958","_from":"54251","_to":"54250"} +{"$label":"DIRECTED","_key":"92076","_from":"54251","_to":"54331"} +{"$label":"DIRECTED","_key":"91967","_from":"54260","_to":"54253"} +{"$label":"ACTS_IN","name":"Melody (singing voice)","type":"Role","_key":"91966","_from":"54259","_to":"54253"} +{"$label":"ACTS_IN","name":"Melody (voice)","type":"Role","_key":"91965","_from":"54258","_to":"54253"} +{"$label":"ACTS_IN","name":"Stacie (voice)","type":"Role","_key":"91964","_from":"54257","_to":"54253"} +{"$label":"ACTS_IN","name":"Teresa \/ Alexa (voice)","type":"Role","_key":"91963","_from":"54256","_to":"54253"} +{"$label":"ACTS_IN","name":"Barbie \/ Liana (singing voice)","type":"Role","_key":"91962","_from":"54255","_to":"54253"} +{"$label":"ACTS_IN","name":"Barbie \/ Liana (voice)","type":"Role","_key":"91961","_from":"54254","_to":"54253"} +{"$label":"ACTS_IN","name":"Hitomi","type":"Role","_key":"110731","_from":"54254","_to":"65413"} +{"$label":"ACTS_IN","name":"Barbie (voice)","type":"Role","_key":"109157","_from":"54254","_to":"64489"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"103447","_from":"54254","_to":"60846"} +{"$label":"ACTS_IN","name":"Princess Annaliese\/Erika","type":"Role","_key":"103441","_from":"54254","_to":"60843"} +{"$label":"ACTS_IN","name":"Barbie \/ Odette","type":"Role","_key":"102736","_from":"54254","_to":"60440"} +{"$label":"ACTS_IN","name":"Barbie\/Eden Starling","type":"Role","_key":"94614","_from":"54254","_to":"55747"} +{"$label":"ACTS_IN","name":"Elina","type":"Role","_key":"93726","_from":"54254","_to":"55176"} +{"$label":"ACTS_IN","name":"Elina","type":"Role","_key":"93713","_from":"54254","_to":"55166"} +{"$label":"ACTS_IN","name":"Barbie \/ Rosella (voice)","type":"Role","_key":"93712","_from":"54254","_to":"55165"} +{"$label":"DIRECTED","_key":"91973","_from":"54262","_to":"54261"} +{"$label":"DIRECTED","_key":"91986","_from":"54268","_to":"54263"} +{"$label":"ACTS_IN","name":"Foster","type":"Role","_key":"91983","_from":"54267","_to":"54263"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"91981","_from":"54266","_to":"54263"} +{"$label":"ACTS_IN","name":"Jay Jay","type":"Role","_key":"91980","_from":"54265","_to":"54263"} +{"$label":"ACTS_IN","name":"Dick Durkin","type":"Role","_key":"91977","_from":"54264","_to":"54263"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91991","_from":"54273","_to":"54269"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91990","_from":"54272","_to":"54269"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91989","_from":"54271","_to":"54269"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"91988","_from":"54270","_to":"54269"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111601","_from":"54270","_to":"65887"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106734","_from":"54270","_to":"62909"} +{"$label":"ACTS_IN","name":"Sassy Sue","type":"Role","_key":"92006","_from":"54284","_to":"54275"} +{"$label":"ACTS_IN","name":"Berenge","type":"Role","_key":"92005","_from":"54283","_to":"54275"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"92004","_from":"54282","_to":"54275"} +{"$label":"ACTS_IN","name":"Jessy","type":"Role","_key":"92003","_from":"54281","_to":"54275"} +{"$label":"ACTS_IN","name":"Gaia","type":"Role","_key":"92002","_from":"54280","_to":"54275"} +{"$label":"ACTS_IN","name":"Sox","type":"Role","_key":"92001","_from":"54279","_to":"54275"} +{"$label":"ACTS_IN","name":"Lillith","type":"Role","_key":"92000","_from":"54278","_to":"54275"} +{"$label":"ACTS_IN","name":"Kat","type":"Role","_key":"91998","_from":"54277","_to":"54275"} +{"$label":"DIRECTED","_key":"91997","_from":"54276","_to":"54275"} +{"$label":"ACTS_IN","name":"Jenna Jameson","type":"Role","_key":"114157","_from":"54277","_to":"67242"} +{"$label":"DIRECTED","_key":"92011","_from":"54289","_to":"54285"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"92010","_from":"54288","_to":"54285"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"92009","_from":"54287","_to":"54285"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92008","_from":"54286","_to":"54285"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99475","_from":"54286","_to":"58635"} +{"$label":"ACTS_IN","name":"Bonnet","type":"Role","_key":"92022","_from":"54295","_to":"54290"} +{"$label":"ACTS_IN","name":"Mohan Singh","type":"Role","_key":"92020","_from":"54294","_to":"54290"} +{"$label":"ACTS_IN","name":"Celia Burroughs","type":"Role","_key":"92018","_from":"54293","_to":"54290"} +{"$label":"ACTS_IN","name":"Patrick Harper","type":"Role","_key":"92014","_from":"54292","_to":"54290"} +{"$label":"DIRECTED","_key":"92012","_from":"54291","_to":"54290"} +{"$label":"DIRECTED","_key":"105949","_from":"54291","_to":"62378"} +{"$label":"ACTS_IN","name":"Didi","type":"Role","_key":"117852","_from":"54293","_to":"69278"} +{"$label":"ACTS_IN","name":"Chaudhary","type":"Role","_key":"108789","_from":"54294","_to":"64303"} +{"$label":"ACTS_IN","name":"Fareed Mansour","type":"Role","_key":"93744","_from":"54294","_to":"55182"} +{"$label":"DIRECTED","_key":"92030","_from":"54299","_to":"54296"} +{"$label":"ACTS_IN","name":"Viper","type":"Role","_key":"92028","_from":"54298","_to":"54296"} +{"$label":"ACTS_IN","name":"Michael Porter","type":"Role","_key":"92026","_from":"54297","_to":"54296"} +{"$label":"ACTS_IN","name":"Richard Carrier","type":"Role","_key":"92034","_from":"54305","_to":"54301"} +{"$label":"ACTS_IN","name":"Robert M. Price","type":"Role","_key":"92033","_from":"54304","_to":"54301"} +{"$label":"ACTS_IN","name":"Sam Harris","type":"Role","_key":"92032","_from":"54303","_to":"54301"} +{"$label":"ACTS_IN","name":"Richard Dawkins","type":"Role","_key":"92031","_from":"54302","_to":"54301"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94096","_from":"54302","_to":"55409"} +{"$label":"DIRECTED","_key":"92036","_from":"54308","_to":"54307"} +{"$label":"DIRECTED","_key":"93222","_from":"54308","_to":"54922"} +{"$label":"DIRECTED","_key":"92038","_from":"54311","_to":"54309"} +{"$label":"DIRECTED","_key":"92037","_from":"54310","_to":"54309"} +{"$label":"DIRECTED","_key":"120525","_from":"54310","_to":"70788"} +{"$label":"DIRECTED","_key":"92069","_from":"54328","_to":"54312"} +{"$label":"ACTS_IN","name":"List Member #4","type":"Role","_key":"92067","_from":"54327","_to":"54312"} +{"$label":"ACTS_IN","name":"List Member #3","type":"Role","_key":"92065","_from":"54326","_to":"54312"} +{"$label":"ACTS_IN","name":"List Member #2","type":"Role","_key":"92064","_from":"54325","_to":"54312"} +{"$label":"ACTS_IN","name":"Secretary #2","type":"Role","_key":"92059","_from":"54324","_to":"54312"} +{"$label":"ACTS_IN","name":"Secretary #1","type":"Role","_key":"92058","_from":"54323","_to":"54312"} +{"$label":"ACTS_IN","name":"Clancey Controller","type":"Role","_key":"92057","_from":"54322","_to":"54312"} +{"$label":"ACTS_IN","name":"Tango Dancer","type":"Role","_key":"92056","_from":"54321","_to":"54312"} +{"$label":"ACTS_IN","name":"Velvet Rope Dancer #3","type":"Role","_key":"92055","_from":"54320","_to":"54312"} +{"$label":"ACTS_IN","name":"Velvet Rope Dancer #2","type":"Role","_key":"92054","_from":"54319","_to":"54312"} +{"$label":"ACTS_IN","name":"Velvet Rope Dancer #1","type":"Role","_key":"92053","_from":"54318","_to":"54312"} +{"$label":"ACTS_IN","name":"Woman at Waldorf Astoria","type":"Role","_key":"92052","_from":"54317","_to":"54312"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"92051","_from":"54316","_to":"54312"} +{"$label":"ACTS_IN","name":"Herr Kleiner \/ Mr. Moretti","type":"Role","_key":"92050","_from":"54315","_to":"54312"} +{"$label":"ACTS_IN","name":"Tennis Player #1","type":"Role","_key":"92049","_from":"54314","_to":"54312"} +{"$label":"ACTS_IN","name":"Lawyer #2","type":"Role","_key":"92047","_from":"54313","_to":"54312"} +{"$label":"DIRECTED","_key":"92075","_from":"54330","_to":"54329"} +{"$label":"DIRECTED","_key":"92088","_from":"54337","_to":"54334"} +{"$label":"DIRECTED","_key":"92087","_from":"54336","_to":"54334"} +{"$label":"ACTS_IN","name":"Brian Steidle","type":"Role","_key":"92086","_from":"54335","_to":"54334"} +{"$label":"ACTS_IN","name":"Brody (as Todd William Schroeder)","type":"Role","_key":"92100","_from":"54346","_to":"54339"} +{"$label":"ACTS_IN","name":"Gordo Thorsen","type":"Role","_key":"92098","_from":"54345","_to":"54339"} +{"$label":"ACTS_IN","name":"Ridley Wilmott","type":"Role","_key":"92097","_from":"54344","_to":"54339"} +{"$label":"ACTS_IN","name":"Andrew Maxwell","type":"Role","_key":"92096","_from":"54343","_to":"54339"} +{"$label":"ACTS_IN","name":"Eliot Stone","type":"Role","_key":"92095","_from":"54342","_to":"54339"} +{"$label":"ACTS_IN","name":"Jason Creed (as Josh Close)","type":"Role","_key":"92092","_from":"54341","_to":"54339"} +{"$label":"ACTS_IN","name":"Debra Moynihan","type":"Role","_key":"92091","_from":"54340","_to":"54339"} +{"$label":"ACTS_IN","name":"David Mann","type":"Role","_key":"100922","_from":"54342","_to":"59493"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"121055","_from":"54345","_to":"71088"} +{"$label":"ACTS_IN","name":"Dying Man","type":"Role","_key":"92112","_from":"54352","_to":"54350"} +{"$label":"ACTS_IN","name":"Son of El Topo","type":"Role","_key":"92111","_from":"54351","_to":"54350"} +{"$label":"ACTS_IN","name":"Presto DiGiotagione \/ Alec Azam (voice)","type":"Role","_key":"92116","_from":"54354","_to":"54353"} +{"$label":"DIRECTED","_key":"92115","_from":"54354","_to":"54353"} +{"$label":"DIRECTED","_key":"92124","_from":"54358","_to":"54355"} +{"$label":"ACTS_IN","name":"Ari Vatanen","type":"Role","_key":"92123","_from":"54357","_to":"54355"} +{"$label":"ACTS_IN","name":"Paul Gatineau","type":"Role","_key":"92122","_from":"54356","_to":"54355"} +{"$label":"ACTS_IN","name":"Auguste","type":"Role","_key":"121146","_from":"54356","_to":"71158"} +{"$label":"ACTS_IN","name":"Micky la l\u00e9gende","type":"Role","_key":"111986","_from":"54356","_to":"66100"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"105573","_from":"54356","_to":"62126"} +{"$label":"ACTS_IN","name":"Lefranc","type":"Role","_key":"100096","_from":"54356","_to":"59039"} +{"$label":"DIRECTED","_key":"92133","_from":"54362","_to":"54359"} +{"$label":"ACTS_IN","name":"Thierry","type":"Role","_key":"92131","_from":"54361","_to":"54359"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"92128","_from":"54360","_to":"54359"} +{"$label":"ACTS_IN","name":"La prostitu\u00e9e","type":"Role","_key":"92139","_from":"54365","_to":"54363"} +{"$label":"ACTS_IN","name":"Justine M\u00e9nard","type":"Role","_key":"92138","_from":"54364","_to":"54363"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92151","_from":"54377","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92150","_from":"54376","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92149","_from":"54375","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92148","_from":"54374","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92147","_from":"54373","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92146","_from":"54372","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92145","_from":"54371","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92144","_from":"54370","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92143","_from":"54369","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92142","_from":"54368","_to":"54366"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92141","_from":"54367","_to":"54366"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113195","_from":"54367","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113149","_from":"54367","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113121","_from":"54367","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113078","_from":"54367","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113036","_from":"54367","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113001","_from":"54367","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112958","_from":"54367","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112926","_from":"54367","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112892","_from":"54367","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112858","_from":"54367","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112741","_from":"54367","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112693","_from":"54367","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112671","_from":"54367","_to":"66538"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111057","_from":"54367","_to":"65602"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95514","_from":"54367","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92982","_from":"54367","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92904","_from":"54367","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92770","_from":"54367","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92703","_from":"54367","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92480","_from":"54367","_to":"54594"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92446","_from":"54367","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115792","_from":"54368","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98069","_from":"54368","_to":"57747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92858","_from":"54368","_to":"54770"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92671","_from":"54368","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92456","_from":"54368","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118631","_from":"54369","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92935","_from":"54369","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92662","_from":"54369","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118527","_from":"54370","_to":"69688"} +{"$label":"ACTS_IN","name":"ISAAC","type":"Role","_key":"115728","_from":"54370","_to":"68140"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113163","_from":"54370","_to":"66700"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113102","_from":"54370","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113066","_from":"54370","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100634","_from":"54370","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95533","_from":"54370","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92996","_from":"54370","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92966","_from":"54370","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92840","_from":"54370","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92751","_from":"54370","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92687","_from":"54370","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92469","_from":"54370","_to":"54588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92381","_from":"54370","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106033","_from":"54371","_to":"62424"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98072","_from":"54371","_to":"57747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92649","_from":"54371","_to":"54686"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112667","_from":"54372","_to":"66538"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100633","_from":"54372","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92647","_from":"54372","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92402","_from":"54372","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100638","_from":"54373","_to":"59341"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117058","_from":"54374","_to":"68889"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92749","_from":"54374","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92363","_from":"54374","_to":"54506"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104490","_from":"54375","_to":"61460"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92973","_from":"54375","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92670","_from":"54375","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92418","_from":"54375","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92359","_from":"54375","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103628","_from":"54376","_to":"60947"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106032","_from":"54377","_to":"62424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92163","_from":"54390","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92162","_from":"54389","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92161","_from":"54388","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92160","_from":"54387","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92159","_from":"54386","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92158","_from":"54385","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92157","_from":"54384","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92156","_from":"54383","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92155","_from":"54382","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92154","_from":"54381","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92153","_from":"54380","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92152","_from":"54379","_to":"54378"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113193","_from":"54379","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113166","_from":"54379","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113139","_from":"54379","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111637","_from":"54379","_to":"65905"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103622","_from":"54379","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95522","_from":"54379","_to":"56182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93002","_from":"54379","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92968","_from":"54379","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92820","_from":"54379","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92733","_from":"54379","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92658","_from":"54379","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92444","_from":"54379","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92380","_from":"54379","_to":"54532"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106191","_from":"54380","_to":"62547"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103631","_from":"54380","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92844","_from":"54380","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92748","_from":"54380","_to":"54723"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92483","_from":"54380","_to":"54594"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92410","_from":"54380","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95471","_from":"54381","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92416","_from":"54381","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92675","_from":"54382","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92403","_from":"54382","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92428","_from":"54384","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118621","_from":"54385","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95473","_from":"54385","_to":"56166"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92843","_from":"54385","_to":"54767"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92678","_from":"54385","_to":"54692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92774","_from":"54386","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92752","_from":"54386","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92695","_from":"54386","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92393","_from":"54386","_to":"54532"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104492","_from":"54387","_to":"61460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95478","_from":"54387","_to":"56166"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92479","_from":"54387","_to":"54588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92391","_from":"54387","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118529","_from":"54388","_to":"69688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111061","_from":"54388","_to":"65602"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98073","_from":"54388","_to":"57747"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92933","_from":"54388","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92910","_from":"54388","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92847","_from":"54388","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92729","_from":"54388","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92650","_from":"54388","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92404","_from":"54388","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95475","_from":"54389","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103633","_from":"54390","_to":"60947"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92174","_from":"54402","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92173","_from":"54401","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92172","_from":"54400","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92171","_from":"54399","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92170","_from":"54398","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92169","_from":"54397","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92168","_from":"54396","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92167","_from":"54395","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92166","_from":"54394","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92165","_from":"54393","_to":"54391"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92164","_from":"54392","_to":"54391"} +{"$label":"ACTS_IN","name":"Quinton Jackson","type":"Role","_key":"106028","_from":"54392","_to":"62424"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98071","_from":"54392","_to":"57747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92762","_from":"54392","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92704","_from":"54392","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92646","_from":"54392","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118623","_from":"54393","_to":"69749"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98068","_from":"54393","_to":"57747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95534","_from":"54393","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95502","_from":"54393","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92957","_from":"54393","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92906","_from":"54393","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92773","_from":"54393","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92689","_from":"54393","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92485","_from":"54393","_to":"54594"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113203","_from":"54394","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113162","_from":"54394","_to":"66700"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95481","_from":"54394","_to":"56168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92764","_from":"54394","_to":"54726"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92666","_from":"54394","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118629","_from":"54395","_to":"69749"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112961","_from":"54395","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112932","_from":"54395","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112899","_from":"54395","_to":"66633"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92420","_from":"54395","_to":"54556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104487","_from":"54396","_to":"61460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95472","_from":"54396","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92926","_from":"54396","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92827","_from":"54396","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92663","_from":"54396","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92430","_from":"54396","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92421","_from":"54397","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104494","_from":"54398","_to":"61460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95483","_from":"54398","_to":"56168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92735","_from":"54398","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92659","_from":"54398","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92411","_from":"54398","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113186","_from":"54399","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113155","_from":"54399","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113123","_from":"54399","_to":"66692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113118","_from":"54399","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100642","_from":"54399","_to":"59341"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95509","_from":"54399","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92901","_from":"54399","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92753","_from":"54399","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92683","_from":"54399","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92423","_from":"54399","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117064","_from":"54400","_to":"68889"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95489","_from":"54400","_to":"56168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92864","_from":"54400","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92768","_from":"54400","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92691","_from":"54400","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92489","_from":"54400","_to":"54594"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92422","_from":"54400","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106029","_from":"54402","_to":"62424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95476","_from":"54402","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92998","_from":"54402","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92950","_from":"54402","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92782","_from":"54402","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92721","_from":"54402","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92657","_from":"54402","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92431","_from":"54402","_to":"54566"} +{"$label":"ACTS_IN","name":"Christa Balder","type":"Role","_key":"92189","_from":"54409","_to":"54404"} +{"$label":"ACTS_IN","name":"Michelle Payne","type":"Role","_key":"92188","_from":"54408","_to":"54404"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"92187","_from":"54407","_to":"54404"} +{"$label":"ACTS_IN","name":"Lincoln DeNeuf","type":"Role","_key":"92186","_from":"54406","_to":"54404"} +{"$label":"ACTS_IN","name":"Owen Green","type":"Role","_key":"92185","_from":"54405","_to":"54404"} +{"$label":"DIRECTED","_key":"92207","_from":"54417","_to":"54410"} +{"$label":"DIRECTED","_key":"92206","_from":"54416","_to":"54410"} +{"$label":"ACTS_IN","name":"Dr. Forrester (voice)","type":"Role","_key":"92205","_from":"54415","_to":"54410"} +{"$label":"ACTS_IN","name":"Mindy (voice)","type":"Role","_key":"92202","_from":"54414","_to":"54410"} +{"$label":"ACTS_IN","name":"Billy (voice)","type":"Role","_key":"92201","_from":"54413","_to":"54410"} +{"$label":"ACTS_IN","name":"Tom (voice)","type":"Role","_key":"92200","_from":"54412","_to":"54410"} +{"$label":"ACTS_IN","name":"Penny (voice)","type":"Role","_key":"92192","_from":"54411","_to":"54410"} +{"$label":"ACTS_IN","name":"Miley Stewart\/Hannah Montana","type":"Role","_key":"114982","_from":"54411","_to":"67715"} +{"$label":"ACTS_IN","name":"Penny (voice)","type":"Role","_key":"109587","_from":"54411","_to":"64731"} +{"$label":"ACTS_IN","name":"Hannah Montana","type":"Role","_key":"106460","_from":"54411","_to":"62719"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"94376","_from":"54412","_to":"55568"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"103209","_from":"54416","_to":"60705"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"92223","_from":"54423","_to":"54418"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"92222","_from":"54422","_to":"54418"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"92220","_from":"54421","_to":"54418"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"92218","_from":"54420","_to":"54418"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"92213","_from":"54419","_to":"54418"} +{"$label":"ACTS_IN","name":"Thatch","type":"Role","_key":"115912","_from":"54420","_to":"68234"} +{"$label":"ACTS_IN","name":"Lexi","type":"Role","_key":"92246","_from":"54430","_to":"54427"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"92245","_from":"54429","_to":"54427"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"92243","_from":"54428","_to":"54427"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"93297","_from":"54428","_to":"54959"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"93298","_from":"54429","_to":"54959"} +{"$label":"DIRECTED","_key":"92259","_from":"54444","_to":"54431"} +{"$label":"DIRECTED","_key":"92258","_from":"54443","_to":"54431"} +{"$label":"DIRECTED","_key":"92257","_from":"54442","_to":"54431"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"92256","_from":"54441","_to":"54431"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"92255","_from":"54440","_to":"54431"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"92254","_from":"54439","_to":"54431"} +{"$label":"ACTS_IN","name":"Jim Parsons","type":"Role","_key":"92253","_from":"54438","_to":"54431"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"92252","_from":"54437","_to":"54431"} +{"$label":"ACTS_IN","name":"Rod","type":"Role","_key":"92251","_from":"54436","_to":"54431"} +{"$label":"ACTS_IN","name":"Clark","type":"Role","_key":"92250","_from":"54435","_to":"54431"} +{"$label":"ACTS_IN","name":"Lewis Denton","type":"Role","_key":"92249","_from":"54434","_to":"54431"} +{"$label":"ACTS_IN","name":"Ben Capstone","type":"Role","_key":"92248","_from":"54433","_to":"54431"} +{"$label":"ACTS_IN","name":"Mya Denton","type":"Role","_key":"92247","_from":"54432","_to":"54431"} +{"$label":"ACTS_IN","name":"Carter Daniels","type":"Role","_key":"121472","_from":"54433","_to":"71354"} +{"$label":"DIRECTED","_key":"92260","_from":"54446","_to":"54445"} +{"$label":"DIRECTED","_key":"92267","_from":"54449","_to":"54447"} +{"$label":"ACTS_IN","name":"Director Voice","type":"Role","_key":"92266","_from":"54449","_to":"54447"} +{"$label":"ACTS_IN","name":"Norwegian Rat","type":"Role","_key":"92265","_from":"54448","_to":"54447"} +{"$label":"DIRECTED","_key":"92270","_from":"54452","_to":"54450"} +{"$label":"DIRECTED","_key":"92269","_from":"54451","_to":"54450"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"92268","_from":"54451","_to":"54450"} +{"$label":"ACTS_IN","name":"Agent Rick Dicke","type":"Role","_key":"97552","_from":"54451","_to":"57447"} +{"$label":"DIRECTED","_key":"97547","_from":"54452","_to":"57446"} +{"$label":"ACTS_IN","name":"Frank Miller","type":"Role","_key":"92279","_from":"54459","_to":"54453"} +{"$label":"ACTS_IN","name":"Polly Pry","type":"Role","_key":"92278","_from":"54458","_to":"54453"} +{"$label":"ACTS_IN","name":"Frenchy Cabazon","type":"Role","_key":"92276","_from":"54457","_to":"54453"} +{"$label":"ACTS_IN","name":"Indian Chief","type":"Role","_key":"92275","_from":"54456","_to":"54453"} +{"$label":"ACTS_IN","name":"Isreal Swan","type":"Role","_key":"92274","_from":"54455","_to":"54453"} +{"$label":"ACTS_IN","name":"Shannon Bell","type":"Role","_key":"92273","_from":"54454","_to":"54453"} +{"$label":"ACTS_IN","name":"Mrs. Goosen","type":"Role","_key":"92291","_from":"54468","_to":"54460"} +{"$label":"ACTS_IN","name":"Mr. Goosen","type":"Role","_key":"92290","_from":"54467","_to":"54460"} +{"$label":"ACTS_IN","name":"Mark Banducci","type":"Role","_key":"92289","_from":"54466","_to":"54460"} +{"$label":"ACTS_IN","name":"Tony Banducci","type":"Role","_key":"92288","_from":"54465","_to":"54460"} +{"$label":"ACTS_IN","name":"Uncle Louis","type":"Role","_key":"92285","_from":"54464","_to":"54460"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"92283","_from":"54463","_to":"54460"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"92282","_from":"54462","_to":"54460"} +{"$label":"ACTS_IN","name":"Mitchell Goosen","type":"Role","_key":"92280","_from":"54461","_to":"54460"} +{"$label":"ACTS_IN","name":"Faith\/Cindy","type":"Role","_key":"116612","_from":"54462","_to":"68642"} +{"$label":"ACTS_IN","name":"Mr. Gertrude","type":"Role","_key":"96502","_from":"54464","_to":"56725"} +{"$label":"DIRECTED","_key":"92292","_from":"54470","_to":"54469"} +{"$label":"DIRECTED","_key":"92313","_from":"54476","_to":"54473"} +{"$label":"ACTS_IN","name":"Ginny Ryerson","type":"Role","_key":"92311","_from":"54475","_to":"54473"} +{"$label":"ACTS_IN","name":"Ben Wekselbaum","type":"Role","_key":"92308","_from":"54474","_to":"54473"} +{"$label":"ACTS_IN","name":"Shawn Colfax","type":"Role","_key":"114407","_from":"54474","_to":"67392"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"104283","_from":"54474","_to":"61355"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"115496","_from":"54475","_to":"67997"} +{"$label":"DIRECTED","_key":"92314","_from":"54478","_to":"54477"} +{"$label":"DIRECTED","_key":"92323","_from":"54485","_to":"54480"} +{"$label":"ACTS_IN","name":"Bobby Canzoneri","type":"Role","_key":"92321","_from":"54484","_to":"54480"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"92319","_from":"54483","_to":"54480"} +{"$label":"ACTS_IN","name":"Young Carmine","type":"Role","_key":"92318","_from":"54482","_to":"54480"} +{"$label":"ACTS_IN","name":"Young Michael","type":"Role","_key":"92316","_from":"54481","_to":"54480"} +{"$label":"DIRECTED","_key":"100903","_from":"54485","_to":"59484"} +{"$label":"ACTS_IN","name":"'Dawn' Aviva","type":"Role","_key":"92328","_from":"54490","_to":"54486"} +{"$label":"ACTS_IN","name":"Mr. Wiener","type":"Role","_key":"92327","_from":"54489","_to":"54486"} +{"$label":"ACTS_IN","name":"Mrs. Wiener","type":"Role","_key":"92326","_from":"54488","_to":"54486"} +{"$label":"ACTS_IN","name":"Mark Wiener","type":"Role","_key":"92325","_from":"54487","_to":"54486"} +{"$label":"ACTS_IN","name":"Desi","type":"Role","_key":"92338","_from":"54495","_to":"54492"} +{"$label":"ACTS_IN","name":"Dorothy Washington","type":"Role","_key":"92337","_from":"54494","_to":"54492"} +{"$label":"DIRECTED","_key":"92335","_from":"54493","_to":"54492"} +{"$label":"DIRECTED","_key":"92339","_from":"54497","_to":"54496"} +{"$label":"DIRECTED","_key":"92344","_from":"54501","_to":"54499"} +{"$label":"ACTS_IN","name":"Shirley Lyner","type":"Role","_key":"92342","_from":"54500","_to":"54499"} +{"$label":"ACTS_IN","name":"Katherine","type":"Role","_key":"101697","_from":"54500","_to":"59845"} +{"$label":"ACTS_IN","name":"Mr. McClood","type":"Role","_key":"92352","_from":"54505","_to":"54502"} +{"$label":"ACTS_IN","name":"Emma McFee","type":"Role","_key":"92349","_from":"54504","_to":"54502"} +{"$label":"DIRECTED","_key":"92345","_from":"54503","_to":"54502"} +{"$label":"ACTS_IN","name":"Chrissy Moore","type":"Role","_key":"115172","_from":"54504","_to":"67820"} +{"$label":"ACTS_IN","name":"Chris Owen","type":"Role","_key":"105342","_from":"54504","_to":"61982"} +{"$label":"ACTS_IN","name":"Mr. Brennan","type":"Role","_key":"109625","_from":"54505","_to":"64750"} +{"$label":"ACTS_IN","name":"Bud Culbertson","type":"Role","_key":"98888","_from":"54505","_to":"58269"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92366","_from":"54518","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92365","_from":"54517","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92364","_from":"54516","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92362","_from":"54515","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92361","_from":"54514","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92360","_from":"54513","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92358","_from":"54512","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92357","_from":"54511","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92356","_from":"54510","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92355","_from":"54509","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92354","_from":"54508","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92353","_from":"54507","_to":"54506"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115793","_from":"54507","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113198","_from":"54507","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113165","_from":"54507","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113111","_from":"54507","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113061","_from":"54507","_to":"66676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113038","_from":"54507","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113012","_from":"54507","_to":"66665"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112972","_from":"54507","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112936","_from":"54507","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112857","_from":"54507","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112812","_from":"54507","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112743","_from":"54507","_to":"66571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111635","_from":"54507","_to":"65905"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93000","_from":"54507","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92937","_from":"54507","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92852","_from":"54507","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92819","_from":"54507","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92747","_from":"54507","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92445","_from":"54507","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95482","_from":"54508","_to":"56168"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93008","_from":"54508","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92780","_from":"54508","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92893","_from":"54509","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92778","_from":"54509","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92725","_from":"54509","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92648","_from":"54509","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92457","_from":"54509","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92385","_from":"54509","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92389","_from":"54510","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118531","_from":"54511","_to":"69688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105436","_from":"54511","_to":"62029"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92971","_from":"54511","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92944","_from":"54511","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92854","_from":"54511","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92740","_from":"54511","_to":"54719"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118537","_from":"54512","_to":"69688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100641","_from":"54512","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92903","_from":"54512","_to":"54791"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92701","_from":"54512","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92654","_from":"54512","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92433","_from":"54512","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111056","_from":"54513","_to":"65602"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92667","_from":"54513","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95486","_from":"54514","_to":"56168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92724","_from":"54514","_to":"54714"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92432","_from":"54514","_to":"54566"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92986","_from":"54515","_to":"54825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92942","_from":"54515","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92896","_from":"54515","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92826","_from":"54515","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92470","_from":"54515","_to":"54588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113164","_from":"54516","_to":"66700"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113100","_from":"54516","_to":"66686"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111641","_from":"54516","_to":"65905"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95510","_from":"54516","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92767","_from":"54516","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92438","_from":"54516","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92949","_from":"54517","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92488","_from":"54518","_to":"54594"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92378","_from":"54531","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92377","_from":"54530","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92376","_from":"54529","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92375","_from":"54528","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92374","_from":"54527","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92373","_from":"54526","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92372","_from":"54525","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92371","_from":"54524","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92370","_from":"54523","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92369","_from":"54522","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92368","_from":"54521","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92367","_from":"54520","_to":"54519"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118620","_from":"54520","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113049","_from":"54520","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113026","_from":"54520","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112988","_from":"54520","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112953","_from":"54520","_to":"66646"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112942","_from":"54520","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112906","_from":"54520","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112900","_from":"54520","_to":"66633"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111636","_from":"54520","_to":"65905"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103623","_from":"54520","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92969","_from":"54520","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92853","_from":"54520","_to":"54770"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92429","_from":"54520","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115799","_from":"54521","_to":"68171"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113062","_from":"54521","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112982","_from":"54521","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112874","_from":"54521","_to":"66623"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95488","_from":"54521","_to":"56168"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93003","_from":"54521","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92959","_from":"54521","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92842","_from":"54521","_to":"54767"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92673","_from":"54521","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118528","_from":"54522","_to":"69688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114240","_from":"54522","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112783","_from":"54522","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112709","_from":"54522","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98070","_from":"54522","_to":"57747"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92447","_from":"54522","_to":"54574"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106189","_from":"54523","_to":"62547"} +{"$label":"ACTS_IN","name":"Keith Jardine","type":"Role","_key":"106027","_from":"54523","_to":"62424"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92897","_from":"54523","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92772","_from":"54523","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92710","_from":"54523","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92481","_from":"54523","_to":"54594"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104491","_from":"54524","_to":"61460"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92916","_from":"54524","_to":"54795"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92720","_from":"54524","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92436","_from":"54524","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113175","_from":"54526","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113161","_from":"54526","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113122","_from":"54526","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113094","_from":"54526","_to":"66686"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113034","_from":"54526","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112920","_from":"54526","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112904","_from":"54526","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112860","_from":"54526","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112846","_from":"54526","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112782","_from":"54526","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112734","_from":"54526","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112689","_from":"54526","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112681","_from":"54526","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112625","_from":"54526","_to":"66505"} +{"$label":"ACTS_IN","name":"Famine","type":"Role","_key":"109307","_from":"54526","_to":"64573"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92956","_from":"54526","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92922","_from":"54526","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92771","_from":"54526","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92672","_from":"54526","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115791","_from":"54527","_to":"68171"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103624","_from":"54527","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92727","_from":"54527","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92486","_from":"54527","_to":"54594"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92450","_from":"54527","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103625","_from":"54528","_to":"60947"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92713","_from":"54528","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92459","_from":"54528","_to":"54580"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104869","_from":"54530","_to":"61702"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92898","_from":"54530","_to":"54791"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92451","_from":"54530","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106030","_from":"54531","_to":"62424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92400","_from":"54548","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92399","_from":"54547","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92398","_from":"54546","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92397","_from":"54545","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92396","_from":"54544","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92395","_from":"54543","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92394","_from":"54542","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92392","_from":"54541","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92390","_from":"54540","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92388","_from":"54539","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92387","_from":"54538","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92386","_from":"54537","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92384","_from":"54536","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92383","_from":"54535","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92382","_from":"54534","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92379","_from":"54533","_to":"54532"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115794","_from":"54533","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113141","_from":"54533","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113055","_from":"54533","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113027","_from":"54533","_to":"66671"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112980","_from":"54533","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112928","_from":"54533","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112895","_from":"54533","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95531","_from":"54533","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92734","_from":"54533","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113200","_from":"54534","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113173","_from":"54534","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92757","_from":"54534","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92711","_from":"54535","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92474","_from":"54535","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95538","_from":"54536","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95479","_from":"54536","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92997","_from":"54536","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95541","_from":"54537","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92685","_from":"54538","_to":"54692"} +{"$label":"ACTS_IN","name":"Himeslf","type":"Role","_key":"105174","_from":"54539","_to":"61891"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100639","_from":"54540","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92742","_from":"54540","_to":"54719"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92715","_from":"54540","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92475","_from":"54540","_to":"54588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92693","_from":"54541","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92462","_from":"54541","_to":"54580"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113204","_from":"54542","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113148","_from":"54542","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95525","_from":"54542","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92972","_from":"54542","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92463","_from":"54542","_to":"54580"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92976","_from":"54543","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113059","_from":"54544","_to":"66675"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95484","_from":"54544","_to":"56168"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92452","_from":"54544","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118530","_from":"54546","_to":"69688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105172","_from":"54546","_to":"61891"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92845","_from":"54548","_to":"54767"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92412","_from":"54555","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92408","_from":"54554","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92407","_from":"54553","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92406","_from":"54552","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92405","_from":"54551","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92401","_from":"54550","_to":"54549"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118622","_from":"54550","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111055","_from":"54550","_to":"65602"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95480","_from":"54550","_to":"56168"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92841","_from":"54550","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92756","_from":"54550","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92669","_from":"54550","_to":"54692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92468","_from":"54550","_to":"54588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113178","_from":"54551","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113169","_from":"54551","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113138","_from":"54551","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113119","_from":"54551","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113065","_from":"54551","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112976","_from":"54551","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112946","_from":"54551","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112861","_from":"54551","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112854","_from":"54551","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112697","_from":"54551","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112685","_from":"54551","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95532","_from":"54551","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92960","_from":"54551","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92739","_from":"54552","_to":"54719"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92688","_from":"54552","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106187","_from":"54553","_to":"62547"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105435","_from":"54553","_to":"62029"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92892","_from":"54553","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92775","_from":"54553","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92712","_from":"54553","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95512","_from":"54554","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92939","_from":"54554","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92823","_from":"54554","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92653","_from":"54554","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92439","_from":"54554","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95474","_from":"54555","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92699","_from":"54555","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92427","_from":"54565","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92426","_from":"54564","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92425","_from":"54563","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92424","_from":"54562","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92419","_from":"54561","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92417","_from":"54560","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92415","_from":"54559","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92414","_from":"54558","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92413","_from":"54557","_to":"54556"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113180","_from":"54557","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113133","_from":"54557","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113095","_from":"54557","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113046","_from":"54557","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113024","_from":"54557","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95516","_from":"54557","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92955","_from":"54557","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92918","_from":"54557","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92821","_from":"54557","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92746","_from":"54557","_to":"54723"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92471","_from":"54557","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98074","_from":"54558","_to":"57747"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92676","_from":"54558","_to":"54692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113134","_from":"54559","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113085","_from":"54559","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113048","_from":"54559","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113015","_from":"54559","_to":"66665"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112978","_from":"54559","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112950","_from":"54559","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111638","_from":"54559","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"98075","_from":"54559","_to":"57747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92985","_from":"54559","_to":"54825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92924","_from":"54559","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92825","_from":"54559","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92665","_from":"54559","_to":"54688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114248","_from":"54560","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112867","_from":"54560","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112824","_from":"54560","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112737","_from":"54560","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112721","_from":"54560","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112694","_from":"54560","_to":"66550"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100637","_from":"54560","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95515","_from":"54560","_to":"56182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93004","_from":"54560","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92946","_from":"54560","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92728","_from":"54563","_to":"54714"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92443","_from":"54573","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92442","_from":"54572","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92441","_from":"54571","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92440","_from":"54570","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92437","_from":"54569","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92435","_from":"54568","_to":"54566"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92434","_from":"54567","_to":"54566"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92731","_from":"54567","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92979","_from":"54568","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92859","_from":"54568","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92755","_from":"54568","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118628","_from":"54569","_to":"69749"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92741","_from":"54569","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92664","_from":"54569","_to":"54688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111062","_from":"54571","_to":"65602"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92829","_from":"54571","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92900","_from":"54572","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92655","_from":"54572","_to":"54686"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92902","_from":"54573","_to":"54791"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92455","_from":"54579","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92454","_from":"54578","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92453","_from":"54577","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92449","_from":"54576","_to":"54574"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92448","_from":"54575","_to":"54574"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92863","_from":"54575","_to":"54770"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92759","_from":"54575","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92697","_from":"54575","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92952","_from":"54577","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92856","_from":"54577","_to":"54770"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92467","_from":"54587","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92466","_from":"54586","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92465","_from":"54585","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92464","_from":"54584","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92461","_from":"54583","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92460","_from":"54582","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92458","_from":"54581","_to":"54580"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92709","_from":"54581","_to":"54705"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92652","_from":"54581","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113185","_from":"54582","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113157","_from":"54582","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113103","_from":"54582","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103627","_from":"54582","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95530","_from":"54582","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92964","_from":"54582","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92705","_from":"54582","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118535","_from":"54584","_to":"69688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92977","_from":"54584","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92948","_from":"54584","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92848","_from":"54584","_to":"54767"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115800","_from":"54585","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92769","_from":"54585","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92686","_from":"54585","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105170","_from":"54586","_to":"61891"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92861","_from":"54586","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92478","_from":"54593","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92477","_from":"54592","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92476","_from":"54591","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92473","_from":"54590","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92472","_from":"54589","_to":"54588"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92915","_from":"54589","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92779","_from":"54589","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103626","_from":"54590","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92907","_from":"54590","_to":"54795"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92680","_from":"54590","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92677","_from":"54591","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92682","_from":"54592","_to":"54692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92668","_from":"54593","_to":"54688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92487","_from":"54597","_to":"54594"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92484","_from":"54596","_to":"54594"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92482","_from":"54595","_to":"54594"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104486","_from":"54595","_to":"61460"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95520","_from":"54595","_to":"56182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92940","_from":"54595","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92736","_from":"54595","_to":"54719"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111058","_from":"54596","_to":"65602"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100636","_from":"54596","_to":"59341"} +{"$label":"DIRECTED","_key":"92499","_from":"54600","_to":"54598"} +{"$label":"ACTS_IN","name":"Oscar Lorkowski","type":"Role","_key":"92495","_from":"54599","_to":"54598"} +{"$label":"ACTS_IN","name":"Leibarzt","type":"Role","_key":"92512","_from":"54609","_to":"54601"} +{"$label":"ACTS_IN","name":"Hofdichter","type":"Role","_key":"92511","_from":"54608","_to":"54601"} +{"$label":"ACTS_IN","name":"Henker","type":"Role","_key":"92510","_from":"54607","_to":"54601"} +{"$label":"ACTS_IN","name":"Oberhofmeister","type":"Role","_key":"92509","_from":"54606","_to":"54601"} +{"$label":"ACTS_IN","name":"J\u00e4ger","type":"Role","_key":"92506","_from":"54605","_to":"54601"} +{"$label":"ACTS_IN","name":"Schiefh\u00fctchen","type":"Role","_key":"92504","_from":"54604","_to":"54601"} +{"$label":"ACTS_IN","name":"Starker","type":"Role","_key":"92503","_from":"54603","_to":"54601"} +{"$label":"DIRECTED","_key":"92501","_from":"54602","_to":"54601"} +{"$label":"DIRECTED","_key":"93846","_from":"54602","_to":"55237"} +{"$label":"ACTS_IN","name":"Haushofmeister","type":"Role","_key":"93809","_from":"54607","_to":"55218"} +{"$label":"DIRECTED","_key":"92527","_from":"54616","_to":"54610"} +{"$label":"ACTS_IN","name":"PR Woman","type":"Role","_key":"92522","_from":"54615","_to":"54610"} +{"$label":"ACTS_IN","name":"Apollo Awards Guest","type":"Role","_key":"92521","_from":"54614","_to":"54610"} +{"$label":"ACTS_IN","name":"Apollo Awards Presenter","type":"Role","_key":"92520","_from":"54613","_to":"54610"} +{"$label":"ACTS_IN","name":"Sidney's Mother","type":"Role","_key":"92516","_from":"54612","_to":"54610"} +{"$label":"ACTS_IN","name":"Young Sidney","type":"Role","_key":"92515","_from":"54611","_to":"54610"} +{"$label":"ACTS_IN","name":"Felicity","type":"Role","_key":"118267","_from":"54615","_to":"69515"} +{"$label":"ACTS_IN","name":"Marion Whittaker","type":"Role","_key":"110390","_from":"54615","_to":"65225"} +{"$label":"ACTS_IN","name":"1. Frau mit Spinnrad","type":"Role","_key":"92546","_from":"54631","_to":"54617"} +{"$label":"ACTS_IN","name":"Wirt","type":"Role","_key":"92545","_from":"54630","_to":"54617"} +{"$label":"ACTS_IN","name":"Koch","type":"Role","_key":"92544","_from":"54629","_to":"54617"} +{"$label":"ACTS_IN","name":"3. Ritter","type":"Role","_key":"92543","_from":"54628","_to":"54617"} +{"$label":"ACTS_IN","name":"Hauptmann","type":"Role","_key":"92541","_from":"54627","_to":"54617"} +{"$label":"ACTS_IN","name":"Neuer Hauptmann","type":"Role","_key":"92540","_from":"54626","_to":"54617"} +{"$label":"ACTS_IN","name":"K\u00f6nigin","type":"Role","_key":"92538","_from":"54625","_to":"54617"} +{"$label":"ACTS_IN","name":"11. Fee","type":"Role","_key":"92536","_from":"54624","_to":"54617"} +{"$label":"ACTS_IN","name":"10. Fee","type":"Role","_key":"92535","_from":"54623","_to":"54617"} +{"$label":"ACTS_IN","name":"Spielmann","type":"Role","_key":"92533","_from":"54622","_to":"54617"} +{"$label":"ACTS_IN","name":"Prinz","type":"Role","_key":"92532","_from":"54621","_to":"54617"} +{"$label":"ACTS_IN","name":"13. Fee","type":"Role","_key":"92530","_from":"54620","_to":"54617"} +{"$label":"ACTS_IN","name":"Dornr\u00f6schen","type":"Role","_key":"92529","_from":"54619","_to":"54617"} +{"$label":"DIRECTED","_key":"92528","_from":"54618","_to":"54617"} +{"$label":"DIRECTED","_key":"93812","_from":"54618","_to":"55218"} +{"$label":"ACTS_IN","name":"Hofdame Beatrix","type":"Role","_key":"93811","_from":"54625","_to":"55218"} +{"$label":"ACTS_IN","name":"Kutscher Sebastian","type":"Role","_key":"93798","_from":"54630","_to":"55218"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"93782","_from":"54631","_to":"55197"} +{"$label":"ACTS_IN","name":"Shinae","type":"Role","_key":"92557","_from":"54640","_to":"54633"} +{"$label":"ACTS_IN","name":"Spanish Connect","type":"Role","_key":"92556","_from":"54639","_to":"54633"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"92555","_from":"54638","_to":"54633"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"92554","_from":"54637","_to":"54633"} +{"$label":"ACTS_IN","name":"Bandana","type":"Role","_key":"92553","_from":"54636","_to":"54633"} +{"$label":"ACTS_IN","name":"Hell","type":"Role","_key":"92552","_from":"54635","_to":"54633"} +{"$label":"ACTS_IN","name":"Flea","type":"Role","_key":"92551","_from":"54634","_to":"54633"} +{"$label":"DIRECTED","_key":"92550","_from":"54634","_to":"54633"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94360","_from":"54634","_to":"55562"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"92559","_from":"54634","_to":"54641"} +{"$label":"DIRECTED","_key":"92566","_from":"54643","_to":"54641"} +{"$label":"ACTS_IN","name":"Cruiser","type":"Role","_key":"92565","_from":"54642","_to":"54641"} +{"$label":"DIRECTED","_key":"94362","_from":"54642","_to":"55562"} +{"$label":"ACTS_IN","name":"Dame","type":"Role","_key":"94356","_from":"54642","_to":"55562"} +{"$label":"DIRECTED","_key":"108207","_from":"54643","_to":"63954"} +{"$label":"DIRECTED","_key":"94840","_from":"54643","_to":"55842"} +{"$label":"ACTS_IN","name":"Haze","type":"Role","_key":"92576","_from":"54650","_to":"54644"} +{"$label":"ACTS_IN","name":"Tooth","type":"Role","_key":"92574","_from":"54649","_to":"54644"} +{"$label":"ACTS_IN","name":"Akatora","type":"Role","_key":"92573","_from":"54648","_to":"54644"} +{"$label":"ACTS_IN","name":"Y2K","type":"Role","_key":"92570","_from":"54647","_to":"54644"} +{"$label":"ACTS_IN","name":"Alien","type":"Role","_key":"92569","_from":"54646","_to":"54644"} +{"$label":"ACTS_IN","name":"Match","type":"Role","_key":"92568","_from":"54645","_to":"54644"} +{"$label":"ACTS_IN","name":"Insp. Ti Wai","type":"Role","_key":"101883","_from":"54646","_to":"59965"} +{"$label":"ACTS_IN","name":"Altes M\u00fctterchen","type":"Role","_key":"92593","_from":"54658","_to":"54651"} +{"$label":"ACTS_IN","name":"Die Hexe","type":"Role","_key":"92592","_from":"54657","_to":"54651"} +{"$label":"ACTS_IN","name":"Offizier des K\u00f6nigs","type":"Role","_key":"92590","_from":"54656","_to":"54651"} +{"$label":"ACTS_IN","name":"Prinzessin","type":"Role","_key":"92587","_from":"54655","_to":"54651"} +{"$label":"ACTS_IN","name":"Der K\u00f6nig","type":"Role","_key":"92583","_from":"54654","_to":"54651"} +{"$label":"ACTS_IN","name":"Der Eitle","type":"Role","_key":"92581","_from":"54653","_to":"54651"} +{"$label":"ACTS_IN","name":"Die Kammerfrau","type":"Role","_key":"92580","_from":"54652","_to":"54651"} +{"$label":"ACTS_IN","name":"Meister Anton","type":"Role","_key":"92603","_from":"54664","_to":"54659"} +{"$label":"ACTS_IN","name":"Peters Mutter","type":"Role","_key":"92601","_from":"54663","_to":"54659"} +{"$label":"ACTS_IN","name":"Amtmann","type":"Role","_key":"92600","_from":"54662","_to":"54659"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"92599","_from":"54661","_to":"54659"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"92595","_from":"54660","_to":"54659"} +{"$label":"ACTS_IN","name":"Waldm\u00fcllerin","type":"Role","_key":"93250","_from":"54663","_to":"54923"} +{"$label":"ACTS_IN","name":"3. Kind","type":"Role","_key":"92614","_from":"54671","_to":"54666"} +{"$label":"ACTS_IN","name":"2. Kind","type":"Role","_key":"92613","_from":"54670","_to":"54666"} +{"$label":"ACTS_IN","name":"1. Kind","type":"Role","_key":"92612","_from":"54669","_to":"54666"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"92611","_from":"54668","_to":"54666"} +{"$label":"ACTS_IN","name":"Hannes","type":"Role","_key":"92610","_from":"54667","_to":"54666"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"92627","_from":"54677","_to":"54673"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"92625","_from":"54676","_to":"54673"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"92622","_from":"54675","_to":"54673"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"92621","_from":"54674","_to":"54673"} +{"$label":"ACTS_IN","name":"Colonel Mustard","type":"Role","_key":"103550","_from":"54674","_to":"60907"} +{"$label":"ACTS_IN","name":"Nathalie Stein","type":"Role","_key":"92631","_from":"54679","_to":"54678"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"92645","_from":"54685","_to":"54680"} +{"$label":"ACTS_IN","name":"Patience","type":"Role","_key":"92644","_from":"54684","_to":"54680"} +{"$label":"ACTS_IN","name":"Young Henry Poole","type":"Role","_key":"92643","_from":"54683","_to":"54680"} +{"$label":"ACTS_IN","name":"Mr. Lawrence","type":"Role","_key":"92642","_from":"54682","_to":"54680"} +{"$label":"ACTS_IN","name":"Millie Stupek","type":"Role","_key":"92639","_from":"54681","_to":"54680"} +{"$label":"ACTS_IN","name":"Lilly Curtis","type":"Role","_key":"98815","_from":"54681","_to":"58224"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92651","_from":"54687","_to":"54686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118533","_from":"54687","_to":"69688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92758","_from":"54687","_to":"54726"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92722","_from":"54687","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92661","_from":"54691","_to":"54688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92660","_from":"54690","_to":"54688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92656","_from":"54689","_to":"54688"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114190","_from":"54689","_to":"67266"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113194","_from":"54689","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113146","_from":"54689","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113093","_from":"54689","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113077","_from":"54689","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113023","_from":"54689","_to":"66671"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112968","_from":"54689","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112938","_from":"54689","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112888","_from":"54689","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112836","_from":"54689","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112649","_from":"54689","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112621","_from":"54689","_to":"66505"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111633","_from":"54689","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95518","_from":"54689","_to":"56182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95470","_from":"54689","_to":"56166"} +{"$label":"ACTS_IN","name":"Sargon","type":"Role","_key":"94746","_from":"54689","_to":"55802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92983","_from":"54689","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92745","_from":"54689","_to":"54723"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92760","_from":"54690","_to":"54726"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92738","_from":"54690","_to":"54719"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92684","_from":"54696","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92681","_from":"54695","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92679","_from":"54694","_to":"54692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92674","_from":"54693","_to":"54692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113126","_from":"54693","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113107","_from":"54693","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113073","_from":"54693","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92928","_from":"54693","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92912","_from":"54693","_to":"54795"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92702","_from":"54704","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92700","_from":"54703","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92698","_from":"54702","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92696","_from":"54701","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92694","_from":"54700","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92692","_from":"54699","_to":"54697"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92690","_from":"54698","_to":"54697"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92832","_from":"54698","_to":"54762"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103630","_from":"54699","_to":"60947"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92850","_from":"54699","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106190","_from":"54700","_to":"62547"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105180","_from":"54700","_to":"61895"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92765","_from":"54700","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92719","_from":"54713","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92718","_from":"54712","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92717","_from":"54711","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92716","_from":"54710","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92714","_from":"54709","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92708","_from":"54708","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92707","_from":"54707","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92706","_from":"54706","_to":"54705"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92920","_from":"54706","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95527","_from":"54707","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92766","_from":"54707","_to":"54726"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113201","_from":"54708","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113171","_from":"54708","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112994","_from":"54708","_to":"66653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113192","_from":"54709","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95526","_from":"54709","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92831","_from":"54709","_to":"54762"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105171","_from":"54711","_to":"61891"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113056","_from":"54712","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113029","_from":"54712","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112934","_from":"54712","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112907","_from":"54712","_to":"66638"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117061","_from":"54713","_to":"68889"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92846","_from":"54713","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92783","_from":"54713","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92732","_from":"54718","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92730","_from":"54717","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92726","_from":"54716","_to":"54714"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92723","_from":"54715","_to":"54714"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113179","_from":"54715","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113127","_from":"54715","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113097","_from":"54715","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112971","_from":"54715","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112917","_from":"54715","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112842","_from":"54715","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105472","_from":"54715","_to":"62061"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104865","_from":"54715","_to":"61702"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95528","_from":"54715","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95500","_from":"54715","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92954","_from":"54715","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92919","_from":"54715","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92776","_from":"54715","_to":"54729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112977","_from":"54716","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112905","_from":"54716","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112866","_from":"54716","_to":"66623"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95503","_from":"54716","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92943","_from":"54717","_to":"54810"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92744","_from":"54722","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92743","_from":"54721","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92737","_from":"54720","_to":"54719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105397","_from":"54720","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92754","_from":"54725","_to":"54723"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92750","_from":"54724","_to":"54723"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115795","_from":"54724","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92824","_from":"54724","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113196","_from":"54725","_to":"66703"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113037","_from":"54725","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112963","_from":"54725","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112838","_from":"54725","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104868","_from":"54725","_to":"61702"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95506","_from":"54725","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92988","_from":"54725","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92905","_from":"54725","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92763","_from":"54728","_to":"54726"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92761","_from":"54727","_to":"54726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113174","_from":"54728","_to":"66700"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113082","_from":"54728","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92781","_from":"54731","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92777","_from":"54730","_to":"54729"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92984","_from":"54730","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92963","_from":"54730","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112931","_from":"54731","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112918","_from":"54731","_to":"66638"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"92787","_from":"54736","_to":"54733"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"92785","_from":"54735","_to":"54733"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"92784","_from":"54734","_to":"54733"} +{"$label":"ACTS_IN","name":"Treena","type":"Role","_key":"99292","_from":"54736","_to":"58508"} +{"$label":"DIRECTED","_key":"92790","_from":"54738","_to":"54737"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"92798","_from":"54744","_to":"54739"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"92797","_from":"54743","_to":"54739"} +{"$label":"ACTS_IN","name":"Tobey","type":"Role","_key":"92795","_from":"54742","_to":"54739"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"92793","_from":"54741","_to":"54739"} +{"$label":"ACTS_IN","name":"Dawn O'Keefe","type":"Role","_key":"92792","_from":"54740","_to":"54739"} +{"$label":"ACTS_IN","name":"Coleman","type":"Role","_key":"94390","_from":"54741","_to":"55578"} +{"$label":"ACTS_IN","name":"Elliot","type":"Role","_key":"115333","_from":"54742","_to":"67904"} +{"$label":"ACTS_IN","name":"Woman \/ Mom","type":"Role","_key":"92802","_from":"54747","_to":"54745"} +{"$label":"ACTS_IN","name":"Man \/ Dad \/ Eldon Robeson","type":"Role","_key":"92801","_from":"54746","_to":"54745"} +{"$label":"ACTS_IN","name":"Lok","type":"Role","_key":"92808","_from":"54754","_to":"54752"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"92807","_from":"54753","_to":"54752"} +{"$label":"ACTS_IN","name":"Lau Hay\/Lau San","type":"Role","_key":"106427","_from":"54753","_to":"62698"} +{"$label":"ACTS_IN","name":"Takeko","type":"Role","_key":"92817","_from":"54760","_to":"54755"} +{"$label":"ACTS_IN","name":"Aoyama","type":"Role","_key":"92815","_from":"54759","_to":"54755"} +{"$label":"ACTS_IN","name":"Toshiyuki Fujita","type":"Role","_key":"92814","_from":"54758","_to":"54755"} +{"$label":"ACTS_IN","name":"Shinji Akutsu","type":"Role","_key":"92813","_from":"54757","_to":"54755"} +{"$label":"ACTS_IN","name":"Kazue (as Junko Fuji)","type":"Role","_key":"92812","_from":"54756","_to":"54755"} +{"$label":"ACTS_IN","name":"Mamiya, Chiaki","type":"Role","_key":"98373","_from":"54757","_to":"57942"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92830","_from":"54765","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92828","_from":"54764","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92822","_from":"54763","_to":"54762"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112955","_from":"54763","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112859","_from":"54763","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112834","_from":"54763","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92994","_from":"54763","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92962","_from":"54763","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92930","_from":"54763","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92851","_from":"54769","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92849","_from":"54768","_to":"54767"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92865","_from":"54775","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92862","_from":"54774","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92860","_from":"54773","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92857","_from":"54772","_to":"54770"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92855","_from":"54771","_to":"54770"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113189","_from":"54771","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113099","_from":"54771","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113075","_from":"54771","_to":"66676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95540","_from":"54771","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92967","_from":"54771","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112952","_from":"54773","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112922","_from":"54773","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112862","_from":"54773","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112845","_from":"54773","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112814","_from":"54773","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112769","_from":"54773","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112747","_from":"54773","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"96625","_from":"54773","_to":"56829"} +{"$label":"ACTS_IN","name":"Armin van Buuren","type":"Role","_key":"92866","_from":"54778","_to":"54777"} +{"$label":"ACTS_IN","name":"Armin van Buuren","type":"Role","_key":"108511","_from":"54778","_to":"64138"} +{"$label":"ACTS_IN","name":"Armin van Buuren","type":"Role","_key":"105136","_from":"54778","_to":"61870"} +{"$label":"ACTS_IN","name":"Sickan","type":"Role","_key":"92867","_from":"54781","_to":"54780"} +{"$label":"ACTS_IN","name":"Kenny Smyth","type":"Role","_key":"92868","_from":"54783","_to":"54782"} +{"$label":"ACTS_IN","name":"Thommo","type":"Role","_key":"111299","_from":"54783","_to":"65730"} +{"$label":"DIRECTED","_key":"92891","_from":"54785","_to":"54784"} +{"$label":"ACTS_IN","name":"Coach Wolf","type":"Role","_key":"92890","_from":"54790","_to":"54784"} +{"$label":"ACTS_IN","name":"Iris Puffybush","type":"Role","_key":"92883","_from":"54789","_to":"54784"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"92879","_from":"54788","_to":"54784"} +{"$label":"ACTS_IN","name":"Inmate","type":"Role","_key":"92875","_from":"54787","_to":"54784"} +{"$label":"ACTS_IN","name":"Principal Blackman (as Gregory Holliman)","type":"Role","_key":"92872","_from":"54786","_to":"54784"} +{"$label":"ACTS_IN","name":"Geoffrey Jellineck","type":"Role","_key":"92871","_from":"54785","_to":"54784"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"102134","_from":"54788","_to":"60091"} +{"$label":"ACTS_IN","name":"Piper","type":"Role","_key":"102015","_from":"54788","_to":"60027"} +{"$label":"ACTS_IN","name":"Megan \/ Sophie","type":"Role","_key":"101341","_from":"54788","_to":"59660"} +{"$label":"ACTS_IN","name":"Abbie Grainger","type":"Role","_key":"94201","_from":"54788","_to":"55472"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92899","_from":"54794","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92895","_from":"54793","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92894","_from":"54792","_to":"54791"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92917","_from":"54801","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92914","_from":"54800","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92913","_from":"54799","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92911","_from":"54798","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92909","_from":"54797","_to":"54795"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92908","_from":"54796","_to":"54795"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113187","_from":"54796","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113158","_from":"54796","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113129","_from":"54796","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113105","_from":"54796","_to":"66686"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95542","_from":"54796","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92991","_from":"54796","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92958","_from":"54796","_to":"54817"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118630","_from":"54797","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105175","_from":"54797","_to":"61891"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92921","_from":"54797","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92978","_from":"54800","_to":"54820"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92934","_from":"54809","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92932","_from":"54808","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92931","_from":"54807","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92929","_from":"54806","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92927","_from":"54805","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92925","_from":"54804","_to":"54802"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92923","_from":"54803","_to":"54802"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113947","_from":"54803","_to":"67115"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113131","_from":"54803","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113035","_from":"54803","_to":"66673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112569","_from":"54803","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112558","_from":"54803","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112542","_from":"54803","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112528","_from":"54803","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112515","_from":"54803","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112491","_from":"54803","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112448","_from":"54803","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113159","_from":"54805","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113125","_from":"54805","_to":"66692"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113087","_from":"54805","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113060","_from":"54805","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113010","_from":"54805","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112993","_from":"54805","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112929","_from":"54805","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92975","_from":"54805","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92993","_from":"54808","_to":"54825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113188","_from":"54809","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92951","_from":"54816","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92947","_from":"54815","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92945","_from":"54814","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92941","_from":"54813","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92938","_from":"54812","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92936","_from":"54811","_to":"54810"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112514","_from":"54811","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112498","_from":"54811","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112490","_from":"54811","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112457","_from":"54811","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112447","_from":"54811","_to":"66388"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112809","_from":"54813","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113202","_from":"54814","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113147","_from":"54814","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95508","_from":"54814","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93001","_from":"54814","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92990","_from":"54814","_to":"54825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115798","_from":"54815","_to":"68171"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104493","_from":"54815","_to":"61460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95507","_from":"54815","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92965","_from":"54819","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92961","_from":"54818","_to":"54817"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92981","_from":"54824","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92980","_from":"54823","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92974","_from":"54822","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92970","_from":"54821","_to":"54820"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92995","_from":"54829","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92992","_from":"54828","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92989","_from":"54827","_to":"54825"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"92987","_from":"54826","_to":"54825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113184","_from":"54826","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113153","_from":"54826","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95529","_from":"54826","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113205","_from":"54827","_to":"66703"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95519","_from":"54827","_to":"56182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113183","_from":"54828","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95536","_from":"54828","_to":"56187"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95501","_from":"54828","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95504","_from":"54829","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93009","_from":"54835","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93007","_from":"54834","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93006","_from":"54833","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93005","_from":"54832","_to":"54830"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"92999","_from":"54831","_to":"54830"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95537","_from":"54831","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113143","_from":"54832","_to":"66693"} +{"$label":"DIRECTED","_key":"93013","_from":"54837","_to":"54836"} +{"$label":"DIRECTED","_key":"99488","_from":"54837","_to":"58650"} +{"$label":"DIRECTED","_key":"93025","_from":"54847","_to":"54839"} +{"$label":"ACTS_IN","name":"Tabitha","type":"Role","_key":"93024","_from":"54846","_to":"54839"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"93022","_from":"54845","_to":"54839"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"93021","_from":"54844","_to":"54839"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"93020","_from":"54843","_to":"54839"} +{"$label":"ACTS_IN","name":"Endora","type":"Role","_key":"93018","_from":"54842","_to":"54839"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"93017","_from":"54841","_to":"54839"} +{"$label":"ACTS_IN","name":"Harem Girl","type":"Role","_key":"93016","_from":"54840","_to":"54839"} +{"$label":"ACTS_IN","name":"Chelsea","type":"Role","_key":"113614","_from":"54841","_to":"66956"} +{"$label":"ACTS_IN","name":"Babysitter","type":"Role","_key":"103212","_from":"54841","_to":"60710"} +{"$label":"ACTS_IN","name":"Maria - Scene 10","type":"Role","_key":"99583","_from":"54841","_to":"58694"} +{"$label":"ACTS_IN","name":"Babysitter","type":"Role","_key":"103214","_from":"54846","_to":"60710"} +{"$label":"ACTS_IN","name":"Scene 3","type":"Role","_key":"97246","_from":"54846","_to":"57211"} +{"$label":"ACTS_IN","name":"Muto","type":"Role","_key":"93037","_from":"54852","_to":"54849"} +{"$label":"ACTS_IN","name":"Angel Mueller","type":"Role","_key":"93036","_from":"54851","_to":"54849"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"93034","_from":"54850","_to":"54849"} +{"$label":"ACTS_IN","name":"Ito","type":"Role","_key":"95947","_from":"54850","_to":"56416"} +{"$label":"ACTS_IN","name":"Cyclops","type":"Role","_key":"111721","_from":"54852","_to":"65950"} +{"$label":"DIRECTED","_key":"93043","_from":"54854","_to":"54853"} +{"$label":"DIRECTED","_key":"93048","_from":"54856","_to":"54855"} +{"$label":"DIRECTED","_key":"93054","_from":"54860","_to":"54857"} +{"$label":"DIRECTED","_key":"93053","_from":"54862","_to":"54857"} +{"$label":"ACTS_IN","name":"Oglethorpe (voice)","type":"Role","_key":"93052","_from":"54861","_to":"54857"} +{"$label":"ACTS_IN","name":"Meatwad \/ Carl \/ Ignignokt \/ Video Game Voice (voice)","type":"Role","_key":"93051","_from":"54860","_to":"54857"} +{"$label":"ACTS_IN","name":"Frylock (voice)","type":"Role","_key":"93050","_from":"54859","_to":"54857"} +{"$label":"ACTS_IN","name":"Master Shake (voice)","type":"Role","_key":"93049","_from":"54858","_to":"54857"} +{"$label":"DIRECTED","_key":"93061","_from":"54865","_to":"54864"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"93079","_from":"54869","_to":"54867"} +{"$label":"ACTS_IN","name":"Leeza Raja","type":"Role","_key":"93075","_from":"54868","_to":"54867"} +{"$label":"ACTS_IN","name":"Sod","type":"Role","_key":"104364","_from":"54869","_to":"61395"} +{"$label":"ACTS_IN","name":"Jonesy","type":"Role","_key":"93082","_from":"54871","_to":"54870"} +{"$label":"ACTS_IN","name":"Mark Sellers","type":"Role","_key":"115783","_from":"54871","_to":"68168"} +{"$label":"ACTS_IN","name":"Larry Garnett","type":"Role","_key":"103271","_from":"54871","_to":"60758"} +{"$label":"DIRECTED","_key":"93088","_from":"54873","_to":"54872"} +{"$label":"DIRECTED","_key":"114756","_from":"54873","_to":"67595"} +{"$label":"ACTS_IN","name":"Pulp Mill Worker #2","type":"Role","_key":"93132","_from":"54896","_to":"54874"} +{"$label":"ACTS_IN","name":"Big Bear","type":"Role","_key":"93130","_from":"54895","_to":"54874"} +{"$label":"ACTS_IN","name":"Pulp Mill Worker #1","type":"Role","_key":"93129","_from":"54894","_to":"54874"} +{"$label":"ACTS_IN","name":"Disgruntled restaurant patron","type":"Role","_key":"93128","_from":"54893","_to":"54874"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"93125","_from":"54892","_to":"54874"} +{"$label":"ACTS_IN","name":"Spectator","type":"Role","_key":"93124","_from":"54891","_to":"54874"} +{"$label":"ACTS_IN","name":"Policeman (scenes deleted)","type":"Role","_key":"93122","_from":"54890","_to":"54874"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"93121","_from":"54889","_to":"54874"} +{"$label":"ACTS_IN","name":"Indian Woman #2","type":"Role","_key":"93120","_from":"54888","_to":"54874"} +{"$label":"ACTS_IN","name":"Indian Woman #1","type":"Role","_key":"93119","_from":"54887","_to":"54874"} +{"$label":"ACTS_IN","name":"Local Field Reporter","type":"Role","_key":"93118","_from":"54886","_to":"54874"} +{"$label":"ACTS_IN","name":"Pimply Manager","type":"Role","_key":"93116","_from":"54885","_to":"54874"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"93115","_from":"54884","_to":"54874"} +{"$label":"ACTS_IN","name":"Cop with Social Worker","type":"Role","_key":"93111","_from":"54883","_to":"54874"} +{"$label":"ACTS_IN","name":"Woman - Restaurant","type":"Role","_key":"93107","_from":"54882","_to":"54874"} +{"$label":"ACTS_IN","name":"Man #2 - Restaurant","type":"Role","_key":"93106","_from":"54881","_to":"54874"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"93102","_from":"54880","_to":"54874"} +{"$label":"ACTS_IN","name":"Pregnant Woman","type":"Role","_key":"93101","_from":"54879","_to":"54874"} +{"$label":"ACTS_IN","name":"Farmer #2","type":"Role","_key":"93100","_from":"54878","_to":"54874"} +{"$label":"ACTS_IN","name":"Farmer #1","type":"Role","_key":"93099","_from":"54877","_to":"54874"} +{"$label":"ACTS_IN","name":"Andy Malloy","type":"Role","_key":"93098","_from":"54876","_to":"54874"} +{"$label":"ACTS_IN","name":"Mr. Malloy","type":"Role","_key":"93097","_from":"54875","_to":"54874"} +{"$label":"ACTS_IN","name":"Lt. Hutton","type":"Role","_key":"102608","_from":"54881","_to":"60371"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"93433","_from":"54885","_to":"55017"} +{"$label":"DIRECTED","_key":"93135","_from":"54898","_to":"54897"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93150","_from":"54900","_to":"54899"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100604","_from":"54900","_to":"59324"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"93160","_from":"54902","_to":"54901"} +{"$label":"DIRECTED","_key":"93164","_from":"54905","_to":"54904"} +{"$label":"DIRECTED","_key":"93165","_from":"54907","_to":"54906"} +{"$label":"ACTS_IN","name":"'Entertainment Beat' Host George Reardon","type":"Role","_key":"93176","_from":"54910","_to":"54908"} +{"$label":"ACTS_IN","name":"Dr. Glenn Richie","type":"Role","_key":"93175","_from":"54909","_to":"54908"} +{"$label":"ACTS_IN","name":"Lozo","type":"Role","_key":"112254","_from":"54909","_to":"66291"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"103186","_from":"54909","_to":"60693"} +{"$label":"ACTS_IN","name":"Himself\/Narrator","type":"Role","_key":"93183","_from":"54912","_to":"54911"} +{"$label":"DIRECTED","_key":"93182","_from":"54912","_to":"54911"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"93185","_from":"54915","_to":"54913"} +{"$label":"DIRECTED","_key":"93184","_from":"54914","_to":"54913"} +{"$label":"ACTS_IN","name":"Fireflies","type":"Role","_key":"93219","_from":"54921","_to":"54917"} +{"$label":"ACTS_IN","name":"Mrs. Darling","type":"Role","_key":"93218","_from":"54920","_to":"54917"} +{"$label":"ACTS_IN","name":"Minister of Winter","type":"Role","_key":"93216","_from":"54919","_to":"54917"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"93212","_from":"54918","_to":"54917"} +{"$label":"ACTS_IN","name":"Eric Staufer","type":"Role","_key":"105143","_from":"54921","_to":"61873"} +{"$label":"ACTS_IN","name":"Gro\u00dfmutter","type":"Role","_key":"93248","_from":"54938","_to":"54923"} +{"$label":"ACTS_IN","name":"Kathrin","type":"Role","_key":"93247","_from":"54937","_to":"54923"} +{"$label":"ACTS_IN","name":"hagerer Reisiger","type":"Role","_key":"93246","_from":"54936","_to":"54923"} +{"$label":"ACTS_IN","name":"Peter, Sohn des Schmieds","type":"Role","_key":"93244","_from":"54935","_to":"54923"} +{"$label":"ACTS_IN","name":"Ausrufer","type":"Role","_key":"93241","_from":"54934","_to":"54923"} +{"$label":"ACTS_IN","name":"Margrit","type":"Role","_key":"93238","_from":"54933","_to":"54923"} +{"$label":"ACTS_IN","name":"Else","type":"Role","_key":"93237","_from":"54932","_to":"54923"} +{"$label":"ACTS_IN","name":"Bauer Thomas","type":"Role","_key":"93236","_from":"54931","_to":"54923"} +{"$label":"ACTS_IN","name":"Bauer Martin","type":"Role","_key":"93235","_from":"54930","_to":"54923"} +{"$label":"ACTS_IN","name":"Bauer Melchior","type":"Role","_key":"93234","_from":"54929","_to":"54923"} +{"$label":"ACTS_IN","name":"Magd Marie","type":"Role","_key":"93232","_from":"54928","_to":"54923"} +{"$label":"ACTS_IN","name":"Knecht Konrad","type":"Role","_key":"93231","_from":"54927","_to":"54923"} +{"$label":"ACTS_IN","name":"Marthe, seine Frau","type":"Role","_key":"93230","_from":"54926","_to":"54923"} +{"$label":"ACTS_IN","name":"Schmied Anselm","type":"Role","_key":"93229","_from":"54925","_to":"54923"} +{"$label":"ACTS_IN","name":"Burgvogt Raufer","type":"Role","_key":"93227","_from":"54924","_to":"54923"} +{"$label":"ACTS_IN","name":"altes M\u00fctterchen","type":"Role","_key":"93807","_from":"54932","_to":"55218"} +{"$label":"ACTS_IN","name":"John with Rorschach's Mother","type":"Role","_key":"93280","_from":"54949","_to":"54939"} +{"$label":"ACTS_IN","name":"Truman Capote","type":"Role","_key":"93279","_from":"54948","_to":"54939"} +{"$label":"ACTS_IN","name":"Foreign Newscaster #1","type":"Role","_key":"93278","_from":"54947","_to":"54939"} +{"$label":"ACTS_IN","name":"Foreign Newscaster #11","type":"Role","_key":"93277","_from":"54946","_to":"54939"} +{"$label":"ACTS_IN","name":"Lee Iacocca","type":"Role","_key":"93276","_from":"54945","_to":"54939"} +{"$label":"ACTS_IN","name":"Vietnamese Girl","type":"Role","_key":"93275","_from":"54944","_to":"54939"} +{"$label":"ACTS_IN","name":"Dumb Thug","type":"Role","_key":"93274","_from":"54943","_to":"54939"} +{"$label":"ACTS_IN","name":"Eleanor Clift","type":"Role","_key":"93265","_from":"54942","_to":"54939"} +{"$label":"ACTS_IN","name":"Pat Buchanan (James Michael Connor)","type":"Role","_key":"93264","_from":"54941","_to":"54939"} +{"$label":"ACTS_IN","name":"Janey Slater","type":"Role","_key":"93261","_from":"54940","_to":"54939"} +{"$label":"ACTS_IN","name":"Lanie Drachev","type":"Role","_key":"116316","_from":"54940","_to":"68473"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"114694","_from":"54940","_to":"67561"} +{"$label":"ACTS_IN","name":"Max Arthur","type":"Role","_key":"117517","_from":"54943","_to":"69094"} +{"$label":"ACTS_IN","name":"Chicago","type":"Role","_key":"93293","_from":"54958","_to":"54950"} +{"$label":"ACTS_IN","name":"USC","type":"Role","_key":"93292","_from":"54957","_to":"54950"} +{"$label":"ACTS_IN","name":"Michigan","type":"Role","_key":"93291","_from":"54956","_to":"54950"} +{"$label":"ACTS_IN","name":"Kong's Brother","type":"Role","_key":"93290","_from":"54955","_to":"54950"} +{"$label":"ACTS_IN","name":"Aran","type":"Role","_key":"93289","_from":"54954","_to":"54950"} +{"$label":"ACTS_IN","name":"Surat","type":"Role","_key":"93288","_from":"54953","_to":"54950"} +{"$label":"ACTS_IN","name":"Aom","type":"Role","_key":"93287","_from":"54952","_to":"54950"} +{"$label":"ACTS_IN","name":"Kong","type":"Role","_key":"93285","_from":"54951","_to":"54950"} +{"$label":"ACTS_IN","name":"Chu","type":"Role","_key":"99270","_from":"54954","_to":"58498"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"93299","_from":"54963","_to":"54959"} +{"$label":"ACTS_IN","name":"Alisa","type":"Role","_key":"93296","_from":"54962","_to":"54959"} +{"$label":"ACTS_IN","name":"Trife","type":"Role","_key":"93295","_from":"54961","_to":"54959"} +{"$label":"DIRECTED","_key":"93294","_from":"54960","_to":"54959"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"94459","_from":"54963","_to":"55618"} +{"$label":"ACTS_IN","name":"Sister","type":"Role","_key":"93314","_from":"54969","_to":"54964"} +{"$label":"ACTS_IN","name":"Brother","type":"Role","_key":"93313","_from":"54968","_to":"54964"} +{"$label":"ACTS_IN","name":"Ma","type":"Role","_key":"93312","_from":"54967","_to":"54964"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"93309","_from":"54966","_to":"54964"} +{"$label":"DIRECTED","_key":"93300","_from":"54965","_to":"54964"} +{"$label":"ACTS_IN","name":"Linus Van Pelt (voice)","type":"Role","_key":"93325","_from":"54980","_to":"54970"} +{"$label":"ACTS_IN","name":"Sally Brown (voice)","type":"Role","_key":"93324","_from":"54979","_to":"54970"} +{"$label":"ACTS_IN","name":"Lucy Van Pelt (voice)","type":"Role","_key":"93323","_from":"54978","_to":"54970"} +{"$label":"ACTS_IN","name":"Charlie Brown (voice)","type":"Role","_key":"93322","_from":"54977","_to":"54970"} +{"$label":"ACTS_IN","name":"Pig-Pen (voice)","type":"Role","_key":"93321","_from":"54976","_to":"54970"} +{"$label":"ACTS_IN","name":"Patty (voice)","type":"Role","_key":"93320","_from":"54975","_to":"54970"} +{"$label":"ACTS_IN","name":"Snoopy (voice)","type":"Role","_key":"93319","_from":"54971","_to":"54970"} +{"$label":"ACTS_IN","name":"Violet (voice)","type":"Role","_key":"93318","_from":"54974","_to":"54970"} +{"$label":"ACTS_IN","name":"Schroeder \/ Shermy (voice)","type":"Role","_key":"93317","_from":"54973","_to":"54970"} +{"$label":"ACTS_IN","name":"Freida (voice)","type":"Role","_key":"93316","_from":"54972","_to":"54970"} +{"$label":"DIRECTED","_key":"93315","_from":"54971","_to":"54970"} +{"$label":"DIRECTED","_key":"104166","_from":"54971","_to":"61280"} +{"$label":"DIRECTED","_key":"103659","_from":"54971","_to":"60968"} +{"$label":"DIRECTED","_key":"94721","_from":"54971","_to":"55792"} +{"$label":"DIRECTED","_key":"94073","_from":"54971","_to":"55400"} +{"$label":"ACTS_IN","name":"Snoopy \/ Woodstock (voice)","type":"Role","_key":"103668","_from":"54971","_to":"60968"} +{"$label":"ACTS_IN","name":"Snoopy","type":"Role","_key":"94081","_from":"54971","_to":"55400"} +{"$label":"ACTS_IN","name":"Frieda \/ Violet","type":"Role","_key":"94077","_from":"54972","_to":"55400"} +{"$label":"ACTS_IN","name":"Lucy Van Pelt","type":"Role","_key":"94075","_from":"54974","_to":"55400"} +{"$label":"ACTS_IN","name":"Charlie Brown","type":"Role","_key":"104162","_from":"54977","_to":"61280"} +{"$label":"ACTS_IN","name":"Charlie Brown","type":"Role","_key":"94082","_from":"54977","_to":"55400"} +{"$label":"ACTS_IN","name":"Sally Brown","type":"Role","_key":"94076","_from":"54979","_to":"55400"} +{"$label":"ACTS_IN","name":"Linus Van Pelt","type":"Role","_key":"94074","_from":"54980","_to":"55400"} +{"$label":"DIRECTED","_key":"93334","_from":"54985","_to":"54981"} +{"$label":"ACTS_IN","name":"Peter Cratchit","type":"Role","_key":"93332","_from":"54984","_to":"54981"} +{"$label":"ACTS_IN","name":"Bob Cratchit","type":"Role","_key":"93328","_from":"54983","_to":"54981"} +{"$label":"ACTS_IN","name":"Mrs. Dilber","type":"Role","_key":"93327","_from":"54982","_to":"54981"} +{"$label":"ACTS_IN","name":"Walter Craig","type":"Role","_key":"95327","_from":"54983","_to":"56079"} +{"$label":"ACTS_IN","name":"Ramirez (voice)","type":"Role","_key":"93351","_from":"54991","_to":"54987"} +{"$label":"ACTS_IN","name":"Jen Barrow (voice)","type":"Role","_key":"93350","_from":"54990","_to":"54987"} +{"$label":"ACTS_IN","name":"Chic (voice)","type":"Role","_key":"93348","_from":"54989","_to":"54987"} +{"$label":"DIRECTED","_key":"93338","_from":"54988","_to":"54987"} +{"$label":"ACTS_IN","name":"George Quennell","type":"Role","_key":"119122","_from":"54989","_to":"70011"} +{"$label":"ACTS_IN","name":"Publisher","type":"Role","_key":"96487","_from":"54991","_to":"56725"} +{"$label":"DIRECTED","_key":"93363","_from":"54995","_to":"54992"} +{"$label":"ACTS_IN","name":"GuideStar Voice (voice)","type":"Role","_key":"93361","_from":"54994","_to":"54992"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93360","_from":"54993","_to":"54992"} +{"$label":"DIRECTED","_key":"93369","_from":"54998","_to":"54996"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"93367","_from":"54997","_to":"54996"} +{"$label":"DIRECTED","_key":"93378","_from":"55000","_to":"54999"} +{"$label":"ACTS_IN","name":"Kyala","type":"Role","_key":"93384","_from":"55004","_to":"55001"} +{"$label":"ACTS_IN","name":"Marcus Octavius","type":"Role","_key":"93383","_from":"55003","_to":"55001"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"93381","_from":"55002","_to":"55001"} +{"$label":"ACTS_IN","name":"Lady Deathstrike","type":"Role","_key":"103727","_from":"55004","_to":"61003"} +{"$label":"ACTS_IN","name":"Lewis","type":"Role","_key":"93396","_from":"55009","_to":"55005"} +{"$label":"ACTS_IN","name":"Penelope","type":"Role","_key":"93395","_from":"55008","_to":"55005"} +{"$label":"ACTS_IN","name":"Sinclair","type":"Role","_key":"93394","_from":"55007","_to":"55005"} +{"$label":"ACTS_IN","name":"Fenton","type":"Role","_key":"93391","_from":"55006","_to":"55005"} +{"$label":"ACTS_IN","name":"Rocco","type":"Role","_key":"93415","_from":"55012","_to":"55011"} +{"$label":"DIRECTED","_key":"93426","_from":"55014","_to":"55013"} +{"$label":"ACTS_IN","name":"Puppet","type":"Role","_key":"93429","_from":"55016","_to":"55015"} +{"$label":"DIRECTED","_key":"93438","_from":"55019","_to":"55017"} +{"$label":"ACTS_IN","name":"Pete Doust","type":"Role","_key":"93436","_from":"55018","_to":"55017"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"107705","_from":"55018","_to":"63574"} +{"$label":"DIRECTED","_key":"93450","_from":"55024","_to":"55021"} +{"$label":"ACTS_IN","name":"Kate Martinez","type":"Role","_key":"93448","_from":"55023","_to":"55021"} +{"$label":"ACTS_IN","name":"Dillen","type":"Role","_key":"93447","_from":"55022","_to":"55021"} +{"$label":"ACTS_IN","name":"Faline (voice)","type":"Role","_key":"93471","_from":"55033","_to":"55027"} +{"$label":"ACTS_IN","name":"Ronno (voice)","type":"Role","_key":"93470","_from":"55032","_to":"55027"} +{"$label":"ACTS_IN","name":"Flower (voice)","type":"Role","_key":"93469","_from":"55031","_to":"55027"} +{"$label":"ACTS_IN","name":"Bambi's Mother (voice)","type":"Role","_key":"93468","_from":"55030","_to":"55027"} +{"$label":"ACTS_IN","name":"Thumper (voice)","type":"Role","_key":"93467","_from":"55029","_to":"55027"} +{"$label":"DIRECTED","_key":"93464","_from":"55028","_to":"55027"} +{"$label":"DIRECTED","_key":"93473","_from":"55035","_to":"55034"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93472","_from":"55035","_to":"55034"} +{"$label":"ACTS_IN","name":"Amanda","type":"Role","_key":"93486","_from":"55044","_to":"55036"} +{"$label":"ACTS_IN","name":"Chelsea","type":"Role","_key":"93485","_from":"55043","_to":"55036"} +{"$label":"ACTS_IN","name":"Nolan","type":"Role","_key":"93484","_from":"55042","_to":"55036"} +{"$label":"ACTS_IN","name":"Lawrence","type":"Role","_key":"93483","_from":"55041","_to":"55036"} +{"$label":"ACTS_IN","name":"Richie","type":"Role","_key":"93482","_from":"55040","_to":"55036"} +{"$label":"ACTS_IN","name":"Bree","type":"Role","_key":"93481","_from":"55039","_to":"55036"} +{"$label":"ACTS_IN","name":"Trent","type":"Role","_key":"93478","_from":"55038","_to":"55036"} +{"$label":"ACTS_IN","name":"Whitney","type":"Role","_key":"93477","_from":"55037","_to":"55036"} +{"$label":"ACTS_IN","name":"Ariel Wolfe","type":"Role","_key":"95242","_from":"55037","_to":"56036"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"118757","_from":"55038","_to":"69832"} +{"$label":"ACTS_IN","name":"Anna Nicole","type":"Role","_key":"111311","_from":"55043","_to":"65740"} +{"$label":"ACTS_IN","name":"Claire Dennison","type":"Role","_key":"101831","_from":"55043","_to":"59934"} +{"$label":"DIRECTED","_key":"93488","_from":"55046","_to":"55045"} +{"$label":"DIRECTED","_key":"97330","_from":"55046","_to":"57310"} +{"$label":"ACTS_IN","name":"Blake Sherman Jr.","type":"Role","_key":"93497","_from":"55051","_to":"55048"} +{"$label":"ACTS_IN","name":"Lacey Belisle","type":"Role","_key":"93496","_from":"55050","_to":"55048"} +{"$label":"ACTS_IN","name":"Polly Watt","type":"Role","_key":"93495","_from":"55049","_to":"55048"} +{"$label":"ACTS_IN","name":"Mons Somby","type":"Role","_key":"93503","_from":"55054","_to":"55052"} +{"$label":"ACTS_IN","name":"Mathis H\u00e6tta","type":"Role","_key":"93501","_from":"55053","_to":"55052"} +{"$label":"DIRECTED","_key":"93510","_from":"55057","_to":"55055"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93509","_from":"55056","_to":"55055"} +{"$label":"ACTS_IN","name":"Day Planner","type":"Role","_key":"93528","_from":"55071","_to":"55058"} +{"$label":"ACTS_IN","name":"Latino #3","type":"Role","_key":"93527","_from":"55070","_to":"55058"} +{"$label":"ACTS_IN","name":"Sue Lor","type":"Role","_key":"93526","_from":"55069","_to":"55058"} +{"$label":"ACTS_IN","name":"Daniel Kowalski","type":"Role","_key":"93525","_from":"55068","_to":"55058"} +{"$label":"ACTS_IN","name":"Family Friend","type":"Role","_key":"93524","_from":"55067","_to":"55058"} +{"$label":"ACTS_IN","name":"Tao Vang Lor","type":"Role","_key":"93523","_from":"55066","_to":"55058"} +{"$label":"ACTS_IN","name":"Father Janovich","type":"Role","_key":"93522","_from":"55065","_to":"55058"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"93521","_from":"55064","_to":"55058"} +{"$label":"ACTS_IN","name":"Hmong Gang Banger 3","type":"Role","_key":"93520","_from":"55063","_to":"55058"} +{"$label":"ACTS_IN","name":"Paralegal","type":"Role","_key":"93519","_from":"55062","_to":"55058"} +{"$label":"ACTS_IN","name":"Fong\/Spider","type":"Role","_key":"93517","_from":"55061","_to":"55058"} +{"$label":"ACTS_IN","name":"Ashley Kowalski","type":"Role","_key":"93516","_from":"55060","_to":"55058"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"93512","_from":"55059","_to":"55058"} +{"$label":"DIRECTED","_key":"93530","_from":"55073","_to":"55072"} +{"$label":"DIRECTED","_key":"93538","_from":"55077","_to":"55074"} +{"$label":"DIRECTED","_key":"93537","_from":"55076","_to":"55074"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93536","_from":"55075","_to":"55074"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"99558","_from":"55075","_to":"58690"} +{"$label":"ACTS_IN","name":"Guy Maddin","type":"Role","_key":"93542","_from":"55081","_to":"55078"} +{"$label":"ACTS_IN","name":"Janet Maddin","type":"Role","_key":"93541","_from":"55080","_to":"55078"} +{"$label":"DIRECTED","_key":"93539","_from":"55079","_to":"55078"} +{"$label":"ACTS_IN","name":"Cordelia","type":"Role","_key":"113336","_from":"55080","_to":"66763"} +{"$label":"ACTS_IN","name":"Abby","type":"Role","_key":"111122","_from":"55080","_to":"65632"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93548","_from":"55087","_to":"55082"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93547","_from":"55086","_to":"55082"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93546","_from":"55085","_to":"55082"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93545","_from":"55084","_to":"55082"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"93544","_from":"55083","_to":"55082"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"119854","_from":"55084","_to":"70380"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119847","_from":"55084","_to":"70377"} +{"$label":"ACTS_IN","name":"Guitar, Vocals","type":"Role","_key":"119852","_from":"55085","_to":"70380"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119848","_from":"55085","_to":"70377"} +{"$label":"ACTS_IN","name":"Drums","type":"Role","_key":"119855","_from":"55086","_to":"70380"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119846","_from":"55086","_to":"70377"} +{"$label":"ACTS_IN","name":"Guitar, Vocals","type":"Role","_key":"119851","_from":"55087","_to":"70380"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119845","_from":"55087","_to":"70377"} +{"$label":"DIRECTED","_key":"93550","_from":"55090","_to":"55088"} +{"$label":"DIRECTED","_key":"93549","_from":"55089","_to":"55088"} +{"$label":"ACTS_IN","name":"Amaqjuaq (as Pakkak Innushuk)","type":"Role","_key":"93560","_from":"55098","_to":"55092"} +{"$label":"ACTS_IN","name":"Puja","type":"Role","_key":"93559","_from":"55097","_to":"55092"} +{"$label":"ACTS_IN","name":"Oki","type":"Role","_key":"93558","_from":"55096","_to":"55092"} +{"$label":"ACTS_IN","name":"Atuat","type":"Role","_key":"93557","_from":"55095","_to":"55092"} +{"$label":"ACTS_IN","name":"Atanarjuat","type":"Role","_key":"93556","_from":"55094","_to":"55092"} +{"$label":"DIRECTED","_key":"93555","_from":"55093","_to":"55092"} +{"$label":"ACTS_IN","name":"Doc Boy (voice)","type":"Role","_key":"93568","_from":"55105","_to":"55099"} +{"$label":"ACTS_IN","name":"Dad (voice)","type":"Role","_key":"93567","_from":"55104","_to":"55099"} +{"$label":"ACTS_IN","name":"Jon Arbuckle (voice)","type":"Role","_key":"93564","_from":"55103","_to":"55099"} +{"$label":"ACTS_IN","name":"Garfield (voice)","type":"Role","_key":"93563","_from":"55102","_to":"55099"} +{"$label":"DIRECTED","_key":"93562","_from":"55101","_to":"55099"} +{"$label":"DIRECTED","_key":"93561","_from":"55100","_to":"55099"} +{"$label":"DIRECTED","_key":"105626","_from":"55100","_to":"62173"} +{"$label":"DIRECTED","_key":"94722","_from":"55100","_to":"55792"} +{"$label":"ACTS_IN","name":"Garfield (voice)","type":"Role","_key":"105627","_from":"55102","_to":"62173"} +{"$label":"ACTS_IN","name":"Binky the Clown (voice)","type":"Role","_key":"105628","_from":"55103","_to":"62173"} +{"$label":"DIRECTED","_key":"93570","_from":"55107","_to":"55106"} +{"$label":"DIRECTED","_key":"93585","_from":"55110","_to":"55109"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"93595","_from":"55115","_to":"55111"} +{"$label":"ACTS_IN","name":"Karl Granger","type":"Role","_key":"93594","_from":"55114","_to":"55111"} +{"$label":"ACTS_IN","name":"Sophie Randall","type":"Role","_key":"93590","_from":"55113","_to":"55111"} +{"$label":"DIRECTED","_key":"93586","_from":"55112","_to":"55111"} +{"$label":"DIRECTED","_key":"116846","_from":"55112","_to":"68786"} +{"$label":"DIRECTED","_key":"103518","_from":"55112","_to":"60900"} +{"$label":"ACTS_IN","name":"Cherie","type":"Role","_key":"93609","_from":"55119","_to":"55117"} +{"$label":"ACTS_IN","name":"Rose Cutler","type":"Role","_key":"93608","_from":"55118","_to":"55117"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"110032","_from":"55118","_to":"65011"} +{"$label":"ACTS_IN","name":"Mary Thomas","type":"Role","_key":"97870","_from":"55118","_to":"57646"} +{"$label":"ACTS_IN","name":"Akeelah","type":"Role","_key":"96169","_from":"55118","_to":"56522"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"95299","_from":"55118","_to":"56068"} +{"$label":"ACTS_IN","name":"Michelle Casper","type":"Role","_key":"100209","_from":"55119","_to":"59100"} +{"$label":"DIRECTED","_key":"93624","_from":"55124","_to":"55123"} +{"$label":"ACTS_IN","name":"French Teacher","type":"Role","_key":"93644","_from":"55131","_to":"55126"} +{"$label":"ACTS_IN","name":"Jess Proudfoot","type":"Role","_key":"93643","_from":"55130","_to":"55126"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"93641","_from":"55129","_to":"55126"} +{"$label":"ACTS_IN","name":"Will Proudfoot","type":"Role","_key":"93639","_from":"55128","_to":"55126"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"93638","_from":"55127","_to":"55126"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"110969","_from":"55128","_to":"65545"} +{"$label":"DIRECTED","_key":"93647","_from":"55134","_to":"55132"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"93646","_from":"55133","_to":"55132"} +{"$label":"ACTS_IN","name":"Dick Pepperfield","type":"Role","_key":"93661","_from":"55137","_to":"55135"} +{"$label":"DIRECTED","_key":"93648","_from":"55136","_to":"55135"} +{"$label":"DIRECTED","_key":"93663","_from":"55139","_to":"55138"} +{"$label":"DIRECTED","_key":"93664","_from":"55141","_to":"55140"} +{"$label":"ACTS_IN","name":"AJ","type":"Role","_key":"93669","_from":"55143","_to":"55142"} +{"$label":"DIRECTED","_key":"93673","_from":"55147","_to":"55145"} +{"$label":"ACTS_IN","name":"Jane (as Frida Farrell)","type":"Role","_key":"93670","_from":"55146","_to":"55145"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"93688","_from":"55156","_to":"55148"} +{"$label":"ACTS_IN","name":"Sang Hee Pak","type":"Role","_key":"93686","_from":"55155","_to":"55148"} +{"$label":"ACTS_IN","name":"Jung Lee Pak","type":"Role","_key":"93685","_from":"55154","_to":"55148"} +{"$label":"ACTS_IN","name":"Damon Richards","type":"Role","_key":"93684","_from":"55153","_to":"55148"} +{"$label":"ACTS_IN","name":"Captain Wentworth","type":"Role","_key":"93682","_from":"55152","_to":"55148"} +{"$label":"ACTS_IN","name":"Marcus Turner","type":"Role","_key":"93681","_from":"55151","_to":"55148"} +{"$label":"ACTS_IN","name":"Celia Turner","type":"Role","_key":"93680","_from":"55150","_to":"55148"} +{"$label":"ACTS_IN","name":"Harold Perreau","type":"Role","_key":"93677","_from":"55149","_to":"55148"} +{"$label":"ACTS_IN","name":"Shepherd Book","type":"Role","_key":"108698","_from":"55149","_to":"64246"} +{"$label":"ACTS_IN","name":"Sabrina","type":"Role","_key":"104212","_from":"55150","_to":"61310"} +{"$label":"ACTS_IN","name":"Sheriff McAllister","type":"Role","_key":"116840","_from":"55152","_to":"68777"} +{"$label":"DIRECTED","_key":"93695","_from":"55159","_to":"55157"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"93692","_from":"55158","_to":"55157"} +{"$label":"DIRECTED","_key":"121244","_from":"55159","_to":"71223"} +{"$label":"DIRECTED","_key":"110853","_from":"55159","_to":"65481"} +{"$label":"ACTS_IN","name":"Cleopatra","type":"Role","_key":"93708","_from":"55164","_to":"55160"} +{"$label":"ACTS_IN","name":"Herman the German","type":"Role","_key":"93707","_from":"55163","_to":"55160"} +{"$label":"ACTS_IN","name":"Matilda the Hun","type":"Role","_key":"93701","_from":"55162","_to":"55160"} +{"$label":"ACTS_IN","name":"Annie Smith","type":"Role","_key":"93698","_from":"55161","_to":"55160"} +{"$label":"ACTS_IN","name":"Pixie #5 & Enchantress","type":"Role","_key":"93725","_from":"55175","_to":"55166"} +{"$label":"ACTS_IN","name":"Pixie #1","type":"Role","_key":"93724","_from":"55174","_to":"55166"} +{"$label":"ACTS_IN","name":"Larkspur","type":"Role","_key":"93723","_from":"55173","_to":"55166"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"93722","_from":"55172","_to":"55166"} +{"$label":"ACTS_IN","name":"Quill & Amythyst","type":"Role","_key":"93721","_from":"55171","_to":"55166"} +{"$label":"ACTS_IN","name":"Hue","type":"Role","_key":"93719","_from":"55170","_to":"55166"} +{"$label":"ACTS_IN","name":"Azura","type":"Role","_key":"93717","_from":"55169","_to":"55166"} +{"$label":"ACTS_IN","name":"Dandelion, Topaz & Mermaid #1","type":"Role","_key":"93715","_from":"55168","_to":"55166"} +{"$label":"ACTS_IN","name":"Bibble, Fungus & Happy Trolls","type":"Role","_key":"93714","_from":"55167","_to":"55166"} +{"$label":"ACTS_IN","name":"Makuta \/ Pewku (voice)","type":"Role","_key":"119729","_from":"55167","_to":"70313"} +{"$label":"ACTS_IN","name":"Bibble \/ Fungus 1 & 2","type":"Role","_key":"93727","_from":"55167","_to":"55176"} +{"$label":"ACTS_IN","name":"Nokama","type":"Role","_key":"115408","_from":"55168","_to":"67952"} +{"$label":"ACTS_IN","name":"Chrysella (voice)","type":"Role","_key":"109160","_from":"55168","_to":"64489"} +{"$label":"ACTS_IN","name":"Dandelion \/ Teeny Mermaid","type":"Role","_key":"93734","_from":"55168","_to":"55176"} +{"$label":"ACTS_IN","name":"Millerna","type":"Role","_key":"110742","_from":"55169","_to":"65413"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"102740","_from":"55169","_to":"60440"} +{"$label":"ACTS_IN","name":"Azura \/ Purple Merfairy","type":"Role","_key":"93735","_from":"55169","_to":"55176"} +{"$label":"ACTS_IN","name":"Toa Kopaka \/ Hewkii (voice)","type":"Role","_key":"119725","_from":"55171","_to":"70313"} +{"$label":"ACTS_IN","name":"Nigel Harrington","type":"Role","_key":"113796","_from":"55171","_to":"67046"} +{"$label":"ACTS_IN","name":"Toa Tahu \/ Toa Onua \/ Grallock The Ash Bear (voice)","type":"Role","_key":"119728","_from":"55172","_to":"70313"} +{"$label":"ACTS_IN","name":"Bomonga","type":"Role","_key":"115407","_from":"55172","_to":"67952"} +{"$label":"ACTS_IN","name":"Dogg","type":"Role","_key":"113799","_from":"55172","_to":"67046"} +{"$label":"ACTS_IN","name":"Jajuka","type":"Role","_key":"110736","_from":"55172","_to":"65413"} +{"$label":"ACTS_IN","name":"Matau","type":"Role","_key":"115404","_from":"55173","_to":"67952"} +{"$label":"ACTS_IN","name":"Allen","type":"Role","_key":"110737","_from":"55173","_to":"65413"} +{"$label":"ACTS_IN","name":"Poofles (voice)","type":"Role","_key":"109164","_from":"55173","_to":"64489"} +{"$label":"ACTS_IN","name":"Shellie \/ Delphine","type":"Role","_key":"93738","_from":"55181","_to":"55176"} +{"$label":"ACTS_IN","name":"Deep Bibble","type":"Role","_key":"93736","_from":"55180","_to":"55176"} +{"$label":"ACTS_IN","name":"Yellow Merfairy","type":"Role","_key":"93732","_from":"55179","_to":"55176"} +{"$label":"ACTS_IN","name":"Sea Butterfly","type":"Role","_key":"93731","_from":"55178","_to":"55176"} +{"$label":"ACTS_IN","name":"Fungus Maximus","type":"Role","_key":"93728","_from":"55177","_to":"55176"} +{"$label":"ACTS_IN","name":"Turaga Vakama (voice)","type":"Role","_key":"119730","_from":"55177","_to":"70313"} +{"$label":"ACTS_IN","name":"Turaga Vakama","type":"Role","_key":"115405","_from":"55177","_to":"67952"} +{"$label":"ACTS_IN","name":"Suzanne Cameron","type":"Role","_key":"109134","_from":"55179","_to":"64473"} +{"$label":"ACTS_IN","name":"Harry Helmsley","type":"Role","_key":"98826","_from":"55180","_to":"58224"} +{"$label":"ACTS_IN","name":"Betty Ross","type":"Role","_key":"101101","_from":"55181","_to":"59566"} +{"$label":"DIRECTED","_key":"93750","_from":"55186","_to":"55182"} +{"$label":"ACTS_IN","name":"Hamzi","type":"Role","_key":"93748","_from":"55185","_to":"55182"} +{"$label":"ACTS_IN","name":"Leyla","type":"Role","_key":"93747","_from":"55184","_to":"55182"} +{"$label":"ACTS_IN","name":"Bashir","type":"Role","_key":"93746","_from":"55183","_to":"55182"} +{"$label":"ACTS_IN","name":"China O'Brien","type":"Role","_key":"93751","_from":"55189","_to":"55188"} +{"$label":"ACTS_IN","name":"China O'Brien","type":"Role","_key":"93754","_from":"55189","_to":"55191"} +{"$label":"DIRECTED","_key":"93761","_from":"55193","_to":"55192"} +{"$label":"ACTS_IN","name":"Erkut","type":"Role","_key":"93760","_from":"55196","_to":"55192"} +{"$label":"ACTS_IN","name":"Fatma Nur Gaye T\u00fcrks\u00f6nmez","type":"Role","_key":"93759","_from":"55195","_to":"55192"} +{"$label":"ACTS_IN","name":"Sait T\u00fcnaydin","type":"Role","_key":"93758","_from":"55194","_to":"55192"} +{"$label":"ACTS_IN","name":"Iskender T\u00fcnaydin","type":"Role","_key":"93757","_from":"55193","_to":"55192"} +{"$label":"ACTS_IN","name":"Tippelklimper","type":"Role","_key":"93780","_from":"55212","_to":"55197"} +{"$label":"ACTS_IN","name":"Tippelklimper","type":"Role","_key":"93779","_from":"55211","_to":"55197"} +{"$label":"ACTS_IN","name":"Tippelklimper","type":"Role","_key":"93778","_from":"55210","_to":"55197"} +{"$label":"ACTS_IN","name":"2. Zofe","type":"Role","_key":"93776","_from":"55209","_to":"55197"} +{"$label":"ACTS_IN","name":"1. Zofe","type":"Role","_key":"93775","_from":"55208","_to":"55197"} +{"$label":"ACTS_IN","name":"Magd Hanne","type":"Role","_key":"93774","_from":"55207","_to":"55197"} +{"$label":"ACTS_IN","name":"Magd Marie","type":"Role","_key":"93773","_from":"55206","_to":"55197"} +{"$label":"ACTS_IN","name":"Magd Gudrun","type":"Role","_key":"93772","_from":"55205","_to":"55197"} +{"$label":"ACTS_IN","name":"K\u00fcrdchen","type":"Role","_key":"93770","_from":"55204","_to":"55197"} +{"$label":"ACTS_IN","name":"Prinz Ivo","type":"Role","_key":"93769","_from":"55203","_to":"55197"} +{"$label":"ACTS_IN","name":"Junger K\u00f6nig","type":"Role","_key":"93767","_from":"55202","_to":"55197"} +{"$label":"ACTS_IN","name":"Junge K\u00f6nigin","type":"Role","_key":"93766","_from":"55201","_to":"55197"} +{"$label":"ACTS_IN","name":"K\u00f6nig Ewald","type":"Role","_key":"93765","_from":"55200","_to":"55197"} +{"$label":"ACTS_IN","name":"Liesa","type":"Role","_key":"93764","_from":"55199","_to":"55197"} +{"$label":"ACTS_IN","name":"Prinzessin Aurinia","type":"Role","_key":"93763","_from":"55198","_to":"55197"} +{"$label":"ACTS_IN","name":"Train_Man\/Densha Otoko","type":"Role","_key":"93783","_from":"55215","_to":"55214"} +{"$label":"ACTS_IN","name":"Satoshi Iizuka","type":"Role","_key":"118581","_from":"55215","_to":"69723"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102569","_from":"55215","_to":"60342"} +{"$label":"ACTS_IN","name":"Hofschneider","type":"Role","_key":"93810","_from":"55225","_to":"55218"} +{"$label":"ACTS_IN","name":"Tagel\u00f6hner Nadler","type":"Role","_key":"93805","_from":"55224","_to":"55218"} +{"$label":"ACTS_IN","name":"Tanzmeister","type":"Role","_key":"93801","_from":"55223","_to":"55218"} +{"$label":"ACTS_IN","name":"K\u00fcchenjunge Felix","type":"Role","_key":"93800","_from":"55222","_to":"55218"} +{"$label":"ACTS_IN","name":"K\u00fcchenmeister","type":"Role","_key":"93799","_from":"55221","_to":"55218"} +{"$label":"ACTS_IN","name":"Junker Balduin","type":"Role","_key":"93797","_from":"55220","_to":"55218"} +{"$label":"ACTS_IN","name":"K\u00f6nig Wenzel","type":"Role","_key":"93792","_from":"55219","_to":"55218"} +{"$label":"ACTS_IN","name":"Dietmar","type":"Role","_key":"93823","_from":"55236","_to":"55228"} +{"$label":"ACTS_IN","name":"B\u00e4r","type":"Role","_key":"93821","_from":"55235","_to":"55228"} +{"$label":"ACTS_IN","name":"Klaus","type":"Role","_key":"93820","_from":"55234","_to":"55228"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"93819","_from":"55233","_to":"55228"} +{"$label":"ACTS_IN","name":"Gro\u00dfvater Matthias","type":"Role","_key":"93818","_from":"55232","_to":"55228"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"93816","_from":"55231","_to":"55228"} +{"$label":"ACTS_IN","name":"Rosenrot","type":"Role","_key":"93814","_from":"55230","_to":"55228"} +{"$label":"ACTS_IN","name":"Schneewei\u00dfchen","type":"Role","_key":"93813","_from":"55229","_to":"55228"} +{"$label":"ACTS_IN","name":"Nonne","type":"Role","_key":"93843","_from":"55245","_to":"55237"} +{"$label":"ACTS_IN","name":"Handelsmann","type":"Role","_key":"93841","_from":"55244","_to":"55237"} +{"$label":"ACTS_IN","name":"altes B\u00e4uerlein","type":"Role","_key":"93840","_from":"55243","_to":"55237"} +{"$label":"ACTS_IN","name":"Wibke","type":"Role","_key":"93838","_from":"55242","_to":"55237"} +{"$label":"ACTS_IN","name":"Heide","type":"Role","_key":"93835","_from":"55241","_to":"55237"} +{"$label":"ACTS_IN","name":"Knut","type":"Role","_key":"93832","_from":"55240","_to":"55237"} +{"$label":"ACTS_IN","name":"Vater","type":"Role","_key":"93828","_from":"55239","_to":"55237"} +{"$label":"ACTS_IN","name":"K\u00f6nig","type":"Role","_key":"93827","_from":"55238","_to":"55237"} +{"$label":"DIRECTED","_key":"93850","_from":"55252","_to":"55248"} +{"$label":"ACTS_IN","name":"Madman","type":"Role","_key":"93849","_from":"55251","_to":"55248"} +{"$label":"ACTS_IN","name":"Juliet","type":"Role","_key":"93848","_from":"55250","_to":"55248"} +{"$label":"ACTS_IN","name":"Romeo","type":"Role","_key":"93847","_from":"55249","_to":"55248"} +{"$label":"DIRECTED","_key":"93867","_from":"55269","_to":"55253"} +{"$label":"DIRECTED","_key":"93866","_from":"55268","_to":"55253"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"93865","_from":"55267","_to":"55253"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"93864","_from":"55266","_to":"55253"} +{"$label":"ACTS_IN","name":"Conny","type":"Role","_key":"93863","_from":"55265","_to":"55253"} +{"$label":"ACTS_IN","name":"Magister Avila","type":"Role","_key":"93862","_from":"55264","_to":"55253"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"93861","_from":"55263","_to":"55253"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"93860","_from":"55262","_to":"55253"} +{"$label":"ACTS_IN","name":"G\u00f6sta","type":"Role","_key":"93859","_from":"55261","_to":"55253"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"93857","_from":"55260","_to":"55253"} +{"$label":"ACTS_IN","name":"Lacke","type":"Role","_key":"93856","_from":"55259","_to":"55253"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"93855","_from":"55258","_to":"55253"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"93854","_from":"55257","_to":"55253"} +{"$label":"ACTS_IN","name":"H\u00e5kan","type":"Role","_key":"93853","_from":"55256","_to":"55253"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"93852","_from":"55255","_to":"55253"} +{"$label":"ACTS_IN","name":"Oskar","type":"Role","_key":"93851","_from":"55254","_to":"55253"} +{"$label":"DIRECTED","_key":"106899","_from":"55269","_to":"63023"} +{"$label":"ACTS_IN","name":"Policier BAC 3","type":"Role","_key":"93882","_from":"55281","_to":"55271"} +{"$label":"ACTS_IN","name":"Policier BAC 2","type":"Role","_key":"93881","_from":"55280","_to":"55271"} +{"$label":"ACTS_IN","name":"Policier municipal 2","type":"Role","_key":"93879","_from":"55279","_to":"55271"} +{"$label":"ACTS_IN","name":"Policier municipal 1","type":"Role","_key":"93878","_from":"55278","_to":"55271"} +{"$label":"ACTS_IN","name":"Polici\u00e8re municipale","type":"Role","_key":"93877","_from":"55277","_to":"55271"} +{"$label":"ACTS_IN","name":"Le m\u00e9decin","type":"Role","_key":"93876","_from":"55276","_to":"55271"} +{"$label":"ACTS_IN","name":"Matthieu","type":"Role","_key":"93874","_from":"55275","_to":"55271"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"93873","_from":"55274","_to":"55271"} +{"$label":"DIRECTED","_key":"93869","_from":"55273","_to":"55271"} +{"$label":"DIRECTED","_key":"93868","_from":"55272","_to":"55271"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"118231","_from":"55281","_to":"69499"} +{"$label":"DIRECTED","_key":"93893","_from":"55283","_to":"55282"} +{"$label":"ACTS_IN","name":"Prisoner 'A'","type":"Role","_key":"93905","_from":"55288","_to":"55285"} +{"$label":"ACTS_IN","name":"Deranged Prisoner","type":"Role","_key":"93902","_from":"55287","_to":"55285"} +{"$label":"ACTS_IN","name":"Shiro Kazuki","type":"Role","_key":"93899","_from":"55286","_to":"55285"} +{"$label":"ACTS_IN","name":"Yoichi","type":"Role","_key":"95615","_from":"55286","_to":"56241"} +{"$label":"ACTS_IN","name":"J - Burglar","type":"Role","_key":"107298","_from":"55287","_to":"63279"} +{"$label":"ACTS_IN","name":"Tom\u00e1s","type":"Role","_key":"93913","_from":"55296","_to":"55289"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"93912","_from":"55295","_to":"55289"} +{"$label":"ACTS_IN","name":"Die Stimme","type":"Role","_key":"93911","_from":"55294","_to":"55289"} +{"$label":"ACTS_IN","name":"Der Erfinder","type":"Role","_key":"93910","_from":"55293","_to":"55289"} +{"$label":"ACTS_IN","name":"Krankenschwester","type":"Role","_key":"93909","_from":"55292","_to":"55289"} +{"$label":"ACTS_IN","name":"Mr. TV","type":"Role","_key":"93908","_from":"55291","_to":"55289"} +{"$label":"DIRECTED","_key":"93906","_from":"55290","_to":"55289"} +{"$label":"ACTS_IN","name":"Ingeborg","type":"Role","_key":"93918","_from":"55301","_to":"55297"} +{"$label":"ACTS_IN","name":"Anne Britt","type":"Role","_key":"93916","_from":"55300","_to":"55297"} +{"$label":"ACTS_IN","name":"Andreas","type":"Role","_key":"93915","_from":"55299","_to":"55297"} +{"$label":"DIRECTED","_key":"93914","_from":"55298","_to":"55297"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"93930","_from":"55314","_to":"55302"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"93929","_from":"55313","_to":"55302"} +{"$label":"ACTS_IN","name":"Cornelia","type":"Role","_key":"93928","_from":"55312","_to":"55302"} +{"$label":"ACTS_IN","name":"Cissi","type":"Role","_key":"93927","_from":"55311","_to":"55302"} +{"$label":"ACTS_IN","name":"Joel","type":"Role","_key":"93926","_from":"55310","_to":"55302"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"93925","_from":"55309","_to":"55302"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"93924","_from":"55308","_to":"55302"} +{"$label":"ACTS_IN","name":"Vega (as Emma T. \u00c5berg)","type":"Role","_key":"93923","_from":"55307","_to":"55302"} +{"$label":"ACTS_IN","name":"Saga","type":"Role","_key":"93922","_from":"55306","_to":"55302"} +{"$label":"ACTS_IN","name":"Professor Gerhard Beckert","type":"Role","_key":"93921","_from":"55305","_to":"55302"} +{"$label":"ACTS_IN","name":"Annika","type":"Role","_key":"93920","_from":"55304","_to":"55302"} +{"$label":"DIRECTED","_key":"93919","_from":"55303","_to":"55302"} +{"$label":"ACTS_IN","name":"Oskar Bergman","type":"Role","_key":"98609","_from":"55314","_to":"58110"} +{"$label":"ACTS_IN","name":"Oskar Bergman","type":"Role","_key":"98551","_from":"55314","_to":"58073"} +{"$label":"ACTS_IN","name":"Oskar Bergman","type":"Role","_key":"95398","_from":"55314","_to":"56112"} +{"$label":"ACTS_IN","name":"Maggie Prescott","type":"Role","_key":"93933","_from":"55316","_to":"55315"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"93943","_from":"55321","_to":"55317"} +{"$label":"ACTS_IN","name":"Kovac","type":"Role","_key":"93939","_from":"55320","_to":"55317"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"93936","_from":"55319","_to":"55317"} +{"$label":"ACTS_IN","name":"Connie Porter","type":"Role","_key":"93935","_from":"55318","_to":"55317"} +{"$label":"ACTS_IN","name":"Capt. Vincent Blake","type":"Role","_key":"121737","_from":"55319","_to":"71516"} +{"$label":"ACTS_IN","name":"Jeff (Varna's henchman)","type":"Role","_key":"111217","_from":"55319","_to":"65677"} +{"$label":"ACTS_IN","name":"Buzz Wanchek","type":"Role","_key":"107015","_from":"55319","_to":"63091"} +{"$label":"ACTS_IN","name":"George W. Taylor","type":"Role","_key":"121747","_from":"55320","_to":"71524"} +{"$label":"ACTS_IN","name":"Ben Chaplin","type":"Role","_key":"112429","_from":"55321","_to":"66378"} +{"$label":"ACTS_IN","name":"Carl Miller","type":"Role","_key":"93954","_from":"55323","_to":"55322"} +{"$label":"DIRECTED","_key":"93970","_from":"55340","_to":"55324"} +{"$label":"ACTS_IN","name":"Mat Kendarat","type":"Role","_key":"93969","_from":"55339","_to":"55324"} +{"$label":"ACTS_IN","name":"Lyudoed","type":"Role","_key":"93968","_from":"55338","_to":"55324"} +{"$label":"ACTS_IN","name":"Lekarka","type":"Role","_key":"93967","_from":"55337","_to":"55324"} +{"$label":"ACTS_IN","name":"Vozhditsa kharyukov","type":"Role","_key":"93966","_from":"55336","_to":"55324"} +{"$label":"ACTS_IN","name":"Evrikh","type":"Role","_key":"93965","_from":"55335","_to":"55324"} +{"$label":"ACTS_IN","name":"Niilit","type":"Role","_key":"93964","_from":"55334","_to":"55324"} +{"$label":"ACTS_IN","name":"Tilorn","type":"Role","_key":"93963","_from":"55333","_to":"55324"} +{"$label":"ACTS_IN","name":"Odnoglazyy","type":"Role","_key":"93962","_from":"55332","_to":"55324"} +{"$label":"ACTS_IN","name":"Dungorm","type":"Role","_key":"93961","_from":"55331","_to":"55324"} +{"$label":"ACTS_IN","name":"Illad","type":"Role","_key":"93960","_from":"55330","_to":"55324"} +{"$label":"ACTS_IN","name":"Vinitar","type":"Role","_key":"93959","_from":"55329","_to":"55324"} +{"$label":"ACTS_IN","name":"Khaygal","type":"Role","_key":"93958","_from":"55328","_to":"55324"} +{"$label":"ACTS_IN","name":"Luchezar","type":"Role","_key":"93957","_from":"55327","_to":"55324"} +{"$label":"ACTS_IN","name":"Knesinka Elen","type":"Role","_key":"93956","_from":"55326","_to":"55324"} +{"$label":"ACTS_IN","name":"Volkodav","type":"Role","_key":"93955","_from":"55325","_to":"55324"} +{"$label":"DIRECTED","_key":"93981","_from":"55345","_to":"55341"} +{"$label":"DIRECTED","_key":"93980","_from":"55344","_to":"55341"} +{"$label":"ACTS_IN","name":"Vanessa Fanning","type":"Role","_key":"93978","_from":"55343","_to":"55341"} +{"$label":"ACTS_IN","name":"Colton Graham","type":"Role","_key":"93976","_from":"55342","_to":"55341"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"114411","_from":"55343","_to":"67392"} +{"$label":"ACTS_IN","name":"Tish","type":"Role","_key":"102019","_from":"55343","_to":"60027"} +{"$label":"ACTS_IN","name":"Marie Becker","type":"Role","_key":"93984","_from":"55348","_to":"55346"} +{"$label":"DIRECTED","_key":"93982","_from":"55347","_to":"55346"} +{"$label":"DIRECTED","_key":"93991","_from":"55350","_to":"55349"} +{"$label":"DIRECTED","_key":"94000","_from":"55359","_to":"55351"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"93999","_from":"55358","_to":"55351"} +{"$label":"ACTS_IN","name":"Princess","type":"Role","_key":"93997","_from":"55357","_to":"55351"} +{"$label":"ACTS_IN","name":"Tania","type":"Role","_key":"93996","_from":"55356","_to":"55351"} +{"$label":"ACTS_IN","name":"Leilani","type":"Role","_key":"93995","_from":"55355","_to":"55351"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"93994","_from":"55354","_to":"55351"} +{"$label":"ACTS_IN","name":"Sefa","type":"Role","_key":"93993","_from":"55353","_to":"55351"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"93992","_from":"55352","_to":"55351"} +{"$label":"ACTS_IN","name":"Alipati","type":"Role","_key":"100279","_from":"55358","_to":"59136"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"100143","_from":"55358","_to":"59067"} +{"$label":"ACTS_IN","name":"Vincent Costello","type":"Role","_key":"94005","_from":"55363","_to":"55360"} +{"$label":"ACTS_IN","name":"Brei Mitchell","type":"Role","_key":"94004","_from":"55362","_to":"55360"} +{"$label":"ACTS_IN","name":"Franny Perrins","type":"Role","_key":"94002","_from":"55361","_to":"55360"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"94062","_from":"55361","_to":"55385"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"94012","_from":"55367","_to":"55364"} +{"$label":"ACTS_IN","name":"Norbert","type":"Role","_key":"94010","_from":"55366","_to":"55364"} +{"$label":"ACTS_IN","name":"Angelina","type":"Role","_key":"94009","_from":"55365","_to":"55364"} +{"$label":"ACTS_IN","name":"Grady","type":"Role","_key":"99171","_from":"55366","_to":"58429"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"97604","_from":"55366","_to":"57466"} +{"$label":"ACTS_IN","name":"Mark 'Rat' Ratner","type":"Role","_key":"94021","_from":"55370","_to":"55369"} +{"$label":"DIRECTED","_key":"94039","_from":"55376","_to":"55371"} +{"$label":"ACTS_IN","name":"Mrs. Cobb","type":"Role","_key":"94038","_from":"55375","_to":"55371"} +{"$label":"ACTS_IN","name":"Mrs. Hutchinson","type":"Role","_key":"94037","_from":"55374","_to":"55371"} +{"$label":"ACTS_IN","name":"Police Chief Art Fuller","type":"Role","_key":"94035","_from":"55373","_to":"55371"} +{"$label":"ACTS_IN","name":"Kelsey","type":"Role","_key":"94029","_from":"55372","_to":"55371"} +{"$label":"ACTS_IN","name":"Father Higgins","type":"Role","_key":"117102","_from":"55372","_to":"68902"} +{"$label":"DIRECTED","_key":"94050","_from":"55380","_to":"55377"} +{"$label":"ACTS_IN","name":"Blindy","type":"Role","_key":"94048","_from":"55384","_to":"55377"} +{"$label":"ACTS_IN","name":"Lin Qing Xia","type":"Role","_key":"94047","_from":"55383","_to":"55377"} +{"$label":"ACTS_IN","name":"King Bull","type":"Role","_key":"94046","_from":"55382","_to":"55377"} +{"$label":"ACTS_IN","name":"Lin Zixia","type":"Role","_key":"94045","_from":"55381","_to":"55377"} +{"$label":"ACTS_IN","name":"Grandpa Buddha","type":"Role","_key":"94044","_from":"55380","_to":"55377"} +{"$label":"ACTS_IN","name":"Spider Woman","type":"Role","_key":"94042","_from":"55379","_to":"55377"} +{"$label":"ACTS_IN","name":"Longevity Monk","type":"Role","_key":"94041","_from":"55378","_to":"55377"} +{"$label":"ACTS_IN","name":"Ho Lu Hua","type":"Role","_key":"117616","_from":"55379","_to":"69142"} +{"$label":"DIRECTED","_key":"94065","_from":"55393","_to":"55385"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"94064","_from":"55392","_to":"55385"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"94063","_from":"55391","_to":"55385"} +{"$label":"ACTS_IN","name":"Mary Ellen","type":"Role","_key":"94061","_from":"55390","_to":"55385"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"94060","_from":"55389","_to":"55385"} +{"$label":"ACTS_IN","name":"Tonto","type":"Role","_key":"94059","_from":"55388","_to":"55385"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"94056","_from":"55387","_to":"55385"} +{"$label":"ACTS_IN","name":"Alise","type":"Role","_key":"94055","_from":"55386","_to":"55385"} +{"$label":"DIRECTED","_key":"94066","_from":"55395","_to":"55394"} +{"$label":"DIRECTED","_key":"94072","_from":"55399","_to":"55398"} +{"$label":"ACTS_IN","name":"Schroeder \/ Shermy","type":"Role","_key":"94080","_from":"55403","_to":"55400"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"94079","_from":"55402","_to":"55400"} +{"$label":"ACTS_IN","name":"Pigpen","type":"Role","_key":"94078","_from":"55401","_to":"55400"} +{"$label":"DIRECTED","_key":"94083","_from":"55406","_to":"55405"} +{"$label":"DIRECTED","_key":"94099","_from":"55413","_to":"55409"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94098","_from":"55412","_to":"55409"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94097","_from":"55411","_to":"55409"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94095","_from":"55410","_to":"55409"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"94114","_from":"55422","_to":"55414"} +{"$label":"ACTS_IN","name":"Man in Tyres","type":"Role","_key":"94113","_from":"55421","_to":"55414"} +{"$label":"ACTS_IN","name":"Jurgis","type":"Role","_key":"94112","_from":"55420","_to":"55414"} +{"$label":"ACTS_IN","name":"Brother Radu","type":"Role","_key":"94111","_from":"55419","_to":"55414"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"94110","_from":"55418","_to":"55414"} +{"$label":"ACTS_IN","name":"The Elder","type":"Role","_key":"94109","_from":"55417","_to":"55414"} +{"$label":"ACTS_IN","name":"Zai Jie","type":"Role","_key":"94106","_from":"55416","_to":"55414"} +{"$label":"ACTS_IN","name":"Joe Dawson","type":"Role","_key":"94105","_from":"55415","_to":"55414"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"94120","_from":"55428","_to":"55425"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"94119","_from":"55427","_to":"55425"} +{"$label":"DIRECTED","_key":"94115","_from":"55426","_to":"55425"} +{"$label":"DIRECTED","_key":"94122","_from":"55430","_to":"55429"} +{"$label":"ACTS_IN","name":"Judy Haynes","type":"Role","_key":"94126","_from":"55434","_to":"55432"} +{"$label":"ACTS_IN","name":"Betty Haynes","type":"Role","_key":"94125","_from":"55433","_to":"55432"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"94137","_from":"55438","_to":"55435"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"94134","_from":"55437","_to":"55435"} +{"$label":"DIRECTED","_key":"94128","_from":"55436","_to":"55435"} +{"$label":"DIRECTED","_key":"103400","_from":"55436","_to":"60828"} +{"$label":"ACTS_IN","name":"Jessenia","type":"Role","_key":"103404","_from":"55437","_to":"60828"} +{"$label":"DIRECTED","_key":"94154","_from":"55442","_to":"55441"} +{"$label":"DIRECTED","_key":"115085","_from":"55442","_to":"67773"} +{"$label":"DIRECTED","_key":"105371","_from":"55442","_to":"61996"} +{"$label":"ACTS_IN","name":"Anthony","type":"Role","_key":"94157","_from":"55444","_to":"55443"} +{"$label":"ACTS_IN","name":"Casteller","type":"Role","_key":"94179","_from":"55460","_to":"55446"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94178","_from":"55459","_to":"55446"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94177","_from":"55458","_to":"55446"} +{"$label":"ACTS_IN","name":"Cap Colla","type":"Role","_key":"94176","_from":"55457","_to":"55446"} +{"$label":"ACTS_IN","name":"Novia de Stallone","type":"Role","_key":"94175","_from":"55456","_to":"55446"} +{"$label":"ACTS_IN","name":"La Caball\u00e9","type":"Role","_key":"94174","_from":"55455","_to":"55446"} +{"$label":"ACTS_IN","name":"La madre de Stallone","type":"Role","_key":"94173","_from":"55454","_to":"55446"} +{"$label":"ACTS_IN","name":"La de las tetas","type":"Role","_key":"94172","_from":"55453","_to":"55446"} +{"$label":"ACTS_IN","name":"El Abuelo","type":"Role","_key":"94171","_from":"55452","_to":"55446"} +{"$label":"ACTS_IN","name":"Stallone","type":"Role","_key":"94170","_from":"55451","_to":"55446"} +{"$label":"ACTS_IN","name":"Mare","type":"Role","_key":"94169","_from":"55450","_to":"55446"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"94168","_from":"55449","_to":"55446"} +{"$label":"ACTS_IN","name":"Miquel","type":"Role","_key":"94167","_from":"55448","_to":"55446"} +{"$label":"ACTS_IN","name":"Tete","type":"Role","_key":"94164","_from":"55447","_to":"55446"} +{"$label":"ACTS_IN","name":"Judge","type":"Role","_key":"94187","_from":"55464","_to":"55461"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"94185","_from":"55463","_to":"55461"} +{"$label":"DIRECTED","_key":"94181","_from":"55462","_to":"55461"} +{"$label":"DIRECTED","_key":"94191","_from":"55467","_to":"55465"} +{"$label":"DIRECTED","_key":"94190","_from":"55466","_to":"55465"} +{"$label":"DIRECTED","_key":"94392","_from":"55466","_to":"55580"} +{"$label":"ACTS_IN","name":"Goofy (voice)","type":"Role","_key":"94195","_from":"55470","_to":"55468"} +{"$label":"ACTS_IN","name":"Mickey Mouse (voice)","type":"Role","_key":"94193","_from":"55469","_to":"55468"} +{"$label":"ACTS_IN","name":"Mickey Mouse","type":"Role","_key":"109829","_from":"55469","_to":"64882"} +{"$label":"ACTS_IN","name":"Mickey Mouse","type":"Role","_key":"101863","_from":"55469","_to":"59955"} +{"$label":"ACTS_IN","name":"Goofy Goof (voice)","type":"Role","_key":"105916","_from":"55470","_to":"62360"} +{"$label":"ACTS_IN","name":"Goofy (voice)","type":"Role","_key":"105304","_from":"55470","_to":"61968"} +{"$label":"DIRECTED","_key":"94211","_from":"55477","_to":"55472"} +{"$label":"ACTS_IN","name":"Mr. Noonan","type":"Role","_key":"94210","_from":"55476","_to":"55472"} +{"$label":"ACTS_IN","name":"Mrs. Monaghan","type":"Role","_key":"94209","_from":"55475","_to":"55472"} +{"$label":"ACTS_IN","name":"Cal Grainger","type":"Role","_key":"94202","_from":"55474","_to":"55472"} +{"$label":"ACTS_IN","name":"Jack Grainger","type":"Role","_key":"94198","_from":"55473","_to":"55472"} +{"$label":"DIRECTED","_key":"94218","_from":"55484","_to":"55478"} +{"$label":"DIRECTED","_key":"94217","_from":"55483","_to":"55478"} +{"$label":"ACTS_IN","name":"Santa Claus \/ King Moonracer","type":"Role","_key":"94216","_from":"55482","_to":"55478"} +{"$label":"ACTS_IN","name":"Yukon Cornelius","type":"Role","_key":"94215","_from":"55481","_to":"55478"} +{"$label":"ACTS_IN","name":"Hermey","type":"Role","_key":"94214","_from":"55480","_to":"55478"} +{"$label":"ACTS_IN","name":"Rudolph","type":"Role","_key":"94213","_from":"55479","_to":"55478"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"94223","_from":"55489","_to":"55485"} +{"$label":"ACTS_IN","name":"El Diablo","type":"Role","_key":"94222","_from":"55488","_to":"55485"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"94221","_from":"55487","_to":"55485"} +{"$label":"ACTS_IN","name":"Santa Claus","type":"Role","_key":"94220","_from":"55486","_to":"55485"} +{"$label":"ACTS_IN","name":"Delia","type":"Role","_key":"94236","_from":"55496","_to":"55491"} +{"$label":"ACTS_IN","name":"Fred Hale","type":"Role","_key":"94235","_from":"55495","_to":"55491"} +{"$label":"ACTS_IN","name":"Colleoni","type":"Role","_key":"94234","_from":"55494","_to":"55491"} +{"$label":"ACTS_IN","name":"Rose Brown","type":"Role","_key":"94228","_from":"55493","_to":"55491"} +{"$label":"DIRECTED","_key":"94226","_from":"55492","_to":"55491"} +{"$label":"ACTS_IN","name":"Mighty Joe","type":"Role","_key":"94246","_from":"55504","_to":"55498"} +{"$label":"ACTS_IN","name":"Flag","type":"Role","_key":"94244","_from":"55503","_to":"55498"} +{"$label":"ACTS_IN","name":"Leonid's Aide","type":"Role","_key":"94243","_from":"55502","_to":"55498"} +{"$label":"ACTS_IN","name":"Malcom Manville","type":"Role","_key":"94242","_from":"55501","_to":"55498"} +{"$label":"ACTS_IN","name":"Valentina Vasilev","type":"Role","_key":"94240","_from":"55500","_to":"55498"} +{"$label":"DIRECTED","_key":"94237","_from":"55499","_to":"55498"} +{"$label":"DIRECTED","_key":"94248","_from":"55506","_to":"55505"} +{"$label":"ACTS_IN","name":"Maria (voice: English version)","type":"Role","_key":"94266","_from":"55514","_to":"55509"} +{"$label":"ACTS_IN","name":"Maria (voice)","type":"Role","_key":"94265","_from":"55513","_to":"55509"} +{"$label":"ACTS_IN","name":"Vexille (voice)","type":"Role","_key":"94263","_from":"55512","_to":"55509"} +{"$label":"ACTS_IN","name":"Lt. Cdr. Vexille Serra (voice: English version)","type":"Role","_key":"94262","_from":"55511","_to":"55509"} +{"$label":"DIRECTED","_key":"94261","_from":"55510","_to":"55509"} +{"$label":"DIRECTED","_key":"120252","_from":"55510","_to":"70616"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102568","_from":"55512","_to":"60342"} +{"$label":"ACTS_IN","name":"Lady Death \/ Hope","type":"Role","_key":"108173","_from":"55514","_to":"63930"} +{"$label":"ACTS_IN","name":"Aysun","type":"Role","_key":"94274","_from":"55520","_to":"55515"} +{"$label":"ACTS_IN","name":"Hanife","type":"Role","_key":"94272","_from":"55519","_to":"55515"} +{"$label":"ACTS_IN","name":"Sadik","type":"Role","_key":"94271","_from":"55518","_to":"55515"} +{"$label":"ACTS_IN","name":"H\u00fcseyin","type":"Role","_key":"94270","_from":"55517","_to":"55515"} +{"$label":"DIRECTED","_key":"94269","_from":"55516","_to":"55515"} +{"$label":"ACTS_IN","name":"Ogre Baby (voice)","type":"Role","_key":"94289","_from":"55527","_to":"55521"} +{"$label":"ACTS_IN","name":"Ogre Baby (voice)","type":"Role","_key":"94288","_from":"55526","_to":"55521"} +{"$label":"ACTS_IN","name":"Ogre Baby (voice)","type":"Role","_key":"94287","_from":"55525","_to":"55521"} +{"$label":"ACTS_IN","name":"Bookstore Clerk (voice)","type":"Role","_key":"94286","_from":"55524","_to":"55521"} +{"$label":"ACTS_IN","name":"Wolf (voice)","type":"Role","_key":"94285","_from":"55523","_to":"55521"} +{"$label":"ACTS_IN","name":"Suzie Cookie (voice)","type":"Role","_key":"94281","_from":"55522","_to":"55521"} +{"$label":"DIRECTED","_key":"94290","_from":"55530","_to":"55529"} +{"$label":"ACTS_IN","name":"Mrs. Claus","type":"Role","_key":"94292","_from":"55532","_to":"55531"} +{"$label":"ACTS_IN","name":"Hana","type":"Role","_key":"94300","_from":"55535","_to":"55533"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"94299","_from":"55534","_to":"55533"} +{"$label":"ACTS_IN","name":"Miss Jessica","type":"Role","_key":"94308","_from":"55538","_to":"55537"} +{"$label":"ACTS_IN","name":"Naniji","type":"Role","_key":"94321","_from":"55544","_to":"55539"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"94319","_from":"55543","_to":"55539"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"94317","_from":"55542","_to":"55539"} +{"$label":"ACTS_IN","name":"Ajay","type":"Role","_key":"94316","_from":"55541","_to":"55539"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"94314","_from":"55540","_to":"55539"} +{"$label":"ACTS_IN","name":"Rosie Gomez","type":"Role","_key":"97921","_from":"55540","_to":"57668"} +{"$label":"ACTS_IN","name":"Yuk Ling","type":"Role","_key":"94327","_from":"55546","_to":"55545"} +{"$label":"ACTS_IN","name":"Jacek","type":"Role","_key":"94334","_from":"55550","_to":"55547"} +{"$label":"ACTS_IN","name":"Skszp","type":"Role","_key":"94333","_from":"55549","_to":"55547"} +{"$label":"ACTS_IN","name":"Schlatko","type":"Role","_key":"94330","_from":"55548","_to":"55547"} +{"$label":"DIRECTED","_key":"94336","_from":"55552","_to":"55551"} +{"$label":"DIRECTED","_key":"94344","_from":"55557","_to":"55555"} +{"$label":"ACTS_IN","name":"Soo-eun","type":"Role","_key":"94343","_from":"55556","_to":"55555"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"94352","_from":"55561","_to":"55558"} +{"$label":"ACTS_IN","name":"Dewayne","type":"Role","_key":"94349","_from":"55560","_to":"55558"} +{"$label":"ACTS_IN","name":"Antoinette","type":"Role","_key":"94348","_from":"55559","_to":"55558"} +{"$label":"ACTS_IN","name":"Music Store Salesman","type":"Role","_key":"116123","_from":"55561","_to":"68369"} +{"$label":"ACTS_IN","name":"Aisha","type":"Role","_key":"94359","_from":"55567","_to":"55562"} +{"$label":"ACTS_IN","name":"Baby Boy","type":"Role","_key":"94358","_from":"55566","_to":"55562"} +{"$label":"ACTS_IN","name":"Biggis (El Plaga)","type":"Role","_key":"94357","_from":"55565","_to":"55562"} +{"$label":"ACTS_IN","name":"El Pollo Loco","type":"Role","_key":"94355","_from":"55564","_to":"55562"} +{"$label":"ACTS_IN","name":"Beans","type":"Role","_key":"94354","_from":"55563","_to":"55562"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"94377","_from":"55572","_to":"55568"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"94375","_from":"55571","_to":"55568"} +{"$label":"ACTS_IN","name":"Monster","type":"Role","_key":"94374","_from":"55570","_to":"55568"} +{"$label":"ACTS_IN","name":"Tec","type":"Role","_key":"94368","_from":"55569","_to":"55568"} +{"$label":"ACTS_IN","name":"Celene","type":"Role","_key":"94380","_from":"55574","_to":"55573"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"116305","_from":"55574","_to":"68469"} +{"$label":"ACTS_IN","name":"Boodikka (voice)","type":"Role","_key":"112268","_from":"55574","_to":"66293"} +{"$label":"ACTS_IN","name":"Maintenance computer","type":"Role","_key":"94383","_from":"55577","_to":"55575"} +{"$label":"ACTS_IN","name":"BURN-E","type":"Role","_key":"94382","_from":"55576","_to":"55575"} +{"$label":"DIRECTED","_key":"94381","_from":"55576","_to":"55575"} +{"$label":"DIRECTED","_key":"94387","_from":"55579","_to":"55578"} +{"$label":"ACTS_IN","name":"Darzee the Tailorbird (voice)","type":"Role","_key":"94398","_from":"55582","_to":"55580"} +{"$label":"ACTS_IN","name":"Rikki-Tikki-Tavi the Mongoose (voice)","type":"Role","_key":"94397","_from":"55581","_to":"55580"} +{"$label":"DIRECTED","_key":"94407","_from":"55585","_to":"55583"} +{"$label":"ACTS_IN","name":"Charles Billingsley","type":"Role","_key":"94405","_from":"55584","_to":"55583"} +{"$label":"ACTS_IN","name":"Rob McLaughlin","type":"Role","_key":"98106","_from":"55584","_to":"57764"} +{"$label":"DIRECTED","_key":"100924","_from":"55585","_to":"59495"} +{"$label":"DIRECTED","_key":"94418","_from":"55589","_to":"55586"} +{"$label":"DIRECTED","_key":"94417","_from":"55588","_to":"55586"} +{"$label":"DIRECTED","_key":"94416","_from":"55587","_to":"55586"} +{"$label":"DIRECTED","_key":"109070","_from":"55588","_to":"64447"} +{"$label":"DIRECTED","_key":"109069","_from":"55589","_to":"64447"} +{"$label":"DIRECTED","_key":"102315","_from":"55589","_to":"60199"} +{"$label":"ACTS_IN","name":"Chas Guldemond","type":"Role","_key":"94435","_from":"55607","_to":"55590"} +{"$label":"ACTS_IN","name":"Drew Fuller","type":"Role","_key":"94434","_from":"55606","_to":"55590"} +{"$label":"ACTS_IN","name":"Mitch Reed","type":"Role","_key":"94433","_from":"55605","_to":"55590"} +{"$label":"ACTS_IN","name":"Marco Grilc","type":"Role","_key":"94432","_from":"55604","_to":"55590"} +{"$label":"ACTS_IN","name":"Kazuhiro Kokubo","type":"Role","_key":"94431","_from":"55603","_to":"55590"} +{"$label":"ACTS_IN","name":"Juuso Laivisto","type":"Role","_key":"94430","_from":"55602","_to":"55590"} +{"$label":"ACTS_IN","name":"Frederik Kalbermatten","type":"Role","_key":"94429","_from":"55601","_to":"55590"} +{"$label":"ACTS_IN","name":"Matt Hammer","type":"Role","_key":"94428","_from":"55600","_to":"55590"} +{"$label":"ACTS_IN","name":"Eric Jackson","type":"Role","_key":"94427","_from":"55599","_to":"55590"} +{"$label":"ACTS_IN","name":"Gabe Taylor","type":"Role","_key":"94426","_from":"55598","_to":"55590"} +{"$label":"ACTS_IN","name":"Jonas Emery","type":"Role","_key":"94425","_from":"55597","_to":"55590"} +{"$label":"ACTS_IN","name":"Mark Landvik","type":"Role","_key":"94424","_from":"55596","_to":"55590"} +{"$label":"ACTS_IN","name":"John Jackson","type":"Role","_key":"94423","_from":"55595","_to":"55590"} +{"$label":"ACTS_IN","name":"Mads Jonsson","type":"Role","_key":"94422","_from":"55594","_to":"55590"} +{"$label":"ACTS_IN","name":"Jeremy Jones","type":"Role","_key":"94421","_from":"55593","_to":"55590"} +{"$label":"DIRECTED","_key":"94420","_from":"55592","_to":"55590"} +{"$label":"DIRECTED","_key":"94419","_from":"55591","_to":"55590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103250","_from":"55593","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112371","_from":"55595","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112374","_from":"55596","_to":"66345"} +{"$label":"ACTS_IN","name":"Jason Stevens","type":"Role","_key":"101168","_from":"55606","_to":"59602"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"94450","_from":"55617","_to":"55608"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"94449","_from":"55616","_to":"55608"} +{"$label":"ACTS_IN","name":"Mrs. Jones","type":"Role","_key":"94448","_from":"55615","_to":"55608"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"94446","_from":"55614","_to":"55608"} +{"$label":"ACTS_IN","name":"Jesus Freak","type":"Role","_key":"94445","_from":"55613","_to":"55608"} +{"$label":"ACTS_IN","name":"Les (Origami Presenter)","type":"Role","_key":"94444","_from":"55612","_to":"55608"} +{"$label":"ACTS_IN","name":"Kiwi Bob","type":"Role","_key":"94443","_from":"55611","_to":"55608"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"94441","_from":"55610","_to":"55608"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"94440","_from":"55609","_to":"55608"} +{"$label":"ACTS_IN","name":"Brenden James Abbott","type":"Role","_key":"96973","_from":"55609","_to":"57043"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"94458","_from":"55623","_to":"55618"} +{"$label":"ACTS_IN","name":"Tammi","type":"Role","_key":"94456","_from":"55622","_to":"55618"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"94454","_from":"55621","_to":"55618"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"94453","_from":"55620","_to":"55618"} +{"$label":"DIRECTED","_key":"94452","_from":"55619","_to":"55618"} +{"$label":"DIRECTED","_key":"94460","_from":"55626","_to":"55625"} +{"$label":"DIRECTED","_key":"94462","_from":"55631","_to":"55629"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94461","_from":"55630","_to":"55629"} +{"$label":"ACTS_IN","name":"Antwone Fisher Age 7","type":"Role","_key":"94464","_from":"55633","_to":"55632"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"94477","_from":"55642","_to":"55634"} +{"$label":"ACTS_IN","name":"Tong","type":"Role","_key":"94476","_from":"55641","_to":"55634"} +{"$label":"ACTS_IN","name":"Tay","type":"Role","_key":"94475","_from":"55640","_to":"55634"} +{"$label":"ACTS_IN","name":"Mik","type":"Role","_key":"94474","_from":"55639","_to":"55634"} +{"$label":"ACTS_IN","name":"Surachai","type":"Role","_key":"94473","_from":"55638","_to":"55634"} +{"$label":"ACTS_IN","name":"Tawng","type":"Role","_key":"94472","_from":"55637","_to":"55634"} +{"$label":"ACTS_IN","name":"Pusit","type":"Role","_key":"94471","_from":"55636","_to":"55634"} +{"$label":"DIRECTED","_key":"94470","_from":"55635","_to":"55634"} +{"$label":"ACTS_IN","name":"Rajasena Lord","type":"Role","_key":"108861","_from":"55638","_to":"64339"} +{"$label":"ACTS_IN","name":"Natre","type":"Role","_key":"111158","_from":"55641","_to":"65648"} +{"$label":"DIRECTED","_key":"94492","_from":"55652","_to":"55650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94491","_from":"55651","_to":"55650"} +{"$label":"DIRECTED","_key":"103131","_from":"55652","_to":"60662"} +{"$label":"ACTS_IN","name":"Swissguard","type":"Role","_key":"94554","_from":"55698","_to":"55655"} +{"$label":"ACTS_IN","name":"Carabinieri #2","type":"Role","_key":"94553","_from":"55697","_to":"55655"} +{"$label":"ACTS_IN","name":"Arab Reporter","type":"Role","_key":"94552","_from":"55696","_to":"55655"} +{"$label":"ACTS_IN","name":"Sister Christy","type":"Role","_key":"94551","_from":"55695","_to":"55655"} +{"$label":"ACTS_IN","name":"Matthew - Choir Boy","type":"Role","_key":"94550","_from":"55694","_to":"55655"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"94549","_from":"55693","_to":"55655"} +{"$label":"ACTS_IN","name":"Press Photographer","type":"Role","_key":"94548","_from":"55692","_to":"55655"} +{"$label":"ACTS_IN","name":"Stem Cell Protestor #2","type":"Role","_key":"94547","_from":"55691","_to":"55655"} +{"$label":"ACTS_IN","name":"Vatican Choir Singer","type":"Role","_key":"94546","_from":"55690","_to":"55655"} +{"$label":"ACTS_IN","name":"Swiss Guardsman #3","type":"Role","_key":"94545","_from":"55689","_to":"55655"} +{"$label":"ACTS_IN","name":"Vatican Police Officer","type":"Role","_key":"94544","_from":"55688","_to":"55655"} +{"$label":"ACTS_IN","name":"Swiss Guard Blue","type":"Role","_key":"94543","_from":"55687","_to":"55655"} +{"$label":"ACTS_IN","name":"Dignitary","type":"Role","_key":"94542","_from":"55686","_to":"55655"} +{"$label":"ACTS_IN","name":"Fireman #2","type":"Role","_key":"94541","_from":"55685","_to":"55655"} +{"$label":"ACTS_IN","name":"Carabinieri Lieutenant","type":"Role","_key":"94540","_from":"55684","_to":"55655"} +{"$label":"ACTS_IN","name":"Suspicious Man","type":"Role","_key":"94539","_from":"55683","_to":"55655"} +{"$label":"ACTS_IN","name":"South American Reporter","type":"Role","_key":"94538","_from":"55682","_to":"55655"} +{"$label":"ACTS_IN","name":"Swiss Guardsman #1","type":"Role","_key":"94537","_from":"55681","_to":"55655"} +{"$label":"ACTS_IN","name":"Swiss Guardsman #2","type":"Role","_key":"94536","_from":"55680","_to":"55655"} +{"$label":"ACTS_IN","name":"Fireman","type":"Role","_key":"94535","_from":"55679","_to":"55655"} +{"$label":"ACTS_IN","name":"Vatican Worker","type":"Role","_key":"94534","_from":"55678","_to":"55655"} +{"$label":"ACTS_IN","name":"Cardinal Ebner","type":"Role","_key":"94533","_from":"55677","_to":"55655"} +{"$label":"ACTS_IN","name":"Patriarch","type":"Role","_key":"94532","_from":"55676","_to":"55655"} +{"$label":"ACTS_IN","name":"Red Dot Nun","type":"Role","_key":"94531","_from":"55675","_to":"55655"} +{"$label":"ACTS_IN","name":"Choir Member #1","type":"Role","_key":"94530","_from":"55674","_to":"55655"} +{"$label":"ACTS_IN","name":"Polish Reporter","type":"Role","_key":"94529","_from":"55673","_to":"55655"} +{"$label":"ACTS_IN","name":"Cardinal Strauss","type":"Role","_key":"94528","_from":"55672","_to":"55655"} +{"$label":"ACTS_IN","name":"Vatican Priest","type":"Role","_key":"94527","_from":"55671","_to":"55655"} +{"$label":"ACTS_IN","name":"Italian Reporter","type":"Role","_key":"94526","_from":"55670","_to":"55655"} +{"$label":"ACTS_IN","name":"British Camerman","type":"Role","_key":"94525","_from":"55669","_to":"55655"} +{"$label":"ACTS_IN","name":"Ukrainian General","type":"Role","_key":"94524","_from":"55668","_to":"55655"} +{"$label":"ACTS_IN","name":"British Reporter","type":"Role","_key":"94523","_from":"55667","_to":"55655"} +{"$label":"ACTS_IN","name":"Chinese Reporter","type":"Role","_key":"94522","_from":"55666","_to":"55655"} +{"$label":"ACTS_IN","name":"Carabinieri Chief of Police","type":"Role","_key":"94521","_from":"55665","_to":"55655"} +{"$label":"ACTS_IN","name":"Young Girl In Square","type":"Role","_key":"94520","_from":"55664","_to":"55655"} +{"$label":"ACTS_IN","name":"Australian Reporter","type":"Role","_key":"94519","_from":"55663","_to":"55655"} +{"$label":"ACTS_IN","name":"CERN lead scientist","type":"Role","_key":"94518","_from":"55662","_to":"55655"} +{"$label":"ACTS_IN","name":"Cardinal","type":"Role","_key":"94517","_from":"55661","_to":"55655"} +{"$label":"ACTS_IN","name":"Carabinieri","type":"Role","_key":"94516","_from":"55660","_to":"55655"} +{"$label":"ACTS_IN","name":"BBC Reporter","type":"Role","_key":"94509","_from":"55659","_to":"55655"} +{"$label":"ACTS_IN","name":"Vatican Police","type":"Role","_key":"94507","_from":"55658","_to":"55655"} +{"$label":"ACTS_IN","name":"Father Simeon","type":"Role","_key":"94506","_from":"55657","_to":"55655"} +{"$label":"ACTS_IN","name":"Vincenzi","type":"Role","_key":"94504","_from":"55656","_to":"55655"} +{"$label":"ACTS_IN","name":"Berardelli","type":"Role","_key":"104618","_from":"55657","_to":"61542"} +{"$label":"ACTS_IN","name":"Head of Marty","type":"Role","_key":"97959","_from":"55662","_to":"57685"} +{"$label":"ACTS_IN","name":"Vito Ubrissio","type":"Role","_key":"100208","_from":"55665","_to":"59100"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"108063","_from":"55670","_to":"63815"} +{"$label":"DIRECTED","_key":"94568","_from":"55713","_to":"55699"} +{"$label":"DIRECTED","_key":"94567","_from":"55712","_to":"55699"} +{"$label":"ACTS_IN","name":"Peter Line","type":"Role","_key":"94566","_from":"55711","_to":"55699"} +{"$label":"ACTS_IN","name":"JP Walker","type":"Role","_key":"94565","_from":"55710","_to":"55699"} +{"$label":"ACTS_IN","name":"Eddie Wall","type":"Role","_key":"94564","_from":"55709","_to":"55699"} +{"$label":"ACTS_IN","name":"Lauri Heiskari","type":"Role","_key":"94563","_from":"55708","_to":"55699"} +{"$label":"ACTS_IN","name":"Jake Welch","type":"Role","_key":"94562","_from":"55707","_to":"55699"} +{"$label":"ACTS_IN","name":"Travis Kennedy","type":"Role","_key":"94561","_from":"55706","_to":"55699"} +{"$label":"ACTS_IN","name":"Joni Malmi","type":"Role","_key":"94560","_from":"55705","_to":"55699"} +{"$label":"ACTS_IN","name":"Jake Blauvelt","type":"Role","_key":"94559","_from":"55704","_to":"55699"} +{"$label":"ACTS_IN","name":"Stevie Bell","type":"Role","_key":"94558","_from":"55703","_to":"55699"} +{"$label":"ACTS_IN","name":"Pat Moore","type":"Role","_key":"94557","_from":"55702","_to":"55699"} +{"$label":"ACTS_IN","name":"Devun Walsh","type":"Role","_key":"94556","_from":"55701","_to":"55699"} +{"$label":"ACTS_IN","name":"Iikka Backstrom","type":"Role","_key":"94555","_from":"55700","_to":"55699"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112367","_from":"55704","_to":"66345"} +{"$label":"ACTS_IN","name":"Joni Malmi","type":"Role","_key":"113295","_from":"55705","_to":"66740"} +{"$label":"DIRECTED","_key":"94569","_from":"55716","_to":"55715"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94583","_from":"55731","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94582","_from":"55730","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94581","_from":"55729","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94580","_from":"55728","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94579","_from":"55727","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94578","_from":"55726","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94577","_from":"55725","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94576","_from":"55724","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94575","_from":"55723","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94574","_from":"55722","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94573","_from":"55721","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94572","_from":"55720","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94571","_from":"55719","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"94570","_from":"55718","_to":"55717"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112375","_from":"55718","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103233","_from":"55718","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112376","_from":"55719","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103234","_from":"55720","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103240","_from":"55722","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103245","_from":"55723","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103237","_from":"55725","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103243","_from":"55730","_to":"60726"} +{"$label":"ACTS_IN","name":"Agent Mack","type":"Role","_key":"94598","_from":"55737","_to":"55732"} +{"$label":"ACTS_IN","name":"Pop Father","type":"Role","_key":"94597","_from":"55736","_to":"55732"} +{"$label":"ACTS_IN","name":"Young Nick","type":"Role","_key":"94594","_from":"55735","_to":"55732"} +{"$label":"ACTS_IN","name":"...","type":"Role","_key":"94593","_from":"55734","_to":"55732"} +{"$label":"ACTS_IN","name":"Teresa Stowe","type":"Role","_key":"94589","_from":"55733","_to":"55732"} +{"$label":"ACTS_IN","name":"Mrs. Eden","type":"Role","_key":"94611","_from":"55746","_to":"55738"} +{"$label":"ACTS_IN","name":"State Police Sergeant Bill Ames (as Will White)","type":"Role","_key":"94610","_from":"55745","_to":"55738"} +{"$label":"ACTS_IN","name":"Dr. Derwin Dodge","type":"Role","_key":"94609","_from":"55744","_to":"55738"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"94608","_from":"55743","_to":"55738"} +{"$label":"ACTS_IN","name":"Dr. Henry Giraud","type":"Role","_key":"94607","_from":"55742","_to":"55738"} +{"$label":"ACTS_IN","name":"Valerie Daniels","type":"Role","_key":"94606","_from":"55741","_to":"55738"} +{"$label":"ACTS_IN","name":"Tom Masterson","type":"Role","_key":"94605","_from":"55740","_to":"55738"} +{"$label":"ACTS_IN","name":"Joyce Phillips","type":"Role","_key":"94602","_from":"55739","_to":"55738"} +{"$label":"ACTS_IN","name":"Ellen Fields","type":"Role","_key":"120171","_from":"55739","_to":"70580"} +{"$label":"ACTS_IN","name":"Jean Featherstone","type":"Role","_key":"120070","_from":"55739","_to":"70511"} +{"$label":"ACTS_IN","name":"Martin Arlington","type":"Role","_key":"118409","_from":"55742","_to":"69607"} +{"$label":"ACTS_IN","name":"Melissa P.","type":"Role","_key":"94622","_from":"55751","_to":"55749"} +{"$label":"DIRECTED","_key":"94621","_from":"55750","_to":"55749"} +{"$label":"ACTS_IN","name":"Mar\u00eda","type":"Role","_key":"106456","_from":"55751","_to":"62716"} +{"$label":"ACTS_IN","name":"Lucrecia Borgia","type":"Role","_key":"106437","_from":"55751","_to":"62703"} +{"$label":"ACTS_IN","name":"Bea","type":"Role","_key":"101325","_from":"55751","_to":"59649"} +{"$label":"DIRECTED","_key":"94625","_from":"55756","_to":"55755"} +{"$label":"ACTS_IN","name":"Valentine Carmina","type":"Role","_key":"94643","_from":"55762","_to":"55757"} +{"$label":"ACTS_IN","name":"Mr. Dantzler","type":"Role","_key":"94642","_from":"55761","_to":"55757"} +{"$label":"ACTS_IN","name":"Dorothy Platt","type":"Role","_key":"94640","_from":"55760","_to":"55757"} +{"$label":"ACTS_IN","name":"Leon Bolden","type":"Role","_key":"94637","_from":"55759","_to":"55757"} +{"$label":"ACTS_IN","name":"Jim Hickam","type":"Role","_key":"94636","_from":"55758","_to":"55757"} +{"$label":"ACTS_IN","name":"Officer Clayton","type":"Role","_key":"107245","_from":"55761","_to":"63247"} +{"$label":"DIRECTED","_key":"94675","_from":"55780","_to":"55765"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"94674","_from":"55779","_to":"55765"} +{"$label":"ACTS_IN","name":"Mountie","type":"Role","_key":"94672","_from":"55778","_to":"55765"} +{"$label":"ACTS_IN","name":"Major Walsh","type":"Role","_key":"94671","_from":"55777","_to":"55765"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"94670","_from":"55776","_to":"55765"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"94669","_from":"55775","_to":"55765"} +{"$label":"ACTS_IN","name":"Bull Head's Wife","type":"Role","_key":"94667","_from":"55774","_to":"55765"} +{"$label":"ACTS_IN","name":"Bull Head","type":"Role","_key":"94666","_from":"55773","_to":"55765"} +{"$label":"ACTS_IN","name":"Scarlet Whirlwind","type":"Role","_key":"94665","_from":"55772","_to":"55765"} +{"$label":"ACTS_IN","name":"Chasing Crane","type":"Role","_key":"94662","_from":"55771","_to":"55765"} +{"$label":"ACTS_IN","name":"Col. Nelson Miles","type":"Role","_key":"94658","_from":"55770","_to":"55765"} +{"$label":"ACTS_IN","name":"Bishop Whipple","type":"Role","_key":"94657","_from":"55769","_to":"55765"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"94656","_from":"55768","_to":"55765"} +{"$label":"ACTS_IN","name":"Uncle","type":"Role","_key":"94651","_from":"55767","_to":"55765"} +{"$label":"ACTS_IN","name":"Ohiyesa \/ Young Charles","type":"Role","_key":"94649","_from":"55766","_to":"55765"} +{"$label":"DIRECTED","_key":"117942","_from":"55780","_to":"69324"} +{"$label":"DIRECTED","_key":"102008","_from":"55780","_to":"60025"} +{"$label":"DIRECTED","_key":"94676","_from":"55782","_to":"55781"} +{"$label":"ACTS_IN","name":"Nero's Wife","type":"Role","_key":"94698","_from":"55788","_to":"55786"} +{"$label":"ACTS_IN","name":"Spock","type":"Role","_key":"94684","_from":"55787","_to":"55786"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"94719","_from":"55791","_to":"55790"} +{"$label":"DIRECTED","_key":"94724","_from":"55794","_to":"55793"} +{"$label":"DIRECTED","_key":"94737","_from":"55798","_to":"55797"} +{"$label":"ACTS_IN","name":"Suzie Simmons","type":"Role","_key":"94740","_from":"55800","_to":"55799"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"94763","_from":"55815","_to":"55802"} +{"$label":"ACTS_IN","name":"Woman in Swamp","type":"Role","_key":"94762","_from":"55814","_to":"55802"} +{"$label":"ACTS_IN","name":"Black Eyed Soldier","type":"Role","_key":"94760","_from":"55813","_to":"55802"} +{"$label":"ACTS_IN","name":"Molokh","type":"Role","_key":"94759","_from":"55812","_to":"55802"} +{"$label":"ACTS_IN","name":"Gudean Emissary","type":"Role","_key":"94758","_from":"55811","_to":"55802"} +{"$label":"ACTS_IN","name":"King Hammurabi","type":"Role","_key":"94757","_from":"55810","_to":"55802"} +{"$label":"ACTS_IN","name":"General Abalgamash","type":"Role","_key":"94756","_from":"55809","_to":"55802"} +{"$label":"ACTS_IN","name":"Young Mathayus","type":"Role","_key":"94755","_from":"55808","_to":"55802"} +{"$label":"ACTS_IN","name":"Young Noah","type":"Role","_key":"94754","_from":"55807","_to":"55802"} +{"$label":"ACTS_IN","name":"Jesup","type":"Role","_key":"94753","_from":"55806","_to":"55802"} +{"$label":"ACTS_IN","name":"Ari","type":"Role","_key":"94748","_from":"55805","_to":"55802"} +{"$label":"ACTS_IN","name":"Layla (as Karen David)","type":"Role","_key":"94747","_from":"55804","_to":"55802"} +{"$label":"ACTS_IN","name":"Mathayus","type":"Role","_key":"94745","_from":"55803","_to":"55802"} +{"$label":"ACTS_IN","name":"Penn","type":"Role","_key":"103761","_from":"55803","_to":"61022"} +{"$label":"ACTS_IN","name":"Spa Attendant","type":"Role","_key":"121408","_from":"55804","_to":"71336"} +{"$label":"ACTS_IN","name":"Liessa","type":"Role","_key":"95124","_from":"55804","_to":"55975"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97766","_from":"55812","_to":"57562"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"94776","_from":"55822","_to":"55817"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"94774","_from":"55821","_to":"55817"} +{"$label":"ACTS_IN","name":"Nicole Emerson","type":"Role","_key":"94770","_from":"55820","_to":"55817"} +{"$label":"ACTS_IN","name":"Shane Powers","type":"Role","_key":"94769","_from":"55819","_to":"55817"} +{"$label":"ACTS_IN","name":"Chris Emerson","type":"Role","_key":"94768","_from":"55818","_to":"55817"} +{"$label":"ACTS_IN","name":"Kimba","type":"Role","_key":"117720","_from":"55822","_to":"69199"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"94787","_from":"55825","_to":"55823"} +{"$label":"ACTS_IN","name":"Jamaal Jenkins","type":"Role","_key":"94786","_from":"55824","_to":"55823"} +{"$label":"DIRECTED","_key":"94800","_from":"55831","_to":"55826"} +{"$label":"ACTS_IN","name":"Bishop Bengt","type":"Role","_key":"94795","_from":"55830","_to":"55826"} +{"$label":"ACTS_IN","name":"Eskil Magnusson","type":"Role","_key":"94794","_from":"55829","_to":"55826"} +{"$label":"ACTS_IN","name":"Sigrid","type":"Role","_key":"94793","_from":"55828","_to":"55826"} +{"$label":"ACTS_IN","name":"Arn Magnusson","type":"Role","_key":"94789","_from":"55827","_to":"55826"} +{"$label":"ACTS_IN","name":"Arn Magnusson","type":"Role","_key":"95007","_from":"55827","_to":"55937"} +{"$label":"ACTS_IN","name":"Eskil Magnusson","type":"Role","_key":"95008","_from":"55829","_to":"55937"} +{"$label":"ACTS_IN","name":"Henrik Vanger","type":"Role","_key":"104549","_from":"55830","_to":"61500"} +{"$label":"DIRECTED","_key":"95012","_from":"55831","_to":"55937"} +{"$label":"ACTS_IN","name":"Klaudia","type":"Role","_key":"94809","_from":"55836","_to":"55832"} +{"$label":"ACTS_IN","name":"Farid","type":"Role","_key":"94808","_from":"55835","_to":"55832"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"94806","_from":"55834","_to":"55832"} +{"$label":"ACTS_IN","name":"Yasmine","type":"Role","_key":"94802","_from":"55833","_to":"55832"} +{"$label":"DIRECTED","_key":"94815","_from":"55840","_to":"55839"} +{"$label":"ACTS_IN","name":"Buck Wild","type":"Role","_key":"94839","_from":"55852","_to":"55842"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"94838","_from":"55851","_to":"55842"} +{"$label":"ACTS_IN","name":"Dorothy Miles","type":"Role","_key":"94837","_from":"55850","_to":"55842"} +{"$label":"ACTS_IN","name":"Mr. Wade","type":"Role","_key":"94835","_from":"55849","_to":"55842"} +{"$label":"ACTS_IN","name":"Trey","type":"Role","_key":"94834","_from":"55848","_to":"55842"} +{"$label":"ACTS_IN","name":"Big Rob","type":"Role","_key":"94833","_from":"55847","_to":"55842"} +{"$label":"ACTS_IN","name":"Diedre","type":"Role","_key":"94832","_from":"55846","_to":"55842"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"94831","_from":"55845","_to":"55842"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"94830","_from":"55844","_to":"55842"} +{"$label":"ACTS_IN","name":"Sean Taylor","type":"Role","_key":"94828","_from":"55843","_to":"55842"} +{"$label":"ACTS_IN","name":"Marcus Howston","type":"Role","_key":"102615","_from":"55843","_to":"60376"} +{"$label":"ACTS_IN","name":"Teddy","type":"Role","_key":"97778","_from":"55845","_to":"57579"} +{"$label":"ACTS_IN","name":"Maggie Swanson","type":"Role","_key":"94855","_from":"55855","_to":"55853"} +{"$label":"ACTS_IN","name":"Ranger Riggs","type":"Role","_key":"94851","_from":"55854","_to":"55853"} +{"$label":"DIRECTED","_key":"94870","_from":"55860","_to":"55857"} +{"$label":"ACTS_IN","name":"Naresta","type":"Role","_key":"94869","_from":"55859","_to":"55857"} +{"$label":"ACTS_IN","name":"Shawna","type":"Role","_key":"94865","_from":"55858","_to":"55857"} +{"$label":"ACTS_IN","name":"General Cortinas","type":"Role","_key":"94885","_from":"55866","_to":"55861"} +{"$label":"ACTS_IN","name":"Mariachi Guard","type":"Role","_key":"94884","_from":"55865","_to":"55861"} +{"$label":"ACTS_IN","name":"Henrietta Dukes","type":"Role","_key":"94882","_from":"55864","_to":"55861"} +{"$label":"ACTS_IN","name":"Abajo","type":"Role","_key":"94881","_from":"55863","_to":"55861"} +{"$label":"ACTS_IN","name":"Jean-Pierre Marsele","type":"Role","_key":"94879","_from":"55862","_to":"55861"} +{"$label":"DIRECTED","_key":"94891","_from":"55868","_to":"55867"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"94894","_from":"55871","_to":"55869"} +{"$label":"DIRECTED","_key":"94892","_from":"55870","_to":"55869"} +{"$label":"DIRECTED","_key":"112117","_from":"55870","_to":"66199"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94897","_from":"55873","_to":"55872"} +{"$label":"DIRECTED","_key":"94899","_from":"55875","_to":"55874"} +{"$label":"ACTS_IN","name":"Horace","type":"Role","_key":"94912","_from":"55884","_to":"55876"} +{"$label":"ACTS_IN","name":"E.J.","type":"Role","_key":"94911","_from":"55883","_to":"55876"} +{"$label":"ACTS_IN","name":"Patrick's Sister","type":"Role","_key":"94910","_from":"55882","_to":"55876"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"94905","_from":"55881","_to":"55876"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"94904","_from":"55880","_to":"55876"} +{"$label":"ACTS_IN","name":"Count Dracula","type":"Role","_key":"94903","_from":"55879","_to":"55876"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"94901","_from":"55878","_to":"55876"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"94900","_from":"55877","_to":"55876"} +{"$label":"DIRECTED","_key":"94931","_from":"55898","_to":"55885"} +{"$label":"ACTS_IN","name":"Mel (as Rachel Gleaves)","type":"Role","_key":"94930","_from":"55897","_to":"55885"} +{"$label":"ACTS_IN","name":"Nat","type":"Role","_key":"94929","_from":"55896","_to":"55885"} +{"$label":"ACTS_IN","name":"Reece","type":"Role","_key":"94928","_from":"55895","_to":"55885"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"94927","_from":"55894","_to":"55885"} +{"$label":"ACTS_IN","name":"Jon","type":"Role","_key":"94926","_from":"55893","_to":"55885"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"94925","_from":"55892","_to":"55885"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"94924","_from":"55891","_to":"55885"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"94923","_from":"55890","_to":"55885"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"94921","_from":"55889","_to":"55885"} +{"$label":"ACTS_IN","name":"Paige","type":"Role","_key":"94920","_from":"55888","_to":"55885"} +{"$label":"ACTS_IN","name":"Brett","type":"Role","_key":"94919","_from":"55887","_to":"55885"} +{"$label":"ACTS_IN","name":"Abi","type":"Role","_key":"94918","_from":"55886","_to":"55885"} +{"$label":"ACTS_IN","name":"Jessie's Boyfriend","type":"Role","_key":"96303","_from":"55895","_to":"56572"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"101920","_from":"55896","_to":"59982"} +{"$label":"ACTS_IN","name":"Rawhead Rex","type":"Role","_key":"94938","_from":"55905","_to":"55899"} +{"$label":"ACTS_IN","name":"Tom Garron","type":"Role","_key":"94937","_from":"55904","_to":"55899"} +{"$label":"ACTS_IN","name":"Declan O'Brien","type":"Role","_key":"94936","_from":"55903","_to":"55899"} +{"$label":"ACTS_IN","name":"Minty Hallenbeck","type":"Role","_key":"94935","_from":"55902","_to":"55899"} +{"$label":"ACTS_IN","name":"Reverend Coot","type":"Role","_key":"94934","_from":"55901","_to":"55899"} +{"$label":"DIRECTED","_key":"94932","_from":"55900","_to":"55899"} +{"$label":"DIRECTED","_key":"94946","_from":"55912","_to":"55906"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94945","_from":"55911","_to":"55906"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94943","_from":"55910","_to":"55906"} +{"$label":"ACTS_IN","name":"Jae-deok","type":"Role","_key":"94942","_from":"55909","_to":"55906"} +{"$label":"ACTS_IN","name":"Shi-yeong","type":"Role","_key":"94941","_from":"55908","_to":"55906"} +{"$label":"ACTS_IN","name":"Choi Ji-hwan","type":"Role","_key":"94939","_from":"55907","_to":"55906"} +{"$label":"ACTS_IN","name":"Pak Chun-Tong","type":"Role","_key":"94953","_from":"55919","_to":"55914"} +{"$label":"ACTS_IN","name":"Pray","type":"Role","_key":"94952","_from":"55918","_to":"55914"} +{"$label":"ACTS_IN","name":"Kao Pun","type":"Role","_key":"94951","_from":"55917","_to":"55914"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"94950","_from":"55916","_to":"55914"} +{"$label":"ACTS_IN","name":"Tsing Yi","type":"Role","_key":"94948","_from":"55915","_to":"55914"} +{"$label":"ACTS_IN","name":"Ching Wan","type":"Role","_key":"117572","_from":"55915","_to":"69124"} +{"$label":"ACTS_IN","name":"Chan Kan-Nam","type":"Role","_key":"117023","_from":"55915","_to":"68869"} +{"$label":"ACTS_IN","name":"Master Ko","type":"Role","_key":"117576","_from":"55919","_to":"69126"} +{"$label":"ACTS_IN","name":"Daisy Carson","type":"Role","_key":"94959","_from":"55922","_to":"55920"} +{"$label":"ACTS_IN","name":"Michael Carson","type":"Role","_key":"94958","_from":"55921","_to":"55920"} +{"$label":"DIRECTED","_key":"94964","_from":"55925","_to":"55924"} +{"$label":"DIRECTED","_key":"94965","_from":"55927","_to":"55926"} +{"$label":"ACTS_IN","name":"Chad Norris","type":"Role","_key":"94999","_from":"55932","_to":"55928"} +{"$label":"ACTS_IN","name":"Deputy Joe Bob Brentwood","type":"Role","_key":"94989","_from":"55931","_to":"55928"} +{"$label":"ACTS_IN","name":"George Richardson","type":"Role","_key":"94983","_from":"55930","_to":"55928"} +{"$label":"ACTS_IN","name":"Susan Stern","type":"Role","_key":"94979","_from":"55929","_to":"55928"} +{"$label":"ACTS_IN","name":"Gavri\/Azriel","type":"Role","_key":"95003","_from":"55935","_to":"55933"} +{"$label":"ACTS_IN","name":"Hannukah","type":"Role","_key":"95002","_from":"55934","_to":"55933"} +{"$label":"ACTS_IN","name":"Sasson","type":"Role","_key":"95006","_from":"55934","_to":"55936"} +{"$label":"ACTS_IN","name":"Charlie Ben Chanania","type":"Role","_key":"95005","_from":"55935","_to":"55936"} +{"$label":"ACTS_IN","name":"Gerard De Ridefort","type":"Role","_key":"95011","_from":"55938","_to":"55937"} +{"$label":"DIRECTED","_key":"95022","_from":"55942","_to":"55939"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"95020","_from":"55941","_to":"55939"} +{"$label":"ACTS_IN","name":"Ms. Tasty","type":"Role","_key":"95019","_from":"55940","_to":"55939"} +{"$label":"ACTS_IN","name":"Maj. Burke","type":"Role","_key":"95039","_from":"55949","_to":"55943"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"95038","_from":"55948","_to":"55943"} +{"$label":"ACTS_IN","name":"Eddy","type":"Role","_key":"95037","_from":"55947","_to":"55943"} +{"$label":"ACTS_IN","name":"Lt. Weaver","type":"Role","_key":"95034","_from":"55946","_to":"55943"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"95030","_from":"55945","_to":"55943"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"95029","_from":"55944","_to":"55943"} +{"$label":"ACTS_IN","name":"Mrs. Sara Ramsey","type":"Role","_key":"117113","_from":"55945","_to":"68907"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116219","_from":"55946","_to":"68429"} +{"$label":"ACTS_IN","name":"Ensign Ralston, U.S.N.","type":"Role","_key":"113821","_from":"55946","_to":"67051"} +{"$label":"ACTS_IN","name":"Ulla Vilstrup","type":"Role","_key":"95055","_from":"55954","_to":"55952"} +{"$label":"ACTS_IN","name":"Mor","type":"Role","_key":"95054","_from":"55953","_to":"55952"} +{"$label":"ACTS_IN","name":"Elizabeth Tompkins","type":"Role","_key":"95061","_from":"55956","_to":"55955"} +{"$label":"ACTS_IN","name":"Lizzie Flynn","type":"Role","_key":"108964","_from":"55956","_to":"64390"} +{"$label":"DIRECTED","_key":"95066","_from":"55961","_to":"55957"} +{"$label":"DIRECTED","_key":"95065","_from":"55960","_to":"55957"} +{"$label":"ACTS_IN","name":"Hero Robot #2","type":"Role","_key":"95064","_from":"55959","_to":"55957"} +{"$label":"ACTS_IN","name":"Hero Robot #1","type":"Role","_key":"95063","_from":"55958","_to":"55957"} +{"$label":"DIRECTED","_key":"95082","_from":"55964","_to":"55963"} +{"$label":"DIRECTED","_key":"95092","_from":"55967","_to":"55966"} +{"$label":"DIRECTED","_key":"95108","_from":"55972","_to":"55971"} +{"$label":"DIRECTED","_key":"95112","_from":"55974","_to":"55973"} +{"$label":"ACTS_IN","name":"Dirk Hendricks","type":"Role","_key":"95128","_from":"55977","_to":"55976"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"105945","_from":"55977","_to":"62378"} +{"$label":"ACTS_IN","name":"Crawford","type":"Role","_key":"99076","_from":"55977","_to":"58367"} +{"$label":"DIRECTED","_key":"95131","_from":"55979","_to":"55978"} +{"$label":"ACTS_IN","name":"Caligari","type":"Role","_key":"95136","_from":"55985","_to":"55981"} +{"$label":"ACTS_IN","name":"Wayne Holcomb","type":"Role","_key":"95135","_from":"55984","_to":"55981"} +{"$label":"ACTS_IN","name":"Jessie McClain","type":"Role","_key":"95134","_from":"55983","_to":"55981"} +{"$label":"DIRECTED","_key":"95132","_from":"55982","_to":"55981"} +{"$label":"DIRECTED","_key":"114444","_from":"55982","_to":"67417"} +{"$label":"ACTS_IN","name":"Santillan","type":"Role","_key":"95143","_from":"55989","_to":"55986"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"95141","_from":"55988","_to":"55986"} +{"$label":"DIRECTED","_key":"95138","_from":"55987","_to":"55986"} +{"$label":"ACTS_IN","name":"Holt","type":"Role","_key":"118755","_from":"55988","_to":"69832"} +{"$label":"ACTS_IN","name":"Cory Hall","type":"Role","_key":"111660","_from":"55988","_to":"65922"} +{"$label":"DIRECTED","_key":"95156","_from":"55995","_to":"55990"} +{"$label":"ACTS_IN","name":"Dr. Ross","type":"Role","_key":"95154","_from":"55994","_to":"55990"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"95153","_from":"55993","_to":"55990"} +{"$label":"ACTS_IN","name":"Young Ben","type":"Role","_key":"95152","_from":"55992","_to":"55990"} +{"$label":"ACTS_IN","name":"Ben's Father","type":"Role","_key":"95151","_from":"55991","_to":"55990"} +{"$label":"ACTS_IN","name":"Claire Norman","type":"Role","_key":"95158","_from":"55997","_to":"55996"} +{"$label":"DIRECTED","_key":"95162","_from":"55999","_to":"55998"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"95180","_from":"56002","_to":"56001"} +{"$label":"ACTS_IN","name":"Joey Harper","type":"Role","_key":"95189","_from":"56006","_to":"56004"} +{"$label":"ACTS_IN","name":"Mr. Harper","type":"Role","_key":"95187","_from":"56005","_to":"56004"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"95194","_from":"56011","_to":"56007"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"95193","_from":"56010","_to":"56007"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"95192","_from":"56009","_to":"56007"} +{"$label":"DIRECTED","_key":"95191","_from":"56008","_to":"56007"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"95202","_from":"56013","_to":"56012"} +{"$label":"ACTS_IN","name":"H.H. Holmes","type":"Role","_key":"95206","_from":"56016","_to":"56014"} +{"$label":"DIRECTED","_key":"95204","_from":"56015","_to":"56014"} +{"$label":"DIRECTED","_key":"114294","_from":"56015","_to":"67315"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"95217","_from":"56022","_to":"56019"} +{"$label":"ACTS_IN","name":"Alexander","type":"Role","_key":"95216","_from":"56021","_to":"56019"} +{"$label":"DIRECTED","_key":"95215","_from":"56020","_to":"56019"} +{"$label":"ACTS_IN","name":"Faithful George","type":"Role","_key":"95228","_from":"56029","_to":"56023"} +{"$label":"ACTS_IN","name":"Mike Flaherty","type":"Role","_key":"95227","_from":"56028","_to":"56023"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"95224","_from":"56027","_to":"56023"} +{"$label":"ACTS_IN","name":"Cornelia Bullock","type":"Role","_key":"95222","_from":"56026","_to":"56023"} +{"$label":"ACTS_IN","name":"Angelica Bullock","type":"Role","_key":"95221","_from":"56025","_to":"56023"} +{"$label":"DIRECTED","_key":"95218","_from":"56024","_to":"56023"} +{"$label":"ACTS_IN","name":"Mrs. Susan Elliott Potter","type":"Role","_key":"108446","_from":"56027","_to":"64107"} +{"$label":"ACTS_IN","name":"Officer Reese","type":"Role","_key":"95240","_from":"56035","_to":"56030"} +{"$label":"ACTS_IN","name":"Traci Shannon","type":"Role","_key":"95239","_from":"56034","_to":"56030"} +{"$label":"ACTS_IN","name":"Bailiff (as Arik Ben Treston)","type":"Role","_key":"95238","_from":"56033","_to":"56030"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"95236","_from":"56032","_to":"56030"} +{"$label":"ACTS_IN","name":"Greg \/ WCOB Deejay","type":"Role","_key":"95235","_from":"56031","_to":"56030"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"95245","_from":"56038","_to":"56036"} +{"$label":"DIRECTED","_key":"95241","_from":"56037","_to":"56036"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"95879","_from":"56038","_to":"56389"} +{"$label":"ACTS_IN","name":"Marty Sickle","type":"Role","_key":"95249","_from":"56040","_to":"56039"} +{"$label":"ACTS_IN","name":"Darwin","type":"Role","_key":"95248","_from":"56042","_to":"56039"} +{"$label":"ACTS_IN","name":"Mandy","type":"Role","_key":"95247","_from":"56041","_to":"56039"} +{"$label":"DIRECTED","_key":"95246","_from":"56040","_to":"56039"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"95252","_from":"56046","_to":"56043"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"95251","_from":"56045","_to":"56043"} +{"$label":"DIRECTED","_key":"95250","_from":"56044","_to":"56043"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"95256","_from":"56051","_to":"56047"} +{"$label":"ACTS_IN","name":"Dwight","type":"Role","_key":"95255","_from":"56050","_to":"56047"} +{"$label":"ACTS_IN","name":"Karli","type":"Role","_key":"95254","_from":"56049","_to":"56047"} +{"$label":"DIRECTED","_key":"95253","_from":"56048","_to":"56047"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"95266","_from":"56054","_to":"56053"} +{"$label":"ACTS_IN","name":"Carol Kersey","type":"Role","_key":"99860","_from":"56054","_to":"58893"} +{"$label":"DIRECTED","_key":"95278","_from":"56058","_to":"56057"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"95290","_from":"56062","_to":"56061"} +{"$label":"DIRECTED","_key":"95292","_from":"56064","_to":"56063"} +{"$label":"ACTS_IN","name":"Shelly","type":"Role","_key":"95297","_from":"56067","_to":"56065"} +{"$label":"DIRECTED","_key":"95293","_from":"56066","_to":"56065"} +{"$label":"ACTS_IN","name":"Claire Plummer","type":"Role","_key":"95300","_from":"56069","_to":"56068"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"121404","_from":"56069","_to":"71336"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"111508","_from":"56069","_to":"65841"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"109502","_from":"56069","_to":"64682"} +{"$label":"ACTS_IN","name":"Gayle","type":"Role","_key":"97780","_from":"56069","_to":"57579"} +{"$label":"ACTS_IN","name":"CIA Agent","type":"Role","_key":"95322","_from":"56078","_to":"56070"} +{"$label":"ACTS_IN","name":"East German Judge","type":"Role","_key":"95321","_from":"56077","_to":"56070"} +{"$label":"ACTS_IN","name":"Mr. Zanfrello","type":"Role","_key":"95320","_from":"56076","_to":"56070"} +{"$label":"ACTS_IN","name":"Miss Crail","type":"Role","_key":"95317","_from":"56075","_to":"56070"} +{"$label":"ACTS_IN","name":"German Guide (as Scot Finch)","type":"Role","_key":"95316","_from":"56074","_to":"56070"} +{"$label":"ACTS_IN","name":"German Checkpoint Guard","type":"Role","_key":"95315","_from":"56073","_to":"56070"} +{"$label":"ACTS_IN","name":"Tribunal President","type":"Role","_key":"95313","_from":"56072","_to":"56070"} +{"$label":"ACTS_IN","name":"George Smiley","type":"Role","_key":"95307","_from":"56071","_to":"56070"} +{"$label":"ACTS_IN","name":"Flying Officer Bissell","type":"Role","_key":"106347","_from":"56074","_to":"62650"} +{"$label":"ACTS_IN","name":"Dr. Van Straaten","type":"Role","_key":"95329","_from":"56082","_to":"56079"} +{"$label":"DIRECTED","_key":"95326","_from":"56081","_to":"56079"} +{"$label":"DIRECTED","_key":"95323","_from":"56080","_to":"56079"} +{"$label":"ACTS_IN","name":"Robert Gustafsson","type":"Role","_key":"95333","_from":"56084","_to":"56083"} +{"$label":"ACTS_IN","name":"All Characters","type":"Role","_key":"108840","_from":"56084","_to":"64329"} +{"$label":"ACTS_IN","name":"All Characters","type":"Role","_key":"108839","_from":"56084","_to":"64328"} +{"$label":"ACTS_IN","name":"Roland J\u00e4rverup \/ Micke \/ Lasse Kongo","type":"Role","_key":"106900","_from":"56084","_to":"63023"} +{"$label":"DIRECTED","_key":"95337","_from":"56088","_to":"56087"} +{"$label":"DIRECTED","_key":"95339","_from":"56090","_to":"56089"} +{"$label":"DIRECTED","_key":"95342","_from":"56093","_to":"56092"} +{"$label":"DIRECTED","_key":"95345","_from":"56096","_to":"56095"} +{"$label":"ACTS_IN","name":"Toby","type":"Role","_key":"95373","_from":"56101","_to":"56100"} +{"$label":"ACTS_IN","name":"Miss Thorn","type":"Role","_key":"95392","_from":"56111","_to":"56102"} +{"$label":"ACTS_IN","name":"Student #3","type":"Role","_key":"95391","_from":"56110","_to":"56102"} +{"$label":"ACTS_IN","name":"Student #2","type":"Role","_key":"95390","_from":"56109","_to":"56102"} +{"$label":"ACTS_IN","name":"Student #1","type":"Role","_key":"95389","_from":"56108","_to":"56102"} +{"$label":"ACTS_IN","name":"Smat","type":"Role","_key":"95388","_from":"56107","_to":"56102"} +{"$label":"ACTS_IN","name":"Roner","type":"Role","_key":"95387","_from":"56106","_to":"56102"} +{"$label":"ACTS_IN","name":"Joss","type":"Role","_key":"95386","_from":"56105","_to":"56102"} +{"$label":"ACTS_IN","name":"Lizzie Bisco","type":"Role","_key":"95385","_from":"56104","_to":"56102"} +{"$label":"ACTS_IN","name":"Mayor's Guard","type":"Role","_key":"95384","_from":"56103","_to":"56102"} +{"$label":"ACTS_IN","name":"Oljelund","type":"Role","_key":"95400","_from":"56117","_to":"56112"} +{"$label":"ACTS_IN","name":"Bodil Lettermark","type":"Role","_key":"95397","_from":"56116","_to":"56112"} +{"$label":"ACTS_IN","name":"Lena Klingstr\u00f6m","type":"Role","_key":"95396","_from":"56115","_to":"56112"} +{"$label":"ACTS_IN","name":"Margareta Oberg","type":"Role","_key":"95395","_from":"56114","_to":"56112"} +{"$label":"ACTS_IN","name":"Martin Beck","type":"Role","_key":"95393","_from":"56113","_to":"56112"} +{"$label":"ACTS_IN","name":"Martin Vanger","type":"Role","_key":"104551","_from":"56113","_to":"61500"} +{"$label":"ACTS_IN","name":"Martin Beck","type":"Role","_key":"98604","_from":"56113","_to":"58110"} +{"$label":"ACTS_IN","name":"Martin Beck","type":"Role","_key":"98546","_from":"56113","_to":"58073"} +{"$label":"ACTS_IN","name":"Margareta Oberg","type":"Role","_key":"98606","_from":"56114","_to":"58110"} +{"$label":"ACTS_IN","name":"Margareta Oberg","type":"Role","_key":"98554","_from":"56114","_to":"58073"} +{"$label":"ACTS_IN","name":"Lena Klingstr\u00f6m","type":"Role","_key":"98607","_from":"56115","_to":"58110"} +{"$label":"ACTS_IN","name":"Lena Klingstr\u00f6m","type":"Role","_key":"98556","_from":"56115","_to":"58073"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"100343","_from":"56116","_to":"59165"} +{"$label":"ACTS_IN","name":"Bodil Lettermark","type":"Role","_key":"98608","_from":"56116","_to":"58110"} +{"$label":"ACTS_IN","name":"Bodil Lettermark","type":"Role","_key":"98553","_from":"56116","_to":"58073"} +{"$label":"ACTS_IN","name":"Oljelund","type":"Role","_key":"98549","_from":"56117","_to":"58073"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95408","_from":"56125","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95407","_from":"56124","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95405","_from":"56123","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95404","_from":"56122","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95403","_from":"56121","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95402","_from":"56120","_to":"56118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95401","_from":"56119","_to":"56118"} +{"$label":"DIRECTED","_key":"95410","_from":"56128","_to":"56127"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"95414","_from":"56131","_to":"56129"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"95413","_from":"56130","_to":"56129"} +{"$label":"ACTS_IN","name":"Lt. Jerzy","type":"Role","_key":"95425","_from":"56136","_to":"56133"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"95424","_from":"56135","_to":"56133"} +{"$label":"ACTS_IN","name":"Andrzej","type":"Role","_key":"95423","_from":"56134","_to":"56133"} +{"$label":"ACTS_IN","name":"Karcsi Szab\u00f3","type":"Role","_key":"95427","_from":"56138","_to":"56137"} +{"$label":"DIRECTED","_key":"95436","_from":"56145","_to":"56139"} +{"$label":"ACTS_IN","name":"Jarle's mother","type":"Role","_key":"95433","_from":"56144","_to":"56139"} +{"$label":"ACTS_IN","name":"Helge Ombo","type":"Role","_key":"95432","_from":"56143","_to":"56139"} +{"$label":"ACTS_IN","name":"Cathrine Halsnes","type":"Role","_key":"95431","_from":"56142","_to":"56139"} +{"$label":"ACTS_IN","name":"Yngve Lima","type":"Role","_key":"95430","_from":"56141","_to":"56139"} +{"$label":"ACTS_IN","name":"Jarle Klepp","type":"Role","_key":"95429","_from":"56140","_to":"56139"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"95459","_from":"56142","_to":"56157"} +{"$label":"ACTS_IN","name":"Vibeke","type":"Role","_key":"109848","_from":"56144","_to":"64893"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"95445","_from":"56148","_to":"56146"} +{"$label":"ACTS_IN","name":"Chris Hughes","type":"Role","_key":"95438","_from":"56147","_to":"56146"} +{"$label":"DIRECTED","_key":"95456","_from":"56154","_to":"56149"} +{"$label":"DIRECTED","_key":"95455","_from":"56150","_to":"56149"} +{"$label":"ACTS_IN","name":"Frank's boss","type":"Role","_key":"95454","_from":"56156","_to":"56149"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"95453","_from":"56155","_to":"56149"} +{"$label":"ACTS_IN","name":"Markus","type":"Role","_key":"95452","_from":"56154","_to":"56149"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"95451","_from":"56153","_to":"56149"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"95449","_from":"56152","_to":"56149"} +{"$label":"ACTS_IN","name":"Nenne Philgren","type":"Role","_key":"95448","_from":"56151","_to":"56149"} +{"$label":"ACTS_IN","name":"Frank Philgren","type":"Role","_key":"95447","_from":"56150","_to":"56149"} +{"$label":"ACTS_IN","name":"Dr. B. A:son Levander","type":"Role","_key":"106709","_from":"56156","_to":"62880"} +{"$label":"ACTS_IN","name":"Ann Katrin Nordskog","type":"Role","_key":"95462","_from":"56161","_to":"56157"} +{"$label":"ACTS_IN","name":"Gaute Aas","type":"Role","_key":"95460","_from":"56160","_to":"56157"} +{"$label":"ACTS_IN","name":"Mikkel Nordskog","type":"Role","_key":"95458","_from":"56159","_to":"56157"} +{"$label":"DIRECTED","_key":"95457","_from":"56158","_to":"56157"} +{"$label":"DIRECTED","_key":"95469","_from":"56165","_to":"56162"} +{"$label":"ACTS_IN","name":"Tante Pia","type":"Role","_key":"95467","_from":"56164","_to":"56162"} +{"$label":"ACTS_IN","name":"Moritz Zack","type":"Role","_key":"95463","_from":"56163","_to":"56162"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95477","_from":"56167","_to":"56166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95487","_from":"56170","_to":"56168"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95485","_from":"56169","_to":"56168"} +{"$label":"ACTS_IN","name":"Olivers Stepfather","type":"Role","_key":"95499","_from":"56177","_to":"56171"} +{"$label":"ACTS_IN","name":"Linea","type":"Role","_key":"95498","_from":"56176","_to":"56171"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"95493","_from":"56175","_to":"56171"} +{"$label":"ACTS_IN","name":"Sylvester","type":"Role","_key":"95492","_from":"56174","_to":"56171"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"95491","_from":"56173","_to":"56171"} +{"$label":"DIRECTED","_key":"95490","_from":"56172","_to":"56171"} +{"$label":"DIRECTED","_key":"106494","_from":"56172","_to":"62738"} +{"$label":"ACTS_IN","name":"Pil","type":"Role","_key":"106086","_from":"56176","_to":"62469"} +{"$label":"ACTS_IN","name":"Dorte","type":"Role","_key":"103373","_from":"56176","_to":"60810"} +{"$label":"ACTS_IN","name":"Student counselor","type":"Role","_key":"106380","_from":"56177","_to":"62665"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95513","_from":"56181","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95511","_from":"56180","_to":"56178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95505","_from":"56179","_to":"56178"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113136","_from":"56180","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112923","_from":"56180","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112856","_from":"56180","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95524","_from":"56186","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95523","_from":"56185","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95521","_from":"56184","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95517","_from":"56183","_to":"56182"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114196","_from":"56183","_to":"67266"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113092","_from":"56183","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112706","_from":"56183","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112610","_from":"56183","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113167","_from":"56185","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113135","_from":"56185","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113112","_from":"56185","_to":"66691"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113199","_from":"56186","_to":"66703"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113151","_from":"56186","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113113","_from":"56186","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113089","_from":"56186","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113052","_from":"56186","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112984","_from":"56186","_to":"66653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112974","_from":"56186","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112948","_from":"56186","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112898","_from":"56186","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112850","_from":"56186","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95543","_from":"56190","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95539","_from":"56189","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95535","_from":"56188","_to":"56187"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112911","_from":"56189","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112894","_from":"56189","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112818","_from":"56189","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112771","_from":"56189","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112793","_from":"56190","_to":"66597"} +{"$label":"DIRECTED","_key":"95550","_from":"56194","_to":"56192"} +{"$label":"ACTS_IN","name":"Anthony Graves","type":"Role","_key":"95548","_from":"56193","_to":"56192"} +{"$label":"ACTS_IN","name":"Bad Dude #2","type":"Role","_key":"95596","_from":"56231","_to":"56195"} +{"$label":"ACTS_IN","name":"Mess Hall Supervisor #2","type":"Role","_key":"95595","_from":"56230","_to":"56195"} +{"$label":"ACTS_IN","name":"Mess Hall Supervisor #1","type":"Role","_key":"95594","_from":"56229","_to":"56195"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"95593","_from":"56228","_to":"56195"} +{"$label":"ACTS_IN","name":"Policewoman","type":"Role","_key":"95592","_from":"56227","_to":"56195"} +{"$label":"ACTS_IN","name":"Lineup Sergeant","type":"Role","_key":"95591","_from":"56226","_to":"56195"} +{"$label":"ACTS_IN","name":"Worker","type":"Role","_key":"95590","_from":"56225","_to":"56195"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"95589","_from":"56224","_to":"56195"} +{"$label":"ACTS_IN","name":"Bad Dude #1","type":"Role","_key":"95588","_from":"56223","_to":"56195"} +{"$label":"ACTS_IN","name":"Squad Car Cop","type":"Role","_key":"95587","_from":"56222","_to":"56195"} +{"$label":"ACTS_IN","name":"Teen Gun Dealer","type":"Role","_key":"95586","_from":"56221","_to":"56195"} +{"$label":"ACTS_IN","name":"Lineup Boy #2","type":"Role","_key":"95585","_from":"56220","_to":"56195"} +{"$label":"ACTS_IN","name":"Lineup Boy #1","type":"Role","_key":"95584","_from":"56219","_to":"56195"} +{"$label":"ACTS_IN","name":"Roberts","type":"Role","_key":"95583","_from":"56218","_to":"56195"} +{"$label":"ACTS_IN","name":"Johnson","type":"Role","_key":"95582","_from":"56217","_to":"56195"} +{"$label":"ACTS_IN","name":"Vicki O'Brien","type":"Role","_key":"95581","_from":"56216","_to":"56195"} +{"$label":"ACTS_IN","name":"Black Gang Leader","type":"Role","_key":"95578","_from":"56215","_to":"56195"} +{"$label":"ACTS_IN","name":"Pacito","type":"Role","_key":"95577","_from":"56214","_to":"56195"} +{"$label":"ACTS_IN","name":"Detective Moran","type":"Role","_key":"95576","_from":"56213","_to":"56195"} +{"$label":"ACTS_IN","name":"Mr. Moreno","type":"Role","_key":"95574","_from":"56212","_to":"56195"} +{"$label":"ACTS_IN","name":"Mrs. Moreno","type":"Role","_key":"95573","_from":"56211","_to":"56195"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"95572","_from":"56210","_to":"56195"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"95571","_from":"56209","_to":"56195"} +{"$label":"ACTS_IN","name":"Ricky Lee","type":"Role","_key":"95570","_from":"56208","_to":"56195"} +{"$label":"ACTS_IN","name":"Perretti","type":"Role","_key":"95569","_from":"56207","_to":"56195"} +{"$label":"ACTS_IN","name":"Terrell","type":"Role","_key":"95568","_from":"56206","_to":"56195"} +{"$label":"ACTS_IN","name":"Warden Bendix","type":"Role","_key":"95566","_from":"56205","_to":"56195"} +{"$label":"ACTS_IN","name":"Wagner","type":"Role","_key":"95565","_from":"56204","_to":"56195"} +{"$label":"ACTS_IN","name":"Tweety","type":"Role","_key":"95564","_from":"56203","_to":"56195"} +{"$label":"ACTS_IN","name":"Horowitz","type":"Role","_key":"95560","_from":"56202","_to":"56195"} +{"$label":"ACTS_IN","name":"Gene Daniels","type":"Role","_key":"95559","_from":"56201","_to":"56195"} +{"$label":"DIRECTED","_key":"95555","_from":"56200","_to":"56195"} +{"$label":"DIRECTED","_key":"95554","_from":"56199","_to":"56195"} +{"$label":"DIRECTED","_key":"95553","_from":"56198","_to":"56195"} +{"$label":"DIRECTED","_key":"95552","_from":"56197","_to":"56195"} +{"$label":"DIRECTED","_key":"95551","_from":"56196","_to":"56195"} +{"$label":"DIRECTED","_key":"95603","_from":"56237","_to":"56232"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"95602","_from":"56236","_to":"56232"} +{"$label":"ACTS_IN","name":"Sgt. Steve Burke","type":"Role","_key":"95601","_from":"56235","_to":"56232"} +{"$label":"ACTS_IN","name":"Skippy","type":"Role","_key":"95600","_from":"56234","_to":"56232"} +{"$label":"ACTS_IN","name":"Countess Barilhaus","type":"Role","_key":"95599","_from":"56233","_to":"56232"} +{"$label":"ACTS_IN","name":"Father Timothy O'Dowd","type":"Role","_key":"113512","_from":"56234","_to":"66879"} +{"$label":"DIRECTED","_key":"95612","_from":"56240","_to":"56239"} +{"$label":"ACTS_IN","name":"Himself - Host (also archive footage)","type":"Role","_key":"95609","_from":"56240","_to":"56239"} +{"$label":"ACTS_IN","name":"Caleb Witting","type":"Role","_key":"105788","_from":"56240","_to":"62284"} +{"$label":"ACTS_IN","name":"Caleb Witting","type":"Role","_key":"105749","_from":"56240","_to":"62251"} +{"$label":"ACTS_IN","name":"Gunman","type":"Role","_key":"95614","_from":"56242","_to":"56241"} +{"$label":"ACTS_IN","name":"Grijze Ridder Ristridin","type":"Role","_key":"95625","_from":"56247","_to":"56243"} +{"$label":"ACTS_IN","name":"Grijze Ridder Bendoe","type":"Role","_key":"95624","_from":"56246","_to":"56243"} +{"$label":"ACTS_IN","name":"Piak","type":"Role","_key":"95623","_from":"56245","_to":"56243"} +{"$label":"ACTS_IN","name":"Tiuri","type":"Role","_key":"95622","_from":"56244","_to":"56243"} +{"$label":"DIRECTED","_key":"95628","_from":"56250","_to":"56248"} +{"$label":"DIRECTED","_key":"95627","_from":"56249","_to":"56248"} +{"$label":"DIRECTED","_key":"112269","_from":"56249","_to":"66293"} +{"$label":"DIRECTED","_key":"104090","_from":"56249","_to":"61239"} +{"$label":"DIRECTED","_key":"102479","_from":"56250","_to":"60297"} +{"$label":"DIRECTED","_key":"95650","_from":"56253","_to":"56251"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"95644","_from":"56252","_to":"56251"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"111374","_from":"56252","_to":"65768"} +{"$label":"ACTS_IN","name":"Shoppers, Granny","type":"Role","_key":"95658","_from":"56261","_to":"56254"} +{"$label":"ACTS_IN","name":"Innkeeper","type":"Role","_key":"95657","_from":"56260","_to":"56254"} +{"$label":"ACTS_IN","name":"Balthasar","type":"Role","_key":"95656","_from":"56259","_to":"56254"} +{"$label":"ACTS_IN","name":"Gaspar, Scribe","type":"Role","_key":"95655","_from":"56258","_to":"56254"} +{"$label":"ACTS_IN","name":"Tall Shepherd, Joseph","type":"Role","_key":"95654","_from":"56257","_to":"56254"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"95653","_from":"56256","_to":"56254"} +{"$label":"ACTS_IN","name":"Gabriel, Herod","type":"Role","_key":"95652","_from":"56255","_to":"56254"} +{"$label":"DIRECTED","_key":"95659","_from":"56263","_to":"56262"} +{"$label":"DIRECTED","_key":"95664","_from":"56267","_to":"56266"} +{"$label":"ACTS_IN","name":"President (Voice)","type":"Role","_key":"95676","_from":"56279","_to":"56269"} +{"$label":"ACTS_IN","name":"WilPharma CEO (Voice)","type":"Role","_key":"95675","_from":"56278","_to":"56269"} +{"$label":"ACTS_IN","name":"Rani Chawla (Voice)","type":"Role","_key":"95673","_from":"56277","_to":"56269"} +{"$label":"ACTS_IN","name":"Ingrid Hunnigan (Voice)","type":"Role","_key":"95671","_from":"56276","_to":"56269"} +{"$label":"ACTS_IN","name":"Frederic Downing (voice)","type":"Role","_key":"95670","_from":"56275","_to":"56269"} +{"$label":"ACTS_IN","name":"Curtis Miller (voice)","type":"Role","_key":"95669","_from":"56274","_to":"56269"} +{"$label":"ACTS_IN","name":"Angela Miller (voice)","type":"Role","_key":"95668","_from":"56273","_to":"56269"} +{"$label":"ACTS_IN","name":"Leon S. Kennedy (Voice)","type":"Role","_key":"95667","_from":"56272","_to":"56269"} +{"$label":"ACTS_IN","name":"Claire Redfield (Voice)","type":"Role","_key":"95666","_from":"56271","_to":"56269"} +{"$label":"DIRECTED","_key":"95665","_from":"56270","_to":"56269"} +{"$label":"ACTS_IN","name":"Dawn (voice)","type":"Role","_key":"121660","_from":"56271","_to":"71468"} +{"$label":"ACTS_IN","name":"Shin (voice: English version)","type":"Role","_key":"121348","_from":"56278","_to":"71298"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"95700","_from":"56294","_to":"56282"} +{"$label":"ACTS_IN","name":"Matilde","type":"Role","_key":"95699","_from":"56293","_to":"56282"} +{"$label":"ACTS_IN","name":"Dominga","type":"Role","_key":"95698","_from":"56292","_to":"56282"} +{"$label":"ACTS_IN","name":"Felipe","type":"Role","_key":"95696","_from":"56291","_to":"56282"} +{"$label":"ACTS_IN","name":"Susana","type":"Role","_key":"95695","_from":"56290","_to":"56282"} +{"$label":"ACTS_IN","name":"Sergio","type":"Role","_key":"95694","_from":"56289","_to":"56282"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"95693","_from":"56288","_to":"56282"} +{"$label":"ACTS_IN","name":"Jorge","type":"Role","_key":"95692","_from":"56287","_to":"56282"} +{"$label":"ACTS_IN","name":"Mam\u00e1 Cora","type":"Role","_key":"95691","_from":"56286","_to":"56282"} +{"$label":"ACTS_IN","name":"Elvira","type":"Role","_key":"95690","_from":"56285","_to":"56282"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"95689","_from":"56284","_to":"56282"} +{"$label":"DIRECTED","_key":"95688","_from":"56283","_to":"56282"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"95707","_from":"56297","_to":"56295"} +{"$label":"DIRECTED","_key":"95701","_from":"56296","_to":"56295"} +{"$label":"ACTS_IN","name":"Sontag","type":"Role","_key":"95724","_from":"56303","_to":"56298"} +{"$label":"ACTS_IN","name":"Uriel","type":"Role","_key":"95723","_from":"56302","_to":"56298"} +{"$label":"ACTS_IN","name":"Sosa","type":"Role","_key":"95721","_from":"56301","_to":"56298"} +{"$label":"ACTS_IN","name":"Diana Dietrich","type":"Role","_key":"95720","_from":"56300","_to":"56298"} +{"$label":"DIRECTED","_key":"95718","_from":"56299","_to":"56298"} +{"$label":"DIRECTED","_key":"114840","_from":"56299","_to":"67647"} +{"$label":"DIRECTED","_key":"95726","_from":"56305","_to":"56304"} +{"$label":"DIRECTED","_key":"95738","_from":"56313","_to":"56306"} +{"$label":"ACTS_IN","name":"Ella","type":"Role","_key":"95737","_from":"56312","_to":"56306"} +{"$label":"ACTS_IN","name":"Brown Cesario","type":"Role","_key":"95736","_from":"56311","_to":"56306"} +{"$label":"ACTS_IN","name":"Tess Tyler","type":"Role","_key":"95733","_from":"56310","_to":"56306"} +{"$label":"ACTS_IN","name":"Connie Torres","type":"Role","_key":"95732","_from":"56309","_to":"56306"} +{"$label":"ACTS_IN","name":"Shane Gray","type":"Role","_key":"95731","_from":"56308","_to":"56306"} +{"$label":"ACTS_IN","name":"Mitchie Torres","type":"Role","_key":"95730","_from":"56307","_to":"56306"} +{"$label":"ACTS_IN","name":"Rosalinda \/ Rosie Gonzales","type":"Role","_key":"120146","_from":"56307","_to":"70565"} +{"$label":"ACTS_IN","name":"Sophia (as Maria Canals)","type":"Role","_key":"97379","_from":"56309","_to":"57346"} +{"$label":"ACTS_IN","name":"Hans Sibbel","type":"Role","_key":"95739","_from":"56315","_to":"56314"} +{"$label":"ACTS_IN","name":"Youp van 't Hek","type":"Role","_key":"95740","_from":"56317","_to":"56316"} +{"$label":"ACTS_IN","name":"Youp van 't Hek","type":"Role","_key":"95744","_from":"56317","_to":"56321"} +{"$label":"ACTS_IN","name":"Youp van 't Hek","type":"Role","_key":"95743","_from":"56317","_to":"56320"} +{"$label":"ACTS_IN","name":"Youp van 't Hek","type":"Role","_key":"95742","_from":"56317","_to":"56319"} +{"$label":"ACTS_IN","name":"Youp van 't Hek","type":"Role","_key":"95741","_from":"56317","_to":"56318"} +{"$label":"DIRECTED","_key":"95756","_from":"56327","_to":"56323"} +{"$label":"ACTS_IN","name":"Stanford Bach","type":"Role","_key":"95753","_from":"56326","_to":"56323"} +{"$label":"ACTS_IN","name":"Ralph Marolla","type":"Role","_key":"95752","_from":"56325","_to":"56323"} +{"$label":"ACTS_IN","name":"Susan Johnson","type":"Role","_key":"95749","_from":"56324","_to":"56323"} +{"$label":"DIRECTED","_key":"95771","_from":"56330","_to":"56328"} +{"$label":"ACTS_IN","name":"Dr. Lloyd","type":"Role","_key":"95759","_from":"56329","_to":"56328"} +{"$label":"DIRECTED","_key":"103793","_from":"56330","_to":"61050"} +{"$label":"DIRECTED","_key":"95781","_from":"56338","_to":"56331"} +{"$label":"ACTS_IN","name":"Chen Ree","type":"Role","_key":"95780","_from":"56337","_to":"56331"} +{"$label":"ACTS_IN","name":"Charles De Mar","type":"Role","_key":"95778","_from":"56336","_to":"56331"} +{"$label":"ACTS_IN","name":"Monique Junot","type":"Role","_key":"95777","_from":"56335","_to":"56331"} +{"$label":"ACTS_IN","name":"Badger Meyer","type":"Role","_key":"95776","_from":"56334","_to":"56331"} +{"$label":"ACTS_IN","name":"Johnny Gasparini","type":"Role","_key":"95775","_from":"56333","_to":"56331"} +{"$label":"ACTS_IN","name":"Jenny Meyer","type":"Role","_key":"95774","_from":"56332","_to":"56331"} +{"$label":"ACTS_IN","name":"Mattie Ross","type":"Role","_key":"112776","_from":"56332","_to":"66595"} +{"$label":"ACTS_IN","name":"Professor Brooks","type":"Role","_key":"105067","_from":"56332","_to":"61836"} +{"$label":"ACTS_IN","name":"Patricia Montelli","type":"Role","_key":"108236","_from":"56335","_to":"63963"} +{"$label":"ACTS_IN","name":"'Booger' Dawson","type":"Role","_key":"98299","_from":"56336","_to":"57901"} +{"$label":"ACTS_IN","name":"Mr. Welch","type":"Role","_key":"96172","_from":"56336","_to":"56522"} +{"$label":"DIRECTED","_key":"110702","_from":"56338","_to":"65397"} +{"$label":"DIRECTED","_key":"95787","_from":"56340","_to":"56339"} +{"$label":"ACTS_IN","name":"Mary Lee","type":"Role","_key":"95796","_from":"56343","_to":"56341"} +{"$label":"ACTS_IN","name":"Dudley Beecham","type":"Role","_key":"95793","_from":"56342","_to":"56341"} +{"$label":"DIRECTED","_key":"95802","_from":"56348","_to":"56344"} +{"$label":"DIRECTED","_key":"95801","_from":"56347","_to":"56344"} +{"$label":"DIRECTED","_key":"95800","_from":"56346","_to":"56344"} +{"$label":"ACTS_IN","name":"Wade Adams","type":"Role","_key":"95799","_from":"56345","_to":"56344"} +{"$label":"DIRECTED","_key":"95813","_from":"56353","_to":"56350"} +{"$label":"ACTS_IN","name":"La guicheti\u00e8re","type":"Role","_key":"95812","_from":"56352","_to":"56350"} +{"$label":"ACTS_IN","name":"Le trentenaire","type":"Role","_key":"95811","_from":"56351","_to":"56350"} +{"$label":"ACTS_IN","name":"Candi","type":"Role","_key":"95826","_from":"56357","_to":"56354"} +{"$label":"ACTS_IN","name":"Enrique Decardenal","type":"Role","_key":"95825","_from":"56356","_to":"56354"} +{"$label":"ACTS_IN","name":"Bev Scheel","type":"Role","_key":"95818","_from":"56355","_to":"56354"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"106638","_from":"56357","_to":"62833"} +{"$label":"ACTS_IN","name":"Carsten Bang","type":"Role","_key":"95830","_from":"56359","_to":"56358"} +{"$label":"ACTS_IN","name":"Frosty the Snowman (voice)","type":"Role","_key":"95835","_from":"56362","_to":"56360"} +{"$label":"ACTS_IN","name":"Professor Hinkle (voice)","type":"Role","_key":"95834","_from":"56361","_to":"56360"} +{"$label":"DIRECTED","_key":"95838","_from":"56364","_to":"56363"} +{"$label":"DIRECTED","_key":"95842","_from":"56366","_to":"56365"} +{"$label":"ACTS_IN","name":"Nanny Cindy","type":"Role","_key":"95856","_from":"56374","_to":"56368"} +{"$label":"ACTS_IN","name":"Larry the Doorman","type":"Role","_key":"95855","_from":"56373","_to":"56368"} +{"$label":"ACTS_IN","name":"Samuel Blake, Jr.","type":"Role","_key":"95854","_from":"56372","_to":"56368"} +{"$label":"ACTS_IN","name":"Clarence Monroe","type":"Role","_key":"95850","_from":"56371","_to":"56368"} +{"$label":"ACTS_IN","name":"Kyle Cooper","type":"Role","_key":"95848","_from":"56370","_to":"56368"} +{"$label":"ACTS_IN","name":"Peyton Kelly","type":"Role","_key":"95844","_from":"56369","_to":"56368"} +{"$label":"ACTS_IN","name":"Thudnik","type":"Role","_key":"101244","_from":"56370","_to":"59626"} +{"$label":"DIRECTED","_key":"95866","_from":"56380","_to":"56376"} +{"$label":"ACTS_IN","name":"Lumpy (voice)","type":"Role","_key":"95865","_from":"56379","_to":"56376"} +{"$label":"ACTS_IN","name":"Rabbit (voice)","type":"Role","_key":"95862","_from":"56378","_to":"56376"} +{"$label":"ACTS_IN","name":"Roo (voice)","type":"Role","_key":"95860","_from":"56377","_to":"56376"} +{"$label":"ACTS_IN","name":"Roo (voice)","type":"Role","_key":"105317","_from":"56377","_to":"61972"} +{"$label":"ACTS_IN","name":"Rabbit","type":"Role","_key":"110637","_from":"56378","_to":"65362"} +{"$label":"ACTS_IN","name":"Rabbit (voice)","type":"Role","_key":"109072","_from":"56378","_to":"64447"} +{"$label":"ACTS_IN","name":"Rabbit (voice)","type":"Role","_key":"105318","_from":"56378","_to":"61972"} +{"$label":"ACTS_IN","name":"Rabbit (voice)","type":"Role","_key":"102394","_from":"56378","_to":"60253"} +{"$label":"ACTS_IN","name":"Rabbit (voice)","type":"Role","_key":"102311","_from":"56378","_to":"60199"} +{"$label":"ACTS_IN","name":"Lumpy (voice)","type":"Role","_key":"102313","_from":"56379","_to":"60199"} +{"$label":"DIRECTED","_key":"107136","_from":"56380","_to":"63186"} +{"$label":"ACTS_IN","name":"Inez","type":"Role","_key":"95872","_from":"56385","_to":"56383"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"95871","_from":"56384","_to":"56383"} +{"$label":"ACTS_IN","name":"Tita","type":"Role","_key":"115198","_from":"56385","_to":"67843"} +{"$label":"DIRECTED","_key":"95877","_from":"56388","_to":"56386"} +{"$label":"ACTS_IN","name":"Silvia Mendez","type":"Role","_key":"95875","_from":"56387","_to":"56386"} +{"$label":"ACTS_IN","name":"Miss Yuen","type":"Role","_key":"95884","_from":"56392","_to":"56390"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"95883","_from":"56391","_to":"56390"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"95893","_from":"56395","_to":"56393"} +{"$label":"ACTS_IN","name":"Coach Garrick","type":"Role","_key":"95890","_from":"56394","_to":"56393"} +{"$label":"ACTS_IN","name":"Tim Russell","type":"Role","_key":"116233","_from":"56394","_to":"68436"} +{"$label":"ACTS_IN","name":"Mr Peck","type":"Role","_key":"97481","_from":"56394","_to":"57409"} +{"$label":"ACTS_IN","name":"Elliot (Voice)","type":"Role","_key":"95898","_from":"56398","_to":"56396"} +{"$label":"DIRECTED","_key":"95896","_from":"56397","_to":"56396"} +{"$label":"DIRECTED","_key":"95900","_from":"56400","_to":"56399"} +{"$label":"DIRECTED","_key":"95916","_from":"56410","_to":"56401"} +{"$label":"ACTS_IN","name":"Tyler","type":"Role","_key":"95911","_from":"56409","_to":"56401"} +{"$label":"ACTS_IN","name":"Suit #3 (Mason Neuberger)","type":"Role","_key":"95910","_from":"56408","_to":"56401"} +{"$label":"ACTS_IN","name":"Suit #2 (Jonathan)","type":"Role","_key":"95909","_from":"56407","_to":"56401"} +{"$label":"ACTS_IN","name":"Suit #1 (Brad)","type":"Role","_key":"95908","_from":"56406","_to":"56401"} +{"$label":"ACTS_IN","name":"Girl in Bathroom","type":"Role","_key":"95907","_from":"56405","_to":"56401"} +{"$label":"ACTS_IN","name":"Dylan Gottschalk","type":"Role","_key":"95906","_from":"56404","_to":"56401"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"95903","_from":"56403","_to":"56401"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"95902","_from":"56402","_to":"56401"} +{"$label":"ACTS_IN","name":"Tre","type":"Role","_key":"103393","_from":"56404","_to":"60821"} +{"$label":"ACTS_IN","name":"Janie Rimmer","type":"Role","_key":"95920","_from":"56412","_to":"56411"} +{"$label":"ACTS_IN","name":"Laury Ferguson","type":"Role","_key":"95926","_from":"56414","_to":"56413"} +{"$label":"ACTS_IN","name":"Ruby Gilman","type":"Role","_key":"113506","_from":"56414","_to":"66878"} +{"$label":"ACTS_IN","name":"Cassie Hartley","type":"Role","_key":"110564","_from":"56414","_to":"65329"} +{"$label":"ACTS_IN","name":"Milt","type":"Role","_key":"95956","_from":"56422","_to":"56416"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"95955","_from":"56421","_to":"56416"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"95954","_from":"56420","_to":"56416"} +{"$label":"ACTS_IN","name":"Matsumura","type":"Role","_key":"95951","_from":"56419","_to":"56416"} +{"$label":"ACTS_IN","name":"Umeki Kazihiro","type":"Role","_key":"95949","_from":"56418","_to":"56416"} +{"$label":"ACTS_IN","name":"Saito","type":"Role","_key":"95942","_from":"56417","_to":"56416"} +{"$label":"ACTS_IN","name":"Mr. Takagawa (voice)","type":"Role","_key":"109053","_from":"56417","_to":"64441"} +{"$label":"DIRECTED","_key":"95960","_from":"56424","_to":"56423"} +{"$label":"DIRECTED","_key":"95976","_from":"56428","_to":"56425"} +{"$label":"DIRECTED","_key":"95975","_from":"56427","_to":"56425"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"95969","_from":"56426","_to":"56425"} +{"$label":"ACTS_IN","name":"Baby Bear","type":"Role","_key":"96007","_from":"56438","_to":"56430"} +{"$label":"ACTS_IN","name":"Papa Bear (as Dave Moretti)","type":"Role","_key":"96006","_from":"56437","_to":"56430"} +{"$label":"ACTS_IN","name":"Mama Bear","type":"Role","_key":"96005","_from":"56436","_to":"56430"} +{"$label":"ACTS_IN","name":"Fat Freak Frank","type":"Role","_key":"96004","_from":"56435","_to":"56430"} +{"$label":"ACTS_IN","name":"Neuter Yuppie Man","type":"Role","_key":"96003","_from":"56434","_to":"56430"} +{"$label":"ACTS_IN","name":"Neuter Yuppie Woman","type":"Role","_key":"96002","_from":"56433","_to":"56430"} +{"$label":"ACTS_IN","name":"Weird Paperboy","type":"Role","_key":"96001","_from":"56432","_to":"56430"} +{"$label":"ACTS_IN","name":"Paige","type":"Role","_key":"95999","_from":"56431","_to":"56430"} +{"$label":"DIRECTED","_key":"96014","_from":"56440","_to":"56439"} +{"$label":"DIRECTED","_key":"119107","_from":"56440","_to":"70011"} +{"$label":"DIRECTED","_key":"96032","_from":"56450","_to":"56448"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96028","_from":"56449","_to":"56448"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96034","_from":"56453","_to":"56451"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96033","_from":"56452","_to":"56451"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"114109","_from":"56452","_to":"67203"} +{"$label":"ACTS_IN","name":"Le transformiste br\u00e9silien","type":"Role","_key":"113643","_from":"56452","_to":"66968"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"114214","_from":"56453","_to":"67274"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110362","_from":"56453","_to":"65214"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"100095","_from":"56453","_to":"59039"} +{"$label":"DIRECTED","_key":"96039","_from":"56456","_to":"56454"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96038","_from":"56455","_to":"56454"} +{"$label":"DIRECTED","_key":"105251","_from":"56456","_to":"61942"} +{"$label":"ACTS_IN","name":"Detective Mosker","type":"Role","_key":"96073","_from":"56474","_to":"56457"} +{"$label":"ACTS_IN","name":"Older Guy","type":"Role","_key":"96072","_from":"56473","_to":"56457"} +{"$label":"ACTS_IN","name":"Stripper","type":"Role","_key":"96071","_from":"56472","_to":"56457"} +{"$label":"ACTS_IN","name":"Barroom Dancer","type":"Role","_key":"96069","_from":"56471","_to":"56457"} +{"$label":"ACTS_IN","name":"Buxom Woman","type":"Role","_key":"96068","_from":"56470","_to":"56457"} +{"$label":"ACTS_IN","name":"Farmer with Shotgun","type":"Role","_key":"96067","_from":"56469","_to":"56457"} +{"$label":"ACTS_IN","name":"Car Salesman #2","type":"Role","_key":"96066","_from":"56468","_to":"56457"} +{"$label":"ACTS_IN","name":"Car Salesman #1","type":"Role","_key":"96065","_from":"56467","_to":"56457"} +{"$label":"ACTS_IN","name":"Customer","type":"Role","_key":"96064","_from":"56466","_to":"56457"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"96063","_from":"56465","_to":"56457"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"96061","_from":"56464","_to":"56457"} +{"$label":"ACTS_IN","name":"D.A.","type":"Role","_key":"96060","_from":"56463","_to":"56457"} +{"$label":"ACTS_IN","name":"Ernie","type":"Role","_key":"96058","_from":"56462","_to":"56457"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"96057","_from":"56461","_to":"56457"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"96053","_from":"56460","_to":"56457"} +{"$label":"DIRECTED","_key":"96041","_from":"56459","_to":"56457"} +{"$label":"DIRECTED","_key":"96040","_from":"56458","_to":"56457"} +{"$label":"DIRECTED","_key":"96085","_from":"56480","_to":"56476"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"96084","_from":"56479","_to":"56476"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"96083","_from":"56478","_to":"56476"} +{"$label":"ACTS_IN","name":"Kris","type":"Role","_key":"96082","_from":"56477","_to":"56476"} +{"$label":"ACTS_IN","name":"Bernard 'Twitch' Washington","type":"Role","_key":"96087","_from":"56482","_to":"56481"} +{"$label":"ACTS_IN","name":"Maxine Barnol","type":"Role","_key":"96090","_from":"56484","_to":"56483"} +{"$label":"DIRECTED","_key":"96110","_from":"56489","_to":"56487"} +{"$label":"ACTS_IN","name":"Guillaume Navarre","type":"Role","_key":"96108","_from":"56488","_to":"56487"} +{"$label":"ACTS_IN","name":"Jean-Pierre","type":"Role","_key":"119460","_from":"56488","_to":"70178"} +{"$label":"ACTS_IN","name":"Responsable accueil","type":"Role","_key":"118049","_from":"56488","_to":"69385"} +{"$label":"ACTS_IN","name":"Philippe Barrois","type":"Role","_key":"105240","_from":"56488","_to":"61936"} +{"$label":"ACTS_IN","name":"Coluche","type":"Role","_key":"100162","_from":"56488","_to":"59082"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96117","_from":"56493","_to":"56490"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96113","_from":"56492","_to":"56490"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96112","_from":"56491","_to":"56490"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"121615","_from":"56491","_to":"71447"} +{"$label":"ACTS_IN","name":"Monsieur Charles","type":"Role","_key":"105091","_from":"56492","_to":"61852"} +{"$label":"ACTS_IN","name":"Le Patron","type":"Role","_key":"96120","_from":"56496","_to":"56494"} +{"$label":"ACTS_IN","name":"Hamidou","type":"Role","_key":"96119","_from":"56495","_to":"56494"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"119462","_from":"56495","_to":"70178"} +{"$label":"ACTS_IN","name":"Narb\u00e9 (voix)","type":"Role","_key":"118728","_from":"56495","_to":"69812"} +{"$label":"ACTS_IN","name":"Youssouf Hammal","type":"Role","_key":"105093","_from":"56495","_to":"61852"} +{"$label":"ACTS_IN","name":"Sammy (voix)","type":"Role","_key":"118729","_from":"56496","_to":"69812"} +{"$label":"ACTS_IN","name":"Koskas","type":"Role","_key":"96126","_from":"56498","_to":"56497"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96130","_from":"56501","_to":"56500"} +{"$label":"DIRECTED","_key":"96131","_from":"56504","_to":"56503"} +{"$label":"ACTS_IN","name":"Louis Lacaze","type":"Role","_key":"96140","_from":"56506","_to":"56505"} +{"$label":"DIRECTED","_key":"96136","_from":"56506","_to":"56505"} +{"$label":"DIRECTED","_key":"96143","_from":"56509","_to":"56508"} +{"$label":"ACTS_IN","name":"Renaud","type":"Role","_key":"96149","_from":"56511","_to":"56510"} +{"$label":"DIRECTED","_key":"96167","_from":"56516","_to":"56513"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96166","_from":"56515","_to":"56513"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"96162","_from":"56514","_to":"56513"} +{"$label":"DIRECTED","_key":"96174","_from":"56524","_to":"56522"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"96173","_from":"56523","_to":"56522"} +{"$label":"ACTS_IN","name":"Edvard Tallaksen","type":"Role","_key":"96186","_from":"56535","_to":"56525"} +{"$label":"ACTS_IN","name":"Sykes\u00f8ster Liv","type":"Role","_key":"96185","_from":"56534","_to":"56525"} +{"$label":"ACTS_IN","name":"Roy Nilsen","type":"Role","_key":"96184","_from":"56533","_to":"56525"} +{"$label":"ACTS_IN","name":"Lars Emil Erichsen","type":"Role","_key":"96183","_from":"56532","_to":"56525"} +{"$label":"ACTS_IN","name":"Sigurd Jacobsen","type":"Role","_key":"96182","_from":"56531","_to":"56525"} +{"$label":"ACTS_IN","name":"Jens Christian Hauge","type":"Role","_key":"96181","_from":"56530","_to":"56525"} +{"$label":"ACTS_IN","name":"Solveig Johnsrud","type":"Role","_key":"96180","_from":"56529","_to":"56525"} +{"$label":"ACTS_IN","name":"Gunnar S\u00f8nsteby","type":"Role","_key":"96178","_from":"56528","_to":"56525"} +{"$label":"ACTS_IN","name":"Ida Nikoline 'Tikken' Lindebr\u00e6kke","type":"Role","_key":"96176","_from":"56527","_to":"56525"} +{"$label":"ACTS_IN","name":"Max Manus","type":"Role","_key":"96175","_from":"56526","_to":"56525"} +{"$label":"DIRECTED","_key":"116459","_from":"56526","_to":"68545"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"116453","_from":"56526","_to":"68545"} +{"$label":"ACTS_IN","name":"Bud \/ Barnehagebarn (voice)","type":"Role","_key":"106626","_from":"56526","_to":"62823"} +{"$label":"ACTS_IN","name":"Geir","type":"Role","_key":"103484","_from":"56526","_to":"60873"} +{"$label":"ACTS_IN","name":"Jan Thomas","type":"Role","_key":"107073","_from":"56533","_to":"63130"} +{"$label":"ACTS_IN","name":"Fujimura (voice)","type":"Role","_key":"96197","_from":"56541","_to":"56536"} +{"$label":"ACTS_IN","name":"Suzuki (voice)","type":"Role","_key":"96196","_from":"56540","_to":"56536"} +{"$label":"ACTS_IN","name":"Sawada (voice)","type":"Role","_key":"96195","_from":"56539","_to":"56536"} +{"$label":"ACTS_IN","name":"Shiro (voice)","type":"Role","_key":"96193","_from":"56538","_to":"56536"} +{"$label":"DIRECTED","_key":"96191","_from":"56537","_to":"56536"} +{"$label":"ACTS_IN","name":"Gouki","type":"Role","_key":"112225","_from":"56541","_to":"66275"} +{"$label":"DIRECTED","_key":"96201","_from":"56548","_to":"56545"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"96200","_from":"56547","_to":"56545"} +{"$label":"ACTS_IN","name":"Toy Nutcracker","type":"Role","_key":"96199","_from":"56546","_to":"56545"} +{"$label":"ACTS_IN","name":"Nikolai 'Kolya' Rodchenko","type":"Role","_key":"106939","_from":"56546","_to":"63051"} +{"$label":"ACTS_IN","name":"Pocahontas (singing voice)","type":"Role","_key":"96207","_from":"56551","_to":"56549"} +{"$label":"ACTS_IN","name":"John Smith","type":"Role","_key":"96204","_from":"56550","_to":"56549"} +{"$label":"DIRECTED","_key":"96216","_from":"56554","_to":"56552"} +{"$label":"ACTS_IN","name":"Mistress Phyllis Morley","type":"Role","_key":"96210","_from":"56553","_to":"56552"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"119654","_from":"56553","_to":"70277"} +{"$label":"ACTS_IN","name":"The Kid","type":"Role","_key":"96217","_from":"56556","_to":"56555"} +{"$label":"DIRECTED","_key":"96238","_from":"56560","_to":"56559"} +{"$label":"DIRECTED","_key":"117801","_from":"56560","_to":"69242"} +{"$label":"ACTS_IN","name":"Miles Tuck","type":"Role","_key":"96261","_from":"56563","_to":"56562"} +{"$label":"ACTS_IN","name":"Jute","type":"Role","_key":"114428","_from":"56563","_to":"67409"} +{"$label":"ACTS_IN","name":"Shopkeeper","type":"Role","_key":"96274","_from":"56571","_to":"56564"} +{"$label":"ACTS_IN","name":"Aboriginal Woman","type":"Role","_key":"96273","_from":"56570","_to":"56564"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"96272","_from":"56569","_to":"56564"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"96270","_from":"56568","_to":"56564"} +{"$label":"ACTS_IN","name":"Gary","type":"Role","_key":"96269","_from":"56567","_to":"56564"} +{"$label":"DIRECTED","_key":"96267","_from":"56566","_to":"56564"} +{"$label":"DIRECTED","_key":"96266","_from":"56565","_to":"56564"} +{"$label":"DIRECTED","_key":"96307","_from":"56596","_to":"56572"} +{"$label":"DIRECTED","_key":"96306","_from":"56595","_to":"56572"} +{"$label":"DIRECTED","_key":"96305","_from":"56594","_to":"56572"} +{"$label":"ACTS_IN","name":"Film Runner","type":"Role","_key":"96302","_from":"56593","_to":"56572"} +{"$label":"ACTS_IN","name":"Period Film Director","type":"Role","_key":"96301","_from":"56592","_to":"56572"} +{"$label":"ACTS_IN","name":"Period Film Lover","type":"Role","_key":"96300","_from":"56591","_to":"56572"} +{"$label":"ACTS_IN","name":"Period Film Protege","type":"Role","_key":"96298","_from":"56590","_to":"56572"} +{"$label":"ACTS_IN","name":"Surgeon","type":"Role","_key":"96297","_from":"56589","_to":"56572"} +{"$label":"ACTS_IN","name":"Hospital Nurse","type":"Role","_key":"96296","_from":"56588","_to":"56572"} +{"$label":"ACTS_IN","name":"Hospital Nurse","type":"Role","_key":"96295","_from":"56587","_to":"56572"} +{"$label":"ACTS_IN","name":"Shop Assistant","type":"Role","_key":"96294","_from":"56586","_to":"56572"} +{"$label":"ACTS_IN","name":"Art School Teacher","type":"Role","_key":"96293","_from":"56585","_to":"56572"} +{"$label":"ACTS_IN","name":"Hospital Runner","type":"Role","_key":"96290","_from":"56584","_to":"56572"} +{"$label":"ACTS_IN","name":"Hospital Drama Family","type":"Role","_key":"96287","_from":"56583","_to":"56572"} +{"$label":"ACTS_IN","name":"Hospital Drama Family","type":"Role","_key":"96286","_from":"56582","_to":"56572"} +{"$label":"ACTS_IN","name":"Jillian","type":"Role","_key":"96285","_from":"56581","_to":"56572"} +{"$label":"ACTS_IN","name":"Royal Court Actress","type":"Role","_key":"96284","_from":"56580","_to":"56572"} +{"$label":"ACTS_IN","name":"Royal Court Actress","type":"Role","_key":"96283","_from":"56579","_to":"56572"} +{"$label":"ACTS_IN","name":"Royal Court Actress","type":"Role","_key":"96282","_from":"56578","_to":"56572"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"96281","_from":"56577","_to":"56572"} +{"$label":"ACTS_IN","name":"Health Centre Nurse","type":"Role","_key":"96280","_from":"56576","_to":"56572"} +{"$label":"ACTS_IN","name":"Health Centre Nurse","type":"Role","_key":"96279","_from":"56575","_to":"56572"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"96278","_from":"56574","_to":"56572"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"96277","_from":"56573","_to":"56572"} +{"$label":"ACTS_IN","name":"Onaha","type":"Role","_key":"101158","_from":"56585","_to":"59587"} +{"$label":"DIRECTED","_key":"96311","_from":"56599","_to":"56598"} +{"$label":"DIRECTED","_key":"115030","_from":"56599","_to":"67736"} +{"$label":"DIRECTED","_key":"96363","_from":"56646","_to":"56600"} +{"$label":"DIRECTED","_key":"96362","_from":"56645","_to":"56600"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"96360","_from":"56644","_to":"56600"} +{"$label":"ACTS_IN","name":"Long Haired Henchman","type":"Role","_key":"96359","_from":"56643","_to":"56600"} +{"$label":"ACTS_IN","name":"One Eye Henchman","type":"Role","_key":"96358","_from":"56642","_to":"56600"} +{"$label":"ACTS_IN","name":"Scar Mouthed Henchman","type":"Role","_key":"96357","_from":"56641","_to":"56600"} +{"$label":"ACTS_IN","name":"Reporter on TV","type":"Role","_key":"96356","_from":"56640","_to":"56600"} +{"$label":"ACTS_IN","name":"Barmaid","type":"Role","_key":"96355","_from":"56639","_to":"56600"} +{"$label":"ACTS_IN","name":"Barmaid","type":"Role","_key":"96354","_from":"56638","_to":"56600"} +{"$label":"ACTS_IN","name":"Murderer in Black","type":"Role","_key":"96353","_from":"56637","_to":"56600"} +{"$label":"ACTS_IN","name":"Murderer in Brown","type":"Role","_key":"96352","_from":"56636","_to":"56600"} +{"$label":"ACTS_IN","name":"Male Constable","type":"Role","_key":"96351","_from":"56635","_to":"56600"} +{"$label":"ACTS_IN","name":"Female Constable","type":"Role","_key":"96350","_from":"56634","_to":"56600"} +{"$label":"ACTS_IN","name":"Detective Caithness","type":"Role","_key":"96349","_from":"56633","_to":"56600"} +{"$label":"ACTS_IN","name":"Lady MacDuff","type":"Role","_key":"96347","_from":"56632","_to":"56600"} +{"$label":"ACTS_IN","name":"Malcolm's Girl","type":"Role","_key":"96346","_from":"56631","_to":"56600"} +{"$label":"ACTS_IN","name":"Angus's Girl","type":"Role","_key":"96345","_from":"56630","_to":"56600"} +{"$label":"ACTS_IN","name":"Ross's Girl","type":"Role","_key":"96344","_from":"56629","_to":"56600"} +{"$label":"ACTS_IN","name":"Fleance","type":"Role","_key":"96343","_from":"56628","_to":"56600"} +{"$label":"ACTS_IN","name":"Lady MacBeth's Maid","type":"Role","_key":"96342","_from":"56627","_to":"56600"} +{"$label":"ACTS_IN","name":"Singer on TV","type":"Role","_key":"96341","_from":"56626","_to":"56600"} +{"$label":"ACTS_IN","name":"Seyton","type":"Role","_key":"96340","_from":"56625","_to":"56600"} +{"$label":"ACTS_IN","name":"Detective Mentieth","type":"Role","_key":"96339","_from":"56624","_to":"56600"} +{"$label":"ACTS_IN","name":"Duncan's Bearded Bodyguard","type":"Role","_key":"96338","_from":"56623","_to":"56600"} +{"$label":"ACTS_IN","name":"Duncan's Bald Bodyguard","type":"Role","_key":"96337","_from":"56622","_to":"56600"} +{"$label":"ACTS_IN","name":"Angus","type":"Role","_key":"96336","_from":"56621","_to":"56600"} +{"$label":"ACTS_IN","name":"Chinese Businessman","type":"Role","_key":"96334","_from":"56620","_to":"56600"} +{"$label":"ACTS_IN","name":"Cawdor","type":"Role","_key":"96333","_from":"56619","_to":"56600"} +{"$label":"ACTS_IN","name":"Getaway Driver","type":"Role","_key":"96332","_from":"56618","_to":"56600"} +{"$label":"ACTS_IN","name":"Elevator Gunman","type":"Role","_key":"96331","_from":"56617","_to":"56600"} +{"$label":"ACTS_IN","name":"Girl Shooter #2","type":"Role","_key":"96330","_from":"56616","_to":"56600"} +{"$label":"ACTS_IN","name":"Girl Shooter #1","type":"Role","_key":"96329","_from":"56615","_to":"56600"} +{"$label":"ACTS_IN","name":"Crew Cut Gunman","type":"Role","_key":"96328","_from":"56614","_to":"56600"} +{"$label":"ACTS_IN","name":"Goateed Gunman","type":"Role","_key":"96327","_from":"56613","_to":"56600"} +{"$label":"ACTS_IN","name":"MacDonwald's Bagman","type":"Role","_key":"96326","_from":"56612","_to":"56600"} +{"$label":"ACTS_IN","name":"MacDonwald","type":"Role","_key":"96325","_from":"56611","_to":"56600"} +{"$label":"ACTS_IN","name":"Lennox","type":"Role","_key":"96324","_from":"56610","_to":"56600"} +{"$label":"ACTS_IN","name":"Ross","type":"Role","_key":"96323","_from":"56609","_to":"56600"} +{"$label":"ACTS_IN","name":"MacBeth's Bagman","type":"Role","_key":"96321","_from":"56608","_to":"56600"} +{"$label":"ACTS_IN","name":"Henchman with Glasses","type":"Role","_key":"96320","_from":"56607","_to":"56600"} +{"$label":"ACTS_IN","name":"3rd Witch","type":"Role","_key":"96319","_from":"56606","_to":"56600"} +{"$label":"ACTS_IN","name":"2nd Witch","type":"Role","_key":"96318","_from":"56605","_to":"56600"} +{"$label":"ACTS_IN","name":"1st Witch","type":"Role","_key":"96317","_from":"56604","_to":"56600"} +{"$label":"ACTS_IN","name":"Siward","type":"Role","_key":"96316","_from":"56603","_to":"56600"} +{"$label":"ACTS_IN","name":"MacDuff","type":"Role","_key":"96315","_from":"56602","_to":"56600"} +{"$label":"ACTS_IN","name":"Banquo","type":"Role","_key":"96314","_from":"56601","_to":"56600"} +{"$label":"ACTS_IN","name":"Rene LaRoque","type":"Role","_key":"117921","_from":"56601","_to":"69318"} +{"$label":"ACTS_IN","name":"Detective Andretti","type":"Role","_key":"97638","_from":"56601","_to":"57493"} +{"$label":"ACTS_IN","name":"Sydney Policeman #2","type":"Role","_key":"96437","_from":"56601","_to":"56686"} +{"$label":"ACTS_IN","name":"Marty Boomstein","type":"Role","_key":"119482","_from":"56602","_to":"70188"} +{"$label":"ACTS_IN","name":"Bobby Mac","type":"Role","_key":"119478","_from":"56603","_to":"70188"} +{"$label":"ACTS_IN","name":"Mathew Travers","type":"Role","_key":"106821","_from":"56603","_to":"62970"} +{"$label":"ACTS_IN","name":"Mike Paddock","type":"Role","_key":"106392","_from":"56603","_to":"62687"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"97456","_from":"56603","_to":"57394"} +{"$label":"ACTS_IN","name":"Milo","type":"Role","_key":"96418","_from":"56609","_to":"56686"} +{"$label":"DIRECTED","_key":"106282","_from":"56611","_to":"62608"} +{"$label":"ACTS_IN","name":"Bozo","type":"Role","_key":"102216","_from":"56624","_to":"60147"} +{"$label":"ACTS_IN","name":"Tommy Boy","type":"Role","_key":"119477","_from":"56636","_to":"70188"} +{"$label":"ACTS_IN","name":"Ben Kinnear","type":"Role","_key":"106391","_from":"56636","_to":"62687"} +{"$label":"ACTS_IN","name":"Jack Simpson","type":"Role","_key":"101372","_from":"56636","_to":"59675"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"108626","_from":"56644","_to":"64191"} +{"$label":"DIRECTED","_key":"96412","_from":"56685","_to":"56647"} +{"$label":"DIRECTED","_key":"96411","_from":"56684","_to":"56647"} +{"$label":"DIRECTED","_key":"96410","_from":"56683","_to":"56647"} +{"$label":"ACTS_IN","name":"Salon Woman","type":"Role","_key":"96408","_from":"56682","_to":"56647"} +{"$label":"ACTS_IN","name":"Beautician","type":"Role","_key":"96407","_from":"56681","_to":"56647"} +{"$label":"ACTS_IN","name":"Man in Jail","type":"Role","_key":"96406","_from":"56680","_to":"56647"} +{"$label":"ACTS_IN","name":"Bagel's Friend","type":"Role","_key":"96405","_from":"56679","_to":"56647"} +{"$label":"ACTS_IN","name":"Bagel's Friend","type":"Role","_key":"96404","_from":"56678","_to":"56647"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"96403","_from":"56677","_to":"56647"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"96402","_from":"56676","_to":"56647"} +{"$label":"ACTS_IN","name":"Woman at Wedding","type":"Role","_key":"96401","_from":"56675","_to":"56647"} +{"$label":"ACTS_IN","name":"Drunk at Wedding","type":"Role","_key":"96400","_from":"56674","_to":"56647"} +{"$label":"ACTS_IN","name":"Rabbi","type":"Role","_key":"96399","_from":"56673","_to":"56647"} +{"$label":"ACTS_IN","name":"Soap Opera Woman","type":"Role","_key":"96398","_from":"56672","_to":"56647"} +{"$label":"ACTS_IN","name":"Soap Opera Man","type":"Role","_key":"96397","_from":"56671","_to":"56647"} +{"$label":"ACTS_IN","name":"Guy at Pool Hall","type":"Role","_key":"96396","_from":"56670","_to":"56647"} +{"$label":"ACTS_IN","name":"Knocko","type":"Role","_key":"96395","_from":"56669","_to":"56647"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"96394","_from":"56668","_to":"56647"} +{"$label":"ACTS_IN","name":"Clothing Hustler","type":"Role","_key":"96393","_from":"56667","_to":"56647"} +{"$label":"ACTS_IN","name":"Eddie Simmons' Father","type":"Role","_key":"96392","_from":"56666","_to":"56647"} +{"$label":"ACTS_IN","name":"Billy Howard's Father","type":"Role","_key":"96391","_from":"56665","_to":"56647"} +{"$label":"ACTS_IN","name":"Announcer","type":"Role","_key":"96390","_from":"56664","_to":"56647"} +{"$label":"ACTS_IN","name":"Newscaster","type":"Role","_key":"96389","_from":"56663","_to":"56647"} +{"$label":"ACTS_IN","name":"Audio Man","type":"Role","_key":"96388","_from":"56662","_to":"56647"} +{"$label":"ACTS_IN","name":"Technical Director","type":"Role","_key":"96387","_from":"56661","_to":"56647"} +{"$label":"ACTS_IN","name":"TV Director","type":"Role","_key":"96386","_from":"56660","_to":"56647"} +{"$label":"ACTS_IN","name":"TV Customer","type":"Role","_key":"96385","_from":"56659","_to":"56647"} +{"$label":"ACTS_IN","name":"Elyse","type":"Role","_key":"96383","_from":"56658","_to":"56647"} +{"$label":"ACTS_IN","name":"Second Stripper","type":"Role","_key":"96382","_from":"56657","_to":"56647"} +{"$label":"ACTS_IN","name":"First Stripper","type":"Role","_key":"96381","_from":"56656","_to":"56647"} +{"$label":"ACTS_IN","name":"Howard Fenwick","type":"Role","_key":"96380","_from":"56655","_to":"56647"} +{"$label":"ACTS_IN","name":"Methan","type":"Role","_key":"96379","_from":"56654","_to":"56647"} +{"$label":"ACTS_IN","name":"Jane Chisholm","type":"Role","_key":"96378","_from":"56653","_to":"56647"} +{"$label":"ACTS_IN","name":"David Frazer","type":"Role","_key":"96377","_from":"56652","_to":"56647"} +{"$label":"ACTS_IN","name":"Diane","type":"Role","_key":"96375","_from":"56651","_to":"56647"} +{"$label":"ACTS_IN","name":"Carol Heathrow","type":"Role","_key":"96374","_from":"56650","_to":"56647"} +{"$label":"ACTS_IN","name":"Mrs. Simmons","type":"Role","_key":"96373","_from":"56649","_to":"56647"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"96371","_from":"56648","_to":"56647"} +{"$label":"DIRECTED","_key":"105625","_from":"56668","_to":"62143"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102666","_from":"56669","_to":"60399"} +{"$label":"DIRECTED","_key":"96456","_from":"56724","_to":"56686"} +{"$label":"DIRECTED","_key":"96455","_from":"56723","_to":"56686"} +{"$label":"DIRECTED","_key":"96454","_from":"56722","_to":"56686"} +{"$label":"ACTS_IN","name":"Brisbane Landlord phone vocal","type":"Role","_key":"96453","_from":"56721","_to":"56686"} +{"$label":"ACTS_IN","name":"Rugby Man animalistic grunts","type":"Role","_key":"96452","_from":"56720","_to":"56686"} +{"$label":"ACTS_IN","name":"Cashmere Sweater orgasmic vocals","type":"Role","_key":"96451","_from":"56719","_to":"56686"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"96450","_from":"56718","_to":"56686"} +{"$label":"ACTS_IN","name":"Dirk's Friend","type":"Role","_key":"96449","_from":"56717","_to":"56686"} +{"$label":"ACTS_IN","name":"O'Neill's Partner","type":"Role","_key":"96448","_from":"56716","_to":"56686"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"96447","_from":"56715","_to":"56686"} +{"$label":"ACTS_IN","name":"Female Guest","type":"Role","_key":"96446","_from":"56714","_to":"56686"} +{"$label":"ACTS_IN","name":"Male Guest","type":"Role","_key":"96445","_from":"56713","_to":"56686"} +{"$label":"ACTS_IN","name":"Groomsman","type":"Role","_key":"96444","_from":"56712","_to":"56686"} +{"$label":"ACTS_IN","name":"Groom","type":"Role","_key":"96443","_from":"56711","_to":"56686"} +{"$label":"ACTS_IN","name":"Flowergirl","type":"Role","_key":"96442","_from":"56710","_to":"56686"} +{"$label":"ACTS_IN","name":"Bridesmaid","type":"Role","_key":"96441","_from":"56709","_to":"56686"} +{"$label":"ACTS_IN","name":"Baby in Stroller","type":"Role","_key":"96440","_from":"56708","_to":"56686"} +{"$label":"ACTS_IN","name":"Walking Mother","type":"Role","_key":"96439","_from":"56707","_to":"56686"} +{"$label":"ACTS_IN","name":"Young Singing Skin","type":"Role","_key":"96438","_from":"56706","_to":"56686"} +{"$label":"ACTS_IN","name":"Sydney Policeman #1","type":"Role","_key":"96436","_from":"56705","_to":"56686"} +{"$label":"ACTS_IN","name":"Rugby Man","type":"Role","_key":"96435","_from":"56704","_to":"56686"} +{"$label":"ACTS_IN","name":"Cashmere Sweater Babe","type":"Role","_key":"96434","_from":"56703","_to":"56686"} +{"$label":"ACTS_IN","name":"The Bride","type":"Role","_key":"96433","_from":"56702","_to":"56686"} +{"$label":"ACTS_IN","name":"Welfare Officer","type":"Role","_key":"96432","_from":"56701","_to":"56686"} +{"$label":"ACTS_IN","name":"Repo Man","type":"Role","_key":"96431","_from":"56700","_to":"56686"} +{"$label":"ACTS_IN","name":"Melbourne Detective #2","type":"Role","_key":"96430","_from":"56699","_to":"56686"} +{"$label":"ACTS_IN","name":"Melbourne Detective #1","type":"Role","_key":"96429","_from":"56698","_to":"56686"} +{"$label":"ACTS_IN","name":"Uptight","type":"Role","_key":"96428","_from":"56697","_to":"56686"} +{"$label":"ACTS_IN","name":"Detective O'Neill","type":"Role","_key":"96427","_from":"56696","_to":"56686"} +{"$label":"ACTS_IN","name":"Jabber","type":"Role","_key":"96426","_from":"56695","_to":"56686"} +{"$label":"ACTS_IN","name":"Brisbane Goon #2","type":"Role","_key":"96425","_from":"56694","_to":"56686"} +{"$label":"ACTS_IN","name":"Brisbane Goon #1","type":"Role","_key":"96424","_from":"56693","_to":"56686"} +{"$label":"ACTS_IN","name":"Satomi Tiger","type":"Role","_key":"96423","_from":"56692","_to":"56686"} +{"$label":"ACTS_IN","name":"Derek the Bank Clerk","type":"Role","_key":"96422","_from":"56691","_to":"56686"} +{"$label":"ACTS_IN","name":"Iain the Socialist","type":"Role","_key":"96421","_from":"56690","_to":"56686"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"96420","_from":"56689","_to":"56686"} +{"$label":"ACTS_IN","name":"Flip","type":"Role","_key":"96417","_from":"56688","_to":"56686"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"96414","_from":"56687","_to":"56686"} +{"$label":"ACTS_IN","name":"Bob Leishman","type":"Role","_key":"121597","_from":"56698","_to":"71440"} +{"$label":"ACTS_IN","name":"Dad","type":"Role","_key":"96632","_from":"56698","_to":"56832"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"105512","_from":"56699","_to":"62083"} +{"$label":"ACTS_IN","name":"John Skinner","type":"Role","_key":"97643","_from":"56699","_to":"57493"} +{"$label":"ACTS_IN","name":"Colin\/Steven Philips","type":"Role","_key":"97457","_from":"56699","_to":"57394"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"108628","_from":"56720","_to":"64191"} +{"$label":"DIRECTED","_key":"96548","_from":"56778","_to":"56725"} +{"$label":"DIRECTED","_key":"96547","_from":"56777","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96544","_from":"56776","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96543","_from":"56775","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96542","_from":"56774","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96541","_from":"56773","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96536","_from":"56772","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96535","_from":"56771","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96534","_from":"56770","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96533","_from":"56769","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96532","_from":"56768","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96531","_from":"56767","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96530","_from":"56766","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96529","_from":"56765","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96526","_from":"56764","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96525","_from":"56763","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96522","_from":"56762","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96521","_from":"56761","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96520","_from":"56760","_to":"56725"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"96518","_from":"56759","_to":"56725"} +{"$label":"ACTS_IN","name":"Brittany","type":"Role","_key":"96517","_from":"56758","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96516","_from":"56757","_to":"56725"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"96515","_from":"56756","_to":"56725"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"96514","_from":"56755","_to":"56725"} +{"$label":"ACTS_IN","name":"News Correspondent","type":"Role","_key":"96513","_from":"56754","_to":"56725"} +{"$label":"ACTS_IN","name":"Valet","type":"Role","_key":"96512","_from":"56753","_to":"56725"} +{"$label":"ACTS_IN","name":"Maitre' D","type":"Role","_key":"96510","_from":"56752","_to":"56725"} +{"$label":"ACTS_IN","name":"Heather Bolan","type":"Role","_key":"96509","_from":"56751","_to":"56725"} +{"$label":"ACTS_IN","name":"Barbie","type":"Role","_key":"96507","_from":"56750","_to":"56725"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"96506","_from":"56749","_to":"56725"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"96505","_from":"56748","_to":"56725"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"96504","_from":"56747","_to":"56725"} +{"$label":"ACTS_IN","name":"Gertrude Kid","type":"Role","_key":"96503","_from":"56746","_to":"56725"} +{"$label":"ACTS_IN","name":"Bully","type":"Role","_key":"96500","_from":"56745","_to":"56725"} +{"$label":"ACTS_IN","name":"Bully","type":"Role","_key":"96499","_from":"56744","_to":"56725"} +{"$label":"ACTS_IN","name":"Bully","type":"Role","_key":"96498","_from":"56743","_to":"56725"} +{"$label":"ACTS_IN","name":"Map Seller","type":"Role","_key":"96497","_from":"56742","_to":"56725"} +{"$label":"ACTS_IN","name":"Ring Girl","type":"Role","_key":"96494","_from":"56741","_to":"56725"} +{"$label":"ACTS_IN","name":"Young Dickie","type":"Role","_key":"96493","_from":"56740","_to":"56725"} +{"$label":"ACTS_IN","name":"Strange Man","type":"Role","_key":"96490","_from":"56739","_to":"56725"} +{"$label":"ACTS_IN","name":"Sad Eye Sadie","type":"Role","_key":"96489","_from":"56738","_to":"56725"} +{"$label":"ACTS_IN","name":"Biker","type":"Role","_key":"96488","_from":"56737","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96483","_from":"56736","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96482","_from":"56735","_to":"56725"} +{"$label":"ACTS_IN","name":"Lamaze Group Leader","type":"Role","_key":"96480","_from":"56734","_to":"56725"} +{"$label":"ACTS_IN","name":"Counselor","type":"Role","_key":"96479","_from":"56733","_to":"56725"} +{"$label":"ACTS_IN","name":"Alcoholic Speaker","type":"Role","_key":"96477","_from":"56732","_to":"56725"} +{"$label":"ACTS_IN","name":"Angry Driver","type":"Role","_key":"96476","_from":"56731","_to":"56725"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"96473","_from":"56730","_to":"56725"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"96472","_from":"56729","_to":"56725"} +{"$label":"ACTS_IN","name":"Guy in Car","type":"Role","_key":"96470","_from":"56728","_to":"56725"} +{"$label":"ACTS_IN","name":"Emmanuel's Entourage","type":"Role","_key":"96468","_from":"56727","_to":"56725"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96467","_from":"56726","_to":"56725"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"97599","_from":"56729","_to":"57466"} +{"$label":"ACTS_IN","name":"Avery Arable","type":"Role","_key":"103458","_from":"56735","_to":"60852"} +{"$label":"ACTS_IN","name":"Senile Man","type":"Role","_key":"97612","_from":"56737","_to":"57466"} +{"$label":"ACTS_IN","name":"Nicolas","type":"Role","_key":"118694","_from":"56740","_to":"69790"} +{"$label":"ACTS_IN","name":"Vivian Hedgeworth","type":"Role","_key":"121049","_from":"56775","_to":"71084"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"101901","_from":"56775","_to":"59972"} +{"$label":"ACTS_IN","name":"Alexander McGask","type":"Role","_key":"96552","_from":"56783","_to":"56779"} +{"$label":"ACTS_IN","name":"William \"Psychobilly\" Casgair","type":"Role","_key":"96551","_from":"56782","_to":"56779"} +{"$label":"ACTS_IN","name":"Mercy Hawkins","type":"Role","_key":"96550","_from":"56781","_to":"56779"} +{"$label":"DIRECTED","_key":"96549","_from":"56780","_to":"56779"} +{"$label":"DIRECTED","_key":"96598","_from":"56821","_to":"56784"} +{"$label":"DIRECTED","_key":"96597","_from":"56820","_to":"56784"} +{"$label":"DIRECTED","_key":"96596","_from":"56819","_to":"56784"} +{"$label":"ACTS_IN","name":"Handcock's Wife","type":"Role","_key":"96593","_from":"56818","_to":"56784"} +{"$label":"ACTS_IN","name":"Large Boer","type":"Role","_key":"96592","_from":"56817","_to":"56784"} +{"$label":"ACTS_IN","name":"Judge Advocate","type":"Role","_key":"96591","_from":"56816","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Girl","type":"Role","_key":"96590","_from":"56815","_to":"56784"} +{"$label":"ACTS_IN","name":"English Orderly","type":"Role","_key":"96589","_from":"56814","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Girl","type":"Role","_key":"96588","_from":"56813","_to":"56784"} +{"$label":"ACTS_IN","name":"Witton's Father","type":"Role","_key":"96587","_from":"56812","_to":"56784"} +{"$label":"ACTS_IN","name":"Feist","type":"Role","_key":"96586","_from":"56811","_to":"56784"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"96585","_from":"56810","_to":"56784"} +{"$label":"ACTS_IN","name":"Lt. Baxter","type":"Role","_key":"96584","_from":"56809","_to":"56784"} +{"$label":"ACTS_IN","name":"B\/M Little","type":"Role","_key":"96583","_from":"56808","_to":"56784"} +{"$label":"ACTS_IN","name":"Scots Sentry","type":"Role","_key":"96582","_from":"56807","_to":"56784"} +{"$label":"ACTS_IN","name":"Captain Nicholson","type":"Role","_key":"96581","_from":"56806","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Pianist","type":"Role","_key":"96580","_from":"56805","_to":"56784"} +{"$label":"ACTS_IN","name":"B\/M Thomas","type":"Role","_key":"96579","_from":"56804","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Girl","type":"Role","_key":"96578","_from":"56803","_to":"56784"} +{"$label":"ACTS_IN","name":"Mrs. Vanderberg","type":"Role","_key":"96577","_from":"56802","_to":"56784"} +{"$label":"ACTS_IN","name":"Mrs. Shiels","type":"Role","_key":"96576","_from":"56801","_to":"56784"} +{"$label":"ACTS_IN","name":"Hunt's Sister","type":"Role","_key":"96575","_from":"56800","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Singer","type":"Role","_key":"96574","_from":"56799","_to":"56784"} +{"$label":"ACTS_IN","name":"Black Guide","type":"Role","_key":"96573","_from":"56798","_to":"56784"} +{"$label":"ACTS_IN","name":"Lt. Reed","type":"Role","_key":"96572","_from":"56797","_to":"56784"} +{"$label":"ACTS_IN","name":"Court Reporter","type":"Role","_key":"96571","_from":"56796","_to":"56784"} +{"$label":"ACTS_IN","name":"Visser","type":"Role","_key":"96570","_from":"56795","_to":"56784"} +{"$label":"ACTS_IN","name":"Dr. Johnson","type":"Role","_key":"96569","_from":"56794","_to":"56784"} +{"$label":"ACTS_IN","name":"Boer Leader","type":"Role","_key":"96568","_from":"56793","_to":"56784"} +{"$label":"ACTS_IN","name":"Reverend H.V.C. Hess","type":"Role","_key":"96567","_from":"56792","_to":"56784"} +{"$label":"ACTS_IN","name":"Sargeant Cameron","type":"Role","_key":"96566","_from":"56791","_to":"56784"} +{"$label":"ACTS_IN","name":"Captain Robertson","type":"Role","_key":"96565","_from":"56790","_to":"56784"} +{"$label":"ACTS_IN","name":"Lord Horatio Kitchener","type":"Role","_key":"96564","_from":"56789","_to":"56784"} +{"$label":"ACTS_IN","name":"Major Charles Bolton","type":"Role","_key":"96563","_from":"56788","_to":"56784"} +{"$label":"ACTS_IN","name":"Sargeant Major Drummond","type":"Role","_key":"96559","_from":"56787","_to":"56784"} +{"$label":"ACTS_IN","name":"Col. Ian 'Johnny' Hamilton","type":"Role","_key":"96558","_from":"56786","_to":"56784"} +{"$label":"ACTS_IN","name":"Captain Simon Hunt","type":"Role","_key":"96557","_from":"56785","_to":"56784"} +{"$label":"ACTS_IN","name":"Ed Jacquard","type":"Role","_key":"111559","_from":"56788","_to":"65862"} +{"$label":"ACTS_IN","name":"Gina's Grandad","type":"Role","_key":"96988","_from":"56790","_to":"57043"} +{"$label":"ACTS_IN","name":"Len Johnson","type":"Role","_key":"101374","_from":"56794","_to":"59675"} +{"$label":"ACTS_IN","name":"Miss Walker","type":"Role","_key":"99538","_from":"56801","_to":"58679"} +{"$label":"DIRECTED","_key":"96600","_from":"56823","_to":"56822"} +{"$label":"DIRECTED","_key":"121565","_from":"56823","_to":"71426"} +{"$label":"DIRECTED","_key":"106129","_from":"56823","_to":"62504"} +{"$label":"DIRECTED","_key":"101043","_from":"56823","_to":"59543"} +{"$label":"ACTS_IN","name":"Fern City Show Judge","type":"Role","_key":"96614","_from":"56828","_to":"56824"} +{"$label":"ACTS_IN","name":"Fern City Show Spectator","type":"Role","_key":"96613","_from":"56827","_to":"56824"} +{"$label":"ACTS_IN","name":"Fern City Show Spectator","type":"Role","_key":"96612","_from":"56826","_to":"56824"} +{"$label":"ACTS_IN","name":"Hamilton Swan","type":"Role","_key":"96609","_from":"56825","_to":"56824"} +{"$label":"ACTS_IN","name":"Dr. Mathias","type":"Role","_key":"108701","_from":"56825","_to":"64246"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"96624","_from":"56831","_to":"56829"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"96623","_from":"56830","_to":"56829"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105396","_from":"56831","_to":"62012"} +{"$label":"ACTS_IN","name":"Fabio","type":"Role","_key":"96638","_from":"56838","_to":"56832"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"96637","_from":"56837","_to":"56832"} +{"$label":"ACTS_IN","name":"Prue","type":"Role","_key":"96636","_from":"56836","_to":"56832"} +{"$label":"ACTS_IN","name":"Bill-Bill","type":"Role","_key":"96635","_from":"56835","_to":"56832"} +{"$label":"ACTS_IN","name":"Yanni","type":"Role","_key":"96633","_from":"56834","_to":"56832"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"96628","_from":"56833","_to":"56832"} +{"$label":"DIRECTED","_key":"96671","_from":"56863","_to":"56840"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"96670","_from":"56862","_to":"56840"} +{"$label":"ACTS_IN","name":"Dave's Mate #2","type":"Role","_key":"96669","_from":"56861","_to":"56840"} +{"$label":"ACTS_IN","name":"Dave's Mate #1","type":"Role","_key":"96668","_from":"56860","_to":"56840"} +{"$label":"ACTS_IN","name":"Pregnant Jess","type":"Role","_key":"96667","_from":"56859","_to":"56840"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"96666","_from":"56858","_to":"56840"} +{"$label":"ACTS_IN","name":"Cherie","type":"Role","_key":"96665","_from":"56857","_to":"56840"} +{"$label":"ACTS_IN","name":"Junior Manager","type":"Role","_key":"96664","_from":"56856","_to":"56840"} +{"$label":"ACTS_IN","name":"Executive","type":"Role","_key":"96663","_from":"56855","_to":"56840"} +{"$label":"ACTS_IN","name":"Peach Queen","type":"Role","_key":"96662","_from":"56854","_to":"56840"} +{"$label":"ACTS_IN","name":"Personnel Officer","type":"Role","_key":"96661","_from":"56853","_to":"56840"} +{"$label":"ACTS_IN","name":"Thommo","type":"Role","_key":"96660","_from":"56852","_to":"56840"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"96659","_from":"56851","_to":"56840"} +{"$label":"ACTS_IN","name":"Grandpa","type":"Role","_key":"96658","_from":"56850","_to":"56840"} +{"$label":"ACTS_IN","name":"Kenny Carter","type":"Role","_key":"96657","_from":"56849","_to":"56840"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"96656","_from":"56848","_to":"56840"} +{"$label":"ACTS_IN","name":"Chen Poh","type":"Role","_key":"96655","_from":"56847","_to":"56840"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"96654","_from":"56846","_to":"56840"} +{"$label":"ACTS_IN","name":"Thuy","type":"Role","_key":"96653","_from":"56845","_to":"56840"} +{"$label":"ACTS_IN","name":"Kath","type":"Role","_key":"96652","_from":"56844","_to":"56840"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"96651","_from":"56843","_to":"56840"} +{"$label":"ACTS_IN","name":"Jass","type":"Role","_key":"96650","_from":"56842","_to":"56840"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"96649","_from":"56841","_to":"56840"} +{"$label":"ACTS_IN","name":"Sheriff Kyle Williams","type":"Role","_key":"117916","_from":"56841","_to":"69318"} +{"$label":"ACTS_IN","name":"Aaron Reynolds","type":"Role","_key":"96975","_from":"56841","_to":"57043"} +{"$label":"DIRECTED","_key":"96690","_from":"56873","_to":"56865"} +{"$label":"ACTS_IN","name":"Male Anchor","type":"Role","_key":"96689","_from":"56872","_to":"56865"} +{"$label":"ACTS_IN","name":"Female Anchor","type":"Role","_key":"96688","_from":"56871","_to":"56865"} +{"$label":"ACTS_IN","name":"Babysitter","type":"Role","_key":"96685","_from":"56870","_to":"56865"} +{"$label":"ACTS_IN","name":"Amy's Father","type":"Role","_key":"96684","_from":"56869","_to":"56865"} +{"$label":"ACTS_IN","name":"Allana","type":"Role","_key":"96681","_from":"56868","_to":"56865"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"96680","_from":"56867","_to":"56865"} +{"$label":"ACTS_IN","name":"Amy Walsh","type":"Role","_key":"96674","_from":"56866","_to":"56865"} +{"$label":"DIRECTED","_key":"96700","_from":"56882","_to":"56874"} +{"$label":"DIRECTED","_key":"96699","_from":"56881","_to":"56874"} +{"$label":"ACTS_IN","name":"Vomiting Girl","type":"Role","_key":"96698","_from":"56880","_to":"56874"} +{"$label":"ACTS_IN","name":"Man on Platform","type":"Role","_key":"96697","_from":"56879","_to":"56874"} +{"$label":"ACTS_IN","name":"Train Announcer (voice)","type":"Role","_key":"96696","_from":"56878","_to":"56874"} +{"$label":"ACTS_IN","name":"Maureen","type":"Role","_key":"96695","_from":"56877","_to":"56874"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"96694","_from":"56876","_to":"56874"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"96693","_from":"56875","_to":"56874"} +{"$label":"ACTS_IN","name":"Chiana","type":"Role","_key":"97348","_from":"56875","_to":"57329"} +{"$label":"ACTS_IN","name":"Laetitia","type":"Role","_key":"107977","_from":"56878","_to":"63771"} +{"$label":"DIRECTED","_key":"96726","_from":"56895","_to":"56883"} +{"$label":"DIRECTED","_key":"96725","_from":"56894","_to":"56883"} +{"$label":"DIRECTED","_key":"96724","_from":"56893","_to":"56883"} +{"$label":"DIRECTED","_key":"96723","_from":"56892","_to":"56883"} +{"$label":"DIRECTED","_key":"96722","_from":"56891","_to":"56883"} +{"$label":"DIRECTED","_key":"96721","_from":"56890","_to":"56883"} +{"$label":"ACTS_IN","name":"Carrie Ann","type":"Role","_key":"96719","_from":"56889","_to":"56883"} +{"$label":"ACTS_IN","name":"Apple","type":"Role","_key":"96718","_from":"56888","_to":"56883"} +{"$label":"ACTS_IN","name":"Priscilla","type":"Role","_key":"96716","_from":"56887","_to":"56883"} +{"$label":"ACTS_IN","name":"Boots","type":"Role","_key":"96715","_from":"56886","_to":"56883"} +{"$label":"ACTS_IN","name":"Dawn","type":"Role","_key":"96714","_from":"56885","_to":"56883"} +{"$label":"ACTS_IN","name":"Chillo","type":"Role","_key":"96709","_from":"56884","_to":"56883"} +{"$label":"ACTS_IN","name":"Vernon","type":"Role","_key":"102720","_from":"56884","_to":"60425"} +{"$label":"DIRECTED","_key":"96727","_from":"56897","_to":"56896"} +{"$label":"DIRECTED","_key":"113707","_from":"56897","_to":"67009"} +{"$label":"DIRECTED","_key":"96730","_from":"56897","_to":"56898"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"96733","_from":"56901","_to":"56899"} +{"$label":"DIRECTED","_key":"96731","_from":"56900","_to":"56899"} +{"$label":"ACTS_IN","name":"Jesus","type":"Role","_key":"119785","_from":"56901","_to":"70331"} +{"$label":"DIRECTED","_key":"96742","_from":"56906","_to":"56903"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96740","_from":"56905","_to":"56903"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96739","_from":"56904","_to":"56903"} +{"$label":"DIRECTED","_key":"96744","_from":"56908","_to":"56907"} +{"$label":"DIRECTED","_key":"96747","_from":"56912","_to":"56911"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117888","_from":"56912","_to":"69298"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"96754","_from":"56915","_to":"56913"} +{"$label":"ACTS_IN","name":"Shelby","type":"Role","_key":"96751","_from":"56914","_to":"56913"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"101989","_from":"56914","_to":"60012"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"96767","_from":"56919","_to":"56916"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"96766","_from":"56918","_to":"56916"} +{"$label":"ACTS_IN","name":"Gisele Harabo","type":"Role","_key":"96761","_from":"56917","_to":"56916"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"100717","_from":"56919","_to":"59387"} +{"$label":"ACTS_IN","name":"Jin","type":"Role","_key":"96781","_from":"56922","_to":"56921"} +{"$label":"ACTS_IN","name":"Flavia","type":"Role","_key":"121507","_from":"56922","_to":"71376"} +{"$label":"ACTS_IN","name":"Cantana","type":"Role","_key":"103807","_from":"56922","_to":"61054"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"96793","_from":"56925","_to":"56924"} +{"$label":"ACTS_IN","name":"Lucinda's Father","type":"Role","_key":"96814","_from":"56935","_to":"56926"} +{"$label":"ACTS_IN","name":"Lucinda's Mother","type":"Role","_key":"96813","_from":"56934","_to":"56926"} +{"$label":"ACTS_IN","name":"Miss Taylor (1959)","type":"Role","_key":"96812","_from":"56933","_to":"56926"} +{"$label":"ACTS_IN","name":"Miss Taylor (2009)","type":"Role","_key":"96811","_from":"56932","_to":"56926"} +{"$label":"ACTS_IN","name":"Younger Caleb","type":"Role","_key":"96810","_from":"56931","_to":"56926"} +{"$label":"ACTS_IN","name":"Lucinda Embry \/ Abby Wayland","type":"Role","_key":"96807","_from":"56930","_to":"56926"} +{"$label":"ACTS_IN","name":"The Stranger","type":"Role","_key":"96806","_from":"56929","_to":"56926"} +{"$label":"ACTS_IN","name":"Grace Koestler","type":"Role","_key":"96805","_from":"56928","_to":"56926"} +{"$label":"ACTS_IN","name":"Caleb Koestler","type":"Role","_key":"96803","_from":"56927","_to":"56926"} +{"$label":"ACTS_IN","name":"Linda Craig","type":"Role","_key":"99928","_from":"56928","_to":"58914"} +{"$label":"ACTS_IN","name":"Mrs. Quimby","type":"Role","_key":"121126","_from":"56932","_to":"71139"} +{"$label":"ACTS_IN","name":"Mrs McLeod","type":"Role","_key":"106838","_from":"56932","_to":"62978"} +{"$label":"DIRECTED","_key":"96820","_from":"56938","_to":"56936"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"96819","_from":"56937","_to":"56936"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"103403","_from":"56937","_to":"60828"} +{"$label":"ACTS_IN","name":"Lauri","type":"Role","_key":"102928","_from":"56937","_to":"60545"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"98414","_from":"56937","_to":"57976"} +{"$label":"DIRECTED","_key":"96862","_from":"56965","_to":"56940"} +{"$label":"DIRECTED","_key":"96861","_from":"56964","_to":"56940"} +{"$label":"DIRECTED","_key":"96860","_from":"56963","_to":"56940"} +{"$label":"ACTS_IN","name":"Fat Freddie","type":"Role","_key":"96858","_from":"56962","_to":"56940"} +{"$label":"ACTS_IN","name":"Aida","type":"Role","_key":"96856","_from":"56961","_to":"56940"} +{"$label":"ACTS_IN","name":"Juana","type":"Role","_key":"96855","_from":"56960","_to":"56940"} +{"$label":"ACTS_IN","name":"Mrs. Coleman","type":"Role","_key":"96853","_from":"56959","_to":"56940"} +{"$label":"ACTS_IN","name":"Mattie","type":"Role","_key":"96851","_from":"56958","_to":"56940"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"96850","_from":"56957","_to":"56940"} +{"$label":"ACTS_IN","name":"Nicholas","type":"Role","_key":"96849","_from":"56956","_to":"56940"} +{"$label":"ACTS_IN","name":"Tarleak","type":"Role","_key":"96848","_from":"56955","_to":"56940"} +{"$label":"ACTS_IN","name":"Rosie","type":"Role","_key":"96847","_from":"56954","_to":"56940"} +{"$label":"ACTS_IN","name":"Hilary","type":"Role","_key":"96846","_from":"56953","_to":"56940"} +{"$label":"ACTS_IN","name":"Enriquez","type":"Role","_key":"96845","_from":"56952","_to":"56940"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"96844","_from":"56951","_to":"56940"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"96843","_from":"56950","_to":"56940"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"96842","_from":"56949","_to":"56940"} +{"$label":"ACTS_IN","name":"Salvadore","type":"Role","_key":"96841","_from":"56948","_to":"56940"} +{"$label":"ACTS_IN","name":"Herbie","type":"Role","_key":"96839","_from":"56947","_to":"56940"} +{"$label":"ACTS_IN","name":"Darryl","type":"Role","_key":"96837","_from":"56946","_to":"56940"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"96836","_from":"56945","_to":"56940"} +{"$label":"ACTS_IN","name":"Aunt Frances","type":"Role","_key":"96835","_from":"56944","_to":"56940"} +{"$label":"ACTS_IN","name":"Chuckie","type":"Role","_key":"96833","_from":"56943","_to":"56940"} +{"$label":"ACTS_IN","name":"Corky","type":"Role","_key":"96830","_from":"56942","_to":"56940"} +{"$label":"ACTS_IN","name":"Michael (aka Fresh)","type":"Role","_key":"96826","_from":"56941","_to":"56940"} +{"$label":"ACTS_IN","name":"Young Mike","type":"Role","_key":"107610","_from":"56941","_to":"63522"} +{"$label":"ACTS_IN","name":"Coco","type":"Role","_key":"111673","_from":"56942","_to":"65929"} +{"$label":"DIRECTED","_key":"96888","_from":"56982","_to":"56966"} +{"$label":"ACTS_IN","name":"Rooster","type":"Role","_key":"96887","_from":"56981","_to":"56966"} +{"$label":"ACTS_IN","name":"Fatts","type":"Role","_key":"96886","_from":"56980","_to":"56966"} +{"$label":"ACTS_IN","name":"Rooster's Daughter","type":"Role","_key":"96885","_from":"56979","_to":"56966"} +{"$label":"ACTS_IN","name":"Rooster's Daughter","type":"Role","_key":"96884","_from":"56978","_to":"56966"} +{"$label":"ACTS_IN","name":"Rooster's Daughter","type":"Role","_key":"96883","_from":"56977","_to":"56966"} +{"$label":"ACTS_IN","name":"Rooster's Daughter","type":"Role","_key":"96882","_from":"56976","_to":"56966"} +{"$label":"ACTS_IN","name":"Auntie Belle","type":"Role","_key":"96881","_from":"56975","_to":"56966"} +{"$label":"ACTS_IN","name":"Young Percival","type":"Role","_key":"96880","_from":"56974","_to":"56966"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"96879","_from":"56973","_to":"56966"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"96878","_from":"56972","_to":"56966"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"96877","_from":"56971","_to":"56966"} +{"$label":"ACTS_IN","name":"Bobo","type":"Role","_key":"96876","_from":"56970","_to":"56966"} +{"$label":"ACTS_IN","name":"The Real Angel Davenport","type":"Role","_key":"96873","_from":"56969","_to":"56966"} +{"$label":"ACTS_IN","name":"Young Rooster","type":"Role","_key":"96872","_from":"56968","_to":"56966"} +{"$label":"ACTS_IN","name":"Zora","type":"Role","_key":"96867","_from":"56967","_to":"56966"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"109504","_from":"56967","_to":"64682"} +{"$label":"ACTS_IN","name":"Young Alicia","type":"Role","_key":"107609","_from":"56967","_to":"63522"} +{"$label":"ACTS_IN","name":"Tianna","type":"Role","_key":"100187","_from":"56967","_to":"59094"} +{"$label":"ACTS_IN","name":"Fo Fo Figgleys Kid","type":"Role","_key":"121011","_from":"56968","_to":"71073"} +{"$label":"ACTS_IN","name":"Tar Pits Kid","type":"Role","_key":"115116","_from":"56968","_to":"67789"} +{"$label":"ACTS_IN","name":"Ronnie Shields","type":"Role","_key":"104159","_from":"56968","_to":"61278"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"98707","_from":"56968","_to":"58173"} +{"$label":"ACTS_IN","name":"Nima","type":"Role","_key":"110035","_from":"56976","_to":"65011"} +{"$label":"ACTS_IN","name":"C-Note","type":"Role","_key":"105064","_from":"56981","_to":"61833"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"97777","_from":"56981","_to":"57579"} +{"$label":"DIRECTED","_key":"96912","_from":"57007","_to":"56983"} +{"$label":"DIRECTED","_key":"96911","_from":"57006","_to":"56983"} +{"$label":"DIRECTED","_key":"96910","_from":"57005","_to":"56983"} +{"$label":"DIRECTED","_key":"96909","_from":"57004","_to":"56983"} +{"$label":"ACTS_IN","name":"Young Peter","type":"Role","_key":"96908","_from":"57003","_to":"56983"} +{"$label":"ACTS_IN","name":"Young Ari","type":"Role","_key":"96907","_from":"57002","_to":"56983"} +{"$label":"ACTS_IN","name":"Nose Ring Girl","type":"Role","_key":"96906","_from":"57001","_to":"56983"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"96905","_from":"57000","_to":"56983"} +{"$label":"ACTS_IN","name":"Woman Sleeping","type":"Role","_key":"96904","_from":"56999","_to":"56983"} +{"$label":"ACTS_IN","name":"Boy in Car","type":"Role","_key":"96903","_from":"56998","_to":"56983"} +{"$label":"ACTS_IN","name":"Bride","type":"Role","_key":"96902","_from":"56997","_to":"56983"} +{"$label":"ACTS_IN","name":"Groom","type":"Role","_key":"96901","_from":"56996","_to":"56983"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"96900","_from":"56995","_to":"56983"} +{"$label":"ACTS_IN","name":"Vassili","type":"Role","_key":"96899","_from":"56994","_to":"56983"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"96898","_from":"56993","_to":"56983"} +{"$label":"ACTS_IN","name":"Tasia","type":"Role","_key":"96897","_from":"56992","_to":"56983"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"96896","_from":"56991","_to":"56983"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"96895","_from":"56990","_to":"56983"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"96894","_from":"56989","_to":"56983"} +{"$label":"ACTS_IN","name":"Dimitri","type":"Role","_key":"96893","_from":"56988","_to":"56983"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"96892","_from":"56987","_to":"56983"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"96891","_from":"56986","_to":"56983"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"96890","_from":"56985","_to":"56983"} +{"$label":"ACTS_IN","name":"Ari","type":"Role","_key":"96889","_from":"56984","_to":"56983"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"110319","_from":"56988","_to":"65182"} +{"$label":"ACTS_IN","name":"Nurse Panicale","type":"Role","_key":"111563","_from":"56992","_to":"65862"} +{"$label":"ACTS_IN","name":"Mr Claremont","type":"Role","_key":"102376","_from":"57004","_to":"60234"} +{"$label":"DIRECTED","_key":"98615","_from":"57004","_to":"58112"} +{"$label":"DIRECTED","_key":"98616","_from":"57005","_to":"58112"} +{"$label":"DIRECTED","_key":"97781","_from":"57006","_to":"57579"} +{"$label":"DIRECTED","_key":"96927","_from":"57013","_to":"57008"} +{"$label":"DIRECTED","_key":"96926","_from":"57012","_to":"57008"} +{"$label":"DIRECTED","_key":"96925","_from":"57011","_to":"57008"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"96924","_from":"57010","_to":"57008"} +{"$label":"ACTS_IN","name":"Thelma Rice","type":"Role","_key":"96923","_from":"57009","_to":"57008"} +{"$label":"DIRECTED","_key":"96947","_from":"57025","_to":"57014"} +{"$label":"DIRECTED","_key":"96946","_from":"57024","_to":"57014"} +{"$label":"DIRECTED","_key":"96945","_from":"57023","_to":"57014"} +{"$label":"DIRECTED","_key":"96944","_from":"57022","_to":"57014"} +{"$label":"ACTS_IN","name":"Mr. Elliott","type":"Role","_key":"96942","_from":"57021","_to":"57014"} +{"$label":"ACTS_IN","name":"China","type":"Role","_key":"96940","_from":"57020","_to":"57014"} +{"$label":"ACTS_IN","name":"Darla","type":"Role","_key":"96939","_from":"57019","_to":"57014"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"96937","_from":"57018","_to":"57014"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"96936","_from":"57017","_to":"57014"} +{"$label":"ACTS_IN","name":"Rowan","type":"Role","_key":"96935","_from":"57016","_to":"57014"} +{"$label":"ACTS_IN","name":"Fripp","type":"Role","_key":"96934","_from":"57015","_to":"57014"} +{"$label":"DIRECTED","_key":"96972","_from":"57042","_to":"57027"} +{"$label":"DIRECTED","_key":"96971","_from":"57041","_to":"57027"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"96969","_from":"57040","_to":"57027"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"96968","_from":"57039","_to":"57027"} +{"$label":"ACTS_IN","name":"Commissioner","type":"Role","_key":"96967","_from":"57038","_to":"57027"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"96966","_from":"57037","_to":"57027"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"96965","_from":"57036","_to":"57027"} +{"$label":"ACTS_IN","name":"Sparrow","type":"Role","_key":"96964","_from":"57035","_to":"57027"} +{"$label":"ACTS_IN","name":"Graham Newman","type":"Role","_key":"96963","_from":"57034","_to":"57027"} +{"$label":"ACTS_IN","name":"Jailer","type":"Role","_key":"96962","_from":"57033","_to":"57027"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"96961","_from":"57032","_to":"57027"} +{"$label":"ACTS_IN","name":"Nola","type":"Role","_key":"96959","_from":"57031","_to":"57027"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"96958","_from":"57030","_to":"57027"} +{"$label":"ACTS_IN","name":"Stevie Sprague","type":"Role","_key":"96957","_from":"57029","_to":"57027"} +{"$label":"ACTS_IN","name":"Sandra Sprague","type":"Role","_key":"96955","_from":"57028","_to":"57027"} +{"$label":"ACTS_IN","name":"Anne Olson","type":"Role","_key":"121594","_from":"57028","_to":"71440"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"109593","_from":"57028","_to":"64732"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107968","_from":"57028","_to":"63755"} +{"$label":"ACTS_IN","name":"Andy Walker","type":"Role","_key":"107555","_from":"57029","_to":"63475"} +{"$label":"ACTS_IN","name":"Greg 'Smithy' Smith","type":"Role","_key":"106286","_from":"57029","_to":"62608"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"97641","_from":"57029","_to":"57493"} +{"$label":"ACTS_IN","name":"Maggie Pike","type":"Role","_key":"99944","_from":"57030","_to":"58914"} +{"$label":"DIRECTED","_key":"96999","_from":"57063","_to":"57043"} +{"$label":"DIRECTED","_key":"96998","_from":"57062","_to":"57043"} +{"$label":"DIRECTED","_key":"96997","_from":"57061","_to":"57043"} +{"$label":"ACTS_IN","name":"Alincic","type":"Role","_key":"96996","_from":"57060","_to":"57043"} +{"$label":"ACTS_IN","name":"WA Police Officer","type":"Role","_key":"96995","_from":"57059","_to":"57043"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"96994","_from":"57058","_to":"57043"} +{"$label":"ACTS_IN","name":"Branch Manager #2","type":"Role","_key":"96993","_from":"57057","_to":"57043"} +{"$label":"ACTS_IN","name":"Branch Manager #1","type":"Role","_key":"96992","_from":"57056","_to":"57043"} +{"$label":"ACTS_IN","name":"James Reyne","type":"Role","_key":"96991","_from":"57055","_to":"57043"} +{"$label":"ACTS_IN","name":"Hippie Dave","type":"Role","_key":"96989","_from":"57054","_to":"57043"} +{"$label":"ACTS_IN","name":"Masao Ayuda","type":"Role","_key":"96987","_from":"57053","_to":"57043"} +{"$label":"ACTS_IN","name":"Thelma Abbott","type":"Role","_key":"96986","_from":"57052","_to":"57043"} +{"$label":"ACTS_IN","name":"Diane Abbott","type":"Role","_key":"96985","_from":"57051","_to":"57043"} +{"$label":"ACTS_IN","name":"Pritchard","type":"Role","_key":"96984","_from":"57050","_to":"57043"} +{"$label":"ACTS_IN","name":"Campbell","type":"Role","_key":"96983","_from":"57049","_to":"57043"} +{"$label":"ACTS_IN","name":"Drown","type":"Role","_key":"96982","_from":"57048","_to":"57043"} +{"$label":"ACTS_IN","name":"Beaman","type":"Role","_key":"96980","_from":"57047","_to":"57043"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"96979","_from":"57046","_to":"57043"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"96978","_from":"57045","_to":"57043"} +{"$label":"ACTS_IN","name":"Glenn Abbott","type":"Role","_key":"96974","_from":"57044","_to":"57043"} +{"$label":"ACTS_IN","name":"Jim Craig","type":"Role","_key":"99927","_from":"57047","_to":"58914"} +{"$label":"ACTS_IN","name":"Wayne Davis","type":"Role","_key":"104629","_from":"57056","_to":"61549"} +{"$label":"DIRECTED","_key":"97035","_from":"57089","_to":"57064"} +{"$label":"DIRECTED","_key":"97034","_from":"57088","_to":"57064"} +{"$label":"DIRECTED","_key":"97033","_from":"57087","_to":"57064"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"97028","_from":"57086","_to":"57064"} +{"$label":"ACTS_IN","name":"School Fight Opponent","type":"Role","_key":"97026","_from":"57085","_to":"57064"} +{"$label":"ACTS_IN","name":"Morrie Gilbert","type":"Role","_key":"97025","_from":"57084","_to":"57064"} +{"$label":"ACTS_IN","name":"Prison Commissioner","type":"Role","_key":"97022","_from":"57083","_to":"57064"} +{"$label":"ACTS_IN","name":"P.K. Age 12","type":"Role","_key":"97020","_from":"57082","_to":"57064"} +{"$label":"ACTS_IN","name":"Lt. Smit","type":"Role","_key":"97018","_from":"57081","_to":"57064"} +{"$label":"ACTS_IN","name":"Commandant Van Zy","type":"Role","_key":"97016","_from":"57080","_to":"57064"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"97015","_from":"57079","_to":"57064"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"97014","_from":"57078","_to":"57064"} +{"$label":"ACTS_IN","name":"Dabula Manzi","type":"Role","_key":"97012","_from":"57077","_to":"57064"} +{"$label":"ACTS_IN","name":"Minister at Mother's Funeral","type":"Role","_key":"97011","_from":"57076","_to":"57064"} +{"$label":"ACTS_IN","name":"Jaapie Botha","type":"Role","_key":"97010","_from":"57075","_to":"57064"} +{"$label":"ACTS_IN","name":"Afrikaner Minister","type":"Role","_key":"97009","_from":"57074","_to":"57064"} +{"$label":"ACTS_IN","name":"Ranch Foreman","type":"Role","_key":"97008","_from":"57073","_to":"57064"} +{"$label":"ACTS_IN","name":"Tonderai","type":"Role","_key":"97007","_from":"57072","_to":"57064"} +{"$label":"ACTS_IN","name":"P.K. Age 7","type":"Role","_key":"97006","_from":"57071","_to":"57064"} +{"$label":"ACTS_IN","name":"Tonderai Infant","type":"Role","_key":"97005","_from":"57070","_to":"57064"} +{"$label":"ACTS_IN","name":"P.K. Infant","type":"Role","_key":"97004","_from":"57069","_to":"57064"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"97003","_from":"57068","_to":"57064"} +{"$label":"ACTS_IN","name":"P.K. Newborn","type":"Role","_key":"97002","_from":"57067","_to":"57064"} +{"$label":"ACTS_IN","name":"Midwife","type":"Role","_key":"97001","_from":"57066","_to":"57064"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"97000","_from":"57065","_to":"57064"} +{"$label":"ACTS_IN","name":"Major-Domo","type":"Role","_key":"107849","_from":"57074","_to":"63696"} +{"$label":"DIRECTED","_key":"97078","_from":"57106","_to":"57091"} +{"$label":"DIRECTED","_key":"97077","_from":"57105","_to":"57091"} +{"$label":"DIRECTED","_key":"97075","_from":"57104","_to":"57091"} +{"$label":"ACTS_IN","name":"Woman at Postoffice","type":"Role","_key":"97073","_from":"57103","_to":"57091"} +{"$label":"ACTS_IN","name":"Mother in Diner","type":"Role","_key":"97071","_from":"57102","_to":"57091"} +{"$label":"ACTS_IN","name":"Little Girl in Diner","type":"Role","_key":"97070","_from":"57101","_to":"57091"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"97069","_from":"57100","_to":"57091"} +{"$label":"ACTS_IN","name":"Human Society Woman","type":"Role","_key":"97068","_from":"57099","_to":"57091"} +{"$label":"ACTS_IN","name":"Uniformed Cop","type":"Role","_key":"97067","_from":"57098","_to":"57091"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"97066","_from":"57097","_to":"57091"} +{"$label":"ACTS_IN","name":"Patrick Bonaire","type":"Role","_key":"97063","_from":"57096","_to":"57091"} +{"$label":"ACTS_IN","name":"Cop #1","type":"Role","_key":"97059","_from":"57095","_to":"57091"} +{"$label":"ACTS_IN","name":"Orderly","type":"Role","_key":"97052","_from":"57094","_to":"57091"} +{"$label":"ACTS_IN","name":"Caleb","type":"Role","_key":"97051","_from":"57093","_to":"57091"} +{"$label":"ACTS_IN","name":"Dr. James","type":"Role","_key":"97050","_from":"57092","_to":"57091"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"116335","_from":"57100","_to":"68477"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"97083","_from":"57109","_to":"57107"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"97080","_from":"57108","_to":"57107"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"113356","_from":"57108","_to":"66775"} +{"$label":"DIRECTED","_key":"97090","_from":"57111","_to":"57110"} +{"$label":"ACTS_IN","name":"Aiko","type":"Role","_key":"97092","_from":"57113","_to":"57112"} +{"$label":"DIRECTED","_key":"97109","_from":"57128","_to":"57114"} +{"$label":"DIRECTED","_key":"97108","_from":"57127","_to":"57114"} +{"$label":"DIRECTED","_key":"97107","_from":"57126","_to":"57114"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97106","_from":"57125","_to":"57114"} +{"$label":"ACTS_IN","name":"Young Wayne","type":"Role","_key":"97105","_from":"57124","_to":"57114"} +{"$label":"ACTS_IN","name":"Young Biggs","type":"Role","_key":"97104","_from":"57123","_to":"57114"} +{"$label":"ACTS_IN","name":"Abbey","type":"Role","_key":"97103","_from":"57122","_to":"57114"} +{"$label":"ACTS_IN","name":"Sealy","type":"Role","_key":"97102","_from":"57121","_to":"57114"} +{"$label":"ACTS_IN","name":"Blacka","type":"Role","_key":"97101","_from":"57120","_to":"57114"} +{"$label":"ACTS_IN","name":"Dangles","type":"Role","_key":"97100","_from":"57119","_to":"57114"} +{"$label":"ACTS_IN","name":"Raquel","type":"Role","_key":"97099","_from":"57118","_to":"57114"} +{"$label":"ACTS_IN","name":"Gussy","type":"Role","_key":"97098","_from":"57117","_to":"57114"} +{"$label":"ACTS_IN","name":"Teddy Bruckshut","type":"Role","_key":"97096","_from":"57116","_to":"57114"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"97094","_from":"57115","_to":"57114"} +{"$label":"ACTS_IN","name":"Davo Dinkum","type":"Role","_key":"105158","_from":"57119","_to":"61878"} +{"$label":"DIRECTED","_key":"97110","_from":"57130","_to":"57129"} +{"$label":"DIRECTED","_key":"120242","_from":"57130","_to":"70610"} +{"$label":"DIRECTED","_key":"116778","_from":"57130","_to":"68744"} +{"$label":"DIRECTED","_key":"104152","_from":"57130","_to":"61277"} +{"$label":"DIRECTED","_key":"97118","_from":"57130","_to":"57135"} +{"$label":"DIRECTED","_key":"97116","_from":"57130","_to":"57131"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97115","_from":"57134","_to":"57131"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97114","_from":"57133","_to":"57131"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97113","_from":"57132","_to":"57131"} +{"$label":"DIRECTED","_key":"97131","_from":"57138","_to":"57136"} +{"$label":"DIRECTED","_key":"97130","_from":"57137","_to":"57136"} +{"$label":"DIRECTED","_key":"97135","_from":"57140","_to":"57139"} +{"$label":"ACTS_IN","name":"Tiger","type":"Role","_key":"97158","_from":"57154","_to":"57143"} +{"$label":"ACTS_IN","name":"Foxy","type":"Role","_key":"97157","_from":"57153","_to":"57143"} +{"$label":"ACTS_IN","name":"Rod Reynolds","type":"Role","_key":"97156","_from":"57152","_to":"57143"} +{"$label":"ACTS_IN","name":"Rex Reynolds","type":"Role","_key":"97155","_from":"57151","_to":"57143"} +{"$label":"ACTS_IN","name":"Sgt. Smith","type":"Role","_key":"97154","_from":"57150","_to":"57143"} +{"$label":"ACTS_IN","name":"Wesley Jones","type":"Role","_key":"97153","_from":"57149","_to":"57143"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"97152","_from":"57148","_to":"57143"} +{"$label":"ACTS_IN","name":"Becky","type":"Role","_key":"97151","_from":"57147","_to":"57143"} +{"$label":"ACTS_IN","name":"Eliott Dole","type":"Role","_key":"97148","_from":"57146","_to":"57143"} +{"$label":"ACTS_IN","name":"Christian Hollings","type":"Role","_key":"97145","_from":"57145","_to":"57143"} +{"$label":"ACTS_IN","name":"Christopher \"Cru\" Jones","type":"Role","_key":"97144","_from":"57144","_to":"57143"} +{"$label":"ACTS_IN","name":"Emmaline Potsam","type":"Role","_key":"97173","_from":"57165","_to":"57155"} +{"$label":"ACTS_IN","name":"News Anchor","type":"Role","_key":"97169","_from":"57164","_to":"57155"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"97168","_from":"57163","_to":"57155"} +{"$label":"ACTS_IN","name":"Dixie Leigh Delton","type":"Role","_key":"97167","_from":"57162","_to":"57155"} +{"$label":"ACTS_IN","name":"Manager","type":"Role","_key":"97164","_from":"57161","_to":"57155"} +{"$label":"ACTS_IN","name":"Bo Price","type":"Role","_key":"97163","_from":"57160","_to":"57155"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"97162","_from":"57159","_to":"57155"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"97161","_from":"57158","_to":"57155"} +{"$label":"ACTS_IN","name":"Donnie","type":"Role","_key":"97160","_from":"57157","_to":"57155"} +{"$label":"DIRECTED","_key":"97159","_from":"57156","_to":"57155"} +{"$label":"ACTS_IN","name":"Tom Hilts","type":"Role","_key":"118590","_from":"57159","_to":"69730"} +{"$label":"ACTS_IN","name":"Joe Bill 'Rack' Racklin","type":"Role","_key":"106356","_from":"57160","_to":"62659"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105837","_from":"57160","_to":"62306"} +{"$label":"ACTS_IN","name":"Tara","type":"Role","_key":"100407","_from":"57162","_to":"59211"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"97178","_from":"57168","_to":"57167"} +{"$label":"ACTS_IN","name":"Tracey","type":"Role","_key":"97183","_from":"57170","_to":"57169"} +{"$label":"DIRECTED","_key":"97203","_from":"57180","_to":"57172"} +{"$label":"ACTS_IN","name":"Anton \/ Cultist \/ Youth #1","type":"Role","_key":"97198","_from":"57179","_to":"57172"} +{"$label":"ACTS_IN","name":"Woman \/ Young Cassandra \/ Young Bruce Wayne","type":"Role","_key":"97196","_from":"57178","_to":"57172"} +{"$label":"ACTS_IN","name":"Meesh","type":"Role","_key":"97194","_from":"57177","_to":"57172"} +{"$label":"ACTS_IN","name":"Porkchop","type":"Role","_key":"97193","_from":"57176","_to":"57172"} +{"$label":"ACTS_IN","name":"B-Devil \/ Cop","type":"Role","_key":"97191","_from":"57175","_to":"57172"} +{"$label":"ACTS_IN","name":"Martha Wayne","type":"Role","_key":"97189","_from":"57174","_to":"57172"} +{"$label":"ACTS_IN","name":"Bruce Wayne \/ Batman","type":"Role","_key":"97184","_from":"57173","_to":"57172"} +{"$label":"ACTS_IN","name":"Bruce Wayne","type":"Role","_key":"111019","_from":"57173","_to":"65577"} +{"$label":"ACTS_IN","name":"Bruce Wayne \/ Batman","type":"Role","_key":"108227","_from":"57173","_to":"63962"} +{"$label":"ACTS_IN","name":"Bruce Wayne","type":"Role","_key":"105976","_from":"57173","_to":"62398"} +{"$label":"ACTS_IN","name":"Batman \/ Bruce Wayne","type":"Role","_key":"102467","_from":"57173","_to":"60297"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"108284","_from":"57175","_to":"63995"} +{"$label":"ACTS_IN","name":"Starfire","type":"Role","_key":"108278","_from":"57178","_to":"63995"} +{"$label":"ACTS_IN","name":"Terence 'Terry' McGinnis \/ Batman","type":"Role","_key":"108226","_from":"57179","_to":"63962"} +{"$label":"ACTS_IN","name":"Brad Kimble","type":"Role","_key":"99657","_from":"57179","_to":"58758"} +{"$label":"DIRECTED","_key":"97223","_from":"57197","_to":"57181"} +{"$label":"DIRECTED","_key":"97222","_from":"57196","_to":"57181"} +{"$label":"ACTS_IN","name":"Council Officer","type":"Role","_key":"97220","_from":"57195","_to":"57181"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"97219","_from":"57194","_to":"57181"} +{"$label":"ACTS_IN","name":"John Clifton","type":"Role","_key":"97218","_from":"57193","_to":"57181"} +{"$label":"ACTS_IN","name":"Mr. Lyle","type":"Role","_key":"97217","_from":"57192","_to":"57181"} +{"$label":"ACTS_IN","name":"Evonne","type":"Role","_key":"97216","_from":"57191","_to":"57181"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"97215","_from":"57190","_to":"57181"} +{"$label":"ACTS_IN","name":"Ron Graham","type":"Role","_key":"97214","_from":"57189","_to":"57181"} +{"$label":"ACTS_IN","name":"Farouk","type":"Role","_key":"97213","_from":"57188","_to":"57181"} +{"$label":"ACTS_IN","name":"Federal Court judge","type":"Role","_key":"97212","_from":"57187","_to":"57181"} +{"$label":"ACTS_IN","name":"Dennis Denuto","type":"Role","_key":"97210","_from":"57186","_to":"57181"} +{"$label":"ACTS_IN","name":"Wayne Kerrigan","type":"Role","_key":"97209","_from":"57185","_to":"57181"} +{"$label":"ACTS_IN","name":"Steve Kerrigan","type":"Role","_key":"97207","_from":"57184","_to":"57181"} +{"$label":"ACTS_IN","name":"Sal Kerrigan","type":"Role","_key":"97205","_from":"57183","_to":"57181"} +{"$label":"ACTS_IN","name":"Darryl Kerrigan","type":"Role","_key":"97204","_from":"57182","_to":"57181"} +{"$label":"ACTS_IN","name":"Ka D'Argo","type":"Role","_key":"97347","_from":"57184","_to":"57329"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"119479","_from":"57185","_to":"70188"} +{"$label":"ACTS_IN","name":"Eleanor Poulgrain","type":"Role","_key":"106400","_from":"57187","_to":"62687"} +{"$label":"ACTS_IN","name":"Tony the Yugoslav","type":"Role","_key":"110316","_from":"57188","_to":"65182"} +{"$label":"DIRECTED","_key":"97227","_from":"57199","_to":"57198"} +{"$label":"DIRECTED","_key":"97231","_from":"57205","_to":"57201"} +{"$label":"ACTS_IN","name":"Mi-jin Kim","type":"Role","_key":"97230","_from":"57204","_to":"57201"} +{"$label":"ACTS_IN","name":"Young-min Jee","type":"Role","_key":"97229","_from":"57203","_to":"57201"} +{"$label":"ACTS_IN","name":"Joong-ho Eom","type":"Role","_key":"97228","_from":"57202","_to":"57201"} +{"$label":"ACTS_IN","name":"Jo Byeong-woon","type":"Role","_key":"120169","_from":"57203","_to":"70578"} +{"$label":"ACTS_IN","name":"Jonas Exiler","type":"Role","_key":"97241","_from":"57210","_to":"57206"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"97240","_from":"57209","_to":"57206"} +{"$label":"DIRECTED","_key":"97233","_from":"57208","_to":"57206"} +{"$label":"DIRECTED","_key":"97232","_from":"57207","_to":"57206"} +{"$label":"ACTS_IN","name":"Mike LeMat","type":"Role","_key":"98118","_from":"57209","_to":"57768"} +{"$label":"ACTS_IN","name":"Captain Andrew Russell","type":"Role","_key":"120839","_from":"57210","_to":"70961"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97296","_from":"57263","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97295","_from":"57262","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97294","_from":"57261","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97293","_from":"57260","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97292","_from":"57259","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97291","_from":"57258","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97290","_from":"57257","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97289","_from":"57256","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97288","_from":"57255","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97287","_from":"57254","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97286","_from":"57253","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97285","_from":"57252","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97284","_from":"57251","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97283","_from":"57250","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97282","_from":"57249","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97281","_from":"57248","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97280","_from":"57247","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97279","_from":"57246","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97278","_from":"57245","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97277","_from":"57244","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97276","_from":"57243","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97275","_from":"57242","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97274","_from":"57241","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97273","_from":"57240","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97272","_from":"57239","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97271","_from":"57238","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97270","_from":"57237","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97269","_from":"57236","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97268","_from":"57235","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97267","_from":"57234","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 7","type":"Role","_key":"97266","_from":"57233","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 2","type":"Role","_key":"97263","_from":"57232","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 1","type":"Role","_key":"97262","_from":"57231","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97261","_from":"57230","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97260","_from":"57229","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97259","_from":"57228","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97258","_from":"57227","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97257","_from":"57226","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97256","_from":"57225","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97255","_from":"57224","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97254","_from":"57223","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97253","_from":"57222","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97252","_from":"57221","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97251","_from":"57220","_to":"57211"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"97250","_from":"57219","_to":"57211"} +{"$label":"ACTS_IN","name":"Serena - Scene 7","type":"Role","_key":"97249","_from":"57218","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 6","type":"Role","_key":"97248","_from":"57217","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 5","type":"Role","_key":"97247","_from":"57216","_to":"57211"} +{"$label":"ACTS_IN","name":"Madelyn - Scene 3","type":"Role","_key":"97245","_from":"57215","_to":"57211"} +{"$label":"ACTS_IN","name":"Jules Steele - Scene 2","type":"Role","_key":"97244","_from":"57214","_to":"57211"} +{"$label":"ACTS_IN","name":"Scene 1","type":"Role","_key":"97243","_from":"57213","_to":"57211"} +{"$label":"DIRECTED","_key":"97242","_from":"57212","_to":"57211"} +{"$label":"DIRECTED","_key":"99569","_from":"57212","_to":"58694"} +{"$label":"ACTS_IN","name":"Babysitter","type":"Role","_key":"103211","_from":"57214","_to":"60710"} +{"$label":"ACTS_IN","name":"Jules Steel - Scene 3","type":"Role","_key":"99573","_from":"57214","_to":"58694"} +{"$label":"ACTS_IN","name":"Devon","type":"Role","_key":"121530","_from":"57215","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121538","_from":"57232","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103228","_from":"57232","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103229","_from":"57233","_to":"60710"} +{"$label":"ACTS_IN","name":"Capt. Edward Reynolds - Scene 8","type":"Role","_key":"99595","_from":"57233","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99601","_from":"57242","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99609","_from":"57254","_to":"58694"} +{"$label":"DIRECTED","_key":"97300","_from":"57267","_to":"57264"} +{"$label":"ACTS_IN","name":"Ace Lannigan","type":"Role","_key":"97299","_from":"57266","_to":"57264"} +{"$label":"ACTS_IN","name":"Mima","type":"Role","_key":"97298","_from":"57265","_to":"57264"} +{"$label":"ACTS_IN","name":"Baroness Carlotta Montay","type":"Role","_key":"116950","_from":"57265","_to":"68841"} +{"$label":"ACTS_IN","name":"Martha Spruce","type":"Role","_key":"108497","_from":"57265","_to":"64131"} +{"$label":"ACTS_IN","name":"Wally Campbell","type":"Role","_key":"117725","_from":"57266","_to":"69203"} +{"$label":"ACTS_IN","name":"Ronnie Jackson","type":"Role","_key":"116949","_from":"57266","_to":"68841"} +{"$label":"ACTS_IN","name":"'Painless' Peter Potter","type":"Role","_key":"113998","_from":"57266","_to":"67136"} +{"$label":"DIRECTED","_key":"97312","_from":"57293","_to":"57291"} +{"$label":"ACTS_IN","name":"Young Lilli","type":"Role","_key":"97308","_from":"57292","_to":"57291"} +{"$label":"DIRECTED","_key":"117143","_from":"57293","_to":"68918"} +{"$label":"DIRECTED","_key":"97321","_from":"57304","_to":"57298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97320","_from":"57303","_to":"57298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97319","_from":"57302","_to":"57298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97318","_from":"57301","_to":"57298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97317","_from":"57300","_to":"57298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97316","_from":"57299","_to":"57298"} +{"$label":"DIRECTED","_key":"97329","_from":"57309","_to":"57305"} +{"$label":"ACTS_IN","name":"Principal Wilson","type":"Role","_key":"97328","_from":"57308","_to":"57305"} +{"$label":"ACTS_IN","name":"Pete Morten","type":"Role","_key":"97326","_from":"57307","_to":"57305"} +{"$label":"ACTS_IN","name":"Carrie","type":"Role","_key":"97324","_from":"57306","_to":"57305"} +{"$label":"ACTS_IN","name":"Parveneh","type":"Role","_key":"97337","_from":"57317","_to":"57310"} +{"$label":"ACTS_IN","name":"Maedeh (as Maedeh Tahmasbi)","type":"Role","_key":"97336","_from":"57316","_to":"57310"} +{"$label":"ACTS_IN","name":"Monir - Ticket Seller","type":"Role","_key":"97335","_from":"57315","_to":"57310"} +{"$label":"ACTS_IN","name":"Elham - Nurse","type":"Role","_key":"97334","_from":"57314","_to":"57310"} +{"$label":"ACTS_IN","name":"Mojgan - Prostitute","type":"Role","_key":"97333","_from":"57313","_to":"57310"} +{"$label":"ACTS_IN","name":"Arezou (as Maryam Parvin Almani)","type":"Role","_key":"97332","_from":"57312","_to":"57310"} +{"$label":"ACTS_IN","name":"Nargess","type":"Role","_key":"97331","_from":"57311","_to":"57310"} +{"$label":"DIRECTED","_key":"97341","_from":"57322","_to":"57319"} +{"$label":"ACTS_IN","name":"Ghost","type":"Role","_key":"97339","_from":"57321","_to":"57319"} +{"$label":"ACTS_IN","name":"Body","type":"Role","_key":"97338","_from":"57320","_to":"57319"} +{"$label":"ACTS_IN","name":"Kathleen","type":"Role","_key":"97344","_from":"57328","_to":"57325"} +{"$label":"ACTS_IN","name":"Jara","type":"Role","_key":"97343","_from":"57327","_to":"57325"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"97342","_from":"57326","_to":"57325"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"111970","_from":"57326","_to":"66095"} +{"$label":"ACTS_IN","name":"Pikal","type":"Role","_key":"97357","_from":"57335","_to":"57329"} +{"$label":"ACTS_IN","name":"Utu-Noranti Pralatong","type":"Role","_key":"97355","_from":"57334","_to":"57329"} +{"$label":"ACTS_IN","name":"War Minister Akhna","type":"Role","_key":"97353","_from":"57333","_to":"57329"} +{"$label":"ACTS_IN","name":"Emperor Staleek","type":"Role","_key":"97352","_from":"57332","_to":"57329"} +{"$label":"ACTS_IN","name":"Captain Meeklo Braca","type":"Role","_key":"97351","_from":"57331","_to":"57329"} +{"$label":"ACTS_IN","name":"Harvey","type":"Role","_key":"97349","_from":"57330","_to":"57329"} +{"$label":"ACTS_IN","name":"Horace","type":"Role","_key":"109748","_from":"57331","_to":"64813"} +{"$label":"ACTS_IN","name":"Heat Blast","type":"Role","_key":"106614","_from":"57331","_to":"62820"} +{"$label":"ACTS_IN","name":"Phil Stubbs","type":"Role","_key":"99906","_from":"57332","_to":"58914"} +{"$label":"ACTS_IN","name":"Angus","type":"Role","_key":"102219","_from":"57335","_to":"60147"} +{"$label":"DIRECTED","_key":"97370","_from":"57337","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97369","_from":"57345","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"97367","_from":"57344","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97365","_from":"57343","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97364","_from":"57342","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97363","_from":"57341","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97362","_from":"57340","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"97361","_from":"57339","_to":"57336"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97360","_from":"57338","_to":"57336"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"97359","_from":"57337","_to":"57336"} +{"$label":"DIRECTED","_key":"98530","_from":"57337","_to":"58067"} +{"$label":"ACTS_IN","name":"Lead Vocals, Guitar","type":"Role","_key":"118245","_from":"57339","_to":"69506"} +{"$label":"ACTS_IN","name":"Guitar, Backing Vocals","type":"Role","_key":"118248","_from":"57345","_to":"69506"} +{"$label":"ACTS_IN","name":"Kenan","type":"Role","_key":"97385","_from":"57353","_to":"57346"} +{"$label":"ACTS_IN","name":"Trent","type":"Role","_key":"97384","_from":"57352","_to":"57346"} +{"$label":"ACTS_IN","name":"Rex","type":"Role","_key":"97383","_from":"57351","_to":"57346"} +{"$label":"ACTS_IN","name":"Texas Wife","type":"Role","_key":"97382","_from":"57350","_to":"57346"} +{"$label":"ACTS_IN","name":"Texas Man","type":"Role","_key":"97380","_from":"57349","_to":"57346"} +{"$label":"ACTS_IN","name":"Barney Baker","type":"Role","_key":"97377","_from":"57348","_to":"57346"} +{"$label":"DIRECTED","_key":"97371","_from":"57347","_to":"57346"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"113754","_from":"57353","_to":"67033"} +{"$label":"ACTS_IN","name":"Fat Albert","type":"Role","_key":"102921","_from":"57353","_to":"60545"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"101891","_from":"57353","_to":"59969"} +{"$label":"ACTS_IN","name":"Dexter Reed","type":"Role","_key":"101885","_from":"57353","_to":"59966"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"97404","_from":"57361","_to":"57355"} +{"$label":"ACTS_IN","name":"Ugly Mug","type":"Role","_key":"97403","_from":"57360","_to":"57355"} +{"$label":"ACTS_IN","name":"McTavish","type":"Role","_key":"97402","_from":"57359","_to":"57355"} +{"$label":"ACTS_IN","name":"Flower Stall Seller","type":"Role","_key":"97400","_from":"57358","_to":"57355"} +{"$label":"ACTS_IN","name":"Leith Romeo's wife","type":"Role","_key":"97398","_from":"57357","_to":"57355"} +{"$label":"ACTS_IN","name":"Leith Romeo","type":"Role","_key":"97397","_from":"57356","_to":"57355"} +{"$label":"ACTS_IN","name":"Mary Helton","type":"Role","_key":"97414","_from":"57367","_to":"57362"} +{"$label":"ACTS_IN","name":"Lucille Briggs","type":"Role","_key":"97413","_from":"57366","_to":"57362"} +{"$label":"ACTS_IN","name":"Alky Briggs","type":"Role","_key":"97412","_from":"57365","_to":"57362"} +{"$label":"ACTS_IN","name":"J.J. 'Big Joe' Helton","type":"Role","_key":"97411","_from":"57364","_to":"57362"} +{"$label":"DIRECTED","_key":"97406","_from":"57363","_to":"57362"} +{"$label":"DIRECTED","_key":"114013","_from":"57363","_to":"67136"} +{"$label":"DIRECTED","_key":"97415","_from":"57363","_to":"57368"} +{"$label":"ACTS_IN","name":"Connie Bailey","type":"Role","_key":"97420","_from":"57366","_to":"57368"} +{"$label":"ACTS_IN","name":"Jennings","type":"Role","_key":"97421","_from":"57369","_to":"57368"} +{"$label":"DIRECTED","_key":"97429","_from":"57373","_to":"57370"} +{"$label":"ACTS_IN","name":"Roscoe Chandler","type":"Role","_key":"97428","_from":"57372","_to":"57370"} +{"$label":"ACTS_IN","name":"Arabella Rittenhouse","type":"Role","_key":"97426","_from":"57371","_to":"57370"} +{"$label":"ACTS_IN","name":"Sandra West","type":"Role","_key":"97432","_from":"57377","_to":"57375"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"97430","_from":"57376","_to":"57375"} +{"$label":"DIRECTED","_key":"97452","_from":"57393","_to":"57379"} +{"$label":"DIRECTED","_key":"97451","_from":"57392","_to":"57379"} +{"$label":"DIRECTED","_key":"97450","_from":"57391","_to":"57379"} +{"$label":"DIRECTED","_key":"97449","_from":"57390","_to":"57379"} +{"$label":"ACTS_IN","name":"Val Wesley","type":"Role","_key":"97446","_from":"57389","_to":"57379"} +{"$label":"ACTS_IN","name":"Noeline Brown","type":"Role","_key":"97445","_from":"57388","_to":"57379"} +{"$label":"ACTS_IN","name":"Nana Scott","type":"Role","_key":"97444","_from":"57387","_to":"57379"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"97443","_from":"57386","_to":"57379"} +{"$label":"ACTS_IN","name":"Sir Frank Packer","type":"Role","_key":"97442","_from":"57385","_to":"57379"} +{"$label":"ACTS_IN","name":"Geoff \"Corkie\" Corke","type":"Role","_key":"97441","_from":"57384","_to":"57379"} +{"$label":"ACTS_IN","name":"Norm Spencer","type":"Role","_key":"97440","_from":"57383","_to":"57379"} +{"$label":"ACTS_IN","name":"Richard Croft","type":"Role","_key":"97438","_from":"57382","_to":"57379"} +{"$label":"ACTS_IN","name":"Bert Newton","type":"Role","_key":"97437","_from":"57381","_to":"57379"} +{"$label":"ACTS_IN","name":"Colin Bednall","type":"Role","_key":"97434","_from":"57380","_to":"57379"} +{"$label":"ACTS_IN","name":"Premier Lionel Cray","type":"Role","_key":"106399","_from":"57380","_to":"62687"} +{"$label":"ACTS_IN","name":"Storm Banks","type":"Role","_key":"98961","_from":"57380","_to":"58296"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"116771","_from":"57382","_to":"68740"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"101375","_from":"57387","_to":"59675"} +{"$label":"DIRECTED","_key":"97473","_from":"57408","_to":"57394"} +{"$label":"DIRECTED","_key":"97472","_from":"57407","_to":"57394"} +{"$label":"DIRECTED","_key":"97471","_from":"57406","_to":"57394"} +{"$label":"ACTS_IN","name":"Warm-up Man","type":"Role","_key":"97469","_from":"57405","_to":"57394"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97468","_from":"57404","_to":"57394"} +{"$label":"ACTS_IN","name":"Glen","type":"Role","_key":"97467","_from":"57403","_to":"57394"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"97466","_from":"57402","_to":"57394"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"97463","_from":"57401","_to":"57394"} +{"$label":"ACTS_IN","name":"Margo","type":"Role","_key":"97462","_from":"57400","_to":"57394"} +{"$label":"ACTS_IN","name":"Russell","type":"Role","_key":"97461","_from":"57399","_to":"57394"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"97460","_from":"57398","_to":"57394"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"97459","_from":"57397","_to":"57394"} +{"$label":"ACTS_IN","name":"Wesley Murray","type":"Role","_key":"97454","_from":"57396","_to":"57394"} +{"$label":"ACTS_IN","name":"Fergus Montagu","type":"Role","_key":"97453","_from":"57395","_to":"57394"} +{"$label":"ACTS_IN","name":"Northey","type":"Role","_key":"106394","_from":"57403","_to":"62687"} +{"$label":"DIRECTED","_key":"97501","_from":"57418","_to":"57409"} +{"$label":"ACTS_IN","name":"Student #3","type":"Role","_key":"97499","_from":"57417","_to":"57409"} +{"$label":"ACTS_IN","name":"Party Goer #2","type":"Role","_key":"97498","_from":"57416","_to":"57409"} +{"$label":"ACTS_IN","name":"Party Goer #1","type":"Role","_key":"97497","_from":"57415","_to":"57409"} +{"$label":"ACTS_IN","name":"Aide to Mayor Ebbs","type":"Role","_key":"97495","_from":"57414","_to":"57409"} +{"$label":"ACTS_IN","name":"Troy","type":"Role","_key":"97492","_from":"57413","_to":"57409"} +{"$label":"ACTS_IN","name":"Aide to Mayor Ebbs","type":"Role","_key":"97488","_from":"57412","_to":"57409"} +{"$label":"ACTS_IN","name":"Parent #2","type":"Role","_key":"97485","_from":"57411","_to":"57409"} +{"$label":"ACTS_IN","name":"Parent #1","type":"Role","_key":"97478","_from":"57410","_to":"57409"} +{"$label":"DIRECTED","_key":"97505","_from":"57420","_to":"57419"} +{"$label":"ACTS_IN","name":"Lydia","type":"Role","_key":"97519","_from":"57425","_to":"57421"} +{"$label":"ACTS_IN","name":"Beamter der Sitte","type":"Role","_key":"97518","_from":"57424","_to":"57421"} +{"$label":"ACTS_IN","name":"Sabine","type":"Role","_key":"97516","_from":"57423","_to":"57421"} +{"$label":"ACTS_IN","name":"Gy","type":"Role","_key":"97509","_from":"57422","_to":"57421"} +{"$label":"ACTS_IN","name":"Sgt. Valera","type":"Role","_key":"97533","_from":"57434","_to":"57426"} +{"$label":"ACTS_IN","name":"Sgt. Adams","type":"Role","_key":"97532","_from":"57433","_to":"57426"} +{"$label":"ACTS_IN","name":"Lt. LeClaire","type":"Role","_key":"97529","_from":"57432","_to":"57426"} +{"$label":"ACTS_IN","name":"Lt. Able","type":"Role","_key":"97528","_from":"57431","_to":"57426"} +{"$label":"ACTS_IN","name":"2nd Lt. Foley","type":"Role","_key":"97526","_from":"57430","_to":"57426"} +{"$label":"ACTS_IN","name":"2nd Lt. Riley","type":"Role","_key":"97525","_from":"57429","_to":"57426"} +{"$label":"ACTS_IN","name":"Cpl. Guttierez","type":"Role","_key":"97524","_from":"57428","_to":"57426"} +{"$label":"ACTS_IN","name":"Captain Fisher","type":"Role","_key":"97521","_from":"57427","_to":"57426"} +{"$label":"ACTS_IN","name":"Mike Ploog","type":"Role","_key":"117922","_from":"57427","_to":"69318"} +{"$label":"ACTS_IN","name":"Jeff Kennard","type":"Role","_key":"102905","_from":"57429","_to":"60529"} +{"$label":"DIRECTED","_key":"97537","_from":"57437","_to":"57436"} +{"$label":"DIRECTED","_key":"97542","_from":"57443","_to":"57442"} +{"$label":"ACTS_IN","name":"Bird (voice) (uncredited)","type":"Role","_key":"97545","_from":"57445","_to":"57444"} +{"$label":"DIRECTED","_key":"97544","_from":"57445","_to":"57444"} +{"$label":"ACTS_IN","name":"Kari McKeen","type":"Role","_key":"97551","_from":"57448","_to":"57447"} +{"$label":"DIRECTED","_key":"97556","_from":"57451","_to":"57449"} +{"$label":"DIRECTED","_key":"97555","_from":"57450","_to":"57449"} +{"$label":"DIRECTED","_key":"97565","_from":"57453","_to":"57452"} +{"$label":"ACTS_IN","name":"Lonnie","type":"Role","_key":"97571","_from":"57455","_to":"57454"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"100414","_from":"57455","_to":"59213"} +{"$label":"ACTS_IN","name":"Curly McLain","type":"Role","_key":"97574","_from":"57457","_to":"57456"} +{"$label":"ACTS_IN","name":"Bill Sherman","type":"Role","_key":"120497","_from":"57457","_to":"70781"} +{"$label":"DIRECTED","_key":"97583","_from":"57462","_to":"57459"} +{"$label":"ACTS_IN","name":"Sho'nuff (Shogun of Harlem)","type":"Role","_key":"97579","_from":"57461","_to":"57459"} +{"$label":"ACTS_IN","name":"Leroy Green","type":"Role","_key":"97578","_from":"57460","_to":"57459"} +{"$label":"DIRECTED","_key":"104499","_from":"57462","_to":"61466"} +{"$label":"ACTS_IN","name":"Carol Toby","type":"Role","_key":"97592","_from":"57465","_to":"57463"} +{"$label":"ACTS_IN","name":"Jack Toby","type":"Role","_key":"97588","_from":"57464","_to":"57463"} +{"$label":"DIRECTED","_key":"97630","_from":"57490","_to":"57466"} +{"$label":"DIRECTED","_key":"97629","_from":"57489","_to":"57466"} +{"$label":"DIRECTED","_key":"97628","_from":"57488","_to":"57466"} +{"$label":"DIRECTED","_key":"97627","_from":"57487","_to":"57466"} +{"$label":"ACTS_IN","name":"Pregnant Lady","type":"Role","_key":"97626","_from":"57486","_to":"57466"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"97625","_from":"57485","_to":"57466"} +{"$label":"ACTS_IN","name":"Runyan","type":"Role","_key":"97624","_from":"57484","_to":"57466"} +{"$label":"ACTS_IN","name":"Guard #2","type":"Role","_key":"97623","_from":"57483","_to":"57466"} +{"$label":"ACTS_IN","name":"Guard #1","type":"Role","_key":"97622","_from":"57482","_to":"57466"} +{"$label":"ACTS_IN","name":"Loud Talker","type":"Role","_key":"97621","_from":"57481","_to":"57466"} +{"$label":"ACTS_IN","name":"Camper Man","type":"Role","_key":"97619","_from":"57480","_to":"57466"} +{"$label":"ACTS_IN","name":"Older man","type":"Role","_key":"97618","_from":"57479","_to":"57466"} +{"$label":"ACTS_IN","name":"The Pharmacist","type":"Role","_key":"97616","_from":"57478","_to":"57466"} +{"$label":"ACTS_IN","name":"Female Patron","type":"Role","_key":"97615","_from":"57477","_to":"57466"} +{"$label":"ACTS_IN","name":"Female Bartender","type":"Role","_key":"97613","_from":"57476","_to":"57466"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"97610","_from":"57475","_to":"57466"} +{"$label":"ACTS_IN","name":"Older Mechanic","type":"Role","_key":"97609","_from":"57474","_to":"57466"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"97608","_from":"57473","_to":"57466"} +{"$label":"ACTS_IN","name":"Supervising Officer","type":"Role","_key":"97607","_from":"57472","_to":"57466"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"97605","_from":"57471","_to":"57466"} +{"$label":"ACTS_IN","name":"Mrs. Bachanas","type":"Role","_key":"97603","_from":"57470","_to":"57466"} +{"$label":"ACTS_IN","name":"Boss","type":"Role","_key":"97602","_from":"57469","_to":"57466"} +{"$label":"ACTS_IN","name":"Incensed Man","type":"Role","_key":"97601","_from":"57468","_to":"57466"} +{"$label":"ACTS_IN","name":"The Mechanic","type":"Role","_key":"97600","_from":"57467","_to":"57466"} +{"$label":"ACTS_IN","name":"Stephen Harper","type":"Role","_key":"97634","_from":"57492","_to":"57491"} +{"$label":"ACTS_IN","name":"Jake Mitchell","type":"Role","_key":"106635","_from":"57492","_to":"62833"} +{"$label":"DIRECTED","_key":"97661","_from":"57512","_to":"57493"} +{"$label":"DIRECTED","_key":"97660","_from":"57511","_to":"57493"} +{"$label":"DIRECTED","_key":"97659","_from":"57510","_to":"57493"} +{"$label":"DIRECTED","_key":"97658","_from":"57509","_to":"57493"} +{"$label":"DIRECTED","_key":"97657","_from":"57508","_to":"57493"} +{"$label":"ACTS_IN","name":"Jordan Andretti","type":"Role","_key":"97656","_from":"57507","_to":"57493"} +{"$label":"ACTS_IN","name":"Prison Officer","type":"Role","_key":"97655","_from":"57506","_to":"57493"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"97654","_from":"57505","_to":"57493"} +{"$label":"ACTS_IN","name":"Heather's Son","type":"Role","_key":"97653","_from":"57504","_to":"57493"} +{"$label":"ACTS_IN","name":"Television Reporter","type":"Role","_key":"97652","_from":"57503","_to":"57493"} +{"$label":"ACTS_IN","name":"Junior Policeman","type":"Role","_key":"97651","_from":"57502","_to":"57493"} +{"$label":"ACTS_IN","name":"Random Guy","type":"Role","_key":"97650","_from":"57501","_to":"57493"} +{"$label":"ACTS_IN","name":"Sergeant Harris","type":"Role","_key":"97649","_from":"57500","_to":"57493"} +{"$label":"ACTS_IN","name":"Defence Lawyer","type":"Role","_key":"97648","_from":"57499","_to":"57493"} +{"$label":"ACTS_IN","name":"Angry Neighbour","type":"Role","_key":"97647","_from":"57498","_to":"57493"} +{"$label":"ACTS_IN","name":"Welfare man","type":"Role","_key":"97646","_from":"57497","_to":"57493"} +{"$label":"ACTS_IN","name":"Christine Andretti","type":"Role","_key":"97644","_from":"57496","_to":"57493"} +{"$label":"ACTS_IN","name":"Rusty","type":"Role","_key":"97640","_from":"57495","_to":"57493"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"97639","_from":"57494","_to":"57493"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"97669","_from":"57515","_to":"57513"} +{"$label":"DIRECTED","_key":"97662","_from":"57514","_to":"57513"} +{"$label":"DIRECTED","_key":"106691","_from":"57514","_to":"62874"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"97680","_from":"57519","_to":"57516"} +{"$label":"ACTS_IN","name":"Verdugo","type":"Role","_key":"97678","_from":"57518","_to":"57516"} +{"$label":"ACTS_IN","name":"Princess Alana","type":"Role","_key":"97673","_from":"57517","_to":"57516"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97686","_from":"57522","_to":"57521"} +{"$label":"DIRECTED","_key":"97685","_from":"57522","_to":"57521"} +{"$label":"DIRECTED","_key":"97696","_from":"57526","_to":"57524"} +{"$label":"ACTS_IN","name":"William Elliot","type":"Role","_key":"97694","_from":"57525","_to":"57524"} +{"$label":"DIRECTED","_key":"120324","_from":"57526","_to":"70679"} +{"$label":"DIRECTED","_key":"103522","_from":"57526","_to":"60901"} +{"$label":"ACTS_IN","name":"Ursula","type":"Role","_key":"97700","_from":"57528","_to":"57527"} +{"$label":"DIRECTED","_key":"97713","_from":"57538","_to":"57531"} +{"$label":"ACTS_IN","name":"Chambers","type":"Role","_key":"97712","_from":"57537","_to":"57531"} +{"$label":"ACTS_IN","name":"Manny","type":"Role","_key":"97711","_from":"57536","_to":"57531"} +{"$label":"ACTS_IN","name":"Moody","type":"Role","_key":"97709","_from":"57535","_to":"57531"} +{"$label":"ACTS_IN","name":"Logan","type":"Role","_key":"97707","_from":"57534","_to":"57531"} +{"$label":"ACTS_IN","name":"Sterling","type":"Role","_key":"97705","_from":"57533","_to":"57531"} +{"$label":"ACTS_IN","name":"Ritter","type":"Role","_key":"97703","_from":"57532","_to":"57531"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"120426","_from":"57533","_to":"70746"} +{"$label":"DIRECTED","_key":"97724","_from":"57544","_to":"57539"} +{"$label":"ACTS_IN","name":"Katie","type":"Role","_key":"97722","_from":"57543","_to":"57539"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"97720","_from":"57542","_to":"57539"} +{"$label":"ACTS_IN","name":"Tick","type":"Role","_key":"97719","_from":"57541","_to":"57539"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"97715","_from":"57540","_to":"57539"} +{"$label":"ACTS_IN","name":"Ramone","type":"Role","_key":"115526","_from":"57541","_to":"68009"} +{"$label":"DIRECTED","_key":"97736","_from":"57550","_to":"57545"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97735","_from":"57549","_to":"57545"} +{"$label":"ACTS_IN","name":"Scooter (voice)","type":"Role","_key":"97732","_from":"57548","_to":"57545"} +{"$label":"ACTS_IN","name":"Nat (voice)","type":"Role","_key":"97728","_from":"57547","_to":"57545"} +{"$label":"ACTS_IN","name":"Nat's Mom (voice)","type":"Role","_key":"97727","_from":"57546","_to":"57545"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"108471","_from":"57546","_to":"64118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99465","_from":"57549","_to":"58628"} +{"$label":"ACTS_IN","name":"Teddy Gordon","type":"Role","_key":"97752","_from":"57561","_to":"57551"} +{"$label":"ACTS_IN","name":"Mrs. Dyole","type":"Role","_key":"97749","_from":"57560","_to":"57551"} +{"$label":"ACTS_IN","name":"Young Eleanor","type":"Role","_key":"97748","_from":"57559","_to":"57551"} +{"$label":"ACTS_IN","name":"Maginty","type":"Role","_key":"97747","_from":"57558","_to":"57551"} +{"$label":"ACTS_IN","name":"Young Quinlan","type":"Role","_key":"97746","_from":"57557","_to":"57551"} +{"$label":"ACTS_IN","name":"Local Sheriff","type":"Role","_key":"97745","_from":"57556","_to":"57551"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"97744","_from":"57555","_to":"57551"} +{"$label":"ACTS_IN","name":"Peter Etty","type":"Role","_key":"97742","_from":"57554","_to":"57551"} +{"$label":"ACTS_IN","name":"Weeping Veteran","type":"Role","_key":"97740","_from":"57553","_to":"57551"} +{"$label":"ACTS_IN","name":"Wilbur","type":"Role","_key":"97739","_from":"57552","_to":"57551"} +{"$label":"ACTS_IN","name":"Guy","type":"Role","_key":"102083","_from":"57561","_to":"60060"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97770","_from":"57577","_to":"57562"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97769","_from":"57576","_to":"57562"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97768","_from":"57575","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97767","_from":"57574","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97765","_from":"57573","_to":"57562"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97764","_from":"57572","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97763","_from":"57571","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97762","_from":"57570","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97761","_from":"57569","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97760","_from":"57568","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97759","_from":"57567","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97758","_from":"57566","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97757","_from":"57565","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97756","_from":"57564","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97754","_from":"57563","_to":"57562"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105649","_from":"57564","_to":"62183"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105650","_from":"57571","_to":"62183"} +{"$label":"ACTS_IN","name":"Brooklyn","type":"Role","_key":"97776","_from":"57583","_to":"57579"} +{"$label":"ACTS_IN","name":"New New","type":"Role","_key":"97775","_from":"57582","_to":"57579"} +{"$label":"ACTS_IN","name":"Ant","type":"Role","_key":"97773","_from":"57581","_to":"57579"} +{"$label":"ACTS_IN","name":"Rashad","type":"Role","_key":"97772","_from":"57580","_to":"57579"} +{"$label":"ACTS_IN","name":"Donnie","type":"Role","_key":"110257","_from":"57581","_to":"65163"} +{"$label":"ACTS_IN","name":"Ivy","type":"Role","_key":"114804","_from":"57582","_to":"67620"} +{"$label":"ACTS_IN","name":"Damian Waters","type":"Role","_key":"97787","_from":"57587","_to":"57584"} +{"$label":"ACTS_IN","name":"Shay Stanley","type":"Role","_key":"97783","_from":"57586","_to":"57584"} +{"$label":"ACTS_IN","name":"Preston Waters","type":"Role","_key":"97782","_from":"57585","_to":"57584"} +{"$label":"DIRECTED","_key":"97824","_from":"57613","_to":"57588"} +{"$label":"DIRECTED","_key":"97823","_from":"57612","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97820","_from":"57611","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97819","_from":"57610","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97818","_from":"57609","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97815","_from":"57608","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97814","_from":"57607","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97812","_from":"57606","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97811","_from":"57605","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97809","_from":"57604","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97808","_from":"57603","_to":"57588"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97807","_from":"57602","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97806","_from":"57601","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97805","_from":"57600","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97804","_from":"57599","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97803","_from":"57598","_to":"57588"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97801","_from":"57597","_to":"57588"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"97800","_from":"57596","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97799","_from":"57595","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97797","_from":"57594","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97795","_from":"57593","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97794","_from":"57592","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97793","_from":"57591","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97792","_from":"57590","_to":"57588"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"97791","_from":"57589","_to":"57588"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"104927","_from":"57589","_to":"61744"} +{"$label":"ACTS_IN","name":"Ted Webb","type":"Role","_key":"109998","_from":"57591","_to":"64997"} +{"$label":"ACTS_IN","name":"Reverend Bob Goodall","type":"Role","_key":"99484","_from":"57591","_to":"58645"} +{"$label":"ACTS_IN","name":"General John Bell Hood","type":"Role","_key":"97925","_from":"57591","_to":"57668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113572","_from":"57594","_to":"66924"} +{"$label":"ACTS_IN","name":"Jess Robin","type":"Role","_key":"103938","_from":"57594","_to":"61142"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105414","_from":"57595","_to":"62024"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105415","_from":"57597","_to":"62024"} +{"$label":"DIRECTED","_key":"97835","_from":"57624","_to":"57614"} +{"$label":"ACTS_IN","name":"Kimura gang member","type":"Role","_key":"97834","_from":"57623","_to":"57614"} +{"$label":"ACTS_IN","name":"Masako Fujii","type":"Role","_key":"97833","_from":"57622","_to":"57614"} +{"$label":"ACTS_IN","name":"Kaneko \/ Kimura gang member","type":"Role","_key":"97832","_from":"57621","_to":"57614"} +{"$label":"ACTS_IN","name":"Yu Hyuga","type":"Role","_key":"97831","_from":"57620","_to":"57614"} +{"$label":"ACTS_IN","name":"Sho Kimura","type":"Role","_key":"97829","_from":"57619","_to":"57614"} +{"$label":"ACTS_IN","name":"Violet Kimura","type":"Role","_key":"97828","_from":"57618","_to":"57614"} +{"$label":"ACTS_IN","name":"Ry\u00fbji Kimura \/ Kimura gang boss","type":"Role","_key":"97827","_from":"57617","_to":"57614"} +{"$label":"ACTS_IN","name":"Miki","type":"Role","_key":"97826","_from":"57616","_to":"57614"} +{"$label":"ACTS_IN","name":"Ami Hyuga","type":"Role","_key":"97825","_from":"57615","_to":"57614"} +{"$label":"DIRECTED","_key":"97851","_from":"57637","_to":"57625"} +{"$label":"ACTS_IN","name":"Collins","type":"Role","_key":"97850","_from":"57636","_to":"57625"} +{"$label":"ACTS_IN","name":"Reilly","type":"Role","_key":"97848","_from":"57635","_to":"57625"} +{"$label":"ACTS_IN","name":"Patton's Croney","type":"Role","_key":"97847","_from":"57634","_to":"57625"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"97846","_from":"57633","_to":"57625"} +{"$label":"ACTS_IN","name":"Mrs. Darcy","type":"Role","_key":"97844","_from":"57632","_to":"57625"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"97843","_from":"57631","_to":"57625"} +{"$label":"ACTS_IN","name":"Patton Snr.","type":"Role","_key":"97842","_from":"57630","_to":"57625"} +{"$label":"ACTS_IN","name":"Hawker","type":"Role","_key":"97841","_from":"57629","_to":"57625"} +{"$label":"ACTS_IN","name":"Seb","type":"Role","_key":"97840","_from":"57628","_to":"57625"} +{"$label":"ACTS_IN","name":"Alistair Patton","type":"Role","_key":"97839","_from":"57627","_to":"57625"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"97837","_from":"57626","_to":"57625"} +{"$label":"ACTS_IN","name":"Mayor Wilson","type":"Role","_key":"121124","_from":"57626","_to":"71139"} +{"$label":"ACTS_IN","name":"Tom 'Hide-Away Tom' Kingsley","type":"Role","_key":"99536","_from":"57631","_to":"58679"} +{"$label":"DIRECTED","_key":"97864","_from":"57644","_to":"57638"} +{"$label":"ACTS_IN","name":"Baby Cuthbert","type":"Role","_key":"97862","_from":"57643","_to":"57638"} +{"$label":"ACTS_IN","name":"Kit","type":"Role","_key":"97861","_from":"57642","_to":"57638"} +{"$label":"ACTS_IN","name":"Dave the Comedian \/ Mrs. Furblob","type":"Role","_key":"97859","_from":"57641","_to":"57638"} +{"$label":"ACTS_IN","name":"Melinda","type":"Role","_key":"97856","_from":"57640","_to":"57638"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"97855","_from":"57639","_to":"57638"} +{"$label":"ACTS_IN","name":"Oliver De Boys","type":"Role","_key":"118710","_from":"57639","_to":"69802"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"116649","_from":"57639","_to":"68665"} +{"$label":"ACTS_IN","name":"Edge","type":"Role","_key":"109102","_from":"57639","_to":"64462"} +{"$label":"ACTS_IN","name":"Rodney Tyler","type":"Role","_key":"97875","_from":"57651","_to":"57646"} +{"$label":"ACTS_IN","name":"Karin Daniels","type":"Role","_key":"97874","_from":"57650","_to":"57646"} +{"$label":"ACTS_IN","name":"Keisha Ray","type":"Role","_key":"97873","_from":"57649","_to":"57646"} +{"$label":"ACTS_IN","name":"Shauna Keaton","type":"Role","_key":"97872","_from":"57648","_to":"57646"} +{"$label":"ACTS_IN","name":"Kenneth Daniels","type":"Role","_key":"97871","_from":"57647","_to":"57646"} +{"$label":"DIRECTED","_key":"97887","_from":"57657","_to":"57653"} +{"$label":"ACTS_IN","name":"Heuk-woon","type":"Role","_key":"97886","_from":"57656","_to":"57653"} +{"$label":"ACTS_IN","name":"Wi-jin","type":"Role","_key":"97884","_from":"57655","_to":"57653"} +{"$label":"ACTS_IN","name":"Sang-hwan","type":"Role","_key":"97883","_from":"57654","_to":"57653"} +{"$label":"ACTS_IN","name":"Yeon So-ha","type":"Role","_key":"101706","_from":"57655","_to":"59860"} +{"$label":"ACTS_IN","name":"Cypher","type":"Role","_key":"100867","_from":"57656","_to":"59464"} +{"$label":"DIRECTED","_key":"121357","_from":"57657","_to":"71314"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"97895","_from":"57662","_to":"57658"} +{"$label":"ACTS_IN","name":"Roddy","type":"Role","_key":"97892","_from":"57661","_to":"57658"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"97890","_from":"57660","_to":"57658"} +{"$label":"DIRECTED","_key":"97888","_from":"57659","_to":"57658"} +{"$label":"DIRECTED","_key":"97907","_from":"57665","_to":"57663"} +{"$label":"ACTS_IN","name":"Molly Haines","type":"Role","_key":"97906","_from":"57664","_to":"57663"} +{"$label":"ACTS_IN","name":"Cherry Daiquiri \/ Beth","type":"Role","_key":"97914","_from":"57667","_to":"57666"} +{"$label":"ACTS_IN","name":"Leslie","type":"Role","_key":"110244","_from":"57667","_to":"65163"} +{"$label":"ACTS_IN","name":"Murphy Doucet","type":"Role","_key":"97928","_from":"57669","_to":"57668"} +{"$label":"DIRECTED","_key":"97936","_from":"57676","_to":"57672"} +{"$label":"ACTS_IN","name":"Luo-Lang","type":"Role","_key":"97934","_from":"57675","_to":"57672"} +{"$label":"ACTS_IN","name":"Kotaro","type":"Role","_key":"97933","_from":"57674","_to":"57672"} +{"$label":"ACTS_IN","name":"Nameless (\"Nanashi\")","type":"Role","_key":"97932","_from":"57673","_to":"57672"} +{"$label":"ACTS_IN","name":"Dr. Xander","type":"Role","_key":"97948","_from":"57684","_to":"57677"} +{"$label":"ACTS_IN","name":"Yoshitsune","type":"Role","_key":"97947","_from":"57683","_to":"57677"} +{"$label":"ACTS_IN","name":"Hitomi","type":"Role","_key":"97946","_from":"57682","_to":"57677"} +{"$label":"ACTS_IN","name":"Dr. Kestner","type":"Role","_key":"97945","_from":"57681","_to":"57677"} +{"$label":"ACTS_IN","name":"Yoshino","type":"Role","_key":"97944","_from":"57680","_to":"57677"} +{"$label":"ACTS_IN","name":"Nike","type":"Role","_key":"97943","_from":"57679","_to":"57677"} +{"$label":"ACTS_IN","name":"Aeacus","type":"Role","_key":"97940","_from":"57678","_to":"57677"} +{"$label":"DIRECTED","_key":"97969","_from":"57697","_to":"57685"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"97967","_from":"57696","_to":"57685"} +{"$label":"ACTS_IN","name":"Head of Benito","type":"Role","_key":"97964","_from":"57695","_to":"57685"} +{"$label":"ACTS_IN","name":"Head of Isaiah","type":"Role","_key":"97963","_from":"57694","_to":"57685"} +{"$label":"ACTS_IN","name":"Head of Frank","type":"Role","_key":"97962","_from":"57693","_to":"57685"} +{"$label":"ACTS_IN","name":"Head of Little Joey","type":"Role","_key":"97961","_from":"57692","_to":"57685"} +{"$label":"ACTS_IN","name":"Head of Jamal","type":"Role","_key":"97960","_from":"57691","_to":"57685"} +{"$label":"ACTS_IN","name":"Big Sep","type":"Role","_key":"97957","_from":"57690","_to":"57685"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"97956","_from":"57689","_to":"57685"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"97955","_from":"57688","_to":"57685"} +{"$label":"ACTS_IN","name":"Rico","type":"Role","_key":"97954","_from":"57687","_to":"57685"} +{"$label":"ACTS_IN","name":"Fern","type":"Role","_key":"97953","_from":"57686","_to":"57685"} +{"$label":"ACTS_IN","name":"Joe Gipp","type":"Role","_key":"99828","_from":"57691","_to":"58883"} +{"$label":"ACTS_IN","name":"Farrel","type":"Role","_key":"97973","_from":"57702","_to":"57699"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"97972","_from":"57701","_to":"57699"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"97971","_from":"57700","_to":"57699"} +{"$label":"ACTS_IN","name":"Nisha","type":"Role","_key":"97976","_from":"57706","_to":"57704"} +{"$label":"ACTS_IN","name":"Pooja","type":"Role","_key":"97975","_from":"57705","_to":"57704"} +{"$label":"ACTS_IN","name":"Chandramukhi","type":"Role","_key":"106300","_from":"57705","_to":"62621"} +{"$label":"ACTS_IN","name":"Dia","type":"Role","_key":"98772","_from":"57705","_to":"58204"} +{"$label":"ACTS_IN","name":"Hallinger","type":"Role","_key":"97981","_from":"57708","_to":"57707"} +{"$label":"DIRECTED","_key":"98004","_from":"57716","_to":"57711"} +{"$label":"ACTS_IN","name":"Kevin's Mom","type":"Role","_key":"98003","_from":"57715","_to":"57711"} +{"$label":"ACTS_IN","name":"Riley","type":"Role","_key":"98002","_from":"57714","_to":"57711"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"98001","_from":"57713","_to":"57711"} +{"$label":"ACTS_IN","name":"Carter Scott","type":"Role","_key":"98000","_from":"57712","_to":"57711"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"98024","_from":"57724","_to":"57719"} +{"$label":"ACTS_IN","name":"Tadzio de Santis","type":"Role","_key":"98023","_from":"57723","_to":"57719"} +{"$label":"ACTS_IN","name":"Dr. Maria Vaselli","type":"Role","_key":"98022","_from":"57722","_to":"57719"} +{"$label":"ACTS_IN","name":"Bernice Stewart \/ Sharon","type":"Role","_key":"98018","_from":"57721","_to":"57719"} +{"$label":"ACTS_IN","name":"Capt. America \/ Steve Rogers","type":"Role","_key":"98012","_from":"57720","_to":"57719"} +{"$label":"ACTS_IN","name":"Myshkin","type":"Role","_key":"114825","_from":"57720","_to":"67629"} +{"$label":"ACTS_IN","name":"Danny Burke","type":"Role","_key":"98305","_from":"57720","_to":"57901"} +{"$label":"DIRECTED","_key":"98028","_from":"57726","_to":"57725"} +{"$label":"DIRECTED","_key":"105422","_from":"57726","_to":"62025"} +{"$label":"ACTS_IN","name":"Alexandra Fredericks","type":"Role","_key":"98043","_from":"57731","_to":"57729"} +{"$label":"DIRECTED","_key":"98037","_from":"57730","_to":"57729"} +{"$label":"ACTS_IN","name":"Henry (young)","type":"Role","_key":"98054","_from":"57736","_to":"57732"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"98053","_from":"57735","_to":"57732"} +{"$label":"ACTS_IN","name":"Police officer","type":"Role","_key":"98052","_from":"57734","_to":"57732"} +{"$label":"ACTS_IN","name":"Jamie Ashen","type":"Role","_key":"98047","_from":"57733","_to":"57732"} +{"$label":"ACTS_IN","name":"Dave Cyrus","type":"Role","_key":"118971","_from":"57734","_to":"69921"} +{"$label":"ACTS_IN","name":"Nathaniel","type":"Role","_key":"120014","_from":"57735","_to":"70480"} +{"$label":"DIRECTED","_key":"98057","_from":"57738","_to":"57737"} +{"$label":"DIRECTED","_key":"116387","_from":"57738","_to":"68517"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"98067","_from":"57746","_to":"57739"} +{"$label":"ACTS_IN","name":"Alex Louis Armstrong","type":"Role","_key":"98064","_from":"57745","_to":"57739"} +{"$label":"ACTS_IN","name":"Roy Mustang","type":"Role","_key":"98063","_from":"57744","_to":"57739"} +{"$label":"ACTS_IN","name":"Alphonse Elric","type":"Role","_key":"98062","_from":"57743","_to":"57739"} +{"$label":"ACTS_IN","name":"Edward Elric","type":"Role","_key":"98061","_from":"57742","_to":"57739"} +{"$label":"ACTS_IN","name":"Dietlinde Eckart","type":"Role","_key":"98060","_from":"57741","_to":"57739"} +{"$label":"DIRECTED","_key":"98058","_from":"57740","_to":"57739"} +{"$label":"ACTS_IN","name":"Toushirou Hitsugaya","type":"Role","_key":"111126","_from":"57742","_to":"65636"} +{"$label":"ACTS_IN","name":"Nemu Kurotsuchi","type":"Role","_key":"111353","_from":"57743","_to":"65761"} +{"$label":"ACTS_IN","name":"Karin Kurosaki","type":"Role","_key":"105008","_from":"57743","_to":"61775"} +{"$label":"ACTS_IN","name":"Ken-\u00d4 (Raoh)","type":"Role","_key":"121339","_from":"57745","_to":"71298"} +{"$label":"ACTS_IN","name":"El Drago","type":"Role","_key":"120441","_from":"57745","_to":"70752"} +{"$label":"ACTS_IN","name":"Costume Girl","type":"Role","_key":"98090","_from":"57759","_to":"57748"} +{"$label":"ACTS_IN","name":"Casey's Mom","type":"Role","_key":"98087","_from":"57758","_to":"57748"} +{"$label":"ACTS_IN","name":"Television Interviewer","type":"Role","_key":"98086","_from":"57757","_to":"57748"} +{"$label":"ACTS_IN","name":"Jacob Gelman","type":"Role","_key":"98085","_from":"57756","_to":"57748"} +{"$label":"ACTS_IN","name":"Audrey Benjamin","type":"Role","_key":"98084","_from":"57755","_to":"57748"} +{"$label":"ACTS_IN","name":"Naked P.A.","type":"Role","_key":"98083","_from":"57754","_to":"57748"} +{"$label":"ACTS_IN","name":"Mysterious Woman \/ Waitress","type":"Role","_key":"98081","_from":"57753","_to":"57748"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"98080","_from":"57752","_to":"57748"} +{"$label":"ACTS_IN","name":"Larry Benjamin","type":"Role","_key":"98079","_from":"57749","_to":"57748"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"98078","_from":"57751","_to":"57748"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"98077","_from":"57750","_to":"57748"} +{"$label":"DIRECTED","_key":"98076","_from":"57749","_to":"57748"} +{"$label":"ACTS_IN","name":"Father Lloyd","type":"Role","_key":"120971","_from":"57749","_to":"71049"} +{"$label":"ACTS_IN","name":"Mature Arbie","type":"Role","_key":"111797","_from":"57749","_to":"65986"} +{"$label":"ACTS_IN","name":"Shocked Onlooker","type":"Role","_key":"108222","_from":"57749","_to":"63955"} +{"$label":"DIRECTED","_key":"111803","_from":"57749","_to":"65986"} +{"$label":"DIRECTED","_key":"108208","_from":"57749","_to":"63955"} +{"$label":"DIRECTED","_key":"103658","_from":"57749","_to":"60965"} +{"$label":"ACTS_IN","name":"Tromeo Que","type":"Role","_key":"108210","_from":"57750","_to":"63955"} +{"$label":"ACTS_IN","name":"Dance-off Zombie #1","type":"Role","_key":"111800","_from":"57755","_to":"65986"} +{"$label":"ACTS_IN","name":"Mutant Kid 2","type":"Role","_key":"108223","_from":"57755","_to":"63955"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"111796","_from":"57756","_to":"65986"} +{"$label":"ACTS_IN","name":"1-900-HOT-HUNK","type":"Role","_key":"108220","_from":"57756","_to":"63955"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"108216","_from":"57757","_to":"63955"} +{"$label":"ACTS_IN","name":"Cadet Captain Jennifer Stone","type":"Role","_key":"98097","_from":"57761","_to":"57760"} +{"$label":"ACTS_IN","name":"Jackie Dorsey (as Christy Romano)","type":"Role","_key":"103126","_from":"57761","_to":"60659"} +{"$label":"ACTS_IN","name":"Jackie Dorsey","type":"Role","_key":"102245","_from":"57761","_to":"60165"} +{"$label":"DIRECTED","_key":"98105","_from":"57763","_to":"57762"} +{"$label":"DIRECTED","_key":"98109","_from":"57765","_to":"57764"} +{"$label":"DIRECTED","_key":"119215","_from":"57765","_to":"70044"} +{"$label":"DIRECTED","_key":"118151","_from":"57765","_to":"69442"} +{"$label":"ACTS_IN","name":"Jenna Reed","type":"Role","_key":"98113","_from":"57767","_to":"57766"} +{"$label":"ACTS_IN","name":"Lindsay Pratt","type":"Role","_key":"98120","_from":"57773","_to":"57768"} +{"$label":"ACTS_IN","name":"Victor Padilla","type":"Role","_key":"98119","_from":"57772","_to":"57768"} +{"$label":"ACTS_IN","name":"Robert Brown","type":"Role","_key":"98117","_from":"57771","_to":"57768"} +{"$label":"ACTS_IN","name":"Oswaldo Sanchez","type":"Role","_key":"98116","_from":"57770","_to":"57768"} +{"$label":"ACTS_IN","name":"Jerry Ferro","type":"Role","_key":"98115","_from":"57769","_to":"57768"} +{"$label":"ACTS_IN","name":"Commander Nebula","type":"Role","_key":"107942","_from":"57769","_to":"63745"} +{"$label":"ACTS_IN","name":"Ken Halsband","type":"Role","_key":"103201","_from":"57769","_to":"60705"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100586","_from":"57769","_to":"59319"} +{"$label":"ACTS_IN","name":"May Cheung - in Bun's eyes","type":"Role","_key":"98130","_from":"57777","_to":"57774"} +{"$label":"ACTS_IN","name":"Gigi (as Karen Lee)","type":"Role","_key":"98129","_from":"57776","_to":"57774"} +{"$label":"ACTS_IN","name":"Wong Kwok Chu (as Lee Kwok Lun)","type":"Role","_key":"98128","_from":"57775","_to":"57774"} +{"$label":"ACTS_IN","name":"Mother Koen","type":"Role","_key":"98161","_from":"57808","_to":"57779"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"98160","_from":"57807","_to":"57779"} +{"$label":"ACTS_IN","name":"Woman car","type":"Role","_key":"98159","_from":"57806","_to":"57779"} +{"$label":"ACTS_IN","name":"Buss Driver","type":"Role","_key":"98158","_from":"57805","_to":"57779"} +{"$label":"ACTS_IN","name":"Woman Parking Lot","type":"Role","_key":"98157","_from":"57804","_to":"57779"} +{"$label":"ACTS_IN","name":"Jury Member","type":"Role","_key":"98156","_from":"57803","_to":"57779"} +{"$label":"ACTS_IN","name":"Jury Member","type":"Role","_key":"98155","_from":"57802","_to":"57779"} +{"$label":"ACTS_IN","name":"Jury Member","type":"Role","_key":"98154","_from":"57801","_to":"57779"} +{"$label":"ACTS_IN","name":"Jury Member","type":"Role","_key":"98153","_from":"57800","_to":"57779"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"98152","_from":"57799","_to":"57779"} +{"$label":"ACTS_IN","name":"Fan Dries","type":"Role","_key":"98151","_from":"57798","_to":"57779"} +{"$label":"ACTS_IN","name":"Stef Vanneste","type":"Role","_key":"98150","_from":"57797","_to":"57779"} +{"$label":"ACTS_IN","name":"Dorian","type":"Role","_key":"98149","_from":"57796","_to":"57779"} +{"$label":"ACTS_IN","name":"Erna","type":"Role","_key":"98148","_from":"57795","_to":"57779"} +{"$label":"ACTS_IN","name":"Friend Dikke Lul","type":"Role","_key":"98147","_from":"57794","_to":"57779"} +{"$label":"ACTS_IN","name":"Dikke Lul","type":"Role","_key":"98146","_from":"57793","_to":"57779"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"98145","_from":"57792","_to":"57779"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"98144","_from":"57791","_to":"57779"} +{"$label":"ACTS_IN","name":"Lio","type":"Role","_key":"98143","_from":"57790","_to":"57779"} +{"$label":"ACTS_IN","name":"Ivan's Daughter","type":"Role","_key":"98142","_from":"57789","_to":"57779"} +{"$label":"ACTS_IN","name":"Ivan's Wife","type":"Role","_key":"98141","_from":"57788","_to":"57779"} +{"$label":"ACTS_IN","name":"Jan Verbeek 10 years","type":"Role","_key":"98140","_from":"57787","_to":"57779"} +{"$label":"ACTS_IN","name":"Mother Verbeek","type":"Role","_key":"98139","_from":"57786","_to":"57779"} +{"$label":"ACTS_IN","name":"Pa Verbeek","type":"Role","_key":"98138","_from":"57785","_to":"57779"} +{"$label":"ACTS_IN","name":"Ivan Van Dorpe","type":"Role","_key":"98137","_from":"57784","_to":"57779"} +{"$label":"ACTS_IN","name":"Jan Verbeek","type":"Role","_key":"98136","_from":"57783","_to":"57779"} +{"$label":"ACTS_IN","name":"Koen de Geyter","type":"Role","_key":"98135","_from":"57782","_to":"57779"} +{"$label":"ACTS_IN","name":"Dries","type":"Role","_key":"98134","_from":"57781","_to":"57779"} +{"$label":"DIRECTED","_key":"98133","_from":"57780","_to":"57779"} +{"$label":"DIRECTED","_key":"98165","_from":"57813","_to":"57809"} +{"$label":"ACTS_IN","name":"Asaka Seto","type":"Role","_key":"98164","_from":"57812","_to":"57809"} +{"$label":"ACTS_IN","name":"Y\u00fb Yoshizawa","type":"Role","_key":"98163","_from":"57811","_to":"57809"} +{"$label":"ACTS_IN","name":"Mimura","type":"Role","_key":"98162","_from":"57810","_to":"57809"} +{"$label":"ACTS_IN","name":"Naomi Misora","type":"Role","_key":"106655","_from":"57812","_to":"62844"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98167","_from":"57815","_to":"57814"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98181","_from":"57830","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98180","_from":"57829","_to":"57816"} +{"$label":"ACTS_IN","name":"Bottom","type":"Role","_key":"98179","_from":"57828","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98178","_from":"57827","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98177","_from":"57826","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98176","_from":"57825","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98175","_from":"57824","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98174","_from":"57823","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98173","_from":"57822","_to":"57816"} +{"$label":"ACTS_IN","name":"Bottom","type":"Role","_key":"98172","_from":"57821","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98171","_from":"57820","_to":"57816"} +{"$label":"ACTS_IN","name":"Bottom","type":"Role","_key":"98170","_from":"57819","_to":"57816"} +{"$label":"ACTS_IN","name":"Versatile","type":"Role","_key":"98169","_from":"57818","_to":"57816"} +{"$label":"DIRECTED","_key":"98168","_from":"57817","_to":"57816"} +{"$label":"ACTS_IN","name":"Jay Corgan","type":"Role","_key":"98183","_from":"57832","_to":"57831"} +{"$label":"ACTS_IN","name":"Amy Leigh","type":"Role","_key":"98190","_from":"57840","_to":"57833"} +{"$label":"ACTS_IN","name":"Samantha Lake","type":"Role","_key":"98189","_from":"57839","_to":"57833"} +{"$label":"ACTS_IN","name":"Kelly Lake","type":"Role","_key":"98188","_from":"57838","_to":"57833"} +{"$label":"ACTS_IN","name":"Ben Graham","type":"Role","_key":"98187","_from":"57837","_to":"57833"} +{"$label":"ACTS_IN","name":"Brielle Lake","type":"Role","_key":"98186","_from":"57836","_to":"57833"} +{"$label":"ACTS_IN","name":"Bill Welsh","type":"Role","_key":"98185","_from":"57835","_to":"57833"} +{"$label":"DIRECTED","_key":"98184","_from":"57834","_to":"57833"} +{"$label":"DIRECTED","_key":"102194","_from":"57834","_to":"60140"} +{"$label":"DIRECTED","_key":"98209","_from":"57853","_to":"57841"} +{"$label":"ACTS_IN","name":"CIA Agent","type":"Role","_key":"98207","_from":"57852","_to":"57841"} +{"$label":"ACTS_IN","name":"Navy SEAL","type":"Role","_key":"98206","_from":"57851","_to":"57841"} +{"$label":"ACTS_IN","name":"Operations Center Technician","type":"Role","_key":"98205","_from":"57850","_to":"57841"} +{"$label":"ACTS_IN","name":"Ramirez","type":"Role","_key":"98202","_from":"57849","_to":"57841"} +{"$label":"ACTS_IN","name":"Soldier","type":"Role","_key":"98201","_from":"57848","_to":"57841"} +{"$label":"ACTS_IN","name":"Nicole Jenkins","type":"Role","_key":"98198","_from":"57847","_to":"57841"} +{"$label":"ACTS_IN","name":"Petty Officer 2nd Class Greg Armstrong","type":"Role","_key":"98197","_from":"57846","_to":"57841"} +{"$label":"ACTS_IN","name":"Petty Officer 3rd Class Steve Gaines","type":"Role","_key":"98196","_from":"57845","_to":"57841"} +{"$label":"ACTS_IN","name":"Alvaro Cardona","type":"Role","_key":"98195","_from":"57844","_to":"57841"} +{"$label":"ACTS_IN","name":"Petty Officer 2nd Class Kevin Derricks","type":"Role","_key":"98194","_from":"57843","_to":"57841"} +{"$label":"ACTS_IN","name":"Chief Carter Holt","type":"Role","_key":"98193","_from":"57842","_to":"57841"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"98220","_from":"57863","_to":"57854"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"98219","_from":"57862","_to":"57854"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"98217","_from":"57861","_to":"57854"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"98216","_from":"57860","_to":"57854"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"98215","_from":"57859","_to":"57854"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"98214","_from":"57858","_to":"57854"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"98213","_from":"57857","_to":"57854"} +{"$label":"DIRECTED","_key":"98211","_from":"57856","_to":"57854"} +{"$label":"DIRECTED","_key":"98210","_from":"57855","_to":"57854"} +{"$label":"ACTS_IN","name":"Brad \/ Mud","type":"Role","_key":"114393","_from":"57862","_to":"67376"} +{"$label":"DIRECTED","_key":"98227","_from":"57866","_to":"57865"} +{"$label":"ACTS_IN","name":"Crockett","type":"Role","_key":"98236","_from":"57871","_to":"57868"} +{"$label":"ACTS_IN","name":"Roxanne","type":"Role","_key":"98235","_from":"57870","_to":"57868"} +{"$label":"ACTS_IN","name":"Morty","type":"Role","_key":"98234","_from":"57869","_to":"57868"} +{"$label":"ACTS_IN","name":"Terry Allen","type":"Role","_key":"98246","_from":"57877","_to":"57875"} +{"$label":"ACTS_IN","name":"Gabe Hassan","type":"Role","_key":"98245","_from":"57876","_to":"57875"} +{"$label":"DIRECTED","_key":"98249","_from":"57879","_to":"57878"} +{"$label":"ACTS_IN","name":"Inga","type":"Role","_key":"98256","_from":"57881","_to":"57880"} +{"$label":"ACTS_IN","name":"Sun Guiqin","type":"Role","_key":"98263","_from":"57886","_to":"57882"} +{"$label":"ACTS_IN","name":"Wang Jincun","type":"Role","_key":"98262","_from":"57885","_to":"57882"} +{"$label":"ACTS_IN","name":"Zhao Erdou","type":"Role","_key":"98261","_from":"57884","_to":"57882"} +{"$label":"ACTS_IN","name":"Gu Zidi","type":"Role","_key":"98260","_from":"57883","_to":"57882"} +{"$label":"ACTS_IN","name":"Ruth Tolson","type":"Role","_key":"98272","_from":"57889","_to":"57887"} +{"$label":"ACTS_IN","name":"Henry Lowe","type":"Role","_key":"98267","_from":"57888","_to":"57887"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98282","_from":"57899","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself (as N. Barry Greenhouse)","type":"Role","_key":"98281","_from":"57898","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98280","_from":"57897","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98279","_from":"57896","_to":"57890"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"98278","_from":"57895","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98277","_from":"57894","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself (as Jean-Fran\u00e7ois Heckel)","type":"Role","_key":"98276","_from":"57893","_to":"57890"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"98275","_from":"57892","_to":"57890"} +{"$label":"DIRECTED","_key":"98274","_from":"57891","_to":"57890"} +{"$label":"ACTS_IN","name":"Dean Ulich","type":"Role","_key":"98308","_from":"57905","_to":"57901"} +{"$label":"ACTS_IN","name":"Stan Gable","type":"Role","_key":"98304","_from":"57904","_to":"57901"} +{"$label":"ACTS_IN","name":"Betty Childs","type":"Role","_key":"98302","_from":"57903","_to":"57901"} +{"$label":"ACTS_IN","name":"Harold Wormser","type":"Role","_key":"98298","_from":"57902","_to":"57901"} +{"$label":"ACTS_IN","name":"Des","type":"Role","_key":"98322","_from":"57910","_to":"57908"} +{"$label":"ACTS_IN","name":"Lucy Chang","type":"Role","_key":"98321","_from":"57909","_to":"57908"} +{"$label":"ACTS_IN","name":"Meatballs","type":"Role","_key":"117995","_from":"57910","_to":"69356"} +{"$label":"DIRECTED","_key":"98325","_from":"57912","_to":"57911"} +{"$label":"ACTS_IN","name":"Al Bowlly","type":"Role","_key":"98336","_from":"57916","_to":"57914"} +{"$label":"ACTS_IN","name":"Ruth Williams","type":"Role","_key":"98335","_from":"57915","_to":"57914"} +{"$label":"DIRECTED","_key":"98353","_from":"57924","_to":"57917"} +{"$label":"ACTS_IN","name":"Original Owner","type":"Role","_key":"98352","_from":"57923","_to":"57917"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"98351","_from":"57922","_to":"57917"} +{"$label":"ACTS_IN","name":"Gertie","type":"Role","_key":"98350","_from":"57921","_to":"57917"} +{"$label":"ACTS_IN","name":"Fran","type":"Role","_key":"98349","_from":"57920","_to":"57917"} +{"$label":"ACTS_IN","name":"Cop #2","type":"Role","_key":"98347","_from":"57919","_to":"57917"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"98342","_from":"57918","_to":"57917"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"102109","_from":"57918","_to":"60066"} +{"$label":"ACTS_IN","name":"The Sorcerer","type":"Role","_key":"98369","_from":"57936","_to":"57926"} +{"$label":"ACTS_IN","name":"Munandjarra","type":"Role","_key":"98368","_from":"57935","_to":"57926"} +{"$label":"ACTS_IN","name":"Banalandju","type":"Role","_key":"98367","_from":"57934","_to":"57926"} +{"$label":"ACTS_IN","name":"Nowalingu","type":"Role","_key":"98366","_from":"57933","_to":"57926"} +{"$label":"ACTS_IN","name":"Minygululu","type":"Role","_key":"98365","_from":"57932","_to":"57926"} +{"$label":"ACTS_IN","name":"Birrinbirrin","type":"Role","_key":"98363","_from":"57931","_to":"57926"} +{"$label":"ACTS_IN","name":"Dayindi \/ Yeeralparil","type":"Role","_key":"98362","_from":"57930","_to":"57926"} +{"$label":"ACTS_IN","name":"Ridjimiraril","type":"Role","_key":"98361","_from":"57929","_to":"57926"} +{"$label":"DIRECTED","_key":"98360","_from":"57928","_to":"57926"} +{"$label":"DIRECTED","_key":"98359","_from":"57927","_to":"57926"} +{"$label":"DIRECTED","_key":"98370","_from":"57938","_to":"57937"} +{"$label":"ACTS_IN","name":"Yoshiyama, Kazuko","type":"Role","_key":"98378","_from":"57949","_to":"57942"} +{"$label":"ACTS_IN","name":"Konno, Miyuki","type":"Role","_key":"98377","_from":"57948","_to":"57942"} +{"$label":"ACTS_IN","name":"Hayakawa, Yuri","type":"Role","_key":"98376","_from":"57947","_to":"57942"} +{"$label":"ACTS_IN","name":"Fukushima-sensei","type":"Role","_key":"98375","_from":"57946","_to":"57942"} +{"$label":"ACTS_IN","name":"Tsuda, Kousuke","type":"Role","_key":"98374","_from":"57945","_to":"57942"} +{"$label":"ACTS_IN","name":"Konno, Makoto","type":"Role","_key":"98372","_from":"57944","_to":"57942"} +{"$label":"DIRECTED","_key":"98371","_from":"57943","_to":"57942"} +{"$label":"ACTS_IN","name":"Kenpachi Zaraki","type":"Role","_key":"111367","_from":"57946","_to":"65761"} +{"$label":"ACTS_IN","name":"Kenpachi Zaraki","type":"Role","_key":"105023","_from":"57946","_to":"61775"} +{"$label":"ACTS_IN","name":"Gendo Ikari","type":"Role","_key":"103314","_from":"57946","_to":"60776"} +{"$label":"ACTS_IN","name":"Ghajini Dharmatama","type":"Role","_key":"98383","_from":"57954","_to":"57950"} +{"$label":"ACTS_IN","name":"Sunita","type":"Role","_key":"98382","_from":"57953","_to":"57950"} +{"$label":"ACTS_IN","name":"Kalpana","type":"Role","_key":"98381","_from":"57952","_to":"57950"} +{"$label":"DIRECTED","_key":"98379","_from":"57951","_to":"57950"} +{"$label":"ACTS_IN","name":"Andal","type":"Role","_key":"114228","_from":"57952","_to":"67280"} +{"$label":"DIRECTED","_key":"98392","_from":"57960","_to":"57955"} +{"$label":"ACTS_IN","name":"Ms. Melwani","type":"Role","_key":"98391","_from":"57959","_to":"57955"} +{"$label":"ACTS_IN","name":"Item Number- Shut Up & Bounce","type":"Role","_key":"98388","_from":"57958","_to":"57955"} +{"$label":"ACTS_IN","name":"Abhimanyu Singh","type":"Role","_key":"98386","_from":"57957","_to":"57955"} +{"$label":"ACTS_IN","name":"Neha","type":"Role","_key":"98385","_from":"57956","_to":"57955"} +{"$label":"ACTS_IN","name":"Shubhi","type":"Role","_key":"120855","_from":"57956","_to":"70970"} +{"$label":"ACTS_IN","name":"Meghna Mathur","type":"Role","_key":"120653","_from":"57956","_to":"70859"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"120652","_from":"57956","_to":"70858"} +{"$label":"ACTS_IN","name":"Simmi Ahuja","type":"Role","_key":"120641","_from":"57956","_to":"70853"} +{"$label":"ACTS_IN","name":"Roma","type":"Role","_key":"112475","_from":"57956","_to":"66413"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108815","_from":"57956","_to":"64308"} +{"$label":"ACTS_IN","name":"Chamku","type":"Role","_key":"120854","_from":"57957","_to":"70970"} +{"$label":"ACTS_IN","name":"Seema Chopra","type":"Role","_key":"120745","_from":"57958","_to":"70928"} +{"$label":"ACTS_IN","name":"Kuhu's Mother","type":"Role","_key":"120892","_from":"57959","_to":"70978"} +{"$label":"ACTS_IN","name":"Dadiji","type":"Role","_key":"120882","_from":"57959","_to":"70976"} +{"$label":"ACTS_IN","name":"Mrs. Chojar","type":"Role","_key":"98789","_from":"57959","_to":"58204"} +{"$label":"ACTS_IN","name":"Taani","type":"Role","_key":"98396","_from":"57962","_to":"57961"} +{"$label":"DIRECTED","_key":"98399","_from":"57964","_to":"57963"} +{"$label":"DIRECTED","_key":"120853","_from":"57964","_to":"70961"} +{"$label":"DIRECTED","_key":"105864","_from":"57964","_to":"62318"} +{"$label":"DIRECTED","_key":"98410","_from":"57975","_to":"57965"} +{"$label":"ACTS_IN","name":"Dorj","type":"Role","_key":"98409","_from":"57974","_to":"57965"} +{"$label":"ACTS_IN","name":"Guru","type":"Role","_key":"98408","_from":"57973","_to":"57965"} +{"$label":"ACTS_IN","name":"Elias","type":"Role","_key":"98407","_from":"57972","_to":"57965"} +{"$label":"ACTS_IN","name":"Henningsson","type":"Role","_key":"98406","_from":"57971","_to":"57965"} +{"$label":"ACTS_IN","name":"Risten","type":"Role","_key":"98405","_from":"57970","_to":"57965"} +{"$label":"ACTS_IN","name":"Pe Nisj","type":"Role","_key":"98404","_from":"57969","_to":"57965"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"98403","_from":"57968","_to":"57965"} +{"$label":"ACTS_IN","name":"Mats","type":"Role","_key":"98402","_from":"57967","_to":"57965"} +{"$label":"ACTS_IN","name":"Nejla","type":"Role","_key":"98401","_from":"57966","_to":"57965"} +{"$label":"DIRECTED","_key":"98416","_from":"57977","_to":"57976"} +{"$label":"DIRECTED","_key":"119525","_from":"57977","_to":"70212"} +{"$label":"DIRECTED","_key":"106004","_from":"57977","_to":"62410"} +{"$label":"DIRECTED","_key":"101780","_from":"57977","_to":"59899"} +{"$label":"DIRECTED","_key":"98429","_from":"57987","_to":"57979"} +{"$label":"ACTS_IN","name":"Marit","type":"Role","_key":"98428","_from":"57986","_to":"57979"} +{"$label":"ACTS_IN","name":"\u00c5se Seierland","type":"Role","_key":"98427","_from":"57985","_to":"57979"} +{"$label":"ACTS_IN","name":"Stig","type":"Role","_key":"98426","_from":"57984","_to":"57979"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"98425","_from":"57983","_to":"57979"} +{"$label":"ACTS_IN","name":"Mohammed","type":"Role","_key":"98424","_from":"57982","_to":"57979"} +{"$label":"ACTS_IN","name":"Robert Flycht","type":"Role","_key":"98423","_from":"57981","_to":"57979"} +{"$label":"ACTS_IN","name":"Morgan P\u00e5lsson","type":"Role","_key":"98422","_from":"57980","_to":"57979"} +{"$label":"ACTS_IN","name":"Lena Svensson","type":"Role","_key":"114484","_from":"57983","_to":"67439"} +{"$label":"ACTS_IN","name":"G\u00f6sta Backlund","type":"Role","_key":"118133","_from":"57984","_to":"69430"} +{"$label":"ACTS_IN","name":"G\u00f6sta Backlund","type":"Role","_key":"118127","_from":"57984","_to":"69425"} +{"$label":"ACTS_IN","name":"John Cowan","type":"Role","_key":"98431","_from":"57991","_to":"57989"} +{"$label":"ACTS_IN","name":"Wade Simmons","type":"Role","_key":"98430","_from":"57990","_to":"57989"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118924","_from":"57990","_to":"69891"} +{"$label":"ACTS_IN","name":"Wade Simmons","type":"Role","_key":"98436","_from":"57990","_to":"57992"} +{"$label":"ACTS_IN","name":"John Cowan","type":"Role","_key":"98432","_from":"57991","_to":"57992"} +{"$label":"ACTS_IN","name":"Richie Schley","type":"Role","_key":"98435","_from":"57995","_to":"57992"} +{"$label":"ACTS_IN","name":"Darren Berrecloth","type":"Role","_key":"98434","_from":"57994","_to":"57992"} +{"$label":"ACTS_IN","name":"Cedric Gracia","type":"Role","_key":"98433","_from":"57993","_to":"57992"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118911","_from":"57994","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118897","_from":"57994","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118881","_from":"57994","_to":"69869"} +{"$label":"ACTS_IN","name":"Darren Berrecloth","type":"Role","_key":"98442","_from":"57994","_to":"57999"} +{"$label":"ACTS_IN","name":"Darren Berrecloth","type":"Role","_key":"98439","_from":"57994","_to":"57996"} +{"$label":"ACTS_IN","name":"Paul Basagoitia","type":"Role","_key":"98438","_from":"57998","_to":"57996"} +{"$label":"ACTS_IN","name":"Grant Allen","type":"Role","_key":"98437","_from":"57997","_to":"57996"} +{"$label":"ACTS_IN","name":"Paul Basagoitia","type":"Role","_key":"98441","_from":"57998","_to":"57999"} +{"$label":"ACTS_IN","name":"Grant Allen","type":"Role","_key":"98440","_from":"58000","_to":"57999"} +{"$label":"ACTS_IN","name":"Elettricista","type":"Role","_key":"98457","_from":"58012","_to":"58003"} +{"$label":"ACTS_IN","name":"Benedetto","type":"Role","_key":"98454","_from":"58011","_to":"58003"} +{"$label":"ACTS_IN","name":"Generoso Rambone","type":"Role","_key":"98453","_from":"58010","_to":"58003"} +{"$label":"ACTS_IN","name":"Iole \/ hostess","type":"Role","_key":"98452","_from":"58009","_to":"58003"} +{"$label":"ACTS_IN","name":"Geometra Mirabassi","type":"Role","_key":"98451","_from":"58008","_to":"58003"} +{"$label":"ACTS_IN","name":"Daria","type":"Role","_key":"98449","_from":"58007","_to":"58003"} +{"$label":"ACTS_IN","name":"Maria Libera","type":"Role","_key":"98448","_from":"58006","_to":"58003"} +{"$label":"ACTS_IN","name":"Nico","type":"Role","_key":"98447","_from":"58005","_to":"58003"} +{"$label":"ACTS_IN","name":"Gustavo","type":"Role","_key":"98445","_from":"58004","_to":"58003"} +{"$label":"ACTS_IN","name":"Il Dandi","type":"Role","_key":"99864","_from":"58005","_to":"58894"} +{"$label":"ACTS_IN","name":"Lucrezia","type":"Role","_key":"109455","_from":"58006","_to":"64659"} +{"$label":"DIRECTED","_key":"98460","_from":"58016","_to":"58014"} +{"$label":"DIRECTED","_key":"98459","_from":"58015","_to":"58014"} +{"$label":"ACTS_IN","name":"Astronaut Confronting Cosmic Reality","type":"Role","_key":"98473","_from":"58026","_to":"58017"} +{"$label":"ACTS_IN","name":"Faithless Astronaut","type":"Role","_key":"98472","_from":"58025","_to":"58017"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"98471","_from":"58024","_to":"58017"} +{"$label":"ACTS_IN","name":"Sunglasses-wearing Astronaut","type":"Role","_key":"98470","_from":"58023","_to":"58017"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"98468","_from":"58022","_to":"58017"} +{"$label":"ACTS_IN","name":"The Martian","type":"Role","_key":"98465","_from":"58018","_to":"58017"} +{"$label":"ACTS_IN","name":"Major Syrtis","type":"Role","_key":"98464","_from":"58021","_to":"58017"} +{"$label":"DIRECTED","_key":"98463","_from":"58020","_to":"58017"} +{"$label":"DIRECTED","_key":"98462","_from":"58019","_to":"58017"} +{"$label":"DIRECTED","_key":"98461","_from":"58018","_to":"58017"} +{"$label":"ACTS_IN","name":"Ploning","type":"Role","_key":"98474","_from":"58028","_to":"58027"} +{"$label":"ACTS_IN","name":"Jamie Zawinski","type":"Role","_key":"98479","_from":"58033","_to":"58029"} +{"$label":"ACTS_IN","name":"Stuart Parmenter","type":"Role","_key":"98478","_from":"58032","_to":"58029"} +{"$label":"ACTS_IN","name":"Scott Collins","type":"Role","_key":"98477","_from":"58031","_to":"58029"} +{"$label":"DIRECTED","_key":"98476","_from":"58030","_to":"58029"} +{"$label":"ACTS_IN","name":"Sheldon Cardoza","type":"Role","_key":"98492","_from":"58037","_to":"58035"} +{"$label":"ACTS_IN","name":"Mary Saunders","type":"Role","_key":"98488","_from":"58036","_to":"58035"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108518","_from":"58037","_to":"64139"} +{"$label":"ACTS_IN","name":"Ray Shoesmith","type":"Role","_key":"98496","_from":"58040","_to":"58039"} +{"$label":"DIRECTED","_key":"98511","_from":"58053","_to":"58041"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"98510","_from":"58053","_to":"58041"} +{"$label":"ACTS_IN","name":"\u041f\u043e\u043c\u0438\u0434\u043e\u0440, \u043f\u0440\u0430\u043f\u043e\u0440\u0449\u0438\u043a","type":"Role","_key":"98508","_from":"58052","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0410\u0445\u043c\u0435\u0442, \u0434\u0443\u0448\u043c\u0430\u043d","type":"Role","_key":"98507","_from":"58051","_to":"58041"} +{"$label":"ACTS_IN","name":"\u041a\u0443\u0440\u0431\u0430\u0448\u0438 (\u041c\u0435\u0434\u0438\u0446\u0438\u043d\u0430), \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0441\u0435\u0440\u0436\u0430\u043d\u0442","type":"Role","_key":"98506","_from":"58050","_to":"58041"} +{"$label":"ACTS_IN","name":"\u043f\u0440\u0430\u043f\u043e\u0440\u0449\u0438\u043a \u0414\u044b\u0433\u0430\u043b\u043e","type":"Role","_key":"98505","_from":"58049","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0421\u0435\u0440\u044b\u0439","type":"Role","_key":"98504","_from":"58048","_to":"58041"} +{"$label":"ACTS_IN","name":"\u041f\u0438\u043d\u043e\u0447\u0435\u0442","type":"Role","_key":"98503","_from":"58047","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0421\u0442\u0430\u0441","type":"Role","_key":"98502","_from":"58046","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0420\u044f\u0431\u0430","type":"Role","_key":"98501","_from":"58045","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0427\u0443\u0433\u0443\u043d","type":"Role","_key":"98500","_from":"58044","_to":"58041"} +{"$label":"ACTS_IN","name":"\u0414\u0436\u043e\u043a\u043e\u043d\u0434\u0430","type":"Role","_key":"98499","_from":"58043","_to":"58041"} +{"$label":"ACTS_IN","name":"\u041b\u044e\u0442\u044b\u0439","type":"Role","_key":"98497","_from":"58042","_to":"58041"} +{"$label":"DIRECTED","_key":"114969","_from":"58053","_to":"67708"} +{"$label":"DIRECTED","_key":"110481","_from":"58053","_to":"65265"} +{"$label":"ACTS_IN","name":"prosecutor","type":"Role","_key":"114959","_from":"58053","_to":"67708"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"110471","_from":"58053","_to":"65265"} +{"$label":"DIRECTED","_key":"98519","_from":"58061","_to":"58055"} +{"$label":"ACTS_IN","name":"Neville Heresford","type":"Role","_key":"98518","_from":"58060","_to":"58055"} +{"$label":"ACTS_IN","name":"Umbopa","type":"Role","_key":"98517","_from":"58059","_to":"58055"} +{"$label":"ACTS_IN","name":"Sir Henry Curtis","type":"Role","_key":"98516","_from":"58058","_to":"58055"} +{"$label":"ACTS_IN","name":"Lady Anna","type":"Role","_key":"98515","_from":"58057","_to":"58055"} +{"$label":"ACTS_IN","name":"Allan Quatermain","type":"Role","_key":"98513","_from":"58056","_to":"58055"} +{"$label":"ACTS_IN","name":"Arkadi","type":"Role","_key":"109086","_from":"58058","_to":"64451"} +{"$label":"DIRECTED","_key":"110521","_from":"58061","_to":"65303"} +{"$label":"DIRECTED","_key":"109087","_from":"58061","_to":"64451"} +{"$label":"DIRECTED","_key":"98525","_from":"58063","_to":"58062"} +{"$label":"DIRECTED","_key":"98527","_from":"58066","_to":"58064"} +{"$label":"DIRECTED","_key":"98526","_from":"58065","_to":"58064"} +{"$label":"ACTS_IN","name":"Sgt. Ross","type":"Role","_key":"98529","_from":"58069","_to":"58067"} +{"$label":"ACTS_IN","name":"Cpl. Matthews (as Matthew R. Knoll)","type":"Role","_key":"98528","_from":"58068","_to":"58067"} +{"$label":"ACTS_IN","name":"Inger Beck","type":"Role","_key":"98552","_from":"58077","_to":"58073"} +{"$label":"ACTS_IN","name":"Ulrika Lind\u00e9n","type":"Role","_key":"98550","_from":"58076","_to":"58073"} +{"$label":"ACTS_IN","name":"Patrik Hansson","type":"Role","_key":"98548","_from":"58075","_to":"58073"} +{"$label":"DIRECTED","_key":"98545","_from":"58074","_to":"58073"} +{"$label":"DIRECTED","_key":"118126","_from":"58074","_to":"69425"} +{"$label":"DIRECTED","_key":"106633","_from":"58074","_to":"62832"} +{"$label":"DIRECTED","_key":"98614","_from":"58074","_to":"58110"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"102362","_from":"58077","_to":"60232"} +{"$label":"DIRECTED","_key":"98558","_from":"58080","_to":"58078"} +{"$label":"ACTS_IN","name":"Norman","type":"Role","_key":"98557","_from":"58079","_to":"58078"} +{"$label":"ACTS_IN","name":"Katie Brown","type":"Role","_key":"98562","_from":"58083","_to":"58081"} +{"$label":"DIRECTED","_key":"98559","_from":"58082","_to":"58081"} +{"$label":"DIRECTED","_key":"120501","_from":"58082","_to":"70781"} +{"$label":"DIRECTED","_key":"114097","_from":"58082","_to":"67196"} +{"$label":"DIRECTED","_key":"98571","_from":"58088","_to":"58086"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"98570","_from":"58087","_to":"58086"} +{"$label":"DIRECTED","_key":"98576","_from":"58094","_to":"58089"} +{"$label":"ACTS_IN","name":"Cloe","type":"Role","_key":"98575","_from":"58093","_to":"58089"} +{"$label":"ACTS_IN","name":"Yasmin","type":"Role","_key":"98574","_from":"58092","_to":"58089"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"98573","_from":"58091","_to":"58089"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"98572","_from":"58090","_to":"58089"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"98584","_from":"58098","_to":"58095"} +{"$label":"ACTS_IN","name":"(La femme espagnole","type":"Role","_key":"98583","_from":"58097","_to":"58095"} +{"$label":"ACTS_IN","name":"Bettiger","type":"Role","_key":"98582","_from":"58096","_to":"58095"} +{"$label":"ACTS_IN","name":"Carolyn","type":"Role","_key":"98588","_from":"58102","_to":"58099"} +{"$label":"DIRECTED","_key":"98586","_from":"58101","_to":"58099"} +{"$label":"DIRECTED","_key":"98585","_from":"58100","_to":"58099"} +{"$label":"DIRECTED","_key":"98598","_from":"58105","_to":"58103"} +{"$label":"ACTS_IN","name":"Abbey","type":"Role","_key":"98596","_from":"58104","_to":"58103"} +{"$label":"ACTS_IN","name":"Anastasia","type":"Role","_key":"98601","_from":"58109","_to":"58106"} +{"$label":"ACTS_IN","name":"Cendrillon","type":"Role","_key":"98600","_from":"58108","_to":"58106"} +{"$label":"DIRECTED","_key":"98599","_from":"58107","_to":"58106"} +{"$label":"ACTS_IN","name":"Thorn","type":"Role","_key":"113631","_from":"58108","_to":"66966"} +{"$label":"ACTS_IN","name":"Billy's Mom (voice)","type":"Role","_key":"111842","_from":"58108","_to":"66010"} +{"$label":"ACTS_IN","name":"Malte Beverin","type":"Role","_key":"98613","_from":"58111","_to":"58110"} +{"$label":"ACTS_IN","name":"DJ Kundalini","type":"Role","_key":"98641","_from":"58131","_to":"58112"} +{"$label":"ACTS_IN","name":"Sick Boy","type":"Role","_key":"98640","_from":"58130","_to":"58112"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"98639","_from":"58129","_to":"58112"} +{"$label":"ACTS_IN","name":"Head Doorman","type":"Role","_key":"98638","_from":"58128","_to":"58112"} +{"$label":"ACTS_IN","name":"Drug Girl 2","type":"Role","_key":"98637","_from":"58127","_to":"58112"} +{"$label":"ACTS_IN","name":"Drug Girl 1","type":"Role","_key":"98636","_from":"58126","_to":"58112"} +{"$label":"ACTS_IN","name":"Noah","type":"Role","_key":"98634","_from":"58125","_to":"58112"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"98633","_from":"58124","_to":"58112"} +{"$label":"ACTS_IN","name":"Hamish","type":"Role","_key":"98632","_from":"58123","_to":"58112"} +{"$label":"ACTS_IN","name":"Junkie","type":"Role","_key":"98630","_from":"58122","_to":"58112"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"98628","_from":"58121","_to":"58112"} +{"$label":"ACTS_IN","name":"Orderly 2","type":"Role","_key":"98626","_from":"58120","_to":"58112"} +{"$label":"ACTS_IN","name":"Orderly 1","type":"Role","_key":"98625","_from":"58119","_to":"58112"} +{"$label":"ACTS_IN","name":"Sick Old Man","type":"Role","_key":"98624","_from":"58118","_to":"58112"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"98623","_from":"58117","_to":"58112"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"98622","_from":"58116","_to":"58112"} +{"$label":"ACTS_IN","name":"Bag Lady","type":"Role","_key":"98620","_from":"58115","_to":"58112"} +{"$label":"ACTS_IN","name":"Alysse Green","type":"Role","_key":"98618","_from":"58114","_to":"58112"} +{"$label":"ACTS_IN","name":"Tommy Matisse","type":"Role","_key":"98617","_from":"58113","_to":"58112"} +{"$label":"ACTS_IN","name":"Bruce Embling","type":"Role","_key":"121595","_from":"58116","_to":"71440"} +{"$label":"DIRECTED","_key":"98647","_from":"58138","_to":"58132"} +{"$label":"DIRECTED","_key":"98646","_from":"58137","_to":"58132"} +{"$label":"ACTS_IN","name":"Roy Focker","type":"Role","_key":"98645","_from":"58136","_to":"58132"} +{"$label":"ACTS_IN","name":"Misa Hayase","type":"Role","_key":"98644","_from":"58135","_to":"58132"} +{"$label":"ACTS_IN","name":"Hikaru Ichijyo","type":"Role","_key":"98643","_from":"58134","_to":"58132"} +{"$label":"ACTS_IN","name":"Lynn Minmay","type":"Role","_key":"98642","_from":"58133","_to":"58132"} +{"$label":"ACTS_IN","name":"Kenshir\u00f4","type":"Role","_key":"121337","_from":"58136","_to":"71298"} +{"$label":"ACTS_IN","name":"Khan","type":"Role","_key":"98659","_from":"58145","_to":"58139"} +{"$label":"ACTS_IN","name":"Mini","type":"Role","_key":"98656","_from":"58144","_to":"58139"} +{"$label":"ACTS_IN","name":"Raghavan \/ Major Raghav Dutta","type":"Role","_key":"98653","_from":"58143","_to":"58139"} +{"$label":"ACTS_IN","name":"Miss Chandni","type":"Role","_key":"98652","_from":"58142","_to":"58139"} +{"$label":"ACTS_IN","name":"Lakshman Prasad Sharma a.k.a Lucky","type":"Role","_key":"98651","_from":"58141","_to":"58139"} +{"$label":"ACTS_IN","name":"Sanjana Bakshi a.k.a Sanju","type":"Role","_key":"98650","_from":"58140","_to":"58139"} +{"$label":"ACTS_IN","name":"Mangal Singh Chauhan","type":"Role","_key":"120713","_from":"58143","_to":"70898"} +{"$label":"ACTS_IN","name":"Ishaan","type":"Role","_key":"120200","_from":"58143","_to":"70590"} +{"$label":"ACTS_IN","name":"Item Number","type":"Role","_key":"121554","_from":"58144","_to":"71418"} +{"$label":"ACTS_IN","name":"Shiva","type":"Role","_key":"121543","_from":"58145","_to":"71410"} +{"$label":"ACTS_IN","name":"Zikomo","type":"Role","_key":"120089","_from":"58145","_to":"70520"} +{"$label":"ACTS_IN","name":"Sawant","type":"Role","_key":"100737","_from":"58145","_to":"59389"} +{"$label":"ACTS_IN","name":"Bubby","type":"Role","_key":"98662","_from":"58147","_to":"58146"} +{"$label":"ACTS_IN","name":"Warren Donaldson","type":"Role","_key":"109850","_from":"58147","_to":"64893"} +{"$label":"ACTS_IN","name":"Association President","type":"Role","_key":"98668","_from":"58150","_to":"58148"} +{"$label":"ACTS_IN","name":"Mr. Wu","type":"Role","_key":"98667","_from":"58149","_to":"58148"} +{"$label":"DIRECTED","_key":"98681","_from":"58156","_to":"58151"} +{"$label":"ACTS_IN","name":"Marilyn","type":"Role","_key":"98679","_from":"58155","_to":"58151"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"98678","_from":"58154","_to":"58151"} +{"$label":"ACTS_IN","name":"Johnny Trinno","type":"Role","_key":"98674","_from":"58153","_to":"58151"} +{"$label":"ACTS_IN","name":"Dennis Mangenelli","type":"Role","_key":"98673","_from":"58152","_to":"58151"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"98687","_from":"58163","_to":"58157"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"98686","_from":"58162","_to":"58157"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"98685","_from":"58161","_to":"58157"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"98684","_from":"58160","_to":"58157"} +{"$label":"DIRECTED","_key":"98683","_from":"58159","_to":"58157"} +{"$label":"DIRECTED","_key":"98682","_from":"58158","_to":"58157"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"106859","_from":"58160","_to":"62996"} +{"$label":"ACTS_IN","name":"La chica del bosque","type":"Role","_key":"98692","_from":"58167","_to":"58164"} +{"$label":"ACTS_IN","name":"Clara","type":"Role","_key":"98691","_from":"58166","_to":"58164"} +{"$label":"DIRECTED","_key":"98689","_from":"58165","_to":"58164"} +{"$label":"ACTS_IN","name":"Diane Darcy","type":"Role","_key":"98696","_from":"58169","_to":"58168"} +{"$label":"ACTS_IN","name":"Jenny Tuttle","type":"Role","_key":"98701","_from":"58172","_to":"58170"} +{"$label":"ACTS_IN","name":"Maricar","type":"Role","_key":"98700","_from":"58171","_to":"58170"} +{"$label":"DIRECTED","_key":"98724","_from":"58183","_to":"58173"} +{"$label":"ACTS_IN","name":"Garbage Truck Driver","type":"Role","_key":"98723","_from":"58182","_to":"58173"} +{"$label":"ACTS_IN","name":"Edward","type":"Role","_key":"98722","_from":"58181","_to":"58173"} +{"$label":"ACTS_IN","name":"Executive Man","type":"Role","_key":"98721","_from":"58180","_to":"58173"} +{"$label":"ACTS_IN","name":"Freddie","type":"Role","_key":"98720","_from":"58179","_to":"58173"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"98718","_from":"58178","_to":"58173"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"98717","_from":"58177","_to":"58173"} +{"$label":"ACTS_IN","name":"Cute Girl in Park","type":"Role","_key":"98715","_from":"58176","_to":"58173"} +{"$label":"ACTS_IN","name":"Babul","type":"Role","_key":"98712","_from":"58175","_to":"58173"} +{"$label":"ACTS_IN","name":"Leonard","type":"Role","_key":"98711","_from":"58174","_to":"58173"} +{"$label":"DIRECTED","_key":"98736","_from":"58188","_to":"58186"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"98733","_from":"58187","_to":"58186"} +{"$label":"ACTS_IN","name":"Tess Bell","type":"Role","_key":"112212","_from":"58187","_to":"66267"} +{"$label":"ACTS_IN","name":"jake gray","type":"Role","_key":"98737","_from":"58190","_to":"58189"} +{"$label":"ACTS_IN","name":"Priestly","type":"Role","_key":"102018","_from":"58190","_to":"60027"} +{"$label":"ACTS_IN","name":"Tom Hanniger","type":"Role","_key":"100257","_from":"58190","_to":"59126"} +{"$label":"DIRECTED","_key":"98747","_from":"58194","_to":"58193"} +{"$label":"ACTS_IN","name":"Dr. Stephen Falken","type":"Role","_key":"98753","_from":"58197","_to":"58195"} +{"$label":"ACTS_IN","name":"Annie D'Mateo","type":"Role","_key":"98752","_from":"58196","_to":"58195"} +{"$label":"ACTS_IN","name":"Glory Lorrain","type":"Role","_key":"120926","_from":"58196","_to":"71005"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"98760","_from":"58200","_to":"58198"} +{"$label":"ACTS_IN","name":"Kelly Reyes","type":"Role","_key":"98756","_from":"58199","_to":"58198"} +{"$label":"ACTS_IN","name":"Margo","type":"Role","_key":"98767","_from":"58202","_to":"58201"} +{"$label":"DIRECTED","_key":"98790","_from":"58214","_to":"58204"} +{"$label":"ACTS_IN","name":"Mrs. Srivastav","type":"Role","_key":"98788","_from":"58213","_to":"58204"} +{"$label":"ACTS_IN","name":"Makarand","type":"Role","_key":"98787","_from":"58212","_to":"58204"} +{"$label":"ACTS_IN","name":"Dhan Kuber","type":"Role","_key":"98786","_from":"58211","_to":"58204"} +{"$label":"ACTS_IN","name":"S.H.O. Singh","type":"Role","_key":"98785","_from":"58210","_to":"58204"} +{"$label":"ACTS_IN","name":"Radha","type":"Role","_key":"98782","_from":"58209","_to":"58204"} +{"$label":"ACTS_IN","name":"Mohan Sharma","type":"Role","_key":"98780","_from":"58208","_to":"58204"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"98779","_from":"58207","_to":"58204"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"98778","_from":"58206","_to":"58204"} +{"$label":"ACTS_IN","name":"Anokhi","type":"Role","_key":"98773","_from":"58205","_to":"58204"} +{"$label":"ACTS_IN","name":"Specical Appearance","type":"Role","_key":"120660","_from":"58205","_to":"70859"} +{"$label":"ACTS_IN","name":"Sona Mishra","type":"Role","_key":"108781","_from":"58205","_to":"64303"} +{"$label":"ACTS_IN","name":"Indu","type":"Role","_key":"101497","_from":"58205","_to":"59735"} +{"$label":"ACTS_IN","name":"Bhura, the poultry farmer","type":"Role","_key":"120842","_from":"58207","_to":"70961"} +{"$label":"ACTS_IN","name":"Kabir","type":"Role","_key":"120889","_from":"58208","_to":"70978"} +{"$label":"ACTS_IN","name":"Asif","type":"Role","_key":"104309","_from":"58208","_to":"61371"} +{"$label":"ACTS_IN","name":"Jagtap","type":"Role","_key":"101639","_from":"58208","_to":"59822"} +{"$label":"ACTS_IN","name":"Lakha, the woodcutter","type":"Role","_key":"120849","_from":"58210","_to":"70961"} +{"$label":"ACTS_IN","name":"Gamma (voice)","type":"Role","_key":"98807","_from":"58223","_to":"58215"} +{"$label":"ACTS_IN","name":"Nurse AJ (voice)","type":"Role","_key":"98806","_from":"58222","_to":"58215"} +{"$label":"ACTS_IN","name":"Nurse George (voice)","type":"Role","_key":"98805","_from":"58221","_to":"58215"} +{"$label":"ACTS_IN","name":"Police Officer Edith (voice)","type":"Role","_key":"98803","_from":"58220","_to":"58215"} +{"$label":"ACTS_IN","name":"Young Ellie (voice)","type":"Role","_key":"98802","_from":"58219","_to":"58215"} +{"$label":"ACTS_IN","name":"Young Carl (voice)","type":"Role","_key":"98801","_from":"58218","_to":"58215"} +{"$label":"ACTS_IN","name":"Omega (voice)","type":"Role","_key":"98798","_from":"58217","_to":"58215"} +{"$label":"ACTS_IN","name":"Russell (voice)","type":"Role","_key":"98795","_from":"58216","_to":"58215"} +{"$label":"ACTS_IN","name":"Scotty","type":"Role","_key":"98830","_from":"58230","_to":"58224"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"98824","_from":"58229","_to":"58224"} +{"$label":"ACTS_IN","name":"Grandma Sonam","type":"Role","_key":"98822","_from":"58228","_to":"58224"} +{"$label":"ACTS_IN","name":"Nima","type":"Role","_key":"98821","_from":"58227","_to":"58224"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"98819","_from":"58226","_to":"58224"} +{"$label":"ACTS_IN","name":"Noah Curtis","type":"Role","_key":"98814","_from":"58225","_to":"58224"} +{"$label":"ACTS_IN","name":"Sean Breslin","type":"Role","_key":"116333","_from":"58225","_to":"68477"} +{"$label":"ACTS_IN","name":"Soong Yen","type":"Role","_key":"117430","_from":"58228","_to":"69064"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"119780","_from":"58229","_to":"70331"} +{"$label":"DIRECTED","_key":"98832","_from":"58232","_to":"58231"} +{"$label":"ACTS_IN","name":"Vidya Sharma","type":"Role","_key":"98850","_from":"58250","_to":"58233"} +{"$label":"ACTS_IN","name":"Soimoi Kerketa","type":"Role","_key":"98849","_from":"58249","_to":"58233"} +{"$label":"ACTS_IN","name":"Raynia Fernandes","type":"Role","_key":"98848","_from":"58248","_to":"58233"} +{"$label":"ACTS_IN","name":"Rani Dispotta","type":"Role","_key":"98847","_from":"58247","_to":"58233"} +{"$label":"ACTS_IN","name":"Rachna Prasad","type":"Role","_key":"98846","_from":"58246","_to":"58233"} +{"$label":"ACTS_IN","name":"Preeti Sabarwal","type":"Role","_key":"98845","_from":"58245","_to":"58233"} +{"$label":"ACTS_IN","name":"Nichola Sequeira","type":"Role","_key":"98844","_from":"58244","_to":"58233"} +{"$label":"ACTS_IN","name":"Nethra Reddy","type":"Role","_key":"98843","_from":"58243","_to":"58233"} +{"$label":"ACTS_IN","name":"Molly Zimik","type":"Role","_key":"98842","_from":"58242","_to":"58233"} +{"$label":"ACTS_IN","name":"Mary Ralte","type":"Role","_key":"98841","_from":"58241","_to":"58233"} +{"$label":"ACTS_IN","name":"Komal Chautala","type":"Role","_key":"98840","_from":"58240","_to":"58233"} +{"$label":"ACTS_IN","name":"Gunjun Lakhani","type":"Role","_key":"98839","_from":"58239","_to":"58233"} +{"$label":"ACTS_IN","name":"Gul Iqbal","type":"Role","_key":"98838","_from":"58238","_to":"58233"} +{"$label":"ACTS_IN","name":"Bindia Naik","type":"Role","_key":"98837","_from":"58237","_to":"58233"} +{"$label":"ACTS_IN","name":"Balbir Kaur","type":"Role","_key":"98836","_from":"58236","_to":"58233"} +{"$label":"ACTS_IN","name":"Aliya Bose","type":"Role","_key":"98835","_from":"58235","_to":"58233"} +{"$label":"DIRECTED","_key":"98833","_from":"58234","_to":"58233"} +{"$label":"ACTS_IN","name":"Mallika Raina","type":"Role","_key":"120869","_from":"58250","_to":"70973"} +{"$label":"ACTS_IN","name":"Seki","type":"Role","_key":"98865","_from":"58259","_to":"58251"} +{"$label":"ACTS_IN","name":"Mr. Kingery","type":"Role","_key":"98863","_from":"58258","_to":"58251"} +{"$label":"ACTS_IN","name":"Agundas","type":"Role","_key":"98862","_from":"58257","_to":"58251"} +{"$label":"ACTS_IN","name":"Weaver","type":"Role","_key":"98861","_from":"58256","_to":"58251"} +{"$label":"ACTS_IN","name":"Mai","type":"Role","_key":"98860","_from":"58255","_to":"58251"} +{"$label":"ACTS_IN","name":"Emi","type":"Role","_key":"98859","_from":"58254","_to":"58251"} +{"$label":"ACTS_IN","name":"Chi Chi","type":"Role","_key":"98853","_from":"58253","_to":"58251"} +{"$label":"ACTS_IN","name":"Yamcha","type":"Role","_key":"98852","_from":"58252","_to":"58251"} +{"$label":"ACTS_IN","name":"Chelsea Barnes","type":"Role","_key":"120147","_from":"58253","_to":"70565"} +{"$label":"DIRECTED","_key":"98867","_from":"58261","_to":"58260"} +{"$label":"DIRECTED","_key":"106170","_from":"58261","_to":"62530"} +{"$label":"DIRECTED","_key":"103118","_from":"58261","_to":"60653"} +{"$label":"DIRECTED","_key":"98881","_from":"58267","_to":"58264"} +{"$label":"ACTS_IN","name":"Mrs. Alice Evans","type":"Role","_key":"98879","_from":"58266","_to":"58264"} +{"$label":"ACTS_IN","name":"Emmy","type":"Role","_key":"98878","_from":"58265","_to":"58264"} +{"$label":"ACTS_IN","name":"Mother Joseph","type":"Role","_key":"117141","_from":"58266","_to":"68918"} +{"$label":"DIRECTED","_key":"118025","_from":"58267","_to":"69380"} +{"$label":"DIRECTED","_key":"108185","_from":"58267","_to":"63933"} +{"$label":"ACTS_IN","name":"Gus Lotterhand","type":"Role","_key":"98897","_from":"58275","_to":"58269"} +{"$label":"ACTS_IN","name":"Marion Corey Jr.","type":"Role","_key":"98896","_from":"58274","_to":"58269"} +{"$label":"ACTS_IN","name":"Young Operator (as Le Fevre)","type":"Role","_key":"98895","_from":"58273","_to":"58269"} +{"$label":"ACTS_IN","name":"Newspaper Editor","type":"Role","_key":"98890","_from":"58272","_to":"58269"} +{"$label":"ACTS_IN","name":"Betsy Culbertson","type":"Role","_key":"98889","_from":"58271","_to":"58269"} +{"$label":"ACTS_IN","name":"Sheriff Ledbetter","type":"Role","_key":"98886","_from":"58270","_to":"58269"} +{"$label":"ACTS_IN","name":"Dr. Feldman","type":"Role","_key":"111399","_from":"58274","_to":"65780"} +{"$label":"ACTS_IN","name":"Pvt. Shar","type":"Role","_key":"98912","_from":"58278","_to":"58276"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"98910","_from":"58277","_to":"58276"} +{"$label":"DIRECTED","_key":"98916","_from":"58281","_to":"58279"} +{"$label":"ACTS_IN","name":"kim","type":"Role","_key":"98915","_from":"58280","_to":"58279"} +{"$label":"DIRECTED","_key":"98919","_from":"58283","_to":"58282"} +{"$label":"DIRECTED","_key":"106094","_from":"58283","_to":"62474"} +{"$label":"DIRECTED","_key":"98923","_from":"58286","_to":"58285"} +{"$label":"ACTS_IN","name":"Rochelle","type":"Role","_key":"98931","_from":"58289","_to":"58287"} +{"$label":"ACTS_IN","name":"Chanel","type":"Role","_key":"98930","_from":"58288","_to":"58287"} +{"$label":"ACTS_IN","name":"Suzette","type":"Role","_key":"104138","_from":"58288","_to":"61261"} +{"$label":"ACTS_IN","name":"Diamond (as Lisa Raye)","type":"Role","_key":"121302","_from":"58289","_to":"71273"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"107616","_from":"58289","_to":"63522"} +{"$label":"ACTS_IN","name":"Dr. Susan Chappell","type":"Role","_key":"98933","_from":"58291","_to":"58290"} +{"$label":"ACTS_IN","name":"Theo","type":"Role","_key":"98965","_from":"58305","_to":"58296"} +{"$label":"ACTS_IN","name":"Beth-Ann","type":"Role","_key":"98964","_from":"58304","_to":"58296"} +{"$label":"ACTS_IN","name":"Patty","type":"Role","_key":"98963","_from":"58303","_to":"58296"} +{"$label":"ACTS_IN","name":"Bonnie","type":"Role","_key":"98962","_from":"58302","_to":"58296"} +{"$label":"ACTS_IN","name":"Grandma Maggie","type":"Role","_key":"98960","_from":"58301","_to":"58296"} +{"$label":"ACTS_IN","name":"Grandpa Bob","type":"Role","_key":"98959","_from":"58300","_to":"58296"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"98958","_from":"58299","_to":"58296"} +{"$label":"ACTS_IN","name":"Ginny","type":"Role","_key":"98956","_from":"58298","_to":"58296"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"98954","_from":"58297","_to":"58296"} +{"$label":"ACTS_IN","name":"Audrey Bennett","type":"Role","_key":"121427","_from":"58298","_to":"71341"} +{"$label":"ACTS_IN","name":"Michelle (voice)","type":"Role","_key":"119666","_from":"58298","_to":"70284"} +{"$label":"ACTS_IN","name":"Joanna Johnson","type":"Role","_key":"108146","_from":"58298","_to":"63914"} +{"$label":"ACTS_IN","name":"Tash","type":"Role","_key":"107975","_from":"58298","_to":"63771"} +{"$label":"ACTS_IN","name":"Matron Cassidy","type":"Role","_key":"111561","_from":"58301","_to":"65862"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"109747","_from":"58301","_to":"64813"} +{"$label":"ACTS_IN","name":"Tanya's Mother","type":"Role","_key":"102380","_from":"58301","_to":"60234"} +{"$label":"ACTS_IN","name":"Glenn Freeborn","type":"Role","_key":"98970","_from":"58309","_to":"58306"} +{"$label":"ACTS_IN","name":"Colonel Eric Maitland","type":"Role","_key":"98969","_from":"58308","_to":"58306"} +{"$label":"DIRECTED","_key":"98966","_from":"58307","_to":"58306"} +{"$label":"ACTS_IN","name":"Dylan Bennet","type":"Role","_key":"121445","_from":"58309","_to":"71342"} +{"$label":"DIRECTED","_key":"98971","_from":"58311","_to":"58310"} +{"$label":"ACTS_IN","name":"Sweety","type":"Role","_key":"98982","_from":"58315","_to":"58312"} +{"$label":"ACTS_IN","name":"Sonali Bose\/Monali Bose","type":"Role","_key":"98981","_from":"58314","_to":"58312"} +{"$label":"DIRECTED","_key":"98976","_from":"58313","_to":"58312"} +{"$label":"DIRECTED","_key":"112362","_from":"58313","_to":"66339"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"120756","_from":"58314","_to":"70935"} +{"$label":"ACTS_IN","name":"Simi Chatterjee","type":"Role","_key":"111008","_from":"58314","_to":"65566"} +{"$label":"ACTS_IN","name":"Radhika\/Shreya Rathod","type":"Role","_key":"106166","_from":"58314","_to":"62530"} +{"$label":"ACTS_IN","name":"Chamanbahar","type":"Role","_key":"101494","_from":"58314","_to":"59735"} +{"$label":"ACTS_IN","name":"Nirali","type":"Role","_key":"120881","_from":"58315","_to":"70976"} +{"$label":"ACTS_IN","name":"Anjali","type":"Role","_key":"120704","_from":"58315","_to":"70894"} +{"$label":"ACTS_IN","name":"Sweety Dixit","type":"Role","_key":"112361","_from":"58315","_to":"66339"} +{"$label":"DIRECTED","_key":"99001","_from":"58324","_to":"58317"} +{"$label":"ACTS_IN","name":"Second Groupie","type":"Role","_key":"99000","_from":"58323","_to":"58317"} +{"$label":"ACTS_IN","name":"Adriana","type":"Role","_key":"98999","_from":"58322","_to":"58317"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"98998","_from":"58321","_to":"58317"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"98997","_from":"58320","_to":"58317"} +{"$label":"ACTS_IN","name":"Davey Diamond","type":"Role","_key":"98995","_from":"58319","_to":"58317"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"98994","_from":"58318","_to":"58317"} +{"$label":"ACTS_IN","name":"Roger Bellow","type":"Role","_key":"99007","_from":"58327","_to":"58325"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"99005","_from":"58326","_to":"58325"} +{"$label":"ACTS_IN","name":"Ivan","type":"Role","_key":"114937","_from":"58326","_to":"67696"} +{"$label":"ACTS_IN","name":"Storkelson","type":"Role","_key":"105927","_from":"58327","_to":"62366"} +{"$label":"DIRECTED","_key":"99016","_from":"58331","_to":"58328"} +{"$label":"ACTS_IN","name":"Waitress #2","type":"Role","_key":"99015","_from":"58330","_to":"58328"} +{"$label":"ACTS_IN","name":"Waitress (as Laura Ceron)","type":"Role","_key":"99014","_from":"58329","_to":"58328"} +{"$label":"DIRECTED","_key":"99153","_from":"58331","_to":"58419"} +{"$label":"ACTS_IN","name":"Linus \/ Minus","type":"Role","_key":"99023","_from":"58334","_to":"58332"} +{"$label":"ACTS_IN","name":"Lavagirl","type":"Role","_key":"99018","_from":"58333","_to":"58332"} +{"$label":"DIRECTED","_key":"99030","_from":"58338","_to":"58336"} +{"$label":"DIRECTED","_key":"99029","_from":"58337","_to":"58336"} +{"$label":"DIRECTED","_key":"99036","_from":"58341","_to":"58339"} +{"$label":"ACTS_IN","name":"Geoffrey Denison (as Ian Rennick)","type":"Role","_key":"99034","_from":"58340","_to":"58339"} +{"$label":"DIRECTED","_key":"99037","_from":"58343","_to":"58342"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"99044","_from":"58346","_to":"58344"} +{"$label":"ACTS_IN","name":"Christopher 'C-Dub' Wang","type":"Role","_key":"99043","_from":"58345","_to":"58344"} +{"$label":"ACTS_IN","name":"Darrell","type":"Role","_key":"99058","_from":"58358","_to":"58347"} +{"$label":"ACTS_IN","name":"HIV Counselor","type":"Role","_key":"99057","_from":"58357","_to":"58347"} +{"$label":"ACTS_IN","name":"Co-Worker","type":"Role","_key":"99056","_from":"58356","_to":"58347"} +{"$label":"ACTS_IN","name":"Naked Guy","type":"Role","_key":"99055","_from":"58355","_to":"58347"} +{"$label":"ACTS_IN","name":"Bar Boy","type":"Role","_key":"99054","_from":"58354","_to":"58347"} +{"$label":"ACTS_IN","name":"Mary C","type":"Role","_key":"99053","_from":"58353","_to":"58347"} +{"$label":"ACTS_IN","name":"Party Guy","type":"Role","_key":"99052","_from":"58352","_to":"58347"} +{"$label":"ACTS_IN","name":"BBQ Guy","type":"Role","_key":"99051","_from":"58351","_to":"58347"} +{"$label":"ACTS_IN","name":"Ephram","type":"Role","_key":"99050","_from":"58350","_to":"58347"} +{"$label":"ACTS_IN","name":"Andie","type":"Role","_key":"99049","_from":"58349","_to":"58347"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"99047","_from":"58348","_to":"58347"} +{"$label":"ACTS_IN","name":"Rhodes","type":"Role","_key":"99065","_from":"58363","_to":"58360"} +{"$label":"ACTS_IN","name":"Nicole Noone","type":"Role","_key":"99061","_from":"58362","_to":"58360"} +{"$label":"DIRECTED","_key":"99059","_from":"58361","_to":"58360"} +{"$label":"ACTS_IN","name":"Gloria","type":"Role","_key":"116970","_from":"58362","_to":"68851"} +{"$label":"ACTS_IN","name":"David Newman (as Connor Dowds)","type":"Role","_key":"99077","_from":"58368","_to":"58367"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"99095","_from":"58384","_to":"58369"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"99094","_from":"58383","_to":"58369"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"99093","_from":"58382","_to":"58369"} +{"$label":"ACTS_IN","name":"Storeroom Phantom","type":"Role","_key":"99092","_from":"58381","_to":"58369"} +{"$label":"ACTS_IN","name":"Uncle Pete","type":"Role","_key":"99091","_from":"58380","_to":"58369"} +{"$label":"ACTS_IN","name":"Hutch","type":"Role","_key":"99090","_from":"58379","_to":"58369"} +{"$label":"ACTS_IN","name":"Marta","type":"Role","_key":"99089","_from":"58378","_to":"58369"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"99088","_from":"58377","_to":"58369"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"99086","_from":"58376","_to":"58369"} +{"$label":"ACTS_IN","name":"Suicidal Jumper","type":"Role","_key":"99085","_from":"58375","_to":"58369"} +{"$label":"ACTS_IN","name":"Stephen","type":"Role","_key":"99084","_from":"58374","_to":"58369"} +{"$label":"ACTS_IN","name":"Alley Phantom","type":"Role","_key":"99082","_from":"58373","_to":"58369"} +{"$label":"ACTS_IN","name":"Alley Victim","type":"Role","_key":"99081","_from":"58372","_to":"58369"} +{"$label":"ACTS_IN","name":"Man in Red","type":"Role","_key":"99079","_from":"58371","_to":"58369"} +{"$label":"DIRECTED","_key":"99078","_from":"58370","_to":"58369"} +{"$label":"DIRECTED","_key":"99310","_from":"58370","_to":"58513"} +{"$label":"ACTS_IN","name":"Man With A Plan","type":"Role","_key":"99306","_from":"58371","_to":"58513"} +{"$label":"ACTS_IN","name":"Baby Stroller Phantom","type":"Role","_key":"99309","_from":"58373","_to":"58513"} +{"$label":"ACTS_IN","name":"Midshipman Archie Kennedy","type":"Role","_key":"120219","_from":"58374","_to":"70594"} +{"$label":"ACTS_IN","name":"Young Justine","type":"Role","_key":"99300","_from":"58377","_to":"58513"} +{"$label":"ACTS_IN","name":"Cliff","type":"Role","_key":"99307","_from":"58383","_to":"58513"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"99304","_from":"58384","_to":"58513"} +{"$label":"ACTS_IN","name":"Mallaika","type":"Role","_key":"99098","_from":"58387","_to":"58386"} +{"$label":"ACTS_IN","name":"Radha","type":"Role","_key":"118496","_from":"58387","_to":"69661"} +{"$label":"ACTS_IN","name":"Sonia Saxena","type":"Role","_key":"110711","_from":"58387","_to":"65406"} +{"$label":"ACTS_IN","name":"Mrs Wynott","type":"Role","_key":"99105","_from":"58392","_to":"58388"} +{"$label":"ACTS_IN","name":"Sgt. Paul Widdens","type":"Role","_key":"99104","_from":"58391","_to":"58388"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"99101","_from":"58390","_to":"58388"} +{"$label":"DIRECTED","_key":"99100","_from":"58389","_to":"58388"} +{"$label":"ACTS_IN","name":"Carlos Mendoza","type":"Role","_key":"99120","_from":"58408","_to":"58393"} +{"$label":"ACTS_IN","name":"T-Bone Barber","type":"Role","_key":"99119","_from":"58407","_to":"58393"} +{"$label":"ACTS_IN","name":"'Big Ben' McDaniel","type":"Role","_key":"99118","_from":"58406","_to":"58393"} +{"$label":"ACTS_IN","name":"Ryan Carrick","type":"Role","_key":"99117","_from":"58405","_to":"58393"} +{"$label":"ACTS_IN","name":"Street Race MC","type":"Role","_key":"99116","_from":"58404","_to":"58393"} +{"$label":"ACTS_IN","name":"Prasith Phengvong","type":"Role","_key":"99115","_from":"58403","_to":"58393"} +{"$label":"ACTS_IN","name":"P.K. Jimmy","type":"Role","_key":"99114","_from":"58402","_to":"58393"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"99113","_from":"58401","_to":"58393"} +{"$label":"ACTS_IN","name":"Lorna Dublin","type":"Role","_key":"99112","_from":"58400","_to":"58393"} +{"$label":"ACTS_IN","name":"Lisa Wong","type":"Role","_key":"99111","_from":"58399","_to":"58393"} +{"$label":"ACTS_IN","name":"Speedy Lenny","type":"Role","_key":"99110","_from":"58398","_to":"58393"} +{"$label":"ACTS_IN","name":"Cleveland","type":"Role","_key":"99109","_from":"58397","_to":"58393"} +{"$label":"ACTS_IN","name":"Clark Richter","type":"Role","_key":"99108","_from":"58396","_to":"58393"} +{"$label":"ACTS_IN","name":"Michael Dublin","type":"Role","_key":"99107","_from":"58395","_to":"58393"} +{"$label":"ACTS_IN","name":"Katherine Parker","type":"Role","_key":"99106","_from":"58394","_to":"58393"} +{"$label":"ACTS_IN","name":"Yuka Morita","type":"Role","_key":"99127","_from":"58413","_to":"58409"} +{"$label":"ACTS_IN","name":"Tadashi Murakawa","type":"Role","_key":"99125","_from":"58412","_to":"58409"} +{"$label":"ACTS_IN","name":"Yayoi Kinoshita","type":"Role","_key":"99123","_from":"58411","_to":"58409"} +{"$label":"ACTS_IN","name":"Nagisa Sugiura","type":"Role","_key":"99122","_from":"58410","_to":"58409"} +{"$label":"ACTS_IN","name":"Blind man","type":"Role","_key":"120257","_from":"58412","_to":"70616"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"99135","_from":"58415","_to":"58414"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"99152","_from":"58418","_to":"58416"} +{"$label":"ACTS_IN","name":"Milas","type":"Role","_key":"99150","_from":"58417","_to":"58416"} +{"$label":"DIRECTED","_key":"99166","_from":"58428","_to":"58421"} +{"$label":"ACTS_IN","name":"Lingo","type":"Role","_key":"99164","_from":"58427","_to":"58421"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"99163","_from":"58426","_to":"58421"} +{"$label":"ACTS_IN","name":"Li Jiamin","type":"Role","_key":"99162","_from":"58425","_to":"58421"} +{"$label":"ACTS_IN","name":"Electrician","type":"Role","_key":"99161","_from":"58424","_to":"58421"} +{"$label":"ACTS_IN","name":"Ken-ichi Takata (voice)","type":"Role","_key":"99160","_from":"58423","_to":"58421"} +{"$label":"ACTS_IN","name":"Rie Takata","type":"Role","_key":"99159","_from":"58422","_to":"58421"} +{"$label":"ACTS_IN","name":"Reiko Yamazaki","type":"Role","_key":"117269","_from":"58422","_to":"68972"} +{"$label":"ACTS_IN","name":"Lai Qi","type":"Role","_key":"101809","_from":"58423","_to":"59923"} +{"$label":"ACTS_IN","name":"Kanichiro Yoshimura","type":"Role","_key":"100397","_from":"58423","_to":"59206"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"99180","_from":"58437","_to":"58429"} +{"$label":"ACTS_IN","name":"Coroners Assistant","type":"Role","_key":"99178","_from":"58436","_to":"58429"} +{"$label":"ACTS_IN","name":"Coroner","type":"Role","_key":"99177","_from":"58435","_to":"58429"} +{"$label":"ACTS_IN","name":"Dotty","type":"Role","_key":"99176","_from":"58434","_to":"58429"} +{"$label":"ACTS_IN","name":"Mr. Barstow","type":"Role","_key":"99174","_from":"58433","_to":"58429"} +{"$label":"ACTS_IN","name":"Biker Zombie","type":"Role","_key":"99172","_from":"58432","_to":"58429"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"99170","_from":"58431","_to":"58429"} +{"$label":"ACTS_IN","name":"Jamie Doyle","type":"Role","_key":"99169","_from":"58430","_to":"58429"} +{"$label":"DIRECTED","_key":"110520","_from":"58433","_to":"65293"} +{"$label":"ACTS_IN","name":"M\u00fcller","type":"Role","_key":"99194","_from":"58448","_to":"58439"} +{"$label":"ACTS_IN","name":"Don","type":"Role","_key":"99193","_from":"58447","_to":"58439"} +{"$label":"ACTS_IN","name":"Ink","type":"Role","_key":"99192","_from":"58446","_to":"58439"} +{"$label":"ACTS_IN","name":"Stitch","type":"Role","_key":"99191","_from":"58445","_to":"58439"} +{"$label":"ACTS_IN","name":"Tamara","type":"Role","_key":"99190","_from":"58444","_to":"58439"} +{"$label":"ACTS_IN","name":"Dina","type":"Role","_key":"99189","_from":"58443","_to":"58439"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"99188","_from":"58442","_to":"58439"} +{"$label":"ACTS_IN","name":"Tino","type":"Role","_key":"99184","_from":"58441","_to":"58439"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"99183","_from":"58440","_to":"58439"} +{"$label":"DIRECTED","_key":"99198","_from":"58452","_to":"58450"} +{"$label":"DIRECTED","_key":"99197","_from":"58451","_to":"58450"} +{"$label":"ACTS_IN","name":"Tum","type":"Role","_key":"99203","_from":"58457","_to":"58453"} +{"$label":"ACTS_IN","name":"Daeng","type":"Role","_key":"99202","_from":"58456","_to":"58453"} +{"$label":"ACTS_IN","name":"Nut","type":"Role","_key":"99201","_from":"58455","_to":"58453"} +{"$label":"ACTS_IN","name":"Ploy","type":"Role","_key":"99200","_from":"58454","_to":"58453"} +{"$label":"ACTS_IN","name":"Tun","type":"Role","_key":"111156","_from":"58455","_to":"65648"} +{"$label":"DIRECTED","_key":"99205","_from":"58459","_to":"58458"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"99211","_from":"58463","_to":"58461"} +{"$label":"ACTS_IN","name":"The Trickster","type":"Role","_key":"99210","_from":"58462","_to":"58461"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"99217","_from":"58469","_to":"58464"} +{"$label":"ACTS_IN","name":"The White Rose","type":"Role","_key":"99216","_from":"58468","_to":"58464"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"99215","_from":"58467","_to":"58464"} +{"$label":"DIRECTED","_key":"99213","_from":"58466","_to":"58464"} +{"$label":"DIRECTED","_key":"99212","_from":"58465","_to":"58464"} +{"$label":"ACTS_IN","name":"Holli Would \/ Lonette (performance model) \/ Craps Bunny (voice)","type":"Role","_key":"99231","_from":"58478","_to":"58470"} +{"$label":"ACTS_IN","name":"Store Patron","type":"Role","_key":"99230","_from":"58477","_to":"58470"} +{"$label":"ACTS_IN","name":"Bash (performance model) \/ Comic Store Patron","type":"Role","_key":"99229","_from":"58476","_to":"58470"} +{"$label":"ACTS_IN","name":"Comic Bookstore Cashier","type":"Role","_key":"99228","_from":"58475","_to":"58470"} +{"$label":"ACTS_IN","name":"Sparks (voice)","type":"Role","_key":"99227","_from":"58474","_to":"58470"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"99224","_from":"58473","_to":"58470"} +{"$label":"ACTS_IN","name":"Agatha Rose Harris (as Janni Brenn-Lowen)","type":"Role","_key":"99223","_from":"58472","_to":"58470"} +{"$label":"ACTS_IN","name":"Jennifer Malley","type":"Role","_key":"99221","_from":"58471","_to":"58470"} +{"$label":"ACTS_IN","name":"Theresa Mallory","type":"Role","_key":"99237","_from":"58480","_to":"58479"} +{"$label":"ACTS_IN","name":"Friend","type":"Role","_key":"99241","_from":"58483","_to":"58482"} +{"$label":"ACTS_IN","name":"Mike the Cameraman","type":"Role","_key":"109476","_from":"58483","_to":"64667"} +{"$label":"ACTS_IN","name":"virginia","type":"Role","_key":"99244","_from":"58486","_to":"58484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"99243","_from":"58485","_to":"58484"} +{"$label":"DIRECTED","_key":"99246","_from":"58488","_to":"58487"} +{"$label":"DIRECTED","_key":"108294","_from":"58488","_to":"64008"} +{"$label":"DIRECTED","_key":"104710","_from":"58488","_to":"61598"} +{"$label":"ACTS_IN","name":"Shadow Figure","type":"Role","_key":"99259","_from":"58496","_to":"58489"} +{"$label":"ACTS_IN","name":"Scar Sniper","type":"Role","_key":"99258","_from":"58495","_to":"58489"} +{"$label":"ACTS_IN","name":"Captain Marks","type":"Role","_key":"99257","_from":"58494","_to":"58489"} +{"$label":"ACTS_IN","name":"Zoran","type":"Role","_key":"99255","_from":"58493","_to":"58489"} +{"$label":"ACTS_IN","name":"Vojislav","type":"Role","_key":"99254","_from":"58492","_to":"58489"} +{"$label":"ACTS_IN","name":"Eckles","type":"Role","_key":"99252","_from":"58491","_to":"58489"} +{"$label":"ACTS_IN","name":"Pavel","type":"Role","_key":"99251","_from":"58490","_to":"58489"} +{"$label":"ACTS_IN","name":"Chinaman","type":"Role","_key":"99271","_from":"58501","_to":"58498"} +{"$label":"ACTS_IN","name":"Tran","type":"Role","_key":"99269","_from":"58500","_to":"58498"} +{"$label":"ACTS_IN","name":"Captain Laraby","type":"Role","_key":"99266","_from":"58499","_to":"58498"} +{"$label":"DIRECTED","_key":"99281","_from":"58506","_to":"58502"} +{"$label":"ACTS_IN","name":"Dr. Herzschlag","type":"Role","_key":"99275","_from":"58505","_to":"58502"} +{"$label":"ACTS_IN","name":"Dr. Holzwurm's Igor","type":"Role","_key":"99274","_from":"58504","_to":"58502"} +{"$label":"ACTS_IN","name":"Dr. Holzwurm","type":"Role","_key":"99273","_from":"58503","_to":"58502"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"99293","_from":"58509","_to":"58508"} +{"$label":"DIRECTED","_key":"99298","_from":"58512","_to":"58511"} +{"$label":"ACTS_IN","name":"Heartthrob","type":"Role","_key":"99308","_from":"58515","_to":"58513"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"99302","_from":"58514","_to":"58513"} +{"$label":"ACTS_IN","name":"The Queen","type":"Role","_key":"99316","_from":"58518","_to":"58517"} +{"$label":"ACTS_IN","name":"Lt. Grogan","type":"Role","_key":"99335","_from":"58532","_to":"58520"} +{"$label":"ACTS_IN","name":"Lieutenant Wilson","type":"Role","_key":"99334","_from":"58531","_to":"58520"} +{"$label":"ACTS_IN","name":"Dead Bum","type":"Role","_key":"99333","_from":"58530","_to":"58520"} +{"$label":"ACTS_IN","name":"Pieman","type":"Role","_key":"99332","_from":"58529","_to":"58520"} +{"$label":"ACTS_IN","name":"Motorcycle Cop","type":"Role","_key":"99331","_from":"58528","_to":"58520"} +{"$label":"ACTS_IN","name":"Bosley Gravel","type":"Role","_key":"99330","_from":"58527","_to":"58520"} +{"$label":"ACTS_IN","name":"Dr. Evans","type":"Role","_key":"99329","_from":"58526","_to":"58520"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"99328","_from":"58525","_to":"58520"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"99327","_from":"58524","_to":"58520"} +{"$label":"ACTS_IN","name":"Bosley Jr. (as Brook Blake)","type":"Role","_key":"99326","_from":"58523","_to":"58520"} +{"$label":"ACTS_IN","name":"Grizelda Brown","type":"Role","_key":"99325","_from":"58522","_to":"58520"} +{"$label":"ACTS_IN","name":"Mole McHenry","type":"Role","_key":"99322","_from":"58521","_to":"58520"} +{"$label":"ACTS_IN","name":"Vikki","type":"Role","_key":"99348","_from":"58521","_to":"58537"} +{"$label":"ACTS_IN","name":"Wink","type":"Role","_key":"99345","_from":"58531","_to":"58537"} +{"$label":"ACTS_IN","name":"Mr. Weinberger","type":"Role","_key":"99349","_from":"58541","_to":"58537"} +{"$label":"ACTS_IN","name":"Dribbles","type":"Role","_key":"99347","_from":"58540","_to":"58537"} +{"$label":"ACTS_IN","name":"Butterfly","type":"Role","_key":"99346","_from":"58539","_to":"58537"} +{"$label":"ACTS_IN","name":"Gator","type":"Role","_key":"99344","_from":"58538","_to":"58537"} +{"$label":"ACTS_IN","name":"Imperial Guard Officer","type":"Role","_key":"107326","_from":"58538","_to":"63286"} +{"$label":"DIRECTED","_key":"99351","_from":"58544","_to":"58542"} +{"$label":"DIRECTED","_key":"99350","_from":"58543","_to":"58542"} +{"$label":"ACTS_IN","name":"Heintz","type":"Role","_key":"99361","_from":"58551","_to":"58545"} +{"$label":"ACTS_IN","name":"La Rue","type":"Role","_key":"99360","_from":"58550","_to":"58545"} +{"$label":"ACTS_IN","name":"Dexter Fishpaw","type":"Role","_key":"99358","_from":"58549","_to":"58545"} +{"$label":"ACTS_IN","name":"Lu-Lu Fishpaw","type":"Role","_key":"99357","_from":"58548","_to":"58545"} +{"$label":"ACTS_IN","name":"Elmer Fishpaw","type":"Role","_key":"99356","_from":"58547","_to":"58545"} +{"$label":"ACTS_IN","name":"Todd Tomorrow","type":"Role","_key":"99354","_from":"58546","_to":"58545"} +{"$label":"ACTS_IN","name":"Whispering Glades Tour Guide","type":"Role","_key":"108565","_from":"58546","_to":"64161"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99365","_from":"58555","_to":"58552"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99364","_from":"58554","_to":"58552"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99362","_from":"58553","_to":"58552"} +{"$label":"ACTS_IN","name":"Cactus Sac","type":"Role","_key":"102892","_from":"58553","_to":"60520"} +{"$label":"ACTS_IN","name":"Presco","type":"Role","_key":"99374","_from":"58560","_to":"58556"} +{"$label":"ACTS_IN","name":"Henry the Cook","type":"Role","_key":"99373","_from":"58559","_to":"58556"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"99372","_from":"58558","_to":"58556"} +{"$label":"ACTS_IN","name":"Jo","type":"Role","_key":"99370","_from":"58557","_to":"58556"} +{"$label":"DIRECTED","_key":"99375","_from":"58563","_to":"58562"} +{"$label":"DIRECTED","_key":"99379","_from":"58567","_to":"58564"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"99378","_from":"58567","_to":"58564"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99377","_from":"58566","_to":"58564"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99376","_from":"58565","_to":"58564"} +{"$label":"DIRECTED","_key":"99380","_from":"58569","_to":"58568"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99387","_from":"58578","_to":"58571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99386","_from":"58577","_to":"58571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99385","_from":"58576","_to":"58571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99384","_from":"58575","_to":"58571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99383","_from":"58574","_to":"58571"} +{"$label":"DIRECTED","_key":"99382","_from":"58573","_to":"58571"} +{"$label":"DIRECTED","_key":"99381","_from":"58572","_to":"58571"} +{"$label":"ACTS_IN","name":"Amir Bar-Lev","type":"Role","_key":"99389","_from":"58580","_to":"58579"} +{"$label":"DIRECTED","_key":"99388","_from":"58580","_to":"58579"} +{"$label":"ACTS_IN","name":"Drunk","type":"Role","_key":"99393","_from":"58584","_to":"58581"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"99392","_from":"58583","_to":"58581"} +{"$label":"ACTS_IN","name":"Ootek","type":"Role","_key":"99391","_from":"58582","_to":"58581"} +{"$label":"DIRECTED","_key":"99399","_from":"58589","_to":"58585"} +{"$label":"DIRECTED","_key":"99398","_from":"58588","_to":"58585"} +{"$label":"ACTS_IN","name":"Dakuan","type":"Role","_key":"99397","_from":"58587","_to":"58585"} +{"$label":"ACTS_IN","name":"Kagero","type":"Role","_key":"99396","_from":"58586","_to":"58585"} +{"$label":"ACTS_IN","name":"Kishu Arashi","type":"Role","_key":"111106","_from":"58586","_to":"65622"} +{"$label":"ACTS_IN","name":"Security Guard (uncredited)","type":"Role","_key":"99458","_from":"58627","_to":"58590"} +{"$label":"ACTS_IN","name":"Violinist (Oxford) (uncredited)","type":"Role","_key":"99457","_from":"58626","_to":"58590"} +{"$label":"ACTS_IN","name":"Autograph Seeker (Montr\u00e9al)","type":"Role","_key":"99455","_from":"58625","_to":"58590"} +{"$label":"ACTS_IN","name":"Ruselsky's Companion (Montr\u00e9al)","type":"Role","_key":"99454","_from":"58624","_to":"58590"} +{"$label":"ACTS_IN","name":"Registrar (Montr\u00e9al)","type":"Role","_key":"99453","_from":"58623","_to":"58590"} +{"$label":"ACTS_IN","name":"Coat Attendant (Montr\u00e9al)","type":"Role","_key":"99452","_from":"58622","_to":"58590"} +{"$label":"ACTS_IN","name":"Cabby (Montr\u00e9al)","type":"Role","_key":"99449","_from":"58621","_to":"58590"} +{"$label":"ACTS_IN","name":"Hotel Concierge (Montr\u00e9al)","type":"Role","_key":"99448","_from":"58620","_to":"58590"} +{"$label":"ACTS_IN","name":"Suzanne (Montr\u00e9al)","type":"Role","_key":"99446","_from":"58619","_to":"58590"} +{"$label":"ACTS_IN","name":"Mr. Ruselsky (Montr\u00e9al)","type":"Role","_key":"99442","_from":"58618","_to":"58590"} +{"$label":"ACTS_IN","name":"Pawnbroker (Shanghai)","type":"Role","_key":"99437","_from":"58617","_to":"58590"} +{"$label":"ACTS_IN","name":"Young Xian Pei (Shanghai)","type":"Role","_key":"99436","_from":"58616","_to":"58590"} +{"$label":"ACTS_IN","name":"Deputy (Shanghai)","type":"Role","_key":"99435","_from":"58615","_to":"58590"} +{"$label":"ACTS_IN","name":"Elderly Woman (Shanghai)","type":"Role","_key":"99434","_from":"58614","_to":"58590"} +{"$label":"ACTS_IN","name":"Senior Policeman (Shanghai)","type":"Role","_key":"99432","_from":"58613","_to":"58590"} +{"$label":"ACTS_IN","name":"Guard (Shanghai) (as Zeng Wei Tan)","type":"Role","_key":"99431","_from":"58612","_to":"58590"} +{"$label":"ACTS_IN","name":"Young Ming (Shanghai)","type":"Role","_key":"99430","_from":"58611","_to":"58590"} +{"$label":"ACTS_IN","name":"Comrade Chan Gong (Shanghai)","type":"Role","_key":"99429","_from":"58610","_to":"58590"} +{"$label":"ACTS_IN","name":"Chou Yuan (Shanghai) (as Zi Feng Liu)","type":"Role","_key":"99428","_from":"58609","_to":"58590"} +{"$label":"ACTS_IN","name":"Sara (Oxford)","type":"Role","_key":"99423","_from":"58608","_to":"58590"} +{"$label":"ACTS_IN","name":"Gypsy Violonist (Vienna)","type":"Role","_key":"99420","_from":"58607","_to":"58590"} +{"$label":"ACTS_IN","name":"Prince Mansfeld (Vienna)","type":"Role","_key":"99419","_from":"58606","_to":"58590"} +{"$label":"ACTS_IN","name":"Gypsy Violonist (Vienna)","type":"Role","_key":"99418","_from":"58605","_to":"58590"} +{"$label":"ACTS_IN","name":"Gypsy Violonist (Vienna)","type":"Role","_key":"99417","_from":"58604","_to":"58590"} +{"$label":"ACTS_IN","name":"Funeral Monk (Vienna)","type":"Role","_key":"99416","_from":"58603","_to":"58590"} +{"$label":"ACTS_IN","name":"Brother Franz (Vienna)","type":"Role","_key":"99415","_from":"58602","_to":"58590"} +{"$label":"ACTS_IN","name":"Brother Gustav (Vienna)","type":"Role","_key":"99413","_from":"58601","_to":"58590"} +{"$label":"ACTS_IN","name":"Brother Christophe (Vienna)","type":"Role","_key":"99412","_from":"58600","_to":"58590"} +{"$label":"ACTS_IN","name":"Anton von Spielmann (Vienna)","type":"Role","_key":"99410","_from":"58599","_to":"58590"} +{"$label":"ACTS_IN","name":"Kaspar Weiss (Vienna)","type":"Role","_key":"99408","_from":"58598","_to":"58590"} +{"$label":"ACTS_IN","name":"Assistant (Cremona)","type":"Role","_key":"99407","_from":"58597","_to":"58590"} +{"$label":"ACTS_IN","name":"Boy (Cremona)","type":"Role","_key":"99405","_from":"58596","_to":"58590"} +{"$label":"ACTS_IN","name":"Apprentice (Cremona)","type":"Role","_key":"99404","_from":"58595","_to":"58590"} +{"$label":"ACTS_IN","name":"Cesca (Cremona)","type":"Role","_key":"99403","_from":"58594","_to":"58590"} +{"$label":"ACTS_IN","name":"Anna Bussotti (Cremona)","type":"Role","_key":"99402","_from":"58593","_to":"58590"} +{"$label":"ACTS_IN","name":"Nicolo Bussotti (Cremona)","type":"Role","_key":"99401","_from":"58592","_to":"58590"} +{"$label":"DIRECTED","_key":"99400","_from":"58591","_to":"58590"} +{"$label":"ACTS_IN","name":"Wild Guy #1","type":"Role","_key":"107221","_from":"58591","_to":"63230"} +{"$label":"DIRECTED","_key":"101654","_from":"58591","_to":"59832"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99464","_from":"58633","_to":"58628"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"99462","_from":"58632","_to":"58628"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99461","_from":"58631","_to":"58628"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99460","_from":"58630","_to":"58628"} +{"$label":"DIRECTED","_key":"99459","_from":"58629","_to":"58628"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99476","_from":"58641","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99473","_from":"58640","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99470","_from":"58639","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"99469","_from":"58638","_to":"58635"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99468","_from":"58637","_to":"58635"} +{"$label":"DIRECTED","_key":"99467","_from":"58636","_to":"58635"} +{"$label":"DIRECTED","_key":"99478","_from":"58644","_to":"58642"} +{"$label":"DIRECTED","_key":"99477","_from":"58643","_to":"58642"} +{"$label":"DIRECTED","_key":"99485","_from":"58646","_to":"58645"} +{"$label":"ACTS_IN","name":"Josh Waitzkin","type":"Role","_key":"99487","_from":"58649","_to":"58648"} +{"$label":"ACTS_IN","name":"Jack O'Callahan","type":"Role","_key":"99496","_from":"58653","_to":"58650"} +{"$label":"ACTS_IN","name":"Mike Eruzione","type":"Role","_key":"99495","_from":"58652","_to":"58650"} +{"$label":"ACTS_IN","name":"Jim Craig","type":"Role","_key":"99494","_from":"58651","_to":"58650"} +{"$label":"DIRECTED","_key":"99503","_from":"58656","_to":"58654"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"99501","_from":"58656","_to":"58654"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"99497","_from":"58655","_to":"58654"} +{"$label":"ACTS_IN","name":"Jonathan Brock","type":"Role","_key":"110545","_from":"58655","_to":"65319"} +{"$label":"DIRECTED","_key":"99508","_from":"58659","_to":"58658"} +{"$label":"DIRECTED","_key":"99513","_from":"58666","_to":"58661"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99512","_from":"58665","_to":"58661"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99511","_from":"58664","_to":"58661"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99510","_from":"58663","_to":"58661"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"99509","_from":"58662","_to":"58661"} +{"$label":"DIRECTED","_key":"99524","_from":"58669","_to":"58668"} +{"$label":"DIRECTED","_key":"112060","_from":"58669","_to":"66166"} +{"$label":"DIRECTED","_key":"99534","_from":"58678","_to":"58670"} +{"$label":"ACTS_IN","name":"Hawaiian Shirt Guy (3 episodes, 2008)","type":"Role","_key":"99533","_from":"58677","_to":"58670"} +{"$label":"ACTS_IN","name":"Van Driver \/ ... (3 episodes, 2008)","type":"Role","_key":"99532","_from":"58676","_to":"58670"} +{"$label":"ACTS_IN","name":"Bad Horse Chorus #3 \/ ... (3 episodes, 2008)","type":"Role","_key":"99531","_from":"58675","_to":"58670"} +{"$label":"ACTS_IN","name":"Bad Horse Chorus #2 \/ ... (3 episodes, 2008)","type":"Role","_key":"99530","_from":"58674","_to":"58670"} +{"$label":"ACTS_IN","name":"Bad Horse Chorus #1 (3 episodes, 2008)","type":"Role","_key":"99529","_from":"58673","_to":"58670"} +{"$label":"ACTS_IN","name":"Moist (3 episodes, 2008)","type":"Role","_key":"99528","_from":"58672","_to":"58670"} +{"$label":"ACTS_IN","name":"Penny (3 episodes, 2008)","type":"Role","_key":"99527","_from":"58671","_to":"58670"} +{"$label":"ACTS_IN","name":"Blue","type":"Role","_key":"110534","_from":"58671","_to":"65312"} +{"$label":"ACTS_IN","name":"TJ Goldman","type":"Role","_key":"111885","_from":"58672","_to":"66047"} +{"$label":"DIRECTED","_key":"108689","_from":"58678","_to":"64246"} +{"$label":"DIRECTED","_key":"99543","_from":"58685","_to":"58679"} +{"$label":"ACTS_IN","name":"Jones","type":"Role","_key":"99542","_from":"58684","_to":"58679"} +{"$label":"ACTS_IN","name":"Edwards","type":"Role","_key":"99541","_from":"58683","_to":"58679"} +{"$label":"ACTS_IN","name":"Boat Master","type":"Role","_key":"99540","_from":"58682","_to":"58679"} +{"$label":"ACTS_IN","name":"Ranger","type":"Role","_key":"99539","_from":"58681","_to":"58679"} +{"$label":"ACTS_IN","name":"Mike 'Storm Boy' Kingsley","type":"Role","_key":"99535","_from":"58680","_to":"58679"} +{"$label":"ACTS_IN","name":"Dr. Angela Noyce","type":"Role","_key":"99547","_from":"58687","_to":"58686"} +{"$label":"DIRECTED","_key":"99559","_from":"58691","_to":"58690"} +{"$label":"ACTS_IN","name":"Governor's Girl #1 - Scene 2","type":"Role","_key":"99612","_from":"58729","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99611","_from":"58728","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99610","_from":"58727","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99608","_from":"58726","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99607","_from":"58725","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99606","_from":"58724","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99605","_from":"58723","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99604","_from":"58722","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99603","_from":"58721","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99602","_from":"58720","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99600","_from":"58719","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99599","_from":"58718","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99598","_from":"58717","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99597","_from":"58716","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99596","_from":"58715","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 4","type":"Role","_key":"99593","_from":"58714","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 4","type":"Role","_key":"99591","_from":"58713","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 2","type":"Role","_key":"99590","_from":"58712","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 1","type":"Role","_key":"99589","_from":"58711","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 1","type":"Role","_key":"99588","_from":"58710","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99587","_from":"58709","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99586","_from":"58708","_to":"58694"} +{"$label":"ACTS_IN","name":"[NonSex]","type":"Role","_key":"99585","_from":"58707","_to":"58694"} +{"$label":"ACTS_IN","name":"Servant Girl #1 - [NonSex]","type":"Role","_key":"99584","_from":"58706","_to":"58694"} +{"$label":"ACTS_IN","name":"Xifeng - Scene 8","type":"Role","_key":"99582","_from":"58705","_to":"58694"} +{"$label":"ACTS_IN","name":"Diva Crew Member - Scene 7","type":"Role","_key":"99581","_from":"58704","_to":"58694"} +{"$label":"ACTS_IN","name":"Diva Crew Member - Scene 7","type":"Role","_key":"99580","_from":"58703","_to":"58694"} +{"$label":"ACTS_IN","name":"Servant Girl #3 Scene 4","type":"Role","_key":"99578","_from":"58702","_to":"58694"} +{"$label":"ACTS_IN","name":"Scene 4","type":"Role","_key":"99577","_from":"58701","_to":"58694"} +{"$label":"ACTS_IN","name":"Belly Dancer #3 - Scene 4","type":"Role","_key":"99576","_from":"58700","_to":"58694"} +{"$label":"ACTS_IN","name":"Belly Dancer #2 - Scene 4","type":"Role","_key":"99575","_from":"58699","_to":"58694"} +{"$label":"ACTS_IN","name":"Servant Girl #2 - Scene 4","type":"Role","_key":"99574","_from":"58698","_to":"58694"} +{"$label":"ACTS_IN","name":"Olivia - Scene 3","type":"Role","_key":"99572","_from":"58697","_to":"58694"} +{"$label":"ACTS_IN","name":"Governor's Girl #2 - Scene 2","type":"Role","_key":"99571","_from":"58696","_to":"58694"} +{"$label":"ACTS_IN","name":"Ai Chow - Scene 1","type":"Role","_key":"99570","_from":"58695","_to":"58694"} +{"$label":"ACTS_IN","name":"Shay the Babysitter","type":"Role","_key":"103213","_from":"58695","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103223","_from":"58712","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103224","_from":"58713","_to":"60710"} +{"$label":"DIRECTED","_key":"99620","_from":"58733","_to":"58731"} +{"$label":"DIRECTED","_key":"99619","_from":"58732","_to":"58731"} +{"$label":"ACTS_IN","name":"Young Pip","type":"Role","_key":"99622","_from":"58735","_to":"58734"} +{"$label":"ACTS_IN","name":"Andreuccio","type":"Role","_key":"99629","_from":"58738","_to":"58736"} +{"$label":"ACTS_IN","name":"Ghino","type":"Role","_key":"99624","_from":"58737","_to":"58736"} +{"$label":"ACTS_IN","name":"Petra","type":"Role","_key":"99656","_from":"58757","_to":"58742"} +{"$label":"ACTS_IN","name":"Torgeir","type":"Role","_key":"99655","_from":"58756","_to":"58742"} +{"$label":"ACTS_IN","name":"Petras mor","type":"Role","_key":"99654","_from":"58755","_to":"58742"} +{"$label":"ACTS_IN","name":"Vigdis","type":"Role","_key":"99653","_from":"58754","_to":"58742"} +{"$label":"ACTS_IN","name":"Nanna","type":"Role","_key":"99652","_from":"58753","_to":"58742"} +{"$label":"ACTS_IN","name":"L\u00e6rer","type":"Role","_key":"99651","_from":"58752","_to":"58742"} +{"$label":"ACTS_IN","name":"Fias mor","type":"Role","_key":"99650","_from":"58751","_to":"58742"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"99649","_from":"58750","_to":"58742"} +{"$label":"ACTS_IN","name":"Siggen","type":"Role","_key":"99648","_from":"58749","_to":"58742"} +{"$label":"ACTS_IN","name":"Frode","type":"Role","_key":"99647","_from":"58748","_to":"58742"} +{"$label":"ACTS_IN","name":"Wera","type":"Role","_key":"99646","_from":"58747","_to":"58742"} +{"$label":"ACTS_IN","name":"Sint kvinne","type":"Role","_key":"99645","_from":"58746","_to":"58742"} +{"$label":"ACTS_IN","name":"Fia","type":"Role","_key":"99644","_from":"58745","_to":"58742"} +{"$label":"ACTS_IN","name":"Bustric","type":"Role","_key":"99643","_from":"58744","_to":"58742"} +{"$label":"DIRECTED","_key":"99642","_from":"58743","_to":"58742"} +{"$label":"ACTS_IN","name":"Fengselsprest","type":"Role","_key":"107068","_from":"58749","_to":"63130"} +{"$label":"DIRECTED","_key":"99660","_from":"58759","_to":"58758"} +{"$label":"DIRECTED","_key":"99671","_from":"58765","_to":"58761"} +{"$label":"ACTS_IN","name":"Korba","type":"Role","_key":"99669","_from":"58764","_to":"58761"} +{"$label":"ACTS_IN","name":"Farad'n Corrino","type":"Role","_key":"99668","_from":"58763","_to":"58761"} +{"$label":"ACTS_IN","name":"Ghanima Atreides","type":"Role","_key":"99663","_from":"58762","_to":"58761"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"99675","_from":"58768","_to":"58766"} +{"$label":"ACTS_IN","name":"Fiona","type":"Role","_key":"99673","_from":"58767","_to":"58766"} +{"$label":"DIRECTED","_key":"99682","_from":"58772","_to":"58771"} +{"$label":"ACTS_IN","name":"Kara","type":"Role","_key":"99681","_from":"58776","_to":"58771"} +{"$label":"ACTS_IN","name":"Philip","type":"Role","_key":"99680","_from":"58775","_to":"58771"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"99679","_from":"58774","_to":"58771"} +{"$label":"ACTS_IN","name":"Abe","type":"Role","_key":"99678","_from":"58773","_to":"58771"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"99677","_from":"58772","_to":"58771"} +{"$label":"DIRECTED","_key":"99723","_from":"58815","_to":"58779"} +{"$label":"ACTS_IN","name":"Potluck Guest","type":"Role","_key":"99722","_from":"58814","_to":"58779"} +{"$label":"ACTS_IN","name":"Potluck Guest","type":"Role","_key":"99721","_from":"58813","_to":"58779"} +{"$label":"ACTS_IN","name":"Potluck Guest","type":"Role","_key":"99720","_from":"58812","_to":"58779"} +{"$label":"ACTS_IN","name":"Potluck Guest","type":"Role","_key":"99719","_from":"58811","_to":"58779"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"99718","_from":"58810","_to":"58779"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"99717","_from":"58809","_to":"58779"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"99716","_from":"58808","_to":"58779"} +{"$label":"ACTS_IN","name":"Washroom Man","type":"Role","_key":"99715","_from":"58807","_to":"58779"} +{"$label":"ACTS_IN","name":"Washroom Man","type":"Role","_key":"99714","_from":"58806","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99713","_from":"58805","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99712","_from":"58804","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99711","_from":"58803","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99710","_from":"58802","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99709","_from":"58801","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99708","_from":"58800","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99707","_from":"58799","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99706","_from":"58798","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99705","_from":"58797","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99704","_from":"58796","_to":"58779"} +{"$label":"ACTS_IN","name":"School Kid","type":"Role","_key":"99703","_from":"58795","_to":"58779"} +{"$label":"ACTS_IN","name":"Office Man","type":"Role","_key":"99702","_from":"58794","_to":"58779"} +{"$label":"ACTS_IN","name":"Mrs. Colley","type":"Role","_key":"99701","_from":"58793","_to":"58779"} +{"$label":"ACTS_IN","name":"Claude","type":"Role","_key":"99700","_from":"58792","_to":"58779"} +{"$label":"ACTS_IN","name":"Don's Mother","type":"Role","_key":"99699","_from":"58791","_to":"58779"} +{"$label":"ACTS_IN","name":"Teri","type":"Role","_key":"99698","_from":"58790","_to":"58779"} +{"$label":"ACTS_IN","name":"Debra","type":"Role","_key":"99697","_from":"58789","_to":"58779"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"99696","_from":"58788","_to":"58779"} +{"$label":"ACTS_IN","name":"Massage Guest","type":"Role","_key":"99695","_from":"58787","_to":"58779"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"99694","_from":"58786","_to":"58779"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"99692","_from":"58785","_to":"58779"} +{"$label":"ACTS_IN","name":"Jeff","type":"Role","_key":"99691","_from":"58784","_to":"58779"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"99690","_from":"58783","_to":"58779"} +{"$label":"ACTS_IN","name":"Ms. McPherson","type":"Role","_key":"99689","_from":"58782","_to":"58779"} +{"$label":"ACTS_IN","name":"Don Grant","type":"Role","_key":"99688","_from":"58781","_to":"58779"} +{"$label":"ACTS_IN","name":"Emerson","type":"Role","_key":"99686","_from":"58780","_to":"58779"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"118240","_from":"58791","_to":"69500"} +{"$label":"ACTS_IN","name":"Chrs Webb","type":"Role","_key":"102788","_from":"58792","_to":"60464"} +{"$label":"ACTS_IN","name":"Al","type":"Role","_key":"101731","_from":"58792","_to":"59874"} +{"$label":"DIRECTED","_key":"99730","_from":"58818","_to":"58816"} +{"$label":"ACTS_IN","name":"Sam Brown","type":"Role","_key":"99726","_from":"58817","_to":"58816"} +{"$label":"ACTS_IN","name":"Tevin Downey","type":"Role","_key":"109434","_from":"58817","_to":"64647"} +{"$label":"ACTS_IN","name":"Karen Hollis","type":"Role","_key":"99733","_from":"58820","_to":"58819"} +{"$label":"DIRECTED","_key":"99744","_from":"58823","_to":"58822"} +{"$label":"ACTS_IN","name":"Jeff Fatt","type":"Role","_key":"99748","_from":"58828","_to":"58824"} +{"$label":"ACTS_IN","name":"Sam Moran","type":"Role","_key":"99747","_from":"58827","_to":"58824"} +{"$label":"ACTS_IN","name":"Anthony Field","type":"Role","_key":"99746","_from":"58826","_to":"58824"} +{"$label":"ACTS_IN","name":"Murray Cook","type":"Role","_key":"99745","_from":"58825","_to":"58824"} +{"$label":"ACTS_IN","name":"Murray Cook","type":"Role","_key":"99785","_from":"58825","_to":"58862"} +{"$label":"ACTS_IN","name":"Anthony Field","type":"Role","_key":"99786","_from":"58826","_to":"58862"} +{"$label":"ACTS_IN","name":"Jeff Fatt","type":"Role","_key":"99787","_from":"58828","_to":"58862"} +{"$label":"DIRECTED","_key":"99784","_from":"58861","_to":"58829"} +{"$label":"DIRECTED","_key":"99783","_from":"58860","_to":"58829"} +{"$label":"DIRECTED","_key":"99782","_from":"58859","_to":"58829"} +{"$label":"DIRECTED","_key":"99781","_from":"58858","_to":"58829"} +{"$label":"ACTS_IN","name":"Mall goer","type":"Role","_key":"99780","_from":"58857","_to":"58829"} +{"$label":"ACTS_IN","name":"Angelo","type":"Role","_key":"99779","_from":"58856","_to":"58829"} +{"$label":"ACTS_IN","name":"Ma'Dere","type":"Role","_key":"99778","_from":"58855","_to":"58829"} +{"$label":"ACTS_IN","name":"Double A","type":"Role","_key":"99777","_from":"58854","_to":"58829"} +{"$label":"ACTS_IN","name":"Clerk","type":"Role","_key":"99776","_from":"58853","_to":"58829"} +{"$label":"ACTS_IN","name":"Heart Attack","type":"Role","_key":"99775","_from":"58852","_to":"58829"} +{"$label":"ACTS_IN","name":"Look","type":"Role","_key":"99774","_from":"58851","_to":"58829"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"99773","_from":"58850","_to":"58829"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"99772","_from":"58849","_to":"58829"} +{"$label":"ACTS_IN","name":"2nd Assistant Director","type":"Role","_key":"99771","_from":"58848","_to":"58829"} +{"$label":"ACTS_IN","name":"Security Officer","type":"Role","_key":"99770","_from":"58847","_to":"58829"} +{"$label":"ACTS_IN","name":"Makeup Artist","type":"Role","_key":"99769","_from":"58846","_to":"58829"} +{"$label":"ACTS_IN","name":"Girl","type":"Role","_key":"99768","_from":"58845","_to":"58829"} +{"$label":"ACTS_IN","name":"Basketball Fan","type":"Role","_key":"99767","_from":"58844","_to":"58829"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"99766","_from":"58843","_to":"58829"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"99765","_from":"58842","_to":"58829"} +{"$label":"ACTS_IN","name":"Stretch","type":"Role","_key":"99764","_from":"58841","_to":"58829"} +{"$label":"ACTS_IN","name":"Shirley","type":"Role","_key":"99763","_from":"58840","_to":"58829"} +{"$label":"ACTS_IN","name":"Shelli","type":"Role","_key":"99762","_from":"58839","_to":"58829"} +{"$label":"ACTS_IN","name":"Director","type":"Role","_key":"99761","_from":"58838","_to":"58829"} +{"$label":"ACTS_IN","name":"Uniformed Officer","type":"Role","_key":"99760","_from":"58837","_to":"58829"} +{"$label":"ACTS_IN","name":"Aub","type":"Role","_key":"99759","_from":"58836","_to":"58829"} +{"$label":"ACTS_IN","name":"Eboni","type":"Role","_key":"99757","_from":"58835","_to":"58829"} +{"$label":"ACTS_IN","name":"Jewelz","type":"Role","_key":"99756","_from":"58834","_to":"58829"} +{"$label":"ACTS_IN","name":"Up","type":"Role","_key":"99755","_from":"58833","_to":"58829"} +{"$label":"ACTS_IN","name":"Vaughn","type":"Role","_key":"99754","_from":"58832","_to":"58829"} +{"$label":"ACTS_IN","name":"Noah Cruise","type":"Role","_key":"99753","_from":"58831","_to":"58829"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"99750","_from":"58830","_to":"58829"} +{"$label":"ACTS_IN","name":"Sweetness","type":"Role","_key":"100720","_from":"58831","_to":"59387"} +{"$label":"ACTS_IN","name":"Shackelford","type":"Role","_key":"118468","_from":"58832","_to":"69645"} +{"$label":"ACTS_IN","name":"E. Bone","type":"Role","_key":"113249","_from":"58836","_to":"66724"} +{"$label":"DIRECTED","_key":"103699","_from":"58858","_to":"60994"} +{"$label":"ACTS_IN","name":"Greg","type":"Role","_key":"99788","_from":"58863","_to":"58862"} +{"$label":"ACTS_IN","name":"Sherrie Alviso","type":"Role","_key":"99801","_from":"58871","_to":"58864"} +{"$label":"ACTS_IN","name":"Rotti's Chauffeur","type":"Role","_key":"99800","_from":"58870","_to":"58864"} +{"$label":"ACTS_IN","name":"Jessica Adams","type":"Role","_key":"99799","_from":"58869","_to":"58864"} +{"$label":"ACTS_IN","name":"Marni Wallace","type":"Role","_key":"99798","_from":"58868","_to":"58864"} +{"$label":"ACTS_IN","name":"Graverobber","type":"Role","_key":"99797","_from":"58867","_to":"58864"} +{"$label":"ACTS_IN","name":"Pavi Largo","type":"Role","_key":"99796","_from":"58866","_to":"58864"} +{"$label":"ACTS_IN","name":"Blind Mag","type":"Role","_key":"99793","_from":"58865","_to":"58864"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"99803","_from":"58875","_to":"58873"} +{"$label":"ACTS_IN","name":"Rille","type":"Role","_key":"99802","_from":"58874","_to":"58873"} +{"$label":"ACTS_IN","name":"Caroline Harvey","type":"Role","_key":"99813","_from":"58880","_to":"58878"} +{"$label":"ACTS_IN","name":"Benjamin Harvey","type":"Role","_key":"99812","_from":"58879","_to":"58878"} +{"$label":"ACTS_IN","name":"Sara Anderson","type":"Role","_key":"99825","_from":"58884","_to":"58883"} +{"$label":"DIRECTED","_key":"99839","_from":"58888","_to":"58886"} +{"$label":"DIRECTED","_key":"99838","_from":"58887","_to":"58886"} +{"$label":"DIRECTED","_key":"113555","_from":"58887","_to":"66909"} +{"$label":"DIRECTED","_key":"113556","_from":"58888","_to":"66909"} +{"$label":"ACTS_IN","name":"Mitch Taylor","type":"Role","_key":"99841","_from":"58890","_to":"58889"} +{"$label":"ACTS_IN","name":"DeJesus","type":"Role","_key":"99854","_from":"58892","_to":"58891"} +{"$label":"DIRECTED","_key":"99892","_from":"58913","_to":"58900"} +{"$label":"ACTS_IN","name":"Pakistani Porter","type":"Role","_key":"99891","_from":"58912","_to":"58900"} +{"$label":"ACTS_IN","name":"Chips","type":"Role","_key":"99890","_from":"58911","_to":"58900"} +{"$label":"ACTS_IN","name":"Maxie","type":"Role","_key":"99889","_from":"58910","_to":"58900"} +{"$label":"ACTS_IN","name":"Big Jim","type":"Role","_key":"99887","_from":"58909","_to":"58900"} +{"$label":"ACTS_IN","name":"Leonard Edwards","type":"Role","_key":"99886","_from":"58908","_to":"58900"} +{"$label":"ACTS_IN","name":"Truelove","type":"Role","_key":"99884","_from":"58907","_to":"58900"} +{"$label":"ACTS_IN","name":"Culpepper Brown","type":"Role","_key":"99883","_from":"58906","_to":"58900"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"99882","_from":"58905","_to":"58900"} +{"$label":"ACTS_IN","name":"Georgina","type":"Role","_key":"99881","_from":"58904","_to":"58900"} +{"$label":"ACTS_IN","name":"Manton Bassett","type":"Role","_key":"99880","_from":"58903","_to":"58900"} +{"$label":"ACTS_IN","name":"Sir Horace, the Minister","type":"Role","_key":"99879","_from":"58902","_to":"58900"} +{"$label":"ACTS_IN","name":"Gilbert","type":"Role","_key":"99878","_from":"58901","_to":"58900"} +{"$label":"ACTS_IN","name":"Stan Butler","type":"Role","_key":"119359","_from":"58901","_to":"70137"} +{"$label":"ACTS_IN","name":"Stan Butler","type":"Role","_key":"119341","_from":"58901","_to":"70122"} +{"$label":"ACTS_IN","name":"Peter Potter","type":"Role","_key":"119646","_from":"58905","_to":"70277"} +{"$label":"ACTS_IN","name":"Ugh, the Jungle Boy","type":"Role","_key":"111735","_from":"58905","_to":"65956"} +{"$label":"DIRECTED","_key":"99975","_from":"58989","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"99974","_from":"58988","_to":"58914"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"99973","_from":"58987","_to":"58914"} +{"$label":"ACTS_IN","name":"Aus 11 Cameraman","type":"Role","_key":"99972","_from":"58986","_to":"58914"} +{"$label":"ACTS_IN","name":"Aus 11 Receptionist (as Leanne Brockenshire)","type":"Role","_key":"99971","_from":"58985","_to":"58914"} +{"$label":"ACTS_IN","name":"Indian Mother","type":"Role","_key":"99970","_from":"58984","_to":"58914"} +{"$label":"ACTS_IN","name":"John Purchie","type":"Role","_key":"99969","_from":"58983","_to":"58914"} +{"$label":"ACTS_IN","name":"Max Pike","type":"Role","_key":"99968","_from":"58982","_to":"58914"} +{"$label":"ACTS_IN","name":"News Director","type":"Role","_key":"99967","_from":"58981","_to":"58914"} +{"$label":"ACTS_IN","name":"Cement Man","type":"Role","_key":"99966","_from":"58980","_to":"58914"} +{"$label":"ACTS_IN","name":"Howard the Boss","type":"Role","_key":"99965","_from":"58979","_to":"58914"} +{"$label":"ACTS_IN","name":"Wing Commander Matthews","type":"Role","_key":"99964","_from":"58978","_to":"58914"} +{"$label":"ACTS_IN","name":"Polesitter","type":"Role","_key":"99963","_from":"58977","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"99962","_from":"58976","_to":"58914"} +{"$label":"ACTS_IN","name":"Effusive Woman","type":"Role","_key":"99961","_from":"58975","_to":"58914"} +{"$label":"ACTS_IN","name":"Newsreader","type":"Role","_key":"99960","_from":"58974","_to":"58914"} +{"$label":"ACTS_IN","name":"Newsreader","type":"Role","_key":"99959","_from":"58973","_to":"58914"} +{"$label":"ACTS_IN","name":"Simo","type":"Role","_key":"99958","_from":"58972","_to":"58914"} +{"$label":"ACTS_IN","name":"Wazza","type":"Role","_key":"99957","_from":"58971","_to":"58914"} +{"$label":"ACTS_IN","name":"Brownie","type":"Role","_key":"99956","_from":"58970","_to":"58914"} +{"$label":"ACTS_IN","name":"Macadamia Ball Man","type":"Role","_key":"99955","_from":"58969","_to":"58914"} +{"$label":"ACTS_IN","name":"Macadamia Ball Man","type":"Role","_key":"99954","_from":"58968","_to":"58914"} +{"$label":"ACTS_IN","name":"Dick Lleyton","type":"Role","_key":"99953","_from":"58967","_to":"58914"} +{"$label":"ACTS_IN","name":"Debby Lleyton","type":"Role","_key":"99952","_from":"58966","_to":"58914"} +{"$label":"ACTS_IN","name":"Sonya Tims","type":"Role","_key":"99951","_from":"58965","_to":"58914"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"99950","_from":"58964","_to":"58914"} +{"$label":"ACTS_IN","name":"Old Codger","type":"Role","_key":"99949","_from":"58963","_to":"58914"} +{"$label":"ACTS_IN","name":"Darren Kehole","type":"Role","_key":"99948","_from":"58962","_to":"58914"} +{"$label":"ACTS_IN","name":"Nobbie Furco","type":"Role","_key":"99947","_from":"58961","_to":"58914"} +{"$label":"ACTS_IN","name":"In the Morning Presenter","type":"Role","_key":"99946","_from":"58960","_to":"58914"} +{"$label":"ACTS_IN","name":"In the Morning Presenter (as Nick Holland)","type":"Role","_key":"99945","_from":"58959","_to":"58914"} +{"$label":"ACTS_IN","name":"Bus Stop Woman","type":"Role","_key":"99943","_from":"58958","_to":"58914"} +{"$label":"ACTS_IN","name":"Mr. Potts","type":"Role","_key":"99942","_from":"58957","_to":"58914"} +{"$label":"ACTS_IN","name":"Checkout Lady","type":"Role","_key":"99941","_from":"58956","_to":"58914"} +{"$label":"ACTS_IN","name":"Checkout Lady","type":"Role","_key":"99940","_from":"58955","_to":"58914"} +{"$label":"ACTS_IN","name":"Indian Sister","type":"Role","_key":"99939","_from":"58954","_to":"58914"} +{"$label":"ACTS_IN","name":"Indian Sister","type":"Role","_key":"99938","_from":"58953","_to":"58914"} +{"$label":"ACTS_IN","name":"Indian Sister","type":"Role","_key":"99937","_from":"58952","_to":"58914"} +{"$label":"ACTS_IN","name":"Regina Carter","type":"Role","_key":"99936","_from":"58951","_to":"58914"} +{"$label":"ACTS_IN","name":"Fireman","type":"Role","_key":"99935","_from":"58950","_to":"58914"} +{"$label":"ACTS_IN","name":"Louella","type":"Role","_key":"99934","_from":"58949","_to":"58914"} +{"$label":"ACTS_IN","name":"UFO Teenager","type":"Role","_key":"99933","_from":"58948","_to":"58914"} +{"$label":"ACTS_IN","name":"Fire Captain Robbo","type":"Role","_key":"99932","_from":"58947","_to":"58914"} +{"$label":"ACTS_IN","name":"Sergeant Dave","type":"Role","_key":"99931","_from":"58946","_to":"58914"} +{"$label":"ACTS_IN","name":"Meredith Butcher","type":"Role","_key":"99930","_from":"58945","_to":"58914"} +{"$label":"ACTS_IN","name":"Sandra Craig","type":"Role","_key":"99929","_from":"58944","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter - Troy","type":"Role","_key":"99926","_from":"58943","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter - Matt","type":"Role","_key":"99925","_from":"58942","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter - Wiry","type":"Role","_key":"99924","_from":"58941","_to":"58914"} +{"$label":"ACTS_IN","name":"Reporter - Kevin","type":"Role","_key":"99923","_from":"58940","_to":"58914"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"99922","_from":"58939","_to":"58914"} +{"$label":"ACTS_IN","name":"Air Traffic Controller","type":"Role","_key":"99921","_from":"58938","_to":"58914"} +{"$label":"ACTS_IN","name":"Air Traffic Controller","type":"Role","_key":"99920","_from":"58937","_to":"58914"} +{"$label":"ACTS_IN","name":"Police Officer","type":"Role","_key":"99919","_from":"58936","_to":"58914"} +{"$label":"ACTS_IN","name":"Police Operator","type":"Role","_key":"99918","_from":"58935","_to":"58914"} +{"$label":"ACTS_IN","name":"Police Operator","type":"Role","_key":"99917","_from":"58934","_to":"58914"} +{"$label":"ACTS_IN","name":"Police Operator","type":"Role","_key":"99916","_from":"58933","_to":"58914"} +{"$label":"ACTS_IN","name":"Elderly Neighbour","type":"Role","_key":"99915","_from":"58932","_to":"58914"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"99914","_from":"58931","_to":"58914"} +{"$label":"ACTS_IN","name":"Stuey","type":"Role","_key":"99913","_from":"58930","_to":"58914"} +{"$label":"ACTS_IN","name":"Young Lisa","type":"Role","_key":"99912","_from":"58929","_to":"58914"} +{"$label":"ACTS_IN","name":"Young Bobby","type":"Role","_key":"99911","_from":"58928","_to":"58914"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"99910","_from":"58927","_to":"58914"} +{"$label":"ACTS_IN","name":"Kaz","type":"Role","_key":"99909","_from":"58926","_to":"58914"} +{"$label":"ACTS_IN","name":"Party Shop Assistant","type":"Role","_key":"99907","_from":"58925","_to":"58914"} +{"$label":"ACTS_IN","name":"Helen Costas","type":"Role","_key":"99905","_from":"58924","_to":"58914"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"99904","_from":"58923","_to":"58914"} +{"$label":"ACTS_IN","name":"Real Estate Agent","type":"Role","_key":"99903","_from":"58922","_to":"58914"} +{"$label":"ACTS_IN","name":"Real Estate Agent (as Steven Rassios)","type":"Role","_key":"99902","_from":"58921","_to":"58914"} +{"$label":"ACTS_IN","name":"Real Estate Agent","type":"Role","_key":"99901","_from":"58920","_to":"58914"} +{"$label":"ACTS_IN","name":"Kate (as Jules Sobotta)","type":"Role","_key":"99900","_from":"58919","_to":"58914"} +{"$label":"ACTS_IN","name":"Ray Vitali","type":"Role","_key":"99899","_from":"58918","_to":"58914"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"99898","_from":"58917","_to":"58914"} +{"$label":"ACTS_IN","name":"Sandy Upman","type":"Role","_key":"99897","_from":"58916","_to":"58914"} +{"$label":"ACTS_IN","name":"Trudy Dunphy","type":"Role","_key":"99896","_from":"58915","_to":"58914"} +{"$label":"ACTS_IN","name":"Meryl Lee","type":"Role","_key":"107549","_from":"58915","_to":"63475"} +{"$label":"ACTS_IN","name":"McKibble","type":"Role","_key":"121127","_from":"58917","_to":"71139"} +{"$label":"ACTS_IN","name":"Wayne Thibadeaux","type":"Role","_key":"117925","_from":"58917","_to":"69318"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"105537","_from":"58930","_to":"62100"} +{"$label":"ACTS_IN","name":"George Spiggot\/The Devil","type":"Role","_key":"115337","_from":"58943","_to":"67907"} +{"$label":"ACTS_IN","name":"Lord Wexmire","type":"Role","_key":"100625","_from":"58943","_to":"59333"} +{"$label":"ACTS_IN","name":"Joan","type":"Role","_key":"107572","_from":"58945","_to":"63475"} +{"$label":"ACTS_IN","name":"Detective Janks","type":"Role","_key":"99989","_from":"58992","_to":"58990"} +{"$label":"ACTS_IN","name":"Duke","type":"Role","_key":"99982","_from":"58991","_to":"58990"} +{"$label":"DIRECTED","_key":"99996","_from":"58996","_to":"58993"} +{"$label":"DIRECTED","_key":"99995","_from":"58995","_to":"58993"} +{"$label":"ACTS_IN","name":"Lian","type":"Role","_key":"99994","_from":"58994","_to":"58993"} +{"$label":"ACTS_IN","name":"Susan Chow","type":"Role","_key":"117893","_from":"58994","_to":"69301"} +{"$label":"DIRECTED","_key":"100001","_from":"58999","_to":"58997"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"99998","_from":"58998","_to":"58997"} +{"$label":"DIRECTED","_key":"100002","_from":"59001","_to":"59000"} +{"$label":"DIRECTED","_key":"106545","_from":"59001","_to":"62781"} +{"$label":"DIRECTED","_key":"105808","_from":"59001","_to":"62286"} +{"$label":"ACTS_IN","name":"Arjun Saran","type":"Role","_key":"100013","_from":"59003","_to":"59002"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"100031","_from":"59012","_to":"59005"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"100030","_from":"59011","_to":"59005"} +{"$label":"ACTS_IN","name":"Detective Miles","type":"Role","_key":"100028","_from":"59010","_to":"59005"} +{"$label":"ACTS_IN","name":"Mr. Harper","type":"Role","_key":"100027","_from":"59009","_to":"59005"} +{"$label":"ACTS_IN","name":"Roxanne","type":"Role","_key":"100025","_from":"59008","_to":"59005"} +{"$label":"ACTS_IN","name":"Max Truemont","type":"Role","_key":"100024","_from":"59007","_to":"59005"} +{"$label":"DIRECTED","_key":"100022","_from":"59006","_to":"59005"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"117713","_from":"59012","_to":"69192"} +{"$label":"ACTS_IN","name":"Ruben \"Mascarita\"","type":"Role","_key":"100042","_from":"59018","_to":"59014"} +{"$label":"ACTS_IN","name":"Mudo","type":"Role","_key":"100040","_from":"59017","_to":"59014"} +{"$label":"ACTS_IN","name":"Javier","type":"Role","_key":"100037","_from":"59016","_to":"59014"} +{"$label":"DIRECTED","_key":"100036","_from":"59015","_to":"59014"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"100056","_from":"59022","_to":"59021"} +{"$label":"ACTS_IN","name":"Helen von Holzen, mother","type":"Role","_key":"101824","_from":"59022","_to":"59928"} +{"$label":"ACTS_IN","name":"Tom\u00e1s (voice)","type":"Role","_key":"100070","_from":"59026","_to":"59023"} +{"$label":"ACTS_IN","name":"Rafa (voice)","type":"Role","_key":"100069","_from":"59025","_to":"59023"} +{"$label":"ACTS_IN","name":"Monte (voice)","type":"Role","_key":"100064","_from":"59024","_to":"59023"} +{"$label":"ACTS_IN","name":"La femme du boucher","type":"Role","_key":"100078","_from":"59034","_to":"59027"} +{"$label":"ACTS_IN","name":"Le boucher","type":"Role","_key":"100077","_from":"59033","_to":"59027"} +{"$label":"ACTS_IN","name":"Claudine Billote","type":"Role","_key":"100076","_from":"59032","_to":"59027"} +{"$label":"ACTS_IN","name":"Robert Zinzette","type":"Role","_key":"100075","_from":"59031","_to":"59027"} +{"$label":"ACTS_IN","name":"Maria Bodin","type":"Role","_key":"100074","_from":"59030","_to":"59027"} +{"$label":"ACTS_IN","name":"Christian Bodin","type":"Role","_key":"100073","_from":"59029","_to":"59027"} +{"$label":"DIRECTED","_key":"100072","_from":"59028","_to":"59027"} +{"$label":"DIRECTED","_key":"100084","_from":"59038","_to":"59036"} +{"$label":"DIRECTED","_key":"100083","_from":"59037","_to":"59036"} +{"$label":"ACTS_IN","name":"Serge Krinine","type":"Role","_key":"100094","_from":"59043","_to":"59039"} +{"$label":"ACTS_IN","name":"Edouard","type":"Role","_key":"100093","_from":"59042","_to":"59039"} +{"$label":"DIRECTED","_key":"100089","_from":"59041","_to":"59039"} +{"$label":"DIRECTED","_key":"100088","_from":"59040","_to":"59039"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"114110","_from":"59042","_to":"67203"} +{"$label":"ACTS_IN","name":"Kiki","type":"Role","_key":"104416","_from":"59042","_to":"61422"} +{"$label":"ACTS_IN","name":"\u00c9mile Gravier","type":"Role","_key":"103157","_from":"59043","_to":"60680"} +{"$label":"ACTS_IN","name":"Jan","type":"Role","_key":"100115","_from":"59056","_to":"59044"} +{"$label":"ACTS_IN","name":"Mr. Webber","type":"Role","_key":"100114","_from":"59055","_to":"59044"} +{"$label":"ACTS_IN","name":"Selwyn","type":"Role","_key":"100113","_from":"59054","_to":"59044"} +{"$label":"ACTS_IN","name":"Damion (age 8-13)","type":"Role","_key":"100112","_from":"59053","_to":"59044"} +{"$label":"ACTS_IN","name":"Keisha","type":"Role","_key":"100110","_from":"59052","_to":"59044"} +{"$label":"ACTS_IN","name":"Biggie (age 8-13)","type":"Role","_key":"100109","_from":"59051","_to":"59044"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"100108","_from":"59050","_to":"59044"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"100107","_from":"59049","_to":"59044"} +{"$label":"ACTS_IN","name":"Hot Girl","type":"Role","_key":"100106","_from":"59048","_to":"59044"} +{"$label":"ACTS_IN","name":"Record Executive at Party","type":"Role","_key":"100104","_from":"59047","_to":"59044"} +{"$label":"ACTS_IN","name":"Damion 'D-Roc' Butler","type":"Role","_key":"100103","_from":"59046","_to":"59044"} +{"$label":"ACTS_IN","name":"Christopher 'Biggie' Wallace","type":"Role","_key":"100101","_from":"59045","_to":"59044"} +{"$label":"DIRECTED","_key":"100122","_from":"59058","_to":"59057"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100132","_from":"59061","_to":"59060"} +{"$label":"DIRECTED","_key":"100131","_from":"59061","_to":"59060"} +{"$label":"ACTS_IN","name":"Minouche","type":"Role","_key":"100142","_from":"59066","_to":"59063"} +{"$label":"ACTS_IN","name":"Helmut Kolle","type":"Role","_key":"100141","_from":"59065","_to":"59063"} +{"$label":"DIRECTED","_key":"100136","_from":"59064","_to":"59063"} +{"$label":"DIRECTED","_key":"100155","_from":"59078","_to":"59067"} +{"$label":"ACTS_IN","name":"Holden","type":"Role","_key":"100154","_from":"59077","_to":"59067"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"100152","_from":"59076","_to":"59067"} +{"$label":"ACTS_IN","name":"Daddy","type":"Role","_key":"100151","_from":"59075","_to":"59067"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"100150","_from":"59074","_to":"59067"} +{"$label":"ACTS_IN","name":"Karen","type":"Role","_key":"100149","_from":"59073","_to":"59067"} +{"$label":"ACTS_IN","name":"Lulu","type":"Role","_key":"100148","_from":"59072","_to":"59067"} +{"$label":"ACTS_IN","name":"Drag Queen","type":"Role","_key":"100147","_from":"59071","_to":"59067"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"100146","_from":"59070","_to":"59067"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"100145","_from":"59069","_to":"59067"} +{"$label":"ACTS_IN","name":"Wayne","type":"Role","_key":"100144","_from":"59068","_to":"59067"} +{"$label":"ACTS_IN","name":"Det. Jones","type":"Role","_key":"117250","_from":"59068","_to":"68966"} +{"$label":"ACTS_IN","name":"David Forrester","type":"Role","_key":"100160","_from":"59081","_to":"59079"} +{"$label":"ACTS_IN","name":"Yates","type":"Role","_key":"100158","_from":"59080","_to":"59079"} +{"$label":"ACTS_IN","name":"Holden Adams","type":"Role","_key":"107124","_from":"59080","_to":"63173"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"100167","_from":"59086","_to":"59083"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"100166","_from":"59085","_to":"59083"} +{"$label":"DIRECTED","_key":"100165","_from":"59084","_to":"59083"} +{"$label":"ACTS_IN","name":"Shlomo","type":"Role","_key":"100169","_from":"59088","_to":"59087"} +{"$label":"DIRECTED","_key":"100179","_from":"59093","_to":"59089"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"100176","_from":"59092","_to":"59089"} +{"$label":"ACTS_IN","name":"Ellen Thomas","type":"Role","_key":"100173","_from":"59091","_to":"59089"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"100172","_from":"59090","_to":"59089"} +{"$label":"DIRECTED","_key":"100191","_from":"59096","_to":"59094"} +{"$label":"ACTS_IN","name":"Deacon","type":"Role","_key":"100184","_from":"59095","_to":"59094"} +{"$label":"DIRECTED","_key":"100192","_from":"59098","_to":"59097"} +{"$label":"DIRECTED","_key":"100211","_from":"59105","_to":"59100"} +{"$label":"ACTS_IN","name":"Liza","type":"Role","_key":"100210","_from":"59104","_to":"59100"} +{"$label":"ACTS_IN","name":"Kirsten Benston","type":"Role","_key":"100207","_from":"59103","_to":"59100"} +{"$label":"ACTS_IN","name":"Loan Officer","type":"Role","_key":"100206","_from":"59102","_to":"59100"} +{"$label":"ACTS_IN","name":"Carter Boyd","type":"Role","_key":"100205","_from":"59101","_to":"59100"} +{"$label":"DIRECTED","_key":"100218","_from":"59109","_to":"59107"} +{"$label":"ACTS_IN","name":"Nicole Maris","type":"Role","_key":"100212","_from":"59108","_to":"59107"} +{"$label":"ACTS_IN","name":"Sabrina Spellman","type":"Role","_key":"105407","_from":"59108","_to":"62020"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"102869","_from":"59108","_to":"60510"} +{"$label":"ACTS_IN","name":"Cura","type":"Role","_key":"100227","_from":"59115","_to":"59110"} +{"$label":"ACTS_IN","name":"Secretaria","type":"Role","_key":"100226","_from":"59114","_to":"59110"} +{"$label":"ACTS_IN","name":"Ram\u00edrez","type":"Role","_key":"100223","_from":"59113","_to":"59110"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"100222","_from":"59112","_to":"59110"} +{"$label":"DIRECTED","_key":"100219","_from":"59111","_to":"59110"} +{"$label":"ACTS_IN","name":"Eusebia","type":"Role","_key":"115309","_from":"59112","_to":"67891"} +{"$label":"ACTS_IN","name":"Gothic Librarian","type":"Role","_key":"100236","_from":"59120","_to":"59116"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"100235","_from":"59119","_to":"59116"} +{"$label":"ACTS_IN","name":"Taylor's boyfriend","type":"Role","_key":"100233","_from":"59118","_to":"59116"} +{"$label":"ACTS_IN","name":"Lindsay Porter","type":"Role","_key":"100232","_from":"59117","_to":"59116"} +{"$label":"ACTS_IN","name":"Ang\u00e9lique M\u00e9nard","type":"Role","_key":"111478","_from":"59119","_to":"65820"} +{"$label":"DIRECTED","_key":"100238","_from":"59122","_to":"59121"} +{"$label":"DIRECTED","_key":"118397","_from":"59122","_to":"69604"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"100253","_from":"59125","_to":"59123"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"100252","_from":"59124","_to":"59123"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"100260","_from":"59127","_to":"59126"} +{"$label":"ACTS_IN","name":"Catherine Holt","type":"Role","_key":"100264","_from":"59132","_to":"59129"} +{"$label":"ACTS_IN","name":"Caleb Holt","type":"Role","_key":"100263","_from":"59131","_to":"59129"} +{"$label":"DIRECTED","_key":"100262","_from":"59130","_to":"59129"} +{"$label":"ACTS_IN","name":"Grant Taylor","type":"Role","_key":"118154","_from":"59130","_to":"69443"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"111967","_from":"59130","_to":"66092"} +{"$label":"DIRECTED","_key":"118152","_from":"59130","_to":"69443"} +{"$label":"ACTS_IN","name":"Sp4 Ganger","type":"Role","_key":"100271","_from":"59135","_to":"59133"} +{"$label":"ACTS_IN","name":"Maj. William Sayers","type":"Role","_key":"100269","_from":"59134","_to":"59133"} +{"$label":"DIRECTED","_key":"100283","_from":"59138","_to":"59136"} +{"$label":"ACTS_IN","name":"Victoria","type":"Role","_key":"100280","_from":"59137","_to":"59136"} +{"$label":"ACTS_IN","name":"Messy Tessie - Suit","type":"Role","_key":"100311","_from":"59150","_to":"59141"} +{"$label":"ACTS_IN","name":"Windy Winston - Suit (voice)","type":"Role","_key":"100310","_from":"59149","_to":"59141"} +{"$label":"ACTS_IN","name":"Nat Nerd - Suit","type":"Role","_key":"100309","_from":"59148","_to":"59141"} +{"$label":"ACTS_IN","name":"Blythe","type":"Role","_key":"100305","_from":"59147","_to":"59141"} +{"$label":"ACTS_IN","name":"Wally","type":"Role","_key":"100304","_from":"59146","_to":"59141"} +{"$label":"ACTS_IN","name":"Juice","type":"Role","_key":"100303","_from":"59145","_to":"59141"} +{"$label":"ACTS_IN","name":"Tangerine","type":"Role","_key":"100302","_from":"59144","_to":"59141"} +{"$label":"ACTS_IN","name":"Captain Manzini","type":"Role","_key":"100300","_from":"59143","_to":"59141"} +{"$label":"DIRECTED","_key":"100298","_from":"59142","_to":"59141"} +{"$label":"ACTS_IN","name":"Grandpa Lou Pickles (voice)","type":"Role","_key":"100325","_from":"59155","_to":"59151"} +{"$label":"ACTS_IN","name":"Angelica Pickles (voice)","type":"Role","_key":"100320","_from":"59154","_to":"59151"} +{"$label":"DIRECTED","_key":"100313","_from":"59153","_to":"59151"} +{"$label":"DIRECTED","_key":"100312","_from":"59152","_to":"59151"} +{"$label":"ACTS_IN","name":"Oficer Wembley","type":"Role","_key":"105142","_from":"59155","_to":"61873"} +{"$label":"ACTS_IN","name":"Ram Gopal","type":"Role","_key":"100333","_from":"59164","_to":"59156"} +{"$label":"ACTS_IN","name":"Palakkad Mani Iyer","type":"Role","_key":"100332","_from":"59163","_to":"59156"} +{"$label":"ACTS_IN","name":"GangaBai","type":"Role","_key":"100331","_from":"59162","_to":"59156"} +{"$label":"ACTS_IN","name":"ChakkuBai","type":"Role","_key":"100330","_from":"59161","_to":"59156"} +{"$label":"ACTS_IN","name":"Thiripurasundari","type":"Role","_key":"100329","_from":"59160","_to":"59156"} +{"$label":"ACTS_IN","name":"Shalini","type":"Role","_key":"100328","_from":"59159","_to":"59156"} +{"$label":"ACTS_IN","name":"Michael, Madhan, Kameshwaran and Raju","type":"Role","_key":"100327","_from":"59158","_to":"59156"} +{"$label":"DIRECTED","_key":"100326","_from":"59157","_to":"59156"} +{"$label":"ACTS_IN","name":"Govind","type":"Role","_key":"114227","_from":"59158","_to":"67280"} +{"$label":"DIRECTED","_key":"100346","_from":"59172","_to":"59165"} +{"$label":"ACTS_IN","name":"Kurt","type":"Role","_key":"100345","_from":"59171","_to":"59165"} +{"$label":"ACTS_IN","name":"Glenn","type":"Role","_key":"100341","_from":"59170","_to":"59165"} +{"$label":"ACTS_IN","name":"Keller assistant","type":"Role","_key":"100340","_from":"59169","_to":"59165"} +{"$label":"ACTS_IN","name":"Jeppsson","type":"Role","_key":"100339","_from":"59168","_to":"59165"} +{"$label":"ACTS_IN","name":"Olle","type":"Role","_key":"100338","_from":"59167","_to":"59165"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"100336","_from":"59166","_to":"59165"} +{"$label":"ACTS_IN","name":"Bake O Lite Singer (voice)","type":"Role","_key":"100351","_from":"59176","_to":"59173"} +{"$label":"ACTS_IN","name":"Fluffles (voice)","type":"Role","_key":"100350","_from":"59175","_to":"59173"} +{"$label":"ACTS_IN","name":"Piella (voice)","type":"Role","_key":"100349","_from":"59174","_to":"59173"} +{"$label":"DIRECTED","_key":"100365","_from":"59185","_to":"59177"} +{"$label":"ACTS_IN","name":"Un policier","type":"Role","_key":"100364","_from":"59184","_to":"59177"} +{"$label":"ACTS_IN","name":"Un policier","type":"Role","_key":"100363","_from":"59183","_to":"59177"} +{"$label":"ACTS_IN","name":"L'ami d'Erwann (as Esteban Carvajal Alegria)","type":"Role","_key":"100362","_from":"59182","_to":"59177"} +{"$label":"ACTS_IN","name":"La serveuse du bar","type":"Role","_key":"100361","_from":"59181","_to":"59177"} +{"$label":"ACTS_IN","name":"Jasmine, la soeur de Julie","type":"Role","_key":"100358","_from":"59180","_to":"59177"} +{"$label":"ACTS_IN","name":"La m\u00e8re de Julie","type":"Role","_key":"100357","_from":"59179","_to":"59177"} +{"$label":"ACTS_IN","name":"Erwann","type":"Role","_key":"100356","_from":"59178","_to":"59177"} +{"$label":"DIRECTED","_key":"101308","_from":"59185","_to":"59644"} +{"$label":"ACTS_IN","name":"Emperor Li","type":"Role","_key":"100367","_from":"59187","_to":"59186"} +{"$label":"ACTS_IN","name":"Qin Fen","type":"Role","_key":"115457","_from":"59187","_to":"67979"} +{"$label":"DIRECTED","_key":"100383","_from":"59198","_to":"59189"} +{"$label":"ACTS_IN","name":"Herzog","type":"Role","_key":"100382","_from":"59197","_to":"59189"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"100379","_from":"59196","_to":"59189"} +{"$label":"ACTS_IN","name":"Vegard","type":"Role","_key":"100378","_from":"59195","_to":"59189"} +{"$label":"ACTS_IN","name":"Liv","type":"Role","_key":"100377","_from":"59194","_to":"59189"} +{"$label":"ACTS_IN","name":"Erlend","type":"Role","_key":"100376","_from":"59193","_to":"59189"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"100375","_from":"59192","_to":"59189"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"100374","_from":"59191","_to":"59189"} +{"$label":"ACTS_IN","name":"Hanna","type":"Role","_key":"100373","_from":"59190","_to":"59189"} +{"$label":"DIRECTED","_key":"100389","_from":"59202","_to":"59199"} +{"$label":"ACTS_IN","name":"Lazerus","type":"Role","_key":"100387","_from":"59201","_to":"59199"} +{"$label":"ACTS_IN","name":"Agent Frankie Miller","type":"Role","_key":"100385","_from":"59200","_to":"59199"} +{"$label":"ACTS_IN","name":"Flea","type":"Role","_key":"100394","_from":"59205","_to":"59203"} +{"$label":"DIRECTED","_key":"100390","_from":"59204","_to":"59203"} +{"$label":"DIRECTED","_key":"100405","_from":"59210","_to":"59206"} +{"$label":"ACTS_IN","name":"Young Chiaki Ono","type":"Role","_key":"100404","_from":"59209","_to":"59206"} +{"$label":"ACTS_IN","name":"Okita Soji","type":"Role","_key":"100403","_from":"59208","_to":"59206"} +{"$label":"ACTS_IN","name":"Jiroemon Ohno","type":"Role","_key":"100402","_from":"59207","_to":"59206"} +{"$label":"DIRECTED","_key":"110107","_from":"59210","_to":"65066"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"100410","_from":"59212","_to":"59211"} +{"$label":"ACTS_IN","name":"The Reeker","type":"Role","_key":"100422","_from":"59215","_to":"59213"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"100416","_from":"59214","_to":"59213"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"100427","_from":"59219","_to":"59216"} +{"$label":"ACTS_IN","name":"Foki Scout","type":"Role","_key":"100426","_from":"59218","_to":"59216"} +{"$label":"ACTS_IN","name":"Wyatt","type":"Role","_key":"100424","_from":"59217","_to":"59216"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"100435","_from":"59222","_to":"59220"} +{"$label":"ACTS_IN","name":"Poppy","type":"Role","_key":"100433","_from":"59221","_to":"59220"} +{"$label":"ACTS_IN","name":"Eli","type":"Role","_key":"111301","_from":"59222","_to":"65730"} +{"$label":"ACTS_IN","name":"Agent Evan Anderson","type":"Role","_key":"100447","_from":"59225","_to":"59224"} +{"$label":"DIRECTED","_key":"100450","_from":"59227","_to":"59226"} +{"$label":"ACTS_IN","name":"Buffy Cronenberg","type":"Role","_key":"100456","_from":"59229","_to":"59228"} +{"$label":"ACTS_IN","name":"Cynthia Foxhugh","type":"Role","_key":"117116","_from":"59229","_to":"68910"} +{"$label":"ACTS_IN","name":"Valerie","type":"Role","_key":"117083","_from":"59229","_to":"68897"} +{"$label":"ACTS_IN","name":"Joy Piccolo","type":"Role","_key":"114772","_from":"59229","_to":"67603"} +{"$label":"DIRECTED","_key":"100469","_from":"59240","_to":"59230"} +{"$label":"ACTS_IN","name":"Ravindran 'Rotlu'","type":"Role","_key":"100468","_from":"59239","_to":"59230"} +{"$label":"ACTS_IN","name":"Sushant Modi","type":"Role","_key":"100467","_from":"59238","_to":"59230"} +{"$label":"ACTS_IN","name":"Sandhya 'Bombs'","type":"Role","_key":"100466","_from":"59237","_to":"59230"} +{"$label":"ACTS_IN","name":"Jignesh 'Jiggy' Patel","type":"Role","_key":"100465","_from":"59236","_to":"59230"} +{"$label":"ACTS_IN","name":"Shaleen 'Shali'","type":"Role","_key":"100464","_from":"59235","_to":"59230"} +{"$label":"ACTS_IN","name":"Amit","type":"Role","_key":"100463","_from":"59234","_to":"59230"} +{"$label":"ACTS_IN","name":"Meghna (as Manjari)","type":"Role","_key":"100462","_from":"59233","_to":"59230"} +{"$label":"ACTS_IN","name":"Aditi Wadia (as Genelia)","type":"Role","_key":"100461","_from":"59232","_to":"59230"} +{"$label":"ACTS_IN","name":"Jai Rathod","type":"Role","_key":"100460","_from":"59231","_to":"59230"} +{"$label":"ACTS_IN","name":"Kabir Sharma","type":"Role","_key":"120866","_from":"59231","_to":"70973"} +{"$label":"ACTS_IN","name":"Prison Guard","type":"Role","_key":"100472","_from":"59243","_to":"59242"} +{"$label":"DIRECTED","_key":"100481","_from":"59248","_to":"59246"} +{"$label":"ACTS_IN","name":"Sherri","type":"Role","_key":"100478","_from":"59247","_to":"59246"} +{"$label":"DIRECTED","_key":"100491","_from":"59254","_to":"59250"} +{"$label":"ACTS_IN","name":"Hennessy","type":"Role","_key":"100488","_from":"59253","_to":"59250"} +{"$label":"ACTS_IN","name":"Angela","type":"Role","_key":"100487","_from":"59252","_to":"59250"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"100485","_from":"59251","_to":"59250"} +{"$label":"ACTS_IN","name":"Bryan Metro","type":"Role","_key":"112249","_from":"59251","_to":"66289"} +{"$label":"ACTS_IN","name":"Matuo","type":"Role","_key":"100501","_from":"59266","_to":"59261"} +{"$label":"ACTS_IN","name":"Tazawa","type":"Role","_key":"100500","_from":"59265","_to":"59261"} +{"$label":"ACTS_IN","name":"Hidemaro Gokukoji","type":"Role","_key":"100499","_from":"59264","_to":"59261"} +{"$label":"ACTS_IN","name":"Ryuji Toramaru","type":"Role","_key":"100498","_from":"59263","_to":"59261"} +{"$label":"ACTS_IN","name":"Genji Togashi","type":"Role","_key":"100497","_from":"59262","_to":"59261"} +{"$label":"DIRECTED","_key":"100506","_from":"59268","_to":"59267"} +{"$label":"DIRECTED","_key":"100507","_from":"59270","_to":"59269"} +{"$label":"DIRECTED","_key":"100516","_from":"59279","_to":"59272"} +{"$label":"ACTS_IN","name":"Akulina","type":"Role","_key":"100515","_from":"59278","_to":"59272"} +{"$label":"ACTS_IN","name":"Arina","type":"Role","_key":"100514","_from":"59277","_to":"59272"} +{"$label":"ACTS_IN","name":"Jegorka","type":"Role","_key":"100513","_from":"59276","_to":"59272"} +{"$label":"ACTS_IN","name":"Alter Mann","type":"Role","_key":"100511","_from":"59275","_to":"59272"} +{"$label":"ACTS_IN","name":"H\u00e4ndler","type":"Role","_key":"100509","_from":"59274","_to":"59272"} +{"$label":"ACTS_IN","name":"Aljona","type":"Role","_key":"100508","_from":"59273","_to":"59272"} +{"$label":"ACTS_IN","name":"King Heath","type":"Role","_key":"100521","_from":"59287","_to":"59282"} +{"$label":"ACTS_IN","name":"Sebastian the Raven","type":"Role","_key":"100520","_from":"59286","_to":"59282"} +{"$label":"ACTS_IN","name":"Prince Rollo's singing voice","type":"Role","_key":"100519","_from":"59285","_to":"59282"} +{"$label":"ACTS_IN","name":"Prince Rollo","type":"Role","_key":"100518","_from":"59284","_to":"59282"} +{"$label":"ACTS_IN","name":"Princess Daria","type":"Role","_key":"100517","_from":"59283","_to":"59282"} +{"$label":"DIRECTED","_key":"100524","_from":"59290","_to":"59288"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100523","_from":"59289","_to":"59288"} +{"$label":"ACTS_IN","name":"Mio \/ Bosse","type":"Role","_key":"100526","_from":"59296","_to":"59294"} +{"$label":"DIRECTED","_key":"100525","_from":"59295","_to":"59294"} +{"$label":"ACTS_IN","name":"Todd","type":"Role","_key":"100536","_from":"59301","_to":"59298"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"100534","_from":"59300","_to":"59298"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"100532","_from":"59299","_to":"59298"} +{"$label":"DIRECTED","_key":"100540","_from":"59304","_to":"59303"} +{"$label":"ACTS_IN","name":"Bill \/ Albrecht","type":"Role","_key":"100551","_from":"59307","_to":"59305"} +{"$label":"ACTS_IN","name":"Rupert \/ Adolphus","type":"Role","_key":"100550","_from":"59306","_to":"59305"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"100563","_from":"59312","_to":"59308"} +{"$label":"ACTS_IN","name":"Ambulance Driver","type":"Role","_key":"100562","_from":"59311","_to":"59308"} +{"$label":"ACTS_IN","name":"Jordan Fields","type":"Role","_key":"100561","_from":"59310","_to":"59308"} +{"$label":"ACTS_IN","name":"Dr. Edward Pretorius","type":"Role","_key":"100558","_from":"59309","_to":"59308"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"100564","_from":"59314","_to":"59313"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"113741","_from":"59314","_to":"67026"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"100606","_from":"59314","_to":"59324"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"100596","_from":"59314","_to":"59319"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100573","_from":"59314","_to":"59315"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100572","_from":"59318","_to":"59315"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100566","_from":"59317","_to":"59315"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100565","_from":"59316","_to":"59315"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100599","_from":"59316","_to":"59324"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100594","_from":"59316","_to":"59319"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100602","_from":"59317","_to":"59324"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100588","_from":"59317","_to":"59319"} +{"$label":"ACTS_IN","name":"Insectosaurus (voice)","type":"Role","_key":"104780","_from":"59318","_to":"61645"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103743","_from":"59318","_to":"61008"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100601","_from":"59318","_to":"59324"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100584","_from":"59318","_to":"59319"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100595","_from":"59323","_to":"59319"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"100593","_from":"59322","_to":"59319"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100590","_from":"59321","_to":"59319"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"100585","_from":"59320","_to":"59319"} +{"$label":"ACTS_IN","name":"Ackmena","type":"Role","_key":"107313","_from":"59321","_to":"63286"} +{"$label":"DIRECTED","_key":"100614","_from":"59327","_to":"59326"} +{"$label":"DIRECTED","_key":"100615","_from":"59329","_to":"59328"} +{"$label":"DIRECTED","_key":"100616","_from":"59332","_to":"59331"} +{"$label":"ACTS_IN","name":"Squire Gordon","type":"Role","_key":"100621","_from":"59335","_to":"59333"} +{"$label":"DIRECTED","_key":"100617","_from":"59334","_to":"59333"} +{"$label":"ACTS_IN","name":"Prentice","type":"Role","_key":"100632","_from":"59339","_to":"59336"} +{"$label":"ACTS_IN","name":"Freeman","type":"Role","_key":"100631","_from":"59338","_to":"59336"} +{"$label":"DIRECTED","_key":"100628","_from":"59337","_to":"59336"} +{"$label":"ACTS_IN","name":"Charlie Braithwaite","type":"Role","_key":"118871","_from":"59338","_to":"69865"} +{"$label":"ACTS_IN","name":"Brother Edgar","type":"Role","_key":"117249","_from":"59338","_to":"68966"} +{"$label":"ACTS_IN","name":"Brian Jones","type":"Role","_key":"113808","_from":"59338","_to":"67050"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100640","_from":"59343","_to":"59341"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"100635","_from":"59342","_to":"59341"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112678","_from":"59342","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112633","_from":"59342","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112606","_from":"59342","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112594","_from":"59342","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112582","_from":"59342","_to":"66484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104712","_from":"59343","_to":"61599"} +{"$label":"DIRECTED","_key":"100647","_from":"59346","_to":"59344"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"100645","_from":"59345","_to":"59344"} +{"$label":"ACTS_IN","name":"Major Godber","type":"Role","_key":"100663","_from":"59355","_to":"59349"} +{"$label":"ACTS_IN","name":"Brenda Tate","type":"Role","_key":"100662","_from":"59354","_to":"59349"} +{"$label":"ACTS_IN","name":"Shelley","type":"Role","_key":"100659","_from":"59353","_to":"59349"} +{"$label":"ACTS_IN","name":"Shane Gulliver","type":"Role","_key":"100658","_from":"59352","_to":"59349"} +{"$label":"ACTS_IN","name":"Mark 'Treacle' Tate","type":"Role","_key":"100657","_from":"59351","_to":"59349"} +{"$label":"DIRECTED","_key":"100656","_from":"59350","_to":"59349"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"117996","_from":"59351","_to":"69356"} +{"$label":"ACTS_IN","name":"T.J.","type":"Role","_key":"100667","_from":"59357","_to":"59356"} +{"$label":"ACTS_IN","name":"13-Year-Old Pete","type":"Role","_key":"100683","_from":"59368","_to":"59358"} +{"$label":"ACTS_IN","name":"13-Year-Old Rudy","type":"Role","_key":"100682","_from":"59367","_to":"59358"} +{"$label":"ACTS_IN","name":"11-Year-Old Mark","type":"Role","_key":"100681","_from":"59366","_to":"59358"} +{"$label":"ACTS_IN","name":"9-Year-Old Bernie","type":"Role","_key":"100680","_from":"59365","_to":"59358"} +{"$label":"ACTS_IN","name":"7-Year-Old Mark","type":"Role","_key":"100679","_from":"59364","_to":"59358"} +{"$label":"ACTS_IN","name":"Young Sherry","type":"Role","_key":"100678","_from":"59363","_to":"59358"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"100677","_from":"59362","_to":"59358"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"100674","_from":"59361","_to":"59358"} +{"$label":"ACTS_IN","name":"Frank Ruettiger","type":"Role","_key":"100673","_from":"59360","_to":"59358"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"100672","_from":"59359","_to":"59358"} +{"$label":"DIRECTED","_key":"100689","_from":"59370","_to":"59369"} +{"$label":"DIRECTED","_key":"100694","_from":"59375","_to":"59371"} +{"$label":"ACTS_IN","name":"Motome Chijiiwa","type":"Role","_key":"100693","_from":"59374","_to":"59371"} +{"$label":"ACTS_IN","name":"Miho Tsugumo","type":"Role","_key":"100692","_from":"59373","_to":"59371"} +{"$label":"ACTS_IN","name":"Kageyu Saito","type":"Role","_key":"100691","_from":"59372","_to":"59371"} +{"$label":"ACTS_IN","name":"Zhao Bao","type":"Role","_key":"100698","_from":"59377","_to":"59376"} +{"$label":"ACTS_IN","name":"Officer Wang Sun-Ho","type":"Role","_key":"117599","_from":"59377","_to":"69139"} +{"$label":"DIRECTED","_key":"100706","_from":"59382","_to":"59379"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"100705","_from":"59381","_to":"59379"} +{"$label":"ACTS_IN","name":"Himself \/ Walter \/ Achmed the Dead Terrorist \/ Melvin the Superhero Guy \/ Peanut \/ Jos\u00e9 Jalape\u00f1o on a Stick","type":"Role","_key":"100704","_from":"59380","_to":"59379"} +{"$label":"ACTS_IN","name":"Himself \/ Walter \/ Sweet Daddy Dee \/ Bubba J \/ Peanut \/ Jos\u00e9 Jalape\u00f1o on a Stick","type":"Role","_key":"100709","_from":"59380","_to":"59385"} +{"$label":"ACTS_IN","name":"Himself \/ Walter \/ Achmed the Dead Terrorist \/ Bubba J \/ Peanut \/ Jos\u00e9 Jalape\u00f1o on a Stick","type":"Role","_key":"100707","_from":"59380","_to":"59383"} +{"$label":"ACTS_IN","name":"Guitar Guy","type":"Role","_key":"100708","_from":"59384","_to":"59383"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"100725","_from":"59388","_to":"59387"} +{"$label":"DIRECTED","_key":"100745","_from":"59401","_to":"59389"} +{"$label":"ACTS_IN","name":"Hiren","type":"Role","_key":"100744","_from":"59400","_to":"59389"} +{"$label":"ACTS_IN","name":"Killer","type":"Role","_key":"100743","_from":"59399","_to":"59389"} +{"$label":"ACTS_IN","name":"Gopal's Neighbor","type":"Role","_key":"100742","_from":"59398","_to":"59389"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"100741","_from":"59397","_to":"59389"} +{"$label":"ACTS_IN","name":"Vasuli","type":"Role","_key":"100740","_from":"59396","_to":"59389"} +{"$label":"ACTS_IN","name":"Munni","type":"Role","_key":"100736","_from":"59395","_to":"59389"} +{"$label":"ACTS_IN","name":"Subodh","type":"Role","_key":"100735","_from":"59394","_to":"59389"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"100734","_from":"59393","_to":"59389"} +{"$label":"ACTS_IN","name":"Mira Nair","type":"Role","_key":"100733","_from":"59392","_to":"59389"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"100730","_from":"59391","_to":"59389"} +{"$label":"ACTS_IN","name":"ACP Madhav Singh Ghai","type":"Role","_key":"100728","_from":"59390","_to":"59389"} +{"$label":"ACTS_IN","name":"Mahadev","type":"Role","_key":"120878","_from":"59390","_to":"70976"} +{"$label":"ACTS_IN","name":"Sankeshwar aka Circuit","type":"Role","_key":"120663","_from":"59390","_to":"70865"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"120877","_from":"59391","_to":"70976"} +{"$label":"ACTS_IN","name":"Sameer aka Sam","type":"Role","_key":"120082","_from":"59391","_to":"70520"} +{"$label":"ACTS_IN","name":"The Don","type":"Role","_key":"120884","_from":"59394","_to":"70976"} +{"$label":"ACTS_IN","name":"Bakshi Jugaadu","type":"Role","_key":"105297","_from":"59394","_to":"61962"} +{"$label":"ACTS_IN","name":"Vasuli bhai","type":"Role","_key":"120883","_from":"59396","_to":"70976"} +{"$label":"DIRECTED","_key":"120888","_from":"59401","_to":"70976"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"100747","_from":"59403","_to":"59402"} +{"$label":"ACTS_IN","name":"Bill Dugan","type":"Role","_key":"106177","_from":"59403","_to":"62539"} +{"$label":"DIRECTED","_key":"100751","_from":"59406","_to":"59405"} +{"$label":"DIRECTED","_key":"100768","_from":"59410","_to":"59409"} +{"$label":"ACTS_IN","name":"Jacques Chazot","type":"Role","_key":"100782","_from":"59415","_to":"59413"} +{"$label":"DIRECTED","_key":"100780","_from":"59414","_to":"59413"} +{"$label":"ACTS_IN","name":"L'animateur radio","type":"Role","_key":"117347","_from":"59415","_to":"69017"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"100787","_from":"59418","_to":"59416"} +{"$label":"DIRECTED","_key":"100784","_from":"59417","_to":"59416"} +{"$label":"DIRECTED","_key":"100805","_from":"59428","_to":"59419"} +{"$label":"ACTS_IN","name":"Guidance Counselor","type":"Role","_key":"100804","_from":"59427","_to":"59419"} +{"$label":"ACTS_IN","name":"Jerry (as Jeff T)","type":"Role","_key":"100800","_from":"59426","_to":"59419"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"100799","_from":"59425","_to":"59419"} +{"$label":"ACTS_IN","name":"Zeke","type":"Role","_key":"100798","_from":"59424","_to":"59419"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"100795","_from":"59423","_to":"59419"} +{"$label":"ACTS_IN","name":"Buckley","type":"Role","_key":"100794","_from":"59422","_to":"59419"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"100792","_from":"59421","_to":"59419"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"100791","_from":"59420","_to":"59419"} +{"$label":"ACTS_IN","name":"Caroline Tate","type":"Role","_key":"116083","_from":"59421","_to":"68357"} +{"$label":"ACTS_IN","name":"Mrs. Armstrong","type":"Role","_key":"121304","_from":"59427","_to":"71273"} +{"$label":"ACTS_IN","name":"Tadeusz","type":"Role","_key":"100815","_from":"59438","_to":"59429"} +{"$label":"ACTS_IN","name":"Tomek","type":"Role","_key":"100814","_from":"59437","_to":"59429"} +{"$label":"ACTS_IN","name":"Wojtek","type":"Role","_key":"100813","_from":"59436","_to":"59429"} +{"$label":"ACTS_IN","name":"Istvan","type":"Role","_key":"100812","_from":"59435","_to":"59429"} +{"$label":"ACTS_IN","name":"Go\u015bka","type":"Role","_key":"100811","_from":"59434","_to":"59429"} +{"$label":"ACTS_IN","name":"Monia","type":"Role","_key":"100810","_from":"59433","_to":"59429"} +{"$label":"ACTS_IN","name":"\u0141ucja","type":"Role","_key":"100808","_from":"59432","_to":"59429"} +{"$label":"ACTS_IN","name":"Artur","type":"Role","_key":"100807","_from":"59431","_to":"59429"} +{"$label":"DIRECTED","_key":"100806","_from":"59430","_to":"59429"} +{"$label":"ACTS_IN","name":"Stuart","type":"Role","_key":"100821","_from":"59441","_to":"59439"} +{"$label":"ACTS_IN","name":"Maya Blart","type":"Role","_key":"100819","_from":"59440","_to":"59439"} +{"$label":"ACTS_IN","name":"Noah Kulick","type":"Role","_key":"121001","_from":"59441","_to":"71073"} +{"$label":"ACTS_IN","name":"Studio Gate Guard","type":"Role","_key":"101815","_from":"59441","_to":"59926"} +{"$label":"ACTS_IN","name":"Mr. Currutti","type":"Role","_key":"100837","_from":"59449","_to":"59442"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"100834","_from":"59448","_to":"59442"} +{"$label":"ACTS_IN","name":"Office Lafuentes","type":"Role","_key":"100833","_from":"59447","_to":"59442"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"100832","_from":"59446","_to":"59442"} +{"$label":"ACTS_IN","name":"Dinky","type":"Role","_key":"100831","_from":"59445","_to":"59442"} +{"$label":"ACTS_IN","name":"Mr. Eckerman","type":"Role","_key":"100830","_from":"59444","_to":"59442"} +{"$label":"ACTS_IN","name":"Mrs. Eckerman","type":"Role","_key":"100829","_from":"59443","_to":"59442"} +{"$label":"DIRECTED","_key":"100839","_from":"59453","_to":"59452"} +{"$label":"DIRECTED","_key":"100856","_from":"59458","_to":"59456"} +{"$label":"ACTS_IN","name":"Colby Allen","type":"Role","_key":"100853","_from":"59457","_to":"59456"} +{"$label":"ACTS_IN","name":"Princess Rubali","type":"Role","_key":"100859","_from":"59461","_to":"59459"} +{"$label":"ACTS_IN","name":"Jonathan Cabot","type":"Role","_key":"100858","_from":"59460","_to":"59459"} +{"$label":"DIRECTED","_key":"100871","_from":"59472","_to":"59464"} +{"$label":"ACTS_IN","name":"Noma","type":"Role","_key":"100870","_from":"59471","_to":"59464"} +{"$label":"ACTS_IN","name":"Ami","type":"Role","_key":"100869","_from":"59470","_to":"59464"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"100868","_from":"59469","_to":"59464"} +{"$label":"ACTS_IN","name":"Croy","type":"Role","_key":"100866","_from":"59468","_to":"59464"} +{"$label":"ACTS_IN","name":"Ria","type":"Role","_key":"100865","_from":"59467","_to":"59464"} +{"$label":"ACTS_IN","name":"Cyon","type":"Role","_key":"100864","_from":"59466","_to":"59464"} +{"$label":"ACTS_IN","name":"R","type":"Role","_key":"100863","_from":"59465","_to":"59464"} +{"$label":"ACTS_IN","name":"Paint","type":"Role","_key":"109600","_from":"59465","_to":"64735"} +{"$label":"ACTS_IN","name":"Karl","type":"Role","_key":"100877","_from":"59477","_to":"59473"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"100876","_from":"59476","_to":"59473"} +{"$label":"ACTS_IN","name":"Leon","type":"Role","_key":"100875","_from":"59475","_to":"59473"} +{"$label":"ACTS_IN","name":"Bruno","type":"Role","_key":"100874","_from":"59474","_to":"59473"} +{"$label":"DIRECTED","_key":"100879","_from":"59479","_to":"59478"} +{"$label":"DIRECTED","_key":"100891","_from":"59481","_to":"59480"} +{"$label":"ACTS_IN","name":"Mitch Weaver","type":"Role","_key":"100892","_from":"59483","_to":"59482"} +{"$label":"ACTS_IN","name":"Willard Fillmore","type":"Role","_key":"120090","_from":"59483","_to":"70525"} +{"$label":"DIRECTED","_key":"100907","_from":"59487","_to":"59485"} +{"$label":"DIRECTED","_key":"100906","_from":"59486","_to":"59485"} +{"$label":"ACTS_IN","name":"Tierney","type":"Role","_key":"100914","_from":"59491","_to":"59488"} +{"$label":"ACTS_IN","name":"Mike Lagana","type":"Role","_key":"100911","_from":"59490","_to":"59488"} +{"$label":"ACTS_IN","name":"Katie Bannion","type":"Role","_key":"100910","_from":"59489","_to":"59488"} +{"$label":"ACTS_IN","name":"Cassie Walker","type":"Role","_key":"100923","_from":"59494","_to":"59493"} +{"$label":"DIRECTED","_key":"100925","_from":"59496","_to":"59495"} +{"$label":"ACTS_IN","name":"Lum Kee","type":"Role","_key":"100954","_from":"59503","_to":"59500"} +{"$label":"ACTS_IN","name":"Floyd Casper","type":"Role","_key":"100951","_from":"59502","_to":"59500"} +{"$label":"ACTS_IN","name":"Robert Landis","type":"Role","_key":"100950","_from":"59501","_to":"59500"} +{"$label":"ACTS_IN","name":"Jerrold Hunter","type":"Role","_key":"112383","_from":"59501","_to":"66350"} +{"$label":"ACTS_IN","name":"Dr. David Trent","type":"Role","_key":"106140","_from":"59501","_to":"62509"} +{"$label":"ACTS_IN","name":"H. Culverton 'Smitty' Smith","type":"Role","_key":"100972","_from":"59509","_to":"59504"} +{"$label":"ACTS_IN","name":"Nickie Charles Jr.","type":"Role","_key":"100971","_from":"59508","_to":"59504"} +{"$label":"ACTS_IN","name":"'Diamond Back' Vogel","type":"Role","_key":"100969","_from":"59507","_to":"59504"} +{"$label":"ACTS_IN","name":"Mrs. Isabella Bellam, MacFay's Housekeeper","type":"Role","_key":"100967","_from":"59506","_to":"59504"} +{"$label":"ACTS_IN","name":"Freddie Coleman, MacFay's Secretary","type":"Role","_key":"100966","_from":"59505","_to":"59504"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"100985","_from":"59515","_to":"59510"} +{"$label":"ACTS_IN","name":"'Rainbow' Benny Loomis","type":"Role","_key":"100984","_from":"59514","_to":"59510"} +{"$label":"ACTS_IN","name":"Fred Macy","type":"Role","_key":"100983","_from":"59513","_to":"59510"} +{"$label":"ACTS_IN","name":"Claire Porter \/ Clara Peters","type":"Role","_key":"100981","_from":"59512","_to":"59510"} +{"$label":"ACTS_IN","name":"Nick Charles, Jr.","type":"Role","_key":"100980","_from":"59511","_to":"59510"} +{"$label":"DIRECTED","_key":"100987","_from":"59517","_to":"59516"} +{"$label":"ACTS_IN","name":"Becca Watley","type":"Role","_key":"100991","_from":"59521","_to":"59518"} +{"$label":"ACTS_IN","name":"Gabby","type":"Role","_key":"100990","_from":"59520","_to":"59518"} +{"$label":"ACTS_IN","name":"Lauren McDonald","type":"Role","_key":"100989","_from":"59519","_to":"59518"} +{"$label":"ACTS_IN","name":"Helena Draque","type":"Role","_key":"100998","_from":"59525","_to":"59522"} +{"$label":"ACTS_IN","name":"Laura Belle Ronson","type":"Role","_key":"100996","_from":"59524","_to":"59522"} +{"$label":"ACTS_IN","name":"Mrs. Marta Charles","type":"Role","_key":"100995","_from":"59523","_to":"59522"} +{"$label":"ACTS_IN","name":"Mrs. Harriet Mason","type":"Role","_key":"116684","_from":"59523","_to":"68689"} +{"$label":"ACTS_IN","name":"Jessica Thayar","type":"Role","_key":"101015","_from":"59530","_to":"59526"} +{"$label":"ACTS_IN","name":"David I. Thayar","type":"Role","_key":"101014","_from":"59529","_to":"59526"} +{"$label":"ACTS_IN","name":"Phyllis Talbin","type":"Role","_key":"101010","_from":"59528","_to":"59526"} +{"$label":"DIRECTED","_key":"101004","_from":"59527","_to":"59526"} +{"$label":"DIRECTED","_key":"101022","_from":"59535","_to":"59532"} +{"$label":"ACTS_IN","name":"Cilla","type":"Role","_key":"101021","_from":"59534","_to":"59532"} +{"$label":"ACTS_IN","name":"Joe Carraclough","type":"Role","_key":"101020","_from":"59533","_to":"59532"} +{"$label":"ACTS_IN","name":"Thomas Layne","type":"Role","_key":"101032","_from":"59541","_to":"59536"} +{"$label":"ACTS_IN","name":"Amos Candler","type":"Role","_key":"101031","_from":"59540","_to":"59536"} +{"$label":"ACTS_IN","name":"Mama A","type":"Role","_key":"101030","_from":"59539","_to":"59536"} +{"$label":"ACTS_IN","name":"Renny Jacobsen","type":"Role","_key":"101025","_from":"59538","_to":"59536"} +{"$label":"DIRECTED","_key":"101023","_from":"59537","_to":"59536"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"102288","_from":"59540","_to":"60182"} +{"$label":"DIRECTED","_key":"101048","_from":"59546","_to":"59545"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"101053","_from":"59550","_to":"59547"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"101051","_from":"59549","_to":"59547"} +{"$label":"DIRECTED","_key":"101049","_from":"59548","_to":"59547"} +{"$label":"DIRECTED","_key":"101062","_from":"59554","_to":"59551"} +{"$label":"ACTS_IN","name":"Zakir Khan","type":"Role","_key":"101060","_from":"59553","_to":"59551"} +{"$label":"ACTS_IN","name":"Shanti Singh","type":"Role","_key":"101059","_from":"59552","_to":"59551"} +{"$label":"ACTS_IN","name":"Thor","type":"Role","_key":"101074","_from":"59561","_to":"59555"} +{"$label":"ACTS_IN","name":"Dr. Betty Ross","type":"Role","_key":"101071","_from":"59560","_to":"59555"} +{"$label":"ACTS_IN","name":"Captain America","type":"Role","_key":"101066","_from":"59559","_to":"59555"} +{"$label":"DIRECTED","_key":"101065","_from":"59558","_to":"59555"} +{"$label":"DIRECTED","_key":"101064","_from":"59557","_to":"59555"} +{"$label":"DIRECTED","_key":"101063","_from":"59556","_to":"59555"} +{"$label":"DIRECTED","_key":"110965","_from":"59556","_to":"65540"} +{"$label":"DIRECTED","_key":"108230","_from":"59556","_to":"63962"} +{"$label":"DIRECTED","_key":"113791","_from":"59557","_to":"67046"} +{"$label":"ACTS_IN","name":"Captain America","type":"Role","_key":"101078","_from":"59559","_to":"59562"} +{"$label":"ACTS_IN","name":"Doctor Betty Ross","type":"Role","_key":"101083","_from":"59560","_to":"59562"} +{"$label":"ACTS_IN","name":"Thor","type":"Role","_key":"101086","_from":"59561","_to":"59562"} +{"$label":"DIRECTED","_key":"101077","_from":"59564","_to":"59562"} +{"$label":"DIRECTED","_key":"101076","_from":"59563","_to":"59562"} +{"$label":"ACTS_IN","name":"Bruce Banner","type":"Role","_key":"101100","_from":"59574","_to":"59566"} +{"$label":"ACTS_IN","name":"Vision","type":"Role","_key":"101099","_from":"59573","_to":"59566"} +{"$label":"ACTS_IN","name":"Hawkeye","type":"Role","_key":"101096","_from":"59572","_to":"59566"} +{"$label":"ACTS_IN","name":"Azari","type":"Role","_key":"101095","_from":"59571","_to":"59566"} +{"$label":"ACTS_IN","name":"Pym","type":"Role","_key":"101094","_from":"59570","_to":"59566"} +{"$label":"ACTS_IN","name":"Torunn","type":"Role","_key":"101093","_from":"59569","_to":"59566"} +{"$label":"ACTS_IN","name":"James Rogers","type":"Role","_key":"101092","_from":"59568","_to":"59566"} +{"$label":"DIRECTED","_key":"101091","_from":"59567","_to":"59566"} +{"$label":"DIRECTED","_key":"101931","_from":"59567","_to":"59989"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"115122","_from":"59568","_to":"67789"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"101106","_from":"59576","_to":"59575"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"101112","_from":"59579","_to":"59577"} +{"$label":"ACTS_IN","name":"District Attorney","type":"Role","_key":"101110","_from":"59578","_to":"59577"} +{"$label":"ACTS_IN","name":"Charles Stewart Calvin","type":"Role","_key":"120774","_from":"59578","_to":"70939"} +{"$label":"ACTS_IN","name":"Charles Gibson","type":"Role","_key":"115280","_from":"59578","_to":"67879"} +{"$label":"ACTS_IN","name":"Hayden Field","type":"Role","_key":"101118","_from":"59582","_to":"59581"} +{"$label":"ACTS_IN","name":"Grace Callahan","type":"Role","_key":"101133","_from":"59585","_to":"59583"} +{"$label":"ACTS_IN","name":"Ron Callahan","type":"Role","_key":"101129","_from":"59584","_to":"59583"} +{"$label":"ACTS_IN","name":"Henchman & Oil Rig Worker","type":"Role","_key":"101166","_from":"59601","_to":"59587"} +{"$label":"ACTS_IN","name":"Henchman","type":"Role","_key":"101165","_from":"59600","_to":"59587"} +{"$label":"ACTS_IN","name":"Ice Cream Man","type":"Role","_key":"101164","_from":"59599","_to":"59587"} +{"$label":"ACTS_IN","name":"Engineer","type":"Role","_key":"101163","_from":"59598","_to":"59587"} +{"$label":"ACTS_IN","name":"Transom","type":"Role","_key":"101162","_from":"59597","_to":"59587"} +{"$label":"ACTS_IN","name":"Kyrano","type":"Role","_key":"101159","_from":"59596","_to":"59587"} +{"$label":"ACTS_IN","name":"Panhead's Mother","type":"Role","_key":"101155","_from":"59595","_to":"59587"} +{"$label":"ACTS_IN","name":"Panhead","type":"Role","_key":"101154","_from":"59594","_to":"59587"} +{"$label":"ACTS_IN","name":"Gordon Tracy","type":"Role","_key":"101151","_from":"59593","_to":"59587"} +{"$label":"ACTS_IN","name":"Virgil Tracy","type":"Role","_key":"101150","_from":"59592","_to":"59587"} +{"$label":"ACTS_IN","name":"Know It All Kid","type":"Role","_key":"101149","_from":"59591","_to":"59587"} +{"$label":"ACTS_IN","name":"Scott Tracy","type":"Role","_key":"101146","_from":"59590","_to":"59587"} +{"$label":"ACTS_IN","name":"Lisa Lowe","type":"Role","_key":"101145","_from":"59589","_to":"59587"} +{"$label":"ACTS_IN","name":"Excited Kid","type":"Role","_key":"101143","_from":"59588","_to":"59587"} +{"$label":"ACTS_IN","name":"Mrs. Spiegel","type":"Role","_key":"113841","_from":"59589","_to":"67053"} +{"$label":"DIRECTED","_key":"101174","_from":"59603","_to":"59602"} +{"$label":"DIRECTED","_key":"102683","_from":"59603","_to":"60410"} +{"$label":"ACTS_IN","name":"Becky Culpepper","type":"Role","_key":"101181","_from":"59607","_to":"59606"} +{"$label":"ACTS_IN","name":"Claudia Hunter","type":"Role","_key":"101201","_from":"59609","_to":"59608"} +{"$label":"DIRECTED","_key":"101202","_from":"59614","_to":"59613"} +{"$label":"ACTS_IN","name":"Older Bram","type":"Role","_key":"101209","_from":"59617","_to":"59615"} +{"$label":"ACTS_IN","name":"Young Hagar","type":"Role","_key":"101204","_from":"59616","_to":"59615"} +{"$label":"ACTS_IN","name":"Hunter Morris","type":"Role","_key":"101213","_from":"59619","_to":"59618"} +{"$label":"DIRECTED","_key":"101222","_from":"59621","_to":"59620"} +{"$label":"ACTS_IN","name":"'Dum-Dum' Clarke","type":"Role","_key":"101235","_from":"59624","_to":"59623"} +{"$label":"ACTS_IN","name":"Sugar Smallhouse","type":"Role","_key":"114673","_from":"59624","_to":"67551"} +{"$label":"DIRECTED","_key":"101256","_from":"59628","_to":"59627"} +{"$label":"ACTS_IN","name":"M. Leble","type":"Role","_key":"101271","_from":"59633","_to":"59631"} +{"$label":"ACTS_IN","name":"Preskovitch","type":"Role","_key":"101269","_from":"59632","_to":"59631"} +{"$label":"DIRECTED","_key":"101280","_from":"59636","_to":"59635"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101284","_from":"59639","_to":"59637"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"101282","_from":"59638","_to":"59637"} +{"$label":"ACTS_IN","name":"Marcus Hooks","type":"Role","_key":"101318","_from":"59647","_to":"59645"} +{"$label":"ACTS_IN","name":"Lester","type":"Role","_key":"101315","_from":"59646","_to":"59645"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105843","_from":"59647","_to":"62306"} +{"$label":"DIRECTED","_key":"101331","_from":"59655","_to":"59649"} +{"$label":"ACTS_IN","name":"Empleado Gasolinera","type":"Role","_key":"101330","_from":"59654","_to":"59649"} +{"$label":"ACTS_IN","name":"Guardia Mayor","type":"Role","_key":"101329","_from":"59653","_to":"59649"} +{"$label":"ACTS_IN","name":"Guardia Joven","type":"Role","_key":"101328","_from":"59652","_to":"59649"} +{"$label":"ACTS_IN","name":"Hermano Mayor","type":"Role","_key":"101327","_from":"59651","_to":"59649"} +{"$label":"ACTS_IN","name":"Hermano Menor","type":"Role","_key":"101326","_from":"59650","_to":"59649"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"101335","_from":"59659","_to":"59657"} +{"$label":"DIRECTED","_key":"101333","_from":"59658","_to":"59657"} +{"$label":"ACTS_IN","name":"Edgar Wolf","type":"Role","_key":"118112","_from":"59659","_to":"69415"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"112176","_from":"59659","_to":"66245"} +{"$label":"ACTS_IN","name":"Philippe","type":"Role","_key":"104403","_from":"59659","_to":"61415"} +{"$label":"ACTS_IN","name":"Mrs. Thomas","type":"Role","_key":"101347","_from":"59662","_to":"59660"} +{"$label":"ACTS_IN","name":"Nick","type":"Role","_key":"101345","_from":"59661","_to":"59660"} +{"$label":"ACTS_IN","name":"Rickey Abromowitz","type":"Role","_key":"101351","_from":"59664","_to":"59663"} +{"$label":"DIRECTED","_key":"101361","_from":"59668","_to":"59667"} +{"$label":"DIRECTED","_key":"101366","_from":"59671","_to":"59669"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"101363","_from":"59670","_to":"59669"} +{"$label":"ACTS_IN","name":"Brenda Nicol","type":"Role","_key":"119927","_from":"59670","_to":"70443"} +{"$label":"ACTS_IN","name":"Gisella Perl","type":"Role","_key":"119761","_from":"59670","_to":"70329"} +{"$label":"ACTS_IN","name":"Hazel","type":"Role","_key":"116237","_from":"59670","_to":"68437"} +{"$label":"ACTS_IN","name":"Annie Pope \/ Cynthia Manfield","type":"Role","_key":"115268","_from":"59670","_to":"67874"} +{"$label":"ACTS_IN","name":"Gail Packer","type":"Role","_key":"112263","_from":"59670","_to":"66292"} +{"$label":"ACTS_IN","name":"Dr. Rachel Woodruff","type":"Role","_key":"111473","_from":"59670","_to":"65817"} +{"$label":"ACTS_IN","name":"Dale Turner","type":"Role","_key":"101368","_from":"59673","_to":"59672"} +{"$label":"DIRECTED","_key":"101380","_from":"59680","_to":"59675"} +{"$label":"ACTS_IN","name":"Nancy Brown","type":"Role","_key":"101379","_from":"59679","_to":"59675"} +{"$label":"ACTS_IN","name":"Dave Jackson","type":"Role","_key":"101378","_from":"59678","_to":"59675"} +{"$label":"ACTS_IN","name":"Gwen","type":"Role","_key":"101377","_from":"59677","_to":"59675"} +{"$label":"ACTS_IN","name":"Bernie Fowler","type":"Role","_key":"101376","_from":"59676","_to":"59675"} +{"$label":"ACTS_IN","name":"Dave Peck (voice)","type":"Role","_key":"119665","_from":"59678","_to":"70284"} +{"$label":"ACTS_IN","name":"Julie Bale","type":"Role","_key":"106393","_from":"59679","_to":"62687"} +{"$label":"ACTS_IN","name":"Girl Wearing Tube Top","type":"Role","_key":"101400","_from":"59695","_to":"59681"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"101398","_from":"59694","_to":"59681"} +{"$label":"ACTS_IN","name":"Charlene","type":"Role","_key":"101396","_from":"59693","_to":"59681"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"101395","_from":"59692","_to":"59681"} +{"$label":"ACTS_IN","name":"Mr. Meeker","type":"Role","_key":"101394","_from":"59691","_to":"59681"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"101393","_from":"59690","_to":"59681"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"101392","_from":"59689","_to":"59681"} +{"$label":"ACTS_IN","name":"Stella","type":"Role","_key":"101391","_from":"59688","_to":"59681"} +{"$label":"ACTS_IN","name":"Francine","type":"Role","_key":"101389","_from":"59687","_to":"59681"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"101388","_from":"59686","_to":"59681"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"101386","_from":"59685","_to":"59681"} +{"$label":"ACTS_IN","name":"Fargo","type":"Role","_key":"101385","_from":"59684","_to":"59681"} +{"$label":"ACTS_IN","name":"Vince","type":"Role","_key":"101384","_from":"59683","_to":"59681"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"101383","_from":"59682","_to":"59681"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102673","_from":"59691","_to":"60399"} +{"$label":"ACTS_IN","name":"Aunt Patsy","type":"Role","_key":"101413","_from":"59699","_to":"59697"} +{"$label":"ACTS_IN","name":"Lucy Warriner","type":"Role","_key":"101409","_from":"59698","_to":"59697"} +{"$label":"ACTS_IN","name":"Cindy Whitmarsh","type":"Role","_key":"101422","_from":"59703","_to":"59702"} +{"$label":"ACTS_IN","name":"Tifani","type":"Role","_key":"101424","_from":"59706","_to":"59704"} +{"$label":"DIRECTED","_key":"101423","_from":"59705","_to":"59704"} +{"$label":"DIRECTED","_key":"105659","_from":"59705","_to":"62189"} +{"$label":"ACTS_IN","name":"Mrs. Walker","type":"Role","_key":"101437","_from":"59714","_to":"59709"} +{"$label":"ACTS_IN","name":"Peggy Blackett","type":"Role","_key":"101436","_from":"59713","_to":"59709"} +{"$label":"ACTS_IN","name":"Nancy Blackett","type":"Role","_key":"101435","_from":"59712","_to":"59709"} +{"$label":"ACTS_IN","name":"Roger Walker","type":"Role","_key":"101434","_from":"59711","_to":"59709"} +{"$label":"ACTS_IN","name":"Titty Walker","type":"Role","_key":"101433","_from":"59710","_to":"59709"} +{"$label":"ACTS_IN","name":"Julie Hallam","type":"Role","_key":"110492","_from":"59714","_to":"65277"} +{"$label":"ACTS_IN","name":"Joy Adamson","type":"Role","_key":"104036","_from":"59714","_to":"61204"} +{"$label":"DIRECTED","_key":"101440","_from":"59716","_to":"59715"} +{"$label":"ACTS_IN","name":"Malama Kanakoa - the Ali'i Nui","type":"Role","_key":"101457","_from":"59720","_to":"59719"} +{"$label":"DIRECTED","_key":"101462","_from":"59723","_to":"59721"} +{"$label":"ACTS_IN","name":"Mr. Bennet","type":"Role","_key":"101459","_from":"59722","_to":"59721"} +{"$label":"ACTS_IN","name":"Kannalaq","type":"Role","_key":"101464","_from":"59725","_to":"59724"} +{"$label":"ACTS_IN","name":"Genichi","type":"Role","_key":"101475","_from":"59730","_to":"59727"} +{"$label":"ACTS_IN","name":"Tobei","type":"Role","_key":"101474","_from":"59729","_to":"59727"} +{"$label":"DIRECTED","_key":"101470","_from":"59728","_to":"59727"} +{"$label":"DIRECTED","_key":"101489","_from":"59734","_to":"59733"} +{"$label":"ACTS_IN","name":"Keshav","type":"Role","_key":"101495","_from":"59737","_to":"59735"} +{"$label":"DIRECTED","_key":"101490","_from":"59736","_to":"59735"} +{"$label":"ACTS_IN","name":"Arjun","type":"Role","_key":"120198","_from":"59737","_to":"70590"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108799","_from":"59737","_to":"64303"} +{"$label":"ACTS_IN","name":"Chandrakant (Chandu)","type":"Role","_key":"105802","_from":"59737","_to":"62286"} +{"$label":"ACTS_IN","name":"Billy Bob","type":"Role","_key":"101502","_from":"59742","_to":"59741"} +{"$label":"ACTS_IN","name":"Wade Harper","type":"Role","_key":"101510","_from":"59746","_to":"59743"} +{"$label":"ACTS_IN","name":"Caliphet Mathews","type":"Role","_key":"101509","_from":"59745","_to":"59743"} +{"$label":"ACTS_IN","name":"Jane Ellen Mathews","type":"Role","_key":"101508","_from":"59744","_to":"59743"} +{"$label":"ACTS_IN","name":"Pfc Al Thomas","type":"Role","_key":"117221","_from":"59746","_to":"68953"} +{"$label":"ACTS_IN","name":"Beauregard Jackson Pickett Burnside","type":"Role","_key":"108824","_from":"59746","_to":"64318"} +{"$label":"DIRECTED","_key":"101515","_from":"59748","_to":"59747"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101522","_from":"59756","_to":"59754"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101517","_from":"59755","_to":"59754"} +{"$label":"DIRECTED","_key":"101528","_from":"59763","_to":"59762"} +{"$label":"ACTS_IN","name":"Simone Renoir","type":"Role","_key":"101533","_from":"59765","_to":"59764"} +{"$label":"ACTS_IN","name":"Raina","type":"Role","_key":"104872","_from":"59765","_to":"61706"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101545","_from":"59769","_to":"59768"} +{"$label":"ACTS_IN","name":"L'inspecteur","type":"Role","_key":"101549","_from":"59771","_to":"59770"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"105032","_from":"59771","_to":"61813"} +{"$label":"ACTS_IN","name":"Sidra O'Neal","type":"Role","_key":"101570","_from":"59783","_to":"59773"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"101569","_from":"59782","_to":"59773"} +{"$label":"ACTS_IN","name":"Coach Davis","type":"Role","_key":"101568","_from":"59781","_to":"59773"} +{"$label":"ACTS_IN","name":"UCLA Coach","type":"Role","_key":"101565","_from":"59780","_to":"59773"} +{"$label":"ACTS_IN","name":"Coach Hiserman","type":"Role","_key":"101564","_from":"59779","_to":"59773"} +{"$label":"ACTS_IN","name":"Nona McCall","type":"Role","_key":"101562","_from":"59778","_to":"59773"} +{"$label":"ACTS_IN","name":"Young Lena","type":"Role","_key":"101560","_from":"59777","_to":"59773"} +{"$label":"ACTS_IN","name":"Jamal","type":"Role","_key":"101559","_from":"59776","_to":"59773"} +{"$label":"ACTS_IN","name":"Young Quincy","type":"Role","_key":"101558","_from":"59775","_to":"59773"} +{"$label":"ACTS_IN","name":"Kelvin","type":"Role","_key":"101552","_from":"59774","_to":"59773"} +{"$label":"ACTS_IN","name":"Andrew Stone","type":"Role","_key":"121608","_from":"59782","_to":"71444"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"110026","_from":"59782","_to":"65011"} +{"$label":"ACTS_IN","name":"Mugger","type":"Role","_key":"101586","_from":"59794","_to":"59785"} +{"$label":"ACTS_IN","name":"Mrs. Bodine","type":"Role","_key":"101584","_from":"59793","_to":"59785"} +{"$label":"ACTS_IN","name":"Mrs. Morganweiss","type":"Role","_key":"101583","_from":"59792","_to":"59785"} +{"$label":"ACTS_IN","name":"Dance Instructor","type":"Role","_key":"101581","_from":"59791","_to":"59785"} +{"$label":"ACTS_IN","name":"Assistant Choreographer","type":"Role","_key":"101580","_from":"59790","_to":"59785"} +{"$label":"ACTS_IN","name":"Rhonda","type":"Role","_key":"101579","_from":"59789","_to":"59785"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"101578","_from":"59788","_to":"59785"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"101576","_from":"59787","_to":"59785"} +{"$label":"ACTS_IN","name":"Lucy McFadden","type":"Role","_key":"101574","_from":"59786","_to":"59785"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"101603","_from":"59803","_to":"59795"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"101602","_from":"59802","_to":"59795"} +{"$label":"ACTS_IN","name":"Lupe","type":"Role","_key":"101601","_from":"59801","_to":"59795"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"101600","_from":"59800","_to":"59795"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"101597","_from":"59799","_to":"59795"} +{"$label":"ACTS_IN","name":"Drollhauser","type":"Role","_key":"101596","_from":"59798","_to":"59795"} +{"$label":"ACTS_IN","name":"Vivian","type":"Role","_key":"101595","_from":"59797","_to":"59795"} +{"$label":"ACTS_IN","name":"Charlotte Koogle","type":"Role","_key":"101592","_from":"59796","_to":"59795"} +{"$label":"ACTS_IN","name":"Sunny Daze","type":"Role","_key":"117087","_from":"59797","_to":"68897"} +{"$label":"ACTS_IN","name":"Sloan","type":"Role","_key":"109660","_from":"59798","_to":"64764"} +{"$label":"DIRECTED","_key":"101608","_from":"59809","_to":"59804"} +{"$label":"ACTS_IN","name":"Mr. Kang","type":"Role","_key":"101607","_from":"59808","_to":"59804"} +{"$label":"ACTS_IN","name":"Mundi","type":"Role","_key":"101606","_from":"59807","_to":"59804"} +{"$label":"ACTS_IN","name":"Ladi","type":"Role","_key":"101605","_from":"59806","_to":"59804"} +{"$label":"ACTS_IN","name":"Kanwal","type":"Role","_key":"101604","_from":"59805","_to":"59804"} +{"$label":"ACTS_IN","name":"Abahijot","type":"Role","_key":"111335","_from":"59805","_to":"65758"} +{"$label":"ACTS_IN","name":"Reet","type":"Role","_key":"113306","_from":"59806","_to":"66749"} +{"$label":"ACTS_IN","name":"Dj","type":"Role","_key":"113308","_from":"59807","_to":"66749"} +{"$label":"ACTS_IN","name":"Mitha Singh \/ Dr. Lucky Singh","type":"Role","_key":"111337","_from":"59807","_to":"65758"} +{"$label":"DIRECTED","_key":"113313","_from":"59809","_to":"66749"} +{"$label":"DIRECTED","_key":"101615","_from":"59812","_to":"59810"} +{"$label":"ACTS_IN","name":"Suzie Woods","type":"Role","_key":"101614","_from":"59811","_to":"59810"} +{"$label":"DIRECTED","_key":"101629","_from":"59818","_to":"59814"} +{"$label":"ACTS_IN","name":"Eric Wilson","type":"Role","_key":"101628","_from":"59817","_to":"59814"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"101626","_from":"59816","_to":"59814"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"101625","_from":"59815","_to":"59814"} +{"$label":"DIRECTED","_key":"110612","_from":"59818","_to":"65352"} +{"$label":"ACTS_IN","name":"Gene Harbrough","type":"Role","_key":"101635","_from":"59821","_to":"59820"} +{"$label":"ACTS_IN","name":"Neha Banot","type":"Role","_key":"101641","_from":"59824","_to":"59822"} +{"$label":"ACTS_IN","name":"Rajiv Julka","type":"Role","_key":"101640","_from":"59823","_to":"59822"} +{"$label":"ACTS_IN","name":"Ranjeet","type":"Role","_key":"104310","_from":"59823","_to":"61371"} +{"$label":"ACTS_IN","name":"Mahesh","type":"Role","_key":"101650","_from":"59823","_to":"59825"} +{"$label":"ACTS_IN","name":"Deepa","type":"Role","_key":"101653","_from":"59831","_to":"59825"} +{"$label":"ACTS_IN","name":"Rohit","type":"Role","_key":"101652","_from":"59830","_to":"59825"} +{"$label":"ACTS_IN","name":"Priya","type":"Role","_key":"101651","_from":"59829","_to":"59825"} +{"$label":"ACTS_IN","name":"Tara Jaiswal","type":"Role","_key":"101649","_from":"59828","_to":"59825"} +{"$label":"ACTS_IN","name":"Pooja","type":"Role","_key":"101648","_from":"59827","_to":"59825"} +{"$label":"DIRECTED","_key":"101643","_from":"59826","_to":"59825"} +{"$label":"ACTS_IN","name":"Aditya Shroff","type":"Role","_key":"120894","_from":"59826","_to":"70980"} +{"$label":"ACTS_IN","name":"Vikram Jaisingh","type":"Role","_key":"108780","_from":"59826","_to":"64303"} +{"$label":"DIRECTED","_key":"112487","_from":"59826","_to":"66413"} +{"$label":"ACTS_IN","name":"Neena Walia","type":"Role","_key":"108784","_from":"59828","_to":"64303"} +{"$label":"ACTS_IN","name":"Inspector","type":"Role","_key":"101667","_from":"59835","_to":"59833"} +{"$label":"ACTS_IN","name":"Adviser","type":"Role","_key":"101664","_from":"59834","_to":"59833"} +{"$label":"ACTS_IN","name":"Master Liao","type":"Role","_key":"101674","_from":"59839","_to":"59836"} +{"$label":"ACTS_IN","name":"Shao Dan Yuan","type":"Role","_key":"101673","_from":"59838","_to":"59836"} +{"$label":"ACTS_IN","name":"Master Zealot Lin","type":"Role","_key":"101672","_from":"59837","_to":"59836"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"101679","_from":"59844","_to":"59840"} +{"$label":"ACTS_IN","name":"Espandi","type":"Role","_key":"101678","_from":"59843","_to":"59840"} +{"$label":"ACTS_IN","name":"Osama","type":"Role","_key":"101677","_from":"59842","_to":"59840"} +{"$label":"DIRECTED","_key":"101676","_from":"59841","_to":"59840"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"101696","_from":"59854","_to":"59845"} +{"$label":"ACTS_IN","name":"Skate Clerk","type":"Role","_key":"101695","_from":"59853","_to":"59845"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"101694","_from":"59852","_to":"59845"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"101693","_from":"59851","_to":"59845"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"101692","_from":"59850","_to":"59845"} +{"$label":"ACTS_IN","name":"Coffee Shop Patron","type":"Role","_key":"101691","_from":"59849","_to":"59845"} +{"$label":"ACTS_IN","name":"Elle","type":"Role","_key":"101688","_from":"59848","_to":"59845"} +{"$label":"ACTS_IN","name":"Restaurant Patron","type":"Role","_key":"101687","_from":"59847","_to":"59845"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"101681","_from":"59846","_to":"59845"} +{"$label":"DIRECTED","_key":"101680","_from":"59846","_to":"59845"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"108031","_from":"59854","_to":"63792"} +{"$label":"DIRECTED","_key":"101703","_from":"59856","_to":"59855"} +{"$label":"DIRECTED","_key":"121208","_from":"59856","_to":"71197"} +{"$label":"DIRECTED","_key":"119015","_from":"59856","_to":"69958"} +{"$label":"DIRECTED","_key":"116636","_from":"59856","_to":"68658"} +{"$label":"DIRECTED","_key":"114869","_from":"59856","_to":"67660"} +{"$label":"DIRECTED","_key":"109238","_from":"59856","_to":"64539"} +{"$label":"DIRECTED","_key":"104268","_from":"59856","_to":"61344"} +{"$label":"DIRECTED","_key":"101704","_from":"59859","_to":"59858"} +{"$label":"DIRECTED","_key":"101709","_from":"59864","_to":"59860"} +{"$label":"ACTS_IN","name":"Mae Yung-ok","type":"Role","_key":"101708","_from":"59863","_to":"59860"} +{"$label":"ACTS_IN","name":"Dae Jung-hyun","type":"Role","_key":"101707","_from":"59862","_to":"59860"} +{"$label":"ACTS_IN","name":"Gun Hwa-pyung","type":"Role","_key":"101705","_from":"59861","_to":"59860"} +{"$label":"ACTS_IN","name":"Yu Jinha","type":"Role","_key":"109095","_from":"59861","_to":"64459"} +{"$label":"DIRECTED","_key":"109094","_from":"59864","_to":"64459"} +{"$label":"ACTS_IN","name":"Mat\u00e9o","type":"Role","_key":"101715","_from":"59866","_to":"59865"} +{"$label":"ACTS_IN","name":"Charon","type":"Role","_key":"103295","_from":"59866","_to":"60764"} +{"$label":"ACTS_IN","name":"Mrs. Brink","type":"Role","_key":"101723","_from":"59870","_to":"59867"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"101721","_from":"59869","_to":"59867"} +{"$label":"ACTS_IN","name":"Selena","type":"Role","_key":"101720","_from":"59868","_to":"59867"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"101730","_from":"59875","_to":"59874"} +{"$label":"DIRECTED","_key":"101732","_from":"59877","_to":"59876"} +{"$label":"ACTS_IN","name":"Princess II","type":"Role","_key":"101738","_from":"59880","_to":"59878"} +{"$label":"ACTS_IN","name":"Princess I","type":"Role","_key":"101736","_from":"59879","_to":"59878"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"101762","_from":"59887","_to":"59885"} +{"$label":"ACTS_IN","name":"Kyle Hunter","type":"Role","_key":"101758","_from":"59886","_to":"59885"} +{"$label":"ACTS_IN","name":"Walt Purdy","type":"Role","_key":"101770","_from":"59892","_to":"59888"} +{"$label":"ACTS_IN","name":"Alexander's Messenger","type":"Role","_key":"101769","_from":"59891","_to":"59888"} +{"$label":"ACTS_IN","name":"Doctor \/ Alexander The Great","type":"Role","_key":"101768","_from":"59890","_to":"59888"} +{"$label":"ACTS_IN","name":"Alexandria","type":"Role","_key":"101765","_from":"59889","_to":"59888"} +{"$label":"ACTS_IN","name":"Styles","type":"Role","_key":"120216","_from":"59892","_to":"70594"} +{"$label":"DIRECTED","_key":"101779","_from":"59897","_to":"59895"} +{"$label":"ACTS_IN","name":"Chip (Voice)","type":"Role","_key":"101777","_from":"59896","_to":"59895"} +{"$label":"DIRECTED","_key":"101786","_from":"59902","_to":"59900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101785","_from":"59901","_to":"59900"} +{"$label":"DIRECTED","_key":"104390","_from":"59902","_to":"61409"} +{"$label":"DIRECTED","_key":"101789","_from":"59905","_to":"59903"} +{"$label":"ACTS_IN","name":"Omi","type":"Role","_key":"101788","_from":"59904","_to":"59903"} +{"$label":"ACTS_IN","name":"Chlo\u00e9","type":"Role","_key":"113497","_from":"59904","_to":"66872"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"105531","_from":"59904","_to":"62092"} +{"$label":"ACTS_IN","name":"Mimo","type":"Role","_key":"118284","_from":"59905","_to":"69527"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"101795","_from":"59909","_to":"59906"} +{"$label":"ACTS_IN","name":"Aaron","type":"Role","_key":"101794","_from":"59908","_to":"59906"} +{"$label":"ACTS_IN","name":"Benji","type":"Role","_key":"101793","_from":"59907","_to":"59906"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101804","_from":"59918","_to":"59910"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101803","_from":"59917","_to":"59910"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101802","_from":"59916","_to":"59910"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"101801","_from":"59915","_to":"59910"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101800","_from":"59914","_to":"59910"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101799","_from":"59913","_to":"59910"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101798","_from":"59912","_to":"59910"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"101797","_from":"59911","_to":"59910"} +{"$label":"ACTS_IN","name":"Wallace","type":"Role","_key":"101807","_from":"59921","_to":"59919"} +{"$label":"DIRECTED","_key":"101805","_from":"59920","_to":"59919"} +{"$label":"DIRECTED","_key":"117424","_from":"59920","_to":"69063"} +{"$label":"DIRECTED","_key":"111602","_from":"59920","_to":"65888"} +{"$label":"DIRECTED","_key":"101812","_from":"59925","_to":"59923"} +{"$label":"ACTS_IN","name":"Master An","type":"Role","_key":"101810","_from":"59924","_to":"59923"} +{"$label":"DIRECTED","_key":"101826","_from":"59932","_to":"59928"} +{"$label":"ACTS_IN","name":"Leo von Holzen, father","type":"Role","_key":"101825","_from":"59931","_to":"59928"} +{"$label":"ACTS_IN","name":"Vitus - age 6","type":"Role","_key":"101823","_from":"59930","_to":"59928"} +{"$label":"ACTS_IN","name":"Vitus von Holzen - age 12","type":"Role","_key":"101822","_from":"59929","_to":"59928"} +{"$label":"ACTS_IN","name":"Che","type":"Role","_key":"101834","_from":"59936","_to":"59934"} +{"$label":"ACTS_IN","name":"Elliott","type":"Role","_key":"101832","_from":"59935","_to":"59934"} +{"$label":"ACTS_IN","name":"Sean Saunders","type":"Role","_key":"107988","_from":"59935","_to":"63779"} +{"$label":"DIRECTED","_key":"101844","_from":"59941","_to":"59938"} +{"$label":"ACTS_IN","name":"King of Liang","type":"Role","_key":"101843","_from":"59940","_to":"59938"} +{"$label":"ACTS_IN","name":"Prince Liang Shi","type":"Role","_key":"101842","_from":"59939","_to":"59938"} +{"$label":"ACTS_IN","name":"Jiang","type":"Role","_key":"115976","_from":"59940","_to":"68300"} +{"$label":"ACTS_IN","name":"Roy","type":"Role","_key":"101851","_from":"59945","_to":"59942"} +{"$label":"ACTS_IN","name":"Jake Nealson","type":"Role","_key":"101850","_from":"59944","_to":"59942"} +{"$label":"ACTS_IN","name":"Jeffery Jay","type":"Role","_key":"101848","_from":"59943","_to":"59942"} +{"$label":"DIRECTED","_key":"101856","_from":"59949","_to":"59946"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"101854","_from":"59948","_to":"59946"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"101853","_from":"59947","_to":"59946"} +{"$label":"ACTS_IN","name":"Yente","type":"Role","_key":"101860","_from":"59953","_to":"59950"} +{"$label":"ACTS_IN","name":"Motel","type":"Role","_key":"101859","_from":"59952","_to":"59950"} +{"$label":"ACTS_IN","name":"Golde","type":"Role","_key":"101858","_from":"59951","_to":"59950"} +{"$label":"ACTS_IN","name":"Goofy, Will, Ryan, Pete","type":"Role","_key":"101865","_from":"59957","_to":"59955"} +{"$label":"ACTS_IN","name":"Donald Duck","type":"Role","_key":"101864","_from":"59956","_to":"59955"} +{"$label":"ACTS_IN","name":"Donald Duck","type":"Role","_key":"120960","_from":"59956","_to":"71045"} +{"$label":"ACTS_IN","name":"Donald Duck (voice)","type":"Role","_key":"106453","_from":"59956","_to":"62711"} +{"$label":"DIRECTED","_key":"101873","_from":"59963","_to":"59958"} +{"$label":"ACTS_IN","name":"Symons","type":"Role","_key":"101872","_from":"59962","_to":"59958"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"101871","_from":"59961","_to":"59958"} +{"$label":"ACTS_IN","name":"Lia","type":"Role","_key":"101870","_from":"59960","_to":"59958"} +{"$label":"ACTS_IN","name":"Mathers","type":"Role","_key":"101869","_from":"59959","_to":"59958"} +{"$label":"ACTS_IN","name":"Mr. Bailey","type":"Role","_key":"101886","_from":"59967","_to":"59966"} +{"$label":"ACTS_IN","name":"Pat Finlay","type":"Role","_key":"101894","_from":"59971","_to":"59969"} +{"$label":"ACTS_IN","name":"Gerald \"Gerry\" Garner","type":"Role","_key":"101890","_from":"59970","_to":"59969"} +{"$label":"DIRECTED","_key":"101904","_from":"59977","_to":"59972"} +{"$label":"ACTS_IN","name":"Toddler Richard","type":"Role","_key":"101903","_from":"59976","_to":"59972"} +{"$label":"ACTS_IN","name":"Richard's Dad","type":"Role","_key":"101900","_from":"59975","_to":"59972"} +{"$label":"ACTS_IN","name":"Young Richard","type":"Role","_key":"101897","_from":"59974","_to":"59972"} +{"$label":"ACTS_IN","name":"Mr. Parks","type":"Role","_key":"101896","_from":"59973","_to":"59972"} +{"$label":"DIRECTED","_key":"101905","_from":"59979","_to":"59978"} +{"$label":"DIRECTED","_key":"118490","_from":"59979","_to":"69646"} +{"$label":"DIRECTED","_key":"107878","_from":"59979","_to":"63712"} +{"$label":"DIRECTED","_key":"101916","_from":"59979","_to":"59980"} +{"$label":"ACTS_IN","name":"Mr. Yokomoto","type":"Role","_key":"101915","_from":"59981","_to":"59980"} +{"$label":"DIRECTED","_key":"101923","_from":"59985","_to":"59982"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"101922","_from":"59984","_to":"59982"} +{"$label":"ACTS_IN","name":"Derek","type":"Role","_key":"101918","_from":"59983","_to":"59982"} +{"$label":"ACTS_IN","name":"Yosho","type":"Role","_key":"101925","_from":"59988","_to":"59987"} +{"$label":"DIRECTED","_key":"101932","_from":"59993","_to":"59989"} +{"$label":"DIRECTED","_key":"101930","_from":"59992","_to":"59989"} +{"$label":"ACTS_IN","name":"Ancient One","type":"Role","_key":"101929","_from":"59991","_to":"59989"} +{"$label":"ACTS_IN","name":"Wong","type":"Role","_key":"101927","_from":"59990","_to":"59989"} +{"$label":"ACTS_IN","name":"Mr. Ozu","type":"Role","_key":"111901","_from":"59991","_to":"66054"} +{"$label":"ACTS_IN","name":"Truck Driver","type":"Role","_key":"101953","_from":"60000","_to":"59995"} +{"$label":"ACTS_IN","name":"William","type":"Role","_key":"101951","_from":"59999","_to":"59995"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"101947","_from":"59998","_to":"59995"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"101946","_from":"59997","_to":"59995"} +{"$label":"DIRECTED","_key":"101943","_from":"59996","_to":"59995"} +{"$label":"ACTS_IN","name":"Randy Messarue","type":"Role","_key":"101959","_from":"60004","_to":"60001"} +{"$label":"ACTS_IN","name":"Stephanie Singleton","type":"Role","_key":"101957","_from":"60003","_to":"60001"} +{"$label":"ACTS_IN","name":"Jack Singleton","type":"Role","_key":"101956","_from":"60002","_to":"60001"} +{"$label":"DIRECTED","_key":"101973","_from":"60007","_to":"60006"} +{"$label":"ACTS_IN","name":"Father \/ Other Father (voice)","type":"Role","_key":"101979","_from":"60009","_to":"60008"} +{"$label":"ACTS_IN","name":"Brockie Drummond","type":"Role","_key":"101984","_from":"60011","_to":"60010"} +{"$label":"ACTS_IN","name":"Quarantine dude","type":"Role","_key":"101992","_from":"60015","_to":"60012"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"101991","_from":"60014","_to":"60012"} +{"$label":"DIRECTED","_key":"101988","_from":"60013","_to":"60012"} +{"$label":"ACTS_IN","name":"Kyle Rhodes","type":"Role","_key":"104948","_from":"60014","_to":"61751"} +{"$label":"ACTS_IN","name":"Barney","type":"Role","_key":"102006","_from":"60023","_to":"60016"} +{"$label":"ACTS_IN","name":"Sumabitch","type":"Role","_key":"102005","_from":"60022","_to":"60016"} +{"$label":"ACTS_IN","name":"Hank","type":"Role","_key":"102004","_from":"60021","_to":"60016"} +{"$label":"ACTS_IN","name":"Caroline Brown","type":"Role","_key":"102003","_from":"60020","_to":"60016"} +{"$label":"ACTS_IN","name":"Dogshit Miller, Foreman","type":"Role","_key":"102002","_from":"60019","_to":"60016"} +{"$label":"ACTS_IN","name":"Clarence Hill, Union Steward","type":"Role","_key":"102000","_from":"60018","_to":"60016"} +{"$label":"ACTS_IN","name":"Arlene Bartowski","type":"Role","_key":"101999","_from":"60017","_to":"60016"} +{"$label":"ACTS_IN","name":"Bobby Martinez","type":"Role","_key":"102012","_from":"60026","_to":"60025"} +{"$label":"DIRECTED","_key":"102030","_from":"60030","_to":"60028"} +{"$label":"ACTS_IN","name":"White House Guard","type":"Role","_key":"102025","_from":"60029","_to":"60028"} +{"$label":"DIRECTED","_key":"102037","_from":"60034","_to":"60031"} +{"$label":"ACTS_IN","name":"Jordan Phillips","type":"Role","_key":"102036","_from":"60033","_to":"60031"} +{"$label":"ACTS_IN","name":"Julia Barlett","type":"Role","_key":"102035","_from":"60032","_to":"60031"} +{"$label":"ACTS_IN","name":"Elizabeth Russell","type":"Role","_key":"120838","_from":"60032","_to":"70961"} +{"$label":"ACTS_IN","name":"Chloe","type":"Role","_key":"108778","_from":"60032","_to":"64301"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"102046","_from":"60037","_to":"60035"} +{"$label":"ACTS_IN","name":"Dr. Rachel Keyes","type":"Role","_key":"102045","_from":"60036","_to":"60035"} +{"$label":"ACTS_IN","name":"Zooey","type":"Role","_key":"109424","_from":"60036","_to":"64647"} +{"$label":"DIRECTED","_key":"102054","_from":"60043","_to":"60038"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"102053","_from":"60042","_to":"60038"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"102052","_from":"60041","_to":"60038"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"102051","_from":"60040","_to":"60038"} +{"$label":"ACTS_IN","name":"Zak","type":"Role","_key":"102050","_from":"60039","_to":"60038"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"116971","_from":"60041","_to":"68851"} +{"$label":"ACTS_IN","name":"Will Darcy","type":"Role","_key":"114860","_from":"60041","_to":"67659"} +{"$label":"ACTS_IN","name":"George Lass","type":"Role","_key":"102060","_from":"60046","_to":"60045"} +{"$label":"DIRECTED","_key":"102071","_from":"60051","_to":"60047"} +{"$label":"ACTS_IN","name":"Bob (voice)","type":"Role","_key":"102069","_from":"60050","_to":"60047"} +{"$label":"ACTS_IN","name":"Whip (voice)","type":"Role","_key":"102066","_from":"60049","_to":"60047"} +{"$label":"ACTS_IN","name":"T'nuk (voice)","type":"Role","_key":"102065","_from":"60048","_to":"60047"} +{"$label":"DIRECTED","_key":"102072","_from":"60053","_to":"60052"} +{"$label":"ACTS_IN","name":"Circus Wrangler","type":"Role","_key":"102082","_from":"60059","_to":"60054"} +{"$label":"ACTS_IN","name":"BJ (voice)","type":"Role","_key":"102081","_from":"60058","_to":"60054"} +{"$label":"ACTS_IN","name":"Barney (voice)","type":"Role","_key":"102080","_from":"60057","_to":"60054"} +{"$label":"ACTS_IN","name":"Baby Bop (voice)","type":"Role","_key":"102079","_from":"60056","_to":"60054"} +{"$label":"ACTS_IN","name":"Baby Bop","type":"Role","_key":"102078","_from":"60055","_to":"60054"} +{"$label":"DIRECTED","_key":"102089","_from":"60063","_to":"60060"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"102086","_from":"60062","_to":"60060"} +{"$label":"ACTS_IN","name":"Teenage Boy Screamer","type":"Role","_key":"102085","_from":"60061","_to":"60060"} +{"$label":"DIRECTED","_key":"102092","_from":"60065","_to":"60064"} +{"$label":"ACTS_IN","name":"Car Kid #2 (uncredited)","type":"Role","_key":"102131","_from":"60090","_to":"60066"} +{"$label":"ACTS_IN","name":"Walter Wrestler","type":"Role","_key":"102129","_from":"60089","_to":"60066"} +{"$label":"ACTS_IN","name":"Wheelchair Groom","type":"Role","_key":"102128","_from":"60088","_to":"60066"} +{"$label":"ACTS_IN","name":"Fit Woman Bride","type":"Role","_key":"102127","_from":"60087","_to":"60066"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"102126","_from":"60086","_to":"60066"} +{"$label":"ACTS_IN","name":"Grace","type":"Role","_key":"102125","_from":"60085","_to":"60066"} +{"$label":"ACTS_IN","name":"Wrestling Opponent \/ Clay Wrestler","type":"Role","_key":"102124","_from":"60084","_to":"60066"} +{"$label":"ACTS_IN","name":"Referee","type":"Role","_key":"102123","_from":"60083","_to":"60066"} +{"$label":"ACTS_IN","name":"Court Clerk Reilly","type":"Role","_key":"102122","_from":"60082","_to":"60066"} +{"$label":"ACTS_IN","name":"Kid in Car (as Nico Mceown)","type":"Role","_key":"102121","_from":"60081","_to":"60066"} +{"$label":"ACTS_IN","name":"Goth","type":"Role","_key":"102120","_from":"60080","_to":"60066"} +{"$label":"ACTS_IN","name":"Record Man","type":"Role","_key":"102119","_from":"60079","_to":"60066"} +{"$label":"ACTS_IN","name":"Court Clerk","type":"Role","_key":"102118","_from":"60078","_to":"60066"} +{"$label":"ACTS_IN","name":"Reverend","type":"Role","_key":"102117","_from":"60077","_to":"60066"} +{"$label":"ACTS_IN","name":"Singing Bride (as Michelle Hewitt Williams)","type":"Role","_key":"102115","_from":"60076","_to":"60066"} +{"$label":"ACTS_IN","name":"South High Wrestler #1","type":"Role","_key":"102114","_from":"60075","_to":"60066"} +{"$label":"ACTS_IN","name":"Maloni (as Jake Le Doux)","type":"Role","_key":"102111","_from":"60074","_to":"60066"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"102107","_from":"60073","_to":"60066"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"102106","_from":"60072","_to":"60066"} +{"$label":"ACTS_IN","name":"Jose","type":"Role","_key":"102105","_from":"60071","_to":"60066"} +{"$label":"ACTS_IN","name":"Beth","type":"Role","_key":"102104","_from":"60070","_to":"60066"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"102101","_from":"60069","_to":"60066"} +{"$label":"ACTS_IN","name":"Clay","type":"Role","_key":"102097","_from":"60068","_to":"60066"} +{"$label":"DIRECTED","_key":"102093","_from":"60067","_to":"60066"} +{"$label":"ACTS_IN","name":"Tony Links","type":"Role","_key":"116317","_from":"60069","_to":"68473"} +{"$label":"ACTS_IN","name":"Raff","type":"Role","_key":"102135","_from":"60094","_to":"60091"} +{"$label":"ACTS_IN","name":"Keith","type":"Role","_key":"102133","_from":"60093","_to":"60091"} +{"$label":"DIRECTED","_key":"102132","_from":"60092","_to":"60091"} +{"$label":"ACTS_IN","name":"Medical Assistant","type":"Role","_key":"102161","_from":"60120","_to":"60095"} +{"$label":"ACTS_IN","name":"Lowell Parks","type":"Role","_key":"102160","_from":"60119","_to":"60095"} +{"$label":"ACTS_IN","name":"Dr. Stone","type":"Role","_key":"102159","_from":"60118","_to":"60095"} +{"$label":"ACTS_IN","name":"Det. Silberman","type":"Role","_key":"102158","_from":"60117","_to":"60095"} +{"$label":"ACTS_IN","name":"Michael Adams","type":"Role","_key":"102157","_from":"60116","_to":"60095"} +{"$label":"ACTS_IN","name":"Zack","type":"Role","_key":"102156","_from":"60115","_to":"60095"} +{"$label":"ACTS_IN","name":"Peter Billings","type":"Role","_key":"102155","_from":"60114","_to":"60095"} +{"$label":"ACTS_IN","name":"Derek keenin","type":"Role","_key":"102154","_from":"60113","_to":"60095"} +{"$label":"ACTS_IN","name":"Sharon Wilson","type":"Role","_key":"102153","_from":"60112","_to":"60095"} +{"$label":"ACTS_IN","name":"Heche","type":"Role","_key":"102152","_from":"60111","_to":"60095"} +{"$label":"ACTS_IN","name":"Larry Stewart","type":"Role","_key":"102151","_from":"60110","_to":"60095"} +{"$label":"ACTS_IN","name":"Rachel Adams","type":"Role","_key":"102150","_from":"60109","_to":"60095"} +{"$label":"ACTS_IN","name":"Det. Weathersby","type":"Role","_key":"102149","_from":"60108","_to":"60095"} +{"$label":"ACTS_IN","name":"Agent Wright","type":"Role","_key":"102148","_from":"60107","_to":"60095"} +{"$label":"ACTS_IN","name":"Mason Chambers","type":"Role","_key":"102147","_from":"60106","_to":"60095"} +{"$label":"ACTS_IN","name":"Brawny Thug","type":"Role","_key":"102146","_from":"60105","_to":"60095"} +{"$label":"ACTS_IN","name":"Prisoner","type":"Role","_key":"102145","_from":"60104","_to":"60095"} +{"$label":"ACTS_IN","name":"Gen. Kun","type":"Role","_key":"102144","_from":"60103","_to":"60095"} +{"$label":"ACTS_IN","name":"Agent Cochran","type":"Role","_key":"102143","_from":"60102","_to":"60095"} +{"$label":"ACTS_IN","name":"Hospital Receptionist","type":"Role","_key":"102142","_from":"60101","_to":"60095"} +{"$label":"ACTS_IN","name":"Leslie Mills","type":"Role","_key":"102141","_from":"60100","_to":"60095"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"102140","_from":"60099","_to":"60095"} +{"$label":"ACTS_IN","name":"Super Korean Soldier","type":"Role","_key":"102139","_from":"60098","_to":"60095"} +{"$label":"ACTS_IN","name":"Menacing Mercenary","type":"Role","_key":"102138","_from":"60097","_to":"60095"} +{"$label":"DIRECTED","_key":"102137","_from":"60096","_to":"60095"} +{"$label":"ACTS_IN","name":"The Priest","type":"Role","_key":"109309","_from":"60117","_to":"64573"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"102172","_from":"60128","_to":"60121"} +{"$label":"ACTS_IN","name":"Nik","type":"Role","_key":"102171","_from":"60127","_to":"60121"} +{"$label":"ACTS_IN","name":"Daphne","type":"Role","_key":"102170","_from":"60126","_to":"60121"} +{"$label":"ACTS_IN","name":"Keir","type":"Role","_key":"102168","_from":"60125","_to":"60121"} +{"$label":"ACTS_IN","name":"Jaynie Hansen","type":"Role","_key":"102166","_from":"60124","_to":"60121"} +{"$label":"ACTS_IN","name":"Blanca Champion","type":"Role","_key":"102164","_from":"60123","_to":"60121"} +{"$label":"DIRECTED","_key":"102162","_from":"60122","_to":"60121"} +{"$label":"ACTS_IN","name":"Josie","type":"Role","_key":"104286","_from":"60124","_to":"61355"} +{"$label":"ACTS_IN","name":"Pinkus","type":"Role","_key":"102176","_from":"60131","_to":"60129"} +{"$label":"ACTS_IN","name":"Amanda Hayes","type":"Role","_key":"102175","_from":"60130","_to":"60129"} +{"$label":"ACTS_IN","name":"Cowboy","type":"Role","_key":"102193","_from":"60138","_to":"60132"} +{"$label":"ACTS_IN","name":"Cowgirl","type":"Role","_key":"102192","_from":"60137","_to":"60132"} +{"$label":"ACTS_IN","name":"Irene Davey","type":"Role","_key":"102191","_from":"60136","_to":"60132"} +{"$label":"ACTS_IN","name":"Woman at Gas Station","type":"Role","_key":"102190","_from":"60135","_to":"60132"} +{"$label":"ACTS_IN","name":"Uncle Mort","type":"Role","_key":"102189","_from":"60134","_to":"60132"} +{"$label":"ACTS_IN","name":"Deputy Buck","type":"Role","_key":"102188","_from":"60133","_to":"60132"} +{"$label":"ACTS_IN","name":"Funeral attendee","type":"Role","_key":"102202","_from":"60146","_to":"60140"} +{"$label":"ACTS_IN","name":"Alal","type":"Role","_key":"102200","_from":"60145","_to":"60140"} +{"$label":"ACTS_IN","name":"Dr. Miller","type":"Role","_key":"102198","_from":"60144","_to":"60140"} +{"$label":"ACTS_IN","name":"Funeral attendee","type":"Role","_key":"102197","_from":"60143","_to":"60140"} +{"$label":"ACTS_IN","name":"Young Scarlet's mother","type":"Role","_key":"102196","_from":"60142","_to":"60140"} +{"$label":"ACTS_IN","name":"Scarlet","type":"Role","_key":"102195","_from":"60141","_to":"60140"} +{"$label":"ACTS_IN","name":"Olivia Thibodeaux","type":"Role","_key":"110532","_from":"60141","_to":"65312"} +{"$label":"DIRECTED","_key":"102220","_from":"60157","_to":"60147"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"102217","_from":"60156","_to":"60147"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"102215","_from":"60155","_to":"60147"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"102214","_from":"60154","_to":"60147"} +{"$label":"ACTS_IN","name":"Young Gemma","type":"Role","_key":"102213","_from":"60153","_to":"60147"} +{"$label":"ACTS_IN","name":"Angus - 5 Years","type":"Role","_key":"102211","_from":"60152","_to":"60147"} +{"$label":"ACTS_IN","name":"Lachie - 5 Years","type":"Role","_key":"102210","_from":"60151","_to":"60147"} +{"$label":"ACTS_IN","name":"Bull - 5 Years","type":"Role","_key":"102209","_from":"60150","_to":"60147"} +{"$label":"ACTS_IN","name":"Placid Lake","type":"Role","_key":"102206","_from":"60149","_to":"60147"} +{"$label":"ACTS_IN","name":"Young Placid","type":"Role","_key":"102205","_from":"60148","_to":"60147"} +{"$label":"DIRECTED","_key":"102244","_from":"60164","_to":"60160"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"102243","_from":"60163","_to":"60160"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"102242","_from":"60162","_to":"60160"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"102241","_from":"60161","_to":"60160"} +{"$label":"ACTS_IN","name":"Heidi Clements","type":"Role","_key":"102248","_from":"60168","_to":"60165"} +{"$label":"ACTS_IN","name":"Doug Dorsey","type":"Role","_key":"102247","_from":"60167","_to":"60165"} +{"$label":"ACTS_IN","name":"Alex Harrison","type":"Role","_key":"102246","_from":"60166","_to":"60165"} +{"$label":"ACTS_IN","name":"Gabe","type":"Role","_key":"112402","_from":"60166","_to":"66359"} +{"$label":"DIRECTED","_key":"102253","_from":"60170","_to":"60169"} +{"$label":"DIRECTED","_key":"102257","_from":"60172","_to":"60171"} +{"$label":"ACTS_IN","name":"Sgt. Pete Sadler","type":"Role","_key":"102269","_from":"60179","_to":"60175"} +{"$label":"ACTS_IN","name":"Sgt. Tim Cole","type":"Role","_key":"102268","_from":"60178","_to":"60175"} +{"$label":"ACTS_IN","name":"Chief Warrant Officer Wally Hamer","type":"Role","_key":"102265","_from":"60177","_to":"60175"} +{"$label":"ACTS_IN","name":"Benjamin Keynes","type":"Role","_key":"102264","_from":"60176","_to":"60175"} +{"$label":"ACTS_IN","name":"Wooden Boy Friend","type":"Role","_key":"102291","_from":"60191","_to":"60182"} +{"$label":"ACTS_IN","name":"Preacher","type":"Role","_key":"102289","_from":"60190","_to":"60182"} +{"$label":"ACTS_IN","name":"Wooden's Boy","type":"Role","_key":"102286","_from":"60189","_to":"60182"} +{"$label":"ACTS_IN","name":"Tuckdriver","type":"Role","_key":"102285","_from":"60188","_to":"60182"} +{"$label":"ACTS_IN","name":"Elvis Presley","type":"Role","_key":"102284","_from":"60187","_to":"60182"} +{"$label":"ACTS_IN","name":"Buddy","type":"Role","_key":"102280","_from":"60186","_to":"60182"} +{"$label":"ACTS_IN","name":"Grasshopper","type":"Role","_key":"102279","_from":"60185","_to":"60182"} +{"$label":"ACTS_IN","name":"Boy 3","type":"Role","_key":"102278","_from":"60184","_to":"60182"} +{"$label":"DIRECTED","_key":"102276","_from":"60183","_to":"60182"} +{"$label":"ACTS_IN","name":"Lana Lewis","type":"Role","_key":"109689","_from":"60190","_to":"64782"} +{"$label":"DIRECTED","_key":"102306","_from":"60198","_to":"60192"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"102304","_from":"60197","_to":"60192"} +{"$label":"ACTS_IN","name":"Marco","type":"Role","_key":"102303","_from":"60196","_to":"60192"} +{"$label":"ACTS_IN","name":"Nick Hudson","type":"Role","_key":"102302","_from":"60195","_to":"60192"} +{"$label":"ACTS_IN","name":"Jessie","type":"Role","_key":"102301","_from":"60194","_to":"60192"} +{"$label":"ACTS_IN","name":"Cheyenne","type":"Role","_key":"102300","_from":"60193","_to":"60192"} +{"$label":"ACTS_IN","name":"Elizabeth Bennet","type":"Role","_key":"114861","_from":"60194","_to":"67659"} +{"$label":"ACTS_IN","name":"Paige Morgan","type":"Role","_key":"105098","_from":"60194","_to":"61857"} +{"$label":"DIRECTED","_key":"102316","_from":"60200","_to":"60199"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"102327","_from":"60205","_to":"60201"} +{"$label":"ACTS_IN","name":"Henry","type":"Role","_key":"102326","_from":"60204","_to":"60201"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"102323","_from":"60203","_to":"60201"} +{"$label":"ACTS_IN","name":"GM1 'Mule' Mulhall","type":"Role","_key":"102318","_from":"60202","_to":"60201"} +{"$label":"ACTS_IN","name":"Dan Joyce","type":"Role","_key":"102333","_from":"60213","_to":"60209"} +{"$label":"ACTS_IN","name":"Pancho","type":"Role","_key":"102332","_from":"60212","_to":"60209"} +{"$label":"ACTS_IN","name":"Matthew Pritchard","type":"Role","_key":"102331","_from":"60211","_to":"60209"} +{"$label":"ACTS_IN","name":"Lee Dainton","type":"Role","_key":"102330","_from":"60210","_to":"60209"} +{"$label":"DIRECTED","_key":"102343","_from":"60215","_to":"60214"} +{"$label":"DIRECTED","_key":"102347","_from":"60218","_to":"60216"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"102346","_from":"60217","_to":"60216"} +{"$label":"DIRECTED","_key":"119625","_from":"60218","_to":"70264"} +{"$label":"ACTS_IN","name":"Adoption Lady","type":"Role","_key":"118066","_from":"60218","_to":"69393"} +{"$label":"DIRECTED","_key":"102348","_from":"60220","_to":"60219"} +{"$label":"DIRECTED","_key":"102353","_from":"60226","_to":"60221"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"102352","_from":"60225","_to":"60221"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"102351","_from":"60224","_to":"60221"} +{"$label":"ACTS_IN","name":"Bente","type":"Role","_key":"102350","_from":"60223","_to":"60221"} +{"$label":"ACTS_IN","name":"Josephine","type":"Role","_key":"102349","_from":"60222","_to":"60221"} +{"$label":"ACTS_IN","name":"Tilde","type":"Role","_key":"102359","_from":"60231","_to":"60227"} +{"$label":"ACTS_IN","name":"Asger","type":"Role","_key":"102358","_from":"60230","_to":"60227"} +{"$label":"ACTS_IN","name":"Hossein","type":"Role","_key":"102357","_from":"60229","_to":"60227"} +{"$label":"ACTS_IN","name":"Allan","type":"Role","_key":"102355","_from":"60228","_to":"60227"} +{"$label":"ACTS_IN","name":"Scarlett","type":"Role","_key":"109705","_from":"60231","_to":"64790"} +{"$label":"ACTS_IN","name":"Mette-Inge","type":"Role","_key":"106483","_from":"60231","_to":"62733"} +{"$label":"ACTS_IN","name":"Mette","type":"Role","_key":"102364","_from":"60233","_to":"60232"} +{"$label":"ACTS_IN","name":"Birgitte","type":"Role","_key":"119598","_from":"60233","_to":"70250"} +{"$label":"ACTS_IN","name":"Lisbeth","type":"Role","_key":"106085","_from":"60233","_to":"62469"} +{"$label":"DIRECTED","_key":"102385","_from":"60248","_to":"60234"} +{"$label":"ACTS_IN","name":"Eddie's Father","type":"Role","_key":"102384","_from":"60247","_to":"60234"} +{"$label":"ACTS_IN","name":"Eddie's Mother","type":"Role","_key":"102383","_from":"60246","_to":"60234"} +{"$label":"ACTS_IN","name":"Kate","type":"Role","_key":"102382","_from":"60245","_to":"60234"} +{"$label":"ACTS_IN","name":"Old Man Williamson","type":"Role","_key":"102381","_from":"60244","_to":"60234"} +{"$label":"ACTS_IN","name":"Record Shop Assistant","type":"Role","_key":"102379","_from":"60243","_to":"60234"} +{"$label":"ACTS_IN","name":"Young Eddie's Father","type":"Role","_key":"102378","_from":"60242","_to":"60234"} +{"$label":"ACTS_IN","name":"Amanda's Mother","type":"Role","_key":"102377","_from":"60241","_to":"60234"} +{"$label":"ACTS_IN","name":"Young Amanda","type":"Role","_key":"102375","_from":"60240","_to":"60234"} +{"$label":"ACTS_IN","name":"Young Eddie Harnovey","type":"Role","_key":"102374","_from":"60239","_to":"60234"} +{"$label":"ACTS_IN","name":"Abby Harnovey","type":"Role","_key":"102373","_from":"60238","_to":"60234"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"102371","_from":"60237","_to":"60234"} +{"$label":"ACTS_IN","name":"Chamberlain","type":"Role","_key":"102370","_from":"60236","_to":"60234"} +{"$label":"ACTS_IN","name":"Tiny","type":"Role","_key":"102369","_from":"60235","_to":"60234"} +{"$label":"ACTS_IN","name":"Raymond Yale","type":"Role","_key":"106283","_from":"60237","_to":"62608"} +{"$label":"ACTS_IN","name":"Dr. Benjamin Franklin","type":"Role","_key":"102389","_from":"60252","_to":"60250"} +{"$label":"DIRECTED","_key":"102387","_from":"60251","_to":"60250"} +{"$label":"ACTS_IN","name":"Sandor","type":"Role","_key":"120001","_from":"60252","_to":"70472"} +{"$label":"ACTS_IN","name":"Eddie Harwood","type":"Role","_key":"107016","_from":"60252","_to":"63091"} +{"$label":"ACTS_IN","name":"Christopher Robin (singing voice)","type":"Role","_key":"102400","_from":"60258","_to":"60253"} +{"$label":"ACTS_IN","name":"Tigger (voice)","type":"Role","_key":"102399","_from":"60257","_to":"60253"} +{"$label":"ACTS_IN","name":"Christopher Robin (voice)","type":"Role","_key":"102397","_from":"60256","_to":"60253"} +{"$label":"ACTS_IN","name":"Owl (voice)","type":"Role","_key":"102395","_from":"60255","_to":"60253"} +{"$label":"DIRECTED","_key":"102391","_from":"60254","_to":"60253"} +{"$label":"ACTS_IN","name":"Owl (voice)","type":"Role","_key":"105321","_from":"60255","_to":"61972"} +{"$label":"ACTS_IN","name":"Joung Martin","type":"Role","_key":"102405","_from":"60261","_to":"60259"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"102403","_from":"60260","_to":"60259"} +{"$label":"ACTS_IN","name":"Emira's Uncle","type":"Role","_key":"102422","_from":"60269","_to":"60262"} +{"$label":"ACTS_IN","name":"Dragan","type":"Role","_key":"102421","_from":"60268","_to":"60262"} +{"$label":"ACTS_IN","name":"Munira","type":"Role","_key":"102420","_from":"60267","_to":"60262"} +{"$label":"ACTS_IN","name":"Zeljko","type":"Role","_key":"102419","_from":"60266","_to":"60262"} +{"$label":"ACTS_IN","name":"Mrs. Savic","type":"Role","_key":"102417","_from":"60265","_to":"60262"} +{"$label":"ACTS_IN","name":"Jacket","type":"Role","_key":"102416","_from":"60264","_to":"60262"} +{"$label":"ACTS_IN","name":"Emira","type":"Role","_key":"102411","_from":"60263","_to":"60262"} +{"$label":"DIRECTED","_key":"102426","_from":"60273","_to":"60271"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"102425","_from":"60272","_to":"60271"} +{"$label":"ACTS_IN","name":"Dr. Jessica Ryan","type":"Role","_key":"102447","_from":"60272","_to":"60286"} +{"$label":"ACTS_IN","name":"Jeffrey","type":"Role","_key":"102437","_from":"60278","_to":"60275"} +{"$label":"ACTS_IN","name":"Mio","type":"Role","_key":"102436","_from":"60277","_to":"60275"} +{"$label":"DIRECTED","_key":"102435","_from":"60276","_to":"60275"} +{"$label":"DIRECTED","_key":"102446","_from":"60285","_to":"60280"} +{"$label":"ACTS_IN","name":"Ryan Lambert","type":"Role","_key":"102445","_from":"60284","_to":"60280"} +{"$label":"ACTS_IN","name":"Spencer","type":"Role","_key":"102444","_from":"60283","_to":"60280"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"102443","_from":"60282","_to":"60280"} +{"$label":"ACTS_IN","name":"Katie Powers","type":"Role","_key":"102442","_from":"60281","_to":"60280"} +{"$label":"DIRECTED","_key":"102452","_from":"60288","_to":"60287"} +{"$label":"DIRECTED","_key":"102461","_from":"60292","_to":"60289"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"102457","_from":"60291","_to":"60289"} +{"$label":"ACTS_IN","name":"Tall Man","type":"Role","_key":"102454","_from":"60290","_to":"60289"} +{"$label":"DIRECTED","_key":"102466","_from":"60296","_to":"60293"} +{"$label":"ACTS_IN","name":"Mera","type":"Role","_key":"102465","_from":"60295","_to":"60293"} +{"$label":"ACTS_IN","name":"Koreman","type":"Role","_key":"102464","_from":"60294","_to":"60293"} +{"$label":"ACTS_IN","name":"Commissioner Jim Gordon","type":"Role","_key":"102475","_from":"60298","_to":"60297"} +{"$label":"ACTS_IN","name":"Commissioner Jim Gordon","type":"Role","_key":"111025","_from":"60298","_to":"65577"} +{"$label":"ACTS_IN","name":"Commissioner James 'Jim' Gordon","type":"Role","_key":"105982","_from":"60298","_to":"62398"} +{"$label":"DIRECTED","_key":"102488","_from":"60302","_to":"60299"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"102487","_from":"60301","_to":"60299"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"102484","_from":"60300","_to":"60299"} +{"$label":"ACTS_IN","name":"Prime Minister Benjamin Disraeli","type":"Role","_key":"113267","_from":"60300","_to":"66730"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"102500","_from":"60308","_to":"60305"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"102497","_from":"60307","_to":"60305"} +{"$label":"ACTS_IN","name":"Phoebe","type":"Role","_key":"102496","_from":"60306","_to":"60305"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"102512","_from":"60311","_to":"60309"} +{"$label":"ACTS_IN","name":"Neal","type":"Role","_key":"102509","_from":"60310","_to":"60309"} +{"$label":"ACTS_IN","name":"Tony Fingleton","type":"Role","_key":"104570","_from":"60310","_to":"61509"} +{"$label":"ACTS_IN","name":"Noemi","type":"Role","_key":"102513","_from":"60314","_to":"60313"} +{"$label":"DIRECTED","_key":"102518","_from":"60317","_to":"60316"} +{"$label":"ACTS_IN","name":"Mourning Hare Krishna","type":"Role","_key":"102528","_from":"60323","_to":"60318"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"102525","_from":"60322","_to":"60318"} +{"$label":"ACTS_IN","name":"Krishna Ravindra at Miami Airport","type":"Role","_key":"102524","_from":"60321","_to":"60318"} +{"$label":"ACTS_IN","name":"Little Boy at Miami Airprt","type":"Role","_key":"102523","_from":"60320","_to":"60318"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"102522","_from":"60319","_to":"60318"} +{"$label":"ACTS_IN","name":"Dougie","type":"Role","_key":"102536","_from":"60326","_to":"60324"} +{"$label":"ACTS_IN","name":"Felicity","type":"Role","_key":"102535","_from":"60325","_to":"60324"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"102550","_from":"60335","_to":"60327"} +{"$label":"ACTS_IN","name":"Capt. Midnight","type":"Role","_key":"102547","_from":"60334","_to":"60327"} +{"$label":"ACTS_IN","name":"Stinkfinger","type":"Role","_key":"102546","_from":"60333","_to":"60327"} +{"$label":"ACTS_IN","name":"Septic","type":"Role","_key":"102545","_from":"60332","_to":"60327"} +{"$label":"ACTS_IN","name":"Hooks","type":"Role","_key":"102543","_from":"60331","_to":"60327"} +{"$label":"ACTS_IN","name":"Dr. Townes","type":"Role","_key":"102541","_from":"60330","_to":"60327"} +{"$label":"ACTS_IN","name":"Undertaker","type":"Role","_key":"102540","_from":"60328","_to":"60327"} +{"$label":"ACTS_IN","name":"Stone","type":"Role","_key":"102539","_from":"60329","_to":"60327"} +{"$label":"DIRECTED","_key":"102538","_from":"60328","_to":"60327"} +{"$label":"DIRECTED","_key":"102559","_from":"60338","_to":"60337"} +{"$label":"ACTS_IN","name":"June McAllister","type":"Role","_key":"102564","_from":"60341","_to":"60339"} +{"$label":"ACTS_IN","name":"Brendan Dean","type":"Role","_key":"102561","_from":"60340","_to":"60339"} +{"$label":"ACTS_IN","name":"Jeff Reed","type":"Role","_key":"116086","_from":"60340","_to":"68357"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102567","_from":"60343","_to":"60342"} +{"$label":"ACTS_IN","name":"Zerui (voice)","type":"Role","_key":"102582","_from":"60355","_to":"60344"} +{"$label":"ACTS_IN","name":"Berui (voice)","type":"Role","_key":"102581","_from":"60354","_to":"60344"} +{"$label":"ACTS_IN","name":"Jessica (voice)","type":"Role","_key":"102580","_from":"60353","_to":"60344"} +{"$label":"ACTS_IN","name":"Minka (voice)","type":"Role","_key":"102579","_from":"60352","_to":"60344"} +{"$label":"ACTS_IN","name":"Agashi (voice)","type":"Role","_key":"102578","_from":"60351","_to":"60344"} +{"$label":"ACTS_IN","name":"Hajan (voice)","type":"Role","_key":"102576","_from":"60350","_to":"60344"} +{"$label":"ACTS_IN","name":"Cain (voice)","type":"Role","_key":"102575","_from":"60349","_to":"60344"} +{"$label":"ACTS_IN","name":"Yolda (voice)","type":"Role","_key":"102574","_from":"60348","_to":"60344"} +{"$label":"ACTS_IN","name":"Toola (voice)","type":"Role","_key":"102573","_from":"60347","_to":"60344"} +{"$label":"ACTS_IN","name":"Agito (voice)","type":"Role","_key":"102572","_from":"60346","_to":"60344"} +{"$label":"DIRECTED","_key":"102571","_from":"60345","_to":"60344"} +{"$label":"ACTS_IN","name":"Terawaki Shioske","type":"Role","_key":"109793","_from":"60346","_to":"64849"} +{"$label":"ACTS_IN","name":"Brave Pilot \/ Uncle Soondead \/ Fighter \/ Thumb Council Member (voice)","type":"Role","_key":"102590","_from":"60362","_to":"60357"} +{"$label":"ACTS_IN","name":"Commander Cuticle \/ Annoying Pilot \/ Effeminate Thumb \/ Instructor (voice)","type":"Role","_key":"102589","_from":"60361","_to":"60357"} +{"$label":"ACTS_IN","name":"Crunchy \/ Lieutenant (voice)","type":"Role","_key":"102587","_from":"60360","_to":"60357"} +{"$label":"ACTS_IN","name":"Hand Duet (voice) (as Ross Schaefer)","type":"Role","_key":"102585","_from":"60359","_to":"60357"} +{"$label":"ACTS_IN","name":"Princess Bunhead","type":"Role","_key":"102584","_from":"60358","_to":"60357"} +{"$label":"ACTS_IN","name":"Jish","type":"Role","_key":"116065","_from":"60360","_to":"68351"} +{"$label":"ACTS_IN","name":"Smith","type":"Role","_key":"102603","_from":"60370","_to":"60364"} +{"$label":"ACTS_IN","name":"Seo Taek-ki (North)","type":"Role","_key":"102602","_from":"60369","_to":"60364"} +{"$label":"ACTS_IN","name":"Army Medic Mun Sang-sang (South)","type":"Role","_key":"102601","_from":"60368","_to":"60364"} +{"$label":"ACTS_IN","name":"Jang Young-hee (North)","type":"Role","_key":"102600","_from":"60367","_to":"60364"} +{"$label":"ACTS_IN","name":"Chief Comrade Lee Su-Hwa","type":"Role","_key":"102598","_from":"60366","_to":"60364"} +{"$label":"DIRECTED","_key":"102597","_from":"60365","_to":"60364"} +{"$label":"ACTS_IN","name":"Seol-joo","type":"Role","_key":"117739","_from":"60366","_to":"69213"} +{"$label":"ACTS_IN","name":"Mr. Kim","type":"Role","_key":"116186","_from":"60366","_to":"68407"} +{"$label":"DIRECTED","_key":"102609","_from":"60373","_to":"60371"} +{"$label":"ACTS_IN","name":"Covington","type":"Role","_key":"102607","_from":"60372","_to":"60371"} +{"$label":"ACTS_IN","name":"Arab Woman","type":"Role","_key":"102621","_from":"60379","_to":"60376"} +{"$label":"ACTS_IN","name":"Chard Davies","type":"Role","_key":"102618","_from":"60378","_to":"60376"} +{"$label":"DIRECTED","_key":"102613","_from":"60377","_to":"60376"} +{"$label":"DIRECTED","_key":"102622","_from":"60381","_to":"60380"} +{"$label":"ACTS_IN","name":"Donley","type":"Role","_key":"102631","_from":"60384","_to":"60382"} +{"$label":"ACTS_IN","name":"Sudimack","type":"Role","_key":"102629","_from":"60383","_to":"60382"} +{"$label":"DIRECTED","_key":"102645","_from":"60390","_to":"60386"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102644","_from":"60389","_to":"60386"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102643","_from":"60388","_to":"60386"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102642","_from":"60387","_to":"60386"} +{"$label":"ACTS_IN","name":"Bobby Shaw","type":"Role","_key":"102648","_from":"60395","_to":"60392"} +{"$label":"ACTS_IN","name":"Naked Dead Girl","type":"Role","_key":"102647","_from":"60394","_to":"60392"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"102646","_from":"60393","_to":"60392"} +{"$label":"ACTS_IN","name":"Zen","type":"Role","_key":"102651","_from":"60398","_to":"60396"} +{"$label":"ACTS_IN","name":"Zin","type":"Role","_key":"102650","_from":"60397","_to":"60396"} +{"$label":"ACTS_IN","name":"Scream Queen","type":"Role","_key":"102674","_from":"60409","_to":"60399"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102672","_from":"60408","_to":"60399"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102669","_from":"60407","_to":"60399"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102667","_from":"60406","_to":"60399"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102664","_from":"60405","_to":"60399"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102660","_from":"60404","_to":"60399"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102659","_from":"60403","_to":"60399"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"102658","_from":"60402","_to":"60399"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"102655","_from":"60401","_to":"60399"} +{"$label":"DIRECTED","_key":"102653","_from":"60400","_to":"60399"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"102675","_from":"60411","_to":"60410"} +{"$label":"ACTS_IN","name":"Laura Danner","type":"Role","_key":"102690","_from":"60414","_to":"60412"} +{"$label":"ACTS_IN","name":"Davey Danner","type":"Role","_key":"102687","_from":"60413","_to":"60412"} +{"$label":"ACTS_IN","name":"Sheldrake","type":"Role","_key":"102698","_from":"60420","_to":"60415"} +{"$label":"ACTS_IN","name":"Mr. Ackroyd","type":"Role","_key":"102697","_from":"60419","_to":"60415"} +{"$label":"ACTS_IN","name":"Rose Ackroyd","type":"Role","_key":"102696","_from":"60418","_to":"60415"} +{"$label":"ACTS_IN","name":"Nora - The Girl","type":"Role","_key":"102692","_from":"60417","_to":"60415"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"102691","_from":"60416","_to":"60415"} +{"$label":"ACTS_IN","name":"Bunny","type":"Role","_key":"102731","_from":"60437","_to":"60425"} +{"$label":"ACTS_IN","name":"Mrs. Malaga","type":"Role","_key":"102730","_from":"60436","_to":"60425"} +{"$label":"ACTS_IN","name":"Mr. Parker","type":"Role","_key":"102729","_from":"60435","_to":"60425"} +{"$label":"ACTS_IN","name":"Father Ndlovu","type":"Role","_key":"102728","_from":"60434","_to":"60425"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"102727","_from":"60433","_to":"60425"} +{"$label":"ACTS_IN","name":"Taj","type":"Role","_key":"102725","_from":"60432","_to":"60425"} +{"$label":"ACTS_IN","name":"Tobias","type":"Role","_key":"102724","_from":"60431","_to":"60425"} +{"$label":"ACTS_IN","name":"Regina","type":"Role","_key":"102723","_from":"60430","_to":"60425"} +{"$label":"ACTS_IN","name":"Dozen","type":"Role","_key":"102722","_from":"60429","_to":"60425"} +{"$label":"ACTS_IN","name":"Sir Giffard Hardwick","type":"Role","_key":"102721","_from":"60428","_to":"60425"} +{"$label":"ACTS_IN","name":"Dr. Zim Mzimba","type":"Role","_key":"102719","_from":"60427","_to":"60425"} +{"$label":"ACTS_IN","name":"Ralph Compton - 11 years","type":"Role","_key":"102716","_from":"60426","_to":"60425"} +{"$label":"ACTS_IN","name":"Zulu","type":"Role","_key":"109154","_from":"60427","_to":"64487"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"102739","_from":"60441","_to":"60440"} +{"$label":"DIRECTED","_key":"102747","_from":"60443","_to":"60442"} +{"$label":"DIRECTED","_key":"102763","_from":"60459","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102762","_from":"60458","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102761","_from":"60457","_to":"60444"} +{"$label":"ACTS_IN","name":"Young Madeleine","type":"Role","_key":"102760","_from":"60456","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102759","_from":"60455","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102758","_from":"60454","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102757","_from":"60453","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102756","_from":"60452","_to":"60444"} +{"$label":"ACTS_IN","name":"Mother's Friend","type":"Role","_key":"102755","_from":"60451","_to":"60444"} +{"$label":"ACTS_IN","name":"Woman in village","type":"Role","_key":"102754","_from":"60450","_to":"60444"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"102753","_from":"60449","_to":"60444"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"102752","_from":"60448","_to":"60444"} +{"$label":"ACTS_IN","name":"Lip-stick lesbian","type":"Role","_key":"102750","_from":"60447","_to":"60444"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"102749","_from":"60446","_to":"60444"} +{"$label":"ACTS_IN","name":"Frigga \/ Madeleine \/ One Eye","type":"Role","_key":"102748","_from":"60445","_to":"60444"} +{"$label":"ACTS_IN","name":"Delivery Boy","type":"Role","_key":"102779","_from":"60463","_to":"60460"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"102772","_from":"60462","_to":"60460"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"102770","_from":"60461","_to":"60460"} +{"$label":"ACTS_IN","name":"Tooth","type":"Role","_key":"111722","_from":"60462","_to":"65952"} +{"$label":"ACTS_IN","name":"Flipper","type":"Role","_key":"102789","_from":"60468","_to":"60464"} +{"$label":"ACTS_IN","name":"Uncle Joe","type":"Role","_key":"102786","_from":"60467","_to":"60464"} +{"$label":"ACTS_IN","name":"Keith Rose","type":"Role","_key":"102784","_from":"60466","_to":"60464"} +{"$label":"ACTS_IN","name":"Ossie Paris","type":"Role","_key":"102783","_from":"60465","_to":"60464"} +{"$label":"ACTS_IN","name":"NORRIS JOHNS","type":"Role","_key":"110346","_from":"60468","_to":"65202"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"102797","_from":"60474","_to":"60471"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"102796","_from":"60473","_to":"60471"} +{"$label":"DIRECTED","_key":"102795","_from":"60472","_to":"60471"} +{"$label":"ACTS_IN","name":"Quinton","type":"Role","_key":"102825","_from":"60485","_to":"60477"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"102824","_from":"60484","_to":"60477"} +{"$label":"ACTS_IN","name":"Aikido Instructor's Assistant","type":"Role","_key":"102821","_from":"60483","_to":"60477"} +{"$label":"ACTS_IN","name":"Ms. Jenson","type":"Role","_key":"102820","_from":"60482","_to":"60477"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"102818","_from":"60481","_to":"60477"} +{"$label":"ACTS_IN","name":"Weber","type":"Role","_key":"102817","_from":"60480","_to":"60477"} +{"$label":"ACTS_IN","name":"Dr. Tetsu Segawa","type":"Role","_key":"102813","_from":"60479","_to":"60477"} +{"$label":"ACTS_IN","name":"Sean Barker \/ The Guyver","type":"Role","_key":"102812","_from":"60478","_to":"60477"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"102835","_from":"60488","_to":"60486"} +{"$label":"ACTS_IN","name":"Kelly Gibbs","type":"Role","_key":"102834","_from":"60487","_to":"60486"} +{"$label":"DIRECTED","_key":"102837","_from":"60492","_to":"60490"} +{"$label":"DIRECTED","_key":"102836","_from":"60491","_to":"60490"} +{"$label":"DIRECTED","_key":"102839","_from":"60495","_to":"60493"} +{"$label":"ACTS_IN","name":"Derrick King","type":"Role","_key":"102838","_from":"60494","_to":"60493"} +{"$label":"DIRECTED","_key":"107096","_from":"60495","_to":"63144"} +{"$label":"DIRECTED","_key":"102840","_from":"60497","_to":"60496"} +{"$label":"ACTS_IN","name":"Jeanne Bignon","type":"Role","_key":"102847","_from":"60503","_to":"60498"} +{"$label":"ACTS_IN","name":"Philippe Gatin","type":"Role","_key":"102846","_from":"60502","_to":"60498"} +{"$label":"ACTS_IN","name":"Maeva Capucin","type":"Role","_key":"102844","_from":"60501","_to":"60498"} +{"$label":"ACTS_IN","name":"Jean-Claude Convenant","type":"Role","_key":"102843","_from":"60500","_to":"60498"} +{"$label":"ACTS_IN","name":"Herv\u00e9 Dumont","type":"Role","_key":"102842","_from":"60499","_to":"60498"} +{"$label":"ACTS_IN","name":"Herv\u00e9 Dumont","type":"Role","_key":"117656","_from":"60499","_to":"69160"} +{"$label":"ACTS_IN","name":"Jean-Claude Convenant","type":"Role","_key":"117657","_from":"60500","_to":"69160"} +{"$label":"ACTS_IN","name":"Ma\u00eft\u00e9","type":"Role","_key":"103335","_from":"60501","_to":"60786"} +{"$label":"ACTS_IN","name":"Nekron","type":"Role","_key":"102852","_from":"60508","_to":"60504"} +{"$label":"ACTS_IN","name":"Darkwolf","type":"Role","_key":"102851","_from":"60507","_to":"60504"} +{"$label":"ACTS_IN","name":"Teegra","type":"Role","_key":"102850","_from":"60506","_to":"60504"} +{"$label":"ACTS_IN","name":"Larn","type":"Role","_key":"102849","_from":"60505","_to":"60504"} +{"$label":"ACTS_IN","name":"1st Cyclist (Stanley)","type":"Role","_key":"118078","_from":"60507","_to":"69396"} +{"$label":"DIRECTED","_key":"102872","_from":"60512","_to":"60510"} +{"$label":"DIRECTED","_key":"102871","_from":"60511","_to":"60510"} +{"$label":"DIRECTED","_key":"102883","_from":"60519","_to":"60513"} +{"$label":"ACTS_IN","name":"Tagart","type":"Role","_key":"102881","_from":"60518","_to":"60513"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"102878","_from":"60517","_to":"60513"} +{"$label":"ACTS_IN","name":"Amelia","type":"Role","_key":"102877","_from":"60516","_to":"60513"} +{"$label":"ACTS_IN","name":"Morgan","type":"Role","_key":"102876","_from":"60515","_to":"60513"} +{"$label":"ACTS_IN","name":"Dorothy","type":"Role","_key":"102875","_from":"60514","_to":"60513"} +{"$label":"ACTS_IN","name":"Elias Ransom","type":"Role","_key":"115907","_from":"60515","_to":"68234"} +{"$label":"ACTS_IN","name":"Green Willie","type":"Role","_key":"102891","_from":"60526","_to":"60520"} +{"$label":"ACTS_IN","name":"The Chief","type":"Role","_key":"102889","_from":"60525","_to":"60520"} +{"$label":"ACTS_IN","name":"Lil Poot","type":"Role","_key":"102887","_from":"60524","_to":"60520"} +{"$label":"ACTS_IN","name":"Sugar Bear","type":"Role","_key":"102886","_from":"60523","_to":"60520"} +{"$label":"ACTS_IN","name":"Big Baby Sweets","type":"Role","_key":"102885","_from":"60522","_to":"60520"} +{"$label":"DIRECTED","_key":"102884","_from":"60521","_to":"60520"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117223","_from":"60525","_to":"68955"} +{"$label":"ACTS_IN","name":"Bikini Teen","type":"Role","_key":"102894","_from":"60528","_to":"60527"} +{"$label":"ACTS_IN","name":"Mrs. Orlando","type":"Role","_key":"102907","_from":"60538","_to":"60529"} +{"$label":"ACTS_IN","name":"Miss Lattimore","type":"Role","_key":"102906","_from":"60537","_to":"60529"} +{"$label":"ACTS_IN","name":"Miss Belmont","type":"Role","_key":"102904","_from":"60536","_to":"60529"} +{"$label":"ACTS_IN","name":"Harley Yurken","type":"Role","_key":"102903","_from":"60535","_to":"60529"} +{"$label":"ACTS_IN","name":"Jedda Yurken","type":"Role","_key":"102902","_from":"60534","_to":"60529"} +{"$label":"ACTS_IN","name":"Valjoy Yurken","type":"Role","_key":"102901","_from":"60533","_to":"60529"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"102899","_from":"60532","_to":"60529"} +{"$label":"ACTS_IN","name":"Alison Ashley","type":"Role","_key":"102898","_from":"60531","_to":"60529"} +{"$label":"ACTS_IN","name":"Erica Yurken","type":"Role","_key":"102897","_from":"60530","_to":"60529"} +{"$label":"ACTS_IN","name":"Vanya","type":"Role","_key":"116769","_from":"60530","_to":"68740"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"102910","_from":"60540","_to":"60539"} +{"$label":"DIRECTED","_key":"102920","_from":"60544","_to":"60541"} +{"$label":"ACTS_IN","name":"Hans Einstein","type":"Role","_key":"102918","_from":"60543","_to":"60541"} +{"$label":"ACTS_IN","name":"Eduard Einstein","type":"Role","_key":"102917","_from":"60542","_to":"60541"} +{"$label":"ACTS_IN","name":"Reggie","type":"Role","_key":"102929","_from":"60549","_to":"60545"} +{"$label":"ACTS_IN","name":"Dumb Donald","type":"Role","_key":"102927","_from":"60548","_to":"60545"} +{"$label":"ACTS_IN","name":"Old Weird Harold","type":"Role","_key":"102926","_from":"60547","_to":"60545"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"102922","_from":"60546","_to":"60545"} +{"$label":"ACTS_IN","name":"Marques Houston","type":"Role","_key":"107094","_from":"60548","_to":"63144"} +{"$label":"ACTS_IN","name":"Ross Vegas","type":"Role","_key":"102935","_from":"60552","_to":"60550"} +{"$label":"DIRECTED","_key":"102934","_from":"60551","_to":"60550"} +{"$label":"ACTS_IN","name":"Liraz","type":"Role","_key":"102940","_from":"60555","_to":"60553"} +{"$label":"DIRECTED","_key":"102939","_from":"60554","_to":"60553"} +{"$label":"ACTS_IN","name":"Journaliste","type":"Role","_key":"102942","_from":"60557","_to":"60556"} +{"$label":"DIRECTED","_key":"102964","_from":"60563","_to":"60559"} +{"$label":"ACTS_IN","name":"Rachel Madison","type":"Role","_key":"102963","_from":"60562","_to":"60559"} +{"$label":"ACTS_IN","name":"Gregor","type":"Role","_key":"102962","_from":"60561","_to":"60559"} +{"$label":"ACTS_IN","name":"Dr. Stevens","type":"Role","_key":"102961","_from":"60560","_to":"60559"} +{"$label":"DIRECTED","_key":"102975","_from":"60573","_to":"60566"} +{"$label":"DIRECTED","_key":"102974","_from":"60572","_to":"60566"} +{"$label":"ACTS_IN","name":"Leo","type":"Role","_key":"102973","_from":"60571","_to":"60566"} +{"$label":"ACTS_IN","name":"Josh Werlitt","type":"Role","_key":"102972","_from":"60570","_to":"60566"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"102971","_from":"60569","_to":"60566"} +{"$label":"ACTS_IN","name":"Sarah Kane","type":"Role","_key":"102970","_from":"60568","_to":"60566"} +{"$label":"ACTS_IN","name":"Daniel Bennett","type":"Role","_key":"102969","_from":"60567","_to":"60566"} +{"$label":"DIRECTED","_key":"102985","_from":"60578","_to":"60576"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"102983","_from":"60577","_to":"60576"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"103001","_from":"60585","_to":"60579"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"103000","_from":"60584","_to":"60579"} +{"$label":"ACTS_IN","name":"Old Colonial Man","type":"Role","_key":"102999","_from":"60583","_to":"60579"} +{"$label":"ACTS_IN","name":"Wangi","type":"Role","_key":"102998","_from":"60582","_to":"60579"} +{"$label":"ACTS_IN","name":"Mixed Race Girl","type":"Role","_key":"102997","_from":"60581","_to":"60579"} +{"$label":"ACTS_IN","name":"Nic, aged 5","type":"Role","_key":"102996","_from":"60580","_to":"60579"} +{"$label":"DIRECTED","_key":"103016","_from":"60595","_to":"60587"} +{"$label":"ACTS_IN","name":"orchestral performance (to be credited individually)","type":"Role","_key":"103015","_from":"60594","_to":"60587"} +{"$label":"ACTS_IN","name":"Conductor, Atlanta Symphony Youth Orchestra","type":"Role","_key":"103014","_from":"60593","_to":"60587"} +{"$label":"ACTS_IN","name":"drums, percussion","type":"Role","_key":"103013","_from":"60592","_to":"60587"} +{"$label":"ACTS_IN","name":"lead guitar","type":"Role","_key":"103012","_from":"60591","_to":"60587"} +{"$label":"ACTS_IN","name":"bass, vocals","type":"Role","_key":"103011","_from":"60590","_to":"60587"} +{"$label":"ACTS_IN","name":"rhythm guitar, keyboards","type":"Role","_key":"103010","_from":"60589","_to":"60587"} +{"$label":"ACTS_IN","name":"vocals, rhythm guitar","type":"Role","_key":"103009","_from":"60588","_to":"60587"} +{"$label":"DIRECTED","_key":"116288","_from":"60595","_to":"68460"} +{"$label":"DIRECTED","_key":"103024","_from":"60604","_to":"60596"} +{"$label":"DIRECTED","_key":"103023","_from":"60603","_to":"60596"} +{"$label":"ACTS_IN","name":"Keyboards, guitar, lap steel, vocals","type":"Role","_key":"103022","_from":"60602","_to":"60596"} +{"$label":"ACTS_IN","name":"Bass","type":"Role","_key":"103021","_from":"60601","_to":"60596"} +{"$label":"ACTS_IN","name":"Rhythm guitar","type":"Role","_key":"103020","_from":"60600","_to":"60596"} +{"$label":"ACTS_IN","name":"Drums, percussion, piano","type":"Role","_key":"103019","_from":"60599","_to":"60596"} +{"$label":"ACTS_IN","name":"Lead guitar, background vocals","type":"Role","_key":"103018","_from":"60598","_to":"60596"} +{"$label":"ACTS_IN","name":"Lead vocals, piano","type":"Role","_key":"103017","_from":"60597","_to":"60596"} +{"$label":"DIRECTED","_key":"113870","_from":"60603","_to":"67080"} +{"$label":"DIRECTED","_key":"112002","_from":"60603","_to":"66115"} +{"$label":"ACTS_IN","name":"Frau Neubauer","type":"Role","_key":"103027","_from":"60607","_to":"60605"} +{"$label":"ACTS_IN","name":"Leonie","type":"Role","_key":"103026","_from":"60606","_to":"60605"} +{"$label":"ACTS_IN","name":"Charlie Prescott","type":"Role","_key":"103030","_from":"60609","_to":"60608"} +{"$label":"ACTS_IN","name":"Chef","type":"Role","_key":"103046","_from":"60621","_to":"60610"} +{"$label":"ACTS_IN","name":"Ghost Market","type":"Role","_key":"103045","_from":"60620","_to":"60610"} +{"$label":"ACTS_IN","name":"Karemaru","type":"Role","_key":"103044","_from":"60619","_to":"60610"} +{"$label":"ACTS_IN","name":"Doo-chao","type":"Role","_key":"103043","_from":"60618","_to":"60610"} +{"$label":"ACTS_IN","name":"Bear","type":"Role","_key":"103042","_from":"60617","_to":"60610"} +{"$label":"ACTS_IN","name":"Two Blades","type":"Role","_key":"103041","_from":"60616","_to":"60610"} +{"$label":"ACTS_IN","name":"Song-yi","type":"Role","_key":"103040","_from":"60615","_to":"60610"} +{"$label":"ACTS_IN","name":"Messenger for Kim Pan-joo","type":"Role","_key":"103039","_from":"60614","_to":"60610"} +{"$label":"ACTS_IN","name":"Kim Pan-joo","type":"Role","_key":"103037","_from":"60613","_to":"60610"} +{"$label":"ACTS_IN","name":"Man-gil","type":"Role","_key":"103036","_from":"60612","_to":"60610"} +{"$label":"ACTS_IN","name":"Byung-choon","type":"Role","_key":"103035","_from":"60611","_to":"60610"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"103052","_from":"60625","_to":"60622"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"103051","_from":"60624","_to":"60622"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"103050","_from":"60623","_to":"60622"} +{"$label":"DIRECTED","_key":"103062","_from":"60627","_to":"60626"} +{"$label":"DIRECTED","_key":"108774","_from":"60627","_to":"64301"} +{"$label":"DIRECTED","_key":"103081","_from":"60636","_to":"60631"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"103080","_from":"60635","_to":"60631"} +{"$label":"ACTS_IN","name":"Subira","type":"Role","_key":"103079","_from":"60634","_to":"60631"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"103077","_from":"60633","_to":"60631"} +{"$label":"ACTS_IN","name":"Rhombus","type":"Role","_key":"103075","_from":"60632","_to":"60631"} +{"$label":"ACTS_IN","name":"Dr. Emerson","type":"Role","_key":"103100","_from":"60646","_to":"60638"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"103099","_from":"60645","_to":"60638"} +{"$label":"ACTS_IN","name":"Mr. Helmbreck","type":"Role","_key":"103098","_from":"60644","_to":"60638"} +{"$label":"ACTS_IN","name":"State Trooper","type":"Role","_key":"103096","_from":"60643","_to":"60638"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103095","_from":"60642","_to":"60638"} +{"$label":"ACTS_IN","name":"Slap","type":"Role","_key":"103090","_from":"60641","_to":"60638"} +{"$label":"ACTS_IN","name":"Ricky","type":"Role","_key":"103089","_from":"60640","_to":"60638"} +{"$label":"DIRECTED","_key":"103085","_from":"60639","_to":"60638"} +{"$label":"ACTS_IN","name":"Tommy Frigo","type":"Role","_key":"109628","_from":"60640","_to":"64750"} +{"$label":"ACTS_IN","name":"Uncle Teng Wai (as Wong Tin Lam)","type":"Role","_key":"103107","_from":"60649","_to":"60647"} +{"$label":"ACTS_IN","name":"Jimmy Lee","type":"Role","_key":"103101","_from":"60648","_to":"60647"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"120581","_from":"60648","_to":"70821"} +{"$label":"ACTS_IN","name":"Jimmy Lee","type":"Role","_key":"117326","_from":"60648","_to":"69005"} +{"$label":"ACTS_IN","name":"Jane's Husband","type":"Role","_key":"109733","_from":"60648","_to":"64808"} +{"$label":"ACTS_IN","name":"Red","type":"Role","_key":"108735","_from":"60648","_to":"64278"} +{"$label":"ACTS_IN","name":"Uncle Teng Wai (as Wong Tin Lam)","type":"Role","_key":"117331","_from":"60649","_to":"69005"} +{"$label":"DIRECTED","_key":"103120","_from":"60655","_to":"60654"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"103122","_from":"60658","_to":"60656"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"103121","_from":"60657","_to":"60656"} +{"$label":"ACTS_IN","name":"Jason Bright","type":"Role","_key":"103127","_from":"60661","_to":"60659"} +{"$label":"ACTS_IN","name":"Alejandra Delgado","type":"Role","_key":"103125","_from":"60660","_to":"60659"} +{"$label":"DIRECTED","_key":"103136","_from":"60665","_to":"60663"} +{"$label":"ACTS_IN","name":"Meg Foster","type":"Role","_key":"103135","_from":"60664","_to":"60663"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"103142","_from":"60668","_to":"60667"} +{"$label":"ACTS_IN","name":"Lilac Young Tough","type":"Role","_key":"108707","_from":"60668","_to":"64246"} +{"$label":"DIRECTED","_key":"103151","_from":"60675","_to":"60670"} +{"$label":"ACTS_IN","name":"Postman","type":"Role","_key":"103150","_from":"60674","_to":"60670"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"103149","_from":"60673","_to":"60670"} +{"$label":"ACTS_IN","name":"Kenji","type":"Role","_key":"103147","_from":"60672","_to":"60670"} +{"$label":"ACTS_IN","name":"Mai","type":"Role","_key":"103146","_from":"60671","_to":"60670"} +{"$label":"ACTS_IN","name":"Dr. Judson","type":"Role","_key":"103155","_from":"60679","_to":"60676"} +{"$label":"ACTS_IN","name":"Dr. Leonardo","type":"Role","_key":"103154","_from":"60678","_to":"60676"} +{"$label":"ACTS_IN","name":"Marisa Leonardo","type":"Role","_key":"103153","_from":"60677","_to":"60676"} +{"$label":"ACTS_IN","name":"Prof. Kanter","type":"Role","_key":"115100","_from":"60679","_to":"67783"} +{"$label":"ACTS_IN","name":"Simon J\u00e9r\u00e9mi","type":"Role","_key":"103161","_from":"60681","_to":"60680"} +{"$label":"DIRECTED","_key":"103170","_from":"60684","_to":"60682"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"103168","_from":"60683","_to":"60682"} +{"$label":"ACTS_IN","name":"Langemann","type":"Role","_key":"103173","_from":"60688","_to":"60685"} +{"$label":"ACTS_IN","name":"Sunniva","type":"Role","_key":"103172","_from":"60687","_to":"60685"} +{"$label":"ACTS_IN","name":"Kaptein Sabeltann","type":"Role","_key":"103171","_from":"60686","_to":"60685"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"103487","_from":"60687","_to":"60873"} +{"$label":"ACTS_IN","name":"Street Protestor","type":"Role","_key":"103177","_from":"60692","_to":"60689"} +{"$label":"ACTS_IN","name":"Protestor","type":"Role","_key":"103176","_from":"60691","_to":"60689"} +{"$label":"ACTS_IN","name":"Gill","type":"Role","_key":"103174","_from":"60690","_to":"60689"} +{"$label":"DIRECTED","_key":"103199","_from":"60704","_to":"60693"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"103198","_from":"60703","_to":"60693"} +{"$label":"ACTS_IN","name":"April's Classmate","type":"Role","_key":"103196","_from":"60702","_to":"60693"} +{"$label":"ACTS_IN","name":"April's Classmate","type":"Role","_key":"103195","_from":"60701","_to":"60693"} +{"$label":"ACTS_IN","name":"Snide Student (as Ulysses Cuadra)","type":"Role","_key":"103194","_from":"60700","_to":"60693"} +{"$label":"ACTS_IN","name":"Catering Assistant","type":"Role","_key":"103190","_from":"60699","_to":"60693"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"103188","_from":"60698","_to":"60693"} +{"$label":"ACTS_IN","name":"Hairdresser","type":"Role","_key":"103185","_from":"60697","_to":"60693"} +{"$label":"ACTS_IN","name":"Yolanda","type":"Role","_key":"103184","_from":"60696","_to":"60693"} +{"$label":"ACTS_IN","name":"Eden","type":"Role","_key":"103181","_from":"60695","_to":"60693"} +{"$label":"ACTS_IN","name":"Maribel Naranjo","type":"Role","_key":"103180","_from":"60694","_to":"60693"} +{"$label":"ACTS_IN","name":"Joshua","type":"Role","_key":"103208","_from":"60708","_to":"60705"} +{"$label":"ACTS_IN","name":"Mason","type":"Role","_key":"103205","_from":"60707","_to":"60705"} +{"$label":"DIRECTED","_key":"103200","_from":"60706","_to":"60705"} +{"$label":"DIRECTED","_key":"103232","_from":"60724","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103231","_from":"60723","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103230","_from":"60722","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103227","_from":"60721","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103226","_from":"60720","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103225","_from":"60719","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103222","_from":"60718","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103221","_from":"60717","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103220","_from":"60716","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103219","_from":"60715","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103218","_from":"60714","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103217","_from":"60713","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103216","_from":"60712","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103215","_from":"60711","_to":"60710"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121539","_from":"60717","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121537","_from":"60720","_to":"71402"} +{"$label":"DIRECTED","_key":"103252","_from":"60739","_to":"60726"} +{"$label":"DIRECTED","_key":"103251","_from":"60738","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103249","_from":"60737","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103248","_from":"60736","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103247","_from":"60735","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103246","_from":"60734","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103244","_from":"60733","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103242","_from":"60732","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103241","_from":"60731","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103239","_from":"60730","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103238","_from":"60729","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103236","_from":"60728","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103235","_from":"60727","_to":"60726"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112373","_from":"60730","_to":"66345"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103256","_from":"60749","_to":"60745"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103255","_from":"60748","_to":"60745"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103254","_from":"60747","_to":"60745"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103253","_from":"60746","_to":"60745"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112369","_from":"60749","_to":"66345"} +{"$label":"ACTS_IN","name":"Daigoro","type":"Role","_key":"103258","_from":"60754","_to":"60752"} +{"$label":"ACTS_IN","name":"Ogami Itto","type":"Role","_key":"103257","_from":"60753","_to":"60752"} +{"$label":"ACTS_IN","name":"Ogami Itto","type":"Role","_key":"114034","_from":"60753","_to":"67154"} +{"$label":"ACTS_IN","name":"Nagisa no Yoshiro","type":"Role","_key":"109875","_from":"60753","_to":"64917"} +{"$label":"ACTS_IN","name":"Mother Abbess","type":"Role","_key":"103267","_from":"60757","_to":"60756"} +{"$label":"DIRECTED","_key":"103274","_from":"60759","_to":"60758"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"103278","_from":"60762","_to":"60760"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"103277","_from":"60761","_to":"60760"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"115546","_from":"60762","_to":"68020"} +{"$label":"ACTS_IN","name":"CR","type":"Role","_key":"103294","_from":"60768","_to":"60764"} +{"$label":"ACTS_IN","name":"Raspoutine","type":"Role","_key":"103291","_from":"60767","_to":"60764"} +{"$label":"ACTS_IN","name":"Moloch","type":"Role","_key":"103290","_from":"60766","_to":"60764"} +{"$label":"ACTS_IN","name":"Pers\u00e9phone","type":"Role","_key":"103286","_from":"60765","_to":"60764"} +{"$label":"ACTS_IN","name":"La maman d'Elie","type":"Role","_key":"103301","_from":"60772","_to":"60769"} +{"$label":"ACTS_IN","name":"Le naturiste","type":"Role","_key":"103300","_from":"60771","_to":"60769"} +{"$label":"ACTS_IN","name":"Elie","type":"Role","_key":"103298","_from":"60770","_to":"60769"} +{"$label":"ACTS_IN","name":"Ritsuko Akagi","type":"Role","_key":"103313","_from":"60781","_to":"60776"} +{"$label":"ACTS_IN","name":"Misato Katsuragi","type":"Role","_key":"103312","_from":"60780","_to":"60776"} +{"$label":"ACTS_IN","name":"Shinji Ikari","type":"Role","_key":"103310","_from":"60779","_to":"60776"} +{"$label":"DIRECTED","_key":"103309","_from":"60778","_to":"60776"} +{"$label":"DIRECTED","_key":"103308","_from":"60777","_to":"60776"} +{"$label":"DIRECTED","_key":"116379","_from":"60777","_to":"68510"} +{"$label":"ACTS_IN","name":"Shinji Ikari","type":"Role","_key":"116380","_from":"60779","_to":"68510"} +{"$label":"ACTS_IN","name":"Misato Katsuragi","type":"Role","_key":"116382","_from":"60780","_to":"68510"} +{"$label":"ACTS_IN","name":"Yatoji Satsuki","type":"Role","_key":"111110","_from":"60780","_to":"65622"} +{"$label":"ACTS_IN","name":"Maurice","type":"Role","_key":"103316","_from":"60783","_to":"60782"} +{"$label":"DIRECTED","_key":"103327","_from":"60785","_to":"60784"} +{"$label":"ACTS_IN","name":"Tom","type":"Role","_key":"103334","_from":"60791","_to":"60786"} +{"$label":"ACTS_IN","name":"Ga\u00eblle","type":"Role","_key":"103333","_from":"60790","_to":"60786"} +{"$label":"ACTS_IN","name":"Yannick","type":"Role","_key":"103330","_from":"60789","_to":"60786"} +{"$label":"ACTS_IN","name":"Jean-Pascal","type":"Role","_key":"103329","_from":"60788","_to":"60786"} +{"$label":"DIRECTED","_key":"103328","_from":"60787","_to":"60786"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120638","_from":"60788","_to":"70851"} +{"$label":"ACTS_IN","name":"Igor d'Hossegor","type":"Role","_key":"111980","_from":"60788","_to":"66100"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"103343","_from":"60794","_to":"60793"} +{"$label":"ACTS_IN","name":"Mary Frances 'Miffy' Young","type":"Role","_key":"116471","_from":"60794","_to":"68550"} +{"$label":"ACTS_IN","name":"Grandpa Fred","type":"Role","_key":"103354","_from":"60799","_to":"60795"} +{"$label":"ACTS_IN","name":"Howard Baker","type":"Role","_key":"103352","_from":"60798","_to":"60795"} +{"$label":"ACTS_IN","name":"Dorthy Baker","type":"Role","_key":"103351","_from":"60797","_to":"60795"} +{"$label":"ACTS_IN","name":"Jake Ryan","type":"Role","_key":"103349","_from":"60796","_to":"60795"} +{"$label":"ACTS_IN","name":"Ray Cutler","type":"Role","_key":"121727","_from":"60799","_to":"71514"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103362","_from":"60805","_to":"60800"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103361","_from":"60804","_to":"60800"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103360","_from":"60803","_to":"60800"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103359","_from":"60802","_to":"60800"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103358","_from":"60801","_to":"60800"} +{"$label":"DIRECTED","_key":"103363","_from":"60809","_to":"60808"} +{"$label":"ACTS_IN","name":"Dion","type":"Role","_key":"103371","_from":"60812","_to":"60810"} +{"$label":"DIRECTED","_key":"103368","_from":"60811","_to":"60810"} +{"$label":"ACTS_IN","name":"Mick \u00d8gendahl","type":"Role","_key":"116674","_from":"60812","_to":"68684"} +{"$label":"ACTS_IN","name":"Mick \u00d8gendahl","type":"Role","_key":"116672","_from":"60812","_to":"68683"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"106743","_from":"60812","_to":"62913"} +{"$label":"DIRECTED","_key":"103389","_from":"60820","_to":"60813"} +{"$label":"ACTS_IN","name":"Slimane","type":"Role","_key":"103386","_from":"60819","_to":"60813"} +{"$label":"ACTS_IN","name":"Loktar","type":"Role","_key":"103385","_from":"60818","_to":"60813"} +{"$label":"ACTS_IN","name":"Le suiveur","type":"Role","_key":"103384","_from":"60817","_to":"60813"} +{"$label":"ACTS_IN","name":"Gardenborough","type":"Role","_key":"103380","_from":"60816","_to":"60813"} +{"$label":"ACTS_IN","name":"Setine","type":"Role","_key":"103378","_from":"60815","_to":"60813"} +{"$label":"ACTS_IN","name":"Larmina El Akmar Betouche","type":"Role","_key":"103375","_from":"60814","_to":"60813"} +{"$label":"ACTS_IN","name":"Le docteur Goeborg","type":"Role","_key":"105248","_from":"60816","_to":"61936"} +{"$label":"DIRECTED","_key":"107239","_from":"60820","_to":"63245"} +{"$label":"DIRECTED","_key":"105094","_from":"60820","_to":"61854"} +{"$label":"DIRECTED","_key":"103399","_from":"60827","_to":"60821"} +{"$label":"ACTS_IN","name":"Adam Gordon","type":"Role","_key":"103398","_from":"60826","_to":"60821"} +{"$label":"ACTS_IN","name":"Daizy Duke","type":"Role","_key":"103397","_from":"60825","_to":"60821"} +{"$label":"ACTS_IN","name":"B. Mo Smoov","type":"Role","_key":"103396","_from":"60824","_to":"60821"} +{"$label":"ACTS_IN","name":"Nicole Marshall","type":"Role","_key":"103395","_from":"60823","_to":"60821"} +{"$label":"ACTS_IN","name":"Sky Hightower","type":"Role","_key":"103392","_from":"60822","_to":"60821"} +{"$label":"ACTS_IN","name":"Choco","type":"Role","_key":"103407","_from":"60830","_to":"60828"} +{"$label":"ACTS_IN","name":"Javier Cordero","type":"Role","_key":"103406","_from":"60829","_to":"60828"} +{"$label":"ACTS_IN","name":"Joey Parker","type":"Role","_key":"103409","_from":"60833","_to":"60831"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"103408","_from":"60832","_to":"60831"} +{"$label":"ACTS_IN","name":"Carter Mason","type":"Role","_key":"120145","_from":"60832","_to":"70565"} +{"$label":"ACTS_IN","name":"Mortician","type":"Role","_key":"103421","_from":"60837","_to":"60834"} +{"$label":"ACTS_IN","name":"Father Meyers","type":"Role","_key":"103420","_from":"60836","_to":"60834"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"103418","_from":"60835","_to":"60834"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103434","_from":"60840","_to":"60839"} +{"$label":"DIRECTED","_key":"103442","_from":"60844","_to":"60843"} +{"$label":"ACTS_IN","name":"Prince Eric","type":"Role","_key":"103448","_from":"60847","_to":"60846"} +{"$label":"ACTS_IN","name":"Van","type":"Role","_key":"110732","_from":"60847","_to":"65413"} +{"$label":"ACTS_IN","name":"Mr. Joe Bowman","type":"Role","_key":"103455","_from":"60851","_to":"60850"} +{"$label":"DIRECTED","_key":"103465","_from":"60856","_to":"60852"} +{"$label":"DIRECTED","_key":"103464","_from":"60855","_to":"60852"} +{"$label":"ACTS_IN","name":"Ram","type":"Role","_key":"103463","_from":"60854","_to":"60852"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"103462","_from":"60853","_to":"60852"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice)","type":"Role","_key":"103480","_from":"60871","_to":"60857"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice) (as Mike Harrison)","type":"Role","_key":"103479","_from":"60870","_to":"60857"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice)","type":"Role","_key":"103478","_from":"60869","_to":"60857"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice)","type":"Role","_key":"103477","_from":"60868","_to":"60857"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice)","type":"Role","_key":"103476","_from":"60867","_to":"60857"} +{"$label":"ACTS_IN","name":"Message from the Lord Choir (voice)","type":"Role","_key":"103475","_from":"60866","_to":"60857"} +{"$label":"ACTS_IN","name":"City Official, Crazy Jopponian (voice)","type":"Role","_key":"103474","_from":"60865","_to":"60857"} +{"$label":"ACTS_IN","name":"Scooter, Townsperson (voice)","type":"Role","_key":"103473","_from":"60864","_to":"60857"} +{"$label":"ACTS_IN","name":"Annie (voice)","type":"Role","_key":"103472","_from":"60863","_to":"60857"} +{"$label":"ACTS_IN","name":"Laura Carrot (voice)","type":"Role","_key":"103471","_from":"60862","_to":"60857"} +{"$label":"ACTS_IN","name":"Junior Asparagus (voice)","type":"Role","_key":"103469","_from":"60861","_to":"60857"} +{"$label":"ACTS_IN","name":"Khalil (voice)","type":"Role","_key":"103468","_from":"60860","_to":"60857"} +{"$label":"ACTS_IN","name":"Larry the Cucumber \/ Pirate Larry \/ Jean Claude Pea \/ Cockney Pea #1 \/ Self-Help Tape Voice \/ Jerry Gourd \/ Whooping BBQ Pea (voice)","type":"Role","_key":"103467","_from":"60859","_to":"60857"} +{"$label":"ACTS_IN","name":"Archibald Asparagus \/ Jonah \/ Twippo \/ Bob the Tomato \/ Mr. Lunt \/ Pirate Lunt \/ Percy Pea \/ Phillipe Pea \/ Pa Grape \/ Pirate Pa \/ Nezzer \/ King Twistomer \/ Cockney Pea #2 (voice)","type":"Role","_key":"103466","_from":"60858","_to":"60857"} +{"$label":"ACTS_IN","name":"Jerry Gourd","type":"Role","_key":"106229","_from":"60858","_to":"62564"} +{"$label":"DIRECTED","_key":"106484","_from":"60859","_to":"62737"} +{"$label":"DIRECTED","_key":"104769","_from":"60859","_to":"61644"} +{"$label":"ACTS_IN","name":"Larry the Cucumber (voice)","type":"Role","_key":"106230","_from":"60859","_to":"62564"} +{"$label":"DIRECTED","_key":"106231","_from":"60860","_to":"62568"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103503","_from":"60891","_to":"60873"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103502","_from":"60890","_to":"60873"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103501","_from":"60889","_to":"60873"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103500","_from":"60888","_to":"60873"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103499","_from":"60887","_to":"60873"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103498","_from":"60886","_to":"60873"} +{"$label":"ACTS_IN","name":"Ingunn","type":"Role","_key":"103497","_from":"60885","_to":"60873"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"103495","_from":"60884","_to":"60873"} +{"$label":"ACTS_IN","name":"Frode","type":"Role","_key":"103494","_from":"60883","_to":"60873"} +{"$label":"ACTS_IN","name":"Nikolai","type":"Role","_key":"103493","_from":"60882","_to":"60873"} +{"$label":"ACTS_IN","name":"Anders","type":"Role","_key":"103491","_from":"60881","_to":"60873"} +{"$label":"ACTS_IN","name":"Dag","type":"Role","_key":"103490","_from":"60880","_to":"60873"} +{"$label":"ACTS_IN","name":"Karsten","type":"Role","_key":"103489","_from":"60879","_to":"60873"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"103488","_from":"60878","_to":"60873"} +{"$label":"ACTS_IN","name":"Henriette","type":"Role","_key":"103486","_from":"60877","_to":"60873"} +{"$label":"ACTS_IN","name":"Stig Inge Otnes","type":"Role","_key":"103485","_from":"60876","_to":"60873"} +{"$label":"DIRECTED","_key":"103482","_from":"60875","_to":"60873"} +{"$label":"DIRECTED","_key":"103481","_from":"60874","_to":"60873"} +{"$label":"DIRECTED","_key":"106517","_from":"60874","_to":"62756"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"106515","_from":"60877","_to":"62756"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"103831","_from":"60877","_to":"61062"} +{"$label":"ACTS_IN","name":"B\u00e5rd Farang","type":"Role","_key":"109849","_from":"60880","_to":"64893"} +{"$label":"DIRECTED","_key":"103509","_from":"60896","_to":"60892"} +{"$label":"ACTS_IN","name":"Isabell","type":"Role","_key":"103508","_from":"60895","_to":"60892"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"103507","_from":"60894","_to":"60892"} +{"$label":"ACTS_IN","name":"Patrik","type":"Role","_key":"103506","_from":"60893","_to":"60892"} +{"$label":"ACTS_IN","name":"Liv","type":"Role","_key":"117596","_from":"60894","_to":"69134"} +{"$label":"DIRECTED","_key":"103514","_from":"60899","_to":"60898"} +{"$label":"DIRECTED","_key":"103531","_from":"60905","_to":"60904"} +{"$label":"ACTS_IN","name":"The Singing Telegram","type":"Role","_key":"103555","_from":"60909","_to":"60907"} +{"$label":"ACTS_IN","name":"Mr. Boddy","type":"Role","_key":"103553","_from":"60908","_to":"60907"} +{"$label":"ACTS_IN","name":"Dusk","type":"Role","_key":"113632","_from":"60909","_to":"66966"} +{"$label":"ACTS_IN","name":"Connor Banks","type":"Role","_key":"103567","_from":"60912","_to":"60910"} +{"$label":"ACTS_IN","name":"Stevie Weeks","type":"Role","_key":"103566","_from":"60911","_to":"60910"} +{"$label":"ACTS_IN","name":"Mimi Marquez","type":"Role","_key":"103576","_from":"60920","_to":"60913"} +{"$label":"ACTS_IN","name":"Mark's Mom","type":"Role","_key":"103575","_from":"60919","_to":"60913"} +{"$label":"ACTS_IN","name":"Angel Schunard","type":"Role","_key":"103574","_from":"60918","_to":"60913"} +{"$label":"ACTS_IN","name":"Benjamin Coffin III","type":"Role","_key":"103573","_from":"60917","_to":"60913"} +{"$label":"ACTS_IN","name":"Mark Cohen","type":"Role","_key":"103572","_from":"60916","_to":"60913"} +{"$label":"ACTS_IN","name":"Roger Davis","type":"Role","_key":"103571","_from":"60915","_to":"60913"} +{"$label":"DIRECTED","_key":"103570","_from":"60914","_to":"60913"} +{"$label":"DIRECTED","_key":"103582","_from":"60926","_to":"60925"} +{"$label":"ACTS_IN","name":"Katerina","type":"Role","_key":"103594","_from":"60930","_to":"60927"} +{"$label":"ACTS_IN","name":"Detective Lissoni","type":"Role","_key":"103593","_from":"60929","_to":"60927"} +{"$label":"ACTS_IN","name":"Mater Lachrymarum","type":"Role","_key":"103587","_from":"60928","_to":"60927"} +{"$label":"DIRECTED","_key":"103603","_from":"60934","_to":"60931"} +{"$label":"ACTS_IN","name":"Darvulia","type":"Role","_key":"103601","_from":"60933","_to":"60931"} +{"$label":"ACTS_IN","name":"Monk Petr","type":"Role","_key":"103600","_from":"60932","_to":"60931"} +{"$label":"ACTS_IN","name":"in\u017een\u00fdr Slez\u00e1k","type":"Role","_key":"110670","_from":"60932","_to":"65376"} +{"$label":"ACTS_IN","name":"Peter's Father","type":"Role","_key":"103608","_from":"60937","_to":"60935"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"103606","_from":"60936","_to":"60935"} +{"$label":"ACTS_IN","name":"Collette","type":"Role","_key":"103613","_from":"60943","_to":"60939"} +{"$label":"ACTS_IN","name":"Leland Fisk","type":"Role","_key":"103612","_from":"60942","_to":"60939"} +{"$label":"ACTS_IN","name":"Rinaldo","type":"Role","_key":"103610","_from":"60941","_to":"60939"} +{"$label":"ACTS_IN","name":"Calder\u00f3n","type":"Role","_key":"103609","_from":"60940","_to":"60939"} +{"$label":"DIRECTED","_key":"103621","_from":"60946","_to":"60944"} +{"$label":"DIRECTED","_key":"103620","_from":"60945","_to":"60944"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103632","_from":"60949","_to":"60947"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103629","_from":"60948","_to":"60947"} +{"$label":"DIRECTED","_key":"103635","_from":"60951","_to":"60950"} +{"$label":"ACTS_IN","name":"Maetel","type":"Role","_key":"103638","_from":"60955","_to":"60953"} +{"$label":"ACTS_IN","name":"Tetsur\u00f4 Hoshino","type":"Role","_key":"103637","_from":"60954","_to":"60953"} +{"$label":"ACTS_IN","name":"Son Goku","type":"Role","_key":"114903","_from":"60954","_to":"67676"} +{"$label":"DIRECTED","_key":"103642","_from":"60959","_to":"60958"} +{"$label":"ACTS_IN","name":"Diaghilev","type":"Role","_key":"103653","_from":"60963","_to":"60960"} +{"$label":"ACTS_IN","name":"Louis B. Mayer","type":"Role","_key":"103650","_from":"60962","_to":"60960"} +{"$label":"ACTS_IN","name":"Monty Woolley","type":"Role","_key":"103649","_from":"60961","_to":"60960"} +{"$label":"ACTS_IN","name":"Samuel Feinstein","type":"Role","_key":"117700","_from":"60961","_to":"69180"} +{"$label":"DIRECTED","_key":"103657","_from":"60967","_to":"60965"} +{"$label":"ACTS_IN","name":"The Toxic Avenger","type":"Role","_key":"103656","_from":"60966","_to":"60965"} +{"$label":"ACTS_IN","name":"Frieda (voice)","type":"Role","_key":"103667","_from":"60976","_to":"60968"} +{"$label":"ACTS_IN","name":"Clara (voice)","type":"Role","_key":"103666","_from":"60975","_to":"60968"} +{"$label":"ACTS_IN","name":"Sally Brown (voice)","type":"Role","_key":"103665","_from":"60974","_to":"60968"} +{"$label":"ACTS_IN","name":"Lila (voice)","type":"Role","_key":"103664","_from":"60973","_to":"60968"} +{"$label":"ACTS_IN","name":"Schroeder (voice)","type":"Role","_key":"103663","_from":"60972","_to":"60968"} +{"$label":"ACTS_IN","name":"Linus Van Pelt","type":"Role","_key":"103662","_from":"60971","_to":"60968"} +{"$label":"ACTS_IN","name":"Lucy Van Pelt (voice)","type":"Role","_key":"103661","_from":"60970","_to":"60968"} +{"$label":"ACTS_IN","name":"Charlie Brown (voice)","type":"Role","_key":"103660","_from":"60969","_to":"60968"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"103675","_from":"60982","_to":"60977"} +{"$label":"ACTS_IN","name":"Hebrard","type":"Role","_key":"103674","_from":"60981","_to":"60977"} +{"$label":"ACTS_IN","name":"Orsini","type":"Role","_key":"103673","_from":"60980","_to":"60977"} +{"$label":"ACTS_IN","name":"Blanchet","type":"Role","_key":"103671","_from":"60979","_to":"60977"} +{"$label":"ACTS_IN","name":"Jost","type":"Role","_key":"103670","_from":"60978","_to":"60977"} +{"$label":"ACTS_IN","name":"Inspector Keightley","type":"Role","_key":"103692","_from":"60993","_to":"60984"} +{"$label":"ACTS_IN","name":"Chilcott-Oakes","type":"Role","_key":"103691","_from":"60992","_to":"60984"} +{"$label":"ACTS_IN","name":"Gray","type":"Role","_key":"103690","_from":"60991","_to":"60984"} +{"$label":"ACTS_IN","name":"Edwards","type":"Role","_key":"103689","_from":"60990","_to":"60984"} +{"$label":"ACTS_IN","name":"Charlady","type":"Role","_key":"103688","_from":"60989","_to":"60984"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"103687","_from":"60988","_to":"60984"} +{"$label":"ACTS_IN","name":"Housemartin","type":"Role","_key":"103686","_from":"60987","_to":"60984"} +{"$label":"ACTS_IN","name":"Bluejay","type":"Role","_key":"103684","_from":"60986","_to":"60984"} +{"$label":"ACTS_IN","name":"Radcliffe","type":"Role","_key":"103683","_from":"60985","_to":"60984"} +{"$label":"ACTS_IN","name":"Michael \"Baby\" Whitfield","type":"Role","_key":"103695","_from":"60995","_to":"60994"} +{"$label":"DIRECTED","_key":"103700","_from":"60997","_to":"60996"} +{"$label":"DIRECTED","_key":"113564","_from":"60997","_to":"66916"} +{"$label":"ACTS_IN","name":"Crot","type":"Role","_key":"103706","_from":"61001","_to":"60999"} +{"$label":"DIRECTED","_key":"103702","_from":"61000","_to":"60999"} +{"$label":"ACTS_IN","name":"Hogun","type":"Role","_key":"103726","_from":"61007","_to":"61003"} +{"$label":"ACTS_IN","name":"Bruce Junior","type":"Role","_key":"103725","_from":"61006","_to":"61003"} +{"$label":"DIRECTED","_key":"103719","_from":"61005","_to":"61003"} +{"$label":"DIRECTED","_key":"103718","_from":"61004","_to":"61003"} +{"$label":"ACTS_IN","name":"Sidorak","type":"Role","_key":"115410","_from":"61007","_to":"67952"} +{"$label":"ACTS_IN","name":"Folken","type":"Role","_key":"110733","_from":"61007","_to":"65413"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103744","_from":"61009","_to":"61008"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103739","_from":"61013","_to":"61008"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103735","_from":"61012","_to":"61008"} +{"$label":"ACTS_IN","name":"Billy The Mime","type":"Role","_key":"103733","_from":"61011","_to":"61008"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103730","_from":"61010","_to":"61008"} +{"$label":"DIRECTED","_key":"103728","_from":"61009","_to":"61008"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"103752","_from":"61020","_to":"61014"} +{"$label":"ACTS_IN","name":"Franco","type":"Role","_key":"103750","_from":"61019","_to":"61014"} +{"$label":"ACTS_IN","name":"Turbo (as Boogaloo Shrimp)","type":"Role","_key":"103749","_from":"61018","_to":"61014"} +{"$label":"ACTS_IN","name":"Ozone (as Shabba-Doo)","type":"Role","_key":"103748","_from":"61017","_to":"61014"} +{"$label":"ACTS_IN","name":"Kelly \/ Special K","type":"Role","_key":"103747","_from":"61016","_to":"61014"} +{"$label":"DIRECTED","_key":"103746","_from":"61015","_to":"61014"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"112307","_from":"61016","_to":"66307"} +{"$label":"ACTS_IN","name":"Ozone","type":"Role","_key":"112308","_from":"61017","_to":"66307"} +{"$label":"ACTS_IN","name":"Turbo","type":"Role","_key":"112309","_from":"61018","_to":"66307"} +{"$label":"ACTS_IN","name":"Pepper Driscoll","type":"Role","_key":"103763","_from":"61030","_to":"61022"} +{"$label":"ACTS_IN","name":"Vance Voorhees","type":"Role","_key":"103762","_from":"61029","_to":"61022"} +{"$label":"ACTS_IN","name":"Chicago","type":"Role","_key":"103760","_from":"61028","_to":"61022"} +{"$label":"ACTS_IN","name":"Aeysha","type":"Role","_key":"103758","_from":"61027","_to":"61022"} +{"$label":"ACTS_IN","name":"Chelsea","type":"Role","_key":"103756","_from":"61026","_to":"61022"} +{"$label":"ACTS_IN","name":"Ruben","type":"Role","_key":"103755","_from":"61025","_to":"61022"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"103754","_from":"61024","_to":"61022"} +{"$label":"ACTS_IN","name":"Carson","type":"Role","_key":"103753","_from":"61023","_to":"61022"} +{"$label":"ACTS_IN","name":"Liz","type":"Role","_key":"104353","_from":"61026","_to":"61389"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"103772","_from":"61039","_to":"61031"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"103771","_from":"61038","_to":"61031"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"103770","_from":"61037","_to":"61031"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"103769","_from":"61036","_to":"61031"} +{"$label":"ACTS_IN","name":"Kane","type":"Role","_key":"103768","_from":"61035","_to":"61031"} +{"$label":"ACTS_IN","name":"Lindsey","type":"Role","_key":"103767","_from":"61034","_to":"61031"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"103766","_from":"61033","_to":"61031"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"103765","_from":"61032","_to":"61031"} +{"$label":"ACTS_IN","name":"Katie Reed","type":"Role","_key":"111290","_from":"61032","_to":"65725"} +{"$label":"DIRECTED","_key":"103785","_from":"61045","_to":"61041"} +{"$label":"ACTS_IN","name":"Clara Cardell","type":"Role","_key":"103784","_from":"61044","_to":"61041"} +{"$label":"ACTS_IN","name":"Dave (as George 'Gabby' Hayes)","type":"Role","_key":"103783","_from":"61043","_to":"61041"} +{"$label":"ACTS_IN","name":"Arleta 'Arly' Harolday","type":"Role","_key":"103781","_from":"61042","_to":"61041"} +{"$label":"ACTS_IN","name":"Shopkeeper","type":"Role","_key":"103788","_from":"61049","_to":"61046"} +{"$label":"ACTS_IN","name":"Pascal the Boy","type":"Role","_key":"103787","_from":"61048","_to":"61046"} +{"$label":"DIRECTED","_key":"103786","_from":"61047","_to":"61046"} +{"$label":"DIRECTED","_key":"104216","_from":"61047","_to":"61314"} +{"$label":"ACTS_IN","name":"Willie Paine","type":"Role","_key":"103792","_from":"61052","_to":"61050"} +{"$label":"ACTS_IN","name":"Fleurette De Marchand","type":"Role","_key":"103790","_from":"61051","_to":"61050"} +{"$label":"ACTS_IN","name":"Mr. Vincent Belcher - the First Husband","type":"Role","_key":"109581","_from":"61052","_to":"64724"} +{"$label":"ACTS_IN","name":"Lottie Crump","type":"Role","_key":"103820","_from":"61056","_to":"61055"} +{"$label":"ACTS_IN","name":"Gillian","type":"Role","_key":"117090","_from":"61056","_to":"68900"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"103828","_from":"61061","_to":"61057"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103827","_from":"61060","_to":"61057"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"103826","_from":"61059","_to":"61057"} +{"$label":"DIRECTED","_key":"103825","_from":"61058","_to":"61057"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"103829","_from":"61063","_to":"61062"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"103836","_from":"61066","_to":"61064"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"103834","_from":"61065","_to":"61064"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"109045","_from":"61065","_to":"64440"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"109042","_from":"61066","_to":"64440"} +{"$label":"ACTS_IN","name":"Lauren","type":"Role","_key":"108926","_from":"61066","_to":"64373"} +{"$label":"ACTS_IN","name":"Young Girl","type":"Role","_key":"103843","_from":"61069","_to":"61067"} +{"$label":"ACTS_IN","name":"Hung Chi's Wife","type":"Role","_key":"103841","_from":"61068","_to":"61067"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103855","_from":"61077","_to":"61073"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103854","_from":"61076","_to":"61073"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103853","_from":"61075","_to":"61073"} +{"$label":"DIRECTED","_key":"103852","_from":"61074","_to":"61073"} +{"$label":"ACTS_IN","name":"Fireball Oroku","type":"Role","_key":"103860","_from":"61083","_to":"61079"} +{"$label":"ACTS_IN","name":"Seizaemon","type":"Role","_key":"103859","_from":"61082","_to":"61079"} +{"$label":"ACTS_IN","name":"Shoukichi","type":"Role","_key":"103857","_from":"61081","_to":"61079"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"103856","_from":"61080","_to":"61079"} +{"$label":"DIRECTED","_key":"103862","_from":"61085","_to":"61084"} +{"$label":"ACTS_IN","name":"Yu-ri","type":"Role","_key":"103866","_from":"61090","_to":"61087"} +{"$label":"ACTS_IN","name":"Chun-soo","type":"Role","_key":"103864","_from":"61089","_to":"61087"} +{"$label":"DIRECTED","_key":"103863","_from":"61088","_to":"61087"} +{"$label":"ACTS_IN","name":"Ma-ri","type":"Role","_key":"121360","_from":"61090","_to":"71314"} +{"$label":"DIRECTED","_key":"103876","_from":"61094","_to":"61091"} +{"$label":"DIRECTED","_key":"103875","_from":"61093","_to":"61091"} +{"$label":"ACTS_IN","name":"Prince Regent Dius Vintari","type":"Role","_key":"103871","_from":"61092","_to":"61091"} +{"$label":"DIRECTED","_key":"103878","_from":"61097","_to":"61095"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103877","_from":"61096","_to":"61095"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103907","_from":"61121","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103906","_from":"61120","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103905","_from":"61119","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103904","_from":"61118","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103903","_from":"61117","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103902","_from":"61116","_to":"61098"} +{"$label":"ACTS_IN","name":"Surfing Extra","type":"Role","_key":"103901","_from":"61115","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103900","_from":"61114","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103899","_from":"61113","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103898","_from":"61112","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103897","_from":"61111","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103895","_from":"61110","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103894","_from":"61109","_to":"61098"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103893","_from":"61108","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103890","_from":"61107","_to":"61098"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103888","_from":"61106","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103887","_from":"61105","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103886","_from":"61104","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103884","_from":"61103","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103883","_from":"61102","_to":"61098"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103882","_from":"61101","_to":"61098"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103881","_from":"61100","_to":"61098"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"103880","_from":"61099","_to":"61098"} +{"$label":"ACTS_IN","name":"Bill Connor","type":"Role","_key":"103919","_from":"61127","_to":"61126"} +{"$label":"ACTS_IN","name":"Shark","type":"Role","_key":"116925","_from":"61127","_to":"68828"} +{"$label":"ACTS_IN","name":"Mrtvac (deda)","type":"Role","_key":"103937","_from":"61141","_to":"61129"} +{"$label":"ACTS_IN","name":"Majka","type":"Role","_key":"103936","_from":"61140","_to":"61129"} +{"$label":"ACTS_IN","name":"Otac","type":"Role","_key":"103935","_from":"61139","_to":"61129"} +{"$label":"ACTS_IN","name":"\u0110ura","type":"Role","_key":"103934","_from":"61138","_to":"61129"} +{"$label":"ACTS_IN","name":"Narkomanka","type":"Role","_key":"103933","_from":"61137","_to":"61129"} +{"$label":"ACTS_IN","name":"Baba u vozu","type":"Role","_key":"103932","_from":"61136","_to":"61129"} +{"$label":"ACTS_IN","name":"Kole 'Kok Nikol","type":"Role","_key":"103929","_from":"61135","_to":"61129"} +{"$label":"ACTS_IN","name":"Mica 'Shaft'","type":"Role","_key":"103928","_from":"61134","_to":"61129"} +{"$label":"ACTS_IN","name":"Lemi","type":"Role","_key":"103927","_from":"61133","_to":"61129"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"103925","_from":"61132","_to":"61129"} +{"$label":"ACTS_IN","name":"Maja","type":"Role","_key":"103924","_from":"61131","_to":"61129"} +{"$label":"ACTS_IN","name":"Limeni","type":"Role","_key":"103923","_from":"61130","_to":"61129"} +{"$label":"ACTS_IN","name":"Ognjenka","type":"Role","_key":"109089","_from":"61131","_to":"64455"} +{"$label":"ACTS_IN","name":"Dragoljub 'Covek od celika'","type":"Role","_key":"109091","_from":"61133","_to":"64455"} +{"$label":"ACTS_IN","name":"Customs Official","type":"Role","_key":"103956","_from":"61151","_to":"61143"} +{"$label":"ACTS_IN","name":"Mikola","type":"Role","_key":"103953","_from":"61150","_to":"61143"} +{"$label":"ACTS_IN","name":"Andriy","type":"Role","_key":"103952","_from":"61149","_to":"61143"} +{"$label":"ACTS_IN","name":"Ostap","type":"Role","_key":"103951","_from":"61148","_to":"61143"} +{"$label":"ACTS_IN","name":"JoJo","type":"Role","_key":"103949","_from":"61147","_to":"61143"} +{"$label":"ACTS_IN","name":"Nonno","type":"Role","_key":"103948","_from":"61146","_to":"61143"} +{"$label":"ACTS_IN","name":"Young Sundae Girl","type":"Role","_key":"103946","_from":"61145","_to":"61143"} +{"$label":"ACTS_IN","name":"Roberto","type":"Role","_key":"103942","_from":"61144","_to":"61143"} +{"$label":"DIRECTED","_key":"103960","_from":"61154","_to":"61152"} +{"$label":"ACTS_IN","name":"Det. Arlen","type":"Role","_key":"103959","_from":"61153","_to":"61152"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103976","_from":"61163","_to":"61158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103975","_from":"61162","_to":"61158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103974","_from":"61161","_to":"61158"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103972","_from":"61160","_to":"61158"} +{"$label":"DIRECTED","_key":"103971","_from":"61159","_to":"61158"} +{"$label":"DIRECTED","_key":"103980","_from":"61165","_to":"61164"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103985","_from":"61171","_to":"61166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103984","_from":"61170","_to":"61166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103983","_from":"61169","_to":"61166"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103982","_from":"61168","_to":"61166"} +{"$label":"DIRECTED","_key":"103981","_from":"61167","_to":"61166"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"103988","_from":"61173","_to":"61172"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"103992","_from":"61176","_to":"61174"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"103990","_from":"61175","_to":"61174"} +{"$label":"ACTS_IN","name":"Jimmy Kemp","type":"Role","_key":"114142","_from":"61175","_to":"67218"} +{"$label":"DIRECTED","_key":"103996","_from":"61182","_to":"61178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103995","_from":"61181","_to":"61178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103994","_from":"61180","_to":"61178"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"103993","_from":"61179","_to":"61178"} +{"$label":"DIRECTED","_key":"103998","_from":"61185","_to":"61183"} +{"$label":"DIRECTED","_key":"103997","_from":"61184","_to":"61183"} +{"$label":"DIRECTED","_key":"104003","_from":"61188","_to":"61187"} +{"$label":"DIRECTED","_key":"104006","_from":"61191","_to":"61190"} +{"$label":"ACTS_IN","name":"Dr. Sickinger","type":"Role","_key":"104014","_from":"61196","_to":"61192"} +{"$label":"ACTS_IN","name":"Magician","type":"Role","_key":"104013","_from":"61195","_to":"61192"} +{"$label":"ACTS_IN","name":"Quenton Pennington, Jr.","type":"Role","_key":"104012","_from":"61194","_to":"61192"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"104010","_from":"61193","_to":"61192"} +{"$label":"ACTS_IN","name":"Andy","type":"Role","_key":"110918","_from":"61196","_to":"65519"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"104020","_from":"61198","_to":"61197"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116292","_from":"61198","_to":"68464"} +{"$label":"ACTS_IN","name":"Audrey Varella","type":"Role","_key":"104027","_from":"61201","_to":"61200"} +{"$label":"DIRECTED","_key":"104030","_from":"61203","_to":"61202"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"104046","_from":"61213","_to":"61204"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"104045","_from":"61212","_to":"61204"} +{"$label":"ACTS_IN","name":"Watson","type":"Role","_key":"104044","_from":"61211","_to":"61204"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"104043","_from":"61210","_to":"61204"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"104042","_from":"61209","_to":"61204"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"104041","_from":"61208","_to":"61204"} +{"$label":"ACTS_IN","name":"Makkede","type":"Role","_key":"104040","_from":"61207","_to":"61204"} +{"$label":"ACTS_IN","name":"Nuru","type":"Role","_key":"104039","_from":"61206","_to":"61204"} +{"$label":"DIRECTED","_key":"104035","_from":"61205","_to":"61204"} +{"$label":"ACTS_IN","name":"D\u00e9borah","type":"Role","_key":"104055","_from":"61221","_to":"61214"} +{"$label":"ACTS_IN","name":"Priscilla","type":"Role","_key":"104053","_from":"61220","_to":"61214"} +{"$label":"ACTS_IN","name":"Jean-Yves","type":"Role","_key":"104052","_from":"61219","_to":"61214"} +{"$label":"ACTS_IN","name":"Ernestine","type":"Role","_key":"104051","_from":"61218","_to":"61214"} +{"$label":"ACTS_IN","name":"Colette","type":"Role","_key":"104050","_from":"61217","_to":"61214"} +{"$label":"ACTS_IN","name":"Martial","type":"Role","_key":"104049","_from":"61216","_to":"61214"} +{"$label":"DIRECTED","_key":"104047","_from":"61215","_to":"61214"} +{"$label":"ACTS_IN","name":"Randa Harfourche","type":"Role","_key":"104060","_from":"61226","_to":"61222"} +{"$label":"ACTS_IN","name":"C\u00e9sar","type":"Role","_key":"104059","_from":"61225","_to":"61222"} +{"$label":"ACTS_IN","name":"Nadine","type":"Role","_key":"104058","_from":"61224","_to":"61222"} +{"$label":"DIRECTED","_key":"104056","_from":"61223","_to":"61222"} +{"$label":"ACTS_IN","name":"Cheryl Robinson","type":"Role","_key":"104069","_from":"61235","_to":"61227"} +{"$label":"ACTS_IN","name":"Ralphie 'Woofer' Chandler","type":"Role","_key":"104068","_from":"61234","_to":"61227"} +{"$label":"ACTS_IN","name":"Donny Chandler","type":"Role","_key":"104067","_from":"61233","_to":"61227"} +{"$label":"ACTS_IN","name":"Willie Chandler Jr.","type":"Role","_key":"104066","_from":"61232","_to":"61227"} +{"$label":"ACTS_IN","name":"Mr. Moran","type":"Role","_key":"104065","_from":"61231","_to":"61227"} +{"$label":"ACTS_IN","name":"David Moran","type":"Role","_key":"104063","_from":"61230","_to":"61227"} +{"$label":"ACTS_IN","name":"Meg Loughlin","type":"Role","_key":"104062","_from":"61229","_to":"61227"} +{"$label":"DIRECTED","_key":"104061","_from":"61228","_to":"61227"} +{"$label":"ACTS_IN","name":"Tao","type":"Role","_key":"104075","_from":"61238","_to":"61236"} +{"$label":"DIRECTED","_key":"104070","_from":"61237","_to":"61236"} +{"$label":"DIRECTED","_key":"115741","_from":"61237","_to":"68151"} +{"$label":"ACTS_IN","name":"Thrax","type":"Role","_key":"104089","_from":"61242","_to":"61239"} +{"$label":"ACTS_IN","name":"Etta Candy","type":"Role","_key":"104085","_from":"61241","_to":"61239"} +{"$label":"ACTS_IN","name":"Little Girl","type":"Role","_key":"104083","_from":"61240","_to":"61239"} +{"$label":"ACTS_IN","name":"Intern (uncredited)","type":"Role","_key":"104106","_from":"61249","_to":"61243"} +{"$label":"ACTS_IN","name":"Las Vegas Policeman (uncredited)","type":"Role","_key":"104104","_from":"61248","_to":"61243"} +{"$label":"ACTS_IN","name":"Janos Skorzeny","type":"Role","_key":"104103","_from":"61247","_to":"61243"} +{"$label":"ACTS_IN","name":"Dr. John O'Brien","type":"Role","_key":"104102","_from":"61246","_to":"61243"} +{"$label":"ACTS_IN","name":"Dr. Robert Makurji","type":"Role","_key":"104101","_from":"61245","_to":"61243"} +{"$label":"DIRECTED","_key":"104091","_from":"61244","_to":"61243"} +{"$label":"DIRECTED","_key":"104123","_from":"61259","_to":"61250"} +{"$label":"DIRECTED","_key":"104122","_from":"61258","_to":"61250"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"104121","_from":"61257","_to":"61250"} +{"$label":"ACTS_IN","name":"Ling Ming","type":"Role","_key":"104119","_from":"61256","_to":"61250"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"104118","_from":"61255","_to":"61250"} +{"$label":"ACTS_IN","name":"Young Handsome Guy","type":"Role","_key":"104116","_from":"61254","_to":"61250"} +{"$label":"ACTS_IN","name":"Casting Director (voice)","type":"Role","_key":"104115","_from":"61253","_to":"61250"} +{"$label":"ACTS_IN","name":"Jessica \/ Cute Blonde","type":"Role","_key":"104114","_from":"61252","_to":"61250"} +{"$label":"ACTS_IN","name":"Georgia","type":"Role","_key":"104112","_from":"61251","_to":"61250"} +{"$label":"ACTS_IN","name":"Rashid Mohammed","type":"Role","_key":"104137","_from":"61263","_to":"61261"} +{"$label":"ACTS_IN","name":"Himself (voice) (as DJ Fuzzy Fantabulous)","type":"Role","_key":"104131","_from":"61262","_to":"61261"} +{"$label":"ACTS_IN","name":"Baron Humbert von Gikkingen","type":"Role","_key":"104144","_from":"61270","_to":"61267"} +{"$label":"ACTS_IN","name":"Haru Yoshioka","type":"Role","_key":"104143","_from":"61269","_to":"61267"} +{"$label":"DIRECTED","_key":"104142","_from":"61268","_to":"61267"} +{"$label":"ACTS_IN","name":"Goemon Ishikawa XIII (voice)","type":"Role","_key":"104150","_from":"61276","_to":"61271"} +{"$label":"ACTS_IN","name":"Daisuke Jigen (voice)","type":"Role","_key":"104149","_from":"61275","_to":"61271"} +{"$label":"ACTS_IN","name":"Fujiko Mine (voice)","type":"Role","_key":"104148","_from":"61274","_to":"61271"} +{"$label":"ACTS_IN","name":"Arsene Lupin III (voice)","type":"Role","_key":"104147","_from":"61273","_to":"61271"} +{"$label":"DIRECTED","_key":"104146","_from":"61272","_to":"61271"} +{"$label":"ACTS_IN","name":"Gen. T. Jefferson","type":"Role","_key":"114401","_from":"61275","_to":"67385"} +{"$label":"ACTS_IN","name":"King Argotron","type":"Role","_key":"104161","_from":"61279","_to":"61278"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121455","_from":"61279","_to":"71349"} +{"$label":"ACTS_IN","name":"Therapist #2","type":"Role","_key":"121401","_from":"61279","_to":"71336"} +{"$label":"ACTS_IN","name":"Mr. Chow","type":"Role","_key":"117497","_from":"61279","_to":"69087"} +{"$label":"ACTS_IN","name":"Schroeder","type":"Role","_key":"104165","_from":"61283","_to":"61280"} +{"$label":"ACTS_IN","name":"Linus Van Pelt","type":"Role","_key":"104164","_from":"61282","_to":"61280"} +{"$label":"ACTS_IN","name":"Lucy Van Pelt","type":"Role","_key":"104163","_from":"61281","_to":"61280"} +{"$label":"ACTS_IN","name":"Albert Anastasia (as Howard I. Smith)","type":"Role","_key":"104181","_from":"61295","_to":"61284"} +{"$label":"ACTS_IN","name":"Loughran","type":"Role","_key":"104180","_from":"61294","_to":"61284"} +{"$label":"ACTS_IN","name":"Mrs. Rose Corsi","type":"Role","_key":"104179","_from":"61293","_to":"61284"} +{"$label":"ACTS_IN","name":"Bug Workman","type":"Role","_key":"104177","_from":"61292","_to":"61284"} +{"$label":"ACTS_IN","name":"Mendy Weiss","type":"Role","_key":"104176","_from":"61291","_to":"61284"} +{"$label":"ACTS_IN","name":"Joe Rosen","type":"Role","_key":"104175","_from":"61290","_to":"61284"} +{"$label":"ACTS_IN","name":"Walter Sage","type":"Role","_key":"104174","_from":"61289","_to":"61284"} +{"$label":"ACTS_IN","name":"Nightclub Singer","type":"Role","_key":"104173","_from":"61288","_to":"61284"} +{"$label":"ACTS_IN","name":"Louis 'Lepke' Bucholter","type":"Role","_key":"104171","_from":"61287","_to":"61284"} +{"$label":"ACTS_IN","name":"Burton Turkus","type":"Role","_key":"104170","_from":"61286","_to":"61284"} +{"$label":"ACTS_IN","name":"Eadie Collins","type":"Role","_key":"104168","_from":"61285","_to":"61284"} +{"$label":"DIRECTED","_key":"104185","_from":"61298","_to":"61297"} +{"$label":"ACTS_IN","name":"Second Vietnamese Businessman","type":"Role","_key":"104205","_from":"61309","_to":"61299"} +{"$label":"ACTS_IN","name":"First Vietnamese Businessman","type":"Role","_key":"104204","_from":"61308","_to":"61299"} +{"$label":"ACTS_IN","name":"Madame Pearl","type":"Role","_key":"104203","_from":"61307","_to":"61299"} +{"$label":"ACTS_IN","name":"G.I.","type":"Role","_key":"104202","_from":"61306","_to":"61299"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"104201","_from":"61305","_to":"61299"} +{"$label":"ACTS_IN","name":"Dalton","type":"Role","_key":"104200","_from":"61304","_to":"61299"} +{"$label":"ACTS_IN","name":"Carter","type":"Role","_key":"104199","_from":"61303","_to":"61299"} +{"$label":"ACTS_IN","name":"Vinh","type":"Role","_key":"104196","_from":"61302","_to":"61299"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"104194","_from":"61301","_to":"61299"} +{"$label":"ACTS_IN","name":"Sen. Porter","type":"Role","_key":"104193","_from":"61300","_to":"61299"} +{"$label":"DIRECTED","_key":"104207","_from":"61311","_to":"61310"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"104215","_from":"61313","_to":"61312"} +{"$label":"ACTS_IN","name":"Frank Boyd","type":"Role","_key":"120781","_from":"61313","_to":"70940"} +{"$label":"ACTS_IN","name":"Folco, the boy","type":"Role","_key":"104217","_from":"61315","_to":"61314"} +{"$label":"ACTS_IN","name":"kpt. MUDr. Ho\u0159ec","type":"Role","_key":"104238","_from":"61329","_to":"61320"} +{"$label":"ACTS_IN","name":"voj. JUDr. Mach\u00e1\u010dek","type":"Role","_key":"104237","_from":"61328","_to":"61320"} +{"$label":"ACTS_IN","name":"des. Hal\u00edk","type":"Role","_key":"104236","_from":"61327","_to":"61320"} +{"$label":"ACTS_IN","name":"voj. Jas\u00e1nek","type":"Role","_key":"104235","_from":"61326","_to":"61320"} +{"$label":"ACTS_IN","name":"por. Tron\u00edk","type":"Role","_key":"104233","_from":"61325","_to":"61320"} +{"$label":"ACTS_IN","name":"por. Ham\u00e1\u010dek","type":"Role","_key":"104232","_from":"61324","_to":"61320"} +{"$label":"ACTS_IN","name":"kpt. Honec","type":"Role","_key":"104231","_from":"61323","_to":"61320"} +{"$label":"ACTS_IN","name":"kpt. O\u0159ech","type":"Role","_key":"104229","_from":"61322","_to":"61320"} +{"$label":"DIRECTED","_key":"104228","_from":"61321","_to":"61320"} +{"$label":"ACTS_IN","name":"Nick Smith","type":"Role","_key":"104241","_from":"61333","_to":"61330"} +{"$label":"ACTS_IN","name":"Tom Townsend","type":"Role","_key":"104240","_from":"61332","_to":"61330"} +{"$label":"DIRECTED","_key":"104239","_from":"61331","_to":"61330"} +{"$label":"DIRECTED","_key":"110673","_from":"61331","_to":"65380"} +{"$label":"DIRECTED","_key":"110010","_from":"61331","_to":"65007"} +{"$label":"ACTS_IN","name":"Des","type":"Role","_key":"110676","_from":"61333","_to":"65380"} +{"$label":"ACTS_IN","name":"Fred Boynton","type":"Role","_key":"110012","_from":"61333","_to":"65007"} +{"$label":"ACTS_IN","name":"Gerard","type":"Role","_key":"104247","_from":"61337","_to":"61334"} +{"$label":"ACTS_IN","name":"Dargelos \/ Agathe","type":"Role","_key":"104246","_from":"61336","_to":"61334"} +{"$label":"ACTS_IN","name":"Elisabeth","type":"Role","_key":"104244","_from":"61335","_to":"61334"} +{"$label":"DIRECTED","_key":"104249","_from":"61339","_to":"61338"} +{"$label":"ACTS_IN","name":"Sgt. McCallum","type":"Role","_key":"104256","_from":"61343","_to":"61341"} +{"$label":"ACTS_IN","name":"Evelyn","type":"Role","_key":"104255","_from":"61342","_to":"61341"} +{"$label":"ACTS_IN","name":"Fern Schoichet","type":"Role","_key":"114314","_from":"61342","_to":"67334"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"104266","_from":"61346","_to":"61344"} +{"$label":"ACTS_IN","name":"Dave Quinson","type":"Role","_key":"104265","_from":"61345","_to":"61344"} +{"$label":"ACTS_IN","name":"Liza","type":"Role","_key":"104276","_from":"61351","_to":"61347"} +{"$label":"ACTS_IN","name":"Maura","type":"Role","_key":"104275","_from":"61350","_to":"61347"} +{"$label":"ACTS_IN","name":"Pad","type":"Role","_key":"104272","_from":"61349","_to":"61347"} +{"$label":"ACTS_IN","name":"Bern","type":"Role","_key":"104271","_from":"61348","_to":"61347"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"104278","_from":"61354","_to":"61352"} +{"$label":"DIRECTED","_key":"104277","_from":"61353","_to":"61352"} +{"$label":"ACTS_IN","name":"Dr. Alred","type":"Role","_key":"104289","_from":"61361","_to":"61355"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"104288","_from":"61360","_to":"61355"} +{"$label":"ACTS_IN","name":"Bertha","type":"Role","_key":"104287","_from":"61359","_to":"61355"} +{"$label":"ACTS_IN","name":"Mark Smith","type":"Role","_key":"104285","_from":"61358","_to":"61355"} +{"$label":"ACTS_IN","name":"Alice Smith","type":"Role","_key":"104284","_from":"61357","_to":"61355"} +{"$label":"DIRECTED","_key":"104282","_from":"61356","_to":"61355"} +{"$label":"ACTS_IN","name":"Lady Anne Dunstan","type":"Role","_key":"104294","_from":"61365","_to":"61363"} +{"$label":"ACTS_IN","name":"Capt. Rawson","type":"Role","_key":"104293","_from":"61364","_to":"61363"} +{"$label":"ACTS_IN","name":"Rip Jaws \/ XLR8","type":"Role","_key":"104307","_from":"61370","_to":"61367"} +{"$label":"ACTS_IN","name":"Grandpa Max","type":"Role","_key":"104305","_from":"61369","_to":"61367"} +{"$label":"ACTS_IN","name":"Gwen Tennyson","type":"Role","_key":"104304","_from":"61368","_to":"61367"} +{"$label":"DIRECTED","_key":"104311","_from":"61372","_to":"61371"} +{"$label":"ACTS_IN","name":"Mrs. Sturak","type":"Role","_key":"104321","_from":"61375","_to":"61374"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104322","_from":"61378","_to":"61377"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120155","_from":"61378","_to":"70571"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110696","_from":"61378","_to":"65396"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110692","_from":"61378","_to":"65392"} +{"$label":"DIRECTED","_key":"104332","_from":"61381","_to":"61380"} +{"$label":"ACTS_IN","name":"Nora","type":"Role","_key":"104336","_from":"61384","_to":"61383"} +{"$label":"DIRECTED","_key":"104348","_from":"61388","_to":"61385"} +{"$label":"ACTS_IN","name":"Archbishop of Canterbury","type":"Role","_key":"104347","_from":"61387","_to":"61385"} +{"$label":"ACTS_IN","name":"Brother John","type":"Role","_key":"104343","_from":"61386","_to":"61385"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"121585","_from":"61387","_to":"71435"} +{"$label":"DIRECTED","_key":"104358","_from":"61394","_to":"61389"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"104357","_from":"61393","_to":"61389"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"104356","_from":"61392","_to":"61389"} +{"$label":"ACTS_IN","name":"Colleen","type":"Role","_key":"104355","_from":"61391","_to":"61389"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"104354","_from":"61390","_to":"61389"} +{"$label":"DIRECTED","_key":"115644","_from":"61394","_to":"68078"} +{"$label":"ACTS_IN","name":"Xavier de Rosnay","type":"Role","_key":"104373","_from":"61400","_to":"61396"} +{"$label":"ACTS_IN","name":"Gaspard Aug\u00e9","type":"Role","_key":"104372","_from":"61399","_to":"61396"} +{"$label":"DIRECTED","_key":"104371","_from":"61398","_to":"61396"} +{"$label":"DIRECTED","_key":"104370","_from":"61397","_to":"61396"} +{"$label":"DIRECTED","_key":"104381","_from":"61406","_to":"61401"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"104380","_from":"61405","_to":"61401"} +{"$label":"ACTS_IN","name":"Nova","type":"Role","_key":"104379","_from":"61404","_to":"61401"} +{"$label":"ACTS_IN","name":"Torino","type":"Role","_key":"104378","_from":"61403","_to":"61401"} +{"$label":"ACTS_IN","name":"Dakota","type":"Role","_key":"104377","_from":"61402","_to":"61401"} +{"$label":"ACTS_IN","name":"Frank Skinner","type":"Role","_key":"104389","_from":"61410","_to":"61409"} +{"$label":"DIRECTED","_key":"104392","_from":"61412","_to":"61411"} +{"$label":"ACTS_IN","name":"Sandra Bishop","type":"Role","_key":"104394","_from":"61414","_to":"61413"} +{"$label":"ACTS_IN","name":"Josefina Maria Paredes dite \/ Fina","type":"Role","_key":"104402","_from":"61417","_to":"61415"} +{"$label":"DIRECTED","_key":"104400","_from":"61416","_to":"61415"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104410","_from":"61421","_to":"61420"} +{"$label":"ACTS_IN","name":"Juju","type":"Role","_key":"104419","_from":"61425","_to":"61422"} +{"$label":"ACTS_IN","name":"Aurore Diamentais","type":"Role","_key":"104417","_from":"61424","_to":"61422"} +{"$label":"DIRECTED","_key":"104412","_from":"61423","_to":"61422"} +{"$label":"DIRECTED","_key":"104423","_from":"61429","_to":"61426"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"104421","_from":"61428","_to":"61426"} +{"$label":"ACTS_IN","name":"Jannicke","type":"Role","_key":"104420","_from":"61427","_to":"61426"} +{"$label":"ACTS_IN","name":"Lanceval","type":"Role","_key":"104440","_from":"61432","_to":"61431"} +{"$label":"DIRECTED","_key":"104451","_from":"61434","_to":"61433"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"104444","_from":"61434","_to":"61433"} +{"$label":"ACTS_IN","name":"Terry","type":"Role","_key":"111501","_from":"61434","_to":"65841"} +{"$label":"ACTS_IN","name":"Madea \/ Brian \/ Joe","type":"Role","_key":"110023","_from":"61434","_to":"65011"} +{"$label":"ACTS_IN","name":"Madea","type":"Role","_key":"109919","_from":"61434","_to":"64948"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"107933","_from":"61434","_to":"63743"} +{"$label":"ACTS_IN","name":"Madea","type":"Role","_key":"105376","_from":"61434","_to":"61998"} +{"$label":"DIRECTED","_key":"111500","_from":"61434","_to":"65841"} +{"$label":"DIRECTED","_key":"110059","_from":"61434","_to":"65011"} +{"$label":"DIRECTED","_key":"109930","_from":"61434","_to":"64948"} +{"$label":"DIRECTED","_key":"109516","_from":"61434","_to":"64682"} +{"$label":"DIRECTED","_key":"107935","_from":"61434","_to":"63743"} +{"$label":"DIRECTED","_key":"105375","_from":"61434","_to":"61998"} +{"$label":"DIRECTED","_key":"104459","_from":"61440","_to":"61435"} +{"$label":"ACTS_IN","name":"Der Alte","type":"Role","_key":"104458","_from":"61439","_to":"61435"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"104455","_from":"61438","_to":"61435"} +{"$label":"ACTS_IN","name":"Tagportier","type":"Role","_key":"104454","_from":"61437","_to":"61435"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"104452","_from":"61436","_to":"61435"} +{"$label":"DIRECTED","_key":"104464","_from":"61443","_to":"61441"} +{"$label":"ACTS_IN","name":"France Laud","type":"Role","_key":"104462","_from":"61442","_to":"61441"} +{"$label":"ACTS_IN","name":"Magalie","type":"Role","_key":"105087","_from":"61442","_to":"61852"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104478","_from":"61451","_to":"61445"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104477","_from":"61450","_to":"61445"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104476","_from":"61449","_to":"61445"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104475","_from":"61448","_to":"61445"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104474","_from":"61447","_to":"61445"} +{"$label":"DIRECTED","_key":"104468","_from":"61446","_to":"61445"} +{"$label":"DIRECTED","_key":"104485","_from":"61459","_to":"61453"} +{"$label":"ACTS_IN","name":"Dieb","type":"Role","_key":"104484","_from":"61458","_to":"61453"} +{"$label":"ACTS_IN","name":"Trude Neugebauer | Postlerin | Jungscharbetreuerin","type":"Role","_key":"104483","_from":"61457","_to":"61453"} +{"$label":"ACTS_IN","name":"Opa Neugebauer | spitzb\u00e4rtiger Nachbar | Brieftr\u00e4ger Zapletal | Nachbarjunge 1 | bewaffneter Drogeriemarkt-Kunde | Pfarrer","type":"Role","_key":"104482","_from":"61456","_to":"61453"} +{"$label":"ACTS_IN","name":"Evelyn Sch\u00f6binger | Kassiererin Haberl","type":"Role","_key":"104481","_from":"61455","_to":"61453"} +{"$label":"ACTS_IN","name":"Edwin Neugebauer | Postler | Nachbarjunge 2","type":"Role","_key":"104480","_from":"61454","_to":"61453"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104495","_from":"61463","_to":"61460"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104489","_from":"61462","_to":"61460"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104488","_from":"61461","_to":"61460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118538","_from":"61461","_to":"69688"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104497","_from":"61465","_to":"61464"} +{"$label":"ACTS_IN","name":"Marlene the Hooker","type":"Role","_key":"104520","_from":"61478","_to":"61466"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"104518","_from":"61477","_to":"61466"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"104517","_from":"61476","_to":"61466"} +{"$label":"ACTS_IN","name":"Slide","type":"Role","_key":"104516","_from":"61475","_to":"61466"} +{"$label":"ACTS_IN","name":"Geronimo","type":"Role","_key":"104514","_from":"61474","_to":"61466"} +{"$label":"ACTS_IN","name":"Lonnie","type":"Role","_key":"104511","_from":"61473","_to":"61466"} +{"$label":"ACTS_IN","name":"Mona","type":"Role","_key":"104509","_from":"61472","_to":"61466"} +{"$label":"ACTS_IN","name":"Snapper","type":"Role","_key":"104507","_from":"61471","_to":"61466"} +{"$label":"ACTS_IN","name":"The Wilson Sisters","type":"Role","_key":"104504","_from":"61470","_to":"61466"} +{"$label":"ACTS_IN","name":"Lindy","type":"Role","_key":"104503","_from":"61469","_to":"61466"} +{"$label":"ACTS_IN","name":"Hippo","type":"Role","_key":"104502","_from":"61468","_to":"61466"} +{"$label":"ACTS_IN","name":"Floyd","type":"Role","_key":"104500","_from":"61467","_to":"61466"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"116119","_from":"61467","_to":"68369"} +{"$label":"ACTS_IN","name":"Father Riley","type":"Role","_key":"107193","_from":"61469","_to":"63224"} +{"$label":"ACTS_IN","name":"Snoe","type":"Role","_key":"111702","_from":"61471","_to":"65947"} +{"$label":"ACTS_IN","name":"Maryann","type":"Role","_key":"105500","_from":"61472","_to":"62082"} +{"$label":"ACTS_IN","name":"'Chocolate Chip' Charlie W. Hobbs","type":"Role","_key":"116435","_from":"61475","_to":"68533"} +{"$label":"ACTS_IN","name":"Mr. Sinha","type":"Role","_key":"104532","_from":"61488","_to":"61483"} +{"$label":"ACTS_IN","name":"Dev Katariya","type":"Role","_key":"104530","_from":"61487","_to":"61483"} +{"$label":"ACTS_IN","name":"Mrs. Gill","type":"Role","_key":"104529","_from":"61486","_to":"61483"} +{"$label":"ACTS_IN","name":"Karan","type":"Role","_key":"104528","_from":"61485","_to":"61483"} +{"$label":"ACTS_IN","name":"Hiten Patel","type":"Role","_key":"104526","_from":"61484","_to":"61483"} +{"$label":"ACTS_IN","name":"Simran's Aunt","type":"Role","_key":"120051","_from":"61486","_to":"70499"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"104546","_from":"61499","_to":"61491"} +{"$label":"ACTS_IN","name":"Lotion","type":"Role","_key":"104545","_from":"61498","_to":"61491"} +{"$label":"ACTS_IN","name":"Celine","type":"Role","_key":"104544","_from":"61497","_to":"61491"} +{"$label":"ACTS_IN","name":"CC","type":"Role","_key":"104543","_from":"61496","_to":"61491"} +{"$label":"ACTS_IN","name":"Donut","type":"Role","_key":"104542","_from":"61495","_to":"61491"} +{"$label":"ACTS_IN","name":"Miu Ho","type":"Role","_key":"104541","_from":"61494","_to":"61491"} +{"$label":"DIRECTED","_key":"104540","_from":"61493","_to":"61491"} +{"$label":"DIRECTED","_key":"104539","_from":"61492","_to":"61491"} +{"$label":"ACTS_IN","name":"'Plague'","type":"Role","_key":"104560","_from":"61506","_to":"61500"} +{"$label":"ACTS_IN","name":"Birger Vanger","type":"Role","_key":"104559","_from":"61505","_to":"61500"} +{"$label":"ACTS_IN","name":"Harald Vanger","type":"Role","_key":"104554","_from":"61504","_to":"61500"} +{"$label":"ACTS_IN","name":"Erika Berger","type":"Role","_key":"104553","_from":"61503","_to":"61500"} +{"$label":"ACTS_IN","name":"Cecilia Vanger","type":"Role","_key":"104552","_from":"61502","_to":"61500"} +{"$label":"ACTS_IN","name":"Lisbeth Salander","type":"Role","_key":"104547","_from":"61501","_to":"61500"} +{"$label":"ACTS_IN","name":"Sara Eriksson","type":"Role","_key":"106914","_from":"61503","_to":"63033"} +{"$label":"DIRECTED","_key":"104567","_from":"61508","_to":"61507"} +{"$label":"ACTS_IN","name":"Dino Ferrari (At 10 years)","type":"Role","_key":"104581","_from":"61517","_to":"61510"} +{"$label":"ACTS_IN","name":"Alfredo Ferrari","type":"Role","_key":"104580","_from":"61516","_to":"61510"} +{"$label":"ACTS_IN","name":"Gilles Villeneuve","type":"Role","_key":"104579","_from":"61515","_to":"61510"} +{"$label":"ACTS_IN","name":"Von Hauseman","type":"Role","_key":"104578","_from":"61514","_to":"61510"} +{"$label":"ACTS_IN","name":"Tazio Nuvolari","type":"Role","_key":"104576","_from":"61513","_to":"61510"} +{"$label":"ACTS_IN","name":"Piero Ferrari","type":"Role","_key":"104575","_from":"61512","_to":"61510"} +{"$label":"ACTS_IN","name":"Dino Ferrari","type":"Role","_key":"104573","_from":"61511","_to":"61510"} +{"$label":"ACTS_IN","name":"Cyril","type":"Role","_key":"110090","_from":"61516","_to":"65055"} +{"$label":"DIRECTED","_key":"104585","_from":"61520","_to":"61519"} +{"$label":"ACTS_IN","name":"South African Veldt Singer","type":"Role","_key":"104601","_from":"61531","_to":"61524"} +{"$label":"ACTS_IN","name":"South African Veldt Singer","type":"Role","_key":"104600","_from":"61530","_to":"61524"} +{"$label":"ACTS_IN","name":"Henry (bartender)","type":"Role","_key":"104599","_from":"61529","_to":"61524"} +{"$label":"ACTS_IN","name":"Parker, Chairman of the Board","type":"Role","_key":"104597","_from":"61528","_to":"61524"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"104596","_from":"61527","_to":"61524"} +{"$label":"ACTS_IN","name":"Thompson (guard)","type":"Role","_key":"104594","_from":"61526","_to":"61524"} +{"$label":"ACTS_IN","name":"Mademoiselle Suzanne Renaud aka Aniseneletette Duringreaud","type":"Role","_key":"104592","_from":"61525","_to":"61524"} +{"$label":"ACTS_IN","name":"Renee Vallon","type":"Role","_key":"117229","_from":"61525","_to":"68960"} +{"$label":"ACTS_IN","name":"Dr. Michael Barkstane","type":"Role","_key":"111243","_from":"61528","_to":"65692"} +{"$label":"ACTS_IN","name":"Jim Richardson \/ Tomato dealer","type":"Role","_key":"104615","_from":"61541","_to":"61532"} +{"$label":"ACTS_IN","name":"Tara Boumdeay","type":"Role","_key":"104613","_from":"61540","_to":"61532"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104611","_from":"61539","_to":"61532"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104610","_from":"61538","_to":"61532"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104609","_from":"61537","_to":"61532"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"104608","_from":"61536","_to":"61532"} +{"$label":"ACTS_IN","name":"Pizza customer","type":"Role","_key":"104607","_from":"61535","_to":"61532"} +{"$label":"ACTS_IN","name":"Sid","type":"Role","_key":"104604","_from":"61534","_to":"61532"} +{"$label":"ACTS_IN","name":"Bob Downs","type":"Role","_key":"104603","_from":"61533","_to":"61532"} +{"$label":"ACTS_IN","name":"Remo","type":"Role","_key":"104617","_from":"61543","_to":"61542"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"104625","_from":"61547","_to":"61544"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"104624","_from":"61546","_to":"61544"} +{"$label":"ACTS_IN","name":"Hugh","type":"Role","_key":"104623","_from":"61545","_to":"61544"} +{"$label":"ACTS_IN","name":"Diane Davis","type":"Role","_key":"104631","_from":"61551","_to":"61549"} +{"$label":"ACTS_IN","name":"Michelle Roberts","type":"Role","_key":"104628","_from":"61550","_to":"61549"} +{"$label":"ACTS_IN","name":"Sarah Wallis","type":"Role","_key":"104636","_from":"61553","_to":"61552"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"110916","_from":"61553","_to":"65519"} +{"$label":"ACTS_IN","name":"Elisa Rider","type":"Role","_key":"104965","_from":"61553","_to":"61762"} +{"$label":"ACTS_IN","name":"President Uljanov","type":"Role","_key":"104662","_from":"61576","_to":"61558"} +{"$label":"ACTS_IN","name":"Pirk's adjutant","type":"Role","_key":"104661","_from":"61575","_to":"61558"} +{"$label":"ACTS_IN","name":"Anatoli","type":"Role","_key":"104660","_from":"61574","_to":"61558"} +{"$label":"ACTS_IN","name":"Vladimir","type":"Role","_key":"104659","_from":"61573","_to":"61558"} +{"$label":"ACTS_IN","name":"Guard at research station","type":"Role","_key":"104658","_from":"61572","_to":"61558"} +{"$label":"ACTS_IN","name":"Talok","type":"Role","_key":"104657","_from":"61571","_to":"61558"} +{"$label":"ACTS_IN","name":"Jeff Cochbrane","type":"Role","_key":"104656","_from":"61570","_to":"61558"} +{"$label":"ACTS_IN","name":"Member of Gang","type":"Role","_key":"104655","_from":"61569","_to":"61558"} +{"$label":"ACTS_IN","name":"Boyfriend","type":"Role","_key":"104654","_from":"61568","_to":"61558"} +{"$label":"ACTS_IN","name":"Girl in Hamburger Restaurant","type":"Role","_key":"104653","_from":"61567","_to":"61558"} +{"$label":"ACTS_IN","name":"Chief of Security Mikhail Garybrandy","type":"Role","_key":"104652","_from":"61566","_to":"61558"} +{"$label":"ACTS_IN","name":"Lt Whip","type":"Role","_key":"104651","_from":"61565","_to":"61558"} +{"$label":"ACTS_IN","name":"P Union scientist","type":"Role","_key":"104650","_from":"61564","_to":"61558"} +{"$label":"ACTS_IN","name":"Festerbester","type":"Role","_key":"104649","_from":"61563","_to":"61558"} +{"$label":"ACTS_IN","name":"P Union science officer","type":"Role","_key":"104648","_from":"61562","_to":"61558"} +{"$label":"ACTS_IN","name":"Info","type":"Role","_key":"104647","_from":"61561","_to":"61558"} +{"$label":"ACTS_IN","name":"Captain Joni K. Sherrypie","type":"Role","_key":"104645","_from":"61560","_to":"61558"} +{"$label":"ACTS_IN","name":"Emperor James B. Pirk","type":"Role","_key":"104644","_from":"61559","_to":"61558"} +{"$label":"ACTS_IN","name":"Lenny Hamilton","type":"Role","_key":"104675","_from":"61584","_to":"61578"} +{"$label":"ACTS_IN","name":"Kitty Davies","type":"Role","_key":"104674","_from":"61583","_to":"61578"} +{"$label":"ACTS_IN","name":"Paul Glenn","type":"Role","_key":"104673","_from":"61582","_to":"61578"} +{"$label":"ACTS_IN","name":"David Hamilton","type":"Role","_key":"104668","_from":"61581","_to":"61578"} +{"$label":"DIRECTED","_key":"104666","_from":"61580","_to":"61578"} +{"$label":"DIRECTED","_key":"104665","_from":"61579","_to":"61578"} +{"$label":"DIRECTED","_key":"104679","_from":"61588","_to":"61585"} +{"$label":"ACTS_IN","name":"Yoshinori","type":"Role","_key":"104677","_from":"61587","_to":"61585"} +{"$label":"ACTS_IN","name":"Miyuki","type":"Role","_key":"104676","_from":"61586","_to":"61585"} +{"$label":"ACTS_IN","name":"Bombardier (uncredited)","type":"Role","_key":"104693","_from":"61595","_to":"61589"} +{"$label":"ACTS_IN","name":"Interrogation Officer","type":"Role","_key":"104691","_from":"61594","_to":"61589"} +{"$label":"ACTS_IN","name":"Lieutenant Zimmerman","type":"Role","_key":"104689","_from":"61593","_to":"61589"} +{"$label":"ACTS_IN","name":"Lieutenant Bishop","type":"Role","_key":"104688","_from":"61592","_to":"61589"} +{"$label":"ACTS_IN","name":"Major Cobb","type":"Role","_key":"104687","_from":"61591","_to":"61589"} +{"$label":"ACTS_IN","name":"Sergeant McIllhenny","type":"Role","_key":"104685","_from":"61590","_to":"61589"} +{"$label":"ACTS_IN","name":"Ken McLaughlin","type":"Role","_key":"118346","_from":"61590","_to":"69573"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"119756","_from":"61591","_to":"70323"} +{"$label":"ACTS_IN","name":"Scott Andrews","type":"Role","_key":"116697","_from":"61595","_to":"68695"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104725","_from":"61612","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104724","_from":"61611","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104723","_from":"61610","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104722","_from":"61609","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104721","_from":"61608","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104720","_from":"61607","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104719","_from":"61606","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104718","_from":"61605","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104717","_from":"61604","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104716","_from":"61603","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104715","_from":"61602","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104714","_from":"61601","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104713","_from":"61600","_to":"61599"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114192","_from":"61602","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112790","_from":"61605","_to":"66597"} +{"$label":"ACTS_IN","name":"College student","type":"Role","_key":"104743","_from":"61620","_to":"61613"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"104739","_from":"61619","_to":"61613"} +{"$label":"ACTS_IN","name":"KFC Manager","type":"Role","_key":"104738","_from":"61618","_to":"61613"} +{"$label":"ACTS_IN","name":"Albert's Mother","type":"Role","_key":"104736","_from":"61617","_to":"61613"} +{"$label":"ACTS_IN","name":"KFC Counterman (as Carlos Cabarcas)","type":"Role","_key":"104734","_from":"61616","_to":"61613"} +{"$label":"ACTS_IN","name":"Waitress (Uncredited)","type":"Role","_key":"104732","_from":"61615","_to":"61613"} +{"$label":"DIRECTED","_key":"104726","_from":"61614","_to":"61613"} +{"$label":"ACTS_IN","name":"Malini","type":"Role","_key":"104748","_from":"61623","_to":"61621"} +{"$label":"ACTS_IN","name":"Dia","type":"Role","_key":"104747","_from":"61622","_to":"61621"} +{"$label":"ACTS_IN","name":"Winnie the Mackerel","type":"Role","_key":"104763","_from":"61635","_to":"61625"} +{"$label":"ACTS_IN","name":"Fat Annie","type":"Role","_key":"104762","_from":"61634","_to":"61625"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"104759","_from":"61633","_to":"61625"} +{"$label":"ACTS_IN","name":"Trevor Browne","type":"Role","_key":"104757","_from":"61632","_to":"61625"} +{"$label":"ACTS_IN","name":"Rory Browne","type":"Role","_key":"104756","_from":"61631","_to":"61625"} +{"$label":"ACTS_IN","name":"Dermot Browne","type":"Role","_key":"104755","_from":"61630","_to":"61625"} +{"$label":"ACTS_IN","name":"Simon Browne","type":"Role","_key":"104754","_from":"61629","_to":"61625"} +{"$label":"ACTS_IN","name":"Cathy Browne","type":"Role","_key":"104753","_from":"61628","_to":"61625"} +{"$label":"ACTS_IN","name":"Mark Browne","type":"Role","_key":"104751","_from":"61627","_to":"61625"} +{"$label":"ACTS_IN","name":"Marion Monks","type":"Role","_key":"104750","_from":"61626","_to":"61625"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"113867","_from":"61633","_to":"67074"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104768","_from":"61643","_to":"61639"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104767","_from":"61642","_to":"61639"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104766","_from":"61641","_to":"61639"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104765","_from":"61640","_to":"61639"} +{"$label":"DIRECTED","_key":"104785","_from":"61649","_to":"61647"} +{"$label":"ACTS_IN","name":"Reza","type":"Role","_key":"104783","_from":"61648","_to":"61647"} +{"$label":"ACTS_IN","name":"Ali","type":"Role","_key":"104797","_from":"61658","_to":"61650"} +{"$label":"ACTS_IN","name":"Crewman","type":"Role","_key":"104796","_from":"61657","_to":"61650"} +{"$label":"ACTS_IN","name":"Gaunt Sailor","type":"Role","_key":"104795","_from":"61656","_to":"61650"} +{"$label":"ACTS_IN","name":"Sadi","type":"Role","_key":"104794","_from":"61655","_to":"61650"} +{"$label":"ACTS_IN","name":"Harufa","type":"Role","_key":"104793","_from":"61654","_to":"61650"} +{"$label":"ACTS_IN","name":"Caliph","type":"Role","_key":"104790","_from":"61653","_to":"61650"} +{"$label":"ACTS_IN","name":"Barani the Genie","type":"Role","_key":"104789","_from":"61652","_to":"61650"} +{"$label":"ACTS_IN","name":"Sinbad","type":"Role","_key":"104786","_from":"61651","_to":"61650"} +{"$label":"ACTS_IN","name":"Ralphie Hilliard","type":"Role","_key":"116808","_from":"61652","_to":"68770"} +{"$label":"ACTS_IN","name":"Estelle Collingwood","type":"Role","_key":"104807","_from":"61666","_to":"61659"} +{"$label":"ACTS_IN","name":"Dr. John Collingwood","type":"Role","_key":"104806","_from":"61665","_to":"61659"} +{"$label":"ACTS_IN","name":"Junior Stillo","type":"Role","_key":"104805","_from":"61664","_to":"61659"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"104804","_from":"61663","_to":"61659"} +{"$label":"ACTS_IN","name":"Fred 'Weasel' Podowski","type":"Role","_key":"104803","_from":"61662","_to":"61659"} +{"$label":"ACTS_IN","name":"Phyllis Stone","type":"Role","_key":"104801","_from":"61661","_to":"61659"} +{"$label":"ACTS_IN","name":"Mari Collingwood","type":"Role","_key":"104800","_from":"61660","_to":"61659"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104813","_from":"61672","_to":"61668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104812","_from":"61671","_to":"61668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"104811","_from":"61670","_to":"61668"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"104810","_from":"61669","_to":"61668"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"104814","_from":"61675","_to":"61674"} +{"$label":"DIRECTED","_key":"104824","_from":"61677","_to":"61676"} +{"$label":"ACTS_IN","name":"El Presidente","type":"Role","_key":"104832","_from":"61683","_to":"61678"} +{"$label":"ACTS_IN","name":"Howard","type":"Role","_key":"104831","_from":"61682","_to":"61678"} +{"$label":"ACTS_IN","name":"Judy","type":"Role","_key":"104830","_from":"61681","_to":"61678"} +{"$label":"ACTS_IN","name":"Lloyd","type":"Role","_key":"104826","_from":"61680","_to":"61678"} +{"$label":"ACTS_IN","name":"Bruce","type":"Role","_key":"104825","_from":"61679","_to":"61678"} +{"$label":"ACTS_IN","name":"Eddie Palermo","type":"Role","_key":"117503","_from":"61682","_to":"69087"} +{"$label":"DIRECTED","_key":"104836","_from":"61686","_to":"61684"} +{"$label":"ACTS_IN","name":"Prem","type":"Role","_key":"104834","_from":"61685","_to":"61684"} +{"$label":"ACTS_IN","name":"Bessie","type":"Role","_key":"104844","_from":"61693","_to":"61687"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"104843","_from":"61692","_to":"61687"} +{"$label":"ACTS_IN","name":"Adele","type":"Role","_key":"104842","_from":"61691","_to":"61687"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"104841","_from":"61690","_to":"61687"} +{"$label":"ACTS_IN","name":"Mrs. Fairfax","type":"Role","_key":"104839","_from":"61689","_to":"61687"} +{"$label":"ACTS_IN","name":"Jane Eyre","type":"Role","_key":"104837","_from":"61688","_to":"61687"} +{"$label":"DIRECTED","_key":"104848","_from":"61695","_to":"61694"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104867","_from":"61705","_to":"61702"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104866","_from":"61704","_to":"61702"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"104864","_from":"61703","_to":"61702"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112969","_from":"61704","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112944","_from":"61704","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112908","_from":"61704","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112869","_from":"61704","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112840","_from":"61704","_to":"66619"} +{"$label":"DIRECTED","_key":"104885","_from":"61708","_to":"61706"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"104873","_from":"61707","_to":"61706"} +{"$label":"DIRECTED","_key":"104889","_from":"61710","_to":"61709"} +{"$label":"DIRECTED","_key":"104897","_from":"61715","_to":"61711"} +{"$label":"DIRECTED","_key":"104896","_from":"61714","_to":"61711"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"104895","_from":"61713","_to":"61711"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"104891","_from":"61712","_to":"61711"} +{"$label":"ACTS_IN","name":"Laura Baxter","type":"Role","_key":"119290","_from":"61713","_to":"70090"} +{"$label":"ACTS_IN","name":"The Giant Clown","type":"Role","_key":"104903","_from":"61727","_to":"61721"} +{"$label":"ACTS_IN","name":"The Little Clown","type":"Role","_key":"104902","_from":"61726","_to":"61721"} +{"$label":"ACTS_IN","name":"The Clowness","type":"Role","_key":"104901","_from":"61725","_to":"61721"} +{"$label":"ACTS_IN","name":"The White Clown","type":"Role","_key":"104900","_from":"61724","_to":"61721"} +{"$label":"ACTS_IN","name":"The Loyal Whistler","type":"Role","_key":"104899","_from":"61723","_to":"61721"} +{"$label":"ACTS_IN","name":"The Dead Clown","type":"Role","_key":"104898","_from":"61722","_to":"61721"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"104908","_from":"61734","_to":"61730"} +{"$label":"ACTS_IN","name":"Carlos","type":"Role","_key":"104907","_from":"61733","_to":"61730"} +{"$label":"ACTS_IN","name":"Isamar","type":"Role","_key":"104905","_from":"61732","_to":"61730"} +{"$label":"ACTS_IN","name":"Ale","type":"Role","_key":"104904","_from":"61731","_to":"61730"} +{"$label":"DIRECTED","_key":"104915","_from":"61737","_to":"61736"} +{"$label":"DIRECTED","_key":"119823","_from":"61737","_to":"70367"} +{"$label":"DIRECTED","_key":"113708","_from":"61737","_to":"67013"} +{"$label":"ACTS_IN","name":"The Soothsayer","type":"Role","_key":"104923","_from":"61740","_to":"61738"} +{"$label":"DIRECTED","_key":"104917","_from":"61739","_to":"61738"} +{"$label":"DIRECTED","_key":"104926","_from":"61745","_to":"61744"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"104941","_from":"61749","_to":"61746"} +{"$label":"ACTS_IN","name":"Kathryn","type":"Role","_key":"104940","_from":"61748","_to":"61746"} +{"$label":"ACTS_IN","name":"Doo-Dah","type":"Role","_key":"104933","_from":"61747","_to":"61746"} +{"$label":"ACTS_IN","name":"Coach Owen Clark","type":"Role","_key":"104960","_from":"61759","_to":"61751"} +{"$label":"ACTS_IN","name":"Daniel Bowen","type":"Role","_key":"104956","_from":"61758","_to":"61751"} +{"$label":"ACTS_IN","name":"Mike Bowen","type":"Role","_key":"104955","_from":"61757","_to":"61751"} +{"$label":"ACTS_IN","name":"Kate Dorset","type":"Role","_key":"104953","_from":"61756","_to":"61751"} +{"$label":"ACTS_IN","name":"Donny","type":"Role","_key":"104952","_from":"61755","_to":"61751"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"104951","_from":"61754","_to":"61751"} +{"$label":"ACTS_IN","name":"Curt","type":"Role","_key":"104950","_from":"61753","_to":"61751"} +{"$label":"ACTS_IN","name":"Johnny Bowen","type":"Role","_key":"104947","_from":"61752","_to":"61751"} +{"$label":"DIRECTED","_key":"104961","_from":"61761","_to":"61760"} +{"$label":"ACTS_IN","name":"Homer Weems - Cowboy","type":"Role","_key":"104980","_from":"61773","_to":"61763"} +{"$label":"ACTS_IN","name":"Jimmy Phillips - Cowboy","type":"Role","_key":"104979","_from":"61772","_to":"61763"} +{"$label":"ACTS_IN","name":"Hardy Fimps - Cowboy","type":"Role","_key":"104978","_from":"61771","_to":"61763"} +{"$label":"ACTS_IN","name":"Cimarron - Cowboy","type":"Role","_key":"104977","_from":"61770","_to":"61763"} +{"$label":"ACTS_IN","name":"Stuttering Bob - Cowboy","type":"Role","_key":"104976","_from":"61769","_to":"61763"} +{"$label":"ACTS_IN","name":"Charlie Schwartz - Cowboy (as Stephen Hudis)","type":"Role","_key":"104975","_from":"61768","_to":"61763"} +{"$label":"ACTS_IN","name":"Weedy - Cowboy (as Norman Howell Jr.)","type":"Role","_key":"104974","_from":"61767","_to":"61763"} +{"$label":"ACTS_IN","name":"Steve - Cowboy","type":"Role","_key":"104972","_from":"61766","_to":"61763"} +{"$label":"ACTS_IN","name":"Dan - Cowboy","type":"Role","_key":"104971","_from":"61765","_to":"61763"} +{"$label":"ACTS_IN","name":"Fats - Cowboy","type":"Role","_key":"104970","_from":"61764","_to":"61763"} +{"$label":"ACTS_IN","name":"Lieutenant Nigel","type":"Role","_key":"106350","_from":"61769","_to":"62650"} +{"$label":"ACTS_IN","name":"Anthony Black","type":"Role","_key":"107197","_from":"61770","_to":"63224"} +{"$label":"DIRECTED","_key":"105024","_from":"61812","_to":"61775"} +{"$label":"ACTS_IN","name":"Shigekuni Yamamoto-Genryuusai","type":"Role","_key":"105022","_from":"61811","_to":"61775"} +{"$label":"ACTS_IN","name":"Kisuke Urahara","type":"Role","_key":"105021","_from":"61810","_to":"61775"} +{"$label":"ACTS_IN","name":"Retsu Unohana","type":"Role","_key":"105020","_from":"61809","_to":"61775"} +{"$label":"ACTS_IN","name":"Juushirou Ukitake","type":"Role","_key":"105019","_from":"61808","_to":"61775"} +{"$label":"ACTS_IN","name":"Ururu Tsumugiya","type":"Role","_key":"105018","_from":"61807","_to":"61775"} +{"$label":"ACTS_IN","name":"Tessai Tsukabishi","type":"Role","_key":"105017","_from":"61806","_to":"61775"} +{"$label":"ACTS_IN","name":"Rin Tsubokura","type":"Role","_key":"105016","_from":"61805","_to":"61775"} +{"$label":"ACTS_IN","name":"Yasutora Sado","type":"Role","_key":"105015","_from":"61804","_to":"61775"} +{"$label":"ACTS_IN","name":"Rangiku Matsumoto","type":"Role","_key":"105014","_from":"61803","_to":"61775"} +{"$label":"ACTS_IN","name":"Ikkaku Madarame","type":"Role","_key":"105013","_from":"61802","_to":"61775"} +{"$label":"ACTS_IN","name":"Shunsui Kyouraku","type":"Role","_key":"105012","_from":"61801","_to":"61775"} +{"$label":"ACTS_IN","name":"Yachiru Kusajishi","type":"Role","_key":"105011","_from":"61800","_to":"61775"} +{"$label":"ACTS_IN","name":"Mayuri Kurotsuchi","type":"Role","_key":"105010","_from":"61799","_to":"61775"} +{"$label":"ACTS_IN","name":"Yuzu Kurosaki","type":"Role","_key":"105007","_from":"61798","_to":"61775"} +{"$label":"ACTS_IN","name":"Byakuya Kuchiki","type":"Role","_key":"105006","_from":"61797","_to":"61775"} +{"$label":"ACTS_IN","name":"Sajin Komamura","type":"Role","_key":"105005","_from":"61796","_to":"61775"} +{"$label":"ACTS_IN","name":"Uryuu Ishida","type":"Role","_key":"105003","_from":"61795","_to":"61775"} +{"$label":"ACTS_IN","name":"Tetsuzaemon Iba","type":"Role","_key":"105001","_from":"61794","_to":"61775"} +{"$label":"ACTS_IN","name":"Toshiro Hitsugaya","type":"Role","_key":"105000","_from":"61793","_to":"61775"} +{"$label":"ACTS_IN","name":"Shuuhei Hisagi","type":"Role","_key":"104999","_from":"61792","_to":"61775"} +{"$label":"ACTS_IN","name":"Jinta Hanakari","type":"Role","_key":"104998","_from":"61791","_to":"61775"} +{"$label":"ACTS_IN","name":"Sasakibe Choujiro","type":"Role","_key":"104997","_from":"61790","_to":"61775"} +{"$label":"ACTS_IN","name":"Yumichika Ayasegawa","type":"Role","_key":"104996","_from":"61789","_to":"61775"} +{"$label":"ACTS_IN","name":"Renji Abarai","type":"Role","_key":"104995","_from":"61788","_to":"61775"} +{"$label":"ACTS_IN","name":"Mue","type":"Role","_key":"104994","_from":"61787","_to":"61775"} +{"$label":"ACTS_IN","name":"Bau","type":"Role","_key":"104993","_from":"61786","_to":"61775"} +{"$label":"ACTS_IN","name":"Riyan","type":"Role","_key":"104992","_from":"61785","_to":"61775"} +{"$label":"ACTS_IN","name":"Benin","type":"Role","_key":"104991","_from":"61784","_to":"61775"} +{"$label":"ACTS_IN","name":"Jai","type":"Role","_key":"104990","_from":"61783","_to":"61775"} +{"$label":"ACTS_IN","name":"Kon","type":"Role","_key":"104989","_from":"61782","_to":"61775"} +{"$label":"ACTS_IN","name":"Akon","type":"Role","_key":"104988","_from":"61781","_to":"61775"} +{"$label":"ACTS_IN","name":"Soi Fon","type":"Role","_key":"104987","_from":"61780","_to":"61775"} +{"$label":"ACTS_IN","name":"Ganryu","type":"Role","_key":"104986","_from":"61779","_to":"61775"} +{"$label":"ACTS_IN","name":"Senna","type":"Role","_key":"104985","_from":"61778","_to":"61775"} +{"$label":"ACTS_IN","name":"Rukia Kuchiki","type":"Role","_key":"104984","_from":"61777","_to":"61775"} +{"$label":"ACTS_IN","name":"Ichigo Kurosaki","type":"Role","_key":"104983","_from":"61776","_to":"61775"} +{"$label":"ACTS_IN","name":"Ichigo Kurosaki","type":"Role","_key":"111340","_from":"61776","_to":"65761"} +{"$label":"ACTS_IN","name":"Ichigo Kurosaki","type":"Role","_key":"111125","_from":"61776","_to":"65636"} +{"$label":"ACTS_IN","name":"Hisana Kuchiki","type":"Role","_key":"111339","_from":"61777","_to":"65761"} +{"$label":"ACTS_IN","name":"Rukia Kuchiki","type":"Role","_key":"111128","_from":"61777","_to":"65636"} +{"$label":"ACTS_IN","name":"Kon","type":"Role","_key":"111344","_from":"61782","_to":"65761"} +{"$label":"ACTS_IN","name":"Yumichika Ayasegawa","type":"Role","_key":"111345","_from":"61789","_to":"65761"} +{"$label":"ACTS_IN","name":"Borma","type":"Role","_key":"117880","_from":"61790","_to":"69295"} +{"$label":"ACTS_IN","name":"Borma","type":"Role","_key":"117690","_from":"61790","_to":"69171"} +{"$label":"ACTS_IN","name":"Sasakibe Choujiro","type":"Role","_key":"111346","_from":"61790","_to":"65761"} +{"$label":"ACTS_IN","name":"Jinta Hanakari","type":"Role","_key":"111347","_from":"61791","_to":"65761"} +{"$label":"ACTS_IN","name":"Pandy","type":"Role","_key":"106551","_from":"61791","_to":"62786"} +{"$label":"ACTS_IN","name":"Shuuhei Hisagi","type":"Role","_key":"111348","_from":"61792","_to":"65761"} +{"$label":"ACTS_IN","name":"Toshiro Hitsugaya","type":"Role","_key":"111349","_from":"61793","_to":"65761"} +{"$label":"ACTS_IN","name":"Tetsuzaemon Iba","type":"Role","_key":"111350","_from":"61794","_to":"65761"} +{"$label":"ACTS_IN","name":"Sasuke Uchiha","type":"Role","_key":"113244","_from":"61795","_to":"66722"} +{"$label":"ACTS_IN","name":"Sasuke Uchiha","type":"Role","_key":"110455","_from":"61795","_to":"65255"} +{"$label":"ACTS_IN","name":"Sajin Komamura","type":"Role","_key":"111351","_from":"61796","_to":"65761"} +{"$label":"ACTS_IN","name":"Byakuya Kuchiki","type":"Role","_key":"111352","_from":"61797","_to":"65761"} +{"$label":"ACTS_IN","name":"Mayuri Kurotsuchi","type":"Role","_key":"111354","_from":"61799","_to":"65761"} +{"$label":"ACTS_IN","name":"Yachiru Kusajishi","type":"Role","_key":"111355","_from":"61800","_to":"65761"} +{"$label":"ACTS_IN","name":"Shunsui Kyouraku","type":"Role","_key":"111356","_from":"61801","_to":"65761"} +{"$label":"ACTS_IN","name":"Ikkaku Madarame","type":"Role","_key":"111357","_from":"61802","_to":"65761"} +{"$label":"ACTS_IN","name":"Oruto","type":"Role","_key":"110727","_from":"61802","_to":"65413"} +{"$label":"ACTS_IN","name":"Rangiku Matsumoto","type":"Role","_key":"111358","_from":"61803","_to":"65761"} +{"$label":"ACTS_IN","name":"Ururu Tsumugiya","type":"Role","_key":"111361","_from":"61807","_to":"65761"} +{"$label":"ACTS_IN","name":"Retsu Unohana","type":"Role","_key":"111363","_from":"61809","_to":"65761"} +{"$label":"ACTS_IN","name":"Kisuke Urahara","type":"Role","_key":"111364","_from":"61810","_to":"65761"} +{"$label":"ACTS_IN","name":"Shigekuni Yamamoto-Genryuusai","type":"Role","_key":"111366","_from":"61811","_to":"65761"} +{"$label":"DIRECTED","_key":"111368","_from":"61812","_to":"65761"} +{"$label":"ACTS_IN","name":"Claire Bonheur","type":"Role","_key":"105031","_from":"61814","_to":"61813"} +{"$label":"ACTS_IN","name":"Farid Baraheri","type":"Role","_key":"105047","_from":"61817","_to":"61815"} +{"$label":"ACTS_IN","name":"Zahra Baraheri","type":"Role","_key":"105046","_from":"61816","_to":"61815"} +{"$label":"ACTS_IN","name":"Ulla","type":"Role","_key":"105061","_from":"61831","_to":"61818"} +{"$label":"ACTS_IN","name":"Rektor","type":"Role","_key":"105060","_from":"61830","_to":"61818"} +{"$label":"ACTS_IN","name":"Jerry","type":"Role","_key":"105059","_from":"61829","_to":"61818"} +{"$label":"ACTS_IN","name":"Fotografen","type":"Role","_key":"105058","_from":"61828","_to":"61818"} +{"$label":"ACTS_IN","name":"Dansuppbjudare","type":"Role","_key":"105057","_from":"61827","_to":"61818"} +{"$label":"ACTS_IN","name":"Arne","type":"Role","_key":"105056","_from":"61826","_to":"61818"} +{"$label":"ACTS_IN","name":"Roffe","type":"Role","_key":"105055","_from":"61825","_to":"61818"} +{"$label":"ACTS_IN","name":"Sven","type":"Role","_key":"105053","_from":"61824","_to":"61818"} +{"$label":"ACTS_IN","name":"Veterin\u00e4r Krook","type":"Role","_key":"105052","_from":"61823","_to":"61818"} +{"$label":"ACTS_IN","name":"Kenta","type":"Role","_key":"105051","_from":"61822","_to":"61818"} +{"$label":"ACTS_IN","name":"Redakt\u00f6r Melin","type":"Role","_key":"105050","_from":"61821","_to":"61818"} +{"$label":"ACTS_IN","name":"Birgitta","type":"Role","_key":"105049","_from":"61820","_to":"61818"} +{"$label":"DIRECTED","_key":"105048","_from":"61819","_to":"61818"} +{"$label":"ACTS_IN","name":"Oskar L\u00f6vgren","type":"Role","_key":"115047","_from":"61821","_to":"67744"} +{"$label":"ACTS_IN","name":"Lady G","type":"Role","_key":"105065","_from":"61835","_to":"61833"} +{"$label":"ACTS_IN","name":"Valet","type":"Role","_key":"105063","_from":"61834","_to":"61833"} +{"$label":"DIRECTED","_key":"105075","_from":"61841","_to":"61836"} +{"$label":"ACTS_IN","name":"Coach Finstock","type":"Role","_key":"105073","_from":"61840","_to":"61836"} +{"$label":"ACTS_IN","name":"Stiles","type":"Role","_key":"105072","_from":"61839","_to":"61836"} +{"$label":"ACTS_IN","name":"Gustavson","type":"Role","_key":"105071","_from":"61838","_to":"61836"} +{"$label":"ACTS_IN","name":"Nicki","type":"Role","_key":"105070","_from":"61837","_to":"61836"} +{"$label":"ACTS_IN","name":"Himself (2005 Footage Only)","type":"Role","_key":"105080","_from":"61847","_to":"61842"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105079","_from":"61846","_to":"61842"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105078","_from":"61845","_to":"61842"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105077","_from":"61844","_to":"61842"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105076","_from":"61843","_to":"61842"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110162","_from":"61843","_to":"65101"} +{"$label":"DIRECTED","_key":"105082","_from":"61849","_to":"61848"} +{"$label":"ACTS_IN","name":"Sagha","type":"Role","_key":"105092","_from":"61853","_to":"61852"} +{"$label":"ACTS_IN","name":"Dolor\u00e8s","type":"Role","_key":"105096","_from":"61855","_to":"61854"} +{"$label":"ACTS_IN","name":"Maxine","type":"Role","_key":"121574","_from":"61855","_to":"71429"} +{"$label":"ACTS_IN","name":"Sarah \/ Yvonne","type":"Role","_key":"120307","_from":"61855","_to":"70660"} +{"$label":"DIRECTED","_key":"105102","_from":"61858","_to":"61857"} +{"$label":"ACTS_IN","name":"Mr. Ibbs","type":"Role","_key":"105114","_from":"61862","_to":"61861"} +{"$label":"ACTS_IN","name":"Dr. Phillip Barbay","type":"Role","_key":"105124","_from":"61865","_to":"61864"} +{"$label":"DIRECTED","_key":"105128","_from":"61867","_to":"61866"} +{"$label":"ACTS_IN","name":"Siddie","type":"Role","_key":"105135","_from":"61869","_to":"61868"} +{"$label":"ACTS_IN","name":"Charles Horman","type":"Role","_key":"105139","_from":"61872","_to":"61871"} +{"$label":"DIRECTED","_key":"105148","_from":"61876","_to":"61873"} +{"$label":"ACTS_IN","name":"Velma Dinkley","type":"Role","_key":"105146","_from":"61875","_to":"61873"} +{"$label":"ACTS_IN","name":"Phantom Virus","type":"Role","_key":"105145","_from":"61874","_to":"61873"} +{"$label":"ACTS_IN","name":"Joseph (as Gary Sturgis)","type":"Role","_key":"109506","_from":"61874","_to":"64682"} +{"$label":"ACTS_IN","name":"Velma","type":"Role","_key":"113629","_from":"61875","_to":"66966"} +{"$label":"DIRECTED","_key":"113625","_from":"61876","_to":"66966"} +{"$label":"DIRECTED","_key":"105160","_from":"61879","_to":"61878"} +{"$label":"ACTS_IN","name":"Claudia Macpherson","type":"Role","_key":"105159","_from":"61883","_to":"61878"} +{"$label":"ACTS_IN","name":"Habib Halal","type":"Role","_key":"105157","_from":"61882","_to":"61878"} +{"$label":"ACTS_IN","name":"Bobo Gigliotti","type":"Role","_key":"105156","_from":"61881","_to":"61878"} +{"$label":"ACTS_IN","name":"Sleek the Elite","type":"Role","_key":"105155","_from":"61880","_to":"61878"} +{"$label":"ACTS_IN","name":"Pauly Falzoni","type":"Role","_key":"105154","_from":"61879","_to":"61878"} +{"$label":"ACTS_IN","name":"Pippo","type":"Role","_key":"105169","_from":"61890","_to":"61884"} +{"$label":"ACTS_IN","name":"Lappola","type":"Role","_key":"105168","_from":"61889","_to":"61884"} +{"$label":"ACTS_IN","name":"Nick H\u00fcrzler","type":"Role","_key":"105166","_from":"61888","_to":"61884"} +{"$label":"ACTS_IN","name":"Sibylle Ruf","type":"Role","_key":"105165","_from":"61887","_to":"61884"} +{"$label":"ACTS_IN","name":"Christa Oberholzer","type":"Role","_key":"105163","_from":"61886","_to":"61884"} +{"$label":"ACTS_IN","name":"Anna Ruf","type":"Role","_key":"105162","_from":"61885","_to":"61884"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105177","_from":"61894","_to":"61891"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105176","_from":"61893","_to":"61891"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105173","_from":"61892","_to":"61891"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105183","_from":"61900","_to":"61895"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105182","_from":"61899","_to":"61895"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105181","_from":"61898","_to":"61895"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"105179","_from":"61897","_to":"61895"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"105178","_from":"61896","_to":"61895"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"105468","_from":"61896","_to":"62061"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113170","_from":"61898","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113130","_from":"61898","_to":"66692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113117","_from":"61898","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113063","_from":"61898","_to":"66676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113042","_from":"61898","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113007","_from":"61898","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112998","_from":"61898","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105470","_from":"61899","_to":"62061"} +{"$label":"DIRECTED","_key":"105189","_from":"61906","_to":"61902"} +{"$label":"ACTS_IN","name":"Joey Kramer","type":"Role","_key":"105188","_from":"61905","_to":"61902"} +{"$label":"ACTS_IN","name":"Brad Whitford","type":"Role","_key":"105187","_from":"61904","_to":"61902"} +{"$label":"ACTS_IN","name":"Tom Hamilton","type":"Role","_key":"105186","_from":"61903","_to":"61902"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105195","_from":"61912","_to":"61907"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105194","_from":"61911","_to":"61907"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105192","_from":"61910","_to":"61907"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105191","_from":"61909","_to":"61907"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105190","_from":"61908","_to":"61907"} +{"$label":"ACTS_IN","name":"Dennis Clay","type":"Role","_key":"105211","_from":"61916","_to":"61913"} +{"$label":"ACTS_IN","name":"Ray Melendez","type":"Role","_key":"105210","_from":"61915","_to":"61913"} +{"$label":"ACTS_IN","name":"Dana Rogers","type":"Role","_key":"105206","_from":"61914","_to":"61913"} +{"$label":"ACTS_IN","name":"Athena","type":"Role","_key":"105216","_from":"61922","_to":"61920"} +{"$label":"ACTS_IN","name":"Achilles","type":"Role","_key":"105215","_from":"61921","_to":"61920"} +{"$label":"ACTS_IN","name":"Ragnar","type":"Role","_key":"115449","_from":"61921","_to":"67972"} +{"$label":"ACTS_IN","name":"Le client de l'h\u00f4tel","type":"Role","_key":"105228","_from":"61930","_to":"61923"} +{"$label":"ACTS_IN","name":"Le r\u00e9ceptionniste de l'h\u00f4tel","type":"Role","_key":"105227","_from":"61929","_to":"61923"} +{"$label":"ACTS_IN","name":"La fille de l'armurier","type":"Role","_key":"105226","_from":"61928","_to":"61923"} +{"$label":"ACTS_IN","name":"La femme de l'armurier","type":"Role","_key":"105225","_from":"61927","_to":"61923"} +{"$label":"ACTS_IN","name":"L'armurier","type":"Role","_key":"105224","_from":"61926","_to":"61923"} +{"$label":"ACTS_IN","name":"Marine Guignebont","type":"Role","_key":"105222","_from":"61925","_to":"61923"} +{"$label":"DIRECTED","_key":"105218","_from":"61924","_to":"61923"} +{"$label":"DIRECTED","_key":"105234","_from":"61935","_to":"61933"} +{"$label":"ACTS_IN","name":"Bartender at Wedding","type":"Role","_key":"105231","_from":"61934","_to":"61933"} +{"$label":"DIRECTED","_key":"105250","_from":"61941","_to":"61936"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"105249","_from":"61940","_to":"61936"} +{"$label":"ACTS_IN","name":"Jean Bledish","type":"Role","_key":"105244","_from":"61939","_to":"61936"} +{"$label":"ACTS_IN","name":"Catherine Blois","type":"Role","_key":"105241","_from":"61938","_to":"61936"} +{"$label":"ACTS_IN","name":"C\u00e9line Ladislav","type":"Role","_key":"105238","_from":"61937","_to":"61936"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120640","_from":"61937","_to":"70851"} +{"$label":"ACTS_IN","name":"Rudy","type":"Role","_key":"105256","_from":"61943","_to":"61942"} +{"$label":"DIRECTED","_key":"105261","_from":"61946","_to":"61944"} +{"$label":"ACTS_IN","name":"Amy Butlin","type":"Role","_key":"105258","_from":"61945","_to":"61944"} +{"$label":"ACTS_IN","name":"Hausfrau","type":"Role","_key":"105288","_from":"61958","_to":"61949"} +{"$label":"ACTS_IN","name":"Tante Melanie","type":"Role","_key":"105286","_from":"61957","_to":"61949"} +{"$label":"ACTS_IN","name":"Vater B\u00e4schteli","type":"Role","_key":"105285","_from":"61956","_to":"61949"} +{"$label":"ACTS_IN","name":"Fritzli B\u00fchler","type":"Role","_key":"105284","_from":"61955","_to":"61949"} +{"$label":"ACTS_IN","name":"Vater Wrigley","type":"Role","_key":"105283","_from":"61954","_to":"61949"} +{"$label":"ACTS_IN","name":"Eduard","type":"Role","_key":"105281","_from":"61953","_to":"61949"} +{"$label":"ACTS_IN","name":"B\u00e4schteli","type":"Role","_key":"105280","_from":"61952","_to":"61949"} +{"$label":"ACTS_IN","name":"Wrigley","type":"Role","_key":"105279","_from":"61951","_to":"61949"} +{"$label":"ACTS_IN","name":"Eugen","type":"Role","_key":"105278","_from":"61950","_to":"61949"} +{"$label":"ACTS_IN","name":"Starman","type":"Role","_key":"105293","_from":"61961","_to":"61960"} +{"$label":"DIRECTED","_key":"105303","_from":"61969","_to":"61968"} +{"$label":"DIRECTED","_key":"105314","_from":"61971","_to":"61970"} +{"$label":"ACTS_IN","name":"Salman","type":"Role","_key":"105312","_from":"61971","_to":"61970"} +{"$label":"ACTS_IN","name":"Christopher Robin (voice)","type":"Role","_key":"105323","_from":"61974","_to":"61972"} +{"$label":"DIRECTED","_key":"105315","_from":"61973","_to":"61972"} +{"$label":"DIRECTED","_key":"105333","_from":"61979","_to":"61977"} +{"$label":"ACTS_IN","name":"Archbishop Thorncrest \/ Archbishop's brother","type":"Role","_key":"105327","_from":"61978","_to":"61977"} +{"$label":"DIRECTED","_key":"120225","_from":"61979","_to":"70600"} +{"$label":"DIRECTED","_key":"108898","_from":"61979","_to":"64354"} +{"$label":"DIRECTED","_key":"105334","_from":"61981","_to":"61980"} +{"$label":"DIRECTED","_key":"105351","_from":"61985","_to":"61983"} +{"$label":"ACTS_IN","name":"Janice Musslewhite","type":"Role","_key":"105347","_from":"61984","_to":"61983"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"105359","_from":"61990","_to":"61986"} +{"$label":"ACTS_IN","name":"Timmy","type":"Role","_key":"105356","_from":"61989","_to":"61986"} +{"$label":"ACTS_IN","name":"Alvaro","type":"Role","_key":"105355","_from":"61988","_to":"61986"} +{"$label":"DIRECTED","_key":"105352","_from":"61987","_to":"61986"} +{"$label":"ACTS_IN","name":"Lee Means","type":"Role","_key":"105366","_from":"61995","_to":"61992"} +{"$label":"ACTS_IN","name":"Elliot Jenkins","type":"Role","_key":"105365","_from":"61994","_to":"61992"} +{"$label":"ACTS_IN","name":"Abby Sellers","type":"Role","_key":"105362","_from":"61993","_to":"61992"} +{"$label":"ACTS_IN","name":"Molly McMullen","type":"Role","_key":"109035","_from":"61993","_to":"64434"} +{"$label":"ACTS_IN","name":"Chuck","type":"Role","_key":"105385","_from":"62003","_to":"61998"} +{"$label":"ACTS_IN","name":"Cora Simmons","type":"Role","_key":"105384","_from":"62002","_to":"61998"} +{"$label":"ACTS_IN","name":"Mr. Brown","type":"Role","_key":"105383","_from":"62001","_to":"61998"} +{"$label":"ACTS_IN","name":"Linda Davis","type":"Role","_key":"105379","_from":"62000","_to":"61998"} +{"$label":"ACTS_IN","name":"Candace \"Candy\" Washington","type":"Role","_key":"105378","_from":"61999","_to":"61998"} +{"$label":"ACTS_IN","name":"Leroy Brown","type":"Role","_key":"109920","_from":"62001","_to":"64948"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105779","_from":"62001","_to":"62277"} +{"$label":"ACTS_IN","name":"Cora Brown","type":"Role","_key":"109921","_from":"62002","_to":"64948"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105778","_from":"62002","_to":"62277"} +{"$label":"ACTS_IN","name":"Marsha Gilbert","type":"Role","_key":"105394","_from":"62011","_to":"62004"} +{"$label":"ACTS_IN","name":"Kimberly","type":"Role","_key":"105393","_from":"62010","_to":"62004"} +{"$label":"ACTS_IN","name":"Blair","type":"Role","_key":"105392","_from":"62009","_to":"62004"} +{"$label":"ACTS_IN","name":"Lisa Cross","type":"Role","_key":"105391","_from":"62008","_to":"62004"} +{"$label":"ACTS_IN","name":"Alexa","type":"Role","_key":"105390","_from":"62007","_to":"62004"} +{"$label":"ACTS_IN","name":"Cayenne","type":"Role","_key":"105389","_from":"62006","_to":"62004"} +{"$label":"ACTS_IN","name":"Drew Patterson","type":"Role","_key":"105388","_from":"62005","_to":"62004"} +{"$label":"ACTS_IN","name":"Sonia","type":"Role","_key":"112180","_from":"62011","_to":"66245"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105403","_from":"62018","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105402","_from":"62017","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105401","_from":"62016","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105400","_from":"62015","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105399","_from":"62014","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105398","_from":"62013","_to":"62012"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105434","_from":"62017","_to":"62029"} +{"$label":"ACTS_IN","name":"Marnie Littlefield","type":"Role","_key":"105412","_from":"62023","_to":"62020"} +{"$label":"ACTS_IN","name":"Aunt Zelda","type":"Role","_key":"105411","_from":"62022","_to":"62020"} +{"$label":"ACTS_IN","name":"Aunt Hilda","type":"Role","_key":"105410","_from":"62021","_to":"62020"} +{"$label":"ACTS_IN","name":"Maxine Stuart","type":"Role","_key":"105427","_from":"62028","_to":"62026"} +{"$label":"DIRECTED","_key":"105423","_from":"62027","_to":"62026"} +{"$label":"DIRECTED","_key":"109937","_from":"62027","_to":"64954"} +{"$label":"ACTS_IN","name":"Corrado","type":"Role","_key":"105449","_from":"62040","_to":"62031"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"105447","_from":"62039","_to":"62031"} +{"$label":"ACTS_IN","name":"Martina","type":"Role","_key":"105444","_from":"62038","_to":"62031"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"105443","_from":"62037","_to":"62031"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"105442","_from":"62036","_to":"62031"} +{"$label":"ACTS_IN","name":"Giulia","type":"Role","_key":"105441","_from":"62035","_to":"62031"} +{"$label":"ACTS_IN","name":"Caterina","type":"Role","_key":"105440","_from":"62034","_to":"62031"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"105438","_from":"62033","_to":"62031"} +{"$label":"DIRECTED","_key":"105437","_from":"62032","_to":"62031"} +{"$label":"ACTS_IN","name":"Teresa","type":"Role","_key":"109451","_from":"62035","_to":"64659"} +{"$label":"ACTS_IN","name":"Nin\u00ec Cassara","type":"Role","_key":"119156","_from":"62040","_to":"70024"} +{"$label":"ACTS_IN","name":"Madame Shoe","type":"Role","_key":"105457","_from":"62047","_to":"62042"} +{"$label":"ACTS_IN","name":"Margherita","type":"Role","_key":"105454","_from":"62046","_to":"62042"} +{"$label":"ACTS_IN","name":"Elisabetta","type":"Role","_key":"105453","_from":"62045","_to":"62042"} +{"$label":"ACTS_IN","name":"Duchessa di York","type":"Role","_key":"105452","_from":"62044","_to":"62042"} +{"$label":"ACTS_IN","name":"Riccardo III","type":"Role","_key":"105451","_from":"62043","_to":"62042"} +{"$label":"DIRECTED","_key":"105450","_from":"62043","_to":"62042"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105460","_from":"62051","_to":"62048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105459","_from":"62050","_to":"62048"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105458","_from":"62049","_to":"62048"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114950","_from":"62049","_to":"67701"} +{"$label":"ACTS_IN","name":"Travis Pastrana","type":"Role","_key":"107949","_from":"62049","_to":"63751"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105462","_from":"62049","_to":"62054"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105461","_from":"62049","_to":"62053"} +{"$label":"ACTS_IN","name":"Ronnie Renner","type":"Role","_key":"107951","_from":"62050","_to":"63751"} +{"$label":"ACTS_IN","name":"Kenny Bartram","type":"Role","_key":"107953","_from":"62051","_to":"63751"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"105467","_from":"62060","_to":"62055"} +{"$label":"ACTS_IN","name":"Cathal Cheunt","type":"Role","_key":"105466","_from":"62059","_to":"62055"} +{"$label":"ACTS_IN","name":"Desmond","type":"Role","_key":"105465","_from":"62058","_to":"62055"} +{"$label":"ACTS_IN","name":"Helena","type":"Role","_key":"105464","_from":"62057","_to":"62055"} +{"$label":"DIRECTED","_key":"105463","_from":"62056","_to":"62055"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105473","_from":"62064","_to":"62061"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105471","_from":"62063","_to":"62061"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"105469","_from":"62062","_to":"62061"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"105478","_from":"62067","_to":"62065"} +{"$label":"ACTS_IN","name":"Dr. Grace Holloway","type":"Role","_key":"105477","_from":"62066","_to":"62065"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105481","_from":"62071","_to":"62069"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"105480","_from":"62070","_to":"62069"} +{"$label":"DIRECTED","_key":"105486","_from":"62077","_to":"62074"} +{"$label":"ACTS_IN","name":"Alison Smith","type":"Role","_key":"105483","_from":"62076","_to":"62074"} +{"$label":"ACTS_IN","name":"Thomas Colpeper, JP","type":"Role","_key":"105482","_from":"62075","_to":"62074"} +{"$label":"ACTS_IN","name":"Commodore Wolfgang Schrepke, Deutsche Marine","type":"Role","_key":"113820","_from":"62075","_to":"67051"} +{"$label":"DIRECTED","_key":"120335","_from":"62077","_to":"70681"} +{"$label":"DIRECTED","_key":"113292","_from":"62077","_to":"66734"} +{"$label":"DIRECTED","_key":"109062","_from":"62077","_to":"64443"} +{"$label":"ACTS_IN","name":"Laury Jackson","type":"Role","_key":"105493","_from":"62081","_to":"62078"} +{"$label":"ACTS_IN","name":"Sherry Wilson","type":"Role","_key":"105491","_from":"62080","_to":"62078"} +{"$label":"ACTS_IN","name":"Peggy Van Alden","type":"Role","_key":"105488","_from":"62079","_to":"62078"} +{"$label":"ACTS_IN","name":"Dan Dunkley","type":"Role","_key":"105515","_from":"62088","_to":"62083"} +{"$label":"ACTS_IN","name":"Vera Dunkley","type":"Role","_key":"105514","_from":"62087","_to":"62083"} +{"$label":"ACTS_IN","name":"Betsy","type":"Role","_key":"105513","_from":"62086","_to":"62083"} +{"$label":"ACTS_IN","name":"Rex Williamson","type":"Role","_key":"105510","_from":"62085","_to":"62083"} +{"$label":"ACTS_IN","name":"Kellyanne Williamson","type":"Role","_key":"105508","_from":"62084","_to":"62083"} +{"$label":"ACTS_IN","name":"Christopher Caruso","type":"Role","_key":"121429","_from":"62085","_to":"71341"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"110311","_from":"62085","_to":"65182"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"108624","_from":"62085","_to":"64191"} +{"$label":"ACTS_IN","name":"Tony Stilano","type":"Role","_key":"106830","_from":"62085","_to":"62978"} +{"$label":"DIRECTED","_key":"105517","_from":"62091","_to":"62090"} +{"$label":"DIRECTED","_key":"117251","_from":"62091","_to":"68966"} +{"$label":"ACTS_IN","name":"Joao","type":"Role","_key":"105532","_from":"62099","_to":"62092"} +{"$label":"ACTS_IN","name":"Annick","type":"Role","_key":"105530","_from":"62098","_to":"62092"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"105528","_from":"62097","_to":"62092"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"105526","_from":"62096","_to":"62092"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"105524","_from":"62095","_to":"62092"} +{"$label":"DIRECTED","_key":"105520","_from":"62094","_to":"62092"} +{"$label":"DIRECTED","_key":"105519","_from":"62093","_to":"62092"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"105539","_from":"62106","_to":"62100"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"105538","_from":"62105","_to":"62100"} +{"$label":"ACTS_IN","name":"Kath","type":"Role","_key":"105536","_from":"62104","_to":"62100"} +{"$label":"ACTS_IN","name":"Tyson","type":"Role","_key":"105535","_from":"62103","_to":"62100"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"105534","_from":"62102","_to":"62100"} +{"$label":"ACTS_IN","name":"Anthea","type":"Role","_key":"105533","_from":"62101","_to":"62100"} +{"$label":"ACTS_IN","name":"Jasper Pledge \/ Fake Griff","type":"Role","_key":"105554","_from":"62116","_to":"62108"} +{"$label":"ACTS_IN","name":"Jasper Chan","type":"Role","_key":"105553","_from":"62115","_to":"62108"} +{"$label":"ACTS_IN","name":"Jasper","type":"Role","_key":"105552","_from":"62114","_to":"62108"} +{"$label":"ACTS_IN","name":"Perez Hilton (as Perez Hilton)","type":"Role","_key":"105550","_from":"62113","_to":"62108"} +{"$label":"ACTS_IN","name":"Luis","type":"Role","_key":"105549","_from":"62112","_to":"62108"} +{"$label":"ACTS_IN","name":"Jarod","type":"Role","_key":"105548","_from":"62111","_to":"62108"} +{"$label":"ACTS_IN","name":"Griff","type":"Role","_key":"105547","_from":"62110","_to":"62108"} +{"$label":"ACTS_IN","name":"Andy Wilson","type":"Role","_key":"105546","_from":"62109","_to":"62108"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"113885","_from":"62110","_to":"67083"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105559","_from":"62120","_to":"62117"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105558","_from":"62119","_to":"62117"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105556","_from":"62118","_to":"62117"} +{"$label":"ACTS_IN","name":"Julie Benson - Assistant Coach (as Jack\u00e9e)","type":"Role","_key":"118658","_from":"62118","_to":"69764"} +{"$label":"ACTS_IN","name":"Elder Gilford","type":"Role","_key":"105569","_from":"62125","_to":"62121"} +{"$label":"ACTS_IN","name":"Elder Harmon","type":"Role","_key":"105568","_from":"62124","_to":"62121"} +{"$label":"ACTS_IN","name":"Julie Taylor (as Rebekah Jordan)","type":"Role","_key":"105563","_from":"62123","_to":"62121"} +{"$label":"DIRECTED","_key":"105560","_from":"62122","_to":"62121"} +{"$label":"DIRECTED","_key":"121292","_from":"62122","_to":"71262"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"110919","_from":"62125","_to":"65519"} +{"$label":"DIRECTED","_key":"105576","_from":"62127","_to":"62126"} +{"$label":"ACTS_IN","name":"Sally Richmond","type":"Role","_key":"105581","_from":"62131","_to":"62128"} +{"$label":"ACTS_IN","name":"Jennifer Fitch","type":"Role","_key":"105579","_from":"62130","_to":"62128"} +{"$label":"ACTS_IN","name":"Ray Pye","type":"Role","_key":"105578","_from":"62129","_to":"62128"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"105585","_from":"62134","_to":"62132"} +{"$label":"ACTS_IN","name":"Bilal","type":"Role","_key":"105584","_from":"62133","_to":"62132"} +{"$label":"ACTS_IN","name":"Catherine","type":"Role","_key":"119461","_from":"62134","_to":"70178"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105588","_from":"62137","_to":"62135"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105587","_from":"62136","_to":"62135"} +{"$label":"ACTS_IN","name":"Frederic","type":"Role","_key":"105595","_from":"62142","_to":"62139"} +{"$label":"ACTS_IN","name":"Maj. Gen. Stanley","type":"Role","_key":"105594","_from":"62141","_to":"62139"} +{"$label":"ACTS_IN","name":"Mabel","type":"Role","_key":"105593","_from":"62140","_to":"62139"} +{"$label":"DIRECTED","_key":"105624","_from":"62172","_to":"62143"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105623","_from":"62171","_to":"62143"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"105622","_from":"62170","_to":"62143"} +{"$label":"ACTS_IN","name":"Dr. Alimantado","type":"Role","_key":"105621","_from":"62169","_to":"62143"} +{"$label":"ACTS_IN","name":"John Dread","type":"Role","_key":"105620","_from":"62168","_to":"62143"} +{"$label":"ACTS_IN","name":"Easy Snapping","type":"Role","_key":"105619","_from":"62167","_to":"62143"} +{"$label":"ACTS_IN","name":"Prince Hammer","type":"Role","_key":"105618","_from":"62166","_to":"62143"} +{"$label":"ACTS_IN","name":"T. Dread","type":"Role","_key":"105617","_from":"62165","_to":"62143"} +{"$label":"ACTS_IN","name":"Knatty Garfield","type":"Role","_key":"105616","_from":"62164","_to":"62143"} +{"$label":"ACTS_IN","name":"Jah Wise","type":"Role","_key":"105615","_from":"62163","_to":"62143"} +{"$label":"ACTS_IN","name":"Natty Majesty","type":"Role","_key":"105614","_from":"62162","_to":"62143"} +{"$label":"ACTS_IN","name":"Jeep Man","type":"Role","_key":"105613","_from":"62161","_to":"62143"} +{"$label":"ACTS_IN","name":"Bongo Herman","type":"Role","_key":"105612","_from":"62160","_to":"62143"} +{"$label":"ACTS_IN","name":"Leggo Beast","type":"Role","_key":"105611","_from":"62159","_to":"62143"} +{"$label":"ACTS_IN","name":"Jack Ruby","type":"Role","_key":"105610","_from":"62158","_to":"62143"} +{"$label":"ACTS_IN","name":"Honeyball","type":"Role","_key":"105609","_from":"62157","_to":"62143"} +{"$label":"ACTS_IN","name":"Higher","type":"Role","_key":"105608","_from":"62156","_to":"62143"} +{"$label":"ACTS_IN","name":"Dillinger","type":"Role","_key":"105607","_from":"62155","_to":"62143"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105606","_from":"62154","_to":"62143"} +{"$label":"ACTS_IN","name":"Big Youth","type":"Role","_key":"105605","_from":"62153","_to":"62143"} +{"$label":"ACTS_IN","name":"Robbie","type":"Role","_key":"105604","_from":"62152","_to":"62143"} +{"$label":"ACTS_IN","name":"Kiddus-I","type":"Role","_key":"105603","_from":"62151","_to":"62143"} +{"$label":"ACTS_IN","name":"Burning Spear","type":"Role","_key":"105602","_from":"62150","_to":"62143"} +{"$label":"ACTS_IN","name":"Jakes","type":"Role","_key":"105601","_from":"62149","_to":"62143"} +{"$label":"ACTS_IN","name":"Sunshine","type":"Role","_key":"105600","_from":"62148","_to":"62143"} +{"$label":"ACTS_IN","name":"Madgie","type":"Role","_key":"105599","_from":"62147","_to":"62143"} +{"$label":"ACTS_IN","name":"Jah Tooth","type":"Role","_key":"105598","_from":"62146","_to":"62143"} +{"$label":"ACTS_IN","name":"Dirty Harry","type":"Role","_key":"105597","_from":"62145","_to":"62143"} +{"$label":"ACTS_IN","name":"Horsemouth","type":"Role","_key":"105596","_from":"62144","_to":"62143"} +{"$label":"ACTS_IN","name":"Woman at Door (voice)","type":"Role","_key":"105631","_from":"62175","_to":"62173"} +{"$label":"ACTS_IN","name":"Old Man (voice)","type":"Role","_key":"105630","_from":"62174","_to":"62173"} +{"$label":"DIRECTED","_key":"105638","_from":"62180","_to":"62179"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105653","_from":"62187","_to":"62183"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105652","_from":"62186","_to":"62183"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105651","_from":"62185","_to":"62183"} +{"$label":"DIRECTED","_key":"105647","_from":"62184","_to":"62183"} +{"$label":"ACTS_IN","name":"Renaldo","type":"Role","_key":"105669","_from":"62197","_to":"62189"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"105668","_from":"62196","_to":"62189"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"105667","_from":"62195","_to":"62189"} +{"$label":"ACTS_IN","name":"Scooter","type":"Role","_key":"105666","_from":"62194","_to":"62189"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"105665","_from":"62193","_to":"62189"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"105664","_from":"62192","_to":"62189"} +{"$label":"ACTS_IN","name":"Blondie","type":"Role","_key":"105661","_from":"62191","_to":"62189"} +{"$label":"ACTS_IN","name":"X","type":"Role","_key":"105660","_from":"62190","_to":"62189"} +{"$label":"ACTS_IN","name":"Matt (as Jonathan Trent)","type":"Role","_key":"115325","_from":"62193","_to":"67901"} +{"$label":"ACTS_IN","name":"Padrona di casa","type":"Role","_key":"105677","_from":"62204","_to":"62198"} +{"$label":"ACTS_IN","name":"Gea","type":"Role","_key":"105675","_from":"62203","_to":"62198"} +{"$label":"ACTS_IN","name":"Ioan","type":"Role","_key":"105674","_from":"62202","_to":"62198"} +{"$label":"ACTS_IN","name":"Mimmo","type":"Role","_key":"105673","_from":"62201","_to":"62198"} +{"$label":"ACTS_IN","name":"FFSS - Station Manager","type":"Role","_key":"105672","_from":"62200","_to":"62198"} +{"$label":"DIRECTED","_key":"105670","_from":"62199","_to":"62198"} +{"$label":"ACTS_IN","name":"The Native Boy","type":"Role","_key":"105690","_from":"62211","_to":"62205"} +{"$label":"ACTS_IN","name":"The Drag Queen","type":"Role","_key":"105689","_from":"62210","_to":"62205"} +{"$label":"ACTS_IN","name":"The Editor","type":"Role","_key":"105688","_from":"62209","_to":"62205"} +{"$label":"ACTS_IN","name":"Jerri","type":"Role","_key":"105684","_from":"62208","_to":"62205"} +{"$label":"ACTS_IN","name":"Bernie","type":"Role","_key":"105682","_from":"62207","_to":"62205"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"105681","_from":"62206","_to":"62205"} +{"$label":"ACTS_IN","name":"Amica di Aurora","type":"Role","_key":"105708","_from":"62226","_to":"62212"} +{"$label":"ACTS_IN","name":"Sorella di Italia","type":"Role","_key":"105707","_from":"62225","_to":"62212"} +{"$label":"ACTS_IN","name":"Amante di Tanino","type":"Role","_key":"105706","_from":"62224","_to":"62212"} +{"$label":"ACTS_IN","name":"Amica di Aurora \/ 3.Amica di Italia \/ Immacolata","type":"Role","_key":"105705","_from":"62223","_to":"62212"} +{"$label":"ACTS_IN","name":"Sisina \/ 2.Amica di Italia \/ Tabu'","type":"Role","_key":"105704","_from":"62222","_to":"62212"} +{"$label":"ACTS_IN","name":"Sorella di Aurora \/ Amica di Italia","type":"Role","_key":"105703","_from":"62221","_to":"62212"} +{"$label":"ACTS_IN","name":"Madre di Italia \/ Vigilante","type":"Role","_key":"105702","_from":"62220","_to":"62212"} +{"$label":"ACTS_IN","name":"Cognato di Aurora \/ Barbiere \/ Il Pornomane","type":"Role","_key":"105701","_from":"62219","_to":"62212"} +{"$label":"ACTS_IN","name":"Ragazzo della bancarella","type":"Role","_key":"105700","_from":"62218","_to":"62212"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"105699","_from":"62217","_to":"62212"} +{"$label":"ACTS_IN","name":"Pistoletta","type":"Role","_key":"105698","_from":"62216","_to":"62212"} +{"$label":"ACTS_IN","name":"Don Arcangelo","type":"Role","_key":"105697","_from":"62215","_to":"62212"} +{"$label":"ACTS_IN","name":"Sebastiano","type":"Role","_key":"105696","_from":"62214","_to":"62212"} +{"$label":"ACTS_IN","name":"Amica di Aurora \/ Carmela","type":"Role","_key":"105695","_from":"62213","_to":"62212"} +{"$label":"DIRECTED","_key":"105715","_from":"62233","_to":"62228"} +{"$label":"ACTS_IN","name":"Tai Ling","type":"Role","_key":"105714","_from":"62232","_to":"62228"} +{"$label":"ACTS_IN","name":"Mai Ling","type":"Role","_key":"105713","_from":"62231","_to":"62228"} +{"$label":"ACTS_IN","name":"Laurel Dodge","type":"Role","_key":"105712","_from":"62230","_to":"62228"} +{"$label":"ACTS_IN","name":"Wesley Johnson","type":"Role","_key":"105711","_from":"62229","_to":"62228"} +{"$label":"ACTS_IN","name":"Turk","type":"Role","_key":"116911","_from":"62229","_to":"68821"} +{"$label":"ACTS_IN","name":"Emmett Quincy","type":"Role","_key":"112777","_from":"62229","_to":"66595"} +{"$label":"DIRECTED","_key":"117136","_from":"62233","_to":"68916"} +{"$label":"DIRECTED","_key":"117118","_from":"62233","_to":"68910"} +{"$label":"DIRECTED","_key":"117109","_from":"62233","_to":"68905"} +{"$label":"DIRECTED","_key":"116933","_from":"62233","_to":"68831"} +{"$label":"DIRECTED","_key":"116913","_from":"62233","_to":"68821"} +{"$label":"DIRECTED","_key":"115428","_from":"62233","_to":"67964"} +{"$label":"ACTS_IN","name":"Sunday","type":"Role","_key":"105720","_from":"62238","_to":"62234"} +{"$label":"ACTS_IN","name":"Monday","type":"Role","_key":"105719","_from":"62237","_to":"62234"} +{"$label":"ACTS_IN","name":"Saturday","type":"Role","_key":"105718","_from":"62236","_to":"62234"} +{"$label":"ACTS_IN","name":"Tuesday","type":"Role","_key":"105717","_from":"62235","_to":"62234"} +{"$label":"ACTS_IN","name":"First","type":"Role","_key":"105733","_from":"62247","_to":"62239"} +{"$label":"ACTS_IN","name":"Gigi Ralli","type":"Role","_key":"105732","_from":"62246","_to":"62239"} +{"$label":"ACTS_IN","name":"Silvio Valle","type":"Role","_key":"105730","_from":"62245","_to":"62239"} +{"$label":"ACTS_IN","name":"Koka","type":"Role","_key":"105729","_from":"62244","_to":"62239"} +{"$label":"ACTS_IN","name":"Claudio Alatri","type":"Role","_key":"105727","_from":"62243","_to":"62239"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"105726","_from":"62242","_to":"62239"} +{"$label":"ACTS_IN","name":"Juli","type":"Role","_key":"105724","_from":"62241","_to":"62239"} +{"$label":"ACTS_IN","name":"Riki Kandinsky \/ Riccardo Soldani","type":"Role","_key":"105722","_from":"62240","_to":"62239"} +{"$label":"DIRECTED","_key":"105721","_from":"62240","_to":"62239"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"105739","_from":"62250","_to":"62249"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"105753","_from":"62257","_to":"62251"} +{"$label":"ACTS_IN","name":"Mrs. Parkley","type":"Role","_key":"105752","_from":"62256","_to":"62251"} +{"$label":"ACTS_IN","name":"Jess Stearns","type":"Role","_key":"105751","_from":"62255","_to":"62251"} +{"$label":"ACTS_IN","name":"Matthew Grant","type":"Role","_key":"105748","_from":"62254","_to":"62251"} +{"$label":"ACTS_IN","name":"Maggie Grant","type":"Role","_key":"105747","_from":"62253","_to":"62251"} +{"$label":"ACTS_IN","name":"Anna Witting","type":"Role","_key":"105746","_from":"62252","_to":"62251"} +{"$label":"ACTS_IN","name":"Lidia Joanne Simmons","type":"Role","_key":"121318","_from":"62252","_to":"71281"} +{"$label":"ACTS_IN","name":"Anna Witting","type":"Role","_key":"105787","_from":"62252","_to":"62284"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"105789","_from":"62253","_to":"62284"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"105797","_from":"62254","_to":"62284"} +{"$label":"ACTS_IN","name":"Jess Stearns","type":"Role","_key":"105795","_from":"62255","_to":"62284"} +{"$label":"ACTS_IN","name":"Mrs. Mc Cllellan","type":"Role","_key":"105762","_from":"62262","_to":"62258"} +{"$label":"ACTS_IN","name":"Aiden Kearsley","type":"Role","_key":"105760","_from":"62261","_to":"62258"} +{"$label":"ACTS_IN","name":"Dorothy Mills","type":"Role","_key":"105757","_from":"62260","_to":"62258"} +{"$label":"DIRECTED","_key":"105755","_from":"62259","_to":"62258"} +{"$label":"DIRECTED","_key":"105763","_from":"62264","_to":"62263"} +{"$label":"ACTS_IN","name":"Bamse","type":"Role","_key":"105770","_from":"62269","_to":"62268"} +{"$label":"ACTS_IN","name":"Bamse","type":"Role","_key":"116265","_from":"62269","_to":"68449"} +{"$label":"ACTS_IN","name":"Bamse","type":"Role","_key":"116264","_from":"62269","_to":"68447"} +{"$label":"DIRECTED","_key":"105775","_from":"62272","_to":"62270"} +{"$label":"ACTS_IN","name":"Terri","type":"Role","_key":"105774","_from":"62271","_to":"62270"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"105777","_from":"62276","_to":"62274"} +{"$label":"DIRECTED","_key":"105776","_from":"62275","_to":"62274"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"105784","_from":"62283","_to":"62279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105783","_from":"62282","_to":"62279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105782","_from":"62281","_to":"62279"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105781","_from":"62280","_to":"62279"} +{"$label":"ACTS_IN","name":"Meg","type":"Role","_key":"105796","_from":"62285","_to":"62284"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"105807","_from":"62290","_to":"62286"} +{"$label":"ACTS_IN","name":"Kannu","type":"Role","_key":"105804","_from":"62289","_to":"62286"} +{"$label":"ACTS_IN","name":"Saroja","type":"Role","_key":"105801","_from":"62288","_to":"62286"} +{"$label":"ACTS_IN","name":"Srinivasan IPS","type":"Role","_key":"105800","_from":"62287","_to":"62286"} +{"$label":"ACTS_IN","name":"Unnikrishnan","type":"Role","_key":"115071","_from":"62287","_to":"67764"} +{"$label":"ACTS_IN","name":"Kiran Kumar","type":"Role","_key":"110381","_from":"62288","_to":"65223"} +{"$label":"ACTS_IN","name":"Anamika Joshi","type":"Role","_key":"120680","_from":"62290","_to":"70876"} +{"$label":"ACTS_IN","name":"Naina Shah","type":"Role","_key":"106542","_from":"62290","_to":"62780"} +{"$label":"ACTS_IN","name":"Cynthia 'Cindy' Cronenberg","type":"Role","_key":"105811","_from":"62293","_to":"62291"} +{"$label":"ACTS_IN","name":"James Carpenter 'J.C.' Hooper","type":"Role","_key":"105810","_from":"62292","_to":"62291"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"105818","_from":"62296","_to":"62294"} +{"$label":"ACTS_IN","name":"Yetta","type":"Role","_key":"105817","_from":"62295","_to":"62294"} +{"$label":"ACTS_IN","name":"Major Kita","type":"Role","_key":"105834","_from":"62305","_to":"62299"} +{"$label":"ACTS_IN","name":"Xilian General","type":"Role","_key":"105833","_from":"62304","_to":"62299"} +{"$label":"ACTS_IN","name":"Anna Otonashi","type":"Role","_key":"105831","_from":"62303","_to":"62299"} +{"$label":"ACTS_IN","name":"Captain Douglas Gordon","type":"Role","_key":"105828","_from":"62302","_to":"62299"} +{"$label":"ACTS_IN","name":"Miyuki Otonashi","type":"Role","_key":"105827","_from":"62301","_to":"62299"} +{"$label":"ACTS_IN","name":"Shin'ichi \u00d4zaki","type":"Role","_key":"105826","_from":"62300","_to":"62299"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113939","_from":"62302","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112583","_from":"62302","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112570","_from":"62302","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112556","_from":"62302","_to":"66467"} +{"$label":"ACTS_IN","name":"Major Sho Kuroki","type":"Role","_key":"115682","_from":"62305","_to":"68098"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"105841","_from":"62307","_to":"62306"} +{"$label":"ACTS_IN","name":"Captain Hans","type":"Role","_key":"105845","_from":"62309","_to":"62308"} +{"$label":"DIRECTED","_key":"105858","_from":"62314","_to":"62311"} +{"$label":"ACTS_IN","name":"Jignesh","type":"Role","_key":"105855","_from":"62313","_to":"62311"} +{"$label":"ACTS_IN","name":"Manik Dasgupta","type":"Role","_key":"105852","_from":"62312","_to":"62311"} +{"$label":"DIRECTED","_key":"105861","_from":"62317","_to":"62315"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"105860","_from":"62316","_to":"62315"} +{"$label":"ACTS_IN","name":"Gita","type":"Role","_key":"105863","_from":"62319","_to":"62318"} +{"$label":"ACTS_IN","name":"Ian Wyndham","type":"Role","_key":"105866","_from":"62321","_to":"62320"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"105870","_from":"62327","_to":"62325"} +{"$label":"DIRECTED","_key":"105869","_from":"62326","_to":"62325"} +{"$label":"ACTS_IN","name":"Rebecca's Mother","type":"Role","_key":"105888","_from":"62341","_to":"62328"} +{"$label":"ACTS_IN","name":"Dazed Girl","type":"Role","_key":"105886","_from":"62340","_to":"62328"} +{"$label":"ACTS_IN","name":"Deputy Connor","type":"Role","_key":"105885","_from":"62339","_to":"62328"} +{"$label":"ACTS_IN","name":"Professor","type":"Role","_key":"105884","_from":"62338","_to":"62328"} +{"$label":"ACTS_IN","name":"Hal","type":"Role","_key":"105883","_from":"62337","_to":"62328"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"105882","_from":"62336","_to":"62328"} +{"$label":"ACTS_IN","name":"Sam Stanton","type":"Role","_key":"105881","_from":"62335","_to":"62328"} +{"$label":"ACTS_IN","name":"Linda Albright","type":"Role","_key":"105880","_from":"62334","_to":"62328"} +{"$label":"ACTS_IN","name":"Jim Stanton","type":"Role","_key":"105876","_from":"62333","_to":"62328"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"105875","_from":"62332","_to":"62328"} +{"$label":"ACTS_IN","name":"Rebecca Miller","type":"Role","_key":"105873","_from":"62331","_to":"62328"} +{"$label":"DIRECTED","_key":"105872","_from":"62330","_to":"62328"} +{"$label":"DIRECTED","_key":"105871","_from":"62329","_to":"62328"} +{"$label":"ACTS_IN","name":"Girl at end (as Nana Tucker)","type":"Role","_key":"115261","_from":"62334","_to":"67870"} +{"$label":"DIRECTED","_key":"105891","_from":"62343","_to":"62342"} +{"$label":"DIRECTED","_key":"105906","_from":"62352","_to":"62345"} +{"$label":"ACTS_IN","name":"Mr. Crow (as Jefferson Searles)","type":"Role","_key":"105905","_from":"62351","_to":"62345"} +{"$label":"ACTS_IN","name":"Mr. Herman","type":"Role","_key":"105904","_from":"62350","_to":"62345"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"105903","_from":"62349","_to":"62345"} +{"$label":"ACTS_IN","name":"Harry","type":"Role","_key":"105902","_from":"62348","_to":"62345"} +{"$label":"ACTS_IN","name":"Capt. Riley","type":"Role","_key":"105900","_from":"62347","_to":"62345"} +{"$label":"ACTS_IN","name":"Monk","type":"Role","_key":"105899","_from":"62346","_to":"62345"} +{"$label":"ACTS_IN","name":"Cookie","type":"Role","_key":"116904","_from":"62346","_to":"68821"} +{"$label":"ACTS_IN","name":"David, Bellboy","type":"Role","_key":"105913","_from":"62359","_to":"62353"} +{"$label":"ACTS_IN","name":"Herkie, Bellboy","type":"Role","_key":"105912","_from":"62358","_to":"62353"} +{"$label":"ACTS_IN","name":"Eddie, Bellboy","type":"Role","_key":"105911","_from":"62357","_to":"62353"} +{"$label":"ACTS_IN","name":"Sonnie, Bellboy (as Sonny Sands)","type":"Role","_key":"105910","_from":"62356","_to":"62353"} +{"$label":"ACTS_IN","name":"Bob, Bell Captain","type":"Role","_key":"105909","_from":"62355","_to":"62353"} +{"$label":"ACTS_IN","name":"Mr. Novak, Hotel Manager","type":"Role","_key":"105908","_from":"62354","_to":"62353"} +{"$label":"DIRECTED","_key":"105923","_from":"62365","_to":"62361"} +{"$label":"ACTS_IN","name":"Sonia (as Noming)","type":"Role","_key":"105921","_from":"62364","_to":"62361"} +{"$label":"ACTS_IN","name":"Chambers","type":"Role","_key":"105919","_from":"62363","_to":"62361"} +{"$label":"ACTS_IN","name":"Ang Shaw","type":"Role","_key":"105918","_from":"62362","_to":"62361"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"105928","_from":"62368","_to":"62366"} +{"$label":"ACTS_IN","name":"Myra","type":"Role","_key":"105924","_from":"62367","_to":"62366"} +{"$label":"DIRECTED","_key":"105937","_from":"62374","_to":"62369"} +{"$label":"ACTS_IN","name":"'Cotton' Valletti","type":"Role","_key":"105935","_from":"62373","_to":"62369"} +{"$label":"ACTS_IN","name":"Philip Evans","type":"Role","_key":"105934","_from":"62372","_to":"62369"} +{"$label":"ACTS_IN","name":"Big Ed Somers","type":"Role","_key":"105933","_from":"62371","_to":"62369"} +{"$label":"ACTS_IN","name":"Ma Jarrett","type":"Role","_key":"105932","_from":"62370","_to":"62369"} +{"$label":"ACTS_IN","name":"Mother York","type":"Role","_key":"109247","_from":"62370","_to":"64541"} +{"$label":"ACTS_IN","name":"Billy Keplinger","type":"Role","_key":"116249","_from":"62371","_to":"68441"} +{"$label":"ACTS_IN","name":"Jack Kelman","type":"Role","_key":"115424","_from":"62372","_to":"67964"} +{"$label":"DIRECTED","_key":"110570","_from":"62374","_to":"65329"} +{"$label":"ACTS_IN","name":"Irqui Colonel","type":"Role","_key":"105948","_from":"62383","_to":"62378"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"105947","_from":"62382","_to":"62378"} +{"$label":"ACTS_IN","name":"Stan","type":"Role","_key":"105946","_from":"62381","_to":"62378"} +{"$label":"ACTS_IN","name":"Baz","type":"Role","_key":"105944","_from":"62380","_to":"62378"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"105942","_from":"62379","_to":"62378"} +{"$label":"ACTS_IN","name":"Ross Pienaar","type":"Role","_key":"113481","_from":"62381","_to":"66866"} +{"$label":"DIRECTED","_key":"105962","_from":"62386","_to":"62384"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"105951","_from":"62385","_to":"62384"} +{"$label":"DIRECTED","_key":"105967","_from":"62388","_to":"62387"} +{"$label":"DIRECTED","_key":"105968","_from":"62390","_to":"62389"} +{"$label":"DIRECTED","_key":"105974","_from":"62397","_to":"62392"} +{"$label":"ACTS_IN","name":"Eldest Sister","type":"Role","_key":"105973","_from":"62396","_to":"62392"} +{"$label":"ACTS_IN","name":"Mother","type":"Role","_key":"105972","_from":"62395","_to":"62392"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"105971","_from":"62394","_to":"62392"} +{"$label":"ACTS_IN","name":"Ming (Liu Zhiming)","type":"Role","_key":"105970","_from":"62393","_to":"62392"} +{"$label":"ACTS_IN","name":"Lieutenant Renee Montoya","type":"Role","_key":"105987","_from":"62402","_to":"62398"} +{"$label":"ACTS_IN","name":"WGBS Reporter Summer Gleeson","type":"Role","_key":"105986","_from":"62401","_to":"62398"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"105978","_from":"62400","_to":"62398"} +{"$label":"DIRECTED","_key":"105975","_from":"62399","_to":"62398"} +{"$label":"DIRECTED","_key":"105992","_from":"62405","_to":"62403"} +{"$label":"ACTS_IN","name":"Dreamer","type":"Role","_key":"105990","_from":"62404","_to":"62403"} +{"$label":"ACTS_IN","name":"Tail Gunner Joe Winocki","type":"Role","_key":"106001","_from":"62409","_to":"62406"} +{"$label":"ACTS_IN","name":"Asst. Radio Operator Chester","type":"Role","_key":"106000","_from":"62408","_to":"62406"} +{"$label":"ACTS_IN","name":"Radio Operator Peterson","type":"Role","_key":"105999","_from":"62407","_to":"62406"} +{"$label":"ACTS_IN","name":"Charlie Davis","type":"Role","_key":"112422","_from":"62409","_to":"66378"} +{"$label":"DIRECTED","_key":"106012","_from":"62416","_to":"62412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106011","_from":"62415","_to":"62412"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106010","_from":"62414","_to":"62412"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"106008","_from":"62413","_to":"62412"} +{"$label":"ACTS_IN","name":"Jan Gregora","type":"Role","_key":"106023","_from":"62423","_to":"62417"} +{"$label":"ACTS_IN","name":"Tamtam","type":"Role","_key":"106022","_from":"62422","_to":"62417"} +{"$label":"ACTS_IN","name":"Hani\u010dka Pecharov\u00e1","type":"Role","_key":"106020","_from":"62421","_to":"62417"} +{"$label":"ACTS_IN","name":"Bed\u0159ich Mrtv\u00fd","type":"Role","_key":"106019","_from":"62420","_to":"62417"} +{"$label":"ACTS_IN","name":"Karel Vojt\u00ed\u0161ek","type":"Role","_key":"106015","_from":"62419","_to":"62417"} +{"$label":"ACTS_IN","name":"Franti\u0161ek Sl\u00e1ma","type":"Role","_key":"106014","_from":"62418","_to":"62417"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106034","_from":"62426","_to":"62424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106031","_from":"62425","_to":"62424"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113182","_from":"62425","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106188","_from":"62425","_to":"62547"} +{"$label":"DIRECTED","_key":"106041","_from":"62441","_to":"62438"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106040","_from":"62440","_to":"62438"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106039","_from":"62439","_to":"62438"} +{"$label":"ACTS_IN","name":"Bukki Bl\u00e6s","type":"Role","_key":"106047","_from":"62449","_to":"62443"} +{"$label":"ACTS_IN","name":"Linda P.","type":"Role","_key":"106046","_from":"62448","_to":"62443"} +{"$label":"ACTS_IN","name":"Tue Track","type":"Role","_key":"106045","_from":"62447","_to":"62443"} +{"$label":"ACTS_IN","name":"Jonatan Spang","type":"Role","_key":"106044","_from":"62446","_to":"62443"} +{"$label":"ACTS_IN","name":"Rune Klan","type":"Role","_key":"106043","_from":"62445","_to":"62443"} +{"$label":"DIRECTED","_key":"106042","_from":"62444","_to":"62443"} +{"$label":"ACTS_IN","name":"Jonatan Spang","type":"Role","_key":"114560","_from":"62446","_to":"67488"} +{"$label":"ACTS_IN","name":"Agger","type":"Role","_key":"106365","_from":"62446","_to":"62663"} +{"$label":"DIRECTED","_key":"106055","_from":"62453","_to":"62450"} +{"$label":"ACTS_IN","name":"Sygeplejerske","type":"Role","_key":"106054","_from":"62452","_to":"62450"} +{"$label":"ACTS_IN","name":"Connie","type":"Role","_key":"106051","_from":"62451","_to":"62450"} +{"$label":"DIRECTED","_key":"106082","_from":"62453","_to":"62469"} +{"$label":"ACTS_IN","name":"Selma","type":"Role","_key":"106061","_from":"62458","_to":"62457"} +{"$label":"ACTS_IN","name":"Kuntz","type":"Role","_key":"106071","_from":"62461","_to":"62460"} +{"$label":"ACTS_IN","name":"Far","type":"Role","_key":"106080","_from":"62467","_to":"62463"} +{"$label":"ACTS_IN","name":"Niller","type":"Role","_key":"106076","_from":"62466","_to":"62463"} +{"$label":"ACTS_IN","name":"Bjarne","type":"Role","_key":"106075","_from":"62465","_to":"62463"} +{"$label":"DIRECTED","_key":"106074","_from":"62464","_to":"62463"} +{"$label":"DIRECTED","_key":"110457","_from":"62464","_to":"65258"} +{"$label":"ACTS_IN","name":"political assissent","type":"Role","_key":"106089","_from":"62472","_to":"62469"} +{"$label":"ACTS_IN","name":"L\u00e6rke","type":"Role","_key":"106088","_from":"62471","_to":"62469"} +{"$label":"ACTS_IN","name":"Jette","type":"Role","_key":"106087","_from":"62470","_to":"62469"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"121221","_from":"62471","_to":"71206"} +{"$label":"ACTS_IN","name":"Sanne","type":"Role","_key":"106661","_from":"62471","_to":"62849"} +{"$label":"ACTS_IN","name":"Louie","type":"Role","_key":"106091","_from":"62475","_to":"62474"} +{"$label":"ACTS_IN","name":"Claudia","type":"Role","_key":"106097","_from":"62479","_to":"62476"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"106096","_from":"62478","_to":"62476"} +{"$label":"ACTS_IN","name":"Sebastian","type":"Role","_key":"106095","_from":"62477","_to":"62476"} +{"$label":"DIRECTED","_key":"106106","_from":"62484","_to":"62481"} +{"$label":"ACTS_IN","name":"Gertrude","type":"Role","_key":"106105","_from":"62483","_to":"62481"} +{"$label":"ACTS_IN","name":"Maryanne","type":"Role","_key":"106104","_from":"62482","_to":"62481"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"106108","_from":"62488","_to":"62486"} +{"$label":"ACTS_IN","name":"Themselves","type":"Role","_key":"106107","_from":"62487","_to":"62486"} +{"$label":"DIRECTED","_key":"106114","_from":"62492","_to":"62489"} +{"$label":"ACTS_IN","name":"Sir Joseph Whemple","type":"Role","_key":"106113","_from":"62491","_to":"62489"} +{"$label":"ACTS_IN","name":"Helen Grosvenor \/ Princess Anck-es-en-Amon","type":"Role","_key":"106110","_from":"62490","_to":"62489"} +{"$label":"ACTS_IN","name":"Alan Oakley","type":"Role","_key":"106116","_from":"62495","_to":"62493"} +{"$label":"DIRECTED","_key":"106115","_from":"62494","_to":"62493"} +{"$label":"ACTS_IN","name":"P","type":"Role","_key":"106126","_from":"62502","_to":"62496"} +{"$label":"ACTS_IN","name":"Darbie","type":"Role","_key":"106124","_from":"62501","_to":"62496"} +{"$label":"ACTS_IN","name":"Yo","type":"Role","_key":"106123","_from":"62500","_to":"62496"} +{"$label":"ACTS_IN","name":"Dieter","type":"Role","_key":"106122","_from":"62499","_to":"62496"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"106119","_from":"62498","_to":"62496"} +{"$label":"DIRECTED","_key":"106118","_from":"62497","_to":"62496"} +{"$label":"ACTS_IN","name":"Darlene Loren","type":"Role","_key":"115164","_from":"62498","_to":"67818"} +{"$label":"ACTS_IN","name":"Wee Man (Himself)","type":"Role","_key":"108517","_from":"62499","_to":"64139"} +{"$label":"ACTS_IN","name":"Signor Ferretti","type":"Role","_key":"106134","_from":"62508","_to":"62504"} +{"$label":"ACTS_IN","name":"Raoul D'Aubert","type":"Role","_key":"106133","_from":"62507","_to":"62504"} +{"$label":"ACTS_IN","name":"Christine Dubois","type":"Role","_key":"106131","_from":"62506","_to":"62504"} +{"$label":"ACTS_IN","name":"Anatole Garron","type":"Role","_key":"106130","_from":"62505","_to":"62504"} +{"$label":"DIRECTED","_key":"106144","_from":"62516","_to":"62509"} +{"$label":"ACTS_IN","name":"Jonas Slydes","type":"Role","_key":"106143","_from":"62515","_to":"62509"} +{"$label":"ACTS_IN","name":"Mrs. Slydes","type":"Role","_key":"106142","_from":"62514","_to":"62509"} +{"$label":"ACTS_IN","name":"Ruth Bridgers","type":"Role","_key":"106141","_from":"62513","_to":"62509"} +{"$label":"ACTS_IN","name":"Annabelle Loren","type":"Role","_key":"106139","_from":"62512","_to":"62509"} +{"$label":"ACTS_IN","name":"Lance Schroeder","type":"Role","_key":"106137","_from":"62511","_to":"62509"} +{"$label":"ACTS_IN","name":"Nora Manning","type":"Role","_key":"106136","_from":"62510","_to":"62509"} +{"$label":"ACTS_IN","name":"Major Rachel Fine","type":"Role","_key":"106152","_from":"62522","_to":"62517"} +{"$label":"ACTS_IN","name":"Bryna","type":"Role","_key":"106151","_from":"62521","_to":"62517"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"106150","_from":"62520","_to":"62517"} +{"$label":"ACTS_IN","name":"Dr. Lana Gale","type":"Role","_key":"106147","_from":"62519","_to":"62517"} +{"$label":"DIRECTED","_key":"106145","_from":"62518","_to":"62517"} +{"$label":"ACTS_IN","name":"Mel","type":"Role","_key":"114015","_from":"62519","_to":"67145"} +{"$label":"DIRECTED","_key":"106157","_from":"62526","_to":"62523"} +{"$label":"ACTS_IN","name":"Su-jin","type":"Role","_key":"106156","_from":"62525","_to":"62523"} +{"$label":"ACTS_IN","name":"Seo Yeong-min","type":"Role","_key":"106155","_from":"62524","_to":"62523"} +{"$label":"ACTS_IN","name":"So-woon","type":"Role","_key":"115766","_from":"62525","_to":"68158"} +{"$label":"ACTS_IN","name":"Turbo Shek","type":"Role","_key":"106160","_from":"62528","_to":"62527"} +{"$label":"ACTS_IN","name":"Officer Hung Kei-Lok","type":"Role","_key":"117600","_from":"62528","_to":"69139"} +{"$label":"ACTS_IN","name":"Takeshi Nakazato","type":"Role","_key":"109125","_from":"62528","_to":"64472"} +{"$label":"ACTS_IN","name":"Mahi's father","type":"Role","_key":"106169","_from":"62533","_to":"62530"} +{"$label":"ACTS_IN","name":"Mahi","type":"Role","_key":"106167","_from":"62532","_to":"62530"} +{"$label":"ACTS_IN","name":"Raj Sharma","type":"Role","_key":"106165","_from":"62531","_to":"62530"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108797","_from":"62531","_to":"64303"} +{"$label":"ACTS_IN","name":"Ranbir Raj","type":"Role","_key":"108482","_from":"62531","_to":"64124"} +{"$label":"ACTS_IN","name":"Sonia Raina","type":"Role","_key":"120868","_from":"62532","_to":"70973"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"106176","_from":"62538","_to":"62534"} +{"$label":"ACTS_IN","name":"Gerardo","type":"Role","_key":"106175","_from":"62537","_to":"62534"} +{"$label":"ACTS_IN","name":"Miguel","type":"Role","_key":"106174","_from":"62536","_to":"62534"} +{"$label":"DIRECTED","_key":"106171","_from":"62535","_to":"62534"} +{"$label":"DIRECTED","_key":"106181","_from":"62543","_to":"62539"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"106180","_from":"62542","_to":"62539"} +{"$label":"ACTS_IN","name":"Hot Rod Johnson","type":"Role","_key":"106179","_from":"62541","_to":"62539"} +{"$label":"ACTS_IN","name":"Announcer","type":"Role","_key":"106178","_from":"62540","_to":"62539"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"120595","_from":"62541","_to":"70829"} +{"$label":"ACTS_IN","name":"Billy Ray Stewart","type":"Role","_key":"114983","_from":"62541","_to":"67715"} +{"$label":"ACTS_IN","name":"Self","type":"Role","_key":"106461","_from":"62541","_to":"62719"} +{"$label":"ACTS_IN","name":"Col. Dent","type":"Role","_key":"106199","_from":"62550","_to":"62549"} +{"$label":"ACTS_IN","name":"Luki Dedham","type":"Role","_key":"106212","_from":"62556","_to":"62552"} +{"$label":"ACTS_IN","name":"Sally Dedham","type":"Role","_key":"106211","_from":"62555","_to":"62552"} +{"$label":"ACTS_IN","name":"Lelani Dedham","type":"Role","_key":"106210","_from":"62554","_to":"62552"} +{"$label":"ACTS_IN","name":"Ameilia Sarah Dedham","type":"Role","_key":"106207","_from":"62553","_to":"62552"} +{"$label":"ACTS_IN","name":"Von Holem","type":"Role","_key":"106218","_from":"62558","_to":"62557"} +{"$label":"ACTS_IN","name":"Mizuki Kusanagi (voice)","type":"Role","_key":"106223","_from":"62560","_to":"62559"} +{"$label":"DIRECTED","_key":"106228","_from":"62563","_to":"62562"} +{"$label":"DIRECTED","_key":"106232","_from":"62569","_to":"62568"} +{"$label":"DIRECTED","_key":"109726","_from":"62569","_to":"64801"} +{"$label":"ACTS_IN","name":"Serena Bradley","type":"Role","_key":"106234","_from":"62574","_to":"62573"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106237","_from":"62581","_to":"62580"} +{"$label":"DIRECTED","_key":"106245","_from":"62587","_to":"62582"} +{"$label":"ACTS_IN","name":"Munkar","type":"Role","_key":"106244","_from":"62586","_to":"62582"} +{"$label":"ACTS_IN","name":"Kang","type":"Role","_key":"106243","_from":"62585","_to":"62582"} +{"$label":"ACTS_IN","name":"Codille","type":"Role","_key":"106240","_from":"62584","_to":"62582"} +{"$label":"ACTS_IN","name":"Deathstalker","type":"Role","_key":"106239","_from":"62583","_to":"62582"} +{"$label":"DIRECTED","_key":"106250","_from":"62590","_to":"62589"} +{"$label":"ACTS_IN","name":"Coach Nagy","type":"Role","_key":"106267","_from":"62602","_to":"62597"} +{"$label":"ACTS_IN","name":"Aunt Gwen","type":"Role","_key":"106266","_from":"62601","_to":"62597"} +{"$label":"ACTS_IN","name":"Lucille","type":"Role","_key":"106264","_from":"62600","_to":"62597"} +{"$label":"ACTS_IN","name":"Thandi","type":"Role","_key":"106263","_from":"62599","_to":"62597"} +{"$label":"ACTS_IN","name":"Xan","type":"Role","_key":"106261","_from":"62598","_to":"62597"} +{"$label":"ACTS_IN","name":"Sarah Henley (as Joanna Clark)","type":"Role","_key":"106276","_from":"62606","_to":"62605"} +{"$label":"ACTS_IN","name":"Carol Marvin","type":"Role","_key":"115097","_from":"62606","_to":"67783"} +{"$label":"ACTS_IN","name":"Carla Smith","type":"Role","_key":"106284","_from":"62609","_to":"62608"} +{"$label":"DIRECTED","_key":"106291","_from":"62616","_to":"62611"} +{"$label":"ACTS_IN","name":"Shannon","type":"Role","_key":"106290","_from":"62615","_to":"62611"} +{"$label":"ACTS_IN","name":"Myron","type":"Role","_key":"106289","_from":"62614","_to":"62611"} +{"$label":"ACTS_IN","name":"Manolis","type":"Role","_key":"106288","_from":"62613","_to":"62611"} +{"$label":"ACTS_IN","name":"Cid Draper","type":"Role","_key":"106287","_from":"62612","_to":"62611"} +{"$label":"DIRECTED","_key":"106297","_from":"62619","_to":"62617"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106296","_from":"62618","_to":"62617"} +{"$label":"ACTS_IN","name":"Yashomati","type":"Role","_key":"106317","_from":"62634","_to":"62621"} +{"$label":"ACTS_IN","name":"Kaka","type":"Role","_key":"106316","_from":"62633","_to":"62621"} +{"$label":"ACTS_IN","name":"Badi Aapa","type":"Role","_key":"106315","_from":"62632","_to":"62621"} +{"$label":"ACTS_IN","name":"Kalibabu's mother","type":"Role","_key":"106314","_from":"62631","_to":"62621"} +{"$label":"ACTS_IN","name":"Sir Narayan Mukherjee","type":"Role","_key":"106313","_from":"62630","_to":"62621"} +{"$label":"ACTS_IN","name":"Neelkanth Chakraborty","type":"Role","_key":"106312","_from":"62629","_to":"62621"} +{"$label":"ACTS_IN","name":"Manorama","type":"Role","_key":"106311","_from":"62628","_to":"62621"} +{"$label":"ACTS_IN","name":"Badi-ma","type":"Role","_key":"106310","_from":"62627","_to":"62621"} +{"$label":"ACTS_IN","name":"Dharamdas","type":"Role","_key":"106309","_from":"62626","_to":"62621"} +{"$label":"ACTS_IN","name":"Kalibabu","type":"Role","_key":"106306","_from":"62625","_to":"62621"} +{"$label":"ACTS_IN","name":"Kumud Mukherjee","type":"Role","_key":"106305","_from":"62624","_to":"62621"} +{"$label":"ACTS_IN","name":"Dwijdas Mukherjee","type":"Role","_key":"106304","_from":"62623","_to":"62621"} +{"$label":"ACTS_IN","name":"Chunnilal (\"Chunnibabu\")","type":"Role","_key":"106302","_from":"62622","_to":"62621"} +{"$label":"ACTS_IN","name":"Veer Pratap Singh","type":"Role","_key":"106549","_from":"62622","_to":"62782"} +{"$label":"ACTS_IN","name":"College Dean","type":"Role","_key":"120885","_from":"62623","_to":"70976"} +{"$label":"ACTS_IN","name":"Pooja's Father","type":"Role","_key":"120721","_from":"62623","_to":"70898"} +{"$label":"ACTS_IN","name":"Damodar Dubey","type":"Role","_key":"108812","_from":"62623","_to":"64308"} +{"$label":"ACTS_IN","name":"Somabai","type":"Role","_key":"106543","_from":"62631","_to":"62780"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"106325","_from":"62640","_to":"62635"} +{"$label":"ACTS_IN","name":"Angie","type":"Role","_key":"106324","_from":"62639","_to":"62635"} +{"$label":"ACTS_IN","name":"Aunt Catherine","type":"Role","_key":"106323","_from":"62638","_to":"62635"} +{"$label":"ACTS_IN","name":"Mrs. Theresa Piletti","type":"Role","_key":"106322","_from":"62637","_to":"62635"} +{"$label":"ACTS_IN","name":"Clara Snyder","type":"Role","_key":"106321","_from":"62636","_to":"62635"} +{"$label":"ACTS_IN","name":"Jackie Elcott","type":"Role","_key":"119053","_from":"62636","_to":"69979"} +{"$label":"DIRECTED","_key":"106331","_from":"62644","_to":"62642"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"106330","_from":"62643","_to":"62642"} +{"$label":"DIRECTED","_key":"106337","_from":"62649","_to":"62646"} +{"$label":"ACTS_IN","name":"Assassin brother Alex","type":"Role","_key":"106335","_from":"62648","_to":"62646"} +{"$label":"ACTS_IN","name":"Yuen","type":"Role","_key":"106334","_from":"62647","_to":"62646"} +{"$label":"ACTS_IN","name":"Mark, The Homeless","type":"Role","_key":"111869","_from":"62648","_to":"66042"} +{"$label":"DIRECTED","_key":"106355","_from":"62658","_to":"62650"} +{"$label":"ACTS_IN","name":"WAAF Sergeant Mary Blake \/ Bissell","type":"Role","_key":"106354","_from":"62657","_to":"62650"} +{"$label":"ACTS_IN","name":"Lieutenant Jones","type":"Role","_key":"106353","_from":"62656","_to":"62650"} +{"$label":"ACTS_IN","name":"Flight Lieutenant Frank","type":"Role","_key":"106352","_from":"62655","_to":"62650"} +{"$label":"ACTS_IN","name":"Flight Lieutenant Singh","type":"Role","_key":"106351","_from":"62654","_to":"62650"} +{"$label":"ACTS_IN","name":"Rosie the barmaid at Black Swan Inn","type":"Role","_key":"106349","_from":"62653","_to":"62650"} +{"$label":"ACTS_IN","name":"Flying Officer Evans","type":"Role","_key":"106348","_from":"62652","_to":"62650"} +{"$label":"ACTS_IN","name":"Flight Lieutenant Scott","type":"Role","_key":"106345","_from":"62651","_to":"62650"} +{"$label":"ACTS_IN","name":"Diana Kent","type":"Role","_key":"111134","_from":"62657","_to":"65637"} +{"$label":"ACTS_IN","name":"Maj. McBryde","type":"Role","_key":"106363","_from":"62662","_to":"62660"} +{"$label":"ACTS_IN","name":"Dr. Aziz H. Ahmed","type":"Role","_key":"106361","_from":"62661","_to":"62660"} +{"$label":"ACTS_IN","name":"Karate coach","type":"Role","_key":"106381","_from":"62679","_to":"62665"} +{"$label":"ACTS_IN","name":"Fadime Ahman","type":"Role","_key":"106379","_from":"62678","_to":"62665"} +{"$label":"ACTS_IN","name":"Yasemin's mother","type":"Role","_key":"106378","_from":"62677","_to":"62665"} +{"$label":"ACTS_IN","name":"Yasemin's father","type":"Role","_key":"106377","_from":"62676","_to":"62665"} +{"$label":"ACTS_IN","name":"Yasemin","type":"Role","_key":"106376","_from":"62675","_to":"62665"} +{"$label":"ACTS_IN","name":"Mehmet","type":"Role","_key":"106375","_from":"62674","_to":"62665"} +{"$label":"ACTS_IN","name":"Aicha's Mother","type":"Role","_key":"106374","_from":"62673","_to":"62665"} +{"$label":"ACTS_IN","name":"Omar Y\u00fcksel","type":"Role","_key":"106372","_from":"62672","_to":"62665"} +{"$label":"ACTS_IN","name":"Aicha's Father","type":"Role","_key":"106371","_from":"62671","_to":"62665"} +{"$label":"ACTS_IN","name":"Sofie","type":"Role","_key":"106370","_from":"62670","_to":"62665"} +{"$label":"ACTS_IN","name":"Emil Andersen","type":"Role","_key":"106369","_from":"62669","_to":"62665"} +{"$label":"ACTS_IN","name":"Ali Ahman","type":"Role","_key":"106368","_from":"62668","_to":"62665"} +{"$label":"ACTS_IN","name":"Aicha Ahman","type":"Role","_key":"106367","_from":"62667","_to":"62665"} +{"$label":"DIRECTED","_key":"106366","_from":"62666","_to":"62665"} +{"$label":"ACTS_IN","name":"Daniel (as Cyron Melville)","type":"Role","_key":"119596","_from":"62669","_to":"70250"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"106387","_from":"62683","_to":"62681"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"106384","_from":"62682","_to":"62681"} +{"$label":"ACTS_IN","name":"Beate","type":"Role","_key":"119632","_from":"62683","_to":"70275"} +{"$label":"DIRECTED","_key":"106390","_from":"62686","_to":"62685"} +{"$label":"ACTS_IN","name":"Tozer","type":"Role","_key":"106408","_from":"62694","_to":"62687"} +{"$label":"ACTS_IN","name":"AMW Host","type":"Role","_key":"106407","_from":"62693","_to":"62687"} +{"$label":"ACTS_IN","name":"Mozza","type":"Role","_key":"106406","_from":"62692","_to":"62687"} +{"$label":"ACTS_IN","name":"Wacka","type":"Role","_key":"106405","_from":"62691","_to":"62687"} +{"$label":"ACTS_IN","name":"Rodney Poulgrain","type":"Role","_key":"106404","_from":"62690","_to":"62687"} +{"$label":"ACTS_IN","name":"Marcus Ridgeway","type":"Role","_key":"106402","_from":"62689","_to":"62687"} +{"$label":"ACTS_IN","name":"Bartlett","type":"Role","_key":"106401","_from":"62688","_to":"62687"} +{"$label":"ACTS_IN","name":"Ken","type":"Role","_key":"106836","_from":"62688","_to":"62978"} +{"$label":"ACTS_IN","name":"Barry Burgie","type":"Role","_key":"106840","_from":"62691","_to":"62978"} +{"$label":"DIRECTED","_key":"106423","_from":"62697","_to":"62696"} +{"$label":"DIRECTED","_key":"106430","_from":"62700","_to":"62698"} +{"$label":"ACTS_IN","name":"Lilian Li","type":"Role","_key":"106428","_from":"62699","_to":"62698"} +{"$label":"DIRECTED","_key":"106433","_from":"62702","_to":"62701"} +{"$label":"DIRECTED","_key":"106442","_from":"62706","_to":"62703"} +{"$label":"ACTS_IN","name":"Cardenal Ascanio Sforza","type":"Role","_key":"106440","_from":"62705","_to":"62703"} +{"$label":"ACTS_IN","name":"C\u00e9sar Borgia","type":"Role","_key":"106434","_from":"62704","_to":"62703"} +{"$label":"ACTS_IN","name":"Panchito (voice)","type":"Role","_key":"106454","_from":"62715","_to":"62711"} +{"$label":"ACTS_IN","name":"Mexico Girl (as Dora Luz of Mexico)","type":"Role","_key":"106451","_from":"62714","_to":"62711"} +{"$label":"ACTS_IN","name":"Mexico Girl (as Carmen Molina of Mexico)","type":"Role","_key":"106450","_from":"62713","_to":"62711"} +{"$label":"ACTS_IN","name":"The Brazilian Girl (as Aurora Miranda of Brazil)","type":"Role","_key":"106449","_from":"62712","_to":"62711"} +{"$label":"DIRECTED","_key":"106459","_from":"62718","_to":"62716"} +{"$label":"ACTS_IN","name":"Sonsoles","type":"Role","_key":"106457","_from":"62717","_to":"62716"} +{"$label":"DIRECTED","_key":"106462","_from":"62720","_to":"62719"} +{"$label":"ACTS_IN","name":"Ingerlise","type":"Role","_key":"106465","_from":"62725","_to":"62723"} +{"$label":"DIRECTED","_key":"106463","_from":"62724","_to":"62723"} +{"$label":"DIRECTED","_key":"106475","_from":"62728","_to":"62726"} +{"$label":"ACTS_IN","name":"Horacio","type":"Role","_key":"106471","_from":"62727","_to":"62726"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"106478","_from":"62732","_to":"62730"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"106477","_from":"62731","_to":"62730"} +{"$label":"ACTS_IN","name":"Aksel Bruun","type":"Role","_key":"106491","_from":"62739","_to":"62738"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"106499","_from":"62741","_to":"62740"} +{"$label":"ACTS_IN","name":"Charles White","type":"Role","_key":"106505","_from":"62748","_to":"62743"} +{"$label":"ACTS_IN","name":"Claire Hardwick","type":"Role","_key":"106504","_from":"62747","_to":"62743"} +{"$label":"ACTS_IN","name":"Jonathan's Baby","type":"Role","_key":"106503","_from":"62746","_to":"62743"} +{"$label":"ACTS_IN","name":"RIchard Tyler","type":"Role","_key":"106501","_from":"62745","_to":"62743"} +{"$label":"DIRECTED","_key":"106500","_from":"62744","_to":"62743"} +{"$label":"DIRECTED","_key":"106511","_from":"62754","_to":"62753"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"106513","_from":"62758","_to":"62756"} +{"$label":"ACTS_IN","name":"Varg Veum","type":"Role","_key":"106512","_from":"62757","_to":"62756"} +{"$label":"ACTS_IN","name":"Varg Veum","type":"Role","_key":"114711","_from":"62757","_to":"67569"} +{"$label":"ACTS_IN","name":"Varg Veum","type":"Role","_key":"109841","_from":"62757","_to":"64893"} +{"$label":"ACTS_IN","name":"Varg Veum","type":"Role","_key":"109832","_from":"62757","_to":"64885"} +{"$label":"ACTS_IN","name":"Jon M","type":"Role","_key":"107071","_from":"62757","_to":"63130"} +{"$label":"ACTS_IN","name":"Vijay Nath","type":"Role","_key":"106523","_from":"62761","_to":"62759"} +{"$label":"ACTS_IN","name":"Aman \"Banku\" Sharma","type":"Role","_key":"106522","_from":"62760","_to":"62759"} +{"$label":"DIRECTED","_key":"106530","_from":"62767","_to":"62762"} +{"$label":"ACTS_IN","name":"Dolly","type":"Role","_key":"106529","_from":"62766","_to":"62762"} +{"$label":"ACTS_IN","name":"Sonal","type":"Role","_key":"106527","_from":"62765","_to":"62762"} +{"$label":"ACTS_IN","name":"Lucky's father \/ Gogi Bhai \/ Dr. Handa","type":"Role","_key":"106526","_from":"62764","_to":"62762"} +{"$label":"ACTS_IN","name":"Lucky","type":"Role","_key":"106525","_from":"62763","_to":"62762"} +{"$label":"ACTS_IN","name":"Devendra Singh Dhillon (Dev)","type":"Role","_key":"106531","_from":"62763","_to":"62769"} +{"$label":"ACTS_IN","name":"Somnath","type":"Role","_key":"120880","_from":"62764","_to":"70976"} +{"$label":"ACTS_IN","name":"Gundya","type":"Role","_key":"120715","_from":"62764","_to":"70898"} +{"$label":"ACTS_IN","name":"Mambo","type":"Role","_key":"120703","_from":"62764","_to":"70894"} +{"$label":"ACTS_IN","name":"Batukshankar Upadhyay","type":"Role","_key":"118498","_from":"62764","_to":"69661"} +{"$label":"ACTS_IN","name":"Advocate Bhujbal Kiran's Lawyer","type":"Role","_key":"110382","_from":"62764","_to":"65223"} +{"$label":"ACTS_IN","name":"Omprakash Verma","type":"Role","_key":"109563","_from":"62764","_to":"64715"} +{"$label":"ACTS_IN","name":"Tukaram Patil","type":"Role","_key":"109420","_from":"62764","_to":"64644"} +{"$label":"ACTS_IN","name":"Priya","type":"Role","_key":"121542","_from":"62765","_to":"71410"} +{"$label":"ACTS_IN","name":"Sweety","type":"Role","_key":"120709","_from":"62765","_to":"70894"} +{"$label":"DIRECTED","_key":"106541","_from":"62779","_to":"62769"} +{"$label":"ACTS_IN","name":"Owner of Hotel Welcome","type":"Role","_key":"106540","_from":"62778","_to":"62769"} +{"$label":"ACTS_IN","name":"Dev's mother","type":"Role","_key":"106539","_from":"62777","_to":"62769"} +{"$label":"ACTS_IN","name":"Bhuvan","type":"Role","_key":"106538","_from":"62776","_to":"62769"} +{"$label":"ACTS_IN","name":"Leni's father","type":"Role","_key":"106537","_from":"62775","_to":"62769"} +{"$label":"ACTS_IN","name":"Dev's father","type":"Role","_key":"106536","_from":"62774","_to":"62769"} +{"$label":"ACTS_IN","name":"Paro's father","type":"Role","_key":"106535","_from":"62773","_to":"62769"} +{"$label":"ACTS_IN","name":"Rasika","type":"Role","_key":"106534","_from":"62772","_to":"62769"} +{"$label":"ACTS_IN","name":"Leni","type":"Role","_key":"106533","_from":"62771","_to":"62769"} +{"$label":"ACTS_IN","name":"Paro","type":"Role","_key":"106532","_from":"62770","_to":"62769"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108803","_from":"62779","_to":"64303"} +{"$label":"ACTS_IN","name":"Yash Dayal","type":"Role","_key":"106548","_from":"62785","_to":"62782"} +{"$label":"ACTS_IN","name":"Nandita Chopra","type":"Role","_key":"106547","_from":"62784","_to":"62782"} +{"$label":"ACTS_IN","name":"Prithvi Singh","type":"Role","_key":"106546","_from":"62783","_to":"62782"} +{"$label":"ACTS_IN","name":"Shonali Gujral","type":"Role","_key":"120654","_from":"62784","_to":"70859"} +{"$label":"ACTS_IN","name":"Retro","type":"Role","_key":"106550","_from":"62787","_to":"62786"} +{"$label":"ACTS_IN","name":"Usopp","type":"Role","_key":"120440","_from":"62787","_to":"70752"} +{"$label":"ACTS_IN","name":"Shesta","type":"Role","_key":"110730","_from":"62787","_to":"65413"} +{"$label":"ACTS_IN","name":"Donna Davy","type":"Role","_key":"106560","_from":"62790","_to":"62788"} +{"$label":"ACTS_IN","name":"Ophelia","type":"Role","_key":"106555","_from":"62789","_to":"62788"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"106572","_from":"62799","_to":"62793"} +{"$label":"ACTS_IN","name":"Victor","type":"Role","_key":"106571","_from":"62798","_to":"62793"} +{"$label":"ACTS_IN","name":"Costello","type":"Role","_key":"106570","_from":"62797","_to":"62793"} +{"$label":"ACTS_IN","name":"Bogota","type":"Role","_key":"106569","_from":"62796","_to":"62793"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"106568","_from":"62795","_to":"62793"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"106567","_from":"62794","_to":"62793"} +{"$label":"DIRECTED","_key":"106577","_from":"62805","_to":"62801"} +{"$label":"ACTS_IN","name":"Porn Model","type":"Role","_key":"106576","_from":"62804","_to":"62801"} +{"$label":"ACTS_IN","name":"Batz","type":"Role","_key":"106574","_from":"62803","_to":"62801"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"106573","_from":"62802","_to":"62801"} +{"$label":"ACTS_IN","name":"Ivana Baiul (voice)","type":"Role","_key":"106590","_from":"62809","_to":"62807"} +{"$label":"DIRECTED","_key":"106584","_from":"62808","_to":"62807"} +{"$label":"ACTS_IN","name":"Ducky","type":"Role","_key":"106594","_from":"62813","_to":"62811"} +{"$label":"ACTS_IN","name":"Littlefoot","type":"Role","_key":"106592","_from":"62812","_to":"62811"} +{"$label":"ACTS_IN","name":"Kyle (Voice)","type":"Role","_key":"106607","_from":"62819","_to":"62814"} +{"$label":"ACTS_IN","name":"Polk (Voice)","type":"Role","_key":"106605","_from":"62818","_to":"62814"} +{"$label":"ACTS_IN","name":"Charlotte (Voice)","type":"Role","_key":"106601","_from":"62817","_to":"62814"} +{"$label":"ACTS_IN","name":"Meier Link (Voice)","type":"Role","_key":"106600","_from":"62816","_to":"62814"} +{"$label":"ACTS_IN","name":"D (Voice)","type":"Role","_key":"106599","_from":"62815","_to":"62814"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"106619","_from":"62822","_to":"62820"} +{"$label":"ACTS_IN","name":"Sandra Tennyson","type":"Role","_key":"106618","_from":"62821","_to":"62820"} +{"$label":"ACTS_IN","name":"Dr. Karl Truftin","type":"Role","_key":"119324","_from":"62822","_to":"70114"} +{"$label":"ACTS_IN","name":"Tegnestiftfangen (voice)","type":"Role","_key":"106632","_from":"62831","_to":"62823"} +{"$label":"ACTS_IN","name":"Politimann \/ Rekefangen (voice)","type":"Role","_key":"106631","_from":"62830","_to":"62823"} +{"$label":"ACTS_IN","name":"Supermegaoversjefsdoktoren \/ Dommeren \/ Gullsmeden \/ Rik mann \/ Polske arbeidere \/ SOB Gaffeltr\u00f8kkf\u00f8rer (voice)","type":"Role","_key":"106630","_from":"62829","_to":"62823"} +{"$label":"ACTS_IN","name":"Helena \/ Statsministeren \/ Rigmor \/ Reporter \/ Rik dame \/ Sykes\u00f8steren (voice)","type":"Role","_key":"106628","_from":"62828","_to":"62823"} +{"$label":"ACTS_IN","name":"Bruse-Kurt \/ Gunnar \/ Sj\u00f8mannen \/ Kaffedrikkende gaffeltr\u00f8kkf\u00f8rer (voice)","type":"Role","_key":"106627","_from":"62827","_to":"62823"} +{"$label":"ACTS_IN","name":"Anne-Lise (voice)","type":"Role","_key":"106625","_from":"62826","_to":"62823"} +{"$label":"ACTS_IN","name":"Kurt (voice)","type":"Role","_key":"106624","_from":"62825","_to":"62823"} +{"$label":"DIRECTED","_key":"106623","_from":"62824","_to":"62823"} +{"$label":"ACTS_IN","name":"Corinne Kennedy","type":"Role","_key":"106637","_from":"62834","_to":"62833"} +{"$label":"ACTS_IN","name":"R\u00e9gis, the brother","type":"Role","_key":"106651","_from":"62843","_to":"62836"} +{"$label":"ACTS_IN","name":"Bernard, the father","type":"Role","_key":"106649","_from":"62842","_to":"62836"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"106648","_from":"62841","_to":"62836"} +{"$label":"ACTS_IN","name":"Benjamin","type":"Role","_key":"106647","_from":"62840","_to":"62836"} +{"$label":"ACTS_IN","name":"No\u00e9mie","type":"Role","_key":"106646","_from":"62839","_to":"62836"} +{"$label":"ACTS_IN","name":"Vincent Molina","type":"Role","_key":"106645","_from":"62838","_to":"62836"} +{"$label":"DIRECTED","_key":"106644","_from":"62837","_to":"62836"} +{"$label":"ACTS_IN","name":"Misa Amane","type":"Role","_key":"106657","_from":"62848","_to":"62844"} +{"$label":"ACTS_IN","name":"FBI Agent Ray","type":"Role","_key":"106656","_from":"62847","_to":"62844"} +{"$label":"ACTS_IN","name":"Detective Matsuda","type":"Role","_key":"106654","_from":"62846","_to":"62844"} +{"$label":"ACTS_IN","name":"L","type":"Role","_key":"106653","_from":"62845","_to":"62844"} +{"$label":"ACTS_IN","name":"L","type":"Role","_key":"107447","_from":"62845","_to":"63385"} +{"$label":"ACTS_IN","name":"Sota Aoyama","type":"Role","_key":"107449","_from":"62846","_to":"63385"} +{"$label":"ACTS_IN","name":"Misa Amane","type":"Role","_key":"107444","_from":"62848","_to":"63385"} +{"$label":"ACTS_IN","name":"Genf\u00e6rdet","type":"Role","_key":"106664","_from":"62854","_to":"62849"} +{"$label":"ACTS_IN","name":"Lukas","type":"Role","_key":"106663","_from":"62853","_to":"62849"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"106662","_from":"62852","_to":"62849"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"106660","_from":"62851","_to":"62849"} +{"$label":"ACTS_IN","name":"Katrine","type":"Role","_key":"106659","_from":"62850","_to":"62849"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"106670","_from":"62862","_to":"62860"} +{"$label":"ACTS_IN","name":"Teis","type":"Role","_key":"106669","_from":"62861","_to":"62860"} +{"$label":"ACTS_IN","name":"Arne Skrydsb\u00f8l","type":"Role","_key":"106674","_from":"62864","_to":"62863"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"106679","_from":"62866","_to":"62865"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106685","_from":"62870","_to":"62867"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"106684","_from":"62869","_to":"62867"} +{"$label":"DIRECTED","_key":"106682","_from":"62868","_to":"62867"} +{"$label":"DIRECTED","_key":"106686","_from":"62872","_to":"62871"} +{"$label":"ACTS_IN","name":"Various characters","type":"Role","_key":"106700","_from":"62878","_to":"62875"} +{"$label":"ACTS_IN","name":"Various characters","type":"Role","_key":"106699","_from":"62877","_to":"62875"} +{"$label":"ACTS_IN","name":"Token Black","type":"Role","_key":"106698","_from":"62876","_to":"62875"} +{"$label":"DIRECTED","_key":"106711","_from":"62888","_to":"62880"} +{"$label":"DIRECTED","_key":"106710","_from":"62881","_to":"62880"} +{"$label":"ACTS_IN","name":"G\u00f6sta Angerud","type":"Role","_key":"106708","_from":"62887","_to":"62880"} +{"$label":"ACTS_IN","name":"Siv \u00c5man","type":"Role","_key":"106707","_from":"62886","_to":"62880"} +{"$label":"ACTS_IN","name":"Maj-Britt 'Majsan' Lindberg","type":"Role","_key":"106706","_from":"62885","_to":"62880"} +{"$label":"ACTS_IN","name":"Robban S\u00f6derberg","type":"Role","_key":"106705","_from":"62884","_to":"62880"} +{"$label":"ACTS_IN","name":"Berra Ohlsson","type":"Role","_key":"106704","_from":"62883","_to":"62880"} +{"$label":"ACTS_IN","name":"Ole Bramserud","type":"Role","_key":"106703","_from":"62882","_to":"62880"} +{"$label":"ACTS_IN","name":"Stig-Helmer Olsson","type":"Role","_key":"106702","_from":"62881","_to":"62880"} +{"$label":"DIRECTED","_key":"115055","_from":"62881","_to":"67744"} +{"$label":"DIRECTED","_key":"111418","_from":"62881","_to":"65788"} +{"$label":"ACTS_IN","name":"Helge Jonsson","type":"Role","_key":"115048","_from":"62881","_to":"67744"} +{"$label":"ACTS_IN","name":"Stig-Helmer Olsson","type":"Role","_key":"111419","_from":"62881","_to":"65788"} +{"$label":"ACTS_IN","name":"Ole Bramserud","type":"Role","_key":"111420","_from":"62882","_to":"65788"} +{"$label":"ACTS_IN","name":"Tore Tallroth","type":"Role","_key":"115051","_from":"62884","_to":"67744"} +{"$label":"DIRECTED","_key":"115056","_from":"62888","_to":"67744"} +{"$label":"ACTS_IN","name":"Arne Vium","type":"Role","_key":"106725","_from":"62899","_to":"62892"} +{"$label":"ACTS_IN","name":"Birger","type":"Role","_key":"106724","_from":"62898","_to":"62892"} +{"$label":"ACTS_IN","name":"Liselotte","type":"Role","_key":"106723","_from":"62897","_to":"62892"} +{"$label":"ACTS_IN","name":"Toke","type":"Role","_key":"106722","_from":"62896","_to":"62892"} +{"$label":"ACTS_IN","name":"Agnete","type":"Role","_key":"106721","_from":"62895","_to":"62892"} +{"$label":"ACTS_IN","name":"Jonas","type":"Role","_key":"106720","_from":"62894","_to":"62892"} +{"$label":"DIRECTED","_key":"106719","_from":"62893","_to":"62892"} +{"$label":"DIRECTED","_key":"106730","_from":"62910","_to":"62909"} +{"$label":"ACTS_IN","name":"Pr\u00e6stestemmer (voice)","type":"Role","_key":"106752","_from":"62928","_to":"62913"} +{"$label":"ACTS_IN","name":"Pr\u00e6stestemmer (voice)","type":"Role","_key":"106751","_from":"62927","_to":"62913"} +{"$label":"ACTS_IN","name":"Maltesisk Vagt","type":"Role","_key":"106750","_from":"62926","_to":"62913"} +{"$label":"ACTS_IN","name":"Katolsk Pr\u00e6st","type":"Role","_key":"106749","_from":"62925","_to":"62913"} +{"$label":"ACTS_IN","name":"Politimand","type":"Role","_key":"106748","_from":"62924","_to":"62913"} +{"$label":"ACTS_IN","name":"Malteserriddernes Stormester","type":"Role","_key":"106747","_from":"62923","_to":"62913"} +{"$label":"ACTS_IN","name":"Moderpr\u00e6st","type":"Role","_key":"106746","_from":"62922","_to":"62913"} +{"$label":"ACTS_IN","name":"Dorthe","type":"Role","_key":"106745","_from":"62921","_to":"62913"} +{"$label":"ACTS_IN","name":"Christian","type":"Role","_key":"106744","_from":"62920","_to":"62913"} +{"$label":"ACTS_IN","name":"Elena","type":"Role","_key":"106742","_from":"62919","_to":"62913"} +{"$label":"ACTS_IN","name":"Fie","type":"Role","_key":"106741","_from":"62918","_to":"62913"} +{"$label":"ACTS_IN","name":"Mathias","type":"Role","_key":"106740","_from":"62917","_to":"62913"} +{"$label":"ACTS_IN","name":"Nis","type":"Role","_key":"106739","_from":"62916","_to":"62913"} +{"$label":"ACTS_IN","name":"Katrine","type":"Role","_key":"106738","_from":"62915","_to":"62913"} +{"$label":"DIRECTED","_key":"106737","_from":"62914","_to":"62913"} +{"$label":"ACTS_IN","name":"Stef","type":"Role","_key":"119624","_from":"62915","_to":"70264"} +{"$label":"ACTS_IN","name":"Herself - Worker","type":"Role","_key":"106754","_from":"62931","_to":"62929"} +{"$label":"DIRECTED","_key":"106753","_from":"62930","_to":"62929"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"106758","_from":"62937","_to":"62933"} +{"$label":"ACTS_IN","name":"Camilla","type":"Role","_key":"106757","_from":"62936","_to":"62933"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"106756","_from":"62935","_to":"62933"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"106755","_from":"62934","_to":"62933"} +{"$label":"DIRECTED","_key":"106770","_from":"62944","_to":"62941"} +{"$label":"ACTS_IN","name":"Pete Macauley","type":"Role","_key":"106769","_from":"62943","_to":"62941"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"106766","_from":"62942","_to":"62941"} +{"$label":"ACTS_IN","name":"Oklahoma Sooners","type":"Role","_key":"106774","_from":"62950","_to":"62946"} +{"$label":"ACTS_IN","name":"Sam Bradford","type":"Role","_key":"106773","_from":"62949","_to":"62946"} +{"$label":"ACTS_IN","name":"Florida Gators","type":"Role","_key":"106772","_from":"62948","_to":"62946"} +{"$label":"ACTS_IN","name":"Tim Tebow","type":"Role","_key":"106771","_from":"62947","_to":"62946"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"106816","_from":"62969","_to":"62951"} +{"$label":"ACTS_IN","name":"Lydia Jaspersen","type":"Role","_key":"106815","_from":"62968","_to":"62951"} +{"$label":"ACTS_IN","name":"TV Reporter","type":"Role","_key":"106814","_from":"62967","_to":"62951"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"106812","_from":"62966","_to":"62951"} +{"$label":"ACTS_IN","name":"Sheriff","type":"Role","_key":"106811","_from":"62965","_to":"62951"} +{"$label":"ACTS_IN","name":"ICU Nurse","type":"Role","_key":"106810","_from":"62964","_to":"62951"} +{"$label":"ACTS_IN","name":"Resident","type":"Role","_key":"106808","_from":"62963","_to":"62951"} +{"$label":"ACTS_IN","name":"TV Reporter","type":"Role","_key":"106807","_from":"62962","_to":"62951"} +{"$label":"ACTS_IN","name":"Casino Lounge Singer","type":"Role","_key":"106806","_from":"62961","_to":"62951"} +{"$label":"ACTS_IN","name":"Stickman","type":"Role","_key":"106805","_from":"62960","_to":"62951"} +{"$label":"ACTS_IN","name":"Traci","type":"Role","_key":"106803","_from":"62959","_to":"62951"} +{"$label":"ACTS_IN","name":"Internal Medicine Receptionist (voice)","type":"Role","_key":"106801","_from":"62958","_to":"62951"} +{"$label":"ACTS_IN","name":"Prayer Group Kid #1","type":"Role","_key":"106800","_from":"62957","_to":"62951"} +{"$label":"ACTS_IN","name":"Social Worker","type":"Role","_key":"106799","_from":"62956","_to":"62951"} +{"$label":"ACTS_IN","name":"Funeral Reporter","type":"Role","_key":"106795","_from":"62955","_to":"62951"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"106794","_from":"62954","_to":"62951"} +{"$label":"ACTS_IN","name":"Prayer Group Kid #2","type":"Role","_key":"106790","_from":"62953","_to":"62951"} +{"$label":"ACTS_IN","name":"Cubicle Neighbour","type":"Role","_key":"106787","_from":"62952","_to":"62951"} +{"$label":"ACTS_IN","name":"John Cuthbertson","type":"Role","_key":"106828","_from":"62977","_to":"62970"} +{"$label":"ACTS_IN","name":"William Kennerly","type":"Role","_key":"106827","_from":"62976","_to":"62970"} +{"$label":"ACTS_IN","name":"Thomas Bodenham","type":"Role","_key":"106826","_from":"62975","_to":"62970"} +{"$label":"ACTS_IN","name":"Alexander Dalton","type":"Role","_key":"106825","_from":"62974","_to":"62970"} +{"$label":"ACTS_IN","name":"Edward Brown","type":"Role","_key":"106824","_from":"62973","_to":"62970"} +{"$label":"ACTS_IN","name":"William Sorrell","type":"Role","_key":"106823","_from":"62972","_to":"62970"} +{"$label":"ACTS_IN","name":"John Mather","type":"Role","_key":"106820","_from":"62971","_to":"62970"} +{"$label":"DIRECTED","_key":"106844","_from":"62984","_to":"62978"} +{"$label":"ACTS_IN","name":"Builder","type":"Role","_key":"106843","_from":"62983","_to":"62978"} +{"$label":"ACTS_IN","name":"Mrs Williams","type":"Role","_key":"106842","_from":"62982","_to":"62978"} +{"$label":"ACTS_IN","name":"Freddy Fry","type":"Role","_key":"106841","_from":"62981","_to":"62978"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"106839","_from":"62980","_to":"62978"} +{"$label":"ACTS_IN","name":"Burgies Manager","type":"Role","_key":"106834","_from":"62979","_to":"62978"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106855","_from":"62993","_to":"62987"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"106854","_from":"62992","_to":"62987"} +{"$label":"ACTS_IN","name":"Dog Girl","type":"Role","_key":"106853","_from":"62991","_to":"62987"} +{"$label":"ACTS_IN","name":"Barabara-Man","type":"Role","_key":"106852","_from":"62990","_to":"62987"} +{"$label":"ACTS_IN","name":"Tokyo Police Chief","type":"Role","_key":"106851","_from":"62989","_to":"62987"} +{"$label":"DIRECTED","_key":"106848","_from":"62988","_to":"62987"} +{"$label":"DIRECTED","_key":"106868","_from":"63002","_to":"62996"} +{"$label":"ACTS_IN","name":"Old Man Peterson","type":"Role","_key":"106867","_from":"63001","_to":"62996"} +{"$label":"ACTS_IN","name":"Oyster Farmer Barry","type":"Role","_key":"106866","_from":"63000","_to":"62996"} +{"$label":"ACTS_IN","name":"Heath","type":"Role","_key":"106865","_from":"62999","_to":"62996"} +{"$label":"ACTS_IN","name":"Slug","type":"Role","_key":"106863","_from":"62998","_to":"62996"} +{"$label":"ACTS_IN","name":"Nikki Flange","type":"Role","_key":"106862","_from":"62997","_to":"62996"} +{"$label":"ACTS_IN","name":"Firell","type":"Role","_key":"106879","_from":"63008","_to":"63004"} +{"$label":"ACTS_IN","name":"Malcolm Bridges","type":"Role","_key":"106878","_from":"63007","_to":"63004"} +{"$label":"ACTS_IN","name":"Sarah Cantrell","type":"Role","_key":"106877","_from":"63006","_to":"63004"} +{"$label":"ACTS_IN","name":"David Martell","type":"Role","_key":"106874","_from":"63005","_to":"63004"} +{"$label":"DIRECTED","_key":"106880","_from":"63010","_to":"63009"} +{"$label":"ACTS_IN","name":"Leng Xue","type":"Role","_key":"106897","_from":"63021","_to":"63014"} +{"$label":"ACTS_IN","name":"Zhanlin Ma","type":"Role","_key":"106896","_from":"63020","_to":"63014"} +{"$label":"ACTS_IN","name":"Leng Xue","type":"Role","_key":"106895","_from":"63019","_to":"63014"} +{"$label":"ACTS_IN","name":"Liu Dong","type":"Role","_key":"106894","_from":"63018","_to":"63014"} +{"$label":"ACTS_IN","name":"Ga Yu","type":"Role","_key":"106893","_from":"63017","_to":"63014"} +{"$label":"ACTS_IN","name":"Ri Tai","type":"Role","_key":"106892","_from":"63016","_to":"63014"} +{"$label":"DIRECTED","_key":"106891","_from":"63015","_to":"63014"} +{"$label":"ACTS_IN","name":"Percy Nileg\u00e5rd \/ Magnus","type":"Role","_key":"106902","_from":"63026","_to":"63023"} +{"$label":"ACTS_IN","name":"Lennart Sundstr\u00f6m","type":"Role","_key":"106901","_from":"63025","_to":"63023"} +{"$label":"DIRECTED","_key":"106898","_from":"63024","_to":"63023"} +{"$label":"ACTS_IN","name":"The Cop","type":"Role","_key":"106910","_from":"63031","_to":"63027"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"106908","_from":"63030","_to":"63027"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"106906","_from":"63029","_to":"63027"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"106904","_from":"63028","_to":"63027"} +{"$label":"ACTS_IN","name":"Demon","type":"Role","_key":"106923","_from":"63043","_to":"63033"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"106922","_from":"63042","_to":"63033"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"106921","_from":"63041","_to":"63033"} +{"$label":"ACTS_IN","name":"Shop assistant","type":"Role","_key":"106920","_from":"63040","_to":"63033"} +{"$label":"ACTS_IN","name":"Police detective","type":"Role","_key":"106919","_from":"63039","_to":"63033"} +{"$label":"ACTS_IN","name":"Postman","type":"Role","_key":"106918","_from":"63034","_to":"63033"} +{"$label":"ACTS_IN","name":"Peter Eriksson","type":"Role","_key":"106917","_from":"63038","_to":"63033"} +{"$label":"ACTS_IN","name":"Lotta Eriksson","type":"Role","_key":"106916","_from":"63037","_to":"63033"} +{"$label":"ACTS_IN","name":"Allan Svensson","type":"Role","_key":"106915","_from":"63036","_to":"63033"} +{"$label":"DIRECTED","_key":"106912","_from":"63035","_to":"63033"} +{"$label":"DIRECTED","_key":"106911","_from":"63034","_to":"63033"} +{"$label":"ACTS_IN","name":"Jennifer's Mother","type":"Role","_key":"106934","_from":"63049","_to":"63044"} +{"$label":"ACTS_IN","name":"Orderly","type":"Role","_key":"106932","_from":"63048","_to":"63044"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"106931","_from":"63047","_to":"63044"} +{"$label":"ACTS_IN","name":"Wayne Morrison","type":"Role","_key":"106928","_from":"63046","_to":"63044"} +{"$label":"DIRECTED","_key":"106924","_from":"63045","_to":"63044"} +{"$label":"ACTS_IN","name":"Stewardess #1","type":"Role","_key":"106953","_from":"63057","_to":"63051"} +{"$label":"ACTS_IN","name":"Flight Engineer","type":"Role","_key":"106952","_from":"63056","_to":"63051"} +{"$label":"ACTS_IN","name":"Co-pilot","type":"Role","_key":"106951","_from":"63055","_to":"63051"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"106950","_from":"63054","_to":"63051"} +{"$label":"ACTS_IN","name":"Ballerina (Death)","type":"Role","_key":"106949","_from":"63053","_to":"63051"} +{"$label":"ACTS_IN","name":"Captain Kirigin","type":"Role","_key":"106946","_from":"63052","_to":"63051"} +{"$label":"ACTS_IN","name":"Pool Table Player","type":"Role","_key":"106982","_from":"63075","_to":"63058"} +{"$label":"ACTS_IN","name":"Masonesque Murderer","type":"Role","_key":"106981","_from":"63074","_to":"63058"} +{"$label":"ACTS_IN","name":"Radio Announcer (Voice)","type":"Role","_key":"106980","_from":"63073","_to":"63058"} +{"$label":"ACTS_IN","name":"Bar Patron","type":"Role","_key":"106979","_from":"63072","_to":"63058"} +{"$label":"ACTS_IN","name":"Son","type":"Role","_key":"106978","_from":"63071","_to":"63058"} +{"$label":"ACTS_IN","name":"Closing Radio DJ","type":"Role","_key":"106977","_from":"63070","_to":"63058"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"106975","_from":"63069","_to":"63058"} +{"$label":"ACTS_IN","name":"Sergeant Van Meer","type":"Role","_key":"106972","_from":"63068","_to":"63058"} +{"$label":"ACTS_IN","name":"Andy Lopez's Wife","type":"Role","_key":"106969","_from":"63067","_to":"63058"} +{"$label":"ACTS_IN","name":"Crying Woman","type":"Role","_key":"106968","_from":"63066","_to":"63058"} +{"$label":"ACTS_IN","name":"Psychic Woman's Daughter","type":"Role","_key":"106967","_from":"63065","_to":"63058"} +{"$label":"ACTS_IN","name":"Psychic Woman","type":"Role","_key":"106966","_from":"63064","_to":"63058"} +{"$label":"ACTS_IN","name":"Dr. Bates","type":"Role","_key":"106965","_from":"63063","_to":"63058"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"106963","_from":"63062","_to":"63058"} +{"$label":"ACTS_IN","name":"Bartender Sammy","type":"Role","_key":"106962","_from":"63061","_to":"63058"} +{"$label":"ACTS_IN","name":"Tavern Owner Pete","type":"Role","_key":"106959","_from":"63060","_to":"63058"} +{"$label":"DIRECTED","_key":"106955","_from":"63059","_to":"63058"} +{"$label":"ACTS_IN","name":"Mary Kay Gilbert","type":"Role","_key":"106999","_from":"63081","_to":"63076"} +{"$label":"ACTS_IN","name":"Miss Gibbons","type":"Role","_key":"106998","_from":"63080","_to":"63076"} +{"$label":"ACTS_IN","name":"Ben Andrews","type":"Role","_key":"106997","_from":"63079","_to":"63076"} +{"$label":"ACTS_IN","name":"Coach Betsy","type":"Role","_key":"106994","_from":"63078","_to":"63076"} +{"$label":"ACTS_IN","name":"Virginia","type":"Role","_key":"106990","_from":"63077","_to":"63076"} +{"$label":"DIRECTED","_key":"107006","_from":"63086","_to":"63083"} +{"$label":"ACTS_IN","name":"B\u00f6rg","type":"Role","_key":"107005","_from":"63085","_to":"63083"} +{"$label":"ACTS_IN","name":"Henrick","type":"Role","_key":"107003","_from":"63084","_to":"63083"} +{"$label":"ACTS_IN","name":"Ed Forbes","type":"Role","_key":"107011","_from":"63090","_to":"63087"} +{"$label":"ACTS_IN","name":"Charles Kenneth 'Charley' Patterson","type":"Role","_key":"107010","_from":"63089","_to":"63087"} +{"$label":"ACTS_IN","name":"Connie Scott","type":"Role","_key":"107008","_from":"63088","_to":"63087"} +{"$label":"ACTS_IN","name":"Helen Morrison","type":"Role","_key":"107017","_from":"63092","_to":"63091"} +{"$label":"ACTS_IN","name":"Ni\u00f1a","type":"Role","_key":"107027","_from":"63101","_to":"63094"} +{"$label":"ACTS_IN","name":"Jimmy 'Pinche' McLaine","type":"Role","_key":"107026","_from":"63100","_to":"63094"} +{"$label":"ACTS_IN","name":"Manuel Leonardi","type":"Role","_key":"107025","_from":"63099","_to":"63094"} +{"$label":"ACTS_IN","name":"Tv Chainsaw Psycho Killer","type":"Role","_key":"107024","_from":"63095","_to":"63094"} +{"$label":"ACTS_IN","name":"Daniel Lerhmann","type":"Role","_key":"107023","_from":"63098","_to":"63094"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"107022","_from":"63097","_to":"63094"} +{"$label":"ACTS_IN","name":"Malena","type":"Role","_key":"107021","_from":"63096","_to":"63094"} +{"$label":"DIRECTED","_key":"107020","_from":"63095","_to":"63094"} +{"$label":"ACTS_IN","name":"Chica","type":"Role","_key":"111574","_from":"63096","_to":"65871"} +{"$label":"ACTS_IN","name":"Sheriff At Bridge","type":"Role","_key":"107051","_from":"63125","_to":"63102"} +{"$label":"ACTS_IN","name":"'The Man'","type":"Role","_key":"107050","_from":"63103","_to":"63102"} +{"$label":"ACTS_IN","name":"Man At Bridge","type":"Role","_key":"107049","_from":"63124","_to":"63102"} +{"$label":"ACTS_IN","name":"Bus Ticket Customer","type":"Role","_key":"107048","_from":"63123","_to":"63102"} +{"$label":"ACTS_IN","name":"Lake Zombie","type":"Role","_key":"107047","_from":"63122","_to":"63102"} +{"$label":"ACTS_IN","name":"A Walking Corpse","type":"Role","_key":"107046","_from":"63121","_to":"63102"} +{"$label":"ACTS_IN","name":"Mary's Girlfriend","type":"Role","_key":"107045","_from":"63120","_to":"63102"} +{"$label":"ACTS_IN","name":"Mary's Girlfriend","type":"Role","_key":"107044","_from":"63119","_to":"63102"} +{"$label":"ACTS_IN","name":"Dancing Zombie","type":"Role","_key":"107043","_from":"63118","_to":"63102"} +{"$label":"ACTS_IN","name":"Dress Store Customer","type":"Role","_key":"107042","_from":"63117","_to":"63102"} +{"$label":"ACTS_IN","name":"Lake Zombie","type":"Role","_key":"107041","_from":"63116","_to":"63102"} +{"$label":"ACTS_IN","name":"Drag Racer","type":"Role","_key":"107040","_from":"63115","_to":"63102"} +{"$label":"ACTS_IN","name":"Dress Sales Lady","type":"Role","_key":"107039","_from":"63114","_to":"63102"} +{"$label":"ACTS_IN","name":"Chip, Man at Juke Box","type":"Role","_key":"107038","_from":"63113","_to":"63102"} +{"$label":"ACTS_IN","name":"Mechanic","type":"Role","_key":"107037","_from":"63112","_to":"63102"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"107036","_from":"63111","_to":"63102"} +{"$label":"ACTS_IN","name":"Organ Factory Worker","type":"Role","_key":"107035","_from":"63110","_to":"63102"} +{"$label":"ACTS_IN","name":"Organ Factory Boss","type":"Role","_key":"107034","_from":"63109","_to":"63102"} +{"$label":"ACTS_IN","name":"Dr. Samuels","type":"Role","_key":"107033","_from":"63108","_to":"63102"} +{"$label":"ACTS_IN","name":"Minister","type":"Role","_key":"107032","_from":"63107","_to":"63102"} +{"$label":"ACTS_IN","name":"John Linden","type":"Role","_key":"107031","_from":"63106","_to":"63102"} +{"$label":"ACTS_IN","name":"Mrs. Thomas, Landlady","type":"Role","_key":"107030","_from":"63105","_to":"63102"} +{"$label":"ACTS_IN","name":"Mary Henry","type":"Role","_key":"107029","_from":"63104","_to":"63102"} +{"$label":"DIRECTED","_key":"107028","_from":"63103","_to":"63102"} +{"$label":"ACTS_IN","name":"Sharane","type":"Role","_key":"107058","_from":"63129","_to":"63126"} +{"$label":"ACTS_IN","name":"Play","type":"Role","_key":"107055","_from":"63128","_to":"63126"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"107053","_from":"63127","_to":"63126"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"107088","_from":"63127","_to":"63144"} +{"$label":"ACTS_IN","name":"Kid","type":"Role","_key":"107078","_from":"63127","_to":"63141"} +{"$label":"ACTS_IN","name":"Play","type":"Role","_key":"107089","_from":"63128","_to":"63144"} +{"$label":"ACTS_IN","name":"Play","type":"Role","_key":"107077","_from":"63128","_to":"63141"} +{"$label":"ACTS_IN","name":"Juanita","type":"Role","_key":"107639","_from":"63129","_to":"63534"} +{"$label":"ACTS_IN","name":"Kirketjeneren","type":"Role","_key":"107072","_from":"63140","_to":"63130"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"107070","_from":"63139","_to":"63130"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"107069","_from":"63138","_to":"63130"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"107067","_from":"63137","_to":"63130"} +{"$label":"ACTS_IN","name":"Selma","type":"Role","_key":"107066","_from":"63136","_to":"63130"} +{"$label":"ACTS_IN","name":"Malin","type":"Role","_key":"107065","_from":"63135","_to":"63130"} +{"$label":"ACTS_IN","name":"Isak","type":"Role","_key":"107064","_from":"63134","_to":"63130"} +{"$label":"ACTS_IN","name":"Liss","type":"Role","_key":"107063","_from":"63133","_to":"63130"} +{"$label":"ACTS_IN","name":"Fritidskontakt","type":"Role","_key":"107062","_from":"63132","_to":"63130"} +{"$label":"DIRECTED","_key":"107061","_from":"63131","_to":"63130"} +{"$label":"DIRECTED","_key":"107085","_from":"63143","_to":"63141"} +{"$label":"DIRECTED","_key":"107084","_from":"63142","_to":"63141"} +{"$label":"ACTS_IN","name":"Jerome Jones","type":"Role","_key":"107095","_from":"63147","_to":"63144"} +{"$label":"ACTS_IN","name":"Stinky","type":"Role","_key":"107093","_from":"63146","_to":"63144"} +{"$label":"ACTS_IN","name":"Veda","type":"Role","_key":"107090","_from":"63145","_to":"63144"} +{"$label":"ACTS_IN","name":"Gladys","type":"Role","_key":"107110","_from":"63157","_to":"63151"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"107109","_from":"63156","_to":"63151"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"107108","_from":"63155","_to":"63151"} +{"$label":"ACTS_IN","name":"Roach","type":"Role","_key":"107107","_from":"63154","_to":"63151"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"107106","_from":"63153","_to":"63151"} +{"$label":"ACTS_IN","name":"Mrs. Smith","type":"Role","_key":"107104","_from":"63152","_to":"63151"} +{"$label":"ACTS_IN","name":"Denzil Holles","type":"Role","_key":"115886","_from":"63153","_to":"68229"} +{"$label":"DIRECTED","_key":"107113","_from":"63164","_to":"63163"} +{"$label":"ACTS_IN","name":"Grouch Cab Driver","type":"Role","_key":"107116","_from":"63168","_to":"63166"} +{"$label":"DIRECTED","_key":"107114","_from":"63167","_to":"63166"} +{"$label":"ACTS_IN","name":"Lead Dancer","type":"Role","_key":"107123","_from":"63172","_to":"63171"} +{"$label":"ACTS_IN","name":"Gwen Adams","type":"Role","_key":"107132","_from":"63180","_to":"63173"} +{"$label":"ACTS_IN","name":"Jo Awesome","type":"Role","_key":"107131","_from":"63179","_to":"63173"} +{"$label":"ACTS_IN","name":"Candi","type":"Role","_key":"107130","_from":"63178","_to":"63173"} +{"$label":"ACTS_IN","name":"Trixie","type":"Role","_key":"107129","_from":"63177","_to":"63173"} +{"$label":"ACTS_IN","name":"Dixie","type":"Role","_key":"107128","_from":"63176","_to":"63173"} +{"$label":"ACTS_IN","name":"Miss Apple (as Nikki Ziering)","type":"Role","_key":"107127","_from":"63175","_to":"63173"} +{"$label":"ACTS_IN","name":"Hilary Weiss","type":"Role","_key":"107125","_from":"63174","_to":"63173"} +{"$label":"ACTS_IN","name":"Jules","type":"Role","_key":"110917","_from":"63179","_to":"65519"} +{"$label":"ACTS_IN","name":"Ophelia, Carey's Mom","type":"Role","_key":"110691","_from":"63180","_to":"65381"} +{"$label":"ACTS_IN","name":"Choir Director","type":"Role","_key":"107135","_from":"63184","_to":"63181"} +{"$label":"ACTS_IN","name":"Reverend Billy","type":"Role","_key":"107134","_from":"63183","_to":"63181"} +{"$label":"DIRECTED","_key":"107133","_from":"63182","_to":"63181"} +{"$label":"DIRECTED","_key":"107167","_from":"63208","_to":"63188"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"107166","_from":"63207","_to":"63188"} +{"$label":"ACTS_IN","name":"Jacko","type":"Role","_key":"107165","_from":"63206","_to":"63188"} +{"$label":"ACTS_IN","name":"Blacky","type":"Role","_key":"107164","_from":"63205","_to":"63188"} +{"$label":"ACTS_IN","name":"Fidge","type":"Role","_key":"107162","_from":"63204","_to":"63188"} +{"$label":"ACTS_IN","name":"Parrot","type":"Role","_key":"107161","_from":"63203","_to":"63188"} +{"$label":"ACTS_IN","name":"Legless","type":"Role","_key":"107160","_from":"63202","_to":"63188"} +{"$label":"ACTS_IN","name":"Sir","type":"Role","_key":"107159","_from":"63201","_to":"63188"} +{"$label":"ACTS_IN","name":"Swanton","type":"Role","_key":"107158","_from":"63200","_to":"63188"} +{"$label":"ACTS_IN","name":"Doll","type":"Role","_key":"107157","_from":"63199","_to":"63188"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"107156","_from":"63198","_to":"63188"} +{"$label":"ACTS_IN","name":"Justine","type":"Role","_key":"107154","_from":"63197","_to":"63188"} +{"$label":"ACTS_IN","name":"Gibbie","type":"Role","_key":"107153","_from":"63196","_to":"63188"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"107152","_from":"63195","_to":"63188"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"107151","_from":"63194","_to":"63188"} +{"$label":"ACTS_IN","name":"Granny","type":"Role","_key":"107150","_from":"63193","_to":"63188"} +{"$label":"ACTS_IN","name":"Dovey","type":"Role","_key":"107149","_from":"63192","_to":"63188"} +{"$label":"ACTS_IN","name":"Beatie Bow","type":"Role","_key":"107148","_from":"63191","_to":"63188"} +{"$label":"ACTS_IN","name":"Abigail Kirk","type":"Role","_key":"107147","_from":"63190","_to":"63188"} +{"$label":"ACTS_IN","name":"Judah \/ Robert","type":"Role","_key":"107146","_from":"63189","_to":"63188"} +{"$label":"ACTS_IN","name":"Dave Mitchell","type":"Role","_key":"115984","_from":"63189","_to":"68307"} +{"$label":"ACTS_IN","name":"Jim","type":"Role","_key":"107571","_from":"63201","_to":"63475"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"107175","_from":"63214","_to":"63209"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"107174","_from":"63213","_to":"63209"} +{"$label":"ACTS_IN","name":"CPO Lopes","type":"Role","_key":"107173","_from":"63212","_to":"63209"} +{"$label":"ACTS_IN","name":"Lt. Robert Peet","type":"Role","_key":"107172","_from":"63211","_to":"63209"} +{"$label":"DIRECTED","_key":"107168","_from":"63210","_to":"63209"} +{"$label":"ACTS_IN","name":"Channel 7 Cameraman","type":"Role","_key":"120984","_from":"63211","_to":"71049"} +{"$label":"ACTS_IN","name":"Benny Que","type":"Role","_key":"108217","_from":"63211","_to":"63955"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"107179","_from":"63218","_to":"63215"} +{"$label":"ACTS_IN","name":"Shirl","type":"Role","_key":"107178","_from":"63217","_to":"63215"} +{"$label":"ACTS_IN","name":"Gerry Austin","type":"Role","_key":"107177","_from":"63216","_to":"63215"} +{"$label":"DIRECTED","_key":"107186","_from":"63222","_to":"63219"} +{"$label":"ACTS_IN","name":"Megan","type":"Role","_key":"107183","_from":"63221","_to":"63219"} +{"$label":"ACTS_IN","name":"Truman","type":"Role","_key":"107182","_from":"63220","_to":"63219"} +{"$label":"DIRECTED","_key":"107204","_from":"63229","_to":"63224"} +{"$label":"ACTS_IN","name":"Det. Georgette Wilson","type":"Role","_key":"107202","_from":"63228","_to":"63224"} +{"$label":"ACTS_IN","name":"I.A. Officer","type":"Role","_key":"107196","_from":"63227","_to":"63224"} +{"$label":"ACTS_IN","name":"Sarah Reeves","type":"Role","_key":"107190","_from":"63226","_to":"63224"} +{"$label":"ACTS_IN","name":"Lee Choe","type":"Role","_key":"107187","_from":"63225","_to":"63224"} +{"$label":"ACTS_IN","name":"Marty's Girlfriend","type":"Role","_key":"107231","_from":"63244","_to":"63230"} +{"$label":"ACTS_IN","name":"T.V. Newscaster","type":"Role","_key":"107229","_from":"63243","_to":"63230"} +{"$label":"ACTS_IN","name":"Reveller #3","type":"Role","_key":"107228","_from":"63242","_to":"63230"} +{"$label":"ACTS_IN","name":"Reveller #2","type":"Role","_key":"107227","_from":"63241","_to":"63230"} +{"$label":"ACTS_IN","name":"Cousin Ernie","type":"Role","_key":"107225","_from":"63240","_to":"63230"} +{"$label":"ACTS_IN","name":"Menzies","type":"Role","_key":"107224","_from":"63239","_to":"63230"} +{"$label":"ACTS_IN","name":"Wild Guy #2","type":"Role","_key":"107222","_from":"63238","_to":"63230"} +{"$label":"ACTS_IN","name":"Angry Driver (as Brian Renfro)","type":"Role","_key":"107220","_from":"63237","_to":"63230"} +{"$label":"ACTS_IN","name":"Streetcar Daughter","type":"Role","_key":"107218","_from":"63236","_to":"63230"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"107216","_from":"63235","_to":"63230"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"107214","_from":"63234","_to":"63230"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"107212","_from":"63233","_to":"63230"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"107211","_from":"63232","_to":"63230"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"107210","_from":"63231","_to":"63230"} +{"$label":"DIRECTED","_key":"107240","_from":"63246","_to":"63245"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"107272","_from":"63269","_to":"63247"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"107270","_from":"63268","_to":"63247"} +{"$label":"ACTS_IN","name":"Tattoo Girl","type":"Role","_key":"107269","_from":"63267","_to":"63247"} +{"$label":"ACTS_IN","name":"Mail-Order Bride","type":"Role","_key":"107268","_from":"63266","_to":"63247"} +{"$label":"ACTS_IN","name":"Bridegroom","type":"Role","_key":"107267","_from":"63265","_to":"63247"} +{"$label":"ACTS_IN","name":"Retardoe","type":"Role","_key":"107266","_from":"63264","_to":"63247"} +{"$label":"ACTS_IN","name":"Newscaster","type":"Role","_key":"107265","_from":"63263","_to":"63247"} +{"$label":"ACTS_IN","name":"Milk Man","type":"Role","_key":"107264","_from":"63262","_to":"63247"} +{"$label":"ACTS_IN","name":"Big Bad Cop","type":"Role","_key":"107263","_from":"63261","_to":"63247"} +{"$label":"ACTS_IN","name":"Watch-Guard","type":"Role","_key":"107262","_from":"63260","_to":"63247"} +{"$label":"ACTS_IN","name":"Old Shirtless Man","type":"Role","_key":"107261","_from":"63259","_to":"63247"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"107259","_from":"63258","_to":"63247"} +{"$label":"ACTS_IN","name":"Violet's Friend","type":"Role","_key":"107258","_from":"63257","_to":"63247"} +{"$label":"ACTS_IN","name":"Dock Worker","type":"Role","_key":"107255","_from":"63256","_to":"63247"} +{"$label":"ACTS_IN","name":"Dock Worker","type":"Role","_key":"107254","_from":"63255","_to":"63247"} +{"$label":"ACTS_IN","name":"Muriel the Cashier","type":"Role","_key":"107253","_from":"63254","_to":"63247"} +{"$label":"ACTS_IN","name":"Conway","type":"Role","_key":"107252","_from":"63253","_to":"63247"} +{"$label":"ACTS_IN","name":"Hard Hat Dandy","type":"Role","_key":"107251","_from":"63252","_to":"63247"} +{"$label":"ACTS_IN","name":"Amica Pela","type":"Role","_key":"107250","_from":"63251","_to":"63247"} +{"$label":"ACTS_IN","name":"Wadsworth Pela","type":"Role","_key":"107249","_from":"63250","_to":"63247"} +{"$label":"ACTS_IN","name":"Tim Munn","type":"Role","_key":"107247","_from":"63249","_to":"63247"} +{"$label":"ACTS_IN","name":"Bern","type":"Role","_key":"107244","_from":"63248","_to":"63247"} +{"$label":"ACTS_IN","name":"Leland","type":"Role","_key":"121375","_from":"63250","_to":"71326"} +{"$label":"ACTS_IN","name":"Mr. De Vries","type":"Role","_key":"107288","_from":"63278","_to":"63270"} +{"$label":"ACTS_IN","name":"Bram","type":"Role","_key":"107287","_from":"63277","_to":"63270"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"107286","_from":"63276","_to":"63270"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"107283","_from":"63275","_to":"63270"} +{"$label":"ACTS_IN","name":"Mother Rockanje","type":"Role","_key":"107280","_from":"63274","_to":"63270"} +{"$label":"ACTS_IN","name":"Old Lotte","type":"Role","_key":"107278","_from":"63273","_to":"63270"} +{"$label":"ACTS_IN","name":"Lotte Bamberg, young","type":"Role","_key":"107275","_from":"63272","_to":"63270"} +{"$label":"ACTS_IN","name":"Anna Bamberg, young","type":"Role","_key":"107274","_from":"63271","_to":"63270"} +{"$label":"ACTS_IN","name":"Joba","type":"Role","_key":"111267","_from":"63274","_to":"65709"} +{"$label":"ACTS_IN","name":"Kaho Kobayashi","type":"Role","_key":"107302","_from":"63285","_to":"63279"} +{"$label":"ACTS_IN","name":"Killer's translator","type":"Role","_key":"107299","_from":"63284","_to":"63279"} +{"$label":"ACTS_IN","name":"Morishita - Burglar","type":"Role","_key":"107297","_from":"63283","_to":"63279"} +{"$label":"ACTS_IN","name":"Misa, Kobayashi's wife","type":"Role","_key":"107295","_from":"63282","_to":"63279"} +{"$label":"ACTS_IN","name":"Aman's Wife","type":"Role","_key":"107291","_from":"63281","_to":"63279"} +{"$label":"DIRECTED","_key":"107289","_from":"63280","_to":"63279"} +{"$label":"ACTS_IN","name":"Toshi","type":"Role","_key":"108202","_from":"63283","_to":"63943"} +{"$label":"ACTS_IN","name":"Policeman Miyaki","type":"Role","_key":"107925","_from":"63283","_to":"63729"} +{"$label":"ACTS_IN","name":"Boba Fett (voice)","type":"Role","_key":"107339","_from":"63305","_to":"63286"} +{"$label":"ACTS_IN","name":"Chief Bast","type":"Role","_key":"107338","_from":"63304","_to":"63286"} +{"$label":"ACTS_IN","name":"Zutton Zutmore","type":"Role","_key":"107337","_from":"63303","_to":"63286"} +{"$label":"ACTS_IN","name":"Rycar Ryjerd","type":"Role","_key":"107335","_from":"63302","_to":"63286"} +{"$label":"ACTS_IN","name":"Announcer (voice)","type":"Role","_key":"107333","_from":"63301","_to":"63286"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"107332","_from":"63300","_to":"63286"} +{"$label":"ACTS_IN","name":"Imperial Guard #1","type":"Role","_key":"107331","_from":"63299","_to":"63286"} +{"$label":"ACTS_IN","name":"Imperial Officer (wallscreen)","type":"Role","_key":"107330","_from":"63298","_to":"63286"} +{"$label":"ACTS_IN","name":"The Reeko Brothers","type":"Role","_key":"107329","_from":"63297","_to":"63286"} +{"$label":"ACTS_IN","name":"Ring Leader","type":"Role","_key":"107328","_from":"63296","_to":"63286"} +{"$label":"ACTS_IN","name":"Holographic Tumblers","type":"Role","_key":"107327","_from":"63295","_to":"63286"} +{"$label":"ACTS_IN","name":"The Great Zorbak (Holographic Gymnast)","type":"Role","_key":"107325","_from":"63294","_to":"63286"} +{"$label":"ACTS_IN","name":"Imperial Guard Officer","type":"Role","_key":"107324","_from":"63293","_to":"63286"} +{"$label":"ACTS_IN","name":"Lumpy","type":"Role","_key":"107323","_from":"63292","_to":"63286"} +{"$label":"ACTS_IN","name":"Itchy","type":"Role","_key":"107322","_from":"63291","_to":"63286"} +{"$label":"ACTS_IN","name":"Malla","type":"Role","_key":"107321","_from":"63290","_to":"63286"} +{"$label":"ACTS_IN","name":"Holographic Band Singer (as The Jefferson Starship)","type":"Role","_key":"107318","_from":"63289","_to":"63286"} +{"$label":"ACTS_IN","name":"Holographic Band Member (as The Jefferson Starship)","type":"Role","_key":"107317","_from":"63288","_to":"63286"} +{"$label":"DIRECTED","_key":"107306","_from":"63287","_to":"63286"} +{"$label":"ACTS_IN","name":"Le petit gar\u00e7on","type":"Role","_key":"107378","_from":"63338","_to":"63306"} +{"$label":"ACTS_IN","name":"Autograph Girl","type":"Role","_key":"107377","_from":"63337","_to":"63306"} +{"$label":"ACTS_IN","name":"Dunce on Paris Bus","type":"Role","_key":"107376","_from":"63336","_to":"63306"} +{"$label":"ACTS_IN","name":"Dunce on Paris Bus","type":"Role","_key":"107375","_from":"63335","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107374","_from":"63334","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107373","_from":"63333","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107372","_from":"63332","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107371","_from":"63331","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107370","_from":"63330","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107369","_from":"63329","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107368","_from":"63328","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107367","_from":"63327","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107366","_from":"63326","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107365","_from":"63325","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107364","_from":"63324","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107363","_from":"63323","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107362","_from":"63322","_to":"63306"} +{"$label":"ACTS_IN","name":"Priest 2","type":"Role","_key":"107361","_from":"63321","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun 2","type":"Role","_key":"107360","_from":"63320","_to":"63306"} +{"$label":"ACTS_IN","name":"Nun","type":"Role","_key":"107359","_from":"63319","_to":"63306"} +{"$label":"ACTS_IN","name":"Man with Flowers","type":"Role","_key":"107358","_from":"63318","_to":"63306"} +{"$label":"ACTS_IN","name":"Buckwheat","type":"Role","_key":"107357","_from":"63317","_to":"63306"} +{"$label":"ACTS_IN","name":"Shirley Temple","type":"Role","_key":"107356","_from":"63316","_to":"63306"} +{"$label":"ACTS_IN","name":"Larry Stooge","type":"Role","_key":"107355","_from":"63315","_to":"63306"} +{"$label":"ACTS_IN","name":"Curly Stooge","type":"Role","_key":"107354","_from":"63314","_to":"63306"} +{"$label":"ACTS_IN","name":"Moe Stooge","type":"Role","_key":"107353","_from":"63313","_to":"63306"} +{"$label":"ACTS_IN","name":"Madonna","type":"Role","_key":"107352","_from":"63312","_to":"63306"} +{"$label":"ACTS_IN","name":"James Dean","type":"Role","_key":"107351","_from":"63311","_to":"63306"} +{"$label":"ACTS_IN","name":"Little Red Riding Hood","type":"Role","_key":"107350","_from":"63310","_to":"63306"} +{"$label":"ACTS_IN","name":"Sammy Davis, Jr.","type":"Role","_key":"107348","_from":"63309","_to":"63306"} +{"$label":"ACTS_IN","name":"Abraham Lincoln","type":"Role","_key":"107347","_from":"63308","_to":"63306"} +{"$label":"DIRECTED","_key":"107340","_from":"63307","_to":"63306"} +{"$label":"DIRECTED","_key":"116078","_from":"63307","_to":"68353"} +{"$label":"ACTS_IN","name":"Steel","type":"Role","_key":"107382","_from":"63341","_to":"63339"} +{"$label":"ACTS_IN","name":"Raheem","type":"Role","_key":"107381","_from":"63340","_to":"63339"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107412","_from":"63363","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107410","_from":"63362","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107408","_from":"63361","_to":"63342"} +{"$label":"ACTS_IN","name":"Sumako (voice)","type":"Role","_key":"107407","_from":"63360","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107406","_from":"63359","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107405","_from":"63358","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107404","_from":"63357","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107403","_from":"63356","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107402","_from":"63355","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107401","_from":"63354","_to":"63342"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"107399","_from":"63353","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107397","_from":"63352","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107396","_from":"63351","_to":"63342"} +{"$label":"ACTS_IN","name":"The teacher (voice)","type":"Role","_key":"107394","_from":"63350","_to":"63342"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107392","_from":"63349","_to":"63342"} +{"$label":"DIRECTED","_key":"107391","_from":"63348","_to":"63342"} +{"$label":"DIRECTED","_key":"107390","_from":"63347","_to":"63342"} +{"$label":"DIRECTED","_key":"107389","_from":"63346","_to":"63342"} +{"$label":"DIRECTED","_key":"107388","_from":"63345","_to":"63342"} +{"$label":"DIRECTED","_key":"107387","_from":"63344","_to":"63342"} +{"$label":"DIRECTED","_key":"107386","_from":"63343","_to":"63342"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"107423","_from":"63373","_to":"63364"} +{"$label":"ACTS_IN","name":"Corporal Byun","type":"Role","_key":"107421","_from":"63372","_to":"63364"} +{"$label":"ACTS_IN","name":"Corporal Lee Jae-pil","type":"Role","_key":"107420","_from":"63371","_to":"63364"} +{"$label":"ACTS_IN","name":"Corporal Joh Byung-hoon","type":"Role","_key":"107419","_from":"63370","_to":"63364"} +{"$label":"ACTS_IN","name":"Sergeant Oh","type":"Role","_key":"107418","_from":"63369","_to":"63364"} +{"$label":"ACTS_IN","name":"Sergeant Park","type":"Role","_key":"107417","_from":"63368","_to":"63364"} +{"$label":"ACTS_IN","name":"Sergeant Cook","type":"Role","_key":"107416","_from":"63367","_to":"63364"} +{"$label":"ACTS_IN","name":"Lieutenant Choi Tae-in","type":"Role","_key":"107414","_from":"63366","_to":"63364"} +{"$label":"DIRECTED","_key":"107413","_from":"63365","_to":"63364"} +{"$label":"DIRECTED","_key":"110349","_from":"63365","_to":"65207"} +{"$label":"ACTS_IN","name":"Gas Station Attendant","type":"Role","_key":"107439","_from":"63384","_to":"63374"} +{"$label":"ACTS_IN","name":"Woman at Orphanage","type":"Role","_key":"107438","_from":"63383","_to":"63374"} +{"$label":"ACTS_IN","name":"Tim's Mother","type":"Role","_key":"107437","_from":"63382","_to":"63374"} +{"$label":"ACTS_IN","name":"Motel Owner","type":"Role","_key":"107436","_from":"63381","_to":"63374"} +{"$label":"ACTS_IN","name":"Tanesha","type":"Role","_key":"107435","_from":"63380","_to":"63374"} +{"$label":"ACTS_IN","name":"Demon Nurse","type":"Role","_key":"107434","_from":"63379","_to":"63374"} +{"$label":"ACTS_IN","name":"Rufus","type":"Role","_key":"107432","_from":"63378","_to":"63374"} +{"$label":"ACTS_IN","name":"Edna","type":"Role","_key":"107430","_from":"63377","_to":"63374"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"107429","_from":"63376","_to":"63374"} +{"$label":"ACTS_IN","name":"Rocky","type":"Role","_key":"107428","_from":"63375","_to":"63374"} +{"$label":"ACTS_IN","name":"Kenzo Mogi","type":"Role","_key":"107448","_from":"63389","_to":"63385"} +{"$label":"ACTS_IN","name":"Watari","type":"Role","_key":"107446","_from":"63388","_to":"63385"} +{"$label":"ACTS_IN","name":"FBI Agent Ray","type":"Role","_key":"107445","_from":"63387","_to":"63385"} +{"$label":"ACTS_IN","name":"Soichiro Yagami","type":"Role","_key":"107442","_from":"63386","_to":"63385"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"107452","_from":"63392","_to":"63390"} +{"$label":"ACTS_IN","name":"Morgane","type":"Role","_key":"107451","_from":"63391","_to":"63390"} +{"$label":"ACTS_IN","name":"13th Morningside Volunteer Infantryman","type":"Role","_key":"107467","_from":"63403","_to":"63393"} +{"$label":"ACTS_IN","name":"13th Morningside Volunteer Infantryman","type":"Role","_key":"107466","_from":"63402","_to":"63393"} +{"$label":"ACTS_IN","name":"13th Morningside Volunteer Infantryman","type":"Role","_key":"107465","_from":"63401","_to":"63393"} +{"$label":"ACTS_IN","name":"Background Player","type":"Role","_key":"107464","_from":"63400","_to":"63393"} +{"$label":"ACTS_IN","name":"Background Player","type":"Role","_key":"107463","_from":"63399","_to":"63393"} +{"$label":"ACTS_IN","name":"Background Player","type":"Role","_key":"107462","_from":"63398","_to":"63393"} +{"$label":"ACTS_IN","name":"Background Player","type":"Role","_key":"107461","_from":"63397","_to":"63393"} +{"$label":"ACTS_IN","name":"Background Player","type":"Role","_key":"107460","_from":"63396","_to":"63393"} +{"$label":"ACTS_IN","name":"Music & Dwarf Creatures (voice)","type":"Role","_key":"107459","_from":"63395","_to":"63393"} +{"$label":"ACTS_IN","name":"Demon Trooper","type":"Role","_key":"107457","_from":"63394","_to":"63393"} +{"$label":"ACTS_IN","name":"Me. Fitzpatrick","type":"Role","_key":"107489","_from":"63423","_to":"63404"} +{"$label":"ACTS_IN","name":"M\u00e8re Sup\u00e9rieure","type":"Role","_key":"107488","_from":"63422","_to":"63404"} +{"$label":"ACTS_IN","name":"Soeur Anna","type":"Role","_key":"107487","_from":"63421","_to":"63404"} +{"$label":"ACTS_IN","name":"Dr. Andronic Lafond","type":"Role","_key":"107486","_from":"63420","_to":"63404"} +{"$label":"ACTS_IN","name":"V\u00e9ronique Caron","type":"Role","_key":"107485","_from":"63419","_to":"63404"} +{"$label":"ACTS_IN","name":"L'\u00c9v\u00eaque","type":"Role","_key":"107484","_from":"63418","_to":"63404"} +{"$label":"ACTS_IN","name":"Alphonse Chandonnet","type":"Role","_key":"107483","_from":"63417","_to":"63404"} +{"$label":"ACTS_IN","name":"Arcadius Lemay","type":"Role","_key":"107482","_from":"63416","_to":"63404"} +{"$label":"ACTS_IN","name":"Adjutor Gagnon","type":"Role","_key":"107481","_from":"63415","_to":"63404"} +{"$label":"ACTS_IN","name":"Exilda Lemay","type":"Role","_key":"107480","_from":"63414","_to":"63404"} +{"$label":"ACTS_IN","name":"Arz\u00e9lie Caron","type":"Role","_key":"107479","_from":"63413","_to":"63404"} +{"$label":"ACTS_IN","name":"N\u00e9r\u00e9e Caron","type":"Role","_key":"107478","_from":"63412","_to":"63404"} +{"$label":"ACTS_IN","name":"Aurore Gagnon (6 ans)","type":"Role","_key":"107477","_from":"63411","_to":"63404"} +{"$label":"ACTS_IN","name":"Marie-Jeanne Gagnon (12 ans)","type":"Role","_key":"107476","_from":"63410","_to":"63404"} +{"$label":"ACTS_IN","name":"Marie-Anne Caron","type":"Role","_key":"107475","_from":"63409","_to":"63404"} +{"$label":"ACTS_IN","name":"Marie-Anne Gagnon","type":"Role","_key":"107472","_from":"63408","_to":"63404"} +{"$label":"ACTS_IN","name":"T\u00e9l\u00e9sphore Gagnon","type":"Role","_key":"107471","_from":"63407","_to":"63404"} +{"$label":"ACTS_IN","name":"Aurore Gagnon (10 years)","type":"Role","_key":"107470","_from":"63406","_to":"63404"} +{"$label":"DIRECTED","_key":"107469","_from":"63405","_to":"63404"} +{"$label":"ACTS_IN","name":"Sylviane Lanois","type":"Role","_key":"119874","_from":"63408","_to":"70398"} +{"$label":"ACTS_IN","name":"Convention Speaker","type":"Role","_key":"118975","_from":"63423","_to":"69921"} +{"$label":"ACTS_IN","name":"Little Kid","type":"Role","_key":"107504","_from":"63434","_to":"63424"} +{"$label":"ACTS_IN","name":"Motel Clerk","type":"Role","_key":"107503","_from":"63433","_to":"63424"} +{"$label":"ACTS_IN","name":"Firefighter","type":"Role","_key":"107502","_from":"63432","_to":"63424"} +{"$label":"ACTS_IN","name":"Staffer #2","type":"Role","_key":"107501","_from":"63431","_to":"63424"} +{"$label":"ACTS_IN","name":"Staffer #1","type":"Role","_key":"107500","_from":"63430","_to":"63424"} +{"$label":"ACTS_IN","name":"Gerald Auerbach","type":"Role","_key":"107499","_from":"63429","_to":"63424"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"107498","_from":"63428","_to":"63424"} +{"$label":"ACTS_IN","name":"Kragan Vincent","type":"Role","_key":"107497","_from":"63427","_to":"63424"} +{"$label":"ACTS_IN","name":"Daisy","type":"Role","_key":"107496","_from":"63426","_to":"63424"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"107495","_from":"63425","_to":"63424"} +{"$label":"ACTS_IN","name":"Girl with ants on face (uncredited)","type":"Role","_key":"107534","_from":"63461","_to":"63435"} +{"$label":"ACTS_IN","name":"Nancy (uncredited)","type":"Role","_key":"107533","_from":"63460","_to":"63435"} +{"$label":"ACTS_IN","name":"McLaren's secretary (uncredited)","type":"Role","_key":"107532","_from":"63459","_to":"63435"} +{"$label":"ACTS_IN","name":"Ex-Pistol (uncredited)","type":"Role","_key":"107531","_from":"63458","_to":"63435"} +{"$label":"ACTS_IN","name":"Girl on the chorus at the opening track (uncredited)","type":"Role","_key":"107530","_from":"63457","_to":"63435"} +{"$label":"ACTS_IN","name":"Girl wearing 'only anarchists are pretty shirt' (uncredited)","type":"Role","_key":"107529","_from":"63456","_to":"63435"} +{"$label":"ACTS_IN","name":"Martin Bormann (uncredited)","type":"Role","_key":"107528","_from":"63455","_to":"63435"} +{"$label":"ACTS_IN","name":"French singer on the street (uncredited)","type":"Role","_key":"107527","_from":"63454","_to":"63435"} +{"$label":"ACTS_IN","name":"Record Executive (uncredited)","type":"Role","_key":"107526","_from":"63453","_to":"63435"} +{"$label":"ACTS_IN","name":"Nightclub Bouncer (uncredited)","type":"Role","_key":"107525","_from":"63452","_to":"63435"} +{"$label":"ACTS_IN","name":"Catwoman (uncredited)","type":"Role","_key":"107524","_from":"63451","_to":"63435"} +{"$label":"ACTS_IN","name":"Cinema Usherette","type":"Role","_key":"107523","_from":"63450","_to":"63435"} +{"$label":"ACTS_IN","name":"Record Executive","type":"Role","_key":"107522","_from":"63449","_to":"63435"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"107521","_from":"63448","_to":"63435"} +{"$label":"ACTS_IN","name":"Tadpole (kiosk attendant) (as Tenpole Tudor)","type":"Role","_key":"107520","_from":"63447","_to":"63435"} +{"$label":"ACTS_IN","name":"Helen (as Helen of Troy)","type":"Role","_key":"107519","_from":"63446","_to":"63435"} +{"$label":"ACTS_IN","name":"Nazi","type":"Role","_key":"107518","_from":"63445","_to":"63435"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"107517","_from":"63444","_to":"63435"} +{"$label":"ACTS_IN","name":"Mary, The Crook's girlfriend","type":"Role","_key":"107515","_from":"63443","_to":"63435"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"107514","_from":"63442","_to":"63435"} +{"$label":"ACTS_IN","name":"Woman in Cinema","type":"Role","_key":"107513","_from":"63441","_to":"63435"} +{"$label":"ACTS_IN","name":"The Exile (as Ronnie Biggs)","type":"Role","_key":"107512","_from":"63440","_to":"63435"} +{"$label":"ACTS_IN","name":"The Collaborator (as Johnny Rotten)","type":"Role","_key":"107511","_from":"63439","_to":"63435"} +{"$label":"ACTS_IN","name":"The Gimmick","type":"Role","_key":"107510","_from":"63438","_to":"63435"} +{"$label":"ACTS_IN","name":"The Tea-Maker","type":"Role","_key":"107509","_from":"63437","_to":"63435"} +{"$label":"ACTS_IN","name":"The Embezzler","type":"Role","_key":"107507","_from":"63436","_to":"63435"} +{"$label":"ACTS_IN","name":"Sylvia Ramsden","type":"Role","_key":"119614","_from":"63441","_to":"70257"} +{"$label":"ACTS_IN","name":"Sally","type":"Role","_key":"119388","_from":"63441","_to":"70145"} +{"$label":"ACTS_IN","name":"Jim Tanner","type":"Role","_key":"119650","_from":"63444","_to":"70277"} +{"$label":"ACTS_IN","name":"Enaros","type":"Role","_key":"114127","_from":"63447","_to":"67211"} +{"$label":"ACTS_IN","name":"Precinct Captain","type":"Role","_key":"114093","_from":"63455","_to":"67170"} +{"$label":"DIRECTED","_key":"107546","_from":"63474","_to":"63462"} +{"$label":"DIRECTED","_key":"107545","_from":"63473","_to":"63462"} +{"$label":"ACTS_IN","name":"Herself \/ Ilya","type":"Role","_key":"107544","_from":"63472","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Otto","type":"Role","_key":"107543","_from":"63471","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Shapwin","type":"Role","_key":"107542","_from":"63470","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Arfex","type":"Role","_key":"107541","_from":"63469","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Malkin","type":"Role","_key":"107540","_from":"63468","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Saruk","type":"Role","_key":"107539","_from":"63467","_to":"63462"} +{"$label":"ACTS_IN","name":"Herself \/ Nemesis","type":"Role","_key":"107538","_from":"63466","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Trivius","type":"Role","_key":"107537","_from":"63465","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Keldar","type":"Role","_key":"107536","_from":"63464","_to":"63462"} +{"$label":"ACTS_IN","name":"Himself \/ Bannor","type":"Role","_key":"107535","_from":"63463","_to":"63462"} +{"$label":"ACTS_IN","name":"Milk Bar Man","type":"Role","_key":"107587","_from":"63509","_to":"63475"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"107586","_from":"63508","_to":"63475"} +{"$label":"ACTS_IN","name":"Dinner Guest","type":"Role","_key":"107585","_from":"63507","_to":"63475"} +{"$label":"ACTS_IN","name":"Dinner Guest","type":"Role","_key":"107584","_from":"63506","_to":"63475"} +{"$label":"ACTS_IN","name":"Dinner Guest","type":"Role","_key":"107583","_from":"63505","_to":"63475"} +{"$label":"ACTS_IN","name":"Actor","type":"Role","_key":"107581","_from":"63504","_to":"63475"} +{"$label":"ACTS_IN","name":"Father of Sick Child","type":"Role","_key":"107580","_from":"63503","_to":"63475"} +{"$label":"ACTS_IN","name":"Charge Nurse","type":"Role","_key":"107579","_from":"63502","_to":"63475"} +{"$label":"ACTS_IN","name":"Scared Mother","type":"Role","_key":"107578","_from":"63501","_to":"63475"} +{"$label":"ACTS_IN","name":"Pregnant Mother","type":"Role","_key":"107577","_from":"63500","_to":"63475"} +{"$label":"ACTS_IN","name":"Cricket Captain","type":"Role","_key":"107576","_from":"63499","_to":"63475"} +{"$label":"ACTS_IN","name":"Smoking Cricketer","type":"Role","_key":"107575","_from":"63498","_to":"63475"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"107574","_from":"63497","_to":"63475"} +{"$label":"ACTS_IN","name":"Boy in Wheelchair","type":"Role","_key":"107573","_from":"63496","_to":"63475"} +{"$label":"ACTS_IN","name":"Oliver","type":"Role","_key":"107570","_from":"63495","_to":"63475"} +{"$label":"ACTS_IN","name":"Maddie","type":"Role","_key":"107569","_from":"63494","_to":"63475"} +{"$label":"ACTS_IN","name":"Cathy","type":"Role","_key":"107568","_from":"63493","_to":"63475"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"107567","_from":"63492","_to":"63475"} +{"$label":"ACTS_IN","name":"Jasmine 'Jas'","type":"Role","_key":"107566","_from":"63491","_to":"63475"} +{"$label":"ACTS_IN","name":"Miriam","type":"Role","_key":"107565","_from":"63490","_to":"63475"} +{"$label":"ACTS_IN","name":"Phil's Toddler","type":"Role","_key":"107564","_from":"63489","_to":"63475"} +{"$label":"ACTS_IN","name":"Train Driver's Son","type":"Role","_key":"107563","_from":"63488","_to":"63475"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"107562","_from":"63487","_to":"63475"} +{"$label":"ACTS_IN","name":"Current Affairs Reporter","type":"Role","_key":"107561","_from":"63486","_to":"63475"} +{"$label":"ACTS_IN","name":"Train Driver's Wife","type":"Role","_key":"107560","_from":"63485","_to":"63475"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"107559","_from":"63484","_to":"63475"} +{"$label":"ACTS_IN","name":"Train Driver","type":"Role","_key":"107558","_from":"63483","_to":"63475"} +{"$label":"ACTS_IN","name":"Policewoman","type":"Role","_key":"107557","_from":"63482","_to":"63475"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"107556","_from":"63481","_to":"63475"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"107554","_from":"63480","_to":"63475"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"107553","_from":"63479","_to":"63475"} +{"$label":"ACTS_IN","name":"Rob","type":"Role","_key":"107551","_from":"63478","_to":"63475"} +{"$label":"ACTS_IN","name":"SBS Newsreader","type":"Role","_key":"107548","_from":"63477","_to":"63475"} +{"$label":"DIRECTED","_key":"107547","_from":"63476","_to":"63475"} +{"$label":"ACTS_IN","name":"Mr. Glassman","type":"Role","_key":"116772","_from":"63480","_to":"68740"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"107595","_from":"63516","_to":"63511"} +{"$label":"ACTS_IN","name":"Sam Dorker","type":"Role","_key":"107594","_from":"63515","_to":"63511"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"107593","_from":"63514","_to":"63511"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"107591","_from":"63513","_to":"63511"} +{"$label":"DIRECTED","_key":"107590","_from":"63512","_to":"63511"} +{"$label":"ACTS_IN","name":"Audrey","type":"Role","_key":"109663","_from":"63516","_to":"64764"} +{"$label":"ACTS_IN","name":"Char Aznable","type":"Role","_key":"107604","_from":"63521","_to":"63519"} +{"$label":"DIRECTED","_key":"107603","_from":"63520","_to":"63519"} +{"$label":"DIRECTED","_key":"119411","_from":"63520","_to":"70158"} +{"$label":"DIRECTED","_key":"119410","_from":"63520","_to":"70157"} +{"$label":"DIRECTED","_key":"108613","_from":"63520","_to":"64185"} +{"$label":"DIRECTED","_key":"107617","_from":"63524","_to":"63522"} +{"$label":"ACTS_IN","name":"Young Slim","type":"Role","_key":"107611","_from":"63523","_to":"63522"} +{"$label":"ACTS_IN","name":"Madge","type":"Role","_key":"107631","_from":"63532","_to":"63525"} +{"$label":"ACTS_IN","name":"Anna Trotsberg","type":"Role","_key":"107627","_from":"63531","_to":"63525"} +{"$label":"ACTS_IN","name":"Quinton Canada","type":"Role","_key":"107626","_from":"63530","_to":"63525"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"107625","_from":"63529","_to":"63525"} +{"$label":"ACTS_IN","name":"Sandy White","type":"Role","_key":"107622","_from":"63528","_to":"63525"} +{"$label":"ACTS_IN","name":"David Harrison","type":"Role","_key":"107621","_from":"63527","_to":"63525"} +{"$label":"ACTS_IN","name":"Sarah Harrison","type":"Role","_key":"107619","_from":"63526","_to":"63525"} +{"$label":"ACTS_IN","name":"Sweetpea","type":"Role","_key":"107636","_from":"63535","_to":"63534"} +{"$label":"ACTS_IN","name":"Mrs. Palino","type":"Role","_key":"107663","_from":"63546","_to":"63537"} +{"$label":"ACTS_IN","name":"Construction Site Foreman","type":"Role","_key":"107662","_from":"63545","_to":"63537"} +{"$label":"ACTS_IN","name":"Prospective Buyer #2","type":"Role","_key":"107661","_from":"63544","_to":"63537"} +{"$label":"ACTS_IN","name":"Prospective Buyer #1","type":"Role","_key":"107660","_from":"63543","_to":"63537"} +{"$label":"ACTS_IN","name":"Girl in Hotel Room","type":"Role","_key":"107658","_from":"63542","_to":"63537"} +{"$label":"ACTS_IN","name":"Son-in-Law \/ Mafia Boss","type":"Role","_key":"107657","_from":"63541","_to":"63537"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"107656","_from":"63540","_to":"63537"} +{"$label":"ACTS_IN","name":"Blackbird's Brother","type":"Role","_key":"107655","_from":"63539","_to":"63537"} +{"$label":"ACTS_IN","name":"Blackbird's Kid Brother","type":"Role","_key":"107654","_from":"63538","_to":"63537"} +{"$label":"ACTS_IN","name":"Kaatamolainen talonpoika","type":"Role","_key":"107692","_from":"63573","_to":"63547"} +{"$label":"ACTS_IN","name":"Kaatamolainen talonpoika","type":"Role","_key":"107691","_from":"63572","_to":"63547"} +{"$label":"ACTS_IN","name":"Kaatamolainen talonpoika","type":"Role","_key":"107690","_from":"63571","_to":"63547"} +{"$label":"ACTS_IN","name":"Kaatamolainen talonpoika","type":"Role","_key":"107689","_from":"63570","_to":"63547"} +{"$label":"ACTS_IN","name":"Karjalainen talonpoika","type":"Role","_key":"107688","_from":"63569","_to":"63547"} +{"$label":"ACTS_IN","name":"Pohjalainen talonpoika","type":"Role","_key":"107687","_from":"63568","_to":"63547"} +{"$label":"ACTS_IN","name":"Pohjalainen talonpoika","type":"Role","_key":"107686","_from":"63567","_to":"63547"} +{"$label":"ACTS_IN","name":"Ven\u00e4l\u00e4inen streltsi","type":"Role","_key":"107685","_from":"63566","_to":"63547"} +{"$label":"ACTS_IN","name":"Ven\u00e4l\u00e4inen streltsi","type":"Role","_key":"107684","_from":"63565","_to":"63547"} +{"$label":"ACTS_IN","name":"Ven\u00e4l\u00e4inen streltsi","type":"Role","_key":"107683","_from":"63564","_to":"63547"} +{"$label":"ACTS_IN","name":"Ruotsalainen knihti","type":"Role","_key":"107682","_from":"63563","_to":"63547"} +{"$label":"ACTS_IN","name":"Ruotsalainen knihti","type":"Role","_key":"107681","_from":"63562","_to":"63547"} +{"$label":"ACTS_IN","name":"Ondrei Suurinen","type":"Role","_key":"107680","_from":"63561","_to":"63547"} +{"$label":"ACTS_IN","name":"Ruotsalaisten tulkki","type":"Role","_key":"107679","_from":"63560","_to":"63547"} +{"$label":"ACTS_IN","name":"Rogosinin \u00e4idin tuutulaulu (voice)","type":"Role","_key":"107678","_from":"63559","_to":"63547"} +{"$label":"ACTS_IN","name":"Is\u00e4nn\u00e4n tytt\u00e4ren \u00e4\u00e4ni (voice)","type":"Role","_key":"107677","_from":"63558","_to":"63547"} +{"$label":"ACTS_IN","name":"Munkki","type":"Role","_key":"107676","_from":"63557","_to":"63547"} +{"$label":"ACTS_IN","name":"Roukkula","type":"Role","_key":"107675","_from":"63556","_to":"63547"} +{"$label":"ACTS_IN","name":"Kyl\u00e4nvanhin","type":"Role","_key":"107673","_from":"63555","_to":"63547"} +{"$label":"ACTS_IN","name":"Is\u00e4nt\u00e4","type":"Role","_key":"107672","_from":"63554","_to":"63547"} +{"$label":"ACTS_IN","name":"Tyt\u00e4r","type":"Role","_key":"107671","_from":"63553","_to":"63547"} +{"$label":"ACTS_IN","name":"Poika","type":"Role","_key":"107670","_from":"63552","_to":"63547"} +{"$label":"ACTS_IN","name":"Musko","type":"Role","_key":"107669","_from":"63551","_to":"63547"} +{"$label":"ACTS_IN","name":"Sogosin","type":"Role","_key":"107668","_from":"63550","_to":"63547"} +{"$label":"ACTS_IN","name":"Semenski","type":"Role","_key":"107667","_from":"63549","_to":"63547"} +{"$label":"ACTS_IN","name":"Eerik","type":"Role","_key":"107665","_from":"63548","_to":"63547"} +{"$label":"ACTS_IN","name":"Townsmen","type":"Role","_key":"107720","_from":"63595","_to":"63574"} +{"$label":"ACTS_IN","name":"Worshiper","type":"Role","_key":"107719","_from":"63594","_to":"63574"} +{"$label":"ACTS_IN","name":"Townsmen","type":"Role","_key":"107718","_from":"63593","_to":"63574"} +{"$label":"ACTS_IN","name":"Worshiper","type":"Role","_key":"107717","_from":"63592","_to":"63574"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"107716","_from":"63591","_to":"63574"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"107715","_from":"63590","_to":"63574"} +{"$label":"ACTS_IN","name":"Townsman","type":"Role","_key":"107714","_from":"63589","_to":"63574"} +{"$label":"ACTS_IN","name":"Mary","type":"Role","_key":"107713","_from":"63588","_to":"63574"} +{"$label":"ACTS_IN","name":"Sheriff Cooper","type":"Role","_key":"107712","_from":"63587","_to":"63574"} +{"$label":"ACTS_IN","name":"Kelly","type":"Role","_key":"107711","_from":"63586","_to":"63574"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"107710","_from":"63585","_to":"63574"} +{"$label":"ACTS_IN","name":"Neighbor Kid","type":"Role","_key":"107709","_from":"63584","_to":"63574"} +{"$label":"ACTS_IN","name":"Neighbor","type":"Role","_key":"107708","_from":"63583","_to":"63574"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"107707","_from":"63582","_to":"63574"} +{"$label":"ACTS_IN","name":"Classroom Teacher","type":"Role","_key":"107706","_from":"63581","_to":"63574"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"107704","_from":"63580","_to":"63574"} +{"$label":"ACTS_IN","name":"Sadie","type":"Role","_key":"107700","_from":"63579","_to":"63574"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"107697","_from":"63578","_to":"63574"} +{"$label":"ACTS_IN","name":"Aidan","type":"Role","_key":"107695","_from":"63577","_to":"63574"} +{"$label":"ACTS_IN","name":"Lindsay","type":"Role","_key":"107694","_from":"63576","_to":"63574"} +{"$label":"DIRECTED","_key":"107693","_from":"63575","_to":"63574"} +{"$label":"ACTS_IN","name":"Littlefoot","type":"Role","_key":"111926","_from":"63577","_to":"66073"} +{"$label":"ACTS_IN","name":"Clare","type":"Role","_key":"112201","_from":"63578","_to":"66261"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107760","_from":"63632","_to":"63596"} +{"$label":"ACTS_IN","name":"Afgrei\u00f0slust\u00falka BS\u00cd","type":"Role","_key":"107759","_from":"63631","_to":"63596"} +{"$label":"ACTS_IN","name":"Ritari Arnar","type":"Role","_key":"107758","_from":"63630","_to":"63596"} +{"$label":"ACTS_IN","name":"\u00datfararstj\u00f3ri #2","type":"Role","_key":"107757","_from":"63629","_to":"63596"} +{"$label":"ACTS_IN","name":"\u00datfararstj\u00f3ri #1","type":"Role","_key":"107756","_from":"63628","_to":"63596"} +{"$label":"ACTS_IN","name":"Arnar","type":"Role","_key":"107755","_from":"63627","_to":"63596"} +{"$label":"ACTS_IN","name":"Br\u00f3\u00f0ir Arnars","type":"Role","_key":"107754","_from":"63626","_to":"63596"} +{"$label":"ACTS_IN","name":"Eddi","type":"Role","_key":"107753","_from":"63625","_to":"63596"} +{"$label":"ACTS_IN","name":"Eldri kona 2","type":"Role","_key":"107752","_from":"63624","_to":"63596"} +{"$label":"ACTS_IN","name":"Eldri kona 1","type":"Role","_key":"107751","_from":"63623","_to":"63596"} +{"$label":"ACTS_IN","name":"Kona R\u00fanars","type":"Role","_key":"107750","_from":"63622","_to":"63596"} +{"$label":"ACTS_IN","name":"Kokkur \u00e1 BS\u00cd","type":"Role","_key":"107749","_from":"63621","_to":"63596"} +{"$label":"ACTS_IN","name":"Forst\u00f6\u00f0ukona \u00e1 Grund","type":"Role","_key":"107748","_from":"63620","_to":"63596"} +{"$label":"ACTS_IN","name":"Fangav\u00f6r\u00f0ur #2","type":"Role","_key":"107747","_from":"63619","_to":"63596"} +{"$label":"ACTS_IN","name":"Fangav\u00f6r\u00f0ur #1","type":"Role","_key":"107746","_from":"63618","_to":"63596"} +{"$label":"ACTS_IN","name":"B\u00edlstj\u00f3ri hj\u00e1 Landflutningum","type":"Role","_key":"107745","_from":"63617","_to":"63596"} +{"$label":"ACTS_IN","name":"Fr\u00e9ttama\u00f0ur","type":"Role","_key":"107744","_from":"63616","_to":"63596"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107743","_from":"63615","_to":"63596"} +{"$label":"ACTS_IN","name":"Fj\u00f6lskylduprestur","type":"Role","_key":"107742","_from":"63614","_to":"63596"} +{"$label":"ACTS_IN","name":"Gunnur","type":"Role","_key":"107740","_from":"63613","_to":"63596"} +{"$label":"ACTS_IN","name":"R\u00fanar","type":"Role","_key":"107739","_from":"63612","_to":"63596"} +{"$label":"ACTS_IN","name":"Starfskona \u00e1 Hagstofu","type":"Role","_key":"107738","_from":"63611","_to":"63596"} +{"$label":"ACTS_IN","name":"Pathologe","type":"Role","_key":"107737","_from":"63610","_to":"63596"} +{"$label":"ACTS_IN","name":"Pilot","type":"Role","_key":"107736","_from":"63609","_to":"63596"} +{"$label":"ACTS_IN","name":"Albert","type":"Role","_key":"107735","_from":"63608","_to":"63596"} +{"$label":"ACTS_IN","name":"Kola","type":"Role","_key":"107734","_from":"63607","_to":"63596"} +{"$label":"ACTS_IN","name":"L\u00f6gfr\u00e6\u00f0ingur","type":"Role","_key":"107733","_from":"63606","_to":"63596"} +{"$label":"ACTS_IN","name":"Handrukkarar","type":"Role","_key":"107732","_from":"63605","_to":"63596"} +{"$label":"ACTS_IN","name":"Theod\u00f3ra","type":"Role","_key":"107731","_from":"63604","_to":"63596"} +{"$label":"ACTS_IN","name":"El\u00edn","type":"Role","_key":"107730","_from":"63603","_to":"63596"} +{"$label":"ACTS_IN","name":"Elli\u00f0i","type":"Role","_key":"107729","_from":"63602","_to":"63596"} +{"$label":"ACTS_IN","name":"Holberg","type":"Role","_key":"107728","_from":"63601","_to":"63596"} +{"$label":"ACTS_IN","name":"Katr\u00edn","type":"Role","_key":"107727","_from":"63600","_to":"63596"} +{"$label":"ACTS_IN","name":"\u00d6rn","type":"Role","_key":"107726","_from":"63599","_to":"63596"} +{"$label":"ACTS_IN","name":"El\u00ednborg","type":"Role","_key":"107725","_from":"63598","_to":"63596"} +{"$label":"ACTS_IN","name":"Eva Lind","type":"Role","_key":"107723","_from":"63597","_to":"63596"} +{"$label":"ACTS_IN","name":"Sigrid","type":"Role","_key":"110206","_from":"63600","_to":"65134"} +{"$label":"ACTS_IN","name":"Bank Teller","type":"Role","_key":"107809","_from":"63671","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107808","_from":"63670","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107807","_from":"63669","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107806","_from":"63668","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107805","_from":"63667","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107804","_from":"63666","_to":"63633"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"107803","_from":"63665","_to":"63633"} +{"$label":"ACTS_IN","name":"Apocalyptic Nutter","type":"Role","_key":"107802","_from":"63664","_to":"63633"} +{"$label":"ACTS_IN","name":"Hyde Park Nutter","type":"Role","_key":"107801","_from":"63663","_to":"63633"} +{"$label":"ACTS_IN","name":"Hyde Park Nutter","type":"Role","_key":"107800","_from":"63662","_to":"63633"} +{"$label":"ACTS_IN","name":"Man falling during 'Gripped'","type":"Role","_key":"107796","_from":"63661","_to":"63633"} +{"$label":"ACTS_IN","name":"Tea lady","type":"Role","_key":"107795","_from":"63660","_to":"63633"} +{"$label":"ACTS_IN","name":"Tea lady","type":"Role","_key":"107794","_from":"63659","_to":"63633"} +{"$label":"ACTS_IN","name":"Police secretary","type":"Role","_key":"107793","_from":"63658","_to":"63633"} +{"$label":"ACTS_IN","name":"Suburban son","type":"Role","_key":"107792","_from":"63657","_to":"63633"} +{"$label":"ACTS_IN","name":"Officer Willis","type":"Role","_key":"107790","_from":"63656","_to":"63633"} +{"$label":"ACTS_IN","name":"Geoff Plow","type":"Role","_key":"107789","_from":"63655","_to":"63633"} +{"$label":"ACTS_IN","name":"Bank clerk","type":"Role","_key":"107788","_from":"63654","_to":"63633"} +{"$label":"ACTS_IN","name":"Care worker","type":"Role","_key":"107787","_from":"63653","_to":"63633"} +{"$label":"ACTS_IN","name":"Mr. Browne","type":"Role","_key":"107786","_from":"63652","_to":"63633"} +{"$label":"ACTS_IN","name":"Astral guide","type":"Role","_key":"107785","_from":"63651","_to":"63633"} +{"$label":"ACTS_IN","name":"Taxi driver","type":"Role","_key":"107784","_from":"63650","_to":"63633"} +{"$label":"ACTS_IN","name":"Taxi driver","type":"Role","_key":"107783","_from":"63649","_to":"63633"} +{"$label":"ACTS_IN","name":"Drumchild","type":"Role","_key":"107782","_from":"63648","_to":"63633"} +{"$label":"ACTS_IN","name":"Radiator child","type":"Role","_key":"107781","_from":"63647","_to":"63633"} +{"$label":"ACTS_IN","name":"Radiator child","type":"Role","_key":"107780","_from":"63646","_to":"63633"} +{"$label":"ACTS_IN","name":"Abel Mularchy","type":"Role","_key":"107779","_from":"63645","_to":"63633"} +{"$label":"ACTS_IN","name":"Ivul Gurk","type":"Role","_key":"107777","_from":"63644","_to":"63633"} +{"$label":"ACTS_IN","name":"Exhumed rabbi","type":"Role","_key":"107776","_from":"63643","_to":"63633"} +{"$label":"ACTS_IN","name":"Underworld secretary","type":"Role","_key":"107775","_from":"63642","_to":"63633"} +{"$label":"ACTS_IN","name":"Schlauch","type":"Role","_key":"107773","_from":"63641","_to":"63633"} +{"$label":"ACTS_IN","name":"Eileen","type":"Role","_key":"107772","_from":"63640","_to":"63633"} +{"$label":"ACTS_IN","name":"Journalist","type":"Role","_key":"107771","_from":"63639","_to":"63633"} +{"$label":"ACTS_IN","name":"Gwupigrubynudny-landians","type":"Role","_key":"107770","_from":"63638","_to":"63633"} +{"$label":"ACTS_IN","name":"Gwupigrubynudny-landians","type":"Role","_key":"107769","_from":"63637","_to":"63633"} +{"$label":"ACTS_IN","name":"Minister of fish","type":"Role","_key":"107766","_from":"63636","_to":"63633"} +{"$label":"ACTS_IN","name":"Cuthbert","type":"Role","_key":"107765","_from":"63635","_to":"63633"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"107764","_from":"63634","_to":"63633"} +{"$label":"DIRECTED","_key":"117308","_from":"63671","_to":"68994"} +{"$label":"DIRECTED","_key":"107814","_from":"63673","_to":"63672"} +{"$label":"ACTS_IN","name":"Gerda","type":"Role","_key":"107819","_from":"63676","_to":"63675"} +{"$label":"ACTS_IN","name":"Young Construction Worker","type":"Role","_key":"107847","_from":"63695","_to":"63677"} +{"$label":"ACTS_IN","name":"Butler","type":"Role","_key":"107846","_from":"63694","_to":"63677"} +{"$label":"ACTS_IN","name":"Head Butler","type":"Role","_key":"107845","_from":"63693","_to":"63677"} +{"$label":"ACTS_IN","name":"Ballroom Dancer","type":"Role","_key":"107844","_from":"63692","_to":"63677"} +{"$label":"ACTS_IN","name":"Heartstopper","type":"Role","_key":"107843","_from":"63691","_to":"63677"} +{"$label":"ACTS_IN","name":"Older Maid","type":"Role","_key":"107842","_from":"63690","_to":"63677"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"107841","_from":"63689","_to":"63677"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"107840","_from":"63688","_to":"63677"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"107839","_from":"63687","_to":"63677"} +{"$label":"ACTS_IN","name":"Gail","type":"Role","_key":"107838","_from":"63686","_to":"63677"} +{"$label":"ACTS_IN","name":"Chambermaid","type":"Role","_key":"107837","_from":"63685","_to":"63677"} +{"$label":"ACTS_IN","name":"Worker #1","type":"Role","_key":"107836","_from":"63684","_to":"63677"} +{"$label":"ACTS_IN","name":"Party Guest","type":"Role","_key":"107834","_from":"63683","_to":"63677"} +{"$label":"ACTS_IN","name":"Tea Drinker #2","type":"Role","_key":"107833","_from":"63682","_to":"63677"} +{"$label":"ACTS_IN","name":"Tea Drinker #1","type":"Role","_key":"107832","_from":"63681","_to":"63677"} +{"$label":"ACTS_IN","name":"Adam Rimbauer (6 yrs)","type":"Role","_key":"107831","_from":"63680","_to":"63677"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"107829","_from":"63679","_to":"63677"} +{"$label":"ACTS_IN","name":"Sukeena","type":"Role","_key":"107825","_from":"63678","_to":"63677"} +{"$label":"ACTS_IN","name":"Cinderella","type":"Role","_key":"107861","_from":"63702","_to":"63696"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"107859","_from":"63701","_to":"63696"} +{"$label":"ACTS_IN","name":"Montague","type":"Role","_key":"107856","_from":"63700","_to":"63696"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"107854","_from":"63699","_to":"63696"} +{"$label":"ACTS_IN","name":"Lady Caroline","type":"Role","_key":"107853","_from":"63698","_to":"63696"} +{"$label":"ACTS_IN","name":"Palatine","type":"Role","_key":"107848","_from":"63697","_to":"63696"} +{"$label":"DIRECTED","_key":"107865","_from":"63705","_to":"63704"} +{"$label":"DIRECTED","_key":"119570","_from":"63705","_to":"70238"} +{"$label":"DIRECTED","_key":"107877","_from":"63711","_to":"63706"} +{"$label":"DIRECTED","_key":"107876","_from":"63710","_to":"63706"} +{"$label":"ACTS_IN","name":"Five (Harry)","type":"Role","_key":"107875","_from":"63709","_to":"63706"} +{"$label":"ACTS_IN","name":"Eight (Lee) \/ Twelve Corpse","type":"Role","_key":"107874","_from":"63708","_to":"63706"} +{"$label":"ACTS_IN","name":"Tonya (Fourteen)","type":"Role","_key":"107873","_from":"63707","_to":"63706"} +{"$label":"ACTS_IN","name":"Fireman","type":"Role","_key":"107910","_from":"63727","_to":"63713"} +{"$label":"ACTS_IN","name":"Gypsy Child","type":"Role","_key":"107909","_from":"63726","_to":"63713"} +{"$label":"ACTS_IN","name":"Gypsy Child","type":"Role","_key":"107908","_from":"63725","_to":"63713"} +{"$label":"ACTS_IN","name":"Lorry Man","type":"Role","_key":"107906","_from":"63724","_to":"63713"} +{"$label":"ACTS_IN","name":"Gypsy Woman","type":"Role","_key":"107904","_from":"63723","_to":"63713"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"107903","_from":"63722","_to":"63713"} +{"$label":"ACTS_IN","name":"Mr. Girdler","type":"Role","_key":"107902","_from":"63721","_to":"63713"} +{"$label":"ACTS_IN","name":"Eddie Kidd","type":"Role","_key":"107899","_from":"63720","_to":"63713"} +{"$label":"ACTS_IN","name":"Stella's Mother","type":"Role","_key":"107898","_from":"63719","_to":"63713"} +{"$label":"ACTS_IN","name":"John Keckwick","type":"Role","_key":"107896","_from":"63718","_to":"63713"} +{"$label":"ACTS_IN","name":"Stella Kidd","type":"Role","_key":"107892","_from":"63717","_to":"63713"} +{"$label":"ACTS_IN","name":"Woman in Black","type":"Role","_key":"107890","_from":"63716","_to":"63713"} +{"$label":"ACTS_IN","name":"Josiah Freston","type":"Role","_key":"107889","_from":"63715","_to":"63713"} +{"$label":"DIRECTED","_key":"107886","_from":"63714","_to":"63713"} +{"$label":"ACTS_IN","name":"First guest","type":"Role","_key":"107926","_from":"63738","_to":"63729"} +{"$label":"ACTS_IN","name":"By\u00f4ki otoko no ko","type":"Role","_key":"107924","_from":"63737","_to":"63729"} +{"$label":"ACTS_IN","name":"Utan\u00f4mi's girlfriend","type":"Role","_key":"107922","_from":"63736","_to":"63729"} +{"$label":"ACTS_IN","name":"Utan\u00f4mi","type":"Role","_key":"107920","_from":"63735","_to":"63729"} +{"$label":"ACTS_IN","name":"Yurie Katakuri","type":"Role","_key":"107919","_from":"63734","_to":"63729"} +{"$label":"ACTS_IN","name":"Rich\u00e2do Sagawa","type":"Role","_key":"107916","_from":"63733","_to":"63729"} +{"$label":"ACTS_IN","name":"Masayuki Katakuri","type":"Role","_key":"107914","_from":"63732","_to":"63729"} +{"$label":"ACTS_IN","name":"Terue Katakuri","type":"Role","_key":"107913","_from":"63731","_to":"63729"} +{"$label":"ACTS_IN","name":"Masao Katakuri","type":"Role","_key":"107912","_from":"63730","_to":"63729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107930","_from":"63740","_to":"63739"} +{"$label":"ACTS_IN","name":"Tonya","type":"Role","_key":"107929","_from":"63742","_to":"63739"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"107928","_from":"63741","_to":"63739"} +{"$label":"DIRECTED","_key":"107927","_from":"63740","_to":"63739"} +{"$label":"ACTS_IN","name":"Orlando","type":"Role","_key":"107934","_from":"63744","_to":"63743"} +{"$label":"DIRECTED","_key":"107948","_from":"63749","_to":"63747"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"107947","_from":"63748","_to":"63747"} +{"$label":"ACTS_IN","name":"Gregg Godfrey","type":"Role","_key":"107952","_from":"63753","_to":"63751"} +{"$label":"ACTS_IN","name":"Andy Bell","type":"Role","_key":"107950","_from":"63752","_to":"63751"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107973","_from":"63769","_to":"63755"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107972","_from":"63768","_to":"63755"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107970","_from":"63767","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107967","_from":"63766","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107966","_from":"63765","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107965","_from":"63764","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107964","_from":"63763","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107963","_from":"63762","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107962","_from":"63761","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107961","_from":"63760","_to":"63755"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107958","_from":"63759","_to":"63755"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107957","_from":"63758","_to":"63755"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107956","_from":"63757","_to":"63755"} +{"$label":"DIRECTED","_key":"107955","_from":"63756","_to":"63755"} +{"$label":"ACTS_IN","name":"Nils Olson","type":"Role","_key":"121593","_from":"63760","_to":"71440"} +{"$label":"ACTS_IN","name":"Haiku Reader","type":"Role","_key":"107986","_from":"63778","_to":"63772"} +{"$label":"ACTS_IN","name":"Yamada Matsuko","type":"Role","_key":"107984","_from":"63777","_to":"63772"} +{"$label":"ACTS_IN","name":"Yamada Takashi","type":"Role","_key":"107983","_from":"63776","_to":"63772"} +{"$label":"ACTS_IN","name":"Yamada Nonoko","type":"Role","_key":"107982","_from":"63775","_to":"63772"} +{"$label":"ACTS_IN","name":"Yamano Shige","type":"Role","_key":"107981","_from":"63774","_to":"63772"} +{"$label":"ACTS_IN","name":"Yamada Noboru","type":"Role","_key":"107980","_from":"63773","_to":"63772"} +{"$label":"ACTS_IN","name":"Omino","type":"Role","_key":"111114","_from":"63777","_to":"65631"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107994","_from":"63786","_to":"63780"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107993","_from":"63785","_to":"63780"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107992","_from":"63784","_to":"63780"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"107991","_from":"63783","_to":"63780"} +{"$label":"DIRECTED","_key":"107990","_from":"63782","_to":"63780"} +{"$label":"DIRECTED","_key":"107989","_from":"63781","_to":"63780"} +{"$label":"ACTS_IN","name":"The Overseer","type":"Role","_key":"107997","_from":"63791","_to":"63788"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"107996","_from":"63790","_to":"63788"} +{"$label":"DIRECTED","_key":"107995","_from":"63789","_to":"63788"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"108032","_from":"63814","_to":"63792"} +{"$label":"ACTS_IN","name":"Hairdresser","type":"Role","_key":"108030","_from":"63813","_to":"63792"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"108029","_from":"63812","_to":"63792"} +{"$label":"ACTS_IN","name":"Louise's Date","type":"Role","_key":"108028","_from":"63811","_to":"63792"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"108027","_from":"63810","_to":"63792"} +{"$label":"ACTS_IN","name":"The girl mistaken for Louise","type":"Role","_key":"108025","_from":"63809","_to":"63792"} +{"$label":"ACTS_IN","name":"Justice of the Peace","type":"Role","_key":"108023","_from":"63808","_to":"63792"} +{"$label":"ACTS_IN","name":"Narissa","type":"Role","_key":"108022","_from":"63807","_to":"63792"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"108021","_from":"63806","_to":"63792"} +{"$label":"ACTS_IN","name":"David Graczyk","type":"Role","_key":"108020","_from":"63805","_to":"63792"} +{"$label":"ACTS_IN","name":"Colleague","type":"Role","_key":"108019","_from":"63804","_to":"63792"} +{"$label":"ACTS_IN","name":"Contractor","type":"Role","_key":"108018","_from":"63803","_to":"63792"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"108017","_from":"63802","_to":"63792"} +{"$label":"ACTS_IN","name":"Lee Hall","type":"Role","_key":"108016","_from":"63801","_to":"63792"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"108015","_from":"63800","_to":"63792"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"108013","_from":"63799","_to":"63792"} +{"$label":"ACTS_IN","name":"Euro Trash","type":"Role","_key":"108012","_from":"63798","_to":"63792"} +{"$label":"ACTS_IN","name":"Marcus Broyard","type":"Role","_key":"108010","_from":"63797","_to":"63792"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"108009","_from":"63796","_to":"63792"} +{"$label":"ACTS_IN","name":"Girl riding spring animal in park","type":"Role","_key":"108008","_from":"63795","_to":"63792"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"108005","_from":"63794","_to":"63792"} +{"$label":"DIRECTED","_key":"107998","_from":"63793","_to":"63792"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"121528","_from":"63809","_to":"71398"} +{"$label":"ACTS_IN","name":"Melodie Club Friend #3","type":"Role","_key":"119444","_from":"63809","_to":"70168"} +{"$label":"ACTS_IN","name":"Waldo","type":"Role","_key":"108071","_from":"63847","_to":"63815"} +{"$label":"ACTS_IN","name":"Yogalates Student","type":"Role","_key":"108069","_from":"63846","_to":"63815"} +{"$label":"ACTS_IN","name":"Yogalates Student","type":"Role","_key":"108068","_from":"63845","_to":"63815"} +{"$label":"ACTS_IN","name":"Yogalates Student","type":"Role","_key":"108067","_from":"63844","_to":"63815"} +{"$label":"ACTS_IN","name":"Yogalates Teacher","type":"Role","_key":"108066","_from":"63843","_to":"63815"} +{"$label":"ACTS_IN","name":"Student","type":"Role","_key":"108065","_from":"63842","_to":"63815"} +{"$label":"ACTS_IN","name":"Tall Student","type":"Role","_key":"108064","_from":"63841","_to":"63815"} +{"$label":"ACTS_IN","name":"Gym Teacher","type":"Role","_key":"108062","_from":"63840","_to":"63815"} +{"$label":"ACTS_IN","name":"Radio DJ","type":"Role","_key":"108061","_from":"63839","_to":"63815"} +{"$label":"ACTS_IN","name":"Herb","type":"Role","_key":"108060","_from":"63838","_to":"63815"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"108059","_from":"63837","_to":"63815"} +{"$label":"ACTS_IN","name":"Cyclops","type":"Role","_key":"108058","_from":"63836","_to":"63815"} +{"$label":"ACTS_IN","name":"Gene Brooks","type":"Role","_key":"108057","_from":"63835","_to":"63815"} +{"$label":"ACTS_IN","name":"Young Jack Brooks","type":"Role","_key":"108054","_from":"63834","_to":"63815"} +{"$label":"ACTS_IN","name":"Young Howard","type":"Role","_key":"108053","_from":"63833","_to":"63815"} +{"$label":"ACTS_IN","name":"Student #2","type":"Role","_key":"108052","_from":"63832","_to":"63815"} +{"$label":"ACTS_IN","name":"Student #1","type":"Role","_key":"108051","_from":"63831","_to":"63815"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"108050","_from":"63830","_to":"63815"} +{"$label":"ACTS_IN","name":"Slim","type":"Role","_key":"108049","_from":"63829","_to":"63815"} +{"$label":"ACTS_IN","name":"Raymond","type":"Role","_key":"108048","_from":"63828","_to":"63815"} +{"$label":"ACTS_IN","name":"Celia","type":"Role","_key":"108047","_from":"63827","_to":"63815"} +{"$label":"ACTS_IN","name":"Erica","type":"Role","_key":"108046","_from":"63826","_to":"63815"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"108045","_from":"63825","_to":"63815"} +{"$label":"ACTS_IN","name":"Trevor","type":"Role","_key":"108044","_from":"63824","_to":"63815"} +{"$label":"ACTS_IN","name":"Pat","type":"Role","_key":"108043","_from":"63823","_to":"63815"} +{"$label":"ACTS_IN","name":"Janice","type":"Role","_key":"108042","_from":"63822","_to":"63815"} +{"$label":"ACTS_IN","name":"Kristy","type":"Role","_key":"108041","_from":"63821","_to":"63815"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"108040","_from":"63820","_to":"63815"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"108039","_from":"63819","_to":"63815"} +{"$label":"ACTS_IN","name":"Emmet","type":"Role","_key":"108038","_from":"63818","_to":"63815"} +{"$label":"ACTS_IN","name":"Jack Brooks \/ Forest Troll","type":"Role","_key":"108035","_from":"63817","_to":"63815"} +{"$label":"DIRECTED","_key":"108033","_from":"63816","_to":"63815"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108169","_from":"63820","_to":"63924"} +{"$label":"DIRECTED","_key":"108077","_from":"63849","_to":"63848"} +{"$label":"ACTS_IN","name":"Singer, Musical Scene","type":"Role","_key":"108133","_from":"63906","_to":"63851"} +{"$label":"ACTS_IN","name":"Pedestrian, Homeless Person","type":"Role","_key":"108132","_from":"63905","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancer","type":"Role","_key":"108131","_from":"63904","_to":"63851"} +{"$label":"ACTS_IN","name":"Atheist #6","type":"Role","_key":"108130","_from":"63903","_to":"63851"} +{"$label":"ACTS_IN","name":"Atheist 1","type":"Role","_key":"108129","_from":"63902","_to":"63851"} +{"$label":"ACTS_IN","name":"The limo driver","type":"Role","_key":"108128","_from":"63901","_to":"63851"} +{"$label":"ACTS_IN","name":"Misty Winters","type":"Role","_key":"108127","_from":"63900","_to":"63851"} +{"$label":"ACTS_IN","name":"Lesbian Vampire","type":"Role","_key":"108126","_from":"63899","_to":"63851"} +{"$label":"ACTS_IN","name":"Atheist","type":"Role","_key":"108125","_from":"63898","_to":"63851"} +{"$label":"ACTS_IN","name":"Hockey Jersey Atheist","type":"Role","_key":"108124","_from":"63897","_to":"63851"} +{"$label":"ACTS_IN","name":"Worshipper","type":"Role","_key":"108123","_from":"63896","_to":"63851"} +{"$label":"ACTS_IN","name":"Worshipper","type":"Role","_key":"108122","_from":"63895","_to":"63851"} +{"$label":"ACTS_IN","name":"The Deaf Lesbian Dog","type":"Role","_key":"108121","_from":"63894","_to":"63851"} +{"$label":"ACTS_IN","name":"Wresting Girl #2 \/ Praetorius' Patient #2","type":"Role","_key":"108120","_from":"63893","_to":"63851"} +{"$label":"ACTS_IN","name":"Virgin Mary","type":"Role","_key":"108119","_from":"63892","_to":"63851"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108118","_from":"63891","_to":"63851"} +{"$label":"ACTS_IN","name":"The Little Blind Girl","type":"Role","_key":"108117","_from":"63890","_to":"63851"} +{"$label":"ACTS_IN","name":"Danny Sabbath's Bodyguard","type":"Role","_key":"108116","_from":"63889","_to":"63851"} +{"$label":"ACTS_IN","name":"Photographer #3","type":"Role","_key":"108115","_from":"63888","_to":"63851"} +{"$label":"ACTS_IN","name":"Photographer #2","type":"Role","_key":"108114","_from":"63887","_to":"63851"} +{"$label":"ACTS_IN","name":"Photographer #1","type":"Role","_key":"108113","_from":"63886","_to":"63851"} +{"$label":"ACTS_IN","name":"God (voice)","type":"Role","_key":"108112","_from":"63885","_to":"63851"} +{"$label":"ACTS_IN","name":"Fifi the Dog","type":"Role","_key":"108111","_from":"63884","_to":"63851"} +{"$label":"ACTS_IN","name":"The Transvestite","type":"Role","_key":"108110","_from":"63883","_to":"63851"} +{"$label":"ACTS_IN","name":"The Cop","type":"Role","_key":"108109","_from":"63882","_to":"63851"} +{"$label":"ACTS_IN","name":"The Bishop","type":"Role","_key":"108108","_from":"63881","_to":"63851"} +{"$label":"ACTS_IN","name":"The Screaming Lesbian","type":"Role","_key":"108107","_from":"63880","_to":"63851"} +{"$label":"ACTS_IN","name":"Praetorius' Patient #1 \/ Wrestling Girl #1","type":"Role","_key":"108106","_from":"63879","_to":"63851"} +{"$label":"ACTS_IN","name":"Allegro Clerk","type":"Role","_key":"108105","_from":"63878","_to":"63851"} +{"$label":"ACTS_IN","name":"Atheist #2","type":"Role","_key":"108104","_from":"63877","_to":"63851"} +{"$label":"ACTS_IN","name":"Atheist #1","type":"Role","_key":"108103","_from":"63876","_to":"63851"} +{"$label":"ACTS_IN","name":"The Straight Shooters Waitress","type":"Role","_key":"108102","_from":"63875","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancing Angel #5","type":"Role","_key":"108101","_from":"63874","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancing Angel #4","type":"Role","_key":"108100","_from":"63873","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancing Angel #3","type":"Role","_key":"108099","_from":"63872","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancing Angel #2","type":"Role","_key":"108098","_from":"63871","_to":"63851"} +{"$label":"ACTS_IN","name":"Dancing Angel #1","type":"Role","_key":"108097","_from":"63870","_to":"63851"} +{"$label":"ACTS_IN","name":"Beach Vampire #2","type":"Role","_key":"108096","_from":"63869","_to":"63851"} +{"$label":"ACTS_IN","name":"Beach Vampire #1","type":"Role","_key":"108095","_from":"63868","_to":"63851"} +{"$label":"ACTS_IN","name":"Woman Blessed on the Beach","type":"Role","_key":"108094","_from":"63867","_to":"63851"} +{"$label":"ACTS_IN","name":"Father Avellino","type":"Role","_key":"108093","_from":"63866","_to":"63851"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"108092","_from":"63865","_to":"63851"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"108091","_from":"63864","_to":"63851"} +{"$label":"ACTS_IN","name":"Santos","type":"Role","_key":"108090","_from":"63863","_to":"63851"} +{"$label":"ACTS_IN","name":"Blind Jimmy Leper","type":"Role","_key":"108088","_from":"63862","_to":"63851"} +{"$label":"ACTS_IN","name":"Danny Sabbath","type":"Role","_key":"108087","_from":"63861","_to":"63851"} +{"$label":"ACTS_IN","name":"Father Alban","type":"Role","_key":"108086","_from":"63860","_to":"63851"} +{"$label":"ACTS_IN","name":"Gloria Oddbottom","type":"Role","_key":"108085","_from":"63859","_to":"63851"} +{"$label":"ACTS_IN","name":"Dr. Praetorious","type":"Role","_key":"108084","_from":"63858","_to":"63851"} +{"$label":"ACTS_IN","name":"Johnny Golgatha","type":"Role","_key":"108083","_from":"63857","_to":"63851"} +{"$label":"ACTS_IN","name":"Father Eustace","type":"Role","_key":"108082","_from":"63856","_to":"63851"} +{"$label":"ACTS_IN","name":"Mary Magnum","type":"Role","_key":"108081","_from":"63855","_to":"63851"} +{"$label":"ACTS_IN","name":"Maxine Schreck","type":"Role","_key":"108080","_from":"63854","_to":"63851"} +{"$label":"ACTS_IN","name":"Jesus Christ","type":"Role","_key":"108079","_from":"63853","_to":"63851"} +{"$label":"DIRECTED","_key":"108078","_from":"63852","_to":"63851"} +{"$label":"DIRECTED","_key":"108139","_from":"63911","_to":"63909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108138","_from":"63910","_to":"63909"} +{"$label":"ACTS_IN","name":"Elinore (voice)","type":"Role","_key":"108154","_from":"63918","_to":"63917"} +{"$label":"ACTS_IN","name":"Hyakkimaru","type":"Role","_key":"108158","_from":"63921","_to":"63919"} +{"$label":"DIRECTED","_key":"108157","_from":"63920","_to":"63919"} +{"$label":"DIRECTED","_key":"108164","_from":"63923","_to":"63922"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108168","_from":"63926","_to":"63924"} +{"$label":"DIRECTED","_key":"108165","_from":"63925","_to":"63924"} +{"$label":"ACTS_IN","name":"Odin (voice)","type":"Role","_key":"108172","_from":"63929","_to":"63928"} +{"$label":"ACTS_IN","name":"Pagan","type":"Role","_key":"108175","_from":"63932","_to":"63930"} +{"$label":"ACTS_IN","name":"Lucifer \/ Matthias","type":"Role","_key":"108174","_from":"63931","_to":"63930"} +{"$label":"ACTS_IN","name":"Dr. Walter Coley","type":"Role","_key":"108184","_from":"63938","_to":"63933"} +{"$label":"ACTS_IN","name":"George Fellsinger","type":"Role","_key":"108183","_from":"63937","_to":"63933"} +{"$label":"ACTS_IN","name":"Detective Kennedy","type":"Role","_key":"108182","_from":"63936","_to":"63933"} +{"$label":"ACTS_IN","name":"Baker","type":"Role","_key":"108181","_from":"63935","_to":"63933"} +{"$label":"ACTS_IN","name":"Cabby (Sam)","type":"Role","_key":"108180","_from":"63934","_to":"63933"} +{"$label":"DIRECTED","_key":"108192","_from":"63941","_to":"63940"} +{"$label":"ACTS_IN","name":"Masao","type":"Role","_key":"108203","_from":"63953","_to":"63943"} +{"$label":"ACTS_IN","name":"Hanako","type":"Role","_key":"108201","_from":"63952","_to":"63943"} +{"$label":"ACTS_IN","name":"Kondo","type":"Role","_key":"108200","_from":"63951","_to":"63943"} +{"$label":"ACTS_IN","name":"Yamazaki","type":"Role","_key":"108199","_from":"63950","_to":"63943"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"108198","_from":"63949","_to":"63943"} +{"$label":"ACTS_IN","name":"Tobio","type":"Role","_key":"108197","_from":"63948","_to":"63943"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"108196","_from":"63947","_to":"63943"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108195","_from":"63946","_to":"63943"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108194","_from":"63945","_to":"63943"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108193","_from":"63944","_to":"63943"} +{"$label":"ACTS_IN","name":"Sgt. Kabukiman N.Y.P.D.","type":"Role","_key":"108224","_from":"63961","_to":"63955"} +{"$label":"ACTS_IN","name":"Father Lawrence","type":"Role","_key":"108218","_from":"63960","_to":"63955"} +{"$label":"ACTS_IN","name":"London Arbuckle","type":"Role","_key":"108213","_from":"63959","_to":"63955"} +{"$label":"ACTS_IN","name":"Cappy Capulet","type":"Role","_key":"108212","_from":"63958","_to":"63955"} +{"$label":"ACTS_IN","name":"Murray Martini","type":"Role","_key":"108211","_from":"63957","_to":"63955"} +{"$label":"ACTS_IN","name":"Juliet Capulet","type":"Role","_key":"108209","_from":"63956","_to":"63955"} +{"$label":"ACTS_IN","name":"The Coroner","type":"Role","_key":"108262","_from":"63987","_to":"63963"} +{"$label":"ACTS_IN","name":"Demons (voice)","type":"Role","_key":"108261","_from":"63986","_to":"63963"} +{"$label":"ACTS_IN","name":"Demons (voice)","type":"Role","_key":"108260","_from":"63985","_to":"63963"} +{"$label":"ACTS_IN","name":"Demons (voice)","type":"Role","_key":"108259","_from":"63984","_to":"63963"} +{"$label":"ACTS_IN","name":"Prison Doctor","type":"Role","_key":"108258","_from":"63983","_to":"63963"} +{"$label":"ACTS_IN","name":"Guest at Birthday Party","type":"Role","_key":"108257","_from":"63982","_to":"63963"} +{"$label":"ACTS_IN","name":"Gardener","type":"Role","_key":"108256","_from":"63981","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Officer 5","type":"Role","_key":"108255","_from":"63980","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Officer 4 (as Kim Ornitz)","type":"Role","_key":"108254","_from":"63979","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Officer 3","type":"Role","_key":"108253","_from":"63978","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Officer 2","type":"Role","_key":"108252","_from":"63977","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Officer 1","type":"Role","_key":"108251","_from":"63976","_to":"63963"} +{"$label":"ACTS_IN","name":"Elderly Man in Church","type":"Role","_key":"108250","_from":"63975","_to":"63963"} +{"$label":"ACTS_IN","name":"Funeral Director","type":"Role","_key":"108249","_from":"63974","_to":"63963"} +{"$label":"ACTS_IN","name":"Assistant Chancellor","type":"Role","_key":"108248","_from":"63973","_to":"63963"} +{"$label":"ACTS_IN","name":"Police Chief","type":"Role","_key":"108247","_from":"63972","_to":"63963"} +{"$label":"ACTS_IN","name":"Detective Cortez","type":"Role","_key":"108246","_from":"63971","_to":"63963"} +{"$label":"ACTS_IN","name":"Judge (as Allan Dellay)","type":"Role","_key":"108245","_from":"63970","_to":"63963"} +{"$label":"ACTS_IN","name":"Mrs. Greer","type":"Role","_key":"108244","_from":"63969","_to":"63963"} +{"$label":"ACTS_IN","name":"Removal Man 2","type":"Role","_key":"108243","_from":"63968","_to":"63963"} +{"$label":"ACTS_IN","name":"Removal Man 1","type":"Role","_key":"108242","_from":"63967","_to":"63963"} +{"$label":"ACTS_IN","name":"Mark Montelli","type":"Role","_key":"108240","_from":"63966","_to":"63963"} +{"$label":"ACTS_IN","name":"Jan Montelli","type":"Role","_key":"108239","_from":"63965","_to":"63963"} +{"$label":"ACTS_IN","name":"Sonny Montelli","type":"Role","_key":"108234","_from":"63964","_to":"63963"} +{"$label":"DIRECTED","_key":"108271","_from":"63994","_to":"63988"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108270","_from":"63993","_to":"63988"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108268","_from":"63992","_to":"63988"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108266","_from":"63991","_to":"63988"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108265","_from":"63990","_to":"63988"} +{"$label":"ACTS_IN","name":"N\/A","type":"Role","_key":"108264","_from":"63989","_to":"63988"} +{"$label":"ACTS_IN","name":"Brian","type":"Role","_key":"116648","_from":"63992","_to":"68665"} +{"$label":"ACTS_IN","name":"Commander Uehara Daizo","type":"Role","_key":"108283","_from":"64003","_to":"63995"} +{"$label":"ACTS_IN","name":"Scarface","type":"Role","_key":"108281","_from":"64002","_to":"63995"} +{"$label":"ACTS_IN","name":"Nya-Nya","type":"Role","_key":"108280","_from":"64001","_to":"63995"} +{"$label":"ACTS_IN","name":"Mayor","type":"Role","_key":"108279","_from":"64000","_to":"63995"} +{"$label":"ACTS_IN","name":"Beast Boy","type":"Role","_key":"108275","_from":"63999","_to":"63995"} +{"$label":"DIRECTED","_key":"108274","_from":"63998","_to":"63995"} +{"$label":"DIRECTED","_key":"108273","_from":"63997","_to":"63995"} +{"$label":"DIRECTED","_key":"108272","_from":"63996","_to":"63995"} +{"$label":"ACTS_IN","name":"Marcus Rush","type":"Role","_key":"108901","_from":"64002","_to":"64360"} +{"$label":"ACTS_IN","name":"Matsuhiro (voice)","type":"Role","_key":"109054","_from":"64003","_to":"64441"} +{"$label":"DIRECTED","_key":"108288","_from":"64007","_to":"64004"} +{"$label":"ACTS_IN","name":"Gestapowiec","type":"Role","_key":"108286","_from":"64006","_to":"64004"} +{"$label":"ACTS_IN","name":"Franciszek Dolas","type":"Role","_key":"108285","_from":"64005","_to":"64004"} +{"$label":"ACTS_IN","name":"Dr. Scott Blumeth","type":"Role","_key":"108292","_from":"64011","_to":"64008"} +{"$label":"ACTS_IN","name":"Jerry - Secret Service Agent","type":"Role","_key":"108291","_from":"64010","_to":"64008"} +{"$label":"ACTS_IN","name":"Condoleezza Rice","type":"Role","_key":"108290","_from":"64009","_to":"64008"} +{"$label":"ACTS_IN","name":"George Jr.","type":"Role","_key":"108302","_from":"64018","_to":"64012"} +{"$label":"ACTS_IN","name":"Ryan Burlington","type":"Role","_key":"108301","_from":"64017","_to":"64012"} +{"$label":"ACTS_IN","name":"Ms. Paul","type":"Role","_key":"108298","_from":"64016","_to":"64012"} +{"$label":"ACTS_IN","name":"Scot","type":"Role","_key":"108297","_from":"64015","_to":"64012"} +{"$label":"ACTS_IN","name":"Greg Graham","type":"Role","_key":"108296","_from":"64014","_to":"64012"} +{"$label":"ACTS_IN","name":"Finn O'Brien","type":"Role","_key":"108295","_from":"64013","_to":"64012"} +{"$label":"ACTS_IN","name":"Frieda Maloney","type":"Role","_key":"108308","_from":"64020","_to":"64019"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108313","_from":"64024","_to":"64021"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108312","_from":"64023","_to":"64021"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"108311","_from":"64022","_to":"64021"} +{"$label":"DIRECTED","_key":"108324","_from":"64027","_to":"64026"} +{"$label":"DIRECTED","_key":"108323","_from":"64035","_to":"64026"} +{"$label":"ACTS_IN","name":"1-Baker-11 Detective (Passenger)","type":"Role","_key":"108322","_from":"64034","_to":"64026"} +{"$label":"ACTS_IN","name":"1-Baker-11 Detective (Driver)","type":"Role","_key":"108321","_from":"64033","_to":"64026"} +{"$label":"ACTS_IN","name":"Uncle Joe Chase","type":"Role","_key":"108320","_from":"64032","_to":"64026"} +{"$label":"ACTS_IN","name":"Corlis Pace","type":"Role","_key":"108319","_from":"64031","_to":"64026"} +{"$label":"ACTS_IN","name":"Stanley Chase","type":"Role","_key":"108317","_from":"64030","_to":"64026"} +{"$label":"ACTS_IN","name":"Eugene Chase","type":"Role","_key":"108316","_from":"64029","_to":"64026"} +{"$label":"ACTS_IN","name":"Pumpkin Chase","type":"Role","_key":"108315","_from":"64028","_to":"64026"} +{"$label":"ACTS_IN","name":"Maindrian Pace \/ Vicinski","type":"Role","_key":"108314","_from":"64027","_to":"64026"} +{"$label":"DIRECTED","_key":"108329","_from":"64039","_to":"64036"} +{"$label":"ACTS_IN","name":"Man on Street","type":"Role","_key":"108328","_from":"64038","_to":"64036"} +{"$label":"ACTS_IN","name":"The P","type":"Role","_key":"108326","_from":"64037","_to":"64036"} +{"$label":"ACTS_IN","name":"Dr. Ellen Lamb","type":"Role","_key":"108337","_from":"64044","_to":"64040"} +{"$label":"ACTS_IN","name":"Turtle","type":"Role","_key":"108334","_from":"64043","_to":"64040"} +{"$label":"ACTS_IN","name":"Sherie Lee Fox","type":"Role","_key":"108333","_from":"64042","_to":"64040"} +{"$label":"ACTS_IN","name":"Daryl","type":"Role","_key":"108332","_from":"64041","_to":"64040"} +{"$label":"ACTS_IN","name":"Enid Keese","type":"Role","_key":"120260","_from":"64044","_to":"70619"} +{"$label":"ACTS_IN","name":"Dean Wheaton","type":"Role","_key":"108343","_from":"64046","_to":"64045"} +{"$label":"ACTS_IN","name":"Aaron Claridge","type":"Role","_key":"108355","_from":"64048","_to":"64047"} +{"$label":"DIRECTED","_key":"108356","_from":"64052","_to":"64051"} +{"$label":"ACTS_IN","name":"Detective Jack Nicholas","type":"Role","_key":"108366","_from":"64061","_to":"64053"} +{"$label":"ACTS_IN","name":"Anita Barnes","type":"Role","_key":"108365","_from":"64060","_to":"64053"} +{"$label":"ACTS_IN","name":"Rebecca Brown","type":"Role","_key":"108364","_from":"64059","_to":"64053"} +{"$label":"ACTS_IN","name":"Elizabeth Brown","type":"Role","_key":"108363","_from":"64058","_to":"64053"} +{"$label":"ACTS_IN","name":"Detective Dan Glenn","type":"Role","_key":"108362","_from":"64057","_to":"64053"} +{"$label":"ACTS_IN","name":"Harry Goldburg","type":"Role","_key":"108361","_from":"64056","_to":"64053"} +{"$label":"ACTS_IN","name":"Vicki","type":"Role","_key":"108360","_from":"64055","_to":"64053"} +{"$label":"DIRECTED","_key":"108357","_from":"64054","_to":"64053"} +{"$label":"ACTS_IN","name":"Ryan","type":"Role","_key":"108368","_from":"64064","_to":"64062"} +{"$label":"DIRECTED","_key":"108367","_from":"64063","_to":"64062"} +{"$label":"DIRECTED","_key":"108382","_from":"64073","_to":"64065"} +{"$label":"ACTS_IN","name":"E.R. Doctor","type":"Role","_key":"108381","_from":"64072","_to":"64065"} +{"$label":"ACTS_IN","name":"Stoner","type":"Role","_key":"108380","_from":"64071","_to":"64065"} +{"$label":"ACTS_IN","name":"Brandi","type":"Role","_key":"108378","_from":"64070","_to":"64065"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"108377","_from":"64069","_to":"64065"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"108376","_from":"64068","_to":"64065"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"108373","_from":"64067","_to":"64065"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"108370","_from":"64066","_to":"64065"} +{"$label":"DIRECTED","_key":"108385","_from":"64077","_to":"64074"} +{"$label":"ACTS_IN","name":"Agente Gino Gridelli","type":"Role","_key":"108384","_from":"64076","_to":"64074"} +{"$label":"ACTS_IN","name":"Commissario Natale Lo Gatto","type":"Role","_key":"108383","_from":"64075","_to":"64074"} +{"$label":"ACTS_IN","name":"Carlos Martinez","type":"Role","_key":"108407","_from":"64093","_to":"64080"} +{"$label":"ACTS_IN","name":"Man on Bridge","type":"Role","_key":"108406","_from":"64092","_to":"64080"} +{"$label":"ACTS_IN","name":"Raul","type":"Role","_key":"108405","_from":"64091","_to":"64080"} +{"$label":"ACTS_IN","name":"Gino","type":"Role","_key":"108404","_from":"64090","_to":"64080"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"108403","_from":"64089","_to":"64080"} +{"$label":"ACTS_IN","name":"Uncle Jim","type":"Role","_key":"108402","_from":"64088","_to":"64080"} +{"$label":"ACTS_IN","name":"Dr. Ian Hunter","type":"Role","_key":"108401","_from":"64087","_to":"64080"} +{"$label":"ACTS_IN","name":"Mrs. Reed","type":"Role","_key":"108400","_from":"64086","_to":"64080"} +{"$label":"ACTS_IN","name":"Dr. Trish Lane","type":"Role","_key":"108399","_from":"64085","_to":"64080"} +{"$label":"ACTS_IN","name":"Wakanna","type":"Role","_key":"108398","_from":"64084","_to":"64080"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"108397","_from":"64083","_to":"64080"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"108396","_from":"64082","_to":"64080"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"108395","_from":"64081","_to":"64080"} +{"$label":"ACTS_IN","name":"Squid killer","type":"Role","_key":"108411","_from":"64095","_to":"64094"} +{"$label":"ACTS_IN","name":"Ko Yee (as Lung Fong)","type":"Role","_key":"108415","_from":"64097","_to":"64096"} +{"$label":"DIRECTED","_key":"108432","_from":"64103","_to":"64098"} +{"$label":"ACTS_IN","name":"Boy #1","type":"Role","_key":"108431","_from":"64102","_to":"64098"} +{"$label":"ACTS_IN","name":"Otis","type":"Role","_key":"108430","_from":"64101","_to":"64098"} +{"$label":"ACTS_IN","name":"Cal Dodge","type":"Role","_key":"108425","_from":"64100","_to":"64098"} +{"$label":"ACTS_IN","name":"Gil Kinney","type":"Role","_key":"108420","_from":"64099","_to":"64098"} +{"$label":"ACTS_IN","name":"Hotte","type":"Role","_key":"108434","_from":"64106","_to":"64105"} +{"$label":"ACTS_IN","name":"Mrs. Laura 'The Witch' Cram","type":"Role","_key":"108445","_from":"64110","_to":"64107"} +{"$label":"ACTS_IN","name":"Edward Seton","type":"Role","_key":"108444","_from":"64109","_to":"64107"} +{"$label":"ACTS_IN","name":"Julia Seton","type":"Role","_key":"108442","_from":"64108","_to":"64107"} +{"$label":"DIRECTED","_key":"108458","_from":"64115","_to":"64113"} +{"$label":"ACTS_IN","name":"Le Principal","type":"Role","_key":"108456","_from":"64114","_to":"64113"} +{"$label":"ACTS_IN","name":"Liz Russ","type":"Role","_key":"108461","_from":"64117","_to":"64116"} +{"$label":"DIRECTED","_key":"108474","_from":"64120","_to":"64118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108473","_from":"64119","_to":"64118"} +{"$label":"DIRECTED","_key":"108475","_from":"64122","_to":"64121"} +{"$label":"ACTS_IN","name":"Nabila","type":"Role","_key":"108487","_from":"64126","_to":"64124"} +{"$label":"ACTS_IN","name":"Sakina","type":"Role","_key":"108483","_from":"64125","_to":"64124"} +{"$label":"DIRECTED","_key":"108494","_from":"64130","_to":"64129"} +{"$label":"ACTS_IN","name":"Annie's Lover","type":"Role","_key":"108509","_from":"64137","_to":"64131"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"108508","_from":"64136","_to":"64131"} +{"$label":"ACTS_IN","name":"Laverne","type":"Role","_key":"108507","_from":"64135","_to":"64131"} +{"$label":"ACTS_IN","name":"Randy","type":"Role","_key":"108505","_from":"64134","_to":"64131"} +{"$label":"ACTS_IN","name":"Ben Whitemoon","type":"Role","_key":"108501","_from":"64133","_to":"64131"} +{"$label":"DIRECTED","_key":"108495","_from":"64132","_to":"64131"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108514","_from":"64140","_to":"64139"} +{"$label":"DIRECTED","_key":"108524","_from":"64145","_to":"64143"} +{"$label":"ACTS_IN","name":"Dave Hanson","type":"Role","_key":"108522","_from":"64144","_to":"64143"} +{"$label":"ACTS_IN","name":"Charles Wellington, III","type":"Role","_key":"108545","_from":"64151","_to":"64148"} +{"$label":"ACTS_IN","name":"Rosa","type":"Role","_key":"108544","_from":"64150","_to":"64148"} +{"$label":"ACTS_IN","name":"Gospel Singer","type":"Role","_key":"108543","_from":"64149","_to":"64148"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108555","_from":"64159","_to":"64152"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108554","_from":"64158","_to":"64152"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108553","_from":"64157","_to":"64152"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108552","_from":"64156","_to":"64152"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108550","_from":"64155","_to":"64152"} +{"$label":"DIRECTED","_key":"108549","_from":"64154","_to":"64152"} +{"$label":"DIRECTED","_key":"108548","_from":"64153","_to":"64152"} +{"$label":"ACTS_IN","name":"Space-Burial Funeral Announcer","type":"Role","_key":"108574","_from":"64165","_to":"64161"} +{"$label":"ACTS_IN","name":"Brahmin's Assistant","type":"Role","_key":"108572","_from":"64164","_to":"64161"} +{"$label":"ACTS_IN","name":"Whispering Glades Funeral Salesman","type":"Role","_key":"108567","_from":"64163","_to":"64161"} +{"$label":"ACTS_IN","name":"Aimee Thanatogenos","type":"Role","_key":"108557","_from":"64162","_to":"64161"} +{"$label":"ACTS_IN","name":"Cameraman","type":"Role","_key":"108589","_from":"64170","_to":"64167"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"108585","_from":"64169","_to":"64167"} +{"$label":"ACTS_IN","name":"Johnny Valdelle","type":"Role","_key":"108584","_from":"64168","_to":"64167"} +{"$label":"ACTS_IN","name":"Eloise Matthews","type":"Role","_key":"111220","_from":"64169","_to":"65677"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108604","_from":"64179","_to":"64171"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108602","_from":"64178","_to":"64171"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108601","_from":"64177","_to":"64171"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108598","_from":"64176","_to":"64171"} +{"$label":"ACTS_IN","name":"(voice)","type":"Role","_key":"108597","_from":"64175","_to":"64171"} +{"$label":"ACTS_IN","name":"Terr (voice)","type":"Role","_key":"108594","_from":"64174","_to":"64171"} +{"$label":"ACTS_IN","name":"Tiwa (voice)","type":"Role","_key":"108593","_from":"64173","_to":"64171"} +{"$label":"DIRECTED","_key":"108592","_from":"64172","_to":"64171"} +{"$label":"ACTS_IN","name":"Harbour Master","type":"Role","_key":"108612","_from":"64184","_to":"64180"} +{"$label":"ACTS_IN","name":"Alder MacGreagor","type":"Role","_key":"108611","_from":"64183","_to":"64180"} +{"$label":"ACTS_IN","name":"Librarian","type":"Role","_key":"108610","_from":"64182","_to":"64180"} +{"$label":"DIRECTED","_key":"108605","_from":"64181","_to":"64180"} +{"$label":"ACTS_IN","name":"The Leper","type":"Role","_key":"117856","_from":"64182","_to":"69278"} +{"$label":"ACTS_IN","name":"Justin","type":"Role","_key":"108617","_from":"64190","_to":"64186"} +{"$label":"ACTS_IN","name":"Erin","type":"Role","_key":"108616","_from":"64189","_to":"64186"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"108615","_from":"64188","_to":"64186"} +{"$label":"DIRECTED","_key":"108614","_from":"64187","_to":"64186"} +{"$label":"DIRECTED","_key":"108634","_from":"64201","_to":"64191"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"108632","_from":"64200","_to":"64191"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"108631","_from":"64199","_to":"64191"} +{"$label":"ACTS_IN","name":"Doug","type":"Role","_key":"108630","_from":"64198","_to":"64191"} +{"$label":"ACTS_IN","name":"Rawson","type":"Role","_key":"108629","_from":"64197","_to":"64191"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"108627","_from":"64196","_to":"64191"} +{"$label":"ACTS_IN","name":"O'Riordan","type":"Role","_key":"108625","_from":"64195","_to":"64191"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"108623","_from":"64194","_to":"64191"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"108622","_from":"64193","_to":"64191"} +{"$label":"ACTS_IN","name":"Mal","type":"Role","_key":"108621","_from":"64192","_to":"64191"} +{"$label":"ACTS_IN","name":"Federal Agent Mollica","type":"Role","_key":"116774","_from":"64192","_to":"68740"} +{"$label":"ACTS_IN","name":"Gabi","type":"Role","_key":"116773","_from":"64194","_to":"68740"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"108638","_from":"64204","_to":"64202"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"108637","_from":"64203","_to":"64202"} +{"$label":"ACTS_IN","name":"Shane","type":"Role","_key":"108640","_from":"64207","_to":"64205"} +{"$label":"DIRECTED","_key":"108639","_from":"64206","_to":"64205"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"108648","_from":"64214","_to":"64208"} +{"$label":"ACTS_IN","name":"Jessica Douglas","type":"Role","_key":"108647","_from":"64213","_to":"64208"} +{"$label":"ACTS_IN","name":"Samuel Douglas Sr., FBI","type":"Role","_key":"108646","_from":"64212","_to":"64208"} +{"$label":"ACTS_IN","name":"Hugo Snyder","type":"Role","_key":"108645","_from":"64211","_to":"64208"} +{"$label":"ACTS_IN","name":"Michael 'Tum Tum' Douglas","type":"Role","_key":"108644","_from":"64210","_to":"64208"} +{"$label":"ACTS_IN","name":"Samuel 'Rocky' Douglas Jr.","type":"Role","_key":"108642","_from":"64209","_to":"64208"} +{"$label":"ACTS_IN","name":"Willy the Hook (closing scene)","type":"Role","_key":"108682","_from":"64238","_to":"64215"} +{"$label":"ACTS_IN","name":"Policeman #4 (segment \"The Campfire\")","type":"Role","_key":"108681","_from":"64216","_to":"64215"} +{"$label":"ACTS_IN","name":"Policeman #3 (segment \"The Campfire\")","type":"Role","_key":"108680","_from":"64237","_to":"64215"} +{"$label":"ACTS_IN","name":"Policeman #2 (segment \"The Campfire\")","type":"Role","_key":"108679","_from":"64236","_to":"64215"} +{"$label":"ACTS_IN","name":"Policeman #1 (segment \"The Campfire\")","type":"Role","_key":"108678","_from":"64235","_to":"64215"} +{"$label":"ACTS_IN","name":"Heather the Locket (segment \"The Locket\") (voice)","type":"Role","_key":"108677","_from":"64234","_to":"64215"} +{"$label":"ACTS_IN","name":"Heather's Father (segment \"The Locket\")","type":"Role","_key":"108676","_from":"64233","_to":"64215"} +{"$label":"ACTS_IN","name":"Himself (segment \"People Can Lick Too\")","type":"Role","_key":"108675","_from":"64232","_to":"64215"} +{"$label":"ACTS_IN","name":"Mom (segment \"People Can Lick Too\") \/ Paramedic #2 (segment \"The Campfire\")","type":"Role","_key":"108673","_from":"64231","_to":"64215"} +{"$label":"ACTS_IN","name":"Crew Man #4 (segment \"The Honeymoon\")","type":"Role","_key":"108672","_from":"64230","_to":"64215"} +{"$label":"ACTS_IN","name":"Crew Man #3 (segment \"The Honeymoon\")","type":"Role","_key":"108671","_from":"64229","_to":"64215"} +{"$label":"ACTS_IN","name":"Crew Man #2 (segment \"The Honeymoon\")","type":"Role","_key":"108670","_from":"64228","_to":"64215"} +{"$label":"ACTS_IN","name":"Crew Man #1 (segment \"The Honeymoon\")","type":"Role","_key":"108669","_from":"64227","_to":"64215"} +{"$label":"ACTS_IN","name":"Deputy Manson (segment \"The Honeymoon\")","type":"Role","_key":"108668","_from":"64226","_to":"64215"} +{"$label":"ACTS_IN","name":"Rockin' Rob (segment \"The Hook\")","type":"Role","_key":"108667","_from":"64225","_to":"64215"} +{"$label":"ACTS_IN","name":"Scott Anderson (segment \"The Locket\") \/ Paramedic #1 (segment \"The Campfire\")","type":"Role","_key":"108663","_from":"64224","_to":"64215"} +{"$label":"ACTS_IN","name":"'Jessica' \/ Internet Man (segment \"People Can Lick Too\")","type":"Role","_key":"108662","_from":"64223","_to":"64215"} +{"$label":"ACTS_IN","name":"Katherine (segment \"People Can Lick Too\")","type":"Role","_key":"108661","_from":"64222","_to":"64215"} +{"$label":"ACTS_IN","name":"Amanda (segment \"People Can Lick Too\")","type":"Role","_key":"108660","_from":"64221","_to":"64215"} +{"$label":"ACTS_IN","name":"Alex (segment \"The Campfire\")","type":"Role","_key":"108656","_from":"64220","_to":"64215"} +{"$label":"ACTS_IN","name":"Cliff (segment \"The Campfire\")","type":"Role","_key":"108653","_from":"64219","_to":"64215"} +{"$label":"DIRECTED","_key":"108652","_from":"64218","_to":"64215"} +{"$label":"DIRECTED","_key":"108651","_from":"64217","_to":"64215"} +{"$label":"DIRECTED","_key":"108650","_from":"64216","_to":"64215"} +{"$label":"ACTS_IN","name":"Giorgio","type":"Role","_key":"115569","_from":"64223","_to":"68034"} +{"$label":"ACTS_IN","name":"Ji-won","type":"Role","_key":"108687","_from":"64244","_to":"64239"} +{"$label":"ACTS_IN","name":"Yoo-mi","type":"Role","_key":"108686","_from":"64243","_to":"64239"} +{"$label":"ACTS_IN","name":"Eun-hyo","type":"Role","_key":"108685","_from":"64242","_to":"64239"} +{"$label":"ACTS_IN","name":"Eun-shik","type":"Role","_key":"108684","_from":"64241","_to":"64239"} +{"$label":"DIRECTED","_key":"108683","_from":"64240","_to":"64239"} +{"$label":"ACTS_IN","name":"Ji-ho","type":"Role","_key":"116525","_from":"64242","_to":"68586"} +{"$label":"ACTS_IN","name":"Kang Ha-yeong","type":"Role","_key":"109678","_from":"64242","_to":"64775"} +{"$label":"ACTS_IN","name":"Futuristic Worker","type":"Role","_key":"108732","_from":"64277","_to":"64246"} +{"$label":"ACTS_IN","name":"Chinese snake dancer","type":"Role","_key":"108731","_from":"64276","_to":"64246"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"108730","_from":"64275","_to":"64246"} +{"$label":"ACTS_IN","name":"Slovenly Beaumonde Man","type":"Role","_key":"108729","_from":"64274","_to":"64246"} +{"$label":"ACTS_IN","name":"News Anchor","type":"Role","_key":"108728","_from":"64273","_to":"64246"} +{"$label":"ACTS_IN","name":"Black Room Soldier","type":"Role","_key":"108727","_from":"64272","_to":"64246"} +{"$label":"ACTS_IN","name":"Black Room Soldier","type":"Role","_key":"108726","_from":"64271","_to":"64246"} +{"$label":"ACTS_IN","name":"Alliance Pilot","type":"Role","_key":"108725","_from":"64270","_to":"64246"} +{"$label":"ACTS_IN","name":"Fan Dancer","type":"Role","_key":"108723","_from":"64269","_to":"64246"} +{"$label":"ACTS_IN","name":"Lilac Son","type":"Role","_key":"108722","_from":"64268","_to":"64246"} +{"$label":"ACTS_IN","name":"Lilac Mom","type":"Role","_key":"108721","_from":"64267","_to":"64246"} +{"$label":"ACTS_IN","name":"Vault Guard","type":"Role","_key":"108720","_from":"64266","_to":"64246"} +{"$label":"ACTS_IN","name":"Young Female Intern","type":"Role","_key":"108719","_from":"64265","_to":"64246"} +{"$label":"ACTS_IN","name":"Trade Agent","type":"Role","_key":"108718","_from":"64264","_to":"64246"} +{"$label":"ACTS_IN","name":"Lab Technician","type":"Role","_key":"108717","_from":"64263","_to":"64246"} +{"$label":"ACTS_IN","name":"Lab Technician","type":"Role","_key":"108716","_from":"64262","_to":"64246"} +{"$label":"ACTS_IN","name":"Helmsman","type":"Role","_key":"108715","_from":"64261","_to":"64246"} +{"$label":"ACTS_IN","name":"Ensign","type":"Role","_key":"108714","_from":"64260","_to":"64246"} +{"$label":"ACTS_IN","name":"Girl Student","type":"Role","_key":"108713","_from":"64259","_to":"64246"} +{"$label":"ACTS_IN","name":"Girl Student","type":"Role","_key":"108712","_from":"64258","_to":"64246"} +{"$label":"ACTS_IN","name":"Girl Student","type":"Role","_key":"108711","_from":"64257","_to":"64246"} +{"$label":"ACTS_IN","name":"Boy Student","type":"Role","_key":"108710","_from":"64256","_to":"64246"} +{"$label":"ACTS_IN","name":"Boy Student","type":"Role","_key":"108709","_from":"64255","_to":"64246"} +{"$label":"ACTS_IN","name":"Young RIver","type":"Role","_key":"108708","_from":"64254","_to":"64246"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"108706","_from":"64253","_to":"64246"} +{"$label":"ACTS_IN","name":"Fanty","type":"Role","_key":"108704","_from":"64252","_to":"64246"} +{"$label":"ACTS_IN","name":"Mingo","type":"Role","_key":"108703","_from":"64251","_to":"64246"} +{"$label":"ACTS_IN","name":"River","type":"Role","_key":"108697","_from":"64250","_to":"64246"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"108696","_from":"64249","_to":"64246"} +{"$label":"ACTS_IN","name":"Kaylee","type":"Role","_key":"108695","_from":"64248","_to":"64246"} +{"$label":"ACTS_IN","name":"Inara","type":"Role","_key":"108693","_from":"64247","_to":"64246"} +{"$label":"ACTS_IN","name":"Master Trascendential","type":"Role","_key":"108740","_from":"64281","_to":"64278"} +{"$label":"ACTS_IN","name":"Ying\/Hollow","type":"Role","_key":"108739","_from":"64280","_to":"64278"} +{"$label":"ACTS_IN","name":"Thunder","type":"Role","_key":"108736","_from":"64279","_to":"64278"} +{"$label":"ACTS_IN","name":"Female Casino Tech","type":"Role","_key":"108751","_from":"64287","_to":"64285"} +{"$label":"ACTS_IN","name":"Charles","type":"Role","_key":"108750","_from":"64286","_to":"64285"} +{"$label":"ACTS_IN","name":"Vicar \/ Wakeam","type":"Role","_key":"110339","_from":"64286","_to":"65199"} +{"$label":"DIRECTED","_key":"108756","_from":"64291","_to":"64290"} +{"$label":"DIRECTED","_key":"108765","_from":"64294","_to":"64293"} +{"$label":"DIRECTED","_key":"108773","_from":"64299","_to":"64298"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108804","_from":"64307","_to":"64303"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"108802","_from":"64306","_to":"64303"} +{"$label":"ACTS_IN","name":"Kunal","type":"Role","_key":"108791","_from":"64305","_to":"64303"} +{"$label":"ACTS_IN","name":"Nikki Walia","type":"Role","_key":"108787","_from":"64304","_to":"64303"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"120864","_from":"64306","_to":"70972"} +{"$label":"DIRECTED","_key":"108817","_from":"64312","_to":"64308"} +{"$label":"ACTS_IN","name":"Taro Bapu","type":"Role","_key":"108813","_from":"64311","_to":"64308"} +{"$label":"ACTS_IN","name":"Ronak","type":"Role","_key":"108811","_from":"64310","_to":"64308"} +{"$label":"ACTS_IN","name":"Gunja","type":"Role","_key":"108810","_from":"64309","_to":"64308"} +{"$label":"DIRECTED","_key":"120722","_from":"64312","_to":"70898"} +{"$label":"DIRECTED","_key":"115075","_from":"64312","_to":"67764"} +{"$label":"DIRECTED","_key":"108822","_from":"64317","_to":"64313"} +{"$label":"ACTS_IN","name":"Suzanne Von Stroh","type":"Role","_key":"108820","_from":"64316","_to":"64313"} +{"$label":"ACTS_IN","name":"Kenny Wormald","type":"Role","_key":"108819","_from":"64315","_to":"64313"} +{"$label":"ACTS_IN","name":"Kate Parker","type":"Role","_key":"108818","_from":"64314","_to":"64313"} +{"$label":"DIRECTED","_key":"108838","_from":"64327","_to":"64318"} +{"$label":"ACTS_IN","name":"Ito","type":"Role","_key":"108837","_from":"64326","_to":"64318"} +{"$label":"ACTS_IN","name":"Norah Muldoon","type":"Role","_key":"108836","_from":"64325","_to":"64318"} +{"$label":"ACTS_IN","name":"Brian O'Bannion","type":"Role","_key":"108835","_from":"64324","_to":"64318"} +{"$label":"ACTS_IN","name":"Claude Upson","type":"Role","_key":"108834","_from":"64323","_to":"64318"} +{"$label":"ACTS_IN","name":"Agnes Gooch","type":"Role","_key":"108830","_from":"64322","_to":"64318"} +{"$label":"ACTS_IN","name":"Patrick Dennis - younger","type":"Role","_key":"108828","_from":"64321","_to":"64318"} +{"$label":"ACTS_IN","name":"Patrick Dennis -older","type":"Role","_key":"108827","_from":"64320","_to":"64318"} +{"$label":"ACTS_IN","name":"Vera Charles","type":"Role","_key":"108825","_from":"64319","_to":"64318"} +{"$label":"ACTS_IN","name":"Matthias","type":"Role","_key":"108844","_from":"64331","_to":"64330"} +{"$label":"DIRECTED","_key":"108859","_from":"64338","_to":"64333"} +{"$label":"ACTS_IN","name":"Newspaper Vendor","type":"Role","_key":"108858","_from":"64337","_to":"64333"} +{"$label":"ACTS_IN","name":"Watchman","type":"Role","_key":"108857","_from":"64336","_to":"64333"} +{"$label":"ACTS_IN","name":"Ratan","type":"Role","_key":"108856","_from":"64335","_to":"64333"} +{"$label":"ACTS_IN","name":"Madan Mohan Khullar","type":"Role","_key":"108855","_from":"64334","_to":"64333"} +{"$label":"ACTS_IN","name":"Pim","type":"Role","_key":"108863","_from":"64340","_to":"64339"} +{"$label":"ACTS_IN","name":"Samuel L. 'Sam' Clemens","type":"Role","_key":"108869","_from":"64346","_to":"64343"} +{"$label":"ACTS_IN","name":"Valdemar","type":"Role","_key":"108868","_from":"64345","_to":"64343"} +{"$label":"ACTS_IN","name":"Mali","type":"Role","_key":"108867","_from":"64344","_to":"64343"} +{"$label":"ACTS_IN","name":"Lisa Dolittle","type":"Role","_key":"119492","_from":"64344","_to":"70191"} +{"$label":"ACTS_IN","name":"Rogozhin","type":"Role","_key":"119241","_from":"64346","_to":"70057"} +{"$label":"DIRECTED","_key":"108884","_from":"64348","_to":"64347"} +{"$label":"DIRECTED","_key":"108885","_from":"64350","_to":"64349"} +{"$label":"DIRECTED","_key":"120021","_from":"64350","_to":"70487"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"108897","_from":"64359","_to":"64354"} +{"$label":"ACTS_IN","name":"Miss Modene","type":"Role","_key":"108896","_from":"64358","_to":"64354"} +{"$label":"ACTS_IN","name":"Rita Crowell","type":"Role","_key":"108895","_from":"64357","_to":"64354"} +{"$label":"ACTS_IN","name":"Sen. Charles Wingwood","type":"Role","_key":"108893","_from":"64356","_to":"64354"} +{"$label":"ACTS_IN","name":"Dulcie Mae","type":"Role","_key":"108892","_from":"64355","_to":"64354"} +{"$label":"ACTS_IN","name":"Jean Grant","type":"Role","_key":"108906","_from":"64364","_to":"64360"} +{"$label":"ACTS_IN","name":"Ariel","type":"Role","_key":"108904","_from":"64363","_to":"64360"} +{"$label":"ACTS_IN","name":"The Regess voice","type":"Role","_key":"108902","_from":"64362","_to":"64360"} +{"$label":"ACTS_IN","name":"Louis Nichols","type":"Role","_key":"108899","_from":"64361","_to":"64360"} +{"$label":"DIRECTED","_key":"108923","_from":"64372","_to":"64366"} +{"$label":"DIRECTED","_key":"108922","_from":"64371","_to":"64366"} +{"$label":"ACTS_IN","name":"Pharaoh","type":"Role","_key":"108918","_from":"64370","_to":"64366"} +{"$label":"ACTS_IN","name":"Potiphar","type":"Role","_key":"108917","_from":"64369","_to":"64366"} +{"$label":"ACTS_IN","name":"Zuleika","type":"Role","_key":"108916","_from":"64368","_to":"64366"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"108914","_from":"64367","_to":"64366"} +{"$label":"DIRECTED","_key":"109827","_from":"64371","_to":"64882"} +{"$label":"DIRECTED","_key":"118466","_from":"64372","_to":"69645"} +{"$label":"ACTS_IN","name":"Mrs. Cob","type":"Role","_key":"108938","_from":"64377","_to":"64373"} +{"$label":"ACTS_IN","name":"Richard Bailey","type":"Role","_key":"108936","_from":"64376","_to":"64373"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"108934","_from":"64375","_to":"64373"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"108931","_from":"64374","_to":"64373"} +{"$label":"ACTS_IN","name":"Kim Ki-yeon","type":"Role","_key":"108947","_from":"64385","_to":"64380"} +{"$label":"ACTS_IN","name":"Seungmin Oh","type":"Role","_key":"108946","_from":"64384","_to":"64380"} +{"$label":"ACTS_IN","name":"Detective Oh","type":"Role","_key":"108945","_from":"64383","_to":"64380"} +{"$label":"ACTS_IN","name":"Chae Su-Yeon","type":"Role","_key":"108944","_from":"64382","_to":"64380"} +{"$label":"DIRECTED","_key":"108942","_from":"64381","_to":"64380"} +{"$label":"DIRECTED","_key":"121158","_from":"64381","_to":"71173"} +{"$label":"ACTS_IN","name":"The coachman","type":"Role","_key":"108957","_from":"64389","_to":"64386"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"108956","_from":"64388","_to":"64386"} +{"$label":"ACTS_IN","name":"Miss Jessel","type":"Role","_key":"108955","_from":"64387","_to":"64386"} +{"$label":"ACTS_IN","name":"Stella Meredith","type":"Role","_key":"108966","_from":"64394","_to":"64390"} +{"$label":"ACTS_IN","name":"Miss Bird","type":"Role","_key":"108963","_from":"64393","_to":"64390"} +{"$label":"ACTS_IN","name":"Miss Holloway","type":"Role","_key":"108962","_from":"64392","_to":"64390"} +{"$label":"DIRECTED","_key":"108958","_from":"64391","_to":"64390"} +{"$label":"ACTS_IN","name":"UN Officer #1","type":"Role","_key":"108982","_from":"64404","_to":"64395"} +{"$label":"ACTS_IN","name":"Belgian UN Soldier","type":"Role","_key":"108981","_from":"64403","_to":"64395"} +{"$label":"ACTS_IN","name":"RAF Soldier #1","type":"Role","_key":"108980","_from":"64402","_to":"64395"} +{"$label":"ACTS_IN","name":"Brigitte","type":"Role","_key":"108979","_from":"64401","_to":"64395"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"108978","_from":"64400","_to":"64395"} +{"$label":"ACTS_IN","name":"Woman Refugee #1","type":"Role","_key":"108977","_from":"64399","_to":"64395"} +{"$label":"ACTS_IN","name":"Valentine","type":"Role","_key":"108974","_from":"64398","_to":"64395"} +{"$label":"ACTS_IN","name":"Honor\u00e9","type":"Role","_key":"108971","_from":"64397","_to":"64395"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"108970","_from":"64396","_to":"64395"} +{"$label":"ACTS_IN","name":"Right Hand Man (uncredited)","type":"Role","_key":"108984","_from":"64406","_to":"64405"} +{"$label":"ACTS_IN","name":"Martini McQuickly","type":"Role","_key":"108992","_from":"64412","_to":"64408"} +{"$label":"ACTS_IN","name":"Stig O'Hara","type":"Role","_key":"108989","_from":"64411","_to":"64408"} +{"$label":"ACTS_IN","name":"Barry Womble","type":"Role","_key":"108988","_from":"64410","_to":"64408"} +{"$label":"DIRECTED","_key":"108986","_from":"64409","_to":"64408"} +{"$label":"DIRECTED","_key":"109003","_from":"64414","_to":"64413"} +{"$label":"DIRECTED","_key":"109004","_from":"64416","_to":"64415"} +{"$label":"DIRECTED","_key":"121636","_from":"64416","_to":"71457"} +{"$label":"DIRECTED","_key":"118427","_from":"64416","_to":"69611"} +{"$label":"ACTS_IN","name":"Carlos Vives","type":"Role","_key":"109007","_from":"64419","_to":"64418"} +{"$label":"ACTS_IN","name":"Crystal Rybak","type":"Role","_key":"109012","_from":"64422","_to":"64421"} +{"$label":"DIRECTED","_key":"109031","_from":"64433","_to":"64424"} +{"$label":"ACTS_IN","name":"Thompson","type":"Role","_key":"109030","_from":"64432","_to":"64424"} +{"$label":"ACTS_IN","name":"Lead Roboman","type":"Role","_key":"109029","_from":"64431","_to":"64424"} +{"$label":"ACTS_IN","name":"Brockley","type":"Role","_key":"109028","_from":"64430","_to":"64424"} +{"$label":"ACTS_IN","name":"Conway","type":"Role","_key":"109027","_from":"64429","_to":"64424"} +{"$label":"ACTS_IN","name":"Roboman","type":"Role","_key":"109026","_from":"64428","_to":"64424"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"109024","_from":"64427","_to":"64424"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"109023","_from":"64426","_to":"64424"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"109021","_from":"64425","_to":"64424"} +{"$label":"ACTS_IN","name":"Georgio","type":"Role","_key":"119380","_from":"64425","_to":"70140"} +{"$label":"ACTS_IN","name":"Jack McMullen","type":"Role","_key":"109041","_from":"64439","_to":"64434"} +{"$label":"ACTS_IN","name":"Ann","type":"Role","_key":"109040","_from":"64438","_to":"64434"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"109037","_from":"64437","_to":"64434"} +{"$label":"ACTS_IN","name":"Mrs McMullen","type":"Role","_key":"109034","_from":"64436","_to":"64434"} +{"$label":"ACTS_IN","name":"Susan","type":"Role","_key":"109032","_from":"64435","_to":"64434"} +{"$label":"DIRECTED","_key":"109046","_from":"64442","_to":"64441"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"109067","_from":"64446","_to":"64444"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"109064","_from":"64445","_to":"64444"} +{"$label":"ACTS_IN","name":"Carlo","type":"Role","_key":"109081","_from":"64450","_to":"64448"} +{"$label":"ACTS_IN","name":"Mark Elliot","type":"Role","_key":"109077","_from":"64449","_to":"64448"} +{"$label":"ACTS_IN","name":"Maxim","type":"Role","_key":"109083","_from":"64452","_to":"64451"} +{"$label":"ACTS_IN","name":"Dar","type":"Role","_key":"109239","_from":"64452","_to":"64540"} +{"$label":"DIRECTED","_key":"109093","_from":"64458","_to":"64455"} +{"$label":"ACTS_IN","name":"Arsa 'Kralj carlstona'","type":"Role","_key":"109092","_from":"64457","_to":"64455"} +{"$label":"ACTS_IN","name":"Mala Boginja","type":"Role","_key":"109090","_from":"64456","_to":"64455"} +{"$label":"ACTS_IN","name":"Lai","type":"Role","_key":"109098","_from":"64461","_to":"64459"} +{"$label":"ACTS_IN","name":"Namgung Junkwang","type":"Role","_key":"109097","_from":"64460","_to":"64459"} +{"$label":"ACTS_IN","name":"Neda","type":"Role","_key":"109103","_from":"64464","_to":"64462"} +{"$label":"DIRECTED","_key":"109099","_from":"64463","_to":"64462"} +{"$label":"DIRECTED","_key":"118997","_from":"64463","_to":"69944"} +{"$label":"DIRECTED","_key":"115177","_from":"64463","_to":"67826"} +{"$label":"ACTS_IN","name":"Ah Dee","type":"Role","_key":"109107","_from":"64468","_to":"64466"} +{"$label":"ACTS_IN","name":"Tiger (as Hui-Min Chen)","type":"Role","_key":"109106","_from":"64467","_to":"64466"} +{"$label":"DIRECTED","_key":"109119","_from":"64470","_to":"64469"} +{"$label":"DIRECTED","_key":"109137","_from":"64474","_to":"64473"} +{"$label":"ACTS_IN","name":"Jakobi","type":"Role","_key":"109139","_from":"64477","_to":"64475"} +{"$label":"ACTS_IN","name":"Shucks","type":"Role","_key":"109138","_from":"64476","_to":"64475"} +{"$label":"ACTS_IN","name":"Kwagga","type":"Role","_key":"109174","_from":"64476","_to":"64500"} +{"$label":"ACTS_IN","name":"Rhino","type":"Role","_key":"109153","_from":"64476","_to":"64487"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109148","_from":"64476","_to":"64483"} +{"$label":"ACTS_IN","name":"Sweet Coetzee","type":"Role","_key":"109144","_from":"64476","_to":"64479"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109142","_from":"64476","_to":"64478"} +{"$label":"DIRECTED","_key":"109141","_from":"64476","_to":"64478"} +{"$label":"ACTS_IN","name":"George Weedle","type":"Role","_key":"109146","_from":"64482","_to":"64479"} +{"$label":"ACTS_IN","name":"Alfred Short","type":"Role","_key":"109145","_from":"64481","_to":"64479"} +{"$label":"DIRECTED","_key":"109143","_from":"64480","_to":"64479"} +{"$label":"DIRECTED","_key":"109152","_from":"64480","_to":"64487"} +{"$label":"ACTS_IN","name":"Van Den Ploes","type":"Role","_key":"109176","_from":"64482","_to":"64500"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"109151","_from":"64486","_to":"64483"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109150","_from":"64485","_to":"64483"} +{"$label":"DIRECTED","_key":"109147","_from":"64484","_to":"64483"} +{"$label":"ACTS_IN","name":"Tienkie","type":"Role","_key":"109155","_from":"64488","_to":"64487"} +{"$label":"ACTS_IN","name":"Olivia (voice)","type":"Role","_key":"109172","_from":"64499","_to":"64489"} +{"$label":"ACTS_IN","name":"Lucas (voice)","type":"Role","_key":"109171","_from":"64498","_to":"64489"} +{"$label":"ACTS_IN","name":"Emma (voice)","type":"Role","_key":"109170","_from":"64497","_to":"64489"} +{"$label":"ACTS_IN","name":"Violet (voice)","type":"Role","_key":"109169","_from":"64496","_to":"64489"} +{"$label":"ACTS_IN","name":"Carla (voice)","type":"Role","_key":"109168","_from":"64495","_to":"64489"} +{"$label":"ACTS_IN","name":"Evan (voice)","type":"Role","_key":"109163","_from":"64494","_to":"64489"} +{"$label":"ACTS_IN","name":"Janessa (voice)","type":"Role","_key":"109161","_from":"64493","_to":"64489"} +{"$label":"ACTS_IN","name":"Makena (voice)","type":"Role","_key":"109159","_from":"64492","_to":"64489"} +{"$label":"ACTS_IN","name":"Thumbelina (voice)","type":"Role","_key":"109158","_from":"64491","_to":"64489"} +{"$label":"DIRECTED","_key":"109156","_from":"64490","_to":"64489"} +{"$label":"DIRECTED","_key":"115273","_from":"64490","_to":"67876"} +{"$label":"ACTS_IN","name":"Isaac Preston","type":"Role","_key":"117057","_from":"64494","_to":"68886"} +{"$label":"ACTS_IN","name":"Zapman","type":"Role","_key":"109175","_from":"64501","_to":"64500"} +{"$label":"ACTS_IN","name":"Bianca","type":"Role","_key":"109182","_from":"64503","_to":"64502"} +{"$label":"DIRECTED","_key":"109186","_from":"64506","_to":"64505"} +{"$label":"DIRECTED","_key":"109193","_from":"64514","_to":"64507"} +{"$label":"ACTS_IN","name":"No\u00ebl","type":"Role","_key":"109192","_from":"64513","_to":"64507"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"109191","_from":"64512","_to":"64507"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"109190","_from":"64511","_to":"64507"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109189","_from":"64510","_to":"64507"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109188","_from":"64509","_to":"64507"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109187","_from":"64508","_to":"64507"} +{"$label":"ACTS_IN","name":"Peggy Lamothe","type":"Role","_key":"119888","_from":"64512","_to":"70398"} +{"$label":"ACTS_IN","name":"Manuela","type":"Role","_key":"109197","_from":"64517","_to":"64516"} +{"$label":"ACTS_IN","name":"Oficer Carr (as Frankie Jay Allison)","type":"Role","_key":"109205","_from":"64522","_to":"64519"} +{"$label":"ACTS_IN","name":"Ellen Abercombie (as Melinda R. Allen)","type":"Role","_key":"109204","_from":"64521","_to":"64519"} +{"$label":"DIRECTED","_key":"109203","_from":"64520","_to":"64519"} +{"$label":"DIRECTED","_key":"109213","_from":"64524","_to":"64523"} +{"$label":"DIRECTED","_key":"109231","_from":"64534","_to":"64531"} +{"$label":"ACTS_IN","name":"Christian Rubi","type":"Role","_key":"109230","_from":"64533","_to":"64531"} +{"$label":"ACTS_IN","name":"Adolf Rubi","type":"Role","_key":"109229","_from":"64532","_to":"64531"} +{"$label":"DIRECTED","_key":"109236","_from":"64538","_to":"64536"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"109235","_from":"64537","_to":"64536"} +{"$label":"ACTS_IN","name":"Postmistress","type":"Role","_key":"118120","_from":"64537","_to":"69418"} +{"$label":"ACTS_IN","name":"Radio Announcer","type":"Role","_key":"109270","_from":"64558","_to":"64542"} +{"$label":"ACTS_IN","name":"Radio Announcer","type":"Role","_key":"109269","_from":"64557","_to":"64542"} +{"$label":"ACTS_IN","name":"The Specialist","type":"Role","_key":"109268","_from":"64556","_to":"64542"} +{"$label":"ACTS_IN","name":"Bertorelli","type":"Role","_key":"109267","_from":"64555","_to":"64542"} +{"$label":"ACTS_IN","name":"Madeleine","type":"Role","_key":"109266","_from":"64554","_to":"64542"} +{"$label":"ACTS_IN","name":"Von Crantz","type":"Role","_key":"109265","_from":"64553","_to":"64542"} +{"$label":"ACTS_IN","name":"Von Straben","type":"Role","_key":"109263","_from":"64552","_to":"64542"} +{"$label":"ACTS_IN","name":"Messerschmitt","type":"Role","_key":"109262","_from":"64551","_to":"64542"} +{"$label":"ACTS_IN","name":"Mr. Royce","type":"Role","_key":"109261","_from":"64550","_to":"64542"} +{"$label":"ACTS_IN","name":"Major Buchan","type":"Role","_key":"109260","_from":"64549","_to":"64542"} +{"$label":"ACTS_IN","name":"Lady Houston","type":"Role","_key":"109259","_from":"64548","_to":"64542"} +{"$label":"ACTS_IN","name":"MacPherson","type":"Role","_key":"109258","_from":"64547","_to":"64542"} +{"$label":"ACTS_IN","name":"Mabel Lovesay","type":"Role","_key":"109257","_from":"64546","_to":"64542"} +{"$label":"ACTS_IN","name":"Mr. Higgins","type":"Role","_key":"109254","_from":"64545","_to":"64542"} +{"$label":"ACTS_IN","name":"Miss Harper","type":"Role","_key":"109253","_from":"64544","_to":"64542"} +{"$label":"ACTS_IN","name":"Diana Mitchell","type":"Role","_key":"109251","_from":"64543","_to":"64542"} +{"$label":"DIRECTED","_key":"109278","_from":"64564","_to":"64563"} +{"$label":"DIRECTED","_key":"109302","_from":"64572","_to":"64568"} +{"$label":"DIRECTED","_key":"109301","_from":"64571","_to":"64568"} +{"$label":"DIRECTED","_key":"109300","_from":"64570","_to":"64568"} +{"$label":"ACTS_IN","name":"Dougal","type":"Role","_key":"109294","_from":"64569","_to":"64568"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113873","_from":"64569","_to":"67080"} +{"$label":"DIRECTED","_key":"115531","_from":"64570","_to":"68011"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"115534","_from":"64572","_to":"68011"} +{"$label":"DIRECTED","_key":"109312","_from":"64574","_to":"64573"} +{"$label":"ACTS_IN","name":"Lou","type":"Role","_key":"109313","_from":"64576","_to":"64575"} +{"$label":"ACTS_IN","name":"Accountant","type":"Role","_key":"113816","_from":"64576","_to":"67050"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"109318","_from":"64582","_to":"64578"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109317","_from":"64581","_to":"64578"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109316","_from":"64580","_to":"64578"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"109315","_from":"64579","_to":"64578"} +{"$label":"DIRECTED","_key":"109332","_from":"64591","_to":"64585"} +{"$label":"ACTS_IN","name":"Controller #2","type":"Role","_key":"109331","_from":"64590","_to":"64585"} +{"$label":"ACTS_IN","name":"Controller #1","type":"Role","_key":"109330","_from":"64589","_to":"64585"} +{"$label":"ACTS_IN","name":"Mobile Supervisor","type":"Role","_key":"109328","_from":"64588","_to":"64585"} +{"$label":"ACTS_IN","name":"Barry","type":"Role","_key":"109327","_from":"64587","_to":"64585"} +{"$label":"ACTS_IN","name":"Dorita","type":"Role","_key":"109325","_from":"64586","_to":"64585"} +{"$label":"DIRECTED","_key":"109349","_from":"64597","_to":"64596"} +{"$label":"ACTS_IN","name":"\u039d\u03cc\u03c1\u03b1","type":"Role","_key":"109363","_from":"64612","_to":"64598"} +{"$label":"ACTS_IN","name":"\u039c\u03b1\u03c1\u03af\u03b1 \u0398\u03b5\u03bf\u03c6\u03af\u03bb\u03bf\u03c5","type":"Role","_key":"109362","_from":"64611","_to":"64598"} +{"$label":"ACTS_IN","name":"\u0395\u03bb\u03ad\u03bd\u03b7 \u0398\u03b5\u03bf\u03c6\u03af\u03bb\u03bf\u03c5","type":"Role","_key":"109361","_from":"64610","_to":"64598"} +{"$label":"ACTS_IN","name":"\u03a3\u03c4\u03c1\u03b9\u03c6\u03c4\u03cc\u03c2","type":"Role","_key":"109360","_from":"64609","_to":"64598"} +{"$label":"ACTS_IN","name":"\u039d\u03af\u03ba\u03bf\u03c2 \u039c\u03af\u03c7\u03b1\u03c2","type":"Role","_key":"109359","_from":"64608","_to":"64598"} +{"$label":"ACTS_IN","name":"\u03a3\u03c9\u03c4\u03ae\u03c1\u03b7\u03c2 \u039a\u03b1\u03c4\u03c3\u03bf\u03cd\u03bd\u03b7\u03c2","type":"Role","_key":"109358","_from":"64607","_to":"64598"} +{"$label":"ACTS_IN","name":"\u03a0\u03b5\u03c1\u03b9\u03ba\u03bb\u03ae\u03c2 \u039a\u03b1\u03c1\u03b1\u03c3\u03b1\u03b2\u03af\u03b4\u03b7\u03c2","type":"Role","_key":"109357","_from":"64606","_to":"64598"} +{"$label":"ACTS_IN","name":"\u03a7\u03ac\u03c1\u03b7\u03c2 \u039a\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf\u03c2","type":"Role","_key":"109356","_from":"64605","_to":"64598"} +{"$label":"ACTS_IN","name":"\u0398\u03b5\u03cc\u03c6\u03b9\u03bb\u03bf\u03c2 \u0398\u03b5\u03bf\u03c6\u03af\u03bb\u03bf\u03c5","type":"Role","_key":"109355","_from":"64604","_to":"64598"} +{"$label":"ACTS_IN","name":"\u039c\u03af\u03bb\u03c4\u03bf\u03c2 \u039c\u03b1\u03c5\u03c1\u03ad\u03b1\u03c2","type":"Role","_key":"109354","_from":"64603","_to":"64598"} +{"$label":"ACTS_IN","name":"\u0386\u03bb\u03ba\u03b7\u03c2 \u039a\u03bf\u03c5\u03bc\u03b5\u03bd\u03c4\u03ac\u03ba\u03b7\u03c2","type":"Role","_key":"109353","_from":"64602","_to":"64598"} +{"$label":"ACTS_IN","name":"\u0398\u03cc\u03b4\u03c9\u03c1\u03bf\u03c2 \u03a6\u03bf\u03c5\u03c4\u03af\u03b4\u03b7\u03c2","type":"Role","_key":"109352","_from":"64601","_to":"64598"} +{"$label":"ACTS_IN","name":"\u0398\u03b1\u03bd\u03ac\u03c3\u03b7\u03c2 \u039a\u03b9\u03bf\u03c5\u03bc\u03c0\u03b1\u03c3\u03af\u03b4\u03b7\u03c2","type":"Role","_key":"109351","_from":"64600","_to":"64598"} +{"$label":"DIRECTED","_key":"109350","_from":"64599","_to":"64598"} +{"$label":"DIRECTED","_key":"109365","_from":"64614","_to":"64613"} +{"$label":"ACTS_IN","name":"Captain Walt Cushman","type":"Role","_key":"109374","_from":"64617","_to":"64615"} +{"$label":"ACTS_IN","name":"Harvey Cheyne","type":"Role","_key":"109367","_from":"64616","_to":"64615"} +{"$label":"DIRECTED","_key":"109380","_from":"64623","_to":"64618"} +{"$label":"ACTS_IN","name":"Tomoyo Sakagami","type":"Role","_key":"109378","_from":"64622","_to":"64618"} +{"$label":"ACTS_IN","name":"Ky\u014d Fujibayashi","type":"Role","_key":"109377","_from":"64621","_to":"64618"} +{"$label":"ACTS_IN","name":"Nagisa Furukawa","type":"Role","_key":"109376","_from":"64620","_to":"64618"} +{"$label":"ACTS_IN","name":"Tomoya Okazaki","type":"Role","_key":"109375","_from":"64619","_to":"64618"} +{"$label":"DIRECTED","_key":"114403","_from":"64623","_to":"67385"} +{"$label":"ACTS_IN","name":"Prince Chulalongkorn","type":"Role","_key":"109389","_from":"64629","_to":"64625"} +{"$label":"ACTS_IN","name":"Louis Leonowens","type":"Role","_key":"109387","_from":"64628","_to":"64625"} +{"$label":"ACTS_IN","name":"Lady Thiang","type":"Role","_key":"109386","_from":"64627","_to":"64625"} +{"$label":"DIRECTED","_key":"109381","_from":"64626","_to":"64625"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"109400","_from":"64632","_to":"64630"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"109394","_from":"64631","_to":"64630"} +{"$label":"DIRECTED","_key":"109401","_from":"64634","_to":"64633"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"109406","_from":"64639","_to":"64636"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"109405","_from":"64638","_to":"64636"} +{"$label":"ACTS_IN","name":"Spike","type":"Role","_key":"109403","_from":"64637","_to":"64636"} +{"$label":"DIRECTED","_key":"109407","_from":"64641","_to":"64640"} +{"$label":"DIRECTED","_key":"119526","_from":"64641","_to":"70214"} +{"$label":"ACTS_IN","name":"Annette Sturges","type":"Role","_key":"109412","_from":"64643","_to":"64642"} +{"$label":"DIRECTED","_key":"109422","_from":"64646","_to":"64644"} +{"$label":"ACTS_IN","name":"Suresh","type":"Role","_key":"109421","_from":"64645","_to":"64644"} +{"$label":"ACTS_IN","name":"Female Co-worker #2","type":"Role","_key":"109435","_from":"64651","_to":"64647"} +{"$label":"ACTS_IN","name":"Leanne","type":"Role","_key":"109433","_from":"64650","_to":"64647"} +{"$label":"ACTS_IN","name":"Hailey's Date","type":"Role","_key":"109427","_from":"64649","_to":"64647"} +{"$label":"ACTS_IN","name":"Hailey","type":"Role","_key":"109426","_from":"64648","_to":"64647"} +{"$label":"DIRECTED","_key":"109447","_from":"64658","_to":"64655"} +{"$label":"ACTS_IN","name":"Yabu","type":"Role","_key":"109444","_from":"64657","_to":"64655"} +{"$label":"ACTS_IN","name":"Lady Toda Buntaro - Mariko","type":"Role","_key":"109443","_from":"64656","_to":"64655"} +{"$label":"ACTS_IN","name":"Duca Gaspare","type":"Role","_key":"109454","_from":"64662","_to":"64659"} +{"$label":"ACTS_IN","name":"Giovannino","type":"Role","_key":"109452","_from":"64661","_to":"64659"} +{"$label":"DIRECTED","_key":"109448","_from":"64660","_to":"64659"} +{"$label":"ACTS_IN","name":"Smash Jackson","type":"Role","_key":"109462","_from":"64666","_to":"64663"} +{"$label":"ACTS_IN","name":"Leslie Towne","type":"Role","_key":"109461","_from":"64665","_to":"64663"} +{"$label":"ACTS_IN","name":"Rick Saul","type":"Role","_key":"109460","_from":"64664","_to":"64663"} +{"$label":"ACTS_IN","name":"Ethan","type":"Role","_key":"109471","_from":"64670","_to":"64667"} +{"$label":"ACTS_IN","name":"Joyce","type":"Role","_key":"109470","_from":"64669","_to":"64667"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"109469","_from":"64668","_to":"64667"} +{"$label":"ACTS_IN","name":"Mother Martinelli","type":"Role","_key":"109486","_from":"64673","_to":"64671"} +{"$label":"ACTS_IN","name":"Father Martinelli (as Stephen Apostle Pec)","type":"Role","_key":"109485","_from":"64672","_to":"64671"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109491","_from":"64678","_to":"64674"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109490","_from":"64677","_to":"64674"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109489","_from":"64676","_to":"64674"} +{"$label":"DIRECTED","_key":"109488","_from":"64675","_to":"64674"} +{"$label":"ACTS_IN","name":"Rosemary","type":"Role","_key":"109494","_from":"64680","_to":"64679"} +{"$label":"ACTS_IN","name":"Doorman","type":"Role","_key":"109515","_from":"64692","_to":"64682"} +{"$label":"ACTS_IN","name":"Councilman","type":"Role","_key":"109514","_from":"64691","_to":"64682"} +{"$label":"ACTS_IN","name":"Miss Rochelle","type":"Role","_key":"109513","_from":"64690","_to":"64682"} +{"$label":"ACTS_IN","name":"Wife","type":"Role","_key":"109512","_from":"64689","_to":"64682"} +{"$label":"ACTS_IN","name":"Katheryn","type":"Role","_key":"109511","_from":"64688","_to":"64682"} +{"$label":"ACTS_IN","name":"Lauryn (as Lauryn McClain)","type":"Role","_key":"109510","_from":"64687","_to":"64682"} +{"$label":"ACTS_IN","name":"China (as China McClain)","type":"Role","_key":"109509","_from":"64686","_to":"64682"} +{"$label":"ACTS_IN","name":"Sierra (as Sierra McClain)","type":"Role","_key":"109508","_from":"64685","_to":"64682"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"109507","_from":"64684","_to":"64682"} +{"$label":"ACTS_IN","name":"Cynthia","type":"Role","_key":"109503","_from":"64683","_to":"64682"} +{"$label":"ACTS_IN","name":"Kristin","type":"Role","_key":"121170","_from":"64683","_to":"71176"} +{"$label":"ACTS_IN","name":"Aunt Sarah","type":"Role","_key":"110039","_from":"64684","_to":"65011"} +{"$label":"DIRECTED","_key":"109528","_from":"64697","_to":"64694"} +{"$label":"ACTS_IN","name":"Basil Hallward","type":"Role","_key":"109527","_from":"64696","_to":"64694"} +{"$label":"ACTS_IN","name":"Dorian Gray","type":"Role","_key":"109523","_from":"64695","_to":"64694"} +{"$label":"ACTS_IN","name":"Bob Wythe","type":"Role","_key":"109533","_from":"64701","_to":"64698"} +{"$label":"ACTS_IN","name":"Louis Simms","type":"Role","_key":"109532","_from":"64700","_to":"64698"} +{"$label":"ACTS_IN","name":"Amy Simms","type":"Role","_key":"109531","_from":"64699","_to":"64698"} +{"$label":"ACTS_IN","name":"Mr. Schaeffer, TV Director","type":"Role","_key":"109542","_from":"64706","_to":"64702"} +{"$label":"ACTS_IN","name":"Mrs. Doris Green, Al's Daughter","type":"Role","_key":"109538","_from":"64705","_to":"64702"} +{"$label":"ACTS_IN","name":"Nurse in Sketch (Miss McIntosh)","type":"Role","_key":"109537","_from":"64704","_to":"64702"} +{"$label":"ACTS_IN","name":"Al Lewis","type":"Role","_key":"109535","_from":"64703","_to":"64702"} +{"$label":"ACTS_IN","name":"Milly","type":"Role","_key":"109551","_from":"64709","_to":"64708"} +{"$label":"ACTS_IN","name":"Ellen Bowen","type":"Role","_key":"116935","_from":"64709","_to":"68832"} +{"$label":"ACTS_IN","name":"Johan van Beusekom","type":"Role","_key":"109559","_from":"64713","_to":"64710"} +{"$label":"ACTS_IN","name":"Erica van Beusekom","type":"Role","_key":"109556","_from":"64712","_to":"64710"} +{"$label":"ACTS_IN","name":"Michiel van Beusekom","type":"Role","_key":"109555","_from":"64711","_to":"64710"} +{"$label":"DIRECTED","_key":"109566","_from":"64718","_to":"64715"} +{"$label":"ACTS_IN","name":"Sexy's Father","type":"Role","_key":"109565","_from":"64717","_to":"64715"} +{"$label":"ACTS_IN","name":"Sexy","type":"Role","_key":"109564","_from":"64716","_to":"64715"} +{"$label":"ACTS_IN","name":"Sludge (voice)","type":"Role","_key":"109573","_from":"64720","_to":"64719"} +{"$label":"DIRECTED","_key":"109586","_from":"64730","_to":"64724"} +{"$label":"DIRECTED","_key":"109585","_from":"64729","_to":"64724"} +{"$label":"ACTS_IN","name":"Marie, the Maid","type":"Role","_key":"109583","_from":"64728","_to":"64724"} +{"$label":"ACTS_IN","name":"The Under-Sheriff","type":"Role","_key":"109582","_from":"64727","_to":"64724"} +{"$label":"ACTS_IN","name":"Mrs. Remington Chow - the Wife","type":"Role","_key":"109580","_from":"64726","_to":"64724"} +{"$label":"ACTS_IN","name":"Remington Chow - the 2nd Husband","type":"Role","_key":"109579","_from":"64725","_to":"64724"} +{"$label":"DIRECTED","_key":"109595","_from":"64734","_to":"64732"} +{"$label":"ACTS_IN","name":"Richard","type":"Role","_key":"109594","_from":"64733","_to":"64732"} +{"$label":"ACTS_IN","name":"Meek man","type":"Role","_key":"109604","_from":"64743","_to":"64735"} +{"$label":"ACTS_IN","name":"Ggal-chi","type":"Role","_key":"109603","_from":"64742","_to":"64735"} +{"$label":"ACTS_IN","name":"Geon-Bbang","type":"Role","_key":"109602","_from":"64741","_to":"64735"} +{"$label":"ACTS_IN","name":"Gas station owner","type":"Role","_key":"109601","_from":"64740","_to":"64735"} +{"$label":"ACTS_IN","name":"Ddan Dda-ra","type":"Role","_key":"109599","_from":"64739","_to":"64735"} +{"$label":"ACTS_IN","name":"Mu Dae-po (a.k.a. Bulldozer)","type":"Role","_key":"109598","_from":"64738","_to":"64735"} +{"$label":"ACTS_IN","name":"No Mark","type":"Role","_key":"109597","_from":"64737","_to":"64735"} +{"$label":"DIRECTED","_key":"109596","_from":"64736","_to":"64735"} +{"$label":"ACTS_IN","name":"Lee Jeong-suk","type":"Role","_key":"120697","_from":"64738","_to":"70891"} +{"$label":"DIRECTED","_key":"109612","_from":"64745","_to":"64744"} +{"$label":"ACTS_IN","name":"Adult Contestant","type":"Role","_key":"109632","_from":"64757","_to":"64750"} +{"$label":"ACTS_IN","name":"Rich","type":"Role","_key":"109630","_from":"64756","_to":"64750"} +{"$label":"ACTS_IN","name":"Velvet Touch Manager","type":"Role","_key":"109629","_from":"64755","_to":"64750"} +{"$label":"ACTS_IN","name":"Mrs. Brennan","type":"Role","_key":"109627","_from":"64754","_to":"64750"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"109624","_from":"64753","_to":"64750"} +{"$label":"ACTS_IN","name":"Arlene","type":"Role","_key":"109623","_from":"64752","_to":"64750"} +{"$label":"ACTS_IN","name":"Eric","type":"Role","_key":"109618","_from":"64751","_to":"64750"} +{"$label":"ACTS_IN","name":"Jen","type":"Role","_key":"109647","_from":"64762","_to":"64758"} +{"$label":"ACTS_IN","name":"Attacker","type":"Role","_key":"109645","_from":"64761","_to":"64758"} +{"$label":"ACTS_IN","name":"Friend of Jen","type":"Role","_key":"109644","_from":"64760","_to":"64758"} +{"$label":"ACTS_IN","name":"Second Man in the Bar","type":"Role","_key":"109642","_from":"64759","_to":"64758"} +{"$label":"ACTS_IN","name":"Grandfather","type":"Role","_key":"109667","_from":"64769","_to":"64764"} +{"$label":"ACTS_IN","name":"Ruth","type":"Role","_key":"109665","_from":"64768","_to":"64764"} +{"$label":"ACTS_IN","name":"Grandmother","type":"Role","_key":"109664","_from":"64767","_to":"64764"} +{"$label":"ACTS_IN","name":"Ward","type":"Role","_key":"109662","_from":"64766","_to":"64764"} +{"$label":"ACTS_IN","name":"Jordan 'Buck' Jarrett","type":"Role","_key":"109661","_from":"64765","_to":"64764"} +{"$label":"ACTS_IN","name":"Donna Ludwig","type":"Role","_key":"109671","_from":"64772","_to":"64770"} +{"$label":"DIRECTED","_key":"109668","_from":"64771","_to":"64770"} +{"$label":"ACTS_IN","name":"Ellie Sawyer","type":"Role","_key":"115560","_from":"64772","_to":"68031"} +{"$label":"ACTS_IN","name":"Hyeon-ju","type":"Role","_key":"109677","_from":"64779","_to":"64775"} +{"$label":"ACTS_IN","name":"Yeong-eun","type":"Role","_key":"109676","_from":"64778","_to":"64775"} +{"$label":"ACTS_IN","name":"Lee Hyeong-jun","type":"Role","_key":"109675","_from":"64777","_to":"64775"} +{"$label":"DIRECTED","_key":"109674","_from":"64776","_to":"64775"} +{"$label":"ACTS_IN","name":"Arthur Biehl","type":"Role","_key":"109683","_from":"64781","_to":"64780"} +{"$label":"DIRECTED","_key":"109690","_from":"64784","_to":"64782"} +{"$label":"ACTS_IN","name":"Tammy","type":"Role","_key":"109686","_from":"64783","_to":"64782"} +{"$label":"ACTS_IN","name":"Moutamin","type":"Role","_key":"109703","_from":"64789","_to":"64787"} +{"$label":"ACTS_IN","name":"King Ferdinand","type":"Role","_key":"109701","_from":"64788","_to":"64787"} +{"$label":"ACTS_IN","name":"Vizier","type":"Role","_key":"114280","_from":"64789","_to":"67308"} +{"$label":"ACTS_IN","name":"M. Desmoulins - French Minister, Montevideo","type":"Role","_key":"113287","_from":"64789","_to":"66734"} +{"$label":"ACTS_IN","name":"Niger","type":"Role","_key":"111758","_from":"64789","_to":"65965"} +{"$label":"ACTS_IN","name":"Pernille","type":"Role","_key":"109706","_from":"64791","_to":"64790"} +{"$label":"ACTS_IN","name":"Mark Laughlin","type":"Role","_key":"109722","_from":"64796","_to":"64795"} +{"$label":"ACTS_IN","name":"Brig. Gen. Telford Taylor","type":"Role","_key":"117940","_from":"64796","_to":"69324"} +{"$label":"DIRECTED","_key":"109725","_from":"64800","_to":"64798"} +{"$label":"ACTS_IN","name":"The Marquis","type":"Role","_key":"109724","_from":"64799","_to":"64798"} +{"$label":"DIRECTED","_key":"112363","_from":"64800","_to":"66341"} +{"$label":"DIRECTED","_key":"109729","_from":"64803","_to":"64802"} +{"$label":"ACTS_IN","name":"Vocal\/Guitar","type":"Role","_key":"109730","_from":"64807","_to":"64806"} +{"$label":"ACTS_IN","name":"Head of Customs Officers (as Liu Kai Chi)","type":"Role","_key":"109738","_from":"64812","_to":"64808"} +{"$label":"ACTS_IN","name":"Sister of Quin's Wife (as He Mei Tian)","type":"Role","_key":"109737","_from":"64811","_to":"64808"} +{"$label":"ACTS_IN","name":"(as Nirut Sirijanya)","type":"Role","_key":"109736","_from":"64810","_to":"64808"} +{"$label":"DIRECTED","_key":"109731","_from":"64809","_to":"64808"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"109752","_from":"64821","_to":"64813"} +{"$label":"ACTS_IN","name":"Aurora","type":"Role","_key":"109751","_from":"64820","_to":"64813"} +{"$label":"ACTS_IN","name":"Stanley","type":"Role","_key":"109750","_from":"64819","_to":"64813"} +{"$label":"ACTS_IN","name":"Gertie","type":"Role","_key":"109749","_from":"64818","_to":"64813"} +{"$label":"ACTS_IN","name":"Aunt Gussie","type":"Role","_key":"109745","_from":"64817","_to":"64813"} +{"$label":"ACTS_IN","name":"Uncle Julius","type":"Role","_key":"109744","_from":"64816","_to":"64813"} +{"$label":"ACTS_IN","name":"Grandma Bossier","type":"Role","_key":"109743","_from":"64815","_to":"64813"} +{"$label":"ACTS_IN","name":"Frank Hawdon","type":"Role","_key":"109742","_from":"64814","_to":"64813"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109767","_from":"64834","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109766","_from":"64833","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109765","_from":"64832","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109764","_from":"64831","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109763","_from":"64830","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109762","_from":"64829","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109761","_from":"64828","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109760","_from":"64827","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109759","_from":"64826","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109758","_from":"64825","_to":"64822"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109757","_from":"64824","_to":"64822"} +{"$label":"DIRECTED","_key":"109756","_from":"64823","_to":"64822"} +{"$label":"DIRECTED","_key":"109778","_from":"64845","_to":"64835"} +{"$label":"DIRECTED","_key":"109777","_from":"64844","_to":"64835"} +{"$label":"ACTS_IN","name":"Hank Hooper","type":"Role","_key":"109776","_from":"64843","_to":"64835"} +{"$label":"ACTS_IN","name":"Sam Hooper","type":"Role","_key":"109775","_from":"64842","_to":"64835"} +{"$label":"ACTS_IN","name":"Sandoni","type":"Role","_key":"109773","_from":"64841","_to":"64835"} +{"$label":"ACTS_IN","name":"Olin Hickory","type":"Role","_key":"109772","_from":"64840","_to":"64835"} +{"$label":"ACTS_IN","name":"Leo Hickory","type":"Role","_key":"109771","_from":"64839","_to":"64835"} +{"$label":"ACTS_IN","name":"Jim Hickory","type":"Role","_key":"109770","_from":"64838","_to":"64835"} +{"$label":"ACTS_IN","name":"Mary Powers","type":"Role","_key":"109769","_from":"64837","_to":"64835"} +{"$label":"ACTS_IN","name":"Harold Hickory","type":"Role","_key":"109768","_from":"64836","_to":"64835"} +{"$label":"ACTS_IN","name":"Rosita, Cuchillo's wife","type":"Role","_key":"109782","_from":"64848","_to":"64846"} +{"$label":"ACTS_IN","name":"Baron von Schulenberg","type":"Role","_key":"109781","_from":"64847","_to":"64846"} +{"$label":"ACTS_IN","name":"Sumika Kanzaki","type":"Role","_key":"109792","_from":"64854","_to":"64849"} +{"$label":"ACTS_IN","name":"Izumi Hoshino","type":"Role","_key":"109791","_from":"64853","_to":"64849"} +{"$label":"ACTS_IN","name":"Shimabukuro","type":"Role","_key":"109790","_from":"64852","_to":"64849"} +{"$label":"ACTS_IN","name":"Shusuke Hoshino","type":"Role","_key":"109787","_from":"64851","_to":"64849"} +{"$label":"ACTS_IN","name":"Y\u00fbichi Hasumi","type":"Role","_key":"109786","_from":"64850","_to":"64849"} +{"$label":"ACTS_IN","name":"Sergeant Odd","type":"Role","_key":"109798","_from":"64857","_to":"64855"} +{"$label":"ACTS_IN","name":"Mrs. Waggett","type":"Role","_key":"109797","_from":"64856","_to":"64855"} +{"$label":"ACTS_IN","name":"Elder Van Pelt's Girlfriend","type":"Role","_key":"109809","_from":"64865","_to":"64859"} +{"$label":"ACTS_IN","name":"Elder Van Pelt's Girlfriend","type":"Role","_key":"109808","_from":"64864","_to":"64859"} +{"$label":"ACTS_IN","name":"Woman on Train","type":"Role","_key":"109807","_from":"64863","_to":"64859"} +{"$label":"ACTS_IN","name":"Kyle Harrison","type":"Role","_key":"109805","_from":"64862","_to":"64859"} +{"$label":"ACTS_IN","name":"Elder Emmit Johnson","type":"Role","_key":"109804","_from":"64861","_to":"64859"} +{"$label":"ACTS_IN","name":"Elder Steven Van Pelt","type":"Role","_key":"109803","_from":"64860","_to":"64859"} +{"$label":"DIRECTED","_key":"109810","_from":"64868","_to":"64867"} +{"$label":"DIRECTED","_key":"109811","_from":"64868","_to":"64869"} +{"$label":"ACTS_IN","name":"Co-Pilot","type":"Role","_key":"109813","_from":"64871","_to":"64869"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"109812","_from":"64870","_to":"64869"} +{"$label":"ACTS_IN","name":"The Woman","type":"Role","_key":"109820","_from":"64878","_to":"64872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109819","_from":"64877","_to":"64872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109818","_from":"64876","_to":"64872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109817","_from":"64875","_to":"64872"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"109816","_from":"64874","_to":"64872"} +{"$label":"DIRECTED","_key":"109814","_from":"64873","_to":"64872"} +{"$label":"DIRECTED","_key":"109825","_from":"64881","_to":"64880"} +{"$label":"DIRECTED","_key":"109828","_from":"64883","_to":"64882"} +{"$label":"DIRECTED","_key":"109840","_from":"64892","_to":"64885"} +{"$label":"ACTS_IN","name":"Vera Werner","type":"Role","_key":"109839","_from":"64891","_to":"64885"} +{"$label":"ACTS_IN","name":"Niels Halle","type":"Role","_key":"109838","_from":"64890","_to":"64885"} +{"$label":"ACTS_IN","name":"Vigdis Halle","type":"Role","_key":"109837","_from":"64889","_to":"64885"} +{"$label":"ACTS_IN","name":"Lisa Halle","type":"Role","_key":"109836","_from":"64888","_to":"64885"} +{"$label":"ACTS_IN","name":"Isachsen","type":"Role","_key":"109835","_from":"64887","_to":"64885"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"109834","_from":"64886","_to":"64885"} +{"$label":"ACTS_IN","name":"Anna Keilhaug","type":"Role","_key":"109844","_from":"64886","_to":"64893"} +{"$label":"ACTS_IN","name":"Isachsen","type":"Role","_key":"109843","_from":"64887","_to":"64893"} +{"$label":"DIRECTED","_key":"109856","_from":"64902","_to":"64893"} +{"$label":"ACTS_IN","name":"Henrik Farang","type":"Role","_key":"109855","_from":"64901","_to":"64893"} +{"$label":"ACTS_IN","name":"Camilla Farang","type":"Role","_key":"109854","_from":"64900","_to":"64893"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"109853","_from":"64899","_to":"64893"} +{"$label":"ACTS_IN","name":"Kristin","type":"Role","_key":"109852","_from":"64898","_to":"64893"} +{"$label":"ACTS_IN","name":"Monrad","type":"Role","_key":"109851","_from":"64897","_to":"64893"} +{"$label":"ACTS_IN","name":"Odin","type":"Role","_key":"109847","_from":"64896","_to":"64893"} +{"$label":"ACTS_IN","name":"Trygve","type":"Role","_key":"109846","_from":"64895","_to":"64893"} +{"$label":"ACTS_IN","name":"Harald","type":"Role","_key":"109845","_from":"64894","_to":"64893"} +{"$label":"ACTS_IN","name":"The Pig","type":"Role","_key":"115031","_from":"64897","_to":"67736"} +{"$label":"ACTS_IN","name":"Li Yi","type":"Role","_key":"109860","_from":"64906","_to":"64903"} +{"$label":"ACTS_IN","name":"Yang Yauwu","type":"Role","_key":"109859","_from":"64905","_to":"64903"} +{"$label":"DIRECTED","_key":"109857","_from":"64904","_to":"64903"} +{"$label":"ACTS_IN","name":"Peter Pan (Voice)","type":"Role","_key":"109862","_from":"64909","_to":"64907"} +{"$label":"ACTS_IN","name":"Jane \/ Young Wendy (Voice)","type":"Role","_key":"109861","_from":"64908","_to":"64907"} +{"$label":"DIRECTED","_key":"121421","_from":"64909","_to":"71338"} +{"$label":"ACTS_IN","name":"Hirate, Miki","type":"Role","_key":"109870","_from":"64916","_to":"64910"} +{"$label":"ACTS_IN","name":"Hanji of Matsugishi","type":"Role","_key":"109869","_from":"64915","_to":"64910"} +{"$label":"ACTS_IN","name":"Sasagawa yakuza boss","type":"Role","_key":"109868","_from":"64914","_to":"64910"} +{"$label":"ACTS_IN","name":"Tane","type":"Role","_key":"109867","_from":"64913","_to":"64910"} +{"$label":"ACTS_IN","name":"Zatoichi","type":"Role","_key":"109866","_from":"64912","_to":"64910"} +{"$label":"DIRECTED","_key":"109865","_from":"64911","_to":"64910"} +{"$label":"DIRECTED","_key":"114035","_from":"64911","_to":"67154"} +{"$label":"DIRECTED","_key":"111111","_from":"64911","_to":"65631"} +{"$label":"ACTS_IN","name":"Zat\u00f4ichi","type":"Role","_key":"116848","_from":"64912","_to":"68787"} +{"$label":"ACTS_IN","name":"Zatoichi","type":"Role","_key":"116485","_from":"64912","_to":"68563"} +{"$label":"ACTS_IN","name":"Zat\u00f4ichi","type":"Role","_key":"116477","_from":"64912","_to":"68555"} +{"$label":"ACTS_IN","name":"Hanzo 'The Razor' Itami","type":"Role","_key":"111197","_from":"64912","_to":"65667"} +{"$label":"ACTS_IN","name":"Hanzo 'The Razor' Itami","type":"Role","_key":"111192","_from":"64912","_to":"65665"} +{"$label":"ACTS_IN","name":"Hanzo 'The Razor' Itami","type":"Role","_key":"111112","_from":"64912","_to":"65631"} +{"$label":"ACTS_IN","name":"Zatoichi","type":"Role","_key":"109872","_from":"64912","_to":"64917"} +{"$label":"ACTS_IN","name":"Tane","type":"Role","_key":"116487","_from":"64913","_to":"68563"} +{"$label":"ACTS_IN","name":"Tane","type":"Role","_key":"109874","_from":"64913","_to":"64917"} +{"$label":"ACTS_IN","name":"Jingor\u00f4","type":"Role","_key":"116850","_from":"64914","_to":"68787"} +{"$label":"ACTS_IN","name":"Yahei","type":"Role","_key":"109880","_from":"64924","_to":"64917"} +{"$label":"ACTS_IN","name":"Kai Yoshida","type":"Role","_key":"109879","_from":"64923","_to":"64917"} +{"$label":"ACTS_IN","name":"Tamigoro","type":"Role","_key":"109878","_from":"64922","_to":"64917"} +{"$label":"ACTS_IN","name":"Seki no Kanbei","type":"Role","_key":"109877","_from":"64921","_to":"64917"} +{"$label":"ACTS_IN","name":"Kagami no Sanzo","type":"Role","_key":"109876","_from":"64920","_to":"64917"} +{"$label":"ACTS_IN","name":"Setsu","type":"Role","_key":"109873","_from":"64919","_to":"64917"} +{"$label":"DIRECTED","_key":"109871","_from":"64918","_to":"64917"} +{"$label":"DIRECTED","_key":"109881","_from":"64926","_to":"64925"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"109884","_from":"64930","_to":"64928"} +{"$label":"DIRECTED","_key":"109882","_from":"64929","_to":"64928"} +{"$label":"ACTS_IN","name":"Arlo","type":"Role","_key":"109897","_from":"64935","_to":"64931"} +{"$label":"ACTS_IN","name":"Lauren Brimm","type":"Role","_key":"109891","_from":"64934","_to":"64931"} +{"$label":"ACTS_IN","name":"Robert Brinn","type":"Role","_key":"109890","_from":"64933","_to":"64931"} +{"$label":"DIRECTED","_key":"109888","_from":"64932","_to":"64931"} +{"$label":"DIRECTED","_key":"109900","_from":"64938","_to":"64936"} +{"$label":"DIRECTED","_key":"109899","_from":"64937","_to":"64936"} +{"$label":"DIRECTED","_key":"109918","_from":"64946","_to":"64940"} +{"$label":"ACTS_IN","name":"Slukey","type":"Role","_key":"109917","_from":"64945","_to":"64940"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"109914","_from":"64944","_to":"64940"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"109911","_from":"64943","_to":"64940"} +{"$label":"ACTS_IN","name":"Senator Burnett","type":"Role","_key":"109910","_from":"64942","_to":"64940"} +{"$label":"ACTS_IN","name":"Willard Gates","type":"Role","_key":"109905","_from":"64941","_to":"64940"} +{"$label":"ACTS_IN","name":"His Excellency","type":"Role","_key":"117256","_from":"64941","_to":"68967"} +{"$label":"ACTS_IN","name":"Lena Brown","type":"Role","_key":"109925","_from":"64951","_to":"64948"} +{"$label":"ACTS_IN","name":"Tosha Brown","type":"Role","_key":"109924","_from":"64950","_to":"64948"} +{"$label":"ACTS_IN","name":"Michael Brown","type":"Role","_key":"109923","_from":"64949","_to":"64948"} +{"$label":"DIRECTED","_key":"109932","_from":"64953","_to":"64952"} +{"$label":"ACTS_IN","name":"Haley","type":"Role","_key":"109940","_from":"64958","_to":"64955"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"109939","_from":"64957","_to":"64955"} +{"$label":"ACTS_IN","name":"Eva DeMarco","type":"Role","_key":"109938","_from":"64956","_to":"64955"} +{"$label":"DIRECTED","_key":"109948","_from":"64961","_to":"64959"} +{"$label":"ACTS_IN","name":"Lucy Whitman","type":"Role","_key":"109947","_from":"64960","_to":"64959"} +{"$label":"ACTS_IN","name":"Mrs. Berkowitz","type":"Role","_key":"109951","_from":"64964","_to":"64962"} +{"$label":"ACTS_IN","name":"Mr. Berkowitz","type":"Role","_key":"109950","_from":"64963","_to":"64962"} +{"$label":"ACTS_IN","name":"Piak","type":"Role","_key":"109954","_from":"64967","_to":"64965"} +{"$label":"DIRECTED","_key":"109953","_from":"64966","_to":"64965"} +{"$label":"ACTS_IN","name":"Ashima's Grandmother","type":"Role","_key":"109963","_from":"64972","_to":"64968"} +{"$label":"ACTS_IN","name":"Ashima's Father","type":"Role","_key":"109962","_from":"64971","_to":"64968"} +{"$label":"ACTS_IN","name":"Ashoke's Mother","type":"Role","_key":"109961","_from":"64970","_to":"64968"} +{"$label":"ACTS_IN","name":"Sonali Ganguli","type":"Role","_key":"109958","_from":"64969","_to":"64968"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"109968","_from":"64974","_to":"64973"} +{"$label":"DIRECTED","_key":"109980","_from":"64982","_to":"64979"} +{"$label":"DIRECTED","_key":"109979","_from":"64983","_to":"64979"} +{"$label":"ACTS_IN","name":"Huevo de chocolate (voz)","type":"Role","_key":"109977","_from":"64984","_to":"64979"} +{"$label":"ACTS_IN","name":"Serp \/ Confi \/ Torti \/ Huevo Poeta (voz)","type":"Role","_key":"109976","_from":"64983","_to":"64979"} +{"$label":"ACTS_IN","name":"Coco \/ Cuache \/ Iguano (voz)","type":"Role","_key":"109975","_from":"64982","_to":"64979"} +{"$label":"ACTS_IN","name":"Bibi (voz)","type":"Role","_key":"109974","_from":"64981","_to":"64979"} +{"$label":"ACTS_IN","name":"Willy (voz)","type":"Role","_key":"109973","_from":"64980","_to":"64979"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"109983","_from":"64986","_to":"64985"} +{"$label":"ACTS_IN","name":"Hunt Wynorski","type":"Role","_key":"121467","_from":"64986","_to":"71354"} +{"$label":"ACTS_IN","name":"Takamori Saori","type":"Role","_key":"109991","_from":"64993","_to":"64989"} +{"$label":"ACTS_IN","name":"Tadogoro Yusuke","type":"Role","_key":"109990","_from":"64992","_to":"64989"} +{"$label":"ACTS_IN","name":"Onodera Tosio","type":"Role","_key":"109989","_from":"64991","_to":"64989"} +{"$label":"DIRECTED","_key":"109988","_from":"64990","_to":"64989"} +{"$label":"DIRECTED","_key":"109993","_from":"64995","_to":"64994"} +{"$label":"DIRECTED","_key":"110462","_from":"64995","_to":"65262"} +{"$label":"ACTS_IN","name":"Loretta & Mooney's child","type":"Role","_key":"110008","_from":"65006","_to":"64997"} +{"$label":"ACTS_IN","name":"Loretta & Mooney's child","type":"Role","_key":"110007","_from":"65005","_to":"64997"} +{"$label":"ACTS_IN","name":"Loretta & Mooney's child","type":"Role","_key":"110006","_from":"65004","_to":"64997"} +{"$label":"ACTS_IN","name":"Webb child","type":"Role","_key":"110004","_from":"65003","_to":"64997"} +{"$label":"ACTS_IN","name":"Webb child","type":"Role","_key":"110003","_from":"65002","_to":"64997"} +{"$label":"ACTS_IN","name":"Webb child","type":"Role","_key":"110002","_from":"65001","_to":"64997"} +{"$label":"ACTS_IN","name":"Webb child","type":"Role","_key":"110001","_from":"65000","_to":"64997"} +{"$label":"ACTS_IN","name":"Webb child","type":"Role","_key":"110000","_from":"64999","_to":"64997"} +{"$label":"ACTS_IN","name":"'Clary' Webb","type":"Role","_key":"109999","_from":"64998","_to":"64997"} +{"$label":"DIRECTED","_key":"110014","_from":"65009","_to":"65008"} +{"$label":"ACTS_IN","name":"Reverend","type":"Role","_key":"110058","_from":"65035","_to":"65011"} +{"$label":"ACTS_IN","name":"Singer \/ Reverend","type":"Role","_key":"110057","_from":"65034","_to":"65011"} +{"$label":"ACTS_IN","name":"Man on the Bus","type":"Role","_key":"110056","_from":"65033","_to":"65011"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"110055","_from":"65032","_to":"65011"} +{"$label":"ACTS_IN","name":"Young Man at Reunion","type":"Role","_key":"110054","_from":"65031","_to":"65011"} +{"$label":"ACTS_IN","name":"Female at Reunion","type":"Role","_key":"110053","_from":"65030","_to":"65011"} +{"$label":"ACTS_IN","name":"Poet \/ MC","type":"Role","_key":"110052","_from":"65029","_to":"65011"} +{"$label":"ACTS_IN","name":"Miss Samuel","type":"Role","_key":"110051","_from":"65028","_to":"65011"} +{"$label":"ACTS_IN","name":"Hykeem","type":"Role","_key":"110050","_from":"65027","_to":"65011"} +{"$label":"ACTS_IN","name":"Tyrequa","type":"Role","_key":"110049","_from":"65026","_to":"65011"} +{"$label":"ACTS_IN","name":"Carlos' Man Friend","type":"Role","_key":"110048","_from":"65025","_to":"65011"} +{"$label":"ACTS_IN","name":"Carlos' Woman Friend","type":"Role","_key":"110047","_from":"65024","_to":"65011"} +{"$label":"ACTS_IN","name":"Kid #1","type":"Role","_key":"110046","_from":"65023","_to":"65011"} +{"$label":"ACTS_IN","name":"Bailiff #1","type":"Role","_key":"110045","_from":"65022","_to":"65011"} +{"$label":"ACTS_IN","name":"Judge Ephriam","type":"Role","_key":"110044","_from":"65021","_to":"65011"} +{"$label":"ACTS_IN","name":"Stripper Policeman","type":"Role","_key":"110043","_from":"65020","_to":"65011"} +{"$label":"ACTS_IN","name":"Uncle Pete","type":"Role","_key":"110041","_from":"65019","_to":"65011"} +{"$label":"ACTS_IN","name":"Grover","type":"Role","_key":"110040","_from":"65018","_to":"65011"} +{"$label":"ACTS_IN","name":"Ruby","type":"Role","_key":"110038","_from":"65017","_to":"65011"} +{"$label":"ACTS_IN","name":"Tre","type":"Role","_key":"110037","_from":"65016","_to":"65011"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"110036","_from":"65015","_to":"65011"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"110031","_from":"65014","_to":"65011"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"110029","_from":"65013","_to":"65011"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"110027","_from":"65012","_to":"65011"} +{"$label":"ACTS_IN","name":"Emily Woodrow","type":"Role","_key":"119544","_from":"65014","_to":"70225"} +{"$label":"DIRECTED","_key":"110069","_from":"65039","_to":"65036"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110066","_from":"65042","_to":"65036"} +{"$label":"ACTS_IN","name":"Steve \"Aiwass\" Trouzdale","type":"Role","_key":"110065","_from":"65041","_to":"65036"} +{"$label":"ACTS_IN","name":"Oz George","type":"Role","_key":"110064","_from":"65040","_to":"65036"} +{"$label":"ACTS_IN","name":"Lapland 'Lapdog' Miclovich","type":"Role","_key":"110063","_from":"65039","_to":"65036"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"110062","_from":"65038","_to":"65036"} +{"$label":"ACTS_IN","name":"The Cube","type":"Role","_key":"110061","_from":"65037","_to":"65036"} +{"$label":"ACTS_IN","name":"Spirit of Japanese Soldier","type":"Role","_key":"110078","_from":"65049","_to":"65044"} +{"$label":"ACTS_IN","name":"Hitomi","type":"Role","_key":"110077","_from":"65048","_to":"65044"} +{"$label":"ACTS_IN","name":"Hayakawa","type":"Role","_key":"110076","_from":"65047","_to":"65044"} +{"$label":"ACTS_IN","name":"Yuri","type":"Role","_key":"110075","_from":"65046","_to":"65044"} +{"$label":"DIRECTED","_key":"110074","_from":"65045","_to":"65044"} +{"$label":"ACTS_IN","name":"Dr X","type":"Role","_key":"110080","_from":"65051","_to":"65050"} +{"$label":"ACTS_IN","name":"Dr X","type":"Role","_key":"110082","_from":"65053","_to":"65052"} +{"$label":"ACTS_IN","name":"Anthea","type":"Role","_key":"110091","_from":"65056","_to":"65055"} +{"$label":"ACTS_IN","name":"Tiffany, The Waitress","type":"Role","_key":"110101","_from":"65060","_to":"65058"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"110098","_from":"65059","_to":"65058"} +{"$label":"DIRECTED","_key":"110106","_from":"65065","_to":"65061"} +{"$label":"ACTS_IN","name":"\u03a3\u03bf\u03c6\u03af\u03b1","type":"Role","_key":"110105","_from":"65064","_to":"65061"} +{"$label":"ACTS_IN","name":"\u03a0\u03b1\u03c3\u03c7\u03ac\u03bb\u03b7\u03c2","type":"Role","_key":"110104","_from":"65063","_to":"65061"} +{"$label":"ACTS_IN","name":"\u0396\u03c9\u03ae","type":"Role","_key":"110103","_from":"65062","_to":"65061"} +{"$label":"ACTS_IN","name":"Shokichi Hirata","type":"Role","_key":"110113","_from":"65069","_to":"65066"} +{"$label":"ACTS_IN","name":"Yuriko Kamimura","type":"Role","_key":"110112","_from":"65068","_to":"65066"} +{"$label":"ACTS_IN","name":"Daigo Kobayashi","type":"Role","_key":"110108","_from":"65067","_to":"65066"} +{"$label":"ACTS_IN","name":"Danny Vermin","type":"Role","_key":"110118","_from":"65071","_to":"65070"} +{"$label":"ACTS_IN","name":"Mike Brandon, NYPD","type":"Role","_key":"110129","_from":"65076","_to":"65075"} +{"$label":"ACTS_IN","name":"Eric Naiburg","type":"Role","_key":"121090","_from":"65076","_to":"71113"} +{"$label":"ACTS_IN","name":"Kurt Baumer","type":"Role","_key":"110144","_from":"65085","_to":"65080"} +{"$label":"ACTS_IN","name":"George Barnett","type":"Role","_key":"110143","_from":"65084","_to":"65080"} +{"$label":"ACTS_IN","name":"Stewardess","type":"Role","_key":"110142","_from":"65083","_to":"65080"} +{"$label":"ACTS_IN","name":"Cl\u00e9o Dupont","type":"Role","_key":"110135","_from":"65082","_to":"65080"} +{"$label":"ACTS_IN","name":"Peter Lynch","type":"Role","_key":"110134","_from":"65081","_to":"65080"} +{"$label":"DIRECTED","_key":"110146","_from":"65088","_to":"65087"} +{"$label":"ACTS_IN","name":"Tommy Hines","type":"Role","_key":"110161","_from":"65100","_to":"65091"} +{"$label":"ACTS_IN","name":"Heather","type":"Role","_key":"110160","_from":"65099","_to":"65091"} +{"$label":"ACTS_IN","name":"Muscle-Boy","type":"Role","_key":"110159","_from":"65098","_to":"65091"} +{"$label":"ACTS_IN","name":"Lord Astroth","type":"Role","_key":"110156","_from":"65097","_to":"65091"} +{"$label":"ACTS_IN","name":"Gingerdead Man \/ Makeup Effects Guy #4","type":"Role","_key":"110153","_from":"65096","_to":"65091"} +{"$label":"ACTS_IN","name":"Marty","type":"Role","_key":"110151","_from":"65095","_to":"65091"} +{"$label":"ACTS_IN","name":"Kelvin","type":"Role","_key":"110150","_from":"65094","_to":"65091"} +{"$label":"DIRECTED","_key":"110148","_from":"65093","_to":"65091"} +{"$label":"DIRECTED","_key":"110147","_from":"65092","_to":"65091"} +{"$label":"DIRECTED","_key":"110177","_from":"65113","_to":"65101"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"110175","_from":"65112","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110174","_from":"65111","_to":"65101"} +{"$label":"ACTS_IN","name":"herself","type":"Role","_key":"110172","_from":"65110","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110171","_from":"65109","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110170","_from":"65108","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110169","_from":"65107","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110167","_from":"65106","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110166","_from":"65105","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110165","_from":"65104","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110164","_from":"65103","_to":"65101"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"110163","_from":"65102","_to":"65101"} +{"$label":"DIRECTED","_key":"110181","_from":"65117","_to":"65114"} +{"$label":"ACTS_IN","name":"Yulia","type":"Role","_key":"110180","_from":"65116","_to":"65114"} +{"$label":"ACTS_IN","name":"Rami","type":"Role","_key":"110179","_from":"65115","_to":"65114"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113342","_from":"65115","_to":"66766"} +{"$label":"ACTS_IN","name":"Gretchen Stein","type":"Role","_key":"116513","_from":"65116","_to":"68578"} +{"$label":"ACTS_IN","name":"Reika Akiyama (voice)","type":"Role","_key":"110193","_from":"65126","_to":"65119"} +{"$label":"ACTS_IN","name":"Saki's Mother","type":"Role","_key":"110192","_from":"65125","_to":"65119"} +{"$label":"ACTS_IN","name":"Tae Konno","type":"Role","_key":"110191","_from":"65124","_to":"65119"} +{"$label":"ACTS_IN","name":"Kotomi Kanda","type":"Role","_key":"110190","_from":"65123","_to":"65119"} +{"$label":"ACTS_IN","name":"Reika Akiyama","type":"Role","_key":"110189","_from":"65122","_to":"65119"} +{"$label":"ACTS_IN","name":"Saki Asamiya","type":"Role","_key":"110188","_from":"65121","_to":"65119"} +{"$label":"DIRECTED","_key":"110187","_from":"65120","_to":"65119"} +{"$label":"DIRECTED","_key":"110200","_from":"65133","_to":"65127"} +{"$label":"ACTS_IN","name":"(as Gottsk\u00e1lk D. Sigurdarson)","type":"Role","_key":"110198","_from":"65132","_to":"65127"} +{"$label":"ACTS_IN","name":"Thor's Brother","type":"Role","_key":"110197","_from":"65131","_to":"65127"} +{"$label":"ACTS_IN","name":"Gest","type":"Role","_key":"110196","_from":"65130","_to":"65127"} +{"$label":"ACTS_IN","name":"Erik","type":"Role","_key":"110195","_from":"65129","_to":"65127"} +{"$label":"ACTS_IN","name":"Gest's Sister","type":"Role","_key":"110194","_from":"65128","_to":"65127"} +{"$label":"ACTS_IN","name":"Hjoerleifur","type":"Role","_key":"110204","_from":"65131","_to":"65134"} +{"$label":"DIRECTED","_key":"110201","_from":"65133","_to":"65134"} +{"$label":"ACTS_IN","name":"Bishop","type":"Role","_key":"110205","_from":"65136","_to":"65134"} +{"$label":"ACTS_IN","name":"Isold","type":"Role","_key":"110203","_from":"65135","_to":"65134"} +{"$label":"ACTS_IN","name":"Gabriel Lejonhufvud","type":"Role","_key":"110211","_from":"65140","_to":"65137"} +{"$label":"DIRECTED","_key":"110208","_from":"65139","_to":"65137"} +{"$label":"DIRECTED","_key":"110207","_from":"65138","_to":"65137"} +{"$label":"ACTS_IN","name":"Kate Jagger","type":"Role","_key":"110222","_from":"65146","_to":"65144"} +{"$label":"ACTS_IN","name":"Audrey Paris","type":"Role","_key":"110221","_from":"65145","_to":"65144"} +{"$label":"DIRECTED","_key":"110229","_from":"65150","_to":"65148"} +{"$label":"DIRECTED","_key":"110228","_from":"65149","_to":"65148"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"110233","_from":"65155","_to":"65151"} +{"$label":"ACTS_IN","name":"Satchem","type":"Role","_key":"110232","_from":"65154","_to":"65151"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"110231","_from":"65153","_to":"65151"} +{"$label":"DIRECTED","_key":"110230","_from":"65152","_to":"65151"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121527","_from":"65153","_to":"71398"} +{"$label":"DIRECTED","_key":"110234","_from":"65157","_to":"65156"} +{"$label":"DIRECTED","_key":"110235","_from":"65159","_to":"65158"} +{"$label":"DIRECTED","_key":"110236","_from":"65159","_to":"65160"} +{"$label":"DIRECTED","_key":"110243","_from":"65162","_to":"65161"} +{"$label":"ACTS_IN","name":"Blackberry John","type":"Role","_key":"110258","_from":"65169","_to":"65163"} +{"$label":"ACTS_IN","name":"Ma","type":"Role","_key":"110256","_from":"65168","_to":"65163"} +{"$label":"ACTS_IN","name":"Pa","type":"Role","_key":"110255","_from":"65167","_to":"65163"} +{"$label":"ACTS_IN","name":"Judge's Daughter","type":"Role","_key":"110254","_from":"65166","_to":"65163"} +{"$label":"ACTS_IN","name":"Mrs. Feeney","type":"Role","_key":"110253","_from":"65165","_to":"65163"} +{"$label":"ACTS_IN","name":"Young Donnie","type":"Role","_key":"110249","_from":"65164","_to":"65163"} +{"$label":"ACTS_IN","name":"Adolf Hitler","type":"Role","_key":"110288","_from":"65176","_to":"65170"} +{"$label":"ACTS_IN","name":"Gefreiter Butz","type":"Role","_key":"110285","_from":"65175","_to":"65170"} +{"$label":"ACTS_IN","name":"Perrier LaPadite","type":"Role","_key":"110278","_from":"65174","_to":"65170"} +{"$label":"ACTS_IN","name":"Simon Sakowitz","type":"Role","_key":"110276","_from":"65173","_to":"65170"} +{"$label":"ACTS_IN","name":"Andy Kagan","type":"Role","_key":"110274","_from":"65172","_to":"65170"} +{"$label":"ACTS_IN","name":"Smithson Utivich","type":"Role","_key":"110270","_from":"65171","_to":"65170"} +{"$label":"ACTS_IN","name":"Denis Cooverman","type":"Role","_key":"121289","_from":"65172","_to":"71261"} +{"$label":"ACTS_IN","name":"Serveur","type":"Role","_key":"110806","_from":"65174","_to":"65443"} +{"$label":"ACTS_IN","name":"Milos","type":"Role","_key":"110301","_from":"65179","_to":"65177"} +{"$label":"ACTS_IN","name":"Mrs. Ganush","type":"Role","_key":"110293","_from":"65178","_to":"65177"} +{"$label":"DIRECTED","_key":"110308","_from":"65181","_to":"65180"} +{"$label":"DIRECTED","_key":"110320","_from":"65190","_to":"65182"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110318","_from":"65189","_to":"65182"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"110317","_from":"65188","_to":"65182"} +{"$label":"ACTS_IN","name":"Domenic","type":"Role","_key":"110315","_from":"65187","_to":"65182"} +{"$label":"ACTS_IN","name":"Raelene Beagle-Thorpe","type":"Role","_key":"110313","_from":"65186","_to":"65182"} +{"$label":"ACTS_IN","name":"Annie O'Brien","type":"Role","_key":"110312","_from":"65185","_to":"65182"} +{"$label":"ACTS_IN","name":"Celia O'Brien","type":"Role","_key":"110310","_from":"65184","_to":"65182"} +{"$label":"ACTS_IN","name":"Steve Karamitsis \/ Mr. Karamitsis \/ Mrs. Karamitsis","type":"Role","_key":"110309","_from":"65183","_to":"65182"} +{"$label":"DIRECTED","_key":"110325","_from":"65195","_to":"65191"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110324","_from":"65194","_to":"65191"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110323","_from":"65193","_to":"65191"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110321","_from":"65192","_to":"65191"} +{"$label":"ACTS_IN","name":"Ellie Milford","type":"Role","_key":"110330","_from":"65198","_to":"65196"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"110329","_from":"65197","_to":"65196"} +{"$label":"ACTS_IN","name":"Engel","type":"Role","_key":"110341","_from":"65201","_to":"65199"} +{"$label":"ACTS_IN","name":"Victoria Sinclair","type":"Role","_key":"110333","_from":"65200","_to":"65199"} +{"$label":"ACTS_IN","name":"Dana","type":"Role","_key":"115536","_from":"65200","_to":"68014"} +{"$label":"DIRECTED","_key":"110348","_from":"65205","_to":"65202"} +{"$label":"ACTS_IN","name":"ASHLEY ELLIS","type":"Role","_key":"110347","_from":"65204","_to":"65202"} +{"$label":"ACTS_IN","name":"REVEREND DANNY CHRISTOPHER","type":"Role","_key":"110344","_from":"65203","_to":"65202"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"110351","_from":"65209","_to":"65207"} +{"$label":"ACTS_IN","name":"Corporal Jin-won Kang","type":"Role","_key":"110350","_from":"65208","_to":"65207"} +{"$label":"DIRECTED","_key":"110361","_from":"65213","_to":"65212"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110363","_from":"65215","_to":"65214"} +{"$label":"ACTS_IN","name":"Cheryl","type":"Role","_key":"110372","_from":"65218","_to":"65216"} +{"$label":"ACTS_IN","name":"Julie Simmons","type":"Role","_key":"110366","_from":"65217","_to":"65216"} +{"$label":"DIRECTED","_key":"110376","_from":"65221","_to":"65220"} +{"$label":"DIRECTED","_key":"110383","_from":"65224","_to":"65223"} +{"$label":"ACTS_IN","name":"Hilda Whittaker","type":"Role","_key":"110389","_from":"65226","_to":"65225"} +{"$label":"DIRECTED","_key":"110393","_from":"65229","_to":"65227"} +{"$label":"DIRECTED","_key":"110392","_from":"65228","_to":"65227"} +{"$label":"ACTS_IN","name":"Lt. Jim Pendergast","type":"Role","_key":"110407","_from":"65233","_to":"65230"} +{"$label":"ACTS_IN","name":"Elizabeth Moore","type":"Role","_key":"110404","_from":"65232","_to":"65230"} +{"$label":"ACTS_IN","name":"Margaret Truman","type":"Role","_key":"110403","_from":"65231","_to":"65230"} +{"$label":"ACTS_IN","name":"King James","type":"Role","_key":"110451","_from":"65254","_to":"65236"} +{"$label":"ACTS_IN","name":"Slave","type":"Role","_key":"110450","_from":"65253","_to":"65236"} +{"$label":"ACTS_IN","name":"Mrs. Baynes","type":"Role","_key":"110449","_from":"65252","_to":"65236"} +{"$label":"ACTS_IN","name":"Lord Chester Dyke","type":"Role","_key":"110448","_from":"65251","_to":"65236"} +{"$label":"ACTS_IN","name":"Clerk of the Court","type":"Role","_key":"110447","_from":"65250","_to":"65236"} +{"$label":"ACTS_IN","name":"Mrs. Steed","type":"Role","_key":"110446","_from":"65249","_to":"65236"} +{"$label":"ACTS_IN","name":"Lord Gildoy","type":"Role","_key":"110445","_from":"65248","_to":"65236"} +{"$label":"ACTS_IN","name":"Capt. Hobart","type":"Role","_key":"110444","_from":"65247","_to":"65236"} +{"$label":"ACTS_IN","name":"Prosecutor","type":"Role","_key":"110443","_from":"65246","_to":"65236"} +{"$label":"ACTS_IN","name":"Baron Jeffreys","type":"Role","_key":"110442","_from":"65245","_to":"65236"} +{"$label":"ACTS_IN","name":"Governor Steed","type":"Role","_key":"110440","_from":"65244","_to":"65236"} +{"$label":"ACTS_IN","name":"Don Diego","type":"Role","_key":"110439","_from":"65243","_to":"65236"} +{"$label":"ACTS_IN","name":"Rev. Ogle","type":"Role","_key":"110435","_from":"65242","_to":"65236"} +{"$label":"ACTS_IN","name":"Dr. Bronson","type":"Role","_key":"110431","_from":"65241","_to":"65236"} +{"$label":"ACTS_IN","name":"Wolverstone","type":"Role","_key":"110430","_from":"65240","_to":"65236"} +{"$label":"ACTS_IN","name":"Lord Willoughby","type":"Role","_key":"110429","_from":"65239","_to":"65236"} +{"$label":"ACTS_IN","name":"Jeremy Pitt","type":"Role","_key":"110427","_from":"65238","_to":"65236"} +{"$label":"ACTS_IN","name":"Col. Bishop","type":"Role","_key":"110426","_from":"65237","_to":"65236"} +{"$label":"ACTS_IN","name":"Sir Ronald Ramsgate","type":"Role","_key":"112385","_from":"65239","_to":"66350"} +{"$label":"ACTS_IN","name":"Lady Conyngham","type":"Role","_key":"112391","_from":"65249","_to":"66350"} +{"$label":"ACTS_IN","name":"Sakura Haruno","type":"Role","_key":"110454","_from":"65257","_to":"65255"} +{"$label":"ACTS_IN","name":"Naruto Uzumaki","type":"Role","_key":"110453","_from":"65256","_to":"65255"} +{"$label":"ACTS_IN","name":"Naruto Uzumaki","type":"Role","_key":"117792","_from":"65256","_to":"69239"} +{"$label":"ACTS_IN","name":"Naruto Uzumaki","type":"Role","_key":"113243","_from":"65256","_to":"66722"} +{"$label":"ACTS_IN","name":"Naruto Uzumaki","type":"Role","_key":"110463","_from":"65256","_to":"65262"} +{"$label":"ACTS_IN","name":"Sakura Haruno","type":"Role","_key":"117793","_from":"65257","_to":"69239"} +{"$label":"ACTS_IN","name":"Sakura Haruno","type":"Role","_key":"113245","_from":"65257","_to":"66722"} +{"$label":"ACTS_IN","name":"Sakura Haruno","type":"Role","_key":"110464","_from":"65257","_to":"65262"} +{"$label":"ACTS_IN","name":"Barbie","type":"Role","_key":"110461","_from":"65261","_to":"65258"} +{"$label":"ACTS_IN","name":"Miauv","type":"Role","_key":"110459","_from":"65260","_to":"65258"} +{"$label":"ACTS_IN","name":"J.B.","type":"Role","_key":"110458","_from":"65259","_to":"65258"} +{"$label":"ACTS_IN","name":"Gaara of The Desert","type":"Role","_key":"110466","_from":"65264","_to":"65262"} +{"$label":"ACTS_IN","name":"Temujin","type":"Role","_key":"110465","_from":"65263","_to":"65262"} +{"$label":"ACTS_IN","name":"Soujirou Kusaka","type":"Role","_key":"111127","_from":"65264","_to":"65636"} +{"$label":"ACTS_IN","name":"Prosecutor's secretary","type":"Role","_key":"110478","_from":"65274","_to":"65265"} +{"$label":"ACTS_IN","name":"Papa","type":"Role","_key":"110477","_from":"65273","_to":"65265"} +{"$label":"ACTS_IN","name":"Nolle Renadu","type":"Role","_key":"110476","_from":"65272","_to":"65265"} +{"$label":"ACTS_IN","name":"Ordi Tader","type":"Role","_key":"110475","_from":"65271","_to":"65265"} +{"$label":"ACTS_IN","name":"Rittmeister Chachu","type":"Role","_key":"110474","_from":"65270","_to":"65265"} +{"$label":"ACTS_IN","name":"Fank","type":"Role","_key":"110473","_from":"65269","_to":"65265"} +{"$label":"ACTS_IN","name":"Rada Gaal","type":"Role","_key":"110470","_from":"65268","_to":"65265"} +{"$label":"ACTS_IN","name":"Guy Gaal","type":"Role","_key":"110469","_from":"65267","_to":"65265"} +{"$label":"ACTS_IN","name":"Maxim Kammerer","type":"Role","_key":"110468","_from":"65266","_to":"65265"} +{"$label":"ACTS_IN","name":"Maxim","type":"Role","_key":"114963","_from":"65266","_to":"67708"} +{"$label":"ACTS_IN","name":"Gai","type":"Role","_key":"114962","_from":"65267","_to":"67708"} +{"$label":"ACTS_IN","name":"Rada Gaal","type":"Role","_key":"114964","_from":"65268","_to":"67708"} +{"$label":"ACTS_IN","name":"Funk","type":"Role","_key":"114966","_from":"65269","_to":"67708"} +{"$label":"ACTS_IN","name":"captain of cavalry cha-chu","type":"Role","_key":"114965","_from":"65270","_to":"67708"} +{"$label":"ACTS_IN","name":"Nolle Renadu","type":"Role","_key":"114960","_from":"65272","_to":"67708"} +{"$label":"ACTS_IN","name":"'Mac' McGill","type":"Role","_key":"110484","_from":"65276","_to":"65275"} +{"$label":"DIRECTED","_key":"110487","_from":"65278","_to":"65277"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"110500","_from":"65286","_to":"65279"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"110499","_from":"65285","_to":"65279"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"110498","_from":"65284","_to":"65279"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"110497","_from":"65283","_to":"65279"} +{"$label":"ACTS_IN","name":"Jamie","type":"Role","_key":"110496","_from":"65282","_to":"65279"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"110495","_from":"65281","_to":"65279"} +{"$label":"DIRECTED","_key":"110493","_from":"65280","_to":"65279"} +{"$label":"DIRECTED","_key":"110504","_from":"65290","_to":"65287"} +{"$label":"ACTS_IN","name":"El Tenso Polsky","type":"Role","_key":"110503","_from":"65289","_to":"65287"} +{"$label":"ACTS_IN","name":"El Cuervo Flores","type":"Role","_key":"110502","_from":"65288","_to":"65287"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110506","_from":"65292","_to":"65291"} +{"$label":"DIRECTED","_key":"110505","_from":"65292","_to":"65291"} +{"$label":"DIRECTED","_key":"118723","_from":"65292","_to":"69803"} +{"$label":"ACTS_IN","name":"Lisette","type":"Role","_key":"110519","_from":"65301","_to":"65293"} +{"$label":"ACTS_IN","name":"Gretchen","type":"Role","_key":"110518","_from":"65300","_to":"65293"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"110517","_from":"65299","_to":"65293"} +{"$label":"ACTS_IN","name":"Man Under Car","type":"Role","_key":"110516","_from":"65298","_to":"65293"} +{"$label":"ACTS_IN","name":"Dmitriy","type":"Role","_key":"110515","_from":"65297","_to":"65293"} +{"$label":"ACTS_IN","name":"Clare","type":"Role","_key":"110513","_from":"65296","_to":"65293"} +{"$label":"ACTS_IN","name":"Bobby","type":"Role","_key":"110512","_from":"65295","_to":"65293"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"110508","_from":"65294","_to":"65293"} +{"$label":"ACTS_IN","name":"Ingraine","type":"Role","_key":"110529","_from":"65310","_to":"65303"} +{"$label":"ACTS_IN","name":"Lady Viviane","type":"Role","_key":"110528","_from":"65309","_to":"65303"} +{"$label":"ACTS_IN","name":"King Vortigen","type":"Role","_key":"110526","_from":"65308","_to":"65303"} +{"$label":"ACTS_IN","name":"Merlin","type":"Role","_key":"110525","_from":"65307","_to":"65303"} +{"$label":"ACTS_IN","name":"Gwyneth","type":"Role","_key":"110524","_from":"65306","_to":"65303"} +{"$label":"ACTS_IN","name":"Lady Nimue","type":"Role","_key":"110523","_from":"65305","_to":"65303"} +{"$label":"DIRECTED","_key":"110522","_from":"65304","_to":"65303"} +{"$label":"DIRECTED","_key":"110543","_from":"65316","_to":"65312"} +{"$label":"ACTS_IN","name":"Sheriff Logan","type":"Role","_key":"110539","_from":"65315","_to":"65312"} +{"$label":"ACTS_IN","name":"James","type":"Role","_key":"110538","_from":"65314","_to":"65312"} +{"$label":"ACTS_IN","name":"Woman","type":"Role","_key":"110536","_from":"65313","_to":"65312"} +{"$label":"DIRECTED","_key":"110550","_from":"65321","_to":"65319"} +{"$label":"ACTS_IN","name":"Abel Brock","type":"Role","_key":"110548","_from":"65320","_to":"65319"} +{"$label":"ACTS_IN","name":"Kimi","type":"Role","_key":"110556","_from":"65326","_to":"65323"} +{"$label":"ACTS_IN","name":"x","type":"Role","_key":"110555","_from":"65325","_to":"65323"} +{"$label":"ACTS_IN","name":"Kelsey","type":"Role","_key":"110552","_from":"65324","_to":"65323"} +{"$label":"ACTS_IN","name":"Blanche Grimaldi","type":"Role","_key":"110559","_from":"65328","_to":"65327"} +{"$label":"ACTS_IN","name":"Romaine","type":"Role","_key":"112175","_from":"65328","_to":"66245"} +{"$label":"ACTS_IN","name":"Pearl Fabrini","type":"Role","_key":"110567","_from":"65330","_to":"65329"} +{"$label":"ACTS_IN","name":"Nurse Randolph","type":"Role","_key":"114208","_from":"65330","_to":"67273"} +{"$label":"ACTS_IN","name":"Aunty Panty","type":"Role","_key":"110585","_from":"65340","_to":"65331"} +{"$label":"ACTS_IN","name":"Dickie Boone","type":"Role","_key":"110583","_from":"65339","_to":"65331"} +{"$label":"ACTS_IN","name":"Mick","type":"Role","_key":"110582","_from":"65338","_to":"65331"} +{"$label":"ACTS_IN","name":"Mr. Dexter","type":"Role","_key":"110581","_from":"65337","_to":"65331"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"110580","_from":"65336","_to":"65331"} +{"$label":"ACTS_IN","name":"Mrs. Goez","type":"Role","_key":"110577","_from":"65335","_to":"65331"} +{"$label":"ACTS_IN","name":"Mr. Goez","type":"Role","_key":"110576","_from":"65334","_to":"65331"} +{"$label":"ACTS_IN","name":"Young Graham","type":"Role","_key":"110572","_from":"65333","_to":"65331"} +{"$label":"DIRECTED","_key":"110571","_from":"65332","_to":"65331"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"110602","_from":"65348","_to":"65341"} +{"$label":"ACTS_IN","name":"Laughing Detective","type":"Role","_key":"110601","_from":"65347","_to":"65341"} +{"$label":"ACTS_IN","name":"Mrs. Quaife","type":"Role","_key":"110600","_from":"65346","_to":"65341"} +{"$label":"ACTS_IN","name":"Patrick Cornell","type":"Role","_key":"110598","_from":"65345","_to":"65341"} +{"$label":"ACTS_IN","name":"Clare Harrison","type":"Role","_key":"110597","_from":"65344","_to":"65341"} +{"$label":"ACTS_IN","name":"Mr. Harrison","type":"Role","_key":"110594","_from":"65343","_to":"65341"} +{"$label":"ACTS_IN","name":"Mrs. 'Mac' MacHenry","type":"Role","_key":"110592","_from":"65342","_to":"65341"} +{"$label":"DIRECTED","_key":"110605","_from":"65351","_to":"65349"} +{"$label":"ACTS_IN","name":"Sheila Rockingham","type":"Role","_key":"110604","_from":"65350","_to":"65349"} +{"$label":"ACTS_IN","name":"Dr. Swanson","type":"Role","_key":"110628","_from":"65359","_to":"65354"} +{"$label":"ACTS_IN","name":"May Emmerich","type":"Role","_key":"110626","_from":"65358","_to":"65354"} +{"$label":"ACTS_IN","name":"Timmons (as William Davis)","type":"Role","_key":"110625","_from":"65357","_to":"65354"} +{"$label":"ACTS_IN","name":"Maria Ciavelli","type":"Role","_key":"110624","_from":"65356","_to":"65354"} +{"$label":"ACTS_IN","name":"Lt. Ditrich","type":"Role","_key":"110622","_from":"65355","_to":"65354"} +{"$label":"ACTS_IN","name":"Sunburst (voice)","type":"Role","_key":"110631","_from":"65361","_to":"65360"} +{"$label":"ACTS_IN","name":"Lumpy","type":"Role","_key":"110640","_from":"65365","_to":"65362"} +{"$label":"ACTS_IN","name":"Roo","type":"Role","_key":"110639","_from":"65364","_to":"65362"} +{"$label":"ACTS_IN","name":"Piglet","type":"Role","_key":"110638","_from":"65363","_to":"65362"} +{"$label":"DIRECTED","_key":"110649","_from":"65368","_to":"65367"} +{"$label":"ACTS_IN","name":"Counter Girl","type":"Role","_key":"110662","_from":"65372","_to":"65370"} +{"$label":"DIRECTED","_key":"110654","_from":"65371","_to":"65370"} +{"$label":"ACTS_IN","name":"Maggie Moreno","type":"Role","_key":"119567","_from":"65372","_to":"70235"} +{"$label":"ACTS_IN","name":"Torakichi","type":"Role","_key":"110664","_from":"65375","_to":"65373"} +{"$label":"DIRECTED","_key":"110663","_from":"65374","_to":"65373"} +{"$label":"ACTS_IN","name":"Shusuke Tokunaga","type":"Role","_key":"117621","_from":"65375","_to":"69144"} +{"$label":"ACTS_IN","name":"Mikul\u00edk","type":"Role","_key":"110672","_from":"65378","_to":"65376"} +{"$label":"ACTS_IN","name":"Jitka","type":"Role","_key":"110671","_from":"65377","_to":"65376"} +{"$label":"ACTS_IN","name":"Mrs. Lorna Ball","type":"Role","_key":"110690","_from":"65391","_to":"65381"} +{"$label":"ACTS_IN","name":"Ron","type":"Role","_key":"110689","_from":"65390","_to":"65381"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"110688","_from":"65389","_to":"65381"} +{"$label":"ACTS_IN","name":"Gordon","type":"Role","_key":"110687","_from":"65388","_to":"65381"} +{"$label":"ACTS_IN","name":"Frank Fletcher","type":"Role","_key":"110686","_from":"65387","_to":"65381"} +{"$label":"ACTS_IN","name":"Cheryl Ball","type":"Role","_key":"110682","_from":"65386","_to":"65381"} +{"$label":"ACTS_IN","name":"Jerry Finn","type":"Role","_key":"110681","_from":"65385","_to":"65381"} +{"$label":"ACTS_IN","name":"Robert, Carey's Father","type":"Role","_key":"110680","_from":"65384","_to":"65381"} +{"$label":"ACTS_IN","name":"Mr. Ball","type":"Role","_key":"110679","_from":"65383","_to":"65381"} +{"$label":"ACTS_IN","name":"Carey","type":"Role","_key":"110678","_from":"65382","_to":"65381"} +{"$label":"DIRECTED","_key":"110695","_from":"65395","_to":"65392"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110694","_from":"65394","_to":"65392"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"110693","_from":"65393","_to":"65392"} +{"$label":"DIRECTED","_key":"115275","_from":"65395","_to":"67877"} +{"$label":"DIRECTED","_key":"110697","_from":"65395","_to":"65396"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"110701","_from":"65400","_to":"65397"} +{"$label":"ACTS_IN","name":"Izzy Woods","type":"Role","_key":"110699","_from":"65399","_to":"65397"} +{"$label":"ACTS_IN","name":"Annie Woods","type":"Role","_key":"110698","_from":"65398","_to":"65397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110709","_from":"65405","_to":"65401"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110707","_from":"65404","_to":"65401"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"110706","_from":"65403","_to":"65401"} +{"$label":"ACTS_IN","name":"Himself (archive footage)","type":"Role","_key":"110704","_from":"65402","_to":"65401"} +{"$label":"ACTS_IN","name":"Neeta","type":"Role","_key":"110716","_from":"65409","_to":"65406"} +{"$label":"ACTS_IN","name":"Inspector Shinde","type":"Role","_key":"110715","_from":"65408","_to":"65406"} +{"$label":"ACTS_IN","name":"Inspector Kadam","type":"Role","_key":"110714","_from":"65407","_to":"65406"} +{"$label":"DIRECTED","_key":"110717","_from":"65412","_to":"65411"} +{"$label":"ACTS_IN","name":"Folken","type":"Role","_key":"110744","_from":"65425","_to":"65413"} +{"$label":"ACTS_IN","name":"Gaddes","type":"Role","_key":"110741","_from":"65424","_to":"65413"} +{"$label":"ACTS_IN","name":"Nukushi","type":"Role","_key":"110740","_from":"65423","_to":"65413"} +{"$label":"ACTS_IN","name":"Merle","type":"Role","_key":"110738","_from":"65422","_to":"65413"} +{"$label":"ACTS_IN","name":"Sora","type":"Role","_key":"110734","_from":"65421","_to":"65413"} +{"$label":"ACTS_IN","name":"Van","type":"Role","_key":"110728","_from":"65420","_to":"65413"} +{"$label":"ACTS_IN","name":"Allen","type":"Role","_key":"110725","_from":"65419","_to":"65413"} +{"$label":"ACTS_IN","name":"Jajuka","type":"Role","_key":"110724","_from":"65418","_to":"65413"} +{"$label":"ACTS_IN","name":"Dilandau","type":"Role","_key":"110723","_from":"65417","_to":"65413"} +{"$label":"ACTS_IN","name":"Van","type":"Role","_key":"110721","_from":"65416","_to":"65413"} +{"$label":"DIRECTED","_key":"110719","_from":"65415","_to":"65413"} +{"$label":"DIRECTED","_key":"110718","_from":"65414","_to":"65413"} +{"$label":"ACTS_IN","name":"Shirou Kamui","type":"Role","_key":"111096","_from":"65416","_to":"65622"} +{"$label":"ACTS_IN","name":"Shiyu Kusanagi","type":"Role","_key":"111109","_from":"65425","_to":"65622"} +{"$label":"ACTS_IN","name":"Saddamn","type":"Role","_key":"110752","_from":"65428","_to":"65426"} +{"$label":"ACTS_IN","name":"Nell","type":"Role","_key":"110750","_from":"65427","_to":"65426"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110765","_from":"65434","_to":"65431"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110764","_from":"65433","_to":"65431"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110763","_from":"65432","_to":"65431"} +{"$label":"ACTS_IN","name":"Mandi Brokaw","type":"Role","_key":"110781","_from":"65437","_to":"65435"} +{"$label":"ACTS_IN","name":"Robert Bingham","type":"Role","_key":"110774","_from":"65436","_to":"65435"} +{"$label":"ACTS_IN","name":"Alex O'Donnell","type":"Role","_key":"110788","_from":"65439","_to":"65438"} +{"$label":"DIRECTED","_key":"110795","_from":"65442","_to":"65440"} +{"$label":"ACTS_IN","name":"Billy Duke","type":"Role","_key":"110793","_from":"65441","_to":"65440"} +{"$label":"ACTS_IN","name":"Mr. Pratt","type":"Role","_key":"121014","_from":"65441","_to":"71073"} +{"$label":"ACTS_IN","name":"Caissi\u00e8re ferry-boat","type":"Role","_key":"110809","_from":"65452","_to":"65443"} +{"$label":"ACTS_IN","name":"H\u00f4tesse Roissy","type":"Role","_key":"110808","_from":"65451","_to":"65443"} +{"$label":"ACTS_IN","name":"Chauffeur taxi","type":"Role","_key":"110807","_from":"65450","_to":"65443"} +{"$label":"ACTS_IN","name":"Polici\u00e8re","type":"Role","_key":"110805","_from":"65449","_to":"65443"} +{"$label":"ACTS_IN","name":"Patron caf\u00e9","type":"Role","_key":"110804","_from":"65448","_to":"65443"} +{"$label":"ACTS_IN","name":"Lara Schaeffer","type":"Role","_key":"110803","_from":"65447","_to":"65443"} +{"$label":"ACTS_IN","name":"Nadia Schaeffer","type":"Role","_key":"110802","_from":"65446","_to":"65443"} +{"$label":"ACTS_IN","name":"Samira","type":"Role","_key":"110801","_from":"65445","_to":"65443"} +{"$label":"DIRECTED","_key":"110796","_from":"65444","_to":"65443"} +{"$label":"ACTS_IN","name":"Lila","type":"Role","_key":"110818","_from":"65458","_to":"65453"} +{"$label":"ACTS_IN","name":"King Quilok","type":"Role","_key":"110817","_from":"65457","_to":"65453"} +{"$label":"ACTS_IN","name":"Pontiero","type":"Role","_key":"110816","_from":"65456","_to":"65453"} +{"$label":"ACTS_IN","name":"Queen Remini","type":"Role","_key":"110814","_from":"65455","_to":"65453"} +{"$label":"ACTS_IN","name":"Luisa","type":"Role","_key":"110810","_from":"65454","_to":"65453"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"117635","_from":"65455","_to":"69149"} +{"$label":"ACTS_IN","name":"Singer\/Piano","type":"Role","_key":"110823","_from":"65463","_to":"65459"} +{"$label":"ACTS_IN","name":"Drums","type":"Role","_key":"110822","_from":"65462","_to":"65459"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"110821","_from":"65461","_to":"65459"} +{"$label":"ACTS_IN","name":"Bass","type":"Role","_key":"110820","_from":"65460","_to":"65459"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"110828","_from":"65470","_to":"65465"} +{"$label":"ACTS_IN","name":"Paul Garcin","type":"Role","_key":"110827","_from":"65469","_to":"65465"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"110826","_from":"65468","_to":"65465"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"110825","_from":"65467","_to":"65465"} +{"$label":"DIRECTED","_key":"110824","_from":"65466","_to":"65465"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Allari","type":"Role","_key":"110835","_from":"65474","_to":"65471"} +{"$label":"ACTS_IN","name":"Maxime","type":"Role","_key":"110834","_from":"65473","_to":"65471"} +{"$label":"DIRECTED","_key":"110830","_from":"65472","_to":"65471"} +{"$label":"ACTS_IN","name":"Miguel 'Sugar' Santos","type":"Role","_key":"110842","_from":"65477","_to":"65475"} +{"$label":"DIRECTED","_key":"110840","_from":"65476","_to":"65475"} +{"$label":"ACTS_IN","name":"Carol","type":"Role","_key":"110846","_from":"65480","_to":"65478"} +{"$label":"ACTS_IN","name":"Guard at Dig","type":"Role","_key":"110843","_from":"65479","_to":"65478"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"110851","_from":"65483","_to":"65481"} +{"$label":"ACTS_IN","name":"Danica","type":"Role","_key":"110850","_from":"65482","_to":"65481"} +{"$label":"ACTS_IN","name":"Brandner Kaspar","type":"Role","_key":"110869","_from":"65487","_to":"65486"} +{"$label":"ACTS_IN","name":"Rosie the Robot (voice)","type":"Role","_key":"110882","_from":"65493","_to":"65488"} +{"$label":"ACTS_IN","name":"Elroy Jetson (voice)","type":"Role","_key":"110880","_from":"65492","_to":"65488"} +{"$label":"ACTS_IN","name":"Judy Jetson (voice)","type":"Role","_key":"110879","_from":"65491","_to":"65488"} +{"$label":"DIRECTED","_key":"110875","_from":"65490","_to":"65488"} +{"$label":"DIRECTED","_key":"110874","_from":"65489","_to":"65488"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"110884","_from":"65497","_to":"65495"} +{"$label":"ACTS_IN","name":"Prem","type":"Role","_key":"110883","_from":"65496","_to":"65495"} +{"$label":"DIRECTED","_key":"110885","_from":"65499","_to":"65498"} +{"$label":"ACTS_IN","name":"Daniela","type":"Role","_key":"110890","_from":"65505","_to":"65500"} +{"$label":"ACTS_IN","name":"Lucho","type":"Role","_key":"110889","_from":"65504","_to":"65500"} +{"$label":"ACTS_IN","name":"Fernando","type":"Role","_key":"110888","_from":"65503","_to":"65500"} +{"$label":"ACTS_IN","name":"Gast\u00f3n","type":"Role","_key":"110887","_from":"65502","_to":"65500"} +{"$label":"DIRECTED","_key":"110886","_from":"65501","_to":"65500"} +{"$label":"ACTS_IN","name":"Sir Walter Elliot","type":"Role","_key":"110894","_from":"65508","_to":"65506"} +{"$label":"ACTS_IN","name":"Lady Russell","type":"Role","_key":"110893","_from":"65507","_to":"65506"} +{"$label":"DIRECTED","_key":"110907","_from":"65510","_to":"65509"} +{"$label":"ACTS_IN","name":"Adam Bernstein","type":"Role","_key":"110912","_from":"65513","_to":"65512"} +{"$label":"ACTS_IN","name":"Steve Hicks","type":"Role","_key":"110909","_from":"65514","_to":"65512"} +{"$label":"DIRECTED","_key":"110908","_from":"65513","_to":"65512"} +{"$label":"ACTS_IN","name":"Forklift operator","type":"Role","_key":"110926","_from":"65525","_to":"65519"} +{"$label":"ACTS_IN","name":"Cashier","type":"Role","_key":"110925","_from":"65524","_to":"65519"} +{"$label":"ACTS_IN","name":"Young Doctor","type":"Role","_key":"110924","_from":"65523","_to":"65519"} +{"$label":"ACTS_IN","name":"Mother of Deaf girl","type":"Role","_key":"110923","_from":"65522","_to":"65519"} +{"$label":"ACTS_IN","name":"Deaf girl","type":"Role","_key":"110922","_from":"65521","_to":"65519"} +{"$label":"DIRECTED","_key":"110914","_from":"65520","_to":"65519"} +{"$label":"DIRECTED","_key":"110927","_from":"65528","_to":"65527"} +{"$label":"ACTS_IN","name":"Boze Hertzlinger","type":"Role","_key":"110941","_from":"65532","_to":"65529"} +{"$label":"ACTS_IN","name":"Mrs. Chisholm","type":"Role","_key":"110940","_from":"65531","_to":"65529"} +{"$label":"DIRECTED","_key":"110937","_from":"65530","_to":"65529"} +{"$label":"DIRECTED","_key":"110952","_from":"65535","_to":"65534"} +{"$label":"ACTS_IN","name":"Tracey Wilkinson","type":"Role","_key":"110959","_from":"65538","_to":"65537"} +{"$label":"DIRECTED","_key":"110966","_from":"65541","_to":"65540"} +{"$label":"ACTS_IN","name":"Coot","type":"Role","_key":"110977","_from":"65548","_to":"65545"} +{"$label":"ACTS_IN","name":"Leakey","type":"Role","_key":"110976","_from":"65547","_to":"65545"} +{"$label":"ACTS_IN","name":"Mr. Watson","type":"Role","_key":"110973","_from":"65546","_to":"65545"} +{"$label":"DIRECTED","_key":"110985","_from":"65554","_to":"65550"} +{"$label":"ACTS_IN","name":"Chubby","type":"Role","_key":"110984","_from":"65553","_to":"65550"} +{"$label":"ACTS_IN","name":"Xiao Yu","type":"Role","_key":"110983","_from":"65552","_to":"65550"} +{"$label":"ACTS_IN","name":"Ah Kuo","type":"Role","_key":"110982","_from":"65551","_to":"65550"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"110997","_from":"65562","_to":"65556"} +{"$label":"ACTS_IN","name":"Ted Barton","type":"Role","_key":"110995","_from":"65561","_to":"65556"} +{"$label":"ACTS_IN","name":"Lloyd Barnes","type":"Role","_key":"110994","_from":"65560","_to":"65556"} +{"$label":"ACTS_IN","name":"Mildred Atkinson","type":"Role","_key":"110992","_from":"65559","_to":"65556"} +{"$label":"ACTS_IN","name":"Capt. Lochner","type":"Role","_key":"110989","_from":"65558","_to":"65556"} +{"$label":"ACTS_IN","name":"Det. Sgt. Brub Nicolai","type":"Role","_key":"110988","_from":"65557","_to":"65556"} +{"$label":"ACTS_IN","name":"Lt. Tom Brennan","type":"Role","_key":"116694","_from":"65557","_to":"68695"} +{"$label":"ACTS_IN","name":"Brig. Gen. John Hanley","type":"Role","_key":"115099","_from":"65560","_to":"67783"} +{"$label":"ACTS_IN","name":"Halliday","type":"Role","_key":"118418","_from":"65561","_to":"69611"} +{"$label":"ACTS_IN","name":"Adele Cross","type":"Role","_key":"111004","_from":"65565","_to":"65563"} +{"$label":"ACTS_IN","name":"David Janeway","type":"Role","_key":"111003","_from":"65564","_to":"65563"} +{"$label":"ACTS_IN","name":"Ramesh (Bookie)","type":"Role","_key":"111016","_from":"65575","_to":"65566"} +{"$label":"ACTS_IN","name":"Baan","type":"Role","_key":"111015","_from":"65574","_to":"65566"} +{"$label":"ACTS_IN","name":"Dr. Animesh Joshi (Nana)","type":"Role","_key":"111014","_from":"65573","_to":"65566"} +{"$label":"ACTS_IN","name":"Arora","type":"Role","_key":"111013","_from":"65572","_to":"65566"} +{"$label":"ACTS_IN","name":"Murli","type":"Role","_key":"111012","_from":"65571","_to":"65566"} +{"$label":"ACTS_IN","name":"Puri","type":"Role","_key":"111011","_from":"65570","_to":"65566"} +{"$label":"ACTS_IN","name":"Sophia","type":"Role","_key":"111010","_from":"65569","_to":"65566"} +{"$label":"ACTS_IN","name":"Ray Acharya","type":"Role","_key":"111007","_from":"65568","_to":"65566"} +{"$label":"DIRECTED","_key":"111006","_from":"65567","_to":"65566"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"120619","_from":"65568","_to":"70842"} +{"$label":"ACTS_IN","name":"Special Appearance","type":"Role","_key":"120873","_from":"65569","_to":"70973"} +{"$label":"ACTS_IN","name":"Mercy Graves","type":"Role","_key":"111024","_from":"65580","_to":"65577"} +{"$label":"ACTS_IN","name":"Dr. Harleen Quinzel","type":"Role","_key":"111023","_from":"65579","_to":"65577"} +{"$label":"DIRECTED","_key":"111017","_from":"65578","_to":"65577"} +{"$label":"ACTS_IN","name":"Thuy","type":"Role","_key":"111034","_from":"65585","_to":"65581"} +{"$label":"ACTS_IN","name":"Hai","type":"Role","_key":"111033","_from":"65584","_to":"65581"} +{"$label":"ACTS_IN","name":"Lan","type":"Role","_key":"111032","_from":"65583","_to":"65581"} +{"$label":"DIRECTED","_key":"111031","_from":"65582","_to":"65581"} +{"$label":"ACTS_IN","name":"Englund","type":"Role","_key":"111039","_from":"65587","_to":"65586"} +{"$label":"DIRECTED","_key":"111040","_from":"65589","_to":"65588"} +{"$label":"ACTS_IN","name":"Lillemor","type":"Role","_key":"111049","_from":"65596","_to":"65590"} +{"$label":"ACTS_IN","name":"Yngve","type":"Role","_key":"111048","_from":"65595","_to":"65590"} +{"$label":"ACTS_IN","name":"Bengt-Hans","type":"Role","_key":"111047","_from":"65594","_to":"65590"} +{"$label":"ACTS_IN","name":"Gudrun Marklund","type":"Role","_key":"111046","_from":"65593","_to":"65590"} +{"$label":"ACTS_IN","name":"Jan-Erik Marklund","type":"Role","_key":"111043","_from":"65592","_to":"65590"} +{"$label":"DIRECTED","_key":"111041","_from":"65591","_to":"65590"} +{"$label":"DIRECTED","_key":"111052","_from":"65599","_to":"65598"} +{"$label":"DIRECTED","_key":"114789","_from":"65599","_to":"67614"} +{"$label":"DIRECTED","_key":"112301","_from":"65599","_to":"66303"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111060","_from":"65604","_to":"65602"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111059","_from":"65603","_to":"65602"} +{"$label":"DIRECTED","_key":"111063","_from":"65606","_to":"65605"} +{"$label":"ACTS_IN","name":"Candice","type":"Role","_key":"111074","_from":"65611","_to":"65609"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"111073","_from":"65610","_to":"65609"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"111082","_from":"65616","_to":"65612"} +{"$label":"ACTS_IN","name":"Inez","type":"Role","_key":"111080","_from":"65615","_to":"65612"} +{"$label":"ACTS_IN","name":"Kalle","type":"Role","_key":"111077","_from":"65614","_to":"65612"} +{"$label":"ACTS_IN","name":"Berit","type":"Role","_key":"111076","_from":"65613","_to":"65612"} +{"$label":"ACTS_IN","name":"Jadranka","type":"Role","_key":"111086","_from":"65619","_to":"65617"} +{"$label":"ACTS_IN","name":"Stanislav","type":"Role","_key":"111084","_from":"65618","_to":"65617"} +{"$label":"DIRECTED","_key":"111092","_from":"65621","_to":"65620"} +{"$label":"ACTS_IN","name":"Nekoi Yuzuriha","type":"Role","_key":"111108","_from":"65630","_to":"65622"} +{"$label":"ACTS_IN","name":"Asagi Shogo","type":"Role","_key":"111103","_from":"65629","_to":"65622"} +{"$label":"ACTS_IN","name":"Aoki Seiichiro","type":"Role","_key":"111101","_from":"65628","_to":"65622"} +{"$label":"ACTS_IN","name":"Kanoe","type":"Role","_key":"111099","_from":"65627","_to":"65622"} +{"$label":"ACTS_IN","name":"Hinoto","type":"Role","_key":"111098","_from":"65626","_to":"65622"} +{"$label":"ACTS_IN","name":"Sumeragi Subaru","type":"Role","_key":"111097","_from":"65625","_to":"65622"} +{"$label":"ACTS_IN","name":"Sakurazuka Seishirou","type":"Role","_key":"111095","_from":"65624","_to":"65622"} +{"$label":"ACTS_IN","name":"Monou Fuuma","type":"Role","_key":"111094","_from":"65623","_to":"65622"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"111124","_from":"65635","_to":"65632"} +{"$label":"ACTS_IN","name":"George","type":"Role","_key":"111123","_from":"65634","_to":"65632"} +{"$label":"DIRECTED","_key":"111115","_from":"65633","_to":"65632"} +{"$label":"ACTS_IN","name":"Klove","type":"Role","_key":"111136","_from":"65638","_to":"65637"} +{"$label":"ACTS_IN","name":"Jensen","type":"Role","_key":"111950","_from":"65638","_to":"66083"} +{"$label":"DIRECTED","_key":"111143","_from":"65640","_to":"65639"} +{"$label":"DIRECTED","_key":"111144","_from":"65642","_to":"65641"} +{"$label":"DIRECTED","_key":"117408","_from":"65642","_to":"69054"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"111150","_from":"65646","_to":"65643"} +{"$label":"ACTS_IN","name":"Bass, Synthesizers","type":"Role","_key":"111149","_from":"65645","_to":"65643"} +{"$label":"ACTS_IN","name":"Guitars","type":"Role","_key":"111148","_from":"65644","_to":"65643"} +{"$label":"ACTS_IN","name":"Guitars","type":"Role","_key":"111172","_from":"65644","_to":"65657"} +{"$label":"ACTS_IN","name":"Guitars","type":"Role","_key":"111169","_from":"65644","_to":"65656"} +{"$label":"ACTS_IN","name":"Guitars","type":"Role","_key":"111166","_from":"65644","_to":"65655"} +{"$label":"ACTS_IN","name":"Guitars","type":"Role","_key":"111160","_from":"65644","_to":"65653"} +{"$label":"ACTS_IN","name":"Geddy Lee","type":"Role","_key":"116287","_from":"65645","_to":"68460"} +{"$label":"ACTS_IN","name":"Bass, Synthesizers","type":"Role","_key":"111173","_from":"65645","_to":"65657"} +{"$label":"ACTS_IN","name":"Bass, Synthesizers","type":"Role","_key":"111170","_from":"65645","_to":"65656"} +{"$label":"ACTS_IN","name":"Bass, Synthesizers","type":"Role","_key":"111167","_from":"65645","_to":"65655"} +{"$label":"ACTS_IN","name":"Bass, Synthesizers","type":"Role","_key":"111161","_from":"65645","_to":"65653"} +{"$label":"ACTS_IN","name":"Alex Lifeson","type":"Role","_key":"116286","_from":"65646","_to":"68460"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"111174","_from":"65646","_to":"65657"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"111171","_from":"65646","_to":"65656"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"111168","_from":"65646","_to":"65655"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"111162","_from":"65646","_to":"65653"} +{"$label":"ACTS_IN","name":"Tonn","type":"Role","_key":"111159","_from":"65652","_to":"65648"} +{"$label":"ACTS_IN","name":"Jane","type":"Role","_key":"111157","_from":"65651","_to":"65648"} +{"$label":"DIRECTED","_key":"111155","_from":"65650","_to":"65648"} +{"$label":"DIRECTED","_key":"111154","_from":"65649","_to":"65648"} +{"$label":"DIRECTED","_key":"111180","_from":"65662","_to":"65660"} +{"$label":"ACTS_IN","name":"Marie Clifton","type":"Role","_key":"111177","_from":"65661","_to":"65660"} +{"$label":"DIRECTED","_key":"111191","_from":"65666","_to":"65665"} +{"$label":"ACTS_IN","name":"Mamushi","type":"Role","_key":"111204","_from":"65674","_to":"65667"} +{"$label":"ACTS_IN","name":"Onibi","type":"Role","_key":"111203","_from":"65673","_to":"65667"} +{"$label":"ACTS_IN","name":"Sugino","type":"Role","_key":"111202","_from":"65672","_to":"65667"} +{"$label":"ACTS_IN","name":"Ishiyama","type":"Role","_key":"111201","_from":"65671","_to":"65667"} +{"$label":"ACTS_IN","name":"Bansaku Tonami","type":"Role","_key":"111200","_from":"65670","_to":"65667"} +{"$label":"ACTS_IN","name":"Yumi","type":"Role","_key":"111199","_from":"65669","_to":"65667"} +{"$label":"DIRECTED","_key":"111196","_from":"65668","_to":"65667"} +{"$label":"ACTS_IN","name":"Lucy Wagner","type":"Role","_key":"111207","_from":"65676","_to":"65675"} +{"$label":"DIRECTED","_key":"111223","_from":"65680","_to":"65677"} +{"$label":"ACTS_IN","name":"Rusty (Varna's henchman)","type":"Role","_key":"111222","_from":"65679","_to":"65677"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"111218","_from":"65678","_to":"65677"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"111234","_from":"65689","_to":"65683"} +{"$label":"ACTS_IN","name":"Anthony Deluso","type":"Role","_key":"111233","_from":"65688","_to":"65683"} +{"$label":"ACTS_IN","name":"Willie Dumaine","type":"Role","_key":"111232","_from":"65687","_to":"65683"} +{"$label":"ACTS_IN","name":"Dave Fisher","type":"Role","_key":"111231","_from":"65686","_to":"65683"} +{"$label":"ACTS_IN","name":"Erica Kessen","type":"Role","_key":"111230","_from":"65685","_to":"65683"} +{"$label":"ACTS_IN","name":"Special Agent Ray Santiago","type":"Role","_key":"111229","_from":"65684","_to":"65683"} +{"$label":"ACTS_IN","name":"Zed, Droid Leader","type":"Role","_key":"111237","_from":"65691","_to":"65690"} +{"$label":"ACTS_IN","name":"Mrs. Wanley","type":"Role","_key":"111246","_from":"65694","_to":"65692"} +{"$label":"ACTS_IN","name":"Inspector Jackson","type":"Role","_key":"111245","_from":"65693","_to":"65692"} +{"$label":"DIRECTED","_key":"111251","_from":"65696","_to":"65695"} +{"$label":"ACTS_IN","name":"Possessed Man","type":"Role","_key":"111263","_from":"65708","_to":"65697"} +{"$label":"ACTS_IN","name":"Deanne","type":"Role","_key":"111262","_from":"65707","_to":"65697"} +{"$label":"ACTS_IN","name":"Stiver","type":"Role","_key":"111261","_from":"65706","_to":"65697"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"111260","_from":"65705","_to":"65697"} +{"$label":"ACTS_IN","name":"Gavin","type":"Role","_key":"111259","_from":"65704","_to":"65697"} +{"$label":"ACTS_IN","name":"Crystal (as Hollis Zemany)","type":"Role","_key":"111258","_from":"65703","_to":"65697"} +{"$label":"ACTS_IN","name":"Kadulva","type":"Role","_key":"111257","_from":"65702","_to":"65697"} +{"$label":"ACTS_IN","name":"Curtis","type":"Role","_key":"111256","_from":"65701","_to":"65697"} +{"$label":"ACTS_IN","name":"Buck","type":"Role","_key":"111255","_from":"65700","_to":"65697"} +{"$label":"ACTS_IN","name":"Launa","type":"Role","_key":"111254","_from":"65699","_to":"65697"} +{"$label":"DIRECTED","_key":"111252","_from":"65698","_to":"65697"} +{"$label":"ACTS_IN","name":"Lorna Te George","type":"Role","_key":"111268","_from":"65711","_to":"65709"} +{"$label":"DIRECTED","_key":"111264","_from":"65710","_to":"65709"} +{"$label":"ACTS_IN","name":"Donald","type":"Role","_key":"111278","_from":"65717","_to":"65712"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"111276","_from":"65716","_to":"65712"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"111275","_from":"65715","_to":"65712"} +{"$label":"ACTS_IN","name":"Dr. Thalama","type":"Role","_key":"111273","_from":"65714","_to":"65712"} +{"$label":"DIRECTED","_key":"111269","_from":"65713","_to":"65712"} +{"$label":"ACTS_IN","name":"Ms. Tebbit","type":"Role","_key":"119932","_from":"65714","_to":"70445"} +{"$label":"ACTS_IN","name":"Donald Watkins","type":"Role","_key":"111283","_from":"65722","_to":"65718"} +{"$label":"ACTS_IN","name":"Denise","type":"Role","_key":"111282","_from":"65721","_to":"65718"} +{"$label":"ACTS_IN","name":"Archie Andrews","type":"Role","_key":"111280","_from":"65720","_to":"65718"} +{"$label":"DIRECTED","_key":"111279","_from":"65719","_to":"65718"} +{"$label":"ACTS_IN","name":"lucinda","type":"Role","_key":"111285","_from":"65724","_to":"65723"} +{"$label":"ACTS_IN","name":"Mike Cassidy","type":"Role","_key":"111292","_from":"65726","_to":"65725"} +{"$label":"ACTS_IN","name":"Merideth Cole","type":"Role","_key":"111296","_from":"65728","_to":"65727"} +{"$label":"DIRECTED","_key":"111305","_from":"65733","_to":"65730"} +{"$label":"ACTS_IN","name":"Vesna","type":"Role","_key":"111303","_from":"65732","_to":"65730"} +{"$label":"ACTS_IN","name":"Mal","type":"Role","_key":"111302","_from":"65731","_to":"65730"} +{"$label":"DIRECTED","_key":"111306","_from":"65735","_to":"65734"} +{"$label":"ACTS_IN","name":"spiker","type":"Role","_key":"111310","_from":"65739","_to":"65737"} +{"$label":"DIRECTED","_key":"111308","_from":"65738","_to":"65737"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"111312","_from":"65741","_to":"65740"} +{"$label":"ACTS_IN","name":"Eddie's Cousin (sketch)","type":"Role","_key":"111334","_from":"65755","_to":"65744"} +{"$label":"ACTS_IN","name":"Thanksgiving Guest (sketch)","type":"Role","_key":"111331","_from":"65754","_to":"65744"} +{"$label":"ACTS_IN","name":"Card Player #3 (sketch)","type":"Role","_key":"111330","_from":"65753","_to":"65744"} +{"$label":"ACTS_IN","name":"Party Guest (sketch)","type":"Role","_key":"111329","_from":"65752","_to":"65744"} +{"$label":"ACTS_IN","name":"Aunt Rose (sketch)","type":"Role","_key":"111328","_from":"65751","_to":"65744"} +{"$label":"ACTS_IN","name":"Card Player #2 (sketch)","type":"Role","_key":"111327","_from":"65750","_to":"65744"} +{"$label":"ACTS_IN","name":"Uncle Lester (sketch)","type":"Role","_key":"111326","_from":"65749","_to":"65744"} +{"$label":"ACTS_IN","name":"Thanksgiving Guest (sketch)","type":"Role","_key":"111325","_from":"65748","_to":"65744"} +{"$label":"ACTS_IN","name":"Mrs. Butts (sketch)","type":"Role","_key":"111324","_from":"65747","_to":"65744"} +{"$label":"ACTS_IN","name":"Thanksgiving Guest (sketch)","type":"Role","_key":"111323","_from":"65746","_to":"65744"} +{"$label":"ACTS_IN","name":"Eddie's Aunt (sketch)","type":"Role","_key":"111322","_from":"65745","_to":"65744"} +{"$label":"DIRECTED","_key":"111338","_from":"65760","_to":"65758"} +{"$label":"ACTS_IN","name":"Mitro \/ Ekam","type":"Role","_key":"111336","_from":"65759","_to":"65758"} +{"$label":"ACTS_IN","name":"Hanataro Yamada","type":"Role","_key":"111365","_from":"65767","_to":"65761"} +{"$label":"ACTS_IN","name":"Yoruichi Shihouin","type":"Role","_key":"111360","_from":"65766","_to":"65761"} +{"$label":"ACTS_IN","name":"Marechiyo Oomaeda","type":"Role","_key":"111359","_from":"65765","_to":"65761"} +{"$label":"ACTS_IN","name":"Shizuku","type":"Role","_key":"111343","_from":"65764","_to":"65761"} +{"$label":"ACTS_IN","name":"Homura","type":"Role","_key":"111342","_from":"65763","_to":"65761"} +{"$label":"ACTS_IN","name":"Renji Abarai","type":"Role","_key":"111341","_from":"65762","_to":"65761"} +{"$label":"ACTS_IN","name":"Jack's Mother","type":"Role","_key":"111381","_from":"65771","_to":"65768"} +{"$label":"ACTS_IN","name":"Loomis","type":"Role","_key":"111379","_from":"65770","_to":"65768"} +{"$label":"DIRECTED","_key":"111369","_from":"65769","_to":"65768"} +{"$label":"ACTS_IN","name":"Brenda","type":"Role","_key":"111389","_from":"65779","_to":"65772"} +{"$label":"ACTS_IN","name":"Detective Hodges","type":"Role","_key":"111388","_from":"65778","_to":"65772"} +{"$label":"ACTS_IN","name":"Honky Tonk Bartender","type":"Role","_key":"111387","_from":"65777","_to":"65772"} +{"$label":"ACTS_IN","name":"Michael Reese","type":"Role","_key":"111386","_from":"65776","_to":"65772"} +{"$label":"ACTS_IN","name":"Bar Patron","type":"Role","_key":"111385","_from":"65775","_to":"65772"} +{"$label":"ACTS_IN","name":"Anna Carter","type":"Role","_key":"111384","_from":"65774","_to":"65772"} +{"$label":"DIRECTED","_key":"111383","_from":"65773","_to":"65772"} +{"$label":"ACTS_IN","name":"Marla Higgins","type":"Role","_key":"111404","_from":"65784","_to":"65780"} +{"$label":"ACTS_IN","name":"Nathan Derns","type":"Role","_key":"111403","_from":"65783","_to":"65780"} +{"$label":"ACTS_IN","name":"Mercer","type":"Role","_key":"111402","_from":"65782","_to":"65780"} +{"$label":"ACTS_IN","name":"Sara Meinhold","type":"Role","_key":"111396","_from":"65781","_to":"65780"} +{"$label":"DIRECTED","_key":"111423","_from":"65791","_to":"65790"} +{"$label":"DIRECTED","_key":"111426","_from":"65793","_to":"65792"} +{"$label":"DIRECTED","_key":"111430","_from":"65796","_to":"65795"} +{"$label":"ACTS_IN","name":"Chang Yu Zheng","type":"Role","_key":"111434","_from":"65802","_to":"65798"} +{"$label":"ACTS_IN","name":"John Magee","type":"Role","_key":"111433","_from":"65801","_to":"65798"} +{"$label":"DIRECTED","_key":"111432","_from":"65800","_to":"65798"} +{"$label":"DIRECTED","_key":"111431","_from":"65799","_to":"65798"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"119452","_from":"65802","_to":"70174"} +{"$label":"ACTS_IN","name":"Johnny Leffingwell","type":"Role","_key":"111451","_from":"65806","_to":"65805"} +{"$label":"ACTS_IN","name":"Rider's Girlfriend","type":"Role","_key":"111466","_from":"65814","_to":"65807"} +{"$label":"ACTS_IN","name":"Rowdy's Hairstylist","type":"Role","_key":"111465","_from":"65813","_to":"65807"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111464","_from":"65812","_to":"65807"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"111463","_from":"65811","_to":"65807"} +{"$label":"ACTS_IN","name":"Chuy","type":"Role","_key":"111462","_from":"65810","_to":"65807"} +{"$label":"ACTS_IN","name":"Owen Cole","type":"Role","_key":"111461","_from":"65809","_to":"65807"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"111458","_from":"65808","_to":"65807"} +{"$label":"ACTS_IN","name":"Michel Desrennes","type":"Role","_key":"111479","_from":"65822","_to":"65820"} +{"$label":"ACTS_IN","name":"Nathalie Dagenais","type":"Role","_key":"111477","_from":"65821","_to":"65820"} +{"$label":"ACTS_IN","name":"Lisette","type":"Role","_key":"117536","_from":"65821","_to":"69106"} +{"$label":"ACTS_IN","name":"Dong","type":"Role","_key":"111481","_from":"65826","_to":"65824"} +{"$label":"ACTS_IN","name":"Ding","type":"Role","_key":"111480","_from":"65825","_to":"65824"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois Brochu","type":"Role","_key":"111565","_from":"65825","_to":"65866"} +{"$label":"DIRECTED","_key":"111485","_from":"65828","_to":"65827"} +{"$label":"DIRECTED","_key":"111489","_from":"65833","_to":"65829"} +{"$label":"ACTS_IN","name":"Odile","type":"Role","_key":"111488","_from":"65832","_to":"65829"} +{"$label":"ACTS_IN","name":"St\u00e9phane","type":"Role","_key":"111487","_from":"65831","_to":"65829"} +{"$label":"ACTS_IN","name":"Christophe","type":"Role","_key":"111486","_from":"65830","_to":"65829"} +{"$label":"ACTS_IN","name":"Knights Templar Martin","type":"Role","_key":"113548","_from":"65831","_to":"66900"} +{"$label":"DIRECTED","_key":"115948","_from":"65833","_to":"68278"} +{"$label":"ACTS_IN","name":"Ronnie Howard","type":"Role","_key":"111499","_from":"65840","_to":"65834"} +{"$label":"ACTS_IN","name":"Danny DeCarlo","type":"Role","_key":"111498","_from":"65839","_to":"65834"} +{"$label":"ACTS_IN","name":"Leslie Van Houten","type":"Role","_key":"111496","_from":"65838","_to":"65834"} +{"$label":"ACTS_IN","name":"Patricia Krenwinkel","type":"Role","_key":"111495","_from":"65837","_to":"65834"} +{"$label":"ACTS_IN","name":"Linda Kasabian","type":"Role","_key":"111494","_from":"65836","_to":"65834"} +{"$label":"ACTS_IN","name":"Susan Atkins","type":"Role","_key":"111493","_from":"65835","_to":"65834"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111531","_from":"65846","_to":"65843"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111530","_from":"65845","_to":"65843"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111529","_from":"65844","_to":"65843"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111544","_from":"65844","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111546","_from":"65845","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111547","_from":"65846","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111545","_from":"65856","_to":"65849"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"111543","_from":"65855","_to":"65849"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"111542","_from":"65854","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111541","_from":"65853","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111540","_from":"65852","_to":"65849"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111539","_from":"65851","_to":"65849"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"111538","_from":"65850","_to":"65849"} +{"$label":"DIRECTED","_key":"111553","_from":"65859","_to":"65857"} +{"$label":"ACTS_IN","name":"Nurse Hendricks","type":"Role","_key":"111552","_from":"65858","_to":"65857"} +{"$label":"DIRECTED","_key":"111555","_from":"65861","_to":"65860"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"111564","_from":"65865","_to":"65862"} +{"$label":"ACTS_IN","name":"Sister Williams","type":"Role","_key":"111562","_from":"65864","_to":"65862"} +{"$label":"ACTS_IN","name":"Dr. Brian Wright","type":"Role","_key":"111560","_from":"65863","_to":"65862"} +{"$label":"DIRECTED","_key":"111569","_from":"65870","_to":"65866"} +{"$label":"ACTS_IN","name":"R\u00e9jean Brochu","type":"Role","_key":"111568","_from":"65869","_to":"65866"} +{"$label":"ACTS_IN","name":"Nathalie Brochu","type":"Role","_key":"111567","_from":"65868","_to":"65866"} +{"$label":"ACTS_IN","name":"Gaston Savard","type":"Role","_key":"111566","_from":"65867","_to":"65866"} +{"$label":"ACTS_IN","name":"Ni\u00f1o","type":"Role","_key":"111576","_from":"65875","_to":"65871"} +{"$label":"ACTS_IN","name":"Hijo Portera","type":"Role","_key":"111575","_from":"65874","_to":"65871"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"111573","_from":"65873","_to":"65871"} +{"$label":"ACTS_IN","name":"Portera","type":"Role","_key":"111572","_from":"65872","_to":"65871"} +{"$label":"ACTS_IN","name":"Raul","type":"Role","_key":"111584","_from":"65879","_to":"65876"} +{"$label":"ACTS_IN","name":"Carlos' Mother","type":"Role","_key":"111582","_from":"65878","_to":"65876"} +{"$label":"DIRECTED","_key":"111577","_from":"65877","_to":"65876"} +{"$label":"ACTS_IN","name":"Shanley","type":"Role","_key":"111592","_from":"65882","_to":"65881"} +{"$label":"ACTS_IN","name":"Danny Harland","type":"Role","_key":"113460","_from":"65882","_to":"66843"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111604","_from":"65890","_to":"65888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111603","_from":"65889","_to":"65888"} +{"$label":"ACTS_IN","name":"Mr. McTavish","type":"Role","_key":"111611","_from":"65896","_to":"65893"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"111609","_from":"65895","_to":"65893"} +{"$label":"ACTS_IN","name":"Raoul","type":"Role","_key":"111608","_from":"65894","_to":"65893"} +{"$label":"ACTS_IN","name":"Arthur Kunz","type":"Role","_key":"111626","_from":"65903","_to":"65897"} +{"$label":"ACTS_IN","name":"Marchesini","type":"Role","_key":"111625","_from":"65902","_to":"65897"} +{"$label":"ACTS_IN","name":"Otto Walser","type":"Role","_key":"111624","_from":"65901","_to":"65897"} +{"$label":"ACTS_IN","name":"Marcantonio Altieri","type":"Role","_key":"111622","_from":"65900","_to":"65897"} +{"$label":"ACTS_IN","name":"Maria Grazia","type":"Role","_key":"111620","_from":"65899","_to":"65897"} +{"$label":"ACTS_IN","name":"Alfonso Liguori \/ Cavaradossi","type":"Role","_key":"111617","_from":"65898","_to":"65897"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111643","_from":"65910","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111642","_from":"65909","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111640","_from":"65908","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"111639","_from":"65907","_to":"65905"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111634","_from":"65906","_to":"65905"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114239","_from":"65906","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114186","_from":"65906","_to":"67266"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113176","_from":"65906","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113145","_from":"65906","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113081","_from":"65906","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113000","_from":"65906","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112650","_from":"65906","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112619","_from":"65906","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112608","_from":"65906","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113086","_from":"65907","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113168","_from":"65909","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113040","_from":"65910","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113013","_from":"65910","_to":"66665"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112937","_from":"65910","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112890","_from":"65910","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112668","_from":"65910","_to":"66538"} +{"$label":"ACTS_IN","name":"Cort","type":"Role","_key":"111653","_from":"65919","_to":"65911"} +{"$label":"ACTS_IN","name":"Artsy Bartender","type":"Role","_key":"111652","_from":"65918","_to":"65911"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"111651","_from":"65917","_to":"65911"} +{"$label":"ACTS_IN","name":"Girl in Coffin","type":"Role","_key":"111650","_from":"65916","_to":"65911"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"111649","_from":"65915","_to":"65911"} +{"$label":"ACTS_IN","name":"Faith","type":"Role","_key":"111646","_from":"65914","_to":"65911"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"111645","_from":"65913","_to":"65911"} +{"$label":"DIRECTED","_key":"111644","_from":"65912","_to":"65911"} +{"$label":"ACTS_IN","name":"Jason Underhill","type":"Role","_key":"111656","_from":"65921","_to":"65920"} +{"$label":"ACTS_IN","name":"Trey Deonte","type":"Role","_key":"111659","_from":"65924","_to":"65922"} +{"$label":"DIRECTED","_key":"111658","_from":"65923","_to":"65922"} +{"$label":"DIRECTED","_key":"111666","_from":"65928","_to":"65926"} +{"$label":"DIRECTED","_key":"111665","_from":"65927","_to":"65926"} +{"$label":"DIRECTED","_key":"111679","_from":"65936","_to":"65929"} +{"$label":"ACTS_IN","name":"Alley Rat Man","type":"Role","_key":"111677","_from":"65935","_to":"65929"} +{"$label":"ACTS_IN","name":"Rodney","type":"Role","_key":"111675","_from":"65934","_to":"65929"} +{"$label":"ACTS_IN","name":"Casey","type":"Role","_key":"111672","_from":"65933","_to":"65929"} +{"$label":"ACTS_IN","name":"Kay","type":"Role","_key":"111671","_from":"65932","_to":"65929"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"111670","_from":"65931","_to":"65929"} +{"$label":"ACTS_IN","name":"Ross","type":"Role","_key":"111668","_from":"65930","_to":"65929"} +{"$label":"ACTS_IN","name":"Marcos' Wife","type":"Role","_key":"111683","_from":"65940","_to":"65937"} +{"$label":"ACTS_IN","name":"Ana","type":"Role","_key":"111682","_from":"65939","_to":"65937"} +{"$label":"ACTS_IN","name":"Marcos","type":"Role","_key":"111681","_from":"65938","_to":"65937"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"111685","_from":"65942","_to":"65941"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"111705","_from":"65949","_to":"65947"} +{"$label":"ACTS_IN","name":"Alec Ramsey","type":"Role","_key":"111699","_from":"65948","_to":"65947"} +{"$label":"ACTS_IN","name":"Perimedes","type":"Role","_key":"111718","_from":"65951","_to":"65950"} +{"$label":"ACTS_IN","name":"Witch Doctor (as Yemi Ajibade)","type":"Role","_key":"111745","_from":"65964","_to":"65956"} +{"$label":"ACTS_IN","name":"Nosha Chief","type":"Role","_key":"111744","_from":"65963","_to":"65956"} +{"$label":"ACTS_IN","name":"Lubi Lieutenant","type":"Role","_key":"111743","_from":"65962","_to":"65956"} +{"$label":"ACTS_IN","name":"Lubi Lieutenant","type":"Role","_key":"111742","_from":"65961","_to":"65956"} +{"$label":"ACTS_IN","name":"Nerda","type":"Role","_key":"111741","_from":"65960","_to":"65956"} +{"$label":"ACTS_IN","name":"Gorilla","type":"Role","_key":"111740","_from":"65959","_to":"65956"} +{"$label":"ACTS_IN","name":"Leda","type":"Role","_key":"111739","_from":"65958","_to":"65956"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"111738","_from":"65957","_to":"65956"} +{"$label":"ACTS_IN","name":"Myrtle Plummer","type":"Role","_key":"119588","_from":"65957","_to":"70243"} +{"$label":"ACTS_IN","name":"Victorinus","type":"Role","_key":"111759","_from":"65966","_to":"65965"} +{"$label":"ACTS_IN","name":"Francesca","type":"Role","_key":"111765","_from":"65969","_to":"65967"} +{"$label":"ACTS_IN","name":"Felix Flankin \/ Yetch \/ Dracula \/ Invisible Man \/ Dr. Jekyll \/ Mr. Hyde \/ Additional Voices","type":"Role","_key":"111764","_from":"65968","_to":"65967"} +{"$label":"ACTS_IN","name":"Honor\u00e9 Lachaille","type":"Role","_key":"111770","_from":"65971","_to":"65970"} +{"$label":"ACTS_IN","name":"Claude Chavasse","type":"Role","_key":"115756","_from":"65971","_to":"68155"} +{"$label":"ACTS_IN","name":"Drug Lord","type":"Role","_key":"111777","_from":"65976","_to":"65972"} +{"$label":"ACTS_IN","name":"Ray Jones","type":"Role","_key":"111776","_from":"65975","_to":"65972"} +{"$label":"ACTS_IN","name":"Shiro Tanka","type":"Role","_key":"111775","_from":"65974","_to":"65972"} +{"$label":"DIRECTED","_key":"111774","_from":"65973","_to":"65972"} +{"$label":"DIRECTED","_key":"114276","_from":"65973","_to":"67308"} +{"$label":"ACTS_IN","name":"The Assassin","type":"Role","_key":"118812","_from":"65974","_to":"69847"} +{"$label":"ACTS_IN","name":"Interviewer","type":"Role","_key":"111779","_from":"65978","_to":"65977"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"111786","_from":"65985","_to":"65980"} +{"$label":"ACTS_IN","name":"Kyra","type":"Role","_key":"111785","_from":"65984","_to":"65980"} +{"$label":"ACTS_IN","name":"Paolo","type":"Role","_key":"111784","_from":"65983","_to":"65980"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"111782","_from":"65982","_to":"65980"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"111780","_from":"65981","_to":"65980"} +{"$label":"DIRECTED","_key":"111804","_from":"65992","_to":"65986"} +{"$label":"ACTS_IN","name":"The Peeper","type":"Role","_key":"111801","_from":"65996","_to":"65986"} +{"$label":"ACTS_IN","name":"The Invisible Man","type":"Role","_key":"111799","_from":"65995","_to":"65986"} +{"$label":"ACTS_IN","name":"Jose Paco Bell","type":"Role","_key":"111795","_from":"65994","_to":"65986"} +{"$label":"ACTS_IN","name":"Humus \/ ACB Dancer","type":"Role","_key":"111794","_from":"65993","_to":"65986"} +{"$label":"ACTS_IN","name":"Carl Jr.","type":"Role","_key":"111793","_from":"65992","_to":"65986"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"111792","_from":"65991","_to":"65986"} +{"$label":"ACTS_IN","name":"General Lee Roy","type":"Role","_key":"111791","_from":"65990","_to":"65986"} +{"$label":"ACTS_IN","name":"Micki","type":"Role","_key":"111790","_from":"65989","_to":"65986"} +{"$label":"ACTS_IN","name":"Wendy","type":"Role","_key":"111789","_from":"65988","_to":"65986"} +{"$label":"ACTS_IN","name":"Arbie","type":"Role","_key":"111788","_from":"65987","_to":"65986"} +{"$label":"ACTS_IN","name":"Serdar","type":"Role","_key":"111805","_from":"65998","_to":"65997"} +{"$label":"ACTS_IN","name":"Ali La Pointe","type":"Role","_key":"111807","_from":"66001","_to":"65999"} +{"$label":"DIRECTED","_key":"111806","_from":"66000","_to":"65999"} +{"$label":"DIRECTED","_key":"111812","_from":"66003","_to":"66002"} +{"$label":"DIRECTED","_key":"114980","_from":"66003","_to":"67711"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"111814","_from":"66005","_to":"66004"} +{"$label":"DIRECTED","_key":"111819","_from":"66007","_to":"66006"} +{"$label":"ACTS_IN","name":"Spanners Watson","type":"Role","_key":"111818","_from":"66009","_to":"66006"} +{"$label":"ACTS_IN","name":"Dick Johansonson","type":"Role","_key":"111817","_from":"66008","_to":"66006"} +{"$label":"ACTS_IN","name":"Randy Cambell \/ Flaming Reg Cambell \/ Colonel Calamity Cambell","type":"Role","_key":"111816","_from":"66007","_to":"66006"} +{"$label":"ACTS_IN","name":"Executioner \/ Pirate #1 (voice)","type":"Role","_key":"111848","_from":"66030","_to":"66010"} +{"$label":"ACTS_IN","name":"2 Headed Parrot (voice)","type":"Role","_key":"111845","_from":"66029","_to":"66010"} +{"$label":"ACTS_IN","name":"Fred Fredburger \/ Pirate #4 (voice)","type":"Role","_key":"111841","_from":"66028","_to":"66010"} +{"$label":"ACTS_IN","name":"Giant Cyclops \/ Ugly Pirate (voice)","type":"Role","_key":"111840","_from":"66027","_to":"66010"} +{"$label":"ACTS_IN","name":"Peequay (voice)","type":"Role","_key":"111837","_from":"66026","_to":"66010"} +{"$label":"ACTS_IN","name":"I'll Cut You Guy \/ Pirate #2 \/ Horrorbot \/ Burnt Skeleton Guard (voice)","type":"Role","_key":"111836","_from":"66025","_to":"66010"} +{"$label":"ACTS_IN","name":"Irwin \/ Pirate #5 \/ Unicorn (voice)","type":"Role","_key":"111835","_from":"66024","_to":"66010"} +{"$label":"ACTS_IN","name":"Billy \/ Billybot \/ Harold \/ Pale Ghoulish Juror \/ Chippy the Squirrel (voice) (as Richard Horvitz)","type":"Role","_key":"111834","_from":"66023","_to":"66010"} +{"$label":"DIRECTED","_key":"111831","_from":"66022","_to":"66010"} +{"$label":"DIRECTED","_key":"111830","_from":"66021","_to":"66010"} +{"$label":"DIRECTED","_key":"111829","_from":"66020","_to":"66010"} +{"$label":"DIRECTED","_key":"111828","_from":"66019","_to":"66010"} +{"$label":"DIRECTED","_key":"111827","_from":"66018","_to":"66010"} +{"$label":"DIRECTED","_key":"111826","_from":"66017","_to":"66010"} +{"$label":"DIRECTED","_key":"111825","_from":"66016","_to":"66010"} +{"$label":"DIRECTED","_key":"111824","_from":"66015","_to":"66010"} +{"$label":"DIRECTED","_key":"111823","_from":"66014","_to":"66010"} +{"$label":"DIRECTED","_key":"111822","_from":"66013","_to":"66010"} +{"$label":"DIRECTED","_key":"111821","_from":"66012","_to":"66010"} +{"$label":"DIRECTED","_key":"111820","_from":"66011","_to":"66010"} +{"$label":"ACTS_IN","name":"Capt. Baker","type":"Role","_key":"111854","_from":"66032","_to":"66031"} +{"$label":"ACTS_IN","name":"Radhakrishna","type":"Role","_key":"111862","_from":"66039","_to":"66033"} +{"$label":"ACTS_IN","name":"Jenni","type":"Role","_key":"111861","_from":"66038","_to":"66033"} +{"$label":"ACTS_IN","name":"Rachna","type":"Role","_key":"111859","_from":"66037","_to":"66033"} +{"$label":"ACTS_IN","name":"Kartik","type":"Role","_key":"111858","_from":"66036","_to":"66033"} +{"$label":"DIRECTED","_key":"111857","_from":"66035","_to":"66033"} +{"$label":"DIRECTED","_key":"111856","_from":"66034","_to":"66033"} +{"$label":"DIRECTED","_key":"121678","_from":"66034","_to":"71480"} +{"$label":"ACTS_IN","name":"Nathan, The Ex-Convict","type":"Role","_key":"111870","_from":"66043","_to":"66042"} +{"$label":"ACTS_IN","name":"Dallas","type":"Role","_key":"111873","_from":"66046","_to":"66044"} +{"$label":"ACTS_IN","name":"El Mascarado","type":"Role","_key":"111872","_from":"66045","_to":"66044"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"111887","_from":"66049","_to":"66047"} +{"$label":"ACTS_IN","name":"Natalie Klein","type":"Role","_key":"111881","_from":"66048","_to":"66047"} +{"$label":"DIRECTED","_key":"111896","_from":"66053","_to":"66051"} +{"$label":"ACTS_IN","name":"Fran\u00e7ois","type":"Role","_key":"111895","_from":"66052","_to":"66051"} +{"$label":"ACTS_IN","name":"Murakami","type":"Role","_key":"111903","_from":"66059","_to":"66054"} +{"$label":"ACTS_IN","name":"Mai","type":"Role","_key":"111900","_from":"66058","_to":"66054"} +{"$label":"ACTS_IN","name":"Jerome","type":"Role","_key":"111899","_from":"66057","_to":"66054"} +{"$label":"ACTS_IN","name":"Boyd","type":"Role","_key":"111898","_from":"66056","_to":"66054"} +{"$label":"DIRECTED","_key":"111897","_from":"66055","_to":"66054"} +{"$label":"DIRECTED","_key":"111905","_from":"66063","_to":"66061"} +{"$label":"DIRECTED","_key":"111904","_from":"66062","_to":"66061"} +{"$label":"ACTS_IN","name":"Adam Crane","type":"Role","_key":"111911","_from":"66066","_to":"66064"} +{"$label":"ACTS_IN","name":"David Carter","type":"Role","_key":"111910","_from":"66065","_to":"66064"} +{"$label":"ACTS_IN","name":"Priya Sethi","type":"Role","_key":"111914","_from":"66068","_to":"66067"} +{"$label":"DIRECTED","_key":"111915","_from":"66070","_to":"66069"} +{"$label":"ACTS_IN","name":"Zulay Valez","type":"Role","_key":"111923","_from":"66072","_to":"66071"} +{"$label":"ACTS_IN","name":"Dinah","type":"Role","_key":"111932","_from":"66077","_to":"66073"} +{"$label":"ACTS_IN","name":"Ducky","type":"Role","_key":"111929","_from":"66076","_to":"66073"} +{"$label":"ACTS_IN","name":"Cera","type":"Role","_key":"111928","_from":"66075","_to":"66073"} +{"$label":"DIRECTED","_key":"111925","_from":"66074","_to":"66073"} +{"$label":"ACTS_IN","name":"Bill (Voice)","type":"Role","_key":"111940","_from":"66082","_to":"66078"} +{"$label":"ACTS_IN","name":"John (Voice)","type":"Role","_key":"111939","_from":"66081","_to":"66078"} +{"$label":"DIRECTED","_key":"111938","_from":"66080","_to":"66078"} +{"$label":"DIRECTED","_key":"111937","_from":"66079","_to":"66078"} +{"$label":"ACTS_IN","name":"Marko","type":"Role","_key":"111953","_from":"66084","_to":"66083"} +{"$label":"DIRECTED","_key":"111966","_from":"66091","_to":"66086"} +{"$label":"ACTS_IN","name":"Dead Woman","type":"Role","_key":"111963","_from":"66090","_to":"66086"} +{"$label":"ACTS_IN","name":"Dr. Seward's Assistant","type":"Role","_key":"111961","_from":"66089","_to":"66086"} +{"$label":"ACTS_IN","name":"Agra","type":"Role","_key":"111959","_from":"66088","_to":"66086"} +{"$label":"ACTS_IN","name":"Omar","type":"Role","_key":"111957","_from":"66087","_to":"66086"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"111968","_from":"66094","_to":"66093"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"111975","_from":"66099","_to":"66095"} +{"$label":"ACTS_IN","name":"Old Marjorie","type":"Role","_key":"111974","_from":"66098","_to":"66095"} +{"$label":"ACTS_IN","name":"Esther","type":"Role","_key":"111971","_from":"66097","_to":"66095"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"111969","_from":"66096","_to":"66095"} +{"$label":"ACTS_IN","name":"Arnaud de Lacanau","type":"Role","_key":"111988","_from":"66105","_to":"66100"} +{"$label":"ACTS_IN","name":"Marjorie","type":"Role","_key":"111987","_from":"66104","_to":"66100"} +{"$label":"ACTS_IN","name":"Eudes l'avocat","type":"Role","_key":"111985","_from":"66103","_to":"66100"} +{"$label":"ACTS_IN","name":"la sir\u00e8ne","type":"Role","_key":"111983","_from":"66102","_to":"66100"} +{"$label":"ACTS_IN","name":"Jeanne","type":"Role","_key":"111982","_from":"66101","_to":"66100"} +{"$label":"ACTS_IN","name":"Bertrand","type":"Role","_key":"113501","_from":"66103","_to":"66874"} +{"$label":"ACTS_IN","name":"Le professeur de judo","type":"Role","_key":"119471","_from":"66105","_to":"70178"} +{"$label":"ACTS_IN","name":"Liat","type":"Role","_key":"111994","_from":"66110","_to":"66106"} +{"$label":"ACTS_IN","name":"Bloody Mary","type":"Role","_key":"111993","_from":"66109","_to":"66106"} +{"$label":"ACTS_IN","name":"Lt. Joseph Cable","type":"Role","_key":"111991","_from":"66108","_to":"66106"} +{"$label":"ACTS_IN","name":"Ens. Nellie Forbush","type":"Role","_key":"111990","_from":"66107","_to":"66106"} +{"$label":"ACTS_IN","name":"Zeca Pagodinho","type":"Role","_key":"111996","_from":"66113","_to":"66111"} +{"$label":"ACTS_IN","name":"Zeca Pagodinho","type":"Role","_key":"111995","_from":"66112","_to":"66111"} +{"$label":"ACTS_IN","name":"Drums","type":"Role","_key":"112001","_from":"66120","_to":"66115"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"112000","_from":"66119","_to":"66115"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"111999","_from":"66118","_to":"66115"} +{"$label":"ACTS_IN","name":"Bass","type":"Role","_key":"111998","_from":"66117","_to":"66115"} +{"$label":"ACTS_IN","name":"Vocals, Piano","type":"Role","_key":"111997","_from":"66116","_to":"66115"} +{"$label":"DIRECTED","_key":"112027","_from":"66147","_to":"66122"} +{"$label":"ACTS_IN","name":"Tainha","type":"Role","_key":"112026","_from":"66146","_to":"66122"} +{"$label":"ACTS_IN","name":"Jo\u00e3o Guilherme Estrella","type":"Role","_key":"112025","_from":"66145","_to":"66122"} +{"$label":"ACTS_IN","name":"Pai de Jo\u00e3o \/ Jo\u00e3o's father","type":"Role","_key":"112024","_from":"66144","_to":"66122"} +{"$label":"ACTS_IN","name":"Psicanalista viciado \/ Drug-addicted psychologist","type":"Role","_key":"112023","_from":"66143","_to":"66122"} +{"$label":"ACTS_IN","name":"Senhora do tar\u00f4 \/ Tarot client","type":"Role","_key":"112022","_from":"66142","_to":"66122"} +{"$label":"ACTS_IN","name":"Corretor de im\u00f3veis \/ Real estate broker","type":"Role","_key":"112021","_from":"66141","_to":"66122"} +{"$label":"ACTS_IN","name":"M\u00e9dico \/ Doctor","type":"Role","_key":"112020","_from":"66140","_to":"66122"} +{"$label":"ACTS_IN","name":"D. Marly","type":"Role","_key":"112019","_from":"66139","_to":"66122"} +{"$label":"ACTS_IN","name":"Vendedor de amendoim \/ Peanut seller","type":"Role","_key":"112018","_from":"66138","_to":"66122"} +{"$label":"ACTS_IN","name":"Brun\u00e3o","type":"Role","_key":"112017","_from":"66137","_to":"66122"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"112016","_from":"66136","_to":"66122"} +{"$label":"ACTS_IN","name":"Boneco","type":"Role","_key":"112015","_from":"66135","_to":"66122"} +{"$label":"ACTS_IN","name":"Julinho","type":"Role","_key":"112014","_from":"66134","_to":"66122"} +{"$label":"ACTS_IN","name":"Laura adolescente \/ teen","type":"Role","_key":"112013","_from":"66133","_to":"66122"} +{"$label":"ACTS_IN","name":"Rub\u00e3o","type":"Role","_key":"112012","_from":"66132","_to":"66122"} +{"$label":"ACTS_IN","name":"Boneco adolescente \/ teen","type":"Role","_key":"112011","_from":"66131","_to":"66122"} +{"$label":"ACTS_IN","name":"Julinho adolescente \/ teen","type":"Role","_key":"112010","_from":"66130","_to":"66122"} +{"$label":"ACTS_IN","name":"Jo\u00e3o adolescente \/ teen","type":"Role","_key":"112009","_from":"66129","_to":"66122"} +{"$label":"ACTS_IN","name":"Sofia","type":"Role","_key":"112008","_from":"66128","_to":"66122"} +{"$label":"ACTS_IN","name":"Advogado \/ Lawyer Renato","type":"Role","_key":"112007","_from":"66127","_to":"66122"} +{"$label":"ACTS_IN","name":"Policial Federal 2","type":"Role","_key":"112006","_from":"66126","_to":"66122"} +{"$label":"ACTS_IN","name":"Policial Federal 1","type":"Role","_key":"112005","_from":"66125","_to":"66122"} +{"$label":"ACTS_IN","name":"Jo\u00e3o crian\u00e7a \/ child","type":"Role","_key":"112004","_from":"66124","_to":"66122"} +{"$label":"ACTS_IN","name":"M\u00e3e de Jo\u00e3o \/ Jo\u00e3o's mother","type":"Role","_key":"112003","_from":"66123","_to":"66122"} +{"$label":"ACTS_IN","name":"Schmidt - Goalie - The Germans","type":"Role","_key":"112046","_from":"66163","_to":"66149"} +{"$label":"ACTS_IN","name":"Mueller - Coach - The Germans","type":"Role","_key":"112044","_from":"66162","_to":"66149"} +{"$label":"ACTS_IN","name":"Tony Lewis - Allied Goalkeeper - The Players: Ireland","type":"Role","_key":"112043","_from":"66161","_to":"66149"} +{"$label":"ACTS_IN","name":"Erik Ball - Allied Soccer Player - The Players: Denmark","type":"Role","_key":"112042","_from":"66160","_to":"66149"} +{"$label":"ACTS_IN","name":"Arthur Hayes - The Players: Scotland","type":"Role","_key":"112041","_from":"66159","_to":"66149"} +{"$label":"ACTS_IN","name":"Doug Clure - The Players","type":"Role","_key":"112040","_from":"66158","_to":"66149"} +{"$label":"ACTS_IN","name":"Pieter Van Beck - The Players: Holland","type":"Role","_key":"112039","_from":"66157","_to":"66149"} +{"$label":"ACTS_IN","name":"Sid Harmor - Allied Soccer Player - The Players: England","type":"Role","_key":"112038","_from":"66156","_to":"66149"} +{"$label":"ACTS_IN","name":"Gunnar Hilsson - The Players: Norway","type":"Role","_key":"112037","_from":"66155","_to":"66149"} +{"$label":"ACTS_IN","name":"Paul Wolchek - The Players: Poland","type":"Role","_key":"112036","_from":"66154","_to":"66149"} +{"$label":"ACTS_IN","name":"Michel Fileu - The Players: Belgium","type":"Role","_key":"112035","_from":"66153","_to":"66149"} +{"$label":"ACTS_IN","name":"Carlos Rey - Allied Soccer Player - The Players: Argentina","type":"Role","_key":"112034","_from":"66152","_to":"66149"} +{"$label":"ACTS_IN","name":"Terry Brady - Allied Soccer Player - The Players: England","type":"Role","_key":"112033","_from":"66151","_to":"66149"} +{"$label":"ACTS_IN","name":"Cpl. Luis Fernandez - Allied Soccer Player - The Players: Trinidad","type":"Role","_key":"112031","_from":"66150","_to":"66149"} +{"$label":"ACTS_IN","name":"Diane Bodek","type":"Role","_key":"112051","_from":"66165","_to":"66164"} +{"$label":"ACTS_IN","name":"Pearl Stone","type":"Role","_key":"112058","_from":"66168","_to":"66166"} +{"$label":"ACTS_IN","name":"Phoebe Watson","type":"Role","_key":"112057","_from":"66167","_to":"66166"} +{"$label":"ACTS_IN","name":"Sheriff L.D. Wicker","type":"Role","_key":"112066","_from":"66171","_to":"66169"} +{"$label":"ACTS_IN","name":"Jack Younger","type":"Role","_key":"112064","_from":"66170","_to":"66169"} +{"$label":"ACTS_IN","name":"Aur\u00e9lia","type":"Role","_key":"112075","_from":"66175","_to":"66172"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"112074","_from":"66174","_to":"66172"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"112073","_from":"66173","_to":"66172"} +{"$label":"DIRECTED","_key":"112078","_from":"66177","_to":"66176"} +{"$label":"DIRECTED","_key":"112093","_from":"66187","_to":"66182"} +{"$label":"ACTS_IN","name":"Moustache","type":"Role","_key":"112092","_from":"66186","_to":"66182"} +{"$label":"ACTS_IN","name":"Whitey","type":"Role","_key":"112091","_from":"66185","_to":"66182"} +{"$label":"ACTS_IN","name":"PJ","type":"Role","_key":"112090","_from":"66184","_to":"66182"} +{"$label":"ACTS_IN","name":"Goose","type":"Role","_key":"112089","_from":"66183","_to":"66182"} +{"$label":"DIRECTED","_key":"119541","_from":"66187","_to":"70221"} +{"$label":"DIRECTED","_key":"119527","_from":"66187","_to":"70216"} +{"$label":"DIRECTED","_key":"112105","_from":"66197","_to":"66189"} +{"$label":"DIRECTED","_key":"112104","_from":"66196","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112103","_from":"66195","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112102","_from":"66194","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112101","_from":"66193","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112100","_from":"66192","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112099","_from":"66191","_to":"66189"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112098","_from":"66190","_to":"66189"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"112116","_from":"66210","_to":"66199"} +{"$label":"ACTS_IN","name":"Mukhin's Mother","type":"Role","_key":"112115","_from":"66209","_to":"66199"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"112114","_from":"66208","_to":"66199"} +{"$label":"ACTS_IN","name":"Irka","type":"Role","_key":"112113","_from":"66207","_to":"66199"} +{"$label":"ACTS_IN","name":"Nataha","type":"Role","_key":"112112","_from":"66206","_to":"66199"} +{"$label":"ACTS_IN","name":"Sery","type":"Role","_key":"112111","_from":"66205","_to":"66199"} +{"$label":"ACTS_IN","name":"Kolyan","type":"Role","_key":"112110","_from":"66204","_to":"66199"} +{"$label":"ACTS_IN","name":"Headmaster","type":"Role","_key":"112109","_from":"66203","_to":"66199"} +{"$label":"ACTS_IN","name":"Grisha","type":"Role","_key":"112108","_from":"66202","_to":"66199"} +{"$label":"ACTS_IN","name":"Madam","type":"Role","_key":"112107","_from":"66201","_to":"66199"} +{"$label":"ACTS_IN","name":"Vanya Solntsev","type":"Role","_key":"112106","_from":"66200","_to":"66199"} +{"$label":"DIRECTED","_key":"112123","_from":"66219","_to":"66214"} +{"$label":"DIRECTED","_key":"112122","_from":"66217","_to":"66214"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112121","_from":"66218","_to":"66214"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112120","_from":"66217","_to":"66214"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"112119","_from":"66216","_to":"66214"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112118","_from":"66215","_to":"66214"} +{"$label":"ACTS_IN","name":"Achille","type":"Role","_key":"112135","_from":"66225","_to":"66222"} +{"$label":"ACTS_IN","name":"Isabelle","type":"Role","_key":"112133","_from":"66224","_to":"66222"} +{"$label":"DIRECTED","_key":"112132","_from":"66223","_to":"66222"} +{"$label":"ACTS_IN","name":"Elodie","type":"Role","_key":"112144","_from":"66230","_to":"66226"} +{"$label":"ACTS_IN","name":"Patricia","type":"Role","_key":"112143","_from":"66229","_to":"66226"} +{"$label":"DIRECTED","_key":"112138","_from":"66228","_to":"66226"} +{"$label":"DIRECTED","_key":"112137","_from":"66227","_to":"66226"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"112148","_from":"66232","_to":"66231"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"112157","_from":"66235","_to":"66233"} +{"$label":"DIRECTED","_key":"112156","_from":"66234","_to":"66233"} +{"$label":"ACTS_IN","name":"Andr\u00e9","type":"Role","_key":"112173","_from":"66244","_to":"66238"} +{"$label":"ACTS_IN","name":"Roger","type":"Role","_key":"112172","_from":"66243","_to":"66238"} +{"$label":"ACTS_IN","name":"Le maire du village","type":"Role","_key":"112171","_from":"66242","_to":"66238"} +{"$label":"ACTS_IN","name":"Patrick","type":"Role","_key":"112168","_from":"66241","_to":"66238"} +{"$label":"ACTS_IN","name":"Mario Diccara","type":"Role","_key":"112167","_from":"66240","_to":"66238"} +{"$label":"DIRECTED","_key":"112166","_from":"66239","_to":"66238"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"112179","_from":"66248","_to":"66245"} +{"$label":"ACTS_IN","name":"Etienne","type":"Role","_key":"112178","_from":"66247","_to":"66245"} +{"$label":"DIRECTED","_key":"112174","_from":"66246","_to":"66245"} +{"$label":"DIRECTED","_key":"112199","_from":"66259","_to":"66249"} +{"$label":"ACTS_IN","name":"Slip Stream","type":"Role","_key":"112198","_from":"66258","_to":"66249"} +{"$label":"ACTS_IN","name":"Serpentor","type":"Role","_key":"112196","_from":"66257","_to":"66249"} +{"$label":"ACTS_IN","name":"Dial Tone","type":"Role","_key":"112195","_from":"66256","_to":"66249"} +{"$label":"ACTS_IN","name":"Tunnel Rat","type":"Role","_key":"112194","_from":"66255","_to":"66249"} +{"$label":"ACTS_IN","name":"Pythona","type":"Role","_key":"112193","_from":"66254","_to":"66249"} +{"$label":"ACTS_IN","name":"Dr. Mindbender","type":"Role","_key":"112192","_from":"66253","_to":"66249"} +{"$label":"ACTS_IN","name":"Beach-Head","type":"Role","_key":"112189","_from":"66252","_to":"66249"} +{"$label":"ACTS_IN","name":"Jinx","type":"Role","_key":"112182","_from":"66251","_to":"66249"} +{"$label":"ACTS_IN","name":"Low Light","type":"Role","_key":"112181","_from":"66250","_to":"66249"} +{"$label":"ACTS_IN","name":"Sonny Silverton","type":"Role","_key":"121211","_from":"66257","_to":"71198"} +{"$label":"ACTS_IN","name":"Rost","type":"Role","_key":"112203","_from":"66263","_to":"66261"} +{"$label":"ACTS_IN","name":"Conor","type":"Role","_key":"112202","_from":"66262","_to":"66261"} +{"$label":"DIRECTED","_key":"112209","_from":"66266","_to":"66264"} +{"$label":"ACTS_IN","name":"Agapito Carceles","type":"Role","_key":"112208","_from":"66265","_to":"66264"} +{"$label":"DIRECTED","_key":"112220","_from":"66273","_to":"66267"} +{"$label":"ACTS_IN","name":"Sam Bell Clone","type":"Role","_key":"112219","_from":"66272","_to":"66267"} +{"$label":"ACTS_IN","name":"Overmeyers","type":"Role","_key":"112217","_from":"66271","_to":"66267"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"112215","_from":"66270","_to":"66267"} +{"$label":"ACTS_IN","name":"Nanny","type":"Role","_key":"112214","_from":"66269","_to":"66267"} +{"$label":"ACTS_IN","name":"Little Eve","type":"Role","_key":"112213","_from":"66268","_to":"66267"} +{"$label":"ACTS_IN","name":"Professor Sadler","type":"Role","_key":"112232","_from":"66285","_to":"66275"} +{"$label":"ACTS_IN","name":"Zangief","type":"Role","_key":"112231","_from":"66284","_to":"66275"} +{"$label":"ACTS_IN","name":"Balrog Fabio La Cerda \/ Dan Hibiki","type":"Role","_key":"112230","_from":"66283","_to":"66275"} +{"$label":"ACTS_IN","name":"G\u00f4ken","type":"Role","_key":"112229","_from":"66282","_to":"66275"} +{"$label":"ACTS_IN","name":"Shun","type":"Role","_key":"112228","_from":"66281","_to":"66275"} +{"$label":"ACTS_IN","name":"Sakura Kasugano","type":"Role","_key":"112227","_from":"66280","_to":"66275"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"112226","_from":"66279","_to":"66275"} +{"$label":"ACTS_IN","name":"Chun-Li","type":"Role","_key":"112224","_from":"66278","_to":"66275"} +{"$label":"ACTS_IN","name":"Ken Masters","type":"Role","_key":"112223","_from":"66277","_to":"66275"} +{"$label":"DIRECTED","_key":"112221","_from":"66276","_to":"66275"} +{"$label":"ACTS_IN","name":"Monte","type":"Role","_key":"112238","_from":"66288","_to":"66286"} +{"$label":"ACTS_IN","name":"Enrique Xuncax","type":"Role","_key":"112235","_from":"66287","_to":"66286"} +{"$label":"DIRECTED","_key":"112280","_from":"66299","_to":"66298"} +{"$label":"ACTS_IN","name":"Young Amy","type":"Role","_key":"112286","_from":"66301","_to":"66300"} +{"$label":"DIRECTED","_key":"112305","_from":"66306","_to":"66304"} +{"$label":"ACTS_IN","name":"Anna de la Mesa","type":"Role","_key":"112303","_from":"66305","_to":"66304"} +{"$label":"ACTS_IN","name":"Howard Howard","type":"Role","_key":"112320","_from":"66315","_to":"66307"} +{"$label":"ACTS_IN","name":"Mrs. Snyder","type":"Role","_key":"112319","_from":"66314","_to":"66307"} +{"$label":"ACTS_IN","name":"Randall","type":"Role","_key":"112317","_from":"66313","_to":"66307"} +{"$label":"ACTS_IN","name":"Lucia","type":"Role","_key":"112315","_from":"66312","_to":"66307"} +{"$label":"ACTS_IN","name":"Strobe","type":"Role","_key":"112314","_from":"66311","_to":"66307"} +{"$label":"ACTS_IN","name":"Mr. Bennett","type":"Role","_key":"112313","_from":"66310","_to":"66307"} +{"$label":"ACTS_IN","name":"Mrs. Bennett","type":"Role","_key":"112312","_from":"66309","_to":"66307"} +{"$label":"ACTS_IN","name":"Rhonda","type":"Role","_key":"112311","_from":"66308","_to":"66307"} +{"$label":"DIRECTED","_key":"112336","_from":"66322","_to":"66318"} +{"$label":"ACTS_IN","name":"Narumi - Hai","type":"Role","_key":"112335","_from":"66321","_to":"66318"} +{"$label":"ACTS_IN","name":"Yomi - Huang Chaun","type":"Role","_key":"112334","_from":"66320","_to":"66318"} +{"$label":"ACTS_IN","name":"Riki-Oh Saiga","type":"Role","_key":"112332","_from":"66319","_to":"66318"} +{"$label":"DIRECTED","_key":"112337","_from":"66324","_to":"66323"} +{"$label":"DIRECTED","_key":"112340","_from":"66326","_to":"66325"} +{"$label":"DIRECTED","_key":"112354","_from":"66328","_to":"66327"} +{"$label":"ACTS_IN","name":"Chris R","type":"Role","_key":"112353","_from":"66337","_to":"66327"} +{"$label":"ACTS_IN","name":"Steven","type":"Role","_key":"112352","_from":"66336","_to":"66327"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"112351","_from":"66335","_to":"66327"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"112350","_from":"66334","_to":"66327"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"112349","_from":"66333","_to":"66327"} +{"$label":"ACTS_IN","name":"Claudette","type":"Role","_key":"112348","_from":"66332","_to":"66327"} +{"$label":"ACTS_IN","name":"Denny","type":"Role","_key":"112347","_from":"66331","_to":"66327"} +{"$label":"ACTS_IN","name":"Mark","type":"Role","_key":"112346","_from":"66330","_to":"66327"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"112345","_from":"66329","_to":"66327"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"112344","_from":"66328","_to":"66327"} +{"$label":"ACTS_IN","name":"Sheena","type":"Role","_key":"112360","_from":"66340","_to":"66339"} +{"$label":"ACTS_IN","name":"Malika","type":"Role","_key":"112366","_from":"66344","_to":"66341"} +{"$label":"ACTS_IN","name":"Denis","type":"Role","_key":"112365","_from":"66343","_to":"66341"} +{"$label":"ACTS_IN","name":"Aleksandra Nikolaevna","type":"Role","_key":"112364","_from":"66342","_to":"66341"} +{"$label":"DIRECTED","_key":"112377","_from":"66349","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112372","_from":"66348","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112370","_from":"66347","_to":"66345"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112368","_from":"66346","_to":"66345"} +{"$label":"ACTS_IN","name":"Brandon Housekeeper","type":"Role","_key":"112394","_from":"66357","_to":"66350"} +{"$label":"ACTS_IN","name":"Tony (as Anthony Kemble Cooper)","type":"Role","_key":"112393","_from":"66356","_to":"66350"} +{"$label":"ACTS_IN","name":"Dawes","type":"Role","_key":"112392","_from":"66355","_to":"66350"} +{"$label":"ACTS_IN","name":"Lloyd Brandon","type":"Role","_key":"112388","_from":"66354","_to":"66350"} +{"$label":"ACTS_IN","name":"Inspector Bristol","type":"Role","_key":"112386","_from":"66353","_to":"66350"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"112384","_from":"66352","_to":"66350"} +{"$label":"DIRECTED","_key":"112378","_from":"66351","_to":"66350"} +{"$label":"DIRECTED","_key":"112413","_from":"66372","_to":"66359"} +{"$label":"ACTS_IN","name":"Partier","type":"Role","_key":"112412","_from":"66371","_to":"66359"} +{"$label":"ACTS_IN","name":"Surfer","type":"Role","_key":"112411","_from":"66370","_to":"66359"} +{"$label":"ACTS_IN","name":"Gabe's Friend","type":"Role","_key":"112409","_from":"66369","_to":"66359"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"112408","_from":"66368","_to":"66359"} +{"$label":"ACTS_IN","name":"Shari","type":"Role","_key":"112407","_from":"66367","_to":"66359"} +{"$label":"ACTS_IN","name":"Father John","type":"Role","_key":"112405","_from":"66366","_to":"66359"} +{"$label":"ACTS_IN","name":"Ellen","type":"Role","_key":"112404","_from":"66365","_to":"66359"} +{"$label":"ACTS_IN","name":"Billy","type":"Role","_key":"112403","_from":"66364","_to":"66359"} +{"$label":"ACTS_IN","name":"Tori","type":"Role","_key":"112400","_from":"66363","_to":"66359"} +{"$label":"ACTS_IN","name":"Cody","type":"Role","_key":"112399","_from":"66362","_to":"66359"} +{"$label":"ACTS_IN","name":"Shaun","type":"Role","_key":"112397","_from":"66361","_to":"66359"} +{"$label":"ACTS_IN","name":"Partier","type":"Role","_key":"112396","_from":"66360","_to":"66359"} +{"$label":"ACTS_IN","name":"Gabriel","type":"Role","_key":"112887","_from":"66361","_to":"66632"} +{"$label":"ACTS_IN","name":"M\u00e8re Sup\u00e9rieure","type":"Role","_key":"112420","_from":"66377","_to":"66374"} +{"$label":"ACTS_IN","name":"Annie","type":"Role","_key":"112417","_from":"66376","_to":"66374"} +{"$label":"DIRECTED","_key":"112415","_from":"66375","_to":"66374"} +{"$label":"ACTS_IN","name":"Shimen, the Grocer","type":"Role","_key":"112435","_from":"66382","_to":"66378"} +{"$label":"ACTS_IN","name":"Prince","type":"Role","_key":"112434","_from":"66381","_to":"66378"} +{"$label":"ACTS_IN","name":"Drummer","type":"Role","_key":"112433","_from":"66380","_to":"66378"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"112424","_from":"66379","_to":"66378"} +{"$label":"ACTS_IN","name":"Yasmine","type":"Role","_key":"112442","_from":"66386","_to":"66384"} +{"$label":"ACTS_IN","name":"Yussef","type":"Role","_key":"112441","_from":"66385","_to":"66384"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112456","_from":"66396","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112455","_from":"66395","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112454","_from":"66394","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112453","_from":"66393","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112452","_from":"66392","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112451","_from":"66391","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112450","_from":"66390","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112449","_from":"66389","_to":"66388"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112535","_from":"66391","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112458","_from":"66391","_to":"66397"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112754","_from":"66392","_to":"66578"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112461","_from":"66392","_to":"66397"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113960","_from":"66393","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112511","_from":"66395","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112579","_from":"66396","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112473","_from":"66411","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112472","_from":"66410","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112471","_from":"66409","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112470","_from":"66408","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112469","_from":"66407","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112468","_from":"66406","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112467","_from":"66405","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112466","_from":"66404","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112465","_from":"66403","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112464","_from":"66402","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112463","_from":"66401","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112462","_from":"66400","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112460","_from":"66399","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112459","_from":"66398","_to":"66397"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112544","_from":"66398","_to":"66457"} +{"$label":"ACTS_IN","name":"Teja (T.J.)","type":"Role","_key":"112485","_from":"66418","_to":"66413"} +{"$label":"ACTS_IN","name":"Geeta","type":"Role","_key":"112484","_from":"66417","_to":"66413"} +{"$label":"ACTS_IN","name":"Dipu","type":"Role","_key":"112483","_from":"66416","_to":"66413"} +{"$label":"ACTS_IN","name":"Singhania","type":"Role","_key":"112481","_from":"66415","_to":"66413"} +{"$label":"ACTS_IN","name":"Ramesh","type":"Role","_key":"112480","_from":"66414","_to":"66413"} +{"$label":"ACTS_IN","name":"Pooja","type":"Role","_key":"120716","_from":"66417","_to":"70898"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112497","_from":"66427","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112496","_from":"66426","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112495","_from":"66425","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112494","_from":"66424","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112493","_from":"66423","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112492","_from":"66422","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112489","_from":"66421","_to":"66419"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112488","_from":"66420","_to":"66419"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113957","_from":"66420","_to":"67118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112504","_from":"66420","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112549","_from":"66421","_to":"66457"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113950","_from":"66422","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112591","_from":"66422","_to":"66484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113943","_from":"66423","_to":"67115"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113132","_from":"66423","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113080","_from":"66423","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112559","_from":"66423","_to":"66467"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112628","_from":"66425","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113955","_from":"66426","_to":"67118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112500","_from":"66426","_to":"66428"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112510","_from":"66438","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112509","_from":"66437","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112508","_from":"66436","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112507","_from":"66435","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112506","_from":"66434","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112505","_from":"66433","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112503","_from":"66432","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112502","_from":"66431","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112501","_from":"66430","_to":"66428"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112499","_from":"66429","_to":"66428"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113951","_from":"66429","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112821","_from":"66429","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112607","_from":"66429","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112568","_from":"66429","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112529","_from":"66429","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112512","_from":"66429","_to":"66439"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113949","_from":"66430","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112530","_from":"66434","_to":"66448"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112690","_from":"66436","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112624","_from":"66436","_to":"66505"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112525","_from":"66436","_to":"66439"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114187","_from":"66438","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113961","_from":"66438","_to":"67118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112518","_from":"66438","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112524","_from":"66447","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112523","_from":"66446","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112522","_from":"66445","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112521","_from":"66444","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112520","_from":"66443","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112519","_from":"66442","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112517","_from":"66441","_to":"66439"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112513","_from":"66440","_to":"66439"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113956","_from":"66440","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112653","_from":"66440","_to":"66523"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112532","_from":"66440","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112546","_from":"66443","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112539","_from":"66456","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112538","_from":"66455","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112537","_from":"66454","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112536","_from":"66453","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112534","_from":"66452","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112533","_from":"66451","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112531","_from":"66450","_to":"66448"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112527","_from":"66449","_to":"66448"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114242","_from":"66449","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114194","_from":"66449","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113954","_from":"66449","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113940","_from":"66449","_to":"67115"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113115","_from":"66449","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113079","_from":"66449","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113047","_from":"66449","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112648","_from":"66449","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112620","_from":"66449","_to":"66505"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112597","_from":"66449","_to":"66490"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113958","_from":"66450","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113944","_from":"66450","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112567","_from":"66450","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112541","_from":"66450","_to":"66457"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113945","_from":"66452","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112578","_from":"66452","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112552","_from":"66455","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112555","_from":"66466","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112554","_from":"66465","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112553","_from":"66464","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112551","_from":"66463","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112550","_from":"66462","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112548","_from":"66461","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112547","_from":"66460","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112545","_from":"66459","_to":"66457"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112540","_from":"66458","_to":"66457"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113953","_from":"66458","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112718","_from":"66458","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113959","_from":"66459","_to":"67118"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113941","_from":"66459","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112589","_from":"66459","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112572","_from":"66459","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112592","_from":"66464","_to":"66484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113962","_from":"66465","_to":"67118"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112566","_from":"66475","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112565","_from":"66474","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112564","_from":"66473","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112563","_from":"66472","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112562","_from":"66471","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112561","_from":"66470","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112560","_from":"66469","_to":"66467"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112557","_from":"66468","_to":"66467"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113946","_from":"66468","_to":"67115"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112691","_from":"66468","_to":"66550"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112584","_from":"66468","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112575","_from":"66468","_to":"66476"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112682","_from":"66469","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112613","_from":"66469","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112601","_from":"66469","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112600","_from":"66470","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112590","_from":"66470","_to":"66484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112609","_from":"66472","_to":"66497"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112595","_from":"66472","_to":"66490"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112644","_from":"66473","_to":"66513"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112581","_from":"66483","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112580","_from":"66482","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112577","_from":"66481","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112576","_from":"66480","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112574","_from":"66479","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112573","_from":"66478","_to":"66476"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112571","_from":"66477","_to":"66476"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113942","_from":"66482","_to":"67115"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112593","_from":"66489","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112588","_from":"66488","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112587","_from":"66487","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112586","_from":"66486","_to":"66484"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112585","_from":"66485","_to":"66484"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113948","_from":"66485","_to":"67115"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112637","_from":"66485","_to":"66513"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112596","_from":"66485","_to":"66490"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112638","_from":"66487","_to":"66513"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112605","_from":"66496","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112604","_from":"66495","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112603","_from":"66494","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112602","_from":"66493","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112599","_from":"66492","_to":"66490"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112598","_from":"66491","_to":"66490"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112640","_from":"66494","_to":"66513"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112951","_from":"66495","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112618","_from":"66504","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112617","_from":"66503","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112616","_from":"66502","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112615","_from":"66501","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112614","_from":"66500","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112612","_from":"66499","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112611","_from":"66498","_to":"66497"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112631","_from":"66512","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112630","_from":"66511","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112629","_from":"66510","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112627","_from":"66509","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112626","_from":"66508","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112623","_from":"66507","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112622","_from":"66506","_to":"66505"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112728","_from":"66509","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112646","_from":"66522","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112645","_from":"66521","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112643","_from":"66520","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112642","_from":"66519","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112641","_from":"66518","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112639","_from":"66517","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112636","_from":"66516","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112635","_from":"66515","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112634","_from":"66514","_to":"66513"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114191","_from":"66514","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112839","_from":"66514","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112822","_from":"66514","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112717","_from":"66514","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112696","_from":"66514","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112647","_from":"66514","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112651","_from":"66515","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112657","_from":"66517","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114189","_from":"66518","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112658","_from":"66528","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112656","_from":"66527","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112655","_from":"66526","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112654","_from":"66525","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112652","_from":"66524","_to":"66523"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112674","_from":"66528","_to":"66538"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112666","_from":"66537","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112665","_from":"66536","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112664","_from":"66535","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112663","_from":"66534","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112662","_from":"66533","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112661","_from":"66532","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112660","_from":"66531","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112659","_from":"66530","_to":"66529"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114243","_from":"66530","_to":"67285"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112975","_from":"66530","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112910","_from":"66530","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112891","_from":"66530","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112848","_from":"66530","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112808","_from":"66530","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112719","_from":"66530","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112675","_from":"66530","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112965","_from":"66531","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112684","_from":"66532","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114244","_from":"66533","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112683","_from":"66533","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112827","_from":"66535","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112792","_from":"66535","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112713","_from":"66535","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112687","_from":"66535","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112673","_from":"66542","_to":"66538"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112672","_from":"66541","_to":"66538"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112670","_from":"66540","_to":"66538"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112669","_from":"66539","_to":"66538"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112729","_from":"66542","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112692","_from":"66542","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112688","_from":"66549","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112686","_from":"66548","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112680","_from":"66547","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112679","_from":"66546","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112677","_from":"66545","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112676","_from":"66544","_to":"66543"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114241","_from":"66545","_to":"67285"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113091","_from":"66545","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113054","_from":"66545","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113030","_from":"66545","_to":"66671"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112970","_from":"66545","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112939","_from":"66545","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112889","_from":"66545","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112868","_from":"66545","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112820","_from":"66545","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112805","_from":"66545","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112751","_from":"66545","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112705","_from":"66545","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112703","_from":"66546","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114245","_from":"66547","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112752","_from":"66547","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112725","_from":"66547","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112701","_from":"66555","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112700","_from":"66554","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112699","_from":"66553","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112698","_from":"66552","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112695","_from":"66551","_to":"66550"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112962","_from":"66551","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112893","_from":"66551","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112837","_from":"66551","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112804","_from":"66551","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112749","_from":"66551","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112704","_from":"66551","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112744","_from":"66552","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114246","_from":"66553","_to":"67285"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112979","_from":"66553","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112941","_from":"66553","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112897","_from":"66553","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112750","_from":"66553","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112707","_from":"66553","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112738","_from":"66554","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112716","_from":"66563","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112715","_from":"66562","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112714","_from":"66561","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112712","_from":"66560","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112711","_from":"66559","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112710","_from":"66558","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112708","_from":"66557","_to":"66556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112731","_from":"66557","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112935","_from":"66561","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112913","_from":"66561","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112864","_from":"66561","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112852","_from":"66561","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112826","_from":"66561","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112766","_from":"66561","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112788","_from":"66562","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112736","_from":"66562","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112730","_from":"66562","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112732","_from":"66570","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112726","_from":"66569","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112724","_from":"66568","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112723","_from":"66567","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112722","_from":"66566","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112720","_from":"66565","_to":"66564"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112853","_from":"66566","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112760","_from":"66566","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112742","_from":"66567","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112835","_from":"66569","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112735","_from":"66569","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112807","_from":"66570","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112748","_from":"66577","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112746","_from":"66576","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112745","_from":"66575","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112740","_from":"66574","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112739","_from":"66573","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112733","_from":"66572","_to":"66571"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114237","_from":"66572","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114188","_from":"66572","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114197","_from":"66573","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112762","_from":"66574","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112844","_from":"66575","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112759","_from":"66583","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112758","_from":"66582","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112757","_from":"66581","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112756","_from":"66580","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112753","_from":"66579","_to":"66578"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112791","_from":"66579","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112849","_from":"66583","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112774","_from":"66594","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112773","_from":"66593","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112772","_from":"66592","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112770","_from":"66591","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112768","_from":"66590","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112767","_from":"66589","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112765","_from":"66588","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112764","_from":"66587","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112763","_from":"66586","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112761","_from":"66585","_to":"66584"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112831","_from":"66585","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112855","_from":"66586","_to":"66622"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113033","_from":"66588","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112957","_from":"66588","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112924","_from":"66588","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113124","_from":"66590","_to":"66692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113043","_from":"66590","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112875","_from":"66590","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112832","_from":"66592","_to":"66614"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113083","_from":"66594","_to":"66682"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113014","_from":"66594","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112830","_from":"66594","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112816","_from":"66594","_to":"66606"} +{"$label":"ACTS_IN","name":"La Boeuf","type":"Role","_key":"112780","_from":"66596","_to":"66595"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112789","_from":"66601","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112786","_from":"66600","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112785","_from":"66599","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112784","_from":"66598","_to":"66597"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112985","_from":"66598","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112956","_from":"66598","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112927","_from":"66598","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114195","_from":"66599","_to":"67266"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112851","_from":"66599","_to":"66622"} +{"$label":"DIRECTED","_key":"112803","_from":"66605","_to":"66602"} +{"$label":"ACTS_IN","name":"Officer O'Dell","type":"Role","_key":"112799","_from":"66604","_to":"66602"} +{"$label":"ACTS_IN","name":"Iraq Jack","type":"Role","_key":"112797","_from":"66603","_to":"66602"} +{"$label":"DIRECTED","_key":"121314","_from":"66605","_to":"71276"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112819","_from":"66613","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112817","_from":"66612","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112815","_from":"66611","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112813","_from":"66610","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112811","_from":"66609","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112810","_from":"66608","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112806","_from":"66607","_to":"66606"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112833","_from":"66618","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112829","_from":"66617","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112828","_from":"66616","_to":"66614"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112823","_from":"66615","_to":"66614"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112945","_from":"66615","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112870","_from":"66615","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112915","_from":"66616","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112847","_from":"66616","_to":"66622"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113057","_from":"66617","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112843","_from":"66621","_to":"66619"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112841","_from":"66620","_to":"66619"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113096","_from":"66620","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113058","_from":"66620","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113031","_from":"66620","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112873","_from":"66628","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112872","_from":"66627","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112871","_from":"66626","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112865","_from":"66625","_to":"66623"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112863","_from":"66624","_to":"66623"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118536","_from":"66624","_to":"69688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113108","_from":"66624","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113050","_from":"66624","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113028","_from":"66624","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112992","_from":"66624","_to":"66653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112943","_from":"66624","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112912","_from":"66624","_to":"66638"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113181","_from":"66627","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113137","_from":"66627","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113120","_from":"66627","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113051","_from":"66627","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113032","_from":"66627","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112990","_from":"66627","_to":"66653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112949","_from":"66627","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113144","_from":"66628","_to":"66693"} +{"$label":"DIRECTED","_key":"112885","_from":"66631","_to":"66629"} +{"$label":"ACTS_IN","name":"Wolf","type":"Role","_key":"112881","_from":"66630","_to":"66629"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112903","_from":"66637","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112902","_from":"66636","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112901","_from":"66635","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112896","_from":"66634","_to":"66633"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112909","_from":"66634","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113006","_from":"66637","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112997","_from":"66637","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112916","_from":"66640","_to":"66638"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112914","_from":"66639","_to":"66638"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113098","_from":"66639","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113053","_from":"66639","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112921","_from":"66639","_to":"66641"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113045","_from":"66640","_to":"66675"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113022","_from":"66640","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112986","_from":"66640","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112954","_from":"66640","_to":"66646"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112940","_from":"66640","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112930","_from":"66643","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112925","_from":"66642","_to":"66641"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113039","_from":"66642","_to":"66673"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112964","_from":"66642","_to":"66646"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112983","_from":"66643","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112947","_from":"66645","_to":"66644"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112967","_from":"66649","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112960","_from":"66648","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112959","_from":"66647","_to":"66646"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112991","_from":"66647","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112995","_from":"66648","_to":"66653"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112981","_from":"66652","_to":"66650"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"112973","_from":"66651","_to":"66650"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112999","_from":"66657","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112996","_from":"66656","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112989","_from":"66655","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"112987","_from":"66654","_to":"66653"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113002","_from":"66656","_to":"66658"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118625","_from":"66657","_to":"69749"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113011","_from":"66664","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113009","_from":"66663","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113008","_from":"66662","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113005","_from":"66661","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113004","_from":"66660","_to":"66658"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113003","_from":"66659","_to":"66658"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113064","_from":"66661","_to":"66676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113041","_from":"66661","_to":"66673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113172","_from":"66662","_to":"66700"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113021","_from":"66670","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113019","_from":"66669","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113018","_from":"66668","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113017","_from":"66667","_to":"66665"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113016","_from":"66666","_to":"66665"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113069","_from":"66669","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113074","_from":"66670","_to":"66676"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113025","_from":"66672","_to":"66671"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113128","_from":"66672","_to":"66692"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113116","_from":"66672","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113067","_from":"66672","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113044","_from":"66674","_to":"66673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113076","_from":"66681","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113072","_from":"66680","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113071","_from":"66679","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113070","_from":"66678","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113068","_from":"66677","_to":"66676"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113104","_from":"66678","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113090","_from":"66685","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113088","_from":"66684","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113084","_from":"66683","_to":"66682"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113150","_from":"66683","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113114","_from":"66685","_to":"66691"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113110","_from":"66690","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113109","_from":"66689","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113106","_from":"66688","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113101","_from":"66687","_to":"66686"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113160","_from":"66690","_to":"66696"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113142","_from":"66695","_to":"66693"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113140","_from":"66694","_to":"66693"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113156","_from":"66699","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113154","_from":"66698","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113152","_from":"66697","_to":"66696"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113177","_from":"66697","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113191","_from":"66698","_to":"66701"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113190","_from":"66702","_to":"66701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113206","_from":"66705","_to":"66703"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"113197","_from":"66704","_to":"66703"} +{"$label":"ACTS_IN","name":"Shelly Walker","type":"Role","_key":"113215","_from":"66712","_to":"66707"} +{"$label":"ACTS_IN","name":"Cmdr. Brandon Thaine","type":"Role","_key":"113214","_from":"66711","_to":"66707"} +{"$label":"ACTS_IN","name":"The Suit (voice)","type":"Role","_key":"113211","_from":"66710","_to":"66707"} +{"$label":"ACTS_IN","name":"Jun'hee","type":"Role","_key":"113210","_from":"66709","_to":"66707"} +{"$label":"DIRECTED","_key":"113208","_from":"66708","_to":"66707"} +{"$label":"DIRECTED","_key":"121050","_from":"66708","_to":"71088"} +{"$label":"ACTS_IN","name":"Jakob","type":"Role","_key":"113217","_from":"66715","_to":"66713"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"113216","_from":"66714","_to":"66713"} +{"$label":"ACTS_IN","name":"Co-Pilot","type":"Role","_key":"113237","_from":"66718","_to":"66717"} +{"$label":"ACTS_IN","name":"Destroyer","type":"Role","_key":"113242","_from":"66721","_to":"66719"} +{"$label":"ACTS_IN","name":"Brian Deegan","type":"Role","_key":"113241","_from":"66720","_to":"66719"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114952","_from":"66720","_to":"67701"} +{"$label":"DIRECTED","_key":"113254","_from":"66727","_to":"66724"} +{"$label":"ACTS_IN","name":"Money","type":"Role","_key":"113250","_from":"66726","_to":"66724"} +{"$label":"ACTS_IN","name":"Martine","type":"Role","_key":"113247","_from":"66725","_to":"66724"} +{"$label":"ACTS_IN","name":"Prince of Wales (Bertie)","type":"Role","_key":"113270","_from":"66732","_to":"66730"} +{"$label":"ACTS_IN","name":"Doctor Jenner","type":"Role","_key":"113269","_from":"66731","_to":"66730"} +{"$label":"ACTS_IN","name":"Dr. Guani - Foreign Minister, Uruguay","type":"Role","_key":"113283","_from":"66737","_to":"66734"} +{"$label":"ACTS_IN","name":"Mike Fowler","type":"Role","_key":"113281","_from":"66736","_to":"66734"} +{"$label":"ACTS_IN","name":"Captain Bell - H.M.S. Exeter","type":"Role","_key":"113275","_from":"66735","_to":"66734"} +{"$label":"ACTS_IN","name":"Travis Parker","type":"Role","_key":"113296","_from":"66743","_to":"66740"} +{"$label":"ACTS_IN","name":"David Benedek","type":"Role","_key":"113294","_from":"66742","_to":"66740"} +{"$label":"ACTS_IN","name":"Jussi Oksanen","type":"Role","_key":"113293","_from":"66741","_to":"66740"} +{"$label":"ACTS_IN","name":"Tom Aibelli","type":"Role","_key":"113302","_from":"66748","_to":"66746"} +{"$label":"ACTS_IN","name":"Bus Woman","type":"Role","_key":"113301","_from":"66747","_to":"66746"} +{"$label":"ACTS_IN","name":"Candy","type":"Role","_key":"113312","_from":"66754","_to":"66749"} +{"$label":"ACTS_IN","name":"Khoji","type":"Role","_key":"113311","_from":"66753","_to":"66749"} +{"$label":"ACTS_IN","name":"Gurdit Singh","type":"Role","_key":"113310","_from":"66752","_to":"66749"} +{"$label":"ACTS_IN","name":"Mr. Brar","type":"Role","_key":"113309","_from":"66751","_to":"66749"} +{"$label":"ACTS_IN","name":"Jagjot Gill","type":"Role","_key":"113307","_from":"66750","_to":"66749"} +{"$label":"DIRECTED","_key":"113341","_from":"66765","_to":"66763"} +{"$label":"ACTS_IN","name":"Allison Moller","type":"Role","_key":"113335","_from":"66764","_to":"66763"} +{"$label":"ACTS_IN","name":"Jen Tyler","type":"Role","_key":"119115","_from":"66764","_to":"70011"} +{"$label":"ACTS_IN","name":"Yaeli","type":"Role","_key":"113346","_from":"66771","_to":"66767"} +{"$label":"ACTS_IN","name":"Ophir","type":"Role","_key":"113345","_from":"66770","_to":"66767"} +{"$label":"ACTS_IN","name":"Lior Amichai 'Jagger'","type":"Role","_key":"113344","_from":"66769","_to":"66767"} +{"$label":"ACTS_IN","name":"Yossi","type":"Role","_key":"113343","_from":"66768","_to":"66767"} +{"$label":"ACTS_IN","name":"The Girl","type":"Role","_key":"113348","_from":"66774","_to":"66772"} +{"$label":"DIRECTED","_key":"113347","_from":"66773","_to":"66772"} +{"$label":"ACTS_IN","name":"Mikey","type":"Role","_key":"113358","_from":"66776","_to":"66775"} +{"$label":"DIRECTED","_key":"113366","_from":"66780","_to":"66778"} +{"$label":"ACTS_IN","name":"Dean","type":"Role","_key":"113363","_from":"66779","_to":"66778"} +{"$label":"ACTS_IN","name":"Devin","type":"Role","_key":"113371","_from":"66784","_to":"66781"} +{"$label":"ACTS_IN","name":"Christa","type":"Role","_key":"113370","_from":"66783","_to":"66781"} +{"$label":"ACTS_IN","name":"Caroline","type":"Role","_key":"113369","_from":"66782","_to":"66781"} +{"$label":"DIRECTED","_key":"113377","_from":"66787","_to":"66786"} +{"$label":"ACTS_IN","name":"Marcello (Doctor)","type":"Role","_key":"113390","_from":"66795","_to":"66788"} +{"$label":"ACTS_IN","name":"Vikingo","type":"Role","_key":"113388","_from":"66794","_to":"66788"} +{"$label":"ACTS_IN","name":"Grazia (Marcello's Mother)","type":"Role","_key":"113387","_from":"66793","_to":"66788"} +{"$label":"ACTS_IN","name":"Marina (Alfonso's Mother)","type":"Role","_key":"113386","_from":"66792","_to":"66788"} +{"$label":"ACTS_IN","name":"Tia Maria (Alfonso's Aunt)","type":"Role","_key":"113385","_from":"66791","_to":"66788"} +{"$label":"ACTS_IN","name":"Valeria (Gianni's Mother)","type":"Role","_key":"113384","_from":"66790","_to":"66788"} +{"$label":"ACTS_IN","name":"Gianni","type":"Role","_key":"113383","_from":"66789","_to":"66788"} +{"$label":"DIRECTED","_key":"113382","_from":"66789","_to":"66788"} +{"$label":"DIRECTED","_key":"113418","_from":"66824","_to":"66796"} +{"$label":"ACTS_IN","name":"Inn Reveller (uncredited)","type":"Role","_key":"113417","_from":"66823","_to":"66796"} +{"$label":"ACTS_IN","name":"Gollum (body) (uncredited)","type":"Role","_key":"113416","_from":"66822","_to":"66796"} +{"$label":"ACTS_IN","name":"Orc","type":"Role","_key":"113415","_from":"66821","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc (as Carli Valence)","type":"Role","_key":"113414","_from":"66820","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc","type":"Role","_key":"113413","_from":"66819","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc","type":"Role","_key":"113412","_from":"66818","_to":"66796"} +{"$label":"ACTS_IN","name":"Gollum in the sack","type":"Role","_key":"113411","_from":"66817","_to":"66796"} +{"$label":"ACTS_IN","name":"Orc","type":"Role","_key":"113410","_from":"66816","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc","type":"Role","_key":"113409","_from":"66815","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc","type":"Role","_key":"113408","_from":"66814","_to":"66796"} +{"$label":"ACTS_IN","name":"Background Orc","type":"Role","_key":"113407","_from":"66813","_to":"66796"} +{"$label":"ACTS_IN","name":"Orc","type":"Role","_key":"113406","_from":"66812","_to":"66796"} +{"$label":"ACTS_IN","name":"Orc","type":"Role","_key":"113405","_from":"66811","_to":"66796"} +{"$label":"ACTS_IN","name":"Orc","type":"Role","_key":"113404","_from":"66810","_to":"66796"} +{"$label":"ACTS_IN","name":"Angry Villager","type":"Role","_key":"113403","_from":"66809","_to":"66796"} +{"$label":"ACTS_IN","name":"Ringwraith","type":"Role","_key":"113402","_from":"66808","_to":"66796"} +{"$label":"ACTS_IN","name":"Ringwraith","type":"Role","_key":"113401","_from":"66807","_to":"66796"} +{"$label":"ACTS_IN","name":"Disgruntled Orc \/ Orc","type":"Role","_key":"113400","_from":"66806","_to":"66796"} +{"$label":"ACTS_IN","name":"Dagbash \/ Orc","type":"Role","_key":"113399","_from":"66805","_to":"66796"} +{"$label":"ACTS_IN","name":"Mirkwood Elf","type":"Role","_key":"113398","_from":"66804","_to":"66796"} +{"$label":"ACTS_IN","name":"Gollum","type":"Role","_key":"113397","_from":"66803","_to":"66796"} +{"$label":"ACTS_IN","name":"Gollum (additional voicework) (voice)","type":"Role","_key":"113396","_from":"66802","_to":"66796"} +{"$label":"ACTS_IN","name":"Gollum \/ Goblok (voice)","type":"Role","_key":"113395","_from":"66801","_to":"66796"} +{"$label":"ACTS_IN","name":"Arwen","type":"Role","_key":"113394","_from":"66800","_to":"66796"} +{"$label":"ACTS_IN","name":"Arithir","type":"Role","_key":"113393","_from":"66799","_to":"66796"} +{"$label":"ACTS_IN","name":"Gandalf","type":"Role","_key":"113392","_from":"66798","_to":"66796"} +{"$label":"ACTS_IN","name":"Aragorn","type":"Role","_key":"113391","_from":"66797","_to":"66796"} +{"$label":"DIRECTED","_key":"113421","_from":"66826","_to":"66825"} +{"$label":"ACTS_IN","name":"Maria DeGroot","type":"Role","_key":"113429","_from":"66830","_to":"66828"} +{"$label":"ACTS_IN","name":"Kurt Hout","type":"Role","_key":"113425","_from":"66829","_to":"66828"} +{"$label":"ACTS_IN","name":"King Leonidas","type":"Role","_key":"121629","_from":"66829","_to":"71457"} +{"$label":"ACTS_IN","name":"Ken Jorgenson","type":"Role","_key":"118026","_from":"66829","_to":"69380"} +{"$label":"ACTS_IN","name":"Sgt. Marcus Mueller","type":"Role","_key":"113436","_from":"66833","_to":"66832"} +{"$label":"ACTS_IN","name":"Angie Valentine","type":"Role","_key":"113442","_from":"66837","_to":"66834"} +{"$label":"ACTS_IN","name":"Jackie Leighton","type":"Role","_key":"113441","_from":"66836","_to":"66834"} +{"$label":"ACTS_IN","name":"Doug Hallerton","type":"Role","_key":"113440","_from":"66835","_to":"66834"} +{"$label":"ACTS_IN","name":"Fiona Campbell","type":"Role","_key":"115666","_from":"66836","_to":"68094"} +{"$label":"DIRECTED","_key":"113445","_from":"66839","_to":"66838"} +{"$label":"DIRECTED","_key":"118544","_from":"66839","_to":"69698"} +{"$label":"DIRECTED","_key":"113462","_from":"66846","_to":"66843"} +{"$label":"ACTS_IN","name":"Dr. Mason","type":"Role","_key":"113459","_from":"66845","_to":"66843"} +{"$label":"ACTS_IN","name":"Ruth Berent","type":"Role","_key":"113454","_from":"66844","_to":"66843"} +{"$label":"DIRECTED","_key":"114773","_from":"66846","_to":"67605"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113467","_from":"66852","_to":"66847"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113466","_from":"66851","_to":"66847"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113465","_from":"66850","_to":"66847"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113464","_from":"66849","_to":"66847"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113463","_from":"66848","_to":"66847"} +{"$label":"ACTS_IN","name":"Henry Kray","type":"Role","_key":"113469","_from":"66858","_to":"66857"} +{"$label":"ACTS_IN","name":"Chan Ka-lok","type":"Role","_key":"113478","_from":"66865","_to":"66860"} +{"$label":"ACTS_IN","name":"Macu","type":"Role","_key":"113477","_from":"66864","_to":"66860"} +{"$label":"ACTS_IN","name":"The Governor of Kau Man","type":"Role","_key":"113474","_from":"66863","_to":"66860"} +{"$label":"ACTS_IN","name":"Tiger Lui","type":"Role","_key":"113473","_from":"66862","_to":"66860"} +{"$label":"ACTS_IN","name":"Miu Chui-Fa","type":"Role","_key":"113471","_from":"66861","_to":"66860"} +{"$label":"ACTS_IN","name":"Miu Chui-Fa","type":"Role","_key":"114037","_from":"66861","_to":"67155"} +{"$label":"ACTS_IN","name":"Ma Kai-Sin","type":"Role","_key":"117021","_from":"66862","_to":"68869"} +{"$label":"ACTS_IN","name":"Lui Lun's Master","type":"Role","_key":"117591","_from":"66864","_to":"69130"} +{"$label":"ACTS_IN","name":"Chan Ka Lok","type":"Role","_key":"114038","_from":"66865","_to":"67155"} +{"$label":"DIRECTED","_key":"113486","_from":"66870","_to":"66866"} +{"$label":"ACTS_IN","name":"Tania Van De Merwe","type":"Role","_key":"113484","_from":"66869","_to":"66866"} +{"$label":"ACTS_IN","name":"Grey Bradnam","type":"Role","_key":"113483","_from":"66868","_to":"66866"} +{"$label":"ACTS_IN","name":"Wikus van der Merwe","type":"Role","_key":"113482","_from":"66867","_to":"66866"} +{"$label":"ACTS_IN","name":"Christine","type":"Role","_key":"113494","_from":"66873","_to":"66872"} +{"$label":"ACTS_IN","name":"Barsamian","type":"Role","_key":"113503","_from":"66877","_to":"66874"} +{"$label":"ACTS_IN","name":"Garance Leclerc","type":"Role","_key":"113502","_from":"66876","_to":"66874"} +{"$label":"DIRECTED","_key":"113498","_from":"66875","_to":"66874"} +{"$label":"ACTS_IN","name":"Sgt Major Kirby","type":"Role","_key":"113517","_from":"66882","_to":"66881"} +{"$label":"ACTS_IN","name":"Howie Zimmerman","type":"Role","_key":"117103","_from":"66882","_to":"68902"} +{"$label":"ACTS_IN","name":"Ramon","type":"Role","_key":"113526","_from":"66887","_to":"66884"} +{"$label":"ACTS_IN","name":"Kenny Kirkland","type":"Role","_key":"113525","_from":"66886","_to":"66884"} +{"$label":"DIRECTED","_key":"113524","_from":"66885","_to":"66884"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113538","_from":"66899","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113537","_from":"66898","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113536","_from":"66897","_to":"66888"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113535","_from":"66896","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113534","_from":"66895","_to":"66888"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113533","_from":"66894","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113532","_from":"66893","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113531","_from":"66892","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113530","_from":"66891","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113529","_from":"66890","_to":"66888"} +{"$label":"DIRECTED","_key":"113528","_from":"66889","_to":"66888"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113557","_from":"66890","_to":"66909"} +{"$label":"DIRECTED","_key":"113554","_from":"66908","_to":"66900"} +{"$label":"ACTS_IN","name":"Plunkett","type":"Role","_key":"113553","_from":"66907","_to":"66900"} +{"$label":"ACTS_IN","name":"Archbishop of New York","type":"Role","_key":"113551","_from":"66906","_to":"66900"} +{"$label":"ACTS_IN","name":"William of Beaujeu","type":"Role","_key":"113550","_from":"66905","_to":"66900"} +{"$label":"ACTS_IN","name":"Knights Templay Hugh","type":"Role","_key":"113549","_from":"66904","_to":"66900"} +{"$label":"ACTS_IN","name":"KnightsTemplar Aimard","type":"Role","_key":"113547","_from":"66903","_to":"66900"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"113545","_from":"66902","_to":"66900"} +{"$label":"ACTS_IN","name":"Clive Edmonston","type":"Role","_key":"113542","_from":"66901","_to":"66900"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113563","_from":"66915","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113562","_from":"66914","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113561","_from":"66913","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113560","_from":"66912","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113559","_from":"66911","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113558","_from":"66910","_to":"66909"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113569","_from":"66920","_to":"66916"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113568","_from":"66919","_to":"66916"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113566","_from":"66918","_to":"66916"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113565","_from":"66917","_to":"66916"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113571","_from":"66923","_to":"66921"} +{"$label":"DIRECTED","_key":"113570","_from":"66922","_to":"66921"} +{"$label":"DIRECTED","_key":"113582","_from":"66934","_to":"66924"} +{"$label":"DIRECTED","_key":"113581","_from":"66933","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113580","_from":"66932","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113579","_from":"66931","_to":"66924"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113578","_from":"66930","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113577","_from":"66929","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113576","_from":"66928","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113575","_from":"66927","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113574","_from":"66926","_to":"66924"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113573","_from":"66925","_to":"66924"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113600","_from":"66949","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113599","_from":"66948","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113598","_from":"66947","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113597","_from":"66946","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113596","_from":"66945","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113595","_from":"66944","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113594","_from":"66943","_to":"66935"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113593","_from":"66942","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113592","_from":"66941","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113590","_from":"66940","_to":"66935"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113589","_from":"66939","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113588","_from":"66938","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113586","_from":"66937","_to":"66935"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113585","_from":"66936","_to":"66935"} +{"$label":"ACTS_IN","name":"Hilary","type":"Role","_key":"117077","_from":"66949","_to":"68896"} +{"$label":"ACTS_IN","name":"Ghost Rider","type":"Role","_key":"113606","_from":"66953","_to":"66952"} +{"$label":"ACTS_IN","name":"Emma Lavenham","type":"Role","_key":"113608","_from":"66955","_to":"66954"} +{"$label":"ACTS_IN","name":"Client","type":"Role","_key":"113623","_from":"66965","_to":"66956"} +{"$label":"ACTS_IN","name":"Restaurant maitre'd","type":"Role","_key":"113622","_from":"66964","_to":"66956"} +{"$label":"ACTS_IN","name":"Happy Hour","type":"Role","_key":"113621","_from":"66963","_to":"66956"} +{"$label":"ACTS_IN","name":"Chatty John","type":"Role","_key":"113620","_from":"66962","_to":"66956"} +{"$label":"ACTS_IN","name":"Stock Broker","type":"Role","_key":"113619","_from":"66961","_to":"66956"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"113618","_from":"66960","_to":"66956"} +{"$label":"ACTS_IN","name":"Businessman","type":"Role","_key":"113617","_from":"66959","_to":"66956"} +{"$label":"ACTS_IN","name":"Wealthy Client","type":"Role","_key":"113616","_from":"66958","_to":"66956"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"113615","_from":"66957","_to":"66956"} +{"$label":"DIRECTED","_key":"113648","_from":"66973","_to":"66968"} +{"$label":"ACTS_IN","name":"Le commissaire Molino","type":"Role","_key":"113647","_from":"66972","_to":"66968"} +{"$label":"ACTS_IN","name":"L'apparition","type":"Role","_key":"113645","_from":"66971","_to":"66968"} +{"$label":"ACTS_IN","name":"Djamila","type":"Role","_key":"113640","_from":"66970","_to":"66968"} +{"$label":"ACTS_IN","name":"Vanessa","type":"Role","_key":"113639","_from":"66969","_to":"66968"} +{"$label":"DIRECTED","_key":"113653","_from":"66978","_to":"66975"} +{"$label":"DIRECTED","_key":"113652","_from":"66977","_to":"66975"} +{"$label":"DIRECTED","_key":"113651","_from":"66976","_to":"66975"} +{"$label":"ACTS_IN","name":"Peggy","type":"Role","_key":"113664","_from":"66985","_to":"66979"} +{"$label":"ACTS_IN","name":"Putty Nose","type":"Role","_key":"113663","_from":"66984","_to":"66979"} +{"$label":"ACTS_IN","name":"Nails Nathan","type":"Role","_key":"113660","_from":"66983","_to":"66979"} +{"$label":"ACTS_IN","name":"Mike Powers","type":"Role","_key":"113659","_from":"66982","_to":"66979"} +{"$label":"ACTS_IN","name":"Matt Doyle","type":"Role","_key":"113657","_from":"66981","_to":"66979"} +{"$label":"ACTS_IN","name":"Gwen Allen","type":"Role","_key":"113656","_from":"66980","_to":"66979"} +{"$label":"ACTS_IN","name":"Lola","type":"Role","_key":"114529","_from":"66985","_to":"67457"} +{"$label":"ACTS_IN","name":"Feyderspiel","type":"Role","_key":"113670","_from":"66987","_to":"66986"} +{"$label":"ACTS_IN","name":"John Pinette","type":"Role","_key":"113682","_from":"66992","_to":"66991"} +{"$label":"ACTS_IN","name":"Russell Peters","type":"Role","_key":"113689","_from":"66995","_to":"66994"} +{"$label":"DIRECTED","_key":"113693","_from":"66998","_to":"66997"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113701","_from":"67006","_to":"66999"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113700","_from":"67005","_to":"66999"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113699","_from":"67004","_to":"66999"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113698","_from":"67003","_to":"66999"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"113697","_from":"67002","_to":"66999"} +{"$label":"DIRECTED","_key":"113695","_from":"67001","_to":"66999"} +{"$label":"DIRECTED","_key":"113694","_from":"67000","_to":"66999"} +{"$label":"ACTS_IN","name":"Host","type":"Role","_key":"113702","_from":"67008","_to":"67007"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113706","_from":"67012","_to":"67009"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113705","_from":"67011","_to":"67009"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"113704","_from":"67010","_to":"67009"} +{"$label":"DIRECTED","_key":"113710","_from":"67015","_to":"67014"} +{"$label":"DIRECTED","_key":"113724","_from":"67019","_to":"67018"} +{"$label":"ACTS_IN","name":"Gerald Martin Johanssen","type":"Role","_key":"113733","_from":"67024","_to":"67021"} +{"$label":"ACTS_IN","name":"Helga Geraldine Pataki","type":"Role","_key":"113732","_from":"67023","_to":"67021"} +{"$label":"ACTS_IN","name":"Arnold","type":"Role","_key":"113731","_from":"67022","_to":"67021"} +{"$label":"DIRECTED","_key":"113745","_from":"67028","_to":"67027"} +{"$label":"DIRECTED","_key":"113752","_from":"67032","_to":"67029"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"113751","_from":"67031","_to":"67029"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"113749","_from":"67030","_to":"67029"} +{"$label":"DIRECTED","_key":"113753","_from":"67034","_to":"67033"} +{"$label":"ACTS_IN","name":"Helen Berger Miller","type":"Role","_key":"113762","_from":"67036","_to":"67035"} +{"$label":"ACTS_IN","name":"Jane Witherspoon","type":"Role","_key":"117160","_from":"67036","_to":"68931"} +{"$label":"ACTS_IN","name":"Julie Desponsio (aka Babylon)","type":"Role","_key":"113769","_from":"67041","_to":"67037"} +{"$label":"ACTS_IN","name":"Sean McGinnis","type":"Role","_key":"113768","_from":"67040","_to":"67037"} +{"$label":"DIRECTED","_key":"113766","_from":"67039","_to":"67037"} +{"$label":"DIRECTED","_key":"113765","_from":"67038","_to":"67037"} +{"$label":"ACTS_IN","name":"Mrs. Burtis","type":"Role","_key":"113787","_from":"67045","_to":"67043"} +{"$label":"ACTS_IN","name":"Vikki","type":"Role","_key":"113783","_from":"67044","_to":"67043"} +{"$label":"ACTS_IN","name":"Z-Man","type":"Role","_key":"113797","_from":"67047","_to":"67046"} +{"$label":"DIRECTED","_key":"113807","_from":"67049","_to":"67048"} +{"$label":"DIRECTED","_key":"113822","_from":"67052","_to":"67051"} +{"$label":"DIRECTED","_key":"113843","_from":"67059","_to":"67053"} +{"$label":"ACTS_IN","name":"Nancy Himmel","type":"Role","_key":"113835","_from":"67058","_to":"67053"} +{"$label":"ACTS_IN","name":"Warren","type":"Role","_key":"113833","_from":"67057","_to":"67053"} +{"$label":"ACTS_IN","name":"Tim","type":"Role","_key":"113831","_from":"67056","_to":"67053"} +{"$label":"ACTS_IN","name":"Betty Stoller","type":"Role","_key":"113830","_from":"67055","_to":"67053"} +{"$label":"ACTS_IN","name":"Gaby Nowicki","type":"Role","_key":"113825","_from":"67054","_to":"67053"} +{"$label":"ACTS_IN","name":"Lillian Pardee","type":"Role","_key":"113855","_from":"67065","_to":"67061"} +{"$label":"ACTS_IN","name":"Donald Flaherty","type":"Role","_key":"113853","_from":"67064","_to":"67061"} +{"$label":"ACTS_IN","name":"Ken Childs","type":"Role","_key":"113852","_from":"67063","_to":"67061"} +{"$label":"ACTS_IN","name":"Lydia Rice","type":"Role","_key":"113847","_from":"67062","_to":"67061"} +{"$label":"ACTS_IN","name":"Stephanie 'Steve' Gaylord","type":"Role","_key":"117174","_from":"67062","_to":"68936"} +{"$label":"ACTS_IN","name":"Capt. Walter Anderson","type":"Role","_key":"115651","_from":"67064","_to":"68087"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"113862","_from":"67072","_to":"67067"} +{"$label":"ACTS_IN","name":"Rodriguez","type":"Role","_key":"113861","_from":"67071","_to":"67067"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"113860","_from":"67070","_to":"67067"} +{"$label":"ACTS_IN","name":"Jeanie","type":"Role","_key":"113859","_from":"67069","_to":"67067"} +{"$label":"DIRECTED","_key":"113858","_from":"67068","_to":"67067"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"119473","_from":"67070","_to":"70184"} +{"$label":"DIRECTED","_key":"113869","_from":"67079","_to":"67074"} +{"$label":"ACTS_IN","name":"Javi","type":"Role","_key":"113868","_from":"67078","_to":"67074"} +{"$label":"ACTS_IN","name":"Violeta","type":"Role","_key":"113866","_from":"67077","_to":"67074"} +{"$label":"ACTS_IN","name":"Do\u00f1a Teresa","type":"Role","_key":"113865","_from":"67076","_to":"67074"} +{"$label":"ACTS_IN","name":"Bernardo","type":"Role","_key":"113864","_from":"67075","_to":"67074"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114951","_from":"67075","_to":"67701"} +{"$label":"ACTS_IN","name":"Phillia","type":"Role","_key":"113880","_from":"67082","_to":"67081"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"113883","_from":"67086","_to":"67083"} +{"$label":"ACTS_IN","name":"Kyle","type":"Role","_key":"113882","_from":"67085","_to":"67083"} +{"$label":"DIRECTED","_key":"113881","_from":"67084","_to":"67083"} +{"$label":"ACTS_IN","name":"Tiffany Whitfield","type":"Role","_key":"113892","_from":"67088","_to":"67087"} +{"$label":"ACTS_IN","name":"Eduard Zuiderdijk","type":"Role","_key":"113912","_from":"67091","_to":"67090"} +{"$label":"DIRECTED","_key":"113915","_from":"67094","_to":"67093"} +{"$label":"DIRECTED","_key":"113922","_from":"67097","_to":"67096"} +{"$label":"ACTS_IN","name":"The Wooo Monster (voice)","type":"Role","_key":"113921","_from":"67101","_to":"67096"} +{"$label":"ACTS_IN","name":"Rain (voice)","type":"Role","_key":"113920","_from":"67100","_to":"67096"} +{"$label":"ACTS_IN","name":"Ori - The Pastor (voice)","type":"Role","_key":"113919","_from":"67099","_to":"67096"} +{"$label":"ACTS_IN","name":"Blue (voice)","type":"Role","_key":"113918","_from":"67098","_to":"67096"} +{"$label":"ACTS_IN","name":"HIM (voice)","type":"Role","_key":"113917","_from":"67097","_to":"67096"} +{"$label":"ACTS_IN","name":"John Flansburgh","type":"Role","_key":"113924","_from":"67104","_to":"67102"} +{"$label":"ACTS_IN","name":"John Linnell","type":"Role","_key":"113923","_from":"67103","_to":"67102"} +{"$label":"DIRECTED","_key":"113934","_from":"67113","_to":"67105"} +{"$label":"ACTS_IN","name":"Bala","type":"Role","_key":"113933","_from":"67112","_to":"67105"} +{"$label":"ACTS_IN","name":"Timi","type":"Role","_key":"113932","_from":"67111","_to":"67105"} +{"$label":"ACTS_IN","name":"Cinthia","type":"Role","_key":"113931","_from":"67110","_to":"67105"} +{"$label":"ACTS_IN","name":"Vivi","type":"Role","_key":"113930","_from":"67109","_to":"67105"} +{"$label":"ACTS_IN","name":"Eszter","type":"Role","_key":"113929","_from":"67108","_to":"67105"} +{"$label":"ACTS_IN","name":"Andr\u00e1s V\u00e1rnai","type":"Role","_key":"113928","_from":"67107","_to":"67105"} +{"$label":"ACTS_IN","name":"Alex Brubeck","type":"Role","_key":"113925","_from":"67106","_to":"67105"} +{"$label":"DIRECTED","_key":"113965","_from":"67123","_to":"67120"} +{"$label":"ACTS_IN","name":"Milli","type":"Role","_key":"113964","_from":"67122","_to":"67120"} +{"$label":"ACTS_IN","name":"R\u00f6lli","type":"Role","_key":"113963","_from":"67121","_to":"67120"} +{"$label":"DIRECTED","_key":"113974","_from":"67126","_to":"67125"} +{"$label":"ACTS_IN","name":"Thunder Heart Woman","type":"Role","_key":"113978","_from":"67128","_to":"67127"} +{"$label":"ACTS_IN","name":"Ong Chi Seng","type":"Role","_key":"113990","_from":"67133","_to":"67129"} +{"$label":"ACTS_IN","name":"John Withers","type":"Role","_key":"113987","_from":"67132","_to":"67129"} +{"$label":"ACTS_IN","name":"Dorothy Joyce","type":"Role","_key":"113985","_from":"67131","_to":"67129"} +{"$label":"ACTS_IN","name":"Howard Joyce","type":"Role","_key":"113984","_from":"67130","_to":"67129"} +{"$label":"ACTS_IN","name":"Robert Denk","type":"Role","_key":"113995","_from":"67135","_to":"67134"} +{"$label":"ACTS_IN","name":"Village gossip","type":"Role","_key":"114012","_from":"67144","_to":"67136"} +{"$label":"ACTS_IN","name":"Chief Iron Eyes","type":"Role","_key":"114011","_from":"67143","_to":"67136"} +{"$label":"ACTS_IN","name":"Jeb","type":"Role","_key":"114009","_from":"67142","_to":"67136"} +{"$label":"ACTS_IN","name":"Hank Billings","type":"Role","_key":"114006","_from":"67141","_to":"67136"} +{"$label":"ACTS_IN","name":"Gov. Johnson","type":"Role","_key":"114005","_from":"67140","_to":"67136"} +{"$label":"ACTS_IN","name":"Indian Scout","type":"Role","_key":"114004","_from":"67139","_to":"67136"} +{"$label":"ACTS_IN","name":"Jasper Martin","type":"Role","_key":"114003","_from":"67138","_to":"67136"} +{"$label":"ACTS_IN","name":"Toby Preston","type":"Role","_key":"114002","_from":"67137","_to":"67136"} +{"$label":"ACTS_IN","name":"Lige McFarland","type":"Role","_key":"116946","_from":"67142","_to":"68836"} +{"$label":"ACTS_IN","name":"Nestov","type":"Role","_key":"114018","_from":"67147","_to":"67145"} +{"$label":"ACTS_IN","name":"Jess Brown","type":"Role","_key":"114016","_from":"67146","_to":"67145"} +{"$label":"DIRECTED","_key":"114023","_from":"67149","_to":"67148"} +{"$label":"ACTS_IN","name":"Uncle Noh","type":"Role","_key":"114032","_from":"67153","_to":"67151"} +{"$label":"ACTS_IN","name":"Mitsuko Yamada","type":"Role","_key":"114029","_from":"67152","_to":"67151"} +{"$label":"ACTS_IN","name":"Tom Donaldson","type":"Role","_key":"114056","_from":"67168","_to":"67156"} +{"$label":"ACTS_IN","name":"Pedro Santana","type":"Role","_key":"114055","_from":"67167","_to":"67156"} +{"$label":"ACTS_IN","name":"Young Angel Santana","type":"Role","_key":"114054","_from":"67166","_to":"67156"} +{"$label":"ACTS_IN","name":"Caronte","type":"Role","_key":"114052","_from":"67165","_to":"67156"} +{"$label":"ACTS_IN","name":"Officer Solana","type":"Role","_key":"114051","_from":"67164","_to":"67156"} +{"$label":"ACTS_IN","name":"Ned Constantine","type":"Role","_key":"114050","_from":"67163","_to":"67156"} +{"$label":"ACTS_IN","name":"Pancho","type":"Role","_key":"114048","_from":"67162","_to":"67156"} +{"$label":"ACTS_IN","name":"Vern","type":"Role","_key":"114047","_from":"67161","_to":"67156"} +{"$label":"ACTS_IN","name":"Dolores Santana","type":"Role","_key":"114046","_from":"67160","_to":"67156"} +{"$label":"ACTS_IN","name":"Santos","type":"Role","_key":"114045","_from":"67159","_to":"67156"} +{"$label":"ACTS_IN","name":"Angel Santana","type":"Role","_key":"114043","_from":"67158","_to":"67156"} +{"$label":"DIRECTED","_key":"114042","_from":"67157","_to":"67156"} +{"$label":"ACTS_IN","name":"Black Warlord","type":"Role","_key":"114094","_from":"67195","_to":"67170"} +{"$label":"ACTS_IN","name":"Police Commissioner (voice)","type":"Role","_key":"114092","_from":"67194","_to":"67170"} +{"$label":"ACTS_IN","name":"Radio Announcer (voice)","type":"Role","_key":"114091","_from":"67193","_to":"67170"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114089","_from":"67192","_to":"67170"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114088","_from":"67191","_to":"67170"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114087","_from":"67190","_to":"67170"} +{"$label":"ACTS_IN","name":"Gang Member","type":"Role","_key":"114086","_from":"67189","_to":"67170"} +{"$label":"ACTS_IN","name":"Black Hood","type":"Role","_key":"114085","_from":"67188","_to":"67170"} +{"$label":"ACTS_IN","name":"Chicano Hood","type":"Role","_key":"114084","_from":"67187","_to":"67170"} +{"$label":"ACTS_IN","name":"Oriental Tough","type":"Role","_key":"114083","_from":"67186","_to":"67170"} +{"$label":"ACTS_IN","name":"Chicano Tough","type":"Role","_key":"114082","_from":"67185","_to":"67170"} +{"$label":"ACTS_IN","name":"Second Guard","type":"Role","_key":"114081","_from":"67184","_to":"67170"} +{"$label":"ACTS_IN","name":"First Guard","type":"Role","_key":"114080","_from":"67183","_to":"67170"} +{"$label":"ACTS_IN","name":"Bus Driver","type":"Role","_key":"114079","_from":"67182","_to":"67170"} +{"$label":"ACTS_IN","name":"Oriental Warlord","type":"Role","_key":"114078","_from":"67181","_to":"67170"} +{"$label":"ACTS_IN","name":"Claudell","type":"Role","_key":"114077","_from":"67180","_to":"67170"} +{"$label":"ACTS_IN","name":"Chicano Warlord","type":"Role","_key":"114076","_from":"67179","_to":"67170"} +{"$label":"ACTS_IN","name":"Patrolman Baxter","type":"Role","_key":"114073","_from":"67178","_to":"67170"} +{"$label":"ACTS_IN","name":"Patrolman Tramer","type":"Role","_key":"114072","_from":"67177","_to":"67170"} +{"$label":"ACTS_IN","name":"Warden","type":"Role","_key":"114070","_from":"67176","_to":"67170"} +{"$label":"ACTS_IN","name":"Ice Cream Man","type":"Role","_key":"114069","_from":"67175","_to":"67170"} +{"$label":"ACTS_IN","name":"Lawson","type":"Role","_key":"114065","_from":"67174","_to":"67170"} +{"$label":"ACTS_IN","name":"Leigh","type":"Role","_key":"114064","_from":"67173","_to":"67170"} +{"$label":"ACTS_IN","name":"Napoleon Wilson","type":"Role","_key":"114063","_from":"67172","_to":"67170"} +{"$label":"ACTS_IN","name":"Ethan Bishop","type":"Role","_key":"114061","_from":"67171","_to":"67170"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"114099","_from":"67198","_to":"67197"} +{"$label":"ACTS_IN","name":"Lily Kildear","type":"Role","_key":"117822","_from":"67198","_to":"69258"} +{"$label":"ACTS_IN","name":"Magnolia Hawks","type":"Role","_key":"114101","_from":"67200","_to":"67199"} +{"$label":"ACTS_IN","name":"Magnolia Hawks","type":"Role","_key":"117163","_from":"67200","_to":"68931"} +{"$label":"ACTS_IN","name":"Susan Abbott","type":"Role","_key":"114231","_from":"67200","_to":"67282"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"114111","_from":"67204","_to":"67203"} +{"$label":"ACTS_IN","name":"Professor Magenbruch","type":"Role","_key":"114114","_from":"67206","_to":"67205"} +{"$label":"DIRECTED","_key":"114119","_from":"67210","_to":"67208"} +{"$label":"ACTS_IN","name":"Miss Pross","type":"Role","_key":"114117","_from":"67209","_to":"67208"} +{"$label":"DIRECTED","_key":"114135","_from":"67215","_to":"67211"} +{"$label":"ACTS_IN","name":"Slave","type":"Role","_key":"114134","_from":"67214","_to":"67211"} +{"$label":"ACTS_IN","name":"Ship Captain","type":"Role","_key":"114131","_from":"67213","_to":"67211"} +{"$label":"ACTS_IN","name":"Dalgar","type":"Role","_key":"114129","_from":"67212","_to":"67211"} +{"$label":"ACTS_IN","name":"Jeri","type":"Role","_key":"114138","_from":"67217","_to":"67216"} +{"$label":"ACTS_IN","name":"Ruth Beckett","type":"Role","_key":"114141","_from":"67219","_to":"67218"} +{"$label":"ACTS_IN","name":"Ann Marai","type":"Role","_key":"114154","_from":"67233","_to":"67228"} +{"$label":"ACTS_IN","name":"Marnix Laureys","type":"Role","_key":"114153","_from":"67232","_to":"67228"} +{"$label":"ACTS_IN","name":"Luc Seynaeve","type":"Role","_key":"114152","_from":"67231","_to":"67228"} +{"$label":"ACTS_IN","name":"Chris Van Outryve","type":"Role","_key":"114149","_from":"67230","_to":"67228"} +{"$label":"DIRECTED","_key":"114148","_from":"67229","_to":"67228"} +{"$label":"DIRECTED","_key":"114160","_from":"67246","_to":"67242"} +{"$label":"DIRECTED","_key":"114159","_from":"67245","_to":"67242"} +{"$label":"ACTS_IN","name":"Gail Porter","type":"Role","_key":"114158","_from":"67244","_to":"67242"} +{"$label":"ACTS_IN","name":"John Henry","type":"Role","_key":"114156","_from":"67243","_to":"67242"} +{"$label":"ACTS_IN","name":"Gavin Friday","type":"Role","_key":"114165","_from":"67252","_to":"67247"} +{"$label":"ACTS_IN","name":"Larry Mullen Jr.","type":"Role","_key":"114164","_from":"67251","_to":"67247"} +{"$label":"ACTS_IN","name":"Adam Clayton","type":"Role","_key":"114163","_from":"67250","_to":"67247"} +{"$label":"ACTS_IN","name":"The Edge","type":"Role","_key":"114162","_from":"67249","_to":"67247"} +{"$label":"ACTS_IN","name":"Bono","type":"Role","_key":"114161","_from":"67248","_to":"67247"} +{"$label":"ACTS_IN","name":"Bono","type":"Role","_key":"120320","_from":"67248","_to":"70678"} +{"$label":"ACTS_IN","name":"Bono","type":"Role","_key":"115105","_from":"67248","_to":"67788"} +{"$label":"ACTS_IN","name":"The Edge","type":"Role","_key":"120322","_from":"67249","_to":"70678"} +{"$label":"ACTS_IN","name":"The Edge","type":"Role","_key":"115106","_from":"67249","_to":"67788"} +{"$label":"ACTS_IN","name":"Adam Clayton","type":"Role","_key":"120323","_from":"67250","_to":"70678"} +{"$label":"ACTS_IN","name":"Adam Clayton","type":"Role","_key":"115108","_from":"67250","_to":"67788"} +{"$label":"ACTS_IN","name":"Larry Mullen Jr.","type":"Role","_key":"120321","_from":"67251","_to":"70678"} +{"$label":"ACTS_IN","name":"Larry Mullen Jr.","type":"Role","_key":"115107","_from":"67251","_to":"67788"} +{"$label":"DIRECTED","_key":"114168","_from":"67255","_to":"67253"} +{"$label":"ACTS_IN","name":"Slick Rick","type":"Role","_key":"114167","_from":"67254","_to":"67253"} +{"$label":"DIRECTED","_key":"114989","_from":"67255","_to":"67721"} +{"$label":"DIRECTED","_key":"114173","_from":"67260","_to":"67258"} +{"$label":"DIRECTED","_key":"114172","_from":"67259","_to":"67258"} +{"$label":"ACTS_IN","name":"Mrs. Dewberry","type":"Role","_key":"114184","_from":"67265","_to":"67261"} +{"$label":"ACTS_IN","name":"Mr. Alfred","type":"Role","_key":"114183","_from":"67264","_to":"67261"} +{"$label":"ACTS_IN","name":"Stevie Dewberry","type":"Role","_key":"114181","_from":"67263","_to":"67261"} +{"$label":"ACTS_IN","name":"Amanda Wilkenson","type":"Role","_key":"114179","_from":"67262","_to":"67261"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114193","_from":"67267","_to":"67266"} +{"$label":"DIRECTED","_key":"114202","_from":"67270","_to":"67268"} +{"$label":"ACTS_IN","name":"Tommy Lee","type":"Role","_key":"114201","_from":"67269","_to":"67268"} +{"$label":"ACTS_IN","name":"Abel","type":"Role","_key":"114220","_from":"67278","_to":"67274"} +{"$label":"ACTS_IN","name":"Dany","type":"Role","_key":"114219","_from":"67277","_to":"67274"} +{"$label":"ACTS_IN","name":"Virgile","type":"Role","_key":"114216","_from":"67276","_to":"67274"} +{"$label":"DIRECTED","_key":"114213","_from":"67275","_to":"67274"} +{"$label":"DIRECTED","_key":"114229","_from":"67281","_to":"67280"} +{"$label":"ACTS_IN","name":"Girl from Brooklyn","type":"Role","_key":"114235","_from":"67284","_to":"67282"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114233","_from":"67283","_to":"67282"} +{"$label":"ACTS_IN","name":"Paula Gibson","type":"Role","_key":"118414","_from":"67284","_to":"69611"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114252","_from":"67291","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114251","_from":"67290","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114250","_from":"67289","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114249","_from":"67288","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114247","_from":"67287","_to":"67285"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114238","_from":"67286","_to":"67285"} +{"$label":"ACTS_IN","name":"Yara","type":"Role","_key":"114254","_from":"67294","_to":"67292"} +{"$label":"ACTS_IN","name":"Paco","type":"Role","_key":"114253","_from":"67293","_to":"67292"} +{"$label":"ACTS_IN","name":"Camino","type":"Role","_key":"114255","_from":"67296","_to":"67295"} +{"$label":"DIRECTED","_key":"114275","_from":"67307","_to":"67298"} +{"$label":"ACTS_IN","name":"Ozaki Taicho","type":"Role","_key":"114274","_from":"67306","_to":"67298"} +{"$label":"ACTS_IN","name":"Nonomiya Taicho","type":"Role","_key":"114273","_from":"67305","_to":"67298"} +{"$label":"ACTS_IN","name":"Kissaten Master","type":"Role","_key":"114272","_from":"67304","_to":"67298"} +{"$label":"ACTS_IN","name":"Tokumitsu Taiin","type":"Role","_key":"114270","_from":"67303","_to":"67298"} +{"$label":"ACTS_IN","name":"Morishima Kyoju","type":"Role","_key":"114267","_from":"67302","_to":"67298"} +{"$label":"ACTS_IN","name":"Shimura Asako","type":"Role","_key":"114266","_from":"67301","_to":"67298"} +{"$label":"ACTS_IN","name":"Ozawa Keiko","type":"Role","_key":"114265","_from":"67300","_to":"67298"} +{"$label":"ACTS_IN","name":"Ochi","type":"Role","_key":"114263","_from":"67299","_to":"67298"} +{"$label":"ACTS_IN","name":"Seishiro Kikui","type":"Role","_key":"117622","_from":"67304","_to":"69144"} +{"$label":"ACTS_IN","name":"Kali stand-in","type":"Role","_key":"114286","_from":"67311","_to":"67308"} +{"$label":"ACTS_IN","name":"Abdul","type":"Role","_key":"114285","_from":"67310","_to":"67308"} +{"$label":"ACTS_IN","name":"Haroun","type":"Role","_key":"114283","_from":"67309","_to":"67308"} +{"$label":"DIRECTED","_key":"114291","_from":"67314","_to":"67313"} +{"$label":"ACTS_IN","name":"Albert Fish","type":"Role","_key":"114292","_from":"67316","_to":"67315"} +{"$label":"ACTS_IN","name":"Seung-ji","type":"Role","_key":"114299","_from":"67322","_to":"67318"} +{"$label":"ACTS_IN","name":"Queen","type":"Role","_key":"114298","_from":"67321","_to":"67318"} +{"$label":"ACTS_IN","name":"Hong Lim","type":"Role","_key":"114296","_from":"67320","_to":"67318"} +{"$label":"DIRECTED","_key":"114295","_from":"67319","_to":"67318"} +{"$label":"ACTS_IN","name":"Seo Yu-jin","type":"Role","_key":"121160","_from":"67321","_to":"71173"} +{"$label":"ACTS_IN","name":"Western Man","type":"Role","_key":"114308","_from":"67333","_to":"67324"} +{"$label":"ACTS_IN","name":"Gihei Kasuga","type":"Role","_key":"114307","_from":"67332","_to":"67324"} +{"$label":"ACTS_IN","name":"Michihiko Yabuhara","type":"Role","_key":"114306","_from":"67331","_to":"67324"} +{"$label":"ACTS_IN","name":"No.1","type":"Role","_key":"114305","_from":"67330","_to":"67324"} +{"$label":"ACTS_IN","name":"Misako","type":"Role","_key":"114304","_from":"67329","_to":"67324"} +{"$label":"ACTS_IN","name":"Mami Hanada","type":"Role","_key":"114303","_from":"67328","_to":"67324"} +{"$label":"ACTS_IN","name":"Hanada Goro","type":"Role","_key":"114302","_from":"67327","_to":"67324"} +{"$label":"DIRECTED","_key":"114301","_from":"67326","_to":"67324"} +{"$label":"DIRECTED","_key":"114300","_from":"67325","_to":"67324"} +{"$label":"ACTS_IN","name":"Toad","type":"Role","_key":"117625","_from":"67330","_to":"69144"} +{"$label":"ACTS_IN","name":"Mrs. Gurkel","type":"Role","_key":"114317","_from":"67336","_to":"67334"} +{"$label":"DIRECTED","_key":"114309","_from":"67335","_to":"67334"} +{"$label":"DIRECTED","_key":"114327","_from":"67341","_to":"67337"} +{"$label":"ACTS_IN","name":"Colonel's obese wife","type":"Role","_key":"114326","_from":"67340","_to":"67337"} +{"$label":"ACTS_IN","name":"Jean Thatcher","type":"Role","_key":"114321","_from":"67339","_to":"67337"} +{"$label":"ACTS_IN","name":"Dr. Jerry Holden","type":"Role","_key":"114320","_from":"67338","_to":"67337"} +{"$label":"ACTS_IN","name":"Brka","type":"Role","_key":"114335","_from":"67345","_to":"67343"} +{"$label":"ACTS_IN","name":"Bus Conductor","type":"Role","_key":"114332","_from":"67344","_to":"67343"} +{"$label":"ACTS_IN","name":"Judd","type":"Role","_key":"114342","_from":"67353","_to":"67346"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"114341","_from":"67352","_to":"67346"} +{"$label":"ACTS_IN","name":"Lorrie","type":"Role","_key":"114340","_from":"67351","_to":"67346"} +{"$label":"ACTS_IN","name":"Lorrie","type":"Role","_key":"114339","_from":"67350","_to":"67346"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"114338","_from":"67349","_to":"67346"} +{"$label":"ACTS_IN","name":"Mrs Obadiah","type":"Role","_key":"114337","_from":"67348","_to":"67346"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"114336","_from":"67347","_to":"67346"} +{"$label":"ACTS_IN","name":"Emma MacNeil","type":"Role","_key":"114344","_from":"67356","_to":"67354"} +{"$label":"ACTS_IN","name":"Allan Baxter","type":"Role","_key":"114343","_from":"67355","_to":"67354"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120135","_from":"67355","_to":"70561"} +{"$label":"ACTS_IN","name":"Trainor","type":"Role","_key":"118451","_from":"67355","_to":"69639"} +{"$label":"ACTS_IN","name":"Agnes","type":"Role","_key":"114360","_from":"67361","_to":"67357"} +{"$label":"ACTS_IN","name":"Tulsa","type":"Role","_key":"114358","_from":"67360","_to":"67357"} +{"$label":"ACTS_IN","name":"June (adult)","type":"Role","_key":"114357","_from":"67359","_to":"67357"} +{"$label":"ACTS_IN","name":"Miss Electra","type":"Role","_key":"114356","_from":"67358","_to":"67357"} +{"$label":"ACTS_IN","name":"Dr. Apostolos Drougas","type":"Role","_key":"114362","_from":"67365","_to":"67363"} +{"$label":"ACTS_IN","name":"Hloi","type":"Role","_key":"114361","_from":"67364","_to":"67363"} +{"$label":"ACTS_IN","name":"Nancy","type":"Role","_key":"114366","_from":"67369","_to":"67368"} +{"$label":"ACTS_IN","name":"Swamp Thing","type":"Role","_key":"114372","_from":"67372","_to":"67370"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"114371","_from":"67371","_to":"67370"} +{"$label":"ACTS_IN","name":"Thomas","type":"Role","_key":"114387","_from":"67375","_to":"67374"} +{"$label":"ACTS_IN","name":"Captain Sallas \/ Nordeg","type":"Role","_key":"114400","_from":"67384","_to":"67376"} +{"$label":"ACTS_IN","name":"Toby Markary \/ Wan","type":"Role","_key":"114399","_from":"67383","_to":"67376"} +{"$label":"ACTS_IN","name":"Keir","type":"Role","_key":"114398","_from":"67382","_to":"67376"} +{"$label":"ACTS_IN","name":"Eldon","type":"Role","_key":"114396","_from":"67381","_to":"67376"} +{"$label":"ACTS_IN","name":"Dr. Karan","type":"Role","_key":"114395","_from":"67380","_to":"67376"} +{"$label":"ACTS_IN","name":"Bert \/ Garr","type":"Role","_key":"114394","_from":"67379","_to":"67376"} +{"$label":"ACTS_IN","name":"Tiona","type":"Role","_key":"114392","_from":"67378","_to":"67376"} +{"$label":"ACTS_IN","name":"Wess","type":"Role","_key":"114391","_from":"67377","_to":"67376"} +{"$label":"ACTS_IN","name":"Golgo 13","type":"Role","_key":"114402","_from":"67386","_to":"67385"} +{"$label":"DIRECTED","_key":"114404","_from":"67388","_to":"67387"} +{"$label":"ACTS_IN","name":"Dr. Rick","type":"Role","_key":"114412","_from":"67394","_to":"67392"} +{"$label":"DIRECTED","_key":"114406","_from":"67393","_to":"67392"} +{"$label":"DIRECTED","_key":"114415","_from":"67399","_to":"67396"} +{"$label":"ACTS_IN","name":"\u0422\u0430\u0440\u0430\u0441 \u0411\u0443\u043b\u044c\u0431\u0430","type":"Role","_key":"114414","_from":"67398","_to":"67396"} +{"$label":"ACTS_IN","name":"\u043f\u0430\u043d\u043d\u043e\u0447\u043a\u0430 \u042d\u043b\u044c\u0436\u0431\u0435\u0442\u0430 \u041c\u0430\u0437\u043e\u0432\u0435\u0446\u043a\u0430\u044f","type":"Role","_key":"114413","_from":"67397","_to":"67396"} +{"$label":"ACTS_IN","name":"Joan Moran","type":"Role","_key":"114424","_from":"67408","_to":"67400"} +{"$label":"ACTS_IN","name":"Dr. Tchen Yu","type":"Role","_key":"114423","_from":"67407","_to":"67400"} +{"$label":"ACTS_IN","name":"Prof. Sikarna","type":"Role","_key":"114421","_from":"67406","_to":"67400"} +{"$label":"ACTS_IN","name":"Prof. Arsenew","type":"Role","_key":"114420","_from":"67405","_to":"67400"} +{"$label":"ACTS_IN","name":"Talua","type":"Role","_key":"114419","_from":"67404","_to":"67400"} +{"$label":"ACTS_IN","name":"Prof. Saltyk","type":"Role","_key":"114418","_from":"67403","_to":"67400"} +{"$label":"ACTS_IN","name":"Prof. Harringway Hawling","type":"Role","_key":"114417","_from":"67402","_to":"67400"} +{"$label":"ACTS_IN","name":"Sumiko Ogimura MD","type":"Role","_key":"114416","_from":"67401","_to":"67400"} +{"$label":"ACTS_IN","name":"Boss Lady","type":"Role","_key":"114432","_from":"67411","_to":"67409"} +{"$label":"DIRECTED","_key":"114426","_from":"67410","_to":"67409"} +{"$label":"DIRECTED","_key":"114440","_from":"67414","_to":"67413"} +{"$label":"ACTS_IN","name":"Bill","type":"Role","_key":"114443","_from":"67418","_to":"67417"} +{"$label":"ACTS_IN","name":"Jacob","type":"Role","_key":"114454","_from":"67423","_to":"67421"} +{"$label":"ACTS_IN","name":"Finn","type":"Role","_key":"114453","_from":"67422","_to":"67421"} +{"$label":"ACTS_IN","name":"Judith","type":"Role","_key":"114463","_from":"67431","_to":"67424"} +{"$label":"ACTS_IN","name":"Ingolf","type":"Role","_key":"114462","_from":"67430","_to":"67424"} +{"$label":"ACTS_IN","name":"L\u00e6ge","type":"Role","_key":"114461","_from":"67429","_to":"67424"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"114460","_from":"67428","_to":"67424"} +{"$label":"ACTS_IN","name":"Celeste","type":"Role","_key":"114459","_from":"67427","_to":"67424"} +{"$label":"ACTS_IN","name":"Dorthe","type":"Role","_key":"114458","_from":"67426","_to":"67424"} +{"$label":"ACTS_IN","name":"V\u00e6rten","type":"Role","_key":"114457","_from":"67425","_to":"67424"} +{"$label":"ACTS_IN","name":"Kennosuke Nakamura","type":"Role","_key":"114482","_from":"67437","_to":"67434"} +{"$label":"ACTS_IN","name":"Shiori Satonaka","type":"Role","_key":"114479","_from":"67436","_to":"67434"} +{"$label":"ACTS_IN","name":"Takashi Mochizuki","type":"Role","_key":"114478","_from":"67435","_to":"67434"} +{"$label":"ACTS_IN","name":"Max Svensson","type":"Role","_key":"114487","_from":"67442","_to":"67439"} +{"$label":"ACTS_IN","name":"Lina Svensson","type":"Role","_key":"114486","_from":"67441","_to":"67439"} +{"$label":"ACTS_IN","name":"Gustav Svensson","type":"Role","_key":"114485","_from":"67440","_to":"67439"} +{"$label":"ACTS_IN","name":"Ross, the Butler","type":"Role","_key":"114516","_from":"67456","_to":"67443"} +{"$label":"ACTS_IN","name":"Graveyard Attendant","type":"Role","_key":"114515","_from":"67455","_to":"67443"} +{"$label":"ACTS_IN","name":"Chauffeur","type":"Role","_key":"114514","_from":"67454","_to":"67443"} +{"$label":"ACTS_IN","name":"Mrs. Frawley","type":"Role","_key":"114513","_from":"67453","_to":"67443"} +{"$label":"ACTS_IN","name":"4th Policeman","type":"Role","_key":"114509","_from":"67452","_to":"67443"} +{"$label":"ACTS_IN","name":"3rd Policeman","type":"Role","_key":"114508","_from":"67451","_to":"67443"} +{"$label":"ACTS_IN","name":"1st Policeman","type":"Role","_key":"114506","_from":"67450","_to":"67443"} +{"$label":"ACTS_IN","name":"Sergeant","type":"Role","_key":"114505","_from":"67449","_to":"67443"} +{"$label":"ACTS_IN","name":"2nd Police Official","type":"Role","_key":"114504","_from":"67448","_to":"67443"} +{"$label":"ACTS_IN","name":"1st Police Official","type":"Role","_key":"114503","_from":"67447","_to":"67443"} +{"$label":"ACTS_IN","name":"Sgt. Schenley","type":"Role","_key":"114501","_from":"67446","_to":"67443"} +{"$label":"ACTS_IN","name":"Dr. Dunwoody","type":"Role","_key":"114495","_from":"67445","_to":"67443"} +{"$label":"ACTS_IN","name":"Nurse Allen","type":"Role","_key":"114493","_from":"67444","_to":"67443"} +{"$label":"DIRECTED","_key":"114530","_from":"67464","_to":"67457"} +{"$label":"ACTS_IN","name":"Second cigar stand clerk","type":"Role","_key":"114528","_from":"67463","_to":"67457"} +{"$label":"ACTS_IN","name":"Alexander Amenoppopolus","type":"Role","_key":"114527","_from":"67462","_to":"67457"} +{"$label":"ACTS_IN","name":"Greek barber","type":"Role","_key":"114525","_from":"67461","_to":"67457"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"114524","_from":"67460","_to":"67457"} +{"$label":"ACTS_IN","name":"Sleepy Sam","type":"Role","_key":"114523","_from":"67459","_to":"67457"} +{"$label":"ACTS_IN","name":"Irene Graham","type":"Role","_key":"114522","_from":"67458","_to":"67457"} +{"$label":"DIRECTED","_key":"114541","_from":"67474","_to":"67465"} +{"$label":"ACTS_IN","name":"Chirurgijn","type":"Role","_key":"114539","_from":"67473","_to":"67465"} +{"$label":"ACTS_IN","name":"Koopman","type":"Role","_key":"114537","_from":"67472","_to":"67465"} +{"$label":"ACTS_IN","name":"Moeder van Hajo","type":"Role","_key":"114536","_from":"67471","_to":"67465"} +{"$label":"ACTS_IN","name":"schipper Bontekoe","type":"Role","_key":"114535","_from":"67470","_to":"67465"} +{"$label":"ACTS_IN","name":"Dolimah","type":"Role","_key":"114534","_from":"67469","_to":"67465"} +{"$label":"ACTS_IN","name":"Padde","type":"Role","_key":"114533","_from":"67468","_to":"67465"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"114532","_from":"67467","_to":"67465"} +{"$label":"ACTS_IN","name":"Hajo","type":"Role","_key":"114531","_from":"67466","_to":"67465"} +{"$label":"ACTS_IN","name":"Simon Cohen","type":"Role","_key":"120022","_from":"67472","_to":"70487"} +{"$label":"ACTS_IN","name":"Ben Folds","type":"Role","_key":"114543","_from":"67477","_to":"67475"} +{"$label":"DIRECTED","_key":"114542","_from":"67476","_to":"67475"} +{"$label":"ACTS_IN","name":"Donna - Red Team Leader","type":"Role","_key":"114549","_from":"67481","_to":"67478"} +{"$label":"DIRECTED","_key":"114545","_from":"67480","_to":"67478"} +{"$label":"DIRECTED","_key":"114544","_from":"67479","_to":"67478"} +{"$label":"ACTS_IN","name":"Ippolita","type":"Role","_key":"114556","_from":"67484","_to":"67482"} +{"$label":"DIRECTED","_key":"114551","_from":"67483","_to":"67482"} +{"$label":"ACTS_IN","name":"Lea","type":"Role","_key":"114567","_from":"67491","_to":"67490"} +{"$label":"DIRECTED","_key":"114575","_from":"67494","_to":"67493"} +{"$label":"ACTS_IN","name":"rider","type":"Role","_key":"114578","_from":"67499","_to":"67496"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"114577","_from":"67498","_to":"67496"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"114576","_from":"67497","_to":"67496"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116594","_from":"67497","_to":"68634"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116342","_from":"67497","_to":"68482"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114953","_from":"67497","_to":"67701"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114949","_from":"67498","_to":"67701"} +{"$label":"ACTS_IN","name":"Emilia","type":"Role","_key":"114587","_from":"67501","_to":"67500"} +{"$label":"ACTS_IN","name":"Brandon Sinclair","type":"Role","_key":"114592","_from":"67504","_to":"67502"} +{"$label":"DIRECTED","_key":"114591","_from":"67503","_to":"67502"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"118984","_from":"67503","_to":"69921"} +{"$label":"DIRECTED","_key":"118964","_from":"67503","_to":"69921"} +{"$label":"ACTS_IN","name":"Robert Noble","type":"Role","_key":"114598","_from":"67508","_to":"67505"} +{"$label":"ACTS_IN","name":"Matthew Brent","type":"Role","_key":"114597","_from":"67507","_to":"67505"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"114596","_from":"67506","_to":"67505"} +{"$label":"ACTS_IN","name":"Gorwin","type":"Role","_key":"114605","_from":"67512","_to":"67509"} +{"$label":"ACTS_IN","name":"Prince Seth of Delphi","type":"Role","_key":"114601","_from":"67511","_to":"67509"} +{"$label":"DIRECTED","_key":"114600","_from":"67510","_to":"67509"} +{"$label":"DIRECTED","_key":"114608","_from":"67514","_to":"67513"} +{"$label":"ACTS_IN","name":"Steve Harvey","type":"Role","_key":"114607","_from":"67515","_to":"67513"} +{"$label":"ACTS_IN","name":"Leslie Small","type":"Role","_key":"114606","_from":"67514","_to":"67513"} +{"$label":"ACTS_IN","name":"Mack Johnson","type":"Role","_key":"118647","_from":"67515","_to":"69761"} +{"$label":"DIRECTED","_key":"114622","_from":"67517","_to":"67516"} +{"$label":"DIRECTED","_key":"114621","_from":"67518","_to":"67516"} +{"$label":"ACTS_IN","name":"Laila","type":"Role","_key":"114620","_from":"67520","_to":"67516"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"114619","_from":"67519","_to":"67516"} +{"$label":"ACTS_IN","name":"Dominic","type":"Role","_key":"114617","_from":"67518","_to":"67516"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"114616","_from":"67517","_to":"67516"} +{"$label":"ACTS_IN","name":"la femme au foyer","type":"Role","_key":"114631","_from":"67526","_to":"67521"} +{"$label":"ACTS_IN","name":"William O'Day","type":"Role","_key":"114630","_from":"67525","_to":"67521"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"114629","_from":"67524","_to":"67521"} +{"$label":"ACTS_IN","name":"Bridget O'Day","type":"Role","_key":"114626","_from":"67523","_to":"67521"} +{"$label":"ACTS_IN","name":"Cody Ingalls","type":"Role","_key":"114625","_from":"67522","_to":"67521"} +{"$label":"ACTS_IN","name":"Butch","type":"Role","_key":"114638","_from":"67531","_to":"67527"} +{"$label":"ACTS_IN","name":"Stray Bullet","type":"Role","_key":"114637","_from":"67530","_to":"67527"} +{"$label":"ACTS_IN","name":"Postmaster P.","type":"Role","_key":"114636","_from":"67529","_to":"67527"} +{"$label":"DIRECTED","_key":"114632","_from":"67528","_to":"67527"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"114640","_from":"67533","_to":"67532"} +{"$label":"ACTS_IN","name":"Ben Carpenter","type":"Role","_key":"114642","_from":"67535","_to":"67534"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114648","_from":"67542","_to":"67538"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114647","_from":"67541","_to":"67538"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114646","_from":"67540","_to":"67538"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114645","_from":"67539","_to":"67538"} +{"$label":"ACTS_IN","name":"Calpurnia","type":"Role","_key":"114653","_from":"67544","_to":"67543"} +{"$label":"DIRECTED","_key":"114662","_from":"67550","_to":"67545"} +{"$label":"ACTS_IN","name":"Gareth","type":"Role","_key":"114661","_from":"67549","_to":"67545"} +{"$label":"ACTS_IN","name":"Alexander Pierce","type":"Role","_key":"114660","_from":"67548","_to":"67545"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"114658","_from":"67547","_to":"67545"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"114655","_from":"67546","_to":"67545"} +{"$label":"ACTS_IN","name":"Cheesecake","type":"Role","_key":"114676","_from":"67557","_to":"67551"} +{"$label":"ACTS_IN","name":"Sammy","type":"Role","_key":"114675","_from":"67556","_to":"67551"} +{"$label":"ACTS_IN","name":"Gabrielle","type":"Role","_key":"114671","_from":"67555","_to":"67551"} +{"$label":"ACTS_IN","name":"Velda","type":"Role","_key":"114669","_from":"67554","_to":"67551"} +{"$label":"ACTS_IN","name":"Friday","type":"Role","_key":"114668","_from":"67553","_to":"67551"} +{"$label":"ACTS_IN","name":"Eddie Yeager","type":"Role","_key":"114666","_from":"67552","_to":"67551"} +{"$label":"ACTS_IN","name":"Mama","type":"Role","_key":"114682","_from":"67559","_to":"67558"} +{"$label":"ACTS_IN","name":"Willa","type":"Role","_key":"114699","_from":"67564","_to":"67561"} +{"$label":"ACTS_IN","name":"Tess","type":"Role","_key":"114692","_from":"67563","_to":"67561"} +{"$label":"DIRECTED","_key":"114691","_from":"67562","_to":"67561"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"114709","_from":"67568","_to":"67566"} +{"$label":"DIRECTED","_key":"114704","_from":"67567","_to":"67566"} +{"$label":"DIRECTED","_key":"114863","_from":"67567","_to":"67659"} +{"$label":"ACTS_IN","name":"Markus Vik","type":"Role","_key":"114712","_from":"67570","_to":"67569"} +{"$label":"ACTS_IN","name":"Danny Snider","type":"Role","_key":"114719","_from":"67573","_to":"67571"} +{"$label":"ACTS_IN","name":"Jill Snider","type":"Role","_key":"114717","_from":"67572","_to":"67571"} +{"$label":"ACTS_IN","name":"Jo McGuire","type":"Role","_key":"117283","_from":"67572","_to":"68981"} +{"$label":"ACTS_IN","name":"Radio Preacher","type":"Role","_key":"114730","_from":"67579","_to":"67574"} +{"$label":"ACTS_IN","name":"Joe Sikora","type":"Role","_key":"114727","_from":"67578","_to":"67574"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"114726","_from":"67577","_to":"67574"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"114725","_from":"67576","_to":"67574"} +{"$label":"DIRECTED","_key":"114722","_from":"67575","_to":"67574"} +{"$label":"DIRECTED","_key":"114742","_from":"67587","_to":"67581"} +{"$label":"ACTS_IN","name":"Florence","type":"Role","_key":"114740","_from":"67586","_to":"67581"} +{"$label":"ACTS_IN","name":"Katerina","type":"Role","_key":"114739","_from":"67585","_to":"67581"} +{"$label":"ACTS_IN","name":"Jeannie","type":"Role","_key":"114737","_from":"67584","_to":"67581"} +{"$label":"ACTS_IN","name":"Suki","type":"Role","_key":"114736","_from":"67583","_to":"67581"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"114735","_from":"67582","_to":"67581"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"117379","_from":"67586","_to":"69039"} +{"$label":"DIRECTED","_key":"114755","_from":"67594","_to":"67588"} +{"$label":"ACTS_IN","name":"Rolf","type":"Role","_key":"114754","_from":"67593","_to":"67588"} +{"$label":"ACTS_IN","name":"Matthew","type":"Role","_key":"114753","_from":"67592","_to":"67588"} +{"$label":"ACTS_IN","name":"Hester","type":"Role","_key":"114752","_from":"67591","_to":"67588"} +{"$label":"ACTS_IN","name":"Leah","type":"Role","_key":"114750","_from":"67590","_to":"67588"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"114748","_from":"67589","_to":"67588"} +{"$label":"ACTS_IN","name":"Donald Wegman","type":"Role","_key":"114765","_from":"67600","_to":"67595"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"114764","_from":"67599","_to":"67595"} +{"$label":"ACTS_IN","name":"Radiologist","type":"Role","_key":"114763","_from":"67598","_to":"67595"} +{"$label":"ACTS_IN","name":"Dr. Lew Lanigan","type":"Role","_key":"114762","_from":"67597","_to":"67595"} +{"$label":"ACTS_IN","name":"Melody","type":"Role","_key":"114760","_from":"67596","_to":"67595"} +{"$label":"DIRECTED","_key":"114766","_from":"67602","_to":"67601"} +{"$label":"ACTS_IN","name":"doc","type":"Role","_key":"114779","_from":"67607","_to":"67606"} +{"$label":"DIRECTED","_key":"114781","_from":"67612","_to":"67611"} +{"$label":"DIRECTED","_key":"114790","_from":"67616","_to":"67615"} +{"$label":"DIRECTED","_key":"114795","_from":"67618","_to":"67617"} +{"$label":"DIRECTED","_key":"114805","_from":"67621","_to":"67620"} +{"$label":"ACTS_IN","name":"Guy Fawkes","type":"Role","_key":"114809","_from":"67626","_to":"67622"} +{"$label":"ACTS_IN","name":"Princess Elizabeth","type":"Role","_key":"114808","_from":"67625","_to":"67622"} +{"$label":"ACTS_IN","name":"Presenter","type":"Role","_key":"114807","_from":"67624","_to":"67622"} +{"$label":"DIRECTED","_key":"114806","_from":"67623","_to":"67622"} +{"$label":"DIRECTED","_key":"114827","_from":"67640","_to":"67629"} +{"$label":"ACTS_IN","name":"Billy Raduziner","type":"Role","_key":"114826","_from":"67639","_to":"67629"} +{"$label":"ACTS_IN","name":"Brody","type":"Role","_key":"114824","_from":"67638","_to":"67629"} +{"$label":"ACTS_IN","name":"Max Pierson","type":"Role","_key":"114821","_from":"67637","_to":"67629"} +{"$label":"ACTS_IN","name":"Stazi","type":"Role","_key":"114820","_from":"67636","_to":"67629"} +{"$label":"ACTS_IN","name":"Sergey","type":"Role","_key":"114819","_from":"67635","_to":"67629"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"114818","_from":"67634","_to":"67629"} +{"$label":"ACTS_IN","name":"Fedor","type":"Role","_key":"114817","_from":"67633","_to":"67629"} +{"$label":"ACTS_IN","name":"Nicholi","type":"Role","_key":"114816","_from":"67632","_to":"67629"} +{"$label":"ACTS_IN","name":"Michael Donovan","type":"Role","_key":"114815","_from":"67631","_to":"67629"} +{"$label":"ACTS_IN","name":"James Donovan","type":"Role","_key":"114814","_from":"67630","_to":"67629"} +{"$label":"ACTS_IN","name":"Mr. Beck","type":"Role","_key":"115192","_from":"67637","_to":"67837"} +{"$label":"ACTS_IN","name":"Lee","type":"Role","_key":"114829","_from":"67642","_to":"67641"} +{"$label":"DIRECTED","_key":"114839","_from":"67646","_to":"67644"} +{"$label":"ACTS_IN","name":"Ricky Dean","type":"Role","_key":"114838","_from":"67645","_to":"67644"} +{"$label":"ACTS_IN","name":"Juan","type":"Role","_key":"114841","_from":"67648","_to":"67647"} +{"$label":"DIRECTED","_key":"114849","_from":"67652","_to":"67650"} +{"$label":"ACTS_IN","name":"Martha","type":"Role","_key":"114848","_from":"67651","_to":"67650"} +{"$label":"ACTS_IN","name":"Host","type":"Role","_key":"114851","_from":"67655","_to":"67653"} +{"$label":"ACTS_IN","name":"Host","type":"Role","_key":"114850","_from":"67654","_to":"67653"} +{"$label":"DIRECTED","_key":"114859","_from":"67658","_to":"67657"} +{"$label":"DIRECTED","_key":"114880","_from":"67662","_to":"67661"} +{"$label":"ACTS_IN","name":"Robert Penny","type":"Role","_key":"114884","_from":"67665","_to":"67663"} +{"$label":"DIRECTED","_key":"114881","_from":"67664","_to":"67663"} +{"$label":"DIRECTED","_key":"114890","_from":"67667","_to":"67666"} +{"$label":"ACTS_IN","name":"Herself \/ Manager","type":"Role","_key":"114902","_from":"67675","_to":"67668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114901","_from":"67674","_to":"67668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114900","_from":"67673","_to":"67668"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"114899","_from":"67672","_to":"67668"} +{"$label":"ACTS_IN","name":"Himself \/ Drummer","type":"Role","_key":"114898","_from":"67671","_to":"67668"} +{"$label":"ACTS_IN","name":"Himself \/ Lead Guitar","type":"Role","_key":"114897","_from":"67670","_to":"67668"} +{"$label":"DIRECTED","_key":"114896","_from":"67669","_to":"67668"} +{"$label":"ACTS_IN","name":"Princess Zobeide","type":"Role","_key":"114911","_from":"67680","_to":"67679"} +{"$label":"DIRECTED","_key":"114916","_from":"67684","_to":"67681"} +{"$label":"ACTS_IN","name":"Madeline Renault","type":"Role","_key":"114914","_from":"67683","_to":"67681"} +{"$label":"ACTS_IN","name":"Dr. Larry Forbes","type":"Role","_key":"114913","_from":"67682","_to":"67681"} +{"$label":"ACTS_IN","name":"Meg Halsey","type":"Role","_key":"114926","_from":"67689","_to":"67685"} +{"$label":"ACTS_IN","name":"Ernest","type":"Role","_key":"114925","_from":"67688","_to":"67685"} +{"$label":"ACTS_IN","name":"Dr. Graves","type":"Role","_key":"114923","_from":"67687","_to":"67685"} +{"$label":"ACTS_IN","name":"Lt. Leslie Chapham","type":"Role","_key":"114919","_from":"67686","_to":"67685"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114931","_from":"67694","_to":"67690"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114930","_from":"67693","_to":"67690"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114929","_from":"67692","_to":"67690"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"114928","_from":"67691","_to":"67690"} +{"$label":"DIRECTED","_key":"114938","_from":"67697","_to":"67696"} +{"$label":"ACTS_IN","name":"Hesh-Ke","type":"Role","_key":"114946","_from":"67700","_to":"67699"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114948","_from":"67702","_to":"67701"} +{"$label":"DIRECTED","_key":"114958","_from":"67707","_to":"67703"} +{"$label":"ACTS_IN","name":"Julian","type":"Role","_key":"114957","_from":"67706","_to":"67703"} +{"$label":"ACTS_IN","name":"Emilio","type":"Role","_key":"114956","_from":"67705","_to":"67703"} +{"$label":"ACTS_IN","name":"Ruedas","type":"Role","_key":"114955","_from":"67704","_to":"67703"} +{"$label":"DIRECTED","_key":"114974","_from":"67710","_to":"67709"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"114977","_from":"67714","_to":"67711"} +{"$label":"ACTS_IN","name":"Rita","type":"Role","_key":"114976","_from":"67713","_to":"67711"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"114975","_from":"67712","_to":"67711"} +{"$label":"ACTS_IN","name":"Lilly Truscott","type":"Role","_key":"114984","_from":"67716","_to":"67715"} +{"$label":"DIRECTED","_key":"114987","_from":"67720","_to":"67717"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114986","_from":"67719","_to":"67717"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"114985","_from":"67718","_to":"67717"} +{"$label":"ACTS_IN","name":"FBI man","type":"Role","_key":"115018","_from":"67732","_to":"67722"} +{"$label":"ACTS_IN","name":"Receptionist 2","type":"Role","_key":"115017","_from":"67731","_to":"67722"} +{"$label":"ACTS_IN","name":"Receptionist 1 (as Teresa Gilmore Capps)","type":"Role","_key":"115016","_from":"67730","_to":"67722"} +{"$label":"ACTS_IN","name":"Sailor - Stinky","type":"Role","_key":"115011","_from":"67729","_to":"67722"} +{"$label":"ACTS_IN","name":"Maid","type":"Role","_key":"115006","_from":"67728","_to":"67722"} +{"$label":"ACTS_IN","name":"Nurse Carol Flynn","type":"Role","_key":"115005","_from":"67727","_to":"67722"} +{"$label":"ACTS_IN","name":"Cop","type":"Role","_key":"114998","_from":"67726","_to":"67722"} +{"$label":"ACTS_IN","name":"Bartender","type":"Role","_key":"114997","_from":"67725","_to":"67722"} +{"$label":"ACTS_IN","name":"Racetrack Announcer","type":"Role","_key":"114995","_from":"67724","_to":"67722"} +{"$label":"ACTS_IN","name":"Guy in bar","type":"Role","_key":"114994","_from":"67723","_to":"67722"} +{"$label":"DIRECTED","_key":"115029","_from":"67735","_to":"67733"} +{"$label":"ACTS_IN","name":"Raphy","type":"Role","_key":"115027","_from":"67734","_to":"67733"} +{"$label":"ACTS_IN","name":"Renate","type":"Role","_key":"115033","_from":"67738","_to":"67736"} +{"$label":"ACTS_IN","name":"Hamza","type":"Role","_key":"115032","_from":"67737","_to":"67736"} +{"$label":"ACTS_IN","name":"Coach Clayton","type":"Role","_key":"115045","_from":"67742","_to":"67739"} +{"$label":"ACTS_IN","name":"Coach Humes","type":"Role","_key":"115044","_from":"67741","_to":"67739"} +{"$label":"ACTS_IN","name":"Bobby Collins","type":"Role","_key":"115042","_from":"67740","_to":"67739"} +{"$label":"ACTS_IN","name":"Bea (as Lena-Maria)","type":"Role","_key":"115054","_from":"67749","_to":"67744"} +{"$label":"ACTS_IN","name":"Captain 'Beethoven'","type":"Role","_key":"115053","_from":"67748","_to":"67744"} +{"$label":"ACTS_IN","name":"Jonas Gustafsson","type":"Role","_key":"115052","_from":"67747","_to":"67744"} +{"$label":"ACTS_IN","name":"Hans \u00d6berg","type":"Role","_key":"115050","_from":"67746","_to":"67744"} +{"$label":"ACTS_IN","name":"B\u00f6rje Larsson","type":"Role","_key":"115049","_from":"67745","_to":"67744"} +{"$label":"DIRECTED","_key":"115057","_from":"67754","_to":"67753"} +{"$label":"DIRECTED","_key":"115070","_from":"67763","_to":"67755"} +{"$label":"ACTS_IN","name":"Yone Hattori","type":"Role","_key":"115069","_from":"67762","_to":"67755"} +{"$label":"ACTS_IN","name":"Osamu Hattori","type":"Role","_key":"115068","_from":"67761","_to":"67755"} +{"$label":"ACTS_IN","name":"Keiso Hirayama","type":"Role","_key":"115067","_from":"67760","_to":"67755"} +{"$label":"ACTS_IN","name":"Fumiko Hirayama - his wife","type":"Role","_key":"115063","_from":"67759","_to":"67755"} +{"$label":"ACTS_IN","name":"Shige Kaneko","type":"Role","_key":"115061","_from":"67758","_to":"67755"} +{"$label":"ACTS_IN","name":"Noriko Hirayama","type":"Role","_key":"115060","_from":"67757","_to":"67755"} +{"$label":"ACTS_IN","name":"Tomi Hirayama","type":"Role","_key":"115059","_from":"67756","_to":"67755"} +{"$label":"ACTS_IN","name":"Unnamed Antagonist","type":"Role","_key":"115074","_from":"67767","_to":"67764"} +{"$label":"ACTS_IN","name":"Gaadha","type":"Role","_key":"115073","_from":"67766","_to":"67764"} +{"$label":"ACTS_IN","name":"Peter Kallikal","type":"Role","_key":"115072","_from":"67765","_to":"67764"} +{"$label":"DIRECTED","_key":"115077","_from":"67772","_to":"67770"} +{"$label":"DIRECTED","_key":"115076","_from":"67771","_to":"67770"} +{"$label":"ACTS_IN","name":"Monique","type":"Role","_key":"115092","_from":"67778","_to":"67774"} +{"$label":"ACTS_IN","name":"Cecilia the Sex-crazed Woman","type":"Role","_key":"115091","_from":"67777","_to":"67774"} +{"$label":"ACTS_IN","name":"Norm","type":"Role","_key":"115087","_from":"67776","_to":"67774"} +{"$label":"DIRECTED","_key":"115086","_from":"67775","_to":"67774"} +{"$label":"ACTS_IN","name":"SAM","type":"Role","_key":"115095","_from":"67781","_to":"67779"} +{"$label":"ACTS_IN","name":"Stephanie","type":"Role","_key":"115094","_from":"67780","_to":"67779"} +{"$label":"DIRECTED","_key":"115104","_from":"67787","_to":"67783"} +{"$label":"ACTS_IN","name":"Motorcycle cop","type":"Role","_key":"115103","_from":"67786","_to":"67783"} +{"$label":"ACTS_IN","name":"Gen. Edmunds","type":"Role","_key":"115102","_from":"67785","_to":"67783"} +{"$label":"ACTS_IN","name":"Vice Adm. Enright","type":"Role","_key":"115101","_from":"67784","_to":"67783"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"117431","_from":"67786","_to":"69064"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"115124","_from":"67796","_to":"67789"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"115123","_from":"67795","_to":"67789"} +{"$label":"ACTS_IN","name":"Teenager","type":"Role","_key":"115121","_from":"67794","_to":"67789"} +{"$label":"ACTS_IN","name":"Tar Pits Kid","type":"Role","_key":"115119","_from":"67793","_to":"67789"} +{"$label":"ACTS_IN","name":"Tar Pits Kid","type":"Role","_key":"115118","_from":"67792","_to":"67789"} +{"$label":"ACTS_IN","name":"Tar Pits Kid","type":"Role","_key":"115117","_from":"67791","_to":"67789"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115115","_from":"67790","_to":"67789"} +{"$label":"ACTS_IN","name":"Leonard Fisher","type":"Role","_key":"115127","_from":"67799","_to":"67797"} +{"$label":"ACTS_IN","name":"Jacob \/ Rudy Carges","type":"Role","_key":"115126","_from":"67798","_to":"67797"} +{"$label":"DIRECTED","_key":"115132","_from":"67801","_to":"67800"} +{"$label":"ACTS_IN","name":"Porn Actor","type":"Role","_key":"115137","_from":"67803","_to":"67802"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"115144","_from":"67806","_to":"67805"} +{"$label":"ACTS_IN","name":"Tara Cartier","type":"Role","_key":"115157","_from":"67813","_to":"67810"} +{"$label":"ACTS_IN","name":"Russ Turner","type":"Role","_key":"115156","_from":"67812","_to":"67810"} +{"$label":"DIRECTED","_key":"115155","_from":"67811","_to":"67810"} +{"$label":"ACTS_IN","name":"Sheila Birling","type":"Role","_key":"115161","_from":"67817","_to":"67814"} +{"$label":"ACTS_IN","name":"Gerald Croft","type":"Role","_key":"115160","_from":"67816","_to":"67814"} +{"$label":"ACTS_IN","name":"Eva Smith","type":"Role","_key":"115159","_from":"67815","_to":"67814"} +{"$label":"DIRECTED","_key":"115167","_from":"67819","_to":"67818"} +{"$label":"DIRECTED","_key":"115174","_from":"67822","_to":"67820"} +{"$label":"ACTS_IN","name":"Ms. Smart","type":"Role","_key":"115171","_from":"67821","_to":"67820"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"115176","_from":"67825","_to":"67823"} +{"$label":"DIRECTED","_key":"115175","_from":"67824","_to":"67823"} +{"$label":"ACTS_IN","name":"Menka","type":"Role","_key":"115179","_from":"67828","_to":"67826"} +{"$label":"ACTS_IN","name":"Dr Lazar Perkov","type":"Role","_key":"115178","_from":"67827","_to":"67826"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115185","_from":"67834","_to":"67829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115183","_from":"67833","_to":"67829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115182","_from":"67832","_to":"67829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115181","_from":"67831","_to":"67829"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115180","_from":"67830","_to":"67829"} +{"$label":"ACTS_IN","name":"Alexandra","type":"Role","_key":"115196","_from":"67842","_to":"67837"} +{"$label":"ACTS_IN","name":"Gwen Thompson","type":"Role","_key":"115191","_from":"67841","_to":"67837"} +{"$label":"ACTS_IN","name":"Sonali Matthews","type":"Role","_key":"115190","_from":"67840","_to":"67837"} +{"$label":"ACTS_IN","name":"Tara James","type":"Role","_key":"115189","_from":"67839","_to":"67837"} +{"$label":"ACTS_IN","name":"Tyler Maxwell","type":"Role","_key":"115187","_from":"67838","_to":"67837"} +{"$label":"DIRECTED","_key":"115202","_from":"67846","_to":"67845"} +{"$label":"DIRECTED","_key":"115213","_from":"67850","_to":"67849"} +{"$label":"ACTS_IN","name":"Lady Pleasure","type":"Role","_key":"115241","_from":"67869","_to":"67853"} +{"$label":"ACTS_IN","name":"The Jumper","type":"Role","_key":"115239","_from":"67868","_to":"67853"} +{"$label":"ACTS_IN","name":"The Critic","type":"Role","_key":"115238","_from":"67867","_to":"67853"} +{"$label":"ACTS_IN","name":"Sally Silicone","type":"Role","_key":"115237","_from":"67866","_to":"67853"} +{"$label":"ACTS_IN","name":"Private One","type":"Role","_key":"115236","_from":"67865","_to":"67853"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"115235","_from":"67864","_to":"67853"} +{"$label":"ACTS_IN","name":"Black Sheik","type":"Role","_key":"115233","_from":"67863","_to":"67853"} +{"$label":"ACTS_IN","name":"Mayor Feedback","type":"Role","_key":"115232","_from":"67862","_to":"67853"} +{"$label":"ACTS_IN","name":"Mr & Mrs Ace","type":"Role","_key":"115231","_from":"67861","_to":"67853"} +{"$label":"ACTS_IN","name":"Inspector Shrink","type":"Role","_key":"115230","_from":"67860","_to":"67853"} +{"$label":"ACTS_IN","name":"I. Vitteloni","type":"Role","_key":"115228","_from":"67859","_to":"67853"} +{"$label":"ACTS_IN","name":"Off. Faye Lapid","type":"Role","_key":"115227","_from":"67858","_to":"67853"} +{"$label":"ACTS_IN","name":"Minnie","type":"Role","_key":"115225","_from":"67857","_to":"67853"} +{"$label":"ACTS_IN","name":"Mike","type":"Role","_key":"115224","_from":"67856","_to":"67853"} +{"$label":"ACTS_IN","name":"Davy","type":"Role","_key":"115222","_from":"67855","_to":"67853"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"115221","_from":"67854","_to":"67853"} +{"$label":"ACTS_IN","name":"Malcolm Stinnett","type":"Role","_key":"115264","_from":"67873","_to":"67870"} +{"$label":"ACTS_IN","name":"James Brenner","type":"Role","_key":"115259","_from":"67872","_to":"67870"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"115256","_from":"67871","_to":"67870"} +{"$label":"ACTS_IN","name":"Harry Pope \/ Stephen Manfield","type":"Role","_key":"115271","_from":"67875","_to":"67874"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115274","_from":"67878","_to":"67877"} +{"$label":"ACTS_IN","name":"Suzanne de Beaumont","type":"Role","_key":"115277","_from":"67880","_to":"67879"} +{"$label":"DIRECTED","_key":"115299","_from":"67886","_to":"67881"} +{"$label":"ACTS_IN","name":"Gare","type":"Role","_key":"115296","_from":"67885","_to":"67881"} +{"$label":"ACTS_IN","name":"Stromnian","type":"Role","_key":"115295","_from":"67884","_to":"67881"} +{"$label":"ACTS_IN","name":"Rauskaug","type":"Role","_key":"115292","_from":"67883","_to":"67881"} +{"$label":"ACTS_IN","name":"Yvonne","type":"Role","_key":"115288","_from":"67882","_to":"67881"} +{"$label":"ACTS_IN","name":"Tiffany Monaco","type":"Role","_key":"119495","_from":"67882","_to":"70191"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115305","_from":"67890","_to":"67888"} +{"$label":"DIRECTED","_key":"115304","_from":"67889","_to":"67888"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"115319","_from":"67900","_to":"67891"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"115318","_from":"67899","_to":"67891"} +{"$label":"ACTS_IN","name":"Ubaldo","type":"Role","_key":"115317","_from":"67898","_to":"67891"} +{"$label":"ACTS_IN","name":"Do\u00f1a Flor","type":"Role","_key":"115316","_from":"67897","_to":"67891"} +{"$label":"ACTS_IN","name":"G\u00fcicho","type":"Role","_key":"115314","_from":"67896","_to":"67891"} +{"$label":"ACTS_IN","name":"Zacar\u00edas","type":"Role","_key":"115313","_from":"67895","_to":"67891"} +{"$label":"ACTS_IN","name":"Chava","type":"Role","_key":"115312","_from":"67894","_to":"67891"} +{"$label":"ACTS_IN","name":"Don Fidel","type":"Role","_key":"115311","_from":"67893","_to":"67891"} +{"$label":"ACTS_IN","name":"Do\u00f1a Cata","type":"Role","_key":"115307","_from":"67892","_to":"67891"} +{"$label":"ACTS_IN","name":"Cop (as Anthony Armatrading)","type":"Role","_key":"115327","_from":"67903","_to":"67901"} +{"$label":"DIRECTED","_key":"115321","_from":"67902","_to":"67901"} +{"$label":"ACTS_IN","name":"Clive Messerman","type":"Role","_key":"115331","_from":"67906","_to":"67904"} +{"$label":"ACTS_IN","name":"William Messerman","type":"Role","_key":"115330","_from":"67905","_to":"67904"} +{"$label":"ACTS_IN","name":"Avarice","type":"Role","_key":"115345","_from":"67910","_to":"67907"} +{"$label":"ACTS_IN","name":"Gluttony","type":"Role","_key":"115344","_from":"67909","_to":"67907"} +{"$label":"ACTS_IN","name":"Vanity","type":"Role","_key":"115341","_from":"67908","_to":"67907"} +{"$label":"ACTS_IN","name":"Frances","type":"Role","_key":"115352","_from":"67915","_to":"67913"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"115349","_from":"67914","_to":"67913"} +{"$label":"ACTS_IN","name":"White Liger Roadie","type":"Role","_key":"115367","_from":"67929","_to":"67916"} +{"$label":"ACTS_IN","name":"Mr. Robinson","type":"Role","_key":"115366","_from":"67928","_to":"67916"} +{"$label":"ACTS_IN","name":"Ginger","type":"Role","_key":"115365","_from":"67927","_to":"67916"} +{"$label":"ACTS_IN","name":"Sharon","type":"Role","_key":"115364","_from":"67926","_to":"67916"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"115363","_from":"67925","_to":"67916"} +{"$label":"ACTS_IN","name":"Pam","type":"Role","_key":"115362","_from":"67924","_to":"67916"} +{"$label":"ACTS_IN","name":"The Chef","type":"Role","_key":"115361","_from":"67923","_to":"67916"} +{"$label":"ACTS_IN","name":"Coach Smith","type":"Role","_key":"115360","_from":"67922","_to":"67916"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"115359","_from":"67921","_to":"67916"} +{"$label":"ACTS_IN","name":"Jenny","type":"Role","_key":"115358","_from":"67920","_to":"67916"} +{"$label":"ACTS_IN","name":"Mike M.","type":"Role","_key":"115357","_from":"67919","_to":"67916"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"115356","_from":"67918","_to":"67916"} +{"$label":"DIRECTED","_key":"115354","_from":"67918","_to":"67916"} +{"$label":"DIRECTED","_key":"115353","_from":"67917","_to":"67916"} +{"$label":"DIRECTED","_key":"115370","_from":"67931","_to":"67930"} +{"$label":"ACTS_IN","name":"Phil","type":"Role","_key":"115375","_from":"67938","_to":"67934"} +{"$label":"ACTS_IN","name":"Danny","type":"Role","_key":"115374","_from":"67937","_to":"67934"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"115373","_from":"67936","_to":"67934"} +{"$label":"ACTS_IN","name":"Rene","type":"Role","_key":"115372","_from":"67935","_to":"67934"} +{"$label":"ACTS_IN","name":"Ina May Gaskin","type":"Role","_key":"115381","_from":"67942","_to":"67939"} +{"$label":"ACTS_IN","name":"Abby Epstein","type":"Role","_key":"115380","_from":"67940","_to":"67939"} +{"$label":"ACTS_IN","name":"Julia Barnett Tracy","type":"Role","_key":"115379","_from":"67941","_to":"67939"} +{"$label":"DIRECTED","_key":"115378","_from":"67940","_to":"67939"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115392","_from":"67946","_to":"67943"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"115391","_from":"67945","_to":"67943"} +{"$label":"ACTS_IN","name":"Anne","type":"Role","_key":"115390","_from":"67944","_to":"67943"} +{"$label":"ACTS_IN","name":"Danielle 'Daisy' Brooks","type":"Role","_key":"115399","_from":"67951","_to":"67950"} +{"$label":"ACTS_IN","name":"Norik","type":"Role","_key":"115409","_from":"67956","_to":"67952"} +{"$label":"ACTS_IN","name":"Iruini","type":"Role","_key":"115403","_from":"67955","_to":"67952"} +{"$label":"DIRECTED","_key":"115401","_from":"67954","_to":"67952"} +{"$label":"DIRECTED","_key":"115400","_from":"67953","_to":"67952"} +{"$label":"DIRECTED","_key":"119722","_from":"67953","_to":"70313"} +{"$label":"DIRECTED","_key":"119723","_from":"67954","_to":"70313"} +{"$label":"ACTS_IN","name":"Toa Pohatu (voice)","type":"Role","_key":"119733","_from":"67955","_to":"70313"} +{"$label":"ACTS_IN","name":"Lord Cucuface","type":"Role","_key":"120993","_from":"67956","_to":"71070"} +{"$label":"ACTS_IN","name":"Lord Cucuface","type":"Role","_key":"119839","_from":"67956","_to":"70374"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"115414","_from":"67960","_to":"67957"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"115413","_from":"67959","_to":"67957"} +{"$label":"ACTS_IN","name":"Mia","type":"Role","_key":"115412","_from":"67958","_to":"67957"} +{"$label":"DIRECTED","_key":"115418","_from":"67963","_to":"67961"} +{"$label":"ACTS_IN","name":"Andr\u00e9 Tolstoi","type":"Role","_key":"115417","_from":"67962","_to":"67961"} +{"$label":"ACTS_IN","name":"Beverly Martin","type":"Role","_key":"115427","_from":"67968","_to":"67964"} +{"$label":"ACTS_IN","name":"Fred Gates","type":"Role","_key":"115423","_from":"67967","_to":"67964"} +{"$label":"ACTS_IN","name":"Abigail Prentice","type":"Role","_key":"115422","_from":"67966","_to":"67964"} +{"$label":"ACTS_IN","name":"Maile Duval","type":"Role","_key":"115420","_from":"67965","_to":"67964"} +{"$label":"ACTS_IN","name":"Rose Grogan","type":"Role","_key":"117098","_from":"67965","_to":"68902"} +{"$label":"ACTS_IN","name":"Singer","type":"Role","_key":"115442","_from":"67970","_to":"67969"} +{"$label":"DIRECTED","_key":"115455","_from":"67975","_to":"67972"} +{"$label":"ACTS_IN","name":"Sevar","type":"Role","_key":"115454","_from":"67978","_to":"67972"} +{"$label":"ACTS_IN","name":"Gary Mitchell","type":"Role","_key":"115452","_from":"67977","_to":"67972"} +{"$label":"ACTS_IN","name":"Xela","type":"Role","_key":"115451","_from":"67976","_to":"67972"} +{"$label":"ACTS_IN","name":"Tuvok","type":"Role","_key":"115450","_from":"67975","_to":"67972"} +{"$label":"ACTS_IN","name":"Charlie Evans","type":"Role","_key":"115447","_from":"67974","_to":"67972"} +{"$label":"ACTS_IN","name":"Commander Garan","type":"Role","_key":"115446","_from":"67973","_to":"67972"} +{"$label":"ACTS_IN","name":"Cemetery's saleswoman","type":"Role","_key":"115464","_from":"67983","_to":"67979"} +{"$label":"ACTS_IN","name":"Qin'sfriend","type":"Role","_key":"115461","_from":"67982","_to":"67979"} +{"$label":"ACTS_IN","name":"Sexless candidate","type":"Role","_key":"115460","_from":"67981","_to":"67979"} +{"$label":"ACTS_IN","name":"Venture capitalist","type":"Role","_key":"115459","_from":"67980","_to":"67979"} +{"$label":"DIRECTED","_key":"115483","_from":"67996","_to":"67985"} +{"$label":"ACTS_IN","name":"Blonde","type":"Role","_key":"115482","_from":"67995","_to":"67985"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"115481","_from":"67994","_to":"67985"} +{"$label":"ACTS_IN","name":"Ms Rossi","type":"Role","_key":"115480","_from":"67993","_to":"67985"} +{"$label":"ACTS_IN","name":"Landlord","type":"Role","_key":"115479","_from":"67992","_to":"67985"} +{"$label":"ACTS_IN","name":"Rebecca","type":"Role","_key":"115478","_from":"67991","_to":"67985"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"115477","_from":"67990","_to":"67985"} +{"$label":"ACTS_IN","name":"Trudi","type":"Role","_key":"115476","_from":"67989","_to":"67985"} +{"$label":"ACTS_IN","name":"Anke","type":"Role","_key":"115475","_from":"67988","_to":"67985"} +{"$label":"ACTS_IN","name":"Eva","type":"Role","_key":"115472","_from":"67987","_to":"67985"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"115469","_from":"67986","_to":"67985"} +{"$label":"ACTS_IN","name":"Claire Leevy","type":"Role","_key":"119028","_from":"67995","_to":"69971"} +{"$label":"ACTS_IN","name":"Biker (uncredited)","type":"Role","_key":"115516","_from":"68008","_to":"67997"} +{"$label":"ACTS_IN","name":"Gianna","type":"Role","_key":"115515","_from":"68007","_to":"67997"} +{"$label":"ACTS_IN","name":"Heidi","type":"Role","_key":"115514","_from":"68006","_to":"67997"} +{"$label":"ACTS_IN","name":"Felix","type":"Role","_key":"115513","_from":"68005","_to":"67997"} +{"$label":"ACTS_IN","name":"Demetri","type":"Role","_key":"115512","_from":"68004","_to":"67997"} +{"$label":"ACTS_IN","name":"Billy Black","type":"Role","_key":"115506","_from":"68003","_to":"67997"} +{"$label":"ACTS_IN","name":"Sam Uley","type":"Role","_key":"115503","_from":"68002","_to":"67997"} +{"$label":"ACTS_IN","name":"Embry Call","type":"Role","_key":"115502","_from":"68001","_to":"67997"} +{"$label":"ACTS_IN","name":"Paul","type":"Role","_key":"115501","_from":"68000","_to":"67997"} +{"$label":"ACTS_IN","name":"Jared","type":"Role","_key":"115500","_from":"67999","_to":"67997"} +{"$label":"ACTS_IN","name":"Angela Weber","type":"Role","_key":"115498","_from":"67998","_to":"67997"} +{"$label":"ACTS_IN","name":"Jim McKittrick","type":"Role","_key":"115530","_from":"68010","_to":"68009"} +{"$label":"ACTS_IN","name":"Ma Thumb","type":"Role","_key":"115533","_from":"68013","_to":"68011"} +{"$label":"ACTS_IN","name":"Pa Thumb","type":"Role","_key":"115532","_from":"68012","_to":"68011"} +{"$label":"ACTS_IN","name":"Paige","type":"Role","_key":"115538","_from":"68016","_to":"68014"} +{"$label":"ACTS_IN","name":"Dr. Anthony","type":"Role","_key":"115537","_from":"68015","_to":"68014"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"116642","_from":"68016","_to":"68658"} +{"$label":"ACTS_IN","name":"George Defranco","type":"Role","_key":"115540","_from":"68019","_to":"68017"} +{"$label":"ACTS_IN","name":"Joe Defranco","type":"Role","_key":"115539","_from":"68018","_to":"68017"} +{"$label":"ACTS_IN","name":"Robin","type":"Role","_key":"115548","_from":"68024","_to":"68020"} +{"$label":"ACTS_IN","name":"Tammi","type":"Role","_key":"115547","_from":"68023","_to":"68020"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"115545","_from":"68022","_to":"68020"} +{"$label":"ACTS_IN","name":"Amy","type":"Role","_key":"115544","_from":"68021","_to":"68020"} +{"$label":"DIRECTED","_key":"115551","_from":"68027","_to":"68025"} +{"$label":"ACTS_IN","name":"sean cold","type":"Role","_key":"115550","_from":"68026","_to":"68025"} +{"$label":"ACTS_IN","name":"Miss Ambrose","type":"Role","_key":"115555","_from":"68030","_to":"68028"} +{"$label":"ACTS_IN","name":"Darius Biederbeck","type":"Role","_key":"115553","_from":"68029","_to":"68028"} +{"$label":"ACTS_IN","name":"Rebecca Reilly","type":"Role","_key":"115570","_from":"68035","_to":"68034"} +{"$label":"ACTS_IN","name":"Brother Blake","type":"Role","_key":"115585","_from":"68048","_to":"68036"} +{"$label":"ACTS_IN","name":"Marv the Butcher","type":"Role","_key":"115584","_from":"68047","_to":"68036"} +{"$label":"ACTS_IN","name":"Jelly","type":"Role","_key":"115583","_from":"68046","_to":"68036"} +{"$label":"ACTS_IN","name":"Tango","type":"Role","_key":"115582","_from":"68045","_to":"68036"} +{"$label":"ACTS_IN","name":"Plummer","type":"Role","_key":"115581","_from":"68044","_to":"68036"} +{"$label":"ACTS_IN","name":"Oscar","type":"Role","_key":"115580","_from":"68043","_to":"68036"} +{"$label":"ACTS_IN","name":"Pinky","type":"Role","_key":"115579","_from":"68042","_to":"68036"} +{"$label":"ACTS_IN","name":"Blue Eyes","type":"Role","_key":"115578","_from":"68041","_to":"68036"} +{"$label":"ACTS_IN","name":"Big Tuna","type":"Role","_key":"115577","_from":"68040","_to":"68036"} +{"$label":"ACTS_IN","name":"Don Steffano","type":"Role","_key":"115576","_from":"68039","_to":"68036"} +{"$label":"ACTS_IN","name":"Toppy","type":"Role","_key":"115575","_from":"68038","_to":"68036"} +{"$label":"ACTS_IN","name":"Quincy","type":"Role","_key":"115574","_from":"68037","_to":"68036"} +{"$label":"ACTS_IN","name":"Toki Konuma","type":"Role","_key":"115591","_from":"68052","_to":"68049"} +{"$label":"ACTS_IN","name":"Chavez","type":"Role","_key":"115589","_from":"68051","_to":"68049"} +{"$label":"ACTS_IN","name":"Janicot","type":"Role","_key":"115588","_from":"68050","_to":"68049"} +{"$label":"ACTS_IN","name":"Det. Gray","type":"Role","_key":"115608","_from":"68058","_to":"68053"} +{"$label":"ACTS_IN","name":"Ezra Dobson","type":"Role","_key":"115605","_from":"68057","_to":"68053"} +{"$label":"ACTS_IN","name":"Vic Mason","type":"Role","_key":"115604","_from":"68056","_to":"68053"} +{"$label":"ACTS_IN","name":"Margaret Dobson","type":"Role","_key":"115599","_from":"68055","_to":"68053"} +{"$label":"ACTS_IN","name":"Holiday Carleton","type":"Role","_key":"115598","_from":"68054","_to":"68053"} +{"$label":"ACTS_IN","name":"Spud Oxton","type":"Role","_key":"115620","_from":"68064","_to":"68059"} +{"$label":"ACTS_IN","name":"Fritz","type":"Role","_key":"115619","_from":"68063","_to":"68059"} +{"$label":"ACTS_IN","name":"Tom Quigby","type":"Role","_key":"115618","_from":"68062","_to":"68059"} +{"$label":"ACTS_IN","name":"Frank Darrah","type":"Role","_key":"115617","_from":"68061","_to":"68059"} +{"$label":"ACTS_IN","name":"Dave Waggoman","type":"Role","_key":"115614","_from":"68060","_to":"68059"} +{"$label":"ACTS_IN","name":"Axel","type":"Role","_key":"115623","_from":"68066","_to":"68065"} +{"$label":"ACTS_IN","name":"Kenneth Martindale","type":"Role","_key":"115635","_from":"68075","_to":"68070"} +{"$label":"ACTS_IN","name":"Michael Martindale","type":"Role","_key":"115634","_from":"68074","_to":"68070"} +{"$label":"ACTS_IN","name":"Jenny Crockett","type":"Role","_key":"115632","_from":"68073","_to":"68070"} +{"$label":"ACTS_IN","name":"Bella Garrington","type":"Role","_key":"115631","_from":"68072","_to":"68070"} +{"$label":"ACTS_IN","name":"Karen Crockett","type":"Role","_key":"115629","_from":"68071","_to":"68070"} +{"$label":"ACTS_IN","name":"Evelyn Stanton","type":"Role","_key":"118480","_from":"68073","_to":"69646"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115637","_from":"68077","_to":"68076"} +{"$label":"ACTS_IN","name":"Eric Ross","type":"Role","_key":"115643","_from":"68082","_to":"68078"} +{"$label":"ACTS_IN","name":"Janine Hopper","type":"Role","_key":"115642","_from":"68081","_to":"68078"} +{"$label":"ACTS_IN","name":"Daisy Hopper","type":"Role","_key":"115640","_from":"68080","_to":"68078"} +{"$label":"ACTS_IN","name":"Dwayne Hopper","type":"Role","_key":"115639","_from":"68079","_to":"68078"} +{"$label":"DIRECTED","_key":"115646","_from":"68085","_to":"68083"} +{"$label":"ACTS_IN","name":"Niko Smolander","type":"Role","_key":"115645","_from":"68084","_to":"68083"} +{"$label":"ACTS_IN","name":"Mr. Malby (Ellen's father)","type":"Role","_key":"115662","_from":"68092","_to":"68087"} +{"$label":"ACTS_IN","name":"Mrs. Malby (Ellen's mother)","type":"Role","_key":"115661","_from":"68091","_to":"68087"} +{"$label":"ACTS_IN","name":"Gus Heldon (bar owner)","type":"Role","_key":"115660","_from":"68090","_to":"68087"} +{"$label":"ACTS_IN","name":"Nick Drumman \/ Stevenson","type":"Role","_key":"115656","_from":"68089","_to":"68087"} +{"$label":"ACTS_IN","name":"George Garsell \/ Mr. Howard","type":"Role","_key":"115650","_from":"68088","_to":"68087"} +{"$label":"ACTS_IN","name":"Colonel Ames","type":"Role","_key":"115675","_from":"68097","_to":"68096"} +{"$label":"DIRECTED","_key":"115722","_from":"68136","_to":"68098"} +{"$label":"ACTS_IN","name":"Self Defense Forces Officer","type":"Role","_key":"115721","_from":"68135","_to":"68098"} +{"$label":"ACTS_IN","name":"Self Defense Forces Officer","type":"Role","_key":"115720","_from":"68134","_to":"68098"} +{"$label":"ACTS_IN","name":"Abdul Saulman","type":"Role","_key":"115719","_from":"68133","_to":"68098"} +{"$label":"ACTS_IN","name":"Air Force Staff Orline","type":"Role","_key":"115718","_from":"68132","_to":"68098"} +{"$label":"ACTS_IN","name":"Director of Giant Plant Observation Akiyama","type":"Role","_key":"115717","_from":"68131","_to":"68098"} +{"$label":"ACTS_IN","name":"Chief of Super X2 Repair Crew","type":"Role","_key":"115716","_from":"68130","_to":"68098"} +{"$label":"ACTS_IN","name":"Super X2 Operator","type":"Role","_key":"115715","_from":"68129","_to":"68098"} +{"$label":"ACTS_IN","name":"Newscaster","type":"Role","_key":"115714","_from":"68128","_to":"68098"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"115713","_from":"68127","_to":"68098"} +{"$label":"ACTS_IN","name":"Self Defense Forces Officer","type":"Role","_key":"115712","_from":"68126","_to":"68098"} +{"$label":"ACTS_IN","name":"Self Defense Forces Officer","type":"Role","_key":"115711","_from":"68125","_to":"68098"} +{"$label":"ACTS_IN","name":"John Lee","type":"Role","_key":"115710","_from":"68124","_to":"68098"} +{"$label":"ACTS_IN","name":"SSS9","type":"Role","_key":"115709","_from":"68123","_to":"68098"} +{"$label":"ACTS_IN","name":"Saradia Plant Director","type":"Role","_key":"115708","_from":"68122","_to":"68098"} +{"$label":"ACTS_IN","name":"Saradia Scientist","type":"Role","_key":"115707","_from":"68121","_to":"68098"} +{"$label":"ACTS_IN","name":"Extra","type":"Role","_key":"115706","_from":"68120","_to":"68098"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"115705","_from":"68119","_to":"68098"} +{"$label":"ACTS_IN","name":"BioMajor Spy Michael Low","type":"Role","_key":"115704","_from":"68118","_to":"68098"} +{"$label":"ACTS_IN","name":"BioMajor Spy John Lee","type":"Role","_key":"115703","_from":"68117","_to":"68098"} +{"$label":"ACTS_IN","name":"D\u00eamon Kogure Kakka","type":"Role","_key":"115702","_from":"68116","_to":"68098"} +{"$label":"ACTS_IN","name":"Gojira","type":"Role","_key":"115701","_from":"68115","_to":"68098"} +{"$label":"ACTS_IN","name":"Gojira","type":"Role","_key":"115700","_from":"68114","_to":"68098"} +{"$label":"ACTS_IN","name":"Biorante","type":"Role","_key":"115699","_from":"68113","_to":"68098"} +{"$label":"ACTS_IN","name":"Gojira","type":"Role","_key":"115698","_from":"68112","_to":"68098"} +{"$label":"ACTS_IN","name":"Officer","type":"Role","_key":"115697","_from":"68111","_to":"68098"} +{"$label":"ACTS_IN","name":"Helicopter Onlooker","type":"Role","_key":"115696","_from":"68110","_to":"68098"} +{"$label":"ACTS_IN","name":"Soldier with Glasses","type":"Role","_key":"115695","_from":"68109","_to":"68098"} +{"$label":"ACTS_IN","name":"Super-X2 Controller","type":"Role","_key":"115694","_from":"68108","_to":"68098"} +{"$label":"ACTS_IN","name":"TV reporter","type":"Role","_key":"115692","_from":"68107","_to":"68098"} +{"$label":"ACTS_IN","name":"Prime Minister's Wife","type":"Role","_key":"115690","_from":"68106","_to":"68098"} +{"$label":"ACTS_IN","name":"Prime Minister","type":"Role","_key":"115689","_from":"68105","_to":"68098"} +{"$label":"ACTS_IN","name":"Self Defense Forces Officer","type":"Role","_key":"115688","_from":"68104","_to":"68098"} +{"$label":"ACTS_IN","name":"Azuka's Father","type":"Role","_key":"115687","_from":"68103","_to":"68098"} +{"$label":"ACTS_IN","name":"Director Seiichi Yamamoto","type":"Role","_key":"115686","_from":"68102","_to":"68098"} +{"$label":"ACTS_IN","name":"Lieutenant Goro Gondo","type":"Role","_key":"115684","_from":"68101","_to":"68098"} +{"$label":"ACTS_IN","name":"Dr. Shiragami","type":"Role","_key":"115683","_from":"68100","_to":"68098"} +{"$label":"ACTS_IN","name":"Kazuhito Kirishima","type":"Role","_key":"115680","_from":"68099","_to":"68098"} +{"$label":"ACTS_IN","name":"Toshi Yamashita","type":"Role","_key":"117237","_from":"68108","_to":"68961"} +{"$label":"ACTS_IN","name":"Nasira Khaldi","type":"Role","_key":"115724","_from":"68139","_to":"68137"} +{"$label":"ACTS_IN","name":"Rochel Meshenberg","type":"Role","_key":"115723","_from":"68138","_to":"68137"} +{"$label":"ACTS_IN","name":"Matt Larkin","type":"Role","_key":"115732","_from":"68143","_to":"68140"} +{"$label":"ACTS_IN","name":"Beck","type":"Role","_key":"115731","_from":"68142","_to":"68140"} +{"$label":"DIRECTED","_key":"115725","_from":"68141","_to":"68140"} +{"$label":"ACTS_IN","name":"Aunt Ruth","type":"Role","_key":"115735","_from":"68145","_to":"68144"} +{"$label":"DIRECTED","_key":"115740","_from":"68150","_to":"68148"} +{"$label":"ACTS_IN","name":"Camille S\u00e9tine","type":"Role","_key":"115739","_from":"68150","_to":"68148"} +{"$label":"ACTS_IN","name":"Pierre","type":"Role","_key":"115738","_from":"68149","_to":"68148"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115747","_from":"68153","_to":"68151"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115746","_from":"68152","_to":"68151"} +{"$label":"DIRECTED","_key":"115768","_from":"68161","_to":"68158"} +{"$label":"ACTS_IN","name":"Jin-jong","type":"Role","_key":"115765","_from":"68160","_to":"68158"} +{"$label":"ACTS_IN","name":"Mae-hyang","type":"Role","_key":"115764","_from":"68159","_to":"68158"} +{"$label":"DIRECTED","_key":"115770","_from":"68164","_to":"68162"} +{"$label":"DIRECTED","_key":"115769","_from":"68163","_to":"68162"} +{"$label":"ACTS_IN","name":"Chong","type":"Role","_key":"115777","_from":"68167","_to":"68165"} +{"$label":"ACTS_IN","name":"Peggy Lung","type":"Role","_key":"115776","_from":"68166","_to":"68165"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115797","_from":"68173","_to":"68171"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115796","_from":"68172","_to":"68171"} +{"$label":"ACTS_IN","name":"Tracy","type":"Role","_key":"115811","_from":"68178","_to":"68174"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"115809","_from":"68177","_to":"68174"} +{"$label":"ACTS_IN","name":"Melanie","type":"Role","_key":"115808","_from":"68176","_to":"68174"} +{"$label":"ACTS_IN","name":"Wes","type":"Role","_key":"115806","_from":"68175","_to":"68174"} +{"$label":"DIRECTED","_key":"115832","_from":"68191","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Vocal","type":"Role","_key":"115831","_from":"68190","_to":"68181"} +{"$label":"ACTS_IN","name":"Herself \/ Vocal","type":"Role","_key":"115830","_from":"68189","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Vocal","type":"Role","_key":"115829","_from":"68188","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Bass Guitars","type":"Role","_key":"115828","_from":"68187","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Drums","type":"Role","_key":"115827","_from":"68186","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself - Electric & Acoustic Guitars","type":"Role","_key":"115826","_from":"68185","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Keyboards","type":"Role","_key":"115825","_from":"68184","_to":"68181"} +{"$label":"ACTS_IN","name":"Himself \/ Electric Guitars","type":"Role","_key":"115824","_from":"68183","_to":"68181"} +{"$label":"ACTS_IN","name":"Herself \/ Vocal","type":"Role","_key":"115823","_from":"68182","_to":"68181"} +{"$label":"DIRECTED","_key":"115833","_from":"68193","_to":"68192"} +{"$label":"ACTS_IN","name":"Dan","type":"Role","_key":"115842","_from":"68200","_to":"68195"} +{"$label":"ACTS_IN","name":"The Pastor","type":"Role","_key":"115841","_from":"68199","_to":"68195"} +{"$label":"ACTS_IN","name":"Fortune Tellers","type":"Role","_key":"115840","_from":"68198","_to":"68195"} +{"$label":"ACTS_IN","name":"An","type":"Role","_key":"115839","_from":"68197","_to":"68195"} +{"$label":"ACTS_IN","name":"Du","type":"Role","_key":"115838","_from":"68196","_to":"68195"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"115848","_from":"68203","_to":"68201"} +{"$label":"ACTS_IN","name":"Lover","type":"Role","_key":"115847","_from":"68202","_to":"68201"} +{"$label":"DIRECTED","_key":"115855","_from":"68207","_to":"68206"} +{"$label":"ACTS_IN","name":"Mayor Eastman","type":"Role","_key":"115864","_from":"68219","_to":"68210"} +{"$label":"ACTS_IN","name":"Veronica","type":"Role","_key":"115863","_from":"68218","_to":"68210"} +{"$label":"ACTS_IN","name":"Beverly Everson","type":"Role","_key":"115862","_from":"68217","_to":"68210"} +{"$label":"ACTS_IN","name":"Jack Everson","type":"Role","_key":"115861","_from":"68216","_to":"68210"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"115860","_from":"68215","_to":"68210"} +{"$label":"ACTS_IN","name":"Daniel","type":"Role","_key":"115859","_from":"68214","_to":"68210"} +{"$label":"ACTS_IN","name":"Beth (as Collene Taylor)","type":"Role","_key":"115858","_from":"68213","_to":"68210"} +{"$label":"ACTS_IN","name":"Darius Foxx","type":"Role","_key":"115857","_from":"68212","_to":"68210"} +{"$label":"DIRECTED","_key":"115856","_from":"68211","_to":"68210"} +{"$label":"DIRECTED","_key":"115867","_from":"68223","_to":"68222"} +{"$label":"ACTS_IN","name":"Visitor","type":"Role","_key":"118442","_from":"68223","_to":"69631"} +{"$label":"DIRECTED","_key":"115882","_from":"68228","_to":"68225"} +{"$label":"ACTS_IN","name":"Mrs. Barrington (as Megan Fay)","type":"Role","_key":"115881","_from":"68227","_to":"68225"} +{"$label":"ACTS_IN","name":"Trixie (voice)","type":"Role","_key":"115870","_from":"68226","_to":"68225"} +{"$label":"DIRECTED","_key":"115899","_from":"68233","_to":"68231"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"115898","_from":"68232","_to":"68231"} +{"$label":"ACTS_IN","name":"Moses Hobbs","type":"Role","_key":"115914","_from":"68241","_to":"68234"} +{"$label":"ACTS_IN","name":"Enoch Sanborn","type":"Role","_key":"115913","_from":"68240","_to":"68234"} +{"$label":"ACTS_IN","name":"Snake Leavitt","type":"Role","_key":"115911","_from":"68239","_to":"68234"} +{"$label":"ACTS_IN","name":"William Howard","type":"Role","_key":"115909","_from":"68238","_to":"68234"} +{"$label":"ACTS_IN","name":"Dr. Peter Bruce","type":"Role","_key":"115908","_from":"68237","_to":"68234"} +{"$label":"ACTS_IN","name":"Israel Hands","type":"Role","_key":"115906","_from":"68236","_to":"68234"} +{"$label":"ACTS_IN","name":"Lt. Robert Maynard","type":"Role","_key":"115901","_from":"68235","_to":"68234"} +{"$label":"DIRECTED","_key":"115921","_from":"68244","_to":"68242"} +{"$label":"ACTS_IN","name":"A\u00efssa","type":"Role","_key":"115920","_from":"68243","_to":"68242"} +{"$label":"DIRECTED","_key":"115924","_from":"68251","_to":"68248"} +{"$label":"ACTS_IN","name":"Ji-hoon","type":"Role","_key":"115923","_from":"68250","_to":"68248"} +{"$label":"ACTS_IN","name":"Su-wan","type":"Role","_key":"115922","_from":"68249","_to":"68248"} +{"$label":"ACTS_IN","name":"Lee Da-jin","type":"Role","_key":"116289","_from":"68249","_to":"68461"} +{"$label":"ACTS_IN","name":"Jin Dal-rae","type":"Role","_key":"115963","_from":"68249","_to":"68293"} +{"$label":"ACTS_IN","name":"Kim Kyung-min","type":"Role","_key":"115932","_from":"68249","_to":"68260"} +{"$label":"ACTS_IN","name":"Soo Ji","type":"Role","_key":"115928","_from":"68249","_to":"68256"} +{"$label":"ACTS_IN","name":"Ju Yeong-ju","type":"Role","_key":"115925","_from":"68249","_to":"68252"} +{"$label":"DIRECTED","_key":"115927","_from":"68254","_to":"68252"} +{"$label":"ACTS_IN","name":"Choi Hee-cheol","type":"Role","_key":"115926","_from":"68253","_to":"68252"} +{"$label":"DIRECTED","_key":"115930","_from":"68258","_to":"68256"} +{"$label":"ACTS_IN","name":"Jae Joon","type":"Role","_key":"115929","_from":"68257","_to":"68256"} +{"$label":"ACTS_IN","name":"Han Woo-sung","type":"Role","_key":"115934","_from":"68263","_to":"68260"} +{"$label":"ACTS_IN","name":"Kang Joong-hyun","type":"Role","_key":"115933","_from":"68262","_to":"68260"} +{"$label":"DIRECTED","_key":"115931","_from":"68261","_to":"68260"} +{"$label":"ACTS_IN","name":"Kang Han-na","type":"Role","_key":"115936","_from":"68266","_to":"68264"} +{"$label":"DIRECTED","_key":"115935","_from":"68265","_to":"68264"} +{"$label":"DIRECTED","_key":"115947","_from":"68277","_to":"68268"} +{"$label":"ACTS_IN","name":"Toussaint Brodeur","type":"Role","_key":"115946","_from":"68277","_to":"68268"} +{"$label":"ACTS_IN","name":"Jeanette Brodeur","type":"Role","_key":"115945","_from":"68276","_to":"68268"} +{"$label":"ACTS_IN","name":"Le Narrateur","type":"Role","_key":"115944","_from":"68275","_to":"68268"} +{"$label":"ACTS_IN","name":"Babine","type":"Role","_key":"115943","_from":"68274","_to":"68268"} +{"$label":"ACTS_IN","name":"Cur\u00e9 Neuf","type":"Role","_key":"115942","_from":"68273","_to":"68268"} +{"$label":"ACTS_IN","name":"Lurette Riopel","type":"Role","_key":"115941","_from":"68272","_to":"68268"} +{"$label":"ACTS_IN","name":"M\u00e9o Bellemare","type":"Role","_key":"115940","_from":"68271","_to":"68268"} +{"$label":"ACTS_IN","name":"Madame G\u00e9linas","type":"Role","_key":"115939","_from":"68270","_to":"68268"} +{"$label":"ACTS_IN","name":"Ti-Toine","type":"Role","_key":"115938","_from":"68269","_to":"68268"} +{"$label":"ACTS_IN","name":"Bowling champion","type":"Role","_key":"115961","_from":"68291","_to":"68278"} +{"$label":"ACTS_IN","name":"Friend of Madeleine","type":"Role","_key":"115960","_from":"68290","_to":"68278"} +{"$label":"ACTS_IN","name":"Woman from the red house","type":"Role","_key":"115959","_from":"68289","_to":"68278"} +{"$label":"ACTS_IN","name":"Madame Chavagnac","type":"Role","_key":"115958","_from":"68288","_to":"68278"} +{"$label":"ACTS_IN","name":"Monsieur Pouchonnaud","type":"Role","_key":"115957","_from":"68287","_to":"68278"} +{"$label":"ACTS_IN","name":"Bishop Charlebois","type":"Role","_key":"115956","_from":"68286","_to":"68278"} +{"$label":"ACTS_IN","name":"Mrs. Brisebois","type":"Role","_key":"115955","_from":"68285","_to":"68278"} +{"$label":"ACTS_IN","name":"Mr. Marinier","type":"Role","_key":"115954","_from":"68284","_to":"68278"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me Dor\u00e9","type":"Role","_key":"115953","_from":"68283","_to":"68278"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"115952","_from":"68282","_to":"68278"} +{"$label":"ACTS_IN","name":"Philippe Dor\u00e9","type":"Role","_key":"115951","_from":"68281","_to":"68278"} +{"$label":"ACTS_IN","name":"Madeleine Dor\u00e9","type":"Role","_key":"115950","_from":"68280","_to":"68278"} +{"$label":"ACTS_IN","name":"L\u00e9on Dor\u00e9","type":"Role","_key":"115949","_from":"68279","_to":"68278"} +{"$label":"ACTS_IN","name":"Alain","type":"Role","_key":"116412","_from":"68281","_to":"68526"} +{"$label":"ACTS_IN","name":"Lee Ji-hwan","type":"Role","_key":"115965","_from":"68296","_to":"68293"} +{"$label":"ACTS_IN","name":"Ji-min","type":"Role","_key":"115964","_from":"68295","_to":"68293"} +{"$label":"DIRECTED","_key":"115962","_from":"68294","_to":"68293"} +{"$label":"DIRECTED","_key":"115968","_from":"68299","_to":"68297"} +{"$label":"ACTS_IN","name":"Hwang Jeong-nam","type":"Role","_key":"115966","_from":"68298","_to":"68297"} +{"$label":"ACTS_IN","name":"Prof. Yu's wife","type":"Role","_key":"115975","_from":"68303","_to":"68300"} +{"$label":"ACTS_IN","name":"Liu Cheng","type":"Role","_key":"115972","_from":"68302","_to":"68300"} +{"$label":"ACTS_IN","name":"Xiao Chun","type":"Role","_key":"115970","_from":"68301","_to":"68300"} +{"$label":"ACTS_IN","name":"Peggy Gordon","type":"Role","_key":"115981","_from":"68306","_to":"68304"} +{"$label":"ACTS_IN","name":"Matt","type":"Role","_key":"115977","_from":"68305","_to":"68304"} +{"$label":"ACTS_IN","name":"Steve McKenna","type":"Role","_key":"120034","_from":"68305","_to":"70493"} +{"$label":"ACTS_IN","name":"McCalister","type":"Role","_key":"119710","_from":"68305","_to":"70307"} +{"$label":"DIRECTED","_key":"115990","_from":"68312","_to":"68307"} +{"$label":"ACTS_IN","name":"Dave's Mum","type":"Role","_key":"115988","_from":"68311","_to":"68307"} +{"$label":"ACTS_IN","name":"Dave's Dad","type":"Role","_key":"115987","_from":"68310","_to":"68307"} +{"$label":"ACTS_IN","name":"Stationmaster","type":"Role","_key":"115986","_from":"68309","_to":"68307"} +{"$label":"ACTS_IN","name":"Lighthorse Sargeant","type":"Role","_key":"115985","_from":"68308","_to":"68307"} +{"$label":"ACTS_IN","name":"Belinda Capuletti","type":"Role","_key":"115999","_from":"68314","_to":"68313"} +{"$label":"ACTS_IN","name":"Chris (as Harrison Pruett)","type":"Role","_key":"116007","_from":"68317","_to":"68315"} +{"$label":"ACTS_IN","name":"Vampire","type":"Role","_key":"116006","_from":"68316","_to":"68315"} +{"$label":"DIRECTED","_key":"116030","_from":"68329","_to":"68318"} +{"$label":"ACTS_IN","name":"Andrew - Blondes Nightclub in Southend (uncredited)","type":"Role","_key":"116029","_from":"68328","_to":"68318"} +{"$label":"ACTS_IN","name":"Boy #3 (uncredited)","type":"Role","_key":"116028","_from":"68327","_to":"68318"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"116027","_from":"68326","_to":"68318"} +{"$label":"ACTS_IN","name":"Jemma","type":"Role","_key":"116026","_from":"68325","_to":"68318"} +{"$label":"ACTS_IN","name":"Beverley","type":"Role","_key":"116025","_from":"68324","_to":"68318"} +{"$label":"ACTS_IN","name":"Wayne Lovell","type":"Role","_key":"116021","_from":"68323","_to":"68318"} +{"$label":"ACTS_IN","name":"Peter Chase","type":"Role","_key":"116020","_from":"68322","_to":"68318"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"116019","_from":"68321","_to":"68318"} +{"$label":"ACTS_IN","name":"Chippy","type":"Role","_key":"116018","_from":"68320","_to":"68318"} +{"$label":"ACTS_IN","name":"Lisa Locke","type":"Role","_key":"116015","_from":"68319","_to":"68318"} +{"$label":"ACTS_IN","name":"Mrs. Bennett","type":"Role","_key":"120096","_from":"68319","_to":"70530"} +{"$label":"ACTS_IN","name":"Diane Freed","type":"Role","_key":"117805","_from":"68319","_to":"69246"} +{"$label":"DIRECTED","_key":"116036","_from":"68333","_to":"68332"} +{"$label":"DIRECTED","_key":"116040","_from":"68339","_to":"68338"} +{"$label":"DIRECTED","_key":"116054","_from":"68342","_to":"68340"} +{"$label":"ACTS_IN","name":"Francis","type":"Role","_key":"116049","_from":"68341","_to":"68340"} +{"$label":"DIRECTED","_key":"116055","_from":"68344","_to":"68343"} +{"$label":"ACTS_IN","name":"Virgil","type":"Role","_key":"116061","_from":"68348","_to":"68347"} +{"$label":"ACTS_IN","name":"Cowboy #1","type":"Role","_key":"116077","_from":"68356","_to":"68353"} +{"$label":"ACTS_IN","name":"Darby","type":"Role","_key":"116075","_from":"68355","_to":"68353"} +{"$label":"ACTS_IN","name":"Bunny Boy","type":"Role","_key":"116074","_from":"68354","_to":"68353"} +{"$label":"DIRECTED","_key":"116097","_from":"68364","_to":"68357"} +{"$label":"DIRECTED","_key":"116096","_from":"68363","_to":"68357"} +{"$label":"DIRECTED","_key":"116095","_from":"68362","_to":"68357"} +{"$label":"ACTS_IN","name":"Uncle Sam Teacher - Tech School","type":"Role","_key":"116093","_from":"68361","_to":"68357"} +{"$label":"ACTS_IN","name":"Rachel - Tech School (as Alma Yvonne)","type":"Role","_key":"116092","_from":"68360","_to":"68357"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"116089","_from":"68359","_to":"68357"} +{"$label":"ACTS_IN","name":"Drew Evanson","type":"Role","_key":"116085","_from":"68358","_to":"68357"} +{"$label":"ACTS_IN","name":"Alex - Maitre d' (uncredited)","type":"Role","_key":"116133","_from":"68382","_to":"68369"} +{"$label":"ACTS_IN","name":"Prince of Arabia (uncredited)","type":"Role","_key":"116132","_from":"68381","_to":"68369"} +{"$label":"ACTS_IN","name":"Waitress (uncredited)","type":"Role","_key":"116131","_from":"68380","_to":"68369"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116128","_from":"68379","_to":"68369"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"116125","_from":"68378","_to":"68369"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"116124","_from":"68377","_to":"68369"} +{"$label":"ACTS_IN","name":"Audition Dancer","type":"Role","_key":"116122","_from":"68376","_to":"68369"} +{"$label":"ACTS_IN","name":"Airline Passenger","type":"Role","_key":"116121","_from":"68375","_to":"68369"} +{"$label":"ACTS_IN","name":"Flight Attendant","type":"Role","_key":"116120","_from":"68374","_to":"68369"} +{"$label":"ACTS_IN","name":"Z.Z.","type":"Role","_key":"116116","_from":"68373","_to":"68369"} +{"$label":"ACTS_IN","name":"Terrance","type":"Role","_key":"116115","_from":"68372","_to":"68369"} +{"$label":"ACTS_IN","name":"Isaac","type":"Role","_key":"116111","_from":"68371","_to":"68369"} +{"$label":"ACTS_IN","name":"Mickey","type":"Role","_key":"116108","_from":"68370","_to":"68369"} +{"$label":"DIRECTED","_key":"116143","_from":"68386","_to":"68384"} +{"$label":"ACTS_IN","name":"Lana","type":"Role","_key":"116142","_from":"68385","_to":"68384"} +{"$label":"DIRECTED","_key":"116146","_from":"68388","_to":"68387"} +{"$label":"DIRECTED","_key":"116147","_from":"68390","_to":"68389"} +{"$label":"DIRECTED","_key":"116153","_from":"68392","_to":"68391"} +{"$label":"DIRECTED","_key":"116156","_from":"68397","_to":"68394"} +{"$label":"ACTS_IN","name":"Kim Hye-kyeong","type":"Role","_key":"116155","_from":"68396","_to":"68394"} +{"$label":"ACTS_IN","name":"Han Mi-sook","type":"Role","_key":"116154","_from":"68395","_to":"68394"} +{"$label":"ACTS_IN","name":"Gregg Martinez","type":"Role","_key":"116161","_from":"68400","_to":"68398"} +{"$label":"DIRECTED","_key":"116157","_from":"68399","_to":"68398"} +{"$label":"DIRECTED","_key":"116169","_from":"68403","_to":"68402"} +{"$label":"DIRECTED","_key":"116185","_from":"68406","_to":"68405"} +{"$label":"DIRECTED","_key":"116188","_from":"68409","_to":"68407"} +{"$label":"ACTS_IN","name":"Kim","type":"Role","_key":"116187","_from":"68408","_to":"68407"} +{"$label":"DIRECTED","_key":"116191","_from":"68413","_to":"68410"} +{"$label":"ACTS_IN","name":"Chad","type":"Role","_key":"116190","_from":"68412","_to":"68410"} +{"$label":"ACTS_IN","name":"Lin","type":"Role","_key":"116189","_from":"68411","_to":"68410"} +{"$label":"DIRECTED","_key":"116196","_from":"68419","_to":"68414"} +{"$label":"ACTS_IN","name":"CARTER SIMMS","type":"Role","_key":"116195","_from":"68418","_to":"68414"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116194","_from":"68417","_to":"68414"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116193","_from":"68416","_to":"68414"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116192","_from":"68415","_to":"68414"} +{"$label":"ACTS_IN","name":"Natasha","type":"Role","_key":"116205","_from":"68424","_to":"68420"} +{"$label":"ACTS_IN","name":"Bobby Johnson","type":"Role","_key":"116204","_from":"68423","_to":"68420"} +{"$label":"ACTS_IN","name":"Vikki Vickers","type":"Role","_key":"116203","_from":"68422","_to":"68420"} +{"$label":"ACTS_IN","name":"Gibby","type":"Role","_key":"116202","_from":"68421","_to":"68420"} +{"$label":"ACTS_IN","name":"Stephanie Baxter","type":"Role","_key":"116211","_from":"68428","_to":"68425"} +{"$label":"ACTS_IN","name":"Sam Compton","type":"Role","_key":"116210","_from":"68427","_to":"68425"} +{"$label":"DIRECTED","_key":"116209","_from":"68426","_to":"68425"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116227","_from":"68435","_to":"68429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116226","_from":"68434","_to":"68429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116225","_from":"68433","_to":"68429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116223","_from":"68432","_to":"68429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116222","_from":"68431","_to":"68429"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116220","_from":"68430","_to":"68429"} +{"$label":"ACTS_IN","name":"Katie O'Gill","type":"Role","_key":"117956","_from":"68430","_to":"69332"} +{"$label":"ACTS_IN","name":"Don Roberto de la Madrid","type":"Role","_key":"116246","_from":"68439","_to":"68438"} +{"$label":"ACTS_IN","name":"Joaqu\u00edn, Don Diego's servant","type":"Role","_key":"116256","_from":"68443","_to":"68442"} +{"$label":"ACTS_IN","name":"Mrs. Howard","type":"Role","_key":"116261","_from":"68446","_to":"68444"} +{"$label":"DIRECTED","_key":"116258","_from":"68445","_to":"68444"} +{"$label":"ACTS_IN","name":"Various Roles","type":"Role","_key":"116272","_from":"68453","_to":"68452"} +{"$label":"ACTS_IN","name":"Wilson","type":"Role","_key":"116283","_from":"68459","_to":"68456"} +{"$label":"ACTS_IN","name":"Samantha","type":"Role","_key":"116279","_from":"68458","_to":"68456"} +{"$label":"ACTS_IN","name":"Hector","type":"Role","_key":"116278","_from":"68457","_to":"68456"} +{"$label":"DIRECTED","_key":"116291","_from":"68463","_to":"68461"} +{"$label":"ACTS_IN","name":"Kim Jae-yeong","type":"Role","_key":"116290","_from":"68462","_to":"68461"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116293","_from":"68465","_to":"68464"} +{"$label":"DIRECTED","_key":"116301","_from":"68468","_to":"68466"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"116299","_from":"68467","_to":"68466"} +{"$label":"ACTS_IN","name":"Agathe","type":"Role","_key":"118280","_from":"68467","_to":"69527"} +{"$label":"ACTS_IN","name":"Diana","type":"Role","_key":"116307","_from":"68471","_to":"68469"} +{"$label":"ACTS_IN","name":"Will","type":"Role","_key":"116306","_from":"68470","_to":"68469"} +{"$label":"ACTS_IN","name":"Detective Norden","type":"Role","_key":"116318","_from":"68475","_to":"68473"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"116314","_from":"68474","_to":"68473"} +{"$label":"ACTS_IN","name":"Thug","type":"Role","_key":"116339","_from":"68480","_to":"68477"} +{"$label":"ACTS_IN","name":"Terrence","type":"Role","_key":"116337","_from":"68479","_to":"68477"} +{"$label":"ACTS_IN","name":"Navratil","type":"Role","_key":"116336","_from":"68478","_to":"68477"} +{"$label":"DIRECTED","_key":"116341","_from":"68484","_to":"68482"} +{"$label":"DIRECTED","_key":"116340","_from":"68483","_to":"68482"} +{"$label":"DIRECTED","_key":"116592","_from":"68483","_to":"68634"} +{"$label":"DIRECTED","_key":"116591","_from":"68484","_to":"68634"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116345","_from":"68487","_to":"68485"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116344","_from":"68486","_to":"68485"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"116352","_from":"68493","_to":"68488"} +{"$label":"ACTS_IN","name":"Porky","type":"Role","_key":"116351","_from":"68492","_to":"68488"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116350","_from":"68491","_to":"68488"} +{"$label":"ACTS_IN","name":"Kiko","type":"Role","_key":"116349","_from":"68490","_to":"68488"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116348","_from":"68489","_to":"68488"} +{"$label":"ACTS_IN","name":"Jeab's father","type":"Role","_key":"116364","_from":"68506","_to":"68494"} +{"$label":"ACTS_IN","name":"Prik","type":"Role","_key":"116363","_from":"68505","_to":"68494"} +{"$label":"ACTS_IN","name":"Manoj","type":"Role","_key":"116362","_from":"68504","_to":"68494"} +{"$label":"ACTS_IN","name":"Boy","type":"Role","_key":"116361","_from":"68503","_to":"68494"} +{"$label":"ACTS_IN","name":"Dtee","type":"Role","_key":"116360","_from":"68502","_to":"68494"} +{"$label":"ACTS_IN","name":"Jack","type":"Role","_key":"116359","_from":"68501","_to":"68494"} +{"$label":"ACTS_IN","name":"Noi-Naa's mother","type":"Role","_key":"116358","_from":"68500","_to":"68494"} +{"$label":"ACTS_IN","name":"Noi-Naa's father","type":"Role","_key":"116357","_from":"68499","_to":"68494"} +{"$label":"ACTS_IN","name":"Jeab's mother","type":"Role","_key":"116356","_from":"68498","_to":"68494"} +{"$label":"ACTS_IN","name":"Jeab (adult)","type":"Role","_key":"116355","_from":"68497","_to":"68494"} +{"$label":"ACTS_IN","name":"Noi-Naa","type":"Role","_key":"116354","_from":"68496","_to":"68494"} +{"$label":"ACTS_IN","name":"Jeab","type":"Role","_key":"116353","_from":"68495","_to":"68494"} +{"$label":"ACTS_IN","name":"Bashkim","type":"Role","_key":"116369","_from":"68508","_to":"68507"} +{"$label":"ACTS_IN","name":"Asuka Langley Soryu","type":"Role","_key":"116383","_from":"68512","_to":"68510"} +{"$label":"DIRECTED","_key":"116378","_from":"68511","_to":"68510"} +{"$label":"DIRECTED","_key":"116386","_from":"68516","_to":"68513"} +{"$label":"ACTS_IN","name":"Kit Silencer","type":"Role","_key":"116385","_from":"68515","_to":"68513"} +{"$label":"ACTS_IN","name":"Pae Buffgun","type":"Role","_key":"116384","_from":"68514","_to":"68513"} +{"$label":"ACTS_IN","name":"Habib","type":"Role","_key":"116398","_from":"68523","_to":"68520"} +{"$label":"ACTS_IN","name":"Leila","type":"Role","_key":"116397","_from":"68522","_to":"68520"} +{"$label":"ACTS_IN","name":"Said","type":"Role","_key":"116396","_from":"68521","_to":"68520"} +{"$label":"ACTS_IN","name":"Jonathan","type":"Role","_key":"116401","_from":"68525","_to":"68524"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"116413","_from":"68528","_to":"68526"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"116411","_from":"68527","_to":"68526"} +{"$label":"ACTS_IN","name":"David Durago","type":"Role","_key":"116416","_from":"68530","_to":"68529"} +{"$label":"ACTS_IN","name":"Ken Castle","type":"Role","_key":"116425","_from":"68532","_to":"68531"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"116437","_from":"68534","_to":"68533"} +{"$label":"ACTS_IN","name":"Caterina Iacovoni","type":"Role","_key":"116440","_from":"68537","_to":"68535"} +{"$label":"DIRECTED","_key":"116439","_from":"68536","_to":"68535"} +{"$label":"ACTS_IN","name":"la femme","type":"Role","_key":"116444","_from":"68540","_to":"68538"} +{"$label":"ACTS_IN","name":"le mari","type":"Role","_key":"116443","_from":"68539","_to":"68538"} +{"$label":"DIRECTED","_key":"116446","_from":"68544","_to":"68543"} +{"$label":"DIRECTED","_key":"116460","_from":"68549","_to":"68545"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"116458","_from":"68548","_to":"68545"} +{"$label":"ACTS_IN","name":"Khuram","type":"Role","_key":"116457","_from":"68547","_to":"68545"} +{"$label":"ACTS_IN","name":"Kjetil","type":"Role","_key":"116456","_from":"68546","_to":"68545"} +{"$label":"DIRECTED","_key":"116476","_from":"68554","_to":"68550"} +{"$label":"ACTS_IN","name":"Mr. Pierpont","type":"Role","_key":"116473","_from":"68553","_to":"68550"} +{"$label":"ACTS_IN","name":"Royette Tyler","type":"Role","_key":"116469","_from":"68552","_to":"68550"} +{"$label":"ACTS_IN","name":"Jack Hartounian","type":"Role","_key":"116461","_from":"68551","_to":"68550"} +{"$label":"DIRECTED","_key":"116484","_from":"68562","_to":"68555"} +{"$label":"ACTS_IN","name":"Yakuza member with mark on his face","type":"Role","_key":"116483","_from":"68561","_to":"68555"} +{"$label":"ACTS_IN","name":"Inn keeper","type":"Role","_key":"116482","_from":"68560","_to":"68555"} +{"$label":"ACTS_IN","name":"Inn keeper's wife","type":"Role","_key":"116481","_from":"68559","_to":"68555"} +{"$label":"ACTS_IN","name":"Yasuhiko","type":"Role","_key":"116480","_from":"68558","_to":"68555"} +{"$label":"ACTS_IN","name":"Banno","type":"Role","_key":"116479","_from":"68557","_to":"68555"} +{"$label":"ACTS_IN","name":"Yayoi","type":"Role","_key":"116478","_from":"68556","_to":"68555"} +{"$label":"DIRECTED","_key":"116490","_from":"68562","_to":"68563"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116489","_from":"68566","_to":"68563"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"116488","_from":"68565","_to":"68563"} +{"$label":"ACTS_IN","name":"Nobu","type":"Role","_key":"116486","_from":"68564","_to":"68563"} +{"$label":"ACTS_IN","name":"Tribe Leader","type":"Role","_key":"116501","_from":"68572","_to":"68568"} +{"$label":"ACTS_IN","name":"Little girl","type":"Role","_key":"116500","_from":"68571","_to":"68568"} +{"$label":"ACTS_IN","name":"Safari overseer","type":"Role","_key":"116499","_from":"68570","_to":"68568"} +{"$label":"ACTS_IN","name":"Man #2","type":"Role","_key":"116497","_from":"68569","_to":"68568"} +{"$label":"ACTS_IN","name":"Gotz","type":"Role","_key":"117545","_from":"68570","_to":"69109"} +{"$label":"ACTS_IN","name":"Tania","type":"Role","_key":"116506","_from":"68577","_to":"68573"} +{"$label":"ACTS_IN","name":"Pastor","type":"Role","_key":"116505","_from":"68576","_to":"68573"} +{"$label":"ACTS_IN","name":"Andrew Lee","type":"Role","_key":"116504","_from":"68575","_to":"68573"} +{"$label":"DIRECTED","_key":"116502","_from":"68574","_to":"68573"} +{"$label":"ACTS_IN","name":"Arthur","type":"Role","_key":"116514","_from":"68579","_to":"68578"} +{"$label":"ACTS_IN","name":"Mary Weslay","type":"Role","_key":"116523","_from":"68583","_to":"68581"} +{"$label":"ACTS_IN","name":"Max Wesley","type":"Role","_key":"116521","_from":"68582","_to":"68581"} +{"$label":"DIRECTED","_key":"116534","_from":"68595","_to":"68586"} +{"$label":"ACTS_IN","name":"Ji-ho","type":"Role","_key":"116533","_from":"68594","_to":"68586"} +{"$label":"ACTS_IN","name":"junk seller","type":"Role","_key":"116532","_from":"68593","_to":"68586"} +{"$label":"ACTS_IN","name":"\"Small Star\" president","type":"Role","_key":"116531","_from":"68592","_to":"68586"} +{"$label":"ACTS_IN","name":"Seung-ryong's mother","type":"Role","_key":"116530","_from":"68591","_to":"68586"} +{"$label":"ACTS_IN","name":"Seung-ryong","type":"Role","_key":"116529","_from":"68590","_to":"68586"} +{"$label":"ACTS_IN","name":"Hee-yeong","type":"Role","_key":"116528","_from":"68589","_to":"68586"} +{"$label":"ACTS_IN","name":"Ji-in","type":"Role","_key":"116527","_from":"68588","_to":"68586"} +{"$label":"ACTS_IN","name":"Sang-soo","type":"Role","_key":"116526","_from":"68587","_to":"68586"} +{"$label":"ACTS_IN","name":"Heo Min-kyeong","type":"Role","_key":"116538","_from":"68598","_to":"68597"} +{"$label":"DIRECTED","_key":"116544","_from":"68601","_to":"68600"} +{"$label":"DIRECTED","_key":"116548","_from":"68604","_to":"68602"} +{"$label":"ACTS_IN","name":"Joe","type":"Role","_key":"116546","_from":"68603","_to":"68602"} +{"$label":"DIRECTED","_key":"116550","_from":"68607","_to":"68605"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116549","_from":"68606","_to":"68605"} +{"$label":"ACTS_IN","name":"Jack Woodman","type":"Role","_key":"120809","_from":"68606","_to":"70947"} +{"$label":"ACTS_IN","name":"Irene","type":"Role","_key":"116555","_from":"68609","_to":"68608"} +{"$label":"DIRECTED","_key":"116561","_from":"68612","_to":"68610"} +{"$label":"ACTS_IN","name":"Anne Marie Purdy","type":"Role","_key":"116559","_from":"68611","_to":"68610"} +{"$label":"DIRECTED","_key":"116572","_from":"68618","_to":"68613"} +{"$label":"ACTS_IN","name":"Wayne (as Ken Becker)","type":"Role","_key":"116569","_from":"68617","_to":"68613"} +{"$label":"ACTS_IN","name":"Skeeter","type":"Role","_key":"116568","_from":"68616","_to":"68613"} +{"$label":"ACTS_IN","name":"Susan Jessup","type":"Role","_key":"116565","_from":"68615","_to":"68613"} +{"$label":"ACTS_IN","name":"Glenda Markle","type":"Role","_key":"116563","_from":"68614","_to":"68613"} +{"$label":"ACTS_IN","name":"Nellie","type":"Role","_key":"116922","_from":"68615","_to":"68828"} +{"$label":"ACTS_IN","name":"Mac (as Ken Becker)","type":"Role","_key":"116912","_from":"68617","_to":"68821"} +{"$label":"ACTS_IN","name":"Ada Lester","type":"Role","_key":"116577","_from":"68624","_to":"68621"} +{"$label":"ACTS_IN","name":"Dude Lester","type":"Role","_key":"116576","_from":"68623","_to":"68621"} +{"$label":"ACTS_IN","name":"Sister Bessie Rice","type":"Role","_key":"116574","_from":"68622","_to":"68621"} +{"$label":"DIRECTED","_key":"116589","_from":"68631","_to":"68625"} +{"$label":"ACTS_IN","name":"Emma Dermott","type":"Role","_key":"116588","_from":"68630","_to":"68625"} +{"$label":"ACTS_IN","name":"Blake Stamp","type":"Role","_key":"116587","_from":"68629","_to":"68625"} +{"$label":"ACTS_IN","name":"Mike Mendelsen","type":"Role","_key":"116586","_from":"68628","_to":"68625"} +{"$label":"ACTS_IN","name":"Rex Turner","type":"Role","_key":"116585","_from":"68627","_to":"68625"} +{"$label":"ACTS_IN","name":"Virgil Stamp","type":"Role","_key":"116584","_from":"68626","_to":"68625"} +{"$label":"DIRECTED","_key":"116590","_from":"68633","_to":"68632"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116595","_from":"68636","_to":"68634"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"116593","_from":"68635","_to":"68634"} +{"$label":"ACTS_IN","name":"Juliette","type":"Role","_key":"116599","_from":"68640","_to":"68638"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"116598","_from":"68639","_to":"68638"} +{"$label":"ACTS_IN","name":"Margaret Parks","type":"Role","_key":"116616","_from":"68647","_to":"68642"} +{"$label":"ACTS_IN","name":"Chairman","type":"Role","_key":"116615","_from":"68646","_to":"68642"} +{"$label":"ACTS_IN","name":"Herb Foster","type":"Role","_key":"116613","_from":"68645","_to":"68642"} +{"$label":"ACTS_IN","name":"Mantajano","type":"Role","_key":"116611","_from":"68644","_to":"68642"} +{"$label":"ACTS_IN","name":"Lieutenant Clark","type":"Role","_key":"116607","_from":"68643","_to":"68642"} +{"$label":"ACTS_IN","name":"Rick Martino","type":"Role","_key":"116628","_from":"68651","_to":"68650"} +{"$label":"ACTS_IN","name":"Willy","type":"Role","_key":"120615","_from":"68651","_to":"70829"} +{"$label":"ACTS_IN","name":"Violet Kahn","type":"Role","_key":"116635","_from":"68657","_to":"68653"} +{"$label":"ACTS_IN","name":"Goldie Goldman","type":"Role","_key":"116634","_from":"68656","_to":"68653"} +{"$label":"ACTS_IN","name":"Maddy Wirtz","type":"Role","_key":"116632","_from":"68655","_to":"68653"} +{"$label":"DIRECTED","_key":"116630","_from":"68654","_to":"68653"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"116643","_from":"68663","_to":"68658"} +{"$label":"ACTS_IN","name":"Pamela","type":"Role","_key":"116641","_from":"68662","_to":"68658"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"116640","_from":"68661","_to":"68658"} +{"$label":"ACTS_IN","name":"Kathy","type":"Role","_key":"116639","_from":"68660","_to":"68658"} +{"$label":"ACTS_IN","name":"Robert","type":"Role","_key":"116638","_from":"68659","_to":"68658"} +{"$label":"DIRECTED","_key":"116660","_from":"68671","_to":"68665"} +{"$label":"ACTS_IN","name":"Ludo","type":"Role","_key":"116657","_from":"68670","_to":"68665"} +{"$label":"ACTS_IN","name":"Stevie","type":"Role","_key":"116656","_from":"68669","_to":"68665"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"116655","_from":"68668","_to":"68665"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"116653","_from":"68667","_to":"68665"} +{"$label":"ACTS_IN","name":"Molly","type":"Role","_key":"116644","_from":"68666","_to":"68665"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"121031","_from":"68666","_to":"71078"} +{"$label":"ACTS_IN","name":"Sgt. Comely","type":"Role","_key":"116663","_from":"68675","_to":"68672"} +{"$label":"ACTS_IN","name":"BigMac","type":"Role","_key":"116662","_from":"68674","_to":"68672"} +{"$label":"ACTS_IN","name":"Yo-Less","type":"Role","_key":"116661","_from":"68673","_to":"68672"} +{"$label":"ACTS_IN","name":"John Harbison","type":"Role","_key":"116667","_from":"68679","_to":"68678"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116671","_from":"68682","_to":"68681"} +{"$label":"DIRECTED","_key":"116675","_from":"68686","_to":"68685"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"116678","_from":"68688","_to":"68687"} +{"$label":"DIRECTED","_key":"116689","_from":"68693","_to":"68690"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116688","_from":"68692","_to":"68690"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116687","_from":"68691","_to":"68690"} +{"$label":"ACTS_IN","name":"Sue Allen","type":"Role","_key":"116695","_from":"68696","_to":"68695"} +{"$label":"ACTS_IN","name":"Ellen Lacey","type":"Role","_key":"120627","_from":"68696","_to":"70847"} +{"$label":"ACTS_IN","name":"Micha\u0142 Fiodorowicz","type":"Role","_key":"116701","_from":"68700","_to":"68697"} +{"$label":"ACTS_IN","name":"Ubica","type":"Role","_key":"116700","_from":"68699","_to":"68697"} +{"$label":"DIRECTED","_key":"116698","_from":"68698","_to":"68697"} +{"$label":"DIRECTED","_key":"116711","_from":"68703","_to":"68701"} +{"$label":"ACTS_IN","name":"Nowy","type":"Role","_key":"116708","_from":"68702","_to":"68701"} +{"$label":"DIRECTED","_key":"116715","_from":"68706","_to":"68705"} +{"$label":"ACTS_IN","name":"Young Jesse","type":"Role","_key":"116720","_from":"68711","_to":"68707"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"116719","_from":"68710","_to":"68707"} +{"$label":"ACTS_IN","name":"John Jaegerman","type":"Role","_key":"116718","_from":"68709","_to":"68707"} +{"$label":"ACTS_IN","name":"Young Vince","type":"Role","_key":"116717","_from":"68708","_to":"68707"} +{"$label":"ACTS_IN","name":"Warren Stacy","type":"Role","_key":"116730","_from":"68713","_to":"68712"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116754","_from":"68727","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116753","_from":"68726","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116752","_from":"68725","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116751","_from":"68724","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116750","_from":"68723","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116749","_from":"68722","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116748","_from":"68721","_to":"68714"} +{"$label":"ACTS_IN","name":"Party Goer","type":"Role","_key":"116746","_from":"68720","_to":"68714"} +{"$label":"ACTS_IN","name":"Test Site Worker","type":"Role","_key":"116745","_from":"68719","_to":"68714"} +{"$label":"ACTS_IN","name":"Counter Girl","type":"Role","_key":"116744","_from":"68718","_to":"68714"} +{"$label":"ACTS_IN","name":"Dan Lowenthal","type":"Role","_key":"116743","_from":"68717","_to":"68714"} +{"$label":"ACTS_IN","name":"Jim O'Boyle","type":"Role","_key":"116739","_from":"68716","_to":"68714"} +{"$label":"ACTS_IN","name":"Leo Franks","type":"Role","_key":"116738","_from":"68715","_to":"68714"} +{"$label":"ACTS_IN","name":"Menchu","type":"Role","_key":"116761","_from":"68732","_to":"68730"} +{"$label":"ACTS_IN","name":"Cesar","type":"Role","_key":"116760","_from":"68731","_to":"68730"} +{"$label":"DIRECTED","_key":"116767","_from":"68739","_to":"68735"} +{"$label":"ACTS_IN","name":"Declan","type":"Role","_key":"116765","_from":"68738","_to":"68735"} +{"$label":"ACTS_IN","name":"David","type":"Role","_key":"116764","_from":"68737","_to":"68735"} +{"$label":"ACTS_IN","name":"Josie","type":"Role","_key":"116763","_from":"68736","_to":"68735"} +{"$label":"DIRECTED","_key":"116776","_from":"68743","_to":"68740"} +{"$label":"ACTS_IN","name":"Dyce","type":"Role","_key":"116770","_from":"68742","_to":"68740"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"116768","_from":"68741","_to":"68740"} +{"$label":"ACTS_IN","name":"Julia Davis","type":"Role","_key":"116781","_from":"68747","_to":"68745"} +{"$label":"ACTS_IN","name":"Sara Davis","type":"Role","_key":"116779","_from":"68746","_to":"68745"} +{"$label":"DIRECTED","_key":"116784","_from":"68749","_to":"68748"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116800","_from":"68765","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116799","_from":"68764","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116798","_from":"68763","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116797","_from":"68762","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116794","_from":"68761","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116793","_from":"68760","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116792","_from":"68759","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116791","_from":"68758","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116789","_from":"68757","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116788","_from":"68756","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116787","_from":"68755","_to":"68752"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"116786","_from":"68754","_to":"68752"} +{"$label":"DIRECTED","_key":"116785","_from":"68753","_to":"68752"} +{"$label":"ACTS_IN","name":"Young Jakob","type":"Role","_key":"116816","_from":"68773","_to":"68771"} +{"$label":"DIRECTED","_key":"116811","_from":"68772","_to":"68771"} +{"$label":"DIRECTED","_key":"116826","_from":"68775","_to":"68774"} +{"$label":"ACTS_IN","name":"Young McAllister","type":"Role","_key":"116839","_from":"68781","_to":"68777"} +{"$label":"ACTS_IN","name":"The Salesman","type":"Role","_key":"116837","_from":"68780","_to":"68777"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"116835","_from":"68779","_to":"68777"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"116833","_from":"68778","_to":"68777"} +{"$label":"DIRECTED","_key":"116842","_from":"68784","_to":"68783"} +{"$label":"ACTS_IN","name":"Yamada","type":"Role","_key":"116852","_from":"68791","_to":"68787"} +{"$label":"ACTS_IN","name":"Hisa","type":"Role","_key":"116851","_from":"68790","_to":"68787"} +{"$label":"ACTS_IN","name":"Mitsu","type":"Role","_key":"116849","_from":"68789","_to":"68787"} +{"$label":"DIRECTED","_key":"116847","_from":"68788","_to":"68787"} +{"$label":"ACTS_IN","name":"Riko (Saeko) Matsumiya","type":"Role","_key":"116855","_from":"68794","_to":"68793"} +{"$label":"ACTS_IN","name":"Bogus Charlie","type":"Role","_key":"116868","_from":"68801","_to":"68798"} +{"$label":"ACTS_IN","name":"Marybette Jason","type":"Role","_key":"116867","_from":"68800","_to":"68798"} +{"$label":"DIRECTED","_key":"116860","_from":"68799","_to":"68798"} +{"$label":"ACTS_IN","name":"Zero","type":"Role","_key":"116876","_from":"68806","_to":"68802"} +{"$label":"ACTS_IN","name":"Elise","type":"Role","_key":"116875","_from":"68805","_to":"68802"} +{"$label":"ACTS_IN","name":"Ratcha","type":"Role","_key":"116874","_from":"68804","_to":"68802"} +{"$label":"ACTS_IN","name":"Marilyn","type":"Role","_key":"116871","_from":"68803","_to":"68802"} +{"$label":"ACTS_IN","name":"Shelly's Sister","type":"Role","_key":"116881","_from":"68810","_to":"68807"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"116880","_from":"68809","_to":"68807"} +{"$label":"ACTS_IN","name":"Gina","type":"Role","_key":"116879","_from":"68808","_to":"68807"} +{"$label":"ACTS_IN","name":"Puzzlehead \/ Walter","type":"Role","_key":"116883","_from":"68812","_to":"68811"} +{"$label":"DIRECTED","_key":"116887","_from":"68814","_to":"68813"} +{"$label":"ACTS_IN","name":"Foxy Detective","type":"Role","_key":"116889","_from":"68816","_to":"68815"} +{"$label":"DIRECTED","_key":"116901","_from":"68820","_to":"68818"} +{"$label":"ACTS_IN","name":"Doc Phillips","type":"Role","_key":"116899","_from":"68819","_to":"68818"} +{"$label":"DIRECTED","_key":"117975","_from":"68820","_to":"69342"} +{"$label":"ACTS_IN","name":"Capt. Hobart","type":"Role","_key":"116910","_from":"68825","_to":"68821"} +{"$label":"ACTS_IN","name":"Sgt. McGraw","type":"Role","_key":"116908","_from":"68824","_to":"68821"} +{"$label":"ACTS_IN","name":"Marla","type":"Role","_key":"116907","_from":"68823","_to":"68821"} +{"$label":"ACTS_IN","name":"Lili","type":"Role","_key":"116903","_from":"68822","_to":"68821"} +{"$label":"ACTS_IN","name":"Holly Jones","type":"Role","_key":"116916","_from":"68827","_to":"68826"} +{"$label":"ACTS_IN","name":"Mimi Fisher","type":"Role","_key":"116927","_from":"68830","_to":"68828"} +{"$label":"ACTS_IN","name":": Forty Nina","type":"Role","_key":"116924","_from":"68829","_to":"68828"} +{"$label":"DIRECTED","_key":"116936","_from":"68833","_to":"68832"} +{"$label":"ACTS_IN","name":"Louisa","type":"Role","_key":"116940","_from":"68835","_to":"68834"} +{"$label":"ACTS_IN","name":"Trigger, Roy's horse","type":"Role","_key":"116947","_from":"68840","_to":"68836"} +{"$label":"ACTS_IN","name":"Pop Jordan (as George H. Lloyd)","type":"Role","_key":"116945","_from":"68839","_to":"68836"} +{"$label":"ACTS_IN","name":"Caroline Bullfincher","type":"Role","_key":"116943","_from":"68838","_to":"68836"} +{"$label":"ACTS_IN","name":"Roy Rogers","type":"Role","_key":"116942","_from":"68837","_to":"68836"} +{"$label":"ACTS_IN","name":"Roy Rogers","type":"Role","_key":"117547","_from":"68837","_to":"69113"} +{"$label":"DIRECTED","_key":"116954","_from":"68842","_to":"68841"} +{"$label":"DIRECTED","_key":"117729","_from":"68842","_to":"69203"} +{"$label":"DIRECTED","_key":"116957","_from":"68845","_to":"68844"} +{"$label":"DIRECTED","_key":"118860","_from":"68845","_to":"69860"} +{"$label":"DIRECTED","_key":"116960","_from":"68849","_to":"68846"} +{"$label":"ACTS_IN","name":"Larry Evans","type":"Role","_key":"116959","_from":"68848","_to":"68846"} +{"$label":"ACTS_IN","name":"Rob Rodgers","type":"Role","_key":"116958","_from":"68847","_to":"68846"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"116975","_from":"68855","_to":"68851"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"116974","_from":"68854","_to":"68851"} +{"$label":"ACTS_IN","name":"Porn Star","type":"Role","_key":"116972","_from":"68853","_to":"68851"} +{"$label":"ACTS_IN","name":"Lucy","type":"Role","_key":"116966","_from":"68852","_to":"68851"} +{"$label":"ACTS_IN","name":"Stanley (as Tim Scott)","type":"Role","_key":"116989","_from":"68857","_to":"68856"} +{"$label":"ACTS_IN","name":"Russel Donavan","type":"Role","_key":"116996","_from":"68860","_to":"68858"} +{"$label":"DIRECTED","_key":"116992","_from":"68859","_to":"68858"} +{"$label":"ACTS_IN","name":"Dr. David Bruce Banner","type":"Role","_key":"120511","_from":"68860","_to":"70786"} +{"$label":"ACTS_IN","name":"Kenny Donford","type":"Role","_key":"117133","_from":"68860","_to":"68916"} +{"$label":"DIRECTED","_key":"117005","_from":"68862","_to":"68861"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"117008","_from":"68865","_to":"68863"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"117007","_from":"68864","_to":"68863"} +{"$label":"DIRECTED","_key":"117010","_from":"68867","_to":"68866"} +{"$label":"DIRECTED","_key":"117786","_from":"68867","_to":"69234"} +{"$label":"ACTS_IN","name":"Hung Man Ting","type":"Role","_key":"117024","_from":"68871","_to":"68869"} +{"$label":"ACTS_IN","name":"Ma Ling-Yee","type":"Role","_key":"117022","_from":"68870","_to":"68869"} +{"$label":"ACTS_IN","name":"Ku Kung \/ Johnny Kung (as Xia Miao)","type":"Role","_key":"117242","_from":"68871","_to":"68965"} +{"$label":"DIRECTED","_key":"117033","_from":"68878","_to":"68872"} +{"$label":"ACTS_IN","name":"Dave Allister","type":"Role","_key":"117031","_from":"68877","_to":"68872"} +{"$label":"ACTS_IN","name":"Sheriff Clyde Boston","type":"Role","_key":"117030","_from":"68876","_to":"68872"} +{"$label":"ACTS_IN","name":"Ruby Tare","type":"Role","_key":"117029","_from":"68875","_to":"68872"} +{"$label":"ACTS_IN","name":"Packett","type":"Role","_key":"117027","_from":"68874","_to":"68872"} +{"$label":"ACTS_IN","name":"Annie Laurie Starr","type":"Role","_key":"117025","_from":"68873","_to":"68872"} +{"$label":"ACTS_IN","name":"Carey Greenway","type":"Role","_key":"118344","_from":"68873","_to":"69573"} +{"$label":"ACTS_IN","name":"Petrosian","type":"Role","_key":"117429","_from":"68874","_to":"69064"} +{"$label":"ACTS_IN","name":"Gat Morgan","type":"Role","_key":"120631","_from":"68877","_to":"70847"} +{"$label":"DIRECTED","_key":"117044","_from":"68883","_to":"68880"} +{"$label":"ACTS_IN","name":"Anil Sharma","type":"Role","_key":"117043","_from":"68882","_to":"68880"} +{"$label":"ACTS_IN","name":"Sheila Patel","type":"Role","_key":"117041","_from":"68881","_to":"68880"} +{"$label":"DIRECTED","_key":"117049","_from":"68885","_to":"68884"} +{"$label":"ACTS_IN","name":"Hildy Wainwright","type":"Role","_key":"117055","_from":"68888","_to":"68886"} +{"$label":"ACTS_IN","name":"Steward Dunbar","type":"Role","_key":"117054","_from":"68887","_to":"68886"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117065","_from":"68894","_to":"68889"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117063","_from":"68893","_to":"68889"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117062","_from":"68892","_to":"68889"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117060","_from":"68891","_to":"68889"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"117059","_from":"68890","_to":"68889"} +{"$label":"ACTS_IN","name":"Wilbur","type":"Role","_key":"117086","_from":"68899","_to":"68897"} +{"$label":"ACTS_IN","name":". \tAndy","type":"Role","_key":"117085","_from":"68898","_to":"68897"} +{"$label":"ACTS_IN","name":"Shirley Valentine-Bradshaw","type":"Role","_key":"117088","_from":"68901","_to":"68900"} +{"$label":"ACTS_IN","name":"Maynard","type":"Role","_key":"117101","_from":"68904","_to":"68902"} +{"$label":"ACTS_IN","name":"Dolly Fletcher","type":"Role","_key":"117097","_from":"68903","_to":"68902"} +{"$label":"ACTS_IN","name":"Louis Penlow","type":"Role","_key":"117108","_from":"68906","_to":"68905"} +{"$label":"ACTS_IN","name":"Charles Harris","type":"Role","_key":"117178","_from":"68906","_to":"68936"} +{"$label":"DIRECTED","_key":"117114","_from":"68909","_to":"68907"} +{"$label":"ACTS_IN","name":"Vince Hackett","type":"Role","_key":"117112","_from":"68908","_to":"68907"} +{"$label":"ACTS_IN","name":"Diana St. Clair","type":"Role","_key":"117117","_from":"68911","_to":"68910"} +{"$label":"ACTS_IN","name":"Peg","type":"Role","_key":"117124","_from":"68914","_to":"68912"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"117120","_from":"68913","_to":"68912"} +{"$label":"ACTS_IN","name":"Susan Jacks","type":"Role","_key":"117134","_from":"68917","_to":"68916"} +{"$label":"ACTS_IN","name":"Sister Barbara Bennett","type":"Role","_key":"117140","_from":"68920","_to":"68918"} +{"$label":"ACTS_IN","name":"Sister Irene Hawkins","type":"Role","_key":"117139","_from":"68919","_to":"68918"} +{"$label":"ACTS_IN","name":"HH","type":"Role","_key":"117147","_from":"68923","_to":"68921"} +{"$label":"ACTS_IN","name":"Peter","type":"Role","_key":"117146","_from":"68922","_to":"68921"} +{"$label":"ACTS_IN","name":"Karis","type":"Role","_key":"117152","_from":"68925","_to":"68924"} +{"$label":"DIRECTED","_key":"117159","_from":"68930","_to":"68926"} +{"$label":"ACTS_IN","name":"Arthur \/ Prince Arthur \/ Troubador","type":"Role","_key":"117158","_from":"68929","_to":"68926"} +{"$label":"ACTS_IN","name":"Eloise \/ Princess Eloise \/ Darlene","type":"Role","_key":"117157","_from":"68928","_to":"68926"} +{"$label":"ACTS_IN","name":"Sgt. Riley \/ The Giant","type":"Role","_key":"117156","_from":"68927","_to":"68926"} +{"$label":"ACTS_IN","name":"Charles 'C.J.' Haskell","type":"Role","_key":"117172","_from":"68935","_to":"68933"} +{"$label":"ACTS_IN","name":"Horace Heidt","type":"Role","_key":"117171","_from":"68934","_to":"68933"} +{"$label":"DIRECTED","_key":"117179","_from":"68938","_to":"68936"} +{"$label":"ACTS_IN","name":"Elsie","type":"Role","_key":"117177","_from":"68937","_to":"68936"} +{"$label":"ACTS_IN","name":"Lilith Ritter","type":"Role","_key":"119041","_from":"68937","_to":"69977"} +{"$label":"DIRECTED","_key":"117185","_from":"68940","_to":"68939"} +{"$label":"DIRECTED","_key":"117196","_from":"68946","_to":"68941"} +{"$label":"ACTS_IN","name":"Madame Delacour","type":"Role","_key":"117193","_from":"68945","_to":"68941"} +{"$label":"ACTS_IN","name":"Rollo Venables","type":"Role","_key":"117192","_from":"68944","_to":"68941"} +{"$label":"ACTS_IN","name":"Connie Porter","type":"Role","_key":"117188","_from":"68943","_to":"68941"} +{"$label":"ACTS_IN","name":"Fabian the Great","type":"Role","_key":"117187","_from":"68942","_to":"68941"} +{"$label":"ACTS_IN","name":"Dr. Franz Tobel","type":"Role","_key":"117201","_from":"68949","_to":"68947"} +{"$label":"ACTS_IN","name":"Charlotte Eberli","type":"Role","_key":"117200","_from":"68948","_to":"68947"} +{"$label":"DIRECTED","_key":"117222","_from":"68954","_to":"68953"} +{"$label":"DIRECTED","_key":"117225","_from":"68957","_to":"68955"} +{"$label":"ACTS_IN","name":"Kamal","type":"Role","_key":"117224","_from":"68956","_to":"68955"} +{"$label":"ACTS_IN","name":"Yoji Nishimura","type":"Role","_key":"117236","_from":"68963","_to":"68961"} +{"$label":"ACTS_IN","name":"Hiroko Uchiyama","type":"Role","_key":"117235","_from":"68962","_to":"68961"} +{"$label":"ACTS_IN","name":"Mass Tar Wong 'Mr Pimp'","type":"Role","_key":"117261","_from":"68971","_to":"68969"} +{"$label":"ACTS_IN","name":"So (as Wai-kin Cheung)","type":"Role","_key":"117260","_from":"68970","_to":"68969"} +{"$label":"ACTS_IN","name":"Noriyoshi Harada","type":"Role","_key":"117272","_from":"68976","_to":"68972"} +{"$label":"ACTS_IN","name":"Air-traffic Controller","type":"Role","_key":"117271","_from":"68975","_to":"68972"} +{"$label":"ACTS_IN","name":"Etsuko Saito","type":"Role","_key":"117267","_from":"68974","_to":"68972"} +{"$label":"DIRECTED","_key":"117265","_from":"68973","_to":"68972"} +{"$label":"ACTS_IN","name":"Ichi","type":"Role","_key":"120253","_from":"68974","_to":"70616"} +{"$label":"ACTS_IN","name":"Cyborg","type":"Role","_key":"120178","_from":"68974","_to":"70581"} +{"$label":"DIRECTED","_key":"117273","_from":"68978","_to":"68977"} +{"$label":"ACTS_IN","name":"Bruce Liang","type":"Role","_key":"117278","_from":"68980","_to":"68979"} +{"$label":"ACTS_IN","name":"Police Officer (uncredited)","type":"Role","_key":"117303","_from":"68993","_to":"68981"} +{"$label":"ACTS_IN","name":"Background Dancer","type":"Role","_key":"117302","_from":"68992","_to":"68981"} +{"$label":"ACTS_IN","name":"Background Dancer (as Heather Gray)","type":"Role","_key":"117301","_from":"68991","_to":"68981"} +{"$label":"ACTS_IN","name":"Paparazzo #2","type":"Role","_key":"117300","_from":"68990","_to":"68981"} +{"$label":"ACTS_IN","name":"Small Child #2","type":"Role","_key":"117299","_from":"68989","_to":"68981"} +{"$label":"ACTS_IN","name":"Janitor","type":"Role","_key":"117295","_from":"68988","_to":"68981"} +{"$label":"ACTS_IN","name":"Model #2","type":"Role","_key":"117294","_from":"68987","_to":"68981"} +{"$label":"ACTS_IN","name":"Cute Girl #1 (as Katy Saunders)","type":"Role","_key":"117292","_from":"68986","_to":"68981"} +{"$label":"ACTS_IN","name":"Dr. Comito","type":"Role","_key":"117291","_from":"68985","_to":"68981"} +{"$label":"ACTS_IN","name":"Mr. Escobar","type":"Role","_key":"117289","_from":"68984","_to":"68981"} +{"$label":"ACTS_IN","name":"Paolo Valisari","type":"Role","_key":"117287","_from":"68983","_to":"68981"} +{"$label":"ACTS_IN","name":"David Gordon","type":"Role","_key":"117282","_from":"68982","_to":"68981"} +{"$label":"DIRECTED","_key":"117314","_from":"68997","_to":"68995"} +{"$label":"ACTS_IN","name":"Tung","type":"Role","_key":"117312","_from":"68996","_to":"68995"} +{"$label":"ACTS_IN","name":"Eloise","type":"Role","_key":"117323","_from":"69004","_to":"68998"} +{"$label":"ACTS_IN","name":"Pie Harrelson","type":"Role","_key":"117322","_from":"69003","_to":"68998"} +{"$label":"ACTS_IN","name":"Claire","type":"Role","_key":"117321","_from":"69002","_to":"68998"} +{"$label":"ACTS_IN","name":"Anita","type":"Role","_key":"117320","_from":"69001","_to":"68998"} +{"$label":"ACTS_IN","name":"Norman Greene","type":"Role","_key":"117319","_from":"69000","_to":"68998"} +{"$label":"ACTS_IN","name":"Walker","type":"Role","_key":"117318","_from":"68999","_to":"68998"} +{"$label":"ACTS_IN","name":"Gabriel Barkay","type":"Role","_key":"117334","_from":"69008","_to":"69006"} +{"$label":"ACTS_IN","name":"Bruce Burgess","type":"Role","_key":"117333","_from":"69007","_to":"69006"} +{"$label":"DIRECTED","_key":"117343","_from":"69016","_to":"69011"} +{"$label":"ACTS_IN","name":"Gabrielle 'X'","type":"Role","_key":"117342","_from":"69015","_to":"69011"} +{"$label":"ACTS_IN","name":"Ben","type":"Role","_key":"117341","_from":"69014","_to":"69011"} +{"$label":"ACTS_IN","name":"Cleaver","type":"Role","_key":"117340","_from":"69013","_to":"69011"} +{"$label":"ACTS_IN","name":"Miles","type":"Role","_key":"117339","_from":"69012","_to":"69011"} +{"$label":"DIRECTED","_key":"117348","_from":"69018","_to":"69017"} +{"$label":"ACTS_IN","name":"First Dragon","type":"Role","_key":"117353","_from":"69022","_to":"69019"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117352","_from":"69021","_to":"69019"} +{"$label":"ACTS_IN","name":"Ting Tan-Yen","type":"Role","_key":"117350","_from":"69020","_to":"69019"} +{"$label":"ACTS_IN","name":"Harris","type":"Role","_key":"117357","_from":"69026","_to":"69023"} +{"$label":"ACTS_IN","name":"Maya Castenado","type":"Role","_key":"117356","_from":"69025","_to":"69023"} +{"$label":"DIRECTED","_key":"117355","_from":"69024","_to":"69023"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117362","_from":"69029","_to":"69027"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"117361","_from":"69028","_to":"69027"} +{"$label":"ACTS_IN","name":"Igor Glushko","type":"Role","_key":"117372","_from":"69038","_to":"69030"} +{"$label":"ACTS_IN","name":"Taya Petrova","type":"Role","_key":"117371","_from":"69037","_to":"69030"} +{"$label":"ACTS_IN","name":"Komarov's father","type":"Role","_key":"117370","_from":"69036","_to":"69030"} +{"$label":"ACTS_IN","name":"Tanya Nesterova","type":"Role","_key":"117369","_from":"69035","_to":"69030"} +{"$label":"ACTS_IN","name":"Taya's mother","type":"Role","_key":"117368","_from":"69034","_to":"69030"} +{"$label":"ACTS_IN","name":"Aleksandr Ivanovich","type":"Role","_key":"117367","_from":"69033","_to":"69030"} +{"$label":"ACTS_IN","name":"Oleg Komarov","type":"Role","_key":"117366","_from":"69032","_to":"69030"} +{"$label":"DIRECTED","_key":"117365","_from":"69031","_to":"69030"} +{"$label":"DIRECTED","_key":"117388","_from":"69047","_to":"69039"} +{"$label":"ACTS_IN","name":"Ossie Sands","type":"Role","_key":"117387","_from":"69046","_to":"69039"} +{"$label":"ACTS_IN","name":"Recording Engineer","type":"Role","_key":"117386","_from":"69045","_to":"69039"} +{"$label":"ACTS_IN","name":"Moose","type":"Role","_key":"117385","_from":"69044","_to":"69039"} +{"$label":"ACTS_IN","name":"Crab","type":"Role","_key":"117384","_from":"69043","_to":"69039"} +{"$label":"ACTS_IN","name":"Young Bob","type":"Role","_key":"117382","_from":"69042","_to":"69039"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"117380","_from":"69041","_to":"69039"} +{"$label":"ACTS_IN","name":"Terry Colcott","type":"Role","_key":"117377","_from":"69040","_to":"69039"} +{"$label":"ACTS_IN","name":"Yan \/ Ian (as Man Hei)","type":"Role","_key":"117394","_from":"69049","_to":"69048"} +{"$label":"ACTS_IN","name":"Hotel Staffer Chan","type":"Role","_key":"117398","_from":"69052","_to":"69050"} +{"$label":"ACTS_IN","name":"Tarzan (Tyson in US Version) (as Teddy Robin)","type":"Role","_key":"117397","_from":"69051","_to":"69050"} +{"$label":"ACTS_IN","name":"Kui \/ Lucas","type":"Role","_key":"117407","_from":"69055","_to":"69054"} +{"$label":"DIRECTED","_key":"117423","_from":"69062","_to":"69060"} +{"$label":"ACTS_IN","name":"Elizabeth","type":"Role","_key":"117420","_from":"69061","_to":"69060"} +{"$label":"DIRECTED","_key":"117436","_from":"69066","_to":"69064"} +{"$label":"ACTS_IN","name":"Mokri","type":"Role","_key":"117433","_from":"69065","_to":"69064"} +{"$label":"ACTS_IN","name":"Benjamin Frank Mahoney, President Ryan Airlines Co.","type":"Role","_key":"117441","_from":"69069","_to":"69067"} +{"$label":"ACTS_IN","name":"Mirror Girl","type":"Role","_key":"117440","_from":"69068","_to":"69067"} +{"$label":"DIRECTED","_key":"117445","_from":"69071","_to":"69070"} +{"$label":"DIRECTED","_key":"117449","_from":"69074","_to":"69073"} +{"$label":"ACTS_IN","name":"Admiral - 'Hood'","type":"Role","_key":"117468","_from":"69080","_to":"69075"} +{"$label":"ACTS_IN","name":"Captain - 'Sheffield'","type":"Role","_key":"117465","_from":"69079","_to":"69075"} +{"$label":"ACTS_IN","name":"Captain - 'Suffolk'","type":"Role","_key":"117464","_from":"69078","_to":"69075"} +{"$label":"ACTS_IN","name":"Captain - 'Ark Royal'","type":"Role","_key":"117463","_from":"69077","_to":"69075"} +{"$label":"ACTS_IN","name":"Signals Officer","type":"Role","_key":"117461","_from":"69076","_to":"69075"} +{"$label":"ACTS_IN","name":"Jonah","type":"Role","_key":"117477","_from":"69083","_to":"69081"} +{"$label":"ACTS_IN","name":"Mary Campbell","type":"Role","_key":"117475","_from":"69082","_to":"69081"} +{"$label":"ACTS_IN","name":"Tracy Garner","type":"Role","_key":"117494","_from":"69088","_to":"69087"} +{"$label":"DIRECTED","_key":"117523","_from":"69101","_to":"69094"} +{"$label":"ACTS_IN","name":"Ken Thomas","type":"Role","_key":"117522","_from":"69100","_to":"69094"} +{"$label":"ACTS_IN","name":"Mr. Candance","type":"Role","_key":"117521","_from":"69099","_to":"69094"} +{"$label":"ACTS_IN","name":"Jasmine Farmer","type":"Role","_key":"117520","_from":"69098","_to":"69094"} +{"$label":"ACTS_IN","name":"Barry Arthur","type":"Role","_key":"117518","_from":"69097","_to":"69094"} +{"$label":"ACTS_IN","name":"Juke Joint Man","type":"Role","_key":"117516","_from":"69096","_to":"69094"} +{"$label":"ACTS_IN","name":"Lena Baker","type":"Role","_key":"117515","_from":"69095","_to":"69094"} +{"$label":"DIRECTED","_key":"117529","_from":"69105","_to":"69102"} +{"$label":"ACTS_IN","name":"Jay's Son","type":"Role","_key":"117528","_from":"69104","_to":"69102"} +{"$label":"ACTS_IN","name":"Jade","type":"Role","_key":"117527","_from":"69103","_to":"69102"} +{"$label":"ACTS_IN","name":"Julian Ellsworth","type":"Role","_key":"117535","_from":"69108","_to":"69106"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"117534","_from":"69107","_to":"69106"} +{"$label":"DIRECTED","_key":"117546","_from":"69112","_to":"69109"} +{"$label":"ACTS_IN","name":"Dandy","type":"Role","_key":"117544","_from":"69111","_to":"69109"} +{"$label":"ACTS_IN","name":"Wilhemina Adelaide 'Willie' Decker","type":"Role","_key":"117542","_from":"69110","_to":"69109"} +{"$label":"ACTS_IN","name":"Rex Gridley","type":"Role","_key":"117550","_from":"69115","_to":"69113"} +{"$label":"ACTS_IN","name":"Lee Madison","type":"Role","_key":"117548","_from":"69114","_to":"69113"} +{"$label":"ACTS_IN","name":"Barbara Bruce","type":"Role","_key":"117554","_from":"69117","_to":"69116"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"117570","_from":"69123","_to":"69119"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"117569","_from":"69122","_to":"69119"} +{"$label":"ACTS_IN","name":"Various","type":"Role","_key":"117568","_from":"69121","_to":"69119"} +{"$label":"DIRECTED","_key":"117563","_from":"69120","_to":"69119"} +{"$label":"ACTS_IN","name":"Sheng Nan","type":"Role","_key":"117573","_from":"69125","_to":"69124"} +{"$label":"ACTS_IN","name":"Wong Fei-Hong","type":"Role","_key":"117579","_from":"69127","_to":"69126"} +{"$label":"ACTS_IN","name":"Chee","type":"Role","_key":"117583","_from":"69129","_to":"69128"} +{"$label":"DIRECTED","_key":"117592","_from":"69133","_to":"69130"} +{"$label":"ACTS_IN","name":"Tung Fong-Pak","type":"Role","_key":"117590","_from":"69132","_to":"69130"} +{"$label":"ACTS_IN","name":"Ghost Master","type":"Role","_key":"117587","_from":"69131","_to":"69130"} +{"$label":"ACTS_IN","name":"Sakke","type":"Role","_key":"117598","_from":"69138","_to":"69134"} +{"$label":"ACTS_IN","name":"Ullis","type":"Role","_key":"117595","_from":"69137","_to":"69134"} +{"$label":"ACTS_IN","name":"Jenna","type":"Role","_key":"117594","_from":"69136","_to":"69134"} +{"$label":"DIRECTED","_key":"117593","_from":"69135","_to":"69134"} +{"$label":"ACTS_IN","name":"Captain Ko Tung-Yuen (as Huh Joon-Ho)","type":"Role","_key":"117606","_from":"69141","_to":"69139"} +{"$label":"ACTS_IN","name":"PRC Luo Zai-Jun (as Xia Yu)","type":"Role","_key":"117601","_from":"69140","_to":"69139"} +{"$label":"ACTS_IN","name":"Sergeant Jo","type":"Role","_key":"120725","_from":"69141","_to":"70904"} +{"$label":"ACTS_IN","name":"Chang-kang","type":"Role","_key":"117741","_from":"69141","_to":"69213"} +{"$label":"ACTS_IN","name":"Female Ji Wushuang","type":"Role","_key":"117614","_from":"69143","_to":"69142"} +{"$label":"DIRECTED","_key":"117626","_from":"69147","_to":"69144"} +{"$label":"ACTS_IN","name":"Inspector Maruyama","type":"Role","_key":"117624","_from":"69146","_to":"69144"} +{"$label":"ACTS_IN","name":"Terauchi Kendo","type":"Role","_key":"117623","_from":"69145","_to":"69144"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"117643","_from":"69156","_to":"69150"} +{"$label":"ACTS_IN","name":"Mr. Gin","type":"Role","_key":"117642","_from":"69155","_to":"69150"} +{"$label":"ACTS_IN","name":"Grandma","type":"Role","_key":"117641","_from":"69154","_to":"69150"} +{"$label":"ACTS_IN","name":"Man, Fan's little sister","type":"Role","_key":"117640","_from":"69153","_to":"69150"} +{"$label":"ACTS_IN","name":"Fan","type":"Role","_key":"117639","_from":"69152","_to":"69150"} +{"$label":"ACTS_IN","name":"Little Cheung","type":"Role","_key":"117638","_from":"69151","_to":"69150"} +{"$label":"ACTS_IN","name":"Apollo","type":"Role","_key":"117652","_from":"69159","_to":"69157"} +{"$label":"ACTS_IN","name":"Danae","type":"Role","_key":"117650","_from":"69158","_to":"69157"} +{"$label":"DIRECTED","_key":"117664","_from":"69163","_to":"69161"} +{"$label":"DIRECTED","_key":"117663","_from":"69162","_to":"69161"} +{"$label":"DIRECTED","_key":"117673","_from":"69167","_to":"69165"} +{"$label":"ACTS_IN","name":"Bubba Beauregard","type":"Role","_key":"117672","_from":"69166","_to":"69165"} +{"$label":"DIRECTED","_key":"117681","_from":"69169","_to":"69168"} +{"$label":"ACTS_IN","name":"Tachikoma","type":"Role","_key":"117691","_from":"69179","_to":"69171"} +{"$label":"ACTS_IN","name":"Saito","type":"Role","_key":"117689","_from":"69178","_to":"69171"} +{"$label":"ACTS_IN","name":"Ishikawa","type":"Role","_key":"117688","_from":"69177","_to":"69171"} +{"$label":"ACTS_IN","name":"The Laughing Man","type":"Role","_key":"117687","_from":"69176","_to":"69171"} +{"$label":"ACTS_IN","name":"Daisuke Aramaki","type":"Role","_key":"117686","_from":"69175","_to":"69171"} +{"$label":"ACTS_IN","name":"Togusa","type":"Role","_key":"117685","_from":"69174","_to":"69171"} +{"$label":"ACTS_IN","name":"Batou","type":"Role","_key":"117684","_from":"69173","_to":"69171"} +{"$label":"DIRECTED","_key":"117682","_from":"69172","_to":"69171"} +{"$label":"DIRECTED","_key":"119425","_from":"69172","_to":"70163"} +{"$label":"DIRECTED","_key":"117872","_from":"69172","_to":"69295"} +{"$label":"ACTS_IN","name":"Daisuke Aramaki","type":"Role","_key":"117874","_from":"69175","_to":"69295"} +{"$label":"ACTS_IN","name":"Ishikawa","type":"Role","_key":"117877","_from":"69177","_to":"69295"} +{"$label":"ACTS_IN","name":"Tachikoma","type":"Role","_key":"117881","_from":"69179","_to":"69295"} +{"$label":"ACTS_IN","name":"Katya","type":"Role","_key":"117699","_from":"69182","_to":"69180"} +{"$label":"ACTS_IN","name":"Grushenka","type":"Role","_key":"117698","_from":"69181","_to":"69180"} +{"$label":"ACTS_IN","name":"The Mutant","type":"Role","_key":"117710","_from":"69190","_to":"69183"} +{"$label":"ACTS_IN","name":"The Farmer","type":"Role","_key":"117709","_from":"69189","_to":"69183"} +{"$label":"ACTS_IN","name":"Ranger Brad","type":"Role","_key":"117708","_from":"69188","_to":"69183"} +{"$label":"ACTS_IN","name":"Animala","type":"Role","_key":"117707","_from":"69187","_to":"69183"} +{"$label":"ACTS_IN","name":"Lattis","type":"Role","_key":"117705","_from":"69186","_to":"69183"} +{"$label":"ACTS_IN","name":"Kro-Bar","type":"Role","_key":"117704","_from":"69185","_to":"69183"} +{"$label":"DIRECTED","_key":"117702","_from":"69184","_to":"69183"} +{"$label":"DIRECTED","_key":"117716","_from":"69194","_to":"69192"} +{"$label":"ACTS_IN","name":"Bo","type":"Role","_key":"117714","_from":"69193","_to":"69192"} +{"$label":"DIRECTED","_key":"117724","_from":"69202","_to":"69199"} +{"$label":"ACTS_IN","name":"Birdie","type":"Role","_key":"117722","_from":"69201","_to":"69199"} +{"$label":"ACTS_IN","name":"Jarvis","type":"Role","_key":"117721","_from":"69200","_to":"69199"} +{"$label":"ACTS_IN","name":"Charles Wilder","type":"Role","_key":"117728","_from":"69205","_to":"69203"} +{"$label":"ACTS_IN","name":"Fred Blythe","type":"Role","_key":"117727","_from":"69204","_to":"69203"} +{"$label":"ACTS_IN","name":"Master Fok","type":"Role","_key":"117737","_from":"69211","_to":"69206"} +{"$label":"ACTS_IN","name":"Fok Yun Gap - Young","type":"Role","_key":"117736","_from":"69210","_to":"69206"} +{"$label":"ACTS_IN","name":"Sanaka Senior","type":"Role","_key":"117735","_from":"69209","_to":"69206"} +{"$label":"ACTS_IN","name":"Eagle Claw school fighter","type":"Role","_key":"117733","_from":"69208","_to":"69206"} +{"$label":"ACTS_IN","name":"Boxing promoter","type":"Role","_key":"117732","_from":"69207","_to":"69206"} +{"$label":"ACTS_IN","name":"Hong-ri","type":"Role","_key":"117740","_from":"69215","_to":"69213"} +{"$label":"DIRECTED","_key":"117738","_from":"69214","_to":"69213"} +{"$label":"DIRECTED","_key":"117748","_from":"69221","_to":"69216"} +{"$label":"ACTS_IN","name":"Bull","type":"Role","_key":"117747","_from":"69220","_to":"69216"} +{"$label":"ACTS_IN","name":"Mei","type":"Role","_key":"117746","_from":"69219","_to":"69216"} +{"$label":"ACTS_IN","name":"Sunny the Scorpion","type":"Role","_key":"117745","_from":"69218","_to":"69216"} +{"$label":"ACTS_IN","name":"Yu Shu","type":"Role","_key":"117743","_from":"69217","_to":"69216"} +{"$label":"ACTS_IN","name":"American Statesman","type":"Role","_key":"117760","_from":"69225","_to":"69222"} +{"$label":"ACTS_IN","name":"Hannah","type":"Role","_key":"117759","_from":"69224","_to":"69222"} +{"$label":"ACTS_IN","name":"Safehouse Leader","type":"Role","_key":"117758","_from":"69223","_to":"69222"} +{"$label":"ACTS_IN","name":"Simon Ting (as Wan Fat)","type":"Role","_key":"117770","_from":"69232","_to":"69226"} +{"$label":"ACTS_IN","name":"Captain Ko (as Blackie Ko)","type":"Role","_key":"117769","_from":"69231","_to":"69226"} +{"$label":"ACTS_IN","name":"Psychologist (as Phua Leng Leng)","type":"Role","_key":"117768","_from":"69230","_to":"69226"} +{"$label":"ACTS_IN","name":"Wong's wife (as Au-Yeung Pui Shan)","type":"Role","_key":"117767","_from":"69229","_to":"69226"} +{"$label":"ACTS_IN","name":"Wong","type":"Role","_key":"117766","_from":"69228","_to":"69226"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"117765","_from":"69227","_to":"69226"} +{"$label":"DIRECTED","_key":"117790","_from":"69238","_to":"69234"} +{"$label":"DIRECTED","_key":"117789","_from":"69237","_to":"69234"} +{"$label":"ACTS_IN","name":"Luk Ta Yau","type":"Role","_key":"117784","_from":"69236","_to":"69234"} +{"$label":"ACTS_IN","name":"Kiddo","type":"Role","_key":"117775","_from":"69235","_to":"69234"} +{"$label":"ACTS_IN","name":"Rock Lee","type":"Role","_key":"117794","_from":"69241","_to":"69239"} +{"$label":"DIRECTED","_key":"117791","_from":"69240","_to":"69239"} +{"$label":"ACTS_IN","name":"T.J. Krupp (as Russel Harper)","type":"Role","_key":"117797","_from":"69244","_to":"69242"} +{"$label":"ACTS_IN","name":"Gregory Alan 'Grover' Beindorf","type":"Role","_key":"117796","_from":"69243","_to":"69242"} +{"$label":"DIRECTED","_key":"117817","_from":"69257","_to":"69246"} +{"$label":"ACTS_IN","name":"Barton's Bud #2","type":"Role","_key":"117816","_from":"69256","_to":"69246"} +{"$label":"ACTS_IN","name":"Barton's Bud #1","type":"Role","_key":"117815","_from":"69255","_to":"69246"} +{"$label":"ACTS_IN","name":"Barton's Girlfriend","type":"Role","_key":"117814","_from":"69254","_to":"69246"} +{"$label":"ACTS_IN","name":"Barton","type":"Role","_key":"117813","_from":"69253","_to":"69246"} +{"$label":"ACTS_IN","name":"Real Estate Man","type":"Role","_key":"117812","_from":"69252","_to":"69246"} +{"$label":"ACTS_IN","name":"Real Estate Woman","type":"Role","_key":"117811","_from":"69251","_to":"69246"} +{"$label":"ACTS_IN","name":"Unseen Woman","type":"Role","_key":"117810","_from":"69250","_to":"69246"} +{"$label":"ACTS_IN","name":"Revised Space Station Woman","type":"Role","_key":"117809","_from":"69249","_to":"69246"} +{"$label":"ACTS_IN","name":"Brad","type":"Role","_key":"117808","_from":"69248","_to":"69246"} +{"$label":"ACTS_IN","name":"Space Station Woman","type":"Role","_key":"117803","_from":"69247","_to":"69246"} +{"$label":"ACTS_IN","name":"Departing party girl","type":"Role","_key":"117833","_from":"69268","_to":"69258"} +{"$label":"ACTS_IN","name":"Hot chick at basketball court","type":"Role","_key":"117832","_from":"69267","_to":"69258"} +{"$label":"ACTS_IN","name":"Mike the bartender","type":"Role","_key":"117831","_from":"69266","_to":"69258"} +{"$label":"ACTS_IN","name":"Oblivious mover","type":"Role","_key":"117830","_from":"69265","_to":"69258"} +{"$label":"ACTS_IN","name":"Leering mover","type":"Role","_key":"117829","_from":"69264","_to":"69258"} +{"$label":"ACTS_IN","name":"Summons Server","type":"Role","_key":"117828","_from":"69263","_to":"69258"} +{"$label":"ACTS_IN","name":"Andrea","type":"Role","_key":"117827","_from":"69262","_to":"69258"} +{"$label":"ACTS_IN","name":"Jake Elovitch","type":"Role","_key":"117823","_from":"69261","_to":"69258"} +{"$label":"ACTS_IN","name":"Dave Segel","type":"Role","_key":"117819","_from":"69260","_to":"69258"} +{"$label":"DIRECTED","_key":"117818","_from":"69259","_to":"69258"} +{"$label":"ACTS_IN","name":"Bob Funk","type":"Role","_key":"120433","_from":"69261","_to":"70751"} +{"$label":"DIRECTED","_key":"117838","_from":"69273","_to":"69269"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"117837","_from":"69272","_to":"69269"} +{"$label":"ACTS_IN","name":"?","type":"Role","_key":"117836","_from":"69271","_to":"69269"} +{"$label":"ACTS_IN","name":"Thousand-Faces (as Kong Kam)","type":"Role","_key":"117835","_from":"69270","_to":"69269"} +{"$label":"DIRECTED","_key":"117840","_from":"69277","_to":"69275"} +{"$label":"DIRECTED","_key":"117839","_from":"69276","_to":"69275"} +{"$label":"ACTS_IN","name":"Ffion","type":"Role","_key":"117859","_from":"69288","_to":"69278"} +{"$label":"ACTS_IN","name":"Raphaella's Handmaiden","type":"Role","_key":"117858","_from":"69287","_to":"69278"} +{"$label":"ACTS_IN","name":"Turag","type":"Role","_key":"117857","_from":"69286","_to":"69278"} +{"$label":"ACTS_IN","name":"Nan","type":"Role","_key":"117855","_from":"69285","_to":"69278"} +{"$label":"ACTS_IN","name":"Vena","type":"Role","_key":"117854","_from":"69284","_to":"69278"} +{"$label":"ACTS_IN","name":"Ziko","type":"Role","_key":"117853","_from":"69283","_to":"69278"} +{"$label":"ACTS_IN","name":"Morna","type":"Role","_key":"117851","_from":"69282","_to":"69278"} +{"$label":"ACTS_IN","name":"Danu","type":"Role","_key":"117849","_from":"69281","_to":"69278"} +{"$label":"ACTS_IN","name":"Raphaella","type":"Role","_key":"117846","_from":"69280","_to":"69278"} +{"$label":"DIRECTED","_key":"117844","_from":"69279","_to":"69278"} +{"$label":"ACTS_IN","name":"Maria","type":"Role","_key":"117868","_from":"69292","_to":"69289"} +{"$label":"ACTS_IN","name":"Carla","type":"Role","_key":"117867","_from":"69291","_to":"69289"} +{"$label":"ACTS_IN","name":"Pilar","type":"Role","_key":"117861","_from":"69290","_to":"69289"} +{"$label":"ACTS_IN","name":"Yumiko","type":"Role","_key":"117871","_from":"69294","_to":"69293"} +{"$label":"ACTS_IN","name":"Paz","type":"Role","_key":"117879","_from":"69297","_to":"69295"} +{"$label":"ACTS_IN","name":"Saito","type":"Role","_key":"117878","_from":"69296","_to":"69295"} +{"$label":"DIRECTED","_key":"117889","_from":"69300","_to":"69298"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"117887","_from":"69299","_to":"69298"} +{"$label":"ACTS_IN","name":"tom","type":"Role","_key":"117896","_from":"69303","_to":"69302"} +{"$label":"ACTS_IN","name":"Girl in Van","type":"Role","_key":"117912","_from":"69313","_to":"69304"} +{"$label":"ACTS_IN","name":"Paint-covered House Owner","type":"Role","_key":"117911","_from":"69312","_to":"69304"} +{"$label":"ACTS_IN","name":"Woman in Bus Queue with fur wrap","type":"Role","_key":"117910","_from":"69311","_to":"69304"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"117908","_from":"69310","_to":"69304"} +{"$label":"ACTS_IN","name":"Tourist","type":"Role","_key":"117907","_from":"69309","_to":"69304"} +{"$label":"ACTS_IN","name":"Barman","type":"Role","_key":"117905","_from":"69308","_to":"69304"} +{"$label":"ACTS_IN","name":"Delivery Man with boxes","type":"Role","_key":"117901","_from":"69307","_to":"69304"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"117900","_from":"69306","_to":"69304"} +{"$label":"ACTS_IN","name":"Larger Workman","type":"Role","_key":"117898","_from":"69305","_to":"69304"} +{"$label":"DIRECTED","_key":"117913","_from":"69315","_to":"69314"} +{"$label":"DIRECTED","_key":"117915","_from":"69317","_to":"69316"} +{"$label":"ACTS_IN","name":"Michele","type":"Role","_key":"117930","_from":"69323","_to":"69318"} +{"$label":"ACTS_IN","name":"Billy James","type":"Role","_key":"117929","_from":"69322","_to":"69318"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"117928","_from":"69321","_to":"69318"} +{"$label":"ACTS_IN","name":"Steve Gerber","type":"Role","_key":"117924","_from":"69320","_to":"69318"} +{"$label":"ACTS_IN","name":"Jake Schist","type":"Role","_key":"117923","_from":"69319","_to":"69318"} +{"$label":"ACTS_IN","name":"Col. Robert Storey","type":"Role","_key":"117938","_from":"69326","_to":"69324"} +{"$label":"ACTS_IN","name":"Elsie Douglas","type":"Role","_key":"117935","_from":"69325","_to":"69324"} +{"$label":"ACTS_IN","name":"Miyo","type":"Role","_key":"117948","_from":"69330","_to":"69327"} +{"$label":"ACTS_IN","name":"Samuel 'Rocky' Douglas Jr.","type":"Role","_key":"117946","_from":"69329","_to":"69327"} +{"$label":"DIRECTED","_key":"117943","_from":"69328","_to":"69327"} +{"$label":"ACTS_IN","name":"Darby O'Gill","type":"Role","_key":"117955","_from":"69333","_to":"69332"} +{"$label":"DIRECTED","_key":"117958","_from":"69335","_to":"69334"} +{"$label":"DIRECTED","_key":"118521","_from":"69335","_to":"69682"} +{"$label":"DIRECTED","_key":"118519","_from":"69335","_to":"69681"} +{"$label":"DIRECTED","_key":"118518","_from":"69335","_to":"69680"} +{"$label":"DIRECTED","_key":"118517","_from":"69335","_to":"69679"} +{"$label":"DIRECTED","_key":"118511","_from":"69335","_to":"69673"} +{"$label":"DIRECTED","_key":"118508","_from":"69335","_to":"69672"} +{"$label":"DIRECTED","_key":"118493","_from":"69335","_to":"69660"} +{"$label":"DIRECTED","_key":"118492","_from":"69335","_to":"69659"} +{"$label":"DIRECTED","_key":"118491","_from":"69335","_to":"69658"} +{"$label":"DIRECTED","_key":"118458","_from":"69335","_to":"69643"} +{"$label":"DIRECTED","_key":"118457","_from":"69335","_to":"69641"} +{"$label":"DIRECTED","_key":"118449","_from":"69335","_to":"69634"} +{"$label":"DIRECTED","_key":"118443","_from":"69335","_to":"69631"} +{"$label":"DIRECTED","_key":"118433","_from":"69335","_to":"69626"} +{"$label":"DIRECTED","_key":"118277","_from":"69335","_to":"69523"} +{"$label":"DIRECTED","_key":"118273","_from":"69335","_to":"69522"} +{"$label":"DIRECTED","_key":"118272","_from":"69335","_to":"69521"} +{"$label":"DIRECTED","_key":"118271","_from":"69335","_to":"69520"} +{"$label":"DIRECTED","_key":"118270","_from":"69335","_to":"69519"} +{"$label":"DIRECTED","_key":"118210","_from":"69335","_to":"69482"} +{"$label":"DIRECTED","_key":"118124","_from":"69335","_to":"69423"} +{"$label":"DIRECTED","_key":"118117","_from":"69335","_to":"69418"} +{"$label":"DIRECTED","_key":"118115","_from":"69335","_to":"69416"} +{"$label":"ACTS_IN","name":"Captain Neweyes","type":"Role","_key":"117961","_from":"69338","_to":"69337"} +{"$label":"ACTS_IN","name":"Joanna","type":"Role","_key":"117974","_from":"69346","_to":"69342"} +{"$label":"ACTS_IN","name":"Lehua Kawena","type":"Role","_key":"117973","_from":"69345","_to":"69342"} +{"$label":"ACTS_IN","name":"Pua","type":"Role","_key":"117972","_from":"69344","_to":"69342"} +{"$label":"ACTS_IN","name":"Jan Kohana","type":"Role","_key":"117971","_from":"69343","_to":"69342"} +{"$label":"ACTS_IN","name":"Meryl","type":"Role","_key":"117981","_from":"69353","_to":"69347"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"117980","_from":"69352","_to":"69347"} +{"$label":"ACTS_IN","name":"Aurore","type":"Role","_key":"117979","_from":"69351","_to":"69347"} +{"$label":"ACTS_IN","name":"Camel","type":"Role","_key":"117978","_from":"69350","_to":"69347"} +{"$label":"ACTS_IN","name":"Herv\u00e9","type":"Role","_key":"117977","_from":"69349","_to":"69347"} +{"$label":"DIRECTED","_key":"117976","_from":"69348","_to":"69347"} +{"$label":"ACTS_IN","name":"Teo #2","type":"Role","_key":"117990","_from":"69355","_to":"69354"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"117998","_from":"69360","_to":"69356"} +{"$label":"ACTS_IN","name":"Jess","type":"Role","_key":"117997","_from":"69359","_to":"69356"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"117994","_from":"69358","_to":"69356"} +{"$label":"ACTS_IN","name":"Eric Bishop","type":"Role","_key":"117993","_from":"69357","_to":"69356"} +{"$label":"DIRECTED","_key":"118019","_from":"69372","_to":"69363"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"118018","_from":"69371","_to":"69363"} +{"$label":"ACTS_IN","name":"Racetrack speaker","type":"Role","_key":"118017","_from":"69370","_to":"69363"} +{"$label":"ACTS_IN","name":"Enkefru Stengelf\u00f8hn-Glad","type":"Role","_key":"118016","_from":"69369","_to":"69363"} +{"$label":"ACTS_IN","name":"TV-reporter","type":"Role","_key":"118015","_from":"69368","_to":"69363"} +{"$label":"ACTS_IN","name":"Emanuel Desperados","type":"Role","_key":"118013","_from":"69367","_to":"69363"} +{"$label":"ACTS_IN","name":"Jostein Kroksleiven","type":"Role","_key":"118012","_from":"69366","_to":"69363"} +{"$label":"ACTS_IN","name":"Ludvig","type":"Role","_key":"118011","_from":"69365","_to":"69363"} +{"$label":"ACTS_IN","name":"Reodor Felgen","type":"Role","_key":"118009","_from":"69364","_to":"69363"} +{"$label":"ACTS_IN","name":"Shaman","type":"Role","_key":"118024","_from":"69379","_to":"69374"} +{"$label":"ACTS_IN","name":"Husband","type":"Role","_key":"118023","_from":"69378","_to":"69374"} +{"$label":"ACTS_IN","name":"Gregory","type":"Role","_key":"118022","_from":"69377","_to":"69374"} +{"$label":"ACTS_IN","name":"Mariya","type":"Role","_key":"118021","_from":"69376","_to":"69374"} +{"$label":"DIRECTED","_key":"118020","_from":"69375","_to":"69374"} +{"$label":"ACTS_IN","name":"Molly Jorgenson","type":"Role","_key":"118028","_from":"69381","_to":"69380"} +{"$label":"ACTS_IN","name":"Flok","type":"Role","_key":"118037","_from":"69384","_to":"69382"} +{"$label":"ACTS_IN","name":"Ta","type":"Role","_key":"118035","_from":"69383","_to":"69382"} +{"$label":"ACTS_IN","name":"Le guide Paul Gauguin","type":"Role","_key":"118056","_from":"69391","_to":"69385"} +{"$label":"ACTS_IN","name":"Fernande","type":"Role","_key":"118055","_from":"69390","_to":"69385"} +{"$label":"ACTS_IN","name":"Sulku","type":"Role","_key":"118052","_from":"69389","_to":"69385"} +{"$label":"ACTS_IN","name":"Luc","type":"Role","_key":"118047","_from":"69388","_to":"69385"} +{"$label":"ACTS_IN","name":"Sulki","type":"Role","_key":"118044","_from":"69387","_to":"69385"} +{"$label":"DIRECTED","_key":"118039","_from":"69386","_to":"69385"} +{"$label":"ACTS_IN","name":"Lizzie","type":"Role","_key":"118062","_from":"69394","_to":"69393"} +{"$label":"ACTS_IN","name":"Lt. Gomez","type":"Role","_key":"118076","_from":"69397","_to":"69396"} +{"$label":"DIRECTED","_key":"118088","_from":"69405","_to":"69398"} +{"$label":"ACTS_IN","name":"Lara's Father","type":"Role","_key":"118087","_from":"69404","_to":"69398"} +{"$label":"ACTS_IN","name":"Jax","type":"Role","_key":"118086","_from":"69403","_to":"69398"} +{"$label":"ACTS_IN","name":"Winston","type":"Role","_key":"118085","_from":"69402","_to":"69398"} +{"$label":"ACTS_IN","name":"Unknown","type":"Role","_key":"118084","_from":"69401","_to":"69398"} +{"$label":"ACTS_IN","name":"Uncle Errol","type":"Role","_key":"118083","_from":"69400","_to":"69398"} +{"$label":"ACTS_IN","name":"Lara Croft","type":"Role","_key":"118082","_from":"69399","_to":"69398"} +{"$label":"ACTS_IN","name":"Sohn","type":"Role","_key":"118096","_from":"69413","_to":"69406"} +{"$label":"ACTS_IN","name":"Mutter (voice)","type":"Role","_key":"118095","_from":"69412","_to":"69406"} +{"$label":"ACTS_IN","name":"Mutter","type":"Role","_key":"118094","_from":"69411","_to":"69406"} +{"$label":"ACTS_IN","name":"Tochter (voice)","type":"Role","_key":"118093","_from":"69410","_to":"69406"} +{"$label":"ACTS_IN","name":"Tochter","type":"Role","_key":"118092","_from":"69409","_to":"69406"} +{"$label":"ACTS_IN","name":"Off-Text (voice)","type":"Role","_key":"118091","_from":"69408","_to":"69406"} +{"$label":"DIRECTED","_key":"118089","_from":"69407","_to":"69406"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"118116","_from":"69417","_to":"69416"} +{"$label":"ACTS_IN","name":"Mr. Beltinski","type":"Role","_key":"118123","_from":"69422","_to":"69418"} +{"$label":"ACTS_IN","name":"Mrs. Beltinska","type":"Role","_key":"118121","_from":"69421","_to":"69418"} +{"$label":"ACTS_IN","name":"Mrs. Loubalova","type":"Role","_key":"118119","_from":"69420","_to":"69418"} +{"$label":"ACTS_IN","name":"Mr. Pivoine","type":"Role","_key":"118118","_from":"69419","_to":"69418"} +{"$label":"ACTS_IN","name":"Alzbetka\u00b4s Father","type":"Role","_key":"118214","_from":"69422","_to":"69482"} +{"$label":"ACTS_IN","name":"Faust","type":"Role","_key":"118125","_from":"69424","_to":"69423"} +{"$label":"ACTS_IN","name":"Narrator (voice)","type":"Role","_key":"118516","_from":"69424","_to":"69679"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"118131","_from":"69429","_to":"69425"} +{"$label":"ACTS_IN","name":"Lotta","type":"Role","_key":"118130","_from":"69428","_to":"69425"} +{"$label":"ACTS_IN","name":"Rudolf (morfar)","type":"Role","_key":"118129","_from":"69427","_to":"69425"} +{"$label":"ACTS_IN","name":"Gun Backlund","type":"Role","_key":"118128","_from":"69426","_to":"69425"} +{"$label":"ACTS_IN","name":"Gun Backlund","type":"Role","_key":"118134","_from":"69426","_to":"69430"} +{"$label":"ACTS_IN","name":"Hamb\u00f6rjes fru","type":"Role","_key":"118142","_from":"69439","_to":"69430"} +{"$label":"ACTS_IN","name":"Hamb\u00f6rje","type":"Role","_key":"118141","_from":"69438","_to":"69430"} +{"$label":"ACTS_IN","name":"Pia","type":"Role","_key":"118140","_from":"69437","_to":"69430"} +{"$label":"ACTS_IN","name":"Johan","type":"Role","_key":"118139","_from":"69436","_to":"69430"} +{"$label":"ACTS_IN","name":"Peppe","type":"Role","_key":"118138","_from":"69435","_to":"69430"} +{"$label":"ACTS_IN","name":"Lotta","type":"Role","_key":"118137","_from":"69434","_to":"69430"} +{"$label":"ACTS_IN","name":"Jens","type":"Role","_key":"118136","_from":"69433","_to":"69430"} +{"$label":"ACTS_IN","name":"Magda","type":"Role","_key":"118135","_from":"69432","_to":"69430"} +{"$label":"DIRECTED","_key":"118132","_from":"69431","_to":"69430"} +{"$label":"DIRECTED","_key":"118143","_from":"69441","_to":"69440"} +{"$label":"ACTS_IN","name":"Brady Owens","type":"Role","_key":"118157","_from":"69447","_to":"69443"} +{"$label":"ACTS_IN","name":"JT Hawkins","type":"Role","_key":"118156","_from":"69446","_to":"69443"} +{"$label":"ACTS_IN","name":"Brooke Taylor","type":"Role","_key":"118155","_from":"69445","_to":"69443"} +{"$label":"ACTS_IN","name":"Matt Prater","type":"Role","_key":"118153","_from":"69444","_to":"69443"} +{"$label":"ACTS_IN","name":"Mrs. Ada Lapford","type":"Role","_key":"118184","_from":"69455","_to":"69451"} +{"$label":"ACTS_IN","name":"Tina Lapford","type":"Role","_key":"118183","_from":"69454","_to":"69451"} +{"$label":"ACTS_IN","name":"Graham","type":"Role","_key":"118181","_from":"69453","_to":"69451"} +{"$label":"ACTS_IN","name":"Billy Rice","type":"Role","_key":"118178","_from":"69452","_to":"69451"} +{"$label":"DIRECTED","_key":"118196","_from":"69466","_to":"69456"} +{"$label":"ACTS_IN","name":"Miss Wexley","type":"Role","_key":"118195","_from":"69465","_to":"69456"} +{"$label":"ACTS_IN","name":"James William Mayflower","type":"Role","_key":"118194","_from":"69464","_to":"69456"} +{"$label":"ACTS_IN","name":"Detective shooting Tear Gas","type":"Role","_key":"118193","_from":"69463","_to":"69456"} +{"$label":"ACTS_IN","name":"Miss Wiley, ex-maid","type":"Role","_key":"118192","_from":"69462","_to":"69456"} +{"$label":"ACTS_IN","name":"Harry - Hotel Room Waiter","type":"Role","_key":"118191","_from":"69461","_to":"69456"} +{"$label":"ACTS_IN","name":"Mary - Secretary \/ Party Girl","type":"Role","_key":"118190","_from":"69460","_to":"69456"} +{"$label":"ACTS_IN","name":"Mr. Moon","type":"Role","_key":"118189","_from":"69459","_to":"69456"} +{"$label":"ACTS_IN","name":"Billie Williams","type":"Role","_key":"118188","_from":"69458","_to":"69456"} +{"$label":"ACTS_IN","name":"Marc","type":"Role","_key":"118186","_from":"69457","_to":"69456"} +{"$label":"DIRECTED","_key":"118199","_from":"69470","_to":"69467"} +{"$label":"ACTS_IN","name":"Tommy Myers","type":"Role","_key":"118198","_from":"69469","_to":"69467"} +{"$label":"ACTS_IN","name":"Holly","type":"Role","_key":"118197","_from":"69468","_to":"69467"} +{"$label":"DIRECTED","_key":"118206","_from":"69476","_to":"69472"} +{"$label":"ACTS_IN","name":"Bronk Stinson","type":"Role","_key":"118205","_from":"69475","_to":"69472"} +{"$label":"ACTS_IN","name":"Eddie","type":"Role","_key":"118204","_from":"69474","_to":"69472"} +{"$label":"ACTS_IN","name":"Nurse St. Cloud","type":"Role","_key":"118201","_from":"69473","_to":"69472"} +{"$label":"DIRECTED","_key":"118253","_from":"69476","_to":"69512"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118209","_from":"69480","_to":"69477"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"118208","_from":"69479","_to":"69477"} +{"$label":"ACTS_IN","name":"Blue Man","type":"Role","_key":"118207","_from":"69478","_to":"69477"} +{"$label":"ACTS_IN","name":"Radio presenter (voice)","type":"Role","_key":"118228","_from":"69498","_to":"69482"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"118227","_from":"69497","_to":"69482"} +{"$label":"ACTS_IN","name":"Plainclothes policeman","type":"Role","_key":"118226","_from":"69496","_to":"69482"} +{"$label":"ACTS_IN","name":"Plainclothes policeman","type":"Role","_key":"118225","_from":"69495","_to":"69482"} +{"$label":"ACTS_IN","name":"Uniformed policeman","type":"Role","_key":"118224","_from":"69494","_to":"69482"} +{"$label":"ACTS_IN","name":"Karel's co-worker","type":"Role","_key":"118223","_from":"69493","_to":"69482"} +{"$label":"ACTS_IN","name":"Young postman","type":"Role","_key":"118222","_from":"69492","_to":"69482"} +{"$label":"ACTS_IN","name":"Bulankova, the social worker","type":"Role","_key":"118220","_from":"69491","_to":"69482"} +{"$label":"ACTS_IN","name":"Gynaecologist","type":"Role","_key":"118219","_from":"69490","_to":"69482"} +{"$label":"ACTS_IN","name":"Mladek, the postman","type":"Role","_key":"118218","_from":"69489","_to":"69482"} +{"$label":"ACTS_IN","name":"Mr. Zlabek","type":"Role","_key":"118217","_from":"69488","_to":"69482"} +{"$label":"ACTS_IN","name":"Pani spravcova (mrs. caretaker)","type":"Role","_key":"118216","_from":"69487","_to":"69482"} +{"$label":"ACTS_IN","name":"Alzbetka","type":"Role","_key":"118215","_from":"69486","_to":"69482"} +{"$label":"ACTS_IN","name":"Alzbetka\u00b4s Mother","type":"Role","_key":"118213","_from":"69485","_to":"69482"} +{"$label":"ACTS_IN","name":"Karel","type":"Role","_key":"118212","_from":"69484","_to":"69482"} +{"$label":"ACTS_IN","name":"Bozena","type":"Role","_key":"118211","_from":"69483","_to":"69482"} +{"$label":"DIRECTED","_key":"118244","_from":"69505","_to":"69500"} +{"$label":"ACTS_IN","name":"Dorry","type":"Role","_key":"118243","_from":"69504","_to":"69500"} +{"$label":"ACTS_IN","name":"Chrissy","type":"Role","_key":"118242","_from":"69503","_to":"69500"} +{"$label":"ACTS_IN","name":"Louise","type":"Role","_key":"118239","_from":"69502","_to":"69500"} +{"$label":"ACTS_IN","name":"Theresa","type":"Role","_key":"118238","_from":"69501","_to":"69500"} +{"$label":"ACTS_IN","name":"Guitar, Backing Vocals","type":"Role","_key":"118251","_from":"69511","_to":"69506"} +{"$label":"ACTS_IN","name":"Guitar","type":"Role","_key":"118250","_from":"69510","_to":"69506"} +{"$label":"ACTS_IN","name":"Cello","type":"Role","_key":"118249","_from":"69509","_to":"69506"} +{"$label":"ACTS_IN","name":"Drums, Backing Vocals, Bass","type":"Role","_key":"118247","_from":"69508","_to":"69506"} +{"$label":"ACTS_IN","name":"Bass, Accordion, Guitar","type":"Role","_key":"118246","_from":"69507","_to":"69506"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"118255","_from":"69516","_to":"69515"} +{"$label":"DIRECTED","_key":"118269","_from":"69518","_to":"69517"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"118276","_from":"69526","_to":"69523"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"118275","_from":"69525","_to":"69523"} +{"$label":"ACTS_IN","name":"Voice","type":"Role","_key":"118274","_from":"69524","_to":"69523"} +{"$label":"ACTS_IN","name":"Le tailleur","type":"Role","_key":"118291","_from":"69533","_to":"69527"} +{"$label":"ACTS_IN","name":"Julia","type":"Role","_key":"118288","_from":"69532","_to":"69527"} +{"$label":"ACTS_IN","name":"Samuel","type":"Role","_key":"118287","_from":"69531","_to":"69527"} +{"$label":"ACTS_IN","name":"Evelyne","type":"Role","_key":"118286","_from":"69530","_to":"69527"} +{"$label":"ACTS_IN","name":"Max","type":"Role","_key":"118283","_from":"69529","_to":"69527"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"118281","_from":"69528","_to":"69527"} +{"$label":"ACTS_IN","name":"Reverend Mike","type":"Role","_key":"118297","_from":"69536","_to":"69534"} +{"$label":"ACTS_IN","name":"Cindy Sondheim","type":"Role","_key":"118293","_from":"69535","_to":"69534"} +{"$label":"ACTS_IN","name":"Burt Wilson","type":"Role","_key":"119903","_from":"69536","_to":"70418"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118304","_from":"69542","_to":"69537"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118303","_from":"69541","_to":"69537"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118302","_from":"69540","_to":"69537"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118301","_from":"69539","_to":"69537"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118300","_from":"69538","_to":"69537"} +{"$label":"ACTS_IN","name":"Succubus","type":"Role","_key":"118309","_from":"69545","_to":"69543"} +{"$label":"ACTS_IN","name":"Sister Sarah Ryan","type":"Role","_key":"118308","_from":"69544","_to":"69543"} +{"$label":"ACTS_IN","name":"Dr. Redmond","type":"Role","_key":"119775","_from":"69544","_to":"70331"} +{"$label":"ACTS_IN","name":"Tragedian","type":"Role","_key":"118317","_from":"69551","_to":"69547"} +{"$label":"ACTS_IN","name":"Tragedian","type":"Role","_key":"118316","_from":"69550","_to":"69547"} +{"$label":"ACTS_IN","name":"Tragedian","type":"Role","_key":"118315","_from":"69549","_to":"69547"} +{"$label":"DIRECTED","_key":"118311","_from":"69548","_to":"69547"} +{"$label":"ACTS_IN","name":"Lilian","type":"Role","_key":"118343","_from":"69568","_to":"69559"} +{"$label":"ACTS_IN","name":"Vanda Sorell","type":"Role","_key":"118342","_from":"69567","_to":"69559"} +{"$label":"ACTS_IN","name":"George Sorell","type":"Role","_key":"118341","_from":"69566","_to":"69559"} +{"$label":"ACTS_IN","name":"Hagen","type":"Role","_key":"118340","_from":"69565","_to":"69559"} +{"$label":"ACTS_IN","name":"Lady Durward","type":"Role","_key":"118339","_from":"69564","_to":"69559"} +{"$label":"ACTS_IN","name":"Sara Durward","type":"Role","_key":"118337","_from":"69563","_to":"69559"} +{"$label":"ACTS_IN","name":"Dr. Marcus","type":"Role","_key":"118335","_from":"69562","_to":"69559"} +{"$label":"ACTS_IN","name":"Captain Kronos","type":"Role","_key":"118332","_from":"69561","_to":"69559"} +{"$label":"DIRECTED","_key":"118331","_from":"69560","_to":"69559"} +{"$label":"ACTS_IN","name":"Nell McLaughlin","type":"Role","_key":"118349","_from":"69574","_to":"69573"} +{"$label":"ACTS_IN","name":"King's Chamberlain","type":"Role","_key":"118370","_from":"69591","_to":"69576"} +{"$label":"ACTS_IN","name":"Judge of the Court","type":"Role","_key":"118369","_from":"69590","_to":"69576"} +{"$label":"ACTS_IN","name":"Sister Gudule","type":"Role","_key":"118368","_from":"69589","_to":"69576"} +{"$label":"ACTS_IN","name":"Josephus","type":"Role","_key":"118367","_from":"69588","_to":"69576"} +{"$label":"ACTS_IN","name":"Charmolu's Assistant","type":"Role","_key":"118366","_from":"69587","_to":"69576"} +{"$label":"ACTS_IN","name":"Charmolu","type":"Role","_key":"118365","_from":"69586","_to":"69576"} +{"$label":"ACTS_IN","name":"Marie","type":"Role","_key":"118364","_from":"69585","_to":"69576"} +{"$label":"ACTS_IN","name":"Mons. Le Torteru","type":"Role","_key":"118363","_from":"69584","_to":"69576"} +{"$label":"ACTS_IN","name":"Gringoire","type":"Role","_key":"118362","_from":"69583","_to":"69576"} +{"$label":"ACTS_IN","name":"Mons. Neufchatel","type":"Role","_key":"118361","_from":"69582","_to":"69576"} +{"$label":"ACTS_IN","name":"Clopin","type":"Role","_key":"118359","_from":"69581","_to":"69576"} +{"$label":"ACTS_IN","name":"Fleur de Lys","type":"Role","_key":"118356","_from":"69580","_to":"69576"} +{"$label":"ACTS_IN","name":"Madame de Condelaurier","type":"Role","_key":"118355","_from":"69579","_to":"69576"} +{"$label":"ACTS_IN","name":"Esmeralda","type":"Role","_key":"118353","_from":"69578","_to":"69576"} +{"$label":"DIRECTED","_key":"118350","_from":"69577","_to":"69576"} +{"$label":"ACTS_IN","name":"Queen Eleanor's Guard","type":"Role","_key":"118380","_from":"69595","_to":"69592"} +{"$label":"ACTS_IN","name":"Alais","type":"Role","_key":"118378","_from":"69594","_to":"69592"} +{"$label":"DIRECTED","_key":"118371","_from":"69593","_to":"69592"} +{"$label":"DIRECTED","_key":"118382","_from":"69597","_to":"69596"} +{"$label":"ACTS_IN","name":"Hildy","type":"Role","_key":"118395","_from":"69603","_to":"69599"} +{"$label":"ACTS_IN","name":"Gus","type":"Role","_key":"118394","_from":"69602","_to":"69599"} +{"$label":"ACTS_IN","name":"Nell McLaughlin","type":"Role","_key":"118393","_from":"69601","_to":"69599"} +{"$label":"DIRECTED","_key":"118390","_from":"69600","_to":"69599"} +{"$label":"ACTS_IN","name":"Pauline York","type":"Role","_key":"121644","_from":"69601","_to":"71463"} +{"$label":"ACTS_IN","name":"Daniel O'Keefe","type":"Role","_key":"120632","_from":"69602","_to":"70847"} +{"$label":"ACTS_IN","name":"Cpl. Neb Nugent","type":"Role","_key":"118405","_from":"69606","_to":"69604"} +{"$label":"ACTS_IN","name":"Elena Fairchild","type":"Role","_key":"118403","_from":"69605","_to":"69604"} +{"$label":"DIRECTED","_key":"118412","_from":"69610","_to":"69607"} +{"$label":"ACTS_IN","name":"Saidi","type":"Role","_key":"118411","_from":"69609","_to":"69607"} +{"$label":"ACTS_IN","name":"Tarzan","type":"Role","_key":"118406","_from":"69608","_to":"69607"} +{"$label":"ACTS_IN","name":"Dr. MacDonald","type":"Role","_key":"118426","_from":"69619","_to":"69611"} +{"$label":"ACTS_IN","name":"Dr. Matson","type":"Role","_key":"118424","_from":"69618","_to":"69611"} +{"$label":"ACTS_IN","name":"Sue","type":"Role","_key":"118423","_from":"69617","_to":"69611"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"118422","_from":"69616","_to":"69611"} +{"$label":"ACTS_IN","name":"Marla Rakubian","type":"Role","_key":"118421","_from":"69615","_to":"69611"} +{"$label":"ACTS_IN","name":"Stanley Philips","type":"Role","_key":"118419","_from":"69614","_to":"69611"} +{"$label":"ACTS_IN","name":"Mrs. Philips","type":"Role","_key":"118417","_from":"69613","_to":"69611"} +{"$label":"ACTS_IN","name":"Miss Foster","type":"Role","_key":"118416","_from":"69612","_to":"69611"} +{"$label":"DIRECTED","_key":"118429","_from":"69622","_to":"69620"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"118428","_from":"69621","_to":"69620"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120674","_from":"69621","_to":"70872"} +{"$label":"DIRECTED","_key":"118430","_from":"69625","_to":"69624"} +{"$label":"DIRECTED","_key":"118440","_from":"69625","_to":"69627"} +{"$label":"ACTS_IN","name":"Jenny Rooker","type":"Role","_key":"118438","_from":"69628","_to":"69627"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"118441","_from":"69632","_to":"69631"} +{"$label":"ACTS_IN","name":"Man in rubber coat","type":"Role","_key":"118448","_from":"69638","_to":"69634"} +{"$label":"ACTS_IN","name":"Boruvka","type":"Role","_key":"118447","_from":"69637","_to":"69634"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"118445","_from":"69636","_to":"69634"} +{"$label":"ACTS_IN","name":"Josef","type":"Role","_key":"118444","_from":"69635","_to":"69634"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"118459","_from":"69637","_to":"69643"} +{"$label":"DIRECTED","_key":"118450","_from":"69640","_to":"69639"} +{"$label":"ACTS_IN","name":"Farmer","type":"Role","_key":"118489","_from":"69656","_to":"69646"} +{"$label":"ACTS_IN","name":"Bridge Operator","type":"Role","_key":"118488","_from":"69655","_to":"69646"} +{"$label":"ACTS_IN","name":"Police Chief Markey","type":"Role","_key":"118487","_from":"69654","_to":"69646"} +{"$label":"ACTS_IN","name":"Surl","type":"Role","_key":"118486","_from":"69653","_to":"69646"} +{"$label":"ACTS_IN","name":"Helicopter Pilot","type":"Role","_key":"118485","_from":"69652","_to":"69646"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"118484","_from":"69651","_to":"69646"} +{"$label":"ACTS_IN","name":"Cindy Stanton","type":"Role","_key":"118483","_from":"69650","_to":"69646"} +{"$label":"ACTS_IN","name":"Dispatcher","type":"Role","_key":"118482","_from":"69649","_to":"69646"} +{"$label":"ACTS_IN","name":"Millie","type":"Role","_key":"118481","_from":"69648","_to":"69646"} +{"$label":"ACTS_IN","name":"Hanks","type":"Role","_key":"118479","_from":"69647","_to":"69646"} +{"$label":"ACTS_IN","name":"Himself (drummer) (as AC\/DC)","type":"Role","_key":"118503","_from":"69668","_to":"69663"} +{"$label":"ACTS_IN","name":"Himself (bassist) (as AC\/DC)","type":"Role","_key":"118502","_from":"69667","_to":"69663"} +{"$label":"ACTS_IN","name":"Himself (lead singer) (as AC\/DC)","type":"Role","_key":"118501","_from":"69666","_to":"69663"} +{"$label":"ACTS_IN","name":"Himself (rhythm guitarist) (as AC\/DC)","type":"Role","_key":"118500","_from":"69665","_to":"69663"} +{"$label":"ACTS_IN","name":"Himself (lead guitarist) (as AC\/DC)","type":"Role","_key":"118499","_from":"69664","_to":"69663"} +{"$label":"DIRECTED","_key":"118507","_from":"69671","_to":"69669"} +{"$label":"ACTS_IN","name":"Zarathustra","type":"Role","_key":"118505","_from":"69670","_to":"69669"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"118510","_from":"69675","_to":"69673"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"118509","_from":"69674","_to":"69673"} +{"$label":"DIRECTED","_key":"118515","_from":"69678","_to":"69676"} +{"$label":"ACTS_IN","name":"Shirts Jokum","type":"Role","_key":"118514","_from":"69677","_to":"69676"} +{"$label":"ACTS_IN","name":"Wes","type":"Role","_key":"120269","_from":"69677","_to":"70623"} +{"$label":"ACTS_IN","name":"Man","type":"Role","_key":"118520","_from":"69683","_to":"69682"} +{"$label":"ACTS_IN","name":"Rodrigo Borgia","type":"Role","_key":"118522","_from":"69686","_to":"69685"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118534","_from":"69690","_to":"69688"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118532","_from":"69689","_to":"69688"} +{"$label":"DIRECTED","_key":"118541","_from":"69697","_to":"69694"} +{"$label":"ACTS_IN","name":"\u0e2a\u0e27\u0e22","type":"Role","_key":"118540","_from":"69696","_to":"69694"} +{"$label":"ACTS_IN","name":"\u0e2a\u0e19\u0e34\u0e17","type":"Role","_key":"118539","_from":"69695","_to":"69694"} +{"$label":"ACTS_IN","name":"Mrs. Settigren","type":"Role","_key":"118550","_from":"69704","_to":"69700"} +{"$label":"ACTS_IN","name":"Annika Settigren","type":"Role","_key":"118547","_from":"69703","_to":"69700"} +{"$label":"ACTS_IN","name":"Tommy Settigren","type":"Role","_key":"118546","_from":"69702","_to":"69700"} +{"$label":"ACTS_IN","name":"Pippi Longstocking","type":"Role","_key":"118545","_from":"69701","_to":"69700"} +{"$label":"DIRECTED","_key":"118555","_from":"69708","_to":"69707"} +{"$label":"DIRECTED","_key":"118573","_from":"69720","_to":"69710"} +{"$label":"DIRECTED","_key":"118572","_from":"69719","_to":"69710"} +{"$label":"DIRECTED","_key":"118571","_from":"69718","_to":"69710"} +{"$label":"DIRECTED","_key":"118570","_from":"69717","_to":"69710"} +{"$label":"DIRECTED","_key":"118569","_from":"69716","_to":"69710"} +{"$label":"DIRECTED","_key":"118568","_from":"69715","_to":"69710"} +{"$label":"ACTS_IN","name":"Maintenance Chief","type":"Role","_key":"118567","_from":"69714","_to":"69710"} +{"$label":"ACTS_IN","name":"Blind Man (Mr Faith)","type":"Role","_key":"118566","_from":"69713","_to":"69710"} +{"$label":"ACTS_IN","name":"Security Guard Gary","type":"Role","_key":"118564","_from":"69712","_to":"69710"} +{"$label":"ACTS_IN","name":"Mildred","type":"Role","_key":"118562","_from":"69711","_to":"69710"} +{"$label":"DIRECTED","_key":"118577","_from":"69722","_to":"69721"} +{"$label":"ACTS_IN","name":"Sakura Iizuka","type":"Role","_key":"118580","_from":"69726","_to":"69723"} +{"$label":"ACTS_IN","name":"Hidekazu Morio","type":"Role","_key":"118579","_from":"69725","_to":"69723"} +{"$label":"ACTS_IN","name":"Kengo Fujimoto","type":"Role","_key":"118578","_from":"69724","_to":"69723"} +{"$label":"DIRECTED","_key":"118583","_from":"69728","_to":"69727"} +{"$label":"DIRECTED","_key":"118589","_from":"69731","_to":"69730"} +{"$label":"DIRECTED","_key":"118595","_from":"69735","_to":"69733"} +{"$label":"ACTS_IN","name":"Nina","type":"Role","_key":"118594","_from":"69734","_to":"69733"} +{"$label":"ACTS_IN","name":"Edith","type":"Role","_key":"118602","_from":"69738","_to":"69736"} +{"$label":"ACTS_IN","name":"Elvira Condomine","type":"Role","_key":"118598","_from":"69737","_to":"69736"} +{"$label":"ACTS_IN","name":"Karyn Torres","type":"Role","_key":"118606","_from":"69742","_to":"69739"} +{"$label":"ACTS_IN","name":"Joanna Villanueva","type":"Role","_key":"118605","_from":"69741","_to":"69739"} +{"$label":"ACTS_IN","name":"Ian Montes","type":"Role","_key":"118604","_from":"69740","_to":"69739"} +{"$label":"ACTS_IN","name":"Ralph","type":"Role","_key":"118609","_from":"69745","_to":"69743"} +{"$label":"ACTS_IN","name":"Tucker","type":"Role","_key":"118608","_from":"69744","_to":"69743"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119445","_from":"69744","_to":"70173"} +{"$label":"ACTS_IN","name":"Louis XVI","type":"Role","_key":"118618","_from":"69748","_to":"69747"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118627","_from":"69752","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118626","_from":"69751","_to":"69749"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118624","_from":"69750","_to":"69749"} +{"$label":"DIRECTED","_key":"118632","_from":"69754","_to":"69753"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"118644","_from":"69760","_to":"69757"} +{"$label":"ACTS_IN","name":"Fred","type":"Role","_key":"118643","_from":"69759","_to":"69757"} +{"$label":"ACTS_IN","name":"Danielle","type":"Role","_key":"118642","_from":"69758","_to":"69757"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"118660","_from":"69765","_to":"69764"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118664","_from":"69769","_to":"69767"} +{"$label":"DIRECTED","_key":"118663","_from":"69768","_to":"69767"} +{"$label":"ACTS_IN","name":"Kyle Lee Watson","type":"Role","_key":"118665","_from":"69771","_to":"69770"} +{"$label":"ACTS_IN","name":"Dr. Eve Bolinger","type":"Role","_key":"118682","_from":"69780","_to":"69773"} +{"$label":"ACTS_IN","name":"Ethel","type":"Role","_key":"118681","_from":"69779","_to":"69773"} +{"$label":"ACTS_IN","name":"LaVonda DuPree","type":"Role","_key":"118680","_from":"69778","_to":"69773"} +{"$label":"ACTS_IN","name":"Sara Kaufman","type":"Role","_key":"118679","_from":"69777","_to":"69773"} +{"$label":"ACTS_IN","name":"Odell Owens","type":"Role","_key":"118674","_from":"69776","_to":"69773"} +{"$label":"ACTS_IN","name":"Wardell 'Bubba' Owens","type":"Role","_key":"118672","_from":"69775","_to":"69773"} +{"$label":"ACTS_IN","name":"Ty Williamson","type":"Role","_key":"118670","_from":"69774","_to":"69773"} +{"$label":"ACTS_IN","name":"Gustave","type":"Role","_key":"118689","_from":"69789","_to":"69783"} +{"$label":"ACTS_IN","name":"Simone","type":"Role","_key":"118688","_from":"69788","_to":"69783"} +{"$label":"ACTS_IN","name":"Le prox\u00e9n\u00e8te","type":"Role","_key":"118687","_from":"69787","_to":"69783"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"118686","_from":"69786","_to":"69783"} +{"$label":"ACTS_IN","name":"L\u00e9a","type":"Role","_key":"118685","_from":"69785","_to":"69783"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"118684","_from":"69784","_to":"69783"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"118697","_from":"69797","_to":"69790"} +{"$label":"ACTS_IN","name":"Marion","type":"Role","_key":"118696","_from":"69796","_to":"69790"} +{"$label":"ACTS_IN","name":"Alex","type":"Role","_key":"118695","_from":"69795","_to":"69790"} +{"$label":"ACTS_IN","name":"Vincent","type":"Role","_key":"118693","_from":"69794","_to":"69790"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"118692","_from":"69793","_to":"69790"} +{"$label":"ACTS_IN","name":"Elodie","type":"Role","_key":"118691","_from":"69792","_to":"69790"} +{"$label":"DIRECTED","_key":"118690","_from":"69791","_to":"69790"} +{"$label":"ACTS_IN","name":"Sara Crewe","type":"Role","_key":"118702","_from":"69801","_to":"69800"} +{"$label":"DIRECTED","_key":"118724","_from":"69811","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118721","_from":"69810","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118720","_from":"69809","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118719","_from":"69808","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118718","_from":"69807","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118717","_from":"69806","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118716","_from":"69805","_to":"69803"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"118715","_from":"69804","_to":"69803"} +{"$label":"DIRECTED","_key":"118726","_from":"69814","_to":"69812"} +{"$label":"DIRECTED","_key":"118725","_from":"69813","_to":"69812"} +{"$label":"DIRECTED","_key":"118739","_from":"69822","_to":"69815"} +{"$label":"ACTS_IN","name":"Keyboards, Wurlitzer","type":"Role","_key":"118738","_from":"69821","_to":"69815"} +{"$label":"ACTS_IN","name":"Percussion, Drums","type":"Role","_key":"118737","_from":"69820","_to":"69815"} +{"$label":"ACTS_IN","name":"Drums, Percussion","type":"Role","_key":"118736","_from":"69819","_to":"69815"} +{"$label":"ACTS_IN","name":"Bass Guitar","type":"Role","_key":"118735","_from":"69818","_to":"69815"} +{"$label":"ACTS_IN","name":"Acoustic Guitar, Electric Guitar, Percussion Pads","type":"Role","_key":"118734","_from":"69817","_to":"69815"} +{"$label":"ACTS_IN","name":"Vocals, Acoustic Guitar","type":"Role","_key":"118733","_from":"69816","_to":"69815"} +{"$label":"DIRECTED","_key":"118742","_from":"69824","_to":"69823"} +{"$label":"DIRECTED","_key":"118747","_from":"69826","_to":"69825"} +{"$label":"DIRECTED","_key":"118748","_from":"69829","_to":"69828"} +{"$label":"ACTS_IN","name":"Maya","type":"Role","_key":"118759","_from":"69834","_to":"69832"} +{"$label":"ACTS_IN","name":"Ivy","type":"Role","_key":"118758","_from":"69833","_to":"69832"} +{"$label":"ACTS_IN","name":"Tony Cheeseburger","type":"Role","_key":"118773","_from":"69837","_to":"69835"} +{"$label":"ACTS_IN","name":"Marty (as Ed Walsh)","type":"Role","_key":"118766","_from":"69836","_to":"69835"} +{"$label":"ACTS_IN","name":"Philip Nosseross","type":"Role","_key":"118784","_from":"69839","_to":"69838"} +{"$label":"ACTS_IN","name":"Medium (as Fredrich Ledebur)","type":"Role","_key":"118792","_from":"69841","_to":"69840"} +{"$label":"ACTS_IN","name":"Little Yury","type":"Role","_key":"118794","_from":"69845","_to":"69843"} +{"$label":"DIRECTED","_key":"118793","_from":"69844","_to":"69843"} +{"$label":"ACTS_IN","name":"Latin Girl","type":"Role","_key":"118814","_from":"69850","_to":"69847"} +{"$label":"ACTS_IN","name":"Gang Leader","type":"Role","_key":"118813","_from":"69849","_to":"69847"} +{"$label":"ACTS_IN","name":"Billy Devereaux","type":"Role","_key":"118804","_from":"69848","_to":"69847"} +{"$label":"ACTS_IN","name":"Nancy Masterson","type":"Role","_key":"118846","_from":"69857","_to":"69856"} +{"$label":"ACTS_IN","name":"Chic Johnson","type":"Role","_key":"118859","_from":"69862","_to":"69860"} +{"$label":"ACTS_IN","name":"Ole Olsen","type":"Role","_key":"118858","_from":"69861","_to":"69860"} +{"$label":"ACTS_IN","name":"Christina 'Mom' Gehrig","type":"Role","_key":"118880","_from":"69868","_to":"69866"} +{"$label":"ACTS_IN","name":"Babe Ruth","type":"Role","_key":"118877","_from":"69867","_to":"69866"} +{"$label":"DIRECTED","_key":"118889","_from":"69877","_to":"69869"} +{"$label":"DIRECTED","_key":"118888","_from":"69876","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118887","_from":"69875","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118886","_from":"69874","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118885","_from":"69873","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118884","_from":"69872","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118883","_from":"69871","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118882","_from":"69870","_to":"69869"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118912","_from":"69870","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118921","_from":"69871","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118913","_from":"69872","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118899","_from":"69872","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118915","_from":"69873","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118916","_from":"69874","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118923","_from":"69875","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118901","_from":"69875","_to":"69880"} +{"$label":"DIRECTED","_key":"118925","_from":"69876","_to":"69891"} +{"$label":"DIRECTED","_key":"118904","_from":"69876","_to":"69880"} +{"$label":"DIRECTED","_key":"118926","_from":"69877","_to":"69891"} +{"$label":"DIRECTED","_key":"118905","_from":"69877","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118903","_from":"69884","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118902","_from":"69883","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118900","_from":"69882","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118898","_from":"69881","_to":"69880"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118917","_from":"69881","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118922","_from":"69882","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118919","_from":"69883","_to":"69891"} +{"$label":"DIRECTED","_key":"118910","_from":"69890","_to":"69885"} +{"$label":"ACTS_IN","name":"Dualiba","type":"Role","_key":"118909","_from":"69889","_to":"69885"} +{"$label":"ACTS_IN","name":"Genifer","type":"Role","_key":"118908","_from":"69888","_to":"69885"} +{"$label":"ACTS_IN","name":"M\u00e3e de Pantanha","type":"Role","_key":"118907","_from":"69887","_to":"69885"} +{"$label":"ACTS_IN","name":"Z\u00e9 Ara\u00fajo \"Ojuara\"","type":"Role","_key":"118906","_from":"69886","_to":"69885"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118920","_from":"69894","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118918","_from":"69893","_to":"69891"} +{"$label":"ACTS_IN","name":"Rider","type":"Role","_key":"118914","_from":"69892","_to":"69891"} +{"$label":"DIRECTED","_key":"118940","_from":"69897","_to":"69895"} +{"$label":"ACTS_IN","name":"Young Mike 'The Brick' Donatelli","type":"Role","_key":"118939","_from":"69896","_to":"69895"} +{"$label":"ACTS_IN","name":"Janice Morales","type":"Role","_key":"118956","_from":"69914","_to":"69898"} +{"$label":"ACTS_IN","name":"Jonathon Webber","type":"Role","_key":"118955","_from":"69913","_to":"69898"} +{"$label":"ACTS_IN","name":"Salvador","type":"Role","_key":"118954","_from":"69912","_to":"69898"} +{"$label":"ACTS_IN","name":"Steve","type":"Role","_key":"118953","_from":"69911","_to":"69898"} +{"$label":"ACTS_IN","name":"Bianca Campos","type":"Role","_key":"118952","_from":"69910","_to":"69898"} +{"$label":"ACTS_IN","name":"Jimmy","type":"Role","_key":"118951","_from":"69909","_to":"69898"} +{"$label":"ACTS_IN","name":"AA Guest #2","type":"Role","_key":"118950","_from":"69908","_to":"69898"} +{"$label":"ACTS_IN","name":"Tiffany","type":"Role","_key":"118949","_from":"69907","_to":"69898"} +{"$label":"ACTS_IN","name":"Sara Campos","type":"Role","_key":"118948","_from":"69906","_to":"69898"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"118947","_from":"69905","_to":"69898"} +{"$label":"ACTS_IN","name":"Dennis","type":"Role","_key":"118946","_from":"69904","_to":"69898"} +{"$label":"ACTS_IN","name":"Wesley Henderson","type":"Role","_key":"118945","_from":"69903","_to":"69898"} +{"$label":"ACTS_IN","name":"Pablo Morales","type":"Role","_key":"118944","_from":"69902","_to":"69898"} +{"$label":"ACTS_IN","name":"Diego Campos","type":"Role","_key":"118943","_from":"69901","_to":"69898"} +{"$label":"ACTS_IN","name":"Don Rogelio","type":"Role","_key":"118942","_from":"69900","_to":"69898"} +{"$label":"DIRECTED","_key":"118941","_from":"69899","_to":"69898"} +{"$label":"DIRECTED","_key":"118960","_from":"69919","_to":"69915"} +{"$label":"ACTS_IN","name":"Slug","type":"Role","_key":"118959","_from":"69918","_to":"69915"} +{"$label":"ACTS_IN","name":"Ada","type":"Role","_key":"118958","_from":"69917","_to":"69915"} +{"$label":"ACTS_IN","name":"Moth","type":"Role","_key":"118957","_from":"69916","_to":"69915"} +{"$label":"ACTS_IN","name":"Radio Newsman","type":"Role","_key":"118992","_from":"69943","_to":"69921"} +{"$label":"ACTS_IN","name":"Taxi Driver","type":"Role","_key":"118991","_from":"69942","_to":"69921"} +{"$label":"ACTS_IN","name":"Vagrant","type":"Role","_key":"118989","_from":"69941","_to":"69921"} +{"$label":"ACTS_IN","name":"Bellboy","type":"Role","_key":"118988","_from":"69940","_to":"69921"} +{"$label":"ACTS_IN","name":"T.V. Anchor","type":"Role","_key":"118987","_from":"69939","_to":"69921"} +{"$label":"ACTS_IN","name":"T.V. Anchor","type":"Role","_key":"118986","_from":"69938","_to":"69921"} +{"$label":"ACTS_IN","name":"T.V. Anchor","type":"Role","_key":"118985","_from":"69937","_to":"69921"} +{"$label":"ACTS_IN","name":"Mail Boy","type":"Role","_key":"118983","_from":"69936","_to":"69921"} +{"$label":"ACTS_IN","name":"Trish","type":"Role","_key":"118982","_from":"69935","_to":"69921"} +{"$label":"ACTS_IN","name":"Paramedic","type":"Role","_key":"118981","_from":"69934","_to":"69921"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"118980","_from":"69933","_to":"69921"} +{"$label":"ACTS_IN","name":"Desk Clerk","type":"Role","_key":"118979","_from":"69932","_to":"69921"} +{"$label":"ACTS_IN","name":"Electronics Store Clerk","type":"Role","_key":"118978","_from":"69931","_to":"69921"} +{"$label":"ACTS_IN","name":"Bank Teller","type":"Role","_key":"118977","_from":"69930","_to":"69921"} +{"$label":"ACTS_IN","name":"Bank Manager","type":"Role","_key":"118976","_from":"69929","_to":"69921"} +{"$label":"ACTS_IN","name":"Tom Billings","type":"Role","_key":"118973","_from":"69928","_to":"69921"} +{"$label":"ACTS_IN","name":"Trevor Aguilar","type":"Role","_key":"118972","_from":"69927","_to":"69921"} +{"$label":"ACTS_IN","name":"Wolan","type":"Role","_key":"118969","_from":"69926","_to":"69921"} +{"$label":"ACTS_IN","name":"Sandra Wolf","type":"Role","_key":"118968","_from":"69925","_to":"69921"} +{"$label":"ACTS_IN","name":"Bridget Riordan","type":"Role","_key":"118966","_from":"69924","_to":"69921"} +{"$label":"DIRECTED","_key":"118963","_from":"69923","_to":"69921"} +{"$label":"DIRECTED","_key":"118962","_from":"69922","_to":"69921"} +{"$label":"ACTS_IN","name":"Zamira","type":"Role","_key":"118996","_from":"69946","_to":"69944"} +{"$label":"ACTS_IN","name":"Kiril","type":"Role","_key":"118995","_from":"69945","_to":"69944"} +{"$label":"ACTS_IN","name":"Ti Hau","type":"Role","_key":"119003","_from":"69950","_to":"69947"} +{"$label":"ACTS_IN","name":"Fang Shao Ching","type":"Role","_key":"119001","_from":"69949","_to":"69947"} +{"$label":"ACTS_IN","name":"Uncle Yu \/ Lei Kung","type":"Role","_key":"119000","_from":"69948","_to":"69947"} +{"$label":"DIRECTED","_key":"118999","_from":"69948","_to":"69947"} +{"$label":"ACTS_IN","name":"Dickie Diamond","type":"Role","_key":"119008","_from":"69953","_to":"69951"} +{"$label":"DIRECTED","_key":"119005","_from":"69952","_to":"69951"} +{"$label":"ACTS_IN","name":"Ippeston","type":"Role","_key":"119014","_from":"69957","_to":"69954"} +{"$label":"ACTS_IN","name":"Jane Wisconsky","type":"Role","_key":"119012","_from":"69956","_to":"69954"} +{"$label":"DIRECTED","_key":"119010","_from":"69955","_to":"69954"} +{"$label":"ACTS_IN","name":"Vendor","type":"Role","_key":"119023","_from":"69964","_to":"69958"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"119021","_from":"69963","_to":"69958"} +{"$label":"ACTS_IN","name":"Junior","type":"Role","_key":"119020","_from":"69962","_to":"69958"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"119019","_from":"69961","_to":"69958"} +{"$label":"ACTS_IN","name":"Marcia","type":"Role","_key":"119017","_from":"69960","_to":"69958"} +{"$label":"DIRECTED","_key":"119016","_from":"69959","_to":"69958"} +{"$label":"ACTS_IN","name":"Shona","type":"Role","_key":"119031","_from":"69973","_to":"69971"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"119029","_from":"69972","_to":"69971"} +{"$label":"ACTS_IN","name":"Capt. John Baldwin","type":"Role","_key":"119035","_from":"69975","_to":"69974"} +{"$label":"ACTS_IN","name":"Pete Krumbein","type":"Role","_key":"119044","_from":"69978","_to":"69977"} +{"$label":"ACTS_IN","name":"Tim Sharkey","type":"Role","_key":"119054","_from":"69981","_to":"69979"} +{"$label":"ACTS_IN","name":"Henry Shanway","type":"Role","_key":"119050","_from":"69980","_to":"69979"} +{"$label":"ACTS_IN","name":"Isa","type":"Role","_key":"119079","_from":"69994","_to":"69983"} +{"$label":"ACTS_IN","name":"Estefan\u00eda","type":"Role","_key":"119078","_from":"69993","_to":"69983"} +{"$label":"ACTS_IN","name":"Mae","type":"Role","_key":"119077","_from":"69992","_to":"69983"} +{"$label":"ACTS_IN","name":"Cindy","type":"Role","_key":"119076","_from":"69991","_to":"69983"} +{"$label":"ACTS_IN","name":"Giovanni","type":"Role","_key":"119074","_from":"69990","_to":"69983"} +{"$label":"ACTS_IN","name":"Alessandro","type":"Role","_key":"119073","_from":"69989","_to":"69983"} +{"$label":"ACTS_IN","name":"\u00cd\u00f1igo","type":"Role","_key":"119071","_from":"69988","_to":"69983"} +{"$label":"ACTS_IN","name":"Pedro","type":"Role","_key":"119070","_from":"69987","_to":"69983"} +{"$label":"ACTS_IN","name":"Hassan","type":"Role","_key":"119069","_from":"69986","_to":"69983"} +{"$label":"ACTS_IN","name":"Val\u00e9re","type":"Role","_key":"119064","_from":"69985","_to":"69983"} +{"$label":"DIRECTED","_key":"119063","_from":"69984","_to":"69983"} +{"$label":"DIRECTED","_key":"119083","_from":"69996","_to":"69995"} +{"$label":"ACTS_IN","name":"Queen Bee","type":"Role","_key":"119082","_from":"69997","_to":"69995"} +{"$label":"ACTS_IN","name":"Willie Green","type":"Role","_key":"119081","_from":"69996","_to":"69995"} +{"$label":"DIRECTED","_key":"119093","_from":"70001","_to":"69998"} +{"$label":"ACTS_IN","name":"Nacho Salazar","type":"Role","_key":"119091","_from":"70000","_to":"69998"} +{"$label":"ACTS_IN","name":"Boca","type":"Role","_key":"119090","_from":"69999","_to":"69998"} +{"$label":"DIRECTED","_key":"119101","_from":"70008","_to":"70002"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"119099","_from":"70007","_to":"70002"} +{"$label":"ACTS_IN","name":"Jurastuderende","type":"Role","_key":"119098","_from":"70006","_to":"70002"} +{"$label":"ACTS_IN","name":"Stylist","type":"Role","_key":"119096","_from":"70005","_to":"70002"} +{"$label":"ACTS_IN","name":"Torkild","type":"Role","_key":"119095","_from":"70004","_to":"70002"} +{"$label":"ACTS_IN","name":"Producer","type":"Role","_key":"119094","_from":"70003","_to":"70002"} +{"$label":"ACTS_IN","name":"Tina","type":"Role","_key":"121218","_from":"70007","_to":"71206"} +{"$label":"ACTS_IN","name":"Anja","type":"Role","_key":"121207","_from":"70007","_to":"71197"} +{"$label":"ACTS_IN","name":"Mariette Martin","type":"Role","_key":"119105","_from":"70010","_to":"70009"} +{"$label":"ACTS_IN","name":"Sir Michael Strickland","type":"Role","_key":"119121","_from":"70013","_to":"70011"} +{"$label":"ACTS_IN","name":"Aleksi","type":"Role","_key":"119118","_from":"70012","_to":"70011"} +{"$label":"DIRECTED","_key":"119123","_from":"70015","_to":"70014"} +{"$label":"ACTS_IN","name":"Dwarf","type":"Role","_key":"119134","_from":"70018","_to":"70017"} +{"$label":"ACTS_IN","name":"Helen Cooper","type":"Role","_key":"119139","_from":"70020","_to":"70019"} +{"$label":"ACTS_IN","name":"Pino Greco","type":"Role","_key":"119159","_from":"70027","_to":"70024"} +{"$label":"ACTS_IN","name":"Judge Gaetano Costa","type":"Role","_key":"119155","_from":"70026","_to":"70024"} +{"$label":"ACTS_IN","name":"Judge Antonino Caponnetto","type":"Role","_key":"119154","_from":"70025","_to":"70024"} +{"$label":"ACTS_IN","name":"Karja","type":"Role","_key":"119165","_from":"70029","_to":"70028"} +{"$label":"ACTS_IN","name":"Frank Wilson","type":"Role","_key":"119171","_from":"70031","_to":"70030"} +{"$label":"ACTS_IN","name":"Birdie","type":"Role","_key":"119183","_from":"70037","_to":"70033"} +{"$label":"ACTS_IN","name":"Lena","type":"Role","_key":"119182","_from":"70036","_to":"70033"} +{"$label":"ACTS_IN","name":"Mum","type":"Role","_key":"119181","_from":"70035","_to":"70033"} +{"$label":"DIRECTED","_key":"119179","_from":"70034","_to":"70033"} +{"$label":"ACTS_IN","name":"Imogene Clegg (serving wench)","type":"Role","_key":"119206","_from":"70043","_to":"70041"} +{"$label":"DIRECTED","_key":"119204","_from":"70042","_to":"70041"} +{"$label":"ACTS_IN","name":"Tom Jackson","type":"Role","_key":"119212","_from":"70046","_to":"70044"} +{"$label":"ACTS_IN","name":"Polly Deely","type":"Role","_key":"119209","_from":"70045","_to":"70044"} +{"$label":"ACTS_IN","name":"Arthur (as Giampaolo Saccarola)","type":"Role","_key":"119225","_from":"70051","_to":"70047"} +{"$label":"ACTS_IN","name":"Martin Avery","type":"Role","_key":"119224","_from":"70050","_to":"70047"} +{"$label":"ACTS_IN","name":"Joe the Plumber","type":"Role","_key":"119222","_from":"70049","_to":"70047"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"119221","_from":"70048","_to":"70047"} +{"$label":"ACTS_IN","name":"Jake","type":"Role","_key":"119232","_from":"70056","_to":"70052"} +{"$label":"ACTS_IN","name":"Teen Russ","type":"Role","_key":"119231","_from":"70055","_to":"70052"} +{"$label":"ACTS_IN","name":"Club Kid","type":"Role","_key":"119229","_from":"70054","_to":"70052"} +{"$label":"DIRECTED","_key":"119227","_from":"70053","_to":"70052"} +{"$label":"DIRECTED","_key":"119249","_from":"70064","_to":"70057"} +{"$label":"ACTS_IN","name":"The Doctor","type":"Role","_key":"119247","_from":"70063","_to":"70057"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"119246","_from":"70062","_to":"70057"} +{"$label":"ACTS_IN","name":"Van Heflin","type":"Role","_key":"119244","_from":"70061","_to":"70057"} +{"$label":"ACTS_IN","name":"Keller","type":"Role","_key":"119240","_from":"70060","_to":"70057"} +{"$label":"ACTS_IN","name":"The Rajah","type":"Role","_key":"119239","_from":"70059","_to":"70057"} +{"$label":"ACTS_IN","name":"The Narrator","type":"Role","_key":"119234","_from":"70058","_to":"70057"} +{"$label":"ACTS_IN","name":"Sydney","type":"Role","_key":"119253","_from":"70068","_to":"70065"} +{"$label":"ACTS_IN","name":"Zeus","type":"Role","_key":"119252","_from":"70067","_to":"70065"} +{"$label":"ACTS_IN","name":"John Morkos","type":"Role","_key":"119250","_from":"70066","_to":"70065"} +{"$label":"ACTS_IN","name":"Adam","type":"Role","_key":"119256","_from":"70071","_to":"70070"} +{"$label":"ACTS_IN","name":"Marcus","type":"Role","_key":"119259","_from":"70074","_to":"70072"} +{"$label":"ACTS_IN","name":"Madison","type":"Role","_key":"119258","_from":"70073","_to":"70072"} +{"$label":"DIRECTED","_key":"119266","_from":"70076","_to":"70075"} +{"$label":"DIRECTED","_key":"119269","_from":"70078","_to":"70077"} +{"$label":"ACTS_IN","name":"Unemployment Clerk","type":"Role","_key":"119282","_from":"70089","_to":"70080"} +{"$label":"ACTS_IN","name":"Helen","type":"Role","_key":"119281","_from":"70088","_to":"70080"} +{"$label":"ACTS_IN","name":"Woman Upstairs","type":"Role","_key":"119280","_from":"70087","_to":"70080"} +{"$label":"ACTS_IN","name":"Detective","type":"Role","_key":"119279","_from":"70086","_to":"70080"} +{"$label":"ACTS_IN","name":"Psychiatrist","type":"Role","_key":"119278","_from":"70085","_to":"70080"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"119277","_from":"70084","_to":"70080"} +{"$label":"ACTS_IN","name":"Man Upstairs","type":"Role","_key":"119276","_from":"70083","_to":"70080"} +{"$label":"ACTS_IN","name":"Belle","type":"Role","_key":"119275","_from":"70082","_to":"70080"} +{"$label":"ACTS_IN","name":"Pearl","type":"Role","_key":"119274","_from":"70081","_to":"70080"} +{"$label":"ACTS_IN","name":"Sara","type":"Role","_key":"119297","_from":"70094","_to":"70090"} +{"$label":"ACTS_IN","name":"Nurse Evans","type":"Role","_key":"119295","_from":"70093","_to":"70090"} +{"$label":"ACTS_IN","name":"Darcy","type":"Role","_key":"119292","_from":"70092","_to":"70090"} +{"$label":"ACTS_IN","name":"Danny Sloan","type":"Role","_key":"119287","_from":"70091","_to":"70090"} +{"$label":"DIRECTED","_key":"119314","_from":"70106","_to":"70096"} +{"$label":"ACTS_IN","name":"Recruiter","type":"Role","_key":"119313","_from":"70105","_to":"70096"} +{"$label":"ACTS_IN","name":"Chris","type":"Role","_key":"119312","_from":"70104","_to":"70096"} +{"$label":"ACTS_IN","name":"Uncle Sam","type":"Role","_key":"119311","_from":"70103","_to":"70096"} +{"$label":"ACTS_IN","name":"Ady Forte","type":"Role","_key":"119310","_from":"70102","_to":"70096"} +{"$label":"ACTS_IN","name":"Louise Forte","type":"Role","_key":"119309","_from":"70101","_to":"70096"} +{"$label":"ACTS_IN","name":"Mark Dessau","type":"Role","_key":"119308","_from":"70100","_to":"70096"} +{"$label":"ACTS_IN","name":"Gene","type":"Role","_key":"119306","_from":"70099","_to":"70096"} +{"$label":"ACTS_IN","name":"Nate Merritt","type":"Role","_key":"119305","_from":"70098","_to":"70096"} +{"$label":"ACTS_IN","name":"Trish Huddle","type":"Role","_key":"119304","_from":"70097","_to":"70096"} +{"$label":"ACTS_IN","name":"Mac","type":"Role","_key":"119865","_from":"70104","_to":"70389"} +{"$label":"ACTS_IN","name":"Young Alma","type":"Role","_key":"119322","_from":"70113","_to":"70107"} +{"$label":"ACTS_IN","name":"Alma","type":"Role","_key":"119320","_from":"70112","_to":"70107"} +{"$label":"ACTS_IN","name":"The Tattooed Woman","type":"Role","_key":"119319","_from":"70111","_to":"70107"} +{"$label":"ACTS_IN","name":"Orgo","type":"Role","_key":"119318","_from":"70110","_to":"70107"} +{"$label":"ACTS_IN","name":"Concha","type":"Role","_key":"119317","_from":"70109","_to":"70107"} +{"$label":"ACTS_IN","name":"Fenix","type":"Role","_key":"119316","_from":"70108","_to":"70107"} +{"$label":"ACTS_IN","name":"Nicole","type":"Role","_key":"119330","_from":"70119","_to":"70114"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"119329","_from":"70118","_to":"70114"} +{"$label":"ACTS_IN","name":"Brent","type":"Role","_key":"119326","_from":"70117","_to":"70114"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"119325","_from":"70116","_to":"70114"} +{"$label":"DIRECTED","_key":"119323","_from":"70115","_to":"70114"} +{"$label":"DIRECTED","_key":"119347","_from":"70127","_to":"70122"} +{"$label":"ACTS_IN","name":"Jack Harper, Stan's Conductor","type":"Role","_key":"119346","_from":"70126","_to":"70122"} +{"$label":"ACTS_IN","name":"Blakey, Stan's Inspector","type":"Role","_key":"119345","_from":"70125","_to":"70122"} +{"$label":"ACTS_IN","name":"Olive Rudge","type":"Role","_key":"119344","_from":"70124","_to":"70122"} +{"$label":"ACTS_IN","name":"Arthur Rudge - Stan's Brother-in-Law","type":"Role","_key":"119343","_from":"70123","_to":"70122"} +{"$label":"ACTS_IN","name":"Arthur Rudge","type":"Role","_key":"119364","_from":"70123","_to":"70137"} +{"$label":"ACTS_IN","name":"Olive Rudge","type":"Role","_key":"119362","_from":"70124","_to":"70137"} +{"$label":"ACTS_IN","name":"Inspector 'Blakey' Blake","type":"Role","_key":"119360","_from":"70125","_to":"70137"} +{"$label":"ACTS_IN","name":"Jack Harper","type":"Role","_key":"119363","_from":"70126","_to":"70137"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119354","_from":"70135","_to":"70128"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119353","_from":"70134","_to":"70128"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119352","_from":"70133","_to":"70128"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119351","_from":"70132","_to":"70128"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119350","_from":"70131","_to":"70128"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119349","_from":"70130","_to":"70128"} +{"$label":"DIRECTED","_key":"119348","_from":"70129","_to":"70128"} +{"$label":"DIRECTED","_key":"119365","_from":"70138","_to":"70137"} +{"$label":"ACTS_IN","name":"Marge","type":"Role","_key":"119381","_from":"70144","_to":"70140"} +{"$label":"ACTS_IN","name":"Lily","type":"Role","_key":"119379","_from":"70143","_to":"70140"} +{"$label":"ACTS_IN","name":"Evelyn Blunt","type":"Role","_key":"119376","_from":"70142","_to":"70140"} +{"$label":"ACTS_IN","name":"Bert Conway","type":"Role","_key":"119375","_from":"70141","_to":"70140"} +{"$label":"ACTS_IN","name":"Queen Isabella","type":"Role","_key":"121028","_from":"70142","_to":"71078"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"119620","_from":"70144","_to":"70257"} +{"$label":"ACTS_IN","name":"Aristocratic Lady","type":"Role","_key":"119392","_from":"70149","_to":"70145"} +{"$label":"ACTS_IN","name":"Battleaxe","type":"Role","_key":"119391","_from":"70148","_to":"70145"} +{"$label":"ACTS_IN","name":"Smiley Sims","type":"Role","_key":"119389","_from":"70147","_to":"70145"} +{"$label":"ACTS_IN","name":"Flo Sims","type":"Role","_key":"119387","_from":"70146","_to":"70145"} +{"$label":"ACTS_IN","name":"Baby Neptune","type":"Role","_key":"119407","_from":"70156","_to":"70150"} +{"$label":"ACTS_IN","name":"Baby Neptune","type":"Role","_key":"119406","_from":"70155","_to":"70150"} +{"$label":"ACTS_IN","name":"Wolfie","type":"Role","_key":"119405","_from":"70154","_to":"70150"} +{"$label":"ACTS_IN","name":"Taylor","type":"Role","_key":"119402","_from":"70153","_to":"70150"} +{"$label":"ACTS_IN","name":"Ashley","type":"Role","_key":"119401","_from":"70152","_to":"70150"} +{"$label":"ACTS_IN","name":"Lowell","type":"Role","_key":"119400","_from":"70151","_to":"70150"} +{"$label":"ACTS_IN","name":"Dad Seegle","type":"Role","_key":"119418","_from":"70161","_to":"70159"} +{"$label":"ACTS_IN","name":"Doc Seegle","type":"Role","_key":"119417","_from":"70160","_to":"70159"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"119426","_from":"70165","_to":"70164"} +{"$label":"DIRECTED","_key":"119427","_from":"70167","_to":"70166"} +{"$label":"ACTS_IN","name":"Perry's Friend","type":"Role","_key":"119437","_from":"70172","_to":"70168"} +{"$label":"ACTS_IN","name":"Leo Brockman","type":"Role","_key":"119436","_from":"70171","_to":"70168"} +{"$label":"ACTS_IN","name":"Jessica","type":"Role","_key":"119434","_from":"70170","_to":"70168"} +{"$label":"ACTS_IN","name":"Boris' Friend #2","type":"Role","_key":"119433","_from":"70169","_to":"70168"} +{"$label":"ACTS_IN","name":"Carl","type":"Role","_key":"119454","_from":"70177","_to":"70174"} +{"$label":"ACTS_IN","name":"John","type":"Role","_key":"119453","_from":"70176","_to":"70174"} +{"$label":"ACTS_IN","name":"Leggetti","type":"Role","_key":"119450","_from":"70175","_to":"70174"} +{"$label":"ACTS_IN","name":"Un 'client' de Jean-Pierre","type":"Role","_key":"119470","_from":"70183","_to":"70178"} +{"$label":"ACTS_IN","name":"Lucien","type":"Role","_key":"119465","_from":"70182","_to":"70178"} +{"$label":"ACTS_IN","name":"Roxane","type":"Role","_key":"119463","_from":"70181","_to":"70178"} +{"$label":"DIRECTED","_key":"119457","_from":"70180","_to":"70178"} +{"$label":"DIRECTED","_key":"119456","_from":"70179","_to":"70178"} +{"$label":"DIRECTED","_key":"119475","_from":"70187","_to":"70184"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"119474","_from":"70186","_to":"70184"} +{"$label":"ACTS_IN","name":"Johnny","type":"Role","_key":"119472","_from":"70185","_to":"70184"} +{"$label":"ACTS_IN","name":"Corey","type":"Role","_key":"119480","_from":"70190","_to":"70188"} +{"$label":"ACTS_IN","name":"Benny G","type":"Role","_key":"119476","_from":"70189","_to":"70188"} +{"$label":"DIRECTED","_key":"119498","_from":"70197","_to":"70191"} +{"$label":"ACTS_IN","name":"Fire Fighter","type":"Role","_key":"119497","_from":"70196","_to":"70191"} +{"$label":"ACTS_IN","name":"Reporter","type":"Role","_key":"119496","_from":"70195","_to":"70191"} +{"$label":"ACTS_IN","name":"Biker","type":"Role","_key":"119491","_from":"70194","_to":"70191"} +{"$label":"ACTS_IN","name":"Chase","type":"Role","_key":"119486","_from":"70193","_to":"70191"} +{"$label":"ACTS_IN","name":"Rick Beverley","type":"Role","_key":"119484","_from":"70192","_to":"70191"} +{"$label":"ACTS_IN","name":"Catalina","type":"Role","_key":"119688","_from":"70195","_to":"70295"} +{"$label":"ACTS_IN","name":"Willow Sword","type":"Role","_key":"119506","_from":"70200","_to":"70198"} +{"$label":"ACTS_IN","name":"The Master","type":"Role","_key":"119505","_from":"70199","_to":"70198"} +{"$label":"DIRECTED","_key":"119512","_from":"70204","_to":"70201"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"119510","_from":"70204","_to":"70201"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"119509","_from":"70203","_to":"70201"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119508","_from":"70202","_to":"70201"} +{"$label":"DIRECTED","_key":"119519","_from":"70211","_to":"70207"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"119517","_from":"70210","_to":"70207"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"119516","_from":"70209","_to":"70207"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"119515","_from":"70208","_to":"70207"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"119522","_from":"70213","_to":"70212"} +{"$label":"ACTS_IN","name":"Elvis","type":"Role","_key":"119535","_from":"70220","_to":"70216"} +{"$label":"ACTS_IN","name":"Waitress","type":"Role","_key":"119534","_from":"70219","_to":"70216"} +{"$label":"ACTS_IN","name":"Loretta","type":"Role","_key":"119533","_from":"70218","_to":"70216"} +{"$label":"ACTS_IN","name":"Tammy Larsen","type":"Role","_key":"119530","_from":"70217","_to":"70216"} +{"$label":"ACTS_IN","name":"Harold","type":"Role","_key":"119540","_from":"70224","_to":"70221"} +{"$label":"ACTS_IN","name":"Dr. Tina Reeves","type":"Role","_key":"119539","_from":"70223","_to":"70221"} +{"$label":"ACTS_IN","name":"SSgt. Brooks Malloy","type":"Role","_key":"119538","_from":"70222","_to":"70221"} +{"$label":"ACTS_IN","name":"Watson","type":"Role","_key":"119549","_from":"70230","_to":"70225"} +{"$label":"ACTS_IN","name":"Esmerelda","type":"Role","_key":"119548","_from":"70229","_to":"70225"} +{"$label":"ACTS_IN","name":"(Lisa Duncan","type":"Role","_key":"119547","_from":"70228","_to":"70225"} +{"$label":"ACTS_IN","name":"Jamie Davis","type":"Role","_key":"119546","_from":"70227","_to":"70225"} +{"$label":"DIRECTED","_key":"119542","_from":"70226","_to":"70225"} +{"$label":"ACTS_IN","name":"Stout Woman","type":"Role","_key":"119561","_from":"70234","_to":"70231"} +{"$label":"ACTS_IN","name":"Nurse Willing","type":"Role","_key":"119560","_from":"70233","_to":"70231"} +{"$label":"ACTS_IN","name":"Miss Fosdick","type":"Role","_key":"119558","_from":"70232","_to":"70231"} +{"$label":"ACTS_IN","name":"Linda Upmore","type":"Role","_key":"119615","_from":"70232","_to":"70257"} +{"$label":"ACTS_IN","name":"Hortence Withering","type":"Role","_key":"119587","_from":"70232","_to":"70243"} +{"$label":"DIRECTED","_key":"119569","_from":"70236","_to":"70235"} +{"$label":"ACTS_IN","name":"Mallory Ross","type":"Role","_key":"119578","_from":"70242","_to":"70238"} +{"$label":"ACTS_IN","name":"Val Leary","type":"Role","_key":"119577","_from":"70241","_to":"70238"} +{"$label":"ACTS_IN","name":"Deano Doyle","type":"Role","_key":"119576","_from":"70240","_to":"70238"} +{"$label":"ACTS_IN","name":"Hannah Ross","type":"Role","_key":"119575","_from":"70239","_to":"70238"} +{"$label":"ACTS_IN","name":"Popsy","type":"Role","_key":"119594","_from":"70248","_to":"70243"} +{"$label":"ACTS_IN","name":"Benny","type":"Role","_key":"119591","_from":"70247","_to":"70243"} +{"$label":"ACTS_IN","name":"Fred Moore","type":"Role","_key":"119590","_from":"70246","_to":"70243"} +{"$label":"ACTS_IN","name":"Lewis Boggs","type":"Role","_key":"119589","_from":"70245","_to":"70243"} +{"$label":"ACTS_IN","name":"Vic Spanner","type":"Role","_key":"119586","_from":"70244","_to":"70243"} +{"$label":"ACTS_IN","name":"Police officer","type":"Role","_key":"119604","_from":"70256","_to":"70250"} +{"$label":"ACTS_IN","name":"Jakob (as Benjamin Hasselflug)","type":"Role","_key":"119603","_from":"70255","_to":"70250"} +{"$label":"ACTS_IN","name":"Christian A. Madsen","type":"Role","_key":"119602","_from":"70254","_to":"70250"} +{"$label":"ACTS_IN","name":"Lars","type":"Role","_key":"119600","_from":"70253","_to":"70250"} +{"$label":"ACTS_IN","name":"Sofie (as Sara Hjort)","type":"Role","_key":"119597","_from":"70252","_to":"70250"} +{"$label":"DIRECTED","_key":"119595","_from":"70251","_to":"70250"} +{"$label":"ACTS_IN","name":"The Dean","type":"Role","_key":"119619","_from":"70263","_to":"70257"} +{"$label":"ACTS_IN","name":"Vera Bragg","type":"Role","_key":"119618","_from":"70262","_to":"70257"} +{"$label":"ACTS_IN","name":"Norma Baxter","type":"Role","_key":"119617","_from":"70261","_to":"70257"} +{"$label":"ACTS_IN","name":"Joe Baxter","type":"Role","_key":"119616","_from":"70260","_to":"70257"} +{"$label":"ACTS_IN","name":"Fred Ramsden","type":"Role","_key":"119612","_from":"70259","_to":"70257"} +{"$label":"ACTS_IN","name":"Ernie Bragg","type":"Role","_key":"119610","_from":"70258","_to":"70257"} +{"$label":"ACTS_IN","name":"Nadia","type":"Role","_key":"119623","_from":"70267","_to":"70264"} +{"$label":"ACTS_IN","name":"Barbara","type":"Role","_key":"119622","_from":"70266","_to":"70264"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"119621","_from":"70265","_to":"70264"} +{"$label":"ACTS_IN","name":"Matthias Barfoed","type":"Role","_key":"119630","_from":"70274","_to":"70270"} +{"$label":"ACTS_IN","name":"William Barfoed","type":"Role","_key":"119629","_from":"70273","_to":"70270"} +{"$label":"ACTS_IN","name":"Christian Barfoed","type":"Role","_key":"119628","_from":"70272","_to":"70270"} +{"$label":"DIRECTED","_key":"119626","_from":"70271","_to":"70270"} +{"$label":"ACTS_IN","name":"Rudy Huber","type":"Role","_key":"119638","_from":"70276","_to":"70275"} +{"$label":"ACTS_IN","name":"Harriet Potter","type":"Role","_key":"119653","_from":"70279","_to":"70277"} +{"$label":"ACTS_IN","name":"Anthea Meeks","type":"Role","_key":"119651","_from":"70278","_to":"70277"} +{"$label":"ACTS_IN","name":"Voice of Beth Lislick","type":"Role","_key":"119659","_from":"70283","_to":"70280"} +{"$label":"ACTS_IN","name":"Unknown","type":"Role","_key":"119658","_from":"70282","_to":"70280"} +{"$label":"DIRECTED","_key":"119657","_from":"70281","_to":"70280"} +{"$label":"ACTS_IN","name":"Zack (voice)","type":"Role","_key":"119667","_from":"70288","_to":"70284"} +{"$label":"ACTS_IN","name":"Stanton (voice)","type":"Role","_key":"119664","_from":"70287","_to":"70284"} +{"$label":"ACTS_IN","name":"n\/a","type":"Role","_key":"119662","_from":"70286","_to":"70284"} +{"$label":"DIRECTED","_key":"119660","_from":"70285","_to":"70284"} +{"$label":"ACTS_IN","name":"Vivian Shing","type":"Role","_key":"119677","_from":"70292","_to":"70290"} +{"$label":"DIRECTED","_key":"119674","_from":"70291","_to":"70290"} +{"$label":"ACTS_IN","name":"Consuelo","type":"Role","_key":"119684","_from":"70294","_to":"70293"} +{"$label":"ACTS_IN","name":"Yvette","type":"Role","_key":"119694","_from":"70301","_to":"70295"} +{"$label":"ACTS_IN","name":"Kayla","type":"Role","_key":"119692","_from":"70300","_to":"70295"} +{"$label":"ACTS_IN","name":"Paulina","type":"Role","_key":"119691","_from":"70299","_to":"70295"} +{"$label":"ACTS_IN","name":"Sam","type":"Role","_key":"119690","_from":"70298","_to":"70295"} +{"$label":"ACTS_IN","name":"CC Turner","type":"Role","_key":"119687","_from":"70297","_to":"70295"} +{"$label":"ACTS_IN","name":"Naomi Serrano","type":"Role","_key":"119685","_from":"70296","_to":"70295"} +{"$label":"DIRECTED","_key":"119700","_from":"70303","_to":"70302"} +{"$label":"ACTS_IN","name":"Capt. Peter Skellen","type":"Role","_key":"119701","_from":"70305","_to":"70304"} +{"$label":"ACTS_IN","name":"Slick dude","type":"Role","_key":"119716","_from":"70312","_to":"70307"} +{"$label":"ACTS_IN","name":"Rudy's nephew","type":"Role","_key":"119714","_from":"70311","_to":"70307"} +{"$label":"ACTS_IN","name":"Rudy's niece","type":"Role","_key":"119713","_from":"70310","_to":"70307"} +{"$label":"ACTS_IN","name":"Rudy's sister","type":"Role","_key":"119712","_from":"70309","_to":"70307"} +{"$label":"ACTS_IN","name":"Dolores","type":"Role","_key":"119709","_from":"70308","_to":"70307"} +{"$label":"ACTS_IN","name":"Kolhii Announcer (voice)","type":"Role","_key":"119734","_from":"70315","_to":"70313"} +{"$label":"ACTS_IN","name":"Takua \/ Toa Takanuva (voice)","type":"Role","_key":"119727","_from":"70314","_to":"70313"} +{"$label":"ACTS_IN","name":"Ray","type":"Role","_key":"119748","_from":"70319","_to":"70316"} +{"$label":"ACTS_IN","name":"Richard Hertz","type":"Role","_key":"119747","_from":"70318","_to":"70316"} +{"$label":"ACTS_IN","name":"Libby Starling","type":"Role","_key":"119745","_from":"70317","_to":"70316"} +{"$label":"ACTS_IN","name":"Slatternly Woman Tenant","type":"Role","_key":"119758","_from":"70326","_to":"70323"} +{"$label":"ACTS_IN","name":"Chuck Blayden","type":"Role","_key":"119757","_from":"70325","_to":"70323"} +{"$label":"ACTS_IN","name":"Nelle Marchettis","type":"Role","_key":"119753","_from":"70324","_to":"70323"} +{"$label":"ACTS_IN","name":"Young Ace","type":"Role","_key":"119782","_from":"70335","_to":"70331"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"119781","_from":"70334","_to":"70331"} +{"$label":"ACTS_IN","name":"Pete","type":"Role","_key":"119779","_from":"70333","_to":"70331"} +{"$label":"ACTS_IN","name":"Jasmine","type":"Role","_key":"119777","_from":"70332","_to":"70331"} +{"$label":"DIRECTED","_key":"119788","_from":"70339","_to":"70336"} +{"$label":"ACTS_IN","name":"Simone Bradley","type":"Role","_key":"119787","_from":"70338","_to":"70336"} +{"$label":"ACTS_IN","name":"Annabelle","type":"Role","_key":"119786","_from":"70337","_to":"70336"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"119798","_from":"70341","_to":"70340"} +{"$label":"ACTS_IN","name":"Marisol","type":"Role","_key":"119806","_from":"70345","_to":"70342"} +{"$label":"ACTS_IN","name":"Ray Cortez","type":"Role","_key":"119805","_from":"70344","_to":"70342"} +{"$label":"ACTS_IN","name":"Adrian Sturges","type":"Role","_key":"119803","_from":"70343","_to":"70342"} +{"$label":"DIRECTED","_key":"119810","_from":"70350","_to":"70347"} +{"$label":"ACTS_IN","name":"Bess","type":"Role","_key":"119809","_from":"70349","_to":"70347"} +{"$label":"ACTS_IN","name":"John Serragoth","type":"Role","_key":"119808","_from":"70348","_to":"70347"} +{"$label":"DIRECTED","_key":"119815","_from":"70356","_to":"70351"} +{"$label":"ACTS_IN","name":"Greta","type":"Role","_key":"119814","_from":"70355","_to":"70351"} +{"$label":"ACTS_IN","name":"Betty","type":"Role","_key":"119813","_from":"70354","_to":"70351"} +{"$label":"ACTS_IN","name":"Ilsa","type":"Role","_key":"119812","_from":"70353","_to":"70351"} +{"$label":"ACTS_IN","name":"Sabrina","type":"Role","_key":"119811","_from":"70352","_to":"70351"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119820","_from":"70362","_to":"70357"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119819","_from":"70361","_to":"70357"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119818","_from":"70360","_to":"70357"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119817","_from":"70359","_to":"70357"} +{"$label":"DIRECTED","_key":"119816","_from":"70358","_to":"70357"} +{"$label":"ACTS_IN","name":"Miss Clavel","type":"Role","_key":"119822","_from":"70366","_to":"70364"} +{"$label":"ACTS_IN","name":"Madeline","type":"Role","_key":"119821","_from":"70365","_to":"70364"} +{"$label":"ACTS_IN","name":"Madeline","type":"Role","_key":"120992","_from":"70365","_to":"71070"} +{"$label":"ACTS_IN","name":"Madeline","type":"Role","_key":"119838","_from":"70365","_to":"70374"} +{"$label":"ACTS_IN","name":"Miss Clavel","type":"Role","_key":"120990","_from":"70366","_to":"71070"} +{"$label":"DIRECTED","_key":"119837","_from":"70373","_to":"70369"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119836","_from":"70372","_to":"70369"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119835","_from":"70371","_to":"70369"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119834","_from":"70370","_to":"70369"} +{"$label":"DIRECTED","_key":"119844","_from":"70376","_to":"70375"} +{"$label":"DIRECTED","_key":"119850","_from":"70379","_to":"70377"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"119849","_from":"70378","_to":"70377"} +{"$label":"ACTS_IN","name":"Bass","type":"Role","_key":"119853","_from":"70378","_to":"70380"} +{"$label":"DIRECTED","_key":"119856","_from":"70381","_to":"70380"} +{"$label":"ACTS_IN","name":"Roxanna Ledbetter","type":"Role","_key":"119862","_from":"70388","_to":"70384"} +{"$label":"ACTS_IN","name":"Vernon Doolin","type":"Role","_key":"119861","_from":"70387","_to":"70384"} +{"$label":"ACTS_IN","name":"Francie Wymore","type":"Role","_key":"119860","_from":"70386","_to":"70384"} +{"$label":"ACTS_IN","name":"Carl Kogan","type":"Role","_key":"119859","_from":"70385","_to":"70384"} +{"$label":"DIRECTED","_key":"119873","_from":"70397","_to":"70389"} +{"$label":"ACTS_IN","name":"Ace","type":"Role","_key":"119872","_from":"70396","_to":"70389"} +{"$label":"ACTS_IN","name":"Andre","type":"Role","_key":"119871","_from":"70395","_to":"70389"} +{"$label":"ACTS_IN","name":"Jason","type":"Role","_key":"119870","_from":"70394","_to":"70389"} +{"$label":"ACTS_IN","name":"Simon","type":"Role","_key":"119869","_from":"70393","_to":"70389"} +{"$label":"ACTS_IN","name":"Cooper","type":"Role","_key":"119868","_from":"70392","_to":"70389"} +{"$label":"ACTS_IN","name":"Kevin","type":"Role","_key":"119867","_from":"70391","_to":"70389"} +{"$label":"ACTS_IN","name":"Cameron","type":"Role","_key":"119866","_from":"70390","_to":"70389"} +{"$label":"ACTS_IN","name":"\u00c9tudiante","type":"Role","_key":"119894","_from":"70417","_to":"70398"} +{"$label":"ACTS_IN","name":"Sandrine Meilleur","type":"Role","_key":"119893","_from":"70416","_to":"70398"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"119892","_from":"70415","_to":"70398"} +{"$label":"ACTS_IN","name":"\u00c9tudiante","type":"Role","_key":"119891","_from":"70414","_to":"70398"} +{"$label":"ACTS_IN","name":"Fr\u00e9d\u00e9rick B\u00e9dard","type":"Role","_key":"119890","_from":"70413","_to":"70398"} +{"$label":"ACTS_IN","name":"Yaelle Roberge","type":"Role","_key":"119889","_from":"70412","_to":"70398"} +{"$label":"ACTS_IN","name":"Mud","type":"Role","_key":"119887","_from":"70411","_to":"70398"} +{"$label":"ACTS_IN","name":"Bud","type":"Role","_key":"119886","_from":"70410","_to":"70398"} +{"$label":"ACTS_IN","name":"Vincent Roberge","type":"Role","_key":"119885","_from":"70409","_to":"70398"} +{"$label":"ACTS_IN","name":"Audrey L.","type":"Role","_key":"119884","_from":"70408","_to":"70398"} +{"$label":"ACTS_IN","name":"Audrey Sanson","type":"Role","_key":"119883","_from":"70407","_to":"70398"} +{"$label":"ACTS_IN","name":"Julie Hamel (voice)","type":"Role","_key":"119882","_from":"70406","_to":"70398"} +{"$label":"ACTS_IN","name":"Jean-Marc Roberge","type":"Role","_key":"119881","_from":"70405","_to":"70398"} +{"$label":"ACTS_IN","name":"Audrey T.","type":"Role","_key":"119880","_from":"70404","_to":"70398"} +{"$label":"ACTS_IN","name":"Olivier Duclos","type":"Role","_key":"119879","_from":"70403","_to":"70398"} +{"$label":"ACTS_IN","name":"Gaby Roberge","type":"Role","_key":"119878","_from":"70402","_to":"70398"} +{"$label":"ACTS_IN","name":"Maxime Jobin","type":"Role","_key":"119877","_from":"70401","_to":"70398"} +{"$label":"ACTS_IN","name":"Julie Hamel","type":"Role","_key":"119876","_from":"70400","_to":"70398"} +{"$label":"ACTS_IN","name":"Recruteur","type":"Role","_key":"119875","_from":"70399","_to":"70398"} +{"$label":"ACTS_IN","name":"Kate Mason","type":"Role","_key":"119925","_from":"70442","_to":"70418"} +{"$label":"ACTS_IN","name":"Bully #1","type":"Role","_key":"119923","_from":"70441","_to":"70418"} +{"$label":"ACTS_IN","name":"Lieutenant (as Timothy A. Powell)","type":"Role","_key":"119922","_from":"70440","_to":"70418"} +{"$label":"ACTS_IN","name":"Secretary","type":"Role","_key":"119921","_from":"70439","_to":"70418"} +{"$label":"ACTS_IN","name":"Kojiro","type":"Role","_key":"119919","_from":"70438","_to":"70418"} +{"$label":"ACTS_IN","name":"Teacher","type":"Role","_key":"119918","_from":"70437","_to":"70418"} +{"$label":"ACTS_IN","name":"Frank Olsen","type":"Role","_key":"119917","_from":"70436","_to":"70418"} +{"$label":"ACTS_IN","name":"Cabbie","type":"Role","_key":"119916","_from":"70435","_to":"70418"} +{"$label":"ACTS_IN","name":"Jocko","type":"Role","_key":"119915","_from":"70434","_to":"70418"} +{"$label":"ACTS_IN","name":"Principal","type":"Role","_key":"119914","_from":"70433","_to":"70418"} +{"$label":"ACTS_IN","name":"Skipper","type":"Role","_key":"119913","_from":"70432","_to":"70418"} +{"$label":"ACTS_IN","name":"Security Guard","type":"Role","_key":"119912","_from":"70431","_to":"70418"} +{"$label":"ACTS_IN","name":"Guard #1","type":"Role","_key":"119911","_from":"70430","_to":"70418"} +{"$label":"ACTS_IN","name":"Corinne","type":"Role","_key":"119910","_from":"70429","_to":"70418"} +{"$label":"ACTS_IN","name":"Guard #4","type":"Role","_key":"119908","_from":"70428","_to":"70418"} +{"$label":"ACTS_IN","name":"Guard #3","type":"Role","_key":"119905","_from":"70427","_to":"70418"} +{"$label":"ACTS_IN","name":"Bully #2","type":"Role","_key":"119902","_from":"70426","_to":"70418"} +{"$label":"ACTS_IN","name":"Nanny (as Kelly Erin-Welton)","type":"Role","_key":"119901","_from":"70425","_to":"70418"} +{"$label":"ACTS_IN","name":"Guard #2","type":"Role","_key":"119900","_from":"70424","_to":"70418"} +{"$label":"ACTS_IN","name":"Receptionist","type":"Role","_key":"119899","_from":"70423","_to":"70418"} +{"$label":"ACTS_IN","name":"Repo Man","type":"Role","_key":"119898","_from":"70422","_to":"70418"} +{"$label":"ACTS_IN","name":"Phone Man","type":"Role","_key":"119897","_from":"70421","_to":"70418"} +{"$label":"ACTS_IN","name":"Himself (as Brutus Beefcake)","type":"Role","_key":"119896","_from":"70420","_to":"70418"} +{"$label":"ACTS_IN","name":"Himself (as Afa 'Alfa' Anoai)","type":"Role","_key":"119895","_from":"70419","_to":"70418"} +{"$label":"DIRECTED","_key":"119930","_from":"70444","_to":"70443"} +{"$label":"DIRECTED","_key":"119935","_from":"70449","_to":"70445"} +{"$label":"ACTS_IN","name":"Frankie","type":"Role","_key":"119934","_from":"70448","_to":"70445"} +{"$label":"ACTS_IN","name":"Donna","type":"Role","_key":"119933","_from":"70447","_to":"70445"} +{"$label":"ACTS_IN","name":"Timothy","type":"Role","_key":"119931","_from":"70446","_to":"70445"} +{"$label":"ACTS_IN","name":"Harold Kleinman","type":"Role","_key":"119948","_from":"70455","_to":"70452"} +{"$label":"ACTS_IN","name":"FBI Agent Demott","type":"Role","_key":"119947","_from":"70454","_to":"70452"} +{"$label":"ACTS_IN","name":"Ben Dolezal","type":"Role","_key":"119944","_from":"70453","_to":"70452"} +{"$label":"DIRECTED","_key":"119952","_from":"70457","_to":"70456"} +{"$label":"ACTS_IN","name":"Arnold B. Epstein","type":"Role","_key":"119967","_from":"70460","_to":"70458"} +{"$label":"ACTS_IN","name":"Joseph Wykowski","type":"Role","_key":"119966","_from":"70459","_to":"70458"} +{"$label":"ACTS_IN","name":"Ilene Thompson, Bobby's Wife","type":"Role","_key":"119981","_from":"70465","_to":"70461"} +{"$label":"ACTS_IN","name":"Jenny, Orlock's Secretary","type":"Role","_key":"119975","_from":"70464","_to":"70461"} +{"$label":"ACTS_IN","name":"Ed Loughlin","type":"Role","_key":"119973","_from":"70463","_to":"70461"} +{"$label":"ACTS_IN","name":"Bobby Thompson","type":"Role","_key":"119971","_from":"70462","_to":"70461"} +{"$label":"ACTS_IN","name":"Inspector Switzer","type":"Role","_key":"119989","_from":"70469","_to":"70466"} +{"$label":"ACTS_IN","name":"Good Alien - Azeck","type":"Role","_key":"119987","_from":"70468","_to":"70466"} +{"$label":"ACTS_IN","name":"Special Agent Laurence Smith","type":"Role","_key":"119984","_from":"70467","_to":"70466"} +{"$label":"DIRECTED","_key":"120008","_from":"70478","_to":"70472"} +{"$label":"ACTS_IN","name":"Prosecutor Toohey","type":"Role","_key":"120005","_from":"70477","_to":"70472"} +{"$label":"ACTS_IN","name":"Faye","type":"Role","_key":"120003","_from":"70476","_to":"70472"} +{"$label":"ACTS_IN","name":"Frenchy","type":"Role","_key":"120000","_from":"70475","_to":"70472"} +{"$label":"ACTS_IN","name":"Ruth Carter","type":"Role","_key":"119996","_from":"70474","_to":"70472"} +{"$label":"ACTS_IN","name":"George Anderson","type":"Role","_key":"119995","_from":"70473","_to":"70472"} +{"$label":"DIRECTED","_key":"120020","_from":"70486","_to":"70480"} +{"$label":"ACTS_IN","name":"Ballroom Dancer","type":"Role","_key":"120019","_from":"70485","_to":"70480"} +{"$label":"ACTS_IN","name":"Guard","type":"Role","_key":"120018","_from":"70484","_to":"70480"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"120017","_from":"70483","_to":"70480"} +{"$label":"ACTS_IN","name":"Prince","type":"Role","_key":"120015","_from":"70482","_to":"70480"} +{"$label":"ACTS_IN","name":"Pale Man","type":"Role","_key":"120013","_from":"70481","_to":"70480"} +{"$label":"ACTS_IN","name":"Willard","type":"Role","_key":"120025","_from":"70490","_to":"70489"} +{"$label":"ACTS_IN","name":"Yamoto","type":"Role","_key":"120042","_from":"70498","_to":"70493"} +{"$label":"ACTS_IN","name":"Messenger","type":"Role","_key":"120041","_from":"70497","_to":"70493"} +{"$label":"ACTS_IN","name":"Policeman","type":"Role","_key":"120040","_from":"70496","_to":"70493"} +{"$label":"ACTS_IN","name":"Intern","type":"Role","_key":"120039","_from":"70495","_to":"70493"} +{"$label":"ACTS_IN","name":"Louise, Steve McKenna's Girlfriend","type":"Role","_key":"120037","_from":"70494","_to":"70493"} +{"$label":"ACTS_IN","name":"Preeti Singh","type":"Role","_key":"120053","_from":"70502","_to":"70499"} +{"$label":"ACTS_IN","name":"Rajeshwari \/ Chutki","type":"Role","_key":"120052","_from":"70501","_to":"70499"} +{"$label":"ACTS_IN","name":"Simran's Grandmother","type":"Role","_key":"120050","_from":"70500","_to":"70499"} +{"$label":"ACTS_IN","name":"Iside","type":"Role","_key":"120056","_from":"70507","_to":"70506"} +{"$label":"ACTS_IN","name":"Reverend Norman McQuarry","type":"Role","_key":"120064","_from":"70510","_to":"70508"} +{"$label":"ACTS_IN","name":"Deborah Vaughn","type":"Role","_key":"120059","_from":"70509","_to":"70508"} +{"$label":"ACTS_IN","name":"Andreas (as Andreas Filippidis)","type":"Role","_key":"120077","_from":"70517","_to":"70511"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"120076","_from":"70516","_to":"70511"} +{"$label":"ACTS_IN","name":"Cosmo","type":"Role","_key":"120075","_from":"70515","_to":"70511"} +{"$label":"ACTS_IN","name":"Yorghos","type":"Role","_key":"120074","_from":"70514","_to":"70511"} +{"$label":"ACTS_IN","name":"Aspa","type":"Role","_key":"120073","_from":"70513","_to":"70511"} +{"$label":"ACTS_IN","name":"Jan Tolin","type":"Role","_key":"120072","_from":"70512","_to":"70511"} +{"$label":"ACTS_IN","name":"Jeannie Epper","type":"Role","_key":"120078","_from":"70519","_to":"70518"} +{"$label":"ACTS_IN","name":"Jay","type":"Role","_key":"120088","_from":"70524","_to":"70520"} +{"$label":"ACTS_IN","name":"Sophie","type":"Role","_key":"120087","_from":"70523","_to":"70520"} +{"$label":"ACTS_IN","name":"Ritu","type":"Role","_key":"120084","_from":"70522","_to":"70520"} +{"$label":"ACTS_IN","name":"Gautam aka Goti","type":"Role","_key":"120083","_from":"70521","_to":"70520"} +{"$label":"ACTS_IN","name":"Sachin","type":"Role","_key":"121669","_from":"70521","_to":"71480"} +{"$label":"ACTS_IN","name":"Veeru","type":"Role","_key":"120862","_from":"70521","_to":"70972"} +{"$label":"ACTS_IN","name":"Guest Appearance","type":"Role","_key":"120893","_from":"70523","_to":"70978"} +{"$label":"ACTS_IN","name":"Tejpal","type":"Role","_key":"120865","_from":"70524","_to":"70972"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120095","_from":"70529","_to":"70526"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120094","_from":"70528","_to":"70526"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120093","_from":"70527","_to":"70526"} +{"$label":"DIRECTED","_key":"120101","_from":"70532","_to":"70530"} +{"$label":"ACTS_IN","name":"Mr. Darcy","type":"Role","_key":"120100","_from":"70531","_to":"70530"} +{"$label":"DIRECTED","_key":"120109","_from":"70537","_to":"70533"} +{"$label":"ACTS_IN","name":"Dime","type":"Role","_key":"120106","_from":"70536","_to":"70533"} +{"$label":"ACTS_IN","name":"Jill","type":"Role","_key":"120105","_from":"70535","_to":"70533"} +{"$label":"ACTS_IN","name":"Sasha","type":"Role","_key":"120103","_from":"70534","_to":"70533"} +{"$label":"ACTS_IN","name":"Michael","type":"Role","_key":"120110","_from":"70539","_to":"70538"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"120117","_from":"70545","_to":"70543"} +{"$label":"DIRECTED","_key":"120116","_from":"70544","_to":"70543"} +{"$label":"ACTS_IN","name":"A. L. Henson","type":"Role","_key":"120128","_from":"70553","_to":"70546"} +{"$label":"ACTS_IN","name":"Albert Brooks","type":"Role","_key":"120125","_from":"70552","_to":"70546"} +{"$label":"ACTS_IN","name":"Sheriff Hardy Collier","type":"Role","_key":"120124","_from":"70551","_to":"70546"} +{"$label":"ACTS_IN","name":"Elzie Hancock","type":"Role","_key":"120123","_from":"70550","_to":"70546"} +{"$label":"ACTS_IN","name":"Josephine Wallace","type":"Role","_key":"120122","_from":"70549","_to":"70546"} +{"$label":"ACTS_IN","name":"Huddleston","type":"Role","_key":"120120","_from":"70548","_to":"70546"} +{"$label":"ACTS_IN","name":"Lamar Potts","type":"Role","_key":"120118","_from":"70547","_to":"70546"} +{"$label":"DIRECTED","_key":"120134","_from":"70560","_to":"70556"} +{"$label":"ACTS_IN","name":"as Himself","type":"Role","_key":"120133","_from":"70559","_to":"70556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"120132","_from":"70558","_to":"70556"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"120131","_from":"70557","_to":"70556"} +{"$label":"DIRECTED","_key":"120137","_from":"70562","_to":"70561"} +{"$label":"DIRECTED","_key":"120150","_from":"70567","_to":"70565"} +{"$label":"ACTS_IN","name":"Ed","type":"Role","_key":"120148","_from":"70566","_to":"70565"} +{"$label":"DIRECTED","_key":"120154","_from":"70570","_to":"70569"} +{"$label":"ACTS_IN","name":"Sergeant Benson","type":"Role","_key":"120159","_from":"70574","_to":"70573"} +{"$label":"ACTS_IN","name":"Martial Arts Teacher","type":"Role","_key":"120166","_from":"70577","_to":"70575"} +{"$label":"ACTS_IN","name":"Liang Zhongshan","type":"Role","_key":"120165","_from":"70576","_to":"70575"} +{"$label":"DIRECTED","_key":"120167","_from":"70579","_to":"70578"} +{"$label":"ACTS_IN","name":"Jiro Kitamura","type":"Role","_key":"120179","_from":"70582","_to":"70581"} +{"$label":"ACTS_IN","name":"Sal","type":"Role","_key":"120187","_from":"70586","_to":"70585"} +{"$label":"ACTS_IN","name":"Prof. Wutheridge","type":"Role","_key":"120192","_from":"70589","_to":"70587"} +{"$label":"ACTS_IN","name":"Julia Brougham","type":"Role","_key":"120190","_from":"70588","_to":"70587"} +{"$label":"DIRECTED","_key":"120201","_from":"70591","_to":"70590"} +{"$label":"ACTS_IN","name":"Geex","type":"Role","_key":"120207","_from":"70593","_to":"70592"} +{"$label":"ACTS_IN","name":"Finch","type":"Role","_key":"120218","_from":"70599","_to":"70594"} +{"$label":"ACTS_IN","name":"Oldroyd","type":"Role","_key":"120217","_from":"70598","_to":"70594"} +{"$label":"ACTS_IN","name":"Mathews","type":"Role","_key":"120215","_from":"70597","_to":"70594"} +{"$label":"ACTS_IN","name":"Midshipman Clayton","type":"Role","_key":"120214","_from":"70596","_to":"70594"} +{"$label":"ACTS_IN","name":"Midshipman Jack Simpson","type":"Role","_key":"120211","_from":"70595","_to":"70594"} +{"$label":"DIRECTED","_key":"120236","_from":"70607","_to":"70601"} +{"$label":"ACTS_IN","name":"Hocha","type":"Role","_key":"120234","_from":"70606","_to":"70601"} +{"$label":"ACTS_IN","name":"Barak","type":"Role","_key":"120233","_from":"70605","_to":"70601"} +{"$label":"ACTS_IN","name":"Ragbat","type":"Role","_key":"120232","_from":"70604","_to":"70601"} +{"$label":"ACTS_IN","name":"Gaukhar","type":"Role","_key":"120230","_from":"70603","_to":"70601"} +{"$label":"ACTS_IN","name":"Galdan Ceren, the Jungar Sultan","type":"Role","_key":"120229","_from":"70602","_to":"70601"} +{"$label":"DIRECTED","_key":"120250","_from":"70614","_to":"70613"} +{"$label":"ACTS_IN","name":"Toma's mother","type":"Role","_key":"120258","_from":"70618","_to":"70616"} +{"$label":"ACTS_IN","name":"Toraji Shirakawa","type":"Role","_key":"120255","_from":"70617","_to":"70616"} +{"$label":"ACTS_IN","name":"Police Officer #2","type":"Role","_key":"120265","_from":"70621","_to":"70619"} +{"$label":"ACTS_IN","name":"Pa Greavy","type":"Role","_key":"120263","_from":"70620","_to":"70619"} +{"$label":"ACTS_IN","name":"Model","type":"Role","_key":"120272","_from":"70626","_to":"70624"} +{"$label":"ACTS_IN","name":"Drachenmann","type":"Role","_key":"120271","_from":"70625","_to":"70624"} +{"$label":"ACTS_IN","name":"Male Promo Voice (voice)","type":"Role","_key":"120305","_from":"70653","_to":"70628"} +{"$label":"ACTS_IN","name":"Female Promo Voice (voice)","type":"Role","_key":"120304","_from":"70652","_to":"70628"} +{"$label":"ACTS_IN","name":"Dispatch Operator (as John Ventimiglia)","type":"Role","_key":"120303","_from":"70651","_to":"70628"} +{"$label":"ACTS_IN","name":"Lottery Spokes Model","type":"Role","_key":"120302","_from":"70650","_to":"70628"} +{"$label":"ACTS_IN","name":"Ultra Sound Baby","type":"Role","_key":"120301","_from":"70649","_to":"70628"} +{"$label":"ACTS_IN","name":"Dawn Look-alike","type":"Role","_key":"120299","_from":"70648","_to":"70628"} +{"$label":"ACTS_IN","name":"Jeff Look-alike II","type":"Role","_key":"120298","_from":"70647","_to":"70628"} +{"$label":"ACTS_IN","name":"Jeff Look-alike I","type":"Role","_key":"120297","_from":"70646","_to":"70628"} +{"$label":"ACTS_IN","name":"Doria Look-alike II","type":"Role","_key":"120296","_from":"70645","_to":"70628"} +{"$label":"ACTS_IN","name":"Doria Look-alike I","type":"Role","_key":"120295","_from":"70644","_to":"70628"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"120294","_from":"70643","_to":"70628"} +{"$label":"ACTS_IN","name":"Colby","type":"Role","_key":"120293","_from":"70642","_to":"70628"} +{"$label":"ACTS_IN","name":"Dawn's Mother","type":"Role","_key":"120292","_from":"70641","_to":"70628"} +{"$label":"ACTS_IN","name":"Laura","type":"Role","_key":"120291","_from":"70640","_to":"70628"} +{"$label":"ACTS_IN","name":"Nurse","type":"Role","_key":"120290","_from":"70639","_to":"70628"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"120289","_from":"70638","_to":"70628"} +{"$label":"ACTS_IN","name":"Bob","type":"Role","_key":"120288","_from":"70637","_to":"70628"} +{"$label":"ACTS_IN","name":"Nathan","type":"Role","_key":"120287","_from":"70636","_to":"70628"} +{"$label":"ACTS_IN","name":"Craig","type":"Role","_key":"120286","_from":"70635","_to":"70628"} +{"$label":"ACTS_IN","name":"Dawn's Cameraman","type":"Role","_key":"120284","_from":"70634","_to":"70628"} +{"$label":"ACTS_IN","name":"Doria","type":"Role","_key":"120283","_from":"70633","_to":"70628"} +{"$label":"ACTS_IN","name":"Franklin","type":"Role","_key":"120279","_from":"70632","_to":"70628"} +{"$label":"ACTS_IN","name":"Tony","type":"Role","_key":"120277","_from":"70631","_to":"70628"} +{"$label":"ACTS_IN","name":"Dairy Mart Clerk","type":"Role","_key":"120276","_from":"70630","_to":"70628"} +{"$label":"DIRECTED","_key":"120274","_from":"70629","_to":"70628"} +{"$label":"ACTS_IN","name":"Luke Twain","type":"Role","_key":"120309","_from":"70663","_to":"70662"} +{"$label":"ACTS_IN","name":"Min-hyeong Jo","type":"Role","_key":"120315","_from":"70672","_to":"70667"} +{"$label":"ACTS_IN","name":"Jong-ku Hwang","type":"Role","_key":"120314","_from":"70671","_to":"70667"} +{"$label":"ACTS_IN","name":"Seo-yeon Yu","type":"Role","_key":"120313","_from":"70670","_to":"70667"} +{"$label":"ACTS_IN","name":"Hyeon-soo Kang","type":"Role","_key":"120312","_from":"70669","_to":"70667"} +{"$label":"DIRECTED","_key":"120311","_from":"70668","_to":"70667"} +{"$label":"DIRECTED","_key":"120319","_from":"70677","_to":"70673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120318","_from":"70676","_to":"70673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120317","_from":"70675","_to":"70673"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120316","_from":"70674","_to":"70673"} +{"$label":"ACTS_IN","name":"Boronskaja","type":"Role","_key":"120332","_from":"70684","_to":"70681"} +{"$label":"ACTS_IN","name":"Ljubov","type":"Role","_key":"120328","_from":"70683","_to":"70681"} +{"$label":"ACTS_IN","name":"Boris Lermontov","type":"Role","_key":"120326","_from":"70682","_to":"70681"} +{"$label":"ACTS_IN","name":"Sandy","type":"Role","_key":"120341","_from":"70687","_to":"70686"} +{"$label":"ACTS_IN","name":"Frank Woodley","type":"Role","_key":"120345","_from":"70691","_to":"70689"} +{"$label":"ACTS_IN","name":"Colin Lane","type":"Role","_key":"120344","_from":"70690","_to":"70689"} +{"$label":"DIRECTED","_key":"120349","_from":"70694","_to":"70692"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120348","_from":"70693","_to":"70692"} +{"$label":"ACTS_IN","name":"Melissa","type":"Role","_key":"120358","_from":"70702","_to":"70696"} +{"$label":"ACTS_IN","name":"Dave","type":"Role","_key":"120357","_from":"70701","_to":"70696"} +{"$label":"ACTS_IN","name":"Amber","type":"Role","_key":"120356","_from":"70700","_to":"70696"} +{"$label":"ACTS_IN","name":"Stacy","type":"Role","_key":"120355","_from":"70699","_to":"70696"} +{"$label":"ACTS_IN","name":"Charlie","type":"Role","_key":"120354","_from":"70698","_to":"70696"} +{"$label":"DIRECTED","_key":"120350","_from":"70697","_to":"70696"} +{"$label":"ACTS_IN","name":"Mui Age 10","type":"Role","_key":"120361","_from":"70706","_to":"70703"} +{"$label":"ACTS_IN","name":"Mui Age 20","type":"Role","_key":"120360","_from":"70705","_to":"70703"} +{"$label":"DIRECTED","_key":"120359","_from":"70704","_to":"70703"} +{"$label":"DIRECTED","_key":"120366","_from":"70709","_to":"70708"} +{"$label":"ACTS_IN","name":"Kenny","type":"Role","_key":"120368","_from":"70712","_to":"70710"} +{"$label":"DIRECTED","_key":"120367","_from":"70711","_to":"70710"} +{"$label":"ACTS_IN","name":"Tucker Cleigh","type":"Role","_key":"120373","_from":"70715","_to":"70713"} +{"$label":"ACTS_IN","name":"Eugene Bell","type":"Role","_key":"120372","_from":"70714","_to":"70713"} +{"$label":"DIRECTED","_key":"120371","_from":"70715","_to":"70713"} +{"$label":"DIRECTED","_key":"120370","_from":"70714","_to":"70713"} +{"$label":"ACTS_IN","name":"Cat","type":"Role","_key":"120383","_from":"70721","_to":"70716"} +{"$label":"ACTS_IN","name":"Tom Sluti","type":"Role","_key":"120381","_from":"70720","_to":"70716"} +{"$label":"ACTS_IN","name":"Don Sluti","type":"Role","_key":"120380","_from":"70719","_to":"70716"} +{"$label":"ACTS_IN","name":"Elaine Sluti","type":"Role","_key":"120379","_from":"70718","_to":"70716"} +{"$label":"ACTS_IN","name":"Anne Sluti","type":"Role","_key":"120377","_from":"70717","_to":"70716"} +{"$label":"ACTS_IN","name":"Carmen","type":"Role","_key":"120399","_from":"70728","_to":"70723"} +{"$label":"ACTS_IN","name":"Priest Hitting Wood Plank","type":"Role","_key":"120397","_from":"70727","_to":"70723"} +{"$label":"ACTS_IN","name":"Cantor","type":"Role","_key":"120396","_from":"70726","_to":"70723"} +{"$label":"ACTS_IN","name":"Father Constantin","type":"Role","_key":"120395","_from":"70725","_to":"70723"} +{"$label":"ACTS_IN","name":"Serban","type":"Role","_key":"120394","_from":"70724","_to":"70723"} +{"$label":"ACTS_IN","name":"Le Maire","type":"Role","_key":"120411","_from":"70733","_to":"70729"} +{"$label":"ACTS_IN","name":"la journaliste LCI","type":"Role","_key":"120410","_from":"70732","_to":"70729"} +{"$label":"ACTS_IN","name":"le cur\u00e9 Jacques","type":"Role","_key":"120408","_from":"70731","_to":"70729"} +{"$label":"ACTS_IN","name":"Arnaud","type":"Role","_key":"120404","_from":"70730","_to":"70729"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120421","_from":"70744","_to":"70734"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120420","_from":"70743","_to":"70734"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120419","_from":"70742","_to":"70734"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120418","_from":"70741","_to":"70734"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120417","_from":"70740","_to":"70734"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120416","_from":"70739","_to":"70734"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120415","_from":"70738","_to":"70734"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120414","_from":"70737","_to":"70734"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120413","_from":"70736","_to":"70734"} +{"$label":"DIRECTED","_key":"120412","_from":"70735","_to":"70734"} +{"$label":"DIRECTED","_key":"120429","_from":"70749","_to":"70746"} +{"$label":"ACTS_IN","name":"Luke","type":"Role","_key":"120428","_from":"70748","_to":"70746"} +{"$label":"ACTS_IN","name":"Olivia","type":"Role","_key":"120427","_from":"70747","_to":"70746"} +{"$label":"ACTS_IN","name":"Roronoa Zoro","type":"Role","_key":"120443","_from":"70754","_to":"70752"} +{"$label":"DIRECTED","_key":"120439","_from":"70753","_to":"70752"} +{"$label":"DIRECTED","_key":"120451","_from":"70759","_to":"70756"} +{"$label":"ACTS_IN","name":"Daisy Duke","type":"Role","_key":"120448","_from":"70758","_to":"70756"} +{"$label":"ACTS_IN","name":"Luke Duke","type":"Role","_key":"120447","_from":"70757","_to":"70756"} +{"$label":"ACTS_IN","name":"Sherman","type":"Role","_key":"120454","_from":"70762","_to":"70761"} +{"$label":"DIRECTED","_key":"120486","_from":"70771","_to":"70764"} +{"$label":"ACTS_IN","name":"Terrell","type":"Role","_key":"120485","_from":"70770","_to":"70764"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"120482","_from":"70769","_to":"70764"} +{"$label":"ACTS_IN","name":"Grandpa Goodman","type":"Role","_key":"120480","_from":"70768","_to":"70764"} +{"$label":"ACTS_IN","name":"Micah the Fox (voice)","type":"Role","_key":"120474","_from":"70767","_to":"70764"} +{"$label":"ACTS_IN","name":"Jared the Skunk (voice)","type":"Role","_key":"120473","_from":"70766","_to":"70764"} +{"$label":"ACTS_IN","name":"Mooch the Fly (voice)","type":"Role","_key":"120472","_from":"70765","_to":"70764"} +{"$label":"ACTS_IN","name":"Dae Ka-ri","type":"Role","_key":"120494","_from":"70778","_to":"70774"} +{"$label":"ACTS_IN","name":"Kim Sang-do","type":"Role","_key":"120493","_from":"70777","_to":"70774"} +{"$label":"ACTS_IN","name":"Gye Do-shik","type":"Role","_key":"120492","_from":"70776","_to":"70774"} +{"$label":"DIRECTED","_key":"120491","_from":"70775","_to":"70774"} +{"$label":"ACTS_IN","name":"Jang Choon-dong","type":"Role","_key":"120585","_from":"70776","_to":"70824"} +{"$label":"ACTS_IN","name":"Gae Doo-sik","type":"Role","_key":"120565","_from":"70776","_to":"70810"} +{"$label":"ACTS_IN","name":"Lee Joong-dae","type":"Role","_key":"120586","_from":"70777","_to":"70824"} +{"$label":"ACTS_IN","name":"Sang-du","type":"Role","_key":"120567","_from":"70777","_to":"70810"} +{"$label":"ACTS_IN","name":"Jeong-ho","type":"Role","_key":"120700","_from":"70778","_to":"70891"} +{"$label":"ACTS_IN","name":"Moon Dong-sik, aka Dae Ga-ri","type":"Role","_key":"120587","_from":"70778","_to":"70824"} +{"$label":"ACTS_IN","name":"Dae Ga-ri","type":"Role","_key":"120568","_from":"70778","_to":"70810"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"120495","_from":"70780","_to":"70779"} +{"$label":"ACTS_IN","name":"Eun-ju","type":"Role","_key":"120504","_from":"70784","_to":"70782"} +{"$label":"DIRECTED","_key":"120502","_from":"70783","_to":"70782"} +{"$label":"DIRECTED","_key":"120526","_from":"70789","_to":"70788"} +{"$label":"ACTS_IN","name":"Ryley's Receptionist","type":"Role","_key":"120536","_from":"70794","_to":"70790"} +{"$label":"ACTS_IN","name":"Computer Clerk","type":"Role","_key":"120534","_from":"70793","_to":"70790"} +{"$label":"ACTS_IN","name":"Conductor","type":"Role","_key":"120533","_from":"70792","_to":"70790"} +{"$label":"ACTS_IN","name":"Frank","type":"Role","_key":"120532","_from":"70791","_to":"70790"} +{"$label":"ACTS_IN","name":"Colombe Josse","type":"Role","_key":"120545","_from":"70798","_to":"70795"} +{"$label":"ACTS_IN","name":"Paloma Josse","type":"Role","_key":"120540","_from":"70797","_to":"70795"} +{"$label":"DIRECTED","_key":"120538","_from":"70796","_to":"70795"} +{"$label":"ACTS_IN","name":"Andrew","type":"Role","_key":"120547","_from":"70801","_to":"70799"} +{"$label":"ACTS_IN","name":"Sandra","type":"Role","_key":"120546","_from":"70800","_to":"70799"} +{"$label":"ACTS_IN","name":"Simon McNeal","type":"Role","_key":"120549","_from":"70803","_to":"70802"} +{"$label":"DIRECTED","_key":"120558","_from":"70806","_to":"70805"} +{"$label":"ACTS_IN","name":"Oh Sang-jung","type":"Role","_key":"120566","_from":"70812","_to":"70810"} +{"$label":"DIRECTED","_key":"120564","_from":"70811","_to":"70810"} +{"$label":"DIRECTED","_key":"120584","_from":"70811","_to":"70824"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120579","_from":"70820","_to":"70813"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120578","_from":"70819","_to":"70813"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120577","_from":"70818","_to":"70813"} +{"$label":"ACTS_IN","name":"Quentin","type":"Role","_key":"120576","_from":"70817","_to":"70813"} +{"$label":"ACTS_IN","name":"One of the Oreos","type":"Role","_key":"120575","_from":"70816","_to":"70813"} +{"$label":"ACTS_IN","name":"One of the Oreos","type":"Role","_key":"120574","_from":"70815","_to":"70813"} +{"$label":"ACTS_IN","name":"Gary Danziger","type":"Role","_key":"120573","_from":"70814","_to":"70813"} +{"$label":"DIRECTED","_key":"120583","_from":"70823","_to":"70822"} +{"$label":"DIRECTED","_key":"120594","_from":"70828","_to":"70825"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"120590","_from":"70827","_to":"70825"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"120588","_from":"70826","_to":"70825"} +{"$label":"ACTS_IN","name":"Linda","type":"Role","_key":"120614","_from":"70841","_to":"70829"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"120613","_from":"70840","_to":"70829"} +{"$label":"ACTS_IN","name":"Ellie","type":"Role","_key":"120612","_from":"70839","_to":"70829"} +{"$label":"ACTS_IN","name":"Rick","type":"Role","_key":"120610","_from":"70838","_to":"70829"} +{"$label":"ACTS_IN","name":"Mira","type":"Role","_key":"120609","_from":"70837","_to":"70829"} +{"$label":"ACTS_IN","name":"Ally","type":"Role","_key":"120608","_from":"70836","_to":"70829"} +{"$label":"ACTS_IN","name":"Young George Barron","type":"Role","_key":"120607","_from":"70835","_to":"70829"} +{"$label":"ACTS_IN","name":"T.V. Commentator","type":"Role","_key":"120605","_from":"70834","_to":"70829"} +{"$label":"ACTS_IN","name":"Freddy","type":"Role","_key":"120604","_from":"70833","_to":"70829"} +{"$label":"ACTS_IN","name":"Alan","type":"Role","_key":"120602","_from":"70832","_to":"70829"} +{"$label":"ACTS_IN","name":"Young Willy","type":"Role","_key":"120600","_from":"70831","_to":"70829"} +{"$label":"ACTS_IN","name":"Rachel","type":"Role","_key":"120597","_from":"70830","_to":"70829"} +{"$label":"DIRECTED","_key":"120624","_from":"70846","_to":"70842"} +{"$label":"DIRECTED","_key":"120623","_from":"70845","_to":"70842"} +{"$label":"ACTS_IN","name":"Zilgai","type":"Role","_key":"120622","_from":"70844","_to":"70842"} +{"$label":"ACTS_IN","name":"Danyal","type":"Role","_key":"120621","_from":"70843","_to":"70842"} +{"$label":"DIRECTED","_key":"120636","_from":"70850","_to":"70847"} +{"$label":"ACTS_IN","name":"Sully","type":"Role","_key":"120635","_from":"70849","_to":"70847"} +{"$label":"ACTS_IN","name":"Detective Kelly","type":"Role","_key":"120634","_from":"70848","_to":"70847"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120637","_from":"70852","_to":"70851"} +{"$label":"ACTS_IN","name":"Chandru Parekh","type":"Role","_key":"120642","_from":"70854","_to":"70853"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"120649","_from":"70856","_to":"70855"} +{"$label":"DIRECTED","_key":"120661","_from":"70864","_to":"70859"} +{"$label":"ACTS_IN","name":"Rohit Khanna","type":"Role","_key":"120658","_from":"70863","_to":"70859"} +{"$label":"ACTS_IN","name":"Rahul Arora","type":"Role","_key":"120657","_from":"70862","_to":"70859"} +{"$label":"ACTS_IN","name":"Maanav","type":"Role","_key":"120656","_from":"70861","_to":"70859"} +{"$label":"ACTS_IN","name":"Janet","type":"Role","_key":"120655","_from":"70860","_to":"70859"} +{"$label":"DIRECTED","_key":"120672","_from":"70871","_to":"70865"} +{"$label":"ACTS_IN","name":"Nandini","type":"Role","_key":"120671","_from":"70870","_to":"70865"} +{"$label":"ACTS_IN","name":"Anand Banerjee","type":"Role","_key":"120670","_from":"70869","_to":"70865"} +{"$label":"ACTS_IN","name":"Dr. Rustam Pavri","type":"Role","_key":"120669","_from":"70868","_to":"70865"} +{"$label":"ACTS_IN","name":"Dr. Suman Asthana (Chinki)","type":"Role","_key":"120665","_from":"70867","_to":"70865"} +{"$label":"ACTS_IN","name":"Murli Prasad Sharma aka Munna Bhai","type":"Role","_key":"120662","_from":"70866","_to":"70865"} +{"$label":"ACTS_IN","name":"Vikrant Raina","type":"Role","_key":"120867","_from":"70866","_to":"70973"} +{"$label":"ACTS_IN","name":"Gauri","type":"Role","_key":"120837","_from":"70867","_to":"70961"} +{"$label":"ACTS_IN","name":"So-Hwi","type":"Role","_key":"120677","_from":"70875","_to":"70873"} +{"$label":"ACTS_IN","name":"Il-yeong","type":"Role","_key":"120676","_from":"70874","_to":"70873"} +{"$label":"ACTS_IN","name":"Steve O'Brien","type":"Role","_key":"120682","_from":"70878","_to":"70876"} +{"$label":"ACTS_IN","name":"Nikhil Kapoor","type":"Role","_key":"120678","_from":"70877","_to":"70876"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120685","_from":"70881","_to":"70879"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"120683","_from":"70880","_to":"70879"} +{"$label":"ACTS_IN","name":"Kohei","type":"Role","_key":"120690","_from":"70884","_to":"70882"} +{"$label":"DIRECTED","_key":"120688","_from":"70883","_to":"70882"} +{"$label":"ACTS_IN","name":"Kim Yeong-ho","type":"Role","_key":"120694","_from":"70888","_to":"70885"} +{"$label":"ACTS_IN","name":"Jeong Cheol-min","type":"Role","_key":"120693","_from":"70887","_to":"70885"} +{"$label":"DIRECTED","_key":"120692","_from":"70886","_to":"70885"} +{"$label":"ACTS_IN","name":"Far","type":"Role","_key":"120695","_from":"70890","_to":"70889"} +{"$label":"ACTS_IN","name":"Sang-taek","type":"Role","_key":"120699","_from":"70893","_to":"70891"} +{"$label":"DIRECTED","_key":"120696","_from":"70892","_to":"70891"} +{"$label":"ACTS_IN","name":"Puja","type":"Role","_key":"120708","_from":"70897","_to":"70894"} +{"$label":"ACTS_IN","name":"Deepti","type":"Role","_key":"120707","_from":"70896","_to":"70894"} +{"$label":"ACTS_IN","name":"Maggie","type":"Role","_key":"120705","_from":"70895","_to":"70894"} +{"$label":"ACTS_IN","name":"Jeetu's Mother","type":"Role","_key":"120720","_from":"70901","_to":"70898"} +{"$label":"ACTS_IN","name":"Natwar Jhunjhunwala","type":"Role","_key":"120717","_from":"70900","_to":"70898"} +{"$label":"ACTS_IN","name":"Meenakshi Singh Chauhan","type":"Role","_key":"120712","_from":"70899","_to":"70898"} +{"$label":"ACTS_IN","name":"Kang In-chan","type":"Role","_key":"120724","_from":"70906","_to":"70904"} +{"$label":"DIRECTED","_key":"120723","_from":"70905","_to":"70904"} +{"$label":"ACTS_IN","name":"Infirmi\u00e8re Martin 1","type":"Role","_key":"120742","_from":"70926","_to":"70913"} +{"$label":"ACTS_IN","name":"Enfant piscine 2","type":"Role","_key":"120741","_from":"70925","_to":"70913"} +{"$label":"ACTS_IN","name":"Enfant piscine 1","type":"Role","_key":"120740","_from":"70924","_to":"70913"} +{"$label":"ACTS_IN","name":"Doublure plongeon","type":"Role","_key":"120739","_from":"70923","_to":"70913"} +{"$label":"ACTS_IN","name":"Enfant aux fleurs","type":"Role","_key":"120738","_from":"70922","_to":"70913"} +{"$label":"ACTS_IN","name":"J\u00e9r\u00f4me","type":"Role","_key":"120737","_from":"70914","_to":"70913"} +{"$label":"ACTS_IN","name":"Pr\u00eatre","type":"Role","_key":"120736","_from":"70921","_to":"70913"} +{"$label":"ACTS_IN","name":"Pablo","type":"Role","_key":"120734","_from":"70920","_to":"70913"} +{"$label":"ACTS_IN","name":"Mathieu","type":"Role","_key":"120733","_from":"70919","_to":"70913"} +{"$label":"ACTS_IN","name":"P\u00e8re de Lucas","type":"Role","_key":"120732","_from":"70918","_to":"70913"} +{"$label":"ACTS_IN","name":"Rose","type":"Role","_key":"120731","_from":"70917","_to":"70913"} +{"$label":"ACTS_IN","name":"Martin","type":"Role","_key":"120729","_from":"70916","_to":"70913"} +{"$label":"ACTS_IN","name":"Lucas","type":"Role","_key":"120728","_from":"70915","_to":"70913"} +{"$label":"DIRECTED","_key":"120727","_from":"70914","_to":"70913"} +{"$label":"DIRECTED","_key":"120753","_from":"70934","_to":"70928"} +{"$label":"DIRECTED","_key":"120752","_from":"70933","_to":"70928"} +{"$label":"ACTS_IN","name":"Seth Bajodia","type":"Role","_key":"120750","_from":"70932","_to":"70928"} +{"$label":"ACTS_IN","name":"INSP. Karan","type":"Role","_key":"120749","_from":"70931","_to":"70928"} +{"$label":"ACTS_IN","name":"Vishwanath Sharma (Ajay's father)","type":"Role","_key":"120748","_from":"70930","_to":"70928"} +{"$label":"ACTS_IN","name":"Shobha (Ajay's Mother)","type":"Role","_key":"120746","_from":"70929","_to":"70928"} +{"$label":"DIRECTED","_key":"120762","_from":"70933","_to":"70935"} +{"$label":"DIRECTED","_key":"120763","_from":"70934","_to":"70935"} +{"$label":"ACTS_IN","name":"Mini","type":"Role","_key":"120759","_from":"70936","_to":"70935"} +{"$label":"DIRECTED","_key":"120764","_from":"70938","_to":"70937"} +{"$label":"ACTS_IN","name":"Valarie 'Val' Campbell Boyd","type":"Role","_key":"120784","_from":"70942","_to":"70940"} +{"$label":"ACTS_IN","name":"Marian 'Gil' Gilbert","type":"Role","_key":"120783","_from":"70941","_to":"70940"} +{"$label":"ACTS_IN","name":"Harleen's Father","type":"Role","_key":"120790","_from":"70945","_to":"70943"} +{"$label":"ACTS_IN","name":"Harleen Kaur","type":"Role","_key":"120789","_from":"70944","_to":"70943"} +{"$label":"ACTS_IN","name":"Ismail, the potter","type":"Role","_key":"120844","_from":"70945","_to":"70961"} +{"$label":"ACTS_IN","name":"Gloria Collinson","type":"Role","_key":"120834","_from":"70960","_to":"70947"} +{"$label":"ACTS_IN","name":"Technician #2","type":"Role","_key":"120833","_from":"70959","_to":"70947"} +{"$label":"ACTS_IN","name":"Gordon's Limo Driver","type":"Role","_key":"120832","_from":"70958","_to":"70947"} +{"$label":"ACTS_IN","name":"Engineer #2","type":"Role","_key":"120831","_from":"70957","_to":"70947"} +{"$label":"ACTS_IN","name":"John Pallet","type":"Role","_key":"120828","_from":"70956","_to":"70947"} +{"$label":"ACTS_IN","name":"George Peakes","type":"Role","_key":"120825","_from":"70955","_to":"70947"} +{"$label":"ACTS_IN","name":"Mary Gordon","type":"Role","_key":"120824","_from":"70954","_to":"70947"} +{"$label":"ACTS_IN","name":"Claire Connors","type":"Role","_key":"120822","_from":"70953","_to":"70947"} +{"$label":"ACTS_IN","name":"June Callwood","type":"Role","_key":"120821","_from":"70952","_to":"70947"} +{"$label":"ACTS_IN","name":"John George Diefenbaker","type":"Role","_key":"120817","_from":"70951","_to":"70947"} +{"$label":"ACTS_IN","name":"Rudy Paloffski","type":"Role","_key":"120815","_from":"70950","_to":"70947"} +{"$label":"ACTS_IN","name":"Edward Critchley","type":"Role","_key":"120813","_from":"70949","_to":"70947"} +{"$label":"ACTS_IN","name":"Fred Smye","type":"Role","_key":"120812","_from":"70948","_to":"70947"} +{"$label":"ACTS_IN","name":"Ram Singh","type":"Role","_key":"120852","_from":"70969","_to":"70961"} +{"$label":"ACTS_IN","name":"Kachra, the untouchable","type":"Role","_key":"120851","_from":"70968","_to":"70961"} +{"$label":"ACTS_IN","name":"Bagha, the mute drummer","type":"Role","_key":"120850","_from":"70967","_to":"70961"} +{"$label":"ACTS_IN","name":"Ishwar, Gauri's Father","type":"Role","_key":"120848","_from":"70966","_to":"70961"} +{"$label":"ACTS_IN","name":"Goli","type":"Role","_key":"120847","_from":"70965","_to":"70961"} +{"$label":"ACTS_IN","name":"Deva Sodhi","type":"Role","_key":"120845","_from":"70964","_to":"70961"} +{"$label":"ACTS_IN","name":"Guran, the fortune teller","type":"Role","_key":"120843","_from":"70963","_to":"70961"} +{"$label":"ACTS_IN","name":"Yashodamai, Bhuvan's mother","type":"Role","_key":"120840","_from":"70962","_to":"70961"} +{"$label":"DIRECTED","_key":"120861","_from":"70971","_to":"70970"} +{"$label":"ACTS_IN","name":"Young Sonia Raina","type":"Role","_key":"120874","_from":"70975","_to":"70973"} +{"$label":"ACTS_IN","name":"Orphanage Mother","type":"Role","_key":"120872","_from":"70974","_to":"70973"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"120887","_from":"70977","_to":"70976"} +{"$label":"ACTS_IN","name":"Kuhu's Father","type":"Role","_key":"120891","_from":"70979","_to":"70978"} +{"$label":"DIRECTED","_key":"120902","_from":"70987","_to":"70980"} +{"$label":"ACTS_IN","name":"Tanya","type":"Role","_key":"120901","_from":"70986","_to":"70980"} +{"$label":"ACTS_IN","name":"Devika","type":"Role","_key":"120900","_from":"70985","_to":"70980"} +{"$label":"ACTS_IN","name":"Debbie","type":"Role","_key":"120899","_from":"70984","_to":"70980"} +{"$label":"ACTS_IN","name":"Sakshi","type":"Role","_key":"120898","_from":"70983","_to":"70980"} +{"$label":"ACTS_IN","name":"Robin Mehta","type":"Role","_key":"120897","_from":"70982","_to":"70980"} +{"$label":"ACTS_IN","name":"Kedar Zaveri","type":"Role","_key":"120896","_from":"70981","_to":"70980"} +{"$label":"DIRECTED","_key":"120909","_from":"70993","_to":"70988"} +{"$label":"ACTS_IN","name":"Tekla","type":"Role","_key":"120908","_from":"70992","_to":"70988"} +{"$label":"ACTS_IN","name":"Jej Wysoko\u015b\u0107","type":"Role","_key":"120907","_from":"70991","_to":"70988"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"120906","_from":"70990","_to":"70988"} +{"$label":"ACTS_IN","name":"Lamia","type":"Role","_key":"120905","_from":"70989","_to":"70988"} +{"$label":"ACTS_IN","name":"Peeping Rolfe","type":"Role","_key":"120923","_from":"70995","_to":"70994"} +{"$label":"ACTS_IN","name":"Peeping Eric","type":"Role","_key":"120922","_from":"71004","_to":"70994"} +{"$label":"ACTS_IN","name":"June","type":"Role","_key":"120920","_from":"71003","_to":"70994"} +{"$label":"ACTS_IN","name":"Brittany","type":"Role","_key":"120918","_from":"71002","_to":"70994"} +{"$label":"ACTS_IN","name":"Dave Buckell","type":"Role","_key":"120917","_from":"71001","_to":"70994"} +{"$label":"ACTS_IN","name":"Mrs. Buckell","type":"Role","_key":"120916","_from":"71000","_to":"70994"} +{"$label":"ACTS_IN","name":"Supermodel 2","type":"Role","_key":"120914","_from":"70999","_to":"70994"} +{"$label":"ACTS_IN","name":"Supermodel 1","type":"Role","_key":"120913","_from":"70998","_to":"70994"} +{"$label":"ACTS_IN","name":"Genie","type":"Role","_key":"120912","_from":"70997","_to":"70994"} +{"$label":"ACTS_IN","name":"Walter Buckell","type":"Role","_key":"120911","_from":"70996","_to":"70994"} +{"$label":"DIRECTED","_key":"120910","_from":"70995","_to":"70994"} +{"$label":"DIRECTED","_key":"120928","_from":"71007","_to":"71005"} +{"$label":"ACTS_IN","name":"Lisa Macdougall","type":"Role","_key":"120927","_from":"71006","_to":"71005"} +{"$label":"DIRECTED","_key":"120941","_from":"71023","_to":"71017"} +{"$label":"ACTS_IN","name":"Mohammad Zaheer","type":"Role","_key":"120939","_from":"71022","_to":"71017"} +{"$label":"ACTS_IN","name":"Ikhlaque Ahmed","type":"Role","_key":"120938","_from":"71021","_to":"71017"} +{"$label":"ACTS_IN","name":"Ibrahim Khan","type":"Role","_key":"120937","_from":"71020","_to":"71017"} +{"$label":"ACTS_IN","name":"Jai Singh","type":"Role","_key":"120936","_from":"71019","_to":"71017"} +{"$label":"ACTS_IN","name":"Naina Roy","type":"Role","_key":"120935","_from":"71018","_to":"71017"} +{"$label":"DIRECTED","_key":"120949","_from":"71038","_to":"71032"} +{"$label":"ACTS_IN","name":"Father","type":"Role","_key":"120948","_from":"71037","_to":"71032"} +{"$label":"ACTS_IN","name":"Jeremy","type":"Role","_key":"120946","_from":"71036","_to":"71032"} +{"$label":"ACTS_IN","name":"Nikki","type":"Role","_key":"120945","_from":"71035","_to":"71032"} +{"$label":"ACTS_IN","name":"Ronny","type":"Role","_key":"120944","_from":"71034","_to":"71032"} +{"$label":"ACTS_IN","name":"Dr Levi Ellington","type":"Role","_key":"120943","_from":"71033","_to":"71032"} +{"$label":"DIRECTED","_key":"120955","_from":"71044","_to":"71039"} +{"$label":"ACTS_IN","name":"Cade","type":"Role","_key":"120954","_from":"71044","_to":"71039"} +{"$label":"ACTS_IN","name":"Declan","type":"Role","_key":"120953","_from":"71043","_to":"71039"} +{"$label":"ACTS_IN","name":"Raux Anwar","type":"Role","_key":"120952","_from":"71042","_to":"71039"} +{"$label":"ACTS_IN","name":"Zhanna","type":"Role","_key":"120951","_from":"71041","_to":"71039"} +{"$label":"ACTS_IN","name":"Taryn Anwar","type":"Role","_key":"120950","_from":"71040","_to":"71039"} +{"$label":"DIRECTED","_key":"120958","_from":"71047","_to":"71045"} +{"$label":"DIRECTED","_key":"120956","_from":"71046","_to":"71045"} +{"$label":"DIRECTED","_key":"120988","_from":"71068","_to":"71049"} +{"$label":"DIRECTED","_key":"120987","_from":"71065","_to":"71049"} +{"$label":"ACTS_IN","name":"Cat","type":"Role","_key":"120986","_from":"71067","_to":"71049"} +{"$label":"ACTS_IN","name":"Dog","type":"Role","_key":"120985","_from":"71066","_to":"71049"} +{"$label":"ACTS_IN","name":"Waiter","type":"Role","_key":"120983","_from":"71065","_to":"71049"} +{"$label":"ACTS_IN","name":"Photographer","type":"Role","_key":"120982","_from":"71064","_to":"71049"} +{"$label":"ACTS_IN","name":"Voice Of Jenna's Mom","type":"Role","_key":"120981","_from":"71063","_to":"71049"} +{"$label":"ACTS_IN","name":"Voice Of Lawsuit Guy","type":"Role","_key":"120980","_from":"71062","_to":"71049"} +{"$label":"ACTS_IN","name":"Marrying Priest","type":"Role","_key":"120979","_from":"71061","_to":"71049"} +{"$label":"ACTS_IN","name":"Spitting Homeless Man","type":"Role","_key":"120978","_from":"71060","_to":"71049"} +{"$label":"ACTS_IN","name":"Flirting Homeless Man","type":"Role","_key":"120977","_from":"71059","_to":"71049"} +{"$label":"ACTS_IN","name":"Offended Businessman","type":"Role","_key":"120976","_from":"71058","_to":"71049"} +{"$label":"ACTS_IN","name":"Channel 7 Reporter","type":"Role","_key":"120975","_from":"71057","_to":"71049"} +{"$label":"ACTS_IN","name":"Mike Tanaki","type":"Role","_key":"120974","_from":"71056","_to":"71049"} +{"$label":"ACTS_IN","name":"Jennifer","type":"Role","_key":"120972","_from":"71055","_to":"71049"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"120970","_from":"71054","_to":"71049"} +{"$label":"ACTS_IN","name":"Larry","type":"Role","_key":"120969","_from":"71053","_to":"71049"} +{"$label":"ACTS_IN","name":"Kathy Rohl","type":"Role","_key":"120968","_from":"71052","_to":"71049"} +{"$label":"ACTS_IN","name":"Sarah","type":"Role","_key":"120965","_from":"71051","_to":"71049"} +{"$label":"ACTS_IN","name":"Narrator","type":"Role","_key":"120964","_from":"71050","_to":"71049"} +{"$label":"ACTS_IN","name":"Pepito","type":"Role","_key":"120991","_from":"71071","_to":"71070"} +{"$label":"ACTS_IN","name":"Evan's Neighbor","type":"Role","_key":"121015","_from":"71077","_to":"71073"} +{"$label":"ACTS_IN","name":"Brock Pressman","type":"Role","_key":"121012","_from":"71076","_to":"71073"} +{"$label":"ACTS_IN","name":"Indigo Whitefeather","type":"Role","_key":"121007","_from":"71075","_to":"71073"} +{"$label":"ACTS_IN","name":"Olivia Danielson","type":"Role","_key":"120999","_from":"71074","_to":"71073"} +{"$label":"ACTS_IN","name":"Fatima","type":"Role","_key":"121030","_from":"71081","_to":"71078"} +{"$label":"ACTS_IN","name":"Don Juan Diego","type":"Role","_key":"121029","_from":"71080","_to":"71078"} +{"$label":"ACTS_IN","name":"The Wazir","type":"Role","_key":"121026","_from":"71079","_to":"71078"} +{"$label":"ACTS_IN","name":"Collins Hedgeworth","type":"Role","_key":"121048","_from":"71087","_to":"71084"} +{"$label":"ACTS_IN","name":"Bigby Powers","type":"Role","_key":"121046","_from":"71086","_to":"71084"} +{"$label":"ACTS_IN","name":"Priscilla Powers","type":"Role","_key":"121045","_from":"71085","_to":"71084"} +{"$label":"ACTS_IN","name":"Lerouge","type":"Role","_key":"121057","_from":"71094","_to":"71088"} +{"$label":"ACTS_IN","name":"Clayton","type":"Role","_key":"121056","_from":"71093","_to":"71088"} +{"$label":"ACTS_IN","name":"Ronald","type":"Role","_key":"121054","_from":"71092","_to":"71088"} +{"$label":"ACTS_IN","name":"Emily","type":"Role","_key":"121053","_from":"71091","_to":"71088"} +{"$label":"ACTS_IN","name":"Gavin","type":"Role","_key":"121052","_from":"71090","_to":"71088"} +{"$label":"ACTS_IN","name":"Toddster","type":"Role","_key":"121051","_from":"71089","_to":"71088"} +{"$label":"ACTS_IN","name":"Ernst Kessler","type":"Role","_key":"121066","_from":"71098","_to":"71097"} +{"$label":"ACTS_IN","name":"Kiyo, Shigeru's lover","type":"Role","_key":"121073","_from":"71101","_to":"71100"} +{"$label":"ACTS_IN","name":"Dr. Boileau","type":"Role","_key":"121085","_from":"71112","_to":"71109"} +{"$label":"ACTS_IN","name":"Marcel","type":"Role","_key":"121083","_from":"71111","_to":"71109"} +{"$label":"ACTS_IN","name":"Mimi","type":"Role","_key":"121081","_from":"71110","_to":"71109"} +{"$label":"ACTS_IN","name":"Joey Buttafuoco","type":"Role","_key":"121088","_from":"71114","_to":"71113"} +{"$label":"ACTS_IN","name":"Cpt. Vladimir Abajev","type":"Role","_key":"121093","_from":"71117","_to":"71115"} +{"$label":"DIRECTED","_key":"121092","_from":"71116","_to":"71115"} +{"$label":"ACTS_IN","name":"Jana","type":"Role","_key":"121099","_from":"71123","_to":"71118"} +{"$label":"ACTS_IN","name":"kapit\u00e1n pir\u00e1t\u016f","type":"Role","_key":"121098","_from":"71122","_to":"71118"} +{"$label":"ACTS_IN","name":"Artigas","type":"Role","_key":"121097","_from":"71121","_to":"71118"} +{"$label":"ACTS_IN","name":"Profesor Roch","type":"Role","_key":"121096","_from":"71120","_to":"71118"} +{"$label":"ACTS_IN","name":"\u0160imon Hart","type":"Role","_key":"121095","_from":"71119","_to":"71118"} +{"$label":"ACTS_IN","name":"podnikatel Budaj","type":"Role","_key":"121117","_from":"71137","_to":"71127"} +{"$label":"ACTS_IN","name":"Bu\u010dkovsk\u00fd","type":"Role","_key":"121116","_from":"71136","_to":"71127"} +{"$label":"ACTS_IN","name":"Mi\u0161ko","type":"Role","_key":"121115","_from":"71135","_to":"71127"} +{"$label":"ACTS_IN","name":"policajt Rovniak","type":"Role","_key":"121113","_from":"71134","_to":"71127"} +{"$label":"ACTS_IN","name":"kn\u011bz Marek","type":"Role","_key":"121112","_from":"71133","_to":"71127"} +{"$label":"ACTS_IN","name":"podnikatel Peter","type":"Role","_key":"121111","_from":"71132","_to":"71127"} +{"$label":"ACTS_IN","name":"M\u00e1ria P\u00e1nikov\u00e1","type":"Role","_key":"121110","_from":"71131","_to":"71127"} +{"$label":"ACTS_IN","name":"podnikatel \u0160tefan","type":"Role","_key":"121109","_from":"71130","_to":"71127"} +{"$label":"ACTS_IN","name":"T\u00f3no P\u00e1nik","type":"Role","_key":"121108","_from":"71129","_to":"71127"} +{"$label":"DIRECTED","_key":"121107","_from":"71128","_to":"71127"} +{"$label":"ACTS_IN","name":"Squint","type":"Role","_key":"121130","_from":"71144","_to":"71139"} +{"$label":"ACTS_IN","name":"Jungle Bob","type":"Role","_key":"121129","_from":"71143","_to":"71139"} +{"$label":"ACTS_IN","name":"Brick","type":"Role","_key":"121128","_from":"71142","_to":"71139"} +{"$label":"ACTS_IN","name":"Chief Quimby","type":"Role","_key":"121123","_from":"71141","_to":"71139"} +{"$label":"ACTS_IN","name":"Penny","type":"Role","_key":"121122","_from":"71140","_to":"71139"} +{"$label":"DIRECTED","_key":"121139","_from":"71152","_to":"71145"} +{"$label":"ACTS_IN","name":"JOHNNY","type":"Role","_key":"121137","_from":"71151","_to":"71145"} +{"$label":"ACTS_IN","name":"FELIX","type":"Role","_key":"121136","_from":"71150","_to":"71145"} +{"$label":"ACTS_IN","name":"BUNICUL","type":"Role","_key":"121135","_from":"71149","_to":"71145"} +{"$label":"ACTS_IN","name":"SANDU","type":"Role","_key":"121134","_from":"71148","_to":"71145"} +{"$label":"ACTS_IN","name":"GLONT","type":"Role","_key":"121133","_from":"71147","_to":"71145"} +{"$label":"ACTS_IN","name":"CRISTINA","type":"Role","_key":"121131","_from":"71146","_to":"71145"} +{"$label":"ACTS_IN","name":"Dr. Klebs","type":"Role","_key":"121151","_from":"71167","_to":"71158"} +{"$label":"ACTS_IN","name":"Alice","type":"Role","_key":"121150","_from":"71166","_to":"71158"} +{"$label":"ACTS_IN","name":"Libellule","type":"Role","_key":"121148","_from":"71165","_to":"71158"} +{"$label":"ACTS_IN","name":"Tommy","type":"Role","_key":"121147","_from":"71164","_to":"71158"} +{"$label":"ACTS_IN","name":"Baptiste","type":"Role","_key":"121145","_from":"71163","_to":"71158"} +{"$label":"ACTS_IN","name":"Antoine","type":"Role","_key":"121144","_from":"71162","_to":"71158"} +{"$label":"ACTS_IN","name":"Alix","type":"Role","_key":"121143","_from":"71161","_to":"71158"} +{"$label":"ACTS_IN","name":"Bingo","type":"Role","_key":"121142","_from":"71160","_to":"71158"} +{"$label":"ACTS_IN","name":"Le propri\u00e9taire","type":"Role","_key":"121141","_from":"71159","_to":"71158"} +{"$label":"ACTS_IN","name":"Min Jae-il","type":"Role","_key":"121161","_from":"71175","_to":"71173"} +{"$label":"ACTS_IN","name":"Kang Seong-ju","type":"Role","_key":"121159","_from":"71174","_to":"71173"} +{"$label":"DIRECTED","_key":"121172","_from":"71180","_to":"71176"} +{"$label":"ACTS_IN","name":"Brooke","type":"Role","_key":"121171","_from":"71179","_to":"71176"} +{"$label":"ACTS_IN","name":"Abbott","type":"Role","_key":"121169","_from":"71178","_to":"71176"} +{"$label":"ACTS_IN","name":"Emma","type":"Role","_key":"121167","_from":"71177","_to":"71176"} +{"$label":"ACTS_IN","name":"Therapist","type":"Role","_key":"121182","_from":"71184","_to":"71181"} +{"$label":"ACTS_IN","name":"Priest","type":"Role","_key":"121181","_from":"71183","_to":"71181"} +{"$label":"ACTS_IN","name":"Crazy Johnny","type":"Role","_key":"121179","_from":"71182","_to":"71181"} +{"$label":"ACTS_IN","name":"Policewoman","type":"Role","_key":"121197","_from":"71192","_to":"71185"} +{"$label":"ACTS_IN","name":"Suzy","type":"Role","_key":"121195","_from":"71191","_to":"71185"} +{"$label":"ACTS_IN","name":"Sean","type":"Role","_key":"121194","_from":"71190","_to":"71185"} +{"$label":"ACTS_IN","name":"Joey","type":"Role","_key":"121193","_from":"71189","_to":"71185"} +{"$label":"ACTS_IN","name":"Stacey","type":"Role","_key":"121188","_from":"71188","_to":"71185"} +{"$label":"ACTS_IN","name":"Florrie","type":"Role","_key":"121187","_from":"71187","_to":"71185"} +{"$label":"ACTS_IN","name":"Ian","type":"Role","_key":"121185","_from":"71186","_to":"71185"} +{"$label":"DIRECTED","_key":"121199","_from":"71195","_to":"71194"} +{"$label":"ACTS_IN","name":"Chef de Village","type":"Role","_key":"121214","_from":"71202","_to":"71198"} +{"$label":"ACTS_IN","name":"Yogi Hebadaddy","type":"Role","_key":"121213","_from":"71201","_to":"71198"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"121212","_from":"71200","_to":"71198"} +{"$label":"ACTS_IN","name":"Jackson Reach","type":"Role","_key":"121210","_from":"71199","_to":"71198"} +{"$label":"DIRECTED","_key":"121227","_from":"71212","_to":"71206"} +{"$label":"ACTS_IN","name":"Michelle","type":"Role","_key":"121225","_from":"71211","_to":"71206"} +{"$label":"ACTS_IN","name":"Ramirez","type":"Role","_key":"121224","_from":"71210","_to":"71206"} +{"$label":"ACTS_IN","name":"Shameer","type":"Role","_key":"121223","_from":"71209","_to":"71206"} +{"$label":"ACTS_IN","name":"Sonny","type":"Role","_key":"121222","_from":"71208","_to":"71206"} +{"$label":"ACTS_IN","name":"Frank Lowies","type":"Role","_key":"121216","_from":"71207","_to":"71206"} +{"$label":"ACTS_IN","name":"Vic","type":"Role","_key":"121233","_from":"71216","_to":"71215"} +{"$label":"ACTS_IN","name":"El Sincho","type":"Role","_key":"121238","_from":"71220","_to":"71217"} +{"$label":"ACTS_IN","name":"Pochita","type":"Role","_key":"121236","_from":"71219","_to":"71217"} +{"$label":"ACTS_IN","name":"Pantaleon Pantoja","type":"Role","_key":"121235","_from":"71218","_to":"71217"} +{"$label":"DIRECTED","_key":"121243","_from":"71222","_to":"71221"} +{"$label":"ACTS_IN","name":"Eve","type":"Role","_key":"121251","_from":"71227","_to":"71223"} +{"$label":"ACTS_IN","name":"Farley","type":"Role","_key":"121248","_from":"71226","_to":"71223"} +{"$label":"ACTS_IN","name":"Yu Dum Fok","type":"Role","_key":"121247","_from":"71225","_to":"71223"} +{"$label":"ACTS_IN","name":"Kaitlin","type":"Role","_key":"121246","_from":"71224","_to":"71223"} +{"$label":"DIRECTED","_key":"121259","_from":"71234","_to":"71229"} +{"$label":"ACTS_IN","name":"Jack Langford","type":"Role","_key":"121258","_from":"71233","_to":"71229"} +{"$label":"ACTS_IN","name":"Brandon","type":"Role","_key":"121257","_from":"71232","_to":"71229"} +{"$label":"ACTS_IN","name":"Tex","type":"Role","_key":"121256","_from":"71231","_to":"71229"} +{"$label":"ACTS_IN","name":"Josh Stevens","type":"Role","_key":"121255","_from":"71230","_to":"71229"} +{"$label":"DIRECTED","_key":"121264","_from":"71239","_to":"71235"} +{"$label":"ACTS_IN","name":"Monica","type":"Role","_key":"121262","_from":"71238","_to":"71235"} +{"$label":"ACTS_IN","name":"April","type":"Role","_key":"121261","_from":"71237","_to":"71235"} +{"$label":"ACTS_IN","name":"Courtney","type":"Role","_key":"121260","_from":"71236","_to":"71235"} +{"$label":"ACTS_IN","name":"Captain","type":"Role","_key":"121276","_from":"71252","_to":"71240"} +{"$label":"ACTS_IN","name":"Angel","type":"Role","_key":"121275","_from":"71251","_to":"71240"} +{"$label":"ACTS_IN","name":"Death","type":"Role","_key":"121274","_from":"71250","_to":"71240"} +{"$label":"ACTS_IN","name":"Senior Lieutenant","type":"Role","_key":"121273","_from":"71249","_to":"71240"} +{"$label":"ACTS_IN","name":"Titarenko","type":"Role","_key":"121272","_from":"71248","_to":"71240"} +{"$label":"ACTS_IN","name":"Belikov","type":"Role","_key":"121271","_from":"71247","_to":"71240"} +{"$label":"ACTS_IN","name":"Zyrin","type":"Role","_key":"121270","_from":"71246","_to":"71240"} +{"$label":"ACTS_IN","name":"Kudrin","type":"Role","_key":"121269","_from":"71245","_to":"71240"} +{"$label":"ACTS_IN","name":"Zub","type":"Role","_key":"121268","_from":"71244","_to":"71240"} +{"$label":"ACTS_IN","name":"Elin","type":"Role","_key":"121267","_from":"71243","_to":"71240"} +{"$label":"ACTS_IN","name":"The Unknown Man","type":"Role","_key":"121266","_from":"71242","_to":"71240"} +{"$label":"DIRECTED","_key":"121265","_from":"71241","_to":"71240"} +{"$label":"ACTS_IN","name":"Karen Clarke","type":"Role","_key":"121287","_from":"71257","_to":"71254"} +{"$label":"ACTS_IN","name":"Toby Wright","type":"Role","_key":"121283","_from":"71256","_to":"71254"} +{"$label":"DIRECTED","_key":"121278","_from":"71255","_to":"71254"} +{"$label":"DIRECTED","_key":"121297","_from":"71268","_to":"71263"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"121296","_from":"71267","_to":"71263"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"121295","_from":"71266","_to":"71263"} +{"$label":"ACTS_IN","name":"himself","type":"Role","_key":"121294","_from":"71265","_to":"71263"} +{"$label":"ACTS_IN","name":"MC Frontalot","type":"Role","_key":"121293","_from":"71264","_to":"71263"} +{"$label":"ACTS_IN","name":"Valora Smith","type":"Role","_key":"121300","_from":"71272","_to":"71270"} +{"$label":"ACTS_IN","name":"Ridley Thompson","type":"Role","_key":"121299","_from":"71271","_to":"71270"} +{"$label":"ACTS_IN","name":"Tricks","type":"Role","_key":"121306","_from":"71275","_to":"71273"} +{"$label":"ACTS_IN","name":"Ronnie","type":"Role","_key":"121305","_from":"71274","_to":"71273"} +{"$label":"ACTS_IN","name":"Elvadine","type":"Role","_key":"121319","_from":"71282","_to":"71281"} +{"$label":"DIRECTED","_key":"121326","_from":"71286","_to":"71285"} +{"$label":"DIRECTED","_key":"121335","_from":"71297","_to":"71288"} +{"$label":"ACTS_IN","name":"Peter Suter","type":"Role","_key":"121334","_from":"71296","_to":"71288"} +{"$label":"ACTS_IN","name":"Toni Schelbert","type":"Role","_key":"121333","_from":"71295","_to":"71288"} +{"$label":"ACTS_IN","name":"Josef Schelbert","type":"Role","_key":"121332","_from":"71294","_to":"71288"} +{"$label":"ACTS_IN","name":"Dominic Langenegger","type":"Role","_key":"121331","_from":"71293","_to":"71288"} +{"$label":"ACTS_IN","name":"Alois Langenegger","type":"Role","_key":"121330","_from":"71292","_to":"71288"} +{"$label":"ACTS_IN","name":"Erich Gwerder","type":"Role","_key":"121329","_from":"71291","_to":"71288"} +{"$label":"ACTS_IN","name":"Albert Gwerder","type":"Role","_key":"121328","_from":"71290","_to":"71288"} +{"$label":"ACTS_IN","name":"Anton B\u00fceler","type":"Role","_key":"121327","_from":"71289","_to":"71288"} +{"$label":"ACTS_IN","name":"Various Characters","type":"Role","_key":"121350","_from":"71308","_to":"71298"} +{"$label":"ACTS_IN","name":"Alei","type":"Role","_key":"121349","_from":"71307","_to":"71298"} +{"$label":"ACTS_IN","name":"Julia (as Melodee Spivack)","type":"Role","_key":"121347","_from":"71306","_to":"71298"} +{"$label":"ACTS_IN","name":"Ry\u00fbken","type":"Role","_key":"121346","_from":"71305","_to":"71298"} +{"$label":"ACTS_IN","name":"Airi","type":"Role","_key":"121345","_from":"71304","_to":"71298"} +{"$label":"ACTS_IN","name":"Bat (Bart) (as Mie Suzuki)","type":"Role","_key":"121344","_from":"71303","_to":"71298"} +{"$label":"ACTS_IN","name":"Rin (Lynn)","type":"Role","_key":"121343","_from":"71302","_to":"71298"} +{"$label":"ACTS_IN","name":"Shin","type":"Role","_key":"121341","_from":"71301","_to":"71298"} +{"$label":"ACTS_IN","name":"Jagi","type":"Role","_key":"121340","_from":"71300","_to":"71298"} +{"$label":"ACTS_IN","name":"Yuria (Julia)","type":"Role","_key":"121338","_from":"71299","_to":"71298"} +{"$label":"DIRECTED","_key":"121356","_from":"71313","_to":"71310"} +{"$label":"ACTS_IN","name":"Omatsu","type":"Role","_key":"121354","_from":"71312","_to":"71310"} +{"$label":"ACTS_IN","name":"Ohama","type":"Role","_key":"121353","_from":"71311","_to":"71310"} +{"$label":"ACTS_IN","name":"Keum Yeon-ja","type":"Role","_key":"121359","_from":"71316","_to":"71314"} +{"$label":"ACTS_IN","name":"Dachimawa Lee","type":"Role","_key":"121358","_from":"71315","_to":"71314"} +{"$label":"DIRECTED","_key":"121369","_from":"71325","_to":"71319"} +{"$label":"ACTS_IN","name":"Sheriff Rogers","type":"Role","_key":"121367","_from":"71324","_to":"71319"} +{"$label":"ACTS_IN","name":"Mr. Abrams","type":"Role","_key":"121366","_from":"71323","_to":"71319"} +{"$label":"ACTS_IN","name":"Mr. L.C. Parett","type":"Role","_key":"121365","_from":"71322","_to":"71319"} +{"$label":"ACTS_IN","name":"Hettie White","type":"Role","_key":"121364","_from":"71321","_to":"71319"} +{"$label":"ACTS_IN","name":"Kim Parker","type":"Role","_key":"121363","_from":"71320","_to":"71319"} +{"$label":"ACTS_IN","name":"Cooper (uncredited)","type":"Role","_key":"121393","_from":"71335","_to":"71326"} +{"$label":"ACTS_IN","name":"Mateo (uncredited)","type":"Role","_key":"121392","_from":"71334","_to":"71326"} +{"$label":"ACTS_IN","name":"Hunter Brute","type":"Role","_key":"121391","_from":"71333","_to":"71326"} +{"$label":"ACTS_IN","name":"Hunter Shape","type":"Role","_key":"121390","_from":"71332","_to":"71326"} +{"$label":"ACTS_IN","name":"Hunter Weasel","type":"Role","_key":"121389","_from":"71331","_to":"71326"} +{"$label":"ACTS_IN","name":"Young Bower","type":"Role","_key":"121383","_from":"71330","_to":"71326"} +{"$label":"ACTS_IN","name":"Young Bower's Mother","type":"Role","_key":"121381","_from":"71329","_to":"71326"} +{"$label":"ACTS_IN","name":"Child Hunter","type":"Role","_key":"121380","_from":"71328","_to":"71326"} +{"$label":"ACTS_IN","name":"Manh","type":"Role","_key":"121374","_from":"71327","_to":"71326"} +{"$label":"ACTS_IN","name":"Trudy","type":"Role","_key":"121410","_from":"71337","_to":"71336"} +{"$label":"ACTS_IN","name":"Sherry","type":"Role","_key":"121416","_from":"71340","_to":"71338"} +{"$label":"ACTS_IN","name":"Sylvia","type":"Role","_key":"121412","_from":"71339","_to":"71338"} +{"$label":"ACTS_IN","name":"Captain Mackie","type":"Role","_key":"121444","_from":"71348","_to":"71342"} +{"$label":"ACTS_IN","name":"Beth Harding","type":"Role","_key":"121443","_from":"71347","_to":"71342"} +{"$label":"ACTS_IN","name":"Sean Harding","type":"Role","_key":"121441","_from":"71346","_to":"71342"} +{"$label":"ACTS_IN","name":"Detective Shay","type":"Role","_key":"121440","_from":"71345","_to":"71342"} +{"$label":"ACTS_IN","name":"Mrs. Cutter","type":"Role","_key":"121439","_from":"71344","_to":"71342"} +{"$label":"ACTS_IN","name":"Michael Harding","type":"Role","_key":"121434","_from":"71343","_to":"71342"} +{"$label":"DIRECTED","_key":"121456","_from":"71350","_to":"71349"} +{"$label":"DIRECTED","_key":"121464","_from":"71353","_to":"71351"} +{"$label":"ACTS_IN","name":"Clown Zombie","type":"Role","_key":"121463","_from":"71352","_to":"71351"} +{"$label":"ACTS_IN","name":"Jonathan Grove","type":"Role","_key":"121475","_from":"71360","_to":"71354"} +{"$label":"ACTS_IN","name":"Cynthia Daniels","type":"Role","_key":"121474","_from":"71359","_to":"71354"} +{"$label":"ACTS_IN","name":"Nadia Monroy","type":"Role","_key":"121473","_from":"71358","_to":"71354"} +{"$label":"ACTS_IN","name":"Janet Cunningham","type":"Role","_key":"121468","_from":"71357","_to":"71354"} +{"$label":"ACTS_IN","name":"Lori Milligan","type":"Role","_key":"121466","_from":"71356","_to":"71354"} +{"$label":"ACTS_IN","name":"Nick O'Bannon","type":"Role","_key":"121465","_from":"71355","_to":"71354"} +{"$label":"ACTS_IN","name":"Autumn","type":"Role","_key":"121485","_from":"71363","_to":"71361"} +{"$label":"ACTS_IN","name":"Alison","type":"Role","_key":"121484","_from":"71362","_to":"71361"} +{"$label":"DIRECTED","_key":"121490","_from":"71367","_to":"71366"} +{"$label":"DIRECTED","_key":"121499","_from":"71372","_to":"71370"} +{"$label":"ACTS_IN","name":"Toaster (voice)","type":"Role","_key":"121498","_from":"71371","_to":"71370"} +{"$label":"ACTS_IN","name":"Tanaka","type":"Role","_key":"121505","_from":"71375","_to":"71373"} +{"$label":"ACTS_IN","name":"Eug\u00e8ne","type":"Role","_key":"121504","_from":"71374","_to":"71373"} +{"$label":"DIRECTED","_key":"121506","_from":"71377","_to":"71376"} +{"$label":"DIRECTED","_key":"121508","_from":"71379","_to":"71378"} +{"$label":"ACTS_IN","name":"Aga","type":"Role","_key":"121525","_from":"71397","_to":"71381"} +{"$label":"ACTS_IN","name":"Dada's double","type":"Role","_key":"121524","_from":"71396","_to":"71381"} +{"$label":"ACTS_IN","name":"Young Koshima Tomoko","type":"Role","_key":"121523","_from":"71395","_to":"71381"} +{"$label":"ACTS_IN","name":"Teacher \/ Kousuke Atari","type":"Role","_key":"121522","_from":"71394","_to":"71381"} +{"$label":"ACTS_IN","name":"Hotel Manager","type":"Role","_key":"121521","_from":"71393","_to":"71381"} +{"$label":"ACTS_IN","name":"Aga's Mother","type":"Role","_key":"121520","_from":"71392","_to":"71381"} +{"$label":"ACTS_IN","name":"Olalan - Rauma's Father","type":"Role","_key":"121519","_from":"71391","_to":"71381"} +{"$label":"ACTS_IN","name":"Aga's Stepfather","type":"Role","_key":"121518","_from":"71390","_to":"71381"} +{"$label":"ACTS_IN","name":"Mingchu","type":"Role","_key":"121517","_from":"71389","_to":"71381"} +{"$label":"ACTS_IN","name":"Dada","type":"Role","_key":"121516","_from":"71388","_to":"71381"} +{"$label":"ACTS_IN","name":"Old Mao","type":"Role","_key":"121515","_from":"71387","_to":"71381"} +{"$label":"ACTS_IN","name":"Malasun","type":"Role","_key":"121514","_from":"71386","_to":"71381"} +{"$label":"ACTS_IN","name":"Frog","type":"Role","_key":"121513","_from":"71385","_to":"71381"} +{"$label":"ACTS_IN","name":"Rauma","type":"Role","_key":"121512","_from":"71384","_to":"71381"} +{"$label":"ACTS_IN","name":"Tomoko","type":"Role","_key":"121511","_from":"71383","_to":"71381"} +{"$label":"DIRECTED","_key":"121510","_from":"71382","_to":"71381"} +{"$label":"ACTS_IN","name":"Mannaja","type":"Role","_key":"121529","_from":"71400","_to":"71399"} +{"$label":"DIRECTED","_key":"121540","_from":"71409","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121536","_from":"71408","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121535","_from":"71407","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121534","_from":"71406","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121533","_from":"71405","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121532","_from":"71404","_to":"71402"} +{"$label":"ACTS_IN","name":"","type":"Role","_key":"121531","_from":"71403","_to":"71402"} +{"$label":"DIRECTED","_key":"121550","_from":"71417","_to":"71410"} +{"$label":"ACTS_IN","name":"Ramachandran","type":"Role","_key":"121549","_from":"71416","_to":"71410"} +{"$label":"ACTS_IN","name":"Ashok","type":"Role","_key":"121548","_from":"71415","_to":"71410"} +{"$label":"ACTS_IN","name":"Mr. Kamdhar","type":"Role","_key":"121547","_from":"71414","_to":"71410"} +{"$label":"ACTS_IN","name":"Manohar's Mother","type":"Role","_key":"121546","_from":"71413","_to":"71410"} +{"$label":"ACTS_IN","name":"Manoj","type":"Role","_key":"121545","_from":"71412","_to":"71410"} +{"$label":"ACTS_IN","name":"Dr. Shinde","type":"Role","_key":"121544","_from":"71411","_to":"71410"} +{"$label":"ACTS_IN","name":"Mohan Kant","type":"Role","_key":"121559","_from":"71424","_to":"71418"} +{"$label":"ACTS_IN","name":"Doctor","type":"Role","_key":"121557","_from":"71423","_to":"71418"} +{"$label":"ACTS_IN","name":"Gayatri Devi","type":"Role","_key":"121555","_from":"71422","_to":"71418"} +{"$label":"ACTS_IN","name":"Lisa Singh Rathod","type":"Role","_key":"121553","_from":"71421","_to":"71418"} +{"$label":"ACTS_IN","name":"Arjun Singh Rathod","type":"Role","_key":"121552","_from":"71420","_to":"71418"} +{"$label":"DIRECTED","_key":"121551","_from":"71419","_to":"71418"} +{"$label":"ACTS_IN","name":"Harlock","type":"Role","_key":"121569","_from":"71427","_to":"71426"} +{"$label":"DIRECTED","_key":"121575","_from":"71430","_to":"71429"} +{"$label":"ACTS_IN","name":"Antonio","type":"Role","_key":"121579","_from":"71434","_to":"71431"} +{"$label":"ACTS_IN","name":"Isabella","type":"Role","_key":"121578","_from":"71433","_to":"71431"} +{"$label":"ACTS_IN","name":"Santo","type":"Role","_key":"121577","_from":"71432","_to":"71431"} +{"$label":"ACTS_IN","name":"Gareth","type":"Role","_key":"121588","_from":"71439","_to":"71435"} +{"$label":"ACTS_IN","name":"Percival","type":"Role","_key":"121587","_from":"71438","_to":"71435"} +{"$label":"ACTS_IN","name":"Elaine","type":"Role","_key":"121586","_from":"71437","_to":"71435"} +{"$label":"ACTS_IN","name":"Morgan Le Fay","type":"Role","_key":"121583","_from":"71436","_to":"71435"} +{"$label":"ACTS_IN","name":"Sergeant Pierce","type":"Role","_key":"121600","_from":"71443","_to":"71440"} +{"$label":"ACTS_IN","name":"Sheila Embling","type":"Role","_key":"121596","_from":"71442","_to":"71440"} +{"$label":"ACTS_IN","name":"Freya Olsen","type":"Role","_key":"121591","_from":"71441","_to":"71440"} +{"$label":"ACTS_IN","name":"Lisa","type":"Role","_key":"121622","_from":"71452","_to":"71451"} +{"$label":"ACTS_IN","name":"Mario","type":"Role","_key":"121628","_from":"71456","_to":"71454"} +{"$label":"ACTS_IN","name":"Officer Miglioriti","type":"Role","_key":"121627","_from":"71455","_to":"71454"} +{"$label":"ACTS_IN","name":"Gorgo","type":"Role","_key":"121635","_from":"71459","_to":"71457"} +{"$label":"ACTS_IN","name":"Xerxes","type":"Role","_key":"121633","_from":"71458","_to":"71457"} +{"$label":"DIRECTED","_key":"121639","_from":"71462","_to":"71460"} +{"$label":"ACTS_IN","name":"Himself","type":"Role","_key":"121638","_from":"71461","_to":"71460"} +{"$label":"ACTS_IN","name":"Second Secretary","type":"Role","_key":"121654","_from":"71467","_to":"71463"} +{"$label":"ACTS_IN","name":"Edwin Orlin","type":"Role","_key":"121651","_from":"71466","_to":"71463"} +{"$label":"ACTS_IN","name":"Lily Gold","type":"Role","_key":"121650","_from":"71465","_to":"71463"} +{"$label":"ACTS_IN","name":"Ray Cordette","type":"Role","_key":"121647","_from":"71464","_to":"71463"} +{"$label":"ACTS_IN","name":"True Heart Bear (voice)","type":"Role","_key":"121662","_from":"71473","_to":"71468"} +{"$label":"ACTS_IN","name":"John (voice)","type":"Role","_key":"121661","_from":"71472","_to":"71468"} +{"$label":"ACTS_IN","name":"Great Wishing Star (voice)","type":"Role","_key":"121658","_from":"71471","_to":"71468"} +{"$label":"ACTS_IN","name":"Dark Heart \/ The Boy (voice)","type":"Role","_key":"121657","_from":"71470","_to":"71468"} +{"$label":"DIRECTED","_key":"121656","_from":"71469","_to":"71468"} +{"$label":"ACTS_IN","name":"St\u00e9phanie","type":"Role","_key":"121668","_from":"71478","_to":"71474"} +{"$label":"ACTS_IN","name":"Julie","type":"Role","_key":"121667","_from":"71477","_to":"71474"} +{"$label":"ACTS_IN","name":"Charlotte","type":"Role","_key":"121666","_from":"71476","_to":"71474"} +{"$label":"DIRECTED","_key":"121664","_from":"71475","_to":"71474"} +{"$label":"DIRECTED","_key":"121679","_from":"71486","_to":"71480"} +{"$label":"ACTS_IN","name":"Sunil Mehta","type":"Role","_key":"121677","_from":"71485","_to":"71480"} +{"$label":"ACTS_IN","name":"JC","type":"Role","_key":"121676","_from":"71484","_to":"71480"} +{"$label":"ACTS_IN","name":"Kuber","type":"Role","_key":"121675","_from":"71483","_to":"71480"} +{"$label":"ACTS_IN","name":"AGM","type":"Role","_key":"121674","_from":"71482","_to":"71480"} +{"$label":"ACTS_IN","name":"Zaramud","type":"Role","_key":"121672","_from":"71481","_to":"71480"} +{"$label":"ACTS_IN","name":"Jackie","type":"Role","_key":"121682","_from":"71489","_to":"71488"} +{"$label":"ACTS_IN","name":"Cracker's woman","type":"Role","_key":"121692","_from":"71492","_to":"71490"} +{"$label":"ACTS_IN","name":"Monty","type":"Role","_key":"121690","_from":"71491","_to":"71490"} +{"$label":"ACTS_IN","name":"Ahmet from India","type":"Role","_key":"121707","_from":"71498","_to":"71494"} +{"$label":"ACTS_IN","name":"Officer Warzak","type":"Role","_key":"121706","_from":"71497","_to":"71494"} +{"$label":"ACTS_IN","name":"Dirk","type":"Role","_key":"121704","_from":"71496","_to":"71494"} +{"$label":"ACTS_IN","name":"Mrs. Check","type":"Role","_key":"121703","_from":"71495","_to":"71494"} +{"$label":"ACTS_IN","name":"German Sergeant","type":"Role","_key":"121723","_from":"71513","_to":"71499"} +{"$label":"ACTS_IN","name":"German Prisoner #1","type":"Role","_key":"121722","_from":"71512","_to":"71499"} +{"$label":"ACTS_IN","name":"German Prisoner #2","type":"Role","_key":"121721","_from":"71511","_to":"71499"} +{"$label":"ACTS_IN","name":"Zindrowski","type":"Role","_key":"121720","_from":"71510","_to":"71499"} +{"$label":"ACTS_IN","name":"Gestapo Officer","type":"Role","_key":"121719","_from":"71509","_to":"71499"} +{"$label":"ACTS_IN","name":"Sergie","type":"Role","_key":"121718","_from":"71508","_to":"71499"} +{"$label":"ACTS_IN","name":"Friedrich","type":"Role","_key":"121717","_from":"71507","_to":"71499"} +{"$label":"ACTS_IN","name":"Emil","type":"Role","_key":"121716","_from":"71506","_to":"71499"} +{"$label":"ACTS_IN","name":"Lt. Ivanov","type":"Role","_key":"121715","_from":"71505","_to":"71499"} +{"$label":"ACTS_IN","name":"NKVD Officer","type":"Role","_key":"121714","_from":"71504","_to":"71499"} +{"$label":"ACTS_IN","name":"Maj. Andrew Pearman","type":"Role","_key":"121713","_from":"71503","_to":"71499"} +{"$label":"ACTS_IN","name":"Anna","type":"Role","_key":"121712","_from":"71502","_to":"71499"} +{"$label":"ACTS_IN","name":"Anton","type":"Role","_key":"121711","_from":"71501","_to":"71499"} +{"$label":"ACTS_IN","name":"Capt. Klaus Mueller","type":"Role","_key":"121709","_from":"71500","_to":"71499"} +{"$label":"ACTS_IN","name":"Inspector Starkey","type":"Role","_key":"121728","_from":"71515","_to":"71514"} +{"$label":"ACTS_IN","name":"Manuel","type":"Role","_key":"121742","_from":"71519","_to":"71516"} +{"$label":"ACTS_IN","name":"Lt. Ruiz","type":"Role","_key":"121740","_from":"71518","_to":"71516"} +{"$label":"ACTS_IN","name":"Inspector General Ortega","type":"Role","_key":"121739","_from":"71517","_to":"71516"} +{"$label":"DIRECTED","_key":"121746","_from":"71523","_to":"71520"} +{"$label":"DIRECTED","_key":"121745","_from":"71522","_to":"71520"} +{"$label":"ACTS_IN","name":"Herself","type":"Role","_key":"121744","_from":"71521","_to":"71520"} +{"$label":"ACTS_IN","name":"Hubert","type":"Role","_key":"121755","_from":"71526","_to":"71524"} +{"$label":"ACTS_IN","name":"Phyllis","type":"Role","_key":"121753","_from":"71525","_to":"71524"} +{"$label":"ACTS_IN","name":"Natalie","type":"Role","_key":"121761","_from":"71532","_to":"71527"} +{"$label":"ACTS_IN","name":"Paul Garcin","type":"Role","_key":"121760","_from":"71531","_to":"71527"} +{"$label":"ACTS_IN","name":"Lara","type":"Role","_key":"121759","_from":"71530","_to":"71527"} +{"$label":"ACTS_IN","name":"Walter","type":"Role","_key":"121758","_from":"71529","_to":"71527"} +{"$label":"DIRECTED","_key":"121757","_from":"71528","_to":"71527"} +{"$label":"ACTS_IN","name":"Ma\u00eetre Allari","type":"Role","_key":"121768","_from":"71536","_to":"71533"} +{"$label":"ACTS_IN","name":"Maxime","type":"Role","_key":"121767","_from":"71535","_to":"71533"} +{"$label":"DIRECTED","_key":"121763","_from":"71534","_to":"71533"} +{"$label":"ACTS_IN","name":"Miguel 'Sugar' Santos","type":"Role","_key":"121775","_from":"71539","_to":"71537"} +{"$label":"DIRECTED","_key":"121773","_from":"71538","_to":"71537"} diff --git a/demo/docker/import/nodes.jsonl b/demo/docker/import/nodes.jsonl new file mode 100644 index 00000000..634e761d --- /dev/null +++ b/demo/docker/import/nodes.jsonl @@ -0,0 +1,62996 @@ +{"label":"Avatar","description":"Disabled Marine Jake Sully travels to planet Pandora to become an avatar, ingratiate himself with the natives and help Americans mine lucrative unobtainium. But he finds himself in an interstellar conflict after falling for Na'vi warrior Neytiri.","id":"19995","runtime":162,"imdbId":"tt0499549","trailer":"http:\/\/www.youtube.com\/watch?v=aVdO-cx-McA","homepage":"http:\/\/www.avatarmovie.com\/","version":1465,"lastModified":"1300200001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/374\/4bd29ddd017a3c63e8000374\/avatar-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Avatar","releaseDate":1261094400000,"language":"en","tagline":"Enter the World of Pandora","type":"Movie","_key":"345"} +{"label":"James Cameron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4bd395d0017a3c533d00001c\/james-cameron-profile.jpg","biography":"James Cameron was born in Kapuskasing, Ontario, Canada, on August 16, 1954. He moved to the USA in 1971. The son of an engineer, he majored in physics at California State University but, after graduating, drove a truck to support his screen-writing ambition. He landed his first professional film job as art director, miniature-set builder, and process-projection supervisor on Roger Corman's Battle Beyond the Stars (1980) and debuted as a director with Piranha Part Two: The Spawning (1981) the fol","version":395,"birthday":"-485312400000","id":"2710","birthplace":"Kapuskasing, Ontario, Canada","lastModified":"1299927158000","name":"James Cameron","type":"Person","_key":"346"} +{"label":"Sam Worthington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4bc99131017a3c181e000032\/sam-worthington-profile.jpg","biography":"Samuel Henry J. \"Sam\" Worthington (born 2 August 1976) is an Australian actor. He was born in England and emigrated with his parents to Australia when he was two months old. He is best known for his roles as Jake Sully in the 2009 film Avatar, Marcus Wright in Terminator Salvation, and most recently as Perseus in the feature film remake of Clash of the Titans.","version":107,"birthday":"207788400000","id":"65731","birthplace":"Godalming, England","lastModified":"1299970477000","name":"Sam Worthington","type":"Person","_key":"347"} +{"label":"Zoe Saldana","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4bd6f3e0017a3c21f100011e\/zoe-saldana-profile.jpg","biography":"<\/b>Zo\u00eb Yadira Saldana was born June 19, 1978 in Passaic NJ to a Peurto Rican mother and Dominican father. Her family relocated to the Dominican Republic when she was ten years old. There she practiced ballet at one of the most pretigious dance schools in the country. Saldana returned to New York at age 17, where she began involving herself in theatre groups such as Faces and the New York Youth Theatre. Her ballet training helped land her first on screen part as Eva in the dance film, Center ","version":177,"birthday":"267058800000","id":"8691","birthplace":"New Jersey, U.S.","lastModified":"1299686810000","name":"Zoe Saldana","type":"Person","_key":"348"} +{"label":"Sigourney Weaver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d5\/4bca5480017a3c0e950000d5\/sigourney-weaver-profile.jpg","biography":"Sigourney Weaver (born Susan Alexandra Weaver) is an American actress arguably best known for her role as Ellen Ripley in Ridley Scott's Alien (1979), Aliens (1986), directed by James Cameron, and two other sequels in the \"Alien\" series, a role for which she has received worldwide recognition. She is also known for her roles as Dana Barrett in the Ghostbusters films, Dian Fossey in Gorillas in the Mist, Janey Carver in The Ice Storm, Max Conners in Heartbreakers (2001), Warden Walker in Holes (2","version":255,"birthday":"-638499600000","id":"10205","birthplace":"New York City, New York, USA","lastModified":"1299951083000","name":"Sigourney Weaver","type":"Person","_key":"349"} +{"label":"Stephen Lang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4bca5424017a3c0e950000d1\/stephen-lang-profile.jpg","version":110,"id":"32747","lastModified":"1300090203000","name":"Stephen Lang","type":"Person","_key":"350"} +{"label":"Michelle Rodriguez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4bf0f0ba017a3c320f00008b\/michelle-rodriguez-profile.jpg","biography":"A cross between beauty and brawn, Texas-born Michelle Rodriguez has come a long way from humble beginnings shaped by time spent growing up in the Dominican Republic, Puerto Rico, and Jersey City. It was from such sometimes rough yet diverse surroundings that Michelle began to build a personal persona as a street-smart \"tough girl\", which when combined with raw talent and unmatched screen presence, helped her beat out 350 other girls to land her first speaking role as the lead in 2000's criticall","version":142,"birthday":"269046000000","id":"17647","birthplace":"Bexar County, Texas, USA","lastModified":"1300096757000","name":"Michelle Rodriguez","type":"Person","_key":"351"} +{"label":"Joel Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cb\/4bca5547017a3c0e8f0000cb\/joel-moore-profile.jpg","version":64,"id":"59231","lastModified":"1300090311000","name":"Joel Moore","type":"Person","_key":"352"} +{"label":"Giovanni Ribisi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10f\/4bca5585017a3c0e9900010f\/giovanni-ribisi-profile.jpg","version":149,"birthday":"156466800000","id":"1771","birthplace":"Los Angeles, California, USA","lastModified":"1299753704000","name":"Giovanni Ribisi","type":"Person","_key":"353"} +{"label":"CCH Pounder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b9\/4bca55ca017a3c0e8d0000b9\/cch-pounder-profile.jpg","version":82,"id":"30485","lastModified":"1300099101000","name":"CCH Pounder","type":"Person","_key":"354"} +{"label":"Laz Alonso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/350\/4bdf746e017a3c35bd000350\/laz-alonso-profile.jpg","version":78,"id":"10964","lastModified":"1300096758000","name":"Laz Alonso","type":"Person","_key":"355"} +{"label":"Wes Studi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b6\/4bdf74db017a3c35b50002b6\/wes-studi-profile.jpg","version":67,"id":"15853","lastModified":"1300097007000","name":"Wes Studi","type":"Person","_key":"356"} +{"label":"Dileep Rao","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d6\/4bdf757b017a3c35bf0002d6\/dileep-rao-profile.jpg","version":104,"id":"95697","lastModified":"1300213694000","name":"Dileep Rao","type":"Person","_key":"357"} +{"label":"Matt Gerald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/070\/4beb4035017a3c37a7000070\/matt-gerald-profile.jpg","version":44,"id":"98215","lastModified":"1300090352000","name":"Matt Gerald","type":"Person","_key":"358"} +{"label":"Dean Knowsley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4beb40bd017a3c37a1000077\/dean-knowsley-profile.jpg","version":37,"id":"98216","lastModified":"1300090343000","name":"Dean Knowsley","type":"Person","_key":"359"} +{"label":"Am\u00e9lie","description":"Jean-Pierre Jeunet brings us the fabulous world of Am\u00e9lie in his colorful film about a quirky, shy girl with an inquisitive mind and an active imagination. Audrey Tautou glows as a charming cafe girl on a mission to uncover a mystery and find true love. Jeunet delivers a glowing view of a Paris full of amiable eccentrics, with the few truly mean people receiving comedic punishment in full view.","id":"194","runtime":129,"imdbId":"tt0211915","trailer":"http:\/\/www.youtube.com\/watch?v=sECzJY07oK4","homepage":"http:\/\/www.die-fabelhafte-welt-der-amelie.de","version":185,"lastModified":"1299672340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4d1bbfea5e73d66598000ff9\/le-fabuleux-destin-d-am-lie-poulain-mid.jpg","studio":"UGC","genre":"Comedy","title":"Am\u00e9lie","releaseDate":988156800000,"language":"en","tagline":"One person can change your life forever.","type":"Movie","_key":"360"} +{"label":"Jean-Pierre Jeunet","version":82,"id":"2419","lastModified":"1299835297000","name":"Jean-Pierre Jeunet","type":"Person","_key":"361"} +{"label":"Audrey Tautou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc4\/4d1e79107b9aa1736f000cc4\/audrey-tautou-profile.jpg","version":88,"birthday":"208393200000","id":"2405","birthplace":"Beaumont, Puy-de-D\u00f4me, France","lastModified":"1300012967000","name":"Audrey Tautou","type":"Person","_key":"362"} +{"label":"Rufus","version":48,"id":"2407","lastModified":"1299715556000","name":"Rufus","type":"Person","_key":"363"} +{"label":"Jamel Debbouze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bdf\/4cba63717b9aa138d6000bdf\/jamel-debbouze-profile.jpg","version":51,"id":"2408","lastModified":"1299947101000","name":"Jamel Debbouze","type":"Person","_key":"364"} +{"label":"Claire Maurier","version":27,"id":"1654","lastModified":"1299833824000","name":"Claire Maurier","type":"Person","_key":"365"} +{"label":"Isabelle Nanty","version":33,"id":"2412","lastModified":"1299492936000","name":"Isabelle Nanty","type":"Person","_key":"366"} +{"label":"Dominique Pinon","version":71,"id":"2413","lastModified":"1299835296000","name":"Dominique Pinon","type":"Person","_key":"367"} +{"label":"Artus de Penguern","version":29,"id":"2414","lastModified":"1299493388000","name":"Artus de Penguern","type":"Person","_key":"368"} +{"label":"Yolande Moreau","version":51,"id":"2415","lastModified":"1300035527000","name":"Yolande Moreau","type":"Person","_key":"369"} +{"label":"Lorella Cravotta","version":23,"id":"2409","lastModified":"1299494695000","name":"Lorella Cravotta","type":"Person","_key":"370"} +{"label":"Serge Merlin","version":23,"id":"2410","lastModified":"1299493864000","name":"Serge Merlin","type":"Person","_key":"371"} +{"label":"Clotilde Mollet","version":21,"id":"2411","lastModified":"1299494253000","name":"Clotilde Mollet","type":"Person","_key":"372"} +{"label":"Urbain Cancelier","version":20,"id":"2416","lastModified":"1299494253000","name":"Urbain Cancelier","type":"Person","_key":"373"} +{"label":"Maurice B\u00e9nichou","version":32,"id":"2417","lastModified":"1299962422000","name":"Maurice B\u00e9nichou","type":"Person","_key":"374"} +{"label":"Full Metal Jacket","description":"Marine recruits endure the grueling ordeal of basic training and later face the unrelenting Viet Cong during the 1968 Tet Offensive in this grim Stanley Kubrick drama, based on a novel by Gustav Hasford. One of the most authentic depictions of warfare ever put on the big screen, the film teems with howling madness, stark images and troubling questions about duty, honor and sacrifice.","id":"600","runtime":116,"imdbId":"tt0093058","trailer":"http:\/\/www.youtube.com\/watch?v=5IQqG0O8oQg","version":238,"lastModified":"1299969339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f3\/4c735a115e73d66ff80003f3\/full-metal-jacket-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Full Metal Jacket","releaseDate":551664000000,"language":"en","tagline":"Vietnam can kill me, but it can\u2019t make me care.","type":"Movie","_key":"375"} +{"label":"Stanley Kubrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d51\/4d2042627b9aa1737b001d51\/stanley-kubrick-profile.jpg","version":159,"birthday":"-1307581200000","id":"240","birthplace":"Manhattan, New York, US","lastModified":"1299490889000","name":"Stanley Kubrick","type":"Person","_key":"376"} +{"label":"Matthew Modine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4bd\/4ca0c4a17b9aa1578f0004bd\/matthew-modine-profile.jpg","version":74,"id":"8654","lastModified":"1299701186000","name":"Matthew Modine","type":"Person","_key":"377"} +{"label":"Adam Baldwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bc\/4bdf286f017a3c35b40002bc\/adam-baldwin-profile.jpg","biography":"Appearing in dozens of films<\/a> since 1980<\/a>, Baldwin rose to prominence as the troubled outcast Ricky Linderman in My Bodyguard<\/a><\/i> (1980) and moved on to bigger roles in D.C. Cab<\/a><\/i> (1983), Vivica Anjanetta Fox<\/SPAN><\/B> (born July 30, 1964) is an American actress and television producer. She is best known for her roles in the films Independence Day<\/I>, Set It Off<\/I>, Soul Food<\/I>, Why Do Fools Fall In Love<\/I>, and Kill Bill: Vol. 1<\/I>.Laurence John Fishburne III<\/SPAN><\/B> (born July 30, 1961) is an American actor of screen and stage, as well as a playwright, director, and producer. He is perhaps best known for his roles as Morpheus in the Matrix<\/I> science fiction film trilogy and as singer-musician Ike Turner in the Tina Turner biopic What's Love Got ","version":177,"birthday":"-265856400000","id":"2975","birthplace":"Augusta, Georgia, United States","lastModified":"1299689631000","name":"Laurence Fishburne","type":"Person","_key":"436"} +{"label":"Hugo Weaving","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4bc9f9bf017a3c0e91000021\/hugo-weaving-profile.jpg","biography":"is a British-Australian film and stage actor. He is best known for his roles as Agent Smith in the Matrix trilogy, Elrond in the Lord of the Rings trilogy, Megatron in the Transformers series and V in V for Vendetta.","version":176,"birthday":"-307501200000","id":"1331","birthplace":"Ibadan, Nigeria","lastModified":"1299490766000","name":"Hugo Weaving","type":"Person","_key":"437"} +{"label":"Marcus Chong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/596\/4d0751977b9aa11bbf003596\/marcus-chong-profile.jpg","version":25,"id":"9372","lastModified":"1300090454000","name":"Marcus Chong","type":"Person","_key":"438"} +{"label":"Gloria Foster","version":31,"id":"9364","lastModified":"1300090344000","name":"Gloria Foster","type":"Person","_key":"439"} +{"label":"Julian Arahanga","version":26,"id":"7244","lastModified":"1299491788000","name":"Julian Arahanga","type":"Person","_key":"440"} +{"label":"Belinda McClory","version":26,"id":"9376","lastModified":"1300090407000","name":"Belinda McClory","type":"Person","_key":"441"} +{"label":"Joe Pantoliano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd5\/4cbc8ab05e73d67785000cd5\/joe-pantoliano-profile.jpg","version":104,"birthday":"-577674000000","id":"532","birthplace":"Hoboken, NJ","lastModified":"1299791865000","name":"Joe Pantoliano","type":"Person","_key":"442"} +{"label":"Matt Doran","version":48,"id":"9374","lastModified":"1300090324000","name":"Matt Doran","type":"Person","_key":"443"} +{"label":"Anthony Ray Parker","version":23,"id":"9378","lastModified":"1300090408000","name":"Anthony Ray Parker","type":"Person","_key":"444"} +{"label":"Paul Goddard","version":28,"id":"9380","lastModified":"1300090400000","name":"Paul Goddard","type":"Person","_key":"445"} +{"label":"David Aston","version":24,"id":"9383","lastModified":"1300090394000","name":"David Aston","type":"Person","_key":"446"} +{"label":"Marc Aden","version":24,"id":"9384","lastModified":"1300090407000","name":"Marc Aden","type":"Person","_key":"447"} +{"label":"The Matrix Reloaded","description":"In this second chapter of the \"Matrix\" trilogy, Neo assumes greater command of his extraordinary powers as Zion falls under siege to the Machine Army. Only a matter of hours separates the last human enclave on Earth from 250,000 Sentinels programmed to destroy mankind. But the citizens of Zion stand firm, emboldened by Morpheus conviction that the One will fulfill the Oracle's Prophecy and end the war...","id":"604","runtime":138,"imdbId":"tt0234215","trailer":"http:\/\/www.youtube.com\/watch?v=zsgrsiZoymA","homepage":"http:\/\/whatisthematrix.warnerbros.com\/","version":217,"lastModified":"1299968428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/679\/4bc909e6017a3c57fe003679\/the-matrix-reloaded-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Matrix Reloaded","releaseDate":1052265600000,"language":"en","tagline":"Free your mind.","type":"Movie","_key":"448"} +{"label":"Helmut Bakaitis","version":27,"id":"9443","lastModified":"1300090358000","name":"Helmut Bakaitis","type":"Person","_key":"449"} +{"label":"Lambert Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e3\/4d5a61b55e73d65e990006e3\/lambert-wilson-profile.jpg","version":105,"id":"2192","lastModified":"1299962422000","name":"Lambert Wilson","type":"Person","_key":"450"} +{"label":"Monica Bellucci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/832\/4be306c9017a3c35bb000832\/monica-bellucci-profile.jpg","biography":"Monica Bellucci was born in Citta di Castello, Umbria, Italy  the daughter of Maria Gustinelli, a painter, and Luigi Bellucci, who owned a trucking company. Monica Bellucci started modelling at 16, when she was attending the Liceo classico. Initially pursuing a career as a lawyer, Monica Bellucci modeled to pay her tuition at the University of Perugia but the lifestyle tempted her away from her law studies. She speaks Italian, French and English fluently, Spanish semi-fluently, and she has ","version":132,"birthday":"-165805200000","id":"28782","birthplace":"Citt\u00e0 di Castello, Umbria, Italy","lastModified":"1300090223000","name":"Monica Bellucci","type":"Person","_key":"451"} +{"label":"Adrian Rayment","version":19,"id":"9448","lastModified":"1300090570000","name":"Adrian Rayment","type":"Person","_key":"452"} +{"label":"Neil Rayment","version":19,"id":"9450","lastModified":"1300090539000","name":"Neil Rayment","type":"Person","_key":"453"} +{"label":"Daniel Bernhardt","version":29,"id":"9452","lastModified":"1300090471000","name":"Daniel Bernhardt","type":"Person","_key":"454"} +{"label":"Roy Jones Jr.","version":27,"id":"9457","lastModified":"1300090358000","name":"Roy Jones Jr.","type":"Person","_key":"455"} +{"label":"David Kilde","version":20,"id":"9459","lastModified":"1300090526000","name":"David Kilde","type":"Person","_key":"456"} +{"label":"Randall Duk Kim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/940\/4d27668e7b9aa134e0001940\/randall-duk-kim-profile.jpg","version":54,"id":"9462","lastModified":"1300090300000","name":"Randall Duk Kim","type":"Person","_key":"457"} +{"label":"Harry Lennix","version":48,"id":"9464","lastModified":"1300090300000","name":"Harry Lennix","type":"Person","_key":"458"} +{"label":"Matt McColm","version":26,"id":"9466","lastModified":"1300090358000","name":"Matt McColm","type":"Person","_key":"459"} +{"label":"Collin Chou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4bce1a0f017a3c24c4000027\/collin-chou-profile.jpg","version":65,"id":"52908","lastModified":"1300090501000","name":"Collin Chou","type":"Person","_key":"460"} +{"label":"The Matrix Revolutions","description":"In the third installment, the epic war between man and machine reaches a thundering crescendo: the Zion military, aided by courageous civilian volunteers like Zee and the Kid, desperately battles to hold back the Sentinel invasion as the Machine army bores into their stronghold. Facing total annihilation, the citizens of the last bastion of humanity fight not only for their own lives but future...","id":"605","runtime":129,"imdbId":"tt0242653","trailer":"http:\/\/www.youtube.com\/watch?v=Kw3IQpnVtvo","homepage":"http:\/\/whatisthematrix.warnerbros.com\/","version":233,"lastModified":"1299968234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6aa\/4bc909ee017a3c57fe0036aa\/the-matrix-revolutions-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Matrix Revolutions","releaseDate":1067212800000,"language":"en","tagline":"Everything that has a beginning has an end.","type":"Movie","_key":"461"} +{"label":"Mary Alice","version":20,"id":"9572","lastModified":"1300090515000","name":"Mary Alice","type":"Person","_key":"462"} +{"label":"Harold Perrineau","version":59,"id":"6195","lastModified":"1299491498000","name":"Harold Perrineau","type":"Person","_key":"463"} +{"label":"Jada Pinkett Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4d768b165e73d67eef00002e\/jada-pinkett-smith-profile.jpg","biography":"

Jada Koren Pinkett Smith<\/SPAN><\/B> was born on September 18, 1971 in Baltimore<\/st1:City>, Maryland<\/st1:State><\/st1:place>. She is an actress","version":71,"birthday":"53996400000","id":"9575","birthplace":"Baltimore, Maryland, USA","lastModified":"1300090265000","name":"Jada Pinkett Smith","type":"Person","_key":"464"} +{"label":"Gina Torres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/280\/4bdf284e017a3c35bd000280\/gina-torres-profile.jpg","version":59,"birthday":"-21690000000","id":"9576","birthplace":"New York","lastModified":"1300090599000","name":"Gina Torres","type":"Person","_key":"465"} +{"label":"Out of Africa","description":"Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.","id":"606","runtime":161,"imdbId":"tt0089755","trailer":"http:\/\/www.youtube.com\/watch?v=904","version":176,"lastModified":"1299912429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d87\/4be7f504017a3c35b7000d87\/out-of-africa-mid.jpg","studio":"Mirage Entertainment","genre":"Drama","title":"Out of Africa","releaseDate":503020800000,"language":"en","type":"Movie","_key":"466"} +{"label":"Sydney Pollack","version":132,"id":"2226","lastModified":"1299601264000","name":"Sydney Pollack","type":"Person","_key":"467"} +{"label":"Meryl Streep","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/090\/4bd3f22e017a3c7fa6000090\/meryl-streep-profile.jpg","version":194,"birthday":"-647834400000","id":"5064","birthplace":"USA","lastModified":"1299490960000","name":"Meryl Streep","type":"Person","_key":"468"} +{"label":"Robert Redford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/149\/4bde8068017a3c35c1000149\/robert-redford-profile.jpg","version":174,"id":"4135","lastModified":"1299926752000","name":"Robert Redford","type":"Person","_key":"469"} +{"label":"Klaus Maria Brandauer","version":46,"id":"10647","lastModified":"1300124390000","name":"Klaus Maria Brandauer","type":"Person","_key":"470"} +{"label":"Michael Kitchen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c99\/4cc5e59e5e73d67783001c99\/michael-kitchen-profile.jpg","version":52,"id":"10648","lastModified":"1300090591000","name":"Michael Kitchen","type":"Person","_key":"471"} +{"label":"Malick Bowens","version":22,"id":"10649","lastModified":"1300091600000","name":"Malick Bowens","type":"Person","_key":"472"} +{"label":"Joseph Thiaka","version":19,"id":"10650","lastModified":"1300091033000","name":"Joseph Thiaka","type":"Person","_key":"473"} +{"label":"Stephen Kinyanjui","version":19,"id":"10651","lastModified":"1300091033000","name":"Stephen Kinyanjui","type":"Person","_key":"474"} +{"label":"Michael Gough","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b11\/4d0d0f345e73d63716000b11\/michael-gough-profile.jpg","version":104,"id":"3796","lastModified":"1300023957000","name":"Michael Gough","type":"Person","_key":"475"} +{"label":"Suzanna Hamilton","version":23,"id":"10652","lastModified":"1300091211000","name":"Suzanna Hamilton","type":"Person","_key":"476"} +{"label":"Rachel Kempson","version":20,"id":"10653","lastModified":"1300091428000","name":"Rachel Kempson","type":"Person","_key":"477"} +{"label":"Graham Crowden","version":25,"id":"10654","lastModified":"1300091823000","name":"Graham Crowden","type":"Person","_key":"478"} +{"label":"Leslie Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40a\/4cf1d8e55e73d61e3f00040a\/leslie-phillips-profile.jpg","version":38,"id":"10655","lastModified":"1300091042000","name":"Leslie Phillips","type":"Person","_key":"479"} +{"label":"Mike Bugara","version":20,"id":"10656","lastModified":"1300091493000","name":"Mike Bugara","type":"Person","_key":"480"} +{"label":"Shane Rimmer","version":26,"id":"10657","lastModified":"1300091828000","name":"Shane Rimmer","type":"Person","_key":"481"} +{"label":"Job Seda","version":20,"id":"10658","lastModified":"1300091294000","name":"Job Seda","type":"Person","_key":"482"} +{"label":"Men In Black","description":"On a top-secret mission, J, a charismatic New York City cop, teams up with K, a seasoned government agent who monitors aliens on Earth, to stop intergalactic alien terrorist Edgar from inciting an interstellar, humanity-destroying war.","id":"607","runtime":98,"imdbId":"tt0119654","trailer":"http:\/\/www.youtube.com\/watch?v=uCJHn-ZFH54","homepage":"http:\/\/www.sonypictures.com\/homevideo\/meninblackii\/","version":213,"lastModified":"1300123777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/720\/4bc90a03017a3c57fe003720\/men-in-black-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Men In Black","releaseDate":867715200000,"language":"en","tagline":"Protecting the Earth from the scum of the universe.","type":"Movie","_key":"483"} +{"label":"Barry Sonnenfeld","version":92,"id":"5174","lastModified":"1300090396000","name":"Barry Sonnenfeld","type":"Person","_key":"484"} +{"label":"Tommy Lee Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a2\/4bf6fda8017a3c772c0002a2\/tommy-lee-jones-profile.jpg","version":195,"birthday":"-735184800000","id":"2176","lastModified":"1299706639000","name":"Tommy Lee Jones","type":"Person","_key":"485"} +{"label":"Linda Fiorentino","version":51,"id":"9625","lastModified":"1300090412000","name":"Linda Fiorentino","type":"Person","_key":"486"} +{"label":"Rip Torn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d7\/4d059d575e73d621a30032d7\/rip-torn-profile.jpg","version":121,"id":"9626","lastModified":"1300090288000","name":"Rip Torn","type":"Person","_key":"487"} +{"label":"Tony Shalhoub","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31c\/4c95db687b9aa10d5b00031c\/tony-shalhoub-profile.jpg","version":86,"id":"4252","lastModified":"1300090349000","name":"Tony Shalhoub","type":"Person","_key":"488"} +{"label":"Mike Nussbaum","version":22,"id":"9628","lastModified":"1300091085000","name":"Mike Nussbaum","type":"Person","_key":"489"} +{"label":"Jon Gries","version":47,"birthday":"-395802000000","id":"9629","birthplace":"Glendale, California","lastModified":"1300090460000","name":"Jon Gries","type":"Person","_key":"490"} +{"label":"Sergio Calder\u00f3n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a96\/4d146bca7b9aa11486001a96\/sergio-calder-n-profile.jpg","version":34,"id":"9630","lastModified":"1300090405000","name":"Sergio Calder\u00f3n","type":"Person","_key":"491"} +{"label":"Carel Struycken","version":42,"id":"9631","lastModified":"1300091216000","name":"Carel Struycken","type":"Person","_key":"492"} +{"label":"Fredric Lehne","version":26,"id":"9632","lastModified":"1300091043000","name":"Fredric Lehne","type":"Person","_key":"493"} +{"label":"Richard Hamilton","version":19,"id":"9633","lastModified":"1299495332000","name":"Richard Hamilton","type":"Person","_key":"494"} +{"label":"Kent Faulcon","version":23,"id":"9634","lastModified":"1300091393000","name":"Kent Faulcon","type":"Person","_key":"495"} +{"label":"John Alexander","version":33,"id":"2671","lastModified":"1299492560000","name":"John Alexander","type":"Person","_key":"496"} +{"label":"Siobhan Fallon","version":39,"id":"6751","lastModified":"1299836329000","name":"Siobhan Fallon","type":"Person","_key":"497"} +{"label":"Men In Black II","description":"Jay and Kay are back as two highly secretive, highly funded and highly unofficial government agents dealing with all things evil and alien -- including \"outing\" aliens living among us. Kay now works as a mailman, but when a dangerous alien disguised as an irresistible model threatens Earth, Jay gets Kay out of retirement to save humanity once again.","id":"608","runtime":88,"imdbId":"tt0120912","trailer":"http:\/\/www.youtube.com\/watch?v=p4NJHqoojOU","homepage":"http:\/\/www.sonypictures.com\/homevideo\/meninblackii\/","version":183,"lastModified":"1299967677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73e\/4bc90a08017a3c57fe00373e\/men-in-black-ii-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Men In Black II","releaseDate":1025654400000,"language":"en","tagline":"Same Planet. New Scum.","type":"Movie","_key":"498"} +{"label":"Lara Flynn Boyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b6\/4c9f95a05e73d670490004b6\/lara-flynn-boyle-profile.jpg","version":52,"id":"6684","lastModified":"1300090314000","name":"Lara Flynn Boyle","type":"Person","_key":"499"} +{"label":"Johnny Knoxville","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18a\/4ceecd515e73d654f700018a\/johnny-knoxville-profile.jpg","version":61,"id":"9656","lastModified":"1300127218000","name":"Johnny Knoxville","type":"Person","_key":"500"} +{"label":"Rosario Dawson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4bcc3bde017a3c0f320000b2\/rosario-dawson-profile.jpg","biography":"Rosario Isabel Dawson<\/SPAN><\/B> was born on May 9, 1979 in New York City<\/st1:place><\/st1:City>. She is of Puerto Rican and Afro-Cuban descent. In addition to acting, she is also a singer and writer. As a child, Thomas Jeffrey \"Tom\" Hanks<\/SPAN><\/B> (born July 9, 1956) is an American actor, producer, writer and director. Hanks worked in television and family-f","version":359,"birthday":"-425437200000","id":"31","birthplace":"Concord, California, USA","lastModified":"1299958130000","name":"Tom Hanks","type":"Person","_key":"524"} +{"label":"Robin Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/347\/4c7a22d65e73d613d7000347\/robin-wright-profile.jpg","version":89,"birthday":"-117853200000","id":"32","birthplace":"Dallas, Texas, USA","lastModified":"1299490892000","name":"Robin Wright","type":"Person","_key":"525"} +{"label":"Gary Sinise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a5\/4bd36bdc017a3c63ef0004a5\/gary-sinise-profile.jpg","version":100,"id":"33","lastModified":"1299840029000","name":"Gary Sinise","type":"Person","_key":"526"} +{"label":"Mykelti Williamson","version":58,"id":"34","lastModified":"1299491384000","name":"Mykelti Williamson","type":"Person","_key":"527"} +{"label":"Sally Field","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c34bccb7b9aa17d3f000022\/sally-field-profile.jpg","version":72,"id":"35","lastModified":"1299958356000","name":"Sally Field","type":"Person","_key":"528"} +{"label":"Michael Conner Humphreys","version":25,"id":"37821","lastModified":"1299493509000","name":"Michael Conner Humphreys","type":"Person","_key":"529"} +{"label":"Peter Dobson","version":46,"id":"37822","lastModified":"1299539610000","name":"Peter Dobson","type":"Person","_key":"530"} +{"label":"Hanna R. Hall","version":30,"id":"17237","lastModified":"1299753703000","name":"Hanna R. Hall","type":"Person","_key":"531"} +{"label":"Sonny Shroyer","version":32,"id":"37823","lastModified":"1299493229000","name":"Sonny Shroyer","type":"Person","_key":"532"} +{"label":"Jed Gillin","version":25,"id":"37824","lastModified":"1299493051000","name":"Jed Gillin","type":"Person","_key":"533"} +{"label":"Afemo Omilami","version":33,"id":"37825","lastModified":"1299493465000","name":"Afemo Omilami","type":"Person","_key":"534"} +{"label":"Steven Griffith","version":25,"id":"37826","lastModified":"1299493051000","name":"Steven Griffith","type":"Person","_key":"535"} +{"label":"John William Galt","version":26,"id":"37827","lastModified":"1299492251000","name":"John William Galt","type":"Person","_key":"536"} +{"label":"Nora Dunfee","version":24,"id":"37828","lastModified":"1299493118000","name":"Nora Dunfee","type":"Person","_key":"537"} +{"label":"Michael Mattison","version":24,"id":"37829","lastModified":"1299492639000","name":"Michael Mattison","type":"Person","_key":"538"} +{"label":"Haley Joel Osment","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/040\/4bd3e7ce017a3c7fac000040\/haley-joel-osment-profile.jpg","version":64,"id":"9640","lastModified":"1299582133000","name":"Haley Joel Osment","type":"Person","_key":"539"} +{"label":"Kitty K. Green","version":24,"id":"37830","lastModified":"1299493605000","name":"Kitty K. Green","type":"Person","_key":"540"} +{"label":"Marlena Smalls","version":24,"id":"37831","lastModified":"1299494275000","name":"Marlena Smalls","type":"Person","_key":"541"} +{"label":"Kevin Mangan","version":24,"id":"37832","lastModified":"1299493605000","name":"Kevin Mangan","type":"Person","_key":"542"} +{"label":"Sam Anderson","version":28,"id":"36221","lastModified":"1299493881000","name":"Sam Anderson","type":"Person","_key":"543"} +{"label":"Tron Legacy","description":"Sam Flynn, the tech-savvy 27-year-old son of Kevin Flynn, looks into his father's disappearance and finds himself pulled into the same world of fierce programs and gladiatorial games where his father has been living for 25 years. Along with Kevin's loyal confidant, father and son embark on a life-and-death journey across a visually-stunning cyber universe that has become far more advanced.","id":"20526","runtime":127,"imdbId":"tt1104001","trailer":"http:\/\/www.youtube.com\/watch?v=L9szn1QQfas","homepage":"http:\/\/disney.go.com\/tron\/","version":705,"lastModified":"1300206186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/846\/4d78e8d47b9aa157c7000846\/tron-legacy-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"Tron Legacy","releaseDate":1292544000000,"language":"en","tagline":"The Game Has Changed","type":"Movie","_key":"544"} +{"label":"Garrett Hedlund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e1\/4cdf86345e73d60f700000e1\/garrett-hedlund-profile.jpg","biography":"\u0413\u0430\u0440\u0440\u0435\u0442 \u0425\u0435\u0434\u043b\u0443\u043d\u0434 \u043f\u0435\u0440\u0432\u044b\u0435 \u0433\u043e\u0434\u044b \u0441\u0432\u043e\u0439 \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u043e\u0432\u0451\u043b \u043d\u0430 \u0444\u0435\u0440\u043c\u0435 \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u043a\u0430 \u0420\u043e\u0437\u043e \u0448\u0442\u0430\u0442\u0430 \u041c\u0438\u043d\u043d\u0435\u0441\u043e\u0442\u0430 \u043d\u0430 \u0441\u0435\u0432\u0435\u0440\u0435 \u0421\u0428\u0410. \u041a\u043e\u0433\u0434\u0430 \u0413\u0430\u0440\u0440\u0435\u0442\u0443 \u0431\u044b\u043b\u043e 9 \u043b\u0435\u0442, \u0435\u0433\u043e \u0441\u0435\u043c\u044c\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u0432\u0448\u0430\u044f \u0438\u0437 \u0435\u0433\u043e \u043e\u0442\u0446\u0430 \u0420\u043e\u0431\u0435\u0440\u0442\u0430, \u043c\u0430\u0442\u0435\u0440\u0438 \u041a\u0440\u0438\u0441\u0442\u0438 \u0438 \u0441\u0442\u0430\u0440\u0448\u0438\u0445 \u0431\u0440\u0430\u0442\u0430 \u0438 \u0441\u0435\u0441\u0442\u0440\u044b \u041d\u0430\u0442\u0430\u043d\u0438\u044d\u043b\u044f \u0438 \u0410\u043c\u0430\u043d\u0434\u044b, \u043f\u0435\u0440\u0435\u0431\u0440\u0430\u043b\u0430\u0441\u044c \u0432 \u0433\u043e\u0440\u043e\u0434 \u0421\u043a\u043e\u0442\u0442\u0441\u0434\u044d\u0439\u043b (\u0448\u0442\u0430\u0442 \u0410\u0440\u0438\u0437\u043e\u043d\u0430, \u043e\u043a\u0440\u0443\u0433 \u041c\u0430\u0440\u0438\u043a\u043e\u043f\u0430). \u0422\u0430\u043c \u0413\u0430\u0440\u0440\u0435\u0442 \u043d\u0430\u0447\u0430\u043b \u0431\u0440\u0430\u0442\u044c \u0447\u0430\u0441\u0442\u043d\u044b\u0435 (\u0438 \u0441\u0432\u043e\u0438 \u043f\u0435\u0440\u0432\u044b\u0435) \u0443\u0440\u043e\u043a\u0438 \u0430\u043a\u0442\u0451\u0440\u0441\u043a\u043e\u0433\u043e \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430. \u041f\u043e\u0441\u043b\u0435 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0432\u044b\u0441\u0448\u0435\u0439 \u0448\u043a\u043e\u043b\u044b \u0425\u0435\u0434\u043b\u0443\u043d\u0434 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u0443\u0435\u0445\u0430\u043b \u0432 \u041b\u043e\u0441 \u0410\u043d\u0436\u0435\u043b\u0435\u0441, \u0447\u0442\u043e\u0431\u044b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0430\u043a\u0442\u0451\u0440\u0441\u043a\u0443\u044e \u043a\u0430\u0440\u044c\u0435\u0440\u0443. \u0423\u0436\u0435 \u0441\u043f\u0443\u0441\u0442\u044f \u043c\u0435\u0441\u044f\u0446 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440","version":64,"birthday":"463010400000","id":"9828","birthplace":"Roseau, Minnesota, USA ","lastModified":"1300090228000","name":"Garrett Hedlund","type":"Person","_key":"545"} +{"label":"Jeff Bridges","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/177\/4bdd488e017a3c20c2000177\/jeff-bridges-profile.jpg","version":204,"birthday":"-633574800000","id":"1229","birthplace":"Los Angeles, California, USA","lastModified":"1299996533000","name":"Jeff Bridges","type":"Person","_key":"546"} +{"label":"Olivia Wilde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4aa\/4c0238c8017a3c702f0014aa\/olivia-wilde-profile.jpg","biography":"

Olivia Wilde (born Olivia Jane Cockburn; in New York City on March 10, 1984) is an Irish-American actress and model. She began acting in the early 2000s, and has since appeared in a number of film and television parts, including roles in the series The O.C. and The Black Donnellys. She portrays Dr Remy \u201cThirteen\u201d Hadley in the TV drama Hou","version":122,"birthday":"447721200000","id":"59315","birthplace":"New York City, New York, USA","lastModified":"1300090204000","name":"Olivia Wilde","type":"Person","_key":"547"} +{"label":"Bruce Boxleitner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4d1366ed7b9aa1148200117f\/bruce-boxleitner-profile.jpg","version":49,"birthday":"-619837200000","id":"2547","lastModified":"1299908089000","name":"Bruce Boxleitner","type":"Person","_key":"548"} +{"label":"Yaya DaCosta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4d13677d7b9aa1147a00115a\/yaya-dacosta-profile.jpg","version":40,"id":"60033","lastModified":"1300090252000","name":"Yaya DaCosta","type":"Person","_key":"549"} +{"label":"Serinda Swan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/451\/4d1c74cc7b9aa17a87000451\/serinda-swan-profile.jpg","version":45,"birthday":"458344800000","id":"86268","birthplace":"West Vancouver, British Columbia","lastModified":"1300090229000","name":"Serinda Swan","type":"Person","_key":"550"} +{"label":"Beau Garrett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4d1368a87b9aa1148600113a\/beau-garrett-profile.jpg","version":56,"id":"20403","lastModified":"1300131336000","name":"Beau Garrett","type":"Person","_key":"551"} +{"label":"Elizabeth Mathis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fe\/4cd9d26c7b9aa11b250006fe\/elizabeth-mathis-profile.jpg","version":45,"id":"130108","lastModified":"1300090230000","name":"Elizabeth Mathis","type":"Person","_key":"552"} +{"label":"James Frain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/198\/4d13686d7b9aa1148e001198\/james-frain-profile.jpg","version":42,"id":"22063","lastModified":"1300090404000","name":"James Frain","type":"Person","_key":"553"} +{"label":"Amy Esterle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4d1369687b9aa1148800123e\/amy-esterle-profile.jpg","version":30,"id":"86269","lastModified":"1300090417000","name":"Amy Esterle","type":"Person","_key":"554"} +{"label":"Brandon Jay McLaren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14d\/4d1369db7b9aa1148600114d\/brandon-jay-mclaren-profile.jpg","version":34,"id":"58371","lastModified":"1300090466000","name":"Brandon Jay McLaren","type":"Person","_key":"555"} +{"label":"Michael Sheen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37a\/4bed4b8d017a3c37a500037a\/michael-sheen-profile.jpg","version":138,"birthday":"-28515600000","id":"3968","birthplace":"Newport, Wales","lastModified":"1299970374000","name":"Michael Sheen","type":"Person","_key":"556"} +{"label":"Owen Best","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e3\/4d4500da5e73d657040027e3\/owen-best-profile.jpg","version":31,"id":"109205","lastModified":"1300091196000","name":"Owen Best","type":"Person","_key":"557"} +{"label":"Michael Teigen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4d71997a5e73d61921000089\/michael-teigen-profile.jpg","version":40,"id":"37980","lastModified":"1300090471000","name":"Michael Teigen","type":"Person","_key":"558"} +{"label":"Daft Punk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06b\/4d7197db5e73d6192100006b\/daft-punk-profile.jpg","version":41,"id":"67931","lastModified":"1300090580000","name":"Daft Punk","type":"Person","_key":"559"} +{"label":"Ron Selmour","version":28,"id":"10874","lastModified":"1300090573000","name":"Ron Selmour","type":"Person","_key":"560"} +{"label":"Conrad Coates","version":29,"id":"43263","lastModified":"1300090547000","name":"Conrad Coates","type":"Person","_key":"561"} +{"label":"Kis Yurij","version":20,"id":"145110","lastModified":"1300091194000","name":"Kis Yurij","type":"Person","_key":"562"} +{"label":"Joseph Kosinski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc2\/4cf8d5805e73d6299c001fc2\/joseph-kosinski-profile.jpg","version":35,"id":"86270","lastModified":"1300090273000","name":"Joseph Kosinski","type":"Person","_key":"563"} +{"label":"Star Wars: Episode IV - A New Hope","description":"Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing caption Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.","id":"11","runtime":121,"imdbId":"tt0076759","trailer":"http:\/\/www.youtube.com\/watch?v=9gvqpFbRKtQ","version":357,"lastModified":"1300009747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ae\/4bc90145017a3c57fe0000ae\/star-wars-episode-iv-a-new-hope-mid.jpg","studio":"Lucasfilm","genre":"Action","title":"Star Wars: Episode IV - A New Hope","releaseDate":233366400000,"language":"en","tagline":"A long time ago in a galaxy far, far away...","type":"Movie","_key":"564"} +{"label":"George Lucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4bccb006017a3c0f2a00015a\/george-lucas-profile.jpg","biography":"Arguably the most important film innovator in the history of the medium, George Lucas continually \"pushed the envelope\" of filmmaking technology since his early days as a student at U.S.C. Considered a wunderkind by his contemporaries, he had a much harder time communicating his vision to studio executives, whose meddling managed to compromise each of his first three feature directing efforts in some way. ","version":483,"birthday":"-808970400000","id":"1","birthplace":"Modesto, California, USA","lastModified":"1299755303000","name":"George Lucas","type":"Person","_key":"565"} +{"label":"Mark Hamill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/174\/4bccaf4c017a3c0f32000174\/mark-hamill-profile.jpg","version":118,"id":"2","lastModified":"1300048045000","name":"Mark Hamill","type":"Person","_key":"566"} +{"label":"Carrie Fisher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a7\/4bccb3c4017a3c0f300001a7\/carrie-fisher-profile.jpg","version":131,"birthday":"-416451600000","id":"4","lastModified":"1300025225000","name":"Carrie Fisher","type":"Person","_key":"567"} +{"label":"Harrison Ford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4bd38e2c017a3c534700000a\/harrison-ford-profile.jpg","version":261,"birthday":"-866944800000","id":"3","birthplace":"Chicago, Illinois, United States","lastModified":"1299900843000","name":"Harrison Ford","type":"Person","_key":"568"} +{"label":"Peter Cushing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c76682f7b9aa16a0c0000b7\/peter-cushing-profile.jpg","version":126,"birthday":"-1786237200000","id":"5","lastModified":"1300040851000","name":"Peter Cushing","type":"Person","_key":"569"} +{"label":"Anthony Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17a\/4bccb612017a3c0f2f00017a\/anthony-daniels-profile.jpg","version":118,"birthday":"-752979600000","id":"6","lastModified":"1299491369000","name":"Anthony Daniels","type":"Person","_key":"570"} +{"label":"Kenny Baker","version":105,"id":"130","lastModified":"1299490924000","name":"Kenny Baker","type":"Person","_key":"571"} +{"label":"Alec Guinness","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c766e057b9aa16a08000106\/alec-guinness-profile.jpg","version":132,"id":"12248","lastModified":"1299927080000","name":"Alec Guinness","type":"Person","_key":"572"} +{"label":"Peter Mayhew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/274\/4bd9a52b017a3c1bff000274\/peter-mayhew-profile.jpg","version":60,"id":"24343","lastModified":"1299493498000","name":"Peter Mayhew","type":"Person","_key":"573"} +{"label":"David Prowse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a2\/4bccac9e017a3c0f300001a2\/david-prowse-profile.jpg","version":64,"id":"24342","lastModified":"1299492247000","name":"David Prowse","type":"Person","_key":"574"} +{"label":"James Earl Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/252\/4bd79043017a3c21f1000252\/james-earl-jones-profile.jpg","biography":"

James Earl Jones<\/SPAN><\/B> (born January 17, 1931) is a multi-award-winning American actor of theater and film, well known for his distinctive bass voice and for his portrayal of characters of substance, gravitas and leadership. He is known for providing the voice of Darth Vader in the Star Wars<\/I> franchise and the tagline for CNN.Billy Dee Williams<\/SPAN><\/B> was born in New York City<\/st1:City>, New York<\/st1:State><\/st1:place> in April 6, 1937. He grew up in Harlem<\/st1:place>, where he was raised b","version":71,"birthday":"-1033174800000","id":"3799","birthplace":"New York City, New York, USA","lastModified":"1299526058000","name":"Billy Dee Williams","type":"Person","_key":"599"} +{"label":"Sebastian Shaw","version":28,"id":"28235","lastModified":"1300090434000","name":"Sebastian Shaw","type":"Person","_key":"600"} +{"label":"Star Wars: Episode II - Attack of the Clones","description":"(22 Years Before Episode IV) Ten years after the events of the Battle of Naboo, not only has the galaxy undergone significant change, but so have Obi-Wan Kenobi, Padm\u00e9 Amidala, and Anakin Skywalker as they are thrown together again for the first time since the Trade Federation invasion of Naboo. Anakin has grown into the accomplished Jedi apprentice of Obi-Wan, who himself has transitioned from student to teacher. The two Jedi are assigned to protect Padm\u00e9 whose life is threatened by a faction o","id":"1894","runtime":142,"imdbId":"tt0121765","trailer":"http:\/\/www.youtube.com\/watch?v=9C-fZCLsISA","version":299,"lastModified":"1299979002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/206\/4bccf5f0017a3c0f2c000206\/star-wars-episode-ii-attack-of-the-clones-mid.jpg","studio":"Lucasfilm","genre":"Action","title":"Star Wars: Episode II - Attack of the Clones","releaseDate":1021507200000,"language":"en","tagline":"A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.","type":"Movie","_key":"601"} +{"label":"Hayden Christensen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4bfa70ed017a3c70360003d1\/hayden-christensen-profile.jpg","version":95,"id":"17244","lastModified":"1300090254000","name":"Hayden Christensen","type":"Person","_key":"602"} +{"label":"Christopher Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4bc9f888017a3c0e9500001f\/christopher-lee-profile.jpg","version":319,"id":"113","lastModified":"1300047791000","name":"Christopher Lee","type":"Person","_key":"603"} +{"label":"Rose Byrne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4bf61b60017a3c772600013b\/rose-byrne-profile.jpg","biography":"Rose made his debut as an actress at the age of 12 years in the film Dallas Doll (1994), after participating in several Australian television shows and films for television as Two Hands (1999) alongside Heath Ledger.\nIn 2000, back on the big screen with My Mother Frank and The Goddess of '67 (The Goddess of 1967) while in 2002 he starred in City of Ghosts.\nAt the Venice International Film Festival of 2000 receives the Coppa Volpi for Best Actress for the role of BG in The Goddess of '67.\nAppears","version":101,"birthday":"301618800000","id":"9827","birthplace":"Sydney, Australia","lastModified":"1299491109000","name":"Rose Byrne","type":"Person","_key":"604"} +{"label":"Alan Ruscoe","version":35,"id":"33186","lastModified":"1300090542000","name":"Alan Ruscoe","type":"Person","_key":"605"} +{"label":"Veronica Segura","version":30,"id":"33187","lastModified":"1300090488000","name":"Veronica Segura","type":"Person","_key":"606"} +{"label":"Silas Carson","version":67,"id":"20806","lastModified":"1300090386000","name":"Silas Carson","type":"Person","_key":"607"} +{"label":"Ron Falk","version":30,"id":"33188","lastModified":"1300090542000","name":"Ron Falk","type":"Person","_key":"608"} +{"label":"Jay Laga'aia","version":56,"id":"33182","lastModified":"1300090353000","name":"Jay Laga'aia","type":"Person","_key":"609"} +{"label":"Jimmy Smits","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7c\/4c716c157b9aa13ab5000a7c\/jimmy-smits-profile.jpg","version":68,"id":"33181","lastModified":"1299492824000","name":"Jimmy Smits","type":"Person","_key":"610"} +{"label":"Daniel Logan","version":30,"id":"33189","lastModified":"1300090541000","name":"Daniel Logan","type":"Person","_key":"611"} +{"label":"Temuera Morrison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d5\/4d593a027b9aa15cf30049d5\/temuera-morrison-profile.jpg","version":75,"id":"7242","lastModified":"1300042386000","name":"Temuera Morrison","type":"Person","_key":"612"} +{"label":"Ayesha Dharker","version":35,"id":"33191","lastModified":"1300090446000","name":"Ayesha Dharker","type":"Person","_key":"613"} +{"label":"Joel Edgerton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/674\/4cc2e7325e73d67785001674\/joel-edgerton-profile.jpg","version":65,"id":"33192","lastModified":"1300090323000","name":"Joel Edgerton","type":"Person","_key":"614"} +{"label":"Jack Thompson","version":77,"id":"12536","lastModified":"1300090355000","name":"Jack Thompson","type":"Person","_key":"615"} +{"label":"Bonnie Piesse","version":31,"id":"131634","lastModified":"1300091022000","name":"Bonnie Piesse","type":"Person","_key":"616"} +{"label":"Star Trek IV: The Voyage Home","description":"To save Earth from an alien probe, Kirk and his crew go back in time to retrieve the only beings who can communicate with it, humpback whales.","id":"168","runtime":119,"imdbId":"tt0092007","trailer":"http:\/\/www.youtube.com\/watch?v=ZAYCDsS3UjE","version":174,"lastModified":"1299912745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e9\/4bc9047a017a3c57fe0013e9\/star-trek-iv-the-voyage-home-mid.jpg","studio":"Paramount Pictures","genre":"Science Fiction","title":"Star Trek IV: The Voyage Home","releaseDate":533347200000,"language":"en","tagline":"The key to saving the future can only be found in the past.","type":"Movie","_key":"617"} +{"label":"Leonard Nimoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55d\/4c9ff0e45e73d6704b00055d\/leonard-nimoy-profile.jpg","version":72,"id":"1749","lastModified":"1299988541000","name":"Leonard Nimoy","type":"Person","_key":"618"} +{"label":"William Shatner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e4\/4bd0a1e7017a3c63eb0000e4\/william-shatner-profile.jpg","biography":"Handsome Canadian-born actor who - despite his detractors - has notched \nup an impressive 50-years-plus in front of the camera, most recently \ndisplaying comedic talent, and being instantly recognizable to several \ngenerations of cult TV fans as the square-jawed Capt. James T. Kirk, \ncommander of the starship USS Enterprise.\n\nShatner spent many years honing his craft in TV and live theater before debut<\/a>ing alongside Whoopi Goldberg <\/STRONG><\/SPAN>\n\nEarly life <\/b>\n\nVerbinski was born the third of five children to Vic and\nLaurette Verbinski in Oak Ridge, Tennessee. His siblings are Janine, Claire,\nDiane and Steven. His father was of Polish descent and worked as a nuclear physicist\nat Oak Ridge National Laboratory. In 1967 the Verbinski family moved to\nSouthern California, where a","version":87,"birthday":"-182912400000","id":"1704","birthplace":"Oak Ridge, Tennessee, USA","lastModified":"1299991616000","name":"Gore Verbinski","type":"Person","_key":"705"} +{"label":"Pirates of the Caribbean: At World's End","description":"Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with brave Will Turner and feisty Elizabeth Swann. And what of Jack Sparrow? Nothing is as it seems.","id":"285","runtime":168,"imdbId":"tt0449088","trailer":"http:\/\/www.youtube.com\/watch?v=8iHrEOiuoyw","homepage":"http:\/\/disney.go.com\/disneypictures\/pirates\/","version":329,"lastModified":"1300008904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecc\/4bc90631017a3c57fe001ecc\/pirates-of-the-caribbean-at-world-s-end-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Pirates of the Caribbean: At World's End","releaseDate":1179532800000,"language":"en","tagline":"At the end of the world, the adventure begins.","type":"Movie","_key":"706"} +{"label":"Chow Yun-Fat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d3\/4bd0f0e9017a3c63f30001d3\/chow-yun-fat-profile.jpg","biography":"Chow Yun Fat is a charismatic, athletically built and energetic Asian-born film star who first came to the attention of western audiences via his roles in the high-octane\/blazing guns action films of maverick HK director John Woo.\n\nBorn in 1955 on the quiet island of Lamma, part of the then British colony of Hong Kong near its famous Victoria Harbour, Chow's family moved to urban Hong Kong in 1965 and in early 1973, Chow attended a casting call for TVB, a division of Shaw Bros. productions. With","version":114,"birthday":"-461552400000","id":"1619","birthplace":"Lamma Island, Hong Kong","lastModified":"1299490940000","name":"Chow Yun-Fat","type":"Person","_key":"707"} +{"label":"Martin Klebba","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4c4f65de5e73d6303500001b\/martin-klebba-profile.jpg","version":40,"id":"4030","lastModified":"1299493368000","name":"Martin Klebba","type":"Person","_key":"708"} +{"label":"Greg Ellis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a7\/4c18d0e15e73d64a1f0002a7\/greg-ellis-profile.jpg","version":44,"id":"4031","lastModified":"1299491362000","name":"Greg Ellis","type":"Person","_key":"709"} +{"label":"Keith Richards","version":35,"id":"1430","lastModified":"1299492107000","name":"Keith Richards","type":"Person","_key":"710"} +{"label":"Charlie and the Chocolate Factory","description":"A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.","id":"118","runtime":106,"imdbId":"tt0367594","homepage":"http:\/\/chocolatefactorymovie.warnerbros.com\/","version":308,"lastModified":"1300023681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1b\/4bc9037e017a3c57fe000e1b\/charlie-and-the-chocolate-factory-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Charlie and the Chocolate Factory","releaseDate":1121385600000,"language":"en","tagline":"Willy Wonka Is semi-sweet and nuts","type":"Movie","_key":"711"} +{"label":"Freddie Highmore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4bce3ba0017a3c4867000001\/freddie-highmore-profile.jpg","version":82,"id":"1281","lastModified":"1299491387000","name":"Freddie Highmore","type":"Person","_key":"712"} +{"label":"AnnaSophia Robb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/068\/4bcc002a017a3c0f27000068\/annasophia-robb-profile.jpg","version":50,"id":"1285","lastModified":"1299491141000","name":"AnnaSophia Robb","type":"Person","_key":"713"} +{"label":"Julia Winter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d8\/4ce01d337b9aa168b30000d8\/julia-winter-profile.jpg","version":21,"id":"1286","lastModified":"1299492061000","name":"Julia Winter","type":"Person","_key":"714"} +{"label":"David Kelly","version":30,"id":"1282","lastModified":"1299492414000","name":"David Kelly","type":"Person","_key":"715"} +{"label":"Jordan Fry","version":20,"id":"1290","lastModified":"1299492771000","name":"Jordan Fry","type":"Person","_key":"716"} +{"label":"Philip Wiegratz","version":21,"id":"1291","lastModified":"1299492629000","name":"Philip Wiegratz","type":"Person","_key":"717"} +{"label":"James Fox","version":64,"id":"1292","lastModified":"1300048088000","name":"James Fox","type":"Person","_key":"718"} +{"label":"Franziska Troegner","version":20,"id":"1293","lastModified":"1299492917000","name":"Franziska Troegner","type":"Person","_key":"719"} +{"label":"Missi Pyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd6\/4d27c7fd7b9aa134d3001cd6\/missi-pyle-profile.jpg","version":45,"id":"1294","lastModified":"1299491743000","name":"Missi Pyle","type":"Person","_key":"720"} +{"label":"Deep Roy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4ce01dce7b9aa168b30000dd\/deep-roy-profile.jpg","version":32,"id":"1295","lastModified":"1299493097000","name":"Deep Roy","type":"Person","_key":"721"} +{"label":"Pirates of the Caribbean: The Curse of the Black Pearl","description":"Jack Sparrow, a freewheeling 17th-century pirate who roams the Caribbean Sea butts heads with a rival pirate bent on pillaging the village of Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her. But their seafaring mission is hardly simple.","id":"22","runtime":143,"imdbId":"tt0325980","trailer":"http:\/\/www.youtube.com\/watch?v=0Z1XpfbuZOA","homepage":"http:\/\/disney.go.com\/disneyvideos\/liveaction\/pirates\/main_site\/main.html","version":328,"lastModified":"1299913159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/242\/4bc9018b017a3c57fe000242\/pirates-of-the-caribbean-the-curse-of-the-black-pearl-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Pirates of the Caribbean: The Curse of the Black Pearl","releaseDate":1057708800000,"language":"en","tagline":"Prepare to be blown out of the water.","type":"Movie","_key":"722"} +{"label":"Damian O'Hare","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ef\/4d3ef1917b9aa15bbb0011ef\/damian-o-hare-profile.jpg","version":30,"id":"1712","lastModified":"1299492515000","name":"Damian O'Hare","type":"Person","_key":"723"} +{"label":"Giles New","version":29,"id":"1713","lastModified":"1299492396000","name":"Giles New","type":"Person","_key":"724"} +{"label":"Angus Barnett","version":34,"id":"1714","lastModified":"1299492087000","name":"Angus Barnett","type":"Person","_key":"725"} +{"label":"Michael Berry Jr.","version":29,"id":"1716","lastModified":"1299492514000","name":"Michael Berry Jr.","type":"Person","_key":"726"} +{"label":"Isaac C. Singleton Jr.","version":44,"id":"1717","lastModified":"1299968241000","name":"Isaac C. Singleton Jr.","type":"Person","_key":"727"} +{"label":"Chocolat","description":"A fable of emotional liberation and chocolate. A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river the prejudices of the Mayor leads to a crisis.","id":"392","runtime":122,"imdbId":"tt0241303","version":171,"lastModified":"1299998760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc90734017a3c57fe00259e\/chocolat-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Chocolat","releaseDate":976838400000,"language":"en","type":"Movie","_key":"728"} +{"label":"Lasse Hallstr\u00f6m","version":65,"id":"5306","lastModified":"1300015698000","name":"Lasse Hallstr\u00f6m","type":"Person","_key":"729"} +{"label":"Juliette Binoche","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4c2378877b9aa13f5f00008d\/juliette-binoche-profile.jpg","version":102,"id":"1137","lastModified":"1300041091000","name":"Juliette Binoche","type":"Person","_key":"730"} +{"label":"Alfred Molina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4c30f80f5e73d640bc00001d\/alfred-molina-profile.jpg","version":179,"birthday":"-524106000000","id":"658","birthplace":"London, England, UK","lastModified":"1299992131000","name":"Alfred Molina","type":"Person","_key":"731"} +{"label":"Judi Dench","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cd\/4c050910017a3c33d90001cd\/judi-dench-profile.jpg","version":135,"id":"5309","lastModified":"1300031820000","name":"Judi Dench","type":"Person","_key":"732"} +{"label":"Antonio Gil","version":16,"id":"5310","lastModified":"1299495601000","name":"Antonio Gil","type":"Person","_key":"733"} +{"label":"H\u00e9l\u00e8ne Cardona","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cfd\/4d27b3507b9aa134d8001cfd\/h-l-ne-cardona-profile.jpg","version":26,"id":"5311","lastModified":"1299493274000","name":"H\u00e9l\u00e8ne Cardona","type":"Person","_key":"734"} +{"label":"Hugh O'Conor","version":21,"id":"5312","lastModified":"1299493639000","name":"Hugh O'Conor","type":"Person","_key":"735"} +{"label":"Lena Olin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4c4e67e07b9aa1326d000066\/lena-olin-profile.jpg","version":49,"id":"5313","lastModified":"1299582712000","name":"Lena Olin","type":"Person","_key":"736"} +{"label":"Peter Stormare","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f5\/4bd30ab1017a3c63eb0002f5\/peter-stormare-profile.jpg","biography":"Peter Stormare, real name Rolf Peter Ingvar Storm, (born August 27, 1953) is a Swedish film, stage, voice and television actor as well as a theatrical director, playwright and musician.","version":130,"birthday":"-515898000000","id":"53","birthplace":"Kumla","lastModified":"1299784528000","name":"Peter Stormare","type":"Person","_key":"737"} +{"label":"Aurelien Parent Koenig","version":16,"id":"5314","lastModified":"1299495664000","name":"Aurelien Parent Koenig","type":"Person","_key":"738"} +{"label":"Victoire Thivisol","version":17,"id":"5315","lastModified":"1299494936000","name":"Victoire Thivisol","type":"Person","_key":"739"} +{"label":"Harrison Pratt","version":16,"id":"5316","lastModified":"1299494058000","name":"Harrison Pratt","type":"Person","_key":"740"} +{"label":"Gaelan Connell","version":21,"id":"5317","lastModified":"1299609386000","name":"Gaelan Connell","type":"Person","_key":"741"} +{"label":"Elisabeth Commelin","version":24,"id":"5318","lastModified":"1299493423000","name":"Elisabeth Commelin","type":"Person","_key":"742"} +{"label":"Ron Cook","version":28,"id":"5319","lastModified":"1299609029000","name":"Ron Cook","type":"Person","_key":"743"} +{"label":"Leslie Caron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/057\/4c23662f7b9aa13f5e000057\/leslie-caron-profile.jpg","version":33,"id":"5320","lastModified":"1299492617000","name":"Leslie Caron","type":"Person","_key":"744"} +{"label":"John Wood","version":42,"id":"5321","lastModified":"1299492953000","name":"John Wood","type":"Person","_key":"745"} +{"label":"The Polar Express","description":"This is the story of a young hero boy on Christmas Eve who boards on a powerful magical train that's headed to the North Pole and Santa Claus's home. What unfolds is an an adventure which follows a doubting boy, who takes an extraordinary train ride to the North Pole; during this ride, he embarks on a journey of self-discovery which shows him that the wonder of life never fades for those who believe.","id":"5255","runtime":100,"imdbId":"tt0338348","trailer":"http:\/\/www.youtube.com\/watch?v=ATUt_-p2XqM","homepage":"http:\/\/wwws.warnerbros.de\/movies\/polarexpress\/","version":956,"lastModified":"1300185594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4d6039ac5e73d63105000eab\/the-polar-express-mid.jpg","studio":"Castle Rock Entertainment","genre":"Adventure","title":"The Polar Express","releaseDate":1098316800000,"language":"en","tagline":"Journey Beyond Your Imagination.","type":"Movie","_key":"746"} +{"label":"Michael Jeter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dac\/4d27c2775e73d626a8001dac\/michael-jeter-profile.jpg","version":71,"id":"2169","lastModified":"1299840029000","name":"Michael Jeter","type":"Person","_key":"747"} +{"label":"Eddie Deezen","version":28,"id":"42362","lastModified":"1300090789000","name":"Eddie Deezen","type":"Person","_key":"748"} +{"label":"Chris Coppola","version":41,"id":"23791","lastModified":"1300189306000","name":"Chris Coppola","type":"Person","_key":"749"} +{"label":"Nona Gaye","version":27,"id":"18286","lastModified":"1300090471000","name":"Nona Gaye","type":"Person","_key":"750"} +{"label":"Peter Scolari","version":23,"id":"42363","lastModified":"1300091606000","name":"Peter Scolari","type":"Person","_key":"751"} +{"label":"Charles Fleischer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49a\/4d5338e97b9aa13aab01249a\/charles-fleischer-profile.jpg","version":39,"id":"12826","lastModified":"1299492480000","name":"Charles Fleischer","type":"Person","_key":"752"} +{"label":"Steven Tyler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41e\/4c99c07d7b9aa122de00041e\/steven-tyler-profile.jpg","version":25,"birthday":"-686970000000","id":"37935","birthplace":"Yonkers, New York, USA ","lastModified":"1300090457000","name":"Steven Tyler","type":"Person","_key":"753"} +{"label":"Leslie Zemeckis","version":31,"id":"42287","lastModified":"1300189305000","name":"Leslie Zemeckis","type":"Person","_key":"754"} +{"label":"Julene Renee","version":31,"id":"42286","lastModified":"1300189305000","name":"Julene Renee","type":"Person","_key":"755"} +{"label":"Apollo 13","description":"Technical troubles scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew in director Ron Howard's chronicle of this true-life story, which turns a failed journey into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.","id":"568","runtime":140,"imdbId":"tt0112384","trailer":"http:\/\/www.youtube.com\/watch?v=nEl0NsYn1fU","version":236,"lastModified":"1299974865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/177\/4d68030e7b9aa13636000177\/apollo-13-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Apollo 13","releaseDate":803779200000,"language":"en","tagline":"Houston, we have a problem.","type":"Movie","_key":"756"} +{"label":"Ron Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ac\/4bf878a6017a3c49020000ac\/ron-howard-profile.jpg","version":215,"id":"6159","lastModified":"1300013741000","name":"Ron Howard","type":"Person","_key":"757"} +{"label":"Bill Paxton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4bf078eb017a3c531500003d\/bill-paxton-profile.jpg","version":132,"id":"2053","lastModified":"1299947046000","name":"Bill Paxton","type":"Person","_key":"758"} +{"label":"Kevin Bacon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e0\/4bed49cf017a3c37a30003e0\/kevin-bacon-profile.jpg","version":146,"birthday":"-362451600000","id":"4724","birthplace":"Philadelphia","lastModified":"1299491319000","name":"Kevin Bacon","type":"Person","_key":"759"} +{"label":"Ed Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/133\/4c39ca115e73d671cf000133\/ed-harris-profile.jpg","version":169,"id":"228","lastModified":"1299950851000","name":"Ed Harris","type":"Person","_key":"760"} +{"label":"Kathleen Quinlan","version":49,"id":"8183","lastModified":"1300090354000","name":"Kathleen Quinlan","type":"Person","_key":"761"} +{"label":"Mary Kate Schellhardt","version":20,"id":"8184","lastModified":"1300090556000","name":"Mary Kate Schellhardt","type":"Person","_key":"762"} +{"label":"Emily Ann Lloyd","version":18,"id":"8185","lastModified":"1300090603000","name":"Emily Ann Lloyd","type":"Person","_key":"763"} +{"label":"Miko Hughes","version":30,"id":"8186","lastModified":"1300090489000","name":"Miko Hughes","type":"Person","_key":"764"} +{"label":"Max Elliott Slade","version":23,"id":"8187","lastModified":"1300090613000","name":"Max Elliott Slade","type":"Person","_key":"765"} +{"label":"Jean Speegle Howard","version":18,"id":"8188","lastModified":"1300090609000","name":"Jean Speegle Howard","type":"Person","_key":"766"} +{"label":"Tracy Reiner","version":24,"id":"8189","lastModified":"1300090580000","name":"Tracy Reiner","type":"Person","_key":"767"} +{"label":"David Andrews","version":83,"id":"7219","lastModified":"1299943436000","name":"David Andrews","type":"Person","_key":"768"} +{"label":"Michele Little","version":18,"id":"8190","lastModified":"1300090622000","name":"Michele Little","type":"Person","_key":"769"} +{"label":"Chris Ellis","version":42,"id":"8191","lastModified":"1299947846000","name":"Chris Ellis","type":"Person","_key":"770"} +{"label":"Joe Spano","version":28,"id":"8192","lastModified":"1300090586000","name":"Joe Spano","type":"Person","_key":"771"} +{"label":"Xander Berkeley","version":121,"id":"3982","lastModified":"1299944929000","name":"Xander Berkeley","type":"Person","_key":"772"} +{"label":"Roger Corman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4bcee6ab017a3c486a0000b2\/roger-corman-profile.jpg","version":227,"id":"102429","lastModified":"1299958408000","name":"Roger Corman","type":"Person","_key":"773"} +{"label":"Philadelphia","description":"No one would take his case until one man was willing to take on the system. Two competing lawyers join forces to sue a prestigious law firm for aids discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.","id":"9800","runtime":125,"imdbId":"tt0107818","version":148,"lastModified":"1300170007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac4\/4bc92922017a3c57fe010ac4\/philadelphia-mid.jpg","genre":"Drama","title":"Philadelphia","releaseDate":756604800000,"language":"en","type":"Movie","_key":"774"} +{"label":"Roberta Maxwell","version":20,"id":"10362","lastModified":"1300091594000","name":"Roberta Maxwell","type":"Person","_key":"775"} +{"label":"Buzz Kilman","version":17,"id":"59329","lastModified":"1300091999000","name":"Buzz Kilman","type":"Person","_key":"776"} +{"label":"Antonio Banderas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d9\/4bf8843c017a3c490c0000d9\/antonio-banderas-profile.jpg","biography":"

Antonio Banderas, one of Spain's most famous faces who was a soccer \nplayer until he broke his foot at age 14, is now an international film \nstar best known as Zorro in the eponymous film franchise.\n\nHe was \nborn Jos\u00e9 Antonio Dom\u00ednguez Banderas on August 10, 1960, in M\u00e1laga, \nAndalusia, Spain. His father, Jose Dominguez, was a policeman in the \nSpanish civil guards. His mother, Do\u00f1a Ana Banderas, was a school \nteacher. Young Banderas was brought up a Roman Catholic, but eventually \nhad libera","version":196,"birthday":"-296442000000","id":"3131","birthplace":"M\u00e1laga, Andaluc\u00eda, Spain ","lastModified":"1300015795000","name":"Antonio Banderas","type":"Person","_key":"777"} +{"label":"Denzel Washington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ea\/4bde5c39017a3c35b90000ea\/denzel-washington-profile.jpg","biography":"

Denzel Hayes Washington, Jr.<\/SPAN><\/B> (born December 28, 19<\/st1:date>54) is an American actor, screenwriter, director and film producer. He first rose to prominence when he joined the cast of the Medical drama St. El","version":203,"birthday":"-473734800000","id":"5292","birthplace":"Mount Vernon, New York, USA","lastModified":"1299779156000","name":"Denzel Washington","type":"Person","_key":"778"} +{"label":"Jonathan Demme","version":66,"id":"16294","lastModified":"1299671985000","name":"Jonathan Demme","type":"Person","_key":"779"} +{"label":"The Green Mile","description":"A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cellblock's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.","id":"497","runtime":188,"imdbId":"tt0120689","trailer":"http:\/\/www.youtube.com\/watch?v=ctRK-4Vt7dA","homepage":"http:\/\/thegreenmile.warnerbros.com\/","version":200,"lastModified":"1299985732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c01\/4bc90828017a3c57fe002c01\/the-green-mile-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Green Mile","releaseDate":944784000000,"language":"en","tagline":"Miracles do happen.","type":"Movie","_key":"780"} +{"label":"Frank Darabont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c6\/4bf7d01b017a3c772b0004c6\/frank-darabont-profile.jpg","version":101,"id":"4027","lastModified":"1299840028000","name":"Frank Darabont","type":"Person","_key":"781"} +{"label":"Michael Clarke Duncan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4bd3e1eb017a3c7fa6000033\/michael-clarke-duncan-profile.jpg","biography":"Michael Clarke Duncan<\/STRONG><\/SPAN>Sir Ian Murray McKellen is\nan English actor. He has received a Tony Award and two Academy Award\nnominations. His work has spanned genres from Shakespearean and modern theatre\nto popular fantasy and science fiction. He is known to many for roles such as\nGandalf in the Lord of the Rings film trilogy and as Magneto in the X-Men\nfilms.<\/o:p><\/span><\/span><\/p>\n\nMadonna<\/b> (born Madonna Louise Ciccone<\/b>; August 16, 1958) is an American recording artist, actress and entrepreneur. Born in Cuba<\/SPAN><\/B><\/st1:place><\/st1:country-region> M. Gooding, Jr.<\/SPAN>","version":136,"birthday":"-63075600000","id":"9777","birthplace":"Bronx, New York, USA","lastModified":"1299956456000","name":"Cuba Gooding Jr.","type":"Person","_key":"876"} +{"label":"Denis Leary","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4cab9da25e73d64dcd0000b5\/denis-leary-profile.jpg","version":142,"birthday":"-390445200000","id":"5724","birthplace":"Worcester, Massachusetts, US","lastModified":"1299752331000","name":"Denis Leary","type":"Person","_key":"877"} +{"label":"Jeremy Piven","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b2\/4c57f0215e73d63a710002b2\/jeremy-piven-profile.jpg","version":99,"id":"12799","lastModified":"1299845229000","name":"Jeremy Piven","type":"Person","_key":"878"} +{"label":"Peter Greene","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/630\/4bfad2ba017a3c7031000630\/peter-greene-profile.jpg","version":73,"birthday":"-133578000000","id":"11803","birthplace":"Montclair, New Jersey, USA","lastModified":"1299968241000","name":"Peter Greene","type":"Person","_key":"879"} +{"label":"Michael DeLorenzo","version":34,"id":"52422","lastModified":"1299929006000","name":"Michael DeLorenzo","type":"Person","_key":"880"} +{"label":"Life in Loops (A Megacities RMX)","description":"A remix of images and sounds, using a films original material and mixing it with new imagery.","id":"8","runtime":80,"imdbId":"tt0825671","trailer":"http:\/\/www.youtube.com\/watch?v=id826_ILHdE","homepage":"http:\/\/www.lifeinloops.com","version":48,"lastModified":"1299531689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/656\/4d01f4177b9aa11bc4000656\/life-in-loops-a-megacities-rmx-mid.jpg","studio":"Orbrock Filmproduktion","genre":"Documentary","title":"Life in Loops (A Megacities RMX)","releaseDate":1136073600000,"language":"en","tagline":"A Megacities remix.","type":"Movie","_key":"881"} +{"label":"Timo Novotny","version":21,"id":"34833","lastModified":"1299499447000","name":"Timo Novotny","type":"Person","_key":"882"} +{"label":"Sunday in August","description":"No overview found.","id":"9","runtime":15,"imdbId":"tt0425473","version":60,"lastModified":"1299531623000","genre":"Drama","title":"Sunday in August","releaseDate":1094083200000,"language":"en","type":"Movie","_key":"883"} +{"label":"Marc Meyer","version":20,"id":"867","lastModified":"1299493002000","name":"Marc Meyer","type":"Person","_key":"884"} +{"label":"Anna Haas","version":13,"id":"914","lastModified":"1299493270000","name":"Anna Haas","type":"Person","_key":"885"} +{"label":"Rita Lengyel","version":16,"id":"901","lastModified":"1299492471000","name":"Rita Lengyel","type":"Person","_key":"886"} +{"label":"Milton Welsh","version":13,"id":"902","lastModified":"1299493051000","name":"Milton Welsh","type":"Person","_key":"887"} +{"label":"Star Wars Collection","description":"A series of six films from the Director, Screenwriter, and Producer George Lucas. Luke Skywalker, Princess Leia, Darth Vader, C3PO, R2D2 and many other characters from the film are now household names from one of the most successful film projects of all time.","id":"10","homepage":"http:\/\/www.starwars.com\/","version":95,"lastModified":"1299815466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/183\/4c03ce5d017a3c7e8f000183\/star-wars-collection-mid.jpg","title":"Star Wars Collection","language":"en","type":"Movie","_key":"888"} +{"label":"Finding Nemo","description":"A tale which follows the comedic and eventful journeys of two fish, the fretful Marlin and his young son Nemo, who are separated from each other in the Great Barrier Reef when Nemo is unexpectedly taken from his home and thrust into a fish tank in a dentist's office overlooking Sydney Harbor. Buoyed by the companionship of a friendly but forgetful fish named Dory, the overly cautious Marlin embarks on a dangerous trek and finds himself the unlikely hero of an epic journey to rescue his son.","id":"12","runtime":100,"imdbId":"tt0266543","trailer":"http:\/\/www.youtube.com\/watch?v=gfgeIZyrIM0","version":150,"lastModified":"1299913059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4bc90150017a3c57fe0000e6\/finding-nemo-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Finding Nemo","releaseDate":1054252800000,"language":"en","tagline":"There are 3.7 trillion fish in the ocean, they're looking for one.","type":"Movie","_key":"889"} +{"label":"Andrew Stanton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/202\/4bccb786017a3c0f34000202\/andrew-stanton-profile.jpg","version":199,"birthday":"-128739600000","id":"7","lastModified":"1299951083000","name":"Andrew Stanton","type":"Person","_key":"890"} +{"label":"Lee Unkrich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16a\/4bccb9a3017a3c0f2a00016a\/lee-unkrich-profile.jpg","version":131,"birthday":"-75776400000","id":"8","lastModified":"1299491367000","name":"Lee Unkrich","type":"Person","_key":"891"} +{"label":"Alexander Gould","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bcdd7d0017a3c6b48000007\/alexander-gould-profile.jpg","version":31,"id":"12","lastModified":"1299491382000","name":"Alexander Gould","type":"Person","_key":"892"} +{"label":"Albert Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4bcdd96e017a3c6b4800000d\/albert-brooks-profile.jpg","version":55,"id":"13","lastModified":"1299582190000","name":"Albert Brooks","type":"Person","_key":"893"} +{"label":"Ellen DeGeneres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4bcdda15017a3c6b48000013\/ellen-degeneres-profile.jpg","version":32,"id":"14","lastModified":"1299491382000","name":"Ellen DeGeneres","type":"Person","_key":"894"} +{"label":"Brad Garrett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bcddb5b017a3c6b42000007\/brad-garrett-profile.jpg","version":52,"id":"18","lastModified":"1299491375000","name":"Brad Garrett","type":"Person","_key":"895"} +{"label":"Allison Janney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f3\/4bdba99d017a3c5d8b0001f3\/allison-janney-profile.jpg","biography":"Personal life\n\nJanney was born in Dayton, Ohio, the daughter of Macy (n\u00e9e Putnam), a former actress and homemaker, and Jervis Spencer Janney, Jr., a real estate developer and jazz musician.[1] She has two older brothers, Jay and Hal.[2] She attended The Miami Valley School in Dayton, where she was named a distinguished alumna in 2004, and the Hotchkiss School in Connecticut. She then attended Kenyon College. At Kenyon, Janney studied under another Kenyon alum, Paul Newman. She went on to study d","version":70,"id":"19","lastModified":"1299907038000","name":"Allison Janney","type":"Person","_key":"896"} +{"label":"Elizabeth Perkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4bcdde9a017a3c6b4e00000e\/elizabeth-perkins-profile.jpg","version":51,"id":"20","lastModified":"1299491378000","name":"Elizabeth Perkins","type":"Person","_key":"897"} +{"label":"Barry Humphries","version":32,"id":"22","lastModified":"1299491614000","name":"Barry Humphries","type":"Person","_key":"898"} +{"label":"Bill Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c5\/4cc5be1f7b9aa138d80024c5\/bill-hunter-profile.jpg","version":37,"id":"23","lastModified":"1299491422000","name":"Bill Hunter","type":"Person","_key":"899"} +{"label":"Willem Dafoe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/277\/4bd9a359017a3c1c05000277\/willem-dafoe-profile.jpg","biography":"William \"Willem\" Dafoe (born July 22, 1955) is an American film and stage actor, and a founding member of the experimental theatre company The Wooster Group. He is known for his very iconic face and voice. He has had an illustrious career including roles in To Live and Die in L.A., Platoon, Born on the Fourth of July, The Last Temptation of Christ, Mississippi Burning, The Boondock Saints, The English Patient, Speed 2: Cruise Control, the Spider-Man films, and Daybreakers.","version":221,"id":"5293","lastModified":"1300041811000","name":"Willem Dafoe","type":"Person","_key":"900"} +{"label":"American Beauty","description":"Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.","id":"14","runtime":117,"imdbId":"tt0169547","trailer":"http:\/\/www.youtube.com\/watch?v=ChzaLc4rS04","homepage":"http:\/\/www.dreamworks.com\/ab\/","version":197,"lastModified":"1299912870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/140\/4ca12d2e5e73d612f8000140\/american-beauty-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"American Beauty","releaseDate":936748800000,"language":"en","tagline":"Look closer","type":"Movie","_key":"901"} +{"label":"Sam Mendes","version":51,"id":"39","lastModified":"1299491387000","name":"Sam Mendes","type":"Person","_key":"902"} +{"label":"Kevin Spacey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4c24b7c87b9aa144690000ce\/kevin-spacey-profile.jpg","biography":"Kevin moved his youth in Los Angeles with his family (mother, secretary, technical father of Lockheed Corporation, a sister and a brother both larger). Given the turbulent nature of the boy's parents decide to enroll at Northridge Military Academy, where but little is ejected after hitting - it seems self-defense - another student of the academy. Kevin then enrolled at Chatsworth High School, where he met two future colleagues, Val Kilmer and Mare Winningham, in which states during the study in ","version":214,"birthday":"-329360400000","id":"1979","birthplace":"South Orange, USA","lastModified":"1299916177000","name":"Kevin Spacey","type":"Person","_key":"903"} +{"label":"Annette Bening","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23f\/4bf193b5017a3c321200023f\/annette-bening-profile.jpg","version":80,"id":"516","lastModified":"1299961103000","name":"Annette Bening","type":"Person","_key":"904"} +{"label":"Thora Birch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14f\/4d7833f57b9aa157bd00014f\/thora-birch-profile.jpg","version":54,"birthday":"384649200000","id":"2155","birthplace":"Los Angeles, California, USA","lastModified":"1299719653000","name":"Thora Birch","type":"Person","_key":"905"} +{"label":"Wes Bentley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4c1604b17b9aa105c20000e6\/wes-bentley-profile.jpg","version":41,"id":"8210","lastModified":"1299492031000","name":"Wes Bentley","type":"Person","_key":"906"} +{"label":"Mena Suvari","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/210\/4c3b0ee45e73d671d0000210\/mena-suvari-profile.jpg","version":81,"birthday":"287708400000","id":"8211","birthplace":"Newport, Rhode Island, USA","lastModified":"1299779512000","name":"Mena Suvari","type":"Person","_key":"907"} +{"label":"Chris Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c3d9eb75e73d6035d000046\/chris-cooper-profile.jpg","version":139,"id":"2955","lastModified":"1299831363000","name":"Chris Cooper","type":"Person","_key":"908"} +{"label":"Scott Bakula","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/467\/4c59b8ca5e73d63a6c000467\/scott-bakula-profile.jpg","version":40,"id":"2154","lastModified":"1299493200000","name":"Scott Bakula","type":"Person","_key":"909"} +{"label":"Peter Gallagher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/080\/4ce596047b9aa179ba000080\/peter-gallagher-profile.jpg","version":81,"id":"8212","lastModified":"1299859754000","name":"Peter Gallagher","type":"Person","_key":"910"} +{"label":"Sam Robards","version":37,"id":"8213","lastModified":"1299492143000","name":"Sam Robards","type":"Person","_key":"911"} +{"label":"Barry Del Sherman","version":32,"id":"8214","lastModified":"1299491492000","name":"Barry Del Sherman","type":"Person","_key":"912"} +{"label":"Citizen Kane","description":"Orson Wells was 26 when he made his first feature film Citizen Kane. The film became known as one of the greatest of all time and earned him international celebrity. The story is about the publishing business and how one thrill-seeker\u2019s struggle for power negatively affected everybody he came in contact with and eventually lead to a merciless war. ","id":"15","runtime":117,"imdbId":"tt0033467","trailer":"http:\/\/www.youtube.com\/watch?v=zyv19bg0scg","version":117,"lastModified":"1299913156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15c\/4bc90163017a3c57fe00015c\/citizen-kane-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"Citizen Kane","releaseDate":-904780800000,"language":"en","tagline":"Everybody's talking about it!","type":"Movie","_key":"913"} +{"label":"Orson Welles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/904\/4bf546b0017a3c320b000904\/orson-welles-profile.jpg","version":173,"birthday":"-1724893200000","id":"40","lastModified":"1300012305000","name":"Orson Welles","type":"Person","_key":"914"} +{"label":"Joseph Cotten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/151\/4bcc6a58017a3c0f34000151\/joseph-cotten-profile.jpg","version":83,"id":"7664","lastModified":"1299948755000","name":"Joseph Cotten","type":"Person","_key":"915"} +{"label":"Agnes Moorehead","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ad\/4bfac299017a3c70360005ad\/agnes-moorehead-profile.jpg","version":47,"id":"11025","lastModified":"1299492682000","name":"Agnes Moorehead","type":"Person","_key":"916"} +{"label":"Ruth Warrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fb\/4c2cebab7b9aa15e9b0001fb\/ruth-warrick-profile.jpg","version":22,"id":"11026","lastModified":"1299493202000","name":"Ruth Warrick","type":"Person","_key":"917"} +{"label":"Everett Sloane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e83\/4bffe274017a3c7037000e83\/everett-sloane-profile.jpg","version":37,"id":"11027","lastModified":"1299493690000","name":"Everett Sloane","type":"Person","_key":"918"} +{"label":"George Coulouris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36b\/4c62bd417b9aa1775a00036b\/george-coulouris-profile.jpg","version":32,"id":"11028","lastModified":"1299493771000","name":"George Coulouris","type":"Person","_key":"919"} +{"label":"Dorothy Comingore","version":19,"id":"11029","lastModified":"1299496575000","name":"Dorothy Comingore","type":"Person","_key":"920"} +{"label":"William Alland","version":26,"id":"11030","lastModified":"1299495503000","name":"William Alland","type":"Person","_key":"921"} +{"label":"Philip Van Zandt","version":26,"id":"11031","lastModified":"1299795193000","name":"Philip Van Zandt","type":"Person","_key":"922"} +{"label":"Buddy Swan","version":17,"id":"11032","lastModified":"1299495608000","name":"Buddy Swan","type":"Person","_key":"923"} +{"label":"Paul Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11f\/4bd5a22b017a3c2e7d00011f\/paul-stewart-profile.jpg","biography":"Paul Stewart (May 13, 1908 \u2013 February 17, 1986) was an American character actor known for his tough, guttural voice. He frequently portrayed villains and mobsters throughout his lengthy career.\n\nBorn Paul Sternberg in New York City, Stewart graduated from Columbia University and made his Broadway theatre debut in the play Two Seconds in 1931. A few years later he met Orson Welles, who invited him to join the Mercury Theatre, where he participated in the notorious 1938 radio broadcast of The War","version":43,"birthday":"-1945126800000","id":"11033","birthplace":"New York City, New York, USA","lastModified":"1300013601000","name":"Paul Stewart","type":"Person","_key":"924"} +{"label":"Harry Shannon","version":53,"id":"4077","lastModified":"1299926718000","name":"Harry Shannon","type":"Person","_key":"925"} +{"label":"Dancer in the Dark","description":"Dancer in the Dark \u2013 With his third film from the series \u201cHeart of Gold Trilogy\u201d Lars von Trier takes us on a passionate music adventure of a poor Czech immigrant who moves to the states with her son. Iceland\u2019s singer Bj\u00f6rk plays the main character. The Film uses stylistic techniques from old 1950\u2019s and 60\u2019s American musicals along with the Dogma approach to filming. ","id":"16","runtime":140,"imdbId":"tt0168629","trailer":"http:\/\/www.youtube.com\/watch?v=I6Oc3Oe_LpQ","version":117,"lastModified":"1299805449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16a\/4bc90165017a3c57fe00016a\/dancer-in-the-dark-mid.jpg","studio":"Fine Line Features","genre":"Crime","title":"Dancer in the Dark","releaseDate":958521600000,"language":"en","tagline":"You don't need eyes to see.","type":"Movie","_key":"926"} +{"label":"Lars von Trier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/020\/4c90148a5e73d61ee7000020\/lars-von-trier-profile.jpg","version":100,"id":"42","lastModified":"1299695712000","name":"Lars von Trier","type":"Person","_key":"927"} +{"label":"Bj\u00f6rk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df4\/4d3eba2e7b9aa15bbf000df4\/bj-rk-profile.jpg","version":28,"id":"47","lastModified":"1299491597000","name":"Bj\u00f6rk","type":"Person","_key":"928"} +{"label":"Catherine Deneuve","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/581\/4c62aa0e7b9aa172de000581\/catherine-deneuve-profile.jpg","version":123,"id":"50","lastModified":"1299612782000","name":"Catherine Deneuve","type":"Person","_key":"929"} +{"label":"Joel Grey","version":31,"id":"6748","lastModified":"1299942359000","name":"Joel Grey","type":"Person","_key":"930"} +{"label":"Cara Seymour","version":39,"id":"2617","lastModified":"1299491658000","name":"Cara Seymour","type":"Person","_key":"931"} +{"label":"Vladica Kostic","version":16,"id":"6749","lastModified":"1299494684000","name":"Vladica Kostic","type":"Person","_key":"932"} +{"label":"Jean-Marc Barr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b35\/4d6918295e73d66b35000b35\/jean-marc-barr-profile.jpg","version":44,"id":"1642","lastModified":"1299492090000","name":"Jean-Marc Barr","type":"Person","_key":"933"} +{"label":"Vincent Paterson","version":19,"id":"6750","lastModified":"1299495370000","name":"Vincent Paterson","type":"Person","_key":"934"} +{"label":"Zeljko Ivanek","version":32,"id":"6752","lastModified":"1299491400000","name":"Zeljko Ivanek","type":"Person","_key":"935"} +{"label":"Udo Kier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/743\/4caa054a7b9aa17ace000743\/udo-kier-profile.jpg","version":123,"id":"1646","lastModified":"1299960741000","name":"Udo Kier","type":"Person","_key":"936"} +{"label":"Jens Albinus","version":26,"id":"6121","lastModified":"1299672742000","name":"Jens Albinus","type":"Person","_key":"937"} +{"label":"Reathel Bean","version":21,"id":"6753","lastModified":"1299688926000","name":"Reathel Bean","type":"Person","_key":"938"} +{"label":"Mette Berggreen","version":17,"id":"6754","lastModified":"1299495035000","name":"Mette Berggreen","type":"Person","_key":"939"} +{"label":"Lars Michael Dinesen","version":16,"id":"6755","lastModified":"1299494685000","name":"Lars Michael Dinesen","type":"Person","_key":"940"} +{"label":"Katrine Falkenberg","version":16,"id":"6756","lastModified":"1299495275000","name":"Katrine Falkenberg","type":"Person","_key":"941"} +{"label":"Michael Flessas","version":16,"id":"6757","lastModified":"1299494244000","name":"Michael Flessas","type":"Person","_key":"942"} +{"label":"John Randolph Jones","version":26,"id":"6758","lastModified":"1299688927000","name":"John Randolph Jones","type":"Person","_key":"943"} +{"label":"Paprika Steen","version":37,"id":"4458","lastModified":"1299672742000","name":"Paprika Steen","type":"Person","_key":"944"} +{"label":"The Dark","description":"Ad\u00e8le and her daughter Sarah are traveling on the Welsh coastline to see her husband James when Sarah disappears. A different but similar looking girl appears who says she died in a past time. Ad\u00e8le tries to discover what happened to her daughter as she is tormented by Celtic mythology from the past.","id":"17","runtime":87,"imdbId":"tt0411267","homepage":"http:\/\/www.whatisannwyn.co.uk\/","version":429,"lastModified":"1300006301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/173\/4bc90166017a3c57fe000173\/the-dark-mid.jpg","studio":"Highlight","genre":"Horror","title":"The Dark","releaseDate":1129248000000,"language":"en","tagline":"One of the living for one of the dead.","type":"Movie","_key":"945"} +{"label":"John Fawcett","version":20,"id":"43","lastModified":"1299491897000","name":"John Fawcett","type":"Person","_key":"946"} +{"label":"Maria Bello","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ca\/4bfa3a29017a3c702f0003ca\/maria-bello-profile.jpg","version":101,"birthday":"-85453200000","id":"49","birthplace":"Norristown, Pennsylvania","lastModified":"1299906553000","name":"Maria Bello","type":"Person","_key":"947"} +{"label":"Richard Elfyn","version":14,"id":"51","lastModified":"1299491861000","name":"Richard Elfyn","type":"Person","_key":"948"} +{"label":"Maurice Ro\u00ebves","version":26,"id":"54","lastModified":"1299491802000","name":"Maurice Ro\u00ebves","type":"Person","_key":"949"} +{"label":"Abigail Stone","version":16,"id":"55","lastModified":"1299492156000","name":"Abigail Stone","type":"Person","_key":"950"} +{"label":"Sophie Stuckey","version":21,"id":"56","lastModified":"1299491847000","name":"Sophie Stuckey","type":"Person","_key":"951"} +{"label":"Abigail Breslin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4bd5edc4017a3c65800000db\/abigail-breslin-profile.jpg","version":74,"id":"17140","lastModified":"1299991851000","name":"Abigail Breslin","type":"Person","_key":"952"} +{"label":"The Fifth Element","description":"It\u2019s the year 2257 and a taxi driver has been unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity. The Fifth Element is filmed in a futuristic metropolitan city and in a French comic book asthetic by a controversial British, French and American lineup.","id":"18","runtime":127,"imdbId":"tt0119116","trailer":"http:\/\/www.youtube.com\/watch?v=OoKssDjs64o","version":375,"lastModified":"1299913179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a7\/4bc90170017a3c57fe0001a7\/the-fifth-element-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"The Fifth Element","releaseDate":862963200000,"language":"en","tagline":"There is no future without it.","type":"Movie","_key":"953"} +{"label":"Milla Jovovich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/595\/4be0f499017a3c35bb000595\/milla-jovovich-profile.jpg","biography":"Milla Jovovich, born as Milica Natasha Jovovich, is an Ukrainian-born actress, an American supermodel, musician, and fashion designer. Over her career, she has appeared in a number of science fiction and action themed films, for which music channel VH1 has referred to her as the \"reigning queen of kick-butt\". Born on 17th December, 1975, Milla has appeared on the cover of more than a hundred magazines, and has also starred in films such as The Fifth Element (1997), Ultraviolet (2006), and the 'R","version":165,"birthday":"188002800000","id":"63","birthplace":"Kiev, Ukraine","lastModified":"1299942477000","name":"Milla Jovovich","type":"Person","_key":"954"} +{"label":"Chris Tucker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2fc\/4cd639005e73d676d30002fc\/chris-tucker-profile.jpg","biography":"Christopher \"Chris\" Tucker<\/SPAN><\/B> (born August 31, 1972) is an American actor and comedian, best known for his roles as Detective James Carter in the Rush Hour<\/I> trilogy and Smokey in the 1995 film Friday<\/I>.Eric Marlon Bishop<\/SPAN><\/B> (born December 13, 1967), professionally known as Jamie Foxx<\/B>, is an American actor, singer-songwriter, stand-up comedian, and talk radio host. As an actor, his work in the film Ray<\/I> earned him","version":105,"birthday":"-64803600000","id":"134","birthplace":"Terrell, Texas","lastModified":"1299843147000","name":"Jamie Foxx","type":"Person","_key":"1014"} +{"label":"Jake Gyllenhaal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/422\/4bfa50d2017a3c702f000422\/jake-gyllenhaal-profile.jpg","version":121,"id":"131","lastModified":"1299860315000","name":"Jake Gyllenhaal","type":"Person","_key":"1015"} +{"label":"Scott MacDonald","version":19,"id":"132","lastModified":"1299491736000","name":"Scott MacDonald","type":"Person","_key":"1016"} +{"label":"Lucas Black","version":43,"id":"155","lastModified":"1299582185000","name":"Lucas Black","type":"Person","_key":"1017"} +{"label":"Peter Sarsgaard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4bf00685017a3c3e90000095\/peter-sarsgaard-profile.jpg","version":82,"id":"133","lastModified":"1299494950000","name":"Peter Sarsgaard","type":"Person","_key":"1018"} +{"label":"Walk on Water","description":"Eyal, an Israeli Mossad agent, is given the mission to track down and kill the very old Alfred Himmelman, an ex-Nazi officer, who might still be alive. Pretending to be a tourist guide, he befriends his grandson Axel, in Israel to visit his sister Pia. The two men set out on a tour of the country during which, Axel challenges Eyal's values.","id":"26","runtime":103,"imdbId":"tt0352994","trailer":"http:\/\/www.youtube.com\/watch?v=4","homepage":"http:\/\/www.walkonwatermovie.com","version":135,"lastModified":"1299912970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/114\/4c564e0d7b9aa151f6000114\/walk-on-water-mid.jpg","studio":"Lama Films","genre":"Drama","title":"Walk on Water","releaseDate":1075939200000,"language":"en","tagline":"He was trained to hate until he met the enemy.","type":"Movie","_key":"1019"} +{"label":"Eytan Fox","version":17,"id":"160","lastModified":"1299491808000","name":"Eytan Fox","type":"Person","_key":"1020"} +{"label":"Lior Ashkenazi","version":17,"id":"164","lastModified":"1299492148000","name":"Lior Ashkenazi","type":"Person","_key":"1021"} +{"label":"Knut Berger","version":18,"id":"165","lastModified":"1299492083000","name":"Knut Berger","type":"Person","_key":"1022"} +{"label":"Caroline Peters","version":16,"id":"166","lastModified":"1299492155000","name":"Caroline Peters","type":"Person","_key":"1023"} +{"label":"Gideon Shemer","version":16,"id":"167","lastModified":"1299491977000","name":"Gideon Shemer","type":"Person","_key":"1024"} +{"label":"Carola Regnier","version":19,"id":"168","lastModified":"1299492394000","name":"Carola Regnier","type":"Person","_key":"1025"} +{"label":"Hanns Zischler","version":49,"id":"169","lastModified":"1299751790000","name":"Hanns Zischler","type":"Person","_key":"1026"} +{"label":"Ernest Lenart","version":15,"id":"170","lastModified":"1299492278000","name":"Ernest Lenart","type":"Person","_key":"1027"} +{"label":"9 Songs","description":"Michael Winterbottoms 9 Songs is a story of a young pair Matt and Lisa who\u2019s relationship is stretched out through nine concerts from popular British Indie Bands. The concept of the film is to illustrate very explicit love scenes, similar to what pornography is, mixed with the nine songs from their relationship.","id":"27","runtime":71,"imdbId":"tt0411705","trailer":"http:\/\/www.youtube.com\/watch?v=KPEml385J4w","homepage":"http:\/\/www.tiscali.co.uk\/events\/2005\/9songs\/main.html","version":149,"lastModified":"1299912449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a9\/4bc901d2017a3c57fe0003a9\/9-songs-mid.jpg","studio":"Optimum Releasing","genre":"Drama","title":"9 Songs","releaseDate":1121990400000,"language":"en","type":"Movie","_key":"1028"} +{"label":"Michael Winterbottom","version":67,"id":"172","lastModified":"1299491423000","name":"Michael Winterbottom","type":"Person","_key":"1029"} +{"label":"Kieran O'Brien","version":21,"id":"176","lastModified":"1299492320000","name":"Kieran O'Brien","type":"Person","_key":"1030"} +{"label":"Margo Stilley","version":15,"id":"177","lastModified":"1299492308000","name":"Margo Stilley","type":"Person","_key":"1031"} +{"label":"The Dandy Warhols","version":15,"id":"3688","lastModified":"1299493664000","name":"The Dandy Warhols","type":"Person","_key":"1032"} +{"label":"Elbow","version":12,"id":"3689","lastModified":"1299493329000","name":"Elbow","type":"Person","_key":"1033"} +{"label":"Franz Ferdinand","version":12,"id":"3690","lastModified":"1299493582000","name":"Franz Ferdinand","type":"Person","_key":"1034"} +{"label":"Black Rebel Motorcycle Club","version":12,"id":"3691","lastModified":"1299493328000","name":"Black Rebel Motorcycle Club","type":"Person","_key":"1035"} +{"label":"The Von Bondies","version":12,"id":"3692","lastModified":"1299494217000","name":"The Von Bondies","type":"Person","_key":"1036"} +{"label":"Super Furry Animals","version":12,"id":"3694","lastModified":"1299494217000","name":"Super Furry Animals","type":"Person","_key":"1037"} +{"label":"Michael Nyman","version":35,"id":"10759","lastModified":"1299671726000","name":"Michael Nyman","type":"Person","_key":"1038"} +{"label":"Apocalypse Now","description":"During the American war in Vietnam, U.S. Army Captain Willard is given a dangerous mission that officially \"does not exist, nor will it ever exist\". His goal is to locate a mysterious Green Beret Colonel, Walter Kurtz, whose personal army has been conducting missions against the Vietnamese in forbidden Cambodia. Willard's superiors believe Kurtz has gone insane and have tasked him with termination of the Colonel's command, termination with extreme prejudice...","id":"28","runtime":153,"imdbId":"tt0078788","trailer":"http:\/\/www.youtube.com\/watch?v=qxJW-gyn5XE","version":217,"lastModified":"1299912433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77c\/4d4eea397b9aa13aaf00a77c\/apocalypse-now-mid.jpg","studio":"Omni Zoetrope Studios","genre":"Action","title":"Apocalypse Now","releaseDate":295142400000,"language":"en","tagline":"This is the end...","type":"Movie","_key":"1039"} +{"label":"Francis Ford Coppola","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f30\/4d1714967b9aa11488002f30\/francis-ford-coppola-profile.jpg","version":305,"id":"1776","lastModified":"1299755522000","name":"Francis Ford Coppola","type":"Person","_key":"1040"} +{"label":"Martin Sheen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ea\/4bd86b48017a3c1c000000ea\/martin-sheen-profile.jpg","version":133,"id":"8349","lastModified":"1299946960000","name":"Martin Sheen","type":"Person","_key":"1041"} +{"label":"Marlon Brando","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a4\/4bde802a017a3c35b40001a4\/marlon-brando-profile.jpg","version":100,"id":"3084","lastModified":"1300012637000","name":"Marlon Brando","type":"Person","_key":"1042"} +{"label":"Robert Duvall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07e\/4beb3f60017a3c37a000007e\/robert-duvall-profile.jpg","version":207,"id":"3087","lastModified":"1300003850000","name":"Robert Duvall","type":"Person","_key":"1043"} +{"label":"Sam Bottoms","version":36,"id":"8350","lastModified":"1299492823000","name":"Sam Bottoms","type":"Person","_key":"1044"} +{"label":"Frederic Forrest","version":49,"id":"8351","lastModified":"1299689594000","name":"Frederic Forrest","type":"Person","_key":"1045"} +{"label":"Albert Hall","version":47,"id":"8354","lastModified":"1299491868000","name":"Albert Hall","type":"Person","_key":"1046"} +{"label":"Dennis Hopper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4c01e272017a3c70370011cc\/dennis-hopper-profile.jpg","version":200,"birthday":"-1061168400000","id":"2778","birthplace":"Dodge City, Kansas, USA","lastModified":"1299755105000","name":"Dennis Hopper","type":"Person","_key":"1047"} +{"label":"G.D. Spradlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87d\/4d4ee7567b9aa13ab400a87d\/g-d-spradlin-profile.jpg","version":49,"id":"3173","lastModified":"1299927194000","name":"G.D. Spradlin","type":"Person","_key":"1048"} +{"label":"Jerry Ziesmer","version":37,"id":"8346","lastModified":"1299492685000","name":"Jerry Ziesmer","type":"Person","_key":"1049"} +{"label":"Memories","description":"A collection of three short Anime stories by the Japanese Anime-Masters Koji Morimato, Tensai Okamuro and Otomo Katsuhiro.","id":"29","version":173,"lastModified":"1300017445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e3\/4bc901db017a3c57fe0003e3\/memories-mid.jpg","genre":"Animation","title":"Memories","language":"en","type":"Movie","_key":"1050"} +{"label":"Magnetic Rose","description":"Koji Morimato\u2019s animated science fiction short story about how the boarder between reality and illusion on a space station become blurry. ","id":"30","runtime":44,"imdbId":"tt1530535","version":41,"lastModified":"1299531698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/263\/4c39c0277b9aa10eda000263\/kanojo-no-omoide-mid.jpg","studio":"Studio 4\u00b0C","genre":"Animation","title":"Magnetic Rose","releaseDate":819676800000,"language":"en","type":"Movie","_key":"1051"} +{"label":"K\u00f4ji Morimoto","version":21,"id":"183","lastModified":"1299492144000","name":"K\u00f4ji Morimoto","type":"Person","_key":"1052"} +{"label":"Tsutomu Isobe","version":15,"id":"20661","lastModified":"1299495074000","name":"Tsutomu Isobe","type":"Person","_key":"1053"} +{"label":"Ami Hasegawa","version":12,"id":"20662","lastModified":"1299494519000","name":"Ami Hasegawa","type":"Person","_key":"1054"} +{"label":"Gara Takashima","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bdc\/4d262aa77b9aa134cf000bdc\/gara-takashima-profile.jpg","version":20,"id":"20663","lastModified":"1299493520000","name":"Gara Takashima","type":"Person","_key":"1055"} +{"label":"K\u00f4ichi Yamadera","version":15,"id":"20664","lastModified":"1299493995000","name":"K\u00f4ichi Yamadera","type":"Person","_key":"1056"} +{"label":"Stink Bomb","description":"Tensai Okamura\u2019s animated action packed short story with lots of humorous elements in which a person transforms into a weapon of mass destrucion without themselves being aware.","id":"31","runtime":40,"imdbId":"tt0113799","version":32,"lastModified":"1299808029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/230\/4c39bd1c7b9aa10edc000230\/stink-bomb-mid.jpg","studio":"Studio 4\u00b0C","genre":"Action","title":"Stink Bomb","releaseDate":473385600000,"language":"en","type":"Movie","_key":"1057"} +{"label":"Tensai Okamura","version":16,"id":"187","lastModified":"1299492030000","name":"Tensai Okamura","type":"Person","_key":"1058"} +{"label":"Cannon Fodder","description":"Otomo Katsuhiro\u2019s short anime story","id":"32","runtime":21,"imdbId":"tt0113799","version":34,"lastModified":"1299813751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/220\/4c39c09b7b9aa10ed9000220\/taiho-no-machi-mid.jpg","studio":"Studio 4\u00b0C","genre":"Animation","title":"Cannon Fodder","releaseDate":788918400000,"language":"en","type":"Movie","_key":"1059"} +{"label":"Katsuhiro \u00d4tomo","version":42,"id":"185","lastModified":"1299491811000","name":"Katsuhiro \u00d4tomo","type":"Person","_key":"1060"} +{"label":"Unforgiven","description":"Unforgiven is Clint Eastwood\u2019s grandiose salute to classic western films. The film stars Clint Eastwood, as William Munny, a retired gunslinger who returns for one last job. Unforgiven won four Academy Awards including Best Picture.","id":"33","runtime":131,"imdbId":"tt0105695","trailer":"http:\/\/www.youtube.com\/watch?v=XDAXGILEdro","version":224,"lastModified":"1299970668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4d0338817b9aa11bc4000e74\/unforgiven-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Unforgiven","releaseDate":713145600000,"language":"en","tagline":"It's a hell of a thing, killing a man.","type":"Movie","_key":"1061"} +{"label":"Clint Eastwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4bdf1d7a017a3c35b9000231\/clint-eastwood-profile.jpg","biography":"Clinton \"Clint\" Eastwood, Jr. is an American film actor, director, producer, and composer. He has received five Academy Awards, five Golden Globe Awards, a Screen Actors Guild Award, and five People's Choice Awards\u2014including one for Favorite All-Time Motion Picture Star.\n\nEastwood is known for his alienated, morally ambiguous, anti-hero acting roles in violent action and western films, particularly in the 1960s, 1970s, and 1980s.\n\nEastwood was born in San Francisco, California, to Clinton Eastwo","version":339,"birthday":"-1249347600000","id":"190","birthplace":"San Francisco, California, USA","lastModified":"1299959098000","name":"Clint Eastwood","type":"Person","_key":"1062"} +{"label":"Gene Hackman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4c24ca027b9aa1446d0000c6\/gene-hackman-profile.jpg","version":165,"id":"193","lastModified":"1300042162000","name":"Gene Hackman","type":"Person","_key":"1063"} +{"label":"Richard Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4beb3eb7017a3c37a100006a\/richard-harris-profile.jpg","biography":"Richard St. John Harris was an Irish actor, singer-songwriter, theatrical producer, film director and writer.\nHe appeared on stage and in many films, and is perhaps best known for his roles as King Arthur in Camelot (1967), as Oliver Cromwell in Cromwell (1970) and as Albus Dumbledore in Harry Potter and the Philosopher's Stone (2001) and Harry Potter and the Chamber of Secrets (2002), his last film. He also played a British aristocrat and prisoner in A Man Called Horse (1970) and a gunfighter i","version":129,"birthday":"-1238720400000","id":"194","birthplace":"Limerick City, Munster, Ireland","lastModified":"1299859058000","name":"Richard Harris","type":"Person","_key":"1064"} +{"label":"Jaimz Woolvett","version":18,"id":"3710","lastModified":"1299493587000","name":"Jaimz Woolvett","type":"Person","_key":"1065"} +{"label":"Anna Levine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7cb\/4d2742a15e73d626ac0017cb\/anna-levine-profile.jpg","version":32,"id":"3711","lastModified":"1299492115000","name":"Anna Levine","type":"Person","_key":"1066"} +{"label":"Saul Rubinek","version":51,"id":"3712","lastModified":"1299778900000","name":"Saul Rubinek","type":"Person","_key":"1067"} +{"label":"Frances Fisher","version":48,"id":"3713","lastModified":"1299746700000","name":"Frances Fisher","type":"Person","_key":"1068"} +{"label":"David Mucci","version":17,"id":"3714","lastModified":"1299494022000","name":"David Mucci","type":"Person","_key":"1069"} +{"label":"Rob Campbell","version":25,"id":"2843","lastModified":"1299581236000","name":"Rob Campbell","type":"Person","_key":"1070"} +{"label":"Anthony James","version":22,"id":"3715","lastModified":"1299493898000","name":"Anthony James","type":"Person","_key":"1071"} +{"label":"Morgan Freeman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4bc9f4ac017a3c0e8b000019\/morgan-freeman-profile.jpg","biography":"Morgan Porterfield Freeman, Jr. is an American actor, film director, and narrator. He is noted for his reserved demeanor and authoritative speaking voice.\nFreeman has received Academy Award nominations for his performances in Street Smart, Driving Miss Daisy, The Shawshank Redemption and Invictus and won in 2005 for Million Dollar Baby. He has also won a Golden Globe Award and a Screen Actors Guild Award.\n\nMorgan Freeman was born in Memphis, Tennessee, the son of Mayme Edna (n\u00e9e Revere) and Morg","version":308,"birthday":"-1028336400000","id":"192","birthplace":"Memphis, Tennessee, USA","lastModified":"1300002025000","name":"Morgan Freeman","type":"Person","_key":"1072"} +{"label":"The Simpsons Movie","description":"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.","id":"35","runtime":87,"imdbId":"tt0462538","trailer":"http:\/\/www.youtube.com\/watch?v=AB7VF980cEA","homepage":"http:\/\/www.simpsonsmovie.com\/","version":440,"lastModified":"1299913538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/429\/4bc901e5017a3c57fe000429\/the-simpsons-movie-mid.jpg","studio":"Gracie Films","genre":"Animation","title":"The Simpsons Movie","releaseDate":1185494400000,"language":"en","tagline":"See our family. And feel better about yours.","type":"Movie","_key":"1073"} +{"label":"David Silverman","version":50,"id":"197","lastModified":"1299492046000","name":"David Silverman","type":"Person","_key":"1074"} +{"label":"Dan Castellaneta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87c\/4cfa800c5e73d6299d00287c\/dan-castellaneta-profile.jpg","version":119,"id":"198","lastModified":"1299490973000","name":"Dan Castellaneta","type":"Person","_key":"1075"} +{"label":"Julie Kavner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/905\/4cb8fcc57b9aa138d9000905\/julie-kavner-profile.jpg","version":33,"id":"199","lastModified":"1299491468000","name":"Julie Kavner","type":"Person","_key":"1076"} +{"label":"Nancy Cartwright","version":31,"id":"200","lastModified":"1299491583000","name":"Nancy Cartwright","type":"Person","_key":"1077"} +{"label":"Yeardley Smith","version":29,"id":"5586","lastModified":"1299495083000","name":"Yeardley Smith","type":"Person","_key":"1078"} +{"label":"Hank Azaria","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c13d71d7b9aa1045a000022\/hank-azaria-profile.jpg","version":88,"id":"5587","lastModified":"1299860315000","name":"Hank Azaria","type":"Person","_key":"1079"} +{"label":"Harry Shearer","version":57,"id":"6008","lastModified":"1299945385000","name":"Harry Shearer","type":"Person","_key":"1080"} +{"label":"Kelsey Grammer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07b\/4d0db7155e73d6371600107b\/kelsey-grammer-profile.jpg","version":77,"id":"7090","lastModified":"1299946574000","name":"Kelsey Grammer","type":"Person","_key":"1081"} +{"label":"Maile Flanagan","version":20,"id":"23211","lastModified":"1299492771000","name":"Maile Flanagan","type":"Person","_key":"1082"} +{"label":"Pamela Hayden","version":32,"id":"6009","lastModified":"1299491996000","name":"Pamela Hayden","type":"Person","_key":"1083"} +{"label":"Marcia Wallace","version":19,"id":"6036","lastModified":"1299492865000","name":"Marcia Wallace","type":"Person","_key":"1084"} +{"label":"Joe Mantegna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/900\/4cb8fbfa7b9aa138d9000900\/joe-mantegna-profile.jpg","version":77,"id":"3266","lastModified":"1299843327000","name":"Joe Mantegna","type":"Person","_key":"1085"} +{"label":"Eternal Sunshine of the Spotless Mind","description":"What would happen if we could erase the worst experiences and relationships from our memory. Charlie Kaufman and Michel Gondry combined forces to answer this very question.","id":"38","runtime":108,"imdbId":"tt0338013","trailer":"http:\/\/www.youtube.com\/watch?v=lnSgSe2GzDc","homepage":"http:\/\/www.eternalsunshine.com","version":245,"lastModified":"1299912387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45b\/4bc901ec017a3c57fe00045b\/eternal-sunshine-of-the-spotless-mind-mid.jpg","studio":"Younggu-Art Movies","genre":"Comedy","title":"Eternal Sunshine of the Spotless Mind","releaseDate":1079654400000,"language":"en","tagline":"I already forget how I used to feel about you.","type":"Movie","_key":"1086"} +{"label":"Michel Gondry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d92\/4d4e93ee5e73d617c7002d92\/michel-gondry-profile.jpg","biography":"Michel Gondry (born May 8, 1963) is a French film, commercial and music video director and a screenwriter. He is noted for his inventive visual style and manipulation of mise en sc\u00e8ne.","version":66,"birthday":"-209955600000","id":"201","birthplace":"Versailles, France","lastModified":"1299950932000","name":"Michel Gondry","type":"Person","_key":"1087"} +{"label":"Kate Winslet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59f\/4c022d0e017a3c702d00159f\/kate-winslet-profile.jpg","biography":"Kate Elizabeth Winslet<\/b> (born 5 October 1975) is an English actress and occasional singer. She has received multiple awards and nominations. She is the youngest person to accrue six Kirsten Caroline Dunst was born on April 30, 1982 in Point Pleasant, New Jersey, USA to Klaus Dunst, a German medical-services exec. who's now stationed in New Jersey while the rest of his family lives on the West Coast. Klaus separated from Kirsten's mother Inez Dunst, a former art-gallery owner. She also has a brother named Christian, who was born in 1986. Kirsten started out i","version":138,"birthday":"388879200000","id":"205","birthplace":"Point Pleasant, New Jersey","lastModified":"1299932776000","name":"Kirsten Dunst","type":"Person","_key":"1090"} +{"label":"Tom Wilkinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4bca52b9017a3c0e8d0000a5\/tom-wilkinson-profile.jpg","version":160,"birthday":"-664419600000","id":"207","birthplace":"Leeds, West Yorkshire, UK","lastModified":"1299950931000","name":"Tom Wilkinson","type":"Person","_key":"1091"} +{"label":"Ryan Whitney","version":18,"id":"208","lastModified":"1299491916000","name":"Ryan Whitney","type":"Person","_key":"1092"} +{"label":"Jane Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9d\/4c70dec67b9aa13ab9000a9d\/jane-adams-profile.jpg","version":44,"id":"209","lastModified":"1299492288000","name":"Jane Adams","type":"Person","_key":"1093"} +{"label":"Debbon Ayer","version":18,"id":"211","lastModified":"1299492193000","name":"Debbon Ayer","type":"Person","_key":"1094"} +{"label":"Gerry Robert Byrne","version":27,"id":"213","lastModified":"1299492362000","name":"Gerry Robert Byrne","type":"Person","_key":"1095"} +{"label":"Brian Price","version":18,"id":"214","lastModified":"1299491866000","name":"Brian Price","type":"Person","_key":"1096"} +{"label":"Josh Flitter","version":29,"id":"216","lastModified":"1299696082000","name":"Josh Flitter","type":"Person","_key":"1097"} +{"label":"Paulie Litt","version":19,"id":"217","lastModified":"1299491974000","name":"Paulie Litt","type":"Person","_key":"1098"} +{"label":"Lola Daehler","version":17,"id":"220","lastModified":"1299491838000","name":"Lola Daehler","type":"Person","_key":"1099"} +{"label":"Amir Ali Said","version":17,"id":"210","lastModified":"1299492227000","name":"Amir Ali Said","type":"Person","_key":"1100"} +{"label":"Lauren Adler","version":17,"id":"221","lastModified":"1299492226000","name":"Lauren Adler","type":"Person","_key":"1101"} +{"label":"Deirdre O'Connell","version":26,"id":"77013","lastModified":"1299494764000","name":"Deirdre O'Connell","type":"Person","_key":"1102"} +{"label":"Amores perros","description":"In Mexico City the lives and stories of three people become tied up in an intense Oscar winning film. Valeria and El Chivo have one thing in common: their souls stimulate them towards a relationship with their dogs. Amores Perros is the first film in I\u00f1\u00e1rritu's \"Death Trilogy\".","id":"55","runtime":153,"imdbId":"tt0245712","trailer":"http:\/\/www.youtube.com\/watch?v=XToRtfQbeHg","version":174,"lastModified":"1299997348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/471\/4bc901f1017a3c57fe000471\/amores-perros-mid.jpg","studio":"Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu","genre":"Drama","title":"Amores perros","releaseDate":958262400000,"language":"en","tagline":"Love. Betrayal. Death.","type":"Movie","_key":"1103"} +{"label":"Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu","version":59,"id":"223","lastModified":"1299859670000","name":"Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu","type":"Person","_key":"1104"} +{"label":"Gael Garc\u00eda Bernal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17d\/4cac7bba7b9aa1152f00017d\/gael-garcia-bernal-profile.jpg","version":73,"id":"258","lastModified":"1299917299000","name":"Gael Garc\u00eda Bernal","type":"Person","_key":"1105"} +{"label":"Vanessa Bauche","version":18,"id":"259","lastModified":"1299492137000","name":"Vanessa Bauche","type":"Person","_key":"1106"} +{"label":"Goya Toledo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84f\/4cce879c7b9aa16b9f00084f\/goya-toledo-profile.jpg","biography":"Goya Toledo<\/b> is a Spanish<\/a> Mekhi Thira Phifer<\/SPAN><\/B> (born D","version":52,"birthday":"157503600000","id":"327","birthplace":"New York","lastModified":"1299672051000","name":"Mekhi Phifer","type":"Person","_key":"1174"} +{"label":"Kim Basinger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c4\/4bd70df0017a3c21ee0000c4\/kim-basinger-profile.jpg","version":108,"id":"326","lastModified":"1299957722000","name":"Kim Basinger","type":"Person","_key":"1175"} +{"label":"Brittany Murphy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4bcc2ffb017a3c0f26000095\/brittany-murphy-profile.jpg","biography":"Brittany Murphy was born to Sharon Kathleen Murphy and Angelo Bertolotti, who divorced when Brittany was two years old. Brittany was raised by Sharon, in Edison, New Jersey, then later in Los Angeles. They had moved there so that Brittany could pursue a career in acting. She frequently attributed her success to her mother, who always worked hard to encourage Brittany's creativity. Brittany had two older half-brothers, Jeff and Tony Bertolotti and a younger half-sister, Pia Bertolotti.\n\nBrittany ","version":102,"birthday":"247964400000","id":"328","birthplace":"Atlanta, Georgia","lastModified":"1299950745000","name":"Brittany Murphy","type":"Person","_key":"1176"} +{"label":"Evan Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4c2a3e9a7b9aa15e9e000027\/evan-jones-profile.jpg","version":38,"id":"333","lastModified":"1299779004000","name":"Evan Jones","type":"Person","_key":"1177"} +{"label":"Omar Benson Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c2a3e737b9aa15e9d000012\/omar-benson-miller-profile.jpg","version":26,"id":"334","lastModified":"1299493505000","name":"Omar Benson Miller","type":"Person","_key":"1178"} +{"label":"Michael Shannon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4c2a3dc87b9aa15e9900001c\/michael-shannon-profile.jpg","version":90,"id":"335","lastModified":"1299902807000","name":"Michael Shannon","type":"Person","_key":"1179"} +{"label":"Xzibit","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4c2a3d9c7b9aa15e99000018\/xzibit-profile.jpg","version":49,"id":"336","lastModified":"1299900303000","name":"Xzibit","type":"Person","_key":"1180"} +{"label":"Proof","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02b\/4c2a3d797b9aa15e9a00002b\/proof-profile.jpg","version":21,"id":"337","lastModified":"1299492033000","name":"Proof","type":"Person","_key":"1181"} +{"label":"Obie Trice","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4c2a3d4a7b9aa15e9f00001b\/obie-trice-profile.jpg","version":21,"id":"338","lastModified":"1299492343000","name":"Obie Trice","type":"Person","_key":"1182"} +{"label":"De'Angelo Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c2a3ce47b9aa15e9e000022\/de-angelo-wilson-profile.jpg","version":21,"id":"341","lastModified":"1299492345000","name":"De'Angelo Wilson","type":"Person","_key":"1183"} +{"label":"Eugene Byrd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4c2a3cac7b9aa15e9e00001e\/eugene-byrd-profile.jpg","version":34,"id":"342","lastModified":"1299492056000","name":"Eugene Byrd","type":"Person","_key":"1184"} +{"label":"Taryn Manning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4bcc8b56017a3c0f2600013a\/taryn-manning-profile.jpg","version":50,"id":"343","lastModified":"1299492038000","name":"Taryn Manning","type":"Person","_key":"1185"} +{"label":"Larry Hudson","version":20,"id":"344","lastModified":"1299492002000","name":"Larry Hudson","type":"Person","_key":"1186"} +{"label":"DJ Head","version":20,"id":"345","lastModified":"1299492226000","name":"DJ Head","type":"Person","_key":"1187"} +{"label":"Mike Bell","version":21,"id":"346","lastModified":"1299492632000","name":"Mike Bell","type":"Person","_key":"1188"} +{"label":"Chloe Greenfield","version":24,"id":"123457","lastModified":"1299503903000","name":"Chloe Greenfield","type":"Person","_key":"1189"} +{"label":"Absolute Power","description":"A master thief coincidentally is robbing a house where a murder in which the President of The United States is involved occurs in front of his eyes. He is forced to run yet may hold evidence that could convict the President. A political thriller from and starring Clint Eastwood and based on a novel by David Baldacci.","id":"66","runtime":121,"imdbId":"tt0118548","trailer":"http:\/\/www.youtube.com\/watch?v=l2Q7eIl6Ruk","version":160,"lastModified":"1299912799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/570\/4bc90215017a3c57fe000570\/absolute-power-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Absolute Power","releaseDate":855878400000,"language":"en","tagline":"Corrupts Absolutely.","type":"Movie","_key":"1190"} +{"label":"Scott Glenn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19e\/4c7940325e73d613d400019e\/scott-glenn-profile.jpg","version":127,"birthday":"-912996000000","id":"349","birthplace":"Pittsburgh, Pennsylvania, USA","lastModified":"1299794056000","name":"Scott Glenn","type":"Person","_key":"1191"} +{"label":"Laura Linney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4bda5690017a3c43e700005e\/laura-linney-profile.jpg","version":86,"id":"350","lastModified":"1299935764000","name":"Laura Linney","type":"Person","_key":"1192"} +{"label":"Judy Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4c6abe397b9aa13ab700010e\/judy-davis-profile.jpg","version":58,"id":"351","lastModified":"1299492051000","name":"Judy Davis","type":"Person","_key":"1193"} +{"label":"Dennis Haysbert","version":57,"id":"352","lastModified":"1299491960000","name":"Dennis Haysbert","type":"Person","_key":"1194"} +{"label":"Alison Eastwood","version":26,"id":"389","lastModified":"1299492595000","name":"Alison Eastwood","type":"Person","_key":"1195"} +{"label":"Melora Hardin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c0\/4d1d32d05e73d66b270000c0\/melora-hardin-profile.jpg","version":34,"id":"404","lastModified":"1299958058000","name":"Melora Hardin","type":"Person","_key":"1196"} +{"label":"E.G. Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/855\/4c6408ef7b9aa172d9000855\/e-g-marshall-profile.jpg","version":53,"birthday":"-1752714000000","id":"5249","birthplace":"Owatonna, Minnesota, USA","lastModified":"1299948756000","name":"E.G. Marshall","type":"Person","_key":"1197"} +{"label":"Paradise Now","description":"Paradise Now is filmed from the perspective of two Palestinian men who are predestined to perform a suicide attack in Israel. This is the first film to deal with the subject of suicide attackers.","id":"67","runtime":90,"imdbId":"tt0445620","homepage":"http:\/\/wip.warnerbros.com\/paradisenow\/","version":204,"lastModified":"1299912771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57e\/4bc90216017a3c57fe00057e\/paradise-now-mid.jpg","studio":"Augustus Film","genre":"Action","title":"Paradise Now","releaseDate":1108339200000,"language":"en","tagline":"From the most unexpected place, come a new call for peace.","type":"Movie","_key":"1198"} +{"label":"Hany Abu-Assad","version":17,"id":"357","lastModified":"1299492302000","name":"Hany Abu-Assad","type":"Person","_key":"1199"} +{"label":"Kais Nashif","version":15,"id":"761","lastModified":"1299492587000","name":"Kais Nashif","type":"Person","_key":"1200"} +{"label":"Ali Suliman","version":31,"id":"762","lastModified":"1299491465000","name":"Ali Suliman","type":"Person","_key":"1201"} +{"label":"Amer Hlehel","version":17,"id":"764","lastModified":"1299492623000","name":"Amer Hlehel","type":"Person","_key":"1202"} +{"label":"Hiam Abbass","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/97b\/4d1b8e295e73d6082e00b97b\/hiam-abbass-profile.jpg","version":33,"birthday":"-286765200000","id":"765","birthplace":"Nazareth, Israel","lastModified":"1299491894000","name":"Hiam Abbass","type":"Person","_key":"1203"} +{"label":"Ashraf Barhom","version":15,"id":"766","lastModified":"1299493248000","name":"Ashraf Barhom","type":"Person","_key":"1204"} +{"label":"Mohammad Bustami","version":14,"id":"791","lastModified":"1299493346000","name":"Mohammad Bustami","type":"Person","_key":"1205"} +{"label":"Lubna Azabal","version":27,"id":"77498","lastModified":"1299497187000","name":"Lubna Azabal","type":"Person","_key":"1206"} +{"label":"Brazil","description":"Brazil is a Terry Gilliam dystopic black comedy film that reflects the melancholy, dreamlike quality of a famous Brazilian song that\u2019s been translated into English. The film parodies the mostly dysfunctional bureaucratic world we live in and takes us to a post-apocalyptic world in the future yet with our present day attitudes in mind.","id":"68","runtime":131,"imdbId":"tt0088846","trailer":"http:\/\/www.youtube.com\/watch?v=4Wh2b1eZFUM","version":151,"lastModified":"1299913275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58f\/4bc9021a017a3c57fe00058f\/brazil-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Brazil","releaseDate":477705600000,"language":"en","tagline":"It's only a state of mind.","type":"Movie","_key":"1207"} +{"label":"Robert De Niro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/538\/4d1f6c267b9aa17375001538\/robert-de-niro-profile.jpg","biography":"Robert De Niro, who is thought of as one of the greatest actors of his time, was born in New York City in 1943 to two artists. He was trained at the Stella Adler Conservatory and the American Workshop. He first gained fame for his role in Bang the Drum Slowly (1973), but he gained his reputation as a volatile actor in Mean Streets (1973), which was his first film with director Martin","version":360,"birthday":"-832384800000","id":"380","birthplace":"New York","lastModified":"1299951016000","name":"Robert De Niro","type":"Person","_key":"1208"} +{"label":"Katherine Helmond","version":50,"id":"381","lastModified":"1299586967000","name":"Katherine Helmond","type":"Person","_key":"1209"} +{"label":"Bob Hoskins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/136\/4bee67b8017a3c4589000136\/bob-hoskins-profile.jpg","biography":"Bob Hoskins was born on October 26, 1942, in Bury St. Edmund's, Suffolk, where his mother was living after being evacuated as a result of the heavy bombings. Growing up, Hoskins received only limited education and he left school at 15, but with a passion for language and literature instilled by his former English teacher. A regular theatre-goer, Hoskins dreamed of starring on stage, but before he could do so he had to work odd jobs for a long time to make ends meet. His acting career started out","version":110,"birthday":"-857872800000","id":"382","birthplace":"Bury St. Edmunds, Suffolk, UK","lastModified":"1299617546000","name":"Bob Hoskins","type":"Person","_key":"1210"} +{"label":"Michael Palin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e3\/4bd9a64c017a3c1bfb0002e3\/michael-palin-profile.jpg","version":104,"id":"383","lastModified":"1299492196000","name":"Michael Palin","type":"Person","_key":"1211"} +{"label":"Ian Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4c8fd0a67b9aa17b4a000032\/ian-richardson-profile.jpg","version":45,"id":"385","lastModified":"1299492242000","name":"Ian Richardson","type":"Person","_key":"1212"} +{"label":"Peter Vaughan","version":43,"id":"386","lastModified":"1299492429000","name":"Peter Vaughan","type":"Person","_key":"1213"} +{"label":"Kim Greist","version":26,"id":"387","lastModified":"1299914221000","name":"Kim Greist","type":"Person","_key":"1214"} +{"label":"Jim Broadbent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/361\/4c7a21755e73d613d4000361\/jim-broadbent-profile.jpg","version":168,"id":"388","lastModified":"1299952252000","name":"Jim Broadbent","type":"Person","_key":"1215"} +{"label":"Walk the Line","description":"A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.","id":"69","runtime":136,"imdbId":"tt0358273","trailer":"http:\/\/www.youtube.com\/watch?v=GsvZGwd8vrI","version":316,"lastModified":"1299913559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0be\/4d72f47e7b9aa166970000be\/walk-the-line-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Walk the Line","releaseDate":1132272000000,"language":"en","tagline":"Love is a burning thing.","type":"Movie","_key":"1216"} +{"label":"James Mangold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/734\/4d32cab47b9aa17a45005734\/james-mangold-profile.jpg","version":78,"id":"366","lastModified":"1299754043000","name":"James Mangold","type":"Person","_key":"1217"} +{"label":"Joaquin Phoenix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ba\/4bfc3366017a3c702f0009ba\/joaquin-phoenix-profile.jpg","biography":"Puerto Rican Actor and Musician USA citizen","version":91,"birthday":"152146800000","id":"73421","birthplace":"San Juan, Puerto Rico","lastModified":"1299877271000","name":"Joaquin Phoenix","type":"Person","_key":"1218"} +{"label":"Reese Witherspoon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ae\/4be394f0017a3c35bf0007ae\/reese-witherspoon-profile.jpg","biography":"\u200bLaura Jeanne Reese Witherspoon (born March 22, 1976), better known as Reese Witherspoon, is an American actress and film producer. Witherspoon landed her first feature role as the female lead in the movie The Man in the Moon in 1991; later that year she made her television acting debut, in the cable movie Wildflower. In 1996, Witherspoon appeared in Freeway and followed that appearance with roles in three major 199","version":153,"birthday":"216601200000","id":"368","birthplace":"New Orleans, Louisiana, USA","lastModified":"1299958356000","name":"Reese Witherspoon","type":"Person","_key":"1219"} +{"label":"Ginnifer Goodwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b6\/4ca798725e73d643ec0002b6\/ginnifer-goodwin-profile.jpg","version":37,"id":"417","lastModified":"1299754043000","name":"Ginnifer Goodwin","type":"Person","_key":"1220"} +{"label":"Robert Patrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b2\/4ce2d54e7b9aa168b00003b2\/robert-patrick-profile.jpg","version":143,"id":"418","lastModified":"1299953098000","name":"Robert Patrick","type":"Person","_key":"1221"} +{"label":"Tyler Hilton","version":18,"id":"419","lastModified":"1299754043000","name":"Tyler Hilton","type":"Person","_key":"1222"} +{"label":"Johnathan Rice","version":16,"id":"420","lastModified":"1299754043000","name":"Johnathan Rice","type":"Person","_key":"1223"} +{"label":"Shooter Jennings","version":16,"id":"421","lastModified":"1299754043000","name":"Shooter Jennings","type":"Person","_key":"1224"} +{"label":"Waylon Payne","version":16,"id":"422","lastModified":"1299754043000","name":"Waylon Payne","type":"Person","_key":"1225"} +{"label":"Dallas Roberts","version":35,"id":"424","lastModified":"1299998043000","name":"Dallas Roberts","type":"Person","_key":"1226"} +{"label":"Dan John Miller","version":19,"id":"425","lastModified":"1299754043000","name":"Dan John Miller","type":"Person","_key":"1227"} +{"label":"Larry Bagby","version":19,"id":"426","lastModified":"1299754043000","name":"Larry Bagby","type":"Person","_key":"1228"} +{"label":"Sandra Ellis Lafferty","version":18,"id":"427","lastModified":"1299754043000","name":"Sandra Ellis Lafferty","type":"Person","_key":"1229"} +{"label":"Dan Beene","version":18,"id":"428","lastModified":"1299754043000","name":"Dan Beene","type":"Person","_key":"1230"} +{"label":"Lucas Till","version":34,"id":"429","lastModified":"1299754043000","name":"Lucas Till","type":"Person","_key":"1231"} +{"label":"Victoria Hester","version":16,"id":"431","lastModified":"1299754043000","name":"Victoria Hester","type":"Person","_key":"1232"} +{"label":"Hailey Anne Nelson","version":16,"id":"430","lastModified":"1299754043000","name":"Hailey Anne Nelson","type":"Person","_key":"1233"} +{"label":"Million Dollar Baby","description":"Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro -- and to convince Dunn and his cohort to help her.","id":"70","runtime":137,"imdbId":"tt0405159","trailer":"http:\/\/www.youtube.com\/watch?v=uVoyZdLNlp8","homepage":"http:\/\/www.milliondollarbaby-derfilm.de\/","version":207,"lastModified":"1299959098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb9\/4d4f4cd37b9aa13aba00acb9\/million-dollar-baby-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Million Dollar Baby","releaseDate":1103068800000,"language":"en","tagline":"Beyond his silence, there is a past. Beyond her dreams, there is a feeling. Beyond hope, there is a memory. Beyond their journey, there is a love.","type":"Movie","_key":"1234"} +{"label":"Hilary Swank","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4c7871365e73d613d3000096\/hilary-swank-profile.jpg","version":94,"birthday":"144370800000","id":"448","birthplace":"Bellingham, Washington, USA","lastModified":"1299971125000","name":"Hilary Swank","type":"Person","_key":"1235"} +{"label":"Jay Baruchel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4bd41b2b017a3c7fa50000a4\/jay-baruchel-profile.jpg","version":95,"id":"449","lastModified":"1299959097000","name":"Jay Baruchel","type":"Person","_key":"1236"} +{"label":"Mike Colter","version":15,"id":"450","lastModified":"1299959097000","name":"Mike Colter","type":"Person","_key":"1237"} +{"label":"Lucia Rijker","version":15,"id":"451","lastModified":"1299959097000","name":"Lucia Rijker","type":"Person","_key":"1238"} +{"label":"Margo Martindale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a89\/4d5944a17b9aa15cf3004a89\/margo-martindale-profile.jpg","version":38,"id":"452","lastModified":"1299959097000","name":"Margo Martindale","type":"Person","_key":"1239"} +{"label":"Riki Lindhome","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c8eadb45e73d61493000046\/riki-lindhome-profile.jpg","biography":"Riki Lindhome was born in Coudersport, Pennsylvania but grew up \nprimarily in Portville, New York (near Buffalo). Her first break came \nwhen Tim Robbins cast her in his hit play, Embedded, which played at the\n Public Theater in New York City, Riverside Studios in London and The \nActor's Gang Theater in Los Angeles. Shortly after, Clint Eastwood cast \nher in her first film role, as Mardell Fitzgerald in Million Dollar \nBaby. She also wrote and directed the \u200bBalk was born as Fairuza Alejandra Feldthouse in Point Reyes, California. Her mother, Cathryn Balk, is of Irish and French descent and has studied, performed, and taught the ethnic and traditional dance forms of many countries such as Egypt, Turkey, Morocco and Spain. Her father, Solomon Feldthouse, is of Cherokee Native and Roma gypsy descent. He was one of the founding members of the 1960s psychedelic ro","version":55,"birthday":"133052400000","id":"826","birthplace":"Point Reyes,California,USA","lastModified":"1299977917000","name":"Fairuza Balk","type":"Person","_key":"1261"} +{"label":"Elliott Gould","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4c5f984a5e73d6345f00006a\/elliott-gould-profile.jpg","version":110,"birthday":"-989110800000","id":"827","birthplace":"Brooklyn, New York, USA","lastModified":"1299977917000","name":"Elliott Gould","type":"Person","_key":"1262"} +{"label":"Guy Torry","version":23,"id":"828","lastModified":"1299977917000","name":"Guy Torry","type":"Person","_key":"1263"} +{"label":"William Russ","version":26,"id":"829","lastModified":"1299977917000","name":"William Russ","type":"Person","_key":"1264"} +{"label":"Joseph Cortese","version":22,"id":"830","lastModified":"1299977917000","name":"Joseph Cortese","type":"Person","_key":"1265"} +{"label":"Jason Bose Smith","version":19,"id":"831","lastModified":"1299977917000","name":"Jason Bose Smith","type":"Person","_key":"1266"} +{"label":"Antonio David Lyons","version":24,"id":"832","lastModified":"1299977917000","name":"Antonio David Lyons","type":"Person","_key":"1267"} +{"label":"Alex Sol","version":22,"id":"833","lastModified":"1299977917000","name":"Alex Sol","type":"Person","_key":"1268"} +{"label":"Keram Malicki-S\u00e1nchez","version":22,"id":"4134","lastModified":"1299977917000","name":"Keram Malicki-S\u00e1nchez","type":"Person","_key":"1269"} +{"label":"War of the Worlds","description":"The extraordinary battle for the future of humankind through the eyes of one American family fighting to survive it. Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son Robbie and young daughter Rachel for a rare weekend visit, a strange and powerful lightning storm touches down.","id":"74","runtime":117,"imdbId":"tt0407304","trailer":"http:\/\/www.youtube.com\/watch?v=hrCnXLlhuls&hd=1","version":200,"lastModified":"1299939670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/296\/4d509afb7b9aa13aba00e296\/war-of-the-worlds-mid.jpg","studio":"Paramount Pictures","genre":"Science Fiction","title":"War of the Worlds","releaseDate":1120003200000,"language":"en","tagline":"They're already here.","type":"Movie","_key":"1270"} +{"label":"Tom Cruise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/422\/4be03d42017a3c35b9000422\/tom-cruise-profile.jpg","biography":"

Thomas Cruise Mapother IV, born on July 3, 1962, better known by his screen name of Tom Cruise, is an American film actor and producer. He has been nominated for three Academy Awards and won three Golden Globe Awards. His first leading role was the 1983 film Risky Business, which has been described as \"A Generation X classic, and a career-maker\" for the actor. ","version":231,"birthday":"-236653200000","id":"500","birthplace":"Syracuse, New York, U.S","lastModified":"1299997322000","name":"Tom Cruise","type":"Person","_key":"1271"} +{"label":"Dakota Fanning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fb8\/4be96d6e017a3c35bd000fb8\/dakota-fanning-profile.jpg","version":102,"id":"501","lastModified":"1300001180000","name":"Dakota Fanning","type":"Person","_key":"1272"} +{"label":"Justin Chatwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e4\/4bda0377017a3c1c000002e4\/justin-chatwin-profile.jpg","version":33,"birthday":"404866800000","id":"503","birthplace":"Nanaimo, British Columbia, Canada","lastModified":"1299491720000","name":"Justin Chatwin","type":"Person","_key":"1273"} +{"label":"Tim Robbins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4bca7a0f017a3c0e8f0000ec\/tim-robbins-profile.jpg","version":144,"birthday":"-353811600000","id":"504","birthplace":"West Covina, California, US","lastModified":"1299670013000","name":"Tim Robbins","type":"Person","_key":"1274"} +{"label":"Camillia Sanes","version":16,"id":"505","lastModified":"1299492397000","name":"Camillia Sanes","type":"Person","_key":"1275"} +{"label":"John Scurti","version":16,"id":"506","lastModified":"1299492396000","name":"John Scurti","type":"Person","_key":"1276"} +{"label":"Mars Attacks!","description":"'We come in peace' is not what those green men from Mars mean when they invade our planet. This star studded cast must play victim to the alien\u2019s fun and games in this comedy homage to science fiction films of the 50\u2019s and 60\u2019s.","id":"75","runtime":106,"imdbId":"tt0116996","trailer":"http:\/\/www.youtube.com\/watch?v=oC5O9NFWZCs","homepage":"http:\/\/marsattacks.warnerbros.com\/","version":166,"lastModified":"1299881432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/685\/4bc9023e017a3c57fe000685\/mars-attacks-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Mars Attacks!","releaseDate":850435200000,"language":"en","tagline":"Nice planet. We'll take it!","type":"Movie","_key":"1277"} +{"label":"Jack Nicholson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/143\/4bdb076b017a3c5d88000143\/jack-nicholson-profile.jpg","version":176,"id":"514","lastModified":"1299958010000","name":"Jack Nicholson","type":"Person","_key":"1278"} +{"label":"Glenn Close","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d7\/4bd9e546017a3c1bff0002d7\/glenn-close-profile.jpg","version":93,"id":"515","lastModified":"1299751224000","name":"Glenn Close","type":"Person","_key":"1279"} +{"label":"Pierce Brosnan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4d74d36a5e73d66ea400000c\/pierce-brosnan-profile.jpg","biography":"Brosnan was born in County Meath, Ireland and moved to London at age 11. At 20, he enrolled in drama school and while in London, performed in several West End stage productions including Franco Zeffirelli's Fulimena and Tennessee Williams' The Red Devil Battery Sign at the York Theater Royal. Brosnan relocated to Los Angeles in 1982 and immediately landed the role of private investigator Remington Steele on the popular ABC television series of the same name.","version":190,"id":"517","lastModified":"1299752331000","name":"Pierce Brosnan","type":"Person","_key":"1280"} +{"label":"Danny DeVito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4c235cba7b9aa13f65000032\/danny-devito-profile.jpg","version":236,"id":"518","lastModified":"1299950641000","name":"Danny DeVito","type":"Person","_key":"1281"} +{"label":"Martin Short","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/277\/4d2512377b9aa134d8000277\/martin-short-profile.jpg","version":73,"id":"519","lastModified":"1299689403000","name":"Martin Short","type":"Person","_key":"1282"} +{"label":"Sarah Jessica Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/283\/4beecf2f017a3c458d000283\/sarah-jessica-parker-profile.jpg","version":88,"id":"520","lastModified":"1299755493000","name":"Sarah Jessica Parker","type":"Person","_key":"1283"} +{"label":"Michael J. Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4bce8e18017a3c486e000059\/michael-j-fox-profile.jpg","biography":"Born Michael Andrew Fox in Edmonton, Alberta, Canada, he adopted the \"J\" as an homage to character actor Michael J. Pollard. Moving several times during the course of his childhood, Michael and his family settled in Burnaby, a suburb of Vancouver. At the age of 15 he made his professional acting debut in the situation comedy \"Leo and Me\" (1981).\n\nMoving to Los Angeles at the age of 18, Fox appeared in several small parts and a television series, \"Palmerstown, U.S.A.\" (1980), before landing the r","version":134,"birthday":"-270262800000","id":"521","birthplace":"Edmonton, AB Canada","lastModified":"1299818896000","name":"Michael J. Fox","type":"Person","_key":"1284"} +{"label":"Rod Steiger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4c698c1a7b9aa13922000062\/rod-steiger-profile.jpg","version":93,"id":"522","lastModified":"1300001325000","name":"Rod Steiger","type":"Person","_key":"1285"} +{"label":"Tom Jones","version":15,"id":"523","lastModified":"1299492072000","name":"Tom Jones","type":"Person","_key":"1286"} +{"label":"Lukas Haas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21a\/4c797d095e73d613d500021a\/lukas-haas-profile.jpg","version":120,"id":"526","lastModified":"1299614154000","name":"Lukas Haas","type":"Person","_key":"1287"} +{"label":"Sylvia Sidney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4c2b5bdd7b9aa15e9d0000ce\/sylvia-sidney-profile.jpg","version":27,"id":"528","lastModified":"1299491476000","name":"Sylvia Sidney","type":"Person","_key":"1288"} +{"label":"Lisa Marie","version":24,"id":"4452","lastModified":"1299492776000","name":"Lisa Marie","type":"Person","_key":"1289"} +{"label":"Jim Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f2c\/4bfebe49017a3c702d000f2c\/jim-brown-profile.jpg","version":43,"id":"4774","lastModified":"1299492829000","name":"Jim Brown","type":"Person","_key":"1290"} +{"label":"Pam Grier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4ca3a27b7b9aa16eda000066\/pam-grier-profile.jpg","version":78,"id":"2230","lastModified":"1299834205000","name":"Pam Grier","type":"Person","_key":"1291"} +{"label":"Before Sunrise","description":"A dialogue marathon of a film, this fairy tail love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide. ","id":"76","runtime":105,"imdbId":"tt0112471","version":119,"lastModified":"1299912358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00d\/4c2096c65e73d612a400000d\/before-sunrise-mid.jpg","studio":"Detour Film Production","genre":"Comedy","title":"Before Sunrise","releaseDate":791164800000,"language":"en","tagline":"Can the greatest moment of your life last only one night?","type":"Movie","_key":"1292"} +{"label":"Richard Linklater","version":75,"id":"564","lastModified":"1299508697000","name":"Richard Linklater","type":"Person","_key":"1293"} +{"label":"Ethan Hawke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d2\/4bd9a252017a3c1bfb0002d2\/ethan-hawke-profile.jpg","version":116,"id":"569","lastModified":"1299491256000","name":"Ethan Hawke","type":"Person","_key":"1294"} +{"label":"Julie Delpy","version":82,"id":"1146","lastModified":"1299491534000","name":"Julie Delpy","type":"Person","_key":"1295"} +{"label":"Andrea Eckert","version":15,"id":"571","lastModified":"1299492227000","name":"Andrea Eckert","type":"Person","_key":"1296"} +{"label":"Hanno P\u00f6schl","version":21,"id":"572","lastModified":"1299492321000","name":"Hanno P\u00f6schl","type":"Person","_key":"1297"} +{"label":"Karl Bruckschwaiger","version":15,"id":"573","lastModified":"1299493340000","name":"Karl Bruckschwaiger","type":"Person","_key":"1298"} +{"label":"Tex Rubinowitz","version":15,"id":"574","lastModified":"1299492778000","name":"Tex Rubinowitz","type":"Person","_key":"1299"} +{"label":"Ernie Mangold","version":18,"id":"575","lastModified":"1299493144000","name":"Ernie Mangold","type":"Person","_key":"1300"} +{"label":"Hans Weingartner","version":33,"id":"3722","lastModified":"1299492817000","name":"Hans Weingartner","type":"Person","_key":"1301"} +{"label":"Dominik Castell","version":15,"id":"3735","lastModified":"1299495292000","name":"Dominik Castell","type":"Person","_key":"1302"} +{"label":"Bilge Jeschim","version":15,"id":"3736","lastModified":"1299493868000","name":"Bilge Jeschim","type":"Person","_key":"1303"} +{"label":"Harold Waiglein","version":15,"id":"3737","lastModified":"1299495291000","name":"Harold Waiglein","type":"Person","_key":"1304"} +{"label":"Haymon Maria Buttinger","version":17,"id":"3738","lastModified":"1299495424000","name":"Haymon Maria Buttinger","type":"Person","_key":"1305"} +{"label":"Kurti","version":15,"id":"3739","lastModified":"1299494705000","name":"Kurti","type":"Person","_key":"1306"} +{"label":"Memento","description":"Suffering short-term memory loss after a head injury, Leonard Shelby embarks on a grim quest to find the lowlife who murdered his wife in this gritty, complex thriller that packs more knots than a hangman's noose. To carry out his plan, Shelby snaps Polaroids of people and places, jotting down contextual notes on the backs of photos to aid in his search and jog his memory. He even tattoos his own body in a desperate bid to remember.","id":"77","runtime":113,"imdbId":"tt0209144","trailer":"http:\/\/www.youtube.com\/watch?v=0vS0E9bBSL0","homepage":"http:\/\/www.otnemem.com\/","version":271,"lastModified":"1299912029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9c\/4d4245d07b9aa11c74001f9c\/memento-mid.jpg","studio":"Newmarket Capital Group","genre":"Crime","title":"Memento","releaseDate":984700800000,"language":"en","tagline":"Some memories are best forgotten.","type":"Movie","_key":"1307"} +{"label":"Christopher Nolan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f6\/4bf2d6bc017a3c32130004f6\/christopher-nolan-profile.jpg","version":406,"birthday":"18140400000","id":"525","birthplace":"London, England, UK","lastModified":"1299823739000","name":"Christopher Nolan","type":"Person","_key":"1308"} +{"label":"Guy Pearce","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08c\/4bca4afb017a3c0e9600008c\/guy-pearce-profile.jpg","version":155,"id":"529","lastModified":"1300001181000","name":"Guy Pearce","type":"Person","_key":"1309"} +{"label":"Mark Boone Junior","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a4f\/4c67f8b15e73d63c86000a4f\/mark-boone-junior-profile.jpg","version":70,"id":"534","lastModified":"1299962161000","name":"Mark Boone Junior","type":"Person","_key":"1310"} +{"label":"Russ Fega","version":19,"id":"535","lastModified":"1299493012000","name":"Russ Fega","type":"Person","_key":"1311"} +{"label":"Jorja Fox","version":20,"id":"536","lastModified":"1299493021000","name":"Jorja Fox","type":"Person","_key":"1312"} +{"label":"Stephen Tobolowsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/731\/4c083c81017a3c33d9000731\/stephen-tobolowsky-profile.jpg","version":74,"id":"537","lastModified":"1299492192000","name":"Stephen Tobolowsky","type":"Person","_key":"1313"} +{"label":"Harriet Sansom Harris","version":29,"id":"538","lastModified":"1299493215000","name":"Harriet Sansom Harris","type":"Person","_key":"1314"} +{"label":"Thomas Lennon","version":72,"id":"539","lastModified":"1299491286000","name":"Thomas Lennon","type":"Person","_key":"1315"} +{"label":"Callum Keith Rennie","version":76,"id":"540","lastModified":"1299833861000","name":"Callum Keith Rennie","type":"Person","_key":"1316"} +{"label":"Kimberly Campbell","version":20,"id":"542","lastModified":"1299493010000","name":"Kimberly Campbell","type":"Person","_key":"1317"} +{"label":"Marianne Muellerleile","version":21,"id":"543","lastModified":"1299493020000","name":"Marianne Muellerleile","type":"Person","_key":"1318"} +{"label":"Larry Holden","version":19,"id":"544","lastModified":"1299493260000","name":"Larry Holden","type":"Person","_key":"1319"} +{"label":"Buzz Visconti","version":19,"id":"549","lastModified":"1299493260000","name":"Buzz Visconti","type":"Person","_key":"1320"} +{"label":"Blade Runner","description":"In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to snuff a quartet of \"replicants\" -- androids consigned to slave labor on remote planets. They've escaped to Earth seeking their creator and a way to extend their short life spans.","id":"78","runtime":117,"imdbId":"tt0083658","trailer":"http:\/\/www.youtube.com\/watch?v=vFNUFqHyGZU","version":437,"lastModified":"1299912091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/148\/4bf01e31017a3c3e83000148\/blade-runner-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Blade Runner","releaseDate":393811200000,"language":"en","tagline":"Man has made his match... now it's his problem.","type":"Movie","_key":"1321"} +{"label":"Ridley Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48e\/4bf2d4da017a3c321700048e\/ridley-scott-profile.jpg","biography":"Scott was born in South Shields, Tyne and Wear, England, the son of Elizabeth and Colonel Francis Percy Scott. He was raised in an Army family, meaning that for most of his early life, his father \u2014 an officer in the Royal Engineers \u2014 was absent. Ridley's older brother, Frank, joined the Merchant Navy when he was still young and the pair had little contact. During this time the family moved around, living in (among other areas) Cumbria, Wales and Germany. He has a younger brother, Tony, also a fi","version":249,"birthday":"-1012611600000","id":"578","lastModified":"1299542719000","name":"Ridley Scott","type":"Person","_key":"1322"} +{"label":"Rutger Hauer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/747\/4c096394017a3c7e89000747\/rutger-hauer-profile.jpg","biography":"Rutger Oelsen Hauer is a Dutch film actor. He is well known for his roles in Flesh + Blood, Blind Fury, Blade Runner, The Hitcher, Nighthawks, Sin City, Ladyhawke, The Blood of Heroes and Batman Begins.\n\nHauer was born in Breukelen, Netherlands, to drama teachers Arend and Teunke, and grew up in Amsterdam. Since his parents were very occupied with their careers, he and his three sisters (one older, two younger) were raised mostly by nannies. At the age of 15, Hauer ran off to sea and spent a yea","version":129,"birthday":"-818643600000","id":"585","birthplace":"Breukelen, Netherlands","lastModified":"1299950743000","name":"Rutger Hauer","type":"Person","_key":"1323"} +{"label":"Sean Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4bf20f17017a3c321200030c\/sean-young-profile.jpg","version":62,"id":"586","lastModified":"1299688895000","name":"Sean Young","type":"Person","_key":"1324"} +{"label":"Edward James Olmos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/93e\/4c0963b7017a3c351900093e\/edward-james-olmos-profile.jpg","version":94,"id":"587","lastModified":"1299954440000","name":"Edward James Olmos","type":"Person","_key":"1325"} +{"label":"M. Emmet Walsh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/097\/4c3dbb037b9aa13a3e000097\/m-emmet-walsh-profile.jpg","version":77,"id":"588","lastModified":"1299928437000","name":"M. Emmet Walsh","type":"Person","_key":"1326"} +{"label":"William Sanderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79f\/4c09645f017a3c29a600079f\/william-sanderson-profile.jpg","version":48,"id":"590","lastModified":"1299955049000","name":"William Sanderson","type":"Person","_key":"1327"} +{"label":"Joe Turkel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ad\/4c096642017a3c29a60007ad\/joe-turkel-profile.jpg","version":42,"id":"592","lastModified":"1299492432000","name":"Joe Turkel","type":"Person","_key":"1328"} +{"label":"Joanna Cassidy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/88f\/4c0965f1017a3c33d900088f\/joanna-cassidy-profile.jpg","version":58,"id":"593","lastModified":"1299492079000","name":"Joanna Cassidy","type":"Person","_key":"1329"} +{"label":"Hero","description":"The impressive and epic martial arts film has ascetics written all over it. From dancing through the air to over saturated colors and grandiose fight scenes this film is not just for the martials art fan.","id":"79","runtime":99,"imdbId":"tt0299977","trailer":"http:\/\/www.youtube.com\/watch?v=1p2p8OAdxro","version":175,"lastModified":"1299813349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/214\/4c7736c17b9aa16a09000214\/ying-xiong-mid.jpg","studio":"Beijing New Picture Film Co. Ltd.","genre":"Action","title":"Hero","releaseDate":1034985600000,"language":"en","tagline":"One man's strength will unite an empire","type":"Movie","_key":"1330"} +{"label":"Yimou Zhang","version":148,"id":"607","lastModified":"1299491181000","name":"Yimou Zhang","type":"Person","_key":"1331"} +{"label":"Jet Li","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27c\/4bd97fd7017a3c1c0900027c\/jet-li-profile.jpg","biography":"Li Lian Jie (born April 26, 1963), better known by his stage name Jet Li, is a Chinese martial artist, actor, film producer, wushu champion, and international film star who was born in Beijing, China, and who has currently taken up Singapore citizenship.

After three years of intensive training with Wu Bin, Li won his first national championship for the Beijing Wushu Team. After retiring from wushu at age 17, he went on to win great acclaim in China as an actor making his debut with the fi","version":213,"birthday":"-210992400000","id":"1336","birthplace":"Beijing, China","lastModified":"1299490764000","name":"Jet Li","type":"Person","_key":"1332"} +{"label":"Tony Leung Chiu Wai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19c\/4d3e4f825e73d622cf00419c\/tony-leung-chiu-wai-profile.jpg","version":73,"id":"1337","lastModified":"1299491170000","name":"Tony Leung Chiu Wai","type":"Person","_key":"1333"} +{"label":"Maggie Cheung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a5\/4d3e4fb35e73d622cf0041a5\/maggie-cheung-profile.jpg","version":79,"birthday":"148863600000","id":"1338","lastModified":"1299491467000","name":"Maggie Cheung","type":"Person","_key":"1334"} +{"label":"Zhang Ziyi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c5\/4c8534537b9aa1428c0001c5\/ziyi-zhang-profile.jpg","version":88,"id":"1339","lastModified":"1299490923000","name":"Zhang Ziyi","type":"Person","_key":"1335"} +{"label":"Daoming Chen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/549\/4d3e4fd55e73d622c7004549\/daoming-chen-profile.jpg","version":24,"id":"1340","lastModified":"1299492046000","name":"Daoming Chen","type":"Person","_key":"1336"} +{"label":"Donnie Yen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4bce18ad017a3c24c700006a\/donnie-yen-profile.jpg","version":89,"id":"1341","lastModified":"1299738133000","name":"Donnie Yen","type":"Person","_key":"1337"} +{"label":"Liu Zhong Yuan","version":18,"id":"1342","lastModified":"1299493260000","name":"Liu Zhong Yuan","type":"Person","_key":"1338"} +{"label":"Zheng Tia Yong","version":18,"id":"1343","lastModified":"1299493504000","name":"Zheng Tia Yong","type":"Person","_key":"1339"} +{"label":"Yan Qin","version":18,"id":"1344","lastModified":"1299493508000","name":"Yan Qin","type":"Person","_key":"1340"} +{"label":"Chang Xiao Yang","version":18,"id":"1345","lastModified":"1299493046000","name":"Chang Xiao Yang","type":"Person","_key":"1341"} +{"label":"Before Sunset","description":"Nine years ago two strangers met by chance and spent a night in Vienna that ended before sunrise. They are about to meet for the first time since. Now they have one afternoon to find out if they belong together. ","id":"80","runtime":77,"imdbId":"tt0381681","trailer":"http:\/\/www.youtube.com\/watch?v=XvFosXeqmDg","homepage":"http:\/\/wip.warnerbros.com\/index.html?site=beforesunset","version":135,"lastModified":"1299813028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/777\/4bc90263017a3c57fe000777\/before-sunset-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Before Sunset","releaseDate":1076371200000,"language":"en","tagline":"What if you had a second chance with the one that got away?","type":"Movie","_key":"1342"} +{"label":"Vernon Dobtcheff","version":63,"id":"649","lastModified":"1299927795000","name":"Vernon Dobtcheff","type":"Person","_key":"1343"} +{"label":"Louise Lemoine Torres","version":13,"id":"651","lastModified":"1299492777000","name":"Louise Lemoine Torres","type":"Person","_key":"1344"} +{"label":"Rodolphe Pauly","version":20,"id":"654","lastModified":"1299494042000","name":"Rodolphe Pauly","type":"Person","_key":"1345"} +{"label":"Mariane Plasteig","version":13,"id":"657","lastModified":"1299492925000","name":"Mariane Plasteig","type":"Person","_key":"1346"} +{"label":"Diabolo","version":13,"id":"3728","lastModified":"1299493593000","name":"Diabolo","type":"Person","_key":"1347"} +{"label":"Denis Evrard","version":13,"id":"3729","lastModified":"1299494695000","name":"Denis Evrard","type":"Person","_key":"1348"} +{"label":"Albert Delpy","version":19,"id":"3730","lastModified":"1299493614000","name":"Albert Delpy","type":"Person","_key":"1349"} +{"label":"Marie Pillet","version":21,"id":"3731","lastModified":"1299493338000","name":"Marie Pillet","type":"Person","_key":"1350"} +{"label":"Nausica\u00e4 of the Valley of the Wind","description":"Nausica\u00e4, a gentle young princess, has an empathetic bond with the giant mutated insects that evolved in the wake of the destruction of the ecosystem. Traveling by cumbersome flying ship, on the backs of giant birds, and perched atop her beloved glider, Nausica\u00e4 and her allies must negotiate peace between kingdoms battling over the last of the world's precious natural resources.","id":"81","runtime":116,"imdbId":"tt0087544","homepage":"http:\/\/disneyvideos.disney.go.com\/moviefinder\/products\/2534403.html","version":114,"lastModified":"1299870255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4bd3c902017a3c534200006b\/kaze-no-tani-no-naushika-mid.jpg","studio":"Topcraft","genre":"Animation","title":"Nausica\u00e4 of the Valley of the Wind","releaseDate":486432000000,"language":"en","type":"Movie","_key":"1351"} +{"label":"Hayao Miyazaki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a8\/4bed1b9d017a3c37a70002a8\/hayao-miyazaki-profile.jpg","biography":"Hayao Miyazaki (Miyazaki Hayao, born January 5, 1941) is a Japanese manga artist and prominent film director and animator of many popular anime feature films. Through a career that has spanned nearly five decades, Miyazaki has attained international acclaim as a maker of animated feature films and, along with Isao Takahata, co-founded Studio Ghibli, an animation studio and production company. The success of Miyazaki's films has invited comparisons with American animator Walt Disney, British anim","version":225,"birthday":"-914810400000","id":"608","birthplace":"Tokyo","lastModified":"1299490999000","name":"Hayao Miyazaki","type":"Person","_key":"1352"} +{"label":"Sumi Shimamoto","version":35,"birthday":"-475462800000","id":"613","birthplace":"K\u014dchi, Japan","lastModified":"1299870570000","name":"Sumi Shimamoto","type":"Person","_key":"1353"} +{"label":"Mahito Tsujimura","version":22,"id":"614","lastModified":"1299492725000","name":"Mahito Tsujimura","type":"Person","_key":"1354"} +{"label":"Hisako Ky\u00f4da","version":24,"id":"615","lastModified":"1299947096000","name":"Hisako Ky\u00f4da","type":"Person","_key":"1355"} +{"label":"Gor\u00f4 Naya","version":24,"id":"616","lastModified":"1299492563000","name":"Gor\u00f4 Naya","type":"Person","_key":"1356"} +{"label":"Ichir\u00f4 Nagai","version":23,"id":"617","lastModified":"1299492864000","name":"Ichir\u00f4 Nagai","type":"Person","_key":"1357"} +{"label":"K\u00f4hei Miyauchi","version":42,"id":"618","lastModified":"1299493491000","name":"K\u00f4hei Miyauchi","type":"Person","_key":"1358"} +{"label":"J\u00f4ji Yanami","version":26,"id":"619","lastModified":"1299493450000","name":"J\u00f4ji Yanami","type":"Person","_key":"1359"} +{"label":"Minoru Yada","version":22,"id":"620","lastModified":"1299492832000","name":"Minoru Yada","type":"Person","_key":"1360"} +{"label":"Rihoko Yoshida","version":22,"id":"621","lastModified":"1299493436000","name":"Rihoko Yoshida","type":"Person","_key":"1361"} +{"label":"Y\u00f4ji Matsuda","version":26,"id":"622","lastModified":"1299492183000","name":"Y\u00f4ji Matsuda","type":"Person","_key":"1362"} +{"label":"M\u00eena Tominaga","version":23,"id":"623","lastModified":"1299492454000","name":"M\u00eena Tominaga","type":"Person","_key":"1363"} +{"label":"Yoshiko Sakakibara","version":24,"id":"624","lastModified":"1299492450000","name":"Yoshiko Sakakibara","type":"Person","_key":"1364"} +{"label":"Iemasa Kayumi","version":24,"id":"625","lastModified":"1299492597000","name":"Iemasa Kayumi","type":"Person","_key":"1365"} +{"label":"Tetsuo Mizutori","version":22,"id":"626","lastModified":"1299493503000","name":"Tetsuo Mizutori","type":"Person","_key":"1366"} +{"label":"Miami Vice","description":"Miami Vice is an feature film based on the 1980\u2019s action\/drama TV series. The film tells the story of vice detectives Crockett and Tubbs and how their personal and professional lives are dangerously getting mixed.","id":"82","runtime":134,"imdbId":"tt0430357","trailer":"http:\/\/www.youtube.com\/watch?v=E4RChn-_wko","version":224,"lastModified":"1299912854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4cc772085e73d65024000084\/miami-vice-mid.jpg","studio":"Universal Studios","genre":"Action","title":"Miami Vice","releaseDate":1154044800000,"language":"en","tagline":"No Law. No Rules. No Order.","type":"Movie","_key":"1367"} +{"label":"Michael Mann","version":132,"id":"638","lastModified":"1299765444000","name":"Michael Mann","type":"Person","_key":"1368"} +{"label":"Li Gong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/561\/4d0c744b5e73d6371c000561\/li-gong-profile.jpg","version":55,"id":"643","lastModified":"1299491407000","name":"Li Gong","type":"Person","_key":"1369"} +{"label":"Luis Tosar","version":37,"id":"16867","lastModified":"1299796785000","name":"Luis Tosar","type":"Person","_key":"1370"} +{"label":"Justin Theroux","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b9\/4bed6037017a3c37ac0003b9\/justin-theroux-profile.jpg","version":70,"id":"15009","lastModified":"1299491587000","name":"Justin Theroux","type":"Person","_key":"1371"} +{"label":"Ciar\u00e1n Hinds","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4ca634025e73d643f000002f\/ciaran-hinds-profile.jpg","version":97,"id":"8785","lastModified":"1299903965000","name":"Ciar\u00e1n Hinds","type":"Person","_key":"1372"} +{"label":"John Ortiz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/692\/4cf2130b5e73d61e3f000692\/john-ortiz-profile.jpg","version":62,"id":"40543","lastModified":"1299491199000","name":"John Ortiz","type":"Person","_key":"1373"} +{"label":"Elizabeth Rodriguez","version":20,"id":"65421","lastModified":"1299496567000","name":"Elizabeth Rodriguez","type":"Person","_key":"1374"} +{"label":"Domenick Lombardozzi","version":43,"id":"17941","lastModified":"1299491613000","name":"Domenick Lombardozzi","type":"Person","_key":"1375"} +{"label":"Eddie Marsan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4bf861b1017a3c490600005d\/eddie-marsan-profile.jpg","version":78,"id":"1665","lastModified":"1299902721000","name":"Eddie Marsan","type":"Person","_key":"1376"} +{"label":"John Hawkes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4c4eef777b9aa1326f0000e0\/john-hawkes-profile.jpg","version":48,"id":"16861","lastModified":"1299672052000","name":"John Hawkes","type":"Person","_key":"1377"} +{"label":"Vivienne Sendaydiego","version":20,"id":"65422","lastModified":"1299494515000","name":"Vivienne Sendaydiego","type":"Person","_key":"1378"} +{"label":"Mike Pniewski","version":19,"id":"65423","lastModified":"1299496566000","name":"Mike Pniewski","type":"Person","_key":"1379"} +{"label":"Colin Farrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4bc9936f017a3c1822000045\/colin-farrell-profile.jpg","biography":"Colin James Farrell (born 31 May 1976) is a Golden Globe-, IFTA- and Satellite Award-winning Irish actor, who has appeared in Hollywood films including Tigerland, Daredevil, Miami Vice, Minority Report, Phone Booth, The Recruit, Alexander, In Bruges, and S.W.A.T.","version":133,"id":"72466","lastModified":"1299993319000","name":"Colin Farrell","type":"Person","_key":"1380"} +{"label":"Open Water","description":"Two divers are left out at sea without a boat. There\u2019s nothing but water for miles, unless they look at what\u2019s underneath them...","id":"83","runtime":79,"imdbId":"tt0374102","trailer":"http:\/\/www.youtube.com\/watch?v=L6KnKoVnoMw","homepage":"http:\/\/www.openwatermovie.com","version":138,"lastModified":"1299815017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d0\/4bc90271017a3c57fe0007d0\/open-water-mid.jpg","studio":"Lions Gate Films","genre":"Drama","title":"Open Water","releaseDate":1092960000000,"language":"en","tagline":"Scream all you want.","type":"Movie","_key":"1381"} +{"label":"Chris Kentis","version":24,"id":"640","lastModified":"1299492352000","name":"Chris Kentis","type":"Person","_key":"1382"} +{"label":"Blanchard Ryan","version":17,"id":"644","lastModified":"1299492260000","name":"Blanchard Ryan","type":"Person","_key":"1383"} +{"label":"Daniel Travis","version":15,"id":"646","lastModified":"1299492838000","name":"Daniel Travis","type":"Person","_key":"1384"} +{"label":"Saul Stein","version":18,"id":"1187","lastModified":"1299902600000","name":"Saul Stein","type":"Person","_key":"1385"} +{"label":"Indiana Jones Collection","description":"The Adventure films series from the Director George Lucas and starring Harrison Ford as the archeologist Henry Indiana Jones.","id":"84","version":33,"lastModified":"1299834300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7de\/4bc90273017a3c57fe0007de\/indiana-jones-collection-mid.jpg","title":"Indiana Jones Collection","language":"en","type":"Movie","_key":"1386"} +{"label":"Indiana Jones and the Raiders of the Lost Ark","description":"When Dr. Indiana Jones -- the tweed-suited professor who just happens to be a celebrated archaeologist -- is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.","id":"85","runtime":115,"imdbId":"tt0082971","trailer":"http:\/\/www.youtube.com\/watch?v=oZhzkPOhtPI","homepage":"http:\/\/www.indianajones.com","version":330,"lastModified":"1299978530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87d\/4bc9028f017a3c57fe00087d\/indiana-jones-and-the-raiders-of-the-lost-ark-mid.jpg","studio":"Lucasfilm","genre":"Adventure","title":"Indiana Jones and the Raiders of the Lost Ark","releaseDate":361152000000,"language":"en","tagline":"Indiana Jones - the new hero from the creators of JAWS and STAR WARS.","type":"Movie","_key":"1387"} +{"label":"Karen Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4bd398d4017a3c5347000030\/karen-allen-profile.jpg","biography":"Karen Allen has had an impressive film career starting with her screen debut in National Lampoon's Animal House, directed by John Landis. An under-used actress who projects \"empathy, accessibility, and sweet intelligence\" into her characters, Karen Allen is best remembered as Marion Ravenwood in the George Lucas\/Steven Spielberg blockbuster Raiders of the Lost Ark, Claire Phillips in Scrooged and Jenny Hayden in John Carpenter's Starman.","version":100,"birthday":"-575686800000","id":"650","birthplace":"Carrollton, Illinois","lastModified":"1300017805000","name":"Karen Allen","type":"Person","_key":"1388"} +{"label":"Paul Freeman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a53\/4c0bf0c8017a3c7e8f000a53\/paul-freeman-profile.jpg","version":51,"id":"652","lastModified":"1299491302000","name":"Paul Freeman","type":"Person","_key":"1389"} +{"label":"Ronald Lacey","version":43,"id":"653","lastModified":"1299491490000","name":"Ronald Lacey","type":"Person","_key":"1390"} +{"label":"Denholm Elliott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4c8fcbac7b9aa17b4b000039\/denholm-elliott-profile.jpg","version":78,"id":"656","lastModified":"1299676302000","name":"Denholm Elliott","type":"Person","_key":"1391"} +{"label":"Wolf Kahler","version":36,"id":"659","lastModified":"1299491552000","name":"Wolf Kahler","type":"Person","_key":"1392"} +{"label":"Anthony Higgins","version":49,"id":"660","lastModified":"1299491559000","name":"Anthony Higgins","type":"Person","_key":"1393"} +{"label":"Vic Tablian","version":34,"id":"661","lastModified":"1299491812000","name":"Vic Tablian","type":"Person","_key":"1394"} +{"label":"Don Fellows","version":34,"id":"662","lastModified":"1299491712000","name":"Don Fellows","type":"Person","_key":"1395"} +{"label":"William Hootkins","version":58,"id":"663","lastModified":"1299491598000","name":"William Hootkins","type":"Person","_key":"1396"} +{"label":"Elementarteilchen","description":"The Elementary Particles \/ Elementarteilichen, is a film based off of the controversial novel by Michel Houellebecq about two very different half brothers; one who finds pleasure in his sexual cravings and the other who\u2019s more interested in molecular biology than women.","id":"86","runtime":105,"imdbId":"tt0430051","homepage":"http:\/\/www.elementarteilchen.film.de\/","version":103,"lastModified":"1299531710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e5\/4bc902a4017a3c57fe0008e5\/elementarteilchen-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Comedy","title":"Elementarteilchen","releaseDate":1139616000000,"language":"en","type":"Movie","_key":"1397"} +{"label":"Oskar Roehler","version":33,"id":"672","lastModified":"1299492795000","name":"Oskar Roehler","type":"Person","_key":"1398"} +{"label":"Christian Ulmen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ff\/4cf228b05e73d61e3b0007ff\/christian-ulmen-profile.jpg","version":31,"id":"675","lastModified":"1299492427000","name":"Christian Ulmen","type":"Person","_key":"1399"} +{"label":"Moritz Bleibtreu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/961\/4d19c7355e73d6083800a961\/moritz-bleibtreu-profile.jpg","version":84,"birthday":"50886000000","id":"677","birthplace":"Munich, Germany","lastModified":"1299791502000","name":"Moritz Bleibtreu","type":"Person","_key":"1400"} +{"label":"Martina Gedeck","version":49,"id":"678","lastModified":"1299670581000","name":"Martina Gedeck","type":"Person","_key":"1401"} +{"label":"Franka Potente","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32a\/4bed52c5017a3c37a000032a\/franka-potente-profile.jpg","version":80,"birthday":"143679600000","id":"679","birthplace":"M\u00fcnster, Germany","lastModified":"1299491325000","name":"Franka Potente","type":"Person","_key":"1402"} +{"label":"Corinna Harfouch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c3\/4ca9d95a5e73d643ee0005c3\/corinna-harfouch-profile.jpg","version":72,"id":"680","lastModified":"1299951043000","name":"Corinna Harfouch","type":"Person","_key":"1403"} +{"label":"Nina Hoss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fc\/4c9b54cf7b9aa127590003fc\/nina-hoss-profile.jpg","version":30,"id":"681","lastModified":"1299491786000","name":"Nina Hoss","type":"Person","_key":"1404"} +{"label":"Uwe Ochsenknecht","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/074\/4c14c05d5e73d64a1e000074\/uwe-ochsenknecht-profile.jpg","version":62,"id":"682","lastModified":"1299492040000","name":"Uwe Ochsenknecht","type":"Person","_key":"1405"} +{"label":"Jasmin Tabatabai","version":29,"id":"683","lastModified":"1299492537000","name":"Jasmin Tabatabai","type":"Person","_key":"1406"} +{"label":"Tom Schilling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f3\/4d3dd5055e73d613820000f3\/tom-schilling-profile.jpg","version":44,"birthday":"382143600000","id":"684","birthplace":"Berlin, Germany","lastModified":"1299492325000","name":"Tom Schilling","type":"Person","_key":"1407"} +{"label":"Nina Kronj\u00e4ger","version":22,"id":"685","lastModified":"1299492857000","name":"Nina Kronj\u00e4ger","type":"Person","_key":"1408"} +{"label":"Hermann Beyer","version":20,"id":"688","lastModified":"1299492327000","name":"Hermann Beyer","type":"Person","_key":"1409"} +{"label":"Jennifer Ulrich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4d1b98d35e73d6084200c02e\/jennifer-ulrich-profile.jpg","version":37,"id":"692","lastModified":"1299947362000","name":"Jennifer Ulrich","type":"Person","_key":"1410"} +{"label":"Michael Gwisdek","version":39,"id":"697","lastModified":"1299491960000","name":"Michael Gwisdek","type":"Person","_key":"1411"} +{"label":"Ulrike Kriener","version":27,"id":"714","lastModified":"1299492162000","name":"Ulrike Kriener","type":"Person","_key":"1412"} +{"label":"Herbert Knaup","version":47,"id":"1081","lastModified":"1299492862000","name":"Herbert Knaup","type":"Person","_key":"1413"} +{"label":"Deborah Kaufmann","version":19,"id":"43156","lastModified":"1299498296000","name":"Deborah Kaufmann","type":"Person","_key":"1414"} +{"label":"R\u00fcdiger Klink","version":22,"id":"23530","lastModified":"1299930281000","name":"R\u00fcdiger Klink","type":"Person","_key":"1415"} +{"label":"Thorsten Merten","version":25,"id":"4620","lastModified":"1299493979000","name":"Thorsten Merten","type":"Person","_key":"1416"} +{"label":"Franziska Schlattner","version":20,"id":"36462","lastModified":"1299498295000","name":"Franziska Schlattner","type":"Person","_key":"1417"} +{"label":"Ingeborg Westphal","version":25,"id":"36442","lastModified":"1299498734000","name":"Ingeborg Westphal","type":"Person","_key":"1418"} +{"label":"Ursula Karusseit","version":19,"id":"43163","lastModified":"1299498295000","name":"Ursula Karusseit","type":"Person","_key":"1419"} +{"label":"Dieter Bach","version":22,"id":"43164","lastModified":"1299496222000","name":"Dieter Bach","type":"Person","_key":"1420"} +{"label":"Wilfried Hochholdinger","version":22,"id":"20021","lastModified":"1299496176000","name":"Wilfried Hochholdinger","type":"Person","_key":"1421"} +{"label":"Simon Licht","version":29,"id":"39296","lastModified":"1299508052000","name":"Simon Licht","type":"Person","_key":"1422"} +{"label":"Michael Z\u00fchlke","version":19,"id":"43165","lastModified":"1299498295000","name":"Michael Z\u00fchlke","type":"Person","_key":"1423"} +{"label":"Tyra Misoux","version":19,"id":"43166","lastModified":"1299498295000","name":"Tyra Misoux","type":"Person","_key":"1424"} +{"label":"Bernd Stempel","version":19,"id":"43167","lastModified":"1299498294000","name":"Bernd Stempel","type":"Person","_key":"1425"} +{"label":"Joachim Kretzer","version":21,"id":"39863","lastModified":"1299496959000","name":"Joachim Kretzer","type":"Person","_key":"1426"} +{"label":"Rainer Heise","version":19,"id":"43168","lastModified":"1299502752000","name":"Rainer Heise","type":"Person","_key":"1427"} +{"label":"Christian Schmidt","version":19,"id":"43169","lastModified":"1299498294000","name":"Christian Schmidt","type":"Person","_key":"1428"} +{"label":"Manfred M\u00f6ck","version":19,"id":"4215","lastModified":"1299494242000","name":"Manfred M\u00f6ck","type":"Person","_key":"1429"} +{"label":"Thomas Huber","version":21,"id":"43170","lastModified":"1299499303000","name":"Thomas Huber","type":"Person","_key":"1430"} +{"label":"Indiana Jones and the Temple of Doom","description":"After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees, and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.","id":"87","runtime":118,"imdbId":"tt0087469","trailer":"http:\/\/www.youtube.com\/watch?v=98Nkqlp_hrg","homepage":"http:\/\/www.indianajones.com","version":191,"lastModified":"1299978574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/930\/4bc902ae017a3c57fe000930\/indiana-jones-and-the-temple-of-doom-mid.jpg","studio":"Lucasfilm","genre":"Action","title":"Indiana Jones and the Temple of Doom","releaseDate":454118400000,"language":"en","tagline":"If adventure has a name... it must be Indiana Jones.","type":"Movie","_key":"1431"} +{"label":"Kate Capshaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b9\/4c179cc17b9aa109120000b9\/kate-capshaw-profile.jpg","version":36,"id":"689","lastModified":"1299689631000","name":"Kate Capshaw","type":"Person","_key":"1432"} +{"label":"Jonathan Ke Quan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cd\/4cbc680b7b9aa138d70013cd\/jonathan-ke-quan-profile.jpg","version":32,"birthday":"51490800000","id":"690","birthplace":"Saigon","lastModified":"1299491818000","name":"Jonathan Ke Quan","type":"Person","_key":"1433"} +{"label":"Amrish Puri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab8\/4d21787c7b9aa17373002ab8\/amrish-puri-profile.jpg","version":47,"id":"691","lastModified":"1299491578000","name":"Amrish Puri","type":"Person","_key":"1434"} +{"label":"Roshan Seth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4cddea9f5e73d60e0c000094\/roshan-seth-profile.jpg","version":38,"id":"693","lastModified":"1299491828000","name":"Roshan Seth","type":"Person","_key":"1435"} +{"label":"Philip Stone","version":38,"id":"694","lastModified":"1299491777000","name":"Philip Stone","type":"Person","_key":"1436"} +{"label":"Roy Chiao","version":24,"id":"695","lastModified":"1299492235000","name":"Roy Chiao","type":"Person","_key":"1437"} +{"label":"David Yip","version":33,"id":"696","lastModified":"1299491869000","name":"David Yip","type":"Person","_key":"1438"} +{"label":"Ric Young","version":30,"id":"11397","lastModified":"1299492776000","name":"Ric Young","type":"Person","_key":"1439"} +{"label":"Chua Kah Joo","version":21,"id":"699","lastModified":"1299492201000","name":"Chua Kah Joo","type":"Person","_key":"1440"} +{"label":"Rex Ngui","version":20,"id":"701","lastModified":"1299491553000","name":"Rex Ngui","type":"Person","_key":"1441"} +{"label":"Philip Tan","version":28,"id":"702","lastModified":"1299491889000","name":"Philip Tan","type":"Person","_key":"1442"} +{"label":"Dan Aykroyd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/489\/4bf2d456017a3c3217000489\/dan-aykroyd-profile.jpg","biography":"

 <\/P>","version":249,"birthday":"-552358800000","id":"707","birthplace":"Ottawa, Ontario, Canada","lastModified":"1299927194000","name":"Dan Aykroyd","type":"Person","_key":"1443"} +{"label":"Dirty Dancing","description":"Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances \"Baby\" Houseman is surprised to find herself stepping into the shoes of a professional hoofer -- and unexpectedly falling in love. The object of her affection? The resort's free-spirited dance instructor.","id":"88","runtime":96,"imdbId":"tt0092890","version":196,"lastModified":"1299912997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ef\/4d6a23c57b9aa136360021ef\/dirty-dancing-mid.jpg","studio":"Great American Films Limited Partnership","genre":"Drama","title":"Dirty Dancing","releaseDate":536457600000,"language":"en","tagline":"Have The Time Of Your Life.","type":"Movie","_key":"1444"} +{"label":"Emile Ardolino","version":22,"id":"716","lastModified":"1299492088000","name":"Emile Ardolino","type":"Person","_key":"1445"} +{"label":"Jennifer Grey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/331\/4cc493547b9aa138d8002331\/jennifer-grey-profile.jpg","version":29,"birthday":"-308278800000","id":"722","birthplace":"New York, USA","lastModified":"1299491818000","name":"Jennifer Grey","type":"Person","_key":"1446"} +{"label":"Patrick Swayze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4c699d587b9aa13920000075\/patrick-swayze-profile.jpg","version":81,"birthday":"-548470800000","id":"723","birthplace":"Houston, Texas, USA","lastModified":"1299491404000","name":"Patrick Swayze","type":"Person","_key":"1447"} +{"label":"Cynthia Rhodes","version":18,"id":"724","lastModified":"1299492144000","name":"Cynthia Rhodes","type":"Person","_key":"1448"} +{"label":"Jerry Orbach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f7\/4bccaed9017a3c0f340001f7\/jerry-orbach-profile.jpg","version":53,"birthday":"-1079312400000","id":"725","lastModified":"1300006378000","name":"Jerry Orbach","type":"Person","_key":"1449"} +{"label":"Jack Weston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f1a\/4c7409817b9aa13ab5000f1a\/jack-weston-profile.jpg","version":44,"id":"726","lastModified":"1300003387000","name":"Jack Weston","type":"Person","_key":"1450"} +{"label":"Jane Brucker","version":16,"id":"727","lastModified":"1299492511000","name":"Jane Brucker","type":"Person","_key":"1451"} +{"label":"Kelly Bishop","version":17,"id":"728","lastModified":"1299492630000","name":"Kelly Bishop","type":"Person","_key":"1452"} +{"label":"Lonny Price","version":17,"id":"729","lastModified":"1299492071000","name":"Lonny Price","type":"Person","_key":"1453"} +{"label":"Max Cantor","version":15,"id":"730","lastModified":"1299492510000","name":"Max Cantor","type":"Person","_key":"1454"} +{"label":"Alvin Myerovich","version":15,"id":"733","lastModified":"1299492510000","name":"Alvin Myerovich","type":"Person","_key":"1455"} +{"label":"Paula Trueman","version":15,"id":"734","lastModified":"1299492630000","name":"Paula Trueman","type":"Person","_key":"1456"} +{"label":"Charles 'Honi' Coles","version":15,"id":"4198","lastModified":"1299493846000","name":"Charles 'Honi' Coles","type":"Person","_key":"1457"} +{"label":"Neal Jones","version":15,"id":"4199","lastModified":"1299494655000","name":"Neal Jones","type":"Person","_key":"1458"} +{"label":"'Cousin Brucie' Morrow","version":15,"id":"4200","lastModified":"1299493846000","name":"'Cousin Brucie' Morrow","type":"Person","_key":"1459"} +{"label":"Wayne Knight","version":57,"id":"4201","lastModified":"1299491343000","name":"Wayne Knight","type":"Person","_key":"1460"} +{"label":"Miranda Garrison","version":15,"id":"4202","lastModified":"1299493845000","name":"Miranda Garrison","type":"Person","_key":"1461"} +{"label":"Garry Goodrow","version":26,"id":"4203","lastModified":"1299493954000","name":"Garry Goodrow","type":"Person","_key":"1462"} +{"label":"Antone Pagan","version":20,"id":"4204","lastModified":"1299493109000","name":"Antone Pagan","type":"Person","_key":"1463"} +{"label":"Thomas Cannold","version":15,"id":"4205","lastModified":"1299493581000","name":"Thomas Cannold","type":"Person","_key":"1464"} +{"label":"Heather Lea Gerdes","version":15,"id":"4206","lastModified":"1299494216000","name":"Heather Lea Gerdes","type":"Person","_key":"1465"} +{"label":"Jesus Fuentes","version":15,"id":"4207","lastModified":"1299493327000","name":"Jesus Fuentes","type":"Person","_key":"1466"} +{"label":"M.R. Fletcher","version":15,"id":"4208","lastModified":"1299493582000","name":"M.R. Fletcher","type":"Person","_key":"1467"} +{"label":"Karen Getz","version":15,"id":"4209","lastModified":"1299492917000","name":"Karen Getz","type":"Person","_key":"1468"} +{"label":"Andrew Charles Koch","version":15,"id":"4210","lastModified":"1299493095000","name":"Andrew Charles Koch","type":"Person","_key":"1469"} +{"label":"D.A. Pauley","version":15,"id":"4211","lastModified":"1299493845000","name":"D.A. Pauley","type":"Person","_key":"1470"} +{"label":"Jennifer Stahl","version":15,"id":"4212","lastModified":"1299493327000","name":"Jennifer Stahl","type":"Person","_key":"1471"} +{"label":"Dorian Sanchez","version":15,"id":"4213","lastModified":"1299493580000","name":"Dorian Sanchez","type":"Person","_key":"1472"} +{"label":"Indiana Jones and the Last Crusade","description":"Three years after he recovered The Ark of the Covenant. Jones recovered an artifact that he found as a kid, the Cross of Francisco De Coronado from treasure hunters. Now, Jones discovers the history of another biblical artifact called \"The Holy Grail\". He was also informed that his father, Henry Jones is missing. Jones has to find his father who is looking for the Grail. However, Jones will become involved in the search of the Holy Grail along with his father, as well as fighting the Nazis to re","id":"89","runtime":127,"imdbId":"tt0097576","trailer":"http:\/\/www.youtube.com\/watch?v=PYNTV61FeAs","homepage":"http:\/\/www.indianajones.com\/crusade","version":188,"lastModified":"1299978641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a89\/4bc902eb017a3c57fe000a89\/indiana-jones-and-the-last-crusade-mid.jpg","studio":"Lucasfilm","genre":"Action","title":"Indiana Jones and the Last Crusade","releaseDate":611971200000,"language":"en","tagline":"The man with the hat is back. And this time, he's bringing his Dad.","type":"Movie","_key":"1473"} +{"label":"Sean Connery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/100\/4bf02380017a3c3e8c000100\/sean-connery-profile.jpg","version":292,"birthday":"-1241917200000","id":"738","birthplace":"Fountainbridge, Edinburgh","lastModified":"1299689633000","name":"Sean Connery","type":"Person","_key":"1474"} +{"label":"Alison Doody","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4c8fcc3d7b9aa17b4b00003d\/alison-doody-profile.jpg","version":26,"id":"739","lastModified":"1299491781000","name":"Alison Doody","type":"Person","_key":"1475"} +{"label":"Julian Glover","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4c8fced07b9aa17b4b000045\/julian-glover-profile.jpg","version":57,"id":"740","lastModified":"1299755420000","name":"Julian Glover","type":"Person","_key":"1476"} +{"label":"River Phoenix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4bd40e53017a3c7fa60000db\/river-phoenix-profile.jpg","biography":"River Phoenix was an up-and-coming movie star when he died suddenly of drug-induced heart failure in 1993 at the age of 23. His brief career was marked by critically-acclaimed performances in films such as Stand By Me (1986), Running On Empty (1988) and Gus Van Sant's My Own Private Idaho (1991, with Keanu Reeves). \n\nRiver was the eldest of five children whose itinerant parents were members of a radical Christian group called the Children of God (later known as The Family). His family lived in c","version":49,"birthday":"20214000000","id":"741","birthplace":"Metolius, Oregon USA","lastModified":"1299880072000","name":"River Phoenix","type":"Person","_key":"1477"} +{"label":"Michael Byrne","version":33,"id":"742","lastModified":"1299491598000","name":"Michael Byrne","type":"Person","_key":"1478"} +{"label":"Kevork Malikyan","version":24,"id":"743","lastModified":"1299491865000","name":"Kevork Malikyan","type":"Person","_key":"1479"} +{"label":"Robert Eddison","version":22,"id":"744","lastModified":"1299491762000","name":"Robert Eddison","type":"Person","_key":"1480"} +{"label":"Richard Young","version":24,"id":"745","lastModified":"1299491639000","name":"Richard Young","type":"Person","_key":"1481"} +{"label":"Alexei Sayle","version":23,"id":"746","lastModified":"1299491804000","name":"Alexei Sayle","type":"Person","_key":"1482"} +{"label":"Paul Maxwell","version":25,"id":"748","lastModified":"1299491970000","name":"Paul Maxwell","type":"Person","_key":"1483"} +{"label":"Isla Blair","version":25,"id":"749","lastModified":"1299491883000","name":"Isla Blair","type":"Person","_key":"1484"} +{"label":"Beverly Hills Cop","description":"Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder. But soon, he realizes he's stumbled onto something much more complicated. Bungling rookie detective Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.","id":"90","runtime":105,"imdbId":"tt0086960","trailer":"http:\/\/www.youtube.com\/watch?v=XQGi4eB3RZI","version":127,"lastModified":"1299913058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aab\/4bc902f3017a3c57fe000aab\/beverly-hills-cop-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Beverly Hills Cop","releaseDate":471052800000,"language":"en","tagline":"The Heat Is On!","type":"Movie","_key":"1485"} +{"label":"Martin Brest","version":49,"id":"769","lastModified":"1299491410000","name":"Martin Brest","type":"Person","_key":"1486"} +{"label":"Eddie Murphy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4bcc2a0b017a3c0f32000084\/eddie-murphy-profile.jpg","biography":"Edward \"Eddie\" Regan Murphy (born April 3, 1961) is an American actor, voice actor, film director, producer, comedian and singer. He is the second-highest grossing actor in motion picture history. He was a regular cast member on Saturday Night Live from 1980 to 1984, and has worked as a stand-up comedian. He was ranked #10 on Comedy Central's list of the 100 Greatest Stand-ups of All Time.

He has received Golden Globe Award nominations for Golden Globe Award for New Star of the Year - Act","version":206,"birthday":"-276051600000","id":"776","lastModified":"1299947454000","name":"Eddie Murphy","type":"Person","_key":"1487"} +{"label":"Judge Reinhold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4bf86044017a3c4908000073\/judge-reinhold-profile.jpg","version":62,"id":"777","lastModified":"1299833701000","name":"Judge Reinhold","type":"Person","_key":"1488"} +{"label":"John Ashton","version":40,"id":"778","lastModified":"1299491375000","name":"John Ashton","type":"Person","_key":"1489"} +{"label":"Lisa Eilbacher","version":26,"id":"779","lastModified":"1299491390000","name":"Lisa Eilbacher","type":"Person","_key":"1490"} +{"label":"Ronny Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4c7417b87b9aa13ab7001017\/ronny-cox-profile.jpg","version":63,"id":"780","lastModified":"1299946960000","name":"Ronny Cox","type":"Person","_key":"1491"} +{"label":"Paul Reiser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/916\/4d25df877b9aa134d8000916\/paul-reiser-profile.jpg","version":50,"id":"781","lastModified":"1299509078000","name":"Paul Reiser","type":"Person","_key":"1492"} +{"label":"Steven Berkoff","version":73,"id":"782","lastModified":"1299753841000","name":"Steven Berkoff","type":"Person","_key":"1493"} +{"label":"Jonathan Banks","version":41,"id":"783","lastModified":"1299491387000","name":"Jonathan Banks","type":"Person","_key":"1494"} +{"label":"Bronson Pinchot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c6\/4cd782405e73d676d20004c6\/bronson-pinchot-profile.jpg","version":39,"id":"4689","lastModified":"1299961915000","name":"Bronson Pinchot","type":"Person","_key":"1495"} +{"label":"James Russo","version":64,"id":"785","lastModified":"1299758324000","name":"James Russo","type":"Person","_key":"1496"} +{"label":"Stephen Elliott","version":29,"id":"786","lastModified":"1299491515000","name":"Stephen Elliott","type":"Person","_key":"1497"} +{"label":"Gilbert R. Hill","version":26,"id":"787","lastModified":"1299491423000","name":"Gilbert R. Hill","type":"Person","_key":"1498"} +{"label":"Art Kimbro","version":19,"id":"788","lastModified":"1299491423000","name":"Art Kimbro","type":"Person","_key":"1499"} +{"label":"Joel Bailey","version":19,"id":"789","lastModified":"1299491566000","name":"Joel Bailey","type":"Person","_key":"1500"} +{"label":"Michael Champion","version":29,"id":"790","lastModified":"1299491381000","name":"Michael Champion","type":"Person","_key":"1501"} +{"label":"Land Without Bread","description":"Las Hurdes \u2013 Tierra Sin Pan \/ Land Without Bread \/ Unpromised Land is a surrealist documentary filmed in Spain in 1932. It is the result of a two month trip through the Las Hurdes region. The film shows the contrasts between the village and the towns in the north of Extremadura, Salamanca and along the boarder of Portugal.","id":"91","runtime":29,"imdbId":"tt0023037","version":38,"lastModified":"1299531658000","genre":"Documentary","title":"Land Without Bread","releaseDate":-1167609600000,"language":"en","type":"Movie","_key":"1502"} +{"label":"Luis Bu\u00f1uel","version":130,"id":"793","lastModified":"1299491612000","name":"Luis Bu\u00f1uel","type":"Person","_key":"1503"} +{"label":"Abel Jacquin","version":9,"id":"174923","lastModified":"1299515831000","name":"Abel Jacquin","type":"Person","_key":"1504"} +{"label":"Alexandre O'Neill","version":9,"id":"174950","lastModified":"1299515857000","name":"Alexandre O'Neill","type":"Person","_key":"1505"} +{"label":"Megacities","description":"Megacities is a documentary about the slums of five different metropolitan cities.","id":"92","runtime":94,"imdbId":"tt0169024","version":46,"lastModified":"1299531712000","genre":"Documentary","title":"Megacities","releaseDate":902016000000,"language":"en","type":"Movie","_key":"1506"} +{"label":"Michael Glawogger","version":24,"id":"801","lastModified":"1299493186000","name":"Michael Glawogger","type":"Person","_key":"1507"} +{"label":"Shankar Loutakke","version":12,"id":"806","lastModified":"1299493216000","name":"Shankar Loutakke","type":"Person","_key":"1508"} +{"label":"Modesto Francisco Rodriguez","version":13,"id":"807","lastModified":"1299493255000","name":"Modesto Francisco Rodriguez","type":"Person","_key":"1509"} +{"label":"Mike \u201eTone\u201c P. Ross","version":13,"id":"812","lastModified":"1299493228000","name":"Mike \u201eTone\u201c P. Ross","type":"Person","_key":"1510"} +{"label":"Anatomy of a Murder","description":"Paul Biegler is a small town lawyer who until recently had been the local prosecutor and given a lack of clients, he spends a lot of time fishing. When a murder takes place in a trailer park on the outskirts of town, he is asked to defend Lt. Frederick Manion who admits to having killed Barney Quill, a local bar owner who allegedly raped his wife. He now claims temporary insanity. The case is both","id":"93","runtime":160,"imdbId":"tt0052561","trailer":"http:\/\/www.youtube.com\/watch?v=fMCt7fyjqO0","version":145,"lastModified":"1300013515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab8\/4bc902f5017a3c57fe000ab8\/anatomy-of-a-murder-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Anatomy of a Murder","releaseDate":-331516800000,"language":"en","type":"Movie","_key":"1511"} +{"label":"Otto Preminger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4c1bbeec7b9aa1178e000081\/otto-preminger-profile.jpg","version":56,"id":"834","lastModified":"1300013515000","name":"Otto Preminger","type":"Person","_key":"1512"} +{"label":"James Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a1\/4bd5f8bc017a3c65820000a1\/james-stewart-profile.jpg","version":126,"id":"854","lastModified":"1299947261000","name":"James Stewart","type":"Person","_key":"1513"} +{"label":"Lee Remick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4c34affd7b9aa17a370000db\/lee-remick-profile.jpg","version":32,"id":"855","lastModified":"1300013514000","name":"Lee Remick","type":"Person","_key":"1514"} +{"label":"Ben Gazzara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4c95d9ff7b9aa10d5900034e\/ben-gazzara-profile.jpg","version":60,"id":"856","lastModified":"1300013514000","name":"Ben Gazzara","type":"Person","_key":"1515"} +{"label":"Arthur O'Connell","version":33,"id":"857","lastModified":"1300013514000","name":"Arthur O'Connell","type":"Person","_key":"1516"} +{"label":"Duke Ellington","version":16,"id":"858","lastModified":"1300013514000","name":"Duke Ellington","type":"Person","_key":"1517"} +{"label":"Eve Arden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/337\/4c9a135e7b9aa12758000337\/eve-arden-profile.jpg","version":37,"id":"860","lastModified":"1300013515000","name":"Eve Arden","type":"Person","_key":"1518"} +{"label":"Kathryn Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/123\/4c24f3f37b9aa1446b000123\/kathryn-grant-profile.jpg","version":23,"id":"861","lastModified":"1300013515000","name":"Kathryn Grant","type":"Person","_key":"1519"} +{"label":"George C. Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d2\/4c4d91d67b9aa1237c0003d2\/george-c-scott-profile.jpg","version":62,"id":"862","lastModified":"1300013515000","name":"George C. Scott","type":"Person","_key":"1520"} +{"label":"Orson Bean","version":27,"id":"863","lastModified":"1300013515000","name":"Orson Bean","type":"Person","_key":"1521"} +{"label":"Russ Brown","version":14,"id":"866","lastModified":"1300013515000","name":"Russ Brown","type":"Person","_key":"1522"} +{"label":"Kunstgriff","description":"Kunstgriff is a brilliantly filmed black and white short film. Andre F. Nebe gives proof of his storytelling abilities in this 6 minute film.","id":"94","runtime":6,"imdbId":"tt0436488","version":32,"lastModified":"1299531712000","studio":"Hamburger Filmschule","genre":"Comedy","title":"Kunstgriff","releaseDate":1021680000000,"language":"en","type":"Movie","_key":"1523"} +{"label":"Andr\u00e9 F. Nebe","version":13,"id":"836","lastModified":"1299492966000","name":"Andr\u00e9 F. Nebe","type":"Person","_key":"1524"} +{"label":"Ursula Buschhorn","version":13,"id":"847","lastModified":"1299492088000","name":"Ursula Buschhorn","type":"Person","_key":"1525"} +{"label":"Hans Werner Meyer","version":29,"id":"848","lastModified":"1299492324000","name":"Hans Werner Meyer","type":"Person","_key":"1526"} +{"label":"Armageddon","description":"An asteroid the size of Texas is heading directly toward Earth at 22,000 mph. NASA's executive director, Dan Truman, has only one option - to send up a crew to destroy the asteroid. He enlists the help of Harry S. Stamper - the world's foremost deep core oil driller - and Stamper's roughneck team of drillers to land on the asteroid, drill into its surface, and drop a nuclear device.","id":"95","runtime":144,"imdbId":"tt0120591","trailer":"http:\/\/www.youtube.com\/watch?v=iq6q2BrTino","version":225,"lastModified":"1299913722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/244\/4c60de365e73d63462000244\/armageddon-mid.jpg","studio":"Buena Vista","genre":"Action","title":"Armageddon","releaseDate":899251200000,"language":"en","tagline":"Earth. It Was Fun While It Lasted.","type":"Movie","_key":"1527"} +{"label":"Michael Bay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/716\/4be27786017a3c35b7000716\/michael-bay-profile.jpg","biography":"Michael Benjamin Bay (born February 17, 1965) is an American film director and producer. He is best known for directing high-budget action films characterized by fast edits, polished visuals and substantial use of practical effects. His films, which include The Rock, Armageddon, Pearl Harbor and the Bad Boys and Transformers series, have grossed over three billion dollars world-wide. He is co-founder of commercial production house The Institute , a.k.a. The Institute for the Development of Enhan","version":131,"birthday":"-153709200000","id":"865","birthplace":"Los Angeles, California, USA","lastModified":"1299490983000","name":"Michael Bay","type":"Person","_key":"1528"} +{"label":"Billy Bob Thornton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ae\/4c1695fb7b9aa108d60000ae\/billy-bob-thornton-profile.jpg","version":139,"id":"879","lastModified":"1299582182000","name":"Billy Bob Thornton","type":"Person","_key":"1529"} +{"label":"Ben Affleck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6bd\/4c08c785017a3c29a60006bd\/ben-affleck-profile.jpg","version":250,"birthday":"82681200000","id":"880","birthplace":"Berkeley, California, United States","lastModified":"1299925298000","name":"Ben Affleck","type":"Person","_key":"1530"} +{"label":"Will Patton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cff\/4cf278595e73d61e3d000cff\/will-patton-profile.jpg","version":87,"id":"883","lastModified":"1299756192000","name":"Will Patton","type":"Person","_key":"1531"} +{"label":"Steve Buscemi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ba\/4bec0c1a017a3c37a90001ba\/steve-buscemi-profile.jpg","biography":"Steven Vincent \"Steve\" Buscemi is an American actor, writer and film director.\nHe was born in Brooklyn, New York, the son of Dorothy, who worked as a hostess at Howard Johnson's, and John Buscemi, a sanitation worker and Korean War veteran. Buscemi's father was Sicilian American and his mother Irish American. He has three brothers: Jon, Ken, and Michael. Buscemi was raised Roman Catholic.\n\nIn April 2001, while shooting the film Domestic Disturbance in Wilmington, North Carolina, Buscemi was stab","version":241,"birthday":"-380336400000","id":"884","birthplace":"New York City, New York, USA","lastModified":"1299947845000","name":"Steve Buscemi","type":"Person","_key":"1532"} +{"label":"William Fichtner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4c7d9bb35e73d648de00000e\/william-fichtner-profile.jpg","version":102,"birthday":"-413254800000","id":"886","lastModified":"1300017805000","name":"William Fichtner","type":"Person","_key":"1533"} +{"label":"Owen Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92d\/4bfc7a44017a3c702d00092d\/owen-wilson-profile.jpg","version":200,"id":"887","lastModified":"1299752064000","name":"Owen Wilson","type":"Person","_key":"1534"} +{"label":"Beverly Hills Cop II","description":"Axel Foley is back and as funny as ever in this fast-paced sequel to the original smash hit. This time, the Detroit cop heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin, and the chase is on!","id":"96","runtime":100,"imdbId":"tt0092644","trailer":"http:\/\/www.youtube.com\/watch?v=ivAiTCgbHoQ","version":136,"lastModified":"1299912259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afb\/4bc90300017a3c57fe000afb\/beverly-hills-cop-ii-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Beverly Hills Cop II","releaseDate":548467200000,"language":"en","tagline":"The Heat's Back On!","type":"Movie","_key":"1535"} +{"label":"Tony Scott","version":152,"id":"893","lastModified":"1299601439000","name":"Tony Scott","type":"Person","_key":"1536"} +{"label":"J\u00fcrgen Prochnow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/313\/4c3b3b7d7b9aa10ed9000313\/jurgen-prochnow-profile.jpg","version":99,"id":"920","lastModified":"1299491413000","name":"J\u00fcrgen Prochnow","type":"Person","_key":"1537"} +{"label":"Brigitte Nielsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a8\/4cb935e85e73d677830006a8\/brigitte-nielsen-profile.jpg","version":44,"id":"921","lastModified":"1299491807000","name":"Brigitte Nielsen","type":"Person","_key":"1538"} +{"label":"Dean Stockwell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/470\/4c9a13b37b9aa122e1000470\/dean-stockwell-profile.jpg","version":74,"id":"923","lastModified":"1299688670000","name":"Dean Stockwell","type":"Person","_key":"1539"} +{"label":"Paul Guilfoyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4cc6d4917b9aa15b22000061\/paul-guilfoyle-profile.jpg","version":46,"id":"925","lastModified":"1299692306000","name":"Paul Guilfoyle","type":"Person","_key":"1540"} +{"label":"Ola Ray","version":17,"id":"926","lastModified":"1299492845000","name":"Ola Ray","type":"Person","_key":"1541"} +{"label":"Rebecca Ferratti","version":17,"id":"928","lastModified":"1299492771000","name":"Rebecca Ferratti","type":"Person","_key":"1542"} +{"label":"Allen Garfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/403\/4c9a25317b9aa12337000403\/allen-garfield-profile.jpg","version":38,"id":"922","lastModified":"1299492750000","name":"Allen Garfield","type":"Person","_key":"1543"} +{"label":"Chris Rock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/112\/4c2bc3b27b9aa15e99000112\/chris-rock-profile.jpg","biography":"Christopher Julius \"Chris\" Rock III<\/SPAN><\/B> (born February 7, 1965) is an American comedian, actor, screenwriter, television producer, film producer and director. He was voted in the US as the 5th greatest stand-up comedian of all time by Comedy Central. He was also voted in the UK as the 9th greatest stand-up comic on Channel 4's 100 Greatest Stand-Ups<\/I> i","version":149,"birthday":"-154573200000","id":"2632","birthplace":"Andrews, South Carolina","lastModified":"1299947633000","name":"Chris Rock","type":"Person","_key":"1544"} +{"label":"Tron","description":"While Kevin Flynn is searching his work\u2019s computer system for classified information relating to video games he is digitalized by a laser finding himself in the middle of the computer world. Tron is the first feature film to have long computer generated scenes and thus seen as a milestone in film storytelling history.","id":"97","runtime":96,"imdbId":"tt0084827","trailer":"http:\/\/www.youtube.com\/watch?v=Smmu4WG4iVI","version":257,"lastModified":"1299937270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5aa\/4d7100b27b9aa12fd10015aa\/tron-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Tron","releaseDate":395020800000,"language":"en","tagline":"A world inside the computer where man has never been. Until now.","type":"Movie","_key":"1545"} +{"label":"David Warner","version":76,"id":"2076","lastModified":"1299908089000","name":"David Warner","type":"Person","_key":"1546"} +{"label":"Cindy Morgan","version":16,"id":"2548","lastModified":"1299908089000","name":"Cindy Morgan","type":"Person","_key":"1547"} +{"label":"Barnard Hughes","version":28,"id":"2549","lastModified":"1299908089000","name":"Barnard Hughes","type":"Person","_key":"1548"} +{"label":"Dan Shor","version":23,"id":"2550","lastModified":"1299908089000","name":"Dan Shor","type":"Person","_key":"1549"} +{"label":"Peter Jurasik","version":21,"id":"12876","lastModified":"1299908090000","name":"Peter Jurasik","type":"Person","_key":"1550"} +{"label":"Tony Stephano","version":16,"id":"12877","lastModified":"1299908090000","name":"Tony Stephano","type":"Person","_key":"1551"} +{"label":"Craig Chudy","version":16,"id":"12878","lastModified":"1299908090000","name":"Craig Chudy","type":"Person","_key":"1552"} +{"label":"Vince Deadrick Jr.","version":16,"id":"12879","lastModified":"1299908090000","name":"Vince Deadrick Jr.","type":"Person","_key":"1553"} +{"label":"Sam Schatz","version":16,"id":"12880","lastModified":"1299908090000","name":"Sam Schatz","type":"Person","_key":"1554"} +{"label":"Steven Lisberger","version":51,"id":"12859","lastModified":"1299908089000","name":"Steven Lisberger","type":"Person","_key":"1555"} +{"label":"Gladiator","description":"Gladiator is an epic film of love, death and betrayal set in the Roman Empire. General Maximus' success in battle earns the favour of an elderly Emperor at the expense of the Emperor's son. In a fit of jealous rage the son slays his father before turning his anger towards Maximus. Now reduced to a slave, his family dead, Maximus must fight as a Gladiator to gain his freedom, and his revenge.","id":"98","runtime":155,"imdbId":"tt0172495","trailer":"http:\/\/www.youtube.com\/watch?v=ol67qo3WhJk","homepage":"http:\/\/movies.uip.de\/gladiator\/","version":319,"lastModified":"1299867529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91a\/4c705afd5e73d65f7c00091a\/gladiator-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Gladiator","releaseDate":957139200000,"language":"en","tagline":"What we do in life echoes in eternity.","type":"Movie","_key":"1556"} +{"label":"Russell Crowe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4bc98efa017a3c181a000022\/russell-crowe-profile.jpg","biography":"Russell Ira Crowe (born 7 April 1964) is a New Zealand-born, naturalised Australian actor and musician. His acting career began in the early 1990s with roles in Australian TV series such as Police Rescue and films such as Romper Stomper. In the late 1990s, he began appearing in US films such as the 1997 movie L.A. Confidential. He has been nominated for three Oscars, and in 2001, he won the Academy Award for Best Actor for his starring role in the film Gladiator. He also won the BAFTA Award for","version":168,"birthday":"-181011600000","id":"934","birthplace":"Wellington, New Zealand","lastModified":"1299950850000","name":"Russell Crowe","type":"Person","_key":"1557"} +{"label":"Connie Nielsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6be\/4ce51c927b9aa168b20006be\/connie-nielsen-profile.jpg","version":62,"id":"935","lastModified":"1299491144000","name":"Connie Nielsen","type":"Person","_key":"1558"} +{"label":"Oliver Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ef\/4c99c7bd7b9aa122df0003ef\/oliver-reed-profile.jpg","version":75,"birthday":"-1006131600000","id":"936","birthplace":"Wimbledon, London, UK","lastModified":"1299822004000","name":"Oliver Reed","type":"Person","_key":"1559"} +{"label":"Derek Jacobi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4bca5380017a3c0e8f0000bf\/derek-jacobi-profile.jpg","version":99,"id":"937","lastModified":"1299860267000","name":"Derek Jacobi","type":"Person","_key":"1560"} +{"label":"Djimon Hounsou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4c1922157b9aa10d2c000098\/djimon-hounsou-profile.jpg","biography":"

Djimon Gaston Hounsou<\/SPAN><\/B> is a Beninese-American actor and model. As an actor, Hounsou has been nominated for two Academy Awards. Hounsou became a naturalized American citizen in 2007. He was reluctant to renounce his Beninese citizenship ","version":85,"birthday":"-179542800000","id":"938","birthplace":"Cotonou, Benin","lastModified":"1299491278000","name":"Djimon Hounsou","type":"Person","_key":"1561"} +{"label":"David Schofield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4ceeba185e73d654f9000077\/david-schofield-profile.jpg","version":43,"id":"939","lastModified":"1299746853000","name":"David Schofield","type":"Person","_key":"1562"} +{"label":"John Shrapnel","version":42,"id":"940","lastModified":"1299492088000","name":"John Shrapnel","type":"Person","_key":"1563"} +{"label":"Tomas Arana","version":36,"id":"941","lastModified":"1299576646000","name":"Tomas Arana","type":"Person","_key":"1564"} +{"label":"Ralf Moeller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21c\/4d615fd55e73d60c6d00321c\/ralf-moeller-profile.jpg","version":42,"id":"942","lastModified":"1299491464000","name":"Ralf Moeller","type":"Person","_key":"1565"} +{"label":"Tommy Flanagan","version":58,"id":"2478","lastModified":"1299607762000","name":"Tommy Flanagan","type":"Person","_key":"1566"} +{"label":"Spencer Treat Clark","version":46,"id":"4012","lastModified":"1299491113000","name":"Spencer Treat Clark","type":"Person","_key":"1567"} +{"label":"All About My Mother","description":"All About My Mother \/ Todo Sobre Mi Madre \u2013 Pedro Almod\u00f3var tells the story of a woman searching for the father of her son as she is confronted with her past. This homage to the mother enticed two million Spaniards into the theaters.","id":"99","runtime":101,"imdbId":"tt0185125","homepage":"http:\/\/www.sonypictures.com\/classics\/allaboutmymother\/","version":153,"lastModified":"1299911845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b92\/4bc90316017a3c57fe000b92\/todo-sobre-mi-madre-mid.jpg","studio":"El Deseo","genre":"Comedy","title":"All About My Mother","releaseDate":924220800000,"language":"en","type":"Movie","_key":"1568"} +{"label":"Cecilia Roth","version":35,"id":"953","lastModified":"1299492842000","name":"Cecilia Roth","type":"Person","_key":"1569"} +{"label":"Marisa Paredes","version":37,"id":"954","lastModified":"1299492076000","name":"Marisa Paredes","type":"Person","_key":"1570"} +{"label":"Penelope Cruz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/436\/4be0901d017a3c35b5000436\/penelope-cruz-profile.jpg","biography":"Pen\u00e9lope Cruz S\u00e1nchez (born April 28, 1974), better known as Pen\u00e9lope Cruz, is a Spanish actress. At 15, she was signed by an agent. She made her acting debut at 16 on television, and her feature film debut the following year in Jam\u00f3n, jam\u00f3n (1992), to critical acclaim. Her subsequent roles in the 1990s and 2000s included Open Your Eyes (1997), The Hi-Lo Country (1999), The Girl of Your Dreams (2000) and Woman on Top (2000). Cruz achieved recognition for her lead roles in Vanilla Sky and Blow. B","version":142,"birthday":"136335600000","id":"955","birthplace":"Madrid, Spain","lastModified":"1299947845000","name":"Penelope Cruz","type":"Person","_key":"1571"} +{"label":"Candela Pe\u00f1a","version":24,"id":"958","lastModified":"1299492019000","name":"Candela Pe\u00f1a","type":"Person","_key":"1572"} +{"label":"Antonia San Juan","version":18,"id":"961","lastModified":"1299493119000","name":"Antonia San Juan","type":"Person","_key":"1573"} +{"label":"Rosa Maria Sard\u00e0","version":24,"id":"962","lastModified":"1299493243000","name":"Rosa Maria Sard\u00e0","type":"Person","_key":"1574"} +{"label":"Toni Cant\u00f2","version":19,"id":"963","lastModified":"1299492938000","name":"Toni Cant\u00f2","type":"Person","_key":"1575"} +{"label":"Eloy Azor\u00edn","version":18,"id":"964","lastModified":"1299493626000","name":"Eloy Azor\u00edn","type":"Person","_key":"1576"} +{"label":"Fernando Fern\u00e1n G\u00f3mez","version":31,"id":"965","lastModified":"1299692274000","name":"Fernando Fern\u00e1n G\u00f3mez","type":"Person","_key":"1577"} +{"label":"Carlos Lozano","version":18,"id":"3650","lastModified":"1299494432000","name":"Carlos Lozano","type":"Person","_key":"1578"} +{"label":"Fernando Guill\u00e9n","version":31,"id":"3651","lastModified":"1299927907000","name":"Fernando Guill\u00e9n","type":"Person","_key":"1579"} +{"label":"Manuel Mor\u00f3n","version":21,"id":"3652","lastModified":"1299494489000","name":"Manuel Mor\u00f3n","type":"Person","_key":"1580"} +{"label":"Jos\u00e9 Luis Torrijo","version":18,"id":"3653","lastModified":"1299494922000","name":"Jos\u00e9 Luis Torrijo","type":"Person","_key":"1581"} +{"label":"Malena Guti\u00e9rrez","version":18,"id":"3654","lastModified":"1299494431000","name":"Malena Guti\u00e9rrez","type":"Person","_key":"1582"} +{"label":"Yael Barnat\u00e1n","version":18,"id":"3655","lastModified":"1299493763000","name":"Yael Barnat\u00e1n","type":"Person","_key":"1583"} +{"label":"Lock, Stock and Two Smoking Barrels","description":"A fast paced British comedy about four friends who need to make a lot of cash quick after losing a sketchy poker match. Lots of British humor, off the wall characters, and a line up of unbelievable scenes put director Guy Ritchie on the map.","id":"100","runtime":105,"imdbId":"tt0120735","trailer":"http:\/\/www.youtube.com\/watch?v=h6hZkvrFIj0","version":216,"lastModified":"1299912750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb9\/4bc9031b017a3c57fe000bb9\/lock-stock-two-smoking-barrels-mid.jpg","studio":"SKA Films","genre":"Action","title":"Lock, Stock and Two Smoking Barrels","releaseDate":904262400000,"language":"en","tagline":"A Disgrace to Criminals Everywhere.","type":"Movie","_key":"1584"} +{"label":"Guy Ritchie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1db\/4ce129ea7b9aa168b40001db\/guy-ritchie-profile.jpg","version":109,"id":"956","lastModified":"1299959574000","name":"Guy Ritchie","type":"Person","_key":"1585"} +{"label":"Jason Flemyng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77b\/4cbe75547b9aa138d800177b\/jason-flemyng-profile.jpg","version":116,"birthday":"-103165200000","id":"973","birthplace":"Putney, London, England, UK ","lastModified":"1300015795000","name":"Jason Flemyng","type":"Person","_key":"1586"} +{"label":"Dexter Fletcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/316\/4ce1a16b7b9aa168b1000316\/dexter-fletcher-profile.jpg","version":35,"id":"974","lastModified":"1299491932000","name":"Dexter Fletcher","type":"Person","_key":"1587"} +{"label":"Nick Moran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/327\/4ce1a17a7b9aa168af000327\/nick-moran-profile.jpg","version":35,"id":"975","lastModified":"1299492122000","name":"Nick Moran","type":"Person","_key":"1588"} +{"label":"Jason Statham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/392\/4c438a015e73d60f36000392\/jason-statham-profile.jpg","biography":"Jason Statham (born 12 September 1967) is an English actor and martial artist, known for his roles in the Guy Ritchie crime films Lock, Stock and Two Smoking Barrels; Revolver; and Snatch. Statham appeared in supporting roles in several American films, such as The Italian Job, as well as playing the lead role in The Transporter, Crank, The Bank Job, War (opposite martial arts star Jet Li), and Death Race. Statham solidified his status as an action hero by appearing alongside established action f","version":188,"birthday":"85100400000","id":"976","birthplace":"London, England, UK","lastModified":"1299958408000","name":"Jason Statham","type":"Person","_key":"1589"} +{"label":"Steven Mackintosh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/312\/4ce1a2027b9aa168b3000312\/steven-mackintosh-profile.jpg","version":47,"id":"978","lastModified":"1299671668000","name":"Steven Mackintosh","type":"Person","_key":"1590"} +{"label":"Vinnie Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4ce020cf7b9aa168b30000eb\/vinnie-jones-profile.jpg","version":109,"id":"980","lastModified":"1299908551000","name":"Vinnie Jones","type":"Person","_key":"1591"} +{"label":"Sting","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f8\/4ce1a2127b9aa168b20002f8\/sting-profile.jpg","version":68,"id":"982","lastModified":"1299708374000","name":"Sting","type":"Person","_key":"1592"} +{"label":"Nicholas Rowe","version":23,"id":"984","lastModified":"1299492137000","name":"Nicholas Rowe","type":"Person","_key":"1593"} +{"label":"Nick Marcq","version":19,"id":"985","lastModified":"1299492775000","name":"Nick Marcq","type":"Person","_key":"1594"} +{"label":"Charles Forbes","version":19,"id":"986","lastModified":"1299492513000","name":"Charles Forbes","type":"Person","_key":"1595"} +{"label":"Lenny McLean","version":19,"id":"987","lastModified":"1299492920000","name":"Lenny McLean","type":"Person","_key":"1596"} +{"label":"Peter McNicholl","version":19,"id":"988","lastModified":"1299492775000","name":"Peter McNicholl","type":"Person","_key":"1597"} +{"label":"P.H. Moriarty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4c14c0825e73d64a20000077\/p-h-moriarty-profile.jpg","version":24,"id":"989","lastModified":"1299492863000","name":"P.H. Moriarty","type":"Person","_key":"1598"} +{"label":"Frank Harper","version":34,"id":"990","lastModified":"1299492309000","name":"Frank Harper","type":"Person","_key":"1599"} +{"label":"Steve Sweeney","version":21,"id":"991","lastModified":"1299492773000","name":"Steve Sweeney","type":"Person","_key":"1600"} +{"label":"Huggy Leaver","version":19,"id":"992","lastModified":"1299492773000","name":"Huggy Leaver","type":"Person","_key":"1601"} +{"label":"Tony McMahon","version":19,"id":"993","lastModified":"1299492772000","name":"Tony McMahon","type":"Person","_key":"1602"} +{"label":"Stephen Marcus","version":26,"id":"994","lastModified":"1299493022000","name":"Stephen Marcus","type":"Person","_key":"1603"} +{"label":"Vas Blackwood","version":30,"id":"995","lastModified":"1299492179000","name":"Vas Blackwood","type":"Person","_key":"1604"} +{"label":"Jake Abraham","version":21,"id":"4317","lastModified":"1299493588000","name":"Jake Abraham","type":"Person","_key":"1605"} +{"label":"Victor McGuire","version":24,"id":"4318","lastModified":"1299493741000","name":"Victor McGuire","type":"Person","_key":"1606"} +{"label":"Elsker Dig For Evigt","description":"A strong film about the power of coincidences, love, and the unpredictability of fate. A remake of this Danish film is planned by American director Zack Braff in the coming year.","id":"102","runtime":113,"imdbId":"tt0315543","homepage":"http:\/\/www.open-hearts.de\/","version":114,"lastModified":"1299913502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c11\/4bc90328017a3c57fe000c11\/elsker-dig-for-evigt-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"Elsker Dig For Evigt","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"1607"} +{"label":"Susanne Bier","version":42,"id":"1011","lastModified":"1299492809000","name":"Susanne Bier","type":"Person","_key":"1608"} +{"label":"Sonja Richter","version":19,"id":"1017","lastModified":"1299492963000","name":"Sonja Richter","type":"Person","_key":"1609"} +{"label":"Nikolaj Lie Kaas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1be\/4bd8cfed017a3c1bfb0001be\/nikolaj-lie-kaas-profile.jpg","version":62,"id":"1018","lastModified":"1299491918000","name":"Nikolaj Lie Kaas","type":"Person","_key":"1610"} +{"label":"Mads Mikkelsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4bd3d484017a3c534300008b\/mads-mikkelsen-profile.jpg","version":74,"birthday":"-129690000000","id":"1019","birthplace":"Copenhagen","lastModified":"1299490977000","name":"Mads Mikkelsen","type":"Person","_key":"1611"} +{"label":"Stine Bjerregaard","version":14,"id":"1021","lastModified":"1299493949000","name":"Stine Bjerregaard","type":"Person","_key":"1612"} +{"label":"Birthe Neumann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ea3\/4c10bd13017a3c7e92000ea3\/birthe-neumann-profile.jpg","version":18,"id":"4459","lastModified":"1299496049000","name":"Birthe Neumann","type":"Person","_key":"1613"} +{"label":"Niels Olsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a8d\/4c0a41f4017a3c3519000a8d\/niels-olsen-profile.jpg","version":28,"id":"1023","lastModified":"1299493163000","name":"Niels Olsen","type":"Person","_key":"1614"} +{"label":"Ulf Pilgaard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6d\/4c0ad3ee017a3c33d9000a6d\/ulf-pilgaard-profile.jpg","version":21,"id":"1024","lastModified":"1299492727000","name":"Ulf Pilgaard","type":"Person","_key":"1615"} +{"label":"Ronnie Lorenzen","version":14,"id":"1025","lastModified":"1299494085000","name":"Ronnie Lorenzen","type":"Person","_key":"1616"} +{"label":"Anders Nyborg","version":16,"id":"1026","lastModified":"1299493756000","name":"Anders Nyborg","type":"Person","_key":"1617"} +{"label":"Taxi Driver","description":"Robert De Niro stars as Travis Bickle in this oppressive psychodrama about a Vietnam veteran who rebels against the decadence and immorality of big city life in New York while working the nightshift as a taxi driver. ","id":"103","runtime":113,"imdbId":"tt0075314","trailer":"http:\/\/www.youtube.com\/watch?v=bqLyTdcMLhc","version":196,"lastModified":"1299912814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c32\/4bc9032e017a3c57fe000c32\/taxi-driver-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Crime","title":"Taxi Driver","releaseDate":192585600000,"language":"en","tagline":"On every street in every city, there's a nobody who dreams of being a somebody.","type":"Movie","_key":"1618"} +{"label":"Martin Scorsese","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cc\/4ccb4b017b9aa16ba00004cc\/martin-scorsese-profile.jpg","version":149,"id":"1032","lastModified":"1299951017000","name":"Martin Scorsese","type":"Person","_key":"1619"} +{"label":"Cybill Shepherd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fc\/4c9344e65e73d636970000fc\/cybill-shepherd-profile.jpg","version":37,"id":"1036","lastModified":"1300047940000","name":"Cybill Shepherd","type":"Person","_key":"1620"} +{"label":"Harvey Keitel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f3\/4bfacb51017a3c702a0004f3\/harvey-keitel-profile.jpg","biography":"Harvey Keitel is an American actor widely known for the \"tough-guy\" characters he portrays.\n\nKeitel was born in the New York City borough of Brooklyn, the son of Miriam and Harry Keitel, Jewish immigrants from Romania and Poland. His parents owned and ran a luncheonette and his father also worked as a hat maker.\nKeitel grew up in the Brighton Beach section of Brooklyn with his sister, Renee, and brother, Jerry. He attended Abraham Lincoln High School (New York). At the age of 16, he decided to j","version":203,"birthday":"-966906000000","id":"1037","birthplace":"Brooklyn, New York, USA","lastModified":"1299758324000","name":"Harvey Keitel","type":"Person","_key":"1621"} +{"label":"Jodie Foster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/146\/4bd72841017a3c21ec000146\/jodie-foster-profile.jpg","version":121,"id":"1038","lastModified":"1299835068000","name":"Jodie Foster","type":"Person","_key":"1622"} +{"label":"Peter Boyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c23a73b7b9aa1446a000012\/peter-boyle-profile.jpg","version":83,"id":"1039","lastModified":"1299671916000","name":"Peter Boyle","type":"Person","_key":"1623"} +{"label":"Leonard Harris","version":15,"id":"1040","lastModified":"1299582189000","name":"Leonard Harris","type":"Person","_key":"1624"} +{"label":"Diahnne Abbott","version":20,"id":"1041","lastModified":"1299582190000","name":"Diahnne Abbott","type":"Person","_key":"1625"} +{"label":"Frank Adu","version":19,"id":"1042","lastModified":"1299582190000","name":"Frank Adu","type":"Person","_key":"1626"} +{"label":"Gino Ardito","version":15,"id":"1043","lastModified":"1299582190000","name":"Gino Ardito","type":"Person","_key":"1627"} +{"label":"Run Lola Run","description":"Lola receives a phone call from her boyfriend Manny. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manny. Else, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.","id":"104","runtime":81,"imdbId":"tt0130827","trailer":"http:\/\/www.youtube.com\/watch?v=169","homepage":"http:\/\/www.lolarennt.de\/","version":164,"lastModified":"1300024173000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c70\/4bc90339017a3c57fe000c70\/lola-rennt-mid.jpg","studio":"X-Filme Creative Pool","genre":"Action","title":"Run Lola Run","releaseDate":903571200000,"language":"en","tagline":"Every second of every day you're faced with a decision that can change your life.","type":"Movie","_key":"1628"} +{"label":"Tom Tykwer","version":108,"id":"1071","lastModified":"1299491969000","name":"Tom Tykwer","type":"Person","_key":"1629"} +{"label":"Nina Petri","version":30,"id":"1082","lastModified":"1299493232000","name":"Nina Petri","type":"Person","_key":"1630"} +{"label":"Armin Rohde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/44c\/4d0b5c1c5e73d6469200044c\/armin-rohde-profile.jpg","version":58,"id":"1083","lastModified":"1299491981000","name":"Armin Rohde","type":"Person","_key":"1631"} +{"label":"Joachim Kr\u00f3l","version":43,"id":"1084","lastModified":"1299492862000","name":"Joachim Kr\u00f3l","type":"Person","_key":"1632"} +{"label":"Suzanne von Borsody","version":27,"id":"1085","lastModified":"1299492592000","name":"Suzanne von Borsody","type":"Person","_key":"1633"} +{"label":"Heino Ferch","version":62,"id":"1086","lastModified":"1299951044000","name":"Heino Ferch","type":"Person","_key":"1634"} +{"label":"Lars Rudolph","version":34,"id":"1087","lastModified":"1299492591000","name":"Lars Rudolph","type":"Person","_key":"1635"} +{"label":"Back to the Future","description":"Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - returning to 1985.","id":"105","runtime":111,"imdbId":"tt0088763","trailer":"http:\/\/www.youtube.com\/watch?v=yosuvf7Unmg","homepage":"http:\/\/www.bttfmovie.com\/","version":398,"lastModified":"1300028146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5aa\/4ca929df7b9aa17ace0005aa\/back-to-the-future-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Back to the Future","releaseDate":489196800000,"language":"en","tagline":"He's the only kid ever to get into trouble before he was born.","type":"Movie","_key":"1636"} +{"label":"Lea Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c8\/4ca9e9e37b9aa17acc0006c8\/lea-thompson-profile.jpg","version":80,"birthday":"-271040400000","id":"1063","birthplace":"Rochester, Minnesota, U.S.","lastModified":"1300013982000","name":"Lea Thompson","type":"Person","_key":"1637"} +{"label":"Thomas F. Wilson","version":52,"id":"1065","lastModified":"1300013982000","name":"Thomas F. Wilson","type":"Person","_key":"1638"} +{"label":"Claudia Wells","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01a\/4bcf3a26017a3c63eb00001a\/claudia-wells-profile.jpg","version":29,"id":"1066","lastModified":"1300013982000","name":"Claudia Wells","type":"Person","_key":"1639"} +{"label":"Marc McClure","version":48,"id":"1067","lastModified":"1300013982000","name":"Marc McClure","type":"Person","_key":"1640"} +{"label":"Wendie Jo Sperber","version":42,"id":"1068","lastModified":"1300013982000","name":"Wendie Jo Sperber","type":"Person","_key":"1641"} +{"label":"George DiCenzo","version":31,"id":"1069","lastModified":"1300013982000","name":"George DiCenzo","type":"Person","_key":"1642"} +{"label":"Frances Lee McCain","version":35,"id":"1070","lastModified":"1300013982000","name":"Frances Lee McCain","type":"Person","_key":"1643"} +{"label":"James Tolkan","version":52,"id":"1072","lastModified":"1300013982000","name":"James Tolkan","type":"Person","_key":"1644"} +{"label":"Harry Waters Jr.","version":27,"id":"1074","lastModified":"1300013982000","name":"Harry Waters Jr.","type":"Person","_key":"1645"} +{"label":"Predator","description":"Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of it's victims as it goes along. Occasionally seeing through it's eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.","id":"106","runtime":107,"imdbId":"tt0093773","trailer":"http:\/\/www.youtube.com\/watch?v=tKjs8aunBiQ","version":256,"lastModified":"1300024033000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88e\/4cb87e377b9aa138d900088e\/predator-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Predator","releaseDate":550454400000,"language":"en","tagline":"If it bleeds, we can kill it...","type":"Movie","_key":"1646"} +{"label":"John McTiernan","version":137,"id":"1090","lastModified":"1299752330000","name":"John McTiernan","type":"Person","_key":"1647"} +{"label":"Arnold Schwarzenegger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4c86431c7b9aa1545c000099\/arnold-schwarzenegger-profile.jpg","version":221,"birthday":"-707709600000","id":"1100","birthplace":"Thal, Styria, Austria","lastModified":"1300031271000","name":"Arnold Schwarzenegger","type":"Person","_key":"1648"} +{"label":"Carl Weathers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4c76cff65e73d6041800011e\/carl-weathers-profile.jpg","version":64,"id":"1101","lastModified":"1299491422000","name":"Carl Weathers","type":"Person","_key":"1649"} +{"label":"Elpidia Carrillo","version":34,"id":"1102","lastModified":"1299491738000","name":"Elpidia Carrillo","type":"Person","_key":"1650"} +{"label":"Bill Duke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4c2a427f7b9aa15e9c00001e\/bill-duke-profile.jpg","version":73,"id":"1103","lastModified":"1300031271000","name":"Bill Duke","type":"Person","_key":"1651"} +{"label":"Jesse Ventura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4bf84cc8017a3c4908000045\/jesse-ventura-profile.jpg","version":32,"id":"1104","lastModified":"1299797123000","name":"Jesse Ventura","type":"Person","_key":"1652"} +{"label":"Sonny Landham","version":25,"id":"1105","lastModified":"1299492399000","name":"Sonny Landham","type":"Person","_key":"1653"} +{"label":"Richard Chaves","version":23,"id":"1106","lastModified":"1299492860000","name":"Richard Chaves","type":"Person","_key":"1654"} +{"label":"R.G. Armstrong","version":42,"id":"1107","lastModified":"1299689186000","name":"R.G. Armstrong","type":"Person","_key":"1655"} +{"label":"Shane Black","version":61,"id":"1108","lastModified":"1300011880000","name":"Shane Black","type":"Person","_key":"1656"} +{"label":"Kevin Peter Hall","version":41,"id":"1109","lastModified":"1299582259000","name":"Kevin Peter Hall","type":"Person","_key":"1657"} +{"label":"Snatch","description":"The is second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast paced crazy character colliding filled film \u201cLock, Stock & Two Smoking Barrels.\u201d The film has two overlapping stories\u2013 one is the search for a stolen diamond and the other about a boxing promoter who\u2019s having trouble with a psychotic gangster.","id":"107","runtime":104,"imdbId":"tt0208092","trailer":"http:\/\/www.youtube.com\/watch?v=Q8jbt0wBkMI","version":286,"lastModified":"1300031180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d10\/4bc90353017a3c57fe000d10\/snatch-mid.jpg","studio":" Columbia Pictures Corporation","genre":"Action","title":"Snatch","releaseDate":976233600000,"language":"en","tagline":"Stealin' Stones and Breakin' Bones.","type":"Movie","_key":"1658"} +{"label":"Stephen Graham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4ce020c57b9aa168b00000eb\/stephen-graham-profile.jpg","version":61,"id":"1115","lastModified":"1300041054000","name":"Stephen Graham","type":"Person","_key":"1659"} +{"label":"Alan Ford","version":22,"id":"1116","lastModified":"1299492521000","name":"Alan Ford","type":"Person","_key":"1660"} +{"label":"Dennis Farina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e3\/4ce020537b9aa168b30000e3\/dennis-farina-profile.jpg","version":78,"id":"1117","lastModified":"1299958721000","name":"Dennis Farina","type":"Person","_key":"1661"} +{"label":"Rade Serbedzija","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4ce0207a7b9aa168b10000c8\/rade-serbedzija-profile.jpg","version":76,"id":"1118","lastModified":"1299491535000","name":"Rade Serbedzija","type":"Person","_key":"1662"} +{"label":"Robbie Gee","version":43,"id":"1119","lastModified":"1299908693000","name":"Robbie Gee","type":"Person","_key":"1663"} +{"label":"Lennie James","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e7\/4ce020ae7b9aa168b30000e7\/lennie-james-profile.jpg","version":38,"id":"1120","lastModified":"1299812363000","name":"Lennie James","type":"Person","_key":"1664"} +{"label":"Benicio Del Toro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e1\/4bf72cf2017a3c77260002e1\/benicio-del-toro-profile.jpg","version":116,"id":"1121","lastModified":"1299950743000","name":"Benicio Del Toro","type":"Person","_key":"1665"} +{"label":"Mike Reid","version":20,"id":"1122","lastModified":"1299492298000","name":"Mike Reid","type":"Person","_key":"1666"} +{"label":"Andy Beckwith","version":23,"id":"1123","lastModified":"1299492623000","name":"Andy Beckwith","type":"Person","_key":"1667"} +{"label":"William Beck","version":21,"id":"1124","lastModified":"1299492768000","name":"William Beck","type":"Person","_key":"1668"} +{"label":"Ewen Bremner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b3\/4bdf27ff017a3c35b40002b3\/ewen-bremner-profile.jpg","version":92,"id":"1125","lastModified":"1299581011000","name":"Ewen Bremner","type":"Person","_key":"1669"} +{"label":"Adam Fogerty","version":22,"id":"2302","lastModified":"1299493136000","name":"Adam Fogerty","type":"Person","_key":"1670"} +{"label":"Ade","version":19,"id":"2627","lastModified":"1299492912000","name":"Ade","type":"Person","_key":"1671"} +{"label":"Three Colours: Blue","description":"Three Colors: Blue is the first part of Kieslowski's trilogy on France's national motto: Liberty, Equality, and Fraternity. Blue is the story of Julie who loses her husband, an acclaimed European composer and her young daughter in a car accident. The film's theme of liberty is manifested in Julie's attempt to start life anew free of personal commitments, belongings grief and love. She intends to spiritually commit suicide by withdrawing from the world and live completely independently, anonymous","id":"108","runtime":100,"imdbId":"tt0108394","trailer":"http:\/\/www.youtube.com\/watch?v=2613","version":84,"lastModified":"1299814365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4c1519027b9aa105bf000039\/trois-couleurs-bleu-mid.jpg","studio":"CAB Productions","genre":"Drama","title":"Three Colours: Blue","releaseDate":726624000000,"language":"en","type":"Movie","_key":"1672"} +{"label":"Krzysztof Kieslowski","version":75,"id":"1126","lastModified":"1299491568000","name":"Krzysztof Kieslowski","type":"Person","_key":"1673"} +{"label":"Beno\u00eet R\u00e9gent","version":22,"id":"1138","lastModified":"1299493148000","name":"Beno\u00eet R\u00e9gent","type":"Person","_key":"1674"} +{"label":"Florence Pernel","version":17,"id":"1139","lastModified":"1299493045000","name":"Florence Pernel","type":"Person","_key":"1675"} +{"label":"Charlotte V\u00e9ry","version":23,"id":"1140","lastModified":"1299493162000","name":"Charlotte V\u00e9ry","type":"Person","_key":"1676"} +{"label":"H\u00e9l\u00e8ne Vincent","version":33,"id":"1141","lastModified":"1299492667000","name":"H\u00e9l\u00e8ne Vincent","type":"Person","_key":"1677"} +{"label":"Philippe Volter","version":23,"id":"1142","lastModified":"1299600547000","name":"Philippe Volter","type":"Person","_key":"1678"} +{"label":"Three Colours: White","description":"White is the second film from the trilogy by Kie\u015blowski. \u201cWhite\u201d meaning equality. Here Kie\u015blowski shows his talent at making comedies. It\u2019s about the relationship between Karol, a polish hair dresser, and the beautiful Dominique, who he\u2019s dependant on.","id":"109","runtime":91,"imdbId":"tt0111507","version":84,"lastModified":"1299810042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4d30f5335e73d63349000588\/trois-couleurs-blanc-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Comedy","title":"Three Colours: White","releaseDate":759542400000,"language":"en","type":"Movie","_key":"1679"} +{"label":"Zbigniew Zamachowski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4c7de2d05e73d648e1000061\/zbigniew-zamachowski-profile.jpg","version":27,"id":"1145","lastModified":"1299492478000","name":"Zbigniew Zamachowski","type":"Person","_key":"1680"} +{"label":"Janusz Gajos","version":28,"id":"1147","lastModified":"1299493037000","name":"Janusz Gajos","type":"Person","_key":"1681"} +{"label":"Jerzy Stuhr","version":24,"id":"1148","lastModified":"1299492911000","name":"Jerzy Stuhr","type":"Person","_key":"1682"} +{"label":"Aleksander Bardini","version":23,"id":"1149","lastModified":"1299493420000","name":"Aleksander Bardini","type":"Person","_key":"1683"} +{"label":"Three Colours: Red","description":"Red This is the third film from the trilogy by Kie\u015blowski. \u201cRed\u201d meaning brotherliness. Here Kie\u015blowski masterly tells strange coincidentally linked stories in the most packed work.","id":"110","runtime":99,"imdbId":"tt0111495","version":90,"lastModified":"1299807656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d34\/4bc90357017a3c57fe000d34\/trois-couleurs-rouge-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Three Colours: Red","releaseDate":768700800000,"language":"en","type":"Movie","_key":"1684"} +{"label":"Ir\u00e8ne Jacob","version":33,"id":"1350","lastModified":"1299492041000","name":"Ir\u00e8ne Jacob","type":"Person","_key":"1685"} +{"label":"Jean-Louis Trintignant","version":61,"id":"1352","lastModified":"1299928250000","name":"Jean-Louis Trintignant","type":"Person","_key":"1686"} +{"label":"Fr\u00e9d\u00e9rique Feder","version":18,"id":"1354","lastModified":"1299493454000","name":"Fr\u00e9d\u00e9rique Feder","type":"Person","_key":"1687"} +{"label":"Jean-Pierre Lorit","version":16,"id":"1356","lastModified":"1299493217000","name":"Jean-Pierre Lorit","type":"Person","_key":"1688"} +{"label":"Scarface","description":"A remake of a classic gangster film of the same name from Howard Hawks in 1932. Scarface tells the rise and fall of the gangster and drug dealer Tony Montana who came to Miami as a refugee from Cuba in the 1980\u2019s. A cult film and one of the most celebrated films of all time.","id":"111","runtime":170,"imdbId":"tt0086250","trailer":"http:\/\/www.youtube.com\/watch?v=ciF2CYn36gA","version":232,"lastModified":"1300023907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad7\/4d5043907b9aa13aaf00cad7\/scarface-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Scarface","releaseDate":439776000000,"language":"en","tagline":"He loved the American dream. With a vengeance.","type":"Movie","_key":"1689"} +{"label":"Brian De Palma","version":122,"id":"1150","lastModified":"1299612319000","name":"Brian De Palma","type":"Person","_key":"1690"} +{"label":"Al Pacino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/449\/4be05b6a017a3c35b9000449\/al-pacino-profile.jpg","version":204,"birthday":"-936842400000","id":"1158","birthplace":"New York City, New York, USA","lastModified":"1299779331000","name":"Al Pacino","type":"Person","_key":"1691"} +{"label":"Steven Bauer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc4\/4cfc080e5e73d62999002cc4\/steven-bauer-profile.jpg","version":51,"id":"1159","lastModified":"1299668917000","name":"Steven Bauer","type":"Person","_key":"1692"} +{"label":"Michelle Pfeiffer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4c1fd1b67b9aa130a60000b6\/michelle-pfeiffer-profile.jpg","version":115,"id":"1160","lastModified":"1299907036000","name":"Michelle Pfeiffer","type":"Person","_key":"1693"} +{"label":"Mary Elizabeth Mastrantonio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4bee54cf017a3c459300013f\/mary-elizabeth-mastrantonio-profile.jpg","version":54,"id":"1161","lastModified":"1300017805000","name":"Mary Elizabeth Mastrantonio","type":"Person","_key":"1694"} +{"label":"Miriam Colon","version":22,"id":"1163","lastModified":"1299492635000","name":"Miriam Colon","type":"Person","_key":"1695"} +{"label":"Paul Shenar","version":27,"id":"1165","lastModified":"1299492357000","name":"Paul Shenar","type":"Person","_key":"1696"} +{"label":"Harris Yulin","version":59,"id":"1166","lastModified":"1299692306000","name":"Harris Yulin","type":"Person","_key":"1697"} +{"label":"\u00c1ngel Salazar","version":18,"id":"1167","lastModified":"1299493500000","name":"\u00c1ngel Salazar","type":"Person","_key":"1698"} +{"label":"Arnaldo Santana","version":17,"id":"1168","lastModified":"1299493344000","name":"Arnaldo Santana","type":"Person","_key":"1699"} +{"label":"Pepe Serna","version":35,"id":"1169","lastModified":"1299492681000","name":"Pepe Serna","type":"Person","_key":"1700"} +{"label":"Michael P. Moran","version":22,"id":"1170","lastModified":"1299493467000","name":"Michael P. Moran","type":"Person","_key":"1701"} +{"label":"Al Israel","version":17,"id":"1171","lastModified":"1299493343000","name":"Al Israel","type":"Person","_key":"1702"} +{"label":"Dennis Holahan","version":17,"id":"1172","lastModified":"1299493343000","name":"Dennis Holahan","type":"Person","_key":"1703"} +{"label":"Mark Margolis","version":63,"id":"1173","lastModified":"1299752331000","name":"Mark Margolis","type":"Person","_key":"1704"} +{"label":"Italian for Beginners","description":"A romantic comedy told by ordinary people about happiness and unhappiness in love. This Dogma production was shown at the Berlinale in 2001 where it surprisingly won a silver medal.","id":"112","runtime":108,"imdbId":"tt0243862","version":101,"lastModified":"1299815848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6e\/4bc90360017a3c57fe000d6e\/italiensk-for-begyndere-mid.jpg","studio":"Zentropa Entertainments","genre":"Comedy","title":"Italian for Beginners","releaseDate":948067200000,"language":"en","type":"Movie","_key":"1705"} +{"label":"Lone Scherfig","version":28,"id":"1176","lastModified":"1299492695000","name":"Lone Scherfig","type":"Person","_key":"1706"} +{"label":"Peter Gantzler","version":29,"id":"1181","lastModified":"1299493680000","name":"Peter Gantzler","type":"Person","_key":"1707"} +{"label":"Sara Indrio Jensen","version":17,"id":"1182","lastModified":"1299492842000","name":"Sara Indrio Jensen","type":"Person","_key":"1708"} +{"label":"Ann Eleonora J\u00f8rgensen","version":16,"id":"1183","lastModified":"1299493652000","name":"Ann Eleonora J\u00f8rgensen","type":"Person","_key":"1709"} +{"label":"Anders W. Berthelsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/380\/4c1896ee5e73d64a24000380\/anders-w-berthelsen-profile.jpg","version":30,"id":"1184","lastModified":"1299493447000","name":"Anders W. Berthelsen","type":"Person","_key":"1710"} +{"label":"Anette St\u00f8velb\u00e6k","version":18,"id":"1185","lastModified":"1299493944000","name":"Anette St\u00f8velb\u00e6k","type":"Person","_key":"1711"} +{"label":"Lars Kaalund","version":17,"id":"1186","lastModified":"1299494350000","name":"Lars Kaalund","type":"Person","_key":"1712"} +{"label":"Karen-Lise Mynster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b0\/4c1893f45e73d64a220002b0\/karen-lise-mynster-profile.jpg","version":16,"id":"3880","lastModified":"1299494970000","name":"Karen-Lise Mynster","type":"Person","_key":"1713"} +{"label":"Rikke W\u00f6lck","version":15,"id":"3881","lastModified":"1299495624000","name":"Rikke W\u00f6lck","type":"Person","_key":"1714"} +{"label":"Bent Mejding","version":24,"id":"3882","lastModified":"1299496241000","name":"Bent Mejding","type":"Person","_key":"1715"} +{"label":"Elsebeth Steentoft","version":15,"id":"3883","lastModified":"1299495700000","name":"Elsebeth Steentoft","type":"Person","_key":"1716"} +{"label":"Lene Tiemroth","version":16,"id":"3884","lastModified":"1299495437000","name":"Lene Tiemroth","type":"Person","_key":"1717"} +{"label":"Claus Gerving","version":15,"id":"3885","lastModified":"1299496241000","name":"Claus Gerving","type":"Person","_key":"1718"} +{"label":"Jesper Christensen","version":53,"id":"2244","lastModified":"1299611133000","name":"Jesper Christensen","type":"Person","_key":"1719"} +{"label":"Carlo Barsotti","version":15,"id":"3887","lastModified":"1299494817000","name":"Carlo Barsotti","type":"Person","_key":"1720"} +{"label":"Alex Nyborg Madsen","version":15,"id":"3888","lastModified":"1299496240000","name":"Alex Nyborg Madsen","type":"Person","_key":"1721"} +{"label":"Steen Svare","version":15,"id":"3889","lastModified":"1299494817000","name":"Steen Svare","type":"Person","_key":"1722"} +{"label":"Susanne Oldenburg","version":15,"id":"3890","lastModified":"1299496240000","name":"Susanne Oldenburg","type":"Person","_key":"1723"} +{"label":"Martin Brygmann","version":19,"id":"3891","lastModified":"1299496240000","name":"Martin Brygmann","type":"Person","_key":"1724"} +{"label":"Spring, Summer, Fall, Winter... and Spring","description":"This South Korean film depicts the life of the ever overwhelming course of nature in the changing seasons.","id":"113","runtime":103,"imdbId":"tt0374546","homepage":"http:\/\/www.fruehling-sommer.de","version":152,"lastModified":"1299912761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d84\/4bc90364017a3c57fe000d84\/bom-yeoreum-gaeul-gyeoul-geurigo-bom-mid.jpg","studio":"LJ Film","genre":"Drama","title":"Spring, Summer, Fall, Winter... and Spring","releaseDate":1060819200000,"language":"en","type":"Movie","_key":"1725"} +{"label":"Kim Ki-Duk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc9\/4be55a65017a3c35bd000bc9\/kim-ki-duk-profile.jpg","version":106,"birthday":"-285037200000","id":"1188","lastModified":"1299492836000","name":"Kim Ki-Duk","type":"Person","_key":"1726"} +{"label":"Oh Young","version":19,"id":"16266","lastModified":"1299497808000","name":"Oh Young","type":"Person","_key":"1727"} +{"label":"Kim Young-min","version":13,"id":"4259","lastModified":"1299493844000","name":"Kim Young-min","type":"Person","_key":"1728"} +{"label":"Jae-kyeong Seo","version":16,"id":"4260","lastModified":"1299493582000","name":"Jae-kyeong Seo","type":"Person","_key":"1729"} +{"label":"Ha Yeo-jin","version":13,"id":"4261","lastModified":"1299495242000","name":"Ha Yeo-jin","type":"Person","_key":"1730"} +{"label":"Kim Jong-ho","version":13,"id":"4262","lastModified":"1299495242000","name":"Kim Jong-ho","type":"Person","_key":"1731"} +{"label":"Kim Jung-young","version":13,"id":"4263","lastModified":"1299495242000","name":"Kim Jung-young","type":"Person","_key":"1732"} +{"label":"Dae-han Ji","version":13,"id":"4264","lastModified":"1299494656000","name":"Dae-han Ji","type":"Person","_key":"1733"} +{"label":"Choi Min","version":15,"id":"4265","lastModified":"1299495242000","name":"Choi Min","type":"Person","_key":"1734"} +{"label":"Park Ji-a","version":16,"id":"4266","lastModified":"1299495242000","name":"Park Ji-a","type":"Person","_key":"1735"} +{"label":"Song Min-young","version":13,"id":"4267","lastModified":"1299495242000","name":"Song Min-young","type":"Person","_key":"1736"} +{"label":"Pretty Woman","description":"When millionaire wheeler-dealer Edward Lewis enters a business contract with Hollywood hooker Vivian Ward, he loses his heart in the bargain in this charming romantic comedy. After Edward hires Vivian as his date for a week and gives her a Cinderella makeover, she returns the favor by mellowing the hardnosed tycoon's outlook. Can the poor prostitute and the rich capitalist live happily ever after?","id":"114","runtime":119,"imdbId":"tt0100405","trailer":"http:\/\/www.youtube.com\/watch?v=-r8N6I4ENL4","version":144,"lastModified":"1300023819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1de\/4d12c3985e73d608420011de\/pretty-woman-mid.jpg","studio":"Buena Vista Pictures","genre":"Comedy","title":"Pretty Woman","releaseDate":638150400000,"language":"en","tagline":"Who knew it was so much fun to be a hooker?","type":"Movie","_key":"1737"} +{"label":"Garry Marshall","version":76,"id":"1201","lastModified":"1299491642000","name":"Garry Marshall","type":"Person","_key":"1738"} +{"label":"Julia Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4bf8bcce017a3c7033000023\/julia-roberts-profile.jpg","version":177,"id":"1204","lastModified":"1299958130000","name":"Julia Roberts","type":"Person","_key":"1739"} +{"label":"Richard Gere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/733\/4c0836b0017a3c3519000733\/richard-gere-profile.jpg","version":124,"id":"1205","lastModified":"1300029682000","name":"Richard Gere","type":"Person","_key":"1740"} +{"label":"Ralph Bellamy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4c49f5b67b9aa115fc00013f\/ralph-bellamy-profile.jpg","version":60,"id":"1208","lastModified":"1299492087000","name":"Ralph Bellamy","type":"Person","_key":"1741"} +{"label":"Jason Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/203\/4cd626fc7b9aa11b24000203\/jason-alexander-profile.jpg","version":93,"birthday":"-324262800000","id":"1206","birthplace":"Jay Scott Greenspan","lastModified":"1300030402000","name":"Jason Alexander","type":"Person","_key":"1742"} +{"label":"Hector Elizondo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4c864cb07b9aa1545d0000a3\/hector-elizondo-profile.jpg","version":75,"birthday":"-1042246800000","id":"1210","birthplace":"New York City, New York, USA","lastModified":"1300043352000","name":"Hector Elizondo","type":"Person","_key":"1743"} +{"label":"Larry Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70b\/4d1b00bb5e73d6083400b70b\/larry-miller-profile.jpg","version":72,"id":"1211","lastModified":"1300043353000","name":"Larry Miller","type":"Person","_key":"1744"} +{"label":"Laura San Giacomo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4c69946e7b9aa13920000062\/laura-san-giacomo-profile.jpg","version":36,"id":"1212","lastModified":"1299492573000","name":"Laura San Giacomo","type":"Person","_key":"1745"} +{"label":"Alex Hyde-White","version":31,"id":"747","lastModified":"1299721403000","name":"Alex Hyde-White","type":"Person","_key":"1746"} +{"label":"Elinor Donahue","version":20,"id":"1209","lastModified":"1299493096000","name":"Elinor Donahue","type":"Person","_key":"1747"} +{"label":"Amy Yasbeck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4ce57d187b9aa179bb000054\/amy-yasbeck-profile.jpg","version":48,"id":"1219","lastModified":"1300031487000","name":"Amy Yasbeck","type":"Person","_key":"1748"} +{"label":"Judith Baldwin","version":23,"id":"1220","lastModified":"1299493344000","name":"Judith Baldwin","type":"Person","_key":"1749"} +{"label":"The Big Lebowski","description":"\"Dude\" Lebowski, mistaken for millionaire Lebowski, seeks restitution for his ruined rug and enlists his bowling buddies to help get it.","id":"115","runtime":117,"imdbId":"tt0118715","trailer":"http:\/\/www.youtube.com\/watch?v=Dwi-c8oqsPI","version":256,"lastModified":"1300031301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4c5efe095e73d63a70000971\/the-big-lebowski-mid.jpg","studio":"PolyGram Filmed Entertainment","genre":"Action","title":"The Big Lebowski","releaseDate":889142400000,"language":"en","tagline":"The Dude abides.","type":"Movie","_key":"1750"} +{"label":"Joel Coen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/087\/4c91a6ac5e73d626f0000087\/joel-coen-profile.jpg","version":310,"id":"1223","lastModified":"1299950922000","name":"Joel Coen","type":"Person","_key":"1751"} +{"label":"John Goodman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/318\/4c4325bc7b9aa14595000318\/john-goodman-profile.jpg","version":196,"id":"1230","lastModified":"1299958229000","name":"John Goodman","type":"Person","_key":"1752"} +{"label":"Julianne Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/411\/4bfa9be8017a3c702a000411\/julianne-moore-profile.jpg","biography":"Birth Name:\nJulie Anne Smith\n

Height: 5' 4\" (1.63 m)\n<\/h5>\n
Date of Birth: 3 December 1960, Fayetteville. North Carolina. USA \n<\/h5>","version":169,"id":"1231","lastModified":"1300029682000","name":"Julianne Moore","type":"Person","_key":"1753"} +{"label":"David Huddleston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de1\/4cf9b15a7b9aa1514b001de1\/david-huddleston-profile.jpg","version":42,"id":"1232","lastModified":"1300041450000","name":"David Huddleston","type":"Person","_key":"1754"} +{"label":"Philip Seymour Hoffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a2\/4bf07986017a3c53100000a2\/philip-seymour-hoffman-profile.jpg","version":151,"id":"1233","lastModified":"1299958130000","name":"Philip Seymour Hoffman","type":"Person","_key":"1755"} +{"label":"Tara Reid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c7\/4bf0ed1b017a3c32150000c7\/tara-reid-profile.jpg","biography":"\u200bReid was born and raised in Wyckoff, New Jersey, the daughter of Donna and Tom Reid, both of whom were teachers and day-care center owners. She attended St. Elizabeth's Catholic Elementary, Dwight D. Eisenhower Middle School, Ramapo High School, John F. Kennedy High School in Granada Hills and graduated from Barnstable Academy, an alternative high school. She also attended Professional Children's School, i","version":94,"birthday":"184633200000","id":"1234","birthplace":"Wyckoff, New Jersey, USA","lastModified":"1299927569000","name":"Tara Reid","type":"Person","_key":"1756"} +{"label":"Philip Moon","version":27,"id":"1235","lastModified":"1299784528000","name":"Philip Moon","type":"Person","_key":"1757"} +{"label":"Mark Pellegrino","version":43,"id":"1236","lastModified":"1299831363000","name":"Mark Pellegrino","type":"Person","_key":"1758"} +{"label":"Flea","version":38,"id":"1237","lastModified":"1299784528000","name":"Flea","type":"Person","_key":"1759"} +{"label":"Torsten Voges","version":25,"id":"1238","lastModified":"1299784528000","name":"Torsten Voges","type":"Person","_key":"1760"} +{"label":"Jimmie Dale Gilmore","version":25,"id":"1239","lastModified":"1299784528000","name":"Jimmie Dale Gilmore","type":"Person","_key":"1761"} +{"label":"John Turturro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/164\/4bd70d6e017a3c21ea000164\/john-turturro-profile.jpg","version":165,"id":"1241","lastModified":"1299977632000","name":"John Turturro","type":"Person","_key":"1762"} +{"label":"James G. Hoosier","version":25,"id":"1242","lastModified":"1299784529000","name":"James G. Hoosier","type":"Person","_key":"1763"} +{"label":"Match Point","description":"Match Point is Woody Allen\u2019s satire of the British High Society and the ambition of a young tennis instructor to enter into it. Yet when he must decide between two women - one assuring him his place in high society, and the other that would bring him far from it - palms start to sweat and a dark psychological match in his head begins.","id":"116","runtime":124,"imdbId":"tt0416320","trailer":"http:\/\/www.youtube.com\/watch?v=_xegPAYN7HU","homepage":"http:\/\/www.matchpoint.dreamworks.com\/main.html","version":124,"lastModified":"1300023748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de3\/4bc90373017a3c57fe000de3\/match-point-mid.jpg","studio":"DreamWorks","genre":"Crime","title":"Match Point","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"1764"} +{"label":"Woody Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/121\/4bf01f4b017a3c3e88000121\/woody-allen-profile.jpg","biography":"Woody Allen (born Allen Stewart Konigsberg; December 1, 1935) is an American screenwriter, film director, actor, comedian, writer, musician, and playwright.\n\n\n\nAllen's distinctive films, which run the gamut from dramas to screwball sex comedies, have made him a notable American director. He is also distinguished by his rapid rate of production and his very large body of work. Allen writes and directs his movies and has also acted in the majority of them. For inspiration, Allen draws heavily on l","version":324,"birthday":"-1075683600000","id":"1243","birthplace":"New York City, New York, USA","lastModified":"1299913712000","name":"Woody Allen","type":"Person","_key":"1765"} +{"label":"Jonathan Rhys Meyers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9db\/4c0aa196017a3c29a60009db\/jonathan-rhys-meyers-profile.jpg","biography":"Jonathan Rhys Meyers (born 27 July 1977) is an Irish actor and model.\n\nHe is best known for his roles in the films Velvet Goldmine, Bend It Like Beckham, Woody Allen's Match Point and his television roles as Elvis Presley in the biographical miniseries Elvis, which earned him a Golden Globe for Best Actor, and as King Henry VIII in the historical drama The Tudors.\n\nIn two of his films, Velvet Goldmine and August Rush, he also took over singing parts.\n\nHe has been the face of several advertising","version":74,"birthday":"238806000000","id":"1244","birthplace":"Dublin, Ireland","lastModified":"1300020716000","name":"Jonathan Rhys Meyers","type":"Person","_key":"1766"} +{"label":"Scarlett Johansson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4bebd614017a3c37a1000126\/scarlett-johansson-profile.jpg","biography":"Scarlett Johansson is an American actress and singer. Johansson made her film debut in the 1994 film North and was subsequently nominated for the Independent Spirit Award for Best Female Lead for her performance in 1996's Manny & Lo.\nJohansson rose to fame with her roles in 1998's The Horse Whisperer and 2001's Ghost World. She made the transition to adult roles with her performance in Sofia Coppola's film Lost in Translation.\n\nJohansson was born in New York City. Her father, Karsten Johansson, ","version":163,"birthday":"469926000000","id":"1245","birthplace":"New York City, New York, USA","lastModified":"1299791693000","name":"Scarlett Johansson","type":"Person","_key":"1767"} +{"label":"Emily Mortimer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d9\/4bd6cdab017a3c21ea0000d9\/emily-mortimer-profile.jpg","version":101,"id":"1246","lastModified":"1299948834000","name":"Emily Mortimer","type":"Person","_key":"1768"} +{"label":"Brian Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f4\/4d7a39e45e73d628360005f4\/brian-cox-profile.jpg","version":196,"birthday":"-744343200000","id":"1248","birthplace":"Dundee, Scotland, UK","lastModified":"1299852520000","name":"Brian Cox","type":"Person","_key":"1769"} +{"label":"Penelope Wilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4bf98320017a3c702b0001df\/penelope-wilton-profile.jpg","version":29,"id":"1249","lastModified":"1299491501000","name":"Penelope Wilton","type":"Person","_key":"1770"} +{"label":"Alexander Armstrong","version":22,"id":"1250","lastModified":"1299493160000","name":"Alexander Armstrong","type":"Person","_key":"1771"} +{"label":"The Untouchables","description":"Young Treasury Agent Elliot Ness arrives in Chicago and is deternimed to take down Al Capone but it's not going to be easy, because Capone has the police in his pocket. Ness meets Jimmy Malone a veteran patrolman and probably the most honorable one in the force. He asks Malone to help him get Capone but Malone warns him that if he goes after Capone, he is going to war.","id":"117","runtime":119,"imdbId":"tt0094226","trailer":"http:\/\/www.youtube.com\/watch?v=xIF_WdPUBFo","version":164,"lastModified":"1299911533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4bcbcc3e017a3c0f3000000e\/the-untouchables-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Untouchables","releaseDate":549590400000,"language":"en","tagline":"Never stop fighting till the fight is done","type":"Movie","_key":"1772"} +{"label":"Kevin Costner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4bee5471017a3c458d0001ae\/kevin-costner-profile.jpg","version":145,"id":"1269","lastModified":"1299926049000","name":"Kevin Costner","type":"Person","_key":"1773"} +{"label":"Andy Garcia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ee8\/4c0003d2017a3c7037000ee8\/andy-garcia-profile.jpg","version":187,"birthday":"-433040400000","id":"1271","birthplace":"Havana, Cuba","lastModified":"1299946899000","name":"Andy Garcia","type":"Person","_key":"1774"} +{"label":"Charles Martin Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b7\/4c5e287c5e73d63a6f0007b7\/charles-martin-smith-profile.jpg","version":50,"id":"1270","lastModified":"1300013741000","name":"Charles Martin Smith","type":"Person","_key":"1775"} +{"label":"Richard Bradford","version":30,"id":"1272","lastModified":"1299492743000","name":"Richard Bradford","type":"Person","_key":"1776"} +{"label":"Jack Kehoe","version":19,"id":"1273","lastModified":"1299492916000","name":"Jack Kehoe","type":"Person","_key":"1777"} +{"label":"Brad Sullivan","version":27,"id":"1274","lastModified":"1299927194000","name":"Brad Sullivan","type":"Person","_key":"1778"} +{"label":"Billy Drago","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8bf\/4cab295a7b9aa17acc0008bf\/billy-drago-profile.jpg","version":50,"id":"1275","lastModified":"1299491392000","name":"Billy Drago","type":"Person","_key":"1779"} +{"label":"Vito D'Ambrosio","version":16,"id":"1277","lastModified":"1299492917000","name":"Vito D'Ambrosio","type":"Person","_key":"1780"} +{"label":"Steven Goldstein","version":18,"id":"1278","lastModified":"1299494012000","name":"Steven Goldstein","type":"Person","_key":"1781"} +{"label":"Peter Aylward","version":16,"id":"1279","lastModified":"1299493581000","name":"Peter Aylward","type":"Person","_key":"1782"} +{"label":"Don Harvey","version":37,"id":"1280","lastModified":"1299492801000","name":"Don Harvey","type":"Person","_key":"1783"} +{"label":"The Lord of the Rings Trilogy","description":"Director Peter Jackson\u2019s film trilogy based on the famous J.R.R Tolkien novels. ","id":"119","version":54,"lastModified":"1299807961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c38\/4be63466017a3c35bb000c38\/the-lord-of-the-rings-trilogy-mid.jpg","title":"The Lord of the Rings Trilogy","language":"en","type":"Movie","_key":"1784"} +{"label":"J.R.R. Tolkien's The Lord of the Rings","description":"An animated fantasy film from 1978 based on the first half of J.R.R Tolkien\u2019s Lord of the Rings novel. The film was mainly filmed using rotoscoping, meaning it was filmed in live action sequences with real actors and then each frame was individually animated.","id":"123","runtime":132,"imdbId":"tt0077869","version":93,"lastModified":"1299810965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1c\/4bc903b1017a3c57fe000f1c\/j-r-r-tolkien-s-the-lord-of-the-rings-mid.jpg","studio":"Fantasy Films","genre":"Animation","title":"J.R.R. Tolkien's The Lord of the Rings","releaseDate":279936000000,"language":"en","type":"Movie","_key":"1785"} +{"label":"Christopher Guard","version":18,"id":"16270","lastModified":"1299494353000","name":"Christopher Guard","type":"Person","_key":"1786"} +{"label":"William Squire","version":16,"id":"16271","lastModified":"1299495312000","name":"William Squire","type":"Person","_key":"1787"} +{"label":"Michael Scholes","version":13,"id":"16272","lastModified":"1299495241000","name":"Michael Scholes","type":"Person","_key":"1788"} +{"label":"John Hurt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/230\/4c2ceec97b9aa15e9c000230\/john-hurt-profile.jpg","version":245,"id":"5049","lastModified":"1299980428000","name":"John Hurt","type":"Person","_key":"1789"} +{"label":"Simon Chandler","version":32,"id":"16273","lastModified":"1299583266000","name":"Simon Chandler","type":"Person","_key":"1790"} +{"label":"Dominic Guard","version":18,"id":"16274","lastModified":"1299495978000","name":"Dominic Guard","type":"Person","_key":"1791"} +{"label":"Norman Bird","version":20,"id":"16275","lastModified":"1299494549000","name":"Norman Bird","type":"Person","_key":"1792"} +{"label":"Michael Graham Cox","version":16,"id":"16380","lastModified":"1299496186000","name":"Michael Graham Cox","type":"Person","_key":"1793"} +{"label":"David Buck","version":16,"id":"16381","lastModified":"1299494765000","name":"David Buck","type":"Person","_key":"1794"} +{"label":"Peter Woodthorpe","version":16,"id":"16382","lastModified":"1299497427000","name":"Peter Woodthorpe","type":"Person","_key":"1795"} +{"label":"Fraser Kerr","version":14,"id":"16383","lastModified":"1299497707000","name":"Fraser Kerr","type":"Person","_key":"1796"} +{"label":"Andr\u00e9 Morell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f7a\/4c0e5cad017a3c3519000f7a\/andre-morell-profile.jpg","version":44,"id":"10029","lastModified":"1299491624000","name":"Andr\u00e9 Morell","type":"Person","_key":"1797"} +{"label":"Ralph Bakshi","version":36,"id":"16384","lastModified":"1299493632000","name":"Ralph Bakshi","type":"Person","_key":"1798"} +{"label":"No End","description":"Taking place in a 1982 Poland a translator looses her husband and becomes a victim of her own sorrow. She looks to sex, her son in law, and hypnotism when she has nothing else in this time of martial law when Solidarity was banned. ","id":"124","runtime":109,"imdbId":"tt0086961","version":76,"lastModified":"1299912594000","genre":"Documentary","title":"No End","releaseDate":487814400000,"language":"en","type":"Movie","_key":"1799"} +{"label":"Gra\u017cyna Szapo\u0142owska","version":22,"id":"1384","lastModified":"1299493185000","name":"Gra\u017cyna Szapo\u0142owska","type":"Person","_key":"1800"} +{"label":"Maria Pakulnis","version":14,"id":"1385","lastModified":"1299493026000","name":"Maria Pakulnis","type":"Person","_key":"1801"} +{"label":"Jerzy Radziwi\u0142owicz","version":20,"id":"1386","lastModified":"1299493184000","name":"Jerzy Radziwi\u0142owicz","type":"Person","_key":"1802"} +{"label":"Artur Barcis","version":18,"id":"1387","lastModified":"1299494086000","name":"Artur Barcis","type":"Person","_key":"1803"} +{"label":"Krzysztof Krzemi\u0144ski","version":14,"id":"1391","lastModified":"1299494084000","name":"Krzysztof Krzemi\u0144ski","type":"Person","_key":"1804"} +{"label":"Dworzec","description":"Railway Station is a documentary about a Warsaw railway station Dworzec that was controversial and against the government at the time. The footage that exposed the monitoring of sales was seized by police","id":"125","runtime":13,"imdbId":"tt0080668","version":30,"lastModified":"1299531670000","studio":"WFD","genre":"Documentary","title":"Dworzec","releaseDate":315532800000,"language":"en","type":"Movie","_key":"1805"} +{"label":"Kr\u00f3tki dzie\u0144 pracy","description":"A polish film by Oscar nominated director Krzysztof Kie\u015blowski. His most famous films are \u2018Three Colors\u2019 and \u2018The Decalogue\u2019 and this one.","id":"126","runtime":73,"imdbId":"tt0082631","version":37,"lastModified":"1299531722000","genre":"Drama","title":"Kr\u00f3tki dzie\u0144 pracy","releaseDate":365904000000,"language":"en","type":"Movie","_key":"1806"} +{"label":"Hanna Krall","version":13,"id":"1396","lastModified":"1299492984000","name":"Hanna Krall","type":"Person","_key":"1807"} +{"label":"Wac\u0142aw Ulewicz","version":13,"id":"1393","lastModified":"1299493502000","name":"Wac\u0142aw Ulewicz","type":"Person","_key":"1808"} +{"label":"Miros\u0142aw Siedler","version":13,"id":"1394","lastModified":"1299493045000","name":"Miros\u0142aw Siedler","type":"Person","_key":"1809"} +{"label":"Pawe\u0142 Nowisz","version":13,"id":"1395","lastModified":"1299493258000","name":"Pawe\u0142 Nowisz","type":"Person","_key":"1810"} +{"label":"Blind Chance","description":"Witek runs after a train. Three variations follow on how such a seemingly banal incident could influence the rest of Witek's life.","id":"127","runtime":114,"imdbId":"tt0084549","version":113,"lastModified":"1299911723000","genre":"Drama","title":"Blind Chance","releaseDate":347155200000,"language":"en","type":"Movie","_key":"1811"} +{"label":"Bogus\u0142aw Linda","version":21,"id":"1402","lastModified":"1299493180000","name":"Bogus\u0142aw Linda","type":"Person","_key":"1812"} +{"label":"Zbigniew Zapasiewicz","version":21,"id":"1405","lastModified":"1299492796000","name":"Zbigniew Zapasiewicz","type":"Person","_key":"1813"} +{"label":"Marzena Tryba\u0142a","version":14,"id":"1408","lastModified":"1299493232000","name":"Marzena Tryba\u0142a","type":"Person","_key":"1814"} +{"label":"Adam Ferency","version":17,"id":"1409","lastModified":"1299493674000","name":"Adam Ferency","type":"Person","_key":"1815"} +{"label":"Tadeusz Lomnicki","version":17,"id":"1413","lastModified":"1299493250000","name":"Tadeusz Lomnicki","type":"Person","_key":"1816"} +{"label":"Princess Mononoke","description":"Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.","id":"128","runtime":134,"imdbId":"tt0119698","version":133,"lastModified":"1300023144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f32\/4bc903b3017a3c57fe000f32\/128-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Princess Mononoke","releaseDate":943574400000,"language":"en","tagline":"The Fate Of The World Rests On The Courage Of One Warrior.","type":"Movie","_key":"1817"} +{"label":"Yuriko Ishida","version":32,"id":"20330","lastModified":"1299494721000","name":"Yuriko Ishida","type":"Person","_key":"1818"} +{"label":"Y\u00fbko Tanaka","version":19,"id":"20331","lastModified":"1299492638000","name":"Y\u00fbko Tanaka","type":"Person","_key":"1819"} +{"label":"Kaoru Kobayashi","version":23,"id":"20332","lastModified":"1299494019000","name":"Kaoru Kobayashi","type":"Person","_key":"1820"} +{"label":"Masahiko Nishimura","version":16,"id":"20333","lastModified":"1299497706000","name":"Masahiko Nishimura","type":"Person","_key":"1821"} +{"label":"Tsunehiko Kamij\u00f4","version":20,"id":"20334","lastModified":"1299515518000","name":"Tsunehiko Kamij\u00f4","type":"Person","_key":"1822"} +{"label":"Tetsu Watanabe","version":24,"id":"20335","lastModified":"1299494996000","name":"Tetsu Watanabe","type":"Person","_key":"1823"} +{"label":"Mitsuru Sat\u00f4","version":15,"id":"20336","lastModified":"1299498519000","name":"Mitsuru Sat\u00f4","type":"Person","_key":"1824"} +{"label":"Akira Nagoya","version":15,"id":"20337","lastModified":"1299515511000","name":"Akira Nagoya","type":"Person","_key":"1825"} +{"label":"Akihiro Miwa","version":24,"id":"20338","lastModified":"1299495021000","name":"Akihiro Miwa","type":"Person","_key":"1826"} +{"label":"Mitsuko Mori","version":15,"id":"20339","lastModified":"1299498518000","name":"Mitsuko Mori","type":"Person","_key":"1827"} +{"label":"Hisaya Morishige","version":21,"id":"20340","lastModified":"1299496551000","name":"Hisaya Morishige","type":"Person","_key":"1828"} +{"label":"Takako Fuji","version":20,"id":"20329","lastModified":"1299495367000","name":"Takako Fuji","type":"Person","_key":"1829"} +{"label":"Spirited Away","description":"Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?","id":"129","runtime":125,"imdbId":"tt0245429","trailer":"http:\/\/www.youtube.com\/watch?v=_jGXcSBcvQQ&hd=1","version":175,"lastModified":"1300023109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4c\/4bc903b8017a3c57fe000f4c\/129-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Spirited Away","releaseDate":995587200000,"language":"en","tagline":"The tunnel led Chihiro to a mysterious town...","type":"Movie","_key":"1830"} +{"label":"Rumi H\u00eeragi","version":34,"id":"19587","lastModified":"1299494416000","name":"Rumi H\u00eeragi","type":"Person","_key":"1831"} +{"label":"Miyu Irino","version":24,"id":"19588","lastModified":"1299494449000","name":"Miyu Irino","type":"Person","_key":"1832"} +{"label":"Mari Natsuki","version":23,"id":"19589","lastModified":"1299497715000","name":"Mari Natsuki","type":"Person","_key":"1833"} +{"label":"Takashi Nait\u00f4","version":30,"id":"19590","lastModified":"1299493757000","name":"Takashi Nait\u00f4","type":"Person","_key":"1834"} +{"label":"Yasuko Sawaguchi","version":23,"id":"19591","lastModified":"1299495704000","name":"Yasuko Sawaguchi","type":"Person","_key":"1835"} +{"label":"Tatsuya Gashuin","version":30,"id":"19592","lastModified":"1299496363000","name":"Tatsuya Gashuin","type":"Person","_key":"1836"} +{"label":"Ryunosuke Kamiki","version":38,"id":"19593","lastModified":"1299495665000","name":"Ryunosuke Kamiki","type":"Person","_key":"1837"} +{"label":"Yumi Tamai","version":20,"id":"19594","lastModified":"1299515513000","name":"Yumi Tamai","type":"Person","_key":"1838"} +{"label":"Trois Couleurs","description":"Trois Couleurs is a film trilogy who\u2019s colors make up the films and the three colors of France \u2013 Blue, White and Red. With the colors meaning \u2013 freedom, equality and brotherliness. A film by Krzysztof Kie\u015blowski.","id":"131","version":99,"lastModified":"1299815697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e7\/4d1371145e73d608340016e7\/trois-couleurs-mid.jpg","title":"Trois Couleurs","language":"en","type":"Movie","_key":"1839"} +{"label":"Gimme Shelter","description":"Gimme Shelter is a film about the Rolling Stones live tour in 1969 and focusing on one concert that got out of hand. This documentary shows parts of the concerts, the violence, and the reaction after the fact by the band themselves.","id":"132","runtime":91,"imdbId":"tt0065780","version":144,"lastModified":"1299912707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6a\/4bc903bb017a3c57fe000f6a\/gimme-shelter-mid.jpg","genre":"Documentary","title":"Gimme Shelter","releaseDate":-12787200000,"language":"en","type":"Movie","_key":"1840"} +{"label":"Albert Maysles","version":20,"id":"1418","lastModified":"1299493327000","name":"Albert Maysles","type":"Person","_key":"1841"} +{"label":"David Maysles","version":14,"id":"1419","lastModified":"1299493580000","name":"David Maysles","type":"Person","_key":"1842"} +{"label":"Charlotte Zwerin","version":12,"id":"1477","lastModified":"1299493096000","name":"Charlotte Zwerin","type":"Person","_key":"1843"} +{"label":"Mick Jagger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e3\/4ccc38107b9aa16b9e0005e3\/mick-jagger-profile.jpg","version":37,"id":"1428","lastModified":"1299492745000","name":"Mick Jagger","type":"Person","_key":"1844"} +{"label":"Charlie Watts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/600\/4ccc38d07b9aa16b9c000600\/charlie-watts-profile.jpg","version":23,"id":"1429","lastModified":"1299492689000","name":"Charlie Watts","type":"Person","_key":"1845"} +{"label":"Bill Wyman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/605\/4ccc39427b9aa16b9c000605\/bill-wyman-profile.jpg","version":20,"id":"1431","lastModified":"1299492388000","name":"Bill Wyman","type":"Person","_key":"1846"} +{"label":"Mick Taylor","version":19,"id":"1432","lastModified":"1299493221000","name":"Mick Taylor","type":"Person","_key":"1847"} +{"label":"Marty Balin","version":13,"id":"1433","lastModified":"1299494217000","name":"Marty Balin","type":"Person","_key":"1848"} +{"label":"Sonny Barger","version":12,"id":"1435","lastModified":"1299494217000","name":"Sonny Barger","type":"Person","_key":"1849"} +{"label":"Melvin Belli","version":12,"id":"1436","lastModified":"1299493844000","name":"Melvin Belli","type":"Person","_key":"1850"} +{"label":"Dick Carter","version":12,"id":"1437","lastModified":"1299493844000","name":"Dick Carter","type":"Person","_key":"1851"} +{"label":"Jack Casady","version":13,"id":"1438","lastModified":"1299493844000","name":"Jack Casady","type":"Person","_key":"1852"} +{"label":"Mike Clarke","version":16,"id":"1439","lastModified":"1299494216000","name":"Mike Clarke","type":"Person","_key":"1853"} +{"label":"Sam Cutler","version":13,"id":"1440","lastModified":"1299494084000","name":"Sam Cutler","type":"Person","_key":"1854"} +{"label":"Spencer Dryden","version":13,"id":"1441","lastModified":"1299494216000","name":"Spencer Dryden","type":"Person","_key":"1855"} +{"label":"Jerry Garcia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/283\/4c4ceb657b9aa1237f000283\/jerry-garcia-profile.jpg","version":20,"id":"1442","lastModified":"1299494192000","name":"Jerry Garcia","type":"Person","_key":"1856"} +{"label":"Chris Hillman","version":12,"id":"1443","lastModified":"1299493844000","name":"Chris Hillman","type":"Person","_key":"1857"} +{"label":"Meredith Hunter","version":12,"id":"1444","lastModified":"1299494216000","name":"Meredith Hunter","type":"Person","_key":"1858"} +{"label":"Paul Kantner","version":13,"id":"1445","lastModified":"1299493844000","name":"Paul Kantner","type":"Person","_key":"1859"} +{"label":"Jorma Kaukonen","version":12,"id":"1446","lastModified":"1299494216000","name":"Jorma Kaukonen","type":"Person","_key":"1860"} +{"label":"Pete Kleinow","version":12,"id":"1447","lastModified":"1299493843000","name":"Pete Kleinow","type":"Person","_key":"1861"} +{"label":"Michael Lang","version":13,"id":"1448","lastModified":"1299494216000","name":"Michael Lang","type":"Person","_key":"1862"} +{"label":"Bernie Leadon","version":12,"id":"1449","lastModified":"1299494216000","name":"Bernie Leadon","type":"Person","_key":"1863"} +{"label":"Phil Lesh","version":14,"id":"1450","lastModified":"1299493843000","name":"Phil Lesh","type":"Person","_key":"1864"} +{"label":"Gram Parsons","version":12,"id":"1451","lastModified":"1299493843000","name":"Gram Parsons","type":"Person","_key":"1865"} +{"label":"Alan Passaro","version":12,"id":"1452","lastModified":"1299494215000","name":"Alan Passaro","type":"Person","_key":"1866"} +{"label":"Roland Schneider","version":14,"id":"1422","lastModified":"1299494217000","name":"Roland Schneider","type":"Person","_key":"1867"} +{"label":"Rock Scully","version":12,"id":"1454","lastModified":"1299493843000","name":"Rock Scully","type":"Person","_key":"1868"} +{"label":"Michael Shrieve","version":12,"id":"1455","lastModified":"1299494215000","name":"Michael Shrieve","type":"Person","_key":"1869"} +{"label":"Grace Slick","version":12,"id":"1456","lastModified":"1299494215000","name":"Grace Slick","type":"Person","_key":"1870"} +{"label":"Frank Terry","version":17,"id":"1457","lastModified":"1299493792000","name":"Frank Terry","type":"Person","_key":"1871"} +{"label":"Ike Turner","version":12,"id":"1458","lastModified":"1299493842000","name":"Ike Turner","type":"Person","_key":"1872"} +{"label":"Tina Turner","version":35,"id":"1459","lastModified":"1300031806000","name":"Tina Turner","type":"Person","_key":"1873"} +{"label":"Ian Stewart","version":12,"id":"1460","lastModified":"1299494215000","name":"Ian Stewart","type":"Person","_key":"1874"} +{"label":"Primary","description":"Primary is a documentary film about the primary elections between John F. Kennedy and Hubert Humphrey in 1960. Primary is the first documentary to use light equipment in order to follow their subjects in a more intimate filmmaking style. This unconventional way of filming created a new look for documentary films where the camera\u2019s lens was right in the middle of what ever drama was occuring.","id":"133","runtime":60,"imdbId":"tt0054205","version":58,"lastModified":"1299912689000","studio":"Drew Associates","genre":"Documentary","title":"Primary","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"1875"} +{"label":"Robert Drew","version":13,"id":"1420","lastModified":"1299493721000","name":"Robert Drew","type":"Person","_key":"1876"} +{"label":"John F. Kennedy","version":17,"id":"21111","lastModified":"1299493419000","name":"John F. Kennedy","type":"Person","_key":"1877"} +{"label":"Hubert Humphrey","version":12,"id":"21112","lastModified":"1299515567000","name":"Hubert Humphrey","type":"Person","_key":"1878"} +{"label":"O Brother, Where Art Thou?","description":"O\u2019Brother, Where Art Thou? Is a Coen Brother's film roughly based on Homer\u2019s \u201cOdyssey.\u201d Taking place in the deep south in the 1930\u2019s the film tells the story of three escaped prison workers and their journey for a buried treasure. On their journey they come across many comical characters and incredible situations.","id":"134","runtime":103,"imdbId":"tt0190590","trailer":"http:\/\/www.youtube.com\/watch?v=I1C2gCXo4Gs","version":146,"lastModified":"1299913207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f83\/4bc903c1017a3c57fe000f83\/o-brother-where-art-thou-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"O Brother, Where Art Thou?","releaseDate":958176000000,"language":"en","tagline":"They have a plan...but not a clue.","type":"Movie","_key":"1879"} +{"label":"Ethan Coen","version":351,"id":"1224","lastModified":"1299950922000","name":"Ethan Coen","type":"Person","_key":"1880"} +{"label":"George Clooney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/818\/4be1cfb6017a3c35b4000818\/george-clooney-profile.jpg","biography":"Born in Lexington, Kentucky, as son of Nick Clooney, a TV newscaster of many years, who hosted a talk show at Cincinnati and often invited George into the studios already at the age of 5. Avoiding competition with his father, he quit his job as broadcast journalist after a short time.\n\nStudied a few years at Northern Kentucky University. Failed to join the Cincinnati Reds baseball team. He came to acting when his cousin, Miguel Ferrer, got him a small part in a feature film. After that, he moved","version":274,"birthday":"-273200400000","id":"1461","birthplace":"Lexington","lastModified":"1300017804000","name":"George Clooney","type":"Person","_key":"1881"} +{"label":"Tim Blake Nelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c6\/4c95da687b9aa10d580002c6\/tim-blake-nelson-profile.jpg","version":74,"id":"1462","lastModified":"1299899625000","name":"Tim Blake Nelson","type":"Person","_key":"1882"} +{"label":"Holly Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32e\/4c95d9567b9aa10d5c00032e\/holly-hunter-profile.jpg","version":77,"id":"18686","lastModified":"1299491442000","name":"Holly Hunter","type":"Person","_key":"1883"} +{"label":"Chris Thomas King","version":22,"id":"1465","lastModified":"1299492945000","name":"Chris Thomas King","type":"Person","_key":"1884"} +{"label":"Charles Durning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/047\/4ca0bf557b9aa166d8000047\/charles-durning-profile.jpg","version":98,"id":"1466","lastModified":"1299927600000","name":"Charles Durning","type":"Person","_key":"1885"} +{"label":"Del Pentecost","version":17,"id":"1467","lastModified":"1299492773000","name":"Del Pentecost","type":"Person","_key":"1886"} +{"label":"J.R. Horne","version":17,"id":"1468","lastModified":"1299492630000","name":"J.R. Horne","type":"Person","_key":"1887"} +{"label":"Brian Reddy","version":17,"id":"1469","lastModified":"1299492919000","name":"Brian Reddy","type":"Person","_key":"1888"} +{"label":"Wayne Duvall","version":25,"id":"1470","lastModified":"1299491777000","name":"Wayne Duvall","type":"Person","_key":"1889"} +{"label":"Ed Gale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4bd3d910017a3c7fa8000005\/ed-gale-profile.jpg","version":51,"id":"1471","lastModified":"1299796949000","name":"Ed Gale","type":"Person","_key":"1890"} +{"label":"Ray McKinnon","version":41,"id":"1472","lastModified":"1299492457000","name":"Ray McKinnon","type":"Person","_key":"1891"} +{"label":"Daniel von Bargen","version":46,"id":"1473","lastModified":"1299491916000","name":"Daniel von Bargen","type":"Person","_key":"1892"} +{"label":"Mia Tate","version":18,"id":"1474","lastModified":"1299494091000","name":"Mia Tate","type":"Person","_key":"1893"} +{"label":"Musetta Vander","version":27,"id":"1475","lastModified":"1299492306000","name":"Musetta Vander","type":"Person","_key":"1894"} +{"label":"Christy Taylor","version":18,"id":"1476","lastModified":"1299492512000","name":"Christy Taylor","type":"Person","_key":"1895"} +{"label":"Millford Fortenberry","version":18,"id":"1478","lastModified":"1299492712000","name":"Millford Fortenberry","type":"Person","_key":"1896"} +{"label":"Frank Collison","version":29,"id":"1479","lastModified":"1299492137000","name":"Frank Collison","type":"Person","_key":"1897"} +{"label":"Quinn Gasaway","version":17,"id":"1480","lastModified":"1299492512000","name":"Quinn Gasaway","type":"Person","_key":"1898"} +{"label":"Lee Weaver","version":18,"id":"1481","lastModified":"1299492918000","name":"Lee Weaver","type":"Person","_key":"1899"} +{"label":"Don't Look Back","description":"Don\u2019t Look Back is a documentary of Bob Dylan\u2019s 1965 tour of England. The film begins with the famous and some say best music video of all times \"Subterranean Homesick Blues.\u201d The cameras follow Dylan as he experiments with the electric guitar for the first time.","id":"135","runtime":96,"imdbId":"tt0061589","version":110,"lastModified":"1299913395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f92\/4bc903c2017a3c57fe000f92\/don-t-look-back-mid.jpg","studio":"Docurama","genre":"Documentary","title":"Don't Look Back","releaseDate":-82944000000,"language":"en","type":"Movie","_key":"1900"} +{"label":"Bob Dylan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d5\/4bedfc13017a3c45960000d5\/bob-dylan-profile.jpg","version":40,"id":"1487","lastModified":"1299492438000","name":"Bob Dylan","type":"Person","_key":"1901"} +{"label":"Albert Grossman","version":14,"id":"1488","lastModified":"1299493220000","name":"Albert Grossman","type":"Person","_key":"1902"} +{"label":"Bob Neuwirth","version":13,"id":"1489","lastModified":"1299493233000","name":"Bob Neuwirth","type":"Person","_key":"1903"} +{"label":"Joan Baez","version":20,"id":"1490","lastModified":"1299493190000","name":"Joan Baez","type":"Person","_key":"1904"} +{"label":"Alan Price","version":13,"id":"1491","lastModified":"1299494469000","name":"Alan Price","type":"Person","_key":"1905"} +{"label":"Tito Burns","version":13,"id":"1492","lastModified":"1299494442000","name":"Tito Burns","type":"Person","_key":"1906"} +{"label":"Donovan","version":14,"id":"1493","lastModified":"1299493721000","name":"Donovan","type":"Person","_key":"1907"} +{"label":"Derroll Adams","version":13,"id":"1494","lastModified":"1299493724000","name":"Derroll Adams","type":"Person","_key":"1908"} +{"label":"D.A. Pennebaker","version":21,"id":"21113","lastModified":"1299498948000","name":"D.A. Pennebaker","type":"Person","_key":"1909"} +{"label":"Freaks","description":"Freaks lives up to it\u2019s name. This film follows the lives of various performers in a freak show. Besides the amazing display of human deformity the film tells the story about a trapeze artist woman who agrees to marry a popular but small man from the freak show. Yet the little man\u2019s friends don\u2019t think she really loves him and try to help him find the truth.","id":"136","runtime":64,"imdbId":"tt0022913","version":138,"lastModified":"1299912836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa3\/4bc903c6017a3c57fe000fa3\/freaks-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Freaks","releaseDate":-1194912000000,"language":"en","tagline":"The Love Story of a SIREN, a GIANT, and a DWARF!","type":"Movie","_key":"1910"} +{"label":"Tod Browning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4ceea4be5e73d653170000cc\/tod-browning-profile.jpg","version":34,"id":"1496","lastModified":"1299933567000","name":"Tod Browning","type":"Person","_key":"1911"} +{"label":"Edgar Allan Woolf","version":26,"id":"1505","lastModified":"1299492678000","name":"Edgar Allan Woolf","type":"Person","_key":"1912"} +{"label":"Leila Hyams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/281\/4c60590c7b9aa172da000281\/leila-hyams-profile.jpg","version":18,"id":"1507","lastModified":"1299492509000","name":"Leila Hyams","type":"Person","_key":"1913"} +{"label":"Olga Baclanova","version":17,"id":"1508","lastModified":"1299492860000","name":"Olga Baclanova","type":"Person","_key":"1914"} +{"label":"Roscoe Ates","version":16,"id":"1509","lastModified":"1299492897000","name":"Roscoe Ates","type":"Person","_key":"1915"} +{"label":"Henry Victor","version":19,"id":"1510","lastModified":"1299493415000","name":"Henry Victor","type":"Person","_key":"1916"} +{"label":"Rose Dione","version":14,"id":"1513","lastModified":"1299494016000","name":"Rose Dione","type":"Person","_key":"1917"} +{"label":"Daisy Hilton","version":14,"id":"1514","lastModified":"1299493214000","name":"Daisy Hilton","type":"Person","_key":"1918"} +{"label":"Violet Hilton","version":14,"id":"1515","lastModified":"1299494084000","name":"Violet Hilton","type":"Person","_key":"1919"} +{"label":"Schlitze","version":14,"id":"1516","lastModified":"1299493973000","name":"Schlitze","type":"Person","_key":"1920"} +{"label":"Josephine Joseph","version":14,"id":"1517","lastModified":"1299493408000","name":"Josephine Joseph","type":"Person","_key":"1921"} +{"label":"Koo Koo","version":14,"id":"1519","lastModified":"1299493009000","name":"Koo Koo","type":"Person","_key":"1922"} +{"label":"Johnny Eck","version":14,"id":"1522","lastModified":"1299493673000","name":"Johnny Eck","type":"Person","_key":"1923"} +{"label":"Peter Robinson","version":14,"id":"1523","lastModified":"1299493674000","name":"Peter Robinson","type":"Person","_key":"1924"} +{"label":"Prince Randian","version":14,"id":"1521","lastModified":"1299492977000","name":"Prince Randian","type":"Person","_key":"1925"} +{"label":"Daisy Earles","version":14,"id":"1512","lastModified":"1299494378000","name":"Daisy Earles","type":"Person","_key":"1926"} +{"label":"Harry Earles","version":16,"id":"1511","lastModified":"1299493972000","name":"Harry Earles","type":"Person","_key":"1927"} +{"label":"Frances O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/95b\/4be43649017a3c35b700095b\/frances-o-connor-profile.jpg","version":15,"id":"18348","lastModified":"1299496469000","name":"Frances O'Connor","type":"Person","_key":"1928"} +{"label":"Groundhog Day","description":"A comedy about an egocentric and sinister television weather reporter with a bad case of Deja-Vu. The weather reporter, Bill Murray, is sent to the famous Groundhog Day tradition in the small town of Punxsutawney were he unwillingly has to report on a little more than he expected. Let's just say he had to do a few retakes of the report.","id":"137","runtime":101,"imdbId":"tt0107048","trailer":"http:\/\/www.youtube.com\/watch?v=T_yDWQsrajA","version":247,"lastModified":"1300022834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8d\/4d0da1635e73d6370e000f8d\/groundhog-day-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Groundhog Day","releaseDate":729475200000,"language":"en","tagline":"He's having the worst day of his life... over, and over...","type":"Movie","_key":"1929"} +{"label":"Harold Ramis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04c\/4bf8543e017a3c490500004c\/harold-ramis-profile.jpg","biography":"

Nach dem Abschluss eines Studiums an der Washington University in St. Louis, Missouri arbeitete er einige Zeit in einer Nervenheilanstalt und sp\u00e4ter als Redakteur f\u00fcr die Zeitschrift Playboy. Zeitweise war er Mitglied der Theatergruppe The Second City.<\/P>\r\n

Bekannt ist Ramis vor allem f\u00fcr seine Rolle \u201eDr. Egon Spengler\u201c in den Filmen Ghostbusters \u2013 Die Geisterj\u00e4ger und Ghostbusters II, f\u00fcr die er auch mit Dan Aykroyd die Drehb\u00fccher schrieb.<\/P>\r\n

Ramis ist seit dem Jahr 1989 mit seiner f","version":162,"birthday":"-792464400000","id":"1524","birthplace":"Chicago, Illinois, United States","lastModified":"1299491586000","name":"Harold Ramis","type":"Person","_key":"1930"} +{"label":"Bill Murray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bc\/4bdd6a2e017a3c20cb0001bc\/bill-murray-profile.jpg","biography":"William \"Bill\" Murray is an American actor and comedian. He first gained national exposure on Saturday Night Live, and went on to star in a number of critically and commercially successful comedic films including Caddyshack (1980), Ghostbusters (1984), and Groundhog Day (1993). He gained additional critical acclaim later in his career, starring in Lost in Translation (2003), for which he was nominated for a","version":177,"birthday":"-608432400000","id":"1532","birthplace":"Wilmette, Illinois, USA","lastModified":"1299853530000","name":"Bill Murray","type":"Person","_key":"1931"} +{"label":"Andie MacDowell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/662\/4c083680017a3c7e8f000662\/andie-macdowell-profile.jpg","version":82,"id":"1533","lastModified":"1299837444000","name":"Andie MacDowell","type":"Person","_key":"1932"} +{"label":"Chris Elliott","version":35,"id":"1534","lastModified":"1299538946000","name":"Chris Elliott","type":"Person","_key":"1933"} +{"label":"Brian Doyle-Murray","version":38,"id":"1535","lastModified":"1299492353000","name":"Brian Doyle-Murray","type":"Person","_key":"1934"} +{"label":"Marita Geraghty","version":17,"id":"1536","lastModified":"1299493254000","name":"Marita Geraghty","type":"Person","_key":"1935"} +{"label":"Angela Paton","version":27,"id":"1537","lastModified":"1299492636000","name":"Angela Paton","type":"Person","_key":"1936"} +{"label":"Rick Ducommun","version":34,"id":"1538","lastModified":"1299491789000","name":"Rick Ducommun","type":"Person","_key":"1937"} +{"label":"Rick Overton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d43\/4cf5cc425e73d6299e000d43\/rick-overton-profile.jpg","version":32,"id":"1539","lastModified":"1299906497000","name":"Rick Overton","type":"Person","_key":"1938"} +{"label":"Robin Duke","version":18,"id":"1540","lastModified":"1299494263000","name":"Robin Duke","type":"Person","_key":"1939"} +{"label":"Carol Bivins","version":16,"id":"1541","lastModified":"1299493346000","name":"Carol Bivins","type":"Person","_key":"1940"} +{"label":"Willie Garson","version":46,"id":"1542","lastModified":"1299492105000","name":"Willie Garson","type":"Person","_key":"1941"} +{"label":"Scooter","version":16,"id":"1543","lastModified":"1299492928000","name":"Scooter","type":"Person","_key":"1942"} +{"label":"Dracula","description":"The legend of vampire Count Dracula begins here with this original 1931 Dracula film from Bela Lugosi.","id":"138","runtime":72,"imdbId":"tt0021814","trailer":"http:\/\/www.youtube.com\/watch?v=qEM8TiXczYM","version":133,"lastModified":"1299912904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd0\/4bc903cd017a3c57fe000fd0\/dracula-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"Dracula","releaseDate":-1230768000000,"language":"en","type":"Movie","_key":"1943"} +{"label":"Bela Lugosi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f9\/4be0bdc7017a3c35b90004f9\/bela-lugosi-profile.jpg","version":86,"birthday":"-2751757200000","id":"1547","birthplace":"Lugos, Austria-Hungary","lastModified":"1299975093000","name":"Bela Lugosi","type":"Person","_key":"1944"} +{"label":"Helen Chandler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9fc\/4be495bb017a3c35b70009fc\/helen-chandler-profile.jpg","version":18,"id":"1548","lastModified":"1299493207000","name":"Helen Chandler","type":"Person","_key":"1945"} +{"label":"David Manners","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a08\/4be46c4b017a3c35bb000a08\/david-manners-profile.jpg","version":19,"id":"2125","lastModified":"1299493247000","name":"David Manners","type":"Person","_key":"1946"} +{"label":"Dwight Frye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d28\/4be70e1a017a3c35b5000d28\/dwight-frye-profile.jpg","version":23,"id":"1549","lastModified":"1299492475000","name":"Dwight Frye","type":"Person","_key":"1947"} +{"label":"Edward Van Sloan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/535\/4bfab182017a3c7033000535\/edward-van-sloan-profile.jpg","version":24,"id":"1550","lastModified":"1299492234000","name":"Edward Van Sloan","type":"Person","_key":"1948"} +{"label":"Herbert Bunston","version":12,"id":"2126","lastModified":"1299494262000","name":"Herbert Bunston","type":"Person","_key":"1949"} +{"label":"Frances Dade","version":12,"id":"3947","lastModified":"1299494262000","name":"Frances Dade","type":"Person","_key":"1950"} +{"label":"Joan Standing","version":13,"id":"3948","lastModified":"1299494713000","name":"Joan Standing","type":"Person","_key":"1951"} +{"label":"Charles K. Gerrard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd2\/4be7874c017a3c35b9000cd2\/charles-k-gerrard-profile.jpg","version":16,"id":"3949","lastModified":"1299492357000","name":"Charles K. Gerrard","type":"Person","_key":"1952"} +{"label":"Mifunes Sidste Sang","description":"Mifune's Last Song is a humorous story about a yuppie from Copenhagen who is inconveniently confronted with his represses his past. This film from Kragh-Jacobsen is the third film to be filmed in the Dogma 95 style of filmmaking.","id":"139","runtime":98,"imdbId":"tt0164756","homepage":"http:\/\/www.dogme95.dk\/mifune\/forside\/forside.htm","version":52,"lastModified":"1299808448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd9\/4bc903ce017a3c57fe000fd9\/mifunes-sidste-sang-mid.jpg","genre":"Comedy","title":"Mifunes Sidste Sang","releaseDate":927763200000,"language":"en","type":"Movie","_key":"1953"} +{"label":"S\u00f8ren Kragh-Jacobsen","version":18,"id":"1558","lastModified":"1299493237000","name":"S\u00f8ren Kragh-Jacobsen","type":"Person","_key":"1954"} +{"label":"Iben Hjejle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d52\/4d142dbf5e73d60834001d52\/iben-hjejle-profile.jpg","version":33,"id":"1562","lastModified":"1299492376000","name":"Iben Hjejle","type":"Person","_key":"1955"} +{"label":"Jesper Asholt","version":18,"id":"1563","lastModified":"1299493536000","name":"Jesper Asholt","type":"Person","_key":"1956"} +{"label":"Sofie Gr\u00e5b\u00f8l","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/259\/4c1b34bf5e73d67562000259\/sofie-grabl-profile.jpg","version":19,"id":"1564","lastModified":"1299493735000","name":"Sofie Gr\u00e5b\u00f8l","type":"Person","_key":"1957"} +{"label":"Emil Tarding","version":13,"id":"1565","lastModified":"1299494511000","name":"Emil Tarding","type":"Person","_key":"1958"} +{"label":"Anders Hove","version":28,"id":"1566","lastModified":"1299492666000","name":"Anders Hove","type":"Person","_key":"1959"} +{"label":"Mette Bratlann","version":12,"id":"1567","lastModified":"1299494215000","name":"Mette Bratlann","type":"Person","_key":"1960"} +{"label":"Susanne Storm","version":12,"id":"1568","lastModified":"1299494215000","name":"Susanne Storm","type":"Person","_key":"1961"} +{"label":"Ellen Hillings\u00f8","version":14,"id":"1569","lastModified":"1299493842000","name":"Ellen Hillings\u00f8","type":"Person","_key":"1962"} +{"label":"Bad Education","description":"This Pedro Almod\u00f3var film explores the sexual misconduct in the Catholic Church in 1960\u2019s Spain. The film is about two boys who are mistreated in a Catholic school and the struggles they face later in life with their sexual identity and hatred for priests.","id":"140","runtime":106,"imdbId":"tt0275491","trailer":"http:\/\/www.youtube.com\/watch?v=2690","homepage":"http:\/\/www.lamalaeducacion.com","version":117,"lastModified":"1300022694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff3\/4bc903d2017a3c57fe000ff3\/la-mala-educacion-mid.jpg","studio":"El Deseo","genre":"Crime","title":"Bad Education","releaseDate":1084320000000,"language":"en","type":"Movie","_key":"1963"} +{"label":"Daniel Gim\u00e9nez Cacho","version":21,"id":"1603","lastModified":"1299917299000","name":"Daniel Gim\u00e9nez Cacho","type":"Person","_key":"1964"} +{"label":"Llu\u00eds Homar","version":27,"id":"1604","lastModified":"1299917299000","name":"Llu\u00eds Homar","type":"Person","_key":"1965"} +{"label":"Francisco Maestre","version":20,"id":"1605","lastModified":"1299917299000","name":"Francisco Maestre","type":"Person","_key":"1966"} +{"label":"Francisco Boira","version":21,"id":"1606","lastModified":"1299917299000","name":"Francisco Boira","type":"Person","_key":"1967"} +{"label":"Juan Fern\u00e1ndez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef6\/4d281a4e7b9aa134e0001ef6\/juan-fern-ndez-profile.jpg","version":40,"id":"1607","lastModified":"1299917299000","name":"Juan Fern\u00e1ndez","type":"Person","_key":"1968"} +{"label":"Nacho P\u00e9rez","version":16,"id":"1608","lastModified":"1299917299000","name":"Nacho P\u00e9rez","type":"Person","_key":"1969"} +{"label":"Ra\u00fal Garc\u00eda Forneiro","version":16,"id":"1609","lastModified":"1299917299000","name":"Ra\u00fal Garc\u00eda Forneiro","type":"Person","_key":"1970"} +{"label":"Alberto Ferreiro","version":17,"id":"1611","lastModified":"1299917300000","name":"Alberto Ferreiro","type":"Person","_key":"1971"} +{"label":"Donnie Darko","description":"A troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes, after narrowly escaping a bizarre accident.","id":"141","runtime":113,"imdbId":"tt0246578","trailer":"http:\/\/www.youtube.com\/watch?v=68Wel4ypljM","homepage":"http:\/\/www.donniedarko.com\/","version":341,"lastModified":"1300022604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92d\/4cb8baad7b9aa138d800092d\/donnie-darko-mid.jpg","studio":"Carnival Films","genre":"Drama","title":"Donnie Darko","releaseDate":979862400000,"language":"en","type":"Movie","_key":"1972"} +{"label":"Richard Kelly","version":54,"id":"1577","lastModified":"1299491891000","name":"Richard Kelly","type":"Person","_key":"1973"} +{"label":"Maggie Gyllenhaal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4bc9f516017a3c0e8f000010\/maggie-gyllenhaal-profile.jpg","version":96,"id":"1579","lastModified":"1300022219000","name":"Maggie Gyllenhaal","type":"Person","_key":"1974"} +{"label":"Holmes Osborne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a7\/4c95d43f7b9aa10d580002a7\/holmes-osborne-profile.jpg","version":46,"id":"1578","lastModified":"1299926961000","name":"Holmes Osborne","type":"Person","_key":"1975"} +{"label":"Daveigh Chase","version":35,"id":"1580","lastModified":"1299492076000","name":"Daveigh Chase","type":"Person","_key":"1976"} +{"label":"Arthur Taxier","version":19,"id":"1583","lastModified":"1299492641000","name":"Arthur Taxier","type":"Person","_key":"1977"} +{"label":"Mark Hoffman","version":18,"id":"1584","lastModified":"1299492783000","name":"Mark Hoffman","type":"Person","_key":"1978"} +{"label":"Patience Cleveland","version":19,"id":"1585","lastModified":"1299492403000","name":"Patience Cleveland","type":"Person","_key":"1979"} +{"label":"David St. James","version":20,"id":"1598","lastModified":"1299493121000","name":"David St. James","type":"Person","_key":"1980"} +{"label":"Jazzie Mahannah","version":18,"id":"1599","lastModified":"1299493352000","name":"Jazzie Mahannah","type":"Person","_key":"1981"} +{"label":"Jolene Purdy","version":17,"id":"20088","lastModified":"1299515558000","name":"Jolene Purdy","type":"Person","_key":"1982"} +{"label":"Beth Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/329\/4c95d4757b9aa10d59000329\/beth-grant-profile.jpg","version":78,"id":"5151","lastModified":"1300001180000","name":"Beth Grant","type":"Person","_key":"1983"} +{"label":"Jena Malone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f9\/4c95d3f87b9aa10d5b0002f9\/jena-malone-profile.jpg","version":60,"id":"20089","lastModified":"1299833672000","name":"Jena Malone","type":"Person","_key":"1984"} +{"label":"David Moreland","version":18,"id":"20090","lastModified":"1299496095000","name":"David Moreland","type":"Person","_key":"1985"} +{"label":"Noah Wyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/424\/4bfa71f4017a3c7031000424\/noah-wyle-profile.jpg","version":52,"id":"13526","lastModified":"1299925954000","name":"Noah Wyle","type":"Person","_key":"1986"} +{"label":"Kristina Malota","version":18,"id":"20091","lastModified":"1299497119000","name":"Kristina Malota","type":"Person","_key":"1987"} +{"label":"Marina Malota","version":18,"id":"20092","lastModified":"1299497119000","name":"Marina Malota","type":"Person","_key":"1988"} +{"label":"Katharine Ross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55d\/4c5ac12c7b9aa151f700055d\/katharine-ross-profile.jpg","version":44,"id":"9594","lastModified":"1299706853000","name":"Katharine Ross","type":"Person","_key":"1989"} +{"label":"Scotty Leavenworth","version":18,"id":"20093","lastModified":"1299495323000","name":"Scotty Leavenworth","type":"Person","_key":"1990"} +{"label":"Phyllis Lyons","version":24,"id":"10383","lastModified":"1299494850000","name":"Phyllis Lyons","type":"Person","_key":"1991"} +{"label":"Gary Lundy","version":19,"id":"20094","lastModified":"1299497119000","name":"Gary Lundy","type":"Person","_key":"1992"} +{"label":"Alex Greenwald","version":20,"id":"20095","lastModified":"1299497119000","name":"Alex Greenwald","type":"Person","_key":"1993"} +{"label":"Brokeback Mountain","description":"Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of \u201963. The two share a raw and powerful summer together that turns into a life long relationship conflicting with the lives they are supposed to live. ","id":"142","runtime":134,"imdbId":"tt0388795","trailer":"http:\/\/www.youtube.com\/watch?v=yPjMWNfxA0Y","homepage":"http:\/\/www.brokebackmountain.com","version":183,"lastModified":"1300022427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4bc903db017a3c57fe00102f\/brokeback-mountain-mid.jpg","studio":"Focus Features","genre":"Drama","title":"Brokeback Mountain","releaseDate":1134086400000,"language":"en","tagline":"Love is a force of nature.","type":"Movie","_key":"1994"} +{"label":"Ang Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/739\/4d2c9bd47b9aa11a62000739\/ang-lee-profile.jpg","version":94,"id":"1614","lastModified":"1299491621000","name":"Ang Lee","type":"Person","_key":"1995"} +{"label":"Heath Ledger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/171\/4bec0e48017a3c37ad000171\/heath-ledger-profile.jpg","biography":"Heath Andrew Ledger was an Australian television and film actor. After performing roles in Australian television and film during the 1990s, Ledger moved to the United States in 1998 to develop his film career. His work encompassed nineteen films, including 10 Things I Hate About You, The Patriot, Brokeback Mountain, and The Dark Knight. In addition to his acting, he produced and directed music videos and aspired to be a film director.\n\nHe died at the age of 28, from an accidental \"toxic combinat","version":92,"birthday":"292028400000","id":"1810","birthplace":"New York City, New York, USA","lastModified":"1300029683000","name":"Heath Ledger","type":"Person","_key":"1996"} +{"label":"Michelle Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07f\/4bd6ce27017a3c21f600007f\/michelle-williams-profile.jpg","version":80,"id":"1812","lastModified":"1300029682000","name":"Michelle Williams","type":"Person","_key":"1997"} +{"label":"Larry Reese","version":21,"id":"1814","lastModified":"1299493726000","name":"Larry Reese","type":"Person","_key":"1998"} +{"label":"Valerie Planche","version":21,"id":"1815","lastModified":"1299494075000","name":"Valerie Planche","type":"Person","_key":"1999"} +{"label":"Marty Antonini","version":21,"id":"1816","lastModified":"1299493223000","name":"Marty Antonini","type":"Person","_key":"2000"} +{"label":"Linda Cardellini","version":47,"id":"1817","lastModified":"1299971485000","name":"Linda Cardellini","type":"Person","_key":"2001"} +{"label":"Anna Faris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eb6\/4bfea236017a3c702d000eb6\/anna-faris-profile.jpg","version":126,"birthday":"218070000000","id":"1772","birthplace":"Baltimore, Maryland, USA","lastModified":"1299948651000","name":"Anna Faris","type":"Person","_key":"2002"} +{"label":"Kate Mara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11f\/4bd71092017a3c21e900011f\/kate-mara-profile.jpg","biography":"\u200bKate Mara (born February 27, 1983) is an American television and film actress. Beginning acting in her hometown of Bedford, New York, she moved from the stage to her first film, Random Hearts (1999). Her notable roles include appearances in the Academy Award-winning film Brokeback Mountain, playing the daughter of Heath Ledger's character, and on the Fox television series 24, as computer analyst Shari Roth","version":108,"birthday":"415148400000","id":"51072","birthplace":"Bedford, New York, USA","lastModified":"1299948834000","name":"Kate Mara","type":"Person","_key":"2003"} +{"label":"All Quiet on the Western Front","description":"A young soldier faces profound disillusionment in the soul-destroying horror of World War I. Together with several other young German soldiers, he experiences the horrors of war, such evil of which he had not conceived of when signing up to fight. They eventually become sad, tormented, and confused of their purpose.","id":"143","runtime":140,"imdbId":"tt0020629","trailer":"http:\/\/www.youtube.com\/watch?v=aiObc2XmVqw","version":173,"lastModified":"1300022371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c4b105c7b9aa1237c000008\/all-quiet-on-the-western-front-mid.jpg","studio":"Universal Pictures Corporation","genre":"Action","title":"All Quiet on the Western Front","releaseDate":-1252108800000,"language":"en","type":"Movie","_key":"2004"} +{"label":"Lewis Milestone","version":31,"id":"2000","lastModified":"1299927044000","name":"Lewis Milestone","type":"Person","_key":"2005"} +{"label":"Lew Ayres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f40\/4c7407f67b9aa13ab8000f40\/lew-ayres-profile.jpg","version":39,"id":"2007","lastModified":"1299927044000","name":"Lew Ayres","type":"Person","_key":"2006"} +{"label":"Arnold Lucy","version":14,"id":"2008","lastModified":"1299927044000","name":"Arnold Lucy","type":"Person","_key":"2007"} +{"label":"John Wray","version":21,"id":"2009","lastModified":"1299927044000","name":"John Wray","type":"Person","_key":"2008"} +{"label":"Louis Wolheim","version":19,"id":"2010","lastModified":"1299927044000","name":"Louis Wolheim","type":"Person","_key":"2009"} +{"label":"Ben Alexander","version":14,"id":"2011","lastModified":"1299927044000","name":"Ben Alexander","type":"Person","_key":"2010"} +{"label":"Scott Kolk","version":14,"id":"2012","lastModified":"1299927044000","name":"Scott Kolk","type":"Person","_key":"2011"} +{"label":"Owen Davis Jr.","version":14,"id":"2013","lastModified":"1299927044000","name":"Owen Davis Jr.","type":"Person","_key":"2012"} +{"label":"Walter Rogers","version":14,"id":"2014","lastModified":"1299927044000","name":"Walter Rogers","type":"Person","_key":"2013"} +{"label":"William Bakewell","version":24,"id":"2015","lastModified":"1299927044000","name":"William Bakewell","type":"Person","_key":"2014"} +{"label":"Slim Summerville","version":28,"id":"2016","lastModified":"1299927044000","name":"Slim Summerville","type":"Person","_key":"2015"} +{"label":"Zasu Pitts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/553\/4c6415bc7b9aa1775a000553\/zasu-pitts-profile.jpg","version":26,"id":"34746","lastModified":"1299927044000","name":"Zasu Pitts","type":"Person","_key":"2016"} +{"label":"Beryl Mercer","version":19,"id":"2018","lastModified":"1299927044000","name":"Beryl Mercer","type":"Person","_key":"2017"} +{"label":"Wings of Desire","description":"Wings of Desire is Wim Wender\u2019s artistically beautiful film about the lonely and immortal life of angles during a post-war Berlin. It\u2019s a poetic journey from the perspective of the angles of which one falls in love with a living woman and wants to become a mortal human thus giving up his heavenly life. Filmed in black and white and with a feeling of celebrating life.","id":"144","runtime":127,"imdbId":"tt0093191","homepage":"http:\/\/www.wim-wenders.com\/movies\/movies_spec\/wingsofdesire\/wingsofdesire.htm","version":140,"lastModified":"1299813323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/056\/4bc903e2017a3c57fe001056\/der-himmel-uber-berlin-mid.jpg","studio":"Road Movies Filmproduktion GmbH","genre":"Drama","title":"Wings of Desire","releaseDate":559353600000,"language":"en","type":"Movie","_key":"2018"} +{"label":"Wim Wenders","version":140,"id":"2303","lastModified":"1299689593000","name":"Wim Wenders","type":"Person","_key":"2019"} +{"label":"Bruno Ganz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4c49cb947b9aa116000000a7\/bruno-ganz-profile.jpg","version":86,"birthday":"-908244000000","id":"2310","birthplace":"Z\u00fcrich-Seebach, Switzerland ","lastModified":"1299958117000","name":"Bruno Ganz","type":"Person","_key":"2020"} +{"label":"Otto Sander","version":35,"id":"2311","lastModified":"1299492550000","name":"Otto Sander","type":"Person","_key":"2021"} +{"label":"Solveig Dommartin","version":29,"id":"2312","lastModified":"1299492474000","name":"Solveig Dommartin","type":"Person","_key":"2022"} +{"label":"Curt Bois","version":31,"id":"2313","lastModified":"1299492357000","name":"Curt Bois","type":"Person","_key":"2023"} +{"label":"Peter Falk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/198\/4c225a0b7b9aa13694000198\/peter-falk-profile.jpg","version":75,"birthday":"-1334710800000","id":"2314","lastModified":"1300048088000","name":"Peter Falk","type":"Person","_key":"2024"} +{"label":"Hans Martin Stier","version":23,"id":"2315","lastModified":"1299493500000","name":"Hans Martin Stier","type":"Person","_key":"2025"} +{"label":"Beatrice Manowski","version":23,"id":"2316","lastModified":"1299493735000","name":"Beatrice Manowski","type":"Person","_key":"2026"} +{"label":"Elmar Wilms","version":21,"id":"2317","lastModified":"1299494509000","name":"Elmar Wilms","type":"Person","_key":"2027"} +{"label":"Breaking The Waves","description":"Breaking the Waves is Lars von Tier\u2019s intimate story of love, loss, faith, and tragedy. Filmed in the Dogma 95 style; a woman tries to keep a relationship with her husband during hard times. The scenic imagery and excellent performances create a powerful film.","id":"145","runtime":159,"imdbId":"tt0115751","version":144,"lastModified":"1300022242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4bc903e4017a3c57fe001064\/breaking-the-waves-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"Breaking The Waves","releaseDate":820454400000,"language":"en","type":"Movie","_key":"2028"} +{"label":"Emily Watson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f5\/4ca34a9f7b9aa168d00002f5\/emily-watson-profile.jpg","version":78,"id":"1639","lastModified":"1299960741000","name":"Emily Watson","type":"Person","_key":"2029"} +{"label":"Katrin Cartlidge","version":33,"id":"1641","lastModified":"1299493050000","name":"Katrin Cartlidge","type":"Person","_key":"2030"} +{"label":"Adrian Rawlins","version":17,"id":"1643","lastModified":"1299493042000","name":"Adrian Rawlins","type":"Person","_key":"2031"} +{"label":"Jonathan Hackett","version":15,"id":"1644","lastModified":"1299494030000","name":"Jonathan Hackett","type":"Person","_key":"2032"} +{"label":"Sandra Voe","version":19,"id":"1645","lastModified":"1299493254000","name":"Sandra Voe","type":"Person","_key":"2033"} +{"label":"Mikkel Gaup","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4c83dfc55e73d664d6000115\/mikkel-gaup-profile.jpg","version":23,"birthday":"-61866000000","id":"1647","birthplace":"Alta, Norway","lastModified":"1299492867000","name":"Mikkel Gaup","type":"Person","_key":"2034"} +{"label":"Roef Ragas","version":15,"id":"1648","lastModified":"1299494509000","name":"Roef Ragas","type":"Person","_key":"2035"} +{"label":"Robert Robertson","version":15,"id":"1649","lastModified":"1299494390000","name":"Robert Robertson","type":"Person","_key":"2036"} +{"label":"Phil McCall","version":15,"id":"3913","lastModified":"1299494390000","name":"Phil McCall","type":"Person","_key":"2037"} +{"label":"Desmond Reilly","version":15,"id":"3914","lastModified":"1299494390000","name":"Desmond Reilly","type":"Person","_key":"2038"} +{"label":"Sarah Gudgeon","version":15,"id":"3915","lastModified":"1299494390000","name":"Sarah Gudgeon","type":"Person","_key":"2039"} +{"label":"Finlay Welsh","version":15,"id":"3916","lastModified":"1299494389000","name":"Finlay Welsh","type":"Person","_key":"2040"} +{"label":"David Gallacher","version":15,"id":"3917","lastModified":"1299494390000","name":"David Gallacher","type":"Person","_key":"2041"} +{"label":"Ray Jeffries","version":15,"id":"3918","lastModified":"1299494389000","name":"Ray Jeffries","type":"Person","_key":"2042"} +{"label":"Owen Kavanagh","version":15,"id":"3919","lastModified":"1299494389000","name":"Owen Kavanagh","type":"Person","_key":"2043"} +{"label":"Bob Docherty","version":15,"id":"3920","lastModified":"1299494389000","name":"Bob Docherty","type":"Person","_key":"2044"} +{"label":"David Bateson","version":16,"id":"3921","lastModified":"1299493418000","name":"David Bateson","type":"Person","_key":"2045"} +{"label":"Crouching Tiger, Hidden Dragon","description":"Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.","id":"146","runtime":120,"imdbId":"tt0190332","trailer":"http:\/\/www.youtube.com\/watch?v=oEaGsdiA0y0","version":273,"lastModified":"1300022164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/089\/4bc903ec017a3c57fe001089\/wo-hu-cang-long-mid.jpg","studio":"Sony Pictures Classics","genre":"Action","title":"Crouching Tiger, Hidden Dragon","releaseDate":962841600000,"language":"en","type":"Movie","_key":"2046"} +{"label":"Michelle Yeoh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05c\/4c20401f7b9aa1322700005c\/michelle-yeoh-profile.jpg","version":119,"id":"1620","lastModified":"1299490995000","name":"Michelle Yeoh","type":"Person","_key":"2047"} +{"label":"Chen Chang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd8\/4cf93bb37b9aa1514a001bd8\/chen-chang-profile.jpg","version":48,"id":"1622","lastModified":"1299491774000","name":"Chen Chang","type":"Person","_key":"2048"} +{"label":"Sihung Lung","version":35,"id":"1623","lastModified":"1299492252000","name":"Sihung Lung","type":"Person","_key":"2049"} +{"label":"Pei-pei Cheng","version":38,"id":"1624","lastModified":"1299492576000","name":"Pei-pei Cheng","type":"Person","_key":"2050"} +{"label":"Fa Zeng Li","version":26,"id":"1625","lastModified":"1299493254000","name":"Fa Zeng Li","type":"Person","_key":"2051"} +{"label":"Xian Gao","version":27,"id":"1626","lastModified":"1299492859000","name":"Xian Gao","type":"Person","_key":"2052"} +{"label":"Yan Hai","version":26,"id":"1627","lastModified":"1299492723000","name":"Yan Hai","type":"Person","_key":"2053"} +{"label":"De Ming Wang","version":26,"id":"1628","lastModified":"1299493197000","name":"De Ming Wang","type":"Person","_key":"2054"} +{"label":"Li Li","version":28,"id":"1629","lastModified":"1299493197000","name":"Li Li","type":"Person","_key":"2055"} +{"label":"The 400 Blows","description":"Intensely touching story of a misunderstood young adolescent who left without attention, delves into a life of petty crime.","id":"147","runtime":99,"imdbId":"tt0053198","version":181,"lastModified":"1300022094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b3\/4bc903f1017a3c57fe0010b3\/les-quatre-cent-coups-mid.jpg","studio":"Castleberg Productions","genre":"Drama","title":"The 400 Blows","releaseDate":-336528000000,"language":"en","tagline":"Angel faces hell-bent for violence.","type":"Movie","_key":"2056"} +{"label":"Fran\u00e7ois Truffaut","version":205,"id":"1650","lastModified":"1299491354000","name":"Fran\u00e7ois Truffaut","type":"Person","_key":"2057"} +{"label":"Jean-Pierre L\u00e9aud","version":61,"id":"1653","lastModified":"1299779860000","name":"Jean-Pierre L\u00e9aud","type":"Person","_key":"2058"} +{"label":"Albert R\u00e9my","version":20,"id":"1655","lastModified":"1299492916000","name":"Albert R\u00e9my","type":"Person","_key":"2059"} +{"label":"Georges Flamant","version":18,"id":"1658","lastModified":"1299492942000","name":"Georges Flamant","type":"Person","_key":"2060"} +{"label":"Patrick Auffay","version":17,"id":"1659","lastModified":"1299494493000","name":"Patrick Auffay","type":"Person","_key":"2061"} +{"label":"Robert Beauvais","version":17,"id":"1660","lastModified":"1299493944000","name":"Robert Beauvais","type":"Person","_key":"2062"} +{"label":"Yvonne Claudie","version":15,"id":"1661","lastModified":"1299493580000","name":"Yvonne Claudie","type":"Person","_key":"2063"} +{"label":"Pierre Repp","version":17,"id":"1662","lastModified":"1299493842000","name":"Pierre Repp","type":"Person","_key":"2064"} +{"label":"Guy Decomble","version":22,"id":"1656","lastModified":"1299494449000","name":"Guy Decomble","type":"Person","_key":"2065"} +{"label":"The Secret Life of Words","description":"A touching story of a deaf girl who is sent to an oil rig to take care of a man who has been blinded in a terrible accident. The girl has a special ability to communicate with the men on board and especially with her patient as they share intimate moments together that will change their lives forever.","id":"148","runtime":112,"imdbId":"tt0430576","trailer":"http:\/\/www.youtube.com\/watch?v=3","version":111,"lastModified":"1300021974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d26\/4d3fd6ee7b9aa15bb5001d26\/la-vida-secreta-de-las-palabras-mid.jpg","studio":"El Deseo","genre":"Drama","title":"The Secret Life of Words","releaseDate":1129852800000,"language":"en","type":"Movie","_key":"2066"} +{"label":"Danny Cunningham","version":21,"id":"1667","lastModified":"1299494059000","name":"Danny Cunningham","type":"Person","_key":"2067"} +{"label":"Emmanuel Idowu","version":15,"id":"1668","lastModified":"1299494515000","name":"Emmanuel Idowu","type":"Person","_key":"2068"} +{"label":"Dean Lennox Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ef\/4cef505f5e73d662500002ef\/dean-lennox-kelly-profile.jpg","version":20,"id":"1669","lastModified":"1299492718000","name":"Dean Lennox Kelly","type":"Person","_key":"2069"} +{"label":"Daniel Mays","version":50,"id":"1670","lastModified":"1299754926000","name":"Daniel Mays","type":"Person","_key":"2070"} +{"label":"Sverre Anker Ousdal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4bd5f047017a3c65800000e6\/sverre-anker-ousdal-profile.jpg","biography":"Sverre Anker Ousdal (born 18 July 1944) is a Norwegian actor born in Flekkefjord. His debut was in 1965 at Den Nationale Scene in Bergen. He was at the Oslo Nye Teater in the period 1967 to 1970, and at the National Theatre from 1970.","version":29,"birthday":"-803354400000","id":"1671","lastModified":"1299495021000","name":"Sverre Anker Ousdal","type":"Person","_key":"2071"} +{"label":"Reg Wilson","version":16,"id":"1672","lastModified":"1299494487000","name":"Reg Wilson","type":"Person","_key":"2072"} +{"label":"Peter Wright","version":15,"id":"1673","lastModified":"1299494476000","name":"Peter Wright","type":"Person","_key":"2073"} +{"label":"Julie Christie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42c\/4c59768c7b9aa151f300042c\/julie-christie-profile.jpg","version":78,"id":"1666","lastModified":"1300027316000","name":"Julie Christie","type":"Person","_key":"2074"} +{"label":"Akira","description":"Childhood friends Tetsuo and Kaneda are pulled into the post-apocalyptic underworld of Neo-Tokyo and forced to fight for their very survival. Kaneda is a bike gang leader, and Tetsuo is a member of a tough motorcycle crew who becomes involved in a covert government project called Akira. But a bloody battle ensues when Kaneda sets out to save his friend.","id":"149","runtime":124,"imdbId":"tt0094625","trailer":"http:\/\/www.youtube.com\/watch?v=KQnw35kR6Pw","homepage":"http:\/\/www.bandaivisual.co.jp\/akira\/","version":240,"lastModified":"1300021884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/230\/4bd1efa6017a3c63ea000230\/akira-mid.jpg","studio":"Akira Committee Production","genre":"Animation","title":"Akira","releaseDate":585014400000,"language":"en","tagline":"Neo-Tokyo is about to E.X.P.L.O.D.E.","type":"Movie","_key":"2075"} +{"label":"Mitsuo Iwata","version":21,"id":"1678","lastModified":"1299492800000","name":"Mitsuo Iwata","type":"Person","_key":"2076"} +{"label":"Nozomu Sasaki","version":14,"id":"1679","lastModified":"1299492573000","name":"Nozomu Sasaki","type":"Person","_key":"2077"} +{"label":"Mami Koyama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c3d\/4d2632aa7b9aa134cf000c3d\/mami-koyama-profile.jpg","version":22,"id":"1680","lastModified":"1299492730000","name":"Mami Koyama","type":"Person","_key":"2078"} +{"label":"Tessh\u00f4 Genda","version":24,"id":"1681","lastModified":"1299492255000","name":"Tessh\u00f4 Genda","type":"Person","_key":"2079"} +{"label":"Hiroshi \u00d4take","version":14,"id":"1682","lastModified":"1299494071000","name":"Hiroshi \u00d4take","type":"Person","_key":"2080"} +{"label":"K\u00f4ichi Kitamura","version":13,"id":"1683","lastModified":"1299493346000","name":"K\u00f4ichi Kitamura","type":"Person","_key":"2081"} +{"label":"Yuriko Fuchizaki","version":13,"id":"1684","lastModified":"1299493346000","name":"Yuriko Fuchizaki","type":"Person","_key":"2082"} +{"label":"Masaaki \u00d4kura","version":14,"id":"1685","lastModified":"1299493112000","name":"Masaaki \u00d4kura","type":"Person","_key":"2083"} +{"label":"Takeshi Kusao","version":29,"id":"1686","lastModified":"1299493244000","name":"Takeshi Kusao","type":"Person","_key":"2084"} +{"label":"Kazuhiro Kamifuji","version":13,"id":"1687","lastModified":"1299493345000","name":"Kazuhiro Kamifuji","type":"Person","_key":"2085"} +{"label":"Tatsuhiko Nakamura","version":15,"id":"1688","lastModified":"1299493344000","name":"Tatsuhiko Nakamura","type":"Person","_key":"2086"} +{"label":"Fukue It\u00f4","version":13,"id":"1689","lastModified":"1299493344000","name":"Fukue It\u00f4","type":"Person","_key":"2087"} +{"label":"48 Hrs.","description":"48 HRS. A film about a white cop who takes a black criminal out of jail to help him find a killer. They end up making a very comical pair.","id":"150","runtime":96,"imdbId":"tt0083511","trailer":"http:\/\/www.youtube.com\/watch?v=t7YqCfecDFo","version":158,"lastModified":"1300021782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a0\/4c5e035e5e73d63a6e0007a0\/48-hrs-mid.jpg","genre":"Action","title":"48 Hrs.","releaseDate":408326400000,"language":"en","type":"Movie","_key":"2088"} +{"label":"Walter Hill","version":117,"id":"1723","lastModified":"1300046365000","name":"Walter Hill","type":"Person","_key":"2089"} +{"label":"Nick Nolte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4c178f827b9aa108d8000142\/nick-nolte-profile.jpg","version":126,"id":"1733","lastModified":"1299880456000","name":"Nick Nolte","type":"Person","_key":"2090"} +{"label":"Annette O'Toole","version":34,"id":"1734","lastModified":"1300013575000","name":"Annette O'Toole","type":"Person","_key":"2091"} +{"label":"Frank McRae","version":41,"id":"1735","lastModified":"1299492002000","name":"Frank McRae","type":"Person","_key":"2092"} +{"label":"James Remar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4c741a597b9aa13ab700102c\/james-remar-profile.jpg","version":78,"id":"1736","lastModified":"1299787536000","name":"James Remar","type":"Person","_key":"2093"} +{"label":"David Patrick Kelly","version":29,"id":"1737","lastModified":"1300031271000","name":"David Patrick Kelly","type":"Person","_key":"2094"} +{"label":"Kerry Sherman","version":15,"id":"1738","lastModified":"1299493922000","name":"Kerry Sherman","type":"Person","_key":"2095"} +{"label":"James Keane","version":20,"id":"1739","lastModified":"1299493603000","name":"James Keane","type":"Person","_key":"2096"} +{"label":"Tara King","version":13,"id":"1740","lastModified":"1299493842000","name":"Tara King","type":"Person","_key":"2097"} +{"label":"Greta Blackburn","version":14,"id":"1741","lastModified":"1299493842000","name":"Greta Blackburn","type":"Person","_key":"2098"} +{"label":"Margot Rose","version":14,"id":"1742","lastModified":"1299494084000","name":"Margot Rose","type":"Person","_key":"2099"} +{"label":"Denise Crosby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/035\/4c829e935e73d66247000035\/denise-crosby-profile.jpg","version":29,"id":"1743","lastModified":"1299493133000","name":"Denise Crosby","type":"Person","_key":"2100"} +{"label":"Star Trek Collection","description":"Star Trek a futuristic science fiction franchise. With a space ship that can travel faster than the speed of light, galaxies to explore, and cool skin tight suits to beam up in, Star Trek has been, since the 1960\u2019s, a series of Films, various TV series, video games, the host of many spin-offs, and the possibly the first to use the cell phone. Star Trek fans are some of the most devout.","id":"151","version":226,"lastModified":"1300049488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83d\/4cc472035e73d6778400183d\/star-trek-collection-mid.jpg","title":"Star Trek Collection","language":"en","type":"Movie","_key":"2101"} +{"label":"Lost in Translation","description":"The widely successful sophomore film by Sofia Coppola. Set in Tokyo under the bustling city life and lights, the two main characters from different generations build a surprising friendship on the common bond that they don\u2019t have anything to do while they are in Tokyo. The film is a slow, dreamy and at times hilarious look at a relationship and the big city they move unknowingly.","id":"153","runtime":102,"imdbId":"tt0335266","trailer":"http:\/\/www.youtube.com\/watch?v=6wXjObmziEk","version":218,"lastModified":"1300032090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4d405e715e73d622cb0059bc\/lost-in-translation-mid.jpg","studio":"American Zoetrope","genre":"Comedy","title":"Lost in Translation","releaseDate":1062115200000,"language":"en","tagline":"Everyone wants to be found.","type":"Movie","_key":"2102"} +{"label":"Akiko Takeshita","version":16,"id":"1770","lastModified":"1299750349000","name":"Akiko Takeshita","type":"Person","_key":"2103"} +{"label":"Kazuyoshi Minamimagoe","version":16,"id":"1773","lastModified":"1299750349000","name":"Kazuyoshi Minamimagoe","type":"Person","_key":"2104"} +{"label":"Kazuko Shibata","version":15,"id":"1774","lastModified":"1299750349000","name":"Kazuko Shibata","type":"Person","_key":"2105"} +{"label":"Take","version":17,"id":"1775","lastModified":"1299750349000","name":"Take","type":"Person","_key":"2106"} +{"label":"Fumihiro Hayashi","version":16,"id":"1785","lastModified":"1299750349000","name":"Fumihiro Hayashi","type":"Person","_key":"2107"} +{"label":"Hiroko Kawasaki","version":16,"id":"1786","lastModified":"1299750349000","name":"Hiroko Kawasaki","type":"Person","_key":"2108"} +{"label":"Daikon","version":16,"id":"1787","lastModified":"1299750349000","name":"Daikon","type":"Person","_key":"2109"} +{"label":"The Dark Knight","description":"Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.","id":"155","runtime":152,"imdbId":"tt0468569","trailer":"http:\/\/www.youtube.com\/watch?v=GROmJWb-3wU","homepage":"http:\/\/thedarkknight.warnerbros.com\/dvdsite\/","version":638,"lastModified":"1300034650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e3\/4bc90422017a3c57fe0011e3\/the-dark-knight-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Dark Knight","releaseDate":1216339200000,"language":"en","tagline":"Why So Serious?","type":"Movie","_key":"2110"} +{"label":"Christian Bale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68a\/4c0835c8017a3c7e9200068a\/christian-bale-profile.jpg","biography":"Christian Charles Philip Bale is an English actor. In addition to starring roles in big budget Hollywood films, he has long been heavily involved in films produced by independent producers and art houses.

Bale first caught the public eye when he was cast in the starring role of Steven Spielberg's Empire of the Sun at the age of 13, playing an English boy who is separated from his parents and subsequently finds himself lost in a Japanese internment camp during World War II. Since then, he ","version":205,"birthday":"128732400000","id":"3894","birthplace":"Haverfordwest, Wales, UK","lastModified":"1300029682000","name":"Christian Bale","type":"Person","_key":"2111"} +{"label":"Eric Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4bddcacd017a3c35bf000044\/eric-roberts-profile.jpg","version":155,"id":"21315","lastModified":"1299907819000","name":"Eric Roberts","type":"Person","_key":"2112"} +{"label":"Michael Caine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4bd8a872017a3c1bfb00019f\/michael-caine-profile.jpg","biography":"Sir Michael Caine is an English film actor. He became known for several notable critically acclaimed performances, particularly in films such as Zulu (1964), The Italian Job (1969), Get Carter (1971), Educating Rita (1983) and more recently Batman Begins and The Dark Knight. Caine was knighted in 2000 by Queen Elizabeth II, in recognition of his contribution to cinema.\n\nCaine was born Maurice Joseph Micklewhite in Rotherhithe, South East London, the son of Ellen Frances Marie, a cook and charlad","version":332,"birthday":"-1161392400000","id":"3895","birthplace":"London, United Kingdom","lastModified":"1300015699000","name":"Michael Caine","type":"Person","_key":"2113"} +{"label":"Aaron Eckhart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16b\/4bec0d1c017a3c37ad00016b\/aaron-eckhart-profile.jpg","biography":"Aaron Edward Eckhart is an American film and stage actor. Born in California, he moved to England at 13 when his father relocated the family. Several years later, he began his acting career performing in school plays. In 1994, he graduated from Brigham Young University with a Bachelor of Fine Arts degree in film. For much of the mid-1990s, he lived in New York City as a struggling, unemployed actor. In 2000, Eckhart gained wide recognition as George in Steven Soderbergh's critically acclaimed fi","version":106,"birthday":"-57027600000","id":"6383","birthplace":"Cupertino, California, USA","lastModified":"1299823739000","name":"Aaron Eckhart","type":"Person","_key":"2114"} +{"label":"Michael Jai White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d2\/4c06c5a1017a3c35190004d2\/michael-jai-white-profile.jpg","biography":"Michael Jai White<\/SPAN><\/B> (born November 10, 1967) is an American actor and professional martial artist who has appeared in numerous films and television series. He is the first African American to portray a major comic book superhero in a major motion picture, having starred as Al Simmons, the protagonist in the 1997 film Spawn<\/I>. Donald Frank \"Don\" Cheadle, Jr.<\/STRONG><\/SPAN>Alan Arkin is an Academy
Award<\/a>-winning American actor who is also an acclaimed director, producer, author, singer and composer.\n\nHe\n was born Alan Wolf Arkin on March 26, 1934, in Brooklyn, New York, into\n a family of Jewish intellectuals from Russia and Germany. In 1946 the \nArkins moved from Brooklyn to Los Angeles, California. His father, David\n Arkin, was an artist and writer, who worked as a teacher, and lost his \njob for merely ref","version":120,"birthday":"-1128819600000","id":"1903","birthplace":"New York City, New York, USA","lastModified":"1299491271000","name":"Alan Arkin","type":"Person","_key":"2198"} +{"label":"Vincent Price","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/273\/4bf199e0017a3c3213000273\/vincent-price-profile.jpg","version":138,"birthday":"-1849309200000","id":"1905","lastModified":"1300048503000","name":"Vincent Price","type":"Person","_key":"2199"} +{"label":"Kathy Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a99\/4c70dac77b9aa13ab9000a99\/kathy-baker-profile.jpg","version":65,"id":"1907","lastModified":"1300015699000","name":"Kathy Baker","type":"Person","_key":"2200"} +{"label":"Robert Oliveri","version":30,"id":"1908","lastModified":"1299773035000","name":"Robert Oliveri","type":"Person","_key":"2201"} +{"label":"Conchata Ferrell","version":39,"id":"1909","lastModified":"1299748420000","name":"Conchata Ferrell","type":"Person","_key":"2202"} +{"label":"Caroline Aaron","version":32,"id":"1910","lastModified":"1299491961000","name":"Caroline Aaron","type":"Person","_key":"2203"} +{"label":"Dick Anthony Williams","version":27,"id":"1911","lastModified":"1299493275000","name":"Dick Anthony Williams","type":"Person","_key":"2204"} +{"label":"O-Lan Jones","version":22,"id":"1912","lastModified":"1299612245000","name":"O-Lan Jones","type":"Person","_key":"2205"} +{"label":"Susan Blommaert","version":16,"id":"1913","lastModified":"1299492915000","name":"Susan Blommaert","type":"Person","_key":"2206"} +{"label":"Linda Perri","version":15,"id":"1914","lastModified":"1299493325000","name":"Linda Perri","type":"Person","_key":"2207"} +{"label":"John Davidson","version":22,"id":"1915","lastModified":"1299493680000","name":"John Davidson","type":"Person","_key":"2208"} +{"label":"Biff Yeager","version":22,"id":"1916","lastModified":"1299493644000","name":"Biff Yeager","type":"Person","_key":"2209"} +{"label":"Ocean's Twelve","description":"Danny Ocean reunites with his old flame and the rest of his merry band of thieves in a caper concerning three huge heists in Rome, Paris and Amsterdam. But Europol agent Isabel Lahiri is hot on their heels.","id":"163","runtime":125,"imdbId":"tt0349903","trailer":"http:\/\/www.youtube.com\/watch?v=Y17X5BSrCx4","homepage":"http:\/\/oceans12.warnerbros.com\/","version":282,"lastModified":"1300020954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0a\/4c09ada9017a3c7e86000a0a\/ocean-s-twelve-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Ocean's Twelve","releaseDate":1102636800000,"language":"en","tagline":"Twelve is the new eleven.","type":"Movie","_key":"2210"} +{"label":"Catherine Zeta-Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4bdaa3da017a3c5d8900002c\/catherine-zeta-jones-profile.jpg","version":89,"birthday":"-8470800000","id":"1922","birthplace":"Swansea, West Glamorgan, Wales, UK","lastModified":"1299959190000","name":"Catherine Zeta-Jones","type":"Person","_key":"2211"} +{"label":"Robbie Coltrane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d56\/4be6d414017a3c35bd000d56\/robbie-coltrane-profile.jpg","biography":"Robbie Coltrane, is a Scottish actor, comedian and author. He is known both for his role as Dr Eddie \"Fitz\" Fitzgerald in the British TV series Cracker and as Rubeus Hagrid in the Harry Potter films.\n\nColtrane was born Anthony Robert McMillan in Rutherglen, South Lanarkshire, the son of Jean McMillan Ross, a teacher and pianist, and Ian Baxter McMillan, a general practitioner who also served as a forensic police surgeon. He has an older sister, Annie, and a late younger sister, Jane.\n\nColtrane m","version":205,"birthday":"-623552400000","id":"1923","birthplace":"Rutherglen, South Lanarkshire, Scotland","lastModified":"1299859150000","name":"Robbie Coltrane","type":"Person","_key":"2212"} +{"label":"Jeroen Krabb\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/299\/4c7b7c377b9aa176be000299\/jeroen-krabbe-profile.jpg","version":76,"birthday":"-809143200000","id":"1924","birthplace":"Amsterdam, Noord-Holland, Netherlands","lastModified":"1299492174000","name":"Jeroen Krabb\u00e9","type":"Person","_key":"2213"} +{"label":"Vincent Cassel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e3\/4bf7b96b017a3c77260003e3\/vincent-cassel-profile.jpg","version":149,"birthday":"-98067600000","id":"1925","birthplace":"Paris, France","lastModified":"1299965300000","name":"Vincent Cassel","type":"Person","_key":"2214"} +{"label":"Eddie Izzard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f3\/4c8cdb105e73d6068c0003f3\/eddie-izzard-profile.jpg","version":100,"birthday":"-249267600000","id":"1926","birthplace":"Aden, Yemen","lastModified":"1299581283000","name":"Eddie Izzard","type":"Person","_key":"2215"} +{"label":"Cherry Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/586\/4cbdc19c7b9aa138d6001586\/cherry-jones-profile.jpg","version":51,"id":"1956","lastModified":"1299927515000","name":"Cherry Jones","type":"Person","_key":"2216"} +{"label":"Albert Finney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4bca519c017a3c0e960000a4\/albert-finney-profile.jpg","biography":"

Albert Finney came from the theatre, where he was especially successful in plays of William Shakespeare<\/a>, to the movies. There he became a leading figure of the young Free Cinema. His debut<\/a> in cinema was in 1960 with The Entertainer<\/a> (1960) of Tony Richardson<\/a>\n who had directed him also in th","version":107,"birthday":"-1061859600000","id":"3926","birthplace":"Salford, Greater Manchester, England, UK","lastModified":"1299748420000","name":"Albert Finney","type":"Person","_key":"2217"} +{"label":"Breakfast at Tiffany's","description":"fortune hunter Holly Golightly finds herself captivated by aspiring writer Paul Varjak, who's moved into her building on a wealthy woman's dime. As romance blooms between Paul and Holly, Doc Golightly shows up on the scene, revealing Holly's past.","id":"164","runtime":110,"imdbId":"tt0054698","trailer":"http:\/\/www.youtube.com\/watch?v=urQVzgEO_w8","version":168,"lastModified":"1300020873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38a\/4bc9046e017a3c57fe00138a\/breakfast-at-tiffany-s-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Breakfast at Tiffany's","releaseDate":-260064000000,"language":"en","tagline":"Audrey Hepburn plays that daring, darling Holly Golightly to a new high in entertainment delight!","type":"Movie","_key":"2218"} +{"label":"Blake Edwards","version":124,"id":"1927","lastModified":"1299696815000","name":"Blake Edwards","type":"Person","_key":"2219"} +{"label":"Audrey Hepburn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c4\/4bf7b579017a3c77300003c4\/audrey-hepburn-profile.jpg","version":74,"id":"1932","lastModified":"1299948801000","name":"Audrey Hepburn","type":"Person","_key":"2220"} +{"label":"George Peppard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4ca65b025e73d643f0000044\/george-peppard-profile.jpg","version":31,"id":"1933","lastModified":"1299492676000","name":"George Peppard","type":"Person","_key":"2221"} +{"label":"Patricia Neal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fb\/4bf2d76c017a3c320f0003fb\/patricia-neal-profile.jpg","biography":"Neal was born Patsy Louise Neal, in Packard, Whitley County, Kentucky, to William Burdette and Eura Petrey Neal. She grew up in Knoxville, Tennessee, where she attended Knoxville High School, and studied drama at Northwestern University.\n\nAfter moving to New York, she accepted her first job as understudy in the Broadway production of The Voice of the Turtle. Next she appeared in Another Part of the Forest (1946), winning a Tony Award as Best Featured Actress in a Play, in the first presentation ","version":39,"birthday":"-1386896400000","id":"1934","birthplace":"Packard, Whitley County, Kentucky, U.S","lastModified":"1299492064000","name":"Patricia Neal","type":"Person","_key":"2222"} +{"label":"Buddy Ebsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f0\/4ca9fa0f7b9aa17aca0006f0\/buddy-ebsen-profile.jpg","version":24,"id":"1935","lastModified":"1299926638000","name":"Buddy Ebsen","type":"Person","_key":"2223"} +{"label":"Martin Balsam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b6\/4c28b27e7b9aa1446a0003b6\/martin-balsam-profile.jpg","biography":"He was born Martin Henry Balsam on November 4, 1919 in the Bronx, NY. His father was a manufacturer of women's sportswear and he was his first-born child. Martin caught the acting bug in high school where he participated in the drama club. After high school, he continued his interest in acting by attending Manhattan's progressive New School. When World War II broke out, Martin was called to service in his early twenties. After the war, he was lucky to secure a position as an usher at Radio City ","version":74,"birthday":"-1582938000000","id":"1936","birthplace":"Bronx, New York, USA","lastModified":"1299948755000","name":"Martin Balsam","type":"Person","_key":"2224"} +{"label":"Mickey Rooney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4bcc6c1b017a3c0f260000eb\/mickey-rooney-profile.jpg","version":85,"id":"1937","lastModified":"1299760415000","name":"Mickey Rooney","type":"Person","_key":"2225"} +{"label":"Jos\u00e9 Luis de Villalonga","version":23,"id":"1942","lastModified":"1299493348000","name":"Jos\u00e9 Luis de Villalonga","type":"Person","_key":"2226"} +{"label":"John McGiver","version":34,"id":"1943","lastModified":"1300003850000","name":"John McGiver","type":"Person","_key":"2227"} +{"label":"Alan Reed","version":27,"id":"1944","lastModified":"1299493614000","name":"Alan Reed","type":"Person","_key":"2228"} +{"label":"Dorothy Whitney","version":18,"id":"1945","lastModified":"1299494508000","name":"Dorothy Whitney","type":"Person","_key":"2229"} +{"label":"Beverly Powers","version":19,"id":"1946","lastModified":"1299493603000","name":"Beverly Powers","type":"Person","_key":"2230"} +{"label":"Stanley Adams","version":24,"id":"1947","lastModified":"1299582497000","name":"Stanley Adams","type":"Person","_key":"2231"} +{"label":"Claude Stroud","version":19,"id":"1948","lastModified":"1299493720000","name":"Claude Stroud","type":"Person","_key":"2232"} +{"label":"Elvia Allman","version":19,"id":"1949","lastModified":"1299493753000","name":"Elvia Allman","type":"Person","_key":"2233"} +{"label":"Orangey","version":18,"id":"1950","lastModified":"1299494507000","name":"Orangey","type":"Person","_key":"2234"} +{"label":"Back to the Future Part II","description":"Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.","id":"165","runtime":108,"imdbId":"tt0096874","trailer":"http:\/\/www.youtube.com\/watch?v=0oCi436G8Xk","homepage":"http:\/\/www.bttf.com\/","version":321,"lastModified":"1299912670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c5\/4ca92b7e7b9aa17acc0005c5\/back-to-the-future-part-ii-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Back to the Future Part II","releaseDate":627523200000,"language":"en","tagline":"Roads? Where we're going, we don't need roads!","type":"Movie","_key":"2235"} +{"label":"Elisabeth Shue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/031\/4bcf33f7017a3c63f1000031\/elisabeth-shue-profile.jpg","version":104,"id":"1951","lastModified":"1299865450000","name":"Elisabeth Shue","type":"Person","_key":"2236"} +{"label":"Jeffrey Weissman","version":35,"id":"1952","lastModified":"1299491947000","name":"Jeffrey Weissman","type":"Person","_key":"2237"} +{"label":"Casey Siemaszko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d6f\/4c686def5e73d63463000d6f\/casey-siemaszko-profile.jpg","biography":"Casey Siemaszko (born Kazimierz A. Siemaszko) is a Polish-American actor and the brother of actress Nina Siemaszko.\r\n\r\nThe son of a fighter in the Polish Underground who survived the Sachsenhausen concentration camp, Siemaszko narrated the 1998 feature, The Polish-Americans. Siemaszko was a graduate of the Goodman School of Drama at DePaul University in Chicago, which his sister, Nina Siemaszko later also attended.","version":45,"birthday":"-277520400000","id":"1953","birthplace":"Chicago, Illinois, USA","lastModified":"1299754966000","name":"Casey Siemaszko","type":"Person","_key":"2238"} +{"label":"Billy Zane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10b\/4c8f7ffe7b9aa1768700010b\/billy-zane-profile.jpg","version":101,"id":"1954","lastModified":"1299960583000","name":"Billy Zane","type":"Person","_key":"2239"} +{"label":"Darlene Vogel","version":23,"id":"1955","lastModified":"1299492860000","name":"Darlene Vogel","type":"Person","_key":"2240"} +{"label":"La Boum","description":"Le Boum is the story of a 13-year-old French girl dealing with moving to a new city and school in Paris, while at the same time her parents are getting a divorce. ","id":"166","runtime":110,"imdbId":"tt0082100","version":97,"lastModified":"1299833528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cb\/4bc90475017a3c57fe0013cb\/la-boum-mid.jpg","genre":"Comedy","title":"La Boum","releaseDate":315532800000,"language":"en","type":"Movie","_key":"2241"} +{"label":"Claude Brasseur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/531\/4bfac084017a3c702b000531\/claude-brasseur-profile.jpg","version":49,"id":"1958","lastModified":"1299834851000","name":"Claude Brasseur","type":"Person","_key":"2242"} +{"label":"Brigitte Fossey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4cb931035e73d67782000607\/brigitte-fossey-profile.jpg","version":45,"id":"1959","lastModified":"1299492431000","name":"Brigitte Fossey","type":"Person","_key":"2243"} +{"label":"Sophie Marceau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f2\/4bfa98e9017a3c70370003f2\/sophie-marceau-profile.jpg","biography":"N\u00e9e le 17 novembre 1966, Sophie Marceau, de son vrai nom Maupu, m\u00e8ne une existence tranquille, sans se douter qu'\u00e0 14 ans elle deviendrait la nouvelle \u00e9g\u00e9rie du cin\u00e9ma fran\u00e7ais. En 1980, alors \u00e9l\u00e8ve de 4e du coll\u00e8ge Curie de Gentilly, elle d\u00e9cide de trouver un petit boulot pour se faire un peu d'argent de poche.\n\nAccompagn\u00e9e de ses parents, elle se rend dans une agence de casting pour faire quelques photos, avant d'\u00eatre remarqu\u00e9e par la directrice de casting de Claude Pinoteau, alors \u00e0 la recher","version":102,"birthday":"-98586000000","id":"1957","birthplace":"Paris, France","lastModified":"1299490885000","name":"Sophie Marceau","type":"Person","_key":"2244"} +{"label":"Denise Grey","version":24,"id":"1969","lastModified":"1299492742000","name":"Denise Grey","type":"Person","_key":"2245"} +{"label":"Alexandre Sterling","version":20,"id":"1960","lastModified":"1299493106000","name":"Alexandre Sterling","type":"Person","_key":"2246"} +{"label":"Sheila O'Connor","version":20,"id":"1970","lastModified":"1299493106000","name":"Sheila O'Connor","type":"Person","_key":"2247"} +{"label":"Dominique Lavanant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/975\/4d6fd01b5e73d65a22000975\/dominique-lavanant-profile.jpg","version":35,"id":"1972","lastModified":"1299493396000","name":"Dominique Lavanant","type":"Person","_key":"2248"} +{"label":"Bernard Giraudeau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d4\/4d1b59345e73d665980009d4\/bernard-giraudeau-profile.jpg","version":40,"id":"1973","lastModified":"1299843991000","name":"Bernard Giraudeau","type":"Person","_key":"2249"} +{"label":"Jean-Michel Dupuis","version":16,"id":"1974","lastModified":"1299494237000","name":"Jean-Michel Dupuis","type":"Person","_key":"2250"} +{"label":"Jacques Ardouin","version":15,"id":"1975","lastModified":"1299494237000","name":"Jacques Ardouin","type":"Person","_key":"2251"} +{"label":"Evelyne Bellego","version":15,"id":"1976","lastModified":"1299494679000","name":"Evelyne Bellego","type":"Person","_key":"2252"} +{"label":"Richard Bohringer","version":42,"id":"1977","lastModified":"1299927945000","name":"Richard Bohringer","type":"Person","_key":"2253"} +{"label":"Fr\u00e9d\u00e9ric de Pasquale","version":18,"id":"15185","lastModified":"1299495280000","name":"Fr\u00e9d\u00e9ric de Pasquale","type":"Person","_key":"2254"} +{"label":"Jean-Pierre Castaldi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a0\/4d1ba0aa5e73d6084200c0a0\/jean-pierre-castaldi-profile.jpg","version":29,"id":"20800","lastModified":"1299927946000","name":"Jean-Pierre Castaldi","type":"Person","_key":"2255"} +{"label":"Robert Dalban","version":41,"id":"19647","lastModified":"1299498866000","name":"Robert Dalban","type":"Person","_key":"2256"} +{"label":"Alexandra Gonin","version":20,"id":"2193","lastModified":"1299493105000","name":"Alexandra Gonin","type":"Person","_key":"2257"} +{"label":"Claude Pinoteau","version":25,"id":"1961","lastModified":"1299492922000","name":"Claude Pinoteau","type":"Person","_key":"2258"} +{"label":"K-PAX","description":"K-PAX is based on a novel and stars Jeff Bridges as a psychiatrist trying to figure out if his patient Kevin Spacey is an alien from another planet or just faking it.","id":"167","runtime":115,"imdbId":"tt0272152","homepage":"http:\/\/www.k-pax.com\/","version":147,"lastModified":"1299913474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d8\/4bc90479017a3c57fe0013d8\/k-pax-mid.jpg","studio":"Intermedia Films","genre":"Comedy","title":"K-PAX","releaseDate":1003708800000,"language":"en","type":"Movie","_key":"2259"} +{"label":"Iain Softley","version":39,"id":"1978","lastModified":"1299492931000","name":"Iain Softley","type":"Person","_key":"2260"} +{"label":"Mary McCormack","version":38,"id":"1980","lastModified":"1299491492000","name":"Mary McCormack","type":"Person","_key":"2261"} +{"label":"Alfre Woodard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/003\/4c3f899d7b9aa1427f000003\/alfre-woodard-profile.jpg","biography":"Alfre Woodard is the youngest of three children born to her parents in Oklahoma. She was named by her godmother, who claimed she saw a vision of Alfre's name in written out in gold letters. A former high school cheerleader and track star, she got the acting bug after being pursuaded to audition for a school play by a nun at her school. She went on to study acting at Boston University and enjoyed a brief stint on Broadway before moving to LA. She got her first break in Remember My Name (1978) whi","version":54,"birthday":"-540781200000","id":"1981","birthplace":"Tulsa, Oklahoma, U.S.","lastModified":"1299492013000","name":"Alfre Woodard","type":"Person","_key":"2262"} +{"label":"Ajay Naidu","version":35,"id":"1982","lastModified":"1299491380000","name":"Ajay Naidu","type":"Person","_key":"2263"} +{"label":"Vincent Laresca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77a\/4cf7167f5e73d6299c00177a\/vincent-laresca-profile.jpg","version":52,"id":"1983","lastModified":"1299492109000","name":"Vincent Laresca","type":"Person","_key":"2264"} +{"label":"Kimberly Scott","version":34,"id":"1984","lastModified":"1299860316000","name":"Kimberly Scott","type":"Person","_key":"2265"} +{"label":"Saul Williams","version":22,"id":"1985","lastModified":"1299493996000","name":"Saul Williams","type":"Person","_key":"2266"} +{"label":"Peter Gerety","version":31,"id":"1986","lastModified":"1299492299000","name":"Peter Gerety","type":"Person","_key":"2267"} +{"label":"Melanee Murray","version":17,"id":"1987","lastModified":"1299494080000","name":"Melanee Murray","type":"Person","_key":"2268"} +{"label":"Tracey Vilar","version":16,"id":"1988","lastModified":"1299493840000","name":"Tracey Vilar","type":"Person","_key":"2269"} +{"label":"Celia Weston","version":66,"id":"1989","lastModified":"1299998043000","name":"Celia Weston","type":"Person","_key":"2270"} +{"label":"Brian Howe","version":58,"id":"1990","lastModified":"1299746575000","name":"Brian Howe","type":"Person","_key":"2271"} +{"label":"Tess McCarthy","version":16,"id":"1991","lastModified":"1299493841000","name":"Tess McCarthy","type":"Person","_key":"2272"} +{"label":"Natasha Dorfhuber","version":16,"id":"1992","lastModified":"1299493840000","name":"Natasha Dorfhuber","type":"Person","_key":"2273"} +{"label":"Predator 2","description":"Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.","id":"169","runtime":108,"imdbId":"tt0100403","trailer":"http:\/\/www.youtube.com\/watch?v=Vhqt1ynaoq0","version":372,"lastModified":"1300027563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4cda309f5e73d676cf000923\/predator-2-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Predator 2","releaseDate":659145600000,"language":"en","tagline":"Silent. Invisible. Invincible. He's in town with a few days to kill.","type":"Movie","_key":"2274"} +{"label":"Danny Glover","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/040\/4bca102c017a3c0e93000040\/danny-glover-profile.jpg","biography":"Danny Lebern Glover is a U.S. actor, film director, and political activist. Glover is well known for his roles as Mr. Albert Johnson in The Color Purple, as Michael Harrigan in Predator 2, as Detective Roger Murtaugh in the Lethal Weapon film franchise in which he is famous for his line \"I'm too old for this shit.\" He has also appeared in many other movies, televisual shows, and theatrical performances. He is very active in and strongly supports various humanitarian and political causes.","version":163,"birthday":"-739936800000","id":"2047","birthplace":"San Francisco, California, USA","lastModified":"1300042740000","name":"Danny Glover","type":"Person","_key":"2275"} +{"label":"Gary Busey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ed\/4bf989a4017a3c702b0001ed\/gary-busey-profile.jpg","version":105,"id":"2048","lastModified":"1299586967000","name":"Gary Busey","type":"Person","_key":"2276"} +{"label":"Rub\u00e9n Blades","version":39,"id":"2049","lastModified":"1299492565000","name":"Rub\u00e9n Blades","type":"Person","_key":"2277"} +{"label":"Maria Conchita Alonso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ee\/4cb7349b7b9aa138da0005ee\/maria-conchita-alonso-profile.jpg","version":47,"id":"2051","lastModified":"1299610656000","name":"Maria Conchita Alonso","type":"Person","_key":"2278"} +{"label":"Robert Davi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4bd85745017a3c1c06000106\/robert-davi-profile.jpg","version":73,"id":"2055","lastModified":"1299908607000","name":"Robert Davi","type":"Person","_key":"2279"} +{"label":"Kent McCord","version":22,"id":"2062","lastModified":"1299492299000","name":"Kent McCord","type":"Person","_key":"2280"} +{"label":"Morton Downey Jr.","version":18,"id":"2064","lastModified":"1299493474000","name":"Morton Downey Jr.","type":"Person","_key":"2281"} +{"label":"Calvin Lockhart","version":23,"id":"2067","lastModified":"1299492301000","name":"Calvin Lockhart","type":"Person","_key":"2282"} +{"label":"Corey Rand","version":18,"id":"2069","lastModified":"1299493499000","name":"Corey Rand","type":"Person","_key":"2283"} +{"label":"Lilyan Chauvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4bf17853017a3c320d00019f\/lilyan-chauvin-profile.jpg","version":22,"id":"2072","lastModified":"1299494937000","name":"Lilyan Chauvin","type":"Person","_key":"2284"} +{"label":"Michael Mark Edmondson","version":18,"id":"2074","lastModified":"1299493454000","name":"Michael Mark Edmondson","type":"Person","_key":"2285"} +{"label":"Henry Kingi","version":25,"id":"24969","lastModified":"1299494897000","name":"Henry Kingi","type":"Person","_key":"2286"} +{"label":"28 Days Later","description":"Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.","id":"170","runtime":113,"imdbId":"tt0289043","trailer":"http:\/\/www.youtube.com\/watch?v=sBZnuUZIbBQ","homepage":"http:\/\/kino.20thcenturyfox.de\/filmarchiv\/28dayslater\/set.html","version":201,"lastModified":"1300020515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/434\/4bc90487017a3c57fe001434\/28-days-later-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Horror","title":"28 Days Later","releaseDate":1036108800000,"language":"en","tagline":"His fear began when he woke up alone. His terror began when he realised he wasn't.","type":"Movie","_key":"2287"} +{"label":"Danny Boyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/516\/4ccb48517b9aa16b9e000516\/danny-boyle-profile.jpg","version":107,"id":"2034","lastModified":"1299859628000","name":"Danny Boyle","type":"Person","_key":"2288"} +{"label":"Brendan Gleeson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4bc9f1ec017a3c0e8b00000c\/brendan-gleeson-profile.jpg","biography":"Brendan Gleeson is an Irish actor. His best-known films include the Harry Potter films, Braveheart, Gangs of New York, 28 Days Later, and the role of Michael Collins in The Treaty. He won an Emmy award in 2009 for his portrayal of Winston Churchill in the film Into the Storm.\n\nGleeson was born in Dublin, Ireland and has described himself as having been an avid reader as a child. After leaving school for a short while, he worked for two years in an office with a health board. He then graduated fr","version":169,"birthday":"-465872400000","id":"2039","birthplace":"Dublin, Ireland","lastModified":"1299952252000","name":"Brendan Gleeson","type":"Person","_key":"2289"} +{"label":"Christopher Eccleston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b3\/4bd70b8a017a3c21f50000b3\/christopher-eccleston-profile.jpg","version":73,"id":"2040","lastModified":"1300027563000","name":"Christopher Eccleston","type":"Person","_key":"2290"} +{"label":"Noah Huntley","version":37,"id":"2050","lastModified":"1299491970000","name":"Noah Huntley","type":"Person","_key":"2291"} +{"label":"Christopher Dunne","version":21,"id":"2052","lastModified":"1299492644000","name":"Christopher Dunne","type":"Person","_key":"2292"} +{"label":"Emma Hitching","version":20,"id":"2054","lastModified":"1299492925000","name":"Emma Hitching","type":"Person","_key":"2293"} +{"label":"Alexander Delamere","version":20,"id":"2056","lastModified":"1299492633000","name":"Alexander Delamere","type":"Person","_key":"2294"} +{"label":"Kim McGarrity","version":20,"id":"2057","lastModified":"1299492396000","name":"Kim McGarrity","type":"Person","_key":"2295"} +{"label":"Megan Burns","version":20,"id":"2058","lastModified":"1299492633000","name":"Megan Burns","type":"Person","_key":"2296"} +{"label":"Alex Palmer","version":20,"id":"2060","lastModified":"1299492633000","name":"Alex Palmer","type":"Person","_key":"2297"} +{"label":"Bindu De Stoppani","version":20,"id":"2061","lastModified":"1299492396000","name":"Bindu De Stoppani","type":"Person","_key":"2298"} +{"label":"Jukka Hiltunen","version":27,"id":"2063","lastModified":"1299492300000","name":"Jukka Hiltunen","type":"Person","_key":"2299"} +{"label":"David Schneider","version":23,"id":"2065","lastModified":"1299492682000","name":"David Schneider","type":"Person","_key":"2300"} +{"label":"Toby Sedgwick","version":20,"id":"2066","lastModified":"1299492633000","name":"Toby Sedgwick","type":"Person","_key":"2301"} +{"label":"Stuart McQuarrie","version":34,"id":"2258","lastModified":"1299581012000","name":"Stuart McQuarrie","type":"Person","_key":"2302"} +{"label":"La Boum 2","description":"The second film from the Le Boum series about a young French teenage girl who after moving to a new city falls in love with a boy and is thinking of having sex with him because her girlfriends have already done it.","id":"171","runtime":109,"imdbId":"tt0083686","version":99,"lastModified":"1299671482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18f\/4c2c1d627b9aa15e9a00018f\/la-boum-2-mid.jpg","genre":"Comedy","title":"La Boum 2","releaseDate":378691200000,"language":"en","type":"Movie","_key":"2303"} +{"label":"Pierre Cosso","version":16,"id":"2086","lastModified":"1299492923000","name":"Pierre Cosso","type":"Person","_key":"2304"} +{"label":"Jean-Philippe L\u00e9onard","version":16,"id":"2194","lastModified":"1299492923000","name":"Jean-Philippe L\u00e9onard","type":"Person","_key":"2305"} +{"label":"Jean Leuvrais","version":16,"id":"2195","lastModified":"1299492922000","name":"Jean Leuvrais","type":"Person","_key":"2306"} +{"label":"Claudia Morin","version":16,"id":"2196","lastModified":"1299493339000","name":"Claudia Morin","type":"Person","_key":"2307"} +{"label":"Daniel Russo","version":21,"id":"2197","lastModified":"1299493389000","name":"Daniel Russo","type":"Person","_key":"2308"} +{"label":"Sandrine Bonnaire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/186\/4bdb64bb017a3c5d8d000186\/sandrine-bonnaire-profile.jpg","version":50,"id":"19161","lastModified":"1299669905000","name":"Sandrine Bonnaire","type":"Person","_key":"2309"} +{"label":"Zabou Breitman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65f\/4d1112df5e73d6083800065f\/zabou-breitman-profile.jpg","version":52,"id":"54675","lastModified":"1299784341000","name":"Zabou Breitman","type":"Person","_key":"2310"} +{"label":"Star Trek V: The Final Frontier","description":"Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.","id":"172","runtime":107,"imdbId":"tt0098382","trailer":"http:\/\/www.youtube.com\/watch?v=yEAvkUMHra8","version":150,"lastModified":"1299988859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e0\/4bc904a4017a3c57fe0014e0\/star-trek-v-the-final-frontier-mid.jpg","studio":"Paramount Pictures","genre":"Science Fiction","title":"Star Trek V: The Final Frontier","releaseDate":613353600000,"language":"en","tagline":"Adventure and imagination will meet at the final frontier.","type":"Movie","_key":"2311"} +{"label":"Laurence Luckinbill","version":23,"id":"2077","lastModified":"1299492356000","name":"Laurence Luckinbill","type":"Person","_key":"2312"} +{"label":"Charles Cooper","version":19,"id":"2078","lastModified":"1299492642000","name":"Charles Cooper","type":"Person","_key":"2313"} +{"label":"Cynthia Gouw","version":17,"id":"2079","lastModified":"1299492724000","name":"Cynthia Gouw","type":"Person","_key":"2314"} +{"label":"Todd Bryant","version":20,"id":"2080","lastModified":"1299492591000","name":"Todd Bryant","type":"Person","_key":"2315"} +{"label":"George Murdock","version":20,"id":"2081","lastModified":"1299492308000","name":"George Murdock","type":"Person","_key":"2316"} +{"label":"20,000 Leagues Under the Sea","description":"A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.","id":"173","runtime":127,"imdbId":"tt0046672","trailer":"http:\/\/www.youtube.com\/watch?v=Xhyuey4xU3Q","version":92,"lastModified":"1299913328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/615\/4c6493705e73d63c86000615\/20-000-leagues-under-the-sea-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"20,000 Leagues Under the Sea","releaseDate":-474163200000,"language":"en","type":"Movie","_key":"2317"} +{"label":"Richard Fleischer","version":70,"id":"2087","lastModified":"1300027583000","name":"Richard Fleischer","type":"Person","_key":"2318"} +{"label":"Kirk Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4bcf33f6017a3c63f5000048\/kirk-douglas-profile.jpg","version":110,"id":"2090","lastModified":"1300027583000","name":"Kirk Douglas","type":"Person","_key":"2319"} +{"label":"James Mason","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/183\/4bcc7439017a3c0f34000183\/james-mason-profile.jpg","version":90,"id":"2091","lastModified":"1299491037000","name":"James Mason","type":"Person","_key":"2320"} +{"label":"Paul Lukas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5fa\/4bfac179017a3c702d0005fa\/paul-lukas-profile.jpg","version":31,"id":"2092","lastModified":"1299850019000","name":"Paul Lukas","type":"Person","_key":"2321"} +{"label":"Peter Lorre","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/367\/4c28aa867b9aa14469000367\/peter-lorre-profile.jpg","version":72,"id":"2094","lastModified":"1299491569000","name":"Peter Lorre","type":"Person","_key":"2322"} +{"label":"Robert J. Wilke","version":24,"id":"2096","lastModified":"1299493356000","name":"Robert J. Wilke","type":"Person","_key":"2323"} +{"label":"Ted de Corsia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e5\/4c5b0c6f7b9aa151f60005e5\/ted-de-corsia-profile.jpg","version":34,"id":"2097","lastModified":"1299492764000","name":"Ted de Corsia","type":"Person","_key":"2324"} +{"label":"Carleton Young","version":30,"birthday":"-2025910800000","id":"2098","birthplace":"New York, USA","lastModified":"1300013151000","name":"Carleton Young","type":"Person","_key":"2325"} +{"label":"J.M. Kerrigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32e\/4bf7690b017a3c772600032e\/j-m-kerrigan-profile.jpg","version":41,"id":"2099","lastModified":"1299493264000","name":"J.M. Kerrigan","type":"Person","_key":"2326"} +{"label":"Percy Helton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ba\/4be1799a017a3c35b70005ba\/percy-helton-profile.jpg","version":34,"id":"2101","lastModified":"1300013602000","name":"Percy Helton","type":"Person","_key":"2327"} +{"label":"Ted Cooper","version":15,"id":"2102","lastModified":"1299493127000","name":"Ted Cooper","type":"Person","_key":"2328"} +{"label":"Star Trek VI: The Undiscovered Country","description":"The crews of the Enterprise and the Excelsior must stop a plot to prevent a peace treaty between the Klingon Empire and the Federation","id":"174","runtime":113,"imdbId":"tt0102975","trailer":"http:\/\/www.youtube.com\/watch?v=7G5q9-8thDA","version":179,"lastModified":"1299913155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4ced73275e73d6524d000004\/star-trek-vi-the-undiscovered-country-mid.jpg","studio":"Paramount Pictures","genre":"Science Fiction","title":"Star Trek VI: The Undiscovered Country","releaseDate":691977600000,"language":"en","tagline":"The battle for peace has begun.","type":"Movie","_key":"2329"} +{"label":"Kim Cattrall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/156\/4beec92a017a3c4598000156\/kim-cattrall-profile.jpg","version":75,"id":"2109","lastModified":"1299937799000","name":"Kim Cattrall","type":"Person","_key":"2330"} +{"label":"Rosanna DeSoto","version":21,"id":"2111","lastModified":"1299689063000","name":"Rosanna DeSoto","type":"Person","_key":"2331"} +{"label":"Brock Peters","version":27,"id":"2112","lastModified":"1299914079000","name":"Brock Peters","type":"Person","_key":"2332"} +{"label":"Kurtwood Smith","version":58,"id":"2115","lastModified":"1299491889000","name":"Kurtwood Smith","type":"Person","_key":"2333"} +{"label":"Iman","biography":"Iman is a Somali-American supermodel and actress.  She has been married to musician\/actor David Bowie since 1992.\n<\/b>","version":18,"id":"2124","lastModified":"1299493719000","name":"Iman","type":"Person","_key":"2334"} +{"label":"The Big Blue","description":"The Big Blue is a captivating tragedy about the friendship and rivalry of two men and their passion for the ocean and diving.","id":"175","runtime":168,"imdbId":"tt0095250","version":204,"lastModified":"1300030191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/519\/4bc904ad017a3c57fe001519\/le-grand-bleu-mid.jpg","studio":"Gaumont","genre":"Action","title":"The Big Blue","releaseDate":579312000000,"language":"en","type":"Movie","_key":"2335"} +{"label":"Rosanna Arquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/634\/4bfad305017a3c7031000634\/rosanna-arquette-profile.jpg","version":63,"birthday":"-328064400000","id":"2165","birthplace":"New York City, New York, USA","lastModified":"1299509002000","name":"Rosanna Arquette","type":"Person","_key":"2336"} +{"label":"Sergio Castellitto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4cd64bf27b9aa11b2400022c\/sergio-castellitto-profile.jpg","version":51,"id":"2166","lastModified":"1299670582000","name":"Sergio Castellitto","type":"Person","_key":"2337"} +{"label":"Jean Bouise","version":40,"id":"2168","lastModified":"1299957967000","name":"Jean Bouise","type":"Person","_key":"2338"} +{"label":"Marc Duret","version":28,"id":"2170","lastModified":"1299492859000","name":"Marc Duret","type":"Person","_key":"2339"} +{"label":"Griffin Dunne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4c95dfe87b9aa10d5c00034e\/griffin-dunne-profile.jpg","version":60,"id":"2171","lastModified":"1299793338000","name":"Griffin Dunne","type":"Person","_key":"2340"} +{"label":"Andr\u00e9as Voutsinas","version":21,"id":"2172","lastModified":"1299492473000","name":"Andr\u00e9as Voutsinas","type":"Person","_key":"2341"} +{"label":"Valentina Vargas","version":27,"id":"2173","lastModified":"1299747408000","name":"Valentina Vargas","type":"Person","_key":"2342"} +{"label":"Kimberly Beck","version":21,"id":"2174","lastModified":"1299764429000","name":"Kimberly Beck","type":"Person","_key":"2343"} +{"label":"Bruce Guerre-Berthelot","version":16,"id":"2175","lastModified":"1299492722000","name":"Bruce Guerre-Berthelot","type":"Person","_key":"2344"} +{"label":"Gregory Forstner","version":16,"id":"2180","lastModified":"1299493041000","name":"Gregory Forstner","type":"Person","_key":"2345"} +{"label":"Claude Besson","version":24,"id":"2181","lastModified":"1299492866000","name":"Claude Besson","type":"Person","_key":"2346"} +{"label":"Saw","description":"Would you kill to live? That's what two men, Adam and Gordon, have to ask themselves when they're abducted by a serial killer and paired up in a deadly situation -- holed up in a prison constructed with such ingenuity that escape seems impossible. Attempting to break free might kill them, but their captor could decide at any moment that it's time to dismantle their bodies in his signature way.","id":"176","runtime":102,"imdbId":"tt0387564","trailer":"http:\/\/www.youtube.com\/watch?v=zFQebvkii90","homepage":"http:\/\/www.sawmovie.com\/","version":207,"lastModified":"1300020084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4bc904b1017a3c57fe00152e\/saw-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"Saw","releaseDate":1099008000000,"language":"en","tagline":"Live or die. Make your choice.","type":"Movie","_key":"2347"} +{"label":"James Wan","version":43,"id":"2127","lastModified":"1299551834000","name":"James Wan","type":"Person","_key":"2348"} +{"label":"Leigh Whannell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/534\/4d593e6f7b9aa16bc6003534\/leigh-whannell-profile.jpg","version":51,"id":"2128","lastModified":"1299551834000","name":"Leigh Whannell","type":"Person","_key":"2349"} +{"label":"Cary Elwes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a6\/4bf079e1017a3c53100000a6\/cary-elwes-profile.jpg","biography":"Cary Elwes is the third son born to interior designer\/shipping heiress Tessa Kennedy and the late portrait painter Dominick Elwes, and is the brother of producer\/agent Cassian Elwes and artist Damian Elwes. He was born and raised in London and attended Harrow. After graduating from Harrow, he moved to the US and studied drama at Sarah Lawrence College. He left school after two years to begin his film career. Cary is well respected by colleagues and fans alike and considered by many to be one of ","version":128,"id":"2130","lastModified":"1299947011000","name":"Cary Elwes","type":"Person","_key":"2350"} +{"label":"Ken Leung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53c\/4d593ec37b9aa16bc600353c\/ken-leung-profile.jpg","version":30,"id":"2131","lastModified":"1299492190000","name":"Ken Leung","type":"Person","_key":"2351"} +{"label":"Mike Butters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/adb\/4d593f1e7b9aa15cf6004adb\/mike-butters-profile.jpg","version":23,"id":"2134","lastModified":"1299493636000","name":"Mike Butters","type":"Person","_key":"2352"} +{"label":"Paul Gutrecht","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f9\/4d593fe77b9aa16bca0035f9\/paul-gutrecht-profile.jpg","version":21,"id":"2135","lastModified":"1299493734000","name":"Paul Gutrecht","type":"Person","_key":"2353"} +{"label":"Michael Emerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b07\/4d5940637b9aa15d01004b07\/michael-emerson-profile.jpg","version":33,"id":"2136","lastModified":"1299492519000","name":"Michael Emerson","type":"Person","_key":"2354"} +{"label":"Benito Martinez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/828\/4cd9c0917b9aa113ac000828\/benito-martinez-profile.jpg","version":35,"id":"2137","lastModified":"1299492520000","name":"Benito Martinez","type":"Person","_key":"2355"} +{"label":"Shawnee Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ff\/4be0ebc8017a3c35b70004ff\/shawnee-smith-profile.jpg","version":59,"id":"2138","lastModified":"1299492589000","name":"Shawnee Smith","type":"Person","_key":"2356"} +{"label":"Makenzie Vega","version":35,"id":"2139","lastModified":"1299950745000","name":"Makenzie Vega","type":"Person","_key":"2357"} +{"label":"Monica Potter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f1e\/4d281ec27b9aa134d3001f1e\/monica-potter-profile.jpg","version":46,"id":"2140","lastModified":"1300048178000","name":"Monica Potter","type":"Person","_key":"2358"} +{"label":"Ned Bellamy","version":57,"id":"2141","lastModified":"1299491912000","name":"Ned Bellamy","type":"Person","_key":"2359"} +{"label":"Alexandra Bokyun Chun","version":19,"id":"2142","lastModified":"1299493585000","name":"Alexandra Bokyun Chun","type":"Person","_key":"2360"} +{"label":"Avner Garbi","version":19,"id":"2143","lastModified":"1299493585000","name":"Avner Garbi","type":"Person","_key":"2361"} +{"label":"Tobin Bell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/025\/4cfd1c185e73d6299b004025\/tobin-bell-profile.jpg","version":85,"id":"2144","lastModified":"1299551833000","name":"Tobin Bell","type":"Person","_key":"2362"} +{"label":"The Fisher King","description":"A turbulent mix of tragic comedy and myth told by director Terry Gilliam. Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.","id":"177","runtime":137,"imdbId":"tt0101889","version":116,"lastModified":"1300020009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c2\/4c8a4dc05e73d67c470000c2\/the-fisher-king-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Fisher King","releaseDate":685324800000,"language":"en","type":"Movie","_key":"2363"} +{"label":"Robin Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0df\/4bdd41a8017a3c20c70000df\/robin-williams-profile.jpg","version":227,"birthday":"-582253200000","id":"2157","birthplace":"Chicago, Illinois, United States","lastModified":"1299926874000","name":"Robin Williams","type":"Person","_key":"2364"} +{"label":"Mercedes Ruehl","version":25,"id":"2167","lastModified":"1299492700000","name":"Mercedes Ruehl","type":"Person","_key":"2365"} +{"label":"Lara Harris","version":18,"id":"11073","lastModified":"1299497096000","name":"Lara Harris","type":"Person","_key":"2366"} +{"label":"Kathy Najimy","version":56,"id":"11074","lastModified":"1299951084000","name":"Kathy Najimy","type":"Person","_key":"2367"} +{"label":"Paul Lombardi","version":14,"id":"11075","lastModified":"1299497597000","name":"Paul Lombardi","type":"Person","_key":"2368"} +{"label":"David Hyde Pierce","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/377\/4d4a38e45e73d617c7000377\/david-hyde-pierce-profile.jpg","version":49,"id":"11076","lastModified":"1299492832000","name":"David Hyde Pierce","type":"Person","_key":"2369"} +{"label":"John de Lancie","version":27,"id":"11077","lastModified":"1299493913000","name":"John de Lancie","type":"Person","_key":"2370"} +{"label":"Lisa Blades","version":14,"id":"11078","lastModified":"1299497660000","name":"Lisa Blades","type":"Person","_key":"2371"} +{"label":"Blown Away","description":"Blown Away tells the story of Jimmy Dove who works for the Boston bomb squad. Shortly after Dove leaves the force his partner is killed by a bomb that Dove thinks might have been made by someone he knows.","id":"178","runtime":121,"imdbId":"tt0109303","trailer":"http:\/\/www.youtube.com\/watch?v=INERGITKOcE","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=BLOWNAWA","version":153,"lastModified":"1300027434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/549\/4bc904b4017a3c57fe001549\/blown-away-mid.jpg","genre":"Action","title":"Blown Away","releaseDate":773020800000,"language":"en","type":"Movie","_key":"2372"} +{"label":"Lloyd Bridges","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47d\/4c8951aa7b9aa1545a00047d\/lloyd-bridges-profile.jpg","version":71,"birthday":"-1797555600000","id":"2177","birthplace":"San Leandro, California, USA","lastModified":"1299491401000","name":"Lloyd Bridges","type":"Person","_key":"2373"} +{"label":"Forest Whitaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4c235d4b7b9aa13f63000042\/forest-whitaker-profile.jpg","biography":"Forest Steven Whitaker<\/SPAN><\/B> was born on July 15, 1961 in Longview<\/st1:City>, Texas<\/st1:State><\/st1:place>. Whitaker made his film debut at the age of 21","version":172,"birthday":"-267152400000","id":"2178","birthplace":"Texas, USA","lastModified":"1300015901000","name":"Forest Whitaker","type":"Person","_key":"2374"} +{"label":"Suzy Amis","version":33,"id":"2179","lastModified":"1299746700000","name":"Suzy Amis","type":"Person","_key":"2375"} +{"label":"Stephi Lineburg","version":13,"id":"2266","lastModified":"1299495017000","name":"Stephi Lineburg","type":"Person","_key":"2376"} +{"label":"Caitlin Clarke","version":15,"id":"2275","lastModified":"1299493449000","name":"Caitlin Clarke","type":"Person","_key":"2377"} +{"label":"Loyd Catlett","version":13,"id":"2277","lastModified":"1299494989000","name":"Loyd Catlett","type":"Person","_key":"2378"} +{"label":"The Interpreter","description":"A thriller about an interpreter who has overheard an assassination attempt in the UK. An American Secret Service agent is sent to investigate as Silvia Broome, the interpreter, is in danger of being killed by the assassins.","id":"179","runtime":128,"imdbId":"tt0373926","homepage":"http:\/\/www.theinterpretermovie.com\/","version":157,"lastModified":"1300019828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/557\/4bc904b6017a3c57fe001557\/the-interpreter-mid.jpg","studio":"Misher Films","genre":"Crime","title":"The Interpreter","releaseDate":1110499200000,"language":"en","type":"Movie","_key":"2379"} +{"label":"Nicole Kidman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27b\/4bf9a1fd017a3c702d00027b\/nicole-kidman-profile.jpg","biography":"Nicole Mary Kidman, AC (born 20 June 1967) is an American-born Australian actress, fashion model, singer and humanitarian.\n\nAfter starring in a number of small Australian films and TV shows, Kidman's breakthrough was in the 1989 thriller Dead Calm. Her performances in films such as To Die For (1995) and Moulin Rouge! (2001) received critical acclaim, and her performance in The Hours (2002) brought her the Academy Award for Best Actress, a BAFTA Award and a Golden Globe Award. Her other films inc","version":157,"birthday":"-80010000000","id":"2227","birthplace":"Honolulu, Hawaii, U.S","lastModified":"1299935758000","name":"Nicole Kidman","type":"Person","_key":"2380"} +{"label":"Sean Penn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4bf0f92d017a3c32120000b6\/sean-penn-profile.jpg","version":151,"birthday":"-295837200000","id":"2228","birthplace":"Santa Monica, California, U.S.","lastModified":"1299941153000","name":"Sean Penn","type":"Person","_key":"2381"} +{"label":"Catherine Keener","version":93,"id":"2229","lastModified":"1299831363000","name":"Catherine Keener","type":"Person","_key":"2382"} +{"label":"Yvan Attal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34b\/4d1f5e0d7b9aa1736700134b\/yvan-attal-profile.jpg","version":54,"id":"2245","lastModified":"1299491678000","name":"Yvan Attal","type":"Person","_key":"2383"} +{"label":"Earl Cameron","version":13,"id":"2246","lastModified":"1299495241000","name":"Earl Cameron","type":"Person","_key":"2384"} +{"label":"George Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34d\/4cb2059b7b9aa1263d00034d\/george-harris-profile.jpg","version":36,"birthday":"-637462800000","id":"2247","birthplace":"Grenada, West Indies","lastModified":"1299908551000","name":"George Harris","type":"Person","_key":"2385"} +{"label":"Michael Wright","version":20,"id":"2248","lastModified":"1299582144000","name":"Michael Wright","type":"Person","_key":"2386"} +{"label":"Clyde Kusatsu","version":22,"id":"2249","lastModified":"1299494655000","name":"Clyde Kusatsu","type":"Person","_key":"2387"} +{"label":"Eric Keenleyside","version":29,"id":"2250","lastModified":"1299492855000","name":"Eric Keenleyside","type":"Person","_key":"2388"} +{"label":"Hugo Speer","version":15,"id":"2251","lastModified":"1299495689000","name":"Hugo Speer","type":"Person","_key":"2389"} +{"label":"Maz Jobrani","version":14,"id":"2252","lastModified":"1299494214000","name":"Maz Jobrani","type":"Person","_key":"2390"} +{"label":"Yusuf Gatewood","version":13,"id":"2253","lastModified":"1299495241000","name":"Yusuf Gatewood","type":"Person","_key":"2391"} +{"label":"Curtiss Cook","version":19,"id":"2254","lastModified":"1299493450000","name":"Curtiss Cook","type":"Person","_key":"2392"} +{"label":"Byron Utley","version":13,"id":"2255","lastModified":"1299495241000","name":"Byron Utley","type":"Person","_key":"2393"} +{"label":"Robert Clohessy","version":14,"id":"2256","lastModified":"1299577333000","name":"Robert Clohessy","type":"Person","_key":"2394"} +{"label":"Terry Serpico","version":14,"id":"2257","lastModified":"1299494271000","name":"Terry Serpico","type":"Person","_key":"2395"} +{"label":"Minority Report","description":"John Anderton is a top \"Precrime\" cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge. Can Anderton find a glitch in the system and prove his innocence before it's too late?","id":"180","runtime":145,"imdbId":"tt0181689","trailer":"http:\/\/www.youtube.com\/watch?v=q2bmImPNKbM","version":231,"lastModified":"1300019743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/658\/4ca9c1bb7b9aa17acd000658\/minority-report-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Minority Report","releaseDate":1024617600000,"language":"en","tagline":"The system is perfect until it comes after you.","type":"Movie","_key":"2396"} +{"label":"Max von Sydow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4bd6ce30017a3c21ea0000dd\/max-von-sydow-profile.jpg","version":173,"id":"2201","lastModified":"1299968358000","name":"Max von Sydow","type":"Person","_key":"2397"} +{"label":"Steve Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d3\/4d3364d85e73d633490021d3\/steve-harris-profile.jpg","version":55,"id":"2202","lastModified":"1299490980000","name":"Steve Harris","type":"Person","_key":"2398"} +{"label":"Neal McDonough","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/440\/4bfa7011017a3c7033000440\/neal-mcdonough-profile.jpg","biography":"Neal McDonough was trained at the London Academy of Dramatic Arts and Sciences. His theatre credits include 'Cheap Talk', 'Foreigner', 'As You Like It', 'Rivals', 'A Midsummer Night's Dream', 'Bald Soprano', and 'Waiting for Lefty'. The young actor won a 1991 Best Actor Dramalogue Award for 'Away Alone'. McDonough has been a 'Star Trek' fan since he was a kid. Playing Lieutenant Hawk in 'Star Trek First Contact' was a life-long dream. McDonough has three pictures on his bedroom wall. One is a pi","version":85,"birthday":"-121654800000","id":"2203","birthplace":"Dorchester, Massachusetts, USA","lastModified":"1299767573000","name":"Neal McDonough","type":"Person","_key":"2399"} +{"label":"Jessica Capshaw","version":21,"id":"2205","lastModified":"1299492921000","name":"Jessica Capshaw","type":"Person","_key":"2400"} +{"label":"Samantha Morton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ecd\/4d29984f5e73d626ac002ecd\/samantha-morton-profile.jpg","biography":"Samantha Morton was born May 13, 1977 in Nottingham, England to parents who divorced when she was three years old. Peter and Pamela Morton took other spouses and made Samantha part of a mixed family of 13: She has eight brothers and sisters. She turned to play-acting early in her life, while she was a school-girl.<\/span>\u200bShia Saide LaBeouf is an American actor, voice actor, and comedian. LaBeouf began his comedy career when he was 10 years old, and then launched his acting career in 1998 at the age of 12. He became known among younger audiences for his part in the Disney Channel series Even Stevens, also appearing in three Disney TV movies. In 2003, LaBeouf made his theatrical film debut in Holes, also appearing in the lead","version":137,"birthday":"521416800000","id":"10959","birthplace":"Los Angeles, California, U.S","lastModified":"1299737015000","name":"Shia LaBeouf","type":"Person","_key":"2679"} +{"label":"Ray Winstone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/246\/4bdf27ea017a3c35c1000246\/ray-winstone-profile.jpg","version":150,"id":"5538","lastModified":"1299993320000","name":"Ray Winstone","type":"Person","_key":"2680"} +{"label":"Andrew Divoff","version":47,"id":"36218","lastModified":"1299928326000","name":"Andrew Divoff","type":"Person","_key":"2681"} +{"label":"Igor Jijikine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd3\/4d7c56f25e73d65ec1001bd3\/igor-jijikine-profile.jpg","version":31,"id":"52761","lastModified":"1299990754000","name":"Igor Jijikine","type":"Person","_key":"2682"} +{"label":"Pasha D. Lychnikoff","version":27,"id":"52762","lastModified":"1299491866000","name":"Pasha D. Lychnikoff","type":"Person","_key":"2683"} +{"label":"Alan Dale","version":30,"id":"52760","lastModified":"1299492078000","name":"Alan Dale","type":"Person","_key":"2684"} +{"label":"Ernie Reyes Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04b\/4d2f3ab47b9aa140ee00004b\/ernie-reyes-jr-profile.jpg","version":43,"birthday":"64278000000","id":"58210","birthplace":"San Jose, California","lastModified":"1299493512000","name":"Ernie Reyes Jr.","type":"Person","_key":"2685"} +{"label":"The Terminator","description":"In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to snuff Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?","id":"218","runtime":108,"imdbId":"tt0088247","trailer":"http:\/\/www.youtube.com\/watch?v=xLiAPWBSVx0","version":236,"lastModified":"1300016724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76d\/4c54d5647b9aa13d4f00076d\/the-terminator-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"The Terminator","releaseDate":467596800000,"language":"en","tagline":"The thing that won't die, in the nightmare that won't end.","type":"Movie","_key":"2686"} +{"label":"Michael Biehn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/780\/4d25bc957b9aa134e0000780\/michael-biehn-profile.jpg","version":84,"id":"2712","lastModified":"1299609842000","name":"Michael Biehn","type":"Person","_key":"2687"} +{"label":"Linda Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/681\/4c5b199c7b9aa151f2000681\/linda-hamilton-profile.jpg","biography":"\u0420\u043e\u0434\u0438\u043b\u0430\u0441\u044c 26 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 1956 \u0433\u043e\u0434\u0430 \u0432 \u0421\u043e\u043b\u0441\u0431\u0435\u0440\u0438, \u0448\u0442\u0430\u0442 \u041c\u044d\u0440\u0438\u043b\u0435\u043d\u0434, \u0421\u0428\u0410. \u0423 \u043d\u0435\u0435 \u0435\u0441\u0442\u044c \u0441\u0435\u0441\u0442\u0440\u0430-\u0431\u043b\u0438\u0437\u043d\u0435\u0446 \u041b\u0435\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0440\u043e\u0434\u0438\u043b\u0430\u0441\u044c \u043d\u0430 6 \u043c\u0438\u043d\u0443\u0442 \u0440\u0430\u043d\u044c\u0448\u0435. \u041e\u0442\u0435\u0446 \u043f\u043e\u0433\u0438\u0431 \u0432 \u0430\u0432\u0430\u0440\u0438\u0438, \u043a\u043e\u0433\u0434\u0430 \u0441\u0435\u0441\u0442\u0440\u0430\u043c \u0431\u044b\u043b\u043e \u043f\u044f\u0442\u044c \u043b\u0435\u0442, \u0438\u0445 \u043c\u0430\u0442\u044c \u0432\u044b\u0448\u043b\u0430 \u0437\u0430\u043c\u0443\u0436 \u0432\u043e \u0432\u0442\u043e\u0440\u043e\u0439 \u0440\u0430\u0437 \u0437\u0430 \u0448\u0435\u0444\u0430 \u043f\u043e\u043b\u0438\u0446\u0438\u0438 \u0421\u043e\u043b\u0441\u0431\u0435\u0440\u0438. \u0412 \u0434\u0435\u0442\u0441\u0442\u0432\u0435 \u0443 \u041b\u0438\u043d\u0434\u044b \u0431\u044b\u043b \u043a\u0440\u0438\u0437\u0438\u0441 \u0431\u043b\u0438\u0437\u043d\u0435\u0446\u043e\u0432. \u0418\u0437-\u0437\u0430 \u043d\u0435\u0433\u043e \u041b\u0438\u043d\u0434\u0430 \u0413\u0430\u043c\u0438\u043b\u044c\u0442\u043e\u043d \u0441\u0442\u0440\u0430\u0434\u0430\u0435\u0442 \u0432\u0441\u044e \u0436\u0438\u0437\u043d\u044c \u2014 \u043c\u0430\u043d\u0438\u0430\u043a\u0430\u043b\u044c\u043d\u043e-\u0434\u0435\u043f\u0440\u0435\u0441\u0441\u0438\u0432\u043d\u044b\u0439 \u0441\u0438\u043d\u0434\u0440\u043e\u043c. \u041b\u0438\u043d\u0434\u0430 \u043d\u0435 \u043b\u0435\u0447\u0438\u043b\u0430\u0441\u044c \u0434\u043e 30 \u043b\u0435\u0442.\n\n\u041e \u043a\u0430\u0440\u044c\u0435\u0440\u0435 \u0430\u043a\u0442\u0440\u0438\u0441\u044b \u041b\u0438\u043d\u0434\u0430 \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043c\u0435\u0447\u0442\u0430\u043b\u0430. \u041f\u0430\u0440\u0443 \u043b\u0435\u0442 \u0443\u0447\u0438\u043b\u0430\u0441\u044c \u0438\u0433\u0440\u0430\u0442\u044c \u043d\u0430 \u0444\u043e\u0440\u0442\u0435\u043f\u0438\u0430\u043d\u043e. \u0412 \u0448\u043a\u043e\u043b\u0435 \u043e\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u0438\u0433\u0440\u0430\u0442","version":79,"id":"2713","lastModified":"1300011679000","name":"Linda Hamilton","type":"Person","_key":"2688"} +{"label":"Lance Henriksen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f6\/4cbdbe597b9aa138d50015f6\/lance-henriksen-profile.jpg","version":168,"id":"2714","lastModified":"1300002026000","name":"Lance Henriksen","type":"Person","_key":"2689"} +{"label":"Bess Motta","version":20,"id":"2715","lastModified":"1299492858000","name":"Bess Motta","type":"Person","_key":"2690"} +{"label":"Earl Boen","version":53,"id":"2716","lastModified":"1299705845000","name":"Earl Boen","type":"Person","_key":"2691"} +{"label":"Rick Rossovich","version":30,"id":"2717","lastModified":"1299492008000","name":"Rick Rossovich","type":"Person","_key":"2692"} +{"label":"Brian Thompson","version":50,"id":"2719","lastModified":"1299968241000","name":"Brian Thompson","type":"Person","_key":"2693"} +{"label":"Franco Columbu","version":46,"id":"35710","lastModified":"1299492667000","name":"Franco Columbu","type":"Person","_key":"2694"} +{"label":"Dick Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c09\/4c0d5330017a3c7e8f000c09\/dick-miller-profile.jpg","version":72,"id":"102441","lastModified":"1299494862000","name":"Dick Miller","type":"Person","_key":"2695"} +{"label":"Volver","description":"A Pedro Almod\u00f3var film about the power of lonely women and their return in our modern day culture. Almod\u00f3var goes back into his favorite genre of dramatic comedy as well as filming it in his birth town of La Mancha. The film stars Penelope Cruz.","id":"219","runtime":120,"imdbId":"tt0441909","homepage":"http:\/\/www.volver-lapelicula.com","version":147,"lastModified":"1300016619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fd\/4d73bd797b9aa114bf0003fd\/volver-mid.jpg","studio":"El Deseo","genre":"Comedy","title":"Volver","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"2696"} +{"label":"Carmen Maura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd3\/4cfb5aa27b9aa1514a002cd3\/carmen-maura-profile.jpg","version":51,"id":"2744","lastModified":"1299927906000","name":"Carmen Maura","type":"Person","_key":"2697"} +{"label":"Blanca Portillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4cfbbd787b9aa15146003094\/blanca-portillo-profile.jpg","version":23,"id":"3480","lastModified":"1299492684000","name":"Blanca Portillo","type":"Person","_key":"2698"} +{"label":"Yohana Cobo","version":17,"id":"3481","lastModified":"1299493368000","name":"Yohana Cobo","type":"Person","_key":"2699"} +{"label":"Antonio de la Torre","version":28,"id":"3483","lastModified":"1299492432000","name":"Antonio de la Torre","type":"Person","_key":"2700"} +{"label":"Carlos Blanco","version":14,"id":"4363","lastModified":"1299493579000","name":"Carlos Blanco","type":"Person","_key":"2701"} +{"label":"Mar\u00eda Isabel D\u00edaz","version":23,"id":"4364","lastModified":"1299493009000","name":"Mar\u00eda Isabel D\u00edaz","type":"Person","_key":"2702"} +{"label":"Neus Sanz","version":14,"id":"4365","lastModified":"1299495239000","name":"Neus Sanz","type":"Person","_key":"2703"} +{"label":"Leandro Rivera","version":14,"id":"4366","lastModified":"1299495240000","name":"Leandro Rivera","type":"Person","_key":"2704"} +{"label":"Yolanda Ramos","version":14,"id":"4367","lastModified":"1299494211000","name":"Yolanda Ramos","type":"Person","_key":"2705"} +{"label":"Carlos Garc\u00eda Cambero","version":18,"id":"4368","lastModified":"1299495457000","name":"Carlos Garc\u00eda Cambero","type":"Person","_key":"2706"} +{"label":"Natalia Roig","version":14,"id":"4369","lastModified":"1299493840000","name":"Natalia Roig","type":"Person","_key":"2707"} +{"label":"Eli Iranzo","version":18,"id":"4370","lastModified":"1299494654000","name":"Eli Iranzo","type":"Person","_key":"2708"} +{"label":"Fany de Castro","version":14,"id":"4371","lastModified":"1299495239000","name":"Fany de Castro","type":"Person","_key":"2709"} +{"label":"Concha Gal\u00e1n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a25\/4d067edc5e73d621a2003a25\/concha-galan-profile.jpg","version":17,"birthday":"-196822800000","id":"4372","birthplace":"Madrid, Spain","lastModified":"1299493065000","name":"Concha Gal\u00e1n","type":"Person","_key":"2710"} +{"label":"Magdalena Brotto","version":14,"id":"4373","lastModified":"1299494211000","name":"Magdalena Brotto","type":"Person","_key":"2711"} +{"label":"Pepa Aniorte","version":15,"id":"4374","lastModified":"1299494663000","name":"Pepa Aniorte","type":"Person","_key":"2712"} +{"label":"Isabel Ay\u00facar","version":14,"id":"4375","lastModified":"1299495239000","name":"Isabel Ay\u00facar","type":"Person","_key":"2713"} +{"label":"East of Eden","description":"Two brothers compete for their father's approval and a woman's love.","id":"220","runtime":115,"imdbId":"tt0048028","version":170,"lastModified":"1300016521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/966\/4bc9055f017a3c57fe001966\/east-of-eden-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"East of Eden","releaseDate":-467596800000,"language":"en","type":"Movie","_key":"2714"} +{"label":"Elia Kazan","version":42,"id":"2746","lastModified":"1299603888000","name":"Elia Kazan","type":"Person","_key":"2715"} +{"label":"James Dean","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c34\/4c0cedc5017a3c29a6000c34\/james-dean-profile.jpg","version":19,"id":"2749","lastModified":"1299491882000","name":"James Dean","type":"Person","_key":"2716"} +{"label":"Julie Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/713\/4ca9f9af7b9aa17acc000713\/julie-harris-profile.jpg","version":26,"id":"2750","lastModified":"1299492759000","name":"Julie Harris","type":"Person","_key":"2717"} +{"label":"Richard Davalos","version":22,"id":"2751","lastModified":"1299492919000","name":"Richard Davalos","type":"Person","_key":"2718"} +{"label":"Jo Van Fleet","version":22,"id":"2752","lastModified":"1299493130000","name":"Jo Van Fleet","type":"Person","_key":"2719"} +{"label":"Burl Ives","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86a\/4be2bfde017a3c35bd00086a\/burl-ives-profile.jpg","version":37,"id":"2753","lastModified":"1299492184000","name":"Burl Ives","type":"Person","_key":"2720"} +{"label":"Albert Dekker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c2\/4c473d157b9aa15dde0002c2\/albert-dekker-profile.jpg","version":39,"id":"2755","lastModified":"1300013601000","name":"Albert Dekker","type":"Person","_key":"2721"} +{"label":"Harold Gordon","version":15,"id":"2756","lastModified":"1299493099000","name":"Harold Gordon","type":"Person","_key":"2722"} +{"label":"Nick Dennis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/966\/4ccedff97b9aa16ba0000966\/nick-dennis-profile.jpg","version":28,"id":"2757","lastModified":"1300013602000","name":"Nick Dennis","type":"Person","_key":"2723"} +{"label":"Timothy Carey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4bd815b1017a3c1bfb0000d0\/timothy-carey-profile.jpg","version":34,"id":"2758","lastModified":"1299491485000","name":"Timothy Carey","type":"Person","_key":"2724"} +{"label":"Rebel Without a Cause","description":"The most intimate of Nicholas Ray\u2019s films. About a young troubled youth in a new town. This film embodies what it was like for post-war kids in Middle-America. The kid, played by James Dean in his one of his greatest yet sadly his last performance as he was killed in a car crash before the films release, finds friends, a girl, and shows off with knife fights and racing cars towards cliffs. ","id":"221","runtime":111,"imdbId":"tt0048545","trailer":"http:\/\/www.youtube.com\/watch?v=cAlzg0S51GY","version":187,"lastModified":"1299912512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97b\/4bc90562017a3c57fe00197b\/rebel-without-a-cause-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Rebel Without a Cause","releaseDate":-447552000000,"language":"en","tagline":"Jim Stark - a kid from a 'good' family - what makes him tick...like a bomb?","type":"Movie","_key":"2725"} +{"label":"Nicholas Ray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4c49cb217b9aa115fc0000fa\/nicholas-ray-profile.jpg","version":52,"id":"2765","lastModified":"1300048528000","name":"Nicholas Ray","type":"Person","_key":"2726"} +{"label":"Natalie Wood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/280\/4c22441c7b9aa13227000280\/natalie-wood-profile.jpg","version":44,"id":"2769","lastModified":"1299926752000","name":"Natalie Wood","type":"Person","_key":"2727"} +{"label":"Sal Mineo","version":31,"id":"2770","lastModified":"1299582260000","name":"Sal Mineo","type":"Person","_key":"2728"} +{"label":"Ann Doran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4bcf2a2a017a3c63f1000017\/ann-doran-profile.jpg","version":35,"id":"2772","lastModified":"1299492494000","name":"Ann Doran","type":"Person","_key":"2729"} +{"label":"Jim Backus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b2\/4c5ada3a7b9aa151f30005b2\/jim-backus-profile.jpg","version":38,"id":"2771","lastModified":"1299493364000","name":"Jim Backus","type":"Person","_key":"2730"} +{"label":"Corey Allen","version":25,"id":"2775","lastModified":"1299493602000","name":"Corey Allen","type":"Person","_key":"2731"} +{"label":"William Hopper","version":18,"id":"2776","lastModified":"1299495239000","name":"William Hopper","type":"Person","_key":"2732"} +{"label":"Rochelle Hudson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c5\/4cbc98d57b9aa138d50013c5\/rochelle-hudson-profile.jpg","version":24,"id":"2777","lastModified":"1299493772000","name":"Rochelle Hudson","type":"Person","_key":"2733"} +{"label":"Steffi Sidney","version":15,"id":"2779","lastModified":"1299493614000","name":"Steffi Sidney","type":"Person","_key":"2734"} +{"label":"Virginia Brissac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/775\/4c5c35e47b9aa151f6000775\/virginia-brissac-profile.jpg","version":26,"id":"2780","lastModified":"1299493706000","name":"Virginia Brissac","type":"Person","_key":"2735"} +{"label":"Beverly Long","version":15,"id":"2781","lastModified":"1299494654000","name":"Beverly Long","type":"Person","_key":"2736"} +{"label":"Ian Wolfe","version":55,"id":"2782","lastModified":"1299942746000","name":"Ian Wolfe","type":"Person","_key":"2737"} +{"label":"Frank Mazzola","version":16,"id":"2783","lastModified":"1299494211000","name":"Frank Mazzola","type":"Person","_key":"2738"} +{"label":"Robert Foulk","version":15,"id":"2784","lastModified":"1299494138000","name":"Robert Foulk","type":"Person","_key":"2739"} +{"label":"Jack Simmons","version":17,"id":"2785","lastModified":"1299493325000","name":"Jack Simmons","type":"Person","_key":"2740"} +{"label":"Nick Adams","version":27,"id":"2787","lastModified":"1299494983000","name":"Nick Adams","type":"Person","_key":"2741"} +{"label":"Jack Grinnage","version":14,"id":"2788","lastModified":"1299495239000","name":"Jack Grinnage","type":"Person","_key":"2742"} +{"label":"Clifford Morris","version":14,"id":"2789","lastModified":"1299493094000","name":"Clifford Morris","type":"Person","_key":"2743"} +{"label":"Marietta Canty","version":15,"id":"2790","lastModified":"1299493840000","name":"Marietta Canty","type":"Person","_key":"2744"} +{"label":"Berlin: Symphony of a Great City","description":"Berlin is Walter Ruttmanns black and white documentary of Berlin in 1927. The big city symphony shows a day in the life of metropolitan Berlin. Showing the industrial uprising as well as the lives and working circumstances of the time.","id":"222","runtime":69,"imdbId":"tt0017668","version":79,"lastModified":"1299912824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/989\/4bc90565017a3c57fe001989\/berlin-die-sinfonie-der-grosstadt-mid.jpg","studio":"Deutsche Vereinsfilm AG","genre":"Documentary","title":"Berlin: Symphony of a Great City","releaseDate":-1334102400000,"language":"en","type":"Movie","_key":"2745"} +{"label":"Walter Ruttmann","version":20,"id":"2798","lastModified":"1299493255000","name":"Walter Ruttmann","type":"Person","_key":"2746"} +{"label":"Paul von Hindenburg","version":14,"id":"2797","lastModified":"1299494450000","name":"Paul von Hindenburg","type":"Person","_key":"2747"} +{"label":"Rebecca","description":"Rebecca is a 1940 psychological\/dramatic thriller directed by Alfred Hitchcock as his first American project. It stars Laurence Olivier as Maxim de Winter, Joan Fontaine as his second wife, and Judith Anderson as his late wife's housekeeper, Mrs. Danvers. The film is a gothic tale about the lingering memory of the title character, which still affects Maxim, his new bride, and Mrs. Danvers long after her death. The film won two Academy Awards, including Best Picture out of a total 11 nominations.","id":"223","runtime":130,"imdbId":"tt0032976","trailer":"http:\/\/www.youtube.com\/watch?v=bqRx_a8BAbA","version":116,"lastModified":"1299912072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ded\/4d5974007b9aa15cf3004ded\/rebecca-mid.jpg","studio":"The Selznik Studio","genre":"Drama","title":"Rebecca","releaseDate":-937958400000,"language":"en","tagline":"The shadow of this woman darkened their love","type":"Movie","_key":"2748"} +{"label":"Laurence Olivier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/332\/4c3b360b7b9aa10edc000332\/laurence-olivier-profile.jpg","version":100,"id":"3359","lastModified":"1300048355000","name":"Laurence Olivier","type":"Person","_key":"2749"} +{"label":"Joan Fontaine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/184\/4bd5a0a0017a3c2e7c000184\/joan-fontaine-profile.jpg","version":35,"id":"3360","lastModified":"1299492097000","name":"Joan Fontaine","type":"Person","_key":"2750"} +{"label":"George Sanders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/330\/4c4761417b9aa15ddd000330\/george-sanders-profile.jpg","version":99,"id":"3361","lastModified":"1299670313000","name":"George Sanders","type":"Person","_key":"2751"} +{"label":"Nigel Bruce","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/980\/4be44a13017a3c35b5000980\/nigel-bruce-profile.jpg","version":67,"id":"3363","lastModified":"1300002470000","name":"Nigel Bruce","type":"Person","_key":"2752"} +{"label":"Reginald Denny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e6d\/4bfedb2d017a3c7033000e6d\/reginald-denny-profile.jpg","version":34,"birthday":"-2465082000000","id":"3364","birthplace":"Richmond, Surrey, England, UK","lastModified":"1299492942000","name":"Reginald Denny","type":"Person","_key":"2753"} +{"label":"Gladys Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/80a\/4ccc433b5e73d6502100080a\/gladys-cooper-profile.jpg","version":35,"id":"3366","lastModified":"1299688669000","name":"Gladys Cooper","type":"Person","_key":"2754"} +{"label":"Florence Bates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/979\/4d212bc45e73d66b30002979\/florence-bates-profile.jpg","version":23,"id":"3367","lastModified":"1299491673000","name":"Florence Bates","type":"Person","_key":"2755"} +{"label":"Leonard Carey","version":19,"id":"3368","lastModified":"1299493373000","name":"Leonard Carey","type":"Person","_key":"2756"} +{"label":"Lumsden Hare","version":19,"id":"3369","lastModified":"1299494210000","name":"Lumsden Hare","type":"Person","_key":"2757"} +{"label":"Edward Fielding","version":16,"id":"3370","lastModified":"1299495012000","name":"Edward Fielding","type":"Person","_key":"2758"} +{"label":"Forrester Harvey","version":30,"birthday":"-2698534800000","id":"3371","birthplace":"County Cork, Ireland","lastModified":"1299495336000","name":"Forrester Harvey","type":"Person","_key":"2759"} +{"label":"Philip Winter","version":15,"id":"3372","lastModified":"1299494654000","name":"Philip Winter","type":"Person","_key":"2760"} +{"label":"Man of Marble","description":"Man of Marble is a Polish film about a student making a film about a bricklayer who was once idolized. She interviews people who knew him and finds old footage that lead to an unfolding mystery that causes her producer to cancel the project.","id":"224","runtime":165,"imdbId":"tt0075902","version":84,"lastModified":"1299672134000","studio":"Film Polski Film Agency","genre":"Drama","title":"Man of Marble","releaseDate":225676800000,"language":"en","type":"Movie","_key":"2761"} +{"label":"Andrzej Wajda","version":32,"id":"2801","lastModified":"1299492332000","name":"Andrzej Wajda","type":"Person","_key":"2762"} +{"label":"Krystyna Janda","version":25,"id":"2807","lastModified":"1299493249000","name":"Krystyna Janda","type":"Person","_key":"2763"} +{"label":"Jacek Lomnicki","version":14,"id":"2811","lastModified":"1299495687000","name":"Jacek Lomnicki","type":"Person","_key":"2764"} +{"label":"Micha\u0142 Tarkowski","version":14,"id":"2812","lastModified":"1299495499000","name":"Micha\u0142 Tarkowski","type":"Person","_key":"2765"} +{"label":"Piotr Cieslak","version":14,"id":"2815","lastModified":"1299495499000","name":"Piotr Cieslak","type":"Person","_key":"2766"} +{"label":"Wieslaw W\u00f3jcik","version":14,"id":"2816","lastModified":"1299495499000","name":"Wieslaw W\u00f3jcik","type":"Person","_key":"2767"} +{"label":"Krystyna Zachwatowicz","version":17,"id":"2817","lastModified":"1299495499000","name":"Krystyna Zachwatowicz","type":"Person","_key":"2768"} +{"label":"Magda Teresa W\u00f3jcik","version":14,"id":"2818","lastModified":"1299495499000","name":"Magda Teresa W\u00f3jcik","type":"Person","_key":"2769"} +{"label":"Zdzis\u0142aw Kozie\u0144","version":14,"id":"2819","lastModified":"1299495498000","name":"Zdzis\u0142aw Kozie\u0144","type":"Person","_key":"2770"} +{"label":"Dorota Stali\u0144ska","version":14,"id":"2820","lastModified":"1299495685000","name":"Dorota Stali\u0144ska","type":"Person","_key":"2771"} +{"label":"Kazimierz Kaczor","version":15,"id":"2821","lastModified":"1299495498000","name":"Kazimierz Kaczor","type":"Person","_key":"2772"} +{"label":"Ewa Zi\u0119tek","version":15,"id":"2822","lastModified":"1299493983000","name":"Ewa Zi\u0119tek","type":"Person","_key":"2773"} +{"label":"Andrzej Graziewicz","version":17,"id":"2823","lastModified":"1299495497000","name":"Andrzej Graziewicz","type":"Person","_key":"2774"} +{"label":"Jerzy Moniak","version":14,"id":"2824","lastModified":"1299495497000","name":"Jerzy Moniak","type":"Person","_key":"2775"} +{"label":"Man of Iron","description":"A polish film by director Andrzej Wajda that takes place during Poland\u2019s martial law when solidarity was banned. The sequel to \"Man of Marble\" that won Palme D\u2019Or at the 1981 Cannes film festival.","id":"225","runtime":147,"imdbId":"tt0082222","version":157,"lastModified":"1300048652000","studio":"Zesp\u00f3\u0142 Filmowy TOR","genre":"Drama","title":"Man of Iron","releaseDate":365040000000,"language":"en","type":"Movie","_key":"2776"} +{"label":"Marian Opania","version":16,"id":"2825","lastModified":"1299494512000","name":"Marian Opania","type":"Person","_key":"2777"} +{"label":"Irena Byrska","version":14,"id":"2826","lastModified":"1299495012000","name":"Irena Byrska","type":"Person","_key":"2778"} +{"label":"Wies\u0142awa Kosmalska","version":14,"id":"2827","lastModified":"1299495607000","name":"Wies\u0142awa Kosmalska","type":"Person","_key":"2779"} +{"label":"Franciszek Trzeciak","version":14,"id":"2828","lastModified":"1299494905000","name":"Franciszek Trzeciak","type":"Person","_key":"2780"} +{"label":"Andrzej Seweryn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4c7de1d65e73d648e1000058\/andrzej-seweryn-profile.jpg","version":33,"id":"2829","lastModified":"1299492680000","name":"Andrzej Seweryn","type":"Person","_key":"2781"} +{"label":"Marek Kondrat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4c7de4b05e73d648de00003d\/marek-kondrat-profile.jpg","version":22,"id":"2830","lastModified":"1299494869000","name":"Marek Kondrat","type":"Person","_key":"2782"} +{"label":"Jerzy Trela","version":20,"id":"2831","lastModified":"1299494867000","name":"Jerzy Trela","type":"Person","_key":"2783"} +{"label":"Maja Komorowska","version":15,"id":"2832","lastModified":"1299495685000","name":"Maja Komorowska","type":"Person","_key":"2784"} +{"label":"Janusz Zaorski","version":14,"id":"2833","lastModified":"1299495012000","name":"Janusz Zaorski","type":"Person","_key":"2785"} +{"label":"Wojciech Alaborski","version":14,"id":"2834","lastModified":"1299495016000","name":"Wojciech Alaborski","type":"Person","_key":"2786"} +{"label":"Tatiana Sosna Sarno","version":14,"id":"2835","lastModified":"1299494944000","name":"Tatiana Sosna Sarno","type":"Person","_key":"2787"} +{"label":"Boys Don't Cry","description":"Boys Don\u2019t Cry is a multi-award winning drama about identity and love. The film tells the true story of Brandon Teena, a man who lives in a woman\u2019s body who was at the age of 21 was raped and murdered.","id":"226","runtime":118,"imdbId":"tt0171804","version":161,"lastModified":"1300015954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a9\/4d4bba865e73d617bd0010a9\/boys-don-t-cry-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"Boys Don't Cry","releaseDate":939340800000,"language":"en","type":"Movie","_key":"2788"} +{"label":"Kimberly Peirce","version":16,"id":"2836","lastModified":"1299492919000","name":"Kimberly Peirce","type":"Person","_key":"2789"} +{"label":"Chlo\u00eb Sevigny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4c237f867b9aa13f65000084\/chloe-sevigny-profile.jpg","version":61,"id":"2838","lastModified":"1299491265000","name":"Chlo\u00eb Sevigny","type":"Person","_key":"2790"} +{"label":"Brendan Sexton III","version":31,"id":"2839","lastModified":"1299491384000","name":"Brendan Sexton III","type":"Person","_key":"2791"} +{"label":"Alison Folland","version":26,"id":"2841","lastModified":"1299492654000","name":"Alison Folland","type":"Person","_key":"2792"} +{"label":"Jeanetta Arnette","version":14,"id":"2842","lastModified":"1299493856000","name":"Jeanetta Arnette","type":"Person","_key":"2793"} +{"label":"Matt McGrath","version":17,"id":"2844","lastModified":"1299493363000","name":"Matt McGrath","type":"Person","_key":"2794"} +{"label":"Cheyenne Rushing","version":13,"id":"2845","lastModified":"1299494240000","name":"Cheyenne Rushing","type":"Person","_key":"2795"} +{"label":"Robert Prentiss","version":12,"id":"2846","lastModified":"1299494239000","name":"Robert Prentiss","type":"Person","_key":"2796"} +{"label":"Josh Ridgway","version":12,"id":"2847","lastModified":"1299493589000","name":"Josh Ridgway","type":"Person","_key":"2797"} +{"label":"Craig Erickson","version":12,"id":"2848","lastModified":"1299494239000","name":"Craig Erickson","type":"Person","_key":"2798"} +{"label":"Stephanie Sechrist","version":12,"id":"2849","lastModified":"1299494239000","name":"Stephanie Sechrist","type":"Person","_key":"2799"} +{"label":"Jerry Haynes","version":12,"id":"2850","lastModified":"1299494239000","name":"Jerry Haynes","type":"Person","_key":"2800"} +{"label":"Lisa Renee Wilson","version":12,"id":"2852","lastModified":"1299494239000","name":"Lisa Renee Wilson","type":"Person","_key":"2801"} +{"label":"Jackson D. Kane","version":15,"id":"2853","lastModified":"1299493698000","name":"Jackson D. Kane","type":"Person","_key":"2802"} +{"label":"Joseph Gibson","version":12,"id":"2854","lastModified":"1299494238000","name":"Joseph Gibson","type":"Person","_key":"2803"} +{"label":"Michael Tripp","version":12,"id":"2855","lastModified":"1299494238000","name":"Michael Tripp","type":"Person","_key":"2804"} +{"label":"Shana McClendon","version":12,"id":"2856","lastModified":"1299494239000","name":"Shana McClendon","type":"Person","_key":"2805"} +{"label":"Libby Villari","version":13,"id":"2857","lastModified":"1299494680000","name":"Libby Villari","type":"Person","_key":"2806"} +{"label":"Paige Carl Griggs","version":12,"id":"2858","lastModified":"1299494679000","name":"Paige Carl Griggs","type":"Person","_key":"2807"} +{"label":"Gail Cronauer","version":21,"id":"2859","lastModified":"1299493915000","name":"Gail Cronauer","type":"Person","_key":"2808"} +{"label":"The Outsiders","description":"When two poor greasers, Johnny, and Ponyboy are assaulted by a vicious gang, the socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.","id":"227","runtime":91,"imdbId":"tt0086066","trailer":"http:\/\/www.youtube.com\/watch?v=8tgJqnVMAtc","version":189,"lastModified":"1300015848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/824\/4d500f427b9aa13aba00b824\/the-outsiders-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Outsiders","releaseDate":417398400000,"language":"en","tagline":"They grew up on the outside of society. They weren't looking for a fight. They were looking to belong.","type":"Movie","_key":"2809"} +{"label":"Matt Dillon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4bf8f2dc017a3c70330000ad\/matt-dillon-profile.jpg","version":108,"id":"2876","lastModified":"1299977726000","name":"Matt Dillon","type":"Person","_key":"2810"} +{"label":"Ralph Macchio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4bf845f6017a3c490a000034\/ralph-macchio-profile.jpg","version":38,"id":"2877","lastModified":"1299670386000","name":"Ralph Macchio","type":"Person","_key":"2811"} +{"label":"Rob Lowe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4c5f6d4b7b9aa172d9000006\/rob-lowe-profile.jpg","version":79,"birthday":"-182826000000","id":"2879","birthplace":"Charlottesville, Virginia","lastModified":"1299880457000","name":"Rob Lowe","type":"Person","_key":"2812"} +{"label":"Glenn Withrow","version":18,"id":"2881","lastModified":"1299493854000","name":"Glenn Withrow","type":"Person","_key":"2813"} +{"label":"Diane Lane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4c23b77e5e73d61a9600000b\/diane-lane-profile.jpg","version":92,"birthday":"-155955600000","id":"2882","birthplace":"New York City, New York, USA","lastModified":"1300023674000","name":"Diane Lane","type":"Person","_key":"2814"} +{"label":"Leif Garrett","version":20,"id":"2883","lastModified":"1299494046000","name":"Leif Garrett","type":"Person","_key":"2815"} +{"label":"Darren Dalton","version":18,"id":"2884","lastModified":"1299493563000","name":"Darren Dalton","type":"Person","_key":"2816"} +{"label":"Michelle Meyrink","version":23,"id":"2885","lastModified":"1299494679000","name":"Michelle Meyrink","type":"Person","_key":"2817"} +{"label":"Gailard Sartain","version":33,"id":"2886","lastModified":"1299493773000","name":"Gailard Sartain","type":"Person","_key":"2818"} +{"label":"Tom Waits","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ac\/4bfa7691017a3c702f0004ac\/tom-waits-profile.jpg","version":68,"id":"2887","lastModified":"1299947566000","name":"Tom Waits","type":"Person","_key":"2819"} +{"label":"William Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b2\/4ca351d27b9aa168cf0002b2\/william-smith-profile.jpg","biography":"William Smith is probably best known for his portrayal as \"Falconetti\" in \"Rich Man, Poor Man\" (1976). He first came to the screen as a child actor in films such as Going My Way (1944) and The Song of Bernadette (1943), before entering the service during the Korean War. There, his fluency in five languages landed him in the N.S.A. Security Squadron 6907. While working towards his doctorate, he landed a contract with MGM and never looked back. Over the next thirty years, Smith became one of the k","version":59,"birthday":"-1160528400000","id":"98102","birthplace":"Columbia, Missouri, USA","lastModified":"1299493249000","name":"William Smith","type":"Person","_key":"2820"} +{"label":"The Blue Angel","description":"The Blue Angel \/ Der Blaue Engel is a 1930 German film from Josef von Starnberg. An adaptation of the 1905 novel \u201cThe Blue Angel: Small Town Tyrant.\u201d","id":"228","runtime":108,"imdbId":"tt0020697","version":99,"lastModified":"1299531753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b1\/4bc90569017a3c57fe0019b1\/der-blaue-engel-mid.jpg","studio":"UFA Universum-Film AG","genre":"Drama","title":"The Blue Angel","releaseDate":-1254528000000,"language":"en","type":"Movie","_key":"2821"} +{"label":"Josef von Sternberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4c856d3e5e73d66b5b000010\/josef-von-sternberg-profile.jpg","biography":"Josef von Sternberg, born Jonas Sternberg, 29 May 1894 \u2013 22 December 1969, was an Austrian-American film director. He is considered one of the earliest 'auteur' filmmakers, having filled many other roles on his films including those of cinematographer, screenwriter, and editor. Sternberg's style influenced later directors, particularly those of the film noir period. He is particularly noted for his distinct","version":41,"birthday":"-2385507600000","id":"2891","birthplace":"Vienna, Austria-Hungary","lastModified":"1299688513000","name":"Josef von Sternberg","type":"Person","_key":"2822"} +{"label":"Emil Jannings","version":25,"id":"2895","lastModified":"1299530648000","name":"Emil Jannings","type":"Person","_key":"2823"} +{"label":"Marlene Dietrich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4bdd27d5017a3c20cb00013b\/marlene-dietrich-profile.jpg","version":52,"birthday":"-2146352400000","id":"2896","birthplace":"Schoeneberg, Berlin, Germany","lastModified":"1299688514000","name":"Marlene Dietrich","type":"Person","_key":"2824"} +{"label":"Kurt Gerron","version":19,"id":"2897","lastModified":"1299493745000","name":"Kurt Gerron","type":"Person","_key":"2825"} +{"label":"Rosa Valetti","version":15,"id":"2898","lastModified":"1299493094000","name":"Rosa Valetti","type":"Person","_key":"2826"} +{"label":"Hans Albers","version":23,"id":"2899","lastModified":"1299492814000","name":"Hans Albers","type":"Person","_key":"2827"} +{"label":"Reinhold Bernt","version":14,"id":"2903","lastModified":"1299495101000","name":"Reinhold Bernt","type":"Person","_key":"2828"} +{"label":"Eduard von Winterstein","version":19,"id":"2904","lastModified":"1299493649000","name":"Eduard von Winterstein","type":"Person","_key":"2829"} +{"label":"Hans Roth","version":13,"id":"2905","lastModified":"1299495239000","name":"Hans Roth","type":"Person","_key":"2830"} +{"label":"Rolf M\u00fcller","version":13,"id":"2906","lastModified":"1299495238000","name":"Rolf M\u00fcller","type":"Person","_key":"2831"} +{"label":"Roland Varno","version":16,"id":"2907","lastModified":"1299493623000","name":"Roland Varno","type":"Person","_key":"2832"} +{"label":"Carl Balhaus","version":13,"id":"2908","lastModified":"1299495238000","name":"Carl Balhaus","type":"Person","_key":"2833"} +{"label":"Robert Klein L\u00f6rk","version":13,"id":"2910","lastModified":"1299493840000","name":"Robert Klein L\u00f6rk","type":"Person","_key":"2834"} +{"label":"Charles Puffy","version":14,"id":"2911","lastModified":"1299495238000","name":"Charles Puffy","type":"Person","_key":"2835"} +{"label":"Wilhelm Diegelmann","version":17,"id":"2912","lastModified":"1299495090000","name":"Wilhelm Diegelmann","type":"Person","_key":"2836"} +{"label":"Gerhard Bienert","version":18,"id":"2913","lastModified":"1299494219000","name":"Gerhard Bienert","type":"Person","_key":"2837"} +{"label":"Ilse F\u00fcrstenberg","version":15,"id":"2914","lastModified":"1299495238000","name":"Ilse F\u00fcrstenberg","type":"Person","_key":"2838"} +{"label":"Bride of Frankenstein","description":"Bride of Frankenstein begins where James Whale's Frankenstein from 1931 ended. Dr. Frankenstein has not been killed as previously portrayed and now he wants to get away from the mad experiments. Yet when his wife is kidnapped by his creation, Frankenstein agrees to help him create a new monster, this time a woman.","id":"229","runtime":75,"imdbId":"tt0026138","trailer":"http:\/\/www.youtube.com\/watch?v=r9t6NHlPJHA","version":168,"lastModified":"1299913679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9be\/4bc9056b017a3c57fe0019be\/bride-of-frankenstein-mid.jpg","studio":"Universal Studios","genre":"Drama","title":"Bride of Frankenstein","releaseDate":-1094947200000,"language":"en","tagline":"The monster demands a mate.","type":"Movie","_key":"2839"} +{"label":"James Whale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d9\/4be4451e017a3c35bb0009d9\/james-whale-profile.jpg","version":25,"id":"2917","lastModified":"1299492472000","name":"James Whale","type":"Person","_key":"2840"} +{"label":"Boris Karloff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4bd5b77f017a3c657d000002\/boris-karloff-profile.jpg","version":99,"id":"2922","lastModified":"1299670314000","name":"Boris Karloff","type":"Person","_key":"2841"} +{"label":"Colin Clive","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c7\/4be1ad8b017a3c35c10005c7\/colin-clive-profile.jpg","biography":"Colin Clive was born to a British Colonel and his wife in St. Malo, France on 20 January 1900. His schooling was at the Convent of the Holy Cross, Boscombe, and Stonyhurst College, in preperation for entering Sandhurst, The British Royal Military Academy. Unfortunately, a riding accident shattered the young man's knee and disqualified him for Military Service. Mr. Clive entered the Royal Academy of Dramatic Arts, making his debut in 1919 as 'Claude' in THE ECLIPSE. After almost 10 years of to","version":27,"id":"2923","birthplace":"St. Malo,France","lastModified":"1299491759000","name":"Colin Clive","type":"Person","_key":"2842"} +{"label":"The Godfather Collection","description":"Francis Ford Coppola\u2019s trilogy films about the everyday life of a New York mafia family. With its star-studded cast these films would go down in history as some of the greatest Hollywood has ever produced.","id":"230","version":72,"lastModified":"1299912024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9cf\/4bc9056e017a3c57fe0019cf\/the-godfather-mid.jpg","title":"The Godfather Collection","language":"en","type":"Movie","_key":"2843"} +{"label":"Syriana","description":"This complicated political thriller tells the harrowing story of the oil industry. A CIA agent, an impecunious Pakistani, an expert engineer, and an Arabic Emir; all of whose lives are tied to this black gold tell each of their oil trading stories.","id":"231","runtime":128,"imdbId":"tt0365737","homepage":"http:\/\/syrianamovie.warnerbros.com\/","version":237,"lastModified":"1300022473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e0\/4bc90570017a3c57fe0019e0\/syriana-mid.jpg","studio":"Section Eight","genre":"Action","title":"Syriana","releaseDate":1134086400000,"language":"en","tagline":"Everything is connected.","type":"Movie","_key":"2844"} +{"label":"Stephen Gaghan","version":39,"id":"2945","lastModified":"1299493850000","name":"Stephen Gaghan","type":"Person","_key":"2845"} +{"label":"Jeffrey Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37b\/4c7a400f5e73d613d800037b\/jeffrey-wright-profile.jpg","biography":"effrey Wright was born on December 7, 1965 in Washington, D.C. Jeff's father died when he was a year old, and he was raised by his mother, a lawyer, now retired from the U.S. Customs Department, and his aunt, a former nurse. Jeffrey is happily married to Carmen Ejogo, his co-star in Boycott<\/i>, and they have a son.<\/span>","version":70,"birthday":"-128394000000","id":"2954","birthplace":"Washington, D.C., USA","lastModified":"1299491442000","name":"Jeffrey Wright","type":"Person","_key":"2846"} +{"label":"Amanda Peet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4bca0f7f017a3c0e9900004f\/amanda-peet-profile.jpg","biography":"Amanda Peet grew up in New York with her older sister and their parents; Charles, a lawyer; and Penny, a social worker. She made an unconventional stage debut at the age of three, when she jumped onto the stage during a play. Yet, despite this early start, she later studied acting more as a hobby than anything else. She studied history at Columbia University, where a drama professor convinced her to audition for acting teacher Uta Hagen, with whom she later went on to study for a four-year perio","version":120,"birthday":"63932400000","id":"2956","birthplace":"New York City, New York, USA","lastModified":"1300027482000","name":"Amanda Peet","type":"Person","_key":"2847"} +{"label":"Alexander Siddig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f5\/4d4eed4b7b9aa13ab400a8f5\/alexander-siddig-profile.jpg","version":41,"id":"2957","lastModified":"1299491641000","name":"Alexander Siddig","type":"Person","_key":"2848"} +{"label":"Kayvan Novak","version":24,"id":"2959","lastModified":"1299491942000","name":"Kayvan Novak","type":"Person","_key":"2849"} +{"label":"Amr Waked","version":18,"id":"2960","lastModified":"1299494075000","name":"Amr Waked","type":"Person","_key":"2850"} +{"label":"Robert Foxworth","version":30,"id":"2962","lastModified":"1299492795000","name":"Robert Foxworth","type":"Person","_key":"2851"} +{"label":"Nicky Henson","version":19,"id":"2964","lastModified":"1299493325000","name":"Nicky Henson","type":"Person","_key":"2852"} +{"label":"Nicholas Art","version":21,"id":"2965","lastModified":"1299492649000","name":"Nicholas Art","type":"Person","_key":"2853"} +{"label":"Steven Hinkle","version":17,"id":"2966","lastModified":"1299493325000","name":"Steven Hinkle","type":"Person","_key":"2854"} +{"label":"Daisy Torm\u00e9","version":16,"id":"2967","lastModified":"1299494211000","name":"Daisy Torm\u00e9","type":"Person","_key":"2855"} +{"label":"Richard Lintern","version":30,"id":"2968","lastModified":"1299754926000","name":"Richard Lintern","type":"Person","_key":"2856"} +{"label":"Mazhar Munir","version":17,"id":"2971","lastModified":"1299494500000","name":"Mazhar Munir","type":"Person","_key":"2857"} +{"label":"Jocelyn Quivrin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d95\/4d27e28f7b9aa134e0001d95\/jocelyn-quivrin-profile.jpg","version":34,"id":"2970","lastModified":"1299833006000","name":"Jocelyn Quivrin","type":"Person","_key":"2858"} +{"label":"Shahid Ahmed","version":24,"id":"2972","lastModified":"1299492473000","name":"Shahid Ahmed","type":"Person","_key":"2859"} +{"label":"Bikram Singh Bhamra","version":16,"id":"2973","lastModified":"1299493839000","name":"Bikram Singh Bhamra","type":"Person","_key":"2860"} +{"label":"Roger Yuan","version":21,"id":"2974","lastModified":"1299493628000","name":"Roger Yuan","type":"Person","_key":"2861"} +{"label":"Jamey Sheridan","version":28,"id":"2977","lastModified":"1299493027000","name":"Jamey Sheridan","type":"Person","_key":"2862"} +{"label":"Max Minghella","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a1\/4c3959815e73d671d40000a1\/max-minghella-profile.jpg","version":52,"id":"2978","lastModified":"1300012940000","name":"Max Minghella","type":"Person","_key":"2863"} +{"label":"Nadim Sawalha","version":22,"id":"2980","lastModified":"1299492915000","name":"Nadim Sawalha","type":"Person","_key":"2864"} +{"label":"Akbar Kurtha","version":19,"id":"2981","lastModified":"1299494500000","name":"Akbar Kurtha","type":"Person","_key":"2865"} +{"label":"Sonnell Dadral","version":18,"id":"2982","lastModified":"1299493649000","name":"Sonnell Dadral","type":"Person","_key":"2866"} +{"label":"Mark Strong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4bc9f3c4017a3c0e99000022\/mark-strong-profile.jpg","version":137,"id":"2983","lastModified":"1299860116000","name":"Mark Strong","type":"Person","_key":"2867"} +{"label":"Badria Timimi","version":16,"id":"2984","lastModified":"1299494210000","name":"Badria Timimi","type":"Person","_key":"2868"} +{"label":"Rumble Fish","description":"Rumble Fish is Coppola\u2019s second gang film after \u2018The Outsiders,\u2019 based on the novel from S. E. Hinton. He tells the story of a young gang leader named Rusty James in an aesthetically black and white filmed tale.","id":"232","runtime":94,"imdbId":"tt0086216","trailer":"http:\/\/www.youtube.com\/watch?v=7voEoWRKbAE","version":166,"lastModified":"1300015290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ef\/4bc90572017a3c57fe0019ef\/rumble-fish-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Rumble Fish","releaseDate":434419200000,"language":"en","type":"Movie","_key":"2869"} +{"label":"Diana Scarwid","version":42,"id":"2958","lastModified":"1299787536000","name":"Diana Scarwid","type":"Person","_key":"2870"} +{"label":"Vincent Spano","version":32,"id":"2961","lastModified":"1299492845000","name":"Vincent Spano","type":"Person","_key":"2871"} +{"label":"Nicolas Cage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bb\/4c439f2c5e73d60f370003bb\/nicolas-cage-profile.jpg","biography":"Nicolas Cage (born Nicolas Kim Coppola; January 7, 1964) is an American actor.\n\nCage pursued acting as a career, making his debut on television in 1981. Cage has been featured in \"bad boy\" roles, and has won awards such as the Academy Award for Best Actor in 1995 for his lead role in Leaving Las Vegas, and the Toronto Film Critics Association Award for Best Actor in 2002 for Adaptation.\n\nCage has appeared in over 60 films including Face\/Off (1997), Gone In 60 Seconds (2000), National Treasure (2","version":305,"birthday":"-188874000000","id":"2963","birthplace":"Long Beach, California, USA","lastModified":"1299947845000","name":"Nicolas Cage","type":"Person","_key":"2872"} +{"label":"Chris Penn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd8\/4cba5fb17b9aa138d6000bd8\/chris-penn-profile.jpg","version":77,"id":"2969","lastModified":"1299880456000","name":"Chris Penn","type":"Person","_key":"2873"} +{"label":"Michael Higgins","version":30,"id":"2979","lastModified":"1299492664000","name":"Michael Higgins","type":"Person","_key":"2874"} +{"label":"S.E. Hinton","version":24,"id":"2868","lastModified":"1299493589000","name":"S.E. Hinton","type":"Person","_key":"2875"} +{"label":"The Wanderers","description":"The streets of the Bronx are owned by 60\u2019s youth gangs where the joy and pain of adolescence is lived. Philip Kaufman tells his take on the novel by Richard Price about the history of the Italian-American gang \u2018The Wanderers.\u2019","id":"233","runtime":117,"imdbId":"tt0080117","version":120,"lastModified":"1299911555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fd\/4bc90576017a3c57fe0019fd\/the-wanderers-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"The Wanderers","releaseDate":300672000000,"language":"en","type":"Movie","_key":"2876"} +{"label":"Philip Kaufman","version":72,"id":"648","lastModified":"1299492971000","name":"Philip Kaufman","type":"Person","_key":"2877"} +{"label":"Ken Wahl","version":14,"id":"3002","lastModified":"1299494014000","name":"Ken Wahl","type":"Person","_key":"2878"} +{"label":"John Friedrich","version":17,"id":"3004","lastModified":"1299493392000","name":"John Friedrich","type":"Person","_key":"2879"} +{"label":"Toni Kalem","version":12,"id":"3006","lastModified":"1299495328000","name":"Toni Kalem","type":"Person","_key":"2880"} +{"label":"Alan Rosenberg","version":16,"id":"3008","lastModified":"1299495102000","name":"Alan Rosenberg","type":"Person","_key":"2881"} +{"label":"Jim Youngs","version":12,"id":"3009","lastModified":"1299494741000","name":"Jim Youngs","type":"Person","_key":"2882"} +{"label":"Tony Ganios","version":14,"id":"3010","lastModified":"1299493890000","name":"Tony Ganios","type":"Person","_key":"2883"} +{"label":"Linda Manz","version":15,"id":"3011","lastModified":"1299494283000","name":"Linda Manz","type":"Person","_key":"2884"} +{"label":"William Andrews","version":12,"id":"3012","lastModified":"1299495328000","name":"William Andrews","type":"Person","_key":"2885"} +{"label":"Erland van Lidth","version":19,"id":"3013","lastModified":"1299493905000","name":"Erland van Lidth","type":"Person","_key":"2886"} +{"label":"Val Avery","version":22,"id":"3014","lastModified":"1299493999000","name":"Val Avery","type":"Person","_key":"2887"} +{"label":"Dolph Sweet","version":16,"id":"3015","lastModified":"1299493610000","name":"Dolph Sweet","type":"Person","_key":"2888"} +{"label":"Burtt Harris","version":19,"id":"3016","lastModified":"1299689063000","name":"Burtt Harris","type":"Person","_key":"2889"} +{"label":"Samm-Art Williams","version":12,"id":"3017","lastModified":"1299494740000","name":"Samm-Art Williams","type":"Person","_key":"2890"} +{"label":"Dion Albanese","version":12,"id":"3018","lastModified":"1299494740000","name":"Dion Albanese","type":"Person","_key":"2891"} +{"label":"Olympia Dukakis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05c\/4bd3e8ac017a3c7fa600005c\/olympia-dukakis-profile.jpg","version":39,"id":"3019","lastModified":"1299492033000","name":"Olympia Dukakis","type":"Person","_key":"2892"} +{"label":"George Merolle","version":13,"id":"3020","lastModified":"1299495011000","name":"George Merolle","type":"Person","_key":"2893"} +{"label":"Terri Perri","version":12,"id":"3021","lastModified":"1299494740000","name":"Terri Perri","type":"Person","_key":"2894"} +{"label":"Das Cabinet des Dr. Caligari","description":"An eerie German silent film from 1920. This classic expressionistic film is known as a landmark in film history becoming famous worldwide from it\u2019s exceptional new wave style of well built and painted grotesque scenery with contrasted lighting along with the painted effect of light and shadows. The film tells a surrealistic story with an unusual end that was a result of censorship. ","id":"234","runtime":71,"imdbId":"tt0010323","version":119,"lastModified":"1299912600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0a\/4bc90577017a3c57fe001a0a\/das-cabinet-des-dr-caligari-mid.jpg","studio":"Decla Film Gesellschaft Holz & Co.","genre":"Crime","title":"Das Cabinet des Dr. Caligari","releaseDate":-1573084800000,"language":"en","type":"Movie","_key":"2895"} +{"label":"Robert Wiene","version":15,"id":"2991","lastModified":"1299493464000","name":"Robert Wiene","type":"Person","_key":"2896"} +{"label":"Conrad Veidt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4bcf2feb017a3c63f500002d\/conrad-veidt-profile.jpg","version":38,"id":"3001","lastModified":"1299493193000","name":"Conrad Veidt","type":"Person","_key":"2897"} +{"label":"Friedrich Feh\u00e9r","version":14,"id":"3003","lastModified":"1299494074000","name":"Friedrich Feh\u00e9r","type":"Person","_key":"2898"} +{"label":"Lil Dagover","version":18,"id":"3005","lastModified":"1299494362000","name":"Lil Dagover","type":"Person","_key":"2899"} +{"label":"Hans Heinrich von Twardowski","version":18,"id":"3007","lastModified":"1299492537000","name":"Hans Heinrich von Twardowski","type":"Person","_key":"2900"} +{"label":"Rudolph Lettinger","version":17,"id":"98072","lastModified":"1299508112000","name":"Rudolph Lettinger","type":"Person","_key":"2901"} +{"label":"Werner Krauss","version":24,"id":"3000","lastModified":"1299494015000","name":"Werner Krauss","type":"Person","_key":"2902"} +{"label":"Stand by Me","description":"The film\u2019s name comes from the song \u2018Stand By Me\u2019 by Ben E. King from 1961. The song was also the theme song. This film was modeled from a novella by Stephen King called \u2018The Body\u2019 and was the first filmed story from the author. The film tells the story of a group of 10-year-old friends out on their own and the trials and tribulation they are confronted with along the journey.","id":"235","runtime":85,"imdbId":"tt0092005","trailer":"http:\/\/www.youtube.com\/watch?v=FUVnfaA-kpI","version":158,"lastModified":"1299912918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4c1c3a965e73d607ba000094\/stand-by-me-mid.jpg","studio":"Columbia Pictures","genre":"Crime","title":"Stand by Me","releaseDate":523843200000,"language":"en","type":"Movie","_key":"2903"} +{"label":"Rob Reiner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09b\/4d0dc10c5e73d6371c00109b\/rob-reiner-profile.jpg","version":128,"id":"3026","lastModified":"1299958009000","name":"Rob Reiner","type":"Person","_key":"2904"} +{"label":"Wil Wheaton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4cdc25115e73d606e400003c\/wil-wheaton-profile.jpg","version":18,"id":"3033","lastModified":"1299928326000","name":"Wil Wheaton","type":"Person","_key":"2905"} +{"label":"Corey Feldman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27c\/4cbc6c057b9aa138d600127c\/corey-feldman-profile.jpg","version":68,"birthday":"48466800000","id":"3034","birthplace":"Chatsworth","lastModified":"1299494905000","name":"Corey Feldman","type":"Person","_key":"2906"} +{"label":"Jerry O'Connell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4c7e6b6d7b9aa10d9500019f\/jerry-o-connell-profile.jpg","version":77,"id":"3035","lastModified":"1299491816000","name":"Jerry O'Connell","type":"Person","_key":"2907"} +{"label":"John Cusack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bca0e2c017a3c0e9600003b\/john-cusack-profile.jpg","version":153,"id":"3036","lastModified":"1299791611000","name":"John Cusack","type":"Person","_key":"2908"} +{"label":"Richard Dreyfuss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4c235f257b9aa13f5f000044\/richard-dreyfuss-profile.jpg","version":148,"id":"3037","lastModified":"1299899626000","name":"Richard Dreyfuss","type":"Person","_key":"2909"} +{"label":"Gary Riley","version":15,"id":"3038","lastModified":"1299494508000","name":"Gary Riley","type":"Person","_key":"2910"} +{"label":"Bradley Gregg","version":22,"id":"3039","lastModified":"1299492637000","name":"Bradley Gregg","type":"Person","_key":"2911"} +{"label":"Jason Oliver","version":17,"id":"3040","lastModified":"1299494265000","name":"Jason Oliver","type":"Person","_key":"2912"} +{"label":"Marshall Bell","version":54,"id":"3041","lastModified":"1299689594000","name":"Marshall Bell","type":"Person","_key":"2913"} +{"label":"Bruce Kirby","version":15,"id":"3042","lastModified":"1299494500000","name":"Bruce Kirby","type":"Person","_key":"2914"} +{"label":"William Bronder","version":15,"id":"3043","lastModified":"1299493601000","name":"William Bronder","type":"Person","_key":"2915"} +{"label":"Scott Beach","version":17,"id":"3044","lastModified":"1299494264000","name":"Scott Beach","type":"Person","_key":"2916"} +{"label":"Muriel's Wedding","description":"Muriel\u2019s Wedding is P.J. Hogan\u2019s film debut. A humorous emancipation story of an unemployed woman who evolves from a dreamer into a self sustaining successful woman. An amusing comedy that\u2019s funny, silly, angry and serious.","id":"236","runtime":106,"imdbId":"tt0110598","version":121,"lastModified":"1300014857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2d\/4bc9057c017a3c57fe001a2d\/muriel-s-wedding-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Muriel's Wedding","releaseDate":794793600000,"language":"en","type":"Movie","_key":"2917"} +{"label":"P.J. Hogan","version":31,"id":"3045","lastModified":"1299958229000","name":"P.J. Hogan","type":"Person","_key":"2918"} +{"label":"Toni Collette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b4\/4c95d6cd7b9aa10d580002b4\/toni-collette-profile.jpg","version":85,"birthday":"89420400000","id":"3051","birthplace":"Sydney, New South Wales, Australia","lastModified":"1299582133000","name":"Toni Collette","type":"Person","_key":"2919"} +{"label":"Rachel Griffiths","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f1\/4bf52a04017a3c320a0007f1\/rachel-griffiths-profile.jpg","biography":"Australian actress Rachel Griffiths burst onto the big screen as Toni Collette\u2019s spitfire sidekick in the sleeper hit \u201cMuriel\u2019s Wedding\u201d (1994), before going on to appear in over a dozen Australian, British, and American films including \u201cHilary and Jackie\u201d (1998), \u201cBlow\u201d (2001) and \u201cNed Kelly\u201d (2003). In 2001, the actress known for emotional and intellectual characters, was well-cast in the highly-acclaimed HBO series \u201cSix Feet Under\u201d (HBO, 2001-05), earning a number of award nominations for her","version":37,"id":"3052","lastModified":"1299492079000","name":"Rachel Griffiths","type":"Person","_key":"2920"} +{"label":"Sophie Lee","version":23,"id":"3053","lastModified":"1299492524000","name":"Sophie Lee","type":"Person","_key":"2921"} +{"label":"Roz Hammond","version":17,"id":"3054","lastModified":"1299494027000","name":"Roz Hammond","type":"Person","_key":"2922"} +{"label":"Belinda Jarrett","version":15,"id":"3057","lastModified":"1299495011000","name":"Belinda Jarrett","type":"Person","_key":"2923"} +{"label":"Pippa Grandison","version":18,"id":"3059","lastModified":"1299976492000","name":"Pippa Grandison","type":"Person","_key":"2924"} +{"label":"Jeanie Drynan","version":15,"id":"3060","lastModified":"1299495268000","name":"Jeanie Drynan","type":"Person","_key":"2925"} +{"label":"Dan Wyllie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aea\/4d07e6c97b9aa11bc1003aea\/dan-wyllie-profile.jpg","version":27,"id":"3062","lastModified":"1299492371000","name":"Dan Wyllie","type":"Person","_key":"2926"} +{"label":"Gabby Millgate","version":14,"id":"3066","lastModified":"1299495268000","name":"Gabby Millgate","type":"Person","_key":"2927"} +{"label":"Gennie Nevinson","version":14,"id":"3067","lastModified":"1299494679000","name":"Gennie Nevinson","type":"Person","_key":"2928"} +{"label":"Matt Day","version":23,"id":"3068","lastModified":"1300002668000","name":"Matt Day","type":"Person","_key":"2929"} +{"label":"Chris Haywood","version":26,"id":"3070","lastModified":"1299492789000","name":"Chris Haywood","type":"Person","_key":"2930"} +{"label":"Daniel Lapaine","version":27,"id":"3072","lastModified":"1299692988000","name":"Daniel Lapaine","type":"Person","_key":"2931"} +{"label":"Young Adam","description":"A writer working on a river boat sees a woman dead in the water while with one of his employers. The knows more about the dead woman than he tells. The story unfolds in flashbacks as writer begins causing trouble with his unrevealed knowledge.","id":"237","runtime":93,"imdbId":"tt0289635","homepage":"http:\/\/www.sonyclassics.com\/youngadam\/","version":130,"lastModified":"1300014756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4c93f5805e73d63a74000084\/young-adam-mid.jpg","studio":"Xenix Film","genre":"Drama","title":"Young Adam","releaseDate":1064534400000,"language":"en","type":"Movie","_key":"2932"} +{"label":"David Mackenzie","version":28,"id":"3055","lastModified":"1299492459000","name":"David Mackenzie","type":"Person","_key":"2933"} +{"label":"Tilda Swinton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4c2b71c37b9aa15e980000f5\/tilda-swinton-profile.jpg","version":137,"birthday":"-288925200000","id":"3063","birthplace":"London, United Kingdom","lastModified":"1299802022000","name":"Tilda Swinton","type":"Person","_key":"2934"} +{"label":"Peter Mullan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d4\/4ce2d4587b9aa168b10003d4\/peter-mullan-profile.jpg","version":49,"id":"3064","lastModified":"1299581012000","name":"Peter Mullan","type":"Person","_key":"2935"} +{"label":"Jack McElhone","version":16,"id":"3065","lastModified":"1299494443000","name":"Jack McElhone","type":"Person","_key":"2936"} +{"label":"Therese Bradley","version":15,"id":"3069","lastModified":"1299494081000","name":"Therese Bradley","type":"Person","_key":"2937"} +{"label":"Ewan Stewart","version":40,"id":"3071","lastModified":"1299746700000","name":"Ewan Stewart","type":"Person","_key":"2938"} +{"label":"Pauline Turner","version":14,"id":"3073","lastModified":"1299494506000","name":"Pauline Turner","type":"Person","_key":"2939"} +{"label":"Alan Cooke","version":14,"id":"3074","lastModified":"1299494923000","name":"Alan Cooke","type":"Person","_key":"2940"} +{"label":"Rory McCann","version":23,"id":"3075","lastModified":"1299493478000","name":"Rory McCann","type":"Person","_key":"2941"} +{"label":"Ian Hanmore","version":14,"id":"3076","lastModified":"1299494454000","name":"Ian Hanmore","type":"Person","_key":"2942"} +{"label":"Anne Marie Timoney","version":16,"id":"3077","lastModified":"1299494471000","name":"Anne Marie Timoney","type":"Person","_key":"2943"} +{"label":"The Godfather","description":"The story spans the years from 1945 to 1955 and chronicles the fictional Italian American Corleone crime family. When organized crime family patriarch Vito Corleone barely survives an attempt on his life, his youngest son, Michael, steps in to take care of the would-be killers, launching a campaign of bloody revenge.","id":"238","runtime":175,"imdbId":"tt0068646","trailer":"http:\/\/www.youtube.com\/watch?v=YBrs0wvkPls","version":379,"lastModified":"1300014659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4c2f6daf7b9aa16664000131\/the-godfather-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Godfather","releaseDate":69465600000,"language":"en","tagline":"An offer you can't refuse","type":"Movie","_key":"2944"} +{"label":"James Caan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b9\/4c23875f7b9aa13f620000b9\/james-caan-profile.jpg","version":125,"id":"3085","lastModified":"1299948651000","name":"James Caan","type":"Person","_key":"2945"} +{"label":"Richard S. Castellano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1eb\/4caf30807b9aa121390001eb\/richard-s-castellano-profile.jpg","version":22,"id":"3086","lastModified":"1299491823000","name":"Richard S. Castellano","type":"Person","_key":"2946"} +{"label":"Sterling Hayden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4bd5c576017a3c6580000037\/sterling-hayden-profile.jpg","version":57,"id":"3088","lastModified":"1299833364000","name":"Sterling Hayden","type":"Person","_key":"2947"} +{"label":"Richard Conte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4bd5c447017a3c6589000034\/richard-conte-profile.jpg","version":55,"id":"3090","lastModified":"1299491164000","name":"Richard Conte","type":"Person","_key":"2948"} +{"label":"Al Lettieri","version":29,"id":"3091","lastModified":"1299492007000","name":"Al Lettieri","type":"Person","_key":"2949"} +{"label":"Diane Keaton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/206\/4beedd92017a3c4589000206\/diane-keaton-profile.jpg","version":140,"id":"3092","lastModified":"1299767695000","name":"Diane Keaton","type":"Person","_key":"2950"} +{"label":"Abe Vigoda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4d0dab415e73d6371600101f\/abe-vigoda-profile.jpg","version":34,"birthday":"-1541638800000","id":"3093","birthplace":"New York City, New York, USA","lastModified":"1299492447000","name":"Abe Vigoda","type":"Person","_key":"2951"} +{"label":"Talia Shire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/695\/4c9b772e7b9aa122df000695\/talia-shire-profile.jpg","version":120,"id":"3094","lastModified":"1299491322000","name":"Talia Shire","type":"Person","_key":"2952"} +{"label":"Gianni Russo","version":22,"id":"3095","lastModified":"1299492137000","name":"Gianni Russo","type":"Person","_key":"2953"} +{"label":"John Cazale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c23a2377b9aa14470000022\/john-cazale-profile.jpg","version":42,"id":"3096","lastModified":"1299491975000","name":"John Cazale","type":"Person","_key":"2954"} +{"label":"John Marley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d7\/4bfbd1b7017a3c702f0007d7\/john-marley-profile.jpg","biography":"Marley was a character actor who's biggest success came later in life. He's recognized today as one of the mobsters in \"The Godfather.\" The craggy-faced actor appeared in dozens of television shows and movies.","version":33,"id":"3142","lastModified":"1299689186000","name":"John Marley","type":"Person","_key":"2955"} +{"label":"Rudy Bond","version":31,"id":"3143","lastModified":"1299492007000","name":"Rudy Bond","type":"Person","_key":"2956"} +{"label":"Al Martino","version":18,"id":"3144","lastModified":"1299492139000","name":"Al Martino","type":"Person","_key":"2957"} +{"label":"Simonetta Stefanelli","version":21,"id":"3145","lastModified":"1299492324000","name":"Simonetta Stefanelli","type":"Person","_key":"2958"} +{"label":"Victor Rendina","version":18,"id":"3413","lastModified":"1299492305000","name":"Victor Rendina","type":"Person","_key":"2959"} +{"label":"Tony Giorgio","version":19,"id":"3414","lastModified":"1299492229000","name":"Tony Giorgio","type":"Person","_key":"2960"} +{"label":"Some Like It Hot","description":"Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl as they leave on a tour. To make their getaway, they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate rich and very determined suitor.","id":"239","runtime":120,"imdbId":"tt0053291","trailer":"http:\/\/www.youtube.com\/watch?v=vB66Gnf5JMg","version":158,"lastModified":"1300014530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03d\/4c36037a7b9aa102cc00003d\/some-like-it-hot-mid.jpg","studio":"Ashton Productions","genre":"Comedy","title":"Some Like It Hot","releaseDate":-339724800000,"language":"en","tagline":"The movie too HOT for words!","type":"Movie","_key":"2961"} +{"label":"Billy Wilder","version":139,"id":"3146","lastModified":"1300013464000","name":"Billy Wilder","type":"Person","_key":"2962"} +{"label":"Marilyn Monroe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/711\/4be178fe017a3c35b4000711\/marilyn-monroe-profile.jpg","version":68,"birthday":"-1375491600000","id":"3149","birthplace":"Los Angeles, California, U.S.","lastModified":"1300048355000","name":"Marilyn Monroe","type":"Person","_key":"2963"} +{"label":"Tony Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/051\/4c35e1397b9aa17ff1000051\/tony-curtis-profile.jpg","version":89,"birthday":"-1406854800000","id":"3150","birthplace":"Bronx, New York, USA","lastModified":"1300027583000","name":"Tony Curtis","type":"Person","_key":"2964"} +{"label":"Jack Lemmon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c5f77eb5e73d63460000012\/jack-lemmon-profile.jpg","version":96,"id":"3151","lastModified":"1299948541000","name":"Jack Lemmon","type":"Person","_key":"2965"} +{"label":"George Raft","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/038\/4bcf38a3017a3c63ed000038\/george-raft-profile.jpg","version":48,"id":"3152","lastModified":"1299948542000","name":"George Raft","type":"Person","_key":"2966"} +{"label":"Joe E. Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/205\/4c051698017a3c33d9000205\/joe-e-brown-profile.jpg","version":27,"birthday":"-2443395600000","id":"3156","birthplace":"Holgate, Ohio, USA","lastModified":"1299948542000","name":"Joe E. Brown","type":"Person","_key":"2967"} +{"label":"Nehemiah Persoff","version":31,"id":"3160","lastModified":"1299948542000","name":"Nehemiah Persoff","type":"Person","_key":"2968"} +{"label":"Joan Shawlee","version":24,"id":"3161","lastModified":"1299948542000","name":"Joan Shawlee","type":"Person","_key":"2969"} +{"label":"Barbara Drew","version":17,"id":"3168","lastModified":"1299948542000","name":"Barbara Drew","type":"Person","_key":"2970"} +{"label":"Edward G. Robinson Jr.","version":20,"id":"81501","lastModified":"1299948542000","name":"Edward G. Robinson Jr.","type":"Person","_key":"2971"} +{"label":"Pat O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4bcf2584017a3c63f5000008\/pat-o-brien-profile.jpg","version":34,"id":"3155","lastModified":"1299948542000","name":"Pat O'Brien","type":"Person","_key":"2972"} +{"label":"George E. Stone","version":30,"id":"3163","lastModified":"1299948542000","name":"George E. Stone","type":"Person","_key":"2973"} +{"label":"Mike Mazurki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4bd7093a017a3c21ea000147\/mike-mazurki-profile.jpg","version":46,"id":"84229","lastModified":"1299948542000","name":"Mike Mazurki","type":"Person","_key":"2974"} +{"label":"The Godfather: Part II","description":"The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba","id":"240","runtime":200,"imdbId":"tt0071562","trailer":"http:\/\/www.youtube.com\/watch?v=3KD8c5MHrn4","version":280,"lastModified":"1300014383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/174\/4c2f6e7e7b9aa16662000174\/the-godfather-part-ii-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Godfather: Part II","releaseDate":156038400000,"language":"en","tagline":"I don't feel I have to wipe everybody out, Tom. Just my enemies.","type":"Movie","_key":"2975"} +{"label":"Lee Strasberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b5\/4d4ee56f7b9aa13ab800a6b5\/lee-strasberg-profile.jpg","version":24,"id":"3171","lastModified":"1299492780000","name":"Lee Strasberg","type":"Person","_key":"2976"} +{"label":"Michael V. Gazzo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/72f\/4d4ee6b17b9aa13aaf00a72f\/michael-v-gazzo-profile.jpg","version":32,"id":"3172","lastModified":"1299492687000","name":"Michael V. Gazzo","type":"Person","_key":"2977"} +{"label":"Richard Bright","version":34,"id":"3174","lastModified":"1299494547000","name":"Richard Bright","type":"Person","_key":"2978"} +{"label":"Francesca De Sapio","version":23,"id":"3279","lastModified":"1299492636000","name":"Francesca De Sapio","type":"Person","_key":"2979"} +{"label":"Oreste Baldini","version":22,"id":"3280","lastModified":"1299492636000","name":"Oreste Baldini","type":"Person","_key":"2980"} +{"label":"Gastone Moschin","version":32,"id":"3281","lastModified":"1299492320000","name":"Gastone Moschin","type":"Person","_key":"2981"} +{"label":"Giuseppe Sillato","version":22,"id":"3333","lastModified":"1299492635000","name":"Giuseppe Sillato","type":"Person","_key":"2982"} +{"label":"Natural Born Killers","description":"Two victims of traumatized childhoods become lovers and psychopathic serial murderers irresponsibly glorified by the mass media.","id":"241","runtime":118,"imdbId":"tt0110632","version":188,"lastModified":"1300014220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae4\/4bc9059a017a3c57fe001ae4\/natural-born-killers-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Natural Born Killers","releaseDate":777859200000,"language":"en","type":"Movie","_key":"2983"} +{"label":"Oliver Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a0\/4cb7fa357b9aa138d60006a0\/oliver-stone-profile.jpg","version":227,"birthday":"-735184800000","id":"1152","birthplace":"New York City, New York","lastModified":"1299833767000","name":"Oliver Stone","type":"Person","_key":"2984"} +{"label":"Woody Harrelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4bd42350017a3c7fb2000071\/woody-harrelson-profile.jpg","version":162,"id":"57755","lastModified":"1299948834000","name":"Woody Harrelson","type":"Person","_key":"2985"} +{"label":"Juliette Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/533\/4c559d037b9aa147f4000533\/juliette-lewis-profile.jpg","version":136,"id":"3196","lastModified":"1299944360000","name":"Juliette Lewis","type":"Person","_key":"2986"} +{"label":"Tom Sizemore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f5\/4c6e88bd7b9aa13ab70007f5\/tom-sizemore-profile.jpg","version":111,"id":"3197","lastModified":"1299961758000","name":"Tom Sizemore","type":"Person","_key":"2987"} +{"label":"Rodney Dangerfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36c\/4c580eec7b9aa151f200036c\/rodney-dangerfield-profile.jpg","version":41,"id":"3198","lastModified":"1299612245000","name":"Rodney Dangerfield","type":"Person","_key":"2988"} +{"label":"Everett Quinton","version":18,"id":"3199","lastModified":"1299612245000","name":"Everett Quinton","type":"Person","_key":"2989"} +{"label":"Pruitt Taylor Vince","version":50,"id":"3201","lastModified":"1300030402000","name":"Pruitt Taylor Vince","type":"Person","_key":"2990"} +{"label":"Edie McClurg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ff\/4d6c56bf5e73d607330011ff\/edie-mcclurg-profile.jpg","version":45,"id":"3202","lastModified":"1299612318000","name":"Edie McClurg","type":"Person","_key":"2991"} +{"label":"Russell Means","version":32,"id":"3203","lastModified":"1299612245000","name":"Russell Means","type":"Person","_key":"2992"} +{"label":"Lanny Flaherty","version":31,"id":"3204","lastModified":"1299612245000","name":"Lanny Flaherty","type":"Person","_key":"2993"} +{"label":"Richard Lineback","version":36,"id":"3205","lastModified":"1299612246000","name":"Richard Lineback","type":"Person","_key":"2994"} +{"label":"Kirk Baltz","version":38,"id":"3206","lastModified":"1299612246000","name":"Kirk Baltz","type":"Person","_key":"2995"} +{"label":"Terrylene","version":18,"id":"3207","lastModified":"1299612246000","name":"Terrylene","type":"Person","_key":"2996"} +{"label":"Maria Pitillo","version":25,"id":"3208","lastModified":"1299612246000","name":"Maria Pitillo","type":"Person","_key":"2997"} +{"label":"Josh Richman","version":24,"id":"3209","lastModified":"1300011879000","name":"Josh Richman","type":"Person","_key":"2998"} +{"label":"Sean Stone","version":18,"id":"3210","lastModified":"1299612246000","name":"Sean Stone","type":"Person","_key":"2999"} +{"label":"Dale Dye","version":59,"id":"3211","lastModified":"1299753743000","name":"Dale Dye","type":"Person","_key":"3000"} +{"label":"Evan Handler","version":31,"id":"3212","lastModified":"1299612246000","name":"Evan Handler","type":"Person","_key":"3001"} +{"label":"Lorraine Farris","version":19,"id":"3213","lastModified":"1299612246000","name":"Lorraine Farris","type":"Person","_key":"3002"} +{"label":"Steven Wright","version":33,"id":"3214","lastModified":"1299927194000","name":"Steven Wright","type":"Person","_key":"3003"} +{"label":"Joe Grifasi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4c9cf85e7b9aa1430e00018b\/joe-grifasi-profile.jpg","version":37,"id":"4887","lastModified":"1299612246000","name":"Joe Grifasi","type":"Person","_key":"3004"} +{"label":"Jim Carrane","version":21,"id":"3216","lastModified":"1299612246000","name":"Jim Carrane","type":"Person","_key":"3005"} +{"label":"Robert Swan","version":23,"id":"3217","lastModified":"1299793338000","name":"Robert Swan","type":"Person","_key":"3006"} +{"label":"Louis Lombardi","version":28,"id":"3218","lastModified":"1299612246000","name":"Louis Lombardi","type":"Person","_key":"3007"} +{"label":"Robert Downey Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4bc9f26e017a3c0e95000015\/robert-downey-jr-profile.jpg","biography":"Robert John Downey, Jr. (born April 4, 1965) is an American actor and musician. Downey made his screen debut at the age of five when he appeared in one of his father's films, and has worked consistently in film and television ever since.\n\nDowney was born in New York City, New York, the younger of two children. His father, Robert Downey, Sr., is an actor, writer, producer, cinematographer, and director of underground films and his mother, Elsie, is also an actress and appeared in Downey Sr.'s fil","version":203,"birthday":"-149734800000","id":"3223","birthplace":"New York City, New York, USA","lastModified":"1300011879000","name":"Robert Downey Jr.","type":"Person","_key":"3008"} +{"label":"Jared Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4d76a4fc5e73d67ef4000115\/jared-harris-profile.jpg","version":54,"id":"15440","lastModified":"1299617516000","name":"Jared Harris","type":"Person","_key":"3009"} +{"label":"The Godfather: Part III","description":"In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don Michael Corleone seeks to vow for his sins while taking a young protege under his wing.The last film from the Godfather trilogy ends the story of the mafia boss Michael Corleone sixteen years after the first two Godfathers. Critics and the public alike say it did not live up to the level or success as the firsts did although it was nominated for seven Oscars.","id":"242","runtime":162,"imdbId":"tt0099674","trailer":"http:\/\/www.youtube.com\/watch?v=MkbFkZIeOdI","homepage":"http:\/\/www.imdb.com\/title\/tt0099674\/","version":209,"lastModified":"1299913277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/350\/4ce10b2b5e73d60f6e000350\/the-godfather-part-iii-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"The Godfather: Part III","releaseDate":662083200000,"language":"en","tagline":"Real power can't be given. It must be taken.","type":"Movie","_key":"3010"} +{"label":"Eli Wallach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d8\/4bd8175b017a3c1bfb0000d8\/eli-wallach-profile.jpg","version":104,"id":"3265","lastModified":"1299543475000","name":"Eli Wallach","type":"Person","_key":"3011"} +{"label":"George Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76c\/4d4ee96c7b9aa13aaf00a76c\/george-hamilton-profile.jpg","version":45,"id":"3267","lastModified":"1299492200000","name":"George Hamilton","type":"Person","_key":"3012"} +{"label":"Raf Vallone","version":39,"id":"3268","lastModified":"1299492707000","name":"Raf Vallone","type":"Person","_key":"3013"} +{"label":"Franc D'Ambrosio","version":25,"id":"3269","lastModified":"1299493343000","name":"Franc D'Ambrosio","type":"Person","_key":"3014"} +{"label":"High Fidelity","description":"When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back.","id":"243","runtime":114,"imdbId":"tt0146882","version":118,"lastModified":"1300013992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0b\/4c0fc749017a3c7e89000d0b\/high-fidelity-mid.jpg","studio":"Buena Vista","genre":"Comedy","title":"High Fidelity","releaseDate":954460800000,"language":"en","tagline":"A comedy about fear of commitment, hating your job, falling in love and other pop favorites.","type":"Movie","_key":"3015"} +{"label":"Stephen Frears","version":57,"id":"3224","lastModified":"1300040673000","name":"Stephen Frears","type":"Person","_key":"3016"} +{"label":"Todd Louiso","version":40,"id":"3230","lastModified":"1299944360000","name":"Todd Louiso","type":"Person","_key":"3017"} +{"label":"King Kong","description":"An adventure film about a film crew in search of a monster on a remote island. The crew finds King Kong and decides to take him back to New York as a money making spectacle. The film is a masterpiece of Stop-Motion in filmmaking history and inspired a line of King Kong films.","id":"244","runtime":100,"imdbId":"tt0024216","trailer":"http:\/\/www.youtube.com\/watch?v=3cXCwrzODKo","version":150,"lastModified":"1300013869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4c27647f7b9aa1446e0002a7\/king-kong-mid.jpg","studio":"RKO Radio Pictures, Inc.","genre":"Action","title":"King Kong","releaseDate":-1162425600000,"language":"en","type":"Movie","_key":"3018"} +{"label":"Merian C. Cooper","version":41,"id":"3238","lastModified":"1299493166000","name":"Merian C. Cooper","type":"Person","_key":"3019"} +{"label":"Ernest B. Schoedsack","version":29,"id":"3239","lastModified":"1299492810000","name":"Ernest B. Schoedsack","type":"Person","_key":"3020"} +{"label":"Fay Wray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/654\/4bf4494e017a3c3215000654\/fay-wray-profile.jpg","version":27,"id":"3242","lastModified":"1299492089000","name":"Fay Wray","type":"Person","_key":"3021"} +{"label":"Robert Armstrong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4c7cfe9e7b9aa10ab3000094\/robert-armstrong-profile.jpg","version":37,"id":"3243","lastModified":"1299582463000","name":"Robert Armstrong","type":"Person","_key":"3022"} +{"label":"Bruce Cabot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4c3cad2f7b9aa1263f00000e\/bruce-cabot-profile.jpg","version":43,"id":"3244","lastModified":"1299492268000","name":"Bruce Cabot","type":"Person","_key":"3023"} +{"label":"Noble Johnson","version":18,"id":"3247","lastModified":"1299493617000","name":"Noble Johnson","type":"Person","_key":"3024"} +{"label":"Steve Clemente","version":15,"id":"3261","lastModified":"1299494250000","name":"Steve Clemente","type":"Person","_key":"3025"} +{"label":"James Flavin","version":25,"id":"3262","lastModified":"1299493894000","name":"James Flavin","type":"Person","_key":"3026"} +{"label":"Sam Hardy","version":19,"id":"3246","lastModified":"1299495009000","name":"Sam Hardy","type":"Person","_key":"3027"} +{"label":"About a Boy","description":"The film version of Nick Horby\u2019s best-seller about a boy\u2019s right of passage to adulthood. The still inexperienced Will searches for the possibility to meet women and therefore learns the responsibility of becoming an adult.","id":"245","runtime":101,"imdbId":"tt0276751","trailer":"http:\/\/www.youtube.com\/watch?v=XyGtvlR9o8s","homepage":"http:\/\/movies.uip.de\/aboutaboy\/","version":150,"lastModified":"1300013765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b59\/4bc905b1017a3c57fe001b59\/about-a-boy-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"About a Boy","releaseDate":1021593600000,"language":"en","type":"Movie","_key":"3028"} +{"label":"Chris Weitz","version":89,"id":"3288","lastModified":"1300047445000","name":"Chris Weitz","type":"Person","_key":"3029"} +{"label":"Paul Weitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77f\/4d20f8375e73d66b3000277f\/paul-weitz-profile.jpg","version":90,"id":"3289","birthplace":"New York City, New York, USA","lastModified":"1300047445000","name":"Paul Weitz","type":"Person","_key":"3030"} +{"label":"Hugh Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4da\/4cd787ae5e73d676d20004da\/hugh-grant-profile.jpg","version":94,"id":"3291","lastModified":"1299791791000","name":"Hugh Grant","type":"Person","_key":"3031"} +{"label":"Nicholas Hoult","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d74\/4cba6e457b9aa138d7000d74\/nicholas-hoult-profile.jpg","version":31,"id":"3292","lastModified":"1299491982000","name":"Nicholas Hoult","type":"Person","_key":"3032"} +{"label":"Rachel Weisz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4bec3955017a3c37a50001df\/rachel-weisz-profile.jpg","biography":"

Rachel Hannah Weisz (pronounced \/\u02c8va\u026as\/ \"veyess\", like the word \"vice\";[1] born 7 March 1970)[2] is an English screen and theatre actress.[3] She gained wide public recognition after her portrayal of Evelyn \"Evy\" Carnahan-O'Connell in the films The Mummy and The Mummy Returns. In 2001, she starred opposite Hugh Grant in the hit About a Boy and continued to garner leading roles in Hollywood productions. Her performance in The Constant Gardener (2005) won her the Academy Award for Best Supporti","version":117,"birthday":"5612400000","id":"3293","birthplace":"London, England, UK","lastModified":"1299894744000","name":"Rachel Weisz","type":"Person","_key":"3033"} +{"label":"Sharon Small","version":18,"id":"3294","lastModified":"1299493838000","name":"Sharon Small","type":"Person","_key":"3034"} +{"label":"Madison Cook","version":16,"id":"3295","lastModified":"1299494654000","name":"Madison Cook","type":"Person","_key":"3035"} +{"label":"Jordan Cook","version":16,"id":"3296","lastModified":"1299494654000","name":"Jordan Cook","type":"Person","_key":"3036"} +{"label":"Nicholas Hutchison","version":16,"id":"3297","lastModified":"1299494211000","name":"Nicholas Hutchison","type":"Person","_key":"3037"} +{"label":"Ryan Speechley","version":16,"id":"3298","lastModified":"1299494654000","name":"Ryan Speechley","type":"Person","_key":"3038"} +{"label":"Joseph Speechley","version":16,"id":"3299","lastModified":"1299494653000","name":"Joseph Speechley","type":"Person","_key":"3039"} +{"label":"Natalia Tena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f55\/4cf176645e73d61927000f55\/natalia-tena-profile.jpg","version":40,"id":"3300","lastModified":"1299859150000","name":"Natalia Tena","type":"Person","_key":"3040"} +{"label":"Isabel Brook","version":20,"id":"3301","lastModified":"1299494462000","name":"Isabel Brook","type":"Person","_key":"3041"} +{"label":"Orlando Thor Newman","version":16,"id":"3302","lastModified":"1299494653000","name":"Orlando Thor Newman","type":"Person","_key":"3042"} +{"label":"Russell Barr","version":16,"id":"3303","lastModified":"1299494653000","name":"Russell Barr","type":"Person","_key":"3043"} +{"label":"Denise Stephenson","version":16,"id":"3306","lastModified":"1299494653000","name":"Denise Stephenson","type":"Person","_key":"3044"} +{"label":"Peter Roy","version":16,"id":"3307","lastModified":"1299494653000","name":"Peter Roy","type":"Person","_key":"3045"} +{"label":"Rosalind Knight","version":23,"id":"3308","lastModified":"1300047941000","name":"Rosalind Knight","type":"Person","_key":"3046"} +{"label":"Augustus Prew","version":30,"id":"3309","lastModified":"1299957723000","name":"Augustus Prew","type":"Person","_key":"3047"} +{"label":"Victoria Smurfit","version":21,"id":"3315","lastModified":"1299493325000","name":"Victoria Smurfit","type":"Person","_key":"3048"} +{"label":"The Blind Swordsman: Zatoichi","description":"\"Beat\" Takeshi (Takeshi Kitano), the director, also stars as the legendary figure of the blind samurai Zatoichi in this high-budget revival of the classic Zatoichi series of samurai film and television dramas. The story starts with a traditional theme: Zat\u014dichi comes to the defense of townspeople caught up in a local Yakuza gang war and forced to pay excessive protection money.","id":"246","runtime":111,"imdbId":"tt0363226","version":162,"lastModified":"1299911160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04f\/4d0766c15e73d621a500404f\/zatoichi-mid.jpg","studio":"Office Kitano","genre":"Action","title":"The Blind Swordsman: Zatoichi","releaseDate":1062460800000,"language":"en","type":"Movie","_key":"3049"} +{"label":"Takeshi Kitano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4bd46195017a3c7fa6000120\/takeshi-kitano-profile.jpg","version":181,"id":"3317","lastModified":"1299937592000","name":"Takeshi Kitano","type":"Person","_key":"3050"} +{"label":"Tadanobu Asano","version":42,"id":"13275","lastModified":"1299493186000","name":"Tadanobu Asano","type":"Person","_key":"3051"} +{"label":"Michiyo Ookusu","version":18,"id":"13276","lastModified":"1299493855000","name":"Michiyo Ookusu","type":"Person","_key":"3052"} +{"label":"Gadarukanaru Taka","version":21,"id":"13277","lastModified":"1299493588000","name":"Gadarukanaru Taka","type":"Person","_key":"3053"} +{"label":"Daigor\u014d Tachibana","version":16,"id":"13278","lastModified":"1299498410000","name":"Daigor\u014d Tachibana","type":"Person","_key":"3054"} +{"label":"Y\u00fbko Daike","version":27,"id":"13257","lastModified":"1299916794000","name":"Y\u00fbko Daike","type":"Person","_key":"3055"} +{"label":"Yui Natsukawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/662\/4d3904d37b9aa1614b000662\/yui-natsukawa-profile.jpg","version":24,"id":"13280","lastModified":"1299496064000","name":"Yui Natsukawa","type":"Person","_key":"3056"} +{"label":"Ittoku Kishibe","version":23,"id":"13281","lastModified":"1299500816000","name":"Ittoku Kishibe","type":"Person","_key":"3057"} +{"label":"Saburo Ishikura","version":16,"id":"13282","lastModified":"1299500543000","name":"Saburo Ishikura","type":"Person","_key":"3058"} +{"label":"Akira Emoto","version":25,"id":"13283","lastModified":"1299498411000","name":"Akira Emoto","type":"Person","_key":"3059"} +{"label":"The Killing","description":"The Killing was Stanley Kubrick\u2019s first film with a professional cast and the first time he achieved public recognition as the unconventional director he\u2019s now known for. The story is of ex-prisoners who plan to set up a racetrack so they can live a life without monetary worries. One of the more exceptional films of the 1950\u2019s.","id":"247","runtime":85,"imdbId":"tt0049406","version":143,"lastModified":"1299912631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f12\/4d58bd727b9aa16bca002f12\/the-killing-mid.jpg","studio":"United Artists","genre":"Crime","title":"The Killing","releaseDate":-429753600000,"language":"en","type":"Movie","_key":"3060"} +{"label":"Coleen Gray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33c\/4bf1af75017a3c320b00033c\/coleen-gray-profile.jpg","version":24,"id":"3336","lastModified":"1299493177000","name":"Coleen Gray","type":"Person","_key":"3061"} +{"label":"Vince Edwards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ff\/4bf2a8e4017a3c32150003ff\/vince-edwards-profile.jpg","version":30,"id":"3337","lastModified":"1299492548000","name":"Vince Edwards","type":"Person","_key":"3062"} +{"label":"Jay C. Flippen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4bcf2853017a3c63ef00001b\/jay-c-flippen-profile.jpg","version":41,"id":"3338","lastModified":"1299493425000","name":"Jay C. Flippen","type":"Person","_key":"3063"} +{"label":"Elisha Cook Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/068\/4bd81662017a3c1c09000068\/elisha-cook-jr-profile.jpg","version":61,"birthday":"-2083366800000","id":"3339","lastModified":"1299491285000","name":"Elisha Cook Jr.","type":"Person","_key":"3064"} +{"label":"Marie Windsor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/140\/4bd6fcef017a3c21f1000140\/marie-windsor-profile.jpg","version":35,"id":"3340","lastModified":"1299491668000","name":"Marie Windsor","type":"Person","_key":"3065"} +{"label":"Joe Sawyer","version":26,"id":"3341","lastModified":"1299492619000","name":"Joe Sawyer","type":"Person","_key":"3066"} +{"label":"James Edwards","version":23,"id":"3342","lastModified":"1299493233000","name":"James Edwards","type":"Person","_key":"3067"} +{"label":"Jay Adler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4bd5b9d1017a3c6589000024\/jay-adler-profile.jpg","biography":"Jay Adler (September 26, 1896 \u2013 September 23, 1978) was an American actor in theater, television, and film.\n\nBorn in New York City, New York, he was the eldest child of Yiddish theater stars Jacob and Sara Adler, and the brother of the more famous Luther and actress Stella Adler.\n\nJay Adler died at age 81 in Woodland Hills, California and was buried in the Mount Carmel Cemetery, Glendale, New York.","version":24,"birthday":"-2311981200000","id":"3343","birthplace":"New York City, New York, USA","lastModified":"1299491595000","name":"Jay Adler","type":"Person","_key":"3068"} +{"label":"Kola Kwariani","version":14,"id":"3344","lastModified":"1299493717000","name":"Kola Kwariani","type":"Person","_key":"3069"} +{"label":"Tito Vuolo","version":25,"id":"3345","lastModified":"1299495029000","name":"Tito Vuolo","type":"Person","_key":"3070"} +{"label":"Dorothy Adams","version":18,"id":"3346","lastModified":"1299494582000","name":"Dorothy Adams","type":"Person","_key":"3071"} +{"label":"James Griffith","version":20,"id":"3347","lastModified":"1299493746000","name":"James Griffith","type":"Person","_key":"3072"} +{"label":"Art Gilmore","version":14,"id":"3348","lastModified":"1299494072000","name":"Art Gilmore","type":"Person","_key":"3073"} +{"label":"Pocketful of Miracles","description":"How can a drunken beggar in just one night become a High-Society woman? This type of thing only happens in fairytales. Or maybe in Hollywood. This fairytale is sweet and funny, told by director Frank Capra.","id":"248","runtime":136,"imdbId":"tt0055312","version":96,"lastModified":"1299912803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d5\/4c6aa9d67b9aa13ab90000d5\/pocketful-of-miracles-mid.jpg","studio":"Franton Production","genre":"Comedy","title":"Pocketful of Miracles","releaseDate":-253584000000,"language":"en","type":"Movie","_key":"3074"} +{"label":"Bette Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ef\/4bf187e3017a3c320d0001ef\/bette-davis-profile.jpg","version":97,"id":"3380","lastModified":"1299833607000","name":"Bette Davis","type":"Person","_key":"3075"} +{"label":"Glenn Ford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4bd5b67b017a3c6589000015\/glenn-ford-profile.jpg","version":74,"id":"3381","lastModified":"1299692365000","name":"Glenn Ford","type":"Person","_key":"3076"} +{"label":"Hope Lange","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ef\/4c3b32cc7b9aa10ede0002ef\/hope-lange-profile.jpg","version":26,"id":"3382","lastModified":"1299492727000","name":"Hope Lange","type":"Person","_key":"3077"} +{"label":"Thomas Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4bd5b5df017a3c657e00001c\/thomas-mitchell-profile.jpg","version":61,"id":"3383","lastModified":"1300048494000","name":"Thomas Mitchell","type":"Person","_key":"3078"} +{"label":"Peter Mann","version":14,"id":"3384","lastModified":"1299495614000","name":"Peter Mann","type":"Person","_key":"3079"} +{"label":"Mickey Shaughnessy","version":26,"id":"3442","lastModified":"1299582498000","name":"Mickey Shaughnessy","type":"Person","_key":"3080"} +{"label":"Ann-Margret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5bd\/4c5adf457b9aa151f70005bd\/ann-margret-profile.jpg","biography":"

This Swedish-born actress and singer has remained one of the most \nfamous sex symbols and actresses since the early 1960s, and has \ncontinued her career through the following decades. Born in Sweden on \nApril 28, 1941, she came to America at age 6. She studied at \nNorthwestern University and left for Las Vegas to pursue a career as a \nsinger. She was discovered by George Burns<\/a>\n and soon afterward got both a record deal at RCA and a film contra","version":60,"birthday":"-905047200000","id":"13567","birthplace":"Valsj\u00f6byn, J\u00e4mtlands l\u00e4n, Sweden","lastModified":"1299669977000","name":"Ann-Margret","type":"Person","_key":"3081"} +{"label":"The War of the Roses","description":"Danny DeVito\u2019s message on the theme of divorce goes from a romantic Hollywood comedy to a dark raven comedy thriller. ","id":"249","runtime":112,"imdbId":"tt0098621","version":121,"lastModified":"1300013341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4bc905b5017a3c57fe001b81\/the-war-of-the-roses-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"The War of the Roses","releaseDate":599616000000,"language":"en","type":"Movie","_key":"3082"} +{"label":"Kathleen Turner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a8\/4d1b063a5e73d6082e00b2a8\/kathleen-turner-profile.jpg","version":60,"id":"3391","lastModified":"1299753703000","name":"Kathleen Turner","type":"Person","_key":"3083"} +{"label":"Michael Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4bda0d58017a3c2c43000004\/michael-douglas-profile.jpg","version":178,"birthday":"-797392800000","id":"3392","birthplace":"New Brunswick, New Jersey","lastModified":"1299950640000","name":"Michael Douglas","type":"Person","_key":"3084"} +{"label":"Marianne S\u00e4gebrecht","version":26,"id":"32645","lastModified":"1299492247000","name":"Marianne S\u00e4gebrecht","type":"Person","_key":"3085"} +{"label":"In China They Eat Dogs","description":"An intent fast paced Danish dark comedy film about two separately motivated brothers who with their slightly psychopathic tendencies end up in a touchy situation. One brother gets in serious trouble after a bank robbery and begs the other brother for help.","id":"250","runtime":91,"imdbId":"tt0180748","version":115,"lastModified":"1300013191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93c\/4d0fef277b9aa1195e00393c\/i-kina-spiser-de-hunde-mid.jpg","studio":"Steen Herdel Filmproduktion","genre":"Action","title":"In China They Eat Dogs","releaseDate":936921600000,"language":"en","type":"Movie","_key":"3086"} +{"label":"Lasse Spang Olsen","version":27,"id":"3395","lastModified":"1299492679000","name":"Lasse Spang Olsen","type":"Person","_key":"3087"} +{"label":"Dejan Cukic","version":27,"id":"3397","lastModified":"1299493029000","name":"Dejan Cukic","type":"Person","_key":"3088"} +{"label":"Kim Bodnia","version":32,"id":"3398","lastModified":"1299492244000","name":"Kim Bodnia","type":"Person","_key":"3089"} +{"label":"Brian Patterson","version":18,"id":"3399","lastModified":"1299493245000","name":"Brian Patterson","type":"Person","_key":"3090"} +{"label":"Tomas Villum Jensen","version":26,"id":"3401","lastModified":"1299494072000","name":"Tomas Villum Jensen","type":"Person","_key":"3091"} +{"label":"Line Kruse","version":19,"id":"3402","lastModified":"1299493180000","name":"Line Kruse","type":"Person","_key":"3092"} +{"label":"S\u00f8ren S\u00e6tter-Lassen","version":17,"id":"3407","lastModified":"1299495025000","name":"S\u00f8ren S\u00e6tter-Lassen","type":"Person","_key":"3093"} +{"label":"Lester Wiese","version":16,"id":"3408","lastModified":"1299495680000","name":"Lester Wiese","type":"Person","_key":"3094"} +{"label":"Lasse Lunderskov","version":17,"id":"3409","lastModified":"1299495494000","name":"Lasse Lunderskov","type":"Person","_key":"3095"} +{"label":"Preben Harris","version":16,"id":"3410","lastModified":"1299495009000","name":"Preben Harris","type":"Person","_key":"3096"} +{"label":"Slavko Labovic","version":18,"id":"3411","lastModified":"1299493681000","name":"Slavko Labovic","type":"Person","_key":"3097"} +{"label":"Martin Spang Olsen","version":18,"id":"3412","lastModified":"1299495494000","name":"Martin Spang Olsen","type":"Person","_key":"3098"} +{"label":"Trine Dyrholm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9e\/4c10ba3d017a3c7e92000e9e\/trine-dyrholm-profile.jpg","version":21,"id":"4460","lastModified":"1299495099000","name":"Trine Dyrholm","type":"Person","_key":"3099"} +{"label":"Ghost","description":"Gothamites Sam and Molly see their romance shattered when a street thug kills Sam during a mugging. But love endures beyond the grave when a spectral Sam learns that Molly is in danger and he must find a way to warn her before she suffers his fate.","id":"251","runtime":128,"imdbId":"tt0099653","version":193,"lastModified":"1300013054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bad\/4bc905ba017a3c57fe001bad\/ghost-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Ghost","releaseDate":647827200000,"language":"en","tagline":"A love that will last forever.","type":"Movie","_key":"3100"} +{"label":"Jerry Zucker","version":49,"id":"3415","lastModified":"1299833701000","name":"Jerry Zucker","type":"Person","_key":"3101"} +{"label":"Demi Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/564\/4c02438d017a3c7033001564\/demi-moore-profile.jpg","version":132,"id":"3416","lastModified":"1299961399000","name":"Demi Moore","type":"Person","_key":"3102"} +{"label":"Vincent Schiavelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4cd64e767b9aa11b24000231\/vincent-schiavelli-profile.jpg","version":47,"id":"3418","lastModified":"1299950642000","name":"Vincent Schiavelli","type":"Person","_key":"3103"} +{"label":"Vivian Bonnell","version":16,"id":"3419","lastModified":"1299492628000","name":"Vivian Bonnell","type":"Person","_key":"3104"} +{"label":"Armelia McQueen","version":16,"id":"3420","lastModified":"1299494652000","name":"Armelia McQueen","type":"Person","_key":"3105"} +{"label":"Gail Boggs","version":16,"id":"3422","lastModified":"1299494652000","name":"Gail Boggs","type":"Person","_key":"3106"} +{"label":"Stephen Root","version":86,"id":"17401","lastModified":"1299946960000","name":"Stephen Root","type":"Person","_key":"3107"} +{"label":"Angelina Estrada","version":16,"id":"3424","lastModified":"1299495237000","name":"Angelina Estrada","type":"Person","_key":"3108"} +{"label":"Augie Blunt","version":16,"id":"3425","lastModified":"1299494652000","name":"Augie Blunt","type":"Person","_key":"3109"} +{"label":"Derek Thompson","version":26,"id":"3426","lastModified":"1299494572000","name":"Derek Thompson","type":"Person","_key":"3110"} +{"label":"Rick Aviles","version":24,"id":"3432","lastModified":"1299492783000","name":"Rick Aviles","type":"Person","_key":"3111"} +{"label":"Phil Leeds","version":16,"id":"3433","lastModified":"1299495237000","name":"Phil Leeds","type":"Person","_key":"3112"} +{"label":"Alma Beltran","version":17,"id":"3434","lastModified":"1299494651000","name":"Alma Beltran","type":"Person","_key":"3113"} +{"label":"Tony Goldwyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/778\/4d05c66c7b9aa11bc3002778\/tony-goldwyn-profile.jpg","version":74,"id":"3417","lastModified":"1299492019000","name":"Tony Goldwyn","type":"Person","_key":"3114"} +{"label":"Willy Wonka & the Chocolate Factory","description":"Eccentric candy man Willy Wonka prompts a worldwide frenzy when he announces that golden tickets hidden inside five of his delicious candy bars will admit their lucky holders into his top-secret confectionary. But does Wonka have an agenda hidden amid a world of Oompa Loompas and chocolate rivers?","id":"252","runtime":100,"imdbId":"tt0067992","trailer":"http:\/\/www.youtube.com\/watch?v=NAtok5mw3s8","version":157,"lastModified":"1299912701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4c3d30ea7b9aa13a3f00006b\/willy-wonka-and-the-chocolate-factory-mid.jpg","studio":"David L. Wolper Productions","genre":"Comedy","title":"Willy Wonka & the Chocolate Factory","releaseDate":47088000000,"language":"en","tagline":"It's Scrumdiddlyumptious!","type":"Movie","_key":"3115"} +{"label":"Mel Stuart","version":21,"id":"3451","lastModified":"1299492967000","name":"Mel Stuart","type":"Person","_key":"3116"} +{"label":"Gene Wilder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c0\/4c6544f67b9aa1775a0006c0\/gene-wilder-profile.jpg","version":79,"id":"3460","lastModified":"1299985518000","name":"Gene Wilder","type":"Person","_key":"3117"} +{"label":"Jack Albertson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e7\/4ca349eb7b9aa168e00002e7\/jack-albertson-profile.jpg","version":31,"id":"3461","lastModified":"1299760415000","name":"Jack Albertson","type":"Person","_key":"3118"} +{"label":"Peter Ostrum","version":17,"id":"3462","lastModified":"1299492851000","name":"Peter Ostrum","type":"Person","_key":"3119"} +{"label":"Roy Kinnear","version":40,"id":"3463","lastModified":"1299492594000","name":"Roy Kinnear","type":"Person","_key":"3120"} +{"label":"Julie Dawn Cole","version":16,"id":"3464","lastModified":"1299493347000","name":"Julie Dawn Cole","type":"Person","_key":"3121"} +{"label":"Leonard Stone","version":16,"id":"3467","lastModified":"1299493601000","name":"Leonard Stone","type":"Person","_key":"3122"} +{"label":"Denise Nickerson","version":16,"id":"3468","lastModified":"1299493115000","name":"Denise Nickerson","type":"Person","_key":"3123"} +{"label":"Nora Denney","version":16,"id":"3469","lastModified":"1299493348000","name":"Nora Denney","type":"Person","_key":"3124"} +{"label":"Paris Themmen","version":16,"id":"3470","lastModified":"1299493601000","name":"Paris Themmen","type":"Person","_key":"3125"} +{"label":"Ursula Reit","version":17,"id":"3471","lastModified":"1299493347000","name":"Ursula Reit","type":"Person","_key":"3126"} +{"label":"Diana Sowle","version":16,"id":"3473","lastModified":"1299493601000","name":"Diana Sowle","type":"Person","_key":"3127"} +{"label":"Aubrey Woods","version":19,"id":"3474","lastModified":"1299780075000","name":"Aubrey Woods","type":"Person","_key":"3128"} +{"label":"David Battley","version":17,"id":"3475","lastModified":"1299493115000","name":"David Battley","type":"Person","_key":"3129"} +{"label":"Peter Capell","version":19,"id":"3476","lastModified":"1299492928000","name":"Peter Capell","type":"Person","_key":"3130"} +{"label":"Pat Coombs","version":19,"id":"3478","lastModified":"1299493874000","name":"Pat Coombs","type":"Person","_key":"3131"} +{"label":"G\u00fcnter Meisner","version":21,"id":"3617","lastModified":"1299493391000","name":"G\u00fcnter Meisner","type":"Person","_key":"3132"} +{"label":"Live and Let Die","description":"James Bond must investigate a mysterious murder case of a British agent in New York. Soon he finds himself up against a big gangster boss named Mr. Big. This the eight film of the James Bond series and the first one to star Roger Moore as the British undercover agent 007.","id":"253","runtime":121,"imdbId":"tt0070328","trailer":"http:\/\/www.youtube.com\/watch?v=xRgICh0dK9I","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=LIVEANDL","version":162,"lastModified":"1299911999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a0\/4d43984f7b9aa15bb50055a0\/live-and-let-die-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"Live and Let Die","releaseDate":110678400000,"language":"en","tagline":"Roger M007re is James Bond.","type":"Movie","_key":"3133"} +{"label":"Guy Hamilton","version":67,"id":"9915","lastModified":"1299497709000","name":"Guy Hamilton","type":"Person","_key":"3134"} +{"label":"Roger Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4d1acdba7b9aa1148600503b\/roger-moore-profile.jpg","version":126,"id":"10222","lastModified":"1300042478000","name":"Roger Moore","type":"Person","_key":"3135"} +{"label":"Yaphet Kotto","version":60,"id":"5050","lastModified":"1300003387000","name":"Yaphet Kotto","type":"Person","_key":"3136"} +{"label":"Jane Seymour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/159\/4ca125d05e73d612d7000159\/jane-seymour-profile.jpg","version":53,"id":"10223","lastModified":"1299492150000","name":"Jane Seymour","type":"Person","_key":"3137"} +{"label":"Clifton James","version":42,"id":"10224","lastModified":"1299492528000","name":"Clifton James","type":"Person","_key":"3138"} +{"label":"Julius Harris","version":31,"id":"6772","lastModified":"1299492706000","name":"Julius Harris","type":"Person","_key":"3139"} +{"label":"Geoffrey Holder","version":24,"id":"10225","lastModified":"1299493625000","name":"Geoffrey Holder","type":"Person","_key":"3140"} +{"label":"David Hedison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4bd70bc5017a3c21f20000fa\/david-hedison-profile.jpg","version":37,"id":"10226","lastModified":"1299493242000","name":"David Hedison","type":"Person","_key":"3141"} +{"label":"Gloria Hendry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/614\/4c9b6db47b9aa122e1000614\/gloria-hendry-profile.jpg","version":23,"id":"10227","lastModified":"1299493563000","name":"Gloria Hendry","type":"Person","_key":"3142"} +{"label":"Bernard Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/590\/4cf7e2087b9aa15149001590\/bernard-lee-profile.jpg","version":131,"id":"9874","lastModified":"1299490984000","name":"Bernard Lee","type":"Person","_key":"3143"} +{"label":"Lois Maxwell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48d\/4c9b631a7b9aa1275900048d\/lois-maxwell-profile.jpg","version":144,"id":"9878","lastModified":"1299490993000","name":"Lois Maxwell","type":"Person","_key":"3144"} +{"label":"Tommy Lane","version":19,"id":"10228","lastModified":"1299493838000","name":"Tommy Lane","type":"Person","_key":"3145"} +{"label":"Roy Stewart","version":20,"id":"10229","lastModified":"1299493879000","name":"Roy Stewart","type":"Person","_key":"3146"} +{"label":"King Kong","description":"Carl Denham needs to finish his movie and has the perfect location; Skull Island. But he still needs to find a leading lady. This 'soon-to-be-unfortunate' soul is Ann Darrow. No one knows what they will encounter on this island and why it is so mysterious, but once they reach it, they will soon find out. Living on this hidden island is a giant gorilla and this beast now has Ann is its grasps. Carl and Ann's new love, Jack Driscoll must travel through the jungle looking for Kong and Ann, whilst a","id":"254","runtime":187,"imdbId":"tt0360717","trailer":"http:\/\/www.youtube.com\/watch?v=HpDcuNqkdTo","homepage":"http:\/\/movies.uip.de\/kingkong\/","version":306,"lastModified":"1300012701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/693\/4cd8e9ad5e73d676d3000693\/king-kong-mid.jpg","studio":"Big Primate Pictures","genre":"Action","title":"King Kong","releaseDate":1134518400000,"language":"en","tagline":"The eighth wonder of the world.","type":"Movie","_key":"3147"} +{"label":"Naomi Watts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4bd4889a017a3c7fa6000142\/naomi-watts-profile.jpg","version":116,"birthday":"-39747600000","id":"3489","birthplace":"Shoreham, Kent, England, UK","lastModified":"1299901023000","name":"Naomi Watts","type":"Person","_key":"3148"} +{"label":"Stolen Kisses","description":"Baisers voles is the second of two films from the \u2018Antonie-Doinel-Zyklus\u2019 by French director Truffaut. The film depicts the life of a young twenty year old man who\u2019s life revolves around casual jobs and women, especially young violinist Christine Darbon (Claude Jade's screen-debut).","id":"255","runtime":96,"imdbId":"tt0062695","trailer":"http:\/\/www.youtube.com\/watch?v=293","version":88,"lastModified":"1299912462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c07\/4bc905c8017a3c57fe001c07\/baisers-voles-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"Stolen Kisses","releaseDate":-43632000000,"language":"en","type":"Movie","_key":"3149"} +{"label":"Claude Jade","version":91,"id":"3507","lastModified":"1299492162000","name":"Claude Jade","type":"Person","_key":"3150"} +{"label":"Delphine Seyrig","version":35,"id":"3508","lastModified":"1299492702000","name":"Delphine Seyrig","type":"Person","_key":"3151"} +{"label":"Daniel Ceccaldi","version":38,"id":"3509","lastModified":"1299492811000","name":"Daniel Ceccaldi","type":"Person","_key":"3152"} +{"label":"Claire Duhamel","version":22,"id":"3510","lastModified":"1299493157000","name":"Claire Duhamel","type":"Person","_key":"3153"} +{"label":"Harry-Max","version":14,"id":"3511","lastModified":"1299494652000","name":"Harry-Max","type":"Person","_key":"3154"} +{"label":"Andr\u00e9 Falcon","version":32,"id":"3513","lastModified":"1299493674000","name":"Andr\u00e9 Falcon","type":"Person","_key":"3155"} +{"label":"Catherine Lutz","version":13,"id":"3514","lastModified":"1299494652000","name":"Catherine Lutz","type":"Person","_key":"3156"} +{"label":"Martine Ferri\u00e8re","version":19,"id":"3515","lastModified":"1299758727000","name":"Martine Ferri\u00e8re","type":"Person","_key":"3157"} +{"label":"Serge Rousseau","version":21,"id":"3516","lastModified":"1299495020000","name":"Serge Rousseau","type":"Person","_key":"3158"} +{"label":"Paul Pavel","version":20,"id":"3517","lastModified":"1299493666000","name":"Paul Pavel","type":"Person","_key":"3159"} +{"label":"Fran\u00e7ois Darbon","version":15,"id":"3518","lastModified":"1299493245000","name":"Fran\u00e7ois Darbon","type":"Person","_key":"3160"} +{"label":"L\u00e9on Elkenbaum","version":13,"id":"3519","lastModified":"1299494651000","name":"L\u00e9on Elkenbaum","type":"Person","_key":"3161"} +{"label":"Madeleine Parard","version":13,"id":"3520","lastModified":"1299494652000","name":"Madeleine Parard","type":"Person","_key":"3162"} +{"label":"France Monteil","version":14,"id":"3521","lastModified":"1299494210000","name":"France Monteil","type":"Person","_key":"3163"} +{"label":"Carole Noe","version":14,"id":"3522","lastModified":"1299494210000","name":"Carole Noe","type":"Person","_key":"3164"} +{"label":"Roger Trapp","version":13,"id":"3523","lastModified":"1299494651000","name":"Roger Trapp","type":"Person","_key":"3165"} +{"label":"Albert Simono","version":14,"id":"3533","lastModified":"1299494651000","name":"Albert Simono","type":"Person","_key":"3166"} +{"label":"Christine Pell\u00e9","version":19,"id":"3534","lastModified":"1299494226000","name":"Christine Pell\u00e9","type":"Person","_key":"3167"} +{"label":"Chantal Banlier","version":17,"id":"55925","lastModified":"1299500416000","name":"Chantal Banlier","type":"Person","_key":"3168"} +{"label":"Antoine et Colette","description":"Now aged 17, Antoine Doinel works in a factory which makes records. At a music concert, he meets a girl his own age, Colette, and falls in love with her. Later, Antoine goes to extraordinary lengths to please his new girlfriend and her parents, but Colette still only regards him as a casual friend.","id":"256","runtime":29,"imdbId":"tt1180329","version":63,"lastModified":"1299913315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c10\/4bc905c9017a3c57fe001c10\/antoine-et-colette-mid.jpg","studio":"Ulysse Production","genre":"Drama","title":"Antoine et Colette","releaseDate":-237600000000,"language":"en","type":"Movie","_key":"3169"} +{"label":"Marie-France Pisier","version":33,"id":"3536","lastModified":"1299581298000","name":"Marie-France Pisier","type":"Person","_key":"3170"} +{"label":"Rosy Varte","version":16,"id":"3537","lastModified":"1299493779000","name":"Rosy Varte","type":"Person","_key":"3171"} +{"label":"Jean-Fran\u00e7ois Adam","version":13,"id":"3538","lastModified":"1299494289000","name":"Jean-Fran\u00e7ois Adam","type":"Person","_key":"3172"} +{"label":"Oliver Twist","description":"Oliver Twist the modern filmed version of Charles Dicken\u2019s bestseller. The film doesn\u2019t have all the strange things or the same time period as the novel. A Roman Polanski film with memorable performances yet hindered at the box-office possibly for it\u2019s murkiness.","id":"257","runtime":130,"imdbId":"tt0380599","trailer":"http:\/\/www.youtube.com\/watch?v=2765","homepage":"http:\/\/www.olivertwistthemovie.co.uk\/","version":185,"lastModified":"1300012208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e6\/4ccc81bb7b9aa16b9d0005e6\/oliver-twist-mid.jpg","studio":"Tri Star","genre":"Drama","title":"Oliver Twist","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"3173"} +{"label":"Barney Clark","version":12,"id":"3542","lastModified":"1299493093000","name":"Barney Clark","type":"Person","_key":"3174"} +{"label":"Jamie Foreman","version":22,"id":"3543","lastModified":"1299492316000","name":"Jamie Foreman","type":"Person","_key":"3175"} +{"label":"Harry Eden","version":15,"id":"3544","lastModified":"1299492914000","name":"Harry Eden","type":"Person","_key":"3176"} +{"label":"Edward Hardwicke","version":21,"id":"3545","lastModified":"1299493394000","name":"Edward Hardwicke","type":"Person","_key":"3177"} +{"label":"Leanne Rowe","version":13,"id":"3546","lastModified":"1299494651000","name":"Leanne Rowe","type":"Person","_key":"3178"} +{"label":"Ian McNeice","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06b\/4c14be225e73d64a2100006b\/ian-mcneice-profile.jpg","version":48,"id":"3547","lastModified":"1299942359000","name":"Ian McNeice","type":"Person","_key":"3179"} +{"label":"Timothy Bateson","version":20,"id":"3548","lastModified":"1299493847000","name":"Timothy Bateson","type":"Person","_key":"3180"} +{"label":"Chris Overton","version":13,"id":"3566","lastModified":"1299494493000","name":"Chris Overton","type":"Person","_key":"3181"} +{"label":"Andy Linden","version":12,"id":"3549","lastModified":"1299495237000","name":"Andy Linden","type":"Person","_key":"3182"} +{"label":"Teresa Churcher","version":14,"id":"3550","lastModified":"1299491580000","name":"Teresa Churcher","type":"Person","_key":"3183"} +{"label":"Jake Curran","version":16,"id":"3551","lastModified":"1299494209000","name":"Jake Curran","type":"Person","_key":"3184"} +{"label":"Turbo","version":14,"id":"3552","lastModified":"1299495237000","name":"Turbo","type":"Person","_key":"3185"} +{"label":"Lewis Chase","version":12,"id":"3553","lastModified":"1299494651000","name":"Lewis Chase","type":"Person","_key":"3186"} +{"label":"Levi Hayes","version":13,"id":"3554","lastModified":"1299495007000","name":"Levi Hayes","type":"Person","_key":"3187"} +{"label":"Jeremy Swift","version":13,"id":"3555","lastModified":"1299495237000","name":"Jeremy Swift","type":"Person","_key":"3188"} +{"label":"Gillian Hanna","version":14,"id":"3565","lastModified":"1299494650000","name":"Gillian Hanna","type":"Person","_key":"3189"} +{"label":"Michael Heath","version":13,"id":"3567","lastModified":"1299495008000","name":"Michael Heath","type":"Person","_key":"3190"} +{"label":"Patrick Godfrey","version":18,"id":"3568","lastModified":"1299494088000","name":"Patrick Godfrey","type":"Person","_key":"3191"} +{"label":"Roman Polanski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d6\/4cb5ce597b9aa138da0002d6\/roman-polanski-profile.jpg","biography":"Roman Polanski (Polish: Roman Pola\u0144ski, Polish pronunciation: [\u02c8r\u0254man p\u0254\u02c8la\u0272sk\u02b2i]; born 18 August 1933) is a Polish-French film director, producer, writer and actor. Born in Paris to Polish parents, Polanski relocated with his family to Poland in 1937. After surviving the Holocaust, he continued his education in Poland and became a critically acclaimed director of both art house and commercial films. Polanski's first feature-length film, Knife in the Water (1962), made in Poland, was nominated f","version":156,"birthday":"-1147827600000","id":"3556","birthplace":"Paris, France","lastModified":"1299491148000","name":"Roman Polanski","type":"Person","_key":"3192"} +{"label":"Bed and Board","description":"Bed and Board depicts Christine and Antoine having just gotten married yet things fall apart as they are unfaithful.","id":"258","runtime":94,"imdbId":"tt0065651","trailer":"http:\/\/www.youtube.com\/watch?v=296","version":94,"lastModified":"1299814301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f9\/4ce3b6765e73d60f710005f9\/domicile-conjugal-mid.jpg","studio":"Valoria Films","genre":"Comedy","title":"Bed and Board","releaseDate":21686400000,"language":"en","type":"Movie","_key":"3193"} +{"label":"Hiroko Berghauer","version":15,"id":"3572","lastModified":"1299495237000","name":"Hiroko Berghauer","type":"Person","_key":"3194"} +{"label":"Daniel Boulanger","version":28,"id":"3573","lastModified":"1299493725000","name":"Daniel Boulanger","type":"Person","_key":"3195"} +{"label":"Silvana Blasi","version":18,"id":"3574","lastModified":"1299494946000","name":"Silvana Blasi","type":"Person","_key":"3196"} +{"label":"Barbara Laage","version":15,"id":"3575","lastModified":"1299495236000","name":"Barbara Laage","type":"Person","_key":"3197"} +{"label":"Claude V\u00e9ga","version":15,"id":"3577","lastModified":"1299495237000","name":"Claude V\u00e9ga","type":"Person","_key":"3198"} +{"label":"Dani\u00e8le Girard","version":18,"id":"3579","lastModified":"1299495436000","name":"Dani\u00e8le Girard","type":"Person","_key":"3199"} +{"label":"Marie Irakane","version":15,"id":"3580","lastModified":"1299495236000","name":"Marie Irakane","type":"Person","_key":"3200"} +{"label":"Philippe L\u00e9otard","version":30,"id":"3581","lastModified":"1299715556000","name":"Philippe L\u00e9otard","type":"Person","_key":"3201"} +{"label":"Love on the Run","description":"In L\u2019Amour en Fuite we witness Antoine Doinel right after his divorce from Christine still not grown up and continuing to flee after their love.","id":"259","runtime":89,"imdbId":"tt0078771","trailer":"http:\/\/www.youtube.com\/watch?v=2703","version":89,"lastModified":"1299808375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2f\/4bc905cd017a3c57fe001c2f\/l-amour-en-fuite-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"Love on the Run","releaseDate":317520000000,"language":"en","type":"Movie","_key":"3202"} +{"label":"Dani","version":20,"id":"3591","lastModified":"1299493222000","name":"Dani","type":"Person","_key":"3203"} +{"label":"Doroth\u00e9e","version":14,"id":"3592","lastModified":"1299495236000","name":"Doroth\u00e9e","type":"Person","_key":"3204"} +{"label":"Daniel Mesguich","version":18,"id":"3593","lastModified":"1299493659000","name":"Daniel Mesguich","type":"Person","_key":"3205"} +{"label":"Julien Bertheau","version":28,"id":"3594","lastModified":"1299493837000","name":"Julien Bertheau","type":"Person","_key":"3206"} +{"label":"Jean-Pierre Ducos","version":21,"id":"3595","lastModified":"1299495455000","name":"Jean-Pierre Ducos","type":"Person","_key":"3207"} +{"label":"Marie Henriau","version":15,"id":"3596","lastModified":"1299495678000","name":"Marie Henriau","type":"Person","_key":"3208"} +{"label":"Julien Dubois","version":14,"id":"3597","lastModified":"1299495235000","name":"Julien Dubois","type":"Person","_key":"3209"} +{"label":"The 39 Steps","description":"The 39 Steps is one of Alfred Hitchcock\u2019s masterpieces. A romantic thriller that revolves around a Canadian tourist visiting London who gets caught in the middle of a murder plot that has police and the secret service after him. A classic Hitchcock of romance mixed with adventure and picturesque scenes.","id":"260","runtime":87,"imdbId":"tt0026029","version":170,"lastModified":"1299911884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3d\/4bc905ce017a3c57fe001c3d\/the-39-steps-mid.jpg","studio":"Gaumont British Production","genre":"Comedy","title":"The 39 Steps","releaseDate":-1086220800000,"language":"en","tagline":"Handcuffed to the girl who double-crossed him.","type":"Movie","_key":"3210"} +{"label":"Robert Donat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/053\/4c2367587b9aa13f60000053\/robert-donat-profile.jpg","version":20,"id":"3609","lastModified":"1299494034000","name":"Robert Donat","type":"Person","_key":"3211"} +{"label":"Madeleine Carroll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4c2367097b9aa13f62000058\/madeleine-carroll-profile.jpg","version":16,"id":"3610","lastModified":"1299494034000","name":"Madeleine Carroll","type":"Person","_key":"3212"} +{"label":"Lucie Mannheim","version":19,"id":"3611","lastModified":"1299493148000","name":"Lucie Mannheim","type":"Person","_key":"3213"} +{"label":"Godfrey Tearle","version":18,"id":"3612","lastModified":"1299494069000","name":"Godfrey Tearle","type":"Person","_key":"3214"} +{"label":"Helen Haye","version":24,"id":"3674","lastModified":"1299495025000","name":"Helen Haye","type":"Person","_key":"3215"} +{"label":"Peggy Ashcroft","version":22,"id":"3672","lastModified":"1299493967000","name":"Peggy Ashcroft","type":"Person","_key":"3216"} +{"label":"John Laurie","version":24,"id":"3673","lastModified":"1299780075000","name":"John Laurie","type":"Person","_key":"3217"} +{"label":"Frank Cellier","version":16,"id":"3675","lastModified":"1299494492000","name":"Frank Cellier","type":"Person","_key":"3218"} +{"label":"Wylie Watson","version":17,"id":"3676","lastModified":"1299495782000","name":"Wylie Watson","type":"Person","_key":"3219"} +{"label":"Peggy Simpson","version":16,"id":"3677","lastModified":"1299495007000","name":"Peggy Simpson","type":"Person","_key":"3220"} +{"label":"Elizabeth Inglis","version":17,"id":"3678","lastModified":"1299583186000","name":"Elizabeth Inglis","type":"Person","_key":"3221"} +{"label":"Frederick Piper","version":17,"id":"3679","lastModified":"1299493928000","name":"Frederick Piper","type":"Person","_key":"3222"} +{"label":"Hilda Trevelyan","version":15,"id":"3680","lastModified":"1299495678000","name":"Hilda Trevelyan","type":"Person","_key":"3223"} +{"label":"Cat on a Hot Tin Roof","description":"The story of a Southern family in crisis, focusing on the turbulent relationship of a wife and husband, Maggie \"The Cat\" and Brick Pollitt, and their interaction with Brick's family over the course of one evening gathering at the family estate in Mississippi.","id":"261","runtime":108,"imdbId":"tt0051459","version":167,"lastModified":"1299911429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4e\/4bc905d0017a3c57fe001c4e\/cat-on-a-hot-tin-roof-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Cat on a Hot Tin Roof","releaseDate":-356227200000,"language":"en","type":"Movie","_key":"3224"} +{"label":"Richard Brooks","version":57,"id":"3632","lastModified":"1300042509000","name":"Richard Brooks","type":"Person","_key":"3225"} +{"label":"Elizabeth Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4bdbe7e5017a3c1d3d000021\/elizabeth-taylor-profile.jpg","version":75,"birthday":"-1194310800000","id":"3635","lastModified":"1300042477000","name":"Elizabeth Taylor","type":"Person","_key":"3226"} +{"label":"Paul Newman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/170\/4c178ef87b9aa108d4000170\/paul-newman-profile.jpg","version":132,"id":"3636","lastModified":"1299909440000","name":"Paul Newman","type":"Person","_key":"3227"} +{"label":"Madeleine Sherwood","version":15,"id":"3639","lastModified":"1299494180000","name":"Madeleine Sherwood","type":"Person","_key":"3228"} +{"label":"Vaughn Taylor","version":23,"id":"3641","lastModified":"1299493578000","name":"Vaughn Taylor","type":"Person","_key":"3229"} +{"label":"Larry Gates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/74a\/4caa17fa7b9aa17acd00074a\/larry-gates-profile.jpg","version":25,"id":"3640","lastModified":"1299492406000","name":"Larry Gates","type":"Person","_key":"3230"} +{"label":"Zelda Cleaver","version":14,"id":"3752","lastModified":"1299493837000","name":"Zelda Cleaver","type":"Person","_key":"3231"} +{"label":"King of Comedy","description":"The King of Comedy is a bitterly evil satire of show business. Rupert Pupkins is obsessed with becoming famous so he aims at kidnapping one of the best in the business, Jerry Langford.","id":"262","runtime":109,"imdbId":"tt0085794","version":141,"lastModified":"1299911500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5b\/4bc905d4017a3c57fe001c5b\/king-of-comedy-mid.jpg","studio":"Embassy International","genre":"Comedy","title":"King of Comedy","releaseDate":414374400000,"language":"en","type":"Movie","_key":"3232"} +{"label":"Jerry Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4c12461e7b9aa17ec500005d\/jerry-lewis-profile.jpg","biography":"Jerry Lewis (born March 16, 1926) is an American comedian, actor, film producer, writer, film director and singer. He is best-known for his slapstick humor in stage, radio, screen, recording and television. Lewis is also known for his charity fund-raising telethons and position as national chairman for the Muscular Dystrophy Association (MDA). Lewis has won several awards for lifetime achievements from The American Comedy Awards, The Golden Camera, Los Angeles Film Critics Association, and The V","version":93,"birthday":"-1382144400000","id":"3663","birthplace":"Newark, New Jersey, U.S.","lastModified":"1300025320000","name":"Jerry Lewis","type":"Person","_key":"3233"} +{"label":"Sandra Bernhard","version":26,"id":"3664","lastModified":"1299493228000","name":"Sandra Bernhard","type":"Person","_key":"3234"} +{"label":"Shelley Hack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c0\/4c179f677b9aa109120000c0\/shelley-hack-profile.jpg","version":22,"id":"3665","lastModified":"1299493270000","name":"Shelley Hack","type":"Person","_key":"3235"} +{"label":"Ed Herlihy","version":17,"id":"3666","lastModified":"1299495677000","name":"Ed Herlihy","type":"Person","_key":"3236"} +{"label":"Lou Brown","version":15,"id":"3667","lastModified":"1299495006000","name":"Lou Brown","type":"Person","_key":"3237"} +{"label":"Loretta Tupper","version":16,"id":"3668","lastModified":"1299494868000","name":"Loretta Tupper","type":"Person","_key":"3238"} +{"label":"Peter Potulski","version":15,"id":"3669","lastModified":"1299495006000","name":"Peter Potulski","type":"Person","_key":"3239"} +{"label":"Vinnie Gonzales","version":15,"id":"3670","lastModified":"1299495493000","name":"Vinnie Gonzales","type":"Person","_key":"3240"} +{"label":"The Batman Collection","description":"Everything began millionaire Bruce Wayne who fights against the underground of Gotham City.","id":"263","version":162,"lastModified":"1300011536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cb\/4d088e517b9aa101d70002cb\/batman-collection-mid.jpg","title":"The Batman Collection","language":"en","type":"Movie","_key":"3241"} +{"label":"The Back to the Future Trilogy","description":"Marty McFly, a typical American teenager of the Eighties, is accidentally sent back to 1955 in a plutonium-powered DeLorean \"time machine\" invented by slightly mad scientist. During his often hysterical, always amazing trip back in time, Marty must make certain his teenage parents-to-be meet and fall in love - so he can get back to the future.","id":"264","version":99,"lastModified":"1299913196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/760\/4c6e8eaf7b9aa13ab6000760\/back-to-the-future-mid.jpg","title":"The Back to the Future Trilogy","language":"en","type":"Movie","_key":"3242"} +{"label":"Lili Marleen","description":"Lili Marleen is the story of a German singer named Wilkie who while working in Switzerland falls in love with a Jewish composer named Robert who\u2019s family is helping people to flee from the Nazis. Roberts family is skeptical of Walkie thinking she could be a Nazi as she becomes famous for singing Lili Marleen.","id":"265","runtime":120,"imdbId":"tt0082661","version":82,"lastModified":"1299912396000","studio":"Roxy Film","genre":"Drama","title":"Lili Marleen","releaseDate":348278400000,"language":"en","type":"Movie","_key":"3243"} +{"label":"Hanna Schygulla","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4cb3ba995e73d6613500009f\/hanna-schygulla-profile.jpg","version":37,"id":"3734","lastModified":"1299916514000","name":"Hanna Schygulla","type":"Person","_key":"3244"} +{"label":"Giancarlo Giannini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b3\/4bd3d29d017a3c53450000b3\/giancarlo-giannini-profile.jpg","version":64,"id":"3753","lastModified":"1299491206000","name":"Giancarlo Giannini","type":"Person","_key":"3245"} +{"label":"Christine Kaufmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ac\/4ca4e6f75e73d636fc0002ac\/christine-kaufmann-profile.jpg","version":29,"id":"3762","lastModified":"1299493098000","name":"Christine Kaufmann","type":"Person","_key":"3246"} +{"label":"Karl-Heinz von Hassel","version":13,"id":"3755","lastModified":"1299493837000","name":"Karl-Heinz von Hassel","type":"Person","_key":"3247"} +{"label":"Erik Schumann","version":17,"id":"3756","lastModified":"1299494650000","name":"Erik Schumann","type":"Person","_key":"3248"} +{"label":"Mel Ferrer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29b\/4bf1bf8d017a3c321700029b\/mel-ferrer-profile.jpg","version":40,"id":"3754","lastModified":"1299492800000","name":"Mel Ferrer","type":"Person","_key":"3249"} +{"label":"Gottfried John","version":32,"id":"3757","lastModified":"1299493502000","name":"Gottfried John","type":"Person","_key":"3250"} +{"label":"Willy Harlander","version":14,"id":"3763","lastModified":"1299493371000","name":"Willy Harlander","type":"Person","_key":"3251"} +{"label":"Ra\u00fal Gimenez","version":13,"id":"3764","lastModified":"1299495235000","name":"Ra\u00fal Gimenez","type":"Person","_key":"3252"} +{"label":"Contempt","description":"Contempt \/ Le M\u00e9pris is a film about filmmaking. Godard\u2019s Masterfully staged melodrama tells of a woman\u2019s love for a middle-class lifestyle and how a film maker must buy it for her while at the same time working as a writer for the film \u2018The Odyssey\u2019 to be directed by Fritz Lang.","id":"266","runtime":103,"imdbId":"tt0057345","version":112,"lastModified":"1299810726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8a\/4bc905d7017a3c57fe001c8a\/le-mepris-mid.jpg","studio":"Concordia","genre":"Drama","title":"Contempt","releaseDate":-194918400000,"language":"en","type":"Movie","_key":"3253"} +{"label":"Jean-Luc Godard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c4\/4ca1f8d27b9aa168e00000c4\/jean-luc-godard-profile.jpg","version":270,"birthday":"-1233277200000","id":"3776","birthplace":"Paris, France","lastModified":"1300024975000","name":"Jean-Luc Godard","type":"Person","_key":"3254"} +{"label":"Brigitte Bardot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17b\/4c1794c77b9aa108d400017b\/brigitte-bardot-profile.jpg","version":34,"id":"3783","lastModified":"1299779861000","name":"Brigitte Bardot","type":"Person","_key":"3255"} +{"label":"Michel Piccoli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/202\/4c1c04a05e73d6793b000202\/michel-piccoli-profile.jpg","version":84,"id":"3784","lastModified":"1299853706000","name":"Michel Piccoli","type":"Person","_key":"3256"} +{"label":"Jack Palance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4bd5ecf6017a3c65860000b1\/jack-palance-profile.jpg","version":93,"id":"3785","lastModified":"1299491761000","name":"Jack Palance","type":"Person","_key":"3257"} +{"label":"Giorgia Moll","version":15,"id":"3786","lastModified":"1299492392000","name":"Giorgia Moll","type":"Person","_key":"3258"} +{"label":"Raoul Coutard","version":67,"id":"3540","lastModified":"1299779950000","name":"Raoul Coutard","type":"Person","_key":"3259"} +{"label":"Linda Veras","version":18,"id":"3787","lastModified":"1299494649000","name":"Linda Veras","type":"Person","_key":"3260"} +{"label":"Live Flesh","description":"Carne Tr\u00e9mula is a thriller about a heterosexual couple\u2019s meeting and becoming a couple. Based on a novel by American author Ruth Rendel this version from director Almodovar is extremely altered.","id":"267","runtime":103,"imdbId":"tt0118819","version":130,"lastModified":"1300011154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c93\/4bc905d8017a3c57fe001c93\/carne-tremula-mid.jpg","studio":"El Deseo","genre":"Drama","title":"Live Flesh","releaseDate":878083200000,"language":"en","type":"Movie","_key":"3261"} +{"label":"Liberto Rabal","version":15,"id":"3808","lastModified":"1299492770000","name":"Liberto Rabal","type":"Person","_key":"3262"} +{"label":"Francesca Neri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55c\/4d48200a7b9aa15bbf00c55c\/francesca-neri-profile.jpg","version":32,"id":"3809","lastModified":"1299842879000","name":"Francesca Neri","type":"Person","_key":"3263"} +{"label":"Javier Bardem","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4bf8c21c017a3c703100007d\/javier-bardem-profile.jpg","version":95,"birthday":"-26442000000","id":"3810","birthplace":"Las Palmas de Gran Canaria, Gran Canaria, Canary Islands, Spain","lastModified":"1299859670000","name":"Javier Bardem","type":"Person","_key":"3264"} +{"label":"\u00c1ngela Molina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/146\/4cfbbddf7b9aa15149003146\/angela-molina-profile.jpg","version":44,"id":"3822","lastModified":"1299492412000","name":"\u00c1ngela Molina","type":"Person","_key":"3265"} +{"label":"Jos\u00e9 Sancho","version":19,"id":"3811","lastModified":"1299493370000","name":"Jos\u00e9 Sancho","type":"Person","_key":"3266"} +{"label":"Pilar Bardem","version":29,"id":"3812","lastModified":"1299927638000","name":"Pilar Bardem","type":"Person","_key":"3267"} +{"label":"\u00c1lex Angulo","version":27,"id":"3813","lastModified":"1299491767000","name":"\u00c1lex Angulo","type":"Person","_key":"3268"} +{"label":"Yael Be","version":16,"id":"3814","lastModified":"1299496545000","name":"Yael Be","type":"Person","_key":"3269"} +{"label":"Josep Molins","version":15,"id":"3815","lastModified":"1299494650000","name":"Josep Molins","type":"Person","_key":"3270"} +{"label":"Daniel Lanchas","version":15,"id":"3816","lastModified":"1299495977000","name":"Daniel Lanchas","type":"Person","_key":"3271"} +{"label":"Mar\u00eda Rosenfeldt","version":15,"id":"3817","lastModified":"1299495977000","name":"Mar\u00eda Rosenfeldt","type":"Person","_key":"3272"} +{"label":"Antonio Henares","version":15,"id":"3818","lastModified":"1299495977000","name":"Antonio Henares","type":"Person","_key":"3273"} +{"label":"Diego de Paz","version":15,"id":"3819","lastModified":"1299495234000","name":"Diego de Paz","type":"Person","_key":"3274"} +{"label":"Emilio Rodr\u00edguez","version":16,"id":"3821","lastModified":"1299929050000","name":"Emilio Rodr\u00edguez","type":"Person","_key":"3275"} +{"label":"Batman","description":"Gotham City: dark, dangerous, 'protected' only by a mostly corrupt police department. Despite the best efforts of D.A. Harvey Dent and police commissioner Jim Gordon, the city becomes increasingly unsafe...until a Dark Knight arises. Jack Napier, one-time enforcer for Boss Grissom, horribly disfigured after a firefight in a chemical factory...who, devoid of the last vestiges of sanity, seizes control of Gotham's underworld as the psychotic, unpredictable Clown Prince of Crime...the Joker.","id":"268","runtime":126,"imdbId":"tt0096895","trailer":"http:\/\/www.youtube.com\/watch?v=HlsM2_8u_mk","version":334,"lastModified":"1300011062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc5\/4bc905de017a3c57fe001cc5\/batman-mid.jpg","genre":"Action","title":"Batman","releaseDate":614563200000,"language":"en","tagline":"Have you ever danced with the devil in the pale moonlight?","type":"Movie","_key":"3276"} +{"label":"Pat Hingle","version":71,"id":"3798","lastModified":"1299509370000","name":"Pat Hingle","type":"Person","_key":"3277"} +{"label":"Jerry Hall","version":21,"id":"3800","lastModified":"1299926549000","name":"Jerry Hall","type":"Person","_key":"3278"} +{"label":"Tracey Walter","version":62,"id":"3801","lastModified":"1299492039000","name":"Tracey Walter","type":"Person","_key":"3279"} +{"label":"Lee Wallace","version":18,"id":"3802","lastModified":"1299495561000","name":"Lee Wallace","type":"Person","_key":"3280"} +{"label":"Edwin Craig","version":18,"id":"3803","lastModified":"1299494018000","name":"Edwin Craig","type":"Person","_key":"3281"} +{"label":"Robert Wuhl","version":22,"id":"4040","lastModified":"1299493503000","name":"Robert Wuhl","type":"Person","_key":"3282"} +{"label":"Breathless","description":"There was before Breathless, and there was after Breathless. Jean-Luc Godard burst onto the film scene in 1960 with this jazzy, free-form, and sexy homage to the American film genres that inspired him as a writer for Cahiers du cin\u00e9ma. With its lack of polish, surplus of attitude, anything-goes crime narrative, and effervescent young stars Jean-Paul Belmondo and Jean Seberg, Breathless helped launch the French New Wave and ensured cinema would never be the same.","id":"269","runtime":87,"imdbId":"tt0053472","trailer":"http:\/\/www.youtube.com\/watch?v=w2hDR_e1o1M","version":115,"lastModified":"1299812755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd7\/4bc905e2017a3c57fe001cd7\/a-bout-de-souffle-mid.jpg","studio":"Imp\u00e9ria","genre":"Crime","title":"Breathless","releaseDate":-309139200000,"language":"en","type":"Movie","_key":"3283"} +{"label":"Jean-Paul Belmondo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf2\/4bfe7ced017a3c702b000cf2\/jean-paul-belmondo-profile.jpg","version":74,"id":"3829","lastModified":"1299834463000","name":"Jean-Paul Belmondo","type":"Person","_key":"3284"} +{"label":"Jean Seberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e2b\/4bfe8530017a3c702d000e2b\/jean-seberg-profile.jpg","version":21,"id":"3830","lastModified":"1299491901000","name":"Jean Seberg","type":"Person","_key":"3285"} +{"label":"Jean-Pierre Melville","version":68,"id":"3831","lastModified":"1300013194000","name":"Jean-Pierre Melville","type":"Person","_key":"3286"} +{"label":"Henri-Jacques Huet","version":22,"id":"3832","lastModified":"1299494491000","name":"Henri-Jacques Huet","type":"Person","_key":"3287"} +{"label":"Van Doude","version":23,"id":"3833","lastModified":"1299493967000","name":"Van Doude","type":"Person","_key":"3288"} +{"label":"Claude Mansard","version":20,"id":"3834","lastModified":"1299493968000","name":"Claude Mansard","type":"Person","_key":"3289"} +{"label":"Richard Balducci","version":31,"id":"3835","lastModified":"1299493671000","name":"Richard Balducci","type":"Person","_key":"3290"} +{"label":"Roger Hanin","version":24,"id":"3836","lastModified":"1299494078000","name":"Roger Hanin","type":"Person","_key":"3291"} +{"label":"Wir sagen Du! Schatz.","description":"Oliver doesn\u2019t have a family so he steals one.","id":"270","runtime":98,"imdbId":"tt0997275","trailer":"http:\/\/www.youtube.com\/watch?v=426","version":60,"lastModified":"1299531764000","studio":"miko-film","genre":"Comedy","title":"Wir sagen Du! Schatz.","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"3292"} +{"label":"Samuel Finzi","version":19,"id":"3841","lastModified":"1299493746000","name":"Samuel Finzi","type":"Person","_key":"3293"} +{"label":"Anna Maria M\u00fche","version":20,"id":"3840","lastModified":"1299493243000","name":"Anna Maria M\u00fche","type":"Person","_key":"3294"} +{"label":"Margot Nagel","version":13,"id":"15380","lastModified":"1299497537000","name":"Margot Nagel","type":"Person","_key":"3295"} +{"label":"Harald Warmbrunn","version":15,"id":"15381","lastModified":"1299499401000","name":"Harald Warmbrunn","type":"Person","_key":"3296"} +{"label":"Ronja R\u00f6vardotter","description":"Ronja, since 1984 Ronja R\u00f6vardotter has been known as a classic children\u2019s film. A Swedish film base on a book by Astrid Lindgren. ","id":"271","runtime":126,"imdbId":"tt0088015","version":57,"lastModified":"1299531714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce0\/4bc905e3017a3c57fe001ce0\/ronja-rovardotter-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Adventure","title":"Ronja R\u00f6vardotter","releaseDate":471744000000,"language":"en","type":"Movie","_key":"3297"} +{"label":"Tage Danielsson","version":21,"id":"3849","lastModified":"1299493981000","name":"Tage Danielsson","type":"Person","_key":"3298"} +{"label":"Hanna Zetterberg","version":15,"id":"3851","lastModified":"1299493014000","name":"Hanna Zetterberg","type":"Person","_key":"3299"} +{"label":"Dan H\u00e5fstr\u00f6m","version":14,"id":"3852","lastModified":"1299494491000","name":"Dan H\u00e5fstr\u00f6m","type":"Person","_key":"3300"} +{"label":"B\u00f6rje Ahlstedt","version":19,"id":"3853","lastModified":"1299493075000","name":"B\u00f6rje Ahlstedt","type":"Person","_key":"3301"} +{"label":"Lena Nyman","version":22,"birthday":"-808192800000","id":"3854","birthplace":"Stockholm, Sweden","lastModified":"1299493003000","name":"Lena Nyman","type":"Person","_key":"3302"} +{"label":"Per Oscarsson","version":32,"birthday":"-1354669200000","id":"3855","birthplace":"Stockholm, Sweden","lastModified":"1299595976000","name":"Per Oscarsson","type":"Person","_key":"3303"} +{"label":"Med Reventberg","version":14,"id":"3856","lastModified":"1299496423000","name":"Med Reventberg","type":"Person","_key":"3304"} +{"label":"Allan Edwall","biography":"Johan Allan Edwall \n25 August 1924, R\u00f6d\u00f6n, J\u00e4mtlands l\u00e4n, Sweden \n7 February 1997, Stockholm, Stockholms l\u00e4n, Sweden (prostate cancer) \n173 cm \nAllan\n Edwall was born in a working class home in J\u00e4mtland, Sweden in 1924. \nHis father was a trade-union man and a communist. 1949-52 he attended \nStockholm's Royal Daramatic Theatre School. Through the years he made \nmore than 400 parts in theater, film, television and radio. He was also a\n director, an author, a composer and a singer. On records he sa","version":37,"id":"3857","lastModified":"1299493032000","name":"Allan Edwall","type":"Person","_key":"3305"} +{"label":"Ulf Isenborg","version":14,"id":"3858","lastModified":"1299496423000","name":"Ulf Isenborg","type":"Person","_key":"3306"} +{"label":"Tommy K\u00f6rberg","version":14,"id":"3859","lastModified":"1299496544000","name":"Tommy K\u00f6rberg","type":"Person","_key":"3307"} +{"label":"Bj\u00f6rn Wallde","version":14,"id":"3860","lastModified":"1299496544000","name":"Bj\u00f6rn Wallde","type":"Person","_key":"3308"} +{"label":"Henry Ottenby","version":14,"id":"3867","lastModified":"1299496542000","name":"Henry Ottenby","type":"Person","_key":"3309"} +{"label":"Batman Begins","description":"Following his parents' brutal murder, Bruce Wayne trains with a skilled ninja and returns to Gotham City, only to find it overrun with crime and corruption. But after discovering a cave under Wayne Manor, Bruce assumes a new identity.","id":"272","runtime":141,"imdbId":"tt0372784","trailer":"http:\/\/www.youtube.com\/watch?v=m7dapUWHykw","homepage":"http:\/\/www2.warnerbros.com\/batmanbegins\/index.html","version":340,"lastModified":"1300010533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2f\/4bc905ee017a3c57fe001d2f\/batman-begins-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Batman Begins","releaseDate":1118966400000,"language":"en","tagline":"Evil fears the knight.","type":"Movie","_key":"3310"} +{"label":"Katie Holmes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4bd396f0017a3c533f00003c\/katie-holmes-profile.jpg","biography":"Kate Noelle \"Katie\" Holmes is an American actress who first achieved fame for her role as Joey Potter on The WB television teen drama Dawson's Creek from 1998 to 2003. Her movie roles have ranged from art house films such as The Ice Storm to thrillers such as Abandon to blockbusters such as Batman Begins.\n\nHolmes was born in Toledo, Ohio, the youngest in a family of five children of Kathleen A, a homemaker and a philanthropist, and Martin Joseph Holmes, an attorney specializing in divorces.\n\nIn ","version":68,"birthday":"282783600000","id":"3897","birthplace":"Toledo, Ohio, U.S.","lastModified":"1299581181000","name":"Katie Holmes","type":"Person","_key":"3311"} +{"label":"Ken Watanabe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8ad\/4be2e516017a3c35bd0008ad\/ken-watanabe-profile.jpg","version":115,"birthday":"-321843600000","id":"3899","birthplace":"Koide, Niigata, Japan","lastModified":"1299614153000","name":"Ken Watanabe","type":"Person","_key":"3312"} +{"label":"Linus Roache","version":32,"id":"3900","lastModified":"1299600897000","name":"Linus Roache","type":"Person","_key":"3313"} +{"label":"Richard Brake","version":29,"id":"3901","lastModified":"1299491274000","name":"Richard Brake","type":"Person","_key":"3314"} +{"label":"Sara Stewart","version":22,"id":"3902","lastModified":"1299491394000","name":"Sara Stewart","type":"Person","_key":"3315"} +{"label":"Tim Booth","version":21,"id":"3903","lastModified":"1299491424000","name":"Tim Booth","type":"Person","_key":"3316"} +{"label":"Rena Sofer","version":31,"id":"34248","lastModified":"1299491265000","name":"Rena Sofer","type":"Person","_key":"3317"} +{"label":"Alexandra Bastedo","version":24,"id":"105159","lastModified":"1299491544000","name":"Alexandra Bastedo","type":"Person","_key":"3318"} +{"label":"Das weisse Rauschen","description":"The White Sound is a film about a young schizophrenic man dealing with a new town, a new relationship, and the paranoia in his head. A convincingly real and award-winning performance by Daniel Bruhl.","id":"273","runtime":107,"imdbId":"tt0276617","homepage":"http:\/\/www.dasweisserauschen.de\/","version":45,"lastModified":"1299531714000","studio":"Cameo Film- und Fernsehproduktion","genre":"Drama","title":"Das weisse Rauschen","releaseDate":1012435200000,"language":"en","type":"Movie","_key":"3319"} +{"label":"Daniel Br\u00fchl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0da\/4ce01ec97b9aa168b40000da\/daniel-bruhl-profile.jpg","version":85,"id":"3872","lastModified":"1299811003000","name":"Daniel Br\u00fchl","type":"Person","_key":"3320"} +{"label":"Anabelle Lachatte","version":13,"id":"3873","lastModified":"1299493745000","name":"Anabelle Lachatte","type":"Person","_key":"3321"} +{"label":"Patrick Joswig","version":16,"id":"3874","lastModified":"1299493261000","name":"Patrick Joswig","type":"Person","_key":"3322"} +{"label":"Ilse Strambowski","version":13,"id":"3875","lastModified":"1299495493000","name":"Ilse Strambowski","type":"Person","_key":"3323"} +{"label":"Michael Sch\u00fctz","version":14,"id":"3876","lastModified":"1299494866000","name":"Michael Sch\u00fctz","type":"Person","_key":"3324"} +{"label":"Eno H\u00fcnninger","version":14,"id":"3877","lastModified":"1299494386000","name":"Eno H\u00fcnninger","type":"Person","_key":"3325"} +{"label":"The Silence of the Lambs","description":"FBI trainee Clarice Starling ventures into a maximum-security asylum to pick the diseased brain of Hannibal Lecter, a psychiatrist turned homicidal cannibal. Starling needs clues to help her capture a serial killer. Unfortunately, her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.","id":"274","runtime":118,"imdbId":"tt0102926","version":216,"lastModified":"1300010321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6f\/4bc905fa017a3c57fe001d6f\/the-silence-of-the-lambs-mid.jpg","studio":"Orion Pictures Corporation","genre":"Crime","title":"The Silence of the Lambs","releaseDate":666403200000,"language":"en","tagline":"To enter the mind of a killer she must challenge the mind of a madman.","type":"Movie","_key":"3326"} +{"label":"Anthony Hopkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4bd7282c017a3c21f60000f2\/anthony-hopkins-profile.jpg","biography":"

Anthony Hopkins was born on 31 December 1937, in Margam, Wales. Influenced by Richard Burton<\/a>,\n he decided to study at College of Music and Drama and graduated in \n1957. In 1965, he moved to London and joined the National Theatre, \ninvited by Laurence Olivier<\/a>, who could see the talent in Hopkins. In 1967, he made his first film for television, A Fle","version":186,"birthday":"-1009933200000","id":"4173","birthplace":"Margam, Port Talbot, West Glamorgan, Wales, UK","lastModified":"1299852845000","name":"Anthony Hopkins","type":"Person","_key":"3327"} +{"label":"Anthony Heald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/109\/4bd71817017a3c21ec000109\/anthony-heald-profile.jpg","version":35,"id":"16293","lastModified":"1299755648000","name":"Anthony Heald","type":"Person","_key":"3328"} +{"label":"Ted Levine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7dc\/4cab26df7b9aa17acf0007dc\/ted-levine-profile.jpg","version":84,"id":"15854","lastModified":"1299509002000","name":"Ted Levine","type":"Person","_key":"3329"} +{"label":"Frankie Faison","version":49,"id":"13936","lastModified":"1300047445000","name":"Frankie Faison","type":"Person","_key":"3330"} +{"label":"Kasi Lemmons","version":34,"id":"51864","lastModified":"1299493604000","name":"Kasi Lemmons","type":"Person","_key":"3331"} +{"label":"Brooke Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d9\/4cd9b1d37b9aa113ac0007d9\/brooke-smith-profile.jpg","version":58,"id":"31649","lastModified":"1299901024000","name":"Brooke Smith","type":"Person","_key":"3332"} +{"label":"Don Brockett","version":25,"id":"31118","lastModified":"1299495390000","name":"Don Brockett","type":"Person","_key":"3333"} +{"label":"Chuck Aber","version":23,"id":"102805","lastModified":"1299501747000","name":"Chuck Aber","type":"Person","_key":"3334"} +{"label":"Obba Babatund\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b4b\/4cf3e2be5e73d62384000b4b\/obba-babatunde-profile.jpg","version":41,"id":"52057","lastModified":"1299492306000","name":"Obba Babatund\u00e9","type":"Person","_key":"3335"} +{"label":"Diane Baker","version":47,"id":"6930","lastModified":"1299876478000","name":"Diane Baker","type":"Person","_key":"3336"} +{"label":"Charles Napier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/223\/4bf19343017a3c3213000223\/charles-napier-profile.jpg","version":60,"id":"16119","lastModified":"1299492341000","name":"Charles Napier","type":"Person","_key":"3337"} +{"label":"Brent Hinkley","version":29,"id":"7134","lastModified":"1299492700000","name":"Brent Hinkley","type":"Person","_key":"3338"} +{"label":"David Early","version":25,"id":"15074","lastModified":"1299494265000","name":"David Early","type":"Person","_key":"3339"} +{"label":"Chris Isaak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/803\/4cce05087b9aa16b9e000803\/chris-isaak-profile.jpg","version":40,"birthday":"-426560400000","id":"6591","birthplace":"Stockton, CA","lastModified":"1299493751000","name":"Chris Isaak","type":"Person","_key":"3340"} +{"label":"John Hall","version":21,"id":"102809","lastModified":"1299501739000","name":"John Hall","type":"Person","_key":"3341"} +{"label":"George A. Romero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a8\/4cb5d04a7b9aa138d90002a8\/george-a-romero-profile.jpg","version":166,"id":"14999","lastModified":"1299672463000","name":"George A. Romero","type":"Person","_key":"3342"} +{"label":"Ted Monte","version":35,"id":"97902","lastModified":"1299495445000","name":"Ted Monte","type":"Person","_key":"3343"} +{"label":"Fargo","description":"Oscar winning film from the Coen brothers that takes place in the snow covered wasteland of their home-state, Minnesota. A clueless car dealer, Jerry Lundegard, stages the kidnapping of his wife in order to get money from his father-in-law. However, it doesn't take long for his plan to start unravelling.","id":"275","runtime":98,"imdbId":"tt0116282","trailer":"http:\/\/www.youtube.com\/watch?v=rpdOXSEkvO8","homepage":"http:\/\/www.themoviefargo.com\/","version":305,"lastModified":"1300026203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d91\/4bc905ff017a3c57fe001d91\/fargo-mid.jpg","studio":"PolyGram Filmed Entertainment","genre":"Comedy","title":"Fargo","releaseDate":826243200000,"language":"en","tagline":"A lot can happen in the middle of nowhere.","type":"Movie","_key":"3344"} +{"label":"William H. Macy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/074\/4c2376b47b9aa13f61000074\/william-h-macy-profile.jpg","version":127,"id":"3905","lastModified":"1299669824000","name":"William H. Macy","type":"Person","_key":"3345"} +{"label":"Frances McDormand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41b\/4c2908ed7b9aa1446e00041b\/frances-mcdormand-profile.jpg","version":92,"id":"3910","lastModified":"1299491514000","name":"Frances McDormand","type":"Person","_key":"3346"} +{"label":"Kristin Rudr\u00fcd","version":18,"id":"3906","lastModified":"1299494014000","name":"Kristin Rudr\u00fcd","type":"Person","_key":"3347"} +{"label":"Harve Presnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4c49b8107b9aa115ff0000a5\/harve-presnell-profile.jpg","version":43,"id":"3907","lastModified":"1299543001000","name":"Harve Presnell","type":"Person","_key":"3348"} +{"label":"Tony Denman","version":24,"id":"3908","lastModified":"1299493484000","name":"Tony Denman","type":"Person","_key":"3349"} +{"label":"Gary Houston","version":37,"id":"3909","lastModified":"1299926007000","name":"Gary Houston","type":"Person","_key":"3350"} +{"label":"John Carroll Lynch","version":73,"id":"3911","lastModified":"1299746575000","name":"John Carroll Lynch","type":"Person","_key":"3351"} +{"label":"Sally Wingert","version":20,"id":"3912","lastModified":"1299494490000","name":"Sally Wingert","type":"Person","_key":"3352"} +{"label":"Steve Reevis","version":25,"birthday":"-233024400000","id":"4024","birthplace":"Montana, USA","lastModified":"1299493461000","name":"Steve Reevis","type":"Person","_key":"3353"} +{"label":"Steve Park","version":18,"id":"4025","lastModified":"1299494481000","name":"Steve Park","type":"Person","_key":"3354"} +{"label":"Die fetten Jahre sind vorbei","description":"Hans Weingartner\u2019s film The Edukators is a sensitive portrayal of a group of young activists who make a statement on the difference between the rich and the poor by breaking into the rich homes and moving their furniture around until one day their harmless fun goes a little too far. The film\u2019s theme is based around the relationship between a high class 68 year old three young activists.","id":"276","runtime":127,"imdbId":"tt0408777","version":80,"lastModified":"1299805480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9f\/4bc90603017a3c57fe001d9f\/die-fetten-jahre-sind-vorbei-mid.jpg","studio":"Y3 Film","genre":"Comedy","title":"Die fetten Jahre sind vorbei","releaseDate":1101340800000,"language":"en","type":"Movie","_key":"3355"} +{"label":"Julia Jentsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4d3e00f95e73d622d1001147\/julia-jentsch-profile.jpg","version":31,"id":"3932","lastModified":"1299670163000","name":"Julia Jentsch","type":"Person","_key":"3356"} +{"label":"Stipe Erceg","version":25,"id":"3933","lastModified":"1299493657000","name":"Stipe Erceg","type":"Person","_key":"3357"} +{"label":"Burghart Klau\u00dfner","version":27,"id":"3934","lastModified":"1299492430000","name":"Burghart Klau\u00dfner","type":"Person","_key":"3358"} +{"label":"Peer Martiny","version":15,"id":"3935","lastModified":"1299494283000","name":"Peer Martiny","type":"Person","_key":"3359"} +{"label":"Petra Zieser","version":21,"id":"3936","lastModified":"1299493631000","name":"Petra Zieser","type":"Person","_key":"3360"} +{"label":"Laura Schmidt","version":13,"id":"3937","lastModified":"1299495234000","name":"Laura Schmidt","type":"Person","_key":"3361"} +{"label":"Sebastian Butz","version":16,"id":"3938","lastModified":"1299494499000","name":"Sebastian Butz","type":"Person","_key":"3362"} +{"label":"Oliver Br\u00f6cker","version":20,"id":"3939","lastModified":"1299493382000","name":"Oliver Br\u00f6cker","type":"Person","_key":"3363"} +{"label":"Underworld","description":"Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.","id":"277","runtime":116,"imdbId":"tt0320691","trailer":"http:\/\/www.youtube.com\/watch?v=RuoIQySqmMQ","homepage":"http:\/\/www.sonypictures.com\/movies\/underworld\/site\/main.html","version":261,"lastModified":"1300009966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c9050595e73d62050000008\/underworld-mid.jpg","studio":"Screen Gems, Inc.","genre":"Action","title":"Underworld","releaseDate":1063929600000,"language":"en","tagline":"An immortal battle for supremacy.","type":"Movie","_key":"3364"} +{"label":"Len Wiseman","version":66,"id":"3950","lastModified":"1299542859000","name":"Len Wiseman","type":"Person","_key":"3365"} +{"label":"Mark Egerton","version":20,"id":"3973","lastModified":"1299492640000","name":"Mark Egerton","type":"Person","_key":"3366"} +{"label":"Kate Beckinsale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22a\/4caca9f17b9aa1152f00022a\/kate-beckinsale-profile.jpg","biography":"Kathryn Bailey \"Kate\" Beckinsale is an English actress. She first gained notice, while a student at Oxford University, for making her debut in the film adaptation of Shakespeare's Much Ado About Nothing. Throughout the 1990s, she worked on both film and television, most notably by portraying the title character in the 1996 BBC television series Emma. In 2001, Beckinsale garnered international recognition when she ","version":126,"birthday":"112489200000","id":"3967","birthplace":"Finsbury Park, London, UK","lastModified":"1300001180000","name":"Kate Beckinsale","type":"Person","_key":"3367"} +{"label":"Shane Brolly","version":34,"id":"3969","lastModified":"1299490957000","name":"Shane Brolly","type":"Person","_key":"3368"} +{"label":"Erwin Leder","version":38,"id":"3970","lastModified":"1299491530000","name":"Erwin Leder","type":"Person","_key":"3369"} +{"label":"Sophia Myles","version":42,"id":"3971","lastModified":"1299927354000","name":"Sophia Myles","type":"Person","_key":"3370"} +{"label":"Wentworth Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4c8e5ae27b9aa174f8000014\/wentworth-miller-profile.jpg","version":46,"id":"3972","lastModified":"1299490833000","name":"Wentworth Miller","type":"Person","_key":"3371"} +{"label":"The Shawshank Redemption","description":"Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.","id":"278","runtime":142,"imdbId":"tt0111161","trailer":"http:\/\/www.youtube.com\/watch?v=ZYSt1FjGOVA","version":382,"lastModified":"1300035692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b7\/4d4ac3797b9aa13ab80011b7\/the-shawshank-redemption-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"The Shawshank Redemption","releaseDate":779155200000,"language":"en","tagline":"Fear can hold you prisoner. Hope can set you free.","type":"Movie","_key":"3372"} +{"label":"Bob Gunton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4bca7a45017a3c0e910000ca\/bob-gunton-profile.jpg","version":64,"id":"4029","lastModified":"1300017805000","name":"Bob Gunton","type":"Person","_key":"3373"} +{"label":"William Sadler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4bca7a8e017a3c0e9900012b\/william-sadler-profile.jpg","version":87,"id":"6573","lastModified":"1299551408000","name":"William Sadler","type":"Person","_key":"3374"} +{"label":"Clancy Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4bca7ad9017a3c0e910000ce\/clancy-brown-profile.jpg","version":84,"id":"6574","lastModified":"1299833637000","name":"Clancy Brown","type":"Person","_key":"3375"} +{"label":"Gil Bellows","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4bca7b18017a3c0e8f0000f2\/gil-bellows-profile.jpg","version":57,"id":"6575","lastModified":"1299927516000","name":"Gil Bellows","type":"Person","_key":"3376"} +{"label":"Mark Rolston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f6\/4bca7b55017a3c0e8f0000f6\/mark-rolston-profile.jpg","version":67,"id":"6576","lastModified":"1299937480000","name":"Mark Rolston","type":"Person","_key":"3377"} +{"label":"James Whitmore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/611\/4be1c3fe017a3c35c1000611\/james-whitmore-profile.jpg","biography":"Born on October 1, 1921, just outside New York City in White Plains, New York, character veteran James Whitmore was well regarded in his early years for his award-winning dramatic capabilities on Broadway and in films. Later he conquered TV with the same trophy-winning results. The son of James Allen Whitmore and wife Florence Crane, he was educated at Connecticut's Choate School after receiving a football scholarship. He later earned his BA from Yale University in 1944 before serving with the M","version":58,"id":"6577","lastModified":"1299948756000","name":"James Whitmore","type":"Person","_key":"3378"} +{"label":"Renee Blaine","version":27,"id":"6578","lastModified":"1299492857000","name":"Renee Blaine","type":"Person","_key":"3379"} +{"label":"Brian Delate","version":42,"id":"6579","lastModified":"1299492465000","name":"Brian Delate","type":"Person","_key":"3380"} +{"label":"Brian Libby","version":28,"id":"6580","lastModified":"1299492718000","name":"Brian Libby","type":"Person","_key":"3381"} +{"label":"Amadeus","description":"Amadeus is the story of the last ten years of Wolfgang Amadeus Mozart\u2019s life told by Director Milos Forman. The main story is about the conflict between a genius\u2019 need for fun and a society that disgraces that type of thing. A spectacular picture about one of the most gifted composers of all times with memorable acting by Tom Hulce who played Mozart.","id":"279","runtime":160,"imdbId":"tt0086879","trailer":"http:\/\/www.youtube.com\/watch?v=918","version":204,"lastModified":"1300009479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e45\/4bc9061b017a3c57fe001e45\/amadeus-mid.jpg","studio":"Orion Pictures Corporation","genre":"Drama","title":"Amadeus","releaseDate":464400000000,"language":"en","tagline":"Amadeus. The man. The music. The magic. The madness. The murder. The mystery. The motion picture.","type":"Movie","_key":"3382"} +{"label":"Milos Forman","biography":"Born Jan Tomas Forman in Caslav, Czechoslovakia, on February 18, 1932, a young Milos Forman lost his parents in the Nazi concentration camp at Auschwitz. He studied filmmaking in Prague and made several films in his native country during the 1960s, including his first, Magic Lantern II (1960), before leaving for America.\n\nHis first American film, Taking Off (1971), received little attention. But the follow-up, One Flew Over the Cuckoo's Nest (1975), was an unqualified success and earned Forman a","version":57,"id":"3974","lastModified":"1299950640000","name":"Milos Forman","type":"Person","_key":"3383"} +{"label":"Tom Hulce","version":36,"id":"3999","lastModified":"1300041690000","name":"Tom Hulce","type":"Person","_key":"3384"} +{"label":"Elizabeth Berridge","version":14,"id":"4000","lastModified":"1299492233000","name":"Elizabeth Berridge","type":"Person","_key":"3385"} +{"label":"Roy Dotrice","version":23,"id":"4002","lastModified":"1299492309000","name":"Roy Dotrice","type":"Person","_key":"3386"} +{"label":"Simon Callow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4cb4e43d5e73d67781000075\/simon-callow-profile.jpg","version":58,"birthday":"-648439200000","id":"4001","birthplace":"Streatham, London, UK","lastModified":"1300031821000","name":"Simon Callow","type":"Person","_key":"3387"} +{"label":"Christine Ebersole","version":24,"id":"4003","lastModified":"1299670687000","name":"Christine Ebersole","type":"Person","_key":"3388"} +{"label":"Jeffrey Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/466\/4c894fe87b9aa1545f000466\/jeffrey-jones-profile.jpg","version":60,"id":"4004","lastModified":"1300043253000","name":"Jeffrey Jones","type":"Person","_key":"3389"} +{"label":"Barbara Bryne","version":14,"id":"4005","lastModified":"1299495004000","name":"Barbara Bryne","type":"Person","_key":"3390"} +{"label":"Terminator 2: Judgment Day","description":"Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.","id":"280","runtime":137,"imdbId":"tt0103064","trailer":"http:\/\/www.youtube.com\/watch?v=eajuMYNYtuY","version":358,"lastModified":"1299969663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4c6280417b9aa172de00052e\/terminator-2-judgment-day-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Terminator 2: Judgment Day","releaseDate":691459200000,"language":"en","tagline":"This time there are two","type":"Movie","_key":"3391"} +{"label":"Joe Morton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67b\/4ce51c017b9aa168b400067b\/joe-morton-profile.jpg","version":80,"id":"3977","lastModified":"1299929006000","name":"Joe Morton","type":"Person","_key":"3392"} +{"label":"S. Epatha Merkerson","version":42,"id":"3978","lastModified":"1299705845000","name":"S. Epatha Merkerson","type":"Person","_key":"3393"} +{"label":"Castulo Guerra","version":35,"id":"3979","lastModified":"1299705845000","name":"Castulo Guerra","type":"Person","_key":"3394"} +{"label":"Danny Cooksey","version":34,"id":"3980","lastModified":"1299705845000","name":"Danny Cooksey","type":"Person","_key":"3395"} +{"label":"Jenette Goldstein","version":55,"id":"3981","lastModified":"1299705845000","name":"Jenette Goldstein","type":"Person","_key":"3396"} +{"label":"Strange Days","description":"Strange Days is a futuristic vision of the world from the eyes of director Kathryn Bigelows. A science fiction thriller about a retired politician named Lenny Nero who has the power of carrying on the memory and dreams of other people.","id":"281","runtime":145,"imdbId":"tt0114558","trailer":"http:\/\/www.youtube.com\/watch?v=5yaXPx6xWEQ","homepage":"http:\/\/www.strange-days.com","version":125,"lastModified":"1300009166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/974\/4d3951c97b9aa1613d000974\/strange-days-mid.jpg","studio":"Lightstorm Entertainment","genre":"Science Fiction","title":"Strange Days","releaseDate":791078400000,"language":"en","tagline":"You know you want it.","type":"Movie","_key":"3397"} +{"label":"Kathryn Bigelow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/512\/4ccb48057b9aa16b9e000512\/kathryn-bigelow-profile.jpg","version":69,"id":"14392","lastModified":"1299958889000","name":"Kathryn Bigelow","type":"Person","_key":"3398"} +{"label":"Ralph Fiennes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4bd3d525017a3c53450000cc\/ralph-fiennes-profile.jpg","biography":"Ralph Nathaniel Twisleton-Wykeham-Fiennes, known simply as Ralph Fiennes is an English actor. He has appeared in films such as Schindler's List, The Constant Gardener and the Harry Potter films as Lord Voldemort.\nFiennes has won a Tony Award and has been nominated twice for Academy Awards.\n\nFiennes was born in Ipswich, Suffolk, England, into an English aristocratic family, the son of Mark Fiennes, a farmer and photographer. His surname is of Norman noble origin.\n\nFiennes met English actress Alex","version":208,"birthday":"-221792400000","id":"5469","birthplace":"Ipswitch, Suffolk, UK","lastModified":"1300038265000","name":"Ralph Fiennes","type":"Person","_key":"3399"} +{"label":"Angela Bassett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c9bb68e5e73d66bc3000001\/angela-bassett-profile.jpg","biography":"

Born in New York City, she grew up in St. Petersburg, Florida. Pushed\n by a high school teacher, she applied for Yale and got a scholarship, \nultimately spending 7 years there including 3 post-grad years studying \ndrama. She first appeared in a small role in the cult favorite F\/X<\/a> (1986), but it was not until 1990 that a spate of TV roles brought her notice. Her breakthrough role, though, was playing . <\/span>She is best known for her leading roles on <\/em>Hitchcock' s movies (\"Dial M for Murder\", \"Rear Window\", \"To Catch a Thief\"). After she got married to Rainer III, Pr","version":38,"birthday":"-1266627600000","id":"4070","birthplace":"Philadelphia, Pennsylvania, U.S.","lastModified":"1299947261000","name":"Grace Kelly","type":"Person","_key":"3437"} +{"label":"Katy Jurado","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e1\/4bf1b46b017a3c32130002e1\/katy-jurado-profile.jpg","version":28,"id":"4069","lastModified":"1299692463000","name":"Katy Jurado","type":"Person","_key":"3438"} +{"label":"Otto Kruger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4ca62f667b9aa17ace000021\/otto-kruger-profile.jpg","version":44,"id":"4071","lastModified":"1299670251000","name":"Otto Kruger","type":"Person","_key":"3439"} +{"label":"Lon Chaney Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87e\/4be44b90017a3c35bf00087e\/lon-chaney-jr-profile.jpg","version":65,"birthday":"-2016234000000","id":"4072","birthplace":"Oklahoma City, Oklahoma, USA","lastModified":"1299492029000","name":"Lon Chaney Jr.","type":"Person","_key":"3440"} +{"label":"Harry Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4bcc68ea017a3c0f30000116\/harry-morgan-profile.jpg","biography":"Harry Morgan (born April 10, 1915) is an American actor. Morgan is perhaps best known as Colonel Sherman T. Potter on M*A*S*H (1975-83), Pete Porter on both Pete and Gladys (1960-62) and December Bride (1954-1959), Detective Bill Gannon on Dragnet (1967-70), and Amos Coogan on Hec Ramsey (1972-74). He has appeared in more than 100 films.\n\nEarly life and career\n\nMorgan was born Harry Bratsberg in Detroit, Michigan of Norwegian heritage. He was raised in Muskegon, Michigan, and graduated from Mu","version":57,"birthday":"-1492995600000","id":"4073","birthplace":"Detroit, Michigan USA","lastModified":"1300013039000","name":"Harry Morgan","type":"Person","_key":"3441"} +{"label":"Ian MacDonald","version":20,"id":"4074","lastModified":"1299494650000","name":"Ian MacDonald","type":"Person","_key":"3442"} +{"label":"Eve McVeagh","version":16,"id":"4075","lastModified":"1299496382000","name":"Eve McVeagh","type":"Person","_key":"3443"} +{"label":"Morgan Farley","version":22,"id":"4076","lastModified":"1299603890000","name":"Morgan Farley","type":"Person","_key":"3444"} +{"label":"Lee Van Cleef","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a7\/4be2e241017a3c35bd0008a7\/lee-van-cleef-profile.jpg","version":74,"id":"4078","lastModified":"1299543476000","name":"Lee Van Cleef","type":"Person","_key":"3445"} +{"label":"Sheb Wooley","version":18,"id":"4080","lastModified":"1299494209000","name":"Sheb Wooley","type":"Person","_key":"3446"} +{"label":"Jack Elam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76d\/4be2c2ac017a3c35bb00076d\/jack-elam-profile.jpg","version":61,"id":"4965","lastModified":"1300013602000","name":"Jack Elam","type":"Person","_key":"3447"} +{"label":"John Doucette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23c\/4cbc5c987b9aa138da00123c\/john-doucette-profile.jpg","version":31,"id":"34130","lastModified":"1300042478000","name":"John Doucette","type":"Person","_key":"3448"} +{"label":"Ted Stanhope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4caf69c67b9aa1263d000015\/ted-stanhope-profile.jpg","version":18,"id":"137203","lastModified":"1299510809000","name":"Ted Stanhope","type":"Person","_key":"3449"} +{"label":"Casablanca","description":"Casablanca is a classic and one of the most revered films of all time. Starring Humphrey Bogart and Ingrid Bergman in a love triangle in the city of Casablanca which is a refuge for many fleeing foreigners looking for a new life during the war. Political romance with a backdrop of war conflict between democracy and totalitarianism. A landmark in film history.","id":"289","runtime":102,"imdbId":"tt0034583","trailer":"http:\/\/www.youtube.com\/watch?v=EJvlGh_FgcI","version":219,"lastModified":"1299911948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f37\/4bc90640017a3c57fe001f37\/casablanca-mid.jpg","studio":"Hall & Wallis Productions","genre":"Crime","title":"Casablanca","releaseDate":-855187200000,"language":"en","tagline":"They had a date with fate in Casablanca!","type":"Movie","_key":"3450"} +{"label":"Michael Curtiz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/603\/4d1854c55e73d6083e009603\/michael-curtiz-profile.jpg","version":73,"birthday":"-2556752400000","id":"4109","birthplace":"Budapest, Hungary","lastModified":"1299491578000","name":"Michael Curtiz","type":"Person","_key":"3451"} +{"label":"Humphrey Bogart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4bcf2e95017a3c63ed000026\/humphrey-bogart-profile.jpg","version":101,"id":"4110","lastModified":"1299833607000","name":"Humphrey Bogart","type":"Person","_key":"3452"} +{"label":"Ingrid Bergman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4bcf2edc017a3c63ed00002a\/ingrid-bergman-profile.jpg","version":61,"id":"4111","lastModified":"1300027242000","name":"Ingrid Bergman","type":"Person","_key":"3453"} +{"label":"Paul Henreid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4bcf2f97017a3c63ed000030\/paul-henreid-profile.jpg","version":41,"id":"4112","lastModified":"1299492361000","name":"Paul Henreid","type":"Person","_key":"3454"} +{"label":"Claude Rains","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d9\/4bcc6801017a3c0f260000d9\/claude-rains-profile.jpg","biography":"Claude Rains (10 November 1889 \u2013 30 May 1967) was an English stage and film actor whose career spanned 47 years; he later held American citizenship. He was known for many roles in Hollywood films, among them the title role in The Invisible Man (1933), a corrupt senator in Mr. Smith Goes to Washington (1939), and, perhaps his most famous performance, Captain Renault in Casablanca (1942).\n<\/br>\nRains was born William Claude Rains in Camberwell, London on November 10, 1889. He grew up, according ","version":66,"birthday":"-2529018000000","id":"4113","birthplace":"London, England, UK","lastModified":"1299491620000","name":"Claude Rains","type":"Person","_key":"3455"} +{"label":"Sydney Greenstreet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16e\/4bcc8fe3017a3c0f3000016e\/sydney-greenstreet-profile.jpg","version":39,"id":"4114","lastModified":"1299492093000","name":"Sydney Greenstreet","type":"Person","_key":"3456"} +{"label":"Madeleine Lebeau","version":19,"id":"4116","lastModified":"1299493494000","name":"Madeleine Lebeau","type":"Person","_key":"3457"} +{"label":"Dooley Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4bcf3048017a3c63ea00001d\/dooley-wilson-profile.jpg","version":14,"id":"4117","lastModified":"1299494065000","name":"Dooley Wilson","type":"Person","_key":"3458"} +{"label":"Joy Page","version":12,"id":"4118","lastModified":"1299493596000","name":"Joy Page","type":"Person","_key":"3459"} +{"label":"John Qualen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4bcf30f5017a3c63ef000032\/john-qualen-profile.jpg","version":47,"id":"4119","lastModified":"1299763871000","name":"John Qualen","type":"Person","_key":"3460"} +{"label":"Leonid Kinskey","version":15,"id":"4120","lastModified":"1299493340000","name":"Leonid Kinskey","type":"Person","_key":"3461"} +{"label":"Marcel Dalio","version":54,"id":"4121","lastModified":"1300040564000","name":"Marcel Dalio","type":"Person","_key":"3462"} +{"label":"Helmut Dantine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4bcf3098017a3c63eb00000f\/helmut-dantine-profile.jpg","version":22,"id":"4122","lastModified":"1299494066000","name":"Helmut Dantine","type":"Person","_key":"3463"} +{"label":"S.Z. Sakall","version":23,"id":"94110","lastModified":"1299500608000","name":"S.Z. Sakall","type":"Person","_key":"3464"} +{"label":"Barton Fink","description":"Set in 1941, a newly successful New York playwright accepts an offer to write movie scripts in LA, and finds himself with writer's block when required to do a B-movie wrestling script, the only relief coming from a traveling salesman living next door.","id":"290","runtime":116,"imdbId":"tt0101410","trailer":"http:\/\/www.youtube.com\/watch?v=WK0WjWlVO9w","version":132,"lastModified":"1300008266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4d\/4bc90645017a3c57fe001f4d\/barton-fink-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Barton Fink","releaseDate":682905600000,"language":"en","type":"Movie","_key":"3465"} +{"label":"Michael Lerner","version":53,"id":"4250","lastModified":"1299492849000","name":"Michael Lerner","type":"Person","_key":"3466"} +{"label":"John Mahoney","version":53,"id":"4251","lastModified":"1299494725000","name":"John Mahoney","type":"Person","_key":"3467"} +{"label":"Jon Polito","version":47,"id":"4253","lastModified":"1299746052000","name":"Jon Polito","type":"Person","_key":"3468"} +{"label":"David Warrilow","version":13,"id":"4254","lastModified":"1299495304000","name":"David Warrilow","type":"Person","_key":"3469"} +{"label":"Richard Portnow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ee\/4d6b39b95e73d66b2b0029ee\/richard-portnow-profile.jpg","version":51,"id":"4255","lastModified":"1299926116000","name":"Richard Portnow","type":"Person","_key":"3470"} +{"label":"Christopher Murney","version":13,"id":"4256","lastModified":"1299493872000","name":"Christopher Murney","type":"Person","_key":"3471"} +{"label":"I.M. Hobson","version":13,"id":"4257","lastModified":"1299494262000","name":"I.M. Hobson","type":"Person","_key":"3472"} +{"label":"Harry Bugin","version":13,"id":"4510","lastModified":"1299494262000","name":"Harry Bugin","type":"Person","_key":"3473"} +{"label":"Riding Giants","description":"Riding Giants is story about big wave surfers who have become heroes and legends in their sport. Directed by the skateboard guru Stacy Peralta.","id":"291","runtime":105,"imdbId":"tt0389326","homepage":"http:\/\/www.sonyclassics.com\/ridinggiants\/","version":165,"lastModified":"1300008143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5b\/4bc90647017a3c57fe001f5b\/riding-giants-mid.jpg","genre":"Documentary","title":"Riding Giants","releaseDate":1089331200000,"language":"en","type":"Movie","_key":"3474"} +{"label":"Stacy Peralta","version":28,"id":"4319","lastModified":"1299668916000","name":"Stacy Peralta","type":"Person","_key":"3475"} +{"label":"Jeff Clark","version":13,"id":"4322","lastModified":"1299494026000","name":"Jeff Clark","type":"Person","_key":"3476"} +{"label":"Darrick Doerner","version":14,"id":"4323","lastModified":"1299495003000","name":"Darrick Doerner","type":"Person","_key":"3477"} +{"label":"Laird John Hamilton","version":17,"id":"4324","lastModified":"1299495493000","name":"Laird John Hamilton","type":"Person","_key":"3478"} +{"label":"Dave Kalama","version":14,"id":"4325","lastModified":"1299494866000","name":"Dave Kalama","type":"Person","_key":"3479"} +{"label":"David H. Kalama Jr.","version":13,"id":"4326","lastModified":"1299496540000","name":"David H. Kalama Jr.","type":"Person","_key":"3480"} +{"label":"Brian L. Keaulana","version":13,"id":"4327","lastModified":"1299496539000","name":"Brian L. Keaulana","type":"Person","_key":"3481"} +{"label":"Buzzy Kerbox","version":13,"id":"4328","lastModified":"1299496431000","name":"Buzzy Kerbox","type":"Person","_key":"3482"} +{"label":"Titus Kinimaka","version":13,"id":"4329","lastModified":"1299496313000","name":"Titus Kinimaka","type":"Person","_key":"3483"} +{"label":"Gerry Lopez","version":27,"id":"4330","lastModified":"1299492980000","name":"Gerry Lopez","type":"Person","_key":"3484"} +{"label":"Mickey Munoz","version":14,"id":"4331","lastModified":"1299496539000","name":"Mickey Munoz","type":"Person","_key":"3485"} +{"label":"Greg Noll","version":13,"id":"4332","lastModified":"1299496313000","name":"Greg Noll","type":"Person","_key":"3486"} +{"label":"Evan Slater","version":13,"id":"4333","lastModified":"1299496312000","name":"Evan Slater","type":"Person","_key":"3487"} +{"label":"Kelly Slater","version":23,"id":"4334","lastModified":"1299493439000","name":"Kelly Slater","type":"Person","_key":"3488"} +{"label":"Darryl Virostko","version":13,"id":"4335","lastModified":"1299496312000","name":"Darryl Virostko","type":"Person","_key":"3489"} +{"label":"Dave Chappelle's Block Party","description":"The American comedian\/actor delivers a story about the alternative Hip Hop scene. A small town Ohio man\u2019s moves to Brooklyn, New York, to throw an unprecedented block party. Filmed with inspiration from the 1973 documentary Wattstax.","id":"292","runtime":100,"imdbId":"tt0425598","homepage":"http:\/\/www.chappellesblockparty.com\/home.html","version":123,"lastModified":"1300008018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f64\/4bc90648017a3c57fe001f64\/dave-chappelle-s-block-party-mid.jpg","genre":"Comedy","title":"Dave Chappelle's Block Party","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"3490"} +{"label":"Dave Chappelle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cd\/4bd2f5a5017a3c63ea0002cd\/dave-chappelle-profile.jpg","version":53,"id":"4169","lastModified":"1299834852000","name":"Dave Chappelle","type":"Person","_key":"3491"} +{"label":"Erykah Badu","version":24,"id":"4237","lastModified":"1300015699000","name":"Erykah Badu","type":"Person","_key":"3492"} +{"label":"Common","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/96b\/4d41c2c55e73d6570400096b\/common-profile.jpg","version":49,"id":"4238","lastModified":"1299600929000","name":"Common","type":"Person","_key":"3493"} +{"label":"Mos Def","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c3\/4c08cc15017a3c33d90007c3\/mos-def-profile.jpg","version":52,"birthday":"124412400000","id":"4239","birthplace":"Brooklyn, New York, USA","lastModified":"1299581811000","name":"Mos Def","type":"Person","_key":"3494"} +{"label":"Bilal","version":12,"id":"4240","lastModified":"1299493855000","name":"Bilal","type":"Person","_key":"3495"} +{"label":"Lil' Cease","version":12,"id":"4241","lastModified":"1299494237000","name":"Lil' Cease","type":"Person","_key":"3496"} +{"label":"Cody ChestnuTT","version":13,"id":"4242","lastModified":"1299495004000","name":"Cody ChestnuTT","type":"Person","_key":"3497"} +{"label":"James 'Kamal' Gray","version":12,"id":"4243","lastModified":"1299493855000","name":"James 'Kamal' Gray","type":"Person","_key":"3498"} +{"label":"Lauryn Hill","version":16,"id":"4244","lastModified":"1299493860000","name":"Lauryn Hill","type":"Person","_key":"3499"} +{"label":"Leonard 'Hub' Hubbard","version":12,"id":"4245","lastModified":"1299494678000","name":"Leonard 'Hub' Hubbard","type":"Person","_key":"3500"} +{"label":"Wyclef Jean","version":20,"id":"4246","lastModified":"1299493871000","name":"Wyclef Jean","type":"Person","_key":"3501"} +{"label":"Tiffany Limos","version":15,"id":"4247","lastModified":"1299492083000","name":"Tiffany Limos","type":"Person","_key":"3502"} +{"label":"Ahmir-Khalib Thompson","version":13,"id":"4719","lastModified":"1299494098000","name":"Ahmir-Khalib Thompson","type":"Person","_key":"3503"} +{"label":"Kanye West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a0\/4cc48ece5e73d677820018a0\/kanye-west-profile.jpg","biography":"Kanye Omari West is an American\nrapper, singer, and record producer. West first rose to fame as a producer for\nRoc-A-Fella Records, where he eventually achieved recognition for his work on\nJay-Z's album The Blu<\/span>eprint, as well as hit singles for musical artists\nincluding Alicia Keys, Ludacris, and Janet Jackson. His style of production\noriginally used pitched-up vocal samples from soul s","version":37,"birthday":"234572400000","id":"4720","birthplace":"Atlanta, Georgia, USA","lastModified":"1299493303000","name":"Kanye West","type":"Person","_key":"3504"} +{"label":"Jill Scott","version":24,"id":"4721","lastModified":"1299493265000","name":"Jill Scott","type":"Person","_key":"3505"} +{"label":"A River Runs Through It","description":"A River Runs Through is a cinematographically stunning true story of Norman Maclean. The story follows Norman and his brother Paul through the experiences of life and growing up, and how their love of fly fishing keeps them together despite varying life circumstances in the untamed west of Montana in the 1920's. ","id":"293","runtime":123,"imdbId":"tt0105265","trailer":"http:\/\/www.youtube.com\/watch?v=1259","version":165,"lastModified":"1300007879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a3\/4c43d9b37b9aa145930003a3\/a-river-runs-through-it-mid.jpg","studio":"Sony Pictures","genre":"Drama","title":"A River Runs Through It","releaseDate":713318400000,"language":"en","type":"Movie","_key":"3506"} +{"label":"Craig Sheffer","version":46,"id":"4138","lastModified":"1299492481000","name":"Craig Sheffer","type":"Person","_key":"3507"} +{"label":"Tom Skerritt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34a\/4c054148017a3c7e8600034a\/tom-skerritt-profile.jpg","version":90,"id":"4139","lastModified":"1300040074000","name":"Tom Skerritt","type":"Person","_key":"3508"} +{"label":"Brenda Blethyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/685\/4be1ead8017a3c35b9000685\/brenda-blethyn-profile.jpg","version":59,"id":"4154","lastModified":"1300019828000","name":"Brenda Blethyn","type":"Person","_key":"3509"} +{"label":"Stephen Shellen","version":21,"id":"4156","lastModified":"1299495684000","name":"Stephen Shellen","type":"Person","_key":"3510"} +{"label":"Vann Gravage","version":16,"id":"4157","lastModified":"1299495681000","name":"Vann Gravage","type":"Person","_key":"3511"} +{"label":"Susan Traylor","version":20,"id":"4158","lastModified":"1299902366000","name":"Susan Traylor","type":"Person","_key":"3512"} +{"label":"Nicole Burdette","version":17,"id":"4159","lastModified":"1299495506000","name":"Nicole Burdette","type":"Person","_key":"3513"} +{"label":"Emily Lloyd","version":28,"id":"18017","lastModified":"1299496444000","name":"Emily Lloyd","type":"Person","_key":"3514"} +{"label":"Desert Hearts","description":"The story of straight-edge literature professor Vivian who travels to Reno to get away from a relationship breakup when she falls in love with an attractive and unconventional girl named Cay. ","id":"294","runtime":97,"imdbId":"tt0089015","trailer":"http:\/\/www.youtube.com\/watch?v=105","version":83,"lastModified":"1299912503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4cdf1e515e73d60f6e000054\/desert-hearts-mid.jpg","studio":"Sam Goldwyn Studios","genre":"Drama","title":"Desert Hearts","releaseDate":473385600000,"language":"en","type":"Movie","_key":"3515"} +{"label":"Helen Shaver","version":30,"id":"4160","lastModified":"1299493515000","name":"Helen Shaver","type":"Person","_key":"3516"} +{"label":"Patricia Charbonneau","version":15,"id":"4161","lastModified":"1299492321000","name":"Patricia Charbonneau","type":"Person","_key":"3517"} +{"label":"Audra Lindley","version":14,"id":"4162","lastModified":"1299493904000","name":"Audra Lindley","type":"Person","_key":"3518"} +{"label":"Donna Deitch","version":13,"id":"4163","lastModified":"1299493902000","name":"Donna Deitch","type":"Person","_key":"3519"} +{"label":"Pirates of the Caribbean Collection","description":"Pirates of the Caribbean is the trilogy of comedic pirate films starring Johnny Depp, Keira Knightley and Orlando Bloom.","id":"295","version":58,"lastModified":"1299816331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f92\/4bc9064f017a3c57fe001f92\/pirates-of-the-caribbean-collection-mid.jpg","title":"Pirates of the Caribbean Collection","language":"en","type":"Movie","_key":"3520"} +{"label":"Terminator 3: Rise of the Machines","description":"It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor \u2026 just like he promised.","id":"296","runtime":109,"imdbId":"tt0181852","trailer":"http:\/\/www.youtube.com\/watch?v=AZdB0V1Z-Og","homepage":"http:\/\/www.terminator-3.de\/","version":244,"lastModified":"1299911871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/109\/4d72b2ea7b9aa15b5e000109\/terminator-3-rise-of-the-machines-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Terminator 3: Rise of the Machines","releaseDate":1057104000000,"language":"en","tagline":"The Machines Will Rise","type":"Movie","_key":"3521"} +{"label":"Jonathan Mostow","version":42,"id":"7213","lastModified":"1299491687000","name":"Jonathan Mostow","type":"Person","_key":"3522"} +{"label":"Claire Danes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a0\/4d03b6ca7b9aa11bc00011a0\/claire-danes-profile.jpg","version":81,"id":"6194","lastModified":"1299491054000","name":"Claire Danes","type":"Person","_key":"3523"} +{"label":"Kristanna Loken","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57d\/4bfab809017a3c703600057d\/kristanna-loken-profile.jpg","version":58,"id":"7218","lastModified":"1299899198000","name":"Kristanna Loken","type":"Person","_key":"3524"} +{"label":"Mark Famiglietti","version":24,"id":"7220","lastModified":"1299492636000","name":"Mark Famiglietti","type":"Person","_key":"3525"} +{"label":"Moira Harris","version":25,"id":"7221","lastModified":"1299492873000","name":"Moira Harris","type":"Person","_key":"3526"} +{"label":"Chopper Bernet","version":27,"id":"7222","lastModified":"1299914407000","name":"Chopper Bernet","type":"Person","_key":"3527"} +{"label":"Christopher Lawford","version":25,"id":"7223","lastModified":"1299492840000","name":"Christopher Lawford","type":"Person","_key":"3528"} +{"label":"Alana Curry","version":24,"id":"7226","lastModified":"1299493012000","name":"Alana Curry","type":"Person","_key":"3529"} +{"label":"Meet Joe Black","description":"When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.","id":"297","runtime":178,"imdbId":"tt0119643","trailer":"http:\/\/www.youtube.com\/watch?v=YifJ85wTwkU","homepage":"http:\/\/www.meetjoeblack.com\/","version":179,"lastModified":"1300007436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d7\/4d5604447b9aa15d010017d7\/meet-joe-black-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Meet Joe Black","releaseDate":910915200000,"language":"en","tagline":"He's Expecting You.","type":"Movie","_key":"3530"} +{"label":"Claire Forlani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4bcc3750017a3c0f340000b6\/claire-forlani-profile.jpg","version":64,"birthday":"78793200000","id":"4174","birthplace":"Twickenham, UK","lastModified":"1299925297000","name":"Claire Forlani","type":"Person","_key":"3531"} +{"label":"Jeffrey Tambor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a6\/4cee7b7b7b9aa1349a0000a6\/jeffrey-tambor-profile.jpg","version":112,"id":"4175","lastModified":"1299927569000","name":"Jeffrey Tambor","type":"Person","_key":"3532"} +{"label":"Marcia Gay Harden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4bd452f0017a3c7fa6000105\/marcia-gay-harden-profile.jpg","version":72,"id":"4726","lastModified":"1299791648000","name":"Marcia Gay Harden","type":"Person","_key":"3533"} +{"label":"Jake Weber","version":34,"id":"4177","lastModified":"1299492011000","name":"Jake Weber","type":"Person","_key":"3534"} +{"label":"David S. Howard","version":14,"id":"4192","lastModified":"1299493857000","name":"David S. Howard","type":"Person","_key":"3535"} +{"label":"Lois Kelly-Miller","version":14,"id":"4193","lastModified":"1299494240000","name":"Lois Kelly-Miller","type":"Person","_key":"3536"} +{"label":"Jahnni St. John","version":14,"id":"4194","lastModified":"1299493335000","name":"Jahnni St. John","type":"Person","_key":"3537"} +{"label":"Richard Clarke","version":15,"id":"4195","lastModified":"1299494240000","name":"Richard Clarke","type":"Person","_key":"3538"} +{"label":"Ocean's Thirteen","description":"Danny Ocean's team of criminals are back and are composing a plan more personal than ever. When ruthless casino owner Willy Bank double-crosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that him and his team will do anything to bring Willy Bank and everything he's got down. Even if it includes hiring help from one of their own enemies, Terry Benedict.","id":"298","runtime":122,"imdbId":"tt0496806","trailer":"http:\/\/www.youtube.com\/watch?v=YsqZosCj-qw","homepage":"http:\/\/oceans13.warnerbros.com\/","version":289,"lastModified":"1300007314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc90661017a3c57fe002018\/ocean-s-thirteen-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Ocean's Thirteen","releaseDate":1181260800000,"language":"en","tagline":"What are the odds of getting even? 13 to one.","type":"Movie","_key":"3539"} +{"label":"Ellen Barkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4c23bc927b9aa1446a000023\/ellen-barkin-profile.jpg","version":97,"id":"6913","lastModified":"1300002025000","name":"Ellen Barkin","type":"Person","_key":"3540"} +{"label":"Bob Einstein","version":24,"id":"16302","lastModified":"1299494087000","name":"Bob Einstein","type":"Person","_key":"3541"} +{"label":"C\u00e9line Dion","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/550\/4cd8b1d87b9aa11b27000550\/celine-dion-profile.jpg","version":35,"id":"16303","lastModified":"1300030589000","name":"C\u00e9line Dion","type":"Person","_key":"3542"} +{"label":"Ocean's Eleven","description":"Ocean's Eleven is the 'Rat-Pack' comedy about robber Danny Ocean and his gang in an attempt to rob the five biggest casinos in Las Vegas.","id":"299","runtime":127,"imdbId":"tt0054135","trailer":"http:\/\/www.youtube.com\/watch?v=D-ApgblbT0A","version":127,"lastModified":"1299911400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/029\/4bc90666017a3c57fe002029\/ocean-s-eleven-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Ocean's Eleven","releaseDate":-296438400000,"language":"en","type":"Movie","_key":"3543"} +{"label":"Frank Sinatra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/259\/4bdf3acc017a3c35b9000259\/frank-sinatra-profile.jpg","version":66,"birthday":"-1705885200000","id":"4347","birthplace":"Hoboken, NJ","lastModified":"1299492022000","name":"Frank Sinatra","type":"Person","_key":"3544"} +{"label":"Dean Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4c1293d87b9aa10273000061\/dean-martin-profile.jpg","version":68,"id":"4299","lastModified":"1299926514000","name":"Dean Martin","type":"Person","_key":"3545"} +{"label":"Peter Lawford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37d\/4cb5f06d7b9aa138da00037d\/peter-lawford-profile.jpg","version":41,"id":"4353","lastModified":"1299492425000","name":"Peter Lawford","type":"Person","_key":"3546"} +{"label":"Angie Dickinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/993\/4bf54d3a017a3c3213000993\/angie-dickinson-profile.jpg","version":33,"id":"4301","lastModified":"1299581545000","name":"Angie Dickinson","type":"Person","_key":"3547"} +{"label":"Cesar Romero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4c49ae4d7b9aa11601000084\/cesar-romero-profile.jpg","version":41,"id":"4355","lastModified":"1299493142000","name":"Cesar Romero","type":"Person","_key":"3548"} +{"label":"Patrice Wymore","version":14,"id":"4356","lastModified":"1299495773000","name":"Patrice Wymore","type":"Person","_key":"3549"} +{"label":"Joey Bishop","version":20,"id":"4361","lastModified":"1299755073000","name":"Joey Bishop","type":"Person","_key":"3550"} +{"label":"Sammy Davis Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/268\/4ca349067b9aa168ba000268\/sammy-davis-jr-profile.jpg","version":32,"id":"20156","lastModified":"1299496167000","name":"Sammy Davis Jr.","type":"Person","_key":"3551"} +{"label":"The Science of Sleep","description":"The Science of Sleep is Michel Gondry\u2019s American Production for French cinema. The emotional drama of the search of one man\u2019s inner self and his difficulty telling the difference between reality and his dreams.","id":"300","runtime":105,"imdbId":"tt0354899","trailer":"http:\/\/www.youtube.com\/watch?v=107","homepage":"http:\/\/www.lasciencedesreves-lefilm.com\/accueil.htm","version":174,"lastModified":"1299801573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03f\/4bc90668017a3c57fe00203f\/la-science-des-reves-mid.jpg","studio":"Gaumont Columbia Tristar Films","genre":"Comedy","title":"The Science of Sleep","releaseDate":1158883200000,"language":"en","type":"Movie","_key":"3552"} +{"label":"Charlotte Gainsbourg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67c\/4bfae225017a3c703100067c\/charlotte-gainsbourg-profile.jpg","version":66,"id":"4273","lastModified":"1300029682000","name":"Charlotte Gainsbourg","type":"Person","_key":"3553"} +{"label":"Miou-Miou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fd\/4d6c8c445e73d66b270034fd\/miou-miou-profile.jpg","version":61,"id":"4274","lastModified":"1299962422000","name":"Miou-Miou","type":"Person","_key":"3554"} +{"label":"Alain Chabat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d1\/4bfae13f017a3c70330005d1\/alain-chabat-profile.jpg","version":71,"id":"4275","lastModified":"1299995257000","name":"Alain Chabat","type":"Person","_key":"3555"} +{"label":"Emma de Caunes","version":23,"id":"4286","lastModified":"1299581736000","name":"Emma de Caunes","type":"Person","_key":"3556"} +{"label":"Aur\u00e9lia Petit","version":19,"id":"4287","lastModified":"1299581736000","name":"Aur\u00e9lia Petit","type":"Person","_key":"3557"} +{"label":"Sacha Bourdo","version":20,"id":"4288","lastModified":"1299581736000","name":"Sacha Bourdo","type":"Person","_key":"3558"} +{"label":"Pierre Vaneck","version":18,"id":"4289","lastModified":"1299581736000","name":"Pierre Vaneck","type":"Person","_key":"3559"} +{"label":"St\u00e9phane Metzger","version":21,"id":"4290","lastModified":"1299581736000","name":"St\u00e9phane Metzger","type":"Person","_key":"3560"} +{"label":"Alain de Moyencourt","version":16,"id":"4291","lastModified":"1299581736000","name":"Alain de Moyencourt","type":"Person","_key":"3561"} +{"label":"Inigo Lezzi","version":17,"id":"4292","lastModified":"1299581736000","name":"Inigo Lezzi","type":"Person","_key":"3562"} +{"label":"Yvette Petit","version":16,"id":"4293","lastModified":"1299581736000","name":"Yvette Petit","type":"Person","_key":"3563"} +{"label":"Jean-Michel Bernard","version":25,"id":"4278","lastModified":"1299581810000","name":"Jean-Michel Bernard","type":"Person","_key":"3564"} +{"label":"Bertrand Delpierre","version":16,"id":"4294","lastModified":"1299581737000","name":"Bertrand Delpierre","type":"Person","_key":"3565"} +{"label":"Eric Mariotto","version":16,"id":"4295","lastModified":"1299581737000","name":"Eric Mariotto","type":"Person","_key":"3566"} +{"label":"Rio Bravo","description":"A classic old western film starring John Wayne, Dean Martin and Ricky Nelson as a defunct threesome; one wounded, another drunk, and the last one a young gunslinger. They are ask by a local sheriff to help keep a bad guy\u2019s brother in jail. This is a western film for people who don\u2019t even like westerns.","id":"301","runtime":144,"imdbId":"tt0053221","trailer":"http:\/\/www.youtube.com\/watch?v=RlAF1DPLIAI","version":168,"lastModified":"1299832351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/653\/4d2e2d305e73d63a6000e653\/rio-bravo-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Rio Bravo","releaseDate":-340588800000,"language":"en","type":"Movie","_key":"3567"} +{"label":"Howard Hawks","version":93,"id":"11435","lastModified":"1300012556000","name":"Howard Hawks","type":"Person","_key":"3568"} +{"label":"John Wayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/271\/4bf18d0a017a3c3215000271\/john-wayne-profile.jpg","biography":"Date of Birth\n26 May 1907, Winterset, Iowa, USA \n\nDate of Death\n11 June 1979, Los Angeles, California, USA (lung & stomach cancer) \n\nBirth Name\nMarion Robert Morrison \n\nNickname\nDuke \nJW (family nickname)\n\nHeight\n6' 4\" (1.93 m) \n\nMini Biography\nJohn Wayne (born Marion Morrison) was the son of pharmacist Clyde Morrison and his wife Mary. Clyde developed a lung condition that required him to move his family from Iowa to the warmer climate of southern California, where they tried ranching in the Mo","version":176,"id":"4165","lastModified":"1299602573000","name":"John Wayne","type":"Person","_key":"3569"} +{"label":"Ricky Nelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/052\/4cb4ad367b9aa138d9000052\/ricky-nelson-profile.jpg","version":17,"id":"4300","lastModified":"1299493307000","name":"Ricky Nelson","type":"Person","_key":"3570"} +{"label":"Walter Brennan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a2\/4bd99f0b017a3c1c090002a2\/walter-brennan-profile.jpg","version":62,"id":"4302","lastModified":"1299491869000","name":"Walter Brennan","type":"Person","_key":"3571"} +{"label":"Ward Bond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59d\/4bfac1ff017a3c703600059d\/ward-bond-profile.jpg","version":69,"id":"4303","lastModified":"1299494695000","name":"Ward Bond","type":"Person","_key":"3572"} +{"label":"John Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/035\/4cb4aa6d7b9aa138d5000035\/john-russell-profile.jpg","version":25,"id":"4304","lastModified":"1299492507000","name":"John Russell","type":"Person","_key":"3573"} +{"label":"Pedro Gonzalez Gonzalez","version":19,"id":"4305","lastModified":"1299495231000","name":"Pedro Gonzalez Gonzalez","type":"Person","_key":"3574"} +{"label":"Estelita Rodriguez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/63a\/4c5b15897b9aa151f300063a\/estelita-rodriguez-profile.jpg","version":15,"id":"4306","lastModified":"1299494254000","name":"Estelita Rodriguez","type":"Person","_key":"3575"} +{"label":"Claude Akins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4ca9d1065e73d643eb000607\/claude-akins-profile.jpg","version":35,"id":"4307","lastModified":"1299582363000","name":"Claude Akins","type":"Person","_key":"3576"} +{"label":"Harry Carey Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4bd70726017a3c21f20000eb\/harry-carey-jr-profile.jpg","version":49,"id":"4316","lastModified":"1299493246000","name":"Harry Carey Jr.","type":"Person","_key":"3577"} +{"label":"Swimming Pool","description":"In the middle of this amusing thriller is a relationship between two different types of females, one is a well know British author and the other is a sex-crazed French teen. The two get into some relationship trouble while living together in this film of psychological imagery and an erotic exploration of the female body. ","id":"302","runtime":102,"imdbId":"tt0324133","homepage":"http:\/\/www.marsdistribution.com\/xml\/flash.html?cfilm=46022","version":194,"lastModified":"1300006808000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30d\/4d4fc5047b9aa13ab800b30d\/swimming-pool-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Crime","title":"Swimming Pool","releaseDate":1054512000000,"language":"en","tagline":"On the surface, all is calm.","type":"Movie","_key":"3578"} +{"label":"Fran\u00e7ois Ozon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/507\/4d10d3735e73d60834000507\/fran-ois-ozon-profile.jpg","version":69,"id":"4387","lastModified":"1300040068000","name":"Fran\u00e7ois Ozon","type":"Person","_key":"3579"} +{"label":"Charlotte Rampling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4c3d24245e73d6036000000d\/charlotte-rampling-profile.jpg","version":96,"id":"44079","lastModified":"1300034926000","name":"Charlotte Rampling","type":"Person","_key":"3580"} +{"label":"Ludivine Sagnier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4c3d26025e73d6035f000010\/ludivine-sagnier-profile.jpg","version":49,"id":"4390","lastModified":"1299491721000","name":"Ludivine Sagnier","type":"Person","_key":"3581"} +{"label":"Charles Dance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e3\/4c46a3af7b9aa15de20001e3\/charles-dance-profile.jpg","version":59,"birthday":"-733021200000","id":"4391","birthplace":"Birmingham, England, UK","lastModified":"1299907716000","name":"Charles Dance","type":"Person","_key":"3582"} +{"label":"Jean-Marie Lamour","version":16,"id":"4392","lastModified":"1299493745000","name":"Jean-Marie Lamour","type":"Person","_key":"3583"} +{"label":"Marc Fayolle","version":16,"id":"4393","lastModified":"1299494468000","name":"Marc Fayolle","type":"Person","_key":"3584"} +{"label":"Mireille Moss\u00e9","version":21,"id":"4394","lastModified":"1299494064000","name":"Mireille Moss\u00e9","type":"Person","_key":"3585"} +{"label":"Michel Fau","version":21,"id":"4395","lastModified":"1299494532000","name":"Michel Fau","type":"Person","_key":"3586"} +{"label":"Jean-Claude Lecas","version":16,"id":"4396","lastModified":"1299495551000","name":"Jean-Claude Lecas","type":"Person","_key":"3587"} +{"label":"Emilie Gavois-Kahn","version":16,"id":"4397","lastModified":"1299495634000","name":"Emilie Gavois-Kahn","type":"Person","_key":"3588"} +{"label":"Erarde Forestali","version":16,"id":"4398","lastModified":"1299494970000","name":"Erarde Forestali","type":"Person","_key":"3589"} +{"label":"Notorious","description":"Released shortly after the war, this classic Hitchcock film illustrates the battle between German Nazis and American spies and the trafficking of drugs.","id":"303","runtime":101,"imdbId":"tt0038787","trailer":"http:\/\/www.youtube.com\/watch?v=2G8HY1UDe7Q","version":129,"lastModified":"1299912594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e89\/4d5972307b9aa15d01004e89\/notorious-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"Notorious","releaseDate":-737856000000,"language":"en","tagline":"Notorious woman of affairs... Adventurous man of the world","type":"Movie","_key":"3590"} +{"label":"Louis Calhern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4bd708fe017a3c21f60000b7\/louis-calhern-profile.jpg","version":35,"id":"4343","lastModified":"1299833364000","name":"Louis Calhern","type":"Person","_key":"3591"} +{"label":"Leopoldine Konstantin","version":15,"id":"4342","lastModified":"1299496033000","name":"Leopoldine Konstantin","type":"Person","_key":"3592"} +{"label":"Reinhold Sch\u00fcnzel","version":23,"id":"4344","lastModified":"1299493862000","name":"Reinhold Sch\u00fcnzel","type":"Person","_key":"3593"} +{"label":"Ivan Triesault","version":22,"id":"5041","lastModified":"1299493949000","name":"Ivan Triesault","type":"Person","_key":"3594"} +{"label":"Alex Minotis","version":19,"id":"5042","lastModified":"1299496032000","name":"Alex Minotis","type":"Person","_key":"3595"} +{"label":"Eberhard Krumschmidt","version":16,"id":"5043","lastModified":"1299495671000","name":"Eberhard Krumschmidt","type":"Person","_key":"3596"} +{"label":"Fred Nurney","version":17,"id":"5044","lastModified":"1299494695000","name":"Fred Nurney","type":"Person","_key":"3597"} +{"label":"Moroni Olsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c06\/4be7013c017a3c35bf000c06\/moroni-olsen-profile.jpg","version":32,"id":"18586","lastModified":"1299496476000","name":"Moroni Olsen","type":"Person","_key":"3598"} +{"label":"Wally Brown","version":16,"id":"96142","lastModified":"1299500758000","name":"Wally Brown","type":"Person","_key":"3599"} +{"label":"Charles Mendl","version":15,"id":"96143","lastModified":"1299507242000","name":"Charles Mendl","type":"Person","_key":"3600"} +{"label":"Ricardo Costa","version":15,"id":"96144","lastModified":"1299507242000","name":"Ricardo Costa","type":"Person","_key":"3601"} +{"label":"Ocean's Collection","description":"The Ocean's Eleven is a star-studded film series about a group of professional robbers who get together to pull off some mind-boggling heists. ","id":"304","version":132,"lastModified":"1300006504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/067\/4bc9066f017a3c57fe002067\/ocean-s-collection-mid.jpg","title":"Ocean's Collection","language":"en","type":"Movie","_key":"3602"} +{"label":"Beverly Hills Cop Series","description":"305.\tThe Beverley hills cop film series that made Eddie Murphy into a superstar of the 1980\u2019s. Murphy plays a Detroit cop named Axel Foley who is always sent to L.A. to help his friends Rosewood and Taggart solve crimes.","id":"305","version":29,"lastModified":"1300006410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/886\/4cebedea7b9aa17c8f000886\/beverly-hills-cop-series-mid.jpg","title":"Beverly Hills Cop Series","language":"en","type":"Movie","_key":"3603"} +{"label":"Beverly Hills Cop III","description":"Detroit cop Axel Foley is back in sunny Southern California in the third installment of the comedic fish-out-of-water Beverly Hills Cop series. On the trail of two murderers, Axel again teams up with Los Angeles cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring -- and it's run by the same gang that shot Billy's boss.","id":"306","runtime":104,"imdbId":"tt0109254","trailer":"http:\/\/www.youtube.com\/watch?v=FhvM8PZadIQ","version":139,"lastModified":"1300006315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/070\/4bc90670017a3c57fe002070\/beverly-hills-cop-iii-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Beverly Hills Cop III","releaseDate":769824000000,"language":"en","tagline":"In for the ride of his life!","type":"Movie","_key":"3604"} +{"label":"Joe Dante","version":76,"id":"4600","lastModified":"1299491511000","name":"Joe Dante","type":"Person","_key":"3605"} +{"label":"Arthur Hiller","version":31,"id":"4601","lastModified":"1300042608000","name":"Arthur Hiller","type":"Person","_key":"3606"} +{"label":"Jon Tenney","version":30,"id":"4602","lastModified":"1299494460000","name":"Jon Tenney","type":"Person","_key":"3607"} +{"label":"Joey Travolta","version":22,"id":"4603","lastModified":"1299493354000","name":"Joey Travolta","type":"Person","_key":"3608"} +{"label":"Theresa Randle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bc\/4cbc74c97b9aa138d60012bc\/theresa-randle-profile.jpg","version":43,"birthday":"-435600000","id":"4604","birthplace":"Los Angeles, California, U.S.","lastModified":"1299492866000","name":"Theresa Randle","type":"Person","_key":"3609"} +{"label":"Eugene Collier","version":15,"id":"4605","lastModified":"1299495255000","name":"Eugene Collier","type":"Person","_key":"3610"} +{"label":"Jimmy Ortega","version":15,"id":"4606","lastModified":"1299493584000","name":"Jimmy Ortega","type":"Person","_key":"3611"} +{"label":"Ousaun Elam","version":19,"id":"4607","lastModified":"1299494228000","name":"Ousaun Elam","type":"Person","_key":"3612"} +{"label":"Ray Lykins","version":15,"id":"4608","lastModified":"1299493850000","name":"Ray Lykins","type":"Person","_key":"3613"} +{"label":"Tim Gilbert","version":15,"id":"4609","lastModified":"1299494229000","name":"Tim Gilbert","type":"Person","_key":"3614"} +{"label":"John Landis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d6\/4d6edf447b9aa12ff10009d6\/john-landis-profile.jpg","version":96,"id":"4610","lastModified":"1299746853000","name":"John Landis","type":"Person","_key":"3615"} +{"label":"Rome, Open City","description":"Open City is a landmark in film history. Filmed in secrecy during the Nazi occupation of Italy, the film shows a realistic portrayal of the underground resistance in Italy in 1945. The film has strong impacting imagery with it\u2019s mix of fiction and reality that strengthened Italian Neo-realism and the film industry.","id":"307","runtime":105,"imdbId":"tt0038890","version":83,"lastModified":"1299671697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08b\/4bc90675017a3c57fe00208b\/roma-citta-aperta-mid.jpg","studio":"Minerva Film SpA","genre":"Drama","title":"Rome, Open City","releaseDate":-765676800000,"language":"en","type":"Movie","_key":"3616"} +{"label":"Roberto Rossellini","version":56,"id":"4410","lastModified":"1300024966000","name":"Roberto Rossellini","type":"Person","_key":"3617"} +{"label":"Aldo Fabrizi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09c\/4c922b717b9aa1021200009c\/aldo-fabrizi-profile.jpg","version":31,"id":"4420","lastModified":"1299578567000","name":"Aldo Fabrizi","type":"Person","_key":"3618"} +{"label":"Anna Magnani","version":16,"id":"4421","lastModified":"1299757965000","name":"Anna Magnani","type":"Person","_key":"3619"} +{"label":"Francesco Grandjacquet","version":13,"id":"4425","lastModified":"1299493587000","name":"Francesco Grandjacquet","type":"Person","_key":"3620"} +{"label":"Marcello Pagliero","version":14,"id":"4422","lastModified":"1299494289000","name":"Marcello Pagliero","type":"Person","_key":"3621"} +{"label":"Harry Feist","version":13,"id":"4424","lastModified":"1299494678000","name":"Harry Feist","type":"Person","_key":"3622"} +{"label":"Maria Michi","version":20,"id":"4426","lastModified":"1299669765000","name":"Maria Michi","type":"Person","_key":"3623"} +{"label":"Vito Annichiarico","version":13,"id":"4423","lastModified":"1299494678000","name":"Vito Annichiarico","type":"Person","_key":"3624"} +{"label":"\u00c1kos Tolnay","version":13,"id":"5001","lastModified":"1299494676000","name":"\u00c1kos Tolnay","type":"Person","_key":"3625"} +{"label":"Joop van Hulzen","version":13,"id":"5002","lastModified":"1299494678000","name":"Joop van Hulzen","type":"Person","_key":"3626"} +{"label":"Carla Rovere","version":13,"id":"5003","lastModified":"1299495266000","name":"Carla Rovere","type":"Person","_key":"3627"} +{"label":"Giovanna Galletti","version":19,"id":"18337","lastModified":"1299501728000","name":"Giovanna Galletti","type":"Person","_key":"3628"} +{"label":"Broken Flowers","description":"As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him. The situation causes Don to examine his relationships with women instead of moving on to the next one, and he embarks on a cross-country search for his old flames who might possess clues to the mystery at hand.","id":"308","runtime":105,"imdbId":"tt0412019","trailer":"http:\/\/www.youtube.com\/watch?v=143","version":202,"lastModified":"1300006056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc90677017a3c57fe0020a5\/broken-flowers-mid.jpg","studio":"Focus Features","genre":"Comedy","title":"Broken Flowers","releaseDate":1123200000000,"language":"en","type":"Movie","_key":"3629"} +{"label":"Jim Jarmusch","version":64,"id":"4429","lastModified":"1299491788000","name":"Jim Jarmusch","type":"Person","_key":"3630"} +{"label":"Sharon Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/203\/4beeece3017a3c4596000203\/sharon-stone-profile.jpg","version":125,"id":"4430","lastModified":"1299925907000","name":"Sharon Stone","type":"Person","_key":"3631"} +{"label":"Jessica Lange","version":62,"id":"4431","lastModified":"1300040074000","name":"Jessica Lange","type":"Person","_key":"3632"} +{"label":"Frances Conroy","version":51,"id":"4432","lastModified":"1300020716000","name":"Frances Conroy","type":"Person","_key":"3633"} +{"label":"Alexis Dziena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/243\/4bdf27d4017a3c35bf000243\/alexis-dziena-profile.jpg","version":44,"id":"4433","lastModified":"1299688691000","name":"Alexis Dziena","type":"Person","_key":"3634"} +{"label":"Heather Simms","version":15,"id":"4439","lastModified":"1299493837000","name":"Heather Simms","type":"Person","_key":"3635"} +{"label":"Brea Frazier","version":15,"id":"4440","lastModified":"1299493836000","name":"Brea Frazier","type":"Person","_key":"3636"} +{"label":"Pell James","version":18,"id":"4441","lastModified":"1299492941000","name":"Pell James","type":"Person","_key":"3637"} +{"label":"Ryan Donowho","version":27,"id":"4442","lastModified":"1299885174000","name":"Ryan Donowho","type":"Person","_key":"3638"} +{"label":"Christopher McDonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a2\/4d0588f05e73d621a50031a2\/christopher-mcdonald-profile.jpg","version":99,"id":"4443","lastModified":"1299491798000","name":"Christopher McDonald","type":"Person","_key":"3639"} +{"label":"Chris Bauer","version":41,"id":"4445","lastModified":"1299543002000","name":"Chris Bauer","type":"Person","_key":"3640"} +{"label":"Mark Webber","version":58,"id":"4451","lastModified":"1299491618000","name":"Mark Webber","type":"Person","_key":"3641"} +{"label":"Homer Murray","version":17,"id":"4878","lastModified":"1299494209000","name":"Homer Murray","type":"Person","_key":"3642"} +{"label":"Larry Fessenden","version":48,"id":"31268","lastModified":"1300027534000","name":"Larry Fessenden","type":"Person","_key":"3643"} +{"label":"The Celebration","description":"A Danish film produced in the Dogma style by Thomas Vinterberg that portrays a family having a party for their father when one son makes a toast speech that tells the truth about the murder of their eldest sister possibly involving the father.","id":"309","runtime":105,"imdbId":"tt0154420","trailer":"http:\/\/www.youtube.com\/watch?v=vKe_AxTFGXc","version":154,"lastModified":"1299913022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fa\/4d20ac277b9aa1737b0021fa\/festen-mid.jpg","studio":"Nimbus Film ApS","genre":"Drama","title":"The Celebration","releaseDate":895622400000,"language":"en","type":"Movie","_key":"3644"} +{"label":"Thomas Vinterberg","version":22,"id":"4453","lastModified":"1299492516000","name":"Thomas Vinterberg","type":"Person","_key":"3645"} +{"label":"Ulrich Thomsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d3e\/4c0c9cd8017a3c7e86000d3e\/ulrich-thomsen-profile.jpg","version":61,"id":"4455","lastModified":"1299908055000","name":"Ulrich Thomsen","type":"Person","_key":"3646"} +{"label":"Henning Moritzen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e00\/4c10b9fc017a3c7e89000e00\/henning-moritzen-profile.jpg","version":15,"id":"4456","lastModified":"1299493136000","name":"Henning Moritzen","type":"Person","_key":"3647"} +{"label":"Thomas Bo Larsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07e\/4c4ed3ce5e73d62ec500007e\/thomas-bo-larsen-profile.jpg","version":29,"id":"4457","lastModified":"1299493435000","name":"Thomas Bo Larsen","type":"Person","_key":"3648"} +{"label":"Helle Dolleris","version":21,"id":"4461","lastModified":"1299494797000","name":"Helle Dolleris","type":"Person","_key":"3649"} +{"label":"Therese Glahn","version":13,"id":"4462","lastModified":"1299496537000","name":"Therese Glahn","type":"Person","_key":"3650"} +{"label":"Klaus Bondam","version":16,"id":"4463","lastModified":"1299496169000","name":"Klaus Bondam","type":"Person","_key":"3651"} +{"label":"Bjarne Henriksen","version":14,"id":"4464","lastModified":"1299495373000","name":"Bjarne Henriksen","type":"Person","_key":"3652"} +{"label":"Gbatokai Dakinah","version":12,"id":"4465","lastModified":"1299496050000","name":"Gbatokai Dakinah","type":"Person","_key":"3653"} +{"label":"Lars Brygmann","version":18,"id":"4467","lastModified":"1299493110000","name":"Lars Brygmann","type":"Person","_key":"3654"} +{"label":"Lene Laub Oksen","version":13,"id":"4468","lastModified":"1299496537000","name":"Lene Laub Oksen","type":"Person","_key":"3655"} +{"label":"Linda Laursen","version":12,"id":"4469","lastModified":"1299496049000","name":"Linda Laursen","type":"Person","_key":"3656"} +{"label":"John Boas","version":12,"id":"4470","lastModified":"1299496049000","name":"John Boas","type":"Person","_key":"3657"} +{"label":"Erna Boas","version":12,"id":"4471","lastModified":"1299496049000","name":"Erna Boas","type":"Person","_key":"3658"} +{"label":"Kaj Rasmussen","version":12,"id":"4480","lastModified":"1299496049000","name":"Kaj Rasmussen","type":"Person","_key":"3659"} +{"label":"Robert Strandg\u00e5rd","version":12,"id":"4481","lastModified":"1299496048000","name":"Robert Strandg\u00e5rd","type":"Person","_key":"3660"} +{"label":"Gry Worre Hallberg","version":12,"id":"4482","lastModified":"1299496048000","name":"Gry Worre Hallberg","type":"Person","_key":"3661"} +{"label":"Bruce Almighty","description":"Bruce Nolan toils as a \"human interest\" television reporter in Buffalo, N.Y. Despite his high ratings and the love of his beautiful girlfriend, Grace, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God -- and the Almighty responds, endowing Bruce with all of His divine powers.","id":"310","runtime":101,"imdbId":"tt0315327","trailer":"http:\/\/www.youtube.com\/watch?v=9VwJC-dxGHs","homepage":"http:\/\/www.brucealmighty.com\/","version":218,"lastModified":"1300005778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4bc90681017a3c57fe0020d3\/bruce-almighty-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Bruce Almighty","releaseDate":1053648000000,"language":"en","tagline":"In Bruce we trust","type":"Movie","_key":"3662"} +{"label":"Jennifer Aniston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4bca8978017a3c116a000017\/jennifer-aniston-profile.jpg","version":136,"id":"4491","lastModified":"1299944359000","name":"Jennifer Aniston","type":"Person","_key":"3663"} +{"label":"Philip Baker Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4ce57b007b9aa179bb000039\/philip-baker-hall-profile.jpg","version":69,"id":"4492","lastModified":"1299491919000","name":"Philip Baker Hall","type":"Person","_key":"3664"} +{"label":"Catherine Bell","version":26,"id":"4493","lastModified":"1299491740000","name":"Catherine Bell","type":"Person","_key":"3665"} +{"label":"Lisa Ann Walter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d8\/4ce30c3c7b9aa168b00003d8\/lisa-ann-walter-profile.jpg","version":36,"id":"4494","lastModified":"1299493551000","name":"Lisa Ann Walter","type":"Person","_key":"3666"} +{"label":"Steve Carell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/043\/4bcde640017a3c6b48000043\/steve-carell-profile.jpg","biography":"

Steven John \"Steve\" Carell<\/SPAN><\/B> (pronounced \/k\u0259\u02c8r\u025bl\/; born August 16, 1962) is an American actor, comedi","version":157,"birthday":"-232851600000","id":"4495","birthplace":"Concord, Massachusetts, USA","lastModified":"1299906495000","name":"Steve Carell","type":"Person","_key":"3667"} +{"label":"Nora Dunn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/043\/4c6985827b9aa13922000043\/nora-dunn-profile.jpg","version":51,"id":"4496","lastModified":"1299492791000","name":"Nora Dunn","type":"Person","_key":"3668"} +{"label":"Paul Satterfield","version":22,"id":"4498","lastModified":"1299493116000","name":"Paul Satterfield","type":"Person","_key":"3669"} +{"label":"Tom Shadyac","version":75,"id":"4499","lastModified":"1299491895000","name":"Tom Shadyac","type":"Person","_key":"3670"} +{"label":"Once Upon a Time in America","description":"This Mafia film is the greatest and last work from Italian director Sergio Leone. Taking place in 1920 to 1960 America the film follows a group Jewish gangsters from childhood into their glory years of the prohibition and as they reunite in their later years. ","id":"311","runtime":229,"imdbId":"tt0087843","trailer":"http:\/\/www.youtube.com\/watch?v=926","version":297,"lastModified":"1299912923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e0\/4bc90682017a3c57fe0020e0\/once-upon-a-time-in-america-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Once Upon a Time in America","releaseDate":454896000000,"language":"en","type":"Movie","_key":"3671"} +{"label":"Sergio Leone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b59\/4c0cc837017a3c7e92000b59\/sergio-leone-profile.jpg","version":96,"id":"4385","lastModified":"1299543475000","name":"Sergio Leone","type":"Person","_key":"3672"} +{"label":"James Woods","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/011\/4bce0caf017a3c24cb000011\/james-woods-profile.jpg","version":115,"id":"4512","lastModified":"1299758657000","name":"James Woods","type":"Person","_key":"3673"} +{"label":"Elizabeth McGovern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53c\/4d7431965e73d6088200053c\/elizabeth-mcgovern-profile.jpg","version":45,"id":"4513","lastModified":"1300002026000","name":"Elizabeth McGovern","type":"Person","_key":"3674"} +{"label":"Tuesday Weld","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6cc\/4bfae101017a3c702f0006cc\/tuesday-weld-profile.jpg","version":44,"id":"4514","lastModified":"1299491749000","name":"Tuesday Weld","type":"Person","_key":"3675"} +{"label":"Treat Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17c\/4caf21f87b9aa1213600017c\/treat-williams-profile.jpg","version":75,"id":"4515","lastModified":"1299880456000","name":"Treat Williams","type":"Person","_key":"3676"} +{"label":"James Hayden","version":14,"id":"4516","lastModified":"1299494245000","name":"James Hayden","type":"Person","_key":"3677"} +{"label":"Joe Pesci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53c\/4bf3a9b0017a3c321500053c\/joe-pesci-profile.jpg","version":112,"id":"4517","lastModified":"1299951016000","name":"Joe Pesci","type":"Person","_key":"3678"} +{"label":"Larry Rapp","version":14,"id":"4518","lastModified":"1299494688000","name":"Larry Rapp","type":"Person","_key":"3679"} +{"label":"William Forsythe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/364\/4d533ddb7b9aa13aba012364\/william-forsythe-profile.jpg","version":77,"id":"4520","lastModified":"1299491216000","name":"William Forsythe","type":"Person","_key":"3680"} +{"label":"Burt Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ec\/4c225abc7b9aa135fd0001ec\/burt-young-profile.jpg","version":90,"id":"4521","lastModified":"1299755073000","name":"Burt Young","type":"Person","_key":"3681"} +{"label":"Scott Schutzman Tiler","version":15,"id":"4750","lastModified":"1299494091000","name":"Scott Schutzman Tiler","type":"Person","_key":"3682"} +{"label":"Rusty Jacobs","version":14,"id":"4751","lastModified":"1299494688000","name":"Rusty Jacobs","type":"Person","_key":"3683"} +{"label":"Adrian Curran","version":14,"id":"4752","lastModified":"1299494245000","name":"Adrian Curran","type":"Person","_key":"3684"} +{"label":"Brian Bloom","version":36,"id":"4753","lastModified":"1299491442000","name":"Brian Bloom","type":"Person","_key":"3685"} +{"label":"Noah Moazezi","version":14,"id":"4754","lastModified":"1299494688000","name":"Noah Moazezi","type":"Person","_key":"3686"} +{"label":"Darlanne Fluegel","version":19,"id":"4761","lastModified":"1299493104000","name":"Darlanne Fluegel","type":"Person","_key":"3687"} +{"label":"Mike Monetti","version":14,"id":"4773","lastModified":"1299494688000","name":"Mike Monetti","type":"Person","_key":"3688"} +{"label":"Jenseits Der Stille","description":"312.\tBeyond Silence is about a family and a young girl\u2019s coming of age story. This German film looks into the lives of the deaf and at a story about the love for music. A girl who has always had to translate speech into sign language for her deaf parents yet when her love for playing music grows strong she must decide to continue doing something she cannot share with her parents.","id":"312","runtime":109,"imdbId":"tt0116692","version":94,"lastModified":"1299531776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4bc90683017a3c57fe0020ea\/jenseits-der-stille-mid.jpg","studio":"Claussen + W\u00f6bke Filmproduktion GmbH","genre":"Drama","title":"Jenseits Der Stille","releaseDate":850953600000,"language":"en","type":"Movie","_key":"3689"} +{"label":"Caroline Link","version":23,"id":"4522","lastModified":"1299492801000","name":"Caroline Link","type":"Person","_key":"3690"} +{"label":"Sylvie Testud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/449\/4bfaa17d017a3c702a000449\/sylvie-testud-profile.jpg","biography":"N\u00e9e d'une m\u00e8re comptable d'origine italienne et d'un p\u00e8re qui les abandonne lorsqu'elle a deux ans, Sylvie Testud grandit dans le quartier populaire de la Croix-Rousse \u00e0 Lyon. Tr\u00e8s t\u00f4t fascin\u00e9e par le cin\u00e9ma, la jeune fille s'identifie notamment au personnage d'ado complex\u00e9e incarn\u00e9 par Charlotte Gainsbourg dans L' Effront\u00e9e. Mont\u00e9e \u00e0 Paris pour suivre des \u00e9tudes d'histoire, elle se lance bient\u00f4t dans la com\u00e9die en int\u00e8grant la classe libre du Cours Florent puis le Conservatoire, o\u00f9 elle a pour ","version":40,"id":"4529","lastModified":"1299901899000","name":"Sylvie Testud","type":"Person","_key":"3691"} +{"label":"Tatjana Trieb","version":12,"id":"4530","lastModified":"1299493325000","name":"Tatjana Trieb","type":"Person","_key":"3692"} +{"label":"Howie Seago","version":12,"id":"4531","lastModified":"1299493092000","name":"Howie Seago","type":"Person","_key":"3693"} +{"label":"Emmanuelle Laborit","version":15,"id":"4532","lastModified":"1299493836000","name":"Emmanuelle Laborit","type":"Person","_key":"3694"} +{"label":"Sibylle Canonica","version":18,"id":"4533","lastModified":"1299670582000","name":"Sibylle Canonica","type":"Person","_key":"3695"} +{"label":"Matthias Habich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d7b\/4cfba3305e73d6299b002d7b\/matthias-habich-profile.jpg","version":41,"id":"4534","lastModified":"1299951047000","name":"Matthias Habich","type":"Person","_key":"3696"} +{"label":"Alexandra Bolz","version":13,"id":"4535","lastModified":"1299495670000","name":"Alexandra Bolz","type":"Person","_key":"3697"} +{"label":"Hansa Czypionka","version":12,"id":"4536","lastModified":"1299494649000","name":"Hansa Czypionka","type":"Person","_key":"3698"} +{"label":"Doris Schade","version":17,"id":"4537","lastModified":"1299493835000","name":"Doris Schade","type":"Person","_key":"3699"} +{"label":"Horst Sachtleben","version":14,"id":"4538","lastModified":"1299494818000","name":"Horst Sachtleben","type":"Person","_key":"3700"} +{"label":"Hubert Mulzer","version":15,"id":"4539","lastModified":"1299495976000","name":"Hubert Mulzer","type":"Person","_key":"3701"} +{"label":"Birge Schade","version":17,"id":"4540","lastModified":"1299493618000","name":"Birge Schade","type":"Person","_key":"3702"} +{"label":"Stephan Kampwirth","version":23,"id":"4541","lastModified":"1299492806000","name":"Stephan Kampwirth","type":"Person","_key":"3703"} +{"label":"Lea Mekhm\u00e9che","version":13,"id":"4542","lastModified":"1299495669000","name":"Lea Mekhm\u00e9che","type":"Person","_key":"3704"} +{"label":"Laurel Severin","version":12,"id":"4543","lastModified":"1299493578000","name":"Laurel Severin","type":"Person","_key":"3705"} +{"label":"Selestina Stanissavijevic","version":12,"id":"4544","lastModified":"1299494649000","name":"Selestina Stanissavijevic","type":"Person","_key":"3706"} +{"label":"Julia Lorbeer","version":13,"id":"4545","lastModified":"1299495975000","name":"Julia Lorbeer","type":"Person","_key":"3707"} +{"label":"Anna Bickhofer","version":12,"id":"4546","lastModified":"1299494649000","name":"Anna Bickhofer","type":"Person","_key":"3708"} +{"label":"Stefan Spreer","version":13,"id":"4547","lastModified":"1299495975000","name":"Stefan Spreer","type":"Person","_key":"3709"} +{"label":"Karin Lehmann","version":13,"id":"4549","lastModified":"1299494648000","name":"Karin Lehmann","type":"Person","_key":"3710"} +{"label":"Stefan von Moers","version":13,"id":"4550","lastModified":"1299494648000","name":"Stefan von Moers","type":"Person","_key":"3711"} +{"label":"Marta Rodriguez","version":12,"id":"4551","lastModified":"1299494648000","name":"Marta Rodriguez","type":"Person","_key":"3712"} +{"label":"Jutta Schaad","version":12,"id":"4552","lastModified":"1299494648000","name":"Jutta Schaad","type":"Person","_key":"3713"} +{"label":"Giora Feidman","version":12,"id":"4553","lastModified":"1299494648000","name":"Giora Feidman","type":"Person","_key":"3714"} +{"label":"Ute Cremer","version":12,"id":"4554","lastModified":"1299495232000","name":"Ute Cremer","type":"Person","_key":"3715"} +{"label":"Franz Hanfstingl","version":12,"id":"4555","lastModified":"1299493836000","name":"Franz Hanfstingl","type":"Person","_key":"3716"} +{"label":"Susann Bieling","version":16,"id":"4563","lastModified":"1299494648000","name":"Susann Bieling","type":"Person","_key":"3717"} +{"label":"Snow Cake","description":"Snowcake was the opening film at the 2006 Berlinale is a sensibly told drama about the manipulation of sorrow and the life of an artist. The film takes it\u2019s time to show the affectionate manner of how joy comes out of living with an artist.","id":"313","runtime":112,"imdbId":"tt0448124","trailer":"http:\/\/www.youtube.com\/watch?v=gvOryJTjAKM","version":152,"lastModified":"1300005440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4bc90687017a3c57fe0020f7\/snow-cake-mid.jpg","studio":"Revolution Films","genre":"Drama","title":"Snow Cake","releaseDate":1139443200000,"language":"en","type":"Movie","_key":"3718"} +{"label":"Jayne Eastwood","version":30,"id":"4568","lastModified":"1299907038000","name":"Jayne Eastwood","type":"Person","_key":"3719"} +{"label":"David Fox","version":26,"id":"4569","lastModified":"1299493501000","name":"David Fox","type":"Person","_key":"3720"} +{"label":"Emily Hampshire","version":27,"id":"4570","lastModified":"1299492885000","name":"Emily Hampshire","type":"Person","_key":"3721"} +{"label":"Jackie Brown","version":13,"id":"4571","lastModified":"1299494236000","name":"Jackie Brown","type":"Person","_key":"3722"} +{"label":"James Allodi","version":18,"id":"4572","lastModified":"1299493933000","name":"James Allodi","type":"Person","_key":"3723"} +{"label":"Selina Cadell","version":14,"id":"4573","lastModified":"1299496016000","name":"Selina Cadell","type":"Person","_key":"3724"} +{"label":"Johnny Goltz","version":13,"id":"4574","lastModified":"1299494677000","name":"Johnny Goltz","type":"Person","_key":"3725"} +{"label":"Marc Evans","version":18,"id":"4575","lastModified":"1299493375000","name":"Marc Evans","type":"Person","_key":"3726"} +{"label":"Catwoman","description":"Liquidated after discovering a corporate conspiracy, mild-mannered graphic artist Patience Phillips washes up on an island, where she's resurrected and endowed with the prowess of a cat -- and she's eager to use her new skills ... as a vigilante. Before you can say \"cat and mouse,\" handsome gumshoe Tom Lone is on her tail.","id":"314","runtime":104,"imdbId":"tt0327554","trailer":"http:\/\/www.youtube.com\/watch?v=ePgLOVNMSTo","version":211,"lastModified":"1300005307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/556\/4d3e035b7b9aa15bb0000556\/catwoman-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Catwoman","releaseDate":1090540800000,"language":"en","type":"Movie","_key":"3727"} +{"label":"Pitof","version":27,"id":"4586","lastModified":"1299960701000","name":"Pitof","type":"Person","_key":"3728"} +{"label":"Halle Berry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f8\/4d6b3abe5e73d66b2b0029f8\/halle-berry-profile.jpg","biography":"

Halle Berry<\/SPAN><\/B> (pronounced \/\u02c8h\u00e6li \u02c8b\u025bri\/; born August 14, 1966) is an American actress, former fashion","version":145,"birthday":"-106794000000","id":"4587","birthplace":"Cleveland, Ohio, USA","lastModified":"1299945713000","name":"Halle Berry","type":"Person","_key":"3729"} +{"label":"Benjamin Bratt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/200\/4c3b101b5e73d671d2000200\/benjamin-bratt-profile.jpg","version":71,"id":"4589","lastModified":"1299948651000","name":"Benjamin Bratt","type":"Person","_key":"3730"} +{"label":"Alex Borstein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4c7d85b45e73d648e200000b\/alex-borstein-profile.jpg","version":96,"birthday":"35420400000","id":"24357","birthplace":"Highland, Illinois, USA","lastModified":"1299561662000","name":"Alex Borstein","type":"Person","_key":"3731"} +{"label":"Michael Massee","version":33,"id":"9289","lastModified":"1299561662000","name":"Michael Massee","type":"Person","_key":"3732"} +{"label":"Byron Mann","version":32,"id":"57748","lastModified":"1299561662000","name":"Byron Mann","type":"Person","_key":"3733"} +{"label":"Kim Smith","version":17,"id":"141446","lastModified":"1299561662000","name":"Kim Smith","type":"Person","_key":"3734"} +{"label":"Christopher Heyerdahl","version":43,"id":"32887","lastModified":"1299970375000","name":"Christopher Heyerdahl","type":"Person","_key":"3735"} +{"label":"Peter Wingfield","version":29,"id":"60462","lastModified":"1299561662000","name":"Peter Wingfield","type":"Person","_key":"3736"} +{"label":"Berend McKenzie","version":17,"id":"141447","lastModified":"1299561662000","name":"Berend McKenzie","type":"Person","_key":"3737"} +{"label":"Faster Pussycat! Kill! Kill!","description":"A B-Movie from Russ Meyer starring three slightly amusing big breasted GoGo girs that travel across the California desert and don\u2019t look back to anyone or anything. A film from the soft porno king of big breasted bawds.","id":"315","runtime":83,"imdbId":"tt0059170","trailer":"http:\/\/www.youtube.com\/watch?v=Nwe3Ikngwyk","version":102,"lastModified":"1299911573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c1e28fa7b9aa129d8000008\/faster-pussycat-kill-kill-mid.jpg","studio":"Eve Productions Inc.","genre":"Action","title":"Faster Pussycat! Kill! Kill!","releaseDate":-139017600000,"language":"en","type":"Movie","_key":"3738"} +{"label":"Russ Meyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4d3e54b65e73d622cf0041df\/russ-meyer-profile.jpg","version":170,"id":"4590","lastModified":"1299491652000","name":"Russ Meyer","type":"Person","_key":"3739"} +{"label":"Tura Satana","version":15,"id":"4592","lastModified":"1299493625000","name":"Tura Satana","type":"Person","_key":"3740"} +{"label":"Haji","version":20,"id":"4593","lastModified":"1299493454000","name":"Haji","type":"Person","_key":"3741"} +{"label":"Lori Williams","version":13,"id":"4594","lastModified":"1299496551000","name":"Lori Williams","type":"Person","_key":"3742"} +{"label":"Sue Bernard","version":14,"id":"4595","lastModified":"1299496512000","name":"Sue Bernard","type":"Person","_key":"3743"} +{"label":"Stuart Lancaster","version":16,"id":"4596","lastModified":"1299495577000","name":"Stuart Lancaster","type":"Person","_key":"3744"} +{"label":"Paul Trinka","version":13,"id":"4597","lastModified":"1299495583000","name":"Paul Trinka","type":"Person","_key":"3745"} +{"label":"Dennis Busch","version":12,"id":"4598","lastModified":"1299495380000","name":"Dennis Busch","type":"Person","_key":"3746"} +{"label":"Ray Barlow","version":12,"id":"4599","lastModified":"1299495380000","name":"Ray Barlow","type":"Person","_key":"3747"} +{"label":"John Furlong","version":17,"id":"4679","lastModified":"1299493913000","name":"John Furlong","type":"Person","_key":"3748"} +{"label":"Michael Finn","version":15,"id":"4685","lastModified":"1299495578000","name":"Michael Finn","type":"Person","_key":"3749"} +{"label":"Halbe Treppe","description":"In the style of a documentary this tragic comedy tells the story of a relationship crisis between two married couples and their longing to break out of their miserable daily lives. In this East German post-wall movie Andreas Dresen introduces the sad everyday life of two couples from Frankfurt an der Oder in a honest and tolerable manner.","id":"316","runtime":111,"imdbId":"tt0304126","version":74,"lastModified":"1299912015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/141\/4bc90691017a3c57fe002141\/halbe-treppe-mid.jpg","studio":"Peter Rommel Productions","genre":"Comedy","title":"Halbe Treppe","releaseDate":1013472000000,"language":"en","type":"Movie","_key":"3750"} +{"label":"Andreas Dresen","version":27,"id":"4617","lastModified":"1299492980000","name":"Andreas Dresen","type":"Person","_key":"3751"} +{"label":"Steffi K\u00fchnert","version":21,"id":"4618","lastModified":"1299995466000","name":"Steffi K\u00fchnert","type":"Person","_key":"3752"} +{"label":"Gabriela Maria Schmeide","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4ca492235e73d636f900020a\/gabriela-maria-schmeide-profile.jpg","version":22,"id":"4619","lastModified":"1299493678000","name":"Gabriela Maria Schmeide","type":"Person","_key":"3753"} +{"label":"Axel Prahl","version":23,"id":"4621","lastModified":"1299492547000","name":"Axel Prahl","type":"Person","_key":"3754"} +{"label":"Janko Brett","version":13,"id":"4622","lastModified":"1299496511000","name":"Janko Brett","type":"Person","_key":"3755"} +{"label":"Miro De Vittoris","version":13,"id":"4623","lastModified":"1299496491000","name":"Miro De Vittoris","type":"Person","_key":"3756"} +{"label":"Knut Elstermann","version":13,"id":"4624","lastModified":"1299496364000","name":"Knut Elstermann","type":"Person","_key":"3757"} +{"label":"Carmen Engler","version":15,"id":"4625","lastModified":"1299496429000","name":"Carmen Engler","type":"Person","_key":"3758"} +{"label":"Frank Fuhrmann","version":14,"id":"4626","lastModified":"1299496431000","name":"Frank Fuhrmann","type":"Person","_key":"3759"} +{"label":"Jens Gra\u00dfmehl","version":13,"id":"4627","lastModified":"1299496536000","name":"Jens Gra\u00dfmehl","type":"Person","_key":"3760"} +{"label":"Julia Ziesche","version":13,"id":"4633","lastModified":"1299495002000","name":"Julia Ziesche","type":"Person","_key":"3761"} +{"label":"Grbavica","description":"The story of the systematic raping of Bosnian woman by the Serbian troops in the Yugoslav wars of the 1990\u2019s. The film won the award for Best Film at the 2006 Berlin Film.","id":"317","runtime":90,"imdbId":"tt0464029","homepage":"http:\/\/www.esmasgeheimnis.de\/","version":97,"lastModified":"1299815575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ec\/4c260be45e73d61a980000ec\/grbavica-mid.jpg","studio":"Coop 99","genre":"Drama","title":"Grbavica","releaseDate":1139702400000,"language":"en","type":"Movie","_key":"3762"} +{"label":"Jasmila Zbanic","version":28,"id":"4634","lastModified":"1299758803000","name":"Jasmila Zbanic","type":"Person","_key":"3763"} +{"label":"Mirjana Karanovic","version":24,"id":"4635","lastModified":"1299493021000","name":"Mirjana Karanovic","type":"Person","_key":"3764"} +{"label":"Luna Mijovic","version":14,"id":"4636","lastModified":"1299494980000","name":"Luna Mijovic","type":"Person","_key":"3765"} +{"label":"Leon Lucev","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f4e\/4cfb88307b9aa1514a002f4e\/leon-lucev-profile.jpg","version":23,"id":"4637","lastModified":"1299758803000","name":"Leon Lucev","type":"Person","_key":"3766"} +{"label":"Kenan Catic","version":14,"id":"4638","lastModified":"1299496380000","name":"Kenan Catic","type":"Person","_key":"3767"} +{"label":"Jasna Beri","version":14,"id":"4639","lastModified":"1299496394000","name":"Jasna Beri","type":"Person","_key":"3768"} +{"label":"Dejan Acimovic","version":14,"id":"4640","lastModified":"1299496365000","name":"Dejan Acimovic","type":"Person","_key":"3769"} +{"label":"Bogdan Dikli\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dd\/4d642ca37b9aa129730002dd\/bogdan-dikli-profile.jpg","version":26,"id":"4641","lastModified":"1299496541000","name":"Bogdan Dikli\u0107","type":"Person","_key":"3770"} +{"label":"Emir Hadzihafizbegovic","version":15,"id":"4642","lastModified":"1299495551000","name":"Emir Hadzihafizbegovic","type":"Person","_key":"3771"} +{"label":"Ermin Bravo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/efe\/4cfb8b697b9aa15149002efe\/ermin-bravo-profile.jpg","version":21,"id":"4643","lastModified":"1299758803000","name":"Ermin Bravo","type":"Person","_key":"3772"} +{"label":"Semka Sokolovic-Bertok","version":14,"id":"4644","lastModified":"1299495583000","name":"Semka Sokolovic-Bertok","type":"Person","_key":"3773"} +{"label":"The Million Dollar Hotel","description":"The Million Dollar Hotel starts with a jump from a roof top that clears up a death in a hotel that was burning to the ground where a lot of strange people had been living. The film was made in collaboration with Bono and the soundtrack is also from U2. ","id":"318","runtime":122,"imdbId":"tt0120753","version":231,"lastModified":"1300047519000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/153\/4bc90692017a3c57fe002153\/the-million-dollar-hotel-mid.jpg","studio":"Icon Productions","genre":"Drama","title":"The Million Dollar Hotel","releaseDate":950832000000,"language":"en","type":"Movie","_key":"3774"} +{"label":"Jeremy Davies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4c6980f67b9aa1391e000027\/jeremy-davies-profile.jpg","version":58,"id":"4654","lastModified":"1300022219000","name":"Jeremy Davies","type":"Person","_key":"3775"} +{"label":"Bud Cort","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04a\/4c2b27dc5e73d6399700004a\/bud-cort-profile.jpg","version":40,"id":"4971","lastModified":"1299492830000","name":"Bud Cort","type":"Person","_key":"3776"} +{"label":"Julian Sands","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4bdafd49017a3c5d8f0000eb\/julian-sands-profile.jpg","version":67,"id":"6104","lastModified":"1299833898000","name":"Julian Sands","type":"Person","_key":"3777"} +{"label":"Conrad Roberts","version":22,"id":"33688","lastModified":"1299495295000","name":"Conrad Roberts","type":"Person","_key":"3778"} +{"label":"Donal Logue","version":79,"id":"10825","lastModified":"1300055007000","name":"Donal Logue","type":"Person","_key":"3779"} +{"label":"Tom Bower","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c72\/4c72ac9e5e73d65f7a000c72\/tom-bower-profile.jpg","biography":"Tom Bower<\/b> is a British writer.

A former Panorama<\/a><\/i> reporter, his books include highly critical unauthorised biographies of Tiny Rowland<\/a>, Robert Maxwell<\/a>, Omar Hashim Epps<\/SPAN> (born July 20, 1973) is an American actor, singer, songwriter, and record producer. His film roles include Juice<\/I>, Major League II<\/I>","version":44,"birthday":"111970800000","id":"4987","birthplace":"Brooklyn, NY","lastModified":"1299492409000","name":"Omar Epps","type":"Person","_key":"3830"} +{"label":"Kur\u00f4do Maki","version":20,"id":"4988","lastModified":"1299492858000","name":"Kur\u00f4do Maki","type":"Person","_key":"3831"} +{"label":"Susumu Terajima","version":48,"id":"4990","lastModified":"1299492248000","name":"Susumu Terajima","type":"Person","_key":"3832"} +{"label":"Masaya Kat\u00f4","version":20,"id":"4989","lastModified":"1299492193000","name":"Masaya Kat\u00f4","type":"Person","_key":"3833"} +{"label":"Royale Watkins","version":13,"id":"4991","lastModified":"1299494235000","name":"Royale Watkins","type":"Person","_key":"3834"} +{"label":"Lombardo Boyar","version":25,"id":"4992","lastModified":"1299492917000","name":"Lombardo Boyar","type":"Person","_key":"3835"} +{"label":"Ren \u00d4sugi","version":30,"id":"4993","lastModified":"1299492727000","name":"Ren \u00d4sugi","type":"Person","_key":"3836"} +{"label":"Ryo Ishibashi","version":43,"id":"4994","lastModified":"1299982006000","name":"Ryo Ishibashi","type":"Person","_key":"3837"} +{"label":"James Shigeta","version":34,"id":"4995","lastModified":"1299492257000","name":"James Shigeta","type":"Person","_key":"3838"} +{"label":"Tatyana Ali","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66e\/4cbdc1017b9aa138d800166e\/tatyana-ali-profile.jpg","version":21,"id":"4996","lastModified":"1299496160000","name":"Tatyana Ali","type":"Person","_key":"3839"} +{"label":"Joseph Ragno","version":14,"id":"5063","lastModified":"1299494489000","name":"Joseph Ragno","type":"Person","_key":"3840"} +{"label":"Jurassic Park Series","description":"An adventure that didn\u2019t end 65 Million years ago\u2026 Steven Spielberg gives us on of the biggest blockbusters of the 1990\u2019s with the Jurassic Park films. This trilogy of films brings all our childhood fantasies to life with dinosaurs interacting with humans \u2013 yet don\u2019t get the idea that this was a friendly meeting\u2026","id":"328","runtime":349,"homepage":"http:\/\/www.jurassicpark.com\/","version":38,"lastModified":"1299808321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4cff8afd7b9aa1514a0061ec\/jurassic-park-series-mid.jpg","title":"Jurassic Park Series","language":"en","tagline":"An Adventure 65 Million Years In The Making.","type":"Movie","_key":"3841"} +{"label":"Jurassic Park","description":"A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, their park visit is anything but tranquil as the security systems go off-line and the Dinosaurs escape.","id":"329","runtime":127,"imdbId":"tt0107290","trailer":"http:\/\/www.youtube.com\/watch?v=g5gbNtYw9KA","homepage":"http:\/\/www.jurassicpark.com\/","version":183,"lastModified":"1300003760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/506\/4cd79aba5e73d676d1000506\/jurassic-park-mid.jpg","studio":"Universal Studios","genre":"Action","title":"Jurassic Park","releaseDate":739756800000,"language":"en","tagline":"An adventure 65 million years in the making.","type":"Movie","_key":"3842"} +{"label":"Sam Neill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4bdabb7a017a3c5d8f00005d\/sam-neill-profile.jpg","version":129,"id":"4783","lastModified":"1299601170000","name":"Sam Neill","type":"Person","_key":"3843"} +{"label":"Laura Dern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a6\/4c237ee27b9aa13f620000a6\/laura-dern-profile.jpg","version":88,"id":"4784","lastModified":"1299778925000","name":"Laura Dern","type":"Person","_key":"3844"} +{"label":"Richard Attenborough","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/216\/4c17b0fe7b9aa108b4000216\/richard-attenborough-profile.jpg","version":105,"id":"4786","lastModified":"1299551353000","name":"Richard Attenborough","type":"Person","_key":"3845"} +{"label":"Joseph Mazzello","version":74,"id":"4787","lastModified":"1299849766000","name":"Joseph Mazzello","type":"Person","_key":"3846"} +{"label":"Ariana Richards","version":35,"id":"4788","lastModified":"1299551354000","name":"Ariana Richards","type":"Person","_key":"3847"} +{"label":"Bob Peck","version":23,"id":"4789","lastModified":"1299492215000","name":"Bob Peck","type":"Person","_key":"3848"} +{"label":"Martin Ferrero","version":28,"id":"4790","lastModified":"1299492138000","name":"Martin Ferrero","type":"Person","_key":"3849"} +{"label":"Greg Burson","version":19,"id":"4791","lastModified":"1299492193000","name":"Greg Burson","type":"Person","_key":"3850"} +{"label":"The Lost World: Jurassic Park","description":"Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that Hammond has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.","id":"330","runtime":129,"imdbId":"tt0119567","trailer":"http:\/\/www.youtube.com\/watch?v=CIkOdrJGNy0","version":202,"lastModified":"1300003622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60c\/4cd86a605e73d676d300060c\/the-lost-world-jurassic-park-mid.jpg","studio":"Universal Studios","genre":"Action","title":"The Lost World: Jurassic Park","releaseDate":864259200000,"language":"en","tagline":"Something has survived.","type":"Movie","_key":"3851"} +{"label":"Pete Postlethwaite","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd6\/4c0cb946017a3c3519000dd6\/pete-postlethwaite-profile.jpg","version":144,"birthday":"-754189200000","id":"4935","birthplace":"Warrington, UK","lastModified":"1299959553000","name":"Pete Postlethwaite","type":"Person","_key":"3852"} +{"label":"Vince Vaughn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4bc9fe2c017a3c0e8b000029\/vince-vaughn-profile.jpg","version":144,"id":"4937","lastModified":"1300048178000","name":"Vince Vaughn","type":"Person","_key":"3853"} +{"label":"Vanessa Lee Chester","version":22,"id":"4938","lastModified":"1299551354000","name":"Vanessa Lee Chester","type":"Person","_key":"3854"} +{"label":"Jurassic Park III","description":"In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.","id":"331","runtime":92,"imdbId":"tt0163025","trailer":"http:\/\/www.youtube.com\/watch?v=eFe0tEB7Svg","version":169,"lastModified":"1300003482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4cd8d1495e73d676cd0006be\/jurassic-park-iii-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Jurassic Park III","releaseDate":995414400000,"language":"en","tagline":"This Time It's Not Just A Walk In The Park!","type":"Movie","_key":"3855"} +{"label":"T\u00e9a Leoni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4c7a5cbb5e73d613d7000402\/tea-leoni-profile.jpg","version":46,"id":"4939","lastModified":"1299491513000","name":"T\u00e9a Leoni","type":"Person","_key":"3856"} +{"label":"Trevor Morgan","version":39,"id":"4940","lastModified":"1299582134000","name":"Trevor Morgan","type":"Person","_key":"3857"} +{"label":"Alessandro Nivola","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/951\/4d654ebf5e73d66a6b000951\/alessandro-nivola-profile.jpg","version":62,"id":"4941","lastModified":"1299543000000","name":"Alessandro Nivola","type":"Person","_key":"3858"} +{"label":"John Diehl","version":53,"id":"4942","lastModified":"1299689594000","name":"John Diehl","type":"Person","_key":"3859"} +{"label":"Bruce A. Young","version":24,"id":"4943","lastModified":"1299491840000","name":"Bruce A. Young","type":"Person","_key":"3860"} +{"label":"Taylor Nichols","version":22,"id":"4944","lastModified":"1299492007000","name":"Taylor Nichols","type":"Person","_key":"3861"} +{"label":"Joe Johnston","version":60,"id":"4945","lastModified":"1299778924000","name":"Joe Johnston","type":"Person","_key":"3862"} +{"label":"Inspector Gadget","description":"Nebbish rent-a-cop John Brown clings to life after he's mangled in an explosion perpetrated by the iniquitous Dr. Claw. But robotics expert Brenda Bradford comes to his rescue and replaces his limbs with a cornucopia of gadgets. Transformed into crime-fighting machine, the newly-created Inspector Gadget vows revenge -- and he'll need all his mettle -- and metal -- to bring down Dr. Claw.","id":"332","runtime":75,"imdbId":"tt0141369","trailer":"http:\/\/www.youtube.com\/watch?v=M5IWHxiwYMg","version":110,"lastModified":"1300003349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e07\/4d40df507b9aa15bb5002e07\/inspector-gadget-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Inspector Gadget","releaseDate":932688000000,"language":"en","tagline":"The greatest hero ever assembled.","type":"Movie","_key":"3863"} +{"label":"David Kellogg","version":17,"id":"4759","lastModified":"1299494457000","name":"David Kellogg","type":"Person","_key":"3864"} +{"label":"Matthew Broderick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b0\/4bd78d84017a3c21e90001b0\/matthew-broderick-profile.jpg","version":113,"id":"4756","lastModified":"1299689062000","name":"Matthew Broderick","type":"Person","_key":"3865"} +{"label":"Rupert Everett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fa\/4c4232fd7b9aa145910001fa\/rupert-everett-profile.jpg","version":103,"id":"4757","lastModified":"1300031821000","name":"Rupert Everett","type":"Person","_key":"3866"} +{"label":"Joely Fisher","version":18,"id":"4758","lastModified":"1299494907000","name":"Joely Fisher","type":"Person","_key":"3867"} +{"label":"Michelle Trachtenberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d9\/4be09659017a3c35b90004d9\/michelle-trachtenberg-profile.jpg","version":56,"id":"49961","lastModified":"1299491146000","name":"Michelle Trachtenberg","type":"Person","_key":"3868"} +{"label":"Andy Dick","version":49,"id":"43120","lastModified":"1299779570000","name":"Andy Dick","type":"Person","_key":"3869"} +{"label":"Cheri Oteri","version":29,"id":"60252","lastModified":"1299501417000","name":"Cheri Oteri","type":"Person","_key":"3870"} +{"label":"Mike Hagerty","version":20,"id":"15105","lastModified":"1299499603000","name":"Mike Hagerty","type":"Person","_key":"3871"} +{"label":"Dabney Coleman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab3\/4c6831515e73d63c86000ab3\/dabney-coleman-profile.jpg","version":56,"id":"12850","lastModified":"1299927600000","name":"Dabney Coleman","type":"Person","_key":"3872"} +{"label":"D.L. Hughley","version":21,"id":"85931","lastModified":"1299499602000","name":"D.L. Hughley","type":"Person","_key":"3873"} +{"label":"Rene Auberjonois","version":41,"id":"9807","lastModified":"1299851906000","name":"Rene Auberjonois","type":"Person","_key":"3874"} +{"label":"Frances Bay","version":44,"id":"11794","lastModified":"1299494417000","name":"Frances Bay","type":"Person","_key":"3875"} +{"label":"Mr. T","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/302\/4bf9dbfd017a3c7033000302\/mr-t-profile.jpg","version":39,"id":"16619","lastModified":"1299948651000","name":"Mr. T","type":"Person","_key":"3876"} +{"label":"Richard Kiel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e6\/4c77cda27b9aa16a0b0002e6\/richard-kiel-profile.jpg","version":57,"id":"10460","lastModified":"1299491876000","name":"Richard Kiel","type":"Person","_key":"3877"} +{"label":"Richard Lee-Sung","version":18,"id":"61709","lastModified":"1299504092000","name":"Richard Lee-Sung","type":"Person","_key":"3878"} +{"label":"Bobby Bell","version":18,"id":"81414","lastModified":"1299507123000","name":"Bobby Bell","type":"Person","_key":"3879"} +{"label":"Bollywood\/Hollywood","description":"The Seth family reside in Canada. While Mr. Seth has passed away, his mom is still alive, living with her daughter-in-law, her son, Rahul, and daughter, Twinky. Both Rahul and Twinky are of marriageable age. Rahul shocks them all when he brings home a gorgeous Kimberly, who he wants to marry, and does get reluctant blessings from his mom and grandma. Before the marriage does take place, Kimberly p","id":"333","runtime":101,"imdbId":"tt0303785","version":95,"lastModified":"1299815659000","studio":"Different Tree Same Wood Productions","genre":"Comedy","title":"Bollywood\/Hollywood","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"3880"} +{"label":"Deepa Mehta","version":28,"id":"4760","lastModified":"1299492979000","name":"Deepa Mehta","type":"Person","_key":"3881"} +{"label":"Rahul Khanna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa6\/4d2202127b9aa1280f000aa6\/rahul-khanna-profile.jpg","version":21,"id":"86213","lastModified":"1299498940000","name":"Rahul Khanna","type":"Person","_key":"3882"} +{"label":"Lisa Ray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05c\/4d28f1377b9aa1052900005c\/lisa-ray-profile.jpg","version":27,"id":"52969","lastModified":"1299906601000","name":"Lisa Ray","type":"Person","_key":"3883"} +{"label":"Moushumi Chatterjee","version":13,"id":"111808","lastModified":"1299508102000","name":"Moushumi Chatterjee","type":"Person","_key":"3884"} +{"label":"Dina Pathak","version":16,"id":"105652","lastModified":"1299507768000","name":"Dina Pathak","type":"Person","_key":"3885"} +{"label":"Kulbhushan Kharbanda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a50\/4d21fc477b9aa1280f000a50\/kulbhushan-kharbanda-profile.jpg","version":24,"id":"53377","lastModified":"1299496601000","name":"Kulbhushan Kharbanda","type":"Person","_key":"3886"} +{"label":"Ranjit Chowdhry","version":14,"id":"106461","lastModified":"1299514899000","name":"Ranjit Chowdhry","type":"Person","_key":"3887"} +{"label":"Jessica Par\u00e9","version":21,"id":"82096","lastModified":"1299503801000","name":"Jessica Par\u00e9","type":"Person","_key":"3888"} +{"label":"Rishma Malik","version":19,"id":"52975","lastModified":"1299503398000","name":"Rishma Malik","type":"Person","_key":"3889"} +{"label":"Jazz Mann","version":13,"id":"111809","lastModified":"1299514554000","name":"Jazz Mann","type":"Person","_key":"3890"} +{"label":"Arjun Lombardi-Singh","version":13,"id":"111810","lastModified":"1299514689000","name":"Arjun Lombardi-Singh","type":"Person","_key":"3891"} +{"label":"Leesa Gaspari","version":13,"id":"111811","lastModified":"1299514966000","name":"Leesa Gaspari","type":"Person","_key":"3892"} +{"label":"Neelam Mansingh","version":13,"id":"111812","lastModified":"1299515014000","name":"Neelam Mansingh","type":"Person","_key":"3893"} +{"label":"Mike Deol","version":13,"id":"111813","lastModified":"1299513954000","name":"Mike Deol","type":"Person","_key":"3894"} +{"label":"Jolly Bader","version":13,"id":"111814","lastModified":"1299509570000","name":"Jolly Bader","type":"Person","_key":"3895"} +{"label":"Ronica Sajnani","version":13,"id":"111815","lastModified":"1299513955000","name":"Ronica Sajnani","type":"Person","_key":"3896"} +{"label":"Jeremy Chow","version":13,"id":"111816","lastModified":"1299513954000","name":"Jeremy Chow","type":"Person","_key":"3897"} +{"label":"Damon D'Oliveira","version":14,"id":"111817","lastModified":"1299501711000","name":"Damon D'Oliveira","type":"Person","_key":"3898"} +{"label":"Nicky Gill","version":13,"id":"111818","lastModified":"1299513954000","name":"Nicky Gill","type":"Person","_key":"3899"} +{"label":"Nicole Innis","version":13,"id":"111819","lastModified":"1299513954000","name":"Nicole Innis","type":"Person","_key":"3900"} +{"label":"Rohan Bader","version":13,"id":"111820","lastModified":"1299513953000","name":"Rohan Bader","type":"Person","_key":"3901"} +{"label":"Terry Stevens","version":13,"id":"111821","lastModified":"1299513953000","name":"Terry Stevens","type":"Person","_key":"3902"} +{"label":"Rupinder Nagra","version":13,"id":"111822","lastModified":"1299513953000","name":"Rupinder Nagra","type":"Person","_key":"3903"} +{"label":"Anne Mroczkowski","version":13,"id":"111823","lastModified":"1299513952000","name":"Anne Mroczkowski","type":"Person","_key":"3904"} +{"label":"Monisha Randhawa","version":13,"id":"111824","lastModified":"1299513953000","name":"Monisha Randhawa","type":"Person","_key":"3905"} +{"label":"Pragna Desai","version":13,"id":"111825","lastModified":"1299513952000","name":"Pragna Desai","type":"Person","_key":"3906"} +{"label":"Akshaye Khanna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e09\/4be818b3017a3c35c1000e09\/akshaye-khanna-profile.jpg","version":39,"id":"87328","lastModified":"1299499453000","name":"Akshaye Khanna","type":"Person","_key":"3907"} +{"label":"Magnolia","description":"A film about lonely and unhappy people in California played out in emotion-filled episodes of star-packed drama. In the search of love, the main character reencounters the traumas of her past.","id":"334","runtime":188,"imdbId":"tt0175880","trailer":"http:\/\/www.youtube.com\/watch?v=QYTqhmzROko","homepage":"http:\/\/www.magnoliamovie.com\/","version":216,"lastModified":"1300003070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7b\/4d6284595e73d60c62003f7b\/magnolia-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Magnolia","releaseDate":944611200000,"language":"en","tagline":"Things fall down. People look up. And when it rains, it pours.","type":"Movie","_key":"3908"} +{"label":"Paul Thomas Anderson","version":57,"id":"4762","lastModified":"1299491745000","name":"Paul Thomas Anderson","type":"Person","_key":"3909"} +{"label":"John C. Reilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92a\/4c0ad07f017a3c7e9200092a\/john-c-reilly-profile.jpg","version":120,"id":"4764","lastModified":"1300017805000","name":"John C. Reilly","type":"Person","_key":"3910"} +{"label":"Jason Robards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68b\/4bf404f9017a3c320d00068b\/jason-robards-profile.jpg","version":59,"birthday":"-1496970000000","id":"4765","birthplace":"Chicago, Illinois, USA","lastModified":"1299948756000","name":"Jason Robards","type":"Person","_key":"3911"} +{"label":"Melora Walters","version":32,"id":"4766","lastModified":"1299902550000","name":"Melora Walters","type":"Person","_key":"3912"} +{"label":"Jeremy Blackman","version":16,"id":"4779","lastModified":"1299494026000","name":"Jeremy Blackman","type":"Person","_key":"3913"} +{"label":"Emmanuel Johnson","version":16,"id":"4777","lastModified":"1299494922000","name":"Emmanuel Johnson","type":"Person","_key":"3914"} +{"label":"Melinda Dillon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e9\/4d4c21715e73d617c70014e9\/melinda-dillon-profile.jpg","version":42,"id":"4778","lastModified":"1299582259000","name":"Melinda Dillon","type":"Person","_key":"3915"} +{"label":"April Grace","version":53,"id":"10691","lastModified":"1299491639000","name":"April Grace","type":"Person","_key":"3916"} +{"label":"Felicity Huffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c5c\/4cba69487b9aa138d8000c5c\/felicity-huffman-profile.jpg","version":31,"id":"7427","lastModified":"1299493298000","name":"Felicity Huffman","type":"Person","_key":"3917"} +{"label":"Orlando Jones","version":44,"id":"18270","lastModified":"1299491780000","name":"Orlando Jones","type":"Person","_key":"3918"} +{"label":"Once Upon a Time in the West","description":"Once Upon a Time in the West is the first and most ambitious film from a trilogy by Sergio Leones. This classic western masterpiece is an epic film about a widow who\u2019s land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with Desperado to protect the woman and her land. Brilliant performances and a daring cinematic","id":"335","runtime":165,"imdbId":"tt0064116","trailer":"http:\/\/www.youtube.com\/watch?v=n7TmU3EK5jg","version":155,"lastModified":"1299810679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4cec6d625e73d63ee200001f\/c-era-una-volta-il-west-mid.jpg","studio":"Paramount Pictures","genre":"Western","title":"Once Upon a Time in the West","releaseDate":-18835200000,"language":"en","tagline":"There were three men in her life. One to take her... one to love her... and one to kill her.","type":"Movie","_key":"3919"} +{"label":"Henry Fonda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4bcc6d57017a3c0f270000fe\/henry-fonda-profile.jpg","biography":"Born in Grand Island, Nebraska, Henry Fonda started his acting debut with the Omaha Community Playhouse, a local amateur theater troupe directed by Dorothy Brando. He moved to the Cape Cod University Players and later Broadway, New York to expand his theatrical career from 1926 to 1934. His first major roles in Broadway include \"New Faces of America\" and \"The Farmer Takes a Wife\". The latter play was transfered to the screen in 1935 and became the start-up of Fonda's lifelong Hollywood career. T","version":123,"birthday":"-2039562000000","id":"4958","birthplace":"Grand Island, Nebraska, USA ","lastModified":"1300029825000","name":"Henry Fonda","type":"Person","_key":"3920"} +{"label":"Claudia Cardinale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4c2364a07b9aa13f61000037\/claudia-cardinale-profile.jpg","version":62,"birthday":"-1000861200000","id":"4959","lastModified":"1299491510000","name":"Claudia Cardinale","type":"Person","_key":"3921"} +{"label":"Charles Bronson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4bcf2be8017a3c63ef00002d\/charles-bronson-profile.jpg","version":97,"birthday":"-1519866000000","id":"4960","birthplace":"Ehrenfeld, Pennsylvania","lastModified":"1300029826000","name":"Charles Bronson","type":"Person","_key":"3922"} +{"label":"Gabriele Ferzetti","version":36,"id":"4961","lastModified":"1299491758000","name":"Gabriele Ferzetti","type":"Person","_key":"3923"} +{"label":"Paolo Stoppa","version":28,"id":"4962","lastModified":"1299492461000","name":"Paolo Stoppa","type":"Person","_key":"3924"} +{"label":"Woody Strode","version":39,"birthday":"-1749517200000","id":"4963","birthplace":"Los Angeles, California, USA","lastModified":"1299492695000","name":"Woody Strode","type":"Person","_key":"3925"} +{"label":"Keenan Wynn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/769\/4bf54cad017a3c3215000769\/keenan-wynn-profile.jpg","version":84,"id":"4966","lastModified":"1300042010000","name":"Keenan Wynn","type":"Person","_key":"3926"} +{"label":"Frank Wolff","version":29,"id":"4968","lastModified":"1299492431000","name":"Frank Wolff","type":"Person","_key":"3927"} +{"label":"Lionel Stander","version":38,"id":"4969","lastModified":"1299793124000","name":"Lionel Stander","type":"Person","_key":"3928"} +{"label":"A Fistful of Dynamite","description":"The last Italian-Western film from director Sergio Leone. The film takes place during the Mexican Revolution and story of how an I.R.A. explosive\u2019s expert gets involved in the revolution. The second part of a Leone\u2019s \u2018Spaghetti Western\u2019 trilogy.","id":"336","runtime":121,"imdbId":"tt0067140","trailer":"http:\/\/www.youtube.com\/watch?v=N91fqyAzULQ","version":79,"lastModified":"1299913010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2eb\/4bc906cf017a3c57fe0022eb\/giu-la-testa-mid.jpg","studio":"Euro International Film","genre":"Western","title":"A Fistful of Dynamite","releaseDate":57542400000,"language":"en","type":"Movie","_key":"3929"} +{"label":"James Coburn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/701\/4c9b77bc7b9aa122de000701\/james-coburn-profile.jpg","version":119,"birthday":"-1304470800000","id":"5563","birthplace":"Laurel, NE","lastModified":"1299948801000","name":"James Coburn","type":"Person","_key":"3930"} +{"label":"Maria Monti","version":20,"id":"5564","lastModified":"1299493469000","name":"Maria Monti","type":"Person","_key":"3931"} +{"label":"Rik Battaglia","version":28,"id":"5565","lastModified":"1299493659000","name":"Rik Battaglia","type":"Person","_key":"3932"} +{"label":"Franco Graziosi","version":13,"id":"5566","lastModified":"1299495231000","name":"Franco Graziosi","type":"Person","_key":"3933"} +{"label":"Romolo Valli","version":33,"id":"5567","lastModified":"1299493020000","name":"Romolo Valli","type":"Person","_key":"3934"} +{"label":"Antoine Saint-John","version":17,"id":"5568","lastModified":"1299493218000","name":"Antoine Saint-John","type":"Person","_key":"3935"} +{"label":"Vivienne Chandler","version":13,"id":"5569","lastModified":"1299494646000","name":"Vivienne Chandler","type":"Person","_key":"3936"} +{"label":"David Warbeck","version":26,"id":"5570","lastModified":"1299493480000","name":"David Warbeck","type":"Person","_key":"3937"} +{"label":"Giulio Battiferri","version":13,"id":"5571","lastModified":"1299495230000","name":"Giulio Battiferri","type":"Person","_key":"3938"} +{"label":"Monsieur Ibrahim et les fleurs du Coran","description":"Monsieur Ibrahim is a story about a young Jewish boy in Paris who meets an old Muslim Turkish grocery store owner. The film touches the themes of friendship and love as the old man is a father figure to the boy as he teaches him of the Koran. The film is based on a book of the popular book by the French author Eric-Emmanuel Schmitt.","id":"337","runtime":94,"imdbId":"tt0329388","homepage":"http:\/\/www.sonyclassics.com\/ibrahim\/aboutcast.html","version":109,"lastModified":"1299913110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4bc906d0017a3c57fe0022f9\/monsieur-ibrahim-et-les-fleurs-du-coran-mid.jpg","studio":"ARP S\u00e9lection","genre":"Drama","title":"Monsieur Ibrahim et les fleurs du Coran","releaseDate":1070409600000,"language":"en","type":"Movie","_key":"3939"} +{"label":"Omar Sharif","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f1\/4ca0a4b65e73d6704e0005f1\/omar-sharif-profile.jpg","biography":"

Omar Sharif, the Franco-Arabic actor best known for playing Sherif Ali in Lawrence of Arabia (1962) and the title role in Doctor Zhivago (1965), was born Michel Demitri Shalhoub on April 10, 1932 in Alexandria, Egypt to Joseph Shalhoub, a lumber merchant, and his wife, Claire. Of Lebanese and Syrian extraction, the young Michel was raised a Roman Catholic. He was educated at Victoria College in Alexandria and too a degree in mathematics and physics from Cairo University with a major. Afterwar","version":76,"id":"5004","birthplace":"Alexandria, Egypt","lastModified":"1299737131000","name":"Omar Sharif","type":"Person","_key":"3940"} +{"label":"Pierre Boulanger","version":14,"id":"6547","lastModified":"1299492468000","name":"Pierre Boulanger","type":"Person","_key":"3941"} +{"label":"Gilbert Melki","version":34,"id":"5079","lastModified":"1299491789000","name":"Gilbert Melki","type":"Person","_key":"3942"} +{"label":"Isabelle Renauld","version":17,"id":"6548","lastModified":"1299493480000","name":"Isabelle Renauld","type":"Person","_key":"3943"} +{"label":"Lola Naymark","version":18,"id":"6549","lastModified":"1299493190000","name":"Lola Naymark","type":"Person","_key":"3944"} +{"label":"Anne Suarez","version":13,"id":"6550","lastModified":"1299493854000","name":"Anne Suarez","type":"Person","_key":"3945"} +{"label":"Mata Gabin","version":15,"id":"6551","lastModified":"1299494848000","name":"Mata Gabin","type":"Person","_key":"3946"} +{"label":"C\u00e9line Samie","version":16,"id":"6552","lastModified":"1299493937000","name":"C\u00e9line Samie","type":"Person","_key":"3947"} +{"label":"Isabelle Adjani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ca\/4d3de12b5e73d622cf0004ca\/isabelle-adjani-profile.jpg","version":54,"id":"6553","lastModified":"1300026984000","name":"Isabelle Adjani","type":"Person","_key":"3948"} +{"label":"Guillaume Gallienne","version":23,"id":"6554","lastModified":"1299493168000","name":"Guillaume Gallienne","type":"Person","_key":"3949"} +{"label":"Guillaume Rannou","version":13,"id":"6555","lastModified":"1299493854000","name":"Guillaume Rannou","type":"Person","_key":"3950"} +{"label":"Manuel Le Li\u00e8vre","version":16,"id":"6556","lastModified":"1299494018000","name":"Manuel Le Li\u00e8vre","type":"Person","_key":"3951"} +{"label":"Daniel Znyk","version":13,"id":"6557","lastModified":"1299493854000","name":"Daniel Znyk","type":"Person","_key":"3952"} +{"label":"Fran\u00e7ois Dupeyron","version":20,"id":"5005","lastModified":"1299492973000","name":"Fran\u00e7ois Dupeyron","type":"Person","_key":"3953"} +{"label":"Good Bye, Lenin!","description":"Good Bye Lenin was the biggest box-office hit for Germany in 2003. An affectionate and refreshing East\/West-Germany comedy about a boy who\u2019s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.","id":"338","runtime":121,"imdbId":"tt0301357","homepage":"http:\/\/www.good-bye-lenin.de\/index2.php","version":182,"lastModified":"1300047386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30e\/4bc906d4017a3c57fe00230e\/good-bye-lenin-mid.jpg","studio":"WDR","genre":"Comedy","title":"Good Bye, Lenin!","releaseDate":1045526400000,"language":"en","type":"Movie","_key":"3954"} +{"label":"Wolfgang Becker","version":18,"id":"4780","lastModified":"1299494940000","name":"Wolfgang Becker","type":"Person","_key":"3955"} +{"label":"Katrin Sa\u00df","version":15,"id":"4792","lastModified":"1299493171000","name":"Katrin Sa\u00df","type":"Person","_key":"3956"} +{"label":"Chulpan Khamatova","version":28,"id":"4793","lastModified":"1299492966000","name":"Chulpan Khamatova","type":"Person","_key":"3957"} +{"label":"Maria Simon","version":25,"id":"4794","lastModified":"1299493645000","name":"Maria Simon","type":"Person","_key":"3958"} +{"label":"Florian Lukas","version":39,"id":"4795","lastModified":"1299492243000","name":"Florian Lukas","type":"Person","_key":"3959"} +{"label":"Alexander Beyer","version":21,"id":"4796","lastModified":"1299492428000","name":"Alexander Beyer","type":"Person","_key":"3960"} +{"label":"Christine Schorn","version":20,"id":"4797","lastModified":"1299492966000","name":"Christine Schorn","type":"Person","_key":"3961"} +{"label":"J\u00fcrgen Holtz","version":18,"id":"4798","lastModified":"1299493100000","name":"J\u00fcrgen Holtz","type":"Person","_key":"3962"} +{"label":"J\u00fcrgen Vogel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/329\/4c77beb55e73d60417000329\/jurgen-vogel-profile.jpg","version":65,"id":"17373","lastModified":"1299947362000","name":"J\u00fcrgen Vogel","type":"Person","_key":"3963"} +{"label":"Elke Werner","version":16,"id":"17411","lastModified":"1299498293000","name":"Elke Werner","type":"Person","_key":"3964"} +{"label":"Night on Earth","description":"A multi-layered film about the night life in taxi\u2019s in different metropolitan cities. Jim Jarmusch takes us to 5 cities where people take taxi\u2019s to meet up with each other and then when all's said and done take taxi\u2019s to eventually go away from each other.","id":"339","runtime":129,"imdbId":"tt0102536","trailer":"http:\/\/www.youtube.com\/watch?v=2626","version":163,"lastModified":"1299913439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4bc906d5017a3c57fe00231c\/night-on-earth-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"Night on Earth","releaseDate":692496000000,"language":"en","type":"Movie","_key":"3965"} +{"label":"Gena Rowlands","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4ca0b1e67b9aa166d8000022\/gena-rowlands-profile.jpg","version":70,"id":"4800","lastModified":"1299491903000","name":"Gena Rowlands","type":"Person","_key":"3966"} +{"label":"Lisanne Falk","version":16,"id":"4801","lastModified":"1299492927000","name":"Lisanne Falk","type":"Person","_key":"3967"} +{"label":"Alan Randolph Scott","version":14,"id":"4802","lastModified":"1299492772000","name":"Alan Randolph Scott","type":"Person","_key":"3968"} +{"label":"Anthony Portillo","version":14,"id":"4803","lastModified":"1299492919000","name":"Anthony Portillo","type":"Person","_key":"3969"} +{"label":"Giancarlo Esposito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc1\/4d4d9d047b9aa13aba008cc1\/giancarlo-esposito-profile.jpg","version":76,"birthday":"-373856400000","id":"4808","birthplace":"Copenhagen, Denmark","lastModified":"1299899199000","name":"Giancarlo Esposito","type":"Person","_key":"3970"} +{"label":"Rosie Perez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51c\/4ce3fe877b9aa168b400051c\/rosie-perez-profile.jpg","version":46,"id":"4810","lastModified":"1299491845000","name":"Rosie Perez","type":"Person","_key":"3971"} +{"label":"Richard Boes","version":16,"id":"4811","lastModified":"1299493853000","name":"Richard Boes","type":"Person","_key":"3972"} +{"label":"Isaach De Bankole","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9a\/4d41fa755e73d6572d000a9a\/isaach-de-bankole-profile.jpg","version":52,"id":"4812","lastModified":"1299491766000","name":"Isaach De Bankole","type":"Person","_key":"3973"} +{"label":"B\u00e9atrice Dalle","version":27,"id":"4813","lastModified":"1299713344000","name":"B\u00e9atrice Dalle","type":"Person","_key":"3974"} +{"label":"Pascal N'Zonzi","version":14,"id":"4814","lastModified":"1299493854000","name":"Pascal N'Zonzi","type":"Person","_key":"3975"} +{"label":"Emile Abossolo M'bo","version":16,"id":"4815","lastModified":"1299494234000","name":"Emile Abossolo M'bo","type":"Person","_key":"3976"} +{"label":"Noel Kaufmann","version":14,"id":"4816","lastModified":"1299494674000","name":"Noel Kaufmann","type":"Person","_key":"3977"} +{"label":"St\u00e9phane Boucher","version":15,"id":"4817","lastModified":"1299493101000","name":"St\u00e9phane Boucher","type":"Person","_key":"3978"} +{"label":"Roberto Benigni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57d\/4c5ad2727b9aa151f300057d\/roberto-benigni-profile.jpg","biography":"Il popolare comico toscano, amatissimo in tutto il mondo, nasce il 27 ottobre 1952 a Misericordia, in provincia di Arezzo. Ancora molto piccolo si stabilisce con la famiglia a Vergaio, nel Pratese, paesino non lontano da quello natale. Personalit\u00e0 aperta e dall'allegria contagiosa, Roberto Benigni sente molto presto l'esigenza di fare nuove esperienze, di viaggiare e di vedere il mondo; soprattutto sente il desiderio di mettersi in mostra e far ridere le persone, cosa che gli d\u00e0 un gusto inebria","version":80,"birthday":"-563158800000","id":"4818","birthplace":"Misericordia, Arezzo, Italia","lastModified":"1300026803000","name":"Roberto Benigni","type":"Person","_key":"3979"} +{"label":"Paolo Bonacelli","version":39,"id":"4819","lastModified":"1299491760000","name":"Paolo Bonacelli","type":"Person","_key":"3980"} +{"label":"Gianni Schettino","version":14,"id":"4820","lastModified":"1299493587000","name":"Gianni Schettino","type":"Person","_key":"3981"} +{"label":"Antonio Ragusa","version":14,"id":"4821","lastModified":"1299494235000","name":"Antonio Ragusa","type":"Person","_key":"3982"} +{"label":"Nicola Facondo","version":14,"id":"4822","lastModified":"1299493853000","name":"Nicola Facondo","type":"Person","_key":"3983"} +{"label":"Camilla Begnoni","version":14,"id":"4823","lastModified":"1299495265000","name":"Camilla Begnoni","type":"Person","_key":"3984"} +{"label":"Romolo Di Biasi","version":14,"id":"4824","lastModified":"1299494674000","name":"Romolo Di Biasi","type":"Person","_key":"3985"} +{"label":"Donatella Servadio","version":14,"id":"4825","lastModified":"1299493853000","name":"Donatella Servadio","type":"Person","_key":"3986"} +{"label":"Kari V\u00e4\u00e4n\u00e4nen","version":27,"id":"4827","lastModified":"1299494338000","name":"Kari V\u00e4\u00e4n\u00e4nen","type":"Person","_key":"3987"} +{"label":"Tomi Salmela","version":14,"id":"4829","lastModified":"1299493587000","name":"Tomi Salmela","type":"Person","_key":"3988"} +{"label":"Eija Vilpas","version":19,"id":"4830","lastModified":"1299494234000","name":"Eija Vilpas","type":"Person","_key":"3989"} +{"label":"Jaakko Talaskivi","version":14,"id":"4831","lastModified":"1299493586000","name":"Jaakko Talaskivi","type":"Person","_key":"3990"} +{"label":"Klaus Heydemann","version":17,"id":"4832","lastModified":"1299496015000","name":"Klaus Heydemann","type":"Person","_key":"3991"} +{"label":"Armin Mueller-Stahl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/218\/4c3b13465e73d671d0000218\/armin-mueller-stahl-profile.jpg","version":125,"id":"12647","lastModified":"1299935759000","name":"Armin Mueller-Stahl","type":"Person","_key":"3992"} +{"label":"Everything is Illuminated","description":"The filmed version of the semi-autobiographical novel by American writer Jonathan Safran Foer of the same name, in which a young Jewish American is on a trip in the past.","id":"340","runtime":106,"imdbId":"tt0404030","trailer":"http:\/\/www.youtube.com\/watch?v=tSUOYY4oukc","homepage":"http:\/\/wip.warnerbros.com\/everythingisilluminated\/","version":190,"lastModified":"1300002263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32a\/4bc906d7017a3c57fe00232a\/everything-is-illuminated-mid.jpg","studio":"Warner Independent Pictures","genre":"Action","title":"Everything is Illuminated","releaseDate":1126828800000,"language":"en","type":"Movie","_key":"3993"} +{"label":"Liev Schreiber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73c\/4c096213017a3c7e8900073c\/liev-schreiber-profile.jpg","version":130,"id":"23626","lastModified":"1299959553000","name":"Liev Schreiber","type":"Person","_key":"3994"} +{"label":"Eugene Hutz","version":18,"id":"4846","lastModified":"1299806609000","name":"Eugene Hutz","type":"Person","_key":"3995"} +{"label":"Boris Leskin","version":16,"id":"4852","lastModified":"1299806609000","name":"Boris Leskin","type":"Person","_key":"3996"} +{"label":"Jana Hrabetova","version":15,"id":"4858","lastModified":"1299806609000","name":"Jana Hrabetova","type":"Person","_key":"3997"} +{"label":"Jonathan Safran Foer","version":17,"id":"4853","lastModified":"1299806609000","name":"Jonathan Safran Foer","type":"Person","_key":"3998"} +{"label":"Stephen Samudovsky","version":15,"id":"4861","lastModified":"1299806609000","name":"Stephen Samudovsky","type":"Person","_key":"3999"} +{"label":"Oleksandr Choroshko","version":14,"id":"4862","lastModified":"1299806609000","name":"Oleksandr Choroshko","type":"Person","_key":"4000"} +{"label":"Gil Kazimirov","version":14,"id":"4863","lastModified":"1299806609000","name":"Gil Kazimirov","type":"Person","_key":"4001"} +{"label":"Zuzana Hodkova","version":14,"id":"4860","lastModified":"1299806609000","name":"Zuzana Hodkova","type":"Person","_key":"4002"} +{"label":"Ljubomir Dezera","version":14,"id":"4864","lastModified":"1299806609000","name":"Ljubomir Dezera","type":"Person","_key":"4003"} +{"label":"Laryssa Lauret","version":14,"id":"4879","lastModified":"1299806610000","name":"Laryssa Lauret","type":"Person","_key":"4004"} +{"label":"Tereza Veselkova","version":14,"id":"4880","lastModified":"1299806610000","name":"Tereza Veselkova","type":"Person","_key":"4005"} +{"label":"Vera Sindelarova","version":14,"id":"4881","lastModified":"1299806610000","name":"Vera Sindelarova","type":"Person","_key":"4006"} +{"label":"Lukas Kral","version":14,"id":"4882","lastModified":"1299806610000","name":"Lukas Kral","type":"Person","_key":"4007"} +{"label":"A Crime","description":"A Crime is a Thriller from French director Manuel Pradal and is a French-American co-production about a risky three person relationship.","id":"341","runtime":100,"imdbId":"tt0489010","version":157,"lastModified":"1299938379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/333\/4bc906d9017a3c57fe002333\/a-crime-mid.jpg","studio":"ARP S\u00e9lection","genre":"Mystery","title":"A Crime","releaseDate":1160524800000,"language":"en","type":"Movie","_key":"4008"} +{"label":"Emmanuelle B\u00e9art","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c82\/4c5f42c57b9aa151f4000c82\/emmanuelle-beart-profile.jpg","version":54,"id":"4885","lastModified":"1299928286000","name":"Emmanuelle B\u00e9art","type":"Person","_key":"4009"} +{"label":"Norman Reedus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d1\/4c8cf3415e73d6068e0004d1\/norman-reedus-profile.jpg","version":58,"id":"4886","lastModified":"1299908197000","name":"Norman Reedus","type":"Person","_key":"4010"} +{"label":"Lily Rabe","version":22,"id":"4888","lastModified":"1299491434000","name":"Lily Rabe","type":"Person","_key":"4011"} +{"label":"Kim Director","version":22,"id":"4889","lastModified":"1299492300000","name":"Kim Director","type":"Person","_key":"4012"} +{"label":"Brian Tarantina","version":18,"id":"4890","lastModified":"1300030403000","name":"Brian Tarantina","type":"Person","_key":"4013"} +{"label":"Patrick Collins","version":15,"id":"4891","lastModified":"1299494271000","name":"Patrick Collins","type":"Person","_key":"4014"} +{"label":"Chuck Cooper","version":14,"id":"4892","lastModified":"1299926116000","name":"Chuck Cooper","type":"Person","_key":"4015"} +{"label":"Clem Cheung","version":13,"id":"4893","lastModified":"1299495666000","name":"Clem Cheung","type":"Person","_key":"4016"} +{"label":"Manuel Pradal","version":13,"id":"4883","lastModified":"1299493093000","name":"Manuel Pradal","type":"Person","_key":"4017"} +{"label":"Summer Storm","description":"Tobi and Achim, the pride of the local crew club, have been the best of friends for years and are convinced that nothing will ever stand in the way of their friendship. They look forward to the upcoming summer camp and the crew competition. Then the gay team from Berlin arrives and Tobi is totally confused. The evening before the races begin, the storm that breaks out is more than meteorlogical...","id":"342","runtime":98,"imdbId":"tt0420206","homepage":"http:\/\/www.sommersturm.de\/main.html","version":133,"lastModified":"1300001980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/348\/4bc906de017a3c57fe002348\/sommersturm-mid.jpg","studio":"Claussen + W\u00f6bke Filmproduktion GmbH","genre":"Comedy","title":"Summer Storm","releaseDate":1094083200000,"language":"en","type":"Movie","_key":"4018"} +{"label":"Marco Kreuzpaintner","version":27,"id":"5192","lastModified":"1299493160000","name":"Marco Kreuzpaintner","type":"Person","_key":"4019"} +{"label":"Benedict Hoermann","version":13,"id":"5199","lastModified":"1299496015000","name":"Benedict Hoermann","type":"Person","_key":"4020"} +{"label":"Robert Stadlober","version":28,"id":"5201","lastModified":"1299492536000","name":"Robert Stadlober","type":"Person","_key":"4021"} +{"label":"Kostja Ullmann","version":17,"id":"5202","lastModified":"1299493648000","name":"Kostja Ullmann","type":"Person","_key":"4022"} +{"label":"Alicja Bachleda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/298\/4c95c6a87b9aa10d59000298\/alicja-bachleda-profile.jpg","version":23,"id":"5203","lastModified":"1299492386000","name":"Alicja Bachleda","type":"Person","_key":"4023"} +{"label":"J\u00fcrgen Tonkel","version":23,"id":"5204","lastModified":"1299494361000","name":"J\u00fcrgen Tonkel","type":"Person","_key":"4024"} +{"label":"Tristano Casanova","version":13,"id":"5205","lastModified":"1299496014000","name":"Tristano Casanova","type":"Person","_key":"4025"} +{"label":"Miriam Morgenstern","version":13,"id":"5206","lastModified":"1299494674000","name":"Miriam Morgenstern","type":"Person","_key":"4026"} +{"label":"Marlon Kittel","version":15,"id":"5207","lastModified":"1299493852000","name":"Marlon Kittel","type":"Person","_key":"4027"} +{"label":"Hanno Koffler","version":24,"id":"5208","lastModified":"1299492666000","name":"Hanno Koffler","type":"Person","_key":"4028"} +{"label":"Joseph M'Barek","version":15,"id":"5209","lastModified":"1299494673000","name":"Joseph M'Barek","type":"Person","_key":"4029"} +{"label":"Alexa Maria Surholt","version":14,"id":"5210","lastModified":"1299495030000","name":"Alexa Maria Surholt","type":"Person","_key":"4030"} +{"label":"Jeff Fischer","version":13,"id":"5211","lastModified":"1299494673000","name":"Jeff Fischer","type":"Person","_key":"4031"} +{"label":"Michael Wiesner","version":13,"id":"5212","lastModified":"1299494673000","name":"Michael Wiesner","type":"Person","_key":"4032"} +{"label":"Benjamin Vilzmann","version":13,"id":"5213","lastModified":"1299496014000","name":"Benjamin Vilzmann","type":"Person","_key":"4033"} +{"label":"Ludwig Blochberger","version":20,"id":"5214","lastModified":"1299494474000","name":"Ludwig Blochberger","type":"Person","_key":"4034"} +{"label":"Harold and Maude","description":"The young Harold lives in his own world of suicide-attempts and funeral visits to avoid the misery of his current family and home environment. Harold meets an 80-year-old woman named Maude who also lives in her own world yet one in which she is having the time of her life. When the two opposites meet they realize that their differences don\u2019t matter and they become best friends and love each other.","id":"343","runtime":91,"imdbId":"tt0067185","version":129,"lastModified":"1299911641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fb\/4c7084df5e73d65f7e0008fb\/harold-and-maude-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Harold and Maude","releaseDate":62035200000,"language":"en","type":"Movie","_key":"4035"} +{"label":"Hal Ashby","version":36,"id":"4964","lastModified":"1300003386000","name":"Hal Ashby","type":"Person","_key":"4036"} +{"label":"Ruth Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4cadcf2b7b9aa11fc200003f\/ruth-gordon-profile.jpg","version":28,"id":"4970","lastModified":"1299926752000","name":"Ruth Gordon","type":"Person","_key":"4037"} +{"label":"Cyril Cusack","version":48,"id":"4973","lastModified":"1299927795000","name":"Cyril Cusack","type":"Person","_key":"4038"} +{"label":"Charles Tyner","version":16,"id":"4974","lastModified":"1299495685000","name":"Charles Tyner","type":"Person","_key":"4039"} +{"label":"Ellen Geer","version":20,"id":"4975","lastModified":"1299493910000","name":"Ellen Geer","type":"Person","_key":"4040"} +{"label":"Eric Christmas","version":17,"id":"4976","lastModified":"1299492712000","name":"Eric Christmas","type":"Person","_key":"4041"} +{"label":"G. Wood","version":12,"id":"4977","lastModified":"1299494287000","name":"G. Wood","type":"Person","_key":"4042"} +{"label":"Judy Engles","version":12,"id":"4978","lastModified":"1299493612000","name":"Judy Engles","type":"Person","_key":"4043"} +{"label":"Shari Summers","version":12,"id":"4979","lastModified":"1299493893000","name":"Shari Summers","type":"Person","_key":"4044"} +{"label":"Vivian Pickles","version":17,"id":"19616","lastModified":"1299515514000","name":"Vivian Pickles","type":"Person","_key":"4045"} +{"label":"Bang Boom Bang","description":"Bank robber Kelle Grabowski escapes from prison while his unemployed smalltime crook buddy is sitting around doing nothing after he just lost all their money. A fast paced comedy from German director Peter Thorwarth.","id":"344","runtime":110,"imdbId":"tt0135790","homepage":"http:\/\/www.bangboombang.de\/","version":101,"lastModified":"1299911334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36b\/4bc906e4017a3c57fe00236b\/bang-boom-bang-mid.jpg","genre":"Action","title":"Bang Boom Bang","releaseDate":935625600000,"language":"en","type":"Movie","_key":"4046"} +{"label":"Peter Thorwarth","version":37,"id":"4918","lastModified":"1299947362000","name":"Peter Thorwarth","type":"Person","_key":"4047"} +{"label":"Oliver Korittke","version":24,"id":"4920","lastModified":"1299492816000","name":"Oliver Korittke","type":"Person","_key":"4048"} +{"label":"Ralf Richter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/982\/4d1b8eb15e73d6082e00b982\/ralf-richter-profile.jpg","version":39,"id":"4922","lastModified":"1299492018000","name":"Ralf Richter","type":"Person","_key":"4049"} +{"label":"Diether Krebs","version":16,"id":"4923","lastModified":"1299494348000","name":"Diether Krebs","type":"Person","_key":"4050"} +{"label":"Martin Semmelrogge","version":36,"id":"4924","lastModified":"1299493939000","name":"Martin Semmelrogge","type":"Person","_key":"4051"} +{"label":"Alexandra Neldel","version":42,"id":"4927","lastModified":"1299492444000","name":"Alexandra Neldel","type":"Person","_key":"4052"} +{"label":"Monica Nancy Wick","version":15,"id":"4928","lastModified":"1299494457000","name":"Monica Nancy Wick","type":"Person","_key":"4053"} +{"label":"Sabine Kaack","version":15,"id":"4929","lastModified":"1299494342000","name":"Sabine Kaack","type":"Person","_key":"4054"} +{"label":"Jochen Nickel","version":28,"id":"4936","lastModified":"1299492434000","name":"Jochen Nickel","type":"Person","_key":"4055"} +{"label":"Detlef Bothe","version":20,"id":"14637","lastModified":"1299494827000","name":"Detlef Bothe","type":"Person","_key":"4056"} +{"label":"\u00d6mer Simsek","version":17,"id":"19928","lastModified":"1299497349000","name":"\u00d6mer Simsek","type":"Person","_key":"4057"} +{"label":"Heinrich Giskes","version":17,"id":"4925","lastModified":"1299496534000","name":"Heinrich Giskes","type":"Person","_key":"4058"} +{"label":"Ingolf L\u00fcck","version":21,"id":"21995","lastModified":"1299494487000","name":"Ingolf L\u00fcck","type":"Person","_key":"4059"} +{"label":"Christian Kahrmann","version":25,"id":"43454","lastModified":"1299492666000","name":"Christian Kahrmann","type":"Person","_key":"4060"} +{"label":"Eyes Wide Shut","description":"Stanley Kubrick, in his last film, transforms the story from the novella by Arthur Schnitzler from Vienna at the end of the 19th century into a bizarre psychodrama in New York at the end of the Millennium that crosses the line between fantasy and reality.","id":"345","runtime":159,"imdbId":"tt0120663","trailer":"http:\/\/www.youtube.com\/watch?v=687","homepage":"http:\/\/eyeswideshut.warnerbros.com\/","version":163,"lastModified":"1300001614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/385\/4bc906e7017a3c57fe002385\/eyes-wide-shut-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Eyes Wide Shut","releaseDate":931824000000,"language":"en","type":"Movie","_key":"4061"} +{"label":"Madison Eginton","version":15,"id":"5006","lastModified":"1299493093000","name":"Madison Eginton","type":"Person","_key":"4062"} +{"label":"Jackie Sawiris","version":15,"id":"5007","lastModified":"1299493093000","name":"Jackie Sawiris","type":"Person","_key":"4063"} +{"label":"Leslie Lowe","version":15,"id":"5008","lastModified":"1299493324000","name":"Leslie Lowe","type":"Person","_key":"4064"} +{"label":"Peter Benson","version":17,"id":"5009","lastModified":"1299493007000","name":"Peter Benson","type":"Person","_key":"4065"} +{"label":"Todd Field","version":35,"id":"5010","lastModified":"1299492414000","name":"Todd Field","type":"Person","_key":"4066"} +{"label":"Michael Doven","version":15,"id":"5011","lastModified":"1299492915000","name":"Michael Doven","type":"Person","_key":"4067"} +{"label":"Sky Dumont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22e\/4ce5566f5e73d61c0400022e\/sky-dumont-profile.jpg","version":23,"id":"5012","lastModified":"1299494147000","name":"Sky Dumont","type":"Person","_key":"4068"} +{"label":"Julienne Davis","version":16,"id":"5023","lastModified":"1299492771000","name":"Julienne Davis","type":"Person","_key":"4069"} +{"label":"Marie Richardson","version":30,"id":"5024","lastModified":"1299492540000","name":"Marie Richardson","type":"Person","_key":"4070"} +{"label":"Vinessa Shaw","version":45,"id":"5025","lastModified":"1299491192000","name":"Vinessa Shaw","type":"Person","_key":"4071"} +{"label":"Seven Samurai","description":"A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.","id":"346","runtime":207,"imdbId":"tt0047478","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=zNqQXC8Tv8U","version":216,"lastModified":"1300001453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d64\/4d4da1b77b9aa13aaf008d64\/shichinin-no-samurai-mid.jpg","studio":"Toho Company","genre":"Action","title":"Seven Samurai","releaseDate":-494985600000,"language":"en","type":"Movie","_key":"4072"} +{"label":"Akira Kurosawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4be7f565017a3c35b40010b7\/akira-kurosawa-profile.jpg","version":175,"id":"5026","lastModified":"1300040447000","name":"Akira Kurosawa","type":"Person","_key":"4073"} +{"label":"Toshir\u00f4 Mifune","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e20\/4be7f50f017a3c35b5000e20\/toshiro-mifune-profile.jpg","version":80,"id":"7450","lastModified":"1300040448000","name":"Toshir\u00f4 Mifune","type":"Person","_key":"4074"} +{"label":"Takashi Shimura","version":57,"id":"7453","lastModified":"1300013771000","name":"Takashi Shimura","type":"Person","_key":"4075"} +{"label":"Yoshio Inaba","version":16,"id":"20828","lastModified":"1299934955000","name":"Yoshio Inaba","type":"Person","_key":"4076"} +{"label":"Seiji Miyaguchi","version":30,"id":"20829","lastModified":"1299494579000","name":"Seiji Miyaguchi","type":"Person","_key":"4077"} +{"label":"Minoru Chiaki","version":25,"id":"7454","lastModified":"1300040448000","name":"Minoru Chiaki","type":"Person","_key":"4078"} +{"label":"Daisuke Kat\u00f4","version":30,"id":"7457","lastModified":"1299493065000","name":"Daisuke Kat\u00f4","type":"Person","_key":"4079"} +{"label":"Isao Kimura","version":18,"id":"20830","lastModified":"1299495561000","name":"Isao Kimura","type":"Person","_key":"4080"} +{"label":"Keiko Tsushima","version":17,"id":"20831","lastModified":"1299496649000","name":"Keiko Tsushima","type":"Person","_key":"4081"} +{"label":"Menschen am Sonntag","description":"A semi-documentary experimental 1930 German silent film created by amateurs with a small budget. With authentic scenes of the metropolis city of Berlin, it's the first film from the later famous screenwriters\/directors Billy Wilder and Fred Zinnemann.","id":"347","runtime":74,"imdbId":"tt0020163","version":68,"lastModified":"1300001246000","studio":"Filmstudio Berlin","genre":"Documentary","title":"Menschen am Sonntag","releaseDate":-1259366400000,"language":"en","type":"Movie","_key":"4082"} +{"label":"Curt Siodmak","version":52,"birthday":"-2126826000000","id":"5028","birthplace":"Dresden, Saxony, Germany","lastModified":"1299493979000","name":"Curt Siodmak","type":"Person","_key":"4083"} +{"label":"Robert Siodmak","version":38,"birthday":"-2190070800000","id":"5029","birthplace":"Dresden, Saxony, Germany","lastModified":"1299757100000","name":"Robert Siodmak","type":"Person","_key":"4084"} +{"label":"Edgar G. Ulmer","version":36,"id":"5030","lastModified":"1299491384000","name":"Edgar G. Ulmer","type":"Person","_key":"4085"} +{"label":"Erwin Splettst\u00f6\u00dfer","version":13,"id":"5033","lastModified":"1299494040000","name":"Erwin Splettst\u00f6\u00dfer","type":"Person","_key":"4086"} +{"label":"Brigitte Borchert","version":13,"id":"5034","lastModified":"1299494922000","name":"Brigitte Borchert","type":"Person","_key":"4087"} +{"label":"Wolfgang von Waltershausen","version":13,"id":"5035","lastModified":"1299493754000","name":"Wolfgang von Waltershausen","type":"Person","_key":"4088"} +{"label":"Christl Ehlers","version":13,"id":"5036","lastModified":"1299494921000","name":"Christl Ehlers","type":"Person","_key":"4089"} +{"label":"Annie Schreyer","version":13,"id":"5037","lastModified":"1299496408000","name":"Annie Schreyer","type":"Person","_key":"4090"} +{"label":"Valeska Gert","version":16,"id":"5038","lastModified":"1299496550000","name":"Valeska Gert","type":"Person","_key":"4091"} +{"label":"Heinrich Gretler","version":19,"id":"5039","lastModified":"1299857589000","name":"Heinrich Gretler","type":"Person","_key":"4092"} +{"label":"Ern\u00f6 Verebes","version":14,"id":"5040","lastModified":"1299496532000","name":"Ern\u00f6 Verebes","type":"Person","_key":"4093"} +{"label":"Alien","description":"During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.","id":"348","runtime":117,"imdbId":"tt0078748","trailer":"http:\/\/www.youtube.com\/watch?v=395vXWedOmU","version":354,"lastModified":"1299912256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4d34c29f7b9aa17b37009635\/alien-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Alien","releaseDate":296438400000,"language":"en","tagline":"In space no one can hear you scream.","type":"Movie","_key":"4094"} +{"label":"Veronica Cartwright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4bca00e3017a3c0e8b000033\/veronica-cartwright-profile.jpg","version":65,"id":"5047","lastModified":"1299906161000","name":"Veronica Cartwright","type":"Person","_key":"4095"} +{"label":"Harry Dean Stanton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f95\/4c740c4e7b9aa13ab9000f95\/harry-dean-stanton-profile.jpg","version":117,"birthday":"-1371776400000","id":"5048","birthplace":"West Irvine, Kentucky","lastModified":"1299586969000","name":"Harry Dean Stanton","type":"Person","_key":"4096"} +{"label":"Bolaji Badejo","version":26,"id":"5051","lastModified":"1299492200000","name":"Bolaji Badejo","type":"Person","_key":"4097"} +{"label":"Helen Horton","version":26,"id":"5052","lastModified":"1299492348000","name":"Helen Horton","type":"Person","_key":"4098"} +{"label":"Crustac\u00e9s Et Coquillages","description":"Crustaces et Coquillages is a fresh French comedy film with numerous surprise turnarounds and about the tolerance of a family of four. The family spend an idealistic summer vacation together where each of the family members gets involved in a new or old relationship.","id":"349","runtime":93,"imdbId":"tt0428430","homepage":"http:\/\/www.crustaces-lefilm.com\/","version":66,"lastModified":"1299810312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7e\/4cbb6a695e73d67784000b7e\/crustaces-et-coquillages-mid.jpg","studio":"Agat Films","genre":"Comedy","title":"Crustac\u00e9s Et Coquillages","releaseDate":1112140800000,"language":"en","type":"Movie","_key":"4099"} +{"label":"Olivier Ducastel","version":20,"id":"5066","lastModified":"1299494208000","name":"Olivier Ducastel","type":"Person","_key":"4100"} +{"label":"Jacques Martineau","version":20,"id":"5067","lastModified":"1299493577000","name":"Jacques Martineau","type":"Person","_key":"4101"} +{"label":"Valeria Bruni Tedeschi","version":55,"id":"5077","lastModified":"1299962422000","name":"Valeria Bruni Tedeschi","type":"Person","_key":"4102"} +{"label":"Jacques Bonnaff\u00e9","version":20,"id":"5082","lastModified":"1299493834000","name":"Jacques Bonnaff\u00e9","type":"Person","_key":"4103"} +{"label":"Edouard Collin","version":13,"id":"5083","lastModified":"1299494995000","name":"Edouard Collin","type":"Person","_key":"4104"} +{"label":"Romain Torres","version":13,"id":"5084","lastModified":"1299495666000","name":"Romain Torres","type":"Person","_key":"4105"} +{"label":"Sabrina Seyvecou","version":16,"id":"5085","lastModified":"1299495666000","name":"Sabrina Seyvecou","type":"Person","_key":"4106"} +{"label":"Yannick Baudin","version":13,"id":"5086","lastModified":"1299496532000","name":"Yannick Baudin","type":"Person","_key":"4107"} +{"label":"Julien Weber","version":14,"id":"5087","lastModified":"1299496532000","name":"Julien Weber","type":"Person","_key":"4108"} +{"label":"S\u00e9bastien Cormier","version":12,"id":"5088","lastModified":"1299495229000","name":"S\u00e9bastien Cormier","type":"Person","_key":"4109"} +{"label":"Marion Roux","version":13,"id":"5089","lastModified":"1299495229000","name":"Marion Roux","type":"Person","_key":"4110"} +{"label":"The Devil Wears Prada","description":"The Devil Wears Prada is about a young journalist who moves to New York to work in the fashion industry. Her boss however is extremely demanding and cruel and won\u2019t let her succeed if she doesn\u2019t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.","id":"350","runtime":106,"imdbId":"tt0458352","trailer":"http:\/\/www.youtube.com\/watch?v=hbthtLM5VS4","homepage":"http:\/\/www.devilwearspradamovie.com\/","version":244,"lastModified":"1300000898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2a\/4d4caa147b9aa13aaf007f2a\/the-devil-wears-prada-mid.jpg","studio":"Wendy Finerman Productions","genre":"Comedy","title":"The Devil Wears Prada","releaseDate":1136073600000,"language":"en","tagline":"Meet Andy Sachs. A million girls would kill to have her job. She's not one of them.","type":"Movie","_key":"4111"} +{"label":"Simon Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0d\/4cf801cd5e73d6299d001c0d\/simon-baker-profile.jpg","biography":"Simon Baker<\/b> (born 30 July 1969) is an Australian<\/a> Emily Olivia Leah Blunt (born 23 February 1983) is an English actress. Blunt's first major film role came in the British drama My Summer of Love (2004). She then appeared in The Devil Wears Prada (2006) for which she was nominated for a Golden Globe and a BAFTA. She has since appeared in a number of American and British productions, including Charlie Wilson's War (2007), The Young Victoria (2009), and The Wolfman (2010).In 2007, B","version":88,"id":"5081","lastModified":"1300026038000","name":"Emily Blunt","type":"Person","_key":"4113"} +{"label":"Adrian Grenier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d7\/4d3ef0a37b9aa15bad0011d7\/adrian-grenier-profile.jpg","version":43,"birthday":"205801200000","id":"5090","birthplace":"New Mexico, USA","lastModified":"1299492604000","name":"Adrian Grenier","type":"Person","_key":"4114"} +{"label":"Tracie Thoms","version":31,"id":"10580","lastModified":"1299493616000","name":"Tracie Thoms","type":"Person","_key":"4115"} +{"label":"Rich Sommer","version":20,"id":"10581","lastModified":"1299494428000","name":"Rich Sommer","type":"Person","_key":"4116"} +{"label":"Daniel Sunjata","version":57,"id":"10582","lastModified":"1299676864000","name":"Daniel Sunjata","type":"Person","_key":"4117"} +{"label":"Gisele B\u00fcndchen","version":20,"id":"10583","lastModified":"1299492515000","name":"Gisele B\u00fcndchen","type":"Person","_key":"4118"} +{"label":"Heidi Klum","version":27,"id":"10584","lastModified":"1299494821000","name":"Heidi Klum","type":"Person","_key":"4119"} +{"label":"Bridget Hall","version":19,"id":"10585","lastModified":"1299493868000","name":"Bridget Hall","type":"Person","_key":"4120"} +{"label":"Stephanie Szostak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d10\/4cf5c65e5e73d6299c000d10\/stephanie-szostak-profile.jpg","version":40,"id":"121953","lastModified":"1299906496000","name":"Stephanie Szostak","type":"Person","_key":"4121"} +{"label":"David Frankel","version":39,"id":"5065","lastModified":"1299493014000","name":"David Frankel","type":"Person","_key":"4122"} +{"label":"Sehnsucht","description":"A melancholy 2006 German film about the life and love in the daily life of a man who\u2019s trying to get the felling of longing and nostalgia back into his marriage. Continue\/\/\/","id":"351","runtime":88,"imdbId":"tt0416213","homepage":"http:\/\/www.sehnsucht-der-film.de\/","version":74,"lastModified":"1299913054000","studio":"ZDF","genre":"Drama","title":"Sehnsucht","releaseDate":1155945600000,"language":"en","type":"Movie","_key":"4123"} +{"label":"Valeska Grisebach","version":13,"id":"5091","lastModified":"1299495265000","name":"Valeska Grisebach","type":"Person","_key":"4124"} +{"label":"Andreas M\u00fcller","version":14,"id":"5099","lastModified":"1299494234000","name":"Andreas M\u00fcller","type":"Person","_key":"4125"} +{"label":"Ilka Welz","version":12,"id":"5100","lastModified":"1299494673000","name":"Ilka Welz","type":"Person","_key":"4126"} +{"label":"Anett Dornbusch","version":12,"id":"5101","lastModified":"1299496014000","name":"Anett Dornbusch","type":"Person","_key":"4127"} +{"label":"Erika Lemke","version":12,"id":"5102","lastModified":"1299494234000","name":"Erika Lemke","type":"Person","_key":"4128"} +{"label":"Markus Werner","version":13,"id":"5103","lastModified":"1299496014000","name":"Markus Werner","type":"Person","_key":"4129"} +{"label":"Doritha Richter","version":12,"id":"5104","lastModified":"1299496014000","name":"Doritha Richter","type":"Person","_key":"4130"} +{"label":"Detlef Baumann","version":12,"id":"5105","lastModified":"1299496013000","name":"Detlef Baumann","type":"Person","_key":"4131"} +{"label":"Ilse Lausch","version":12,"id":"5106","lastModified":"1299496013000","name":"Ilse Lausch","type":"Person","_key":"4132"} +{"label":"Harald Kuchenbecker","version":12,"id":"5107","lastModified":"1299496013000","name":"Harald Kuchenbecker","type":"Person","_key":"4133"} +{"label":"Jan G\u00fcnzel","version":12,"id":"5108","lastModified":"1299496013000","name":"Jan G\u00fcnzel","type":"Person","_key":"4134"} +{"label":"Bernd Liske","version":12,"id":"5109","lastModified":"1299496013000","name":"Bernd Liske","type":"Person","_key":"4135"} +{"label":"Bernd Wachsmuth","version":12,"id":"5110","lastModified":"1299496012000","name":"Bernd Wachsmuth","type":"Person","_key":"4136"} +{"label":"Hartmut Schliephacke","version":12,"id":"5111","lastModified":"1299495265000","name":"Hartmut Schliephacke","type":"Person","_key":"4137"} +{"label":"Viola Hoffmann","version":13,"id":"5112","lastModified":"1299496533000","name":"Viola Hoffmann","type":"Person","_key":"4138"} +{"label":"Petra Lemke","version":12,"id":"5113","lastModified":"1299496012000","name":"Petra Lemke","type":"Person","_key":"4139"} +{"label":"Petra M\u00fcller","version":12,"id":"5114","lastModified":"1299496012000","name":"Petra M\u00fcller","type":"Person","_key":"4140"} +{"label":"Christa Wachsmuth","version":12,"id":"5115","lastModified":"1299496012000","name":"Christa Wachsmuth","type":"Person","_key":"4141"} +{"label":"Karin Wachsmuth","version":12,"id":"5116","lastModified":"1299496012000","name":"Karin Wachsmuth","type":"Person","_key":"4142"} +{"label":"Head On","description":"Head On is German director Faith Akin\u2019s story of the alcoholic Cahit and Turkish Sibel. Akin tells the story of a love that can never between two people who are too alike to no be together.","id":"363","runtime":121,"imdbId":"tt0347048","homepage":"http:\/\/www.gegendiewand.de\/","version":163,"lastModified":"1300000640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42f\/4bc906fd017a3c57fe00242f\/gegen-die-wand-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"Head On","releaseDate":1076544000000,"language":"en","type":"Movie","_key":"4143"} +{"label":"Birol \u00dcnel","version":19,"id":"5117","lastModified":"1299494443000","name":"Birol \u00dcnel","type":"Person","_key":"4144"} +{"label":"Sibel Kekilli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/196\/4cac6f5a5e73d64dd0000196\/sibel-kekilli-profile.jpg","biography":"German actress of Turkish Descent who was discovered in the street by director Fatih Akin and starred in his movie Gegen Die Wand. German tabloids uncovered later that she had a past as pornographic actress under the name Dilara. ","version":36,"birthday":"329954400000","id":"5118","birthplace":"Heilbronn, Germany","lastModified":"1299492766000","name":"Sibel Kekilli","type":"Person","_key":"4145"} +{"label":"Catrin Striebeck","version":16,"id":"5119","lastModified":"1299493587000","name":"Catrin Striebeck","type":"Person","_key":"4146"} +{"label":"G\u00fcven K\u0131ra\u00e7","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b9\/4d1c502c5e73d6083400c6b9\/g-ven-k-ra-profile.jpg","biography":"

\u200bG\u00fcven K\u0131ra\u00e7 (d. 1960) Tiyatro ve sinema oyuncusu.<\/P>\r\n

Mimar Sinan \u00dcniversitesi Devlet Konservatuvar\u0131 Tiyatro B\u00f6l\u00fcm\u00fc mezunudur. 1960 y\u0131l\u0131nda \u0130stanbul'da d\u00fcnyaya geldi. Abhaz k\u00f6kenlidir .1986 y\u0131l\u0131ndan beri bir\u00e7ok televizyon dizisi, reklam filmi ve sinema filminde rol ald\u0131. \u0130ki y\u0131l devlet tiyatrosu sanat\u00e7\u0131s\u0131 olarak \u00e7al\u0131\u015ft\u0131ktan sonra istifa etti. Adana Devlet Tiyatrosu'nda A\u011fr\u0131 Da\u011f\u0131 Efsanesi, \u0130ki Kalas Bir Heves ve S\u0131k\u0131y\u00f6netim; G\u00fclriz Sururi Tiyatrosu'nda ise Tiyatrocu, Sokak K\u0131z\u0131 \u0130rma, Haml","version":24,"id":"5120","lastModified":"1299492484000","name":"G\u00fcven K\u0131ra\u00e7","type":"Person","_key":"4147"} +{"label":"Meltem Cumbul","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc3\/4d14ffd47b9aa1147a001fc3\/meltem-cumbul-profile.jpg","biography":"

\u200bMeltem Cumbul (d. 11 Kas\u0131m 1970, \u0130zmir), T\u00fcrk sinema ve dizi oyuncusu.<\/P>\r\n

1988 y\u0131l\u0131nda \u0130zmir T\u00fcrk Koleji'nden ,1991'de Mimar Sinan \u00dcniversitesi Devlet Konservatuar\u0131 Drama Ana Sanat Dal\u0131'ndan mezun oldu. Ard\u0131ndan Londra'daki \u015eekspir Tiyatro Kumpanyas\u0131'nda (Shakespeare Company oyuncu olarak \u00e7al\u0131\u015ft\u0131. Daha sonra televizyonda bir kariyere ad\u0131m atarak A\u015fa\u011f\u0131 Yukar\u0131 (ATV) ve Nereden ba\u015flasak? (Kanal D) programlar\u0131n\u0131n sunuculu\u011funu yapt\u0131. Bu arada filmlerde yard\u0131mc\u0131 roller de oynad\u0131 (Bay E ve B\u00f6c","version":22,"id":"5121","lastModified":"1299492740000","name":"Meltem Cumbul","type":"Person","_key":"4148"} +{"label":"Stefan Gebelhoff","version":17,"id":"5122","lastModified":"1299494466000","name":"Stefan Gebelhoff","type":"Person","_key":"4149"} +{"label":"Demir G\u00f6kg\u00f6l","version":16,"id":"5123","lastModified":"1299494235000","name":"Demir G\u00f6kg\u00f6l","type":"Person","_key":"4150"} +{"label":"Cem Akin","version":21,"id":"5124","lastModified":"1299494996000","name":"Cem Akin","type":"Person","_key":"4151"} +{"label":"Aysel Iscan","version":15,"id":"5134","lastModified":"1299494674000","name":"Aysel Iscan","type":"Person","_key":"4152"} +{"label":"Fatih Akin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ab\/4c975de37b9aa10d580004ab\/fatih-akin-profile.jpg","version":75,"birthday":"115081200000","id":"5125","birthplace":"Hamburg","lastModified":"1299916515000","name":"Fatih Akin","type":"Person","_key":"4153"} +{"label":"Batman Returns","description":"Having defeated the Joker, Batman now faces the Penguin - a warped and deformed individual who is intent on being accepted into Gotham society. Crooked businessman Max Schreck is coerced into helping him become Mayor of Gotham and they both attempt to expose Batman in a different light. Selina Kyle, Max's secretary, is thrown from the top of a building and is transformed into Catwoman - a mysterious figure who has the same personality disorder as Batman. Batman must attempt to clear his name, al","id":"364","runtime":126,"imdbId":"tt0103776","trailer":"http:\/\/www.youtube.com\/watch?v=ZRxzDFzZQGc","version":224,"lastModified":"1300000492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45f\/4bc90703017a3c57fe00245f\/batman-returns-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Batman Returns","releaseDate":708912000000,"language":"en","tagline":"The Bat, the Cat, the Penguin.","type":"Movie","_key":"4154"} +{"label":"Paul Reubens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b3\/4c2385527b9aa13f620000b3\/paul-reubens-profile.jpg","biography":"Paul Reubens (born Paul Rubenfeld; August 27, 1952) is an American actor, writer, film producer and comedian, best-known for his character Pee-wee Herman. Reubens joined the Los Angeles troupe The Groundlings in the 1970s and started his career as an improvisational comedian and stage actor. In 1982 Reubens put up a show about a character he had been developing during the last few years. The show was called The Pee-wee Herman Show and it ran for five sellout months with HBO producing a successfu","version":62,"id":"5129","lastModified":"1300006378000","name":"Paul Reubens","type":"Person","_key":"4155"} +{"label":"Michael Murphy","version":62,"id":"4776","lastModified":"1299670041000","name":"Michael Murphy","type":"Person","_key":"4156"} +{"label":"Diane Salinger","version":23,"id":"5131","lastModified":"1299494254000","name":"Diane Salinger","type":"Person","_key":"4157"} +{"label":"Cristi Conaway","version":18,"id":"5130","lastModified":"1299495287000","name":"Cristi Conaway","type":"Person","_key":"4158"} +{"label":"A Nightmare on Elm Street","description":"Years after being burned alive by a mob of angry parents, child murderer Freddy Krueger returns to haunt the dreams -- and reality -- of local teenagers. As the town's teens begin dropping like flies, Nancy and her boyfriend, Glen, devise a plan to lure the monster out of the realm of nightmares and into the real world.","id":"377","runtime":91,"imdbId":"tt0087800","trailer":"http:\/\/www.youtube.com\/watch?v=996","version":258,"lastModified":"1300000349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/492\/4bc9070d017a3c57fe002492\/a-nightmare-on-elm-street-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"A Nightmare on Elm Street","releaseDate":468806400000,"language":"en","tagline":"A scream that wakes you up, might be your own...","type":"Movie","_key":"4159"} +{"label":"Robert Englund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/287\/4cf67e395e73d6299b001287\/robert-englund-profile.jpg","version":74,"id":"5139","lastModified":"1299721403000","name":"Robert Englund","type":"Person","_key":"4160"} +{"label":"Heather Langenkamp","version":26,"id":"5141","lastModified":"1299492475000","name":"Heather Langenkamp","type":"Person","_key":"4161"} +{"label":"Ronee Blakley","version":19,"id":"13652","lastModified":"1299493911000","name":"Ronee Blakley","type":"Person","_key":"4162"} +{"label":"John Saxon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ff\/4c28de947b9aa144700003ff\/john-saxon-profile.jpg","version":70,"id":"11163","lastModified":"1300040619000","name":"John Saxon","type":"Person","_key":"4163"} +{"label":"Amanda Wyss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9aa\/4d65519b5e73d66a700009aa\/amanda-wyss-profile.jpg","version":20,"id":"13656","lastModified":"1299495343000","name":"Amanda Wyss","type":"Person","_key":"4164"} +{"label":"Jsu Garcia","version":40,"id":"13657","lastModified":"1299494386000","name":"Jsu Garcia","type":"Person","_key":"4165"} +{"label":"Joseph Whipp","version":23,"id":"13660","lastModified":"1299496233000","name":"Joseph Whipp","type":"Person","_key":"4166"} +{"label":"Lin Shaye","version":39,"id":"7401","lastModified":"1299493419000","name":"Lin Shaye","type":"Person","_key":"4167"} +{"label":"Joe Unger","version":24,"id":"13661","lastModified":"1299496214000","name":"Joe Unger","type":"Person","_key":"4168"} +{"label":"Mimi Craven","version":16,"id":"13662","lastModified":"1299498475000","name":"Mimi Craven","type":"Person","_key":"4169"} +{"label":"Wes Craven","version":198,"id":"5140","lastModified":"1299492165000","name":"Wes Craven","type":"Person","_key":"4170"} +{"label":"Raising Arizona","description":"The Coen Brothers tell the story of a absurd yet likable family with an unproductive couple as the focal point. The couple has gotten themselves into some trouble while kidnapping a baby and give Hollywood one of the most memorable chase scenes to date.","id":"378","runtime":94,"imdbId":"tt0093822","trailer":"http:\/\/www.youtube.com\/watch?v=2AIfVoGUs6c","version":130,"lastModified":"1300000196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4cc657087b9aa15b2300000e\/raising-arizona-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Raising Arizona","releaseDate":542592000000,"language":"en","type":"Movie","_key":"4171"} +{"label":"Randall 'Tex' Cobb","version":30,"id":"5177","lastModified":"1299492151000","name":"Randall 'Tex' Cobb","type":"Person","_key":"4172"} +{"label":"T.J. Kuhn","version":14,"id":"5178","lastModified":"1299495008000","name":"T.J. Kuhn","type":"Person","_key":"4173"} +{"label":"Lynne Kitei","version":14,"id":"5179","lastModified":"1299494090000","name":"Lynne Kitei","type":"Person","_key":"4174"} +{"label":"Miller's Crossing","description":"Miller\u2019s Crossing is the Coen-Brothers first successful attempt at reaching a wider audience. They illustrate an untypical mafia story that sways away from the typical films from the genre like The Godfather or Goodfellas. Taking place during Prohibition this film this film is an incredible piece of work accompanied by it\u2019s superb acting performances.","id":"379","runtime":115,"imdbId":"tt0100150","trailer":"http:\/\/www.youtube.com\/watch?v=hkJIcFMN_pc","homepage":"http:\/\/www.geocities.com\/~mikemckiernan\/mcfrontpage.html","version":108,"lastModified":"1299954099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4bc90715017a3c57fe0024c8\/miller-s-crossing-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Miller's Crossing","releaseDate":653875200000,"language":"en","type":"Movie","_key":"4175"} +{"label":"Gabriel Byrne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d7\/4c24b86a7b9aa144690000d7\/gabriel-byrne-profile.jpg","version":105,"id":"5168","lastModified":"1299952254000","name":"Gabriel Byrne","type":"Person","_key":"4176"} +{"label":"J.E. Freeman","version":24,"id":"5169","lastModified":"1299494064000","name":"J.E. Freeman","type":"Person","_key":"4177"} +{"label":"Mike Starr","version":57,"id":"5170","lastModified":"1299492429000","name":"Mike Starr","type":"Person","_key":"4178"} +{"label":"Al Mancini","version":19,"id":"5171","lastModified":"1299496443000","name":"Al Mancini","type":"Person","_key":"4179"} +{"label":"Richard Woods","version":15,"id":"5172","lastModified":"1299496531000","name":"Richard Woods","type":"Person","_key":"4180"} +{"label":"Thomas Toner","version":15,"id":"5173","lastModified":"1299496531000","name":"Thomas Toner","type":"Person","_key":"4181"} +{"label":"Rain Man","description":"The sensible drama about the reunification of two very different brothers and their struggle to stay together. Dustin Hoffman won an Oscar for best actor for his memorable performance as the autistic Raymond.","id":"380","runtime":133,"imdbId":"tt0095953","trailer":"http:\/\/www.youtube.com\/watch?v=KKC3W0awjm0","version":185,"lastModified":"1299999907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d5\/4bc90717017a3c57fe0024d5\/rain-man-mid.jpg","studio":"United Artists","genre":"Drama","title":"Rain Man","releaseDate":598233600000,"language":"en","type":"Movie","_key":"4182"} +{"label":"Barry Levinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fa\/4d1affc35e73d6083400b6fa\/barry-levinson-profile.jpg","version":139,"id":"8246","lastModified":"1299491848000","name":"Barry Levinson","type":"Person","_key":"4183"} +{"label":"Dustin Hoffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f4\/4c3b364a7b9aa10ede0002f4\/dustin-hoffman-profile.jpg","version":210,"birthday":"-1022461200000","id":"4483","birthplace":"Los Angeles, California, USA","lastModified":"1299707973000","name":"Dustin Hoffman","type":"Person","_key":"4184"} +{"label":"Gerald R. Molen","version":76,"birthday":"-1104109200000","id":"2211","birthplace":"Great Falls, Montana, USA","lastModified":"1299551354000","name":"Gerald R. Molen","type":"Person","_key":"4185"} +{"label":"Jack Murdock","version":16,"id":"5145","lastModified":"1299494207000","name":"Jack Murdock","type":"Person","_key":"4186"} +{"label":"Michael D. Roberts","version":19,"id":"5146","lastModified":"1299493324000","name":"Michael D. Roberts","type":"Person","_key":"4187"} +{"label":"Ralph Seymour","version":20,"id":"5147","lastModified":"1299493988000","name":"Ralph Seymour","type":"Person","_key":"4188"} +{"label":"Lucinda Jenney","version":23,"id":"5148","lastModified":"1299493935000","name":"Lucinda Jenney","type":"Person","_key":"4189"} +{"label":"Kim Robillard","version":17,"id":"5150","lastModified":"1299494137000","name":"Kim Robillard","type":"Person","_key":"4190"} +{"label":"Dolan Dougherty","version":16,"id":"5152","lastModified":"1299494207000","name":"Dolan Dougherty","type":"Person","_key":"4191"} +{"label":"Marshall Dougherty","version":16,"id":"5153","lastModified":"1299493577000","name":"Marshall Dougherty","type":"Person","_key":"4192"} +{"label":"Patrick Dougherty","version":16,"id":"5154","lastModified":"1299495228000","name":"Patrick Dougherty","type":"Person","_key":"4193"} +{"label":"Peter Dougherty","version":16,"id":"5156","lastModified":"1299495229000","name":"Peter Dougherty","type":"Person","_key":"4194"} +{"label":"Andrew Dougherty","version":16,"id":"5157","lastModified":"1299494646000","name":"Andrew Dougherty","type":"Person","_key":"4195"} +{"label":"Loretta Wendt Jolivette","version":16,"id":"5158","lastModified":"1299494206000","name":"Loretta Wendt Jolivette","type":"Person","_key":"4196"} +{"label":"Donald E. Jones","version":16,"id":"5159","lastModified":"1299495229000","name":"Donald E. Jones","type":"Person","_key":"4197"} +{"label":"Bryon P. Caunar","version":16,"id":"5160","lastModified":"1299495228000","name":"Bryon P. Caunar","type":"Person","_key":"4198"} +{"label":"Donna J. Dickson","version":16,"id":"5161","lastModified":"1299495228000","name":"Donna J. Dickson","type":"Person","_key":"4199"} +{"label":"To Catch a Thief","description":"A delightful Hitchcock film about an ex-burglar who must catch a thief who\u2019s been copying this style before he gets accused of the wrong crimes. His time is running out as the police are close behind him yet he finds time for a little romance of course. A classic masterpiece starring Grace Kelly and Cary Grant.","id":"381","runtime":106,"imdbId":"tt0048728","trailer":"http:\/\/www.youtube.com\/watch?v=GJ48kqGa_N4","version":146,"lastModified":"1299912323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f0\/4bc9071b017a3c57fe0024f0\/to-catch-a-thief-mid.jpg","genre":"Action","title":"To Catch a Thief","releaseDate":-454723200000,"language":"en","type":"Movie","_key":"4200"} +{"label":"Brigitte Auber","version":14,"id":"5183","lastModified":"1299492769000","name":"Brigitte Auber","type":"Person","_key":"4201"} +{"label":"John Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bf\/4bf6db61017a3c77320002bf\/john-williams-profile.jpg","version":31,"id":"5182","lastModified":"1299531738000","name":"John Williams","type":"Person","_key":"4202"} +{"label":"Jean Martinelli","version":27,"id":"5185","lastModified":"1300040564000","name":"Jean Martinelli","type":"Person","_key":"4203"} +{"label":"Georgette Anys","version":15,"id":"5186","lastModified":"1299493943000","name":"Georgette Anys","type":"Person","_key":"4204"} +{"label":"Mala Noche","description":"Mala Noche is the film debut from director Gus van Sant. The film portrays the unanswered love of an American man toward a young Mexican man.","id":"383","runtime":78,"imdbId":"tt0089537","version":120,"lastModified":"1299911657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4bc9071c017a3c57fe0024fa\/mala-noche-mid.jpg","genre":"Drama","title":"Mala Noche","releaseDate":473385600000,"language":"en","type":"Movie","_key":"4205"} +{"label":"Gus Van Sant","version":81,"id":"5216","lastModified":"1299581547000","name":"Gus Van Sant","type":"Person","_key":"4206"} +{"label":"Doug Cooeyate","version":13,"id":"5218","lastModified":"1299494071000","name":"Doug Cooeyate","type":"Person","_key":"4207"} +{"label":"Tim Streeter","version":13,"id":"5223","lastModified":"1299494071000","name":"Tim Streeter","type":"Person","_key":"4208"} +{"label":"Sam Downey","version":13,"id":"5219","lastModified":"1299494466000","name":"Sam Downey","type":"Person","_key":"4209"} +{"label":"Nyla McCarthy","version":13,"id":"5220","lastModified":"1299496492000","name":"Nyla McCarthy","type":"Person","_key":"4210"} +{"label":"Ray Monge","version":13,"id":"5221","lastModified":"1299495632000","name":"Ray Monge","type":"Person","_key":"4211"} +{"label":"Robert Lee Pitchlynn","version":13,"id":"5222","lastModified":"1299496507000","name":"Robert Lee Pitchlynn","type":"Person","_key":"4212"} +{"label":"The Boat","description":"A German submarine hunts allied ships during the Second World War. Soon it becomes hunted itself. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits...","id":"387","runtime":150,"imdbId":"tt0082096","trailer":"http:\/\/www.youtube.com\/watch?v=Yo67TAEOUnc","homepage":"http:\/\/www.dasboot.com","version":182,"lastModified":"1299812191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55a\/4d4c1f1d7b9aa13b4800755a\/das-boot-mid.jpg","studio":"Bavaria Film International","genre":"Action","title":"The Boat","releaseDate":382147200000,"language":"en","tagline":"When the hunters become the hunted","type":"Movie","_key":"4213"} +{"label":"Herbert Gr\u00f6nemeyer","version":35,"id":"5228","lastModified":"1299492897000","name":"Herbert Gr\u00f6nemeyer","type":"Person","_key":"4214"} +{"label":"Klaus Wennemann","version":23,"id":"5229","lastModified":"1299493577000","name":"Klaus Wennemann","type":"Person","_key":"4215"} +{"label":"Hubertus Bengsch","version":24,"id":"5230","lastModified":"1299494058000","name":"Hubertus Bengsch","type":"Person","_key":"4216"} +{"label":"Martin May","version":24,"id":"5232","lastModified":"1299495228000","name":"Martin May","type":"Person","_key":"4217"} +{"label":"Heinz Hoenig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/647\/4d0b87365e73d6469a000647\/heinz-hoenig-profile.jpg","version":54,"id":"5233","lastModified":"1299492372000","name":"Heinz Hoenig","type":"Person","_key":"4218"} +{"label":"Claude-Oliver Rudolph","version":29,"id":"5234","lastModified":"1299493147000","name":"Claude-Oliver Rudolph","type":"Person","_key":"4219"} +{"label":"Jan Fedder","version":27,"id":"5235","lastModified":"1299494446000","name":"Jan Fedder","type":"Person","_key":"4220"} +{"label":"Wolfgang Petersen","version":121,"id":"5231","lastModified":"1300017804000","name":"Wolfgang Petersen","type":"Person","_key":"4221"} +{"label":"Inside Man","description":"\"Inside Man\" is the story of a tough cop, Detective Frazier, who matches wits with a clever bank robber. As the dangerous cat-and-mouse game unfolds, a wild card emerges: Madaline, a power broker with a hidden agenda, who injects even more instability into an already volatile situation.","id":"388","runtime":129,"imdbId":"tt0454848","trailer":"http:\/\/www.youtube.com\/watch?v=xLxVTyFfQos","homepage":"www.theinsideman.net","version":219,"lastModified":"1299999377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/540\/4bc90726017a3c57fe002540\/inside-man-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Inside Man","releaseDate":1143072000000,"language":"en","type":"Movie","_key":"4222"} +{"label":"Spike Lee","version":97,"id":"5281","lastModified":"1299955862000","name":"Spike Lee","type":"Person","_key":"4223"} +{"label":"Chiwetel Ejiofor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bca0ff3017a3c0e8d00003b\/chiwetel-ejiofor-profile.jpg","version":81,"birthday":"237337200000","id":"5294","birthplace":"Forest Gate, London","lastModified":"1299490838000","name":"Chiwetel Ejiofor","type":"Person","_key":"4224"} +{"label":"Carlos Andr\u00e9s G\u00f3mez","version":22,"id":"5295","lastModified":"1299641413000","name":"Carlos Andr\u00e9s G\u00f3mez","type":"Person","_key":"4225"} +{"label":"James Ransone","version":16,"id":"5296","lastModified":"1299492299000","name":"James Ransone","type":"Person","_key":"4226"} +{"label":"Bernie Rachelle","version":16,"id":"5297","lastModified":"1299493240000","name":"Bernie Rachelle","type":"Person","_key":"4227"} +{"label":"Victor Colicchio","version":18,"id":"5298","lastModified":"1299493726000","name":"Victor Colicchio","type":"Person","_key":"4228"} +{"label":"Cassandra Freeman","version":16,"id":"5299","lastModified":"1299493253000","name":"Cassandra Freeman","type":"Person","_key":"4229"} +{"label":"Peter Frechette","version":15,"id":"5300","lastModified":"1299493591000","name":"Peter Frechette","type":"Person","_key":"4230"} +{"label":"Waris Ahluwalia","version":18,"id":"5301","lastModified":"1299493089000","name":"Waris Ahluwalia","type":"Person","_key":"4231"} +{"label":"Gerry Vichi","version":17,"id":"5302","lastModified":"1299926116000","name":"Gerry Vichi","type":"Person","_key":"4232"} +{"label":"Rafael Osorio","version":15,"id":"5303","lastModified":"1299492921000","name":"Rafael Osorio","type":"Person","_key":"4233"} +{"label":"Rodney 'Bear' Jackson","version":15,"id":"5304","lastModified":"1299493104000","name":"Rodney 'Bear' Jackson","type":"Person","_key":"4234"} +{"label":"12 Angry Men","description":"12 Angry Men is the 1957 film debut for director Sidney Lumet. An interpretion from a Broadway show, this film is about 12 jurors who must decide whether an 18-year-old is guilty of killing his father.","id":"389","runtime":96,"imdbId":"tt0050083","trailer":"http:\/\/www.youtube.com\/watch?v=A7CBKT0PWFA","version":157,"lastModified":"1299999210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b1\/4d2b8cf75e73d626bc0048b1\/12-angry-men-mid.jpg","studio":"United Artists","genre":"Drama","title":"12 Angry Men","releaseDate":-401414400000,"language":"en","tagline":"Life is in their hands. Death is on their minds","type":"Movie","_key":"4235"} +{"label":"Sidney Lumet","version":87,"id":"39996","lastModified":"1299926115000","name":"Sidney Lumet","type":"Person","_key":"4236"} +{"label":"John Fiedler","biography":"Typical of busy character actors, John Fielder has made his face--and voice--recognizable to millions. Many would know the bald-pated Fiedler as therapy patient Mr. Peterson on TV's \"The Bob Newhart Show\" (1972); others might first recognize him for the 1968 movie and spin-off TV series \"The Odd Couple\" (1970) (or perhaps even from the Broadway play that preceded them). Even kids would know that helium-high voice from animated Disney features like Robin Hood (1973), The Fox and the Hound (1981) ","version":56,"birthday":"-1417222800000","id":"5247","birthplace":"Platteville, Wisconsin, USA","lastModified":"1300023957000","name":"John Fiedler","type":"Person","_key":"4237"} +{"label":"Lee J. Cobb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12c\/4bcc76aa017a3c0f2700012c\/lee-j-cobb-profile.jpg","biography":"Lee J. Cobb, one of the premier character actors in American film for three decades in the post-World War II period, was born Leo Jacoby in New York City's Lower East Side on December 8, 1911. The son of a Jewish newspaper editor, young Leo was a child prodigy in music, mastering the violin and the harmonica. Any hopes of a career as a violin virtuoso were dashed when he broke his wrist, but his talent on the harmonica may have brought him his first professional success. At the age of 16 or 17 h","version":71,"birthday":"597538800000","id":"5248","birthplace":"New York City, New York, USA","lastModified":"1300003850000","name":"Lee J. Cobb","type":"Person","_key":"4238"} +{"label":"Jack Klugman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/268\/4c51ce087b9aa13d4e000268\/jack-klugman-profile.jpg","biography":"As a film character actor, Klugman was the epitome of the everyman. He was one of the pioneers of television acting in the 1950s, and is best remembered for his 1970s TV work as Oscar Madison on \"The Odd Couple\" (1970) and as the medical examiner on \"Quincy M.E.\" (1976).","version":25,"birthday":"-1504746000000","id":"5250","birthplace":"philadelphia, PA, USA","lastModified":"1299495134000","name":"Jack Klugman","type":"Person","_key":"4239"} +{"label":"Jack Warden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4c5f73865e73d63462000017\/jack-warden-profile.jpg","biography":"Jack Warden was born John H. Lebzelter (German for \"honey-cake baker\") on September 18, 1920 in Newark, New Jersey to a Jewish father, Jack Warden Lebzelter, and his Irish wife, Laura M. Lebzelter (nee Costello). Raised in Louisville, Kentucky, at the age of 17, young Jack Lebzelter was expelled from Louisville's Du Pont Manuel High School for repeatedly fighting. Good with his fists, he turned professional, boxing as a welterweight under the name \"Johnny Costello\", adopting his mother's maiden ","version":70,"birthday":"-1547514000000","id":"5251","birthplace":"Newark, New Jersey, USA ","lastModified":"1299492563000","name":"Jack Warden","type":"Person","_key":"4240"} +{"label":"Joseph Sweeney","version":19,"birthday":"-2759187600000","id":"5252","birthplace":"Philadelphia, PA, USA","lastModified":"1299493857000","name":"Joseph Sweeney","type":"Person","_key":"4241"} +{"label":"Ed Begley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d8\/4bd5a58c017a3c2e750001d8\/ed-begley-profile.jpg","version":36,"birthday":"-2170285200000","id":"39816","birthplace":"Hartford, Connecticut, USA","lastModified":"1299494695000","name":"Ed Begley","type":"Person","_key":"4242"} +{"label":"George Voskovec","biography":"Founded Czech avantgarde theatre and film group 'Osvobozene divadlo' with actor Jan Werich in 1927. Affiliated with the Poetist movement (Karel Teige). Made succesfull comedy shows with political themes. Voskovec left Czechoslovakia after the German invasion, 1938\/39 and emigrated to the US.","version":26,"birthday":"-2036624400000","id":"5254","birthplace":"S\u00e1zava, Bohemia, Austria-Hungary (now Czech Republic)","lastModified":"1299493102000","name":"George Voskovec","type":"Person","_key":"4243"} +{"label":"Robert Webber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c51\/4c0cf2ea017a3c29a6000c51\/robert-webber-profile.jpg","biography":"Over his 40-year career as one of Hollywood's veteran character actors, Robert Webber always marked his spot by playing all types of roles and was not stereotyped into playing just one kind of character. Sometimes he even got to play a leading role (see Hysteria (1965)). Webber first started out in small stage shows and a few Broadway plays and served a stint in the army before he landed the role of Juror 12 in 12 Angry Men (1957). He was also known for numerous war films, playing Lee Marvin's g","version":43,"birthday":"-1426899600000","id":"5255","birthplace":"Santa Ana, California, USA ","lastModified":"1299696815000","name":"Robert Webber","type":"Person","_key":"4244"} +{"label":"James Kelly","version":21,"id":"5256","lastModified":"1299495664000","name":"James Kelly","type":"Person","_key":"4245"} +{"label":"Billy Nelson","version":20,"id":"5257","lastModified":"1299494485000","name":"Billy Nelson","type":"Person","_key":"4246"} +{"label":"John Savoca","version":18,"id":"5258","lastModified":"1299494242000","name":"John Savoca","type":"Person","_key":"4247"} +{"label":"Lisbon Story","description":"Lisbon Story is Wim Wender\u2019s homage to Lisbon and films. A sound engineer obtains a mysterous postcard of a friend who at the moment is filming a film in Lisbon. He sets out across Europe to find him and help him. ","id":"390","runtime":100,"imdbId":"tt0110361","version":111,"lastModified":"1299911758000","studio":"Road Movies Filmproduktion GmbH","genre":"Drama","title":"Lisbon Story","releaseDate":787536000000,"language":"en","type":"Movie","_key":"4248"} +{"label":"R\u00fcdiger Vogler","version":28,"id":"5266","lastModified":"1299493473000","name":"R\u00fcdiger Vogler","type":"Person","_key":"4249"} +{"label":"Patrick Bauchau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05c\/4cc6cb157b9aa15b2500005c\/patrick-bauchau-profile.jpg","version":61,"id":"5274","lastModified":"1299701186000","name":"Patrick Bauchau","type":"Person","_key":"4250"} +{"label":"Vasco Sequeira","version":14,"id":"5275","lastModified":"1299494076000","name":"Vasco Sequeira","type":"Person","_key":"4251"} +{"label":"Joel Cunha Ferreira","version":14,"id":"5276","lastModified":"1299495664000","name":"Joel Cunha Ferreira","type":"Person","_key":"4252"} +{"label":"Sofia B\u00e9nard da Costa","version":14,"id":"5277","lastModified":"1299496535000","name":"Sofia B\u00e9nard da Costa","type":"Person","_key":"4253"} +{"label":"Vera Cunha Rocha","version":14,"id":"5278","lastModified":"1299494999000","name":"Vera Cunha Rocha","type":"Person","_key":"4254"} +{"label":"Elisabete Cunha Rocha","version":14,"id":"5279","lastModified":"1299496370000","name":"Elisabete Cunha Rocha","type":"Person","_key":"4255"} +{"label":"Ricardo Colares","version":14,"id":"5280","lastModified":"1299496369000","name":"Ricardo Colares","type":"Person","_key":"4256"} +{"label":"A Fistful of Dollars","description":"A Fistful of Dollars is the 1964 Sergio Leone film starring Clint Eastwood and the first Spaghetti Western to take place in the United States. The film was the first in a trilogy that referenced Akira Kurosawa\u2019s \u2018Yojimbo\u2019 and became an international success and founded the Spaghetti Western genre. ","id":"391","runtime":99,"imdbId":"tt0058461","trailer":"http:\/\/www.youtube.com\/watch?v=h4DJonFjBYg","version":148,"lastModified":"1299911285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/560\/4ce9b2865e73d6258c000560\/per-un-pugno-di-dollari-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"A Fistful of Dollars","releaseDate":-189388800000,"language":"en","type":"Movie","_key":"4257"} +{"label":"Marianne Koch","version":24,"id":"16309","lastModified":"1299494429000","name":"Marianne Koch","type":"Person","_key":"4258"} +{"label":"Wolfgang Lukschy","version":22,"id":"16310","lastModified":"1299494016000","name":"Wolfgang Lukschy","type":"Person","_key":"4259"} +{"label":"Jos\u00e9 Calvo","version":19,"id":"16311","lastModified":"1299494994000","name":"Jos\u00e9 Calvo","type":"Person","_key":"4260"} +{"label":"Gian Maria Volont\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18e\/4bde8b99017a3c35bb00018e\/gian-maria-volonte-profile.jpg","version":42,"id":"14276","lastModified":"1299495591000","name":"Gian Maria Volont\u00e9","type":"Person","_key":"4261"} +{"label":"Sieghardt Rupp","version":28,"id":"16312","lastModified":"1299494992000","name":"Sieghardt Rupp","type":"Person","_key":"4262"} +{"label":"Antonio Prieto","version":17,"id":"16313","lastModified":"1299497677000","name":"Antonio Prieto","type":"Person","_key":"4263"} +{"label":"Margarita Lozano","version":23,"id":"16314","lastModified":"1299493452000","name":"Margarita Lozano","type":"Person","_key":"4264"} +{"label":"Daniel Mart\u00edn","version":21,"id":"16316","lastModified":"1299497552000","name":"Daniel Mart\u00edn","type":"Person","_key":"4265"} +{"label":"Bruno Carotenuto","version":17,"id":"16317","lastModified":"1299497677000","name":"Bruno Carotenuto","type":"Person","_key":"4266"} +{"label":"Benito Stefanelli","version":35,"id":"4661","lastModified":"1299493220000","name":"Benito Stefanelli","type":"Person","_key":"4267"} +{"label":"Mario Brega","version":28,"id":"16318","lastModified":"1299496429000","name":"Mario Brega","type":"Person","_key":"4268"} +{"label":"Joseph Egger","version":23,"id":"14279","lastModified":"1299496693000","name":"Joseph Egger","type":"Person","_key":"4269"} +{"label":"Kill Bill Vol. 2","description":"The Bride unwaveringly continues on her \"roaring rampage of revenge\" against the band of assassins who had tried to kill her and her unborn child. The woman visits each of her former associates one by one, checking off the victims on her Death List Five until there's nothing left to do \u2026 but kill Bill.","id":"393","runtime":136,"imdbId":"tt0378194","trailer":"http:\/\/www.youtube.com\/watch?v=NSR7xRGBnOE","version":277,"lastModified":"1300021701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/474\/4c6231425e73d63462000474\/kill-bill-vol-2-mid.jpg","studio":"Miramax Films","genre":"Action","title":"Kill Bill Vol. 2","releaseDate":1082073600000,"language":"en","tagline":"The bride is back for the final cut","type":"Movie","_key":"4270"} +{"label":"Christopher Allen Nelson","version":19,"id":"6446","lastModified":"1299492777000","name":"Christopher Allen Nelson","type":"Person","_key":"4271"} +{"label":"Perla Haney-Jardine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10d\/4c4267a35e73d60f3700010d\/perla-haney-jardine-profile.jpg","version":49,"id":"6585","lastModified":"1300023675000","name":"Perla Haney-Jardine","type":"Person","_key":"4272"} +{"label":"AVP: Alien vs. Predator","description":"When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race. The films sees two of the largest comic and movie franchises collide in an all out war.","id":"395","runtime":101,"imdbId":"tt0370263","trailer":"http:\/\/www.youtube.com\/watch?v=8r34e7WrSPY","homepage":"http:\/\/www.avp-movie.com\/","version":271,"lastModified":"1299998415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62d\/4bc9074c017a3c57fe00262d\/avp-alien-vs-predator-mid.jpg","studio":"20th Century Fox","genre":"Horror","title":"AVP: Alien vs. Predator","releaseDate":1092355200000,"language":"en","tagline":"Whoever wins... We lose","type":"Movie","_key":"4273"} +{"label":"Paul W.S. Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2db\/4c99df087b9aa127580002db\/paul-w-s-anderson-profile.jpg","version":186,"id":"4014","lastModified":"1299958407000","name":"Paul W.S. Anderson","type":"Person","_key":"4274"} +{"label":"Sanaa Lathan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14f\/4c03e3d2017a3c7e8900014f\/sanaa-lathan-profile.jpg","biography":"Sanaa McCoy Lathan<\/SPAN><\/B> was born in New York City on September 19, 1971. She attended M","version":51,"birthday":"54082800000","id":"5411","birthplace":"New York City, New York, USA","lastModified":"1299606422000","name":"Sanaa Lathan","type":"Person","_key":"4275"} +{"label":"Raoul Bova","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ea\/4c4dff6a7b9aa123810003ea\/raoul-bova-profile.jpg","version":49,"id":"5412","lastModified":"1299491814000","name":"Raoul Bova","type":"Person","_key":"4276"} +{"label":"Colin Salmon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc7\/4cf273155e73d61e3c000bc7\/colin-salmon-profile.jpg","version":91,"id":"5414","lastModified":"1299908693000","name":"Colin Salmon","type":"Person","_key":"4277"} +{"label":"Joseph Rye","version":38,"id":"5415","lastModified":"1299493115000","name":"Joseph Rye","type":"Person","_key":"4278"} +{"label":"Agathe de La Boulaye","version":22,"id":"5416","lastModified":"1299493488000","name":"Agathe de La Boulaye","type":"Person","_key":"4279"} +{"label":"Carsten Norgaard","version":27,"id":"5417","lastModified":"1299493941000","name":"Carsten Norgaard","type":"Person","_key":"4280"} +{"label":"Sam Troughton","version":21,"id":"5421","lastModified":"1299494301000","name":"Sam Troughton","type":"Person","_key":"4281"} +{"label":"Who's Afraid of Virginia Woolf?","description":"Mike Nichols\u2019 film from Edward Albees play brought new themes to the film industry. Elizabeth Taylor and Richard Burton have never been more brilliant together as they portray an experienced married couple who love each other yet verbally attack one another when they see how boring their na\u00efve newlywed guests have made their night. ","id":"396","runtime":131,"imdbId":"tt0061184","version":250,"lastModified":"1299998118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5f\/4cd1fcb37b9aa16b9d000d5f\/who-s-afraid-of-virginia-woolf-mid.jpg","studio":"Chenault Productions","genre":"Comedy","title":"Who's Afraid of Virginia Woolf?","releaseDate":-111456000000,"language":"en","tagline":"You are cordially invited to George and Martha's for an evening of fun and games","type":"Movie","_key":"4282"} +{"label":"Bud Grace","version":18,"id":"18368","lastModified":"1299515485000","name":"Bud Grace","type":"Person","_key":"4283"} +{"label":"Michael Daves","version":17,"id":"18367","lastModified":"1299515485000","name":"Michael Daves","type":"Person","_key":"4284"} +{"label":"Mike Nichols","version":78,"id":"5342","lastModified":"1299958129000","name":"Mike Nichols","type":"Person","_key":"4285"} +{"label":"Richard Burton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/102\/4bcc6f15017a3c0f27000102\/richard-burton-profile.jpg","version":74,"birthday":"-1393030800000","id":"5341","lastModified":"1300001325000","name":"Richard Burton","type":"Person","_key":"4286"} +{"label":"George Segal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f22\/4c73ca6e7b9aa13ab7000f22\/george-segal-profile.jpg","biography":"At one time in the early 1970s, it seemed like George Segal would have a career like that enjoyed by his contemporary Jack Nicholson, that of an actor's actor equally adept at comedy and drama. Segal never made the leap to superstar status, and surprisingly, has never won a major acting award, the latter phenomenon being particularly surprising when viewed from the period 1973-4, when he reached the height of his career, appearing in A Touch of Class (1973) and Robert Altman's California Split (","version":73,"birthday":"-1132362000000","id":"18364","birthplace":"Great Neck, New York","lastModified":"1299860315000","name":"George Segal","type":"Person","_key":"4287"} +{"label":"Sandy Dennis","version":23,"id":"18365","lastModified":"1299496030000","name":"Sandy Dennis","type":"Person","_key":"4288"} +{"label":"French Kiss","description":"French Kiss is director Kasdan\u2019s best film since the Bodyguard. The plot involves a couple in love and one woman\u2019s attempt to fly to Paris to get her lover back from a business trip and marry him. On the way she unknowingly smuggles something of value that has a petty thief chasing her across France as she chases after her future husband.","id":"397","runtime":111,"imdbId":"tt0113117","version":95,"lastModified":"1299997897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67c\/4bc90758017a3c57fe00267c\/french-kiss-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"French Kiss","releaseDate":799632000000,"language":"en","type":"Movie","_key":"4289"} +{"label":"Meg Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e34\/4bfedd7f017a3c7031000e34\/meg-ryan-profile.jpg","biography":"Margaret Mary Emily Anne Hyra (born November 19, 1961) professionally known as Meg Ryan. She had lead roles in six films, When Harry Met Sally..., Sleepless in Seattle, French Kiss, City of Angels, Addicted to Love and You've Got Mail whose total gross was over $870 million worldwide. In 1995, critic Richard Corliss called her \"the current soul of romantic comedy.\" She had leads in several romantic comedies, including When Harry Met Sally... (1989), Sleepless in Seattle (1993) and You've Got Mai","version":110,"birthday":"-256179600000","id":"5344","birthplace":"Fairfield, Connecticut, USA","lastModified":"1299779156000","name":"Meg Ryan","type":"Person","_key":"4290"} +{"label":"Kevin Kline","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65b\/4c9b65807b9aa122df00065b\/kevin-kline-profile.jpg","version":126,"birthday":"-700275600000","id":"8945","lastModified":"1299757572000","name":"Kevin Kline","type":"Person","_key":"4291"} +{"label":"Timothy Hutton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/359\/4c9a225d7b9aa12758000359\/timothy-hutton-profile.jpg","version":83,"id":"16327","lastModified":"1299689102000","name":"Timothy Hutton","type":"Person","_key":"4292"} +{"label":"Lawrence Kasdan","version":116,"id":"8844","lastModified":"1299492679000","name":"Lawrence Kasdan","type":"Person","_key":"4293"} +{"label":"Capote","description":"Capote is the biographical film about writer Truman Capote and his assignment for The New Yorker to write the non-fiction book In Cold Blood. Philip Seymour Hoffman won an Oscar for Best Actor for his portrayal of Capote.","id":"398","runtime":114,"imdbId":"tt0379725","homepage":"http:\/\/www.sonyclassics.com\/capote\/","version":187,"lastModified":"1299997747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/685\/4bc90759017a3c57fe002685\/capote-mid.jpg","studio":"United Artists","genre":"Drama","title":"Capote","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"4294"} +{"label":"Allie Mickelson","version":14,"id":"5348","lastModified":"1299831363000","name":"Allie Mickelson","type":"Person","_key":"4295"} +{"label":"Craig Archibald","version":16,"id":"5349","lastModified":"1299831363000","name":"Craig Archibald","type":"Person","_key":"4296"} +{"label":"Bronwen Coleman","version":14,"id":"5350","lastModified":"1299831363000","name":"Bronwen Coleman","type":"Person","_key":"4297"} +{"label":"Kate Shindle","version":18,"id":"5351","lastModified":"1299831363000","name":"Kate Shindle","type":"Person","_key":"4298"} +{"label":"David Wilson Barnes","version":17,"id":"5352","lastModified":"1299831363000","name":"David Wilson Barnes","type":"Person","_key":"4299"} +{"label":"Michael J. Burg","version":14,"id":"5353","lastModified":"1299831363000","name":"Michael J. Burg","type":"Person","_key":"4300"} +{"label":"Kwesi Ameyaw","version":21,"id":"5354","lastModified":"1299831363000","name":"Kwesi Ameyaw","type":"Person","_key":"4301"} +{"label":"Andrew Farago","version":14,"id":"5355","lastModified":"1299831363000","name":"Andrew Farago","type":"Person","_key":"4302"} +{"label":"Kelci Stephenson","version":15,"id":"5364","lastModified":"1299831363000","name":"Kelci Stephenson","type":"Person","_key":"4303"} +{"label":"Clifton Collins Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b7\/4d60e3717b9aa154cf0044b7\/clifton-collins-jr-profile.jpg","version":81,"birthday":"14338800000","id":"5365","birthplace":"Los Angeles, California, USA","lastModified":"1300004262000","name":"Clifton Collins Jr.","type":"Person","_key":"4304"} +{"label":"Bennett Miller","version":14,"id":"5345","lastModified":"1299831363000","name":"Bennett Miller","type":"Person","_key":"4305"} +{"label":"Predator Collection","description":"This action film series stars an alien killing species and it\u2019s fight against hunters in the jungle. Starring Arnold Swarzenegger and Danny Glover the film would see 2 sequels, many video games, and a comic book series.","id":"399","version":60,"lastModified":"1299831430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68e\/4bc9075b017a3c57fe00268e\/predator-collection-mid.jpg","title":"Predator Collection","language":"en","type":"Movie","_key":"4306"} +{"label":"Things to Do in Denver When You're Dead","description":"A mafia film in Tarantino style with a star-studded cast. Jimmy\u2019s \u201cThe Saint\u201d gangster career has finally ended. Yet now he finds him self doing favors for a wise godfather known as \u201cThe Man with the Plan.\u201d ","id":"400","runtime":115,"imdbId":"tt0114660","version":113,"lastModified":"1299997464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/697\/4bc9075e017a3c57fe002697\/things-to-do-in-denver-when-you-re-dead-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Things to Do in Denver When You're Dead","releaseDate":817776000000,"language":"en","type":"Movie","_key":"4307"} +{"label":"Gary Fleder","version":34,"id":"5501","lastModified":"1299492998000","name":"Gary Fleder","type":"Person","_key":"4308"} +{"label":"Bill Nunn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ed\/4c310d1a5e73d63ccd0001ed\/bill-nunn-profile.jpg","version":70,"id":"5502","lastModified":"1299927194000","name":"Bill Nunn","type":"Person","_key":"4309"} +{"label":"Gabrielle Anwar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c9\/4ce35c695e73d60f6f0005c9\/gabrielle-anwar-profile.jpg","version":49,"id":"5503","lastModified":"1299492268000","name":"Gabrielle Anwar","type":"Person","_key":"4310"} +{"label":"Michael Nicolosi","version":14,"id":"5504","lastModified":"1299494484000","name":"Michael Nicolosi","type":"Person","_key":"4311"} +{"label":"Sarah Trigger","version":14,"id":"5601","lastModified":"1299494327000","name":"Sarah Trigger","type":"Person","_key":"4312"} +{"label":"Garden State","description":"Andrew Largeman returns back to his small home town in New Jersey after his mother\u2019s death. A tragic comedy about the relationship between a young man and a girl he meets and their relationship during the short time he\u2019s back home. With drama, free craziness, pop songs, and a growing up theme, this happy film is the first feature film from director and actor Zach Braff (from the TV series Scrubbs)","id":"401","runtime":102,"imdbId":"tt0333766","trailer":"http:\/\/www.youtube.com\/watch?v=u82n0e1mgmQ","homepage":"http:\/\/www2.foxsearchlight.com\/gardenstate\/","version":171,"lastModified":"1299997321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ba\/4bc90762017a3c57fe0026ba\/garden-state-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"Garden State","releaseDate":1090972800000,"language":"en","type":"Movie","_key":"4313"} +{"label":"Zach Braff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19e\/4bf65055017a3c772700019e\/zach-braff-profile.jpg","biography":"Zachary Israel \"Zach\" Braff (born April 6, 1975 in Sydney, Australia) is an American actor, screenwriter, producer, and director. Braff first became known in 2001 for his role as Dr. John Dorian on the TV series Scrubs, which earned him his first Emmy nomination. Braff remained working on Scrubs for eight years, until he announced his departure as an actor, his last episode airing in December 2009. Braff has, however, taken an executive producer's role on the series.\n\n\nIn 2004, Braff made his d","version":31,"birthday":"165970800000","id":"5367","birthplace":"Sydney, New South Wales, Australia","lastModified":"1299491691000","name":"Zach Braff","type":"Person","_key":"4314"} +{"label":"Kenneth Graymez","version":13,"id":"5368","lastModified":"1299493342000","name":"Kenneth Graymez","type":"Person","_key":"4315"} +{"label":"George C. Wolfe","version":16,"id":"5369","lastModified":"1299493596000","name":"George C. Wolfe","type":"Person","_key":"4316"} +{"label":"Austin Lysy","version":13,"id":"5370","lastModified":"1299495293000","name":"Austin Lysy","type":"Person","_key":"4317"} +{"label":"Gary Gilbert","version":24,"id":"5371","lastModified":"1299492934000","name":"Gary Gilbert","type":"Person","_key":"4318"} +{"label":"Ron Leibman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e31\/4d66b9db7b9aa12a09002e31\/ron-leibman-profile.jpg","version":29,"id":"5372","lastModified":"1299493905000","name":"Ron Leibman","type":"Person","_key":"4319"} +{"label":"Trisha LaFache","version":16,"id":"5373","lastModified":"1299494257000","name":"Trisha LaFache","type":"Person","_key":"4320"} +{"label":"Jim Parsons","version":24,"id":"5374","lastModified":"1299492926000","name":"Jim Parsons","type":"Person","_key":"4321"} +{"label":"Geoffrey Arend","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d0\/4cb8a5587b9aa138d50008d0\/geoffrey-arend-profile.jpg","biography":"Born Feb. 28th, 1978 in Queens. Is of Pakistani and German decent. Married to Christina Hendricks (of Mad Men). Graduated from LaGuardia High School of Music and Arts in 1996. Attended both Carnegie Melon and Tisch (NYU) but never completed his bachelors.","version":34,"id":"5375","lastModified":"1299492214000","name":"Geoffrey Arend","type":"Person","_key":"4322"} +{"label":"Jean Smart","version":42,"id":"5376","lastModified":"1299642318000","name":"Jean Smart","type":"Person","_key":"4323"} +{"label":"Ato Essandoh","version":14,"id":"5377","lastModified":"1299494483000","name":"Ato Essandoh","type":"Person","_key":"4324"} +{"label":"Method Man","version":21,"id":"5384","lastModified":"1299493108000","name":"Method Man","type":"Person","_key":"4325"} +{"label":"Jackie Hoffman","version":21,"id":"5385","lastModified":"1299494024000","name":"Jackie Hoffman","type":"Person","_key":"4326"} +{"label":"Alex Burns","version":19,"id":"5395","lastModified":"1299494564000","name":"Alex Burns","type":"Person","_key":"4327"} +{"label":"Basic Instinct","description":"Basic Instinct is an erotic thriller from 1992 about a sex-crazed murderer and a police officer who\u2019s getting a little too personal with one of the suspects in a murder. As tensions boil Sharon Stone, who plays the main suspect and an author, gives a powerful and sleek performance of a woman who knows her looks can get her off the hook and help her write and finish her book.","id":"402","runtime":123,"imdbId":"tt0103772","trailer":"http:\/\/www.youtube.com\/watch?v=_gynns6MEbw","version":204,"lastModified":"1299997170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cb\/4bc90767017a3c57fe0026cb\/basic-instinct-mid.jpg","studio":"Canal Plus","genre":"Crime","title":"Basic Instinct","releaseDate":701049600000,"language":"en","type":"Movie","_key":"4328"} +{"label":"George Dzundza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4c39762e5e73d671d00000eb\/george-dzundza-profile.jpg","version":43,"id":"10477","lastModified":"1299833638000","name":"George Dzundza","type":"Person","_key":"4329"} +{"label":"Jeanne Tripplehorn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4c39774c5e73d671cf0000f2\/jeanne-tripplehorn-profile.jpg","version":50,"id":"10478","lastModified":"1300001181000","name":"Jeanne Tripplehorn","type":"Person","_key":"4330"} +{"label":"Denis Arndt","version":22,"id":"10480","lastModified":"1299493835000","name":"Denis Arndt","type":"Person","_key":"4331"} +{"label":"Leilani Sarelle","version":19,"id":"10485","lastModified":"1299494991000","name":"Leilani Sarelle","type":"Person","_key":"4332"} +{"label":"Chelcie Ross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35a\/4d03d3517b9aa11bc000135a\/chelcie-ross-profile.jpg","version":51,"id":"10486","lastModified":"1300042165000","name":"Chelcie Ross","type":"Person","_key":"4333"} +{"label":"Dorothy Malone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/293\/4bd98ecd017a3c1bfb000293\/dorothy-malone-profile.jpg","biography":"Dorothy Malone (born January 30, 1925) is an American actress.\n\nMalone's film career began in the mid 1940s, and in her early years she played small roles, mainly in B-movies. After a decade in films, she began to acquire a more glamorous image, particularly after her performance in Written on the Wind (1956), for which she won the Academy Award for Best Supporting Actress. Her film career reached its peak by the beginning of the 1960s, and she achieved later success with her television role of ","version":47,"birthday":"-1417568400000","id":"10487","birthplace":"Chicago, Illinois, United States","lastModified":"1299491301000","name":"Dorothy Malone","type":"Person","_key":"4334"} +{"label":"Benjamin Mouton","version":18,"id":"10488","lastModified":"1299495974000","name":"Benjamin Mouton","type":"Person","_key":"4335"} +{"label":"Jack McGee","version":58,"id":"10489","lastModified":"1299950870000","name":"Jack McGee","type":"Person","_key":"4336"} +{"label":"Bill Cable","version":21,"id":"10490","lastModified":"1299495425000","name":"Bill Cable","type":"Person","_key":"4337"} +{"label":"Paul Verhoeven","version":82,"id":"10491","lastModified":"1299491330000","name":"Paul Verhoeven","type":"Person","_key":"4338"} +{"label":"Driving Miss Daisy","description":"The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.","id":"403","runtime":99,"imdbId":"tt0097239","trailer":"http:\/\/www.youtube.com\/watch?v=BR0oZ2pnhyg","version":141,"lastModified":"1299913105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e8\/4bc9076b017a3c57fe0026e8\/driving-miss-daisy-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Driving Miss Daisy","releaseDate":629683200000,"language":"en","tagline":"The funny, touching and totally irresistible story of a working relationship that became a 25-year friendship.","type":"Movie","_key":"4339"} +{"label":"Bruce Beresford","version":48,"id":"5696","lastModified":"1299491797000","name":"Bruce Beresford","type":"Person","_key":"4340"} +{"label":"Jessica Tandy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c79\/4be722d4017a3c35b9000c79\/jessica-tandy-profile.jpg","version":38,"birthday":"-1911430800000","id":"5698","birthplace":"London, England","lastModified":"1299688669000","name":"Jessica Tandy","type":"Person","_key":"4341"} +{"label":"Patti LuPone","version":14,"id":"5699","lastModified":"1299492355000","name":"Patti LuPone","type":"Person","_key":"4342"} +{"label":"Esther Rolle","version":14,"id":"5700","lastModified":"1299493849000","name":"Esther Rolle","type":"Person","_key":"4343"} +{"label":"Joann Havrilla","version":13,"id":"5701","lastModified":"1299494225000","name":"Joann Havrilla","type":"Person","_key":"4344"} +{"label":"William Hall Jr.","version":13,"id":"5702","lastModified":"1299493849000","name":"William Hall Jr.","type":"Person","_key":"4345"} +{"label":"Clarice F. Geigerman","version":13,"id":"5703","lastModified":"1299493849000","name":"Clarice F. Geigerman","type":"Person","_key":"4346"} +{"label":"Muriel Moore","version":15,"id":"5704","lastModified":"1299494225000","name":"Muriel Moore","type":"Person","_key":"4347"} +{"label":"Sylvia Kaler","version":13,"id":"5705","lastModified":"1299494224000","name":"Sylvia Kaler","type":"Person","_key":"4348"} +{"label":"The Straight Story","description":"After his brother, who he\u2019d not seen for 10 years because of a falling out, had a stroke, the 73 year old Alvin Straight decided to visit him. Yet Alvin didn\u2019t have a drivers license or a bus ticket so he decided he would drive his lawnmower 300 miles to see this brother. Based on a true story and by cult director David Lynch.","id":"404","runtime":111,"imdbId":"tt0166896","version":157,"lastModified":"1299996891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f9\/4bc9076e017a3c57fe0026f9\/the-straight-story-mid.jpg","studio":"Buena Vista Pictures","genre":"Drama","title":"The Straight Story","releaseDate":939945600000,"language":"en","type":"Movie","_key":"4349"} +{"label":"David Lynch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ef\/4bf7bac9017a3c772c0003ef\/david-lynch-profile.jpg","version":111,"id":"5602","lastModified":"1299668781000","name":"David Lynch","type":"Person","_key":"4350"} +{"label":"Richard Farnsworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a5\/4c4d3dad7b9aa1237e0002a5\/richard-farnsworth-profile.jpg","version":34,"id":"5605","lastModified":"1299492392000","name":"Richard Farnsworth","type":"Person","_key":"4351"} +{"label":"Sissy Spacek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e7\/4d24fbc07b9aa134d30001e7\/sissy-spacek-profile.jpg","biography":"Sissy Spacek<\/b> (born Mary Elizabeth Spacek<\/b>; December 25, 1949) is an American actress and singer. She won the He is probably best known as the voice of Disney's Goofy and the original Bozo the Clown, a part he played for a full decade beginning in 1946. He also provided the voice for Practical Pig, the pig who built the \"house of bricks\" in the Disney short Three Little Pigs, as well as both Sleepy and Grumpy in Snow White and the Seven Dwarfs, and the barks for Pluto the dog. Colvig worke","version":34,"id":"5462","lastModified":"1299491925000","name":"Pinto Colvig","type":"Person","_key":"4411"} +{"label":"Marion Darlington","version":33,"id":"5463","lastModified":"1299759969000","name":"Marion Darlington","type":"Person","_key":"4412"} +{"label":"Billy Gilbert","version":43,"id":"5464","lastModified":"1299492742000","name":"Billy Gilbert","type":"Person","_key":"4413"} +{"label":"Otis Harlan","version":22,"id":"5465","lastModified":"1299493582000","name":"Otis Harlan","type":"Person","_key":"4414"} +{"label":"Roy Atwell","version":22,"id":"5457","lastModified":"1299493582000","name":"Roy Atwell","type":"Person","_key":"4415"} +{"label":"Leigh Harline","version":80,"id":"5467","lastModified":"1299759970000","name":"Leigh Harline","type":"Person","_key":"4416"} +{"label":"The English Patient","description":"The filmed version of the novel by Michael Ondaatje of the same name. This film tells of love stories during the turbulent times of World War 2. Director Anthony Minghella films the biography of Ladislaus Almasy.","id":"409","runtime":160,"imdbId":"tt0116209","trailer":"http:\/\/www.youtube.com\/watch?v=2615","version":168,"lastModified":"1300039722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77d\/4bc90780017a3c57fe00277d\/the-english-patient-mid.jpg","studio":"J&M Entertainment","genre":"Drama","title":"The English Patient","releaseDate":847238400000,"language":"en","type":"Movie","_key":"4417"} +{"label":"Kristin Scott Thomas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4c23795b7b9aa13f65000075\/kristin-scott-thomas-profile.jpg","version":114,"id":"5470","lastModified":"1300038265000","name":"Kristin Scott Thomas","type":"Person","_key":"4418"} +{"label":"Naveen Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4c13b7945e73d64a2500000b\/naveen-andrews-profile.jpg","version":50,"id":"5471","lastModified":"1300038265000","name":"Naveen Andrews","type":"Person","_key":"4419"} +{"label":"Colin Firth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f21\/4c0e375f017a3c7e86000f21\/colin-firth-profile.jpg","version":147,"id":"5472","lastModified":"1300038266000","name":"Colin Firth","type":"Person","_key":"4420"} +{"label":"Julian Wadham","version":28,"id":"5473","lastModified":"1300038266000","name":"Julian Wadham","type":"Person","_key":"4421"} +{"label":"Torri Higginson","version":17,"id":"5480","lastModified":"1300038266000","name":"Torri Higginson","type":"Person","_key":"4422"} +{"label":"Kevin Whately","version":18,"id":"5474","lastModified":"1300038266000","name":"Kevin Whately","type":"Person","_key":"4423"} +{"label":"Clive Merrison","version":29,"id":"5475","lastModified":"1300038266000","name":"Clive Merrison","type":"Person","_key":"4424"} +{"label":"Nino Castelnuovo","version":24,"id":"5476","lastModified":"1300038266000","name":"Nino Castelnuovo","type":"Person","_key":"4425"} +{"label":"Hichem Rostom","version":18,"id":"5477","lastModified":"1300038266000","name":"Hichem Rostom","type":"Person","_key":"4426"} +{"label":"Peter R\u00fchring","version":19,"id":"5478","lastModified":"1300038266000","name":"Peter R\u00fchring","type":"Person","_key":"4427"} +{"label":"Geordie Johnson","version":18,"id":"5479","lastModified":"1300038266000","name":"Geordie Johnson","type":"Person","_key":"4428"} +{"label":"Liisa Repo-Martell","version":20,"id":"5481","lastModified":"1300038266000","name":"Liisa Repo-Martell","type":"Person","_key":"4429"} +{"label":"Raymond Coulthard","version":20,"id":"5482","lastModified":"1300038266000","name":"Raymond Coulthard","type":"Person","_key":"4430"} +{"label":"Philip Whitchurch","version":20,"id":"5483","lastModified":"1300038266000","name":"Philip Whitchurch","type":"Person","_key":"4431"} +{"label":"Anthony Minghella","version":76,"id":"2239","lastModified":"1300038267000","name":"Anthony Minghella","type":"Person","_key":"4432"} +{"label":"Sommer vorm Balkon","description":"When you read the title \u2018Summer on the Balcony\u2019 you probably think it will be a light Berlin summer comedy but it\u2019s not. This film is an intimate study of two women friends who come to each other because of troubles with everyday life and with men and thus try to enjoy a life based on their ideas.","id":"410","runtime":105,"imdbId":"tt0477877","homepage":"http:\/\/www.sommervormbalkon.de\/","version":71,"lastModified":"1299911414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78b\/4bc90781017a3c57fe00278b\/sommer-vorm-balkon-mid.jpg","studio":"Rommel Film","genre":"Drama","title":"Sommer vorm Balkon","releaseDate":1136419200000,"language":"en","type":"Movie","_key":"4433"} +{"label":"Inka Friedrich","version":16,"id":"5510","lastModified":"1299493453000","name":"Inka Friedrich","type":"Person","_key":"4434"} +{"label":"Nadja Uhl","version":36,"id":"5511","lastModified":"1299508053000","name":"Nadja Uhl","type":"Person","_key":"4435"} +{"label":"Andreas Schmidt","version":20,"id":"5512","lastModified":"1299493488000","name":"Andreas Schmidt","type":"Person","_key":"4436"} +{"label":"Vincent Redetzki","version":15,"id":"5514","lastModified":"1299494953000","name":"Vincent Redetzki","type":"Person","_key":"4437"} +{"label":"Stephanie Sch\u00f6nfeld","version":14,"id":"5513","lastModified":"1299495577000","name":"Stephanie Sch\u00f6nfeld","type":"Person","_key":"4438"} +{"label":"Christel Peters","version":15,"id":"5515","lastModified":"1299495612000","name":"Christel Peters","type":"Person","_key":"4439"} +{"label":"Kurt Radeke","version":14,"id":"5516","lastModified":"1299495645000","name":"Kurt Radeke","type":"Person","_key":"4440"} +{"label":"Hannes Stelzer","version":14,"id":"5517","lastModified":"1299494953000","name":"Hannes Stelzer","type":"Person","_key":"4441"} +{"label":"Barbara Bachmann","version":14,"id":"5518","lastModified":"1299494954000","name":"Barbara Bachmann","type":"Person","_key":"4442"} +{"label":"Traute H\u00f6ss","version":18,"id":"5522","lastModified":"1299930281000","name":"Traute H\u00f6ss","type":"Person","_key":"4443"} +{"label":"Veit Schubert","version":16,"id":"5523","lastModified":"1299494954000","name":"Veit Schubert","type":"Person","_key":"4444"} +{"label":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","description":"Join Lucy, Edmund, Susan, and Peter, four siblings who step through a magical wardrobe and find the land of Narnia. There, the they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever!","id":"411","runtime":143,"imdbId":"tt0363771","trailer":"http:\/\/www.youtube.com\/watch?v=ruGHxmjQ180","version":268,"lastModified":"1299958015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a9\/4bc90787017a3c57fe0027a9\/the-chronicles-of-narnia-the-lion-the-witch-and-the-wardrobe-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","releaseDate":1134000000000,"language":"en","tagline":"Evil Has Reigned For 100 Years...","type":"Movie","_key":"4445"} +{"label":"Andrew Adamson","version":146,"id":"5524","lastModified":"1299802021000","name":"Andrew Adamson","type":"Person","_key":"4446"} +{"label":"Georgie Henley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f9\/4ce5b8ec7b9aa179bb0000f9\/georgie-henley-profile.jpg","version":60,"id":"5526","lastModified":"1299802021000","name":"Georgie Henley","type":"Person","_key":"4447"} +{"label":"Skandar Keynes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/361\/4cd64c857b9aa113ac000361\/skandar-keynes-profile.jpg","version":59,"id":"5527","lastModified":"1299802021000","name":"Skandar Keynes","type":"Person","_key":"4448"} +{"label":"William Moseley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77c\/4ce4c5b35e73d60f6e00077c\/william-moseley-profile.jpg","biography":"William Peter Moseley was born on April 27, 1987, in Gloucester, \nEngland, to Peter Moseley and Julie Fleming. He is the eldest of three \nchildren with a younger sister named Daisy and and younger brother named\n Ben. His father's name is also William's middle name.","version":44,"id":"5528","lastModified":"1299491463000","name":"William Moseley","type":"Person","_key":"4449"} +{"label":"Anna Popplewell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e15\/4d264e3b7b9aa134d3000e15\/anna-popplewell-profile.jpg","version":51,"id":"5529","lastModified":"1299491254000","name":"Anna Popplewell","type":"Person","_key":"4450"} +{"label":"James McAvoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4c23b62e7b9aa1446c00002c\/james-mcavoy-profile.jpg","version":95,"id":"5530","lastModified":"1299748447000","name":"James McAvoy","type":"Person","_key":"4451"} +{"label":"Kiran Shah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e1c\/4d26500d7b9aa134e0000e1c\/kiran-shah-profile.jpg","version":28,"id":"5531","lastModified":"1299492939000","name":"Kiran Shah","type":"Person","_key":"4452"} +{"label":"Judy McIntosh","version":32,"id":"5532","lastModified":"1299492513000","name":"Judy McIntosh","type":"Person","_key":"4453"} +{"label":"Elizabeth Hawthorne","version":40,"id":"5533","lastModified":"1299539611000","name":"Elizabeth Hawthorne","type":"Person","_key":"4454"} +{"label":"Patrick Kake","version":28,"id":"5534","lastModified":"1299492924000","name":"Patrick Kake","type":"Person","_key":"4455"} +{"label":"Rachael Henley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e8d\/4d2650f37b9aa134dc000e8d\/rachael-henley-profile.jpg","version":28,"id":"5535","lastModified":"1299492356000","name":"Rachael Henley","type":"Person","_key":"4456"} +{"label":"Mark Wells","version":29,"id":"5536","lastModified":"1299492649000","name":"Mark Wells","type":"Person","_key":"4457"} +{"label":"Sophie Winkleman","version":27,"id":"5537","lastModified":"1299492751000","name":"Sophie Winkleman","type":"Person","_key":"4458"} +{"label":"Dawn French","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4d617b665e73d60c68003448\/dawn-french-profile.jpg","version":42,"id":"5539","lastModified":"1299492104000","name":"Dawn French","type":"Person","_key":"4459"} +{"label":"Cameron Rhodes","version":26,"id":"5540","lastModified":"1299492395000","name":"Cameron Rhodes","type":"Person","_key":"4460"} +{"label":"Philip Steuer","version":61,"id":"5541","lastModified":"1299492300000","name":"Philip Steuer","type":"Person","_key":"4461"} +{"label":"Sim Evan-Jones","version":80,"id":"5542","lastModified":"1299492471000","name":"Sim Evan-Jones","type":"Person","_key":"4462"} +{"label":"Batman Forever","description":"The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.","id":"414","runtime":122,"imdbId":"tt0112462","trailer":"http:\/\/www.youtube.com\/watch?v=tmc7k-j9v8s","version":198,"lastModified":"1299995798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c9\/4bc9078b017a3c57fe0027c9\/batman-forever-mid.jpg","genre":"Action","title":"Batman Forever","releaseDate":803260800000,"language":"en","tagline":"Courage now, truth always...","type":"Movie","_key":"4463"} +{"label":"Joel Schumacher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/295\/4c3a06a57b9aa10eda000295\/joel-schumacher-profile.jpg","version":100,"id":"5572","lastModified":"1299542589000","name":"Joel Schumacher","type":"Person","_key":"4464"} +{"label":"Val Kilmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4bcf307a017a3c63f3000022\/val-kilmer-profile.jpg","version":184,"id":"5576","lastModified":"1300012637000","name":"Val Kilmer","type":"Person","_key":"4465"} +{"label":"Chris O'Donnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f4a\/4cbc0d6a7b9aa138d7000f4a\/chris-o-donnell-profile.jpg","biography":"Chris O' Donnell was born on June 26th, 1970. He is the youngest child \nin his family with four sisters and two brothers. He first started \nmodeling at the age of thirteen and continued until the age of sixteen, \nwhen he appeared in commercials. When he was seventeen, he was preparing\n to stop acting and modeling, but was asked to audition for what would \nbe his first film, Men Don't Leave<\/a>\n (1990). He didn't want to go to the audition, but his m","version":74,"id":"5577","lastModified":"1299747951000","name":"Chris O'Donnell","type":"Person","_key":"4466"} +{"label":"Debi Mazar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d2\/4c01e374017a3c70370011d2\/debi-mazar-profile.jpg","version":41,"id":"5578","lastModified":"1300041150000","name":"Debi Mazar","type":"Person","_key":"4467"} +{"label":"Elizabeth Sanders","version":17,"id":"5579","lastModified":"1299492926000","name":"Elizabeth Sanders","type":"Person","_key":"4468"} +{"label":"Batman & Robin","description":"Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.","id":"415","runtime":125,"imdbId":"tt0118688","trailer":"http:\/\/www.youtube.com\/watch?v=ORAGHEV890Y","version":235,"lastModified":"1299995612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ef\/4bc90791017a3c57fe0027ef\/batman-and-robin-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Batman & Robin","releaseDate":866764800000,"language":"en","tagline":"Strength. Courage. Honor. And loyalty.","type":"Movie","_key":"4469"} +{"label":"Elle Macpherson","version":23,"id":"5590","lastModified":"1299492658000","name":"Elle Macpherson","type":"Person","_key":"4470"} +{"label":"John Glover","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/226\/4bf192d2017a3c3217000226\/john-glover-profile.jpg","version":42,"id":"5589","lastModified":"1299492643000","name":"John Glover","type":"Person","_key":"4471"} +{"label":"Alicia Silverstone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4c4e4af57b9aa1326e00003c\/alicia-silverstone-profile.jpg","biography":"

Alicia Silverstone was born on October 4, 1976, in San Francisco, California, the youngest of three children to Monty Silverstone<\/a>,\n a real-estate investor, and Didi Silverstone, a former flight \nattendant. Alicia's career began at the tender age of six when her dad \ntook some photos of his young daughter, which eventually led to her \ngetting several television commercials. After a guest spot on \"T","version":49,"birthday":"213231600000","id":"5588","birthplace":"San Francisco, California, USA","lastModified":"1299493201000","name":"Alicia Silverstone","type":"Person","_key":"4472"} +{"label":"Vom Suchen und Finden der Liebe","description":"Director helmut Dietls and Patric Susskinds illustrate a legendary story of two lovers who cant keep themselves away from death.","id":"419","runtime":105,"imdbId":"tt0383041","version":83,"lastModified":"1299531747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fd\/4bc90793017a3c57fe0027fd\/vom-suchen-und-finden-der-liebe-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Comedy","title":"Vom Suchen und Finden der Liebe","releaseDate":1106784000000,"language":"en","type":"Movie","_key":"4473"} +{"label":"Helmut Dietl","version":27,"id":"5636","lastModified":"1299493172000","name":"Helmut Dietl","type":"Person","_key":"4474"} +{"label":"Alexandra Maria Lara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23d\/4ca4a5485e73d636f700023d\/alexandra-maria-lara-profile.jpg","version":66,"id":"5644","lastModified":"1299951043000","name":"Alexandra Maria Lara","type":"Person","_key":"4475"} +{"label":"Anke Engelke","version":22,"id":"5645","lastModified":"1299493144000","name":"Anke Engelke","type":"Person","_key":"4476"} +{"label":"Justus von Dohnanyi","version":52,"id":"5646","lastModified":"1299951044000","name":"Justus von Dohnanyi","type":"Person","_key":"4477"} +{"label":"Marily Milia","version":13,"id":"5647","lastModified":"1299495387000","name":"Marily Milia","type":"Person","_key":"4478"} +{"label":"Harald Schmidt","version":15,"id":"5648","lastModified":"1299493922000","name":"Harald Schmidt","type":"Person","_key":"4479"} +{"label":"Christoph Maria Herbst","version":27,"id":"5649","lastModified":"1299492526000","name":"Christoph Maria Herbst","type":"Person","_key":"4480"} +{"label":"Richard Beek","version":13,"id":"5650","lastModified":"1299495662000","name":"Richard Beek","type":"Person","_key":"4481"} +{"label":"The Chronicles of Narnia","description":"A series of films based on a series of books from the 1950\u2019s called The Chronicles of Narnia by C.S. Lewis.","id":"420","version":447,"lastModified":"1299995313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4d0bb73a5e73d60509000039\/the-chronicles-of-narnia-mid.jpg","genre":"Family","title":"The Chronicles of Narnia","language":"en","type":"Movie","_key":"4482"} +{"label":"The Life Aquatic With Steve Zissou","description":"Wes Anderson\u2019s incisive quirky comedy build up stars complex characters like in \u2018The Royal Tenenbaums\u2019 with Bill Murray on in the leading role. An ocean adventure documentary film maker Zissou is put in all imaginable life situations and a tough life crisis as he attempts to make a new film about capturing the creature that caused him pain.","id":"421","runtime":119,"imdbId":"tt0362270","trailer":"http:\/\/www.youtube.com\/watch?v=aZVxCNwBqXI","version":139,"lastModified":"1299995081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3b\/4d2cfb117b9aa11a6d000b3b\/the-life-aquatic-with-steve-zissou-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The Life Aquatic With Steve Zissou","releaseDate":1103932800000,"language":"en","tagline":"Team Zissou Presents...","type":"Movie","_key":"4483"} +{"label":"Anjelica Huston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1af\/4bf95bbf017a3c702f0001af\/anjelica-huston-profile.jpg","version":126,"birthday":"-583376400000","id":"5657","birthplace":"Santa Monica, California, U.S.","lastModified":"1299950642000","name":"Anjelica Huston","type":"Person","_key":"4484"} +{"label":"Michael Gambon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4d\/4be6d1af017a3c35bd000d4d\/michael-gambon-profile.jpg","biography":"Sir Michael Gambon is an Irish-British actor who has worked in theatre, television and film. A highly respected theatre actor, Gambon is recognised for his role in The Singing Detective and for his role as Albus Dumbledore in the Harry Potter film series, replacing the late actor Richard Harris.\n\nGambon was born in Cabra, Dublin during World War II. His father, Edward Gambon, was an engineer, and his mother, Mary, was a seamstress.\nHis father decided to seek work in the rebuilding of London, and","version":196,"birthday":"-921549600000","id":"5658","birthplace":"Cabra, Dublin, Ireland","lastModified":"1299959553000","name":"Michael Gambon","type":"Person","_key":"4485"} +{"label":"Seu Jorge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/197\/4d49e9b15e73d617bd000197\/seu-jorge-profile.jpg","version":36,"id":"5659","lastModified":"1299607902000","name":"Seu Jorge","type":"Person","_key":"4486"} +{"label":"Matthew Gray Gubler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c0\/4d2f2ccc7b9aa126030007c0\/matthew-gray-gubler-profile.jpg","version":44,"birthday":"321404400000","id":"5661","birthplace":"Las Vegas, Nevada, USA","lastModified":"1299971486000","name":"Matthew Gray Gubler","type":"Person","_key":"4487"} +{"label":"Antonio Monda","version":13,"id":"5662","lastModified":"1299494206000","name":"Antonio Monda","type":"Person","_key":"4488"} +{"label":"Isabella Blow","version":13,"id":"5663","lastModified":"1299495226000","name":"Isabella Blow","type":"Person","_key":"4489"} +{"label":"Seymour Cassel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4d20625a5e73d66b2d002116\/seymour-cassel-profile.jpg","version":61,"id":"5950","lastModified":"1299491772000","name":"Seymour Cassel","type":"Person","_key":"4490"} +{"label":"Rob Cohen","version":82,"id":"18878","lastModified":"1299492585000","name":"Rob Cohen","type":"Person","_key":"4491"} +{"label":"Wes Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a8\/4bdd684f017a3c20cd0001a8\/wes-anderson-profile.jpg","version":61,"id":"5655","lastModified":"1299491663000","name":"Wes Anderson","type":"Person","_key":"4492"} +{"label":"8\u00bd","description":"With 8 \u00bd Frederico Fellini leaves a self-portrait where dreams and reality are a mix. With help from a most excellent cast and unique scenery this self reflecting film is one of his master works.","id":"422","runtime":138,"imdbId":"tt0056801","trailer":"http:\/\/www.youtube.com\/watch?v=2697","version":114,"lastModified":"1299814940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/834\/4bc9079d017a3c57fe002834\/8-1-2-mid.jpg","studio":"Cineriz","genre":"Drama","title":"8\u00bd","releaseDate":-214704000000,"language":"en","type":"Movie","_key":"4493"} +{"label":"Marcello Mastroianni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4bf7bb87017a3c772c000402\/marcello-mastroianni-profile.jpg","version":59,"id":"5676","lastModified":"1299845295000","name":"Marcello Mastroianni","type":"Person","_key":"4494"} +{"label":"Anouk Aim\u00e9e","version":25,"id":"5682","lastModified":"1299492885000","name":"Anouk Aim\u00e9e","type":"Person","_key":"4495"} +{"label":"Sandra Milo","version":23,"id":"5683","lastModified":"1299492585000","name":"Sandra Milo","type":"Person","_key":"4496"} +{"label":"Rossella Falk","version":20,"id":"5684","lastModified":"1299493032000","name":"Rossella Falk","type":"Person","_key":"4497"} +{"label":"Barbara Steele","version":40,"id":"5685","lastModified":"1299945380000","name":"Barbara Steele","type":"Person","_key":"4498"} +{"label":"Caterina Boratto","version":20,"id":"5686","lastModified":"1299494869000","name":"Caterina Boratto","type":"Person","_key":"4499"} +{"label":"Eddra Gale","version":19,"id":"5687","lastModified":"1299494483000","name":"Eddra Gale","type":"Person","_key":"4500"} +{"label":"Guido Alberti","version":26,"id":"5688","lastModified":"1299756380000","name":"Guido Alberti","type":"Person","_key":"4501"} +{"label":"The Pianist","description":"The Pianist is a film adapted from the biography of Wladyslaw Szpilman. A Jewish-Polish pianist who during the second world war lived and hid miraculously in Warsaw after having gone through a terrible tragedy. A film from Roman Polanski.","id":"423","runtime":150,"imdbId":"tt0253474","homepage":"http:\/\/www.thepianistmovie.com\/","version":174,"lastModified":"1299994813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4c546e9a7b9aa147f4000381\/the-pianist-mid.jpg","studio":"Heritage Films","genre":"Drama","title":"The Pianist","releaseDate":1022198400000,"language":"en","type":"Movie","_key":"4502"} +{"label":"Adrien Brody","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c9\/4bebc4ab017a3c37a50000c9\/adrien-brody-profile.jpg","version":99,"id":"3490","lastModified":"1300004262000","name":"Adrien Brody","type":"Person","_key":"4503"} +{"label":"Thomas Kretschmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/294\/4c77bcb95e73d60418000294\/thomas-kretschmann-profile.jpg","version":101,"id":"3491","lastModified":"1299951044000","name":"Thomas Kretschmann","type":"Person","_key":"4504"} +{"label":"Frank Finlay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4c9c94617b9aa1430b0000a3\/frank-finlay-profile.jpg","biography":"Frank received Academy Award, Golden Globe and BAFTA Award nominations for his performance as William Shakespeare\u2019s Iago in Stuart Burge\u2019s 1965 film of Laurence Olivier\u2019s staging of Othello. He also won the Best Actor Award at the San Sebastian International Film Festival.\n\nHe later essayed the definitive screen portrayal of Alexandre Dumas\u2019 musketeer Porthos in three movies for director Richard Lester: The Three Musketeers (1974), The Four Musketeers (1975) and The Return of the Musketeers (198","version":44,"birthday":"-1369789200000","id":"6637","birthplace":"Farnworth, Lancashire, UK","lastModified":"1299491494000","name":"Frank Finlay","type":"Person","_key":"4505"} +{"label":"Maureen Lipman","version":25,"id":"6638","lastModified":"1299492206000","name":"Maureen Lipman","type":"Person","_key":"4506"} +{"label":"Emilia Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/156\/4cfa6b6c7b9aa1514b002156\/emilia-fox-profile.jpg","version":41,"id":"6639","lastModified":"1299491162000","name":"Emilia Fox","type":"Person","_key":"4507"} +{"label":"Ed Stoppard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35c\/4cd64c3b7b9aa113ac00035c\/ed-stoppard-profile.jpg","version":25,"id":"6640","lastModified":"1299492975000","name":"Ed Stoppard","type":"Person","_key":"4508"} +{"label":"Julia Rayner","version":18,"id":"6641","lastModified":"1299494055000","name":"Julia Rayner","type":"Person","_key":"4509"} +{"label":"Jessica Kate Meyer","version":18,"id":"6642","lastModified":"1299494055000","name":"Jessica Kate Meyer","type":"Person","_key":"4510"} +{"label":"Micha\u0142 \u017bebrowski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4c7de0d05e73d648dd000042\/micha-zebrowski-profile.jpg","version":25,"birthday":"77583600000","id":"6643","birthplace":"Warsaw, Poland","lastModified":"1299493756000","name":"Micha\u0142 \u017bebrowski","type":"Person","_key":"4511"} +{"label":"Wanja Mues","version":21,"id":"6644","lastModified":"1299494374000","name":"Wanja Mues","type":"Person","_key":"4512"} +{"label":"Richard Ridings","version":22,"id":"6645","lastModified":"1299493670000","name":"Richard Ridings","type":"Person","_key":"4513"} +{"label":"Nomi Sharron","version":18,"id":"6646","lastModified":"1299494482000","name":"Nomi Sharron","type":"Person","_key":"4514"} +{"label":"Detlev von Wangenheim","version":18,"id":"6647","lastModified":"1299494482000","name":"Detlev von Wangenheim","type":"Person","_key":"4515"} +{"label":"Krzysztof Pieczynski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf8\/4c0bf110017a3c3519000cf8\/krzysztof-pieczynski-profile.jpg","version":21,"id":"24524","lastModified":"1299497489000","name":"Krzysztof Pieczynski","type":"Person","_key":"4516"} +{"label":"Schindler's List","description":"Told from the perspective of businessman Oskar Schindler who saved over a thousand Jewish lives from the Nazis while they worked as slaves in his armor factory. Schindler\u2019s list is bases on a true story and is illustrated in black and white and filmed on many original locations which brought much discussions and controversy. ","id":"424","runtime":195,"imdbId":"tt0108052","trailer":"http:\/\/www.youtube.com\/watch?v=Eje4waZIGxo","homepage":"http:\/\/www.schindlerslist.com\/","version":175,"lastModified":"1299912225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84b\/4bc907a0017a3c57fe00284b\/schindler-s-list-mid.jpg","studio":"Universal Studios","genre":"Drama","title":"Schindler's List","releaseDate":754617600000,"language":"en","tagline":"Whoever saves one life, saves the world entire.","type":"Movie","_key":"4517"} +{"label":"Caroline Goodall","version":47,"id":"6692","lastModified":"1299491696000","name":"Caroline Goodall","type":"Person","_key":"4518"} +{"label":"Jonathan Sagall","version":27,"id":"6693","lastModified":"1299492953000","name":"Jonathan Sagall","type":"Person","_key":"4519"} +{"label":"Embeth Davidtz","version":63,"id":"6368","lastModified":"1300001180000","name":"Embeth Davidtz","type":"Person","_key":"4520"} +{"label":"Malgoscha Gebel","version":19,"id":"6694","lastModified":"1299493598000","name":"Malgoscha Gebel","type":"Person","_key":"4521"} +{"label":"Shmuel Levy","version":19,"id":"6695","lastModified":"1299493597000","name":"Shmuel Levy","type":"Person","_key":"4522"} +{"label":"Mark Ivanir","version":29,"id":"6696","lastModified":"1299963253000","name":"Mark Ivanir","type":"Person","_key":"4523"} +{"label":"B\u00e9atrice Macola","version":20,"id":"6697","lastModified":"1299493117000","name":"B\u00e9atrice Macola","type":"Person","_key":"4524"} +{"label":"Friedrich von Thun","version":30,"id":"6698","lastModified":"1299583265000","name":"Friedrich von Thun","type":"Person","_key":"4525"} +{"label":"Krzysztof Luft","version":20,"id":"6699","lastModified":"1299493482000","name":"Krzysztof Luft","type":"Person","_key":"4526"} +{"label":"Harry Nehring","version":19,"id":"6700","lastModified":"1299493110000","name":"Harry Nehring","type":"Person","_key":"4527"} +{"label":"Norbert Weisser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/604\/4d4c35725e73d617bd001604\/norbert-weisser-profile.jpg","version":40,"id":"6701","lastModified":"1299491235000","name":"Norbert Weisser","type":"Person","_key":"4528"} +{"label":"Adi Nitzan","version":19,"id":"6702","lastModified":"1299493597000","name":"Adi Nitzan","type":"Person","_key":"4529"} +{"label":"Michael Schneider","version":19,"id":"6703","lastModified":"1299493109000","name":"Michael Schneider","type":"Person","_key":"4530"} +{"label":"Miri Fabian","version":21,"id":"6704","lastModified":"1299493177000","name":"Miri Fabian","type":"Person","_key":"4531"} +{"label":"Anna Mucha","version":19,"id":"6705","lastModified":"1299493597000","name":"Anna Mucha","type":"Person","_key":"4532"} +{"label":"Albert Misak","version":19,"id":"6706","lastModified":"1299493109000","name":"Albert Misak","type":"Person","_key":"4533"} +{"label":"Michael Gordon","version":22,"id":"6707","lastModified":"1299492788000","name":"Michael Gordon","type":"Person","_key":"4534"} +{"label":"Aldona Grochal","version":19,"id":"6708","lastModified":"1299493596000","name":"Aldona Grochal","type":"Person","_key":"4535"} +{"label":"Jacek W\u00f3jcicki","version":19,"id":"6709","lastModified":"1299492778000","name":"Jacek W\u00f3jcicki","type":"Person","_key":"4536"} +{"label":"Beata Paluch","version":19,"id":"6710","lastModified":"1299493341000","name":"Beata Paluch","type":"Person","_key":"4537"} +{"label":"Piotr Polk","version":21,"id":"6711","lastModified":"1299493649000","name":"Piotr Polk","type":"Person","_key":"4538"} +{"label":"Ezra Dagan","version":19,"id":"6712","lastModified":"1299493109000","name":"Ezra Dagan","type":"Person","_key":"4539"} +{"label":"Ice Age","description":"With the impending ice age almost upon them, a mismatched trio of prehistoric critters -- Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth -- find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends. But when enemies attack, their quest takes on far nobler aims..","id":"425","runtime":81,"imdbId":"tt0268380","trailer":"http:\/\/www.youtube.com\/watch?v=3u7ihJk6-lY","homepage":"http:\/\/www.iceagemovie.com\/original\/","version":307,"lastModified":"1300034097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f39\/4c103ae8017a3c29a6000f39\/ice-age-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Ice Age","releaseDate":1016150400000,"language":"en","tagline":"They came. They thawed. They conquered.","type":"Movie","_key":"4540"} +{"label":"Chris Wedge","version":41,"id":"5713","lastModified":"1299492414000","name":"Chris Wedge","type":"Person","_key":"4541"} +{"label":"Carlos Saldanha","version":62,"id":"5714","lastModified":"1299588437000","name":"Carlos Saldanha","type":"Person","_key":"4542"} +{"label":"Ray Romano","version":58,"id":"15757","lastModified":"1299588437000","name":"Ray Romano","type":"Person","_key":"4543"} +{"label":"John Leguizamo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bd\/4d24dddb5e73d626a80000bd\/john-leguizamo-profile.jpg","version":185,"id":"5723","lastModified":"1299588437000","name":"John Leguizamo","type":"Person","_key":"4544"} +{"label":"Goran Visnjic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a42\/4c0bf041017a3c7e89000a42\/goran-visnjic-profile.jpg","version":46,"id":"5725","lastModified":"1299701306000","name":"Goran Visnjic","type":"Person","_key":"4545"} +{"label":"Vertigo","description":"An ex-police officer is asked to follow an old friends wife who thinks she is being followed by ghosts. A classic Hitchcock about a man who\u2019s afraid of heights and a woman he must unfortunately follow to great heights.","id":"426","runtime":128,"imdbId":"tt0052357","trailer":"http:\/\/www.youtube.com\/watch?v=D0bV2gh4E7Y","version":163,"lastModified":"1299911609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/892\/4bc907aa017a3c57fe002892\/vertigo-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"Vertigo","releaseDate":-367632000000,"language":"en","tagline":"Alfred Hitchcock engulfs you in a whirlpool of terror and tension","type":"Movie","_key":"4546"} +{"label":"Kim Novak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09c\/4bd5f86d017a3c658200009c\/kim-novak-profile.jpg","version":38,"id":"5729","lastModified":"1299833440000","name":"Kim Novak","type":"Person","_key":"4547"} +{"label":"Barbara Bel Geddes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ce\/4c7e77417b9aa10d960001ce\/barbara-bel-geddes-profile.jpg","version":23,"id":"5730","lastModified":"1299493084000","name":"Barbara Bel Geddes","type":"Person","_key":"4548"} +{"label":"Tom Helmore","version":24,"id":"5731","lastModified":"1299492789000","name":"Tom Helmore","type":"Person","_key":"4549"} +{"label":"Henry Jones","version":30,"id":"5732","lastModified":"1299493895000","name":"Henry Jones","type":"Person","_key":"4550"} +{"label":"Raymond Bailey","version":19,"id":"5737","lastModified":"1299496551000","name":"Raymond Bailey","type":"Person","_key":"4551"} +{"label":"Ellen Corby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4c3cd5b87b9aa139bb00000d\/ellen-corby-profile.jpg","version":36,"id":"5738","lastModified":"1299670723000","name":"Ellen Corby","type":"Person","_key":"4552"} +{"label":"Konstantin Shayne","version":22,"id":"5739","lastModified":"1299493897000","name":"Konstantin Shayne","type":"Person","_key":"4553"} +{"label":"Lee Patrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c3cd5017b9aa139c000000c\/lee-patrick-profile.jpg","version":28,"id":"5740","lastModified":"1299493694000","name":"Lee Patrick","type":"Person","_key":"4554"} +{"label":"Mon Oncle","description":"With many idea rich comic situations French director Jacques Tati uses his poetic ways and knowledge of the discrepancy between heart and technique to tell a gentle business satiric tale that won him the Oscar for best foreign film in 1959.","id":"427","runtime":110,"imdbId":"tt0050706","version":135,"lastModified":"1299911138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4df\/4ce265a75e73d60f6d0004df\/mon-oncle-mid.jpg","studio":"Alter Films","genre":"Comedy","title":"Mon Oncle","releaseDate":-367459200000,"language":"en","type":"Movie","_key":"4555"} +{"label":"Jacques Tati","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/88d\/4d78b4055e73d63f8800088d\/jacques-tati-profile.jpg","version":94,"birthday":"-1963875600000","id":"5763","birthplace":"Pecq","lastModified":"1299972072000","name":"Jacques Tati","type":"Person","_key":"4556"} +{"label":"Jean-Pierre Zola","version":19,"id":"5764","lastModified":"1299494071000","name":"Jean-Pierre Zola","type":"Person","_key":"4557"} +{"label":"Adrienne Servantie","version":16,"id":"5765","lastModified":"1299493454000","name":"Adrienne Servantie","type":"Person","_key":"4558"} +{"label":"Lucien Fr\u00e9gis","version":19,"id":"5766","lastModified":"1299494046000","name":"Lucien Fr\u00e9gis","type":"Person","_key":"4559"} +{"label":"Betty Schneider","version":17,"id":"5767","lastModified":"1299496392000","name":"Betty Schneider","type":"Person","_key":"4560"} +{"label":"Jean-Fran\u00e7ois Martial","version":17,"id":"5768","lastModified":"1299496387000","name":"Jean-Fran\u00e7ois Martial","type":"Person","_key":"4561"} +{"label":"Dominique Marie","version":16,"id":"5769","lastModified":"1299496526000","name":"Dominique Marie","type":"Person","_key":"4562"} +{"label":"Yvonne Arnaud","version":16,"id":"5770","lastModified":"1299496526000","name":"Yvonne Arnaud","type":"Person","_key":"4563"} +{"label":"Adelaide Danieli","version":16,"id":"5771","lastModified":"1299496526000","name":"Adelaide Danieli","type":"Person","_key":"4564"} +{"label":"Alain B\u00e9court","version":16,"id":"5772","lastModified":"1299496309000","name":"Alain B\u00e9court","type":"Person","_key":"4565"} +{"label":"R\u00e9gis Fontenay","version":16,"id":"5773","lastModified":"1299496308000","name":"R\u00e9gis Fontenay","type":"Person","_key":"4566"} +{"label":"Sommer '04","description":"Sommer \u201904 is a character study of a family on vacation. German director Stefan Krohmer examines the emotional abyss and problems behind the seemingly nice facade of an intact family as they experience guilt, love and jealousy.","id":"428","runtime":97,"imdbId":"tt0806679","version":83,"lastModified":"1299911194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a5\/4bc907ae017a3c57fe0028a5\/sommer-04-mid.jpg","studio":"WDR","genre":"Drama","title":"Sommer '04","releaseDate":1160524800000,"language":"en","type":"Movie","_key":"4567"} +{"label":"Stefan Krohmer","version":14,"id":"5742","lastModified":"1299494341000","name":"Stefan Krohmer","type":"Person","_key":"4568"} +{"label":"Petra Misovic","version":12,"id":"5750","lastModified":"1299494761000","name":"Petra Misovic","type":"Person","_key":"4569"} +{"label":"Robert Seeliger","version":22,"id":"5755","lastModified":"1299492947000","name":"Robert Seeliger","type":"Person","_key":"4570"} +{"label":"Peter Davor","version":14,"id":"5756","lastModified":"1299493904000","name":"Peter Davor","type":"Person","_key":"4571"} +{"label":"Svea Lohde","version":13,"id":"5757","lastModified":"1299494760000","name":"Svea Lohde","type":"Person","_key":"4572"} +{"label":"Lucas Kotaranin","version":12,"id":"5758","lastModified":"1299495353000","name":"Lucas Kotaranin","type":"Person","_key":"4573"} +{"label":"Nicole Marischka","version":18,"id":"5759","lastModified":"1299583266000","name":"Nicole Marischka","type":"Person","_key":"4574"} +{"label":"G\u00e1bor Altorjay","version":13,"id":"5760","lastModified":"1299495661000","name":"G\u00e1bor Altorjay","type":"Person","_key":"4575"} +{"label":"Michael Benthin","version":14,"id":"5761","lastModified":"1299495353000","name":"Michael Benthin","type":"Person","_key":"4576"} +{"label":"The Good, the Bad and the Ugly","description":"A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.This is the third Italian-Western film of a trilogy from director Sergio Leone who gives Western films a new (bloody) color.","id":"429","runtime":161,"imdbId":"tt0060196","trailer":"http:\/\/www.youtube.com\/watch?v=9etarIaqF1Y","homepage":"http:\/\/www.mgm.com\/goodbadugly\/","version":267,"lastModified":"1299940908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1aa\/4c3047177b9aa166640001aa\/the-good-the-bad-and-the-ugly-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"The Good, the Bad and the Ugly","releaseDate":-64195200000,"language":"en","tagline":"For three men the Civil War wasn\u2019t hell. It was practice.","type":"Movie","_key":"4577"} +{"label":"Aldo Giuffr\u00e8","version":29,"id":"5813","lastModified":"1299543476000","name":"Aldo Giuffr\u00e8","type":"Person","_key":"4578"} +{"label":"Luigi Pistilli","version":44,"id":"5814","lastModified":"1299543476000","name":"Luigi Pistilli","type":"Person","_key":"4579"} +{"label":"Rada Rassimov","version":28,"id":"5815","lastModified":"1299543476000","name":"Rada Rassimov","type":"Person","_key":"4580"} +{"label":"John Bartha","version":30,"id":"5816","lastModified":"1299543476000","name":"John Bartha","type":"Person","_key":"4581"} +{"label":"Livio Lorenzon","version":25,"id":"5817","lastModified":"1299543476000","name":"Livio Lorenzon","type":"Person","_key":"4582"} +{"label":"Antonio Casale","version":27,"id":"5818","lastModified":"1299543476000","name":"Antonio Casale","type":"Person","_key":"4583"} +{"label":"Angelo Novi","version":24,"id":"5819","lastModified":"1299543476000","name":"Angelo Novi","type":"Person","_key":"4584"} +{"label":"Jos\u00e9 Terr\u00f3n","version":24,"id":"5843","lastModified":"1299543477000","name":"Jos\u00e9 Terr\u00f3n","type":"Person","_key":"4585"} +{"label":"One, Two, Three","description":"One, Two, Three \u2013 A scorching business comedy that plays during the Cold War in Berlin, Germany. With it\u2019s political satire director Billy Wilder depicts the fight between capitalism and communism with panic, scrutiny and surprises, filmed during the building of the Berlin Wall. ","id":"430","runtime":115,"imdbId":"tt0055256","trailer":"http:\/\/www.youtube.com\/watch?v=26_xhQBU3gA","version":195,"lastModified":"1300046527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e1\/4bc907b5017a3c57fe0028e1\/one-two-three-mid.jpg","studio":"Pyramid Productions Inc.","genre":"Comedy","title":"One, Two, Three","releaseDate":-253929600000,"language":"en","type":"Movie","_key":"4586"} +{"label":"James Cagney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15f\/4bcc6b98017a3c0f3400015f\/james-cagney-profile.jpg","version":53,"birthday":"-2223507600000","id":"5788","birthplace":"New York City, New York, USA","lastModified":"1299582463000","name":"James Cagney","type":"Person","_key":"4587"} +{"label":"Horst Buchholz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f6\/4c51aa847b9aa13d4a0001f6\/horst-buchholz-profile.jpg","version":40,"id":"5789","lastModified":"1299492324000","name":"Horst Buchholz","type":"Person","_key":"4588"} +{"label":"Pamela Tiffin","version":16,"id":"5790","lastModified":"1299493361000","name":"Pamela Tiffin","type":"Person","_key":"4589"} +{"label":"Arlene Francis","version":15,"id":"5791","lastModified":"1299493569000","name":"Arlene Francis","type":"Person","_key":"4590"} +{"label":"Howard St. John","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c7\/4bd99d22017a3c1bfb0002c7\/howard-st-john-profile.jpg","version":33,"id":"5792","lastModified":"1299834115000","name":"Howard St. John","type":"Person","_key":"4591"} +{"label":"Liselotte Pulver","version":20,"id":"5793","lastModified":"1299493663000","name":"Liselotte Pulver","type":"Person","_key":"4592"} +{"label":"Hanns Lothar","version":13,"id":"5794","lastModified":"1299495974000","name":"Hanns Lothar","type":"Person","_key":"4593"} +{"label":"Leon Askin","version":17,"id":"5795","lastModified":"1299927761000","name":"Leon Askin","type":"Person","_key":"4594"} +{"label":"Ralf Wolter","version":39,"id":"5796","lastModified":"1299492804000","name":"Ralf Wolter","type":"Person","_key":"4595"} +{"label":"Karl Lieffen","version":19,"id":"5797","lastModified":"1299495439000","name":"Karl Lieffen","type":"Person","_key":"4596"} +{"label":"Hubert von Meyerinck","version":30,"id":"5798","lastModified":"1299496277000","name":"Hubert von Meyerinck","type":"Person","_key":"4597"} +{"label":"Lo\u00efs Bolton","version":12,"id":"5799","lastModified":"1299495973000","name":"Lo\u00efs Bolton","type":"Person","_key":"4598"} +{"label":"Til Kiwe","version":19,"id":"5800","lastModified":"1299495109000","name":"Til Kiwe","type":"Person","_key":"4599"} +{"label":"Henning Schl\u00fcter","version":12,"id":"5801","lastModified":"1299494645000","name":"Henning Schl\u00fcter","type":"Person","_key":"4600"} +{"label":"Karl Ludwig Lindt","version":14,"id":"5802","lastModified":"1299494966000","name":"Karl Ludwig Lindt","type":"Person","_key":"4601"} +{"label":"Christine Allen","version":13,"id":"5803","lastModified":"1299495973000","name":"Christine Allen","type":"Person","_key":"4602"} +{"label":"John Allen","version":12,"id":"5804","lastModified":"1299495973000","name":"John Allen","type":"Person","_key":"4603"} +{"label":"Cube","description":"The claustrophobic debut of Canadian director Vincenzo Natali takes seven strangers out of their daily lives and places them mysteriously in a deadly cube where they all agree they must find their way out. A mix of thriller and psychodrama and a small budget film that gained cult status.","id":"431","runtime":90,"imdbId":"tt0123755","trailer":"http:\/\/www.youtube.com\/watch?v=01hUyIrubWE","version":122,"lastModified":"1299993430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/901\/4bc907bb017a3c57fe002901\/cube-mid.jpg","studio":"Trimark Pictures","genre":"Drama","title":"Cube","releaseDate":873936000000,"language":"en","tagline":"Don't Look For A Reason... Look For A Way Out","type":"Movie","_key":"4604"} +{"label":"Vincenzo Natali","version":47,"id":"5877","lastModified":"1299491711000","name":"Vincenzo Natali","type":"Person","_key":"4605"} +{"label":"Nicole de Boer","version":22,"id":"5888","lastModified":"1299492702000","name":"Nicole de Boer","type":"Person","_key":"4606"} +{"label":"Nicky Guadagni","version":27,"id":"5889","lastModified":"1299492352000","name":"Nicky Guadagni","type":"Person","_key":"4607"} +{"label":"David Hewlett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4bebd1fb017a3c37a00000e9\/david-hewlett-profile.jpg","version":49,"birthday":"-53830800000","id":"5892","birthplace":"Redhill, Surrey, England","lastModified":"1299491515000","name":"David Hewlett","type":"Person","_key":"4608"} +{"label":"Andrew Miller","version":32,"id":"5894","lastModified":"1299492196000","name":"Andrew Miller","type":"Person","_key":"4609"} +{"label":"Wayne Robson","version":33,"id":"5897","lastModified":"1299493032000","name":"Wayne Robson","type":"Person","_key":"4610"} +{"label":"Maurice Dean Wint","version":21,"id":"5900","lastModified":"1299493239000","name":"Maurice Dean Wint","type":"Person","_key":"4611"} +{"label":"Cube Movie Series","description":"The series of Canadian films about people stuck inside a giant seemingly endless cube maze. They must find out why they are there and how they can get out. The film started with an extremely low budgeted. The first film \u2018Cube\u2019 became a cult film.","id":"432","version":26,"lastModified":"1299810634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cf\/4c18a02d5e73d64a220002cf\/cube-movie-series-mid.jpg","title":"Cube Movie Series","language":"en","type":"Movie","_key":"4612"} +{"label":"Mary Poppins","description":"Mary Poppins is the Disney musical film version of the Australian children's book. One of the classic Disney films and the first film to combine live action with animation in a story about the magical nanny named Mary Poppins who comes and goes by flying with her umbrella.","id":"433","runtime":140,"imdbId":"tt0058331","version":127,"lastModified":"1299912979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00f\/4d4f871b7b9aa13aaf00b00f\/mary-poppins-mid.jpg","studio":"Walt Disney Company","genre":"Comedy","title":"Mary Poppins","releaseDate":-168566400000,"language":"en","tagline":"It's supercalifragilisticexpialidocious!","type":"Movie","_key":"4613"} +{"label":"Julie Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dc\/4c4327c57b9aa145900002dc\/julie-andrews-profile.jpg","version":131,"id":"5823","lastModified":"1299967125000","name":"Julie Andrews","type":"Person","_key":"4614"} +{"label":"Dick Van Dyke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4d0db4e95e73d6371c001019\/dick-van-dyke-profile.jpg","version":44,"id":"61303","lastModified":"1299491823000","name":"Dick Van Dyke","type":"Person","_key":"4615"} +{"label":"David Tomlinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4c49b2a37b9aa11601000096\/david-tomlinson-profile.jpg","version":31,"id":"5825","lastModified":"1299492715000","name":"David Tomlinson","type":"Person","_key":"4616"} +{"label":"Glynis Johns","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4c6aba897b9aa13ab600010a\/glynis-johns-profile.jpg","version":29,"id":"5826","lastModified":"1299491935000","name":"Glynis Johns","type":"Person","_key":"4617"} +{"label":"Hermione Baddeley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a40\/4cf92c917b9aa15146001a40\/hermione-baddeley-profile.jpg","version":37,"id":"5827","lastModified":"1299491624000","name":"Hermione Baddeley","type":"Person","_key":"4618"} +{"label":"Reta Shaw","version":26,"id":"5828","lastModified":"1299493259000","name":"Reta Shaw","type":"Person","_key":"4619"} +{"label":"Karen Dotrice","version":22,"id":"5829","lastModified":"1299494296000","name":"Karen Dotrice","type":"Person","_key":"4620"} +{"label":"Matthew Garber","version":18,"id":"5830","lastModified":"1299493619000","name":"Matthew Garber","type":"Person","_key":"4621"} +{"label":"Elsa Lanchester","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/153\/4c869f7f7b9aa1545f000153\/elsa-lanchester-profile.jpg","version":49,"id":"2926","lastModified":"1299757101000","name":"Elsa Lanchester","type":"Person","_key":"4622"} +{"label":"Arthur Treacher","version":25,"id":"5831","lastModified":"1299493770000","name":"Arthur Treacher","type":"Person","_key":"4623"} +{"label":"Reginald Owen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4c697bc37b9aa13921000013\/reginald-owen-profile.jpg","version":47,"id":"5832","lastModified":"1299850123000","name":"Reginald Owen","type":"Person","_key":"4624"} +{"label":"Ed Wynn","version":25,"id":"5833","lastModified":"1299494027000","name":"Ed Wynn","type":"Person","_key":"4625"} +{"label":"Robert Stevenson","version":59,"id":"5834","lastModified":"1299492178000","name":"Robert Stevenson","type":"Person","_key":"4626"} +{"label":"Knallhart","description":"From the youth directed novel of the same name by Greogor Tressnow comes a film by Detlev Buck that is a realistic portrait of life in the section of Berlin called Neuk\u00f6lln. It\u2019s about power and weakness, delinquents and victims, and the difficulties a 15-year-old faces in a poor and criminal environment.","id":"434","runtime":99,"imdbId":"tt0475317","homepage":"http:\/\/www.knallhart-derfilm.de","version":91,"lastModified":"1299913080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13c\/4bdd135e017a3c20c200013c\/knallhart-mid.jpg","studio":"Boje Buck Produktion","genre":"Drama","title":"Knallhart","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"4627"} +{"label":"Detlev Buck","version":47,"id":"5844","lastModified":"1299492800000","name":"Detlev Buck","type":"Person","_key":"4628"} +{"label":"David Kross","version":26,"birthday":"647042400000","id":"5847","birthplace":"Germany","lastModified":"1299492012000","name":"David Kross","type":"Person","_key":"4629"} +{"label":"Erhan Emre","version":14,"id":"5848","lastModified":"1299492842000","name":"Erhan Emre","type":"Person","_key":"4630"} +{"label":"Oktay \u00d6zdemir","version":19,"id":"5849","lastModified":"1299492804000","name":"Oktay \u00d6zdemir","type":"Person","_key":"4631"} +{"label":"Kida Khodr Ramadan","version":14,"id":"5850","lastModified":"1299494990000","name":"Kida Khodr Ramadan","type":"Person","_key":"4632"} +{"label":"Arnel Taci","version":13,"id":"5851","lastModified":"1299494234000","name":"Arnel Taci","type":"Person","_key":"4633"} +{"label":"Kai Michael M\u00fcller","version":15,"id":"5852","lastModified":"1299494988000","name":"Kai Michael M\u00fcller","type":"Person","_key":"4634"} +{"label":"Hans L\u00f6w","version":14,"id":"5853","lastModified":"1299494234000","name":"Hans L\u00f6w","type":"Person","_key":"4635"} +{"label":"Jan Henrik Stahlberg","version":24,"id":"5854","lastModified":"1299493586000","name":"Jan Henrik Stahlberg","type":"Person","_key":"4636"} +{"label":"Sinan Akdeniz","version":13,"id":"5855","lastModified":"1299494988000","name":"Sinan Akdeniz","type":"Person","_key":"4637"} +{"label":"Ali-Kemal Akyaz","version":12,"id":"5856","lastModified":"1299494672000","name":"Ali-Kemal Akyaz","type":"Person","_key":"4638"} +{"label":"Peter Bucksch","version":12,"id":"5857","lastModified":"1299495262000","name":"Peter Bucksch","type":"Person","_key":"4639"} +{"label":"Hassan Chahrour","version":13,"id":"5858","lastModified":"1299494672000","name":"Hassan Chahrour","type":"Person","_key":"4640"} +{"label":"Roland Florstedt","version":12,"id":"5859","lastModified":"1299494234000","name":"Roland Florstedt","type":"Person","_key":"4641"} +{"label":"Stephan Grossmann","version":13,"id":"5860","lastModified":"1299494926000","name":"Stephan Grossmann","type":"Person","_key":"4642"} +{"label":"Rebecca Hessing","version":12,"id":"5861","lastModified":"1299494671000","name":"Rebecca Hessing","type":"Person","_key":"4643"} +{"label":"Bernhard Howe","version":12,"id":"5862","lastModified":"1299494672000","name":"Bernhard Howe","type":"Person","_key":"4644"} +{"label":"Franziska J\u00fcnger","version":13,"id":"5863","lastModified":"1299493586000","name":"Franziska J\u00fcnger","type":"Person","_key":"4645"} +{"label":"Eva L\u00f6bau","version":21,"id":"47048","lastModified":"1299496320000","name":"Eva L\u00f6bau","type":"Person","_key":"4646"} +{"label":"Stefan Konarske","version":16,"id":"48480","lastModified":"1299503843000","name":"Stefan Konarske","type":"Person","_key":"4647"} +{"label":"Fabian Kr\u00fcger","version":15,"id":"48481","lastModified":"1299500529000","name":"Fabian Kr\u00fcger","type":"Person","_key":"4648"} +{"label":"The Day After Tomorrow","description":"After years of unabated global warming, the greenhouse effect is wreaking havoc all over the globe in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and, most ominously, the beginning of the next Ice Age. Paleoclimatologist Jack Hall tries to save the world while also shepherding to safety his son Sam, who was in New York when the city was overwhelmed by the beginnings of the new big freeze.","id":"435","runtime":124,"imdbId":"tt0319262","trailer":"http:\/\/www.youtube.com\/watch?v=Ze8Gshk53Y8","homepage":"http:\/\/www.thedayaftertomorrow.com\/","version":327,"lastModified":"1299992952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/951\/4bc907c8017a3c57fe002951\/the-day-after-tomorrow-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Day After Tomorrow","releaseDate":1084752000000,"language":"en","tagline":"Where will you be?","type":"Movie","_key":"4649"} +{"label":"Dennis Quaid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31c\/4bd2e487017a3c63ef00031c\/dennis-quaid-profile.jpg","version":168,"birthday":"-496458000000","id":"6065","birthplace":"Houston, Texas, USA","lastModified":"1299794384000","name":"Dennis Quaid","type":"Person","_key":"4650"} +{"label":"Dash Mihok","version":70,"id":"6066","lastModified":"1300011879000","name":"Dash Mihok","type":"Person","_key":"4651"} +{"label":"Jay O. Sanders","version":53,"id":"6067","lastModified":"1299764429000","name":"Jay O. Sanders","type":"Person","_key":"4652"} +{"label":"Sela Ward","version":48,"id":"6068","lastModified":"1299492238000","name":"Sela Ward","type":"Person","_key":"4653"} +{"label":"Austin Nichols","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/109\/4cee9ffa5e73d65314000109\/austin-nichols-profile.jpg","version":39,"id":"6069","lastModified":"1299779004000","name":"Austin Nichols","type":"Person","_key":"4654"} +{"label":"Arjay Smith","version":27,"id":"6070","lastModified":"1299581811000","name":"Arjay Smith","type":"Person","_key":"4655"} +{"label":"Sasha Roiz","version":32,"id":"6071","lastModified":"1299491778000","name":"Sasha Roiz","type":"Person","_key":"4656"} +{"label":"Nassim Sharara","version":22,"id":"6072","lastModified":"1299492630000","name":"Nassim Sharara","type":"Person","_key":"4657"} +{"label":"Carl Alacchi","version":23,"id":"6073","lastModified":"1299492644000","name":"Carl Alacchi","type":"Person","_key":"4658"} +{"label":"Kenneth Welsh","version":53,"id":"6074","lastModified":"1299509142000","name":"Kenneth Welsh","type":"Person","_key":"4659"} +{"label":"Michel 'Gish' Abou-Samah","version":23,"id":"6075","lastModified":"1299492583000","name":"Michel 'Gish' Abou-Samah","type":"Person","_key":"4660"} +{"label":"Maria Full of Grace","description":"The Columbian American production tells the impressive living conditions in Columbia with the drug trade and the courage of a young woman to go off on her own way.","id":"436","runtime":101,"imdbId":"tt0390221","homepage":"http:\/\/www.mariallenaeresdegracia.com\/index.html","version":125,"lastModified":"1299992790000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4bc907cc017a3c57fe002971\/maria-llena-eres-de-gracia-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"Maria Full of Grace","releaseDate":1074384000000,"language":"en","tagline":"Based on 10,000 true stories.","type":"Movie","_key":"4661"} +{"label":"Joshua Marston","version":22,"id":"5872","lastModified":"1299490886000","name":"Joshua Marston","type":"Person","_key":"4662"} +{"label":"Catalina Sandino Moreno","version":25,"id":"5887","lastModified":"1299492245000","name":"Catalina Sandino Moreno","type":"Person","_key":"4663"} +{"label":"Guilied Lopez","version":14,"id":"5902","lastModified":"1299494205000","name":"Guilied Lopez","type":"Person","_key":"4664"} +{"label":"Yenny Paola Vega","version":14,"id":"5891","lastModified":"1299494205000","name":"Yenny Paola Vega","type":"Person","_key":"4665"} +{"label":"John \u00c1lex Toro","version":14,"id":"5972","lastModified":"1299495971000","name":"John \u00c1lex Toro","type":"Person","_key":"4666"} +{"label":"Virgina Ariza","version":14,"id":"5890","lastModified":"1299495225000","name":"Virgina Ariza","type":"Person","_key":"4667"} +{"label":"Rodrigo S\u00e1nchez Borhorquez","version":14,"id":"5893","lastModified":"1299495972000","name":"Rodrigo S\u00e1nchez Borhorquez","type":"Person","_key":"4668"} +{"label":"Charles Albert Pati\u00f1o","version":14,"id":"5895","lastModified":"1299495972000","name":"Charles Albert Pati\u00f1o","type":"Person","_key":"4669"} +{"label":"Wilson Guerrero","version":14,"id":"5896","lastModified":"1299495972000","name":"Wilson Guerrero","type":"Person","_key":"4670"} +{"label":"Johanna Andrea Mora","version":14,"id":"5898","lastModified":"1299495972000","name":"Johanna Andrea Mora","type":"Person","_key":"4671"} +{"label":"Evangelina Morales","version":14,"id":"5899","lastModified":"1299495972000","name":"Evangelina Morales","type":"Person","_key":"4672"} +{"label":"Jaime Osorio G\u00f3mez","version":26,"id":"5874","lastModified":"1299494438000","name":"Jaime Osorio G\u00f3mez","type":"Person","_key":"4673"} +{"label":"Victor Macias","version":14,"id":"5903","lastModified":"1299495972000","name":"Victor Macias","type":"Person","_key":"4674"} +{"label":"Hugo Ferro","version":15,"id":"5905","lastModified":"1299495971000","name":"Hugo Ferro","type":"Person","_key":"4675"} +{"label":"Ana Maria Acosta","version":15,"id":"5906","lastModified":"1299495971000","name":"Ana Maria Acosta","type":"Person","_key":"4676"} +{"label":"Patricia Rae","version":15,"id":"5973","lastModified":"1299495971000","name":"Patricia Rae","type":"Person","_key":"4677"} +{"label":"Cube 2 Hypercube","description":"The sequel to the low budget first film \u2018Cube.\u2019 This time the prisoners find them selves in a more advanced cube environment that they must escape from before they are killed. A science fiction film were space and time have more than one path.","id":"437","runtime":95,"imdbId":"tt0285492","trailer":"http:\/\/www.youtube.com\/watch?v=JSFP2a7g7Js","homepage":"http:\/\/www.scifi.com\/cube2\/","version":144,"lastModified":"1299912687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97a\/4bc907cd017a3c57fe00297a\/cube-2-hypercube-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"Cube 2 Hypercube","releaseDate":1018828800000,"language":"en","type":"Movie","_key":"4678"} +{"label":"Andrzej Sekula","version":52,"id":"3115","lastModified":"1299492528000","name":"Andrzej Sekula","type":"Person","_key":"4679"} +{"label":"Kari Matchett","version":25,"id":"5937","lastModified":"1299493147000","name":"Kari Matchett","type":"Person","_key":"4680"} +{"label":"Geraint Wyn Davies","version":21,"id":"5938","lastModified":"1299492937000","name":"Geraint Wyn Davies","type":"Person","_key":"4681"} +{"label":"Grace Lynn Kung","version":19,"id":"5939","lastModified":"1299492776000","name":"Grace Lynn Kung","type":"Person","_key":"4682"} +{"label":"Matthew Ferguson","version":18,"id":"5940","lastModified":"1299493591000","name":"Matthew Ferguson","type":"Person","_key":"4683"} +{"label":"Neil Crone","version":16,"id":"5941","lastModified":"1299494690000","name":"Neil Crone","type":"Person","_key":"4684"} +{"label":"Barbara Gordon","version":20,"id":"5942","lastModified":"1299493792000","name":"Barbara Gordon","type":"Person","_key":"4685"} +{"label":"Lindsey Connell","version":20,"id":"5943","lastModified":"1299493437000","name":"Lindsey Connell","type":"Person","_key":"4686"} +{"label":"Greer Kent","version":16,"id":"5944","lastModified":"1299493338000","name":"Greer Kent","type":"Person","_key":"4687"} +{"label":"Bruce Gray","version":25,"id":"5945","lastModified":"1299492635000","name":"Bruce Gray","type":"Person","_key":"4688"} +{"label":"Philip Akin","version":23,"id":"5946","lastModified":"1299494941000","name":"Philip Akin","type":"Person","_key":"4689"} +{"label":"Paul Robbins","version":16,"id":"5947","lastModified":"1299493861000","name":"Paul Robbins","type":"Person","_key":"4690"} +{"label":"Andrew Scorer","version":16,"id":"5948","lastModified":"1299494689000","name":"Andrew Scorer","type":"Person","_key":"4691"} +{"label":"Cube Zero","description":"Cube Zero is the third film in the trilogy yet this time instead of a film about people trapped in a deadly cube trying to get out we see it from the eyes of someone who is controlling the cube and the torture of the victims inside. When the nerd can\u2019t stand to see a woman suffer he himself enters the cube to try and save her.","id":"438","runtime":97,"imdbId":"tt0377713","trailer":"http:\/\/www.youtube.com\/watch?v=zSfAlYyMeik","version":288,"lastModified":"1300024507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc7\/4d4776025e73d67063002cc7\/cube-zero-mid.jpg","studio":"Mad Circus Films","genre":"Drama","title":"Cube Zero","releaseDate":1097798400000,"language":"en","type":"Movie","_key":"4692"} +{"label":"Ernie Barbarash","version":44,"id":"5917","lastModified":"1299767573000","name":"Ernie Barbarash","type":"Person","_key":"4693"} +{"label":"Zachary Bennett","version":18,"id":"5918","lastModified":"1299493337000","name":"Zachary Bennett","type":"Person","_key":"4694"} +{"label":"Stephanie Moore","version":16,"id":"5919","lastModified":"1299493486000","name":"Stephanie Moore","type":"Person","_key":"4695"} +{"label":"Michael Riley","version":23,"id":"5920","lastModified":"1299493493000","name":"Michael Riley","type":"Person","_key":"4696"} +{"label":"Martin Roach","version":21,"id":"5921","lastModified":"1299492937000","name":"Martin Roach","type":"Person","_key":"4697"} +{"label":"David Huband","version":28,"id":"5922","lastModified":"1299492773000","name":"David Huband","type":"Person","_key":"4698"} +{"label":"Mike 'Nug' Nahrgang","version":16,"id":"5923","lastModified":"1299494053000","name":"Mike 'Nug' Nahrgang","type":"Person","_key":"4699"} +{"label":"Richard McMillan","version":26,"id":"5924","lastModified":"1299925907000","name":"Richard McMillan","type":"Person","_key":"4700"} +{"label":"Joshua Peace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/762\/4cf713f35e73d6299e001762\/joshua-peace-profile.jpg","version":26,"id":"5925","lastModified":"1299492375000","name":"Joshua Peace","type":"Person","_key":"4701"} +{"label":"Terri Hawkes","version":15,"id":"5926","lastModified":"1299493337000","name":"Terri Hawkes","type":"Person","_key":"4702"} +{"label":"Tony Munch","version":20,"id":"5927","lastModified":"1299494690000","name":"Tony Munch","type":"Person","_key":"4703"} +{"label":"La dolce vita","description":"An episodic romantic film, built up with many stories instead of one main plot, that ponders the voids and decadence of high society. A classic film and upon it\u2019s first night out a scandal. The 1960 film by Federico Fellini is named the film that split up his earlier neo-realist films from the art films he did later in his career. ","id":"439","runtime":174,"imdbId":"tt0053779","version":89,"lastModified":"1299992351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ab\/4bc907d3017a3c57fe0029ab\/la-dolce-vita-mid.jpg","studio":"Gray-Film","genre":"Comedy","title":"La dolce vita","releaseDate":-312768000000,"language":"en","type":"Movie","_key":"4704"} +{"label":"Anita Ekberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4bd6f6e9017a3c21e90000e9\/anita-ekberg-profile.jpg","version":34,"id":"5961","lastModified":"1299491925000","name":"Anita Ekberg","type":"Person","_key":"4705"} +{"label":"Yvonne Furneaux","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/124\/4c24f7737b9aa1446a000124\/yvonne-furneaux-profile.jpg","version":22,"id":"5962","lastModified":"1299492694000","name":"Yvonne Furneaux","type":"Person","_key":"4706"} +{"label":"Magali No\u00ebl","version":25,"id":"5963","lastModified":"1299954633000","name":"Magali No\u00ebl","type":"Person","_key":"4707"} +{"label":"Alain Cuny","version":25,"id":"5964","lastModified":"1299493445000","name":"Alain Cuny","type":"Person","_key":"4708"} +{"label":"Annibale Ninchi","version":13,"id":"5965","lastModified":"1299495971000","name":"Annibale Ninchi","type":"Person","_key":"4709"} +{"label":"Walter Santesso","version":13,"id":"5966","lastModified":"1299495970000","name":"Walter Santesso","type":"Person","_key":"4710"} +{"label":"Valeria Ciangottini","version":14,"id":"5967","lastModified":"1299495970000","name":"Valeria Ciangottini","type":"Person","_key":"4711"} +{"label":"Riccardo Garrone","version":28,"id":"5968","lastModified":"1299536843000","name":"Riccardo Garrone","type":"Person","_key":"4712"} +{"label":"Ida Galli","version":29,"id":"5969","lastModified":"1299493697000","name":"Ida Galli","type":"Person","_key":"4713"} +{"label":"Lex Barker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f3\/4d01351c7b9aa11bc30000f3\/lex-barker-profile.jpg","version":45,"id":"6102","lastModified":"1299583235000","name":"Lex Barker","type":"Person","_key":"4714"} +{"label":"Nadia Gray","version":18,"id":"6103","lastModified":"1299495445000","name":"Nadia Gray","type":"Person","_key":"4715"} +{"label":"AVPR: Aliens vs. Predator - Requiem","description":"Prepare for more mayhem as warring aliens and predators return for Round 2 of their no-holds-barred slugfest. This time, the intergalactic creatures do battle in a small American town, throwing local residents into harm's way. To save the planet, the humans must oust both types of unwelcome guests. This sci-fi sequel features tons of spectacular action sequences full of nifty new gadgets and gooey monster gore.","id":"440","runtime":94,"imdbId":"tt0758730","trailer":"http:\/\/www.youtube.com\/watch?v=YrTXTb03Ixc&hd=1","homepage":"http:\/\/www.avp-r.com\/","version":202,"lastModified":"1299831070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4bc907d4017a3c57fe0029bc\/aliens-vs-predator-requiem-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"AVPR: Aliens vs. Predator - Requiem","releaseDate":1198540800000,"language":"en","tagline":"The Last Place On Earth We Want To Be Is In The Middle","type":"Movie","_key":"4716"} +{"label":"Colin Strause","version":48,"id":"6037","lastModified":"1299491918000","name":"Colin Strause","type":"Person","_key":"4717"} +{"label":"Greg Strause","version":31,"id":"6038","lastModified":"1299492911000","name":"Greg Strause","type":"Person","_key":"4718"} +{"label":"Steven Pasquale","version":34,"id":"56389","lastModified":"1299491332000","name":"Steven Pasquale","type":"Person","_key":"4719"} +{"label":"Reiko Aylesworth","version":33,"id":"25869","lastModified":"1299491263000","name":"Reiko Aylesworth","type":"Person","_key":"4720"} +{"label":"Ariel Gade","version":31,"id":"76414","lastModified":"1299491387000","name":"Ariel Gade","type":"Person","_key":"4721"} +{"label":"Human Nature","description":"Human Nature is a profound comedy about the contrast between nature and civilization, desire and sexuality, culture and savageness. Screenwriter Charlie Kaufman follows his widely successful \u2018Being John Malkovich with this film directed by Michel Gondry.","id":"441","runtime":96,"imdbId":"tt0219822","homepage":"http:\/\/www.humannaturemovie.com\/","version":126,"lastModified":"1299992048000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d9\/4bc907d8017a3c57fe0029d9\/human-nature-mid.jpg","studio":"Fine Line Features","genre":"Comedy","title":"Human Nature","releaseDate":990144000000,"language":"en","type":"Movie","_key":"4722"} +{"label":"Hilary Duff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4bf9a2fc017a3c7037000215\/hilary-duff-profile.jpg","version":53,"birthday":"559782000000","id":"5958","lastModified":"1299578923000","name":"Hilary Duff","type":"Person","_key":"4723"} +{"label":"Bobby Pyle","version":13,"id":"5959","lastModified":"1299494988000","name":"Bobby Pyle","type":"Person","_key":"4724"} +{"label":"Mary Kay Place","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65f\/4c9b66077b9aa122df00065f\/mary-kay-place-profile.jpg","version":61,"id":"5960","lastModified":"1299491197000","name":"Mary Kay Place","type":"Person","_key":"4725"} +{"label":"Rhys Ifans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4ca426b57b9aa16ed80000ff\/rhys-ifans-profile.jpg","version":114,"id":"7026","lastModified":"1300031871000","name":"Rhys Ifans","type":"Person","_key":"4726"} +{"label":"Popul\u00e4rmusik fr\u00e5n Vittula","description":"Popul\u00e4rmusik fr\u00e5n Vittula is the filmed version of a best-selling book by the same name from author Mikael Niemi. Full of the comic life, slapstick humor, a friendship between to boys, and a look at life on the northern boarder of Sweden.","id":"442","runtime":100,"imdbId":"tt0314524","homepage":"http:\/\/www.sf.se\/sites\/vittula\/","version":68,"lastModified":"1299531801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e2\/4bc907d9017a3c57fe0029e2\/popularmusik-fran-vittula-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Comedy","title":"Popul\u00e4rmusik fr\u00e5n Vittula","releaseDate":1137628800000,"language":"en","type":"Movie","_key":"4727"} +{"label":"Reza Bagher","version":15,"id":"5974","lastModified":"1299493577000","name":"Reza Bagher","type":"Person","_key":"4728"} +{"label":"Niklas Ulfvarson","version":13,"id":"5977","lastModified":"1299493576000","name":"Niklas Ulfvarson","type":"Person","_key":"4729"} +{"label":"Max Enderfors","version":13,"id":"5978","lastModified":"1299493576000","name":"Max Enderfors","type":"Person","_key":"4730"} +{"label":"Tommy Vallikari","version":15,"id":"5979","lastModified":"1299493576000","name":"Tommy Vallikari","type":"Person","_key":"4731"} +{"label":"Andreas af Enehjelm","version":13,"id":"5980","lastModified":"1299494205000","name":"Andreas af Enehjelm","type":"Person","_key":"4732"} +{"label":"Jarmo M\u00e4kinen","version":17,"id":"5998","lastModified":"1299495429000","name":"Jarmo M\u00e4kinen","type":"Person","_key":"4733"} +{"label":"Tarja-Tuulikki Tarsala","version":14,"id":"6000","lastModified":"1299494643000","name":"Tarja-Tuulikki Tarsala","type":"Person","_key":"4734"} +{"label":"Bj\u00f6rn Kjellman","version":22,"id":"6001","lastModified":"1299495105000","name":"Bj\u00f6rn Kjellman","type":"Person","_key":"4735"} +{"label":"G\u00f6ran Forsmark","version":14,"id":"6002","lastModified":"1299495969000","name":"G\u00f6ran Forsmark","type":"Person","_key":"4736"} +{"label":"Lisa Lindgren","version":17,"id":"6003","lastModified":"1299494229000","name":"Lisa Lindgren","type":"Person","_key":"4737"} +{"label":"Sten Ljunggren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4bd49014017a3c7fae00012b\/sten-ljunggren-profile.jpg","version":24,"id":"6004","lastModified":"1299493714000","name":"Sten Ljunggren","type":"Person","_key":"4738"} +{"label":"Annika Marklund","version":13,"id":"6005","lastModified":"1299495969000","name":"Annika Marklund","type":"Person","_key":"4739"} +{"label":"Hidden","description":"A married couple is terrorized by a series of videotapes planted on their front porch.","id":"445","runtime":117,"imdbId":"tt0387898","trailer":"http:\/\/www.youtube.com\/watch?v=lS4VVUYsK44","homepage":"http:\/\/www.cache-derfilm.at","version":148,"lastModified":"1299991771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fb\/4bc907dd017a3c57fe0029fb\/cache-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"Hidden","releaseDate":1116028800000,"language":"en","type":"Movie","_key":"4740"} +{"label":"Michael Haneke","version":74,"id":"6011","lastModified":"1299995467000","name":"Michael Haneke","type":"Person","_key":"4741"} +{"label":"Daniel Auteuil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a8\/4bdb6459017a3c5d890001a8\/daniel-auteuil-profile.jpg","version":116,"id":"6012","lastModified":"1300041091000","name":"Daniel Auteuil","type":"Person","_key":"4742"} +{"label":"Annie Girardot","version":35,"id":"6014","lastModified":"1299956938000","name":"Annie Girardot","type":"Person","_key":"4743"} +{"label":"Bernard Le Coq","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/761\/4d1137395e73d6083e000761\/bernard-le-coq-profile.jpg","version":39,"id":"6015","lastModified":"1299916944000","name":"Bernard Le Coq","type":"Person","_key":"4744"} +{"label":"Daniel Duval","version":34,"id":"6018","lastModified":"1299609532000","name":"Daniel Duval","type":"Person","_key":"4745"} +{"label":"Walid Afkir","version":15,"id":"6016","lastModified":"1299494245000","name":"Walid Afkir","type":"Person","_key":"4746"} +{"label":"Lester Makedonsky","version":15,"id":"6017","lastModified":"1299494244000","name":"Lester Makedonsky","type":"Person","_key":"4747"} +{"label":"Nathalie Richard","version":20,"id":"6019","lastModified":"1299493906000","name":"Nathalie Richard","type":"Person","_key":"4748"} +{"label":"Denis Podalyd\u00e8s","version":35,"id":"6020","lastModified":"1299608405000","name":"Denis Podalyd\u00e8s","type":"Person","_key":"4749"} +{"label":"A\u00efssa Ma\u00efga","version":22,"id":"6021","lastModified":"1299493479000","name":"A\u00efssa Ma\u00efga","type":"Person","_key":"4750"} +{"label":"Caroline Baehr","version":17,"id":"6022","lastModified":"1299493947000","name":"Caroline Baehr","type":"Person","_key":"4751"} +{"label":"Christian Benedetti","version":15,"id":"6023","lastModified":"1299494244000","name":"Christian Benedetti","type":"Person","_key":"4752"} +{"label":"Loic Brabant","version":22,"id":"6024","lastModified":"1299492921000","name":"Loic Brabant","type":"Person","_key":"4753"} +{"label":"Lichter","description":"Lichter is an episodic tale from Hans-Christian Schmid about the life on the boarder between Germany and Poland. The film sheds light on the everyday stories of escape and desperateness.","id":"446","runtime":105,"imdbId":"tt0351238","homepage":"http:\/\/www.lichter-der-film.de\/","version":49,"lastModified":"1299531801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a00\/4bc907dd017a3c57fe002a00\/lichter-mid.jpg","studio":"Claussen + W\u00f6bke Filmproduktion GmbH","genre":"Drama","title":"Lichter","releaseDate":1044921600000,"language":"en","type":"Movie","_key":"4754"} +{"label":"Ivan Shvedoff","version":24,"id":"6079","lastModified":"1299493371000","name":"Ivan Shvedoff","type":"Person","_key":"4755"} +{"label":"Sergey Frolov","version":13,"id":"6080","lastModified":"1299493488000","name":"Sergey Frolov","type":"Person","_key":"4756"} +{"label":"Anna Yanovskaya","version":13,"id":"6081","lastModified":"1299493033000","name":"Anna Yanovskaya","type":"Person","_key":"4757"} +{"label":"Sebastian Urzendowsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd1\/4d48298a7b9aa103c8006fd1\/sebastian-urzendowsky-profile.jpg","version":24,"id":"6082","lastModified":"1299492850000","name":"Sebastian Urzendowsky","type":"Person","_key":"4758"} +{"label":"Alice Dwyer","version":16,"id":"6083","lastModified":"1299495614000","name":"Alice Dwyer","type":"Person","_key":"4759"} +{"label":"Martin Kiefer","version":16,"id":"6084","lastModified":"1299494321000","name":"Martin Kiefer","type":"Person","_key":"4760"} +{"label":"Devid Striesow","version":32,"id":"6086","lastModified":"1299492364000","name":"Devid Striesow","type":"Person","_key":"4761"} +{"label":"Claudia Geisler","version":17,"id":"6087","lastModified":"1299496479000","name":"Claudia Geisler","type":"Person","_key":"4762"} +{"label":"Aleksandra Justa","version":12,"id":"6088","lastModified":"1299496010000","name":"Aleksandra Justa","type":"Person","_key":"4763"} +{"label":"Marysia Zamachowska","version":12,"id":"6089","lastModified":"1299496010000","name":"Marysia Zamachowska","type":"Person","_key":"4764"} +{"label":"Janek Rieke","version":19,"id":"6090","lastModified":"1299493383000","name":"Janek Rieke","type":"Person","_key":"4765"} +{"label":"August Diehl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/274\/4c51dfd37b9aa13d4a000274\/august-diehl-profile.jpg","version":66,"birthday":"189558000000","id":"6091","birthplace":"Berlin","lastModified":"1299600532000","name":"August Diehl","type":"Person","_key":"4766"} +{"label":"Julia Krynke","version":12,"id":"6092","lastModified":"1299496010000","name":"Julia Krynke","type":"Person","_key":"4767"} +{"label":"Henry H\u00fcbchen","version":30,"id":"6093","lastModified":"1299492530000","name":"Henry H\u00fcbchen","type":"Person","_key":"4768"} +{"label":"Hans-Christian Schmid","version":30,"id":"6094","lastModified":"1299492977000","name":"Hans-Christian Schmid","type":"Person","_key":"4769"} +{"label":"Leaving Las Vegas","description":"Leaving Las Vegas \u2013 The sadly beautiful film based on the book of the same name by John O\u2019Brian portrays two lonely people in society. Nicholas Cage won an Oscar for his performance as the alcoholic Ben Sanderson.","id":"451","runtime":112,"imdbId":"tt0113627","trailer":"http:\/\/www.youtube.com\/watch?v=UMlYWZgCIgo","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=LEAVINGL","version":201,"lastModified":"1300046305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a09\/4bc907de017a3c57fe002a09\/leaving-las-vegas-mid.jpg","studio":"Initial Productions","genre":"Drama","title":"Leaving Las Vegas","releaseDate":814752000000,"language":"en","type":"Movie","_key":"4770"} +{"label":"Richard Lewis","version":21,"id":"6105","lastModified":"1299493176000","name":"Richard Lewis","type":"Person","_key":"4771"} +{"label":"Steven Weber","version":40,"id":"6106","lastModified":"1299492433000","name":"Steven Weber","type":"Person","_key":"4772"} +{"label":"Kim Adams","version":14,"id":"6107","lastModified":"1299494481000","name":"Kim Adams","type":"Person","_key":"4773"} +{"label":"Emily Procter","version":19,"id":"6108","lastModified":"1300046908000","name":"Emily Procter","type":"Person","_key":"4774"} +{"label":"Stuart Regen","version":16,"id":"6109","lastModified":"1299494988000","name":"Stuart Regen","type":"Person","_key":"4775"} +{"label":"Graham Beckel","version":34,"id":"6110","lastModified":"1299834852000","name":"Graham Beckel","type":"Person","_key":"4776"} +{"label":"Mariska Hargitay","version":21,"id":"6240","lastModified":"1299495489000","name":"Mariska Hargitay","type":"Person","_key":"4777"} +{"label":"Mike Figgis","version":49,"id":"6111","lastModified":"1299492978000","name":"Mike Figgis","type":"Person","_key":"4778"} +{"label":"The Idiots","description":"With his first Dogma-95 film director Lars von Trier opens up a completely new film platform. With a mix of home-video and documentary styles the film tells the story of a group of young people who have decided to get to know their \u201cinner-idiots\u201d and thus not only facing and breaking their outer appearance but also their inner. ","id":"452","runtime":117,"imdbId":"tt0154421","homepage":"http:\/\/www.dogme95.dk\/the_idiots\/content\/index.htm","version":142,"lastModified":"1299912449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1b\/4bc907e0017a3c57fe002a1b\/idioterne-mid.jpg","studio":"Arte","genre":"Drama","title":"The Idiots","releaseDate":895622400000,"language":"en","type":"Movie","_key":"4779"} +{"label":"Bodil J\u00f8rgensen","version":26,"id":"6120","lastModified":"1299493475000","name":"Bodil J\u00f8rgensen","type":"Person","_key":"4780"} +{"label":"Anne Louise Hassing","version":14,"id":"6122","lastModified":"1299493324000","name":"Anne Louise Hassing","type":"Person","_key":"4781"} +{"label":"Troels Lyby","version":21,"id":"6123","lastModified":"1299493915000","name":"Troels Lyby","type":"Person","_key":"4782"} +{"label":"Louise Mieritz","version":19,"id":"6124","lastModified":"1299494643000","name":"Louise Mieritz","type":"Person","_key":"4783"} +{"label":"Henrik Prip","version":19,"id":"6125","lastModified":"1299495969000","name":"Henrik Prip","type":"Person","_key":"4784"} +{"label":"Luis Mesonero","version":14,"id":"6126","lastModified":"1299495969000","name":"Luis Mesonero","type":"Person","_key":"4785"} +{"label":"Knud Romer J\u00f8rgensen","version":14,"id":"6127","lastModified":"1299495224000","name":"Knud Romer J\u00f8rgensen","type":"Person","_key":"4786"} +{"label":"Trine Michelsen","version":15,"id":"6128","lastModified":"1299495224000","name":"Trine Michelsen","type":"Person","_key":"4787"} +{"label":"Anne-Grethe Bjarup Riis","version":16,"id":"6129","lastModified":"1299495255000","name":"Anne-Grethe Bjarup Riis","type":"Person","_key":"4788"} +{"label":"Erik Weders\u00f8e","version":14,"id":"6130","lastModified":"1299495224000","name":"Erik Weders\u00f8e","type":"Person","_key":"4789"} +{"label":"Michael Moritzen","version":16,"id":"6131","lastModified":"1299495224000","name":"Michael Moritzen","type":"Person","_key":"4790"} +{"label":"Jan Elle","version":15,"id":"6132","lastModified":"1299495660000","name":"Jan Elle","type":"Person","_key":"4791"} +{"label":"Claus Strandberg","version":15,"id":"6133","lastModified":"1299496524000","name":"Claus Strandberg","type":"Person","_key":"4792"} +{"label":"Jens J\u00f8rn Spottag","version":17,"id":"6134","lastModified":"1299494228000","name":"Jens J\u00f8rn Spottag","type":"Person","_key":"4793"} +{"label":"John Martinus","version":15,"id":"6135","lastModified":"1299495223000","name":"John Martinus","type":"Person","_key":"4794"} +{"label":"Lars Bjarke","version":14,"id":"6136","lastModified":"1299495223000","name":"Lars Bjarke","type":"Person","_key":"4795"} +{"label":"Ewald Larsen","version":14,"id":"6137","lastModified":"1299495969000","name":"Ewald Larsen","type":"Person","_key":"4796"} +{"label":"Christian Friis","version":14,"id":"6138","lastModified":"1299495223000","name":"Christian Friis","type":"Person","_key":"4797"} +{"label":"Louise B. Clausen","version":14,"id":"6139","lastModified":"1299495223000","name":"Louise B. Clausen","type":"Person","_key":"4798"} +{"label":"Hans Henrik Clemensen","version":15,"id":"6140","lastModified":"1299494643000","name":"Hans Henrik Clemensen","type":"Person","_key":"4799"} +{"label":"Lone Lindorff","version":14,"id":"6141","lastModified":"1299495223000","name":"Lone Lindorff","type":"Person","_key":"4800"} +{"label":"Erno M\u00fcller","version":14,"id":"6142","lastModified":"1299495223000","name":"Erno M\u00fcller","type":"Person","_key":"4801"} +{"label":"Regitze Estrup","version":14,"id":"6143","lastModified":"1299495223000","name":"Regitze Estrup","type":"Person","_key":"4802"} +{"label":"Lotte Munk Fure","version":14,"id":"6144","lastModified":"1299495223000","name":"Lotte Munk Fure","type":"Person","_key":"4803"} +{"label":"Marina Bouras","version":14,"id":"6145","lastModified":"1299495223000","name":"Marina Bouras","type":"Person","_key":"4804"} +{"label":"A Beautiful Mind","description":"At Princeton University, John Nash struggles to make a worthwhile contribution to serve as his legacy to the world of mathematics. He finally makes a revolutionary breakthrough that will eventually earn him the Nobel Prize. After graduate school he turns to teaching, becoming romantically involved with his student Alicia. Meanwhile the government asks his help with breaking Soviet codes, which soon gets him involved in a terrifying conspiracy plot. Nash grows more and more paranoid until a disco","id":"453","runtime":135,"imdbId":"tt0268978","trailer":"http:\/\/www.youtube.com\/watch?v=aS_d0Ayjw4o","homepage":"http:\/\/www.abeautifulmind.com\/","version":192,"lastModified":"1300031710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/110\/4d67fea67b9aa13631000110\/a-beautiful-mind-mid.jpg","studio":"Imagine Entertainment","genre":"Drama","title":"A Beautiful Mind","releaseDate":1008201600000,"language":"en","tagline":"I need to believe that something extra ordinary is possible....","type":"Movie","_key":"4805"} +{"label":"Jennifer Connelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/507\/4be0f6bc017a3c35b5000507\/jennifer-connelly-profile.jpg","version":140,"id":"6161","lastModified":"1299950851000","name":"Jennifer Connelly","type":"Person","_key":"4806"} +{"label":"Paul Bettany","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/139\/4c98dbce7b9aa12759000139\/paul-bettany-profile.jpg","version":102,"birthday":"44146800000","id":"6162","birthplace":"Harlesden, London, England, UK ","lastModified":"1299950851000","name":"Paul Bettany","type":"Person","_key":"4807"} +{"label":"Adam Goldberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4bd5eefc017a3c658200007c\/adam-goldberg-profile.jpg","version":86,"id":"6163","lastModified":"1299950851000","name":"Adam Goldberg","type":"Person","_key":"4808"} +{"label":"Josh Lucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f7\/4cb8f6717b9aa138d60008f7\/josh-lucas-profile.jpg","biography":"Over his career, Josh Lucas has worked with many of the film community's greatest talents. He has starred alongside Jon Voight<\/a> in Jerry Bruckheimer<\/a>'s Glory Road<\/a>\n (2006), for which Lucas added 40 pounds to transform himself into \nlegendary basketball coach Don Haskins. Lucas also starred with Kurt Russe","version":80,"birthday":"46306800000","id":"6164","birthplace":"Little Rock, Arkansas, USA","lastModified":"1299950851000","name":"Josh Lucas","type":"Person","_key":"4809"} +{"label":"Anthony Rapp","version":31,"id":"6165","lastModified":"1299950852000","name":"Anthony Rapp","type":"Person","_key":"4810"} +{"label":"Jason Gray-Stanford","version":29,"id":"6166","lastModified":"1299950852000","name":"Jason Gray-Stanford","type":"Person","_key":"4811"} +{"label":"Austin Pendleton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ddb\/4d296a0f5e73d626be002ddb\/austin-pendleton-profile.jpg","version":52,"id":"6168","lastModified":"1299950852000","name":"Austin Pendleton","type":"Person","_key":"4812"} +{"label":"Vivien Cardone","version":25,"id":"6169","lastModified":"1299950852000","name":"Vivien Cardone","type":"Person","_key":"4813"} +{"label":"Jillie Simon","version":25,"id":"6170","lastModified":"1299950852000","name":"Jillie Simon","type":"Person","_key":"4814"} +{"label":"Victor Steinbach","version":28,"id":"6171","lastModified":"1299950852000","name":"Victor Steinbach","type":"Person","_key":"4815"} +{"label":"Tanya Clarke","version":28,"id":"6172","lastModified":"1299950852000","name":"Tanya Clarke","type":"Person","_key":"4816"} +{"label":"Thomas F. Walsh","version":25,"id":"6173","lastModified":"1299950852000","name":"Thomas F. Walsh","type":"Person","_key":"4817"} +{"label":"Jesse Doran","version":25,"id":"6174","lastModified":"1299950852000","name":"Jesse Doran","type":"Person","_key":"4818"} +{"label":"Kent Cassella","version":25,"id":"6175","lastModified":"1299950852000","name":"Kent Cassella","type":"Person","_key":"4819"} +{"label":"Patrick Blindauer","version":25,"id":"6176","lastModified":"1299950852000","name":"Patrick Blindauer","type":"Person","_key":"4820"} +{"label":"John Blaylock","version":25,"id":"6177","lastModified":"1299950852000","name":"John Blaylock","type":"Person","_key":"4821"} +{"label":"Roy Thinnes","version":30,"id":"6178","lastModified":"1299950852000","name":"Roy Thinnes","type":"Person","_key":"4822"} +{"label":"Anthony Easton","version":25,"id":"6179","lastModified":"1299950852000","name":"Anthony Easton","type":"Person","_key":"4823"} +{"label":"Cheryl Howard","version":25,"id":"6180","lastModified":"1299950852000","name":"Cheryl Howard","type":"Person","_key":"4824"} +{"label":"Josh Pais","version":33,"id":"6181","lastModified":"1299950852000","name":"Josh Pais","type":"Person","_key":"4825"} +{"label":"David B. Allen","version":26,"id":"6182","lastModified":"1299950852000","name":"David B. Allen","type":"Person","_key":"4826"} +{"label":"Michael Esper","version":25,"id":"6183","lastModified":"1299950853000","name":"Michael Esper","type":"Person","_key":"4827"} +{"label":"Romeo + Juliet","description":"The Australian director Baz Luhrmann teleports the romantic tragedy Romeo and Juliet tale from the Italian Verona to the Latin-American Verona Beach. The film was a success with it\u2019s original dialogue from the MTV aesthetic and with guns as the weapon of choice.","id":"454","runtime":120,"imdbId":"tt0117509","trailer":"http:\/\/www.youtube.com\/watch?v=7D0l42kCZqM","homepage":"http:\/\/www.romeoandjuliet.com\/","version":197,"lastModified":"1299991042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/483\/4d7bcacc5e73d65ec6001483\/romeo-juliet-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Romeo + Juliet","releaseDate":846806400000,"language":"en","type":"Movie","_key":"4828"} +{"label":"Leonardo DiCaprio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/079\/4bd6cbeb017a3c21f6000079\/leonardo-dicaprio-profile.jpg","biography":"Leonardo Wilhelm DiCaprio (born November 11, 1974) is an American actor and film producer. His first role was on the sitcom Growing Pains, but his breakthrough film performance came in This Boy's Life. This was quickly followed by What's Eating Gilbert Grape; his performance as the mentally handicapped brother of Gilbert (Johnny Depp) brought him nominations for the Golden Globe and Academy Award for Best Supporting Actor.\n\nHe gained fame for his role as Jack Dawson in Titanic, and has starred i","version":213,"birthday":"153356400000","id":"6193","birthplace":"Los Angeles, California, USA","lastModified":"1299765443000","name":"Leonardo DiCaprio","type":"Person","_key":"4829"} +{"label":"Brian Dennehy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/100\/4c7669ee7b9aa16a0a000100\/brian-dennehy-profile.jpg","version":138,"id":"6197","lastModified":"1299582643000","name":"Brian Dennehy","type":"Person","_key":"4830"} +{"label":"Vondie Curtis-Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42d\/4d6a568e7b9aa1362900242d\/vondie-curtis-hall-profile.jpg","version":40,"id":"6198","lastModified":"1299492947000","name":"Vondie Curtis-Hall","type":"Person","_key":"4831"} +{"label":"Miriam Margolyes","version":59,"id":"6199","lastModified":"1299492720000","name":"Miriam Margolyes","type":"Person","_key":"4832"} +{"label":"Diane Venora","version":42,"id":"6200","lastModified":"1299492700000","name":"Diane Venora","type":"Person","_key":"4833"} +{"label":"Zak Orth","version":36,"id":"6212","lastModified":"1299491950000","name":"Zak Orth","type":"Person","_key":"4834"} +{"label":"Jamie Kennedy","version":47,"id":"6213","lastModified":"1299492239000","name":"Jamie Kennedy","type":"Person","_key":"4835"} +{"label":"Edwina Moore","version":21,"id":"6214","lastModified":"1299495843000","name":"Edwina Moore","type":"Person","_key":"4836"} +{"label":"Paul Rudd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bed6b96017a3c3c79000007\/paul-rudd-profile.jpg","version":127,"birthday":"-23331600000","id":"22226","birthplace":"Passaic, New Jersey, U.S.","lastModified":"1300030984000","name":"Paul Rudd","type":"Person","_key":"4837"} +{"label":"Baz Luhrmann","version":63,"id":"6201","lastModified":"1299492148000","name":"Baz Luhrmann","type":"Person","_key":"4838"} +{"label":"Bend It Like Beckham","description":"Indian director Gurinder Chadha creates a coming-of-age story of a young Indian girl who is torn between adhering to family traditions and attaining super-stardom on the soccer field.","id":"455","runtime":112,"imdbId":"tt0286499","trailer":"http:\/\/www.youtube.com\/watch?v=XsmbObwStSQ","homepage":"http:\/\/www2.foxsearchlight.com\/benditlikebeckham\/","version":192,"lastModified":"1300035002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a52\/4bc907e9017a3c57fe002a52\/bend-it-like-beckham-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"Bend It Like Beckham","releaseDate":1017705600000,"language":"en","tagline":"Who wants to cook Aloo Gobi when you can bend a ball like Beckham?","type":"Movie","_key":"4839"} +{"label":"Parminder Nagra","version":21,"id":"6216","lastModified":"1299947012000","name":"Parminder Nagra","type":"Person","_key":"4840"} +{"label":"Anupam Kher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/168\/4c4f28ea5e73d62ec2000168\/anupam-kher-profile.jpg","version":72,"id":"6217","lastModified":"1299491877000","name":"Anupam Kher","type":"Person","_key":"4841"} +{"label":"Shaheen Khan","version":15,"id":"6218","lastModified":"1299493324000","name":"Shaheen Khan","type":"Person","_key":"4842"} +{"label":"Juliet Stevenson","version":30,"id":"6238","lastModified":"1299493139000","name":"Juliet Stevenson","type":"Person","_key":"4843"} +{"label":"Ameet Chana","version":14,"id":"6239","lastModified":"1299493833000","name":"Ameet Chana","type":"Person","_key":"4844"} +{"label":"Archie Panjabi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c9\/4c94d8337b9aa10d590000c9\/archie-panjabi-profile.jpg","biography":"Archie made her film debut<\/FONT><\/A> in the British hit film East Is East<\/FONT><\/A> (1999). Since then she has continued to work on international blockbuster films like Bend It Like Beckham<\/FONT><\/A> (2002) and The Constant Gardener<\/FONT><\/A> (2005) to critically acclaimed films like A Mighty Heart","version":40,"id":"128645","lastModified":"1299894745000","name":"Archie Panjabi","type":"Person","_key":"4845"} +{"label":"Gurinder Chadha","version":42,"id":"6220","lastModified":"1299493397000","name":"Gurinder Chadha","type":"Person","_key":"4846"} +{"label":"Sissi","description":"Sissi is a trilogy of 1950 films starring Romy Schneider and Karlheinz B\u00f6hm and is part of the classic German-Austrian film history and some of the most successful German language films in box-office history.","id":"456","version":60,"lastModified":"1299990724000","genre":"Romance","title":"Sissi","language":"en","type":"Movie","_key":"4847"} +{"label":"Sissi","description":"The young Bavarian princess Elisabeth, who all call Sissi, goes with her mother and older sister N\u00e9n\u00e9 to Austria where N\u00e9n\u00e9 will be wed to an emperor named Franz Joseph, Yet unexpectedly Franz runs into Sissi while out fishing and they fall in love.","id":"457","runtime":102,"imdbId":"tt0048624","version":110,"lastModified":"1299990592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5b\/4bc907ea017a3c57fe002a5b\/sissi-mid.jpg","studio":"Herzog","genre":"Comedy","title":"Sissi","releaseDate":-442627200000,"language":"en","type":"Movie","_key":"4848"} +{"label":"Ernst Marischka","version":43,"id":"6241","lastModified":"1299492978000","name":"Ernst Marischka","type":"Person","_key":"4849"} +{"label":"Romy Schneider","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51a\/4ca93f8b5e73d643eb00051a\/romy-schneider-profile.jpg","version":86,"id":"6250","lastModified":"1299756380000","name":"Romy Schneider","type":"Person","_key":"4850"} +{"label":"Karlheinz B\u00f6hm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03a\/4ca638f55e73d643eb00003a\/karlheinz-bohm-profile.jpg","version":31,"id":"6251","lastModified":"1299833977000","name":"Karlheinz B\u00f6hm","type":"Person","_key":"4851"} +{"label":"Magda Schneider","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/047\/4ca639115e73d643ec000047\/magda-schneider-profile.jpg","version":30,"id":"6252","lastModified":"1299491984000","name":"Magda Schneider","type":"Person","_key":"4852"} +{"label":"Uta Franz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/036\/4ca638d65e73d643eb000036\/uta-franz-profile.jpg","version":19,"id":"6253","lastModified":"1299492855000","name":"Uta Franz","type":"Person","_key":"4853"} +{"label":"Gustav Knuth","version":27,"id":"6254","lastModified":"1299493976000","name":"Gustav Knuth","type":"Person","_key":"4854"} +{"label":"Vilma Degischer","version":21,"id":"6255","lastModified":"1299494436000","name":"Vilma Degischer","type":"Person","_key":"4855"} +{"label":"Josef Meinrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9d\/4d593b9e7b9aa15cf6004a9d\/josef-meinrad-profile.jpg","version":28,"id":"6256","lastModified":"1299494857000","name":"Josef Meinrad","type":"Person","_key":"4856"} +{"label":"Erich Nikowitz","version":22,"id":"6257","lastModified":"1299494987000","name":"Erich Nikowitz","type":"Person","_key":"4857"} +{"label":"Peter Weck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4ca63f2f5e73d643ef000054\/peter-weck-profile.jpg","version":27,"id":"6258","lastModified":"1299493293000","name":"Peter Weck","type":"Person","_key":"4858"} +{"label":"Hilde Wagener","version":16,"id":"6259","lastModified":"1299495094000","name":"Hilde Wagener","type":"Person","_key":"4859"} +{"label":"Karl Fochler","version":18,"id":"6260","lastModified":"1299495658000","name":"Karl Fochler","type":"Person","_key":"4860"} +{"label":"Otto Tre\u00dfler","version":14,"id":"6261","lastModified":"1299494053000","name":"Otto Tre\u00dfler","type":"Person","_key":"4861"} +{"label":"Egon von Jordan","version":15,"id":"6262","lastModified":"1299493462000","name":"Egon von Jordan","type":"Person","_key":"4862"} +{"label":"Sissi - Die junge Kaiserin","description":"Sissi is now the empress of Austria and attempts to learn etiquette. While she is busy being empress she also has to deal with her difficult new mother-in-law, while the arch-duchess Sophie is trying to tell the emperor how to rule and also Sissi how to be a mother.","id":"458","runtime":101,"imdbId":"tt0049762","version":107,"lastModified":"1299990472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a64\/4bc907ea017a3c57fe002a64\/sissi-die-junge-kaiserin-mid.jpg","studio":"Herzog","genre":"Comedy","title":"Sissi - Die junge Kaiserin","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"4863"} +{"label":"Walter Reyer","version":19,"id":"6809","lastModified":"1299495572000","name":"Walter Reyer","type":"Person","_key":"4864"} +{"label":"Senta Wengraf","version":20,"id":"6810","lastModified":"1299494464000","name":"Senta Wengraf","type":"Person","_key":"4865"} +{"label":"Hans Ziegler","version":17,"id":"6811","lastModified":"1299494480000","name":"Hans Ziegler","type":"Person","_key":"4866"} +{"label":"Sissi - Schicksalsjahre einer Kaiserin","description":"After a wonderful time in Hungary Sissi falls extremely ill and must retreat to a Mediterranean climate to rest. The young empress\u2019 mother takes her from Austria to recover in Madeira.","id":"459","runtime":109,"imdbId":"tt0050974","version":118,"lastModified":"1299990365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6d\/4bc907ed017a3c57fe002a6d\/sissi-schicksalsjahre-einer-kaiserin-mid.jpg","studio":"Herzog","genre":"Drama","title":"Sissi - Schicksalsjahre einer Kaiserin","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"4867"} +{"label":"Sonia Sorel","version":15,"id":"6815","lastModified":"1299495676000","name":"Sonia Sorel","type":"Person","_key":"4868"} +{"label":"Klaus Knuth","version":17,"id":"6816","lastModified":"1299495594000","name":"Klaus Knuth","type":"Person","_key":"4869"} +{"label":"Alles auf Zucker","description":"Germany director Dani Levy filmed this comedy about Jewish life in today\u2019s Germany along side the familiar east-west conflict. With it great success this film is a joyful comedy of humor and knowledge.","id":"460","runtime":136,"imdbId":"tt0416331","homepage":"http:\/\/www.zucker-derfilm.de\/","version":83,"lastModified":"1299671861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4bf1014c017a3c32120000cb\/alles-auf-zucker-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Alles auf Zucker","releaseDate":1104969600000,"language":"en","type":"Movie","_key":"4870"} +{"label":"Hannelore Elsner","version":34,"id":"6263","lastModified":"1299493427000","name":"Hannelore Elsner","type":"Person","_key":"4871"} +{"label":"Udo Samel","version":23,"id":"6264","lastModified":"1299493953000","name":"Udo Samel","type":"Person","_key":"4872"} +{"label":"Golda Tencer","version":13,"id":"6265","lastModified":"1299494204000","name":"Golda Tencer","type":"Person","_key":"4873"} +{"label":"Steffen Groth","version":20,"id":"6266","lastModified":"1299493239000","name":"Steffen Groth","type":"Person","_key":"4874"} +{"label":"Anja Franke","version":14,"id":"6267","lastModified":"1299494672000","name":"Anja Franke","type":"Person","_key":"4875"} +{"label":"Sebastian Blomberg","version":19,"id":"6268","lastModified":"1299494438000","name":"Sebastian Blomberg","type":"Person","_key":"4876"} +{"label":"Elena Uhlig","version":19,"id":"6269","lastModified":"1299493923000","name":"Elena Uhlig","type":"Person","_key":"4877"} +{"label":"Rolf Hoppe","version":32,"id":"6270","lastModified":"1299493949000","name":"Rolf Hoppe","type":"Person","_key":"4878"} +{"label":"Inga Busch","version":22,"id":"6271","lastModified":"1299492955000","name":"Inga Busch","type":"Person","_key":"4879"} +{"label":"Antonia Adamik","version":13,"id":"6272","lastModified":"1299495221000","name":"Antonia Adamik","type":"Person","_key":"4880"} +{"label":"Dani Levy","version":22,"id":"6273","lastModified":"1299494642000","name":"Dani Levy","type":"Person","_key":"4881"} +{"label":"Erin Brockovich","description":"A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.","id":"462","runtime":130,"imdbId":"tt0195685","trailer":"http:\/\/www.youtube.com\/watch?v=keZXGaDvK2s","homepage":"http:\/\/www.brockovich.com\/movie.html","version":190,"lastModified":"1299990124000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89b\/4d40927c7b9aa15bb000289b\/erin-brockovich-mid.jpg","studio":"Jersey Films","genre":"Crime","title":"Erin Brockovich","releaseDate":952992000000,"language":"en","tagline":"She brought a small town to its feet and a huge corporation to its knees.","type":"Movie","_key":"4882"} +{"label":"David Brisbin","version":18,"id":"6310","lastModified":"1299748420000","name":"David Brisbin","type":"Person","_key":"4883"} +{"label":"Dawn Didawick","version":17,"id":"6317","lastModified":"1299748420000","name":"Dawn Didawick","type":"Person","_key":"4884"} +{"label":"Valente Rodriguez","version":25,"id":"6321","lastModified":"1299748420000","name":"Valente Rodriguez","type":"Person","_key":"4885"} +{"label":"George Rocky Sullivan","version":17,"id":"6324","lastModified":"1299748420000","name":"George Rocky Sullivan","type":"Person","_key":"4886"} +{"label":"Pat Skipper","version":29,"id":"6326","lastModified":"1299748420000","name":"Pat Skipper","type":"Person","_key":"4887"} +{"label":"Jack Gill","version":24,"id":"6328","lastModified":"1299748420000","name":"Jack Gill","type":"Person","_key":"4888"} +{"label":"Irene Olga L\u00f3pez","version":21,"id":"6329","lastModified":"1299748420000","name":"Irene Olga L\u00f3pez","type":"Person","_key":"4889"} +{"label":"Sin City 3","description":"The third film in the Sin City series based on the comic book series with the same name by Frank Miller. ","id":"463","runtime":0,"version":35,"lastModified":"1299531756000","title":"Sin City 3","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"4890"} +{"label":"S\u00e5 Som I Himmelen","description":"A musical romantic tragedy about a famous composer who moves back to his small hometown after having had heart troubles. His search for a simple everyday life leads him into teaching the local church choir which is not easily accepted by the town yet the choir builds a great love for their teacher.","id":"464","runtime":133,"imdbId":"tt0382330","homepage":"http:\/\/www.wie-im-himmel-derfilm.de\/start.html","version":94,"lastModified":"1299812149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a90\/4bc907ef017a3c57fe002a90\/sa-som-i-himmelen-mid.jpg","studio":"GF Studios AB","genre":"Drama","title":"S\u00e5 Som I Himmelen","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"4891"} +{"label":"Michael Nyqvist","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/611\/4c8dbae15e73d60690000611\/michael-nyqvist-profile.jpg","version":76,"id":"6283","lastModified":"1299491718000","name":"Michael Nyqvist","type":"Person","_key":"4892"} +{"label":"Frida Hallgren","version":12,"id":"6285","lastModified":"1299492914000","name":"Frida Hallgren","type":"Person","_key":"4893"} +{"label":"Helen Sj\u00f6holm","version":12,"id":"6286","lastModified":"1299493833000","name":"Helen Sj\u00f6holm","type":"Person","_key":"4894"} +{"label":"Lennart J\u00e4hkel","version":13,"id":"6287","lastModified":"1299493625000","name":"Lennart J\u00e4hkel","type":"Person","_key":"4895"} +{"label":"Ingela Olsson","version":14,"id":"6288","lastModified":"1299496144000","name":"Ingela Olsson","type":"Person","_key":"4896"} +{"label":"Verena Buratti","version":12,"id":"6289","lastModified":"1299495968000","name":"Verena Buratti","type":"Person","_key":"4897"} +{"label":"Ulla-Britt Norrman-Olsson","version":14,"id":"6290","lastModified":"1299496353000","name":"Ulla-Britt Norrman-Olsson","type":"Person","_key":"4898"} +{"label":"Per Morberg","version":31,"id":"6291","lastModified":"1299496148000","name":"Per Morberg","type":"Person","_key":"4899"} +{"label":"Barbro Kollberg","version":12,"id":"6292","lastModified":"1299494642000","name":"Barbro Kollberg","type":"Person","_key":"4900"} +{"label":"Niklas Falk","version":13,"id":"6294","lastModified":"1299495221000","name":"Niklas Falk","type":"Person","_key":"4901"} +{"label":"Axelle Axell","version":12,"id":"6296","lastModified":"1299495968000","name":"Axelle Axell","type":"Person","_key":"4902"} +{"label":"Lasse Petterson","version":12,"id":"6297","lastModified":"1299495967000","name":"Lasse Petterson","type":"Person","_key":"4903"} +{"label":"Ylva L\u00f6\u00f6f","version":12,"id":"6298","lastModified":"1299495967000","name":"Ylva L\u00f6\u00f6f","type":"Person","_key":"4904"} +{"label":"Mikael Rahm","version":21,"id":"6301","lastModified":"1299493833000","name":"Mikael Rahm","type":"Person","_key":"4905"} +{"label":"Andr\u00e9 Sj\u00f6berg","version":15,"id":"6327","lastModified":"1299496167000","name":"Andr\u00e9 Sj\u00f6berg","type":"Person","_key":"4906"} +{"label":"Kay Pollak","version":14,"id":"6284","lastModified":"1299493834000","name":"Kay Pollak","type":"Person","_key":"4907"} +{"label":"36 Fillette","description":"The French film in 1988 was considered provocative. The story is about a 14 year old girl who\u2019s sexual curiosities lead to date an older man. Female sexuality and puberty are themes in this film.","id":"465","runtime":88,"imdbId":"tt0094596","version":68,"lastModified":"1299912325000","studio":"CB Films","genre":"Drama","title":"36 Fillette","releaseDate":575078400000,"language":"en","type":"Movie","_key":"4908"} +{"label":"Delphine Zentout","version":12,"id":"6293","lastModified":"1299494233000","name":"Delphine Zentout","type":"Person","_key":"4909"} +{"label":"Etienne Chicot","version":33,"id":"6300","lastModified":"1299492301000","name":"Etienne Chicot","type":"Person","_key":"4910"} +{"label":"Olivier Parni\u00e8re","version":12,"id":"6302","lastModified":"1299493586000","name":"Olivier Parni\u00e8re","type":"Person","_key":"4911"} +{"label":"Berta Dom\u00ednguez D.","version":12,"id":"6303","lastModified":"1299495262000","name":"Berta Dom\u00ednguez D.","type":"Person","_key":"4912"} +{"label":"Jean-Fran\u00e7ois St\u00e9venin","version":32,"id":"6304","lastModified":"1299493313000","name":"Jean-Fran\u00e7ois St\u00e9venin","type":"Person","_key":"4913"} +{"label":"Diane Bellego","version":13,"id":"6305","lastModified":"1299495606000","name":"Diane Bellego","type":"Person","_key":"4914"} +{"label":"Adrienne Bonnet","version":12,"id":"6306","lastModified":"1299494670000","name":"Adrienne Bonnet","type":"Person","_key":"4915"} +{"label":"St\u00e9phane Moquet","version":13,"id":"6307","lastModified":"1299495016000","name":"St\u00e9phane Moquet","type":"Person","_key":"4916"} +{"label":"C\u00e9cile Henry","version":13,"id":"6308","lastModified":"1299494670000","name":"C\u00e9cile Henry","type":"Person","_key":"4917"} +{"label":"Michel Scotto di Carlo","version":14,"id":"6309","lastModified":"1299494669000","name":"Michel Scotto di Carlo","type":"Person","_key":"4918"} +{"label":"Anny Chasson","version":12,"id":"6311","lastModified":"1299496010000","name":"Anny Chasson","type":"Person","_key":"4919"} +{"label":"Jean-Claude Binoc","version":14,"id":"6312","lastModified":"1299494669000","name":"Jean-Claude Binoc","type":"Person","_key":"4920"} +{"label":"Catherine Breillat","version":56,"id":"6295","lastModified":"1299492816000","name":"Catherine Breillat","type":"Person","_key":"4921"} +{"label":"Klute","description":"In Klute two different worlds meet: The introverted moralistic detective named Klute, and the over-twisted prostitute Bree. Jane Fonda won an Oscar for Best Actress in 1971 for her portrait of Bree.","id":"466","runtime":114,"imdbId":"tt0067309","trailer":"http:\/\/www.youtube.com\/watch?v=V1av5O1_lts","version":138,"lastModified":"1299913611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a99\/4bc907f2017a3c57fe002a99\/klute-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Klute","releaseDate":46310400000,"language":"en","type":"Movie","_key":"4922"} +{"label":"Alan J. Pakula","version":70,"id":"6349","lastModified":"1299914079000","name":"Alan J. Pakula","type":"Person","_key":"4923"} +{"label":"Jane Fonda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14d\/4bde80c6017a3c35c100014d\/jane-fonda-profile.jpg","version":62,"id":"6352","lastModified":"1299511049000","name":"Jane Fonda","type":"Person","_key":"4924"} +{"label":"Donald Sutherland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ea\/4bce3b0b017a3c24cf0000ea\/donald-sutherland-profile.jpg","version":210,"id":"55636","lastModified":"1299906966000","name":"Donald Sutherland","type":"Person","_key":"4925"} +{"label":"Charles Cioffi","version":19,"id":"6354","lastModified":"1299492679000","name":"Charles Cioffi","type":"Person","_key":"4926"} +{"label":"Roy Scheider","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a0\/4bf19225017a3c32150002a0\/roy-scheider-profile.jpg","version":71,"id":"6355","lastModified":"1299669935000","name":"Roy Scheider","type":"Person","_key":"4927"} +{"label":"Dorothy Tristan","version":14,"id":"6360","lastModified":"1299495023000","name":"Dorothy Tristan","type":"Person","_key":"4928"} +{"label":"Vivian Nathan","version":13,"id":"6442","lastModified":"1299494994000","name":"Vivian Nathan","type":"Person","_key":"4929"} +{"label":"Robert Milli","version":14,"id":"6443","lastModified":"1299495037000","name":"Robert Milli","type":"Person","_key":"4930"} +{"label":"Betty Murray","version":13,"id":"6447","lastModified":"1299494991000","name":"Betty Murray","type":"Person","_key":"4931"} +{"label":"Rita Gam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc5\/4bfe713c017a3c7037000bc5\/rita-gam-profile.jpg","version":21,"id":"120391","lastModified":"1300048528000","name":"Rita Gam","type":"Person","_key":"4932"} +{"label":"The Hole","description":"The Hole is a psycho-thriller about the story of the death of three teenagers in a bunker filmed from the perspective of the one that survived from the group.","id":"467","runtime":102,"imdbId":"tt0242527","version":163,"lastModified":"1299911599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aab\/4bc907f4017a3c57fe002aab\/the-hole-mid.jpg","studio":"Cowboy Films","genre":"Crime","title":"The Hole","releaseDate":987724800000,"language":"en","type":"Movie","_key":"4933"} +{"label":"Nick Hamm","version":21,"id":"6361","lastModified":"1299493510000","name":"Nick Hamm","type":"Person","_key":"4934"} +{"label":"Desmond Harrington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4c3c68297b9aa122500000ad\/desmond-harrington-profile.jpg","version":36,"id":"6365","lastModified":"1299492955000","name":"Desmond Harrington","type":"Person","_key":"4935"} +{"label":"Laurence Fox","version":19,"id":"6366","lastModified":"1299492655000","name":"Laurence Fox","type":"Person","_key":"4936"} +{"label":"Daniel Brocklebank","version":14,"id":"6367","lastModified":"1299494464000","name":"Daniel Brocklebank","type":"Person","_key":"4937"} +{"label":"My Own Private Idaho","description":"My Own Private Idaho is a masterpiece from independent film maker Gus Van Sant, who in this work seamlessly illustrates a series of cultural phenomena. River Phoenix and Keanu Reeves star as street workers in the film that became a cult classic and an icon in Gay Cinema.","id":"468","runtime":104,"imdbId":"tt0102494","trailer":"http:\/\/www.youtube.com\/watch?v=50","version":99,"lastModified":"1299989291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abc\/4bc907f6017a3c57fe002abc\/my-own-private-idaho-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"My Own Private Idaho","releaseDate":687744000000,"language":"en","type":"Movie","_key":"4938"} +{"label":"William Richert","version":21,"id":"6385","lastModified":"1299879936000","name":"William Richert","type":"Person","_key":"4939"} +{"label":"Rodney Harvey","version":14,"id":"6386","lastModified":"1299494299000","name":"Rodney Harvey","type":"Person","_key":"4940"} +{"label":"Chiara Caselli","version":24,"id":"6405","lastModified":"1299927890000","name":"Chiara Caselli","type":"Person","_key":"4941"} +{"label":"Grace Zabriskie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ae\/4caa05d97b9aa17acf0006ae\/grace-zabriskie-profile.jpg","version":62,"id":"6465","lastModified":"1299696082000","name":"Grace Zabriskie","type":"Person","_key":"4942"} +{"label":"Tom Troupe","version":14,"id":"6466","lastModified":"1299494642000","name":"Tom Troupe","type":"Person","_key":"4943"} +{"label":"Stranger Than Paradise","description":"Jim Jarmusch sensibly tells a story about being a foreigner and adapting to an unknown place. The American dream seems like it wont be fulfilled by the three protagonists in the film.","id":"469","runtime":89,"imdbId":"tt0088184","version":154,"lastModified":"1299989079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad4\/4bc907fb017a3c57fe002ad4\/stranger-than-paradise-mid.jpg","studio":"ZDF","genre":"Comedy","title":"Stranger Than Paradise","releaseDate":441763200000,"language":"en","type":"Movie","_key":"4944"} +{"label":"John Lurie","version":27,"id":"6394","lastModified":"1299493410000","name":"John Lurie","type":"Person","_key":"4945"} +{"label":"Eszter Balint","version":12,"id":"6395","lastModified":"1299494642000","name":"Eszter Balint","type":"Person","_key":"4946"} +{"label":"Richard Edson","version":41,"id":"6396","lastModified":"1299753743000","name":"Richard Edson","type":"Person","_key":"4947"} +{"label":"Cecillia Stark","version":12,"id":"6397","lastModified":"1299493833000","name":"Cecillia Stark","type":"Person","_key":"4948"} +{"label":"Danny Rosen","version":12,"id":"6398","lastModified":"1299495966000","name":"Danny Rosen","type":"Person","_key":"4949"} +{"label":"Rammellzee","version":12,"id":"6399","lastModified":"1299495965000","name":"Rammellzee","type":"Person","_key":"4950"} +{"label":"Tom DiCillo","version":22,"id":"6400","lastModified":"1299493218000","name":"Tom DiCillo","type":"Person","_key":"4951"} +{"label":"Rockets Redglare","version":13,"id":"6401","lastModified":"1299494204000","name":"Rockets Redglare","type":"Person","_key":"4952"} +{"label":"Harvey Perr","version":12,"id":"6402","lastModified":"1299495965000","name":"Harvey Perr","type":"Person","_key":"4953"} +{"label":"21 Grams","description":"A freak accident brings together a critically ill mathematician, a grieving mother and a born-again ex-con.","id":"470","runtime":124,"imdbId":"tt0315733","homepage":"http:\/\/www.21-grams.com\/index.php","version":203,"lastModified":"1299988864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4bc907fd017a3c57fe002ae5\/21-grams-mid.jpg","studio":"Focus Features","genre":"Crime","title":"21 Grams","releaseDate":1062720000000,"language":"en","type":"Movie","_key":"4954"} +{"label":"Danny Huston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/169\/4d24ed515e73d626be000169\/danny-huston-profile.jpg","version":94,"id":"6413","lastModified":"1299894744000","name":"Danny Huston","type":"Person","_key":"4955"} +{"label":"Carly Nahon","version":14,"id":"6830","lastModified":"1299493575000","name":"Carly Nahon","type":"Person","_key":"4956"} +{"label":"Claire Pakis","version":14,"id":"6831","lastModified":"1299493092000","name":"Claire Pakis","type":"Person","_key":"4957"} +{"label":"Melissa Leo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4c3d15105e73d6035e00000d\/melissa-leo-profile.jpg","version":65,"birthday":"-293418000000","id":"6832","birthplace":"New York City, New York, USA","lastModified":"1299962161000","name":"Melissa Leo","type":"Person","_key":"4958"} +{"label":"Bandyta","description":"Bastard depicts the distress of needy children and the love of a nurse and a hard boiled criminal. A film from Polish director Maciej Dejczer and actor Til Schweiger\u2019s first international film.","id":"471","runtime":102,"imdbId":"tt0129774","version":77,"lastModified":"1299912197000","studio":"Telewizja Polska S.A.","genre":"Drama","title":"Bandyta","releaseDate":852076800000,"language":"en","type":"Movie","_key":"4959"} +{"label":"Maciej Dejczer","version":12,"id":"6414","lastModified":"1299493852000","name":"Maciej Dejczer","type":"Person","_key":"4960"} +{"label":"Polly Walker","version":28,"id":"6416","lastModified":"1299493467000","name":"Polly Walker","type":"Person","_key":"4961"} +{"label":"Ida Jablonska","version":13,"id":"6419","lastModified":"1299493250000","name":"Ida Jablonska","type":"Person","_key":"4962"} +{"label":"Bartek Pieniazek","version":12,"id":"6420","lastModified":"1299494669000","name":"Bartek Pieniazek","type":"Person","_key":"4963"} +{"label":"Wojciech Brzezinski","version":12,"id":"6421","lastModified":"1299494233000","name":"Wojciech Brzezinski","type":"Person","_key":"4964"} +{"label":"Pi","description":"The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a leak in the connection between numbers and reality and thus believes he can predict the future.","id":"473","runtime":84,"imdbId":"tt0138704","trailer":"http:\/\/www.youtube.com\/watch?v=cPn1hYY7D_Q","homepage":"http:\/\/www.pithemovie.com\/","version":148,"lastModified":"1299988614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34b\/4c9545bf5e73d63a7600034b\/473-mid.jpg","studio":"Artisan Entertainment","genre":"Drama","title":"Pi","releaseDate":900028800000,"language":"en","type":"Movie","_key":"4965"} +{"label":"Darren Aronofsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e5\/4c973a8c7b9aa10d590004e5\/darren-aronofsky-profile.jpg","version":84,"id":"6431","lastModified":"1299965299000","name":"Darren Aronofsky","type":"Person","_key":"4966"} +{"label":"Sean Gullette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c6\/4d426a455e73d653850006c6\/sean-gullette-profile.jpg","version":25,"id":"6432","lastModified":"1299492657000","name":"Sean Gullette","type":"Person","_key":"4967"} +{"label":"Ben Shenkman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/294\/4c95d2287b9aa10d58000294\/ben-shenkman-profile.jpg","version":34,"id":"6437","lastModified":"1299609580000","name":"Ben Shenkman","type":"Person","_key":"4968"} +{"label":"Stephen Pearlman","version":28,"id":"6438","lastModified":"1299542842000","name":"Stephen Pearlman","type":"Person","_key":"4969"} +{"label":"Samia Shoaib","version":15,"id":"6439","lastModified":"1299495964000","name":"Samia Shoaib","type":"Person","_key":"4970"} +{"label":"Kristyn Mae-Anne Lao","version":14,"id":"6440","lastModified":"1299495964000","name":"Kristyn Mae-Anne Lao","type":"Person","_key":"4971"} +{"label":"Espher Lao Nieves","version":14,"id":"6441","lastModified":"1299495964000","name":"Espher Lao Nieves","type":"Person","_key":"4972"} +{"label":"Bonnie and Clyde","description":"Bonnie and Clyde is based on the true stories of the gangster pair Bonnie Parker and Clyde Parker who in the 1930\u2019s began robbing banks in all the main US cities until they were eventually killed. The film takes on the aesthetical movement of New Hollywood.","id":"475","runtime":111,"imdbId":"tt0061418","trailer":"http:\/\/www.youtube.com\/watch?v=YNrSGutBOlE","version":280,"lastModified":"1299988395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0c\/4bc90802017a3c57fe002b0c\/bonnie-and-clyde-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Bonnie and Clyde","releaseDate":-76118400000,"language":"en","tagline":"They\u2019re young...they\u2019re in love...and they kill people.","type":"Movie","_key":"4973"} +{"label":"Arthur Penn","version":34,"id":"6448","lastModified":"1299928368000","name":"Arthur Penn","type":"Person","_key":"4974"} +{"label":"Warren Beatty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d2\/4bef0797017a3c458d0002d2\/warren-beatty-profile.jpg","biography":"It might have been easy to write off American actor Warren Beatty as merely the younger brother of film star Shirley MacLaine, were it not for the fact that Beatty was a profoundly gifted performer whose creative range extended beyond mere acting. After studying at Northwestern University and with acting coach Stella_Adler, Beatty was being groomed for stardom almost before he was of voting age, cast in prominent supporting roles in TV dramas and attaining the recurring part of the insufferable ","version":66,"id":"6449","lastModified":"1299491803000","name":"Warren Beatty","type":"Person","_key":"4975"} +{"label":"Faye Dunaway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f91\/4c7409ed7b9aa13ab9000f91\/faye-dunaway-profile.jpg","version":85,"id":"6450","lastModified":"1300003387000","name":"Faye Dunaway","type":"Person","_key":"4976"} +{"label":"Michael J. Pollard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25c\/4caca0077b9aa1152c00025c\/michael-j-pollard-profile.jpg","version":36,"id":"6451","lastModified":"1299493072000","name":"Michael J. Pollard","type":"Person","_key":"4977"} +{"label":"Estelle Parsons","version":17,"id":"6461","lastModified":"1299494641000","name":"Estelle Parsons","type":"Person","_key":"4978"} +{"label":"Denver Pyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ff\/4ca9f8b87b9aa17acb0006ff\/denver-pyle-profile.jpg","version":19,"id":"6462","lastModified":"1299495127000","name":"Denver Pyle","type":"Person","_key":"4979"} +{"label":"Dub Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/339\/4cc9a02b7b9aa16b9d000339\/dub-taylor-profile.jpg","version":24,"id":"6463","lastModified":"1299495814000","name":"Dub Taylor","type":"Person","_key":"4980"} +{"label":"Evans Evans","version":16,"id":"6464","lastModified":"1299495052000","name":"Evans Evans","type":"Person","_key":"4981"} +{"label":"Mabel Cavitt","version":14,"id":"6798","lastModified":"1299493575000","name":"Mabel Cavitt","type":"Person","_key":"4982"} +{"label":"Drugstore Cowboy","description":"Bob and his friends Dianne, Rick and Nadine have been drug addicts for years and live from one high to the next. Gus Van Sant attempts to show an intimate look into the lives of heroin addicts with his film Drugstore Cowboy. ","id":"476","runtime":100,"imdbId":"tt0097240","trailer":"http:\/\/www.youtube.com\/watch?v=5_Rs8c08hM8","version":165,"lastModified":"1299988077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b29\/4bc90805017a3c57fe002b29\/drugstore-cowboy-mid.jpg","studio":"Avenue Pictures Productions","genre":"Crime","title":"Drugstore Cowboy","releaseDate":623635200000,"language":"en","type":"Movie","_key":"4983"} +{"label":"Kelly Lynch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/102\/4c8f7f797b9aa17687000102\/kelly-lynch-profile.jpg","version":46,"id":"6473","lastModified":"1299860010000","name":"Kelly Lynch","type":"Person","_key":"4984"} +{"label":"James LeGros","version":33,"id":"6474","lastModified":"1299492546000","name":"James LeGros","type":"Person","_key":"4985"} +{"label":"Heather Graham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/103\/4bd5a08a017a3c2e78000103\/heather-graham-profile.jpg","biography":"Heather Joan Graham is an American actress and fashion model. She became known for her performance in Gus Van Sant's 1989 film Drugstore Cowboy and her role as Rollergirl in the 1997 film Boogie Nights directed by Paul Thomas Anderson. She has been part of two ensemble casts that have earned Screen Actors Guild Awards nominations for Outstanding Performance by a Cast (Boogie Nights and Bobby).\n\nHeather Graham was born in Milwaukee, Wisconsin, to a family of Scottish descent. Her family relocated","version":112,"birthday":"2415600000","id":"69122","birthplace":"Milwaukee, Wisconsin, USA","lastModified":"1300041149000","name":"Heather Graham","type":"Person","_key":"4986"} +{"label":"Max Perlich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5fd\/4c6e70155e73d65f7b0005fd\/max-perlich-profile.jpg","version":31,"id":"7268","lastModified":"1299492545000","name":"Max Perlich","type":"Person","_key":"4987"} +{"label":"George Catalano","version":15,"id":"7269","lastModified":"1299495686000","name":"George Catalano","type":"Person","_key":"4988"} +{"label":"William S. Burroughs","version":22,"id":"6471","lastModified":"1299493485000","name":"William S. Burroughs","type":"Person","_key":"4989"} +{"label":"Shaft","description":"New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.","id":"479","runtime":99,"imdbId":"tt0162650","trailer":"http:\/\/www.youtube.com\/watch?v=trOuMvapW8E","version":156,"lastModified":"1299987915000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3b\/4bc9080a017a3c57fe002b3b\/shaft-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Shaft","releaseDate":961113600000,"language":"en","tagline":"Still the man, any questions?","type":"Movie","_key":"4990"} +{"label":"John Singleton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cb2\/4cfcf1a75e73d6299c003cb2\/john-singleton-profile.jpg","biography":"\n\t<\/title>\n\t<meta name=\"GENERATOR\" content=\"OpenOffice.org 3.2 (Unix)\">\n\t<style type=\"text\/css\">\n\t<!--\n\t\t@page { margin: 2cm }\n\t\tP { margin-bottom: 0.21cm }\n\t-->\n\t<\/style>\n\n\n\u200bJohn Daniel Singleton (born\nJanuary 6, 1968) is an American film director, screenwriter,\nand producer. A native of South Los Angeles, many of his\nfilms consider the implications of inner-city violence like the\ncritically accl","version":58,"id":"6482","lastModified":"1299492108000","name":"John Singleton","type":"Person","_key":"4991"} +{"label":"Busta Rhymes","version":27,"id":"6485","lastModified":"1299493044000","name":"Busta Rhymes","type":"Person","_key":"4992"} +{"label":"Dan Hedaya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a3\/4caf32dd7b9aa121370001a3\/dan-hedaya-profile.jpg","version":110,"id":"6486","lastModified":"1300031271000","name":"Dan Hedaya","type":"Person","_key":"4993"} +{"label":"Richard Roundtree","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/faa\/4c1096ca017a3c33d9000faa\/richard-roundtree-profile.jpg","version":55,"id":"6487","lastModified":"1299491972000","name":"Richard Roundtree","type":"Person","_key":"4994"} +{"label":"Philip Bosco","version":32,"id":"6541","lastModified":"1299493398000","name":"Philip Bosco","type":"Person","_key":"4995"} +{"label":"Vanessa Williams","version":49,"id":"27011","lastModified":"1299946960000","name":"Vanessa Williams","type":"Person","_key":"4996"} +{"label":"Monsoon Wedding","description":"From an exciting Indian wedding comes a relationship from two different times not only showing the modern but also the traditional. Different characters and stories interact with each other in director Mira Nair film where he used an Indian-American production to illustrate these themes modern day Indians are very familiar with.","id":"480","runtime":114,"imdbId":"tt0265343","homepage":"http:\/\/monsoonwedding.indiatimes.com\/","version":188,"lastModified":"1299987754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4bc9080b017a3c57fe002b49\/monsoon-wedding-mid.jpg","studio":"Mirabai Films, Inc.","genre":"Comedy","title":"Monsoon Wedding","releaseDate":999129600000,"language":"en","type":"Movie","_key":"4997"} +{"label":"Mira Nair","version":37,"id":"6495","lastModified":"1299492017000","name":"Mira Nair","type":"Person","_key":"4998"} +{"label":"Naseeruddin Shah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e9\/4d34b6815e73d6334d0095e9\/naseeruddin-shah-profile.jpg","version":55,"birthday":"-613875600000","id":"6497","birthplace":"Barabanki, Uttar Pradesh, India","lastModified":"1299602831000","name":"Naseeruddin Shah","type":"Person","_key":"4999"} +{"label":"Lillete Dubey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46e\/4d32bb8c7b9aa177db00546e\/lillete-dubey-profile.jpg","version":21,"id":"6498","lastModified":"1299493510000","name":"Lillete Dubey","type":"Person","_key":"5000"} +{"label":"Vijay Raaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b48\/4d2158f25e73d66b30002b48\/vijay-raaz-profile.jpg","version":18,"id":"6500","lastModified":"1299493914000","name":"Vijay Raaz","type":"Person","_key":"5001"} +{"label":"Tillotama Shome","version":13,"id":"6501","lastModified":"1299495688000","name":"Tillotama Shome","type":"Person","_key":"5002"} +{"label":"Vasundhara Das","version":12,"id":"6502","lastModified":"1299495261000","name":"Vasundhara Das","type":"Person","_key":"5003"} +{"label":"Parvin Dabas","version":14,"id":"6503","lastModified":"1299495663000","name":"Parvin Dabas","type":"Person","_key":"5004"} +{"label":"Sameer Arya","version":12,"id":"6515","lastModified":"1299496009000","name":"Sameer Arya","type":"Person","_key":"5005"} +{"label":"Neha Dubey","version":12,"id":"6516","lastModified":"1299496009000","name":"Neha Dubey","type":"Person","_key":"5006"} +{"label":"Kemaya Kidwai","version":12,"id":"6517","lastModified":"1299494668000","name":"Kemaya Kidwai","type":"Person","_key":"5007"} +{"label":"Ishaan Nair","version":12,"id":"6518","lastModified":"1299496009000","name":"Ishaan Nair","type":"Person","_key":"5008"} +{"label":"Randeep Hooda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/da6\/4d223deb7b9aa12823000da6\/randeep-hooda-profile.jpg","version":16,"id":"6519","lastModified":"1299494528000","name":"Randeep Hooda","type":"Person","_key":"5009"} +{"label":"Soni Razdan","version":12,"id":"6520","lastModified":"1299496009000","name":"Soni Razdan","type":"Person","_key":"5010"} +{"label":"Shefali Shetty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd0\/4d35645c5e73d63349009fd0\/shefali-shetty-profile.jpg","version":22,"id":"120430","lastModified":"1299504145000","name":"Shefali Shetty","type":"Person","_key":"5011"} +{"label":"7 v\u00edrgenes","description":"Tano is 16-years-old and is already sitting in jail. In 48 hours he\u2019s a free man and off to the wedding of his brother. In the two days he recounts his neighborhood in a section of Sevilla.","id":"481","runtime":86,"imdbId":"tt0461894","trailer":"http:\/\/www.youtube.com\/watch?v=t7-Ll62_080&p","homepage":"http:\/\/www.7virgenes.com\/","version":68,"lastModified":"1299813747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b57\/4bc9080c017a3c57fe002b57\/7-virgenes-mid.jpg","studio":"Tesela, P.C.","genre":"Drama","title":"7 v\u00edrgenes","releaseDate":1099958400000,"language":"en","type":"Movie","_key":"5012"} +{"label":"Alberto Rodr\u00edguez","version":13,"id":"6521","lastModified":"1299493092000","name":"Alberto Rodr\u00edguez","type":"Person","_key":"5013"} +{"label":"Juan Jos\u00e9 Ballesta","version":16,"id":"6523","lastModified":"1299495346000","name":"Juan Jos\u00e9 Ballesta","type":"Person","_key":"5014"} +{"label":"Jes\u00fas Carroza","version":12,"id":"6534","lastModified":"1299495219000","name":"Jes\u00fas Carroza","type":"Person","_key":"5015"} +{"label":"Antonio Dechent","version":18,"id":"6535","lastModified":"1299493295000","name":"Antonio Dechent","type":"Person","_key":"5016"} +{"label":"Loles Le\u00f3n","version":20,"id":"6536","lastModified":"1299927907000","name":"Loles Le\u00f3n","type":"Person","_key":"5017"} +{"label":"Muriel","version":12,"id":"6537","lastModified":"1299495219000","name":"Muriel","type":"Person","_key":"5018"} +{"label":"Iride Barroso","version":14,"id":"6538","lastModified":"1299494988000","name":"Iride Barroso","type":"Person","_key":"5019"} +{"label":"Alba Rodr\u00edguez","version":12,"id":"6539","lastModified":"1299493575000","name":"Alba Rodr\u00edguez","type":"Person","_key":"5020"} +{"label":"Vicente Romero","version":12,"id":"6540","lastModified":"1299494641000","name":"Vicente Romero","type":"Person","_key":"5021"} +{"label":"Shaft","description":"A cool dark skinned detective involved in a case in Harlem. A trivial story that in the beginning of the sparked a revolution in American movies for black actors to play the lead rolls.","id":"482","runtime":100,"imdbId":"tt0067741","trailer":"http:\/\/www.youtube.com\/watch?v=NiCB2isZcRM","version":142,"lastModified":"1299912700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b60\/4bc9080d017a3c57fe002b60\/shaft-mid.jpg","genre":"Action","title":"Shaft","releaseDate":47260800000,"language":"en","tagline":"Shaft\u2019s his name. Shaft\u2019s his game.","type":"Movie","_key":"5022"} +{"label":"Gordon Parks","version":19,"id":"6558","lastModified":"1299492978000","name":"Gordon Parks","type":"Person","_key":"5023"} +{"label":"Moses Gunn","version":33,"id":"6561","lastModified":"1299492723000","name":"Moses Gunn","type":"Person","_key":"5024"} +{"label":"Christopher St. John","version":15,"id":"6562","lastModified":"1299493218000","name":"Christopher St. John","type":"Person","_key":"5025"} +{"label":"Gwenn Mitchell","version":15,"id":"6563","lastModified":"1299495658000","name":"Gwenn Mitchell","type":"Person","_key":"5026"} +{"label":"Lawrence Pressman","version":24,"id":"6564","lastModified":"1299845229000","name":"Lawrence Pressman","type":"Person","_key":"5027"} +{"label":"Victor Arnold","version":19,"id":"6565","lastModified":"1299494986000","name":"Victor Arnold","type":"Person","_key":"5028"} +{"label":"Sherri Brewer","version":15,"id":"6566","lastModified":"1299495659000","name":"Sherri Brewer","type":"Person","_key":"5029"} +{"label":"Rex Robbins","version":15,"id":"6567","lastModified":"1299496520000","name":"Rex Robbins","type":"Person","_key":"5030"} +{"label":"Wild at Heart","description":"The couple Sailor and Lula overcome all obstacles in David Lynch\u2019s love story. This road movie is about two little love cats as they run through some most unusual and surreal events and violence in an attempt to not be caught by the mob.","id":"483","runtime":124,"imdbId":"tt0100935","trailer":"http:\/\/www.youtube.com\/watch?v=QCQwumNQL9E","version":205,"lastModified":"1300035290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e9\/4d169f0f5e73d608340087e9\/wild-at-heart-mid.jpg","studio":"Columbia TriStar","genre":"Comedy","title":"Wild at Heart","releaseDate":650851200000,"language":"en","type":"Movie","_key":"5031"} +{"label":"Diane Ladd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/000\/4c740a767b9aa13ab7001000\/diane-ladd-profile.jpg","version":46,"id":"6587","lastModified":"1299492845000","name":"Diane Ladd","type":"Person","_key":"5032"} +{"label":"Isabella Rossellini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ac\/4bdb6382017a3c5d8b0001ac\/isabella-rossellini-profile.jpg","version":79,"id":"6588","lastModified":"1299671671000","name":"Isabella Rossellini","type":"Person","_key":"5033"} +{"label":"William Morgan Sheppard","version":28,"id":"6632","lastModified":"1299494450000","name":"William Morgan Sheppard","type":"Person","_key":"5034"} +{"label":"Sherilyn Fenn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ac\/4c864dda7b9aa1545d0000ac\/sherilyn-fenn-profile.jpg","version":31,"id":"6681","lastModified":"1299968241000","name":"Sherilyn Fenn","type":"Person","_key":"5035"} +{"label":"Glenn Walker Harris Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ee\/4d4c34c15e73d617bd0015ee\/glenn-walker-harris-jr-profile.jpg","version":19,"id":"7089","lastModified":"1299494697000","name":"Glenn Walker Harris Jr.","type":"Person","_key":"5036"} +{"label":"Sheryl Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c2\/4d3936457b9aa161450007c2\/sheryl-lee-profile.jpg","version":32,"id":"6726","lastModified":"1299492993000","name":"Sheryl Lee","type":"Person","_key":"5037"} +{"label":"The African Queen","description":"The first World War in the middle of Africa\u2019s nowhere. The missionary Rose Sayer convinces the captain of the African Queen to go down a river in order to capture a German ironclad carrying homemade torpedoes. ","id":"488","runtime":105,"imdbId":"tt0043265","trailer":"http:\/\/www.youtube.com\/watch?v=2677","version":221,"lastModified":"1299912848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b84\/4bc90814017a3c57fe002b84\/the-african-queen-mid.jpg","studio":"United Artists","genre":"Adventure","title":"The African Queen","releaseDate":-563760000000,"language":"en","tagline":"The greatest adventure a man ever lived...with a woman!","type":"Movie","_key":"5038"} +{"label":"John Huston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06d\/4bd817b9017a3c1c0900006d\/john-huston-profile.jpg","version":157,"id":"6593","lastModified":"1299909691000","name":"John Huston","type":"Person","_key":"5039"} +{"label":"Katharine Hepburn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86e\/4c6ea1017b9aa13ab700086e\/katharine-hepburn-profile.jpg","version":85,"id":"6598","lastModified":"1299926918000","name":"Katharine Hepburn","type":"Person","_key":"5040"} +{"label":"Robert Morley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35d\/4c4d92df7b9aa1237f00035d\/robert-morley-profile.jpg","version":41,"id":"6599","lastModified":"1299670506000","name":"Robert Morley","type":"Person","_key":"5041"} +{"label":"Peter Bull","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b2\/4c4d92777b9aa123800003b2\/peter-bull-profile.jpg","version":24,"id":"6600","lastModified":"1299670507000","name":"Peter Bull","type":"Person","_key":"5042"} +{"label":"Theodore Bikel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/362\/4c4d97407b9aa12381000362\/theodore-bikel-profile.jpg","version":31,"id":"6609","lastModified":"1299909582000","name":"Theodore Bikel","type":"Person","_key":"5043"} +{"label":"Walter Gotell","version":75,"id":"6610","lastModified":"1299670508000","name":"Walter Gotell","type":"Person","_key":"5044"} +{"label":"Peter Swanwick","version":17,"id":"6611","lastModified":"1299670508000","name":"Peter Swanwick","type":"Person","_key":"5045"} +{"label":"Richard Marner","version":17,"id":"6612","lastModified":"1299670508000","name":"Richard Marner","type":"Person","_key":"5046"} +{"label":"Good Will Hunting","description":"Gus van Sant\u2019s film tells the story of a mathematically gifted young man, named Will Hunting, who\u2019s on the search for his identity while ruthlessly eluding his fellow friends. His first introspective look at himself is achieved after meeting with the therapist Sean Maguire.","id":"489","runtime":122,"imdbId":"tt0119217","version":241,"lastModified":"1299986971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba6\/4bc9081a017a3c57fe002ba6\/good-will-hunting-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Good Will Hunting","releaseDate":881020800000,"language":"en","tagline":"Some people can never believe in themselves, until someone believes in them.","type":"Movie","_key":"5047"} +{"label":"Minnie Driver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/212\/4cf2f74f5e73d62384000212\/minnie-driver-profile.jpg","version":80,"id":"6613","lastModified":"1299947011000","name":"Minnie Driver","type":"Person","_key":"5048"} +{"label":"Cole Hauser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b09\/4cfcf2185e73d6299e003b09\/cole-hauser-profile.jpg","version":76,"id":"6614","lastModified":"1299704810000","name":"Cole Hauser","type":"Person","_key":"5049"} +{"label":"John Mighton","version":18,"id":"6615","lastModified":"1299494287000","name":"John Mighton","type":"Person","_key":"5050"} +{"label":"Rachel Majorowski","version":18,"id":"6616","lastModified":"1299492936000","name":"Rachel Majorowski","type":"Person","_key":"5051"} +{"label":"Colleen McCauley","version":18,"id":"6617","lastModified":"1299492936000","name":"Colleen McCauley","type":"Person","_key":"5052"} +{"label":"Matt Mercier","version":18,"id":"6618","lastModified":"1299492935000","name":"Matt Mercier","type":"Person","_key":"5053"} +{"label":"Ralph St. George","version":18,"id":"6619","lastModified":"1299492644000","name":"Ralph St. George","type":"Person","_key":"5054"} +{"label":"Rob Lynds","version":18,"id":"6620","lastModified":"1299492521000","name":"Rob Lynds","type":"Person","_key":"5055"} +{"label":"Dan Washington","version":18,"id":"6621","lastModified":"1299493355000","name":"Dan Washington","type":"Person","_key":"5056"} +{"label":"Derrick Bridgeman","version":18,"id":"6622","lastModified":"1299493356000","name":"Derrick Bridgeman","type":"Person","_key":"5057"} +{"label":"Vik Sahay","version":25,"id":"6623","lastModified":"1299493185000","name":"Vik Sahay","type":"Person","_key":"5058"} +{"label":"The Seventh Seal","description":"Ingmar Bergmann\u2019s masterpiece film about confronting death. Death comes to a knight upon his arrival from battle and attempts to take him away. The knight challenges Death to a chess match as the people around them are haunted by the plague. The Seventh Seal comes from a riddle about crusaders who arrive home after a few years to find their people affected by the plague.","id":"490","runtime":92,"imdbId":"tt0050976","trailer":"http:\/\/www.youtube.com\/watch?v=928","version":135,"lastModified":"1299912672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/025\/4c150cef7b9aa105bf000025\/det-sjunde-inseglet-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Drama","title":"The Seventh Seal","releaseDate":-406252800000,"language":"en","type":"Movie","_key":"5059"} +{"label":"Ingmar Bergman","version":139,"id":"6648","lastModified":"1299968310000","name":"Ingmar Bergman","type":"Person","_key":"5060"} +{"label":"Gunnar Bj\u00f6rnstrand","version":28,"id":"6649","lastModified":"1299492992000","name":"Gunnar Bj\u00f6rnstrand","type":"Person","_key":"5061"} +{"label":"Bengt Ekerot","version":15,"id":"6656","lastModified":"1299493486000","name":"Bengt Ekerot","type":"Person","_key":"5062"} +{"label":"Nils Poppe","version":15,"id":"6658","lastModified":"1299493237000","name":"Nils Poppe","type":"Person","_key":"5063"} +{"label":"Bibi Andersson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/472\/4ce1e64b5e73d60f6f000472\/bibi-andersson-profile.jpg","biography":"Her artistic dreams came early in life and were further supported by her older sister <a href=\"http:\/\/www.imdb.com\/name\/nm0027676\/\">Gerd Andersson<\/a> who became a ballet dancer at the Royal Opera and made her acting <a href=\"http:\/\/www.imdb.com\/search\/name?bio=debut\">debut<\/a> in 1951. Bibi, on the other side, had to make do with bit parts and commercials. She <a href=\"http:\/\/www.imdb.com\/search\/name?bio=debut\">debut<\/a>ed in <a href=\"http:\/\/www.imdb.com\/title\/tt0045714\/\">Dum-Bom<\/a> (1953), pl","version":47,"birthday":"-1077411600000","id":"6657","birthplace":"Kungsholmen, Stockholm, Stockholms l\u00e4n, Sweden","lastModified":"1299968389000","name":"Bibi Andersson","type":"Person","_key":"5064"} +{"label":"Inga Gill","version":15,"id":"6659","lastModified":"1299494500000","name":"Inga Gill","type":"Person","_key":"5065"} +{"label":"Maud Hansson","version":15,"id":"6660","lastModified":"1299495682000","name":"Maud Hansson","type":"Person","_key":"5066"} +{"label":"Inga Landgr\u00e9","version":16,"id":"6661","lastModified":"1299495672000","name":"Inga Landgr\u00e9","type":"Person","_key":"5067"} +{"label":"Gunnel Lindblom","version":34,"id":"6662","lastModified":"1299492022000","name":"Gunnel Lindblom","type":"Person","_key":"5068"} +{"label":"Bertil Anderberg","version":15,"id":"6663","lastModified":"1299494438000","name":"Bertil Anderberg","type":"Person","_key":"5069"} +{"label":"Anders Ek","version":15,"id":"6664","lastModified":"1299494969000","name":"Anders Ek","type":"Person","_key":"5070"} +{"label":"\u00c5ke Fridell","version":23,"id":"6665","lastModified":"1299494543000","name":"\u00c5ke Fridell","type":"Person","_key":"5071"} +{"label":"Gunnar Olsson","version":15,"id":"6666","lastModified":"1299494964000","name":"Gunnar Olsson","type":"Person","_key":"5072"} +{"label":"Erik Strandmark","version":15,"id":"6667","lastModified":"1299494389000","name":"Erik Strandmark","type":"Person","_key":"5073"} +{"label":"Br\u00fcder ohne Heimat","description":"Two trouble-causing brothers, who in the second generation after World War II Germany live, are in the center of this German made for TV movie. The movie makes a subject out of their everyday lives and the helpless attempt for them to build a normal life.","id":"491","runtime":90,"imdbId":"tt0301343","version":37,"lastModified":"1299531760000","studio":"Arte","genre":"Drama","title":"Br\u00fcder ohne Heimat","releaseDate":1025740800000,"language":"en","type":"Movie","_key":"5074"} +{"label":"Christian Wagner","version":99,"id":"6668","lastModified":"1299916177000","name":"Christian Wagner","type":"Person","_key":"5075"} +{"label":"Ioannis Tsialas","version":13,"id":"6670","lastModified":"1299493739000","name":"Ioannis Tsialas","type":"Person","_key":"5076"} +{"label":"Toni Osmani","version":14,"id":"6671","lastModified":"1299493721000","name":"Toni Osmani","type":"Person","_key":"5077"} +{"label":"Barbara Rudnik","version":20,"id":"6672","lastModified":"1299493461000","name":"Barbara Rudnik","type":"Person","_key":"5078"} +{"label":"Renate Becker","version":14,"id":"6673","lastModified":"1299494986000","name":"Renate Becker","type":"Person","_key":"5079"} +{"label":"Julia Dietze","version":19,"id":"6674","lastModified":"1299492706000","name":"Julia Dietze","type":"Person","_key":"5080"} +{"label":"Being John Malkovich","description":"Spike Jonze\u2019s debut feature film is a love story mix of comedy and fantasy. The story is about an unsuccessful puppeteer named Craig, who one day at work finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters it\u2019s mad and controlling world of overtaking another human body.","id":"492","runtime":112,"imdbId":"tt0120601","version":197,"lastModified":"1299986520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a6\/4ce0025b7b9aa168b10000a6\/being-john-malkovich-mid.jpg","studio":"Gramercy Pictures","genre":"Comedy","title":"Being John Malkovich","releaseDate":936230400000,"language":"en","tagline":"Ever wanted to be someone else? Now you can.","type":"Movie","_key":"5081"} +{"label":"Spike Jonze","version":67,"id":"5953","lastModified":"1299491534000","name":"Spike Jonze","type":"Person","_key":"5082"} +{"label":"John Malkovich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4c24c9ce7b9aa1446d0000c2\/john-malkovich-profile.jpg","biography":"<FONT size=3><FONT face=Calibri><B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>John Gavin Malkovich<\/SPAN><\/B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN> (December 9, 1953) was born in Christopher, Illinois. Malkovich is an American actor, producer, and director. Over the last 25 years, Malkovich has appeare","version":218,"birthday":"-506912400000","id":"6949","lastModified":"1299880456000","name":"John Malkovich","type":"Person","_key":"5083"} +{"label":"Cameron Diaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/71b\/4d370b075e73d6334d00d71b\/cameron-diaz-profile.jpg","biography":"<span style='font-size:10.0pt;line-height:115%;font-family:\r\n\"Arial\",\"sans-serif\"'>\u0414\u0435\u0442\u0441\u0442\u0432\u043e\n\r\n\n\r\n\u0412\u0441\u0451 \u0441\u0432\u043e\u0451 \u0434\u0435\u0442\u0441\u0442\u0432\u043e \u041a\u0430\u043c\u0435\u0440\u043e\u043d \u043f\u0440\u043e\u0432\u0435\u043b\u0430 \u0432 \u0433\u043e\u0440\u043e\u0434\u0435 \u0421\u0430\u043d-\u0414\u0438\u0435\u0433\u043e, \u041a\u0430\u043b\u0438\u0444\u043e\u0440\u043d\u0438\u044f, \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u043e\r\n\u0441\u0432\u043e\u0438\u043c\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c\u0438 \u0441\u043c\u0435\u0448\u0430\u043d\u043d\u044b\u0445 \u043a\u0440\u043e\u0432\u0435\u0439, \u043c\u0430\u0442\u0435\u0440\u044c\u044e \u2014 \u043d\u0430\u043f\u043e\u043b\u043e\u0432\u0438\u043d\u0443 \u043d\u0435\u043c\u043a\u043e\u0439, \u043d\u0430\u043f\u043e\u043b\u043e\u0432\u0438\u043d\u0443\r\n\u0430\u043d\u0433\u043b\u0438\u0447\u0430\u043d\u043a\u043e\u0439 \u0438 \u043e\u0442\u0446\u043e\u043c \u2014 \u043a\u0443\u0431\u0438\u043d\u0446\u0435\u043c, \u0440\u043e\u0434\u0438\u0432\u0448\u0438\u043c\u0441\u044f \u0432 \u0421\u0428\u0410. \u0418 \u041a\u0430\u043c\u0435\u0440\u043e\u043d, \u0438 \u0435\u0451 \u0441\u0442\u0430\u0440\u0448\u0430\u044f\r\n\u0441\u0435\u0441\u0442\u0440\u0430 \u0431\u044b\u043b\u0438 \u0434\u0430\u043b\u0435\u043a\u043e \u043d\u0435 \u043f\u0430\u0439-\u0434\u0435\u0432\u043e\u0447\u043a\u0430\u043c\u0438, \u0441\u043b\u0443\u0448\u0430\u043b\u0438 \u0442\u044f\u0436\u0451\u043b\u0443\u044e \u043c\u0443\u0437\u044b\u043a\u0443, \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u043b\u0438 \u0432\u0441\u0451\r\n\u0432\u0440\u0435\u043c\u044f \u0441 \u043c\u0435\u0441\u0442\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u043d\u044f\u043c\u0438 \u0438 \u043b\u0435\u0433\u043a\u043e \u043c\u043e\u0433\u043b\u0438 \u0434\u0430\u0442\u044c \u043f\u043e \u0444\u0438\u0437\u0438\u043e\u043d\u043e\u043c\u0438\u0438 \u043e\u0431\u0438\u0434\u0447\u0438\u043a\u0443, \u043d\u0435\u0432\u0437\u0438\u0440\u0430\u044f \u043d\u0430\r\n\u043f\u043e\u043b \u0438 \u0432\u043e\u0437\u0440\u0430\u0441\u0442. \u041c\u0443\u0437\u044b","version":213,"birthday":"83977200000","id":"6941","birthplace":"San Diego, California, USA","lastModified":"1300031487000","name":"Cameron Diaz","type":"Person","_key":"5084"} +{"label":"Octavia Spencer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/113\/4c4241e35e73d60f3a000113\/octavia-spencer-profile.jpg","version":45,"id":"6944","lastModified":"1299906497000","name":"Octavia Spencer","type":"Person","_key":"5085"} +{"label":"Eric Weinstein","version":19,"id":"6942","lastModified":"1299493031000","name":"Eric Weinstein","type":"Person","_key":"5086"} +{"label":"Madison Lanc","version":18,"id":"6943","lastModified":"1299493584000","name":"Madison Lanc","type":"Person","_key":"5087"} +{"label":"K.K. Dodds","version":32,"id":"6945","lastModified":"1299492352000","name":"K.K. Dodds","type":"Person","_key":"5088"} +{"label":"Reginald C. Hayes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e1\/4ceeac8e5e73d653170000e1\/reginald-c-hayes-profile.jpg","version":19,"id":"6946","lastModified":"1299492751000","name":"Reginald C. Hayes","type":"Person","_key":"5089"} +{"label":"Byrne Piven","version":18,"id":"6947","lastModified":"1299492772000","name":"Byrne Piven","type":"Person","_key":"5090"} +{"label":"Judith Wetzell","version":18,"id":"6948","lastModified":"1299492918000","name":"Judith Wetzell","type":"Person","_key":"5091"} +{"label":"Kevin Carroll","version":21,"id":"6950","lastModified":"1299492631000","name":"Kevin Carroll","type":"Person","_key":"5092"} +{"label":"W. Earl Brown","version":29,"id":"6951","lastModified":"1299493101000","name":"W. Earl Brown","type":"Person","_key":"5093"} +{"label":"Charlie Sheen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/168\/4bd86bcd017a3c1c02000168\/charlie-sheen-profile.jpg","version":178,"id":"6952","lastModified":"1299753742000","name":"Charlie Sheen","type":"Person","_key":"5094"} +{"label":"Gerald Emerick","version":19,"id":"6953","lastModified":"1299493486000","name":"Gerald Emerick","type":"Person","_key":"5095"} +{"label":"Bill M. Ryusaki","version":18,"id":"6954","lastModified":"1299493100000","name":"Bill M. Ryusaki","type":"Person","_key":"5096"} +{"label":"David Fincher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4d0bdb675e73d6370e00018b\/david-fincher-profile.jpg","version":138,"birthday":"-231814800000","id":"7467","birthplace":"Denver, Colorado, USA","lastModified":"1299582422000","name":"David Fincher","type":"Person","_key":"5097"} +{"label":"Shaft's Big Score!","description":"John Shaft is back as the lady-loved black detective cop on the search for the murderer of a client.","id":"493","runtime":104,"imdbId":"tt0069257","version":123,"lastModified":"1299912379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0b\/4c108fb8017a3c7e87000d0b\/shaft-s-big-score-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Shaft's Big Score!","releaseDate":77673600000,"language":"en","type":"Movie","_key":"5098"} +{"label":"Drew Bundini Brown","version":13,"id":"6768","lastModified":"1299493833000","name":"Drew Bundini Brown","type":"Person","_key":"5099"} +{"label":"Joseph Mascolo","version":21,"id":"6769","lastModified":"1299493339000","name":"Joseph Mascolo","type":"Person","_key":"5100"} +{"label":"Kathy Imrie","version":13,"id":"6770","lastModified":"1299495964000","name":"Kathy Imrie","type":"Person","_key":"5101"} +{"label":"Wally Taylor","version":21,"id":"6771","lastModified":"1299493340000","name":"Wally Taylor","type":"Person","_key":"5102"} +{"label":"Rosalind Miles","version":15,"id":"6773","lastModified":"1299496432000","name":"Rosalind Miles","type":"Person","_key":"5103"} +{"label":"Joe Santos","version":21,"id":"6774","lastModified":"1299494548000","name":"Joe Santos","type":"Person","_key":"5104"} +{"label":"Angelo Nazzo","version":13,"id":"6775","lastModified":"1299495219000","name":"Angelo Nazzo","type":"Person","_key":"5105"} +{"label":"Shaft in Africa","description":"The third installment of in the Shaft film trilogy starring the lovable black bad-ass detective John Shaft. This time Shaft heads to Africa to help shut down people selling immigrants to Europe.","id":"494","runtime":112,"imdbId":"tt0070679","trailer":"http:\/\/www.youtube.com\/watch?v=3GnDPnl2H-4","version":116,"lastModified":"1299911295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcf\/4bc90821017a3c57fe002bcf\/shaft-in-africa-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Shaft in Africa","releaseDate":108864000000,"language":"en","type":"Movie","_key":"5106"} +{"label":"John Guillermin","version":27,"id":"6778","lastModified":"1299492059000","name":"John Guillermin","type":"Person","_key":"5107"} +{"label":"Vonetta McGee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4c3f25877b9aa13dc60000c8\/vonetta-mcgee-profile.jpg","version":18,"id":"6780","lastModified":"1299533357000","name":"Vonetta McGee","type":"Person","_key":"5108"} +{"label":"Neda Arneric","version":14,"id":"6781","lastModified":"1299494960000","name":"Neda Arneric","type":"Person","_key":"5109"} +{"label":"Debebe Eshetu","version":13,"id":"6782","lastModified":"1299495635000","name":"Debebe Eshetu","type":"Person","_key":"5110"} +{"label":"Spiros Foc\u00e1s","version":30,"id":"6783","lastModified":"1299543724000","name":"Spiros Foc\u00e1s","type":"Person","_key":"5111"} +{"label":"Jacques Herlin","version":36,"id":"6784","lastModified":"1299492819000","name":"Jacques Herlin","type":"Person","_key":"5112"} +{"label":"Jho Jhenkins","version":13,"id":"6785","lastModified":"1299496519000","name":"Jho Jhenkins","type":"Person","_key":"5113"} +{"label":"Willie Jonah","version":13,"id":"6786","lastModified":"1299496528000","name":"Willie Jonah","type":"Person","_key":"5114"} +{"label":"Adolfo Lastretti","version":16,"id":"6787","lastModified":"1299495662000","name":"Adolfo Lastretti","type":"Person","_key":"5115"} +{"label":"Shaft Movie Series","description":"The Shaft film trilogy starring the lovable black bad-ass detective John Shaft. The films were a revolution in the film industry for using black actors in lead roles.","id":"495","title":"Shaft Movie Series","language":"en","lastModified":"1299808564000","version":48,"type":"Movie","_key":"5116"} +{"label":"Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan","description":"A pretend Kazakhstan reporter Borat visits the United States to learn the cultural differences between his homeland and the US. The film is a clever mix of documentation and comedy. Sacha Baron Cohen won a Golden Globe for his acting.","id":"496","runtime":82,"imdbId":"tt0443453","trailer":"http:\/\/www.youtube.com\/watch?v=WH2CABcffAo","homepage":"http:\/\/www.boratmovie.com\/","version":117,"lastModified":"1299910819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01c\/4c19d4a77b9aa1158100001c\/borat-cultural-learnings-of-america-for-make-benefit-glorious-nation-of-kazakhstan-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan","releaseDate":1162339200000,"language":"en","type":"Movie","_key":"5117"} +{"label":"Larry Charles","version":32,"id":"6767","lastModified":"1299492724000","name":"Larry Charles","type":"Person","_key":"5118"} +{"label":"Sacha Baron Cohen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a0c\/4cf96c017b9aa15c8e000a0c\/sacha-baron-cohen-profile.jpg","version":73,"id":"6730","lastModified":"1299491421000","name":"Sacha Baron Cohen","type":"Person","_key":"5119"} +{"label":"Ken Davitian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/afa\/4cf3cdc35e73d62382000afa\/ken-davitian-profile.jpg","version":28,"id":"6734","lastModified":"1299492122000","name":"Ken Davitian","type":"Person","_key":"5120"} +{"label":"Luenell","version":22,"id":"6735","lastModified":"1299492072000","name":"Luenell","type":"Person","_key":"5121"} +{"label":"Pamela Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c8\/4cc9384a7b9aa16b9d0001c8\/pamela-anderson-profile.jpg","biography":"Pamela Denise Anderson was born on July 1, 1967 in Ladysmith, British \nColumbia in Canada at 4:08 PST. During her childhood, she moved to the \ncity of Vancouver with her parents, <a href=\"http:\/\/www.imdb.com\/name\/nm1996257\/\">Barry Anderson<\/a> and <a href=\"http:\/\/www.imdb.com\/name\/nm1991746\/\">Carol Anderson<\/a>.\n As a teenager, she went to Highland Secondary School. Pamela was first \n\"discovered\" at a British Columbia Lions football game, when her image \nwas shown on the stadium screen. The fans","version":49,"birthday":"-79059600000","id":"6736","birthplace":"Ladysmith, British Columbia, Canada","lastModified":"1299491809000","name":"Pamela Anderson","type":"Person","_key":"5122"} +{"label":"Heart Of Gold","description":"The trilogy from Lars von Trier named after a myth of the same name. ","id":"498","title":"Heart Of Gold","language":"en","lastModified":"1300045843000","version":270,"type":"Movie","_key":"5123"} +{"label":"Cl\u00e9o from 5 to 7","description":"Cl\u00e9o is a pop singer who wanders around Paris while she awaits her biopsy results in fear she may have cancer. As Cl\u00e9o readies herself to meet with her doctor at 7 o'clock, she meets with several friends and strangers while trying to grapple with mortality. Sensing indifference from those nearest to her, she finds herself questioning the doll-like image people have of her and is overcome by a feeling of solitude and helplessness. She finally finds some comfort in the company of stranger she meet","id":"499","runtime":90,"imdbId":"tt0055852","version":51,"lastModified":"1299531762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/745\/4d11b6157b9aa11488000745\/cl-o-de-cinq-sept-mid.jpg","studio":"Rome Paris Films","genre":"Comedy","title":"Cl\u00e9o from 5 to 7","releaseDate":-243820800000,"language":"en","type":"Movie","_key":"5124"} +{"label":"Agn\u00e8s Varda","version":53,"id":"6817","lastModified":"1299492053000","name":"Agn\u00e8s Varda","type":"Person","_key":"5125"} +{"label":"Corinne Marchand","version":19,"id":"7565","lastModified":"1300040167000","name":"Corinne Marchand","type":"Person","_key":"5126"} +{"label":"Antoine Bourseiller","version":17,"id":"7566","lastModified":"1299494944000","name":"Antoine Bourseiller","type":"Person","_key":"5127"} +{"label":"Dominique Davray","version":15,"id":"7568","lastModified":"1299494944000","name":"Dominique Davray","type":"Person","_key":"5128"} +{"label":"Reservoir Dogs","description":"A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.","id":"500","runtime":99,"imdbId":"tt0105236","trailer":"http:\/\/www.youtube.com\/watch?v=OnqOZqMvDCM","version":272,"lastModified":"1299985281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/229\/4d1bba265e73d6084200c229\/reservoir-dogs-mid.jpg","studio":"Miramax Films","genre":"Action","title":"Reservoir Dogs","releaseDate":719798400000,"language":"en","tagline":"Every dog has his day.","type":"Movie","_key":"5129"} +{"label":"Lawrence Tierney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4bd81293017a3c1c00000089\/lawrence-tierney-profile.jpg","version":43,"id":"6937","lastModified":"1299492901000","name":"Lawrence Tierney","type":"Person","_key":"5130"} +{"label":"Randy Brooks","version":30,"birthday":"-628650000000","id":"6938","birthplace":"New York City, New York, USA","lastModified":"1299610656000","name":"Randy Brooks","type":"Person","_key":"5131"} +{"label":"Edward Bunker","version":28,"id":"6939","lastModified":"1299492638000","name":"Edward Bunker","type":"Person","_key":"5132"} +{"label":"Rich Turner","version":23,"id":"46346","lastModified":"1299493798000","name":"Rich Turner","type":"Person","_key":"5133"} +{"label":"Grizzly Man","description":"Werner Herzog\u2019s documentary film about the \u201cGrizzly Man\u201d Timothy Treadwell and what the thirteen summers in a National Park in Alaska were like in one man\u2019s attempt to protect the grizzly bears. The film is full of unique images and a look into the spirit of a man who sacrificed himself for nature.","id":"501","runtime":103,"imdbId":"tt0427312","trailer":"http:\/\/www.youtube.com\/watch?v=2630","version":101,"lastModified":"1299985075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f3\/4d004dd35e73d6299a0062f3\/grizzly-man-mid.jpg","studio":"Discovery Docs","genre":"Documentary","title":"Grizzly Man","releaseDate":1123804800000,"language":"en","type":"Movie","_key":"5134"} +{"label":"Werner Herzog","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4bf03056017a3c554f00003d\/werner-herzog-profile.jpg","version":133,"id":"6818","lastModified":"1299900302000","name":"Werner Herzog","type":"Person","_key":"5135"} +{"label":"Timothy Treadwell","version":13,"id":"6819","lastModified":"1299494052000","name":"Timothy Treadwell","type":"Person","_key":"5136"} +{"label":"Kathleen Parker","version":13,"id":"6820","lastModified":"1299493450000","name":"Kathleen Parker","type":"Person","_key":"5137"} +{"label":"Warren Queeney","version":13,"id":"6821","lastModified":"1299494483000","name":"Warren Queeney","type":"Person","_key":"5138"} +{"label":"Willy Fulton","version":13,"id":"6822","lastModified":"1299494926000","name":"Willy Fulton","type":"Person","_key":"5139"} +{"label":"Sam Egli","version":13,"id":"6823","lastModified":"1299495559000","name":"Sam Egli","type":"Person","_key":"5140"} +{"label":"Fail-Safe","description":"Because of a technical defect an American bomber team mistakenly orders the destruction of Moscow. The President of the United States has but little time to prevent an atomic catastrophe from occurring. Director Sidney Lumet gives an atmospheric vision of the future with a Cold War backdrop.","id":"502","runtime":112,"imdbId":"tt0058083","trailer":"http:\/\/www.youtube.com\/watch?v=oicYUhgff7Q","version":131,"lastModified":"1299911699000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c60\/4bc90836017a3c57fe002c60\/fail-safe-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Fail-Safe","releaseDate":-165196800000,"language":"en","type":"Movie","_key":"5141"} +{"label":"Walter Matthau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4c333f2f5e73d64965000128\/walter-matthau-profile.jpg","version":76,"birthday":"-1554253200000","id":"6837","birthplace":"New York City, New York, USA","lastModified":"1299948801000","name":"Walter Matthau","type":"Person","_key":"5142"} +{"label":"Fritz Weaver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a4\/4c5976f17b9aa151f40004a4\/fritz-weaver-profile.jpg","version":23,"id":"6839","lastModified":"1299752331000","name":"Fritz Weaver","type":"Person","_key":"5143"} +{"label":"Larry Hagman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/573\/4ca9d13a5e73d643ed000573\/larry-hagman-profile.jpg","version":25,"id":"6840","lastModified":"1299493416000","name":"Larry Hagman","type":"Person","_key":"5144"} +{"label":"Frank Overton","version":15,"id":"6838","lastModified":"1299914079000","name":"Frank Overton","type":"Person","_key":"5145"} +{"label":"Dan O'Herlihy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/255\/4ca4a1597b9aa16ed8000255\/dan-o-herlihy-profile.jpg","version":40,"id":"6836","lastModified":"1299755380000","name":"Dan O'Herlihy","type":"Person","_key":"5146"} +{"label":"William Hansen","version":14,"id":"6841","lastModified":"1299496020000","name":"William Hansen","type":"Person","_key":"5147"} +{"label":"Russell Hardie","version":13,"id":"6842","lastModified":"1299496518000","name":"Russell Hardie","type":"Person","_key":"5148"} +{"label":"Janet Ward","version":13,"id":"6843","lastModified":"1299496148000","name":"Janet Ward","type":"Person","_key":"5149"} +{"label":"Dom DeLuise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ca4\/4c0e0dd9017a3c7e8f000ca4\/dom-deluise-profile.jpg","version":72,"id":"6844","lastModified":"1299926816000","name":"Dom DeLuise","type":"Person","_key":"5150"} +{"label":"Russell Collins","version":22,"id":"40203","lastModified":"1299495837000","name":"Russell Collins","type":"Person","_key":"5151"} +{"label":"Sorrell Booke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/baa\/4bfe7c1d017a3c702a000baa\/sorrell-booke-profile.jpg","version":27,"id":"40191","lastModified":"1299495435000","name":"Sorrell Booke","type":"Person","_key":"5152"} +{"label":"Nancy Berg","version":16,"id":"129672","lastModified":"1299512436000","name":"Nancy Berg","type":"Person","_key":"5153"} +{"label":"John Connell","version":16,"id":"118185","lastModified":"1299513248000","name":"John Connell","type":"Person","_key":"5154"} +{"label":"Frank Simpson","version":19,"id":"81523","lastModified":"1299505046000","name":"Frank Simpson","type":"Person","_key":"5155"} +{"label":"Hildy Parks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/799\/4c6e9c837b9aa13ab4000799\/hildy-parks-profile.jpg","version":18,"id":"129669","lastModified":"1299508464000","name":"Hildy Parks","type":"Person","_key":"5156"} +{"label":"Poseidon","description":"A Cross-Atlantic ship is traveling in the Atlantic when a giant wave flips it over as the passengers begin a dramatic fight for their lives. Catastrophe film from Wolfgang Petersen from 2006.","id":"503","runtime":99,"imdbId":"tt0409182","trailer":"http:\/\/www.youtube.com\/watch?v=mev0axDtHUQ","homepage":"http:\/\/www2.warnerbros.com\/poseidon\/","version":213,"lastModified":"1299984729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c71\/4bc9083a017a3c57fe002c71\/poseidon-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Poseidon","releaseDate":1147392000000,"language":"en","tagline":"Mayday","type":"Movie","_key":"5157"} +{"label":"Kurt Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bc\/4bd70ddb017a3c21ee0000bc\/kurt-russell-profile.jpg","version":137,"id":"6856","lastModified":"1299937799000","name":"Kurt Russell","type":"Person","_key":"5158"} +{"label":"Jacinda Barrett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd6\/4d27c7225e73d626a8001dd6\/jacinda-barrett-profile.jpg","version":36,"id":"6857","lastModified":"1299491776000","name":"Jacinda Barrett","type":"Person","_key":"5159"} +{"label":"Mike Vogel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3aa\/4bfa6eea017a3c702b0003aa\/mike-vogel-profile.jpg","version":61,"id":"6858","lastModified":"1299491757000","name":"Mike Vogel","type":"Person","_key":"5160"} +{"label":"M\u00eda Maestro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cf\/4c7a88e07b9aa176bf0001cf\/mia-maestro-profile.jpg","version":32,"id":"6859","lastModified":"1299492107000","name":"M\u00eda Maestro","type":"Person","_key":"5161"} +{"label":"Jimmy Bennett","version":59,"id":"6860","lastModified":"1299780039000","name":"Jimmy Bennett","type":"Person","_key":"5162"} +{"label":"Andre Braugher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4c8f11e55e73d614940000ba\/andre-braugher-profile.jpg","version":70,"id":"6861","lastModified":"1300021339000","name":"Andre Braugher","type":"Person","_key":"5163"} +{"label":"Freddy Rodr\u00edguez","version":43,"id":"6862","lastModified":"1299670792000","name":"Freddy Rodr\u00edguez","type":"Person","_key":"5164"} +{"label":"Kevin Dillon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d7\/4d5d3d855e73d60c620010d7\/kevin-dillon-profile.jpg","version":41,"id":"6863","lastModified":"1299753743000","name":"Kevin Dillon","type":"Person","_key":"5165"} +{"label":"Kirk B.R. Woller","version":26,"id":"6864","lastModified":"1299492450000","name":"Kirk B.R. Woller","type":"Person","_key":"5166"} +{"label":"Monster","description":"Aileen Wuornos is an emotionally scarred highway hooker who shoots a sadistic trick who rapes her and ultimately becomes America's first female serial killer. The film, based on a true story, centers more on the surrounding circumstances than on the murders.","id":"504","runtime":110,"imdbId":"tt0340855","trailer":"http:\/\/www.youtube.com\/watch?v=vq70brIQP40","homepage":"http:\/\/www.monster-derfilm.de\/","version":238,"lastModified":"1299984522000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7a\/4bc9083b017a3c57fe002c7a\/monster-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Monster","releaseDate":1068940800000,"language":"en","tagline":"Based on a true story.","type":"Movie","_key":"5167"} +{"label":"Patty Jenkins","version":17,"id":"6884","lastModified":"1299494203000","name":"Patty Jenkins","type":"Person","_key":"5168"} +{"label":"Charlize Theron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4bd409c5017a3c7fac00005b\/charlize-theron-profile.jpg","biography":"Charlize Theron (born August 7, 1975) is a South African actress, film producer, and former fashion model.<br><br>She rose to fame in the late 1990s following her roles in 2 Days in the Valley, Mighty Joe Young, The Devil's Advocate, and The Cider House Rules. She received critical acclaim and an Academy Award for her portrayal of serial killer Aileen Wuornos in the film Monster, for which she became the first African to win an Academy Award in a major acting category. She received another Acade","version":155,"birthday":"176598000000","id":"6885","birthplace":"Benoni, South Africa","lastModified":"1300015699000","name":"Charlize Theron","type":"Person","_key":"5169"} +{"label":"Christina Ricci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29e\/4bf43629017a3c6d9200029e\/christina-ricci-profile.jpg","biography":"Precocious, outspoken child-teen starlet of the 1990s, Christina Ricci is the youngest of four children of a lawyer father and realtor mother. She made her screen debut at the age of 9 in Mermaids (1990), in which she worked with Cher. Her breakthrough adult role was in The Ice Storm (1997), in which she plays a nymphet who skillfully seduces two brothers. She worked with Johnny Depp and Casper Van Dien in the Tim Burton film Sleepy Hollow (1999). Candid and controversial, as well as a highly sk","version":149,"birthday":"319158000000","id":"6886","birthplace":"Santa Monica, California, USA","lastModified":"1299913711000","name":"Christina Ricci","type":"Person","_key":"5170"} +{"label":"Bruce Dern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f9f\/4c7416177b9aa13ab9000f9f\/bruce-dern-profile.jpg","version":99,"id":"6905","lastModified":"1299955049000","name":"Bruce Dern","type":"Person","_key":"5171"} +{"label":"Lee Tergesen","version":16,"id":"6906","lastModified":"1299493574000","name":"Lee Tergesen","type":"Person","_key":"5172"} +{"label":"Annie Corley","version":30,"id":"6907","lastModified":"1299492201000","name":"Annie Corley","type":"Person","_key":"5173"} +{"label":"Marc Macaulay","version":31,"id":"6908","lastModified":"1299492202000","name":"Marc Macaulay","type":"Person","_key":"5174"} +{"label":"Stephan Jones","version":14,"id":"6909","lastModified":"1299495963000","name":"Stephan Jones","type":"Person","_key":"5175"} +{"label":"T. Robert Pigott","version":14,"id":"6910","lastModified":"1299495963000","name":"T. Robert Pigott","type":"Person","_key":"5176"} +{"label":"Catherine Mangan","version":16,"id":"95749","lastModified":"1299501949000","name":"Catherine Mangan","type":"Person","_key":"5177"} +{"label":"Johnny Handsome","description":"A career criminal who has been deformed since birth is given a new face by a kindly doctor and paroled from prison. It appears that he has gone straight, but he is really planning his revenge on the man who killed his mentor and sent him to prison. ","id":"505","runtime":94,"imdbId":"tt0097626","trailer":"http:\/\/www.youtube.com\/watch?v=QMtHZGn1Ka4","version":144,"lastModified":"1300002120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4c658dfa7b9aa1775a00071a\/johnny-handsome-mid.jpg","studio":"Carolco Pictures Inc","genre":"Crime","title":"Johnny Handsome","releaseDate":621561600000,"language":"en","type":"Movie","_key":"5178"} +{"label":"Scott Wilson","version":38,"id":"6914","lastModified":"1300002026000","name":"Scott Wilson","type":"Person","_key":"5179"} +{"label":"David Schramm","version":18,"id":"6915","lastModified":"1300002026000","name":"David Schramm","type":"Person","_key":"5180"} +{"label":"Peter Jason","version":42,"id":"6916","lastModified":"1300002026000","name":"Peter Jason","type":"Person","_key":"5181"} +{"label":"Yvonne Bryceland","version":16,"id":"6917","lastModified":"1300002026000","name":"Yvonne Bryceland","type":"Person","_key":"5182"} +{"label":"Marnie","description":"Marnie is a beautiful kleptomaniac who\u2019s in love with the business man Mark Rutland. Marnie who is a compulsive thief is being watched by her new boss Mark who suspects her of stealing from him and thus decides to blackmail her in the most unusual way. A psychological thriller from Alfred Hitchcock based on a novel of the same name by Winston Graham.","id":"506","runtime":130,"imdbId":"tt0058329","version":96,"lastModified":"1299911004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c99\/4bc9083f017a3c57fe002c99\/marnie-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Marnie","releaseDate":-171849600000,"language":"en","type":"Movie","_key":"5183"} +{"label":"Tippi Hedren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a0\/4ca0c45b7b9aa1578c0004a0\/tippi-hedren-profile.jpg","version":43,"id":"6929","lastModified":"1299492152000","name":"Tippi Hedren","type":"Person","_key":"5184"} +{"label":"Martin Gabel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc4\/4bfe6f05017a3c702b000cc4\/martin-gabel-profile.jpg","version":25,"id":"6931","lastModified":"1299493649000","name":"Martin Gabel","type":"Person","_key":"5185"} +{"label":"Louise Latham","version":20,"id":"6932","lastModified":"1299494347000","name":"Louise Latham","type":"Person","_key":"5186"} +{"label":"Alan Napier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03a\/4c7c0f4d7b9aa1097600003a\/alan-napier-profile.jpg","version":43,"id":"6933","lastModified":"1299670315000","name":"Alan Napier","type":"Person","_key":"5187"} +{"label":"Killing Zoe","description":"The debut film from Tarantino\u2019s buddy Roger Avery is an forcefully explicit statement. An American safe cracker comes to Paris with a woman to rob a bank that unsurprisingly gets them involved in a chase.","id":"507","runtime":96,"imdbId":"tt0110265","version":151,"lastModified":"1299911042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cd\/4d1d57915e73d66b340001cd\/killing-zoe-mid.jpg","studio":"October Films","genre":"Crime","title":"Killing Zoe","releaseDate":777254400000,"language":"en","type":"Movie","_key":"5188"} +{"label":"Roger Avary","version":62,"id":"8297","lastModified":"1300053944000","name":"Roger Avary","type":"Person","_key":"5189"} +{"label":"Eric Stoltz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/615\/4bfacf9e017a3c702d000615\/eric-stoltz-profile.jpg","version":67,"birthday":"-260499600000","id":"7036","birthplace":"Whittier, California, USA","lastModified":"1300053944000","name":"Eric Stoltz","type":"Person","_key":"5190"} +{"label":"Jean-Hugues Anglade","version":34,"id":"7037","lastModified":"1300026984000","name":"Jean-Hugues Anglade","type":"Person","_key":"5191"} +{"label":"Tai Thai","version":13,"id":"7038","lastModified":"1299494479000","name":"Tai Thai","type":"Person","_key":"5192"} +{"label":"Bruce Ramsay","version":22,"id":"7039","lastModified":"1299492996000","name":"Bruce Ramsay","type":"Person","_key":"5193"} +{"label":"Kario Salem","version":14,"id":"7040","lastModified":"1299494245000","name":"Kario Salem","type":"Person","_key":"5194"} +{"label":"Salvator Xuereb","version":14,"id":"7041","lastModified":"1299495383000","name":"Salvator Xuereb","type":"Person","_key":"5195"} +{"label":"Gary Kemp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d1f\/4cf150f65e73d61926000d1f\/gary-kemp-profile.jpg","version":18,"id":"7042","lastModified":"1299493291000","name":"Gary Kemp","type":"Person","_key":"5196"} +{"label":"Martin Raymond","version":13,"id":"7043","lastModified":"1299494986000","name":"Martin Raymond","type":"Person","_key":"5197"} +{"label":"Eric Pascal Chaltiel","version":12,"id":"7044","lastModified":"1299496027000","name":"Eric Pascal Chaltiel","type":"Person","_key":"5198"} +{"label":"Cecilia Peck","version":15,"id":"7046","lastModified":"1299494946000","name":"Cecilia Peck","type":"Person","_key":"5199"} +{"label":"Love Actually","description":"A British romantic comedy which follows seemingly unrelated people as their lives begin to intertwine while they fall in - and out - of love. Affections grow and develop as Christmas draws near.","id":"508","runtime":135,"imdbId":"tt0314331","homepage":"http:\/\/www.loveactually.com\/","version":175,"lastModified":"1299983802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc0\/4bc90845017a3c57fe002cc0\/love-actually-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Love Actually","releaseDate":1062892800000,"language":"en","tagline":"The ultimate romantic comedy.","type":"Movie","_key":"5200"} +{"label":"Richard Curtis","version":81,"id":"7018","lastModified":"1299899487000","name":"Richard Curtis","type":"Person","_key":"5201"} +{"label":"Gregor Fisher","version":17,"id":"7053","lastModified":"1299492914000","name":"Gregor Fisher","type":"Person","_key":"5202"} +{"label":"Rory MacGregor","version":17,"id":"7054","lastModified":"1299492769000","name":"Rory MacGregor","type":"Person","_key":"5203"} +{"label":"Sienna Guillory","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9da\/4d6fbc195e73d65a170009da\/sienna-guillory-profile.jpg","version":75,"birthday":"164156400000","id":"7055","birthplace":"Kettering, England, UK","lastModified":"1299490934000","name":"Sienna Guillory","type":"Person","_key":"5204"} +{"label":"Emma Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/729\/4c0829fa017a3c3519000729\/emma-thompson-profile.jpg","version":141,"birthday":"-338173200000","id":"7056","birthplace":"Paddington, London, England","lastModified":"1299899487000","name":"Emma Thompson","type":"Person","_key":"5205"} +{"label":"Lulu Popplewell","version":16,"id":"7057","lastModified":"1299493323000","name":"Lulu Popplewell","type":"Person","_key":"5206"} +{"label":"Kris Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d2\/4cf1d81c5e73d61e3a0003d2\/kris-marshall-profile.jpg","version":35,"id":"7058","lastModified":"1299494063000","name":"Kris Marshall","type":"Person","_key":"5207"} +{"label":"Heike Makatsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4cee85715e73d653140000b1\/heike-makatsch-profile.jpg","biography":"Makatsch was born in D\u00fcsseldorf, Germany, the daughter of former German national ice hockey team goaltender Rainer Makatsch. She spent several months in New Mexico in 1988 in an effort to improve her English, and later studied politics and sociology at the University of D\u00fcsseldorf for four semesters, which was followed by an apprenticeship as a dressmaker until 1994. \nHer television career started in 1993, when she was hired by music channel VIVA, hosting shows such as Interaktiv and Heikes Haus","version":57,"birthday":"50886000000","id":"7059","birthplace":"D\u00fcsseldorf, Germany","lastModified":"1299491747000","name":"Heike Makatsch","type":"Person","_key":"5208"} +{"label":"Martin Freeman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/304\/4cef51dd5e73d66250000304\/martin-freeman-profile.jpg","version":61,"id":"7060","lastModified":"1299491447000","name":"Martin Freeman","type":"Person","_key":"5209"} +{"label":"Joanna Page","version":23,"id":"7061","lastModified":"1299493832000","name":"Joanna Page","type":"Person","_key":"5210"} +{"label":"Andrew Lincoln","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bff\/4cf13d115e73d61926000bff\/andrew-lincoln-profile.jpg","version":34,"id":"7062","lastModified":"1299903067000","name":"Andrew Lincoln","type":"Person","_key":"5211"} +{"label":"Nina Sosanya","version":24,"id":"7063","lastModified":"1299494056000","name":"Nina Sosanya","type":"Person","_key":"5212"} +{"label":"Notting Hill","description":"The British comedy from director Roger Michell tells the love story between a famous actress and a simple book seller from London. A look into the attempt for famous people to have a personal and private life and the ramifications that follow. Nominated for three Golden Globes in 2000.","id":"509","runtime":124,"imdbId":"tt0125439","trailer":"http:\/\/www.youtube.com\/watch?v=2325","homepage":"http:\/\/www.notting-hill.com\/","version":142,"lastModified":"1299983616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd2\/4bc90847017a3c57fe002cd2\/notting-hill-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Comedy","title":"Notting Hill","releaseDate":926553600000,"language":"en","type":"Movie","_key":"5213"} +{"label":"Roger Michell","version":42,"id":"7017","lastModified":"1299767695000","name":"Roger Michell","type":"Person","_key":"5214"} +{"label":"Richard McCabe","version":23,"id":"7025","lastModified":"1299493235000","name":"Richard McCabe","type":"Person","_key":"5215"} +{"label":"James Dreyfus","version":16,"id":"7027","lastModified":"1299496517000","name":"James Dreyfus","type":"Person","_key":"5216"} +{"label":"Dylan Moran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73b\/4ceff5c65e73d6625000073b\/dylan-moran-profile.jpg","version":46,"id":"7028","lastModified":"1299491239000","name":"Dylan Moran","type":"Person","_key":"5217"} +{"label":"Roger Frost","version":16,"id":"7029","lastModified":"1299495653000","name":"Roger Frost","type":"Person","_key":"5218"} +{"label":"Henry Goodman","version":18,"id":"7030","lastModified":"1299493737000","name":"Henry Goodman","type":"Person","_key":"5219"} +{"label":"Julian Rhind-Tutt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9b\/4cf156cb5e73d61925000d9b\/julian-rhind-tutt-profile.jpg","version":31,"id":"7031","lastModified":"1299493531000","name":"Julian Rhind-Tutt","type":"Person","_key":"5220"} +{"label":"Lorelei King","version":20,"id":"7032","lastModified":"1299670757000","name":"Lorelei King","type":"Person","_key":"5221"} +{"label":"Emma Chambers","version":15,"id":"7446","lastModified":"1299495653000","name":"Emma Chambers","type":"Person","_key":"5222"} +{"label":"Alec Baldwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4c1347367b9aa102fa00004f\/alec-baldwin-profile.jpg","biography":"<p>Raven haired, suavely handsome and prolific New York-born actor Alec \nBaldwin is easily the best known of the four Baldwin brothers appearing \nin the cinema (for the record, the others are <a href=\"http:\/\/www.imdb.com\/name\/nm0000286\/\">Stephen Baldwin<\/a>, <a href=\"http:\/\/www.imdb.com\/name\/nm0000287\/\">William Baldwin<\/a> and <a href=\"http:\/\/www.imdb.com\/name\/nm0000838\/\">Daniel Baldwin<\/a>).\n\nAlec burst onto the TV scene in the early 1980s with appearances in several series, including <a href=\"","version":191,"birthday":"-370746000000","id":"7447","birthplace":"Amityville, New York, USA","lastModified":"1299765443000","name":"Alec Baldwin","type":"Person","_key":"5223"} +{"label":"One Flew Over The Cuckoo's Nest","description":"While serving time for insanity at a state mental hospital, implacable rabble-rouser Randle Patrick McMurphy inspires his fellow patients to rebel against the authoritarian rule of head nurse Mildred Ratched.","id":"510","runtime":133,"imdbId":"tt0073486","trailer":"http:\/\/www.youtube.com\/watch?v=851","version":250,"lastModified":"1299983459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/869\/4d500d687b9aa13ab800b869\/one-flew-over-the-cuckoo-s-nest-mid.jpg","studio":"Fantasy Films","genre":"Drama","title":"One Flew Over The Cuckoo's Nest","releaseDate":185587200000,"language":"en","tagline":"If he's crazy, what does that make you?","type":"Movie","_key":"5224"} +{"label":"Louise Fletcher","version":59,"id":"7071","lastModified":"1299950641000","name":"Louise Fletcher","type":"Person","_key":"5225"} +{"label":"William Redfield","version":29,"id":"7072","lastModified":"1299950641000","name":"William Redfield","type":"Person","_key":"5226"} +{"label":"Michael Berryman","version":45,"id":"7073","lastModified":"1299950641000","name":"Michael Berryman","type":"Person","_key":"5227"} +{"label":"Peter Brocco","version":33,"id":"7074","lastModified":"1299950641000","name":"Peter Brocco","type":"Person","_key":"5228"} +{"label":"Dean R. Brooks","version":18,"id":"7075","lastModified":"1299950641000","name":"Dean R. Brooks","type":"Person","_key":"5229"} +{"label":"Alonzo Brown","version":20,"id":"7076","lastModified":"1299950641000","name":"Alonzo Brown","type":"Person","_key":"5230"} +{"label":"Scatman Crothers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16b\/4c5188a97b9aa13d4a00016b\/scatman-crothers-profile.jpg","version":46,"id":"7077","lastModified":"1299950641000","name":"Scatman Crothers","type":"Person","_key":"5231"} +{"label":"Mwako Cumbuka","version":18,"id":"7078","lastModified":"1299950641000","name":"Mwako Cumbuka","type":"Person","_key":"5232"} +{"label":"William Duell","version":22,"id":"7079","lastModified":"1299950641000","name":"William Duell","type":"Person","_key":"5233"} +{"label":"Josip Elic","version":19,"id":"7080","lastModified":"1299950641000","name":"Josip Elic","type":"Person","_key":"5234"} +{"label":"Lan Fendors","version":18,"id":"7081","lastModified":"1299950641000","name":"Lan Fendors","type":"Person","_key":"5235"} +{"label":"Nathan George","version":18,"id":"7082","lastModified":"1299950641000","name":"Nathan George","type":"Person","_key":"5236"} +{"label":"Ken Kenny","version":18,"id":"7083","lastModified":"1299950641000","name":"Ken Kenny","type":"Person","_key":"5237"} +{"label":"Mel Lambert","version":18,"id":"7084","lastModified":"1299950642000","name":"Mel Lambert","type":"Person","_key":"5238"} +{"label":"Sydney Lassick","version":27,"id":"7085","lastModified":"1299950642000","name":"Sydney Lassick","type":"Person","_key":"5239"} +{"label":"Kay Lee","version":18,"id":"7086","lastModified":"1299950642000","name":"Kay Lee","type":"Person","_key":"5240"} +{"label":"Louisa Moritz","version":26,"id":"100560","lastModified":"1299950642000","name":"Louisa Moritz","type":"Person","_key":"5241"} +{"label":"Will Sampson","version":26,"id":"68301","lastModified":"1299950642000","name":"Will Sampson","type":"Person","_key":"5242"} +{"label":"Ziemia obiecana","description":"The Polish film based on the book of the same name by Wladyslaw Reymonts. Taking place in the nineteenth century town of \u0141\u00f3d\u017a, Poland, three friends want to make a lot of money by building and investing in a textile factory. An exceptional portrait of rapid industrial expansion shown through the eyes of one Polish town.","id":"511","runtime":179,"imdbId":"tt0072446","version":87,"lastModified":"1299671653000","studio":"Film Polski Film Agency","genre":"Drama","title":"Ziemia obiecana","releaseDate":162172800000,"language":"en","type":"Movie","_key":"5243"} +{"label":"Daniel Olbrychski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c7de13f5e73d648dd000046\/daniel-olbrychski-profile.jpg","version":44,"birthday":"-783997200000","id":"7107","birthplace":"\u0141owicz, Poland","lastModified":"1299927945000","name":"Daniel Olbrychski","type":"Person","_key":"5244"} +{"label":"Wojciech Pszoniak","version":16,"id":"7108","lastModified":"1299493586000","name":"Wojciech Pszoniak","type":"Person","_key":"5245"} +{"label":"Kalina Jedrusik","version":16,"id":"7109","lastModified":"1299494685000","name":"Kalina Jedrusik","type":"Person","_key":"5246"} +{"label":"Anna Nehrebecka","version":13,"id":"7110","lastModified":"1299495800000","name":"Anna Nehrebecka","type":"Person","_key":"5247"} +{"label":"Bozena Dykiel","version":14,"id":"7111","lastModified":"1299496520000","name":"Bozena Dykiel","type":"Person","_key":"5248"} +{"label":"Andrzej Szalawski","version":13,"id":"7112","lastModified":"1299496007000","name":"Andrzej Szalawski","type":"Person","_key":"5249"} +{"label":"Stanislaw Igar","version":12,"id":"7113","lastModified":"1299496007000","name":"Stanislaw Igar","type":"Person","_key":"5250"} +{"label":"Franciszek Pieczka","version":12,"id":"7114","lastModified":"1299496007000","name":"Franciszek Pieczka","type":"Person","_key":"5251"} +{"label":"Kazimierz Opalinski","version":15,"id":"7115","lastModified":"1299496346000","name":"Kazimierz Opalinski","type":"Person","_key":"5252"} +{"label":"Andrzej Lapicki","version":12,"id":"7116","lastModified":"1299496007000","name":"Andrzej Lapicki","type":"Person","_key":"5253"} +{"label":"Wojciech Siemion","version":13,"id":"7117","lastModified":"1299496007000","name":"Wojciech Siemion","type":"Person","_key":"5254"} +{"label":"Tadeusz Bialoszczynski","version":12,"id":"7118","lastModified":"1299495260000","name":"Tadeusz Bialoszczynski","type":"Person","_key":"5255"} +{"label":"Jerzy Nowak","version":12,"id":"7119","lastModified":"1299496007000","name":"Jerzy Nowak","type":"Person","_key":"5256"} +{"label":"Piotr Fronczewski","version":13,"id":"7120","lastModified":"1299495378000","name":"Piotr Fronczewski","type":"Person","_key":"5257"} +{"label":"Jerzy Zelnik","version":13,"id":"7121","lastModified":"1299496006000","name":"Jerzy Zelnik","type":"Person","_key":"5258"} +{"label":"Scoop","description":"The turbulent crime comedy from the rhetorical whit and analytical delivery of director and screenwriter Woody Allen. Journalist student Sondra Pransky befriends an upper class gentleman possibly the suspect of a murder on her search for a mysterious Tarot card killer.","id":"512","runtime":96,"imdbId":"tt0457513","trailer":"http:\/\/www.youtube.com\/watch?v=X31pBRzhqaw","homepage":"http:\/\/www.scoopmovie.net\/","version":165,"lastModified":"1299983117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ae\/4c7bad975e73d613d40005ae\/scoop-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"Scoop","releaseDate":1154044800000,"language":"en","type":"Movie","_key":"5259"} +{"label":"Hugh Jackman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4bcf2638017a3c63e800002d\/hugh-jackman-profile.jpg","version":152,"id":"6968","lastModified":"1299945713000","name":"Hugh Jackman","type":"Person","_key":"5260"} +{"label":"Geoff Bell","version":27,"id":"6969","lastModified":"1299908551000","name":"Geoff Bell","type":"Person","_key":"5261"} +{"label":"Christopher Fulford","version":21,"id":"6970","lastModified":"1299494392000","name":"Christopher Fulford","type":"Person","_key":"5262"} +{"label":"Nigel Lindsay","version":16,"id":"6971","lastModified":"1299495653000","name":"Nigel Lindsay","type":"Person","_key":"5263"} +{"label":"Ian McShane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35b\/4c4389325e73d60f3b00035b\/ian-mcshane-profile.jpg","version":85,"id":"6972","lastModified":"1300041054000","name":"Ian McShane","type":"Person","_key":"5264"} +{"label":"Fenella Woolgar","version":19,"id":"6973","lastModified":"1299494982000","name":"Fenella Woolgar","type":"Person","_key":"5265"} +{"label":"Doreen Mantle","version":15,"id":"6974","lastModified":"1299496388000","name":"Doreen Mantle","type":"Person","_key":"5266"} +{"label":"Meera Syal","version":16,"id":"6975","lastModified":"1299493683000","name":"Meera Syal","type":"Person","_key":"5267"} +{"label":"Robyn Kerr","version":13,"id":"6976","lastModified":"1299495690000","name":"Robyn Kerr","type":"Person","_key":"5268"} +{"label":"Richard Stirling","version":13,"id":"6977","lastModified":"1299494478000","name":"Richard Stirling","type":"Person","_key":"5269"} +{"label":"Jim Dunk","version":13,"id":"6978","lastModified":"1299496361000","name":"Jim Dunk","type":"Person","_key":"5270"} +{"label":"Romola Garai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ba\/4d30e6135e73d6335b0004ba\/romola-garai-profile.jpg","version":31,"id":"6979","lastModified":"1299491751000","name":"Romola Garai","type":"Person","_key":"5271"} +{"label":"Carolyn Backhouse","version":13,"id":"6981","lastModified":"1299495563000","name":"Carolyn Backhouse","type":"Person","_key":"5272"} +{"label":"Sam Friend","version":14,"id":"6982","lastModified":"1299495749000","name":"Sam Friend","type":"Person","_key":"5273"} +{"label":"Suzy Kewer","version":13,"id":"6984","lastModified":"1299496517000","name":"Suzy Kewer","type":"Person","_key":"5274"} +{"label":"Jody Halse","version":13,"id":"6985","lastModified":"1299495015000","name":"Jody Halse","type":"Person","_key":"5275"} +{"label":"Fire","description":"When loves fire begins \u2013 Two Indian women, trapped between traditional norms and ideals, that have been brought up as modern Indian women together discover lust and passion.","id":"513","runtime":108,"imdbId":"tt0116308","version":99,"lastModified":"1299982908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/158\/4c17f9367b9aa10913000158\/fire-mid.jpg","studio":"Kaleidoscope Entertainment","genre":"Action","title":"Fire","releaseDate":820454400000,"language":"en","type":"Movie","_key":"5276"} +{"label":"Dial M For Murder","description":"Inspector Hubbard has to explain an extremely tricky case of keeping Mrs. Margot Wendice from capital punishment. Hitchcock has created with this film an almost perfect Murder, and made Grace Kelly famous.","id":"521","runtime":104,"imdbId":"tt0046912","trailer":"http:\/\/www.youtube.com\/watch?v=1qWwFvsBVic","version":128,"lastModified":"1299912500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/610\/4d52ff947b9aa1193e006610\/dial-m-for-murder-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Dial M For Murder","releaseDate":-492134400000,"language":"en","type":"Movie","_key":"5277"} +{"label":"Ray Milland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a3\/4bd9bd44017a3c1bff0002a3\/ray-milland-profile.jpg","version":64,"birthday":"-2051053200000","id":"7124","birthplace":"Neath, Glamorgan, Wales, UK","lastModified":"1300023841000","name":"Ray Milland","type":"Person","_key":"5278"} +{"label":"Robert Cummings","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d51\/4bfe8d32017a3c7036000d51\/robert-cummings-profile.jpg","version":33,"id":"7125","lastModified":"1299670251000","name":"Robert Cummings","type":"Person","_key":"5279"} +{"label":"Anthony Dawson","version":29,"id":"7682","lastModified":"1299531738000","name":"Anthony Dawson","type":"Person","_key":"5280"} +{"label":"Ed Wood","description":"Ed Wood is the worst director of all times. Together with his friends they film B-movies one after another without ever becoming famous or successful. A strange black and white Tim Burton\/Johnny Depp film.","id":"522","runtime":127,"imdbId":"tt0109707","trailer":"http:\/\/www.youtube.com\/watch?v=MYqpexw4REY&hd=1","version":130,"lastModified":"1299982545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d17\/4bc90852017a3c57fe002d17\/ed-wood-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Ed Wood","releaseDate":780710400000,"language":"en","tagline":"Movies were his passion. Women were his ispiration. Angora sweaters were his weakness.","type":"Movie","_key":"5281"} +{"label":"Max Casella","version":21,"id":"7133","lastModified":"1299493867000","name":"Max Casella","type":"Person","_key":"5282"} +{"label":"George 'The Animal' Steele","version":15,"id":"7136","lastModified":"1299493832000","name":"George 'The Animal' Steele","type":"Person","_key":"5283"} +{"label":"Juliet Landau","version":16,"id":"7137","lastModified":"1299493832000","name":"Juliet Landau","type":"Person","_key":"5284"} +{"label":"Clive Rosengren","version":15,"id":"7138","lastModified":"1299495562000","name":"Clive Rosengren","type":"Person","_key":"5285"} +{"label":"Norman Alden","version":30,"id":"7139","lastModified":"1299492966000","name":"Norman Alden","type":"Person","_key":"5286"} +{"label":"Leonard Termo","version":17,"id":"7140","lastModified":"1299493338000","name":"Leonard Termo","type":"Person","_key":"5287"} +{"label":"Danny Dayton","version":14,"id":"7141","lastModified":"1299495363000","name":"Danny Dayton","type":"Person","_key":"5288"} +{"label":"John Ross","version":21,"id":"7142","lastModified":"1299494890000","name":"John Ross","type":"Person","_key":"5289"} +{"label":"Bill Cusack","version":13,"id":"7143","lastModified":"1299495219000","name":"Bill Cusack","type":"Person","_key":"5290"} +{"label":"Requiem","description":"Hans-Christian Schmid tells the unfortunate tale of a young woman on the search for self-assertion and freedom from reoccurring epileptic attacks and religious delusions. The 2006 film takes place in a Catholic southern part of Germany in the 1970\u2019s. ","id":"523","runtime":92,"imdbId":"tt0454931","homepage":"http:\/\/www.requiem-derfilm.de","version":136,"lastModified":"1299982358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2e\/4bc90855017a3c57fe002d2e\/requiem-mid.jpg","studio":"Arte","genre":"Drama","title":"Requiem","releaseDate":1140048000000,"language":"en","type":"Movie","_key":"5291"} +{"label":"Sandra H\u00fcller","version":14,"id":"7152","lastModified":"1299494487000","name":"Sandra H\u00fcller","type":"Person","_key":"5292"} +{"label":"Imogen Kogge","version":17,"id":"7153","lastModified":"1299493490000","name":"Imogen Kogge","type":"Person","_key":"5293"} +{"label":"Friederike Adolph","version":14,"id":"7154","lastModified":"1299495675000","name":"Friederike Adolph","type":"Person","_key":"5294"} +{"label":"Anna Blomeier","version":13,"id":"7155","lastModified":"1299496517000","name":"Anna Blomeier","type":"Person","_key":"5295"} +{"label":"Nicholas Reinke","version":14,"id":"7156","lastModified":"1299496524000","name":"Nicholas Reinke","type":"Person","_key":"5296"} +{"label":"Walter Schmidinger","version":13,"id":"7157","lastModified":"1299496435000","name":"Walter Schmidinger","type":"Person","_key":"5297"} +{"label":"Jens Harzer","version":14,"id":"7158","lastModified":"1299493740000","name":"Jens Harzer","type":"Person","_key":"5298"} +{"label":"Johann Adam Oest","version":16,"id":"7159","lastModified":"1299496305000","name":"Johann Adam Oest","type":"Person","_key":"5299"} +{"label":"Irene Kugler","version":13,"id":"7160","lastModified":"1299496435000","name":"Irene Kugler","type":"Person","_key":"5300"} +{"label":"Eva L\u00f6bau","version":14,"id":"7161","lastModified":"1299494381000","name":"Eva L\u00f6bau","type":"Person","_key":"5301"} +{"label":"Casino","description":"Meister director Scorsese depicts the sloping depth of a Casino mafia boss\u2019 fall. Filmed in a semi-documentary fashion; about the life of the gambling paradise Las Vegas and it\u2019s dark mafia underbelly. ","id":"524","runtime":178,"imdbId":"tt0112641","trailer":"http:\/\/www.youtube.com\/watch?v=t09aGcMjnWM","version":170,"lastModified":"1299982169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d51\/4bc9085b017a3c57fe002d51\/casino-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Casino","releaseDate":816998400000,"language":"en","tagline":"No one stays at the top forever.","type":"Movie","_key":"5302"} +{"label":"Frank Vincent","version":33,"id":"7164","lastModified":"1299951017000","name":"Frank Vincent","type":"Person","_key":"5303"} +{"label":"Pasquale Cajano","version":15,"id":"7165","lastModified":"1299758657000","name":"Pasquale Cajano","type":"Person","_key":"5304"} +{"label":"Kevin Pollak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4c24b8be7b9aa1446e0000a3\/kevin-pollak-profile.jpg","version":104,"id":"7166","lastModified":"1300022913000","name":"Kevin Pollak","type":"Person","_key":"5305"} +{"label":"Don Rickles","version":74,"id":"7167","lastModified":"1299758657000","name":"Don Rickles","type":"Person","_key":"5306"} +{"label":"Vinny Vella","version":19,"id":"7168","lastModified":"1299926115000","name":"Vinny Vella","type":"Person","_key":"5307"} +{"label":"Alan King","version":28,"id":"7169","lastModified":"1299758657000","name":"Alan King","type":"Person","_key":"5308"} +{"label":"Erika von Tagen","version":15,"id":"7423","lastModified":"1299758657000","name":"Erika von Tagen","type":"Person","_key":"5309"} +{"label":"Oscar Goodman","version":15,"id":"7424","lastModified":"1299758657000","name":"Oscar Goodman","type":"Person","_key":"5310"} +{"label":"Nobu Matsuhisa","version":22,"id":"7425","lastModified":"1299758657000","name":"Nobu Matsuhisa","type":"Person","_key":"5311"} +{"label":"Nick Mazzola","version":15,"id":"7444","lastModified":"1299758657000","name":"Nick Mazzola","type":"Person","_key":"5312"} +{"label":"The Blues Brothers","description":"Direct out of jail, Jake Blues and his Brother Elwood are off on a \u201cmission from god\u201d to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best: play music. So they get their old band together and they're on their way yet not without getting in a bit of trouble here and there.","id":"525","runtime":133,"imdbId":"tt0080455","trailer":"http:\/\/www.youtube.com\/watch?v=_CYMYYHHe90","homepage":"http:\/\/www.bluesbrothers.com\/","version":226,"lastModified":"1299981989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfd\/4d4b5e615e73d617c1000dfd\/the-blues-brothers-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Blues Brothers","releaseDate":330307200000,"language":"en","tagline":"They\u2019ll never get caught. They\u2019re on a mission from God.","type":"Movie","_key":"5313"} +{"label":"John Belushi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26c\/4ca4b99c7b9aa16ed600026c\/john-belushi-profile.jpg","version":32,"birthday":"-424141200000","id":"7171","birthplace":"Chicago, Illinois, United States","lastModified":"1299688721000","name":"John Belushi","type":"Person","_key":"5314"} +{"label":"James Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fc\/4c9b76bd7b9aa122de0006fc\/james-brown-profile.jpg","version":28,"birthday":"-1159664400000","id":"7172","birthplace":"Barnwell, South Carolina USA","lastModified":"1299491871000","name":"James Brown","type":"Person","_key":"5315"} +{"label":"Cab Calloway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08e\/4c13fdef7b9aa1045a00008e\/cab-calloway-profile.jpg","version":15,"birthday":"-1957222800000","id":"7173","birthplace":"Rochester, New York, USA","lastModified":"1299492103000","name":"Cab Calloway","type":"Person","_key":"5316"} +{"label":"Ray Charles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4bf06412017a3c530c000002\/ray-charles-profile.jpg","version":15,"birthday":"-1239411600000","id":"7174","birthplace":"Albany, Georgia USA","lastModified":"1299492139000","name":"Ray Charles","type":"Person","_key":"5317"} +{"label":"Aretha Franklin","version":18,"id":"7175","lastModified":"1300030589000","name":"Aretha Franklin","type":"Person","_key":"5318"} +{"label":"Steve Cropper","version":14,"id":"7176","lastModified":"1299492199000","name":"Steve Cropper","type":"Person","_key":"5319"} +{"label":"Donald Dunn","version":14,"id":"7177","lastModified":"1299492714000","name":"Donald Dunn","type":"Person","_key":"5320"} +{"label":"Murphy Dunne","version":16,"id":"7178","lastModified":"1299492228000","name":"Murphy Dunne","type":"Person","_key":"5321"} +{"label":"Willie Hall","version":13,"id":"7179","lastModified":"1299492402000","name":"Willie Hall","type":"Person","_key":"5322"} +{"label":"John Candy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/011\/4bd38d82017a3c5345000011\/john-candy-profile.jpg","version":110,"id":"7180","lastModified":"1300041847000","name":"John Candy","type":"Person","_key":"5323"} +{"label":"John Lee Hooker","version":14,"id":"7207","lastModified":"1299492140000","name":"John Lee Hooker","type":"Person","_key":"5324"} +{"label":"Lou Marini","version":14,"id":"7208","lastModified":"1299492265000","name":"Lou Marini","type":"Person","_key":"5325"} +{"label":"Matt Murphy","version":23,"id":"7209","lastModified":"1299491736000","name":"Matt Murphy","type":"Person","_key":"5326"} +{"label":"Kathleen Freeman","version":47,"id":"7210","lastModified":"1299582497000","name":"Kathleen Freeman","type":"Person","_key":"5327"} +{"label":"Tom Erhart","version":17,"id":"122094","lastModified":"1299506061000","name":"Tom Erhart","type":"Person","_key":"5328"} +{"label":"Gerald Walling","version":17,"id":"122095","lastModified":"1299505789000","name":"Gerald Walling","type":"Person","_key":"5329"} +{"label":"Walter Levine","version":17,"id":"122096","lastModified":"1299505789000","name":"Walter Levine","type":"Person","_key":"5330"} +{"label":"Alonzo Atkins","version":17,"id":"122098","lastModified":"1299505789000","name":"Alonzo Atkins","type":"Person","_key":"5331"} +{"label":"Chaka Khan","version":19,"id":"122099","lastModified":"1300031806000","name":"Chaka Khan","type":"Person","_key":"5332"} +{"label":"Armand Cerami","version":17,"id":"122101","lastModified":"1299505788000","name":"Armand Cerami","type":"Person","_key":"5333"} +{"label":"Steven Williams","version":15,"id":"122102","lastModified":"1299505788000","name":"Steven Williams","type":"Person","_key":"5334"} +{"label":"Kristi Oleson","version":17,"id":"122105","lastModified":"1299505788000","name":"Kristi Oleson","type":"Person","_key":"5335"} +{"label":"Gary McLarty","version":23,"id":"122106","lastModified":"1299506149000","name":"Gary McLarty","type":"Person","_key":"5336"} +{"label":"Joe Cuttone","version":17,"id":"122107","lastModified":"1299506232000","name":"Joe Cuttone","type":"Person","_key":"5337"} +{"label":"Layne Britton","version":15,"id":"122108","lastModified":"1299506231000","name":"Layne Britton","type":"Person","_key":"5338"} +{"label":"Toni Fleming","version":17,"id":"122110","lastModified":"1299506231000","name":"Toni Fleming","type":"Person","_key":"5339"} +{"label":"Rosie Shuster","version":14,"id":"122114","lastModified":"1299501236000","name":"Rosie Shuster","type":"Person","_key":"5340"} +{"label":"Alan Rubin","version":17,"id":"122115","lastModified":"1299508085000","name":"Alan Rubin","type":"Person","_key":"5341"} +{"label":"Ben Piazza","version":16,"id":"90163","lastModified":"1299503851000","name":"Ben Piazza","type":"Person","_key":"5342"} +{"label":"Gwen Banta","version":16,"id":"122116","lastModified":"1299500692000","name":"Gwen Banta","type":"Person","_key":"5343"} +{"label":"Lari Taylor","version":17,"id":"122117","lastModified":"1299506173000","name":"Lari Taylor","type":"Person","_key":"5344"} +{"label":"Cindy Fisher","version":17,"id":"122118","lastModified":"1299506173000","name":"Cindy Fisher","type":"Person","_key":"5345"} +{"label":"Elizabeth Hoy","version":17,"id":"122119","lastModified":"1299505788000","name":"Elizabeth Hoy","type":"Person","_key":"5346"} +{"label":"Tony M. Conde","version":17,"id":"122120","lastModified":"1299505787000","name":"Tony M. Conde","type":"Person","_key":"5347"} +{"label":"Eugene J. Anthony","version":18,"id":"74840","lastModified":"1299496364000","name":"Eugene J. Anthony","type":"Person","_key":"5348"} +{"label":"Dean Hill","version":17,"id":"122122","lastModified":"1299505787000","name":"Dean Hill","type":"Person","_key":"5349"} +{"label":"Jack Orend","version":17,"id":"122124","lastModified":"1299505787000","name":"Jack Orend","type":"Person","_key":"5350"} +{"label":"Gene Schuldt","version":17,"id":"122125","lastModified":"1299505787000","name":"Gene Schuldt","type":"Person","_key":"5351"} +{"label":"Charles Mountain","version":17,"id":"122126","lastModified":"1299505787000","name":"Charles Mountain","type":"Person","_key":"5352"} +{"label":"Henry Gibson","version":38,"id":"19439","lastModified":"1299494317000","name":"Henry Gibson","type":"Person","_key":"5353"} +{"label":"Stephen Bishop","version":28,"id":"55205","lastModified":"1299493361000","name":"Stephen Bishop","type":"Person","_key":"5354"} +{"label":"Judith Belushi-Pisano","version":18,"id":"55247","lastModified":"1299498066000","name":"Judith Belushi-Pisano","type":"Person","_key":"5355"} +{"label":"Elmore James","version":19,"id":"56271","lastModified":"1299497805000","name":"Elmore James","type":"Person","_key":"5356"} +{"label":"Tom Malone","version":18,"id":"76150","lastModified":"1299499763000","name":"Tom Malone","type":"Person","_key":"5357"} +{"label":"Ladyhawke","description":"A bishop has put a curse on Isabeau d\u2019Anjou that causes her to turn into a hawk during the day. When she finds a thief that had been imprisoned by the Bishop she asked for his help to get her past the guards to kill the Bishop. A poetic fantasy from Richard Donner.","id":"526","runtime":121,"imdbId":"tt0089457","trailer":"http:\/\/www.youtube.com\/watch?v=0pvGujT_wTA","version":144,"lastModified":"1299911380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41c\/4c43b67c5e73d60f3700041c\/ladyhawke-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Ladyhawke","releaseDate":482112000000,"language":"en","tagline":"No force in Heaven will release them. No power on Earth can save them.","type":"Movie","_key":"5358"} +{"label":"Richard Donner","version":129,"id":"7187","lastModified":"1299491251000","name":"Richard Donner","type":"Person","_key":"5359"} +{"label":"Leo McKern","version":32,"id":"7192","lastModified":"1299493460000","name":"Leo McKern","type":"Person","_key":"5360"} +{"label":"Ken Hutchison","version":17,"id":"7194","lastModified":"1299494640000","name":"Ken Hutchison","type":"Person","_key":"5361"} +{"label":"Giancarlo Prete","version":19,"id":"7195","lastModified":"1299494901000","name":"Giancarlo Prete","type":"Person","_key":"5362"} +{"label":"Loris Loddi","version":19,"id":"7196","lastModified":"1299495312000","name":"Loris Loddi","type":"Person","_key":"5363"} +{"label":"Alessandro Serra","version":14,"id":"7197","lastModified":"1299495963000","name":"Alessandro Serra","type":"Person","_key":"5364"} +{"label":"Charles Borromel","version":20,"id":"7198","lastModified":"1299493940000","name":"Charles Borromel","type":"Person","_key":"5365"} +{"label":"Once Were Warriors","description":"A drama about a Maori family in a city New Zealand. Lee Tamahori tells the story of Beth Heke\u2019s strong will to keep her family together during times unemployment and abuse from her violent and alcoholic husband.","id":"527","runtime":99,"imdbId":"tt0110729","homepage":"http:\/\/www.finelinefeatures.com\/warriors\/","version":103,"lastModified":"1299911097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dde\/4bc90871017a3c57fe002dde\/once-were-warriors-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"Once Were Warriors","releaseDate":811036800000,"language":"en","type":"Movie","_key":"5366"} +{"label":"Rena Owen","version":19,"id":"7241","lastModified":"1299493742000","name":"Rena Owen","type":"Person","_key":"5367"} +{"label":"Mamaengaroa Kerr-Bell","version":14,"id":"7243","lastModified":"1299494487000","name":"Mamaengaroa Kerr-Bell","type":"Person","_key":"5368"} +{"label":"Taungaroa Emile","version":20,"id":"7245","lastModified":"1299493483000","name":"Taungaroa Emile","type":"Person","_key":"5369"} +{"label":"Rachael Morris Jr.","version":14,"id":"7246","lastModified":"1299494905000","name":"Rachael Morris Jr.","type":"Person","_key":"5370"} +{"label":"Joseph Kairau","version":14,"id":"7247","lastModified":"1299494985000","name":"Joseph Kairau","type":"Person","_key":"5371"} +{"label":"Cliff Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4c3881e07b9aa10eda0000ad\/cliff-curtis-profile.jpg","version":108,"id":"7248","lastModified":"1299900843000","name":"Cliff Curtis","type":"Person","_key":"5372"} +{"label":"Pete Smith","version":21,"id":"7249","lastModified":"1299494859000","name":"Pete Smith","type":"Person","_key":"5373"} +{"label":"George Henare","version":17,"id":"7250","lastModified":"1299495340000","name":"George Henare","type":"Person","_key":"5374"} +{"label":"Mere Boynton","version":14,"id":"7251","lastModified":"1299495653000","name":"Mere Boynton","type":"Person","_key":"5375"} +{"label":"Shannon Williams","version":14,"id":"7252","lastModified":"1299496432000","name":"Shannon Williams","type":"Person","_key":"5376"} +{"label":"Calvin Tuteao","version":14,"id":"7253","lastModified":"1299496516000","name":"Calvin Tuteao","type":"Person","_key":"5377"} +{"label":"Ray Bishop","version":14,"id":"7254","lastModified":"1299495652000","name":"Ray Bishop","type":"Person","_key":"5378"} +{"label":"Ian Mune","version":18,"id":"7255","lastModified":"1300042362000","name":"Ian Mune","type":"Person","_key":"5379"} +{"label":"Robert Pollock","version":17,"id":"129394","lastModified":"1299507625000","name":"Robert Pollock","type":"Person","_key":"5380"} +{"label":"Lee Tamahori","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abd\/4d11d53c5e73d60842000abd\/lee-tamahori-profile.jpg","version":42,"id":"7256","lastModified":"1299880456000","name":"Lee Tamahori","type":"Person","_key":"5381"} +{"label":"Terminator Quadrilogy","description":"The Terminator series also known as the terminator collection & Terminator Quadrilogy are the science-fiction films about the fight in time between the human rebel alliance and the artificial intelligent machines called Skynet. The Terminator is sent back in time to destroy the future rebel leader\u2019s mother and then in later films to protect him from more advanced machines.","id":"528","version":145,"lastModified":"1299911194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de7\/4bc90872017a3c57fe002de7\/terminator-mid.jpg","title":"Terminator Quadrilogy","language":"en","tagline":"Terminator Quadrilogy","type":"Movie","_key":"5382"} +{"label":"Wallace & Gromit","description":"The British award winning Plasticine animated short films about the adventures of clumsy absent-minded Wallace and his dog and best friend Gromit.","id":"529","version":74,"lastModified":"1299813035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df5\/4bc90873017a3c57fe002df5\/wallace-gromit-mid.jpg","title":"Wallace & Gromit","language":"en","type":"Movie","_key":"5383"} +{"label":"Wallace & Gromit: A Grand Day Out","description":"Wallace and Gromit have run out of cheese and this provides an excellent excuse for the animated duo to take their holiday on the moon, where, as everyone knows, there is ample cheese.","id":"530","runtime":23,"imdbId":"tt0104361","homepage":"http:\/\/www.wallaceandgromit.com\/home2.asp","version":70,"lastModified":"1299981098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83c\/4cfaf8b85e73d6299900283c\/wallace-gromit-a-grand-day-out-mid.jpg","studio":"Aardman Animations","genre":"Adventure","title":"Wallace & Gromit: A Grand Day Out","releaseDate":599616000000,"language":"en","type":"Movie","_key":"5384"} +{"label":"Nick Park","version":57,"id":"7314","lastModified":"1299492244000","name":"Nick Park","type":"Person","_key":"5385"} +{"label":"Peter Sallis","version":41,"birthday":"-1543626000000","id":"7317","lastModified":"1299492595000","name":"Peter Sallis","type":"Person","_key":"5386"} +{"label":"Wallace & Gromit: The Wrong Trousers","description":"Gromit finds himself being pushed out of his room and home by a new lodger who is actually a ruthless criminal (and a small penguin). The penguin is planning a robbery and needs to use Wallace and his mechanical remote controlled trousers to pull off the raid. However, Gromit is wise to the penguin and comes to the rescue.","id":"531","runtime":30,"imdbId":"tt0108598","version":112,"lastModified":"1299912014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7e\/4cfafca65e73d6299a002a7e\/wallace-gromit-the-wrong-trousers-mid.jpg","studio":"Aardman Animations","genre":"Animation","title":"Wallace & Gromit: The Wrong Trousers","releaseDate":756864000000,"language":"en","type":"Movie","_key":"5387"} +{"label":"Wallace & Gromit: A Close Shave","description":"Wallace falls in love with wool-shop owner Wendolene, not suspecting that she (or rather, her dog) is at the head of a fiendish sheep-rustling plot. Gromit is set up and jailed, but his new-found sheepish friend is determine to give Wallace a helping hand in finding out the real truth.","id":"532","runtime":30,"imdbId":"tt0112691","version":112,"lastModified":"1299912388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abe\/4cfaf9015e73d6299d002abe\/wallace-gromit-a-close-shave-mid.jpg","studio":"Aardman Animations","genre":"Animation","title":"Wallace & Gromit: A Close Shave","releaseDate":819763200000,"language":"en","type":"Movie","_key":"5388"} +{"label":"Wallace & Gromit: The Curse of the Were-Rabbit","description":"Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.","id":"533","runtime":85,"imdbId":"tt0312004","trailer":"http:\/\/www.youtube.com\/watch?v=wrqRv0s5McU","homepage":"http:\/\/java.europe.yahoo.com\/uk\/uip\/wallaceandgromit\/index.html","version":184,"lastModified":"1299980661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c56\/4cbbf0a75e73d67785000c56\/wallace-gromit-the-curse-of-the-were-rabbit-mid.jpg","studio":"DreamWorks SKG","genre":"Animation","title":"Wallace & Gromit: The Curse of the Were-Rabbit","releaseDate":1128470400000,"language":"en","tagline":"Something bunny is going on...","type":"Movie","_key":"5389"} +{"label":"Steve Box","version":30,"id":"7313","lastModified":"1299493535000","name":"Steve Box","type":"Person","_key":"5390"} +{"label":"Nicholas Smith","version":19,"id":"7319","lastModified":"1299494559000","name":"Nicholas Smith","type":"Person","_key":"5391"} +{"label":"Liz Smith","version":30,"id":"7320","lastModified":"1299493823000","name":"Liz Smith","type":"Person","_key":"5392"} +{"label":"John Thomson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d63\/4cf1536c5e73d61925000d63\/john-thomson-profile.jpg","version":23,"id":"7321","lastModified":"1300032031000","name":"John Thomson","type":"Person","_key":"5393"} +{"label":"Vincent Ebrahim","version":21,"id":"127149","lastModified":"1299504183000","name":"Vincent Ebrahim","type":"Person","_key":"5394"} +{"label":"Geraldine McEwan","version":21,"id":"8326","lastModified":"1299493858000","name":"Geraldine McEwan","type":"Person","_key":"5395"} +{"label":"Edward Kelsey","version":29,"id":"127150","lastModified":"1299508381000","name":"Edward Kelsey","type":"Person","_key":"5396"} +{"label":"Dicken Ashworth","version":21,"id":"127151","lastModified":"1299506599000","name":"Dicken Ashworth","type":"Person","_key":"5397"} +{"label":"Robert Horvath","version":21,"id":"127152","lastModified":"1299506419000","name":"Robert Horvath","type":"Person","_key":"5398"} +{"label":"Pete Atkin","version":21,"id":"127153","lastModified":"1299504183000","name":"Pete Atkin","type":"Person","_key":"5399"} +{"label":"Noni Lewis","version":21,"id":"127154","lastModified":"1299506599000","name":"Noni Lewis","type":"Person","_key":"5400"} +{"label":"Ben Whitehead","version":21,"id":"127155","lastModified":"1299506598000","name":"Ben Whitehead","type":"Person","_key":"5401"} +{"label":"James Mather","version":29,"id":"11351","lastModified":"1299859113000","name":"James Mather","type":"Person","_key":"5402"} +{"label":"William Vanderpuye","version":21,"id":"127156","lastModified":"1299506598000","name":"William Vanderpuye","type":"Person","_key":"5403"} +{"label":"Mark Gatiss","version":31,"id":"34546","lastModified":"1299493806000","name":"Mark Gatiss","type":"Person","_key":"5404"} +{"label":"Peter Kay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08c\/4bd5f264017a3c658500008c\/peter-kay-profile.jpg","version":24,"id":"7318","lastModified":"1299493242000","name":"Peter Kay","type":"Person","_key":"5405"} +{"label":"Terminator Salvation","description":"All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.","id":"534","runtime":114,"imdbId":"tt0438488","trailer":"http:\/\/www.youtube.com\/watch?v=Sv6SM0w0B5A","homepage":"http:\/\/www.terminatorsalvation.com","version":361,"lastModified":"1299980478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36e\/4d4c15075e73d617b700136e\/terminator-salvation-mid.jpg","studio":"The Halcyon Company","genre":"Action","title":"Terminator Salvation","releaseDate":1242864000000,"language":"en","tagline":"The End Begins","type":"Movie","_key":"5406"} +{"label":"McG","version":36,"id":"36425","lastModified":"1299492032000","name":"McG","type":"Person","_key":"5407"} +{"label":"Anton Yelchin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18c\/4bd74b98017a3c21ec00018c\/anton-yelchin-profile.jpg","version":57,"id":"21028","lastModified":"1299491107000","name":"Anton Yelchin","type":"Person","_key":"5408"} +{"label":"Moon Bloodgood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23f\/4ce167457b9aa168b200023f\/moon-bloodgood-profile.jpg","version":47,"birthday":"180399600000","id":"56455","birthplace":"Anaheim, California, USA","lastModified":"1299763596000","name":"Moon Bloodgood","type":"Person","_key":"5409"} +{"label":"Bryce Dallas Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4c3115f55e73d640bc00003f\/bryce-dallas-howard-profile.jpg","version":99,"id":"18997","lastModified":"1299591278000","name":"Bryce Dallas Howard","type":"Person","_key":"5410"} +{"label":"Roland Kickinger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17b\/4d41c33b5e73d6538500017b\/roland-kickinger-profile.jpg","version":28,"id":"76542","lastModified":"1299491385000","name":"Roland Kickinger","type":"Person","_key":"5411"} +{"label":"Michael Ironside","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/289\/4cef38a95e73d66255000289\/michael-ironside-profile.jpg","version":109,"id":"11086","lastModified":"1300050257000","name":"Michael Ironside","type":"Person","_key":"5412"} +{"label":"Jane Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/97e\/4d41c3b65e73d6570400097e\/jane-alexander-profile.jpg","version":64,"id":"13724","lastModified":"1300015699000","name":"Jane Alexander","type":"Person","_key":"5413"} +{"label":"Chris Browning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/181\/4d41c3c65e73d65385000181\/chris-browning-profile.jpg","version":45,"id":"76543","lastModified":"1299491056000","name":"Chris Browning","type":"Person","_key":"5414"} +{"label":"Chris Ashworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18a\/4d41c44c5e73d6538500018a\/chris-ashworth-profile.jpg","version":29,"id":"76544","lastModified":"1299491301000","name":"Chris Ashworth","type":"Person","_key":"5415"} +{"label":"Jadagrace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/95a\/4d41c24d5e73d6572900095a\/jadagrace-profile.jpg","version":12,"id":"213753","lastModified":"1299515892000","name":"Jadagrace","type":"Person","_key":"5416"} +{"label":"Flashdance","description":"The popular 1980\u2019s dance movie that depicts the life of an exotic dancer with a side job as a welder who true desire is to get into ballet school. It\u2019s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.","id":"535","runtime":95,"imdbId":"tt0085549","version":115,"lastModified":"1299980286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9c\/4bc90889017a3c57fe002e9c\/flashdance-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Drama","title":"Flashdance","releaseDate":426643200000,"language":"en","type":"Movie","_key":"5417"} +{"label":"Adrian Lyne","version":40,"id":"7270","lastModified":"1300030402000","name":"Adrian Lyne","type":"Person","_key":"5418"} +{"label":"Michael Nouri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7bd\/4c7007115e73d65f790007bd\/michael-nouri-profile.jpg","version":43,"id":"8699","lastModified":"1299492240000","name":"Michael Nouri","type":"Person","_key":"5419"} +{"label":"Lilia Skala","version":23,"id":"31114","lastModified":"1299493789000","name":"Lilia Skala","type":"Person","_key":"5420"} +{"label":"Kyle T. Heffner","version":22,"id":"31115","lastModified":"1299495390000","name":"Kyle T. Heffner","type":"Person","_key":"5421"} +{"label":"Sunny Johnson","version":20,"id":"31116","lastModified":"1299496184000","name":"Sunny Johnson","type":"Person","_key":"5422"} +{"label":"Malcolm Danare","version":22,"id":"14738","lastModified":"1299494466000","name":"Malcolm Danare","type":"Person","_key":"5423"} +{"label":"Philip Bruns","version":22,"id":"31117","lastModified":"1299494785000","name":"Philip Bruns","type":"Person","_key":"5424"} +{"label":"Stuttgart Shanghai","description":"A young pair from Stuttgart fly to Shanghai to hop aboard the textile business of his father while she prepares for the birth of their son. A story about the ever more common movement of Germans into the East for professional gain.","id":"536","runtime":60,"imdbId":"tt0958195","version":41,"lastModified":"1299815788000","studio":"Arte","genre":"Documentary","title":"Stuttgart Shanghai","releaseDate":1172707200000,"language":"en","type":"Movie","_key":"5425"} +{"label":"Sandra Jakisch","version":16,"id":"7271","lastModified":"1299493468000","name":"Sandra Jakisch","type":"Person","_key":"5426"} +{"label":"Not Here To Be Loved","description":"A melancholy comedy from French director St\u00e9phane Briz\u00e9 about a petrified bailiff who discovers that the Tango dance is not just a passion but the love that a new chance has granted.","id":"537","runtime":93,"imdbId":"tt0436445","trailer":"http:\/\/www.youtube.com\/watch?v=T3IjmIOBIIE","version":85,"lastModified":"1299815829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4c9f01615e73d6704a0002e5\/je-ne-suis-pas-la-pour-etre-aime-mid.jpg","studio":"Le Studio Canal+","genre":"Comedy","title":"Not Here To Be Loved","releaseDate":1129075200000,"language":"en","type":"Movie","_key":"5427"} +{"label":"Patrick Chesnais","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c17\/4d1b61d95e73d6083400bc17\/patrick-chesnais-profile.jpg","version":40,"id":"7275","lastModified":"1300034926000","name":"Patrick Chesnais","type":"Person","_key":"5428"} +{"label":"Anne Consigny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/521\/4d10e1075e73d6082e000521\/anne-consigny-profile.jpg","version":46,"id":"7276","lastModified":"1299962422000","name":"Anne Consigny","type":"Person","_key":"5429"} +{"label":"Georges Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a0\/4c9c9a287b9aa1430d0000a0\/georges-wilson-profile.jpg","version":29,"birthday":"-1522198800000","id":"7277","birthplace":"Champigny-sur-Marne, Seine","lastModified":"1299491748000","name":"Georges Wilson","type":"Person","_key":"5430"} +{"label":"Lionel Abelanski","version":33,"id":"7278","lastModified":"1299492967000","name":"Lionel Abelanski","type":"Person","_key":"5431"} +{"label":"Cyril Couton","version":20,"id":"7279","lastModified":"1299833006000","name":"Cyril Couton","type":"Person","_key":"5432"} +{"label":"Genevi\u00e8ve Mnich","version":26,"id":"7280","lastModified":"1299927945000","name":"Genevi\u00e8ve Mnich","type":"Person","_key":"5433"} +{"label":"H\u00e9l\u00e8ne Alexandridis","version":19,"id":"7281","lastModified":"1299494477000","name":"H\u00e9l\u00e8ne Alexandridis","type":"Person","_key":"5434"} +{"label":"Anne Beno\u00eet","version":16,"id":"7282","lastModified":"1299496518000","name":"Anne Beno\u00eet","type":"Person","_key":"5435"} +{"label":"Olivier Claverie","version":16,"id":"7283","lastModified":"1299496515000","name":"Olivier Claverie","type":"Person","_key":"5436"} +{"label":"Marie-Sohna Conde","version":18,"id":"7284","lastModified":"1299496279000","name":"Marie-Sohna Conde","type":"Person","_key":"5437"} +{"label":"St\u00e9phan Wojtowicz","version":19,"id":"7285","lastModified":"1299494422000","name":"St\u00e9phan Wojtowicz","type":"Person","_key":"5438"} +{"label":"Pedro Lombardi","version":16,"id":"7286","lastModified":"1299495466000","name":"Pedro Lombardi","type":"Person","_key":"5439"} +{"label":"Isabelle Brochard","version":16,"id":"7287","lastModified":"1299495466000","name":"Isabelle Brochard","type":"Person","_key":"5440"} +{"label":"St\u00e9phane Briz\u00e9","version":22,"id":"7288","lastModified":"1299493958000","name":"St\u00e9phane Briz\u00e9","type":"Person","_key":"5441"} +{"label":"Janine F.","description":"The humorous portrait of a female artist. The film follows the career of 24-year-old Janine F. who in 2002 caused a commotion from the rooftop of a Berlin building.","id":"538","runtime":52,"imdbId":"tt0485662","version":28,"lastModified":"1299531829000","studio":"Filmakademie Baden-W\u00fcrttemberg","title":"Janine F.","releaseDate":1076457600000,"language":"en","type":"Movie","_key":"5442"} +{"label":"Teresa Renn","version":17,"id":"7273","lastModified":"1299494020000","name":"Teresa Renn","type":"Person","_key":"5443"} +{"label":"Psycho","description":"Psycho is one of the most famous masterpieces from Hitchcock and for it\u2019s time was unparalleled in it\u2019s horror effect. A chilling score sets the pace for an introverted killer and a mystery thriller case of multiple dimensions. The credits for the film directed by Saul Bass were revolutionary for their time.","id":"539","runtime":106,"imdbId":"tt0054215","trailer":"http:\/\/www.youtube.com\/watch?v=Ps8H3rg5GfM","version":212,"lastModified":"1299911575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/318\/4ce863af5e73d6258b000318\/psycho-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Psycho","releaseDate":-301190400000,"language":"en","tagline":"Check in. Relax. Take a shower.","type":"Movie","_key":"5444"} +{"label":"Hilton A. Green","version":30,"id":"6935","lastModified":"1299493253000","name":"Hilton A. Green","type":"Person","_key":"5445"} +{"label":"Anthony Perkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/172\/4c333fcf5e73d64969000172\/anthony-perkins-profile.jpg","version":54,"id":"7301","lastModified":"1299688864000","name":"Anthony Perkins","type":"Person","_key":"5446"} +{"label":"Vera Miles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4c45bba17b9aa15de200008b\/vera-miles-profile.jpg","version":33,"id":"7303","lastModified":"1299492871000","name":"Vera Miles","type":"Person","_key":"5447"} +{"label":"John Gavin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e7\/4c9cc4a47b9aa1430d0000e7\/john-gavin-profile.jpg","version":27,"id":"7304","lastModified":"1299491686000","name":"John Gavin","type":"Person","_key":"5448"} +{"label":"Janet Leigh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/104\/4bcc7776017a3c0f26000104\/janet-leigh-profile.jpg","version":60,"id":"7302","lastModified":"1300027583000","name":"Janet Leigh","type":"Person","_key":"5449"} +{"label":"John McIntire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc2\/4bfe70ac017a3c702f000dc2\/john-mcintire-profile.jpg","version":44,"id":"53010","lastModified":"1299833364000","name":"John McIntire","type":"Person","_key":"5450"} +{"label":"Simon Oakland","version":34,"id":"14063","lastModified":"1299493720000","name":"Simon Oakland","type":"Person","_key":"5451"} +{"label":"Frank Albertson","version":23,"id":"78902","lastModified":"1299498586000","name":"Frank Albertson","type":"Person","_key":"5452"} +{"label":"Patricia Hitchcock","version":25,"id":"12500","lastModified":"1299493655000","name":"Patricia Hitchcock","type":"Person","_key":"5453"} +{"label":"Lurene Tuttle","version":30,"id":"19781","lastModified":"1299492947000","name":"Lurene Tuttle","type":"Person","_key":"5454"} +{"label":"Mort Mills","version":27,"id":"45525","lastModified":"1299495204000","name":"Mort Mills","type":"Person","_key":"5455"} +{"label":"John Anderson","version":25,"id":"19111","lastModified":"1299495466000","name":"John Anderson","type":"Person","_key":"5456"} +{"label":"D.E.B.S.","description":"A black action-romance-comedy also known as Fox Force Five. The film is a parody of Charlie Angles style of film yet in this film one of the hero\u2019s gets into a lesbian tango with the villain.","id":"540","runtime":91,"imdbId":"tt0367631","trailer":"http:\/\/www.youtube.com\/watch?v=DI0017J3XEU","version":138,"lastModified":"1299912711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec7\/4bc90891017a3c57fe002ec7\/d-e-b-s-mid.jpg","studio":"Anonymous Content","genre":"Action","title":"D.E.B.S.","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"5457"} +{"label":"Angela Robinson","version":22,"id":"7312","lastModified":"1299493878000","name":"Angela Robinson","type":"Person","_key":"5458"} +{"label":"Sara Foster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4bf05389017a3c2d2f00000b\/sara-foster-profile.jpg","version":25,"id":"22121","lastModified":"1300024964000","name":"Sara Foster","type":"Person","_key":"5459"} +{"label":"Meagan Good","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4bf0539f017a3c2d33000018\/meagan-good-profile.jpg","version":51,"id":"22122","lastModified":"1299764428000","name":"Meagan Good","type":"Person","_key":"5460"} +{"label":"Jordana Brewster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4bda16c4017a3c43ef00000b\/jordana-brewster-profile.jpg","version":50,"birthday":"325548000000","id":"22123","birthplace":"Panama City","lastModified":"1299791501000","name":"Jordana Brewster","type":"Person","_key":"5461"} +{"label":"Christina Kirk","version":13,"id":"22127","lastModified":"1299498293000","name":"Christina Kirk","type":"Person","_key":"5462"} +{"label":"Geoff Stults","version":25,"id":"22128","lastModified":"1299494294000","name":"Geoff Stults","type":"Person","_key":"5463"} +{"label":"Jill Ritchie","version":16,"id":"22124","lastModified":"1299494690000","name":"Jill Ritchie","type":"Person","_key":"5464"} +{"label":"Jimmi Simpson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18c\/4c7ebf6d5e73d648e100018c\/jimmi-simpson-profile.jpg","version":28,"birthday":"185756400000","id":"22125","birthplace":"Hackettstown, New Jersey, U.S.","lastModified":"1299492054000","name":"Jimmi Simpson","type":"Person","_key":"5465"} +{"label":"Holland Taylor","version":31,"id":"11318","lastModified":"1299493150000","name":"Holland Taylor","type":"Person","_key":"5466"} +{"label":"Jessica Cauffiel","version":14,"id":"22126","lastModified":"1299496515000","name":"Jessica Cauffiel","type":"Person","_key":"5467"} +{"label":"The Man with the Golden Arm","description":"Frankie is a heroin addict and sits in prison. He wants a different life but the rehabilitation isn\u2019t as easy as he had thought. Director Otto Preminger films one of the first social studies of an addict in this 1955 film.","id":"541","runtime":119,"imdbId":"tt0048347","trailer":"http:\/\/www.youtube.com\/watch?v=Ujgu8C4lN68","version":121,"lastModified":"1299912074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4c468ef57b9aa15dde0001ca\/the-man-with-the-golden-arm-mid.jpg","studio":"United Artists","genre":"Crime","title":"The Man with the Golden Arm","releaseDate":-443404800000,"language":"en","type":"Movie","_key":"5468"} +{"label":"Eleanor Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4bd5f839017a3c658900012d\/eleanor-parker-profile.jpg","version":34,"id":"7331","lastModified":"1299855723000","name":"Eleanor Parker","type":"Person","_key":"5469"} +{"label":"Arnold Stang","version":24,"id":"7332","lastModified":"1299492728000","name":"Arnold Stang","type":"Person","_key":"5470"} +{"label":"Darren McGavin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ab\/4c2828d85e73d61a980002ab\/darren-mcgavin-profile.jpg","version":39,"id":"7333","lastModified":"1299492611000","name":"Darren McGavin","type":"Person","_key":"5471"} +{"label":"Robert Strauss","version":19,"id":"7347","lastModified":"1299493923000","name":"Robert Strauss","type":"Person","_key":"5472"} +{"label":"El Crimen del Padre Amaro","description":"The young Father Amaro is put to the test. He is sent to Mexico to help take care of aging Father Benito when he meets a 16-year-old girl that he begins and affair with. It turns out the girls mother had been having an affair with Father Benito. Father Amaro must soon choose between the holy or the sinful life.","id":"542","runtime":118,"imdbId":"tt0313196","homepage":"http:\/\/padreamaro.ad2.com\/site\/home_eng.htm","version":67,"lastModified":"1299804510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed4\/4bc90892017a3c57fe002ed4\/el-crimen-del-padre-amaro-mid.jpg","studio":"Instituto Mexicano de Cinematograf\u00eda","genre":"Drama","title":"El Crimen del Padre Amaro","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"5473"} +{"label":"Carlos Carrera","version":13,"id":"7348","lastModified":"1299493832000","name":"Carlos Carrera","type":"Person","_key":"5474"} +{"label":"Ana Claudia Talanc\u00f3n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81b\/4cd9c0027b9aa113ac00081b\/ana-claudia-talancon-profile.jpg","version":28,"id":"7351","lastModified":"1299492485000","name":"Ana Claudia Talanc\u00f3n","type":"Person","_key":"5475"} +{"label":"Sancho Gracia","version":18,"id":"7352","lastModified":"1299494748000","name":"Sancho Gracia","type":"Person","_key":"5476"} +{"label":"Ang\u00e9lica Arag\u00f3n","version":20,"id":"7353","lastModified":"1299492628000","name":"Ang\u00e9lica Arag\u00f3n","type":"Person","_key":"5477"} +{"label":"Ernesto G\u00f3mez Cruz","version":20,"id":"7368","lastModified":"1299495961000","name":"Ernesto G\u00f3mez Cruz","type":"Person","_key":"5478"} +{"label":"Gast\u00f3n Melo","version":13,"id":"7369","lastModified":"1299495217000","name":"Gast\u00f3n Melo","type":"Person","_key":"5479"} +{"label":"Dami\u00e1n Alc\u00e1zar","version":37,"id":"7370","lastModified":"1299492414000","name":"Dami\u00e1n Alc\u00e1zar","type":"Person","_key":"5480"} +{"label":"Andr\u00e9s Montiel","version":13,"id":"7371","lastModified":"1299495217000","name":"Andr\u00e9s Montiel","type":"Person","_key":"5481"} +{"label":"Pedro Armend\u00e1riz Jr.","version":49,"id":"7372","lastModified":"1299492411000","name":"Pedro Armend\u00e1riz Jr.","type":"Person","_key":"5482"} +{"label":"Blanca Loaria","version":13,"id":"7373","lastModified":"1299495217000","name":"Blanca Loaria","type":"Person","_key":"5483"} +{"label":"Juan Ignacio Aranda","version":14,"id":"7374","lastModified":"1299495216000","name":"Juan Ignacio Aranda","type":"Person","_key":"5484"} +{"label":"Ver\u00f3nica Langer","version":13,"id":"7375","lastModified":"1299495216000","name":"Ver\u00f3nica Langer","type":"Person","_key":"5485"} +{"label":"Jorge Z\u00e1rate","version":16,"id":"7376","lastModified":"1299495216000","name":"Jorge Z\u00e1rate","type":"Person","_key":"5486"} +{"label":"Lorenzo de Rodas","version":13,"id":"7377","lastModified":"1299495216000","name":"Lorenzo de Rodas","type":"Person","_key":"5487"} +{"label":"Roger Nevares","version":13,"id":"7378","lastModified":"1299495961000","name":"Roger Nevares","type":"Person","_key":"5488"} +{"label":"Blackmail","description":"The 1929 Blackmail film was one of the earliest signs of Alfred Hitchcock\u2019s genius as a director.","id":"543","runtime":84,"imdbId":"tt0019702","version":109,"lastModified":"1299911179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edd\/4bc90896017a3c57fe002edd\/blackmail-mid.jpg","studio":"British International Pictures","genre":"Drama","title":"Blackmail","releaseDate":-1278288000000,"language":"en","type":"Movie","_key":"5489"} +{"label":"Frank Mills","version":17,"id":"7389","lastModified":"1299495678000","name":"Frank Mills","type":"Person","_key":"5490"} +{"label":"Anny Ondra","version":13,"id":"7380","lastModified":"1299494070000","name":"Anny Ondra","type":"Person","_key":"5491"} +{"label":"Sara Allgood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b4\/4c6a9dd07b9aa13ab70000b4\/sara-allgood-profile.jpg","version":32,"id":"7381","lastModified":"1299757101000","name":"Sara Allgood","type":"Person","_key":"5492"} +{"label":"John Longden","version":20,"id":"7383","lastModified":"1299493228000","name":"John Longden","type":"Person","_key":"5493"} +{"label":"Donald Calthrop","version":18,"id":"7384","lastModified":"1299495686000","name":"Donald Calthrop","type":"Person","_key":"5494"} +{"label":"Charles Paton","version":13,"id":"7382","lastModified":"1299495652000","name":"Charles Paton","type":"Person","_key":"5495"} +{"label":"Cyril Ritchard","version":16,"id":"7393","lastModified":"1299909691000","name":"Cyril Ritchard","type":"Person","_key":"5496"} +{"label":"There's Something About Mary","description":"Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her. ","id":"544","runtime":119,"imdbId":"tt0129387","trailer":"http:\/\/www.youtube.com\/watch?v=eGjXwDYpOLE","homepage":"http:\/\/www.aboutmary.com\/","version":201,"lastModified":"1299912259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efd\/4bc90899017a3c57fe002efd\/there-s-something-about-mary-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"There's Something About Mary","releaseDate":900460800000,"language":"en","type":"Movie","_key":"5497"} +{"label":"Bobby Farrelly","version":87,"id":"7395","lastModified":"1299492527000","name":"Bobby Farrelly","type":"Person","_key":"5498"} +{"label":"Peter Farrelly","version":82,"id":"7396","lastModified":"1299492317000","name":"Peter Farrelly","type":"Person","_key":"5499"} +{"label":"Ben Stiller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4bd400a7017a3c7faa00002c\/ben-stiller-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bBenjamin Edward \"Ben\" Stiller (born November 30, 1965) is an American comedian, actor, writer, film director, and producer. He is the son of veteran comedians and actors Jerry Stiller and Anne Meara.<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">After beginning his acting ","version":260,"birthday":"-128998800000","id":"7399","birthplace":"New York City, New York, USA","lastModified":"1299947633000","name":"Ben Stiller","type":"Person","_key":"5500"} +{"label":"Markie Post","version":15,"id":"7402","lastModified":"1299494984000","name":"Markie Post","type":"Person","_key":"5501"} +{"label":"Keith David","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4c3971365e73d671d30000ba\/keith-david-profile.jpg","version":166,"id":"65827","lastModified":"1299959033000","name":"Keith David","type":"Person","_key":"5502"} +{"label":"Sarah Silverman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/065\/4c508de97b9aa13d4c000065\/sarah-silverman-profile.jpg","version":35,"id":"7404","lastModified":"1299492690000","name":"Sarah Silverman","type":"Person","_key":"5503"} +{"label":"Brett Favre","version":14,"id":"7419","lastModified":"1299495269000","name":"Brett Favre","type":"Person","_key":"5504"} +{"label":"Transamerica","description":"Stanley is about to get a sex change operation that will finally allow him to actually be what he\u2019s already been in his mind for a long time: a woman. Yet before this happens she suddenly runs into her son who ends up coming for the trip across the United States.","id":"546","runtime":103,"imdbId":"tt0407265","trailer":"http:\/\/www.youtube.com\/watch?v=PPbGIErXKpE","homepage":"http:\/\/www.transamerica-movie.com\/","version":133,"lastModified":"1299978764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f16\/4bc9089e017a3c57fe002f16\/transamerica-mid.jpg","studio":"IFC Films","genre":"Drama","title":"Transamerica","releaseDate":1135296000000,"language":"en","type":"Movie","_key":"5505"} +{"label":"Duncan Tucker","version":13,"id":"7426","lastModified":"1299494232000","name":"Duncan Tucker","type":"Person","_key":"5506"} +{"label":"Kevin Zegers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4c9dc9507b9aa1578a000061\/kevin-zegers-profile.jpg","version":62,"id":"7431","lastModified":"1299540411000","name":"Kevin Zegers","type":"Person","_key":"5507"} +{"label":"Elizabeth Pe\u00f1a","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4d2682117b9aa134d300105b\/elizabeth-pe-a-profile.jpg","version":41,"id":"7430","lastModified":"1300030402000","name":"Elizabeth Pe\u00f1a","type":"Person","_key":"5508"} +{"label":"Danny Burstein","version":12,"id":"7428","lastModified":"1299494232000","name":"Danny Burstein","type":"Person","_key":"5509"} +{"label":"Maurice Orozco","version":12,"id":"7429","lastModified":"1299495260000","name":"Maurice Orozco","type":"Person","_key":"5510"} +{"label":"Grant Monohon","version":15,"id":"7463","lastModified":"1299495307000","name":"Grant Monohon","type":"Person","_key":"5511"} +{"label":"Carrie Preston","version":21,"id":"7465","lastModified":"1299492710000","name":"Carrie Preston","type":"Person","_key":"5512"} +{"label":"Paul Borghese","version":24,"id":"7466","lastModified":"1299926115000","name":"Paul Borghese","type":"Person","_key":"5513"} +{"label":"Fionnula Flanagan","version":52,"id":"58068","lastModified":"1299898804000","name":"Fionnula Flanagan","type":"Person","_key":"5514"} +{"label":"The Horse Whisperer","description":"Based on the novel by the same name from Nicholas Evans, the talented Robert Redford presents this meditative family drama set in the country side. Redford not only directs but also stars in the roll of a cowboy with a magical talent for healing.","id":"547","runtime":170,"imdbId":"tt0119314","version":121,"lastModified":"1299978568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f28\/4bc908a2017a3c57fe002f28\/the-horse-whisperer-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"The Horse Whisperer","releaseDate":895190400000,"language":"en","type":"Movie","_key":"5515"} +{"label":"Ty Hillman","version":14,"id":"7516","lastModified":"1299496006000","name":"Ty Hillman","type":"Person","_key":"5516"} +{"label":"Kate Bosworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4bf0549b017a3c2d3700000d\/kate-bosworth-profile.jpg","version":55,"birthday":"410310000000","id":"7517","birthplace":"Los Angeles, California, USA","lastModified":"1300012940000","name":"Kate Bosworth","type":"Person","_key":"5517"} +{"label":"Austin Schwarz","version":14,"id":"7518","lastModified":"1299494668000","name":"Austin Schwarz","type":"Person","_key":"5518"} +{"label":"Dustin Schwarz","version":14,"id":"7519","lastModified":"1299496006000","name":"Dustin Schwarz","type":"Person","_key":"5519"} +{"label":"Jeanette Nolan","version":28,"id":"7520","lastModified":"1299492826000","name":"Jeanette Nolan","type":"Person","_key":"5520"} +{"label":"Steve Frye","version":14,"id":"7521","lastModified":"1299494668000","name":"Steve Frye","type":"Person","_key":"5521"} +{"label":"Don Edwards","version":14,"id":"7522","lastModified":"1299496006000","name":"Don Edwards","type":"Person","_key":"5522"} +{"label":"Jessalyn Gilsig","version":19,"id":"7523","lastModified":"1299495054000","name":"Jessalyn Gilsig","type":"Person","_key":"5523"} +{"label":"William 'Buddy' Byrd","version":15,"id":"7525","lastModified":"1299494411000","name":"William 'Buddy' Byrd","type":"Person","_key":"5524"} +{"label":"John Hogarty","version":14,"id":"7526","lastModified":"1299494668000","name":"John Hogarty","type":"Person","_key":"5525"} +{"label":"Michel Lalonde","version":18,"id":"7527","lastModified":"1299496006000","name":"Michel Lalonde","type":"Person","_key":"5526"} +{"label":"C.J. Byrnes","version":14,"id":"7528","lastModified":"1299494668000","name":"C.J. Byrnes","type":"Person","_key":"5527"} +{"label":"Allison Moorer","version":17,"id":"7529","lastModified":"1299494668000","name":"Allison Moorer","type":"Person","_key":"5528"} +{"label":"Rash\u00f4mon","description":"In ancient Japan a crime take place as told from three different travelers who have experienced the crime: a man being killed and his wife being raped. Which if any of the stories is true? A Akira Kurosawa film about morals, truth, and communication.","id":"548","runtime":88,"imdbId":"tt0042876","trailer":"http:\/\/www.youtube.com\/watch?v=sBn4cvHKPUc","version":82,"lastModified":"1299531831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/302\/4cb178905e73d65b84000302\/rashomon-mid.jpg","studio":"Daiei Motion Picture","genre":"Crime","title":"Rash\u00f4mon","releaseDate":-610761600000,"language":"en","type":"Movie","_key":"5529"} +{"label":"Machiko Ky\u00f4","version":16,"id":"7451","lastModified":"1299493884000","name":"Machiko Ky\u00f4","type":"Person","_key":"5530"} +{"label":"Masayuki Mori","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ce\/4c28b7cf7b9aa1446a0003ce\/masayuki-mori-profile.jpg","version":41,"id":"7452","lastModified":"1299916794000","name":"Masayuki Mori","type":"Person","_key":"5531"} +{"label":"Kichijir\u00f4 Ueda","version":15,"id":"7455","lastModified":"1299495872000","name":"Kichijir\u00f4 Ueda","type":"Person","_key":"5532"} +{"label":"Noriko Honma","version":15,"id":"7456","lastModified":"1299496203000","name":"Noriko Honma","type":"Person","_key":"5533"} +{"label":"Basquiat","description":"Director Julian Schnabel illustrates the portrait of the his friend, the first Afro-American Pop Art artist Jean Michel Basquiat who unfortunately died at a young age and just as he was beginning to make a name for himself in the art world. Along side the biography of Basquiat are the artists and the art scene from the early 1980\u2019s New York.","id":"549","runtime":108,"imdbId":"tt0115632","version":143,"lastModified":"1299978262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f48\/4bc908a4017a3c57fe002f48\/basquiat-mid.png","studio":"Miramax Films","genre":"Drama","title":"Basquiat","releaseDate":839548800000,"language":"en","type":"Movie","_key":"5534"} +{"label":"Julian Schnabel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51a\/4d08c6045e73d6745000051a\/julian-schnabel-profile.jpg","biography":"Julian Schnabel is an American artist and filmmaker. In the 1980s Schnabel received international media attention for his \"plate paintings\"\u2014large-scale paintings set on broken ceramic plates.\n\nSchnabel directed Before Night Falls, which became Javier Bardem's breakthrough Academy Award nominated role and the four-time Academy Award nominated The Diving Bell and the Butterfly.\n\nHe has won a Golden Globe, as well as BAFTA, a C\u00e9sar Award, a Golden Palm, two nominations for the Golden Lion and an Ac","version":35,"birthday":"-573872400000","id":"7482","birthplace":"Brooklyn, New York, USA","lastModified":"1299492490000","name":"Julian Schnabel","type":"Person","_key":"5535"} +{"label":"David Bowie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a2\/4c083630017a3c7e870006a2\/david-bowie-profile.jpg","version":56,"id":"7487","lastModified":"1299609389000","name":"David Bowie","type":"Person","_key":"5536"} +{"label":"Jean-Claude La Marre","version":15,"id":"7488","lastModified":"1299495651000","name":"Jean-Claude La Marre","type":"Person","_key":"5537"} +{"label":"Parker Posey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4ceea7a55e73d6531600011e\/parker-posey-profile.jpg","version":71,"birthday":"-36205200000","id":"7489","lastModified":"1299672020000","name":"Parker Posey","type":"Person","_key":"5538"} +{"label":"Courtney Love","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/52d\/4d08c6fe5e73d6745c00052d\/courtney-love-profile.jpg","biography":"Courtney Michelle Love is an American rock musician and actress. Love is primarily known as lead singer, guitarist and lyricist for alternative rock band Hole.\n\nFollowing a turbulent childhood, Love made her debut in the entertainment industry with a bit part in Alex Cox's Sid and Nancy (1986). Eventually finding her passion in rock music rather than acting, Love formed Hole in 1989 with guitarist Eric Erlandson. Hole released several albums throughout the 1990s, Live Through This (1994) being m","version":36,"birthday":"-172976400000","id":"7621","birthplace":"San Francisco, California, USA","lastModified":"1299492210000","name":"Courtney Love","type":"Person","_key":"5539"} +{"label":"Hope Clarke","version":14,"id":"7622","lastModified":"1299494759000","name":"Hope Clarke","type":"Person","_key":"5540"} +{"label":"Fight Club","description":"A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.","id":"550","runtime":138,"imdbId":"tt0137523","trailer":"http:\/\/www.youtube.com\/watch?v=SUXWAEX2jlg","homepage":"http:\/\/www.foxmovies.com\/fightclub\/","version":357,"lastModified":"1299978100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7f\/4bc908ae017a3c57fe002f7f\/fight-club-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Fight Club","releaseDate":937440000000,"language":"en","tagline":"How much can you know about yourself if you've never been in a fight?","type":"Movie","_key":"5541"} +{"label":"Meat Loaf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19c\/4c2684755e73d61a9400019c\/meat-loaf-profile.jpg","version":66,"birthday":"-702612000000","id":"7470","birthplace":"Dallas, TX","lastModified":"1299491336000","name":"Meat Loaf","type":"Person","_key":"5542"} +{"label":"Zach Grenier","version":44,"id":"7471","lastModified":"1299492315000","name":"Zach Grenier","type":"Person","_key":"5543"} +{"label":"Richmond Arquette","version":37,"id":"7472","lastModified":"1299492146000","name":"Richmond Arquette","type":"Person","_key":"5544"} +{"label":"Rachel Singer","version":29,"id":"7473","lastModified":"1299492516000","name":"Rachel Singer","type":"Person","_key":"5545"} +{"label":"Holt McCallany","version":52,"id":"7497","lastModified":"1299543752000","name":"Holt McCallany","type":"Person","_key":"5546"} +{"label":"Eion Bailey","version":50,"id":"7498","lastModified":"1299492005000","name":"Eion Bailey","type":"Person","_key":"5547"} +{"label":"Jared Leto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21b\/4c4730a45e73d61ef900021b\/jared-leto-profile.jpg","version":96,"id":"7499","lastModified":"1299582421000","name":"Jared Leto","type":"Person","_key":"5548"} +{"label":"Peter Iacangelo","version":29,"id":"7500","lastModified":"1299492397000","name":"Peter Iacangelo","type":"Person","_key":"5549"} +{"label":"The Poseidon Adventure","description":"The Poseidon Adventure was one of the first Catastrophe films and began the Disaster Film genre. Director Neame tells the story of a group of people that must fight for their lives aboard a sinking ship.","id":"551","runtime":117,"imdbId":"tt0069113","version":112,"lastModified":"1299912099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9f\/4bc908b4017a3c57fe002f9f\/the-poseidon-adventure-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Poseidon Adventure","releaseDate":92966400000,"language":"en","type":"Movie","_key":"5550"} +{"label":"Ronald Neame","version":33,"id":"7501","lastModified":"1300090432000","name":"Ronald Neame","type":"Person","_key":"5551"} +{"label":"Ernest Borgnine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27b\/4bd9a834017a3c1c0500027b\/ernest-borgnine-profile.jpg","version":124,"id":"7502","lastModified":"1300027583000","name":"Ernest Borgnine","type":"Person","_key":"5552"} +{"label":"Red Buttons","version":38,"id":"7503","lastModified":"1300090428000","name":"Red Buttons","type":"Person","_key":"5553"} +{"label":"Carol Lynley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4c24f2737b9aa1446e000115\/carol-lynley-profile.jpg","version":26,"id":"7504","lastModified":"1300090392000","name":"Carol Lynley","type":"Person","_key":"5554"} +{"label":"Roddy McDowall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/754\/4c6e8c297b9aa13ab6000754\/roddy-mcdowall-profile.jpg","version":97,"id":"7505","lastModified":"1299926752000","name":"Roddy McDowall","type":"Person","_key":"5555"} +{"label":"Stella Stevens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/167\/4c24ef897b9aa1446c000167\/stella-stevens-profile.jpg","version":39,"id":"7631","lastModified":"1300090399000","name":"Stella Stevens","type":"Person","_key":"5556"} +{"label":"Shelley Winters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/119\/4bd5a49e017a3c2e70000119\/shelley-winters-profile.jpg","version":89,"id":"7632","lastModified":"1300090261000","name":"Shelley Winters","type":"Person","_key":"5557"} +{"label":"Leslie Nielsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/340\/4bd21643017a3c63e8000340\/leslie-nielsen-profile.jpg","version":118,"birthday":"-1384995600000","id":"7633","birthplace":"Regina, Saskatchewan, Canada","lastModified":"1300090244000","name":"Leslie Nielsen","type":"Person","_key":"5558"} +{"label":"Pamela Sue Martin","version":18,"id":"7634","lastModified":"1300090986000","name":"Pamela Sue Martin","type":"Person","_key":"5559"} +{"label":"Eric Shea","version":15,"id":"7635","lastModified":"1300091113000","name":"Eric Shea","type":"Person","_key":"5560"} +{"label":"Fred Sadoff","version":15,"id":"7636","lastModified":"1300091113000","name":"Fred Sadoff","type":"Person","_key":"5561"} +{"label":"Bread and Tulips","description":"An endearing light comedy about a woman who spontaneously becomes a resident of Venice after her family left her begin. While enjoying the wonderful people she meets she achieves a new life and the first time independent of her family.","id":"552","runtime":114,"imdbId":"tt0237539","homepage":"http:\/\/www.brotundtulpen.de\/","version":150,"lastModified":"1299977723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fad\/4bc908b6017a3c57fe002fad\/pane-e-tulipani-mid.jpg","studio":"Istituto Luce","genre":"Comedy","title":"Bread and Tulips","releaseDate":1008892800000,"language":"en","type":"Movie","_key":"5562"} +{"label":"Licia Maglietta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/676\/4ca9d69e5e73d643f0000676\/licia-maglietta-profile.jpg","version":18,"id":"7540","lastModified":"1300090538000","name":"Licia Maglietta","type":"Person","_key":"5563"} +{"label":"Giuseppe Battiston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67a\/4ca9d71e5e73d643f000067a\/giuseppe-battiston-profile.jpg","version":30,"id":"7541","lastModified":"1300091021000","name":"Giuseppe Battiston","type":"Person","_key":"5564"} +{"label":"Antonio Catania","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4bfff91a017a3c702f00106c\/antonio-catania-profile.jpg","biography":"Antonio Catania (Acireale, 22 febbraio 1952) \u00e8 un attore italiano.","version":37,"birthday":"-563590800000","id":"7542","birthplace":"Acireale, Italy","lastModified":"1300091046000","name":"Antonio Catania","type":"Person","_key":"5565"} +{"label":"Marina Massironi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4bfff8b6017a3c7033001062\/marina-massironi-profile.jpg","biography":"Marina Massironi (Legnano, 16 maggio 1963) \u00e8 un'attrice, comica e doppiatrice italiana di teatro, cinema e televisione, nota anche per essere stata spalla di scena del trio Aldo, Giovanni e Giacomo.\nInizi\u00f2 gli studi di recitazione alla fine del 1982 ed ebbe le sue prime scritture teatrali circa due anni dopo. Nel frattempo sposatasi con Giacomo Poretti, intraprese con questi l'attivit\u00e0 cabarettistica, creando il duo noto con il nome di Hansel & Str\u00fcdel. Il divorzio da Poretti non cess\u00f2 tuttavia ","version":25,"birthday":"-209264400000","id":"7543","birthplace":"Legnano, Italy","lastModified":"1300090776000","name":"Marina Massironi","type":"Person","_key":"5566"} +{"label":"Felice Andreasi","version":16,"id":"7544","lastModified":"1300091699000","name":"Felice Andreasi","type":"Person","_key":"5567"} +{"label":"Vitalba Andrea","version":14,"id":"7545","lastModified":"1300091574000","name":"Vitalba Andrea","type":"Person","_key":"5568"} +{"label":"Tatiana Lepore","version":15,"id":"7546","lastModified":"1300091699000","name":"Tatiana Lepore","type":"Person","_key":"5569"} +{"label":"Daniela Piperno","version":14,"id":"7547","lastModified":"1300091394000","name":"Daniela Piperno","type":"Person","_key":"5570"} +{"label":"Tiziano Cucchiarelli","version":16,"id":"7548","lastModified":"1300091204000","name":"Tiziano Cucchiarelli","type":"Person","_key":"5571"} +{"label":"Matteo Febo","version":14,"id":"7549","lastModified":"1300091393000","name":"Matteo Febo","type":"Person","_key":"5572"} +{"label":"Lina Bernardi","version":17,"id":"7550","lastModified":"1300091574000","name":"Lina Bernardi","type":"Person","_key":"5573"} +{"label":"Mauro Marino","version":17,"id":"7551","lastModified":"1300091574000","name":"Mauro Marino","type":"Person","_key":"5574"} +{"label":"Antonia Miccoli","version":15,"id":"7552","lastModified":"1300091492000","name":"Antonia Miccoli","type":"Person","_key":"5575"} +{"label":"Ludovico Paladin","version":14,"id":"7553","lastModified":"1300091393000","name":"Ludovico Paladin","type":"Person","_key":"5576"} +{"label":"Silvana Bosi","version":15,"id":"7556","lastModified":"1300091574000","name":"Silvana Bosi","type":"Person","_key":"5577"} +{"label":"Silvio Soldini","version":35,"id":"7554","lastModified":"1300091240000","name":"Silvio Soldini","type":"Person","_key":"5578"} +{"label":"Dogville","description":"Director Lars von Trier depicts the vivid moral informative film about the ruthlessness of civil society. Filmed in a minimalist style, that until recently was unrecognized, the Danish filmmaker depicts the quite familiar themes of guilt and forgiveness, good and evil, and the moral chasm of humanity.","id":"553","runtime":178,"imdbId":"tt0276919","trailer":"http:\/\/www.youtube.com\/watch?v=IzLnpQBzmko","homepage":"http:\/\/www.dogville.dk\/","version":178,"lastModified":"1299977543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/107\/4c413c567b9aa14594000107\/dogville-mid.jpg","genre":"Crime","title":"Dogville","releaseDate":1053302400000,"language":"en","type":"Movie","_key":"5579"} +{"label":"Harriet Andersson","version":29,"id":"7569","lastModified":"1300090543000","name":"Harriet Andersson","type":"Person","_key":"5580"} +{"label":"Lauren Bacall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f7\/4bd70ccd017a3c21ec0000f7\/lauren-bacall-profile.jpg","version":76,"id":"7570","lastModified":"1300090398000","name":"Lauren Bacall","type":"Person","_key":"5581"} +{"label":"Blair Brown","version":60,"id":"7571","lastModified":"1300091013000","name":"Blair Brown","type":"Person","_key":"5582"} +{"label":"Thom Hoffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f0\/4ca82ebd5e73d643ef0002f0\/thom-hoffman-profile.jpg","version":27,"id":"7572","lastModified":"1300131670000","name":"Thom Hoffman","type":"Person","_key":"5583"} +{"label":"Cleo King","version":25,"id":"7574","lastModified":"1300090322000","name":"Cleo King","type":"Person","_key":"5584"} +{"label":"Miles Purinton","version":15,"id":"7575","lastModified":"1300091027000","name":"Miles Purinton","type":"Person","_key":"5585"} +{"label":"Bill Raymond","version":22,"id":"7576","lastModified":"1300090747000","name":"Bill Raymond","type":"Person","_key":"5586"} +{"label":"Shauna Shim","version":20,"id":"7577","lastModified":"1300091204000","name":"Shauna Shim","type":"Person","_key":"5587"} +{"label":"Evelina Brinkemo","version":15,"id":"7578","lastModified":"1300090901000","name":"Evelina Brinkemo","type":"Person","_key":"5588"} +{"label":"Anna Brobeck","version":15,"id":"7579","lastModified":"1300091393000","name":"Anna Brobeck","type":"Person","_key":"5589"} +{"label":"Tilde Lindgren","version":15,"id":"7580","lastModified":"1300091027000","name":"Tilde Lindgren","type":"Person","_key":"5590"} +{"label":"Evelina Lundqvist","version":15,"id":"7581","lastModified":"1300091027000","name":"Evelina Lundqvist","type":"Person","_key":"5591"} +{"label":"Helga Olofsson","version":15,"id":"7582","lastModified":"1300091204000","name":"Helga Olofsson","type":"Person","_key":"5592"} +{"label":"The Cuckoo","description":"The Cuckoo is an experiment. Three people, three languages, and one love. This is director Aleksandr Rogozhkin\u2019s declaration of love for Siberia and an award winner that made new Russian film available for the western world to enjoy.","id":"554","runtime":100,"imdbId":"tt0308476","version":96,"lastModified":"1299813494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffc\/4d50cb8b5e73d617bd003ffc\/kukushka-mid.jpg","studio":"CTB Film Company","genre":"Drama","title":"The Cuckoo","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"5593"} +{"label":"Aleksandr Rogozhkin","version":24,"id":"7588","lastModified":"1300090843000","name":"Aleksandr Rogozhkin","type":"Person","_key":"5594"} +{"label":"Anni-Kristiina Juuso","version":17,"id":"7589","lastModified":"1300091089000","name":"Anni-Kristiina Juuso","type":"Person","_key":"5595"} +{"label":"Ville Haapasalo","version":25,"id":"7590","lastModified":"1300090593000","name":"Ville Haapasalo","type":"Person","_key":"5596"} +{"label":"Viktor Bychkov","version":27,"id":"86718","lastModified":"1300093996000","name":"Viktor Bychkov","type":"Person","_key":"5597"} +{"label":"Absolut","description":"Two guys against globalization want to plant a virus in the network of a finance corporation. On the day of the attack Alex has an accident and cannot remember anything.","id":"555","runtime":94,"imdbId":"tt0442896","homepage":"http:\/\/www.luecke-im-system.de\/","version":77,"lastModified":"1299670792000","studio":"Frenetic Films","genre":"Thriller","title":"Absolut","releaseDate":1113955200000,"language":"en","type":"Movie","_key":"5598"} +{"label":"Romed Wyder","version":16,"id":"7601","lastModified":"1300091459000","name":"Romed Wyder","type":"Person","_key":"5599"} +{"label":"Nicole Borgeat","version":14,"id":"7616","lastModified":"1300091155000","name":"Nicole Borgeat","type":"Person","_key":"5600"} +{"label":"Vincent Bonillo","version":18,"id":"7604","lastModified":"1300091155000","name":"Vincent Bonillo","type":"Person","_key":"5601"} +{"label":"Ir\u00e9ne Godel","version":18,"id":"7605","lastModified":"1300091155000","name":"Ir\u00e9ne Godel","type":"Person","_key":"5602"} +{"label":"Fran\u00e7ois Nadin","version":14,"id":"7606","lastModified":"1300091296000","name":"Fran\u00e7ois Nadin","type":"Person","_key":"5603"} +{"label":"Delphine Lanza","version":14,"id":"7607","lastModified":"1300091170000","name":"Delphine Lanza","type":"Person","_key":"5604"} +{"label":"V\u00e9ronique Mermoud","version":18,"id":"7608","lastModified":"1300091659000","name":"V\u00e9ronique Mermoud","type":"Person","_key":"5605"} +{"label":"Ulysse Pr\u00e9vost","version":18,"id":"7609","lastModified":"1300091686000","name":"Ulysse Pr\u00e9vost","type":"Person","_key":"5606"} +{"label":"Spider-Man Collection","description":"The series of Spider-Man films beginning with Spider-Man in 2002. The films are inspired by the stories from the popular comic book series.","id":"556","version":187,"lastModified":"1300123919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd2\/4bc908bb017a3c57fe002fd2\/spider-man-collection-mid.jpg","title":"Spider-Man Collection","language":"en","type":"Movie","_key":"5607"} +{"label":"Spider-Man","description":"After being chomped by a genetically altered spider, shy high schooler Peter Parker is endowed with amazing superpowers. And while he first uses them to win wrestling matches, he'll eventually need them to battle a villain known as the Green Goblin. Peter's abilities allow him to win the girl of his dreams, but family tragedy and a suspicious best friend leave him emotionally drained.","id":"557","runtime":121,"imdbId":"tt0145487","trailer":"http:\/\/www.youtube.com\/watch?v=YWl52xsgN5w","homepage":"http:\/\/spiderman.sonypictures.com\/index.php","version":1012,"lastModified":"1299976875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/921\/4cda39085e73d676cd000921\/spider-man-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Spider-Man","releaseDate":1009843200000,"language":"en","tagline":"With great power comes great responsibility.","type":"Movie","_key":"5608"} +{"label":"Sam Raimi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/429\/4bfa7211017a3c7031000429\/sam-raimi-profile.jpg","version":144,"birthday":"-321670800000","id":"7623","lastModified":"1300090293000","name":"Sam Raimi","type":"Person","_key":"5609"} +{"label":"Cliff Robertson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4c30abf55e73d63ccc0001cc\/cliff-robertson-profile.jpg","version":101,"id":"19153","lastModified":"1300090526000","name":"Cliff Robertson","type":"Person","_key":"5610"} +{"label":"James Franco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4bf0fd3f017a3c320a0000fa\/james-franco-profile.jpg","version":154,"birthday":"261788400000","id":"17051","birthplace":"Palo Alto, California, United States","lastModified":"1300127326000","name":"James Franco","type":"Person","_key":"5611"} +{"label":"J.K. Simmons","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1db\/4c30bd6b5e73d63ccc0001db\/j-k-simmons-profile.jpg","version":131,"id":"18999","lastModified":"1300090250000","name":"J.K. Simmons","type":"Person","_key":"5612"} +{"label":"Joe Manganiello","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c30c37c5e73d640bc000001\/joe-manganiello-profile.jpg","version":45,"id":"20580","lastModified":"1300090843000","name":"Joe Manganiello","type":"Person","_key":"5613"} +{"label":"Rosemary Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a7\/4c30b0e35e73d63ccd0001a7\/rosemary-harris-profile.jpg","version":68,"id":"18998","lastModified":"1300090743000","name":"Rosemary Harris","type":"Person","_key":"5614"} +{"label":"Gerry Becker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4c41ad7e5e73d60f37000095\/gerry-becker-profile.jpg","version":29,"id":"19468","lastModified":"1300091518000","name":"Gerry Becker","type":"Person","_key":"5615"} +{"label":"Bruce Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4be\/4bfa6f2f017a3c702d0004be\/bruce-campbell-profile.jpg","version":141,"id":"11357","lastModified":"1300090293000","name":"Bruce Campbell","type":"Person","_key":"5616"} +{"label":"Stanley Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4c41b8695e73d60f3a0000b1\/stanley-anderson-profile.jpg","version":41,"id":"15253","lastModified":"1299927194000","name":"Stanley Anderson","type":"Person","_key":"5617"} +{"label":"Ron Perkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4c41bdfd5e73d60f3a0000b5\/ron-perkins-profile.jpg","version":29,"id":"125024","lastModified":"1300095500000","name":"Ron Perkins","type":"Person","_key":"5618"} +{"label":"Michael Papajohn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c30e7675e73d640bc000012\/michael-papajohn-profile.jpg","version":53,"id":"20582","lastModified":"1300095763000","name":"Michael Papajohn","type":"Person","_key":"5619"} +{"label":"Jack Betts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b0\/4c30c4b35e73d63cce0001b0\/jack-betts-profile.jpg","version":26,"id":"20581","lastModified":"1300090374000","name":"Jack Betts","type":"Person","_key":"5620"} +{"label":"Elizabeth Banks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81c\/4cf190e27b9aa13eea00081c\/elizabeth-banks-profile.jpg","version":138,"birthday":"129682800000","id":"9281","birthplace":"Pittsfield, Massachusetts, USA","lastModified":"1300094533000","name":"Elizabeth Banks","type":"Person","_key":"5621"} +{"label":"Shan Omar Huey","version":23,"id":"20583","lastModified":"1300091176000","name":"Shan Omar Huey","type":"Person","_key":"5622"} +{"label":"Lucy Lawless","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4c422ba25e73d60f3a0000fe\/lucy-lawless-profile.jpg","version":56,"id":"20584","lastModified":"1300090348000","name":"Lucy Lawless","type":"Person","_key":"5623"} +{"label":"Robert Kerman","version":36,"id":"55648","lastModified":"1300090464000","name":"Robert Kerman","type":"Person","_key":"5624"} +{"label":"Ted Raimi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c40a17f5e73d60f3b000022\/ted-raimi-profile.jpg","version":75,"id":"11769","lastModified":"1300090824000","name":"Ted Raimi","type":"Person","_key":"5625"} +{"label":"John Paxton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/103\/4c4237415e73d60f3a000103\/john-paxton-profile.jpg","version":55,"id":"19326","lastModified":"1300095756000","name":"John Paxton","type":"Person","_key":"5626"} +{"label":"Randy Savage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10c\/4c423e525e73d60f3600010c\/randy-savage-profile.jpg","version":37,"id":"89023","lastModified":"1300093598000","name":"Randy Savage","type":"Person","_key":"5627"} +{"label":"Jayce Bartok","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4c4245585e73d60f390000f2\/jayce-bartok-profile.jpg","version":31,"id":"21130","lastModified":"1300091505000","name":"Jayce Bartok","type":"Person","_key":"5628"} +{"label":"Sara Ramirez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/117\/4c4248fe5e73d60f3a000117\/sara-ramirez-profile.jpg","version":31,"id":"125055","lastModified":"1300095499000","name":"Sara Ramirez","type":"Person","_key":"5629"} +{"label":"Spider-Man 2","description":"Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.","id":"558","runtime":127,"imdbId":"tt0316654","trailer":"http:\/\/www.youtube.com\/watch?v=bIzojUfMJbg","homepage":"http:\/\/www.spider-man-2.de\/","version":714,"lastModified":"1299976673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/032\/4bc908c9017a3c57fe003032\/spider-man-2-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Spider-Man 2","releaseDate":1088553600000,"language":"en","tagline":"Sacrifice","type":"Movie","_key":"5630"} +{"label":"Daniel Gillies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1dc\/4c30fa6c5e73d63ccd0001dc\/daniel-gillies-profile.jpg","version":47,"id":"19154","lastModified":"1300091318000","name":"Daniel Gillies","type":"Person","_key":"5631"} +{"label":"Dylan Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19c\/4c30a9875e73d63cce00019c\/dylan-baker-profile.jpg","version":83,"id":"19152","lastModified":"1300090590000","name":"Dylan Baker","type":"Person","_key":"5632"} +{"label":"Vanessa Ferlito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/200\/4c310ec45e73d63ccf000200\/vanessa-ferlito-profile.jpg","version":60,"id":"20491","lastModified":"1300090447000","name":"Vanessa Ferlito","type":"Person","_key":"5633"} +{"label":"Aasif Mandvi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4c310e315e73d63cca000231\/aasif-mandvi-profile.jpg","version":47,"id":"20644","lastModified":"1300090731000","name":"Aasif Mandvi","type":"Person","_key":"5634"} +{"label":"Gregg Edelman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4c40aacb5e73d60f3b000030\/gregg-edelman-profile.jpg","version":30,"id":"17179","lastModified":"1299493475000","name":"Gregg Edelman","type":"Person","_key":"5635"} +{"label":"Mageina Tovah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4c40a41d5e73d60f3700002e\/mageina-tovah-profile.jpg","version":42,"id":"20645","lastModified":"1300092161000","name":"Mageina Tovah","type":"Person","_key":"5636"} +{"label":"Spider-Man 3","description":"The seemingly invincible Spider-Man goes up against an all-new crop of villains -- including the shape-shifting Sandman -- in the third installment of this blockbusting comic book adventure series . While Spidey's superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and gets caught up in a love triangle.","id":"559","runtime":140,"imdbId":"tt0413300","trailer":"http:\/\/www.youtube.com\/watch?v=qExWP-kZC5Y","homepage":"http:\/\/www.sonypictures.com\/movies\/spiderman3","version":456,"lastModified":"1300123842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/075\/4bc908d6017a3c57fe003075\/spider-man-3-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Spider-Man 3","releaseDate":1176681600000,"language":"en","tagline":"The Greatest Battle Lies Within","type":"Movie","_key":"5637"} +{"label":"Theresa Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4c31172c5e73d63ccc000222\/theresa-russell-profile.jpg","version":58,"id":"9207","lastModified":"1300090831000","name":"Theresa Russell","type":"Person","_key":"5638"} +{"label":"Thomas Haden Church","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21e\/4c3116ff5e73d63ccc00021e\/thomas-haden-church-profile.jpg","version":78,"id":"19159","lastModified":"1300096210000","name":"Thomas Haden Church","type":"Person","_key":"5639"} +{"label":"Topher Grace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4c3115095e73d640bc00003b\/topher-grace-profile.jpg","version":66,"id":"17052","lastModified":"1300090280000","name":"Topher Grace","type":"Person","_key":"5640"} +{"label":"Becky Ann Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4c425bcc5e73d60f3a00012b\/becky-ann-baker-profile.jpg","version":45,"id":"59206","lastModified":"1300091875000","name":"Becky Ann Baker","type":"Person","_key":"5641"} +{"label":"Stan Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4c425cac5e73d60f3b0000fb\/stan-lee-profile.jpg","version":205,"id":"7624","lastModified":"1300132963000","name":"Stan Lee","type":"Person","_key":"5642"} +{"label":"Steve Valentine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12c\/4c425cdf5e73d60f3600012c\/steve-valentine-profile.jpg","version":37,"id":"78311","lastModified":"1300092258000","name":"Steve Valentine","type":"Person","_key":"5643"} +{"label":"Hal Fishman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4c42641b5e73d60f37000105\/hal-fishman-profile.jpg","version":35,"birthday":"-1210381200000","id":"116627","birthplace":"Brooklyn, New York, USA","lastModified":"1300094647000","name":"Hal Fishman","type":"Person","_key":"5644"} +{"label":"Lucy Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4c42663f5e73d60f3900011a\/lucy-gordon-profile.jpg","version":45,"birthday":"327794400000","id":"113608","lastModified":"1300093489000","name":"Lucy Gordon","type":"Person","_key":"5645"} +{"label":"Secret Beyond the Door","description":"Fritz Lang\u2019s psycho thriller tells the story of a woman who marries a stranger with a deadly hobby and through their love he attempts to fight off his obsessive-compulsive actions.","id":"560","runtime":99,"imdbId":"tt0040766","version":93,"lastModified":"1299912777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bc908db017a3c57fe003092\/secret-beyond-the-door-mid.jpg","studio":"Diana Productions, Inc.","genre":"Crime","title":"Secret Beyond the Door","releaseDate":-693100800000,"language":"en","type":"Movie","_key":"5646"} +{"label":"William Holland","version":14,"id":"7655","lastModified":"1300090619000","name":"William Holland","type":"Person","_key":"5647"} +{"label":"Joan Bennett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f8\/4bd5a830017a3c2e750001f8\/joan-bennett-profile.jpg","version":45,"id":"7639","lastModified":"1300090282000","name":"Joan Bennett","type":"Person","_key":"5648"} +{"label":"Michael Redgrave","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e0c\/4c69426e7b9aa172d9000e0c\/michael-redgrave-profile.jpg","version":46,"id":"7640","lastModified":"1300090417000","name":"Michael Redgrave","type":"Person","_key":"5649"} +{"label":"Anne Revere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f1\/4bd5a7ef017a3c2e750001f1\/anne-revere-profile.jpg","version":31,"id":"7641","lastModified":"1300090859000","name":"Anne Revere","type":"Person","_key":"5650"} +{"label":"Barbara O'Neil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1da\/4c5186077b9aa13d4c0001da\/barbara-o-neil-profile.jpg","version":28,"id":"7642","lastModified":"1300090499000","name":"Barbara O'Neil","type":"Person","_key":"5651"} +{"label":"Natalie Schafer","version":18,"id":"7643","lastModified":"1300090928000","name":"Natalie Schafer","type":"Person","_key":"5652"} +{"label":"Rosa Rey","version":14,"id":"7644","lastModified":"1300091574000","name":"Rosa Rey","type":"Person","_key":"5653"} +{"label":"Mark Dennis","version":15,"id":"7645","lastModified":"1300091204000","name":"Mark Dennis","type":"Person","_key":"5654"} +{"label":"Constantine","description":"John Constantine came into this world with the gift of seeing half-blooded angels and demons who live in disguise amongst us humans. These visions eventually drive him into killing himself. Soon after his death he is brought back from hell to fighting for his own redemption. When Constantine teams up with skeptical policewoman Angela Dodson to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists just beneath the landsc","id":"561","runtime":121,"imdbId":"tt0360486","homepage":"http:\/\/constantinemovie.warnerbros.com\/","version":268,"lastModified":"1300106019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4d29badb5e73d626bc0031a2\/constantine-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Constantine","releaseDate":1107820800000,"language":"en","tagline":"Hell Wants Him, Heaven Won't Take Him, Earth Needs Him.","type":"Movie","_key":"5655"} +{"label":"Francis Lawrence","version":29,"id":"10943","lastModified":"1300090471000","name":"Francis Lawrence","type":"Person","_key":"5656"} +{"label":"Max Baker","version":27,"id":"10960","lastModified":"1300091177000","name":"Max Baker","type":"Person","_key":"5657"} +{"label":"Gavin Rossdale","version":16,"id":"10961","lastModified":"1300091280000","name":"Gavin Rossdale","type":"Person","_key":"5658"} +{"label":"Jesse Ramirez","version":15,"id":"10962","lastModified":"1300090603000","name":"Jesse Ramirez","type":"Person","_key":"5659"} +{"label":"Jos\u00e9 Z\u00fa\u00f1iga","version":29,"id":"10963","lastModified":"1300090472000","name":"Jos\u00e9 Z\u00fa\u00f1iga","type":"Person","_key":"5660"} +{"label":"Die Hard","description":"NYPD cop John McClane's plan to reconcile with his estranged wife, Holly, is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of pitiless terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.","id":"562","runtime":131,"imdbId":"tt0095016","trailer":"http:\/\/www.youtube.com\/watch?v=ia4BgnjPG7w","homepage":"http:\/\/www.foxhome.com\/diehardcollection\/index_frames.html","version":245,"lastModified":"1300090013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0df\/4bc908e9017a3c57fe0030df\/die-hard-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Die Hard","releaseDate":584928000000,"language":"en","tagline":"Twelve terrorists. One cop. The odds are against John McClane... That's just the way he likes it.","type":"Movie","_key":"5661"} +{"label":"Reginald VelJohnson","version":40,"id":"7672","lastModified":"1300090375000","name":"Reginald VelJohnson","type":"Person","_key":"5662"} +{"label":"Bonnie Bedelia","version":54,"id":"7673","lastModified":"1300090353000","name":"Bonnie Bedelia","type":"Person","_key":"5663"} +{"label":"Alexander Godunov","version":28,"id":"7674","lastModified":"1300090420000","name":"Alexander Godunov","type":"Person","_key":"5664"} +{"label":"Paul Gleason","version":41,"id":"7675","lastModified":"1300090395000","name":"Paul Gleason","type":"Person","_key":"5665"} +{"label":"William Atherton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/069\/4bf85316017a3c490c000069\/william-atherton-profile.jpg","version":72,"birthday":"-707709600000","id":"7676","birthplace":"Orange, Connecticut, USA","lastModified":"1300090436000","name":"William Atherton","type":"Person","_key":"5666"} +{"label":"De'voreaux White","version":24,"id":"7677","lastModified":"1300090514000","name":"De'voreaux White","type":"Person","_key":"5667"} +{"label":"Hart Bochner","version":48,"id":"7678","lastModified":"1300090400000","name":"Hart Bochner","type":"Person","_key":"5668"} +{"label":"Dennis Hayden","version":31,"id":"7679","lastModified":"1300090470000","name":"Dennis Hayden","type":"Person","_key":"5669"} +{"label":"Starship Troopers","description":"The story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry, a futuristic military unit. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".","id":"563","runtime":130,"imdbId":"tt0120201","trailer":"http:\/\/www.youtube.com\/watch?v=Y07I_KER5fE","version":208,"lastModified":"1300123886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/118\/4bc908f1017a3c57fe003118\/starship-troopers-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Starship Troopers","releaseDate":878860800000,"language":"en","tagline":"The only good bug is a dead bug.","type":"Movie","_key":"5670"} +{"label":"Casper Van Dien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4d2063215e73d66b2d00211e\/casper-van-dien-profile.jpg","version":58,"id":"27763","lastModified":"1300090283000","name":"Casper Van Dien","type":"Person","_key":"5671"} +{"label":"Denise Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dca\/4be88abc017a3c35bf000dca\/denise-richards-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\"><span style=\"font-size: 12px;\">\u200bDenise Lee Richards (born February 17, 1971) is an American actress and former fashion model. She achieved success during the late 1990s in several films that highlighted her sex appeal, including Starship Troopers, Wild Things, and The World Is Not Enough. She appears in the reality TV show, Denise Richards: It's Complicated which is broadcast on American channel E!.<\/span><\/font><font face=\"arial, tahoma","version":72,"birthday":"35593200000","id":"9205","birthplace":"Downers Grove, Illinois, USA","lastModified":"1300090257000","name":"Denise Richards","type":"Person","_key":"5672"} +{"label":"Jake Busey","version":54,"id":"28410","lastModified":"1300090451000","name":"Jake Busey","type":"Person","_key":"5673"} +{"label":"Neil Patrick Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/572\/4c9621925e73d63a74000572\/neil-patrick-harris-profile.jpg","version":91,"birthday":"108946800000","id":"41686","birthplace":"Albuquerque, New Mexico, USA","lastModified":"1300090394000","name":"Neil Patrick Harris","type":"Person","_key":"5674"} +{"label":"Patrick Muldoon","version":37,"id":"41687","lastModified":"1300090402000","name":"Patrick Muldoon","type":"Person","_key":"5675"} +{"label":"Seth Gilliam","version":20,"id":"41688","lastModified":"1300091605000","name":"Seth Gilliam","type":"Person","_key":"5676"} +{"label":"Rue McClanahan","biography":"A veteran television actress and Broadway star of the 50s, Rue McClanahan was an actress noticed by television executive, Norman Lear. Lear cast her in a number of television shows, including \"All in the Family\" (1971) with 'Carroll OConnor' and \"Maude\" (1972) with Bea Arthur. McClanahan next co-starred with Vicki Lawrence, Ken Berry, Betty White and Carol Burnett in \"Mama's Family\" (1983) for three years, and after it was canceled by NBC, McClanahan was probably best known for her role as the s","version":22,"birthday":"-847674000000","id":"41689","lastModified":"1300091810000","name":"Rue McClanahan","type":"Person","_key":"5677"} +{"label":"Blake Lindsley","version":23,"id":"41690","lastModified":"1300091411000","name":"Blake Lindsley","type":"Person","_key":"5678"} +{"label":"Steven Ford","version":35,"id":"9258","lastModified":"1300090295000","name":"Steven Ford","type":"Person","_key":"5679"} +{"label":"Ungela Brockman","version":21,"id":"41691","lastModified":"1300090854000","name":"Ungela Brockman","type":"Person","_key":"5680"} +{"label":"Denise Dowse","version":25,"id":"23970","lastModified":"1300090915000","name":"Denise Dowse","type":"Person","_key":"5681"} +{"label":"Amy Smart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4bcc2b80017a3c0f2c0000b7\/amy-smart-profile.jpg","version":82,"id":"20189","lastModified":"1300090273000","name":"Amy Smart","type":"Person","_key":"5682"} +{"label":"The Mummy","description":"Dashing legionnaire Rick O'Connell and Beni, his weasel of a companion, stumble upon the hidden ruins of Hamunaptra while in the midst of a battle in 1923, 3,000 years after Imhotep has suffered a fate worse than death; his body will remain undead for all eternity as a punishment for a forbidden love.","id":"564","runtime":124,"imdbId":"tt0120616","trailer":"http:\/\/www.youtube.com\/watch?v=1606","homepage":"http:\/\/www.mummyvideo.com\/","version":189,"lastModified":"1299975404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4bc908f8017a3c57fe003133\/the-mummy-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Mummy","releaseDate":926035200000,"language":"en","tagline":"The legend you know. The adventure you have yet to imagine.","type":"Movie","_key":"5683"} +{"label":"Stephen Sommers","version":115,"id":"7775","lastModified":"1300090423000","name":"Stephen Sommers","type":"Person","_key":"5684"} +{"label":"Brendan Fraser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4be799b4017a3c35b400103f\/brendan-fraser-profile.jpg","version":113,"id":"18269","lastModified":"1300090279000","name":"Brendan Fraser","type":"Person","_key":"5685"} +{"label":"John Hannah","version":65,"id":"10727","lastModified":"1300090339000","name":"John Hannah","type":"Person","_key":"5686"} +{"label":"Arnold Vosloo","version":68,"id":"16743","lastModified":"1300090255000","name":"Arnold Vosloo","type":"Person","_key":"5687"} +{"label":"Kevin J. O'Connor","version":70,"id":"18916","lastModified":"1300090278000","name":"Kevin J. O'Connor","type":"Person","_key":"5688"} +{"label":"Oded Fehr","version":43,"id":"18041","lastModified":"1300090434000","name":"Oded Fehr","type":"Person","_key":"5689"} +{"label":"Jonathan Hyde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4d31cb647b9aa1481b00000c\/jonathan-hyde-profile.jpg","version":45,"id":"8537","lastModified":"1299746700000","name":"Jonathan Hyde","type":"Person","_key":"5690"} +{"label":"Erick Avari","version":38,"id":"18917","lastModified":"1300090447000","name":"Erick Avari","type":"Person","_key":"5691"} +{"label":"Bernard Fox","version":34,"id":"8545","lastModified":"1300091091000","name":"Bernard Fox","type":"Person","_key":"5692"} +{"label":"The Ring","description":"It sounded like just another urban legend: A videotape filled with nightmarish images, leading to a phone call foretelling the viewer's death in exactly seven days. As a newspaper reporter, Rachel Keller was naturally skeptical of the story, until four teenagers all met with mysterious deaths exactly one week after watching just such a tape. Allowing her investigative curiosity to get the better of her, Rachel tracks down the video... and watches it. Now she has just seven days to unravel the my","id":"565","runtime":115,"imdbId":"tt0298130","version":196,"lastModified":"1299975228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/640\/4d01bb615e73d621a2000640\/the-ring-mid.jpg","studio":"DreamWorks SKG","genre":"Horror","title":"The Ring","releaseDate":1033516800000,"language":"en","type":"Movie","_key":"5693"} +{"label":"Martin Henderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13d\/4d6ab2745e73d6073300013d\/martin-henderson-profile.jpg","version":42,"id":"26291","lastModified":"1300090451000","name":"Martin Henderson","type":"Person","_key":"5694"} +{"label":"David Dorfman","version":33,"id":"26292","lastModified":"1300090487000","name":"David Dorfman","type":"Person","_key":"5695"} +{"label":"Rachael Bella","version":25,"id":"26293","lastModified":"1300091320000","name":"Rachael Bella","type":"Person","_key":"5696"} +{"label":"Lindsay Frost","version":21,"id":"26294","lastModified":"1300092408000","name":"Lindsay Frost","type":"Person","_key":"5697"} +{"label":"Amber Tamblyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68f\/4c5b45f57b9aa151f700068f\/amber-tamblyn-profile.jpg","biography":"<p>Amber Rose Tamblyn was born May 14, 1983 in Santa Monica, California.\n Amber caught an agent's eye at the age of ten after a performance in \n\"Pippi Longstocking\". She has appeared in <a href=\"http:\/\/www.imdb.com\/title\/tt0113674\/\">Live Nude Girls<\/a> (1995) and <a href=\"http:\/\/www.imdb.com\/title\/tt0137041\/\">Johnny Mysto: Boy Wizard<\/a> (1997) (V). In addition, her most popular role has been the role of \"Emily Bowen-Quartermaine\" of the popular soap <a href=\"http:\/\/www.imdb.com\/title\/tt0056758\/","version":69,"birthday":"421711200000","id":"20354","birthplace":"Santa Monica, California, USA","lastModified":"1300090461000","name":"Amber Tamblyn","type":"Person","_key":"5698"} +{"label":"Sandra Thigpen","version":22,"id":"26295","lastModified":"1300091798000","name":"Sandra Thigpen","type":"Person","_key":"5699"} +{"label":"Rear Window","description":"Jefferies has had his leg in a cast for weeks and has nothing to do but watch his neighbors from his window. His voyeurism leads him to think that he\u2019s witnessed a murder. Together with his girlfriend Lisa and his nurse Stella they try to solve the mystery and possibly a murder.","id":"567","runtime":112,"imdbId":"tt0047396","trailer":"http:\/\/www.youtube.com\/watch?v=6kCcZCMYw38","version":169,"lastModified":"1300095636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bd65dbf017a3c21ec00001d\/rear-window-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Rear Window","releaseDate":-486604800000,"language":"en","type":"Movie","_key":"5700"} +{"label":"Herbert Coleman","version":27,"id":"2653","lastModified":"1299947262000","name":"Herbert Coleman","type":"Person","_key":"5701"} +{"label":"Wendell Corey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4bcc6cb6017a3c0f270000fa\/wendell-corey-profile.jpg","version":39,"birthday":"-1760490000000","id":"7683","birthplace":"Dracut, Massachusetts, USA","lastModified":"1300090428000","name":"Wendell Corey","type":"Person","_key":"5702"} +{"label":"Thelma Ritter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/592\/4be1784a017a3c35b9000592\/thelma-ritter-profile.jpg","version":34,"id":"7684","lastModified":"1300090606000","name":"Thelma Ritter","type":"Person","_key":"5703"} +{"label":"Raymond Burr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/133\/4bd5ebc4017a3c657d000133\/raymond-burr-profile.jpg","version":51,"birthday":"-1660442400000","id":"7685","birthplace":"New Westminster, British Columbia, Canada","lastModified":"1300090727000","name":"Raymond Burr","type":"Person","_key":"5704"} +{"label":"Judith Evelyn","version":21,"id":"7686","lastModified":"1300091712000","name":"Judith Evelyn","type":"Person","_key":"5705"} +{"label":"\u00c0 ma soeur!","description":"Fat Girl deals with the themes of feminine puberty and sexuality. Filmed in southern France.","id":"570","runtime":93,"imdbId":"tt0243255","trailer":"http:\/\/www.youtube.com\/watch?v=2420","version":50,"lastModified":"1299531836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4bc90909017a3c57fe0031ab\/a-ma-soeur-mid.jpg","studio":"Flach Films","genre":"Drama","title":"\u00c0 ma soeur!","releaseDate":983923200000,"language":"en","type":"Movie","_key":"5706"} +{"label":"Micha\u00ebl Weill","version":15,"id":"7703","lastModified":"1300091296000","name":"Micha\u00ebl Weill","type":"Person","_key":"5707"} +{"label":"Ana\u00efs Reboux","version":14,"id":"7705","lastModified":"1300090854000","name":"Ana\u00efs Reboux","type":"Person","_key":"5708"} +{"label":"Roxane Mesquida","version":22,"id":"7706","lastModified":"1300090815000","name":"Roxane Mesquida","type":"Person","_key":"5709"} +{"label":"Libero De Rienzo","version":19,"id":"7707","lastModified":"1300090512000","name":"Libero De Rienzo","type":"Person","_key":"5710"} +{"label":"Arsin\u00e9e Khanjian","version":25,"id":"7708","lastModified":"1300091319000","name":"Arsin\u00e9e Khanjian","type":"Person","_key":"5711"} +{"label":"Romain Goupil","version":15,"id":"7709","lastModified":"1300091459000","name":"Romain Goupil","type":"Person","_key":"5712"} +{"label":"Laura Betti","version":29,"id":"7710","lastModified":"1300091251000","name":"Laura Betti","type":"Person","_key":"5713"} +{"label":"Albert Goldberg","version":14,"id":"7711","lastModified":"1300091296000","name":"Albert Goldberg","type":"Person","_key":"5714"} +{"label":"The Birds","description":"Chic socialite Melanie Daniels enjoys a passing flirtation with an eligible attorney in a San Francisco pet shop and, on an impulse, follows him to his hometown bearing a gift of lovebirds. But upon her arrival, the bird population runs amok. Suddenly, the townsfolk face a massive avian onslaught, with the feathered fiends inexplicably attacking people all over Bodega Bay.","id":"571","runtime":119,"imdbId":"tt0056869","trailer":"http:\/\/www.youtube.com\/watch?v=tENWZ0ri89k","version":133,"lastModified":"1299911928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bc\/4bc9090a017a3c57fe0031bc\/the-birds-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"The Birds","releaseDate":-213494400000,"language":"en","tagline":"...and remember, the next scream you hear may be your own!","type":"Movie","_key":"5715"} +{"label":"Rod Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/076\/4c236f467b9aa13f5f000076\/rod-taylor-profile.jpg","version":65,"birthday":"-1261443600000","id":"8229","lastModified":"1300090369000","name":"Rod Taylor","type":"Person","_key":"5716"} +{"label":"Suzanne Pleshette","version":34,"id":"8231","lastModified":"1300090241000","name":"Suzanne Pleshette","type":"Person","_key":"5717"} +{"label":"Ethel Griffies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e92\/4be93cd8017a3c35bf000e92\/ethel-griffies-profile.jpg","version":32,"id":"8232","lastModified":"1300091093000","name":"Ethel Griffies","type":"Person","_key":"5718"} +{"label":"Charles McGraw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4bcf5940017a3c63e8000077\/charles-mcgraw-profile.jpg","biography":"Charles Butters (May 10, 1914 \u2013 July 30, 1980), best known by his stage name Charles McGraw, was an American actor, who made his first film in 1942, albeit in a small, uncredited cameo role. He was born in Des Moines, Iowa.<div><br><\/div><div>McGraw developed into a leading man, especially in film noir classics during the late 1940s and 1950s. His gravelly voice and rugged looks enhanced his appeal in the noir stylistic genre, and provided him many roles as cop or gunman.<\/div><div><br><\/div><di","version":65,"birthday":"-1756083600000","id":"8233","birthplace":"Des Moines, Iowa, USA","lastModified":"1300090281000","name":"Charles McGraw","type":"Person","_key":"5719"} +{"label":"James H. Brown","version":21,"id":"8236","lastModified":"1300090901000","name":"James H. Brown","type":"Person","_key":"5720"} +{"label":"Naboer","description":"Next Door is a violent mystery thriller from Norway. The starring actor Joner is not only in the house of his unknown neighbors but also enticed into the abyss of his phyche.","id":"572","runtime":75,"imdbId":"tt0453383","version":119,"lastModified":"1299974403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d4\/4bc9090f017a3c57fe0031d4\/naboer-mid.jpg","studio":"Columbia TriStar Nordisk Film Distributors A\/S","genre":"Horror","title":"Naboer","releaseDate":1110412800000,"language":"en","type":"Movie","_key":"5721"} +{"label":"P\u00e5l Sletaune","version":24,"id":"7736","lastModified":"1300091040000","name":"P\u00e5l Sletaune","type":"Person","_key":"5722"} +{"label":"Kristoffer Joner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e4\/4bd49579017a3c7fa80000e4\/kristoffer-joner-profile.jpg","biography":"Kristoffer Joner (born September 19, 1972) is a Norwegian actor born in Stavanger, Norway.","version":32,"birthday":"85705200000","id":"7742","birthplace":"Stavanger","lastModified":"1300090505000","name":"Kristoffer Joner","type":"Person","_key":"5723"} +{"label":"Cecilie A. Mosli","version":18,"id":"7743","lastModified":"1300091027000","name":"Cecilie A. Mosli","type":"Person","_key":"5724"} +{"label":"Julia Schacht","version":16,"id":"7744","lastModified":"1300091393000","name":"Julia Schacht","type":"Person","_key":"5725"} +{"label":"Anna Bache-Wiig","version":17,"id":"7745","lastModified":"1300091113000","name":"Anna Bache-Wiig","type":"Person","_key":"5726"} +{"label":"Magne Kipperrud","version":14,"id":"7760","lastModified":"1300091574000","name":"Magne Kipperrud","type":"Person","_key":"5727"} +{"label":"\u00d8ystein Martinsen","version":14,"id":"7761","lastModified":"1300091574000","name":"\u00d8ystein Martinsen","type":"Person","_key":"5728"} +{"label":"Odd Arno Midtsj\u00f8","version":16,"id":"7762","lastModified":"1300091574000","name":"Odd Arno Midtsj\u00f8","type":"Person","_key":"5729"} +{"label":"Frenzy","description":"Frenzy is the last film from Hitchcock and at the same time the first film that brought his emigration to the USA back to Great Britain.","id":"573","runtime":116,"imdbId":"tt0068611","version":142,"lastModified":"1299911580000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e6\/4bc9090f017a3c57fe0031e6\/frenzy-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Frenzy","releaseDate":63072000000,"language":"en","type":"Movie","_key":"5730"} +{"label":"Jon Finch","version":22,"id":"8223","lastModified":"1300090803000","name":"Jon Finch","type":"Person","_key":"5731"} +{"label":"Alec McCowen","version":33,"id":"8224","lastModified":"1300124390000","name":"Alec McCowen","type":"Person","_key":"5732"} +{"label":"Barry Foster","version":27,"id":"8225","lastModified":"1300090619000","name":"Barry Foster","type":"Person","_key":"5733"} +{"label":"Billie Whitelaw","version":36,"id":"8226","lastModified":"1300090326000","name":"Billie Whitelaw","type":"Person","_key":"5734"} +{"label":"Anna Massey","version":35,"id":"8227","lastModified":"1300091103000","name":"Anna Massey","type":"Person","_key":"5735"} +{"label":"Barbara Leigh-Hunt","version":16,"id":"8228","lastModified":"1300091281000","name":"Barbara Leigh-Hunt","type":"Person","_key":"5736"} +{"label":"Bernard Cribbins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c26\/4cf5cd855e73d62999000c26\/bernard-cribbins-profile.jpg","version":39,"id":"40943","lastModified":"1300090472000","name":"Bernard Cribbins","type":"Person","_key":"5737"} +{"label":"Jean Marsh","version":28,"id":"12657","lastModified":"1300091162000","name":"Jean Marsh","type":"Person","_key":"5738"} +{"label":"Vivien Merchant","version":22,"id":"35314","lastModified":"1300091503000","name":"Vivien Merchant","type":"Person","_key":"5739"} +{"label":"Clive Swift","version":18,"id":"33108","lastModified":"1300092074000","name":"Clive Swift","type":"Person","_key":"5740"} +{"label":"Elsie Randolph","version":18,"id":"40966","lastModified":"1300092234000","name":"Elsie Randolph","type":"Person","_key":"5741"} +{"label":"The Man Who Knew Too Much","description":"A widescreen, Technicolor remake of Hitchcock's own 1934 film of the same title starring James Stewart and Doris Day. A couple vacationing in Morocco with their son accidentally stumble upon an assassination plot. When their son is kidnapped to ensure their silence, they have to take matters into their own hands to save him.","id":"574","runtime":120,"imdbId":"tt0049470","trailer":"http:\/\/www.youtube.com\/watch?v=1CoKHtU0mGo","version":108,"lastModified":"1299912045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4bc90911017a3c57fe0031f7\/the-man-who-knew-too-much-mid.jpg","studio":"Paramount Pictures","genre":"Adventure","title":"The Man Who Knew Too Much","releaseDate":-428716800000,"language":"en","tagline":"A little knowledge can be a deadly thing!","type":"Movie","_key":"5742"} +{"label":"Howard Joslin","version":16,"id":"8244","lastModified":"1300091113000","name":"Howard Joslin","type":"Person","_key":"5743"} +{"label":"Doris Day","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f7\/4c093868017a3c7e890006f7\/doris-day-profile.jpg","version":77,"id":"8237","lastModified":"1300090462000","name":"Doris Day","type":"Person","_key":"5744"} +{"label":"Brenda De Banzie","version":24,"id":"8238","lastModified":"1300091043000","name":"Brenda De Banzie","type":"Person","_key":"5745"} +{"label":"Bernard Miles","version":19,"id":"8239","lastModified":"1300091027000","name":"Bernard Miles","type":"Person","_key":"5746"} +{"label":"Alan Mowbray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7c\/4be44c24017a3c35b4000b7c\/alan-mowbray-profile.jpg","version":44,"birthday":"-2315350800000","id":"8240","birthplace":"London, England","lastModified":"1300090530000","name":"Alan Mowbray","type":"Person","_key":"5747"} +{"label":"Hillary Brooke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cc\/4bf2aa98017a3c32120003cc\/hillary-brooke-profile.jpg","version":39,"birthday":"-1745629200000","id":"8241","birthplace":"Astoria, New York, USA","lastModified":"1300090288000","name":"Hillary Brooke","type":"Person","_key":"5748"} +{"label":"Christopher Olsen","version":23,"id":"8242","lastModified":"1300091220000","name":"Christopher Olsen","type":"Person","_key":"5749"} +{"label":"Daniel G\u00e9lin","version":32,"id":"24814","lastModified":"1300092156000","name":"Daniel G\u00e9lin","type":"Person","_key":"5750"} +{"label":"The Experiment","description":"Das Experiment is a shocking psycho thriller about the aggression potential of humans. Even more shocking is the fact that it\u2019s based on an actual occurrence. In 1971 at Stanford University an experiment began that because of moral reason had to be aborted.","id":"575","runtime":120,"imdbId":"tt0250258","homepage":"http:\/\/www.dasexperiment.de\/intro\/","version":330,"lastModified":"1299973950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/205\/4bc90914017a3c57fe003205\/das-experiment-mid.jpg","studio":"Senator Film Produktion","genre":"Drama","title":"The Experiment","releaseDate":984009600000,"language":"en","type":"Movie","_key":"5751"} +{"label":"Christian Berkel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ce\/4ca9db3d5e73d643ef0005ce\/christian-berkel-profile.jpg","version":59,"id":"7803","lastModified":"1300090480000","name":"Christian Berkel","type":"Person","_key":"5752"} +{"label":"Oliver Stokowski","version":24,"id":"7804","lastModified":"1300091067000","name":"Oliver Stokowski","type":"Person","_key":"5753"} +{"label":"Wotan Wilke M\u00f6hring","version":43,"id":"7805","lastModified":"1300130999000","name":"Wotan Wilke M\u00f6hring","type":"Person","_key":"5754"} +{"label":"Stephan Szasz","version":20,"id":"7806","lastModified":"1300091698000","name":"Stephan Szasz","type":"Person","_key":"5755"} +{"label":"Polat Dal","version":19,"id":"7807","lastModified":"1300091479000","name":"Polat Dal","type":"Person","_key":"5756"} +{"label":"Danny Richter","version":19,"id":"7808","lastModified":"1300091296000","name":"Danny Richter","type":"Person","_key":"5757"} +{"label":"Ralf M\u00fcller","version":19,"id":"7809","lastModified":"1300091296000","name":"Ralf M\u00fcller","type":"Person","_key":"5758"} +{"label":"Markus Rudolf","version":19,"id":"7810","lastModified":"1300091250000","name":"Markus Rudolf","type":"Person","_key":"5759"} +{"label":"Peter Fieseler","version":24,"id":"7811","lastModified":"1300091155000","name":"Peter Fieseler","type":"Person","_key":"5760"} +{"label":"Thorsten Dersch","version":19,"id":"7812","lastModified":"1300091684000","name":"Thorsten Dersch","type":"Person","_key":"5761"} +{"label":"Sven Grefer","version":19,"id":"7813","lastModified":"1300091250000","name":"Sven Grefer","type":"Person","_key":"5762"} +{"label":"Nicki von Tempelhoff","version":21,"id":"7815","lastModified":"1300091067000","name":"Nicki von Tempelhoff","type":"Person","_key":"5763"} +{"label":"Timo Dierkes","version":19,"id":"7816","lastModified":"1300091459000","name":"Timo Dierkes","type":"Person","_key":"5764"} +{"label":"Antoine Monot Jr.","version":27,"id":"7817","lastModified":"1300090672000","name":"Antoine Monot Jr.","type":"Person","_key":"5765"} +{"label":"Lars G\u00e4rtner","version":19,"id":"7818","lastModified":"1300091698000","name":"Lars G\u00e4rtner","type":"Person","_key":"5766"} +{"label":"Jacek Klimontko","version":19,"id":"7819","lastModified":"1300091459000","name":"Jacek Klimontko","type":"Person","_key":"5767"} +{"label":"Markus Klauk","version":19,"id":"7820","lastModified":"1300091491000","name":"Markus Klauk","type":"Person","_key":"5768"} +{"label":"Ralph P\u00fcttmann","version":19,"id":"7821","lastModified":"1300091250000","name":"Ralph P\u00fcttmann","type":"Person","_key":"5769"} +{"label":"Edgar Selge","version":24,"id":"7822","lastModified":"1300091250000","name":"Edgar Selge","type":"Person","_key":"5770"} +{"label":"Andrea Sawatzki","version":20,"id":"7823","lastModified":"1300090963000","name":"Andrea Sawatzki","type":"Person","_key":"5771"} +{"label":"Philipp Hochmair","version":21,"id":"7824","lastModified":"1300091491000","name":"Philipp Hochmair","type":"Person","_key":"5772"} +{"label":"Tristan Vostry","version":19,"id":"7826","lastModified":"1300091250000","name":"Tristan Vostry","type":"Person","_key":"5773"} +{"label":"Maren Eggert","version":19,"id":"7827","lastModified":"1300090555000","name":"Maren Eggert","type":"Person","_key":"5774"} +{"label":"Andr\u00e9 Jung","version":20,"id":"7828","lastModified":"1300091155000","name":"Andr\u00e9 Jung","type":"Person","_key":"5775"} +{"label":"Uwe Rohde","version":21,"id":"7829","lastModified":"1300091659000","name":"Uwe Rohde","type":"Person","_key":"5776"} +{"label":"Heiner Lauterbach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4ca628cf5e73d643ef000032\/heiner-lauterbach-profile.jpg","version":62,"id":"7830","lastModified":"1300130999000","name":"Heiner Lauterbach","type":"Person","_key":"5777"} +{"label":"Christiane Gerboth","version":19,"id":"7831","lastModified":"1300091491000","name":"Christiane Gerboth","type":"Person","_key":"5778"} +{"label":"Klaus Spinnler","version":26,"id":"5652","lastModified":"1300091250000","name":"Klaus Spinnler","type":"Person","_key":"5779"} +{"label":"Oliver Hirschbiegel","version":44,"id":"7832","lastModified":"1300090530000","name":"Oliver Hirschbiegel","type":"Person","_key":"5780"} +{"label":"The Wild Bunch","description":"The Wild Bunch is one of the best representations of the Western genre; A group of outlaws is in battle with the law and with modern society.","id":"576","runtime":143,"imdbId":"tt0065214","version":192,"lastModified":"1299911552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21a\/4bc90916017a3c57fe00321a\/the-wild-bunch-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Wild Bunch","releaseDate":-14428800000,"language":"en","type":"Movie","_key":"5781"} +{"label":"Sam Peckinpah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4bcb5930017a3c2dc4000002\/sam-peckinpah-profile.jpg","version":61,"id":"7767","lastModified":"1300090393000","name":"Sam Peckinpah","type":"Person","_key":"5782"} +{"label":"William Holden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/544\/4bfab2c6017a3c7033000544\/william-holden-profile.jpg","version":79,"id":"8252","lastModified":"1300090380000","name":"William Holden","type":"Person","_key":"5783"} +{"label":"Robert Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4bcc6c6b017a3c0f2f0000db\/robert-ryan-profile.jpg","biography":"Robert Bushnell Ryan (November 11, 1909 \u2013 July 11, 1973) was an American  actor who often played hardened cops and ruthless villains.\n\nRyan was born in Chicago, Illinois, the first child of Timothy Ryan and his wife Mabel Bushnell Ryan.[1]  He graduated from Dartmouth College in 1932, having held the school's heavyweight boxing title all four years of his attendance. After graduation, the 6`4\" Ryan found employment as a stoker on a ship, a WPA worker, and a ranch hand in Montana.\n\nRyan","version":84,"birthday":"-1897866000000","id":"8253","birthplace":"Chicago, Illinois, United States","lastModified":"1300100654000","name":"Robert Ryan","type":"Person","_key":"5784"} +{"label":"Edmond O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d9\/4bd1ee92017a3c63f10002d9\/edmond-o-brien-profile.jpg","version":57,"birthday":"-1713920400000","id":"8254","birthplace":"New York City, New York, USA","lastModified":"1300090267000","name":"Edmond O'Brien","type":"Person","_key":"5785"} +{"label":"Warren Oates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d54\/4bfe9547017a3c7031000d54\/warren-oates-profile.jpg","version":48,"id":"8255","lastModified":"1300090583000","name":"Warren Oates","type":"Person","_key":"5786"} +{"label":"Jaime S\u00e1nchez","version":19,"id":"8257","lastModified":"1300091491000","name":"Jaime S\u00e1nchez","type":"Person","_key":"5787"} +{"label":"Ben Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e4d\/4bfe94f3017a3c702d000e4d\/ben-johnson-profile.jpg","version":71,"id":"8258","lastModified":"1300090690000","name":"Ben Johnson","type":"Person","_key":"5788"} +{"label":"Emilio Fern\u00e1ndez","version":25,"id":"8259","lastModified":"1300091240000","name":"Emilio Fern\u00e1ndez","type":"Person","_key":"5789"} +{"label":"Strother Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4c\/4bfe94a6017a3c7031000d4c\/strother-martin-profile.jpg","version":41,"id":"8260","lastModified":"1300090655000","name":"Strother Martin","type":"Person","_key":"5790"} +{"label":"L.Q. Jones","version":36,"id":"8262","lastModified":"1300091077000","name":"L.Q. Jones","type":"Person","_key":"5791"} +{"label":"To Die For","description":"Susan wants to work in television and will therefore do anything it takes, even if it means killing her husband. A very dark comedy from independent director Gus Van Sant with a brilliant Nichole Kidman in the leading role.","id":"577","runtime":106,"imdbId":"tt0114681","trailer":"http:\/\/www.youtube.com\/watch?v=Y1uPXA1ceNo","version":127,"lastModified":"1299973577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4bc9091b017a3c57fe003231\/to-die-for-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"To Die For","releaseDate":812160000000,"language":"en","tagline":"All she wanted was a little attention.","type":"Movie","_key":"5792"} +{"label":"Illeana Douglas","version":28,"id":"7796","lastModified":"1300091059000","name":"Illeana Douglas","type":"Person","_key":"5793"} +{"label":"Jaws","description":"An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.","id":"578","runtime":124,"imdbId":"tt0073195","trailer":"http:\/\/www.youtube.com\/watch?v=g9DCAbPmvHQ","homepage":"http:\/\/www.jaws25.com\/","version":169,"lastModified":"1299973360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/251\/4bc9091e017a3c57fe003251\/jaws-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"Jaws","releaseDate":172454400000,"language":"en","tagline":"Don\u2019t go in the water.","type":"Movie","_key":"5794"} +{"label":"Robert Shaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e0\/4c1793ad7b9aa108b40001e0\/robert-shaw-profile.jpg","version":53,"id":"8606","lastModified":"1300123318000","name":"Robert Shaw","type":"Person","_key":"5795"} +{"label":"Lorraine Gary","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4c235f7c7b9aa13f5e00004e\/lorraine-gary-profile.jpg","version":39,"id":"8607","lastModified":"1300090591000","name":"Lorraine Gary","type":"Person","_key":"5796"} +{"label":"Murray Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/248\/4bf1966f017a3c3212000248\/murray-hamilton-profile.jpg","version":51,"id":"8608","lastModified":"1299583127000","name":"Murray Hamilton","type":"Person","_key":"5797"} +{"label":"Carl Gottlieb","version":49,"id":"8555","lastModified":"1300090651000","name":"Carl Gottlieb","type":"Person","_key":"5798"} +{"label":"Jeffrey Kramer","version":33,"id":"8609","lastModified":"1300090489000","name":"Jeffrey Kramer","type":"Person","_key":"5799"} +{"label":"Susan Backlinie","version":20,"id":"8610","lastModified":"1300091295000","name":"Susan Backlinie","type":"Person","_key":"5800"} +{"label":"Jonathan Filley","version":28,"id":"5286","lastModified":"1300091095000","name":"Jonathan Filley","type":"Person","_key":"5801"} +{"label":"Chris Rebello","version":20,"id":"8611","lastModified":"1300091491000","name":"Chris Rebello","type":"Person","_key":"5802"} +{"label":"Jay Mello","version":24,"id":"8612","lastModified":"1300091295000","name":"Jay Mello","type":"Person","_key":"5803"} +{"label":"Lee Fierro","version":20,"id":"8613","lastModified":"1300091495000","name":"Lee Fierro","type":"Person","_key":"5804"} +{"label":"Jeffrey Voorhees","version":20,"id":"8614","lastModified":"1300091082000","name":"Jeffrey Voorhees","type":"Person","_key":"5805"} +{"label":"Craig Kingsbury","version":20,"id":"8615","lastModified":"1300090939000","name":"Craig Kingsbury","type":"Person","_key":"5806"} +{"label":"Dr. Robert Nevin","version":20,"id":"8616","lastModified":"1300091442000","name":"Dr. Robert Nevin","type":"Person","_key":"5807"} +{"label":"Jaws 2","description":"The sequel to the successful blockbuster Jaws. An American horror thriller from 1978 about a great white that brings fear to everyone near the water. The film used it\u2019s predecessor\u2019s success to achieve it\u2019s own and was not directed by Steven Spielberg. ","id":"579","runtime":116,"imdbId":"tt0077766","trailer":"http:\/\/www.youtube.com\/watch?v=xkiRVhwoqvw","version":114,"lastModified":"1299911305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c75\/4cf148f75e73d61928000c75\/jaws-2-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Jaws 2","releaseDate":266803200000,"language":"en","tagline":"Just when you thought it was safe to go back in the water.","type":"Movie","_key":"5808"} +{"label":"Jeannot Szwarc","version":31,"id":"16187","lastModified":"1300091277000","name":"Jeannot Szwarc","type":"Person","_key":"5809"} +{"label":"Collin Wilcox Paxton","version":23,"id":"8497","lastModified":"1300090766000","name":"Collin Wilcox Paxton","type":"Person","_key":"5810"} +{"label":"Ann Dusenberry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e3a\/4c6832b75e73d63460000e3a\/ann-dusenberry-profile.jpg","biography":"As a young child Ann\u2019s desire to work in the theatre was deeply nurtured at the local YWCA in Tucson, Arizona where she studied classical theatre with Mary MacMurtrie, performing in plays twice a year until she was 14. She came west to Los Angeles to complete her bachelor\u2019s degree in theatre arts at Occidental College. With 8 years of summer repertory theatre at Occidental and her degree in hand Ann made her foray into Hollywood. She auditioned at Universal Studios and secured a position as an a","version":25,"id":"16197","lastModified":"1300090751000","name":"Ann Dusenberry","type":"Person","_key":"5811"} +{"label":"Mark Gruner","version":20,"id":"16198","lastModified":"1300091425000","name":"Mark Gruner","type":"Person","_key":"5812"} +{"label":"Barry Coe","version":25,"id":"16199","lastModified":"1300090983000","name":"Barry Coe","type":"Person","_key":"5813"} +{"label":"Susan French","version":21,"id":"16200","lastModified":"1300091281000","name":"Susan French","type":"Person","_key":"5814"} +{"label":"Gary Springer","version":23,"id":"14552","lastModified":"1300091126000","name":"Gary Springer","type":"Person","_key":"5815"} +{"label":"Donna Wilkes","version":20,"id":"16201","lastModified":"1300091425000","name":"Donna Wilkes","type":"Person","_key":"5816"} +{"label":"Gary Dubin","version":20,"id":"16202","lastModified":"1300091425000","name":"Gary Dubin","type":"Person","_key":"5817"} +{"label":"John Dukakis","version":20,"id":"16203","lastModified":"1300091425000","name":"John Dukakis","type":"Person","_key":"5818"} +{"label":"G. Thomas Dunlop","version":20,"id":"16204","lastModified":"1300091213000","name":"G. Thomas Dunlop","type":"Person","_key":"5819"} +{"label":"Jaws: The Revenge","description":"After another deadly shark attack, Ellen Brody decides she has had enough of New England's Amity Island and moves to the Caribbean to join her son, Michael, and his family. But a great white shark has followed her there, hungry for more lives.","id":"580","runtime":89,"imdbId":"tt0093300","trailer":"http:\/\/www.youtube.com\/watch?v=WQDXfB1nBnk","version":115,"lastModified":"1299910890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0a\/4d40e1657b9aa15bbf002d0a\/jaws-the-revenge-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Jaws: The Revenge","releaseDate":553478400000,"language":"en","tagline":"This time, it\u2019s personal.","type":"Movie","_key":"5820"} +{"label":"Joseph Sargent","version":41,"id":"15663","lastModified":"1300091102000","name":"Joseph Sargent","type":"Person","_key":"5821"} +{"label":"Lance Guest","version":23,"id":"16213","lastModified":"1300091604000","name":"Lance Guest","type":"Person","_key":"5822"} +{"label":"Mario Van Peebles","version":58,"id":"16214","lastModified":"1300090445000","name":"Mario Van Peebles","type":"Person","_key":"5823"} +{"label":"Karen Young","version":27,"id":"16215","lastModified":"1300105789000","name":"Karen Young","type":"Person","_key":"5824"} +{"label":"Judith Barsi","version":24,"id":"16216","lastModified":"1300091232000","name":"Judith Barsi","type":"Person","_key":"5825"} +{"label":"Lynn Whitfield","version":27,"id":"16217","lastModified":"1300091334000","name":"Lynn Whitfield","type":"Person","_key":"5826"} +{"label":"Mitchell Anderson","version":17,"id":"16218","lastModified":"1300092647000","name":"Mitchell Anderson","type":"Person","_key":"5827"} +{"label":"Cedric Scott","version":16,"id":"16219","lastModified":"1300092427000","name":"Cedric Scott","type":"Person","_key":"5828"} +{"label":"Charles Bowleg","version":16,"id":"16220","lastModified":"1300091806000","name":"Charles Bowleg","type":"Person","_key":"5829"} +{"label":"Mary Smith","version":16,"id":"16222","lastModified":"1300092427000","name":"Mary Smith","type":"Person","_key":"5830"} +{"label":"Edna Billotto","version":16,"id":"16223","lastModified":"1300092427000","name":"Edna Billotto","type":"Person","_key":"5831"} +{"label":"Fritzi Jane Courtney","version":16,"id":"16224","lastModified":"1300092427000","name":"Fritzi Jane Courtney","type":"Person","_key":"5832"} +{"label":"Dances with Wolves","description":"Wounded Civil War soldier John Dunbar tries to commit suicide -- and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.","id":"581","runtime":237,"imdbId":"tt0099348","version":292,"lastModified":"1300108274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc9092a017a3c57fe0032a2\/dances-with-wolves-mid.jpg","studio":"Majestic Film","genre":"Action","title":"Dances with Wolves","releaseDate":658108800000,"language":"en","tagline":"Inside everyone is a frontier waiting to be discovered.","type":"Movie","_key":"5833"} +{"label":"Rodney A. Grant","version":26,"id":"7853","lastModified":"1300090435000","name":"Rodney A. Grant","type":"Person","_key":"5834"} +{"label":"Floyd 'Red Crow' Westerman","version":22,"id":"7862","lastModified":"1300090901000","name":"Floyd 'Red Crow' Westerman","type":"Person","_key":"5835"} +{"label":"Tantoo Cardinal","version":23,"id":"7863","lastModified":"1300091178000","name":"Tantoo Cardinal","type":"Person","_key":"5836"} +{"label":"Robert Pastorelli","version":36,"id":"7866","lastModified":"1300090546000","name":"Robert Pastorelli","type":"Person","_key":"5837"} +{"label":"Charles Rocket","version":19,"id":"7867","lastModified":"1300091204000","name":"Charles Rocket","type":"Person","_key":"5838"} +{"label":"Maury Chaykin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f9\/4cf2f7dc5e73d623850001f9\/maury-chaykin-profile.jpg","version":74,"id":"7868","lastModified":"1300090354000","name":"Maury Chaykin","type":"Person","_key":"5839"} +{"label":"Jimmy Herman","version":18,"id":"7869","lastModified":"1300090708000","name":"Jimmy Herman","type":"Person","_key":"5840"} +{"label":"Nathan Lee Chasing His Horse","version":19,"id":"7871","lastModified":"1300090514000","name":"Nathan Lee Chasing His Horse","type":"Person","_key":"5841"} +{"label":"Michael Spears","version":19,"id":"7872","lastModified":"1300091293000","name":"Michael Spears","type":"Person","_key":"5842"} +{"label":"Jason R. Lone Hill","version":17,"id":"7873","lastModified":"1300090619000","name":"Jason R. Lone Hill","type":"Person","_key":"5843"} +{"label":"Tony Pierce","version":18,"id":"7874","lastModified":"1300091204000","name":"Tony Pierce","type":"Person","_key":"5844"} +{"label":"Doris Leader Charge","version":17,"id":"7875","lastModified":"1300090619000","name":"Doris Leader Charge","type":"Person","_key":"5845"} +{"label":"The Lives of Others","description":"The tragic love story in the East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system. ","id":"582","runtime":137,"imdbId":"tt0405094","trailer":"http:\/\/www.youtube.com\/watch?v=210","homepage":"http:\/\/www.movie.de\/filme\/dlda\/","version":225,"lastModified":"1299972601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4bc9092c017a3c57fe0032b8\/das-leben-der-anderen-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Drama","title":"The Lives of Others","releaseDate":1142380800000,"language":"en","tagline":"Before the Fall of the Berlin Wall, East Germany's Secret Police Listened to Your Secrets.","type":"Movie","_key":"5846"} +{"label":"Florian Henckel von Donnersmarck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4d2dcbd05e73d63a6000e084\/florian-henckel-von-donnersmarck-profile.jpg","version":35,"id":"8193","lastModified":"1300090299000","name":"Florian Henckel von Donnersmarck","type":"Person","_key":"5847"} +{"label":"Ulrich M\u00fche","version":36,"id":"8196","lastModified":"1300090590000","name":"Ulrich M\u00fche","type":"Person","_key":"5848"} +{"label":"Sebastian Koch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/490\/4cb8619e5e73d67786000490\/sebastian-koch-profile.jpg","version":43,"id":"8197","lastModified":"1300090499000","name":"Sebastian Koch","type":"Person","_key":"5849"} +{"label":"Ulrich Tukur","version":53,"id":"8198","lastModified":"1300090462000","name":"Ulrich Tukur","type":"Person","_key":"5850"} +{"label":"Thomas Thieme","version":34,"id":"8199","lastModified":"1300090708000","name":"Thomas Thieme","type":"Person","_key":"5851"} +{"label":"Hans-Uwe Bauer","version":22,"id":"8200","lastModified":"1300091296000","name":"Hans-Uwe Bauer","type":"Person","_key":"5852"} +{"label":"Volkmar Kleinert","version":22,"id":"8201","lastModified":"1300091178000","name":"Volkmar Kleinert","type":"Person","_key":"5853"} +{"label":"Matthias Brenner","version":20,"id":"8202","lastModified":"1300091496000","name":"Matthias Brenner","type":"Person","_key":"5854"} +{"label":"Bastian Trost","version":21,"id":"8203","lastModified":"1300091010000","name":"Bastian Trost","type":"Person","_key":"5855"} +{"label":"Charly H\u00fcbner","version":25,"id":"8204","lastModified":"1300091187000","name":"Charly H\u00fcbner","type":"Person","_key":"5856"} +{"label":"Marie Gruber","version":25,"id":"8205","lastModified":"1299493741000","name":"Marie Gruber","type":"Person","_key":"5857"} +{"label":"Hinnerk Sch\u00f6nemann","version":32,"id":"8206","lastModified":"1300130999000","name":"Hinnerk Sch\u00f6nemann","type":"Person","_key":"5858"} +{"label":"Thomas Arnold","version":21,"id":"8207","lastModified":"1300091094000","name":"Thomas Arnold","type":"Person","_key":"5859"} +{"label":"Monty Python's Life of Brian","description":"A brilliant parody from the British comedy group Monty Python about the history of (not Jesus but the boy born right next door to The Manger, Brian). A Terry Jones directed film from 1979 that has since gained cult status. What many fans don't know is that this movie might never have happened if not for the financial assistance of George Harrison (of The Beatles).","id":"583","runtime":94,"imdbId":"tt0079470","trailer":"http:\/\/www.youtube.com\/watch?v=vVHhg67RVd4","version":271,"lastModified":"1299972414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4bc90936017a3c57fe0032f4\/monty-python-s-life-of-brian-mid.jpg","studio":"Handmade Films Ltd.","genre":"Comedy","title":"Monty Python's Life of Brian","releaseDate":303696000000,"language":"en","type":"Movie","_key":"5860"} +{"label":"Terry Jones","version":86,"id":"10707","lastModified":"1300090442000","name":"Terry Jones","type":"Person","_key":"5861"} +{"label":"Graham Chapman","version":73,"birthday":"-914551200000","id":"10722","birthplace":"Melton Mowbray leichester","lastModified":"1300090406000","name":"Graham Chapman","type":"Person","_key":"5862"} +{"label":"John Cleese","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c3\/4bd70d38017a3c21f60000c3\/john-cleese-profile.jpg","version":231,"id":"8930","lastModified":"1300090256000","name":"John Cleese","type":"Person","_key":"5863"} +{"label":"Eric Idle","version":114,"id":"10713","lastModified":"1300090339000","name":"Eric Idle","type":"Person","_key":"5864"} +{"label":"Terence Bayler","version":20,"id":"10732","lastModified":"1300092234000","name":"Terence Bayler","type":"Person","_key":"5865"} +{"label":"Carol Cleveland","version":24,"id":"10733","lastModified":"1300091930000","name":"Carol Cleveland","type":"Person","_key":"5866"} +{"label":"Kenneth Colley","version":35,"id":"10734","lastModified":"1300090453000","name":"Kenneth Colley","type":"Person","_key":"5867"} +{"label":"Gwen Taylor","version":18,"id":"10735","lastModified":"1300092203000","name":"Gwen Taylor","type":"Person","_key":"5868"} +{"label":"Sue Jones-Davies","version":18,"id":"10737","lastModified":"1300092197000","name":"Sue Jones-Davies","type":"Person","_key":"5869"} +{"label":"John Case","version":20,"id":"10738","lastModified":"1300092182000","name":"John Case","type":"Person","_key":"5870"} +{"label":"2 Fast 2 Furious","description":"It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Clemente to bring Verone down.","id":"584","runtime":101,"imdbId":"tt0322259","trailer":"http:\/\/www.youtube.com\/watch?v=EyCtnA15PRc","version":159,"lastModified":"1299972155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39e\/4bc90951017a3c57fe00339e\/2-fast-2-furious-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"2 Fast 2 Furious","releaseDate":1054857600000,"language":"en","tagline":"How Fast Do You Want It?","type":"Movie","_key":"5871"} +{"label":"Paul Walker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/025\/4bc9fc6c017a3c0e95000025\/paul-walker-profile.jpg","version":109,"id":"8167","lastModified":"1300096757000","name":"Paul Walker","type":"Person","_key":"5872"} +{"label":"Tyrese Gibson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f5\/4c438af85e73d60f380003f5\/tyrese-gibson-profile.jpg","biography":"<P class=MsoNormal style=\"MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\"><FONT size=3>Tyrese Darnell Gibson was born on December 30, 1978 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Los Angeles<\/st1:City>, <st1:State w:st=\"on\">California<\/st1:State><\/st1:place>. Also known simply as Tyrese, he is an R&B singer, rapper, actor and former fashion model. After releasing several a","version":82,"id":"8169","lastModified":"1300113617000","name":"Tyrese Gibson","type":"Person","_key":"5873"} +{"label":"Eva Mendes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/854\/4bfc1684017a3c7036000854\/eva-mendes-profile.jpg","biography":"<FONT size=3><SPAN style=\"FONT-FAMILY: 'Times New Roman','serif'; mso-bidi-font-weight: bold\">Eva Mendes<\/SPAN><SPAN style=\"FONT-FAMILY: 'Times New Roman','serif'\"> is an American actress. She began acting in the late 1990s, and after a series of roles in several low-end films, she broke into more mainstream Hollywood releases, such as 2 Fast 2 Furious, Hitch, We Own The Night and The Spirit.<?xml:namespace prefix = o ns = \"urn:schemas-microsoft-com:office:office\" \/><o:p><\/o:p><\/SPAN><\/FONT>\r\n<P","version":123,"birthday":"131670000000","id":"8170","birthplace":"Miami, Florida, US","lastModified":"1300025225000","name":"Eva Mendes","type":"Person","_key":"5874"} +{"label":"Ludacris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28f\/4c99d4217b9aa1275800028f\/ludacris-profile.jpg","version":50,"birthday":"242780400000","id":"8171","lastModified":"1300090316000","name":"Ludacris","type":"Person","_key":"5875"} +{"label":"Thom Barry","version":24,"id":"8175","lastModified":"1300091443000","name":"Thom Barry","type":"Person","_key":"5876"} +{"label":"Amaury Nolasco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a5\/4c3b1df95e73d671d10001a5\/amaury-nolasco-profile.jpg","version":47,"id":"17341","lastModified":"1299492329000","name":"Amaury Nolasco","type":"Person","_key":"5877"} +{"label":"Michael Ealy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04b\/4c97a0fb7b9aa122e100004b\/michael-ealy-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Michael Brown,<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> professionally known as <B>Michael Ealy<\/B>, was born on August 3, 1973 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Silver Spring<\/st1:City>, <st1:State w:st=\"on\">Maryland<\/st1:State><\/st1:place>. He attended <st1:PlaceName w:st=\"o","version":64,"birthday":"113180400000","id":"8177","birthplace":"Maryland, USA","lastModified":"1300090329000","name":"Michael Ealy","type":"Person","_key":"5878"} +{"label":"Jin Auyeung","version":21,"id":"8178","lastModified":"1300091178000","name":"Jin Auyeung","type":"Person","_key":"5879"} +{"label":"Edward Finlay","version":20,"id":"8179","lastModified":"1300091123000","name":"Edward Finlay","type":"Person","_key":"5880"} +{"label":"Mo Gallini","version":21,"id":"8180","lastModified":"1300090837000","name":"Mo Gallini","type":"Person","_key":"5881"} +{"label":"Monsters, Inc.","description":"James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.","id":"585","runtime":92,"imdbId":"tt0198781","trailer":"http:\/\/www.youtube.com\/watch?v=gaLhEVzlndg","homepage":"http:\/\/www.pixar.com\/featurefilms\/inc\/","version":604,"lastModified":"1299912294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f5\/4bc90967017a3c57fe0033f5\/monsters-inc-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Monsters, Inc.","releaseDate":1004659200000,"language":"en","tagline":"We Scare Because We Care.","type":"Movie","_key":"5882"} +{"label":"Pete Docter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a9\/4bf2d611017a3c320d0004a9\/pete-docter-profile.jpg","version":82,"id":"12890","lastModified":"1300090448000","name":"Pete Docter","type":"Person","_key":"5883"} +{"label":"Billy Crystal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d2\/4c4325f67b9aa145900002d2\/billy-crystal-profile.jpg","version":118,"id":"7904","lastModified":"1299791611000","name":"Billy Crystal","type":"Person","_key":"5884"} +{"label":"Mary Gibbs","version":41,"id":"7905","lastModified":"1300090605000","name":"Mary Gibbs","type":"Person","_key":"5885"} +{"label":"Jennifer Tilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/309\/4c43267e7b9aa14592000309\/jennifer-tilly-profile.jpg","version":108,"id":"7906","lastModified":"1300090379000","name":"Jennifer Tilly","type":"Person","_key":"5886"} +{"label":"Bob Peterson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ba\/4bccc5d6017a3c0f2c0001ba\/bob-peterson-profile.jpg","version":123,"id":"10","lastModified":"1299491375000","name":"Bob Peterson","type":"Person","_key":"5887"} +{"label":"John Ratzenberger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce5\/4ccf7aca5e73d65021000ce5\/john-ratzenberger-profile.jpg","version":168,"id":"7907","lastModified":"1300090262000","name":"John Ratzenberger","type":"Person","_key":"5888"} +{"label":"Steve Susskind","version":40,"id":"7909","lastModified":"1300091038000","name":"Steve Susskind","type":"Person","_key":"5889"} +{"label":"Jeff Pidgeon","version":71,"id":"7882","lastModified":"1300090779000","name":"Jeff Pidgeon","type":"Person","_key":"5890"} +{"label":"Samuel Lord Black","version":41,"id":"7910","lastModified":"1300091080000","name":"Samuel Lord Black","type":"Person","_key":"5891"} +{"label":"Wag the Dog","description":"Wag The Dog is strongly emotional political satire about the manipulation of media and the political circumstances of the ages. During a presidential race the President has an affair with a school teacher and to avoid media exploitation the Presidents advisor helps him to stage a fake war in Albania. ","id":"586","runtime":97,"imdbId":"tt0120885","trailer":"http:\/\/www.youtube.com\/watch?v=EnSauj2855M","version":141,"lastModified":"1299971794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4c3e9b567b9aa13dc6000052\/wag-the-dog-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Wag the Dog","releaseDate":883008000000,"language":"en","type":"Movie","_key":"5892"} +{"label":"Anne Heche","version":68,"id":"8256","lastModified":"1300090413000","name":"Anne Heche","type":"Person","_key":"5893"} +{"label":"Willie Nelson","version":31,"id":"8261","lastModified":"1300101481000","name":"Willie Nelson","type":"Person","_key":"5894"} +{"label":"Andrea Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/590\/4d4c34575e73d617c1001590\/andrea-martin-profile.jpg","version":54,"id":"8263","lastModified":"1300090952000","name":"Andrea Martin","type":"Person","_key":"5895"} +{"label":"John Michael Higgins","version":68,"id":"8265","lastModified":"1300090308000","name":"John Michael Higgins","type":"Person","_key":"5896"} +{"label":"Suzie Plakson","version":16,"id":"8266","lastModified":"1300091311000","name":"Suzie Plakson","type":"Person","_key":"5897"} +{"label":"Michael Belson","version":14,"id":"8268","lastModified":"1300091393000","name":"Michael Belson","type":"Person","_key":"5898"} +{"label":"Suzanne Cryer","version":14,"id":"8269","lastModified":"1300091113000","name":"Suzanne Cryer","type":"Person","_key":"5899"} +{"label":"Jason Cottle","version":15,"id":"8270","lastModified":"1300091113000","name":"Jason Cottle","type":"Person","_key":"5900"} +{"label":"Big Fish","description":"The story revolves around a dying father and his son, who is trying to learn more about his dad by piecing together the stories he has gathered over the years. The son winds up re-creating his father's elusive life in a series of legends and myths inspired by the few facts he knows. Through these tales, the son begins to understand his father's great feats and his great failings.","id":"587","runtime":125,"imdbId":"tt0319061","trailer":"http:\/\/www.youtube.com\/watch?v=lfW8qaJL1Fs","version":175,"lastModified":"1300123918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/431\/4bc90978017a3c57fe003431\/big-fish-mid.jpg","studio":"Columbia Pictures","genre":"Adventure","title":"Big Fish","releaseDate":1071014400000,"language":"en","type":"Movie","_key":"5901"} +{"label":"Billy Crudup","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4bf8c26f017a3c7031000081\/billy-crudup-profile.jpg","version":82,"id":"8289","lastModified":"1299490979000","name":"Billy Crudup","type":"Person","_key":"5902"} +{"label":"Alison Lohman","version":59,"id":"8291","lastModified":"1300090259000","name":"Alison Lohman","type":"Person","_key":"5903"} +{"label":"Marion Cotillard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4bf0133d017a3c3e880000e6\/marion-cotillard-profile.jpg","biography":"Marion Cotillard (born 30 September 1975) is a French actress. She garnered critical acclaim for her roles in films such as My Sex Life... or How I Got Into an Argument, Taxi, Furia, Pretty Things and Inception.<br><br>She won the Academy Award for Best Actress, BAFTA Award for Best Actress, C\u00e9sar for Best Actress and the Golden Globe for Best Actress in Musical or a Comedy for her portrayal of French singer \u00c9dith Piaf in La Vie en Rose. She made film history by becoming the first person to win ","version":153,"birthday":"181263600000","id":"8293","birthplace":"Paris, France","lastModified":"1299614153000","name":"Marion Cotillard","type":"Person","_key":"5904"} +{"label":"Robert Guillaume","version":27,"id":"8294","lastModified":"1300090579000","name":"Robert Guillaume","type":"Person","_key":"5905"} +{"label":"Matthew McGrory","version":22,"id":"8295","lastModified":"1300090779000","name":"Matthew McGrory","type":"Person","_key":"5906"} +{"label":"Silent Hill","description":"A girl has a bad case of sleep walking and while dreaming talks about a place called Silent Hill. Her parents take her to this place that she only mentions in dreams yet in an attempt to get there they crash their car and loose their daughter. They begin searching for her yet not knowing the dangers that lurk in Silent Hill.","id":"588","runtime":126,"imdbId":"tt0384537","trailer":"http:\/\/www.youtube.com\/watch?v=G1ESsZ3mY_E","homepage":"http:\/\/www.sonypictures.com\/homevideo\/silenthill\/","version":338,"lastModified":"1299971416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb2\/4d431ea27b9aa15bb5004eb2\/silent-hill-mid.jpg","studio":"Silent Hill DCP Inc.","genre":"Horror","title":"Silent Hill","releaseDate":1145577600000,"language":"en","tagline":"We've been expecting you.","type":"Movie","_key":"5907"} +{"label":"Simon Board","version":15,"id":"8371","lastModified":"1300091208000","name":"Simon Board","type":"Person","_key":"5908"} +{"label":"Christophe Gans","version":27,"id":"8296","lastModified":"1300090498000","name":"Christophe Gans","type":"Person","_key":"5909"} +{"label":"Radha Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/60b\/4bfac5a8017a3c703100060b\/radha-mitchell-profile.jpg","version":86,"id":"8329","lastModified":"1300090270000","name":"Radha Mitchell","type":"Person","_key":"5910"} +{"label":"Laurie Holden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c4\/4ca8a6a37b9aa17acf0004c4\/laurie-holden-profile.jpg","version":24,"id":"8332","lastModified":"1300090388000","name":"Laurie Holden","type":"Person","_key":"5911"} +{"label":"Deborah Kara Unger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c5\/4d24df245e73d626b00000c5\/deborah-kara-unger-profile.jpg","version":68,"id":"13549","lastModified":"1300090258000","name":"Deborah Kara Unger","type":"Person","_key":"5912"} +{"label":"Kim Coates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4c913b157b9aa10212000028\/kim-coates-profile.jpg","version":77,"birthday":"-347072400000","id":"8335","birthplace":"Saskatoon, Saskatchewan, Canada","lastModified":"1300090250000","name":"Kim Coates","type":"Person","_key":"5913"} +{"label":"Tanya Allen","version":21,"id":"8336","lastModified":"1300090763000","name":"Tanya Allen","type":"Person","_key":"5914"} +{"label":"Jodelle Ferland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5de\/4d1158727b9aa114880005de\/jodelle-ferland-profile.jpg","version":30,"id":"8338","lastModified":"1300090460000","name":"Jodelle Ferland","type":"Person","_key":"5915"} +{"label":"Colleen Williams","version":16,"id":"8341","lastModified":"1300091178000","name":"Colleen Williams","type":"Person","_key":"5916"} +{"label":"Ron Gabriel","version":16,"id":"8343","lastModified":"1300091031000","name":"Ron Gabriel","type":"Person","_key":"5917"} +{"label":"Derek Ritschel","version":15,"id":"8345","lastModified":"1300091208000","name":"Derek Ritschel","type":"Person","_key":"5918"} +{"label":"Eve Crawford","version":15,"id":"8347","lastModified":"1300091121000","name":"Eve Crawford","type":"Person","_key":"5919"} +{"label":"Amanda Hiebert","version":15,"id":"8348","lastModified":"1300091208000","name":"Amanda Hiebert","type":"Person","_key":"5920"} +{"label":"Roberto Campanella","version":18,"id":"8352","lastModified":"1300091208000","name":"Roberto Campanella","type":"Person","_key":"5921"} +{"label":"The Hours","description":"The Hours is a melancholy tragedy based on the book by Virginia Woolf \u201cMrs. Dalloway\u201d about three women doomed with depression. Director Stephaen Daldry timelessly presents the life and psychotic changes of the exceptional English author which Nichole Kidman won the Oscar for best actress.","id":"590","runtime":114,"imdbId":"tt0274558","version":141,"lastModified":"1299971233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4bc90982017a3c57fe003465\/the-hours-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"The Hours","releaseDate":1040947200000,"language":"en","type":"Movie","_key":"5922"} +{"label":"Stephen Dillane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/339\/4c95d6637b9aa10d59000339\/stephen-dillane-profile.jpg","version":58,"id":"8435","lastModified":"1300090289000","name":"Stephen Dillane","type":"Person","_key":"5923"} +{"label":"Miranda Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc6\/4be6ff8c017a3c35c1000cc6\/miranda-richardson-profile.jpg","biography":"Miranda Jane Richardson is an English stage, film and television actor. She has been nominated for two Academy Awards, and has won two Golden Globes (with seven nominations) and a BAFTA (with six nominations) during her career.","version":134,"birthday":"-373424400000","id":"8436","birthplace":"Southport, Lancashire, UK","lastModified":"1300090329000","name":"Miranda Richardson","type":"Person","_key":"5924"} +{"label":"George Loftus","version":17,"id":"8439","lastModified":"1300091177000","name":"George Loftus","type":"Person","_key":"5925"} +{"label":"Charley Ramm","version":17,"id":"8440","lastModified":"1300091317000","name":"Charley Ramm","type":"Person","_key":"5926"} +{"label":"Sophie Wyburd","version":17,"id":"8441","lastModified":"1300091295000","name":"Sophie Wyburd","type":"Person","_key":"5927"} +{"label":"Lyndsey Marshal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06f\/4cdc4fca7b9aa137fe00006f\/lyndsey-marshal-profile.jpg","version":36,"id":"8442","lastModified":"1300090743000","name":"Lyndsey Marshal","type":"Person","_key":"5928"} +{"label":"Linda Bassett","version":25,"id":"8443","lastModified":"1300090435000","name":"Linda Bassett","type":"Person","_key":"5929"} +{"label":"Christian Coulson","version":29,"id":"8444","lastModified":"1300090403000","name":"Christian Coulson","type":"Person","_key":"5930"} +{"label":"Michael Culkin","version":30,"id":"8445","lastModified":"1300091095000","name":"Michael Culkin","type":"Person","_key":"5931"} +{"label":"Jack Rovello","version":19,"id":"8446","lastModified":"1300091227000","name":"Jack Rovello","type":"Person","_key":"5932"} +{"label":"Jeff Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4bd70d1e017a3c21f60000be\/jeff-daniels-profile.jpg","version":120,"id":"8447","lastModified":"1300090326000","name":"Jeff Daniels","type":"Person","_key":"5933"} +{"label":"The Da Vinci Code","description":"A murder inside the Louvre and clues in Da Vinci paintings lead to the discovery of a religious mystery protected by a secret society for two thousand years, which could shake the foundations of Christianity.","id":"591","runtime":149,"imdbId":"tt0382625","trailer":"http:\/\/www.youtube.com\/watch?v=pE7apZzCIAA","homepage":"http:\/\/www.sonypictures.com\/homevideo\/thedavincicode\/index.html","version":304,"lastModified":"1299971059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/011\/4c493bf27b9aa115fc000011\/the-da-vinci-code-mid.jpg","studio":" Columbia Pictures","genre":"Drama","title":"The Da Vinci Code","releaseDate":1147996800000,"language":"en","tagline":"So Dark The Con Of Man","type":"Movie","_key":"5934"} +{"label":"William M. Connor","version":26,"id":"8419","lastModified":"1300091430000","name":"William M. Connor","type":"Person","_key":"5935"} +{"label":"Ben Dixon","version":39,"id":"8420","lastModified":"1300090786000","name":"Ben Dixon","type":"Person","_key":"5936"} +{"label":"Elisabeth Guthmann","version":26,"id":"8421","lastModified":"1300091134000","name":"Elisabeth Guthmann","type":"Person","_key":"5937"} +{"label":"Jean-Yves Berteloot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/204\/4ca4917d5e73d636f9000204\/jean-yves-berteloot-profile.jpg","version":39,"id":"34259","lastModified":"1300091931000","name":"Jean-Yves Berteloot","type":"Person","_key":"5938"} +{"label":"Jean-Pierre Marielle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18f\/4bdb6706017a3c5d8d00018f\/jean-pierre-marielle-profile.jpg","version":53,"id":"20795","lastModified":"1300090589000","name":"Jean-Pierre Marielle","type":"Person","_key":"5939"} +{"label":"Marie-Fran\u00e7oise Audollent","version":30,"id":"38885","lastModified":"1300090554000","name":"Marie-Fran\u00e7oise Audollent","type":"Person","_key":"5940"} +{"label":"Agathe Natanson","version":39,"id":"28186","lastModified":"1300091103000","name":"Agathe Natanson","type":"Person","_key":"5941"} +{"label":"Tina Maskell","version":30,"id":"38886","lastModified":"1300091089000","name":"Tina Maskell","type":"Person","_key":"5942"} +{"label":"Peter Pedrero","version":27,"id":"38887","lastModified":"1300090603000","name":"Peter Pedrero","type":"Person","_key":"5943"} +{"label":"Seth Gabel","version":30,"id":"38888","lastModified":"1300091001000","name":"Seth Gabel","type":"Person","_key":"5944"} +{"label":"The Conversation","description":"The Conversation is a Francis Ford Coppola thriller from 1974 about a professional surveillance man who is hired to record the conversations between two workers. Yet it looks like he\u2019s gotten into more than he\u2019s getting paid for as information about a murder may have been recorded. ","id":"592","runtime":113,"imdbId":"tt0071360","trailer":"http:\/\/www.youtube.com\/watch?v=LjMlKKwihfs","version":165,"lastModified":"1299970862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4bf1923e017a3c320d00027e\/the-conversation-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"The Conversation","releaseDate":134524800000,"language":"en","type":"Movie","_key":"5945"} +{"label":"Charles Myers","version":14,"id":"8430","lastModified":"1300091426000","name":"Charles Myers","type":"Person","_key":"5946"} +{"label":"Cindy Williams","version":31,"id":"8434","lastModified":"1300091051000","name":"Cindy Williams","type":"Person","_key":"5947"} +{"label":"Teri Garr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24c\/4cb5c7427b9aa138d800024c\/teri-garr-profile.jpg","version":56,"id":"8437","lastModified":"1300090432000","name":"Teri Garr","type":"Person","_key":"5948"} +{"label":"Elizabeth MacRae","version":14,"id":"8438","lastModified":"1300091426000","name":"Elizabeth MacRae","type":"Person","_key":"5949"} +{"label":"Solaris","description":"Ground control has been receiving strange transmissions from the three remaining residents of the Solaris space station. When cosmonaut and psychologist Kris Kelvin is sent to investigate, he experiences the strange phenomena that afflict the Solaris crew, sending him on a voyage into the darkest recesses of his own consciousness. Based on the novel by the same name from Polish author Stanislaw Lem.","id":"593","runtime":167,"imdbId":"tt0069293","version":105,"lastModified":"1299531784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22e\/4c16500b5e73d64a2400022e\/593-mid.jpg","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Drama","title":"Solaris","releaseDate":69897600000,"language":"en","type":"Movie","_key":"5950"} +{"label":"Andrei Tarkovsky","version":57,"id":"8452","lastModified":"1299693670000","name":"Andrei Tarkovsky","type":"Person","_key":"5951"} +{"label":"A. Ides","version":18,"id":"8469","lastModified":"1300091136000","name":"A. Ides","type":"Person","_key":"5952"} +{"label":"Yuri Kushneryov","version":14,"id":"8470","lastModified":"1300091218000","name":"Yuri Kushneryov","type":"Person","_key":"5953"} +{"label":"Larisa Tarkovskaya","version":17,"id":"8471","lastModified":"1299494385000","name":"Larisa Tarkovskaya","type":"Person","_key":"5954"} +{"label":"Natalya Bondarchuk","version":15,"id":"8457","lastModified":"1300091005000","name":"Natalya Bondarchuk","type":"Person","_key":"5955"} +{"label":"J\u00fcri J\u00e4rvet","version":19,"id":"8474","lastModified":"1300091021000","name":"J\u00fcri J\u00e4rvet","type":"Person","_key":"5956"} +{"label":"Anatoli Solonitsyn","version":20,"id":"8475","lastModified":"1299600670000","name":"Anatoli Solonitsyn","type":"Person","_key":"5957"} +{"label":"Vladislav Dvorzhetsky","version":14,"id":"8476","lastModified":"1300091218000","name":"Vladislav Dvorzhetsky","type":"Person","_key":"5958"} +{"label":"Nikolai Grinko","version":34,"id":"8477","lastModified":"1299669213000","name":"Nikolai Grinko","type":"Person","_key":"5959"} +{"label":"Sos Sargsyan","version":14,"id":"8478","lastModified":"1300091611000","name":"Sos Sargsyan","type":"Person","_key":"5960"} +{"label":"Olga Barnet","version":16,"id":"8479","lastModified":"1300091448000","name":"Olga Barnet","type":"Person","_key":"5961"} +{"label":"Tamara Ogorodnikova","version":19,"id":"8480","lastModified":"1299600670000","name":"Tamara Ogorodnikova","type":"Person","_key":"5962"} +{"label":"Georgi Tejkh","version":15,"id":"8481","lastModified":"1300091136000","name":"Georgi Tejkh","type":"Person","_key":"5963"} +{"label":"Donatas Banionis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/311\/4c6129807b9aa172da000311\/donatas-banionis-profile.jpg","version":22,"birthday":"-1441501200000","id":"128284","birthplace":"Kaunas, Lithuania","lastModified":"1300094932000","name":"Donatas Banionis","type":"Person","_key":"5964"} +{"label":"The Terminal","description":"A comedy that shows how the America immigration office deals with a East-European foreigner without a country. Director Steven Spielberg gives us a humorous look into the difficulties one man with very little English knowledge faces while stuck in a New York airport while his country is at civil war.","id":"594","runtime":124,"imdbId":"tt0362227","trailer":"http:\/\/www.youtube.com\/watch?v=Xm1xrJD5aW8","homepage":"http:\/\/www.theterminal-themovie.com\/","version":164,"lastModified":"1299970507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5a\/4d507c6c7b9aa13aaf00dc5a\/the-terminal-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"The Terminal","releaseDate":1087516800000,"language":"en","tagline":"Life is waiting.","type":"Movie","_key":"5965"} +{"label":"Chi McBride","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b53\/4d779bc55e73d67f02000b53\/chi-mcbride-profile.jpg","version":95,"id":"8687","lastModified":"1300090396000","name":"Chi McBride","type":"Person","_key":"5966"} +{"label":"Diego Luna","version":40,"id":"8688","lastModified":"1299492415000","name":"Diego Luna","type":"Person","_key":"5967"} +{"label":"Barry Shabaka Henley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b6f\/4cf3e3dc5e73d62385000b6f\/barry-shabaka-henley-profile.jpg","version":49,"id":"8689","lastModified":"1300090737000","name":"Barry Shabaka Henley","type":"Person","_key":"5968"} +{"label":"Kumar Pallana","version":22,"id":"8690","lastModified":"1300091126000","name":"Kumar Pallana","type":"Person","_key":"5969"} +{"label":"Eddie Jones","version":27,"id":"8692","lastModified":"1300091426000","name":"Eddie Jones","type":"Person","_key":"5970"} +{"label":"Jude Ciccolella","version":26,"id":"8693","lastModified":"1300091426000","name":"Jude Ciccolella","type":"Person","_key":"5971"} +{"label":"Corey Reynolds","version":21,"id":"8694","lastModified":"1300091697000","name":"Corey Reynolds","type":"Person","_key":"5972"} +{"label":"Guillermo D\u00edaz","version":28,"id":"8695","lastModified":"1300090542000","name":"Guillermo D\u00edaz","type":"Person","_key":"5973"} +{"label":"Rini Bell","version":20,"id":"8696","lastModified":"1300091604000","name":"Rini Bell","type":"Person","_key":"5974"} +{"label":"Stephen Mendel","version":21,"id":"8697","lastModified":"1300091214000","name":"Stephen Mendel","type":"Person","_key":"5975"} +{"label":"Valeri Nikolayev","version":28,"id":"8698","lastModified":"1300113339000","name":"Valeri Nikolayev","type":"Person","_key":"5976"} +{"label":"Sasha Spielberg","version":23,"id":"8700","lastModified":"1300091604000","name":"Sasha Spielberg","type":"Person","_key":"5977"} +{"label":"To Kill a Mockingbird","description":"To Kill A Mockingbird is the film adaptation of the classic book by Harper Lee. The film tells the story of a child in a small American town in the 1930\u2019s where color prejudice, racial hatred, and taking the law into your own hands were everyday events. Gregory Peck would receive an Oscar for his excellent portrayal of a single father named Atticus Finch.","id":"595","runtime":129,"imdbId":"tt0056592","trailer":"http:\/\/www.youtube.com\/watch?v=877","version":147,"lastModified":"1299970328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4df\/4bc9099c017a3c57fe0034df\/to-kill-a-mockingbird-mid.jpg","studio":"Highland-Brentwood Production","genre":"Crime","title":"To Kill a Mockingbird","releaseDate":-221529600000,"language":"en","tagline":"If you have read the novel, you will relive every treasured moment. . .If not, a deeply moving experience awaits you!","type":"Movie","_key":"5978"} +{"label":"Robert Mulligan","version":26,"id":"8482","lastModified":"1300090543000","name":"Robert Mulligan","type":"Person","_key":"5979"} +{"label":"Gregory Peck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4bcc6b53017a3c0f30000120\/gregory-peck-profile.jpg","version":106,"id":"8487","lastModified":"1300127296000","name":"Gregory Peck","type":"Person","_key":"5980"} +{"label":"Mary Badham","version":17,"id":"8488","lastModified":"1300090542000","name":"Mary Badham","type":"Person","_key":"5981"} +{"label":"Phillip Alford","version":16,"id":"8489","lastModified":"1300090538000","name":"Phillip Alford","type":"Person","_key":"5982"} +{"label":"John Megna","version":15,"id":"8490","lastModified":"1300091787000","name":"John Megna","type":"Person","_key":"5983"} +{"label":"Rosemary Murphy","version":36,"id":"8492","lastModified":"1300090383000","name":"Rosemary Murphy","type":"Person","_key":"5984"} +{"label":"Ruth White","version":19,"id":"8493","lastModified":"1300091896000","name":"Ruth White","type":"Person","_key":"5985"} +{"label":"Estelle Evans","version":15,"id":"8494","lastModified":"1300091574000","name":"Estelle Evans","type":"Person","_key":"5986"} +{"label":"Alice Ghostley","version":17,"id":"8495","lastModified":"1300091786000","name":"Alice Ghostley","type":"Person","_key":"5987"} +{"label":"Paul Fix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f9\/4ca9f7fb7b9aa17acb0006f9\/paul-fix-profile.jpg","version":40,"birthday":"-2171322000000","id":"8496","birthplace":"Dobbs Ferry, New York, USA","lastModified":"1300090355000","name":"Paul Fix","type":"Person","_key":"5988"} +{"label":"James Anderson","version":21,"id":"8498","lastModified":"1300091730000","name":"James Anderson","type":"Person","_key":"5989"} +{"label":"William Windom","version":25,"id":"8499","lastModified":"1299914080000","name":"William Windom","type":"Person","_key":"5990"} +{"label":"The Grapes of Wrath","description":"The Grapes of Wrath is a social drama filmed in 1939 based on the novel by the same name from acclaimed author John Steinbeck.","id":"596","runtime":128,"imdbId":"tt0032551","version":144,"lastModified":"1299911065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4bc909a0017a3c57fe0034fa\/the-grapes-of-wrath-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Grapes of Wrath","releaseDate":-944784000000,"language":"en","type":"Movie","_key":"5991"} +{"label":"John Ford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4cb3705e7b9aa13466000015\/john-ford-profile.jpg","version":110,"id":"8500","lastModified":"1300090412000","name":"John Ford","type":"Person","_key":"5992"} +{"label":"Edward O'Fearna","version":14,"id":"8510","lastModified":"1300091027000","name":"Edward O'Fearna","type":"Person","_key":"5993"} +{"label":"Jane Darwell","version":41,"id":"8515","lastModified":"1300090960000","name":"Jane Darwell","type":"Person","_key":"5994"} +{"label":"John Carradine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4bd5ad0e017a3c2e74000215\/john-carradine-profile.jpg","version":110,"id":"8516","lastModified":"1300101345000","name":"John Carradine","type":"Person","_key":"5995"} +{"label":"Charley Grapewin","version":36,"id":"8517","lastModified":"1300090811000","name":"Charley Grapewin","type":"Person","_key":"5996"} +{"label":"Dorris Bowdon","version":14,"id":"8518","lastModified":"1300091786000","name":"Dorris Bowdon","type":"Person","_key":"5997"} +{"label":"Russell Simpson","version":18,"id":"8519","lastModified":"1300091824000","name":"Russell Simpson","type":"Person","_key":"5998"} +{"label":"O.Z. Whitehead","version":17,"id":"8520","lastModified":"1300091786000","name":"O.Z. Whitehead","type":"Person","_key":"5999"} +{"label":"Eddie Quillan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24c\/4c604a3b7b9aa172dd00024c\/eddie-quillan-profile.jpg","version":20,"id":"8521","lastModified":"1300091720000","name":"Eddie Quillan","type":"Person","_key":"6000"} +{"label":"Zeffie Tilbury","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f83\/4be93d17017a3c35bd000f83\/zeffie-tilbury-profile.jpg","version":24,"birthday":"-3443302800000","id":"8522","birthplace":"London, England, UK","lastModified":"1300091497000","name":"Zeffie Tilbury","type":"Person","_key":"6001"} +{"label":"Titanic","description":"Titanic is the blockbuster film from James Cameron starring Leonardo DiCaprio and Kate Winslet as the love pair on the doomed first Titanic trip across the Atlantic Ocean. Commercially the film became the most successful film of all time.","id":"597","runtime":194,"imdbId":"tt0120338","trailer":"http:\/\/www.youtube.com\/watch?v=zCy5WQ9S4c0","homepage":"http:\/\/www.titanicmovie.com\/menu.html","version":205,"lastModified":"1300038173000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51d\/4bc909a7017a3c57fe00351d\/titanic-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Titanic","releaseDate":882489600000,"language":"en","type":"Movie","_key":"6002"} +{"label":"Kathy Bates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4c1693f97b9aa108d80000a4\/kathy-bates-profile.jpg","version":142,"id":"8534","lastModified":"1300090263000","name":"Kathy Bates","type":"Person","_key":"6003"} +{"label":"Victor Garber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a6\/4d2ba3e95e73d639180000a6\/victor-garber-profile.jpg","version":54,"id":"8536","lastModified":"1300090481000","name":"Victor Garber","type":"Person","_key":"6004"} +{"label":"Lewis Abernathy","version":23,"id":"8538","lastModified":"1300091007000","name":"Lewis Abernathy","type":"Person","_key":"6005"} +{"label":"Nicholas Cascone","version":24,"id":"8539","lastModified":"1300091294000","name":"Nicholas Cascone","type":"Person","_key":"6006"} +{"label":"Danny Nucci","version":40,"id":"8540","lastModified":"1300090531000","name":"Danny Nucci","type":"Person","_key":"6007"} +{"label":"Jason Barry","version":30,"id":"8541","lastModified":"1300090555000","name":"Jason Barry","type":"Person","_key":"6008"} +{"label":"Michael Ensign","version":29,"id":"8542","lastModified":"1300091098000","name":"Michael Ensign","type":"Person","_key":"6009"} +{"label":"Lew Palter","version":21,"id":"8543","lastModified":"1300091184000","name":"Lew Palter","type":"Person","_key":"6010"} +{"label":"Eric Braeden","version":35,"id":"8544","lastModified":"1300090698000","name":"Eric Braeden","type":"Person","_key":"6011"} +{"label":"Ioan Gruffudd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41d\/4c439c9c5e73d60f3800041d\/ioan-gruffudd-profile.jpg","version":77,"id":"65524","lastModified":"1300131335000","name":"Ioan Gruffudd","type":"Person","_key":"6012"} +{"label":"Jonathan Phillips","version":21,"id":"8547","lastModified":"1300091177000","name":"Jonathan Phillips","type":"Person","_key":"6013"} +{"label":"Edward Fletcher","version":21,"id":"8548","lastModified":"1300091294000","name":"Edward Fletcher","type":"Person","_key":"6014"} +{"label":"Scott G. Anderson","version":26,"id":"8549","lastModified":"1300090852000","name":"Scott G. Anderson","type":"Person","_key":"6015"} +{"label":"Martin East","version":21,"id":"8550","lastModified":"1300091095000","name":"Martin East","type":"Person","_key":"6016"} +{"label":"Gregory Cooke","version":21,"id":"8551","lastModified":"1300091089000","name":"Gregory Cooke","type":"Person","_key":"6017"} +{"label":"Alexandrea Owens","version":21,"id":"8552","lastModified":"1300091177000","name":"Alexandrea Owens","type":"Person","_key":"6018"} +{"label":"Seth Adkins","version":22,"id":"8553","lastModified":"1300091085000","name":"Seth Adkins","type":"Person","_key":"6019"} +{"label":"City of God","description":"City of God is one of the most successful Brazilian films of all times. It depicts the raw violence in the ghettos of Rio de Janeiro in the 1970\u2019s that even had young kids carrying guns and joining gangs when they should be playing hide-and-seek. ","id":"598","runtime":130,"imdbId":"tt0317248","trailer":"http:\/\/www.youtube.com\/watch?v=ioUE_5wpg_E","homepage":"http:\/\/cidadededeus.globo.com\/","version":211,"lastModified":"1300095574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/537\/4bc909ac017a3c57fe003537\/cidade-de-deus-mid.jpg","studio":"O2 Filmes","genre":"Crime","title":"City of God","releaseDate":1030665600000,"language":"en","tagline":"If you run it will get you. If you stay it will eat you","type":"Movie","_key":"6020"} +{"label":"Fernando Meirelles","version":35,"id":"8557","lastModified":"1300090665000","name":"Fernando Meirelles","type":"Person","_key":"6021"} +{"label":"K\u00e1tia Lund","version":32,"id":"8559","lastModified":"1300090771000","name":"K\u00e1tia Lund","type":"Person","_key":"6022"} +{"label":"Lamartine Ferreira","version":25,"id":"8589","lastModified":"1300091035000","name":"Lamartine Ferreira","type":"Person","_key":"6023"} +{"label":"Isabella Teixeira","version":25,"id":"8590","lastModified":"1300091127000","name":"Isabella Teixeira","type":"Person","_key":"6024"} +{"label":"Malu Miranda","version":25,"id":"8592","lastModified":"1300091035000","name":"Malu Miranda","type":"Person","_key":"6025"} +{"label":"Alexandre Rodrigues","version":25,"id":"8595","lastModified":"1300090914000","name":"Alexandre Rodrigues","type":"Person","_key":"6026"} +{"label":"Leandro Firmino","version":25,"id":"8596","lastModified":"1300090624000","name":"Leandro Firmino","type":"Person","_key":"6027"} +{"label":"Phellipe Haagensen","version":26,"id":"8597","lastModified":"1300090865000","name":"Phellipe Haagensen","type":"Person","_key":"6028"} +{"label":"Douglas Silva","version":26,"id":"8598","lastModified":"1300091035000","name":"Douglas Silva","type":"Person","_key":"6029"} +{"label":"Jonathan Haagensen","version":26,"id":"8599","lastModified":"1300091427000","name":"Jonathan Haagensen","type":"Person","_key":"6030"} +{"label":"Matheus Nachtergaele","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29f\/4d4877837b9aa13da700029f\/matheus-nachtergaele-profile.jpg","version":36,"id":"8600","lastModified":"1300091490000","name":"Matheus Nachtergaele","type":"Person","_key":"6031"} +{"label":"Jefechander Suplino","version":26,"id":"8601","lastModified":"1300091299000","name":"Jefechander Suplino","type":"Person","_key":"6032"} +{"label":"Alice Braga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4c3f2da37b9aa140a3000008\/alice-braga-profile.jpg","version":76,"id":"8602","lastModified":"1300090236000","name":"Alice Braga","type":"Person","_key":"6033"} +{"label":"Roberta Rodrigues","version":25,"id":"8603","lastModified":"1300091215000","name":"Roberta Rodrigues","type":"Person","_key":"6034"} +{"label":"Luis Ot\u00e1vio","version":25,"id":"8604","lastModified":"1300091127000","name":"Luis Ot\u00e1vio","type":"Person","_key":"6035"} +{"label":"Darlan Cunha","version":26,"id":"8605","lastModified":"1300091127000","name":"Darlan Cunha","type":"Person","_key":"6036"} +{"label":"Sunset Boulevard","description":"Director Billy Wilder is ice cold in his captivating Hollywood drama Sunset Blvd. A screenwriter begins an affair with a silent film actress who thinks she\u2019s at the top of her field...","id":"599","runtime":110,"imdbId":"tt0043014","trailer":"http:\/\/www.youtube.com\/watch?v=ZUoopROjaE8","version":129,"lastModified":"1299911906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54a\/4bc909b1017a3c57fe00354a\/sunset-blvd-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Sunset Boulevard","releaseDate":-612576000000,"language":"en","tagline":"A Hollywood Story","type":"Movie","_key":"6037"} +{"label":"Charles C. Coleman","version":18,"id":"8625","lastModified":"1300090570000","name":"Charles C. Coleman","type":"Person","_key":"6038"} +{"label":"Gerd Oswald","version":24,"id":"8626","lastModified":"1300090704000","name":"Gerd Oswald","type":"Person","_key":"6039"} +{"label":"Gloria Swanson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/418\/4bf7aadd017a3c772a000418\/gloria-swanson-profile.jpg","version":28,"birthday":"-2233184400000","id":"8629","birthplace":"Chicago, Illinois, USA","lastModified":"1300090417000","name":"Gloria Swanson","type":"Person","_key":"6040"} +{"label":"Erich von Stroheim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48c\/4bfab1f7017a3c702a00048c\/erich-von-stroheim-profile.jpg","version":37,"id":"8630","lastModified":"1299933535000","name":"Erich von Stroheim","type":"Person","_key":"6041"} +{"label":"Nancy Olson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53f\/4bfab256017a3c703300053f\/nancy-olson-profile.jpg","version":28,"id":"8631","lastModified":"1300090585000","name":"Nancy Olson","type":"Person","_key":"6042"} +{"label":"Fred Clark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c7\/4ca5fcd97b9aa16ed70004c7\/fred-clark-profile.jpg","version":50,"id":"8632","lastModified":"1300090537000","name":"Fred Clark","type":"Person","_key":"6043"} +{"label":"Lloyd Gough","version":28,"id":"8633","lastModified":"1300091221000","name":"Lloyd Gough","type":"Person","_key":"6044"} +{"label":"Jack Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f8\/4c5038a07b9aa136d20001f8\/jack-webb-profile.jpg","biography":"Jack Webb (April 2, 1920 \u2013 December 23, 1982), also known by the pseudonym John Randolph, was an American actor, television producer, director and screenwriter, who is most famous for his role as Sergeant Joe Friday in the radio and television series Dragnet. He was also the founder of his own production company, Mark VII Limited.\n\nEarly life\n\nBorn in Santa Monica, California, Webb grew up in the Bunker Hill section of Los Angeles. His Jewish father[citation needed] left home before Webb was ","version":29,"birthday":"-1569978000000","id":"8634","birthplace":"Santa Monica, California, U.S.","lastModified":"1300090352000","name":"Jack Webb","type":"Person","_key":"6045"} +{"label":"Buster Keaton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e2\/4c9dba565e73d6704a0000e2\/buster-keaton-profile.jpg","biography":"Buster Keaton (October 4, 1895 \u2013 February 1, 1966) was an American comic actor and filmmaker. He was best known for his silent films, in which his trademark was physical comedy with a consistently stoic, deadpan expression, earning him the nickname \"The Great Stone Face\". Keaton was recognized as the seventh-greatest director of all time by Entertainment Weekly. In 1999, the American Film Institute ranked Keaton the 21st-greatest male actor of all time. Critic Roger Ebert wrote of Keaton's \"extr","version":279,"birthday":"-2342912400000","id":"8635","birthplace":"Piqua, Kansas, U.S.","lastModified":"1300090259000","name":"Buster Keaton","type":"Person","_key":"6046"} +{"label":"Cecil B. DeMille","version":48,"id":"8636","lastModified":"1300090655000","name":"Cecil B. DeMille","type":"Person","_key":"6047"} +{"label":"Hedda Hopper","version":28,"id":"8637","lastModified":"1300091508000","name":"Hedda Hopper","type":"Person","_key":"6048"} +{"label":"Anna Q. Nilsson","version":19,"id":"8638","lastModified":"1300091697000","name":"Anna Q. Nilsson","type":"Person","_key":"6049"} +{"label":"Ray Evans","version":19,"id":"8640","lastModified":"1300091697000","name":"Ray Evans","type":"Person","_key":"6050"} +{"label":"Jay Livingston","version":18,"id":"8641","lastModified":"1300091589000","name":"Jay Livingston","type":"Person","_key":"6051"} +{"label":"H.B. Warner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/934\/4be45a5a017a3c35c1000934\/h-b-warner-profile.jpg","version":42,"id":"33278","lastModified":"1300091660000","name":"H.B. Warner","type":"Person","_key":"6052"} +{"label":"Munich","description":"The political thriller based on the historical events and tragedies of the 1972 summer Olympics in Munich where 11 members of the Israeli Olympic team where kidnapped and killed. The film shows the Israeli secret service and how they acted. A Steven Spielberg film.","id":"612","runtime":164,"imdbId":"tt0408306","trailer":"http:\/\/www.youtube.com\/watch?v=2788","version":153,"lastModified":"1299967169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4c55a5285e73d63a55000004\/munich-mid.jpg","studio":"DreamWorks","genre":"Drama","title":"Munich","releaseDate":1135296000000,"language":"en","type":"Movie","_key":"6053"} +{"label":"Eric Bana","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4bd74bc0017a3c21ee00010a\/eric-bana-profile.jpg","version":81,"id":"8783","lastModified":"1300132962000","name":"Eric Bana","type":"Person","_key":"6054"} +{"label":"Daniel Craig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4bcf2698017a3c63f300000d\/daniel-craig-profile.jpg","version":121,"id":"8784","lastModified":"1300090235000","name":"Daniel Craig","type":"Person","_key":"6055"} +{"label":"Ayelet Zurer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20e\/4c3b171d5e73d671d200020e\/ayelet-zurer-profile.jpg","version":37,"id":"8786","lastModified":"1300090287000","name":"Ayelet Zurer","type":"Person","_key":"6056"} +{"label":"Gila Almagor","version":20,"id":"8787","lastModified":"1300091015000","name":"Gila Almagor","type":"Person","_key":"6057"} +{"label":"Mathieu Amalric","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4cef0feb5e73d662550001c2\/mathieu-amalric-profile.jpg","version":69,"id":"8789","lastModified":"1300099075000","name":"Mathieu Amalric","type":"Person","_key":"6058"} +{"label":"Meret Becker","version":36,"id":"8790","lastModified":"1300090654000","name":"Meret Becker","type":"Person","_key":"6059"} +{"label":"Marie-Jos\u00e9e Croze","version":36,"id":"8791","lastModified":"1300090453000","name":"Marie-Jos\u00e9e Croze","type":"Person","_key":"6060"} +{"label":"Lynn Cohen","version":35,"id":"8792","lastModified":"1300090328000","name":"Lynn Cohen","type":"Person","_key":"6061"} +{"label":"Ami Weinberg","version":15,"id":"8793","lastModified":"1300091475000","name":"Ami Weinberg","type":"Person","_key":"6062"} +{"label":"Yigal Naor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/087\/4c16824d7b9aa108d7000087\/yigal-naor-profile.jpg","version":35,"id":"41316","birthplace":"Giv'atayim, Israel","lastModified":"1300090838000","name":"Yigal Naor","type":"Person","_key":"6063"} +{"label":"Downfall","description":"In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his Generals and advisers to fight to the last man. \"Downfall\" explores these final days of the Reich, where senior German leaders (such as Himmler and Goring) began defecting from their beloved Fuhrer, in an effort to save ","id":"613","runtime":156,"imdbId":"tt0363163","trailer":"http:\/\/www.youtube.com\/watch?v=uFG9a1NgfZA","homepage":"http:\/\/www.downfallthefilm.com\/","version":260,"lastModified":"1300035682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a7\/4c9cf5547b9aa1430b0001a7\/der-untergang-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"History","title":"Downfall","releaseDate":1095120000000,"language":"en","tagline":"April 1945, a nation awaits its...Downfall","type":"Movie","_key":"6064"} +{"label":"Ulrich Matthes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61f\/4ca9d90c5e73d643eb00061f\/ulrich-matthes-profile.jpg","version":34,"id":"8796","lastModified":"1300090436000","name":"Ulrich Matthes","type":"Person","_key":"6065"} +{"label":"Juliane K\u00f6hler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ce\/4ca9d9fc5e73d643ec0005ce\/juliane-kohler-profile.jpg","version":40,"id":"8797","lastModified":"1300090662000","name":"Juliane K\u00f6hler","type":"Person","_key":"6066"} +{"label":"Ulrich Noethen","version":50,"id":"8799","lastModified":"1300130999000","name":"Ulrich Noethen","type":"Person","_key":"6067"} +{"label":"Birgit Minichmayr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d2\/4ca9dc355e73d643ec0005d2\/birgit-minichmayr-profile.jpg","version":54,"id":"8800","lastModified":"1299951044000","name":"Birgit Minichmayr","type":"Person","_key":"6068"} +{"label":"Rolf Kanies","version":29,"id":"8801","lastModified":"1300091145000","name":"Rolf Kanies","type":"Person","_key":"6069"} +{"label":"Michael Mendl","version":40,"id":"8802","lastModified":"1300090448000","name":"Michael Mendl","type":"Person","_key":"6070"} +{"label":"Andr\u00e9 Hennicke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ab\/4c8cedec5e73d6068e0004ab\/andre-hennicke-profile.jpg","version":51,"id":"1846","lastModified":"1299951045000","name":"Andr\u00e9 Hennicke","type":"Person","_key":"6071"} +{"label":"Christian Redl","version":43,"id":"37102","lastModified":"1300091051000","name":"Christian Redl","type":"Person","_key":"6072"} +{"label":"G\u00f6tz Otto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/69d\/4ca9dcc95e73d643f000069d\/gotz-otto-profile.jpg","version":47,"id":"10744","lastModified":"1300090616000","name":"G\u00f6tz Otto","type":"Person","_key":"6073"} +{"label":"Thomas Limpinsel","version":29,"id":"18944","lastModified":"1300091601000","name":"Thomas Limpinsel","type":"Person","_key":"6074"} +{"label":"Donevan Gunia","version":30,"id":"50143","lastModified":"1300091927000","name":"Donevan Gunia","type":"Person","_key":"6075"} +{"label":"Gerald Alexander Held","version":34,"id":"21743","lastModified":"1300091195000","name":"Gerald Alexander Held","type":"Person","_key":"6076"} +{"label":"Wild Strawberries","description":"Professor of medicine Isak Borg travels to Lund University in order to receive his anniversary title. Along the road he meets strangers and relatives, and in his dreams he is confronted with his own past as well as fear of insufficiency.","id":"614","runtime":91,"imdbId":"tt0050986","version":111,"lastModified":"1299531855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a6\/4bc90a18017a3c57fe0037a6\/smultronstallet-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Drama","title":"Wild Strawberries","releaseDate":-379209600000,"language":"en","type":"Movie","_key":"6077"} +{"label":"G\u00f6sta Ekman","version":38,"id":"66790","lastModified":"1300091146000","name":"G\u00f6sta Ekman","type":"Person","_key":"6078"} +{"label":"Victor Sj\u00f6str\u00f6m","version":25,"id":"8741","lastModified":"1300101285000","name":"Victor Sj\u00f6str\u00f6m","type":"Person","_key":"6079"} +{"label":"Ingrid Thulin","version":31,"id":"8742","lastModified":"1300090481000","name":"Ingrid Thulin","type":"Person","_key":"6080"} +{"label":"Jullan Kindahl","version":17,"id":"8743","lastModified":"1300091927000","name":"Jullan Kindahl","type":"Person","_key":"6081"} +{"label":"Gunnar Sj\u00f6berg","version":17,"id":"8744","lastModified":"1300091871000","name":"Gunnar Sj\u00f6berg","type":"Person","_key":"6082"} +{"label":"Ann-Marie Wiman","version":17,"id":"8745","lastModified":"1300091678000","name":"Ann-Marie Wiman","type":"Person","_key":"6083"} +{"label":"The Passion of the Christ","description":"\"The Passion of the Christ\" is a film about the last 12 hours in the life of Jesus. Director Mel Gibson received much criticism from critics and audiences for his explicit depiction of and focus on violence and on christs suffering, especially on the part of the jewish community. The films languages are Arabic, Latin and Hebrew and its actors are laymen which was controversially received as well.","id":"615","runtime":127,"imdbId":"tt0335345","homepage":"http:\/\/www.thepassionofthechrist.com\/splash.htm","version":148,"lastModified":"1299966608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b3\/4bc90a19017a3c57fe0037b3\/the-passion-of-the-christ-mid.jpg","studio":"Icon Productions","genre":"Drama","title":"The Passion of the Christ","releaseDate":1077667200000,"language":"en","type":"Movie","_key":"6084"} +{"label":"James Caviezel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4cc834c07b9aa16b9c00009f\/james-caviezel-profile.jpg","version":86,"id":"8767","lastModified":"1300090285000","name":"James Caviezel","type":"Person","_key":"6085"} +{"label":"Maia Morgenstern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/409\/4d50232c7b9aa1193e000409\/maia-morgenstern-profile.jpg","version":23,"id":"8768","lastModified":"1300090544000","name":"Maia Morgenstern","type":"Person","_key":"6086"} +{"label":"Christo Jivkov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d2e\/4d50240f7b9aa13ab800bd2e\/christo-jivkov-profile.jpg","version":23,"id":"8769","lastModified":"1300090539000","name":"Christo Jivkov","type":"Person","_key":"6087"} +{"label":"Francesco De Vito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d92\/4d5023707b9aa13aab00bd92\/francesco-de-vito-profile.jpg","version":19,"id":"8770","lastModified":"1300090514000","name":"Francesco De Vito","type":"Person","_key":"6088"} +{"label":"Mattia Sbragia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d60\/4d5024937b9aa13ab800bd60\/mattia-sbragia-profile.jpg","version":23,"id":"8772","lastModified":"1300101720000","name":"Mattia Sbragia","type":"Person","_key":"6089"} +{"label":"Luca Lionello","version":22,"id":"8774","lastModified":"1300091017000","name":"Luca Lionello","type":"Person","_key":"6090"} +{"label":"Hristo Shopov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2be\/4d2088725e73d66b2d0022be\/hristo-shopov-profile.jpg","version":30,"id":"8775","lastModified":"1300090535000","name":"Hristo Shopov","type":"Person","_key":"6091"} +{"label":"Claudia Gerini","version":35,"id":"8776","lastModified":"1300090793000","name":"Claudia Gerini","type":"Person","_key":"6092"} +{"label":"Fabio Sartor","version":17,"id":"8777","lastModified":"1300090570000","name":"Fabio Sartor","type":"Person","_key":"6093"} +{"label":"Rosalinda Celentano","version":25,"id":"8778","lastModified":"1300090953000","name":"Rosalinda Celentano","type":"Person","_key":"6094"} +{"label":"Toni Bertorelli","version":21,"id":"44650","lastModified":"1300091520000","name":"Toni Bertorelli","type":"Person","_key":"6095"} +{"label":"The Last Samurai","description":"Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare -- in this lush epic set in the 1870s, which finds Algren learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.","id":"616","runtime":154,"imdbId":"tt0325710","version":177,"lastModified":"1299966389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4d4a62037b9aa13aba000ae5\/the-last-samurai-mid.jpg","studio":"Bedford Falls Productions","genre":"Action","title":"The Last Samurai","releaseDate":1070582400000,"language":"en","tagline":"In the face of an enemy, in the Heart of One Man, Lies the Soul of a Warrior.","type":"Movie","_key":"6096"} +{"label":"Edward Zwick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/83d\/4cfa82c75e73d6299a00283d\/edward-zwick-profile.jpg","version":107,"id":"9181","lastModified":"1300031819000","name":"Edward Zwick","type":"Person","_key":"6097"} +{"label":"Chad Lindberg","version":37,"birthday":"215650800000","id":"9186","birthplace":"Mount Vernon, Washington, U.S.","lastModified":"1300090486000","name":"Chad Lindberg","type":"Person","_key":"6098"} +{"label":"Billy Connolly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4cd47e335e73d676cf000066\/billy-connolly-profile.jpg","version":115,"id":"9188","lastModified":"1300090300000","name":"Billy Connolly","type":"Person","_key":"6099"} +{"label":"Shichinosuke Nakamura","version":19,"id":"9189","lastModified":"1300091293000","name":"Shichinosuke Nakamura","type":"Person","_key":"6100"} +{"label":"Koyuki","version":25,"id":"9190","lastModified":"1300090846000","name":"Koyuki","type":"Person","_key":"6101"} +{"label":"Togo Igawa","version":33,"id":"9192","lastModified":"1300090472000","name":"Togo Igawa","type":"Person","_key":"6102"} +{"label":"Shun Sugata","version":28,"id":"9193","lastModified":"1300090624000","name":"Shun Sugata","type":"Person","_key":"6103"} +{"label":"Shin Koyamada","version":19,"id":"9194","lastModified":"1300091089000","name":"Shin Koyamada","type":"Person","_key":"6104"} +{"label":"Hiroyuki Sanada","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf4\/4cba50fa7b9aa138da000bf4\/hiroyuki-sanada-profile.jpg","version":52,"id":"9195","lastModified":"1299492976000","name":"Hiroyuki Sanada","type":"Person","_key":"6105"} +{"label":"Wild Things","description":"When teen-socialite Kelly Van Ryan (Richards) and troubled bad girl Suzie Toller (Campbell) accuse guidance counselor Sam Lombardo (Dillon) of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop (Bacon) suspects conspiracy, but nothing is what it seems...","id":"617","runtime":103,"imdbId":"tt0120890","trailer":"http:\/\/www.youtube.com\/watch?v=1557","version":178,"lastModified":"1299966171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ae\/4cb696925e73d677860002ae\/wild-things-mid.jpg","studio":"Mandalay Entertainment","genre":"Crime","title":"Wild Things","releaseDate":890352000000,"language":"en","type":"Movie","_key":"6106"} +{"label":"John McNaughton","version":27,"id":"9200","lastModified":"1300091144000","name":"John McNaughton","type":"Person","_key":"6107"} +{"label":"Neve Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/819\/4c5c3f8a7b9aa151f4000819\/neve-campbell-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\"><span style=\"font-size: 12px;\">\u200bNeve Adrianne Campbell (pronounced \/'n?v 'k\u00e6mb?l\/, born October 3, 1973) is a Canadian actress. After beginning her career on stage, she achieved fame on the 1990s television series Party of Five, playing the role of teenager Julia Salinger. She subsequently appeared in leading roles in several Hollywood films, including Scream, The Craft, and Wild Things, and has since appeared in smaller parts and return","version":70,"birthday":"118450800000","id":"9206","birthplace":"Guelph, Ontario, Canada","lastModified":"1300090371000","name":"Neve Campbell","type":"Person","_key":"6108"} +{"label":"Robert Wagner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/859\/4c64093e7b9aa172dd000859\/robert-wagner-profile.jpg","version":66,"id":"9208","lastModified":"1300090410000","name":"Robert Wagner","type":"Person","_key":"6109"} +{"label":"Daphne Rubin-Vega","version":15,"id":"9209","lastModified":"1300091589000","name":"Daphne Rubin-Vega","type":"Person","_key":"6110"} +{"label":"Jeff Perry","version":17,"id":"9210","lastModified":"1300091798000","name":"Jeff Perry","type":"Person","_key":"6111"} +{"label":"Eduardo Y\u00e1\u00f1ez","version":16,"id":"9211","lastModified":"1300091825000","name":"Eduardo Y\u00e1\u00f1ez","type":"Person","_key":"6112"} +{"label":"Jennifer Taylor","version":16,"id":"9212","lastModified":"1300091879000","name":"Jennifer Taylor","type":"Person","_key":"6113"} +{"label":"The Birth of a Nation","description":"The Birth of A Nation is a silent film from 1915 and the highest grossing silent film in film history. The film tells a romance story during the American civil war.","id":"618","runtime":190,"imdbId":"tt0004972","version":151,"lastModified":"1299965887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/805\/4bc90a28017a3c57fe003805\/the-birth-of-a-nation-mid.jpg","studio":"Epoch Film Co.","genre":"Drama","title":"The Birth of a Nation","releaseDate":-1732406400000,"language":"en","type":"Movie","_key":"6114"} +{"label":"D.W. Griffith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ae\/4bf18190017a3c320b0002ae\/d-w-griffith-profile.jpg","version":55,"id":"100036","lastModified":"1300090686000","name":"D.W. Griffith","type":"Person","_key":"6115"} +{"label":"Lillian Gish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d0\/4bf17e5f017a3c320d0001d0\/lillian-gish-profile.jpg","version":36,"id":"8828","lastModified":"1300090286000","name":"Lillian Gish","type":"Person","_key":"6116"} +{"label":"Mae Marsh","version":32,"id":"8829","lastModified":"1300091269000","name":"Mae Marsh","type":"Person","_key":"6117"} +{"label":"Henry B. Walthall","version":22,"id":"8830","lastModified":"1300091293000","name":"Henry B. Walthall","type":"Person","_key":"6118"} +{"label":"Miriam Cooper","version":15,"id":"8831","lastModified":"1300091491000","name":"Miriam Cooper","type":"Person","_key":"6119"} +{"label":"Mary Alden","version":15,"id":"8832","lastModified":"1300091293000","name":"Mary Alden","type":"Person","_key":"6120"} +{"label":"Ralph Lewis","version":22,"id":"8833","lastModified":"1300091935000","name":"Ralph Lewis","type":"Person","_key":"6121"} +{"label":"Joseph Henabery","version":18,"id":"8820","lastModified":"1300091272000","name":"Joseph Henabery","type":"Person","_key":"6122"} +{"label":"Josephine Crowell","version":17,"id":"8834","lastModified":"1300091709000","name":"Josephine Crowell","type":"Person","_key":"6123"} +{"label":"Spottiswoode Aitken","version":19,"id":"8835","lastModified":"1300091927000","name":"Spottiswoode Aitken","type":"Person","_key":"6124"} +{"label":"Jennie Lee","version":15,"id":"8836","lastModified":"1300091697000","name":"Jennie Lee","type":"Person","_key":"6125"} +{"label":"George Siegmann","version":17,"id":"8837","lastModified":"1300091881000","name":"George Siegmann","type":"Person","_key":"6126"} +{"label":"Elmer Clifton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a0\/4cc6d5f57b9aa15b250000a0\/elmer-clifton-profile.jpg","biography":"Born in Chicago, he was an actor in touring stock companies before \nmaking his screen debut in 1912. Joining D.W. Griffith's Fine Arts \nStudio in 1914, he was cast as Union officer Phil Stoneman in \"The \nBirth of a Nation\" (1915) and as The Rhapsodie in the Babylonian story \nof \"Intolerance\" (1916). He was also a second-unit director for those \nfilms. Promoted to director in 1917, Clifton supervised several \nsuccessful Fine Arts comedies starring Dorothy Gish while continuing to \nserve as ","version":22,"id":"8838","lastModified":"1300091730000","name":"Elmer Clifton","type":"Person","_key":"6127"} +{"label":"George Beranger","version":22,"id":"8839","lastModified":"1300091881000","name":"George Beranger","type":"Person","_key":"6128"} +{"label":"Maxfield Stanley","version":15,"id":"8840","lastModified":"1300091696000","name":"Maxfield Stanley","type":"Person","_key":"6129"} +{"label":"Donald Crisp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/915\/4be447d3017a3c35c1000915\/donald-crisp-profile.jpg","version":61,"id":"8841","lastModified":"1300101377000","name":"Donald Crisp","type":"Person","_key":"6130"} +{"label":"Howard Gaye","version":15,"id":"8842","lastModified":"1300091671000","name":"Howard Gaye","type":"Person","_key":"6131"} +{"label":"The Bodyguard","description":"The Bodyguard is thriller about a bodyguard secret service agent who trying to protect a Pop music Diva from a deadly stalker. The soundtrack to the film was extremely popular and greatly added to the films success.","id":"619","runtime":130,"imdbId":"tt0103855","trailer":"http:\/\/www.youtube.com\/watch?v=1650","version":126,"lastModified":"1300089929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dc\/4bccec0f017a3c0f2f0001dc\/the-bodyguard-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Bodyguard","releaseDate":722649600000,"language":"en","type":"Movie","_key":"6132"} +{"label":"Mick Jackson","version":37,"id":"8843","lastModified":"1300090941000","name":"Mick Jackson","type":"Person","_key":"6133"} +{"label":"Whitney Houston","version":34,"id":"8851","lastModified":"1300090722000","name":"Whitney Houston","type":"Person","_key":"6134"} +{"label":"Michele Lamar Richards","version":17,"id":"8852","lastModified":"1300091033000","name":"Michele Lamar Richards","type":"Person","_key":"6135"} +{"label":"Ralph Waite","version":39,"id":"8853","lastModified":"1300091122000","name":"Ralph Waite","type":"Person","_key":"6136"} +{"label":"Bill Cobbs","version":44,"id":"8854","lastModified":"1300090553000","name":"Bill Cobbs","type":"Person","_key":"6137"} +{"label":"Christopher Birt","version":16,"id":"8855","lastModified":"1300091491000","name":"Christopher Birt","type":"Person","_key":"6138"} +{"label":"DeVaughn Nixon","version":19,"id":"8856","lastModified":"1300091522000","name":"DeVaughn Nixon","type":"Person","_key":"6139"} +{"label":"Debbie Reynolds","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/319\/4cc0ae595e73d67786001319\/debbie-reynolds-profile.jpg","version":58,"id":"8857","lastModified":"1300090486000","name":"Debbie Reynolds","type":"Person","_key":"6140"} +{"label":"Ghostbusters","description":"After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting \"ghostbusters\" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.","id":"620","runtime":107,"imdbId":"tt0087332","trailer":"http:\/\/www.youtube.com\/watch?v=9u4FHmId-Y0","homepage":"http:\/\/www.ghostbusters.com\/","version":289,"lastModified":"1300127928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81f\/4bc90a2a017a3c57fe00381f\/ghostbusters-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Ghostbusters","releaseDate":455500800000,"language":"en","tagline":"We're Ready To Believe You.","type":"Movie","_key":"6141"} +{"label":"Ivan Reitman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/446\/4d03e10f7b9aa11bbf001446\/ivan-reitman-profile.jpg","version":192,"id":"8858","lastModified":"1300090405000","name":"Ivan Reitman","type":"Person","_key":"6142"} +{"label":"Rick Moranis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4bf85d0d017a3c490c000096\/rick-moranis-profile.jpg","version":90,"id":"8872","lastModified":"1300090376000","name":"Rick Moranis","type":"Person","_key":"6143"} +{"label":"Annie Potts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ad\/4d10f8775e73d6083e0005ad\/annie-potts-profile.jpg","version":63,"id":"8873","lastModified":"1300090361000","name":"Annie Potts","type":"Person","_key":"6144"} +{"label":"Ernie Hudson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07b\/4bf85e39017a3c490e00007b\/ernie-hudson-profile.jpg","version":83,"id":"8874","lastModified":"1299618767000","name":"Ernie Hudson","type":"Person","_key":"6145"} +{"label":"David Margulies","version":44,"id":"8875","lastModified":"1300090452000","name":"David Margulies","type":"Person","_key":"6146"} +{"label":"Grease","description":"Grease is the successful cult film based on a Musical of the same name starring Olivia Newton and John Travolta as high school sweethearts in this 60\u2019s musical fairytale. Newton and Travolta actually sung the songs that became a part of America\u2019s pop culture.","id":"621","runtime":110,"imdbId":"tt0077631","trailer":"http:\/\/www.youtube.com\/watch?v=VTX5eEcNOX0","version":171,"lastModified":"1299965373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4c9651567b9aa10d5c0003b7\/grease-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Grease","releaseDate":266803200000,"language":"en","tagline":"Grease is the word","type":"Movie","_key":"6147"} +{"label":"Jerry Grandey","version":18,"id":"8887","lastModified":"1300090915000","name":"Jerry Grandey","type":"Person","_key":"6148"} +{"label":"Randal Kleiser","version":45,"id":"8876","lastModified":"1300090521000","name":"Randal Kleiser","type":"Person","_key":"6149"} +{"label":"John Travolta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4c235e2c7b9aa13f64000049\/john-travolta-profile.jpg","biography":"John Joseph Travolta is an American actor, dancer and singer. He first became known in the 1970s, after appearing on the television series Welcome Back, Kotter and starring in the box office successes Saturday Night Fever and Grease. Travolta's career re-surged in the 1990s, with his role in Pulp Fiction, and he has since continued starring in Hollywood films, including Face\/Off, Ladder 49 and Wild Hogs.\nTravolta has twice been nominated for the Academy Award for Best Actor. The first, for his r","version":183,"birthday":"-500778000000","id":"8891","birthplace":"Englewood, New Jersey, USA","lastModified":"1300053943000","name":"John Travolta","type":"Person","_key":"6150"} +{"label":"Olivia Newton-John","version":32,"id":"8892","lastModified":"1300090404000","name":"Olivia Newton-John","type":"Person","_key":"6151"} +{"label":"Stockard Channing","version":62,"id":"8893","lastModified":"1300090435000","name":"Stockard Channing","type":"Person","_key":"6152"} +{"label":"Jeff Conaway","version":29,"id":"8894","lastModified":"1300090865000","name":"Jeff Conaway","type":"Person","_key":"6153"} +{"label":"Didi Conn","version":17,"id":"8895","lastModified":"1300091810000","name":"Didi Conn","type":"Person","_key":"6154"} +{"label":"Barry Pearl","version":16,"id":"8896","lastModified":"1300091810000","name":"Barry Pearl","type":"Person","_key":"6155"} +{"label":"Michael Tucci","version":20,"id":"8897","lastModified":"1300091215000","name":"Michael Tucci","type":"Person","_key":"6156"} +{"label":"Kelly Ward","version":18,"id":"8898","lastModified":"1300091810000","name":"Kelly Ward","type":"Person","_key":"6157"} +{"label":"Jamie Donnelly","version":16,"id":"8899","lastModified":"1300092072000","name":"Jamie Donnelly","type":"Person","_key":"6158"} +{"label":"Dinah Manoff","version":20,"id":"8900","lastModified":"1300091810000","name":"Dinah Manoff","type":"Person","_key":"6159"} +{"label":"Edd Byrnes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/586\/4cbddd507b9aa138d9001586\/edd-byrnes-profile.jpg","version":23,"id":"8901","lastModified":"1300091101000","name":"Edd Byrnes","type":"Person","_key":"6160"} +{"label":"Sid Caesar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e8\/4c87c8737b9aa1545d0002e8\/sid-caesar-profile.jpg","version":35,"id":"8902","lastModified":"1300090971000","name":"Sid Caesar","type":"Person","_key":"6161"} +{"label":"Dody Goodman","version":24,"id":"8903","lastModified":"1300091480000","name":"Dody Goodman","type":"Person","_key":"6162"} +{"label":"Susan Buckner","version":16,"id":"8904","lastModified":"1300091810000","name":"Susan Buckner","type":"Person","_key":"6163"} +{"label":"Ellen Travolta","version":16,"id":"8905","lastModified":"1300091605000","name":"Ellen Travolta","type":"Person","_key":"6164"} +{"label":"Annette Charles","version":16,"id":"8906","lastModified":"1300091810000","name":"Annette Charles","type":"Person","_key":"6165"} +{"label":"Dennis Stewart","version":16,"id":"8907","lastModified":"1300091810000","name":"Dennis Stewart","type":"Person","_key":"6166"} +{"label":"The Ninth Gate","description":"An all-expenses-paid international search for a rare copy of The Nine Gates of the Shadow Kingdom brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.","id":"622","runtime":133,"imdbId":"tt0142688","trailer":"http:\/\/www.youtube.com\/watch?v=2766","version":159,"lastModified":"1299965161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad5\/4c0b9e65017a3c29a6000ad5\/the-ninth-gate-mid.jpg","studio":"Bac Films","genre":"Horror","title":"The Ninth Gate","releaseDate":944784000000,"language":"en","tagline":"Every book has a life of its own.","type":"Movie","_key":"6167"} +{"label":"Michel Cheyko","version":19,"id":"8913","lastModified":"1300091705000","name":"Michel Cheyko","type":"Person","_key":"6168"} +{"label":"Frank Langella","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/356\/4bed615e017a3c37a0000356\/frank-langella-profile.jpg","version":112,"id":"8924","lastModified":"1300090325000","name":"Frank Langella","type":"Person","_key":"6169"} +{"label":"Emmanuelle Seigner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31d\/4c43622b7b9aa1459400031d\/emmanuelle-seigner-profile.jpg","biography":"Seigner naci\u00f3 en Par\u00eds, Francia; su padre era un fot\u00f3grafo y su madre una periodista.2 Es la nieta del respetado actor de cine Louis Seigner (1903 - 1991) y su hermana es la afamada actriz Mathilde Seigner. Tambi\u00e9n es la sobrina de Fran\u00e7oise Seigner.\nFue educada en un convento cat\u00f3lico, y empez\u00f3 a modelar a los catorce a\u00f1os de edad. Aprovechando su belleza obtuvo fama internacional como modelo profesional. Contrajo matrimonio con el director de cine polaco Roman Polanski en 1989. Tiene dos hijos","version":48,"birthday":"-111373200000","id":"8925","birthplace":"Paris, France","lastModified":"1299491505000","name":"Emmanuelle Seigner","type":"Person","_key":"6170"} +{"label":"Barbara Jefford","version":22,"id":"8926","lastModified":"1300091491000","name":"Barbara Jefford","type":"Person","_key":"6171"} +{"label":"Jack Taylor","version":51,"id":"8927","lastModified":"1300090550000","name":"Jack Taylor","type":"Person","_key":"6172"} +{"label":"Jos\u00e9 L\u00f3pez Rodero","version":18,"id":"8928","lastModified":"1300091500000","name":"Jos\u00e9 L\u00f3pez Rodero","type":"Person","_key":"6173"} +{"label":"A Fish Called Wanda","description":"A Fish Called Wanda is the successful criminal comedy from 1988 about a diamond advocate who is attempting to steal a collection of diamonds yet troubles arise when they realize that they are not the only ones after the diamonds.","id":"623","runtime":108,"imdbId":"tt0095159","trailer":"http:\/\/www.youtube.com\/watch?v=LWfHCO2Gv7Y","version":251,"lastModified":"1300107508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbc\/4d5c0cec7b9aa1122f000fbc\/a-fish-called-wanda-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"A Fish Called Wanda","releaseDate":584236800000,"language":"en","tagline":"A tale of murder, lust, greed, revenge, and seafood.","type":"Movie","_key":"6174"} +{"label":"Charles Crichton","version":35,"id":"8929","lastModified":"1300091059000","name":"Charles Crichton","type":"Person","_key":"6175"} +{"label":"Jonathan Benson","version":18,"id":"8940","lastModified":"1300091176000","name":"Jonathan Benson","type":"Person","_key":"6176"} +{"label":"Jamie Lee Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/161\/4c76d2725e73d60414000161\/jamie-lee-curtis-profile.jpg","version":103,"id":"8944","lastModified":"1300090345000","name":"Jamie Lee Curtis","type":"Person","_key":"6177"} +{"label":"Maria Aitken","version":19,"id":"8946","lastModified":"1300091212000","name":"Maria Aitken","type":"Person","_key":"6178"} +{"label":"Tom Georgeson","version":18,"id":"8947","lastModified":"1300091600000","name":"Tom Georgeson","type":"Person","_key":"6179"} +{"label":"Cynthia Cleese","version":17,"id":"8948","lastModified":"1300091123000","name":"Cynthia Cleese","type":"Person","_key":"6180"} +{"label":"Easy Rider","description":"Easy Rider is the classic cult film from the 1960\u2019s. A road movie that embodies the feeling of being a hippie as two friends head cross-country to Mardi Grass. A controversial period film by Dennis Hopper and Peter Fonda with some classic music from a generation of wanderers. ","id":"624","runtime":94,"imdbId":"tt0064276","trailer":"http:\/\/www.youtube.com\/watch?v=GwST6mpT7Ds","version":156,"lastModified":"1300127868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ba\/4c61deb17b9aa172dd0004ba\/easy-rider-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Easy Rider","releaseDate":-14774400000,"language":"en","tagline":"A man went looking for America and couldn\u2019t find it anywhere...","type":"Movie","_key":"6181"} +{"label":"Peter Fonda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b0f\/4c71480e5e73d65f7c000b0f\/peter-fonda-profile.jpg","version":99,"id":"8949","lastModified":"1299908197000","name":"Peter Fonda","type":"Person","_key":"6182"} +{"label":"Antonio Mendoza","version":16,"id":"8960","lastModified":"1300090619000","name":"Antonio Mendoza","type":"Person","_key":"6183"} +{"label":"Phil Spector","version":17,"id":"8961","lastModified":"1300090568000","name":"Phil Spector","type":"Person","_key":"6184"} +{"label":"Luke Askew","version":37,"id":"8962","lastModified":"1300091107000","name":"Luke Askew","type":"Person","_key":"6185"} +{"label":"Karen Black","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/389\/4c9a36cc7b9aa12758000389\/karen-black-profile.jpg","version":67,"id":"8963","lastModified":"1300090463000","name":"Karen Black","type":"Person","_key":"6186"} +{"label":"Toni Basil","version":21,"id":"8964","lastModified":"1300091030000","name":"Toni Basil","type":"Person","_key":"6187"} +{"label":"The Killing Fields","description":"The Killing Fields tells the story of a friendship between an American and a Cambodian during the bloody revolution in 1975 where a million Cambodian\u2019s were killed.","id":"625","runtime":141,"imdbId":"tt0087553","trailer":"http:\/\/www.youtube.com\/watch?v=2ru0HxV4nWY","version":166,"lastModified":"1299964594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c2\/4bc90a45017a3c57fe0038c2\/the-killing-fields-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Killing Fields","releaseDate":468201600000,"language":"en","type":"Movie","_key":"6188"} +{"label":"Roland Joff\u00e9","version":43,"id":"8965","lastModified":"1300090474000","name":"Roland Joff\u00e9","type":"Person","_key":"6189"} +{"label":"Sam Waterston","version":43,"id":"8975","lastModified":"1300123245000","name":"Sam Waterston","type":"Person","_key":"6190"} +{"label":"Haing S. Ngor","version":15,"id":"8976","lastModified":"1300090839000","name":"Haing S. Ngor","type":"Person","_key":"6191"} +{"label":"Spalding Gray","version":29,"id":"8978","lastModified":"1300091160000","name":"Spalding Gray","type":"Person","_key":"6192"} +{"label":"Patrick Malahide","version":30,"id":"8979","lastModified":"1299494377000","name":"Patrick Malahide","type":"Person","_key":"6193"} +{"label":"Katherine Krapum Chey","version":15,"id":"8980","lastModified":"1300091491000","name":"Katherine Krapum Chey","type":"Person","_key":"6194"} +{"label":"Oliver Pierpaoli","version":15,"id":"8981","lastModified":"1300091933000","name":"Oliver Pierpaoli","type":"Person","_key":"6195"} +{"label":"Edward Entero Chey","version":15,"id":"8982","lastModified":"1300091933000","name":"Edward Entero Chey","type":"Person","_key":"6196"} +{"label":"Monirak Sisowath","version":15,"id":"8983","lastModified":"1300091490000","name":"Monirak Sisowath","type":"Person","_key":"6197"} +{"label":"Un chien andalou","description":"Un Chien Andalou is a classic European avant-garde surrealist film from the cooperation of Director Luis Bu\u00f1uel and Salvador Dali. The film changed the way people made movies. Most famous is the scene of a man\u2019s eye being cut with a knife.","id":"626","runtime":16,"imdbId":"tt0020530","version":144,"lastModified":"1299911397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/189\/4c7ff3717b9aa11345000189\/un-chien-andalou-mid.jpg","genre":"Fantasy","title":"Un chien andalou","releaseDate":-1278633600000,"language":"en","type":"Movie","_key":"6198"} +{"label":"Salvador Dal\u00ed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/978\/4cc16f2f7b9aa138d6001978\/salvador-dali-profile.jpg","version":22,"id":"8988","lastModified":"1300090723000","name":"Salvador Dal\u00ed","type":"Person","_key":"6199"} +{"label":"Pierre Batcheff","version":17,"id":"8992","lastModified":"1300091082000","name":"Pierre Batcheff","type":"Person","_key":"6200"} +{"label":"Simone Mareuil","version":17,"id":"8993","lastModified":"1300090609000","name":"Simone Mareuil","type":"Person","_key":"6201"} +{"label":"Robert Hommet","version":16,"id":"8994","lastModified":"1300091884000","name":"Robert Hommet","type":"Person","_key":"6202"} +{"label":"Marval","version":16,"id":"8995","lastModified":"1300092173000","name":"Marval","type":"Person","_key":"6203"} +{"label":"Fano Messan","version":16,"id":"8996","lastModified":"1300091086000","name":"Fano Messan","type":"Person","_key":"6204"} +{"label":"Jaume Miravitlles","version":17,"id":"8997","lastModified":"1300091933000","name":"Jaume Miravitlles","type":"Person","_key":"6205"} +{"label":"Trainspotting","description":"\"Choose life.\" Trainspotting is a Scottish cult film from the 1990\u2019s about a group of junkies and their perspective on life. The film was the most commercially successful British film of the 20th century.","id":"627","runtime":94,"imdbId":"tt0117951","trailer":"http:\/\/www.youtube.com\/watch?v=PUOTs55KY40","version":156,"lastModified":"1299964142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e7\/4bc90a4a017a3c57fe0038e7\/trainspotting-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"Trainspotting","releaseDate":825033600000,"language":"en","tagline":"Choose life.","type":"Movie","_key":"6206"} +{"label":"Claire Hughes","version":21,"id":"9010","lastModified":"1300091086000","name":"Claire Hughes","type":"Person","_key":"6207"} +{"label":"Ben Johnson","version":21,"id":"9011","lastModified":"1300091086000","name":"Ben Johnson","type":"Person","_key":"6208"} +{"label":"Jonny Lee Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e1\/4bfbd4a9017a3c70330006e1\/jonny-lee-miller-profile.jpg","biography":"Figlio di Anne Lee, produttrice teatrale, e Alan Miller, attore teatrale ed in seguito manager della BBC, il nonno materno \u00e8 stato l'attore Bernard Lee, famoso per aver interpretato il personaggio di M nei primi film su James Bond. Ha studiato alla Tiffin School, ma lascia gli studi all'et\u00e0 di 17 anni, per dedicarsi alla recitazione.\n\nDopo una lunga gavetta televisiva, debutta al cinema nel 1995 nel film Hackers, sul cui set incontra la futura moglie Angelina Jolie. L'anno successivo Trainspotti","version":48,"birthday":"90630000000","id":"9012","birthplace":"Kingston, Surrey, England","lastModified":"1300090366000","name":"Jonny Lee Miller","type":"Person","_key":"6209"} +{"label":"Kevin McKidd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e6\/4ce0c1555e73d60f6f0002e6\/kevin-mckidd-profile.jpg","version":48,"id":"9013","lastModified":"1300090400000","name":"Kevin McKidd","type":"Person","_key":"6210"} +{"label":"Kelly Macdonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f3\/4c7996e05e73d613d30002f3\/kelly-macdonald-profile.jpg","version":69,"id":"9015","lastModified":"1300126335000","name":"Kelly Macdonald","type":"Person","_key":"6211"} +{"label":"Eileen Nicholas","version":22,"id":"9016","lastModified":"1300091602000","name":"Eileen Nicholas","type":"Person","_key":"6212"} +{"label":"Pauline Lynch","version":20,"id":"9017","lastModified":"1300091602000","name":"Pauline Lynch","type":"Person","_key":"6213"} +{"label":"Irvine Welsh","version":31,"id":"8998","lastModified":"1300090942000","name":"Irvine Welsh","type":"Person","_key":"6214"} +{"label":"Robert Carlyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4bd3e3c3017a3c7fa600003c\/robert-carlyle-profile.jpg","version":120,"id":"18023","lastModified":"1300090339000","name":"Robert Carlyle","type":"Person","_key":"6215"} +{"label":"Interview with the Vampire","description":"It hadn't even been a year since a plantation owner named Louis had lost his wife in childbirth. Both his wife and the infant died, and now he has lost his will to live. A vampire named Lestat takes a liking to Louis and offers him the chance to become a creature of the night: a vampire. Louis accepts, and Lestat drains Louis' mortal blood and then replaces it with his own, turning Louis into a vampire. Louis must learn from Lestat the ways of the vampire.","id":"628","runtime":123,"imdbId":"tt0110148","trailer":"http:\/\/www.youtube.com\/watch?v=672","version":178,"lastModified":"1299963949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4d101a517b9aa1147a00005f\/interview-with-the-vampire-the-vampire-chronicles-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Interview with the Vampire","releaseDate":784512000000,"language":"en","tagline":"Drink From Me And Live Forever.","type":"Movie","_key":"6216"} +{"label":"Neil Jordan","version":62,"id":"17016","lastModified":"1299515460000","name":"Neil Jordan","type":"Person","_key":"6217"} +{"label":"Stephen Rea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/056\/4ca63d6c7b9aa17acc000056\/stephen-rea-profile.jpg","version":93,"id":"9029","lastModified":"1300090396000","name":"Stephen Rea","type":"Person","_key":"6218"} +{"label":"Thandie Newton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/050\/4bca1410017a3c0e8f000050\/thandie-newton-profile.jpg","biography":"<B><SPAN style=\"FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-latin\" lang=EN>Thandiwe Nashita \"Thandie\" Newton<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-latin\" lang=EN> (born 6 November 1972) is an English actress. Sh","version":109,"birthday":"89852400000","id":"9030","birthplace":"London, England, UK","lastModified":"1300090233000","name":"Thandie Newton","type":"Person","_key":"6219"} +{"label":"Domiziana Giordano","version":22,"id":"9031","lastModified":"1299498291000","name":"Domiziana Giordano","type":"Person","_key":"6220"} +{"label":"The Usual Suspects","description":"A boat has been destroyed, criminals are dead, and the key to this mystery lies with the only survivor and his twisted, convoluted story beginning with five career crooks in a seemingly random police lineup.","id":"629","runtime":106,"imdbId":"tt0114814","trailer":"http:\/\/www.youtube.com\/watch?v=9MjV4EwR7Mg","version":215,"lastModified":"1299963750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/456\/4d2e953e5e73d63a4e00e456\/the-usual-suspects-mid.jpg","studio":"Blue Parrot Productions","genre":"Crime","title":"The Usual Suspects","releaseDate":808531200000,"language":"en","type":"Movie","_key":"6221"} +{"label":"Bryan Singer","version":113,"id":"9032","lastModified":"1299491690000","name":"Bryan Singer","type":"Person","_key":"6222"} +{"label":"Stephen Baldwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a1\/4c24b8317b9aa1446a0000a1\/stephen-baldwin-profile.jpg","version":77,"id":"9045","lastModified":"1300090348000","name":"Stephen Baldwin","type":"Person","_key":"6223"} +{"label":"Chazz Palminteri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c24b90b7b9aa14470000106\/chazz-palminteri-profile.jpg","version":90,"id":"9046","lastModified":"1300119290000","name":"Chazz Palminteri","type":"Person","_key":"6224"} +{"label":"Christine Estabrook","version":25,"id":"9047","lastModified":"1300090446000","name":"Christine Estabrook","type":"Person","_key":"6225"} +{"label":"Clark Gregg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/434\/4c8cef075e73d6068c000434\/clark-gregg-profile.jpg","version":66,"id":"9048","lastModified":"1300090409000","name":"Clark Gregg","type":"Person","_key":"6226"} +{"label":"Paul Bartel","version":61,"id":"101377","lastModified":"1300090550000","name":"Paul Bartel","type":"Person","_key":"6227"} +{"label":"The Wizard of Oz","description":"One of the most famous musical films and the first film from Hollywood to use color. Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.","id":"630","runtime":101,"imdbId":"tt0032138","trailer":"http:\/\/www.youtube.com\/watch?v=t5ep4RutX80","version":220,"lastModified":"1299963550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/222\/4c04333d017a3c7e92000222\/the-wizard-of-oz-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Adventure","title":"The Wizard of Oz","releaseDate":-957916800000,"language":"en","type":"Movie","_key":"6228"} +{"label":"King Vidor","version":46,"id":"29962","lastModified":"1300090450000","name":"King Vidor","type":"Person","_key":"6229"} +{"label":"Mervyn LeRoy","version":57,"id":"9054","lastModified":"1300090566000","name":"Mervyn LeRoy","type":"Person","_key":"6230"} +{"label":"George Cukor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e1\/4c6ea5617b9aa13ab90007e1\/george-cukor-profile.jpg","version":67,"id":"14674","lastModified":"1300127770000","name":"George Cukor","type":"Person","_key":"6231"} +{"label":"Victor Fleming","version":44,"id":"9049","lastModified":"1300090471000","name":"Victor Fleming","type":"Person","_key":"6232"} +{"label":"Judy Garland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34d\/4bf1b277017a3c320b00034d\/judy-garland-profile.jpg","version":48,"birthday":"-1500944400000","id":"9066","birthplace":"Grand Rapids, Minnesota, USA","lastModified":"1300090506000","name":"Judy Garland","type":"Person","_key":"6233"} +{"label":"Frank Morgan","version":71,"id":"9067","lastModified":"1300090576000","name":"Frank Morgan","type":"Person","_key":"6234"} +{"label":"Ray Bolger","version":47,"id":"9068","lastModified":"1300090530000","name":"Ray Bolger","type":"Person","_key":"6235"} +{"label":"Bert Lahr","version":32,"id":"9069","lastModified":"1300090541000","name":"Bert Lahr","type":"Person","_key":"6236"} +{"label":"Jack Haley Sr.","version":39,"birthday":"-2252970000000","id":"9070","birthplace":"Boston, Massachusetts, USA","lastModified":"1300090642000","name":"Jack Haley Sr.","type":"Person","_key":"6237"} +{"label":"Billie Burke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b57\/4be60857017a3c35c1000b57\/billie-burke-profile.jpg","version":38,"id":"9071","lastModified":"1300091089000","name":"Billie Burke","type":"Person","_key":"6238"} +{"label":"Margaret Hamilton","version":57,"birthday":"-2116371600000","id":"9072","birthplace":"Cleveland, Ohio, USA","lastModified":"1300090929000","name":"Margaret Hamilton","type":"Person","_key":"6239"} +{"label":"Clara Blandick","version":25,"id":"9073","lastModified":"1300091223000","name":"Clara Blandick","type":"Person","_key":"6240"} +{"label":"Charles Becker","version":26,"id":"9074","lastModified":"1300091222000","name":"Charles Becker","type":"Person","_key":"6241"} +{"label":"Meinhardt Raabe","version":22,"id":"9075","lastModified":"1300091035000","name":"Meinhardt Raabe","type":"Person","_key":"6242"} +{"label":"Sunrise: A Song of Two Humans","description":"The first film from director Friedrich Wilhelm Murnau to be finished in the States. The film has the tangible elements of German expressionism. Murnau received a big budget from Fox and the ability to make all the filmmaking decisions. The film has been called the greatest silent film of all time.","id":"631","runtime":95,"imdbId":"tt0018455","trailer":"http:\/\/www.youtube.com\/watch?v=HFJtblnLX1s","version":118,"lastModified":"1299912535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/975\/4bc90a62017a3c57fe003975\/sunrise-a-song-of-two-humans-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Crime","title":"Sunrise: A Song of Two Humans","releaseDate":-1334102400000,"language":"en","type":"Movie","_key":"6243"} +{"label":"F.W. Murnau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84e\/4d62c8c37b9aa154cb00684e\/f-w-murnau-profile.jpg","version":35,"birthday":"-2556406800000","id":"9076","birthplace":"Bielefeld, North-Rhine-Westphalia, Germany","lastModified":"1300090545000","name":"F.W. Murnau","type":"Person","_key":"6244"} +{"label":"Herman Bing","version":22,"id":"9084","lastModified":"1300090487000","name":"Herman Bing","type":"Person","_key":"6245"} +{"label":"George O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/586\/4cb357247b9aa1263f000586\/george-o-brien-profile.jpg","version":19,"id":"9087","lastModified":"1300090782000","name":"George O'Brien","type":"Person","_key":"6246"} +{"label":"Janet Gaynor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/820\/4bf54480017a3c320a000820\/janet-gaynor-profile.jpg","version":17,"id":"9088","lastModified":"1300091142000","name":"Janet Gaynor","type":"Person","_key":"6247"} +{"label":"Margaret Livingston","version":14,"id":"9089","lastModified":"1300091432000","name":"Margaret Livingston","type":"Person","_key":"6248"} +{"label":"Bodil Rosing","version":13,"id":"9090","lastModified":"1300091431000","name":"Bodil Rosing","type":"Person","_key":"6249"} +{"label":"J. Farrell MacDonald","version":31,"birthday":"-2984432400000","id":"9091","birthplace":"Waterbury, Connecticut, USA","lastModified":"1300091328000","name":"J. Farrell MacDonald","type":"Person","_key":"6250"} +{"label":"Ralph Sipperly","version":13,"id":"9092","lastModified":"1300091613000","name":"Ralph Sipperly","type":"Person","_key":"6251"} +{"label":"Jane Winton","version":14,"id":"9093","lastModified":"1300091438000","name":"Jane Winton","type":"Person","_key":"6252"} +{"label":"Arthur Housman","version":20,"id":"9094","lastModified":"1300091338000","name":"Arthur Housman","type":"Person","_key":"6253"} +{"label":"Eddie Boland","version":14,"id":"9095","lastModified":"1300091613000","name":"Eddie Boland","type":"Person","_key":"6254"} +{"label":"Gino Corrado","version":15,"id":"9096","lastModified":"1300091871000","name":"Gino Corrado","type":"Person","_key":"6255"} +{"label":"Gibson Gowland","version":20,"id":"9097","lastModified":"1299493885000","name":"Gibson Gowland","type":"Person","_key":"6256"} +{"label":"Stalag 17","description":"Stalag 17 is a war time film from director Billy Wilder set in a German prison camp. The story follows a group of Americans that want to break out.","id":"632","runtime":116,"imdbId":"tt0046359","version":128,"lastModified":"1299910565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/988\/4bc90a64017a3c57fe003988\/stalag-17-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Stalag 17","releaseDate":-523670400000,"language":"en","type":"Movie","_key":"6257"} +{"label":"Don Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/271\/4cc983af7b9aa16b9d000271\/don-taylor-profile.jpg","version":41,"id":"9108","lastModified":"1300090445000","name":"Don Taylor","type":"Person","_key":"6258"} +{"label":"Harvey Lembeck","version":26,"id":"9109","lastModified":"1300091179000","name":"Harvey Lembeck","type":"Person","_key":"6259"} +{"label":"Richard Erdman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4bce1878017a3c24c7000066\/richard-erdman-profile.jpg","biography":"Richard Erdman (born Richard Erdmann June 1, 1925, in Enid, Oklahoma) is an American film and television actor and director.\n\nIn a career that has spanned seven decades, his best known roles are that of the barracks chief Hoffy in Stalag 17, and McNulty in the classic Twilight Zone episode \"A Kind of a Stopwatch\". In Tora Tora Tora he played Colonel Edward F. French, the officer who responded to the failure to transmit the warning to Pearl Harbor using Army radio to instead use commercial telegr","version":32,"birthday":"-1407027600000","id":"9110","birthplace":"Enid, Oklahoma, USA","lastModified":"1300090355000","name":"Richard Erdman","type":"Person","_key":"6260"} +{"label":"Peter Graves","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c1bbf377b9aa1182600000c\/peter-graves-profile.jpg","version":42,"id":"9111","lastModified":"1300090552000","name":"Peter Graves","type":"Person","_key":"6261"} +{"label":"Neville Brand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/108\/4c2b55387b9aa15e9a000108\/neville-brand-profile.jpg","version":33,"id":"9112","lastModified":"1300090463000","name":"Neville Brand","type":"Person","_key":"6262"} +{"label":"William Pierson","version":13,"id":"9113","lastModified":"1300092045000","name":"William Pierson","type":"Person","_key":"6263"} +{"label":"Gil Stratton","version":17,"id":"9114","lastModified":"1300092145000","name":"Gil Stratton","type":"Person","_key":"6264"} +{"label":"Jay Lawrence","version":13,"id":"9115","lastModified":"1300091786000","name":"Jay Lawrence","type":"Person","_key":"6265"} +{"label":"Soldier of Orange","description":"Soldier of Orange depicts life for students in the Netherlands during the German occupation of the Second World War. The film was the most successful Dutch film and gave director Paul Verhoeven a name in Hollywood. ","id":"633","runtime":149,"imdbId":"tt0076734","version":84,"lastModified":"1299531795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/995\/4bc90a67017a3c57fe003995\/soldaat-van-oranje-mid.jpg","studio":"Rob Houwer Productions","genre":"Drama","title":"Soldier of Orange","releaseDate":303609600000,"language":"en","type":"Movie","_key":"6266"} +{"label":"Susan Penhaligon","version":18,"id":"9125","lastModified":"1300090786000","name":"Susan Penhaligon","type":"Person","_key":"6267"} +{"label":"Edward Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4ca644015e73d643ec000066\/edward-fox-profile.jpg","version":59,"id":"9126","lastModified":"1300124390000","name":"Edward Fox","type":"Person","_key":"6268"} +{"label":"Lex van Delden","version":16,"id":"9127","lastModified":"1300091609000","name":"Lex van Delden","type":"Person","_key":"6269"} +{"label":"Derek de Lint","version":25,"id":"9128","lastModified":"1300091178000","name":"Derek de Lint","type":"Person","_key":"6270"} +{"label":"Huib Rooymans","version":13,"id":"9129","lastModified":"1300091814000","name":"Huib Rooymans","type":"Person","_key":"6271"} +{"label":"Dolf de Vries","version":16,"id":"9130","lastModified":"1300091086000","name":"Dolf de Vries","type":"Person","_key":"6272"} +{"label":"Eddy Habbema","version":13,"id":"9131","lastModified":"1300091814000","name":"Eddy Habbema","type":"Person","_key":"6273"} +{"label":"Belinda Meuldijk","version":13,"id":"9132","lastModified":"1300091814000","name":"Belinda Meuldijk","type":"Person","_key":"6274"} +{"label":"Peter Faber","version":15,"id":"9133","lastModified":"1300091220000","name":"Peter Faber","type":"Person","_key":"6275"} +{"label":"Rijk de Gooyer","version":23,"id":"9134","lastModified":"1300091660000","name":"Rijk de Gooyer","type":"Person","_key":"6276"} +{"label":"Johan Schmitz","version":13,"id":"9135","lastModified":"1300091814000","name":"Johan Schmitz","type":"Person","_key":"6277"} +{"label":"Bridget Jones's Diary","description":"Bridget Jone\u2019s Diary is a romantic love story comedy from the best selling novel of the same name by Helen Fielding. A chaotic Jones meets a snobbish lawer named Marc and soon he enters into her world of imperfections. ","id":"634","runtime":97,"imdbId":"tt0243155","version":129,"lastModified":"1300036799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a7\/4bc90a68017a3c57fe0039a7\/bridget-jones-s-diary-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Bridget Jones's Diary","releaseDate":984441600000,"language":"en","type":"Movie","_key":"6278"} +{"label":"Ren\u00e9e Zellweger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4bd5ed26017a3c65800000d1\/renee-zellweger-profile.jpg","biography":"<U><FONT color=#0066cc><\/FONT><\/U>\r\n<P style=\"MARGIN: 0in 0in 10pt\" class=MsoNormal><SPAN style=\"LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt\">Ren\u00e9e Kathleen Zellweger (born April 25, 1969) is an American actress and producer. Zellweger first gained widespread attention for her role in the film Jerry Maguire (1996) in which she played the romantic interest of Tom Cruise's character. Zellweger later won acclaim in One True Thing (1998) opposite William Hurt and Meryl","version":116,"birthday":"-21690000000","id":"9137","birthplace":"Katy, Texas, U.S.","lastModified":"1300090291000","name":"Ren\u00e9e Zellweger","type":"Person","_key":"6279"} +{"label":"Gemma Jones","version":37,"id":"9138","lastModified":"1300090514000","name":"Gemma Jones","type":"Person","_key":"6280"} +{"label":"Celia Imrie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e8\/4ceec3275e73d654f50000e8\/celia-imrie-profile.jpg","version":39,"id":"9139","lastModified":"1300091148000","name":"Celia Imrie","type":"Person","_key":"6281"} +{"label":"James Faulkner","version":51,"id":"9140","lastModified":"1300132917000","name":"James Faulkner","type":"Person","_key":"6282"} +{"label":"Charmian May","version":18,"id":"9141","lastModified":"1300091786000","name":"Charmian May","type":"Person","_key":"6283"} +{"label":"Paul Brooke","version":21,"id":"9142","lastModified":"1300091213000","name":"Paul Brooke","type":"Person","_key":"6284"} +{"label":"Felicity Montagu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dc\/4cef51825e73d6625a0002dc\/felicity-montagu-profile.jpg","version":24,"id":"9143","lastModified":"1300090619000","name":"Felicity Montagu","type":"Person","_key":"6285"} +{"label":"Sally Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c06\/4d7e2d785e73d65ec6002c06\/sally-phillips-profile.jpg","version":33,"id":"9144","lastModified":"1300111208000","name":"Sally Phillips","type":"Person","_key":"6286"} +{"label":"James Callis","version":35,"id":"9145","lastModified":"1300090820000","name":"James Callis","type":"Person","_key":"6287"} +{"label":"Lisa Barbuscia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d2e\/4cf27d2a5e73d61e3b000d2e\/lisa-barbuscia-profile.jpg","version":22,"id":"9146","lastModified":"1300090886000","name":"Lisa Barbuscia","type":"Person","_key":"6288"} +{"label":"Salman Rushdie","version":22,"id":"9147","lastModified":"1300091204000","name":"Salman Rushdie","type":"Person","_key":"6289"} +{"label":"Sharon Maguire","version":22,"id":"9158","lastModified":"1300090997000","name":"Sharon Maguire","type":"Person","_key":"6290"} +{"label":"Angel Heart","description":"The down-and-out private detective Harry Angel is ordered, by a mysterious man named Louis Cyphre, to go on a mission to find a missing person. His routine failure soon leads to a bloody spur with himself as Harry Angel goes on a supernatural journey into his soul. A thriller starring Mickey Rourke and Robert De Niro.","id":"635","runtime":113,"imdbId":"tt0092563","version":176,"lastModified":"1300119958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/309\/4bd1e315017a3c63ed000309\/angel-heart-mid.jpg","genre":"Horror","title":"Angel Heart","releaseDate":541987200000,"language":"en","type":"Movie","_key":"6291"} +{"label":"Alan Parker","version":64,"id":"9168","lastModified":"1300119889000","name":"Alan Parker","type":"Person","_key":"6292"} +{"label":"Lisa Bonet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4d0dbb4a5e73d63713001041\/lisa-bonet-profile.jpg","version":32,"id":"3232","lastModified":"1300090435000","name":"Lisa Bonet","type":"Person","_key":"6293"} +{"label":"Stocker Fontelieu","version":18,"id":"9170","lastModified":"1300119890000","name":"Stocker Fontelieu","type":"Person","_key":"6294"} +{"label":"Brownie McGhee","version":17,"id":"9171","lastModified":"1300119890000","name":"Brownie McGhee","type":"Person","_key":"6295"} +{"label":"Elizabeth Whitcraft","version":16,"id":"9172","lastModified":"1300119890000","name":"Elizabeth Whitcraft","type":"Person","_key":"6296"} +{"label":"Eliott Keener","version":18,"id":"9173","lastModified":"1300119890000","name":"Eliott Keener","type":"Person","_key":"6297"} +{"label":"Charles Gordone","version":17,"id":"9174","lastModified":"1300119890000","name":"Charles Gordone","type":"Person","_key":"6298"} +{"label":"Dann Florek","version":20,"id":"9175","lastModified":"1300119890000","name":"Dann Florek","type":"Person","_key":"6299"} +{"label":"THX 1138","description":"People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship. The first film from George Lucas.","id":"636","runtime":95,"imdbId":"tt0066434","trailer":"http:\/\/www.youtube.com\/watch?v=N4HVFbWfiIo","version":196,"lastModified":"1299911530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04f\/4c91d0ce7b9aa1021100004f\/thx-1138-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"THX 1138","releaseDate":37497600000,"language":"en","type":"Movie","_key":"6300"} +{"label":"Donald Pleasence","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/221\/4c17b3757b9aa108b4000221\/donald-pleasence-profile.jpg","version":120,"id":"9221","lastModified":"1300040851000","name":"Donald Pleasence","type":"Person","_key":"6301"} +{"label":"Don Pedro Colley","version":17,"id":"9222","lastModified":"1300091216000","name":"Don Pedro Colley","type":"Person","_key":"6302"} +{"label":"Maggie McOmie","version":18,"id":"9223","lastModified":"1300091472000","name":"Maggie McOmie","type":"Person","_key":"6303"} +{"label":"Marshall Efron","version":23,"id":"9224","lastModified":"1300091450000","name":"Marshall Efron","type":"Person","_key":"6304"} +{"label":"John Pearce","version":17,"id":"9225","lastModified":"1300092079000","name":"John Pearce","type":"Person","_key":"6305"} +{"label":"Irene Forrest","version":21,"id":"9226","lastModified":"1300092170000","name":"Irene Forrest","type":"Person","_key":"6306"} +{"label":"Gary Alan Marsh","version":17,"id":"9227","lastModified":"1300092079000","name":"Gary Alan Marsh","type":"Person","_key":"6307"} +{"label":"John Seaton","version":17,"id":"9228","lastModified":"1300092438000","name":"John Seaton","type":"Person","_key":"6308"} +{"label":"Eugene I. Stillman","version":17,"id":"9229","lastModified":"1300092079000","name":"Eugene I. Stillman","type":"Person","_key":"6309"} +{"label":"Mark Lawhead","version":17,"id":"9231","lastModified":"1300092439000","name":"Mark Lawhead","type":"Person","_key":"6310"} +{"label":"Life Is Beautiful","description":"A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.","id":"637","runtime":116,"imdbId":"tt0118799","trailer":"http:\/\/www.youtube.com\/watch?v=920","version":155,"lastModified":"1299962289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e7\/4bc90a72017a3c57fe0039e7\/la-vita-e-bella-mid.jpg","studio":"Melampo Cinematografica","genre":"Comedy","title":"Life Is Beautiful","releaseDate":882576000000,"language":"en","type":"Movie","_key":"6311"} +{"label":"Nicoletta Braschi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c8\/4cfcabc55e73d6299d0038c8\/nicoletta-braschi-profile.jpg","version":34,"id":"9235","lastModified":"1300090416000","name":"Nicoletta Braschi","type":"Person","_key":"6312"} +{"label":"Giorgio Cantarini","version":16,"id":"9236","lastModified":"1300090471000","name":"Giorgio Cantarini","type":"Person","_key":"6313"} +{"label":"Giustino Durano","version":16,"id":"9237","lastModified":"1300090573000","name":"Giustino Durano","type":"Person","_key":"6314"} +{"label":"Amerigo Fontani","version":17,"id":"9238","lastModified":"1300091092000","name":"Amerigo Fontani","type":"Person","_key":"6315"} +{"label":"Sergio Bini Bustric","version":17,"id":"9239","lastModified":"1300091162000","name":"Sergio Bini Bustric","type":"Person","_key":"6316"} +{"label":"Lidia Alfonsi","version":18,"id":"9240","lastModified":"1300090921000","name":"Lidia Alfonsi","type":"Person","_key":"6317"} +{"label":"Pietro De Silva","version":21,"id":"9241","lastModified":"1300091942000","name":"Pietro De Silva","type":"Person","_key":"6318"} +{"label":"Giuliana Lojodice","version":16,"id":"9242","lastModified":"1300091430000","name":"Giuliana Lojodice","type":"Person","_key":"6319"} +{"label":"Francesco Guzzo","version":18,"id":"9243","lastModified":"1300091430000","name":"Francesco Guzzo","type":"Person","_key":"6320"} +{"label":"Lost Highway","description":"Director David Lynch gives us a psycho thriller beyond definition that has audiences tangled in the provocations of nightmares, violence, sex sequences, reality, the subconscious, and madness as they must create their own interpretations of the film.","id":"638","runtime":135,"imdbId":"tt0116922","trailer":"http:\/\/www.youtube.com\/watch?v=DMWMCbQxEsE","version":660,"lastModified":"1300107208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f8\/4bc90a78017a3c57fe0039f8\/lost-highway-mid.jpg","studio":"Ciby 2000","genre":"Drama","title":"Lost Highway","releaseDate":853286400000,"language":"en","type":"Movie","_key":"6321"} +{"label":"John Roselius","version":16,"id":"9285","lastModified":"1300090616000","name":"John Roselius","type":"Person","_key":"6322"} +{"label":"Louis Eppolito","version":17,"id":"9286","lastModified":"1300090996000","name":"Louis Eppolito","type":"Person","_key":"6323"} +{"label":"Robert Blake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/89b\/4d024f7d7b9aa11bc100089b\/robert-blake-profile.jpg","version":35,"id":"9287","lastModified":"1300090545000","name":"Robert Blake","type":"Person","_key":"6324"} +{"label":"Jenna Maetlind","version":14,"id":"9288","lastModified":"1300092067000","name":"Jenna Maetlind","type":"Person","_key":"6325"} +{"label":"Henry Rollins","version":37,"id":"9290","lastModified":"1299509118000","name":"Henry Rollins","type":"Person","_key":"6326"} +{"label":"Michael Shamus Wiles","version":17,"id":"9291","lastModified":"1300092067000","name":"Michael Shamus Wiles","type":"Person","_key":"6327"} +{"label":"Mink Stole","version":40,"id":"9292","lastModified":"1300091065000","name":"Mink Stole","type":"Person","_key":"6328"} +{"label":"Ivory Ocean","version":15,"id":"9293","lastModified":"1300092233000","name":"Ivory Ocean","type":"Person","_key":"6329"} +{"label":"David Byrd","version":15,"id":"9294","lastModified":"1300092235000","name":"David Byrd","type":"Person","_key":"6330"} +{"label":"Gene Ross","version":15,"id":"9295","lastModified":"1300092067000","name":"Gene Ross","type":"Person","_key":"6331"} +{"label":"Balthazar Getty","version":26,"id":"9296","lastModified":"1300091050000","name":"Balthazar Getty","type":"Person","_key":"6332"} +{"label":"F. William Parker","version":15,"id":"9297","lastModified":"1300091601000","name":"F. William Parker","type":"Person","_key":"6333"} +{"label":"Guy Siner","version":14,"id":"9298","lastModified":"1300092067000","name":"Guy Siner","type":"Person","_key":"6334"} +{"label":"Alexander Folk","version":16,"id":"9299","lastModified":"1300091669000","name":"Alexander Folk","type":"Person","_key":"6335"} +{"label":"Lucy Butler","version":18,"id":"9300","lastModified":"1300091425000","name":"Lucy Butler","type":"Person","_key":"6336"} +{"label":"Carl Sundstrom","version":15,"id":"9301","lastModified":"1300092233000","name":"Carl Sundstrom","type":"Person","_key":"6337"} +{"label":"John Solari","version":14,"id":"9302","lastModified":"1300092067000","name":"John Solari","type":"Person","_key":"6338"} +{"label":"Jack","version":16,"id":"9303","lastModified":"1300092426000","name":"Jack","type":"Person","_key":"6339"} +{"label":"Al Garrett","version":14,"id":"9304","lastModified":"1300092067000","name":"Al Garrett","type":"Person","_key":"6340"} +{"label":"Heather Stephens","version":16,"id":"9305","lastModified":"1300092067000","name":"Heather Stephens","type":"Person","_key":"6341"} +{"label":"Scott Coffey","version":28,"id":"9306","lastModified":"1299493880000","name":"Scott Coffey","type":"Person","_key":"6342"} +{"label":"Natasha Gregson Wagner","version":34,"id":"3270","lastModified":"1300100489000","name":"Natasha Gregson Wagner","type":"Person","_key":"6343"} +{"label":"Amanda Anka","version":16,"id":"9307","lastModified":"1300101617000","name":"Amanda Anka","type":"Person","_key":"6344"} +{"label":"Jennifer Syme","version":17,"id":"9308","lastModified":"1300091601000","name":"Jennifer Syme","type":"Person","_key":"6345"} +{"label":"Richard Pryor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f36\/4d2670ba7b9aa134cf000f36\/richard-pryor-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">From Peoria, Illinois poverty to Hollywood affluence. From abandonment by his mother to adoration from millions of fans. From a childhood in a brothel to eight marriages (twice to the same woman) and seven children. From tragedy to triumph and back again, Richard Pryor has earned the status of Legend as a masterful storyteller, a multi-talented entertainer, a comic of acerbic wit, and a survivor with no self-pity.&n","version":68,"birthday":"-917834400000","id":"9309","birthplace":"Peoria, Illinois, USA","lastModified":"1300090369000","name":"Richard Pryor","type":"Person","_key":"6346"} +{"label":"Matt Sigloch","version":16,"id":"9310","lastModified":"1300092067000","name":"Matt Sigloch","type":"Person","_key":"6347"} +{"label":"Gilbert B. Combs","version":17,"id":"9311","lastModified":"1300092167000","name":"Gilbert B. Combs","type":"Person","_key":"6348"} +{"label":"Greg Travis","version":23,"id":"9312","lastModified":"1300090989000","name":"Greg Travis","type":"Person","_key":"6349"} +{"label":"Jack Nance","version":34,"id":"6718","lastModified":"1300090558000","name":"Jack Nance","type":"Person","_key":"6350"} +{"label":"Lisa Boyle","version":20,"id":"9313","lastModified":"1300091510000","name":"Lisa Boyle","type":"Person","_key":"6351"} +{"label":"Leslie Bega","version":14,"id":"9314","lastModified":"1300092067000","name":"Leslie Bega","type":"Person","_key":"6352"} +{"label":"Marilyn Manson","version":24,"id":"9315","lastModified":"1299492075000","name":"Marilyn Manson","type":"Person","_key":"6353"} +{"label":"Jeordie White","version":19,"id":"9316","lastModified":"1300090445000","name":"Jeordie White","type":"Person","_key":"6354"} +{"label":"When Harry Met Sally","description":"When Harry Met Sally is a relationship comedy from the early 90\u2019s that became a cult classic. Most famous is the scene in which Sally performs a fake orgasm in a crowded restaurant to prove that girls fake it sometimes.","id":"639","runtime":96,"imdbId":"tt0098635","version":122,"lastModified":"1299961841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66f\/4d5fefeb7b9aa154cf00366f\/when-harry-met-sally-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"When Harry Met Sally","releaseDate":616204800000,"language":"en","type":"Movie","_key":"6355"} +{"label":"Bruno Kirby","version":43,"id":"9257","lastModified":"1299493428000","name":"Bruno Kirby","type":"Person","_key":"6356"} +{"label":"Lisa Jane Persky","version":26,"id":"9259","lastModified":"1300102008000","name":"Lisa Jane Persky","type":"Person","_key":"6357"} +{"label":"Michelle Nicastro","version":23,"id":"9260","lastModified":"1300091786000","name":"Michelle Nicastro","type":"Person","_key":"6358"} +{"label":"Catch Me If You Can","description":"Frank W. Abagnale Jr. is a cunning con man -- posing as a doctor, lawyer and pilot all before turning 21. He's also a deft forger, and his work attracts the attention of FBI agent Carl Hanratty, who makes it his mission to put Frank behind bars. But Frank not only eludes capture, he revels in the pursuit, even taking time to taunt Carl by phone.","id":"640","runtime":141,"imdbId":"tt0264464","trailer":"http:\/\/www.youtube.com\/watch?v=hFj3OXVL_wQ","version":190,"lastModified":"1300095474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1c\/4bc90a7f017a3c57fe003a1c\/catch-me-if-you-can-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"Catch Me If You Can","releaseDate":1040774400000,"language":"en","tagline":"The true story of a real fake.","type":"Movie","_key":"6359"} +{"label":"Amy Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a58\/4d41c89f5e73d65721000a58\/amy-adams-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\"><span style=\"font-size: 12px;\">Amy Lou Adams (born August 20, 1974) is an American actress and singer. Adams began her performing career on stage in dinner theaters before making her screen debut in the 1999 black comedy film Drop Dead Gorgeous. After a series of television guest appearances and roles in B movies, she landed the role of Brenda Strong in 2002's Catch Me If You Can, but her breakthrough role was in the 2005 independent fil","version":111,"birthday":"146185200000","id":"9273","birthplace":"Vicenza, Italy","lastModified":"1300090233000","name":"Amy Adams","type":"Person","_key":"6360"} +{"label":"James Brolin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4c6989847b9aa1391e000049\/james-brolin-profile.jpg","version":80,"id":"9274","lastModified":"1300094533000","name":"James Brolin","type":"Person","_key":"6361"} +{"label":"Frank John Hughes","version":33,"id":"9275","lastModified":"1300094533000","name":"Frank John Hughes","type":"Person","_key":"6362"} +{"label":"Steve Eastin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4cdc69c27b9aa13801000096\/steve-eastin-profile.jpg","version":48,"id":"9276","lastModified":"1300094533000","name":"Steve Eastin","type":"Person","_key":"6363"} +{"label":"John Finn","version":28,"id":"9277","lastModified":"1300094533000","name":"John Finn","type":"Person","_key":"6364"} +{"label":"Jennifer Garner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/664\/4be0efdc017a3c35b4000664\/jennifer-garner-profile.jpg","version":90,"id":"9278","lastModified":"1300094533000","name":"Jennifer Garner","type":"Person","_key":"6365"} +{"label":"Nancy Lenehan","version":24,"id":"9279","lastModified":"1300094533000","name":"Nancy Lenehan","type":"Person","_key":"6366"} +{"label":"Ellen Pompeo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b0\/4c63b7567b9aa1775a0004b0\/ellen-pompeo-profile.jpg","biography":"Famouse for the role of doctor Meredith Grey in the tv serie Grey's Anatomy.\nDue this part obtain a nomination for Golden Globe as best tv series actress on 2007.","version":38,"birthday":"-4496400000","id":"9280","birthplace":"Everett, USA","lastModified":"1300094533000","name":"Ellen Pompeo","type":"Person","_key":"6367"} +{"label":"Guy Thauvette","version":22,"id":"9282","lastModified":"1300094534000","name":"Guy Thauvette","type":"Person","_key":"6368"} +{"label":"Candice Azzara","version":30,"id":"9283","lastModified":"1300094534000","name":"Candice Azzara","type":"Person","_key":"6369"} +{"label":"Thomas Kopache","version":27,"id":"9284","lastModified":"1300094534000","name":"Thomas Kopache","type":"Person","_key":"6370"} +{"label":"Nathalie Baye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e36\/4d56bf577b9aa16bc6000e36\/nathalie-baye-profile.jpg","version":36,"id":"136761","lastModified":"1299965653000","name":"Nathalie Baye","type":"Person","_key":"6371"} +{"label":"Requiem for a Dream","description":"The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.","id":"641","runtime":102,"imdbId":"tt0180093","trailer":"http:\/\/www.youtube.com\/watch?v=lgo3Hb5vWLE","version":236,"lastModified":"1300090104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/746\/4ca12bfc5e73d67049000746\/requiem-for-a-dream-mid.jpg","studio":"Industry Entertainment","genre":"Crime","title":"Requiem for a Dream","releaseDate":970790400000,"language":"en","type":"Movie","_key":"6372"} +{"label":"Ellen Burstyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7da\/4c099031017a3c29a60007da\/ellen-burstyn-profile.jpg","version":75,"id":"9560","lastModified":"1300090313000","name":"Ellen Burstyn","type":"Person","_key":"6373"} +{"label":"Marlon Wayans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b4\/4bebafff017a3c37a30000b4\/marlon-wayans-profile.jpg","version":104,"id":"9562","lastModified":"1300090296000","name":"Marlon Wayans","type":"Person","_key":"6374"} +{"label":"Louise Lasser","version":34,"id":"9565","lastModified":"1300091137000","name":"Louise Lasser","type":"Person","_key":"6375"} +{"label":"Butch Cassidy and the Sundance Kid","description":"Butch Cassidy and the Sundance Kid is a western comedy from 1969 starring Paul Newman and Robert Redford, two robbers with one more job to finish. The film was biggest box-office hit of the 60\u2019s.","id":"642","runtime":110,"imdbId":"tt0064115","trailer":"http:\/\/www.youtube.com\/watch?v=X41Ylp02NRs","version":196,"lastModified":"1299961225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4e\/4bc90a89017a3c57fe003a4e\/butch-cassidy-and-the-sundance-kid-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Butch Cassidy and the Sundance Kid","releaseDate":-8553600000,"language":"en","tagline":"Not that it matters, but most of it is true.","type":"Movie","_key":"6376"} +{"label":"George Roy Hill","version":35,"id":"9577","lastModified":"1300091041000","name":"George Roy Hill","type":"Person","_key":"6377"} +{"label":"Jeff Corey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54f\/4c5ac27d7b9aa151f300054f\/jeff-corey-profile.jpg","version":48,"id":"9596","lastModified":"1300090387000","name":"Jeff Corey","type":"Person","_key":"6378"} +{"label":"George Furth","version":21,"id":"9597","lastModified":"1300092067000","name":"George Furth","type":"Person","_key":"6379"} +{"label":"Cloris Leachman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09c\/4bca504b017a3c0e8d00009c\/cloris-leachman-profile.jpg","version":93,"birthday":"-1378256400000","id":"9599","birthplace":"Des Moines, Iowa, USA","lastModified":"1300090527000","name":"Cloris Leachman","type":"Person","_key":"6380"} +{"label":"Ted Cassidy","version":22,"id":"9600","lastModified":"1300091649000","name":"Ted Cassidy","type":"Person","_key":"6381"} +{"label":"Kenneth Mars","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e5\/4c3dbc9f7b9aa13a400000e5\/kenneth-mars-profile.jpg","version":41,"id":"9601","lastModified":"1300091465000","name":"Kenneth Mars","type":"Person","_key":"6382"} +{"label":"Donnelly Rhodes","version":20,"id":"9602","lastModified":"1300090599000","name":"Donnelly Rhodes","type":"Person","_key":"6383"} +{"label":"Battleship Potemkin","description":"Battleship Potemkin is the classic masterpiece silent film from director Sergej Eisenstein from 1925. The film is based on the true events of the Russian Revolution of 1905. The film had an incredible impact on the development of cinema and was a masterful example of montage editing.","id":"643","runtime":75,"imdbId":"tt0015648","version":134,"lastModified":"1299911370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8f\/4cd1f6527b9aa16ba0000c8f\/bronenosets-potyomkin-mid.jpg","studio":"Goskino Productions","genre":"Drama","title":"Battleship Potemkin","releaseDate":-1389484800000,"language":"en","type":"Movie","_key":"6384"} +{"label":"Sergei M. Eisenstein","version":37,"id":"9603","lastModified":"1300091870000","name":"Sergei M. Eisenstein","type":"Person","_key":"6385"} +{"label":"Aleksandr Antonov","version":16,"id":"9609","lastModified":"1300091250000","name":"Aleksandr Antonov","type":"Person","_key":"6386"} +{"label":"Vladimir Barsky","version":16,"id":"9610","lastModified":"1300091250000","name":"Vladimir Barsky","type":"Person","_key":"6387"} +{"label":"Grigori Aleksandrov","version":30,"id":"9607","lastModified":"1300091155000","name":"Grigori Aleksandrov","type":"Person","_key":"6388"} +{"label":"Ivan Bobrov","version":16,"id":"9611","lastModified":"1300091249000","name":"Ivan Bobrov","type":"Person","_key":"6389"} +{"label":"Mikhail Gomorov","version":18,"id":"9727","lastModified":"1300092153000","name":"Mikhail Gomorov","type":"Person","_key":"6390"} +{"label":"Aleksandr Levshin","version":16,"id":"9728","lastModified":"1300091658000","name":"Aleksandr Levshin","type":"Person","_key":"6391"} +{"label":"Beatrice Vitoldi","version":16,"id":"9729","lastModified":"1300092153000","name":"Beatrice Vitoldi","type":"Person","_key":"6392"} +{"label":"A.I. Artificial Intelligence","description":"Eleven-year-old David is the first android with human feelings. He is adopted by the Swinton family to test his ability to function. Before they are done testing him though David goes off on his own following his wish to be a human. He is on an odyssey to understand the secret to his existence. A science fiction film from Steven Speilberg taken over from Stanley Kubrick.","id":"644","runtime":145,"imdbId":"tt0212720","trailer":"http:\/\/www.youtube.com\/watch?v=1416","homepage":"http:\/\/www.warnerbros.de\/video\/ai\/","version":173,"lastModified":"1299960832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c37\/4d4cb2ea5e73d617ba001c37\/a-i-artificial-intelligence-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"A.I. Artificial Intelligence","releaseDate":993772800000,"language":"en","tagline":"His love is real. But he is not.","type":"Movie","_key":"6393"} +{"label":"Frances O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5c\/4be435e5017a3c35bd000a5c\/frances-o-connor-profile.jpg","version":42,"id":"1518","lastModified":"1300090430000","name":"Frances O'Connor","type":"Person","_key":"6394"} +{"label":"Jake Thomas","version":26,"id":"9641","lastModified":"1300090592000","name":"Jake Thomas","type":"Person","_key":"6395"} +{"label":"Jude Law","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4bc9f2f3017a3c0e8b000010\/jude-law-profile.jpg","version":153,"id":"9642","lastModified":"1299964769000","name":"Jude Law","type":"Person","_key":"6396"} +{"label":"James Bond Collection","description":"One of the most extensive film series starring James Bond as 007 a British super agent man that women desire.","id":"645","homepage":"http:\/\/www.jamesbond.com\/","version":92,"lastModified":"1299911242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99f\/4cbff1567b9aa138d800199f\/james-bond-collection-mid.jpg","title":"James Bond Collection","language":"en","type":"Movie","_key":"6397"} +{"label":"Dr. No","description":"The mysterious scientist Dr. No sabotages the American space program from his secret base in Jamaica. The Secret Service sends it\u2019s best agent after this him. Dr. No is the first film of legendary James Bond series starring Sean Connery in the role of a British super agent. ","id":"646","runtime":111,"imdbId":"tt0055928","trailer":"http:\/\/www.youtube.com\/watch?v=re-v2lDjaCU","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=DRNO","version":226,"lastModified":"1300123291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4d407cec7b9aa15bab0027b5\/dr-no-mid.jpg","studio":"EON Productions","genre":"Action","title":"Dr. No","releaseDate":-228528000000,"language":"en","tagline":"NOW meet the most extraordinary gentleman spy in all fiction!","type":"Movie","_key":"6398"} +{"label":"Terence Young","version":60,"id":"9855","lastModified":"1300123392000","name":"Terence Young","type":"Person","_key":"6399"} +{"label":"Ursula Andress","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29b\/4c7b79767b9aa176c000029b\/ursula-andress-profile.jpg","biography":"<SPAN style=\"FONT-FAMILY: Arial; COLOR: black; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: NL; mso-bidi-language: AR-SA\" lang=EN-GB>It's probably unsurprising that one of the most famous sequences in movie history features a woman who spent most of her time faking being an actress. When Swiss bombshell Ursula Andress emerges from the sea in <\/SPAN><SPAN style=\"FONT-FAMILY: Arial; COLOR: black; FONT-SIZE: 10pt; mso-fareast-font-fami","version":62,"birthday":"-1066266000000","id":"9871","birthplace":"Ostermundigen, Bern, Switzerland","lastModified":"1300127353000","name":"Ursula Andress","type":"Person","_key":"6400"} +{"label":"Joseph Wiseman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/93b\/4cced0df7b9aa16b9e00093b\/joseph-wiseman-profile.jpg","version":31,"id":"9872","lastModified":"1300122358000","name":"Joseph Wiseman","type":"Person","_key":"6401"} +{"label":"Jack Lord","version":23,"id":"9873","lastModified":"1300090530000","name":"Jack Lord","type":"Person","_key":"6402"} +{"label":"Zena Marshall","version":22,"id":"9875","lastModified":"1300091700000","name":"Zena Marshall","type":"Person","_key":"6403"} +{"label":"John Kitzmiller","version":22,"id":"9876","lastModified":"1300091186000","name":"John Kitzmiller","type":"Person","_key":"6404"} +{"label":"Eunice Gayson","version":35,"id":"9877","lastModified":"1300123319000","name":"Eunice Gayson","type":"Person","_key":"6405"} +{"label":"Peter Burton","version":25,"id":"9879","lastModified":"1300122358000","name":"Peter Burton","type":"Person","_key":"6406"} +{"label":"Final Fantasy VII: Advent Children","description":"Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.","id":"647","runtime":101,"imdbId":"tt0385700","version":200,"lastModified":"1299910787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc90a9e017a3c57fe003af7\/final-fantasy-vii-advent-children-mid.jpg","studio":"Sony Pictures","genre":"Animation","title":"Final Fantasy VII: Advent Children","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"6407"} +{"label":"Tetsuya Nomura","version":20,"id":"9660","lastModified":"1300090937000","name":"Tetsuya Nomura","type":"Person","_key":"6408"} +{"label":"Takeshi Nozue","version":14,"id":"9661","lastModified":"1300091605000","name":"Takeshi Nozue","type":"Person","_key":"6409"} +{"label":"Takahiro Sakurai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/875\/4d2743a37b9aa134cb001875\/takahiro-sakurai-profile.jpg","version":22,"id":"9705","lastModified":"1300090454000","name":"Takahiro Sakurai","type":"Person","_key":"6410"} +{"label":"Toshiyuki Morikawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/784\/4d2746137b9aa134cf001784\/toshiyuki-morikawa-profile.jpg","version":20,"id":"9706","lastModified":"1300090735000","name":"Toshiyuki Morikawa","type":"Person","_key":"6411"} +{"label":"Ayumi Ito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c1eb27b5e73d60cbe0000b7\/ayumi-ito-profile.jpg","version":19,"id":"9707","lastModified":"1300090503000","name":"Ayumi Ito","type":"Person","_key":"6412"} +{"label":"Keiji Fujiwara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/89e\/4d27467b7b9aa134d800189e\/keiji-fujiwara-profile.jpg","version":18,"id":"9708","lastModified":"1300090938000","name":"Keiji Fujiwara","type":"Person","_key":"6413"} +{"label":"Kyosuke Ikeda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ec\/4d274a8b7b9aa134e00017ec\/kyosuke-ikeda-profile.jpg","version":16,"id":"9709","lastModified":"1300091510000","name":"Kyosuke Ikeda","type":"Person","_key":"6414"} +{"label":"Megumi Toyoguchi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/894\/4d2745a37b9aa134d8001894\/megumi-toyoguchi-profile.jpg","version":22,"id":"9710","lastModified":"1300090928000","name":"Megumi Toyoguchi","type":"Person","_key":"6415"} +{"label":"Maaya Sakamoto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c6\/4d274ae97b9aa134d80018c6\/maaya-sakamoto-profile.jpg","version":59,"id":"9711","lastModified":"1300090842000","name":"Maaya Sakamoto","type":"Person","_key":"6416"} +{"label":"Rina Mogami","version":14,"id":"9712","lastModified":"1300092071000","name":"Rina Mogami","type":"Person","_key":"6417"} +{"label":"Kazuyuki Yama","version":14,"id":"9713","lastModified":"1300092432000","name":"Kazuyuki Yama","type":"Person","_key":"6418"} +{"label":"Shotaro Morikubo","version":16,"id":"9714","lastModified":"1300092542000","name":"Shotaro Morikubo","type":"Person","_key":"6419"} +{"label":"Yumi Kakazu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/90f\/4d274c017b9aa134dc00190f\/yumi-kakazu-profile.jpg","version":18,"id":"9715","lastModified":"1300091323000","name":"Yumi Kakazu","type":"Person","_key":"6420"} +{"label":"Kenji Nomura","version":16,"id":"9716","lastModified":"1300092643000","name":"Kenji Nomura","type":"Person","_key":"6421"} +{"label":"Masachika Ichimura","version":14,"id":"9717","lastModified":"1300092432000","name":"Masachika Ichimura","type":"Person","_key":"6422"} +{"label":"Taiten Kusunoki","version":14,"id":"9718","lastModified":"1300092432000","name":"Taiten Kusunoki","type":"Person","_key":"6423"} +{"label":"T\u00f4ru \u00d4kawa","version":15,"id":"9719","lastModified":"1300092542000","name":"T\u00f4ru \u00d4kawa","type":"Person","_key":"6424"} +{"label":"Hideo Ishikawa","version":16,"id":"9720","lastModified":"1300092432000","name":"Hideo Ishikawa","type":"Person","_key":"6425"} +{"label":"Junichi Suwabe","version":14,"id":"9721","lastModified":"1300092432000","name":"Junichi Suwabe","type":"Person","_key":"6426"} +{"label":"Sh\u00f4go Suzuki","version":15,"id":"9722","lastModified":"1300092167000","name":"Sh\u00f4go Suzuki","type":"Person","_key":"6427"} +{"label":"Masahiro Kobayashi","version":14,"id":"9723","lastModified":"1300092432000","name":"Masahiro Kobayashi","type":"Person","_key":"6428"} +{"label":"Miyuu Tsuzuhara","version":15,"id":"9724","lastModified":"1300092167000","name":"Miyuu Tsuzuhara","type":"Person","_key":"6429"} +{"label":"Y\u00fbji Kishi","version":17,"id":"9725","lastModified":"1300091220000","name":"Y\u00fbji Kishi","type":"Person","_key":"6430"} +{"label":"Kenichi Suzumura","version":48,"id":"9726","lastModified":"1300091881000","name":"Kenichi Suzumura","type":"Person","_key":"6431"} +{"label":"Beauty and the Beast","description":"Ad\u00e9la\u00efde, Belle, F\u00e9licie and Ludovic are young adult siblings who once lived in grandeur until their father's merchant ships were lost at sea. The family is now near ruin, but Ad\u00e9la\u00efde and F\u00e9licie nonetheless still squander away the family money on themselves and keeping beautiful, whereas Belle slaves around the house, doting on her father. Ludovic detests his two spoiled sisters, but is protective of Belle, especially with his friend Avenant, a handsome scoundrel who wants to marry Belle. Cros","id":"648","runtime":96,"imdbId":"tt0038348","version":129,"lastModified":"1299910679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b04\/4bc90aa1017a3c57fe003b04\/la-belle-et-la-bete-mid.jpg","genre":"Drama","title":"Beauty and the Beast","releaseDate":-731376000000,"language":"en","type":"Movie","_key":"6432"} +{"label":"Jean Cocteau","version":35,"id":"9730","lastModified":"1300091192000","name":"Jean Cocteau","type":"Person","_key":"6433"} +{"label":"Ren\u00e9 Cl\u00e9ment","version":39,"id":"9740","lastModified":"1299492660000","name":"Ren\u00e9 Cl\u00e9ment","type":"Person","_key":"6434"} +{"label":"Jean Marais","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d5\/4cb75d237b9aa138d70006d5\/jean-marais-profile.jpg","version":89,"id":"9741","lastModified":"1300090950000","name":"Jean Marais","type":"Person","_key":"6435"} +{"label":"Josette Day","version":14,"id":"9742","lastModified":"1300091417000","name":"Josette Day","type":"Person","_key":"6436"} +{"label":"Marcel Andr\u00e9","version":18,"id":"9743","lastModified":"1300091704000","name":"Marcel Andr\u00e9","type":"Person","_key":"6437"} +{"label":"Mila Par\u00e9ly","version":19,"id":"9744","lastModified":"1300091878000","name":"Mila Par\u00e9ly","type":"Person","_key":"6438"} +{"label":"Nane Germon","version":21,"id":"9745","lastModified":"1300091911000","name":"Nane Germon","type":"Person","_key":"6439"} +{"label":"Michel Auclair","version":28,"id":"9746","lastModified":"1300091454000","name":"Michel Auclair","type":"Person","_key":"6440"} +{"label":"Belle de Jour","description":"A bored wife of a wealthy doctor spends her afternoons exploring exciting escapades as a call-girl in a chic Paris brothel.","id":"649","runtime":101,"imdbId":"tt0061395","trailer":"http:\/\/www.youtube.com\/watch?v=FJXLCYZMGQ8","version":148,"lastModified":"1299910578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e1\/4ce83a485e73d6258d0002e1\/belle-de-jour-mid.jpg","studio":"Paris Films Productions","genre":"Drama","title":"Belle de Jour","releaseDate":-82339200000,"language":"en","type":"Movie","_key":"6441"} +{"label":"Jean Sorel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/301\/4bf1947f017a3c320b000301\/jean-sorel-profile.jpg","version":26,"id":"9762","lastModified":"1300091088000","name":"Jean Sorel","type":"Person","_key":"6442"} +{"label":"Genevi\u00e8ve Page","version":23,"id":"9763","lastModified":"1300090950000","name":"Genevi\u00e8ve Page","type":"Person","_key":"6443"} +{"label":"Pierre Cl\u00e9menti","version":27,"id":"17577","lastModified":"1300091268000","name":"Pierre Cl\u00e9menti","type":"Person","_key":"6444"} +{"label":"Fran\u00e7oise Fabian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6af\/4c5b18827b9aa151f50006af\/francoise-fabian-profile.jpg","version":33,"id":"9765","lastModified":"1300111939000","name":"Fran\u00e7oise Fabian","type":"Person","_key":"6445"} +{"label":"Macha M\u00e9ril","version":28,"id":"9766","lastModified":"1300091098000","name":"Macha M\u00e9ril","type":"Person","_key":"6446"} +{"label":"Georges Marchal","version":23,"id":"9767","lastModified":"1300091181000","name":"Georges Marchal","type":"Person","_key":"6447"} +{"label":"Francisco Rabal","version":36,"id":"9768","lastModified":"1300091088000","name":"Francisco Rabal","type":"Person","_key":"6448"} +{"label":"Boyz N The Hood","description":"Boyz N The Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.","id":"650","runtime":102,"imdbId":"tt0101507","trailer":"http:\/\/www.youtube.com\/watch?v=J4sKiGkzKJo","version":129,"lastModified":"1300072391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1e\/4bc90aa3017a3c57fe003b1e\/boyz-n-the-hood-mid.jpg","studio":"Carolco Pictures Inc","genre":"Crime","title":"Boyz N The Hood","releaseDate":679276800000,"language":"en","tagline":"Once upon a time in South Central L.A... It ain't no fairy tale","type":"Movie","_key":"6449"} +{"label":"Ice Cube","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33a\/4c8e2e3b5e73d609ed00033a\/ice-cube-profile.jpg","version":74,"id":"9778","lastModified":"1300090306000","name":"Ice Cube","type":"Person","_key":"6450"} +{"label":"Morris Chestnut","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/83b\/4d0cd24c5e73d6370e00083b\/morris-chestnut-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; TEXT-INDENT: 0.5in; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Morris L. Chestnut<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> (born January 1, 1969) is an American film and television actor. He is known for his roles as teenage father Ricky Baker in the 1991 film <I>Boyz n the Hood<\/I>, groom-to-be Lance Sullivan in the 1999 film <I>The Best Man<\/I>, as Tracy ","version":72,"birthday":"-31539600000","id":"9779","birthplace":"California, USA","lastModified":"1300090418000","name":"Morris Chestnut","type":"Person","_key":"6451"} +{"label":"Nia Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4d752c875e73d66472000008\/nia-long-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Nia Long<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> (born October 30, 1970) is an American actress and occasional music video director. She is best known for her roles in the television series <I>The Fresh Prince of Bel-Air<\/I> and <I>Third Watch<\/I>, and the films <I>Soul Food<\/I>, <I>Love Jones<\/I>, <I>The Best Man","version":59,"birthday":"26089200000","id":"9781","birthplace":"Brooklyn, New York","lastModified":"1300090477000","name":"Nia Long","type":"Person","_key":"6452"} +{"label":"Tyra Ferrell","version":20,"id":"9782","lastModified":"1300091446000","name":"Tyra Ferrell","type":"Person","_key":"6453"} +{"label":"Lexie Bigham","version":15,"id":"9783","lastModified":"1300091574000","name":"Lexie Bigham","type":"Person","_key":"6454"} +{"label":"Desi Arnez Hines II","version":15,"id":"9784","lastModified":"1300092044000","name":"Desi Arnez Hines II","type":"Person","_key":"6455"} +{"label":"John Cothran Jr.","version":23,"id":"9785","lastModified":"1300090945000","name":"John Cothran Jr.","type":"Person","_key":"6456"} +{"label":"Jessie Lawrence Ferguson","version":15,"id":"9786","lastModified":"1300091574000","name":"Jessie Lawrence Ferguson","type":"Person","_key":"6457"} +{"label":"Tammy Hanson","version":15,"id":"9787","lastModified":"1300091786000","name":"Tammy Hanson","type":"Person","_key":"6458"} +{"label":"Regina King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47d\/4d4c28785e73d617b700147d\/regina-king-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Regina King<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> was born on January 15, 1971 in Los Angeles, California. She is best known for her role as Mary Jenkins's (played by Marla Gibbs) studious daughter, Brenda Jenkins, on the popular 1980s sitcom, <I>227<\/I> and for her critically-acclaimed supporting role in the feature film <I>Jerry Maguire<\/I>. King began her acti","version":59,"birthday":"32742000000","id":"9788","birthplace":"Los Angeles, California, USA","lastModified":"1300090554000","name":"Regina King","type":"Person","_key":"6459"} +{"label":"M.A.S.H.","description":"M.A.S.H. is the heavy war comedy from Robert Altman from 1970 that came out during the Korean war and criticized the American Way of Life.","id":"651","runtime":116,"imdbId":"tt0066026","trailer":"http:\/\/www.youtube.com\/watch?v=4UeYGS0UU6E","version":93,"lastModified":"1299807600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc90aa8017a3c57fe003b38\/m-a-s-h-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"M.A.S.H.","releaseDate":2073600000,"language":"en","tagline":"M*A*S*H Gives A D*A*M*N.","type":"Movie","_key":"6460"} +{"label":"Ray Taylor Jr.","version":15,"id":"9802","lastModified":"1300091926000","name":"Ray Taylor Jr.","type":"Person","_key":"6461"} +{"label":"Robert Altman","version":89,"id":"9789","lastModified":"1300090477000","name":"Robert Altman","type":"Person","_key":"6462"} +{"label":"Sally Kellerman","version":30,"id":"9805","lastModified":"1300090371000","name":"Sally Kellerman","type":"Person","_key":"6463"} +{"label":"Roger Bowen","version":15,"id":"9806","lastModified":"1300090407000","name":"Roger Bowen","type":"Person","_key":"6464"} +{"label":"David Arkin","version":24,"id":"9808","lastModified":"1300090360000","name":"David Arkin","type":"Person","_key":"6465"} +{"label":"Jo Ann Pflug","version":16,"id":"9809","lastModified":"1300090383000","name":"Jo Ann Pflug","type":"Person","_key":"6466"} +{"label":"Gary Burghoff","version":15,"id":"9810","lastModified":"1300090416000","name":"Gary Burghoff","type":"Person","_key":"6467"} +{"label":"Fred Williamson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b6\/4c9b6c057b9aa123370005b6\/fred-williamson-profile.jpg","version":53,"id":"9811","lastModified":"1300090329000","name":"Fred Williamson","type":"Person","_key":"6468"} +{"label":"Troy","description":"It is the year 1250 B.C. during the late Bronze age. Two emerging nations begin to clash after Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able t","id":"652","runtime":163,"imdbId":"tt0332452","trailer":"http:\/\/www.youtube.com\/watch?v=xr4ig6oMCmI","version":298,"lastModified":"1300072057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/518\/4ce97c465e73d6258f000518\/troy-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Troy","releaseDate":1084406400000,"language":"en","type":"Movie","_key":"6469"} +{"label":"Diane Kruger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4bd50f3d017a3c2e7d00004f\/diane-kruger-profile.jpg","version":117,"birthday":"206233200000","id":"9824","birthplace":"Algermissen, Lower Saxony, Germany","lastModified":"1300090234000","name":"Diane Kruger","type":"Person","_key":"6470"} +{"label":"Saffron Burrows","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/494\/4d4d1ee17b9aa13ab8008494\/saffron-burrows-profile.jpg","version":61,"id":"9825","lastModified":"1299976492000","name":"Saffron Burrows","type":"Person","_key":"6471"} +{"label":"Jacob Smith","version":23,"id":"9829","lastModified":"1300091490000","name":"Jacob Smith","type":"Person","_key":"6472"} +{"label":"Siri Svegler","version":19,"id":"9830","lastModified":"1300092226000","name":"Siri Svegler","type":"Person","_key":"6473"} +{"label":"Vincent Regan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4c3885707b9aa10eda0000be\/vincent-regan-profile.jpg","version":34,"id":"9831","lastModified":"1299492994000","name":"Vincent Regan","type":"Person","_key":"6474"} +{"label":"Tyler Mane","version":43,"id":"9832","lastModified":"1300090461000","name":"Tyler Mane","type":"Person","_key":"6475"} +{"label":"Peter O'Toole","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bb\/4c04d773017a3c7e920002bb\/peter-o-toole-profile.jpg","version":93,"id":"11390","lastModified":"1300101165000","name":"Peter O'Toole","type":"Person","_key":"6476"} +{"label":"Nosferatu","description":"Although the critics in 1922 didn\u2019t find the film to be anything special, a few years after it\u2019s release it was called innovative and a landmark in cinema history. German director Murnau\u2019s vampire film holds claim to one of the most, if not the most important German expressionist film and a foundation for horror films.","id":"653","runtime":82,"imdbId":"tt0013442","homepage":"http:\/\/www.nosferatumovie.com\/cast_crew.html","version":104,"lastModified":"1299912725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7b\/4bc90ab7017a3c57fe003b7b\/nosferatu-eine-symphonie-des-grauens-mid.jpg","studio":"Jofa Atelier","genre":"Fantasy","title":"Nosferatu","releaseDate":-1280620800000,"language":"en","type":"Movie","_key":"6477"} +{"label":"Max Schreck","version":16,"id":"9839","lastModified":"1300090568000","name":"Max Schreck","type":"Person","_key":"6478"} +{"label":"Gustav von Wangenheim","version":21,"id":"9840","lastModified":"1300091058000","name":"Gustav von Wangenheim","type":"Person","_key":"6479"} +{"label":"Greta Schr\u00f6der","version":15,"id":"9841","lastModified":"1300091393000","name":"Greta Schr\u00f6der","type":"Person","_key":"6480"} +{"label":"Alexander Granach","version":18,"id":"9842","lastModified":"1300091113000","name":"Alexander Granach","type":"Person","_key":"6481"} +{"label":"Georg H. Schnell","version":14,"id":"9843","lastModified":"1300092387000","name":"Georg H. Schnell","type":"Person","_key":"6482"} +{"label":"Ruth Landshoff","version":14,"id":"9844","lastModified":"1300091393000","name":"Ruth Landshoff","type":"Person","_key":"6483"} +{"label":"John Gottowt","version":16,"id":"9845","lastModified":"1300091825000","name":"John Gottowt","type":"Person","_key":"6484"} +{"label":"Gustav Botz","version":15,"id":"9846","lastModified":"1300091786000","name":"Gustav Botz","type":"Person","_key":"6485"} +{"label":"Max Nemetz","version":14,"id":"9847","lastModified":"1300091393000","name":"Max Nemetz","type":"Person","_key":"6486"} +{"label":"Wolfgang Heinz","version":14,"id":"9848","lastModified":"1300091393000","name":"Wolfgang Heinz","type":"Person","_key":"6487"} +{"label":"Albert Venohr","version":14,"id":"9849","lastModified":"1300091393000","name":"Albert Venohr","type":"Person","_key":"6488"} +{"label":"Guido Herzfeld","version":18,"id":"46735","lastModified":"1300092387000","name":"Guido Herzfeld","type":"Person","_key":"6489"} +{"label":"Hardy von Francois","version":17,"id":"46738","lastModified":"1300092387000","name":"Hardy von Francois","type":"Person","_key":"6490"} +{"label":"Karl Etlinger","version":22,"id":"46736","lastModified":"1300092958000","name":"Karl Etlinger","type":"Person","_key":"6491"} +{"label":"Heinrich Witte","version":18,"id":"46737","lastModified":"1300092857000","name":"Heinrich Witte","type":"Person","_key":"6492"} +{"label":"Eric van Viele","version":17,"id":"46739","lastModified":"1300092044000","name":"Eric van Viele","type":"Person","_key":"6493"} +{"label":"Fanny Schreck","version":17,"id":"46740","lastModified":"1300092387000","name":"Fanny Schreck","type":"Person","_key":"6494"} +{"label":"On the Waterfront","description":"On the Waterfront is a social criticism gangster film from director Elia Kazan, about an ex-boxer, who is part of the corruption of the trade unions for the men working on the waterfront in New York. A film about mob violence that won eight Academy Awards.","id":"654","runtime":108,"imdbId":"tt0047296","trailer":"http:\/\/www.youtube.com\/watch?v=PAUysPs8NjA","version":117,"lastModified":"1299912928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/619\/4ce471837b9aa168b3000619\/on-the-waterfront-mid.jpg","studio":"Columbia Pictures","genre":"Crime","title":"On the Waterfront","releaseDate":-486950400000,"language":"en","type":"Movie","_key":"6495"} +{"label":"Karl Malden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/615\/4be1c441017a3c35c1000615\/karl-malden-profile.jpg","version":65,"id":"9857","lastModified":"1300090463000","name":"Karl Malden","type":"Person","_key":"6496"} +{"label":"Pat Henning","version":13,"id":"9862","lastModified":"1300091204000","name":"Pat Henning","type":"Person","_key":"6497"} +{"label":"Leif Erickson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/149\/4bd5a691017a3c2e78000149\/leif-erickson-profile.jpg","version":28,"id":"9865","lastModified":"1300090865000","name":"Leif Erickson","type":"Person","_key":"6498"} +{"label":"James Westerfield","version":25,"id":"9866","lastModified":"1300091303000","name":"James Westerfield","type":"Person","_key":"6499"} +{"label":"Paris, Texas","description":"German director Wim Wenders won the Golden Palme at Cannes for his 1984 film Paris, Texas. The film reflects the landscape and people of the United States from the perspective of European cinema.","id":"655","runtime":147,"imdbId":"tt0087884","version":162,"lastModified":"1299912119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba2\/4bc90abc017a3c57fe003ba2\/paris-texas-mid.jpg","studio":"Road Movies Filmproduktion GmbH","genre":"Drama","title":"Paris, Texas","releaseDate":453772800000,"language":"en","tagline":"A place for dreams. A place for heartbreak. A place to pick up the pieces.","type":"Movie","_key":"6500"} +{"label":"Hunter Carson","version":18,"id":"9892","lastModified":"1300091441000","name":"Hunter Carson","type":"Person","_key":"6501"} +{"label":"Aurore Cl\u00e9ment","version":28,"id":"9893","lastModified":"1300091238000","name":"Aurore Cl\u00e9ment","type":"Person","_key":"6502"} +{"label":"Bernhard Wicki","version":27,"birthday":"-1583542800000","id":"9894","birthplace":"St. P\u00f6lten","lastModified":"1300091239000","name":"Bernhard Wicki","type":"Person","_key":"6503"} +{"label":"Saw Collection","description":"The extremely successful horror film series about a mysterious murderer who gives his victims macabre riddles they must solve to earn their freedom. After a surprise debut film success Saw would be made into two more sequels and a fourth in the works.","id":"656","version":183,"lastModified":"1300106857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2df\/4d0890f87b9aa101e40002df\/saw-collection-mid.jpg","title":"Saw Collection","language":"en","type":"Movie","_key":"6504"} +{"label":"From Russia with Love","description":"Bond is back and on the loose in exotic Istanbul looking for a super-secret coding machine. He's involved with a beautiful Russian spy and has the SPECTRE organization after him, including villainess Rosa Klebb (she of the killer shoe). Lots of exciting escapes but not an overreliance on the gadgetry of the later films. The second Bond feature, thought by many to be the best.","id":"657","runtime":110,"imdbId":"tt0057076","trailer":"http:\/\/www.youtube.com\/watch?v=x_USL1yvnaw","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=FROMRUSS","version":269,"lastModified":"1300123322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b69\/4d40aebb7b9aa15bb5002b69\/from-russia-with-love-mid.jpg","studio":"EON Productions","genre":"Action","title":"From Russia with Love","releaseDate":-196560000000,"language":"en","tagline":"The world's masters of murder pull out all the stops to destroy Agent 007!","type":"Movie","_key":"6505"} +{"label":"Daniela Bianchi","version":26,"id":"9896","lastModified":"1300123318000","name":"Daniela Bianchi","type":"Person","_key":"6506"} +{"label":"Lotte Lenya","version":26,"id":"9898","lastModified":"1300123318000","name":"Lotte Lenya","type":"Person","_key":"6507"} +{"label":"Francis De Wolff","version":48,"id":"9899","lastModified":"1300123319000","name":"Francis De Wolff","type":"Person","_key":"6508"} +{"label":"George Pastell","version":23,"id":"9900","lastModified":"1300091221000","name":"George Pastell","type":"Person","_key":"6509"} +{"label":"Nadja Regin","version":26,"id":"9901","lastModified":"1300123319000","name":"Nadja Regin","type":"Person","_key":"6510"} +{"label":"Aliza Gur","version":24,"id":"9902","lastModified":"1300123320000","name":"Aliza Gur","type":"Person","_key":"6511"} +{"label":"Desmond Llewelyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/076\/4bf85a9b017a3c4901000076\/desmond-llewelyn-profile.jpg","version":162,"id":"9906","lastModified":"1299490942000","name":"Desmond Llewelyn","type":"Person","_key":"6512"} +{"label":"Pedro Armend\u00e1riz","version":38,"id":"96973","lastModified":"1300123321000","name":"Pedro Armend\u00e1riz","type":"Person","_key":"6513"} +{"label":"Goldfinger","description":"Someone is planning a major robbery of Gold that could destroy the economy. James Bond is dispatched by the MI6 and the Bank of England to find the people responsible and stop them. This is the third film from the legendary James Bond series starring Sean Connery as the British super agent.","id":"658","runtime":112,"imdbId":"tt0058150","trailer":"http:\/\/www.youtube.com\/watch?v=94UpZMvUvEk","version":207,"lastModified":"1300123353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c09\/4bc90aca017a3c57fe003c09\/goldfinger-mid.jpg","studio":"EON Productions","genre":"Action","title":"Goldfinger","releaseDate":-166924800000,"language":"en","tagline":"Everything he touches turns into excitement!","type":"Movie","_key":"6514"} +{"label":"Honor Blackman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/119\/4bd70c9d017a3c21e9000119\/honor-blackman-profile.jpg","version":31,"id":"9907","lastModified":"1300122809000","name":"Honor Blackman","type":"Person","_key":"6515"} +{"label":"Gert Fr\u00f6be","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16c\/4c7672427b9aa16a0b00016c\/gert-frobe-profile.jpg","version":55,"birthday":"-1794013200000","id":"9908","lastModified":"1300122809000","name":"Gert Fr\u00f6be","type":"Person","_key":"6516"} +{"label":"Shirley Eaton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4c2233a47b9aa135fd0001ae\/shirley-eaton-profile.jpg","version":34,"id":"9909","lastModified":"1300122809000","name":"Shirley Eaton","type":"Person","_key":"6517"} +{"label":"Tania Mallet","version":23,"id":"9910","lastModified":"1300122809000","name":"Tania Mallet","type":"Person","_key":"6518"} +{"label":"Harold Sakata","version":26,"id":"9911","lastModified":"1300122809000","name":"Harold Sakata","type":"Person","_key":"6519"} +{"label":"Martin Benson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e3\/4d0a68db7b9aa162bf0004e3\/martin-benson-profile.jpg","version":38,"id":"9912","lastModified":"1300090735000","name":"Martin Benson","type":"Person","_key":"6520"} +{"label":"Cec Linder","version":28,"id":"9913","lastModified":"1300122809000","name":"Cec Linder","type":"Person","_key":"6521"} +{"label":"Austin Willis","version":29,"id":"9914","lastModified":"1300122809000","name":"Austin Willis","type":"Person","_key":"6522"} +{"label":"The Tin Drum","description":"Die Blechtrommel, meaning The Tin Drum, is a German film directed by Volker Schl\u00f6ndorff and adapted from the novel by the same name by G\u00fcnter Grass. A film is about the development of young boy named Oskar Matzarath. The film won the Golden Palme at Cannes in 1979 and the Oscar for best foreign picture in 1980.","id":"659","runtime":142,"imdbId":"tt0078875","version":111,"lastModified":"1299958079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4c401cdc7b9aa1428200008d\/die-blechtrommel-mid.jpg","genre":"Drama","title":"The Tin Drum","releaseDate":294537600000,"language":"en","type":"Movie","_key":"6523"} +{"label":"Volker Schl\u00f6ndorff","version":47,"id":"10249","lastModified":"1300090545000","name":"Volker Schl\u00f6ndorff","type":"Person","_key":"6524"} +{"label":"Mario Adorf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/610\/4d0b88f55e73d646a4000610\/mario-adorf-profile.jpg","version":70,"id":"10254","lastModified":"1300090415000","name":"Mario Adorf","type":"Person","_key":"6525"} +{"label":"Angela Winkler","version":25,"id":"10255","lastModified":"1300091002000","name":"Angela Winkler","type":"Person","_key":"6526"} +{"label":"David Bennent","version":17,"id":"10256","lastModified":"1300090486000","name":"David Bennent","type":"Person","_key":"6527"} +{"label":"Katharina Thalbach","version":36,"id":"10257","lastModified":"1300091226000","name":"Katharina Thalbach","type":"Person","_key":"6528"} +{"label":"Tina Engel","version":21,"id":"10258","lastModified":"1300090585000","name":"Tina Engel","type":"Person","_key":"6529"} +{"label":"Berta Drews","version":17,"id":"10259","lastModified":"1300091693000","name":"Berta Drews","type":"Person","_key":"6530"} +{"label":"Roland Teubner","version":15,"id":"10260","lastModified":"1300091735000","name":"Roland Teubner","type":"Person","_key":"6531"} +{"label":"Tadeusz Kunikowski","version":15,"id":"10261","lastModified":"1300091735000","name":"Tadeusz Kunikowski","type":"Person","_key":"6532"} +{"label":"Andr\u00e9a Ferr\u00e9ol","version":33,"id":"10262","lastModified":"1300091856000","name":"Andr\u00e9a Ferr\u00e9ol","type":"Person","_key":"6533"} +{"label":"Heinz Bennent","version":27,"id":"10263","lastModified":"1300091054000","name":"Heinz Bennent","type":"Person","_key":"6534"} +{"label":"Ilse Pag\u00e9","version":19,"id":"10264","lastModified":"1300091860000","name":"Ilse Pag\u00e9","type":"Person","_key":"6535"} +{"label":"Werner Rehm","version":17,"id":"10266","lastModified":"1300092189000","name":"Werner Rehm","type":"Person","_key":"6536"} +{"label":"K\u00e4te Jaenicke","version":21,"id":"10267","lastModified":"1300091862000","name":"K\u00e4te Jaenicke","type":"Person","_key":"6537"} +{"label":"Charles Aznavour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4cab5d3d7b9aa114f700000e\/charles-aznavour-profile.jpg","version":33,"id":"10268","lastModified":"1300091661000","name":"Charles Aznavour","type":"Person","_key":"6538"} +{"label":"Fritz Hakl","version":15,"id":"10269","lastModified":"1300091958000","name":"Fritz Hakl","type":"Person","_key":"6539"} +{"label":"Mariella Oliveri","version":15,"id":"10270","lastModified":"1300091958000","name":"Mariella Oliveri","type":"Person","_key":"6540"} +{"label":"Thunderball","description":"A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.","id":"660","runtime":130,"imdbId":"tt0059800","trailer":"http:\/\/www.youtube.com\/watch?v=ElyENM6i0xg","version":231,"lastModified":"1300123394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c32\/4bc90acf017a3c57fe003c32\/thunderball-mid.jpg","studio":"EON Productions","genre":"Action","title":"Thunderball","releaseDate":-128217600000,"language":"en","tagline":"Look up! Look down! Look out!","type":"Movie","_key":"6541"} +{"label":"Claudine Auger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/627\/4c5b11b97b9aa151f3000627\/claudine-auger-profile.jpg","version":32,"id":"9919","lastModified":"1300123390000","name":"Claudine Auger","type":"Person","_key":"6542"} +{"label":"Adolfo Celi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4cf2d4545e73d62382000027\/adolfo-celi-profile.jpg","version":48,"id":"9920","lastModified":"1300123390000","name":"Adolfo Celi","type":"Person","_key":"6543"} +{"label":"Luciana Paluzzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4bcc653b017a3c0f270000f5\/luciana-paluzzi-profile.jpg","version":38,"id":"9921","lastModified":"1300123390000","name":"Luciana Paluzzi","type":"Person","_key":"6544"} +{"label":"Rik Van Nutter","version":23,"id":"9922","lastModified":"1300090349000","name":"Rik Van Nutter","type":"Person","_key":"6545"} +{"label":"Guy Doleman","version":25,"id":"9923","lastModified":"1300090349000","name":"Guy Doleman","type":"Person","_key":"6546"} +{"label":"Molly Peters","version":24,"id":"9924","lastModified":"1300123390000","name":"Molly Peters","type":"Person","_key":"6547"} +{"label":"Martine Beswick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4cf2d3d55e73d62384000016\/martine-beswick-profile.jpg","version":35,"id":"9925","lastModified":"1300123390000","name":"Martine Beswick","type":"Person","_key":"6548"} +{"label":"Roland Culver","version":39,"birthday":"-2188947600000","id":"9926","birthplace":"London, England","lastModified":"1300123390000","name":"Roland Culver","type":"Person","_key":"6549"} +{"label":"Andr\u00e9 Maranne","version":27,"id":"47848","lastModified":"1300090851000","name":"Andr\u00e9 Maranne","type":"Person","_key":"6550"} +{"label":"The Marraige of Maria Braun","description":"The Marriage of Maria Braun is a collage of the times in Germany after the war, economic miracles, and a portrait of a woman who in her circumstances wants to emancipate and have a successful and happy career. The film is a masterpiece from German director Fassbinder.","id":"661","runtime":116,"imdbId":"tt0079095","version":80,"lastModified":"1299910693000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4c\/4cce44455e73d65020000b4c\/die-ehe-der-maria-braun-mid.jpg","studio":"WDR","genre":"Drama","title":"The Marraige of Maria Braun","releaseDate":288316800000,"language":"en","type":"Movie","_key":"6551"} +{"label":"Klaus L\u00f6witsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b32\/4cce39f75e73d65021000b32\/klaus-lowitsch-profile.jpg","version":28,"id":"9927","lastModified":"1300091048000","name":"Klaus L\u00f6witsch","type":"Person","_key":"6552"} +{"label":"Ivan Desny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b44\/4cce45fb5e73d65021000b44\/ivan-desny-profile.jpg","version":24,"id":"9928","lastModified":"1300090736000","name":"Ivan Desny","type":"Person","_key":"6553"} +{"label":"George Eagles","version":16,"id":"9929","lastModified":"1300091467000","name":"George Eagles","type":"Person","_key":"6554"} +{"label":"Gisela Uhlen","version":18,"id":"9930","lastModified":"1300091341000","name":"Gisela Uhlen","type":"Person","_key":"6555"} +{"label":"Elisabeth Trissenaar","version":16,"id":"9931","lastModified":"1300091824000","name":"Elisabeth Trissenaar","type":"Person","_key":"6556"} +{"label":"G\u00fcnter Lamprecht","version":18,"id":"9932","lastModified":"1300091628000","name":"G\u00fcnter Lamprecht","type":"Person","_key":"6557"} +{"label":"La Jet\u00e9e","description":"The Pier \/ La Jetee is a masterpiece from French director Chris Marker from 1962. A post apocalyptic science fiction short film in the form of a photo collage. The film inspired the film \u201912 Monkeys.\u2019","id":"662","runtime":28,"imdbId":"tt0056119","version":64,"lastModified":"1299803570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c46\/4bc90ad0017a3c57fe003c46\/la-jetee-mid.jpg","studio":"Argos","genre":"Science Fiction","title":"La Jet\u00e9e","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"6558"} +{"label":"Chris Marker","version":22,"id":"9956","lastModified":"1300091249000","name":"Chris Marker","type":"Person","_key":"6559"} +{"label":"Jean N\u00e9groni","version":15,"id":"9960","lastModified":"1300091249000","name":"Jean N\u00e9groni","type":"Person","_key":"6560"} +{"label":"H\u00e9l\u00e8ne Chatelain","version":14,"id":"9961","lastModified":"1300091696000","name":"H\u00e9l\u00e8ne Chatelain","type":"Person","_key":"6561"} +{"label":"Davos Hanich","version":15,"id":"9962","lastModified":"1300091870000","name":"Davos Hanich","type":"Person","_key":"6562"} +{"label":"Jacques Ledoux","version":14,"id":"9963","lastModified":"1300092528000","name":"Jacques Ledoux","type":"Person","_key":"6563"} +{"label":"Saw IV","description":"Picking up where its grisly predecessor left off, this Saw finds Jeff Reinhart searching for his missing daughter, but a videotape from the dead serial killer Jigsaw is Jeff's only lead in his frantic hunt. The film switches back and forth in time throughout previous Saw films and ties up some lingering -- and bloody -- loose ends.","id":"663","runtime":92,"imdbId":"tt0890870","trailer":"http:\/\/www.youtube.com\/watch?v=48QUFWQIrHo","homepage":"http:\/\/movies.break.com\/saw4\/","version":235,"lastModified":"1300070143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27f\/4c42d6987b9aa1459300027f\/saw-iv-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"Saw IV","releaseDate":1193270400000,"language":"en","tagline":"You think it is over...but the games have just begun.","type":"Movie","_key":"6564"} +{"label":"Scott Patterson","version":27,"id":"50020","lastModified":"1300090997000","name":"Scott Patterson","type":"Person","_key":"6565"} +{"label":"Betsy Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b13\/4c6870bd5e73d63c86000b13\/betsy-russell-profile.jpg","version":54,"id":"22434","lastModified":"1300090326000","name":"Betsy Russell","type":"Person","_key":"6566"} +{"label":"Costas Mandylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae0\/4d2614f87b9aa134cb000ae0\/costas-mandylor-profile.jpg","version":63,"id":"36055","lastModified":"1300090347000","name":"Costas Mandylor","type":"Person","_key":"6567"} +{"label":"Justin Louis","version":42,"id":"51036","lastModified":"1300090518000","name":"Justin Louis","type":"Person","_key":"6568"} +{"label":"Athena Karkanis","version":27,"id":"51037","lastModified":"1300091573000","name":"Athena Karkanis","type":"Person","_key":"6569"} +{"label":"Simon Reynolds","version":26,"id":"51038","lastModified":"1300090932000","name":"Simon Reynolds","type":"Person","_key":"6570"} +{"label":"Mike Realba","version":32,"id":"28869","lastModified":"1300090929000","name":"Mike Realba","type":"Person","_key":"6571"} +{"label":"Marty Adams","version":24,"id":"51039","lastModified":"1300091696000","name":"Marty Adams","type":"Person","_key":"6572"} +{"label":"Sarain Boylan","version":28,"id":"51040","lastModified":"1300090557000","name":"Sarain Boylan","type":"Person","_key":"6573"} +{"label":"Billy Otis","version":24,"id":"51041","lastModified":"1300091696000","name":"Billy Otis","type":"Person","_key":"6574"} +{"label":"Niamh Wilson","version":24,"id":"51042","lastModified":"1300091696000","name":"Niamh Wilson","type":"Person","_key":"6575"} +{"label":"Twister","description":"TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.","id":"664","runtime":113,"imdbId":"tt0117998","trailer":"http:\/\/www.youtube.com\/watch?v=sMOc_wfSHGE","version":175,"lastModified":"1300069958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c9\/4c9847e25e73d6556c0000c9\/twister-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Twister","releaseDate":832204800000,"language":"en","tagline":"The Dark Side of Nature.","type":"Movie","_key":"6576"} +{"label":"Jan de Bont","version":98,"id":"2209","lastModified":"1299833701000","name":"Jan de Bont","type":"Person","_key":"6577"} +{"label":"Helen Hunt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09b\/4bf0788d017a3c531000009b\/helen-hunt-profile.jpg","version":78,"id":"9994","lastModified":"1300090332000","name":"Helen Hunt","type":"Person","_key":"6578"} +{"label":"Jami Gertz","version":36,"id":"9995","lastModified":"1300090350000","name":"Jami Gertz","type":"Person","_key":"6579"} +{"label":"Sean Whalen","version":36,"id":"9996","lastModified":"1300095601000","name":"Sean Whalen","type":"Person","_key":"6580"} +{"label":"Scott Thomson","version":23,"id":"9997","lastModified":"1300091934000","name":"Scott Thomson","type":"Person","_key":"6581"} +{"label":"Joey Slotnick","version":26,"id":"9998","lastModified":"1300091278000","name":"Joey Slotnick","type":"Person","_key":"6582"} +{"label":"Wendle Josepher","version":16,"id":"9999","lastModified":"1300092202000","name":"Wendle Josepher","type":"Person","_key":"6583"} +{"label":"Gregory Sporleder","version":32,"id":"10000","lastModified":"1300090308000","name":"Gregory Sporleder","type":"Person","_key":"6584"} +{"label":"Ben-Hur","description":"Ben-Hur is a 1959 epic film directed by William Wyler, the third film version of Lew Wallace's 1880 novel Ben-Hur: A Tale of the Christ. It premiered at Loew's State Theatre in New York City on November 18, 1959. The film went on to win a record of eleven Academy Awards, including Best Picture, a feat equaled only by Titanic in 1998 and The Lord of the Rings: The Return of the King in 2004. It was also the last film to win the Oscar for both Best Actor and Best Supporting Actor, until nearly 44 ","id":"665","runtime":212,"imdbId":"tt0052618","trailer":"http:\/\/www.youtube.com\/watch?v=edlIdpopk1w","version":139,"lastModified":"1299911784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c99\/4bc90ade017a3c57fe003c99\/ben-hur-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Adventure","title":"Ben-Hur","releaseDate":-319420800000,"language":"en","type":"Movie","_key":"6585"} +{"label":"William Wyler","version":71,"id":"10001","lastModified":"1300090586000","name":"William Wyler","type":"Person","_key":"6586"} +{"label":"Charlton Heston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4bd5cda9017a3c6589000041\/charlton-heston-profile.jpg","version":112,"id":"10017","lastModified":"1299692681000","name":"Charlton Heston","type":"Person","_key":"6587"} +{"label":"Jack Hawkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/151\/4c1799607b9aa108d8000151\/jack-hawkins-profile.jpg","version":54,"id":"10018","lastModified":"1300090456000","name":"Jack Hawkins","type":"Person","_key":"6588"} +{"label":"Haya Harareet","version":19,"id":"10019","lastModified":"1300091249000","name":"Haya Harareet","type":"Person","_key":"6589"} +{"label":"Stephen Boyd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4c1799b07b9aa108d8000155\/stephen-boyd-profile.jpg","version":35,"id":"10020","lastModified":"1300091088000","name":"Stephen Boyd","type":"Person","_key":"6590"} +{"label":"Hugh Griffith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9be\/4cdb11cb5e73d676ce0009be\/hugh-griffith-profile.jpg","version":39,"id":"10021","lastModified":"1300091018000","name":"Hugh Griffith","type":"Person","_key":"6591"} +{"label":"Martha Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ec4\/4be88b4d017a3c35c1000ec4\/martha-scott-profile.jpg","version":28,"id":"10022","lastModified":"1300091183000","name":"Martha Scott","type":"Person","_key":"6592"} +{"label":"Cathy O'Donnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4bd5a353017a3c2e700000f5\/cathy-o-donnell-profile.jpg","version":30,"id":"10023","lastModified":"1300090281000","name":"Cathy O'Donnell","type":"Person","_key":"6593"} +{"label":"Frank Thring","version":19,"id":"10025","lastModified":"1300091786000","name":"Frank Thring","type":"Person","_key":"6594"} +{"label":"Sam Jaffe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f0\/4c5af4d17b9aa151f70005f0\/sam-jaffe-profile.jpg","version":32,"id":"10024","lastModified":"1300090492000","name":"Sam Jaffe","type":"Person","_key":"6595"} +{"label":"Ady Berber","version":18,"id":"10026","lastModified":"1300091238000","name":"Ady Berber","type":"Person","_key":"6596"} +{"label":"Finlay Currie","version":32,"id":"10027","lastModified":"1300091102000","name":"Finlay Currie","type":"Person","_key":"6597"} +{"label":"George Relph","version":15,"id":"10028","lastModified":"1300091573000","name":"George Relph","type":"Person","_key":"6598"} +{"label":"Central do Brasil","description":"Central do Brasil is a Brazilian film from Walter Salles about the relationship between an old and bitter woman and a young orphan boy.","id":"666","runtime":113,"imdbId":"tt0140888","version":145,"lastModified":"1299912174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca3\/4bc90ae1017a3c57fe003ca3\/central-do-brasil-mid.jpg","studio":"MACT Productions","genre":"Drama","title":"Central do Brasil","releaseDate":891561600000,"language":"en","type":"Movie","_key":"6599"} +{"label":"Walter Salles","version":47,"id":"8574","lastModified":"1300090605000","name":"Walter Salles","type":"Person","_key":"6600"} +{"label":"Fernanda Montenegro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd5\/4d47890a7b9aa15bb500bfd5\/fernanda-montenegro-profile.jpg","version":23,"id":"10055","lastModified":"1300091928000","name":"Fernanda Montenegro","type":"Person","_key":"6601"} +{"label":"Mar\u00edlia P\u00eara","version":14,"id":"10057","lastModified":"1300091629000","name":"Mar\u00edlia P\u00eara","type":"Person","_key":"6602"} +{"label":"Vin\u00edcius de Oliveira","version":14,"id":"10059","lastModified":"1300091392000","name":"Vin\u00edcius de Oliveira","type":"Person","_key":"6603"} +{"label":"Soia Lira","version":13,"id":"10060","lastModified":"1300091113000","name":"Soia Lira","type":"Person","_key":"6604"} +{"label":"Othon Bastos","version":19,"id":"10061","lastModified":"1300091573000","name":"Othon Bastos","type":"Person","_key":"6605"} +{"label":"Ot\u00e1vio Augusto","version":15,"id":"10062","lastModified":"1300091573000","name":"Ot\u00e1vio Augusto","type":"Person","_key":"6606"} +{"label":"Stela Freitas","version":13,"id":"10063","lastModified":"1300091573000","name":"Stela Freitas","type":"Person","_key":"6607"} +{"label":"You Only Live Twice","description":"A mysterious space craft kidnaps a Russian and American space capsule and brings the world on the verge of another World War. James Bond investigates the case in Japan and meets with his archenemy Blofeld. The fifth film from the legendary James Bond series starring Sean Connery as the British super agent.","id":"667","runtime":117,"imdbId":"tt0062512","trailer":"http:\/\/www.youtube.com\/watch?v=DxteuPr28Xw","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=YOUONLYL","version":176,"lastModified":"1300123427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c54\/4d4473257b9aa103c8000c54\/you-only-live-twice-mid.jpg","studio":"EON Productions","genre":"Action","title":"You Only Live Twice","releaseDate":-80697600000,"language":"en","tagline":"You Only Live Twice...and \"TWICE\" is the only way to live!","type":"Movie","_key":"6608"} +{"label":"Akiko Wakabayashi","version":27,"id":"10068","lastModified":"1300123426000","name":"Akiko Wakabayashi","type":"Person","_key":"6609"} +{"label":"Karin Dor","version":51,"id":"10073","lastModified":"1300123426000","name":"Karin Dor","type":"Person","_key":"6610"} +{"label":"Mie Hama","version":27,"id":"10070","lastModified":"1300123426000","name":"Mie Hama","type":"Person","_key":"6611"} +{"label":"Tetsur\u00f4 Tanba","version":46,"id":"10071","lastModified":"1300123426000","name":"Tetsur\u00f4 Tanba","type":"Person","_key":"6612"} +{"label":"Teru Shimada","version":27,"id":"10072","lastModified":"1300123426000","name":"Teru Shimada","type":"Person","_key":"6613"} +{"label":"Charles Gray","version":43,"id":"10074","lastModified":"1300123490000","name":"Charles Gray","type":"Person","_key":"6614"} +{"label":"Tsai Chin","version":38,"id":"10075","lastModified":"1300123426000","name":"Tsai Chin","type":"Person","_key":"6615"} +{"label":"Lewis Gilbert","version":68,"id":"10076","lastModified":"1300124049000","name":"Lewis Gilbert","type":"Person","_key":"6616"} +{"label":"On Her Majesty's Secret Service","description":"Bond tracks archnemesis Ernst Blofeld to a mountaintop retreat where he's training an army of beautiful but lethal women. Along the way, Bond falls for Italian contessa Tracy Draco -- and marries her in order to get closer to Blofeld. Meanwhile, he locates Blofeld in the Alps and embarks on a classic ski chase.","id":"668","runtime":140,"imdbId":"tt0064757","trailer":"http:\/\/www.youtube.com\/watch?v=yf_I84W-_cw","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=ONHERMAJ","version":170,"lastModified":"1300123462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b47\/4d4465147b9aa103c8000b47\/on-her-majesty-s-secret-service-mid.jpg","studio":"EON Productions","genre":"Action","title":"On Her Majesty's Secret Service","releaseDate":-1209600000,"language":"en","tagline":"Far up! Far out! Far more! James Bond 007 is back!","type":"Movie","_key":"6617"} +{"label":"George Lazenby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24e\/4c77b1e47b9aa16a0900024e\/george-lazenby-profile.jpg","biography":"George Lazenby was born on September 5th, 1939, in Australia. He moved to London, England in 1964, after serving in the Australian Army. Before becoming an actor, he worked as an auto mechanic, used car salesman, prestige car salesman, and as a male model, in London, England. In 1968, Lazenby was cast as \"James Bond\", despite his only previous acting experience being in commercials, and his only film appearance being a bit-part in a 1965 Italian-made Bond spoof. Lazenby won the role based on a s","version":32,"birthday":"-956970000000","id":"10167","birthplace":"Queanbeyan","lastModified":"1300090513000","name":"George Lazenby","type":"Person","_key":"6618"} +{"label":"Diana Rigg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/530\/4bfa9fac017a3c7031000530\/diana-rigg-profile.jpg","biography":"<P>She is more properly known as Dame Diana Rigg, the female equivalent of the title \"Sir\" when knighted. In June 1994, she was made a Dame Commander of the Order of the British Empire (DBE) by Queen Elizabeth II for her long contributions to theater and film.<\/P>\r\n<P>Earned Tony nominations as Best Actress (Dramatic) for \"Abelard and Heloise\" (1972) and for \"The Misanthrope\" (1975). She won the Best Actress (Play) Tony Award in 1994 for her performance in the title role of \"Medea.\" In recent ye","version":41,"birthday":"-992566800000","id":"10168","birthplace":"Doncaster, Yorkshire, England, UK","lastModified":"1300123460000","name":"Diana Rigg","type":"Person","_key":"6619"} +{"label":"Telly Savalas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af3\/4c0cf365017a3c7e89000af3\/telly-savalas-profile.jpg","version":61,"id":"10169","lastModified":"1300123460000","name":"Telly Savalas","type":"Person","_key":"6620"} +{"label":"Ilse Steppat","version":22,"id":"10170","lastModified":"1300123460000","name":"Ilse Steppat","type":"Person","_key":"6621"} +{"label":"Angela Scoular","version":22,"id":"10171","lastModified":"1300123460000","name":"Angela Scoular","type":"Person","_key":"6622"} +{"label":"George Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/315\/4c475e4b7b9aa15dde000315\/george-baker-profile.jpg","version":41,"id":"10173","lastModified":"1300123958000","name":"George Baker","type":"Person","_key":"6623"} +{"label":"Bernard Horsfall","version":22,"id":"10174","lastModified":"1300123461000","name":"Bernard Horsfall","type":"Person","_key":"6624"} +{"label":"Yuri Borionko","version":22,"id":"10175","lastModified":"1300123461000","name":"Yuri Borionko","type":"Person","_key":"6625"} +{"label":"Catherine Schell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4c24ee607b9aa1446a00010a\/catherine-schell-profile.jpg","version":31,"id":"18915","lastModified":"1300123462000","name":"Catherine Schell","type":"Person","_key":"6626"} +{"label":"Peter R. Hunt","version":64,"id":"9868","lastModified":"1300123461000","name":"Peter R. Hunt","type":"Person","_key":"6627"} +{"label":"Nanook of the North","description":"Nanook Of The North is Robert J. Flaherty\u2019s beautiful film about an Inuit man named Nanook and his family. Filmed during one year of their life in the icy desolation of Northern Canada. The film was an enormous success and is the founder of the documentary film genre. ","id":"669","runtime":48,"imdbId":"tt0013427","version":58,"lastModified":"1299531810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36d\/4bf24812017a3c321200036d\/nanook-of-the-north-mid.jpg","studio":"R\u00e9villon Fr\u00e8res","genre":"Documentary","title":"Nanook of the North","releaseDate":-1500854400000,"language":"en","type":"Movie","_key":"6628"} +{"label":"Robert J. Flaherty","version":30,"id":"10092","lastModified":"1300091658000","name":"Robert J. Flaherty","type":"Person","_key":"6629"} +{"label":"Allakariallak","version":16,"id":"10094","lastModified":"1300091910000","name":"Allakariallak","type":"Person","_key":"6630"} +{"label":"Nyla","version":16,"id":"10095","lastModified":"1300092189000","name":"Nyla","type":"Person","_key":"6631"} +{"label":"Cunayou","version":16,"id":"10096","lastModified":"1300091925000","name":"Cunayou","type":"Person","_key":"6632"} +{"label":"Allee","version":16,"id":"10097","lastModified":"1300092231000","name":"Allee","type":"Person","_key":"6633"} +{"label":"Allegoo","version":16,"id":"10098","lastModified":"1300091911000","name":"Allegoo","type":"Person","_key":"6634"} +{"label":"Oldboy","description":"Oldboy is the revenge drama from Director Park Chan-wook. Based on a Manga comic it depicts the suffering path of a man who must deal with the never ending torment of having unknowingly made someone his enemy.","id":"670","runtime":120,"imdbId":"tt0364569","version":184,"lastModified":"1300070443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1c\/4bc90af6017a3c57fe003d1c\/oldboy-mid.jpg","studio":"Egg Films","genre":"Thriller","title":"Oldboy","releaseDate":1069372800000,"language":"en","tagline":"15 years of imprisonment... 5 days of vengeance.","type":"Movie","_key":"6635"} +{"label":"Chan-wook Park","version":63,"id":"10099","lastModified":"1300090390000","name":"Chan-wook Park","type":"Person","_key":"6636"} +{"label":"Min-sik Choi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4c4fa8287b9aa136cf00003c\/min-sik-choi-profile.jpg","version":28,"id":"64880","lastModified":"1300090394000","name":"Min-sik Choi","type":"Person","_key":"6637"} +{"label":"Ji-tae Yu","version":16,"id":"77178","lastModified":"1300090462000","name":"Ji-tae Yu","type":"Person","_key":"6638"} +{"label":"Dae-han Ji","version":16,"id":"77180","lastModified":"1300090462000","name":"Dae-han Ji","type":"Person","_key":"6639"} +{"label":"Byeong-ok Kim","version":16,"id":"77182","lastModified":"1300090499000","name":"Byeong-ok Kim","type":"Person","_key":"6640"} +{"label":"Tae-kyung Oh","version":18,"id":"77183","lastModified":"1300090501000","name":"Tae-kyung Oh","type":"Person","_key":"6641"} +{"label":"Il-han Oo","version":16,"id":"77186","lastModified":"1300090425000","name":"Il-han Oo","type":"Person","_key":"6642"} +{"label":"Jin-seo Yun","version":16,"id":"77187","lastModified":"1300090978000","name":"Jin-seo Yun","type":"Person","_key":"6643"} +{"label":"Dal-su Oh","version":16,"id":"77188","lastModified":"1300090530000","name":"Dal-su Oh","type":"Person","_key":"6644"} +{"label":"Hye-jeong Kang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fd\/4d253f2b5e73d626bc0003fd\/hye-jeong-kang-profile.jpg","version":40,"id":"117374","lastModified":"1300092477000","name":"Hye-jeong Kang","type":"Person","_key":"6645"} +{"label":"Harry Potter and the Sorcerer's Stone","description":"Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.","id":"671","runtime":152,"imdbId":"tt0241527","trailer":"http:\/\/www.youtube.com\/watch?v=8nSdYGuQ6wk","version":385,"lastModified":"1300118183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/346\/4d40f4d85e73d6571c000346\/harry-potter-and-the-sorcerer-s-stone-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Harry Potter and the Sorcerer's Stone","releaseDate":1004832000000,"language":"en","tagline":"Let The Magic Begin.","type":"Movie","_key":"6646"} +{"label":"Chris Columbus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49d\/4bf2d542017a3c321700049d\/chris-columbus-profile.jpg","version":167,"id":"10965","lastModified":"1300090297000","name":"Chris Columbus","type":"Person","_key":"6647"} +{"label":"Daniel Radcliffe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4bca0130017a3c0e9100002e\/daniel-radcliffe-profile.jpg","biography":"Daniel Jacob Radcliffe is an English actor, best known for playing Harry Potter in the feature film series based on the popular book series. Radcliffe has also made appearances in stage productions and a number of TV shows and films, including the ITV film My Boy Jack and the stage show Equus, for which he was nominated for a Drama Desk Award.\n\nDaniel Radcliffe was born in Queen Charlotte's Hospital, Hammersmith, West London, England, the only child of Alan George Radcliffe, a literary agent, an","version":153,"birthday":"617148000000","id":"10980","birthplace":"Hammersmith, London, UK","lastModified":"1300090229000","name":"Daniel Radcliffe","type":"Person","_key":"6648"} +{"label":"Rupert Grint","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4bdc9325017a3c20c700004e\/rupert-grint-profile.jpg","biography":"Rupert Alexander Lloyd Grint is an English actor best known for portraying Ron Weasley in the Harry Potter films.\n\nGrint was born in Harlow, Essex and grew up in Hertfordshire. His mother, Joanne Grint, is a housewife, and his father, Nigel Grint, is a memorabilia dealer. He has one brother, James (born in 1990), and three sisters: Georgina (born in 1993), Samantha (born in 1996) and Charlotte (born in 1998). Before being cast in Harry Potter, he had only appeared in plays for school and his loc","version":146,"birthday":"588376800000","id":"10989","birthplace":"Watton-at-Stone, Hertfordshire, United Kingdom","lastModified":"1300090249000","name":"Rupert Grint","type":"Person","_key":"6649"} +{"label":"Emma Watson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/446\/4cf6a6585e73d6299b001446\/emma-watson-profile.jpg","biography":"Emma Charlotte Duerre Watson is a British actress and model who rose to prominence playing Hermione Granger, one of three starring roles in the Harry Potter film series. Watson was cast as Hermione at the age of nine, having previously acted only in school plays. She made her modelling debut for Burberry's Autumn\/Winter campaign in 2009.\n\nIn 2007, Watson announced her involvement in two non-Harry Potter productions: the television adaptation of the novel Ballet Shoes and an animated film, The Ta","version":160,"birthday":"640130400000","id":"10990","birthplace":"Paris, France","lastModified":"1300090210000","name":"Emma Watson","type":"Person","_key":"6650"} +{"label":"Maggie Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/069\/4bdc943b017a3c20c2000069\/maggie-smith-profile.jpg","version":195,"birthday":"-1104886800000","id":"10978","birthplace":"Ilford Borough, Essex, United Kingdom","lastModified":"1300090317000","name":"Maggie Smith","type":"Person","_key":"6651"} +{"label":"Saunders Triplets","version":38,"id":"10979","lastModified":"1300090458000","name":"Saunders Triplets","type":"Person","_key":"6652"} +{"label":"Fiona Shaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf4\/4be6fc01017a3c35b5000cf4\/fiona-shaw-profile.jpg","biography":"Fiona Mary Shaw is a leading Irish actress and theatre director. Although to international audiences she is probably most familiar for her minor role as Petunia Dursley in the Harry Potter films, she is regarded as one of the finest classical actresses of her generation.","version":98,"birthday":"-362278800000","id":"10981","birthplace":"County Cork, Ireland","lastModified":"1300090373000","name":"Fiona Shaw","type":"Person","_key":"6653"} +{"label":"Harry Melling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4bfa9742017a3c702a000402\/harry-melling-profile.jpg","version":69,"birthday":"605746800000","id":"10982","birthplace":"London, England, UK","lastModified":"1300090358000","name":"Harry Melling","type":"Person","_key":"6654"} +{"label":"Richard Griffiths","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cdf\/4be6f918017a3c35b5000cdf\/richard-griffiths-profile.jpg","biography":"Richard Griffiths is an English actor of stage, film and television. He has received the Laurence Olivier Award for Best Actor, the Drama Desk Award for Outstanding Actor in a Play, the Outer Critics Circle Award for Best Featured Actor in a Play, and the Tony Award for Best Performance by a Leading Actor in a Play, all for his role in the play The History Boys.\n\nHe is also known for his portrayal of Vernon Dursley in the Harry Potter films, Uncle Monty in Withnail and I and Henry Crabbe in Pie ","version":132,"birthday":"-707623200000","id":"10983","birthplace":"Thornaby-on-Tees, Cleveland, UK","lastModified":"1300090315000","name":"Richard Griffiths","type":"Person","_key":"6655"} +{"label":"Derek Deadman","version":38,"id":"10984","lastModified":"1300090487000","name":"Derek Deadman","type":"Person","_key":"6656"} +{"label":"Ian Hart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce0\/4cf146d95e73d61927000ce0\/ian-hart-profile.jpg","version":63,"id":"10985","lastModified":"1300090444000","name":"Ian Hart","type":"Person","_key":"6657"} +{"label":"Ben Borowiecki","version":38,"id":"10986","lastModified":"1300090458000","name":"Ben Borowiecki","type":"Person","_key":"6658"} +{"label":"Geraldine Somerville","version":81,"id":"10988","lastModified":"1300090277000","name":"Geraldine Somerville","type":"Person","_key":"6659"} +{"label":"Verne Troyer","version":55,"id":"10987","lastModified":"1300090352000","name":"Verne Troyer","type":"Person","_key":"6660"} +{"label":"Bonnie Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4bdc95b2017a3c20cb00005a\/bonnie-wright-profile.jpg","version":75,"birthday":"666745200000","id":"10991","birthplace":"London, United Kingdom","lastModified":"1300090379000","name":"Bonnie Wright","type":"Person","_key":"6661"} +{"label":"Chris Rankin","version":38,"id":"10992","lastModified":"1300090517000","name":"Chris Rankin","type":"Person","_key":"6662"} +{"label":"Tom Felton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4bdc966b017a3c20c200007d\/tom-felton-profile.jpg","version":149,"birthday":"559260000000","id":"10993","birthplace":"Kensington, London, United Kingdom","lastModified":"1299859149000","name":"Tom Felton","type":"Person","_key":"6663"} +{"label":"Matthew Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ca9\/4be6ccf6017a3c35b5000ca9\/matthew-lewis-profile.jpg","biography":"Matthew David Lewis III is an English actor, best known for playing Neville Longbottom in the Harry Potter films.\n\nLewis was born in Horsforth,Leeds,West Yorkshire, England, the son of Adrian and Lynda Lewis. He has two older brothers and a foster sister.\n\nLewis has been acting since he was five years old. He started off with minor parts in television programmes, debuting in Some Kind of Life, and then went on to try out for the part of Neville Longbottom. He has portrayed Neville Longbottom in ","version":129,"birthday":"614901600000","id":"96841","birthplace":"Leeds, West Yorkshire, UK","lastModified":"1300090413000","name":"Matthew Lewis","type":"Person","_key":"6664"} +{"label":"Harry Potter and the Chamber Of Secrets","description":"Everyone's favorite novice wizard, Harry Potter, continues his high-flying adventures at Hogwarts in this sequel to the smash hit Harry Potter and the Sorcerer's Stone, based on the best-selling books by J.K. Rowling. This time around, Harry ignores warnings not to return to school -- that is, if he values his life -- to investigate with Ron and Hermione a mysterious series of attacks.","id":"672","runtime":161,"imdbId":"tt0295297","trailer":"http:\/\/www.youtube.com\/watch?v=0sur6pwJ15E","version":346,"lastModified":"1300118119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc4\/4bc90b14017a3c57fe003dc4\/harry-potter-and-the-chamber-of-secrets-mid.jpg","studio":"1492 Pictures","genre":"Action","title":"Harry Potter and the Chamber Of Secrets","releaseDate":1036281600000,"language":"en","tagline":"Hogwarts is back in session.","type":"Movie","_key":"6665"} +{"label":"Martin Bayfield","version":39,"id":"11177","lastModified":"1300090382000","name":"Martin Bayfield","type":"Person","_key":"6666"} +{"label":"Heather Bleasdale","version":27,"id":"11178","lastModified":"1300090446000","name":"Heather Bleasdale","type":"Person","_key":"6667"} +{"label":"Sean Biggerstaff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a8f\/4d40ad337b9aa15bab002a8f\/sean-biggerstaff-profile.jpg","biography":"S\u200b<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: rgb(51, 51, 51); line-height: 17px; \">ean Biggerstaff was born on March 15, 1983 to a fireman and a community education worker. He joined a local drama group and he acted as \"Augustus Gloop\" in \"Charlie and the Chocolate Factory\". After that, for six years, he joined the Scottish Youth Theatre. It was there he got his big break when <a href=\"ht","version":33,"birthday":"416530800000","id":"11179","birthplace":"Glasgow, Scotland","lastModified":"1300090389000","name":"Sean Biggerstaff","type":"Person","_key":"6668"} +{"label":"David Bradley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c4f\/4be6d079017a3c35c1000c4f\/david-bradley-profile.jpg","biography":"David Bradley is an English character actor. He has recently become known for playing the caretaker of Hogwarts, Argus Filch, in the Harry Potter series of films.\n\nBradley was born in York, England. He became an actor in 1971, first appearing on television that year in the successful comedy Nearest and Dearest playing a police officer. He was awarded a Olivier Award in 1991 for his supporting actor role in King Lear at the Royal National Theatre.\n\nBradley appeared in Nicholas Nickleby (2002) and","version":41,"birthday":"-874461600000","id":"11180","birthplace":"York, UK","lastModified":"1300091177000","name":"David Bradley","type":"Person","_key":"6669"} +{"label":"Kenneth Branagh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4cb2bf377b9aa12cf700034e\/kenneth-branagh-profile.jpg","version":164,"id":"11181","lastModified":"1300090318000","name":"Kenneth Branagh","type":"Person","_key":"6670"} +{"label":"Veronica Clifford","version":26,"id":"11182","lastModified":"1300090487000","name":"Veronica Clifford","type":"Person","_key":"6671"} +{"label":"Eleanor Columbus","version":25,"id":"11183","lastModified":"1300090487000","name":"Eleanor Columbus","type":"Person","_key":"6672"} +{"label":"Warwick Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e7f\/4cf16e9c5e73d61924000e7f\/warwick-davis-profile.jpg","version":85,"id":"11184","lastModified":"1300090262000","name":"Warwick Davis","type":"Person","_key":"6673"} +{"label":"Emily Dale","version":25,"id":"11185","lastModified":"1300090457000","name":"Emily Dale","type":"Person","_key":"6674"} +{"label":"Rochelle Douglas","version":25,"id":"11186","lastModified":"1300090458000","name":"Rochelle Douglas","type":"Person","_key":"6675"} +{"label":"Harry Potter and the Prisoner of Azkaban","description":"Harry, Ron and Hermione return to Hogwarts for a third adventure-and-magic-filled year in this follow-up to the first two Potter blockbusters. Harry comes face-to-face with danger yet again, this time in the form of escaped convict Sirius Black. In a bid for help, Harry turns to sympathetic Professor Lupin -- but will it be enough?","id":"673","runtime":141,"imdbId":"tt0304141","trailer":"http:\/\/www.youtube.com\/watch?v=p4mpOY0KWsM","version":320,"lastModified":"1300089930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e04\/4bc90b22017a3c57fe003e04\/harry-potter-and-the-prisoner-of-azkaban-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Harry Potter and the Prisoner of Azkaban","releaseDate":1085961600000,"language":"en","tagline":"Something wicked this way comes.","type":"Movie","_key":"6676"} +{"label":"David Thewlis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eba\/4cf16f5a5e73d61926000eba\/david-thewlis-profile.jpg","version":97,"id":"11207","lastModified":"1300090278000","name":"David Thewlis","type":"Person","_key":"6677"} +{"label":"Josh Herdman","version":41,"id":"11212","lastModified":"1300090349000","name":"Josh Herdman","type":"Person","_key":"6678"} +{"label":"Pam Ferris","version":41,"id":"11213","lastModified":"1300090467000","name":"Pam Ferris","type":"Person","_key":"6679"} +{"label":"James Phelps","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e78\/4cf179445e73d61929000e78\/james-phelps-profile.jpg","version":49,"id":"96851","lastModified":"1300090563000","name":"James Phelps","type":"Person","_key":"6680"} +{"label":"Alfonso Cuar\u00f3n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ce\/4c2785ee7b9aa1446e0002ce\/alfonso-cuaron-profile.jpg","biography":"Alfonso Cuar\u00f3n Orozco is an Academy Award-nominated Mexican film director, screenwriter and film producer, best known for, Children of Men, Harry Potter and the Prisoner of Azkaban, Y tu mam\u00e1 tambi\u00e9n, and A Little Princess.\n\nCuar\u00f3n was born in M\u00e9xico City. He is the son of Alfredo Cuar\u00f3n, a nuclear physicist who worked for the United Nations' International Atomic Energy Agency for many years.\nHe studied Philosophy at the National Autonomous University of Mexico (UNAM) and filmmaking at CUEC (Cen","version":93,"birthday":"-255402000000","id":"11218","birthplace":"Mexico City, Mexico","lastModified":"1299859069000","name":"Alfonso Cuar\u00f3n","type":"Person","_key":"6681"} +{"label":"Harry Potter and the Goblet Of Fire","description":"Young wizard Harry Potter starts his fouth year at Hogwarts, competes in the treacherous Tri-Wizard Tournament and faces the evil Lord Voldemort. Friends Ron and Hermione help Harry manage the pressure \u2026 but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.","id":"674","runtime":157,"imdbId":"tt0330373","trailer":"http:\/\/www.youtube.com\/watch?v=rNDfBcIdf4k","homepage":"http:\/\/harrypotter.warnerbros.com\/","version":328,"lastModified":"1300118945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4c55b78d5e73d63a6c00002a\/harry-potter-and-the-goblet-of-fire-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Harry Potter and the Goblet Of Fire","releaseDate":1131235200000,"language":"en","tagline":"Dark And Difficult Times Lie Ahead.","type":"Movie","_key":"6682"} +{"label":"Robert Pattinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34b\/4bdf46a7017a3c35b400034b\/robert-pattinson-profile.jpg","biography":"Robert Pattinson was born on May 13, 1986, in London, England. He enjoys music and is an excellent musician, playing both the guitar and piano. When Robert was 15, he started acting in amateur plays with the Barnes Theatre Company. Afterward, he took screen role like Ring of the Nibelungs (2004) (TV) (Kingdom of Twilight) as Giselher. In 2003, Robert took on the role of Cedric Diggory in Harry Potter and the Goblet of Fire (2005). He got his role a week later after meeting Mike Newell in late 20","version":113,"birthday":"516319200000","id":"11288","birthplace":"London, England, UK","lastModified":"1300096395000","name":"Robert Pattinson","type":"Person","_key":"6683"} +{"label":"Stanislav Ianevski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c8a\/4be6fecb017a3c35b7000c8a\/stanislav-ianevski-profile.jpg","biography":"Stanislav Ianevski is a Bulgarian actor, known for playing Viktor Krum in the 2005 film Harry Potter and the Goblet of Fire.\n\nIanevski was born in Sofia, Bulgaria and has lived in England for five years. While attending Mill Hill School in the United Kingdom, Ianevski had no particular acting aspirations and was not a drama student. He had only auditioned for Harry Potter after being spotted by Fiona Weir, a casting director who prompted him to attend an acting workshop, which resulted in his ca","version":30,"birthday":"485042400000","id":"11290","birthplace":"Sofia, Bulgaria","lastModified":"1300091176000","name":"Stanislav Ianevski","type":"Person","_key":"6684"} +{"label":"Cl\u00e9mence Po\u00e9sy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef4\/4be87042017a3c35bd000ef4\/clemence-poesy-profile.jpg","biography":"Cl\u00e9mence Po\u00e9sy is a French actress and model. Since starting on the stage as a child, Po\u00e9sy had dramatic education, and has been active on both film and television since 1999, including some English-language productions. Outside of her home country, she is perhaps best known for playing Fleur Delacour in Harry Potter and the Goblet of Fire and Chlo\u00eb in In Bruges.","version":61,"birthday":"407458800000","id":"11291","birthplace":"Ch\u00e2tenay-Malabry, Hauts-de-Seine, France","lastModified":"1300090353000","name":"Cl\u00e9mence Po\u00e9sy","type":"Person","_key":"6685"} +{"label":"Mike Newell","version":74,"id":"10723","lastModified":"1300090351000","name":"Mike Newell","type":"Person","_key":"6686"} +{"label":"Harry Potter and the Order of the Phoenix","description":"Returning for his fifth year of study at the venerable Hogwarts School of Witchcraft and Wizardry, the ever-maturing Harry Potter is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students -- dubbed \"Dumbledore's Army\" -- to defend themselves against the dark arts.","id":"675","runtime":130,"imdbId":"tt0373889","trailer":"http:\/\/www.youtube.com\/watch?v=iKC0W3mF1wA","homepage":"http:\/\/www.harrypotterorderofthephoenix.com\/","version":427,"lastModified":"1300114617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e29\/4d7ccff87b9aa11a14018e29\/harry-potter-and-the-order-of-the-phoenix-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Harry Potter and the Order of the Phoenix","releaseDate":1184112000000,"language":"en","tagline":"Evil Must Be Confronted.","type":"Movie","_key":"6687"} +{"label":"David Yates","version":75,"id":"11343","lastModified":"1300090255000","name":"David Yates","type":"Person","_key":"6688"} +{"label":"Jason Isaacs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bee\/4be6f99e017a3c35bf000bee\/jason-isaacs-profile.jpg","biography":"Jason Isaacs is an English actor born in Liverpool, who is most well known for his performance as the villain Lucius Malfoy in the Harry Potter films, the brutal Colonel William Tavington in The Patriot and as lifelong criminal Michael Caffee in the internationally-broadcast American television series Brotherhood.\n\nJason Isaacs was born on 6 June 1963, in Liverpool, England, to Jewish parents who later emigrated to Israel. He spent his earliest childhood years in an \"insular\" and \"closely-knit\" ","version":114,"birthday":"-207450000000","id":"11355","birthplace":"Liverpool, UK","lastModified":"1300090250000","name":"Jason Isaacs","type":"Person","_key":"6689"} +{"label":"Imelda Staunton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d6f\/4be6fd21017a3c35bd000d6f\/imelda-staunton-profile.jpg","biography":"Imelda Mary Philomena Bernadette Staunton is an English actress. She is best known for her performances in the British comedy television series Up the Garden Path and the films Harry Potter and the Order of the Phoenix and Vera Drake. For the latter, she drew widespread critical acclaim as Vera Drake, earning her a Best Actress Oscar nomination and a number of wins including the BAFTA and Venice Film Festival Awards for best actress in a leading role.\n\nStaunton was born in Archway, North London,","version":82,"birthday":"-441162000000","id":"11356","birthplace":"London, United Kingdom","lastModified":"1300090476000","name":"Imelda Staunton","type":"Person","_key":"6690"} +{"label":"Robert Hardy","version":41,"id":"23076","lastModified":"1300090574000","name":"Robert Hardy","type":"Person","_key":"6691"} +{"label":"Pearl Harbor","description":"The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.","id":"676","runtime":183,"imdbId":"tt0213149","trailer":"http:\/\/www.youtube.com\/watch?v=Xr6pVUv9cJQ","version":246,"lastModified":"1300067679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0b\/4d50124e7b9aa13ab400bb0b\/pearl-harbor-mid.jpg","studio":"Buena Vista Pictures","genre":"Action","title":"Pearl Harbor","releaseDate":990403200000,"language":"en","tagline":"December 7, 1941 - A day that shall live in infamy.","type":"Movie","_key":"6692"} +{"label":"Jon Voight","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4c5f72ff5e73d6346400000a\/jon-voight-profile.jpg","version":139,"id":"10127","lastModified":"1300097006000","name":"Jon Voight","type":"Person","_key":"6693"} +{"label":"William Lee Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c77\/4d1904965e73d6082e009c77\/william-lee-scott-profile.jpg","version":52,"id":"10128","lastModified":"1300090518000","name":"William Lee Scott","type":"Person","_key":"6694"} +{"label":"Greg Zola","version":20,"id":"10129","lastModified":"1300091042000","name":"Greg Zola","type":"Person","_key":"6695"} +{"label":"Catherine Kellner","version":19,"id":"10130","lastModified":"1300091418000","name":"Catherine Kellner","type":"Person","_key":"6696"} +{"label":"Sara Rue","version":29,"id":"10131","lastModified":"1300092094000","name":"Sara Rue","type":"Person","_key":"6697"} +{"label":"Colm Feore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e7\/4c396f535e73d671d00000e7\/colm-feore-profile.jpg","version":85,"birthday":"-358563600000","id":"10132","birthplace":"Boston, Massachusetts, USA","lastModified":"1300090384000","name":"Colm Feore","type":"Person","_key":"6698"} +{"label":"John Fujioka","version":23,"id":"10133","lastModified":"1300090764000","name":"John Fujioka","type":"Person","_key":"6699"} +{"label":"Mako","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14f\/4c766ae07b9aa16a0b00014f\/mako-profile.jpg","biography":"Mako was born in Kobe, Japan, the son of noted children's book author and illustrator Taro Yashima. His parents moved to the United States when he was a small child. He joined them there after World War II, in 1949, joining the military in the 1950s. He became a naturalized American citizen in 1956.[1] When Mako first joined his parents in the USA, he studied architecture. During his military service, he discovered his theatrical talent, and trained at the Pasadena Community Playhouse.\r\n\r\nMako w","version":65,"id":"10134","lastModified":"1299860353000","name":"Mako","type":"Person","_key":"6700"} +{"label":"Jesse James","version":34,"id":"10135","lastModified":"1300091041000","name":"Jesse James","type":"Person","_key":"6701"} +{"label":"Reiley McClendon","version":23,"id":"10136","lastModified":"1300091089000","name":"Reiley McClendon","type":"Person","_key":"6702"} +{"label":"Steve Rankin","version":24,"id":"10137","lastModified":"1300090999000","name":"Steve Rankin","type":"Person","_key":"6703"} +{"label":"Brian Haley","version":29,"id":"10138","lastModified":"1300090620000","name":"Brian Haley","type":"Person","_key":"6704"} +{"label":"Olympia - Fest der V\u00f6lker","description":"Olympia is a documentary about the 1936 Olympic games in Berlin by German Director Leni Riefenstahl. The film played in theaters in 1938 and again in 1952 after the fall of the Nazi Regime.","id":"677","runtime":126,"imdbId":"tt0030522","version":57,"lastModified":"1299531813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e8\/4bf0f4d7017a3c32150000e8\/olympia-fest-der-volker-mid.jpg","studio":"Olympia-Film GmbH","genre":"Documentary","title":"Olympia - Fest der V\u00f6lker","releaseDate":-1000425600000,"language":"en","type":"Movie","_key":"6705"} +{"label":"Leni Riefenstahl","version":37,"id":"10139","lastModified":"1300090671000","name":"Leni Riefenstahl","type":"Person","_key":"6706"} +{"label":"David Albritton","version":13,"id":"10274","lastModified":"1300092044000","name":"David Albritton","type":"Person","_key":"6707"} +{"label":"Jack Beresford","version":15,"id":"10275","lastModified":"1300091474000","name":"Jack Beresford","type":"Person","_key":"6708"} +{"label":"Henri de Baillet-Latour","version":13,"id":"10276","lastModified":"1300091786000","name":"Henri de Baillet-Latour","type":"Person","_key":"6709"} +{"label":"Philip Edwards","version":13,"id":"10277","lastModified":"1300092044000","name":"Philip Edwards","type":"Person","_key":"6710"} +{"label":"Donald Finlay","version":13,"id":"10278","lastModified":"1300091786000","name":"Donald Finlay","type":"Person","_key":"6711"} +{"label":"Adolf Hitler","version":21,"id":"10279","lastModified":"1300091489000","name":"Adolf Hitler","type":"Person","_key":"6712"} +{"label":"Rudolf Hess","version":13,"id":"10280","lastModified":"1300092386000","name":"Rudolf Hess","type":"Person","_key":"6713"} +{"label":"King Umberto II","version":13,"id":"10281","lastModified":"1300091786000","name":"King Umberto II","type":"Person","_key":"6714"} +{"label":"Theodor Lewald","version":13,"id":"10282","lastModified":"1300091786000","name":"Theodor Lewald","type":"Person","_key":"6715"} +{"label":"Luz Long","version":13,"id":"10283","lastModified":"1300091786000","name":"Luz Long","type":"Person","_key":"6716"} +{"label":"John Lovelock","version":15,"id":"10284","lastModified":"1300092045000","name":"John Lovelock","type":"Person","_key":"6717"} +{"label":"Josef Goebbels","version":15,"id":"10285","lastModified":"1300092045000","name":"Josef Goebbels","type":"Person","_key":"6718"} +{"label":"Seung-yong Nam","version":15,"id":"10286","lastModified":"1300092045000","name":"Seung-yong Nam","type":"Person","_key":"6719"} +{"label":"Dorothy Odam","version":15,"id":"10287","lastModified":"1300092387000","name":"Dorothy Odam","type":"Person","_key":"6720"} +{"label":"Martinus Osendarp","version":15,"id":"10288","lastModified":"1300091787000","name":"Martinus Osendarp","type":"Person","_key":"6721"} +{"label":"Jesse Owens","version":15,"id":"10289","lastModified":"1300091787000","name":"Jesse Owens","type":"Person","_key":"6722"} +{"label":"Mack Robinson","version":15,"id":"10290","lastModified":"1300091787000","name":"Mack Robinson","type":"Person","_key":"6723"} +{"label":"Kee-chung Sohn","version":15,"id":"10291","lastModified":"1300092387000","name":"Kee-chung Sohn","type":"Person","_key":"6724"} +{"label":"Henri Nannen","version":15,"id":"10292","lastModified":"1300091787000","name":"Henri Nannen","type":"Person","_key":"6725"} +{"label":"Out of the Past","description":"Jeff Bailey seems to be a mundane gas station owner in remote Bridgeport, CA. He is dating local girl Ann Miller and lives a quiet life. Town lawman Jim is in love with Ann and unsure about Jeff, who is secretive about his past.","id":"678","runtime":97,"imdbId":"tt0039689","version":115,"lastModified":"1299912040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea3\/4bc90b3e017a3c57fe003ea3\/out-of-the-past-mid.jpg","studio":"RKO Radio Pictures, Inc.","genre":"Drama","title":"Out of the Past","releaseDate":-698544000000,"language":"en","tagline":"A MAN - Trying to run away from his past... A WOMAN - Trying to escape her future...","type":"Movie","_key":"6726"} +{"label":"Jacques Tourneur","version":34,"id":"10146","lastModified":"1300090525000","name":"Jacques Tourneur","type":"Person","_key":"6727"} +{"label":"Robert Mitchum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4bcf3378017a3c63f500003f\/robert-mitchum-profile.jpg","version":105,"id":"10158","lastModified":"1300127532000","name":"Robert Mitchum","type":"Person","_key":"6728"} +{"label":"Jane Greer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/743\/4be2cddb017a3c35b5000743\/jane-greer-profile.jpg","version":31,"id":"10159","lastModified":"1300090379000","name":"Jane Greer","type":"Person","_key":"6729"} +{"label":"Rhonda Fleming","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4bcf3451017a3c63ea000023\/rhonda-fleming-profile.jpg","biography":"Rhonda Fleming (born Marilyn Louis in Hollywood, California, August 10, 1923), is an American motion picture and television actress.\n\nShe acted in more than 40 films, mostly in the 1940s and 1950s, and became renowned as one of the most beautiful and glamorous actresses of her day. She was nicknamed the \"Queen of Technicolor\" because her fair complexion and flaming red hair photographed exceptionally well in Technicolor.\n\nFleming began working as a film actor while attending Beverly Hills High S","version":36,"birthday":"-1464138000000","id":"10160","birthplace":"Los Angeles, California, USA","lastModified":"1300090306000","name":"Rhonda Fleming","type":"Person","_key":"6730"} +{"label":"Richard Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4bcf355f017a3c63f1000037\/richard-webb-profile.jpg","version":25,"id":"10161","lastModified":"1300092242000","name":"Richard Webb","type":"Person","_key":"6731"} +{"label":"Steve Brodie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4c80f4e07b9aa118f100006a\/steve-brodie-profile.jpg","version":36,"birthday":"-1581469200000","id":"10162","birthplace":"El Dorado, Kansas, USA","lastModified":"1300090745000","name":"Steve Brodie","type":"Person","_key":"6732"} +{"label":"Virginia Huston","version":20,"id":"10163","lastModified":"1300092159000","name":"Virginia Huston","type":"Person","_key":"6733"} +{"label":"Paul Valentine","version":19,"id":"10164","lastModified":"1300092238000","name":"Paul Valentine","type":"Person","_key":"6734"} +{"label":"Dickie Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4bcf378c017a3c63ef00003f\/dickie-moore-profile.jpg","version":20,"id":"10165","lastModified":"1300091925000","name":"Dickie Moore","type":"Person","_key":"6735"} +{"label":"Ken Niles","version":16,"id":"10166","lastModified":"1300091937000","name":"Ken Niles","type":"Person","_key":"6736"} +{"label":"Aliens","description":"When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story... all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.","id":"679","runtime":137,"imdbId":"tt0090605","trailer":"http:\/\/www.youtube.com\/watch?v=brEzYdLrPws","homepage":"http:\/\/www.alien-movies.com\/index_frames.html","version":473,"lastModified":"1300067063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4bedb4b1017a3c458d000087\/aliens-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Aliens","releaseDate":522028800000,"language":"en","tagline":"This Time It's War","type":"Movie","_key":"6737"} +{"label":"Carrie Henn","version":27,"id":"10206","lastModified":"1300090387000","name":"Carrie Henn","type":"Person","_key":"6738"} +{"label":"William Hope","version":50,"id":"10207","lastModified":"1300130590000","name":"William Hope","type":"Person","_key":"6739"} +{"label":"Al Matthews","version":27,"id":"10208","lastModified":"1300091033000","name":"Al Matthews","type":"Person","_key":"6740"} +{"label":"Colette Hiller","version":27,"id":"10209","lastModified":"1300091124000","name":"Colette Hiller","type":"Person","_key":"6741"} +{"label":"Daniel Kash","version":43,"id":"10210","lastModified":"1300090391000","name":"Daniel Kash","type":"Person","_key":"6742"} +{"label":"Cynthia Dale Scott","version":33,"id":"10211","lastModified":"1300091160000","name":"Cynthia Dale Scott","type":"Person","_key":"6743"} +{"label":"Ricco Ross","version":28,"id":"10212","lastModified":"1300091016000","name":"Ricco Ross","type":"Person","_key":"6744"} +{"label":"Tip Tipping","version":27,"id":"10213","lastModified":"1300091212000","name":"Tip Tipping","type":"Person","_key":"6745"} +{"label":"Pulp Fiction","description":"Pulp Fiction is a cult film by Director Quentin Tarantino with three interwoven plots with lots of violence, absurdity, and great music. The film is Tarantino\u2019s most famous and the film that cemented his name and style in Hollywood.","id":"680","runtime":148,"imdbId":"tt0110912","trailer":"http:\/\/www.youtube.com\/watch?v=wZBfmBvvotE","version":281,"lastModified":"1300066730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37a\/4d5a1c8e5e73d65e9500037a\/pulp-fiction-mid.jpg","studio":"Miramax Films","genre":"Crime","title":"Pulp Fiction","releaseDate":767750400000,"language":"en","tagline":"Just because you are a character doesn't mean you have character.","type":"Movie","_key":"6746"} +{"label":"Ving Rhames","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/599\/4bfad074017a3c7033000599\/ving-rhames-profile.jpg","biography":"<FONT size=3><FONT face=\"Times New Roman\"><SPAN style=\"mso-ansi-language: EN; mso-bidi-font-weight: bold\" lang=EN>Irving Rameses \"Ving\" Rhames<\/SPAN><SPAN style=\"mso-ansi-language: EN\" lang=EN> (born May 12, 1959) is an American actor best known for his work in <I>Bringing Out the Dead<\/I>, <I>Pulp Fiction<\/I>, <I>Baby Boy<\/I>, <I>Don King: Only in America<\/I>, and the <I>Mission: Impossible<\/I> film series. Rhames was born in New York City, New York, he entered New York's School of Performing A","version":193,"birthday":"-335840400000","id":"10182","birthplace":"New York City, New York, USA","lastModified":"1300090276000","name":"Ving Rhames","type":"Person","_key":"6747"} +{"label":"Duane Whitaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a4\/4bfad34f017a3c70330005a4\/duane-whitaker-profile.jpg","version":40,"birthday":"-332211600000","id":"11804","birthplace":"Abilene, Texas, USA","lastModified":"1300091073000","name":"Duane Whitaker","type":"Person","_key":"6748"} +{"label":"Frank Whaley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/50b\/4bfad3e0017a3c703700050b\/frank-whaley-profile.jpg","version":61,"birthday":"-203648400000","id":"11805","birthplace":"Syracuse, New York, U.S","lastModified":"1300090391000","name":"Frank Whaley","type":"Person","_key":"6749"} +{"label":"Julia Sweeney","version":35,"id":"11806","lastModified":"1300090481000","name":"Julia Sweeney","type":"Person","_key":"6750"} +{"label":"Laura Lovelace","version":23,"id":"11807","lastModified":"1300090728000","name":"Laura Lovelace","type":"Person","_key":"6751"} +{"label":"Alexis Arquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4d4783925e73d65ee40010e0\/alexis-arquette-profile.jpg","version":38,"id":"19578","lastModified":"1300090528000","name":"Alexis Arquette","type":"Person","_key":"6752"} +{"label":"Diamonds Are Forever","description":"Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who\u2019s guilty. The mission takes him to Las Vegas where Bong meets his archenemy Blofeld. The seventh film from the Legendary James Bond series starring Sean Connery as a British super agent.","id":"681","runtime":120,"imdbId":"tt0066995","trailer":"http:\/\/www.youtube.com\/watch?v=-va1qL-UaqY","version":193,"lastModified":"1300123491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59b\/4d3e07767b9aa15bbf00059b\/diamonds-are-forever-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"Diamonds Are Forever","releaseDate":61516800000,"language":"en","tagline":"Bond is back...with the girls","type":"Movie","_key":"6753"} +{"label":"Jill St. John","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d9\/4ca09cdf5e73d670490005d9\/jill-st-john-profile.jpg","version":35,"id":"10190","lastModified":"1300123490000","name":"Jill St. John","type":"Person","_key":"6754"} +{"label":"Lana Wood","version":33,"id":"10191","lastModified":"1300123491000","name":"Lana Wood","type":"Person","_key":"6755"} +{"label":"Jimmy Dean","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e6\/4c5186da7b9aa13d4c0001e6\/jimmy-dean-profile.jpg","version":26,"id":"10192","lastModified":"1300123491000","name":"Jimmy Dean","type":"Person","_key":"6756"} +{"label":"Putter Smith","version":26,"id":"10193","lastModified":"1300123491000","name":"Putter Smith","type":"Person","_key":"6757"} +{"label":"Bruce Glover","version":35,"id":"10194","lastModified":"1300123491000","name":"Bruce Glover","type":"Person","_key":"6758"} +{"label":"Norman Burton","version":30,"id":"10195","lastModified":"1300123491000","name":"Norman Burton","type":"Person","_key":"6759"} +{"label":"Joseph F\u00fcrst","version":29,"id":"10196","lastModified":"1300123491000","name":"Joseph F\u00fcrst","type":"Person","_key":"6760"} +{"label":"The Man with the Golden Gun","description":"A golden bullet has 007 engraved on it as it smashes into the secret service headquarters. The bullet came from the professional killer Scaramanga who has yet to miss a target and James Bond begins a mission to try and stop him. The ninth film from the Legendary James Bond series starring Roger Moore as a British super agent.","id":"682","runtime":125,"imdbId":"tt0071807","trailer":"http:\/\/www.youtube.com\/watch?v=3mSVvuqwyOA","version":173,"lastModified":"1299953442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af3\/4d4460247b9aa103c8000af3\/the-man-with-the-golden-gun-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"The Man with the Golden Gun","releaseDate":156556800000,"language":"en","tagline":"The man with the golden gun is ready to assassinate James Bond.","type":"Movie","_key":"6761"} +{"label":"Britt Ekland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/079\/4c751e5c7b9aa13ab4001079\/britt-ekland-profile.jpg","version":45,"id":"10341","lastModified":"1300090464000","name":"Britt Ekland","type":"Person","_key":"6762"} +{"label":"Maud Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26c\/4c77c9d07b9aa16a0700026c\/maud-adams-profile.jpg","biography":"<P style=\"LINE-HEIGHT: 130%; BACKGROUND: white\"><SPAN style=\"LINE-HEIGHT: 130%; FONT-FAMILY: Arial; FONT-SIZE: 10pt; mso-ansi-language: EN-GB\" lang=EN-GB>Stunning Swedish born ex-model who broke into film in 1970, and quickly appeared in several high profile films including playing the ex-wife of <\/SPAN><SPAN style=\"LINE-HEIGHT: 130%; FONT-FAMILY: Arial; FONT-SIZE: 10pt\"><A href=\"http:\/\/www.imdb.com\/name\/nm0001001\/\"><SPAN style=\"COLOR: black; TEXT-DECORATION: none; mso-ansi-language: EN-GB; text","version":34,"birthday":"-785293200000","id":"10342","birthplace":"Lule\u00e5, Norrbottens l\u00e4n, Sweden","lastModified":"1299492621000","name":"Maud Adams","type":"Person","_key":"6763"} +{"label":"Herv\u00e9 Villechaize","version":29,"id":"10343","lastModified":"1300123737000","name":"Herv\u00e9 Villechaize","type":"Person","_key":"6764"} +{"label":"Richard Loo","version":29,"id":"10344","lastModified":"1300123737000","name":"Richard Loo","type":"Person","_key":"6765"} +{"label":"Soon-Tek Oh","version":31,"id":"10345","lastModified":"1300123737000","name":"Soon-Tek Oh","type":"Person","_key":"6766"} +{"label":"Olympia - Fest der Sch\u00f6nheit","description":"SECOND ONE? Olympia is a documentary about the 1936 Olympic games in Berlin by German Director Leni Riefenstahl. The film played in theaters in 1938 and again in 1952 after the fall of the Nazi Regime.","id":"685","runtime":100,"imdbId":"tt0030523","version":49,"lastModified":"1299531815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c3\/4bf0f635017a3c320b0000c3\/olympia-fest-der-schonheit-mid.jpg","studio":"Olympia-Film GmbH","genre":"Documentary","title":"Olympia - Fest der Sch\u00f6nheit","releaseDate":-999993600000,"language":"en","type":"Movie","_key":"6767"} +{"label":"Ralf Berzsenyi","version":16,"id":"10299","lastModified":"1300092643000","name":"Ralf Berzsenyi","type":"Person","_key":"6768"} +{"label":"Ferenc Cs\u00edk","version":14,"id":"10300","lastModified":"1300092231000","name":"Ferenc Cs\u00edk","type":"Person","_key":"6769"} +{"label":"Richard Degener","version":14,"id":"10301","lastModified":"1300092186000","name":"Richard Degener","type":"Person","_key":"6770"} +{"label":"Willemijntje den Ouden","version":14,"id":"10302","lastModified":"1300092231000","name":"Willemijntje den Ouden","type":"Person","_key":"6771"} +{"label":"Charles des Jammoni\u00e8res","version":14,"id":"10303","lastModified":"1300092231000","name":"Charles des Jammoni\u00e8res","type":"Person","_key":"6772"} +{"label":"Velma Dunn","version":14,"id":"10304","lastModified":"1300092604000","name":"Velma Dunn","type":"Person","_key":"6773"} +{"label":"Konrad Frey","version":14,"id":"10305","lastModified":"1300092216000","name":"Konrad Frey","type":"Person","_key":"6774"} +{"label":"Marjorie Gestring","version":14,"id":"10306","lastModified":"1300092153000","name":"Marjorie Gestring","type":"Person","_key":"6775"} +{"label":"Albert Greene","version":14,"id":"10307","lastModified":"1300092153000","name":"Albert Greene","type":"Person","_key":"6776"} +{"label":"Tetsuo Hamuro","version":14,"id":"10308","lastModified":"1300092153000","name":"Tetsuo Hamuro","type":"Person","_key":"6777"} +{"label":"Josef Hasen\u00f6hrl","version":14,"id":"10309","lastModified":"1300092152000","name":"Josef Hasen\u00f6hrl","type":"Person","_key":"6778"} +{"label":"Heinz Hax","version":14,"id":"10310","lastModified":"1300092152000","name":"Heinz Hax","type":"Person","_key":"6779"} +{"label":"Alois Hudec","version":14,"id":"10311","lastModified":"1300092152000","name":"Alois Hudec","type":"Person","_key":"6780"} +{"label":"Cornelius Johnson","version":14,"id":"10312","lastModified":"1300092152000","name":"Cornelius Johnson","type":"Person","_key":"6781"} +{"label":"Adolph Kiefer","version":14,"id":"10313","lastModified":"1300092152000","name":"Adolph Kiefer","type":"Person","_key":"6782"} +{"label":"Masaji Kiyokawa","version":14,"id":"10314","lastModified":"1300092152000","name":"Masaji Kiyokawa","type":"Person","_key":"6783"} +{"label":"Contact","description":"Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.","id":"686","runtime":153,"imdbId":"tt0118884","trailer":"http:\/\/www.youtube.com\/watch?v=SRoj3jK37Vc","homepage":"http:\/\/contact-themovie.warnerbros.com\/","version":171,"lastModified":"1300066020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e9\/4c6434fc7b9aa172dd0008e9\/contact-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Contact","releaseDate":868579200000,"language":"en","type":"Movie","_key":"6784"} +{"label":"Matthew McConaughey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23b\/4bdf27b1017a3c35bf00023b\/matthew-mcconaughey-profile.jpg","version":107,"id":"10297","lastModified":"1300090255000","name":"Matthew McConaughey","type":"Person","_key":"6785"} +{"label":"Dead Man Walking","description":"A justice drama based on a true story about a man on death row who in his last days forms a strong relationship with a nun who teaches him forgiveness and gives him spirituality as she accompanies him to his execution. Susan Sarandon won an Oscar for best female actress for her convincing partial of Sister Helen Prejean.","id":"687","runtime":122,"imdbId":"tt0112818","version":104,"lastModified":"1300065821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f79\/4bc90b61017a3c57fe003f79\/dead-man-walking-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Drama","title":"Dead Man Walking","releaseDate":820195200000,"language":"en","type":"Movie","_key":"6786"} +{"label":"Robert Prosky","version":50,"id":"10360","lastModified":"1300090529000","name":"Robert Prosky","type":"Person","_key":"6787"} +{"label":"Raymond J. Barry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a3f\/4d5943e87b9aa15d4e004a3f\/raymond-j-barry-profile.jpg","version":54,"id":"10361","lastModified":"1299671668000","name":"Raymond J. Barry","type":"Person","_key":"6788"} +{"label":"The Bridges Of Madison County","description":"A melancholy romance about a farmers wife who meets a photographer who\u2019s way of life that is completely foreign to her leading her to become attracted to him. She is confronted with the difficult decision to go on with the relationship thus leaving her family, or to stay and continue her ordinary life until her death. Meryl Streep was nominated for an Oscar for her excellent performance.","id":"688","runtime":135,"imdbId":"tt0112579","trailer":"http:\/\/www.youtube.com\/watch?v=_bXG1KBHqj0","version":112,"lastModified":"1300065634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f82\/4bc90b62017a3c57fe003f82\/the-bridges-of-madison-county-mid.jpg","studio":"Amblin Entertainment","genre":"Drama","title":"The Bridges Of Madison County","releaseDate":812246400000,"language":"en","type":"Movie","_key":"6789"} +{"label":"Victor Slezak","version":41,"id":"10379","lastModified":"1300090375000","name":"Victor Slezak","type":"Person","_key":"6790"} +{"label":"Jim Haynie","version":24,"id":"10380","lastModified":"1300090865000","name":"Jim Haynie","type":"Person","_key":"6791"} +{"label":"Sarah Kathryn Schmitt","version":17,"id":"10381","lastModified":"1300091089000","name":"Sarah Kathryn Schmitt","type":"Person","_key":"6792"} +{"label":"Christopher Kroon","version":17,"id":"10382","lastModified":"1300091292000","name":"Christopher Kroon","type":"Person","_key":"6793"} +{"label":"Debra Monk","version":23,"id":"10386","lastModified":"1300091869000","name":"Debra Monk","type":"Person","_key":"6794"} +{"label":"Richard Lage","version":17,"id":"10388","lastModified":"1300091088000","name":"Richard Lage","type":"Person","_key":"6795"} +{"label":"Michelle Benes","version":17,"id":"10389","lastModified":"1300091249000","name":"Michelle Benes","type":"Person","_key":"6796"} +{"label":"O thiasos","description":"The Travelling Players is an epic Greek film from director Theo Angelopoulos that tells the story of a family between the years of 1939 and 1952. The film is one of the most influential Greek and also European films to be featured internationally.","id":"689","runtime":223,"imdbId":"tt0073800","version":74,"lastModified":"1299531816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c5\/4d5714be7b9aa16bc60013c5\/o-thiasos-mid.jpg","studio":"Giorgos Papalios Productions","genre":"Drama","title":"O thiasos","releaseDate":126230400000,"language":"en","type":"Movie","_key":"6797"} +{"label":"Takis Katselis","version":14,"id":"10327","lastModified":"1300092528000","name":"Takis Katselis","type":"Person","_key":"6798"} +{"label":"Theodoros Angelopoulos","version":35,"id":"10316","lastModified":"1300091459000","name":"Theodoros Angelopoulos","type":"Person","_key":"6799"} +{"label":"Eva Kotamanidou","version":14,"id":"10330","lastModified":"1300092151000","name":"Eva Kotamanidou","type":"Person","_key":"6800"} +{"label":"Aliki Georgouli","version":14,"id":"10331","lastModified":"1300092528000","name":"Aliki Georgouli","type":"Person","_key":"6801"} +{"label":"Stratos Pahis","version":14,"id":"10332","lastModified":"1300092528000","name":"Stratos Pahis","type":"Person","_key":"6802"} +{"label":"Vangelis Kazan","version":14,"id":"10333","lastModified":"1300092151000","name":"Vangelis Kazan","type":"Person","_key":"6803"} +{"label":"Maria Vassiliou","version":14,"id":"10334","lastModified":"1300092528000","name":"Maria Vassiliou","type":"Person","_key":"6804"} +{"label":"Petros Zarkadis","version":14,"id":"10335","lastModified":"1300092528000","name":"Petros Zarkadis","type":"Person","_key":"6805"} +{"label":"Kiriakos Katrivanos","version":14,"id":"10336","lastModified":"1300092528000","name":"Kiriakos Katrivanos","type":"Person","_key":"6806"} +{"label":"Grigoris Evangelatos","version":14,"id":"10338","lastModified":"1300092528000","name":"Grigoris Evangelatos","type":"Person","_key":"6807"} +{"label":"Pickpocket","description":"Pick Pocket is a corporation drama from French avant-garde director Robert Bresson about a pickpocket thief.","id":"690","runtime":75,"imdbId":"tt0053168","version":118,"lastModified":"1299912627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8b\/4bc90b64017a3c57fe003f8b\/pickpocket-mid.jpg","genre":"Crime","title":"Pickpocket","releaseDate":-318297600000,"language":"en","type":"Movie","_key":"6808"} +{"label":"Robert Bresson","version":68,"birthday":"-2154387600000","id":"10346","birthplace":"Bromont-Lamothe, Puy-de-D\u00f4me, Auvergne, France","lastModified":"1300091018000","name":"Robert Bresson","type":"Person","_key":"6809"} +{"label":"Martin LaSalle","version":18,"id":"10355","lastModified":"1300091154000","name":"Martin LaSalle","type":"Person","_key":"6810"} +{"label":"Marika Green","version":19,"id":"10356","lastModified":"1300091081000","name":"Marika Green","type":"Person","_key":"6811"} +{"label":"Jean P\u00e9l\u00e9gri","version":16,"id":"10357","lastModified":"1300091291000","name":"Jean P\u00e9l\u00e9gri","type":"Person","_key":"6812"} +{"label":"Dolly Scal","version":16,"id":"10358","lastModified":"1300091708000","name":"Dolly Scal","type":"Person","_key":"6813"} +{"label":"Pierre Leymarie","version":16,"id":"10359","lastModified":"1300092151000","name":"Pierre Leymarie","type":"Person","_key":"6814"} +{"label":"The Spy Who Loved Me","description":"Russian and American submarines with nuclear missels on board both vanish from sight without a trace. America and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case. The tenth film from the Legendary James Bond series starring Roger Moore as a British super agent.","id":"691","runtime":125,"imdbId":"tt0076752","trailer":"http:\/\/www.youtube.com\/watch?v=kbAGi1g6nag","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=SPYWHOLO","version":164,"lastModified":"1300123971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff4\/4d4477cd7b9aa15bf5000ff4\/the-spy-who-loved-me-mid.jpg","studio":"EON Productions","genre":"Action","title":"The Spy Who Loved Me","releaseDate":237081600000,"language":"en","tagline":"It's the BIGGEST. It's the BEST. It's BOND. And B-E-Y-O-N-D.","type":"Movie","_key":"6815"} +{"label":"Barbara Bach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28a\/4c4716617b9aa15de100028a\/barbara-bach-profile.jpg","biography":"<p>Barbara Goldbach was born to Howard and Marjorie Goldbach in Queens, \nNew York. Her father was a policeman. Barbara is the oldest of 5 \nchildren. She met her first husband Augusto Gregorini in New York while \nshe worked as a model and he was visiting from Italy for a business trip\n in 1966. Barbara followed him to Italy to be with him In 1968, they \nmarried. They had 2 children, Francesca (b. 1969) and Gian Andrea (b. \n1972). During Gianni's birth, he had the umbilical cord wrapped around \nhi","version":37,"birthday":"-705290400000","id":"10458","birthplace":"Queens, New York USA","lastModified":"1300123957000","name":"Barbara Bach","type":"Person","_key":"6816"} +{"label":"Curd J\u00fcrgens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cc\/4c473ec87b9aa15de10002cc\/curd-jurgens-profile.jpg","version":60,"id":"10459","lastModified":"1300123957000","name":"Curd J\u00fcrgens","type":"Person","_key":"6817"} +{"label":"Caroline Munro","version":44,"id":"10461","lastModified":"1300123957000","name":"Caroline Munro","type":"Person","_key":"6818"} +{"label":"Geoffrey Keen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/595\/4cf7e2627b9aa15149001595\/geoffrey-keen-profile.jpg","version":76,"id":"10462","lastModified":"1300124838000","name":"Geoffrey Keen","type":"Person","_key":"6819"} +{"label":"Michael Billington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4ceeb0f45e73d6531500011e\/michael-billington-profile.jpg","version":26,"id":"10463","lastModified":"1300123958000","name":"Michael Billington","type":"Person","_key":"6820"} +{"label":"Olga Bisera","version":24,"id":"10464","lastModified":"1300123958000","name":"Olga Bisera","type":"Person","_key":"6821"} +{"label":"Edward de Souza","version":31,"id":"10465","lastModified":"1300123958000","name":"Edward de Souza","type":"Person","_key":"6822"} +{"label":"Pink Flamingos","description":"John Water\u2019s goal with the almost entirely self created film Pink Flamingo was to film the lousiest trash film of all times. And he was successful as Pink Flamingos would become a cult film.","id":"692","runtime":93,"imdbId":"tt0069089","trailer":"http:\/\/www.youtube.com\/watch?v=846","version":109,"lastModified":"1299911253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb3\/4bc90b69017a3c57fe003fb3\/pink-flamingos-mid.jpg","studio":"Dreamland Productions","genre":"Comedy","title":"Pink Flamingos","releaseDate":69206400000,"language":"en","type":"Movie","_key":"6823"} +{"label":"John Waters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ae\/4d799b995e73d6282e0002ae\/john-waters-profile.jpg","version":91,"id":"10367","lastModified":"1300090492000","name":"John Waters","type":"Person","_key":"6824"} +{"label":"Divine","version":30,"id":"10369","lastModified":"1300091175000","name":"Divine","type":"Person","_key":"6825"} +{"label":"David Lochary","version":22,"id":"10370","lastModified":"1300091489000","name":"David Lochary","type":"Person","_key":"6826"} +{"label":"Mary Vivian Pearce","version":25,"id":"10371","lastModified":"1300091249000","name":"Mary Vivian Pearce","type":"Person","_key":"6827"} +{"label":"Danny Mills","version":15,"id":"10372","lastModified":"1300092231000","name":"Danny Mills","type":"Person","_key":"6828"} +{"label":"Edith Massey","version":20,"id":"10373","lastModified":"1300091089000","name":"Edith Massey","type":"Person","_key":"6829"} +{"label":"Channing Wilroy","version":15,"id":"10374","lastModified":"1300092230000","name":"Channing Wilroy","type":"Person","_key":"6830"} +{"label":"Cookie Mueller","version":17,"id":"10375","lastModified":"1300091696000","name":"Cookie Mueller","type":"Person","_key":"6831"} +{"label":"Susan Walsh","version":18,"id":"10376","lastModified":"1300091459000","name":"Susan Walsh","type":"Person","_key":"6832"} +{"label":"Linda Olgeirson","version":15,"id":"10377","lastModified":"1300092230000","name":"Linda Olgeirson","type":"Person","_key":"6833"} +{"label":"Meet the Fockers","description":"In this sequel to the hit comedy Meet the Parents, hard-to-crack ex-CIA man Jack Byrnes and his wife, Dina, head for the warmer climes of Florida to meet son-in-law-to-be Greg Focker's mom and dad, Bernie and Roz. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.","id":"693","runtime":110,"imdbId":"tt0290002","trailer":"http:\/\/www.youtube.com\/watch?v=48S3ogRGpjM","homepage":"http:\/\/www.meetthefockers.com\/index.php","version":176,"lastModified":"1300064798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d39\/4cf150765e73d61925000d39\/meet-the-fockers-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Meet the Fockers","releaseDate":1103155200000,"language":"en","tagline":"Misery loves family.","type":"Movie","_key":"6834"} +{"label":"Jay Roach","version":93,"id":"6737","lastModified":"1300090586000","name":"Jay Roach","type":"Person","_key":"6835"} +{"label":"Teri Polo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13e\/4ce066457b9aa168b100013e\/teri-polo-profile.jpg","version":76,"id":"10399","lastModified":"1300090312000","name":"Teri Polo","type":"Person","_key":"6836"} +{"label":"Barbra Streisand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13e\/4bcc7551017a3c0f3000013e\/barbra-streisand-profile.jpg","version":89,"id":"10400","lastModified":"1300090339000","name":"Barbra Streisand","type":"Person","_key":"6837"} +{"label":"Blythe Danner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4ce0667c7b9aa168b300015b\/blythe-danner-profile.jpg","version":88,"id":"10401","lastModified":"1300090406000","name":"Blythe Danner","type":"Person","_key":"6838"} +{"label":"Alanna Ubach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/210\/4d6c589a5e73d60733001210\/alanna-ubach-profile.jpg","version":32,"id":"10402","lastModified":"1300090330000","name":"Alanna Ubach","type":"Person","_key":"6839"} +{"label":"Shelley Berman","version":33,"id":"10403","lastModified":"1300091072000","name":"Shelley Berman","type":"Person","_key":"6840"} +{"label":"Ray Santiago","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ff4\/4cf926e15e73d62999001ff4\/ray-santiago-profile.jpg","version":32,"id":"52957","lastModified":"1300090884000","name":"Ray Santiago","type":"Person","_key":"6841"} +{"label":"The Shining","description":"The Shining is a Stanley Kubrick adaptation of Steven King\u2019s horror novel of the same name. The film takes the viewer into a remote hotel where a Jack Torrance and his wife and son must live in for the winter. One of the scariest films of all times mixes up reality and makes isolation a psychological nightmare.","id":"694","runtime":144,"imdbId":"tt0081505","trailer":"http:\/\/www.youtube.com\/watch?v=889","version":232,"lastModified":"1300089928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91b\/4cc5018b5e73d6778400191b\/the-shining-mid.jpg","studio":"Hawk Films","genre":"Drama","title":"The Shining","releaseDate":327888000000,"language":"en","tagline":"The Horror is driving him crazy","type":"Movie","_key":"6842"} +{"label":"Shelley Duvall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6af\/4ca24f377b9aa1578a0006af\/shelley-duvall-profile.jpg","version":50,"id":"10409","lastModified":"1300090409000","name":"Shelley Duvall","type":"Person","_key":"6843"} +{"label":"Danny Lloyd","version":21,"id":"10410","lastModified":"1300090543000","name":"Danny Lloyd","type":"Person","_key":"6844"} +{"label":"Barry Nelson","version":27,"id":"10411","lastModified":"1300091442000","name":"Barry Nelson","type":"Person","_key":"6845"} +{"label":"Anne Jackson","version":25,"id":"10412","lastModified":"1300091515000","name":"Anne Jackson","type":"Person","_key":"6846"} +{"label":"Short Cuts","description":"Multi-storied, fish-eyed look at American culture with some 22 characters intersecting--profoundly or fleetingly--through each other's lives. Running the emotional gamut from disturbing to humorous, Altman's portrait of the contemporary human condition is nevertheless fascinating. Based on nine stories and a prose poem by Raymond Carver.","id":"695","runtime":187,"imdbId":"tt0108122","version":167,"lastModified":"1300064425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fe\/4c9822ba7b9aa122e10000fe\/short-cuts-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"Short Cuts","releaseDate":749433600000,"language":"en","type":"Movie","_key":"6847"} +{"label":"Anne Archer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27a\/4c51bbdb7b9aa13d4c00027a\/anne-archer-profile.jpg","version":64,"id":"10427","lastModified":"1300090413000","name":"Anne Archer","type":"Person","_key":"6848"} +{"label":"Bruce Davison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/478\/4bfa7124017a3c702f000478\/bruce-davison-profile.jpg","version":91,"id":"52374","lastModified":"1300090404000","name":"Bruce Davison","type":"Person","_key":"6849"} +{"label":"Zane Cassidy","version":15,"id":"10429","lastModified":"1300091786000","name":"Zane Cassidy","type":"Person","_key":"6850"} +{"label":"Fred Ward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4c23b91f7b9aa1446c000032\/fred-ward-profile.jpg","version":82,"id":"10430","lastModified":"1300130064000","name":"Fred Ward","type":"Person","_key":"6851"} +{"label":"Jennifer Jason Leigh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4c23ba4a7b9aa1446c00003c\/jennifer-jason-leigh-profile.jpg","version":94,"id":"10431","lastModified":"1300090349000","name":"Jennifer Jason Leigh","type":"Person","_key":"6852"} +{"label":"Joseph C. Hopkins","version":15,"id":"10432","lastModified":"1300092386000","name":"Joseph C. Hopkins","type":"Person","_key":"6853"} +{"label":"Josette Maccario","version":15,"id":"10433","lastModified":"1300092386000","name":"Josette Maccario","type":"Person","_key":"6854"} +{"label":"Austin Friel","version":15,"id":"10434","lastModified":"1300092386000","name":"Austin Friel","type":"Person","_key":"6855"} +{"label":"Dustin Friel","version":15,"id":"10435","lastModified":"1300092386000","name":"Dustin Friel","type":"Person","_key":"6856"} +{"label":"Cassie Friel","version":15,"id":"10436","lastModified":"1300092386000","name":"Cassie Friel","type":"Person","_key":"6857"} +{"label":"Lily Tomlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cb\/4cb62ab07b9aa138d50003cb\/lily-tomlin-profile.jpg","version":49,"id":"10437","lastModified":"1300090525000","name":"Lily Tomlin","type":"Person","_key":"6858"} +{"label":"Jarrett Lennon","version":15,"id":"10438","lastModified":"1300092386000","name":"Jarrett Lennon","type":"Person","_key":"6859"} +{"label":"Manhattan","description":"Manhattan is an expression of love of the city of New York and the drama of the erratic character Isaac Davis, played by the director Woody Allen, and the conclusion of a neurotic city.","id":"696","runtime":96,"imdbId":"tt0079522","trailer":"http:\/\/www.youtube.com\/watch?v=cuU6XU0_Gfs","version":246,"lastModified":"1300106129000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/040\/4bc90b7e017a3c57fe004040\/manhattan-mid.jpg","studio":"Rollins-Joffe-Production","genre":"Comedy","title":"Manhattan","releaseDate":290217600000,"language":"en","type":"Movie","_key":"6860"} +{"label":"Frederic B. Blankfein","version":13,"id":"10446","lastModified":"1300091573000","name":"Frederic B. Blankfein","type":"Person","_key":"6861"} +{"label":"Mariel Hemingway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4d0add4c5e73d64692000048\/mariel-hemingway-profile.jpg","version":34,"id":"10447","lastModified":"1300090488000","name":"Mariel Hemingway","type":"Person","_key":"6862"} +{"label":"Anne Byrne Hoffman","version":13,"id":"10448","lastModified":"1300092386000","name":"Anne Byrne Hoffman","type":"Person","_key":"6863"} +{"label":"Karen Ludwig","version":13,"id":"10449","lastModified":"1300092044000","name":"Karen Ludwig","type":"Person","_key":"6864"} +{"label":"Michael O'Donoghue","version":17,"id":"10450","lastModified":"1300092386000","name":"Michael O'Donoghue","type":"Person","_key":"6865"} +{"label":"Oktyabr","description":"Okjabre was supposed to create a film about the tenth anniversary of the Russian October Revolution yet he created a lot more than just that; through historical montages Director Eisenstein created a part documentary part intellectual film.","id":"697","runtime":94,"imdbId":"tt0018217","version":57,"lastModified":"1299531818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/099\/4c8a297d5e73d67c44000099\/oktyabr-mid.jpg","studio":"Sovkino","genre":"Documentary","title":"Oktyabr","releaseDate":-1319155200000,"language":"en","type":"Movie","_key":"6866"} +{"label":"Vladimir Popov","version":19,"id":"9605","lastModified":"1300091293000","name":"Vladimir Popov","type":"Person","_key":"6867"} +{"label":"Vasili Nikandrov","version":16,"id":"10453","lastModified":"1300091475000","name":"Vasili Nikandrov","type":"Person","_key":"6868"} +{"label":"Layaschenko","version":16,"id":"10454","lastModified":"1300091893000","name":"Layaschenko","type":"Person","_key":"6869"} +{"label":"Boris Livanov","version":16,"id":"10455","lastModified":"1300092152000","name":"Boris Livanov","type":"Person","_key":"6870"} +{"label":"Mikholyev","version":16,"id":"10456","lastModified":"1300091870000","name":"Mikholyev","type":"Person","_key":"6871"} +{"label":"N. Podvoisky","version":16,"id":"10457","lastModified":"1300091870000","name":"N. Podvoisky","type":"Person","_key":"6872"} +{"label":"Moonraker","description":"During the transportation of a Space Shuttle a Boeing 747 crashes in the Atlantic Ocean yet when they go to look for the destroyed shuttle it is not there. James bond investigates the missing mission space shuttle and soon learns that the shuttles owner Hugo Drax wants to kill all of mankind. The showdown is about to take place in outer space. The eleventh film from the Legendary James Bond series","id":"698","runtime":126,"imdbId":"tt0079574","trailer":"http:\/\/www.youtube.com\/watch?v=sFQTHExJz5A","version":188,"lastModified":"1300124065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebc\/4d4249da7b9aa15bbf003ebc\/moonraker-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"Moonraker","releaseDate":299203200000,"language":"en","tagline":"Outer space now belongs to 007.","type":"Movie","_key":"6873"} +{"label":"Lois Chiles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/291\/4c4715ae7b9aa15ddd000291\/lois-chiles-profile.jpg","version":32,"id":"10475","lastModified":"1300124050000","name":"Lois Chiles","type":"Person","_key":"6874"} +{"label":"Corinne Clery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9aa\/4bfc31ee017a3c702f0009aa\/corinne-clery-profile.jpg","biography":"Corinne Cl\u00e9ry , pseudonimo di Corinne Picolo (Parigi, 23 marzo 1950) \u00e8 un'attrice francese.","version":36,"birthday":"-624157200000","id":"10476","birthplace":"Paris, France","lastModified":"1300124050000","name":"Corinne Clery","type":"Person","_key":"6875"} +{"label":"Toshir\u00f4 Suga","version":22,"id":"10479","lastModified":"1300124050000","name":"Toshir\u00f4 Suga","type":"Person","_key":"6876"} +{"label":"Emily Bolton","version":21,"id":"10481","lastModified":"1300124050000","name":"Emily Bolton","type":"Person","_key":"6877"} +{"label":"Blanche Ravalec","version":22,"id":"10483","lastModified":"1300124050000","name":"Blanche Ravalec","type":"Person","_key":"6878"} +{"label":"For Your Eyes Only","description":"A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first. The twelfth film from the Legendary James Bond series starring Roger Moore as a British super agent.","id":"699","runtime":127,"imdbId":"tt0082398","trailer":"http:\/\/www.youtube.com\/watch?v=mnfewT7RQ0s","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=FORYOURE","version":217,"lastModified":"1300124161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9eb\/4d471c0d7b9aa103c80059eb\/for-your-eyes-only-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"For Your Eyes Only","releaseDate":362188800000,"language":"en","tagline":"No one comes close to James Bond, 007.","type":"Movie","_key":"6879"} +{"label":"John Glen","version":97,"id":"10179","lastModified":"1299493955000","name":"John Glen","type":"Person","_key":"6880"} +{"label":"Carole Bouquet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4d0dba677b9aa102540021cc\/carole-bouquet-profile.jpg","version":54,"id":"10500","lastModified":"1300124151000","name":"Carole Bouquet","type":"Person","_key":"6881"} +{"label":"Topol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4c8fd1f57b9aa17b4900002a\/topol-profile.jpg","version":27,"id":"10501","lastModified":"1300124151000","name":"Topol","type":"Person","_key":"6882"} +{"label":"Lynn-Holly Johnson","version":28,"id":"10502","lastModified":"1300124151000","name":"Lynn-Holly Johnson","type":"Person","_key":"6883"} +{"label":"Cassandra Harris","version":22,"id":"10503","lastModified":"1300124151000","name":"Cassandra Harris","type":"Person","_key":"6884"} +{"label":"Jill Bennett","version":27,"id":"10504","lastModified":"1300124151000","name":"Jill Bennett","type":"Person","_key":"6885"} +{"label":"Michael Gothard","version":30,"id":"10505","lastModified":"1300124151000","name":"Michael Gothard","type":"Person","_key":"6886"} +{"label":"John Wyman","version":22,"id":"10506","lastModified":"1300124151000","name":"John Wyman","type":"Person","_key":"6887"} +{"label":"Jack Hedley","version":31,"id":"10507","lastModified":"1300124151000","name":"Jack Hedley","type":"Person","_key":"6888"} +{"label":"Octopussy","description":"James Bond is sent to investigate after a fellow \u201c00\u201d agent is found dead with a priceless Farberge egg. James bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War. The 13th film from the Legendary James Bond series starring Roger Moore as a British super agent.","id":"700","runtime":131,"imdbId":"tt0086034","trailer":"http:\/\/www.youtube.com\/watch?v=DdedJL39WN4","version":174,"lastModified":"1299912016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b29\/4d44639d7b9aa103c8000b29\/octopussy-mid.jpg","studio":"EON Productions","genre":"Action","title":"Octopussy","releaseDate":423705600000,"language":"en","tagline":"Nobody does him better.","type":"Movie","_key":"6889"} +{"label":"Louis Jourdan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ce\/4c9b60e57b9aa122e10005ce\/louis-jourdan-profile.jpg","version":43,"birthday":"-1531702800000","id":"10508","lastModified":"1299689028000","name":"Louis Jourdan","type":"Person","_key":"6890"} +{"label":"Kristina Wayborn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/279\/4c77cb0d7b9aa16a08000279\/kristina-wayborn-profile.jpg","version":22,"id":"10509","lastModified":"1299494538000","name":"Kristina Wayborn","type":"Person","_key":"6891"} +{"label":"Kabir Bedi","version":25,"id":"10510","lastModified":"1299492315000","name":"Kabir Bedi","type":"Person","_key":"6892"} +{"label":"David Meyer","version":22,"id":"10511","lastModified":"1299493594000","name":"David Meyer","type":"Person","_key":"6893"} +{"label":"Tony Meyer","version":21,"id":"10512","lastModified":"1299493866000","name":"Tony Meyer","type":"Person","_key":"6894"} +{"label":"Robert Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4bd5f792017a3c657d00015b\/robert-brown-profile.jpg","version":54,"id":"10513","lastModified":"1299492579000","name":"Robert Brown","type":"Person","_key":"6895"} +{"label":"Michaela Clavell","version":19,"id":"10514","lastModified":"1299493865000","name":"Michaela Clavell","type":"Person","_key":"6896"} +{"label":"Our Hospitality","description":"Our Hospitality is a silent film from 1923, starring Buster Keaton. The film is about a family feud that begins a young mans journey\u2026","id":"701","runtime":74,"imdbId":"tt0014341","version":109,"lastModified":"1299910852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4cec75387b9aa12f67000033\/our-hospitality-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Our Hospitality","releaseDate":-1455408000000,"language":"en","type":"Movie","_key":"6897"} +{"label":"John G. Blystone","version":18,"id":"10516","lastModified":"1300091728000","name":"John G. Blystone","type":"Person","_key":"6898"} +{"label":"Joe Roberts","version":40,"id":"10525","lastModified":"1300091102000","name":"Joe Roberts","type":"Person","_key":"6899"} +{"label":"Natalie Talmadge","version":17,"id":"10526","lastModified":"1300092230000","name":"Natalie Talmadge","type":"Person","_key":"6900"} +{"label":"Ralph Bushman","version":16,"id":"10527","lastModified":"1300092151000","name":"Ralph Bushman","type":"Person","_key":"6901"} +{"label":"Craig Ward","version":16,"id":"10528","lastModified":"1300092528000","name":"Craig Ward","type":"Person","_key":"6902"} +{"label":"Monte Collins","version":22,"id":"10529","lastModified":"1300091459000","name":"Monte Collins","type":"Person","_key":"6903"} +{"label":"Joe Keaton","version":25,"id":"10530","lastModified":"1300090875000","name":"Joe Keaton","type":"Person","_key":"6904"} +{"label":"Kitty Bradbury","version":21,"id":"10531","lastModified":"1300092151000","name":"Kitty Bradbury","type":"Person","_key":"6905"} +{"label":"Buster Keaton Jr.","version":14,"id":"143384","lastModified":"1300094067000","name":"Buster Keaton Jr.","type":"Person","_key":"6906"} +{"label":"A Streetcar Named Desire","description":"A Streetcar Named Desire is the film adaptation from the play by Tennessee Williams and directed by Elia Kazan. The film tells the drama story of the conflict between run down southern states and the exemplary industrial states in the north.","id":"702","runtime":122,"imdbId":"tt0044081","trailer":"http:\/\/www.youtube.com\/watch?v=bmQcX8hE33w","version":129,"lastModified":"1299911350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc90b8d017a3c57fe0040a5\/a-streetcar-named-desire-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"A Streetcar Named Desire","releaseDate":-577152000000,"language":"en","type":"Movie","_key":"6907"} +{"label":"Vivien Leigh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/011\/4c504b2e7b9aa13bf5000011\/vivien-leigh-profile.jpg","version":32,"id":"10538","lastModified":"1300090376000","name":"Vivien Leigh","type":"Person","_key":"6908"} +{"label":"Kim Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ea\/4bf189d2017a3c320b0002ea\/kim-hunter-profile.jpg","version":44,"id":"10539","lastModified":"1300090499000","name":"Kim Hunter","type":"Person","_key":"6909"} +{"label":"Peg Hillias","version":14,"id":"10540","lastModified":"1300092044000","name":"Peg Hillias","type":"Person","_key":"6910"} +{"label":"Wright King","version":15,"id":"10541","lastModified":"1300091393000","name":"Wright King","type":"Person","_key":"6911"} +{"label":"Richard Garrick","version":18,"id":"10542","lastModified":"1300091823000","name":"Richard Garrick","type":"Person","_key":"6912"} +{"label":"Ann Dere","version":14,"id":"10543","lastModified":"1300092044000","name":"Ann Dere","type":"Person","_key":"6913"} +{"label":"Edna Thomas","version":14,"id":"10544","lastModified":"1300092044000","name":"Edna Thomas","type":"Person","_key":"6914"} +{"label":"Mickey Kuhn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4c5192d67b9aa13d4e0001d1\/mickey-kuhn-profile.jpg","version":28,"id":"10545","lastModified":"1300091682000","name":"Mickey Kuhn","type":"Person","_key":"6915"} +{"label":"Annie Hall","description":"The neurotic New Yorker Woody Allen tells one of the greatest romantic comedies to be set in the city of New York.","id":"703","runtime":93,"imdbId":"tt0075686","version":147,"lastModified":"1299910330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10d\/4bdaf1e7017a3c5d8800010d\/annie-hall-mid.jpg","studio":"Charles H. Joffe Productions","genre":"Comedy","title":"Annie Hall","releaseDate":230342400000,"language":"en","tagline":"A nervous romance.","type":"Movie","_key":"6916"} +{"label":"Tony Roberts","version":27,"id":"10555","lastModified":"1300090551000","name":"Tony Roberts","type":"Person","_key":"6917"} +{"label":"Carol Kane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f2\/4ca0c58d7b9aa164630001f2\/carol-kane-profile.jpg","version":53,"id":"10556","lastModified":"1300090646000","name":"Carol Kane","type":"Person","_key":"6918"} +{"label":"Paul Simon","version":19,"id":"10557","lastModified":"1300091880000","name":"Paul Simon","type":"Person","_key":"6919"} +{"label":"Janet Margolin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21c\/4bf1927a017a3c321700021c\/janet-margolin-profile.jpg","version":39,"id":"10558","lastModified":"1300091860000","name":"Janet Margolin","type":"Person","_key":"6920"} +{"label":"Colleen Dewhurst","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32f\/4d0415fa5e73d621a100232f\/colleen-dewhurst-profile.jpg","version":28,"id":"10559","lastModified":"1300091016000","name":"Colleen Dewhurst","type":"Person","_key":"6921"} +{"label":"Donald Symington","version":15,"id":"10560","lastModified":"1300091815000","name":"Donald Symington","type":"Person","_key":"6922"} +{"label":"Helen Ludlam","version":16,"id":"10561","lastModified":"1300091679000","name":"Helen Ludlam","type":"Person","_key":"6923"} +{"label":"Mordecai Lawner","version":17,"id":"10562","lastModified":"1300091631000","name":"Mordecai Lawner","type":"Person","_key":"6924"} +{"label":"Joan Neuman","version":15,"id":"10563","lastModified":"1300091815000","name":"Joan Neuman","type":"Person","_key":"6925"} +{"label":"Jonathan Munk","version":15,"id":"10564","lastModified":"1300091815000","name":"Jonathan Munk","type":"Person","_key":"6926"} +{"label":"Dick Cavett","version":15,"id":"10565","lastModified":"1300091609000","name":"Dick Cavett","type":"Person","_key":"6927"} +{"label":"Marshall McLuhan","version":15,"id":"10566","lastModified":"1300091609000","name":"Marshall McLuhan","type":"Person","_key":"6928"} +{"label":"Truman Capote","version":28,"id":"1930","lastModified":"1299493229000","name":"Truman Capote","type":"Person","_key":"6929"} +{"label":"A Hard Day's Night","description":"A Hard Day\u2019s Night is named after the successful Beatles album of the same name. The film tells in a mocking style the life of the modern pop stars. The film shows the Beatles at the height of their career as they move between hotel rooms, trains, and concerts.","id":"704","runtime":91,"imdbId":"tt0058182","version":80,"lastModified":"1299911623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d5\/4bc90b94017a3c57fe0040d5\/a-hard-day-s-night-mid.jpg","studio":"United Artists","genre":"Documentary","title":"A Hard Day's Night","releaseDate":-173232000000,"language":"en","type":"Movie","_key":"6930"} +{"label":"Richard Lester","version":36,"id":"10586","lastModified":"1300090523000","name":"Richard Lester","type":"Person","_key":"6931"} +{"label":"John Lennon","version":39,"id":"10592","lastModified":"1300090713000","name":"John Lennon","type":"Person","_key":"6932"} +{"label":"Paul McCartney","version":52,"id":"10215","lastModified":"1300123198000","name":"Paul McCartney","type":"Person","_key":"6933"} +{"label":"George Harrison","version":35,"id":"10593","lastModified":"1300091270000","name":"George Harrison","type":"Person","_key":"6934"} +{"label":"Ringo Starr","version":51,"id":"10594","lastModified":"1300090689000","name":"Ringo Starr","type":"Person","_key":"6935"} +{"label":"Wilfrid Brambell","version":18,"id":"10595","lastModified":"1300092659000","name":"Wilfrid Brambell","type":"Person","_key":"6936"} +{"label":"Norman Rossington","version":18,"id":"10596","lastModified":"1300092151000","name":"Norman Rossington","type":"Person","_key":"6937"} +{"label":"John Junkin","version":15,"id":"10597","lastModified":"1300092642000","name":"John Junkin","type":"Person","_key":"6938"} +{"label":"Victor Spinetti","version":33,"id":"10598","lastModified":"1300091459000","name":"Victor Spinetti","type":"Person","_key":"6939"} +{"label":"Anna Quayle","version":16,"id":"10599","lastModified":"1300092230000","name":"Anna Quayle","type":"Person","_key":"6940"} +{"label":"Deryck Guyler","version":17,"id":"10600","lastModified":"1300092234000","name":"Deryck Guyler","type":"Person","_key":"6941"} +{"label":"All About Eve","description":"Director Mankiewisz\u2019s tragic comedy about the American show business is one of the darkest and most cynical films ever made. Bette Davis is brilliant in her roll as a once Broadway Diva who takes care of the promotion for the talented actress Eva (played by Anne Baxter). All together the film won six Oscars in 1951. ","id":"705","runtime":138,"imdbId":"tt0042192","trailer":"http:\/\/www.youtube.com\/watch?v=skZDG3Ffw8A","version":151,"lastModified":"1299911217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e2\/4bc90b95017a3c57fe0040e2\/all-about-eve-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"All About Eve","releaseDate":-606528000000,"language":"en","tagline":"It's all about women...and their men!","type":"Movie","_key":"6942"} +{"label":"Joseph L. Mankiewicz","version":51,"id":"10601","lastModified":"1300127830000","name":"Joseph L. Mankiewicz","type":"Person","_key":"6943"} +{"label":"Anne Baxter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/100\/4bcc7729017a3c0f26000100\/anne-baxter-profile.jpg","version":46,"id":"10606","lastModified":"1300127272000","name":"Anne Baxter","type":"Person","_key":"6944"} +{"label":"Celeste Holm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a5\/4bfade14017a3c702f0006a5\/celeste-holm-profile.jpg","version":20,"id":"10607","lastModified":"1300091435000","name":"Celeste Holm","type":"Person","_key":"6945"} +{"label":"Gary Merrill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4bdaf2eb017a3c5d92000134\/gary-merrill-profile.jpg","version":37,"id":"10608","lastModified":"1300127296000","name":"Gary Merrill","type":"Person","_key":"6946"} +{"label":"Hugh Marlowe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06e\/4bd5ca3a017a3c657e00006e\/hugh-marlowe-profile.jpg","version":40,"id":"10609","lastModified":"1300127296000","name":"Hugh Marlowe","type":"Person","_key":"6947"} +{"label":"Gregory Ratoff","version":20,"id":"10610","lastModified":"1300091573000","name":"Gregory Ratoff","type":"Person","_key":"6948"} +{"label":"Barbara Bates","version":26,"id":"10611","lastModified":"1300091666000","name":"Barbara Bates","type":"Person","_key":"6949"} +{"label":"Fontane Effi Briest","description":"Fontane Effi Briest is a German made film based on one of the most famous German novels by Theodor FontaneEffi Briest (Hanna Schygulla) is a socially ambitious, 17-year-old German girl who accepts a proposal of marriage from Baron Geert Von Instetten, a much older diplomat. Unfortunately, neither the Baron's family nor anyone in the secluded town she now calls home accept Effi as an equal. Starved for companionship, Effi begins an innocent friendship with a well-known womanizer that may jeopardi","id":"706","runtime":141,"imdbId":"tt0071458","version":87,"lastModified":"1299911280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4cb3b3375e73d6613800008f\/fontane-effi-briest-mid.jpg","studio":"Tango-Film","genre":"Drama","title":"Fontane Effi Briest","releaseDate":141609600000,"language":"en","type":"Movie","_key":"6950"} +{"label":"Wolfgang Schenck","version":14,"id":"10619","lastModified":"1300091786000","name":"Wolfgang Schenck","type":"Person","_key":"6951"} +{"label":"Ulli Lommel","version":56,"id":"10620","lastModified":"1300091050000","name":"Ulli Lommel","type":"Person","_key":"6952"} +{"label":"Herbert Steinmetz","version":13,"id":"10621","lastModified":"1300092386000","name":"Herbert Steinmetz","type":"Person","_key":"6953"} +{"label":"Ursula Str\u00e4tz","version":13,"id":"10622","lastModified":"1300092386000","name":"Ursula Str\u00e4tz","type":"Person","_key":"6954"} +{"label":"Barbara Lass","version":16,"id":"10623","lastModified":"1300091842000","name":"Barbara Lass","type":"Person","_key":"6955"} +{"label":"Rudolf Lenz","version":19,"id":"10624","lastModified":"1300091638000","name":"Rudolf Lenz","type":"Person","_key":"6956"} +{"label":"Andrea Schober","version":15,"id":"10625","lastModified":"1300092192000","name":"Andrea Schober","type":"Person","_key":"6957"} +{"label":"Theo Tecklenburg","version":13,"id":"10626","lastModified":"1300092386000","name":"Theo Tecklenburg","type":"Person","_key":"6958"} +{"label":"Eva Mattes","version":29,"id":"10627","lastModified":"1300090473000","name":"Eva Mattes","type":"Person","_key":"6959"} +{"label":"An Dorthe Braker","version":48,"id":"710","lastModified":"1299951046000","name":"An Dorthe Braker","type":"Person","_key":"6960"} +{"label":"A View to a Kill","description":"A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin. The 14th film from the Legendary James Bond series starring Roger Moore as a British super agent.","id":"707","runtime":131,"imdbId":"tt0090264","trailer":"http:\/\/www.youtube.com\/watch?v=CMm9rZPIS5s","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=VIEWTOAK","version":166,"lastModified":"1299911718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/457\/4d73c4de7b9aa114bf000457\/a-view-to-a-kill-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"A View to a Kill","releaseDate":485568000000,"language":"en","tagline":"Has James Bond finally met his match?","type":"Movie","_key":"6961"} +{"label":"Tanya Roberts","version":31,"id":"10660","lastModified":"1300124581000","name":"Tanya Roberts","type":"Person","_key":"6962"} +{"label":"Grace Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84b\/4d6ce6975e73d66b2300384b\/grace-jones-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bGrace Jones was born in Spanish Town, Jamaica, the daughter of Marjorie and Robert W. Jones, who was a politician and Apostolic clergyman. Her parents took Grace and her brother Chris and relocated to Syracuse, New York in 1965. Before becoming a successful model in New York City and Paris, Jones studied theatre at Onondaga Community College.<\/span><\/font>","version":43,"birthday":"-682308000000","id":"10661","birthplace":"Spanish Town, Jamaica","lastModified":"1300124581000","name":"Grace Jones","type":"Person","_key":"6963"} +{"label":"Patrick Macnee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e5\/4cc9bc6f7b9aa16b9f0003e5\/patrick-macnee-profile.jpg","version":47,"id":"10662","lastModified":"1300124581000","name":"Patrick Macnee","type":"Person","_key":"6964"} +{"label":"Fiona Fullerton","version":23,"id":"10663","lastModified":"1300124582000","name":"Fiona Fullerton","type":"Person","_key":"6965"} +{"label":"Willoughby Gray","version":23,"id":"10664","lastModified":"1300124582000","name":"Willoughby Gray","type":"Person","_key":"6966"} +{"label":"The Living Daylights","description":"James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious. The 15th film from the Legendary James Bond series starring Timothy Dalton as a British super agent.","id":"708","runtime":130,"imdbId":"tt0093428","trailer":"http:\/\/www.youtube.com\/watch?v=u3QtS3tL2Qw","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=LIVINGDA","version":180,"lastModified":"1300124847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d8\/4d439bc77b9aa15bb50055d8\/the-living-daylights-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"The Living Daylights","releaseDate":551923200000,"language":"en","tagline":"Licensed to thrill.","type":"Movie","_key":"6967"} +{"label":"Timothy Dalton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9c4\/4c0bdc59017a3c7e870009c4\/timothy-dalton-profile.jpg","version":64,"id":"10669","lastModified":"1300124837000","name":"Timothy Dalton","type":"Person","_key":"6968"} +{"label":"Maryam d'Abo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/186\/4bd70e77017a3c21f1000186\/maryam-d-abo-profile.jpg","version":36,"id":"10670","lastModified":"1300124837000","name":"Maryam d'Abo","type":"Person","_key":"6969"} +{"label":"Joe Don Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c1\/4bfbcf61017a3c702f0007c1\/joe-don-baker-profile.jpg","version":65,"id":"10671","lastModified":"1300124837000","name":"Joe Don Baker","type":"Person","_key":"6970"} +{"label":"Art Malik","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/368\/4bf733a9017a3c7727000368\/art-malik-profile.jpg","version":44,"birthday":"-540694800000","id":"10672","birthplace":"Bahawalpur, Pakistan","lastModified":"1300124837000","name":"Art Malik","type":"Person","_key":"6971"} +{"label":"Andreas Wisniewski","version":31,"id":"10673","lastModified":"1300124837000","name":"Andreas Wisniewski","type":"Person","_key":"6972"} +{"label":"Thomas Wheatley","version":19,"id":"10674","lastModified":"1300124837000","name":"Thomas Wheatley","type":"Person","_key":"6973"} +{"label":"Caroline Bliss","version":19,"id":"10675","lastModified":"1300124838000","name":"Caroline Bliss","type":"Person","_key":"6974"} +{"label":"Licence to Kill","description":"James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge. The 16th film from the Legendary James Bond series starring Timothy Dalton as a British super agent.","id":"709","runtime":133,"imdbId":"tt0097742","trailer":"http:\/\/www.youtube.com\/watch?v=_tdjaCfirUc","homepage":"http:\/\/www.007.com\/","version":196,"lastModified":"1300081871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81a\/4d73befd5e73d62d7e00081a\/licence-to-kill-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"Licence to Kill","releaseDate":613699200000,"language":"en","tagline":"His bad side is a dangerous place to be.","type":"Movie","_key":"6975"} +{"label":"Carey Lowell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f8\/4bd72858017a3c21f60000f8\/carey-lowell-profile.jpg","version":29,"id":"10679","lastModified":"1300090481000","name":"Carey Lowell","type":"Person","_key":"6976"} +{"label":"Talisa Soto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cd\/4bd70e54017a3c21f50000cd\/talisa-soto-profile.jpg","version":40,"id":"10680","lastModified":"1300090407000","name":"Talisa Soto","type":"Person","_key":"6977"} +{"label":"Wayne Newton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ff\/4c0bdce0017a3c7e890009ff\/wayne-newton-profile.jpg","version":25,"birthday":"-875757600000","id":"10681","birthplace":"Norfolk, Virginia","lastModified":"1300090458000","name":"Wayne Newton","type":"Person","_key":"6978"} +{"label":"Anthony Starke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f6\/4bd70b5f017a3c21f20000f6\/anthony-starke-profile.jpg","version":30,"id":"10682","lastModified":"1300091089000","name":"Anthony Starke","type":"Person","_key":"6979"} +{"label":"GoldenEye","description":"James Bond must unmask the mysterious head of the Janus Syndicate and prevent his one time ally - Alec Trevelyan Agent 006 - from utilising the GoldenEye weapons system to inflict devastating revenge on Britain. --- The 17th film from the legendary James Bond series and the first starring Pierce Brosnan.","id":"710","runtime":130,"imdbId":"tt0113189","trailer":"http:\/\/www.youtube.com\/watch?v=3TkRKQkc3KQ","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=GOLDENEY","version":198,"lastModified":"1300061686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07b\/4cae491d5e73d652ad00007b\/goldeneye-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"GoldenEye","releaseDate":816480000000,"language":"en","tagline":"When the world is the target and the threat is real, you can still depend on one man.","type":"Movie","_key":"6980"} +{"label":"Izabella Scorupco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4bd70cd6017a3c21ec0000fb\/izabella-scorupco-profile.jpg","version":48,"id":"10695","lastModified":"1300090326000","name":"Izabella Scorupco","type":"Person","_key":"6981"} +{"label":"Famke Janssen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/139\/4bcc8a2a017a3c0f32000139\/famke-janssen-profile.jpg","version":107,"id":"10696","lastModified":"1300090262000","name":"Famke Janssen","type":"Person","_key":"6982"} +{"label":"Alan Cumming","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/110\/4bd70b05017a3c21e9000110\/alan-cumming-profile.jpg","version":104,"id":"10697","lastModified":"1300090378000","name":"Alan Cumming","type":"Person","_key":"6983"} +{"label":"Tch\u00e9ky Karyo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/430\/4c7a5d595e73d613d5000430\/tcheky-karyo-profile.jpg","version":90,"id":"10698","lastModified":"1300090348000","name":"Tch\u00e9ky Karyo","type":"Person","_key":"6984"} +{"label":"Samantha Bond","version":55,"id":"10699","lastModified":"1300090399000","name":"Samantha Bond","type":"Person","_key":"6985"} +{"label":"Serena Gordon","version":21,"id":"10700","lastModified":"1300091291000","name":"Serena Gordon","type":"Person","_key":"6986"} +{"label":"Simon Kunz","version":22,"id":"10701","lastModified":"1300090911000","name":"Simon Kunz","type":"Person","_key":"6987"} +{"label":"Martin Campbell","version":68,"id":"10702","lastModified":"1300090390000","name":"Martin Campbell","type":"Person","_key":"6988"} +{"label":"Finding Forrester","description":"Gus van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.","id":"711","runtime":136,"imdbId":"tt0181536","trailer":"http:\/\/www.youtube.com\/watch?v=ziT9MlQjDjM","version":130,"lastModified":"1300061476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4d0a7b5d7b9aa162af0005c1\/finding-forrester-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Finding Forrester","releaseDate":977443200000,"language":"en","type":"Movie","_key":"6989"} +{"label":"Rob Brown","version":26,"id":"10689","lastModified":"1300091065000","name":"Rob Brown","type":"Person","_key":"6990"} +{"label":"Anna Paquin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf1\/4c0befda017a3c3519000cf1\/anna-paquin-profile.jpg","biography":"Anna Paquin is the star of several major motion pictures, including her first Oscar winning performance in The Piano (1993), the role of the young Jane in the 1996 film Jane Eyre (1996), and the role of Amy Alden in the charming family film, Fly Away Home (1996). With a well-developed vocabulary and gentle sense of humor, Paquin proves herself to be the most enchanting young talent working today. Paquin's rising stardom has often been a cause of charming media shyness, where it is obvious that s","version":105,"birthday":"396309600000","id":"10690","birthplace":"Winnipeg, Manitoba, Canada ","lastModified":"1300090300000","name":"Anna Paquin","type":"Person","_key":"6991"} +{"label":"Michael Pitt","version":32,"id":"10692","lastModified":"1299914460000","name":"Michael Pitt","type":"Person","_key":"6992"} +{"label":"Stephanie Berry","version":25,"id":"10693","lastModified":"1300091184000","name":"Stephanie Berry","type":"Person","_key":"6993"} +{"label":"Glenn Fitzgerald","version":32,"id":"10694","lastModified":"1300091931000","name":"Glenn Fitzgerald","type":"Person","_key":"6994"} +{"label":"Four Weddings And A Funeral","description":"Four Weddings And A Funeral is a British comedy about a British Man named Charles and an American Woman named Carrie who go through numerous weddings before they determine if they are right for one another. ","id":"712","runtime":117,"imdbId":"tt0109831","trailer":"http:\/\/www.youtube.com\/watch?v=Qb7bu_n1erY","homepage":"http:\/\/workingtitlefilms.com\/film.php?filmID=59","version":161,"lastModified":"1300061304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/181\/4bc90bae017a3c57fe004181\/four-weddings-and-a-funeral-mid.jpg","studio":"Working Title Films","genre":"Comedy","title":"Four Weddings And A Funeral","releaseDate":763171200000,"language":"en","tagline":"Five Good Reasons To Stay Single","type":"Movie","_key":"6995"} +{"label":"James Fleet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c43\/4cf5d0bb5e73d62999000c43\/james-fleet-profile.jpg","version":25,"id":"10726","lastModified":"1300090467000","name":"James Fleet","type":"Person","_key":"6996"} +{"label":"David Bower","version":19,"id":"10728","lastModified":"1300091573000","name":"David Bower","type":"Person","_key":"6997"} +{"label":"Charlotte Coleman","version":20,"id":"10729","lastModified":"1300091786000","name":"Charlotte Coleman","type":"Person","_key":"6998"} +{"label":"Rowan Atkinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4c8642d97b9aa1545f000081\/rowan-atkinson-profile.jpg","version":92,"birthday":"1262732400000","id":"10730","lastModified":"1299491346000","name":"Rowan Atkinson","type":"Person","_key":"6999"} +{"label":"Anna Chancellor","version":33,"id":"10731","lastModified":"1299493003000","name":"Anna Chancellor","type":"Person","_key":"7000"} +{"label":"Timothy Walker","version":19,"id":"10736","lastModified":"1300091204000","name":"Timothy Walker","type":"Person","_key":"7001"} +{"label":"The Piano","description":"Meloncholy drama about the Pianist named Ada who because of an arranged marriage moved to New Zealand with her daughter to start a new life. Her husband has no sense for music and sells her piano to the neighbors. This causes her to however to have more interest in the piano and it\u2019s new owner\u2026","id":"713","runtime":121,"imdbId":"tt0107822","trailer":"http:\/\/www.youtube.com\/watch?v=MLpzo_nwZpE","version":90,"lastModified":"1300061099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18f\/4bc90baf017a3c57fe00418f\/the-piano-mid.jpg","studio":"Ciby 2000","genre":"Drama","title":"The Piano","releaseDate":745113600000,"language":"en","type":"Movie","_key":"7002"} +{"label":"Tungia Baker","version":13,"id":"10755","lastModified":"1300091819000","name":"Tungia Baker","type":"Person","_key":"7003"} +{"label":"Kerry Walker","version":22,"id":"10756","lastModified":"1300091437000","name":"Kerry Walker","type":"Person","_key":"7004"} +{"label":"Genevi\u00e8ve Lemon","version":15,"id":"10760","lastModified":"1300091819000","name":"Genevi\u00e8ve Lemon","type":"Person","_key":"7005"} +{"label":"Te Whatanui Skipwith","version":14,"id":"10761","lastModified":"1300091695000","name":"Te Whatanui Skipwith","type":"Person","_key":"7006"} +{"label":"Jane Campion","version":37,"id":"10757","lastModified":"1300090393000","name":"Jane Campion","type":"Person","_key":"7007"} +{"label":"Tomorrow Never Dies","description":"A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium. --- The 18th film from the legendary James Bond series, starring Pierce Brosnan.","id":"714","runtime":119,"imdbId":"tt0120347","trailer":"http:\/\/www.youtube.com\/watch?v=Oy-fmWJ7oUk","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=TOMNEVER","version":200,"lastModified":"1300060897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/915\/4d6bb0347b9aa13629003915\/tomorrow-never-dies-mid.jpg","studio":"Danjag S.A.","genre":"Action","title":"Tomorrow Never Dies","releaseDate":881884800000,"language":"en","tagline":"The Man. The Number. The License...are all back.","type":"Movie","_key":"7008"} +{"label":"Teri Hatcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/369\/4cf228c57b9aa14497000369\/teri-hatcher-profile.jpg","version":50,"id":"10742","lastModified":"1300090387000","name":"Teri Hatcher","type":"Person","_key":"7009"} +{"label":"Ricky Jay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/168\/4d7266367b9aa10f58000168\/ricky-jay-profile.jpg","version":34,"id":"10743","lastModified":"1300090855000","name":"Ricky Jay","type":"Person","_key":"7010"} +{"label":"Geoffrey Palmer","version":27,"id":"10746","lastModified":"1299492856000","name":"Geoffrey Palmer","type":"Person","_key":"7011"} +{"label":"Julian Fellowes","version":38,"id":"10747","lastModified":"1300090977000","name":"Julian Fellowes","type":"Person","_key":"7012"} +{"label":"Terence Rigby","version":21,"id":"10748","lastModified":"1300091141000","name":"Terence Rigby","type":"Person","_key":"7013"} +{"label":"Roger Spottiswoode","version":68,"id":"1724","lastModified":"1299701185000","name":"Roger Spottiswoode","type":"Person","_key":"7014"} +{"label":"Blade Trilogy","description":"The successful blockbuster vampire series with Wesley Snipes in the lead role.","id":"735","version":35,"lastModified":"1299910470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/540\/4c6df2ca5e73d65f79000540\/blade-trilogy-mid.jpg","title":"Blade Trilogy","language":"en","type":"Movie","_key":"7015"} +{"label":"Tillsammans","description":"Elisabeths husband is on the verge of leaving after she and her son move into the alternative hippie apartment of her brother. She learns that the world can be viewed from different perspectives in this important comedy film from Swedish director Moodysson.","id":"742","runtime":106,"imdbId":"tt0203166","version":87,"lastModified":"1299815608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bb\/4bc90bb5017a3c57fe0041bb\/tillsammans-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"Tillsammans","releaseDate":967161600000,"language":"en","type":"Movie","_key":"7016"} +{"label":"Lukas Moodysson","version":34,"id":"11037","lastModified":"1300090866000","name":"Lukas Moodysson","type":"Person","_key":"7017"} +{"label":"Malin Fornander","version":16,"id":"11240","lastModified":"1300092060000","name":"Malin Fornander","type":"Person","_key":"7018"} +{"label":"Emma Samuelsson","version":15,"id":"11038","lastModified":"1300091588000","name":"Emma Samuelsson","type":"Person","_key":"7019"} +{"label":"Sam Kessel","version":17,"id":"11039","lastModified":"1300092092000","name":"Sam Kessel","type":"Person","_key":"7020"} +{"label":"Gustaf Hammarsten","version":21,"id":"11040","lastModified":"1300092542000","name":"Gustaf Hammarsten","type":"Person","_key":"7021"} +{"label":"Anja Lundkvist","version":18,"id":"11041","lastModified":"1300092060000","name":"Anja Lundkvist","type":"Person","_key":"7022"} +{"label":"Jessica Liedberg","version":16,"id":"11042","lastModified":"1300092060000","name":"Jessica Liedberg","type":"Person","_key":"7023"} +{"label":"Axel Zuber","version":17,"id":"11043","lastModified":"1300092060000","name":"Axel Zuber","type":"Person","_key":"7024"} +{"label":"Shanti Roney","version":18,"id":"11044","lastModified":"1300090860000","name":"Shanti Roney","type":"Person","_key":"7025"} +{"label":"Ola Rapace","version":53,"id":"11045","lastModified":"1300092267000","name":"Ola Rapace","type":"Person","_key":"7026"} +{"label":"Olle Sarri","version":29,"id":"11046","lastModified":"1300091628000","name":"Olle Sarri","type":"Person","_key":"7027"} +{"label":"Cecilia Frode","version":20,"id":"11047","lastModified":"1300091729000","name":"Cecilia Frode","type":"Person","_key":"7028"} +{"label":"Claes Hartelius","version":15,"id":"11048","lastModified":"1300092060000","name":"Claes Hartelius","type":"Person","_key":"7029"} +{"label":"Th\u00e9r\u00e8se Brunnander","version":15,"id":"11049","lastModified":"1300092060000","name":"Th\u00e9r\u00e8se Brunnander","type":"Person","_key":"7030"} +{"label":"Henrik Lundstr\u00f6m","version":18,"id":"11050","lastModified":"1300092092000","name":"Henrik Lundstr\u00f6m","type":"Person","_key":"7031"} +{"label":"Emil Moodysson","version":15,"id":"11051","lastModified":"1300092060000","name":"Emil Moodysson","type":"Person","_key":"7032"} +{"label":"Lars Frode","version":15,"id":"11052","lastModified":"1300092060000","name":"Lars Frode","type":"Person","_key":"7033"} +{"label":"Zugv\u00f6gel \u2013 einmal nach Inari","description":"Peter Lichtefelde makes a hit with his debut film Zugv\u00f6gel. The film about a Finnish traveler was originally planned for the TV but would become a success in theaters.","id":"743","runtime":87,"imdbId":"tt0129659","version":58,"lastModified":"1299531824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4ced3e617b9aa1313c000065\/zugvogel-einmal-nach-inari-mid.jpg","studio":"Bosko Biati Film","genre":"Comedy","title":"Zugv\u00f6gel \u2013 einmal nach Inari","releaseDate":883612800000,"language":"en","type":"Movie","_key":"7034"} +{"label":"Peter Lichtefeld","version":15,"id":"11069","lastModified":"1300091657000","name":"Peter Lichtefeld","type":"Person","_key":"7035"} +{"label":"Outi M\u00e4enp\u00e4\u00e4","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/702\/4d2a0d025e73d626bc003702\/outi-m-enp-profile.jpg","version":20,"id":"11070","lastModified":"1300091012000","name":"Outi M\u00e4enp\u00e4\u00e4","type":"Person","_key":"7036"} +{"label":"Peter Lohmeyer","version":22,"id":"11071","lastModified":"1300090963000","name":"Peter Lohmeyer","type":"Person","_key":"7037"} +{"label":"Charlie Hendricks","version":14,"id":"11255","lastModified":"1300091869000","name":"Charlie Hendricks","type":"Person","_key":"7038"} +{"label":"Johannes Herrschmann","version":18,"id":"11256","lastModified":"1300092528000","name":"Johannes Herrschmann","type":"Person","_key":"7039"} +{"label":"Dagmar Sachse","version":14,"id":"11257","lastModified":"1300091869000","name":"Dagmar Sachse","type":"Person","_key":"7040"} +{"label":"Hilmi S\u00f6zer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/528\/4c9b555b7b9aa12337000528\/hilmi-sozer-profile.jpg","version":29,"id":"11258","lastModified":"1299493673000","name":"Hilmi S\u00f6zer","type":"Person","_key":"7041"} +{"label":"Oliver Marlo","version":15,"id":"11259","lastModified":"1300092230000","name":"Oliver Marlo","type":"Person","_key":"7042"} +{"label":"P\u00e9ter Franke","version":20,"id":"11260","lastModified":"1300090962000","name":"P\u00e9ter Franke","type":"Person","_key":"7043"} +{"label":"Vibeke Andersen","version":15,"id":"11261","lastModified":"1300091923000","name":"Vibeke Andersen","type":"Person","_key":"7044"} +{"label":"Friedrich K\u00fcppersbusch","version":14,"id":"11262","lastModified":"1300092642000","name":"Friedrich K\u00fcppersbusch","type":"Person","_key":"7045"} +{"label":"Peter Franz\u00e9n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/748\/4d2a1afd5e73d626b0003748\/peter-franz-n-profile.jpg","version":25,"id":"11263","lastModified":"1300091013000","name":"Peter Franz\u00e9n","type":"Person","_key":"7046"} +{"label":"Marko Lakobrija","version":14,"id":"11264","lastModified":"1300091695000","name":"Marko Lakobrija","type":"Person","_key":"7047"} +{"label":"Nina Vorbrodt","version":14,"id":"11265","lastModified":"1300092642000","name":"Nina Vorbrodt","type":"Person","_key":"7048"} +{"label":"Top Gun","description":"For Lieutenant Pete Mitchell and his friend and Co-Pilot Nick Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. In the training Pete falls madly in love with one of his instructors named Charlie. Yet life isn\u2019t all roses, Pete\u2019s friend Nick has a fatal plane crash that tests Pete\u2019s will to continue his training.","id":"744","runtime":110,"imdbId":"tt0092099","trailer":"http:\/\/www.youtube.com\/watch?v=VN8ze3S0Uj8","version":178,"lastModified":"1299912032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cd\/4bc90bb9017a3c57fe0041cd\/top-gun-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Top Gun","releaseDate":516585600000,"language":"en","tagline":"Up there with the best of the best.","type":"Movie","_key":"7049"} +{"label":"Kelly McGillis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de2\/4cbcde505e73d67782000de2\/kelly-mcgillis-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Kelly Ann McGillis<\/b> (born July 9, 1957)<sup id=\"cite_ref-0\" class=\"reference\" style=\"line-height: 1em; font-weight: normal; font-style: normal; \"><a href=\"http:\/\/en.wikipedia.org\/wiki\/Kelly_McGillis#cite_note-0\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; white-spac","version":38,"id":"11084","lastModified":"1300090370000","name":"Kelly McGillis","type":"Person","_key":"7050"} +{"label":"Anthony Edwards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d48\/4d27b9247b9aa134dc001d48\/anthony-edwards-profile.jpg","version":59,"id":"11085","lastModified":"1300090297000","name":"Anthony Edwards","type":"Person","_key":"7051"} +{"label":"John Stockwell","version":46,"id":"57082","lastModified":"1300090416000","name":"John Stockwell","type":"Person","_key":"7052"} +{"label":"Barry Tubb","version":19,"id":"11088","lastModified":"1300090623000","name":"Barry Tubb","type":"Person","_key":"7053"} +{"label":"Whip Hubley","version":19,"id":"11089","lastModified":"1300090626000","name":"Whip Hubley","type":"Person","_key":"7054"} +{"label":"Adrian Pasdar","version":25,"id":"17304","lastModified":"1300090697000","name":"Adrian Pasdar","type":"Person","_key":"7055"} +{"label":"The Sixth Sense","description":"A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see ghosts of dead people.","id":"745","runtime":107,"imdbId":"tt0167404","version":207,"lastModified":"1300090051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f16\/4d5055a57b9aa13aba00cf16\/the-sixth-sense-mid.jpg","studio":"Hollywood Pictures","genre":"Drama","title":"The Sixth Sense","releaseDate":933552000000,"language":"en","tagline":"I see dead people","type":"Movie","_key":"7056"} +{"label":"M. Night Shyamalan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4c38a85e7b9aa10ed90000f5\/m-night-shyamalan-profile.jpg","version":160,"birthday":"18745200000","id":"11614","birthplace":"Mah\u00e9, Pondicherry, India","lastModified":"1300090284000","name":"M. Night Shyamalan","type":"Person","_key":"7057"} +{"label":"Olivia Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e7\/4cbe72047b9aa138d90015e7\/olivia-williams-26-july-1968-profile.jpg","version":75,"birthday":"-45277200000","id":"11616","birthplace":"Camden Town, London, England, UK ","lastModified":"1300090350000","name":"Olivia Williams","type":"Person","_key":"7058"} +{"label":"Mischa Barton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f6\/4ceec20e5e73d654fa0000f6\/mischa-barton-profile.jpg","version":45,"id":"11617","lastModified":"1300090418000","name":"Mischa Barton","type":"Person","_key":"7059"} +{"label":"Greg Wood","version":26,"id":"11618","lastModified":"1300091435000","name":"Greg Wood","type":"Person","_key":"7060"} +{"label":"Jeffrey Zubernis","version":24,"id":"11619","lastModified":"1300091679000","name":"Jeffrey Zubernis","type":"Person","_key":"7061"} +{"label":"Bruce Norris","version":24,"id":"11621","lastModified":"1300091475000","name":"Bruce Norris","type":"Person","_key":"7062"} +{"label":"The Last Emperor","description":"The Last Emperor is a monumental film about the life of the last emperor of the Chinese Quinn dynasty. Director Bertolucci illustrates the life of Pu-Yi who was crowned emperor at the age of two only to lose it at the age of five. The film won a total of nine Oscars in 1987.","id":"746","runtime":156,"imdbId":"tt0093389","version":191,"lastModified":"1300059900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/217\/4bc90bc1017a3c57fe004217\/the-last-emperor-mid.jpg","studio":"AAA Productions","genre":"Drama","title":"The Last Emperor","releaseDate":562464000000,"language":"en","type":"Movie","_key":"7063"} +{"label":"Bernardo Bertolucci","version":51,"id":"4956","lastModified":"1299492013000","name":"Bernardo Bertolucci","type":"Person","_key":"7064"} +{"label":"John Lone","version":30,"id":"11389","lastModified":"1299494077000","name":"John Lone","type":"Person","_key":"7065"} +{"label":"Joan Chen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4d0f2f807b9aa1177000313b\/joan-chen-profile.jpg","version":50,"id":"6720","lastModified":"1300090377000","name":"Joan Chen","type":"Person","_key":"7066"} +{"label":"Dennis Dun","version":25,"id":"11392","lastModified":"1300091223000","name":"Dennis Dun","type":"Person","_key":"7067"} +{"label":"Ry\u00fbichi Sakamoto","version":41,"id":"11382","lastModified":"1300091077000","name":"Ry\u00fbichi Sakamoto","type":"Person","_key":"7068"} +{"label":"Ruocheng Ying","version":15,"id":"11394","lastModified":"1300091695000","name":"Ruocheng Ying","type":"Person","_key":"7069"} +{"label":"Victor Wong","version":37,"id":"11395","lastModified":"1300090872000","name":"Victor Wong","type":"Person","_key":"7070"} +{"label":"Maggie Han","version":14,"id":"11396","lastModified":"1300091417000","name":"Maggie Han","type":"Person","_key":"7071"} +{"label":"Cary-Hiroyuki Tagawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2db\/4d1d7ac65e73d66b340002db\/cary-hiroyuki-tagawa-profile.jpg","version":54,"id":"11398","lastModified":"1300090399000","name":"Cary-Hiroyuki Tagawa","type":"Person","_key":"7072"} +{"label":"Fumihiko Ikeda","version":14,"id":"11399","lastModified":"1300091588000","name":"Fumihiko Ikeda","type":"Person","_key":"7073"} +{"label":"Shaun of the Dead","description":"Shaun of the Dead is a humorous homage to Zombie movies from director Edgar Wright; an outrageous romantic comedy with zombies. ","id":"747","runtime":95,"imdbId":"tt0365748","trailer":"http:\/\/www.youtube.com\/watch?v=CfBewQPFdKE","homepage":"http:\/\/uip.co.uk\/romzom\/","version":192,"lastModified":"1300059636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/249\/4bc90bc7017a3c57fe004249\/shaun-of-the-dead-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Shaun of the Dead","releaseDate":1095984000000,"language":"en","tagline":"A Romantic Comedy. With Zombies.","type":"Movie","_key":"7074"} +{"label":"Edgar Wright","version":88,"birthday":"135471600000","id":"11090","lastModified":"1300090271000","name":"Edgar Wright","type":"Person","_key":"7075"} +{"label":"Simon Pegg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4bd74bd3017a3c21e900015c\/simon-pegg-profile.jpg","biography":"Simon Pegg (born Simon John Beckingham; 14 February 1970) is an English actor, comedian, writer, film producer and director. He is best known for his starring roles in Shaun of the Dead, Hot Fuzz, Run Fatboy Run, the comedy series Spaced and his portrayal of Montgomery \"Scotty\" Scott in the revamped Star Trek. Much of his major work has been in collaboration with some combination of Nick Frost, Jessica Hynes, Dylan Moran and Edgar Wright.","version":143,"birthday":"3798000000","id":"11108","birthplace":"Brockworth, Gloucestershire, England, UK","lastModified":"1300129592000","name":"Simon Pegg","type":"Person","_key":"7076"} +{"label":"Nick Frost","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26c\/4bf9801f017a3c702f00026c\/nick-frost-profile.jpg","version":59,"id":"11109","lastModified":"1300090287000","name":"Nick Frost","type":"Person","_key":"7077"} +{"label":"Kate Ashfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4bf98070017a3c70360001cc\/kate-ashfield-profile.jpg","version":43,"birthday":"75855600000","id":"11110","birthplace":"Oldham, Lancashire, England","lastModified":"1300090294000","name":"Kate Ashfield","type":"Person","_key":"7078"} +{"label":"Lucy Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d0\/4bf980c9017a3c70360001d0\/lucy-davis-profile.jpg","version":19,"id":"11111","lastModified":"1300090850000","name":"Lucy Davis","type":"Person","_key":"7079"} +{"label":"Peter Serafinowicz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/137\/4ceea5ec5e73d65313000137\/peter-serafinowicz-profile.jpg","version":27,"id":"11115","lastModified":"1300090367000","name":"Peter Serafinowicz","type":"Person","_key":"7080"} +{"label":"Steve Emerson","version":20,"id":"11117","lastModified":"1300090384000","name":"Steve Emerson","type":"Person","_key":"7081"} +{"label":"Nicola Cunningham","version":18,"id":"11116","lastModified":"1300090379000","name":"Nicola Cunningham","type":"Person","_key":"7082"} +{"label":"Reece Shearsmith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4ceea67e5e73d6531600011a\/reece-shearsmith-profile.jpg","version":33,"id":"34551","lastModified":"1300091065000","name":"Reece Shearsmith","type":"Person","_key":"7083"} +{"label":"Jessica Hynes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4ceea6c05e73d653170000d4\/jessica-hynes-profile.jpg","version":30,"id":"47730","lastModified":"1300114107000","name":"Jessica Hynes","type":"Person","_key":"7084"} +{"label":"X-Men Collection","description":"The X-Men collection is based of the popular comic book of the same name by cult author Stan Lee. The story goes that people have developed mutations that give them special superhero like abilities. ","id":"748","version":129,"lastModified":"1300059428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4d0892eb7b9aa101d400031c\/x-men-collection-mid.jpg","title":"X-Men Collection","language":"en","type":"Movie","_key":"7085"} +{"label":"Miss Marple","description":"A series of four cult films starring Margeret Rutherford as Miss Marple.","id":"749","title":"Miss Marple","language":"en","lastModified":"1300059171000","version":224,"type":"Movie","_key":"7086"} +{"label":"Murder, She Said","description":"Miss Marple believes she\u2019s seen a murder in a passing by train yet when the police find no evidence she decides to investigate it on her own. Her inquisitions lead her to a mountain top. The first of four films starring Margaret Rutherford as Miss-Marple that all achieved cult status.","id":"750","runtime":87,"imdbId":"tt0055205","version":96,"lastModified":"1299913007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/280\/4bc90bce017a3c57fe004280\/murder-she-said-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Murder, She Said","releaseDate":-251942400000,"language":"en","type":"Movie","_key":"7087"} +{"label":"George Pollock","version":27,"birthday":"-1980810000000","id":"11118","birthplace":"Leicester, Leicestershire, England","lastModified":"1300091150000","name":"George Pollock","type":"Person","_key":"7088"} +{"label":"Margaret Rutherford","version":37,"birthday":"-2450134800000","id":"11127","lastModified":"1300091269000","name":"Margaret Rutherford","type":"Person","_key":"7089"} +{"label":"Arthur Kennedy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14a\/4bcc6f61017a3c0f2c00014a\/arthur-kennedy-profile.jpg","version":69,"id":"11128","lastModified":"1300090277000","name":"Arthur Kennedy","type":"Person","_key":"7090"} +{"label":"Muriel Pavlow","version":18,"id":"11129","lastModified":"1300091050000","name":"Muriel Pavlow","type":"Person","_key":"7091"} +{"label":"James Robertson Justice","version":28,"id":"11130","lastModified":"1300091341000","name":"James Robertson Justice","type":"Person","_key":"7092"} +{"label":"Thorley Walters","version":26,"id":"11131","lastModified":"1300091849000","name":"Thorley Walters","type":"Person","_key":"7093"} +{"label":"Charles 'Bud' Tingwell","version":31,"id":"11132","lastModified":"1300091194000","name":"Charles 'Bud' Tingwell","type":"Person","_key":"7094"} +{"label":"Conrad Phillips","version":19,"id":"11133","lastModified":"1300101649000","name":"Conrad Phillips","type":"Person","_key":"7095"} +{"label":"Ronald Howard","version":16,"id":"11134","lastModified":"1300091798000","name":"Ronald Howard","type":"Person","_key":"7096"} +{"label":"Joan Hickson","version":30,"id":"11135","lastModified":"1300091342000","name":"Joan Hickson","type":"Person","_key":"7097"} +{"label":"Stringer Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4bdc13b8017a3c1d3d000071\/stringer-davis-profile.jpg","version":26,"birthday":"-2227222800000","id":"11136","lastModified":"1300092170000","name":"Stringer Davis","type":"Person","_key":"7098"} +{"label":"Ronnie Raymond","version":15,"id":"11137","lastModified":"1300092641000","name":"Ronnie Raymond","type":"Person","_key":"7099"} +{"label":"Gerald Cross","version":14,"id":"11138","lastModified":"1300092406000","name":"Gerald Cross","type":"Person","_key":"7100"} +{"label":"Michael Golden","version":15,"id":"11139","lastModified":"1300092260000","name":"Michael Golden","type":"Person","_key":"7101"} +{"label":"Murder at the Gallop","description":"Miss Marple and Mr Stinger are witness to the death of the very old and rich Mr. Enderby by heart attack. Yet they have their doubts about what happened. The police don\u2019t believe them thus leading Miss Marple to yet again investigate by herself. A cult film starring Margeret Rutherford.","id":"751","runtime":81,"imdbId":"tt0057334","version":89,"lastModified":"1299945579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4bdc107f017a3c1d39000071\/murder-at-the-gallop-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Murder at the Gallop","releaseDate":-205891200000,"language":"en","type":"Movie","_key":"7102"} +{"label":"Flora Robson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78b\/4be1eb8e017a3c35bd00078b\/flora-robson-profile.jpg","version":30,"id":"30126","lastModified":"1300091171000","name":"Flora Robson","type":"Person","_key":"7103"} +{"label":"Gordon Harris","version":13,"id":"47380","lastModified":"1300093309000","name":"Gordon Harris","type":"Person","_key":"7104"} +{"label":"Robert Urquhart","version":21,"id":"30187","lastModified":"1300092894000","name":"Robert Urquhart","type":"Person","_key":"7105"} +{"label":"Katya Douglas","version":16,"id":"47381","lastModified":"1300092875000","name":"Katya Douglas","type":"Person","_key":"7106"} +{"label":"Noel Howlett","version":16,"id":"47383","lastModified":"1300093309000","name":"Noel Howlett","type":"Person","_key":"7107"} +{"label":"Duncan Lamont","version":27,"id":"29659","lastModified":"1300092984000","name":"Duncan Lamont","type":"Person","_key":"7108"} +{"label":"Kevin Stoney","version":17,"id":"47384","lastModified":"1300093365000","name":"Kevin Stoney","type":"Person","_key":"7109"} +{"label":"Frank Atkinson","version":19,"id":"47385","lastModified":"1300093309000","name":"Frank Atkinson","type":"Person","_key":"7110"} +{"label":"Roger Avon","version":18,"id":"47386","lastModified":"1300093309000","name":"Roger Avon","type":"Person","_key":"7111"} +{"label":"Fred Griffith","version":17,"id":"47387","lastModified":"1300091144000","name":"Fred Griffith","type":"Person","_key":"7112"} +{"label":"James Villiers","version":24,"id":"39066","lastModified":"1300091939000","name":"James Villiers","type":"Person","_key":"7113"} +{"label":"V for Vendetta","description":"Set against the futuristic landscape of a totalitarian Britain, the movie tells the story of a mild-mannered young woman named Evey who is rescued from a life-and-death situation by a man known only as \u201cV\u201d \u2013 a striking figure in a black cloak and a high-peaked hat under which he wears a curious mask. Incomparably charismatic and ferociously skilled in the art of combat and deception, V ignites a revolution when he urges his fellow citizens to rise up against tyranny and oppression.","id":"752","runtime":132,"imdbId":"tt0434409","trailer":"http:\/\/www.youtube.com\/watch?v=ZR5xUl2Suew","homepage":"http:\/\/vforvendetta.warnerbros.com\/","version":584,"lastModified":"1300116660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cd\/4bc90bed017a3c57fe0042cd\/v-for-vendetta-mid.jpg","studio":"Virtual Studios","genre":"Action","title":"V for Vendetta","releaseDate":1142553600000,"language":"en","tagline":"People should not be afraid of their governments. Governments should be afraid of their people.","type":"Movie","_key":"7114"} +{"label":"James McTeigue","version":36,"id":"11266","lastModified":"1300090599000","name":"James McTeigue","type":"Person","_key":"7115"} +{"label":"Natasha Wightman","version":34,"id":"11277","lastModified":"1300091036000","name":"Natasha Wightman","type":"Person","_key":"7116"} +{"label":"Rupert Graves","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17e\/4ca16a2d5e73d612d700017e\/rupert-graves-profile.jpg","version":60,"id":"11278","lastModified":"1300090664000","name":"Rupert Graves","type":"Person","_key":"7117"} +{"label":"Roger Allam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/118\/4ceec8c15e73d654f6000118\/roger-allam-profile.jpg","version":44,"id":"11279","lastModified":"1300040674000","name":"Roger Allam","type":"Person","_key":"7118"} +{"label":"Ben Miles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68b\/4ce51d9f7b9aa168af00068b\/ben-miles-profile.jpg","version":32,"id":"11280","lastModified":"1300092262000","name":"Ben Miles","type":"Person","_key":"7119"} +{"label":"Sin\u00e9ad Cusack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c8\/4ce51dc97b9aa168b20006c8\/sinead-cusack-profile.jpg","version":49,"id":"11281","lastModified":"1300091266000","name":"Sin\u00e9ad Cusack","type":"Person","_key":"7120"} +{"label":"John Standing","version":49,"id":"11282","lastModified":"1300090553000","name":"John Standing","type":"Person","_key":"7121"} +{"label":"Clive Ashborn","version":30,"id":"11283","lastModified":"1300091429000","name":"Clive Ashborn","type":"Person","_key":"7122"} +{"label":"Emma Field-Rayner","version":35,"id":"11284","lastModified":"1300090774000","name":"Emma Field-Rayner","type":"Person","_key":"7123"} +{"label":"Ian Burfield","version":30,"id":"11285","lastModified":"1300091428000","name":"Ian Burfield","type":"Person","_key":"7124"} +{"label":"Mark Phoenix","version":33,"id":"40636","lastModified":"1300091036000","name":"Mark Phoenix","type":"Person","_key":"7125"} +{"label":"Alister Mazzotti","version":32,"id":"16716","lastModified":"1300090920000","name":"Alister Mazzotti","type":"Person","_key":"7126"} +{"label":"Billie Cook","version":33,"id":"40637","lastModified":"1300091132000","name":"Billie Cook","type":"Person","_key":"7127"} +{"label":"Guy Henry","version":34,"id":"40638","lastModified":"1300090999000","name":"Guy Henry","type":"Person","_key":"7128"} +{"label":"Cosima Shaw","version":38,"id":"40639","lastModified":"1300091132000","name":"Cosima Shaw","type":"Person","_key":"7129"} +{"label":"Megan Gay","version":39,"id":"40640","lastModified":"1300090472000","name":"Megan Gay","type":"Person","_key":"7130"} +{"label":"Roderic Culver","version":31,"id":"40641","lastModified":"1300090850000","name":"Roderic Culver","type":"Person","_key":"7131"} +{"label":"Tara Hacking","version":33,"id":"40642","lastModified":"1300091132000","name":"Tara Hacking","type":"Person","_key":"7132"} +{"label":"Andy Rashleigh","version":33,"id":"40643","lastModified":"1300091132000","name":"Andy Rashleigh","type":"Person","_key":"7133"} +{"label":"Chad Stahelski","version":33,"id":"40644","lastModified":"1300091036000","name":"Chad Stahelski","type":"Person","_key":"7134"} +{"label":"Antje Rau","version":54,"id":"40645","lastModified":"1300090774000","name":"Antje Rau","type":"Person","_key":"7135"} +{"label":"Amelda Brown","version":35,"id":"40646","lastModified":"1300091032000","name":"Amelda Brown","type":"Person","_key":"7136"} +{"label":"Richard Campbell","version":33,"id":"40647","lastModified":"1300091132000","name":"Richard Campbell","type":"Person","_key":"7137"} +{"label":"Patricia Gannon","version":33,"id":"40648","lastModified":"1300091036000","name":"Patricia Gannon","type":"Person","_key":"7138"} +{"label":"Mark Longhurst","version":33,"id":"40649","lastModified":"1300091132000","name":"Mark Longhurst","type":"Person","_key":"7139"} +{"label":"Simon Holmes","version":34,"id":"40650","lastModified":"1300091176000","name":"Simon Holmes","type":"Person","_key":"7140"} +{"label":"Charles Cork","version":33,"id":"40651","lastModified":"1300091036000","name":"Charles Cork","type":"Person","_key":"7141"} +{"label":"John Ringham","version":33,"id":"40652","lastModified":"1300090920000","name":"John Ringham","type":"Person","_key":"7142"} +{"label":"Oliver Bradshaw","version":33,"id":"40653","lastModified":"1300091036000","name":"Oliver Bradshaw","type":"Person","_key":"7143"} +{"label":"Jack Schouten","version":33,"id":"40654","lastModified":"1300091132000","name":"Jack Schouten","type":"Person","_key":"7144"} +{"label":"Caoimhe Murdock","version":33,"id":"40655","lastModified":"1300091132000","name":"Caoimhe Murdock","type":"Person","_key":"7145"} +{"label":"Juliet Howland","version":42,"id":"40656","lastModified":"1300091143000","name":"Juliet Howland","type":"Person","_key":"7146"} +{"label":"Brin Rosser","version":33,"id":"40657","lastModified":"1300091132000","name":"Brin Rosser","type":"Person","_key":"7147"} +{"label":"Raife Patrick Burchell","version":31,"id":"40658","lastModified":"1300091291000","name":"Raife Patrick Burchell","type":"Person","_key":"7148"} +{"label":"Adrian Finighan","version":33,"id":"40659","lastModified":"1300091131000","name":"Adrian Finighan","type":"Person","_key":"7149"} +{"label":"Malcolm Sinclair","version":45,"id":"40660","lastModified":"1300090457000","name":"Malcolm Sinclair","type":"Person","_key":"7150"} +{"label":"Bradley Steve Ford","version":33,"id":"40661","lastModified":"1300091131000","name":"Bradley Steve Ford","type":"Person","_key":"7151"} +{"label":"Madeleine Rakic-Platt","version":33,"id":"40662","lastModified":"1300091216000","name":"Madeleine Rakic-Platt","type":"Person","_key":"7152"} +{"label":"Selina Giles","version":37,"id":"40663","lastModified":"1300090627000","name":"Selina Giles","type":"Person","_key":"7153"} +{"label":"Carsten Hayes","version":34,"id":"40664","lastModified":"1300091291000","name":"Carsten Hayes","type":"Person","_key":"7154"} +{"label":"Derek Hutchinson","version":36,"id":"40665","lastModified":"1300090935000","name":"Derek Hutchinson","type":"Person","_key":"7155"} +{"label":"Martin Savage","version":37,"id":"30328","lastModified":"1300091452000","name":"Martin Savage","type":"Person","_key":"7156"} +{"label":"Grant Burgin","version":33,"id":"40666","lastModified":"1300091131000","name":"Grant Burgin","type":"Person","_key":"7157"} +{"label":"Greg Donaldson","version":37,"id":"40667","lastModified":"1300091088000","name":"Greg Donaldson","type":"Person","_key":"7158"} +{"label":"Imogen Poots","version":52,"id":"17606","lastModified":"1300090331000","name":"Imogen Poots","type":"Person","_key":"7159"} +{"label":"Jason Griffiths","version":39,"id":"40078","lastModified":"1300090828000","name":"Jason Griffiths","type":"Person","_key":"7160"} +{"label":"Laura Greenwood","version":33,"id":"40668","lastModified":"1300090920000","name":"Laura Greenwood","type":"Person","_key":"7161"} +{"label":"Kyra Meyer","version":34,"id":"40669","lastModified":"1300091170000","name":"Kyra Meyer","type":"Person","_key":"7162"} +{"label":"Paul Antony-Barber","version":33,"id":"40670","lastModified":"1300091131000","name":"Paul Antony-Barber","type":"Person","_key":"7163"} +{"label":"Anna Farnworth","version":33,"id":"40671","lastModified":"1300091131000","name":"Anna Farnworth","type":"Person","_key":"7164"} +{"label":"Mary Stockley","version":37,"id":"40672","lastModified":"1300091082000","name":"Mary Stockley","type":"Person","_key":"7165"} +{"label":"Simon Newby","version":33,"id":"40673","lastModified":"1300091036000","name":"Simon Newby","type":"Person","_key":"7166"} +{"label":"David Merheb","version":33,"id":"40674","lastModified":"1300091131000","name":"David Merheb","type":"Person","_key":"7167"} +{"label":"Daniel Donaldson","version":33,"id":"40675","lastModified":"1300091036000","name":"Daniel Donaldson","type":"Person","_key":"7168"} +{"label":"Dulcie Smart","version":34,"id":"40676","lastModified":"1300091131000","name":"Dulcie Smart","type":"Person","_key":"7169"} +{"label":"Ben Posener","version":33,"id":"40677","lastModified":"1300091131000","name":"Ben Posener","type":"Person","_key":"7170"} +{"label":"Ian T. Dickinson","version":35,"id":"40678","lastModified":"1300091131000","name":"Ian T. Dickinson","type":"Person","_key":"7171"} +{"label":"Sophia New","version":33,"id":"40679","lastModified":"1300090918000","name":"Sophia New","type":"Person","_key":"7172"} +{"label":"Julie Brown","version":39,"id":"40680","lastModified":"1300091165000","name":"Julie Brown","type":"Person","_key":"7173"} +{"label":"Gerard Gilroy","version":33,"id":"40681","lastModified":"1300091130000","name":"Gerard Gilroy","type":"Person","_key":"7174"} +{"label":"Eamon Geoghegan","version":33,"id":"40682","lastModified":"1300091131000","name":"Eamon Geoghegan","type":"Person","_key":"7175"} +{"label":"Matthew Bates","version":33,"id":"40683","lastModified":"1300091130000","name":"Matthew Bates","type":"Person","_key":"7176"} +{"label":"David Leitch","version":55,"id":"40684","lastModified":"1300090488000","name":"David Leitch","type":"Person","_key":"7177"} +{"label":"Matt Wilkinson","version":34,"id":"40685","lastModified":"1300091036000","name":"Matt Wilkinson","type":"Person","_key":"7178"} +{"label":"Martin McGlade","version":33,"id":"40686","lastModified":"1300091130000","name":"Martin McGlade","type":"Person","_key":"7179"} +{"label":"Richard Laing","version":33,"id":"40687","lastModified":"1300091216000","name":"Richard Laing","type":"Person","_key":"7180"} +{"label":"Michael Simkins","version":33,"id":"40688","lastModified":"1300091130000","name":"Michael Simkins","type":"Person","_key":"7181"} +{"label":"William Tapley","version":35,"id":"40689","lastModified":"1300091130000","name":"William Tapley","type":"Person","_key":"7182"} +{"label":"Faces","description":"Director Cassavetes created Faces after his first experimental film Shadows. In the style of Cinema Verite the film tells the story of a marriage right before a divorce.","id":"753","runtime":129,"imdbId":"tt0062952","version":104,"lastModified":"1299910574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/031\/4c7dc0c85e73d648e0000031\/faces-mid.jpg","studio":"Maurice McEndree Productions","genre":"Drama","title":"Faces","releaseDate":-34819200000,"language":"en","type":"Movie","_key":"7183"} +{"label":"Lynn Carlin","version":14,"id":"11140","lastModified":"1300091696000","name":"Lynn Carlin","type":"Person","_key":"7184"} +{"label":"Fred Draper","version":15,"id":"11141","lastModified":"1300091936000","name":"Fred Draper","type":"Person","_key":"7185"} +{"label":"Dorothy Gulliver","version":15,"id":"11142","lastModified":"1300091915000","name":"Dorothy Gulliver","type":"Person","_key":"7186"} +{"label":"Joanne Moore Jordan","version":14,"id":"11143","lastModified":"1300091924000","name":"Joanne Moore Jordan","type":"Person","_key":"7187"} +{"label":"Darlene Conley","version":15,"id":"11144","lastModified":"1300091289000","name":"Darlene Conley","type":"Person","_key":"7188"} +{"label":"Gene Darfler","version":14,"id":"11145","lastModified":"1300091922000","name":"Gene Darfler","type":"Person","_key":"7189"} +{"label":"Elizabeth Deering","version":14,"id":"11146","lastModified":"1300091484000","name":"Elizabeth Deering","type":"Person","_key":"7190"} +{"label":"John Cassavetes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db2\/4bfebea7017a3c7031000db2\/john-cassavetes-profile.jpg","version":70,"id":"11147","lastModified":"1300132834000","name":"John Cassavetes","type":"Person","_key":"7191"} +{"label":"Face\/Off","description":"This is a funny 1990's cop movie. John Travolta plays Archer, an FBI agent. Nicolas Cage plays the bad guy, Castor Troy. After putting Castor in a coma, Archer borrows his face for some undercover work using cutting edge movie science! Suprisingly, Castor wakes up and uses Archer's discarded face for criminal mayhem! Will they ever be reunited with their original faces?! Yes. Or will they?? Watch to find out!","id":"754","runtime":138,"imdbId":"tt0119094","trailer":"http:\/\/www.youtube.com\/watch?v=Vlg-VRc6TbY","version":199,"lastModified":"1299910872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6b\/4d40997e7b9aa15bbb002a6b\/face-off-mid.jpg","studio":"Permut Presentations","genre":"Action","title":"Face\/Off","releaseDate":867369600000,"language":"en","tagline":"Only one will survive.","type":"Movie","_key":"7192"} +{"label":"Joan Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/345\/4c19816d5e73d64a25000345\/joan-allen-profile.jpg","version":101,"id":"11148","lastModified":"1300090292000","name":"Joan Allen","type":"Person","_key":"7193"} +{"label":"Dominique Swain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65b\/4be1eb09017a3c35b500065b\/dominique-swain-profile.jpg","version":37,"id":"11149","lastModified":"1300090428000","name":"Dominique Swain","type":"Person","_key":"7194"} +{"label":"Gina Gershon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53c\/4be0a2b8017a3c35bb00053c\/gina-gershon-profile.jpg","version":66,"id":"11150","lastModified":"1300090263000","name":"Gina Gershon","type":"Person","_key":"7195"} +{"label":"Nick Cassavetes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b54\/4cf3e3c05e73d62384000b54\/nick-cassavetes-profile.jpg","version":63,"id":"11151","lastModified":"1300090361000","name":"Nick Cassavetes","type":"Person","_key":"7196"} +{"label":"Margaret Cho","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/140\/4d4ee8fb5e73d617b3003140\/margaret-cho-profile.jpg","version":36,"id":"11152","lastModified":"1300090422000","name":"Margaret Cho","type":"Person","_key":"7197"} +{"label":"James Denton","version":23,"id":"11153","lastModified":"1300092086000","name":"James Denton","type":"Person","_key":"7198"} +{"label":"Matt Ross","version":35,"id":"11154","lastModified":"1299688929000","name":"Matt Ross","type":"Person","_key":"7199"} +{"label":"Thomas Jane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4c23bbc87b9aa1446f000019\/thomas-jane-profile.jpg","version":77,"id":"11155","lastModified":"1300131406000","name":"Thomas Jane","type":"Person","_key":"7200"} +{"label":"David McCurley","version":20,"id":"11156","lastModified":"1300092087000","name":"David McCurley","type":"Person","_key":"7201"} +{"label":"Myles Jeffrey","version":28,"id":"11157","lastModified":"1300091310000","name":"Myles Jeffrey","type":"Person","_key":"7202"} +{"label":"John Woo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/159\/4bf94210017a3c702f000159\/john-woo-profile.jpg","version":136,"birthday":"-757040400000","id":"11401","birthplace":"Guangzhou, China","lastModified":"1300090331000","name":"John Woo","type":"Person","_key":"7203"} +{"label":"From Dusk Till Dawn","description":"Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.","id":"755","runtime":108,"imdbId":"tt0116367","trailer":"http:\/\/www.youtube.com\/watch?v=Wgk_SAbC5_0","version":164,"lastModified":"1300058097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36a\/4bc90c20017a3c57fe00436a\/from-dusk-till-dawn-mid.jpg","studio":"A Band Apart","genre":"Action","title":"From Dusk Till Dawn","releaseDate":822009600000,"language":"en","tagline":"One night is all that stands between them and freedom. But it's going to be a hell of a night.","type":"Movie","_key":"7204"} +{"label":"Ernest Liu","version":20,"id":"11158","lastModified":"1300091128000","name":"Ernest Liu","type":"Person","_key":"7205"} +{"label":"Cheech Marin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4c7e5d407b9aa10d9800015b\/cheech-marin-profile.jpg","version":125,"id":"11159","lastModified":"1300090424000","name":"Cheech Marin","type":"Person","_key":"7206"} +{"label":"Tom Savini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f0\/4cf086fe5e73d619260004f0\/tom-savini-profile.jpg","version":101,"id":"11161","lastModified":"1300090399000","name":"Tom Savini","type":"Person","_key":"7207"} +{"label":"Brenda Hillhouse","version":21,"id":"11162","lastModified":"1300090772000","name":"Brenda Hillhouse","type":"Person","_key":"7208"} +{"label":"Kelly Preston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e27\/4d47ab2c5e73d66f59002e27\/kelly-preston-profile.jpg","version":99,"id":"11164","lastModified":"1300134016000","name":"Kelly Preston","type":"Person","_key":"7209"} +{"label":"Fantasia","description":"Fantasia is the adventurous 1940 experiment from Disney. The film sets Disney animated characters to classical music as Mickey Mouse uses his magic wand to set broomsticks dancing in one of the more famous elaborate scenes. The film was groundbreaking in its usage of animation and music and is still considered a masterpiece decades later.","id":"756","runtime":120,"imdbId":"tt0032455","trailer":"http:\/\/www.youtube.com\/watch?v=bCHd5C5ADRg","version":170,"lastModified":"1300057888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fd\/4d7918e77b9aa157bd0009fd\/fantasia-mid.jpg","studio":"RKO Radio Pictures","genre":"Animation","title":"Fantasia","releaseDate":-919382400000,"language":"en","tagline":"Hear the pictures! See the music!","type":"Movie","_key":"7210"} +{"label":"Samuel Armstrong","version":26,"id":"5691","lastModified":"1300091126000","name":"Samuel Armstrong","type":"Person","_key":"7211"} +{"label":"James Algar","version":39,"id":"5690","lastModified":"1300090794000","name":"James Algar","type":"Person","_key":"7212"} +{"label":"Bill Roberts","version":16,"id":"11427","lastModified":"1300091221000","name":"Bill Roberts","type":"Person","_key":"7213"} +{"label":"Paul Satterfield","version":16,"id":"11428","lastModified":"1300091602000","name":"Paul Satterfield","type":"Person","_key":"7214"} +{"label":"Hamilton Luske","version":73,"id":"11429","lastModified":"1300090588000","name":"Hamilton Luske","type":"Person","_key":"7215"} +{"label":"Jim Handley","version":15,"id":"11430","lastModified":"1300091602000","name":"Jim Handley","type":"Person","_key":"7216"} +{"label":"Ford Beebe","version":30,"id":"11431","lastModified":"1300095757000","name":"Ford Beebe","type":"Person","_key":"7217"} +{"label":"T. Hee","version":15,"id":"11432","lastModified":"1300092068000","name":"T. Hee","type":"Person","_key":"7218"} +{"label":"Norman Ferguson","version":17,"id":"11433","lastModified":"1300091602000","name":"Norman Ferguson","type":"Person","_key":"7219"} +{"label":"Wilfred Jackson","version":57,"id":"11434","lastModified":"1300091158000","name":"Wilfred Jackson","type":"Person","_key":"7220"} +{"label":"Murder Most Foul","description":"A murderer is brought to court and only Miss Marple is unconvinced of his innocence. Once again she begins her own investigation. The third Miss Marple film starring Margaret Rutherford as the quirky amateur detective.","id":"757","runtime":90,"imdbId":"tt0058383","version":103,"lastModified":"1299911636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38b\/4bc90c25017a3c57fe00438b\/murder-most-foul-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Murder Most Foul","releaseDate":-157420800000,"language":"en","type":"Movie","_key":"7221"} +{"label":"Ron Moody","version":24,"id":"41236","lastModified":"1300091957000","name":"Ron Moody","type":"Person","_key":"7222"} +{"label":"Andrew Cruickshank","version":21,"id":"47397","lastModified":"1300092260000","name":"Andrew Cruickshank","type":"Person","_key":"7223"} +{"label":"Megs Jenkins","version":21,"id":"47398","lastModified":"1300092060000","name":"Megs Jenkins","type":"Person","_key":"7224"} +{"label":"Dennis Price","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d7\/4c4741fa7b9aa15dde0002d7\/dennis-price-profile.jpg","version":49,"birthday":"-1720746000000","id":"30766","lastModified":"1300090443000","name":"Dennis Price","type":"Person","_key":"7225"} +{"label":"Ralph Michael","version":20,"id":"40160","lastModified":"1300091823000","name":"Ralph Michael","type":"Person","_key":"7226"} +{"label":"Murder Ahoy!","description":"During a annually board of trusties meeting one of the trustees dies. Miss Marple thinks he\u2019s been poisoned after finding a chemical on him. She sets off to investigate at the ship where he had just come from. The fourth and final film from the Miss Marple series starring Margaret Rutherford as the quirky amateur detective.","id":"758","runtime":93,"imdbId":"tt0058382","version":88,"lastModified":"1299912055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/394\/4bc90c25017a3c57fe004394\/murder-ahoy-mid.jpg","genre":"Crime","title":"Murder Ahoy!","releaseDate":-166492800000,"language":"en","type":"Movie","_key":"7227"} +{"label":"Lionel Jeffries","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/183\/4c518e1b7b9aa13d4d000183\/lionel-jeffries-profile.jpg","version":34,"birthday":"-1374714000000","id":"30706","lastModified":"1300091103000","name":"Lionel Jeffries","type":"Person","_key":"7228"} +{"label":"William Mervyn","version":27,"id":"47391","lastModified":"1300101650000","name":"William Mervyn","type":"Person","_key":"7229"} +{"label":"Henry Oscar","version":22,"id":"47396","lastModified":"1300093573000","name":"Henry Oscar","type":"Person","_key":"7230"} +{"label":"Joan Benham","version":18,"birthday":"-1629252000000","id":"47392","lastModified":"1300093001000","name":"Joan Benham","type":"Person","_key":"7231"} +{"label":"Nicholas Parsons","version":20,"id":"47394","lastModified":"1300093573000","name":"Nicholas Parsons","type":"Person","_key":"7232"} +{"label":"Miles Malleson","version":33,"birthday":"-2575155600000","id":"47395","birthplace":"Croydon, Surrey, England","lastModified":"1300092899000","name":"Miles Malleson","type":"Person","_key":"7233"} +{"label":"Gentlemen Prefer Blondes","description":"Gentlemen Prefer Blondes is a romantic comedy based on a successful musical and starring Marilyn Manroe in her last role in a film.","id":"759","runtime":91,"imdbId":"tt0045810","trailer":"http:\/\/www.youtube.com\/watch?v=ur9GKLl8v4U","version":103,"lastModified":"1299944152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ad\/4bc90c29017a3c57fe0043ad\/gentlemen-prefer-blondes-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Gentlemen Prefer Blondes","releaseDate":-519350400000,"language":"en","type":"Movie","_key":"7234"} +{"label":"Jane Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09e\/4bd6fbdc017a3c21ee00009e\/jane-russell-profile.jpg","version":33,"id":"11165","lastModified":"1300090719000","name":"Jane Russell","type":"Person","_key":"7235"} +{"label":"Elliott Reid","version":16,"id":"11168","lastModified":"1300091916000","name":"Elliott Reid","type":"Person","_key":"7236"} +{"label":"Charles Coburn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6dd\/4bf3f6ae017a3c320b0006dd\/charles-coburn-profile.jpg","version":39,"id":"11169","lastModified":"1300090523000","name":"Charles Coburn","type":"Person","_key":"7237"} +{"label":"Tommy Noonan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d6\/4c2b5b8e7b9aa15e990000d6\/tommy-noonan-profile.jpg","version":24,"id":"11170","lastModified":"1300091468000","name":"Tommy Noonan","type":"Person","_key":"7238"} +{"label":"George Winslow","version":14,"id":"11171","lastModified":"1300092386000","name":"George Winslow","type":"Person","_key":"7239"} +{"label":"Norma Varden","version":22,"id":"10926","lastModified":"1300091434000","name":"Norma Varden","type":"Person","_key":"7240"} +{"label":"Taylor Holmes","version":21,"id":"11172","lastModified":"1300091631000","name":"Taylor Holmes","type":"Person","_key":"7241"} +{"label":"The Adventures of Rabbi Jacob","description":"In this riot of frantic disguises and mistaken identities, Victor Pivert, a blustering, bigoted French factory owner, finds himself taken hostage by Slimane, an Arab rebel leader. The two dress up as rabbis as they try to elude not only assasins from Slimane's country, but also the police, who think Pivert is a murderer. Pivert ends up posing as Rabbi Jacob, a beloved figure who's returned to France for his first visit after 30 years in the United States. Adding to the confusion are Pivert's den","id":"760","runtime":100,"imdbId":"tt0069747","version":96,"lastModified":"1299531897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cf\/4d1118487b9aa114820004cf\/les-aventures-de-rabbi-jacob-mid.jpg","studio":"Les Films Pomereu","genre":"Comedy","title":"The Adventures of Rabbi Jacob","releaseDate":119750400000,"language":"en","type":"Movie","_key":"7242"} +{"label":"Louis de Fun\u00e8s","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04b\/4c132fe95e73d646e200004b\/louis-de-funes-profile.jpg","biography":"<!--[if gte mso 9]><xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG\/>\n <\/o:OfficeDocumentSettings>\n<\/xml><![endif]--><!--[if gte mso 9]><xml>\n <w:WordDocument>\n <w:View>Normal<\/w:View>\n <w:Zoom>0<\/w:Zoom>\n <w:TrackMoves\/>\n <w:TrackFormatting\/>\n <w:PunctuationKerning\/>\n <w:ValidateAgainstSchemas\/>\n <w:SaveIfXMLInvalid>false<\/w:SaveIfXMLInvalid>\n <w:IgnoreMixedContent>false<\/w:IgnoreMixedContent>\n <w:AlwaysShowPlaceholderText>false<\/w:AlwaysShowPlaceholderText>\n <w:DoNotPromoteQF\/>\n <w:L","version":227,"id":"11187","birthplace":"Courbevoie, Hauts-de-Seine, France ","lastModified":"1300090252000","name":"Louis de Fun\u00e8s","type":"Person","_key":"7243"} +{"label":"Suzy Delair","version":19,"id":"11188","lastModified":"1300090923000","name":"Suzy Delair","type":"Person","_key":"7244"} +{"label":"Claude Giraud","version":22,"id":"11189","lastModified":"1300091248000","name":"Claude Giraud","type":"Person","_key":"7245"} +{"label":"Henri Guybet","version":29,"id":"11192","lastModified":"1300091151000","name":"Henri Guybet","type":"Person","_key":"7246"} +{"label":"Renzo Montagnani","version":23,"id":"11190","lastModified":"1300091860000","name":"Renzo Montagnani","type":"Person","_key":"7247"} +{"label":"Xavier G\u00e9lin","version":18,"id":"11191","lastModified":"1300091828000","name":"Xavier G\u00e9lin","type":"Person","_key":"7248"} +{"label":"Popeck","version":22,"id":"11193","lastModified":"1300091573000","name":"Popeck","type":"Person","_key":"7249"} +{"label":"Denise Provence","version":19,"id":"11194","lastModified":"1300130812000","name":"Denise Provence","type":"Person","_key":"7250"} +{"label":"G\u00e9rard Oury","version":85,"id":"11195","lastModified":"1300091149000","name":"G\u00e9rard Oury","type":"Person","_key":"7251"} +{"label":"The Wing and the Thigh","description":"Charles Duchemin, a well-known gourmet and publisher of a famous restaurant guide, is waging a war against fast food entrepreneur Tri- catel to save the French art of cooking. After having agreed to appear on a talk show to show his skills in naming food and wine by taste, he is confronted with two disasters: his son wants to become a clown rather than a restaurant tester and he, the famous Charles Duchemin, has lost his taste!","id":"761","runtime":104,"imdbId":"tt0074103","version":85,"lastModified":"1299531830000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d0\/4bc90c2d017a3c57fe0043d0\/l-aile-ou-la-cuisse-mid.jpg","studio":"Les Films Christian Fechner","genre":"Comedy","title":"The Wing and the Thigh","releaseDate":215222400000,"language":"en","type":"Movie","_key":"7252"} +{"label":"Claude Zidi","version":51,"id":"11201","lastModified":"1300091242000","name":"Claude Zidi","type":"Person","_key":"7253"} +{"label":"Coluche","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c48\/4d7b24615e73d65ec1000c48\/coluche-profile.jpg","version":48,"birthday":"-794538000000","id":"11214","lastModified":"1300090522000","name":"Coluche","type":"Person","_key":"7254"} +{"label":"Claude Gensac","version":30,"id":"11217","lastModified":"1300091243000","name":"Claude Gensac","type":"Person","_key":"7255"} +{"label":"Ann Zacharias","version":17,"id":"11215","lastModified":"1300091460000","name":"Ann Zacharias","type":"Person","_key":"7256"} +{"label":"Julien Guiomar","version":28,"id":"11216","lastModified":"1300091871000","name":"Julien Guiomar","type":"Person","_key":"7257"} +{"label":"Georges Chamarat","version":19,"id":"11219","lastModified":"1300092426000","name":"Georges Chamarat","type":"Person","_key":"7258"} +{"label":"Fernand Guiot","version":17,"id":"11220","lastModified":"1300092410000","name":"Fernand Guiot","type":"Person","_key":"7259"} +{"label":"Raymond Bussi\u00e8res","version":25,"id":"11221","lastModified":"1300091481000","name":"Raymond Bussi\u00e8res","type":"Person","_key":"7260"} +{"label":"Vittorio Caprioli","version":25,"id":"11223","lastModified":"1300103471000","name":"Vittorio Caprioli","type":"Person","_key":"7261"} +{"label":"Monty Python and the Holy Grail","description":"The King Arthur and The Round Table saga about the search for the Holy Grail is portrayed a bit differently in his comedy from Monty Python. With a killer monster rabbit and many outrageous encounters this smart comedy has become a cult classic.","id":"762","runtime":91,"imdbId":"tt0071853","trailer":"http:\/\/www.youtube.com\/watch?v=RDM75-oXGmQ","homepage":"http:\/\/www.sonypictures.com\/cthe\/montypython\/","version":190,"lastModified":"1299943673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f6\/4bc90c34017a3c57fe0043f6\/monty-python-and-the-holy-grail-mid.jpg","studio":"Python (Monty) Pictures Limited","genre":"Comedy","title":"Monty Python and the Holy Grail","releaseDate":165715200000,"language":"en","tagline":"Makes Ben Hur look like an Epic","type":"Movie","_key":"7262"} +{"label":"Braindead","description":"Lionel, a Mama's boy has the unwanted honor of having to look after his overbearingly evil mother. He ends up falling in love with a local woman who believes that they're destined together. In a moment of intentional sabotage of one of their dates, his mother is bitten by a mysterious creature that ends up zombifying her. It's only a matter of time before she rises from the dead a powerful, bloodthirsty zombie. It's only a matter of time before she starts infecting residents of the town and Lion","id":"763","runtime":97,"imdbId":"tt0103873","version":97,"lastModified":"1299815788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/403\/4bc90c38017a3c57fe004403\/braindead-mid.jpg","studio":"New Zealand Film Commission","genre":"Comedy","title":"Braindead","releaseDate":716688000000,"language":"en","type":"Movie","_key":"7263"} +{"label":"Timothy Balme","version":14,"id":"11332","lastModified":"1300091573000","name":"Timothy Balme","type":"Person","_key":"7264"} +{"label":"Diana Pe\u00f1alver","version":14,"id":"11333","lastModified":"1300091392000","name":"Diana Pe\u00f1alver","type":"Person","_key":"7265"} +{"label":"Elizabeth Moody","version":14,"id":"11334","lastModified":"1300091573000","name":"Elizabeth Moody","type":"Person","_key":"7266"} +{"label":"Ian Watkin","version":15,"id":"11335","lastModified":"1300091220000","name":"Ian Watkin","type":"Person","_key":"7267"} +{"label":"Brenda Kendall","version":15,"id":"11336","lastModified":"1300092044000","name":"Brenda Kendall","type":"Person","_key":"7268"} +{"label":"Stephen Papps","version":14,"id":"11338","lastModified":"1300092386000","name":"Stephen Papps","type":"Person","_key":"7269"} +{"label":"Murray Keane","version":14,"id":"11340","lastModified":"1300092044000","name":"Murray Keane","type":"Person","_key":"7270"} +{"label":"Glenis Levestam","version":17,"id":"11341","lastModified":"1300091785000","name":"Glenis Levestam","type":"Person","_key":"7271"} +{"label":"Lewis Rowe","version":14,"id":"11342","lastModified":"1300092044000","name":"Lewis Rowe","type":"Person","_key":"7272"} +{"label":"Stuart Devenie","version":25,"id":"81876","lastModified":"1300092489000","name":"Stuart Devenie","type":"Person","_key":"7273"} +{"label":"The Evil Dead","description":"Ever-present, ever-listening, the Evil Dead lies in wait for the one ancient incantation that will give them license to possess the living. Watch in horror as five vacationing college students are forced into battle with the supernatural forces that occupy the forests and dark bowers of man's domain. The innocent must suffer. The guilty must be punished. One-by-one, the students are possessed by these demons whose thirst for revenge is insatiable. As the night wanes, only one man remains... Ash.","id":"764","runtime":85,"imdbId":"tt0083907","trailer":"http:\/\/www.youtube.com\/watch?v=Wi6yYitWd3o","version":140,"lastModified":"1299912064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/426\/4bc90c3b017a3c57fe004426\/the-evil-dead-mid.jpg","studio":"Renaissance Pictures","genre":"Comedy","title":"The Evil Dead","releaseDate":371952000000,"language":"en","type":"Movie","_key":"7274"} +{"label":"Ellen Sandweiss","version":19,"id":"11462","lastModified":"1300091454000","name":"Ellen Sandweiss","type":"Person","_key":"7275"} +{"label":"Richard DeManincor","version":17,"id":"11463","lastModified":"1300091204000","name":"Richard DeManincor","type":"Person","_key":"7276"} +{"label":"Betsy Baker","version":18,"id":"11464","lastModified":"1300091726000","name":"Betsy Baker","type":"Person","_key":"7277"} +{"label":"Theresa Tilly","version":17,"id":"11465","lastModified":"1300092044000","name":"Theresa Tilly","type":"Person","_key":"7278"} +{"label":"Evil Dead II","description":"Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from \u201cThe Book of the Dead.\u201d As they play the recording an evil power is unleashed taking over Linda\u2019s body.","id":"765","runtime":85,"imdbId":"tt0092991","trailer":"http:\/\/www.youtube.com\/watch?v=w6mEiJRiXqc","version":104,"lastModified":"1300056392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2c\/4cfae2e75e73d6299b002a2c\/evil-dead-ii-mid.jpg","studio":"Renaissance Pictures","genre":"Comedy","title":"Evil Dead II","releaseDate":542592000000,"language":"en","tagline":"Kiss Your Nerves Good-Bye!","type":"Movie","_key":"7279"} +{"label":"Sarah Berry","version":15,"id":"11749","lastModified":"1300091168000","name":"Sarah Berry","type":"Person","_key":"7280"} +{"label":"Dan Hicks","version":16,"id":"11750","lastModified":"1300091172000","name":"Dan Hicks","type":"Person","_key":"7281"} +{"label":"Kassie Wesley DePaiva","version":15,"id":"11751","lastModified":"1300091487000","name":"Kassie Wesley DePaiva","type":"Person","_key":"7282"} +{"label":"Denise Bixler","version":15,"id":"11753","lastModified":"1300091481000","name":"Denise Bixler","type":"Person","_key":"7283"} +{"label":"Richard Domeier","version":16,"id":"11754","lastModified":"1300092229000","name":"Richard Domeier","type":"Person","_key":"7284"} +{"label":"John Peakes","version":21,"id":"11755","lastModified":"1300091697000","name":"John Peakes","type":"Person","_key":"7285"} +{"label":"Lou Hancock","version":17,"id":"11756","lastModified":"1300091872000","name":"Lou Hancock","type":"Person","_key":"7286"} +{"label":"Army of Darkness","description":"After being transported through a time portal to the Middle Ages at the end of The Evil Dead II. Ash finds himself trying to go back to the future by going on a quest to find the Book of the Dead. In true Ash fashion, he accidentally unleashes an evil army of the dead. This final film from the cult Evil Dead Trilogy is more comedic and less violent than it\u2019s predecessors.","id":"766","runtime":81,"imdbId":"tt0106308","trailer":"http:\/\/www.youtube.com\/watch?v=UD_82kvQLkA","version":183,"lastModified":"1300056260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48c\/4bc90c4c017a3c57fe00448c\/army-of-darkness-mid.jpg","studio":"Renaissance Pictures","genre":"Adventure","title":"Army of Darkness","releaseDate":718588800000,"language":"en","tagline":"Trapped in time. Surrounded by evil. Low on gas.","type":"Movie","_key":"7287"} +{"label":"Marcus Gilbert","version":33,"id":"11763","lastModified":"1299495325000","name":"Marcus Gilbert","type":"Person","_key":"7288"} +{"label":"Ian Abercrombie","version":41,"id":"11764","lastModified":"1300090668000","name":"Ian Abercrombie","type":"Person","_key":"7289"} +{"label":"Richard Grove","version":16,"id":"11765","lastModified":"1300092225000","name":"Richard Grove","type":"Person","_key":"7290"} +{"label":"Timothy Patrick Quill","version":15,"id":"11766","lastModified":"1300092241000","name":"Timothy Patrick Quill","type":"Person","_key":"7291"} +{"label":"Michael Earl Reid","version":15,"id":"11767","lastModified":"1300092239000","name":"Michael Earl Reid","type":"Person","_key":"7292"} +{"label":"Patricia Tallman","version":20,"id":"11768","lastModified":"1300091819000","name":"Patricia Tallman","type":"Person","_key":"7293"} +{"label":"Harry Potter and the Half-Blood Prince","description":"The sixth year at Hogwarts School of Witchcraft and Wizardry kicks off with a bang for young Harry Potter when he inadvertently discovers a mysterious book that sheds light on the sordid life of the evil Lord Voldemort. Preparing for inevitable battle, Harry and Dumbledore turn to professor Horace Slughorn for help in pinpointing the weakness in Voldemort's forces.","id":"767","runtime":153,"imdbId":"tt0417741","trailer":"http:\/\/www.youtube.com\/watch?v=6EHZeOP6Ap4","version":409,"lastModified":"1300119315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4cd5ffab7b9aa11b240001d1\/harry-potter-and-the-half-blood-prince-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Harry Potter and the Half-Blood Prince","releaseDate":1247788800000,"language":"en","tagline":"Dark Secrets Revealed","type":"Movie","_key":"7294"} +{"label":"Elarica Gallacher","version":31,"id":"89387","lastModified":"1300090464000","name":"Elarica Gallacher","type":"Person","_key":"7295"} +{"label":"From Hell","description":"Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.","id":"768","runtime":122,"imdbId":"tt0120681","trailer":"http:\/\/www.youtube.com\/watch?v=R7pLZjwMeVU","version":319,"lastModified":"1300105276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/562\/4d325ac67b9aa17af8002562\/from-hell-mid.jpg","studio":"JD Productions","genre":"Action","title":"From Hell","releaseDate":999907200000,"language":"en","tagline":"Only the legend will survive.","type":"Movie","_key":"7296"} +{"label":"Albert Hughes","version":36,"id":"11447","lastModified":"1300090448000","name":"Albert Hughes","type":"Person","_key":"7297"} +{"label":"Allen Hughes","version":40,"id":"11448","lastModified":"1300090553000","name":"Allen Hughes","type":"Person","_key":"7298"} +{"label":"Terence Harvey","version":31,"id":"25656","lastModified":"1300090538000","name":"Terence Harvey","type":"Person","_key":"7299"} +{"label":"Susan Lynch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f1\/4cf1a85b5e73d61e3b0000f1\/susan-lynch-profile.jpg","version":38,"id":"42571","lastModified":"1300090669000","name":"Susan Lynch","type":"Person","_key":"7300"} +{"label":"Paul Rhys","version":21,"id":"80365","lastModified":"1300091573000","name":"Paul Rhys","type":"Person","_key":"7301"} +{"label":"Lesley Sharp","version":23,"id":"80366","lastModified":"1300093305000","name":"Lesley Sharp","type":"Person","_key":"7302"} +{"label":"Estelle Skornik","version":21,"id":"80367","lastModified":"1300093305000","name":"Estelle Skornik","type":"Person","_key":"7303"} +{"label":"Nicholas McGaughey","version":20,"id":"80368","lastModified":"1300093305000","name":"Nicholas McGaughey","type":"Person","_key":"7304"} +{"label":"Annabelle Apsion","version":21,"id":"80369","lastModified":"1300093305000","name":"Annabelle Apsion","type":"Person","_key":"7305"} +{"label":"Goodfellas","description":"Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?","id":"769","runtime":145,"imdbId":"tt0099685","trailer":"http:\/\/www.youtube.com\/watch?v=YH-7he92XfI","version":201,"lastModified":"1300055667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/285\/4cb10a055e73d65b82000285\/goodfellas-mid.jpg","studio":"Scorsese Productions","genre":"Crime","title":"Goodfellas","releaseDate":653702400000,"language":"en","type":"Movie","_key":"7306"} +{"label":"Ray Liotta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4bce1039017a3c24cf000030\/ray-liotta-profile.jpg","version":151,"id":"11477","lastModified":"1300090304000","name":"Ray Liotta","type":"Person","_key":"7307"} +{"label":"Lorraine Bracco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d66\/4c0cc896017a3c7e86000d66\/lorraine-bracco-profile.jpg","version":44,"id":"11478","lastModified":"1300090478000","name":"Lorraine Bracco","type":"Person","_key":"7308"} +{"label":"Chuck Low","version":19,"id":"11479","lastModified":"1300091931000","name":"Chuck Low","type":"Person","_key":"7309"} +{"label":"Frank Sivero","version":23,"id":"11480","lastModified":"1300091280000","name":"Frank Sivero","type":"Person","_key":"7310"} +{"label":"Frank DiLeo","version":17,"id":"11481","lastModified":"1300091810000","name":"Frank DiLeo","type":"Person","_key":"7311"} +{"label":"Tony Darrow","version":23,"id":"11482","lastModified":"1300090843000","name":"Tony Darrow","type":"Person","_key":"7312"} +{"label":"Catherine Scorsese","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f9\/4d1b7f4e7b9aa114860055f9\/catherine-scorsese-profile.jpg","version":18,"id":"11483","lastModified":"1300091098000","name":"Catherine Scorsese","type":"Person","_key":"7313"} +{"label":"Suzanne Shepherd","version":19,"id":"11484","lastModified":"1300091427000","name":"Suzanne Shepherd","type":"Person","_key":"7314"} +{"label":"Gina Mastrogiacomo","version":17,"id":"11485","lastModified":"1300091035000","name":"Gina Mastrogiacomo","type":"Person","_key":"7315"} +{"label":"Michael Imperioli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4cd300217b9aa16b9b00102a\/michael-imperioli-profile.jpg","version":56,"id":"11486","lastModified":"1300090732000","name":"Michael Imperioli","type":"Person","_key":"7316"} +{"label":"Gone with the Wind","description":"An American classic in which a manipulative woman and a roguish man carry on a turbulent love affair in the American south during the Civil War and Reconstruction.","id":"770","runtime":219,"imdbId":"tt0031381","trailer":"http:\/\/www.youtube.com\/watch?v=wUA5jB2MPCc","version":331,"lastModified":"1299911878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04e\/4ca664b25e73d643f000004e\/gone-with-the-wind-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Gone with the Wind","releaseDate":-948240000000,"language":"en","type":"Movie","_key":"7317"} +{"label":"Clark Gable","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/196\/4bde77b0017a3c35b4000196\/clark-gable-profile.jpg","version":62,"id":"11492","lastModified":"1300090373000","name":"Clark Gable","type":"Person","_key":"7318"} +{"label":"Olivia de Havilland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f9\/4c49f11f7b9aa116000000f9\/olivia-de-havilland-profile.jpg","version":51,"id":"8725","lastModified":"1300090546000","name":"Olivia de Havilland","type":"Person","_key":"7319"} +{"label":"Leslie Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4cc6e6a27b9aa15b26000092\/leslie-howard-profile.jpg","version":47,"birthday":"-2421882000000","id":"11493","birthplace":"Forest Hill, London, England","lastModified":"1300091073000","name":"Leslie Howard","type":"Person","_key":"7320"} +{"label":"Evelyn Keyes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4bd5b39e017a3c657e000010\/evelyn-keyes-profile.jpg","version":40,"id":"11494","lastModified":"1300090498000","name":"Evelyn Keyes","type":"Person","_key":"7321"} +{"label":"Ann Rutherford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26c\/4c6049407b9aa172db00026c\/ann-rutherford-profile.jpg","version":32,"id":"11495","lastModified":"1300091108000","name":"Ann Rutherford","type":"Person","_key":"7322"} +{"label":"George Reeves","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/564\/4c5ac3e67b9aa151f7000564\/george-reeves-profile.jpg","version":33,"id":"11496","lastModified":"1300091735000","name":"George Reeves","type":"Person","_key":"7323"} +{"label":"Fred Crane","version":20,"id":"11497","lastModified":"1300091207000","name":"Fred Crane","type":"Person","_key":"7324"} +{"label":"Hattie McDaniel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4c9123737b9aa10210000017\/hattie-mcdaniel-profile.jpg","version":30,"id":"11498","lastModified":"1300091524000","name":"Hattie McDaniel","type":"Person","_key":"7325"} +{"label":"Oscar Polk","version":20,"id":"11499","lastModified":"1300091207000","name":"Oscar Polk","type":"Person","_key":"7326"} +{"label":"Butterfly McQueen","version":22,"id":"11500","lastModified":"1300091439000","name":"Butterfly McQueen","type":"Person","_key":"7327"} +{"label":"Marcella Martin","version":20,"id":"11501","lastModified":"1300091207000","name":"Marcella Martin","type":"Person","_key":"7328"} +{"label":"Harry Davenport","version":32,"id":"11502","lastModified":"1300091326000","name":"Harry Davenport","type":"Person","_key":"7329"} +{"label":"Leona Roberts","version":25,"id":"13822","lastModified":"1300092043000","name":"Leona Roberts","type":"Person","_key":"7330"} +{"label":"Cammie King","version":20,"id":"11503","lastModified":"1300091207000","name":"Cammie King","type":"Person","_key":"7331"} +{"label":"Eric Linden","version":26,"id":"124853","lastModified":"1300093569000","name":"Eric Linden","type":"Person","_key":"7332"} +{"label":"Jackie Moran","version":34,"id":"33775","lastModified":"1300091262000","name":"Jackie Moran","type":"Person","_key":"7333"} +{"label":"Cliff Edwards","version":42,"id":"30236","lastModified":"1300091322000","name":"Cliff Edwards","type":"Person","_key":"7334"} +{"label":"Lillian Kemble-Cooper","version":26,"id":"124854","lastModified":"1300093055000","name":"Lillian Kemble-Cooper","type":"Person","_key":"7335"} +{"label":"Yakima Canutt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4cb371767b9aa13457000024\/yakima-canutt-profile.jpg","version":41,"id":"88979","lastModified":"1300091876000","name":"Yakima Canutt","type":"Person","_key":"7336"} +{"label":"Louis Jean Heydt","version":29,"id":"13979","lastModified":"1300091519000","name":"Louis Jean Heydt","type":"Person","_key":"7337"} +{"label":"Olin Howland","version":36,"birthday":"-2647299600000","id":"34209","birthplace":"Denver, Colorado, USA","lastModified":"1300090476000","name":"Olin Howland","type":"Person","_key":"7338"} +{"label":"Irving Bacon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36a\/4c2232807b9aa130e500036a\/irving-bacon-profile.jpg","version":42,"birthday":"-2408403600000","id":"30530","birthplace":"Saint Joseph, Missouri, USA","lastModified":"1300091164000","name":"Irving Bacon","type":"Person","_key":"7339"} +{"label":"Robert Elliott","version":27,"id":"124855","lastModified":"1300092690000","name":"Robert Elliott","type":"Person","_key":"7340"} +{"label":"Ona Munson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/457\/4c61ba107b9aa172de000457\/ona-munson-profile.jpg","biography":"Ona Munson (June 16, 1903 \u2013 February 11, 1955) was an American actress perhaps best known for her portrayal of prostitute Belle Watling in Gone with the Wind (1939).\n\nShe first came to fame on Broadway as the singing and dancing ingenue in the original production of No, No, Nanette. From this, Munson had a very successful stage and radio career in 1930s in New York. She introduced the song \"You're the Cream in My Coffee\" in the 1927 Broadway musical Hold Everything.\n\nHer first starring role was","version":31,"birthday":"-2100042000000","id":"105797","birthplace":"Portland, Oregon, USA","lastModified":"1300090295000","name":"Ona Munson","type":"Person","_key":"7341"} +{"label":"Mary Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4c40693d7b9aa1428200013b\/mary-anderson-profile.jpg","version":31,"id":"93896","lastModified":"1300093502000","name":"Mary Anderson","type":"Person","_key":"7342"} +{"label":"Home Alone","description":"Eight-year-old Kevin makes the most of the situation after his family unwittingly leaves him behind when they go on vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home.","id":"771","runtime":103,"imdbId":"tt0099785","trailer":"http:\/\/www.youtube.com\/watch?v=bAlHIbPvtcw","version":257,"lastModified":"1300055286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4c4b77765e73d62a40000062\/home-alone-mid.jpg","studio":"Hughes Entertainment","genre":"Comedy","title":"Home Alone","releaseDate":658713600000,"language":"en","tagline":"A Family Comedy Without The Family.","type":"Movie","_key":"7343"} +{"label":"Macaulay Culkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/178\/4bf14372017a3c320b000178\/macaulay-culkin-profile.jpg","version":55,"id":"11510","lastModified":"1299491950000","name":"Macaulay Culkin","type":"Person","_key":"7344"} +{"label":"Daniel Stern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6df\/4d0a74925e73d613dd0006df\/daniel-stern-profile.jpg","version":71,"birthday":"-389581200000","id":"11511","birthplace":"Bethesda, MD","lastModified":"1299845229000","name":"Daniel Stern","type":"Person","_key":"7345"} +{"label":"John Heard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d56\/4c6831df5e73d63461000d56\/john-heard-profile.jpg","version":90,"id":"11512","lastModified":"1300090306000","name":"John Heard","type":"Person","_key":"7346"} +{"label":"Roberts Blossom","version":44,"id":"66288","lastModified":"1300091163000","name":"Roberts Blossom","type":"Person","_key":"7347"} +{"label":"Catherine O'Hara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43e\/4c7a6c1c5e73d613d500043e\/catherine-o-hara-profile.jpg","version":130,"birthday":"-499568400000","id":"11514","birthplace":"Toronto, Ontario, Canada","lastModified":"1300090372000","name":"Catherine O'Hara","type":"Person","_key":"7348"} +{"label":"Angela Goethals","version":25,"id":"11515","lastModified":"1300091208000","name":"Angela Goethals","type":"Person","_key":"7349"} +{"label":"Devin Ratray","version":36,"id":"11516","lastModified":"1300090987000","name":"Devin Ratray","type":"Person","_key":"7350"} +{"label":"Gerry Bamman","version":35,"id":"11517","lastModified":"1300091489000","name":"Gerry Bamman","type":"Person","_key":"7351"} +{"label":"Hillary Wolf","version":32,"id":"11518","lastModified":"1300091296000","name":"Hillary Wolf","type":"Person","_key":"7352"} +{"label":"Larry Hankin","version":32,"id":"11519","lastModified":"1300091035000","name":"Larry Hankin","type":"Person","_key":"7353"} +{"label":"Michael C. Maronna","version":24,"id":"11520","lastModified":"1300091828000","name":"Michael C. Maronna","type":"Person","_key":"7354"} +{"label":"Kristin Minter","version":24,"id":"11521","lastModified":"1300091376000","name":"Kristin Minter","type":"Person","_key":"7355"} +{"label":"Jedidiah Cohen","version":32,"id":"11522","lastModified":"1300091279000","name":"Jedidiah Cohen","type":"Person","_key":"7356"} +{"label":"Home Alone 2: Lost in New York","description":"Lost in New York is the sequel to the blockbuster Home Alone. This time young Kevin is left alone in New York during a family vacation and once again he is confronted by the bandits who tried to rob him in the first film.","id":"772","runtime":120,"imdbId":"tt0104431","trailer":"http:\/\/www.youtube.com\/watch?v=z_An3W-oO2k","version":163,"lastModified":"1299910976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57b\/4bc90c75017a3c57fe00457b\/home-alone-2-lost-in-new-york-mid.jpg","genre":"Comedy","title":"Home Alone 2: Lost in New York","releaseDate":722217600000,"language":"en","tagline":"He's up past his bedtime in the city that never sleeps.","type":"Movie","_key":"7357"} +{"label":"Kieran Culkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73c\/4ccb52bf5e73d6502300073c\/kieran-culkin-profile.jpg","biography":"Kieran Kyle Culkin was born September 30, 1982, and started working in 1990. He worked with his brother, Mac several times. His debut was playing Mac's cousin, Fuller, in Home Alone (1990). He went on to do lots of films on his own. He starred in Father of the Bride (1991) playing Steve Martin's young son. Then a few years later they offered him a special role in The Mighty (1998). After his wonderful performance, he went on to bigger movies like The Cider House Rules (1999) and Music of the Hea","version":78,"birthday":"402188400000","id":"18793","birthplace":"New York City, New York, USA","lastModified":"1300090298000","name":"Kieran Culkin","type":"Person","_key":"7358"} +{"label":"Tim Curry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6bc\/4c6544d17b9aa1775a0006bc\/tim-curry-profile.jpg","version":127,"id":"13472","lastModified":"1300114107000","name":"Tim Curry","type":"Person","_key":"7359"} +{"label":"Little Miss Sunshine","description":"Little Miss Sunshine is a comedy about a family of six who are all having a mental breakdown at the same time. To ease their mental lows they decide to take a cross country road trip to a \u201cLittle Miss Sunshine\u201d contest that their daughter has qualified for. An Academy Award winning comedy with memorable performances from its all actors.","id":"773","runtime":103,"imdbId":"tt0449059","trailer":"http:\/\/www.youtube.com\/watch?v=VWyH_twcMl0","homepage":"http:\/\/www.foxsearchlight.com\/littlemisssunshine2\/","version":238,"lastModified":"1300054900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc7\/4d2821905e73d626b0001fc7\/little-miss-sunshine-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"Little Miss Sunshine","releaseDate":1153872000000,"language":"en","tagline":"Everyone just pretend to be normal.","type":"Movie","_key":"7360"} +{"label":"Jonathan Dayton","version":17,"id":"16959","lastModified":"1300090470000","name":"Jonathan Dayton","type":"Person","_key":"7361"} +{"label":"Valerie Faris","version":17,"id":"16960","lastModified":"1300090766000","name":"Valerie Faris","type":"Person","_key":"7362"} +{"label":"Greg Kinnear","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/150\/4bd85956017a3c1c09000150\/greg-kinnear-profile.jpg","version":97,"id":"17141","lastModified":"1300090317000","name":"Greg Kinnear","type":"Person","_key":"7363"} +{"label":"Paul Dano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/50a\/4c6d4c2b7b9aa13ab800050a\/paul-dano-profile.jpg","version":50,"id":"17142","lastModified":"1300090302000","name":"Paul Dano","type":"Person","_key":"7364"} +{"label":"Lauren Shiohama","version":17,"id":"17412","lastModified":"1300091123000","name":"Lauren Shiohama","type":"Person","_key":"7365"} +{"label":"Julio Oscar Mechoso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/900\/4d2747325e73d626be001900\/julio-oscar-mechoso-profile.jpg","version":46,"id":"17413","lastModified":"1300090556000","name":"Julio Oscar Mechoso","type":"Person","_key":"7366"} +{"label":"Jill Talley","version":31,"id":"17414","lastModified":"1300091342000","name":"Jill Talley","type":"Person","_key":"7367"} +{"label":"Brenda Canela","version":20,"id":"17415","lastModified":"1300091225000","name":"Brenda Canela","type":"Person","_key":"7368"} +{"label":"Chuck Loring","version":17,"id":"17416","lastModified":"1300091600000","name":"Chuck Loring","type":"Person","_key":"7369"} +{"label":"Justin Shilton","version":17,"id":"17417","lastModified":"1300095754000","name":"Justin Shilton","type":"Person","_key":"7370"} +{"label":"Gordon Thomson","version":17,"id":"17418","lastModified":"1300091424000","name":"Gordon Thomson","type":"Person","_key":"7371"} +{"label":"Bryan Cranston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e8\/4c9601125e73d63a750004e8\/bryan-cranston-profile.jpg","version":24,"birthday":"-436150800000","id":"17419","birthplace":"San Fernando Valley, California, USA","lastModified":"1300095754000","name":"Bryan Cranston","type":"Person","_key":"7372"} +{"label":"Paula Newsome","version":17,"id":"17420","lastModified":"1300091803000","name":"Paula Newsome","type":"Person","_key":"7373"} +{"label":"Wallace Langham","version":18,"id":"17421","lastModified":"1300091803000","name":"Wallace Langham","type":"Person","_key":"7374"} +{"label":"La Sortie des usines Lumi\u00e8re","description":"La Sortie des usines Lumi\u00e8re is one of the first films in the history of cinema and a milestone. Three different versions of the film exist.","id":"774","runtime":1,"imdbId":"tt0000010","version":105,"lastModified":"1299813121000","genre":"Documentary","title":"La Sortie des usines Lumi\u00e8re","releaseDate":-2359843200000,"language":"en","type":"Movie","_key":"7375"} +{"label":"Trip to the Moon","description":"A Trip to The Moon is a science fiction film from the French film pioneer Georges M\u00e9li\u00e8s from the year 1902 about a trip to the moon. The film was the first film with a self-contained plot and was the beginning of the Science Fiction genre.","id":"775","runtime":8,"imdbId":"tt0000417","version":80,"lastModified":"1299531835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a4\/4bc90c79017a3c57fe0045a4\/le-voyage-dans-la-lune-mid.jpg","genre":"Science Fiction","title":"Trip to the Moon","releaseDate":-2124921600000,"language":"en","type":"Movie","_key":"7376"} +{"label":"Georges M\u00e9li\u00e8s","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/390\/4d51310c7b9aa13ab4010390\/georges-m-li-s-profile.jpg","biography":"M\u00e9li\u00e8s wurde als Sohn eines wohlhabenden Schuhfabrikanten am 8. Dezember 1861 in Paris geboren. 1888 kaufte er sich ein Theater, in dem er bis 1895 als B\u00fchnenbildner und Illusionist arbeitete. \u00dcber dem Theater hatte der Vater der Br\u00fcder Lumi\u00e8re ein Studio gemietet.\n\nM\u00e9li\u00e8s besuchte die erste Vorf\u00fchrung des Kinematographen und war von der neuen \"Spielerei\" so begeistert, da\u00df er den Lumi\u00e8res ihren Apparat abkaufen wollte. Da sie nicht dazu bereit waren, besorgte er sich ein \u00e4hnliches Ger\u00e4t und wan","version":44,"birthday":"-3410211600000","id":"11523","birthplace":"Paris, France","lastModified":"1300090952000","name":"Georges M\u00e9li\u00e8s","type":"Person","_key":"7377"} +{"label":"Henri Delannoy","version":15,"id":"11644","lastModified":"1300091208000","name":"Henri Delannoy","type":"Person","_key":"7378"} +{"label":"Bleuette Bernon","version":15,"id":"11645","lastModified":"1300091121000","name":"Bleuette Bernon","type":"Person","_key":"7379"} +{"label":"Brunnet","version":15,"id":"11647","lastModified":"1300091208000","name":"Brunnet","type":"Person","_key":"7380"} +{"label":"Victor Andr\u00e9","version":16,"id":"28963","lastModified":"1300093054000","name":"Victor Andr\u00e9","type":"Person","_key":"7381"} +{"label":"Jeanne d'Alcy","version":16,"id":"28964","lastModified":"1300093035000","name":"Jeanne d'Alcy","type":"Person","_key":"7382"} +{"label":"Depierre","version":19,"id":"28965","lastModified":"1300093025000","name":"Depierre","type":"Person","_key":"7383"} +{"label":"Farjaut","version":16,"id":"28966","lastModified":"1300093035000","name":"Farjaut","type":"Person","_key":"7384"} +{"label":"Kelm","version":18,"id":"28967","lastModified":"1300092874000","name":"Kelm","type":"Person","_key":"7385"} +{"label":"The Rules of the Game","description":"Jean Renoir\u2019s The Rules of the Game is a comedic drama about a Parisian aristocrat. The film was released shortly before the start of World War II.","id":"776","runtime":110,"imdbId":"tt0031885","trailer":"http:\/\/www.youtube.com\/watch?v=p5tV3wRwc_A","version":106,"lastModified":"1299531904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b5\/4bc90c7d017a3c57fe0045b5\/la-regle-du-jeu-mid.jpg","studio":"La Nouvelle Edition Francaise","genre":"Comedy","title":"The Rules of the Game","releaseDate":-962064000000,"language":"en","type":"Movie","_key":"7386"} +{"label":"Jean Renoir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32a\/4c8e29c25e73d609ed00032a\/jean-renoir-profile.jpg","biography":"Jean Renoir was a French film director, screenwriter, actor, producer and author. As a film director and actor, he made more than forty films from the silent era to the end of the 1960s. As an author, he wrote the definitive biography of his father, the painter, Pierre-Auguste Renoir, Renoir, My Father (1962).\n\nDuring the 1930s Renoir enjoyed great success as a filmmaker. In 1931 he directed his first sound films, On purge b\u00e9b\u00e9 and La Chienne (The Bitch). The following year he made Boudu Saved F","version":75,"birthday":"-2376090000000","id":"11528","birthplace":"Paris, France","lastModified":"1300090288000","name":"Jean Renoir","type":"Person","_key":"7387"} +{"label":"Nora Gregor","version":19,"id":"11534","lastModified":"1300091869000","name":"Nora Gregor","type":"Person","_key":"7388"} +{"label":"Paulette Dubost","version":32,"id":"11535","lastModified":"1300091065000","name":"Paulette Dubost","type":"Person","_key":"7389"} +{"label":"Odette Talazac","version":17,"id":"11537","lastModified":"1300092229000","name":"Odette Talazac","type":"Person","_key":"7390"} +{"label":"Claire G\u00e9rard","version":20,"id":"11538","lastModified":"1300092641000","name":"Claire G\u00e9rard","type":"Person","_key":"7391"} +{"label":"Anne Mayen","version":17,"id":"11539","lastModified":"1300092528000","name":"Anne Mayen","type":"Person","_key":"7392"} +{"label":"Lise Elina","version":17,"id":"11540","lastModified":"1300092634000","name":"Lise Elina","type":"Person","_key":"7393"} +{"label":"Julien Carette","version":26,"id":"11541","lastModified":"1300091704000","name":"Julien Carette","type":"Person","_key":"7394"} +{"label":"Roland Toutain","version":19,"id":"11542","lastModified":"1300092238000","name":"Roland Toutain","type":"Person","_key":"7395"} +{"label":"Gaston Modot","version":28,"id":"11543","lastModified":"1300091459000","name":"Gaston Modot","type":"Person","_key":"7396"} +{"label":"Grand Illusion","description":"During 1st WW, two French officers are captured. Captain De Boeldieu is an aristocrat while Lieutenant Marechal was a mechanic in civilian life. They meet other prisoners from various backgrounds, as Rosenthal, son of wealthy Jewish bankers. They are separated from Rosenthal before managing to escape. A few months later, they meet again in a fortress commanded by the aristocrat Van Rauffenstein. De Boeldieu strikes up a friendship with him but Marechal and Rosenthal still want to escape.","id":"777","runtime":114,"imdbId":"tt0028950","version":125,"lastModified":"1299912306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5be\/4bc90c7e017a3c57fe0045be\/la-grande-illusion-mid.jpg","studio":"R\u00e9alisation d'Art Cin\u00e9matographique","genre":"Drama","title":"Grand Illusion","releaseDate":-1028073600000,"language":"en","type":"Movie","_key":"7397"} +{"label":"Jean Gabin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/974\/4bf544f3017a3c3213000974\/jean-gabin-profile.jpg","version":65,"id":"11544","lastModified":"1300090491000","name":"Jean Gabin","type":"Person","_key":"7398"} +{"label":"Dita Parlo","version":19,"id":"11545","lastModified":"1300092191000","name":"Dita Parlo","type":"Person","_key":"7399"} +{"label":"Pierre Fresnay","version":25,"id":"11546","lastModified":"1300091695000","name":"Pierre Fresnay","type":"Person","_key":"7400"} +{"label":"Georges P\u00e9clet","version":21,"id":"11548","lastModified":"1300092640000","name":"Georges P\u00e9clet","type":"Person","_key":"7401"} +{"label":"Werner Florian","version":18,"id":"11549","lastModified":"1300092229000","name":"Werner Florian","type":"Person","_key":"7402"} +{"label":"Jean Dast\u00e9","version":39,"id":"11550","lastModified":"1299775296000","name":"Jean Dast\u00e9","type":"Person","_key":"7403"} +{"label":"Sylvain Itkine","version":18,"id":"11551","lastModified":"1300092229000","name":"Sylvain Itkine","type":"Person","_key":"7404"} +{"label":"M. Hulot's Holiday","description":"Monsieur Hulot comes to a beachside hotel for a vacation, where he accidentally (but good-naturedly) causes havoc.","id":"778","runtime":114,"imdbId":"tt0046487","version":104,"lastModified":"1299812533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48b\/4c29e7e17b9aa1447000048b\/les-vacances-de-monsieur-hulot-mid.jpg","studio":"Cady","genre":"Comedy","title":"M. Hulot's Holiday","releaseDate":-490579200000,"language":"en","tagline":"It's laugh-vacation time as Jacques Tati romps through the most gloriously mad lark ever to tickle the ribs of young and old alike!","type":"Movie","_key":"7405"} +{"label":"Nathalie Pascaud","version":16,"id":"11566","lastModified":"1300091686000","name":"Nathalie Pascaud","type":"Person","_key":"7406"} +{"label":"Micheline Rolla","version":16,"id":"11567","lastModified":"1300091286000","name":"Micheline Rolla","type":"Person","_key":"7407"} +{"label":"Valentine Camax","version":16,"id":"11568","lastModified":"1300091705000","name":"Valentine Camax","type":"Person","_key":"7408"} +{"label":"Louis Perrault","version":16,"id":"11569","lastModified":"1300091705000","name":"Louis Perrault","type":"Person","_key":"7409"} +{"label":"Andr\u00e9 Dubois","version":16,"id":"11570","lastModified":"1300091930000","name":"Andr\u00e9 Dubois","type":"Person","_key":"7410"} +{"label":"Raymond Carl","version":16,"id":"11571","lastModified":"1300091702000","name":"Raymond Carl","type":"Person","_key":"7411"} +{"label":"Vampyr - Der Traum des Allan Grey","description":"Young traveller Allan Grey arrives in a remote castle and starts seeing weird, inexplicable sights (a man whose shadow has a life of its own, a mysterious scythe-bearing figure tolling a bell, a terrifying dream of his own burial). Things come to a head when one of the daughters of the lord of the castle succumbs to anaemia - or is it something more sinister?","id":"779","runtime":75,"imdbId":"tt0023649","version":55,"lastModified":"1299912000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cf\/4bc90c7f017a3c57fe0045cf\/vampyr-der-traum-des-allan-grey-mid.jpg","studio":"Tobis Filmkunst","genre":"Fantasy","title":"Vampyr - Der Traum des Allan Grey","releaseDate":-1188345600000,"language":"en","type":"Movie","_key":"7412"} +{"label":"Carl Theodor Dreyer","version":41,"id":"11572","lastModified":"1300091154000","name":"Carl Theodor Dreyer","type":"Person","_key":"7413"} +{"label":"Julian West","version":18,"id":"11583","lastModified":"1300091869000","name":"Julian West","type":"Person","_key":"7414"} +{"label":"Henriette G\u00e9rard","version":15,"id":"11584","lastModified":"1300092151000","name":"Henriette G\u00e9rard","type":"Person","_key":"7415"} +{"label":"Jan Hieronimko","version":15,"id":"11585","lastModified":"1300091658000","name":"Jan Hieronimko","type":"Person","_key":"7416"} +{"label":"Maurice Schutz","version":19,"id":"11586","lastModified":"1300091869000","name":"Maurice Schutz","type":"Person","_key":"7417"} +{"label":"Sybille Schmitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cc\/4ca098985e73d670490005cc\/sybille-schmitz-profile.jpg","version":18,"id":"11587","lastModified":"1300091658000","name":"Sybille Schmitz","type":"Person","_key":"7418"} +{"label":"Rena Mandel","version":16,"id":"11588","lastModified":"1300092151000","name":"Rena Mandel","type":"Person","_key":"7419"} +{"label":"The Passion of Joan of Arc","description":"The Passion of Joan of Arc is the masterpiece from Danish director Carl Theodor Dreyer that depicts the story of French martyr Joan from Orleans seven years after her canonization from the catholic church.","id":"780","runtime":88,"imdbId":"tt0019254","version":115,"lastModified":"1299912565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01c\/4c9ba3d65e73d66ba300001c\/la-passion-de-jeanne-d-arc-mid.jpg","studio":"Soci\u00e9t\u00e9 g\u00e9n\u00e9rale des films","genre":"Drama","title":"The Passion of Joan of Arc","releaseDate":-1315872000000,"language":"en","type":"Movie","_key":"7420"} +{"label":"Maria Falconetti","version":15,"id":"11589","lastModified":"1300091588000","name":"Maria Falconetti","type":"Person","_key":"7421"} +{"label":"Eugene Silvain","version":15,"id":"11590","lastModified":"1300091795000","name":"Eugene Silvain","type":"Person","_key":"7422"} +{"label":"Andr\u00e9 Berley","version":15,"id":"11591","lastModified":"1300091588000","name":"Andr\u00e9 Berley","type":"Person","_key":"7423"} +{"label":"Antonin Artaud","version":17,"id":"11595","lastModified":"1300092058000","name":"Antonin Artaud","type":"Person","_key":"7424"} +{"label":"Jean d'Yd","version":17,"id":"11596","lastModified":"1300092354000","name":"Jean d'Yd","type":"Person","_key":"7425"} +{"label":"Louis Ravet","version":15,"id":"11597","lastModified":"1300092406000","name":"Louis Ravet","type":"Person","_key":"7426"} +{"label":"Armand Lurville","version":16,"id":"11598","lastModified":"1300092260000","name":"Armand Lurville","type":"Person","_key":"7427"} +{"label":"Jacques Arnna","version":15,"id":"11599","lastModified":"1300092406000","name":"Jacques Arnna","type":"Person","_key":"7428"} +{"label":"Alexandre Mihalesco","version":16,"id":"11600","lastModified":"1300092632000","name":"Alexandre Mihalesco","type":"Person","_key":"7429"} +{"label":"L\u00e9on Larive","version":17,"id":"11601","lastModified":"1300092263000","name":"L\u00e9on Larive","type":"Person","_key":"7430"} +{"label":"Winterschl\u00e4fer","description":"Wintersleepers is a German film from director Tom Tykwer that connects with a large number of individual destinies. Filmed in the winter in Bavaria, the film has a tragic theme of","id":"781","runtime":120,"imdbId":"tt0120522","version":62,"lastModified":"1299804150000","studio":"X-Filme","genre":"Drama","title":"Winterschl\u00e4fer","releaseDate":878169600000,"language":"en","type":"Movie","_key":"7431"} +{"label":"Marie-Lou Sellem","version":15,"id":"11608","lastModified":"1300091579000","name":"Marie-Lou Sellem","type":"Person","_key":"7432"} +{"label":"Floriane Daniel","version":15,"id":"11609","lastModified":"1300092044000","name":"Floriane Daniel","type":"Person","_key":"7433"} +{"label":"Josef Bierbichler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ee\/4d5828f55e73d617ba0105ee\/josef-bierbichler-profile.jpg","version":34,"id":"11610","lastModified":"1300090660000","name":"Josef Bierbichler","type":"Person","_key":"7434"} +{"label":"Laura Tonke","version":19,"id":"11611","lastModified":"1300091449000","name":"Laura Tonke","type":"Person","_key":"7435"} +{"label":"Sophia Dirscherl","version":13,"id":"11612","lastModified":"1300092385000","name":"Sophia Dirscherl","type":"Person","_key":"7436"} +{"label":"Sebastian Schipper","version":36,"id":"3702","lastModified":"1300091095000","name":"Sebastian Schipper","type":"Person","_key":"7437"} +{"label":"Saskia Vester","version":22,"id":"11613","lastModified":"1300091847000","name":"Saskia Vester","type":"Person","_key":"7438"} +{"label":"Gattaca","description":"Science fiction drama about a future society in the era of indefinite eugenics where humans are set on a life course depending on their DNA. The young Vincent Freeman is born with a condition that would prevent him from space travel, yet he is determined to infiltrate the GATTACA space program. ","id":"782","runtime":101,"imdbId":"tt0119177","trailer":"http:\/\/www.youtube.com\/watch?v=ZppWok6SX88","version":179,"lastModified":"1300053429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f1\/4bc90c84017a3c57fe0045f1\/gattaca-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Mystery","title":"Gattaca","releaseDate":877651200000,"language":"en","tagline":"There is no gene for the human spirit.","type":"Movie","_key":"7439"} +{"label":"Andrew Niccol","version":81,"id":"8685","lastModified":"1300090448000","name":"Andrew Niccol","type":"Person","_key":"7440"} +{"label":"Gore Vidal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dec\/4d5ede2c5e73d60c6d001dec\/gore-vidal-profile.jpg","version":33,"id":"11626","lastModified":"1300101165000","name":"Gore Vidal","type":"Person","_key":"7441"} +{"label":"Jayne Brook","version":24,"id":"11627","lastModified":"1300091125000","name":"Jayne Brook","type":"Person","_key":"7442"} +{"label":"Loren Dean","version":44,"id":"11628","lastModified":"1300090462000","name":"Loren Dean","type":"Person","_key":"7443"} +{"label":"Gandhi","description":"Director Richard Attenborough tells with this epic, and elaborate produced film, the story of freedom and peace fighter Gandhi, the Indian who helped give Indians their independence. The film was nominated in eleven categories at the Academy Awards, winning eight in total.","id":"783","runtime":188,"imdbId":"tt0083987","trailer":"http:\/\/www.youtube.com\/watch?v=21","version":147,"lastModified":"1299912377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/609\/4bc90c86017a3c57fe004609\/gandhi-mid.jpg","studio":"Goldcrest Films International","genre":"Drama","title":"Gandhi","releaseDate":408326400000,"language":"en","type":"Movie","_key":"7444"} +{"label":"Rohini Hattangadi","version":21,"id":"11849","lastModified":"1300090538000","name":"Rohini Hattangadi","type":"Person","_key":"7445"} +{"label":"Candice Bergen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/279\/4bdf45a0017a3c35b9000279\/candice-bergen-profile.jpg","version":61,"id":"11850","lastModified":"1300025225000","name":"Candice Bergen","type":"Person","_key":"7446"} +{"label":"Om Puri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/127\/4c4f017a7b9aa1326d000127\/om-puri-profile.jpg","version":67,"id":"11851","lastModified":"1300090441000","name":"Om Puri","type":"Person","_key":"7447"} +{"label":"Saeed Jaffrey","version":27,"id":"11852","lastModified":"1300091253000","name":"Saeed Jaffrey","type":"Person","_key":"7448"} +{"label":"Alyque Padamsee","version":17,"id":"11853","lastModified":"1300091922000","name":"Alyque Padamsee","type":"Person","_key":"7449"} +{"label":"Ian Charleson","version":21,"id":"11854","lastModified":"1300091175000","name":"Ian Charleson","type":"Person","_key":"7450"} +{"label":"Geraldine James","version":35,"id":"11855","lastModified":"1300090340000","name":"Geraldine James","type":"Person","_key":"7451"} +{"label":"Daniel Day-Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4c45ec0f7b9aa15de20000ec\/daniel-day-lewis-profile.jpg","version":61,"id":"11856","lastModified":"1300090273000","name":"Daniel Day-Lewis","type":"Person","_key":"7452"} +{"label":"John Gielgud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4bd70d55017a3c21ee0000b6\/john-gielgud-profile.jpg","version":82,"id":"11857","lastModified":"1300090480000","name":"John Gielgud","type":"Person","_key":"7453"} +{"label":"Trevor Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cf\/4bf6dc3d017a3c77300002cf\/trevor-howard-profile.jpg","version":71,"id":"12726","lastModified":"1299491514000","name":"Trevor Howard","type":"Person","_key":"7454"} +{"label":"John Mills","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/99f\/4be44be5017a3c35b900099f\/john-mills-profile.jpg","version":65,"id":"11859","lastModified":"1299793338000","name":"John Mills","type":"Person","_key":"7455"} +{"label":"Athol Fugard","version":18,"id":"11860","lastModified":"1300091027000","name":"Athol Fugard","type":"Person","_key":"7456"} +{"label":"Dalip Tahil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/652\/4d34ba525e73d6334d009652\/dalip-tahil-profile.jpg","version":35,"id":"11861","lastModified":"1300091270000","name":"Dalip Tahil","type":"Person","_key":"7457"} +{"label":"Kolja","description":"The Czech Republic Director Jan Sver\u00e1k tells in this Oscar winning film the story of the disillusioned Prague man named Cellisten Louka, who after a fictitious marriage with a Russian emigrant must suddenly take responsibility for her son. However it\u2019s not long before the communication barrier is broken between the two new family members.","id":"784","runtime":105,"imdbId":"tt0116790","version":98,"lastModified":"1299912575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c2\/4be3ec9c017a3c35bd0009c2\/kolja-mid.jpg","studio":"Pandora Film","genre":"Drama","title":"Kolja","releaseDate":832118400000,"language":"en","type":"Movie","_key":"7458"} +{"label":"Andrei Chalimon","version":13,"id":"11682","lastModified":"1300091221000","name":"Andrei Chalimon","type":"Person","_key":"7459"} +{"label":"Zden\u011bk Sv\u011br\u00e1k","version":38,"id":"11683","lastModified":"1300091195000","name":"Zden\u011bk Sv\u011br\u00e1k","type":"Person","_key":"7460"} +{"label":"Libu\u0161e \u0160afr\u00e1nkov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/686\/4ccd25457b9aa16b9d000686\/libuse-safrankova-profile.jpg","version":27,"birthday":"-522896400000","id":"11684","birthplace":"Brno, \u010cesko","lastModified":"1300090442000","name":"Libu\u0161e \u0160afr\u00e1nkov\u00e1","type":"Person","_key":"7461"} +{"label":"Ond\u0159ej Vetch\u00fd","version":28,"id":"11685","lastModified":"1300091016000","name":"Ond\u0159ej Vetch\u00fd","type":"Person","_key":"7462"} +{"label":"Stella Z\u00e1zvorkov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bc\/4cdd03547b9aa138030001bc\/stella-zazvorkova-profile.jpg","version":26,"id":"11686","lastModified":"1300091458000","name":"Stella Z\u00e1zvorkov\u00e1","type":"Person","_key":"7463"} +{"label":"Jan Sv\u011br\u00e1k","version":32,"id":"11688","lastModified":"1300090838000","name":"Jan Sv\u011br\u00e1k","type":"Person","_key":"7464"} +{"label":"To Whom Does the World Belong?","description":"Kuhle Wampe is a socially criticized German film from 1932 that was banned shortly after its release. The film is the only communist motivated film from the Weimar Republic.","id":"785","runtime":74,"imdbId":"tt0023104","version":38,"lastModified":"1299531836000","studio":"Prometheus","genre":"Drama","title":"To Whom Does the World Belong?","releaseDate":-1157932800000,"language":"en","type":"Movie","_key":"7465"} +{"label":"Almost Famous","description":"Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.","id":"786","runtime":122,"imdbId":"tt0181875","trailer":"http:\/\/www.youtube.com\/watch?v=qk0XnyrENrE","version":145,"lastModified":"1300052766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/135\/4d03b0257b9aa11bc1001135\/almost-famous-mid.jpg","studio":"Vinyl Films","genre":"Comedy","title":"Almost Famous","releaseDate":968803200000,"language":"en","tagline":"Experience it. Enjoy it. Just don't fall for it.","type":"Movie","_key":"7466"} +{"label":"Cameron Crowe","version":58,"id":"11649","lastModified":"1300090465000","name":"Cameron Crowe","type":"Person","_key":"7467"} +{"label":"Kate Hudson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23f\/4bdf27c4017a3c35bf00023f\/kate-hudson-profile.jpg","version":86,"id":"11661","lastModified":"1300104666000","name":"Kate Hudson","type":"Person","_key":"7468"} +{"label":"Jason Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f8\/4cb56df57b9aa138d90000f8\/jason-lee-profile.jpg","biography":"Jason Lee wuchs in Kalifornien auf und begeisterte sich schon fr\u00fch \nf\u00fcr das Skateboarden. Um Profi zu werden, verlie\u00df er mit 16 die High \nSchool und machte sich in der Szene einen Namen. Anfang der 90er Jahre \nwirkte er in einigen Musikvideos mit und bekam so Zugang zum \nFilmbusiness. Seine erste (noch stumme) Rolle in einem Film hatte er \n1993 in Mi vida loca. Kurze Zeit sp\u00e4ter folgte seine erste Sprechrolle in dem Film Mallrats von Kevin Smith. Die Dreharbeiten waren der Beginn einer langen Fr","version":112,"birthday":"9846000000","id":"11662","lastModified":"1300090332000","name":"Jason Lee","type":"Person","_key":"7469"} +{"label":"Patrick Fugit","version":34,"id":"11663","lastModified":"1300090472000","name":"Patrick Fugit","type":"Person","_key":"7470"} +{"label":"Zooey Deschanel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bd5dac9017a3c658500003b\/zooey-deschanel-profile.jpg","biography":"Zooey Deschanel was born on the 17th of January, 1980 in Los Angeles, California. She is the daughter of cinematographer and director Caleb Deschanel and actress Mary Jo Deschanel (n\u00e9e Weir). She is of French and Irish descent. She was named after Zooey Glass, the male protagonist of J. D. Salinger's 1961 novella Franny and Zooey. Her older sister Emily Deschanel is also an actress, and stars in the TV series Bones.\n\nDeschanel lived in Lower Los Angeles, but spent much of her childhood traveling","version":98,"birthday":"316911600000","id":"11664","birthplace":"Los Angeles, California, USA","lastModified":"1299490834000","name":"Zooey Deschanel","type":"Person","_key":"7471"} +{"label":"Michael Angarano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eb7\/4c74e7f85e73d65f7c000eb7\/michael-angarano-profile.jpg","version":53,"id":"11665","lastModified":"1300090459000","name":"Michael Angarano","type":"Person","_key":"7472"} +{"label":"John Fedevich","version":16,"id":"11666","lastModified":"1300092229000","name":"John Fedevich","type":"Person","_key":"7473"} +{"label":"Mark Kozelek","version":16,"id":"11667","lastModified":"1300092229000","name":"Mark Kozelek","type":"Person","_key":"7474"} +{"label":"Liz Stauber","version":15,"id":"11668","lastModified":"1300092070000","name":"Liz Stauber","type":"Person","_key":"7475"} +{"label":"Jimmy Fallon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/166\/4c3a2f575e73d671cf000166\/jimmy-fallon-profile.jpg","version":40,"id":"11669","lastModified":"1300090529000","name":"Jimmy Fallon","type":"Person","_key":"7476"} +{"label":"Olivia Rosewood","version":16,"id":"11670","lastModified":"1300092097000","name":"Olivia Rosewood","type":"Person","_key":"7477"} +{"label":"Bijou Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e8\/4be0e9bb017a3c35bd0005e8\/bijou-phillips-profile.jpg","version":30,"id":"11671","lastModified":"1300090451000","name":"Bijou Phillips","type":"Person","_key":"7478"} +{"label":"Alice Marie Crowe","version":15,"id":"11672","lastModified":"1300092070000","name":"Alice Marie Crowe","type":"Person","_key":"7479"} +{"label":"J.J. Cohen","version":19,"id":"11673","lastModified":"1300092112000","name":"J.J. Cohen","type":"Person","_key":"7480"} +{"label":"Gary Kohn","version":21,"id":"11674","lastModified":"1300091917000","name":"Gary Kohn","type":"Person","_key":"7481"} +{"label":"Ray Porter","version":17,"id":"11675","lastModified":"1300092192000","name":"Ray Porter","type":"Person","_key":"7482"} +{"label":"Mark Pellington","version":29,"id":"11676","lastModified":"1299493136000","name":"Mark Pellington","type":"Person","_key":"7483"} +{"label":"Terry Chen","version":65,"id":"11677","lastModified":"1300090336000","name":"Terry Chen","type":"Person","_key":"7484"} +{"label":"Rainn Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/323\/4d3373025e73d6334d002323\/rainn-wilson-profile.jpg","version":81,"id":"11678","lastModified":"1300090286000","name":"Rainn Wilson","type":"Person","_key":"7485"} +{"label":"Erin Foley","version":15,"id":"11679","lastModified":"1300092070000","name":"Erin Foley","type":"Person","_key":"7486"} +{"label":"Pauley Perrette","version":20,"id":"11680","lastModified":"1300091426000","name":"Pauley Perrette","type":"Person","_key":"7487"} +{"label":"Chris McElprang","version":15,"id":"11681","lastModified":"1300092070000","name":"Chris McElprang","type":"Person","_key":"7488"} +{"label":"Mr. & Mrs. Smith","description":"Marriage has gotten stale and predictable for John and Jane Smith, an average-on-the-surface husband and wife who don't yet know that they share the same undercover line of work: They're both guns for hire. Hiding their occupations has never been a hardship for either of them \u2026 until they discover that their next assignment involves them targeting each other. Can they go through with their respective missions, or will love prevail?","id":"787","runtime":120,"imdbId":"tt0356910","trailer":"http:\/\/www.youtube.com\/watch?v=TWB_icm5M38","version":303,"lastModified":"1299912401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/217\/4cb0f1c05e73d65b85000217\/mr-mrs-smith-mid.jpg","studio":"Weed Road Pictures","genre":"Action","title":"Mr. & Mrs. Smith","releaseDate":1118361600000,"language":"en","type":"Movie","_key":"7489"} +{"label":"Doug Liman","version":99,"id":"11694","lastModified":"1300090395000","name":"Doug Liman","type":"Person","_key":"7490"} +{"label":"Angelina Jolie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4bdaa844017a3c5d8900003c\/angelina-jolie-profile.jpg","biography":"Angelina Jolie is an American actress. She has received an Academy Award, two Screen Actors Guild Awards, and three Golden Globe Awards. Jolie has promoted humanitarian causes throughout the world, and is noted for her work with refugees as a Goodwill Ambassador for the United Nations High Commissioner for Refugees (UNHCR). She has been cited as one of the world's most beautiful women and her off-screen life is widely reported.\n\nThough she made her screen debut as a child alongside her father Jo","version":241,"birthday":"171068400000","id":"11701","birthplace":"Los Angeles","lastModified":"1299753842000","name":"Angelina Jolie","type":"Person","_key":"7491"} +{"label":"Adam Brody","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/124\/4bd5a254017a3c2e7d000124\/adam-brody-profile.jpg","version":52,"birthday":"314060400000","id":"11702","birthplace":"San Diego, California, USA","lastModified":"1300090349000","name":"Adam Brody","type":"Person","_key":"7492"} +{"label":"Kerry Washington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d4\/4cbdbf6b7b9aa138da0015d4\/kerry-washington-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt\" class=MsoNormal><FONT size=3><SPAN><STRONG>Kerry Washington<\/STRONG> was born on <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:date Year=\"1977\" Day=\"31\" Month=\"1\" ls=\"trans\" w:st=\"on\">January 31, 1977<\/st1:date> in the Bronx, New York City. She <\/SPAN><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-lang","version":83,"birthday":"223513200000","id":"11703","birthplace":"Bronx, New York, USA","lastModified":"1300131336000","name":"Kerry Washington","type":"Person","_key":"7493"} +{"label":"Rachael Huntley","version":17,"id":"11704","lastModified":"1300090910000","name":"Rachael Huntley","type":"Person","_key":"7494"} +{"label":"Michelle Monaghan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67c\/4be0f1e0017a3c35b400067c\/michelle-monaghan-profile.jpg","biography":"Vytecnik drabem","version":103,"id":"11705","lastModified":"1300090234000","name":"Michelle Monaghan","type":"Person","_key":"7495"} +{"label":"Mrs. Doubtfire","description":"Mrs. Doubtfire is a comedy about a man who wants to be close to his kids yet is legally only allowed to see them once and a while after a divorce with his wife. He eventually comes up with the idea of dressing up as an old woman and working for his ex-wife as her maid. A comedy starring Robbin Williams as Mrs. Doubtfire.","id":"788","runtime":125,"imdbId":"tt0107614","trailer":"http:\/\/www.youtube.com\/watch?v=JERURjEQ4sY","version":128,"lastModified":"1300052372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66c\/4bc90c99017a3c57fe00466c\/mrs-doubtfire-mid.jpg","studio":"Blue Wolf Productions","genre":"Comedy","title":"Mrs. Doubtfire","releaseDate":754099200000,"language":"en","tagline":"She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.","type":"Movie","_key":"7496"} +{"label":"Polly Holliday","version":26,"id":"11715","lastModified":"1300091035000","name":"Polly Holliday","type":"Person","_key":"7497"} +{"label":"Matthew Lawrence","version":22,"id":"11716","lastModified":"1300091212000","name":"Matthew Lawrence","type":"Person","_key":"7498"} +{"label":"Mara Wilson","version":24,"id":"11717","lastModified":"1300091297000","name":"Mara Wilson","type":"Person","_key":"7499"} +{"label":"Anne Haney","version":21,"id":"11718","lastModified":"1300091590000","name":"Anne Haney","type":"Person","_key":"7500"} +{"label":"Scott Capurro","version":16,"id":"11719","lastModified":"1300092044000","name":"Scott Capurro","type":"Person","_key":"7501"} +{"label":"Closely Watched Trains","description":"Closely Watched Trains is a Czech film that won the Oscar for best foreign film in 1967. Director Jir\u00ed Menzel unfolds an antiwar comedy set during the German occupation of Czechoslovakia about the story of young boy named Milos who has a job at a small Czech train station and falls in love with the beautiful Masa.","id":"789","runtime":92,"imdbId":"tt0060802","trailer":"http:\/\/www.youtube.com\/watch?v=LnBgon5-LN4","version":142,"lastModified":"1299704594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f3\/4cfb76565e73d629990029f3\/ostre-sledovane-vlaky-mid.jpg","genre":"Comedy","title":"Closely Watched Trains","releaseDate":-98496000000,"language":"en","tagline":"Oscar for best foreign film in 1967","type":"Movie","_key":"7502"} +{"label":"Ji\u0159\u00ed Menzel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e61\/4cfbd2935e73d6299c002e61\/jiri-menzel-profile.jpg","biography":"<P>\u200bV roce 1962 absolvoval J. Menzel na pra\u017esk\u00e9 FAMU obor filmov\u00e1 re\u017eie. T\u0159eba\u017ee je doma i ve sv\u011bt\u011b zn\u00e1m p\u0159edev\u0161\u00edm sv\u00fdmi filmy, je i vynikaj\u00edc\u00edm a osobit\u00fdm divadeln\u00edm hercem a re\u017eis\u00e9rem. Mimo jin\u00e9 byl tv\u016frcem mimo\u0159\u00e1dn\u011b zda\u0159il\u00e9 inscenace Machiavelliho komedie Mandragora v pra\u017esk\u00e9m divadle \u010cinohern\u00ed klub, je\u017e se hr\u00e1la nep\u0159etr\u017eit\u011b 11 let (1965-76) a v n\u00ed\u017e zaz\u00e1\u0159ili mj. J. Hrz\u00e1n, J. Somr i Franti\u0161ek Hus\u00e1k a dal\u0161\u00ed. Pro hrav\u00fd, klaunskou atmosf\u00e9rou prosycen\u00fd re\u017eis\u00e9rsk\u00fd rukopis jsou Menzelovy pr\u00e1ce pro \u010d","version":78,"id":"11720","lastModified":"1300090387000","name":"Ji\u0159\u00ed Menzel","type":"Person","_key":"7503"} +{"label":"V\u00e1clav Neck\u00e1r","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/340\/4ca2f9715e73d61429000340\/vaclav-neckar-profile.jpg","version":34,"id":"11731","lastModified":"1300091022000","name":"V\u00e1clav Neck\u00e1r","type":"Person","_key":"7504"} +{"label":"Josef Somr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de7\/4cfbb9285e73d6299c002de7\/josef-somr-profile.jpg","biography":"<P>\u200bJosef Somr se narodil v moravsk\u00e9 obci Vracov u Kyjova jako prost\u0159edn\u00ed ze t\u0159\u00ed bratr\u016f. Rodi\u010de m\u011bli mal\u00e9 hospod\u00e1\u0159stv\u00ed a mal\u00fd Josef na n\u011bm u\u017e od \u00fatl\u00e9ho d\u011btstv\u00ed musel pom\u00e1hat. Otec, p\u016fvodn\u00ed profes\u00ed truhl\u00e1\u0159, si na\u0161el m\u00edsto na dr\u00e1ze a postupn\u011b pro\u0161el v\u0161emi profesemi, a\u017e se stal v\u00fdprav\u010d\u00edm. Jeho syn se tak mohl d\u016fv\u011brn\u011b sezn\u00e1mit s prac\u00ed ve skladi\u0161ti, depu i ve stanici. Josef Somr z\u00e1hy dok\u00e1zal p\u0159estavovat koleje nebo stav\u011bt n\u00e1v\u011bstidlo. Tyto zku\u0161enosti se mu pozd\u011bji hodily, kdy\u017e nat\u00e1\u010del sv\u016fj nejslavn\u011bj\u0161","version":34,"birthday":"-1127091600000","id":"11732","birthplace":" Vracov u Kyjova","lastModified":"1300090467000","name":"Josef Somr","type":"Person","_key":"7505"} +{"label":"Vlastimil Brodsk\u00fd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/861\/4cfa75ae5e73d6299d002861\/vlastimil-brodsky-profile.jpg","biography":"<P>\u200bVlastimil Brodsk\u00fd se narodil 15. prosince 1920 v Hru\u0161ov\u011b nad Odrou do \u00fa\u0159ednick\u00e9 rodiny. Oba rodi\u010de byli nad\u0161en\u00fdmi ochotn\u00edky, divadlo v\u0161ak zpo\u010d\u00e1tku r\u00e1d nem\u011bl, rad\u011bji m\u011bl r\u00e1d tanec a Freda Astaira. Po p\u0159est\u011bhov\u00e1n\u00ed rodiny do Prahy (kdy\u017e mu bylo \u010dtrn\u00e1ct let) se nau\u010dil stepu a jako gymnazista tan\u010dil v no\u010dn\u00edch barech.<\/P>\r\n<P>N\u00e1sledn\u011b se p\u0159eci jen rozhodl pro divadlo a za\u010d\u00ednal v Hereck\u00e9 \u0161kole p\u0159i D40 E. F. Buriana (1940 a\u017e 1941). Jako profesion\u00e1l pro\u0161el V\u011btrn\u00edkem, Pra\u017esk\u00fdm d\u011btsk\u00fdch divadlem M\u00edly M","version":42,"id":"11733","lastModified":"1300090408000","name":"Vlastimil Brodsk\u00fd","type":"Person","_key":"7506"} +{"label":"Vladim\u00edr Valenta","version":25,"id":"11734","lastModified":"1300091695000","name":"Vladim\u00edr Valenta","type":"Person","_key":"7507"} +{"label":"Alois Vachek","version":25,"id":"11735","lastModified":"1300092483000","name":"Alois Vachek","type":"Person","_key":"7508"} +{"label":"Ferdinand Kruta","version":25,"id":"11736","lastModified":"1300092483000","name":"Ferdinand Kruta","type":"Person","_key":"7509"} +{"label":"Jitka Scoffin","version":25,"id":"11737","lastModified":"1300092542000","name":"Jitka Scoffin","type":"Person","_key":"7510"} +{"label":"Jitka Zelenohorsk\u00e1","version":27,"id":"11738","lastModified":"1300092114000","name":"Jitka Zelenohorsk\u00e1","type":"Person","_key":"7511"} +{"label":"Nada Urb\u00e1nkov\u00e1","version":25,"id":"11739","lastModified":"1300092483000","name":"Nada Urb\u00e1nkov\u00e1","type":"Person","_key":"7512"} +{"label":"Libuse Havelkov\u00e1","version":25,"id":"11740","lastModified":"1300092483000","name":"Libuse Havelkov\u00e1","type":"Person","_key":"7513"} +{"label":"Kv\u011bta Fialov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9fa\/4cfad52a5e73d6299b0029fa\/kveta-fialova-profile.jpg","biography":"<P>\u200bKv\u011bta Fialov\u00e1 se narodila na Slovensku, v obci Vel'k\u00e9 Dravce v okrese Lu\u010denec. Jej\u00ed maminka byla v\u00fdtvarnice, vedle malby se v\u011bnovala i socha\u0159en\u00ed. Na Slovensku \u017eila rodina do roku 1938, kdy je sloven\u0161t\u00ed nacionalist\u00e9 p\u0159inutili odej\u00edt do \u010cech. Z konce 2. sv\u011btov\u00e9 v\u00e1lky si dosp\u00edvaj\u00edc\u00ed Kv\u011bta odnesla nanejv\u00fd\u0161 traumatizuj\u00edc\u00ed z\u00e1\u017eitek, kdy\u017e ji spolu s matkou brut\u00e1ln\u011b zn\u00e1silnili sov\u011bt\u0161t\u00ed voj\u00e1ci. Tato zku\u0161enost byla po\u010d\u00e1tkem jej\u00edho komplikovan\u00e9ho a rozporupln\u00e9ho vztahu k mu\u017e\u016fm. Po v\u00e1lce se matka vr\u00e1tila","version":35,"birthday":"-1272848400000","id":"11741","birthplace":"Ve\u013ek\u00e9 Dravce","lastModified":"1300090534000","name":"Kv\u011bta Fialov\u00e1","type":"Person","_key":"7514"} +{"label":"Pavla Mars\u00e1lkov\u00e1","version":25,"id":"11742","lastModified":"1300092483000","name":"Pavla Mars\u00e1lkov\u00e1","type":"Person","_key":"7515"} +{"label":"Milada Jezkov\u00e1","version":29,"id":"11743","lastModified":"1300092491000","name":"Milada Jezkov\u00e1","type":"Person","_key":"7516"} +{"label":"The Fog","description":"The coastal city Antonia Bay of just one hundred inhabitants is about a receive a visit from a group of ghost seamen who want revenge for past wrongdoings. The Fog is the cult-horror film from John Carpenter that was also a success in theaters.","id":"790","runtime":89,"imdbId":"tt0080749","trailer":"http:\/\/www.youtube.com\/watch?v=k6gcFmNE6VM","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=FOG","version":103,"lastModified":"1299911865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab4\/4d5f16f07b9aa154c7002ab4\/the-fog-mid.jpg","studio":"AVCO Embassy Pictures","genre":"Horror","title":"The Fog","releaseDate":318816000000,"language":"en","type":"Movie","_key":"7517"} +{"label":"John Carpenter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c2\/4bf7d000017a3c772b0004c2\/john-carpenter-profile.jpg","version":181,"id":"11770","lastModified":"1299937799000","name":"John Carpenter","type":"Person","_key":"7518"} +{"label":"Adrienne Barbeau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4c9cf56c7b9aa1430f000188\/adrienne-barbeau-profile.jpg","version":50,"birthday":"-775018800000","id":"11782","birthplace":"Sacramento, California, USA","lastModified":"1299492666000","name":"Adrienne Barbeau","type":"Person","_key":"7519"} +{"label":"John Houseman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4c9cf5cf7b9aa1430b0001ae\/john-houseman-profile.jpg","version":33,"id":"11783","lastModified":"1300090970000","name":"John Houseman","type":"Person","_key":"7520"} +{"label":"Tom Atkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c8\/4cc9b81a7b9aa16b9b0003c8\/tom-atkins-profile.jpg","version":38,"id":"11784","lastModified":"1299491471000","name":"Tom Atkins","type":"Person","_key":"7521"} +{"label":"James Canning","version":16,"id":"11785","lastModified":"1300092432000","name":"James Canning","type":"Person","_key":"7522"} +{"label":"Charles Cyphers","version":29,"id":"11786","lastModified":"1300090850000","name":"Charles Cyphers","type":"Person","_key":"7523"} +{"label":"Nancy Kyes","version":22,"id":"11787","lastModified":"1300090632000","name":"Nancy Kyes","type":"Person","_key":"7524"} +{"label":"Ty Mitchell","version":14,"id":"11788","lastModified":"1300092432000","name":"Ty Mitchell","type":"Person","_key":"7525"} +{"label":"Hal Holbrook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d7\/4c41d7237b9aa145950001d7\/hal-holbrook-profile.jpg","version":57,"id":"11066","lastModified":"1300090451000","name":"Hal Holbrook","type":"Person","_key":"7526"} +{"label":"The Fog","description":"Trapped within an eerie mist, the residents of Antonio Bay have become the unwitting victims of a horrifying vengeance. One hundred years ago, a ship carrying lepers was purposely lured onto the rocky coastline and sunk, drowning all aboard. Now they're back, long-dead mariners who've waited a century for their revenge.","id":"791","runtime":100,"imdbId":"tt0432291","trailer":"http:\/\/www.youtube.com\/watch?v=1633","homepage":"http:\/\/www.sonypictures.com\/homevideo\/thefog\/index.html","version":145,"lastModified":"1300051787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/686\/4bc90c9e017a3c57fe004686\/the-fog-mid.jpg","studio":"David Foster Productions","genre":"Drama","title":"The Fog","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"7527"} +{"label":"Rupert Wainwright","version":23,"id":"11809","lastModified":"1300091147000","name":"Rupert Wainwright","type":"Person","_key":"7528"} +{"label":"Tom Welling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4bdc5b77017a3c20c3000017\/tom-welling-profile.jpg","version":24,"id":"11824","lastModified":"1300090429000","name":"Tom Welling","type":"Person","_key":"7529"} +{"label":"Maggie Grace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4bcc8a44017a3c0f2f000115\/maggie-grace-profile.jpg","version":62,"id":"11825","lastModified":"1300090238000","name":"Maggie Grace","type":"Person","_key":"7530"} +{"label":"Selma Blair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11d\/4bcc8ab2017a3c0f2f00011d\/selma-blair-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bBlair was born Selma Blair Beitner in Southfield, Michigan, the daughter of Molly Ann, a judge, and Elliot Beitner. She has three older sisters, Katherine (a book publicist), Elizabeth, and Marie. Blair attended Hillel Day School, a Jewish day school in Farmington Hills, Michigan, and Cranbrook Kingswood school in Bloomfield Hills, Michigan. She attended Kalamazoo College in Michigan, then later transferred to the ","version":94,"birthday":"78102000000","id":"11826","birthplace":"Southfield, Michigan. USA","lastModified":"1300090285000","name":"Selma Blair","type":"Person","_key":"7531"} +{"label":"DeRay Davis","version":32,"id":"11827","lastModified":"1300090570000","name":"DeRay Davis","type":"Person","_key":"7532"} +{"label":"Adrian Hough","version":18,"id":"11828","lastModified":"1300092062000","name":"Adrian Hough","type":"Person","_key":"7533"} +{"label":"Sara Botsford","version":20,"id":"11829","lastModified":"1300091684000","name":"Sara Botsford","type":"Person","_key":"7534"} +{"label":"Cole Heppell","version":15,"id":"11830","lastModified":"1300092062000","name":"Cole Heppell","type":"Person","_key":"7535"} +{"label":"Mary Black","version":17,"id":"11831","lastModified":"1300091597000","name":"Mary Black","type":"Person","_key":"7536"} +{"label":"Jonathon Young","version":23,"id":"11832","lastModified":"1300091696000","name":"Jonathon Young","type":"Person","_key":"7537"} +{"label":"R. Nelson Brown","version":16,"id":"11833","lastModified":"1300092062000","name":"R. Nelson Brown","type":"Person","_key":"7538"} +{"label":"Platoon","description":"Platoon is a war film by Oliver Stone that is set during the Vietnam War and tells the story of young teenage soldier named Chris as he develops into a man.","id":"792","runtime":120,"imdbId":"tt0091763","trailer":"http:\/\/www.youtube.com\/watch?v=pPi8EQzJ2Bg","version":323,"lastModified":"1300104820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/677\/4c5b58ab7b9aa151f6000677\/platoon-mid.jpg","studio":"Hemdale Film Corporation","genre":"Action","title":"Platoon","releaseDate":535334400000,"language":"en","tagline":"The first casualty of war is innocence.","type":"Movie","_key":"7539"} +{"label":"John C. McGinley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/336\/4c95deb77b9aa10d5a000336\/john-c-mcginley-profile.jpg","version":86,"id":"11885","lastModified":"1299753743000","name":"John C. McGinley","type":"Person","_key":"7540"} +{"label":"Francesco Quinn","version":27,"id":"11886","lastModified":"1300091055000","name":"Francesco Quinn","type":"Person","_key":"7541"} +{"label":"Reggie Johnson","version":22,"id":"11888","lastModified":"1300091037000","name":"Reggie Johnson","type":"Person","_key":"7542"} +{"label":"Mark Moses","version":39,"id":"11889","lastModified":"1300090868000","name":"Mark Moses","type":"Person","_key":"7543"} +{"label":"Chris Pedersen","version":29,"id":"11890","lastModified":"1300091693000","name":"Chris Pedersen","type":"Person","_key":"7544"} +{"label":"Ivan Kane","version":22,"id":"11891","lastModified":"1300091431000","name":"Ivan Kane","type":"Person","_key":"7545"} +{"label":"Paul Sanchez","version":28,"id":"11892","lastModified":"1300091218000","name":"Paul Sanchez","type":"Person","_key":"7546"} +{"label":"J. Adam Glover","version":23,"id":"11893","lastModified":"1300091695000","name":"J. Adam Glover","type":"Person","_key":"7547"} +{"label":"Corey Glover","version":22,"id":"11894","lastModified":"1300091218000","name":"Corey Glover","type":"Person","_key":"7548"} +{"label":"Bob Orwig","version":22,"id":"11895","lastModified":"1300091218000","name":"Bob Orwig","type":"Person","_key":"7549"} +{"label":"Kevin Eshelman","version":22,"id":"11896","lastModified":"1300091431000","name":"Kevin Eshelman","type":"Person","_key":"7550"} +{"label":"Terry McIlvain","version":23,"id":"11897","lastModified":"1300091291000","name":"Terry McIlvain","type":"Person","_key":"7551"} +{"label":"Tom Berenger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06e\/4c236e6e7b9aa13f6200006e\/tom-berenger-profile.jpg","version":175,"id":"13022","lastModified":"1300090256000","name":"Tom Berenger","type":"Person","_key":"7552"} +{"label":"Blue Velvet","description":"Blue Velvet is a thriller from David Lynch that depicts the contrariness of two worlds that Jeffery is a part of - and torn apart from. The film is very ambivalent in the style that Lynch fans have come to love.","id":"793","runtime":120,"imdbId":"tt0090756","trailer":"http:\/\/www.youtube.com\/watch?v=Rbb5-WZ1VSw","version":150,"lastModified":"1300070238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/202\/4d59a6b57b9aa15cf6005202\/blue-velvet-mid.jpg","studio":"De Laurentiis Entertainment Group","genre":"Crime","title":"Blue Velvet","releaseDate":526867200000,"language":"en","tagline":"It's a strange world.","type":"Movie","_key":"7553"} +{"label":"Kyle MacLachlan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/031\/4c235ed27b9aa13f61000031\/kyle-maclachlan-profile.jpg","version":56,"id":"6677","lastModified":"1300130415000","name":"Kyle MacLachlan","type":"Person","_key":"7554"} +{"label":"George Dickerson","version":20,"id":"11792","lastModified":"1300091222000","name":"George Dickerson","type":"Person","_key":"7555"} +{"label":"Priscilla Pointer","version":25,"id":"11793","lastModified":"1300092429000","name":"Priscilla Pointer","type":"Person","_key":"7556"} +{"label":"Jack Harvey","version":17,"id":"11795","lastModified":"1300092228000","name":"Jack Harvey","type":"Person","_key":"7557"} +{"label":"Ken Stovitz","version":17,"id":"11796","lastModified":"1300092653000","name":"Ken Stovitz","type":"Person","_key":"7558"} +{"label":"J. Michael Hunter","version":16,"id":"11797","lastModified":"1300091807000","name":"J. Michael Hunter","type":"Person","_key":"7559"} +{"label":"Selden Smith","version":16,"id":"11798","lastModified":"1300091807000","name":"Selden Smith","type":"Person","_key":"7560"} +{"label":"The Omen","description":"Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn\u2019t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.","id":"794","runtime":111,"imdbId":"tt0075005","version":112,"lastModified":"1299911493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4cf0393e5e73d6192700017e\/the-omen-mid.jpg","studio":"Twentieth Century-Fox","genre":"Horror","title":"The Omen","releaseDate":204508800000,"language":"en","type":"Movie","_key":"7561"} +{"label":"Harvey Stephens","version":19,"id":"11839","lastModified":"1300091608000","name":"Harvey Stephens","type":"Person","_key":"7562"} +{"label":"Patrick Troughton","version":23,"id":"11840","lastModified":"1300092189000","name":"Patrick Troughton","type":"Person","_key":"7563"} +{"label":"Robert Rietty","version":17,"id":"11841","lastModified":"1300092129000","name":"Robert Rietty","type":"Person","_key":"7564"} +{"label":"Tommy Duggan","version":14,"id":"11842","lastModified":"1300091594000","name":"Tommy Duggan","type":"Person","_key":"7565"} +{"label":"John Stride","version":17,"id":"11843","lastModified":"1300092062000","name":"John Stride","type":"Person","_key":"7566"} +{"label":"Holly Palance","version":17,"id":"11844","lastModified":"1300091801000","name":"Holly Palance","type":"Person","_key":"7567"} +{"label":"City of Angels","description":"When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.","id":"795","runtime":114,"imdbId":"tt0120632","trailer":"http:\/\/www.youtube.com\/watch?v=6zSG_oVliis","version":160,"lastModified":"1300051054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59b\/4d3e049d7b9aa15bb500059b\/city-of-angels-mid.jpg","studio":"Atlas Entertainment","genre":"Drama","title":"City of Angels","releaseDate":889574400000,"language":"en","tagline":"She didn't believe in angels until she fell in love with one.","type":"Movie","_key":"7568"} +{"label":"Brad Silberling","version":44,"id":"11887","lastModified":"1300090816000","name":"Brad Silberling","type":"Person","_key":"7569"} +{"label":"Dennis Franz","version":45,"id":"11901","lastModified":"1300090523000","name":"Dennis Franz","type":"Person","_key":"7570"} +{"label":"Robin Bartlett","version":32,"id":"11902","lastModified":"1300090346000","name":"Robin Bartlett","type":"Person","_key":"7571"} +{"label":"Joanna Merlin","version":23,"id":"11903","lastModified":"1300092228000","name":"Joanna Merlin","type":"Person","_key":"7572"} +{"label":"Sarah Dampf","version":19,"id":"11911","lastModified":"1300091489000","name":"Sarah Dampf","type":"Person","_key":"7573"} +{"label":"Rhonda Dotson","version":19,"id":"11913","lastModified":"1300092233000","name":"Rhonda Dotson","type":"Person","_key":"7574"} +{"label":"Nigel Gibbs","version":21,"id":"11915","lastModified":"1300091658000","name":"Nigel Gibbs","type":"Person","_key":"7575"} +{"label":"Cruel Intentions","description":"Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.","id":"796","runtime":97,"imdbId":"tt0139134","trailer":"http:\/\/www.youtube.com\/watch?v=538iMqi9S8g","version":165,"lastModified":"1300050843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdf\/4d21790b5e73d66b34002cdf\/cruel-intentions-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Cruel Intentions","releaseDate":920592000000,"language":"en","tagline":"In the game of seduction, There is only one rule: Never fall in love.","type":"Movie","_key":"7576"} +{"label":"Sarah Michelle Gellar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87a\/4be39409017a3c35b500087a\/sarah-michelle-gellar-profile.jpg","version":74,"birthday":"229820400000","id":"11863","birthplace":"New York City, New York, USA","lastModified":"1299942461000","name":"Sarah Michelle Gellar","type":"Person","_key":"7577"} +{"label":"Ryan Phillippe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2be\/4c015bfd017a3c70330012be\/ryan-phillippe-profile.jpg","version":87,"birthday":"147999600000","id":"11864","birthplace":"New Castle, Delaware","lastModified":"1300090305000","name":"Ryan Phillippe","type":"Person","_key":"7578"} +{"label":"Joshua Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4d74cb815e73d67abe000095\/joshua-jackson-profile.jpg","version":76,"id":"11866","lastModified":"1300090549000","name":"Joshua Jackson","type":"Person","_key":"7579"} +{"label":"Eric Mabius","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c82\/4cf272405e73d61e3b000c82\/eric-mabius-profile.jpg","version":42,"id":"11867","lastModified":"1300100595000","name":"Eric Mabius","type":"Person","_key":"7580"} +{"label":"Sean Patrick Thomas","version":27,"id":"11868","lastModified":"1299601573000","name":"Sean Patrick Thomas","type":"Person","_key":"7581"} +{"label":"Christine Baranski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4c28a6e85e73d61a940003d1\/christine-baranski-profile.jpg","version":41,"id":"11870","lastModified":"1300090732000","name":"Christine Baranski","type":"Person","_key":"7582"} +{"label":"Alaina Reed-Hall","version":20,"id":"11871","lastModified":"1300091485000","name":"Alaina Reed-Hall","type":"Person","_key":"7583"} +{"label":"Deborah Offner","version":43,"id":"11872","lastModified":"1300104994000","name":"Deborah Offner","type":"Person","_key":"7584"} +{"label":"Swoosie Kurtz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae1\/4cf58ac25e73d6299a000ae1\/swoosie-kurtz-profile.jpg","version":43,"id":"12967","lastModified":"1300090650000","name":"Swoosie Kurtz","type":"Person","_key":"7585"} +{"label":"Roger Kumble","version":46,"id":"11873","lastModified":"1300090583000","name":"Roger Kumble","type":"Person","_key":"7586"} +{"label":"Persona","description":"Persona is a psychoanalytical film from Swedish director Ingmar Bergman and reputed as his greatest masterpiece. The film deals with a silent actress and her relationship with her nurse who narrates her story.","id":"797","runtime":85,"imdbId":"tt0060827","version":132,"lastModified":"1299911552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fb\/4bc90cad017a3c57fe0046fb\/persona-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Drama","title":"Persona","releaseDate":-101174400000,"language":"en","type":"Movie","_key":"7587"} +{"label":"Liv Ullmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4ca644955e73d643ee00004f\/liv-ullmann-profile.jpg","version":44,"id":"11916","lastModified":"1300090738000","name":"Liv Ullmann","type":"Person","_key":"7588"} +{"label":"Margaretha Krook","version":17,"id":"11917","lastModified":"1300091336000","name":"Margaretha Krook","type":"Person","_key":"7589"} +{"label":"J\u00f6rgen Lindstr\u00f6m","version":17,"id":"11918","lastModified":"1300092228000","name":"J\u00f6rgen Lindstr\u00f6m","type":"Person","_key":"7590"} +{"label":"P\u00fcnktchen und Anton","description":"P\u00fcnktchen und Anton is a 1953 German film based on the children novel from Erich Kastner about two women who despite all the oppositions together go from chubby to thin.","id":"798","runtime":91,"imdbId":"tt0046218","version":48,"lastModified":"1299531910000","studio":"Rhombus Ringfilm","genre":"Drama","title":"P\u00fcnktchen und Anton","releaseDate":-515894400000,"language":"en","type":"Movie","_key":"7591"} +{"label":"Thomas Engel","version":15,"id":"11919","lastModified":"1300091698000","name":"Thomas Engel","type":"Person","_key":"7592"} +{"label":"Sabine Eggerth","version":14,"id":"11927","lastModified":"1300091921000","name":"Sabine Eggerth","type":"Person","_key":"7593"} +{"label":"Peter Feldt","version":14,"id":"11928","lastModified":"1300091674000","name":"Peter Feldt","type":"Person","_key":"7594"} +{"label":"Hertha Feiler","version":18,"id":"11929","lastModified":"1300092150000","name":"Hertha Feiler","type":"Person","_key":"7595"} +{"label":"Paul Klinger","version":20,"id":"11930","lastModified":"1300091871000","name":"Paul Klinger","type":"Person","_key":"7596"} +{"label":"Annie Rosar","version":18,"id":"11931","lastModified":"1299501163000","name":"Annie Rosar","type":"Person","_key":"7597"} +{"label":"Jane Tilden","version":15,"id":"11932","lastModified":"1300092640000","name":"Jane Tilden","type":"Person","_key":"7598"} +{"label":"Hans Putz","version":18,"id":"11933","lastModified":"1300092150000","name":"Hans Putz","type":"Person","_key":"7599"} +{"label":"Heidemarie Hatheyer","version":15,"id":"11934","lastModified":"1300092150000","name":"Heidemarie Hatheyer","type":"Person","_key":"7600"} +{"label":"Michael Janisch","version":15,"id":"11935","lastModified":"1300092528000","name":"Michael Janisch","type":"Person","_key":"7601"} +{"label":"Maria Eis","version":14,"id":"11936","lastModified":"1300092228000","name":"Maria Eis","type":"Person","_key":"7602"} +{"label":"Carl M\u00f6hner","version":25,"id":"11937","lastModified":"1300138363000","name":"Carl M\u00f6hner","type":"Person","_key":"7603"} +{"label":"Herbert Kroll","version":15,"id":"11938","lastModified":"1300092640000","name":"Herbert Kroll","type":"Person","_key":"7604"} +{"label":"P\u00fcnktchen und Anton","description":"P\u00fcnktchen und Anton is the 1999 German film based on the classic children\u2019s novels by Erich Kastner and assimilated to modern times.","id":"799","runtime":107,"imdbId":"tt0161935","version":55,"lastModified":"1299531844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/704\/4bc90cb0017a3c57fe004704\/punktchen-und-anton-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"P\u00fcnktchen und Anton","releaseDate":921110400000,"language":"en","type":"Movie","_key":"7605"} +{"label":"Elea Geissler","version":13,"id":"11949","lastModified":"1300092385000","name":"Elea Geissler","type":"Person","_key":"7606"} +{"label":"Max Felder","version":13,"id":"11950","lastModified":"1300091785000","name":"Max Felder","type":"Person","_key":"7607"} +{"label":"August Zirner","version":28,"id":"11951","lastModified":"1300091659000","name":"August Zirner","type":"Person","_key":"7608"} +{"label":"Gudrun Okras","version":16,"id":"11952","lastModified":"1300092111000","name":"Gudrun Okras","type":"Person","_key":"7609"} +{"label":"Benno F\u00fcrmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55b\/4c9b548d7b9aa122e100055b\/benno-furmann-profile.jpg","version":52,"id":"11953","lastModified":"1299960741000","name":"Benno F\u00fcrmann","type":"Person","_key":"7610"} +{"label":"Michael Hanemann","version":15,"id":"11954","lastModified":"1300092268000","name":"Michael Hanemann","type":"Person","_key":"7611"} +{"label":"Helmfried von L\u00fcttichau","version":14,"id":"11955","lastModified":"1300092640000","name":"Helmfried von L\u00fcttichau","type":"Person","_key":"7612"} +{"label":"Los Olvidados","description":"A gang of slum kids resort to deliquency as a defense against poverty and societal indifference.","id":"800","runtime":85,"imdbId":"tt0042804","version":98,"lastModified":"1299911325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd9\/4ccf75c55e73d65021000cd9\/los-olvidados-mid.jpg","studio":"Ultramar Films","genre":"Crime","title":"Los Olvidados","releaseDate":-601603200000,"language":"en","type":"Movie","_key":"7613"} +{"label":"Alfonso Mej\u00eda","version":13,"id":"11972","lastModified":"1299496559000","name":"Alfonso Mej\u00eda","type":"Person","_key":"7614"} +{"label":"Estela Inda","version":13,"id":"11973","lastModified":"1299499355000","name":"Estela Inda","type":"Person","_key":"7615"} +{"label":"Miguel Incl\u00e1n","version":15,"id":"11974","lastModified":"1299495556000","name":"Miguel Incl\u00e1n","type":"Person","_key":"7616"} +{"label":"Roberto Cobo","version":15,"id":"11975","lastModified":"1299499056000","name":"Roberto Cobo","type":"Person","_key":"7617"} +{"label":"Alma Delia Fuentes","version":13,"id":"11976","lastModified":"1299501699000","name":"Alma Delia Fuentes","type":"Person","_key":"7618"} +{"label":"Francisco Jambrina","version":14,"id":"11977","lastModified":"1299499415000","name":"Francisco Jambrina","type":"Person","_key":"7619"} +{"label":"Jes\u00fas Navarro","version":13,"id":"11978","lastModified":"1299501770000","name":"Jes\u00fas Navarro","type":"Person","_key":"7620"} +{"label":"Efra\u00edn Arauz","version":13,"id":"11979","lastModified":"1299501310000","name":"Efra\u00edn Arauz","type":"Person","_key":"7621"} +{"label":"Jorge P\u00e9rez","version":13,"id":"11980","lastModified":"1299501309000","name":"Jorge P\u00e9rez","type":"Person","_key":"7622"} +{"label":"Javier Am\u00e9zcua","version":13,"id":"11981","lastModified":"1299501659000","name":"Javier Am\u00e9zcua","type":"Person","_key":"7623"} +{"label":"M\u00e1rio Ram\u00edrez","version":13,"id":"11982","lastModified":"1299501659000","name":"M\u00e1rio Ram\u00edrez","type":"Person","_key":"7624"} +{"label":"Good Morning Vietnam","description":"Barry Levinson illustrates the everyday life of radio reporter, Adrian Cronauer, in this dramatic comedy. During the Vietnam War in Saigon. Adrian, played by a convincing Robin Williams, reports in with his funny provocations to the troops. Which soon makes him unpopular with his boss. \u201cGood morning Vietnam!\u201d","id":"801","runtime":121,"imdbId":"tt0093105","trailer":"http:\/\/www.youtube.com\/watch?v=2243","version":98,"lastModified":"1300190589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/715\/4bc90cb1017a3c57fe004715\/good-morning-vietnam-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Good Morning Vietnam","releaseDate":567216000000,"language":"en","tagline":"Time to rock it from the Delta to the DMZ!","type":"Movie","_key":"7625"} +{"label":"Tung Thanh Tran","version":19,"id":"11960","lastModified":"1300091920000","name":"Tung Thanh Tran","type":"Person","_key":"7626"} +{"label":"Chintara Sukapatana","version":20,"id":"11961","lastModified":"1300091695000","name":"Chintara Sukapatana","type":"Person","_key":"7627"} +{"label":"Lolita","description":"Humbert Humbert, a divorced British professor of French literature, travels to small-town America for a teaching position. He allows himself to be swept into a relationship with Charlotte Haze, his widowed and sexually famished landlady, whom he marries in order that he might pursue the woman's 14-year-old flirtatious daughter, Lolita, with whom he has fallen hopelessly in love, but whose affections shall be thwarted by a devious trickster named Clare Quilty.","id":"802","runtime":152,"imdbId":"tt0056193","trailer":"http:\/\/www.youtube.com\/watch?v=AHSUYVrvyCg","version":159,"lastModified":"1300247496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/730\/4bc90cb5017a3c57fe004730\/lolita-mid.jpg","studio":"Seven Arts Productions","genre":"Comedy","title":"Lolita","releaseDate":-238377600000,"language":"en","tagline":"How did they ever make a movie of...","type":"Movie","_key":"7628"} +{"label":"Sue Lyon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/063\/4c24b2df7b9aa14549000063\/sue-lyon-profile.jpg","version":20,"id":"12445","lastModified":"1300090537000","name":"Sue Lyon","type":"Person","_key":"7629"} +{"label":"Peter Sellers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4bcc6772017a3c0f2a0000b2\/peter-sellers-profile.jpg","version":86,"birthday":"-1398474000000","id":"12446","birthplace":"Southsea, Hampshire, England, UK","lastModified":"1300090291000","name":"Peter Sellers","type":"Person","_key":"7630"} +{"label":"John Harrison","version":18,"id":"12447","lastModified":"1300092429000","name":"John Harrison","type":"Person","_key":"7631"} +{"label":"Diana Decker","version":15,"id":"12448","lastModified":"1300092185000","name":"Diana Decker","type":"Person","_key":"7632"} +{"label":"Jerry Stovin","version":15,"id":"12449","lastModified":"1300092228000","name":"Jerry Stovin","type":"Person","_key":"7633"} +{"label":"Gary Cockrell","version":15,"id":"12450","lastModified":"1300092068000","name":"Gary Cockrell","type":"Person","_key":"7634"} +{"label":"Bill Greene","version":14,"id":"12451","lastModified":"1300092429000","name":"Bill Greene","type":"Person","_key":"7635"} +{"label":"Shirley Douglas","version":14,"id":"12452","lastModified":"1300092429000","name":"Shirley Douglas","type":"Person","_key":"7636"} +{"label":"Night and Fog","description":"The documentary film from French director Resnais set ten years after the Second World War depicts the problems of Auschwitz with shocking images from the concentration camps.","id":"803","runtime":32,"imdbId":"tt0048434","version":91,"lastModified":"1299531845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dba\/4cc25b4e5e73d63506000dba\/nuit-et-brouillard-mid.jpg","studio":"Argos Films S.A.","genre":"Documentary","title":"Night and Fog","releaseDate":-473385600000,"language":"en","type":"Movie","_key":"7637"} +{"label":"Alain Resnais","version":43,"id":"11983","lastModified":"1300090450000","name":"Alain Resnais","type":"Person","_key":"7638"} +{"label":"Michel Bouquet","version":41,"id":"11989","lastModified":"1300090586000","name":"Michel Bouquet","type":"Person","_key":"7639"} +{"label":"Reinhard Heydrich","version":15,"id":"11990","lastModified":"1300091290000","name":"Reinhard Heydrich","type":"Person","_key":"7640"} +{"label":"Heinrich Himmler","version":15,"id":"11991","lastModified":"1300091695000","name":"Heinrich Himmler","type":"Person","_key":"7641"} +{"label":"Julius Streicher","version":15,"id":"11992","lastModified":"1300092644000","name":"Julius Streicher","type":"Person","_key":"7642"} +{"label":"Roman Holiday","description":"Cosseted European princess who goes AWOL in Rome and is soon taken under the wing of tabloid journalist Joe Peck and his photographer sidekick, Irving Radovich. She thinks the boys don't suspect who she really is, but they're onto her -- and sense a sensational story if they can just keep Princess Ann handlers from retrieving her too soon.","id":"804","runtime":118,"imdbId":"tt0046250","trailer":"http:\/\/www.youtube.com\/watch?v=2514","version":251,"lastModified":"1300246843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/390\/4d6920467b9aa13631001390\/roman-holiday-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Roman Holiday","releaseDate":-515894400000,"language":"en","tagline":"Romance in romantic Rome!","type":"Movie","_key":"7643"} +{"label":"Eddie Albert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ca\/4c0541fb017a3c7e870002ca\/eddie-albert-profile.jpg","version":44,"id":"11998","lastModified":"1300090590000","name":"Eddie Albert","type":"Person","_key":"7644"} +{"label":"Hartley Power","version":19,"id":"11999","lastModified":"1300091290000","name":"Hartley Power","type":"Person","_key":"7645"} +{"label":"Harcourt Williams","version":21,"id":"12000","lastModified":"1300091948000","name":"Harcourt Williams","type":"Person","_key":"7646"} +{"label":"Margaret Rawlings","version":17,"id":"12001","lastModified":"1300092077000","name":"Margaret Rawlings","type":"Person","_key":"7647"} +{"label":"Tullio Carminati","version":18,"id":"12002","lastModified":"1300091956000","name":"Tullio Carminati","type":"Person","_key":"7648"} +{"label":"Paolo Carlini","version":18,"id":"12003","lastModified":"1300092089000","name":"Paolo Carlini","type":"Person","_key":"7649"} +{"label":"Claudio Ermelli","version":18,"id":"12004","lastModified":"1300091671000","name":"Claudio Ermelli","type":"Person","_key":"7650"} +{"label":"Paola Borboni","version":19,"id":"12005","lastModified":"1300091813000","name":"Paola Borboni","type":"Person","_key":"7651"} +{"label":"Alfredo Rizzo","version":18,"id":"12006","lastModified":"1300091216000","name":"Alfredo Rizzo","type":"Person","_key":"7652"} +{"label":"Rosemary's Baby","description":"Rosemary\u2019s Baby is a classic physiological horror film from Roman Polanski about a young couple who move into a New York apartment to start a family and have a baby. Things soon turn ugly as Rosemary believes her baby isn\u2019t safe around their strange neighbors.","id":"805","runtime":137,"imdbId":"tt0063522","version":158,"lastModified":"1300246500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/759\/4bc90cbb017a3c57fe004759\/rosemary-s-baby-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Rosemary's Baby","releaseDate":-49075200000,"language":"en","type":"Movie","_key":"7653"} +{"label":"Mia Farrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4c3341cf5e73d6496800019f\/mia-farrow-profile.jpg","version":79,"id":"12021","lastModified":"1300090406000","name":"Mia Farrow","type":"Person","_key":"7654"} +{"label":"Sidney Blackmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b9\/4c9a51f37b9aa127580003b9\/sidney-blackmer-profile.jpg","version":31,"id":"12022","lastModified":"1300090537000","name":"Sidney Blackmer","type":"Person","_key":"7655"} +{"label":"Maurice Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/195\/4c3341645e73d64968000195\/maurice-evans-profile.jpg","version":29,"id":"12023","lastModified":"1300091348000","name":"Maurice Evans","type":"Person","_key":"7656"} +{"label":"Victoria Vetri","version":17,"id":"12024","lastModified":"1300091867000","name":"Victoria Vetri","type":"Person","_key":"7657"} +{"label":"Patsy Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e5\/4c5193f77b9aa13d4f0001e5\/patsy-kelly-profile.jpg","version":20,"id":"12025","lastModified":"1300091674000","name":"Patsy Kelly","type":"Person","_key":"7658"} +{"label":"Emmaline Henry","version":13,"id":"12026","lastModified":"1300091573000","name":"Emmaline Henry","type":"Person","_key":"7659"} +{"label":"Marianne Gordon","version":13,"id":"12027","lastModified":"1300091572000","name":"Marianne Gordon","type":"Person","_key":"7660"} +{"label":"The Omen","description":"A diplomatic couple adopts the son of the devil without knowing it. A remake of the classic horror film of the same name from 1976.","id":"806","runtime":110,"imdbId":"tt0466909","homepage":"http:\/\/www.theomenmovie.com\/","version":310,"lastModified":"1300272247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76b\/4bc90cc0017a3c57fe00476b\/the-omen-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Omen","releaseDate":1149552000000,"language":"en","type":"Movie","_key":"7661"} +{"label":"John Moore","version":34,"id":"12028","lastModified":"1300091127000","name":"John Moore","type":"Person","_key":"7662"} +{"label":"Julia Stiles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6da\/4d7be2e05e73d651740016da\/julia-stiles-profile.jpg","biography":"Already critically acclaimed for a number of youthful film roles, it's just a matter of time before fresh-faced blonde Julia Stiles reaches the height of heights as a new tier of adult talent starts hitting the screen. Born Julia O'Hara Stiles on March 28, 1981, in New York City, she is of Irish, Italian and English stock.\n\nThe outgoing daughter of an elementary school teacher (father) and a Greenwich Village artist (mother), she is the eldest of three children. Encouraged to take modern dance l","version":107,"birthday":"354582000000","id":"12041","birthplace":"New York City, New York, USA","lastModified":"1300090257000","name":"Julia Stiles","type":"Person","_key":"7663"} +{"label":"Seamus Davey-Fitzpatrick","version":14,"id":"12042","lastModified":"1300091204000","name":"Seamus Davey-Fitzpatrick","type":"Person","_key":"7664"} +{"label":"Predrag Bjelac","version":30,"id":"12044","lastModified":"1300091030000","name":"Predrag Bjelac","type":"Person","_key":"7665"} +{"label":"Carlo Sabatini","version":14,"id":"12045","lastModified":"1300092044000","name":"Carlo Sabatini","type":"Person","_key":"7666"} +{"label":"Amy Huck","version":14,"id":"12046","lastModified":"1300092044000","name":"Amy Huck","type":"Person","_key":"7667"} +{"label":"Giovanni Lombardo Radice","version":34,"id":"27277","lastModified":"1300091683000","name":"Giovanni Lombardo Radice","type":"Person","_key":"7668"} +{"label":"Se7en","description":"Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.","id":"807","runtime":127,"imdbId":"tt0114369","trailer":"http:\/\/www.youtube.com\/watch?v=GsTUFuj4qwY","homepage":"http:\/\/www.sevenmovie.com\/","version":203,"lastModified":"1300246570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fb\/4cf052175e73d619260002fb\/se7en-mid.jpg","studio":"New Line Cinema","genre":"Crime","title":"Se7en","releaseDate":811728000000,"language":"en","tagline":"Seven deadly sins. Seven ways to die.","type":"Movie","_key":"7669"} +{"label":"Gwyneth Paltrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/176\/4bd70c67017a3c21f1000176\/gwyneth-paltrow-profile.jpg","biography":"Gwyneth Kate Paltrow (pronounced \/\u02c8\u0261w\u026an\u0268\u03b8 \u02c8p\u00e6ltro\u028a\/; born September 27, 1972) is an American actress.\n\nPaltrow made her acting debut on stage in 1990 and started appearing in films in 1991. She gained early notice for her work in films such as Se7en (1995), Emma (1996), in which she played the title role, and Sliding Doors (1998). She garnered worldwide recognition through her performance in Shakespeare in Love (1998), for which she won the Academy Award for Best Actress, a Golden Globe Award an","version":137,"birthday":"86396400000","id":"12052","birthplace":"Los Angeles, California, USA","lastModified":"1300031820000","name":"Gwyneth Paltrow","type":"Person","_key":"7670"} +{"label":"Andrew Kevin Walker","version":52,"id":"12047","lastModified":"1300090524000","name":"Andrew Kevin Walker","type":"Person","_key":"7671"} +{"label":"Daniel Zacapa","version":21,"id":"12054","lastModified":"1300090767000","name":"Daniel Zacapa","type":"Person","_key":"7672"} +{"label":"John Cassini","version":25,"id":"12055","lastModified":"1300090412000","name":"John Cassini","type":"Person","_key":"7673"} +{"label":"Hawthorne James","version":30,"id":"12056","lastModified":"1300090489000","name":"Hawthorne James","type":"Person","_key":"7674"} +{"label":"Shrek","description":"It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.","id":"808","runtime":90,"imdbId":"tt0126029","trailer":"http:\/\/www.youtube.com\/watch?v=mDcdG-TAqOE","homepage":"http:\/\/www.shrek.com\/","version":244,"lastModified":"1300246733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a7\/4bc90cc8017a3c57fe0047a7\/shrek-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Shrek","releaseDate":987897600000,"language":"en","tagline":"The greatest fairy tale never told.","type":"Movie","_key":"7675"} +{"label":"Vicky Jenson","version":30,"id":"12058","lastModified":"1300091170000","name":"Vicky Jenson","type":"Person","_key":"7676"} +{"label":"Mike Myers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/172\/4bdd3fac017a3c20ca000172\/mike-myers-profile.jpg","version":179,"id":"12073","lastModified":"1300277572000","name":"Mike Myers","type":"Person","_key":"7677"} +{"label":"John Lithgow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4c235df47b9aa13f5e000048\/john-lithgow-profile.jpg","version":98,"id":"12074","lastModified":"1300212990000","name":"John Lithgow","type":"Person","_key":"7678"} +{"label":"Peter Dennis","version":20,"id":"12075","lastModified":"1300090855000","name":"Peter Dennis","type":"Person","_key":"7679"} +{"label":"Clive Pearse","version":20,"id":"12076","lastModified":"1300091180000","name":"Clive Pearse","type":"Person","_key":"7680"} +{"label":"Jim Cummings","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d3\/4d4c32db5e73d617bd0015d3\/jim-cummings-profile.jpg","version":120,"id":"12077","lastModified":"1300090308000","name":"Jim Cummings","type":"Person","_key":"7681"} +{"label":"Bobby Block","version":23,"id":"12078","lastModified":"1300090710000","name":"Bobby Block","type":"Person","_key":"7682"} +{"label":"Shrek 2","description":"Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.","id":"809","runtime":92,"imdbId":"tt0298148","trailer":"http:\/\/www.youtube.com\/watch?v=V6X5ti4YlG8","homepage":"http:\/\/www.shrek2.com\/","version":213,"lastModified":"1300271594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ce\/4bc90ccd017a3c57fe0047ce\/shrek-2-mid.jpg","studio":"DreamWorks SKG","genre":"Adventure","title":"Shrek 2","releaseDate":1084579200000,"language":"en","tagline":"Once upon another time...","type":"Movie","_key":"7683"} +{"label":"Kelly Asbury","version":39,"id":"12079","lastModified":"1300090999000","name":"Kelly Asbury","type":"Person","_key":"7684"} +{"label":"Conrad Vernon","version":57,"id":"12080","lastModified":"1300090428000","name":"Conrad Vernon","type":"Person","_key":"7685"} +{"label":"Jennifer Saunders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c2\/4d617c5f5e73d60c5a0034c2\/jennifer-saunders-profile.jpg","version":33,"id":"12094","lastModified":"1300273445000","name":"Jennifer Saunders","type":"Person","_key":"7686"} +{"label":"Cody Cameron","version":75,"id":"12095","lastModified":"1300090405000","name":"Cody Cameron","type":"Person","_key":"7687"} +{"label":"Christopher Knights","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4cd5c4437b9aa11b27000188\/christopher-knights-profile.jpg","version":48,"id":"12097","lastModified":"1300090370000","name":"Christopher Knights","type":"Person","_key":"7688"} +{"label":"Shrek the Third","description":"Shrek and Co, return for more adventures. The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. Shrek however wants to return to his cosy swamp and live in peace and quiet. So when he finds out their is another heir to the throne, they set of to bring him back to rule the kingdom. Meanwhile, Prince Charming enlists the fairy tale baddies to steal the throne away.","id":"810","runtime":92,"imdbId":"tt0413267","trailer":"http:\/\/www.youtube.com\/watch?v=1788","homepage":"http:\/\/www.shrekthethird.com\/flash\/index.html","version":389,"lastModified":"1300271368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/471\/4d2d5ec35e73d63a6000d471\/shrek-the-third-mid.jpg","studio":"DreamWorks SKG","genre":"Adventure","title":"Shrek the Third","releaseDate":1179446400000,"language":"en","tagline":"Who's ready for Thirds?","type":"Movie","_key":"7689"} +{"label":"Raman Hui","version":30,"id":"12099","lastModified":"1300090945000","name":"Raman Hui","type":"Person","_key":"7690"} +{"label":"Chris Miller","version":57,"id":"12098","lastModified":"1300091049000","name":"Chris Miller","type":"Person","_key":"7691"} +{"label":"Amy Sedaris","version":42,"id":"12110","lastModified":"1300090435000","name":"Amy Sedaris","type":"Person","_key":"7692"} +{"label":"Justin Timberlake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/676\/4c08cf8e017a3c7e89000676\/justin-timberlake-profile.jpg","version":91,"birthday":"412815600000","id":"12111","birthplace":"Memphis, Tennessee, USA","lastModified":"1300153144000","name":"Justin Timberlake","type":"Person","_key":"7693"} +{"label":"Silent Running","description":"Aboard a spaceship is the last earth plant life. A lonely biologist is in charge of taking care of the plants. Yet when he is ordered to destroy his plants and come home he fights back. A science fiction film from special effects artist Douglas Trumbull and a step towards New Hollywood.","id":"811","runtime":89,"imdbId":"tt0067756","trailer":"http:\/\/www.youtube.com\/watch?v=TckJBvl_uT0","version":119,"lastModified":"1299911862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/812\/4bc90cd8017a3c57fe004812\/silent-running-mid.jpg","studio":"Universal Pictures","genre":"Science Fiction","title":"Silent Running","releaseDate":69033600000,"language":"en","type":"Movie","_key":"7694"} +{"label":"Douglas Trumbull","version":23,"id":"12112","lastModified":"1300090803000","name":"Douglas Trumbull","type":"Person","_key":"7695"} +{"label":"Cliff Potts","version":19,"id":"12121","lastModified":"1300091176000","name":"Cliff Potts","type":"Person","_key":"7696"} +{"label":"Ron Rifkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d0\/4cd781035e73d676d10004d0\/ron-rifkin-profile.jpg","version":38,"id":"12122","lastModified":"1300090655000","name":"Ron Rifkin","type":"Person","_key":"7697"} +{"label":"Jesse Vint","version":23,"id":"12123","lastModified":"1300090850000","name":"Jesse Vint","type":"Person","_key":"7698"} +{"label":"Steven Brown","version":17,"id":"12124","lastModified":"1300092542000","name":"Steven Brown","type":"Person","_key":"7699"} +{"label":"Mark Persons","version":17,"id":"12125","lastModified":"1300092662000","name":"Mark Persons","type":"Person","_key":"7700"} +{"label":"Cheryl Sparks","version":17,"id":"12126","lastModified":"1300092639000","name":"Cheryl Sparks","type":"Person","_key":"7701"} +{"label":"Aladdin","description":"Aladdin is a street-urchin who lives in a large and busy town long ago with his faithful monkey friend Abu. When Princess Jasmine gets tired of being forced to remain in the palace that overlooks the city, she sneaks out to the marketplace, where she accidentally meets Aladdin. Under the orders of the evil Jafar (the sultan's advisor), Aladdin is thrown in jail and becomes caught up in Jafar's plot to rule the land with the aid of a mysterious lamp. Legend has it that only a person who is a \"dia","id":"812","runtime":90,"imdbId":"tt0103639","trailer":"http:\/\/www.youtube.com\/watch?v=RNFs_sESJEc","homepage":"http:\/\/disney.go.com\/disneyvideos\/animatedfilms\/aladdin\/","version":234,"lastModified":"1300270910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/827\/4bc90cd9017a3c57fe004827\/aladdin-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"Aladdin","releaseDate":721440000000,"language":"en","tagline":"Wish granted!","type":"Movie","_key":"7702"} +{"label":"Ron Clements","version":103,"id":"15810","lastModified":"1300090517000","name":"Ron Clements","type":"Person","_key":"7703"} +{"label":"John Musker","version":108,"id":"15811","lastModified":"1300090458000","name":"John Musker","type":"Person","_key":"7704"} +{"label":"Scott Weinger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e3\/4d4c2e165e73d617ba0013e3\/scott-weinger-profile.jpg","version":45,"id":"15827","lastModified":"1300090409000","name":"Scott Weinger","type":"Person","_key":"7705"} +{"label":"Linda Larkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/579\/4d4c2e7e5e73d617bd001579\/linda-larkin-profile.jpg","version":38,"id":"15829","lastModified":"1300090383000","name":"Linda Larkin","type":"Person","_key":"7706"} +{"label":"Jonathan Freeman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c7\/4d4c2f085e73d617c70015c7\/jonathan-freeman-profile.jpg","version":36,"id":"15830","lastModified":"1300090453000","name":"Jonathan Freeman","type":"Person","_key":"7707"} +{"label":"Frank Welker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40b\/4d4c2f935e73d617ba00140b\/frank-welker-profile.jpg","version":103,"id":"15831","lastModified":"1300183235000","name":"Frank Welker","type":"Person","_key":"7708"} +{"label":"Gilbert Gottfried","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/472\/4c894f337b9aa1545b000472\/gilbert-gottfried-profile.jpg","version":62,"id":"15832","lastModified":"1300090883000","name":"Gilbert Gottfried","type":"Person","_key":"7709"} +{"label":"Douglas Seale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a0\/4d4c302b5e73d617bd0015a0\/douglas-seale-profile.jpg","version":36,"id":"15833","lastModified":"1300090465000","name":"Douglas Seale","type":"Person","_key":"7710"} +{"label":"Bruce Adler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f9\/4d4c306e5e73d617c70015f9\/bruce-adler-profile.jpg","version":33,"id":"15834","lastModified":"1300095753000","name":"Bruce Adler","type":"Person","_key":"7711"} +{"label":"Brad Kane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b6\/4d4c31775e73d617b30015b6\/brad-kane-profile.jpg","version":25,"id":"15836","lastModified":"1300090470000","name":"Brad Kane","type":"Person","_key":"7712"} +{"label":"Lea Salonga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/452\/4d4c32755e73d617ba001452\/lea-salonga-profile.jpg","version":35,"id":"15838","lastModified":"1300090394000","name":"Lea Salonga","type":"Person","_key":"7713"} +{"label":"Airplane!","description":"Airplane is an American comedy that parodies the airplane catastrophe films from the 70\u2019s. The film was a huge commercial success and is one of the most important films in American cinema history.","id":"813","runtime":88,"imdbId":"tt0080339","trailer":"http:\/\/www.youtube.com\/watch?v=qaXvFT_UyI8","version":174,"lastModified":"1300247117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84c\/4bc90cdf017a3c57fe00484c\/airplane-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Airplane!","releaseDate":331344000000,"language":"en","tagline":"What's slower than a speeding bullet, and able to hit tall buildings at a single bound?","type":"Movie","_key":"7714"} +{"label":"Robert Hays","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/436\/4c48911e5e73d61efb000436\/robert-hays-profile.jpg","version":44,"id":"14416","lastModified":"1300090417000","name":"Robert Hays","type":"Person","_key":"7715"} +{"label":"Julie Hagerty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d2\/4ca4c1447b9aa16ed70002d2\/julie-hagerty-profile.jpg","version":56,"id":"14415","lastModified":"1300090404000","name":"Julie Hagerty","type":"Person","_key":"7716"} +{"label":"Kareem Abdul-Jabbar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e0\/4ca4c1d67b9aa16ed90002e0\/kareem-abdul-jabbar-profile.jpg","version":27,"id":"14414","lastModified":"1300090390000","name":"Kareem Abdul-Jabbar","type":"Person","_key":"7717"} +{"label":"Lorna Patterson","version":18,"id":"14418","lastModified":"1300091027000","name":"Lorna Patterson","type":"Person","_key":"7718"} +{"label":"Stephen Stucker","version":18,"id":"14423","lastModified":"1300091113000","name":"Stephen Stucker","type":"Person","_key":"7719"} +{"label":"Jim Abrahams","version":85,"id":"12936","lastModified":"1300090383000","name":"Jim Abrahams","type":"Person","_key":"7720"} +{"label":"Frank Ashmore","version":19,"id":"14427","lastModified":"1300090756000","name":"Frank Ashmore","type":"Person","_key":"7721"} +{"label":"David Zucker","version":99,"id":"12987","lastModified":"1300217005000","name":"David Zucker","type":"Person","_key":"7722"} +{"label":"An American Werewolf in London","description":"Two American tourists in England are attacked by a werewolf that none of the locals will admit exists.","id":"814","runtime":97,"imdbId":"tt0082010","trailer":"http:\/\/www.youtube.com\/watch?v=_oJZjpHBskc","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/an-american-werewolf-in-london","version":134,"lastModified":"1300188093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/874\/4bc90ce5017a3c57fe004874\/an-american-werewolf-in-london-mid.jpg","studio":"Guber\/Peters Company","genre":"Comedy","title":"An American Werewolf in London","releaseDate":367200000000,"language":"en","type":"Movie","_key":"7723"} +{"label":"David Naughton","version":26,"id":"14463","lastModified":"1300091153000","name":"David Naughton","type":"Person","_key":"7724"} +{"label":"Jenny Agutter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4c9ccc4a7b9aa1430a00010a\/jenny-agutter-profile.jpg","version":39,"id":"14464","lastModified":"1300091069000","name":"Jenny Agutter","type":"Person","_key":"7725"} +{"label":"John Woodvine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8cf\/4ca2a9b55e73d67b5f0008cf\/john-woodvine-profile.jpg","version":25,"id":"14465","lastModified":"1300091040000","name":"John Woodvine","type":"Person","_key":"7726"} +{"label":"Lila Kaye","version":17,"id":"14466","lastModified":"1300092228000","name":"Lila Kaye","type":"Person","_key":"7727"} +{"label":"Joe Belcher","version":17,"id":"14467","lastModified":"1300091920000","name":"Joe Belcher","type":"Person","_key":"7728"} +{"label":"Brian Glover","version":33,"id":"14468","lastModified":"1300091455000","name":"Brian Glover","type":"Person","_key":"7729"} +{"label":"Rik Mayall","version":44,"id":"14469","lastModified":"1300178961000","name":"Rik Mayall","type":"Person","_key":"7730"} +{"label":"Sean Baker","version":17,"id":"14470","lastModified":"1300092228000","name":"Sean Baker","type":"Person","_key":"7731"} +{"label":"Paddy Ryan","version":17,"id":"14471","lastModified":"1300091920000","name":"Paddy Ryan","type":"Person","_key":"7732"} +{"label":"Anne-Marie Davies","version":17,"id":"14472","lastModified":"1300092228000","name":"Anne-Marie Davies","type":"Person","_key":"7733"} +{"label":"Animal Farm","description":"An animated film from 1999 based on the famous novel by George Orwell. Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption. ","id":"815","runtime":91,"imdbId":"tt0204824","version":126,"lastModified":"1300188011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4bc90ce6017a3c57fe00487e\/animal-farm-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Animation","title":"Animal Farm","releaseDate":938908800000,"language":"en","type":"Movie","_key":"7734"} +{"label":"John Stephenson","version":17,"id":"15869","lastModified":"1299909692000","name":"John Stephenson","type":"Person","_key":"7735"} +{"label":"Julia Louis-Dreyfus","version":45,"id":"15886","lastModified":"1300090460000","name":"Julia Louis-Dreyfus","type":"Person","_key":"7736"} +{"label":"Julia Ormond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4bd70a9f017a3c21e900010a\/julia-ormond-profile.jpg","version":68,"id":"15887","lastModified":"1300115888000","name":"Julia Ormond","type":"Person","_key":"7737"} +{"label":"Paul Scofield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/973\/4cdab24c5e73d676d1000973\/paul-scofield-profile.jpg","version":44,"id":"13324","lastModified":"1300187055000","name":"Paul Scofield","type":"Person","_key":"7738"} +{"label":"Peter Ustinov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a6\/4ca29eaa5e73d67b5f0008a6\/peter-ustinov-profile.jpg","version":91,"birthday":"-1537232400000","id":"14501","birthplace":"London, England, UK","lastModified":"1300182285000","name":"Peter Ustinov","type":"Person","_key":"7739"} +{"label":"Alan Stanford","version":14,"id":"15888","lastModified":"1300092044000","name":"Alan Stanford","type":"Person","_key":"7740"} +{"label":"Caroline Gray","version":14,"id":"15889","lastModified":"1300092044000","name":"Caroline Gray","type":"Person","_key":"7741"} +{"label":"Austin Powers: International Man of Mystery","description":"As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.","id":"816","runtime":94,"imdbId":"tt0118655","trailer":"http:\/\/www.youtube.com\/watch?v=_tQMdNoc8T8","version":168,"lastModified":"1300187931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afe\/4cb9ba447b9aa138da000afe\/austin-powers-international-man-of-mystery-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Austin Powers: International Man of Mystery","releaseDate":862531200000,"language":"en","tagline":"If he were any cooler, he'd still be frozen, baby!","type":"Movie","_key":"7742"} +{"label":"Elizabeth Hurley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4c003d14017a3c702f0010fa\/elizabeth-hurley-profile.jpg","biography":"Elizabeth Jane Hurley is an English model and actress who became known as a girlfriend of Hugh Grant in the 1990s. In 1994, as Grant became the focus of worldwide media attention due to the global box office success of his film Four Weddings and a Funeral, Hurley accompanied him to the film's Los Angeles premiere in a plunging black Versace dress held together with gold safety pins, which gained her instant media notice.\n\nThe highlight of Hurley's professional life has been her association with ","version":44,"birthday":"-143946000000","id":"13918","birthplace":"Basingstoke, Hampshire, UK","lastModified":"1300090346000","name":"Elizabeth Hurley","type":"Person","_key":"7743"} +{"label":"Michael York","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4c8fcd6b7b9aa17b4a000029\/michael-york-profile.jpg","version":81,"id":"13919","lastModified":"1300132807000","name":"Michael York","type":"Person","_key":"7744"} +{"label":"Mimi Rogers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4c81d9e05e73d65af2000044\/mimi-rogers-profile.jpg","version":65,"id":"13920","lastModified":"1299601613000","name":"Mimi Rogers","type":"Person","_key":"7745"} +{"label":"Seth Green","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c32\/4bfe02a6017a3c702d000c32\/seth-green-profile.jpg","version":156,"id":"13922","lastModified":"1300090333000","name":"Seth Green","type":"Person","_key":"7746"} +{"label":"Fabiana Udenio","version":23,"id":"13923","lastModified":"1300090567000","name":"Fabiana Udenio","type":"Person","_key":"7747"} +{"label":"Mindy Sterling","version":34,"id":"13924","lastModified":"1300090455000","name":"Mindy Sterling","type":"Person","_key":"7748"} +{"label":"Paul Dillon","version":19,"id":"13925","lastModified":"1299493137000","name":"Paul Dillon","type":"Person","_key":"7749"} +{"label":"Austin Powers: The Spy Who Shagged Me","description":"When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's \"mojo,\" Austin must return to the swingin' '60s himself -- with the help of American agent Felicity Shagwell -- to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.","id":"817","runtime":95,"imdbId":"tt0145660","trailer":"http:\/\/www.youtube.com\/watch?v=tZCkksmJ0YI","version":160,"lastModified":"1300187853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bb\/4bc90cf1017a3c57fe0048bb\/austin-powers-the-spy-who-shagged-me-mid.jpg","studio":"Eric's Boy","genre":"Action","title":"Austin Powers: The Spy Who Shagged Me","releaseDate":928800000000,"language":"en","tagline":"I'm back, baby!","type":"Movie","_key":"7750"} +{"label":"Gia Carides","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4d6428125e73d66a610000f5\/gia-carides-profile.jpg","version":43,"birthday":"-175741200000","id":"14226","birthplace":"Sydney, New South Wales, Australia","lastModified":"1300090505000","name":"Gia Carides","type":"Person","_key":"7751"} +{"label":"Austin Powers in Goldmember","description":"The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe -- '70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.","id":"818","runtime":94,"imdbId":"tt0295178","trailer":"http:\/\/www.youtube.com\/watch?v=qawr97z_yUM","homepage":"http:\/\/www.austinpowers.com\/","version":267,"lastModified":"1300269661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ec\/4d2224ac5e73d66b270034ec\/austin-powers-goldmember-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Austin Powers in Goldmember","releaseDate":1027296000000,"language":"en","tagline":"He's still evil... He's still deadly... and he's still surrouded by frickin' idiots!","type":"Movie","_key":"7752"} +{"label":"Beyonc\u00e9 Knowles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/011\/4c90434d7b9aa17cab000011\/beyonce-knowles-profile.jpg","biography":"<SPAN style=\"LINE-HEIGHT: 115%; FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-fareast-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\">Beyonc\u00e9 Giselle Knowles, born on September 4, 1981, often known simply as Beyonc\u00e9, is an American R&B and pop recording artist, actress and fashion model. Born and raised in Houston, Texas, she enrolled in various performing arts schools and was first ex","version":45,"birthday":"368402400000","id":"14386","lastModified":"1299491337000","name":"Beyonc\u00e9 Knowles","type":"Person","_key":"7753"} +{"label":"Diane Mizota","version":19,"id":"14390","lastModified":"1300091002000","name":"Diane Mizota","type":"Person","_key":"7754"} +{"label":"Carrie Ann Inaba","version":19,"id":"14391","lastModified":"1300090848000","name":"Carrie Ann Inaba","type":"Person","_key":"7755"} +{"label":"Sleepers","description":"Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes. A moving drama from director Barry Levinson.","id":"819","runtime":147,"imdbId":"tt0117665","trailer":"http:\/\/www.youtube.com\/watch?v=27","version":177,"lastModified":"1300248307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ed\/4bc90cfd017a3c57fe0048ed\/sleepers-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Crime","title":"Sleepers","releaseDate":845596800000,"language":"en","type":"Movie","_key":"7756"} +{"label":"Vittorio Gassman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/561\/4cd7ef9c5e73d676d1000561\/vittorio-gassman-profile.jpg","version":57,"id":"12259","lastModified":"1300104203000","name":"Vittorio Gassman","type":"Person","_key":"7757"} +{"label":"Ron Eldard","version":62,"id":"12260","lastModified":"1300221616000","name":"Ron Eldard","type":"Person","_key":"7758"} +{"label":"Jason Patric","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/154\/4bd8597c017a3c1c09000154\/jason-patric-profile.jpg","version":63,"id":"12261","lastModified":"1300273349000","name":"Jason Patric","type":"Person","_key":"7759"} +{"label":"Geoffrey Wigdor","version":17,"id":"12263","lastModified":"1300092385000","name":"Geoffrey Wigdor","type":"Person","_key":"7760"} +{"label":"Terry Kinney","version":42,"id":"11067","lastModified":"1300090435000","name":"Terry Kinney","type":"Person","_key":"7761"} +{"label":"Mary B. McCann","version":17,"id":"17186","lastModified":"1299495211000","name":"Mary B. McCann","type":"Person","_key":"7762"} +{"label":"JFK","description":"JFK is a thriller from Oliver Stone that revolves around the Murder of US President John F. Kennedy and the conspiracy theory follow-up.","id":"820","runtime":189,"imdbId":"tt0102138","trailer":"http:\/\/www.youtube.com\/watch?v=fW15dp3R-6U","version":175,"lastModified":"1300187531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/909\/4bc90d02017a3c57fe004909\/jfk-mid.jpg","studio":"Camelot Productions","genre":"Drama","title":"JFK","releaseDate":693187200000,"language":"en","tagline":"The story that won\u2019t go away.","type":"Movie","_key":"7763"} +{"label":"Michael Rooker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b71\/4cf3e69c5e73d62383000b71\/michael-rooker-profile.jpg","version":83,"id":"12132","lastModified":"1300212990000","name":"Michael Rooker","type":"Person","_key":"7764"} +{"label":"Laurie Metcalf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f2e\/4c7419ec7b9aa13ab4000f2e\/laurie-metcalf-profile.jpg","version":54,"id":"12133","lastModified":"1299493042000","name":"Laurie Metcalf","type":"Person","_key":"7765"} +{"label":"Sally Kirkland","version":24,"id":"12134","lastModified":"1300091003000","name":"Sally Kirkland","type":"Person","_key":"7766"} +{"label":"Edward Asner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4bca0b3e017a3c0e8d000034\/edward-asner-profile.jpg","version":76,"id":"68812","lastModified":"1300121820000","name":"Edward Asner","type":"Person","_key":"7767"} +{"label":"Ray LePere","version":16,"id":"12136","lastModified":"1300091502000","name":"Ray LePere","type":"Person","_key":"7768"} +{"label":"Tom Howard","version":16,"id":"12137","lastModified":"1300091709000","name":"Tom Howard","type":"Person","_key":"7769"} +{"label":"Lolita Davidovich","version":40,"id":"12139","lastModified":"1300208115000","name":"Lolita Davidovich","type":"Person","_key":"7770"} +{"label":"Jim Garrison","version":19,"id":"12128","lastModified":"1300091280000","name":"Jim Garrison","type":"Person","_key":"7771"} +{"label":"Judgment at Nuremberg","description":"Judgment at Nuremberg is an American film based on the trials of 4 Nazi judges in Nuremberg Germany in 1948 by an American court.","id":"821","runtime":186,"imdbId":"tt0055031","trailer":"http:\/\/www.youtube.com\/watch?v=mjMiwGHTffc","version":141,"lastModified":"1300187312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91f\/4bc90d07017a3c57fe00491f\/judgment-at-nuremberg-mid.jpg","studio":"Roxlom Films","genre":"Drama","title":"Judgment at Nuremberg","releaseDate":-253584000000,"language":"en","type":"Movie","_key":"7772"} +{"label":"Stanley Kramer","version":50,"id":"4081","lastModified":"1300090555000","name":"Stanley Kramer","type":"Person","_key":"7773"} +{"label":"Spencer Tracy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4bcf24f7017a3c63e8000029\/spencer-tracy-profile.jpg","version":73,"id":"12147","lastModified":"1300127830000","name":"Spencer Tracy","type":"Person","_key":"7774"} +{"label":"Burt Lancaster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/305\/4bd1dd1f017a3c63f5000305\/burt-lancaster-profile.jpg","version":118,"birthday":"-1772413200000","id":"13784","birthplace":"New York City, New York","lastModified":"1300003850000","name":"Burt Lancaster","type":"Person","_key":"7775"} +{"label":"Richard Widmark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/351\/4bd1f647017a3c63f5000351\/richard-widmark-profile.jpg","version":69,"id":"12149","lastModified":"1300205682000","name":"Richard Widmark","type":"Person","_key":"7776"} +{"label":"Maximilian Schell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4ca3f06e5e73d636fa00009d\/maximilian-schell-profile.jpg","version":62,"id":"12150","lastModified":"1300090499000","name":"Maximilian Schell","type":"Person","_key":"7777"} +{"label":"Montgomery Clift","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f9\/4bf545d8017a3c320b0008f9\/montgomery-clift-profile.jpg","version":38,"id":"12151","lastModified":"1300090499000","name":"Montgomery Clift","type":"Person","_key":"7778"} +{"label":"Werner Klemperer","version":20,"birthday":"-1570928400000","id":"12152","birthplace":"Cologne, North-Rhine-Westphalia, Germany","lastModified":"1299501711000","name":"Werner Klemperer","type":"Person","_key":"7779"} +{"label":"Torben Meyer","version":19,"id":"12153","lastModified":"1300092094000","name":"Torben Meyer","type":"Person","_key":"7780"} +{"label":"Martin Brandt","version":17,"id":"12154","lastModified":"1300091847000","name":"Martin Brandt","type":"Person","_key":"7781"} +{"label":"Kenneth MacKenna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20d\/4c60562a7b9aa172de00020d\/kenneth-mackenna-profile.jpg","version":16,"id":"12155","lastModified":"1300091526000","name":"Kenneth MacKenna","type":"Person","_key":"7782"} +{"label":"Alan Baxter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a9\/4bd99fdb017a3c1c090002a9\/alan-baxter-profile.jpg","version":26,"id":"12156","lastModified":"1300091012000","name":"Alan Baxter","type":"Person","_key":"7783"} +{"label":"John Wengraf","biography":"Emigrating to England in 1933 as the Nazis began their rise to power, Wengraf appeared unbilled in a couple of films there, as well as in some of the first BBC live-television shows ever presented but his career began to languish. In late 1941, however, he had the good fortune of appearing on Broadway with Helen Hayes in \"Candle in the Wind\" and decided to stay. The following year he headed west and settled permanently in the Los Angeles area. A dark, cold-eyed, thin-lipped player with a precise","version":24,"id":"12157","lastModified":"1300273549000","name":"John Wengraf","type":"Person","_key":"7784"} +{"label":"Karl Swenson","version":34,"id":"12158","lastModified":"1300091916000","name":"Karl Swenson","type":"Person","_key":"7785"} +{"label":"Howard Caine","version":16,"id":"12159","lastModified":"1300092063000","name":"Howard Caine","type":"Person","_key":"7786"} +{"label":"The Music Room","description":"The Music Room is a famous Bengali film from the great Satyajit Ray from 1958 about a improvised land owner and his love for music.","id":"822","runtime":100,"imdbId":"tt0051792","version":83,"lastModified":"1300187228000","studio":"Fugitive","genre":"Drama","title":"The Music Room","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"7787"} +{"label":"Satyajit Ray","version":25,"id":"12160","lastModified":"1300091173000","name":"Satyajit Ray","type":"Person","_key":"7788"} +{"label":"Chhabi Biswas","version":14,"id":"12170","lastModified":"1300091795000","name":"Chhabi Biswas","type":"Person","_key":"7789"} +{"label":"Padmadevi","version":15,"id":"12171","lastModified":"1300091920000","name":"Padmadevi","type":"Person","_key":"7790"} +{"label":"Kali Sarkar","version":15,"id":"12172","lastModified":"1300091290000","name":"Kali Sarkar","type":"Person","_key":"7791"} +{"label":"Gangapada Basu","version":14,"id":"12173","lastModified":"1300091795000","name":"Gangapada Basu","type":"Person","_key":"7792"} +{"label":"Tulsi Lahiri","version":14,"id":"12174","lastModified":"1300092405000","name":"Tulsi Lahiri","type":"Person","_key":"7793"} +{"label":"Pinaki Sengupta","version":15,"id":"12175","lastModified":"1300092405000","name":"Pinaki Sengupta","type":"Person","_key":"7794"} +{"label":"Roshan Kumari","version":14,"id":"12176","lastModified":"1300092405000","name":"Roshan Kumari","type":"Person","_key":"7795"} +{"label":"Waheed Khan","version":14,"id":"12177","lastModified":"1300092405000","name":"Waheed Khan","type":"Person","_key":"7796"} +{"label":"Jin-Roh: The Wolf Brigade","description":"Jin Roh is a Japanese anime political thriller from 1999 based on a Manga from Mamoru Oshii. The film is set in the 1950\u2019s depicting a Japanese dystopia city in a fight against terrorists.","id":"823","runtime":102,"imdbId":"tt0193253","version":121,"lastModified":"1300187157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/719\/4d20f30d5e73d66b27002719\/jin-r-mid.jpg","studio":"Bandai Visual Company","genre":"Animation","title":"Jin-Roh: The Wolf Brigade","releaseDate":942796800000,"language":"en","type":"Movie","_key":"7797"} +{"label":"Hiroyuki Okiura","version":16,"id":"12178","lastModified":"1300091609000","name":"Hiroyuki Okiura","type":"Person","_key":"7798"} +{"label":"Yoshikatsu Fujiki","version":14,"id":"12190","lastModified":"1300092080000","name":"Yoshikatsu Fujiki","type":"Person","_key":"7799"} +{"label":"Sumi Mutou","version":14,"id":"12191","lastModified":"1300091815000","name":"Sumi Mutou","type":"Person","_key":"7800"} +{"label":"Hiroyuki Kinosha","version":18,"id":"12192","lastModified":"1300091610000","name":"Hiroyuki Kinosha","type":"Person","_key":"7801"} +{"label":"Eri Sendai","version":15,"id":"12193","lastModified":"1300092439000","name":"Eri Sendai","type":"Person","_key":"7802"} +{"label":"Kenji Nakagawa","version":14,"id":"12194","lastModified":"1300092080000","name":"Kenji Nakagawa","type":"Person","_key":"7803"} +{"label":"Kousei Hirota","version":14,"id":"12195","lastModified":"1300092080000","name":"Kousei Hirota","type":"Person","_key":"7804"} +{"label":"Ryuichi Horibe","version":14,"id":"12196","lastModified":"1300092080000","name":"Ryuichi Horibe","type":"Person","_key":"7805"} +{"label":"Yukihiro Yoshida","version":14,"id":"12197","lastModified":"1300092080000","name":"Yukihiro Yoshida","type":"Person","_key":"7806"} +{"label":"Yoshisada Sakaguchi","version":16,"id":"12200","lastModified":"1300092247000","name":"Yoshisada Sakaguchi","type":"Person","_key":"7807"} +{"label":"Tamio Ohki","version":15,"id":"12199","lastModified":"1300092439000","name":"Tamio Ohki","type":"Person","_key":"7808"} +{"label":"Moulin Rouge!","description":"A poet falls for a beautiful courtesan whom a jealous duke covets in this stylish musical, with music drawn from familiar 20th century sources.","id":"824","runtime":127,"imdbId":"tt0203009","version":215,"lastModified":"1300226449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/969\/4bc90d12017a3c57fe004969\/moulin-rouge-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Moulin Rouge!","releaseDate":989366400000,"language":"en","type":"Movie","_key":"7809"} +{"label":"Richard Roxburgh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d6\/4c95d0ac7b9aa10d5a0002d6\/richard-roxburgh-profile.jpg","version":76,"id":"12206","lastModified":"1300090444000","name":"Richard Roxburgh","type":"Person","_key":"7810"} +{"label":"Kylie Minogue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d22\/4cf5ce245e73d6299d000d22\/kylie-minogue-profile.jpg","version":35,"id":"12207","lastModified":"1300090422000","name":"Kylie Minogue","type":"Person","_key":"7811"} +{"label":"Ozzy Osbourne","version":36,"id":"12208","lastModified":"1300091322000","name":"Ozzy Osbourne","type":"Person","_key":"7812"} +{"label":"Caroline O'Connor","version":20,"id":"12209","lastModified":"1300091938000","name":"Caroline O'Connor","type":"Person","_key":"7813"} +{"label":"Jacek Koman","version":16,"id":"12210","lastModified":"1300091818000","name":"Jacek Koman","type":"Person","_key":"7814"} +{"label":"Garry McDonald","version":24,"id":"12211","lastModified":"1300091037000","name":"Garry McDonald","type":"Person","_key":"7815"} +{"label":"Matthew Whittet","version":17,"id":"12212","lastModified":"1300091920000","name":"Matthew Whittet","type":"Person","_key":"7816"} +{"label":"Playing by Heart","description":"Eleven articulate people work through affairs of the heart in L.A. Paul produces Hannah's TV cooking show. Mark is dying of AIDS. Men have scalded Meredith so she rebuffs Trent's charm, but he persists. The trendy, prolix Joan tries to pull the solitary Keenan into her orbit. An adulterous couple meet at hotels for evening sex. Hugh tells tall tales, usually tragic, to women in bars.","id":"825","runtime":121,"imdbId":"tt0145734","trailer":"http:\/\/www.youtube.com\/watch?v=mIqSInFQ_d8","version":163,"lastModified":"1300187004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/977\/4bc90d13017a3c57fe004977\/playing-by-heart-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Playing by Heart","releaseDate":885427200000,"language":"en","tagline":"If romance is a mystery, there's only one way to figure it out.","type":"Movie","_key":"7817"} +{"label":"Gillian Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/208\/4c3b3ea75e73d671d4000208\/gillian-anderson-profile.jpg","biography":"Anderson moved to New York when she was 20 years old. To support herself when she started her career, Anderson worked as a waitress. She began her career in Alan Ayckbourn's play, Absent Friends at the Manhattan Theatre Club alongside Brenda Blethyn; she won the 1990-91 Theatre World \"Newcomer\" Award for her role. Her next theatrical role was in Christopher Hampton's The Philanthropist at the Long Wharf Theatre in New Haven, Connecticut.<br><br>\r\n\r\nAnderson moved to Los Angeles in 1992, spending","version":66,"birthday":"-44067600000","id":"12214","lastModified":"1300090405000","name":"Gillian Anderson","type":"Person","_key":"7818"} +{"label":"Christian Mills","version":21,"id":"12215","lastModified":"1300091391000","name":"Christian Mills","type":"Person","_key":"7819"} +{"label":"Kellie Waymire","version":19,"id":"12216","lastModified":"1300095757000","name":"Kellie Waymire","type":"Person","_key":"7820"} +{"label":"Jay Mohr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/742\/4ccb58435e73d65023000742\/jay-mohr-profile.jpg","biography":"Jay Mohr, born in Verona, New Jersey, USA, wanted to be a comedian all of his life. He performed stand-up comedy at colleges, comedy clubs, and such television forums as \"An Evening at the Improv\" (1982) and \"Two Drink Minimum\" (1994). He first gained national attention while a cast member on \"Saturday Night Live\" (1975), where he became known for his impersonations of such people as Sean Penn and Christopher Walken.","version":69,"birthday":"20214000000","id":"12217","birthplace":"Verona, New Jersey, USA","lastModified":"1300104827000","name":"Jay Mohr","type":"Person","_key":"7821"} +{"label":"Tim Halligan","version":23,"id":"12218","lastModified":"1300091207000","name":"Tim Halligan","type":"Person","_key":"7822"} +{"label":"Jon Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86d\/4cf1891f7b9aa13ef100086d\/jon-stewart-profile.jpg","version":38,"id":"12219","lastModified":"1300090522000","name":"Jon Stewart","type":"Person","_key":"7823"} +{"label":"John Patrick White","version":22,"id":"12221","lastModified":"1300091785000","name":"John Patrick White","type":"Person","_key":"7824"} +{"label":"David Ferguson","version":21,"id":"12222","lastModified":"1300091694000","name":"David Ferguson","type":"Person","_key":"7825"} +{"label":"Joel McCrary","version":24,"id":"12223","lastModified":"1300091697000","name":"Joel McCrary","type":"Person","_key":"7826"} +{"label":"Alec Mapa","version":22,"id":"12224","lastModified":"1300092092000","name":"Alec Mapa","type":"Person","_key":"7827"} +{"label":"Worthie Meacham","version":20,"id":"12225","lastModified":"1300091785000","name":"Worthie Meacham","type":"Person","_key":"7828"} +{"label":"Michael B. Silver","version":20,"id":"12226","lastModified":"1300091391000","name":"Michael B. Silver","type":"Person","_key":"7829"} +{"label":"Willard Carroll","version":34,"id":"12227","lastModified":"1300091259000","name":"Willard Carroll","type":"Person","_key":"7830"} +{"label":"The Bridge on the River Kwai","description":"A classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.","id":"826","runtime":161,"imdbId":"tt0050212","trailer":"http:\/\/www.youtube.com\/watch?v=NrBEc4Ydl1c","version":213,"lastModified":"1300247791000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98e\/4bc90d18017a3c57fe00498e\/the-bridge-on-the-river-kwai-mid.jpg","studio":" Columbia Pictures","genre":"Action","title":"The Bridge on the River Kwai","releaseDate":-379900800000,"language":"en","tagline":"It spans a whole new world of entertainment!","type":"Movie","_key":"7831"} +{"label":"David Lean","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/427\/4ca295be5e73d612f8000427\/david-lean-profile.jpg","version":75,"id":"12238","lastModified":"1300090534000","name":"David Lean","type":"Person","_key":"7832"} +{"label":"Sessue Hayakawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64c\/4cb9322c5e73d6778100064c\/sessue-hayakawa-profile.jpg","version":27,"id":"12249","lastModified":"1300091143000","name":"Sessue Hayakawa","type":"Person","_key":"7833"} +{"label":"James Donald","version":32,"id":"12250","lastModified":"1300091479000","name":"James Donald","type":"Person","_key":"7834"} +{"label":"Geoffrey Horne","version":24,"id":"12251","lastModified":"1300091601000","name":"Geoffrey Horne","type":"Person","_key":"7835"} +{"label":"Peter Williams","version":30,"id":"12252","lastModified":"1300091474000","name":"Peter Williams","type":"Person","_key":"7836"} +{"label":"Les Diaboliques","description":"Les Diaboliques is a mystery thriller from French director Henri-Georges Clouzot about a triangle relationship that leads to murder.The wife of a cruel headmaster and his mistress conspire to kill him, but after the murder is committed his body disappears, and strange events begin to plague the two women.","id":"827","runtime":107,"imdbId":"tt0046911","version":100,"lastModified":"1300186655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99b\/4bc90d19017a3c57fe00499b\/les-diaboliques-mid.jpg","studio":"Janus Films","genre":"Horror","title":"Les Diaboliques","releaseDate":-470966400000,"language":"en","type":"Movie","_key":"7837"} +{"label":"Simone Signoret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c1b9b617b9aa117a5000046\/simone-signoret-profile.jpg","version":34,"id":"12266","lastModified":"1300091088000","name":"Simone Signoret","type":"Person","_key":"7838"} +{"label":"Paul Meurisse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4c1b9bf37b9aa1178e000048\/paul-meurisse-profile.jpg","version":24,"id":"12267","lastModified":"1300091290000","name":"Paul Meurisse","type":"Person","_key":"7839"} +{"label":"Jean Brochard","version":17,"id":"12268","lastModified":"1300092426000","name":"Jean Brochard","type":"Person","_key":"7840"} +{"label":"Pierre Larquey","version":18,"id":"12269","lastModified":"1300091806000","name":"Pierre Larquey","type":"Person","_key":"7841"} +{"label":"Michel Serrault","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4c18d1605e73d64a2200030c\/michel-serrault-profile.jpg","version":58,"id":"12270","lastModified":"1300268262000","name":"Michel Serrault","type":"Person","_key":"7842"} +{"label":"Th\u00e9r\u00e8se Dorny","version":16,"id":"12271","lastModified":"1300091806000","name":"Th\u00e9r\u00e8se Dorny","type":"Person","_key":"7843"} +{"label":"No\u00ebl Roquevert","version":23,"id":"12272","lastModified":"1300091712000","name":"No\u00ebl Roquevert","type":"Person","_key":"7844"} +{"label":"Yves-Marie Maurin","version":17,"id":"12273","lastModified":"1300091951000","name":"Yves-Marie Maurin","type":"Person","_key":"7845"} +{"label":"Georges Poujouly","version":26,"id":"12274","lastModified":"1299494749000","name":"Georges Poujouly","type":"Person","_key":"7846"} +{"label":"Jacques Varennes","version":16,"id":"12275","lastModified":"1300091806000","name":"Jacques Varennes","type":"Person","_key":"7847"} +{"label":"The Day the Earth Stood Still","description":"An alien and a robot land on earth after World War II and tell mankind to be peaceful or face destruction. A classic science fiction film from Robert Wise with an exceptional message.","id":"828","runtime":92,"imdbId":"tt0043456","trailer":"http:\/\/www.youtube.com\/watch?v=OfpSXI8_UpY","version":209,"lastModified":"1300248079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a8\/4bc90d1a017a3c57fe0049a8\/the-day-the-earth-stood-still-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Day the Earth Stood Still","releaseDate":-577152000000,"language":"en","type":"Movie","_key":"7848"} +{"label":"Michael Rennie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4c1bba517b9aa117c8000039\/michael-rennie-profile.jpg","version":34,"id":"12282","lastModified":"1300214725000","name":"Michael Rennie","type":"Person","_key":"7849"} +{"label":"Billy Gray","version":18,"id":"3162","lastModified":"1300091089000","name":"Billy Gray","type":"Person","_key":"7850"} +{"label":"Frances Bavier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4d7004af7b9aa12fe9001010\/frances-bavier-profile.jpg","version":19,"id":"12283","lastModified":"1300092227000","name":"Frances Bavier","type":"Person","_key":"7851"} +{"label":"Lock Martin","version":16,"id":"12284","lastModified":"1300091915000","name":"Lock Martin","type":"Person","_key":"7852"} +{"label":"Elmer Davis","version":16,"id":"12285","lastModified":"1300091694000","name":"Elmer Davis","type":"Person","_key":"7853"} +{"label":"H.V. Kaltenborn","version":18,"id":"12286","lastModified":"1300091693000","name":"H.V. Kaltenborn","type":"Person","_key":"7854"} +{"label":"Drew Pearson","version":16,"id":"12287","lastModified":"1300091683000","name":"Drew Pearson","type":"Person","_key":"7855"} +{"label":"Chinatown","description":"A private detective investigating an adultery case stumbles on to a scheme of murder that has something to do with water.","id":"829","runtime":131,"imdbId":"tt0071315","trailer":"http:\/\/www.youtube.com\/watch?v=3aifeXlnoqY","version":176,"lastModified":"1300247993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c3\/4bc90d1f017a3c57fe0049c3\/chinatown-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"Chinatown","releaseDate":140918400000,"language":"en","type":"Movie","_key":"7856"} +{"label":"Perry Lopez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ce\/4ca4e7625e73d636f90002ce\/perry-lopez-profile.jpg","version":24,"id":"12295","lastModified":"1300090888000","name":"Perry Lopez","type":"Person","_key":"7857"} +{"label":"John Hillerman","version":24,"id":"12296","lastModified":"1300091506000","name":"John Hillerman","type":"Person","_key":"7858"} +{"label":"Darrell Zwerling","version":13,"id":"12297","lastModified":"1300092385000","name":"Darrell Zwerling","type":"Person","_key":"7859"} +{"label":"Roy Jenson","version":20,"id":"12298","lastModified":"1300092485000","name":"Roy Jenson","type":"Person","_key":"7860"} +{"label":"Richard Bakalyan","version":21,"id":"12299","lastModified":"1300091436000","name":"Richard Bakalyan","type":"Person","_key":"7861"} +{"label":"Forbidden Planet","description":"Captain Adams and the crew of the Starship C57D fly towards planet Altair 4 in search for the Bellerphon spaceship that has been missing for twenty years. To their surprise they are already being expected. A classic science fiction film from 1957 starring Leslie Nielsen.","id":"830","runtime":98,"imdbId":"tt0049223","trailer":"http:\/\/www.youtube.com\/watch?v=8y4crGU7dkg","version":122,"lastModified":"1300185992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d5\/4bc90d21017a3c57fe0049d5\/forbidden-planet-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Science Fiction","title":"Forbidden Planet","releaseDate":-435456000000,"language":"en","type":"Movie","_key":"7862"} +{"label":"Fred M. Wilcox","version":18,"id":"12300","lastModified":"1300091433000","name":"Fred M. Wilcox","type":"Person","_key":"7863"} +{"label":"Walter Pidgeon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4bcc7322017a3c0f32000116\/walter-pidgeon-profile.jpg","version":49,"id":"12308","lastModified":"1300090484000","name":"Walter Pidgeon","type":"Person","_key":"7864"} +{"label":"Anne Francis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/704\/4ca9f5d27b9aa17acc000704\/anne-francis-profile.jpg","version":25,"id":"12309","lastModified":"1300090403000","name":"Anne Francis","type":"Person","_key":"7865"} +{"label":"Warren Stevens","version":23,"id":"12310","lastModified":"1300091107000","name":"Warren Stevens","type":"Person","_key":"7866"} +{"label":"Jack Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/857\/4c6e9bf47b9aa13ab7000857\/jack-kelly-profile.jpg","version":26,"id":"12311","lastModified":"1300090624000","name":"Jack Kelly","type":"Person","_key":"7867"} +{"label":"Richard Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4bcf293c017a3c63ed000008\/richard-anderson-profile.jpg","version":32,"id":"12312","lastModified":"1300091164000","name":"Richard Anderson","type":"Person","_key":"7868"} +{"label":"Earl Holliman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/83a\/4c640a1b7b9aa172dc00083a\/earl-holliman-profile.jpg","version":26,"id":"12313","lastModified":"1300091104000","name":"Earl Holliman","type":"Person","_key":"7869"} +{"label":"George Wallace","version":31,"id":"12314","lastModified":"1300091238000","name":"George Wallace","type":"Person","_key":"7870"} +{"label":"Robert Dix","version":19,"id":"12315","lastModified":"1300091626000","name":"Robert Dix","type":"Person","_key":"7871"} +{"label":"Jimmy Thompson","version":18,"id":"12316","lastModified":"1300091428000","name":"Jimmy Thompson","type":"Person","_key":"7872"} +{"label":"Robby the Robot","version":16,"id":"12317","lastModified":"1300091437000","name":"Robby the Robot","type":"Person","_key":"7873"} +{"label":"This Island Earth","description":"Aliens have landed and are hiding on planet earth. They need the earth\u2019s scientists to help them fight a war between planets. A science fiction B-movie from the 1950\u2019s that stands out from the rest and has since gained cult status.","id":"831","runtime":87,"imdbId":"tt0047577","trailer":"http:\/\/www.youtube.com\/watch?v=hR7e3StbXoU","version":117,"lastModified":"1299911200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e7\/4bc90d26017a3c57fe0049e7\/this-island-earth-mid.jpg","studio":"Universal International Pictures","genre":"Science Fiction","title":"This Island Earth","releaseDate":-460339200000,"language":"en","type":"Movie","_key":"7874"} +{"label":"Joseph M. Newman","version":19,"id":"12327","lastModified":"1300090415000","name":"Joseph M. Newman","type":"Person","_key":"7875"} +{"label":"Jeff Morrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58c\/4cb358007b9aa1264000058c\/jeff-morrow-profile.jpg","version":17,"id":"12351","lastModified":"1300092230000","name":"Jeff Morrow","type":"Person","_key":"7876"} +{"label":"Faith Domergue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/111\/4bd6f8d9017a3c21ea000111\/faith-domergue-profile.jpg","version":24,"id":"85740","lastModified":"1300090589000","name":"Faith Domergue","type":"Person","_key":"7877"} +{"label":"Rex Reason","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/143\/4bffd7a9017a3c702d001143\/rex-reason-profile.jpg","version":19,"id":"12353","lastModified":"1300092178000","name":"Rex Reason","type":"Person","_key":"7878"} +{"label":"Lance Fuller","version":20,"id":"12354","lastModified":"1300091920000","name":"Lance Fuller","type":"Person","_key":"7879"} +{"label":"Russell Johnson","version":20,"id":"12355","lastModified":"1300091868000","name":"Russell Johnson","type":"Person","_key":"7880"} +{"label":"Douglas Spencer","version":30,"id":"12356","lastModified":"1300091154000","name":"Douglas Spencer","type":"Person","_key":"7881"} +{"label":"Robert Nichols","version":16,"id":"12357","lastModified":"1300091920000","name":"Robert Nichols","type":"Person","_key":"7882"} +{"label":"M","description":"M is German director Fritz Lang\u2019s masterpiece that illustrates the portrait of a child murderer that has caused an entire city to begin rioting. The film is based on actual events.","id":"832","runtime":117,"imdbId":"tt0022100","version":175,"lastModified":"1300185892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/479\/4d30d8477b9aa14519000479\/m-mid.jpg","studio":"Nero Film","genre":"Crime","title":"M","releaseDate":-1224806400000,"language":"en","type":"Movie","_key":"7883"} +{"label":"Ellen Widmann","version":14,"id":"12322","lastModified":"1300091391000","name":"Ellen Widmann","type":"Person","_key":"7884"} +{"label":"Inge Landgut","version":16,"id":"12323","lastModified":"1300091451000","name":"Inge Landgut","type":"Person","_key":"7885"} +{"label":"Otto Wernicke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dc\/4ca402515e73d636fb0000dc\/otto-wernicke-profile.jpg","version":20,"id":"12324","lastModified":"1300091448000","name":"Otto Wernicke","type":"Person","_key":"7886"} +{"label":"Gustaf Gr\u00fcndgens","version":16,"id":"12325","lastModified":"1300091785000","name":"Gustaf Gr\u00fcndgens","type":"Person","_key":"7887"} +{"label":"Friedrich Gna\u00df","version":16,"id":"12326","lastModified":"1300091846000","name":"Friedrich Gna\u00df","type":"Person","_key":"7888"} +{"label":"Umberto D.","description":"Umberto D. is an Italian surrealistic film criticizing corporations. A film from 1952 by Italian director Vittorio De Sica.","id":"833","runtime":89,"imdbId":"tt0045274","version":104,"lastModified":"1299910674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0a\/4bc90d29017a3c57fe004a0a\/umberto-d-mid.jpg","genre":"Drama","title":"Umberto D.","releaseDate":-566438400000,"language":"en","type":"Movie","_key":"7889"} +{"label":"Vittorio De Sica","version":60,"id":"12329","lastModified":"1300130779000","name":"Vittorio De Sica","type":"Person","_key":"7890"} +{"label":"Carlo Battisti","version":14,"id":"12336","lastModified":"1300092238000","name":"Carlo Battisti","type":"Person","_key":"7891"} +{"label":"Maria-Pia Casilio","version":16,"id":"12337","lastModified":"1300091695000","name":"Maria-Pia Casilio","type":"Person","_key":"7892"} +{"label":"Lina Gennari","version":14,"id":"12338","lastModified":"1300091458000","name":"Lina Gennari","type":"Person","_key":"7893"} +{"label":"Ileana Simova","version":14,"id":"12339","lastModified":"1300091656000","name":"Ileana Simova","type":"Person","_key":"7894"} +{"label":"Elena Rea","version":14,"id":"12340","lastModified":"1300091868000","name":"Elena Rea","type":"Person","_key":"7895"} +{"label":"Memmo Carotenuto","version":25,"id":"12341","lastModified":"1300092527000","name":"Memmo Carotenuto","type":"Person","_key":"7896"} +{"label":"Underworld: Evolution","description":"As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.","id":"834","runtime":105,"imdbId":"tt0401855","trailer":"http:\/\/www.youtube.com\/watch?v=f_tp3x4D4sc","version":279,"lastModified":"1300247758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b6\/4c958b885e73d63a770003b6\/underworld-evolution-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Underworld: Evolution","releaseDate":1137628800000,"language":"en","tagline":"My God. Brother, what have you done?","type":"Movie","_key":"7897"} +{"label":"Zita G\u00f6r\u00f6g","version":21,"id":"12358","lastModified":"1300090388000","name":"Zita G\u00f6r\u00f6g","type":"Person","_key":"7898"} +{"label":"Brian Steele","version":29,"id":"12359","lastModified":"1300090388000","name":"Brian Steele","type":"Person","_key":"7899"} +{"label":"Scott McElroy","version":18,"id":"12366","lastModified":"1300090402000","name":"Scott McElroy","type":"Person","_key":"7900"} +{"label":"John Mann","version":20,"id":"12367","lastModified":"1300090388000","name":"John Mann","type":"Person","_key":"7901"} +{"label":"Richard Cetrone","version":24,"id":"12371","lastModified":"1300090350000","name":"Richard Cetrone","type":"Person","_key":"7902"} +{"label":"Mike Mukatis","version":18,"id":"12372","lastModified":"1300090410000","name":"Mike Mukatis","type":"Person","_key":"7903"} +{"label":"F.P.1 antwortet nicht","description":"F.P.1 is a huge airplane landing dock in the Atlantic where pilots making the transatlantic flight can stop. Yet a saboteur tries to sink the technical wonder in this classic German science fiction film from 1932. The film was also created with English and French speaking actors at the same time.","id":"835","runtime":114,"imdbId":"tt0022869","version":52,"lastModified":"1299531853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a35\/4bc90d30017a3c57fe004a35\/f-p-1-antwortet-nicht-mid.jpg","studio":"UFA Universum-Film AG","genre":"Science Fiction","title":"F.P.1 antwortet nicht","releaseDate":-1168473600000,"language":"en","type":"Movie","_key":"7904"} +{"label":"Karl Hartl","version":16,"id":"12361","lastModified":"1300092149000","name":"Karl Hartl","type":"Person","_key":"7905"} +{"label":"Paul Hartmann","version":22,"id":"12373","lastModified":"1300091933000","name":"Paul Hartmann","type":"Person","_key":"7906"} +{"label":"Hermann Speelmans","version":14,"id":"12375","lastModified":"1300092228000","name":"Hermann Speelmans","type":"Person","_key":"7907"} +{"label":"Paul Westermeier","version":16,"id":"12376","lastModified":"1300092527000","name":"Paul Westermeier","type":"Person","_key":"7908"} +{"label":"Arthur Peiser","version":14,"id":"12377","lastModified":"1300091868000","name":"Arthur Peiser","type":"Person","_key":"7909"} +{"label":"Gustav P\u00fcttjer","version":15,"id":"12378","lastModified":"1300092527000","name":"Gustav P\u00fcttjer","type":"Person","_key":"7910"} +{"label":"Georg August Koch","version":14,"id":"12380","lastModified":"1300092175000","name":"Georg August Koch","type":"Person","_key":"7911"} +{"label":"Hans Schneider","version":16,"id":"12381","lastModified":"1300092527000","name":"Hans Schneider","type":"Person","_key":"7912"} +{"label":"Vidas Secas","description":"Vidas Secas tells in vivid images the almost documentary like story of a drover and his family in the northern interior states of Brazil during the drought. A family in the search of a new hope and destiny.","id":"836","runtime":115,"imdbId":"tt0057654","version":86,"lastModified":"1300043008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/647\/4d4aa9bb5e73d617bd000647\/vidas-secas-mid.jpg","studio":"Luiz Carlos Barreto Produ\u00e7\u00f5es Cinematogr\u00e1ficas","genre":"Drama","title":"Vidas Secas","releaseDate":-220924800000,"language":"en","type":"Movie","_key":"7913"} +{"label":"Nelson Pereira dos Santos","version":15,"id":"12386","lastModified":"1300091926000","name":"Nelson Pereira dos Santos","type":"Person","_key":"7914"} +{"label":"\u00c1tila I\u00f3rio","version":14,"id":"12396","lastModified":"1300091657000","name":"\u00c1tila I\u00f3rio","type":"Person","_key":"7915"} +{"label":"Maria Ribeiro","version":20,"id":"12397","lastModified":"1300090961000","name":"Maria Ribeiro","type":"Person","_key":"7916"} +{"label":"Orlando Macedo","version":14,"id":"12398","lastModified":"1300092150000","name":"Orlando Macedo","type":"Person","_key":"7917"} +{"label":"Joffre Soares","version":15,"id":"12399","lastModified":"1300092150000","name":"Joffre Soares","type":"Person","_key":"7918"} +{"label":"Videodrome","description":"A sleazy cable-TV programmer begins to see his life and the future of media spin out of control in a very unusual fashion when he acquires a new kind of programming for his station.","id":"837","runtime":89,"imdbId":"tt0086541","trailer":"http:\/\/www.youtube.com\/watch?v=Fh5U2RW58p4","version":183,"lastModified":"1300246552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/257\/4cd2e8c45e73d65022001257\/videodrome-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Videodrome","releaseDate":413164800000,"language":"en","tagline":"First it controls your mind. Then it destroys your body.","type":"Movie","_key":"7919"} +{"label":"Sonja Smits","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc1\/4d2805de7b9aa134cf001dc1\/sonja-smits-profile.jpg","version":30,"id":"12482","lastModified":"1300091013000","name":"Sonja Smits","type":"Person","_key":"7920"} +{"label":"Peter Dvorsky","version":21,"id":"12483","lastModified":"1300092149000","name":"Peter Dvorsky","type":"Person","_key":"7921"} +{"label":"Jack Creley","version":22,"id":"12485","lastModified":"1300092527000","name":"Jack Creley","type":"Person","_key":"7922"} +{"label":"Lynne Gorman","version":18,"id":"12486","lastModified":"1300092637000","name":"Lynne Gorman","type":"Person","_key":"7923"} +{"label":"Julie Khaner","version":25,"id":"12487","lastModified":"1300090575000","name":"Julie Khaner","type":"Person","_key":"7924"} +{"label":"Reiner Schwartz","version":18,"id":"12488","lastModified":"1300092527000","name":"Reiner Schwartz","type":"Person","_key":"7925"} +{"label":"David Bolt","version":18,"id":"12489","lastModified":"1300092527000","name":"David Bolt","type":"Person","_key":"7926"} +{"label":"Lally Cadeau","version":19,"id":"12490","lastModified":"1300091868000","name":"Lally Cadeau","type":"Person","_key":"7927"} +{"label":"Leslie Carlson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/504\/4d4c28125e73d617bd001504\/leslie-carlson-profile.jpg","version":26,"id":"12716","lastModified":"1300091813000","name":"Leslie Carlson","type":"Person","_key":"7928"} +{"label":"American Graffiti","description":"American Graffiti takes place in the early 1960\u2019s depicting one eventful graduation night for four friends one their last day together before college \u2013 before adulthood. A comedy from director George Lucas and his first extremely successful film.","id":"838","runtime":110,"imdbId":"tt0069704","version":153,"lastModified":"1300185234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc90d36017a3c57fe004a5e\/american-graffiti-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"American Graffiti","releaseDate":113011200000,"language":"en","tagline":"Where were you in '62?","type":"Movie","_key":"7929"} +{"label":"Paul Le Mat","version":29,"id":"12406","lastModified":"1300091097000","name":"Paul Le Mat","type":"Person","_key":"7930"} +{"label":"Candy Clark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4bd5f922017a3c65820000a5\/candy-clark-profile.jpg","version":44,"id":"12407","lastModified":"1300101617000","name":"Candy Clark","type":"Person","_key":"7931"} +{"label":"Mackenzie Phillips","version":14,"id":"12408","lastModified":"1300092044000","name":"Mackenzie Phillips","type":"Person","_key":"7932"} +{"label":"Wolfman Jack","version":16,"id":"12409","lastModified":"1300091599000","name":"Wolfman Jack","type":"Person","_key":"7933"} +{"label":"Bo Hopkins","version":37,"id":"12410","lastModified":"1300091265000","name":"Bo Hopkins","type":"Person","_key":"7934"} +{"label":"Manuel Padilla Jr.","version":16,"id":"12411","lastModified":"1300092126000","name":"Manuel Padilla Jr.","type":"Person","_key":"7935"} +{"label":"Beau Gentry","version":14,"id":"12412","lastModified":"1300091785000","name":"Beau Gentry","type":"Person","_key":"7936"} +{"label":"Duel","description":"Travelling businessman, David Mann, angers the driver of a rusty tanker whilst crossing the Californian desert. A simple trip turns deadly as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.","id":"839","runtime":74,"imdbId":"tt0067023","version":101,"lastModified":"1299910488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a75\/4bc90d3a017a3c57fe004a75\/duel-mid.jpg","studio":"Universal TV","genre":"Action","title":"Duel","releaseDate":58579200000,"language":"en","type":"Movie","_key":"7937"} +{"label":"Dennis Weaver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7bd\/4bf54ad5017a3c32120007bd\/dennis-weaver-profile.jpg","version":20,"id":"12422","lastModified":"1299493966000","name":"Dennis Weaver","type":"Person","_key":"7938"} +{"label":"Eddie Firestone","version":16,"id":"12423","lastModified":"1300091481000","name":"Eddie Firestone","type":"Person","_key":"7939"} +{"label":"Gene Dynarski","version":16,"id":"12424","lastModified":"1300091488000","name":"Gene Dynarski","type":"Person","_key":"7940"} +{"label":"Tim Herbert","version":16,"id":"12425","lastModified":"1300091694000","name":"Tim Herbert","type":"Person","_key":"7941"} +{"label":"Charles Seel","version":15,"id":"12426","lastModified":"1300092199000","name":"Charles Seel","type":"Person","_key":"7942"} +{"label":"Alexander Lockwood","version":19,"id":"12427","lastModified":"1300091920000","name":"Alexander Lockwood","type":"Person","_key":"7943"} +{"label":"Amy Douglass","version":15,"id":"12428","lastModified":"1300092637000","name":"Amy Douglass","type":"Person","_key":"7944"} +{"label":"Shirley O'Hara","version":16,"id":"12429","lastModified":"1300091656000","name":"Shirley O'Hara","type":"Person","_key":"7945"} +{"label":"Lucille Benson","version":18,"id":"12430","lastModified":"1300092645000","name":"Lucille Benson","type":"Person","_key":"7946"} +{"label":"Carey Loftin","version":15,"id":"12431","lastModified":"1300092637000","name":"Carey Loftin","type":"Person","_key":"7947"} +{"label":"Close Encounters of the Third Kind","description":"After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.","id":"840","runtime":135,"imdbId":"tt0075860","trailer":"http:\/\/www.youtube.com\/watch?v=oiQse9XibQw","version":173,"lastModified":"1300185068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3be\/4cd6d1ce5e73d676d20003be\/close-encounters-of-the-third-kind-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Science Fiction","title":"Close Encounters of the Third Kind","releaseDate":248400000000,"language":"en","tagline":"We are not alone.","type":"Movie","_key":"7948"} +{"label":"Bob Balaban","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/463\/4ce1dd635e73d60f6f000463\/bob-balaban-profile.jpg","version":67,"id":"12438","lastModified":"1300090324000","name":"Bob Balaban","type":"Person","_key":"7949"} +{"label":"J. Patrick McNamara","version":20,"id":"12439","lastModified":"1300091919000","name":"J. Patrick McNamara","type":"Person","_key":"7950"} +{"label":"Warren J. Kemmerling","version":24,"id":"12440","lastModified":"1300091694000","name":"Warren J. Kemmerling","type":"Person","_key":"7951"} +{"label":"Philip Dodds","version":17,"id":"12441","lastModified":"1300091488000","name":"Philip Dodds","type":"Person","_key":"7952"} +{"label":"Adrienne Campbell","version":17,"id":"12442","lastModified":"1300091488000","name":"Adrienne Campbell","type":"Person","_key":"7953"} +{"label":"Justin Dreyfuss","version":17,"id":"12443","lastModified":"1300091491000","name":"Justin Dreyfuss","type":"Person","_key":"7954"} +{"label":"Merrill Connally","version":17,"id":"12444","lastModified":"1300091503000","name":"Merrill Connally","type":"Person","_key":"7955"} +{"label":"Dune","description":"In the year 10,191, the world is at war for control of the desert planet Dune -- the only place where the time-travel substance Spice can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.","id":"841","runtime":137,"imdbId":"tt0087182","trailer":"http:\/\/www.youtube.com\/watch?v=xYWJn2GolrI","version":221,"lastModified":"1300184930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8a\/4d47f5c25e73d67063002f8a\/dune-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Dune","releaseDate":470707200000,"language":"en","tagline":"A world beyond your experience, beyond your imagination.","type":"Movie","_key":"7956"} +{"label":"Francesca Annis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f7\/4ca4a7115e73d636fa0001f7\/francesca-annis-profile.jpg","version":26,"id":"12513","lastModified":"1300090625000","name":"Francesca Annis","type":"Person","_key":"7957"} +{"label":"Leonardo Cimino","version":29,"id":"12514","lastModified":"1300188013000","name":"Leonardo Cimino","type":"Person","_key":"7958"} +{"label":"Jos\u00e9 Ferrer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/700\/4c6e92037b9aa13ab5000700\/jose-ferrer-profile.jpg","version":49,"id":"12515","lastModified":"1300090473000","name":"Jos\u00e9 Ferrer","type":"Person","_key":"7959"} +{"label":"Linda Hunt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f9\/4cf37f195e73d623870006f9\/linda-hunt-profile.jpg","version":39,"id":"12516","lastModified":"1300090459000","name":"Linda Hunt","type":"Person","_key":"7960"} +{"label":"Freddie Jones","version":49,"id":"12517","lastModified":"1300090549000","name":"Freddie Jones","type":"Person","_key":"7961"} +{"label":"Richard Jordan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48a\/4c9f7e2a5e73d6704900048a\/richard-jordan-profile.jpg","version":51,"id":"12518","lastModified":"1300090365000","name":"Richard Jordan","type":"Person","_key":"7962"} +{"label":"Virginia Madsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/189\/4bd88fb5017a3c1c05000189\/virginia-madsen-profile.jpg","version":80,"birthday":"-262141200000","id":"12519","birthplace":"Chicago, Illinois, United States","lastModified":"1300090289000","name":"Virginia Madsen","type":"Person","_key":"7963"} +{"label":"Silvana Mangano","version":35,"id":"12520","lastModified":"1300090626000","name":"Silvana Mangano","type":"Person","_key":"7964"} +{"label":"Kenneth McMillan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f1\/4cc9c1de7b9aa16b9e0003f1\/kenneth-mcmillan-profile.jpg","version":35,"id":"12521","lastModified":"1300205142000","name":"Kenneth McMillan","type":"Person","_key":"7965"} +{"label":"Si\u00e2n Phillips","version":21,"id":"12522","lastModified":"1300090353000","name":"Si\u00e2n Phillips","type":"Person","_key":"7966"} +{"label":"The Assassination Of Richard Nixon","description":"It\u2019s 1974 and Sam Bicke has lost everything. His wife leaves him with his three kids, his boss fires him, his brother turns away from him, and the bank won\u2019t give him any money to start anew. He tries to find someone to blame for his misfortunes and comes up with the President of the United States who he plans to murder.","id":"842","runtime":95,"imdbId":"tt0364961","trailer":"http:\/\/www.youtube.com\/watch?v=OxNDMzwSU7U","version":452,"lastModified":"1300265011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b15\/4bc90d53017a3c57fe004b15\/the-assassination-of-richard-nixon-mid.jpg","studio":"Monsoon Pictures","genre":"Drama","title":"The Assassination Of Richard Nixon","releaseDate":1084752000000,"language":"en","type":"Movie","_key":"7967"} +{"label":"Niels Mueller","version":20,"id":"12624","lastModified":"1300092057000","name":"Niels Mueller","type":"Person","_key":"7968"} +{"label":"Roland Manarin","version":16,"id":"13141","lastModified":"1300091794000","name":"Roland Manarin","type":"Person","_key":"7969"} +{"label":"Stuart B. Hagen","version":18,"id":"12528","lastModified":"1300091694000","name":"Stuart B. Hagen","type":"Person","_key":"7970"} +{"label":"Nick Searcy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4cd33fbe7b9aa113ac000004\/nick-searcy-profile.jpg","version":36,"id":"12538","lastModified":"1300090889000","name":"Nick Searcy","type":"Person","_key":"7971"} +{"label":"Lily Knight","version":18,"id":"12539","lastModified":"1300092227000","name":"Lily Knight","type":"Person","_key":"7972"} +{"label":"Jared Dorrance","version":16,"id":"12540","lastModified":"1300092058000","name":"Jared Dorrance","type":"Person","_key":"7973"} +{"label":"Jenna Milton","version":16,"id":"12541","lastModified":"1300092058000","name":"Jenna Milton","type":"Person","_key":"7974"} +{"label":"Mariah Massa","version":16,"id":"12542","lastModified":"1300092058000","name":"Mariah Massa","type":"Person","_key":"7975"} +{"label":"Eileen Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d9\/4cbdc2067b9aa138da0015d9\/eileen-ryan-profile.jpg","version":31,"id":"12543","lastModified":"1300090539000","name":"Eileen Ryan","type":"Person","_key":"7976"} +{"label":"Derek Greene","version":16,"id":"12544","lastModified":"1300092058000","name":"Derek Greene","type":"Person","_key":"7977"} +{"label":"Joe Marinelli","version":20,"id":"12545","lastModified":"1300092058000","name":"Joe Marinelli","type":"Person","_key":"7978"} +{"label":"Robert Kenneth Cooper","version":18,"id":"12546","lastModified":"1300092058000","name":"Robert Kenneth Cooper","type":"Person","_key":"7979"} +{"label":"Tracy Middendorf","version":18,"id":"12547","lastModified":"1300091774000","name":"Tracy Middendorf","type":"Person","_key":"7980"} +{"label":"Kenneth White","version":18,"id":"12548","lastModified":"1300273476000","name":"Kenneth White","type":"Person","_key":"7981"} +{"label":"Brett Rickaby","version":29,"id":"12549","lastModified":"1300090790000","name":"Brett Rickaby","type":"Person","_key":"7982"} +{"label":"James Morrison Reese","version":16,"id":"12550","lastModified":"1300092058000","name":"James Morrison Reese","type":"Person","_key":"7983"} +{"label":"Frank Brown Jr.","version":16,"id":"12551","lastModified":"1300092058000","name":"Frank Brown Jr.","type":"Person","_key":"7984"} +{"label":"James Carraway","version":17,"id":"12552","lastModified":"1300092542000","name":"James Carraway","type":"Person","_key":"7985"} +{"label":"Jay Jacobus","version":17,"id":"12553","lastModified":"1300092167000","name":"Jay Jacobus","type":"Person","_key":"7986"} +{"label":"Kathryn Howell","version":16,"id":"12555","lastModified":"1300092058000","name":"Kathryn Howell","type":"Person","_key":"7987"} +{"label":"Denise Balthrop Cassidy","version":16,"id":"12556","lastModified":"1300091208000","name":"Denise Balthrop Cassidy","type":"Person","_key":"7988"} +{"label":"Gary L. Mack","version":17,"id":"12557","lastModified":"1300092167000","name":"Gary L. Mack","type":"Person","_key":"7989"} +{"label":"Melissa Saltzman","version":16,"id":"12558","lastModified":"1300092058000","name":"Melissa Saltzman","type":"Person","_key":"7990"} +{"label":"Brad William Henke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ba\/4cef3d625e73d66b070001ba\/brad-william-henke-profile.jpg","version":30,"id":"15376","lastModified":"1299492799000","name":"Brad William Henke","type":"Person","_key":"7991"} +{"label":"J.C. MacKenzie","version":28,"id":"63296","lastModified":"1300091636000","name":"J.C. MacKenzie","type":"Person","_key":"7992"} +{"label":"In the Mood for Love","description":"A melancholy story about the love between a woman and a man who live in the same building and one day find out that their husband and wife had an affair with each other. More and more the two meet during their daily lives as they determine that they both don\u2019t want to be lonely in their marriage. They also find out that they share a passion for Kung-Fu stories.","id":"843","runtime":98,"imdbId":"tt0118694","homepage":"http:\/\/www.wkw-inthemoodforlove.com\/","version":161,"lastModified":"1300248026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b19\/4cf5c90f7b9aa15148000b19\/fa-yeung-nin-wa-mid.jpg","studio":"Paradis Films","genre":"Drama","title":"In the Mood for Love","releaseDate":969580800000,"language":"en","type":"Movie","_key":"7993"} +{"label":"Wong Kar-Wai","version":81,"id":"12453","lastModified":"1300090367000","name":"Wong Kar-Wai","type":"Person","_key":"7994"} +{"label":"Ping Lam Siu","version":18,"id":"12674","lastModified":"1300090550000","name":"Ping Lam Siu","type":"Person","_key":"7995"} +{"label":"Rebecca Pan","version":19,"id":"12462","lastModified":"1300091135000","name":"Rebecca Pan","type":"Person","_key":"7996"} +{"label":"Kelly Lai Chen","version":16,"id":"12463","lastModified":"1300091466000","name":"Kelly Lai Chen","type":"Person","_key":"7997"} +{"label":"Man-Lei Chan","version":16,"id":"12464","lastModified":"1300091467000","name":"Man-Lei Chan","type":"Person","_key":"7998"} +{"label":"Kam-wah Koo","version":17,"id":"12465","lastModified":"1300091892000","name":"Kam-wah Koo","type":"Person","_key":"7999"} +{"label":"Roy Cheung","version":22,"id":"12466","lastModified":"1300091039000","name":"Roy Cheung","type":"Person","_key":"8000"} +{"label":"Tsi-Ang Chin","version":16,"id":"12467","lastModified":"1300091162000","name":"Tsi-Ang Chin","type":"Person","_key":"8001"} +{"label":"Hsien Yu","version":16,"id":"12468","lastModified":"1300091208000","name":"Hsien Yu","type":"Person","_key":"8002"} +{"label":"Po-chun Chow","version":16,"id":"12469","lastModified":"1300091585000","name":"Po-chun Chow","type":"Person","_key":"8003"} +{"label":"Paulyn Sun","version":21,"id":"12470","lastModified":"1300090847000","name":"Paulyn Sun","type":"Person","_key":"8004"} +{"label":"Tung Cho 'Joe' Cheung","version":27,"id":"83563","lastModified":"1300092670000","name":"Tung Cho 'Joe' Cheung","type":"Person","_key":"8005"} +{"label":"2046","description":"2046 is the sequel to Wong Kar-Wais\u2019 successful box-office hit In The Mood For Love. A film about affairs, ending relationships, and a shared love for Kung-Fu novels as the main character, Chow, writes his own novel and reflects back on his favorite love Su.","id":"844","runtime":129,"imdbId":"tt0212712","homepage":"http:\/\/www.wkw2046.com\/","version":157,"lastModified":"1300249013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b48\/4bc90d5c017a3c57fe004b48\/2046-mid.jpg","studio":"Orly Films","genre":"Drama","title":"2046","releaseDate":1085011200000,"language":"en","type":"Movie","_key":"8006"} +{"label":"Takuya Kimura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/456\/4d0a3f845e73d613d1000456\/takuya-kimura-profile.jpg","version":26,"id":"12670","lastModified":"1300090454000","name":"Takuya Kimura","type":"Person","_key":"8007"} +{"label":"Faye Wong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4c9557c77b9aa10d5a00017f\/faye-wong-fei-profile.jpg","version":33,"birthday":"-12618000000","id":"12671","birthplace":"Beijing, China","lastModified":"1300090434000","name":"Faye Wong","type":"Person","_key":"8008"} +{"label":"Carina Lau Ka Ling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6cf\/4d09b28e7b9aa144150006cf\/carina-lau-ka-ling-profile.jpg","version":43,"id":"12672","lastModified":"1300090408000","name":"Carina Lau Ka Ling","type":"Person","_key":"8009"} +{"label":"Wang Sum","version":17,"id":"12673","lastModified":"1300090590000","name":"Wang Sum","type":"Person","_key":"8010"} +{"label":"Thongchai McIntyre","version":14,"id":"12675","lastModified":"1300090994000","name":"Thongchai McIntyre","type":"Person","_key":"8011"} +{"label":"Jie Dong","version":18,"id":"12676","lastModified":"1300090570000","name":"Jie Dong","type":"Person","_key":"8012"} +{"label":"Strangers on a Train","description":"Strangers on a Train is a typical Hitchcock thriller with all the elements of a suspense film masterpiece: The innocent man is being chased for a crime he didn\u2019t do.","id":"845","runtime":101,"imdbId":"tt0044079","version":144,"lastModified":"1300184569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20a\/4d5b2e907b9aa1124300020a\/strangers-on-a-train-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Strangers on a Train","releaseDate":-584064000000,"language":"en","type":"Movie","_key":"8013"} +{"label":"Farley Granger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10f\/4bd5a306017a3c2e7800010f\/farley-granger-profile.jpg","version":40,"id":"12497","lastModified":"1300090255000","name":"Farley Granger","type":"Person","_key":"8014"} +{"label":"Ruth Roman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4bd5a2bb017a3c2e700000ec\/ruth-roman-profile.jpg","version":35,"id":"12498","lastModified":"1300090351000","name":"Ruth Roman","type":"Person","_key":"8015"} +{"label":"Robert Walker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b9e\/4cc183857b9aa138d7001b9e\/robert-walker-profile.jpg","version":23,"id":"12499","lastModified":"1300090837000","name":"Robert Walker","type":"Person","_key":"8016"} +{"label":"Marion Lorne","version":15,"id":"12501","lastModified":"1300092067000","name":"Marion Lorne","type":"Person","_key":"8017"} +{"label":"Jonathan Hale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9aa\/4be4559d017a3c35b90009aa\/jonathan-hale-profile.jpg","version":49,"birthday":"-2486163600000","id":"12502","birthplace":"Ontario, Canada","lastModified":"1300090375000","name":"Jonathan Hale","type":"Person","_key":"8018"} +{"label":"John Brown","version":15,"id":"12503","lastModified":"1300092067000","name":"John Brown","type":"Person","_key":"8019"} +{"label":"Robert Gist","version":19,"id":"12504","lastModified":"1300091220000","name":"Robert Gist","type":"Person","_key":"8020"} +{"label":"Kasey Rogers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cd\/4c9a5d007b9aa127580003cd\/kasey-rogers-profile.jpg","version":18,"birthday":"-1390006800000","id":"12505","birthplace":"Morehouse, Missouri, USA","lastModified":"1300092426000","name":"Kasey Rogers","type":"Person","_key":"8021"} +{"label":"The X-Files: Fight the Future","description":"Dr. Kurtzweil, a man full of secrets, gives FBI agent Mulder clues about a conspirator group that has a secret pact with aliens to invade the world. Mulder together with his partner agent Scully go on the case. This is the film adapted from the popular cult TV series.","id":"846","runtime":121,"imdbId":"tt0120902","trailer":"http:\/\/www.youtube.com\/watch?v=40","version":133,"lastModified":"1300184492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8f\/4bc90d66017a3c57fe004b8f\/the-x-files-fight-the-future-mid.jpg","studio":"20th Century Fox","genre":"Mystery","title":"The X-Files: Fight the Future","releaseDate":898214400000,"language":"en","type":"Movie","_key":"8022"} +{"label":"Rob Bowman","version":33,"id":"12523","lastModified":"1300212633000","name":"Rob Bowman","type":"Person","_key":"8023"} +{"label":"David Duchovny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4c51cdfe5e73d632bd0000db\/david-duchovny-profile.jpg","version":94,"id":"12640","lastModified":"1300090376000","name":"David Duchovny","type":"Person","_key":"8024"} +{"label":"Mitch Pileggi","version":42,"id":"12644","lastModified":"1300090644000","name":"Mitch Pileggi","type":"Person","_key":"8025"} +{"label":"William B. Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9a\/4d63fe267b9aa11243008e9a\/william-b-davis-profile.jpg","version":40,"id":"12643","lastModified":"1300090785000","name":"William B. Davis","type":"Person","_key":"8026"} +{"label":"John Neville","version":26,"id":"12642","lastModified":"1300091701000","name":"John Neville","type":"Person","_key":"8027"} +{"label":"Jeffrey DeMunn","version":54,"id":"12645","lastModified":"1300090543000","name":"Jeffrey DeMunn","type":"Person","_key":"8028"} +{"label":"Terry O'Quinn","version":46,"id":"12646","lastModified":"1300187025000","name":"Terry O'Quinn","type":"Person","_key":"8029"} +{"label":"Willow","description":"The dwarfish Nelwyn Willow Ufgood begins on an adventurous journey to protect the foundling Elora Danan who after a prophesy from the evil tyrant king Bavmorda must prepare for her end. Fantasy film from 1988 written by George Lucas.","id":"847","runtime":126,"imdbId":"tt0096446","trailer":"http:\/\/www.youtube.com\/watch?v=D-P03NGSP6Y","version":107,"lastModified":"1300184417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbf\/4bc90d6b017a3c57fe004bbf\/willow-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Willow","releaseDate":580089600000,"language":"en","tagline":"Adventure doesn't come any bigger than this.","type":"Movie","_key":"8030"} +{"label":"Joanne Whalley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ac\/4c393d927b9aa10ede0001ac\/joanne-whalley-profile.jpg","version":42,"id":"12656","lastModified":"1300090477000","name":"Joanne Whalley","type":"Person","_key":"8031"} +{"label":"Patricia Hayes","version":24,"id":"12658","lastModified":"1300091154000","name":"Patricia Hayes","type":"Person","_key":"8032"} +{"label":"Billy Barty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/298\/4be99234017a3c35b4001298\/billy-barty-profile.jpg","version":36,"id":"12659","lastModified":"1300091695000","name":"Billy Barty","type":"Person","_key":"8033"} +{"label":"Pat Roach","version":19,"id":"10942","lastModified":"1300092149000","name":"Pat Roach","type":"Person","_key":"8034"} +{"label":"Gavan O'Herlihy","version":28,"id":"12660","lastModified":"1300091017000","name":"Gavan O'Herlihy","type":"Person","_key":"8035"} +{"label":"David Steinberg","version":18,"id":"12661","lastModified":"1300092149000","name":"David Steinberg","type":"Person","_key":"8036"} +{"label":"Phil Fondacaro","version":31,"id":"12662","lastModified":"1300090960000","name":"Phil Fondacaro","type":"Person","_key":"8037"} +{"label":"Dragonslayer","description":"The sorcerer and his apprentice Galen are on a mission to kill an evil dragon in order to save the King\u2019s daughter from being sacrificed in accordance to a pact that the King himself made with the dragon to protect his kingdom. A fantasy film from Disney Studios that exhausted all possible visual effects of the time.","id":"848","runtime":108,"imdbId":"tt0082288","trailer":"http:\/\/www.youtube.com\/watch?v=snk5Zaxp5lE","version":157,"lastModified":"1299912504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf0\/4bc90d72017a3c57fe004bf0\/dragonslayer-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Dragonslayer","releaseDate":362361600000,"language":"en","type":"Movie","_key":"8038"} +{"label":"Matthew Robbins","version":28,"id":"12677","lastModified":"1300091153000","name":"Matthew Robbins","type":"Person","_key":"8039"} +{"label":"Peter MacNicol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d8\/4cc219395e73d677830015d8\/peter-macnicol-profile.jpg","version":50,"id":"12688","lastModified":"1299927515000","name":"Peter MacNicol","type":"Person","_key":"8040"} +{"label":"Ralph Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4c766eec7b9aa16a0b000160\/ralph-richardson-profile.jpg","version":58,"id":"12689","lastModified":"1300090549000","name":"Ralph Richardson","type":"Person","_key":"8041"} +{"label":"John Hallam","version":18,"id":"12690","lastModified":"1300092227000","name":"John Hallam","type":"Person","_key":"8042"} +{"label":"Peter Eyre","version":18,"id":"12691","lastModified":"1300092149000","name":"Peter Eyre","type":"Person","_key":"8043"} +{"label":"Albert Salmi","version":28,"id":"12692","lastModified":"1300091939000","name":"Albert Salmi","type":"Person","_key":"8044"} +{"label":"Sydney Bromley","version":19,"id":"12693","lastModified":"1300091490000","name":"Sydney Bromley","type":"Person","_key":"8045"} +{"label":"Chloe Salaman","version":14,"id":"12694","lastModified":"1300092636000","name":"Chloe Salaman","type":"Person","_key":"8046"} +{"label":"Krull","description":"An army embarks on an immense and indescribable journey into the Black Fortress of the galaxies to subdue the planets where Krull has arranged the marriage of a Prince and Princes who are to join his alliance. English heroic fantasy film from 1983 with a fantastic score by James Horner.","id":"849","runtime":117,"imdbId":"tt0085811","trailer":"http:\/\/www.youtube.com\/watch?v=cBKcmg0c2bU","version":155,"lastModified":"1299912365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c08\/4bc90d75017a3c57fe004c08\/krull-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Krull","releaseDate":428284800000,"language":"en","type":"Movie","_key":"8047"} +{"label":"Peter Yates","version":38,"id":"12804","lastModified":"1300205289000","name":"Peter Yates","type":"Person","_key":"8048"} +{"label":"Ken Marshall","version":17,"id":"12811","lastModified":"1300090619000","name":"Ken Marshall","type":"Person","_key":"8049"} +{"label":"Lysette Anthony","version":27,"id":"12812","lastModified":"1300090675000","name":"Lysette Anthony","type":"Person","_key":"8050"} +{"label":"Bernard Bresslaw","version":35,"id":"12815","lastModified":"1300091446000","name":"Bernard Bresslaw","type":"Person","_key":"8051"} +{"label":"John Welsh","version":16,"id":"12816","lastModified":"1300092232000","name":"John Welsh","type":"Person","_key":"8052"} +{"label":"Graham McGrath","version":15,"id":"12817","lastModified":"1300091904000","name":"Graham McGrath","type":"Person","_key":"8053"} +{"label":"Tony Church","version":14,"id":"12818","lastModified":"1300092636000","name":"Tony Church","type":"Person","_key":"8054"} +{"label":"Bernard Archard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d2\/4c9f8e105e73d6704a0004d2\/bernard-archard-profile.jpg","version":30,"id":"12819","lastModified":"1300091516000","name":"Bernard Archard","type":"Person","_key":"8055"} +{"label":"Belinda Mayne","version":14,"id":"12820","lastModified":"1300091346000","name":"Belinda Mayne","type":"Person","_key":"8056"} +{"label":"A Christmas Story","description":"A Christmas Story is a classic Christmas film about a young boy who wants an air rifle for Christmas yet his parents won't allow it saying \u201cyou\u2019ll shoot your eye out.\u201d The film illustrates the comic mishaps and adventures of a young boy named Ralph in the winter in a small town in America in the 1940\u2019s.","id":"850","runtime":94,"imdbId":"tt0085334","trailer":"http:\/\/www.youtube.com\/watch?v=uvMLfSQrHKE","version":190,"lastModified":"1300263457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f4\/4d174a097b9aa114880030f4\/a-christmas-story-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"A Christmas Story","releaseDate":437961600000,"language":"en","tagline":"Peace. Harmony. Comfort and Joy... Maybe Next Year.","type":"Movie","_key":"8057"} +{"label":"Bob Clark","version":49,"id":"12698","lastModified":"1300091524000","name":"Bob Clark","type":"Person","_key":"8058"} +{"label":"Peter Billingsley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/429\/4d4c21bc5e73d617c1001429\/peter-billingsley-profile.jpg","version":36,"id":"12708","lastModified":"1300090429000","name":"Peter Billingsley","type":"Person","_key":"8059"} +{"label":"Ian Petrella","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/329\/4d4c226c5e73d617ba001329\/ian-petrella-profile.jpg","version":18,"id":"12709","lastModified":"1300091487000","name":"Ian Petrella","type":"Person","_key":"8060"} +{"label":"Scott Schwartz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/331\/4d4c22cd5e73d617ba001331\/scott-schwartz-profile.jpg","version":18,"id":"12710","lastModified":"1300091487000","name":"Scott Schwartz","type":"Person","_key":"8061"} +{"label":"R.D. Robb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c8\/4d4c24ac5e73d617b30014c8\/r-d-robb-profile.jpg","version":18,"id":"12711","lastModified":"1300092102000","name":"R.D. Robb","type":"Person","_key":"8062"} +{"label":"Tedde Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d6\/4d4c251a5e73d617b30014d6\/tedde-moore-profile.jpg","version":18,"id":"12712","lastModified":"1300091488000","name":"Tedde Moore","type":"Person","_key":"8063"} +{"label":"Yano Anaya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/469\/4d4c262e5e73d617c1001469\/yano-anaya-profile.jpg","version":17,"id":"12713","lastModified":"1300091429000","name":"Yano Anaya","type":"Person","_key":"8064"} +{"label":"Zack Ward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6d\/4d3357295e73d63352001f6d\/zack-ward-profile.jpg","version":33,"id":"12714","lastModified":"1300090332000","name":"Zack Ward","type":"Person","_key":"8065"} +{"label":"Jeff Gillen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/479\/4d4c275a5e73d617c1001479\/jeff-gillen-profile.jpg","version":17,"id":"12715","lastModified":"1300091429000","name":"Jeff Gillen","type":"Person","_key":"8066"} +{"label":"Brief Encounter","description":"Brief Encounter is a classic from British director David Lean about two people who fall in love yet face the fact that they are already married and can never be together.","id":"851","runtime":86,"imdbId":"tt0037558","version":129,"lastModified":"1299912287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c35\/4bc90d7b017a3c57fe004c35\/brief-encounter-mid.jpg","studio":"Rank Organisation","genre":"Drama","title":"Brief Encounter","releaseDate":-760492800000,"language":"en","type":"Movie","_key":"8067"} +{"label":"Celia Johnson","version":20,"id":"12725","lastModified":"1300091088000","name":"Celia Johnson","type":"Person","_key":"8068"} +{"label":"Stanley Holloway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e8\/4ce17b885e73d60f700003e8\/stanley-holloway-profile.jpg","version":29,"id":"12727","lastModified":"1300091192000","name":"Stanley Holloway","type":"Person","_key":"8069"} +{"label":"Joyce Carey","version":16,"id":"12728","lastModified":"1300092235000","name":"Joyce Carey","type":"Person","_key":"8070"} +{"label":"Cyril Raymond","version":16,"id":"12729","lastModified":"1300091693000","name":"Cyril Raymond","type":"Person","_key":"8071"} +{"label":"Everley Gregg","version":17,"id":"12730","lastModified":"1300091516000","name":"Everley Gregg","type":"Person","_key":"8072"} +{"label":"Marjorie Mars","version":15,"id":"12731","lastModified":"1300092225000","name":"Marjorie Mars","type":"Person","_key":"8073"} +{"label":"Margaret Barton","version":15,"id":"12732","lastModified":"1300091671000","name":"Margaret Barton","type":"Person","_key":"8074"} +{"label":"Es geschah am hellichten Tag","description":"Es geschah am hellichten Tag is a German black and white film depicting the dramatic story of the search for a children murderer.","id":"852","runtime":95,"imdbId":"tt0051588","version":89,"lastModified":"1299910135000","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Es geschah am hellichten Tag","releaseDate":-364953600000,"language":"en","type":"Movie","_key":"8075"} +{"label":"Ladislao Vajda","version":17,"id":"12733","lastModified":"1300091730000","name":"Ladislao Vajda","type":"Person","_key":"8076"} +{"label":"Heinz R\u00fchmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ab\/4d4828e87b9aa15bf50071ab\/heinz-r-hmann-profile.jpg","version":30,"id":"12745","lastModified":"1300090547000","name":"Heinz R\u00fchmann","type":"Person","_key":"8077"} +{"label":"Sigfrit Steiner","version":17,"id":"12746","lastModified":"1300091487000","name":"Sigfrit Steiner","type":"Person","_key":"8078"} +{"label":"Siegfried Lowitz","version":22,"id":"12747","lastModified":"1300091458000","name":"Siegfried Lowitz","type":"Person","_key":"8079"} +{"label":"Michel Simon","version":29,"id":"12748","lastModified":"1300091487000","name":"Michel Simon","type":"Person","_key":"8080"} +{"label":"Ewald Balser","version":14,"id":"12749","lastModified":"1300091919000","name":"Ewald Balser","type":"Person","_key":"8081"} +{"label":"Mar\u00eda Rosa Salgado","version":14,"id":"12750","lastModified":"1300091919000","name":"Mar\u00eda Rosa Salgado","type":"Person","_key":"8082"} +{"label":"Anita von Ow","version":14,"id":"12751","lastModified":"1300091926000","name":"Anita von Ow","type":"Person","_key":"8083"} +{"label":"Barbara Haller","version":16,"id":"12752","lastModified":"1300091925000","name":"Barbara Haller","type":"Person","_key":"8084"} +{"label":"Emil Hegetschweiler","version":14,"id":"12753","lastModified":"1300091926000","name":"Emil Hegetschweiler","type":"Person","_key":"8085"} +{"label":"Rene Magron","version":17,"id":"36345","lastModified":"1300092636000","name":"Rene Magron","type":"Person","_key":"8086"} +{"label":"Max Werner Lenz","version":17,"id":"46761","lastModified":"1300092526000","name":"Max Werner Lenz","type":"Person","_key":"8087"} +{"label":"Hans Gaugler","version":17,"id":"46762","lastModified":"1300092526000","name":"Hans Gaugler","type":"Person","_key":"8088"} +{"label":"Ettore Cella","version":17,"id":"46763","lastModified":"1300092526000","name":"Ettore Cella","type":"Person","_key":"8089"} +{"label":"Margrit Winter","version":14,"id":"46764","lastModified":"1300092542000","name":"Margrit Winter","type":"Person","_key":"8090"} +{"label":"Traute Carlsen","version":16,"id":"46765","lastModified":"1300092542000","name":"Traute Carlsen","type":"Person","_key":"8091"} +{"label":"Anneliese Betschart","version":17,"id":"46766","lastModified":"1300092526000","name":"Anneliese Betschart","type":"Person","_key":"8092"} +{"label":"Max Haufler","version":19,"id":"30722","lastModified":"1300092482000","name":"Max Haufler","type":"Person","_key":"8093"} +{"label":"Enemy at the Gates","description":"Enemy at the Gates is a war film from Jean-Jacques Annaud from 2001 that takes place during the battle of Stalingard in World War II between the Russians and the Germans. ","id":"853","runtime":130,"imdbId":"tt0215750","trailer":"http:\/\/www.youtube.com\/watch?v=ZxT4c9K4GgI","version":188,"lastModified":"1300262918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3e\/4bc90d7c017a3c57fe004c3e\/enemy-at-the-gates-mid.jpg","studio":"MP Film Management DOS Productions","genre":"Action","title":"Enemy at the Gates","releaseDate":984700800000,"language":"en","tagline":"Some Men Are Born To Be Heroes.","type":"Movie","_key":"8094"} +{"label":"Joseph Fiennes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e0\/4d2b67f95e73d626c40047e0\/joseph-fiennes-profile.jpg","version":73,"id":"12763","lastModified":"1300090330000","name":"Joseph Fiennes","type":"Person","_key":"8095"} +{"label":"Gabriel Thomson","version":18,"id":"12764","lastModified":"1300090620000","name":"Gabriel Thomson","type":"Person","_key":"8096"} +{"label":"Alexander Schwan","version":17,"id":"12765","lastModified":"1300090568000","name":"Alexander Schwan","type":"Person","_key":"8097"} +{"label":"Lenn Kudrjawizki","version":20,"id":"12766","lastModified":"1300091455000","name":"Lenn Kudrjawizki","type":"Person","_key":"8098"} +{"label":"Gennadi Vengerov","version":21,"id":"12767","lastModified":"1300091682000","name":"Gennadi Vengerov","type":"Person","_key":"8099"} +{"label":"Dan van Husen","version":31,"id":"12768","lastModified":"1300091153000","name":"Dan van Husen","type":"Person","_key":"8100"} +{"label":"The Mask","description":"A meek, milquetoast bank teller discovers a magical ancient mask that unleashes his deepest desires -- and gives him the superhuman ability to act on them. Accompanied by his canine sidekick, the mischievous action hero goes gaga for a singer. Meanwhile, he battles gangsters who seek the mask's powers.","id":"854","runtime":97,"imdbId":"tt0110475","trailer":"http:\/\/www.youtube.com\/watch?v=H0xBiclGFH4","version":207,"lastModified":"1300248511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c58\/4bc90d81017a3c57fe004c58\/the-mask-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"The Mask","releaseDate":775440000000,"language":"en","tagline":"From zero to hero.","type":"Movie","_key":"8101"} +{"label":"Bryan Dresden","version":25,"id":"12771","lastModified":"1300091208000","name":"Bryan Dresden","type":"Person","_key":"8102"} +{"label":"Chuck Russell","version":67,"id":"26713","lastModified":"1300091003000","name":"Chuck Russell","type":"Person","_key":"8103"} +{"label":"Denis L. Stewart","version":38,"id":"12770","lastModified":"1300091037000","name":"Denis L. Stewart","type":"Person","_key":"8104"} +{"label":"Nancy Fish","version":36,"id":"42168","lastModified":"1300090913000","name":"Nancy Fish","type":"Person","_key":"8105"} +{"label":"Tim Bagley","version":31,"id":"53400","lastModified":"1300091031000","name":"Tim Bagley","type":"Person","_key":"8106"} +{"label":"Johnny Williams","version":32,"id":"53401","lastModified":"1300091418000","name":"Johnny Williams","type":"Person","_key":"8107"} +{"label":"Peter Riegert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/313\/4bd1dd91017a3c63f3000313\/peter-riegert-profile.jpg","version":43,"id":"20899","lastModified":"1300090565000","name":"Peter Riegert","type":"Person","_key":"8108"} +{"label":"Richard Jeni","version":29,"id":"53402","lastModified":"1300091689000","name":"Richard Jeni","type":"Person","_key":"8109"} +{"label":"Orestes Matacena","version":29,"id":"53403","lastModified":"1300091919000","name":"Orestes Matacena","type":"Person","_key":"8110"} +{"label":"Anne Fletcher","version":70,"id":"29214","lastModified":"1300090324000","name":"Anne Fletcher","type":"Person","_key":"8111"} +{"label":"Black Hawk Down","description":"When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.","id":"855","runtime":144,"imdbId":"tt0265086","trailer":"http:\/\/www.youtube.com\/watch?v=X8w9wmSjD4Y","version":265,"lastModified":"1300262493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c96\/4bc90d8b017a3c57fe004c96\/black-hawk-down-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Black Hawk Down","releaseDate":1008633600000,"language":"en","tagline":"Leave No Man Behind.","type":"Movie","_key":"8112"} +{"label":"Sam Shepard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4c235e857b9aa13f6100002d\/sam-shepard-profile.jpg","version":107,"id":"9880","lastModified":"1300214121000","name":"Sam Shepard","type":"Person","_key":"8113"} +{"label":"Charlie Hofheimer","version":23,"id":"12790","lastModified":"1300214121000","name":"Charlie Hofheimer","type":"Person","_key":"8114"} +{"label":"Hugh Dancy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de9\/4d264a2b7b9aa134e0000de9\/hugh-dancy-profile.jpg","version":63,"id":"12791","lastModified":"1300214121000","name":"Hugh Dancy","type":"Person","_key":"8115"} +{"label":"Brian Van Holt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b4\/4ce18d505e73d60f6c0003b4\/brian-van-holt-profile.jpg","version":39,"id":"12792","lastModified":"1300214121000","name":"Brian Van Holt","type":"Person","_key":"8116"} +{"label":"Matthew Marsden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33e\/4cb1def97b9aa1264000033e\/matthew-marsden-profile.jpg","version":43,"id":"12793","lastModified":"1300214121000","name":"Matthew Marsden","type":"Person","_key":"8117"} +{"label":"Nikolaj Coster-Waldau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/374\/4bfa71be017a3c7037000374\/nikolaj-coster-waldau-profile.jpg","version":48,"id":"12795","lastModified":"1300214121000","name":"Nikolaj Coster-Waldau","type":"Person","_key":"8118"} +{"label":"Johnny Strong","version":25,"id":"12796","lastModified":"1300214121000","name":"Johnny Strong","type":"Person","_key":"8119"} +{"label":"Glenn Morshower","version":50,"id":"12797","lastModified":"1300214122000","name":"Glenn Morshower","type":"Person","_key":"8120"} +{"label":"Enrique Murciano","version":29,"id":"12798","lastModified":"1300214122000","name":"Enrique Murciano","type":"Person","_key":"8121"} +{"label":"Carmine Giovinazzo","version":25,"id":"12800","lastModified":"1300214122000","name":"Carmine Giovinazzo","type":"Person","_key":"8122"} +{"label":"Razaaq Adoti","version":29,"id":"12801","lastModified":"1300214122000","name":"Razaaq Adoti","type":"Person","_key":"8123"} +{"label":"Treva Etienne","version":24,"id":"12802","lastModified":"1300214122000","name":"Treva Etienne","type":"Person","_key":"8124"} +{"label":"Jason Hildebrandt","version":23,"id":"12803","lastModified":"1300214122000","name":"Jason Hildebrandt","type":"Person","_key":"8125"} +{"label":"Who Framed Roger Rabbit","description":"In the 1940\u2019s Hollywood there are not only people but cartoon characters starring in films. Roger Rabbit, one of the biggest stars, is thought to have killed someone and the private detective Eddie Valiant must help the wanted Toonstar. A groundbreaking comedy where actors and cartoons are woven perfectly together.","id":"856","runtime":103,"imdbId":"tt0096438","trailer":"http:\/\/www.youtube.com\/watch?v=OzuXjep6pbs","version":138,"lastModified":"1300262291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dce\/4be731d3017a3c35bd000dce\/who-framed-roger-rabbit-mid.jpg","studio":"Amblin Entertainment","genre":"Animation","title":"Who Framed Roger Rabbit","releaseDate":582854400000,"language":"en","tagline":"It's the story of a man, a woman, and a rabbit in a triangle of trouble.","type":"Movie","_key":"8126"} +{"label":"Stubby Kaye","version":19,"id":"12827","lastModified":"1300091166000","name":"Stubby Kaye","type":"Person","_key":"8127"} +{"label":"Alan Tilvern","version":17,"id":"12828","lastModified":"1300091129000","name":"Alan Tilvern","type":"Person","_key":"8128"} +{"label":"Richard LeParmentier","version":17,"id":"12829","lastModified":"1300091128000","name":"Richard LeParmentier","type":"Person","_key":"8129"} +{"label":"Lou Hirsch","version":18,"id":"12830","lastModified":"1300091128000","name":"Lou Hirsch","type":"Person","_key":"8130"} +{"label":"Betsy Brantley","version":23,"id":"12831","lastModified":"1300090625000","name":"Betsy Brantley","type":"Person","_key":"8131"} +{"label":"Saving Private Ryan","description":"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.","id":"857","runtime":170,"imdbId":"tt0120815","trailer":"http:\/\/www.youtube.com\/watch?v=5ci-ApiC1nI","version":346,"lastModified":"1300262159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2b\/4cd0ffcc5e73d65025000e2b\/saving-private-ryan-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Saving Private Ryan","releaseDate":901238400000,"language":"en","tagline":"In the Last Great Invasion of the Last Great War, The Greatest Danger for Eight Men was Saving... One.","type":"Movie","_key":"8132"} +{"label":"Joerg Stadler","version":24,"id":"12838","lastModified":"1300090552000","name":"Joerg Stadler","type":"Person","_key":"8133"} +{"label":"Max Martini","version":23,"id":"94864","lastModified":"1300091045000","name":"Max Martini","type":"Person","_key":"8134"} +{"label":"Edward Burns","version":99,"id":"12833","lastModified":"1300090280000","name":"Edward Burns","type":"Person","_key":"8135"} +{"label":"Vin Diesel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b8\/4bd40e34017a3c7fae0000b8\/vin-diesel-profile.jpg","version":136,"id":"12835","lastModified":"1300096759000","name":"Vin Diesel","type":"Person","_key":"8136"} +{"label":"Ted Danson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e34\/4d27d13c5e73d626bc001e34\/ted-danson-profile.jpg","version":57,"id":"12836","lastModified":"1300090368000","name":"Ted Danson","type":"Person","_key":"8137"} +{"label":"Paul Giamatti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47c\/4bf7e7bc017a3c773200047c\/paul-giamatti-profile.jpg","version":116,"id":"13242","lastModified":"1300090292000","name":"Paul Giamatti","type":"Person","_key":"8138"} +{"label":"Sleepless in Seattle","description":"A young boy who tries to set his dad up on a date after the death of his mother. He calls into a radio station to talk about his dad\u2019s loneliness which soon leads the dad into meeting a Journalist Annie who flies to Seattle to write a story about the boy and his dad. Yet Annie ends up with more than just a story in this popular romantic comedy.","id":"858","runtime":105,"imdbId":"tt0108160","trailer":"http:\/\/www.youtube.com\/watch?v=1341","version":158,"lastModified":"1300261966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c0\/4c879fee5e73d66b5e0002c0\/sleepless-in-seattle-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"Sleepless in Seattle","releaseDate":740966400000,"language":"en","type":"Movie","_key":"8139"} +{"label":"Nora Ephron","version":92,"id":"9248","lastModified":"1300213857000","name":"Nora Ephron","type":"Person","_key":"8140"} +{"label":"Ross Malinger","version":18,"id":"12928","lastModified":"1300095755000","name":"Ross Malinger","type":"Person","_key":"8141"} +{"label":"Rosie O'Donnell","version":44,"id":"12929","lastModified":"1300090815000","name":"Rosie O'Donnell","type":"Person","_key":"8142"} +{"label":"Gaby Hoffmann","version":32,"id":"12930","lastModified":"1300091685000","name":"Gaby Hoffmann","type":"Person","_key":"8143"} +{"label":"Rita Wilson","version":47,"id":"12931","lastModified":"1300090472000","name":"Rita Wilson","type":"Person","_key":"8144"} +{"label":"Barbara Garrick","version":23,"id":"12932","lastModified":"1300091606000","name":"Barbara Garrick","type":"Person","_key":"8145"} +{"label":"Dana Ivey","version":49,"id":"13314","lastModified":"1300091462000","name":"Dana Ivey","type":"Person","_key":"8146"} +{"label":"Dangerous Liaisons","description":"Dangerous Liaisons is the film based on the novel of the same name by Choderlos de Laclos set in 18th century France. Marquise de Merteuil\u2019s asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don\u2019t go as planned in this love triangle drama.","id":"859","runtime":119,"imdbId":"tt0094947","trailer":"http:\/\/www.youtube.com\/watch?v=FbB2oBlP2uI","version":144,"lastModified":"1300261775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d23\/4bc90da3017a3c57fe004d23\/dangerous-liaisons-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Dangerous Liaisons","releaseDate":598233600000,"language":"en","type":"Movie","_key":"8147"} +{"label":"Mildred Natwick","version":32,"id":"12969","lastModified":"1300193006000","name":"Mildred Natwick","type":"Person","_key":"8148"} +{"label":"Peter Capaldi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/208\/4bd1df81017a3c63ea000208\/peter-capaldi-profile.jpg","version":26,"id":"12982","lastModified":"1299494467000","name":"Peter Capaldi","type":"Person","_key":"8149"} +{"label":"Joe Sheridan","version":23,"id":"12983","lastModified":"1300090846000","name":"Joe Sheridan","type":"Person","_key":"8150"} +{"label":"Valerie Gogan","version":18,"id":"12984","lastModified":"1300092385000","name":"Valerie Gogan","type":"Person","_key":"8151"} +{"label":"Laura Benson","version":17,"id":"12985","lastModified":"1300091245000","name":"Laura Benson","type":"Person","_key":"8152"} +{"label":"Joanna Pavlis","version":15,"id":"12986","lastModified":"1300091391000","name":"Joanna Pavlis","type":"Person","_key":"8153"} +{"label":"WarGames","description":"David is a high school student with a talent for computers and gaming. His harmless intentions of hacking into the computer system to play a new unreleased video game result in a threat of a real nuclear war, after he un-intentionally connnects to a military supercomputer. An American thriller about the fear of a nuclear war from the early 1980\u2019s.","id":"860","runtime":114,"imdbId":"tt0086567","trailer":"http:\/\/www.youtube.com\/watch?v=tAcEzhQ7oqA","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=WARGAMES","version":152,"lastModified":"1300182841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/796\/4d7264f87b9aa16f98000796\/wargames-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"WarGames","releaseDate":423446400000,"language":"en","tagline":"Shall we play a game?","type":"Movie","_key":"8154"} +{"label":"John Badham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/524\/4d4362965e73d66f59000524\/john-badham-profile.jpg","version":67,"id":"12840","lastModified":"1300127856000","name":"John Badham","type":"Person","_key":"8155"} +{"label":"Ally Sheedy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4c3f2d925e73d60882000006\/ally-sheedy-profile.jpg","version":55,"id":"12851","lastModified":"1300090431000","name":"Ally Sheedy","type":"Person","_key":"8156"} +{"label":"Barry Corbin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4bdf63e2017a3c35bd00030c\/barry-corbin-profile.jpg","version":64,"birthday":"-921808800000","id":"12852","birthplace":"Lamesa, Texas. USA","lastModified":"1300090378000","name":"Barry Corbin","type":"Person","_key":"8157"} +{"label":"Juanin Clay","version":19,"id":"12853","lastModified":"1300092653000","name":"Juanin Clay","type":"Person","_key":"8158"} +{"label":"Kent Williams","version":17,"id":"12854","lastModified":"1300092636000","name":"Kent Williams","type":"Person","_key":"8159"} +{"label":"Dennis Lipscomb","version":16,"id":"12855","lastModified":"1300092412000","name":"Dennis Lipscomb","type":"Person","_key":"8160"} +{"label":"Joe Dorsey","version":18,"id":"12856","lastModified":"1300092412000","name":"Joe Dorsey","type":"Person","_key":"8161"} +{"label":"Irving Metzman","version":19,"id":"12857","lastModified":"1300091221000","name":"Irving Metzman","type":"Person","_key":"8162"} +{"label":"Total Recall","description":"Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.","id":"861","runtime":113,"imdbId":"tt0100802","trailer":"http:\/\/www.youtube.com\/watch?v=187","version":181,"lastModified":"1300246831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d76\/4bc90daf017a3c57fe004d76\/total-recall-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Total Recall","releaseDate":644198400000,"language":"en","tagline":"They stole his mind, now he wants it back. ","type":"Movie","_key":"8163"} +{"label":"Rachel Ticotin","version":48,"id":"10768","lastModified":"1300090529000","name":"Rachel Ticotin","type":"Person","_key":"8164"} +{"label":"Mel Johnson Jr.","version":24,"id":"12887","lastModified":"1300091142000","name":"Mel Johnson Jr.","type":"Person","_key":"8165"} +{"label":"Roy Brocksmith","version":31,"id":"12888","lastModified":"1300091818000","name":"Roy Brocksmith","type":"Person","_key":"8166"} +{"label":"Ray Baker","version":41,"id":"12889","lastModified":"1300091249000","name":"Ray Baker","type":"Person","_key":"8167"} +{"label":"Toy Story","description":"Woody the cowboy is young Andy\u2019s favorite toy. Yet this changes when Andy get the new super toy Buzz Lightyear for his birthday. Now that Woody is no longer number one he plans his revenge on Buzz. Toy Story is a milestone in film history for being the first feature film to use entirely computer animation.","id":"862","runtime":81,"imdbId":"tt0114709","trailer":"http:\/\/www.youtube.com\/watch?v=KYz2wyBy3kc","version":231,"lastModified":"1300261194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d90\/4bc90db3017a3c57fe004d90\/toy-story-mid.jpg","studio":"Pixar Animation Studios","genre":"Adventure","title":"Toy Story","releaseDate":816998400000,"language":"en","tagline":"The adventure takes off!","type":"Movie","_key":"8168"} +{"label":"John Lasseter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d81\/4d1b8ca15e73d665a6000d81\/john-lasseter-profile.jpg","biography":"John Alan Lasseter is an American animator, director and the chief creative officer at Pixar and Walt Disney Animation Studios. He is also currently the Principal Creative Advisor for Walt Disney Imagineering.","version":185,"birthday":"789865200000","id":"7879","birthplace":"Hollywood, California, US","lastModified":"1299491628000","name":"John Lasseter","type":"Person","_key":"8169"} +{"label":"Tim Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/281\/4bd14913017a3c63ed000281\/tim-allen-profile.jpg","version":110,"id":"12898","lastModified":"1300090266000","name":"Tim Allen","type":"Person","_key":"8170"} +{"label":"John Morris","version":87,"id":"719","lastModified":"1299491745000","name":"John Morris","type":"Person","_key":"8171"} +{"label":"Jim Varney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4d24d6a77b9aa134d3000092\/jim-varney-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>James Albert \"Jim\" Varney, Jr.<\/b> (June 15, 1949 \u2013 February 10, 2000) was an <a href=\"http:\/\/en.wikipedia.org\/wiki\/United_States\" title=\"United States\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial in","version":53,"birthday":"-648439200000","id":"12899","lastModified":"1300090444000","name":"Jim Varney","type":"Person","_key":"8172"} +{"label":"Wallace Shawn","version":97,"id":"12900","lastModified":"1300155332000","name":"Wallace Shawn","type":"Person","_key":"8173"} +{"label":"Erik von Detten","version":28,"id":"12901","lastModified":"1300091339000","name":"Erik von Detten","type":"Person","_key":"8174"} +{"label":"Sarah Freeman","version":22,"id":"12903","lastModified":"1300091085000","name":"Sarah Freeman","type":"Person","_key":"8175"} +{"label":"Toy Story 2","description":"During a garage sale Andy\u2019s mother sells some of Andy\u2019s old things including his favorite toy Woody to a collector. Buzz Lightyear and the other toys begin a reckless mission to save their friend. The sequel to the revolutionary computer animated feature film Toy Story.","id":"863","runtime":92,"imdbId":"tt0120363","trailer":"http:\/\/www.youtube.com\/watch?v=Lu0sotERXhI","homepage":"http:\/\/disney.go.com\/disneyvideos\/animatedfilms\/toystory\/getflash.html","version":272,"lastModified":"1300260981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc4\/4cbbc7a35e73d67786000cc4\/toy-story-2-mid.jpg","studio":"Pixar Animation Studios","genre":"Adventure","title":"Toy Story 2","releaseDate":942451200000,"language":"en","tagline":"The toys are back!","type":"Movie","_key":"8176"} +{"label":"Joan Cusack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41b\/4c2119ae5e73d607ba00041b\/joan-cusack-profile.jpg","version":144,"id":"3234","lastModified":"1300042069000","name":"Joan Cusack","type":"Person","_key":"8177"} +{"label":"Cool Runnings","description":"Cool Runnings is an American film from director Jon Turteltaub from 1993 about the first Jamaican Olympic bobsled team.","id":"864","runtime":98,"imdbId":"tt0106611","trailer":"http:\/\/www.youtube.com\/watch?v=wLlmymHRNZg","version":616,"lastModified":"1300257025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4c6435737b9aa172de0007e5\/cool-runnings-mid.jpg","studio":"Buena Vista","genre":"Comedy","title":"Cool Runnings","releaseDate":749433600000,"language":"en","tagline":"One dream. Four Jamaicans. Twenty below zero.","type":"Movie","_key":"8178"} +{"label":"Jon Turteltaub","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4d3362e15e73d63352002061\/jon-turteltaub-profile.jpg","version":88,"id":"12962","lastModified":"1300090305000","name":"Jon Turteltaub","type":"Person","_key":"8179"} +{"label":"Leon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87c\/4d4d60987b9aa13ab800887c\/leon-profile.jpg","version":26,"id":"12974","lastModified":"1300090470000","name":"Leon","type":"Person","_key":"8180"} +{"label":"Doug E. Doug","version":19,"id":"12975","lastModified":"1300090700000","name":"Doug E. Doug","type":"Person","_key":"8181"} +{"label":"Rawle D. Lewis","version":16,"id":"12976","lastModified":"1300090756000","name":"Rawle D. Lewis","type":"Person","_key":"8182"} +{"label":"Malik Yoba","version":23,"id":"12977","lastModified":"1300090756000","name":"Malik Yoba","type":"Person","_key":"8183"} +{"label":"Peter Outerbridge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/769\/4d51886a7b9aa13aba010769\/peter-outerbridge-profile.jpg","biography":"\u041f\u0438\u0442\u0435\u0440 \u0410\u0443\u0442\u0435\u0440\u0431\u0440\u0438\u0434\u0436 \u0440\u043e\u0434\u0438\u043b\u0441\u044f 30 \u0438\u044e\u043d\u044f 1966 \u0433\u043e\u0434\u0430 \u0432 \u0422\u043e\u0440\u043e\u043d\u0442\u043e. \u041c\u043b\u0430\u0434\u0448\u0438\u0439 \u0438\u0437 \u043f\u044f\u0442\u0438 \u0434\u0435\u0442\u0435\u0439, \u0443 \u041f\u0438\u0442\u0435\u0440\u0430 \u0434\u0432\u0430 \u0441\u0442\u0430\u0440\u0448\u0438\u0445 \u0431\u0440\u0430\u0442\u0430 \u0438 \u0434\u0432\u0435 \u0441\u0435\u0441\u0442\u0440\u044b. \u0420\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u0435\u0433\u043e \u043e\u0442\u0446\u0430 \u0431\u044b\u043b\u0438 \u043c\u0438\u0441\u0441\u0438\u043e\u043d\u0435\u0440\u0430\u043c\u0438 \u0438 \u0432 \u0434\u0432\u0430\u0434\u0446\u0430\u0442\u044b\u0445 \u0433\u043e\u0434\u0430\u0445 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e \u0432\u0435\u043a\u0430 \u043c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u043b\u0438 \u0432 \u041a\u0438\u0442\u0430\u0435, \u0430 \u043f\u043e\u0441\u043b\u0435 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u0432 \u041a\u0430\u043d\u0430\u0434\u0443 \u0434\u0435\u0434 \u0434\u043e \u043a\u043e\u043d\u0446\u0430 \u0436\u0438\u0437\u043d\u0438 \u043e\u0441\u0442\u0430\u0432\u0430\u043b\u0441\u044f \u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0438\u043a\u043e\u043c \u0432 \u043e\u0434\u043d\u043e\u043c \u0438\u0437 \u043f\u0440\u0438\u0445\u043e\u0434\u043e\u0432 \u0421\u0435\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u041e\u043d\u0442\u0430\u0440\u0438\u043e.<BR><BR>\u0417\u0440\u0438\u0442\u0435\u043b\u044f\u043c \u041f\u0438\u0442\u0435\u0440 \u0410\u0443\u0442\u0435\u0440\u0431\u0440\u0438\u0434\u0436 \u0438\u0437\u0432\u0435\u0441\u0442\u0435\u043d \u043f\u043e \u0440\u043e\u043b\u044f\u043c \u0432 \u0441\u0435\u0440\u0438\u0430\u043b\u0430\u0445 \"\u041a\u0430\u0444\u0435 \u043d\u043e\u0447\u043d\u044b\u0445 \u043a\u043e\u0448\u043c\u0430\u0440\u043e\u0432\", \"\u0420\u044b\u0446\u0430\u0440\u044c \u043d\u0430\u0432\u0441\u0435\u0433\u0434\u0430\", \"\u0413\u043e\u0440\u0435\u0446\", \"24 \u0447\u0430\u0441\u0430\", \"\u0427\u0443\u0434\u0435\u0441\u0430\", \"\u0415\u0435 \u0437\u0432\u0430\u043b\u0438 \u041d\u0438\u043a\u0438\u0442\u0430\", \"\u041c\u0430\u0439\u043a\u043b \u0425\u0435\u0439\u0441\", \"\u041c","version":43,"birthday":"-49597200000","id":"12978","lastModified":"1300230261000","name":"Peter Outerbridge","type":"Person","_key":"8184"} +{"label":"Paul Coeur","version":17,"id":"12979","lastModified":"1300091088000","name":"Paul Coeur","type":"Person","_key":"8185"} +{"label":"Larry Gilman","version":16,"id":"12980","lastModified":"1300091027000","name":"Larry Gilman","type":"Person","_key":"8186"} +{"label":"Kristoffer Cooper","version":16,"id":"12981","lastModified":"1300091204000","name":"Kristoffer Cooper","type":"Person","_key":"8187"} +{"label":"The Running Man","description":"Set in 2019, a wrongly-convicted man must try to survive a public execution gauntlet staged as a TV game show.","id":"865","runtime":101,"imdbId":"tt0093894","trailer":"http:\/\/www.youtube.com\/watch?v=F5gIFR9t7RQ","version":268,"lastModified":"1300256794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de0\/4bc90dbd017a3c57fe004de0\/the-running-man-mid.jpg","studio":"Columbia TriStar","genre":"Action","title":"The Running Man","releaseDate":563760000000,"language":"en","tagline":"A game nobody survives. But Schwarzenegger has yet to play.","type":"Movie","_key":"8188"} +{"label":"Paul Michael Glaser","version":38,"id":"12988","lastModified":"1300090995000","name":"Paul Michael Glaser","type":"Person","_key":"8189"} +{"label":"Andrew Davis","version":76,"id":"12989","lastModified":"1300090423000","name":"Andrew Davis","type":"Person","_key":"8190"} +{"label":"Richard Dawson","version":20,"id":"96623","lastModified":"1300091693000","name":"Richard Dawson","type":"Person","_key":"8191"} +{"label":"Marvin J. McIntyre","version":20,"id":"13003","lastModified":"1300092095000","name":"Marvin J. McIntyre","type":"Person","_key":"8192"} +{"label":"Gus Rethwisch","version":19,"id":"13004","lastModified":"1300091630000","name":"Gus Rethwisch","type":"Person","_key":"8193"} +{"label":"Professor Toru Tanaka","version":22,"id":"13006","lastModified":"1300091310000","name":"Professor Toru Tanaka","type":"Person","_key":"8194"} +{"label":"Mick Fleetwood","version":21,"id":"13007","lastModified":"1300091630000","name":"Mick Fleetwood","type":"Person","_key":"8195"} +{"label":"Finding Neverland","description":"Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie\u2019s life and the inspiration that lead him to create his masterpiece \u201cPeter Pan.\u201d","id":"866","runtime":101,"imdbId":"tt0308644","homepage":"http:\/\/www.miramax.com\/findingneverland\/","version":884,"lastModified":"1300260391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dee\/4bc90dc1017a3c57fe004dee\/finding-neverland-mid.png","studio":"Film Colony","genre":"Drama","title":"Finding Neverland","releaseDate":1101254400000,"language":"en","type":"Movie","_key":"8196"} +{"label":"Marc Forster","version":43,"id":"12995","lastModified":"1299492954000","name":"Marc Forster","type":"Person","_key":"8197"} +{"label":"Kate Maberly","version":20,"id":"13010","lastModified":"1300091223000","name":"Kate Maberly","type":"Person","_key":"8198"} +{"label":"Joe Prospero","version":14,"id":"13011","lastModified":"1300091203000","name":"Joe Prospero","type":"Person","_key":"8199"} +{"label":"Nick Roud","version":14,"id":"13012","lastModified":"1300091785000","name":"Nick Roud","type":"Person","_key":"8200"} +{"label":"Luke Spill","version":14,"id":"13013","lastModified":"1300091113000","name":"Luke Spill","type":"Person","_key":"8201"} +{"label":"Toby Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fd\/4d05bf637b9aa11bc40027fd\/toby-jones-profile.jpg","version":45,"id":"13014","lastModified":"1300090547000","name":"Toby Jones","type":"Person","_key":"8202"} +{"label":"Sliver","description":"Right after the Young Carly Norris (Sharon Stone) moves into an apartment in Manhattan she learns that the previous renter\u2019s life ended mysteriously after falling from the balcony. She begins a heated affair with the voyeuristic neighbor Zeke (William Baldwin) who owns the apartment. Yet again a mysterious death occurs and this time Carly must prove her innocence.","id":"867","runtime":107,"imdbId":"tt0108162","version":171,"lastModified":"1300256336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e06\/4bc90dc5017a3c57fe004e06\/sliver-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Sliver","releaseDate":737942400000,"language":"en","tagline":"You like to watch... don't you?","type":"Movie","_key":"8203"} +{"label":"Phillip Noyce","version":66,"id":"13015","lastModified":"1300041811000","name":"Phillip Noyce","type":"Person","_key":"8204"} +{"label":"William Baldwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b69\/4cf3e66a5e73d62383000b69\/william-baldwin-profile.jpg","version":53,"id":"13021","lastModified":"1300090374000","name":"William Baldwin","type":"Person","_key":"8205"} +{"label":"Colleen Camp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2be\/4ca4c35d7b9aa16eda0002be\/colleen-camp-profile.jpg","version":67,"id":"13023","lastModified":"1300090479000","name":"Colleen Camp","type":"Person","_key":"8206"} +{"label":"Amanda Foreman","version":15,"id":"13024","lastModified":"1300092433000","name":"Amanda Foreman","type":"Person","_key":"8207"} +{"label":"Nina Foch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d4\/4bf1b380017a3c32130002d4\/nina-foch-profile.jpg","version":54,"id":"13026","lastModified":"1300090406000","name":"Nina Foch","type":"Person","_key":"8208"} +{"label":"Keene Curtis","version":15,"id":"13027","lastModified":"1300091810000","name":"Keene Curtis","type":"Person","_key":"8209"} +{"label":"Nicholas Pryor","version":23,"id":"13028","lastModified":"1300092123000","name":"Nicholas Pryor","type":"Person","_key":"8210"} +{"label":"Anne Betancourt","version":18,"id":"13029","lastModified":"1300092072000","name":"Anne Betancourt","type":"Person","_key":"8211"} +{"label":"Tsotsi","description":"The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and learn that maybe the gangster life isn\u2019t the best way.","id":"868","runtime":94,"imdbId":"tt0468565","homepage":"http:\/\/www.tsotsimovie.com\/","version":393,"lastModified":"1300259974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/175\/4d7432f95e73d6397d000175\/tsotsi-mid.jpg","studio":"Movieworld Productions","genre":"Crime","title":"Tsotsi","releaseDate":1124323200000,"language":"en","type":"Movie","_key":"8212"} +{"label":"Gavin Hood","version":33,"id":"13079","lastModified":"1300090669000","name":"Gavin Hood","type":"Person","_key":"8213"} +{"label":"Presley Chweneyagae","version":17,"id":"13091","lastModified":"1300091657000","name":"Presley Chweneyagae","type":"Person","_key":"8214"} +{"label":"Jerry Mofokeng","version":15,"id":"13092","lastModified":"1300091868000","name":"Jerry Mofokeng","type":"Person","_key":"8215"} +{"label":"Terry Pheto","version":19,"id":"13093","lastModified":"1299601265000","name":"Terry Pheto","type":"Person","_key":"8216"} +{"label":"Kenneth Nkosi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16d\/4d24ea0b5e73d626ac00016d\/kenneth-nkosi-profile.jpg","version":28,"id":"13094","lastModified":"1300090308000","name":"Kenneth Nkosi","type":"Person","_key":"8217"} +{"label":"Zenzo Ngqobe","version":15,"id":"13095","lastModified":"1300092150000","name":"Zenzo Ngqobe","type":"Person","_key":"8218"} +{"label":"Zola","version":15,"id":"13097","lastModified":"1300091868000","name":"Zola","type":"Person","_key":"8219"} +{"label":"Rapulana Seiphemo","version":18,"id":"13098","lastModified":"1300092150000","name":"Rapulana Seiphemo","type":"Person","_key":"8220"} +{"label":"Nambitha Mpumlwana","version":21,"id":"13100","lastModified":"1300091868000","name":"Nambitha Mpumlwana","type":"Person","_key":"8221"} +{"label":"Ian Roberts","version":28,"id":"13101","lastModified":"1299492707000","name":"Ian Roberts","type":"Person","_key":"8222"} +{"label":"Percy Matsemela","version":16,"id":"13103","lastModified":"1300091458000","name":"Percy Matsemela","type":"Person","_key":"8223"} +{"label":"Thembi Nyandeni","version":15,"id":"13105","lastModified":"1300092150000","name":"Thembi Nyandeni","type":"Person","_key":"8224"} +{"label":"Owen Sejake","version":16,"id":"13106","lastModified":"1300092093000","name":"Owen Sejake","type":"Person","_key":"8225"} +{"label":"Israel Makoe","version":15,"id":"13108","lastModified":"1300092184000","name":"Israel Makoe","type":"Person","_key":"8226"} +{"label":"Sindi Khambule","version":15,"id":"13109","lastModified":"1300092150000","name":"Sindi Khambule","type":"Person","_key":"8227"} +{"label":"Benny Moshe","version":16,"id":"13111","lastModified":"1300092150000","name":"Benny Moshe","type":"Person","_key":"8228"} +{"label":"Planet of the Apes","description":"After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson (Mark Wahlberg) finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home, Leo must evade the invincible gorilla army led by Ruthless General Thade (Tim Roth) and his most trusted warrior, Attar (Michael Clarke Duncan).","id":"869","runtime":119,"imdbId":"tt0133152","trailer":"http:\/\/www.youtube.com\/watch?v=20","version":427,"lastModified":"1300259775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4c9bb9735e73d66bc2000002\/planet-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Planet of the Apes","releaseDate":996192000000,"language":"en","type":"Movie","_key":"8229"} +{"label":"Mark Wahlberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ba\/4bd2daeb017a3c63ea0002ba\/mark-wahlberg-profile.jpg","biography":"Mark Robert Michael Wahlberg (born June 5, 1971) is an American actor, rapper and producer of film and television. He was known as Marky Mark in his earlier years and became famous in his 1991 debut as a rap musician with the band Marky Mark and the Funky Bunch. Wahlberg has appeared in numerous films, including Boogie Nights (1997), The Departed (2006)\u2014for which he was nominated for an Academy Award for Best Supporting Actor\u2014and The Other Guys (2010). He also serves as one of the co-executive p","version":172,"id":"13240","lastModified":"1300090218000","name":"Mark Wahlberg","type":"Person","_key":"8230"} +{"label":"Kris Kristofferson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fd\/4c225b237b9aa135f90001fd\/kris-kristofferson-profile.jpg","version":115,"id":"10823","lastModified":"1300187286000","name":"Kris Kristofferson","type":"Person","_key":"8231"} +{"label":"Estella Warren","version":34,"id":"13241","lastModified":"1300090407000","name":"Estella Warren","type":"Person","_key":"8232"} +{"label":"Glenn Shadix","version":28,"id":"13243","lastModified":"1300091606000","name":"Glenn Shadix","type":"Person","_key":"8233"} +{"label":"Chad Bannon","version":24,"id":"44824","lastModified":"1300091118000","name":"Chad Bannon","type":"Person","_key":"8234"} +{"label":"Dolls","description":"Dolls is a film about Japanese doll theater and a human love story illustrated through beautiful imagery. This film is a lot more sensitive than most Kitano films.","id":"870","runtime":114,"imdbId":"tt0330229","homepage":"http:\/\/www.office-kitano.co.jp\/dolls\/","version":117,"lastModified":"1300181234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3f\/4bc90dcc017a3c57fe004e3f\/dolls-mid.jpg","studio":"Bandai Visual Company","genre":"Drama","title":"Dolls","releaseDate":1031184000000,"language":"en","type":"Movie","_key":"8235"} +{"label":"Miho Kanno","version":16,"id":"13249","lastModified":"1300091705000","name":"Miho Kanno","type":"Person","_key":"8236"} +{"label":"Hidetoshi Nishijima","version":23,"id":"13250","lastModified":"1300091489000","name":"Hidetoshi Nishijima","type":"Person","_key":"8237"} +{"label":"Tatsuya Mihashi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/381\/4c28b4477b9aa14469000381\/tatsuya-mihashi-profile.jpg","version":30,"id":"13251","lastModified":"1300101424000","name":"Tatsuya Mihashi","type":"Person","_key":"8238"} +{"label":"Chieko Matsubara","version":18,"id":"13252","lastModified":"1300091634000","name":"Chieko Matsubara","type":"Person","_key":"8239"} +{"label":"Kyoko Fukada","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0b\/4d2a73005e73d626ac003c0b\/ky-ko-fukada-profile.jpg","version":28,"id":"13253","lastModified":"1300090873000","name":"Kyoko Fukada","type":"Person","_key":"8240"} +{"label":"Tsutomu Takeshige","version":16,"id":"13254","lastModified":"1300092467000","name":"Tsutomu Takeshige","type":"Person","_key":"8241"} +{"label":"Kayoko Kishimoto","version":25,"id":"13255","lastModified":"1300091463000","name":"Kayoko Kishimoto","type":"Person","_key":"8242"} +{"label":"Kanji Tsuda","version":27,"id":"13256","lastModified":"1300091946000","name":"Kanji Tsuda","type":"Person","_key":"8243"} +{"label":"Planet of the Apes","description":"Planet of the Apes is the filmed version of the French novel by Pierre Boulle starring Charlton Heston as one of four astronauts to land on a foreign planet inhabited by human-like apes. A classic science fiction film from the late 60\u2019s.","id":"871","runtime":112,"imdbId":"tt0063442","trailer":"http:\/\/www.youtube.com\/watch?v=CvR2mCx-Jnc","version":328,"lastModified":"1300255565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23f\/4d40d3515e73d6570400023f\/planet-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Science Fiction","title":"Planet of the Apes","releaseDate":-59875200000,"language":"en","type":"Movie","_key":"8244"} +{"label":"James Daly","version":19,"id":"13259","lastModified":"1300092145000","name":"James Daly","type":"Person","_key":"8245"} +{"label":"Linda Harrison","version":16,"id":"13260","lastModified":"1300092385000","name":"Linda Harrison","type":"Person","_key":"8246"} +{"label":"Robert Gunner","version":17,"id":"13261","lastModified":"1300092460000","name":"Robert Gunner","type":"Person","_key":"8247"} +{"label":"Lou Wagner","version":16,"id":"13262","lastModified":"1300092385000","name":"Lou Wagner","type":"Person","_key":"8248"} +{"label":"Woodrow Parfrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/912\/4cdab7525e73d676d3000912\/woodrow-parfrey-profile.jpg","version":25,"id":"13263","lastModified":"1300091016000","name":"Woodrow Parfrey","type":"Person","_key":"8249"} +{"label":"Jeff Burton","version":19,"id":"13264","lastModified":"1300092857000","name":"Jeff Burton","type":"Person","_key":"8250"} +{"label":"Franklin J. Schaffner","version":29,"id":"13265","lastModified":"1300090578000","name":"Franklin J. Schaffner","type":"Person","_key":"8251"} +{"label":"Singin' in the Rain","description":"Hollywood's attempts to move from the 'silent' era to the 'Talkies' are not going as planned.","id":"872","runtime":103,"imdbId":"tt0045152","trailer":"http:\/\/www.youtube.com\/watch?v=jEKQwy13j_8","version":922,"lastModified":"1300255339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4bc90dd4017a3c57fe004e74\/singin-in-the-rain-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Singin' in the Rain","releaseDate":-560649600000,"language":"en","type":"Movie","_key":"8252"} +{"label":"Stanley Donen","version":54,"id":"13284","lastModified":"1300090968000","name":"Stanley Donen","type":"Person","_key":"8253"} +{"label":"Gene Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/258\/4c51b3eb7b9aa13d4c000258\/gene-kelly-profile.jpg","version":67,"id":"13294","lastModified":"1300090467000","name":"Gene Kelly","type":"Person","_key":"8254"} +{"label":"Donald O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/318\/4c47593d7b9aa15de0000318\/donald-o-connor-profile.jpg","version":25,"id":"13295","lastModified":"1300090934000","name":"Donald O'Connor","type":"Person","_key":"8255"} +{"label":"Jean Hagen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20f\/4c51b4da7b9aa13d4a00020f\/jean-hagen-profile.jpg","version":31,"id":"13296","lastModified":"1300090642000","name":"Jean Hagen","type":"Person","_key":"8256"} +{"label":"Millard Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d4\/4bd98e89017a3c1c000001d4\/millard-mitchell-profile.jpg","version":30,"id":"13297","lastModified":"1300127296000","name":"Millard Mitchell","type":"Person","_key":"8257"} +{"label":"Douglas Fowley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4bcf58d3017a3c63e800006a\/douglas-fowley-profile.jpg","version":42,"birthday":"-1849050000000","id":"13298","birthplace":"Bronx, New York, USA","lastModified":"1300091665000","name":"Douglas Fowley","type":"Person","_key":"8258"} +{"label":"Rita Moreno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/894\/4cab2ff07b9aa17acd000894\/rita-moreno-profile.jpg","version":31,"id":"13299","lastModified":"1300090616000","name":"Rita Moreno","type":"Person","_key":"8259"} +{"label":"The Color Purple","description":"The Color Purple is a drama from Steven Spielberg starring Whoopi Goldberg. The film is set in the southern United States and depicts the slow emancipation of a male dominated victimized African American woman.","id":"873","runtime":154,"imdbId":"tt0088939","trailer":"http:\/\/www.youtube.com\/watch?v=d83NnlL83mc","version":873,"lastModified":"1300258996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdb\/4d702f695e73d65a1e000bdb\/the-color-purple-mid.jpg","studio":"Amblin Entertainment","genre":"Drama","title":"The Color Purple","releaseDate":503712000000,"language":"en","type":"Movie","_key":"8260"} +{"label":"Margaret Avery","version":24,"id":"13307","lastModified":"1300091085000","name":"Margaret Avery","type":"Person","_key":"8261"} +{"label":"Akosua Busia","version":23,"id":"13308","birthplace":"Ghana","lastModified":"1300092130000","name":"Akosua Busia","type":"Person","_key":"8262"} +{"label":"Oprah Winfrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/187\/4c207a4d7b9aa130e5000187\/oprah-winfrey-profile.jpg","version":31,"birthday":"-502506000000","id":"13309","birthplace":"Kosciusko, Mississippi","lastModified":"1300091705000","name":"Oprah Winfrey","type":"Person","_key":"8263"} +{"label":"Willard E. Pugh","version":23,"id":"13310","lastModified":"1300091843000","name":"Willard E. Pugh","type":"Person","_key":"8264"} +{"label":"Desreta Jackson","version":18,"id":"13311","lastModified":"1300091784000","name":"Desreta Jackson","type":"Person","_key":"8265"} +{"label":"Rae Dawn Chong","version":44,"id":"13312","lastModified":"1300031271000","name":"Rae Dawn Chong","type":"Person","_key":"8266"} +{"label":"Adolph Caesar","version":24,"id":"13313","lastModified":"1300092167000","name":"Adolph Caesar","type":"Person","_key":"8267"} +{"label":"Leonard Jackson","version":20,"id":"13315","lastModified":"1300208372000","name":"Leonard Jackson","type":"Person","_key":"8268"} +{"label":"Bennet Guillory","version":18,"id":"13316","lastModified":"1300091784000","name":"Bennet Guillory","type":"Person","_key":"8269"} +{"label":"A Man for All Seasons","description":"A Man for All Seasons is the filmed version of the life of Thomas More. An English man comes to Sir Thomas More to ask if he can divorce his wife since King Henry VIII has made it illegal. Sir Tomas More stands up in opposition to the King even though he knows he\u2019s risking his own life. An award winning film from 1966.","id":"874","runtime":120,"imdbId":"tt0060665","trailer":"http:\/\/www.youtube.com\/watch?v=zbZfh-5QsAw","version":665,"lastModified":"1300254817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9b\/4bc90dda017a3c57fe004e9b\/a-man-for-all-seasons-mid.jpg","studio":"Highland Films","genre":"Drama","title":"A Man for All Seasons","releaseDate":-96422400000,"language":"en","type":"Movie","_key":"8270"} +{"label":"Wendy Hiller","version":27,"id":"13325","lastModified":"1300187055000","name":"Wendy Hiller","type":"Person","_key":"8271"} +{"label":"Susannah York","version":39,"id":"13326","lastModified":"1300187055000","name":"Susannah York","type":"Person","_key":"8272"} +{"label":"Nigel Davenport","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d2\/4ca0a4d65e73d6704b0005d2\/nigel-davenport-profile.jpg","version":32,"id":"13327","lastModified":"1300197542000","name":"Nigel Davenport","type":"Person","_key":"8273"} +{"label":"Corin Redgrave","version":23,"id":"13328","lastModified":"1300187055000","name":"Corin Redgrave","type":"Person","_key":"8274"} +{"label":"Colin Blakely","version":32,"id":"13329","lastModified":"1300187055000","name":"Colin Blakely","type":"Person","_key":"8275"} +{"label":"Cyril Luckham","version":14,"id":"13330","lastModified":"1300187055000","name":"Cyril Luckham","type":"Person","_key":"8276"} +{"label":"Jack Gwillim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d8\/4d593d407b9aa16bca0035d8\/jack-gwillim-profile.jpg","version":32,"id":"13331","lastModified":"1300187055000","name":"Jack Gwillim","type":"Person","_key":"8277"} +{"label":"Thomas Heathcote","version":20,"id":"13332","lastModified":"1300187055000","name":"Thomas Heathcote","type":"Person","_key":"8278"} +{"label":"Vanessa Redgrave","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40f\/4ca289345e73d612f800040f\/vanessa-redgrave-profile.jpg","version":100,"id":"13333","lastModified":"1299582685000","name":"Vanessa Redgrave","type":"Person","_key":"8279"} +{"label":"Shanghai Express","description":"Shanghai Express is an American love story and adventure film by Josef von Sternberg from 1932 starring Marlene Dietrich. The film takes place in a train during the Chinese civil war.","id":"875","runtime":80,"imdbId":"tt0023458","version":107,"lastModified":"1300247583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea8\/4bc90ddb017a3c57fe004ea8\/shanghai-express-mid.jpg","studio":"Paramount Pictures","genre":"Adventure","title":"Shanghai Express","releaseDate":-1196467200000,"language":"en","type":"Movie","_key":"8280"} +{"label":"Clive Brook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e4\/4bf18445017a3c320d0001e4\/clive-brook-profile.jpg","version":17,"id":"13340","lastModified":"1300091478000","name":"Clive Brook","type":"Person","_key":"8281"} +{"label":"Anna May Wong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed2\/4be991ec017a3c35bf000ed2\/anna-may-wong-profile.jpg","version":26,"id":"13341","lastModified":"1300273549000","name":"Anna May Wong","type":"Person","_key":"8282"} +{"label":"Warner Oland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4c5184627b9aa13d4b00014c\/warner-oland-profile.jpg","version":34,"birthday":"-2847920400000","id":"13342","birthplace":"Nyby, V\u00e4sterbottens l\u00e4n, Sweden","lastModified":"1300090477000","name":"Warner Oland","type":"Person","_key":"8283"} +{"label":"Eugene Pallette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f1\/4c49efa37b9aa116000000f1\/eugene-pallette-profile.jpg","version":40,"id":"8728","lastModified":"1300090565000","name":"Eugene Pallette","type":"Person","_key":"8284"} +{"label":"Lawrence Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a6\/4bf715cb017a3c77260002a6\/lawrence-grant-profile.jpg","version":20,"id":"13343","lastModified":"1300091656000","name":"Lawrence Grant","type":"Person","_key":"8285"} +{"label":"Louise Closser Hale","version":15,"id":"13344","lastModified":"1300092635000","name":"Louise Closser Hale","type":"Person","_key":"8286"} +{"label":"Gustav von Seyffertitz","version":16,"id":"13345","lastModified":"1300092248000","name":"Gustav von Seyffertitz","type":"Person","_key":"8287"} +{"label":"Emile Chautard","version":14,"id":"13346","lastModified":"1300092227000","name":"Emile Chautard","type":"Person","_key":"8288"} +{"label":"Frank Herbert's Dune","description":"A three part mini-series based on Frank Herbert's classic Science Fiction novel entailing politics, betrayal, lust, greed and the coming of a Messiah.","id":"876","runtime":265,"imdbId":"tt0142032","trailer":"http:\/\/www.youtube.com\/watch?v=xYWJn2GolrI","homepage":"http:\/\/www.scifi.com\/dune_2k\/","version":331,"lastModified":"1300254433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb6\/4bc90dde017a3c57fe004eb6\/frank-herbert-s-dune-mid.jpg","studio":"New Amsterdam Entertainment","genre":"Action","title":"Frank Herbert's Dune","releaseDate":975801600000,"language":"en","tagline":"Discover the greatest treasure in the universe.","type":"Movie","_key":"8289"} +{"label":"Alec Newman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4c14be4d5e73d64a240000a5\/alec-newman-profile.jpg","version":34,"id":"13362","lastModified":"1300090505000","name":"Alec Newman","type":"Person","_key":"8290"} +{"label":"Saskia Reeves","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ab\/4c14bf705e73d64a240000ab\/saskia-reeves-profile.jpg","version":21,"id":"13363","lastModified":"1300090992000","name":"Saskia Reeves","type":"Person","_key":"8291"} +{"label":"Julie Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4c14bf3d5e73d64a2500006c\/julie-cox-profile.jpg","version":32,"id":"13364","lastModified":"1300134715000","name":"Julie Cox","type":"Person","_key":"8292"} +{"label":"Barbora Kodetov\u00e1","version":20,"id":"13365","lastModified":"1300091097000","name":"Barbora Kodetov\u00e1","type":"Person","_key":"8293"} +{"label":"L\u00e1szl\u00f3 I. Kish","version":16,"id":"13366","lastModified":"1300091666000","name":"L\u00e1szl\u00f3 I. Kish","type":"Person","_key":"8294"} +{"label":"John Harrison","version":28,"id":"13367","lastModified":"1300091464000","name":"John Harrison","type":"Person","_key":"8295"} +{"label":"Scarface","description":"Scarface is a brutal gangster film from 1932 from director Howard Hawks that depicts the fall of a Chicago gangster.","id":"877","runtime":90,"imdbId":"tt0023427","trailer":"http:\/\/www.youtube.com\/watch?v=3qx6DhjaAP8","version":229,"lastModified":"1300166993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebf\/4bc90ddf017a3c57fe004ebf\/scarface-mid.jpg","studio":"United Artists","genre":"Action","title":"Scarface","releaseDate":-1190678400000,"language":"en","type":"Movie","_key":"8296"} +{"label":"Paul Muni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4c45c6627b9aa15dde0000cc\/paul-muni-profile.jpg","version":21,"id":"13352","lastModified":"1300090932000","name":"Paul Muni","type":"Person","_key":"8297"} +{"label":"Ann Dvorak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12c\/4c49f57a7b9aa115fd00012c\/ann-dvorak-profile.jpg","version":24,"id":"13353","lastModified":"1300091047000","name":"Ann Dvorak","type":"Person","_key":"8298"} +{"label":"Karen Morley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/141\/4c51849a7b9aa13d4a000141\/karen-morley-profile.jpg","version":23,"id":"13354","lastModified":"1300090890000","name":"Karen Morley","type":"Person","_key":"8299"} +{"label":"Osgood Perkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4cc8456e7b9aa16b9b000105\/osgood-perkins-profile.jpg","version":15,"id":"13355","lastModified":"1300091101000","name":"Osgood Perkins","type":"Person","_key":"8300"} +{"label":"C. Henry Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/97c\/4be44989017a3c35b700097c\/c-henry-gordon-profile.jpg","version":22,"id":"13356","lastModified":"1300092227000","name":"C. Henry Gordon","type":"Person","_key":"8301"} +{"label":"Vince Barnett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a5\/4cb88e5a7b9aa138d90008a5\/vince-barnett-profile.jpg","version":23,"birthday":"-2130022800000","id":"13357","birthplace":"Pittsburgh, Pennsylvania, USA","lastModified":"1300092043000","name":"Vince Barnett","type":"Person","_key":"8302"} +{"label":"Purnell Pratt","version":19,"id":"13358","lastModified":"1300092164000","name":"Purnell Pratt","type":"Person","_key":"8303"} +{"label":"Tully Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/101\/4cc845137b9aa16b9c000101\/tully-marshall-profile.jpg","version":23,"id":"13359","lastModified":"1300091826000","name":"Tully Marshall","type":"Person","_key":"8304"} +{"label":"Inez Palange","version":16,"id":"13360","lastModified":"1300092043000","name":"Inez Palange","type":"Person","_key":"8305"} +{"label":"Edwin Maxwell","version":25,"id":"13361","lastModified":"1300091864000","name":"Edwin Maxwell","type":"Person","_key":"8306"} +{"label":"Die Feuerzangenbowle","description":"Die Feuerzangenbowle from Director Helmut Weiss is based on the novel by the same name from Heinrich Spoerl and Hans Reimann that has turned into a cult German film. The film tells the story of a writer Johannes Pfeiffer who goes undercover as a student in a high school after his friends told him that he missed out on a great life experience since he was home schooled.","id":"878","runtime":97,"imdbId":"tt0036818","version":76,"lastModified":"1299912899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec8\/4bc90de0017a3c57fe004ec8\/die-feuerzangenbowle-mid.jpg","studio":"UFA Universum-Film AG","genre":"Comedy","title":"Die Feuerzangenbowle","releaseDate":-818208000000,"language":"en","type":"Movie","_key":"8307"} +{"label":"Karin Himboldt","version":15,"id":"13374","lastModified":"1300091227000","name":"Karin Himboldt","type":"Person","_key":"8308"} +{"label":"Hilde Sessak","version":16,"id":"13375","lastModified":"1300092385000","name":"Hilde Sessak","type":"Person","_key":"8309"} +{"label":"Erich Ponto","version":19,"id":"13376","lastModified":"1299497722000","name":"Erich Ponto","type":"Person","_key":"8310"} +{"label":"Paul Henckels","version":22,"id":"13377","lastModified":"1300091864000","name":"Paul Henckels","type":"Person","_key":"8311"} +{"label":"Hans Leibelt","version":19,"id":"13378","lastModified":"1300092049000","name":"Hans Leibelt","type":"Person","_key":"8312"} +{"label":"Lutz G\u00f6tz","version":14,"id":"13379","lastModified":"1300092635000","name":"Lutz G\u00f6tz","type":"Person","_key":"8313"} +{"label":"Hans Richter","version":18,"id":"13380","lastModified":"1300092504000","name":"Hans Richter","type":"Person","_key":"8314"} +{"label":"Clemens Hasse","version":14,"id":"13381","lastModified":"1300092635000","name":"Clemens Hasse","type":"Person","_key":"8315"} +{"label":"Rudi Schippel","version":13,"id":"13382","lastModified":"1300092385000","name":"Rudi Schippel","type":"Person","_key":"8316"} +{"label":"Helmut Weiss","version":18,"id":"13383","lastModified":"1300091844000","name":"Helmut Weiss","type":"Person","_key":"8317"} +{"label":"Hook","description":"The boy who wasn't supposed to grow up -- Peter Pan -- did just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids, in this family-oriented fantasy from director Steven Spielberg. But a trip to see Granny Wendy in London, where the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland, could lead to a chance at redemption.","id":"879","runtime":144,"imdbId":"tt0102057","trailer":"http:\/\/www.youtube.com\/watch?v=747","version":270,"lastModified":"1300180777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/014\/4cec6b857b9aa12f68000014\/hook-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Hook","releaseDate":692409600000,"language":"en","tagline":"What if Peter Pan grew up?","type":"Movie","_key":"8318"} +{"label":"Charlie Korsmo","version":26,"id":"13389","lastModified":"1300091084000","name":"Charlie Korsmo","type":"Person","_key":"8319"} +{"label":"Amber Scott","version":19,"id":"13390","lastModified":"1300091938000","name":"Amber Scott","type":"Person","_key":"8320"} +{"label":"Dante Basco","version":21,"id":"13391","lastModified":"1300091426000","name":"Dante Basco","type":"Person","_key":"8321"} +{"label":"Arthur Malet","version":23,"id":"13392","lastModified":"1300091036000","name":"Arthur Malet","type":"Person","_key":"8322"} +{"label":"Isaiah Robinson","version":18,"id":"13393","lastModified":"1300091807000","name":"Isaiah Robinson","type":"Person","_key":"8323"} +{"label":"Antonia","description":"Antonia knows that it\u2019s her time to die yet before she goes she tells the story of her family in a small Netherlander town. Director Marleen Gorris received the Academy Award for the best foreign film in 1996.","id":"880","runtime":96,"imdbId":"tt0112379","version":144,"lastModified":"1300246343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eed\/4bc90de5017a3c57fe004eed\/antonia-mid.jpg","studio":"Bergen Film","genre":"Comedy","title":"Antonia","releaseDate":810864000000,"language":"en","type":"Movie","_key":"8324"} +{"label":"Marleen Gorris","version":20,"id":"13496","lastModified":"1300091390000","name":"Marleen Gorris","type":"Person","_key":"8325"} +{"label":"Willeke van Ammelrooy","version":29,"id":"13506","lastModified":"1300091047000","name":"Willeke van Ammelrooy","type":"Person","_key":"8326"} +{"label":"Els Dottermans","version":16,"id":"13507","lastModified":"1300091914000","name":"Els Dottermans","type":"Person","_key":"8327"} +{"label":"Dora van der Groen","version":14,"id":"13508","lastModified":"1300091027000","name":"Dora van der Groen","type":"Person","_key":"8328"} +{"label":"Veerle van Overloop","version":14,"id":"13509","lastModified":"1300091390000","name":"Veerle van Overloop","type":"Person","_key":"8329"} +{"label":"Esther Vriesendorp","version":14,"id":"13510","lastModified":"1300092043000","name":"Esther Vriesendorp","type":"Person","_key":"8330"} +{"label":"Arne Bang-Hansen","version":20,"id":"13511","lastModified":"1300092043000","name":"Arne Bang-Hansen","type":"Person","_key":"8331"} +{"label":"Thyrza Ravesteijn","version":14,"id":"13512","lastModified":"1300092385000","name":"Thyrza Ravesteijn","type":"Person","_key":"8332"} +{"label":"Mil Seghers","version":14,"id":"13513","lastModified":"1300092385000","name":"Mil Seghers","type":"Person","_key":"8333"} +{"label":"Jan Decleir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48e\/4d17b4c97b9aa1147a00348e\/jan-decleir-profile.jpg","version":31,"id":"13514","lastModified":"1300090616000","name":"Jan Decleir","type":"Person","_key":"8334"} +{"label":"Elsie de Brauw","version":16,"id":"13515","lastModified":"1300092518000","name":"Elsie de Brauw","type":"Person","_key":"8335"} +{"label":"Reinout Bussemaker","version":17,"id":"13516","lastModified":"1300092161000","name":"Reinout Bussemaker","type":"Person","_key":"8336"} +{"label":"Marina de Graaf","version":14,"id":"13517","lastModified":"1300092385000","name":"Marina de Graaf","type":"Person","_key":"8337"} +{"label":"Wimie Wilhelm","version":15,"id":"13518","lastModified":"1300092385000","name":"Wimie Wilhelm","type":"Person","_key":"8338"} +{"label":"Fran Waller Zeper","version":15,"id":"13519","lastModified":"1300092640000","name":"Fran Waller Zeper","type":"Person","_key":"8339"} +{"label":"A Few Good Men","description":"When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.","id":"881","runtime":138,"imdbId":"tt0104257","trailer":"http:\/\/www.youtube.com\/watch?v=2270","version":541,"lastModified":"1300257700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/121\/4d67fff57b9aa13636000121\/a-few-good-men-mid.jpg","studio":"Castle Rock Entertainment","genre":"Crime","title":"A Few Good Men","releaseDate":724032000000,"language":"en","tagline":"In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.","type":"Movie","_key":"8340"} +{"label":"James Marshall","version":30,"id":"6717","lastModified":"1300130415000","name":"James Marshall","type":"Person","_key":"8341"} +{"label":"J.T. Walsh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4c51bb4a7b9aa13d4e000231\/j-t-walsh-profile.jpg","version":68,"id":"22131","lastModified":"1300207855000","name":"J.T. Walsh","type":"Person","_key":"8342"} +{"label":"Christopher Guest","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f0e\/4cf1777f5e73d61926000f0e\/christopher-guest-profile.jpg","version":77,"id":"13524","lastModified":"1300155333000","name":"Christopher Guest","type":"Person","_key":"8343"} +{"label":"Matt Craven","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/75d\/4cf713745e73d6299e00175d\/matt-craven-profile.jpg","version":70,"id":"13525","lastModified":"1300090422000","name":"Matt Craven","type":"Person","_key":"8344"} +{"label":"Flussfahrt Mit Huhn","description":"During the summer on their Grandfather\u2019s land Johanna, Robert, Harald and Alex begin a secret journey up the river on a boat with a chicken in search of a new path to the North Sea of Germany. A classic German children\u2019s adventure movie.","id":"882","runtime":103,"imdbId":"tt0087273","version":46,"lastModified":"1299531944000","studio":"Hessischer Rundfunk","genre":"Adventure","title":"Flussfahrt Mit Huhn","releaseDate":469411200000,"language":"en","type":"Movie","_key":"8345"} +{"label":"Arend Agthe","version":15,"id":"13527","lastModified":"1300091898000","name":"Arend Agthe","type":"Person","_key":"8346"} +{"label":"Julia Martinek","version":14,"id":"13534","lastModified":"1300092645000","name":"Julia Martinek","type":"Person","_key":"8347"} +{"label":"David Hoppe","version":15,"id":"13535","lastModified":"1300091696000","name":"David Hoppe","type":"Person","_key":"8348"} +{"label":"Fedor Hoppe","version":14,"id":"13536","lastModified":"1300092645000","name":"Fedor Hoppe","type":"Person","_key":"8349"} +{"label":"Uwe M\u00fcller","version":15,"id":"13537","lastModified":"1300092148000","name":"Uwe M\u00fcller","type":"Person","_key":"8350"} +{"label":"Hans Beerhenke","version":14,"id":"13538","lastModified":"1300092645000","name":"Hans Beerhenke","type":"Person","_key":"8351"} +{"label":"Erika Skrotzki","version":14,"id":"13539","lastModified":"1300092525000","name":"Erika Skrotzki","type":"Person","_key":"8352"} +{"label":"Barbara Stanek","version":14,"id":"13540","lastModified":"1300092525000","name":"Barbara Stanek","type":"Person","_key":"8353"} +{"label":"Andreas Mannkopff","version":14,"id":"13541","lastModified":"1300092525000","name":"Andreas Mannkopff","type":"Person","_key":"8354"} +{"label":"Jockel List","version":16,"id":"13542","lastModified":"1300092525000","name":"Jockel List","type":"Person","_key":"8355"} +{"label":"Julian Moscherosch","version":14,"id":"13543","lastModified":"1300092525000","name":"Julian Moscherosch","type":"Person","_key":"8356"} +{"label":"Coffee and Cigarettes","description":"Coffee And Cigarettes is a collection of eleven films from cult director Jim Jarmusch. Each film hosts star studded cast of extremely unique individuals who all share the common activities of conversing while drinking coffee and smoking cigarettes. ","id":"883","runtime":96,"imdbId":"tt0379217","homepage":"http:\/\/www.coffeeandcigarettesmovie.com\/","version":302,"lastModified":"1300257352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f14\/4bc90ded017a3c57fe004f14\/coffee-and-cigarettes-mid.jpg","studio":"Smokescreen Inc.","genre":"Comedy","title":"Coffee and Cigarettes","releaseDate":1084492800000,"language":"en","type":"Movie","_key":"8357"} +{"label":"Joie Lee","version":19,"id":"13602","lastModified":"1300091794000","name":"Joie Lee","type":"Person","_key":"8358"} +{"label":"Cinqu\u00e9 Lee","version":19,"id":"13603","lastModified":"1300091224000","name":"Cinqu\u00e9 Lee","type":"Person","_key":"8359"} +{"label":"Iggy Pop","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/805\/4cc3cbd75e73d67783001805\/iggy-pop-profile.jpg","version":36,"id":"13604","lastModified":"1300131406000","name":"Iggy Pop","type":"Person","_key":"8360"} +{"label":"Joseph Rigano","version":17,"id":"13605","lastModified":"1300091878000","name":"Joseph Rigano","type":"Person","_key":"8361"} +{"label":"Vinny Vella Jr.","version":13,"id":"13606","lastModified":"1300092056000","name":"Vinny Vella Jr.","type":"Person","_key":"8362"} +{"label":"Renee French","version":14,"id":"13607","lastModified":"1300091878000","name":"Renee French","type":"Person","_key":"8363"} +{"label":"E.J. Rodriguez","version":14,"id":"13608","lastModified":"1300092635000","name":"E.J. Rodriguez","type":"Person","_key":"8364"} +{"label":"Alex Descas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7e\/4d41fcb75e73d65725000b7e\/alex-descas-profile.jpg","version":23,"id":"13609","lastModified":"1300091192000","name":"Alex Descas","type":"Person","_key":"8365"} +{"label":"Meg White","version":14,"id":"13610","lastModified":"1300092542000","name":"Meg White","type":"Person","_key":"8366"} +{"label":"Jack White","version":24,"id":"13611","lastModified":"1300091438000","name":"Jack White","type":"Person","_key":"8367"} +{"label":"Steve Coogan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4c7c1bff5e73d6474d00004e\/steve-coogan-profile.jpg","version":90,"id":"4581","lastModified":"1300090332000","name":"Steve Coogan","type":"Person","_key":"8368"} +{"label":"The GZA","version":15,"id":"13613","lastModified":"1300092542000","name":"The GZA","type":"Person","_key":"8369"} +{"label":"RZA","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/712\/4cd9df9b7b9aa11b22000712\/rza-profile.jpg","version":69,"id":"150","lastModified":"1300090317000","name":"RZA","type":"Person","_key":"8370"} +{"label":"William Rice","version":14,"id":"13616","lastModified":"1300092235000","name":"William Rice","type":"Person","_key":"8371"} +{"label":"Taylor Mead","version":17,"id":"13617","lastModified":"1300092489000","name":"Taylor Mead","type":"Person","_key":"8372"} +{"label":"Crash","description":"Crash is the controversial thriller from David Cronenberg about the interwoven relationship of 12 very different Los Angeles residents after a deadly car accident. Writer James Ballard starts a journey into the abyss of human obsession, lust, and ruin.","id":"884","runtime":100,"imdbId":"tt0115964","version":185,"lastModified":"1300257150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f22\/4bc90dee017a3c57fe004f22\/crash-mid.jpg","studio":"Recorded Pictures Company","genre":"Drama","title":"Crash","releaseDate":832291200000,"language":"en","type":"Movie","_key":"8373"} +{"label":"James Spader","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/258\/4ca4b00f7b9aa16eda000258\/james-spader-profile.jpg","version":74,"id":"13548","lastModified":"1300046365000","name":"James Spader","type":"Person","_key":"8374"} +{"label":"Elias Koteas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/119\/4c197c7c5e73d67562000119\/elias-koteas-profile.jpg","version":121,"id":"13550","lastModified":"1300090273000","name":"Elias Koteas","type":"Person","_key":"8375"} +{"label":"Cheryl Swarts","version":13,"id":"13552","lastModified":"1300091390000","name":"Cheryl Swarts","type":"Person","_key":"8376"} +{"label":"The Docks of New York","description":"The Docks of New York was one of the last successful silent films before cinemas turned towards sound. The film received excellent reviews and is today known as a classic conversation from the silent film era.","id":"885","runtime":76,"imdbId":"tt0018839","version":58,"lastModified":"1299911363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f35\/4bc90df0017a3c57fe004f35\/the-docks-of-new-york-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Docks of New York","releaseDate":-1303084800000,"language":"en","type":"Movie","_key":"8377"} +{"label":"George Bancroft","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/253\/4c6042327b9aa172da000253\/george-bancroft-profile.jpg","version":25,"id":"13555","lastModified":"1300091458000","name":"George Bancroft","type":"Person","_key":"8378"} +{"label":"Betty Compson","version":18,"id":"13556","lastModified":"1300091693000","name":"Betty Compson","type":"Person","_key":"8379"} +{"label":"Clyde Cook","version":19,"birthday":"-2462835600000","id":"13557","birthplace":"Port Macquarie, Australia","lastModified":"1300091657000","name":"Clyde Cook","type":"Person","_key":"8380"} +{"label":"Mitchell Lewis","version":16,"id":"13558","lastModified":"1300092547000","name":"Mitchell Lewis","type":"Person","_key":"8381"} +{"label":"Guy Oliver","version":14,"id":"13560","lastModified":"1300092645000","name":"Guy Oliver","type":"Person","_key":"8382"} +{"label":"May Foster","version":15,"id":"13561","lastModified":"1300092608000","name":"May Foster","type":"Person","_key":"8383"} +{"label":"Lillian Worth","version":14,"id":"13562","lastModified":"1300092635000","name":"Lillian Worth","type":"Person","_key":"8384"} +{"label":"The Cincinnati Kid","description":"Two men play poker against each other; the winner is who ever is loyal to themselves. A masterfully staged film from director Norman Jewison.","id":"886","runtime":102,"imdbId":"tt0059037","trailer":"http:\/\/www.youtube.com\/watch?v=k7oG12PCZwA","version":173,"lastModified":"1300180437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f46\/4bc90df3017a3c57fe004f46\/the-cincinnati-kid-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Cincinnati Kid","releaseDate":-132969600000,"language":"en","type":"Movie","_key":"8385"} +{"label":"Norman Jewison","version":66,"id":"13563","lastModified":"1300090583000","name":"Norman Jewison","type":"Person","_key":"8386"} +{"label":"Steve McQueen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4bde82c4017a3c35b900015b\/steve-mcqueen-profile.jpg","biography":"He was the ultra-cool male film star of the 1960s, and rose from a troubled youth spent in reform schools to being the world's most popular actor. Over 25 years after his untimely death from mesothelioma in 1980, Steve McQueen is still considered hip and cool, and he endures as an icon of popular culture.","version":73,"birthday":"-1255222800000","id":"13565","birthplace":"Beech Grove, IN","lastModified":"1300266859000","name":"Steve McQueen","type":"Person","_key":"8387"} +{"label":"Edward G. Robinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/323\/4bd1f451017a3c63e8000323\/edward-g-robinson-profile.jpg","version":74,"id":"13566","lastModified":"1300090292000","name":"Edward G. Robinson","type":"Person","_key":"8388"} +{"label":"Joan Blondell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b8\/4c5adbf27b9aa151f30005b8\/joan-blondell-profile.jpg","biography":"With blonde hair, big blue eyes and a big smile, Joan was usually cast as the wisecracking working girl who was the lead's best friend. Born into vaudeville to a comic named Eddie, Joan was on the stage when she was three years old. For years, she toured the circuit with her parents and joined a stock company when she was 17. She made her New York debut with the Ziegfeld Follies and appeared in several Broadway productions. She was starring with James Cagney on Broadway in \"Penny Arcade\" (1929) ","version":42,"id":"13568","lastModified":"1300090618000","name":"Joan Blondell","type":"Person","_key":"8389"} +{"label":"The Best Years of Our Lives","description":"The Best Years of Our Lives is a classic film from director Williams Wyler about three war veterans. The film earned seven Oscars in 1946.","id":"887","runtime":172,"imdbId":"tt0036868","trailer":"http:\/\/www.youtube.com\/watch?v=h3EsNKlB7os","version":442,"lastModified":"1300180323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5d\/4bc90df4017a3c57fe004f5d\/the-best-years-of-our-lives-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"The Best Years of Our Lives","releaseDate":-729388800000,"language":"en","type":"Movie","_key":"8390"} +{"label":"Fredric March","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4bd5a3a4017a3c2e740001cb\/fredric-march-profile.jpg","version":38,"birthday":"-2282778000000","id":"13576","birthplace":"Racine, Wisconsin, USA","lastModified":"1300090997000","name":"Fredric March","type":"Person","_key":"8391"} +{"label":"Myrna Loy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/112\/4bd5a3ed017a3c2e70000112\/myrna-loy-profile.jpg","version":55,"id":"13577","lastModified":"1300090462000","name":"Myrna Loy","type":"Person","_key":"8392"} +{"label":"Dana Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/129\/4bcc6e54017a3c0f30000129\/dana-andrews-profile.jpg","version":55,"id":"13578","lastModified":"1300090266000","name":"Dana Andrews","type":"Person","_key":"8393"} +{"label":"Teresa Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4bd5cd0b017a3c657d000059\/teresa-wright-profile.jpg","version":32,"id":"7663","lastModified":"1300090465000","name":"Teresa Wright","type":"Person","_key":"8394"} +{"label":"Virginia Mayo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4bd5ccc6017a3c657d000054\/virginia-mayo-profile.jpg","version":40,"id":"13579","lastModified":"1300090525000","name":"Virginia Mayo","type":"Person","_key":"8395"} +{"label":"Hoagy Carmichael","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4c2ceca67b9aa15e980001df\/hoagy-carmichael-profile.jpg","version":27,"id":"11439","lastModified":"1300091468000","name":"Hoagy Carmichael","type":"Person","_key":"8396"} +{"label":"Harold Russell","version":13,"id":"13580","lastModified":"1300092385000","name":"Harold Russell","type":"Person","_key":"8397"} +{"label":"The Flintstones","description":"Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.","id":"888","runtime":91,"imdbId":"tt0109813","trailer":"http:\/\/www.youtube.com\/watch?v=2729","version":520,"lastModified":"1300256381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffe\/4c00db78017a3c7037000ffe\/the-flintstones-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"The Flintstones","releaseDate":769996800000,"language":"en","tagline":"Yabba-Dabba-Doo!","type":"Movie","_key":"8398"} +{"label":"Brian Levant","version":40,"id":"13581","lastModified":"1300090688000","name":"Brian Levant","type":"Person","_key":"8399"} +{"label":"Richard Moll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/482\/4ca0b0637b9aa1578f000482\/richard-moll-profile.jpg","version":31,"id":"13591","lastModified":"1300091953000","name":"Richard Moll","type":"Person","_key":"8400"} +{"label":"Irwin Keyes","version":25,"id":"13592","lastModified":"1300091459000","name":"Irwin Keyes","type":"Person","_key":"8401"} +{"label":"Jonathan Winters","version":26,"id":"13593","lastModified":"1300091337000","name":"Jonathan Winters","type":"Person","_key":"8402"} +{"label":"The Flintstones in Viva Rock Vegas","description":"The Flintstones are at it again. The Flintstones and the Rubbles head for Rock Vegas with Fred hoping to court the lovely Wilma. Nothing will stand in the way of love, except for the conniving Chip Rockefeller who is the playboy born in Baysville but who has made it in the cutthroat town of Rock Vegas. Will Fred win Wilma's love?","id":"889","runtime":90,"imdbId":"tt0158622","trailer":"http:\/\/www.youtube.com\/watch?v=9AyoYLD6_PE","homepage":"http:\/\/www.vivarockvegas.com\/","version":194,"lastModified":"1300256161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62f\/4d388dfa7b9aa17b3700f62f\/the-flintstones-in-viva-rock-vegas-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"The Flintstones in Viva Rock Vegas","releaseDate":956016000000,"language":"en","tagline":"Get ready to rock!","type":"Movie","_key":"8403"} +{"label":"Mark Addy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/168\/4d24eaad5e73d626a8000168\/mark-addy-profile.jpg","version":48,"id":"13633","lastModified":"1300090454000","name":"Mark Addy","type":"Person","_key":"8404"} +{"label":"Kristen Johnston","version":26,"id":"13635","lastModified":"1300091144000","name":"Kristen Johnston","type":"Person","_key":"8405"} +{"label":"Jane Krakowski","version":51,"id":"13636","lastModified":"1300090348000","name":"Jane Krakowski","type":"Person","_key":"8406"} +{"label":"Joan Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce2\/4c0d0825017a3c33d9000ce2\/joan-collins-profile.jpg","version":36,"id":"13637","lastModified":"1300090518000","name":"Joan Collins","type":"Person","_key":"8407"} +{"label":"Thomas Gibson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fc\/4d32b26b5e73d633490017fc\/thomas-gibson-profile.jpg","version":35,"id":"13638","lastModified":"1300090484000","name":"Thomas Gibson","type":"Person","_key":"8408"} +{"label":"Harvey Korman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a8\/4d019e9a7b9aa11bc40004a8\/harvey-korman-profile.jpg","biography":"<b>Harvey Herschel Korman<\/b> (February 15, 1927 \u2013 May 29, 2008) was an <a href=\"http:\/\/en.wikipedia.org\/wiki\/United_States\" title=\"United States\">American<\/a> <a href=\"http:\/\/en.wikipedia.org\/wiki\/Comedy\" title=\"Comedy\">comedic<\/a> <a href=\"http:\/\/en.wikipedia.org\/wiki\/Actor\" title=\"Actor\">actor<\/a> who performed in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Television\" title=\"Television\">television<\/a> and <a href=\"http:\/\/en.wikipedia.org\/wiki\/Film\" title=\"Film\">movie<\/a> productions beginning","version":41,"id":"13640","lastModified":"1300090614000","name":"Harvey Korman","type":"Person","_key":"8409"} +{"label":"Alex Meneses","version":17,"id":"13642","lastModified":"1300091389000","name":"Alex Meneses","type":"Person","_key":"8410"} +{"label":"John Taylor","version":21,"id":"13643","lastModified":"1300090887000","name":"John Taylor","type":"Person","_key":"8411"} +{"label":"Tony Longo","version":22,"id":"13644","lastModified":"1300091877000","name":"Tony Longo","type":"Person","_key":"8412"} +{"label":"Danny Woodburn","version":20,"id":"13645","lastModified":"1300091151000","name":"Danny Woodburn","type":"Person","_key":"8413"} +{"label":"Schlafes Bruder","description":"Schlafes Bruder tells the story a few exceptionally talented individuals who grew up in a remote mountain town in the Alps. The film, based on an internationally successful novel by Robert Schneider of the same name, depicts the slow withering of their unique skills.","id":"890","runtime":127,"imdbId":"tt0114354","version":88,"lastModified":"1299533408000","studio":"B.A. Filmproduktion","genre":"Drama","title":"Schlafes Bruder","releaseDate":810518400000,"language":"en","type":"Movie","_key":"8414"} +{"label":"Joseph Vilsmaier","version":38,"id":"14614","lastModified":"1300090544000","name":"Joseph Vilsmaier","type":"Person","_key":"8415"} +{"label":"Andr\u00e9 Eisermann","version":18,"id":"14631","lastModified":"1300091441000","name":"Andr\u00e9 Eisermann","type":"Person","_key":"8416"} +{"label":"Dana V\u00e1vrov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4da\/4cb225a05e73d65b830004da\/dana-vavrova-profile.jpg","version":20,"id":"14632","lastModified":"1300090564000","name":"Dana V\u00e1vrov\u00e1","type":"Person","_key":"8417"} +{"label":"Ben Becker","version":21,"id":"14633","lastModified":"1299493961000","name":"Ben Becker","type":"Person","_key":"8418"} +{"label":"J\u00fcrgen Schornagel","version":26,"id":"14634","lastModified":"1300130999000","name":"J\u00fcrgen Schornagel","type":"Person","_key":"8419"} +{"label":"Paulus Manker","version":15,"id":"14635","lastModified":"1300091674000","name":"Paulus Manker","type":"Person","_key":"8420"} +{"label":"Michaela Rosen","version":15,"id":"14636","lastModified":"1300091680000","name":"Michaela Rosen","type":"Person","_key":"8421"} +{"label":"Angelika Bartsch","version":13,"id":"14638","lastModified":"1300091421000","name":"Angelika Bartsch","type":"Person","_key":"8422"} +{"label":"All the President's Men","description":"All the President\u2019s Men is a political thriller from director Alan J. Pakula based on the Watergate scandal and starring Robert Redford and Dustin Hoffman.","id":"891","runtime":138,"imdbId":"tt0074119","version":637,"lastModified":"1300180125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66f\/4d060a165e73d621a200366f\/all-the-president-s-men-mid.jpg","studio":"Wildwood Enterprises","genre":"Drama","title":"All the President's Men","releaseDate":197424000000,"language":"en","type":"Movie","_key":"8423"} +{"label":"Meredith Baxter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4ca625c55e73d643ee00001d\/meredith-baxter-profile.jpg","version":34,"id":"13725","lastModified":"1300090737000","name":"Meredith Baxter","type":"Person","_key":"8424"} +{"label":"Ned Beatty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f5d\/4c74176d7b9aa13ab6000f5d\/ned-beatty-profile.jpg","version":120,"id":"13726","lastModified":"1300132834000","name":"Ned Beatty","type":"Person","_key":"8425"} +{"label":"Penny Fuller","version":17,"id":"13727","lastModified":"1300091918000","name":"Penny Fuller","type":"Person","_key":"8426"} +{"label":"John McMartin","version":19,"id":"13728","lastModified":"1300091203000","name":"John McMartin","type":"Person","_key":"8427"} +{"label":"Robert Walden","version":17,"id":"13729","lastModified":"1300091784000","name":"Robert Walden","type":"Person","_key":"8428"} +{"label":"Henry Calvert","version":16,"id":"13730","lastModified":"1300091783000","name":"Henry Calvert","type":"Person","_key":"8429"} +{"label":"Nicolas Coster","version":21,"id":"13731","lastModified":"1300091125000","name":"Nicolas Coster","type":"Person","_key":"8430"} +{"label":"Richard Herd","version":31,"id":"13732","lastModified":"1300091431000","name":"Richard Herd","type":"Person","_key":"8431"} +{"label":"Frank Latimore","version":24,"id":"13733","lastModified":"1300273665000","name":"Frank Latimore","type":"Person","_key":"8432"} +{"label":"Delicatessen","description":"This bizarre surrealistic black comedy takes place in a small fictitious post-apocalyptic town where food is scares and butcher Louison has the macabre business of using human flesh to feed his costumers. Yet when his daughter falls in love with his next slaughter victim things turn into chaos. ","id":"892","runtime":99,"imdbId":"tt0101700","version":236,"lastModified":"1300255625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4bc90dff017a3c57fe004f93\/delicatessen-mid.jpg","studio":"Constellation Films","genre":"Comedy","title":"Delicatessen","releaseDate":671846400000,"language":"en","type":"Movie","_key":"8433"} +{"label":"Marc Caro","version":38,"id":"13680","lastModified":"1300121023000","name":"Marc Caro","type":"Person","_key":"8434"} +{"label":"Marie-Laure Dougnac","version":15,"id":"13686","lastModified":"1300121023000","name":"Marie-Laure Dougnac","type":"Person","_key":"8435"} +{"label":"Jean-Claude Dreyfus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d5\/4c5ad1037b9aa151f50005d5\/jean-claude-dreyfus-profile.jpg","version":40,"birthday":"-753238800000","id":"13687","birthplace":"Paris, France","lastModified":"1300121023000","name":"Jean-Claude Dreyfus","type":"Person","_key":"8436"} +{"label":"Karin Viard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/60d\/4d136e6e5e73d6083e00160d\/karin-viard-profile.jpg","version":56,"id":"13688","lastModified":"1300121023000","name":"Karin Viard","type":"Person","_key":"8437"} +{"label":"Ticky Holgado","version":47,"id":"13689","lastModified":"1300225733000","name":"Ticky Holgado","type":"Person","_key":"8438"} +{"label":"Pascal Benezech","version":15,"id":"13690","lastModified":"1300121023000","name":"Pascal Benezech","type":"Person","_key":"8439"} +{"label":"Edith Ker","version":16,"id":"13691","lastModified":"1300121023000","name":"Edith Ker","type":"Person","_key":"8440"} +{"label":"Jacques Mathou","version":23,"id":"13692","lastModified":"1300121023000","name":"Jacques Mathou","type":"Person","_key":"8441"} +{"label":"Chick Ortega","version":17,"id":"13693","lastModified":"1300121023000","name":"Chick Ortega","type":"Person","_key":"8442"} +{"label":"Jean-Fran\u00e7ois Perrier","version":19,"id":"13694","lastModified":"1300121023000","name":"Jean-Fran\u00e7ois Perrier","type":"Person","_key":"8443"} +{"label":"Silvie Laguna","version":16,"id":"13695","lastModified":"1300121023000","name":"Silvie Laguna","type":"Person","_key":"8444"} +{"label":"Howard Vernon","version":51,"id":"13696","lastModified":"1300121023000","name":"Howard Vernon","type":"Person","_key":"8445"} +{"label":"Dominique Zardi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/083\/4c4fefe57b9aa136cd000083\/dominique-zardi-profile.jpg","version":41,"birthday":"-1257123600000","id":"13697","birthplace":"Paris, France","lastModified":"1300121023000","name":"Dominique Zardi","type":"Person","_key":"8446"} +{"label":"Die Polizistin","description":"Die Polizistin is a documentary by Andreas Dresen about the life of a young police woman who is faced with the difficulties between her responsibilities at work and her personal responsibilities.","id":"893","runtime":97,"imdbId":"tt0246859","version":72,"lastModified":"1300180051000","studio":"Westdeutsche Universum-Film GmbH","genre":"Documentary","title":"Die Polizistin","releaseDate":957916800000,"language":"en","type":"Movie","_key":"8447"} +{"label":"Yevgeni Sitokhin","version":16,"id":"13737","lastModified":"1300091693000","name":"Yevgeni Sitokhin","type":"Person","_key":"8448"} +{"label":"Klaus Manchen","version":15,"id":"13738","lastModified":"1300092525000","name":"Klaus Manchen","type":"Person","_key":"8449"} +{"label":"Heidemarie Schneider","version":16,"id":"13739","lastModified":"1300092525000","name":"Heidemarie Schneider","type":"Person","_key":"8450"} +{"label":"Ursula Werner","version":15,"id":"13740","lastModified":"1300091868000","name":"Ursula Werner","type":"Person","_key":"8451"} +{"label":"Peter Pauli","version":14,"id":"13741","lastModified":"1300092616000","name":"Peter Pauli","type":"Person","_key":"8452"} +{"label":"Eberhard Bremer","version":14,"id":"13743","lastModified":"1300092615000","name":"Eberhard Bremer","type":"Person","_key":"8453"} +{"label":"Eberhard Kirchberg","version":15,"id":"13746","lastModified":"1300091249000","name":"Eberhard Kirchberg","type":"Person","_key":"8454"} +{"label":"Willenbrock","description":"Second-hand car sales man Willenbrock has everything that he could ever wish for. He is married, has two lovers, a cottage in the German city Gr\u00fcnen, and a BMW. Yet one day while at his cottage he gets mugged and his life is drastically changed. Little by little the world he once felt safe in falls apart around him.","id":"894","runtime":105,"imdbId":"tt0396273","homepage":"http:\/\/www.willenbrock-derfilm.de\/","version":57,"lastModified":"1299531946000","studio":"UFA Filmproduktion GmbH","genre":"Documentary","title":"Willenbrock","releaseDate":1111017600000,"language":"en","type":"Movie","_key":"8455"} +{"label":"Anne Ratte-Polle","version":14,"id":"13804","lastModified":"1300091277000","name":"Anne Ratte-Polle","type":"Person","_key":"8456"} +{"label":"Dagmar Manzel","version":21,"id":"13805","lastModified":"1300090586000","name":"Dagmar Manzel","type":"Person","_key":"8457"} +{"label":"Christian Grashof","version":16,"id":"13806","lastModified":"1300091487000","name":"Christian Grashof","type":"Person","_key":"8458"} +{"label":"Andrzej Szopa","version":14,"id":"13808","lastModified":"1300091885000","name":"Andrzej Szopa","type":"Person","_key":"8459"} +{"label":"Tilo Pr\u00fcckner","version":24,"id":"13812","lastModified":"1299492814000","name":"Tilo Pr\u00fcckner","type":"Person","_key":"8460"} +{"label":"Wladimir Tarasjanz","version":17,"id":"17060","lastModified":"1299498895000","name":"Wladimir Tarasjanz","type":"Person","_key":"8461"} +{"label":"Margit Bendokat","version":16,"id":"13815","lastModified":"1300091867000","name":"Margit Bendokat","type":"Person","_key":"8462"} +{"label":"Michael Gerber","version":14,"id":"13817","lastModified":"1300091918000","name":"Michael Gerber","type":"Person","_key":"8463"} +{"label":"Andrei Rublev","description":"After four years of production the film by Russian director Andrei Tarkovsky would be banned soon after it\u2019s release leading it to be shown only at foreign film festivals. The film is about a Russian icon painter Andrej Rubljow and the relationship of artists and their unique power.","id":"895","runtime":205,"imdbId":"tt0060107","version":126,"lastModified":"1299911042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f2\/4bf54b9c017a3c320d0008f2\/895-mid.jpg","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Drama","title":"Andrei Rublev","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"8464"} +{"label":"Ivan Lapikov","version":15,"id":"13706","lastModified":"1300091931000","name":"Ivan Lapikov","type":"Person","_key":"8465"} +{"label":"Nikolai Sergeyev","version":15,"id":"13707","lastModified":"1300092658000","name":"Nikolai Sergeyev","type":"Person","_key":"8466"} +{"label":"Irma Raush","version":18,"id":"13708","lastModified":"1300092657000","name":"Irma Raush","type":"Person","_key":"8467"} +{"label":"Nikolay Burlyaev","version":18,"id":"13709","lastModified":"1300092542000","name":"Nikolay Burlyaev","type":"Person","_key":"8468"} +{"label":"Yuriy Nazarov","version":17,"id":"13710","lastModified":"1299600671000","name":"Yuriy Nazarov","type":"Person","_key":"8469"} +{"label":"Nikolai Grabbe","version":15,"id":"13712","lastModified":"1300092525000","name":"Nikolai Grabbe","type":"Person","_key":"8470"} +{"label":"Mikhail Kononov","version":15,"id":"13713","lastModified":"1300092525000","name":"Mikhail Kononov","type":"Person","_key":"8471"} +{"label":"Bolot Bejshenaliyev","version":16,"id":"13714","lastModified":"1300091838000","name":"Bolot Bejshenaliyev","type":"Person","_key":"8472"} +{"label":"Rolan Bykov","version":30,"id":"86822","lastModified":"1300092263000","name":"Rolan Bykov","type":"Person","_key":"8473"} +{"label":"Yuri Nikulin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d5\/4d5455187b9aa13aaf0138d5\/yuri-nikulin-profile.jpg","version":31,"id":"86680","lastModified":"1300092987000","name":"Yuri Nikulin","type":"Person","_key":"8474"} +{"label":"The World of Apu","description":"Apu is a jobless ex-student dreaming vaguely of a future as a writer. An old college friend talks him into a visit up-country to a village wedding. This changes his life, for when the bridegroom turns out to be mad, Apu's friend asks him to become the husband! After initial revulsion at the idea, Apu agrees. Apu takes his exquisite bridge, Aparna, back to Calcutta. But Aparna dies in childbirth, Apu leaves Calcutta, crazy with grief, and his son Kajal is left abandoned with his wife's parents. O","id":"896","runtime":117,"imdbId":"tt0052572","version":60,"lastModified":"1299531947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b4\/4c136f737b9aa102fb0000b4\/apur-sansar-mid.jpg","genre":"Drama","title":"The World of Apu","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"8475"} +{"label":"Soumitra Chatterjee","version":17,"id":"13752","lastModified":"1300091870000","name":"Soumitra Chatterjee","type":"Person","_key":"8476"} +{"label":"Sharmila Tagore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4d237ddb7b9aa173730041ae\/sharmila-tagore-profile.jpg","version":24,"id":"13753","lastModified":"1300091098000","name":"Sharmila Tagore","type":"Person","_key":"8477"} +{"label":"Alok Chakravarty","version":14,"id":"13755","lastModified":"1300091870000","name":"Alok Chakravarty","type":"Person","_key":"8478"} +{"label":"Swapan Mukherjee","version":14,"id":"13756","lastModified":"1300091658000","name":"Swapan Mukherjee","type":"Person","_key":"8479"} +{"label":"Dhiresh Majumdar","version":14,"id":"13757","lastModified":"1300092152000","name":"Dhiresh Majumdar","type":"Person","_key":"8480"} +{"label":"Sefalika Devi","version":14,"id":"13759","lastModified":"1300091869000","name":"Sefalika Devi","type":"Person","_key":"8481"} +{"label":"Dhiren Ghosh","version":14,"id":"13760","lastModified":"1300092152000","name":"Dhiren Ghosh","type":"Person","_key":"8482"} +{"label":"The Unvanquished","description":"The Unvanquished is the second part of the Bangladesh Apu film series about a boy named Apu who gets a scholarship to study at a College in Calcutta. His mother is alone and torn between wanting him to be successful and not wanting him to leave her alone.","id":"897","runtime":110,"imdbId":"tt0048956","version":69,"lastModified":"1299531870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17b\/4c250d227b9aa1446c00017b\/aparajito-mid.jpg","genre":"Drama","title":"The Unvanquished","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"8483"} +{"label":"Kanu Bannerjee","version":15,"id":"13762","lastModified":"1300091872000","name":"Kanu Bannerjee","type":"Person","_key":"8484"} +{"label":"Karuna Bannerjee","version":15,"id":"13763","lastModified":"1300091683000","name":"Karuna Bannerjee","type":"Person","_key":"8485"} +{"label":"Smaran Ghosal","version":14,"id":"13765","lastModified":"1300091460000","name":"Smaran Ghosal","type":"Person","_key":"8486"} +{"label":"Santi Gupta","version":14,"id":"13766","lastModified":"1300091872000","name":"Santi Gupta","type":"Person","_key":"8487"} +{"label":"Ramani Sengupta","version":15,"id":"13767","lastModified":"1300092531000","name":"Ramani Sengupta","type":"Person","_key":"8488"} +{"label":"Ranibala","version":14,"id":"13768","lastModified":"1300092157000","name":"Ranibala","type":"Person","_key":"8489"} +{"label":"Sudipta Roy","version":14,"id":"13769","lastModified":"1300092531000","name":"Sudipta Roy","type":"Person","_key":"8490"} +{"label":"Ajay Mitra","version":14,"id":"13770","lastModified":"1300092157000","name":"Ajay Mitra","type":"Person","_key":"8491"} +{"label":"Charuprakash Ghosh","version":14,"id":"13771","lastModified":"1300092531000","name":"Charuprakash Ghosh","type":"Person","_key":"8492"} +{"label":"Subodh Ganguli","version":14,"id":"13772","lastModified":"1300092157000","name":"Subodh Ganguli","type":"Person","_key":"8493"} +{"label":"Hemanta Chatterjee","version":15,"id":"13773","lastModified":"1300092157000","name":"Hemanta Chatterjee","type":"Person","_key":"8494"} +{"label":"Birdman of Alcatraz","description":"Birdman of Alcatraz is a film from John Frankenheimer inspired by the life of murderer Robert Stroud who while behind prison walls became internationally famous for his new found interest in birds.","id":"898","runtime":143,"imdbId":"tt0055798","version":243,"lastModified":"1300249627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/faf\/4bc90e03017a3c57fe004faf\/birdman-of-alcatraz-mid.jpg","studio":"United Artists","genre":"Drama","title":"Birdman of Alcatraz","releaseDate":-236649600000,"language":"en","type":"Movie","_key":"8495"} +{"label":"John Frankenheimer","version":51,"id":"13776","lastModified":"1300090454000","name":"John Frankenheimer","type":"Person","_key":"8496"} +{"label":"Betty Field","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db2\/4c0e4b6e017a3c29a6000db2\/betty-field-profile.jpg","version":28,"id":"13785","lastModified":"1300091280000","name":"Betty Field","type":"Person","_key":"8497"} +{"label":"Whit Bissell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/208\/4c7d59f97b9aa10976000208\/whit-bissell-profile.jpg","version":38,"id":"13786","lastModified":"1300090533000","name":"Whit Bissell","type":"Person","_key":"8498"} +{"label":"Crahan Denton","version":19,"id":"13787","lastModified":"1300091907000","name":"Crahan Denton","type":"Person","_key":"8499"} +{"label":"Broken Blossoms or The Yellow Man and the Girl","description":"Broken Blossoms is an American silent film from director D. W. Griffith. This melodrama tells the love story of an abused English woman and a Chinese Buddhist in a time when London was a brutal and harsh place to live. ","id":"899","runtime":90,"imdbId":"tt0009968","version":61,"lastModified":"1299531870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb4\/4bc90e03017a3c57fe004fb4\/broken-blossoms-or-the-yellow-man-and-the-girl-mid.jpg","studio":"United Artists","genre":"Drama","title":"Broken Blossoms or The Yellow Man and the Girl","releaseDate":-1598054400000,"language":"en","type":"Movie","_key":"8500"} +{"label":"Richard Barthelmess","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/383\/4c614ca37b9aa172dd000383\/richard-barthelmess-profile.jpg","version":19,"id":"13789","lastModified":"1300091047000","name":"Richard Barthelmess","type":"Person","_key":"8501"} +{"label":"Arthur Howard","version":17,"id":"13790","lastModified":"1300091626000","name":"Arthur Howard","type":"Person","_key":"8502"} +{"label":"Edward Peil Sr.","version":18,"birthday":"-2743981200000","id":"13791","birthplace":"Racine, Wisconsin, USA","lastModified":"1300091433000","name":"Edward Peil Sr.","type":"Person","_key":"8503"} +{"label":"Norman Selby","version":15,"id":"13792","lastModified":"1300091783000","name":"Norman Selby","type":"Person","_key":"8504"} +{"label":"Bringing Up Baby","description":"David Huxley is waiting to get a bone he needs for his museum collection. Through a series of strange circumstances, he meets Susan Vance, and the duo have a series of misadventures which include a leopard called Baby.","id":"900","runtime":102,"imdbId":"tt0029947","version":461,"lastModified":"1300249121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc5\/4bc90e04017a3c57fe004fc5\/bringing-up-baby-mid.jpg","studio":"RKO Radio Pictures","genre":"Comedy","title":"Bringing Up Baby","releaseDate":-1005696000000,"language":"en","type":"Movie","_key":"8505"} +{"label":"May Robson","version":20,"id":"13816","lastModified":"1300091142000","name":"May Robson","type":"Person","_key":"8506"} +{"label":"Virginia Walker","version":14,"id":"13818","lastModified":"1300091389000","name":"Virginia Walker","type":"Person","_key":"8507"} +{"label":"Walter Catlett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/45a\/4cb35b637b9aa12cf700045a\/walter-catlett-profile.jpg","version":34,"id":"13819","lastModified":"1300091012000","name":"Walter Catlett","type":"Person","_key":"8508"} +{"label":"Barry Fitzgerald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/985\/4be41e57017a3c35bb000985\/barry-fitzgerald-profile.jpg","version":34,"id":"13820","lastModified":"1300091017000","name":"Barry Fitzgerald","type":"Person","_key":"8509"} +{"label":"Fritz Feld","version":19,"id":"13821","lastModified":"1300091940000","name":"Fritz Feld","type":"Person","_key":"8510"} +{"label":"George Irving","version":25,"id":"13823","lastModified":"1300091628000","name":"George Irving","type":"Person","_key":"8511"} +{"label":"Tala Birell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4d012a777b9aa11bc3000066\/tala-birell-profile.jpg","version":21,"id":"13824","lastModified":"1300090485000","name":"Tala Birell","type":"Person","_key":"8512"} +{"label":"John Kelly","version":16,"id":"13825","lastModified":"1300092650000","name":"John Kelly","type":"Person","_key":"8513"} +{"label":"City Lights","description":"City Lights is the first silent film that Charlie Chaplin directed after he established himself with sound accompanied films. The film is about a penniless man who falls in love with a flower girl. The film was a great success and today is deemed a cult classic.","id":"901","runtime":87,"imdbId":"tt0021749","trailer":"http:\/\/www.youtube.com\/watch?v=899","version":166,"lastModified":"1301902374000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdb\/4bc90e09017a3c57fe004fdb\/city-lights-mid.jpg","studio":"United Artists","genre":"Comedy","title":"City Lights","releaseDate":-1228262400000,"language":"en","type":"Movie","_key":"8515"} +{"label":"Charlie Chaplin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/132\/4c868dfe7b9aa1545f000132\/charlie-chaplin-profile.jpg","version":396,"birthday":"-2546989200000","id":"13848","birthplace":"Walworth, London, England, UK","lastModified":"1301904071000","name":"Charlie Chaplin","type":"Person","_key":"8516"} +{"label":"Virginia Cherrill","version":19,"id":"13852","lastModified":"1301901460000","name":"Virginia Cherrill","type":"Person","_key":"8517"} +{"label":"Florence Lee","version":19,"id":"13853","lastModified":"1301901665000","name":"Florence Lee","type":"Person","_key":"8518"} +{"label":"Harry Myers","version":19,"id":"13854","lastModified":"1301901407000","name":"Harry Myers","type":"Person","_key":"8519"} +{"label":"Al Ernest Garcia","version":34,"id":"13855","lastModified":"1301901578000","name":"Al Ernest Garcia","type":"Person","_key":"8520"} +{"label":"Hank Mann","version":27,"id":"13856","lastModified":"1301901777000","name":"Hank Mann","type":"Person","_key":"8521"} +{"label":"The City of the Lost Children","description":"The City of the Lost Children is a fantasy science fiction film from Jean-Pierre Jeunet about a scientist who kidnaps children and steals their dreams.","id":"902","runtime":108,"imdbId":"tt0112682","version":335,"lastModified":"1301930240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4bc90e0e017a3c57fe004ff9\/la-cite-des-enfants-perdus-mid.jpg","studio":"Constellation Productions","genre":"Fantasy","title":"The City of the Lost Children","releaseDate":800668800000,"language":"en","type":"Movie","_key":"8522"} +{"label":"Judith Vittet","version":20,"id":"13842","lastModified":"1301901239000","name":"Judith Vittet","type":"Person","_key":"8523"} +{"label":"Daniel Emilfork","version":27,"id":"13843","lastModified":"1301901313000","name":"Daniel Emilfork","type":"Person","_key":"8524"} +{"label":"Genevi\u00e8ve Brunet","version":21,"id":"13845","lastModified":"1301901479000","name":"Genevi\u00e8ve Brunet","type":"Person","_key":"8525"} +{"label":"Odile Mallet","version":20,"id":"13846","lastModified":"1301901627000","name":"Odile Mallet","type":"Person","_key":"8526"} +{"label":"Cool Hand Luke","description":"Cool Hand Luke is a Drama from director Stuart Rosenberg starring Paul Newman. The film tells the story of a nonconformist rebel named Luke who while in jail tries to break out.","id":"903","runtime":126,"imdbId":"tt0061512","trailer":"http:\/\/www.youtube.com\/watch?v=l3CPz21NzUc","version":650,"lastModified":"1301902844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4bc90e10017a3c57fe00500e\/cool-hand-luke-mid.jpg","studio":"Jalem Productions","genre":"Drama","title":"Cool Hand Luke","releaseDate":-68428800000,"language":"en","tagline":"The man...and the motion picture that simply do not conform","type":"Movie","_key":"8527"} +{"label":"Stuart Rosenberg","version":31,"id":"13859","lastModified":"1301901449000","name":"Stuart Rosenberg","type":"Person","_key":"8528"} +{"label":"George Kennedy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4c3f27ab5e73d606d50000a4\/george-kennedy-profile.jpg","version":105,"id":"12950","lastModified":"1301901293000","name":"George Kennedy","type":"Person","_key":"8529"} +{"label":"Morgan Woodward","version":23,"id":"13869","lastModified":"1301901493000","name":"Morgan Woodward","type":"Person","_key":"8530"} +{"label":"Lou Antonio","version":22,"id":"13871","lastModified":"1301901757000","name":"Lou Antonio","type":"Person","_key":"8531"} +{"label":"Robert Drivas","version":21,"id":"13872","lastModified":"1301901442000","name":"Robert Drivas","type":"Person","_key":"8532"} +{"label":"Marc Cavell","version":20,"id":"13874","lastModified":"1301901515000","name":"Marc Cavell","type":"Person","_key":"8533"} +{"label":"Robert Donner","version":27,"id":"13875","lastModified":"1301901923000","name":"Robert Donner","type":"Person","_key":"8534"} +{"label":"J.D. Cannon","version":22,"id":"19106","lastModified":"1301903109000","name":"J.D. Cannon","type":"Person","_key":"8535"} +{"label":"Der Stolz der Firma","description":"Der Stolz der Firma, meaning The Pride of the Business, is a classic German silent film from 1914. The film tells the story of a shrewd apprentice and is filmed in the comical style of director Lubitsch. This is one of the few Lubitsch films from World War I that wasn\u2019t lost.","id":"904","runtime":0,"imdbId":"tt0006102","version":40,"lastModified":"1301905723000","studio":"Projektions-AG Union","genre":"Comedy","title":"Der Stolz der Firma","releaseDate":-1756944000000,"language":"en","type":"Movie","_key":"8536"} +{"label":"Carl Wilhelm","version":17,"id":"13876","lastModified":"1301901587000","name":"Carl Wilhelm","type":"Person","_key":"8537"} +{"label":"Martha Kriwitz","version":17,"id":"13881","lastModified":"1301901589000","name":"Martha Kriwitz","type":"Person","_key":"8538"} +{"label":"Albert Paulig","version":18,"id":"13882","lastModified":"1301901830000","name":"Albert Paulig","type":"Person","_key":"8539"} +{"label":"Alfred Kuehne","version":17,"id":"13883","lastModified":"1301901669000","name":"Alfred Kuehne","type":"Person","_key":"8540"} +{"label":"Pandora's Box","description":"Die B\u00fcchse der Pandora, meaning Pandora\u2019s Box, is a classic German silent film from director Pabst. This is the third film about the Lulu-Stoffes character from Frank Wedekind and is deemed a masterpiece.","id":"905","runtime":131,"imdbId":"tt0018737","version":224,"lastModified":"1301904395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4bc90e13017a3c57fe005024\/die-buchse-der-pandora-mid.jpg","genre":"Drama","title":"Pandora's Box","releaseDate":-1290470400000,"language":"en","type":"Movie","_key":"8541"} +{"label":"Georg Wilhelm Pabst","version":35,"id":"13899","lastModified":"1301901449000","name":"Georg Wilhelm Pabst","type":"Person","_key":"8542"} +{"label":"Louise Brooks","version":26,"id":"13904","lastModified":"1301901449000","name":"Louise Brooks","type":"Person","_key":"8543"} +{"label":"Fritz Kortner","version":24,"id":"13905","lastModified":"1301901319000","name":"Fritz Kortner","type":"Person","_key":"8544"} +{"label":"Francis Lederer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4c5b035d7b9aa151f3000607\/francis-lederer-profile.jpg","version":30,"id":"13906","lastModified":"1301901251000","name":"Francis Lederer","type":"Person","_key":"8545"} +{"label":"Carl Goetz","version":20,"id":"13907","lastModified":"1301901415000","name":"Carl Goetz","type":"Person","_key":"8546"} +{"label":"Krafft-Raschig","version":20,"id":"13908","lastModified":"1301901516000","name":"Krafft-Raschig","type":"Person","_key":"8547"} +{"label":"Alice Roberts","version":20,"id":"13909","lastModified":"1301901515000","name":"Alice Roberts","type":"Person","_key":"8548"} +{"label":"Die Drei von der Tankstelle","description":"Die Drei von der Tankstelle, meaning The Three from the Gas Station, was advertised as a German operetta when release and with it\u2019s star studded cast would become the forerunner of Musical films. Even today the soundtrack of the comic harmonists is popular in Germany. ","id":"906","runtime":90,"imdbId":"tt0020842","version":78,"lastModified":"1301905723000","studio":"UFA Universum-Film AG","genre":"Comedy","title":"Die Drei von der Tankstelle","releaseDate":-1240012800000,"language":"en","type":"Movie","_key":"8549"} +{"label":"Wilhelm Thiele","version":22,"id":"13884","lastModified":"1301901799000","name":"Wilhelm Thiele","type":"Person","_key":"8550"} +{"label":"Lilian Harvey","version":17,"id":"13892","lastModified":"1301901799000","name":"Lilian Harvey","type":"Person","_key":"8551"} +{"label":"Willy Fritsch","version":23,"id":"13893","lastModified":"1301901449000","name":"Willy Fritsch","type":"Person","_key":"8552"} +{"label":"Oskar Karlweis","version":18,"id":"13894","lastModified":"1301901830000","name":"Oskar Karlweis","type":"Person","_key":"8553"} +{"label":"Fritz Kampers","version":17,"id":"13896","lastModified":"1301901665000","name":"Fritz Kampers","type":"Person","_key":"8554"} +{"label":"Olga Tschechowa","version":23,"id":"13897","lastModified":"1301901701000","name":"Olga Tschechowa","type":"Person","_key":"8555"} +{"label":"Gertrud Wolle","version":18,"id":"13898","lastModified":"1301901799000","name":"Gertrud Wolle","type":"Person","_key":"8556"} +{"label":"Doctor Zhivago","description":"Doctor Zhivago is the filmed adapation of the Russian novel by Boris Pasternak from director David Lean that was an international success and today deemed a classic. Omar Sharif and Julie Kristie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.","id":"907","runtime":197,"imdbId":"tt0059113","trailer":"http:\/\/www.youtube.com\/watch?v=hvIL_A0UsJk","version":848,"lastModified":"1301929571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4d6c36195e73d66b270032b8\/doctor-zhivago-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Doctor Zhivago","releaseDate":-127094400000,"language":"en","type":"Movie","_key":"8557"} +{"label":"Tom Courtenay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5f\/4ca29f045e73d67049000a5f\/tom-courtenay-profile.jpg","version":54,"id":"14011","lastModified":"1301901379000","name":"Tom Courtenay","type":"Person","_key":"8558"} +{"label":"Siobhan McKenna","version":25,"id":"14012","lastModified":"1301901639000","name":"Siobhan McKenna","type":"Person","_key":"8559"} +{"label":"G\u00e9rard Tichy","version":37,"id":"14014","lastModified":"1301901572000","name":"G\u00e9rard Tichy","type":"Person","_key":"8560"} +{"label":"Noel Willman","version":27,"id":"14015","lastModified":"1301998844000","name":"Noel Willman","type":"Person","_key":"8561"} +{"label":"Jack MacGowran","version":43,"id":"14016","lastModified":"1301901453000","name":"Jack MacGowran","type":"Person","_key":"8562"} +{"label":"Mark Eden","version":28,"id":"14017","lastModified":"1301901804000","name":"Mark Eden","type":"Person","_key":"8563"} +{"label":"Erik Chitty","version":21,"id":"14018","lastModified":"1301901769000","name":"Erik Chitty","type":"Person","_key":"8564"} +{"label":"Klaus Kinski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b02\/4bfd8953017a3c7031000b02\/klaus-kinski-profile.jpg","version":96,"birthday":"-1363482000000","id":"14277","birthplace":"Zoppot, Free City of Danzig, Germany","lastModified":"1300047791000","name":"Klaus Kinski","type":"Person","_key":"8565"} +{"label":"Het Schnitzelparadijs","description":"Schnitzel Paradise is a Dutch film about a young Moroccan man working in the kitchen of popular Dutch restaurant.","id":"908","runtime":82,"imdbId":"tt0446460","version":49,"lastModified":"1301906135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/045\/4bc90e15017a3c57fe005045\/het-schnitzelparadijs-mid.jpg","genre":"Comedy","title":"Het Schnitzelparadijs","releaseDate":1126137600000,"language":"en","type":"Movie","_key":"8566"} +{"label":"Martin Koolhoven","version":22,"id":"80630","lastModified":"1301901572000","name":"Martin Koolhoven","type":"Person","_key":"8567"} +{"label":"Meet Me in St. Louis","description":"Meet me in Saint Louise is a successful American musical from 1944 starring Judy Garland.","id":"909","runtime":113,"imdbId":"tt0037059","trailer":"http:\/\/www.youtube.com\/watch?v=tknOwhzGDg8","version":174,"lastModified":"1301931602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4bc90e17017a3c57fe005052\/meet-me-in-st-louis-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Meet Me in St. Louis","releaseDate":-791856000000,"language":"en","type":"Movie","_key":"8568"} +{"label":"Vincente Minnelli","version":48,"id":"13980","lastModified":"1301901318000","name":"Vincente Minnelli","type":"Person","_key":"8569"} +{"label":"Margaret O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4ca6483c7b9aa17acd000081\/margaret-o-brien-profile.jpg","version":25,"id":"13991","lastModified":"1301901606000","name":"Margaret O'Brien","type":"Person","_key":"8570"} +{"label":"Mary Astor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4bd5cabf017a3c657e000073\/mary-astor-profile.jpg","version":40,"id":"13992","lastModified":"1301901197000","name":"Mary Astor","type":"Person","_key":"8571"} +{"label":"Lucille Bremer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c6\/4be41c03017a3c35c10008c6\/lucille-bremer-profile.jpg","version":28,"id":"13993","lastModified":"1301901832000","name":"Lucille Bremer","type":"Person","_key":"8572"} +{"label":"Leon Ames","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a50\/4bfd82db017a3c7037000a50\/leon-ames-profile.jpg","version":51,"id":"13994","lastModified":"1301901160000","name":"Leon Ames","type":"Person","_key":"8573"} +{"label":"Tom Drake","version":24,"id":"13995","lastModified":"1301901558000","name":"Tom Drake","type":"Person","_key":"8574"} +{"label":"Marjorie Main","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4cb384227b9aa13466000039\/marjorie-main-profile.jpg","version":35,"id":"13996","lastModified":"1301901468000","name":"Marjorie Main","type":"Person","_key":"8575"} +{"label":"June Lockhart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e6\/4c76d3857b9aa16a0a0001e6\/june-lockhart-profile.jpg","version":33,"id":"13997","lastModified":"1301901469000","name":"June Lockhart","type":"Person","_key":"8576"} +{"label":"Henry H. Daniels Jr.","version":19,"id":"13998","lastModified":"1301901603000","name":"Henry H. Daniels Jr.","type":"Person","_key":"8577"} +{"label":"Joan Carroll","version":19,"id":"13999","lastModified":"1301901751000","name":"Joan Carroll","type":"Person","_key":"8578"} +{"label":"Robert Sully","version":17,"id":"14000","lastModified":"1301901751000","name":"Robert Sully","type":"Person","_key":"8579"} +{"label":"Chill Wills","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66d\/4bf44849017a3c321200066d\/chill-wills-profile.jpg","version":33,"id":"14001","lastModified":"1301901577000","name":"Chill Wills","type":"Person","_key":"8580"} +{"label":"The Big Sleep","description":"The Big Sleep is a film noir based on the novel of the same name by Raymond Chandler. Directed by Howard Hawks and starring Humphrey Boogart and Lauren Becall.","id":"910","runtime":116,"imdbId":"tt0038355","trailer":"http:\/\/www.youtube.com\/watch?v=EGp26VI2270","version":294,"lastModified":"1301903211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/067\/4bc90e1a017a3c57fe005067\/the-big-sleep-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Big Sleep","releaseDate":-737164800000,"language":"en","tagline":"The picture they were born for!","type":"Movie","_key":"8581"} +{"label":"Martha Vickers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21e\/4bf18189017a3c321200021e\/martha-vickers-profile.jpg","version":26,"id":"13975","lastModified":"1301901441000","name":"Martha Vickers","type":"Person","_key":"8582"} +{"label":"Peggy Knudsen","version":26,"id":"13978","lastModified":"1301901662000","name":"Peggy Knudsen","type":"Person","_key":"8583"} +{"label":"Charles Waldron","version":25,"id":"13976","lastModified":"1301901668000","name":"Charles Waldron","type":"Person","_key":"8584"} +{"label":"Regis Toomey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/020\/4bcf2b53017a3c63f5000020\/regis-toomey-profile.jpg","biography":"John Regis Toomey (August 13, 1898 \u2013 October 12, 1991) was an American film and television actor.\n\nBorn in Pittsburgh, Pennsylvania, USA, he was one of four children of Francis X. and Mary Ellen Toomey and attended Peabody High School. He initially pondered a law career, but acting won out and he established himself as a musical stage performer.\n\nEducated in dramatics at the University of Pittsburgh, where he became a brother of Sigma Chi, Toomey began as a stock actor and eventually made it to ","version":52,"id":"22093","lastModified":"1301901132000","name":"Regis Toomey","type":"Person","_key":"8585"} +{"label":"Charles D. Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/527\/4c9a5c0b7b9aa122df000527\/charles-d-brown-profile.jpg","version":33,"id":"13977","lastModified":"1301901426000","name":"Charles D. Brown","type":"Person","_key":"8586"} +{"label":"The Bank Dick","description":"The Bank Dick is a comedy from 1940 starring W.C. Fields (who also wrote the story). The film is one of the greatest works from an American comedian.","id":"911","runtime":72,"imdbId":"tt0032234","version":163,"lastModified":"1301903467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/070\/4bc90e1b017a3c57fe005070\/the-bank-dick-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Bank Dick","releaseDate":-918000000000,"language":"en","type":"Movie","_key":"8587"} +{"label":"Edward F. Cline","version":69,"id":"13953","lastModified":"1301901375000","name":"Edward F. Cline","type":"Person","_key":"8588"} +{"label":"W.C. Fields","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/340\/4cbc9cd27b9aa138d6001340\/w-c-fields-profile.jpg","version":49,"id":"13954","lastModified":"1301901236000","name":"W.C. Fields","type":"Person","_key":"8589"} +{"label":"Cora Witherspoon","version":24,"id":"13962","lastModified":"1301901662000","name":"Cora Witherspoon","type":"Person","_key":"8590"} +{"label":"Una Merkel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27a\/4c604e757b9aa172da00027a\/una-merkel-profile.jpg","version":30,"id":"13963","lastModified":"1301901423000","name":"Una Merkel","type":"Person","_key":"8591"} +{"label":"Evelyn Del Rio","version":16,"id":"13964","lastModified":"1301901627000","name":"Evelyn Del Rio","type":"Person","_key":"8592"} +{"label":"Jessie Ralph","version":22,"id":"13965","lastModified":"1301901699000","name":"Jessie Ralph","type":"Person","_key":"8593"} +{"label":"Franklin Pangborn","version":23,"id":"13966","lastModified":"1301901607000","name":"Franklin Pangborn","type":"Person","_key":"8594"} +{"label":"Shemp Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4c4617ce7b9aa15de0000155\/shemp-howard-profile.jpg","version":24,"id":"13967","lastModified":"1301901793000","name":"Shemp Howard","type":"Person","_key":"8595"} +{"label":"Grady Sutton","version":20,"id":"13968","lastModified":"1301901845000","name":"Grady Sutton","type":"Person","_key":"8596"} +{"label":"Russell Hicks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4bd5e412017a3c6585000045\/russell-hicks-profile.jpg","biography":"Tall, distinguished-looking Russell Hicks appeared in almost 300 films in his more than 40-year career (although his first known screen appearance was in 1915, he has screenwriting credits as early as 1913, so it's possible his screen debut was earlier than credited). His cultured bearing, grandfatherly appearance and soothing, resonant voice were perfect for the many military officers, attorneys, judges and business executives he excelled at playing. He was especially memorable in an atypical r","version":31,"birthday":"-2353453200000","id":"13969","birthplace":"Baltimore, Maryland, USA","lastModified":"1301901460000","name":"Russell Hicks","type":"Person","_key":"8597"} +{"label":"Dick Purcell","version":19,"id":"13970","lastModified":"1301901776000","name":"Dick Purcell","type":"Person","_key":"8598"} +{"label":"The Thomas Crown Affair","description":"The young businessman Thomas Crown is bored and decides to plan a robbery and assigns a professional agent with the right information to the job. However Crown is soon betrayed yet cannot blow his cover because he\u2019s in love.","id":"912","runtime":102,"imdbId":"tt0063688","trailer":"http:\/\/www.youtube.com\/watch?v=feEUFgclIbo","version":176,"lastModified":"1301902483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b5\/4d2aef235e73d626c40041b5\/the-thomas-crown-affair-mid.jpg","studio":"United Artists","genre":"Action","title":"The Thomas Crown Affair","releaseDate":-48470400000,"language":"en","type":"Movie","_key":"8599"} +{"label":"Paul Burke","version":24,"id":"13946","lastModified":"1301901452000","name":"Paul Burke","type":"Person","_key":"8600"} +{"label":"Biff McGuire","version":22,"id":"13947","lastModified":"1301901312000","name":"Biff McGuire","type":"Person","_key":"8601"} +{"label":"Addison Powell","version":19,"id":"13948","lastModified":"1301901686000","name":"Addison Powell","type":"Person","_key":"8602"} +{"label":"Astrid Heeren","version":19,"id":"13949","lastModified":"1301901488000","name":"Astrid Heeren","type":"Person","_key":"8603"} +{"label":"Gordon Pinsent","version":29,"id":"13950","lastModified":"1301901261000","name":"Gordon Pinsent","type":"Person","_key":"8604"} +{"label":"Sidney Armus","version":23,"id":"13951","lastModified":"1301901529000","name":"Sidney Armus","type":"Person","_key":"8605"} +{"label":"Sam Melville","version":20,"id":"13952","lastModified":"1301901771000","name":"Sam Melville","type":"Person","_key":"8606"} +{"label":"The Thomas Crown Affair","description":"A titular billionaire, for kicks, would rather steal works of art than buy them. Charged with investigating his crimes, sleuth Catherine instead falls under his spell. Despite the warnings of detective Michael, Catherine moves closer to Thomas and finds herself facing a moral quandary.","id":"913","runtime":113,"imdbId":"tt0155267","trailer":"http:\/\/www.youtube.com\/watch?v=tavHpY5LdLg","version":332,"lastModified":"1301903771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7b\/4d35c96d7b9aa177db00ae7b\/the-thomas-crown-affair-mid.jpg","studio":"Irish Dreamtime","genre":"Action","title":"The Thomas Crown Affair","releaseDate":933033600000,"language":"en","tagline":"Crime does pay. Handsomely.","type":"Movie","_key":"8607"} +{"label":"Rene Russo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/153\/4cc472be7b9aa138d9002153\/rene-russo-profile.jpg","version":79,"birthday":"-500864400000","id":"14343","birthplace":"Burbank, California, USA","lastModified":"1301901118000","name":"Rene Russo","type":"Person","_key":"8608"} +{"label":"Charles Keating","version":20,"id":"13937","lastModified":"1301901627000","name":"Charles Keating","type":"Person","_key":"8609"} +{"label":"Michael Lombard","version":23,"id":"13938","lastModified":"1301901663000","name":"Michael Lombard","type":"Person","_key":"8610"} +{"label":"The Great Dictator","description":"Chaplin's first true \"talking\" picture, The Great Dictator daringly satirizes both Nazism and Adolf Hitler. Chaplin portrays both the dictator Adenoid Hynkel and the poor Jewish barber who is his look-alike.","id":"914","runtime":124,"imdbId":"tt0032553","trailer":"http:\/\/www.youtube.com\/watch?v=929","version":348,"lastModified":"1301930294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4d6b11077b9aa136310031c0\/the-great-dictator-mid.jpg","studio":"United Artists","genre":"Comedy","title":"The Great Dictator","releaseDate":-921888000000,"language":"en","type":"Movie","_key":"8611"} +{"label":"Jack Oakie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ac\/4c49ba247b9aa115ff0000ac\/jack-oakie-profile.jpg","version":31,"id":"14028","lastModified":"1301901594000","name":"Jack Oakie","type":"Person","_key":"8612"} +{"label":"Reginald Gardiner","version":34,"id":"14029","lastModified":"1301901701000","name":"Reginald Gardiner","type":"Person","_key":"8613"} +{"label":"Henry Daniell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a33\/4be48326017a3c35bb000a33\/henry-daniell-profile.jpg","version":48,"id":"10924","lastModified":"1301996337000","name":"Henry Daniell","type":"Person","_key":"8614"} +{"label":"Paul Weigel","version":20,"id":"14035","lastModified":"1301901843000","name":"Paul Weigel","type":"Person","_key":"8615"} +{"label":"Grace Hayle","version":21,"id":"14030","lastModified":"1301901629000","name":"Grace Hayle","type":"Person","_key":"8616"} +{"label":"Paulette Goddard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4bcc739e017a3c0f3000013a\/paulette-goddard-profile.jpg","version":32,"id":"14027","lastModified":"1301901295000","name":"Paulette Goddard","type":"Person","_key":"8617"} +{"label":"Maurice Moscovitch","version":20,"id":"14032","lastModified":"1301901919000","name":"Maurice Moscovitch","type":"Person","_key":"8618"} +{"label":"Emma Dunn","version":27,"id":"14033","lastModified":"1301901773000","name":"Emma Dunn","type":"Person","_key":"8619"} +{"label":"Bernard Gorcey","version":21,"birthday":"-2650064400000","id":"14034","birthplace":"Russia","lastModified":"1301901919000","name":"Bernard Gorcey","type":"Person","_key":"8620"} +{"label":"Carter DeHaven","version":28,"id":"14019","lastModified":"1301901814000","name":"Carter DeHaven","type":"Person","_key":"8621"} +{"label":"Eddie Gribbon","version":19,"id":"141586","lastModified":"1301903049000","name":"Eddie Gribbon","type":"Person","_key":"8622"} +{"label":"Rudolph Anders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4cd3f6107b9aa113ac0000a4\/rudolph-anders-profile.jpg","version":26,"id":"131045","lastModified":"1301902414000","name":"Rudolph Anders","type":"Person","_key":"8623"} +{"label":"Nita Pike","version":19,"id":"141587","lastModified":"1301903064000","name":"Nita Pike","type":"Person","_key":"8624"} +{"label":"George Lynn","version":29,"id":"31263","lastModified":"1301901975000","name":"George Lynn","type":"Person","_key":"8625"} +{"label":"Bullitt","description":"Bullitt is an American action thriller from director Peter Yates from 1968. Steven Mcqueen plays the leading role as a mafia-chasing police officer who must protect a valuable witness. The film\u2019s ten minute high speed pursuit is legendary.","id":"916","runtime":113,"imdbId":"tt0062765","trailer":"http:\/\/www.youtube.com\/watch?v=FPd8Qco2iMI","version":1089,"lastModified":"1301952389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21c\/4d2f86495e73d667ed00021c\/bullitt-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Bullitt","releaseDate":-38102400000,"language":"en","tagline":"There are bad cops, good cops - and then there's Bullitt.","type":"Movie","_key":"8626"} +{"label":"Robert Vaughn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df8\/4bfeba6a017a3c7033000df8\/robert-vaughn-profile.jpg","version":52,"id":"14060","lastModified":"1301901184000","name":"Robert Vaughn","type":"Person","_key":"8627"} +{"label":"Jacqueline Bisset","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bd\/4c17941e7b9aa109130000bd\/jacqueline-bisset-profile.jpg","version":74,"id":"14061","lastModified":"1301901200000","name":"Jacqueline Bisset","type":"Person","_key":"8628"} +{"label":"Don Gordon","version":29,"id":"14062","lastModified":"1301901257000","name":"Don Gordon","type":"Person","_key":"8629"} +{"label":"Norman Fell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c45bbea7b9aa15de200008f\/norman-fell-profile.jpg","version":32,"id":"14064","lastModified":"1301901688000","name":"Norman Fell","type":"Person","_key":"8630"} +{"label":"Georg Stanford Brown","version":20,"id":"14065","lastModified":"1301901378000","name":"Georg Stanford Brown","type":"Person","_key":"8631"} +{"label":"Justin Tarr","version":17,"id":"14066","lastModified":"1301901544000","name":"Justin Tarr","type":"Person","_key":"8632"} +{"label":"Carl Reindel","version":17,"id":"14067","lastModified":"1301901544000","name":"Carl Reindel","type":"Person","_key":"8633"} +{"label":"Felice Orlandi","version":25,"id":"14068","lastModified":"1301901444000","name":"Felice Orlandi","type":"Person","_key":"8634"} +{"label":"Vic Tayback","version":23,"id":"14069","lastModified":"1301901398000","name":"Vic Tayback","type":"Person","_key":"8635"} +{"label":"Mother India","description":"Mother India is an Indian film from director Mehboob Khan from 1957 and is the most successful and popular Hindi film.","id":"917","runtime":172,"imdbId":"tt0050188","version":273,"lastModified":"1301904452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/085\/4d29aa975e73d626a8003085\/mother-india-mid.jpg","studio":"Mehboob Productions","genre":"Drama","title":"Mother India","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"8636"} +{"label":"Mehboob Khan","version":19,"id":"14088","lastModified":"1301901461000","name":"Mehboob Khan","type":"Person","_key":"8637"} +{"label":"Nargis","version":19,"id":"14078","lastModified":"1301901666000","name":"Nargis","type":"Person","_key":"8638"} +{"label":"Sunil Dutt","version":19,"id":"14079","lastModified":"1301901808000","name":"Sunil Dutt","type":"Person","_key":"8639"} +{"label":"Rajendra Kumar","version":17,"id":"14080","lastModified":"1301901594000","name":"Rajendra Kumar","type":"Person","_key":"8640"} +{"label":"Raaj Kumar","version":17,"id":"14081","lastModified":"1301901666000","name":"Raaj Kumar","type":"Person","_key":"8641"} +{"label":"Kanhaiyalal","version":17,"id":"14082","lastModified":"1301901978000","name":"Kanhaiyalal","type":"Person","_key":"8642"} +{"label":"Kumkum","version":17,"id":"14083","lastModified":"1301901978000","name":"Kumkum","type":"Person","_key":"8643"} +{"label":"Mukri","version":17,"id":"14084","lastModified":"1301901978000","name":"Mukri","type":"Person","_key":"8644"} +{"label":"Sheela Naik","version":17,"id":"14085","lastModified":"1301901978000","name":"Sheela Naik","type":"Person","_key":"8645"} +{"label":"Sajid Khan","version":22,"id":"14086","lastModified":"1301901458000","name":"Sajid Khan","type":"Person","_key":"8646"} +{"label":"Blind Date","description":"Walter Davis is a workaholic. His attention is all to his work and very little to his personal life or appearance. Now he needs a date to take to his company's business dinner with a new important Japanese client. His brother sets him up with his wife's cousin Nadia, who is new in town and wants to socialize, but he was warned that if she gets drunk, she loses control and becomes wild. How will the date turn out - especially when they encounter Nadia's ex-boyfriend David?","id":"918","runtime":97,"imdbId":"tt0092666","version":712,"lastModified":"1302027734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0af\/4bc90e23017a3c57fe0050af\/blind-date-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"Blind Date","releaseDate":543801600000,"language":"en","type":"Movie","_key":"8647"} +{"label":"John Larroquette","version":37,"id":"14101","lastModified":"1301901383000","name":"John Larroquette","type":"Person","_key":"8648"} +{"label":"William Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/461\/4ce19f8b5e73d60f6e000461\/william-daniels-profile.jpg","version":37,"id":"10775","lastModified":"1301901336000","name":"William Daniels","type":"Person","_key":"8649"} +{"label":"George Coe","version":30,"id":"14102","lastModified":"1301901498000","name":"George Coe","type":"Person","_key":"8650"} +{"label":"Mark Blum","version":23,"id":"14103","lastModified":"1301901515000","name":"Mark Blum","type":"Person","_key":"8651"} +{"label":"Phil Hartman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25d\/4d05a2845e73d621a000325d\/phil-hartman-profile.jpg","version":50,"id":"14104","lastModified":"1301901204000","name":"Phil Hartman","type":"Person","_key":"8652"} +{"label":"Stephanie Faracy","version":25,"id":"14105","lastModified":"1301901691000","name":"Stephanie Faracy","type":"Person","_key":"8653"} +{"label":"Alice Hirson","version":17,"id":"14106","lastModified":"1301901751000","name":"Alice Hirson","type":"Person","_key":"8654"} +{"label":"Graham Stark","version":31,"id":"14107","lastModified":"1301901576000","name":"Graham Stark","type":"Person","_key":"8655"} +{"label":"Joyce Van Patten","version":24,"id":"14108","lastModified":"1301901521000","name":"Joyce Van Patten","type":"Person","_key":"8656"} +{"label":"Georgann Johnson","version":19,"id":"14109","lastModified":"1301901543000","name":"Georgann Johnson","type":"Person","_key":"8657"} +{"label":"Blood: The Last Vampire","description":"A Japanese animated horror film about a vampire hunter who shortly after getting back from the Vietnam War is assigned by the US government to destroy the last vampire.","id":"919","runtime":48,"imdbId":"tt0275230","trailer":"http:\/\/www.youtube.com\/watch?v=tYnciEGup9k","homepage":"http:\/\/www.bloodthemovie.com\/","version":692,"lastModified":"1301951695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c5\/4bc90e27017a3c57fe0050c5\/blood-the-last-vampire-mid.jpg","studio":"Production I.G Inc.","genre":"Animation","title":"Blood: The Last Vampire","releaseDate":974505600000,"language":"en","type":"Movie","_key":"8658"} +{"label":"Hiroyuki Kitakubo","version":22,"id":"16136","lastModified":"1301901403000","name":"Hiroyuki Kitakubo","type":"Person","_key":"8659"} +{"label":"Youki Kudoh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c02\/4d41f8f05e73d65721000c02\/youki-kudoh-profile.jpg","version":40,"id":"16145","lastModified":"1301901221000","name":"Youki Kudoh","type":"Person","_key":"8660"} +{"label":"Saemi Nakamura","version":20,"id":"16146","lastModified":"1301901497000","name":"Saemi Nakamura","type":"Person","_key":"8661"} +{"label":"Joe Romersa","version":20,"id":"16147","lastModified":"1301901497000","name":"Joe Romersa","type":"Person","_key":"8662"} +{"label":"Rebecca Forstadt","version":23,"id":"16148","lastModified":"1301902013000","name":"Rebecca Forstadt","type":"Person","_key":"8663"} +{"label":"Stuart Robinson","version":20,"id":"16149","lastModified":"1301901567000","name":"Stuart Robinson","type":"Person","_key":"8664"} +{"label":"Akira Koteyama","version":22,"id":"16150","lastModified":"1301901789000","name":"Akira Koteyama","type":"Person","_key":"8665"} +{"label":"Tom Fahn","version":20,"id":"16151","lastModified":"1301901789000","name":"Tom Fahn","type":"Person","_key":"8666"} +{"label":"Fitz Houston","version":20,"id":"16152","lastModified":"1301901497000","name":"Fitz Houston","type":"Person","_key":"8667"} +{"label":"Paul Carr","version":23,"id":"15628","lastModified":"1301901497000","name":"Paul Carr","type":"Person","_key":"8668"} +{"label":"Steve Blum","version":46,"id":"81379","lastModified":"1301901574000","name":"Steve Blum","type":"Person","_key":"8669"} +{"label":"Cars","description":"Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters...","id":"920","runtime":116,"imdbId":"tt0317219","trailer":"http:\/\/www.youtube.com\/watch?v=_z-gerHEq6c","homepage":"http:\/\/disney.go.com\/disneyvideos\/animatedfilms\/cars\/","version":614,"lastModified":"1301951460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4c9c31415e73d66d1d000063\/cars-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Cars","releaseDate":1142294400000,"language":"en","tagline":"Ahhh... it's got that new movie smell.","type":"Movie","_key":"8670"} +{"label":"Larry The Cable Guy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/da1\/4c0fb145017a3c7e92000da1\/larry-the-cable-guy-profile.jpg","version":56,"id":"15897","lastModified":"1301901264000","name":"Larry The Cable Guy","type":"Person","_key":"8671"} +{"label":"Guido Quaroni","version":28,"id":"15898","lastModified":"1301901363000","name":"Guido Quaroni","type":"Person","_key":"8672"} +{"label":"Jenifer Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/055\/4cc7517f5e73d65023000055\/jenifer-lewis-profile.jpg","version":38,"id":"15899","lastModified":"1301901531000","name":"Jenifer Lewis","type":"Person","_key":"8673"} +{"label":"Paul Dooley","biography":"<span class=\"mw-headline\" id=\"Personal_life\"><\/span>Dooley was born <b>Paul Brown<\/b> in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Parkersburg,_West_Virginia\" title=\"Parkersburg, West Virginia\">Parkersburg, West Virginia<\/a>, the son of Ruth Irene (<a href=\"http:\/\/en.wikipedia.org\/wiki\/Married_and_maiden_names\" title=\"Married and maiden names\">n\u00e9e<\/a> Barringer), a homemaker, and Peter James Brown, a factory worker.<sup id=\"cite_ref-0\" class=\"reference\"><a href=\"http:\/\/en.wikipedia.org\/wiki\/Paul_Doo","version":57,"id":"15900","lastModified":"1301901254000","name":"Paul Dooley","type":"Person","_key":"8674"} +{"label":"Michael Wallis","version":31,"id":"15902","lastModified":"1301901364000","name":"Michael Wallis","type":"Person","_key":"8675"} +{"label":"George Carlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/429\/4c488f155e73d61efb000429\/george-carlin-profile.jpg","version":113,"id":"15903","lastModified":"1301901158000","name":"George Carlin","type":"Person","_key":"8676"} +{"label":"Cinderella Man","description":"Cinderella Man is the story of a boxer in the 1920\u2019s who after his retirement has a surprise comeback in order to get him and his family out of a socially poor state. The film is based on the true story of boxer Jim Braddock who was more famously known as Cinderella Man.","id":"921","runtime":144,"imdbId":"tt0352248","trailer":"http:\/\/www.youtube.com\/watch?v=DlbHzcH4VJY","homepage":"http:\/\/www.cinderellamanmovie.com\/index.php","version":743,"lastModified":"1302027077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc90e35017a3c57fe005123\/cinderella-man-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Cinderella Man","releaseDate":1116806400000,"language":"en","type":"Movie","_key":"8677"} +{"label":"Craig Bierko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f7\/4ceea2f05e73d653150000f7\/craig-bierko-profile.jpg","version":43,"id":"14886","lastModified":"1299586968000","name":"Craig Bierko","type":"Person","_key":"8678"} +{"label":"Paddy Considine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4c2222f87b9aa1369400015b\/paddy-considine-profile.jpg","version":65,"birthday":"147567600000","id":"14887","birthplace":"Buton-on-Trent, Staffordshire, UK","lastModified":"1301904093000","name":"Paddy Considine","type":"Person","_key":"8679"} +{"label":"Bruce McGill","version":84,"id":"14888","lastModified":"1301901100000","name":"Bruce McGill","type":"Person","_key":"8680"} +{"label":"Connor Price","version":31,"id":"14889","lastModified":"1301901395000","name":"Connor Price","type":"Person","_key":"8681"} +{"label":"Ariel Waller","version":25,"id":"14890","lastModified":"1301901806000","name":"Ariel Waller","type":"Person","_key":"8682"} +{"label":"Patrick Louis","version":20,"id":"14891","lastModified":"1301901627000","name":"Patrick Louis","type":"Person","_key":"8683"} +{"label":"Rosemarie DeWitt","version":27,"id":"14892","lastModified":"1301901302000","name":"Rosemarie DeWitt","type":"Person","_key":"8684"} +{"label":"Linda Kash","version":26,"id":"14893","lastModified":"1301901346000","name":"Linda Kash","type":"Person","_key":"8685"} +{"label":"Nicholas Campbell","version":32,"id":"14902","lastModified":"1301901603000","name":"Nicholas Campbell","type":"Person","_key":"8686"} +{"label":"Gene Pyrz","version":21,"id":"14903","lastModified":"1301901415000","name":"Gene Pyrz","type":"Person","_key":"8687"} +{"label":"Chuck Shamata","version":29,"id":"14905","lastModified":"1301901367000","name":"Chuck Shamata","type":"Person","_key":"8688"} +{"label":"Dead Man","description":"On the run after murdering a man, accountant William Blake encounters a strange Indian named \"Nobody\" who prepares him for his journey into the spiritual world.","id":"922","runtime":121,"imdbId":"tt0112817","trailer":"http:\/\/www.youtube.com\/watch?v=07xKQakj1hM","version":981,"lastModified":"1302026917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4bc90e3b017a3c57fe00514d\/dead-man-mid.jpg","studio":"Pandora Filmproduktion","genre":"Action","title":"Dead Man","releaseDate":801446400000,"language":"en","type":"Movie","_key":"8689"} +{"label":"Gary Farmer","version":21,"id":"15439","lastModified":"1301901432000","name":"Gary Farmer","type":"Person","_key":"8690"} +{"label":"Mili Avital","version":30,"id":"15441","lastModified":"1301901260000","name":"Mili Avital","type":"Person","_key":"8691"} +{"label":"Jimmie Ray Weeks","version":16,"id":"15442","lastModified":"1301901751000","name":"Jimmie Ray Weeks","type":"Person","_key":"8692"} +{"label":"Mark Bringleson","version":17,"id":"15443","lastModified":"1301901915000","name":"Mark Bringleson","type":"Person","_key":"8693"} +{"label":"John North","version":16,"id":"15444","lastModified":"1301901915000","name":"John North","type":"Person","_key":"8694"} +{"label":"Dawn of the Dead","description":"An American horror movie from 1978 about a group of four people who are hiding out in a shopping center after the city has been over run with zombies. This low budget film has gained a cult statues in the horror genre.","id":"923","runtime":126,"imdbId":"tt0077402","trailer":"http:\/\/www.youtube.com\/watch?v=Lm84Vc0BHnM","version":257,"lastModified":"1301901891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bc90e3f017a3c57fe005163\/dawn-of-the-dead-mid.jpg","studio":"Laurel Group","genre":"Action","title":"Dawn of the Dead","releaseDate":273542400000,"language":"en","type":"Movie","_key":"8695"} +{"label":"David Emge","version":20,"id":"15069","lastModified":"1301901394000","name":"David Emge","type":"Person","_key":"8696"} +{"label":"Ken Foree","version":50,"id":"15070","lastModified":"1301901230000","name":"Ken Foree","type":"Person","_key":"8697"} +{"label":"Scott H. Reiniger","version":23,"id":"15071","lastModified":"1301901344000","name":"Scott H. Reiniger","type":"Person","_key":"8698"} +{"label":"Gaylen Ross","version":19,"id":"15072","lastModified":"1301901344000","name":"Gaylen Ross","type":"Person","_key":"8699"} +{"label":"David Crawford","version":20,"id":"15073","lastModified":"1301901766000","name":"David Crawford","type":"Person","_key":"8700"} +{"label":"Richard France","version":23,"id":"15075","lastModified":"1301901672000","name":"Richard France","type":"Person","_key":"8701"} +{"label":"Howard Smith","version":20,"id":"15076","lastModified":"1301901766000","name":"Howard Smith","type":"Person","_key":"8702"} +{"label":"Daniel Dietrich","version":21,"id":"15077","lastModified":"1301901648000","name":"Daniel Dietrich","type":"Person","_key":"8703"} +{"label":"Fred Baker","version":20,"id":"15078","lastModified":"1301901594000","name":"Fred Baker","type":"Person","_key":"8704"} +{"label":"James A. Baffico","version":19,"id":"15079","lastModified":"1301901637000","name":"James A. Baffico","type":"Person","_key":"8705"} +{"label":"Rod Stouffer","version":19,"id":"15080","lastModified":"1301901934000","name":"Rod Stouffer","type":"Person","_key":"8706"} +{"label":"Dawn of the Dead","description":"A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name. ","id":"924","runtime":105,"imdbId":"tt0363547","trailer":"http:\/\/www.youtube.com\/watch?v=8LUzJAsa-gg","homepage":"http:\/\/www.dawnofthedeadmovie.net\/","version":442,"lastModified":"1301901395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/950\/4d5202275e73d617ba004950\/dawn-of-the-dead-mid.jpg","studio":"New Amsterdam Entertainment","genre":"Action","title":"Dawn of the Dead","releaseDate":1104278400000,"language":"en","type":"Movie","_key":"8707"} +{"label":"Zack Snyder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f79\/4cf8d2345e73d6299e001f79\/zack-snyder-profile.jpg","version":59,"id":"15217","lastModified":"1299490958000","name":"Zack Snyder","type":"Person","_key":"8708"} +{"label":"Ty Burrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a4\/4cd9af697b9aa11b250006a4\/ty-burrell-profile.jpg","version":54,"birthday":"-74566800000","id":"15232","birthplace":"Grants Pass, Oregon, USA","lastModified":"1301901146000","name":"Ty Burrell","type":"Person","_key":"8709"} +{"label":"Matt Frewer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b4\/4bfa17b6017a3c702d0003b4\/matt-frewer-profile.jpg","version":84,"id":"40009","lastModified":"1301901188000","name":"Matt Frewer","type":"Person","_key":"8710"} +{"label":"Michael Kelly","version":53,"id":"50217","lastModified":"1301901249000","name":"Michael Kelly","type":"Person","_key":"8711"} +{"label":"Lindy Booth","version":32,"id":"51936","lastModified":"1301901570000","name":"Lindy Booth","type":"Person","_key":"8712"} +{"label":"Michael Barry","version":23,"id":"79411","lastModified":"1301901766000","name":"Michael Barry","type":"Person","_key":"8713"} +{"label":"Boyd Banks","version":30,"id":"20196","lastModified":"1299496069000","name":"Boyd Banks","type":"Person","_key":"8714"} +{"label":"Inna Korobkina","version":22,"id":"101255","lastModified":"1301902020000","name":"Inna Korobkina","type":"Person","_key":"8715"} +{"label":"Kim Poirier","version":26,"id":"101250","lastModified":"1301901443000","name":"Kim Poirier","type":"Person","_key":"8716"} +{"label":"Do the Right Thing","description":"Do The Right Thing takes place on a hot summer day in Brooklyn and depicts the racial conflict between an Italian American pizza restaurant owner and his African American customers and how things erupt into a violent outbreak. This Spike Lee Joint touches on themes of segregation and apartheid in the USA.","id":"925","runtime":120,"imdbId":"tt0097216","version":467,"lastModified":"1302026296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b1\/4bc90e4d017a3c57fe0051b1\/do-the-right-thing-mid.jpg","studio":"40 Acres & a Mule Filmworks","genre":"Comedy","title":"Do the Right Thing","releaseDate":613785600000,"language":"en","type":"Movie","_key":"8717"} +{"label":"Ossie Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e0f\/4c682e185e73d63460000e0f\/ossie-davis-profile.jpg","version":46,"id":"15531","lastModified":"1301974899000","name":"Ossie Davis","type":"Person","_key":"8718"} +{"label":"Ruby Dee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4cace10e7b9aa11a31000002\/ruby-dee-profile.jpg","version":34,"id":"15532","lastModified":"1301901331000","name":"Ruby Dee","type":"Person","_key":"8719"} +{"label":"Paul Benjamin","version":25,"id":"15534","lastModified":"1301901519000","name":"Paul Benjamin","type":"Person","_key":"8720"} +{"label":"Robin Harris","version":19,"id":"15535","lastModified":"1301901691000","name":"Robin Harris","type":"Person","_key":"8721"} +{"label":"Steve White","version":19,"id":"15536","lastModified":"1301901519000","name":"Steve White","type":"Person","_key":"8722"} +{"label":"Leonard L. Thomas","version":25,"id":"15537","lastModified":"1301901368000","name":"Leonard L. Thomas","type":"Person","_key":"8723"} +{"label":"Martin Lawrence","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fa\/4d2880b35e73d626bc0024fa\/martin-lawrence-profile.jpg","biography":"<P><FONT size=3><FONT face=\"Times New Roman\"><B><SPAN style=\"mso-ansi-language: EN\" lang=EN>Martin Fitzgerald Lawrence <\/SPAN><\/B><SPAN style=\"mso-ansi-language: EN\" lang=EN>(born April 16, 1965) is an American actor, film director, film producer, screenwriter, and comedian. He came to fame during the 1990s, establishing a Hollywood career as a leading actor, most notably the films <I>Bad Boy,<\/I> <I>Bad Boys II <\/I><SPAN style=\"mso-bidi-font-style: italic\">and<I> Big Momma\u2019s House<\/I><\/SPAN>. L","version":147,"birthday":"-148698000000","id":"78029","birthplace":"Frankfurt am Main","lastModified":"1301901079000","name":"Martin Lawrence","type":"Person","_key":"8724"} +{"label":"Galaxy Quest","description":"The alumni cast of a cult space TV show have to play their roles as the real thing when an alien race needs their help.","id":"926","runtime":102,"imdbId":"tt0177789","trailer":"http:\/\/www.youtube.com\/watch?v=OBk6EI4c7p0","version":445,"lastModified":"1301901552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e4\/4bc90e58017a3c57fe0051e4\/galaxy-quest-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Galaxy Quest","releaseDate":945907200000,"language":"en","tagline":"A comedy of Galactic Proportions","type":"Movie","_key":"8725"} +{"label":"Dean Parisot","version":24,"id":"15002","lastModified":"1301901242000","name":"Dean Parisot","type":"Person","_key":"8726"} +{"label":"Daryl Mitchell","version":26,"id":"15028","lastModified":"1301901398000","name":"Daryl Mitchell","type":"Person","_key":"8727"} +{"label":"Enrico Colantoni","version":27,"id":"15029","lastModified":"1301901408000","name":"Enrico Colantoni","type":"Person","_key":"8728"} +{"label":"Robin Sachs","version":17,"id":"15030","lastModified":"1301901640000","name":"Robin Sachs","type":"Person","_key":"8729"} +{"label":"Patrick Breen","version":23,"id":"15031","lastModified":"1301901372000","name":"Patrick Breen","type":"Person","_key":"8730"} +{"label":"Jed Rees","version":22,"id":"15032","lastModified":"1301901661000","name":"Jed Rees","type":"Person","_key":"8731"} +{"label":"Justin Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15f\/4bd88ab8017a3c1c0500015f\/justin-long-profile.jpg","biography":"Justin Jacob Long is an American film and television actor. He is best known for his roles in the films Jeepers Creepers, Dodgeball and Live Free or Die Hard, and his personification of a Mac in Apple's \"Get a Mac\" advertisement campaign.","version":197,"birthday":"265590000000","id":"15033","birthplace":"Fairfield, Connecticut, USA","lastModified":"1301904054000","name":"Justin Long","type":"Person","_key":"8732"} +{"label":"Jeremy Howard","version":25,"id":"15034","lastModified":"1301901440000","name":"Jeremy Howard","type":"Person","_key":"8733"} +{"label":"Kaitlin Cullum","version":18,"id":"15035","lastModified":"1301901415000","name":"Kaitlin Cullum","type":"Person","_key":"8734"} +{"label":"Jonathan Feyer","version":17,"id":"15036","lastModified":"1301901556000","name":"Jonathan Feyer","type":"Person","_key":"8735"} +{"label":"Gremlins","description":"When Billy Peltzer is given a small creature called a Mogwai by his father, he is unaware of the carnage he is about to encounter. There is a huge responsibility in looking after Gizmo as there are certain rules which must be followed. The Mogwai must be kept away from bright light, never made wet and never, ever be fed after midnight. When an accident occurs involving Gizmo and water, the next evolution stage of the Mogwai appears, and it isn't nice at all.","id":"927","runtime":106,"imdbId":"tt0087363","trailer":"http:\/\/www.youtube.com\/watch?v=HUX4gSPv810","version":679,"lastModified":"1301949828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d7\/4d87e86b7b9aa137cc0005d7\/gremlins-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"Gremlins","releaseDate":455500800000,"language":"en","tagline":"Don't get him wet, keep him out of bright light, and never feed him after midnight.","type":"Movie","_key":"8736"} +{"label":"Hoyt Axton","version":31,"id":"16166","lastModified":"1301924691000","name":"Hoyt Axton","type":"Person","_key":"8737"} +{"label":"John Louie","version":23,"id":"16167","lastModified":"1301924691000","name":"John Louie","type":"Person","_key":"8738"} +{"label":"Keye Luke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4c022777017a3c702a00122c\/keye-luke-profile.jpg","version":60,"birthday":"-2068246800000","id":"16103","birthplace":"Guangzhou, China","lastModified":"1301925379000","name":"Keye Luke","type":"Person","_key":"8739"} +{"label":"Don Steele","version":29,"id":"16168","lastModified":"1301924691000","name":"Don Steele","type":"Person","_key":"8740"} +{"label":"Susan Burgess","version":22,"id":"16169","lastModified":"1301924691000","name":"Susan Burgess","type":"Person","_key":"8741"} +{"label":"Scott Brady","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77d\/4be2c38d017a3c35bb00077d\/scott-brady-profile.jpg","version":43,"id":"14847","lastModified":"1301985766000","name":"Scott Brady","type":"Person","_key":"8742"} +{"label":"Zach Galligan","version":36,"id":"16170","lastModified":"1301925378000","name":"Zach Galligan","type":"Person","_key":"8743"} +{"label":"Phoebe Cates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9e\/4d8eb9927b9aa16761001a9e\/phoebe-cates-profile.jpg","version":50,"birthday":"-203994000000","id":"16171","birthplace":"New York City, New York, USA","lastModified":"1301925378000","name":"Phoebe Cates","type":"Person","_key":"8744"} +{"label":"Donald Elson","version":24,"id":"16172","lastModified":"1301924691000","name":"Donald Elson","type":"Person","_key":"8745"} +{"label":"Belinda Balaski","version":37,"id":"16173","lastModified":"1301924691000","name":"Belinda Balaski","type":"Person","_key":"8746"} +{"label":"Gremlins 2: The New Batch","description":"Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!","id":"928","runtime":106,"imdbId":"tt0099700","trailer":"http:\/\/www.youtube.com\/watch?v=MyQWS3PQXL4","version":452,"lastModified":"1301949539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/212\/4bc90e60017a3c57fe005212\/gremlins-2-the-new-batch-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"Gremlins 2: The New Batch","releaseDate":645408000000,"language":"en","tagline":"Here they grow again.","type":"Movie","_key":"8747"} +{"label":"Robert Picardo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4d607c297b9aa154c7004034\/robert-picardo-profile.jpg","version":46,"id":"16180","lastModified":"1301925379000","name":"Robert Picardo","type":"Person","_key":"8748"} +{"label":"Haviland Morris","version":33,"id":"16181","lastModified":"1301925379000","name":"Haviland Morris","type":"Person","_key":"8749"} +{"label":"Jackie Joseph","version":26,"id":"16182","lastModified":"1301925379000","name":"Jackie Joseph","type":"Person","_key":"8750"} +{"label":"Gedde Watanabe","version":38,"birthday":"-458182800000","id":"16183","birthplace":"Ogden, Utah, USA","lastModified":"1301925379000","name":"Gedde Watanabe","type":"Person","_key":"8751"} +{"label":"Don Stanton","version":22,"id":"16184","lastModified":"1301925379000","name":"Don Stanton","type":"Person","_key":"8752"} +{"label":"Dan Stanton","version":22,"id":"16185","lastModified":"1301925379000","name":"Dan Stanton","type":"Person","_key":"8753"} +{"label":"Shawn Nelson","version":21,"id":"16186","lastModified":"1301925379000","name":"Shawn Nelson","type":"Person","_key":"8754"} +{"label":"Godzilla","description":"When a freighter is viciously attacked in the Pacific Ocean, a team of experts -- including biologist Niko Tatopoulos and scientists Elsie Chapman and Mendel Craven -- concludes that an oversized reptile is the culprit. Before long, the giant lizard is loose in Manhattan, destroying everything within its reach. The team chases the monster to Madison Square Garden, where a brutal battle ensues.","id":"929","runtime":140,"imdbId":"tt0120685","trailer":"http:\/\/www.youtube.com\/watch?v=1522","version":926,"lastModified":"1301949256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/229\/4bc90e66017a3c57fe005229\/godzilla-mid.jpg","studio":"Tristar Pictures","genre":"Action","title":"Godzilla","releaseDate":895449600000,"language":"en","tagline":"Size does matter.","type":"Movie","_key":"8755"} +{"label":"Kevin Dunn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4c80e8325e73d65750000028\/kevin-dunn-profile.jpg","version":94,"birthday":"-421462800000","id":"14721","birthplace":"Chicago, Illinois, USA","lastModified":"1300090409000","name":"Kevin Dunn","type":"Person","_key":"8756"} +{"label":"Arabella Field","version":20,"id":"14722","lastModified":"1299494836000","name":"Arabella Field","type":"Person","_key":"8757"} +{"label":"Vicki Lewis","version":31,"id":"14723","lastModified":"1301901412000","name":"Vicki Lewis","type":"Person","_key":"8758"} +{"label":"Doug Savant","version":27,"id":"14737","lastModified":"1301901488000","name":"Doug Savant","type":"Person","_key":"8759"} +{"label":"Lorry Goldman","version":23,"id":"14739","lastModified":"1301901652000","name":"Lorry Goldman","type":"Person","_key":"8760"} +{"label":"Christian Aubert","version":21,"id":"14740","lastModified":"1301901488000","name":"Christian Aubert","type":"Person","_key":"8761"} +{"label":"Philippe Bergeron","version":30,"id":"14741","lastModified":"1301901358000","name":"Philippe Bergeron","type":"Person","_key":"8762"} +{"label":"Frank Bruynbroek","version":21,"id":"14742","lastModified":"1301901488000","name":"Frank Bruynbroek","type":"Person","_key":"8763"} +{"label":"Die gro\u00dfe Liebe","description":"The Great Love is a Nazi propaganda film from Rolf Hansen from 1942. This war time film tells the story of a Danish female singer and the chronicles of her love with a German fighter pilot during the war.","id":"930","runtime":100,"imdbId":"tt0034815","version":62,"lastModified":"1301906766000","studio":"UFA Universum-Film AG","genre":"Drama","title":"Die gro\u00dfe Liebe","releaseDate":-869616000000,"language":"en","type":"Movie","_key":"8764"} +{"label":"Rolf Hansen","version":18,"id":"14110","lastModified":"1301901367000","name":"Rolf Hansen","type":"Person","_key":"8765"} +{"label":"Zarah Leander","version":17,"id":"14117","lastModified":"1301901449000","name":"Zarah Leander","type":"Person","_key":"8766"} +{"label":"Grethe Weiser","version":21,"id":"14118","lastModified":"1301901502000","name":"Grethe Weiser","type":"Person","_key":"8767"} +{"label":"Viktor Staal","version":18,"id":"14119","lastModified":"1301901415000","name":"Viktor Staal","type":"Person","_key":"8768"} +{"label":"Paul H\u00f6rbiger","version":26,"id":"14120","lastModified":"1299497367000","name":"Paul H\u00f6rbiger","type":"Person","_key":"8769"} +{"label":"Wolfgang Preiss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4ca3f00e5e73d636fc0000b7\/wolfgang-preiss-profile.jpg","version":43,"id":"14121","lastModified":"1301901421000","name":"Wolfgang Preiss","type":"Person","_key":"8770"} +{"label":"Hans Schwarz Jr.","version":18,"id":"14122","lastModified":"1301901685000","name":"Hans Schwarz Jr.","type":"Person","_key":"8771"} +{"label":"Victor Janson","version":22,"id":"14123","lastModified":"1302002936000","name":"Victor Janson","type":"Person","_key":"8772"} +{"label":"Leopold von Ledebur","version":17,"id":"14124","lastModified":"1301901685000","name":"Leopold von Ledebur","type":"Person","_key":"8773"} +{"label":"Julia Serda","version":17,"id":"14125","lastModified":"1301901685000","name":"Julia Serda","type":"Person","_key":"8774"} +{"label":"Paul Bildt","version":23,"id":"14126","lastModified":"1301901573000","name":"Paul Bildt","type":"Person","_key":"8775"} +{"label":"Erich Dunskus","version":22,"id":"14127","lastModified":"1301901664000","name":"Erich Dunskus","type":"Person","_key":"8776"} +{"label":"Wilhelm Althaus","version":18,"id":"14128","lastModified":"1301901830000","name":"Wilhelm Althaus","type":"Person","_key":"8777"} +{"label":"Agnes Windeck","version":19,"id":"14129","lastModified":"1301901799000","name":"Agnes Windeck","type":"Person","_key":"8778"} +{"label":"Olga Engl","version":19,"id":"14130","lastModified":"1301901502000","name":"Olga Engl","type":"Person","_key":"8779"} +{"label":"Jakob Tiedtke","version":28,"id":"14131","lastModified":"1301901976000","name":"Jakob Tiedtke","type":"Person","_key":"8780"} +{"label":"Don\u2019t Look Now","description":"Don\u2019t Look Now is a thriller starring Julie Christie and Donald Sutherland as a married couple who tragically loose their daughter and thereafter are confronted with only mysterious occurrences. ","id":"931","runtime":110,"imdbId":"tt0069995","trailer":"http:\/\/www.youtube.com\/watch?v=2711","version":73,"lastModified":"1301902982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d8\/4d0e619d7b9aa102580028d8\/don-t-look-now-mid.jpg","studio":"A Vitaphone Production","genre":"Drama","title":"Don\u2019t Look Now","releaseDate":123724800000,"language":"en","type":"Movie","_key":"8781"} +{"label":"Nicolas Roeg","version":49,"id":"14132","lastModified":"1301901203000","name":"Nicolas Roeg","type":"Person","_key":"8782"} +{"label":"Hilary Mason","version":22,"id":"14146","lastModified":"1301901339000","name":"Hilary Mason","type":"Person","_key":"8783"} +{"label":"Clelia Matania","version":20,"id":"14147","lastModified":"1301901383000","name":"Clelia Matania","type":"Person","_key":"8784"} +{"label":"Massimo Serato","version":30,"id":"14148","lastModified":"1301901666000","name":"Massimo Serato","type":"Person","_key":"8785"} +{"label":"Renato Scarpa","version":32,"id":"14149","lastModified":"1301901287000","name":"Renato Scarpa","type":"Person","_key":"8786"} +{"label":"Giorgio Trestini","version":19,"id":"14150","lastModified":"1301901627000","name":"Giorgio Trestini","type":"Person","_key":"8787"} +{"label":"Leopoldo Trieste","version":25,"id":"14151","lastModified":"1301901443000","name":"Leopoldo Trieste","type":"Person","_key":"8788"} +{"label":"David Tree","version":19,"id":"14152","lastModified":"1301901479000","name":"David Tree","type":"Person","_key":"8789"} +{"label":"Ann Rye","version":21,"id":"14153","lastModified":"1301901543000","name":"Ann Rye","type":"Person","_key":"8790"} +{"label":"Nicholas Salter","version":19,"id":"14154","lastModified":"1301901627000","name":"Nicholas Salter","type":"Person","_key":"8791"} +{"label":"Sharon Williams","version":19,"id":"14155","lastModified":"1301901751000","name":"Sharon Williams","type":"Person","_key":"8792"} +{"label":"Bruno Cattaneo","version":20,"id":"14156","lastModified":"1301901627000","name":"Bruno Cattaneo","type":"Person","_key":"8793"} +{"label":"Adelina Poerio","version":19,"id":"14157","lastModified":"1301901627000","name":"Adelina Poerio","type":"Person","_key":"8794"} +{"label":"Die M\u00f6rder sind unter uns","description":"Murderers Among Us was the first German film after the Second World War. Filmed in the Soviet occupied section of Berlin in the summer of 1946. The film would be the first film about the wreckage from the war and the first film produced by DEFA.","id":"932","runtime":91,"imdbId":"tt0038769","version":70,"lastModified":"1301904247000","studio":"DEFA","genre":"Drama","title":"Die M\u00f6rder sind unter uns","releaseDate":-732585600000,"language":"en","type":"Movie","_key":"8795"} +{"label":"Hans Heinrich","version":22,"id":"14163","lastModified":"1301901547000","name":"Hans Heinrich","type":"Person","_key":"8796"} +{"label":"Wolfgang Staudte","version":20,"id":"14158","lastModified":"1301901515000","name":"Wolfgang Staudte","type":"Person","_key":"8797"} +{"label":"Hildegard Knef","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a4\/4bfabfc2017a3c70370004a4\/hildegard-knef-profile.jpg","version":44,"id":"14168","lastModified":"1301901318000","name":"Hildegard Knef","type":"Person","_key":"8798"} +{"label":"Ernst Wilhelm Borchert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55c\/4cb2416b5e73d65b8100055c\/ernst-wilhelm-borchert-profile.jpg","version":19,"id":"14169","lastModified":"1301901361000","name":"Ernst Wilhelm Borchert","type":"Person","_key":"8799"} +{"label":"Erna Sellmer","version":20,"id":"14170","lastModified":"1301901482000","name":"Erna Sellmer","type":"Person","_key":"8800"} +{"label":"Arno Paulsen","version":18,"id":"14171","lastModified":"1301901387000","name":"Arno Paulsen","type":"Person","_key":"8801"} +{"label":"Michael G\u00fcnther","version":19,"id":"14173","lastModified":"1301901830000","name":"Michael G\u00fcnther","type":"Person","_key":"8802"} +{"label":"Christian Schwarzwald","version":18,"id":"14174","lastModified":"1301901830000","name":"Christian Schwarzwald","type":"Person","_key":"8803"} +{"label":"Robert Forsch","version":16,"id":"14175","lastModified":"1301901757000","name":"Robert Forsch","type":"Person","_key":"8804"} +{"label":"Elly Burgmer","version":17,"id":"14176","lastModified":"1301901757000","name":"Elly Burgmer","type":"Person","_key":"8805"} +{"label":"Marlise Ludwig","version":17,"id":"14177","lastModified":"1301901806000","name":"Marlise Ludwig","type":"Person","_key":"8806"} +{"label":"Hilde Adolphi","version":16,"id":"14178","lastModified":"1301901757000","name":"Hilde Adolphi","type":"Person","_key":"8807"} +{"label":"Albert Johannes","version":16,"id":"14179","lastModified":"1301901757000","name":"Albert Johannes","type":"Person","_key":"8808"} +{"label":"Ursula Krieg","version":16,"id":"14180","lastModified":"1301901757000","name":"Ursula Krieg","type":"Person","_key":"8809"} +{"label":"Wolfgang Dohnberg","version":16,"id":"14181","lastModified":"1301901757000","name":"Wolfgang Dohnberg","type":"Person","_key":"8810"} +{"label":"Ernst Stahl-Nachbaur","version":16,"id":"14182","lastModified":"1301901630000","name":"Ernst Stahl-Nachbaur","type":"Person","_key":"8811"} +{"label":"Wanda Peters","version":18,"id":"14183","lastModified":"1301901757000","name":"Wanda Peters","type":"Person","_key":"8812"} +{"label":"Christiane Hanson","version":16,"id":"14184","lastModified":"1301901757000","name":"Christiane Hanson","type":"Person","_key":"8813"} +{"label":"K\u00e4the J\u00f6ken-K\u00f6nig","version":17,"id":"14185","lastModified":"1301901757000","name":"K\u00e4the J\u00f6ken-K\u00f6nig","type":"Person","_key":"8814"} +{"label":"Hei\u00dfer Sommer","description":"The 1968 East German film Hei\u00dfer Sommer brought six million East Germans into the theaters and today is regarded as one of the greatest DEFA films. Actors Frank Schobel and Chris Doerk were made famous from the film.","id":"933","runtime":97,"imdbId":"tt0061756","version":68,"lastModified":"1301906187000","studio":"DEFA","genre":"Comedy","title":"Hei\u00dfer Sommer","releaseDate":-48297600000,"language":"en","type":"Movie","_key":"8815"} +{"label":"Joachim Hasler","version":22,"id":"14198","lastModified":"1301901519000","name":"Joachim Hasler","type":"Person","_key":"8816"} +{"label":"Frank Sch\u00f6bel","version":18,"id":"14206","lastModified":"1301901593000","name":"Frank Sch\u00f6bel","type":"Person","_key":"8817"} +{"label":"Hanns-Michael Schmidt","version":17,"id":"14207","lastModified":"1301901363000","name":"Hanns-Michael Schmidt","type":"Person","_key":"8818"} +{"label":"Georg-Peter Welzel","version":17,"id":"14208","lastModified":"1301901416000","name":"Georg-Peter Welzel","type":"Person","_key":"8819"} +{"label":"Hans Mietzner","version":17,"id":"14210","lastModified":"1301901681000","name":"Hans Mietzner","type":"Person","_key":"8820"} +{"label":"Norbert Speer","version":18,"id":"14211","lastModified":"1301901695000","name":"Norbert Speer","type":"Person","_key":"8821"} +{"label":"Gerd Nordheim","version":17,"id":"14212","lastModified":"1301901685000","name":"Gerd Nordheim","type":"Person","_key":"8822"} +{"label":"Regine Albrecht","version":17,"id":"14213","lastModified":"1301901685000","name":"Regine Albrecht","type":"Person","_key":"8823"} +{"label":"Chris Doerk","version":17,"id":"14214","lastModified":"1301901664000","name":"Chris Doerk","type":"Person","_key":"8824"} +{"label":"Madeleine Lierck","version":17,"id":"14215","lastModified":"1301901976000","name":"Madeleine Lierck","type":"Person","_key":"8825"} +{"label":"Bruno Carstens","version":20,"id":"14216","lastModified":"1301901976000","name":"Bruno Carstens","type":"Person","_key":"8826"} +{"label":"Marianne W\u00fcnscher","version":23,"id":"14217","lastModified":"1301901799000","name":"Marianne W\u00fcnscher","type":"Person","_key":"8827"} +{"label":"Werner Lierck","version":18,"id":"14218","lastModified":"1301901854000","name":"Werner Lierck","type":"Person","_key":"8828"} +{"label":"Otto Krieg Helbig","version":18,"id":"14219","lastModified":"1301901664000","name":"Otto Krieg Helbig","type":"Person","_key":"8829"} +{"label":"Hans Fl\u00f6ssel","version":17,"id":"14220","lastModified":"1301901976000","name":"Hans Fl\u00f6ssel","type":"Person","_key":"8830"} +{"label":"Rififi","description":"Rififi is a classic film noir with a famous 20 minute long break-in in absolute silence. A classic film noir. ","id":"934","runtime":146,"imdbId":"tt0048021","version":255,"lastModified":"1302024458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/012\/4bea51f4017a3c1e31000012\/du-rififi-chez-les-hommes-mid.jpg","studio":"Soci\u00e9t\u00e9 Nationale Path\u00e9 Cin\u00e9ma","genre":"Crime","title":"Rififi","releaseDate":-464572800000,"language":"en","type":"Movie","_key":"8831"} +{"label":"Jules Dassin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/316\/4cb5d9b47b9aa138d9000316\/jules-dassin-profile.jpg","version":44,"id":"14227","lastModified":"1301901286000","name":"Jules Dassin","type":"Person","_key":"8832"} +{"label":"Jean Servais","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/732\/4be2c30a017a3c35b5000732\/jean-servais-profile.jpg","version":24,"id":"14242","lastModified":"1301901588000","name":"Jean Servais","type":"Person","_key":"8833"} +{"label":"Robert Manuel","version":20,"id":"14243","lastModified":"1301901432000","name":"Robert Manuel","type":"Person","_key":"8834"} +{"label":"Janine Darcey","version":18,"id":"14244","lastModified":"1301901479000","name":"Janine Darcey","type":"Person","_key":"8835"} +{"label":"Marie Sabouret","version":18,"id":"14245","lastModified":"1301901627000","name":"Marie Sabouret","type":"Person","_key":"8836"} +{"label":"Robert Hossein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/361\/4c9b63c55e73d6554d000361\/robert-hossein-profile.jpg","version":50,"id":"14246","lastModified":"1302033373000","name":"Robert Hossein","type":"Person","_key":"8837"} +{"label":"Claude Sylvain","version":22,"id":"14247","lastModified":"1301901673000","name":"Claude Sylvain","type":"Person","_key":"8838"} +{"label":"Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb","description":"An insane general starts a process to nuclear holocaust that a war room of politicians and generals frantically try to stop. A classic black and white war satire from director Stanley Kubrick starring Peter Sellers.","id":"935","runtime":94,"imdbId":"tt0057012","trailer":"http:\/\/www.youtube.com\/watch?v=pgd_aJBBRfs","version":350,"lastModified":"1301906495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a1\/4d94d2265e73d622770020a1\/dr-strangelove-or-how-i-learned-to-stop-worrying-and-love-the-bomb-mid.jpg","studio":"Hawk Films","genre":"Comedy","title":"Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb","releaseDate":-186969600000,"language":"en","type":"Movie","_key":"8839"} +{"label":"Slim Pickens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/358\/4c4d92107b9aa1237f000358\/slim-pickens-profile.jpg","version":51,"id":"14253","lastModified":"1302002585000","name":"Slim Pickens","type":"Person","_key":"8840"} +{"label":"Tracy Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ae\/4c4d913e7b9aa123800003ae\/tracy-reed-profile.jpg","version":26,"id":"126354","lastModified":"1301902469000","name":"Tracy Reed","type":"Person","_key":"8841"} +{"label":"The Pink Panther","description":"The Pink Panther is the first film from The Pink Panther series that was put together using both animated as well as filmed sequences. Starring Peter Sellers this film from director Blake Edwards is now a cult classic.","id":"936","runtime":113,"imdbId":"tt0057413","trailer":"http:\/\/www.youtube.com\/watch?v=xMiRxq12Fx0","version":368,"lastModified":"1301903945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4d8d17365e73d65ed6000071\/the-pink-panther-mid.jpg","studio":"United Artists","genre":"Comedy","title":"The Pink Panther","releaseDate":-190512000000,"language":"en","type":"Movie","_key":"8842"} +{"label":"David Niven","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4c4740587b9aa15ddf00030c\/david-niven-profile.jpg","version":85,"birthday":"-1888362000000","id":"14261","birthplace":"London, England","lastModified":"1302026341000","name":"David Niven","type":"Person","_key":"8843"} +{"label":"Capucine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26b\/4c6bf3587b9aa13ab400026b\/capucine-profile.jpg","version":29,"id":"14262","lastModified":"1301901209000","name":"Capucine","type":"Person","_key":"8844"} +{"label":"Colin Gordon","version":23,"id":"14263","lastModified":"1301901709000","name":"Colin Gordon","type":"Person","_key":"8845"} +{"label":"John Le Mesurier","version":40,"id":"14264","lastModified":"1301901244000","name":"John Le Mesurier","type":"Person","_key":"8846"} +{"label":"James Lanphier","version":20,"id":"14265","lastModified":"1301901761000","name":"James Lanphier","type":"Person","_key":"8847"} +{"label":"Guy Thomajan","version":21,"id":"14266","lastModified":"1301901773000","name":"Guy Thomajan","type":"Person","_key":"8848"} +{"label":"The Pink Panther Collection","description":"The Pink Panther is a movie series of live action mixed with animation totaling in six official films and three not official films. The main character is a clumsy inspector named Jacques Clouseau who is played by Peter Sellers in the official Pink Panther films. Today The Pink Panther is the famous trademark of a huge franchise. ","id":"937","version":291,"lastModified":"1301947586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e78\/4d4252f85e73d65729000e78\/the-pink-panther-collection-mid.jpg","title":"The Pink Panther Collection","language":"en","type":"Movie","_key":"8849"} +{"label":"For a Few Dollars More","description":"For a Few Dollars More is a Spaghetti Western from Italian director Sergio Leone from 1965 and the sequel to A Fistful of Dollars.","id":"938","runtime":130,"imdbId":"tt0059578","trailer":"http:\/\/www.youtube.com\/watch?v=XsS3GLw2-DA","version":196,"lastModified":"1301906956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/162\/4ce75f8a5e73d6258f000162\/for-a-few-dollars-more-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"For a Few Dollars More","releaseDate":-127440000000,"language":"en","type":"Movie","_key":"8850"} +{"label":"Mara Krupp","version":22,"id":"14278","lastModified":"1301901593000","name":"Mara Krupp","type":"Person","_key":"8851"} +{"label":"Panos Papadopulos","version":22,"id":"14280","lastModified":"1301902027000","name":"Panos Papadopulos","type":"Person","_key":"8852"} +{"label":"The Jazz Singer","description":"The Jazz Singer is the first full length feature film to use sound. Director Alan Crosland created the precursor of musical films.","id":"939","runtime":89,"imdbId":"tt0018037","version":164,"lastModified":"1301905291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc90e78017a3c57fe0052a7\/the-jazz-singer-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Jazz Singer","releaseDate":-1332979200000,"language":"en","type":"Movie","_key":"8853"} +{"label":"Alan Crosland","version":20,"id":"14281","lastModified":"1301901596000","name":"Alan Crosland","type":"Person","_key":"8854"} +{"label":"Al Jolson","version":19,"id":"14286","lastModified":"1301901493000","name":"Al Jolson","type":"Person","_key":"8855"} +{"label":"May McAvoy","version":18,"id":"14287","lastModified":"1301901449000","name":"May McAvoy","type":"Person","_key":"8856"} +{"label":"Eugenie Besserer","version":19,"id":"14288","lastModified":"1301901421000","name":"Eugenie Besserer","type":"Person","_key":"8857"} +{"label":"Otto Lederer","version":21,"id":"14289","lastModified":"1301996123000","name":"Otto Lederer","type":"Person","_key":"8858"} +{"label":"Robert Gordon","version":52,"id":"9643","lastModified":"1301901664000","name":"Robert Gordon","type":"Person","_key":"8859"} +{"label":"Richard Tucker","version":19,"id":"14290","lastModified":"1301901834000","name":"Richard Tucker","type":"Person","_key":"8860"} +{"label":"The Lady Vanishes","description":"Travellers on a trans-European train are delayed for a night due to bad weather in a small fictional country called Mandrika. The passengers cram into the small village hotel where socialite Iris Henderson meets an old governess called Miss Froy. Shortly after the journey restarts, Miss Froy disappears.","id":"940","runtime":97,"imdbId":"tt0030341","version":332,"lastModified":"1301903752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b8\/4d7bcbeb5e73d651740014b8\/the-lady-vanishes-mid.jpg","studio":"Gaumont British Production","genre":"Comedy","title":"The Lady Vanishes","releaseDate":-983577600000,"language":"en","type":"Movie","_key":"8861"} +{"label":"Margaret Lockwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9b\/4be5b805017a3c35bf000a9b\/margaret-lockwood-profile.jpg","biography":"Margaret Lockwood, CBE (15 September 1916 \u2013 15 July 1990) was an English actress, notable for her performance in the 1945 Gainsborough movie, The Wicked Lady.\n\nMargaret Mary Lockwood Day was born in Karachi, British India (now Karachi, Pakistan), to an English administrator of a railway company and his Scottish wife. Lockwood's family returned to the United Kingdom when she was a child, along with her brother. She attended Sydenham High School for girls, and a ladies school in Kensington, London","version":37,"birthday":"-1681869600000","id":"14298","birthplace":"Karachi, British India","lastModified":"1301904086000","name":"Margaret Lockwood","type":"Person","_key":"8862"} +{"label":"Dame May Whitty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ee\/4c6eaff47b9aa13ab60007ee\/dame-may-whitty-profile.jpg","version":30,"id":"14299","lastModified":"1301901335000","name":"Dame May Whitty","type":"Person","_key":"8863"} +{"label":"Cecil Parker","version":36,"id":"14300","lastModified":"1301901443000","name":"Cecil Parker","type":"Person","_key":"8864"} +{"label":"Linden Travers","version":21,"id":"14301","lastModified":"1301901915000","name":"Linden Travers","type":"Person","_key":"8865"} +{"label":"Naunton Wayne","version":24,"id":"14302","lastModified":"1301901854000","name":"Naunton Wayne","type":"Person","_key":"8866"} +{"label":"Basil Radford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16a\/4c52f3ed7b9aa147f400016a\/basil-radford-profile.jpg","version":28,"id":"14303","lastModified":"1301901859000","name":"Basil Radford","type":"Person","_key":"8867"} +{"label":"Mary Clare","version":22,"id":"14304","lastModified":"1301901915000","name":"Mary Clare","type":"Person","_key":"8868"} +{"label":"Emile Boreo","version":19,"id":"14305","lastModified":"1301902020000","name":"Emile Boreo","type":"Person","_key":"8869"} +{"label":"Googie Withers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b33\/4c0d093f017a3c7e89000b33\/googie-withers-profile.jpg","version":26,"birthday":"-1666486800000","id":"14306","birthplace":"Karachi, British India","lastModified":"1301901314000","name":"Googie Withers","type":"Person","_key":"8870"} +{"label":"Sally Stewart","version":19,"id":"14307","lastModified":"1301902020000","name":"Sally Stewart","type":"Person","_key":"8871"} +{"label":"Philip Leaver","version":18,"id":"14308","lastModified":"1301901914000","name":"Philip Leaver","type":"Person","_key":"8872"} +{"label":"Selma Vaz Dias","version":19,"id":"14309","lastModified":"1301901914000","name":"Selma Vaz Dias","type":"Person","_key":"8873"} +{"label":"Lethal Weapon","description":"Veteran buttoned-down LAPD detective Roger Murtaugh is partnered with unhinged cop Martin Riggs, who -- distraught after his wife's death -- has a death wish and takes unnecessary risks with criminals at every turn. The odd couple embark on their first homicide investigation as partners, involving a young woman known to Murtaugh with ties to a drug and prostitution ring.","id":"941","runtime":110,"imdbId":"tt0093409","trailer":"http:\/\/www.youtube.com\/watch?v=GUorM4nTX7k","version":844,"lastModified":"1301922108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d4\/4bc90e7f017a3c57fe0052d4\/lethal-weapon-mid.jpg","genre":"Action","title":"Lethal Weapon","releaseDate":541987200000,"language":"en","tagline":"If these two can learn to stand each other... the bad guys don't stand a chance.","type":"Movie","_key":"8874"} +{"label":"Mitch Ryan","version":44,"id":"14312","lastModified":"1301901085000","name":"Mitch Ryan","type":"Person","_key":"8875"} +{"label":"Darlene Love","version":36,"id":"14313","lastModified":"1301904082000","name":"Darlene Love","type":"Person","_key":"8876"} +{"label":"Traci Wolfe","version":29,"id":"14314","lastModified":"1301901078000","name":"Traci Wolfe","type":"Person","_key":"8877"} +{"label":"Jackie Swanson","version":22,"id":"14315","lastModified":"1301901101000","name":"Jackie Swanson","type":"Person","_key":"8878"} +{"label":"Damon Hines","version":31,"id":"14316","lastModified":"1301901079000","name":"Damon Hines","type":"Person","_key":"8879"} +{"label":"Ebonie Smith","version":29,"id":"14317","lastModified":"1301901079000","name":"Ebonie Smith","type":"Person","_key":"8880"} +{"label":"Gilles Kohler","version":25,"id":"14318","lastModified":"1301901461000","name":"Gilles Kohler","type":"Person","_key":"8881"} +{"label":"Lycia Naff","version":23,"id":"14319","lastModified":"1301901107000","name":"Lycia Naff","type":"Person","_key":"8882"} +{"label":"Jack Thibeau","version":27,"id":"14320","lastModified":"1301901102000","name":"Jack Thibeau","type":"Person","_key":"8883"} +{"label":"Lethal Weapon 2","description":"In the opening chase, Martin Riggs and Roger Murtaugh stumble across a trunk full of Krugerrands. They follow the trail to a South African diplomat who's using his immunity to conceal a smuggling operation. When he plants a bomb under Murtaugh's toilet, the action explodes!","id":"942","runtime":114,"imdbId":"tt0097733","trailer":"http:\/\/www.youtube.com\/watch?v=b0CuUw0_QWY","version":730,"lastModified":"1301921669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e1\/4bc90e83017a3c57fe0052e1\/lethal-weapon-2-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Lethal Weapon 2","releaseDate":615772800000,"language":"en","tagline":"The magic is back!","type":"Movie","_key":"8884"} +{"label":"Joss Ackland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49c\/4c9f626c5e73d6704d00049c\/joss-ackland-profile.jpg","version":94,"id":"14324","lastModified":"1301954555000","name":"Joss Ackland","type":"Person","_key":"8885"} +{"label":"Derrick O'Connor","version":23,"id":"14325","lastModified":"1301901119000","name":"Derrick O'Connor","type":"Person","_key":"8886"} +{"label":"Patsy Kensit","version":30,"id":"14326","lastModified":"1301901112000","name":"Patsy Kensit","type":"Person","_key":"8887"} +{"label":"Steve Kahan","version":39,"id":"14328","lastModified":"1301901088000","name":"Steve Kahan","type":"Person","_key":"8888"} +{"label":"Dean Norris","version":34,"id":"14329","lastModified":"1301901105000","name":"Dean Norris","type":"Person","_key":"8889"} +{"label":"Juney Smith","version":19,"id":"14330","lastModified":"1301901129000","name":"Juney Smith","type":"Person","_key":"8890"} +{"label":"Nestor Serrano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a8\/4d2746635e73d626c40018a8\/nestor-serrano-profile.jpg","version":30,"id":"14331","lastModified":"1301901101000","name":"Nestor Serrano","type":"Person","_key":"8891"} +{"label":"Philip Suriano","version":19,"id":"14332","lastModified":"1301901129000","name":"Philip Suriano","type":"Person","_key":"8892"} +{"label":"Grand L. Bush","version":29,"id":"14333","lastModified":"1301901119000","name":"Grand L. Bush","type":"Person","_key":"8893"} +{"label":"Allan Dean Moore","version":19,"id":"14334","lastModified":"1301901129000","name":"Allan Dean Moore","type":"Person","_key":"8894"} +{"label":"Lethal Weapon 3","description":"Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.","id":"943","runtime":118,"imdbId":"tt0104714","trailer":"http:\/\/www.youtube.com\/watch?v=0zav5QNxojs","version":534,"lastModified":"1302022022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fd\/4bc90e87017a3c57fe0052fd\/lethal-weapon-3-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Lethal Weapon 3","releaseDate":705024000000,"language":"en","tagline":"The magic is back again!","type":"Movie","_key":"8895"} +{"label":"Stuart Wilson","version":45,"id":"14344","lastModified":"1301901079000","name":"Stuart Wilson","type":"Person","_key":"8896"} +{"label":"Lethal Weapon 4","description":"In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.","id":"944","runtime":127,"imdbId":"tt0122151","trailer":"http:\/\/www.youtube.com\/watch?v=7cpig7OhI98","version":232,"lastModified":"1301902423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/007\/4cdd95715e73d60e0c000007\/lethal-weapon-4-mid.jpg","studio":"Donners' Company","genre":"Action","title":"Lethal Weapon 4","releaseDate":900028800000,"language":"en","tagline":"The Gang's All Here.","type":"Movie","_key":"8897"} +{"label":"Michael Chow","version":33,"id":"21631","lastModified":"1301901118000","name":"Michael Chow","type":"Person","_key":"8898"} +{"label":"Danny Arroyo","version":26,"id":"33386","lastModified":"1301901124000","name":"Danny Arroyo","type":"Person","_key":"8899"} +{"label":"Elizabeth Sung","version":33,"id":"19861","lastModified":"1301901112000","name":"Elizabeth Sung","type":"Person","_key":"8900"} +{"label":"Lethal Weapon Collection","description":"Lethal Weapon is a buddy cop movie series starring Mel Gibson and Danny Glover. A total of four films have been made since the first one in 1987, and all have been a success at the box-office.","id":"945","version":154,"lastModified":"1302021430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/328\/4bc90e8d017a3c57fe005328\/lethal-weapon-mid.jpg","title":"Lethal Weapon Collection","language":"en","type":"Movie","_key":"8901"} +{"label":"Letter from an Unknown Woman","description":"Letter from an Unknown Woman is a drama from Max Ophuls starring Joan Fontaine about an author who receives an anonymous letter.","id":"946","runtime":87,"imdbId":"tt0040536","version":105,"lastModified":"1301944741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/331\/4bc90e91017a3c57fe005331\/letter-from-an-unknown-woman-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Letter from an Unknown Woman","releaseDate":-684115200000,"language":"en","type":"Movie","_key":"8902"} +{"label":"Max Oph\u00fcls","version":25,"id":"14353","lastModified":"1301901502000","name":"Max Oph\u00fcls","type":"Person","_key":"8903"} +{"label":"Mady Christians","version":25,"id":"14357","lastModified":"1301901572000","name":"Mady Christians","type":"Person","_key":"8904"} +{"label":"Marcel Journet","version":18,"id":"14358","lastModified":"1301901509000","name":"Marcel Journet","type":"Person","_key":"8905"} +{"label":"Art Smith","version":31,"id":"14359","lastModified":"1301901842000","name":"Art Smith","type":"Person","_key":"8906"} +{"label":"Carol Yorke","version":17,"id":"14360","lastModified":"1301901830000","name":"Carol Yorke","type":"Person","_key":"8907"} +{"label":"Howard Freeman","version":22,"id":"14361","lastModified":"1301901685000","name":"Howard Freeman","type":"Person","_key":"8908"} +{"label":"John Good","version":19,"id":"14362","lastModified":"1301901830000","name":"John Good","type":"Person","_key":"8909"} +{"label":"Leo B. Pessin","version":17,"id":"14363","lastModified":"1301901685000","name":"Leo B. Pessin","type":"Person","_key":"8910"} +{"label":"Erskine Sanford","version":30,"id":"14364","lastModified":"1301901203000","name":"Erskine Sanford","type":"Person","_key":"8911"} +{"label":"Otto Waldis","version":25,"id":"14365","lastModified":"1301901976000","name":"Otto Waldis","type":"Person","_key":"8912"} +{"label":"Sonja Bryden","version":17,"id":"14366","lastModified":"1301902019000","name":"Sonja Bryden","type":"Person","_key":"8913"} +{"label":"Lawrence of Arabia","description":"Lawrence of Arabia is the classic film from David Lean starring Peter O\u2019Toole and based on the autobiography from Thomas Edward Lawrence who during the first World War was on assignment by the British Empire in Arabia. The film would become a cult classic and is known today as a masterpiece.","id":"947","runtime":216,"imdbId":"tt0056172","trailer":"http:\/\/www.youtube.com\/watch?v=RQA_ldX0VI0","version":226,"lastModified":"1301902447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34f\/4bc90e97017a3c57fe00534f\/lawrence-of-arabia-mid.jpg","genre":"Action","title":"Lawrence of Arabia","releaseDate":-222825600000,"language":"en","type":"Movie","_key":"8914"} +{"label":"Anthony Quayle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4cc834377b9aa16b9c00009a\/anthony-quayle-profile.jpg","version":51,"id":"14371","lastModified":"1301901500000","name":"Anthony Quayle","type":"Person","_key":"8915"} +{"label":"Donald Wolfit","version":22,"id":"14372","lastModified":"1301901447000","name":"Donald Wolfit","type":"Person","_key":"8916"} +{"label":"Zia Mohyeddin","version":21,"id":"14373","lastModified":"1301901479000","name":"Zia Mohyeddin","type":"Person","_key":"8917"} +{"label":"I.S. Johar","version":25,"id":"35250","lastModified":"1301901627000","name":"I.S. Johar","type":"Person","_key":"8918"} +{"label":"Gamil Ratib","version":20,"id":"105634","lastModified":"1301902724000","name":"Gamil Ratib","type":"Person","_key":"8919"} +{"label":"Michel Ray","version":18,"id":"105633","lastModified":"1301902664000","name":"Michel Ray","type":"Person","_key":"8920"} +{"label":"John Dimech","version":18,"id":"105635","lastModified":"1301902719000","name":"John Dimech","type":"Person","_key":"8921"} +{"label":"Halloween","description":"Michael Myers, who just escaped from a mental hospital, goes on a murderous rampage on Halloween night after returning to his hometown of Haddonfield, Ill. Inexplicably, his prize victim seems to be babysitter Laurie. Psychiatrist Dr. Loomis is on a mission to stop Myers in this slasher classic.","id":"948","runtime":91,"imdbId":"tt0077651","trailer":"http:\/\/www.youtube.com\/watch?v=1820","homepage":"http:\/\/www.halloweenmovies.com\/","version":431,"lastModified":"1302020327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4c951b5b7b9aa10d59000145\/halloween-mid.jpg","studio":"Compass International Pictures","genre":"Horror","title":"Halloween","releaseDate":278121600000,"language":"en","tagline":"The Trick Is To Stay Alive!","type":"Movie","_key":"8922"} +{"label":"P.J. Soles","version":37,"id":"15500","lastModified":"1301901261000","name":"P.J. Soles","type":"Person","_key":"8923"} +{"label":"Kyle Richards","version":24,"id":"15503","lastModified":"1301901297000","name":"Kyle Richards","type":"Person","_key":"8924"} +{"label":"Brian Andrews","version":18,"id":"15505","lastModified":"1301901555000","name":"Brian Andrews","type":"Person","_key":"8925"} +{"label":"John Michael Graham","version":18,"id":"15506","lastModified":"1301901488000","name":"John Michael Graham","type":"Person","_key":"8926"} +{"label":"Nancy Stephens","version":19,"id":"15508","lastModified":"1301901555000","name":"Nancy Stephens","type":"Person","_key":"8927"} +{"label":"Mickey Yablans","version":23,"id":"15510","lastModified":"1301901488000","name":"Mickey Yablans","type":"Person","_key":"8928"} +{"label":"Brent Le Page","version":19,"id":"15511","lastModified":"1301901516000","name":"Brent Le Page","type":"Person","_key":"8929"} +{"label":"Adam Hollander","version":18,"id":"15513","lastModified":"1301901555000","name":"Adam Hollander","type":"Person","_key":"8930"} +{"label":"Robert Phalen","version":22,"id":"15515","lastModified":"1301901565000","name":"Robert Phalen","type":"Person","_key":"8931"} +{"label":"Tony Moran","version":20,"id":"15516","lastModified":"1301901508000","name":"Tony Moran","type":"Person","_key":"8932"} +{"label":"Will Sandin","version":18,"id":"15517","lastModified":"1301901488000","name":"Will Sandin","type":"Person","_key":"8933"} +{"label":"Sandy Johnson","version":18,"id":"15518","lastModified":"1301901488000","name":"Sandy Johnson","type":"Person","_key":"8934"} +{"label":"David Kyle","version":18,"id":"15519","lastModified":"1301901488000","name":"David Kyle","type":"Person","_key":"8935"} +{"label":"Heat","description":"Obsessive master thief McCauley leads a crack crew on various military-style heists across L.A. while equally obsessive detective Hanna tracks him. Each man recognizes and respects the other's ability and dedication, even as they express the willingness to kill each other, if necessary.","id":"949","runtime":171,"imdbId":"tt0113277","trailer":"http:\/\/www.youtube.com\/watch?v=0xbBLJ1WGwQ","version":459,"lastModified":"1301918913000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bce\/4d40c8887b9aa15bbf002bce\/heat-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Heat","releaseDate":818985600000,"language":"en","tagline":"A Los Angeles crime saga. ","type":"Movie","_key":"8936"} +{"label":"Amy Brenneman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/69d\/4cbdc0167b9aa138d700169d\/amy-brenneman-profile.jpg","version":49,"id":"15851","lastModified":"1301901228000","name":"Amy Brenneman","type":"Person","_key":"8937"} +{"label":"Ashley Judd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/319\/4c57fbe67b9aa151f6000319\/ashley-judd-profile.jpg","version":97,"birthday":"-22208400000","id":"15852","birthplace":"Granada Hills, California, USA ","lastModified":"1299900843000","name":"Ashley Judd","type":"Person","_key":"8938"} +{"label":"Tom Noonan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0df\/4c2b5d9e7b9aa15e9b0000df\/tom-noonan-profile.jpg","version":46,"id":"119232","lastModified":"1301902170000","name":"Tom Noonan","type":"Person","_key":"8939"} +{"label":"Tone Loc","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8e2\/4d24c3d57b9aa13f7c0008e2\/tone-loc-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Anthony Terrell Smith<\/b>, better known by his <a href=\"http:\/\/en.wikipedia.org\/wiki\/Stage_name\" title=\"Stage name\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">stage name<\/a> <b>Tone L\u014dc<\/","version":42,"id":"31004","lastModified":"1301901190000","name":"Tone Loc","type":"Person","_key":"8940"} +{"label":"Ice Age 2: The Meltdown","description":"Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.","id":"950","runtime":90,"imdbId":"tt0438097","trailer":"http:\/\/www.youtube.com\/watch?v=aA2AF-y9MWI","homepage":"http:\/\/www.iceage2game.com\/de\/","version":250,"lastModified":"1302019533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4c3a1a087b9aa10edb00020f\/ice-age-2-the-meltdown-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Ice Age 2: The Meltdown","releaseDate":1142294400000,"language":"en","tagline":"The Ice age is melting away.","type":"Movie","_key":"8941"} +{"label":"Queen Latifah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e7\/4c08305a017a3c7e890005e7\/queen-latifah-profile.jpg","version":129,"birthday":"9241200000","id":"15758","birthplace":"Newark, New Jersey, USA ","lastModified":"1299959190000","name":"Queen Latifah","type":"Person","_key":"8942"} +{"label":"Seann William Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c4\/4bf2bdc5017a3c320b0004c4\/seann-william-scott-profile.jpg","version":156,"id":"57599","lastModified":"1301904048000","name":"Seann William Scott","type":"Person","_key":"8943"} +{"label":"Josh Peck","version":41,"id":"15760","lastModified":"1301901201000","name":"Josh Peck","type":"Person","_key":"8944"} +{"label":"Jay Leno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d7\/4cd6235b7b9aa11b260001d7\/jay-leno-profile.jpg","version":46,"id":"14991","lastModified":"1301901087000","name":"Jay Leno","type":"Person","_key":"8945"} +{"label":"Grey DeLisle","version":85,"id":"15761","lastModified":"1301901117000","name":"Grey DeLisle","type":"Person","_key":"8946"} +{"label":"Tara Strong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c4\/4bd1e6f0017a3c63f10002c4\/tara-strong-profile.jpg","version":73,"birthday":"98319600000","id":"15762","birthplace":"Toronto, Ontario, Canada","lastModified":"1301901179000","name":"Tara Strong","type":"Person","_key":"8947"} +{"label":"Kindergarten Cop","description":"Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match \u2026 in more ways than one.","id":"951","runtime":111,"imdbId":"tt0099938","version":281,"lastModified":"1302017723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/414\/4bc90eb5017a3c57fe005414\/kindergarten-cop-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Kindergarten Cop","releaseDate":661737600000,"language":"en","tagline":"Go ahead, you tell him you didn't do your homework.","type":"Movie","_key":"8948"} +{"label":"Penelope Ann Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f3\/4d6786f85e73d66a700017f3\/penelope-ann-miller-profile.jpg","version":76,"id":"14698","lastModified":"1301901113000","name":"Penelope Ann Miller","type":"Person","_key":"8949"} +{"label":"Pamela Reed","version":31,"id":"14699","lastModified":"1299672096000","name":"Pamela Reed","type":"Person","_key":"8950"} +{"label":"Richard Tyson","version":45,"id":"14700","lastModified":"1301901317000","name":"Richard Tyson","type":"Person","_key":"8951"} +{"label":"Alix Koromzay","version":25,"id":"14707","lastModified":"1301901627000","name":"Alix Koromzay","type":"Person","_key":"8952"} +{"label":"Carroll Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a4\/4c5ad8187b9aa151f30005a4\/carroll-baker-profile.jpg","version":54,"id":"14701","lastModified":"1301901331000","name":"Carroll Baker","type":"Person","_key":"8953"} +{"label":"Cathy Moriarty","version":42,"id":"14702","lastModified":"1301901245000","name":"Cathy Moriarty","type":"Person","_key":"8954"} +{"label":"Joseph Cousins","version":25,"id":"14703","lastModified":"1301901627000","name":"Joseph Cousins","type":"Person","_key":"8955"} +{"label":"Park Overall","version":27,"id":"14704","lastModified":"1301901663000","name":"Park Overall","type":"Person","_key":"8956"} +{"label":"Tom Kurlander","version":24,"id":"14706","lastModified":"1301901627000","name":"Tom Kurlander","type":"Person","_key":"8957"} +{"label":"Betty Lou Henson","version":23,"id":"14708","lastModified":"1301901685000","name":"Betty Lou Henson","type":"Person","_key":"8958"} +{"label":"Madagascar","description":"Zoo animals leave the comforts of man-made habitats for exotic adventure in this animated family film. After escaping from the zoo, four friends -- a lion, a hippo, a zebra and a giraffe -- are sent back to Africa. When their ship capsizes, stranding them on Madagascar, an island populated by crazy critters, the pals must adapt to jungle life and their new roles as wild animals.","id":"953","runtime":86,"imdbId":"tt0351283","trailer":"http:\/\/www.youtube.com\/watch?v=adPvbscBK_8","version":225,"lastModified":"1301901369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4cb7e97d5e73d677850003ea\/madagascar-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Madagascar","releaseDate":1121299200000,"language":"en","tagline":"It's All Some Type Of Whacked Out Conspiracy.","type":"Movie","_key":"8959"} +{"label":"David Schwimmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f33\/4d2d8ea47b9aa11a6d000f33\/david-schwimmer-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"font-family: Arial, Helvetica, sans-serif, sans-serif; font-size: 13px; color: rgb(97, 96, 89); line-height: 16px; \">David Schwimmer was born in Queens, New York and studied at Northwestern University near Chicago. Schwimmer\u2019s directing credits include the feature <i style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-rig","version":70,"id":"14409","lastModified":"1301901113000","name":"David Schwimmer","type":"Person","_key":"8960"} +{"label":"Eric Darnell","version":36,"id":"18863","lastModified":"1301901282000","name":"Eric Darnell","type":"Person","_key":"8961"} +{"label":"Tom McGrath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f53\/4d2d8e617b9aa11a6a000f53\/tom-mcgrath-profile.jpg","version":56,"id":"18864","lastModified":"1301904077000","name":"Tom McGrath","type":"Person","_key":"8962"} +{"label":"Mission: Impossible","description":"When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.","id":"954","runtime":110,"imdbId":"tt0117060","homepage":"http:\/\/www.missionimpossible.com\/","version":193,"lastModified":"1301901083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/315\/4d2fb7d55e73d667ea000315\/mission-impossible-mid.jpg","studio":"Cruise\/Wagner Productions","genre":"Action","title":"Mission: Impossible","releaseDate":832723200000,"language":"en","tagline":"Expect the Impossible.","type":"Movie","_key":"8963"} +{"label":"Henry Czerny","version":50,"birthday":"-342147600000","id":"15319","birthplace":"Toronto, Ontario, Canada","lastModified":"1301901228000","name":"Henry Czerny","type":"Person","_key":"8964"} +{"label":"Marcel Iures","version":50,"id":"15320","lastModified":"1301901166000","name":"Marcel Iures","type":"Person","_key":"8965"} +{"label":"Ion Caramitru","version":27,"id":"15321","lastModified":"1301901394000","name":"Ion Caramitru","type":"Person","_key":"8966"} +{"label":"Ingeborga Dapkunaite","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8ad\/4d545c247b9aa13aba0138ad\/ingeborga-dapkunaite-profile.jpg","version":42,"id":"14593","lastModified":"1299494122000","name":"Ingeborga Dapkunaite","type":"Person","_key":"8967"} +{"label":"Valentina Yakunina","version":24,"id":"15322","lastModified":"1301901394000","name":"Valentina Yakunina","type":"Person","_key":"8968"} +{"label":"Marek Vasut","version":38,"id":"10849","lastModified":"1301901691000","name":"Marek Vasut","type":"Person","_key":"8969"} +{"label":"Nathan Osgood","version":24,"id":"15323","lastModified":"1301901439000","name":"Nathan Osgood","type":"Person","_key":"8970"} +{"label":"Mission: Impossible II","description":"With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This Mission: Impossible sequel plunges Hunt into the center of an international crisis of terrifying magnitude. But it's nothing he can't handle.","id":"955","runtime":123,"imdbId":"tt0120755","trailer":"http:\/\/www.youtube.com\/watch?v=mSInXjOQzdE","homepage":"http:\/\/www.missionimpossible.com\/","version":198,"lastModified":"1301901136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/485\/4bc90ec7017a3c57fe005485\/mission-impossible-ii-mid.jpg","studio":"Cruise\/Wagner Productions","genre":"Action","title":"Mission: Impossible II","releaseDate":959126400000,"language":"en","tagline":"Expect the impossible again","type":"Movie","_key":"8971"} +{"label":"Dougray Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4bd70bff017a3c21f20000ff\/dougray-scott-profile.jpg","version":62,"id":"15336","lastModified":"1301901096000","name":"Dougray Scott","type":"Person","_key":"8972"} +{"label":"John Polson","version":42,"id":"15337","lastModified":"1301901268000","name":"John Polson","type":"Person","_key":"8973"} +{"label":"William Mapother","version":40,"id":"15338","lastModified":"1301901244000","name":"William Mapother","type":"Person","_key":"8974"} +{"label":"Dominic Purcell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d6\/4d1b2c885e73d6083400b8d6\/dominic-purcell-profile.jpg","version":50,"id":"10862","lastModified":"1301901103000","name":"Dominic Purcell","type":"Person","_key":"8975"} +{"label":"Mathew Wilkinson","version":29,"id":"15339","lastModified":"1301901523000","name":"Mathew Wilkinson","type":"Person","_key":"8976"} +{"label":"Nicholas Bell","version":27,"id":"15340","lastModified":"1301901500000","name":"Nicholas Bell","type":"Person","_key":"8977"} +{"label":"Cristina Brogers","version":25,"id":"15341","lastModified":"1301901515000","name":"Cristina Brogers","type":"Person","_key":"8978"} +{"label":"Kee Chan","version":25,"id":"15342","lastModified":"1301901513000","name":"Kee Chan","type":"Person","_key":"8979"} +{"label":"Kim Fleming","version":25,"id":"15343","lastModified":"1301901515000","name":"Kim Fleming","type":"Person","_key":"8980"} +{"label":"Mission: Impossible III","description":"Super-spy Ethan Hunt has retired from active duty to train new IMF agents. But he is called back into action to confront the toughest villain he's ever faced - Owen Davian, an international weapons and information provider with no remorse and no conscience. Hunt assembles his team, his old friend Luther Strickell, transportation expert Declan, background operative Zhen, and fresh recruit Lindsey..","id":"956","runtime":126,"imdbId":"tt0317919","homepage":"http:\/\/www.missionimpossible.com\/","version":240,"lastModified":"1301901168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a6\/4bc90ecd017a3c57fe0054a6\/mission-impossible-iii-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Mission: Impossible III","releaseDate":1145836800000,"language":"en","type":"Movie","_key":"8981"} +{"label":"J.J. Abrams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/164\/4beed7bd017a3c458a000164\/j-j-abrams-profile.jpg","biography":"Jeffrey Jacob \"J.J.\" Abrams is an American film and television, producer, screenwriter, director, and occasional actor. He is best known for role as Creator of the epic TV series Lost as well as his work as director of the Star Trek reboot.  Prior to Lost, he created the TV series Felicity and Alias and his work since Lost includes Fringe and Undercovers.  \nAbrams' awards include 2 Emmys in 2005 for Outstanding Drama Series and Outstanding Directing for a Drama Series for Lost.  L","version":121,"birthday":"-110941200000","id":"15344","birthplace":"New York City, New York, USA","lastModified":"1301904094000","name":"J.J. Abrams","type":"Person","_key":"8982"} +{"label":"Keri Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/772\/4cb7fb317b9aa138d7000772\/keri-russell-profile.jpg","version":81,"id":"41292","lastModified":"1301904063000","name":"Keri Russell","type":"Person","_key":"8983"} +{"label":"Maggie Q","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/600\/4d1f568c5e73d66b2d001600\/maggie-q-profile.jpg","biography":"Maggie Denise Quigley was born to a Polish-Irish American father (originally based in New York) and a Vietnamese mother. Her father met her mother during the Vietnam War. Maggie has two older half-siblings from her mother's previous marriage, and two older sisters. The family moved to Hawaii and settled in Mililani.\n\nMaggie dreamed of becoming a veterinarian, but modeled and found herself bursting onto the Hong Kong movie scene - eventually becoming a full-fledged superstar in Asia. She changed ","version":86,"birthday":"296175600000","id":"21045","birthplace":"Honolulu, Hawaii, USA","lastModified":"1301904097000","name":"Maggie Q","type":"Person","_key":"8984"} +{"label":"Spaceballs","description":"When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?","id":"957","runtime":96,"imdbId":"tt0094012","trailer":"http:\/\/www.youtube.com\/watch?v=2JaJG1fXHpM","homepage":"http:\/\/www.mgm.com\/view\/movie\/1873\/Spaceballs\/","version":210,"lastModified":"1301906826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11f\/4d5ae2387b9aa122bb00111f\/spaceballs-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Spaceballs","releaseDate":551491200000,"language":"en","tagline":"May the schwartz be with you","type":"Movie","_key":"8985"} +{"label":"Mel Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b7\/4bd08abf017a3c63e80001b7\/mel-brooks-profile.jpg","version":207,"id":"14639","lastModified":"1302002585000","name":"Mel Brooks","type":"Person","_key":"8986"} +{"label":"Daphne Zuniga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/649\/4ccc71357b9aa16b9c000649\/daphne-zuniga-profile.jpg","version":41,"id":"14668","lastModified":"1301901285000","name":"Daphne Zuniga","type":"Person","_key":"8987"} +{"label":"George Wyner","version":33,"id":"14669","lastModified":"1301901580000","name":"George Wyner","type":"Person","_key":"8988"} +{"label":"Joan Rivers","version":37,"id":"14670","lastModified":"1301901444000","name":"Joan Rivers","type":"Person","_key":"8989"} +{"label":"Dick Van Patten","version":52,"id":"14671","lastModified":"1301901409000","name":"Dick Van Patten","type":"Person","_key":"8990"} +{"label":"Michael Winslow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4cadafd17b9aa11b3e0000b2\/michael-winslow-profile.jpg","version":68,"id":"14672","lastModified":"1301901203000","name":"Michael Winslow","type":"Person","_key":"8991"} +{"label":"Lorene Yarnell","version":26,"id":"14673","lastModified":"1301901487000","name":"Lorene Yarnell","type":"Person","_key":"8992"} +{"label":"The General","description":"The General is a 1927 American silent film comedy from Buster Keaton. The film flopped when first released but is now regarded as the height of silent film comedy. The film is based on events from America\u2019s civil war.","id":"961","runtime":78,"imdbId":"tt0017925","version":265,"lastModified":"1301903992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c7\/4bc90ed0017a3c57fe0054c7\/the-general-mid.jpg","studio":"United Artists","genre":"Comedy","title":"The General","releaseDate":-1353974400000,"language":"en","type":"Movie","_key":"8993"} +{"label":"Clyde Bruckman","version":50,"id":"10517","lastModified":"1301901371000","name":"Clyde Bruckman","type":"Person","_key":"8994"} +{"label":"Marion Mack","version":19,"id":"14417","lastModified":"1301901326000","name":"Marion Mack","type":"Person","_key":"8995"} +{"label":"Glen Cavender","version":18,"id":"14419","lastModified":"1301901326000","name":"Glen Cavender","type":"Person","_key":"8996"} +{"label":"Jim Farley","version":20,"id":"14420","lastModified":"1301901417000","name":"Jim Farley","type":"Person","_key":"8997"} +{"label":"Frederick Vroom","version":20,"id":"14421","lastModified":"1301901592000","name":"Frederick Vroom","type":"Person","_key":"8998"} +{"label":"Charles Henry Smith","version":18,"id":"14422","lastModified":"1301901420000","name":"Charles Henry Smith","type":"Person","_key":"8999"} +{"label":"Frank Barnes","version":18,"id":"14424","lastModified":"1301901697000","name":"Frank Barnes","type":"Person","_key":"9000"} +{"label":"Mike Donlin","version":18,"id":"14425","lastModified":"1301901510000","name":"Mike Donlin","type":"Person","_key":"9001"} +{"label":"Tom Nawn","version":18,"id":"14426","lastModified":"1301901449000","name":"Tom Nawn","type":"Person","_key":"9002"} +{"label":"The Gold Rush","description":"A lone prospector ventures into Alaska looking for gold. He gets mixed up with some burly characters and falls in love with the beautiful Georgia. He tries to win her heart with his singular charm.","id":"962","runtime":82,"imdbId":"tt0015864","version":190,"lastModified":"1301901833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d4\/4bc90ed3017a3c57fe0054d4\/the-gold-rush-mid.jpg","genre":"Comedy","title":"The Gold Rush","releaseDate":-1404864000000,"language":"en","type":"Movie","_key":"9003"} +{"label":"Georgia Hale","version":21,"id":"14434","lastModified":"1301901830000","name":"Georgia Hale","type":"Person","_key":"9004"} +{"label":"Mack Swain","version":42,"id":"14435","lastModified":"1301901598000","name":"Mack Swain","type":"Person","_key":"9005"} +{"label":"Tom Murray","version":21,"id":"14437","lastModified":"1301901685000","name":"Tom Murray","type":"Person","_key":"9006"} +{"label":"Henry Bergman","version":48,"id":"14438","lastModified":"1301901525000","name":"Henry Bergman","type":"Person","_key":"9007"} +{"label":"Malcolm Waite","version":22,"id":"14439","lastModified":"1301901830000","name":"Malcolm Waite","type":"Person","_key":"9008"} +{"label":"The Maltese Falcon","description":"The Maltese Falcon is a mystery thriller detective film from John Huston starring Humphrey Bogart. The film is regarded as a landmark in the film-noir movement.","id":"963","runtime":101,"imdbId":"tt0033870","trailer":"http:\/\/www.youtube.com\/watch?v=r4oNRDSqI_g","version":193,"lastModified":"1301902346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e1\/4bc90ed4017a3c57fe0054e1\/the-maltese-falcon-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Maltese Falcon","releaseDate":-891388800000,"language":"en","tagline":"A story as EXPLOSIVE as his BLAZING automatics!","type":"Movie","_key":"9009"} +{"label":"Claude Archer","version":19,"id":"14449","lastModified":"1301901273000","name":"Claude Archer","type":"Person","_key":"9010"} +{"label":"Gladys George","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/036\/4bd5cbeb017a3c6586000036\/gladys-george-profile.jpg","version":30,"id":"14450","lastModified":"1301901271000","name":"Gladys George","type":"Person","_key":"9011"} +{"label":"Barton MacLane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61d\/4c5b0bb37b9aa151f300061d\/barton-maclane-profile.jpg","version":53,"id":"14451","lastModified":"1301901333000","name":"Barton MacLane","type":"Person","_key":"9012"} +{"label":"Jerome Cowan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/658\/4c62e6dc7b9aa172d9000658\/jerome-cowan-profile.jpg","version":56,"id":"14452","lastModified":"1301901279000","name":"Jerome Cowan","type":"Person","_key":"9013"} +{"label":"James Burke","version":29,"id":"14453","lastModified":"1301901449000","name":"James Burke","type":"Person","_key":"9014"} +{"label":"Murray Alper","version":27,"id":"14454","lastModified":"1301901427000","name":"Murray Alper","type":"Person","_key":"9015"} +{"label":"John Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4ca37dfb7b9aa16ed8000061\/john-hamilton-profile.jpg","version":28,"id":"14455","lastModified":"1301901532000","name":"John Hamilton","type":"Person","_key":"9016"} +{"label":"The Phantom of the Opera","description":"A grotesquely disfigured composer known as the \"Phantom\" haunts Paris' opera house, where he's secretly grooming Christine Daae to be an opera diva. Luring her to his underground lair, the Phantom declares his love. But Christine loves Raoul de Chagny and plans to elope with him after her next performance. When the Phantom finds out, he abducts Christine, incurring the wrath of Raoul -- and a horde of rabid Parisians.","id":"964","runtime":93,"imdbId":"tt0016220","version":168,"lastModified":"1301903753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4c34647f7b9aa17a35000071\/the-phantom-of-the-opera-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"The Phantom of the Opera","releaseDate":-1398643200000,"language":"en","tagline":"The greatest horror film of modern cinema!","type":"Movie","_key":"9017"} +{"label":"Rupert Julian","version":19,"id":"14473","lastModified":"1301901633000","name":"Rupert Julian","type":"Person","_key":"9018"} +{"label":"Lon Chaney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7b\/4be44a6a017a3c35bd000a7b\/lon-chaney-profile.jpg","version":45,"id":"14481","lastModified":"1301901247000","name":"Lon Chaney","type":"Person","_key":"9019"} +{"label":"Mary Philbin","version":22,"id":"14484","lastModified":"1301901511000","name":"Mary Philbin","type":"Person","_key":"9020"} +{"label":"Norman Kerry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/265\/4bf17a35017a3c3215000265\/norman-kerry-profile.jpg","version":23,"id":"14485","lastModified":"1301901398000","name":"Norman Kerry","type":"Person","_key":"9021"} +{"label":"Arthur Edmund Carewe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4bf85f03017a3c490800005e\/arthur-edmund-carewe-profile.jpg","version":26,"birthday":"-2682464400000","id":"14486","birthplace":"Trapzon, Turkey","lastModified":"1301901435000","name":"Arthur Edmund Carewe","type":"Person","_key":"9022"} +{"label":"John St. Polis","version":20,"id":"14487","lastModified":"1301901830000","name":"John St. Polis","type":"Person","_key":"9023"} +{"label":"Snitz Edwards","version":23,"id":"14488","lastModified":"1301901668000","name":"Snitz Edwards","type":"Person","_key":"9024"} +{"label":"Virginia Pearson","version":19,"id":"78844","lastModified":"1301902123000","name":"Virginia Pearson","type":"Person","_key":"9025"} +{"label":"The Magnificent Ambersons","description":"The Magnificent Ambersons is director Orson Welles\u2019 second film which according to him is better than his first film Citizen Kane. The family saga tells the fate of the Amberson family.","id":"965","runtime":131,"imdbId":"tt0035015","version":108,"lastModified":"1301904724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f4\/4bc90ed6017a3c57fe0054f4\/the-magnificent-ambersons-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"The Magnificent Ambersons","releaseDate":-866160000000,"language":"en","type":"Movie","_key":"9026"} +{"label":"Fred Fleck","version":19,"id":"14511","lastModified":"1301901250000","name":"Fred Fleck","type":"Person","_key":"9027"} +{"label":"Dolores Costello","version":20,"id":"14515","lastModified":"1301901234000","name":"Dolores Costello","type":"Person","_key":"9028"} +{"label":"Tim Holt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4c35fded7b9aa102cd000039\/tim-holt-profile.jpg","version":29,"birthday":"-1637974800000","id":"14517","birthplace":"Beverly Hills, California, USA","lastModified":"1301901233000","name":"Tim Holt","type":"Person","_key":"9029"} +{"label":"Ray Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/44a\/4bf54a80017a3c6d9200044a\/ray-collins-profile.jpg","version":31,"id":"14518","lastModified":"1299494533000","name":"Ray Collins","type":"Person","_key":"9030"} +{"label":"Richard Bennett","version":20,"id":"14519","lastModified":"1301901664000","name":"Richard Bennett","type":"Person","_key":"9031"} +{"label":"The Magnificent Seven","description":"The Magnificent Seven is a western film from John Sturges and a remake of the Akira Kurosawa's film The Seven Samurai from 1954.","id":"966","runtime":128,"imdbId":"tt0054047","trailer":"http:\/\/www.youtube.com\/watch?v=oam0x6wNK94","version":165,"lastModified":"1301902101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4d011ee07b9aa11b39000008\/the-magnificent-seven-mid.jpg","studio":"United Artists","genre":"Action","title":"The Magnificent Seven","releaseDate":-290044800000,"language":"en","type":"Movie","_key":"9032"} +{"label":"John Sturges","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f2\/4d0b89d15e73d6469c0005f2\/john-sturges-profile.jpg","version":57,"id":"14520","lastModified":"1301901114000","name":"John Sturges","type":"Person","_key":"9033"} +{"label":"Yul Brynner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c65\/4bfebb58017a3c7037000c65\/yul-brynner-profile.jpg","version":45,"id":"14528","lastModified":"1301901179000","name":"Yul Brynner","type":"Person","_key":"9034"} +{"label":"Brad Dexter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4bd5b4eb017a3c657e000017\/brad-dexter-profile.jpg","version":40,"id":"14529","lastModified":"1301901324000","name":"Brad Dexter","type":"Person","_key":"9035"} +{"label":"Natividad Vac\u00edo","version":19,"id":"14530","lastModified":"1301901775000","name":"Natividad Vac\u00edo","type":"Person","_key":"9036"} +{"label":"Rico Alaniz","version":17,"id":"14531","lastModified":"1301901830000","name":"Rico Alaniz","type":"Person","_key":"9037"} +{"label":"Jorge Mart\u00ednez de Hoyos","version":17,"id":"14532","lastModified":"1301901751000","name":"Jorge Mart\u00ednez de Hoyos","type":"Person","_key":"9038"} +{"label":"Vladimir Sokoloff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c4\/4c2cec1f7b9aa15e9d0001c4\/vladimir-sokoloff-profile.jpg","version":41,"id":"14533","lastModified":"1301901467000","name":"Vladimir Sokoloff","type":"Person","_key":"9039"} +{"label":"Rosenda Monteros","version":17,"id":"14534","lastModified":"1301901751000","name":"Rosenda Monteros","type":"Person","_key":"9040"} +{"label":"Spartacus","description":"Spartacus is a 1960 American historical drama film directed by Stanley Kubrick and based on the novel of the same name by Howard Fast about the historical life of Spartacus and the Third Servile War. The film stars Kirk Douglas as rebellious slave Spartacus and Laurence Olivier as his foe, the Roman general and politician Marcus Licinius Crassus. The film also stars Peter Ustinov (who won an Academy Award for Best Supporting Actor for his role as slave trader Lentulus Batiatus), John Gavin (as J","id":"967","runtime":184,"imdbId":"tt0054331","trailer":"http:\/\/www.youtube.com\/watch?v=u_C21N1UabM","version":262,"lastModified":"1301901974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52c\/4bc90ee1017a3c57fe00552c\/spartacus-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Spartacus","releaseDate":-291513600000,"language":"en","type":"Movie","_key":"9041"} +{"label":"Jean Simmons","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/218\/4bf17f3e017a3c3212000218\/jean-simmons-profile.jpg","version":52,"id":"14500","lastModified":"1301901117000","name":"Jean Simmons","type":"Person","_key":"9042"} +{"label":"Charles Laughton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/72e\/4be2c27c017a3c35b500072e\/charles-laughton-profile.jpg","version":81,"id":"10921","lastModified":"1301904082000","name":"Charles Laughton","type":"Person","_key":"9043"} +{"label":"John Ireland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ab\/4c52db2d7b9aa13d4b0003ab\/john-ireland-profile.jpg","version":69,"id":"14502","lastModified":"1301901118000","name":"John Ireland","type":"Person","_key":"9044"} +{"label":"Herbert Lom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4bd59f90017a3c2e700000d3\/herbert-lom-profile.jpg","version":93,"id":"14503","lastModified":"1301901231000","name":"Herbert Lom","type":"Person","_key":"9045"} +{"label":"John Dall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/171\/4c7e64eb7b9aa10d94000171\/john-dall-profile.jpg","version":27,"id":"14504","lastModified":"1301901560000","name":"John Dall","type":"Person","_key":"9046"} +{"label":"Harold J. Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6db\/4caa1afd7b9aa17acf0006db\/harold-j-stone-profile.jpg","version":34,"id":"14505","lastModified":"1301901356000","name":"Harold J. Stone","type":"Person","_key":"9047"} +{"label":"Joanna Barnes","version":27,"id":"14506","lastModified":"1301901661000","name":"Joanna Barnes","type":"Person","_key":"9048"} +{"label":"Paul Lambert","version":18,"id":"14507","lastModified":"1301901914000","name":"Paul Lambert","type":"Person","_key":"9049"} +{"label":"John Hoyt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22a\/4c2ce1e67b9aa15e9f00022a\/john-hoyt-profile.jpg","version":37,"id":"14508","lastModified":"1299494572000","name":"John Hoyt","type":"Person","_key":"9050"} +{"label":"Frederick Worlock","version":41,"id":"14509","lastModified":"1301901662000","name":"Frederick Worlock","type":"Person","_key":"9051"} +{"label":"Dog Day Afternoon","description":"Dog Day Afternoon is a film based on true events and directed by Sidney Lumet. The film stars Al Pacino as a robber who held a bank hostage in Brooklyn, New York.","id":"968","runtime":124,"imdbId":"tt0072890","trailer":"http:\/\/www.youtube.com\/watch?v=CF1rtd8_pxA","version":173,"lastModified":"1301901735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/539\/4bc90ee2017a3c57fe005539\/dog-day-afternoon-mid.jpg","studio":"Artists Entertainment Complex","genre":"Action","title":"Dog Day Afternoon","releaseDate":180489600000,"language":"en","type":"Movie","_key":"9052"} +{"label":"Chris Sarandon","version":57,"id":"14541","lastModified":"1301974706000","name":"Chris Sarandon","type":"Person","_key":"9053"} +{"label":"James Broderick","version":21,"id":"14542","lastModified":"1301901351000","name":"James Broderick","type":"Person","_key":"9054"} +{"label":"William Bogert","version":20,"id":"14543","lastModified":"1301901490000","name":"William Bogert","type":"Person","_key":"9055"} +{"label":"Penelope Allen","version":28,"id":"14544","lastModified":"1301901543000","name":"Penelope Allen","type":"Person","_key":"9056"} +{"label":"Sully Boyar","version":24,"id":"14545","lastModified":"1301901644000","name":"Sully Boyar","type":"Person","_key":"9057"} +{"label":"Beulah Garrick","version":18,"id":"14546","lastModified":"1301901479000","name":"Beulah Garrick","type":"Person","_key":"9058"} +{"label":"Sandra Kazan","version":18,"id":"14547","lastModified":"1301901627000","name":"Sandra Kazan","type":"Person","_key":"9059"} +{"label":"Marcia Jean Kurtz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7af\/4ce5af2e7b9aa168b00007af\/marcia-jean-kurtz-profile.jpg","biography":"Marcia Jean Kurtz is an American film, stage, and television\nactress and director. She has appeared in such films as The Panic in Needle\nPark, In Her Shoes, Dog Day Afternoon and Big Fan. Kurtz won an Obie Award for\nher performance as Doris in Donald Margulies' The Loman Family Picnic. She was\nalso nominated for both an Obie and a Drama Desk Award for her role in Martin\nSherman's When She Danced. Kurtz also directed Matty Selman's Uncle Phillip's\nCoat and Evan Handler's Time of Fire.\n\nShe has ap","version":47,"id":"14548","lastModified":"1301901179000","name":"Marcia Jean Kurtz","type":"Person","_key":"9060"} +{"label":"Amy Levitt","version":19,"id":"14549","lastModified":"1301901588000","name":"Amy Levitt","type":"Person","_key":"9061"} +{"label":"John Marriott","version":18,"id":"14550","lastModified":"1301901479000","name":"John Marriott","type":"Person","_key":"9062"} +{"label":"Estelle Omens","version":18,"id":"14551","lastModified":"1301901627000","name":"Estelle Omens","type":"Person","_key":"9063"} +{"label":"Carmine Foresta","version":18,"id":"14553","lastModified":"1301901627000","name":"Carmine Foresta","type":"Person","_key":"9064"} +{"label":"Paths of Glory","description":"Paths of Glory Paths of Glory is an anti-war film from Stanley Kubrick starring Kirk Douglas. The film takes place during World War I.","id":"975","runtime":86,"imdbId":"tt0050825","trailer":"http:\/\/www.youtube.com\/watch?v=876","version":139,"lastModified":"1301903471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54b\/4bc90ee4017a3c57fe00554b\/paths-of-glory-mid.jpg","studio":"United Artists","genre":"Drama","title":"Paths of Glory","releaseDate":-379296000000,"language":"en","type":"Movie","_key":"9065"} +{"label":"Ralph Meeker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4bf597ff017a3c7730000073\/ralph-meeker-profile.jpg","version":44,"id":"14562","lastModified":"1301901283000","name":"Ralph Meeker","type":"Person","_key":"9066"} +{"label":"Adolphe Menjou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/422\/4c6d323f7b9aa13ab5000422\/adolphe-menjou-profile.jpg","version":46,"id":"14563","lastModified":"1301901336000","name":"Adolphe Menjou","type":"Person","_key":"9067"} +{"label":"George Macready","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4bd5b633017a3c658900000f\/george-macready-profile.jpg","version":47,"id":"14564","lastModified":"1301901101000","name":"George Macready","type":"Person","_key":"9068"} +{"label":"Wayne Morris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d3\/4c4741a47b9aa15dde0002d3\/wayne-morris-profile.jpg","version":28,"id":"14565","lastModified":"1301901411000","name":"Wayne Morris","type":"Person","_key":"9069"} +{"label":"Sweet Smell of Success","description":"Sweet Smell of Success is a Film Noir from American director Alexander Mackendrick. This drama tells the defamation of a media mogul against a jazz musician who wants to marry his sister.","id":"976","runtime":96,"imdbId":"tt0051036","version":139,"lastModified":"1301903443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4bc90ee9017a3c57fe00555d\/sweet-smell-of-success-mid.jpg","studio":"Norma Productions","genre":"Drama","title":"Sweet Smell of Success","releaseDate":-394934400000,"language":"en","tagline":"This is the story of J.J. - But not the way he wants it told","type":"Movie","_key":"9070"} +{"label":"Alexander Mackendrick","version":40,"id":"14566","lastModified":"1301901448000","name":"Alexander Mackendrick","type":"Person","_key":"9071"} +{"label":"Susan Harrison","version":18,"id":"14572","lastModified":"1301901479000","name":"Susan Harrison","type":"Person","_key":"9072"} +{"label":"Martin Milner","version":22,"id":"14573","lastModified":"1301901751000","name":"Martin Milner","type":"Person","_key":"9073"} +{"label":"Sam Levene","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/233\/4bf17070017a3c3215000233\/sam-levene-profile.jpg","biography":"Sam Levene was an American  Broadway and film actor.\n\nBorn in Russia, Levene appeared in several Broadway plays and musicals in the 1930s. In the mid-30s, he moved to Hollywood to re-create his stage role in the movie Three Men on a Horse, followed by After the Thin Man, both in 1936. He played a small but vital role in the 1939 film classic Golden Boy as William Holden's taxi driving brother-in-law \"Siggie\". He also appeared in many film noir classics including The Killers, Brute Force, an","version":47,"birthday":"-2030576400000","id":"14574","birthplace":"Russia","lastModified":"1301901115000","name":"Sam Levene","type":"Person","_key":"9074"} +{"label":"Barbara Nichols","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4c24f5f57b9aa1446d00010e\/barbara-nichols-profile.jpg","version":26,"id":"14575","lastModified":"1301901578000","name":"Barbara Nichols","type":"Person","_key":"9075"} +{"label":"Jeff Donnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b9\/4bd6f41b017a3c21ec0000b9\/jeff-donnell-profile.jpg","version":29,"id":"14576","lastModified":"1301901415000","name":"Jeff Donnell","type":"Person","_key":"9076"} +{"label":"Edith Atwater","version":32,"id":"14577","lastModified":"1301901651000","name":"Edith Atwater","type":"Person","_key":"9077"} +{"label":"Joe Frisco","version":19,"id":"14578","lastModified":"1301901685000","name":"Joe Frisco","type":"Person","_key":"9078"} +{"label":"Emile Meyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4bd8153a017a3c1bff0000b6\/emile-meyer-profile.jpg","version":32,"id":"14579","lastModified":"1301901076000","name":"Emile Meyer","type":"Person","_key":"9079"} +{"label":"Tabu: A Story of the South Seas","description":"Tabu is an adventure love story from F.W. Muranu from the year 1931. Tabu is the last film from director Muranu; he died before the film\u2019s premiere in a car accident. ","id":"977","runtime":84,"imdbId":"tt0022458","version":73,"lastModified":"1301904707000","studio":"Paramount Pictures","genre":"Adventure","title":"Tabu: A Story of the South Seas","releaseDate":-1212451200000,"language":"en","type":"Movie","_key":"9080"} +{"label":"Matahi","version":17,"id":"14582","lastModified":"1301901648000","name":"Matahi","type":"Person","_key":"9081"} +{"label":"Anne Chevalier","version":17,"id":"14583","lastModified":"1301901564000","name":"Anne Chevalier","type":"Person","_key":"9082"} +{"label":"Bill Bambridge","version":17,"id":"14584","lastModified":"1301901563000","name":"Bill Bambridge","type":"Person","_key":"9083"} +{"label":"Hitu","version":17,"id":"14585","lastModified":"1301901563000","name":"Hitu","type":"Person","_key":"9084"} +{"label":"Jules","version":20,"id":"14586","lastModified":"1301901648000","name":"Jules","type":"Person","_key":"9085"} +{"label":"Seven Years in Tibet","description":"Austrian mountaineer Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.","id":"978","runtime":139,"imdbId":"tt0120102","trailer":"http:\/\/www.youtube.com\/watch?v=1782","version":163,"lastModified":"1301901626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/190\/4d1d56fe5e73d66b27000190\/seven-years-in-tibet-mid.jpg","studio":"Mandalay Pictures","genre":"Action","title":"Seven Years in Tibet","releaseDate":876268800000,"language":"en","tagline":"At the end of the world his real journey began.","type":"Movie","_key":"9086"} +{"label":"Jamyang Jamtsho Wangchuk","version":19,"id":"14591","lastModified":"1301901239000","name":"Jamyang Jamtsho Wangchuk","type":"Person","_key":"9087"} +{"label":"B.D. Wong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/319\/4d5339c77b9aa13aba012319\/b-d-wong-profile.jpg","version":38,"id":"14592","lastModified":"1301901308000","name":"B.D. Wong","type":"Person","_key":"9088"} +{"label":"Lhakpa Tsamchoe","version":20,"id":"14594","lastModified":"1301901775000","name":"Lhakpa Tsamchoe","type":"Person","_key":"9089"} +{"label":"Duncan Fraser","version":34,"id":"14595","lastModified":"1301901349000","name":"Duncan Fraser","type":"Person","_key":"9090"} +{"label":"Danny Denzongpa","version":33,"id":"14596","lastModified":"1301901441000","name":"Danny Denzongpa","type":"Person","_key":"9091"} +{"label":"Irreversible","description":"Events over the course of one traumatic night in Paris unfold in reverse-chronological order as the beautiful Alex is brutally raped and beaten by a stranger in the underpass. Her boyfriend and ex-lover take matters into their own hands by hiring two criminals to help them find the rapist so that they can exact revenge. A simultaneously beautiful and terrible examination of the destructive nature of cause and effect, and how time destroys everything.","id":"979","runtime":97,"imdbId":"tt0290673","version":347,"lastModified":"1301903098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58d\/4bc90ef0017a3c57fe00558d\/irreversible-mid.jpg","studio":"Nord Ouest Production","genre":"Drama","title":"Irreversible","releaseDate":1022025600000,"language":"en","type":"Movie","_key":"9092"} +{"label":"Gaspar No\u00e9","version":46,"id":"14597","lastModified":"1301901111000","name":"Gaspar No\u00e9","type":"Person","_key":"9093"} +{"label":"Albert Dupontel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bd7a1bd017a3c1c00000007\/albert-dupontel-profile.jpg","version":72,"birthday":"-188528400000","id":"14606","lastModified":"1301901218000","name":"Albert Dupontel","type":"Person","_key":"9094"} +{"label":"Jo Prestia","version":45,"id":"14610","lastModified":"1301901134000","name":"Jo Prestia","type":"Person","_key":"9095"} +{"label":"St\u00e9phane Drouot","version":20,"id":"14611","lastModified":"1301901839000","name":"St\u00e9phane Drouot","type":"Person","_key":"9096"} +{"label":"Jean-Louis Costes","version":20,"id":"14612","lastModified":"1301901830000","name":"Jean-Louis Costes","type":"Person","_key":"9097"} +{"label":"Mourad Khima","version":20,"id":"14613","lastModified":"1301901834000","name":"Mourad Khima","type":"Person","_key":"9098"} +{"label":"The Ox-Bow Incident","description":"The Ox-Bow Incident is a western film from William A. Wellman and starring Henry Fonda. The year is 1943, it\u2019s the middle of World War 2, and makes an exceptional message about anti-heroism.","id":"980","runtime":75,"imdbId":"tt0036244","version":119,"lastModified":"1301902548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a3\/4bc90ef1017a3c57fe0055a3\/the-ox-bow-incident-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Ox-Bow Incident","releaseDate":-839980800000,"language":"en","type":"Movie","_key":"9099"} +{"label":"William A. Wellman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b17\/4cc197677b9aa138d5001b17\/william-a-wellman-profile.jpg","version":45,"birthday":"-2330125200000","id":"14643","birthplace":"Brookline, Massachusetts, USA","lastModified":"1301901406000","name":"William A. Wellman","type":"Person","_key":"9100"} +{"label":"Mary Beth Hughes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b5\/4c06c1e5017a3c35190004b5\/mary-beth-hughes-profile.jpg","version":28,"id":"14655","lastModified":"1301904094000","name":"Mary Beth Hughes","type":"Person","_key":"9101"} +{"label":"Matt Briggs","version":17,"id":"14656","lastModified":"1301901834000","name":"Matt Briggs","type":"Person","_key":"9102"} +{"label":"Frank Conroy","version":30,"id":"14658","lastModified":"1301901671000","name":"Frank Conroy","type":"Person","_key":"9103"} +{"label":"William Eythe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5aa\/4c5ad9727b9aa151f30005aa\/william-eythe-profile.jpg","version":22,"id":"14659","lastModified":"1301901851000","name":"William Eythe","type":"Person","_key":"9104"} +{"label":"Paul Hurst","version":23,"id":"14664","lastModified":"1301901664000","name":"Paul Hurst","type":"Person","_key":"9105"} +{"label":"Victor Kilian","version":23,"id":"14666","lastModified":"1301901604000","name":"Victor Kilian","type":"Person","_key":"9106"} +{"label":"The Philadelphia Story","description":"The Philadelphia Story is a comedy starring Cary Grant, Katherine Hepburn. Tracy Lord is idolised by everybody and must keep her sinister ex-husband, an alcoholic reporter, and her future clean-record husband happy.","id":"981","runtime":112,"imdbId":"tt0032904","trailer":"http:\/\/www.youtube.com\/watch?v=6CtquHsxoZo","version":133,"lastModified":"1301996337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b0\/4bc90ef3017a3c57fe0055b0\/the-philadelphia-story-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"The Philadelphia Story","releaseDate":-917827200000,"language":"en","tagline":"Broadway's howling year-run comedy hit of the snooty society beauty who slipped and fell - IN LOVE!","type":"Movie","_key":"9107"} +{"label":"Ruth Hussey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86a\/4c6e9f737b9aa13ab700086a\/ruth-hussey-profile.jpg","version":31,"id":"14683","lastModified":"1301996336000","name":"Ruth Hussey","type":"Person","_key":"9108"} +{"label":"Roland Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/996\/4be455e0017a3c35b7000996\/roland-young-profile.jpg","version":34,"id":"14685","lastModified":"1301996337000","name":"Roland Young","type":"Person","_key":"9109"} +{"label":"Mary Nash","version":24,"id":"14686","lastModified":"1301996337000","name":"Mary Nash","type":"Person","_key":"9110"} +{"label":"John Halliday","version":22,"id":"14688","lastModified":"1301996337000","name":"John Halliday","type":"Person","_key":"9111"} +{"label":"Virginia Weidler","version":21,"id":"14689","lastModified":"1301996337000","name":"Virginia Weidler","type":"Person","_key":"9112"} +{"label":"Rex Evans","version":26,"id":"14690","lastModified":"1301996337000","name":"Rex Evans","type":"Person","_key":"9113"} +{"label":"Lionel Pape","version":19,"id":"14691","lastModified":"1301996337000","name":"Lionel Pape","type":"Person","_key":"9114"} +{"label":"John Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4c49c9f97b9aa116010000c8\/john-howard-profile.jpg","version":34,"birthday":"-1789866000000","id":"102687","birthplace":"Cleveland, Ohio, USA","lastModified":"1301996337000","name":"John Howard","type":"Person","_key":"9115"} +{"label":"The Manchurian Candidate","description":"The Manchurian Candidate is a political thriller from American director John Frankenheimer. An American soldier is brainwashed into being a killer for the communist Russians during the Korean War.","id":"982","runtime":126,"imdbId":"tt0056218","trailer":"http:\/\/www.youtube.com\/watch?v=6bMrAhe_K6A","version":172,"lastModified":"1301902300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c7\/4bc90ef7017a3c57fe0055c7\/the-manchurian-candidate-mid.jpg","studio":"MC Productions","genre":"Drama","title":"The Manchurian Candidate","releaseDate":-226886400000,"language":"en","type":"Movie","_key":"9116"} +{"label":"Laurence Harvey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c5\/4c922ead7b9aa1020f0000c5\/laurence-harvey-profile.jpg","version":40,"id":"14729","lastModified":"1301901209000","name":"Laurence Harvey","type":"Person","_key":"9117"} +{"label":"Angela Lansbury","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4c922f4a7b9aa102100000a5\/angela-lansbury-profile.jpg","version":94,"id":"14730","lastModified":"1301901128000","name":"Angela Lansbury","type":"Person","_key":"9118"} +{"label":"Henry Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4c922fd17b9aa1020f0000ca\/henry-silva-profile.jpg","version":50,"id":"14731","lastModified":"1301901224000","name":"Henry Silva","type":"Person","_key":"9119"} +{"label":"James Gregory","version":23,"id":"14732","lastModified":"1301901490000","name":"James Gregory","type":"Person","_key":"9120"} +{"label":"Leslie Parrish","version":24,"id":"14733","lastModified":"1301901560000","name":"Leslie Parrish","type":"Person","_key":"9121"} +{"label":"Khigh Dhiegh","version":20,"id":"14734","lastModified":"1301901548000","name":"Khigh Dhiegh","type":"Person","_key":"9122"} +{"label":"Douglas Henderson","version":19,"id":"14735","lastModified":"1301901632000","name":"Douglas Henderson","type":"Person","_key":"9123"} +{"label":"Albert Paulsen","version":22,"id":"14736","lastModified":"1301901776000","name":"Albert Paulsen","type":"Person","_key":"9124"} +{"label":"The Man Who Would Be King","description":"The Man Who Would Be King is an adventure film from John Huston starring Sean Connery and Michael Caine. The film is based on the novel by Rudyard Kipling and describes the history of two adventurers in British Indian at the end of the 19th Century. ","id":"983","runtime":129,"imdbId":"tt0073341","trailer":"http:\/\/www.youtube.com\/watch?v=rNb6SxXcD7g","version":170,"lastModified":"1302001979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d9\/4bc90efa017a3c57fe0055d9\/the-man-who-would-be-king-mid.jpg","studio":"Allied Artists","genre":"Action","title":"The Man Who Would Be King","releaseDate":188006400000,"language":"en","type":"Movie","_key":"9125"} +{"label":"Doghmi Larbi","version":20,"id":"14754","lastModified":"1302001979000","name":"Doghmi Larbi","type":"Person","_key":"9126"} +{"label":"Jack May","version":22,"id":"14755","lastModified":"1302001979000","name":"Jack May","type":"Person","_key":"9127"} +{"label":"Karroom Ben Bouih","version":20,"id":"14756","lastModified":"1302001979000","name":"Karroom Ben Bouih","type":"Person","_key":"9128"} +{"label":"Mohammad Shamsi","version":20,"id":"14758","lastModified":"1302001979000","name":"Mohammad Shamsi","type":"Person","_key":"9129"} +{"label":"Albert Moses","version":20,"id":"14759","lastModified":"1302001979000","name":"Albert Moses","type":"Person","_key":"9130"} +{"label":"Paul Antrim","version":24,"id":"14760","lastModified":"1302001979000","name":"Paul Antrim","type":"Person","_key":"9131"} +{"label":"Dirty Harry","description":"A San Francisco cop with little regard for rules (but who always gets results) tries to track down a serial killer who snipes at random victims.","id":"984","runtime":102,"imdbId":"tt0066999","trailer":"http:\/\/www.youtube.com\/watch?v=b6Ro0Wiq6v0","version":178,"lastModified":"1301901250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4cf694105e73d6299d001306\/dirty-harry-mid.jpg","studio":"Malpaso Productions","genre":"Action","title":"Dirty Harry","releaseDate":58752000000,"language":"en","tagline":"You don't assign him to murder cases, You just turn him loose.","type":"Movie","_key":"9132"} +{"label":"Don Siegel","version":68,"id":"14773","lastModified":"1301995708000","name":"Don Siegel","type":"Person","_key":"9133"} +{"label":"Andrew Robinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4ca3817a7b9aa16ed900004e\/andrew-robinson-profile.jpg","version":25,"id":"14782","lastModified":"1301901357000","name":"Andrew Robinson","type":"Person","_key":"9134"} +{"label":"John Vernon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/052\/4ca3830c7b9aa16ed9000052\/john-vernon-profile.jpg","version":58,"id":"17580","lastModified":"1301901296000","name":"John Vernon","type":"Person","_key":"9135"} +{"label":"Reni Santoni","version":31,"id":"14784","lastModified":"1301901217000","name":"Reni Santoni","type":"Person","_key":"9136"} +{"label":"Harry Guardino","version":35,"id":"14785","lastModified":"1300048528000","name":"Harry Guardino","type":"Person","_key":"9137"} +{"label":"John Mitchum","version":18,"id":"14786","lastModified":"1301901543000","name":"John Mitchum","type":"Person","_key":"9138"} +{"label":"Mae Mercer","version":18,"id":"14787","lastModified":"1301901432000","name":"Mae Mercer","type":"Person","_key":"9139"} +{"label":"Lyn Edgington","version":17,"id":"14788","lastModified":"1301901383000","name":"Lyn Edgington","type":"Person","_key":"9140"} +{"label":"Ruth Kobart","version":17,"id":"14789","lastModified":"1301901543000","name":"Ruth Kobart","type":"Person","_key":"9141"} +{"label":"William Paterson","version":17,"id":"14790","lastModified":"1301901432000","name":"William Paterson","type":"Person","_key":"9142"} +{"label":"James Nolan","version":22,"id":"14791","lastModified":"1301901339000","name":"James Nolan","type":"Person","_key":"9143"} +{"label":"Josef Sommer","version":66,"id":"14792","lastModified":"1301901164000","name":"Josef Sommer","type":"Person","_key":"9144"} +{"label":"Eraserhead","description":"Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.","id":"985","runtime":89,"imdbId":"tt0074486","version":89,"lastModified":"1301902164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf7\/4d621a247b9aa154cb005bf7\/eraserhead-mid.jpg","studio":"Independent Productions","genre":"Fantasy","title":"Eraserhead","releaseDate":227577600000,"language":"en","type":"Movie","_key":"9145"} +{"label":"Charlotte Stewart","version":22,"id":"14794","lastModified":"1301901513000","name":"Charlotte Stewart","type":"Person","_key":"9146"} +{"label":"Allen Joseph","version":21,"id":"14795","lastModified":"1301901590000","name":"Allen Joseph","type":"Person","_key":"9147"} +{"label":"Jeanne Bates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/510\/4c06c378017a3c7e92000510\/jeanne-bates-profile.jpg","version":22,"id":"14796","lastModified":"1301901519000","name":"Jeanne Bates","type":"Person","_key":"9148"} +{"label":"Judith Roberts","version":31,"id":"14797","lastModified":"1301901713000","name":"Judith Roberts","type":"Person","_key":"9149"} +{"label":"Laurel Near","version":19,"id":"14798","lastModified":"1301901685000","name":"Laurel Near","type":"Person","_key":"9150"} +{"label":"T. Max Graham","version":19,"id":"14799","lastModified":"1301902020000","name":"T. Max Graham","type":"Person","_key":"9151"} +{"label":"Jennifer Chambers Lynch","version":28,"id":"14800","lastModified":"1301901450000","name":"Jennifer Chambers Lynch","type":"Person","_key":"9152"} +{"label":"Hal Landon Jr.","version":23,"id":"14801","lastModified":"1301901665000","name":"Hal Landon Jr.","type":"Person","_key":"9153"} +{"label":"Jean Lange","version":19,"id":"14802","lastModified":"1301901665000","name":"Jean Lange","type":"Person","_key":"9154"} +{"label":"Chimes at Midnight","description":"Chimes at Midnight is an independently produced European film from director Orson Welles. The film is based on the play Henry IV by William Shakespeare.","id":"986","runtime":117,"imdbId":"tt0059012","version":86,"lastModified":"1301902899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/683\/4ce498de7b9aa168b2000683\/campanadas-a-medianoche-mid.jpg","studio":"Internacional Films Espagnol","genre":"Comedy","title":"Chimes at Midnight","releaseDate":-127094400000,"language":"en","type":"Movie","_key":"9155"} +{"label":"Jeanne Moreau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13c\/4c2250cf7b9aa1375300013c\/jeanne-moreau-profile.jpg","version":73,"id":"14812","lastModified":"1299957967000","name":"Jeanne Moreau","type":"Person","_key":"9156"} +{"label":"Marina Vlady","version":23,"id":"14813","lastModified":"1302033319000","name":"Marina Vlady","type":"Person","_key":"9157"} +{"label":"Walter Chiari","version":28,"id":"14814","lastModified":"1301904134000","name":"Walter Chiari","type":"Person","_key":"9158"} +{"label":"Michael Aldridge","version":19,"id":"14815","lastModified":"1301901403000","name":"Michael Aldridge","type":"Person","_key":"9159"} +{"label":"Tony Beckley","version":20,"id":"14816","lastModified":"1299494956000","name":"Tony Beckley","type":"Person","_key":"9160"} +{"label":"Jeremy Rowe","version":17,"id":"14817","lastModified":"1301901432000","name":"Jeremy Rowe","type":"Person","_key":"9161"} +{"label":"Norman Rodway","version":17,"id":"14818","lastModified":"1301901479000","name":"Norman Rodway","type":"Person","_key":"9162"} +{"label":"Keith Baxter","version":18,"id":"14819","lastModified":"1301901432000","name":"Keith Baxter","type":"Person","_key":"9163"} +{"label":"Alan Webb","version":27,"id":"14820","lastModified":"1301901479000","name":"Alan Webb","type":"Person","_key":"9164"} +{"label":"Fernando Rey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4c24b3427b9aa144700000d0\/fernando-rey-profile.jpg","version":51,"id":"14821","lastModified":"1299493001000","name":"Fernando Rey","type":"Person","_key":"9165"} +{"label":"Jos\u00e9 Nieto","version":22,"id":"14822","lastModified":"1301901487000","name":"Jos\u00e9 Nieto","type":"Person","_key":"9166"} +{"label":"Andrew Faulds","version":20,"id":"14823","lastModified":"1301901515000","name":"Andrew Faulds","type":"Person","_key":"9167"} +{"label":"The Front Page","description":"The Front Page is a comedy from director Billy Wilder from 1974 starring Jack Lemmon, Walter Matthau and Susan Sarandon. A journalist named Johnson is suffering from a burn-out-syndrom and wants to finally say goodbye to his office except for the fact that his boss doesn\u2019t like the idea one bit.","id":"987","runtime":105,"imdbId":"tt0071524","version":99,"lastModified":"1301907292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84c\/4c706e785e73d65f7d00084c\/the-front-page-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Front Page","releaseDate":155088000000,"language":"en","type":"Movie","_key":"9168"} +{"label":"Vincent Gardenia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/180\/4d7827735e73d63f88000180\/vincent-gardenia-profile.jpg","version":40,"id":"14830","lastModified":"1301901322000","name":"Vincent Gardenia","type":"Person","_key":"9169"} +{"label":"David Wayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2de\/4c4740a27b9aa15de00002de\/david-wayne-profile.jpg","version":34,"id":"14831","lastModified":"1301901335000","name":"David Wayne","type":"Person","_key":"9170"} +{"label":"Herb Edelman","version":33,"id":"14832","lastModified":"1301901583000","name":"Herb Edelman","type":"Person","_key":"9171"} +{"label":"Harold Gould","version":45,"id":"14833","lastModified":"1301974980000","name":"Harold Gould","type":"Person","_key":"9172"} +{"label":"Cliff Osmond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20f\/4bf69e54017a3c772a00020f\/cliff-osmond-profile.jpg","version":25,"id":"14834","lastModified":"1301901354000","name":"Cliff Osmond","type":"Person","_key":"9173"} +{"label":"Dick O'Neill","version":26,"id":"14835","lastModified":"1301901351000","name":"Dick O'Neill","type":"Person","_key":"9174"} +{"label":"Jon Korkes","version":20,"id":"14836","lastModified":"1301901644000","name":"Jon Korkes","type":"Person","_key":"9175"} +{"label":"Carol Burnett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fce\/4d73ec347b9aa16ad8000fce\/carol-burnett-profile.jpg","version":43,"id":"14837","lastModified":"1301901089000","name":"Carol Burnett","type":"Person","_key":"9176"} +{"label":"The China Syndrome","description":"While doing a series of reports on alternative energy sources, an opportunistic reporter Kimberly Wells witnesses an accident at a nuclear power plant. Wells is determined to publicise the incident but soon finds herself entangled in a sinister conspiracy to keep the full impact of the incident a secret.","id":"988","runtime":122,"imdbId":"tt0078966","trailer":"http:\/\/www.youtube.com\/watch?v=6PJ-BzXAN1c","version":126,"lastModified":"1301906326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/603\/4bc90eff017a3c57fe005603\/the-china-syndrome-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"The China Syndrome","releaseDate":290390400000,"language":"en","tagline":"Sometimes it\u2019s too late to tell the truth.","type":"Movie","_key":"9177"} +{"label":"James Bridges","version":24,"id":"14838","lastModified":"1301901383000","name":"James Bridges","type":"Person","_key":"9178"} +{"label":"James Hampton","version":26,"id":"14848","lastModified":"1301901383000","name":"James Hampton","type":"Person","_key":"9179"} +{"label":"Peter Donat","version":26,"id":"14849","lastModified":"1301901691000","name":"Peter Donat","type":"Person","_key":"9180"} +{"label":"Wilford Brimley","version":43,"id":"11065","lastModified":"1299491738000","name":"Wilford Brimley","type":"Person","_key":"9181"} +{"label":"Daniel Valdez","version":19,"id":"14850","lastModified":"1301901830000","name":"Daniel Valdez","type":"Person","_key":"9182"} +{"label":"Stan Bohrman","version":18,"id":"14851","lastModified":"1301901751000","name":"Stan Bohrman","type":"Person","_key":"9183"} +{"label":"James Karen","version":38,"id":"14852","lastModified":"1299905872000","name":"James Karen","type":"Person","_key":"9184"} +{"label":"Michael Alaimo","version":21,"id":"14853","lastModified":"1301901751000","name":"Michael Alaimo","type":"Person","_key":"9185"} +{"label":"Donald Hotton","version":19,"id":"14854","lastModified":"1301901708000","name":"Donald Hotton","type":"Person","_key":"9186"} +{"label":"The Mortal Storm","description":"The Mortal Storm is an American anti-Nazi film starring James Stewart. The film shows the divisiveness of a family living under the Nazi regime. ","id":"989","runtime":100,"imdbId":"tt0032811","version":73,"lastModified":"1301903465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/611\/4bc90eff017a3c57fe005611\/the-mortal-storm-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Mortal Storm","releaseDate":-931996800000,"language":"en","type":"Movie","_key":"9187"} +{"label":"Frank Borzage","version":27,"id":"14855","lastModified":"1301901449000","name":"Frank Borzage","type":"Person","_key":"9188"} +{"label":"Robert Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4bd5c645017a3c658a00005a\/robert-young-profile.jpg","version":39,"id":"14868","lastModified":"1301901331000","name":"Robert Young","type":"Person","_key":"9189"} +{"label":"Margaret Sullavan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c83\/4be7237c017a3c35bf000c83\/margaret-sullavan-profile.jpg","version":22,"id":"14869","lastModified":"1301983210000","name":"Margaret Sullavan","type":"Person","_key":"9190"} +{"label":"Bonita Granville","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4bd5b7f3017a3c657e000027\/bonita-granville-profile.jpg","version":30,"id":"14870","lastModified":"1301901425000","name":"Bonita Granville","type":"Person","_key":"9191"} +{"label":"Irene Rich","version":22,"id":"14871","lastModified":"1301901773000","name":"Irene Rich","type":"Person","_key":"9192"} +{"label":"William T. Orr","version":16,"id":"14872","lastModified":"1301901626000","name":"William T. Orr","type":"Person","_key":"9193"} +{"label":"Maria Ouspenskaya","version":36,"id":"14873","lastModified":"1301983372000","name":"Maria Ouspenskaya","type":"Person","_key":"9194"} +{"label":"Gene Reynolds","version":20,"id":"14874","lastModified":"1301901459000","name":"Gene Reynolds","type":"Person","_key":"9195"} +{"label":"The Hustler","description":"The Hustler is an film from 1961 from director Robert Rossen and based on a novel by Walter Tevis. Paul Newman stars as a talented pool player.","id":"990","runtime":134,"imdbId":"tt0054997","trailer":"http:\/\/www.youtube.com\/watch?v=1jBQqBIhSzQ","version":166,"lastModified":"1301903618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb3\/4c72c9aa7b9aa13ab5000cb3\/the-hustler-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Hustler","releaseDate":-260928000000,"language":"en","tagline":"They called him 'Fast Eddie'... He was a winner... He was a loser... He was a hustler.","type":"Movie","_key":"9196"} +{"label":"Robert Rossen","version":42,"id":"14875","lastModified":"1301901644000","name":"Robert Rossen","type":"Person","_key":"9197"} +{"label":"Jackie Gleason","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a8\/4c864db37b9aa1545d0000a8\/jackie-gleason-profile.jpg","version":49,"birthday":"-1699318800000","id":"14882","birthplace":"Brooklyn, New York, USA","lastModified":"1301901121000","name":"Jackie Gleason","type":"Person","_key":"9198"} +{"label":"Piper Laurie","version":53,"id":"6721","lastModified":"1301901291000","name":"Piper Laurie","type":"Person","_key":"9199"} +{"label":"Myron McCormick","version":21,"id":"14883","lastModified":"1301901943000","name":"Myron McCormick","type":"Person","_key":"9200"} +{"label":"Michael Constantine","version":33,"id":"14884","lastModified":"1301901403000","name":"Michael Constantine","type":"Person","_key":"9201"} +{"label":"Gordon B. Clarke","version":19,"id":"14885","lastModified":"1301901943000","name":"Gordon B. Clarke","type":"Person","_key":"9202"} +{"label":"The Man Who Fell To Earth","description":"Thomas Jerome Newton is an alien who comes to Earth to get water for his dying planet. He starts a high technology company to get the billions of dollars he needs to build a return spacecraft. A British science-fiction film from director Nicolas Roeg and starring David Bowie.","id":"991","runtime":138,"imdbId":"tt0074851","version":136,"lastModified":"1301907748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25b\/4d4d0bcf7b9aa13b4800825b\/the-man-who-fell-to-earth-mid.jpg","studio":"British Lion Films","genre":"Drama","title":"The Man Who Fell To Earth","releaseDate":202089600000,"language":"en","type":"Movie","_key":"9203"} +{"label":"Tony Mascia","version":18,"id":"14904","lastModified":"1301901479000","name":"Tony Mascia","type":"Person","_key":"9204"} +{"label":"Buck Henry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a5\/4cb5c78a7b9aa138da0002a5\/buck-henry-profile.jpg","version":61,"id":"7795","lastModified":"1301901293000","name":"Buck Henry","type":"Person","_key":"9205"} +{"label":"Bernie Casey","version":36,"id":"10939","lastModified":"1301901441000","name":"Bernie Casey","type":"Person","_key":"9206"} +{"label":"Rick Riccardo","version":18,"id":"14908","lastModified":"1301901751000","name":"Rick Riccardo","type":"Person","_key":"9207"} +{"label":"Linda Hutton","version":18,"id":"14909","lastModified":"1301901751000","name":"Linda Hutton","type":"Person","_key":"9208"} +{"label":"Hilary Holland","version":19,"id":"14910","lastModified":"1301901829000","name":"Hilary Holland","type":"Person","_key":"9209"} +{"label":"Sherlock Jr.","description":"A film projectionist longs to be a detective, and puts his meagre skills to work when he is framed by a rival for stealing his girlfriend's father's pocketwatch.","id":"992","runtime":44,"imdbId":"tt0015324","version":150,"lastModified":"1301904479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0da\/4c9dba095e73d6704d0000da\/sherlock-jr-mid.jpg","studio":"Metro Productions","genre":"Comedy","title":"Sherlock Jr.","releaseDate":-1442102400000,"language":"en","type":"Movie","_key":"9210"} +{"label":"Kathryn McGuire","version":20,"id":"14920","lastModified":"1301901363000","name":"Kathryn McGuire","type":"Person","_key":"9211"} +{"label":"Erwin Connelly","version":19,"id":"14921","lastModified":"1301901295000","name":"Erwin Connelly","type":"Person","_key":"9212"} +{"label":"Ward Crane","version":18,"id":"14922","lastModified":"1301901827000","name":"Ward Crane","type":"Person","_key":"9213"} +{"label":"Sleuth","description":"Sleuth is a thriller from director Joseph L. Mankiewicz starring Michael Caine and Laurence Olivier.","id":"993","runtime":138,"imdbId":"tt0069281","trailer":"http:\/\/www.youtube.com\/watch?v=XBRMaieaLdU","version":127,"lastModified":"1301902986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/634\/4bc90f04017a3c57fe005634\/sleuth-mid.jpg","studio":"20th Century Fox","genre":"Thriller","title":"Sleuth","releaseDate":92793600000,"language":"en","type":"Movie","_key":"9214"} +{"label":"Alec Cawthorne","version":19,"id":"14936","lastModified":"1301901432000","name":"Alec Cawthorne","type":"Person","_key":"9215"} +{"label":"John Matthews","version":19,"id":"14937","lastModified":"1301901626000","name":"John Matthews","type":"Person","_key":"9216"} +{"label":"Eve Channing","version":19,"id":"14938","lastModified":"1301901914000","name":"Eve Channing","type":"Person","_key":"9217"} +{"label":"Teddy Martin","version":19,"id":"14939","lastModified":"1301901914000","name":"Teddy Martin","type":"Person","_key":"9218"} +{"label":"Cane di paglia","description":"Straw Dogs is an American thriller from director Sam Peckinpah from 1971. Dustin Hoffman stars as a mathematician who faces a ruthless revenge of pressing power.","id":"994","runtime":118,"imdbId":"tt0067800","version":123,"lastModified":"1301905289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63d\/4bc90f04017a3c57fe00563d\/straw-dogs-mid.jpg","studio":"ABC Pictures","genre":"Drama","title":"Cane di paglia","releaseDate":62812800000,"language":"en","type":"Movie","_key":"9219"} +{"label":"Susan George","version":35,"id":"14947","lastModified":"1301995822000","name":"Susan George","type":"Person","_key":"9220"} +{"label":"T.P. McKenna","version":22,"id":"14948","lastModified":"1301901478000","name":"T.P. McKenna","type":"Person","_key":"9221"} +{"label":"Del Henney","version":22,"id":"14949","lastModified":"1301901339000","name":"Del Henney","type":"Person","_key":"9222"} +{"label":"Jim Norton","version":26,"id":"14950","lastModified":"1301901787000","name":"Jim Norton","type":"Person","_key":"9223"} +{"label":"Donald Webster","version":18,"id":"14951","lastModified":"1301901626000","name":"Donald Webster","type":"Person","_key":"9224"} +{"label":"Len Jones","version":18,"id":"14952","lastModified":"1301901626000","name":"Len Jones","type":"Person","_key":"9225"} +{"label":"Sally Thomsett","version":19,"id":"14953","lastModified":"1301901773000","name":"Sally Thomsett","type":"Person","_key":"9226"} +{"label":"Robert Keegan","version":20,"id":"14954","lastModified":"1301901751000","name":"Robert Keegan","type":"Person","_key":"9227"} +{"label":"Peter Arne","version":25,"id":"14955","lastModified":"1301901432000","name":"Peter Arne","type":"Person","_key":"9228"} +{"label":"Cherina Schaer","version":18,"id":"14956","lastModified":"1301901626000","name":"Cherina Schaer","type":"Person","_key":"9229"} +{"label":"Colin Welland","version":25,"id":"14957","lastModified":"1301901751000","name":"Colin Welland","type":"Person","_key":"9230"} +{"label":"Stagecoach","description":"Stagecoach is a western film from director John Ford. John Wayne stars as The Ringo Kid and would become world famous from the film.","id":"995","runtime":96,"imdbId":"tt0031971","version":154,"lastModified":"1301903170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64e\/4bc90f08017a3c57fe00564e\/stagecoach-mid.jpg","studio":"United Artists","genre":"Drama","title":"Stagecoach","releaseDate":-974419200000,"language":"en","type":"Movie","_key":"9231"} +{"label":"Claire Trevor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4bd5cc84017a3c657d00004f\/claire-trevor-profile.jpg","version":50,"id":"14965","lastModified":"1301901415000","name":"Claire Trevor","type":"Person","_key":"9232"} +{"label":"Andy Devine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/acd\/4cc1920e7b9aa138da001acd\/andy-devine-profile.jpg","version":41,"id":"14966","lastModified":"1301901299000","name":"Andy Devine","type":"Person","_key":"9233"} +{"label":"Louise Platt","version":19,"id":"14967","lastModified":"1301902019000","name":"Louise Platt","type":"Person","_key":"9234"} +{"label":"Donald Meek","version":29,"id":"14968","lastModified":"1301901550000","name":"Donald Meek","type":"Person","_key":"9235"} +{"label":"Berton Churchill","version":18,"id":"14969","lastModified":"1301901631000","name":"Berton Churchill","type":"Person","_key":"9236"} +{"label":"Tom Tyler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67e\/4bf44651017a3c320f00067e\/tom-tyler-profile.jpg","version":26,"id":"14970","lastModified":"1301901805000","name":"Tom Tyler","type":"Person","_key":"9237"} +{"label":"Double Indemnity","description":"Double Indemnity is a film noir thriller from directory Billy Wilder from 1944 in which the protagonist sets up an insurance fraud. ","id":"996","runtime":107,"imdbId":"tt0036775","trailer":"http:\/\/www.youtube.com\/watch?v=S3wjJcuGsVE","version":163,"lastModified":"1301902583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65b\/4bc90f09017a3c57fe00565b\/double-indemnity-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Double Indemnity","releaseDate":-799027200000,"language":"en","tagline":"From the Moment they met it was Murder!","type":"Movie","_key":"9238"} +{"label":"Barbara Stanwyck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4bcf31cb017a3c63f1000026\/barbara-stanwyck-profile.jpg","version":79,"birthday":"-1971219600000","id":"14974","birthplace":"Brooklyn, New York, USA","lastModified":"1301904071000","name":"Barbara Stanwyck","type":"Person","_key":"9239"} +{"label":"Porter Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4cc6e6487b9aa15b240000ba\/porter-hall-profile.jpg","version":38,"birthday":"-2565046800000","id":"14975","birthplace":"Cincinnati, Ohio, USA","lastModified":"1301901295000","name":"Porter Hall","type":"Person","_key":"9240"} +{"label":"Richard Gaines","version":27,"id":"14976","lastModified":"1301901383000","name":"Richard Gaines","type":"Person","_key":"9241"} +{"label":"Jean Heather","version":19,"id":"14977","lastModified":"1301901685000","name":"Jean Heather","type":"Person","_key":"9242"} +{"label":"Tom Powers","version":38,"id":"14978","lastModified":"1301901228000","name":"Tom Powers","type":"Person","_key":"9243"} +{"label":"Fortunio Bonanova","version":32,"id":"14979","lastModified":"1301901642000","name":"Fortunio Bonanova","type":"Person","_key":"9244"} +{"label":"John Philliber","version":21,"id":"14980","lastModified":"1301902019000","name":"John Philliber","type":"Person","_key":"9245"} +{"label":"Austin Powers Collection","description":"The Austin Powers series is a series of comedy films written and produced by and stars Mike Myers as the title character, directed by Jay Roach and distributed by New Line Cinema. The films mainly spoof the James Bond, Derek Flint, Jason King and Matt Helm franchises, incorporate myriad other elements of popular culture and follows the British spy's quest to bring the villain Dr. Evil to justice.","id":"1006","homepage":"http:\/\/www.austinpowers.com","version":116,"lastModified":"1299812912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/669\/4bc90f0b017a3c57fe005669\/austin-powers-mid.jpg","title":"Austin Powers Collection","language":"en","tagline":"If he were any cooler, he'd still be frozen, baby!","type":"Movie","_key":"9246"} +{"label":"Mulholland Drive","description":"After a car wreck on the winding Mulholland Drive renders a woman amnesic, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.","id":"1018","runtime":141,"imdbId":"tt0166924","trailer":"http:\/\/www.youtube.com\/watch?v=96R9MG0DxLc","homepage":"http:\/\/www.mulhollanddrive.com\/","version":152,"lastModified":"1299988763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03c\/4c8ed8ea7b9aa1768900003c\/mulholland-drive-mid.jpg","studio":"Asymmetrical Productions","genre":"Crime","title":"Mulholland Drive","releaseDate":989971200000,"language":"en","type":"Movie","_key":"9247"} +{"label":"Laura Harring","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4cb3c4055e73d661c1000002\/laura-harring-profile.jpg","version":30,"id":"15007","lastModified":"1299491391000","name":"Laura Harring","type":"Person","_key":"9248"} +{"label":"Ann Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4c9cc5627b9aa1430b0000fb\/ann-miller-profile.jpg","version":24,"id":"15008","lastModified":"1299492793000","name":"Ann Miller","type":"Person","_key":"9249"} +{"label":"Lori Heuring","version":28,"id":"15010","lastModified":"1299763922000","name":"Lori Heuring","type":"Person","_key":"9250"} +{"label":"Brent Briscoe","version":23,"id":"15011","lastModified":"1299492236000","name":"Brent Briscoe","type":"Person","_key":"9251"} +{"label":"Katharine Towne","version":21,"id":"15012","lastModified":"1299496645000","name":"Katharine Towne","type":"Person","_key":"9252"} +{"label":"Chad Everett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70f\/4ca9f8637b9aa17acc00070f\/chad-everett-profile.jpg","version":24,"id":"15013","lastModified":"1299493908000","name":"Chad Everett","type":"Person","_key":"9253"} +{"label":"Adam's Apples","description":"A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.","id":"1023","runtime":94,"imdbId":"tt0418455","version":135,"lastModified":"1299910771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69c\/4bc90f12017a3c57fe00569c\/adams-bler-mid.jpg","studio":"M&M Productions A\/S","genre":"Comedy","title":"Adam's Apples","releaseDate":1113523200000,"language":"en","type":"Movie","_key":"9254"} +{"label":"Anders Thomas Jensen","version":57,"id":"1012","lastModified":"1299948833000","name":"Anders Thomas Jensen","type":"Person","_key":"9255"} +{"label":"Ole Thestrup","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/237\/4c17ecba5e73d64a20000237\/ole-thestrup-profile.jpg","version":24,"id":"15085","lastModified":"1299494088000","name":"Ole Thestrup","type":"Person","_key":"9256"} +{"label":"Nicolas Bro","version":30,"id":"15086","lastModified":"1299672742000","name":"Nicolas Bro","type":"Person","_key":"9257"} +{"label":"Ali Kazim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23c\/4c17ed1d5e73d64a2000023c\/ali-kazim-profile.jpg","version":21,"id":"15087","lastModified":"1299499367000","name":"Ali Kazim","type":"Person","_key":"9258"} +{"label":"Gyrd L\u00f8fquist","version":18,"id":"15088","lastModified":"1299497714000","name":"Gyrd L\u00f8fquist","type":"Person","_key":"9259"} +{"label":"Heavenly Creatures","description":"Two girls have an intense fantasy life; their parents, concerned the fantasy is too intense, separate them, and the girls take revenge.","id":"1024","runtime":108,"imdbId":"tt0110005","trailer":"http:\/\/www.youtube.com\/watch?v=2356","version":85,"lastModified":"1299909736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6aa\/4bc90f13017a3c57fe0056aa\/heavenly-creatures-mid.jpg","studio":"Fontana Productions","genre":"Drama","title":"Heavenly Creatures","releaseDate":779328000000,"language":"en","tagline":"The true story of a crime that shocked a nation.","type":"Movie","_key":"9260"} +{"label":"Melanie Lynskey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c9\/4cdc68497b9aa138030000c9\/melanie-lynskey-profile.jpg","version":60,"birthday":"232585200000","id":"15091","birthplace":"New Plymouth, New Zealand","lastModified":"1299899626000","name":"Melanie Lynskey","type":"Person","_key":"9261"} +{"label":"Sarah Peirse","version":15,"id":"15092","lastModified":"1299492849000","name":"Sarah Peirse","type":"Person","_key":"9262"} +{"label":"Simon O'Connor","version":15,"id":"15093","lastModified":"1299493045000","name":"Simon O'Connor","type":"Person","_key":"9263"} +{"label":"Diana Kent","version":16,"id":"15094","lastModified":"1299497364000","name":"Diana Kent","type":"Person","_key":"9264"} +{"label":"Gilbert Goldie","version":15,"id":"15095","lastModified":"1299497364000","name":"Gilbert Goldie","type":"Person","_key":"9265"} +{"label":"Die Siebtelbauern","description":"No overview found.","id":"1039","runtime":95,"imdbId":"tt0141824","version":77,"lastModified":"1299813976000","studio":"Bayerischer Rundfunk","genre":"Drama","title":"Die Siebtelbauern","releaseDate":898214400000,"language":"en","type":"Movie","_key":"9266"} +{"label":"Stefan Ruzowitzky","version":34,"id":"15115","lastModified":"1299493401000","name":"Stefan Ruzowitzky","type":"Person","_key":"9267"} +{"label":"Simon Schwarz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b26\/4d58286f5e73d617c7010b26\/simon-schwarz-profile.jpg","version":33,"id":"15121","lastModified":"1299493963000","name":"Simon Schwarz","type":"Person","_key":"9268"} +{"label":"Sophie Rois","version":21,"id":"15122","lastModified":"1299930281000","name":"Sophie Rois","type":"Person","_key":"9269"} +{"label":"Ulrich Wildgruber","version":13,"id":"15123","lastModified":"1299501291000","name":"Ulrich Wildgruber","type":"Person","_key":"9270"} +{"label":"Julia Gschnitzer","version":14,"id":"15124","lastModified":"1299501638000","name":"Julia Gschnitzer","type":"Person","_key":"9271"} +{"label":"Elisabeth Orth","version":13,"id":"15125","lastModified":"1299501655000","name":"Elisabeth Orth","type":"Person","_key":"9272"} +{"label":"Werner Prinz","version":14,"id":"15126","lastModified":"1299501639000","name":"Werner Prinz","type":"Person","_key":"9273"} +{"label":"The Leopard","description":"One of Luchino Visconti's most ambitious works. Based on the acclaimed novel by Giuseppe Tomasi di Lampedusa. In the 1860s, a dying aristocracy struggles to maintain itself against a harsh Sicilian landscape. The film traces with a slow and deliberate rhythm the waning of the noble home of the Prince of Salina and the corresponding rise to eminence of the wealthy peasant Don Calogero Sedara.","id":"1040","runtime":185,"imdbId":"tt0057091","version":121,"lastModified":"1299957199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ac\/4d59a68d5e73d665fc0002ac\/il-gattopardo-mid.jpg","studio":"Titanus","genre":"Drama","title":"The Leopard","releaseDate":-213494400000,"language":"en","type":"Movie","_key":"9274"} +{"label":"Luchino Visconti","biography":"Luchino Visconti di Modrone, Count of Lonate Pozzolo (2 November 1906 - 17 March 1976) was an Italian theatre, opera and cinema director, as well as a screenwriter. He is best known for his films The Leopard (1963) and Death in Venice (1971).","version":63,"birthday":"-1993338000000","id":"15127","birthplace":"Milan, Lombardy, Italy","lastModified":"1299756174000","name":"Luchino Visconti","type":"Person","_key":"9275"} +{"label":"Alain Delon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d38\/4bfe7ac9017a3c7036000d38\/alain-delon-profile.jpg","biography":"<p>The product of a broken home, Alain Delon had a stormy childhood. He was frequently expelled from school.\n\nDuring\n the early 50s - parachutist with French Marines in Indochina; mid-50s -\n worked at various odd jobs including, waiter, salesman, and porter in \nLes Halles market; 1957 - film <a href=\"http:\/\/www.imdb.com\/search\/name?bio=debut\">debut<\/a> in <a href=\"http:\/\/www.imdb.com\/name\/nm0001905\/\">Yves All\u00e9gret<\/a>'s\n Quand la femmes s'en mele; declined contract with Selznick studios; \n1960 -","version":90,"birthday":"-1077670800000","id":"15135","birthplace":"Sceaux, Seine, France","lastModified":"1300034886000","name":"Alain Delon","type":"Person","_key":"9276"} +{"label":"Rina Morelli","version":17,"id":"15136","lastModified":"1299496420000","name":"Rina Morelli","type":"Person","_key":"9277"} +{"label":"Serge Reggiani","version":31,"id":"15137","lastModified":"1299947528000","name":"Serge Reggiani","type":"Person","_key":"9278"} +{"label":"Ottavia Piccolo","version":20,"id":"15138","lastModified":"1299497609000","name":"Ottavia Piccolo","type":"Person","_key":"9279"} +{"label":"Giuliano Gemma","version":29,"id":"15139","lastModified":"1299495683000","name":"Giuliano Gemma","type":"Person","_key":"9280"} +{"label":"Terence Hill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4c014cd9017a3c703700110a\/terence-hill-profile.jpg","biography":"Terence Hill, nome d'arte di Mario Girotti (Venezia, 29 marzo 1939), \u00e8 un attore e regista italiano, particolarmente noto per i suoi film in coppia con Bud Spencer (con il quale, nel 2010, ha ricevuto il David di Donatello alla carriera) e, nell'ultimo decennio, per la serie televisiva Don Matteo. \u00c8 stato anche interprete di fotoromanzi.","version":123,"birthday":"-970794000000","id":"15140","birthplace":"Venezia, Italy","lastModified":"1299491178000","name":"Terence Hill","type":"Person","_key":"9281"} +{"label":"Sommersby","description":"Set in the south of the United States just after the Civil War, Laurel Sommersby is just managing to work the farm without her husband Jack, believed killed in the Civil War. By all accounts, Jack Sommersby was not a pleasant man, thus when he returns, Laurel has mixed emotions. It appears that Jack has changed a great deal, leading some people to believe that this is not actually Jack but an imposter. Laurel herself is unsure, but willing to take the man into her home, and perhaps later into he","id":"1049","runtime":109,"imdbId":"tt0108185","version":130,"lastModified":"1299910526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/075\/4bde0589017a3c35b4000075\/sommersby-mid.jpg","studio":"Le Studio Canal+","genre":"Drama","title":"Sommersby","releaseDate":728870400000,"language":"en","type":"Movie","_key":"9282"} +{"label":"Jon Amiel","version":33,"id":"15148","lastModified":"1299493963000","name":"Jon Amiel","type":"Person","_key":"9283"} +{"label":"Wendell Wellman","version":16,"id":"15153","lastModified":"1299498561000","name":"Wendell Wellman","type":"Person","_key":"9284"} +{"label":"Brett Kelley","version":12,"id":"15154","lastModified":"1299497128000","name":"Brett Kelley","type":"Person","_key":"9285"} +{"label":"Clarice Taylor","version":12,"id":"15155","lastModified":"1299494746000","name":"Clarice Taylor","type":"Person","_key":"9286"} +{"label":"Shower","description":"An aged father and his younger, mentally challenged son have been working hard every day to keep the bathhouse running for a motley group of regular customers. When his elder son, who left years ago to seek his fortune in the southern city of Shenzhen, abruptly returns one day, it once again puts under stress the long-broken father-son ties. Presented as a light-hearted comedy, Shower explores the value of family, friendship, and tradition.","id":"1050","runtime":92,"imdbId":"tt0215369","version":125,"lastModified":"1299987854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c0\/4bc90f17017a3c57fe0056c0\/xizao-mid.jpg","studio":"Imar Film Co., Ltd.","genre":"Comedy","title":"Shower","releaseDate":948412800000,"language":"en","type":"Movie","_key":"9287"} +{"label":"Yang Zhang","version":22,"id":"15156","lastModified":"1299497857000","name":"Yang Zhang","type":"Person","_key":"9288"} +{"label":"Xu Zhu","version":16,"id":"15168","lastModified":"1299497454000","name":"Xu Zhu","type":"Person","_key":"9289"} +{"label":"Quanxin Pu","version":15,"id":"15169","lastModified":"1299497470000","name":"Quanxin Pu","type":"Person","_key":"9290"} +{"label":"Wu Jiang","version":14,"id":"15170","lastModified":"1299497455000","name":"Wu Jiang","type":"Person","_key":"9291"} +{"label":"He Zeng","version":18,"id":"15171","lastModified":"1299496367000","name":"He Zeng","type":"Person","_key":"9292"} +{"label":"Zhang Jin Hao","version":15,"id":"15172","lastModified":"1299499259000","name":"Zhang Jin Hao","type":"Person","_key":"9293"} +{"label":"Lao Lin","version":14,"id":"15173","lastModified":"1299499072000","name":"Lao Lin","type":"Person","_key":"9294"} +{"label":"Lao Wu","version":15,"id":"15174","lastModified":"1299499253000","name":"Lao Wu","type":"Person","_key":"9295"} +{"label":"The French Connection","description":"A pair of NYC cops in the Narcotics Bureau stumble onto a drug smuggling job with a French connection.","id":"1051","runtime":104,"imdbId":"tt0067116","trailer":"http:\/\/www.youtube.com\/watch?v=3400","version":134,"lastModified":"1299912650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d5\/4bc90f19017a3c57fe0056d5\/the-french-connection-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The French Connection","releaseDate":55641600000,"language":"en","type":"Movie","_key":"9296"} +{"label":"William Friedkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4c5fe1e35e73d6345f0000c6\/william-friedkin-profile.jpg","biography":"William Friedkin (born 29 August 1935) is an American film director, producer and screenwriter best known for directing The French Connection in 1971 and The Exorcist in 1973; for the former, he won the Academy Award for Best Director. His recent film, Bug (2006) won the FIPRESCI prize at the Cannes Film Festival.\n\n\nAfter seeing the movie Citizen Kane as a boy, Friedkin became fascinated with movies and began working for WGN-TV immediately after high school. He eventually started his directorial","version":44,"id":"15175","lastModified":"1299927300000","name":"William Friedkin","type":"Person","_key":"9297"} +{"label":"Tony Lo Bianco","version":22,"id":"15183","lastModified":"1299495014000","name":"Tony Lo Bianco","type":"Person","_key":"9298"} +{"label":"Marcel Bozzuffi","version":21,"id":"15184","lastModified":"1299775296000","name":"Marcel Bozzuffi","type":"Person","_key":"9299"} +{"label":"Bill Hickman","version":12,"id":"15186","lastModified":"1299495947000","name":"Bill Hickman","type":"Person","_key":"9300"} +{"label":"Harold Gary","version":13,"id":"15187","lastModified":"1299497232000","name":"Harold Gary","type":"Person","_key":"9301"} +{"label":"Arlene Farber","version":13,"id":"15188","lastModified":"1299496142000","name":"Arlene Farber","type":"Person","_key":"9302"} +{"label":"Blowup","description":"A successful mod photographer in London whose world is bounded by fashion, pop music, marijuana, and easy sex, feels his life is boring and despairing. But in the course of a single day he accidentally captures on film the commission of a murder. The fact that he has photographed a murder does not occur to him until he studies and then blows up his negatives, uncovering details, blowing up smaller and smaller elements, and finally putting the puzzle together.","id":"1052","runtime":111,"imdbId":"tt0060176","trailer":"http:\/\/www.youtube.com\/watch?v=2Xz1utzILj4","version":116,"lastModified":"1299910697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e7\/4bc90f1e017a3c57fe0056e7\/blowup-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Blowup","releaseDate":-95904000000,"language":"en","type":"Movie","_key":"9303"} +{"label":"Michelangelo Antonioni","version":60,"id":"15189","lastModified":"1299668838000","name":"Michelangelo Antonioni","type":"Person","_key":"9304"} +{"label":"David Hemmings","version":31,"id":"15196","lastModified":"1299492305000","name":"David Hemmings","type":"Person","_key":"9305"} +{"label":"Sarah Miles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/617\/4c5b1ee77b9aa151f6000617\/sarah-miles-profile.jpg","version":22,"id":"15197","lastModified":"1299492617000","name":"Sarah Miles","type":"Person","_key":"9306"} +{"label":"John Castle","version":21,"id":"15198","lastModified":"1299492804000","name":"John Castle","type":"Person","_key":"9307"} +{"label":"Veruschka von Lehndorff","version":13,"id":"15199","lastModified":"1299499384000","name":"Veruschka von Lehndorff","type":"Person","_key":"9308"} +{"label":"Jane Birkin","version":41,"id":"15200","lastModified":"1299493447000","name":"Jane Birkin","type":"Person","_key":"9309"} +{"label":"Gillian Hills","version":18,"id":"15201","lastModified":"1299498757000","name":"Gillian Hills","type":"Person","_key":"9310"} +{"label":"Peter Bowles","version":28,"id":"15202","lastModified":"1299754926000","name":"Peter Bowles","type":"Person","_key":"9311"} +{"label":"Julian Chagrin","version":13,"id":"15203","lastModified":"1299499384000","name":"Julian Chagrin","type":"Person","_key":"9312"} +{"label":"Claude Chagrin","version":13,"id":"15204","lastModified":"1299499117000","name":"Claude Chagrin","type":"Person","_key":"9313"} +{"label":"Breathless","description":"Jesse has to get out of Las Vegas quickly, and steals a car to drive to L.A. On the way he shoots a police man. When he makes it to L.A. he stays with Monica, a girl he has only known for a few days. As the film progresses, the police get closer to him, and the crimes escalate.","id":"1058","runtime":100,"imdbId":"tt0085276","version":193,"lastModified":"1300068343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4c1d9ad75e73d60b7900009d\/breathless-mid.jpg","studio":"Breathless Associates","genre":"Action","title":"Breathless","releaseDate":421632000000,"language":"en","type":"Movie","_key":"9314"} +{"label":"Jim McBride","version":21,"id":"15206","lastModified":"1299495461000","name":"Jim McBride","type":"Person","_key":"9315"} +{"label":"Val\u00e9rie Kaprisky","version":16,"id":"15211","lastModified":"1299494361000","name":"Val\u00e9rie Kaprisky","type":"Person","_key":"9316"} +{"label":"Art Metrano","version":17,"id":"15212","lastModified":"1299496271000","name":"Art Metrano","type":"Person","_key":"9317"} +{"label":"John P. Ryan","version":37,"id":"15213","lastModified":"1300013547000","name":"John P. Ryan","type":"Person","_key":"9318"} +{"label":"William Tepper","version":18,"id":"15214","lastModified":"1299499298000","name":"William Tepper","type":"Person","_key":"9319"} +{"label":"Robert Dunn","version":18,"id":"15215","lastModified":"1299501638000","name":"Robert Dunn","type":"Person","_key":"9320"} +{"label":"The Hidden Fortress","description":"Lured by gold, two greedy peasants escort a man and woman across enemy lines. However, they do not realize that their companions are actually a princess and her general.","id":"1059","runtime":139,"imdbId":"tt0051808","version":122,"lastModified":"1299910580000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f0\/4bc90f1f017a3c57fe0056f0\/1059-mid.jpg","studio":"Toho Company","genre":"Action","title":"The Hidden Fortress","releaseDate":-347500800000,"language":"en","type":"Movie","_key":"9321"} +{"label":"Misa Uehara","version":18,"id":"69335","lastModified":"1299506115000","name":"Misa Uehara","type":"Person","_key":"9322"} +{"label":"Arlington Road","description":"Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.","id":"1073","runtime":117,"imdbId":"tt0137363","version":155,"lastModified":"1299987096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4ca088b37b9aa1578f0003df\/arlington-road-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Arlington Road","releaseDate":921801600000,"language":"en","tagline":"Your Paranoia Is Real.","type":"Movie","_key":"9323"} +{"label":"Hope Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/285\/4cb5cf187b9aa138d5000285\/hope-davis-profile.jpg","version":65,"id":"15250","lastModified":"1299491944000","name":"Hope Davis","type":"Person","_key":"9324"} +{"label":"Robert Gossett","version":19,"id":"15251","lastModified":"1299496936000","name":"Robert Gossett","type":"Person","_key":"9325"} +{"label":"Mason Gamble","version":27,"id":"15252","lastModified":"1299495549000","name":"Mason Gamble","type":"Person","_key":"9326"} +{"label":"Black Cat, White Cat","description":"Matko is a small time hustler, living by the Danube with his 17 year old son Zare. After a failed business deal he owes money to the much more successful gangster Dadan. Dadan has a sister, Afrodita, that he desperately wants to see get married so they strike a deal: Zare is to marry her. ","id":"1075","runtime":123,"imdbId":"tt0118843","version":109,"lastModified":"1299809819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64f\/4bf41d18017a3c320a00064f\/crna-macka-beli-macor-mid.jpg","studio":"Ciby 2000","genre":"Comedy","title":"Black Cat, White Cat","releaseDate":905385600000,"language":"en","type":"Movie","_key":"9327"} +{"label":"Emir Kusturica","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ff\/4d6435597b9aa129730003ff\/emir-kusturica-profile.jpg","version":77,"id":"15254","lastModified":"1299946818000","name":"Emir Kusturica","type":"Person","_key":"9328"} +{"label":"Bajram Severdzan","version":16,"id":"15264","lastModified":"1299493099000","name":"Bajram Severdzan","type":"Person","_key":"9329"} +{"label":"Sr\u0111an Todorovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5aa\/4d63f5505e73d631050035aa\/srdjan-todorovic-profile.jpg","version":58,"id":"15265","lastModified":"1299492723000","name":"Sr\u0111an Todorovi\u0107","type":"Person","_key":"9330"} +{"label":"Zabit Memedov","version":19,"id":"15266","lastModified":"1299492772000","name":"Zabit Memedov","type":"Person","_key":"9331"} +{"label":"Florijan Ajdini","version":16,"id":"15267","lastModified":"1299493583000","name":"Florijan Ajdini","type":"Person","_key":"9332"} +{"label":"Branka Kati\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29f\/4d6429757b9aa1296f00029f\/branka-kati-profile.jpg","version":32,"id":"15268","lastModified":"1299493759000","name":"Branka Kati\u0107","type":"Person","_key":"9333"} +{"label":"Ljubica Adzovic","version":19,"id":"15269","lastModified":"1299492772000","name":"Ljubica Adzovic","type":"Person","_key":"9334"} +{"label":"Sabri Sulejmani","version":16,"id":"15270","lastModified":"1299495255000","name":"Sabri Sulejmani","type":"Person","_key":"9335"} +{"label":"Jasar Destani","version":16,"id":"15271","lastModified":"1299495254000","name":"Jasar Destani","type":"Person","_key":"9336"} +{"label":"Predrag Lakovic","version":46,"id":"15272","lastModified":"1299492046000","name":"Predrag Lakovic","type":"Person","_key":"9337"} +{"label":"Whale Rider","description":"On the east coast of New Zealand, the Whangara people believe their presence there dates back a thousand years or more to a single ancestor, Paikea, who escaped death when his canoe capsized by riding to shore on the back of a whale. From then on, Whangara chiefs, always the first-born, always male, have been considered Paikea's direct descendants. Pai, an 11-year-old girl in a patriarchal New Zealand tribe, believes she is destined to be the new chief. But her grandfather Koro is bound by tradi","id":"1088","runtime":101,"imdbId":"tt0298228","homepage":"http:\/\/www.whaleriderthemovie.com\/","version":154,"lastModified":"1299986828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e43\/4d31bef85e73d63352000e43\/whale-rider-mid.jpg","studio":"South Pacific Pictures","genre":"Drama","title":"Whale Rider","releaseDate":1031529600000,"language":"en","type":"Movie","_key":"9338"} +{"label":"Niki Caro","version":26,"id":"15287","lastModified":"1299494425000","name":"Niki Caro","type":"Person","_key":"9339"} +{"label":"Keisha Castle-Hughes","version":18,"id":"15293","lastModified":"1299493964000","name":"Keisha Castle-Hughes","type":"Person","_key":"9340"} +{"label":"Rawiri Paratene","version":19,"id":"15294","lastModified":"1299496286000","name":"Rawiri Paratene","type":"Person","_key":"9341"} +{"label":"Vicky Haughton","version":18,"id":"15295","lastModified":"1299495475000","name":"Vicky Haughton","type":"Person","_key":"9342"} +{"label":"Grant Roa","version":17,"id":"15296","lastModified":"1299495619000","name":"Grant Roa","type":"Person","_key":"9343"} +{"label":"Mana Taumaunu","version":17,"id":"15297","lastModified":"1299499241000","name":"Mana Taumaunu","type":"Person","_key":"9344"} +{"label":"Rachel House","version":19,"id":"15298","lastModified":"1299493964000","name":"Rachel House","type":"Person","_key":"9345"} +{"label":"Tammy Davis","version":21,"id":"15299","lastModified":"1299581480000","name":"Tammy Davis","type":"Person","_key":"9346"} +{"label":"Mabel Wharekawa","version":17,"id":"15300","lastModified":"1299495475000","name":"Mabel Wharekawa","type":"Person","_key":"9347"} +{"label":"Rawinia Clarke","version":17,"id":"15301","lastModified":"1299495474000","name":"Rawinia Clarke","type":"Person","_key":"9348"} +{"label":"Tahei Simpson","version":17,"id":"15302","lastModified":"1299498900000","name":"Tahei Simpson","type":"Person","_key":"9349"} +{"label":"Point Break","description":"In the coastal town of Los Angeles, a gang of bank robbers call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. The F.B.I. believes that the members of the gang could be surfers and send young agent Johnny Utah undercover at the beach to mix with the surfers and gather information. ","id":"1089","runtime":118,"imdbId":"tt0102685","trailer":"http:\/\/www.youtube.com\/watch?v=3312","version":112,"lastModified":"1300039289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/430\/4c58a5117b9aa151f4000430\/point-break-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Point Break","releaseDate":679276800000,"language":"en","type":"Movie","_key":"9350"} +{"label":"Lori Petty","version":33,"id":"15309","lastModified":"1299492539000","name":"Lori Petty","type":"Person","_key":"9351"} +{"label":"Anthony Kiedis","version":20,"id":"15310","lastModified":"1299493363000","name":"Anthony Kiedis","type":"Person","_key":"9352"} +{"label":"Christopher Pettiet","version":16,"id":"15311","lastModified":"1299494276000","name":"Christopher Pettiet","type":"Person","_key":"9353"} +{"label":"The Thirteenth Floor","description":"Computer scientist Hannon Fuller has discovered something extremely important. He's about to tell the discovery to his colleague, Douglas Hall, but knowing someone is after him, the old man leaves a letter in his computer generated parallel world that's just like the 30's with seemingly real people with real emotions.","id":"1090","runtime":100,"imdbId":"tt0139809","trailer":"http:\/\/www.youtube.com\/watch?v=UQcOLSaDd1w","version":221,"lastModified":"1299986501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/737\/4bc90f27017a3c57fe005737\/the-thirteenth-floor-mid.jpg","studio":"Centropolis Film Productions","genre":"Science Fiction","title":"The Thirteenth Floor","releaseDate":924220800000,"language":"en","type":"Movie","_key":"9354"} +{"label":"Josef Rusnak","version":24,"id":"15361","lastModified":"1299493617000","name":"Josef Rusnak","type":"Person","_key":"9355"} +{"label":"Gretchen Mol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/178\/4c9cf6c47b9aa1430d000178\/gretchen-mol-profile.jpg","version":57,"id":"15370","lastModified":"1299581519000","name":"Gretchen Mol","type":"Person","_key":"9356"} +{"label":"Steven Schub","version":20,"id":"15371","lastModified":"1299497254000","name":"Steven Schub","type":"Person","_key":"9357"} +{"label":"Jeremy Roberts","version":16,"id":"15372","lastModified":"1299498471000","name":"Jeremy Roberts","type":"Person","_key":"9358"} +{"label":"Rif Hutton","version":27,"id":"15373","lastModified":"1300018375000","name":"Rif Hutton","type":"Person","_key":"9359"} +{"label":"Leon Rippy","version":41,"id":"15374","lastModified":"1300055007000","name":"Leon Rippy","type":"Person","_key":"9360"} +{"label":"Janet MacLachlan","version":17,"id":"15375","lastModified":"1299496480000","name":"Janet MacLachlan","type":"Person","_key":"9361"} +{"label":"Burt Bulos","version":17,"id":"15377","lastModified":"1299497607000","name":"Burt Bulos","type":"Person","_key":"9362"} +{"label":"The Thing","description":"Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.","id":"1091","runtime":109,"imdbId":"tt0084787","trailer":"http:\/\/www.youtube.com\/watch?v=1030","version":190,"lastModified":"1299986317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/417\/4d7bc1175e73d65174001417\/the-thing-mid.jpg","studio":"David Foster Productions","genre":"Horror","title":"The Thing","releaseDate":393811200000,"language":"en","type":"Movie","_key":"9363"} +{"label":"T.K. Carter","version":19,"id":"15411","lastModified":"1299492948000","name":"T.K. Carter","type":"Person","_key":"9364"} +{"label":"David Clennon","version":24,"id":"15412","lastModified":"1299492788000","name":"David Clennon","type":"Person","_key":"9365"} +{"label":"Richard Dysart","version":29,"id":"15413","lastModified":"1299492708000","name":"Richard Dysart","type":"Person","_key":"9366"} +{"label":"Charles Hallahan","version":28,"id":"15414","lastModified":"1299493129000","name":"Charles Hallahan","type":"Person","_key":"9367"} +{"label":"Peter Maloney","version":17,"id":"15415","lastModified":"1299494728000","name":"Peter Maloney","type":"Person","_key":"9368"} +{"label":"Richard Masur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/915\/4cb8fd0b7b9aa138d6000915\/richard-masur-profile.jpg","version":48,"id":"15416","lastModified":"1299494879000","name":"Richard Masur","type":"Person","_key":"9369"} +{"label":"Donald Moffat","version":32,"id":"15417","lastModified":"1300041811000","name":"Donald Moffat","type":"Person","_key":"9370"} +{"label":"Joel Polis","version":15,"id":"15418","lastModified":"1299493882000","name":"Joel Polis","type":"Person","_key":"9371"} +{"label":"Thomas G. Waites","version":16,"id":"15419","lastModified":"1299493882000","name":"Thomas G. Waites","type":"Person","_key":"9372"} +{"label":"The Third Man","description":"An American pulp writer arrives in post-WWII Vienna only to find that the friend who waited for him is killed under mysterious circumstances. The ensuing mystery entangles him in his friend's involvement in the black market, with the multinational police, and with his Czech girlfriend.","id":"1092","runtime":105,"imdbId":"tt0041959","trailer":"http:\/\/www.youtube.com\/watch?v=ZNUrv6Yxxc8","version":176,"lastModified":"1299986122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/288\/4d6841735e73d66b2b000288\/the-third-man-mid.jpg","studio":"London Film Productions","genre":"Drama","title":"The Third Man","releaseDate":-641520000000,"language":"en","tagline":"Hunted by men...Sought by WOMEN!","type":"Movie","_key":"9373"} +{"label":"Carol Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c34a9857b9aa17a350000b7\/carol-reed-profile.jpg","version":43,"id":"15378","lastModified":"1299692462000","name":"Carol Reed","type":"Person","_key":"9374"} +{"label":"Alida Valli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09b\/4bdadc4e017a3c5d8500009b\/alida-valli-profile.jpg","version":41,"id":"15385","lastModified":"1299689028000","name":"Alida Valli","type":"Person","_key":"9375"} +{"label":"Siegfried Breuer","version":15,"id":"15386","lastModified":"1299500500000","name":"Siegfried Breuer","type":"Person","_key":"9376"} +{"label":"Wilfrid Hyde-White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/426\/4ce17c105e73d60f6e000426\/wilfrid-hyde-white-profile.jpg","version":32,"id":"15387","lastModified":"1299943954000","name":"Wilfrid Hyde-White","type":"Person","_key":"9377"} +{"label":"Hedwig Bleibtreu","version":15,"id":"15388","lastModified":"1299500500000","name":"Hedwig Bleibtreu","type":"Person","_key":"9378"} +{"label":"Ernst Deutsch","version":21,"id":"29177","lastModified":"1299503901000","name":"Ernst Deutsch","type":"Person","_key":"9379"} +{"label":"Elevator to the Gallows","description":"The feature-film debut of famed director Louis Malle is an interesting, modern film noir with the classic theme of lovers plotting to kill the husband and make it look like suicide (reminiscent of The Postman Always Rings Twice). Jeanne Moreau gives an astonishing performance, perverse but naive as she leads her young lover down a path that can only lead to doom for both of them.","id":"1093","runtime":88,"imdbId":"tt0051378","trailer":"http:\/\/www.youtube.com\/watch?v=4Mgf8JVAPe8","version":67,"lastModified":"1299808691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/768\/4bc90f2e017a3c57fe005768\/ascenseur-pour-l-echafaud-mid.jpg","studio":"Nouvelles \u00c9ditions de Film","genre":"Crime","title":"Elevator to the Gallows","releaseDate":-376272000000,"language":"en","type":"Movie","_key":"9380"} +{"label":"Louis Malle","version":76,"id":"15389","lastModified":"1299492424000","name":"Louis Malle","type":"Person","_key":"9381"} +{"label":"Maurice Ronet","version":38,"id":"15395","lastModified":"1299669854000","name":"Maurice Ronet","type":"Person","_key":"9382"} +{"label":"Yori Bertin","version":13,"id":"15396","lastModified":"1299497062000","name":"Yori Bertin","type":"Person","_key":"9383"} +{"label":"Lino Ventura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d48\/4bfe939d017a3c7031000d48\/lino-ventura-profile.jpg","version":58,"id":"15397","lastModified":"1300013194000","name":"Lino Ventura","type":"Person","_key":"9384"} +{"label":"Iv\u00e1n Petrovich","version":16,"id":"15398","lastModified":"1299501526000","name":"Iv\u00e1n Petrovich","type":"Person","_key":"9385"} +{"label":"Elga Andersen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17b\/4c24f3877b9aa1447000017b\/elga-andersen-profile.jpg","version":16,"id":"15399","lastModified":"1299497468000","name":"Elga Andersen","type":"Person","_key":"9386"} +{"label":"Jean Wall","version":13,"id":"15400","lastModified":"1299497062000","name":"Jean Wall","type":"Person","_key":"9387"} +{"label":"G\u00e9rard Darrieu","version":17,"id":"15402","lastModified":"1299500852000","name":"G\u00e9rard Darrieu","type":"Person","_key":"9388"} +{"label":"Micheline Bona","version":13,"id":"15403","lastModified":"1299498457000","name":"Micheline Bona","type":"Person","_key":"9389"} +{"label":"Charles Denner","version":40,"id":"17028","lastModified":"1300013006000","name":"Charles Denner","type":"Person","_key":"9390"} +{"label":"F\u00e9lix Marten","version":18,"id":"39480","lastModified":"1299498140000","name":"F\u00e9lix Marten","type":"Person","_key":"9391"} +{"label":"Escape from New York","description":"In 1997, the island of Mahattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict, Snake Plissken, to rescue him.","id":"1103","runtime":99,"imdbId":"tt0082340","trailer":"http:\/\/www.youtube.com\/watch?v=Mapn1DY4zgE","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=ESCAPENY","version":218,"lastModified":"1299985749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb1\/4d7041955e73d65a22000bb1\/escape-from-new-york-mid.jpg","studio":"AVCO Embassy Pictures","genre":"Action","title":"Escape from New York","releaseDate":362188800000,"language":"en","tagline":"1997. New York City is now a maximum security prison. Breaking out is impossible. Breaking in is insane.","type":"Movie","_key":"9392"} +{"label":"Isaac Hayes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aeb\/4cf3ccde5e73d62386000aeb\/isaac-hayes-profile.jpg","version":50,"id":"6542","lastModified":"1299492328000","name":"Isaac Hayes","type":"Person","_key":"9393"} +{"label":"Frank Doubleday","version":22,"id":"15449","lastModified":"1299493044000","name":"Frank Doubleday","type":"Person","_key":"9394"} +{"label":"John Strobel","version":16,"id":"15450","lastModified":"1299494632000","name":"John Strobel","type":"Person","_key":"9395"} +{"label":"The Story of the Weeping Camel","description":"No overview found.","id":"1114","runtime":91,"imdbId":"tt0373861","homepage":"http:\/\/www.kamelfilm.de\/","version":99,"lastModified":"1299911489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4c33c7f77b9aa17a35000019\/die-geschichte-vom-weinenden-kamel-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Documentary","title":"The Story of the Weeping Camel","releaseDate":1056844800000,"language":"en","type":"Movie","_key":"9396"} +{"label":"Byambasuren Davaa","version":23,"id":"15459","lastModified":"1299496247000","name":"Byambasuren Davaa","type":"Person","_key":"9397"} +{"label":"Luigi Falorni","version":26,"id":"15460","lastModified":"1299495420000","name":"Luigi Falorni","type":"Person","_key":"9398"} +{"label":"Jiska Rickels","version":16,"id":"15461","lastModified":"1299496479000","name":"Jiska Rickels","type":"Person","_key":"9399"} +{"label":"Janchiv Ayurzana","version":16,"id":"15466","lastModified":"1299496219000","name":"Janchiv Ayurzana","type":"Person","_key":"9400"} +{"label":"Chimed Ohin","version":16,"id":"15467","lastModified":"1299496219000","name":"Chimed Ohin","type":"Person","_key":"9401"} +{"label":"Amgaabazar Gonson","version":16,"id":"15468","lastModified":"1299496219000","name":"Amgaabazar Gonson","type":"Person","_key":"9402"} +{"label":"Zeveljamz Nyam","version":16,"id":"15469","lastModified":"1299495420000","name":"Zeveljamz Nyam","type":"Person","_key":"9403"} +{"label":"Ikhbayar Amgaabazar","version":16,"id":"15470","lastModified":"1299496220000","name":"Ikhbayar Amgaabazar","type":"Person","_key":"9404"} +{"label":"Odgerel Ayusch","version":16,"id":"15471","lastModified":"1299500968000","name":"Odgerel Ayusch","type":"Person","_key":"9405"} +{"label":"Enkhbulgan Ikhbayar","version":16,"id":"15472","lastModified":"1299500967000","name":"Enkhbulgan Ikhbayar","type":"Person","_key":"9406"} +{"label":"Uuganbaatar Ikhbayar","version":16,"id":"15473","lastModified":"1299500967000","name":"Uuganbaatar Ikhbayar","type":"Person","_key":"9407"} +{"label":"Guntbaatar Ikhbayar","version":16,"id":"15474","lastModified":"1299500967000","name":"Guntbaatar Ikhbayar","type":"Person","_key":"9408"} +{"label":"Munkhbayar Lhagvaa","version":16,"id":"15475","lastModified":"1299496219000","name":"Munkhbayar Lhagvaa","type":"Person","_key":"9409"} +{"label":"Ariunjargal Adiya","version":16,"id":"15476","lastModified":"1299500967000","name":"Ariunjargal Adiya","type":"Person","_key":"9410"} +{"label":"Gespenster","description":"No overview found.","id":"1115","runtime":85,"imdbId":"tt0419773","homepage":"http:\/\/www.gespenster-der-film.de\/","version":61,"lastModified":"1299912943000","genre":"Drama","title":"Gespenster","releaseDate":1108425600000,"language":"en","type":"Movie","_key":"9411"} +{"label":"Sabine Timoteo","version":18,"id":"15480","lastModified":"1299494842000","name":"Sabine Timoteo","type":"Person","_key":"9412"} +{"label":"Marianne Basler","version":25,"id":"15481","lastModified":"1299494843000","name":"Marianne Basler","type":"Person","_key":"9413"} +{"label":"Aur\u00e9lien Recoing","version":42,"id":"15482","lastModified":"1299492328000","name":"Aur\u00e9lien Recoing","type":"Person","_key":"9414"} +{"label":"Anna Schudt","version":13,"id":"15483","lastModified":"1299496555000","name":"Anna Schudt","type":"Person","_key":"9415"} +{"label":"Philipp Hau\u00df","version":16,"id":"15484","lastModified":"1299501768000","name":"Philipp Hau\u00df","type":"Person","_key":"9416"} +{"label":"Victoria Trauttmansdorff","version":17,"id":"15485","lastModified":"1299497607000","name":"Victoria Trauttmansdorff","type":"Person","_key":"9417"} +{"label":"Peter Kurth","version":20,"id":"15486","lastModified":"1299497364000","name":"Peter Kurth","type":"Person","_key":"9418"} +{"label":"Annika Blendl","version":20,"id":"17053","lastModified":"1299497526000","name":"Annika Blendl","type":"Person","_key":"9419"} +{"label":"Rosa Enskat","version":16,"id":"17062","lastModified":"1299501635000","name":"Rosa Enskat","type":"Person","_key":"9420"} +{"label":"The Wind That Shakes The Barley","description":"A wartime drama about the 1920\u2019s Irish revolution against the British. The Irish medical student Damian is about to start his new job in London as he is witness to the mercenary atrocities of the British and decides to join his brother in the resistance group I.R.A to fight for Irish independence. ","id":"1116","runtime":124,"imdbId":"tt0460989","trailer":"http:\/\/www.youtube.com\/watch?v=zXm0yQ1k5b0","version":162,"lastModified":"1299985232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/794\/4bc90f35017a3c57fe005794\/the-wind-that-shakes-the-barley-mid.jpg","studio":"Sixteen Films Ltd.","genre":"Action","title":"The Wind That Shakes The Barley","releaseDate":1147910400000,"language":"en","type":"Movie","_key":"9421"} +{"label":"Ken Loach","version":53,"id":"15488","lastModified":"1300034887000","name":"Ken Loach","type":"Person","_key":"9422"} +{"label":"Padraic Delaney","version":15,"id":"15497","lastModified":"1299494943000","name":"Padraic Delaney","type":"Person","_key":"9423"} +{"label":"Liam Cunningham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/557\/4d4c2c3c5e73d617b3001557\/liam-cunningham-profile.jpg","version":34,"id":"15498","lastModified":"1299607902000","name":"Liam Cunningham","type":"Person","_key":"9424"} +{"label":"Gerard Kearney","version":15,"id":"15499","lastModified":"1299495022000","name":"Gerard Kearney","type":"Person","_key":"9425"} +{"label":"William Ruane","version":17,"id":"15501","lastModified":"1299494037000","name":"William Ruane","type":"Person","_key":"9426"} +{"label":"Laurence Barry","version":15,"id":"15502","lastModified":"1299495667000","name":"Laurence Barry","type":"Person","_key":"9427"} +{"label":"Sabrina Barry","version":19,"id":"15504","lastModified":"1299495635000","name":"Sabrina Barry","type":"Person","_key":"9428"} +{"label":"Kieran Aherne","version":16,"id":"15507","lastModified":"1299495619000","name":"Kieran Aherne","type":"Person","_key":"9429"} +{"label":"Orla Fitzgerald","version":15,"id":"15509","lastModified":"1299497607000","name":"Orla Fitzgerald","type":"Person","_key":"9430"} +{"label":"Scott Peden","version":20,"id":"56622","lastModified":"1299501144000","name":"Scott Peden","type":"Person","_key":"9431"} +{"label":"Catch a Fire","description":"Catch a Fire is a 2006 dramatic thriller about terrorists in apartheid-era South Africa, based on a true story. Patrick Chamusso (Luke) is an unassuming oil refinery foreman wrongly accused, imprisoned, and tortured for a plant bombing. The injustice transforms the apolitical worker into a radicalized insurgent, who then carries out his own successful sabotage mission. ","id":"1123","runtime":101,"imdbId":"tt0437232","trailer":"http:\/\/www.youtube.com\/watch?v=1324","version":174,"lastModified":"1299985042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a1\/4bc90f36017a3c57fe0057a1\/catch-a-fire-mid.jpg","studio":"Mirage Entertainment","genre":"Action","title":"Catch a Fire","releaseDate":1157155200000,"language":"en","tagline":"The spark that ignites us, unites us.","type":"Movie","_key":"9432"} +{"label":"Derek Luke","version":48,"id":"15543","lastModified":"1299779004000","name":"Derek Luke","type":"Person","_key":"9433"} +{"label":"Bonnie Henna","version":17,"id":"15544","lastModified":"1299601265000","name":"Bonnie Henna","type":"Person","_key":"9434"} +{"label":"Mncedisi Shabangu","version":16,"id":"15545","lastModified":"1299601265000","name":"Mncedisi Shabangu","type":"Person","_key":"9435"} +{"label":"Tumisho Masha","version":16,"id":"15546","lastModified":"1299601265000","name":"Tumisho Masha","type":"Person","_key":"9436"} +{"label":"Sithembiso Khumalo","version":16,"id":"15547","lastModified":"1299601265000","name":"Sithembiso Khumalo","type":"Person","_key":"9437"} +{"label":"Michele Burgers","version":16,"id":"15549","lastModified":"1299601265000","name":"Michele Burgers","type":"Person","_key":"9438"} +{"label":"Mpho Lovinga","version":16,"id":"15550","lastModified":"1299601265000","name":"Mpho Lovinga","type":"Person","_key":"9439"} +{"label":"Jessica Anstey","version":16,"id":"15551","lastModified":"1299601265000","name":"Jessica Anstey","type":"Person","_key":"9440"} +{"label":"Charlotte Savage","version":16,"id":"15552","lastModified":"1299601265000","name":"Charlotte Savage","type":"Person","_key":"9441"} +{"label":"Nomhl\u00e9 Nkyonyeni","version":16,"id":"15553","lastModified":"1299601265000","name":"Nomhl\u00e9 Nkyonyeni","type":"Person","_key":"9442"} +{"label":"The Prestige","description":"A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences. ","id":"1124","runtime":130,"imdbId":"tt0482571","trailer":"http:\/\/www.youtube.com\/watch?v=a1AqrIkD7vU","homepage":"http:\/\/wwws.warnerbros.de\/theprestige\/","version":269,"lastModified":"1300022040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e2\/4d58959f7b9aa15d010041e2\/the-prestige-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The Prestige","releaseDate":1161043200000,"language":"en","tagline":"Are You Watching Closely?","type":"Movie","_key":"9443"} +{"label":"Piper Perabo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4bcc0add017a3c0f30000054\/piper-perabo-profile.jpg","version":67,"birthday":"215564400000","id":"15555","birthplace":"Dallas","lastModified":"1299946899000","name":"Piper Perabo","type":"Person","_key":"9444"} +{"label":"Rebecca Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/690\/4c083648017a3c7e92000690\/rebecca-hall-profile.jpg","version":81,"id":"15556","lastModified":"1299753151000","name":"Rebecca Hall","type":"Person","_key":"9445"} +{"label":"Dreamgirls","description":"Three young women - Deena Jones, Effie White, and Lorrell Robinson - desire to become pop stars and get their wish when they're picked to be backup singers for the legendary James \"Thunder\" Early. Then they're set free for leads, but Curtis Taylor and Effie's brother C.C. decide for Deena to be lead which upsets Effie.","id":"1125","runtime":134,"imdbId":"tt0443489","trailer":"http:\/\/www.youtube.com\/watch?v=13","homepage":"http:\/\/www.dreamgirlsmovie.com\/","version":142,"lastModified":"1299984668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d1\/4bc90f3e017a3c57fe0057d1\/dreamgirls-mid.jpg","studio":"DreamWorks SKG","genre":"Drama","title":"Dreamgirls","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"9446"} +{"label":"Bill Condon","version":34,"id":"15557","lastModified":"1299492324000","name":"Bill Condon","type":"Person","_key":"9447"} +{"label":"Anika Noni Rose","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fc\/4cd9b9bf7b9aa113ac0007fc\/anika-noni-rose-profile.jpg","version":36,"id":"15563","lastModified":"1300041404000","name":"Anika Noni Rose","type":"Person","_key":"9448"} +{"label":"Keith Robinson","version":20,"id":"15564","lastModified":"1299495285000","name":"Keith Robinson","type":"Person","_key":"9449"} +{"label":"Jennifer Hudson","version":33,"id":"15565","lastModified":"1300001181000","name":"Jennifer Hudson","type":"Person","_key":"9450"} +{"label":"Sharon Leal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/add\/4cf3cb6e5e73d62386000add\/sharon-leal-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Sharon Leal<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born October 17, 1972 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Tucson<\/st1:City>, <st1:State w:st=\"on\">Arizona<\/st1:State><\/st1:place> to a Filipino father and an African American mother. Leal's career began with the role of Da","version":26,"birthday":"88124400000","id":"15566","birthplace":"Tucson, Arizona, USA","lastModified":"1299693165000","name":"Sharon Leal","type":"Person","_key":"9451"} +{"label":"Hinton Battle","version":12,"id":"15567","lastModified":"1299494179000","name":"Hinton Battle","type":"Person","_key":"9452"} +{"label":"Mariah I. Wilson","version":12,"id":"15568","lastModified":"1299494179000","name":"Mariah I. Wilson","type":"Person","_key":"9453"} +{"label":"Yvette Cason","version":12,"id":"15569","lastModified":"1299495841000","name":"Yvette Cason","type":"Person","_key":"9454"} +{"label":"In My Father's Den","description":"Paul (Macfadyen), a prize-winning war journalist, returns to his remote New Zealand hometown due to the death of his father, battle-scarred and world-weary. For the discontented sixteen-year-old Celia (Barclay) he opens up a world she has only dreamed of. She actively pursues a friendship with him, fascinated by his cynicism and experience of the world beyond her small-town existence. But many, including the members of both their families (Otto, Moy), frown upon the friendship and when Celia goe","id":"1126","runtime":126,"imdbId":"tt0385017","homepage":"http:\/\/www.alsdasmeerverschwand.de\/","version":121,"lastModified":"1299909820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7df\/4bc90f42017a3c57fe0057df\/in-my-father-s-den-mid.jpg","studio":"IFMD Ltd.","genre":"Drama","title":"In My Father's Den","releaseDate":1086912000000,"language":"en","type":"Movie","_key":"9455"} +{"label":"Brad McGann","version":13,"id":"15574","lastModified":"1299493829000","name":"Brad McGann","type":"Person","_key":"9456"} +{"label":"Matthew Macfadyen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4c02ae0c017a3c7e8600002a\/matthew-macfadyen-profile.jpg","version":44,"id":"15576","lastModified":"1299492002000","name":"Matthew Macfadyen","type":"Person","_key":"9457"} +{"label":"Emily Barclay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b9\/4d2888ed7b9aa134dc0023b9\/emily-barclay-profile.jpg","version":33,"id":"15577","lastModified":"1299491182000","name":"Emily Barclay","type":"Person","_key":"9458"} +{"label":"Colin Moy","version":14,"id":"15578","lastModified":"1299494198000","name":"Colin Moy","type":"Person","_key":"9459"} +{"label":"Jimmy Keen","version":13,"id":"15579","lastModified":"1299497608000","name":"Jimmy Keen","type":"Person","_key":"9460"} +{"label":"Jodie Rimmer","version":13,"id":"15580","lastModified":"1299497608000","name":"Jodie Rimmer","type":"Person","_key":"9461"} +{"label":"Toby Alexander","version":13,"id":"15582","lastModified":"1299496162000","name":"Toby Alexander","type":"Person","_key":"9462"} +{"label":"Nicholas Hayward","version":13,"id":"15583","lastModified":"1299497607000","name":"Nicholas Hayward","type":"Person","_key":"9463"} +{"label":"Vanessa Riddell","version":12,"id":"15584","lastModified":"1299496936000","name":"Vanessa Riddell","type":"Person","_key":"9464"} +{"label":"Princesas","description":"\u00c9sta es la historia de dos mujeres, de dos putas, de dos princesas. Una de ellas se llama Caye, tiene casi treinta a\u00f1os, el flequillo de peluquer\u00eda y un atractivo discutible, de barrio. Zulema es una princesa desterrada, dulce y oscura, que vive a diario el exilio forzoso de la desesperaci\u00f3n. Cuando se conocen est\u00e1n en lugares diferentes, casi enfrentados: son muchas las chicas aqu\u00ed que ven con recelo la llegada de inmigrantes a la prostituci\u00f3n. Caye y Zulema no tardan en comprender que, aunque ","id":"1127","runtime":113,"imdbId":"tt0434292","homepage":"http:\/\/www.princesaslapelicula.com\/","version":108,"lastModified":"1299984279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e4\/4bc90f43017a3c57fe0057e4\/princesas-mid.jpg","studio":"Mediapro","genre":"Comedy","title":"Princesas","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"9465"} +{"label":"Micaela Nev\u00e1rez","version":12,"id":"15590","lastModified":"1299492630000","name":"Micaela Nev\u00e1rez","type":"Person","_key":"9466"} +{"label":"Mariana Cordero","version":15,"id":"15591","lastModified":"1299492632000","name":"Mariana Cordero","type":"Person","_key":"9467"} +{"label":"Llum Barrera","version":19,"id":"15592","lastModified":"1299492523000","name":"Llum Barrera","type":"Person","_key":"9468"} +{"label":"Violeta P\u00e9rez","version":12,"id":"15593","lastModified":"1299500500000","name":"Violeta P\u00e9rez","type":"Person","_key":"9469"} +{"label":"M\u00f2nica Van Campen","version":13,"id":"15594","lastModified":"1299501637000","name":"M\u00f2nica Van Campen","type":"Person","_key":"9470"} +{"label":"Flora \u00c1lvarez","version":13,"id":"15595","lastModified":"1299501637000","name":"Flora \u00c1lvarez","type":"Person","_key":"9471"} +{"label":"Mar\u00eda Ballesteros","version":17,"id":"15596","lastModified":"1299500915000","name":"Mar\u00eda Ballesteros","type":"Person","_key":"9472"} +{"label":"Alejandra Llorente","version":13,"id":"15597","lastModified":"1299501636000","name":"Alejandra Llorente","type":"Person","_key":"9473"} +{"label":"Luis Callejo","version":16,"id":"15598","lastModified":"1299500972000","name":"Luis Callejo","type":"Person","_key":"9474"} +{"label":"Antonio Dur\u00e1n 'Morris'","version":15,"id":"15599","lastModified":"1299494663000","name":"Antonio Dur\u00e1n 'Morris'","type":"Person","_key":"9475"} +{"label":"Pere Arquillu\u00e9","version":16,"id":"15600","lastModified":"1299498258000","name":"Pere Arquillu\u00e9","type":"Person","_key":"9476"} +{"label":"Enrique Vill\u00e9n","version":23,"id":"15601","lastModified":"1299796785000","name":"Enrique Vill\u00e9n","type":"Person","_key":"9477"} +{"label":"Fernando Le\u00f3n de Aranoa","version":21,"id":"15602","lastModified":"1299796785000","name":"Fernando Le\u00f3n de Aranoa","type":"Person","_key":"9478"} +{"label":"Quest for Fire","description":"A tribe searches for a source of fire during the Stone Age when the ways to create new fire were not yet well-known.","id":"1128","runtime":100,"imdbId":"tt0082484","trailer":"http:\/\/www.youtube.com\/watch?v=j2Z71q8KalI","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/quest-for-fire","version":87,"lastModified":"1299804953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f1\/4bc90f43017a3c57fe0057f1\/la-guerre-du-feu-mid.jpg","genre":"Action","title":"Quest for Fire","releaseDate":382320000000,"language":"en","type":"Movie","_key":"9479"} +{"label":"Nicholas Kadi","version":10,"id":"152970","lastModified":"1299519014000","name":"Nicholas Kadi","type":"Person","_key":"9480"} +{"label":"Peter Elliott","version":17,"id":"93166","lastModified":"1299508665000","name":"Peter Elliott","type":"Person","_key":"9481"} +{"label":"The Miracle Worker","description":"The story of Anne Sullivan's struggle to teach the blind and deaf Helen Keller how to communicate.","id":"1162","runtime":106,"imdbId":"tt0056241","version":92,"lastModified":"1299983941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/053\/4c85aec45e73d66b5b000053\/the-miracle-worker-mid.jpg","genre":"Drama","title":"The Miracle Worker","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"9482"} +{"label":"Anne Bancroft","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b4\/4be17955017a3c35b70005b4\/anne-bancroft-profile.jpg","biography":"<p>Anna Maria Italiano was born 1931 in the Bronx, New York. She made her cinema <a href=\"http:\/\/www.imdb.com\/search\/name?bio=debut\">debut<\/a> in 1952 in <a href=\"http:\/\/www.imdb.com\/title\/tt0044557\/\">Don't Bother to Knock<\/a> (1952). In the fifties she made a lot of movies as a supporting actress until she became a star with <a href=\"http:\/\/www.imdb.com\/title\/tt0056241\/\">The Miracle Worker<\/a> (1962), directed by <a href=\"http:\/\/www.imdb.com\/name\/nm0671957\/\">Arthur Penn<\/a>, for which she won a","version":78,"birthday":"-1208394000000","id":"10774","birthplace":"Bronx, New York, USA","lastModified":"1299928437000","name":"Anne Bancroft","type":"Person","_key":"9483"} +{"label":"Victor Jory","version":34,"id":"15666","lastModified":"1299928368000","name":"Victor Jory","type":"Person","_key":"9484"} +{"label":"Inga Swenson","version":15,"id":"15667","lastModified":"1299928368000","name":"Inga Swenson","type":"Person","_key":"9485"} +{"label":"Andrew Prine","version":28,"id":"15668","lastModified":"1299928368000","name":"Andrew Prine","type":"Person","_key":"9486"} +{"label":"Kathleen Comegys","version":15,"id":"15669","lastModified":"1299928368000","name":"Kathleen Comegys","type":"Person","_key":"9487"} +{"label":"The Miracle Worker","description":"No overview found.","id":"1163","runtime":95,"imdbId":"tt0246786","version":92,"lastModified":"1299983757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fa\/4bc90f44017a3c57fe0057fa\/the-miracle-worker-mid.jpg","studio":"Walt Disney Television","genre":"Drama","title":"The Miracle Worker","releaseDate":973987200000,"language":"en","type":"Movie","_key":"9488"} +{"label":"Nadia Tass","version":21,"id":"15672","lastModified":"1300042740000","name":"Nadia Tass","type":"Person","_key":"9489"} +{"label":"Hallie Kate Eisenberg","version":17,"id":"15674","lastModified":"1299498899000","name":"Hallie Kate Eisenberg","type":"Person","_key":"9490"} +{"label":"Alison Elliott","version":19,"id":"15675","lastModified":"1299494369000","name":"Alison Elliott","type":"Person","_key":"9491"} +{"label":"David Strathairn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/327\/4c95d82c7b9aa10d5c000327\/david-strathairn-profile.jpg","version":112,"birthday":"-660531600000","id":"11064","birthplace":"San Francisco, California, USA","lastModified":"1299879876000","name":"David Strathairn","type":"Person","_key":"9492"} +{"label":"Kate Greenhouse","version":15,"id":"11884","lastModified":"1299501805000","name":"Kate Greenhouse","type":"Person","_key":"9493"} +{"label":"Stewart Arnott","version":13,"id":"16591","lastModified":"1299501139000","name":"Stewart Arnott","type":"Person","_key":"9494"} +{"label":"Babel","description":"Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.","id":"1164","runtime":144,"imdbId":"tt0449467","trailer":"http:\/\/www.youtube.com\/watch?v=PqPNksLZIAk","version":336,"lastModified":"1299983562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4bc90f49017a3c57fe00581d\/babel-mid.jpg","studio":"Anonymous Content","genre":"Drama","title":"Babel","releaseDate":1161907200000,"language":"en","tagline":"If You Want to be Understood...Listen","type":"Movie","_key":"9495"} +{"label":"Rinko Kikuchi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/804\/4d7aa5df5e73d65174000804\/rinko-kikuchi-profile.jpg","version":35,"id":"18054","lastModified":"1300055347000","name":"Rinko Kikuchi","type":"Person","_key":"9496"} +{"label":"Mohamed Akhzam","version":25,"id":"17118","lastModified":"1299582040000","name":"Mohamed Akhzam","type":"Person","_key":"9497"} +{"label":"Peter Wight","version":25,"id":"17476","lastModified":"1299582039000","name":"Peter Wight","type":"Person","_key":"9498"} +{"label":"Harriet Walter","version":34,"id":"17477","lastModified":"1299582039000","name":"Harriet Walter","type":"Person","_key":"9499"} +{"label":"Trevor Martin","version":18,"id":"17478","lastModified":"1299582039000","name":"Trevor Martin","type":"Person","_key":"9500"} +{"label":"Matyelok Gibbs","version":20,"id":"17479","lastModified":"1299582039000","name":"Matyelok Gibbs","type":"Person","_key":"9501"} +{"label":"Georges Bousquet","version":18,"id":"17480","lastModified":"1299582039000","name":"Georges Bousquet","type":"Person","_key":"9502"} +{"label":"Claudine Acs","version":18,"id":"17481","lastModified":"1299582039000","name":"Claudine Acs","type":"Person","_key":"9503"} +{"label":"Andr\u00e9 Oumansky","version":34,"id":"17482","lastModified":"1299582039000","name":"Andr\u00e9 Oumansky","type":"Person","_key":"9504"} +{"label":"Michael Maloney","version":23,"id":"17483","lastModified":"1299914293000","name":"Michael Maloney","type":"Person","_key":"9505"} +{"label":"Dermot Crowley","version":18,"id":"17484","lastModified":"1299582039000","name":"Dermot Crowley","type":"Person","_key":"9506"} +{"label":"Hammou Aghrar","version":18,"id":"18043","lastModified":"1299582039000","name":"Hammou Aghrar","type":"Person","_key":"9507"} +{"label":"Boubker Ait El Caid","version":17,"id":"18044","lastModified":"1299582040000","name":"Boubker Ait El Caid","type":"Person","_key":"9508"} +{"label":"Said Tarchani","version":18,"id":"18045","lastModified":"1299582040000","name":"Said Tarchani","type":"Person","_key":"9509"} +{"label":"Mustapha Rachidi","version":18,"id":"18046","lastModified":"1299582040000","name":"Mustapha Rachidi","type":"Person","_key":"9510"} +{"label":"Abdelkader Bara","version":18,"id":"18048","lastModified":"1299582040000","name":"Abdelkader Bara","type":"Person","_key":"9511"} +{"label":"Ehou Mama","version":21,"id":"18049","lastModified":"1299582040000","name":"Ehou Mama","type":"Person","_key":"9512"} +{"label":"Elle Fanning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c58\/4cba68f67b9aa138d8000c58\/elle-fanning-profile.jpg","version":56,"birthday":"892072800000","id":"18050","birthplace":"Conyers, Georgia, USA","lastModified":"1299582040000","name":"Elle Fanning","type":"Person","_key":"9513"} +{"label":"Nathan Gamble","version":27,"id":"18052","lastModified":"1299582040000","name":"Nathan Gamble","type":"Person","_key":"9514"} +{"label":"Jamie McBride","version":18,"id":"18053","lastModified":"1299582040000","name":"Jamie McBride","type":"Person","_key":"9515"} +{"label":"K\u00f4ji Yakusho","version":43,"id":"18056","lastModified":"1299924548000","name":"K\u00f4ji Yakusho","type":"Person","_key":"9516"} +{"label":"Yuko Murata","version":17,"id":"18057","lastModified":"1299582040000","name":"Yuko Murata","type":"Person","_key":"9517"} +{"label":"Sanae Miura","version":18,"id":"18058","lastModified":"1299582040000","name":"Sanae Miura","type":"Person","_key":"9518"} +{"label":"Shigemitsu Ogi","version":19,"id":"18059","lastModified":"1299582040000","name":"Shigemitsu Ogi","type":"Person","_key":"9519"} +{"label":"Wahiba Sahmi","version":18,"id":"18060","lastModified":"1299582040000","name":"Wahiba Sahmi","type":"Person","_key":"9520"} +{"label":"Satoshi Nikaido","version":18,"id":"18061","lastModified":"1299582040000","name":"Satoshi Nikaido","type":"Person","_key":"9521"} +{"label":"The Queen","description":"The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.","id":"1165","runtime":97,"imdbId":"tt0436697","trailer":"http:\/\/www.youtube.com\/watch?v=204","homepage":"http:\/\/www.thequeenmovie.co.uk\/","version":128,"lastModified":"1299983347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/838\/4bc90f4f017a3c57fe005838\/the-queen-mid.jpg","studio":"Path\u00e9 Pictures","genre":"Drama","title":"The Queen","releaseDate":1157155200000,"language":"en","type":"Movie","_key":"9522"} +{"label":"Helen Mirren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f8\/4c2b6fe67b9aa15e9f0000f8\/helen-mirren-profile.jpg","biography":"Dame Helen Mirren, DBE is an English actor. She has won an Academy Award, four SAG Awards, four BAFTAs, three Golden Globes, four Emmy Awards, and two Cannes Film Festival Best Actress Awards during her career.","version":143,"birthday":"-771130800000","id":"15735","birthplace":"London, England","lastModified":"1299903964000","name":"Helen Mirren","type":"Person","_key":"9523"} +{"label":"Sylvia Syms","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/479\/4cd825de7b9aa11b22000479\/sylvia-syms-profile.jpg","version":23,"id":"15736","lastModified":"1299493030000","name":"Sylvia Syms","type":"Person","_key":"9524"} +{"label":"Helen McCrory","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e3f\/4cf173a55e73d61929000e3f\/helen-mccrory-profile.jpg","version":42,"id":"15737","lastModified":"1299859150000","name":"Helen McCrory","type":"Person","_key":"9525"} +{"label":"Paul Barrett","version":17,"id":"15738","lastModified":"1299496607000","name":"Paul Barrett","type":"Person","_key":"9526"} +{"label":"Alex Jennings","version":21,"id":"15739","lastModified":"1299495375000","name":"Alex Jennings","type":"Person","_key":"9527"} +{"label":"Tim McMullan","version":19,"id":"15740","lastModified":"1300031821000","name":"Tim McMullan","type":"Person","_key":"9528"} +{"label":"The Talented Mr. Ripley","description":"Tom Ripley is a charismatic sociopath who makes his way in mid-'50s New York as a rest room attendant and pianist. His skill however is in impersonating other people, forging handwriting and running second-rate scams. Unhappy with his own life, he kills and takes on the persona of somebody else.","id":"1213","runtime":139,"imdbId":"tt0134119","version":114,"lastModified":"1299983167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/846\/4bc90f52017a3c57fe005846\/the-talented-mr-ripley-mid.jpg","studio":"Mirage Entertainment","genre":"Crime","title":"The Talented Mr. Ripley","releaseDate":944956800000,"language":"en","type":"Movie","_key":"9529"} +{"label":"Sergio Rubini","version":50,"id":"15915","lastModified":"1300025547000","name":"Sergio Rubini","type":"Person","_key":"9530"} +{"label":"Fiorello","version":19,"id":"15916","lastModified":"1299499334000","name":"Fiorello","type":"Person","_key":"9531"} +{"label":"Stefania Rocca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27a\/4cf956ec5e73d6299e00227a\/stefania-rocca-profile.jpg","biography":"Stefania Rocca was born on April 24, 1971 in Turin.","version":29,"id":"15917","lastModified":"1299492418000","name":"Stefania Rocca","type":"Person","_key":"9532"} +{"label":"Ivano Marescotti","version":24,"id":"15918","lastModified":"1299536523000","name":"Ivano Marescotti","type":"Person","_key":"9533"} +{"label":"Anna Longhi","version":15,"id":"15919","lastModified":"1299499383000","name":"Anna Longhi","type":"Person","_key":"9534"} +{"label":"Alessandro Fabrizi","version":15,"id":"15920","lastModified":"1299501662000","name":"Alessandro Fabrizi","type":"Person","_key":"9535"} +{"label":"Harry Potter Collection","description":"The Harry Potter films are a fantasy series based on the series of seven Harry Potter novels by British writer J. K. Rowling.","id":"1241","version":201,"lastModified":"1299982991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4d0890467b9aa101d70002dc\/harry-potter-collection-mid.jpg","title":"Harry Potter Collection","language":"en","type":"Movie","_key":"9536"} +{"label":"Das wilde Leben","description":"Achim Bornhak's movie focuses on the restless life of Uschi Obermaier, the icon of the 1968 movement in Germany and groupie. At the age of 16, Uschi is bored by her job in a photo lab, but soon becomes the \"it girl\" of Munich's club scene. When she gets to know Rainer Langhans, they move to Berlin and live in \"Kommune 1\", the first politically-motivated commune in Germany. While the other occupants claim she isn't political enough, Uschi just wants to have fun, works as fashion model and leads i","id":"1244","runtime":114,"imdbId":"tt0764639","homepage":"http:\/\/pdl.warnerbros.com\/wbol\/de\/movies\/8mileshigh\/flash\/teaser.html","version":84,"lastModified":"1299982796000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/108\/4c4c4ea75e73d62a3f000108\/das-wilde-leben-mid.jpg","studio":"Babelsberg Film GmbH","genre":"Drama","title":"Das wilde Leben","releaseDate":1169596800000,"language":"en","type":"Movie","_key":"9537"} +{"label":"Achim Bornhak","version":14,"id":"16802","lastModified":"1299496303000","name":"Achim Bornhak","type":"Person","_key":"9538"} +{"label":"Natalia Avelon","version":16,"id":"16807","lastModified":"1299493408000","name":"Natalia Avelon","type":"Person","_key":"9539"} +{"label":"Matthias Schweigh\u00f6fer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bf\/4c77bb685e73d604190002bf\/matthias-schweighofer-profile.jpg","version":45,"id":"16808","lastModified":"1299935762000","name":"Matthias Schweigh\u00f6fer","type":"Person","_key":"9540"} +{"label":"David Scheller","version":16,"id":"16809","lastModified":"1299494858000","name":"David Scheller","type":"Person","_key":"9541"} +{"label":"Victor Nor\u00e9n","version":13,"id":"16810","lastModified":"1299496478000","name":"Victor Nor\u00e9n","type":"Person","_key":"9542"} +{"label":"Alexander Scheer","version":18,"id":"16811","lastModified":"1299747409000","name":"Alexander Scheer","type":"Person","_key":"9543"} +{"label":"The Remains of the Day","description":"A rule bound head butler's world of manners and decorum in the household he maintains is tested by the arrival of a housekeeper who falls in love with him in post-WWI Britain. The possibility of romance and his master's cultivation of ties with the Nazi cause challenge his carefully maintained veneer of servitude.","id":"1245","runtime":134,"imdbId":"tt0107943","trailer":"http:\/\/www.youtube.com\/watch?v=o1_5yToFwxY","version":138,"lastModified":"1299982649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/504\/4c6401287b9aa1775a000504\/the-remains-of-the-day-mid.jpg","genre":"Drama","title":"The Remains of the Day","releaseDate":725846400000,"language":"en","type":"Movie","_key":"9544"} +{"label":"Christopher Reeve","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c56\/4bfeb7d4017a3c7037000c56\/christopher-reeve-profile.jpg","version":46,"id":"20006","lastModified":"1299676302000","name":"Christopher Reeve","type":"Person","_key":"9545"} +{"label":"Ben Chaplin","version":63,"id":"21343","lastModified":"1299914460000","name":"Ben Chaplin","type":"Person","_key":"9546"} +{"label":"James Ivory","version":37,"id":"54441","lastModified":"1299496562000","name":"James Ivory","type":"Person","_key":"9547"} +{"label":"Rocky Balboa","description":"When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging the Itallian Stallion to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior.","id":"1246","runtime":102,"imdbId":"tt0479143","trailer":"http:\/\/www.youtube.com\/watch?v=yUYTO23TGMI","homepage":"http:\/\/www.rocky.com\/","version":254,"lastModified":"1299982468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03c\/4c1323227b9aa102fa00003c\/rocky-balboa-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Rocky Balboa","releaseDate":1166572800000,"language":"en","type":"Movie","_key":"9548"} +{"label":"Sylvester Stallone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/078\/4c8644397b9aa1545b000078\/sylvester-stallone-profile.jpg","biography":"Michael Sylvester Gardenzio Stallone (born July 6, 1946), nicknamed Sly Stallone,is an American actor, filmmaker, screenwriter, and film director. Stallone is known for his machismo and Hollywood action roles. Two of the notable characters he has portrayed include boxer Rocky Balboa and soldier John Rambo. The Rocky and Rambo franchises, along with several other films, strengthened his reputation as an actor and his box office earnings.\n\nStallone's film Rocky was inducted into the National Film ","version":465,"birthday":"-741319200000","id":"16483","birthplace":"New York City, New York, USA","lastModified":"1299843148000","name":"Sylvester Stallone","type":"Person","_key":"9549"} +{"label":"Milo Ventimiglia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/148\/4c1cc8fc7b9aa117b2000148\/milo-ventimiglia-profile.jpg","version":42,"id":"16501","lastModified":"1299492099000","name":"Milo Ventimiglia","type":"Person","_key":"9550"} +{"label":"Geraldine Hughes","version":26,"id":"16502","lastModified":"1299746575000","name":"Geraldine Hughes","type":"Person","_key":"9551"} +{"label":"James Francis Kelly III","version":18,"id":"16503","lastModified":"1299515458000","name":"James Francis Kelly III","type":"Person","_key":"9552"} +{"label":"Tony Burton","version":54,"id":"16504","lastModified":"1299492230000","name":"Tony Burton","type":"Person","_key":"9553"} +{"label":"A.J. Benza","version":19,"id":"16505","lastModified":"1299494959000","name":"A.J. Benza","type":"Person","_key":"9554"} +{"label":"Henry G. Sanders","version":22,"id":"16506","lastModified":"1299494336000","name":"Henry G. Sanders","type":"Person","_key":"9555"} +{"label":"Antonio Tarver","version":18,"id":"16507","lastModified":"1299494287000","name":"Antonio Tarver","type":"Person","_key":"9556"} +{"label":"Pedro Lovell","version":19,"id":"16508","lastModified":"1299494460000","name":"Pedro Lovell","type":"Person","_key":"9557"} +{"label":"Ana Gerena","version":19,"id":"16509","lastModified":"1299494036000","name":"Ana Gerena","type":"Person","_key":"9558"} +{"label":"Angela Boyd","version":18,"id":"16510","lastModified":"1299493892000","name":"Angela Boyd","type":"Person","_key":"9559"} +{"label":"Louis Giansante","version":17,"id":"16511","lastModified":"1299515457000","name":"Louis Giansante","type":"Person","_key":"9560"} +{"label":"Maureen Schilling","version":19,"id":"16512","lastModified":"1299515456000","name":"Maureen Schilling","type":"Person","_key":"9561"} +{"label":"The Good Shepherd","description":"Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.","id":"1247","runtime":167,"imdbId":"tt0343737","trailer":"http:\/\/www.youtube.com\/watch?v=GaKGCLTmqTg","homepage":"http:\/\/www.thegoodshepherdmovie.com\/","version":177,"lastModified":"1300055563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8aa\/4bc90f60017a3c57fe0058aa\/the-good-shepherd-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Good Shepherd","releaseDate":1165795200000,"language":"en","tagline":"The untold story of the most powerful covert agency in the world.","type":"Movie","_key":"9562"} +{"label":"Tammy Blanchard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4ca62a3a5e73d643f0000026\/tammy-blanchard-profile.jpg","version":26,"id":"16859","lastModified":"1299494074000","name":"Tammy Blanchard","type":"Person","_key":"9563"} +{"label":"Hannibal Rising","description":"This terrifying prequel attempts to trace the murderous roots of the cannibalistic killer. The film follows Lecter from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.","id":"1248","runtime":117,"imdbId":"tt0367959","trailer":"http:\/\/www.youtube.com\/watch?v=N9oBj_Ict4M","homepage":"http:\/\/hannibalrising.com\/","version":163,"lastModified":"1299982109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f90\/4d79bd087b9aa14cc0000f90\/hannibal-rising-mid.jpg","studio":"Ingenious Film Partners","genre":"Crime","title":"Hannibal Rising","releaseDate":1170806400000,"language":"en","tagline":"It started with revenge","type":"Movie","_key":"9564"} +{"label":"Peter Webber","version":23,"id":"16785","lastModified":"1299493970000","name":"Peter Webber","type":"Person","_key":"9565"} +{"label":"Aaran Thomas","version":19,"id":"16789","lastModified":"1299492360000","name":"Aaran Thomas","type":"Person","_key":"9566"} +{"label":"Gaspard Ulliel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e3\/4bf4eae8017a3c320d0007e3\/gaspard-ulliel-profile.jpg","version":50,"id":"16790","lastModified":"1299696652000","name":"Gaspard Ulliel","type":"Person","_key":"9567"} +{"label":"Helena-Lia Tachovsk\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/896\/4bf4ea92017a3c3213000896\/helena-lia-tachovska-profile.jpg","version":19,"id":"16791","lastModified":"1299492476000","name":"Helena-Lia Tachovsk\u00e1","type":"Person","_key":"9568"} +{"label":"Richard Leaf","version":22,"id":"16792","lastModified":"1299492675000","name":"Richard Leaf","type":"Person","_key":"9569"} +{"label":"Michele Wade","version":19,"id":"16793","lastModified":"1299493473000","name":"Michele Wade","type":"Person","_key":"9570"} +{"label":"Hollywoodland","description":"The complicated life and controversial suicide of George Reeves is investigated by a fictional private detective who finds that there are reasons to suspect that Reeves may not have killed himself after all. The detective also finds that there is a little of George Reeves in himself, and maybe, each of us. ","id":"1249","runtime":126,"imdbId":"tt0427969","trailer":"http:\/\/www.youtube.com\/watch?v=1108","homepage":"http:\/\/www.hollywoodlandmovie.com\/","version":133,"lastModified":"1299981942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8df\/4bc90f66017a3c57fe0058df\/hollywoodland-mid.jpg","studio":"Focus Features","genre":"Crime","title":"Hollywoodland","releaseDate":1156982400000,"language":"en","type":"Movie","_key":"9571"} +{"label":"Allen Coulter","version":19,"id":"16834","lastModified":"1299515463000","name":"Allen Coulter","type":"Person","_key":"9572"} +{"label":"Ghost Rider","description":"In order to save his dying father, young stunt cyclist Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a gogetting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery Ghost Rider.","id":"1250","runtime":114,"imdbId":"tt0259324","trailer":"http:\/\/www.youtube.com\/watch?v=R1hZNHPVVAQ","homepage":"http:\/\/www.sonypictures.com\/movies\/ghostrider\/","version":222,"lastModified":"1299981749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/821\/4d0bb36b5e73d646a4000821\/ghost-rider-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Ghost Rider","releaseDate":1171411200000,"language":"en","tagline":"Long ago he made a deal to save someone he loved.","type":"Movie","_key":"9573"} +{"label":"Mark Steven Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4d33594d5e73d6334d002106\/mark-steven-johnson-profile.jpg","version":67,"id":"16837","lastModified":"1299669977000","name":"Mark Steven Johnson","type":"Person","_key":"9574"} +{"label":"Matt Long","version":23,"id":"16839","lastModified":"1299492839000","name":"Matt Long","type":"Person","_key":"9575"} +{"label":"Raquel Alessi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d2\/4c4d4d227b9aa1237f0002d2\/raquel-alessi-profile.jpg","version":21,"id":"16840","lastModified":"1300017802000","name":"Raquel Alessi","type":"Person","_key":"9576"} +{"label":"Brett Cullen","version":38,"id":"16841","lastModified":"1299902807000","name":"Brett Cullen","type":"Person","_key":"9577"} +{"label":"Letters from Iwo Jima","description":"The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.","id":"1251","runtime":140,"imdbId":"tt0498380","trailer":"http:\/\/www.youtube.com\/watch?v=9qKo9Lp5oUE","version":198,"lastModified":"1299981572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93a\/4bc90f74017a3c57fe00593a\/letters-from-iwo-jima-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Letters from Iwo Jima","releaseDate":1163548800000,"language":"en","type":"Movie","_key":"9578"} +{"label":"Kazunari Ninomiya","version":24,"id":"33515","lastModified":"1299927457000","name":"Kazunari Ninomiya","type":"Person","_key":"9579"} +{"label":"Tsuyoshi Ihara","version":21,"id":"33516","lastModified":"1299494776000","name":"Tsuyoshi Ihara","type":"Person","_key":"9580"} +{"label":"Ryo Kase","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc9\/4d06a1b57b9aa11bc3002fc9\/ryo-kase-profile.jpg","version":31,"id":"33517","lastModified":"1299493535000","name":"Ryo Kase","type":"Person","_key":"9581"} +{"label":"Shido Nakamura","version":35,"id":"33518","lastModified":"1299493655000","name":"Shido Nakamura","type":"Person","_key":"9582"} +{"label":"Hiroshi Watanabe","version":19,"id":"33519","lastModified":"1299496028000","name":"Hiroshi Watanabe","type":"Person","_key":"9583"} +{"label":"Eijiro Ozaki","version":19,"id":"33520","lastModified":"1299497042000","name":"Eijiro Ozaki","type":"Person","_key":"9584"} +{"label":"Luke Eberl","version":20,"id":"33521","lastModified":"1299497137000","name":"Luke Eberl","type":"Person","_key":"9585"} +{"label":"Hiro Abe","version":19,"id":"33522","lastModified":"1299497042000","name":"Hiro Abe","type":"Person","_key":"9586"} +{"label":"Sonny Saito","version":19,"id":"33523","lastModified":"1299497041000","name":"Sonny Saito","type":"Person","_key":"9587"} +{"label":"Steve Santa Sekiyoshi","version":19,"id":"33524","lastModified":"1299497041000","name":"Steve Santa Sekiyoshi","type":"Person","_key":"9588"} +{"label":"Yuki Matsuzaki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37b\/4c7a2bc55e73d613d400037b\/yuki-matsuzaki-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Yuki Matsuzaki, born in Miyazaki, Japan began acting at the age of 7 in a small theatrical group that performed for children. He performed over 50 shows in local theaters until he was 18. Upon graduating high school, he decided to dedicate his life to acting and moved to New York City to become an accomplished actor with the versatility to perform in both English and Japanese. Upon","version":38,"birthday":"370130400000","id":"77955","birthplace":"Miyazaki, Japan","lastModified":"1299501137000","name":"Yuki Matsuzaki","type":"Person","_key":"9589"} +{"label":"Lonely Hearts","description":"In the late 1940's, Martha Beck and Raymond Fernandez were America's notorious \"Lonely Hearts Killers\". Their lethal scam was simple; they would swindle and then viciously murder lovelorn war widows who would answer their personal ads in which Ray would describe himself as a sexy Latin Lover. Based on a true story.","id":"1252","runtime":108,"imdbId":"tt0441774","homepage":"http:\/\/www.millenniumfilms.com\/lonelyhearts\/","version":146,"lastModified":"1299981382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/947\/4bc90f74017a3c57fe005947\/lonely-hearts-mid.jpg","studio":"Millennium Films","genre":"Crime","title":"Lonely Hearts","releaseDate":1146355200000,"language":"en","type":"Movie","_key":"9590"} +{"label":"Todd Robinson","version":20,"id":"16829","lastModified":"1299494974000","name":"Todd Robinson","type":"Person","_key":"9591"} +{"label":"Breaking And Entering","description":"Set in a blighted, inner-city neighbourhood of London, Breaking and Entering examines an affair which unfolds between a successful British landscape architect and Amira, a Bosnian woman \u2013 the mother of a troubled teen son \u2013 who was widowed by the war in Bosnia and Herzegovina.","id":"1253","runtime":129,"imdbId":"tt0443456","trailer":"http:\/\/www.youtube.com\/watch?v=1104","version":154,"lastModified":"1299981203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/950\/4bc90f75017a3c57fe005950\/breaking-entering-mid.jpg","studio":"The Weinstein Company","genre":"Drama","title":"Breaking And Entering","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"9592"} +{"label":"Vera Farmiga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4cb51a125e73d6778400009d\/vera-farmiga-profile.jpg","version":80,"birthday":"113439600000","id":"21657","birthplace":"Clifton, NJ","lastModified":"1299998043000","name":"Vera Farmiga","type":"Person","_key":"9593"} +{"label":"Rafi Gavron","version":21,"id":"21660","lastModified":"1299499373000","name":"Rafi Gavron","type":"Person","_key":"9594"} +{"label":"Poppy Rogers","version":18,"id":"21661","lastModified":"1299496556000","name":"Poppy Rogers","type":"Person","_key":"9595"} +{"label":"Ed Westwick","version":17,"id":"21662","lastModified":"1299498904000","name":"Ed Westwick","type":"Person","_key":"9596"} +{"label":"Je vais bien, ne t'en fais pas","description":"No overview found.","id":"1254","runtime":96,"imdbId":"tt0485241","version":94,"lastModified":"1299910486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/965\/4bc90f79017a3c57fe005965\/je-vais-bien-ne-t-en-fais-pas-mid.jpg","studio":"Nord Ouest Production","genre":"Drama","title":"Je vais bien, ne t'en fais pas","releaseDate":1157500800000,"language":"en","type":"Movie","_key":"9597"} +{"label":"Philippe Lioret","version":18,"id":"21669","lastModified":"1299494843000","name":"Philippe Lioret","type":"Person","_key":"9598"} +{"label":"M\u00e9lanie Laurent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4bdea8cd017a3c35c100017f\/melanie-laurent-profile.jpg","biography":"M\u00e9lanie Laurent is a French actress, director, and writer, perhaps best known to international audiences for her role in Inglourious Basterds.\n\nLaurent was born in Paris, the daughter of Annick, a ballerina, and Pierre Laurent, a voiceover actor. Laurent is Jewish, and has both Ashkenazi and Tunisian Sephardic ancestry. Her grandfather survived deportation by the Nazis.\n\nLaurent had a long relationship with fellow French actor Julien Boisselier. She describes recording artist Damien Rice and Tar","version":92,"birthday":"414630000000","id":"19119","birthplace":"Paris, France","lastModified":"1299811003000","name":"M\u00e9lanie Laurent","type":"Person","_key":"9599"} +{"label":"Kad Merad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d19\/4cd031385e73d65022000d19\/kad-merad-profile.jpg","version":57,"id":"22306","lastModified":"1299609530000","name":"Kad Merad","type":"Person","_key":"9600"} +{"label":"Julien Boisselier","version":25,"id":"32657","lastModified":"1299588929000","name":"Julien Boisselier","type":"Person","_key":"9601"} +{"label":"Thibault de Montalembert","version":24,"id":"19361","lastModified":"1299494842000","name":"Thibault de Montalembert","type":"Person","_key":"9602"} +{"label":"Mickael Trodoux","version":17,"id":"32658","lastModified":"1299497669000","name":"Mickael Trodoux","type":"Person","_key":"9603"} +{"label":"Simon Buret","version":17,"id":"32659","lastModified":"1299501635000","name":"Simon Buret","type":"Person","_key":"9604"} +{"label":"The Host","description":"From the director of \"Memories of Murder,\" \"The Host\" combines a blockbuster plot and political commentary, along with implications of America's military presence in Korea. By the end of its run in 2006, it became the highest grossing South Korean film of all time. The movie focuses on an old man named Park Hee-bong, who must rescue his daughter from a monster that rose out of the Han River.","id":"1255","runtime":120,"imdbId":"tt0468492","homepage":"http:\/\/www.hostmovie.com\/","version":169,"lastModified":"1299980917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c75\/4d0e92b27b9aa1025f002c75\/the-host-mid.jpg","studio":"Cineclick Asia","genre":"Action","title":"The Host","releaseDate":1148169600000,"language":"en","tagline":"Monsters are real.","type":"Movie","_key":"9605"} +{"label":"Joon-ho Bong","version":36,"id":"21684","lastModified":"1299493208000","name":"Joon-ho Bong","type":"Person","_key":"9606"} +{"label":"Kang-ho Song","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/337\/4d3e65465e73d622d1004337\/kang-ho-song-profile.jpg","version":44,"id":"20738","lastModified":"1299492200000","name":"Kang-ho Song","type":"Person","_key":"9607"} +{"label":"Hie-bong Byeon","version":16,"id":"21686","lastModified":"1299493471000","name":"Hie-bong Byeon","type":"Person","_key":"9608"} +{"label":"Hae-il Park","version":20,"id":"21687","lastModified":"1299493752000","name":"Hae-il Park","type":"Person","_key":"9609"} +{"label":"Doona Bae","version":25,"id":"21688","lastModified":"1299493295000","name":"Doona Bae","type":"Person","_key":"9610"} +{"label":"Ah-sung Ko","version":16,"id":"21689","lastModified":"1299493487000","name":"Ah-sung Ko","type":"Person","_key":"9611"} +{"label":"In 3 Tagen bist du tot","description":"When Nina and her high school friends receive eerie text messages declaring that they will all die within three days, they dismiss it as a hokey prank -- until one by one, the pals start turning up dead in the alpine countryside. With the cops stymied, Nina and her remaining friends must scour their past for clues to identify the madman before he kills them all.","id":"1256","runtime":97,"imdbId":"tt0808315","homepage":"http:\/\/www.in3tagen.com\/","version":67,"lastModified":"1299980731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/995\/4bc90f7f017a3c57fe005995\/in-3-tagen-bist-du-tot-mid.jpg","studio":"Allegro Film","genre":"Horror","title":"In 3 Tagen bist du tot","releaseDate":1153440000000,"language":"en","type":"Movie","_key":"9612"} +{"label":"Andreas Prochaska","version":22,"id":"16794","lastModified":"1299493927000","name":"Andreas Prochaska","type":"Person","_key":"9613"} +{"label":"Sabrina Reiter","version":17,"id":"36096","lastModified":"1299496146000","name":"Sabrina Reiter","type":"Person","_key":"9614"} +{"label":"Michael Steinocher","version":16,"id":"36098","lastModified":"1299496936000","name":"Michael Steinocher","type":"Person","_key":"9615"} +{"label":"Laurence Rupp","version":18,"id":"36097","lastModified":"1299496403000","name":"Laurence Rupp","type":"Person","_key":"9616"} +{"label":"Nadja Vogel","version":16,"id":"36100","lastModified":"1299498273000","name":"Nadja Vogel","type":"Person","_key":"9617"} +{"label":"Karl Fischer","version":19,"id":"16797","lastModified":"1299930281000","name":"Karl Fischer","type":"Person","_key":"9618"} +{"label":"Michou Friesz","version":15,"id":"16798","lastModified":"1299499358000","name":"Michou Friesz","type":"Person","_key":"9619"} +{"label":"Ines Honsel","version":13,"id":"16799","lastModified":"1299500387000","name":"Ines Honsel","type":"Person","_key":"9620"} +{"label":"Amelie Jarolim","version":13,"id":"16800","lastModified":"1299500386000","name":"Amelie Jarolim","type":"Person","_key":"9621"} +{"label":"Andreas Kiendl","version":14,"id":"16801","lastModified":"1299498586000","name":"Andreas Kiendl","type":"Person","_key":"9622"} +{"label":"Julia Rosa St\u00f6ckl","version":17,"id":"36099","lastModified":"1299498586000","name":"Julia Rosa St\u00f6ckl","type":"Person","_key":"9623"} +{"label":"Julian Sharp","version":16,"id":"36101","lastModified":"1299500386000","name":"Julian Sharp","type":"Person","_key":"9624"} +{"label":"Susi Stach","version":16,"id":"36102","lastModified":"1299500386000","name":"Susi Stach","type":"Person","_key":"9625"} +{"label":"Michael Rastl","version":16,"id":"36103","lastModified":"1299500386000","name":"Michael Rastl","type":"Person","_key":"9626"} +{"label":"Konstantin Reichmuth","version":16,"id":"36104","lastModified":"1299500386000","name":"Konstantin Reichmuth","type":"Person","_key":"9627"} +{"label":"Because I Said So","description":"In an effort to prevent family history from repeating itself, meddlesome mom Daphne Wilder attempts to set up her youngest daughter, Milly, with Mr. Right. Meanwhile, her other daughters try to keep their mom's good intentions under control.","id":"1257","runtime":102,"imdbId":"tt0490084","trailer":"http:\/\/www.youtube.com\/watch?v=aUE8gHEPJ_I","homepage":"http:\/\/www.becauseisaidsomovie.com\/index_intro.htm","version":165,"lastModified":"1299980601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/100\/4cdeaa557b9aa13c75000100\/because-i-said-so-mid.jpg","studio":"Gold Circle Films","genre":"Comedy","title":"Because I Said So","releaseDate":1170374400000,"language":"en","tagline":"She's just your normal, overprotective, overbearing, over-the-top mother.","type":"Movie","_key":"9628"} +{"label":"Michael Lehmann","version":40,"id":"7145","lastModified":"1299837444000","name":"Michael Lehmann","type":"Person","_key":"9629"} +{"label":"Mandy Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2db\/4c0549e0017a3c7e870002db\/mandy-moore-profile.jpg","biography":"<P style=\"LINE-HEIGHT: normal; MARGIN: 0in 0in 10pt; mso-pagination: none; mso-layout-grid-align: none\" class=MsoNormal><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN><FONT size=3><FONT face=Calibri>Amanda Leigh \"Mandy\" Moore was born in Nashua, New Hampshire. Her mother, Stacy (n\u00e9e Friedman), is a former news reporter who once worked for the Orlando Sentinel, and her father, Donald \"Don\" Moore, is a pilo","version":70,"birthday":"450396000000","id":"16855","birthplace":"Nashua, New Hampshire, USA","lastModified":"1300041121000","name":"Mandy Moore","type":"Person","_key":"9630"} +{"label":"Gabriel Macht","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79f\/4ce5a6247b9aa168b000079f\/gabriel-macht-profile.jpg","version":71,"id":"16856","lastModified":"1299899198000","name":"Gabriel Macht","type":"Person","_key":"9631"} +{"label":"Tom Everett Scott","version":35,"id":"16857","lastModified":"1299492956000","name":"Tom Everett Scott","type":"Person","_key":"9632"} +{"label":"Lauren Graham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c9\/4cf54f957b9aa151460005c9\/lauren-graham-profile.jpg","version":63,"id":"16858","lastModified":"1299948652000","name":"Lauren Graham","type":"Person","_key":"9633"} +{"label":"Ty Panitz","version":20,"id":"25144","lastModified":"1299498601000","name":"Ty Panitz","type":"Person","_key":"9634"} +{"label":"Matt Champagne","version":18,"id":"25145","lastModified":"1299495206000","name":"Matt Champagne","type":"Person","_key":"9635"} +{"label":"Colin Ferguson","version":25,"id":"25146","lastModified":"1299493894000","name":"Colin Ferguson","type":"Person","_key":"9636"} +{"label":"Tony Hale","version":31,"id":"25147","lastModified":"1299494476000","name":"Tony Hale","type":"Person","_key":"9637"} +{"label":"Notes on a Scandal","description":"A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new \"friend\" also go well beyond platonic friendship.","id":"1259","runtime":92,"imdbId":"tt0465551","version":205,"lastModified":"1299980413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b9\/4bc90f84017a3c57fe0059b9\/notes-on-a-scandal-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"Notes on a Scandal","releaseDate":1167004800000,"language":"en","tagline":"One woman's mistake is another's opportunity.","type":"Movie","_key":"9638"} +{"label":"Richard Eyre","version":29,"id":"36693","lastModified":"1299914286000","name":"Richard Eyre","type":"Person","_key":"9639"} +{"label":"Juno Temple","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d14\/4d2235497b9aa1289f000d14\/juno-temple-profile.jpg","version":53,"birthday":"585439200000","id":"36594","birthplace":"United Kingdom","lastModified":"1299914292000","name":"Juno Temple","type":"Person","_key":"9640"} +{"label":"Max Lewis","version":19,"id":"37048","lastModified":"1299914293000","name":"Max Lewis","type":"Person","_key":"9641"} +{"label":"Andrew Simpson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b64\/4d420e355e73d6572d000b64\/andrew-simpson-profile.jpg","biography":"Andrew Simpson attended the Foyle School of Speech and Drama, and was \ntaught by Sandra Biddle in his home city of Derry in Northern Ireland. \nAndrew's mum and dad are Marion and Paddy and he has two older sisters, \nCharlotte and Sarah and a younger brother, Patrick, all of whom have \nalso attended Miss Biddle's excellent training school for drama. Andrew \nperformed in feis (festivals) and was spotted when introduced by agent \nand talent-spotter Patrick Duncan to <a href=\"http:\/\/www.imdb.com\/nam","version":24,"birthday":"599612400000","id":"37049","birthplace":"Londonderry, Northern Ireland, UK ","lastModified":"1299914293000","name":"Andrew Simpson","type":"Person","_key":"9642"} +{"label":"Joanna Scanlan","version":25,"id":"33450","lastModified":"1299914293000","name":"Joanna Scanlan","type":"Person","_key":"9643"} +{"label":"Shaun Parkes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df0\/4cf161665e73d61924000df0\/shaun-parkes-profile.jpg","version":29,"id":"30316","lastModified":"1299914293000","name":"Shaun Parkes","type":"Person","_key":"9644"} +{"label":"Emma Kennedy","version":19,"id":"37050","lastModified":"1299914293000","name":"Emma Kennedy","type":"Person","_key":"9645"} +{"label":"Syreeta Kumar","version":19,"id":"37051","lastModified":"1299914293000","name":"Syreeta Kumar","type":"Person","_key":"9646"} +{"label":"Wendy Nottingham","version":19,"id":"37052","lastModified":"1299914293000","name":"Wendy Nottingham","type":"Person","_key":"9647"} +{"label":"Jill Baker","version":21,"id":"37053","lastModified":"1299914293000","name":"Jill Baker","type":"Person","_key":"9648"} +{"label":"Alice Bird","version":19,"id":"37054","lastModified":"1299914294000","name":"Alice Bird","type":"Person","_key":"9649"} +{"label":"Benedict Taylor","version":28,"id":"37055","lastModified":"1299914295000","name":"Benedict Taylor","type":"Person","_key":"9650"} +{"label":"Stephen Kennedy","version":20,"id":"37056","lastModified":"1299914295000","name":"Stephen Kennedy","type":"Person","_key":"9651"} +{"label":"Derbhle Crotty","version":19,"id":"37057","lastModified":"1299914295000","name":"Derbhle Crotty","type":"Person","_key":"9652"} +{"label":"Anne-Marie Duff","version":31,"id":"37058","lastModified":"1299914295000","name":"Anne-Marie Duff","type":"Person","_key":"9653"} +{"label":"Lotte from Gadgetville","description":"No overview found.","id":"1260","runtime":81,"imdbId":"tt0447249","version":65,"lastModified":"1299911684000","title":"Lotte from Gadgetville","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"9654"} +{"label":"Stranger Than Fiction","description":"Everybody knows that your life is a story. But what if a story was your life? Harold Crick is your average IRS agent: monotonous, boring, and repetitive. But one day this all changes when Harold begins to hear an author inside his head narrating his life. But when the narration reveals he is going to die, Harold must find the author and convince them to change the ending.","id":"1262","runtime":113,"imdbId":"tt0420223","trailer":"http:\/\/www.youtube.com\/watch?v=pvNYzlScr_A","homepage":"http:\/\/www.sonypictures.com\/homevideo\/strangerthanfiction\/","version":241,"lastModified":"1299980084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d6\/4bc90f89017a3c57fe0059d6\/stranger-than-fiction-mid.jpg","studio":"Mandate Pictures","genre":"Comedy","title":"Stranger Than Fiction","releaseDate":1163116800000,"language":"en","tagline":"Harold Crick isn't ready to go. Period.","type":"Movie","_key":"9655"} +{"label":"Will Ferrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d1\/4c082c24017a3c33d90006d1\/will-ferrell-profile.jpg","biography":"A graduate of the University of Southern California, Will Ferrell became interested in performing while a student at University High School in Irvine, California, where he made his school's daily morning announcements over the public address system in disguised voices. He started as a member of the Los Angeles comedy\/improvisation group The Groundlings, where fellow cast members Ana Gasteyer, Maya Rudolph and former Saturday Night Live repertory players such as Laraine Newman, Jon Lovitz and Phi","version":123,"birthday":"-77763600000","id":"23659","birthplace":"Irvine, California, U.S.","lastModified":"1299899273000","name":"Will Ferrell","type":"Person","_key":"9656"} +{"label":"Ricky Adams","version":16,"id":"36090","lastModified":"1299494736000","name":"Ricky Adams","type":"Person","_key":"9657"} +{"label":"Denise Hughes","version":16,"id":"36092","lastModified":"1299495326000","name":"Denise Hughes","type":"Person","_key":"9658"} +{"label":"Christian Stolte","version":31,"id":"36091","lastModified":"1299492841000","name":"Christian Stolte","type":"Person","_key":"9659"} +{"label":"William Dick","version":19,"id":"36095","lastModified":"1299495073000","name":"William Dick","type":"Person","_key":"9660"} +{"label":"Peggy Roeder","version":16,"id":"36093","lastModified":"1299495326000","name":"Peggy Roeder","type":"Person","_key":"9661"} +{"label":"Die Aufschneider","description":"No overview found.","id":"1263","runtime":92,"imdbId":"tt0449080","homepage":"http:\/\/www.dieaufschneider-derfilm.de\/","version":75,"lastModified":"1299911450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e9\/4bc90f8c017a3c57fe0059e9\/die-aufschneider-mid.jpg","studio":"3L Filmproduktion GmbH","genre":"Comedy","title":"Die Aufschneider","releaseDate":1170892800000,"language":"en","type":"Movie","_key":"9662"} +{"label":"Carsten Strauch","version":14,"id":"16703","lastModified":"1299495945000","name":"Carsten Strauch","type":"Person","_key":"9663"} +{"label":"Rainer Ewerrien","version":13,"id":"16704","lastModified":"1299495945000","name":"Rainer Ewerrien","type":"Person","_key":"9664"} +{"label":"Cosma Shiva Hagen","version":23,"id":"16718","lastModified":"1299492891000","name":"Cosma Shiva Hagen","type":"Person","_key":"9665"} +{"label":"Josef Ostendorf","version":16,"id":"16719","lastModified":"1299496935000","name":"Josef Ostendorf","type":"Person","_key":"9666"} +{"label":"Bernd Stegemann","version":20,"id":"16720","lastModified":"1299496230000","name":"Bernd Stegemann","type":"Person","_key":"9667"} +{"label":"Thorsten Ranft","version":14,"id":"16721","lastModified":"1299500384000","name":"Thorsten Ranft","type":"Person","_key":"9668"} +{"label":"Tim Wilde","version":13,"id":"16722","lastModified":"1299499293000","name":"Tim Wilde","type":"Person","_key":"9669"} +{"label":"Simon Gosejohann","version":15,"id":"16723","lastModified":"1299494632000","name":"Simon Gosejohann","type":"Person","_key":"9670"} +{"label":"Catherine Stoyan","version":15,"id":"16724","lastModified":"1299501253000","name":"Catherine Stoyan","type":"Person","_key":"9671"} +{"label":"Matthias Zelic","version":14,"id":"16725","lastModified":"1299500430000","name":"Matthias Zelic","type":"Person","_key":"9672"} +{"label":"Ellen Schlootz","version":13,"id":"16726","lastModified":"1299501633000","name":"Ellen Schlootz","type":"Person","_key":"9673"} +{"label":"Die wilden Kerle 4","description":"No overview found.","id":"1264","runtime":110,"imdbId":"tt0811159","homepage":"http:\/\/www.dwk4.de\/","version":51,"lastModified":"1299806755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99c\/4d0ceea45e73d6370e00099c\/die-wilden-kerle-4-mid.jpg","studio":"Buena Vista International (Germany) Filmproduktion GmbH (M\u00fcnchen)","genre":"Comedy","title":"Die wilden Kerle 4","releaseDate":1170288000000,"language":"en","type":"Movie","_key":"9674"} +{"label":"Joachim Masannek","version":32,"id":"16819","lastModified":"1299496285000","name":"Joachim Masannek","type":"Person","_key":"9675"} +{"label":"Jimi Blue Ochsenknecht","version":30,"id":"16823","lastModified":"1299494959000","name":"Jimi Blue Ochsenknecht","type":"Person","_key":"9676"} +{"label":"Wilson Gonzalez Ochsenknecht","version":30,"id":"55183","lastModified":"1299503676000","name":"Wilson Gonzalez Ochsenknecht","type":"Person","_key":"9677"} +{"label":"Sarah Kim Gries","version":29,"id":"16825","lastModified":"1299494542000","name":"Sarah Kim Gries","type":"Person","_key":"9678"} +{"label":"Nick Romeo Reimann","version":18,"id":"16826","lastModified":"1299495028000","name":"Nick Romeo Reimann","type":"Person","_key":"9679"} +{"label":"Marlon Wessel","version":20,"id":"16827","lastModified":"1299494459000","name":"Marlon Wessel","type":"Person","_key":"9680"} +{"label":"Bridge to Terabithia","description":"New classmate Leslie Burke unlocks a mesmerizing world of fantasy and imagination for fifth-grader Jesse Aaron in this magical adventure. The two outcasts, who are rivals at first, eventually become friends and create the make-believe kingdom of Terabithia, where they reign supreme and plot vengeance against school bullies.","id":"1265","runtime":95,"imdbId":"tt0398808","trailer":"http:\/\/www.youtube.com\/watch?v=T2TDSEG57hI","homepage":"http:\/\/www.bruecke.film.de\/","version":229,"lastModified":"1299979541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e6\/4c7993175e73d613d30002e6\/bridge-to-terabithia-mid.jpg","studio":"Walden Media","genre":"Action","title":"Bridge to Terabithia","releaseDate":1171065600000,"language":"en","tagline":"Close your eyes, but keep your mind wide open.","type":"Movie","_key":"9681"} +{"label":"Gabor Csupo","version":22,"id":"36697","lastModified":"1299494248000","name":"Gabor Csupo","type":"Person","_key":"9682"} +{"label":"Josh Hutcherson","version":70,"id":"27972","lastModified":"1300001181000","name":"Josh Hutcherson","type":"Person","_key":"9683"} +{"label":"Kate Butler","version":21,"id":"54478","lastModified":"1299499100000","name":"Kate Butler","type":"Person","_key":"9684"} +{"label":"Bailee Madison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04c\/4d0823ad7b9aa101de00004c\/bailee-madison-profile.jpg","version":42,"id":"54479","lastModified":"1299859961000","name":"Bailee Madison","type":"Person","_key":"9685"} +{"label":"Grace Brannigan","version":21,"id":"54480","lastModified":"1299501540000","name":"Grace Brannigan","type":"Person","_key":"9686"} +{"label":"Emma Fenton","version":21,"id":"54481","lastModified":"1299501633000","name":"Emma Fenton","type":"Person","_key":"9687"} +{"label":"Lauren Clinton","version":20,"id":"54482","lastModified":"1299500561000","name":"Lauren Clinton","type":"Person","_key":"9688"} +{"label":"Isabelle Rose Kircher","version":20,"id":"54483","lastModified":"1299502874000","name":"Isabelle Rose Kircher","type":"Person","_key":"9689"} +{"label":"Patricia Aldersley","version":20,"id":"54484","lastModified":"1299498431000","name":"Patricia Aldersley","type":"Person","_key":"9690"} +{"label":"Latham Gaines","version":20,"id":"54485","lastModified":"1299500560000","name":"Latham Gaines","type":"Person","_key":"9691"} +{"label":"Carly Owen","version":20,"id":"54486","lastModified":"1299498431000","name":"Carly Owen","type":"Person","_key":"9692"} +{"label":"James Gaylyn","version":23,"id":"54492","lastModified":"1299503645000","name":"James Gaylyn","type":"Person","_key":"9693"} +{"label":"Jen Wolfe","version":20,"id":"54493","lastModified":"1299498431000","name":"Jen Wolfe","type":"Person","_key":"9694"} +{"label":"Ian Harcourt","version":20,"id":"54494","lastModified":"1299497042000","name":"Ian Harcourt","type":"Person","_key":"9695"} +{"label":"Street Kings","description":"Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.","id":"1266","runtime":109,"imdbId":"tt0421073","trailer":"http:\/\/www.youtube.com\/watch?v=G_0i5Eq-PKs&hd=1","version":224,"lastModified":"1299979272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a28\/4bc90f98017a3c57fe005a28\/street-kings-mid.jpg","studio":"Regency Enterprises","genre":"Action","title":"Street Kings","releaseDate":1207785600000,"language":"en","tagline":"Their city. Their rules. No prisoners.","type":"Movie","_key":"9696"} +{"label":"David Ayer","version":52,"id":"19769","lastModified":"1299829656000","name":"David Ayer","type":"Person","_key":"9697"} +{"label":"Chris Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4bd71a5e017a3c21ec00010e\/chris-evans-profile.jpg","version":110,"id":"16828","lastModified":"1299543752000","name":"Chris Evans","type":"Person","_key":"9698"} +{"label":"Hugh Laurie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/74f\/4cbe3e447b9aa138d700174f\/hugh-laurie-profile.jpg","version":94,"id":"41419","lastModified":"1300030984000","name":"Hugh Laurie","type":"Person","_key":"9699"} +{"label":"Martha Higareda","version":21,"id":"55392","lastModified":"1299496076000","name":"Martha Higareda","type":"Person","_key":"9700"} +{"label":"Cedric the Entertainer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ee\/4c99bf487b9aa122e10003ee\/cedric-the-entertainer-profile.jpg","version":82,"birthday":"-179542800000","id":"5726","birthplace":"Missouri, USA","lastModified":"1299947633000","name":"Cedric the Entertainer","type":"Person","_key":"9701"} +{"label":"Angela Sun","version":20,"id":"55393","lastModified":"1299500384000","name":"Angela Sun","type":"Person","_key":"9702"} +{"label":"Cle Shaheed Sloan","version":20,"id":"55394","lastModified":"1299495943000","name":"Cle Shaheed Sloan","type":"Person","_key":"9703"} +{"label":"The Game","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32b\/4d533af77b9aa13aba01232b\/the-game-profile.jpg","biography":"Compton's own <a href=\"http:\/\/www.allmusic.com\/artist\/the-game-p681397\">the Game<\/a> (aka <a href=\"http:\/\/www.allmusic.com\/artist\/hurricane-game-p1055892\">Hurricane Game<\/a>) issued his debut LP, <a href=\"http:\/\/www.allmusic.com\/album\/the-documentary-r727123\">The Documentary<\/a>, in 2004 through Aftermath\/G-Unit\/Universal. With everyone from <a href=\"http:\/\/www.allmusic.com\/artist\/dr-dre-p26119\">Dr. Dre<\/a> and <a href=\"http:\/\/www.allmusic.com\/artist\/50-cent-p372609\">50 Cent<\/a> to <a href=\"http","version":28,"birthday":"312678000000","id":"55395","lastModified":"1299494631000","name":"The Game","type":"Person","_key":"9704"} +{"label":"Michael Monks","version":24,"id":"53249","lastModified":"1299670792000","name":"Michael Monks","type":"Person","_key":"9705"} +{"label":"Meet the Robinsons","description":"In this animated adventure, brilliant preteen inventor Lewis creates a memory scanner to retrieve his earliest recollections and find out why his mother gave him up for adoption. But when the villainous Bowler Hat Guy steals the machine, Lewis is ready to give up on his quest until the mysterious Wilbur Robinson shows up on the scene, whisking Lewis to the future to find the scanner and his mom.","id":"1267","runtime":95,"imdbId":"tt0396555","trailer":"http:\/\/www.youtube.com\/watch?v=1694","version":199,"lastModified":"1299979062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4cba5c805e73d677850007b5\/meet-the-robinsons-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Meet the Robinsons","releaseDate":1175126400000,"language":"en","type":"Movie","_key":"9706"} +{"label":"Stephen J. Anderson","version":19,"id":"16842","lastModified":"1299494018000","name":"Stephen J. Anderson","type":"Person","_key":"9707"} +{"label":"Tom Selleck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23b\/4bdf6928017a3c35b700023b\/tom-selleck-profile.jpg","version":92,"id":"15112","lastModified":"1299833803000","name":"Tom Selleck","type":"Person","_key":"9708"} +{"label":"Nicole Sullivan","version":28,"id":"16845","lastModified":"1300071499000","name":"Nicole Sullivan","type":"Person","_key":"9709"} +{"label":"Harland Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1aa\/4bf954db017a3c70360001aa\/harland-williams-profile.jpg","version":50,"id":"16846","lastModified":"1299610358000","name":"Harland Williams","type":"Person","_key":"9710"} +{"label":"Mr. Bean's Holiday","description":"Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two come back together. On the way he discovers France, bicycling, and true love, among other things","id":"1268","runtime":90,"imdbId":"tt0453451","trailer":"http:\/\/www.youtube.com\/watch?v=ZV_HYwmEi_k","homepage":"http:\/\/movies.universal-pictures-international-germany.de\/mrbeanmachtferien\/","version":189,"lastModified":"1299912176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a62\/4bc90f9f017a3c57fe005a62\/mr-bean-s-holiday-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Mr. Bean's Holiday","releaseDate":1174521600000,"language":"en","tagline":"Disaster has a passport.","type":"Movie","_key":"9711"} +{"label":"Steve Bendelack","version":16,"id":"16356","lastModified":"1299494197000","name":"Steve Bendelack","type":"Person","_key":"9712"} +{"label":"Max Baldry","version":15,"id":"16373","lastModified":"1299515458000","name":"Max Baldry","type":"Person","_key":"9713"} +{"label":"St\u00e9phane Debac","version":16,"id":"16374","lastModified":"1299515457000","name":"St\u00e9phane Debac","type":"Person","_key":"9714"} +{"label":"Neues vom WiXXer","description":"Der Wixxer ist tot, es lebe der NEUE Wixxer! Offenbar geht ein Nachahmungst\u00e4ter in London um, und auf der Todesliste steht - Inspektor Very Long! Au\u00dferdem - zum Entsetzen von Inspektor Even Longer - der Adelsspro\u00df Victoria Dickham, Tochter des legend\u00e4ren Ex-Scotland-Yard-Chefs Lord Dickham und heimliche Geliebte von Even Longer. Nur 24 Stunden Zeit bleiben, um alles gut zu machen und den b\u00f6sen, b\u00f6sen Wixxer zu enttarnen; 24 Stunden, die durchs Irrenhaus in ein Kloster und in den Puff an der Them","id":"1269","runtime":98,"imdbId":"tt0446009","homepage":"http:\/\/www.wixxer.film.de\/","version":65,"lastModified":"1299978738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7f\/4bc90fa3017a3c57fe005a7f\/neues-vom-wixxer-mid.jpg","studio":"GFP Medienfonds","genre":"Comedy","title":"Neues vom WiXXer","releaseDate":1174521600000,"language":"en","type":"Movie","_key":"9715"} +{"label":"Cyrill Boss","version":17,"id":"16812","lastModified":"1299497426000","name":"Cyrill Boss","type":"Person","_key":"9716"} +{"label":"Philipp Stennert","version":12,"id":"16813","lastModified":"1299494697000","name":"Philipp Stennert","type":"Person","_key":"9717"} +{"label":"Oliver Kalkofe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d27\/4cfd17137b9aa1514b003d27\/oliver-kalkofe-profile.jpg","version":20,"id":"16814","lastModified":"1299493595000","name":"Oliver Kalkofe","type":"Person","_key":"9718"} +{"label":"Bastian Pastewka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd4\/4cfd16ba7b9aa1514a003dd4\/bastian-pastewka-profile.jpg","version":25,"id":"16815","lastModified":"1299493377000","name":"Bastian Pastewka","type":"Person","_key":"9719"} +{"label":"Joachim Fuchsberger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c4\/4ca1e1bb5e73d612f80002c4\/joachim-fuchsberger-profile.jpg","version":46,"id":"16818","lastModified":"1300001954000","name":"Joachim Fuchsberger","type":"Person","_key":"9720"} +{"label":"Wolfgang V\u00f6lz","version":27,"id":"17266","lastModified":"1299498804000","name":"Wolfgang V\u00f6lz","type":"Person","_key":"9721"} +{"label":"Achim Mentzel","version":13,"id":"17267","lastModified":"1299496340000","name":"Achim Mentzel","type":"Person","_key":"9722"} +{"label":"Oliver Welke","version":15,"id":"16816","lastModified":"1299498447000","name":"Oliver Welke","type":"Person","_key":"9723"} +{"label":"Grindhouse","description":"A double-bill of thrillers. \"Grindhouse\" is presented as one full-length feature comprised of two individual films helmed separately by each director. \"Death Proof,\" is a rip-roaring slasher flick where the killer pursues his victims with a car rather than a knife, while \"Planet Terror\" shows us a view of the world in the midst of a zombie ooutbreak.","id":"1270","runtime":191,"imdbId":"tt0462322","homepage":"http:\/\/www.grindhousemovie.net\/","version":184,"lastModified":"1300089273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4bc90fa8017a3c57fe005aa8\/grindhouse-mid.jpg","title":"Grindhouse","language":"en","type":"Movie","_key":"9724"} +{"label":"300","description":"Based on Frank Miller's graphic novel, \"300\" concerns the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.","id":"1271","runtime":117,"imdbId":"tt0416449","trailer":"http:\/\/www.youtube.com\/watch?v=Yu0F3P2XYGY","homepage":"http:\/\/300themovie.warnerbros.com","version":316,"lastModified":"1299978437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b00\/4bc90fb6017a3c57fe005b00\/300-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"300","releaseDate":1165622400000,"language":"en","tagline":"Spartans, prepare for glory!","type":"Movie","_key":"9725"} +{"label":"Gerard Butler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/056\/4bca14bd017a3c0e99000056\/gerard-butler-profile.jpg","biography":"Gerard James Butler is a scotish actor who appeared on Television, stage and in film. Originally he worked as a lawyer, until he had one of his first roles in James Bond 007: Tomorrow Never Dies in 1997. His breakthrough film was Joel Schuhmacher\u00b4s \"The Phantom of the Opera\" adaption. \n\nSince then he had leading roles in movies like \"300\" (as spartian King Leonidas), \"P.S. I Love You\", Guy Ritchie\u00b4s \"Rock\u00b4n\u00b4Rolla\", \"The Ugly Truth\" or Gamer\".","version":128,"birthday":"-4237200000","id":"17276","birthplace":"Paisley, Scotland, UK ","lastModified":"1299490665000","name":"Gerard Butler","type":"Person","_key":"9726"} +{"label":"Lena Headey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4bca16ac017a3c0e9900005a\/lena-headey-profile.jpg","version":63,"birthday":"118450800000","id":"17286","birthplace":"Bermuda","lastModified":"1299490922000","name":"Lena Headey","type":"Person","_key":"9727"} +{"label":"Dominic West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/055\/4bca1786017a3c0e93000055\/dominic-west-profile.jpg","version":46,"id":"17287","lastModified":"1299959190000","name":"Dominic West","type":"Person","_key":"9728"} +{"label":"Michael Fassbender","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4c3884ba7b9aa10edc0000b5\/michael-fassbender-profile.jpg","version":81,"id":"17288","lastModified":"1299811003000","name":"Michael Fassbender","type":"Person","_key":"9729"} +{"label":"Rodrigo Santoro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4c3886847b9aa10eda0000c6\/rodrigo-santoro-profile.jpg","version":33,"id":"17289","lastModified":"1300053474000","name":"Rodrigo Santoro","type":"Person","_key":"9730"} +{"label":"Andrew Tiernan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d8\/4c3961d55e73d671cf0000d8\/andrew-tiernan-profile.jpg","version":23,"id":"17290","lastModified":"1299493995000","name":"Andrew Tiernan","type":"Person","_key":"9731"} +{"label":"Andrew Pleavin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4c39628b5e73d671cf0000e0\/andrew-pleavin-profile.jpg","version":19,"id":"17291","lastModified":"1299515460000","name":"Andrew Pleavin","type":"Person","_key":"9732"} +{"label":"Tom Wisdom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4c3963385e73d671d40000ba\/tom-wisdom-profile.jpg","version":20,"id":"17292","lastModified":"1299960764000","name":"Tom Wisdom","type":"Person","_key":"9733"} +{"label":"Giovani Cimmino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cb\/4c3963e55e73d671d20000cb\/giovani-cimmino-profile.jpg","version":17,"id":"17293","lastModified":"1299493996000","name":"Giovani Cimmino","type":"Person","_key":"9734"} +{"label":"Tyler Neitzel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4c3964875e73d671d1000089\/tyler-neitzel-profile.jpg","version":18,"id":"17294","lastModified":"1299491057000","name":"Tyler Neitzel","type":"Person","_key":"9735"} +{"label":"Sunshine","description":"50 years from now the sun is dying and life on earth is threatened by arctic temperatures. Mankind puts together all its resources and sends a spaceship towards the sun. Its payload - a huge bomb. The spaceship is the second of its kind. The first one was lost on its way to the sun ...","id":"1272","runtime":107,"imdbId":"tt0448134","trailer":"http:\/\/www.youtube.com\/watch?v=r0ciLKeMGeU","version":242,"lastModified":"1299978226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc90fce017a3c57fe005b82\/sunshine-mid.jpg","studio":"DNA Films","genre":"Science Fiction","title":"Sunshine","releaseDate":1174003200000,"language":"en","tagline":"If the sun dies, so do we.","type":"Movie","_key":"9736"} +{"label":"Troy Garity","version":41,"id":"31711","lastModified":"1300001180000","name":"Troy Garity","type":"Person","_key":"9737"} +{"label":"Benedict Wong","version":35,"id":"30082","lastModified":"1299492704000","name":"Benedict Wong","type":"Person","_key":"9738"} +{"label":"Chipo Chung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf9\/4cba512a7b9aa138da000bf9\/chipo-chung-profile.jpg","version":28,"id":"59151","lastModified":"1299497844000","name":"Chipo Chung","type":"Person","_key":"9739"} +{"label":"TMNT","description":"The continued adventures of the four adolescent mutated turtles gifted in the art of the ninja, as they attempt to stop a mysterious evil that threatens to end the world","id":"1273","runtime":90,"imdbId":"tt0453556","trailer":"http:\/\/www.youtube.com\/watch?v=60","version":149,"lastModified":"1299978034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba1\/4bc90fd5017a3c57fe005ba1\/tmnt-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"TMNT","releaseDate":1174521600000,"language":"en","type":"Movie","_key":"9740"} +{"label":"Kevin Munroe","version":20,"id":"19499","lastModified":"1299496381000","name":"Kevin Munroe","type":"Person","_key":"9741"} +{"label":"Kevin Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cba\/4ccf59305e73d65024000cba\/kevin-smith-profile.jpg","version":205,"id":"19303","lastModified":"1299925298000","name":"Kevin Smith","type":"Person","_key":"9742"} +{"label":"Mitchell Whitfield","version":22,"id":"19505","lastModified":"1299496569000","name":"Mitchell Whitfield","type":"Person","_key":"9743"} +{"label":"James Arnold Taylor","version":28,"id":"19506","lastModified":"1299497248000","name":"James Arnold Taylor","type":"Person","_key":"9744"} +{"label":"Mikey Kelley","version":16,"id":"19507","lastModified":"1299497214000","name":"Mikey Kelley","type":"Person","_key":"9745"} +{"label":"Nolan North","version":26,"id":"19508","lastModified":"1299552182000","name":"Nolan North","type":"Person","_key":"9746"} +{"label":"Gloomy Sunday","description":"Budapest in the thirties. The restaurant owner Laszlo hires the pianist Andr\u00e1s to play in his restaurant. Both men fall in love with the beautiful waitress Ilona who inspires Andr\u00e1s to his only composition. His song of Gloomy Sunday is, at first, loved and then feared, for its melancholic melody triggers off a chain of suicides. The fragile balance of the erotic m\u00e9nage \u00e0 trois is sent off kilter when the German Hans goes and falls in love with Ilona as well.","id":"1277","runtime":112,"imdbId":"tt0155722","trailer":"http:\/\/www.youtube.com\/watch?v=5PDGTtD2Jm0","homepage":"http:\/\/www.viipillars.com\/gloomysunday\/index3.htm","version":109,"lastModified":"1299911343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/059\/4c4559647b9aa15de1000059\/gloomy-sunday-ein-lied-von-liebe-und-tod-mid.jpg","studio":"Studio Hamburg Filmproduktion","genre":"Drama","title":"Gloomy Sunday","releaseDate":940464000000,"language":"en","type":"Movie","_key":"9747"} +{"label":"Rolf Sch\u00fcbel","version":19,"id":"16225","lastModified":"1299496407000","name":"Rolf Sch\u00fcbel","type":"Person","_key":"9748"} +{"label":"Erika Marozs\u00e1n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68c\/4d6506b55e73d66a5c00068c\/erika-marozs-n-profile.jpg","version":21,"id":"16239","lastModified":"1299493959000","name":"Erika Marozs\u00e1n","type":"Person","_key":"9749"} +{"label":"Stefano Dionisi","version":31,"id":"16240","lastModified":"1300024192000","name":"Stefano Dionisi","type":"Person","_key":"9750"} +{"label":"Andr\u00e1s B\u00e1lint","version":15,"id":"16241","lastModified":"1299501654000","name":"Andr\u00e1s B\u00e1lint","type":"Person","_key":"9751"} +{"label":"G\u00e9za Boros","version":14,"id":"16242","lastModified":"1299501600000","name":"G\u00e9za Boros","type":"Person","_key":"9752"} +{"label":"Rolf Becker","version":17,"id":"16243","lastModified":"1299497362000","name":"Rolf Becker","type":"Person","_key":"9753"} +{"label":"Ilse Zielstorff","version":14,"id":"16244","lastModified":"1299501138000","name":"Ilse Zielstorff","type":"Person","_key":"9754"} +{"label":"Ferenc B\u00e1cs","version":14,"id":"16245","lastModified":"1299501138000","name":"Ferenc B\u00e1cs","type":"Person","_key":"9755"} +{"label":"J\u00falia Zsolnai","version":14,"id":"16246","lastModified":"1299501137000","name":"J\u00falia Zsolnai","type":"Person","_key":"9756"} +{"label":"Aron Sipos","version":18,"id":"16247","lastModified":"1299960740000","name":"Aron Sipos","type":"Person","_key":"9757"} +{"label":"Ernst Kahl","version":17,"id":"16248","lastModified":"1299496285000","name":"Ernst Kahl","type":"Person","_key":"9758"} +{"label":"J\u00f6rg Gillner","version":15,"id":"16249","lastModified":"1299501138000","name":"J\u00f6rg Gillner","type":"Person","_key":"9759"} +{"label":"Denis Moschitto","version":21,"id":"16250","lastModified":"1299494842000","name":"Denis Moschitto","type":"Person","_key":"9760"} +{"label":"Istv\u00e1n Mik\u00f3","version":14,"id":"16251","lastModified":"1299501629000","name":"Istv\u00e1n Mik\u00f3","type":"Person","_key":"9761"} +{"label":"The Dreamers","description":"A young American studying in Paris in 1968 strikes up a friendship with a French brother and sister. Set against the background of the '68 Paris student riots.","id":"1278","runtime":115,"imdbId":"tt0309987","homepage":"http:\/\/www.foxsearchlight.com\/thedreamers\/","version":151,"lastModified":"1300088415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/439\/4c970d687b9aa10d5b000439\/the-dreamers-mid.jpg","studio":"Recorded Picture Company","genre":"Drama","title":"The Dreamers","releaseDate":1062374400000,"language":"en","type":"Movie","_key":"9762"} +{"label":"Eva Green","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c7\/4bd3ca43017a3c533f0000c7\/eva-green-profile.jpg","biography":"<P style=\"MARGIN: 0in 0in 10pt\" class=MsoNormal><FONT size=3 face=Calibri>Eva Ga\u00eblle Green, born on 5 July 1980, is a French actress, raised in Paris and living partly in London. She has been noted by Vogue for her \"killer looks, intelligence and modesty\", and described by The Independent as \"gothic, quirky, and sexy\". The daughter of actress Marl\u00e8ne Jobert, Green performed in theatre before making her film debut in The Dreamers (2003), which generated controversy over her numerous nude scenes. ","version":47,"birthday":"331596000000","id":"10912","lastModified":"1299491140000","name":"Eva Green","type":"Person","_key":"9763"} +{"label":"Louis Garrel","version":25,"id":"16269","lastModified":"1299495356000","name":"Louis Garrel","type":"Person","_key":"9764"} +{"label":"Robin Renucci","version":17,"id":"16349","lastModified":"1299669726000","name":"Robin Renucci","type":"Person","_key":"9765"} +{"label":"Jean-Pierre Kalfon","version":32,"id":"16350","lastModified":"1299927945000","name":"Jean-Pierre Kalfon","type":"Person","_key":"9766"} +{"label":"Florian Cadiou","version":12,"id":"16351","lastModified":"1299496934000","name":"Florian Cadiou","type":"Person","_key":"9767"} +{"label":"Pierre Hancisse","version":12,"id":"16352","lastModified":"1299496934000","name":"Pierre Hancisse","type":"Person","_key":"9768"} +{"label":"Valentin Merlet","version":15,"id":"16353","lastModified":"1299497692000","name":"Valentin Merlet","type":"Person","_key":"9769"} +{"label":"Lola Peploe","version":12,"id":"16354","lastModified":"1299496934000","name":"Lola Peploe","type":"Person","_key":"9770"} +{"label":"Ingy Fillion","version":12,"id":"16355","lastModified":"1299496934000","name":"Ingy Fillion","type":"Person","_key":"9771"} +{"label":"Samaritan Girl","description":"No overview found.","id":"1279","runtime":95,"imdbId":"tt0397619","version":113,"lastModified":"1299910630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03a\/4c034aa4017a3c29a600003a\/1279-mid.jpg","studio":"Kim Ki-Duk Film","genre":"Drama","title":"Samaritan Girl","releaseDate":1076371200000,"language":"en","type":"Movie","_key":"9772"} +{"label":"Yeo-reum Han","version":18,"id":"16262","lastModified":"1299496340000","name":"Yeo-reum Han","type":"Person","_key":"9773"} +{"label":"Ji-min Kwak","version":15,"id":"16263","lastModified":"1299499292000","name":"Ji-min Kwak","type":"Person","_key":"9774"} +{"label":"Eol Lee","version":14,"id":"16264","lastModified":"1299498362000","name":"Eol Lee","type":"Person","_key":"9775"} +{"label":"Kwon Hyun-Min","version":14,"id":"16265","lastModified":"1299495994000","name":"Kwon Hyun-Min","type":"Person","_key":"9776"} +{"label":"Gyun-Ho Im","version":18,"id":"16267","lastModified":"1299500498000","name":"Gyun-Ho Im","type":"Person","_key":"9777"} +{"label":"Lee Jong-Gil","version":14,"id":"16268","lastModified":"1299500497000","name":"Lee Jong-Gil","type":"Person","_key":"9778"} +{"label":"3-Iron","description":"Bin-jip means \"Empty Houses\". Korean film maker Kim Ki-Duk received great international attention with his quiet, extraordinary love story of two people living on the fringe of society who break into empty apartments.","id":"1280","runtime":88,"imdbId":"tt0423866","homepage":"http:\/\/www.cineclickasia.com\/movie\/binjip\/index.htm","version":142,"lastModified":"1299909601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4c032fea017a3c7e8e0000d3\/1280-mid.jpg","studio":"Kim Ki-Duk Film","genre":"Drama","title":"3-Iron","releaseDate":1094515200000,"language":"en","type":"Movie","_key":"9779"} +{"label":"Seung-yeon Lee","version":17,"id":"16283","lastModified":"1299495026000","name":"Seung-yeon Lee","type":"Person","_key":"9780"} +{"label":"Hyun-kyoon Lee","version":17,"id":"16284","lastModified":"1299907876000","name":"Hyun-kyoon Lee","type":"Person","_key":"9781"} +{"label":"Hyuk-ho Kwon","version":15,"id":"16285","lastModified":"1299498270000","name":"Hyuk-ho Kwon","type":"Person","_key":"9782"} +{"label":"Jeong-ho Choi","version":15,"id":"16286","lastModified":"1299495205000","name":"Jeong-ho Choi","type":"Person","_key":"9783"} +{"label":"Ju-seok Lee","version":15,"id":"16287","lastModified":"1299498271000","name":"Ju-seok Lee","type":"Person","_key":"9784"} +{"label":"Mi-suk Lee","version":23,"id":"16288","lastModified":"1299496933000","name":"Mi-suk Lee","type":"Person","_key":"9785"} +{"label":"Sung-hyuk Moon","version":15,"id":"16289","lastModified":"1299495943000","name":"Sung-hyuk Moon","type":"Person","_key":"9786"} +{"label":"Jee-ah Park","version":15,"id":"16290","lastModified":"1299498270000","name":"Jee-ah Park","type":"Person","_key":"9787"} +{"label":"Jae-yong Jang","version":15,"id":"16291","lastModified":"1299496934000","name":"Jae-yong Jang","type":"Person","_key":"9788"} +{"label":"Dah-hae Lee","version":15,"id":"16292","lastModified":"1299498270000","name":"Dah-hae Lee","type":"Person","_key":"9789"} +{"label":"Bean","description":"Bean works as a caretaker at Britain's formidable Royal National Gallery, and his bosses want to fire him because he sleeps at work all the time, but can't because the chairman of the gallery's board defends him. They send him to USA, to the small Los Angeles art gallery instead, where he'll have to officiate at the opening of the greatest US picture ever (called \"Whistler's Mother\").","id":"1281","runtime":90,"imdbId":"tt0118689","trailer":"http:\/\/www.youtube.com\/watch?v=-jCq13TtzRY","version":128,"lastModified":"1299977237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be7\/4bc90fe1017a3c57fe005be7\/bean-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Comedy","title":"Bean","releaseDate":867888000000,"language":"en","type":"Movie","_key":"9790"} +{"label":"Mel Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20e\/4cd3f45f5e73d6734900020e\/mel-smith-profile.jpg","version":40,"id":"141450","lastModified":"1299493553000","name":"Mel Smith","type":"Person","_key":"9791"} +{"label":"Burt Reynolds","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4c34bdac7b9aa17d3f000027\/burt-reynolds-profile.jpg","version":119,"id":"16475","lastModified":"1299926684000","name":"Burt Reynolds","type":"Person","_key":"9792"} +{"label":"Larry Drake","version":33,"id":"16476","lastModified":"1299494336000","name":"Larry Drake","type":"Person","_key":"9793"} +{"label":"Danny Goldring","version":17,"id":"16477","lastModified":"1299494236000","name":"Danny Goldring","type":"Person","_key":"9794"} +{"label":"Johnny Galecki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd1\/4cf924735e73d62999001fd1\/johnny-galecki-profile.jpg","version":45,"id":"16478","lastModified":"1299879936000","name":"Johnny Galecki","type":"Person","_key":"9795"} +{"label":"Andrew Lawrence","biography":"Son of Donna and Joe Lawrence, Andrew Lawrence, affectionately called Andy, was born in Philadelphia, PA on the 12th of January, 1988. Starting show biz at age three, Andy Lawrence fits right into the family of stars that he was born into. Andy is loved by people everywhere for his charming smile, accurate impressions, good attitude, sweet countenance, and many more talents.","version":20,"id":"16479","lastModified":"1299495700000","name":"Andrew Lawrence","type":"Person","_key":"9796"} +{"label":"Peter Egan","version":37,"id":"16480","lastModified":"1299492781000","name":"Peter Egan","type":"Person","_key":"9797"} +{"label":"June Brown","version":15,"id":"16481","lastModified":"1299495621000","name":"June Brown","type":"Person","_key":"9798"} +{"label":"Peter James","version":20,"id":"16482","lastModified":"1299496015000","name":"Peter James","type":"Person","_key":"9799"} +{"label":"Dogtown and Z-Boys","description":"Dog Town and Z-Boys follows the evolution of skateboarding from the 60's and into the late 70's as skateboarding's california beach boy image is transformed into a low-riding surf oriented style. Dog Town is a documentary of the group of surfers in Venice Beach, California and how flat waves and a need for something more extreme lead to the verticle era of the sport.","id":"1282","runtime":91,"imdbId":"tt0275309","homepage":"http:\/\/www.sonypictures.com\/classics\/dogtown\/","version":129,"lastModified":"1299910534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf5\/4bc90fe2017a3c57fe005bf5\/dogtown-and-z-boys-mid.jpg","studio":"Agi Orsi Productions","genre":"Documentary","title":"Dogtown and Z-Boys","releaseDate":979862400000,"language":"en","type":"Movie","_key":"9800"} +{"label":"Jay Adams","version":16,"id":"29900","lastModified":"1299497606000","name":"Jay Adams","type":"Person","_key":"9801"} +{"label":"Torrente - El Brazo Tonto de la Ley","description":"Torrente, The Stupid Arm of The Law by Santiago Segura stars Javier C\u00e1mara as a corrupt, poor, delusional, sexist, egocentric, drunk and right-winged Madrid cop named Torrente. This over the top comedy shows Torrente on his search for heroin drug dealers and the outrageous characters he passes on his way. A cult film and one of the funniest Spanish films was the most successful box-office film.","id":"1283","runtime":97,"imdbId":"tt0120868","version":64,"lastModified":"1299531912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c05\/4c66db585e73d6345f000c05\/torrente-el-brazo-tonto-de-la-ley-mid.jpg","studio":"V\u00eda Digital","genre":"Comedy","title":"Torrente - El Brazo Tonto de la Ley","releaseDate":889747200000,"language":"en","type":"Movie","_key":"9802"} +{"label":"Santiago Segura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b2\/4c878df65e73d66b5e0002b2\/santiago-segura-profile.jpg","version":44,"id":"10847","lastModified":"1299496617000","name":"Santiago Segura","type":"Person","_key":"9803"} +{"label":"Misi\u00f3n en Marbella","description":"For this second film in the cult comedy series Torrente takes our fat police officer from Madrid to Marbella in Spain to investigate a villain\u2019s plot to destroy the city with a missile. This James Bond style slapstick comedy became the most successful box-office film in Spanish film history beating out only the first Torrente film.","id":"1284","runtime":99,"imdbId":"tt0257231","version":47,"lastModified":"1299531996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2aa\/4c878d725e73d66b5e0002aa\/mision-en-marbella-mid.jpg","studio":"Amiguetes Entertainment S.L.","genre":"Comedy","title":"Misi\u00f3n en Marbella","releaseDate":985910400000,"language":"en","type":"Movie","_key":"9804"} +{"label":"Gabino Diego","version":21,"id":"23215","lastModified":"1299499267000","name":"Gabino Diego","type":"Person","_key":"9805"} +{"label":"Tony Leblanc","version":16,"id":"12089","lastModified":"1299497774000","name":"Tony Leblanc","type":"Person","_key":"9806"} +{"label":"Jos\u00e9 Luis Moreno","version":16,"id":"23216","lastModified":"1299501556000","name":"Jos\u00e9 Luis Moreno","type":"Person","_key":"9807"} +{"label":"Torrente 3 - El protector","description":"El protector is the third Torrente film from director Santiago Segura. The adventures continue for Torrente, the corrupt, poor, delusional, sexist, egocentric, drunk and right-winged Madrid cop.","id":"1285","runtime":91,"imdbId":"tt0444505","version":64,"lastModified":"1299806709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4c878cad5e73d66b5e0002a1\/torrente-3-el-protector-mid.jpg","studio":"Amiguetes Entertainment S.L.","genre":"Comedy","title":"Torrente 3 - El protector","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"9808"} +{"label":"Yvonne Sci\u00f2","version":15,"id":"17163","lastModified":"1299496150000","name":"Yvonne Sci\u00f2","type":"Person","_key":"9809"} +{"label":"Javier Guti\u00e9rrez","version":20,"id":"19024","lastModified":"1299495363000","name":"Javier Guti\u00e9rrez","type":"Person","_key":"9810"} +{"label":"Jos\u00e9 Mota","version":16,"id":"19854","lastModified":"1299500746000","name":"Jos\u00e9 Mota","type":"Person","_key":"9811"} +{"label":"Fabio Testi","version":35,"id":"21181","lastModified":"1299493179000","name":"Fabio Testi","type":"Person","_key":"9812"} +{"label":"Jimmy Barnat\u00e1n","version":18,"id":"95607","lastModified":"1299497809000","name":"Jimmy Barnat\u00e1n","type":"Person","_key":"9813"} +{"label":"Vier Minuten","description":"Jenny is young. Her life is over. She killed someone. And she would do it again. When an 80-year-old piano teacher discovers the girl\u2019s secret, her brutality and her dreams, she decides to transform her pupil into the musical wunderkind she once was.","id":"1294","runtime":112,"imdbId":"tt0461694","version":62,"lastModified":"1299531997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c02\/4bc90fe3017a3c57fe005c02\/vier-minuten-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Drama","title":"Vier Minuten","releaseDate":1151020800000,"language":"en","type":"Movie","_key":"9814"} +{"label":"Chris Kraus","version":16,"id":"16780","lastModified":"1299494089000","name":"Chris Kraus","type":"Person","_key":"9815"} +{"label":"Monica Bleibtreu","version":38,"id":"16782","lastModified":"1299930280000","name":"Monica Bleibtreu","type":"Person","_key":"9816"} +{"label":"Hannah Herzsprung","version":36,"id":"16783","lastModified":"1299508052000","name":"Hannah Herzsprung","type":"Person","_key":"9817"} +{"label":"Sven Pippig","version":16,"id":"16784","lastModified":"1299494089000","name":"Sven Pippig","type":"Person","_key":"9818"} +{"label":"A Brief History of Time","description":"A documentary film based on the life of scientist Steven Hawking. The film explores the intimate life of Steven Hawking through him, his friends and his family, as he goes through school, is diagnosed with a degenerative disease, and discovers revolutionary theories about time, black holes, and the origin of the universe. A visually interesting and at times funny film about a extraordinary life. ","id":"1358","runtime":80,"imdbId":"tt0103882","version":51,"lastModified":"1299910824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c07\/4bc90fe3017a3c57fe005c07\/a-brief-history-of-time-mid.jpg","studio":"Anglia Television","genre":"Documentary","title":"A Brief History of Time","releaseDate":714355200000,"language":"en","type":"Movie","_key":"9819"} +{"label":"Errol Morris","version":28,"id":"18533","lastModified":"1299492972000","name":"Errol Morris","type":"Person","_key":"9820"} +{"label":"Stephen Hawking","version":25,"id":"39657","lastModified":"1299492940000","name":"Stephen Hawking","type":"Person","_key":"9821"} +{"label":"American Psycho","description":"A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.","id":"1359","runtime":101,"imdbId":"tt0144084","trailer":"http:\/\/www.youtube.com\/watch?v=119","version":298,"lastModified":"1300078303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21c\/4ce808477b9aa17c8f00021c\/american-psycho-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"American Psycho","releaseDate":955065600000,"language":"en","tagline":"I think my mask of sanity is about to slip.","type":"Movie","_key":"9822"} +{"label":"Mary Harron","version":18,"id":"16378","lastModified":"1299494710000","name":"Mary Harron","type":"Person","_key":"9823"} +{"label":"Bill Sage","version":36,"id":"32029","lastModified":"1299493617000","name":"Bill Sage","type":"Person","_key":"9824"} +{"label":"Samantha Mathis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4d22328b7b9aa1737300331e\/samantha-mathis-profile.jpg","version":67,"id":"20767","lastModified":"1299879976000","name":"Samantha Mathis","type":"Person","_key":"9825"} +{"label":"Guinevere Turner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/428\/4bf7d069017a3c7732000428\/guinevere-turner-profile.jpg","version":25,"id":"32030","lastModified":"1299492941000","name":"Guinevere Turner","type":"Person","_key":"9826"} +{"label":"Stephen Bogaert","version":18,"id":"32031","lastModified":"1299494711000","name":"Stephen Bogaert","type":"Person","_key":"9827"} +{"label":"Monika Meier","version":18,"id":"32032","lastModified":"1299494710000","name":"Monika Meier","type":"Person","_key":"9828"} +{"label":"Krista Sutton","version":18,"id":"32033","lastModified":"1299494709000","name":"Krista Sutton","type":"Person","_key":"9829"} +{"label":"Frida","description":"No overview found.","id":"1360","runtime":118,"imdbId":"tt0120679","version":135,"lastModified":"1300086977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c40\/4bc90feb017a3c57fe005c40\/frida-mid.jpg","studio":"Ventanarosa Productions","genre":"Drama","title":"Frida","releaseDate":1030579200000,"language":"en","type":"Movie","_key":"9830"} +{"label":"Julie Taymor","version":26,"id":"16391","lastModified":"1299493572000","name":"Julie Taymor","type":"Person","_key":"9831"} +{"label":"Patricia Reyes Sp\u00edndola","version":14,"id":"16406","lastModified":"1299494518000","name":"Patricia Reyes Sp\u00edndola","type":"Person","_key":"9832"} +{"label":"Roger Rees","version":39,"id":"16407","lastModified":"1299492711000","name":"Roger Rees","type":"Person","_key":"9833"} +{"label":"Margarita Sanz","version":14,"id":"16408","lastModified":"1299495206000","name":"Margarita Sanz","type":"Person","_key":"9834"} +{"label":"Omar Rodr\u00edguez","version":13,"id":"16409","lastModified":"1299496934000","name":"Omar Rodr\u00edguez","type":"Person","_key":"9835"} +{"label":"The Return of the King","description":"Two Hobbits struggle to destroy the Ring in Mount Doom while their friends desperately fight evil Lord Sauron's forces in a final battle.","id":"1361","runtime":98,"imdbId":"tt0079802","version":98,"lastModified":"1299910061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4d\/4bc90fee017a3c57fe005c4d\/the-return-of-the-king-mid.jpg","studio":"Rankin\/Bass Productions","genre":"Animation","title":"The Return of the King","releaseDate":326851200000,"language":"en","type":"Movie","_key":"9836"} +{"label":"Arthur Rankin Jr.","version":44,"id":"16411","lastModified":"1299909691000","name":"Arthur Rankin Jr.","type":"Person","_key":"9837"} +{"label":"Jules Bass","version":39,"id":"16410","lastModified":"1299909691000","name":"Jules Bass","type":"Person","_key":"9838"} +{"label":"William Conrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13c\/4bd5a6e0017a3c2e7d00013c\/william-conrad-profile.jpg","biography":"Conrad was born William Cann in Louisville, Kentucky, the son of a theatre-owner who moved to southern California, where he excelled at drama and literature while at school. Starting work in radio in the late 1930s in California, Conrad went on to serve as a fighter pilot in World War II. He entered the army in 1942, and was commissioned at Luke Field, Arizona in 1943 (now Luke Air Force Base). On the day of his commission he married June Nelson. He returned to the airwaves after the war, going","version":33,"birthday":"-1554598800000","id":"16412","birthplace":"Louisville, Kentucky","lastModified":"1299909582000","name":"William Conrad","type":"Person","_key":"9839"} +{"label":"Brother Theodore","version":26,"id":"16413","lastModified":"1299909691000","name":"Brother Theodore","type":"Person","_key":"9840"} +{"label":"Paul Frees","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/359\/4d20a7345e73d66b27002359\/paul-frees-profile.jpg","version":50,"id":"16417","lastModified":"1299909691000","name":"Paul Frees","type":"Person","_key":"9841"} +{"label":"Casey Kasem","version":36,"id":"16418","lastModified":"1299909582000","name":"Casey Kasem","type":"Person","_key":"9842"} +{"label":"Sonny Melendrez","version":14,"id":"16419","lastModified":"1299909582000","name":"Sonny Melendrez","type":"Person","_key":"9843"} +{"label":"Nellie Bellflower","version":21,"id":"12998","lastModified":"1299909582000","name":"Nellie Bellflower","type":"Person","_key":"9844"} +{"label":"The Hobbit","description":"Bilbo Baggins the Hobbit was just minding his own business, when his occasional visitor Gandalf the Wizard drops in one night. One by one, a whole group of dwarves drop in, and before he knows it, Bilbo has joined their quest to reclaim their kingdom, taken from them by the evil dragon Smaug. The only problem is that Gandalf has told the dwarves that Bilbo is an expert burglar, but he isn't...","id":"1362","runtime":77,"imdbId":"tt0077687","version":92,"lastModified":"1299909704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c56\/4bc90fee017a3c57fe005c56\/the-hobbit-mid.jpg","studio":"Rankin\/Bass Productions","genre":"Animation","title":"The Hobbit","releaseDate":249436800000,"language":"en","type":"Movie","_key":"9845"} +{"label":"Richard Boone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d6\/4be0370b017a3c35b70003d6\/richard-boone-profile.jpg","version":41,"id":"16420","lastModified":"1299927761000","name":"Richard Boone","type":"Person","_key":"9846"} +{"label":"Hans Conried","version":35,"id":"16421","lastModified":"1299909691000","name":"Hans Conried","type":"Person","_key":"9847"} +{"label":"Don Messick","version":29,"id":"16422","lastModified":"1299909691000","name":"Don Messick","type":"Person","_key":"9848"} +{"label":"The Hi-Lo Country","description":"An intimate story of the enduring bond of friendship between two hard-living men, set against a sweeping backdrop: the American West, post-World War II, in its twilight. Pete and Big Boy are masters of the prairie, but ultimately face trickier terrain: the human heart.","id":"1363","runtime":114,"imdbId":"tt0120699","version":106,"lastModified":"1299909664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/290\/4cb0f07a5e73d65b86000290\/the-hi-lo-country-mid.jpg","studio":"Working Title Films","genre":"Western","title":"The Hi-Lo Country","releaseDate":914976000000,"language":"en","tagline":"A woman like Mona can drive men to extremes.","type":"Movie","_key":"9849"} +{"label":"Enrique Castillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4d533cb07b9aa13aaf012448\/enrique-castillo-profile.jpg","biography":"<p>Castillo was a founding member of The <a href=\"http:\/\/en.wikipedia.org\/wiki\/Latino_Theater_Company\" title=\"Latino Theater Company\">Latino Theater Company<\/a>. He co-wrote the company\u2019s plays <i>Stone Wedding<\/i> and <i>August 29<\/i>. In addition to the plays, he wrote and directed the film <i>The History of The Latino Theater Company<\/i>, a documentary chronicling the theater company, and co-produced the company\u2019s annual comedy fundraiser <i>Noche de Risa y Susto<\/i>.<\/p>\n<p>In 1997 Castillo ","version":36,"id":"16427","lastModified":"1299493611000","name":"Enrique Castillo","type":"Person","_key":"9850"} +{"label":"Darren E. Burrows","version":16,"id":"16428","lastModified":"1299500384000","name":"Darren E. Burrows","type":"Person","_key":"9851"} +{"label":"Jacob Vargas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/384\/4c4391f35e73d60f3b000384\/jacob-vargas-profile.jpg","version":54,"id":"16429","lastModified":"1299958408000","name":"Jacob Vargas","type":"Person","_key":"9852"} +{"label":"Robert Knott","version":21,"id":"16430","lastModified":"1299494198000","name":"Robert Knott","type":"Person","_key":"9853"} +{"label":"Sam Elliott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4c40be5a5e73d60f3800003f\/sam-elliott-profile.jpg","version":107,"id":"16431","lastModified":"1300058453000","name":"Sam Elliott","type":"Person","_key":"9854"} +{"label":"Craig Carter","version":14,"id":"16432","lastModified":"1299501627000","name":"Craig Carter","type":"Person","_key":"9855"} +{"label":"James Gammon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/271\/4cef3ec35e73d6625a000271\/james-gammon-profile.jpg","version":44,"birthday":"-937274400000","id":"16433","birthplace":"Newman, Illinois, USA","lastModified":"1299494952000","name":"James Gammon","type":"Person","_key":"9856"} +{"label":"Kate Williamson","version":13,"id":"16434","lastModified":"1299500384000","name":"Kate Williamson","type":"Person","_key":"9857"} +{"label":"Sex and Lucia","description":"Various lives converge on an isolated island, all connected by an author whose novel has become inextricably entwined with his own life.","id":"1364","runtime":128,"imdbId":"tt0254455","version":146,"lastModified":"1299975378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c70\/4bc90ff2017a3c57fe005c70\/lucia-y-el-sexo-mid.jpg","studio":"Sogecine","genre":"Drama","title":"Sex and Lucia","releaseDate":998611200000,"language":"en","type":"Movie","_key":"9858"} +{"label":"Julio Medem","version":63,"id":"16435","lastModified":"1299958674000","name":"Julio Medem","type":"Person","_key":"9859"} +{"label":"Trist\u00e1n Ulloa","version":36,"birthday":"1304632800000","id":"16441","lastModified":"1299872635000","name":"Trist\u00e1n Ulloa","type":"Person","_key":"9860"} +{"label":"Najwa Nimri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab0\/4cfb58967b9aa15c97001ab0\/najwa-nimri-profile.jpg","version":34,"id":"16442","lastModified":"1299493053000","name":"Najwa Nimri","type":"Person","_key":"9861"} +{"label":"Daniel Freire","version":20,"id":"16443","lastModified":"1299494631000","name":"Daniel Freire","type":"Person","_key":"9862"} +{"label":"Silvia Llanos","version":20,"id":"16444","lastModified":"1299500383000","name":"Silvia Llanos","type":"Person","_key":"9863"} +{"label":"Diana Su\u00e1rez","version":22,"id":"16445","lastModified":"1299500383000","name":"Diana Su\u00e1rez","type":"Person","_key":"9864"} +{"label":"Monster's Ball","description":"Set in the Southern United States, 'Monster's Ball' is a tale of a racist white man, Hank, who falls in love with a black woman named Leticia. Ironically Hank is a prison guard working on Death Row who executed Leticia's husband. Hank and Leticia's interracial affair leads to confusion and new ideas for the two unlikely lovers.","id":"1365","runtime":111,"imdbId":"tt0285742","version":150,"lastModified":"1300086179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c79\/4bc90ff3017a3c57fe005c79\/monster-s-ball-mid.jpg","studio":"Lee Daniels Entertainment","genre":"Drama","title":"Monster's Ball","releaseDate":1005436800000,"language":"en","type":"Movie","_key":"9865"} +{"label":"Sean 'P. Diddy' Combs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c16966e7b9aa108d40000b7\/p-diddy-profile.jpg","version":37,"id":"16450","lastModified":"1299493010000","name":"Sean 'P. Diddy' Combs","type":"Person","_key":"9866"} +{"label":"Coronji Calhoun","version":14,"id":"16451","lastModified":"1299494964000","name":"Coronji Calhoun","type":"Person","_key":"9867"} +{"label":"Taylor Simpson","version":13,"id":"16452","lastModified":"1299494227000","name":"Taylor Simpson","type":"Person","_key":"9868"} +{"label":"Gabrielle Witcher","version":13,"id":"16453","lastModified":"1299495254000","name":"Gabrielle Witcher","type":"Person","_key":"9869"} +{"label":"Amber Rules","version":13,"id":"16454","lastModified":"1299494227000","name":"Amber Rules","type":"Person","_key":"9870"} +{"label":"Taylor LaGrange","version":13,"id":"16455","lastModified":"1299494227000","name":"Taylor LaGrange","type":"Person","_key":"9871"} +{"label":"Charles Cowan Jr.","version":13,"id":"16456","lastModified":"1299494227000","name":"Charles Cowan Jr.","type":"Person","_key":"9872"} +{"label":"Anthony Bean","version":13,"id":"16457","lastModified":"1299494663000","name":"Anthony Bean","type":"Person","_key":"9873"} +{"label":"Francine Segal","version":13,"id":"16458","lastModified":"1299494226000","name":"Francine Segal","type":"Person","_key":"9874"} +{"label":"John McConnell","version":22,"id":"16459","lastModified":"1299515457000","name":"John McConnell","type":"Person","_key":"9875"} +{"label":"Marcus Lyle Brown","version":17,"id":"16460","lastModified":"1299515457000","name":"Marcus Lyle Brown","type":"Person","_key":"9876"} +{"label":"Milo Addica","version":16,"id":"16447","lastModified":"1299515458000","name":"Milo Addica","type":"Person","_key":"9877"} +{"label":"Rocky","description":"A small time boxer gets a once in a lifetime chance to fight the heavyweight champ in a bout in which he strives to go the distance for his self-respect.","id":"1366","runtime":119,"imdbId":"tt0075148","trailer":"http:\/\/www.youtube.com\/watch?v=A7YmojUJagk","homepage":"http:\/\/rockythemovie.com\/","version":176,"lastModified":"1299910799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4d79b87c5e73d6282a00031d\/rocky-mid.jpg","studio":"Chartoff-Winkler Productions","genre":"Action","title":"Rocky","releaseDate":217382400000,"language":"en","tagline":"His whole life was a million-to-one shot.","type":"Movie","_key":"9878"} +{"label":"John G. Avildsen","version":75,"id":"16513","lastModified":"1299492715000","name":"John G. Avildsen","type":"Person","_key":"9879"} +{"label":"Burgess Meredith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/728\/4be2c250017a3c35b5000728\/burgess-meredith-profile.jpg","version":107,"id":"16523","lastModified":"1300041450000","name":"Burgess Meredith","type":"Person","_key":"9880"} +{"label":"Thayer David","version":23,"id":"16524","lastModified":"1299533357000","name":"Thayer David","type":"Person","_key":"9881"} +{"label":"Joe Spinell","version":42,"id":"16525","lastModified":"1299515458000","name":"Joe Spinell","type":"Person","_key":"9882"} +{"label":"Jimmy Gambina","version":26,"id":"16526","lastModified":"1299495319000","name":"Jimmy Gambina","type":"Person","_key":"9883"} +{"label":"Bill Baldwin","version":31,"id":"16527","lastModified":"1299494131000","name":"Bill Baldwin","type":"Person","_key":"9884"} +{"label":"Al Silvani","version":26,"id":"16528","lastModified":"1299494277000","name":"Al Silvani","type":"Person","_key":"9885"} +{"label":"Jodi Letizia","version":20,"id":"16529","lastModified":"1299495617000","name":"Jodi Letizia","type":"Person","_key":"9886"} +{"label":"Diana Lewis","version":20,"id":"16530","lastModified":"1299497111000","name":"Diana Lewis","type":"Person","_key":"9887"} +{"label":"George O'Hanlon","version":22,"id":"16531","lastModified":"1299495322000","name":"George O'Hanlon","type":"Person","_key":"9888"} +{"label":"Larry Carroll","version":19,"id":"16532","lastModified":"1299497110000","name":"Larry Carroll","type":"Person","_key":"9889"} +{"label":"Rocky II","description":"Rocky struggles in family life after his bout with Apollo Creed, while the embarrassed champ insistently goads him to accept a challenge for a rematch.","id":"1367","runtime":119,"imdbId":"tt0079817","trailer":"http:\/\/www.youtube.com\/watch?v=pVYs3xeVuW0","version":137,"lastModified":"1299911917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21a\/4d76b7367b9aa15c7400021a\/rocky-ii-mid.jpg","studio":"United Artists","genre":"Action","title":"Rocky II","releaseDate":298252800000,"language":"en","tagline":"Once he fought for a dream. Now he's fighting for love!","type":"Movie","_key":"9890"} +{"label":"Leonard Gaines","version":22,"id":"16540","lastModified":"1299497554000","name":"Leonard Gaines","type":"Person","_key":"9891"} +{"label":"Sylvia Meals","version":21,"id":"16541","lastModified":"1299497060000","name":"Sylvia Meals","type":"Person","_key":"9892"} +{"label":"John Pleshette","version":26,"id":"16542","lastModified":"1299494964000","name":"John Pleshette","type":"Person","_key":"9893"} +{"label":"Stu Nahan","version":27,"id":"16543","lastModified":"1299493595000","name":"Stu Nahan","type":"Person","_key":"9894"} +{"label":"First Blood","description":"When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.","id":"1368","runtime":97,"imdbId":"tt0083944","trailer":"http:\/\/www.youtube.com\/watch?v=rjptQSfuTy8","version":242,"lastModified":"1300085646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4c7604055e73d604150000bb\/first-blood-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"First Blood","releaseDate":404092800000,"language":"en","tagline":"One war against one man.","type":"Movie","_key":"9895"} +{"label":"Ted Kotcheff","version":49,"id":"16544","lastModified":"1299492203000","name":"Ted Kotcheff","type":"Person","_key":"9896"} +{"label":"Richard Crenna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/335\/4c62b18a7b9aa1775a000335\/richard-crenna-profile.jpg","version":101,"id":"16554","lastModified":"1299491300000","name":"Richard Crenna","type":"Person","_key":"9897"} +{"label":"Bill McKinney","version":40,"id":"16555","lastModified":"1299492239000","name":"Bill McKinney","type":"Person","_key":"9898"} +{"label":"Jack Starrett","version":31,"id":"16556","lastModified":"1299494765000","name":"Jack Starrett","type":"Person","_key":"9899"} +{"label":"Michael Talbott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4ceec6cc5e73d654fa00012b\/michael-talbott-profile.jpg","version":34,"id":"16557","lastModified":"1299612318000","name":"Michael Talbott","type":"Person","_key":"9900"} +{"label":"Chris Mulkey","version":43,"id":"15824","lastModified":"1299926960000","name":"Chris Mulkey","type":"Person","_key":"9901"} +{"label":"John McLiam","version":28,"id":"16558","lastModified":"1299494557000","name":"John McLiam","type":"Person","_key":"9902"} +{"label":"Alf Humphreys","version":29,"id":"16559","lastModified":"1299493792000","name":"Alf Humphreys","type":"Person","_key":"9903"} +{"label":"David Caruso","version":49,"id":"16560","lastModified":"1299494359000","name":"David Caruso","type":"Person","_key":"9904"} +{"label":"David L. Crowley","version":27,"id":"16561","lastModified":"1299764429000","name":"David L. Crowley","type":"Person","_key":"9905"} +{"label":"Don MacKay","version":30,"id":"16562","lastModified":"1299494016000","name":"Don MacKay","type":"Person","_key":"9906"} +{"label":"Charles A. Tamburro","version":25,"id":"16563","lastModified":"1299495204000","name":"Charles A. Tamburro","type":"Person","_key":"9907"} +{"label":"David Petersen","version":26,"id":"16564","lastModified":"1299494198000","name":"David Petersen","type":"Person","_key":"9908"} +{"label":"Craig Huston","version":26,"id":"16565","lastModified":"1299495205000","name":"Craig Huston","type":"Person","_key":"9909"} +{"label":"Rambo: First Blood Part II","description":"Col. Troutman recruits ex-Green Beret John Rambo for a highly secret and dangerous mission. Teamed with freedom fighter Co Bao, Rambo goes deep into Vietnam to rescue POWs. Deserted by his own team, he's left in a hostile jungle to fight for his life, avenge the death of a woman and bring corrupt officials to justice.","id":"1369","runtime":94,"imdbId":"tt0089880","version":245,"lastModified":"1299911309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d00\/4bc91008017a3c57fe005d00\/rambo-first-blood-part-ii-mid.jpg","studio":"Anabasis N.V.","genre":"Action","title":"Rambo: First Blood Part II","releaseDate":485568000000,"language":"en","tagline":"What most people call hell, he calls home.","type":"Movie","_key":"9910"} +{"label":"George P. Cosmatos","version":43,"id":"16566","lastModified":"1299494801000","name":"George P. Cosmatos","type":"Person","_key":"9911"} +{"label":"Julia Nickson","version":33,"id":"16578","lastModified":"1299494889000","name":"Julia Nickson","type":"Person","_key":"9912"} +{"label":"George Cheung","version":26,"id":"16580","lastModified":"1299496171000","name":"George Cheung","type":"Person","_key":"9913"} +{"label":"Andy Wood","version":24,"id":"16581","lastModified":"1299495993000","name":"Andy Wood","type":"Person","_key":"9914"} +{"label":"William Ghent","version":24,"id":"16582","lastModified":"1299494662000","name":"William Ghent","type":"Person","_key":"9915"} +{"label":"Voyo Goric","version":24,"id":"16583","lastModified":"1299496991000","name":"Voyo Goric","type":"Person","_key":"9916"} +{"label":"Dana Lee","version":30,"id":"16584","lastModified":"1299493583000","name":"Dana Lee","type":"Person","_key":"9917"} +{"label":"Baoan Coleman","version":25,"id":"16585","lastModified":"1299494459000","name":"Baoan Coleman","type":"Person","_key":"9918"} +{"label":"Steve Williams","version":25,"id":"16586","lastModified":"1299494226000","name":"Steve Williams","type":"Person","_key":"9919"} +{"label":"Don Collins","version":24,"id":"16587","lastModified":"1299495254000","name":"Don Collins","type":"Person","_key":"9920"} +{"label":"Christopher Grant","version":24,"id":"16588","lastModified":"1299495992000","name":"Christopher Grant","type":"Person","_key":"9921"} +{"label":"Martin Kove","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/060\/4bf84716017a3c4901000060\/martin-kove-profile.jpg","version":61,"id":"56117","lastModified":"1299492316000","name":"Martin Kove","type":"Person","_key":"9922"} +{"label":"Rambo III","description":"Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.","id":"1370","runtime":101,"imdbId":"tt0095956","trailer":"http:\/\/www.youtube.com\/watch?v=ETP9kw4JPwo","version":185,"lastModified":"1300085333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d12\/4bc9100a017a3c57fe005d12\/rambo-iii-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Rambo III","releaseDate":580521600000,"language":"en","tagline":"The first was for himself. The second for his country. This time it's to save his friend.","type":"Movie","_key":"9923"} +{"label":"Peter MacDonald","version":40,"id":"16589","lastModified":"1299493642000","name":"Peter MacDonald","type":"Person","_key":"9924"} +{"label":"Marc de Jonge","version":23,"id":"16603","lastModified":"1299494254000","name":"Marc de Jonge","type":"Person","_key":"9925"} +{"label":"Sasson Gabai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d4\/4ca24cc15e73d612f80003d4\/sasson-gabai-profile.jpg","version":29,"id":"16604","lastModified":"1299493407000","name":"Sasson Gabai","type":"Person","_key":"9926"} +{"label":"Doudi Shoua","version":21,"id":"16605","lastModified":"1299495289000","name":"Doudi Shoua","type":"Person","_key":"9927"} +{"label":"Randy Raney","version":21,"id":"16606","lastModified":"1299497061000","name":"Randy Raney","type":"Person","_key":"9928"} +{"label":"Alon Aboutboul","version":23,"id":"16607","lastModified":"1299493728000","name":"Alon Aboutboul","type":"Person","_key":"9929"} +{"label":"Mahmoud Assadollahi","version":21,"id":"16608","lastModified":"1299497061000","name":"Mahmoud Assadollahi","type":"Person","_key":"9930"} +{"label":"Joseph Shiloach","version":25,"id":"16609","lastModified":"1299497613000","name":"Joseph Shiloach","type":"Person","_key":"9931"} +{"label":"Harold Diamond","version":21,"id":"16610","lastModified":"1299495288000","name":"Harold Diamond","type":"Person","_key":"9932"} +{"label":"Matti Seri","version":22,"id":"16611","lastModified":"1299494922000","name":"Matti Seri","type":"Person","_key":"9933"} +{"label":"Shaby Ben-Aroya","version":22,"id":"16612","lastModified":"1299494437000","name":"Shaby Ben-Aroya","type":"Person","_key":"9934"} +{"label":"Rocky III","description":"When Rocky is defeated by a brutal challenger, Apollo Creed offers to retrain him in order to regain his fighting spirit.","id":"1371","runtime":99,"imdbId":"tt0084602","trailer":"http:\/\/www.youtube.com\/watch?v=q4FhoXt8lFk","version":146,"lastModified":"1299911282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/208\/4d76b8aa7b9aa15c85000208\/rocky-iii-mid.jpg","studio":"Chartoff-Winkler Productions","genre":"Action","title":"Rocky III","releaseDate":391392000000,"language":"en","type":"Movie","_key":"9935"} +{"label":"Hulk Hogan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4d57981a7b9aa15d010030db\/hulk-hogan-profile.jpg","biography":"Terry Gene Bollea (born August 11, 1953), better known by his ring name Hulk Hogan, is a professional wrestler currently signed to Total Nonstop Action Wrestling.\r\n\r\nHulk Hogan's crossover popularity led to several television and movie roles. Early in his career Bollea played the part of Thunderlips in Rocky III (1982). He also appeared in No Holds Barred (1989), before starring in the family films Suburban Commando (1991), Mr. Nanny (1993), Santa with Muscles (1996), and 3 Ninjas: High Noon at ","version":62,"birthday":"-517280400000","id":"16620","birthplace":"Augusta","lastModified":"1299492562000","name":"Hulk Hogan","type":"Person","_key":"9936"} +{"label":"Ian Fried","version":18,"id":"16621","lastModified":"1299495289000","name":"Ian Fried","type":"Person","_key":"9937"} +{"label":"Jim Hill","version":18,"id":"16622","lastModified":"1299494698000","name":"Jim Hill","type":"Person","_key":"9938"} +{"label":"Don Sherman","version":19,"id":"16623","lastModified":"1299495655000","name":"Don Sherman","type":"Person","_key":"9939"} +{"label":"Dennis James","version":18,"id":"16624","lastModified":"1299496040000","name":"Dennis James","type":"Person","_key":"9940"} +{"label":"Jim Healy","version":17,"id":"16625","lastModified":"1299515461000","name":"Jim Healy","type":"Person","_key":"9941"} +{"label":"Blood Diamond","description":"An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.","id":"1372","runtime":143,"imdbId":"tt0450259","trailer":"http:\/\/www.youtube.com\/watch?v=YG_a8lw512A","homepage":"http:\/\/blooddiamondmovie.warnerbros.com\/","version":319,"lastModified":"1299973913000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6e\/4bc9101a017a3c57fe005d6e\/blood-diamond-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Blood Diamond","releaseDate":1165536000000,"language":"en","tagline":"It Will Cost You Everything","type":"Movie","_key":"9942"} +{"label":"Kagiso Kuypers","version":18,"id":"16742","lastModified":"1299492072000","name":"Kagiso Kuypers","type":"Person","_key":"9943"} +{"label":"Antony Coleman","version":18,"id":"16744","lastModified":"1299492138000","name":"Antony Coleman","type":"Person","_key":"9944"} +{"label":"Benu Mabhena","version":18,"id":"16746","lastModified":"1299492516000","name":"Benu Mabhena","type":"Person","_key":"9945"} +{"label":"Anointing Lukola","version":18,"id":"16749","lastModified":"1299492302000","name":"Anointing Lukola","type":"Person","_key":"9946"} +{"label":"David Harewood","version":23,"id":"16752","lastModified":"1299492646000","name":"David Harewood","type":"Person","_key":"9947"} +{"label":"Basil Wallace","version":25,"id":"16754","lastModified":"1299491943000","name":"Basil Wallace","type":"Person","_key":"9948"} +{"label":"Jimi Mistry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f6\/4ce021af7b9aa168b00000f6\/jimi-mistry-profile.jpg","version":49,"id":"16756","lastModified":"1299947012000","name":"Jimi Mistry","type":"Person","_key":"9949"} +{"label":"Marius Weyers","version":23,"id":"16758","lastModified":"1299492495000","name":"Marius Weyers","type":"Person","_key":"9950"} +{"label":"Ntare Mwine","version":19,"id":"16760","lastModified":"1299492570000","name":"Ntare Mwine","type":"Person","_key":"9951"} +{"label":"The Discovery of Heaven","description":"No overview found.","id":"1373","runtime":150,"imdbId":"tt0251052","homepage":"http:\/\/www.thediscoveryofheaven.nl\/","version":111,"lastModified":"1299973727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39e\/4c80038a7b9aa10d9600039e\/the-discovery-of-heaven-mid.jpg","studio":"Kanzaman S.A.","genre":"Drama","title":"The Discovery of Heaven","releaseDate":1001894400000,"language":"en","type":"Movie","_key":"9952"} +{"label":"Neil Newbon","version":16,"id":"16690","lastModified":"1299493620000","name":"Neil Newbon","type":"Person","_key":"9953"} +{"label":"Dimitris Philippou","version":12,"id":"16691","lastModified":"1299494631000","name":"Dimitris Philippou","type":"Person","_key":"9954"} +{"label":"Viv Weatherall","version":12,"id":"16692","lastModified":"1299495205000","name":"Viv Weatherall","type":"Person","_key":"9955"} +{"label":"Gillian Barge","version":12,"id":"16693","lastModified":"1299500381000","name":"Gillian Barge","type":"Person","_key":"9956"} +{"label":"Nettie Blanken","version":18,"id":"16694","lastModified":"1299497777000","name":"Nettie Blanken","type":"Person","_key":"9957"} +{"label":"Victoria Carling","version":12,"id":"16695","lastModified":"1299500380000","name":"Victoria Carling","type":"Person","_key":"9958"} +{"label":"Lois de Jong","version":13,"id":"16696","lastModified":"1299498268000","name":"Lois de Jong","type":"Person","_key":"9959"} +{"label":"John Franklyn-Robbins","version":14,"id":"16697","lastModified":"1299498643000","name":"John Franklyn-Robbins","type":"Person","_key":"9960"} +{"label":"Geraldine Alexander","version":13,"id":"16698","lastModified":"1299699984000","name":"Geraldine Alexander","type":"Person","_key":"9961"} +{"label":"Nicholas Palliser","version":12,"id":"16699","lastModified":"1299500380000","name":"Nicholas Palliser","type":"Person","_key":"9962"} +{"label":"Greg Wise","version":23,"id":"16700","lastModified":"1299494024000","name":"Greg Wise","type":"Person","_key":"9963"} +{"label":"Emma Fielding","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac4\/4d6918435e73d66b30000ac4\/emma-fielding-profile.jpg","version":16,"id":"16701","lastModified":"1299500379000","name":"Emma Fielding","type":"Person","_key":"9964"} +{"label":"Sean Harris","version":25,"id":"16702","lastModified":"1299494050000","name":"Sean Harris","type":"Person","_key":"9965"} +{"label":"Rocky IV","description":"When Apollo Creed is killed in a match against a powerful Soviet boxer, Rocky decides to challenge him himself.","id":"1374","runtime":91,"imdbId":"tt0089927","trailer":"http:\/\/www.youtube.com\/watch?v=RrbeDEcgWYs","version":156,"lastModified":"1299910223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4d76b93d7b9aa15c77000240\/rocky-iv-mid.jpg","studio":"Chartoff-Winkler Productions","genre":"Action","title":"Rocky IV","releaseDate":501379200000,"language":"en","tagline":"He's facing the ultimate challenge. And fighting for his life.","type":"Movie","_key":"9966"} +{"label":"Michael Pataki","version":33,"id":"15993","lastModified":"1299494007000","name":"Michael Pataki","type":"Person","_key":"9967"} +{"label":"Dolph Lundgren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a40\/4c5df2787b9aa151f4000a40\/dolph-lundgren-profile.jpg","biography":"Dolph Lundgren (born Hans Dolph Lundgren; 3 November 1957) is a Swedish actor, director, and martial artist.<br><br>Well known for his tall stature and level of fitness, at peak, Lundgren stood at 196 centimetres (6 ft 5 in) and weighed 111.5 kilograms (245 lb 13 oz). He belongs to a generation of film actors who epitomise the movie action hero stereotype including Sylvester Stallone, Arnold Schwarzenegger, Steven Seagal, and Jean-Claude Van Damme, some of whom he has worked with in his career.<","version":115,"birthday":"-383792400000","id":"16644","birthplace":"Stockholm, Sweden","lastModified":"1299923516000","name":"Dolph Lundgren","type":"Person","_key":"9968"} +{"label":"R.J. Adams","version":17,"id":"16645","lastModified":"1299494699000","name":"R.J. Adams","type":"Person","_key":"9969"} +{"label":"Al Bandiero","version":17,"id":"16646","lastModified":"1299494698000","name":"Al Bandiero","type":"Person","_key":"9970"} +{"label":"Dominic Barto","version":20,"id":"16647","lastModified":"1299493634000","name":"Dominic Barto","type":"Person","_key":"9971"} +{"label":"Danial Brown","version":17,"id":"16648","lastModified":"1299494698000","name":"Danial Brown","type":"Person","_key":"9972"} +{"label":"Rose Mary Campos","version":18,"id":"16649","lastModified":"1299493729000","name":"Rose Mary Campos","type":"Person","_key":"9973"} +{"label":"Rocky V","description":"Reluctantly retired from boxing and back from riches to rags, Rocky takes on a new protege who betrays him; As the champ's son must adjust to his family's new life after bankruptcy.","id":"1375","runtime":104,"imdbId":"tt0100507","trailer":"http:\/\/www.youtube.com\/watch?v=rTOSd-6-fxk","version":147,"lastModified":"1300084613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da4\/4bc91023017a3c57fe005da4\/rocky-v-mid.jpg","studio":"Chartoff-Winkler Productions","genre":"Action","title":"Rocky V","releaseDate":658713600000,"language":"en","type":"Movie","_key":"9974"} +{"label":"Sage Stallone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46a\/4d6a51df7b9aa1362500246a\/sage-stallone-profile.jpg","version":19,"id":"16660","lastModified":"1299495286000","name":"Sage Stallone","type":"Person","_key":"9975"} +{"label":"Tommy Morrison","version":18,"id":"16661","lastModified":"1299498455000","name":"Tommy Morrison","type":"Person","_key":"9976"} +{"label":"Richard Gant","version":33,"id":"16662","lastModified":"1299968242000","name":"Richard Gant","type":"Person","_key":"9977"} +{"label":"Delia Sheppard","version":24,"id":"16663","lastModified":"1299495033000","name":"Delia Sheppard","type":"Person","_key":"9978"} +{"label":"Mike Girard Sheehan","version":18,"id":"16664","lastModified":"1299498455000","name":"Mike Girard Sheehan","type":"Person","_key":"9979"} +{"label":"Michael Williams","version":21,"id":"16665","lastModified":"1299499279000","name":"Michael Williams","type":"Person","_key":"9980"} +{"label":"Kevin Connolly","version":31,"id":"16666","lastModified":"1299515458000","name":"Kevin Connolly","type":"Person","_key":"9981"} +{"label":"Elisebeth Peters","version":18,"id":"16667","lastModified":"1299497060000","name":"Elisebeth Peters","type":"Person","_key":"9982"} +{"label":"Hayes Swope","version":18,"id":"16668","lastModified":"1299496040000","name":"Hayes Swope","type":"Person","_key":"9983"} +{"label":"Nicky Blair","version":28,"id":"16669","lastModified":"1299493865000","name":"Nicky Blair","type":"Person","_key":"9984"} +{"label":"Sweet Sixteen","description":"No overview found.","id":"1376","runtime":106,"imdbId":"tt0313670","version":128,"lastModified":"1300084459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc1\/4bc91028017a3c57fe005dc1\/sweet-sixteen-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Sweet Sixteen","releaseDate":1021939200000,"language":"en","type":"Movie","_key":"9985"} +{"label":"Martin Compston","version":22,"id":"16628","lastModified":"1299492963000","name":"Martin Compston","type":"Person","_key":"9986"} +{"label":"Annmarie Fulton","version":14,"id":"16629","lastModified":"1299497604000","name":"Annmarie Fulton","type":"Person","_key":"9987"} +{"label":"Michelle Abercromby","version":14,"id":"16630","lastModified":"1299496475000","name":"Michelle Abercromby","type":"Person","_key":"9988"} +{"label":"Michelle Coulter","version":13,"id":"16631","lastModified":"1299496933000","name":"Michelle Coulter","type":"Person","_key":"9989"} +{"label":"Gary McCormack","version":22,"id":"16632","lastModified":"1299493125000","name":"Gary McCormack","type":"Person","_key":"9990"} +{"label":"Tommy McKee","version":13,"id":"16633","lastModified":"1299496933000","name":"Tommy McKee","type":"Person","_key":"9991"} +{"label":"Calum McAlees","version":13,"id":"16634","lastModified":"1299496933000","name":"Calum McAlees","type":"Person","_key":"9992"} +{"label":"Robert Rennie","version":13,"id":"16635","lastModified":"1299496933000","name":"Robert Rennie","type":"Person","_key":"9993"} +{"label":"Martin McCardie","version":13,"id":"16636","lastModified":"1299500379000","name":"Martin McCardie","type":"Person","_key":"9994"} +{"label":"Houseboat","description":"An Italian socialite on the run signs on as housekeeper for a widower with three children.","id":"1377","runtime":110,"imdbId":"tt0051745","version":111,"lastModified":"1299909492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/893\/4c706b425e73d65f7e000893\/houseboat-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Houseboat","releaseDate":-350870400000,"language":"en","type":"Movie","_key":"9995"} +{"label":"Melville Shavelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/455\/4bf7d0a9017a3c7726000455\/melville-shavelson-profile.jpg","version":27,"id":"16745","lastModified":"1299495470000","name":"Melville Shavelson","type":"Person","_key":"9996"} +{"label":"Sophia Loren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0de\/4bf87247017a3c490e0000de\/sophia-loren-profile.jpg","version":64,"id":"16757","lastModified":"1299492157000","name":"Sophia Loren","type":"Person","_key":"9997"} +{"label":"Martha Hyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/295\/4bf17990017a3c320b000295\/martha-hyer-profile.jpg","version":31,"id":"16759","lastModified":"1299493960000","name":"Martha Hyer","type":"Person","_key":"9998"} +{"label":"Eduardo Ciannelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4bcf2724017a3c63f3000014\/eduardo-ciannelli-profile.jpg","version":29,"id":"16761","lastModified":"1299494037000","name":"Eduardo Ciannelli","type":"Person","_key":"9999"} +{"label":"Mimi Gibson","version":14,"id":"16762","lastModified":"1299501589000","name":"Mimi Gibson","type":"Person","_key":"10000"} +{"label":"Paul Petersen","version":20,"id":"16763","lastModified":"1299497610000","name":"Paul Petersen","type":"Person","_key":"10001"} +{"label":"Charles Herbert","version":16,"id":"16764","lastModified":"1299497603000","name":"Charles Herbert","type":"Person","_key":"10002"} +{"label":"Madge Kennedy","version":15,"id":"16765","lastModified":"1299499290000","name":"Madge Kennedy","type":"Person","_key":"10003"} +{"label":"John Litel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a72\/4be44418017a3c35bd000a72\/john-litel-profile.jpg","version":43,"id":"16766","lastModified":"1299493425000","name":"John Litel","type":"Person","_key":"10004"} +{"label":"Shortbus","description":"A group of New Yorkers get caught up in their romantic-sexual milieu converge at an underground salon infamous for its blend of art, music, politics, and carnality","id":"1378","runtime":102,"imdbId":"tt0367027","trailer":"http:\/\/www.youtube.com\/watch?v=85","homepage":"http:\/\/www.shortbusthemovie.com","version":139,"lastModified":"1299972840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd2\/4bc9102c017a3c57fe005dd2\/shortbus-mid.jpg","studio":"Fortissimo Films","genre":"Drama","title":"Shortbus","releaseDate":1159920000000,"language":"en","type":"Movie","_key":"10005"} +{"label":"John Cameron Mitchell","version":41,"id":"17114","lastModified":"1299581236000","name":"John Cameron Mitchell","type":"Person","_key":"10006"} +{"label":"Sook-Yin Lee","version":13,"id":"19766","lastModified":"1299496611000","name":"Sook-Yin Lee","type":"Person","_key":"10007"} +{"label":"Paul Dawson","version":13,"id":"19764","lastModified":"1299515521000","name":"Paul Dawson","type":"Person","_key":"10008"} +{"label":"PJ DeBoy","version":12,"id":"19762","lastModified":"1299497087000","name":"PJ DeBoy","type":"Person","_key":"10009"} +{"label":"Jay Brannan","version":13,"id":"19760","lastModified":"1299494266000","name":"Jay Brannan","type":"Person","_key":"10010"} +{"label":"Lindsay Beamish","version":12,"id":"19761","lastModified":"1299498490000","name":"Lindsay Beamish","type":"Person","_key":"10011"} +{"label":"Raphael Barker","version":13,"id":"19763","lastModified":"1299497854000","name":"Raphael Barker","type":"Person","_key":"10012"} +{"label":"Peter Stickles","version":14,"id":"19765","lastModified":"1299515521000","name":"Peter Stickles","type":"Person","_key":"10013"} +{"label":"Ray Rivas","version":15,"id":"36540","lastModified":"1299497086000","name":"Ray Rivas","type":"Person","_key":"10014"} +{"label":"Bitch","version":16,"id":"36541","lastModified":"1299497465000","name":"Bitch","type":"Person","_key":"10015"} +{"label":"Shanti Carson","version":16,"id":"36542","lastModified":"1299497465000","name":"Shanti Carson","type":"Person","_key":"10016"} +{"label":"Justin Hagan","version":17,"id":"32599","lastModified":"1299497602000","name":"Justin Hagan","type":"Person","_key":"10017"} +{"label":"Miriam Shor","version":20,"id":"18273","lastModified":"1299581236000","name":"Miriam Shor","type":"Person","_key":"10018"} +{"label":"Bradford Scobie","version":15,"id":"36543","lastModified":"1299497087000","name":"Bradford Scobie","type":"Person","_key":"10019"} +{"label":"Reg Vermue","version":15,"id":"36544","lastModified":"1299497086000","name":"Reg Vermue","type":"Person","_key":"10020"} +{"label":"Adam Hardman","version":15,"id":"36545","lastModified":"1299497086000","name":"Adam Hardman","type":"Person","_key":"10021"} +{"label":"Alan Mandell","version":21,"id":"36546","lastModified":"1299669096000","name":"Alan Mandell","type":"Person","_key":"10022"} +{"label":"Jan Hilmer","version":15,"id":"36547","lastModified":"1299497086000","name":"Jan Hilmer","type":"Person","_key":"10023"} +{"label":"Stephen Kent Jusick","version":15,"id":"36548","lastModified":"1299496070000","name":"Stephen Kent Jusick","type":"Person","_key":"10024"} +{"label":"Yolonda Ross","version":15,"id":"36549","lastModified":"1299498490000","name":"Yolonda Ross","type":"Person","_key":"10025"} +{"label":"Jocelyn Samson","version":15,"id":"36550","lastModified":"1299497085000","name":"Jocelyn Samson","type":"Person","_key":"10026"} +{"label":"Daniela Sea","version":17,"id":"36551","lastModified":"1299498490000","name":"Daniela Sea","type":"Person","_key":"10027"} +{"label":"Rachael C. Smith","version":15,"id":"36552","lastModified":"1299497085000","name":"Rachael C. Smith","type":"Person","_key":"10028"} +{"label":"Derek Jackson","version":15,"id":"36553","lastModified":"1299497085000","name":"Derek Jackson","type":"Person","_key":"10029"} +{"label":"Jonathan Caouette","version":20,"id":"17108","lastModified":"1299495469000","name":"Jonathan Caouette","type":"Person","_key":"10030"} +{"label":"Mary Beth Peil","version":16,"id":"36554","lastModified":"1299498489000","name":"Mary Beth Peil","type":"Person","_key":"10031"} +{"label":"Tristan Taormino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e41\/4d3331485e73d63349001e41\/tristan-taormino-profile.jpg","version":50,"birthday":"42591600000","id":"36556","birthplace":"New York City, New York, USA","lastModified":"1299493508000","name":"Tristan Taormino","type":"Person","_key":"10032"} +{"label":"Justin Bond","version":15,"id":"36563","lastModified":"1299498489000","name":"Justin Bond","type":"Person","_key":"10033"} +{"label":"Laitakaupungin valot","description":"Koistenin is a sad sack, a man without affect or friends. He's a night-watchman in Helsinki with ideas of starting his own business, but nothing to go with those intentions. He sometimes talks a bit with a woman who runs a snack trailer near his work. Out of the blue, a young sophisticated blonde woman attaches herself to Koistenin. He thinks of her as his girlfriend, he takes her on her rounds.","id":"1379","runtime":78,"imdbId":"tt0458242","homepage":"http:\/\/lichter-der-vorstadt.pandorafilmverleih.de\/","version":79,"lastModified":"1299815743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddb\/4bc9102d017a3c57fe005ddb\/laitakaupungin-valot-mid.jpg","studio":"Sputnik Oy","genre":"Crime","title":"Laitakaupungin valot","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"10034"} +{"label":"Janne Hyyti\u00e4inen","version":15,"id":"16775","lastModified":"1299498268000","name":"Janne Hyyti\u00e4inen","type":"Person","_key":"10035"} +{"label":"Maria Heiskanen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab4\/4d2a30345e73d626c4003ab4\/maria-heiskanen-profile.jpg","version":18,"id":"16776","lastModified":"1299495368000","name":"Maria Heiskanen","type":"Person","_key":"10036"} +{"label":"Maria J\u00e4rvenhelmi","version":14,"id":"16777","lastModified":"1299495943000","name":"Maria J\u00e4rvenhelmi","type":"Person","_key":"10037"} +{"label":"Ilkka Koivula","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bf\/4c473e667b9aa15de20002bf\/ilkka-koivula-profile.jpg","version":18,"id":"16778","lastModified":"1299496681000","name":"Ilkka Koivula","type":"Person","_key":"10038"} +{"label":"Vesa H\u00e4kli","version":14,"id":"16779","lastModified":"1299500378000","name":"Vesa H\u00e4kli","type":"Person","_key":"10039"} +{"label":"Gleaming the Cube","description":"The cult classic 80\u2019s B-film where the slacker skateboarder gets off his but and cases down criminals. A skateboarding boy named Brian played by Christian Slater has a pretty normal life until his brother dies. The cops think it\u2019s a suicide yet he won\u2019t believe it and follows some Chinese guys he thinks did it when he gets into a lot of trouble and has to ride his skateboard to save the day.","id":"1380","runtime":109,"imdbId":"tt0097438","trailer":"http:\/\/www.youtube.com\/watch?v=yviIgIDxlwc","version":79,"lastModified":"1299911307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de8\/4bc9102e017a3c57fe005de8\/gleaming-the-cube-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Drama","title":"Gleaming the Cube","releaseDate":599616000000,"language":"en","type":"Movie","_key":"10040"} +{"label":"Tony Hawk","version":27,"id":"16832","lastModified":"1299668916000","name":"Tony Hawk","type":"Person","_key":"10041"} +{"label":"Rodney Mullen","version":16,"id":"16833","lastModified":"1299668916000","name":"Rodney Mullen","type":"Person","_key":"10042"} +{"label":"Graeme Clifford","version":29,"id":"13488","lastModified":"1299668916000","name":"Graeme Clifford","type":"Person","_key":"10043"} +{"label":"The Fountain","description":"A science fiction, fantasy film that follows three interwoven narratives that take place in the age of conquistadors, the modern day period, and the far future. Starring Hugh Jackman and Rachel Weisz, whose characters' romance exist in all time periods. The Fountain explores the themes of love and mortality with influence from Mayan mythology.","id":"1381","runtime":96,"imdbId":"tt0414993","homepage":"http:\/\/thefountainmovie.warnerbros.com\/","version":190,"lastModified":"1300083719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e15\/4bc91036017a3c57fe005e15\/the-fountain-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Fountain","releaseDate":1157328000000,"language":"en","type":"Movie","_key":"10044"} +{"label":"Fernando Hernandez","version":20,"id":"20194","lastModified":"1299494254000","name":"Fernando Hernandez","type":"Person","_key":"10045"} +{"label":"Lorne Brass","version":16,"id":"20195","lastModified":"1299498268000","name":"Lorne Brass","type":"Person","_key":"10046"} +{"label":"Me and You and Everyone We Know","description":"The feature film debut by artist Miranda July about a various comic situations and plots that intertwine. One story line is about a father who is ending his marriage and the other story is of a video artist (possibly autobiographical of Miranda July, also played by her) who is desperately trying to get her work in a modern art museum. The film won Cam\u00e9ra d'Or at Cannes.","id":"1382","runtime":90,"imdbId":"tt0415978","trailer":"http:\/\/www.youtube.com\/watch?v=170","homepage":"http:\/\/www.meandyoumovie.com\/","version":149,"lastModified":"1300083600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e31\/4bc9103a017a3c57fe005e31\/me-and-you-and-everyone-we-know-mid.jpg","studio":"FilmFour","genre":"Comedy","title":"Me and You and Everyone We Know","releaseDate":1118966400000,"language":"en","type":"Movie","_key":"10047"} +{"label":"Miranda July","version":20,"id":"16860","lastModified":"1299494932000","name":"Miranda July","type":"Person","_key":"10048"} +{"label":"Brandon Ratcliff","version":16,"id":"53887","lastModified":"1299495204000","name":"Brandon Ratcliff","type":"Person","_key":"10049"} +{"label":"Miles Thompson","version":16,"id":"53888","lastModified":"1299498268000","name":"Miles Thompson","type":"Person","_key":"10050"} +{"label":"Carlie Westerman","version":17,"id":"53889","lastModified":"1299502749000","name":"Carlie Westerman","type":"Person","_key":"10051"} +{"label":"Natasha Slayton","version":16,"id":"53890","lastModified":"1299505086000","name":"Natasha Slayton","type":"Person","_key":"10052"} +{"label":"Najarra Townsend","version":20,"id":"53891","lastModified":"1300046546000","name":"Najarra Townsend","type":"Person","_key":"10053"} +{"label":"Colette Kilroy","version":16,"id":"53892","lastModified":"1299502749000","name":"Colette Kilroy","type":"Person","_key":"10054"} +{"label":"James Kayten","version":16,"id":"53893","lastModified":"1299495943000","name":"James Kayten","type":"Person","_key":"10055"} +{"label":"Rendezvous","description":"A high-speed drive through the streets of Paris.","id":"1386","runtime":8,"imdbId":"tt0169173","version":83,"lastModified":"1299532003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e36\/4bc9103b017a3c57fe005e36\/c-etait-un-rendez-vous-mid.jpg","genre":"Action","title":"Rendezvous","releaseDate":189302400000,"language":"en","type":"Movie","_key":"10056"} +{"label":"Claude Lelouch","version":47,"id":"16862","lastModified":"1300013006000","name":"Claude Lelouch","type":"Person","_key":"10057"} +{"label":"Superstar: The Karen Carpenter Story","description":"Superstar is a documentary style short film about the life and death of pop star Karen Carpenter and her problem with anorexia and bulimia. Directed by Todd Haynes the filmed almost entirely with Barbie dolls to a soundtrack of the times. Generally sympathetic to Karen the film was however banned after Haynes lost in court to Karen\u2019s brother and musical partner Richard Carpenter.","id":"1387","runtime":43,"imdbId":"tt0094075","version":37,"lastModified":"1299531923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3b\/4bc9103b017a3c57fe005e3b\/superstar-the-karen-carpenter-story-mid.jpg","genre":"Documentary","title":"Superstar: The Karen Carpenter Story","releaseDate":536457600000,"language":"en","type":"Movie","_key":"10058"} +{"label":"Todd Haynes","version":38,"id":"16863","lastModified":"1300029682000","name":"Todd Haynes","type":"Person","_key":"10059"} +{"label":"The Way Things Go","description":"Artists Peter Fischli and David Weiss create the ultimate Rube Goldberg machine with a complex imaginative devices that trigger each other for 30 minutes in a domino effect. The film was creating in an empty warehouse and with objects probably found at a junkyard as the creative contraptions fly, burn, roll, walk, melt, pop, push and fall in an endless science project that will mesmerize the mind.","id":"1388","runtime":30,"imdbId":"tt0094300","homepage":"http:\/\/icarusfilms.com\/cat97\/t-z\/the_way_.html","version":68,"lastModified":"1299971828000","genre":"Documentary","title":"The Way Things Go","releaseDate":536457600000,"language":"en","type":"Movie","_key":"10060"} +{"label":"Peter Fischli","version":13,"id":"16864","lastModified":"1299494921000","name":"Peter Fischli","type":"Person","_key":"10061"} +{"label":"David Weiss","version":13,"id":"16865","lastModified":"1299499247000","name":"David Weiss","type":"Person","_key":"10062"} +{"label":"Out of Sight","description":"A notorious bank robber played by George Clooney escapes from prison and goes to meet up with his friend who unknowingly hijacked a car with an FBI agent played by Jennifer Lopez inside. Clooney ends up starting a relationship with the agent who is later let walk and follows the two men. A classic Soderbergh film with excellent performances.","id":"1389","runtime":123,"imdbId":"tt0120780","trailer":"http:\/\/www.youtube.com\/watch?v=A_GOrRyhABg","version":150,"lastModified":"1300083045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/493\/4d703c647b9aa17015000493\/out-of-sight-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Out of Sight","releaseDate":898819200000,"language":"en","type":"Movie","_key":"10063"} +{"label":"Jennifer Lopez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53e\/4be1147c017a3c35c100053e\/jennifer-lopez-profile.jpg","version":79,"birthday":"-13914000000","id":"16866","birthplace":"The Bronx, New York, U.S","lastModified":"1299617546000","name":"Jennifer Lopez","type":"Person","_key":"10064"} +{"label":"Steve Zahn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a8\/4cb856ab7b9aa138d80007a8\/steve-zahn-profile.jpg","version":114,"id":"18324","lastModified":"1300056344000","name":"Steve Zahn","type":"Person","_key":"10065"} +{"label":"Keith Loneker","version":27,"id":"54714","lastModified":"1299494725000","name":"Keith Loneker","type":"Person","_key":"10066"} +{"label":"Nancy Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b01\/4c0d39dd017a3c7e87000b01\/nancy-allen-profile.jpg","version":55,"id":"44038","lastModified":"1299612317000","name":"Nancy Allen","type":"Person","_key":"10067"} +{"label":"Los Lunes Al Sol","description":"No overview found.","id":"1390","runtime":113,"imdbId":"tt0319769","version":78,"lastModified":"1299910479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e52\/4bc9103c017a3c57fe005e52\/los-lunes-al-sol-mid.jpg","studio":"Mediapro","genre":"Comedy","title":"Los Lunes Al Sol","releaseDate":1032739200000,"language":"en","type":"Movie","_key":"10068"} +{"label":"Jos\u00e9 \u00c1ngel Egido","version":16,"id":"16868","lastModified":"1299796785000","name":"Jos\u00e9 \u00c1ngel Egido","type":"Person","_key":"10069"} +{"label":"Nieve de Medina","version":18,"id":"16869","lastModified":"1299796785000","name":"Nieve de Medina","type":"Person","_key":"10070"} +{"label":"Celso Bugallo","version":22,"id":"16870","lastModified":"1299796785000","name":"Celso Bugallo","type":"Person","_key":"10071"} +{"label":"Laura Dom\u00ednguez","version":14,"id":"16871","lastModified":"1299796785000","name":"Laura Dom\u00ednguez","type":"Person","_key":"10072"} +{"label":"Aida Folch","version":15,"id":"16872","lastModified":"1299796785000","name":"Aida Folch","type":"Person","_key":"10073"} +{"label":"Serge Riaboukine","version":30,"id":"16873","lastModified":"1299796785000","name":"Serge Riaboukine","type":"Person","_key":"10074"} +{"label":"Pepo Oliva","version":14,"id":"16874","lastModified":"1299796785000","name":"Pepo Oliva","type":"Person","_key":"10075"} +{"label":"Joaqu\u00edn Climent","version":16,"id":"16878","lastModified":"1299796785000","name":"Joaqu\u00edn Climent","type":"Person","_key":"10076"} +{"label":"And Your Mother, Too","description":"Y tu mam\u00e1 tambi\u00e9n (English: \"And your mother, too\") is a coming-of-age story about two teenage boys taking a road trip with a woman in her late twenties; set in 1999 against the backdrop of the political and economic realities of present-day Mexico, specifically at the end of the uninterrupted 71-year line of Mexican presidents from the Institutional Revolutionary Party, and the rise of the opposition headed by Vicente Fox.","id":"1391","runtime":105,"imdbId":"tt0245574","trailer":"http:\/\/www.youtube.com\/watch?v=oxY_Dwymfew&fmt=18","version":61,"lastModified":"1300023458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5f\/4bc9103d017a3c57fe005e5f\/y-tu-mama-tambien-mid.jpg","studio":"B\u00e9same Mucho Pictures","genre":"Drama","title":"And Your Mother, Too","releaseDate":991958400000,"language":"en","type":"Movie","_key":"10077"} +{"label":"Ana L\u00f3pez Mercado","version":15,"id":"17088","lastModified":"1299497497000","name":"Ana L\u00f3pez Mercado","type":"Person","_key":"10078"} +{"label":"Maribel Verd\u00fa","version":29,"id":"16971","lastModified":"1299491861000","name":"Maribel Verd\u00fa","type":"Person","_key":"10079"} +{"label":"Born into Brothels","description":"The academy award winning documentary depicting the lives of child prostitutes in the red light district of Songachi, Calcutta. Director Zana Briski went to photograph the prostitutes when she met and became friends with their children. Briski began giving photography lessons to the children and became aware that their photography might be a way for them to lead better lives.","id":"1392","runtime":85,"imdbId":"tt0388789","version":91,"lastModified":"1299910626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e68\/4bc91040017a3c57fe005e68\/born-into-brothels-mid.jpg","studio":"HBO Films","genre":"Documentary","title":"Born into Brothels","releaseDate":1074297600000,"language":"en","type":"Movie","_key":"10080"} +{"label":"Zana Briski","version":17,"id":"53384","lastModified":"1299501728000","name":"Zana Briski","type":"Person","_key":"10081"} +{"label":"Ross Kauffman","version":17,"id":"53385","lastModified":"1299501728000","name":"Ross Kauffman","type":"Person","_key":"10082"} +{"label":"Die H\u00f6hle des gelben Hundes","description":"The little nomad girl, Nansal, finds a baby dog in the mongolian veld, who becomes her best friend - against all rejections of her parents. Only as the little dog, Zocher, saves the life of the youngest son, father and mother finally see his good soul. A story about a mongolian family of nomads - their traditional way of life and the rising call of the City. ","id":"1393","runtime":93,"imdbId":"tt0432325","version":41,"lastModified":"1299531928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/012\/4c33c38c7b9aa17a35000012\/die-hohle-des-gelben-hundes-mid.jpg","studio":"Schesch Filmproduktion","genre":"Documentary","title":"Die H\u00f6hle des gelben Hundes","releaseDate":1122508800000,"language":"en","type":"Movie","_key":"10083"} +{"label":"Batchuluun Urjindorj","version":13,"id":"16879","lastModified":"1299495557000","name":"Batchuluun Urjindorj","type":"Person","_key":"10084"} +{"label":"Buyandulam Daramdadi","version":13,"id":"16880","lastModified":"1299496438000","name":"Buyandulam Daramdadi","type":"Person","_key":"10085"} +{"label":"Nansal Batchuluun","version":14,"id":"16881","lastModified":"1299495442000","name":"Nansal Batchuluun","type":"Person","_key":"10086"} +{"label":"Nansalmaa Batchuluun","version":14,"id":"16882","lastModified":"1299497308000","name":"Nansalmaa Batchuluun","type":"Person","_key":"10087"} +{"label":"Nostalghia","description":"The Russian poet Gortchakov, accompanied by guide and translator Eugenia, is traveling through Italy researching the life of an 18th century Russian composer. In a ancient spa town, he meets the lunatic Domenico. As Eugenia tries to tempt Gortchakov into infidelity, he becomes drawn to the lunatic. In a series of dreams,everything becomes intertwined.","id":"1394","runtime":120,"imdbId":"tt0086022","version":84,"lastModified":"1299909885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15d\/4c15f9597b9aa1058600015d\/nostalghia-mid.jpg","genre":"Drama","title":"Nostalghia","releaseDate":434160000000,"language":"en","type":"Movie","_key":"10088"} +{"label":"Oleg Yankovskiy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/701\/4c5c00e87b9aa151f3000701\/oleg-yankovskiy-profile.jpg","version":35,"birthday":"-815965200000","id":"99267","birthplace":"Dzhezkazgan, Karaganda Oblast, Kazakh SSR, USSR","lastModified":"1299513606000","name":"Oleg Yankovskiy","type":"Person","_key":"10089"} +{"label":"Erland Josephson","version":38,"id":"38127","lastModified":"1299968407000","name":"Erland Josephson","type":"Person","_key":"10090"} +{"label":"Patrizia Terreno","version":10,"id":"150825","lastModified":"1299515775000","name":"Patrizia Terreno","type":"Person","_key":"10091"} +{"label":"Laura De Marchi","version":10,"id":"150826","lastModified":"1299515781000","name":"Laura De Marchi","type":"Person","_key":"10092"} +{"label":"Delia Boccardo","version":18,"id":"20948","lastModified":"1299793141000","name":"Delia Boccardo","type":"Person","_key":"10093"} +{"label":"Milena Vukotic","version":39,"id":"44104","lastModified":"1299687470000","name":"Milena Vukotic","type":"Person","_key":"10094"} +{"label":"The Mirror","description":"A man in his forties is going to die and remembers his past. His childhood, his mother, the war, personal moments but things that also tell the story of all the Russian nation.","id":"1396","runtime":106,"imdbId":"tt0072443","trailer":"http:\/\/www.youtube.com\/watch?v=uXYfRkuA3cM","version":98,"lastModified":"1299910986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc91042017a3c57fe005e82\/1396-mid.jpg","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Documentary","title":"The Mirror","releaseDate":165542400000,"language":"en","type":"Movie","_key":"10095"} +{"label":"Margarita Terekhova","version":15,"id":"55512","lastModified":"1299501229000","name":"Margarita Terekhova","type":"Person","_key":"10096"} +{"label":"Alla Demidova","version":20,"id":"55513","lastModified":"1299498941000","name":"Alla Demidova","type":"Person","_key":"10097"} +{"label":"Ignat Daniltsev","version":15,"id":"55514","lastModified":"1299503453000","name":"Ignat Daniltsev","type":"Person","_key":"10098"} +{"label":"Filipp Yankovsky","version":18,"id":"55516","lastModified":"1299506148000","name":"Filipp Yankovsky","type":"Person","_key":"10099"} +{"label":"Wege Gottes","description":"No overview found.","id":"1397","runtime":60,"imdbId":"tt0985019","version":28,"lastModified":"1299531928000","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Documentary","title":"Wege Gottes","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"10100"} +{"label":"Eva Neymann","version":18,"id":"55511","lastModified":"1299501135000","name":"Eva Neymann","type":"Person","_key":"10101"} +{"label":"Stalker","description":"Near a gray and unnamed city is the Zone, an alien place guarded by barbed wire and soldiers. Over his wife's numerous objections, a man rises in the dead of night: he's a stalker, one of a handful who have the mental gifts (and who risk imprisonment) to lead people into the Zone to the Room, a place where one's secret hopes come true. ","id":"1398","runtime":163,"imdbId":"tt0079944","trailer":"http:\/\/www.youtube.com\/watch?v=1003","version":122,"lastModified":"1299910326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e94\/4bc91043017a3c57fe005e94\/stalker-mid.jpg","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Drama","title":"Stalker","releaseDate":302313600000,"language":"en","type":"Movie","_key":"10102"} +{"label":"Aleksandr Kaidanovsky","version":17,"id":"28078","lastModified":"1299494167000","name":"Aleksandr Kaidanovsky","type":"Person","_key":"10103"} +{"label":"Alisa Frejndlikh","version":22,"id":"28079","lastModified":"1299496450000","name":"Alisa Frejndlikh","type":"Person","_key":"10104"} +{"label":"Natasha Abramova","version":19,"id":"28080","lastModified":"1299495679000","name":"Natasha Abramova","type":"Person","_key":"10105"} +{"label":"The Pursuit of Happyness","description":"The film based on the true stories of Christopher Gardner (played by Will Smith) as he struggles to get a job in a stock brokerage while at the same time he\u2019s dealing with being a good father, being unemployed, and being kicked out of his home. Gardner\u2019s son is played by Will Smith\u2019s actual son.","id":"1402","runtime":117,"imdbId":"tt0454921","trailer":"http:\/\/www.youtube.com\/watch?v=-HfKCxK6Lqw&hd=1","version":212,"lastModified":"1300081852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4d12f6355e73d608340012a6\/the-pursuit-of-happyness-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"The Pursuit of Happyness","releaseDate":1166140800000,"language":"en","tagline":"A fathers' way","type":"Movie","_key":"10106"} +{"label":"Gabriele Muccino","version":42,"id":"20646","lastModified":"1299492251000","name":"Gabriele Muccino","type":"Person","_key":"10107"} +{"label":"Takayo Fischer","version":21,"id":"33500","lastModified":"1299492787000","name":"Takayo Fischer","type":"Person","_key":"10108"} +{"label":"Mark Christopher Lawrence","version":20,"id":"33501","lastModified":"1299492769000","name":"Mark Christopher Lawrence","type":"Person","_key":"10109"} +{"label":"Kurt Fuller","version":36,"id":"29685","lastModified":"1299492310000","name":"Kurt Fuller","type":"Person","_key":"10110"} +{"label":"Domenic Bove","version":19,"id":"33502","lastModified":"1299492769000","name":"Domenic Bove","type":"Person","_key":"10111"} +{"label":"Duel at Diablo","description":"While crossing the desert, a frontier scout, Jess Remsberg (Garner), rescues Ellen Grange (Andersson) from a pursuing band of Apaches, and returns her to her husband, Willard Grange (Weaver). He is contracted to act as a scout for an Army cavalry unit. Willard, Ellen, and her infant son are along for the ride, as is horse trader Toller (Poitier), a veteran of the 10th Cavalry (the \"Buffalo Soldiers\"). The party is trapped in a canyon by Chata, an Apache chief and grandfather of Ellen's baby. Wil","id":"1403","runtime":103,"imdbId":"tt0060355","version":103,"lastModified":"1299970166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb6\/4bc9104a017a3c57fe005eb6\/duel-at-diablo-mid.jpg","studio":"United Artists","genre":"Action","title":"Duel at Diablo","releaseDate":-111974400000,"language":"en","type":"Movie","_key":"10112"} +{"label":"Ralph Nelson","version":23,"id":"16888","lastModified":"1299494414000","name":"Ralph Nelson","type":"Person","_key":"10113"} +{"label":"James Garner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/185\/4c17b08c7b9aa108ca000185\/james-garner-profile.jpg","version":87,"id":"16896","lastModified":"1300090313000","name":"James Garner","type":"Person","_key":"10114"} +{"label":"Sidney Poitier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/492\/4c9b639c7b9aa12759000492\/sidney-poitier-profile.jpg","biography":"<P><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-ansi-language: EN\" lang=EN>Sir Sidney Poitier<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-ansi-language: EN\" lang=EN>, KBE (born February 20, 1927) is a Bahamian American actor, film director, author, and diplomat. In 1963, Poitier became the first black person to win an Academy Award for Best Actor for his role in <I>Lilies of the Field<\/I>. The significance of this achievement was later bolstered in 1967 w","version":74,"birthday":"-721530000000","id":"16897","birthplace":"Miami, Florida, US","lastModified":"1299880019000","name":"Sidney Poitier","type":"Person","_key":"10115"} +{"label":"Bill Travers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/225\/4c87b3947b9aa1545b000225\/bill-travers-profile.jpg","version":18,"id":"16898","lastModified":"1299497858000","name":"Bill Travers","type":"Person","_key":"10116"} +{"label":"John Crawford","version":18,"id":"15693","lastModified":"1299496285000","name":"John Crawford","type":"Person","_key":"10117"} +{"label":"Ae Fond Kiss...","description":"A star-crossed romance set in Glasgow about a forbidden love amidst the religious and racial tensions of the Glasgow-Asian community. The title, Ae Fond Kiss, comes from a Robert Burns poem,","id":"1404","runtime":104,"imdbId":"tt0380366","homepage":"http:\/\/iconmovies.co.uk\/aefondkiss\/","version":113,"lastModified":"1299969949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebf\/4bc9104b017a3c57fe005ebf\/ae-fond-kiss-mid.jpg","studio":"Scottish Screen","genre":"Drama","title":"Ae Fond Kiss...","releaseDate":1076630400000,"language":"en","type":"Movie","_key":"10118"} +{"label":"Atta Yaqub","version":15,"id":"16900","lastModified":"1299515463000","name":"Atta Yaqub","type":"Person","_key":"10119"} +{"label":"Eva Birthistle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b92\/4d7ab5705e73d6282a000b92\/eva-birthistle-profile.jpg","version":31,"id":"16901","lastModified":"1299883872000","name":"Eva Birthistle","type":"Person","_key":"10120"} +{"label":"Shamshad Akhtar","version":14,"id":"16902","lastModified":"1299500377000","name":"Shamshad Akhtar","type":"Person","_key":"10121"} +{"label":"Ghizala Avan","version":14,"id":"16903","lastModified":"1299500377000","name":"Ghizala Avan","type":"Person","_key":"10122"} +{"label":"Shabana Akhtar Bakhsh","version":14,"id":"16904","lastModified":"1299500377000","name":"Shabana Akhtar Bakhsh","type":"Person","_key":"10123"} +{"label":"Ahmad Riaz","version":14,"id":"16905","lastModified":"1299500377000","name":"Ahmad Riaz","type":"Person","_key":"10124"} +{"label":"Shy Ramsan","version":14,"id":"16906","lastModified":"1299500377000","name":"Shy Ramsan","type":"Person","_key":"10125"} +{"label":"Gerard Kelly","version":14,"id":"16907","lastModified":"1299500377000","name":"Gerard Kelly","type":"Person","_key":"10126"} +{"label":"David McKay","version":19,"id":"16908","lastModified":"1299970478000","name":"David McKay","type":"Person","_key":"10127"} +{"label":"Raymond Mearns","version":15,"id":"16909","lastModified":"1299501625000","name":"Raymond Mearns","type":"Person","_key":"10128"} +{"label":"Emma Friel","version":14,"id":"16910","lastModified":"1299500377000","name":"Emma Friel","type":"Person","_key":"10129"} +{"label":"Karen Fraser","version":14,"id":"16911","lastModified":"1299500376000","name":"Karen Fraser","type":"Person","_key":"10130"} +{"label":"Greed","description":"Greed is the classic 1924 silent film by Erich von Stroheim about a woman who wins the lottery thus becoming obsessed with money and ruining her marriage and the people around her. The film was originally 10 hours long and dramatically and realistically depicted word for word the Frank Norris novel McTeague. Only about 2 hours exist today as it is considered the 'Holy Grail' of lost films.","id":"1405","runtime":140,"imdbId":"tt0015881","version":92,"lastModified":"1299910885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec8\/4bc9104b017a3c57fe005ec8\/greed-mid.jpg","studio":"Metro-Goldwyn Pictures Corporation","genre":"Drama","title":"Greed","releaseDate":-1422489600000,"language":"en","type":"Movie","_key":"10131"} +{"label":"Jean Hersholt","version":21,"id":"32138","lastModified":"1299933567000","name":"Jean Hersholt","type":"Person","_key":"10132"} +{"label":"Dale Fuller","version":18,"id":"35504","lastModified":"1300012557000","name":"Dale Fuller","type":"Person","_key":"10133"} +{"label":"Tempe Pigott","version":17,"id":"29603","lastModified":"1299501713000","name":"Tempe Pigott","type":"Person","_key":"10134"} +{"label":"Sylvia Ashton","version":17,"id":"35505","lastModified":"1299495723000","name":"Sylvia Ashton","type":"Person","_key":"10135"} +{"label":"Chester Conklin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/456\/4cb35b047b9aa12cf7000456\/chester-conklin-profile.jpg","version":38,"id":"30195","lastModified":"1299495730000","name":"Chester Conklin","type":"Person","_key":"10136"} +{"label":"City Slickers","description":"New York meets the west in this comedy starring Billy Crystal. Three New York business men decide to take a 'Wild West' vacation that turns out to not be the relaxing vacation they had envisioned. ","id":"1406","runtime":112,"imdbId":"tt0101587","trailer":"http:\/\/www.youtube.com\/watch?v=AquxFeEoDgM","version":130,"lastModified":"1299911653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed9\/4bc9104d017a3c57fe005ed9\/city-slickers-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"City Slickers","releaseDate":675734400000,"language":"en","type":"Movie","_key":"10137"} +{"label":"Patricia Wettig","version":23,"id":"33487","lastModified":"1299495387000","name":"Patricia Wettig","type":"Person","_key":"10138"} +{"label":"Helen Slater","version":32,"id":"33488","lastModified":"1299833701000","name":"Helen Slater","type":"Person","_key":"10139"} +{"label":"Noble Willingham","version":37,"id":"31005","lastModified":"1299492472000","name":"Noble Willingham","type":"Person","_key":"10140"} +{"label":"Josh Mostel","version":30,"id":"33489","lastModified":"1299493918000","name":"Josh Mostel","type":"Person","_key":"10141"} +{"label":"David Paymer","version":54,"id":"19839","lastModified":"1300090341000","name":"David Paymer","type":"Person","_key":"10142"} +{"label":"Phill Lewis","version":20,"id":"33490","lastModified":"1299497204000","name":"Phill Lewis","type":"Person","_key":"10143"} +{"label":"Karla Tamburrelli","version":18,"id":"33491","lastModified":"1299501624000","name":"Karla Tamburrelli","type":"Person","_key":"10144"} +{"label":"Robert Costanzo","version":32,"id":"33492","lastModified":"1299833638000","name":"Robert Costanzo","type":"Person","_key":"10145"} +{"label":"Walker Brandt","version":18,"id":"33493","lastModified":"1299496377000","name":"Walker Brandt","type":"Person","_key":"10146"} +{"label":"Lindsay Crystal","version":20,"id":"33495","lastModified":"1299499051000","name":"Lindsay Crystal","type":"Person","_key":"10147"} +{"label":"Molly McClure","version":19,"id":"33496","lastModified":"1299497603000","name":"Molly McClure","type":"Person","_key":"10148"} +{"label":"Jane Alden","version":21,"id":"33497","lastModified":"1299500839000","name":"Jane Alden","type":"Person","_key":"10149"} +{"label":"Ron Underwood","version":37,"id":"33485","lastModified":"1299493379000","name":"Ron Underwood","type":"Person","_key":"10150"} +{"label":"La Vie en Rose","description":"A swirling, impressionistic portrait of an artist who regretted nothing, writer-director Olivier Dahan's La Vie en Rose stars Marion Cotillard in a blazing performance as the legendary French icon Edith Piaf. From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Lep","id":"1407","runtime":140,"imdbId":"tt0450188","homepage":"http:\/\/www.tfmdistribution.com\/lamome\/lamome.htm","version":133,"lastModified":"1300081140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee7\/4bc91050017a3c57fe005ee7\/la-mome-mid.jpg","studio":"L\u00e9gende Entreprises","genre":"Drama","title":"La Vie en Rose","releaseDate":1170892800000,"language":"en","tagline":"The extraordinary life of Edith Piaf","type":"Movie","_key":"10151"} +{"label":"Clotilde Courau","version":31,"id":"16921","lastModified":"1299934123000","name":"Clotilde Courau","type":"Person","_key":"10152"} +{"label":"Jean-Paul Rouve","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/486\/4d0e250b5e73d63713001486\/jean-paul-rouve-profile.jpg","version":66,"id":"16922","lastModified":"1300037437000","name":"Jean-Paul Rouve","type":"Person","_key":"10153"} +{"label":"Pascal Greggory","version":35,"id":"16923","lastModified":"1299494489000","name":"Pascal Greggory","type":"Person","_key":"10154"} +{"label":"Marc Barb\u00e9","version":17,"id":"16924","lastModified":"1299496560000","name":"Marc Barb\u00e9","type":"Person","_key":"10155"} +{"label":"Caroline Sihol","version":28,"id":"16925","lastModified":"1299494389000","name":"Caroline Sihol","type":"Person","_key":"10156"} +{"label":"Catherine All\u00e9gret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4d7544255e73d665180000cc\/catherine-all-gret-profile.jpg","version":29,"id":"16926","lastModified":"1299527190000","name":"Catherine All\u00e9gret","type":"Person","_key":"10157"} +{"label":"G\u00e9rard Depardieu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/438\/4bfaa0de017a3c702a000438\/gerard-depardieu-profile.jpg","version":220,"id":"16927","lastModified":"1300090267000","name":"G\u00e9rard Depardieu","type":"Person","_key":"10158"} +{"label":"Olivier Dahan","version":35,"id":"16919","lastModified":"1299494448000","name":"Olivier Dahan","type":"Person","_key":"10159"} +{"label":"Cutthroat Island","description":"Morgan Adams and her slave, William Shaw, are on a quest to recover the three portions of a treasure map. Unfortunately, the final portion is held by her murderous uncle, Dawg. Her crew is skeptical of her leadership abilities, so she must complete her quest before they mutiny against her. This is made yet more difficult by the efforts of the British crown to end her pirate raids.","id":"1408","runtime":119,"imdbId":"tt0112760","version":158,"lastModified":"1299911320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9c\/4cbb77335e73d67784000b9c\/cutthroat-island-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Cutthroat Island","releaseDate":788918400000,"language":"en","type":"Movie","_key":"10160"} +{"label":"Geena Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e1\/4c3dbc337b9aa13a3c0000e1\/geena-davis-profile.jpg","version":77,"id":"16935","lastModified":"1299760759000","name":"Geena Davis","type":"Person","_key":"10161"} +{"label":"Stan Shaw","version":24,"id":"16936","lastModified":"1299494416000","name":"Stan Shaw","type":"Person","_key":"10162"} +{"label":"Rex Linn","version":29,"id":"16937","lastModified":"1299493364000","name":"Rex Linn","type":"Person","_key":"10163"} +{"label":"Renny Harlin","version":106,"id":"16938","lastModified":"1300090378000","name":"Renny Harlin","type":"Person","_key":"10164"} +{"label":"Dark Star","description":"A low-budget, sci-fi satire that focuses on a group of scientists whose mission is to destroy unstable planets. 20 years into their mission, they have battle their alien mascot, that resembles a beach ball, as well as a \"sensitive\" and intelligent bombing device that starts to question the meaning of its existence.","id":"1410","runtime":83,"imdbId":"tt0069945","trailer":"http:\/\/www.youtube.com\/watch?v=gSccwmmrS5A","version":134,"lastModified":"1299912185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc91053017a3c57fe005f05\/dark-star-mid.jpg","studio":"University of Southern California","genre":"Comedy","title":"Dark Star","releaseDate":134006400000,"language":"en","type":"Movie","_key":"10165"} +{"label":"Brian Narelle","version":17,"id":"25202","lastModified":"1299496378000","name":"Brian Narelle","type":"Person","_key":"10166"} +{"label":"Cal Kuniholm","version":17,"id":"25203","lastModified":"1299495588000","name":"Cal Kuniholm","type":"Person","_key":"10167"} +{"label":"Dre Pahich","version":14,"id":"25204","lastModified":"1299497603000","name":"Dre Pahich","type":"Person","_key":"10168"} +{"label":"Adam Beckenbaugh","version":17,"id":"25205","lastModified":"1299496474000","name":"Adam Beckenbaugh","type":"Person","_key":"10169"} +{"label":"Nick Castle","version":41,"id":"14692","lastModified":"1299755380000","name":"Nick Castle","type":"Person","_key":"10170"} +{"label":"Joe Saunders","version":17,"id":"25207","lastModified":"1299499290000","name":"Joe Saunders","type":"Person","_key":"10171"} +{"label":"Cookie Knapp","version":17,"id":"25206","lastModified":"1299496474000","name":"Cookie Knapp","type":"Person","_key":"10172"} +{"label":"Alan Sheretz","version":17,"id":"25208","lastModified":"1299496487000","name":"Alan Sheretz","type":"Person","_key":"10173"} +{"label":"Dan O'Bannon","version":85,"id":"5045","lastModified":"1299492692000","name":"Dan O'Bannon","type":"Person","_key":"10174"} +{"label":"The Rapture","description":"A controversial independent film from the early 90's about the end of the world. A religious and psychological film with explicit sex scenes creates a unique movie experience that many big budget movies never reach. Starring Mimi Rogers and a then unknown David Duchovany.","id":"1411","runtime":100,"imdbId":"tt0102757","version":108,"lastModified":"1299968971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0a\/4bc91053017a3c57fe005f0a\/the-rapture-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"The Rapture","releaseDate":684115200000,"language":"en","type":"Movie","_key":"10175"} +{"label":"Michael Tolkin","version":42,"id":"16939","lastModified":"1299668917000","name":"Michael Tolkin","type":"Person","_key":"10176"} +{"label":"Darwyn Carson","version":16,"id":"42933","lastModified":"1299499355000","name":"Darwyn Carson","type":"Person","_key":"10177"} +{"label":"Sex, Lies, and Videotape","description":"A Steven Soderbergh independent film masterpiece that takes an intimate look into a mans hobby of filming random and anonymos women talking about their sexuality. The film achieves eroticism not through acts but through simple yet complex conversations. The 1989 film game a huge boost to Soderbergh\u2019s career as it was seen by not just the narrow audience of independent films.","id":"1412","runtime":100,"imdbId":"tt0098724","trailer":"http:\/\/www.youtube.com\/watch?v=rxdQQpJ9t-4","version":96,"lastModified":"1299910481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f13\/4bc91056017a3c57fe005f13\/sex-lies-and-videotape-mid.jpg","studio":"Outlaw Productions","genre":"Drama","title":"Sex, Lies, and Videotape","releaseDate":619401600000,"language":"en","type":"Movie","_key":"10178"} +{"label":"Ron Vawter","version":18,"id":"32592","lastModified":"1299494632000","name":"Ron Vawter","type":"Person","_key":"10179"} +{"label":"Steven Brill","version":49,"id":"32593","lastModified":"1300030413000","name":"Steven Brill","type":"Person","_key":"10180"} +{"label":"M. Butterfly","description":"A David Croenenberg film based on the Chinese play by the same name. A tragic love story that breaks stereotypes and touches on the depest human instinct. ","id":"1413","runtime":101,"imdbId":"tt0107468","version":97,"lastModified":"1300080372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d87\/4bfea4ca017a3c7036000d87\/m-butterfly-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"M. Butterfly","releaseDate":747532800000,"language":"en","type":"Movie","_key":"10181"} +{"label":"Jeremy Irons","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/291\/4bf70a8a017a3c7726000291\/jeremy-irons-profile.jpg","version":107,"id":"16940","lastModified":"1299542841000","name":"Jeremy Irons","type":"Person","_key":"10182"} +{"label":"Barbara Sukowa","version":28,"id":"23378","lastModified":"1299780160000","name":"Barbara Sukowa","type":"Person","_key":"10183"} +{"label":"Annabel Leventon","version":16,"id":"32595","lastModified":"1299501802000","name":"Annabel Leventon","type":"Person","_key":"10184"} +{"label":"Shizuko Hoshi","version":16,"id":"32596","lastModified":"1299501708000","name":"Shizuko Hoshi","type":"Person","_key":"10185"} +{"label":"Lovers of the Arctic Circle","description":"Otto and Ana are kids when they meet each other. Their names are palindromes. They meet by chance, people are related by chance. A story of circular lives, with circular names, and a circular place (C\u00edrculo polar) where the day never ends in the midnight sun. There are things that never end, and Love is one of them.","id":"1414","runtime":112,"imdbId":"tt0133363","version":92,"lastModified":"1299912056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3d\/4bc91059017a3c57fe005f3d\/los-amantes-del-circulo-polar-mid.jpg","studio":"Sociedad","genre":"Drama","title":"Lovers of the Arctic Circle","releaseDate":904867200000,"language":"en","type":"Movie","_key":"10186"} +{"label":"Joost Siedhoff","version":16,"id":"16943","lastModified":"1299496474000","name":"Joost Siedhoff","type":"Person","_key":"10187"} +{"label":"Peru Medem","version":15,"id":"16944","lastModified":"1299495617000","name":"Peru Medem","type":"Person","_key":"10188"} +{"label":"Sara Valiente","version":14,"id":"16945","lastModified":"1299498267000","name":"Sara Valiente","type":"Person","_key":"10189"} +{"label":"V\u00edctor Hugo Oliveira","version":14,"id":"16946","lastModified":"1299498267000","name":"V\u00edctor Hugo Oliveira","type":"Person","_key":"10190"} +{"label":"Kristel D\u00edaz","version":14,"id":"16947","lastModified":"1299498266000","name":"Kristel D\u00edaz","type":"Person","_key":"10191"} +{"label":"Nancho Novo","version":17,"id":"16948","lastModified":"1299499292000","name":"Nancho Novo","type":"Person","_key":"10192"} +{"label":"Maru Valdivielso","version":16,"id":"16949","lastModified":"1299497147000","name":"Maru Valdivielso","type":"Person","_key":"10193"} +{"label":"Pep Munn\u00e9","version":18,"id":"16950","lastModified":"1299495019000","name":"Pep Munn\u00e9","type":"Person","_key":"10194"} +{"label":"Rosa Morales","version":14,"id":"16951","lastModified":"1299496932000","name":"Rosa Morales","type":"Person","_key":"10195"} +{"label":"Petri Heino","version":14,"id":"16952","lastModified":"1299498266000","name":"Petri Heino","type":"Person","_key":"10196"} +{"label":"Beate Jensen","version":14,"id":"16953","lastModified":"1299498266000","name":"Beate Jensen","type":"Person","_key":"10197"} +{"label":"Jaroslav Bielski","version":14,"id":"16954","lastModified":"1299498266000","name":"Jaroslav Bielski","type":"Person","_key":"10198"} +{"label":"Outi Alanen","version":14,"id":"16955","lastModified":"1299496932000","name":"Outi Alanen","type":"Person","_key":"10199"} +{"label":"Mar\u00eda Isasi","version":14,"id":"16956","lastModified":"1299498266000","name":"Mar\u00eda Isasi","type":"Person","_key":"10200"} +{"label":"Party Monster","description":"Party Monster is the cult film that illustrates the rise to stardom of an infamous party promoter in New York City.","id":"1415","runtime":98,"imdbId":"tt0320244","version":141,"lastModified":"1299968221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4b\/4bc9105c017a3c57fe005f4b\/party-monster-mid.jpg","studio":"ContentFilm","genre":"Comedy","title":"Party Monster","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"10201"} +{"label":"Fenton Bailey","version":17,"id":"16957","lastModified":"1299495321000","name":"Fenton Bailey","type":"Person","_key":"10202"} +{"label":"Randy Barbato","version":17,"id":"16958","lastModified":"1299497116000","name":"Randy Barbato","type":"Person","_key":"10203"} +{"label":"Dylan McDermott","version":37,"id":"32597","lastModified":"1299779367000","name":"Dylan McDermott","type":"Person","_key":"10204"} +{"label":"Wilmer Valderrama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c0\/4cd9be957b9aa11b270006c0\/wilmer-valderrama-profile.jpg","version":29,"id":"18975","lastModified":"1299495104000","name":"Wilmer Valderrama","type":"Person","_key":"10205"} +{"label":"Daniel Franzese","version":24,"id":"32598","lastModified":"1299540668000","name":"Daniel Franzese","type":"Person","_key":"10206"} +{"label":"Mia Kirshner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11d\/4bcc82a6017a3c0f2600011d\/mia-kirshner-profile.jpg","version":45,"id":"18658","lastModified":"1299492267000","name":"Mia Kirshner","type":"Person","_key":"10207"} +{"label":"Natasha Lyonne","version":39,"id":"10871","lastModified":"1299494461000","name":"Natasha Lyonne","type":"Person","_key":"10208"} +{"label":"John Stamos","version":25,"id":"32600","lastModified":"1299495351000","name":"John Stamos","type":"Person","_key":"10209"} +{"label":"The Coast Guard","description":"No overview found.","id":"1416","runtime":96,"imdbId":"tt0341384","version":81,"lastModified":"1299968031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d0\/4c03532c017a3c7e870000d0\/1416-mid.jpg","studio":"Korea Pictures","genre":"Drama","title":"The Coast Guard","releaseDate":1037232000000,"language":"en","type":"Movie","_key":"10210"} +{"label":"Dong-gun Jang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/895\/4d6cf6f45e73d66b2e003895\/dong-gun-jang-profile.jpg","version":27,"birthday":"68770800000","id":"16962","birthplace":"Yongsangu Seoul, Korea","lastModified":"1299492503000","name":"Dong-gun Jang","type":"Person","_key":"10211"} +{"label":"Jeong-hak Kim","version":14,"id":"16963","lastModified":"1299496251000","name":"Jeong-hak Kim","type":"Person","_key":"10212"} +{"label":"Ji-a Park","version":16,"id":"16964","lastModified":"1299495445000","name":"Ji-a Park","type":"Person","_key":"10213"} +{"label":"Hye-jin Yu","version":14,"id":"16965","lastModified":"1299495445000","name":"Hye-jin Yu","type":"Person","_key":"10214"} +{"label":"Pan's Labyrinth","description":"Pans Labyrinth is the exquisitely produced fantasy film from Mexican director Guillermo del Toro who is actually famous for his works in science-fiction and horror. The film stars a little girl lost in a fantasy world. The film won three Academy Awards in 2007.","id":"1417","runtime":119,"imdbId":"tt0457430","trailer":"http:\/\/www.youtube.com\/watch?v=RbffV5LZfZI","homepage":"http:\/\/www.panslabyrinth.com","version":210,"lastModified":"1300079761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60d\/4d2ef30c7b9aa125f700060d\/el-laberinto-del-fauno-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Pan's Labyrinth","releaseDate":1160870400000,"language":"en","tagline":"What happens when make-believe believes it's real?","type":"Movie","_key":"10215"} +{"label":"Ivana Baquero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ba4\/4cba37d27b9aa138d6000ba4\/ivana-baquero-profile.jpg","version":23,"birthday":"771285600000","id":"16970","lastModified":"1299492460000","name":"Ivana Baquero","type":"Person","_key":"10216"} +{"label":"Sergi L\u00f3pez","version":50,"id":"16972","lastModified":"1300090393000","name":"Sergi L\u00f3pez","type":"Person","_key":"10217"} +{"label":"Doug Jones","version":59,"id":"17005","lastModified":"1300024964000","name":"Doug Jones","type":"Person","_key":"10218"} +{"label":"Ariadna Gil","version":23,"id":"17006","lastModified":"1299493088000","name":"Ariadna Gil","type":"Person","_key":"10219"} +{"label":"Roger Casamajor","version":24,"id":"17007","lastModified":"1299494502000","name":"Roger Casamajor","type":"Person","_key":"10220"} +{"label":"Guillermo del Toro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fa3\/4d205f315e73d66b3b001fa3\/guillermo-del-toro-profile.jpg","version":105,"id":"10828","lastModified":"1300090331000","name":"Guillermo del Toro","type":"Person","_key":"10221"} +{"label":"Te doy mis ojos","description":"One winter night, Pilar runs away from home. With her, she takes only a few belongings and her son, Juan. Antonio soon sets out to look for her. He says Pilar is his sunshine, and what's more, \"She gave him her eyes\"...","id":"1418","runtime":107,"imdbId":"tt0350193","version":63,"lastModified":"1299909340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f1\/4d45a35a7b9aa15bbb0077f1\/te-doy-mis-ojos-mid.jpg","studio":"Alta Producci\u00f3n S.L.","genre":"Drama","title":"Te doy mis ojos","releaseDate":1065571200000,"language":"en","type":"Movie","_key":"10222"} +{"label":"Ic\u00edar Bolla\u00edn","version":28,"id":"16973","lastModified":"1299495477000","name":"Ic\u00edar Bolla\u00edn","type":"Person","_key":"10223"} +{"label":"Laia Marull","version":16,"id":"16974","lastModified":"1299496573000","name":"Laia Marull","type":"Person","_key":"10224"} +{"label":"Kiti Manver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14e\/4cfbbe487b9aa1514900314e\/kiti-manver-profile.jpg","version":33,"id":"16975","lastModified":"1299927906000","name":"Kiti Manver","type":"Person","_key":"10225"} +{"label":"Elisabet Gelabert","version":15,"id":"16976","lastModified":"1299495703000","name":"Elisabet Gelabert","type":"Person","_key":"10226"} +{"label":"Nicol\u00e1s Fern\u00e1ndez Luna","version":15,"id":"16977","lastModified":"1299495704000","name":"Nicol\u00e1s Fern\u00e1ndez Luna","type":"Person","_key":"10227"} +{"label":"David Mooney","version":18,"id":"16978","lastModified":"1299497456000","name":"David Mooney","type":"Person","_key":"10228"} +{"label":"Chus Guti\u00e9rrez","version":18,"id":"16979","lastModified":"1299494841000","name":"Chus Guti\u00e9rrez","type":"Person","_key":"10229"} +{"label":"Elena Irureta","version":18,"id":"16980","lastModified":"1299499030000","name":"Elena Irureta","type":"Person","_key":"10230"} +{"label":"Vollidiot","description":"Simon ist 29, Telefonverk\u00e4ufer und ein totaler Versager bei Frauen. Nach gut einem Jahr Beziehungsabstinenz verliebt er sich auf den ersten Blick in die Coffeshop-Mitarbeiterin Marcia P. Garcia. Das Problem daran: Er bekommt es nicht hin, ihr seine Gef\u00fchle mitzuteilen. Als er dann von ihr eine Abfuhr erteilt bekommt, wird Simons Verh\u00e4ltnis zu seinem besten Freund Flik auf die Probe gestellt...","id":"1419","runtime":102,"imdbId":"tt0890888","homepage":"http:\/\/www.vollidiot-derfilm.de\/","version":81,"lastModified":"1299910966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f94\/4bc9106a017a3c57fe005f94\/vollidiot-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"Vollidiot","releaseDate":1176940800000,"language":"en","type":"Movie","_key":"10231"} +{"label":"Oliver Pocher","version":19,"id":"17008","lastModified":"1299494631000","name":"Oliver Pocher","type":"Person","_key":"10232"} +{"label":"Ellenie Salvo Gonz\u00e1lez","version":13,"id":"17009","lastModified":"1299493828000","name":"Ellenie Salvo Gonz\u00e1lez","type":"Person","_key":"10233"} +{"label":"Oliver Fleischer","version":13,"id":"17015","lastModified":"1299495617000","name":"Oliver Fleischer","type":"Person","_key":"10234"} +{"label":"Tomas Spencer","version":13,"id":"54464","lastModified":"1299503783000","name":"Tomas Spencer","type":"Person","_key":"10235"} +{"label":"Friederike Kempter","version":25,"id":"28273","lastModified":"1299493796000","name":"Friederike Kempter","type":"Person","_key":"10236"} +{"label":"Herbert Feuerstein","version":21,"id":"54465","lastModified":"1299905314000","name":"Herbert Feuerstein","type":"Person","_key":"10237"} +{"label":"Julia Stinshoff","version":17,"id":"54466","lastModified":"1299503897000","name":"Julia Stinshoff","type":"Person","_key":"10238"} +{"label":"Jana Pallaske","version":43,"id":"20259","lastModified":"1299491614000","name":"Jana Pallaske","type":"Person","_key":"10239"} +{"label":"Daniela Preu\u00df","version":18,"id":"49174","lastModified":"1299498686000","name":"Daniela Preu\u00df","type":"Person","_key":"10240"} +{"label":"Cecilia Kunz","version":15,"id":"54467","lastModified":"1299502748000","name":"Cecilia Kunz","type":"Person","_key":"10241"} +{"label":"Holger Speckhahn","version":19,"id":"36864","lastModified":"1299497762000","name":"Holger Speckhahn","type":"Person","_key":"10242"} +{"label":"Tommy Jaud","version":14,"id":"17014","lastModified":"1299498265000","name":"Tommy Jaud","type":"Person","_key":"10243"} +{"label":"Henning Krautmacher","version":15,"id":"54468","lastModified":"1299500376000","name":"Henning Krautmacher","type":"Person","_key":"10244"} +{"label":"Adriana Altaras","version":20,"id":"46992","lastModified":"1299498660000","name":"Adriana Altaras","type":"Person","_key":"10245"} +{"label":"Tobi Baumann","version":14,"id":"17010","lastModified":"1299495285000","name":"Tobi Baumann","type":"Person","_key":"10246"} +{"label":"Breakfast on Pluto","description":"In the 1970s, a foundling lad, Patrick \"Kitten\" Braden, comes of age by leaving his Irish town for London, in part to look for his mother and in part because his trans-gender nature is beyond the town's understanding.","id":"1420","runtime":129,"imdbId":"tt0411195","homepage":"http:\/\/www.breakfastonpluto.co.uk\/","version":125,"lastModified":"1300079357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fab\/4bc9106d017a3c57fe005fab\/breakfast-on-pluto-mid.jpg","studio":"Number 9 Films","genre":"Comedy","title":"Breakfast on Pluto","releaseDate":1125705600000,"language":"en","type":"Movie","_key":"10247"} +{"label":"Ruth Negga","version":14,"id":"17018","lastModified":"1299496527000","name":"Ruth Negga","type":"Person","_key":"10248"} +{"label":"Laurence Kinlan","version":16,"id":"17019","lastModified":"1299496355000","name":"Laurence Kinlan","type":"Person","_key":"10249"} +{"label":"Conor McEvoy","version":13,"id":"17020","lastModified":"1299501134000","name":"Conor McEvoy","type":"Person","_key":"10250"} +{"label":"Bryan Ferry","version":13,"id":"17021","lastModified":"1299501134000","name":"Bryan Ferry","type":"Person","_key":"10251"} +{"label":"Antonia Campbell-Hughes","version":16,"id":"17022","lastModified":"1299498896000","name":"Antonia Campbell-Hughes","type":"Person","_key":"10252"} +{"label":"Eamonn Owens","version":17,"id":"17779","lastModified":"1299495470000","name":"Eamonn Owens","type":"Person","_key":"10253"} +{"label":"Owen Roe","version":13,"id":"17024","lastModified":"1299501622000","name":"Owen Roe","type":"Person","_key":"10254"} +{"label":"Paraic Breathnach","version":13,"id":"17025","lastModified":"1299501134000","name":"Paraic Breathnach","type":"Person","_key":"10255"} +{"label":"Ruth McCabe","version":17,"id":"17026","lastModified":"1299495703000","name":"Ruth McCabe","type":"Person","_key":"10256"} +{"label":"Charlene McKenna","version":13,"id":"17027","lastModified":"1299501134000","name":"Charlene McKenna","type":"Person","_key":"10257"} +{"label":"The Man Who Loved Women","description":"At Bertrand Morane's burial there are many of the women that the 40-year-old engineer loved. In flashback Bertrand's life and love affairs are told by himself while writing an autobiographical novel.","id":"1421","runtime":119,"imdbId":"tt0076155","version":102,"lastModified":"1299909886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f0\/4d2773475e73d626ac0019f0\/l-homme-qui-aimait-les-femmes-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"The Man Who Loved Women","releaseDate":230947200000,"language":"en","type":"Movie","_key":"10258"} +{"label":"Nelly Borgeaud","version":24,"id":"17029","lastModified":"1299495656000","name":"Nelly Borgeaud","type":"Person","_key":"10259"} +{"label":"Genevi\u00e8ve Fontanel","version":16,"id":"17030","lastModified":"1299495456000","name":"Genevi\u00e8ve Fontanel","type":"Person","_key":"10260"} +{"label":"Val\u00e9rie Bonnier","version":15,"id":"17031","lastModified":"1299501406000","name":"Val\u00e9rie Bonnier","type":"Person","_key":"10261"} +{"label":"Sabine Glaser","version":15,"id":"18480","lastModified":"1299497602000","name":"Sabine Glaser","type":"Person","_key":"10262"} +{"label":"Anna Perrier","version":14,"id":"18481","lastModified":"1299497198000","name":"Anna Perrier","type":"Person","_key":"10263"} +{"label":"Marie-Jeanne Montfajon","version":15,"id":"18482","lastModified":"1299501623000","name":"Marie-Jeanne Montfajon","type":"Person","_key":"10264"} +{"label":"The Departed","description":"To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise in Martin Scorsese's multiple Oscar-winning crime thriller. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.","id":"1422","runtime":151,"imdbId":"tt0407887","trailer":"http:\/\/www.youtube.com\/watch?v=5o03R0bRcbQ","homepage":"http:\/\/thedeparted.warnerbros.com\/","version":366,"lastModified":"1300079040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc9\/4bc91073017a3c57fe005fc9\/the-departed-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Departed","releaseDate":1160092800000,"language":"en","tagline":"Lies. Betrayal. Sacrifice. How far will you take it?","type":"Movie","_key":"10265"} +{"label":"Dick Hughes","version":24,"id":"18477","lastModified":"1299492930000","name":"Dick Hughes","type":"Person","_key":"10266"} +{"label":"Anthony Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4cdc57037b9aa1380200006a\/anthony-anderson-profile.jpg","version":86,"birthday":"19522800000","id":"18471","birthplace":"Los Angeles, California, USA","lastModified":"1299491171000","name":"Anthony Anderson","type":"Person","_key":"10267"} +{"label":"Kevin Corrigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d4\/4cd9d2a97b9aa11b220006d4\/kevin-corrigan-profile.jpg","version":72,"id":"18472","lastModified":"1300090379000","name":"Kevin Corrigan","type":"Person","_key":"10268"} +{"label":"James Badge Dale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4d45f6275e73d6706300202d\/james-badge-dale-profile.jpg","version":39,"id":"18473","lastModified":"1299849766000","name":"James Badge Dale","type":"Person","_key":"10269"} +{"label":"Kristen Dalton","version":24,"id":"18475","lastModified":"1299595104000","name":"Kristen Dalton","type":"Person","_key":"10270"} +{"label":"Thomas B. Duffy","version":21,"id":"18476","lastModified":"1299493450000","name":"Thomas B. Duffy","type":"Person","_key":"10271"} +{"label":"Flying Saucer Rock 'N' Roll","description":"Flying Saucer Rock N Roll is the debut feature film from the father-son duo Eric and Joe Callero. The year is 1957 as a group of rockabilly and beatnik teens are visited by weed smoking Martian zombies who have come to take their earth women. Filmed with respect for classic horror films and full of laughs as the viewer is taken on an adventure like no other.","id":"1423","runtime":85,"imdbId":"tt1344607","trailer":"http:\/\/www.youtube.com\/watch?v=34","homepage":"http:\/\/www.flyingsaucerrocks.com\/","version":55,"lastModified":"1299909415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4bc91076017a3c57fe005fdd\/flying-saucer-rock-n-roll-mid.jpg","genre":"Adventure","title":"Flying Saucer Rock 'N' Roll","releaseDate":1142640000000,"language":"en","type":"Movie","_key":"10272"} +{"label":"Eric Callero","version":14,"id":"17033","lastModified":"1299496475000","name":"Eric Callero","type":"Person","_key":"10273"} +{"label":"Josh Duthie","version":13,"id":"17035","lastModified":"1299496558000","name":"Josh Duthie","type":"Person","_key":"10274"} +{"label":"Elan Freydenson","version":13,"id":"17036","lastModified":"1299497604000","name":"Elan Freydenson","type":"Person","_key":"10275"} +{"label":"Shannon Lark","version":16,"id":"17037","lastModified":"1299495471000","name":"Shannon Lark","type":"Person","_key":"10276"} +{"label":"November","description":"No overview found.","id":"1424","runtime":73,"imdbId":"tt0368089","version":132,"lastModified":"1300078758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe6\/4bc91077017a3c57fe005fe6\/november-mid.jpg","studio":"IFC Productions","genre":"Drama","title":"November","releaseDate":1074384000000,"language":"en","type":"Movie","_key":"10277"} +{"label":"Courteney Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d1\/4ca5ff017b9aa16eda0004d1\/courteney-cox-profile.jpg","version":62,"id":"14405","lastModified":"1300090272000","name":"Courteney Cox","type":"Person","_key":"10278"} +{"label":"Nick Offerman","version":13,"id":"17039","lastModified":"1299496932000","name":"Nick Offerman","type":"Person","_key":"10279"} +{"label":"Matthew Carey","version":13,"id":"17040","lastModified":"1299495942000","name":"Matthew Carey","type":"Person","_key":"10280"} +{"label":"Robert Wu","version":12,"id":"17041","lastModified":"1299496931000","name":"Robert Wu","type":"Person","_key":"10281"} +{"label":"Greg Harrison","version":15,"id":"17042","lastModified":"1299494321000","name":"Greg Harrison","type":"Person","_key":"10282"} +{"label":"Maria am Wasser","description":"No overview found.","id":"1426","runtime":100,"imdbId":"tt0490174","homepage":"http:\/\/www.maria-am-wasser-derfilm.de\/","version":112,"lastModified":"1299910256000","genre":"Drama","title":"Maria am Wasser","releaseDate":1173312000000,"language":"en","type":"Movie","_key":"10283"} +{"label":"Falk Rockstroh","version":14,"id":"17059","lastModified":"1299494368000","name":"Falk Rockstroh","type":"Person","_key":"10284"} +{"label":"Louis El-Ghussein","version":13,"id":"17061","lastModified":"1299499434000","name":"Louis El-Ghussein","type":"Person","_key":"10285"} +{"label":"Thomas Wendrich","version":20,"id":"17055","lastModified":"1299497679000","name":"Thomas Wendrich","type":"Person","_key":"10286"} +{"label":"Perfume The Story Of A Murderer","description":"Jean-Baptiste Grenouille, born in the stench of eighteenth century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. His work, however, takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.","id":"1427","runtime":147,"imdbId":"tt0396171","trailer":"http:\/\/www.youtube.com\/watch?v=1732","homepage":"http:\/\/www.parfum.film.de\/","version":194,"lastModified":"1300078496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4bc91080017a3c57fe00600e\/perfume-the-story-of-a-murderer-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Drama","title":"Perfume The Story Of A Murderer","releaseDate":1157500800000,"language":"en","type":"Movie","_key":"10287"} +{"label":"Ben Whishaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2de\/4c95d10b7b9aa10d5a0002de\/ben-whishaw-profile.jpg","version":36,"id":"17064","lastModified":"1300029683000","name":"Ben Whishaw","type":"Person","_key":"10288"} +{"label":"Enric Arquimbau","version":20,"id":"17066","lastModified":"1299494237000","name":"Enric Arquimbau","type":"Person","_key":"10289"} +{"label":"Karoline Herfurth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e7f\/4d1b981f5e73d66594000e7f\/karoline-herfurth-profile.jpg","version":42,"id":"17067","lastModified":"1299492272000","name":"Karoline Herfurth","type":"Person","_key":"10290"} +{"label":"David Calder","version":40,"id":"10779","lastModified":"1299583266000","name":"David Calder","type":"Person","_key":"10291"} +{"label":"Jessica Schwarz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3af\/4d7b846a5e73d628360013af\/jessica-schwarz-profile.jpg","version":37,"id":"17068","lastModified":"1299936858000","name":"Jessica Schwarz","type":"Person","_key":"10292"} +{"label":"Sian Thomas","version":21,"id":"17069","lastModified":"1299494969000","name":"Sian Thomas","type":"Person","_key":"10293"} +{"label":"Paul Berrondo","version":21,"id":"17070","lastModified":"1299494084000","name":"Paul Berrondo","type":"Person","_key":"10294"} +{"label":"Timothy Davies","version":22,"id":"17071","lastModified":"1299515458000","name":"Timothy Davies","type":"Person","_key":"10295"} +{"label":"Sam Douglas","version":22,"id":"17072","lastModified":"1299494480000","name":"Sam Douglas","type":"Person","_key":"10296"} +{"label":"Harris Gordon","version":20,"id":"17073","lastModified":"1299494237000","name":"Harris Gordon","type":"Person","_key":"10297"} +{"label":"Sara Forestier","version":37,"id":"17074","lastModified":"1299492155000","name":"Sara Forestier","type":"Person","_key":"10298"} +{"label":"Joanna Griffiths","version":20,"id":"17075","lastModified":"1299494237000","name":"Joanna Griffiths","type":"Person","_key":"10299"} +{"label":"Alvaro Roque","version":19,"id":"17076","lastModified":"1299515457000","name":"Alvaro Roque","type":"Person","_key":"10300"} +{"label":"Franck Lefeuvre","version":20,"id":"17077","lastModified":"1299494679000","name":"Franck Lefeuvre","type":"Person","_key":"10301"} +{"label":"Michael Smiley","version":27,"id":"17078","lastModified":"1299493877000","name":"Michael Smiley","type":"Person","_key":"10302"} +{"label":"Richard Felix","version":20,"id":"17079","lastModified":"1299495266000","name":"Richard Felix","type":"Person","_key":"10303"} +{"label":"Rachel Hurd-Wood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8cd\/4d7abd0a5e73d65ec60008cd\/rachel-hurd-wood-profile.jpg","version":37,"id":"129050","lastModified":"1299885821000","name":"Rachel Hurd-Wood","type":"Person","_key":"10304"} +{"label":"Once Upon a Time in Mexico","description":"Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.","id":"1428","runtime":102,"imdbId":"tt0285823","trailer":"http:\/\/www.youtube.com\/watch?v=1724","version":154,"lastModified":"1300078352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50a\/4d3fc6bb5e73d622c700550a\/once-upon-a-time-in-mexico-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Once Upon a Time in Mexico","releaseDate":1061942400000,"language":"en","tagline":"The Time Has Come.","type":"Movie","_key":"10305"} +{"label":"Enrique Iglesias","version":16,"id":"20231","lastModified":"1299496575000","name":"Enrique Iglesias","type":"Person","_key":"10306"} +{"label":"25th Hour","description":"The filmed adaptation from the David Benioff's novel of the same name. Set in New York, a convicted drug dealer named Monty has one day left of freedom before he is sent to prison. Anger, blame, frustration, betrayal, guilt and loneliness are themes on this last day of friends, family, parties, saying goodbye, and setting things straight. A Spike Lee joint.","id":"1429","runtime":135,"imdbId":"tt0307901","trailer":"http:\/\/www.youtube.com\/watch?v=lDBnlE1JEf0","version":157,"lastModified":"1300078186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4bc91086017a3c57fe006035\/25th-hour-mid.jpg","studio":"Touchstone Pictures","genre":"Crime","title":"25th Hour","releaseDate":1039996800000,"language":"en","tagline":"This life was so close to never happening","type":"Movie","_key":"10307"} +{"label":"Tony Siragusa","version":17,"id":"27036","lastModified":"1299495575000","name":"Tony Siragusa","type":"Person","_key":"10308"} +{"label":"Levan Uchaneishvili","version":18,"id":"27037","lastModified":"1299493717000","name":"Levan Uchaneishvili","type":"Person","_key":"10309"} +{"label":"Bowling for Columbine","description":"Michael Moore tries to find more information on the Columbine shooting incident and the larger picture of arms control in the USA.","id":"1430","runtime":120,"imdbId":"tt0310793","trailer":"http:\/\/www.youtube.com\/watch?v=EUSpszWfu_w","homepage":"http:\/\/www.bowlingforcolumbine.com\/index.php","version":147,"lastModified":"1300077990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae6\/4d77afa87b9aa15c81000ae6\/bowling-for-columbine-mid.jpg","studio":"Alliance Communications","genre":"Action","title":"Bowling for Columbine","releaseDate":1021420800000,"language":"en","tagline":"One nation under the gun.","type":"Movie","_key":"10310"} +{"label":"Michael Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/677\/4d1ded2d5e73d66b30000677\/michael-moore-profile.jpg","version":84,"id":"17087","lastModified":"1300090319000","name":"Michael Moore","type":"Person","_key":"10311"} +{"label":"George Bush","version":26,"id":"46432","lastModified":"1299493400000","name":"George Bush","type":"Person","_key":"10312"} +{"label":"George W. Bush","version":43,"id":"19011","lastModified":"1299492970000","name":"George W. Bush","type":"Person","_key":"10313"} +{"label":"Dick Clark","version":22,"id":"46433","lastModified":"1299494842000","name":"Dick Clark","type":"Person","_key":"10314"} +{"label":"The Devil's Backbone","description":"All hell breaks loose when a ghost and an evil care-taker haunt an orphanage for young boys during the Spanish Civil War. ","id":"1433","runtime":106,"imdbId":"tt0256009","version":171,"lastModified":"1299910706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07b\/4bc91094017a3c57fe00607b\/el-espinazo-del-diablo-mid.jpg","studio":"Anhelo Producciones","genre":"Drama","title":"The Devil's Backbone","releaseDate":980294400000,"language":"en","tagline":"What is a ghost?","type":"Movie","_key":"10315"} +{"label":"Eduardo Noriega","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5b\/4cfd104c7b9aa15c97002a5b\/eduardo-noriega-profile.jpg","version":36,"id":"17093","lastModified":"1299948834000","name":"Eduardo Noriega","type":"Person","_key":"10316"} +{"label":"Federico Luppi","version":28,"id":"17094","lastModified":"1299495373000","name":"Federico Luppi","type":"Person","_key":"10317"} +{"label":"Fernando Tielve","version":16,"id":"17095","lastModified":"1299495695000","name":"Fernando Tielve","type":"Person","_key":"10318"} +{"label":"\u00cd\u00f1igo Garc\u00e9s","version":15,"id":"17096","lastModified":"1299496562000","name":"\u00cd\u00f1igo Garc\u00e9s","type":"Person","_key":"10319"} +{"label":"Irene Visedo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a0c\/4d3035117b9aa140ec000a0c\/irene-visedo-profile.jpg","version":18,"id":"17097","lastModified":"1299495041000","name":"Irene Visedo","type":"Person","_key":"10320"} +{"label":"Jos\u00e9 Manuel Lorenzo","version":15,"id":"17098","lastModified":"1299497708000","name":"Jos\u00e9 Manuel Lorenzo","type":"Person","_key":"10321"} +{"label":"Junio Valverde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4c7e69875e73d648df0000d4\/junio-valverde-profile.jpg","version":18,"id":"17099","lastModified":"1299494558000","name":"Junio Valverde","type":"Person","_key":"10322"} +{"label":"Berta Ojea","version":17,"id":"17100","lastModified":"1299497712000","name":"Berta Ojea","type":"Person","_key":"10323"} +{"label":"Adri\u00e1n Lamana","version":15,"id":"17101","lastModified":"1299497712000","name":"Adri\u00e1n Lamana","type":"Person","_key":"10324"} +{"label":"Daniel Esparza","version":14,"id":"17102","lastModified":"1299496093000","name":"Daniel Esparza","type":"Person","_key":"10325"} +{"label":"Zippeldy & Fetterig","description":"No overview found.","id":"1434","runtime":5,"version":17,"lastModified":"1299532012000","genre":"Animation","title":"Zippeldy & Fetterig","releaseDate":1068768000000,"language":"en","type":"Movie","_key":"10326"} +{"label":"Jonathan Harth","version":13,"id":"17103","lastModified":"1299497360000","name":"Jonathan Harth","type":"Person","_key":"10327"} +{"label":"Michael Wirths","version":13,"id":"17104","lastModified":"1299501133000","name":"Michael Wirths","type":"Person","_key":"10328"} +{"label":"Tarnation","description":"No overview found.","id":"1435","runtime":91,"imdbId":"tt0390538","version":105,"lastModified":"1300077568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4bc91095017a3c57fe006080\/tarnation-mid.jpg","genre":"Documentary","title":"Tarnation","releaseDate":1066521600000,"language":"en","type":"Movie","_key":"10329"} +{"label":"Renee Leblanc","version":13,"id":"17109","lastModified":"1299496465000","name":"Renee Leblanc","type":"Person","_key":"10330"} +{"label":"Adolph Davis","version":13,"id":"17110","lastModified":"1299496411000","name":"Adolph Davis","type":"Person","_key":"10331"} +{"label":"Rosemary Davis","version":13,"id":"17111","lastModified":"1299496411000","name":"Rosemary Davis","type":"Person","_key":"10332"} +{"label":"David Sanin Paz","version":13,"id":"17112","lastModified":"1299499290000","name":"David Sanin Paz","type":"Person","_key":"10333"} +{"label":"The Warrior","description":"In 1375, China was in chaos between Yuan Dynasty and Ming Dynasty. Coryo (an ancient kingdom of Korea then) sent a delegation of many diplomats, soldiers and a silent slave to make peace with the new Chinese government. However, this delegation got charged as spies and sent in exile to a remote desert.","id":"1436","runtime":155,"imdbId":"tt0275083","version":124,"lastModified":"1299909859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/089\/4bc91096017a3c57fe006089\/musa-mid.jpg","studio":"Beijing Film Studio","genre":"History","title":"The Warrior","releaseDate":999820800000,"language":"en","type":"Movie","_key":"10334"} +{"label":"Sung-su Kim","version":14,"id":"17119","lastModified":"1299496487000","name":"Sung-su Kim","type":"Person","_key":"10335"} +{"label":"Woo-sung Jung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/732\/4d05b6377b9aa11bbf002732\/woo-sung-jung-profile.jpg","version":28,"id":"17120","lastModified":"1299493283000","name":"Woo-sung Jung","type":"Person","_key":"10336"} +{"label":"Sung-kee Ahn","version":29,"id":"17121","lastModified":"1299493795000","name":"Sung-kee Ahn","type":"Person","_key":"10337"} +{"label":"Jin-mo Ju","version":28,"id":"17122","lastModified":"1299494893000","name":"Jin-mo Ju","type":"Person","_key":"10338"} +{"label":"Yong-woo Park","version":20,"id":"17124","lastModified":"1299495623000","name":"Yong-woo Park","type":"Person","_key":"10339"} +{"label":"Jeong-hak Park","version":14,"id":"17125","lastModified":"1299497620000","name":"Jeong-hak Park","type":"Person","_key":"10340"} +{"label":"Hye-jin Yu","version":14,"id":"17126","lastModified":"1299495580000","name":"Hye-jin Yu","type":"Person","_key":"10341"} +{"label":"Seok-yong Jeong","version":16,"id":"17127","lastModified":"1299494929000","name":"Seok-yong Jeong","type":"Person","_key":"10342"} +{"label":"Du-il Lee","version":18,"id":"17128","lastModified":"1299499226000","name":"Du-il Lee","type":"Person","_key":"10343"} +{"label":"Yeong-mok Han","version":18,"id":"17129","lastModified":"1299501434000","name":"Yeong-mok Han","type":"Person","_key":"10344"} +{"label":"Abgefahren","description":"No overview found.","id":"1437","runtime":86,"imdbId":"tt0388679","version":54,"lastModified":"1299531933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4cdf36467b9aa168b300002f\/abgefahren-mid.jpg","title":"Abgefahren","releaseDate":1080777600000,"language":"en","type":"Movie","_key":"10345"} +{"label":"Jakob Sch\u00e4uffelen","version":17,"id":"17135","lastModified":"1299497721000","name":"Jakob Sch\u00e4uffelen","type":"Person","_key":"10346"} +{"label":"Felicitas Woll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4ca627b55e73d643ec000032\/felicitas-woll-profile.jpg","version":25,"id":"57362","lastModified":"1299497359000","name":"Felicitas Woll","type":"Person","_key":"10347"} +{"label":"Sebastian Str\u00f6bel","version":22,"id":"68478","lastModified":"1299501133000","name":"Sebastian Str\u00f6bel","type":"Person","_key":"10348"} +{"label":"Nina Tenge","version":17,"id":"95258","lastModified":"1299507698000","name":"Nina Tenge","type":"Person","_key":"10349"} +{"label":"Florian Fischer","version":21,"id":"49203","lastModified":"1299503379000","name":"Florian Fischer","type":"Person","_key":"10350"} +{"label":"Regoch","description":"No overview found.","id":"1438","runtime":23,"imdbId":"tt0940833","homepage":"http:\/\/fairytales4you.net\/","version":28,"lastModified":"1299532012000","genre":"Animation","title":"Regoch","releaseDate":1163980800000,"language":"en","type":"Movie","_key":"10351"} +{"label":"Helena Bulaja","version":13,"id":"17151","lastModified":"1299501621000","name":"Helena Bulaja","type":"Person","_key":"10352"} +{"label":"Anna and the King","description":"The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860's. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.","id":"1439","runtime":148,"imdbId":"tt0166485","trailer":"http:\/\/www.youtube.com\/watch?v=xHPoKOi1XcM","version":172,"lastModified":"1299964651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/218\/4c7eb3487b9aa10d96000218\/anna-and-the-king-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"Anna and the King","releaseDate":945302400000,"language":"en","type":"Movie","_key":"10353"} +{"label":"Ling Bai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04c\/4c7d05955e73d647bd00004c\/ling-bai-profile.jpg","version":67,"id":"39126","lastModified":"1299668124000","name":"Ling Bai","type":"Person","_key":"10354"} +{"label":"Syed Alwi","version":12,"id":"17154","lastModified":"1299498432000","name":"Syed Alwi","type":"Person","_key":"10355"} +{"label":"Kay Siu Lim","version":12,"id":"17155","lastModified":"1299496029000","name":"Kay Siu Lim","type":"Person","_key":"10356"} +{"label":"Melissa Campbell","version":12,"id":"17156","lastModified":"1299498432000","name":"Melissa Campbell","type":"Person","_key":"10357"} +{"label":"Keith Chin","version":12,"id":"17157","lastModified":"1299498432000","name":"Keith Chin","type":"Person","_key":"10358"} +{"label":"Mano Maniam","version":12,"id":"17158","lastModified":"1299498432000","name":"Mano Maniam","type":"Person","_key":"10359"} +{"label":"Shanthini Venugopal","version":12,"id":"17159","lastModified":"1299497042000","name":"Shanthini Venugopal","type":"Person","_key":"10360"} +{"label":"Deanna Yusoff","version":12,"id":"17160","lastModified":"1299498432000","name":"Deanna Yusoff","type":"Person","_key":"10361"} +{"label":"Ann Firbank","version":15,"id":"17161","lastModified":"1299499301000","name":"Ann Firbank","type":"Person","_key":"10362"} +{"label":"Andy Tennant","version":71,"id":"17167","lastModified":"1299493411000","name":"Andy Tennant","type":"Person","_key":"10363"} +{"label":"Little Children","description":"The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.","id":"1440","runtime":136,"imdbId":"tt0404203","homepage":"http:\/\/www.littlechildrenmovie.com","version":157,"lastModified":"1300076799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09b\/4bc9109a017a3c57fe00609b\/little-children-mid.jpg","studio":"Bona Fide","genre":"Comedy","title":"Little Children","releaseDate":1157068800000,"language":"en","type":"Movie","_key":"10364"} +{"label":"Stacey Beneville","version":12,"id":"17218","lastModified":"1299494197000","name":"Stacey Beneville","type":"Person","_key":"10365"} +{"label":"Patrick Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27e\/4bf9a5b3017a3c703100027e\/patrick-wilson-profile.jpg","version":85,"id":"17178","lastModified":"1300021339000","name":"Patrick Wilson","type":"Person","_key":"10366"} +{"label":"Sadie Goldstein","version":12,"id":"17180","lastModified":"1299496930000","name":"Sadie Goldstein","type":"Person","_key":"10367"} +{"label":"Ty Simpkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4cdc472a7b9aa137fe000059\/ty-simpkins-profile.jpg","version":31,"id":"17181","lastModified":"1300054872000","name":"Ty Simpkins","type":"Person","_key":"10368"} +{"label":"Noah Emmerich","version":45,"id":"11315","lastModified":"1299600897000","name":"Noah Emmerich","type":"Person","_key":"10369"} +{"label":"Jackie Earle Haley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0de\/4bd6ce37017a3c21f10000de\/jackie-earle-haley-profile.jpg","version":90,"id":"17183","lastModified":"1300001181000","name":"Jackie Earle Haley","type":"Person","_key":"10370"} +{"label":"Phyllis Somerville","version":12,"id":"17184","lastModified":"1299495941000","name":"Phyllis Somerville","type":"Person","_key":"10371"} +{"label":"Helen Carey","version":19,"id":"17185","lastModified":"1299496468000","name":"Helen Carey","type":"Person","_key":"10372"} +{"label":"Trini Alvarado","version":20,"id":"17187","lastModified":"1299539610000","name":"Trini Alvarado","type":"Person","_key":"10373"} +{"label":"Marsha Dietlein","version":16,"id":"17188","lastModified":"1299496386000","name":"Marsha Dietlein","type":"Person","_key":"10374"} +{"label":"Sarah Buxton","version":13,"id":"17191","lastModified":"1299496151000","name":"Sarah Buxton","type":"Person","_key":"10375"} +{"label":"Chadwick Brown","version":12,"id":"17192","lastModified":"1299495941000","name":"Chadwick Brown","type":"Person","_key":"10376"} +{"label":"Adam Mucci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d8\/4d10f0055e73d608420005d8\/adam-mucci-profile.jpg","version":16,"id":"17193","lastModified":"1300090369000","name":"Adam Mucci","type":"Person","_key":"10377"} +{"label":"Chance Kelly","version":12,"id":"17194","lastModified":"1299496930000","name":"Chance Kelly","type":"Person","_key":"10378"} +{"label":"Walker Ryan","version":12,"id":"17195","lastModified":"1299496930000","name":"Walker Ryan","type":"Person","_key":"10379"} +{"label":"Erica Berg","version":12,"id":"17196","lastModified":"1299498265000","name":"Erica Berg","type":"Person","_key":"10380"} +{"label":"Catherine Wolf","version":12,"id":"17214","lastModified":"1299496929000","name":"Catherine Wolf","type":"Person","_key":"10381"} +{"label":"The Contract","description":"Attempting to recover from a recent family trauma by escaping into the woods for a peaceful hiking trip, an ex-lawman and his young son stumble across a dangerous contract killer in director Bruce Beresford's forest-bound thriller.","id":"1441","runtime":97,"imdbId":"tt0445946","version":183,"lastModified":"1299964141000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ee\/4c6435337b9aa172d90008ee\/the-contract-mid.jpg","studio":"Millennium Films","genre":"Action","title":"The Contract","releaseDate":1160352000000,"language":"en","type":"Movie","_key":"10382"} +{"label":"Megan Dodds","version":16,"id":"17198","lastModified":"1299496925000","name":"Megan Dodds","type":"Person","_key":"10383"} +{"label":"Corey Johnson","version":54,"id":"17199","lastModified":"1300090277000","name":"Corey Johnson","type":"Person","_key":"10384"} +{"label":"Bill Smitrovich","version":25,"id":"17200","lastModified":"1299496066000","name":"Bill Smitrovich","type":"Person","_key":"10385"} +{"label":"Anthony Warren","version":16,"id":"17201","lastModified":"1299498261000","name":"Anthony Warren","type":"Person","_key":"10386"} +{"label":"Thomas Lockyer","version":19,"id":"17202","lastModified":"1299495937000","name":"Thomas Lockyer","type":"Person","_key":"10387"} +{"label":"Gary Whelan","version":16,"id":"17203","lastModified":"1299500372000","name":"Gary Whelan","type":"Person","_key":"10388"} +{"label":"Ian Shaw","version":18,"id":"17780","lastModified":"1299495710000","name":"Ian Shaw","type":"Person","_key":"10389"} +{"label":"Mark Johnson","version":29,"id":"17228","lastModified":"1299498707000","name":"Mark Johnson","type":"Person","_key":"10390"} +{"label":"Jamie Anderson","version":19,"id":"63985","lastModified":"1299502746000","name":"Jamie Anderson","type":"Person","_key":"10391"} +{"label":"Full Metal Village","description":"No overview found.","id":"1442","runtime":90,"imdbId":"tt0954937","homepage":"http:\/\/www.zorrofilm.de\/de\/profile.php?id=197","version":66,"lastModified":"1299911781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4bc9109f017a3c57fe0060bc\/full-metal-village-mid.jpg","studio":"Flying Moon Filmproduktion GmbH","genre":"Documentary","title":"Full Metal Village","releaseDate":1176940800000,"language":"en","type":"Movie","_key":"10392"} +{"label":"Sung Hyung Cho","version":15,"id":"17501","lastModified":"1299496368000","name":"Sung Hyung Cho","type":"Person","_key":"10393"} +{"label":"Uwe Trede","version":13,"id":"17507","lastModified":"1299495615000","name":"Uwe Trede","type":"Person","_key":"10394"} +{"label":"Lore Trede","version":16,"id":"17508","lastModified":"1299495614000","name":"Lore Trede","type":"Person","_key":"10395"} +{"label":"Klaus H. Pl\u00e4hn","version":13,"id":"17509","lastModified":"1299495588000","name":"Klaus H. Pl\u00e4hn","type":"Person","_key":"10396"} +{"label":"Irma Schaack","version":16,"id":"17511","lastModified":"1299497458000","name":"Irma Schaack","type":"Person","_key":"10397"} +{"label":"Eva Waldow","version":17,"id":"17512","lastModified":"1299499057000","name":"Eva Waldow","type":"Person","_key":"10398"} +{"label":"Ann-Kathrin Schaack","version":13,"id":"17513","lastModified":"1299501389000","name":"Ann-Kathrin Schaack","type":"Person","_key":"10399"} +{"label":"Malena Schaack","version":16,"id":"17514","lastModified":"1299501287000","name":"Malena Schaack","type":"Person","_key":"10400"} +{"label":"Norbert Venohr","version":16,"id":"17515","lastModified":"1299498898000","name":"Norbert Venohr","type":"Person","_key":"10401"} +{"label":"Birte Venohr","version":16,"id":"17516","lastModified":"1299497458000","name":"Birte Venohr","type":"Person","_key":"10402"} +{"label":"Henning Halver","version":16,"id":"17517","lastModified":"1299499289000","name":"Henning Halver","type":"Person","_key":"10403"} +{"label":"The Virgin Suicides","description":"A group of male friends become obsessed with a group of mysterious sisters who are sheltered by their strict, religious parents after one of them commits suicide.","id":"1443","runtime":97,"imdbId":"tt0159097","homepage":"http:\/\/www.paramountvantage.com\/virginsuicides\/html_3\/","version":136,"lastModified":"1300076255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a0\/4d6b12975e73d607290006a0\/the-virgin-suicides-mid.jpg","studio":"American Zoetrope","genre":"Drama","title":"The Virgin Suicides","releaseDate":927072000000,"language":"en","type":"Movie","_key":"10404"} +{"label":"A.J. Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f9e\/4d52d4037b9aa13ab4011f9e\/a-j-cook-profile.jpg","version":32,"id":"17236","lastModified":"1300090405000","name":"A.J. Cook","type":"Person","_key":"10405"} +{"label":"Leslie Hayman","version":14,"id":"17238","lastModified":"1299753703000","name":"Leslie Hayman","type":"Person","_key":"10406"} +{"label":"Chelse Swain","version":15,"id":"17239","lastModified":"1299753703000","name":"Chelse Swain","type":"Person","_key":"10407"} +{"label":"Anthony DeSimone","version":14,"id":"17240","lastModified":"1299753703000","name":"Anthony DeSimone","type":"Person","_key":"10408"} +{"label":"Lee Kagan","version":14,"id":"17241","lastModified":"1299753704000","name":"Lee Kagan","type":"Person","_key":"10409"} +{"label":"Robert Schwartzman","version":20,"id":"17242","lastModified":"1299753704000","name":"Robert Schwartzman","type":"Person","_key":"10410"} +{"label":"Jonathan Tucker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10d\/4cd9df3b7b9aa12e7c00010d\/jonathan-tucker-profile.jpg","version":69,"id":"17243","lastModified":"1299864855000","name":"Jonathan Tucker","type":"Person","_key":"10411"} +{"label":"Junebug","description":"A dealer in \"outsider\" art travels from Chicago to North Carolina to meet her new in-laws, challenging the equilibrium of this middle class Southern home.","id":"1444","runtime":106,"imdbId":"tt0418773","homepage":"http:\/\/www.sonyclassics.com\/junebug\/","version":157,"lastModified":"1300076081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ce\/4bc910a2017a3c57fe0060ce\/junebug-mid.jpg","genre":"Comedy","title":"Junebug","releaseDate":1123027200000,"language":"en","type":"Movie","_key":"10412"} +{"label":"Benjamin McKenzie","version":19,"id":"17245","lastModified":"1300090385000","name":"Benjamin McKenzie","type":"Person","_key":"10413"} +{"label":"Phil Morrison","version":13,"id":"17246","lastModified":"1299501498000","name":"Phil Morrison","type":"Person","_key":"10414"} +{"label":"The Wisdom of Crocodiles","description":"Vampire in London is searching for the ideal woman to 'redempt' him.","id":"1448","runtime":98,"imdbId":"tt0120894","version":80,"lastModified":"1299803027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4bc910a3017a3c57fe0060d3\/the-wisdom-of-crocodiles-mid.jpg","studio":"Arts Council of England","genre":"Drama","title":"The Wisdom of Crocodiles","releaseDate":912124800000,"language":"en","type":"Movie","_key":"10415"} +{"label":"Po-Chih Leong","version":16,"id":"17247","lastModified":"1299497156000","name":"Po-Chih Leong","type":"Person","_key":"10416"} +{"label":"Elina L\u00f6wensohn","version":29,"id":"17257","lastModified":"1299495343000","name":"Elina L\u00f6wensohn","type":"Person","_key":"10417"} +{"label":"Kerry Fox","version":27,"id":"17258","lastModified":"1299493034000","name":"Kerry Fox","type":"Person","_key":"10418"} +{"label":"Ashley Artus","version":13,"id":"17259","lastModified":"1299495323000","name":"Ashley Artus","type":"Person","_key":"10419"} +{"label":"Antony Cotton","version":13,"id":"17260","lastModified":"1299501728000","name":"Antony Cotton","type":"Person","_key":"10420"} +{"label":"Neran Persaud","version":13,"id":"17261","lastModified":"1299501728000","name":"Neran Persaud","type":"Person","_key":"10421"} +{"label":"Carlton Headley","version":12,"id":"17262","lastModified":"1299500684000","name":"Carlton Headley","type":"Person","_key":"10422"} +{"label":"Blood: The Last Vampire","description":"On the surface, Saya is a stunning 16-year-old, but that youthful exterior hides the tormented soul of a 400-year-old \"halfling.\" Born to a human father and a vampire mother, she has for centuries been a loner obsessed with using her samurai skills to rid the world of vampires, all the while knowing that she herself can survive only on blood like those she hunts.","id":"1450","runtime":91,"imdbId":"tt0806027","trailer":"http:\/\/www.youtube.com\/watch?v=pV5ukdJFGJQ","version":210,"lastModified":"1299911106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4bc910a4017a3c57fe0060e5\/blood-the-last-vampire-mid.jpg","studio":"East Wing Holdings","genre":"Action","title":"Blood: The Last Vampire","releaseDate":1243555200000,"language":"en","type":"Movie","_key":"10423"} +{"label":"Ronny Yu","version":43,"id":"17268","lastModified":"1299796948000","name":"Ronny Yu","type":"Person","_key":"10424"} +{"label":"Allison Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/536\/4d3023ce5e73d667ea000536\/allison-miller-profile.jpg","version":24,"id":"17270","lastModified":"1300090344000","name":"Allison Miller","type":"Person","_key":"10425"} +{"label":"Gianna Jun","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4d103eea7b9aa1148e00010a\/gianna-jun-profile.jpg","version":40,"id":"63436","lastModified":"1300090444000","name":"Gianna Jun","type":"Person","_key":"10426"} +{"label":"Superman Returns","description":"Set 5 years after the end of Superman II, the film begins when Superman returns to discover his absence allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the caped crusader.","id":"1452","runtime":154,"imdbId":"tt0348150","trailer":"http:\/\/www.youtube.com\/watch?v=QKABxUT14Ss","homepage":"http:\/\/www.superman.com","version":264,"lastModified":"1300075643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4bc910b1017a3c57fe00613b\/superman-returns-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Superman Returns","releaseDate":1150848000000,"language":"en","type":"Movie","_key":"10427"} +{"label":"Brandon Routh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4c7d9ffb5e73d648de000015\/brandon-routh-profile.jpg","version":69,"id":"17271","lastModified":"1300090371000","name":"Brandon Routh","type":"Person","_key":"10428"} +{"label":"James Marsden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b4\/4bd42122017a3c7fa50000b4\/james-marsden-profile.jpg","version":126,"birthday":"117154800000","id":"11006","birthplace":"Stillwater, Oklahoma, USA","lastModified":"1300090286000","name":"James Marsden","type":"Person","_key":"10429"} +{"label":"Sam Huntington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b3c\/4cf3d3b95e73d62386000b3c\/sam-huntington-profile.jpg","version":39,"id":"53492","lastModified":"1300090472000","name":"Sam Huntington","type":"Person","_key":"10430"} +{"label":"Kal Penn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b6\/4d44a4857b9aa15bb00065b6\/kal-penn-profile.jpg","version":67,"id":"53493","lastModified":"1300090415000","name":"Kal Penn","type":"Person","_key":"10431"} +{"label":"Tristan Lake Leabu","version":18,"id":"53494","lastModified":"1299495328000","name":"Tristan Lake Leabu","type":"Person","_key":"10432"} +{"label":"David Fabrizio","version":24,"id":"41318","lastModified":"1299493124000","name":"David Fabrizio","type":"Person","_key":"10433"} +{"label":"Clean, Shaven","description":"No overview found.","id":"1479","runtime":79,"imdbId":"tt0106579","version":83,"lastModified":"1299962780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/140\/4bc910b1017a3c57fe006140\/clean-shaven-mid.jpg","studio":"DSM III","genre":"Drama","title":"Clean, Shaven","releaseDate":747187200000,"language":"en","type":"Movie","_key":"10434"} +{"label":"Lodge Kerrigan","version":17,"id":"17277","lastModified":"1299495474000","name":"Lodge Kerrigan","type":"Person","_key":"10435"} +{"label":"Megan Owen","version":16,"id":"36196","lastModified":"1299497720000","name":"Megan Owen","type":"Person","_key":"10436"} +{"label":"Jennifer MacDonald","version":20,"id":"36197","lastModified":"1299497364000","name":"Jennifer MacDonald","type":"Person","_key":"10437"} +{"label":"Alice Levitt","version":16,"id":"36198","lastModified":"1299499286000","name":"Alice Levitt","type":"Person","_key":"10438"} +{"label":"Molly Castelloe","version":16,"id":"36199","lastModified":"1299501140000","name":"Molly Castelloe","type":"Person","_key":"10439"} +{"label":"Robert Albert","version":16,"id":"36200","lastModified":"1299501140000","name":"Robert Albert","type":"Person","_key":"10440"} +{"label":"J. Dixon Byrne","version":16,"id":"36201","lastModified":"1299501140000","name":"J. Dixon Byrne","type":"Person","_key":"10441"} +{"label":"Touch of Evil","description":"Stark, perverse story of murder, kidnapping, and police corruption in Mexican border town. ","id":"1480","runtime":106,"imdbId":"tt0052311","trailer":"http:\/\/www.youtube.com\/watch?v=YmOX7tL_rcc","version":146,"lastModified":"1299909959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/152\/4bc910b4017a3c57fe006152\/touch-of-evil-mid.jpg","studio":"UIP","genre":"Crime","title":"Touch of Evil","releaseDate":-369014400000,"language":"en","tagline":"THE STRANGEST VENGEANCE EVER PLANNED!","type":"Movie","_key":"10442"} +{"label":"Joseph Calleia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4bd5b736017a3c658a000015\/joseph-calleia-profile.jpg","version":43,"id":"33747","lastModified":"1299763871000","name":"Joseph Calleia","type":"Person","_key":"10443"} +{"label":"Akim Tamiroff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/751\/4bf54936017a3c3215000751\/akim-tamiroff-profile.jpg","version":42,"id":"30719","lastModified":"1299779950000","name":"Akim Tamiroff","type":"Person","_key":"10444"} +{"label":"Joanna Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/912\/4bf549a0017a3c320b000912\/joanna-moore-profile.jpg","version":20,"id":"94889","lastModified":"1299509439000","name":"Joanna Moore","type":"Person","_key":"10445"} +{"label":"Valentin de Vargas","version":15,"id":"94892","lastModified":"1299505085000","name":"Valentin de Vargas","type":"Person","_key":"10446"} +{"label":"Victor Millan","version":17,"id":"94893","lastModified":"1299508033000","name":"Victor Millan","type":"Person","_key":"10447"} +{"label":"Lalo Rios","version":19,"id":"94894","lastModified":"1299506763000","name":"Lalo Rios","type":"Person","_key":"10448"} +{"label":"Michael Sargent","version":15,"id":"94895","lastModified":"1299505085000","name":"Michael Sargent","type":"Person","_key":"10449"} +{"label":"Phil Harvey","version":15,"id":"94896","lastModified":"1299507196000","name":"Phil Harvey","type":"Person","_key":"10450"} +{"label":"Joi Lansing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/885\/4bfc217e017a3c7036000885\/joi-lansing-profile.jpg","version":19,"birthday":"-1285635600000","id":"55997","birthplace":"Salt Lake City, Utah, USA","lastModified":"1299500745000","name":"Joi Lansing","type":"Person","_key":"10451"} +{"label":"Zsa Zsa Gabor","version":24,"id":"44715","lastModified":"1299499221000","name":"Zsa Zsa Gabor","type":"Person","_key":"10452"} +{"label":"Billy House","version":24,"id":"85737","lastModified":"1299503074000","name":"Billy House","type":"Person","_key":"10453"} +{"label":"Mercedes McCambridge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d5\/4bf54bf4017a3c32120007d5\/mercedes-mccambridge-profile.jpg","version":37,"id":"18737","lastModified":"1299496156000","name":"Mercedes McCambridge","type":"Person","_key":"10454"} +{"label":"Dan White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d7\/4cbc5d7a7b9aa138d60011d7\/dan-white-profile.jpg","version":18,"id":"94897","lastModified":"1299506484000","name":"Dan White","type":"Person","_key":"10455"} +{"label":"Metal Skin","description":"No overview found.","id":"1481","runtime":115,"imdbId":"tt0110500","version":62,"lastModified":"1299909465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04c\/4c3e07005e73d6047b00004c\/metal-skin-mid.jpg","genre":"Action","title":"Metal Skin","releaseDate":799545600000,"language":"en","type":"Movie","_key":"10456"} +{"label":"Ben Mendelsohn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/766\/4cc2e6fb5e73d67786001766\/ben-mendelsohn-profile.jpg","version":43,"id":"77335","lastModified":"1300090419000","name":"Ben Mendelsohn","type":"Person","_key":"10457"} +{"label":"Laws of Gravity","description":"No overview found.","id":"1482","runtime":100,"imdbId":"tt0104693","version":165,"lastModified":"1300087885000","studio":"Island World","genre":"Action","title":"Laws of Gravity","releaseDate":701136000000,"language":"en","type":"Movie","_key":"10458"} +{"label":"Nick Gomez","version":19,"id":"17278","lastModified":"1299494957000","name":"Nick Gomez","type":"Person","_key":"10459"} +{"label":"Adam Trese","version":27,"id":"27858","lastModified":"1299493667000","name":"Adam Trese","type":"Person","_key":"10460"} +{"label":"Paul Schulze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4ceec7f75e73d654f5000125\/paul-schulze-profile.jpg","version":34,"id":"36189","lastModified":"1299494368000","name":"Paul Schulze","type":"Person","_key":"10461"} +{"label":"Edie Falco","version":27,"id":"36190","lastModified":"1299581030000","name":"Edie Falco","type":"Person","_key":"10462"} +{"label":"Rick Groel","version":16,"id":"36191","lastModified":"1299499286000","name":"Rick Groel","type":"Person","_key":"10463"} +{"label":"James Michael McCauley","version":17,"id":"36192","lastModified":"1299498895000","name":"James Michael McCauley","type":"Person","_key":"10464"} +{"label":"Anibal O. Lleras","version":19,"id":"36193","lastModified":"1299498894000","name":"Anibal O. Lleras","type":"Person","_key":"10465"} +{"label":"Begotten","description":"Begotten is the creation myth brought to life, the story of no less than the violent death of God and the (re)birth of nature on a barren earth.","id":"1483","runtime":78,"imdbId":"tt0101420","version":58,"lastModified":"1299531935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/161\/4bc910b7017a3c57fe006161\/begotten-mid.jpg","genre":"Horror","title":"Begotten","releaseDate":676080000000,"language":"en","type":"Movie","_key":"10466"} +{"label":"E. Elias Merhige","version":18,"id":"17279","lastModified":"1299495553000","name":"E. Elias Merhige","type":"Person","_key":"10467"} +{"label":"Brian Salzberg","version":16,"id":"36182","lastModified":"1299501136000","name":"Brian Salzberg","type":"Person","_key":"10468"} +{"label":"Donna Dempsey","version":16,"id":"36183","lastModified":"1299501135000","name":"Donna Dempsey","type":"Person","_key":"10469"} +{"label":"Stephen Charles Barry","version":16,"id":"36184","lastModified":"1299501135000","name":"Stephen Charles Barry","type":"Person","_key":"10470"} +{"label":"Der Totmacher","description":"No overview found.","id":"1484","runtime":110,"imdbId":"tt0114704","version":62,"lastModified":"1299532015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/945\/4c0a4b63017a3c29a6000945\/der-totmacher-mid.jpg","studio":"S\u00fcdwestrundfunk","genre":"Drama","title":"Der Totmacher","releaseDate":817084800000,"language":"en","type":"Movie","_key":"10471"} +{"label":"Romuald Karmakar","version":15,"id":"17280","lastModified":"1299501133000","name":"Romuald Karmakar","type":"Person","_key":"10472"} +{"label":"G\u00f6tz George","version":36,"id":"26395","lastModified":"1299497359000","name":"G\u00f6tz George","type":"Person","_key":"10473"} +{"label":"J\u00fcrgen Hentsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/216\/4ca492f45e73d636f7000216\/jurgen-hentsch-profile.jpg","version":22,"id":"23523","lastModified":"1299930280000","name":"J\u00fcrgen Hentsch","type":"Person","_key":"10474"} +{"label":"Hans-Michael Rehberg","version":23,"id":"35263","lastModified":"1299497600000","name":"Hans-Michael Rehberg","type":"Person","_key":"10475"} +{"label":"Pierre Franckh","version":16,"id":"36177","lastModified":"1299494957000","name":"Pierre Franckh","type":"Person","_key":"10476"} +{"label":"Matthias Fuchs","version":23,"id":"23379","lastModified":"1299503379000","name":"Matthias Fuchs","type":"Person","_key":"10477"} +{"label":"Marek Harloff","version":20,"id":"36178","lastModified":"1299496283000","name":"Marek Harloff","type":"Person","_key":"10478"} +{"label":"Christian Honhold","version":16,"id":"36179","lastModified":"1299501768000","name":"Christian Honhold","type":"Person","_key":"10479"} +{"label":"Get Carter","description":"Michael Caine is Jack Carter, a small-time hood working in London. When word reaches him of his brothers death, he travels to Newcastle to attend the fulneral. Refusing to accept the police report of suicide, Carter seeks out his brother's friends and acquaintances to learn who murdered his sibling and why.","id":"1485","runtime":112,"imdbId":"tt0067128","trailer":"http:\/\/www.youtube.com\/watch?v=a8qtbbEysU8","version":116,"lastModified":"1299910730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17b\/4bc910b9017a3c57fe00617b\/get-carter-mid.jpg","genre":"Action","title":"Get Carter","releaseDate":36806400000,"language":"en","type":"Movie","_key":"10480"} +{"label":"Mike Hodges","version":23,"id":"17281","lastModified":"1299493960000","name":"Mike Hodges","type":"Person","_key":"10481"} +{"label":"Ian Hendry","version":30,"id":"58339","lastModified":"1299497361000","name":"Ian Hendry","type":"Person","_key":"10482"} +{"label":"John Osborne","version":18,"id":"33323","lastModified":"1299496472000","name":"John Osborne","type":"Person","_key":"10483"} +{"label":"Hellboy","description":"In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon - Hellboy - has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.","id":"1487","runtime":121,"imdbId":"tt0167190","trailer":"http:\/\/www.youtube.com\/watch?v=1536","homepage":"http:\/\/www.sonypictures.com\/homevideo\/hellboy\/","version":214,"lastModified":"1300074523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4bc910c4017a3c57fe0061d1\/hellboy-mid.jpg","genre":"Action","title":"Hellboy","releaseDate":1080864000000,"language":"en","tagline":"From the Dark Side to Our Side.","type":"Movie","_key":"10484"} +{"label":"Rupert Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4c395b125e73d671cf0000bf\/rupert-evans-profile.jpg","version":25,"id":"17283","lastModified":"1299492179000","name":"Rupert Evans","type":"Person","_key":"10485"} +{"label":"Karel Roden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4ce021f77b9aa168b20000e6\/karel-roden-profile.jpg","version":61,"id":"10841","lastModified":"1299491455000","name":"Karel Roden","type":"Person","_key":"10486"} +{"label":"Ladislav Beran","version":19,"id":"66268","lastModified":"1299495253000","name":"Ladislav Beran","type":"Person","_key":"10487"} +{"label":"Biddy Hodson","version":19,"id":"66269","lastModified":"1299498355000","name":"Biddy Hodson","type":"Person","_key":"10488"} +{"label":"Brian Caspe","version":25,"id":"25730","lastModified":"1299583268000","name":"Brian Caspe","type":"Person","_key":"10489"} +{"label":"James Babson","version":28,"id":"25659","lastModified":"1300001180000","name":"James Babson","type":"Person","_key":"10490"} +{"label":"L\u00fc cao di","description":"No overview found.","id":"1488","runtime":102,"imdbId":"tt0461804","version":43,"lastModified":"1299532016000","studio":"Kunlun Brother Film","genre":"Drama","title":"L\u00fc cao di","releaseDate":1118448000000,"language":"en","type":"Movie","_key":"10491"} +{"label":"Hao Ning","version":18,"id":"17295","lastModified":"1299501131000","name":"Hao Ning","type":"Person","_key":"10492"} +{"label":"Hurichabilike","version":16,"id":"17429","lastModified":"1299499309000","name":"Hurichabilike","type":"Person","_key":"10493"} +{"label":"Dawa","version":17,"id":"17430","lastModified":"1299497599000","name":"Dawa","type":"Person","_key":"10494"} +{"label":"Geliban","version":13,"id":"17431","lastModified":"1299501619000","name":"Geliban","type":"Person","_key":"10495"} +{"label":"Yidexinnaribu","version":13,"id":"17432","lastModified":"1299501132000","name":"Yidexinnaribu","type":"Person","_key":"10496"} +{"label":"Badema","version":13,"id":"17433","lastModified":"1299501132000","name":"Badema","type":"Person","_key":"10497"} +{"label":"Wurima","version":12,"id":"17434","lastModified":"1299501132000","name":"Wurima","type":"Person","_key":"10498"} +{"label":"Dugema","version":12,"id":"17435","lastModified":"1299497359000","name":"Dugema","type":"Person","_key":"10499"} +{"label":"Jinlaowu","version":12,"id":"17436","lastModified":"1299501132000","name":"Jinlaowu","type":"Person","_key":"10500"} +{"label":"Buhebilike","version":12,"id":"17437","lastModified":"1299501132000","name":"Buhebilike","type":"Person","_key":"10501"} +{"label":"Sarengaowa","version":12,"id":"17438","lastModified":"1299501131000","name":"Sarengaowa","type":"Person","_key":"10502"} +{"label":"Gears of War (Working Title)","description":"No overview found.","id":"1489","runtime":0,"imdbId":"tt0990406","version":39,"lastModified":"1299809780000","studio":"New Line Cinema","genre":"Action","title":"Gears of War (Working Title)","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"10503"} +{"label":"Singendes Wasser","description":"No overview found.","id":"1490","runtime":8,"version":25,"lastModified":"1299532016000","studio":"Filmakademie Baden-W\u00fcrttemberg","genre":"Drama","title":"Singendes Wasser","releaseDate":1166486400000,"language":"en","type":"Movie","_key":"10504"} +{"label":"Schortie Scheumann","version":13,"id":"17316","lastModified":"1299499284000","name":"Schortie Scheumann","type":"Person","_key":"10505"} +{"label":"Roger Ditter","version":12,"id":"17317","lastModified":"1299501749000","name":"Roger Ditter","type":"Person","_key":"10506"} +{"label":"Thorsten Wenning","version":17,"id":"17326","lastModified":"1299501281000","name":"Thorsten Wenning","type":"Person","_key":"10507"} +{"label":"The Illusionist","description":"With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crowned prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.","id":"1491","runtime":110,"imdbId":"tt0443543","version":143,"lastModified":"1300074015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a7\/4d7a06bd5e73d628280004a7\/the-illusionist-mid.jpg","studio":"Bull's Eye Entertainment","genre":"Drama","title":"The Illusionist","releaseDate":1157068800000,"language":"en","tagline":"Nothing Is What It Seems.","type":"Movie","_key":"10508"} +{"label":"Jessica Biel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4bcc8929017a3c0f2600012f\/jessica-biel-profile.jpg","biography":"Jessica Claire Biel is an American actress and model. Biel is known for her television role as Mary Camden in the long-running family-drama series 7th Heaven.\nShe has also appeared in several Hollywood films, including Summer Catch, the remake of The Texas Chainsaw Massacre, The Illusionist, I Now Pronounce You Chuck and Larry and The A-Team.\n\nJessica Claire Biel was born in Ely, Minnesota, to Kimberly Biel, a homemaker and spiritual healer, and Jonathan Biel, an entrepreneur and former business","version":103,"birthday":"383958000000","id":"10860","birthplace":"Ely, Minnesota, USA","lastModified":"1300090225000","name":"Jessica Biel","type":"Person","_key":"10509"} +{"label":"Rufus Sewell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4bd70e34017a3c21f50000c6\/rufus-sewell-profile.jpg","version":72,"id":"17328","lastModified":"1300090262000","name":"Rufus Sewell","type":"Person","_key":"10510"} +{"label":"Tom Fisher","version":29,"id":"27678","lastModified":"1299794316000","name":"Tom Fisher","type":"Person","_key":"10511"} +{"label":"Neil Burger","version":37,"id":"17329","lastModified":"1299794316000","name":"Neil Burger","type":"Person","_key":"10512"} +{"label":"1492: Conquest of Paradise","description":"1492: Conquest of Paradise depicts Christopher Columbus\u2019 discovery of The New World and his effect on the indigenous people.","id":"1492","runtime":154,"imdbId":"tt0103594","version":139,"lastModified":"1299910713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b01\/4cf125d65e73d61926000b01\/1492-conquest-of-paradise-mid.jpg","studio":"ABC Pictures","genre":"Action","title":"1492: Conquest of Paradise","releaseDate":718588800000,"language":"en","type":"Movie","_key":"10513"} +{"label":"Armand Assante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd9\/4d66a3987b9aa12973002bd9\/armand-assante-profile.jpg","version":81,"id":"23346","lastModified":"1300090408000","name":"Armand Assante","type":"Person","_key":"10514"} +{"label":"Miss Congeniality","description":"Gracie Hart is a tough-as-nails FBI officer. When her office receives a letter from a terrorist going by the alias \"The Citizen\", they figure out that he's planning his next act at the Miss America beauty pageant. Because Hart is the only female officer at her office, she's chosen to go undercover as the contestant from New Jersey. ","id":"1493","runtime":109,"imdbId":"tt0212346","trailer":"http:\/\/www.youtube.com\/watch?v=8emJD-rR9Cs","version":182,"lastModified":"1300073718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4bc910d1017a3c57fe00623b\/miss-congeniality-mid.jpg","genre":"Action","title":"Miss Congeniality","releaseDate":968889600000,"language":"en","tagline":"Never Mess With An Agent In A Dress.","type":"Movie","_key":"10515"} +{"label":"Sandra Bullock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f8\/4c04080a017a3c33d90000f8\/sandra-bullock-profile.jpg","biography":"Sandra Annette Bullock was born in Arlington, Virginia, the daughter of Helga D. Meyer (1942\u20132000), a German opera singer and voice teacher, and John W. Bullock (born 1925), a voice coach and executive from Alabama. Bullock's maternal grandfather was a rocket scientist from Nuremberg, Germany. Bullock lived in Nuremberg until age twelve, where she sang in the opera's children's choir at the Staatstheater N\u00fcrnberg. She frequently traveled with her mother on her opera tours, and lived in Germany a","version":153,"birthday":"-171507600000","id":"18277","birthplace":"Arlington, Virginia, USA","lastModified":"1300090233000","name":"Sandra Bullock","type":"Person","_key":"10516"} +{"label":"John DiResta","version":17,"id":"141484","lastModified":"1299506364000","name":"John DiResta","type":"Person","_key":"10517"} +{"label":"Heather Burns","version":32,"id":"26716","lastModified":"1299498861000","name":"Heather Burns","type":"Person","_key":"10518"} +{"label":"Melissa De Sousa","version":25,"id":"75696","lastModified":"1299495108000","name":"Melissa De Sousa","type":"Person","_key":"10519"} +{"label":"Steve Monroe","version":22,"id":"131125","lastModified":"1299508335000","name":"Steve Monroe","type":"Person","_key":"10520"} +{"label":"Deirdre Quinn","version":23,"id":"34247","lastModified":"1299496378000","name":"Deirdre Quinn","type":"Person","_key":"10521"} +{"label":"Wendy Raquel Robinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15f\/4ceeabf25e73d6531800015f\/wendy-raquel-robinson-profile.jpg","version":26,"id":"52116","lastModified":"1299496638000","name":"Wendy Raquel Robinson","type":"Person","_key":"10522"} +{"label":"Asia De Marcos","version":17,"id":"141485","lastModified":"1299507043000","name":"Asia De Marcos","type":"Person","_key":"10523"} +{"label":"Ken Thomas","version":22,"id":"59456","lastModified":"1299581030000","name":"Ken Thomas","type":"Person","_key":"10524"} +{"label":"Gabriel Folse","version":18,"id":"141486","lastModified":"1299507562000","name":"Gabriel Folse","type":"Person","_key":"10525"} +{"label":"Donald Petrie","version":53,"id":"18281","lastModified":"1299779211000","name":"Donald Petrie","type":"Person","_key":"10526"} +{"label":"Curse of the Golden Flower","description":"During China's Tang dynasty the emperor has taken the princess of a neighboring province as wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.","id":"1494","runtime":114,"imdbId":"tt0473444","homepage":"http:\/\/ent.sina.com.cn\/hjj\/","version":175,"lastModified":"1299910324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24e\/4bc910d5017a3c57fe00624e\/curse-of-the-golden-flower-mid.jpg","studio":"Film Partner International Inc.","genre":"Drama","title":"Curse of the Golden Flower","releaseDate":1166659200000,"language":"en","type":"Movie","_key":"10527"} +{"label":"Jay Chou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ed\/4cf204015e73d61e3f0005ed\/jay-chou-profile.jpg","version":59,"id":"17380","lastModified":"1299950931000","name":"Jay Chou","type":"Person","_key":"10528"} +{"label":"Dahong Ni","version":25,"id":"17382","lastModified":"1299493695000","name":"Dahong Ni","type":"Person","_key":"10529"} +{"label":"Jin Chen","version":20,"id":"17383","lastModified":"1299515466000","name":"Jin Chen","type":"Person","_key":"10530"} +{"label":"Man Li","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c0\/4d0490fb5e73d621a20028c0\/man-li-profile.jpg","version":26,"id":"17384","lastModified":"1299493064000","name":"Man Li","type":"Person","_key":"10531"} +{"label":"Junjie Qin","version":21,"id":"17385","lastModified":"1299494888000","name":"Junjie Qin","type":"Person","_key":"10532"} +{"label":"Ye Liu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f6\/4c83a09a7b9aa142900000f6\/ye-liu-profile.jpg","version":42,"id":"20654","lastModified":"1299495750000","name":"Ye Liu","type":"Person","_key":"10533"} +{"label":"Kingdom of Heaven","description":"It is the time of the Crusades during the Middle Ages - the world shaping 200-year collision between Europe and the East. A blacksmith named Balian has lost his family and nearly his faith. The religious wars raging in the far-off Holy Land seem remote to him, yet he is pulled into that immense drama.","id":"1495","runtime":145,"imdbId":"tt0320661","homepage":"http:\/\/www.kingdomofheavendvd.com\/","version":223,"lastModified":"1300073401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/173\/4ce7743b5e73d6258e000173\/kingdom-of-heaven-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Kingdom of Heaven","releaseDate":1115251200000,"language":"en","type":"Movie","_key":"10534"} +{"label":"Nathalie Cox","version":17,"id":"17337","lastModified":"1299494747000","name":"Nathalie Cox","type":"Person","_key":"10535"} +{"label":"Eriq Ebouaney","version":52,"id":"25078","lastModified":"1300090358000","name":"Eriq Ebouaney","type":"Person","_key":"10536"} +{"label":"Jouko Ahola","version":18,"id":"34514","lastModified":"1299500375000","name":"Jouko Ahola","type":"Person","_key":"10537"} +{"label":"Velibor Topic","version":23,"id":"34515","lastModified":"1299497691000","name":"Velibor Topic","type":"Person","_key":"10538"} +{"label":"Iain Glen","version":54,"id":"20508","lastModified":"1300090341000","name":"Iain Glen","type":"Person","_key":"10539"} +{"label":"Cool As Ice","description":"Johnny, a freewheeling, motorcycle-riding musician, rolls into a small town with his band, and meets Kathy, an honor student who catches his eye. Meanwhile, Kathy's father, after being in the Witness Protection Program, is finally found by the two corrupt cops he escaped from years ago, who claim he owes them a lot of money.","id":"1496","runtime":101,"imdbId":"tt0101615","version":68,"lastModified":"1299910447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4c1a7be97b9aa116a0000002\/cool-as-ice-mid.jpg","genre":"Drama","title":"Cool As Ice","releaseDate":662688000000,"language":"en","type":"Movie","_key":"10540"} +{"label":"Vanilla Ice","version":17,"id":"17338","lastModified":"1299515463000","name":"Vanilla Ice","type":"Person","_key":"10541"} +{"label":"Teenage Mutant Ninja Turtles II: The Secret of the Ooze","description":"The turtles find out where the Ooze, the substance which made them mutate, came from. Unfortunately Shredder learns about it too, and uses it to enhance himself. So the turtles have to prove again who's the better ninja fighter.","id":"1497","runtime":88,"imdbId":"tt0103060","trailer":"http:\/\/www.youtube.com\/watch?v=i8Zjs4PxvTo","version":134,"lastModified":"1299909984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6d\/4d3632777b9aa17a4500af6d\/teenage-mutant-ninja-turtles-ii-the-secret-of-the-ooze-mid.jpg","studio":"Mirage Studios","genre":"Action","title":"Teenage Mutant Ninja Turtles II: The Secret of the Ooze","releaseDate":669600000000,"language":"en","tagline":"Cowabunga, it's the new turtle movie.","type":"Movie","_key":"10542"} +{"label":"Paige Turco","version":32,"id":"74932","lastModified":"1299500837000","name":"Paige Turco","type":"Person","_key":"10543"} +{"label":"Michelan Sisti","version":23,"id":"77152","lastModified":"1299496472000","name":"Michelan Sisti","type":"Person","_key":"10544"} +{"label":"Mark Caso","version":19,"id":"78214","lastModified":"1299500666000","name":"Mark Caso","type":"Person","_key":"10545"} +{"label":"Michael Pressman","version":24,"id":"59649","lastModified":"1299503759000","name":"Michael Pressman","type":"Person","_key":"10546"} +{"label":"Teenage Mutant Ninja Turtles","description":"Four turtles and a rat are transformed into a humanized state by a mutagenetic gel in a sewer. The rat becomes their mentor, and teaches them all he knows regarding Jinjitsu. The turtles use their newfound skills to combat the crime in New York City. But when their mentor is captured by an enemy from the past, can they hold true to what they've learned, and stay together as a brotherhood? ","id":"1498","runtime":93,"imdbId":"tt0100758","trailer":"http:\/\/www.youtube.com\/watch?v=3Urnzz-eXO8","version":120,"lastModified":"1299909775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ab\/4bc910df017a3c57fe0062ab\/teenage-mutant-ninja-turtles-mid.jpg","studio":"Mirage Studios","genre":"Action","title":"Teenage Mutant Ninja Turtles","releaseDate":638755200000,"language":"en","tagline":"Heroes in a half shell!","type":"Movie","_key":"10547"} +{"label":"Judith Hoag","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/723\/4d2e43037b9aa11a62001723\/judith-hoag-profile.jpg","version":27,"id":"45041","lastModified":"1299494294000","name":"Judith Hoag","type":"Person","_key":"10548"} +{"label":"Leif Tilden","version":17,"id":"77153","lastModified":"1299500666000","name":"Leif Tilden","type":"Person","_key":"10549"} +{"label":"David Forman","version":17,"id":"77154","lastModified":"1299502941000","name":"David Forman","type":"Person","_key":"10550"} +{"label":"James Saito","version":20,"id":"77155","lastModified":"1299503483000","name":"James Saito","type":"Person","_key":"10551"} +{"label":"Kevin Clash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d0\/4d370a1a5e73d6335600d3d0\/kevin-clash-profile.jpg","version":51,"id":"77156","lastModified":"1299499562000","name":"Kevin Clash","type":"Person","_key":"10552"} +{"label":"Robbie Rist","version":17,"id":"77157","lastModified":"1299500666000","name":"Robbie Rist","type":"Person","_key":"10553"} +{"label":"Brian Tochi","version":17,"id":"16060","lastModified":"1299497100000","name":"Brian Tochi","type":"Person","_key":"10554"} +{"label":"Steve Barron","version":26,"id":"18308","lastModified":"1299493934000","name":"Steve Barron","type":"Person","_key":"10555"} +{"label":"Teenage Mutant Ninja Turtles III","description":"The four turtles travel back in time to the days of the legendary and deadly samurai in ancient Japan, where they train to perfect the art of becoming one. The turtles also assist a small village in an uprising.","id":"1499","runtime":96,"imdbId":"tt0108308","version":100,"lastModified":"1299910824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08e\/4cb501e17b9aa138d700008e\/teenage-mutant-ninja-turtles-iii-mid.jpg","studio":"Mirage Studios","genre":"Action","title":"Teenage Mutant Ninja Turtles III","releaseDate":732326400000,"language":"en","tagline":"The Turtles Are Back....In Time.","type":"Movie","_key":"10556"} +{"label":"Matt Hill","version":20,"id":"27120","lastModified":"1299497564000","name":"Matt Hill","type":"Person","_key":"10557"} +{"label":"Jim Raposa","version":14,"id":"78213","lastModified":"1299505204000","name":"Jim Raposa","type":"Person","_key":"10558"} +{"label":"David Fraser","version":19,"id":"44101","lastModified":"1299497100000","name":"David Fraser","type":"Person","_key":"10559"} +{"label":"Stuart Gillard","version":38,"id":"76418","lastModified":"1299494402000","name":"Stuart Gillard","type":"Person","_key":"10560"} +{"label":"The Last King of Scotland","description":"Nicholas Garrigan (a young, Scottish doctor) decides it is time for an adventure after he finishes his formal education. He decides to try his luck in Uganda. He arrives during the downfall of president Obote. General Idi Amin comes to power and asks him to become his personal doctor. When will Nicholas realise Amin is not the friend of the nation, but a brutal dictator?","id":"1523","runtime":123,"imdbId":"tt0455590","trailer":"http:\/\/www.youtube.com\/watch?v=iV_QgKJFZP0","version":289,"lastModified":"1301901981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/120\/4d1522117b9aa1148e002120\/the-last-king-of-scotland-mid.jpg","studio":"Cowboy Films","genre":"Drama","title":"The Last King of Scotland","releaseDate":1157068800000,"language":"en","tagline":"Charming. Magnetic. Murderous.","type":"Movie","_key":"10561"} +{"label":"Kevin Macdonald","version":45,"id":"17350","lastModified":"1302065145000","name":"Kevin Macdonald","type":"Person","_key":"10562"} +{"label":"Simon McBurney","version":56,"id":"16358","lastModified":"1302065146000","name":"Simon McBurney","type":"Person","_key":"10563"} +{"label":"David Oyelowo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d7a\/4cf150c45e73d61927000d7a\/david-oyelowo-profile.jpg","biography":"David Oyelowo was born in Oxford in 1976. His family originates from \nNigeria. David studied Theatre Studies for A level and his teacher \nsuggested he should become an actor. After A levels David enrolled for a\n year on an Art foundation course. In December 2000 David became the first black actor to play an English \nmonarch for the RSC taking the title role in Henry VI. His performance \nwon him the 'Ian Charleson'<span style=\"text-decoration: underline;\"><\/span> Award 2001 for best newcomer in a","version":39,"id":"35013","lastModified":"1302065146000","name":"David Oyelowo","type":"Person","_key":"10564"} +{"label":"Abby Mukiibi Nkaaga","version":25,"id":"35014","lastModified":"1302065146000","name":"Abby Mukiibi Nkaaga","type":"Person","_key":"10565"} +{"label":"Adam Kotz","version":25,"id":"35015","lastModified":"1302065146000","name":"Adam Kotz","type":"Person","_key":"10566"} +{"label":"Sarah Nagayi","version":25,"id":"35016","lastModified":"1302065146000","name":"Sarah Nagayi","type":"Person","_key":"10567"} +{"label":"David Ashton","version":26,"id":"35017","lastModified":"1302065146000","name":"David Ashton","type":"Person","_key":"10568"} +{"label":"Barbara Rafferty","version":24,"id":"35018","lastModified":"1302065146000","name":"Barbara Rafferty","type":"Person","_key":"10569"} +{"label":"Pathfinder","description":"A Viking boy is left behind after his clan battles a Native American tribe. Raised within the tribe, he ultimately becomes their savior in a fight against the Norsemen.","id":"1534","runtime":99,"imdbId":"tt0446013","version":211,"lastModified":"1301901627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18f\/4d210e417b9aa1288600018f\/pathfinder-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Pathfinder","releaseDate":1168473600000,"language":"en","type":"Movie","_key":"10570"} +{"label":"Marcus Nispel","version":39,"id":"29922","lastModified":"1301901357000","name":"Marcus Nispel","type":"Person","_key":"10571"} +{"label":"Jay Tavare","version":28,"id":"29861","lastModified":"1301901311000","name":"Jay Tavare","type":"Person","_key":"10572"} +{"label":"Nathaniel Arcand","version":30,"id":"60722","lastModified":"1301901563000","name":"Nathaniel Arcand","type":"Person","_key":"10573"} +{"label":"Michelle Thrush","version":23,"id":"87126","lastModified":"1301902194000","name":"Michelle Thrush","type":"Person","_key":"10574"} +{"label":"Spy Game","description":"Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time prot\u00e9g\u00e9 and close friend, Tom Bishop, is a political prisoner sentenced to die in Beijing. Although their friendship has been marred by bad blood and resentment, Muir agrees to take on the most dangerous mission of his career and rescue Bishop.","id":"1535","runtime":126,"imdbId":"tt0266987","trailer":"http:\/\/www.youtube.com\/watch?v=YSfqJ4wd118","version":199,"lastModified":"1301907498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/730\/4d506b8e7b9aa13aab00d730\/spy-game-mid.jpg","studio":"Beacon Communications","genre":"Action","title":"Spy Game","releaseDate":1006300800000,"language":"en","tagline":"It's not how you play the game. It's how the game plays you.","type":"Movie","_key":"10575"} +{"label":"Larry Bryggman","version":36,"id":"17351","lastModified":"1301901462000","name":"Larry Bryggman","type":"Person","_key":"10576"} +{"label":"Marianne Jean-Baptiste","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/090\/4c9c798e7b9aa1430a000090\/marianne-jean-baptiste-profile.jpg","version":55,"birthday":"-84762000000","id":"17352","lastModified":"1301901143000","name":"Marianne Jean-Baptiste","type":"Person","_key":"10577"} +{"label":"Matthew Marsh","version":36,"id":"17353","lastModified":"1301901667000","name":"Matthew Marsh","type":"Person","_key":"10578"} +{"label":"Todd Boyce","version":29,"id":"17354","lastModified":"1301901695000","name":"Todd Boyce","type":"Person","_key":"10579"} +{"label":"Michael Paul Chan","version":27,"id":"17355","lastModified":"1301902018000","name":"Michael Paul Chan","type":"Person","_key":"10580"} +{"label":"Garrick Hagon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21f\/4bf1ab52017a3c320f00021f\/garrick-hagon-profile.jpg","version":25,"id":"17356","lastModified":"1301901571000","name":"Garrick Hagon","type":"Person","_key":"10581"} +{"label":"Andrew Grainger","version":26,"id":"17357","lastModified":"1301901975000","name":"Andrew Grainger","type":"Person","_key":"10582"} +{"label":"Changing Lanes","description":"The story of what happens one day in New York when a young lawyer and a businessman share a small automobile accident on F.D.R. Drive and their mutual road rage escalates into a feud. ","id":"1537","runtime":89,"imdbId":"tt0264472","version":206,"lastModified":"1301902112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32f\/4bc910f4017a3c57fe00632f\/changing-lanes-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Changing Lanes","releaseDate":1018137600000,"language":"en","type":"Movie","_key":"10583"} +{"label":"Kim Staunton","version":22,"id":"17358","lastModified":"1301901414000","name":"Kim Staunton","type":"Person","_key":"10584"} +{"label":"Matt Malloy","version":34,"id":"19208","lastModified":"1301901464000","name":"Matt Malloy","type":"Person","_key":"10585"} +{"label":"John Benjamin Hickey","version":41,"id":"21179","lastModified":"1302065848000","name":"John Benjamin Hickey","type":"Person","_key":"10586"} +{"label":"Collateral","description":"A cab driver finds himself the hostage of an engaging contract killer as he makes his rounds from hit to hit during one night in LA. He must find a way to save both himself and one last victim.","id":"1538","runtime":115,"imdbId":"tt0369339","trailer":"http:\/\/www.youtube.com\/watch?v=iPbG9uU7BiI","homepage":"http:\/\/movies.uip.de\/collateral\/home.html","version":175,"lastModified":"1301901513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e7\/4bd5a79c017a3c2e740001e7\/collateral-mid.jpg","studio":"DreamWorks SKG","genre":"Crime","title":"Collateral","releaseDate":1091664000000,"language":"en","tagline":"It started like any other night.","type":"Movie","_key":"10587"} +{"label":"Peter Berg","version":106,"id":"36602","lastModified":"1301901145000","name":"Peter Berg","type":"Person","_key":"10588"} +{"label":"Keine Lieder \u00fcber Liebe","description":"No overview found.","id":"1539","runtime":98,"imdbId":"tt0448009","trailer":"http:\/\/www.youtube.com\/watch?v=2757","version":56,"lastModified":"1301902732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/375\/4bc910fc017a3c57fe006375\/keine-lieder-uber-liebe-mid.jpg","studio":"ZDF","genre":"Drama","title":"Keine Lieder \u00fcber Liebe","releaseDate":1130371200000,"language":"en","type":"Movie","_key":"10589"} +{"label":"Lars Kraume","version":19,"id":"17361","lastModified":"1301901597000","name":"Lars Kraume","type":"Person","_key":"10590"} +{"label":"Monika Hansen","version":17,"id":"17374","lastModified":"1301901684000","name":"Monika Hansen","type":"Person","_key":"10591"} +{"label":"Thees Uhlmann","version":21,"id":"17375","lastModified":"1301902022000","name":"Thees Uhlmann","type":"Person","_key":"10592"} +{"label":"Marcus Wiebusch","version":22,"id":"17370","lastModified":"1301901687000","name":"Marcus Wiebusch","type":"Person","_key":"10593"} +{"label":"Felix Gebhard","version":21,"id":"17376","lastModified":"1301901674000","name":"Felix Gebhard","type":"Person","_key":"10594"} +{"label":"Max Martin Schr\u00f6der","version":17,"id":"17377","lastModified":"1301901997000","name":"Max Martin Schr\u00f6der","type":"Person","_key":"10595"} +{"label":"Vers le sud","description":"No overview found.","id":"1540","runtime":108,"imdbId":"tt0381690","version":56,"lastModified":"1301904244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99e\/4d6cdef47b9aa1363300499e\/vers-le-sud-mid.jpg","studio":"Haut et Court","genre":"Drama","title":"Vers le sud","releaseDate":1126051200000,"language":"en","type":"Movie","_key":"10596"} +{"label":"Laurent Cantet","version":26,"id":"17386","lastModified":"1301901490000","name":"Laurent Cantet","type":"Person","_key":"10597"} +{"label":"Louise Portal","version":26,"id":"17388","lastModified":"1301901482000","name":"Louise Portal","type":"Person","_key":"10598"} +{"label":"M\u00e9nothy Cesar","version":17,"id":"17389","lastModified":"1301901478000","name":"M\u00e9nothy Cesar","type":"Person","_key":"10599"} +{"label":"Lys Ambroise","version":17,"id":"17390","lastModified":"1301901913000","name":"Lys Ambroise","type":"Person","_key":"10600"} +{"label":"Jackenson Pierre Olmo Diaz","version":17,"id":"17391","lastModified":"1301901913000","name":"Jackenson Pierre Olmo Diaz","type":"Person","_key":"10601"} +{"label":"Wilfried Paul","version":17,"id":"17392","lastModified":"1301901913000","name":"Wilfried Paul","type":"Person","_key":"10602"} +{"label":"Thelma & Louise","description":"Whilst on a short weekend getaway, Louise shoots a man who had tried to rape Thelma. Due to the incriminating circumstances, they make a run for it and thus a cross country chase ensues for the two fugitives. Along the way, both women rediscover the strength of their friendship and surprising aspects of their personalities and self-strengths in the trying times.","id":"1541","runtime":129,"imdbId":"tt0103074","version":333,"lastModified":"1301901732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/089\/4d714b9f5e73d63cb0000089\/thelma-louise-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Thelma & Louise","releaseDate":675043200000,"language":"en","type":"Movie","_key":"10603"} +{"label":"Timothy Carhart","version":28,"id":"17396","lastModified":"1301901772000","name":"Timothy Carhart","type":"Person","_key":"10604"} +{"label":"Office Space","description":"Peter is a drone for a software company well on his way to a nervous breakdown when a hypnosis mishap opens his eyes. He becomes so apathetic toward his job that he can't even muster up the energy to quit. His new no-work ethic is mistaken by a pair of corporate headhunters as \"middle-management potential,\" and he is promoted as his pals Michael and Samir are laid off. Frustrated in his attempts to be down-sized, Peter hatches a plot to embezzle the company.","id":"1542","runtime":89,"imdbId":"tt0151804","trailer":"http:\/\/www.youtube.com\/watch?v=i5AVUrUoROo","version":238,"lastModified":"1301901512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4c8b94707b9aa1674800012b\/office-space-mid.jpg","genre":"Comedy","title":"Office Space","releaseDate":919555200000,"language":"en","tagline":"Work sucks.","type":"Movie","_key":"10605"} +{"label":"Ron Livingston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4ce128797b9aa168b000020a\/ron-livingston-profile.jpg","version":79,"id":"17402","lastModified":"1301901249000","name":"Ron Livingston","type":"Person","_key":"10606"} +{"label":"Diedrich Bader","version":54,"id":"5727","lastModified":"1301901114000","name":"Diedrich Bader","type":"Person","_key":"10607"} +{"label":"David Herman","version":31,"id":"52794","lastModified":"1301901256000","name":"David Herman","type":"Person","_key":"10608"} +{"label":"Gary Cole","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4c4329957b9aa1459500031e\/gary-cole-profile.jpg","version":70,"id":"21163","lastModified":"1301982411000","name":"Gary Cole","type":"Person","_key":"10609"} +{"label":"Richard Riehle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/182\/4cefb6ad7b9aa13b9c000182\/richard-riehle-profile.jpg","version":53,"id":"18262","lastModified":"1302015747000","name":"Richard Riehle","type":"Person","_key":"10610"} +{"label":"Paul Willson","version":21,"id":"15099","lastModified":"1301901442000","name":"Paul Willson","type":"Person","_key":"10611"} +{"label":"Mike Judge","version":61,"id":"17403","lastModified":"1301901192000","name":"Mike Judge","type":"Person","_key":"10612"} +{"label":"Emma's Bliss","description":"Upon being informed that he is fatally ill with cancer, Max, who works at a used car store, steals money which his boss has gained through illegal means. When fleeing from the scene of the crime Max crashes his car. He is pulled unconscious from the destroyed vehicle by a homely young woman, Emma, who lives alone on a farm where Max decides to stay in order to hide from the police and his boss.","id":"1543","runtime":103,"imdbId":"tt0424992","homepage":"http:\/\/emmas-glueck.pandorafilmverleih.de\/","version":77,"lastModified":"1301903078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4bc91105017a3c57fe0063b7\/emmas-gluck-mid.jpg","studio":"W\u00fcste Filmproduktion","genre":"Drama","title":"Emma's Bliss","releaseDate":1153008000000,"language":"en","type":"Movie","_key":"10613"} +{"label":"J\u00f6rdis Triebel","version":19,"id":"17404","lastModified":"1301901524000","name":"J\u00f6rdis Triebel","type":"Person","_key":"10614"} +{"label":"Martin Feifel","version":24,"id":"17405","lastModified":"1301901501000","name":"Martin Feifel","type":"Person","_key":"10615"} +{"label":"Karin Neuh\u00e4user","version":19,"id":"17406","lastModified":"1301901684000","name":"Karin Neuh\u00e4user","type":"Person","_key":"10616"} +{"label":"Sven Taddicken","version":22,"id":"17407","lastModified":"1301901456000","name":"Sven Taddicken","type":"Person","_key":"10617"} +{"label":"Imagine Me & You","description":"On her wedding day a young woman falls in love with the woman who does the flower arrangements - a sweet romance between two women.","id":"1544","runtime":94,"imdbId":"tt0421994","homepage":"http:\/\/www.foxsearchlight.com\/imaginemeandyou\/","version":184,"lastModified":"1301903096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c0\/4bc91106017a3c57fe0063c0\/imagine-me-you-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"Imagine Me & You","releaseDate":1107216000000,"language":"en","type":"Movie","_key":"10618"} +{"label":"Matthew Goode","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37c\/4bfa1754017a3c702f00037c\/matthew-goode-profile.jpg","version":50,"id":"1247","lastModified":"1301901081000","name":"Matthew Goode","type":"Person","_key":"10619"} +{"label":"Darren Boyd","version":24,"id":"17123","lastModified":"1301901478000","name":"Darren Boyd","type":"Person","_key":"10620"} +{"label":"Sharon Horgan","version":18,"id":"21676","lastModified":"1301902017000","name":"Sharon Horgan","type":"Person","_key":"10621"} +{"label":"Sue Johnston","version":17,"id":"21553","lastModified":"1301903120000","name":"Sue Johnston","type":"Person","_key":"10622"} +{"label":"Boo Jackson","version":17,"id":"21270","lastModified":"1301901913000","name":"Boo Jackson","type":"Person","_key":"10623"} +{"label":"Vinette Robinson","version":17,"id":"21679","lastModified":"1301901543000","name":"Vinette Robinson","type":"Person","_key":"10624"} +{"label":"Anthony Head","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/909\/4cc4d1c65e73d67785001909\/anthony-head-profile.jpg","version":33,"birthday":"-500605200000","id":"34257","birthplace":"Camden Town, London, England, UK ","lastModified":"1301901714000","name":"Anthony Head","type":"Person","_key":"10625"} +{"label":"Ol Parker","version":19,"id":"17510","lastModified":"1301901625000","name":"Ol Parker","type":"Person","_key":"10626"} +{"label":"Thumbsucker","description":"Justin, a teenager boy, throws himself and everyone around him into chaos when he attempts to break free from his addiction to his thumb.","id":"1546","runtime":96,"imdbId":"tt0318761","version":174,"lastModified":"1301903176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d1\/4bc9110a017a3c57fe0063d1\/thumbsucker-mid.jpg","studio":"Good Machine","genre":"Comedy","title":"Thumbsucker","releaseDate":1106438400000,"language":"en","type":"Movie","_key":"10627"} +{"label":"Mike Mills","version":25,"id":"17439","lastModified":"1301901560000","name":"Mike Mills","type":"Person","_key":"10628"} +{"label":"Lou Taylor Pucci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/325\/4cb1b4a87b9aa1263f000325\/lou-taylor-pucci-profile.jpg","version":45,"id":"17441","lastModified":"1301901422000","name":"Lou Taylor Pucci","type":"Person","_key":"10629"} +{"label":"Kelli Garner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b0\/4ce18d045e73d60f6c0003b0\/kelli-garner-profile.jpg","version":58,"id":"17442","lastModified":"1301901151000","name":"Kelli Garner","type":"Person","_key":"10630"} +{"label":"Chase Offerle","version":17,"id":"17443","lastModified":"1301901750000","name":"Chase Offerle","type":"Person","_key":"10631"} +{"label":"The Lost Boys","description":"A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple teenage friends take it upon them selves to hunt down the vampires that they suspect of the of a few mysterious murders and restore peace and calm to their town.","id":"1547","runtime":93,"imdbId":"tt0093437","trailer":"http:\/\/www.youtube.com\/watch?v=9uRVQad2xVs","version":352,"lastModified":"1301901989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3de\/4bc9110c017a3c57fe0063de\/the-lost-boys-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Comedy","title":"The Lost Boys","releaseDate":554688000000,"language":"en","tagline":"Sleep all day. Party all night. Never grow old. Never die. It\u2019s fun to be a vampire.","type":"Movie","_key":"10632"} +{"label":"Corey Haim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/827\/4d0cd0935e73d6370e000827\/corey-haim-profile.jpg","version":63,"id":"17444","lastModified":"1301904067000","name":"Corey Haim","type":"Person","_key":"10633"} +{"label":"Edward Herrmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33a\/4c95db9f7b9aa10d5c00033a\/edward-herrmann-profile.jpg","version":59,"id":"52995","lastModified":"1301901098000","name":"Edward Herrmann","type":"Person","_key":"10634"} +{"label":"Jamison Newlander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a24\/4ca3582b5e73d67b5f000a24\/jamison-newlander-profile.jpg","version":29,"id":"134800","lastModified":"1301901179000","name":"Jamison Newlander","type":"Person","_key":"10635"} +{"label":"Billy Wirth","version":37,"id":"39112","lastModified":"1301901130000","name":"Billy Wirth","type":"Person","_key":"10636"} +{"label":"Alex Winter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/670\/4ce51a387b9aa168b4000670\/alex-winter-profile.jpg","biography":"<span style=\"color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Alex Winter was born in London to two modern dancers, and he himself received dance training as a child. While still a youth, he relocated with his family to St. Louis, Missouri, where he studied improvisation. He made his <a href=\"http:\/\/www.imdb.com\/search\/name?bio=Broadway\" style=\"color: rgb(19, 108, 178); \">Broadway<\/a> <a href=\"http:\/\/www.imdb.com\/search\/name?bio=d","version":41,"id":"18355","lastModified":"1301904089000","name":"Alex Winter","type":"Person","_key":"10637"} +{"label":"Chance Michael Corbitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/583\/4ca358575e73d612f8000583\/chance-michael-corbitt-profile.jpg","version":23,"id":"134801","lastModified":"1301901172000","name":"Chance Michael Corbitt","type":"Person","_key":"10638"} +{"label":"Ghost World","description":"Ghost World is the film adaptation of the popular graphic novel by Daniel Clowes about a high school girl and her friendship with a eccentric 40-year-old record collector. The film touches on themes of alienation, the transition from teenager to adult, friendship and being different than the masses. ","id":"1548","runtime":111,"imdbId":"tt0162346","version":133,"lastModified":"1301908162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fd\/4bc9110f017a3c57fe0063fd\/ghost-world-mid.jpg","genre":"Action","title":"Ghost World","releaseDate":992649600000,"language":"en","type":"Movie","_key":"10639"} +{"label":"Terry Zwigoff","version":25,"id":"17447","lastModified":"1301901319000","name":"Terry Zwigoff","type":"Person","_key":"10640"} +{"label":"L'esquive","description":"The life of a band of teenager in a suburb near Paris. But instead of showing what would be the \"urban legend\" of this kind of poor suburb (violence, rapes...), Abdelatif Kechiche shows us what's the daily life of those guys: not much to do, not much dreams. Still, some of them have fun rehearsing for a play. Among those \"players\", Lydia, long time friend of Krimo... And Krimo, a bit shy, finds himself in love with this joyful girl.","id":"1549","runtime":124,"imdbId":"tt0338977","version":79,"lastModified":"1301903259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a8\/4c7a788b7b9aa176bd0001a8\/l-esquive-mid.jpg","studio":"Cin\u00e9 Cin\u00e9mas","genre":"Drama","title":"L'esquive","releaseDate":1069718400000,"language":"en","type":"Movie","_key":"10641"} +{"label":"Abdel Kechiche","version":29,"id":"17458","lastModified":"1301901459000","name":"Abdel Kechiche","type":"Person","_key":"10642"} +{"label":"Osman Elkharraz","version":17,"id":"17459","lastModified":"1301901630000","name":"Osman Elkharraz","type":"Person","_key":"10643"} +{"label":"Rachid Hami","version":17,"id":"17460","lastModified":"1301901547000","name":"Rachid Hami","type":"Person","_key":"10644"} +{"label":"Hajar Hamlili","version":17,"id":"17461","lastModified":"1301901757000","name":"Hajar Hamlili","type":"Person","_key":"10645"} +{"label":"Nanou Benhamou","version":18,"id":"17462","lastModified":"1301901806000","name":"Nanou Benhamou","type":"Person","_key":"10646"} +{"label":"Carole Franck","version":17,"id":"17463","lastModified":"1301901757000","name":"Carole Franck","type":"Person","_key":"10647"} +{"label":"Meryem Serbah","version":18,"id":"17464","lastModified":"1301901983000","name":"Meryem Serbah","type":"Person","_key":"10648"} +{"label":"Sabrina Ouazani","version":28,"id":"17475","lastModified":"1301901922000","name":"Sabrina Ouazani","type":"Person","_key":"10649"} +{"label":"Pieces of April","description":"Pieces of April is a 2003 American comedy-drama film written and directed by Peter Hedges. In his commentary on the film's DVD release, Hedges says the inspiration for his screenplay was twofold \u2014 his mother's battle with and death from cancer, and a true story about a group of friends whose plans to prepare a communal Thanksgiving dinner were thwarted by a broken stove.","id":"1550","runtime":81,"imdbId":"tt0311648","homepage":"http:\/\/www.piecesofaprilmovie.com\/","version":158,"lastModified":"1301903385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40f\/4bc91112017a3c57fe00640f\/pieces-of-april-mid.png","studio":"IFC Productions","genre":"Comedy","title":"Pieces of April","releaseDate":1042934400000,"language":"en","type":"Movie","_key":"10650"} +{"label":"Oliver Platt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4bca1284017a3c0e8d00003f\/oliver-platt-profile.jpg","version":116,"id":"17485","lastModified":"1301904054000","name":"Oliver Platt","type":"Person","_key":"10651"} +{"label":"Alison Pill","version":53,"id":"17486","lastModified":"1301901119000","name":"Alison Pill","type":"Person","_key":"10652"} +{"label":"John Gallagher Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/090\/4cdc53237b9aa137ff000090\/john-gallagher-jr-profile.jpg","version":29,"id":"17487","lastModified":"1301901175000","name":"John Gallagher Jr.","type":"Person","_key":"10653"} +{"label":"Alice Drummond","version":35,"id":"17488","lastModified":"1301901250000","name":"Alice Drummond","type":"Person","_key":"10654"} +{"label":"Lillias White","version":18,"id":"17489","lastModified":"1301901835000","name":"Lillias White","type":"Person","_key":"10655"} +{"label":"Isiah Whitlock Jr.","version":21,"id":"17490","lastModified":"1301901715000","name":"Isiah Whitlock Jr.","type":"Person","_key":"10656"} +{"label":"Peter Hedges","version":39,"id":"3290","lastModified":"1301901235000","name":"Peter Hedges","type":"Person","_key":"10657"} +{"label":"Flatliners","description":"Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life. A science fiction thriller from the early 1990's with a star studded cast.","id":"1551","runtime":111,"imdbId":"tt0099582","trailer":"http:\/\/www.youtube.com\/watch?v=160","version":157,"lastModified":"1301902598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/072\/4c8f25a07b9aa17689000072\/flatliners-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Flatliners","releaseDate":650246400000,"language":"en","type":"Movie","_key":"10658"} +{"label":"Parenthood","description":"Parenthood is the 1989 comedy about a series of interwoven relationships and the chaos that parenting can be. A classic family comedy.","id":"1552","runtime":124,"imdbId":"tt0098067","version":153,"lastModified":"1301903086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42a\/4bc91116017a3c57fe00642a\/parenthood-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Parenthood","releaseDate":618019200000,"language":"en","type":"Movie","_key":"10659"} +{"label":"Steve Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a29\/4bfd2052017a3c7033000a29\/steve-martin-profile.jpg","version":181,"id":"67773","lastModified":"1302037082000","name":"Steve Martin","type":"Person","_key":"10660"} +{"label":"Dennis Dugan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4cc9bcbb7b9aa16b9e0003d1\/dennis-dugan-profile.jpg","biography":"American director, comedian, and actor Dennis Dugan started his acting career in 1972, appearing in the 1973 made for TV movie\u201d The Girl Most Likely to...\u201d  He is well known for his frequent collaborations with comedic actor Adam Sandler.\n\nDennis has also made a career as a television and film director, and appears in cameo parts in many of his films. Dugan has directed episodes of such television series as Moonlighting (was also a guest star in some episodes), Ally McBeal, and NYPD Blue.&n","version":82,"birthday":"-736048800000","id":"17494","birthplace":"Wheaton, Illinois, USA","lastModified":"1301979996000","name":"Dennis Dugan","type":"Person","_key":"10661"} +{"label":"Martha Plimpton","version":30,"id":"17495","lastModified":"1301901364000","name":"Martha Plimpton","type":"Person","_key":"10662"} +{"label":"Alan Parnaby","version":22,"id":"27663","lastModified":"1301901454000","name":"Alan Parnaby","type":"Person","_key":"10663"} +{"label":"The Beat My Heart Skipped","description":"Like his father, Tom is a real estate agent who makes his money from dirty, and sometimes brutal, deals. But a chance encounter prompts him to take up the piano and become a concert pianist. He auditions with the help of a beautiful, young virtuoso pianist who cannot speak French - music is their only exchange. But pressures from the ugly world of his day job soon become more than he can handle...","id":"1553","runtime":107,"imdbId":"tt0411270","homepage":"http:\/\/www.debattremoncoeursestarrete-lefilm.com\/","version":90,"lastModified":"1301903488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/447\/4bc91118017a3c57fe006447\/de-battre-mon-coeur-s-est-arrete-mid.jpg","studio":"Why Not Productions","genre":"Drama","title":"The Beat My Heart Skipped","releaseDate":1108598400000,"language":"en","type":"Movie","_key":"10664"} +{"label":"Jacques Audiard","version":53,"id":"17496","lastModified":"1302054336000","name":"Jacques Audiard","type":"Person","_key":"10665"} +{"label":"Romain Duris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/734\/4cff5ddf5e73d6299d005734\/romain-duris-profile.jpg","version":65,"id":"17497","lastModified":"1301901170000","name":"Romain Duris","type":"Person","_key":"10666"} +{"label":"Niels Arestrup","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/acb\/4cf130e55e73d61929000acb\/niels-arestrup-profile.jpg","version":51,"id":"17498","lastModified":"1301901198000","name":"Niels Arestrup","type":"Person","_key":"10667"} +{"label":"Jonathan Zacca\u00ef","version":42,"id":"17499","lastModified":"1301901376000","name":"Jonathan Zacca\u00ef","type":"Person","_key":"10668"} +{"label":"Gilles Cohen","version":33,"id":"17500","lastModified":"1301901182000","name":"Gilles Cohen","type":"Person","_key":"10669"} +{"label":"Linh Dan Pham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27b\/4c4733425e73d61efb00027b\/linh-dan-pham-profile.jpg","version":26,"id":"19115","lastModified":"1301901237000","name":"Linh Dan Pham","type":"Person","_key":"10670"} +{"label":"Aure Atika","version":31,"id":"19116","lastModified":"1301901396000","name":"Aure Atika","type":"Person","_key":"10671"} +{"label":"Emmanuelle Devos","version":52,"id":"19117","lastModified":"1302054335000","name":"Emmanuelle Devos","type":"Person","_key":"10672"} +{"label":"Anton Yakovlev","version":20,"id":"19118","lastModified":"1301901684000","name":"Anton Yakovlev","type":"Person","_key":"10673"} +{"label":"Jian-Zhang","version":24,"id":"19120","lastModified":"1301901684000","name":"Jian-Zhang","type":"Person","_key":"10674"} +{"label":"Walter Shnorkell","version":18,"id":"19121","lastModified":"1301903108000","name":"Walter Shnorkell","type":"Person","_key":"10675"} +{"label":"Down by Law","description":"The story of three men from completely different tracks who all meet in a Louisiana prison cell and eventually begin an awkward journey together. A refreshing black comedy from cult director Jim Jarmusch.","id":"1554","runtime":107,"imdbId":"tt0090967","version":150,"lastModified":"1301902606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/450\/4bc9111b017a3c57fe006450\/down-by-law-mid.jpg","genre":"Action","title":"Down by Law","releaseDate":515289600000,"language":"en","type":"Movie","_key":"10676"} +{"label":"The Spanish Apartment","description":"A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.","id":"1555","runtime":122,"imdbId":"tt0283900","version":90,"lastModified":"1301903359000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/461\/4bc9111d017a3c57fe006461\/l-auberge-espagnole-mid.jpg","studio":"Bac Films","genre":"Drama","title":"The Spanish Apartment","releaseDate":1021593600000,"language":"en","type":"Movie","_key":"10677"} +{"label":"C\u00e9dric Klapisch","version":56,"id":"17520","lastModified":"1301901290000","name":"C\u00e9dric Klapisch","type":"Person","_key":"10678"} +{"label":"Kelly Reilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a9\/4ce5143f7b9aa168b00006a9\/kelly-reilly-profile.jpg","version":51,"id":"17521","lastModified":"1301979595000","name":"Kelly Reilly","type":"Person","_key":"10679"} +{"label":"C\u00e9cile De France","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4cdc4bdb7b9aa13801000058\/cecile-de-france-profile.jpg","biography":"\u200bBelgian actress C\u00e9cile de France began her acting career in French cinema hits such as \u201cL'Art (d\u00e9licat) de la s\u00e9duction\u201d (2001) and \u201cIr\u00e8ne\u201d (2002) after being discovered by the agent Dominique Besnehard. Her international breakthrough came with the horror thriller \u201cHaute Tension\u201d (2003), which was a worldwide success. She caught the eye of Hollywood producers and soon landed her first major role in a US feature film, \u201cAround the World in 80 Days\u201d (2004).\n\nShe won two C\u00e9sar Awards for Most Promi","version":74,"birthday":"174783600000","id":"17522","birthplace":"Namur, Belgium","lastModified":"1301901078000","name":"C\u00e9cile De France","type":"Person","_key":"10680"} +{"label":"Cristina Brondo","version":20,"id":"17523","lastModified":"1301901543000","name":"Cristina Brondo","type":"Person","_key":"10681"} +{"label":"Federico D'Anna","version":19,"id":"17524","lastModified":"1301901543000","name":"Federico D'Anna","type":"Person","_key":"10682"} +{"label":"Barnaby Metschurat","version":22,"id":"17525","lastModified":"1301901444000","name":"Barnaby Metschurat","type":"Person","_key":"10683"} +{"label":"Christian Pagh","version":19,"id":"17526","lastModified":"1301901543000","name":"Christian Pagh","type":"Person","_key":"10684"} +{"label":"Martine Demaret","version":22,"id":"17527","lastModified":"1301901517000","name":"Martine Demaret","type":"Person","_key":"10685"} +{"label":"Javier Coromina","version":26,"id":"17528","lastModified":"1301901446000","name":"Javier Coromina","type":"Person","_key":"10686"} +{"label":"Jacno","version":19,"id":"17529","lastModified":"1301901543000","name":"Jacno","type":"Person","_key":"10687"} +{"label":"Bara no soretsu","description":"No overview found.","id":"1556","runtime":104,"imdbId":"tt0064068","version":43,"lastModified":"1301415417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/878\/4cf871bd7b9aa1514b001878\/bara-no-soretsu-mid.jpg","genre":"Drama","title":"Bara no soretsu","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"10688"} +{"label":"P\u00eet\u00e2","version":20,"id":"17538","lastModified":"1301901842000","name":"P\u00eet\u00e2","type":"Person","_key":"10689"} +{"label":"Osamu Ogasawara","version":18,"id":"17539","lastModified":"1301901576000","name":"Osamu Ogasawara","type":"Person","_key":"10690"} +{"label":"Yoshio Tsuchiya","version":23,"id":"17540","lastModified":"1301901798000","name":"Yoshio Tsuchiya","type":"Person","_key":"10691"} +{"label":"Emiko Azuma","version":17,"id":"17541","lastModified":"1301901829000","name":"Emiko Azuma","type":"Person","_key":"10692"} +{"label":"Toshio Matsumoto","version":18,"id":"17542","lastModified":"1301901571000","name":"Toshio Matsumoto","type":"Person","_key":"10693"} +{"label":"23","description":"No overview found.","id":"1557","runtime":99,"imdbId":"tt0126765","version":136,"lastModified":"1301903573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4d21f5eb7b9aa128230009a1\/23-mid.jpg","studio":"Claussen + W\u00f6bke Filmproduktion GmbH","genre":"Drama","title":"23","releaseDate":916272000000,"language":"en","type":"Movie","_key":"10694"} +{"label":"Fabian Busch","version":35,"id":"17543","lastModified":"1301901217000","name":"Fabian Busch","type":"Person","_key":"10695"} +{"label":"Dieter Landuris","version":20,"id":"17544","lastModified":"1301903108000","name":"Dieter Landuris","type":"Person","_key":"10696"} +{"label":"Jan Gregor Kremp","version":26,"id":"17545","lastModified":"1301901402000","name":"Jan Gregor Kremp","type":"Person","_key":"10697"} +{"label":"Peter Fitz","version":27,"id":"17546","lastModified":"1301901567000","name":"Peter Fitz","type":"Person","_key":"10698"} +{"label":"Lilly Marie Tsch\u00f6rtner","version":21,"id":"36598","lastModified":"1301901750000","name":"Lilly Marie Tsch\u00f6rtner","type":"Person","_key":"10699"} +{"label":"Arnulf Schumacher","version":21,"id":"36599","lastModified":"1301901750000","name":"Arnulf Schumacher","type":"Person","_key":"10700"} +{"label":"Sven Lehmann","version":23,"id":"36600","lastModified":"1301901432000","name":"Sven Lehmann","type":"Person","_key":"10701"} +{"label":"Regine Zimmermann","version":20,"id":"17824","lastModified":"1301901542000","name":"Regine Zimmermann","type":"Person","_key":"10702"} +{"label":"Armin Dillenberger","version":22,"id":"36601","lastModified":"1301901625000","name":"Armin Dillenberger","type":"Person","_key":"10703"} +{"label":"Liegen lernen","description":"No overview found.","id":"1558","runtime":87,"imdbId":"tt0325734","homepage":"http:\/\/www.liegenlernen.de\/","version":57,"lastModified":"1301902729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47b\/4bc9111e017a3c57fe00647b\/liegen-lernen-mid.jpg","studio":"X-Filme","genre":"Comedy","title":"Liegen lernen","releaseDate":1057104000000,"language":"en","type":"Movie","_key":"10704"} +{"label":"Susanne Bormann","version":31,"id":"17547","lastModified":"1301901237000","name":"Susanne Bormann","type":"Person","_key":"10705"} +{"label":"Fritzi Haberlandt","version":23,"id":"17548","lastModified":"1301901446000","name":"Fritzi Haberlandt","type":"Person","_key":"10706"} +{"label":"Beate Abraham","version":18,"id":"17564","lastModified":"1301901628000","name":"Beate Abraham","type":"Person","_key":"10707"} +{"label":"Wilfried Dziallas","version":18,"id":"17565","lastModified":"1301901845000","name":"Wilfried Dziallas","type":"Person","_key":"10708"} +{"label":"Sebastian M\u00fcnster","version":16,"id":"17566","lastModified":"1301901922000","name":"Sebastian M\u00fcnster","type":"Person","_key":"10709"} +{"label":"Andr\u00e9 Meyer","version":16,"id":"17567","lastModified":"1301901922000","name":"Andr\u00e9 Meyer","type":"Person","_key":"10710"} +{"label":"Heinz Schubert","version":20,"id":"17568","lastModified":"1301901966000","name":"Heinz Schubert","type":"Person","_key":"10711"} +{"label":"Jean Pierre Cornu","version":20,"id":"17569","lastModified":"1301901983000","name":"Jean Pierre Cornu","type":"Person","_key":"10712"} +{"label":"Hendrik Handloegten","version":24,"id":"17549","lastModified":"1301901586000","name":"Hendrik Handloegten","type":"Person","_key":"10713"} +{"label":"Sweet Movie","description":"Miss World Virginity, who is nearly mute, endures a horrifically kinky honeymoon but soon escapes to a scatalogically inclined commune in Vienna. Meanwhile, a madwoman pilots a candy-stuffed boat down a river. Yugoslavian director Dusan Makavajev intercuts these two wild tales with shocking footage of Nazi medical experimentation.","id":"1559","runtime":99,"imdbId":"tt0072235","version":130,"lastModified":"1301902970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/484\/4bc91121017a3c57fe006484\/sweet-movie-mid.jpg","studio":"Maran Film","genre":"Comedy","title":"Sweet Movie","releaseDate":140227200000,"language":"en","type":"Movie","_key":"10714"} +{"label":"Dusan Makavejev","version":17,"id":"17554","lastModified":"1301901924000","name":"Dusan Makavejev","type":"Person","_key":"10715"} +{"label":"Anna Prucnal","version":19,"id":"17575","lastModified":"1301901556000","name":"Anna Prucnal","type":"Person","_key":"10716"} +{"label":"Carole Laure","version":22,"id":"17576","lastModified":"1301901786000","name":"Carole Laure","type":"Person","_key":"10717"} +{"label":"Sami Frey","version":34,"id":"17578","lastModified":"1301903108000","name":"Sami Frey","type":"Person","_key":"10718"} +{"label":"Marpessa Dawn","version":17,"id":"17581","lastModified":"1301901924000","name":"Marpessa Dawn","type":"Person","_key":"10719"} +{"label":"Roy Callender","version":16,"id":"17571","lastModified":"1301901760000","name":"Roy Callender","type":"Person","_key":"10720"} +{"label":"Singapore Sling","description":"No overview found.","id":"1560","runtime":115,"imdbId":"tt0100623","version":84,"lastModified":"1301904641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e4\/4cfd7b8b5e73d6299a0045e4\/singapore-sling-mid.jpg","studio":"ERT 1","genre":"Comedy","title":"Singapore Sling","releaseDate":631152000000,"language":"en","type":"Movie","_key":"10721"} +{"label":"Nikos Nikolaidis","version":18,"id":"17582","lastModified":"1301901664000","name":"Nikos Nikolaidis","type":"Person","_key":"10722"} +{"label":"Meredyth Herold","version":17,"id":"17586","lastModified":"1301901449000","name":"Meredyth Herold","type":"Person","_key":"10723"} +{"label":"Michele Valley","version":24,"id":"17587","lastModified":"1302030703000","name":"Michele Valley","type":"Person","_key":"10724"} +{"label":"Panos Thanassoulis","version":17,"id":"17588","lastModified":"1301901798000","name":"Panos Thanassoulis","type":"Person","_key":"10725"} +{"label":"Mouchette","description":"Mouchette is a young teenager living in the tough country. Her mother is going to die, and her father does not take care of her. Mouchette does not manage to express her rebellion against the humiliations she undergoes. One night, in the wood, she meets Arsene. Arsene is the poacher of the village. He thinks he has just killed Mathieu, the rural policeman. He tries to use Mouchette to build an alibi.","id":"1561","runtime":81,"imdbId":"tt0061996","version":109,"lastModified":"1301902795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4c9db4f25e73d6704d0000d4\/mouchette-mid.jpg","studio":"Argos Films S.A.","genre":"Action","title":"Mouchette","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"10726"} +{"label":"Nadine Nortier","version":17,"id":"17589","lastModified":"1301901836000","name":"Nadine Nortier","type":"Person","_key":"10727"} +{"label":"Jean-Claude Guilbert","version":18,"id":"17590","lastModified":"1301901580000","name":"Jean-Claude Guilbert","type":"Person","_key":"10728"} +{"label":"Marie Cardinal","version":17,"id":"17591","lastModified":"1301901806000","name":"Marie Cardinal","type":"Person","_key":"10729"} +{"label":"Paul Hebert","version":17,"id":"17592","lastModified":"1301901647000","name":"Paul Hebert","type":"Person","_key":"10730"} +{"label":"Jean Vimenet","version":17,"id":"17593","lastModified":"1301901780000","name":"Jean Vimenet","type":"Person","_key":"10731"} +{"label":"Marie Susini","version":17,"id":"17594","lastModified":"1301901562000","name":"Marie Susini","type":"Person","_key":"10732"} +{"label":"28 Weeks Later","description":"In this chilling sequel to 28 Days Later, the inhabitants of the British Isles appear to have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.","id":"1562","runtime":99,"imdbId":"tt0463854","trailer":"http:\/\/www.youtube.com\/watch?v=cbpjH4XCG3c","version":277,"lastModified":"1301901105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b6\/4bc91128017a3c57fe0064b6\/28-weeks-later-mid.jpg","studio":"Figment Films","genre":"Action","title":"28 Weeks Later","releaseDate":1178841600000,"language":"en","tagline":"When days turn to weeks, the horror returns.","type":"Movie","_key":"10733"} +{"label":"Juan Carlos Fresnadillo","version":32,"id":"17597","lastModified":"1301901326000","name":"Juan Carlos Fresnadillo","type":"Person","_key":"10734"} +{"label":"Jeremy Renner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4bca4a02017a3c0e9100009f\/jeremy-renner-profile.jpg","biography":"Jeremy Lee Renner (born January 7, 1971) is an American actor and musician. Renner appeared in films throughout the 2000s, mostly in supporting roles. He came to prominence in films such as Dahmer (2002) and Neo Ned (2005), and was nominated for an Academy Award for Best Actor for his starring role in the 2009 war thriller The Hurt Locker.","version":112,"birthday":"32050800000","id":"17604","birthplace":"Modesto, California","lastModified":"1301904063000","name":"Jeremy Renner","type":"Person","_key":"10735"} +{"label":"Idris Elba","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4bd85d8a017a3c1bfb00013a\/idris-elba-profile.jpg","biography":"<SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" lang=EN><STRONG>Idrissa Akuna \"Idris\" <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\">Elba<\/st1:place><\/STRONG><\/SPAN><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-weight: bo","version":79,"birthday":"84582000000","id":"17605","birthplace":"Canning Town, London, England, UK","lastModified":"1301904088000","name":"Idris Elba","type":"Person","_key":"10736"} +{"label":"Mackintosh Muggleton","version":23,"id":"17607","lastModified":"1301901249000","name":"Mackintosh Muggleton","type":"Person","_key":"10737"} +{"label":"Sans soleil","description":"\"He wrote me....\" A woman narrates the thoughts of a world traveler, meditations on time and memory expressed in words and images from places as far-flung as Japan, Guinea-Bissau, Iceland, and San Francisco. ","id":"1563","runtime":96,"imdbId":"tt0084628","version":77,"lastModified":"1301905294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/537\/4bc9113c017a3c57fe006537\/sans-soleil-mid.jpg","genre":"Documentary","title":"Sans soleil","releaseDate":410227200000,"language":"en","type":"Movie","_key":"10738"} +{"label":"Florence Delay","version":15,"id":"222259","lastModified":"1301903136000","name":"Florence Delay","type":"Person","_key":"10739"} +{"label":"Arielle Dombasle","version":33,"id":"28626","lastModified":"1301902010000","name":"Arielle Dombasle","type":"Person","_key":"10740"} +{"label":"Riyoko Ikeda","version":13,"id":"222260","lastModified":"1301903141000","name":"Riyoko Ikeda","type":"Person","_key":"10741"} +{"label":"Charlotte Kerr","version":21,"id":"44510","lastModified":"1301901893000","name":"Charlotte Kerr","type":"Person","_key":"10742"} +{"label":"Alexandra Stewart","version":39,"id":"18765","lastModified":"1301901569000","name":"Alexandra Stewart","type":"Person","_key":"10743"} +{"label":"Daybreak Express","description":"No overview found.","id":"1564","runtime":5,"imdbId":"tt0045673","version":212,"lastModified":"1301905289000","genre":"Documentary","title":"Daybreak Express","releaseDate":-536457600000,"language":"en","type":"Movie","_key":"10744"} +{"label":"28 Collection","description":"No overview found.","id":"1565","version":125,"lastModified":"1301908387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/540\/4bc9113d017a3c57fe006540\/28-mid.jpg","title":"28 Collection","language":"en","type":"Movie","_key":"10745"} +{"label":"Die Br\u00fccke","description":"Acht noch minderj\u00e4hrige Jugendliche erhalten in den letzten Kriegstagen 1945 den v\u00f6llig sinnlosen Befehl, ein Br\u00fccke bei einer Kleinstadt im Bayerischen Wald vor den anr\u00fcckenden Amerikanern zu verteidigen. Mit patriotischem Enthusiasmus und Begeisterung glauben sie, ihren Auftrag erf\u00fcllen zu m\u00fcssen. Erst nachdem einer nach dem anderen bei der Verteidigung der Br\u00fccke sein Leben lassen muss, wird die Sinnlosigkeit des Befehls offenkundig.","id":"1566","runtime":98,"imdbId":"tt0052654","version":83,"lastModified":"1301907301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28a\/4c7b6d227b9aa176c000028a\/die-brucke-mid.jpg","studio":"Fono Film","genre":"Drama","title":"Die Br\u00fccke","releaseDate":-273628800000,"language":"en","type":"Movie","_key":"10746"} +{"label":"Folker Bohnet","version":21,"id":"32063","lastModified":"1301901922000","name":"Folker Bohnet","type":"Person","_key":"10747"} +{"label":"Volker Lechtenbrink","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/290\/4c7b6f447b9aa176c0000290\/volker-lechtenbrink-profile.jpg","version":22,"birthday":"-800676000000","id":"36025","birthplace":"Cranz\/Ostpreussen","lastModified":"1301901606000","name":"Volker Lechtenbrink","type":"Person","_key":"10748"} +{"label":"Cordula Trantow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/287\/4c7b6f6c7b9aa176c1000287\/cordula-trantow-profile.jpg","version":22,"id":"35668","lastModified":"1301901757000","name":"Cordula Trantow","type":"Person","_key":"10749"} +{"label":"Karl Michael Balzer","version":20,"id":"36026","lastModified":"1301901828000","name":"Karl Michael Balzer","type":"Person","_key":"10750"} +{"label":"Fritz Wepper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28b\/4c7b6f957b9aa176c100028b\/fritz-wepper-profile.jpg","version":30,"id":"36027","lastModified":"1301901395000","name":"Fritz Wepper","type":"Person","_key":"10751"} +{"label":"Michael Hinz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/294\/4c7b6fab7b9aa176c0000294\/michael-hinz-profile.jpg","version":23,"id":"36028","lastModified":"1301901963000","name":"Michael Hinz","type":"Person","_key":"10752"} +{"label":"Frank Glaubrecht","version":19,"id":"36029","lastModified":"1301901922000","name":"Frank Glaubrecht","type":"Person","_key":"10753"} +{"label":"G\u00fcnther Hoffmann","version":19,"id":"36030","lastModified":"1301901922000","name":"G\u00fcnther Hoffmann","type":"Person","_key":"10754"} +{"label":"Wolfgang Stumpf","version":19,"id":"36336","lastModified":"1301901757000","name":"Wolfgang Stumpf","type":"Person","_key":"10755"} +{"label":"G\u00fcnter Pfitzmann","version":19,"id":"18507","lastModified":"1301903109000","name":"G\u00fcnter Pfitzmann","type":"Person","_key":"10756"} +{"label":"Heinz Spitzner","version":19,"id":"36983","lastModified":"1301901922000","name":"Heinz Spitzner","type":"Person","_key":"10757"} +{"label":"Siegfried Sch\u00fcrenberg","version":26,"id":"18536","lastModified":"1301901975000","name":"Siegfried Sch\u00fcrenberg","type":"Person","_key":"10758"} +{"label":"Ruth Hausmeister","version":20,"id":"36358","lastModified":"1301901757000","name":"Ruth Hausmeister","type":"Person","_key":"10759"} +{"label":"Eva Vaitl","version":20,"id":"36984","lastModified":"1301901922000","name":"Eva Vaitl","type":"Person","_key":"10760"} +{"label":"Edith Schultze-Westrum","version":20,"id":"36985","lastModified":"1301901850000","name":"Edith Schultze-Westrum","type":"Person","_key":"10761"} +{"label":"Hans Elwenspoek","version":19,"id":"36986","lastModified":"1301901922000","name":"Hans Elwenspoek","type":"Person","_key":"10762"} +{"label":"Trude Breitschopf","version":19,"id":"36987","lastModified":"1301901922000","name":"Trude Breitschopf","type":"Person","_key":"10763"} +{"label":"Klaus Hellmold","version":19,"id":"36988","lastModified":"1301901922000","name":"Klaus Hellmold","type":"Person","_key":"10764"} +{"label":"Inge Benz","version":19,"id":"36990","lastModified":"1301901922000","name":"Inge Benz","type":"Person","_key":"10765"} +{"label":"Edeltraut Elsner","version":20,"id":"36991","lastModified":"1301902027000","name":"Edeltraut Elsner","type":"Person","_key":"10766"} +{"label":"Vicco von B\u00fclow","version":30,"id":"36992","lastModified":"1301901244000","name":"Vicco von B\u00fclow","type":"Person","_key":"10767"} +{"label":"Georg Lehn","version":20,"id":"36570","lastModified":"1301901922000","name":"Georg Lehn","type":"Person","_key":"10768"} +{"label":"I Stand Alone","description":"The Butcher (known from Noe's short film Carne) has done some time in jail after beating up the guy who tried to seduce his teenage mentally-handicapped daughter. Now he wants to start a new life. He leaves his daughter in an institution and moves to Lille suburbs with his mistress. She promised him a new butcher shop. She lied. The butcher decides to go back to Paris and find his daughter.","id":"1567","runtime":93,"imdbId":"tt0157016","version":90,"lastModified":"1301904454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54d\/4bc9113e017a3c57fe00654d\/seul-contre-tous-mid.jpg","studio":"Canal Plus","genre":"Drama","title":"I Stand Alone","releaseDate":919209600000,"language":"en","type":"Movie","_key":"10769"} +{"label":"Blandine Lenoir","version":18,"id":"17614","lastModified":"1301903108000","name":"Blandine Lenoir","type":"Person","_key":"10770"} +{"label":"Martine Audrain","version":17,"id":"17617","lastModified":"1301901434000","name":"Martine Audrain","type":"Person","_key":"10771"} +{"label":"Frankie Pain","version":19,"id":"17618","lastModified":"1301901410000","name":"Frankie Pain","type":"Person","_key":"10772"} +{"label":"Jean-Fran\u00e7ois Rauger","version":17,"id":"17622","lastModified":"1301901630000","name":"Jean-Fran\u00e7ois Rauger","type":"Person","_key":"10773"} +{"label":"Guillaume Nicloux","version":22,"id":"17623","lastModified":"1301903108000","name":"Guillaume Nicloux","type":"Person","_key":"10774"} +{"label":"Olivier Doran","version":25,"id":"17624","lastModified":"1301901547000","name":"Olivier Doran","type":"Person","_key":"10775"} +{"label":"A\u00efssa Djabri","version":24,"id":"17625","lastModified":"1301901780000","name":"A\u00efssa Djabri","type":"Person","_key":"10776"} +{"label":"Serge Faurie","version":22,"id":"17626","lastModified":"1301901696000","name":"Serge Faurie","type":"Person","_key":"10777"} +{"label":"Carne","description":"No overview found.","id":"1568","runtime":38,"imdbId":"tt0218871","version":54,"lastModified":"1301905012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55b\/4bc91141017a3c57fe00655b\/carne-mid.jpg","genre":"Drama","title":"Carne","releaseDate":673056000000,"language":"en","type":"Movie","_key":"10778"} +{"label":"H\u00e9l\u00e8ne Testud","version":17,"id":"17631","lastModified":"1301901798000","name":"H\u00e9l\u00e8ne Testud","type":"Person","_key":"10779"} +{"label":"Lucile Hadzihalilovic","version":24,"id":"17627","lastModified":"1301901798000","name":"Lucile Hadzihalilovic","type":"Person","_key":"10780"} +{"label":"Pig","description":"No overview found.","id":"1569","runtime":23,"imdbId":"tt1540987","version":143,"lastModified":"1301904687000","genre":"Horror","title":"Pig","releaseDate":915148800000,"language":"en","type":"Movie","_key":"10781"} +{"label":"Rozz Williams","version":18,"id":"17619","lastModified":"1301901674000","name":"Rozz Williams","type":"Person","_key":"10782"} +{"label":"Nico B.","version":17,"id":"17620","lastModified":"1301901514000","name":"Nico B.","type":"Person","_key":"10783"} +{"label":"James Hollan","version":21,"id":"17621","lastModified":"1301901514000","name":"James Hollan","type":"Person","_key":"10784"} +{"label":"Die Hard Collection","description":"The times and tribulations of NYPD Detective John McClane covering nearly two decades","id":"1570","version":89,"lastModified":"1301902366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/906\/4d24ac215e73d65c2d000906\/die-hard-collection-mid.jpg","title":"Die Hard Collection","language":"en","type":"Movie","_key":"10785"} +{"label":"Live Free or Die Hard","description":"John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.","id":"1571","runtime":128,"imdbId":"tt0337978","trailer":"http:\/\/www.youtube.com\/watch?v=IVJ8VeTk9Ps","homepage":"http:\/\/www.livefreeordiehard.com\/","version":699,"lastModified":"1301928637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/590\/4bc9114a017a3c57fe006590\/live-free-or-die-hard-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Live Free or Die Hard","releaseDate":1182902400000,"language":"en","type":"Movie","_key":"10786"} +{"label":"Mary Elizabeth Winstead","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59d\/4be09748017a3c35bd00059d\/mary-elizabeth-winstead-profile.jpg","version":98,"birthday":"470444400000","id":"17628","birthplace":"Rocky Mount, North Carolina, USA","lastModified":"1302037844000","name":"Mary Elizabeth Winstead","type":"Person","_key":"10787"} +{"label":"Timothy Olyphant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4c04191e017a3c33d9000125\/timothy-olyphant-profile.jpg","version":158,"birthday":"-51066000000","id":"18082","birthplace":"Honolulu, Hawaii, USA","lastModified":"1301904076000","name":"Timothy Olyphant","type":"Person","_key":"10788"} +{"label":"Yorgo Constantine","version":45,"id":"21051","lastModified":"1301901226000","name":"Yorgo Constantine","type":"Person","_key":"10789"} +{"label":"Jack Valan","version":50,"id":"21052","lastModified":"1301901170000","name":"Jack Valan","type":"Person","_key":"10790"} +{"label":"Cyril Raffaelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd8\/4d27ea117b9aa134d3001dd8\/cyril-raffaelli-profile.jpg","version":63,"id":"21946","lastModified":"1301901167000","name":"Cyril Raffaelli","type":"Person","_key":"10791"} +{"label":"Die Hard with a Vengeance","description":"New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.","id":"1572","runtime":134,"imdbId":"tt0112864","trailer":"http:\/\/www.youtube.com\/watch?v=866yr_Oj5IA","version":449,"lastModified":"1301900956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5de\/4bc91153017a3c57fe0065de\/die-hard-with-a-vengeance-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Die Hard with a Vengeance","releaseDate":800841600000,"language":"en","tagline":"Think fast. Look alive. Die hard.","type":"Movie","_key":"10792"} +{"label":"Michael Cristofer","version":41,"id":"21136","lastModified":"1301901189000","name":"Michael Cristofer","type":"Person","_key":"10793"} +{"label":"Anthony Peck","version":28,"id":"141747","lastModified":"1301901530000","name":"Anthony Peck","type":"Person","_key":"10794"} +{"label":"Nicholas Wyman","version":34,"id":"91421","lastModified":"1301901337000","name":"Nicholas Wyman","type":"Person","_key":"10795"} +{"label":"Sam Phillips","version":32,"id":"45337","lastModified":"1301901470000","name":"Sam Phillips","type":"Person","_key":"10796"} +{"label":"Kevin Chamberlin","version":42,"id":"34395","lastModified":"1302062068000","name":"Kevin Chamberlin","type":"Person","_key":"10797"} +{"label":"Sharon Washington","version":28,"id":"141748","lastModified":"1301901377000","name":"Sharon Washington","type":"Person","_key":"10798"} +{"label":"Michael Alexander Jackson","version":28,"id":"141749","lastModified":"1301901307000","name":"Michael Alexander Jackson","type":"Person","_key":"10799"} +{"label":"Aldis Hodge","version":34,"id":"83860","lastModified":"1301901337000","name":"Aldis Hodge","type":"Person","_key":"10800"} +{"label":"Mischa Hausserman","version":38,"id":"19902","lastModified":"1301901268000","name":"Mischa Hausserman","type":"Person","_key":"10801"} +{"label":"Die Hard 2","description":"John McClane is an off-duty cop gripped with a feeling of d\u00e9j\u00e0 vu when on a snowy Christmas Eve in the nation's capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane's smart-mouthed heroics.","id":"1573","runtime":124,"imdbId":"tt0099423","trailer":"http:\/\/www.youtube.com\/watch?v=gUg4gWjOgXs","version":198,"lastModified":"1301900977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fa\/4bc91159017a3c57fe0065fa\/die-hard-2-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Die Hard 2","releaseDate":647049600000,"language":"en","tagline":"Die Harder","type":"Movie","_key":"10802"} +{"label":"Franco Nero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c2\/4c055c8d017a3c35190002c2\/franco-nero-profile.jpg","biography":"Franco Nero, pseudonimo di Francesco Sparanero \u00e8 un attore cinematografico italiano.","version":70,"birthday":"-886989600000","id":"22383","birthplace":"San Prospero Parmense, Italy","lastModified":"1301901246000","name":"Franco Nero","type":"Person","_key":"10803"} +{"label":"John Amos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/577\/4d52fa6c7b9aa1193e006577\/john-amos-profile.jpg","biography":"<SPAN id=Early_life class=mw-headline>Early life<\/SPAN>\r\n<P>Amos was born <B>John Amos, Jr.<\/B> in <A title=\"Newark, New Jersey\" href=\"\/wiki\/Newark,_New_Jersey\"><FONT color=#0645ad>Newark, New Jersey<\/FONT><\/A>, the son of Annabelle P. and John A. Amos, Sr., who was an auto mechanic.<SUP id=cite_ref-0 class=reference><A href=\"#cite_note-0\"><FONT size=2><FONT color=#0645ad><SPAN>[<\/SPAN>1<SPAN>]<\/SPAN><\/FONT><\/FONT><\/A><\/SUP> He graduated from East Orange (NJ) High School in 1958. He enrolled at ","version":49,"id":"22384","lastModified":"1301901260000","name":"John Amos","type":"Person","_key":"10804"} +{"label":"Chicago","description":"Murderesses Velma Kelly (a chanteuse and tease who killed her husband and sister after finding them in bed together) and Roxie Hart (who killed her boyfriend when she discovered he wasn't going to make her a star) find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.","id":"1574","runtime":113,"imdbId":"tt0299658","trailer":"http:\/\/www.youtube.com\/watch?v=8IxcfbldgBY","version":170,"lastModified":"1301901712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60c\/4bc9115a017a3c57fe00660c\/chicago-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Chicago","releaseDate":1039478400000,"language":"en","type":"Movie","_key":"10805"} +{"label":"Rob Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70c\/4d886d9b5e73d6751400070c\/rob-marshall-profile.jpg","version":42,"id":"17633","lastModified":"1302050914000","name":"Rob Marshall","type":"Person","_key":"10806"} +{"label":"Taye Diggs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fb\/4c59fbf57b9aa151f70004fb\/taye-diggs-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Scott Leo<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> \"<B>Taye<\/B>\" <B>Diggs<\/B> (born January 2, 1971) is an American theatre, film and television actor. He is perhaps best known for his roles in the Broadway musical <I>Rent<\/I>, the motion picture <I>How Stella Got Her Groove Back<\/I>, and the television series <I>P","version":46,"birthday":"31618800000","id":"17637","birthplace":"Rochester, New York, USA","lastModified":"1301901354000","name":"Taye Diggs","type":"Person","_key":"10807"} +{"label":"Cliff Saunders","version":16,"id":"17638","lastModified":"1301903108000","name":"Cliff Saunders","type":"Person","_key":"10808"} +{"label":"Chita Rivera","version":19,"id":"17639","lastModified":"1301901295000","name":"Chita Rivera","type":"Person","_key":"10809"} +{"label":"Susan Misner","version":18,"id":"17640","lastModified":"1301903108000","name":"Susan Misner","type":"Person","_key":"10810"} +{"label":"Denise Faye","version":27,"id":"17641","lastModified":"1301901456000","name":"Denise Faye","type":"Person","_key":"10811"} +{"label":"Deidre Goodwin","version":17,"id":"17642","lastModified":"1301901386000","name":"Deidre Goodwin","type":"Person","_key":"10812"} +{"label":"Mya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bfe\/4d7f50275e73d62836003bfe\/mya-profile.jpg","version":18,"id":"17643","lastModified":"1301903108000","name":"Mya","type":"Person","_key":"10813"} +{"label":"Ekaterina Chtchelkanova","version":17,"id":"17644","lastModified":"1301903108000","name":"Ekaterina Chtchelkanova","type":"Person","_key":"10814"} +{"label":"Jonathan Whittaker","version":19,"id":"17645","lastModified":"1301901410000","name":"Jonathan Whittaker","type":"Person","_key":"10815"} +{"label":"Sean McCann","version":23,"id":"17646","lastModified":"1301901482000","name":"Sean McCann","type":"Person","_key":"10816"} +{"label":"Rocky Collection","description":"No overview found.","id":"1575","version":107,"lastModified":"1301902911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c9\/4d0890ad7b9aa101dc0002c9\/rocky-collection-mid.jpg","title":"Rocky Collection","language":"en","type":"Movie","_key":"10817"} +{"label":"Resident Evil","description":"When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.","id":"1576","runtime":100,"imdbId":"tt0120804","trailer":"http:\/\/www.youtube.com\/watch?v=z4yqRGlgwkc","version":258,"lastModified":"1301901091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27d\/4ce7dca05e73d6258f00027d\/resident-evil-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"Resident Evil","releaseDate":1016150400000,"language":"en","tagline":"A secret experiment. A deadly virus. A fatal mistake.","type":"Movie","_key":"10818"} +{"label":"James Purefoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17c\/4bd70d02017a3c21f100017c\/james-purefoy-profile.jpg","version":40,"id":"17648","lastModified":"1301901115000","name":"James Purefoy","type":"Person","_key":"10819"} +{"label":"Resident Evil: Apocalypse","description":"Something evil's lurking in Raccoon City, and the fearless Alice is one of only a few willing to put her life on the line to investigate the malevolent force. A virus is attacking the area's denizens, turning them into the undead. With the help of her colleague, Jill, Alice sets out to uncover the truth, even as she fends off an experimental weapon, code name Nemesis.","id":"1577","runtime":94,"imdbId":"tt0318627","trailer":"http:\/\/www.youtube.com\/watch?v=veaGIKH_DsI","version":224,"lastModified":"1301901115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/654\/4bc91162017a3c57fe006654\/resident-evil-apocalypse-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"Resident Evil: Apocalypse","releaseDate":1094774400000,"language":"en","tagline":"You're all going to die.","type":"Movie","_key":"10820"} +{"label":"Sandrine Holt","version":31,"id":"65345","lastModified":"1301901427000","name":"Sandrine Holt","type":"Person","_key":"10821"} +{"label":"Alexander Witt","version":29,"id":"17649","lastModified":"1301901763000","name":"Alexander Witt","type":"Person","_key":"10822"} +{"label":"Raging Bull","description":"An emotionally self-destructive boxer's journey through life, as the violence and temper that leads him to the top in the ring, destroys his life outside it.","id":"1578","runtime":130,"imdbId":"tt0081398","trailer":"http:\/\/www.youtube.com\/watch?v=YiVOwxsa4OM","version":210,"lastModified":"1301901674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/224\/4d3998d37b9aa16149001224\/raging-bull-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Raging Bull","releaseDate":343008000000,"language":"en","type":"Movie","_key":"10823"} +{"label":"Nicholas Colasanto","version":25,"id":"17651","lastModified":"1301901462000","name":"Nicholas Colasanto","type":"Person","_key":"10824"} +{"label":"Theresa Saldana","version":25,"id":"17652","lastModified":"1301901574000","name":"Theresa Saldana","type":"Person","_key":"10825"} +{"label":"Mario Gallo","version":23,"id":"17653","lastModified":"1301901835000","name":"Mario Gallo","type":"Person","_key":"10826"} +{"label":"Apocalypto","description":"Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.","id":"1579","runtime":138,"imdbId":"tt0472043","trailer":"http:\/\/www.youtube.com\/watch?v=d56HvpPmg8o","version":264,"lastModified":"1301901094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b0\/4bc91174017a3c57fe0066b0\/apocalypto-mid.jpg","studio":"Icon Productions","genre":"Action","title":"Apocalypto","releaseDate":1165536000000,"language":"en","tagline":"When the end comes, not everyone is ready to go","type":"Movie","_key":"10827"} +{"label":"Adrian Grunberg","version":23,"id":"42025","lastModified":"1301901485000","name":"Adrian Grunberg","type":"Person","_key":"10828"} +{"label":"Stacy Perskie","version":23,"id":"42026","lastModified":"1301901635000","name":"Stacy Perskie","type":"Person","_key":"10829"} +{"label":"Rudy Youngblood","version":24,"id":"17678","lastModified":"1301901201000","name":"Rudy Youngblood","type":"Person","_key":"10830"} +{"label":"Dalia Hern\u00e1ndez","version":21,"id":"17679","lastModified":"1301901231000","name":"Dalia Hern\u00e1ndez","type":"Person","_key":"10831"} +{"label":"Jonathan Brewer","version":20,"id":"17680","lastModified":"1301901310000","name":"Jonathan Brewer","type":"Person","_key":"10832"} +{"label":"Morris Birdyellowhead","version":22,"id":"17681","lastModified":"1301901240000","name":"Morris Birdyellowhead","type":"Person","_key":"10833"} +{"label":"Raoul Trujillo","version":19,"id":"17688","lastModified":"1301903108000","name":"Raoul Trujillo","type":"Person","_key":"10834"} +{"label":"Carlos Emilio B\u00e1ez","version":21,"id":"17682","lastModified":"1301901359000","name":"Carlos Emilio B\u00e1ez","type":"Person","_key":"10835"} +{"label":"Amilcar Ram\u00edrez","version":21,"id":"17683","lastModified":"1301901359000","name":"Amilcar Ram\u00edrez","type":"Person","_key":"10836"} +{"label":"Israel Contreras","version":19,"id":"17684","lastModified":"1301903108000","name":"Israel Contreras","type":"Person","_key":"10837"} +{"label":"Israel R\u00edos","version":21,"id":"17685","lastModified":"1301901359000","name":"Israel R\u00edos","type":"Person","_key":"10838"} +{"label":"Espiridion Acosta Cache","version":19,"id":"17686","lastModified":"1301903108000","name":"Espiridion Acosta Cache","type":"Person","_key":"10839"} +{"label":"Mayra Serbulo","version":20,"id":"17687","lastModified":"1301901343000","name":"Mayra Serbulo","type":"Person","_key":"10840"} +{"label":"Gerardo Taracena","version":19,"id":"17689","lastModified":"1301903108000","name":"Gerardo Taracena","type":"Person","_key":"10841"} +{"label":"Rodolfo Palacios","version":19,"id":"17690","lastModified":"1301903108000","name":"Rodolfo Palacios","type":"Person","_key":"10842"} +{"label":"Iazua Larios","version":23,"id":"42009","lastModified":"1301901552000","name":"Iazua Larios","type":"Person","_key":"10843"} +{"label":"Lorena Heranandez","version":21,"id":"42010","lastModified":"1301901359000","name":"Lorena Heranandez","type":"Person","_key":"10844"} +{"label":"Itandehui Gutierrez","version":23,"id":"42011","lastModified":"1301901343000","name":"Itandehui Gutierrez","type":"Person","_key":"10845"} +{"label":"Sayuri Gutierrez","version":23,"id":"42012","lastModified":"1301901552000","name":"Sayuri Gutierrez","type":"Person","_key":"10846"} +{"label":"Hiram Soto","version":23,"id":"42013","lastModified":"1301901552000","name":"Hiram Soto","type":"Person","_key":"10847"} +{"label":"Jos\u00e9 Su\u00e1rez","version":21,"id":"42014","lastModified":"1301901359000","name":"Jos\u00e9 Su\u00e1rez","type":"Person","_key":"10848"} +{"label":"Ariel Galvan","version":23,"id":"42015","lastModified":"1301901552000","name":"Ariel Galvan","type":"Person","_key":"10849"} +{"label":"Bernardo Ruiz","version":23,"id":"42016","lastModified":"1301901552000","name":"Bernardo Ruiz","type":"Person","_key":"10850"} +{"label":"Ricardo Diaz Mendoza","version":23,"id":"42017","lastModified":"1301901552000","name":"Ricardo Diaz Mendoza","type":"Person","_key":"10851"} +{"label":"Richard Can","version":23,"id":"42018","lastModified":"1301901552000","name":"Richard Can","type":"Person","_key":"10852"} +{"label":"Carlos Ramos","version":23,"id":"42019","lastModified":"1301901343000","name":"Carlos Ramos","type":"Person","_key":"10853"} +{"label":"Ammel Rodrigo Mendoza","version":23,"id":"42020","lastModified":"1301901343000","name":"Ammel Rodrigo Mendoza","type":"Person","_key":"10854"} +{"label":"Marco Antonio Argueta","version":23,"id":"42021","lastModified":"1301901343000","name":"Marco Antonio Argueta","type":"Person","_key":"10855"} +{"label":"Javier Escobar","version":23,"id":"42022","lastModified":"1301901343000","name":"Javier Escobar","type":"Person","_key":"10856"} +{"label":"Rope","description":"Two young men strangle their \"inferior\" classmate, hide his body in their apartment, and invite his friends and family to a dinner party as a means to challenge the \"perfection\" of their crime.","id":"1580","runtime":80,"imdbId":"tt0040746","version":169,"lastModified":"1301903041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4bc91177017a3c57fe0066be\/rope-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Rope","releaseDate":-674006400000,"language":"en","type":"Movie","_key":"10857"} +{"label":"Constance Collier","version":24,"id":"17660","lastModified":"1301901542000","name":"Constance Collier","type":"Person","_key":"10858"} +{"label":"Douglas Dick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7cc\/4caa3efe7b9aa17ace0007cc\/douglas-dick-profile.jpg","version":30,"id":"17661","lastModified":"1301902025000","name":"Douglas Dick","type":"Person","_key":"10859"} +{"label":"Edith Evanson","version":22,"id":"17662","lastModified":"1301901579000","name":"Edith Evanson","type":"Person","_key":"10860"} +{"label":"Dick Hogan","version":21,"birthday":"-1644022800000","id":"17663","birthplace":"Little Rock, Arkansas, USA","lastModified":"1301901847000","name":"Dick Hogan","type":"Person","_key":"10861"} +{"label":"Joan Chandler","version":19,"id":"17664","lastModified":"1301901625000","name":"Joan Chandler","type":"Person","_key":"10862"} +{"label":"Cedric Hardwicke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/291\/4bf198ba017a3c320d000291\/cedric-hardwicke-profile.jpg","version":55,"id":"99461","lastModified":"1301901648000","name":"Cedric Hardwicke","type":"Person","_key":"10863"} +{"label":"Lowell J. Farrell","version":18,"id":"17907","lastModified":"1301901750000","name":"Lowell J. Farrell","type":"Person","_key":"10864"} +{"label":"The Holiday","description":"Stuck in a vicious cycle of dead-end relationships with two-timing men, Los Angeles resident Amanda and Londoner Iris decide to swap homes. In the process, their trade paves the way for romances they never imagined possible.","id":"1581","runtime":138,"imdbId":"tt0457939","trailer":"http:\/\/www.youtube.com\/watch?v=1863","homepage":"http:\/\/www.sonypictures.com\/movies\/theholiday\/","version":241,"lastModified":"1301951280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a51\/4d0e8c297b9aa11770002a51\/the-holiday-mid.jpg","studio":"Relativity Media","genre":"Comedy","title":"The Holiday","releaseDate":1165536000000,"language":"en","tagline":"It's Christmas Eve and we are going to go celebrate being young and being alive.","type":"Movie","_key":"10865"} +{"label":"Teenage Mutant Ninja Turtles Collection","description":"No overview found.","id":"1582","runtime":365,"version":54,"lastModified":"1301903167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4c8eb3495e73d61491000080\/teenage-mutant-ninja-turtles-collection-mid.jpg","studio":"Warner Bros Pictures","title":"Teenage Mutant Ninja Turtles Collection","language":"en","tagline":"Heroes in a Half Shell.","type":"Movie","_key":"10866"} +{"label":"Lammbock","description":"Stefan and Kai have good going business, self-grown cannabis screened as pizza delivering service. For now they only have to deal with plant-louses.","id":"1583","runtime":93,"imdbId":"tt0258760","homepage":"http:\/\/www.lammbock-derfilm.de\/","version":121,"lastModified":"1301902244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e5\/4bc9117b017a3c57fe0066e5\/lammbock-mid.jpg","studio":"Little Shark Entertainment GmbH","genre":"Comedy","title":"Lammbock","releaseDate":994118400000,"language":"en","type":"Movie","_key":"10867"} +{"label":"Christian Z\u00fcbert","version":28,"id":"17700","lastModified":"1301901350000","name":"Christian Z\u00fcbert","type":"Person","_key":"10868"} +{"label":"Isabel Kleefeld","version":21,"id":"17701","lastModified":"1301901683000","name":"Isabel Kleefeld","type":"Person","_key":"10869"} +{"label":"Lukas Gregorowicz","version":27,"id":"17717","lastModified":"1301901427000","name":"Lukas Gregorowicz","type":"Person","_key":"10870"} +{"label":"Marie Zielcke","version":30,"id":"17718","lastModified":"1301901655000","name":"Marie Zielcke","type":"Person","_key":"10871"} +{"label":"Julian Weigend","version":20,"id":"17719","lastModified":"1301903108000","name":"Julian Weigend","type":"Person","_key":"10872"} +{"label":"Alexandra Schalaudek","version":23,"id":"17720","lastModified":"1301901950000","name":"Alexandra Schalaudek","type":"Person","_key":"10873"} +{"label":"Elmar Wepper","version":25,"id":"17721","lastModified":"1301901447000","name":"Elmar Wepper","type":"Person","_key":"10874"} +{"label":"Christoph K\u00fcnzler","version":19,"id":"17722","lastModified":"1301901757000","name":"Christoph K\u00fcnzler","type":"Person","_key":"10875"} +{"label":"Nils Brunkhorst","version":19,"id":"17723","lastModified":"1301901757000","name":"Nils Brunkhorst","type":"Person","_key":"10876"} +{"label":"Thomas Schendel","version":20,"id":"17724","lastModified":"1301901828000","name":"Thomas Schendel","type":"Person","_key":"10877"} +{"label":"Anya Hoffmann","version":21,"id":"17725","lastModified":"1301901512000","name":"Anya Hoffmann","type":"Person","_key":"10878"} +{"label":"Sabine Wackernagel","version":23,"id":"17726","lastModified":"1301901922000","name":"Sabine Wackernagel","type":"Person","_key":"10879"} +{"label":"Hedi Kriegeskotte","version":23,"id":"17727","lastModified":"1301901790000","name":"Hedi Kriegeskotte","type":"Person","_key":"10880"} +{"label":"Gregory B. Waldis","version":19,"id":"17728","lastModified":"1301901757000","name":"Gregory B. Waldis","type":"Person","_key":"10881"} +{"label":"G\u00f6tz Argus","version":22,"id":"17729","lastModified":"1301901757000","name":"G\u00f6tz Argus","type":"Person","_key":"10882"} +{"label":"Oliver Kniffki","version":19,"id":"17730","lastModified":"1301901757000","name":"Oliver Kniffki","type":"Person","_key":"10883"} +{"label":"Peter Schrenk","version":22,"id":"17731","lastModified":"1301901757000","name":"Peter Schrenk","type":"Person","_key":"10884"} +{"label":"The School of Rock","description":"A wannabe rock star in need of cash poses as a substitute teacher at a prep school, and tries to turn his class into a rock band.","id":"1584","runtime":108,"imdbId":"tt0332379","trailer":"http:\/\/www.youtube.com\/watch?v=XCwy6lW5Ixc","homepage":"http:\/\/www.schoolofrockmovie.com\/","version":177,"lastModified":"1301907538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01e\/4d1343187b9aa1148600101e\/school-of-rock-mid.jpg","studio":"Scott Rudin Productions","genre":"Comedy","title":"The School of Rock","releaseDate":1065139200000,"language":"en","tagline":"He just landed the gig of his life: 5th grade.","type":"Movie","_key":"10885"} +{"label":"It's a Wonderful Life","description":"An angel helps a compassionate but despairingly frustrated businessman by showing what life would had been like if he never existed.","id":"1585","runtime":130,"imdbId":"tt0038650","trailer":"http:\/\/www.youtube.com\/watch?v=868","version":175,"lastModified":"1301906898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4bc91186017a3c57fe006725\/it-s-a-wonderful-life-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"It's a Wonderful Life","releaseDate":-726883200000,"language":"en","tagline":"It's a wonderful laugh! It's a wonderful love!","type":"Movie","_key":"10886"} +{"label":"Donna Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c0\/4bf543ce017a3c320d0008c0\/donna-reed-profile.jpg","version":43,"id":"17752","lastModified":"1301901493000","name":"Donna Reed","type":"Person","_key":"10887"} +{"label":"Lionel Barrymore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c6978de7b9aa1391e00000c\/lionel-barrymore-profile.jpg","version":64,"id":"17753","lastModified":"1301901429000","name":"Lionel Barrymore","type":"Person","_key":"10888"} +{"label":"Henry Travers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f05\/4be88191017a3c35bd000f05\/henry-travers-profile.jpg","version":33,"id":"7666","lastModified":"1301901366000","name":"Henry Travers","type":"Person","_key":"10889"} +{"label":"Beulah Bondi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df1\/4be763b8017a3c35bd000df1\/beulah-bondi-profile.jpg","version":49,"id":"17755","lastModified":"1301901423000","name":"Beulah Bondi","type":"Person","_key":"10890"} +{"label":"Frank Faylen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bd5b591017a3c6589000007\/frank-faylen-profile.jpg","version":35,"id":"17759","lastModified":"1301901842000","name":"Frank Faylen","type":"Person","_key":"10891"} +{"label":"Todd Karns","version":19,"id":"17754","lastModified":"1301901913000","name":"Todd Karns","type":"Person","_key":"10892"} +{"label":"Samuel S. Hinds","version":31,"id":"17756","lastModified":"1301903108000","name":"Samuel S. Hinds","type":"Person","_key":"10893"} +{"label":"Georgie Nokes","version":19,"id":"17758","lastModified":"1301901750000","name":"Georgie Nokes","type":"Person","_key":"10894"} +{"label":"Gloria Grahame","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04c\/4bd5c5ca017a3c658a00004c\/gloria-grahame-profile.jpg","version":57,"id":"77081","lastModified":"1301901078000","name":"Gloria Grahame","type":"Person","_key":"10895"} +{"label":"Secret Window","description":"Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.","id":"1586","runtime":96,"imdbId":"tt0363988","trailer":"http:\/\/www.youtube.com\/watch?v=1779","version":223,"lastModified":"1301901827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73c\/4bc9118c017a3c57fe00673c\/secret-window-mid.jpg","studio":"Columbia TriStar","genre":"Drama","title":"Secret Window","releaseDate":1079049600000,"language":"en","tagline":"Some windows should never be opened.","type":"Movie","_key":"10896"} +{"label":"Charles S. Dutton","version":73,"id":"17764","lastModified":"1301901126000","name":"Charles S. Dutton","type":"Person","_key":"10897"} +{"label":"David Koepp","version":136,"id":"508","lastModified":"1299928326000","name":"David Koepp","type":"Person","_key":"10898"} +{"label":"What's Eating Gilbert Grape","description":"Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.","id":"1587","runtime":118,"imdbId":"tt0108550","trailer":"http:\/\/www.youtube.com\/watch?v=X6sLIP3908w","version":145,"lastModified":"1301901934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3f\/4d4cd5865e73d617c1001e3f\/what-s-eating-gilbert-grape-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"What's Eating Gilbert Grape","releaseDate":732326400000,"language":"en","type":"Movie","_key":"10899"} +{"label":"Darlene Cates","version":19,"id":"17768","lastModified":"1301901587000","name":"Darlene Cates","type":"Person","_key":"10900"} +{"label":"Laura Harrington","version":23,"id":"17769","lastModified":"1301902030000","name":"Laura Harrington","type":"Person","_key":"10901"} +{"label":"Kevin Tighe","version":31,"id":"17770","lastModified":"1301903108000","name":"Kevin Tighe","type":"Person","_key":"10902"} +{"label":"Bring It On","description":"The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain (Kirsten Dunst), the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.","id":"1588","runtime":98,"imdbId":"tt0204946","trailer":"http:\/\/www.youtube.com\/watch?v=ofaqYko87ZM","version":186,"lastModified":"1301903186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/752\/4bc9118e017a3c57fe006752\/bring-it-on-mid.jpg","studio":"Beacon Communications","genre":"Comedy","title":"Bring It On","releaseDate":966902400000,"language":"en","tagline":"May the best moves win.","type":"Movie","_key":"10903"} +{"label":"Eliza Dushku","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12a\/4bcc8764017a3c0f2600012a\/eliza-dushku-profile.jpg","version":71,"id":"13446","lastModified":"1301904097000","name":"Eliza Dushku","type":"Person","_key":"10904"} +{"label":"Jesse Bradford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16d\/4cb0c6617b9aa1263d00016d\/jesse-bradford-profile.jpg","version":49,"id":"17772","lastModified":"1301901206000","name":"Jesse Bradford","type":"Person","_key":"10905"} +{"label":"Gabrielle Union","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/282\/4cbc72b17b9aa138d9001282\/gabrielle-union-profile.jpg","biography":"<FONT size=3><FONT face=\"Times New Roman\"><B><SPAN style=\"mso-ansi-language: EN\" lang=EN>Gabrielle Monique Union<\/SPAN><\/B><SPAN style=\"mso-ansi-language: EN\" lang=EN> (born October 29, 1972) is an American actress and former model. Among her notable roles is as the cheerleader opposite Kirsten Dunst in the film <I>Bring it On<\/I>. Union starred opposite Will Smith and Martin Lawrence in the blockbuster film <I>Bad Boys II<\/I> and played a medical doctor in the CBS drama Series <I>City of Angels","version":86,"birthday":"89161200000","id":"17773","birthplace":"Omaha, Nebraska","lastModified":"1301901128000","name":"Gabrielle Union","type":"Person","_key":"10906"} +{"label":"Clare Kramer","version":27,"id":"17774","lastModified":"1301901364000","name":"Clare Kramer","type":"Person","_key":"10907"} +{"label":"Nicole Bilderback","version":23,"id":"17775","lastModified":"1301903108000","name":"Nicole Bilderback","type":"Person","_key":"10908"} +{"label":"Peyton Reed","version":42,"id":"59026","lastModified":"1301901297000","name":"Peyton Reed","type":"Person","_key":"10909"} +{"label":"The Boys and Girl from County Clare","description":"Two feuding brothers and their respective Ceilidh bands compete at a music festival. Set in 1960's Ireland.","id":"1589","runtime":88,"imdbId":"tt0337631","version":87,"lastModified":"1301905557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75c\/4bc9118f017a3c57fe00675c\/the-boys-and-girl-from-county-clare-mid.jpg","genre":"Drama","title":"The Boys and Girl from County Clare","releaseDate":1063324800000,"language":"en","type":"Movie","_key":"10910"} +{"label":"Andrea Corr","version":22,"id":"18015","lastModified":"1301901572000","name":"Andrea Corr","type":"Person","_key":"10911"} +{"label":"Colm Meaney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06f\/4c166eda7b9aa108d800006f\/colm-meaney-profile.jpg","biography":"Colm J. Meaney (born 30 May 1953) is an Irish actor widely known for playing Miles O'Brien in Star Trek: The Next Generation and Star Trek: Deep Space Nine. He is second only to Michael Dorn in most appearances in Star Trek episodes. He has guest-starred on many TV shows from Law & Order to The Simpsons. He has also had a significant career in motion pictures.","version":79,"birthday":"-523587600000","id":"17782","birthplace":"Dublin, Ireland","lastModified":"1301901080000","name":"Colm Meaney","type":"Person","_key":"10912"} +{"label":"Charlotte Bradley","version":17,"id":"17778","lastModified":"1301901695000","name":"Charlotte Bradley","type":"Person","_key":"10913"} +{"label":"Stephen Brennan","version":17,"id":"17781","lastModified":"1301901798000","name":"Stephen Brennan","type":"Person","_key":"10914"} +{"label":"Malachy Bourke","version":17,"id":"17783","lastModified":"1301901798000","name":"Malachy Bourke","type":"Person","_key":"10915"} +{"label":"John Irvin","version":39,"id":"17784","lastModified":"1301901358000","name":"John Irvin","type":"Person","_key":"10916"} +{"label":"Copying Beethoven","description":"A fictionalised exploration of Beethoven's life in his final days working on his Ninth Symphony. It is 1824. Beethoven is racing to finish his new symphony. However, it has been years since his last success and he is plagued by deafness, loneliness and personal trauma. A copyist is urgently needed to help the composer. A fictional character is introduced in the form of a young conservatory student and aspiring composer named Anna Holtz. The mercurial Beethoven is skeptical that a woman might bec","id":"1590","runtime":104,"imdbId":"tt0424908","version":182,"lastModified":"1301905383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/765\/4bc91190017a3c57fe006765\/copying-beethoven-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Drama","title":"Copying Beethoven","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"10917"} +{"label":"Agnieszka Holland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4c7de8fc5e73d648dd00006c\/agnieszka-holland-profile.jpg","version":41,"id":"1128","lastModified":"1299810114000","name":"Agnieszka Holland","type":"Person","_key":"10918"} +{"label":"Phyllida Law","version":47,"id":"17787","lastModified":"1301901214000","name":"Phyllida Law","type":"Person","_key":"10919"} +{"label":"Ralph Riach","version":22,"id":"17788","lastModified":"1301901828000","name":"Ralph Riach","type":"Person","_key":"10920"} +{"label":"Bill Stewart","version":17,"id":"17789","lastModified":"1301901625000","name":"Bill Stewart","type":"Person","_key":"10921"} +{"label":"Viktoria Dihen","version":17,"id":"17790","lastModified":"1301901625000","name":"Viktoria Dihen","type":"Person","_key":"10922"} +{"label":"Nirgendwo in Afrika","description":"A Jewish woman named Jettel Redlich flees Nazi Germany with her daughter Regina, to join her husband, Walter, on a farm in Kenya. At first, Jettel refuses to adjust to her new circumstances, bringing with her a set of china dishes and an evening gown. While Regina adapts readily to this new world, forming a strong bond with her father's cook, an African named Owuor.","id":"1591","runtime":140,"imdbId":"tt0161860","version":99,"lastModified":"1301903071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/772\/4bc91190017a3c57fe006772\/nirgendwo-in-afrika-mid.jpg","studio":"MTM Cineteve","genre":"Drama","title":"Nirgendwo in Afrika","releaseDate":1009411200000,"language":"en","type":"Movie","_key":"10923"} +{"label":"Merab Ninidze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d77\/4cfba3185e73d6299b002d77\/merab-ninidze-profile.jpg","version":22,"id":"17817","lastModified":"1301901375000","name":"Merab Ninidze","type":"Person","_key":"10924"} +{"label":"Sidede Onyulo","version":18,"id":"17818","lastModified":"1301901432000","name":"Sidede Onyulo","type":"Person","_key":"10925"} +{"label":"Karoline Eckertz","version":17,"id":"17819","lastModified":"1301901750000","name":"Karoline Eckertz","type":"Person","_key":"10926"} +{"label":"Lea Kurka","version":17,"id":"17820","lastModified":"1301901750000","name":"Lea Kurka","type":"Person","_key":"10927"} +{"label":"Gerd Heinz","version":17,"id":"17821","lastModified":"1301901542000","name":"Gerd Heinz","type":"Person","_key":"10928"} +{"label":"Hildegard Schmahl","version":17,"id":"17822","lastModified":"1301901750000","name":"Hildegard Schmahl","type":"Person","_key":"10929"} +{"label":"Maritta Horwarth","version":17,"id":"17823","lastModified":"1301901542000","name":"Maritta Horwarth","type":"Person","_key":"10930"} +{"label":"Primal Fear","description":"An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a 3rd person in the room. The intensity builds when a surprise twist alters everyone's perception of the crime and what happens next...","id":"1592","runtime":129,"imdbId":"tt0117381","trailer":"http:\/\/www.youtube.com\/watch?v=ghPawAMTJVc","version":233,"lastModified":"1301907545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d6\/4d691b3a7b9aa136250012d6\/primal-fear-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"Primal Fear","releaseDate":828489600000,"language":"en","tagline":"Sooner or later, a man who wears two faces forgets which one is real.","type":"Movie","_key":"10931"} +{"label":"Tony Plana","version":40,"id":"41737","lastModified":"1301901975000","name":"Tony Plana","type":"Person","_key":"10932"} +{"label":"Gregory Hoblit","version":52,"id":"17812","lastModified":"1301901244000","name":"Gregory Hoblit","type":"Person","_key":"10933"} +{"label":"Night at the Museum","description":"Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits. Larry tries desperately to keep the museum under control, but he's fighting a losing battle until President Teddy Roosevelt comes to the rescue.","id":"1593","runtime":108,"imdbId":"tt0477347","trailer":"http:\/\/www.youtube.com\/watch?v=jWDwJIBqjSU","version":305,"lastModified":"1301901412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d9\/4d681ce47b9aa136250002d9\/night-at-the-museum-mid.jpg","studio":"1492 Pictures","genre":"Action","title":"Night at the Museum","releaseDate":1166659200000,"language":"en","tagline":"Where History Comes To Life","type":"Movie","_key":"10934"} +{"label":"Shawn Levy","version":85,"id":"17825","lastModified":"1301901193000","name":"Shawn Levy","type":"Person","_key":"10935"} +{"label":"Jake Cherry","version":24,"id":"17834","lastModified":"1301901200000","name":"Jake Cherry","type":"Person","_key":"10936"} +{"label":"Ricky Gervais","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61a\/4bf3b51c017a3c321300061a\/ricky-gervais-profile.jpg","biography":"Ricky Dene Gervais (pronounced \/d\u0292\u0259r\u02c8ve\u026az\/; born 25 June 1961) is an English comedian, actor, director, producer, writer and broadcaster.\n\nGervais achieved mainstream fame with his television series The Office and the subsequent series Extras, both of which he co-wrote and co-directed with friend and frequent collaborator Stephen Merchant. Besides writing and directing the shows, Gervais played the lead roles of David Brent in The Office and Andy Millman in Extras. Gervais has starred in a numbe","version":83,"birthday":"-268880400000","id":"17835","birthplace":"Reading, UK","lastModified":"1301904096000","name":"Ricky Gervais","type":"Person","_key":"10937"} +{"label":"Kim Raver","version":27,"id":"17836","lastModified":"1301901253000","name":"Kim Raver","type":"Person","_key":"10938"} +{"label":"Patrick Gallagher","version":31,"id":"17837","lastModified":"1301901201000","name":"Patrick Gallagher","type":"Person","_key":"10939"} +{"label":"Rami Malek","version":28,"id":"17838","lastModified":"1301901307000","name":"Rami Malek","type":"Person","_key":"10940"} +{"label":"Pierfrancesco Favino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54d\/4c4482365e73d60f3b00054d\/pierfrancesco-favino-profile.jpg","version":73,"id":"17839","lastModified":"1301901090000","name":"Pierfrancesco Favino","type":"Person","_key":"10941"} +{"label":"Charles Q. Murphy","version":39,"id":"17840","lastModified":"1301901193000","name":"Charles Q. Murphy","type":"Person","_key":"10942"} +{"label":"Mizuo Peck","version":24,"id":"17841","lastModified":"1301901307000","name":"Mizuo Peck","type":"Person","_key":"10943"} +{"label":"A Shot in the Dark","description":"A Shot in the Dark is the second and more successful film from the Pink Panther film series where both animated and real life sequences are mixed. A cult classic from Blake Edwards based on the play L\u2019Idiot by Marcel Achard and Harry Kurnitz.","id":"1594","runtime":102,"imdbId":"tt0058586","trailer":"http:\/\/www.youtube.com\/watch?v=bikDIZy-IBk","version":145,"lastModified":"1301903340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4bc91197017a3c57fe00679a\/a-shot-in-the-dark-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"A Shot in the Dark","releaseDate":-174355200000,"language":"en","type":"Movie","_key":"10944"} +{"label":"Elke Sommer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15e\/4c769a2e7b9aa16a0800015e\/elke-sommer-profile.jpg","version":48,"id":"17844","lastModified":"1302036944000","name":"Elke Sommer","type":"Person","_key":"10945"} +{"label":"Moira Redmond","version":23,"id":"124737","lastModified":"1301903063000","name":"Moira Redmond","type":"Person","_key":"10946"} +{"label":"Land of Plenty","description":"The American daughter of missionaries Lana returns to Los Angeles from Palestine to work in a mission helping homeless people. Lana was born in Ohio and raised in South Africa and Middle East, and she is an authentic citizen of the world, connected through Internet and aware of how other people see the lack of culture and knowledge and exaggerated patriotism of average American people. Her unique relative is her unknown uncle Paul, a veteran of Vietnam War that cut relationships with his family ","id":"1595","runtime":123,"imdbId":"tt0382357","version":165,"lastModified":"1301903386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a3\/4bc91198017a3c57fe0067a3\/land-of-plenty-mid.jpg","studio":"InDigEnt","genre":"Drama","title":"Land of Plenty","releaseDate":1094774400000,"language":"en","type":"Movie","_key":"10947"} +{"label":"Edward McGurn","version":18,"id":"17856","lastModified":"1301904120000","name":"Edward McGurn","type":"Person","_key":"10948"} +{"label":"Shaun Toub","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4bec0b23017a3c37a0000155\/shaun-toub-profile.jpg","biography":"Shaun Toub is an Iranian-American film and television actor. He is perhaps best known for his role as Farhad in the 2004 movie Crash, as Rahim Khan in the movie The Kite Runner, and as Yinsen in the film adaptation of the Iron Man comic book series.\n\nToub, who is of Persian Jewish background, was born in Tehran, Iran and raised in Manchester, England (his family left Iran before the 1979 revolution). At the age of fourteen, he moved to Switzerland and after a two year stay, he crossed the Atlant","version":53,"id":"17857","birthplace":"Tehran, Iran","lastModified":"1302036657000","name":"Shaun Toub","type":"Person","_key":"10949"} +{"label":"Jeris Poindexter","version":17,"id":"17858","lastModified":"1301901639000","name":"Jeris Poindexter","type":"Person","_key":"10950"} +{"label":"Wendell Pierce","version":28,"id":"17859","lastModified":"1301903107000","name":"Wendell Pierce","type":"Person","_key":"10951"} +{"label":"Population 436","description":"A census-taker (Sisto) is sent to investigate why a certain small town has had the same population -- 436 residents -- for the last 100 years.","id":"1596","runtime":88,"imdbId":"tt0462482","version":114,"lastModified":"1301905995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bb\/4bc9119c017a3c57fe0067bb\/population-436-mid.jpg","studio":"Pariah Entertainment Group","genre":"Drama","title":"Population 436","releaseDate":1149724800000,"language":"en","type":"Movie","_key":"10952"} +{"label":"Michelle Maxwell MacLaren","version":21,"id":"29779","lastModified":"1301901815000","name":"Michelle Maxwell MacLaren","type":"Person","_key":"10953"} +{"label":"James Blicq","version":21,"id":"29781","lastModified":"1301901672000","name":"James Blicq","type":"Person","_key":"10954"} +{"label":"Cory Cassidy","version":21,"id":"29782","lastModified":"1301901681000","name":"Cory Cassidy","type":"Person","_key":"10955"} +{"label":"Fred Durst","version":27,"id":"29783","lastModified":"1301902017000","name":"Fred Durst","type":"Person","_key":"10956"} +{"label":"Leigh Enns","version":23,"id":"29784","lastModified":"1301901674000","name":"Leigh Enns","type":"Person","_key":"10957"} +{"label":"Meet the Parents","description":"Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.","id":"1597","runtime":108,"imdbId":"tt0212338","trailer":"http:\/\/www.youtube.com\/watch?v=yZPnCWmo1Xs","version":741,"lastModified":"1301901376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4bc911a8017a3c57fe006802\/meet-the-parents-mid.jpg","studio":"Universal Home Video","genre":"Comedy","title":"Meet the Parents","releaseDate":970790400000,"language":"en","tagline":"First comes love. Then come the interrogation","type":"Movie","_key":"10958"} +{"label":"Nicole DeHuff","version":27,"id":"17865","lastModified":"1301903108000","name":"Nicole DeHuff","type":"Person","_key":"10959"} +{"label":"Jon Abrahams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f8b\/4d8bcf257b9aa13ade001f8b\/jon-abrahams-profile.jpg","version":57,"id":"17866","lastModified":"1301901402000","name":"Jon Abrahams","type":"Person","_key":"10960"} +{"label":"Thomas McCarthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/047\/4bca12ee017a3c0e93000047\/thomas-mccarthy-profile.jpg","version":67,"id":"17867","lastModified":"1301901090000","name":"Thomas McCarthy","type":"Person","_key":"10961"} +{"label":"Phyllis George","version":28,"id":"17868","lastModified":"1301901762000","name":"Phyllis George","type":"Person","_key":"10962"} +{"label":"Cape Fear","description":"Sam Bowden is a small-town corporate attorney\/\"Leave It to Beaver\"-esque family-man. Max Cady is a tattooed, cigar-smoking, bible-quoting, psychotic rapist. What do they have in common? Fourteen years, ago Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey, bibliophile Cady has been released, and he intends to teach Sam Bowden and his family a thing or two abou","id":"1598","runtime":128,"imdbId":"tt0101540","trailer":"http:\/\/www.youtube.com\/watch?v=xe9o_IwY3Fs","version":381,"lastModified":"1301902141000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d5\/4d952eff7b9aa119940027d5\/cape-fear-mid.jpg","studio":"Universal Studios","genre":"Drama","title":"Cape Fear","releaseDate":689990400000,"language":"en","type":"Movie","_key":"10963"} +{"label":"Fred Dalton Thompson","version":39,"id":"17874","lastModified":"1301901217000","name":"Fred Dalton Thompson","type":"Person","_key":"10964"} +{"label":"Zully Montero","version":20,"id":"17875","lastModified":"1301901591000","name":"Zully Montero","type":"Person","_key":"10965"} +{"label":"I Heart Huckabees","description":"A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.","id":"1599","runtime":106,"imdbId":"tt0356721","version":290,"lastModified":"1301907503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4c4e88907b9aa1326b00006b\/i-heart-huckabees-mid.jpg","studio":"N1 European Film Produktions","genre":"Comedy","title":"I Heart Huckabees","releaseDate":1094774400000,"language":"en","type":"Movie","_key":"10966"} +{"label":"Jason Schwartzman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4bdd63c5017a3c20c7000126\/jason-schwartzman-profile.jpg","version":87,"id":"17881","lastModified":"1301904084000","name":"Jason Schwartzman","type":"Person","_key":"10967"} +{"label":"Isabelle Huppert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae5\/4d55ceb05e73d617b3006ae5\/isabelle-huppert-profile.jpg","version":83,"id":"17882","lastModified":"1302011950000","name":"Isabelle Huppert","type":"Person","_key":"10968"} +{"label":"Darlene Hunt","version":23,"id":"21005","lastModified":"1301901280000","name":"Darlene Hunt","type":"Person","_key":"10969"} +{"label":"Sydney Zarp","version":18,"id":"21006","lastModified":"1301901625000","name":"Sydney Zarp","type":"Person","_key":"10970"} +{"label":"Jonah Hill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4bf61c1e017a3c772600013f\/jonah-hill-profile.jpg","biography":"American actor and writer Jonah Hill is most famous for his comedic roles in Superbad (2007), and Get Him to the Greek (2010). The California native attended college in NYC where he studied acting, produced plays, and was in introduced to movie producer Dustin Hoffman.  After meeting Jonah, Hoffman asked him to audition for a role in I Heart Huckabees. This turned out to be Jonah's breakthrough film debut.  Throughout his career Hill has been known for his quasi dorky charact","version":122,"id":"21007","lastModified":"1301976643000","name":"Jonah Hill","type":"Person","_key":"10971"} +{"label":"David O. Russell","biography":"American film director and screenwriter David Owen Russell has been praised for the loose, comic energy that characterizes his work, and is notorious for his explosive confrontations with cast members. He has won 2 Independent Spirit Awards for writing and directing as well as the Audience Award at Sundance, and a Writers Guild of America Award.\n\nRussell was awarded Best First Screenplay and Best First Feature from the Independent Spirit Awards for his first work, the independent dark comedy \u201cSp","version":71,"birthday":"-358736400000","id":"17883","birthplace":"New York City, New York, USA","lastModified":"1301901107000","name":"David O. Russell","type":"Person","_key":"10972"} +{"label":"The Double Life of Veronique","description":"Veronika and Veronique live in different countries and have never met. Nevertheless, one's death is going to change the other's life forever.","id":"1600","runtime":98,"imdbId":"tt0101765","version":609,"lastModified":"1302039058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/830\/4bc911af017a3c57fe006830\/la-double-vie-de-veronique-mid.jpg","studio":"Sid\u00e9ral Productions","genre":"Drama","title":"The Double Life of Veronique","releaseDate":674265600000,"language":"en","tagline":"Each of us is matched somewhere in the world, by our exact double - someone who shares our thoughts and dreams","type":"Movie","_key":"10973"} +{"label":"Halina Gryglaszewska","version":20,"id":"17888","lastModified":"1301901634000","name":"Halina Gryglaszewska","type":"Person","_key":"10974"} +{"label":"Guillaume de Tonquedec","version":21,"id":"17896","lastModified":"1301901576000","name":"Guillaume de Tonquedec","type":"Person","_key":"10975"} +{"label":"Wladyslaw Kowalski","version":22,"id":"17889","lastModified":"1301901402000","name":"Wladyslaw Kowalski","type":"Person","_key":"10976"} +{"label":"Jerzy Gudejko","version":20,"id":"17890","lastModified":"1301901436000","name":"Jerzy Gudejko","type":"Person","_key":"10977"} +{"label":"Janusz Sterninski","version":19,"id":"17891","lastModified":"1301901927000","name":"Janusz Sterninski","type":"Person","_key":"10978"} +{"label":"Sandrine Dumas","version":23,"id":"17892","lastModified":"1301901927000","name":"Sandrine Dumas","type":"Person","_key":"10979"} +{"label":"Louis Ducreux","version":19,"id":"17893","lastModified":"1301901927000","name":"Louis Ducreux","type":"Person","_key":"10980"} +{"label":"Claude Duneton","version":19,"id":"17894","lastModified":"1301901927000","name":"Claude Duneton","type":"Person","_key":"10981"} +{"label":"Lorraine Evanoff","version":19,"id":"17895","lastModified":"1301901927000","name":"Lorraine Evanoff","type":"Person","_key":"10982"} +{"label":"Gilles Gaston-Dreyfus","version":34,"id":"17897","lastModified":"1301903107000","name":"Gilles Gaston-Dreyfus","type":"Person","_key":"10983"} +{"label":"Alain Fr\u00e9rot","version":19,"id":"17898","lastModified":"1301901927000","name":"Alain Fr\u00e9rot","type":"Person","_key":"10984"} +{"label":"Youssef Hamid","version":21,"id":"17899","lastModified":"1301903108000","name":"Youssef Hamid","type":"Person","_key":"10985"} +{"label":"Thierry de Carbonni\u00e8res","version":19,"id":"17900","lastModified":"1301901927000","name":"Thierry de Carbonni\u00e8res","type":"Person","_key":"10986"} +{"label":"Chantal Neuwirth","version":28,"id":"17901","lastModified":"1301901441000","name":"Chantal Neuwirth","type":"Person","_key":"10987"} +{"label":"Nausicaa Rampony","version":19,"id":"17902","lastModified":"1301901927000","name":"Nausicaa Rampony","type":"Person","_key":"10988"} +{"label":"Boguslawa Schubert","version":19,"id":"17903","lastModified":"1301901762000","name":"Boguslawa Schubert","type":"Person","_key":"10989"} +{"label":"Jacques Potin","version":19,"id":"17904","lastModified":"1301901927000","name":"Jacques Potin","type":"Person","_key":"10990"} +{"label":"Mission: Impossible Ultimate Missions Collection","description":"Mission: Impossible is a series of three a secret agent thriller films starring Tom Cruise and based on the popular television series.","id":"1606","runtime":359,"imdbId":"tt0117060","version":170,"lastModified":"1301902549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/074\/4c8e716e5e73d6141b000074\/mission-impossible-ultimate-missions-collection-mid.jpg","studio":"Paramount Pictures","title":"Mission: Impossible Ultimate Missions Collection","language":"en","tagline":"Expect the Impossible","type":"Movie","_key":"10991"} +{"label":"A Bronx Tale","description":"Robert De Niro made his directorial debut with this expanded adaptation of Chazz Palminteri's one-character play. DeNiro's role of Lorenzo Anello, an Italian-America bus driver, is secondary to the part of his son Calogero, played by young Francis Capra. The top dog in Calogero's Bronx neighborhood is flashy \"wiseguy\" Sonny (Chazz Palminteri). When the boy witnesses Sonny commit a murder, he honor","id":"1607","runtime":121,"imdbId":"tt0106489","trailer":"http:\/\/www.youtube.com\/watch?v=2646","version":773,"lastModified":"1301974020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/849\/4bc911b4017a3c57fe006849\/a-bronx-tale-mid.jpg","studio":"Tribeca Productions","genre":"Crime","title":"A Bronx Tale","releaseDate":747964800000,"language":"en","tagline":"One man lives in the neighborhood, another man owns it. A devoted father battles the local crime boss for the life of his son.","type":"Movie","_key":"10992"} +{"label":"Lillo Brancato","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77f\/4d9aa89c7b9aa164c000077f\/lillo-brancato-profile.jpg","version":28,"id":"17917","lastModified":"1301974140000","name":"Lillo Brancato","type":"Person","_key":"10993"} +{"label":"Francis Capra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7aa\/4d9aa8c17b9aa164cc0007aa\/francis-capra-profile.jpg","version":29,"id":"17918","lastModified":"1301974178000","name":"Francis Capra","type":"Person","_key":"10994"} +{"label":"Taral Hicks","version":28,"id":"17919","lastModified":"1301974019000","name":"Taral Hicks","type":"Person","_key":"10995"} +{"label":"Kathrine Narducci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/009\/4c6981785e73d65f46000009\/kathrine-narducci-profile.jpg","version":32,"id":"17920","lastModified":"1301974019000","name":"Kathrine Narducci","type":"Person","_key":"10996"} +{"label":"Clem Caserta","version":26,"id":"17921","lastModified":"1301974019000","name":"Clem Caserta","type":"Person","_key":"10997"} +{"label":"Alfred Sauchelli Jr.","version":25,"id":"17922","lastModified":"1301974019000","name":"Alfred Sauchelli Jr.","type":"Person","_key":"10998"} +{"label":"Frank Pietrangolare","version":28,"id":"17923","lastModified":"1301974019000","name":"Frank Pietrangolare","type":"Person","_key":"10999"} +{"label":"Robert D'Andrea","version":26,"id":"17924","lastModified":"1301974019000","name":"Robert D'Andrea","type":"Person","_key":"11000"} +{"label":"Eddie Montanaro","version":26,"id":"17925","lastModified":"1301974019000","name":"Eddie Montanaro","type":"Person","_key":"11001"} +{"label":"Fred Fischer","version":34,"id":"17926","lastModified":"1301974019000","name":"Fred Fischer","type":"Person","_key":"11002"} +{"label":"Dave Salerno","version":27,"id":"17927","lastModified":"1302060400000","name":"Dave Salerno","type":"Person","_key":"11003"} +{"label":"Joe D'Onofrio","version":25,"id":"17928","lastModified":"1301974019000","name":"Joe D'Onofrio","type":"Person","_key":"11004"} +{"label":"Luigi D'Angelo","version":25,"id":"17929","lastModified":"1301974019000","name":"Luigi D'Angelo","type":"Person","_key":"11005"} +{"label":"Louis Vanaria","version":26,"id":"17930","lastModified":"1301974019000","name":"Louis Vanaria","type":"Person","_key":"11006"} +{"label":"Dominick Rocchio","version":27,"id":"17931","lastModified":"1301974019000","name":"Dominick Rocchio","type":"Person","_key":"11007"} +{"label":"Patrick Borriello","version":25,"id":"17932","lastModified":"1301974019000","name":"Patrick Borriello","type":"Person","_key":"11008"} +{"label":"Paul Perri","version":36,"id":"17933","lastModified":"1301974019000","name":"Paul Perri","type":"Person","_key":"11009"} +{"label":"Mitch Kolpan","version":26,"id":"17934","lastModified":"1301974019000","name":"Mitch Kolpan","type":"Person","_key":"11010"} +{"label":"Phil Foglia","version":26,"id":"17935","lastModified":"1301974019000","name":"Phil Foglia","type":"Person","_key":"11011"} +{"label":"Max Genovino","version":28,"id":"17936","lastModified":"1301974019000","name":"Max Genovino","type":"Person","_key":"11012"} +{"label":"Ralph Napolitano","version":29,"id":"17937","lastModified":"1301974019000","name":"Ralph Napolitano","type":"Person","_key":"11013"} +{"label":"Steve Kendall","version":26,"id":"17938","lastModified":"1301974019000","name":"Steve Kendall","type":"Person","_key":"11014"} +{"label":"A.J. Ekoku","version":25,"id":"17939","lastModified":"1301974019000","name":"A.J. Ekoku","type":"Person","_key":"11015"} +{"label":"Sobe Bailey","version":25,"id":"17940","lastModified":"1301974019000","name":"Sobe Bailey","type":"Person","_key":"11016"} +{"label":"Gianna Ranaudo","version":26,"id":"17942","lastModified":"1301974019000","name":"Gianna Ranaudo","type":"Person","_key":"11017"} +{"label":"Nina Sonja Peterson","version":25,"id":"17943","lastModified":"1301974019000","name":"Nina Sonja Peterson","type":"Person","_key":"11018"} +{"label":"Joe Burns","version":25,"id":"17960","lastModified":"1301974019000","name":"Joe Burns","type":"Person","_key":"11019"} +{"label":"Susan E. Fiore","version":25,"id":"17961","lastModified":"1301974019000","name":"Susan E. Fiore","type":"Person","_key":"11020"} +{"label":"Julie Herrin","version":25,"id":"17962","lastModified":"1301974019000","name":"Julie Herrin","type":"Person","_key":"11021"} +{"label":"Joseph P. Reidy","version":51,"id":"7531","lastModified":"1301974019000","name":"Joseph P. Reidy","type":"Person","_key":"11022"} +{"label":"When Saturday Comes","description":"A working class drama about a young would-be soccer player trying to better himself and break his ne'er-do-well father's family jinx.","id":"1608","runtime":95,"imdbId":"tt0114917","version":262,"lastModified":"1301905370000","studio":"Pint O'Bitter Productions","genre":"Drama","title":"When Saturday Comes","releaseDate":825638400000,"language":"en","type":"Movie","_key":"11023"} +{"label":"Craig Kelly","version":19,"id":"18019","lastModified":"1301901842000","name":"Craig Kelly","type":"Person","_key":"11024"} +{"label":"Maria Giese","version":21,"id":"68800","lastModified":"1301902017000","name":"Maria Giese","type":"Person","_key":"11025"} +{"label":"There's Only One Jimmy Grimble","description":"Jimmy Grimble is a shy Manchester school boy. At school he is constantly being bullied by the other kids, and at home he has to face his mother's new boyfriend. However, through football, and some special boots, he manages to gain the confidence to succeed and leads his school football team towards the final of the local schools cup.","id":"1609","runtime":106,"imdbId":"tt0238660","version":111,"lastModified":"1301904033000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb5\/4bea2aec017a3c35b7000fb5\/there-s-only-one-jimmy-grimble-mid.jpg","studio":"Path\u00e9 Pictures","genre":"Comedy","title":"There's Only One Jimmy Grimble","releaseDate":967161600000,"language":"en","type":"Movie","_key":"11026"} +{"label":"Lewis McKenzie","version":17,"id":"18020","lastModified":"1301901478000","name":"Lewis McKenzie","type":"Person","_key":"11027"} +{"label":"Jane Lapotaire","version":17,"id":"18021","lastModified":"1301901625000","name":"Jane Lapotaire","type":"Person","_key":"11028"} +{"label":"Gina McKee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/239\/4cc0b0185e73d67784001239\/gina-mckee-profile.jpg","version":32,"id":"18022","lastModified":"1301901346000","name":"Gina McKee","type":"Person","_key":"11029"} +{"label":"Ben Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06e\/4ceebbfe5e73d654f600006e\/ben-miller-profile.jpg","version":40,"id":"18025","lastModified":"1301901562000","name":"Ben Miller","type":"Person","_key":"11030"} +{"label":"Wayne Galtrey","version":21,"id":"18026","lastModified":"1301901750000","name":"Wayne Galtrey","type":"Person","_key":"11031"} +{"label":"Ciaran Griffiths","version":17,"id":"18027","lastModified":"1301901913000","name":"Ciaran Griffiths","type":"Person","_key":"11032"} +{"label":"Bobby Power","version":17,"id":"18028","lastModified":"1301901750000","name":"Bobby Power","type":"Person","_key":"11033"} +{"label":"John Hay","version":22,"id":"18024","lastModified":"1301901750000","name":"John Hay","type":"Person","_key":"11034"} +{"label":"Fever Pitch","description":"A romantic comedy about a man, a woman and a football team. Based on Nick Hornby's best selling autobiographical novel, Fever Pitch. English teacher Paul Ashworth believes his long standing obsession with Arsenal serves him well. But then he meets Sarah. Their relationship develops in tandem with Arsenal's roller coaster fortunes in the football league, both leading to a nail biting climax.","id":"1610","runtime":102,"imdbId":"tt0119114","version":280,"lastModified":"1301902530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/863\/4bc911ba017a3c57fe006863\/fever-pitch-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"Fever Pitch","releaseDate":873331200000,"language":"en","type":"Movie","_key":"11035"} +{"label":"David Evans","version":19,"id":"18030","lastModified":"1301901913000","name":"David Evans","type":"Person","_key":"11036"} +{"label":"Ruth Gemmell","version":18,"id":"18031","lastModified":"1301901698000","name":"Ruth Gemmell","type":"Person","_key":"11037"} +{"label":"Luke Aikman","version":17,"id":"18145","lastModified":"1301901913000","name":"Luke Aikman","type":"Person","_key":"11038"} +{"label":"Das Wunder von Bern","description":"The movie deals with the championship-winning German soccer team of 1954. Its story is linked with two others: The family of a young boy is split due to the events in World War II, and the father returns from Russia after eleven years. The second story is about a reporter and his wife reporting from the tournament.","id":"1611","runtime":112,"imdbId":"tt0326429","version":81,"lastModified":"1301904449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44d\/4bf7bd17017a3c772a00044d\/das-wunder-von-bern-mid.jpg","studio":"Senator Film Produktion","genre":"Drama","title":"Das Wunder von Bern","releaseDate":1066262400000,"language":"en","type":"Movie","_key":"11039"} +{"label":"Louis Klamroth","version":15,"id":"18033","lastModified":"1301903109000","name":"Louis Klamroth","type":"Person","_key":"11040"} +{"label":"Johanna Gastdorf","version":24,"id":"18035","lastModified":"1301901565000","name":"Johanna Gastdorf","type":"Person","_key":"11041"} +{"label":"Mirko Lang","version":22,"id":"18152","lastModified":"1301901367000","name":"Mirko Lang","type":"Person","_key":"11042"} +{"label":"Birthe Wolter","version":22,"id":"18153","lastModified":"1301901542000","name":"Birthe Wolter","type":"Person","_key":"11043"} +{"label":"Katharina Wackernagel","version":19,"id":"18154","lastModified":"1301901567000","name":"Katharina Wackernagel","type":"Person","_key":"11044"} +{"label":"Sascha G\u00f6pel","version":20,"id":"18157","lastModified":"1301901456000","name":"Sascha G\u00f6pel","type":"Person","_key":"11045"} +{"label":"Knut Hartwig","version":16,"id":"18158","lastModified":"1301901625000","name":"Knut Hartwig","type":"Person","_key":"11046"} +{"label":"Holger Dexne","version":16,"id":"18159","lastModified":"1301901625000","name":"Holger Dexne","type":"Person","_key":"11047"} +{"label":"Simon Verhoeven","version":27,"id":"18161","lastModified":"1301901647000","name":"Simon Verhoeven","type":"Person","_key":"11048"} +{"label":"Jo Stock","version":16,"id":"18162","lastModified":"1301901625000","name":"Jo Stock","type":"Person","_key":"11049"} +{"label":"Martin Bretschneider","version":16,"id":"18163","lastModified":"1301901625000","name":"Martin Bretschneider","type":"Person","_key":"11050"} +{"label":"Christian Broos","version":16,"id":"18164","lastModified":"1301901624000","name":"Christian Broos","type":"Person","_key":"11051"} +{"label":"Andreas Bath","version":20,"id":"18166","lastModified":"1301901624000","name":"Andreas Bath","type":"Person","_key":"11052"} +{"label":"Tobias Hartmann","version":20,"id":"18169","lastModified":"1301901624000","name":"Tobias Hartmann","type":"Person","_key":"11053"} +{"label":"Andreas Obering","version":19,"id":"18171","lastModified":"1301901624000","name":"Andreas Obering","type":"Person","_key":"11054"} +{"label":"Fussball ist unser Leben","description":"No overview found.","id":"1612","runtime":92,"imdbId":"tt0225824","version":82,"lastModified":"1301904695000","studio":"Hofmann & Voges Entertainment","genre":"Comedy","title":"Fussball ist unser Leben","releaseDate":950140800000,"language":"en","type":"Movie","_key":"11055"} +{"label":"Walter Gontermann","version":22,"id":"36787","lastModified":"1301901633000","name":"Walter Gontermann","type":"Person","_key":"11056"} +{"label":"Michael Sideris","version":23,"id":"38968","lastModified":"1301901963000","name":"Michael Sideris","type":"Person","_key":"11057"} +{"label":"Tana Schanzara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f0\/4cf4fed47b9aa151480001f0\/tana-schanzara-profile.jpg","version":26,"birthday":"-1389661200000","id":"38969","birthplace":"Kiel, Germany","lastModified":"1301901237000","name":"Tana Schanzara","type":"Person","_key":"11058"} +{"label":"Marita Marschall","version":25,"id":"37477","lastModified":"1301901658000","name":"Marita Marschall","type":"Person","_key":"11059"} +{"label":"Thomas Balou Martin","version":21,"id":"38970","lastModified":"1301902017000","name":"Thomas Balou Martin","type":"Person","_key":"11060"} +{"label":"Jochen Kolenda","version":22,"id":"35438","lastModified":"1301901926000","name":"Jochen Kolenda","type":"Person","_key":"11061"} +{"label":"Ludger Burmann","version":20,"id":"31474","lastModified":"1301901761000","name":"Ludger Burmann","type":"Person","_key":"11062"} +{"label":"Birgit Stein","version":22,"id":"32447","lastModified":"1301901483000","name":"Birgit Stein","type":"Person","_key":"11063"} +{"label":"Jessica Franz","version":21,"id":"49305","lastModified":"1301902299000","name":"Jessica Franz","type":"Person","_key":"11064"} +{"label":"Rolf Dennemann","version":21,"id":"49306","lastModified":"1301902382000","name":"Rolf Dennemann","type":"Person","_key":"11065"} +{"label":"Ania Rudy","version":18,"id":"49307","lastModified":"1301902353000","name":"Ania Rudy","type":"Person","_key":"11066"} +{"label":"Markus Hoffmann","version":20,"id":"49308","lastModified":"1301902299000","name":"Markus Hoffmann","type":"Person","_key":"11067"} +{"label":"Heinz Neumann","version":20,"id":"49309","lastModified":"1301902299000","name":"Heinz Neumann","type":"Person","_key":"11068"} +{"label":"Christiane zu Salm-Salm","version":20,"id":"49310","lastModified":"1301902299000","name":"Christiane zu Salm-Salm","type":"Person","_key":"11069"} +{"label":"Thomas Graw","version":20,"id":"49312","lastModified":"1301902299000","name":"Thomas Graw","type":"Person","_key":"11070"} +{"label":"Ernst Petry","version":20,"id":"49313","lastModified":"1301902299000","name":"Ernst Petry","type":"Person","_key":"11071"} +{"label":"Michael Rasmussen","version":22,"id":"49311","lastModified":"1301902220000","name":"Michael Rasmussen","type":"Person","_key":"11072"} +{"label":"Ioan Gyuri Pascu","version":20,"id":"49314","lastModified":"1301902299000","name":"Ioan Gyuri Pascu","type":"Person","_key":"11073"} +{"label":"Marie-Luisa Ley","version":18,"id":"49315","lastModified":"1301902353000","name":"Marie-Luisa Ley","type":"Person","_key":"11074"} +{"label":"Rudi Assauer","version":20,"id":"49316","lastModified":"1301902299000","name":"Rudi Assauer","type":"Person","_key":"11075"} +{"label":"Huub Stevens","version":20,"id":"49317","lastModified":"1301901926000","name":"Huub Stevens","type":"Person","_key":"11076"} +{"label":"Yves Eigenrauch","version":20,"id":"49318","lastModified":"1301902299000","name":"Yves Eigenrauch","type":"Person","_key":"11077"} +{"label":"Charly Neumann","version":20,"id":"49319","lastModified":"1301902123000","name":"Charly Neumann","type":"Person","_key":"11078"} +{"label":"Ulrich Potofski","version":20,"id":"49320","lastModified":"1301902299000","name":"Ulrich Potofski","type":"Person","_key":"11079"} +{"label":"Manfred Breuckmann","version":20,"id":"49321","lastModified":"1301902299000","name":"Manfred Breuckmann","type":"Person","_key":"11080"} +{"label":"Helmut Schulte","version":20,"id":"49322","lastModified":"1301902299000","name":"Helmut Schulte","type":"Person","_key":"11081"} +{"label":"Dirk Oberschulte-Beckmann","version":20,"id":"49323","lastModified":"1301902299000","name":"Dirk Oberschulte-Beckmann","type":"Person","_key":"11082"} +{"label":"Uwe Freyer","version":20,"id":"49324","lastModified":"1301902299000","name":"Uwe Freyer","type":"Person","_key":"11083"} +{"label":"Klaus Nierhoff","version":20,"id":"49325","lastModified":"1301902299000","name":"Klaus Nierhoff","type":"Person","_key":"11084"} +{"label":"Tomy Wigand","version":26,"id":"18039","lastModified":"1301901633000","name":"Tomy Wigand","type":"Person","_key":"11085"} +{"label":"Formula 51","description":"Elmo McElroy is a streetwise American master chemist who heads to England to sell his special new formula - a powerful, blue concoction guaranteed to take you to 'the 51st state.' McElroy's new product delivers a feeling 51 times more powerful than any thrill, any pleasure, any high in history. But his plans for a quick, profitable score go comically awry when he gets stuck in Liverpool with an unlikely escort and his ex-girlfriend and becomes entangled in a bizarre web of double-dealing and dou","id":"1613","runtime":92,"imdbId":"tt0227984","version":418,"lastModified":"1301903086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/881\/4bc911bd017a3c57fe006881\/the-51st-state-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Action","title":"Formula 51","releaseDate":1007683200000,"language":"en","tagline":"Nice Wheels. Dirty Deals. And One Mean Mother In A Kilt.","type":"Movie","_key":"11086"} +{"label":"Nigel Whitmey","version":26,"id":"29697","lastModified":"1301901553000","name":"Nigel Whitmey","type":"Person","_key":"11087"} +{"label":"Paul Barber","version":29,"id":"29698","lastModified":"1301901562000","name":"Paul Barber","type":"Person","_key":"11088"} +{"label":"Ricky Tomlinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/236\/4cf682af5e73d6299d001236\/ricky-tomlinson-profile.jpg","version":32,"id":"29699","lastModified":"1301901529000","name":"Ricky Tomlinson","type":"Person","_key":"11089"} +{"label":"Erkan & Stefan gegen die M\u00e4chte der Finsternis","description":"No overview found.","id":"1615","runtime":80,"imdbId":"tt0293124","version":38,"lastModified":"1301908544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b6\/4c331bd47b9aa174e20000b6\/erkan-stefan-gegen-die-machte-der-finsternis-mid.jpg","genre":"Comedy","title":"Erkan & Stefan gegen die M\u00e4chte der Finsternis","releaseDate":1024531200000,"language":"en","type":"Movie","_key":"11090"} +{"label":"Florian Simbeck","version":23,"id":"18042","lastModified":"1301903108000","name":"Florian Simbeck","type":"Person","_key":"11091"} +{"label":"John Friedmann","version":27,"id":"18047","lastModified":"1301901577000","name":"John Friedmann","type":"Person","_key":"11092"} +{"label":"Bettina Zimmermann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a09\/4cf57c4f5e73d6299a000a09\/bettina-zimmermann-profile.jpg","version":31,"id":"18055","lastModified":"1301901174000","name":"Bettina Zimmermann","type":"Person","_key":"11093"} +{"label":"Leon Boden","version":18,"id":"18062","lastModified":"1301901655000","name":"Leon Boden","type":"Person","_key":"11094"} +{"label":"Axel Sand","version":19,"id":"18090","lastModified":"1301903108000","name":"Axel Sand","type":"Person","_key":"11095"} +{"label":"Erkan & Stefan in Der Tod kommt krass","description":"No overview found.","id":"1616","runtime":97,"imdbId":"tt0427219","version":34,"lastModified":"1301906770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/892\/4bc911c1017a3c57fe006892\/erkan-stefan-der-tod-kommt-krass-mid.jpg","genre":"Comedy","title":"Erkan & Stefan in Der Tod kommt krass","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"11096"} +{"label":"Stefan Lust","version":17,"id":"18063","lastModified":"1301901574000","name":"Stefan Lust","type":"Person","_key":"11097"} +{"label":"Michael Karen","version":22,"id":"18064","lastModified":"1301901574000","name":"Michael Karen","type":"Person","_key":"11098"} +{"label":"Erkan & Stefan","description":"No overview found.","id":"1617","title":"Erkan & Stefan","language":"en","lastModified":"1301905879000","version":22,"type":"Movie","_key":"11099"} +{"label":"Still Crazy","description":"In the seventies Strange Fruit were it. They lived the rock lifestyle to the max, groupies, drugs, internal tension and an ex front man dead from an overdose. Even their demise was glamorous; when lightning struck the stage during an outdoor festival. 20 years on and these former rock gods they have now sunk deep into obscurity when the idea of a reunion tour is lodged in the head of Tony, former keyboard player of the Fruits. Tony sets out to find his former bandmates with the help of former ma","id":"1618","runtime":92,"imdbId":"tt0149151","version":225,"lastModified":"1301903449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51e\/4bf2ee61017a3c321300051e\/still-crazy-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Still Crazy","releaseDate":909705600000,"language":"en","type":"Movie","_key":"11100"} +{"label":"Jimmy Nail","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/216\/4cd3fb685e73d6734c000216\/jimmy-nail-profile.jpg","version":27,"birthday":"-498531600000","id":"18065","birthplace":"Newcastle, UK","lastModified":"1301901238000","name":"Jimmy Nail","type":"Person","_key":"11101"} +{"label":"Juliet Aubrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/605\/4cd850e95e73d676cd000605\/juliet-aubrey-profile.jpg","version":25,"id":"18066","lastModified":"1301901597000","name":"Juliet Aubrey","type":"Person","_key":"11102"} +{"label":"Bruce Robinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/592\/4cd854975e73d676ce000592\/bruce-robinson-profile.jpg","version":52,"id":"8966","lastModified":"1301901357000","name":"Bruce Robinson","type":"Person","_key":"11103"} +{"label":"Rachael Stirling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5dc\/4cd853335e73d676d20005dc\/rachael-stirling-profile.jpg","version":27,"id":"18067","lastModified":"1301901329000","name":"Rachael Stirling","type":"Person","_key":"11104"} +{"label":"Helena Bergstr\u00f6m","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/055\/4cb3f8d05e73d661c4000055\/helena-bergstrom-profile.jpg","version":26,"id":"18068","lastModified":"1301901379000","name":"Helena Bergstr\u00f6m","type":"Person","_key":"11105"} +{"label":"Frances Barber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/612\/4cd852825e73d676cd000612\/frances-barber-profile.jpg","version":34,"id":"47644","lastModified":"1301901529000","name":"Frances Barber","type":"Person","_key":"11106"} +{"label":"Phil Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65d\/4cd853cb5e73d676cf00065d\/phil-daniels-profile.jpg","version":31,"id":"65301","lastModified":"1301901532000","name":"Phil Daniels","type":"Person","_key":"11107"} +{"label":"Danny Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/597\/4cd855095e73d676ce000597\/danny-webb-profile.jpg","version":45,"id":"53917","lastModified":"1301901336000","name":"Danny Webb","type":"Person","_key":"11108"} +{"label":"Brian Gibson","version":26,"id":"18069","lastModified":"1301901366000","name":"Brian Gibson","type":"Person","_key":"11109"} +{"label":"The Way of the Gun","description":"Two petty if violent criminals kidnap a girl being paid 1.000.000$ to be a surrogate mother. As the baby is for a gangster the pair's demand for money sees several henchmen and assorted other ruthless characters head after them to Mexico. Bullets rather than talking are always going to settle this one","id":"1619","runtime":119,"imdbId":"tt0202677","version":547,"lastModified":"1301903613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89f\/4bc911c3017a3c57fe00689f\/the-way-of-the-gun-mid.jpg","genre":"Action","title":"The Way of the Gun","releaseDate":968371200000,"language":"en","type":"Movie","_key":"11110"} +{"label":"Nicky Katt","version":40,"id":"18070","lastModified":"1301901463000","name":"Nicky Katt","type":"Person","_key":"11111"} +{"label":"Geoffrey Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22e\/4c052b4e017a3c29a600022e\/geoffrey-lewis-profile.jpg","version":73,"id":"18071","lastModified":"1301901668000","name":"Geoffrey Lewis","type":"Person","_key":"11112"} +{"label":"Christopher McQuarrie","version":45,"id":"9033","lastModified":"1302060550000","name":"Christopher McQuarrie","type":"Person","_key":"11113"} +{"label":"Hitman","description":"The best-selling videogame, Hitman, roars to life with both barrels blazing in this hardcore action-thriller starring Timothy Olyphant. A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.","id":"1620","runtime":100,"imdbId":"tt0465494","trailer":"http:\/\/www.youtube.com\/watch?v=365","homepage":"http:\/\/www.hitmanmovie.com\/","version":514,"lastModified":"1301901310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d0\/4bc911c8017a3c57fe0068d0\/hitman-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Hitman","releaseDate":1195603200000,"language":"en","tagline":"Assassin 47","type":"Movie","_key":"11114"} +{"label":"Olga Kurylenko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/163\/4bec018e017a3c37a9000163\/olga-kurylenko-profile.jpg","biography":"Birth Name\nOlga Konstantinovna Kurylenko\n\nHeight\n5' 9\" (1.75 m)\n\nMini Biography\n\nOlga Kurylenko, a Ukrainian-born actress and model who grew up in poverty sharing a Soviet flat with her aunt, uncle, grandparents and cousin, is now starring as Bond girl opposite Daniel Craig.\n\nShe was born Olga Konstantinovna Kurylenko on November 14, 1979, in Berdyansk, Ukraine, Soviet Union. Her mother, Marina Alyabysheva, divorced her father, Konstantin Kurylenko, soon after her birth. After the divorce, her m","version":65,"birthday":"311382000000","id":"18182","birthplace":"Berdyansk, USSR, Ukraine","lastModified":"1301904049000","name":"Olga Kurylenko","type":"Person","_key":"11115"} +{"label":"Robert Knepper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fb\/4d1b3b965e73d6082e00b4fb\/robert-knepper-profile.jpg","version":45,"id":"17343","lastModified":"1302030724000","name":"Robert Knepper","type":"Person","_key":"11116"} +{"label":"Henry Ian Cusick","version":26,"id":"31166","lastModified":"1301901234000","name":"Henry Ian Cusick","type":"Person","_key":"11117"} +{"label":"Michael Offei","version":19,"id":"18183","lastModified":"1301901367000","name":"Michael Offei","type":"Person","_key":"11118"} +{"label":"Christian Erickson","version":29,"id":"45849","lastModified":"1301901233000","name":"Christian Erickson","type":"Person","_key":"11119"} +{"label":"Xavier Gens","version":37,"id":"18184","lastModified":"1301901446000","name":"Xavier Gens","type":"Person","_key":"11120"} +{"label":"Trading Places","description":"A snobbish investor and a wily street con artist find their positions reversed as part of a bet by two callous millionaires. ","id":"1621","runtime":118,"imdbId":"tt0086465","trailer":"http:\/\/www.youtube.com\/watch?v=ZjDbJQKDXCY","version":1075,"lastModified":"1301906799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e5\/4bc911ca017a3c57fe0068e5\/trading-places-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Trading Places","releaseDate":423878400000,"language":"en","type":"Movie","_key":"11121"} +{"label":"Don Ameche","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cb\/4bf88317017a3c49010000cb\/don-ameche-profile.jpg","version":42,"id":"18156","lastModified":"1301901285000","name":"Don Ameche","type":"Person","_key":"11122"} +{"label":"Kristin Holby","version":19,"id":"18160","lastModified":"1301903108000","name":"Kristin Holby","type":"Person","_key":"11123"} +{"label":"Lemming","description":"French mystery thriller with Charlotte Rampling and Charlotte Gainsbourg as two opponents who fight for the same man - brilliant psycho thriller scenes, won quite a lot of awards.","id":"1622","runtime":130,"imdbId":"tt0415932","version":104,"lastModified":"1301903983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f3\/4bc911cf017a3c57fe0068f3\/lemming-mid.jpg","studio":"Diaphana Films","genre":"Comedy","title":"Lemming","releaseDate":1115769600000,"language":"en","type":"Movie","_key":"11124"} +{"label":"Dominik Moll","version":36,"id":"18175","lastModified":"1301901841000","name":"Dominik Moll","type":"Person","_key":"11125"} +{"label":"Andr\u00e9 Dussollier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a3\/4d84cd227b9aa12ee10017a3\/andr-dussollier-profile.jpg","version":95,"id":"18177","lastModified":"1301904088000","name":"Andr\u00e9 Dussollier","type":"Person","_key":"11126"} +{"label":"Laurent Lucas","version":42,"id":"18178","lastModified":"1301901318000","name":"Laurent Lucas","type":"Person","_key":"11127"} +{"label":"Brubaker","description":"No overview found.","id":"1623","runtime":125,"imdbId":"tt0080474","trailer":"http:\/\/www.youtube.com\/watch?v=m34st7foilE","version":142,"lastModified":"1301903262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/125\/4c6048745e73d63464000125\/brubaker-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Drama","title":"Brubaker","releaseDate":330307200000,"language":"en","type":"Movie","_key":"11128"} +{"label":"David Keith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b58\/4cf3e1b25e73d62385000b58\/david-keith-profile.jpg","version":65,"id":"18181","lastModified":"1301901250000","name":"David Keith","type":"Person","_key":"11129"} +{"label":"Liar Liar","description":"Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.","id":"1624","runtime":86,"imdbId":"tt0119528","trailer":"http:\/\/www.youtube.com\/watch?v=tLhxa5VgpB4","version":541,"lastModified":"1301901898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92f\/4bc911d3017a3c57fe00692f\/liar-liar-mid.jpg","studio":"Imagine Entertainment","genre":"Comedy","title":"Liar Liar","releaseDate":858902400000,"language":"en","tagline":"Trust me.","type":"Movie","_key":"11130"} +{"label":"Justin Cooper","version":20,"id":"18190","lastModified":"1301901483000","name":"Justin Cooper","type":"Person","_key":"11131"} +{"label":"Amanda Donohoe","version":32,"id":"18191","lastModified":"1301901169000","name":"Amanda Donohoe","type":"Person","_key":"11132"} +{"label":"Jason Bernard","version":20,"id":"18192","lastModified":"1301901435000","name":"Jason Bernard","type":"Person","_key":"11133"} +{"label":"Christopher Mayer","version":21,"id":"18193","lastModified":"1301901435000","name":"Christopher Mayer","type":"Person","_key":"11134"} +{"label":"My Life to Live","description":"This film explores a Parisian woman's descent into prostitution.","id":"1626","runtime":85,"imdbId":"tt0056663","version":105,"lastModified":"1301902590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4bcb5ebe017a3c3e0a000009\/vivre-sa-vie-mid.jpg","studio":"Les Films de la Pl\u00e9iade","genre":"Drama","title":"My Life to Live","releaseDate":-229824000000,"language":"en","type":"Movie","_key":"11135"} +{"label":"Anna Karina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61f\/4c5b22b27b9aa151f600061f\/anna-karina-profile.jpg","version":57,"id":"18197","lastModified":"1301901318000","name":"Anna Karina","type":"Person","_key":"11136"} +{"label":"Sady Rebbot","version":22,"id":"18198","lastModified":"1301901590000","name":"Sady Rebbot","type":"Person","_key":"11137"} +{"label":"Andr\u00e9 S. Labarthe","version":22,"id":"18199","lastModified":"1301901683000","name":"Andr\u00e9 S. Labarthe","type":"Person","_key":"11138"} +{"label":"Guylaine Schlumberger","version":19,"id":"18200","lastModified":"1301903109000","name":"Guylaine Schlumberger","type":"Person","_key":"11139"} +{"label":"G\u00e9rard Hoffman","version":20,"id":"18201","lastModified":"1301901663000","name":"G\u00e9rard Hoffman","type":"Person","_key":"11140"} +{"label":"Monique Messine","version":20,"id":"18202","lastModified":"1301901663000","name":"Monique Messine","type":"Person","_key":"11141"} +{"label":"Brice Parain","version":20,"id":"18203","lastModified":"1301901663000","name":"Brice Parain","type":"Person","_key":"11142"} +{"label":"Peter Kassovitz","version":23,"id":"18204","lastModified":"1301901571000","name":"Peter Kassovitz","type":"Person","_key":"11143"} +{"label":"Eric Schlumberger","version":20,"id":"18205","lastModified":"1301901695000","name":"Eric Schlumberger","type":"Person","_key":"11144"} +{"label":"The Wild Child","description":"One summer day in 1798, a naked boy eleven or twelve years of age (Jean-Pierre Cargol) is found in a forest in the rural district of Aveyron in southern France. Living like a wild animal and unable to speak or understand language, the child has apparently grown up in solitude in the forest since an early age. He is brought to Paris and initially placed in a school for \"deaf-mutes\". Dr. Jean Marc Gaspard Itard (Fran\u00e7ois Truffaut) observes the boy and believes that he is neither deaf nor, as some ","id":"1627","runtime":83,"imdbId":"tt0064285","version":116,"lastModified":"1302020563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/934\/4bc911d6017a3c57fe006934\/l-enfant-sauvage-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"The Wild Child","releaseDate":4838400000,"language":"en","type":"Movie","_key":"11145"} +{"label":"Jean-Pierre Cargol","version":19,"id":"18206","lastModified":"1301901798000","name":"Jean-Pierre Cargol","type":"Person","_key":"11146"} +{"label":"Fran\u00e7oise Seigner","version":20,"id":"18207","lastModified":"1301901663000","name":"Fran\u00e7oise Seigner","type":"Person","_key":"11147"} +{"label":"Annie Miller","version":20,"id":"18208","lastModified":"1301901663000","name":"Annie Miller","type":"Person","_key":"11148"} +{"label":"Claude Miller","version":39,"id":"18209","lastModified":"1301901571000","name":"Claude Miller","type":"Person","_key":"11149"} +{"label":"Paul Vill\u00e9","version":20,"id":"18210","lastModified":"1301902029000","name":"Paul Vill\u00e9","type":"Person","_key":"11150"} +{"label":"Nathan Miller","version":19,"id":"18211","lastModified":"1301901975000","name":"Nathan Miller","type":"Person","_key":"11151"} +{"label":"Mathieu Schiffman","version":23,"id":"18212","lastModified":"1301901975000","name":"Mathieu Schiffman","type":"Person","_key":"11152"} +{"label":"Jean Gruault","version":36,"id":"18213","lastModified":"1301902026000","name":"Jean Gruault","type":"Person","_key":"11153"} +{"label":"Jules et Jim","description":"Decades of a love triangle concerning two friends and an impulsive woman.","id":"1628","runtime":110,"imdbId":"tt0055032","trailer":"http:\/\/www.youtube.com\/watch?v=oPWTJsO89-M","version":98,"lastModified":"1301902491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/945\/4bc911d7017a3c57fe006945\/jules-et-jim-mid.jpg","genre":"Drama","title":"Jules et Jim","releaseDate":-250560000000,"language":"en","type":"Movie","_key":"11154"} +{"label":"Oskar Werner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a2e\/4ca28b765e73d67049000a2e\/oskar-werner-profile.jpg","version":31,"id":"18216","lastModified":"1301901168000","name":"Oskar Werner","type":"Person","_key":"11155"} +{"label":"Henri Serre","version":29,"id":"18217","lastModified":"1301901348000","name":"Henri Serre","type":"Person","_key":"11156"} +{"label":"Marie Dubois","version":39,"id":"18218","lastModified":"1301901418000","name":"Marie Dubois","type":"Person","_key":"11157"} +{"label":"Sabine Haudepin","version":29,"id":"18219","lastModified":"1301901570000","name":"Sabine Haudepin","type":"Person","_key":"11158"} +{"label":"Vanna Urbino","version":19,"id":"18220","lastModified":"1301901685000","name":"Vanna Urbino","type":"Person","_key":"11159"} +{"label":"Boris Bassiak","version":21,"id":"18221","lastModified":"1301901587000","name":"Boris Bassiak","type":"Person","_key":"11160"} +{"label":"Anny Nelsen","version":21,"id":"18222","lastModified":"1301901806000","name":"Anny Nelsen","type":"Person","_key":"11161"} +{"label":"La Chinoise","description":"A small group of French students are studying Mao, trying to find out their position in the world and how to change the world to a Maoistic community using terrorism.","id":"1629","runtime":96,"imdbId":"tt0061473","version":310,"lastModified":"1301903789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94e\/4bc911d7017a3c57fe00694e\/la-chinoise-mid.jpg","studio":"Anouchka Films","genre":"Comedy","title":"La Chinoise","releaseDate":-73872000000,"language":"en","type":"Movie","_key":"11162"} +{"label":"Anne Wiazemsky","version":31,"id":"18227","lastModified":"1301903107000","name":"Anne Wiazemsky","type":"Person","_key":"11163"} +{"label":"Juliet Berto","version":26,"id":"18228","lastModified":"1301901522000","name":"Juliet Berto","type":"Person","_key":"11164"} +{"label":"Michel Semeniako","version":19,"id":"18229","lastModified":"1301901828000","name":"Michel Semeniako","type":"Person","_key":"11165"} +{"label":"Lex De Bruijn","version":19,"id":"18230","lastModified":"1301902017000","name":"Lex De Bruijn","type":"Person","_key":"11166"} +{"label":"Omar Diop","version":19,"id":"18231","lastModified":"1301902017000","name":"Omar Diop","type":"Person","_key":"11167"} +{"label":"Blandine Jeanson","version":19,"id":"18232","lastModified":"1301902013000","name":"Blandine Jeanson","type":"Person","_key":"11168"} +{"label":"Francis Jeanson","version":19,"id":"18233","lastModified":"1301902017000","name":"Francis Jeanson","type":"Person","_key":"11169"} +{"label":"Eliane Giovagnoli","version":19,"id":"18234","lastModified":"1301902017000","name":"Eliane Giovagnoli","type":"Person","_key":"11170"} +{"label":"The People vs. Larry Flynt","description":"Larry Flynt is the hedonistically obnoxious, but indomitable, publisher of Hustler magazine. The film recounts his struggle to make an honest living publishing his girlie magazine and how it changes into a battle to protect the freedom of speech for all people. ","id":"1630","runtime":129,"imdbId":"tt0117318","trailer":"http:\/\/www.youtube.com\/watch?v=VW2FGqK8Eu0","version":815,"lastModified":"1301901834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/957\/4bc911d8017a3c57fe006957\/the-people-vs-larry-flynt-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"The People vs. Larry Flynt","releaseDate":845164800000,"language":"en","type":"Movie","_key":"11171"} +{"label":"Brett Harrelson","version":20,"id":"18235","lastModified":"1301901589000","name":"Brett Harrelson","type":"Person","_key":"11172"} +{"label":"Donna Hanover","version":20,"id":"18236","lastModified":"1301901571000","name":"Donna Hanover","type":"Person","_key":"11173"} +{"label":"Une Vraie Jeune Fille","description":"No overview found.","id":"1631","runtime":93,"imdbId":"tt0135024","version":65,"lastModified":"1301905346000","studio":"Les Films de la Bo\u00e9tie","genre":"Drama","title":"Une Vraie Jeune Fille","releaseDate":918086400000,"language":"en","type":"Movie","_key":"11174"} +{"label":"Charlotte Alexandra","version":18,"id":"18240","lastModified":"1301901583000","name":"Charlotte Alexandra","type":"Person","_key":"11175"} +{"label":"Hiram Keller","version":21,"id":"18241","lastModified":"1301901405000","name":"Hiram Keller","type":"Person","_key":"11176"} +{"label":"Rita Maiden","version":23,"id":"18242","lastModified":"1301901975000","name":"Rita Maiden","type":"Person","_key":"11177"} +{"label":"Bruno Balp","version":18,"id":"18243","lastModified":"1301901571000","name":"Bruno Balp","type":"Person","_key":"11178"} +{"label":"Mississippi Burning","description":"Two FBI agents investigating the murder of civil rights workers during the 60s seek to breach the conspiracy of silence in a small Southern town where segregation divides black and white. The younger agent trained in FBI school runs up against the small town ways of his former Sheriff partner.","id":"1632","runtime":128,"imdbId":"tt0095647","trailer":"http:\/\/www.youtube.com\/watch?v=rmAqrMtB-Qg","version":502,"lastModified":"1301902480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4c35836f7b9aa17dac000063\/mississippi-burning-mid.jpg","studio":"Orion Pictures Corporation","genre":"Crime","title":"Mississippi Burning","releaseDate":597628800000,"language":"en","type":"Movie","_key":"11179"} +{"label":"Fried Green Tomatoes","description":"Evelyn Couch is having trouble in her marriage, and no one seems to take her seriously. While in a nursing home visiting relatives, she meets Ninny Threadgoode, an outgoing old woman, who tells her the story of Idgie Threadgoode, a young woman in 1920's Alabama. Through Idgie's inspiring life, Evelyn learns to be more assertive and builds a lasting friendship of her own with Ninny.","id":"1633","runtime":130,"imdbId":"tt0101921","version":765,"lastModified":"1301903627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a1\/4d388fd87b9aa17b3700f7a1\/fried-green-tomatoes-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Fried Green Tomatoes","releaseDate":693792000000,"language":"en","tagline":"The secret of life? The secret's in the sauce.","type":"Movie","_key":"11180"} +{"label":"Mary-Louise Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15d\/4c17905a7b9aa108d700015d\/mary-louise-parker-profile.jpg","biography":"<span style=\"font-size: 13px; line-height: 19px; font-family: sans-serif; \"><b>Mary-Louise Parker<\/b> (born August 2, 1964) is an American actress, best known for her current lead role on <a href=\"http:\/\/en.wikipedia.org\/wiki\/Showtime_(television)\" title=\"Showtime (television)\" class=\"mw-redirect\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; ","version":142,"id":"18248","lastModified":"1302066065000","name":"Mary-Louise Parker","type":"Person","_key":"11181"} +{"label":"Cicely Tyson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e99\/4d7661d55e73d6646e000e99\/cicely-tyson-profile.jpg","biography":"<FONT size=3><B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\">Cicely Tyson<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\"> was born December 19, 1933 and raised in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:City w:st=\"on\">Harlem<\/st1:City>, <st1:State w:st=\"on\">New York<\/st1:State> by devoutly religious parents from the Caribbean <st1:place w:st=\"on\"><st1:PlaceType w:st=\"on\">island<\/st1:PlaceType> of <st1:PlaceName ","version":42,"birthday":"-1137200400000","id":"18249","birthplace":"New York City, New York, USA","lastModified":"1301901663000","name":"Cicely Tyson","type":"Person","_key":"11182"} +{"label":"Mary Stuart Masterson","version":49,"id":"31140","lastModified":"1301904100000","name":"Mary Stuart Masterson","type":"Person","_key":"11183"} +{"label":"Jon Avnet","version":89,"id":"18250","lastModified":"1301901356000","name":"Jon Avnet","type":"Person","_key":"11184"} +{"label":"Free Willy","description":"When a boy learns that a beloved killer whale is to be killed by the aquarium owners, the boy risks everything to free the whale.","id":"1634","runtime":112,"imdbId":"tt0106965","version":226,"lastModified":"1301903753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99a\/4bc911e2017a3c57fe00699a\/free-willy-mid.jpg","studio":"Alcor Films","genre":"Action","title":"Free Willy","releaseDate":742780800000,"language":"en","type":"Movie","_key":"11185"} +{"label":"Simon Wincer","version":34,"id":"18254","lastModified":"1301901454000","name":"Simon Wincer","type":"Person","_key":"11186"} +{"label":"Jason James Richter","version":29,"id":"18259","lastModified":"1301901314000","name":"Jason James Richter","type":"Person","_key":"11187"} +{"label":"August Schellenberg","version":44,"id":"18260","lastModified":"1301901228000","name":"August Schellenberg","type":"Person","_key":"11188"} +{"label":"Jayne Atkinson","version":27,"id":"18261","lastModified":"1301901349000","name":"Jayne Atkinson","type":"Person","_key":"11189"} +{"label":"The Island","description":"Lincoln Six-Echo is a resident of a seemingly Utopian but contained facility in the mid 21st century. Lincoln hopes to be chosen to go to the \"The Island\" the last uncontaminated spot on the planet. But Lincoln soon discovers that everything about his existence is a lie.","id":"1635","runtime":127,"imdbId":"tt0399201","trailer":"http:\/\/www.youtube.com\/watch?v=PLPdg3BXiJk","homepage":"http:\/\/www.theisland-themovie.com\/","version":358,"lastModified":"1302020110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ee\/4bc911ef017a3c57fe0069ee\/the-island-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"The Island","releaseDate":1121990400000,"language":"en","tagline":"Your time will come...","type":"Movie","_key":"11190"} +{"label":"Bedazzled","description":"Elliot Richardson, suicidal techno geek, is given seven wishes to turn his life around when he meets up with a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil must put her own little twist on each his fantasies.","id":"1636","runtime":93,"imdbId":"tt0230030","trailer":"http:\/\/www.youtube.com\/watch?v=5xUnFbyqNr4","version":286,"lastModified":"1301906829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a12\/4bc911f6017a3c57fe006a12\/bedazzled-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Bedazzled","releaseDate":972000000000,"language":"en","tagline":"Meet the Devil. She's giving Elliott seven wishes. But not a chance in Hell.","type":"Movie","_key":"11191"} +{"label":"Paul Adelstein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40b\/4ce1b7425e73d60f6d00040b\/paul-adelstein-profile.jpg","version":37,"id":"17342","lastModified":"1302002302000","name":"Paul Adelstein","type":"Person","_key":"11192"} +{"label":"Toby Huss","version":29,"id":"18271","lastModified":"1301901414000","name":"Toby Huss","type":"Person","_key":"11193"} +{"label":"Gabriel Casseus","version":53,"id":"18272","lastModified":"1301901181000","name":"Gabriel Casseus","type":"Person","_key":"11194"} +{"label":"Speed","description":"A young cop must prevent a bomb exploding aboard a city bus by keeping its speed above 50 mph.","id":"1637","runtime":116,"imdbId":"tt0111257","trailer":"http:\/\/www.youtube.com\/watch?v=2264","version":611,"lastModified":"1301901229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bed\/4d8665517b9aa12edd003bed\/speed-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Speed","releaseDate":771206400000,"language":"en","tagline":"Get ready for rush hour","type":"Movie","_key":"11195"} +{"label":"Carlos Carrasco","version":33,"id":"33712","lastModified":"1302036098000","name":"Carlos Carrasco","type":"Person","_key":"11196"} +{"label":"Jordan Lund","version":32,"id":"33713","lastModified":"1301901822000","name":"Jordan Lund","type":"Person","_key":"11197"} +{"label":"Speed 2: Cruise Control","description":"Sandra Bullock and Jason Patric star as a young couple whose dream cruise turns to terror when a lunatic computer genius (Willem Dafoe) sets a new course for destruction.","id":"1639","runtime":121,"imdbId":"tt0120179","trailer":"http:\/\/www.youtube.com\/watch?v=3279Ry6bN4k","version":223,"lastModified":"1301902689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a37\/4bc911fb017a3c57fe006a37\/speed-2-cruise-control-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Speed 2: Cruise Control","releaseDate":866160000000,"language":"en","type":"Movie","_key":"11198"} +{"label":"Christine Firkins","version":21,"id":"18279","lastModified":"1301901993000","name":"Christine Firkins","type":"Person","_key":"11199"} +{"label":"Brian McCardie","version":23,"id":"18280","lastModified":"1301901950000","name":"Brian McCardie","type":"Person","_key":"11200"} +{"label":"Crash","description":"CRASH takes a provocative, unflinching look at the complexities of racial tolerance in contemporary America. Diving headlong into the diverse melting pot of post-9\/11 Los Angeles, this compelling urban drama tracks the volatile intersections of a multi-ethnic cast of characters\u2019 struggles to overcome their fears as they careen in and out of one another\u2019s lives. ","id":"1640","runtime":113,"imdbId":"tt0375679","trailer":"http:\/\/www.youtube.com\/watch?v=dEQ_ftkpb18","homepage":"http:\/\/www.crashfilm.com\/","version":509,"lastModified":"1302036657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a51\/4bc911ff017a3c57fe006a51\/crash-mid.jpg","studio":"Lions Gate Films","genre":"Drama","title":"Crash","releaseDate":1094774400000,"language":"en","tagline":"You think you know who you are. You have no idea.","type":"Movie","_key":"11201"} +{"label":"Paul Haggis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51c\/4ccb4b987b9aa16b9e00051c\/paul-haggis-profile.jpg","version":98,"id":"455","lastModified":"1299959098000","name":"Paul Haggis","type":"Person","_key":"11202"} +{"label":"Karina Arroyave","version":24,"id":"18282","lastModified":"1302036656000","name":"Karina Arroyave","type":"Person","_key":"11203"} +{"label":"Dato Bakhtadze","version":31,"id":"18283","lastModified":"1302036656000","name":"Dato Bakhtadze","type":"Person","_key":"11204"} +{"label":"Loretta Devine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/69a\/4cd9b95a7b9aa11b2200069a\/loretta-devine-profile.jpg","biography":"<SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><STRONG>Loretta Devine<\/STRONG><\/SPAN><SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"> w","version":74,"birthday":"-642650400000","id":"18284","birthplace":"Houston, Texas, USA","lastModified":"1302036656000","name":"Loretta Devine","type":"Person","_key":"11205"} +{"label":"Jennifer Esposito","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b6a\/4d63fc627b9aa154c3007b6a\/jennifer-esposito-profile.jpg","version":53,"id":"18285","lastModified":"1302036656000","name":"Jennifer Esposito","type":"Person","_key":"11206"} +{"label":"Ken Garito","version":23,"id":"18287","lastModified":"1302036656000","name":"Ken Garito","type":"Person","_key":"11207"} +{"label":"Terrence Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/170\/4bdd48b6017a3c20cb000170\/terrence-howard-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Terrence Dashon Howard<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> (born March 11, 1969) is an Academy Award-nominated American actor. Having his first major role in the 1995 film <I>Mr. Holland's Opus<\/I>, which subsequently led to a number of roles in films and high visibility among African American audiences. Howard broke into the mainstream with a succession of wel","version":83,"birthday":"-25578000000","id":"18288","birthplace":"Chicago, Illinois, USA ","lastModified":"1302036657000","name":"Terrence Howard","type":"Person","_key":"11208"} +{"label":"Yomi Perry","version":21,"id":"18289","lastModified":"1302036657000","name":"Yomi Perry","type":"Person","_key":"11209"} +{"label":"Ashlyn Sanchez","version":22,"id":"18290","lastModified":"1302036657000","name":"Ashlyn Sanchez","type":"Person","_key":"11210"} +{"label":"Larenz Tate","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/415\/4d7408cf7b9aa16ad8001415\/larenz-tate-profile.jpg","biography":"<FONT size=3><FONT face=\"Times New Roman\"><B><SPAN style=\"mso-ansi-language: EN\" lang=EN>Larenz Tate<\/SPAN><\/B><SPAN style=\"mso-ansi-language: EN\" lang=EN> (born September 8, 1975) is an American film and television actor. Tate was born on the west side of Chicago, Illinois. He is the youngest of three siblings whose family moved to California when he was nine years old. Convinced by their parents to enter a drama program at the Inner City Cultural Center, the trio did not take the lessons serio","version":38,"birthday":"179362800000","id":"18291","birthplace":"Chicago, Illinois, United States","lastModified":"1302036657000","name":"Larenz Tate","type":"Person","_key":"11211"} +{"label":"Beverly Todd","version":29,"id":"18292","lastModified":"1302036657000","name":"Beverly Todd","type":"Person","_key":"11212"} +{"label":"Kathleen York","version":24,"id":"18293","lastModified":"1302036657000","name":"Kathleen York","type":"Person","_key":"11213"} +{"label":"Alastair Douglas","version":21,"id":"18294","lastModified":"1302036657000","name":"Alastair Douglas","type":"Person","_key":"11214"} +{"label":"Nicholas George Stark","version":21,"id":"18295","lastModified":"1302036657000","name":"Nicholas George Stark","type":"Person","_key":"11215"} +{"label":"Art Chudabala","version":21,"id":"18296","lastModified":"1302036657000","name":"Art Chudabala","type":"Person","_key":"11216"} +{"label":"Sean Cory","version":21,"id":"18297","lastModified":"1302036657000","name":"Sean Cory","type":"Person","_key":"11217"} +{"label":"Tony Danza","version":35,"id":"18298","lastModified":"1302036657000","name":"Tony Danza","type":"Person","_key":"11218"} +{"label":"Ime Etuk","version":21,"id":"18299","lastModified":"1302036657000","name":"Ime Etuk","type":"Person","_key":"11219"} +{"label":"Eddie J. Fernandez","version":28,"id":"18300","lastModified":"1302036657000","name":"Eddie J. Fernandez","type":"Person","_key":"11220"} +{"label":"Howard Fong","version":21,"id":"18303","lastModified":"1302036657000","name":"Howard Fong","type":"Person","_key":"11221"} +{"label":"Billy Gallo","version":24,"id":"18304","lastModified":"1302036657000","name":"Billy Gallo","type":"Person","_key":"11222"} +{"label":"Glenn Taranto","version":25,"id":"18305","lastModified":"1302036657000","name":"Glenn Taranto","type":"Person","_key":"11223"} +{"label":"Daniel Dae Kim","version":36,"id":"18307","lastModified":"1302064821000","name":"Daniel Dae Kim","type":"Person","_key":"11224"} +{"label":"Forces of Nature","description":"Ben Holmes, a professional book-jacket blurbologist, is trying to get to Savannah for his wedding. He just barely catches the last plane, but a seagull flies into the engine as the plane is taking off. All later flights are cancelled because of an approaching hurricane, so he is forced to hitch a ride in a Geo Metro with an attractive but eccentric woman named Sara.","id":"1641","runtime":105,"imdbId":"tt0141098","version":239,"lastModified":"1301902509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f3\/4ce2ffc57b9aa168b30003f3\/forces-of-nature-mid.jpg","studio":"DreamWorks","genre":"Comedy","title":"Forces of Nature","releaseDate":921196800000,"language":"en","type":"Movie","_key":"11225"} +{"label":"Bronwen Hughes","version":22,"id":"18320","lastModified":"1301901587000","name":"Bronwen Hughes","type":"Person","_key":"11226"} +{"label":"The Net","description":"Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a CD-ROM game, she discovers a conspiracy that will turn her life upside down. Soon, her records have been erased, and she's been given a new identity and a police record. Her vacation is ruined as she struggles to determine why she's been deleted from society.","id":"1642","runtime":114,"imdbId":"tt0113957","trailer":"http:\/\/www.youtube.com\/watch?v=46qKHq7REI4","version":322,"lastModified":"1301902858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f7\/4d1fdebc7b9aa1737b0019f7\/the-net-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"The Net","releaseDate":806889600000,"language":"en","tagline":"Her driver's license. Her credit cards. Her bank accounts. Her identity. DELETED.","type":"Movie","_key":"11227"} +{"label":"Jeremy Northam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/445\/4cb6c9997b9aa138d9000445\/jeremy-northam-profile.jpg","version":61,"id":"18325","lastModified":"1301901158000","name":"Jeremy Northam","type":"Person","_key":"11228"} +{"label":"Dennis Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4c9b42ae5e73d667bf000081\/dennis-miller-profile.jpg","version":38,"id":"18326","lastModified":"1301901288000","name":"Dennis Miller","type":"Person","_key":"11229"} +{"label":"Wendy Gazelle","version":21,"id":"18327","lastModified":"1301901948000","name":"Wendy Gazelle","type":"Person","_key":"11230"} +{"label":"Ken Howard","version":39,"id":"18328","lastModified":"1301901344000","name":"Ken Howard","type":"Person","_key":"11231"} +{"label":"Irwin Winkler","version":116,"id":"11472","lastModified":"1302061984000","name":"Irwin Winkler","type":"Person","_key":"11232"} +{"label":"Last Tango in Paris","description":"A young Parisian woman begins a sordid affair with a middle-aged American businessman whom lays out ground rules that their clandestine relationship will be based only on sex.","id":"1643","runtime":129,"imdbId":"tt0070849","version":339,"lastModified":"1301901656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a86\/4bc91206017a3c57fe006a86\/ultimo-tango-a-parigi-mid.jpg","studio":"Les Productions Artistes Associ\u00e9s","genre":"Drama","title":"Last Tango in Paris","releaseDate":70675200000,"language":"en","type":"Movie","_key":"11233"} +{"label":"Maria Schneider","version":23,"id":"18329","lastModified":"1301903108000","name":"Maria Schneider","type":"Person","_key":"11234"} +{"label":"Gitt Magrini","version":33,"id":"18214","lastModified":"1301901695000","name":"Gitt Magrini","type":"Person","_key":"11235"} +{"label":"Marie-H\u00e9l\u00e8ne Breillat","version":21,"id":"18336","lastModified":"1301901807000","name":"Marie-H\u00e9l\u00e8ne Breillat","type":"Person","_key":"11236"} +{"label":"Luce Marquand","version":19,"id":"18338","lastModified":"1301901838000","name":"Luce Marquand","type":"Person","_key":"11237"} +{"label":"Veronica Lazar","version":25,"id":"18339","lastModified":"1301901595000","name":"Veronica Lazar","type":"Person","_key":"11238"} +{"label":"Massimo Girotti","version":37,"id":"18340","lastModified":"1301985936000","name":"Massimo Girotti","type":"Person","_key":"11239"} +{"label":"The Vanishing","description":"American remake of Sluizer's own \"Spoorloos\" (Netherlands\/1988), about a young woman who disappears mysteriously and the man obsessed with finding her. ","id":"1644","runtime":109,"imdbId":"tt0108473","trailer":"http:\/\/www.youtube.com\/watch?v=cBg7gjX9xBM","version":257,"lastModified":"1301903898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8f\/4bc91207017a3c57fe006a8f\/the-vanishing-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Thriller","title":"The Vanishing","releaseDate":728870400000,"language":"en","tagline":"If someone you loved mysteriously vanished how far out of your mind would you go to find them?","type":"Movie","_key":"11240"} +{"label":"Nancy Travis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d9\/4bd62250017a3c65820000d9\/nancy-travis-profile.jpg","version":48,"id":"18331","lastModified":"1301901265000","name":"Nancy Travis","type":"Person","_key":"11241"} +{"label":"Maggie Linderman","version":18,"id":"134594","lastModified":"1301903059000","name":"Maggie Linderman","type":"Person","_key":"11242"} +{"label":"Lisa Eichhorn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e33\/4c6832325e73d63460000e33\/lisa-eichhorn-profile.jpg","version":32,"id":"28950","lastModified":"1301901120000","name":"Lisa Eichhorn","type":"Person","_key":"11243"} +{"label":"George Hearn","version":26,"id":"38337","lastModified":"1301901644000","name":"George Hearn","type":"Person","_key":"11244"} +{"label":"Lynn Hamilton","version":19,"id":"96706","lastModified":"1301902856000","name":"Lynn Hamilton","type":"Person","_key":"11245"} +{"label":"Garrett Bennett","version":17,"id":"134595","lastModified":"1301902887000","name":"Garrett Bennett","type":"Person","_key":"11246"} +{"label":"Frank Girardeau","version":24,"id":"133452","lastModified":"1301901507000","name":"Frank Girardeau","type":"Person","_key":"11247"} +{"label":"Stephen Bridgewater","version":22,"id":"81692","lastModified":"1301902524000","name":"Stephen Bridgewater","type":"Person","_key":"11248"} +{"label":"Susan Barnes","version":20,"id":"104059","lastModified":"1301902489000","name":"Susan Barnes","type":"Person","_key":"11249"} +{"label":"Rich Hawkins","version":17,"id":"134596","lastModified":"1301902898000","name":"Rich Hawkins","type":"Person","_key":"11250"} +{"label":"George Sluizer","version":28,"id":"18335","lastModified":"1301901405000","name":"George Sluizer","type":"Person","_key":"11251"} +{"label":"A Time to Kill","description":"A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the KKK.","id":"1645","runtime":149,"imdbId":"tt0117913","version":406,"lastModified":"1301906905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa1\/4bc91208017a3c57fe006aa1\/a-time-to-kill-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Crime","title":"A Time to Kill","releaseDate":838166400000,"language":"en","tagline":"Experience a time you'll never forget.","type":"Movie","_key":"11252"} +{"label":"Brenda Fricker","version":46,"id":"18345","lastModified":"1301901350000","name":"Brenda Fricker","type":"Person","_key":"11253"} +{"label":"Rae'Ven Larrymore Kelly","version":22,"id":"18346","lastModified":"1301901491000","name":"Rae'Ven Larrymore Kelly","type":"Person","_key":"11254"} +{"label":"Tonea Stewart","version":21,"id":"18347","lastModified":"1301901488000","name":"Tonea Stewart","type":"Person","_key":"11255"} +{"label":"Freedom Writers","description":"A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.","id":"1646","runtime":123,"imdbId":"tt0463998","homepage":"http:\/\/www.freedomwriters.com\/","version":997,"lastModified":"1301901788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab7\/4bc9120b017a3c57fe006ab7\/freedom-writers-mid.jpg","studio":"Double Feature Films","genre":"Drama","title":"Freedom Writers","releaseDate":1167955200000,"language":"en","tagline":"Their story. Their world. Their future.","type":"Movie","_key":"11256"} +{"label":"Patrick Dempsey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4c793f715e73d613d800017f\/patrick-dempsey-profile.jpg","version":80,"birthday":"-125197200000","id":"18352","birthplace":"Lewiston, Maine, USA","lastModified":"1301901117000","name":"Patrick Dempsey","type":"Person","_key":"11257"} +{"label":"April L. Hernandez","version":19,"id":"18353","lastModified":"1301901482000","name":"April L. Hernandez","type":"Person","_key":"11258"} +{"label":"Kristin Herrera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18a\/4cefb9057b9aa13b9c00018a\/kristin-herrera-profile.jpg","version":25,"id":"35229","lastModified":"1301901295000","name":"Kristin Herrera","type":"Person","_key":"11259"} +{"label":"Deance Wyatt","version":23,"id":"35230","lastModified":"1301901672000","name":"Deance Wyatt","type":"Person","_key":"11260"} +{"label":"Gabriel Chavarria","version":22,"id":"35231","lastModified":"1301901482000","name":"Gabriel Chavarria","type":"Person","_key":"11261"} +{"label":"Robert Wisdom","version":34,"id":"21505","lastModified":"1301901639000","name":"Robert Wisdom","type":"Person","_key":"11262"} +{"label":"Pat Carroll","version":37,"id":"35232","lastModified":"1302063458000","name":"Pat Carroll","type":"Person","_key":"11263"} +{"label":"Will Morales","version":22,"id":"35233","lastModified":"1301901434000","name":"Will Morales","type":"Person","_key":"11264"} +{"label":"Ricardo Molina","version":25,"id":"25912","lastModified":"1301901399000","name":"Ricardo Molina","type":"Person","_key":"11265"} +{"label":"Angela Alvarado","version":26,"id":"22621","lastModified":"1301901796000","name":"Angela Alvarado","type":"Person","_key":"11266"} +{"label":"Palma Lawrence Reed","version":22,"id":"35234","lastModified":"1301901482000","name":"Palma Lawrence Reed","type":"Person","_key":"11267"} +{"label":"Giovonnie Samuels","version":22,"id":"35235","lastModified":"1301901434000","name":"Giovonnie Samuels","type":"Person","_key":"11268"} +{"label":"Hunter Parrish","version":30,"id":"35236","lastModified":"1301901547000","name":"Hunter Parrish","type":"Person","_key":"11269"} +{"label":"Vanetta Smith","version":22,"id":"35237","lastModified":"1301901386000","name":"Vanetta Smith","type":"Person","_key":"11270"} +{"label":"Jaclyn Ngan","version":20,"id":"35238","lastModified":"1301901576000","name":"Jaclyn Ngan","type":"Person","_key":"11271"} +{"label":"Sergio Montalvo","version":22,"id":"35239","lastModified":"1301901386000","name":"Sergio Montalvo","type":"Person","_key":"11272"} +{"label":"Richard LaGravenese","version":50,"id":"2163","lastModified":"1299492430000","name":"Richard LaGravenese","type":"Person","_key":"11273"} +{"label":"The Recruit","description":"Of all the CIA operatives-in-training, James Clayton is the one young star agency veteran Walter Burke most wants to recruit. But James is far from grateful for the opportunity, even though he's the sharpest in his class. Before James can officially become an officer, however, he must prove he's worthy at the Farm, the CIA's secret training grounds, where he learns to watch his back and trust no one but himself.","id":"1647","runtime":115,"imdbId":"tt0292506","trailer":"http:\/\/www.youtube.com\/watch?v=1596","version":431,"lastModified":"1301901677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3e\/4d5684147b9aa15cf3001e3e\/the-recruit-mid.jpg","studio":"Spyglass Entertainment","genre":"Action","title":"The Recruit","releaseDate":1043452800000,"language":"en","tagline":"Trust. Betrayal. Deception. In the C.I.A. nothing is what it seems.","type":"Movie","_key":"11274"} +{"label":"Bridget Moynahan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/56b\/4d1f509c5e73d66b3400156b\/bridget-moynahan-profile.jpg","version":90,"id":"18354","lastModified":"1301976799000","name":"Bridget Moynahan","type":"Person","_key":"11275"} +{"label":"Kenneth Mitchell","version":26,"id":"28868","lastModified":"1301902017000","name":"Kenneth Mitchell","type":"Person","_key":"11276"} +{"label":"Karl Pruner","version":27,"id":"28870","lastModified":"1301902048000","name":"Karl Pruner","type":"Person","_key":"11277"} +{"label":"Eugene Lipinski","version":29,"id":"28871","lastModified":"1301901599000","name":"Eugene Lipinski","type":"Person","_key":"11278"} +{"label":"Roger Donaldson","version":78,"id":"21370","lastModified":"1301901261000","name":"Roger Donaldson","type":"Person","_key":"11279"} +{"label":"Bill & Ted's Excellent Adventure","description":"Bill and Ted have spent so much time forming their rock band, The Wyld Stallyns, that they're flunking history. When Ted's dad threatens to send him away to military school, Bill and Ted realize it could mean the most heinous end of The Stallyns! Luckly, a guide from the future, Rufus, has come to them with a most bodacious solution.","id":"1648","runtime":93,"imdbId":"tt0096928","trailer":"http:\/\/www.youtube.com\/watch?v=xrGWooNDPiE","version":255,"lastModified":"1301901474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4cee9bfc7b9aa1349a0000cb\/bill-ted-s-excellent-adventure-mid.jpg","studio":"Studio Canal","genre":"Action","title":"Bill & Ted's Excellent Adventure","releaseDate":603676800000,"language":"en","tagline":"History is about to be rewritten by two guys who can't spell.","type":"Movie","_key":"11280"} +{"label":"Amy Stock-Poynton","version":21,"id":"18386","lastModified":"1301901750000","name":"Amy Stock-Poynton","type":"Person","_key":"11281"} +{"label":"Terry Camilleri","version":22,"id":"18359","lastModified":"1301901400000","name":"Terry Camilleri","type":"Person","_key":"11282"} +{"label":"Tony Steedman","version":19,"id":"18360","lastModified":"1301903109000","name":"Tony Steedman","type":"Person","_key":"11283"} +{"label":"Rod Loomis","version":23,"id":"18361","lastModified":"1301901442000","name":"Rod Loomis","type":"Person","_key":"11284"} +{"label":"Stephen Herek","version":59,"id":"18356","lastModified":"1301901507000","name":"Stephen Herek","type":"Person","_key":"11285"} +{"label":"Bill & Ted's Bogus Journey","description":"Attention all righteous dudes and babes! Keanu Reeves and Alex Winter are back and better than ever with a most triumphant sequel to Bill And Ted's Excellent Adventure! Everything's excellent for everyone's favourite surf-speaking dudes. With their own apartment, a pair of bodacious princess babes and a spot on the upcoming battle of the bands, life couldn't be any better. But all that goes down the tubes when Bill and Ted's evil robot twins kill the San Dimas duo and then take over their lives.","id":"1649","runtime":94,"imdbId":"tt0101452","trailer":"http:\/\/www.youtube.com\/watch?v=1443","version":267,"lastModified":"1301906245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c3\/4cee9d777b9aa134990000c3\/bill-ted-s-bogus-journey-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Bill & Ted's Bogus Journey","releaseDate":679881600000,"language":"en","tagline":"Once... they made history. Now... they are history.","type":"Movie","_key":"11286"} +{"label":"Peter Hewitt","version":49,"id":"18357","lastModified":"1301901285000","name":"Peter Hewitt","type":"Person","_key":"11287"} +{"label":"Haytabo","description":"No overview found.","id":"1650","runtime":75,"imdbId":"tt0263329","version":39,"lastModified":"1300978012000","title":"Haytabo","releaseDate":31536000000,"language":"en","type":"Movie","_key":"11288"} +{"label":"Mississippi Mermaid","description":"Adapted from a story by William Irish, it's a noirish tale of a man who orders a mail-order bride but receives instead a con woman. ","id":"1651","runtime":124,"imdbId":"tt0064990","trailer":"http:\/\/www.youtube.com\/watch?v=TYH4gM8KfoM","version":534,"lastModified":"1301903691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b04\/4bc9121a017a3c57fe006b04\/la-sirene-du-mississipi-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"Mississippi Mermaid","releaseDate":-17020800000,"language":"en","type":"Movie","_key":"11289"} +{"label":"Marcel Berbert","version":51,"id":"3524","lastModified":"1301901319000","name":"Marcel Berbert","type":"Person","_key":"11290"} +{"label":"Yves Drouhet","version":18,"id":"18362","lastModified":"1301901830000","name":"Yves Drouhet","type":"Person","_key":"11291"} +{"label":"Roland Th\u00e9not","version":18,"id":"18363","lastModified":"1301901830000","name":"Roland Th\u00e9not","type":"Person","_key":"11292"} +{"label":"00 Schneider - Jagd auf Nihil Baxter","description":"No overview found.","id":"1652","runtime":92,"imdbId":"tt0109000","version":80,"lastModified":"1301906650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b11\/4bc9121b017a3c57fe006b11\/00-schneider-jagd-auf-nihil-baxter-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"00 Schneider - Jagd auf Nihil Baxter","releaseDate":788054400000,"language":"en","type":"Movie","_key":"11293"} +{"label":"Helge Schneider","version":51,"id":"18400","lastModified":"1301901263000","name":"Helge Schneider","type":"Person","_key":"11294"} +{"label":"Helmut K\u00f6rschgen","version":20,"id":"18414","lastModified":"1301901630000","name":"Helmut K\u00f6rschgen","type":"Person","_key":"11295"} +{"label":"Andreas Kunze","version":20,"id":"18420","lastModified":"1301901856000","name":"Andreas Kunze","type":"Person","_key":"11296"} +{"label":"Otto Van den Berg","version":17,"id":"18422","lastModified":"1301901669000","name":"Otto Van den Berg","type":"Person","_key":"11297"} +{"label":"Guenther Kordas","version":17,"id":"18424","lastModified":"1301901983000","name":"Guenther Kordas","type":"Person","_key":"11298"} +{"label":"Hotte Reichlich","version":16,"id":"18425","lastModified":"1301901921000","name":"Hotte Reichlich","type":"Person","_key":"11299"} +{"label":"Charlie Weiss","version":16,"id":"18426","lastModified":"1301901921000","name":"Charlie Weiss","type":"Person","_key":"11300"} +{"label":"Tim Janssen","version":20,"id":"18427","lastModified":"1301901921000","name":"Tim Janssen","type":"Person","_key":"11301"} +{"label":"Werner Abrolat","version":25,"id":"18403","lastModified":"1301901601000","name":"Werner Abrolat","type":"Person","_key":"11302"} +{"label":"Bratislav Metulskie","version":19,"id":"18408","lastModified":"1301901671000","name":"Bratislav Metulskie","type":"Person","_key":"11303"} +{"label":"The Motorcycle Diaries","description":"\"The Motorcycle Diaries\" is based on the journals of Che Guevara, leader of the Cuban Revolution. In his memoirs, Guevara recounts adventures he, and best friend Alberto Granado, had while crossing South America by motorcycle in the early 1950s.","id":"1653","runtime":126,"imdbId":"tt0318462","homepage":"http:\/\/www.motorcyclediariesmovie.com\/sp\/home.html","version":640,"lastModified":"1302038827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1a\/4bc9121c017a3c57fe006b1a\/diarios-de-motocicleta-mid.jpg","studio":"FilmFour","genre":"Drama","title":"The Motorcycle Diaries","releaseDate":1074124800000,"language":"en","tagline":"Before he changed the world the world changed him.","type":"Movie","_key":"11304"} +{"label":"Rodrigo De la Serna","version":23,"id":"18478","lastModified":"1301901383000","name":"Rodrigo De la Serna","type":"Person","_key":"11305"} +{"label":"Mercedes Mor\u00e1n","version":24,"id":"18499","lastModified":"1301901410000","name":"Mercedes Mor\u00e1n","type":"Person","_key":"11306"} +{"label":"The Dirty Dozen","description":"Classic World War II action drama about a group of 12 American military prisoners, who are ordered to infiltrate a well-guarded enemy ch\u00e2teau and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.","id":"1654","runtime":145,"imdbId":"tt0061578","trailer":"http:\/\/www.youtube.com\/watch?v=0weydVs3t2Y","version":382,"lastModified":"1301902059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b28\/4bc9121f017a3c57fe006b28\/the-dirty-dozen-mid.jpg","studio":"MKH Productions","genre":"Action","title":"The Dirty Dozen","releaseDate":-80438400000,"language":"en","type":"Movie","_key":"11307"} +{"label":"Lee Marvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b6\/4bf2da62017a3c32170004b6\/lee-marvin-profile.jpg","version":81,"id":"18391","lastModified":"1301901124000","name":"Lee Marvin","type":"Person","_key":"11308"} +{"label":"Richard Jaeckel","version":57,"id":"58423","lastModified":"1301901411000","name":"Richard Jaeckel","type":"Person","_key":"11309"} +{"label":"Clint Walker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57a\/4c5acf117b9aa151f700057a\/clint-walker-profile.jpg","version":40,"id":"40207","lastModified":"1301901259000","name":"Clint Walker","type":"Person","_key":"11310"} +{"label":"Trini L\u00f3pez","version":20,"id":"108655","lastModified":"1301902826000","name":"Trini L\u00f3pez","type":"Person","_key":"11311"} +{"label":"Robert Aldrich","version":76,"id":"18392","lastModified":"1301901361000","name":"Robert Aldrich","type":"Person","_key":"11312"} +{"label":"Bert Batt","version":22,"id":"21785","lastModified":"1301901552000","name":"Bert Batt","type":"Person","_key":"11313"} +{"label":"Praxis Dr. Hasenbein","description":"No overview found.","id":"1655","runtime":97,"imdbId":"tt0119932","version":64,"lastModified":"1301903717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa7\/4c6572ac5e73d63460000aa7\/praxis-dr-hasenbein-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"Praxis Dr. Hasenbein","releaseDate":855187200000,"language":"en","type":"Movie","_key":"11314"} +{"label":"Andrea Rottmann","version":16,"id":"18399","lastModified":"1301901482000","name":"Andrea Rottmann","type":"Person","_key":"11315"} +{"label":"Bernhard Sondermann","version":17,"id":"18402","lastModified":"1301901281000","name":"Bernhard Sondermann","type":"Person","_key":"11316"} +{"label":"Norbert Losch","version":17,"id":"18404","lastModified":"1301901669000","name":"Norbert Losch","type":"Person","_key":"11317"} +{"label":"Peter Berling","version":25,"id":"18405","lastModified":"1299495463000","name":"Peter Berling","type":"Person","_key":"11318"} +{"label":"Carlos Boes","version":16,"id":"18406","lastModified":"1301901630000","name":"Carlos Boes","type":"Person","_key":"11319"} +{"label":"Carina Berns","version":16,"id":"18407","lastModified":"1301901756000","name":"Carina Berns","type":"Person","_key":"11320"} +{"label":"Horst Mendroch","version":17,"id":"18409","lastModified":"1301901669000","name":"Horst Mendroch","type":"Person","_key":"11321"} +{"label":"Bodo Oesterling","version":15,"id":"18410","lastModified":"1301901756000","name":"Bodo Oesterling","type":"Person","_key":"11322"} +{"label":"G\u00fcnter Kordes","version":16,"id":"18413","lastModified":"1301901756000","name":"G\u00fcnter Kordes","type":"Person","_key":"11323"} +{"label":"Peter Thoms","version":36,"id":"18983","lastModified":"1301901806000","name":"Peter Thoms","type":"Person","_key":"11324"} +{"label":"The Legend of Zorro","description":"In 1850, the people of California were voting to decide whether or not to join the United States. The Legend of Zorro is a 2005 sequel to 1998's The Mask of Zorro,","id":"1656","runtime":131,"imdbId":"tt0386140","homepage":"http:\/\/www.sonypictures.com\/homevideo\/thelegendofzorro\/index.html","version":363,"lastModified":"1301901483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b62\/4bc91229017a3c57fe006b62\/the-legend-of-zorro-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Legend of Zorro","releaseDate":1130284800000,"language":"en","type":"Movie","_key":"11325"} +{"label":"Adrian Alonso","version":20,"id":"18460","lastModified":"1301901488000","name":"Adrian Alonso","type":"Person","_key":"11326"} +{"label":"Nick Chinlund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09e\/4c3970c95e73d671d100009e\/nick-chinlund-profile.jpg","version":64,"id":"18461","lastModified":"1302060728000","name":"Nick Chinlund","type":"Person","_key":"11327"} +{"label":"Alexa Benedetti","version":20,"id":"18462","lastModified":"1301901769000","name":"Alexa Benedetti","type":"Person","_key":"11328"} +{"label":"Ra\u00fal M\u00e9ndez","version":23,"id":"18463","lastModified":"1301901836000","name":"Ra\u00fal M\u00e9ndez","type":"Person","_key":"11329"} +{"label":"Brandon Wood","version":20,"id":"18464","lastModified":"1301901769000","name":"Brandon Wood","type":"Person","_key":"11330"} +{"label":"Mary Crosby","version":23,"id":"18465","lastModified":"1301901439000","name":"Mary Crosby","type":"Person","_key":"11331"} +{"label":"Giovanna Zacar\u00edas","version":20,"id":"18466","lastModified":"1301901769000","name":"Giovanna Zacar\u00edas","type":"Person","_key":"11332"} +{"label":"Alberto Reyes","version":20,"id":"18467","lastModified":"1301901936000","name":"Alberto Reyes","type":"Person","_key":"11333"} +{"label":"Gustavo Sanchez-Parra","version":22,"id":"18468","lastModified":"1301901936000","name":"Gustavo Sanchez-Parra","type":"Person","_key":"11334"} +{"label":"Carlos Cobos","version":20,"id":"18469","lastModified":"1301901936000","name":"Carlos Cobos","type":"Person","_key":"11335"} +{"label":"Zorro","description":"No overview found.","id":"1657","version":343,"lastModified":"1301905546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b71\/4bc9122d017a3c57fe006b71\/zorro-mid.jpg","title":"Zorro","language":"en","type":"Movie","_key":"11336"} +{"label":"2 oder 3 Dinge, die ich von ihm wei\u00df","description":"No overview found.","id":"1658","runtime":85,"imdbId":"tt0466634","version":36,"lastModified":"1301902988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ec\/4d57df7f7b9aa15cf30034ec\/2-oder-3-dinge-die-ich-von-ihm-wei-mid.jpg","studio":"Svarkov\u00e1 Film GbR","genre":"Documentary","title":"2 oder 3 Dinge, die ich von ihm wei\u00df","releaseDate":1112832000000,"language":"en","type":"Movie","_key":"11337"} +{"label":"Malte Ludin","version":19,"id":"18428","lastModified":"1301901683000","name":"Malte Ludin","type":"Person","_key":"11338"} +{"label":"Texas - Doc Snyder h\u00e4lt die Welt in Atem","description":"No overview found.","id":"1659","runtime":89,"imdbId":"tt0108317","version":83,"lastModified":"1301906650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7a\/4bc9122e017a3c57fe006b7a\/texas-doc-snyder-halt-die-welt-in-atem-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"Texas - Doc Snyder h\u00e4lt die Welt in Atem","releaseDate":725846400000,"language":"en","type":"Movie","_key":"11339"} +{"label":"Ralf Huettner","version":35,"id":"35408","lastModified":"1301901446000","name":"Ralf Huettner","type":"Person","_key":"11340"} +{"label":"Buddy Casino","version":21,"id":"18439","lastModified":"1301901630000","name":"Buddy Casino","type":"Person","_key":"11341"} +{"label":"Christa Strobel","version":17,"id":"18443","lastModified":"1301901921000","name":"Christa Strobel","type":"Person","_key":"11342"} +{"label":"Mirjam Wiesemann","version":17,"id":"18446","lastModified":"1301901921000","name":"Mirjam Wiesemann","type":"Person","_key":"11343"} +{"label":"Ludwig Haas","version":19,"id":"18448","lastModified":"1301901921000","name":"Ludwig Haas","type":"Person","_key":"11344"} +{"label":"Rupert J. Seidel","version":20,"id":"18449","lastModified":"1301901630000","name":"Rupert J. Seidel","type":"Person","_key":"11345"} +{"label":"Schringo van den Berg","version":18,"id":"18451","lastModified":"1301901921000","name":"Schringo van den Berg","type":"Person","_key":"11346"} +{"label":"Sergej Gleitmann","version":18,"id":"18452","lastModified":"1301901921000","name":"Sergej Gleitmann","type":"Person","_key":"11347"} +{"label":"Wayne Bartlett","version":19,"id":"18453","lastModified":"1301901921000","name":"Wayne Bartlett","type":"Person","_key":"11348"} +{"label":"Helmut Kleinmann","version":20,"id":"18454","lastModified":"1301901921000","name":"Helmut Kleinmann","type":"Person","_key":"11349"} +{"label":"Charlie Weiss","version":17,"id":"18455","lastModified":"1301901921000","name":"Charlie Weiss","type":"Person","_key":"11350"} +{"label":"Small Change","description":"Various experiences of childhood are seen in several sequences that take place in the small town of Thiers, France. Vignettes include a boy's awakening interest in girls, couples double-dating at the movies, brothers giving their friend a haircut, a boy dealing with an abusive home life, a baby and a cat sitting by an open window, a child telling a dirty joke, and a boy who develops a crush on his friend's mother.","id":"1660","runtime":105,"imdbId":"tt0074152","version":158,"lastModified":"1301905292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/890\/4d472f2e7b9aa15bbf00b890\/l-argent-de-poche-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"Small Change","releaseDate":195868800000,"language":"en","type":"Movie","_key":"11351"} +{"label":"Virginie Th\u00e9venet","version":21,"id":"18484","lastModified":"1301901482000","name":"Virginie Th\u00e9venet","type":"Person","_key":"11352"} +{"label":"Chantal Mercier","version":17,"id":"18485","lastModified":"1301903109000","name":"Chantal Mercier","type":"Person","_key":"11353"} +{"label":"Eva Truffaut","version":19,"id":"18486","lastModified":"1301901838000","name":"Eva Truffaut","type":"Person","_key":"11354"} +{"label":"Corinne Boucart","version":21,"id":"18487","lastModified":"1301901756000","name":"Corinne Boucart","type":"Person","_key":"11355"} +{"label":"Jeanne Lobre","version":21,"id":"18488","lastModified":"1301902017000","name":"Jeanne Lobre","type":"Person","_key":"11356"} +{"label":"Laura Truffaut","version":20,"id":"18489","lastModified":"1301901967000","name":"Laura Truffaut","type":"Person","_key":"11357"} +{"label":"Absolute Giganten","description":"No overview found.","id":"1661","runtime":80,"imdbId":"tt0177507","trailer":"http:\/\/www.youtube.com\/watch?v=CTY0WHdjA5c","version":81,"lastModified":"1301904140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/611\/4bf40941017a3c320a000611\/absolute-giganten-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Absolute Giganten","releaseDate":938649600000,"language":"en","type":"Movie","_key":"11358"} +{"label":"Frank Giering","version":27,"id":"18490","lastModified":"1301901319000","name":"Frank Giering","type":"Person","_key":"11359"} +{"label":"Albert Kitzl","version":19,"id":"18491","lastModified":"1301902021000","name":"Albert Kitzl","type":"Person","_key":"11360"} +{"label":"State of Grace","description":"Terry Noonan returns home to New York's Hells Kitchen after a ten year absence. He soon hooks up with childhood pal Jackie who is involved in the Irish mob run by his brother Frankie. Terry also rekindles an old flame with Jackie's sister Kathleen. Soon, however, Terry is torn between his loyalty to his friends and his loyalties to others. ","id":"1662","runtime":134,"imdbId":"tt0100685","version":592,"lastModified":"1301901696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4c8f28957b9aa1768600005f\/state-of-grace-mid.jpg","studio":"Cinehaus","genre":"Crime","title":"State of Grace","releaseDate":653270400000,"language":"en","type":"Movie","_key":"11361"} +{"label":"Phil Joanou","version":26,"id":"18500","lastModified":"1301901501000","name":"Phil Joanou","type":"Person","_key":"11362"} +{"label":"Der Zinker","description":"No overview found.","id":"1663","runtime":89,"imdbId":"tt0057718","trailer":"http:\/\/www.youtube.com\/watch?v=cMQA7PBUCNc","version":89,"lastModified":"1301905636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b84\/4d866acc7b9aa12ed0003b84\/der-zinker-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Der Zinker","releaseDate":-210988800000,"language":"en","type":"Movie","_key":"11363"} +{"label":"Alfred Vohrer","version":35,"id":"18502","lastModified":"1301903108000","name":"Alfred Vohrer","type":"Person","_key":"11364"} +{"label":"Heinz Drache","version":24,"id":"18505","lastModified":"1301901586000","name":"Heinz Drache","type":"Person","_key":"11365"} +{"label":"Barbara R\u00fctting","version":26,"id":"18506","lastModified":"1301901663000","name":"Barbara R\u00fctting","type":"Person","_key":"11366"} +{"label":"Eddi Arent","version":37,"id":"18509","lastModified":"1301901571000","name":"Eddi Arent","type":"Person","_key":"11367"} +{"label":"Jan Hendriks","version":19,"id":"18537","lastModified":"1301903108000","name":"Jan Hendriks","type":"Person","_key":"11368"} +{"label":"Wolfgang Wahl","version":18,"id":"18538","lastModified":"1301903109000","name":"Wolfgang Wahl","type":"Person","_key":"11369"} +{"label":"Inge Langen","version":18,"id":"18539","lastModified":"1301901827000","name":"Inge Langen","type":"Person","_key":"11370"} +{"label":"Edgar Wallace","description":"No overview found.","id":"1664","title":"Edgar Wallace","language":"en","lastModified":"1301906185000","version":41,"type":"Movie","_key":"11371"} +{"label":"Last Days","description":"A Seattle-set rock & roll drama about a musician whose life and career is reminiscent of Kurt Cobain's.","id":"1665","runtime":96,"imdbId":"tt0403217","version":252,"lastModified":"1301903537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b90\/4bc9122f017a3c57fe006b90\/last-days-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Last Days","releaseDate":1115942400000,"language":"en","type":"Movie","_key":"11372"} +{"label":"Asia Argento","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d2\/4bcc2da2017a3c0f2c0000d2\/asia-argento-profile.jpg","biography":"<p>Asia Argento was born into a family of actors and movie-makers, and \nshe is one of the most sought-after actresses of the moment. She made \nher <a href=\"http:\/\/www.imdb.com\/search\/name?bio=debut\">debut<\/a> when she was only nine years old in <a href=\"http:\/\/www.imdb.com\/name\/nm0162952\/\">Sergio Citti<\/a>'s <a href=\"http:\/\/www.imdb.com\/title\/tt0090040\/\">\"Sogni e bisogni\"<\/a> (1985). In 1988, she had the leading role in <a href=\"http:\/\/www.imdb.com\/name\/nm0173724\/\">Cristina Comencini<\/a>'s first","version":82,"birthday":"180399600000","id":"18514","birthplace":"Rome, Lazio, Italy","lastModified":"1301901149000","name":"Asia Argento","type":"Person","_key":"11373"} +{"label":"Scott Patrick Green","version":18,"id":"18515","lastModified":"1301901478000","name":"Scott Patrick Green","type":"Person","_key":"11374"} +{"label":"Nicole Vicius","version":22,"id":"18516","lastModified":"1301901492000","name":"Nicole Vicius","type":"Person","_key":"11375"} +{"label":"Kim Gordon","version":18,"id":"18517","lastModified":"1302064495000","name":"Kim Gordon","type":"Person","_key":"11376"} +{"label":"Ryan Orion","version":16,"id":"18518","lastModified":"1301901749000","name":"Ryan Orion","type":"Person","_key":"11377"} +{"label":"The Bridge","description":"The Bridge is the controversial documentary that shows people jumping to their death from the Golden Gate Bridge in San Francisco. Director Eric Steel staked out for a year under the infamous bridge filming 23 suicides. The footage was then compiled along with interviews from family, friends, witnesses, and survivors to create this disturbing yet very intriguing documentary.","id":"1666","runtime":93,"imdbId":"tt0799954","trailer":"http:\/\/www.youtube.com\/watch?v=75","version":271,"lastModified":"1301903087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b99\/4bc91230017a3c57fe006b99\/the-bridge-mid.jpg","studio":"IFC Films","genre":"Documentary","title":"The Bridge","releaseDate":1161907200000,"language":"en","type":"Movie","_key":"11378"} +{"label":"Eric Steel","version":17,"id":"18524","lastModified":"1301903109000","name":"Eric Steel","type":"Person","_key":"11379"} +{"label":"March of the Penguins","description":"Every year, thousands of Antartica's emperor penguins make an astonishing journey to breed their young. They walk, marching day and night in single file 70 miles into the darkest, driest and coldest continent on Earth. Morgan Freeman narrates this amazing tale, Breathtaking photography captures the transcendaent beauty and staggering drama, so follow the leader.. to adventure!","id":"1667","runtime":85,"imdbId":"tt0428803","trailer":"http:\/\/www.youtube.com\/watch?v=1865","homepage":"http:\/\/empereur.luc-jacquet.com\/index_flash.htm","version":613,"lastModified":"1301902221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4c905e6e5e73d6204f00001f\/la-marche-de-l-empereur-mid.jpg","studio":"Bonne Pioche","genre":"Documentary","title":"March of the Penguins","releaseDate":1106697600000,"language":"en","type":"Movie","_key":"11380"} +{"label":"Luc Jacquet","version":26,"id":"18525","lastModified":"1301901343000","name":"Luc Jacquet","type":"Person","_key":"11381"} +{"label":"J\u00e9r\u00f4me Maison","version":19,"id":"18532","lastModified":"1301901636000","name":"J\u00e9r\u00f4me Maison","type":"Person","_key":"11382"} +{"label":"Thriller","description":"Thriller is the music video by Michael Jackson and director John Landis. This short horror film from 1983 is hailed as one of the greatest music videos of all times in which Michael Jackson transforms into a dancing zombie who chases after his horrified girlfriend played by Ola Ray.","id":"1668","runtime":14,"imdbId":"tt0088263","version":101,"lastModified":"1301904047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbd\/4bc91235017a3c57fe006bbd\/thriller-mid.jpg","genre":"Horror","title":"Thriller","releaseDate":410227200000,"language":"en","type":"Movie","_key":"11383"} +{"label":"Michael Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33b\/4d79c0d05e73d6283a00033b\/michael-jackson-profile.jpg","version":56,"birthday":"-357958800000","id":"82702","birthplace":"Gary, Indiana, USA","lastModified":"1301904135000","name":"Michael Jackson","type":"Person","_key":"11384"} +{"label":"The Hunt for Red October","description":"When a Soviet nuclear sub headed toward American waters drops off U.S. scanners, the Yanks scramble to take defensive steps. But CIA analyst Jack Ryan convinces the brass that the sub's commander has something other than a first strike in mind. A perilous cat-and-mouse game ensues.","id":"1669","runtime":129,"imdbId":"tt0099810","trailer":"http:\/\/www.youtube.com\/watch?v=3C2tE7vjdHk","version":585,"lastModified":"1301901611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fb\/4d4dfeeb7b9aa13b480095fb\/the-hunt-for-red-october-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Hunt for Red October","releaseDate":636336000000,"language":"en","tagline":"Invisible. Silent. Stolen.","type":"Movie","_key":"11385"} +{"label":"Courtney B. Vance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d5\/4d8d47c47b9aa1674f0003d5\/courtney-b-vance-profile.jpg","version":55,"birthday":"-309488400000","id":"24047","birthplace":"Detroit, Michigan USA","lastModified":"1301901572000","name":"Courtney B. Vance","type":"Person","_key":"11386"} +{"label":"Der Hund von Blackwood Castle","description":"No overview found.","id":"1670","runtime":92,"imdbId":"tt0061795","version":69,"lastModified":"1301906650000","studio":"Rialto Film","genre":"Crime","title":"Der Hund von Blackwood Castle","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"11387"} +{"label":"Mady Rahl","version":21,"id":"18540","lastModified":"1301901921000","name":"Mady Rahl","type":"Person","_key":"11388"} +{"label":"Otto Stern","version":21,"id":"18542","lastModified":"1301903109000","name":"Otto Stern","type":"Person","_key":"11389"} +{"label":"Horst Tappert","version":23,"id":"18543","lastModified":"1301903108000","name":"Horst Tappert","type":"Person","_key":"11390"} +{"label":"Tilo von Berlepsch","version":18,"id":"18544","lastModified":"1301901629000","name":"Tilo von Berlepsch","type":"Person","_key":"11391"} +{"label":"Karin Baal","version":28,"id":"18545","lastModified":"1301901452000","name":"Karin Baal","type":"Person","_key":"11392"} +{"label":"Hans S\u00f6hnker","version":22,"id":"18546","lastModified":"1301901756000","name":"Hans S\u00f6hnker","type":"Person","_key":"11393"} +{"label":"Uta Levka","version":21,"id":"18547","lastModified":"1301901966000","name":"Uta Levka","type":"Person","_key":"11394"} +{"label":"Alexander Engel","version":19,"id":"18548","lastModified":"1301901983000","name":"Alexander Engel","type":"Person","_key":"11395"} +{"label":"Harry W\u00fcstenhagen","version":23,"id":"36508","lastModified":"1301901999000","name":"Harry W\u00fcstenhagen","type":"Person","_key":"11396"} +{"label":"Rainer Brandt","version":34,"birthday":"-1071450000000","id":"32587","birthplace":"Berlin, Germany","lastModified":"1301901574000","name":"Rainer Brandt","type":"Person","_key":"11397"} +{"label":"The Professional","description":"French secret agent Joss Baumont is sent to kill the president Njala of an African country. However, a counter-order is given before he can execute his mission and he is abandoned in the hands of foreign authorities. He escapes and seeks revenge by pursuing what was his original mission.","id":"1672","runtime":109,"imdbId":"tt0082949","version":113,"lastModified":"1301901823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/581\/4be16c6e017a3c35b9000581\/le-professionnel-mid.jpg","studio":"Les Films Ariane S.A.","genre":"Action","title":"The Professional","releaseDate":372470400000,"language":"en","type":"Movie","_key":"11398"} +{"label":"Elisabeth Margoni","version":23,"id":"18557","lastModified":"1301901597000","name":"Elisabeth Margoni","type":"Person","_key":"11399"} +{"label":"Jean-Louis Richard","version":47,"id":"18558","lastModified":"1301901578000","name":"Jean-Louis Richard","type":"Person","_key":"11400"} +{"label":"Jean Desailly","version":27,"id":"18559","lastModified":"1301903109000","name":"Jean Desailly","type":"Person","_key":"11401"} +{"label":"Michel Beaune","version":23,"id":"18560","lastModified":"1301901446000","name":"Michel Beaune","type":"Person","_key":"11402"} +{"label":"Cyrielle Clair","version":22,"id":"18561","lastModified":"1301901964000","name":"Cyrielle Clair","type":"Person","_key":"11403"} +{"label":"Sidiki Bakaba","version":18,"id":"18562","lastModified":"1301901551000","name":"Sidiki Bakaba","type":"Person","_key":"11404"} +{"label":"Pierre Vernier","version":31,"id":"18566","lastModified":"1301901665000","name":"Pierre Vernier","type":"Person","_key":"11405"} +{"label":"Georges Lautner","version":36,"id":"18563","lastModified":"1301901450000","name":"Georges Lautner","type":"Person","_key":"11406"} +{"label":"Comanche Station","description":"No overview found.","id":"1673","runtime":73,"imdbId":"tt0053729","version":85,"lastModified":"1301903259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/057\/4c40b56f7b9aa14590000057\/comanche-station-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Comanche Station","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"11407"} +{"label":"Budd Boetticher","version":34,"id":"18574","lastModified":"1301903108000","name":"Budd Boetticher","type":"Person","_key":"11408"} +{"label":"Randolph Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/097\/4c1bc53c7b9aa117b2000097\/randolph-scott-profile.jpg","version":60,"id":"1009","lastModified":"1301901208000","name":"Randolph Scott","type":"Person","_key":"11409"} +{"label":"Nancy Gates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/082\/4c40b6577b9aa14592000082\/nancy-gates-profile.jpg","version":21,"id":"18582","lastModified":"1301903110000","name":"Nancy Gates","type":"Person","_key":"11410"} +{"label":"Skip Homeier","version":25,"id":"16017","lastModified":"1301901780000","name":"Skip Homeier","type":"Person","_key":"11411"} +{"label":"Dyke Johnson","version":20,"id":"18583","lastModified":"1301901859000","name":"Dyke Johnson","type":"Person","_key":"11412"} +{"label":"Foster Hood","version":17,"id":"18584","lastModified":"1301902017000","name":"Foster Hood","type":"Person","_key":"11413"} +{"label":"Joe Molina","version":20,"id":"18585","lastModified":"1301901921000","name":"Joe Molina","type":"Person","_key":"11414"} +{"label":"Richard Rust","version":24,"id":"102267","lastModified":"1301902641000","name":"Richard Rust","type":"Person","_key":"11415"} +{"label":"Day for Night","description":"A committed film director struggles to complete his movie while coping with a myriad of crises, personal and professional, among the cast and crew.","id":"1675","runtime":115,"imdbId":"tt0070460","version":520,"lastModified":"1301907330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdc\/4bc91238017a3c57fe006bdc\/la-nuit-americaine-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"Day for Night","releaseDate":107049600000,"language":"en","type":"Movie","_key":"11416"} +{"label":"Jean-Pierre Aumont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4caca7917b9aa1152a000215\/jean-pierre-aumont-profile.jpg","version":30,"id":"18766","lastModified":"1301901515000","name":"Jean-Pierre Aumont","type":"Person","_key":"11417"} +{"label":"Valentina Cortese","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/474\/4bfaa73b017a3c702a000474\/valentina-cortese-profile.jpg","version":43,"id":"24499","lastModified":"1301901452000","name":"Valentina Cortese","type":"Person","_key":"11418"} +{"label":"Jean Champion","version":30,"id":"18767","lastModified":"1301901641000","name":"Jean Champion","type":"Person","_key":"11419"} +{"label":"Nike Arrighi","version":19,"id":"18768","lastModified":"1301901624000","name":"Nike Arrighi","type":"Person","_key":"11420"} +{"label":"David Markham","version":21,"id":"18769","lastModified":"1301901913000","name":"David Markham","type":"Person","_key":"11421"} +{"label":"Bernard Menez","version":22,"id":"18770","lastModified":"1301903109000","name":"Bernard Menez","type":"Person","_key":"11422"} +{"label":"Walter Bal","version":18,"id":"18771","lastModified":"1301901624000","name":"Walter Bal","type":"Person","_key":"11423"} +{"label":"Gaston Joly","version":18,"id":"18772","lastModified":"1301901913000","name":"Gaston Joly","type":"Person","_key":"11424"} +{"label":"Z\u00e9na\u00efde Rossi","version":21,"id":"18773","lastModified":"1301901624000","name":"Z\u00e9na\u00efde Rossi","type":"Person","_key":"11425"} +{"label":"Pierre Zucca","version":18,"id":"18774","lastModified":"1301901624000","name":"Pierre Zucca","type":"Person","_key":"11426"} +{"label":"Marc Boyle","version":18,"id":"18775","lastModified":"1301901913000","name":"Marc Boyle","type":"Person","_key":"11427"} +{"label":"Xavier Saint-Macary","version":29,"id":"25148","lastModified":"1301901570000","name":"Xavier Saint-Macary","type":"Person","_key":"11428"} +{"label":"Will Penny","description":"No overview found.","id":"1676","runtime":110,"imdbId":"tt0063811","version":179,"lastModified":"1301904342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be1\/4bc91239017a3c57fe006be1\/will-penny-mid.jpg","studio":"Paramount Pictures","genre":"Western","title":"Will Penny","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"11429"} +{"label":"Joan Hackett","version":21,"id":"18588","lastModified":"1301901813000","name":"Joan Hackett","type":"Person","_key":"11430"} +{"label":"Lee Majors","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef8\/4d5d14eb5e73d60c6d000ef8\/lee-majors-profile.jpg","biography":"<p>N\u00e9 <b>Harvey Lee Yeary<\/b> \u00e0 <a href=\"http:\/\/fr.wikipedia.org\/wiki\/Wyandotte\" title=\"Wyandotte\">Wyandotte<\/a> dans la banlieue de <a href=\"http:\/\/fr.wikipedia.org\/wiki\/D%C3%A9troit_%28Michigan%29\" title=\"D\u00e9troit (Michigan)\">D\u00e9troit<\/a>, <a href=\"http:\/\/fr.wikipedia.org\/wiki\/Michigan\" title=\"Michigan\">Michigan<\/a>.\n Il est le fils de Carl Yeary, mort dans un accident du travail avant sa\n naissance, et de Alice Yeary, renvers\u00e9e par une automobile en <a href=\"http:\/\/fr.wikipedia.org\/wiki\/1941\" t","version":38,"birthday":"-968634000000","id":"18589","birthplace":"Wyandotte, Michigan","lastModified":"1301901362000","name":"Lee Majors","type":"Person","_key":"11431"} +{"label":"Tom Gries","version":28,"id":"18592","lastModified":"1301901785000","name":"Tom Gries","type":"Person","_key":"11432"} +{"label":"Ray","description":"Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.","id":"1677","runtime":152,"imdbId":"tt0350258","trailer":"http:\/\/www.youtube.com\/watch?v=12","homepage":"http:\/\/movies.uip.de\/ray\/","version":175,"lastModified":"1301907547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ad\/4c5a58675e73d63a6d0004ad\/ray-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Ray","releaseDate":1094947200000,"language":"en","tagline":"The extraordinary life story of Ray Charles. A man who fought harder and went farther than anyone thought possible.","type":"Movie","_key":"11433"} +{"label":"Taylor Hackford","version":65,"id":"18596","lastModified":"1302036099000","name":"Taylor Hackford","type":"Person","_key":"11434"} +{"label":"Godzilla","description":"Japan is thrown into a panic after several ships explode and are sunk near Odo Island. An expedition to the island led by paleontologist Professor Kyohei Yemani soon discover something more devastating than imagined in the form of a 164 foot tall monster whom the natives call Gojira. Now the monster begins a rampage that threatens to destroy not only Japan, but the rest of the world as well.","id":"1678","runtime":98,"imdbId":"tt0047034","version":95,"lastModified":"1302024630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/425\/4c58aad57b9aa151f2000425\/gojira-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Disaster","title":"Godzilla","releaseDate":-478483200000,"language":"en","type":"Movie","_key":"11435"} +{"label":"Ishir\u00f4 Honda","version":39,"id":"18598","lastModified":"1301901367000","name":"Ishir\u00f4 Honda","type":"Person","_key":"11436"} +{"label":"Momoko K\u00f4chi","version":21,"id":"33768","lastModified":"1301901839000","name":"Momoko K\u00f4chi","type":"Person","_key":"11437"} +{"label":"Akira Takarada","version":24,"id":"18615","lastModified":"1301901574000","name":"Akira Takarada","type":"Person","_key":"11438"} +{"label":"Akihiko Hirata","version":29,"id":"30568","lastModified":"1301901668000","name":"Akihiko Hirata","type":"Person","_key":"11439"} +{"label":"Godzilla Raids Again","description":"Two pilots are shocked when they see two giant monsters waging war before falling into the ocean. The two pilots race back to Japan to inform the government what they saw. Soon the world comes to the realization, that a monster closely related to the original Godzilla is on the loose as well as a new monster named Angilas. Soon, the two monsters arrive in Osaka where they resume their battle. ","id":"1679","runtime":82,"imdbId":"tt0048127","version":64,"lastModified":"1301906640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c09\/4bc9123e017a3c57fe006c09\/gojira-no-gyakushu-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Godzilla Raids Again","releaseDate":-463622400000,"language":"en","type":"Movie","_key":"11440"} +{"label":"Motoyoshi Oda","version":17,"id":"18603","lastModified":"1301901956000","name":"Motoyoshi Oda","type":"Person","_key":"11441"} +{"label":"Hiroshi Koizumi","version":23,"id":"18607","lastModified":"1301901956000","name":"Hiroshi Koizumi","type":"Person","_key":"11442"} +{"label":"Setsuko Wakayama","version":17,"id":"18608","lastModified":"1301901956000","name":"Setsuko Wakayama","type":"Person","_key":"11443"} +{"label":"King Kong vs. Godzilla","description":"An exploration team discovers a lost tribe of savages and their god, a giant ape on a tropical island. They bring the monster to Japan just in time to fight Godzilla, who has appeared out of an iceberg.","id":"1680","runtime":98,"imdbId":"tt0056142","version":550,"lastModified":"1301902791000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4c1a47e67b9aa11581000052\/kingu-kongu-tai-gojira-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"King Kong vs. Godzilla","releaseDate":-233280000000,"language":"en","type":"Movie","_key":"11444"} +{"label":"Tadao Takashima","version":24,"id":"18612","lastModified":"1301903109000","name":"Tadao Takashima","type":"Person","_key":"11445"} +{"label":"Kenji Sahara","version":28,"id":"18613","lastModified":"1301901333000","name":"Kenji Sahara","type":"Person","_key":"11446"} +{"label":"Godzilla Films","description":"There are a total of 28 Japanese monster horror films starring the giant lizard like creature Godzilla. Godzilla was originally inspired by America's King Kong. Since the first film in 1954 Godzilla has seen many variations and has encountered many different monsters most of which were also just a human in a rubber suit.","id":"1681","version":472,"lastModified":"1301904728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c25\/4bc91241017a3c57fe006c25\/godzilla-films-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","title":"Godzilla Films","language":"en","type":"Movie","_key":"11447"} +{"label":"Godzilla vs. Mothra","description":"A greedy developer has placed huge machines to suck dry a part of the ocean near Tokyo so he can put luxury condos there. After a storm, a giant egg washes up on the beach nearby and is immediately put on public display. The developer's plans go awry when he disrupts Godzilla's rest and the monster goes stomping through Tokyo again. It's up to Mothra and its two offspring to save Tokyo.","id":"1682","runtime":89,"imdbId":"tt0058379","version":367,"lastModified":"1301905574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2e\/4bc91242017a3c57fe006c2e\/mosura-tai-gojira-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Horror","title":"Godzilla vs. Mothra","releaseDate":-179107200000,"language":"en","type":"Movie","_key":"11448"} +{"label":"The Reaping","description":"Thousands of years ago there was a series of bizarre occurrences that many believed to have been the Ten Biblical Plagues. No one thought they could happen again. Until now.","id":"1683","runtime":90,"imdbId":"tt0444682","trailer":"http:\/\/www.youtube.com\/watch?v=6","homepage":"http:\/\/www.thereapingmovie.com","version":744,"lastModified":"1301901694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a8\/4c63b1e97b9aa1775a0004a8\/the-reaping-mid.jpg","studio":"Warner Bros. Pictures","genre":"Horror","title":"The Reaping","releaseDate":1176940800000,"language":"en","tagline":"Heaven or Hell. Good or Evil. Now or Never.","type":"Movie","_key":"11449"} +{"label":"David Morrissey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b7\/4cf1c2605e73d61e3e0002b7\/david-morrissey-profile.jpg","version":74,"id":"18616","lastModified":"1301901123000","name":"David Morrissey","type":"Person","_key":"11450"} +{"label":"Prinzessinnenbad","description":"No overview found.","id":"1684","runtime":92,"imdbId":"tt0949502","trailer":"http:\/\/www.youtube.com\/watch?v=kfuBaED488w","homepage":"http:\/\/www.prinzessinnenbad.de\/","version":69,"lastModified":"1301905011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e24\/4d56be5e7b9aa16bc6000e24\/prinzessinnenbad-mid.jpg","studio":"Reverse Angle International","genre":"Documentary","title":"Prinzessinnenbad","releaseDate":1171152000000,"language":"en","type":"Movie","_key":"11451"} +{"label":"Bettina Bl\u00fcmner","version":18,"id":"18618","lastModified":"1301901686000","name":"Bettina Bl\u00fcmner","type":"Person","_key":"11452"} +{"label":"Klara Reinacher","version":18,"id":"18622","lastModified":"1301901828000","name":"Klara Reinacher","type":"Person","_key":"11453"} +{"label":"Mina Bowling","version":18,"id":"18623","lastModified":"1301902027000","name":"Mina Bowling","type":"Person","_key":"11454"} +{"label":"Tanutscha Glowasz","version":18,"id":"18624","lastModified":"1301901663000","name":"Tanutscha Glowasz","type":"Person","_key":"11455"} +{"label":"George-Daniel Thelitz","version":18,"id":"18625","lastModified":"1301901797000","name":"George-Daniel Thelitz","type":"Person","_key":"11456"} +{"label":"Beneath The Planet of The Apes","description":"Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes.","id":"1685","runtime":95,"imdbId":"tt0065462","trailer":"http:\/\/www.youtube.com\/watch?v=ZOzpI30UTCg","version":644,"lastModified":"1301902130000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c60\/4bc91249017a3c57fe006c60\/beneath-the-planets-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Fantasy","title":"Beneath The Planet of The Apes","releaseDate":12528000000,"language":"en","type":"Movie","_key":"11457"} +{"label":"Ted Post","version":41,"id":"18635","lastModified":"1301901455000","name":"Ted Post","type":"Person","_key":"11458"} +{"label":"James Franciscus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/161\/4c333e455e73d64966000161\/james-franciscus-profile.jpg","version":36,"id":"18643","lastModified":"1301901577000","name":"James Franciscus","type":"Person","_key":"11459"} +{"label":"David Watson","version":26,"id":"18644","lastModified":"1301902002000","name":"David Watson","type":"Person","_key":"11460"} +{"label":"Paul Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/776\/4cb850fa7b9aa138d8000776\/paul-richards-profile.jpg","version":35,"id":"18645","lastModified":"1301901424000","name":"Paul Richards","type":"Person","_key":"11461"} +{"label":"Thomas Gomez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a2\/4bf3e83d017a3c320a0005a2\/thomas-gomez-profile.jpg","version":43,"id":"18646","lastModified":"1301901460000","name":"Thomas Gomez","type":"Person","_key":"11462"} +{"label":"Chelsea Girls","description":"Chelsea Girls is a film from 1966 by pop artist Andy Warhol and with music from The Velvet Underground.","id":"1686","runtime":195,"imdbId":"tt0061465","version":161,"lastModified":"1301907304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c65\/4bc91249017a3c57fe006c65\/the-chelsea-girls-mid.jpg","title":"Chelsea Girls","releaseDate":-104025600000,"language":"en","type":"Movie","_key":"11463"} +{"label":"Andy Warhol","version":27,"id":"18626","lastModified":"1301901317000","name":"Andy Warhol","type":"Person","_key":"11464"} +{"label":"Paul Morrissey","version":33,"id":"18627","lastModified":"1301901658000","name":"Paul Morrissey","type":"Person","_key":"11465"} +{"label":"Nico","version":20,"id":"18631","lastModified":"1301901768000","name":"Nico","type":"Person","_key":"11466"} +{"label":"Brigid Berlin","version":15,"id":"18632","lastModified":"1301903109000","name":"Brigid Berlin","type":"Person","_key":"11467"} +{"label":"Mary Woronov","version":67,"id":"100552","lastModified":"1302049133000","name":"Mary Woronov","type":"Person","_key":"11468"} +{"label":"Edie Sedgwick","version":16,"id":"105056","lastModified":"1301902305000","name":"Edie Sedgwick","type":"Person","_key":"11469"} +{"label":"Ondine","version":21,"id":"105042","lastModified":"1301902479000","name":"Ondine","type":"Person","_key":"11470"} +{"label":"Mario Montez","version":16,"id":"105057","lastModified":"1301902920000","name":"Mario Montez","type":"Person","_key":"11471"} +{"label":"Ingrid Superstar","version":16,"id":"105058","lastModified":"1301902478000","name":"Ingrid Superstar","type":"Person","_key":"11472"} +{"label":"International Velvet","version":16,"id":"105059","lastModified":"1301902920000","name":"International Velvet","type":"Person","_key":"11473"} +{"label":"Escape from the Planet of the Apes","description":"The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.","id":"1687","runtime":97,"imdbId":"tt0067065","trailer":"http:\/\/www.youtube.com\/watch?v=iUWM4MKtKoU","version":646,"lastModified":"1301901622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c72\/4bc9124b017a3c57fe006c72\/escape-from-the-planet-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Fantasy","title":"Escape from the Planet of the Apes","releaseDate":50803200000,"language":"en","type":"Movie","_key":"11474"} +{"label":"Bradford Dillman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a1\/4bf17e30017a3c320b0002a1\/bradford-dillman-profile.jpg","version":36,"id":"18647","lastModified":"1301901328000","name":"Bradford Dillman","type":"Person","_key":"11475"} +{"label":"Natalie Trundy","version":27,"id":"18648","lastModified":"1301903109000","name":"Natalie Trundy","type":"Person","_key":"11476"} +{"label":"Jason Evers","version":29,"id":"16089","lastModified":"1301901514000","name":"Jason Evers","type":"Person","_key":"11477"} +{"label":"John Randolph","version":41,"id":"18649","lastModified":"1301901321000","name":"John Randolph","type":"Person","_key":"11478"} +{"label":"Conquest of the Planet of the Apes","description":"In a futuristic world that has embraced ape slavery, Caesar, the son of the late simians Cornelius and Zira, surfaces after almost twenty years of hiding out from the authorities, and prepares for a slave revolt against humanity.","id":"1688","runtime":83,"imdbId":"tt0068408","trailer":"http:\/\/www.youtube.com\/watch?v=dwhCBrLasJM","version":612,"lastModified":"1301906244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8e\/4bc91251017a3c57fe006c8e\/conquest-of-the-planet-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Fantasy","title":"Conquest of the Planet of the Apes","releaseDate":78710400000,"language":"en","type":"Movie","_key":"11479"} +{"label":"J. Lee Thompson","version":61,"id":"18669","lastModified":"1301901261000","name":"J. Lee Thompson","type":"Person","_key":"11480"} +{"label":"Don Murray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/038\/4bf55516017a3c7726000038\/don-murray-profile.jpg","version":36,"id":"18666","lastModified":"1301901594000","name":"Don Murray","type":"Person","_key":"11481"} +{"label":"Joyce Haber","version":20,"id":"18668","lastModified":"1301901669000","name":"Joyce Haber","type":"Person","_key":"11482"} +{"label":"Little Buddha","description":"Little Buddha is a movie about the life of Siddhartha starring Keanu Reeves and Bridget Fonda and directed by Bernardo Bertolucci.","id":"1689","runtime":140,"imdbId":"tt0107426","version":237,"lastModified":"1301905206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea2\/4c0f93fe017a3c29a6000ea2\/little-buddha-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Little Buddha","releaseDate":761443200000,"language":"en","type":"Movie","_key":"11483"} +{"label":"Hostel","description":"Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.","id":"1690","runtime":93,"imdbId":"tt0450278","homepage":"http:\/\/www.hostelfilm.com\/","version":251,"lastModified":"1301902177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b0\/4becfcc8017a3c37ad0002b0\/hostel-mid.jpg","studio":"Screen Gems, Inc.","genre":"Horror","title":"Hostel","releaseDate":1126915200000,"language":"en","type":"Movie","_key":"11484"} +{"label":"Eli Roth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b0\/4bdeaa5c017a3c35bd0001b0\/eli-roth-profile.jpg","biography":"Eli Raphael Roth is an American film director, producer, writer and actor. He is part of the group of filmmakers dubbed the Splat Pack, because of their association and their focus on the horror genre.\nRoth is known for making violent, low-budget horror films that are box office hits worldwide, and for bringing back the R-rating to horror at a time when studios believed only PG-13 horror would work. Roth is also an award-winning actor, most known for his role as Donny Donowitz in Quentin Taranti","version":129,"birthday":"72399600000","id":"16847","birthplace":"Newton, Massachusetts, USA","lastModified":"1301901127000","name":"Eli Roth","type":"Person","_key":"11485"} +{"label":"Jay Hernandez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4c9c7bfa7b9aa1430c00009f\/jay-hernandez-profile.jpg","version":74,"birthday":"256777200000","id":"19487","lastModified":"1301901110000","name":"Jay Hernandez","type":"Person","_key":"11486"} +{"label":"Derek Richardson","version":27,"id":"33934","lastModified":"1301901495000","name":"Derek Richardson","type":"Person","_key":"11487"} +{"label":"Eythor Gudjonsson","version":23,"id":"33935","lastModified":"1301901413000","name":"Eythor Gudjonsson","type":"Person","_key":"11488"} +{"label":"Barbara Nedeljakova","version":23,"id":"33936","lastModified":"1301901326000","name":"Barbara Nedeljakova","type":"Person","_key":"11489"} +{"label":"Jana Kaderabkova","version":23,"id":"33937","lastModified":"1301901495000","name":"Jana Kaderabkova","type":"Person","_key":"11490"} +{"label":"Jan Vlas\u00e1k","version":34,"id":"33938","lastModified":"1301901495000","name":"Jan Vlas\u00e1k","type":"Person","_key":"11491"} +{"label":"Lubomir Bukovy","version":23,"id":"33939","lastModified":"1301901827000","name":"Lubomir Bukovy","type":"Person","_key":"11492"} +{"label":"Takashi Miike","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4c50cde37b9aa13d4c0000d1\/takashi-miike-profile.jpg","biography":"Takashi Miike (Yao, 24 agosto 1960) \u00e8 un regista, sceneggiatore, attore e produttore cinematografico giapponese.\n\nControverso e prolifico (tra il 2001 e il 2002 \u00e8 stato accreditato per aver diretto non meno di 14 film), \u00e8 ormai riconosciuto da pubblico e critica internazionale come uno dei pi\u00f9 talentuosi ed originali cineasti del panorama mondiale contemporaneo.[2] Tra produzioni per sala, televisive e V-Cinema, ha al suo attivo, dal suo debutto nel 1991, 80 tra film ed episodi televisivi.","version":112,"birthday":"-295232400000","id":"17282","birthplace":"Yao, Osaka","lastModified":"1301901074000","name":"Takashi Miike","type":"Person","_key":"11493"} +{"label":"Hostel Part II","description":"4 beautiful college students are tricked into entering a hostel where the 'hosts' like to torture, rape and murder. Following a geographical tour of Slovakia, three women are lured into a hostel by a handsome young man who sells them to the twisted masters, who tie them up and bring upon an unthinkable world of pain","id":"1691","runtime":93,"imdbId":"tt0498353","version":467,"lastModified":"1301902075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf7\/4d0e94357b9aa1195e002bf7\/hostel-part-ii-mid.jpg","studio":"Screen Gems, Inc.","genre":"Horror","title":"Hostel Part II","releaseDate":1181174400000,"language":"en","type":"Movie","_key":"11494"} +{"label":"Lauren German","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/527\/4be0e9a1017a3c35c1000527\/lauren-german-profile.jpg","version":31,"id":"37014","lastModified":"1301901369000","name":"Lauren German","type":"Person","_key":"11495"} +{"label":"Richard Burgi","version":37,"id":"25849","lastModified":"1301901227000","name":"Richard Burgi","type":"Person","_key":"11496"} +{"label":"Roger Bart","version":29,"id":"45566","lastModified":"1301901488000","name":"Roger Bart","type":"Person","_key":"11497"} +{"label":"Heather Matarazzo","version":45,"id":"33656","lastModified":"1301901571000","name":"Heather Matarazzo","type":"Person","_key":"11498"} +{"label":"Vera Jordanova","version":20,"id":"37015","lastModified":"1301901624000","name":"Vera Jordanova","type":"Person","_key":"11499"} +{"label":"Jordan Ladd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cb\/4be0e9d5017a3c35b50004cb\/jordan-ladd-profile.jpg","version":42,"id":"20492","lastModified":"1301901414000","name":"Jordan Ladd","type":"Person","_key":"11500"} +{"label":"Zuzana Geislerov\u00e1","version":20,"id":"37016","lastModified":"1301901338000","name":"Zuzana Geislerov\u00e1","type":"Person","_key":"11501"} +{"label":"Milan Knazko","version":20,"id":"37017","lastModified":"1301901478000","name":"Milan Knazko","type":"Person","_key":"11502"} +{"label":"Petr Vancura","version":20,"id":"37018","lastModified":"1301901624000","name":"Petr Vancura","type":"Person","_key":"11503"} +{"label":"Roman Janecka","version":20,"id":"37019","lastModified":"1301901478000","name":"Roman Janecka","type":"Person","_key":"11504"} +{"label":"Davide Dominici","version":20,"id":"37020","lastModified":"1301901432000","name":"Davide Dominici","type":"Person","_key":"11505"} +{"label":"Edwige Fenech","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b4\/4bedc0da017a3c45930000b4\/edwige-fenech-profile.jpg","biography":"Edwige Fenech (Bona, 24 dicembre 1948) \u00e8 un'attrice, conduttrice televisiva e produttrice cinematografica italiana.\nNata nell'Algeria francese da padre maltese e madre siciliana, \u00e8 nota soprattutto per aver interpretato negli anni settanta numerosi film appartenenti al genere della commedia erotica all'italiana.\nRimasta incinta nel 1971 del figlio Edwin, ha avuto come compagno sentimentale per alcuni anni il regista e produttore Luciano Martino, poi Luca Cordero di Montezemolo.\nVive e lavora a R","version":38,"birthday":"-632883600000","id":"44434","birthplace":"Bona, Algeria","lastModified":"1301901349000","name":"Edwige Fenech","type":"Person","_key":"11506"} +{"label":"Liliya Malkina","version":20,"id":"45568","lastModified":"1301901478000","name":"Liliya Malkina","type":"Person","_key":"11507"} +{"label":"Luc Merenda","version":28,"id":"36913","lastModified":"1301901447000","name":"Luc Merenda","type":"Person","_key":"11508"} +{"label":"Susanna Bequer","version":21,"id":"45570","lastModified":"1301901432000","name":"Susanna Bequer","type":"Person","_key":"11509"} +{"label":"Monika Malacova","version":20,"id":"45571","lastModified":"1301901913000","name":"Monika Malacova","type":"Person","_key":"11510"} +{"label":"Ruggero Deodato","version":41,"id":"45572","lastModified":"1301901325000","name":"Ruggero Deodato","type":"Person","_key":"11511"} +{"label":"Monster Man","description":"No overview found.","id":"1693","runtime":95,"imdbId":"tt0365513","version":1057,"lastModified":"1302019774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4bc91260017a3c57fe006cea\/monster-man-mid.jpg","studio":"Road Brothers","genre":"Horror","title":"Monster Man","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"11512"} +{"label":"Michael Davis","version":52,"id":"24949","lastModified":"1301901287000","name":"Michael Davis","type":"Person","_key":"11513"} +{"label":"Eric Jungmann","version":23,"id":"37005","lastModified":"1301902017000","name":"Eric Jungmann","type":"Person","_key":"11514"} +{"label":"Justin Urich","version":24,"id":"37006","lastModified":"1301901586000","name":"Justin Urich","type":"Person","_key":"11515"} +{"label":"Aimee Brooks","version":23,"id":"37007","lastModified":"1301901663000","name":"Aimee Brooks","type":"Person","_key":"11516"} +{"label":"Michael Bailey Smith","version":35,"id":"37008","lastModified":"1301901354000","name":"Michael Bailey Smith","type":"Person","_key":"11517"} +{"label":"Joe Goodrich","version":20,"id":"37009","lastModified":"1301901827000","name":"Joe Goodrich","type":"Person","_key":"11518"} +{"label":"Tim Sitarz","version":20,"id":"37010","lastModified":"1301901827000","name":"Tim Sitarz","type":"Person","_key":"11519"} +{"label":"Robert R. Shafer","version":29,"id":"37011","lastModified":"1301901571000","name":"Robert R. Shafer","type":"Person","_key":"11520"} +{"label":"Re-animator","description":"A dedicated student at a medical college and his girlfriend become involved in bizarre experiments centering around the re-animation of dead tissue when an odd new student arrives on campus.","id":"1694","runtime":83,"imdbId":"tt0089885","trailer":"http:\/\/www.youtube.com\/watch?v=OWmEReju2w0","version":437,"lastModified":"1301958801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf7\/4bc91262017a3c57fe006cf7\/re-animator-mid.jpg","studio":"Empire Pictures","genre":"Comedy","title":"Re-animator","releaseDate":498441600000,"language":"en","tagline":"Herbert West has a good head on his shoulders... and another on his desk.","type":"Movie","_key":"11521"} +{"label":"Stuart Gordon","version":72,"id":"27991","lastModified":"1301901243000","name":"Stuart Gordon","type":"Person","_key":"11522"} +{"label":"Jeffrey Combs","version":60,"id":"27993","lastModified":"1301958738000","name":"Jeffrey Combs","type":"Person","_key":"11523"} +{"label":"Bruce Abbott","version":25,"id":"27994","lastModified":"1301958738000","name":"Bruce Abbott","type":"Person","_key":"11524"} +{"label":"Barbara Crampton","version":36,"id":"27995","lastModified":"1301901314000","name":"Barbara Crampton","type":"Person","_key":"11525"} +{"label":"David Gale","version":51,"id":"27996","lastModified":"1301958739000","name":"David Gale","type":"Person","_key":"11526"} +{"label":"Robert Sampson","version":21,"id":"22048","lastModified":"1301901325000","name":"Robert Sampson","type":"Person","_key":"11527"} +{"label":"Carolyn Purdy-Gordon","version":38,"id":"37028","lastModified":"1301901513000","name":"Carolyn Purdy-Gordon","type":"Person","_key":"11528"} +{"label":"Peter Kent","version":22,"id":"37029","lastModified":"1301901639000","name":"Peter Kent","type":"Person","_key":"11529"} +{"label":"Ian Patrick Williams","version":25,"id":"34986","lastModified":"1301901314000","name":"Ian Patrick Williams","type":"Person","_key":"11530"} +{"label":"The Devil's Rejects","description":"The follow-up to his 2003 horror hit HOUSE OF 1000 CORPSES, Rob Zombie's THE DEVIL'S REJECTS continues the story of a bizarre group of very odd people who like to torture, maim, and kill virtually everyone they come in contact with.","id":"1696","runtime":109,"imdbId":"tt0395584","version":577,"lastModified":"1301901758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdc\/4cbc70f95e73d67784000cdc\/the-devil-s-rejects-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"The Devil's Rejects","releaseDate":1115769600000,"language":"en","tagline":"Death walks behind. Hell waits ahead.","type":"Movie","_key":"11531"} +{"label":"Rob Zombie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02b\/4c22dd0e7b9aa13e1800002b\/rob-zombie-profile.jpg","version":64,"id":"16848","lastModified":"1301901267000","name":"Rob Zombie","type":"Person","_key":"11532"} +{"label":"Bill Moseley","version":63,"id":"27737","lastModified":"1301901234000","name":"Bill Moseley","type":"Person","_key":"11533"} +{"label":"Sheri Moon Zombie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4c4e6a6e7b9aa1326c00005e\/sheri-moon-zombie-profile.jpg","version":39,"id":"21319","lastModified":"1301901148000","name":"Sheri Moon Zombie","type":"Person","_key":"11534"} +{"label":"Leslie Easterbrook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4cadb1857b9aa11b3d0000c6\/leslie-easterbrook-profile.jpg","version":50,"birthday":"-644637600000","id":"22252","lastModified":"1301901407000","name":"Leslie Easterbrook","type":"Person","_key":"11535"} +{"label":"Priscilla Barnes","version":34,"id":"23648","lastModified":"1301901443000","name":"Priscilla Barnes","type":"Person","_key":"11536"} +{"label":"Dave Sheridan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b6\/4d3363bd5e73d633490021b6\/dave-sheridan-profile.jpg","version":38,"id":"35701","lastModified":"1301901130000","name":"Dave Sheridan","type":"Person","_key":"11537"} +{"label":"Kate Norby","version":23,"id":"37026","lastModified":"1301901683000","name":"Kate Norby","type":"Person","_key":"11538"} +{"label":"Lew Temple","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d8\/4cd9d3187b9aa11b220006d8\/lew-temple-profile.jpg","version":55,"id":"37027","lastModified":"1301901125000","name":"Lew Temple","type":"Person","_key":"11539"} +{"label":"Dallas Page","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/705\/4cb7fb887b9aa138d8000705\/dallas-page-profile.jpg","version":32,"birthday":"-433645200000","id":"86903","birthplace":"Point Pleasant, New Jersey","lastModified":"1301901238000","name":"Dallas Page","type":"Person","_key":"11540"} +{"label":"Elizabeth Daily","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4c6987357b9aa13923000037\/elizabeth-daily-profile.jpg","version":51,"id":"15274","lastModified":"1301901250000","name":"Elizabeth Daily","type":"Person","_key":"11541"} +{"label":"Tom Towles","version":56,"id":"27736","lastModified":"1302036098000","name":"Tom Towles","type":"Person","_key":"11542"} +{"label":"Deborah Van Valkenburgh","version":27,"id":"77256","lastModified":"1301901779000","name":"Deborah Van Valkenburgh","type":"Person","_key":"11543"} +{"label":"Ginger Lynn Allen","version":34,"id":"44936","lastModified":"1301999435000","name":"Ginger Lynn Allen","type":"Person","_key":"11544"} +{"label":"Daniel Roebuck","version":60,"id":"43774","lastModified":"1301901401000","name":"Daniel Roebuck","type":"Person","_key":"11545"} +{"label":"Steve Railsback","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61f\/4c62b0e87b9aa172dc00061f\/steve-railsback-profile.jpg","version":44,"id":"52023","lastModified":"1301901361000","name":"Steve Railsback","type":"Person","_key":"11546"} +{"label":"Kane Hodder","version":64,"id":"62596","lastModified":"1301901216000","name":"Kane Hodder","type":"Person","_key":"11547"} +{"label":"Wer fr\u00fcher stirbt, ist l\u00e4nger tot","description":"No overview found.","id":"1697","runtime":105,"imdbId":"tt0780180","trailer":"http:\/\/www.youtube.com\/watch?v=KeUChkNyQ2k","homepage":"http:\/\/www.wer-frueher-stirbt-ist-laenger-tot.de\/","version":74,"lastModified":"1301904246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1e\/4bc91269017a3c57fe006d1e\/wer-fruher-stirbt-ist-langer-tot-mid.jpg","studio":"Roxy Film","genre":"Comedy","title":"Wer fr\u00fcher stirbt, ist l\u00e4nger tot","releaseDate":1155772800000,"language":"en","type":"Movie","_key":"11548"} +{"label":"Marcus H. Rosenm\u00fcller","version":27,"id":"18710","lastModified":"1301901501000","name":"Marcus H. Rosenm\u00fcller","type":"Person","_key":"11549"} +{"label":"Markus Krojer","version":19,"id":"18725","lastModified":"1301901565000","name":"Markus Krojer","type":"Person","_key":"11550"} +{"label":"Fritz Karl","version":25,"id":"18726","lastModified":"1301901567000","name":"Fritz Karl","type":"Person","_key":"11551"} +{"label":"Jule Ronstedt","version":17,"id":"18727","lastModified":"1301901547000","name":"Jule Ronstedt","type":"Person","_key":"11552"} +{"label":"Franz Xaver Br\u00fcckner","version":17,"id":"18728","lastModified":"1301901921000","name":"Franz Xaver Br\u00fcckner","type":"Person","_key":"11553"} +{"label":"Hans Schuler","version":20,"id":"18729","lastModified":"1301901983000","name":"Hans Schuler","type":"Person","_key":"11554"} +{"label":"Sepp Schauer","version":19,"id":"18730","lastModified":"1301901973000","name":"Sepp Schauer","type":"Person","_key":"11555"} +{"label":"Pia Lautenbacher","version":17,"id":"18731","lastModified":"1301901921000","name":"Pia Lautenbacher","type":"Person","_key":"11556"} +{"label":"Klaus Steinbacher","version":18,"id":"18732","lastModified":"1301902016000","name":"Klaus Steinbacher","type":"Person","_key":"11557"} +{"label":"Heinz Josef Braun","version":24,"id":"18733","lastModified":"1301901805000","name":"Heinz Josef Braun","type":"Person","_key":"11558"} +{"label":"Tim Seyfi","version":23,"id":"18734","lastModified":"1301902019000","name":"Tim Seyfi","type":"Person","_key":"11559"} +{"label":"Anatomie","description":"No overview found.","id":"1698","runtime":103,"imdbId":"tt0187696","version":188,"lastModified":"1301903370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a52\/4d19dcec5e73d6083800aa52\/anatomie-mid.jpg","genre":"Horror","title":"Anatomie","releaseDate":949536000000,"language":"en","type":"Movie","_key":"11560"} +{"label":"Anna Loos","version":25,"id":"28361","lastModified":"1301901367000","name":"Anna Loos","type":"Person","_key":"11561"} +{"label":"Oliver Wnuk","version":24,"id":"36863","lastModified":"1301901455000","name":"Oliver Wnuk","type":"Person","_key":"11562"} +{"label":"Traugott Buhre","version":22,"id":"26602","lastModified":"1301902193000","name":"Traugott Buhre","type":"Person","_key":"11563"} +{"label":"Arndt Schwering-Sohnrey","version":25,"id":"36463","lastModified":"1301901689000","name":"Arndt Schwering-Sohnrey","type":"Person","_key":"11564"} +{"label":"Andreas G\u00fcnther","version":19,"id":"19913","lastModified":"1301901997000","name":"Andreas G\u00fcnther","type":"Person","_key":"11565"} +{"label":"Antonia C\u00e4cilia Holfelder","version":23,"id":"36865","lastModified":"1301901827000","name":"Antonia C\u00e4cilia Holfelder","type":"Person","_key":"11566"} +{"label":"Barbara M. Ahren","version":23,"id":"36866","lastModified":"1301901582000","name":"Barbara M. Ahren","type":"Person","_key":"11567"} +{"label":"Werner Dissel","version":23,"id":"36712","lastModified":"1301901603000","name":"Werner Dissel","type":"Person","_key":"11568"} +{"label":"Thomas Meinhardt","version":22,"id":"36867","lastModified":"1301901819000","name":"Thomas Meinhardt","type":"Person","_key":"11569"} +{"label":"Christoph Hagen Dittmann","version":24,"id":"34302","lastModified":"1301901975000","name":"Christoph Hagen Dittmann","type":"Person","_key":"11570"} +{"label":"Anatomie 2","description":"No overview found.","id":"1699","runtime":101,"imdbId":"tt0312358","version":360,"lastModified":"1301902490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b2\/4d4764265e73d653850038b2\/anatomie-2-mid.jpg","studio":"Deutsche Columbia TriStar Filmproduktion","genre":"Horror","title":"Anatomie 2","releaseDate":1044489600000,"language":"en","type":"Movie","_key":"11571"} +{"label":"Joachim Bissmeier","version":21,"id":"36876","lastModified":"1301901598000","name":"Joachim Bissmeier","type":"Person","_key":"11572"} +{"label":"Boris Pietsch","version":19,"id":"36877","lastModified":"1301901756000","name":"Boris Pietsch","type":"Person","_key":"11573"} +{"label":"Rosel Zech","version":26,"id":"23340","lastModified":"1301901448000","name":"Rosel Zech","type":"Person","_key":"11574"} +{"label":"Rosie Alvarez","version":19,"id":"36880","lastModified":"1301901921000","name":"Rosie Alvarez","type":"Person","_key":"11575"} +{"label":"Felix Kramer","version":19,"id":"36883","lastModified":"1301901921000","name":"Felix Kramer","type":"Person","_key":"11576"} +{"label":"Sebastian Nakajew","version":19,"id":"36884","lastModified":"1301901921000","name":"Sebastian Nakajew","type":"Person","_key":"11577"} +{"label":"Roman Knizka","version":28,"id":"36437","lastModified":"1301924683000","name":"Roman Knizka","type":"Person","_key":"11578"} +{"label":"Misery","description":"Novelist Paul Sheldon crashes his car on a snowy Colorado road. He is found by Annie Wilkes, the \"number one fan\" of Paul's heroine Misery Chastaine. Annie is also somewhat unstable, and Paul finds himself crippled, drugged and at her mercy.","id":"1700","runtime":105,"imdbId":"tt0100157","version":525,"lastModified":"1301902591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4e\/4bc91270017a3c57fe006d4e\/misery-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Misery","releaseDate":659923200000,"language":"en","type":"Movie","_key":"11579"} +{"label":"Frances Sternhagen","version":43,"id":"36926","lastModified":"1302062686000","name":"Frances Sternhagen","type":"Person","_key":"11580"} +{"label":"Graham Jarvis","version":30,"id":"36927","lastModified":"1301901945000","name":"Graham Jarvis","type":"Person","_key":"11581"} +{"label":"Jerry Potter","version":18,"id":"137910","lastModified":"1301902912000","name":"Jerry Potter","type":"Person","_key":"11582"} +{"label":"Con Air","description":"When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family. The action climaxes with an incredible crash sequence in Las Vegas.","id":"1701","runtime":115,"imdbId":"tt0118880","trailer":"http:\/\/www.youtube.com\/watch?v=Px8U9fx8TXw","version":448,"lastModified":"1302019374000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e57\/4d4717347b9aa15bbf00ae57\/con-air-mid.jpg","studio":"Jerry Bruckheimer Films","genre":"Action","title":"Con Air","releaseDate":865468800000,"language":"en","tagline":"They were deadly on the ground; Now they have wings","type":"Movie","_key":"11583"} +{"label":"M.C. Gainey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4cf670855e73d6299900101b\/m-c-gainey-profile.jpg","version":59,"id":"22132","lastModified":"1301901165000","name":"M.C. Gainey","type":"Person","_key":"11584"} +{"label":"Renoly Santiago","version":27,"id":"28863","lastModified":"1301901688000","name":"Renoly Santiago","type":"Person","_key":"11585"} +{"label":"Landry Allbright","version":25,"id":"28864","lastModified":"1301901828000","name":"Landry Allbright","type":"Person","_key":"11586"} +{"label":"Simon West","version":60,"id":"12786","lastModified":"1301901319000","name":"Simon West","type":"Person","_key":"11587"} +{"label":"Death Machine","description":"Chaank Armaments is experimenting with the ultimate fighting machine which is part human - part machine. So far, the Hardman project has been unreliable and has killed a number of innocent people. The genius behind this project is Jack who lives in a world of models, toys and magazines. When he is fired by Cale for killing a few corporate officers, he unleashes the ultimate killing machine called the 'Warbeast' against Cale and those who would help her.","id":"1702","runtime":117,"imdbId":"tt0109575","trailer":"http:\/\/www.youtube.com\/watch?v=mUVGxfyEPV8","version":174,"lastModified":"1301903850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7e\/4bc91276017a3c57fe006d7e\/death-machine-mid.jpg","studio":"Fugitive Features","genre":"Horror","title":"Death Machine","releaseDate":816307200000,"language":"en","tagline":"It feeds on your fear","type":"Movie","_key":"11588"} +{"label":"Ely Pouget","version":28,"id":"36898","lastModified":"1301901231000","name":"Ely Pouget","type":"Person","_key":"11589"} +{"label":"John Sharian","version":35,"id":"36900","lastModified":"1301901327000","name":"John Sharian","type":"Person","_key":"11590"} +{"label":"Martin McDougall","version":37,"id":"36901","lastModified":"1301901198000","name":"Martin McDougall","type":"Person","_key":"11591"} +{"label":"Alex Brooks","version":21,"id":"36902","lastModified":"1301901695000","name":"Alex Brooks","type":"Person","_key":"11592"} +{"label":"Stuart St. Paul","version":24,"id":"36903","lastModified":"1301901688000","name":"Stuart St. Paul","type":"Person","_key":"11593"} +{"label":"Fredrick Lopez","version":23,"id":"36905","lastModified":"1301902016000","name":"Fredrick Lopez","type":"Person","_key":"11594"} +{"label":"Stephen Norrington","version":47,"id":"10808","lastModified":"1301901257000","name":"Stephen Norrington","type":"Person","_key":"11595"} +{"label":"Battle for the Planet of the Apes","description":"The fifth and final episode in the Planet of the Apes series. After the collapse of human civilization, a community of intelligent apes led by Caesar lives in harmony with a group of humans. Gorilla General Aldo tries to cause an ape civil war and a community of human mutants who live beneath a destroyed city try to conquer those whom they perceive as enemies. All leading to the finale.","id":"1705","runtime":82,"imdbId":"tt0069768","trailer":"http:\/\/www.youtube.com\/watch?v=-20yLzqRbc4","version":611,"lastModified":"1301902162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8b\/4bc91277017a3c57fe006d8b\/battle-for-the-planet-of-the-apes-mid.jpg","studio":"20th Century Fox","genre":"Science Fiction","title":"Battle for the Planet of the Apes","releaseDate":108950400000,"language":"en","type":"Movie","_key":"11596"} +{"label":"Bobby Porter","version":19,"id":"18677","lastModified":"1301901482000","name":"Bobby Porter","type":"Person","_key":"11597"} +{"label":"Richard Eastham","version":22,"id":"18678","lastModified":"1301901482000","name":"Richard Eastham","type":"Person","_key":"11598"} +{"label":"Planet of the Apes Series","description":"No overview found.","id":"1709","runtime":605,"version":177,"lastModified":"1301902708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01c\/4c8ea5065e73d6149500001c\/planet-of-the-apes-series-mid.jpg","studio":"Twentieth Century-Fox","title":"Planet of the Apes Series","language":"en","tagline":"Somewhere in the universe there must be something better than man. In a matter of time, an astronaut will wing through the centuries and find the answer. He may find the most terrifying one of all on the planet where apes are the rulers and man the beast.","type":"Movie","_key":"11599"} +{"label":"Copycat","description":"An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.","id":"1710","runtime":124,"imdbId":"tt0112722","trailer":"http:\/\/www.youtube.com\/watch?v=lsmXhM4yfU0","version":589,"lastModified":"1301903000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da7\/4bc9127d017a3c57fe006da7\/copycat-mid.jpg","studio":"Regency Enterprises","genre":"Drama","title":"Copycat","releaseDate":814752000000,"language":"en","type":"Movie","_key":"11600"} +{"label":"William McNamara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b7\/4d86178e7b9aa12edd0031b7\/william-mcnamara-profile.jpg","version":31,"id":"18687","lastModified":"1301901513000","name":"William McNamara","type":"Person","_key":"11601"} +{"label":"Harry Connick Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4d2066f85e73d66b2d002147\/harry-connick-jr-profile.jpg","version":51,"id":"18688","lastModified":"1301975827000","name":"Harry Connick Jr.","type":"Person","_key":"11602"} +{"label":"Dermot Mulroney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2de\/4c95ea987b9aa10d580002de\/dermot-mulroney-profile.jpg","version":79,"id":"20212","lastModified":"1301901179000","name":"Dermot Mulroney","type":"Person","_key":"11603"} +{"label":"No Code of Conduct","description":"A cop (Charlie Sheen), his partner (Dacascos), and his father (Martin Sheen) uncover a plot by city elders to smuggle drugs from Mexico into Phoenix, Arizona.","id":"1711","runtime":93,"imdbId":"tt0131502","version":332,"lastModified":"1301903360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/470\/4d28760a5e73d626bc002470\/no-code-of-conduct-mid.jpg","studio":"Millennium Films","genre":"Thriller","title":"No Code of Conduct","releaseDate":921801600000,"language":"en","type":"Movie","_key":"11604"} +{"label":"Bret Michaels","version":21,"id":"18694","lastModified":"1301901921000","name":"Bret Michaels","type":"Person","_key":"11605"} +{"label":"Mark Dacascos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c2\/4bd35320017a3c63ea0003c2\/mark-dacascos-profile.jpg","version":51,"birthday":"-184554000000","id":"18702","birthplace":"Honolulu, Hawaii, USA","lastModified":"1301901115000","name":"Mark Dacascos","type":"Person","_key":"11606"} +{"label":"Joe Lando","version":27,"id":"18704","lastModified":"1301904130000","name":"Joe Lando","type":"Person","_key":"11607"} +{"label":"Bruce Nelson","version":17,"id":"18705","lastModified":"1301901921000","name":"Bruce Nelson","type":"Person","_key":"11608"} +{"label":"Meredith Salenger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c8a\/4d69c3d57b9aa13629001c8a\/meredith-salenger-profile.jpg","version":30,"id":"18706","lastModified":"1301901445000","name":"Meredith Salenger","type":"Person","_key":"11609"} +{"label":"Tina Nguyen","version":17,"id":"18707","lastModified":"1301901921000","name":"Tina Nguyen","type":"Person","_key":"11610"} +{"label":"Courtney Gains","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f9\/4ce5794b7b9aa168b00006f9\/courtney-gains-profile.jpg","version":41,"id":"18708","lastModified":"1301901136000","name":"Courtney Gains","type":"Person","_key":"11611"} +{"label":"Ron Masak","version":17,"id":"18709","lastModified":"1301901921000","name":"Ron Masak","type":"Person","_key":"11612"} +{"label":"Giant","description":"Sprawling epic covering the life of a Texas cattle rancher and his family and associates.","id":"1712","runtime":201,"imdbId":"tt0049261","version":540,"lastModified":"1301902768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ea\/4ceab50d7b9aa17c8b0006ea\/giant-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Giant","releaseDate":-417398400000,"language":"en","type":"Movie","_key":"11613"} +{"label":"Rock Hudson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e7\/4ca9eba07b9aa17ace0006e7\/rock-hudson-profile.jpg","version":63,"id":"18735","lastModified":"1301901264000","name":"Rock Hudson","type":"Person","_key":"11614"} +{"label":"Jane Withers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4c49bbfd7b9aa115ff0000b1\/jane-withers-profile.jpg","version":17,"id":"18736","lastModified":"1301903109000","name":"Jane Withers","type":"Person","_key":"11615"} +{"label":"George Stevens","version":50,"id":"18738","lastModified":"1301901262000","name":"George Stevens","type":"Person","_key":"11616"} +{"label":"Jungle Fever","description":"A successful and married black man contemplates having an affair with a white girl from work. He's quite rightly worried that the racial difference would make an already taboo relationship even worse.","id":"1713","runtime":132,"imdbId":"tt0102175","trailer":"http:\/\/www.youtube.com\/watch?v=kZ64smS4Lyk","version":472,"lastModified":"1301903152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc5\/4bc9127f017a3c57fe006dc5\/jungle-fever-mid.png","studio":"40 Acres & a Mule Filmworks","genre":"Drama","title":"Jungle Fever","releaseDate":674352000000,"language":"en","type":"Movie","_key":"11617"} +{"label":"Annabella Sciorra","version":53,"id":"18750","lastModified":"1301901285000","name":"Annabella Sciorra","type":"Person","_key":"11618"} +{"label":"Wesley Snipes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de3\/4bfecd1a017a3c7036000de3\/wesley-snipes-profile.jpg","biography":"<B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-ansi-language: EN\" lang=EN>Wesley Trent Snipes<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt; mso-ansi-language: EN\" lang=EN> (born July 31, 1962) is an American actor, film producer, and martial artist. He has starred in numerous action-adventures, thrillers, and dramatic feature films and is well known for his role as Blade in the <I>Blade<\/I> trilogy. Snipes formed a production company titled A","version":161,"birthday":"-234234000000","id":"10814","lastModified":"1301976020000","name":"Wesley Snipes","type":"Person","_key":"11619"} +{"label":"Lonette McKee","version":32,"id":"62127","lastModified":"1301901708000","name":"Lonette McKee","type":"Person","_key":"11620"} +{"label":"Fahrenheit 451","description":"In an oppressive future, a fireman whose duty is to destroy all books begins to question his task.","id":"1714","runtime":113,"imdbId":"tt0060390","trailer":"http:\/\/www.youtube.com\/watch?v=7cQ-yGCyjyM","version":720,"lastModified":"1301903064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4bc91284017a3c57fe006dd7\/fahrenheit-451-mid.jpg","studio":"Anglo Enterprise","genre":"Drama","title":"Fahrenheit 451","releaseDate":-104803200000,"language":"en","type":"Movie","_key":"11621"} +{"label":"Bee Duffell","version":18,"id":"18760","lastModified":"1301901383000","name":"Bee Duffell","type":"Person","_key":"11622"} +{"label":"Jeremy Spenser","version":18,"id":"18762","lastModified":"1301901749000","name":"Jeremy Spenser","type":"Person","_key":"11623"} +{"label":"Michael Balfour","version":24,"id":"18763","lastModified":"1301901624000","name":"Michael Balfour","type":"Person","_key":"11624"} +{"label":"Anna Palk","version":19,"id":"18764","lastModified":"1301901913000","name":"Anna Palk","type":"Person","_key":"11625"} +{"label":"Anton Diffring","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b8\/4ce00c265e73d60f6f0001b8\/anton-diffring-profile.jpg","version":32,"id":"97935","lastModified":"1301901603000","name":"Anton Diffring","type":"Person","_key":"11626"} +{"label":"The Cider House Rules","description":"Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?","id":"1715","runtime":126,"imdbId":"tt0124315","trailer":"http:\/\/www.youtube.com\/watch?v=ty3-8cn_Bs8","version":378,"lastModified":"1301907508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de0\/4bc91285017a3c57fe006de0\/the-cider-house-rules-mid.jpg","studio":"Film Colony","genre":"Drama","title":"The Cider House Rules","releaseDate":937094400000,"language":"en","tagline":"A story about how far we must travel to find the place where we belong.","type":"Movie","_key":"11627"} +{"label":"Delroy Lindo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4bd70be1017a3c21ec0000f2\/delroy-lindo-profile.jpg","version":107,"id":"18792","lastModified":"1302036098000","name":"Delroy Lindo","type":"Person","_key":"11628"} +{"label":"Kate Nelligan","version":51,"id":"18794","lastModified":"1301901261000","name":"Kate Nelligan","type":"Person","_key":"11629"} +{"label":"Heavy D","version":32,"id":"18795","lastModified":"1301901549000","name":"Heavy D","type":"Person","_key":"11630"} +{"label":"The Last Metro","description":"In occupied Paris, an actress married to a Jewish theater owner must keep him hidden from the Nazis while doing both of their jobs.","id":"1716","runtime":131,"imdbId":"tt0080610","version":224,"lastModified":"1301903533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ded\/4bc91286017a3c57fe006ded\/le-dernier-metro-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"The Last Metro","releaseDate":337996800000,"language":"en","type":"Movie","_key":"11631"} +{"label":"Suzanne Schiffman","version":37,"id":"3583","lastModified":"1301901349000","name":"Suzanne Schiffman","type":"Person","_key":"11632"} +{"label":"Jean Poiret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/985\/4d9756d77b9aa1199a004985\/jean-poiret-profile.jpg","version":35,"id":"18778","lastModified":"1301901568000","name":"Jean Poiret","type":"Person","_key":"11633"} +{"label":"Maurice Risch","version":38,"id":"18779","lastModified":"1301901648000","name":"Maurice Risch","type":"Person","_key":"11634"} +{"label":"Ren\u00e9 Dupr\u00e9","version":19,"id":"18780","lastModified":"1301902016000","name":"Ren\u00e9 Dupr\u00e9","type":"Person","_key":"11635"} +{"label":"All the King's Men","description":"The story of an idealist's rise to power in the world of Louisiana politics and the corruption that leads to his ultimate downfall. Based on the1946 Pulitzer Prize-winning novel written by Robert Penn Warren.","id":"1717","runtime":125,"imdbId":"tt0405676","homepage":"http:\/\/www.sonypictures.com\/homevideo\/allthekingsmen\/","version":560,"lastModified":"1301902033000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ee\/4cb65cf67b9aa138d60003ee\/all-the-king-s-men-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"All the King's Men","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"11636"} +{"label":"Steven Zaillian","version":68,"id":"2260","lastModified":"1300041811000","name":"Steven Zaillian","type":"Person","_key":"11637"} +{"label":"Travis Champagne","version":20,"id":"18796","lastModified":"1301901827000","name":"Travis Champagne","type":"Person","_key":"11638"} +{"label":"Connor Fox","version":20,"id":"18797","lastModified":"1301901749000","name":"Connor Fox","type":"Person","_key":"11639"} +{"label":"Montgomery John","version":23,"id":"18798","lastModified":"1301901749000","name":"Montgomery John","type":"Person","_key":"11640"} +{"label":"Santa Fe Trail","description":"As a penalty for fighting fellow classmates days before graduating from West Point, J.E.B. Stuart, George Armstrong Custer and four friends are assigned to the 2nd Cavalry, stationed at Fort Leavenworth. While there they aid in the capture and execution of the abolitionist, John Brown following the 'Battle of Harper's Ferry'.","id":"1718","runtime":3,"imdbId":"tt0033021","version":361,"lastModified":"1301903465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0d\/4bc9128c017a3c57fe006e0d\/santa-fe-trail-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Santa Fe Trail","releaseDate":-916790400000,"language":"en","type":"Movie","_key":"11641"} +{"label":"Errol Flynn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6bc\/4bf3f2dd017a3c320b0006bc\/errol-flynn-profile.jpg","version":62,"id":"8724","lastModified":"1301901202000","name":"Errol Flynn","type":"Person","_key":"11642"} +{"label":"Alan Hale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4bcc65c6017a3c0f260000d1\/alan-hale-profile.jpg","version":59,"id":"8729","lastModified":"1301901179000","name":"Alan Hale","type":"Person","_key":"11643"} +{"label":"Ronald Reagan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f3\/4c093802017a3c7e890006f3\/ronald-reagan-profile.jpg","version":38,"id":"18802","lastModified":"1301901283000","name":"Ronald Reagan","type":"Person","_key":"11644"} +{"label":"Van Heflin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d6\/4bf599cd017a3c77320000d6\/van-heflin-profile.jpg","version":48,"id":"18803","lastModified":"1301901251000","name":"Van Heflin","type":"Person","_key":"11645"} +{"label":"William Lundigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4cd422f47b9aa113ad0000b6\/william-lundigan-profile.jpg","version":25,"id":"18805","lastModified":"1301901442000","name":"William Lundigan","type":"Person","_key":"11646"} +{"label":"Henry O'Neill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/031\/4bcf29d6017a3c63e8000031\/henry-o-neill-profile.jpg","version":39,"id":"20368","lastModified":"1301901470000","name":"Henry O'Neill","type":"Person","_key":"11647"} +{"label":"The Soft Skin","description":"Pierre Lachenay is a well-known publisher and lecturer, married with Franca and father of Sabine, around 10. He meets an air hostess, Nicole. They start a love affair, which Pierre is hiding, but he cannot stand staying away from her.","id":"1719","runtime":119,"imdbId":"tt0058458","version":348,"lastModified":"1301904244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e16\/4bc9128d017a3c57fe006e16\/la-peau-douce-mid.jpg","studio":"S\u00e9dif Productions","genre":"Drama","title":"The Soft Skin","releaseDate":-178416000000,"language":"en","type":"Movie","_key":"11648"} +{"label":"Fran\u00e7oise Dorl\u00e9ac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4bf0263a017a3c553f000001\/francoise-dorleac-profile.jpg","version":32,"id":"18809","lastModified":"1301901244000","name":"Fran\u00e7oise Dorl\u00e9ac","type":"Person","_key":"11649"} +{"label":"Nelly Benedetti","version":20,"id":"18810","lastModified":"1301901571000","name":"Nelly Benedetti","type":"Person","_key":"11650"} +{"label":"Laurence Badie","version":25,"id":"18811","lastModified":"1299495202000","name":"Laurence Badie","type":"Person","_key":"11651"} +{"label":"Philippe Dumat","version":19,"id":"18812","lastModified":"1301902016000","name":"Philippe Dumat","type":"Person","_key":"11652"} +{"label":"Paule Emanuele","version":21,"id":"18813","lastModified":"1301901913000","name":"Paule Emanuele","type":"Person","_key":"11653"} +{"label":"Maurice Garrel","version":28,"id":"18814","lastModified":"1301901965000","name":"Maurice Garrel","type":"Person","_key":"11654"} +{"label":"Dominique Lacarri\u00e8re","version":18,"id":"18815","lastModified":"1301901913000","name":"Dominique Lacarri\u00e8re","type":"Person","_key":"11655"} +{"label":"Jean Lanier","version":18,"id":"18816","lastModified":"1301901913000","name":"Jean Lanier","type":"Person","_key":"11656"} +{"label":"Pierre Risch","version":18,"id":"18817","lastModified":"1301901913000","name":"Pierre Risch","type":"Person","_key":"11657"} +{"label":"Noi the Albino","description":"17 year old Noi drifts through life on a remote fjord in Iceland. In winter, the fjord is cut off from the outside world, surrounded by ominous mountains and buried under a shroud of snow. Noi dreams of escaping from this white-walled prison with Iris, a city girl who works in a local gas staion. But his clumsy attempts at escape spiral out of control.","id":"1720","runtime":90,"imdbId":"tt0351461","version":270,"lastModified":"1301903825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2b\/4bc9128f017a3c57fe006e2b\/noi-albinoi-mid.jpg","studio":"Essential Filmproduktion GmbH","genre":"Comedy","title":"Noi the Albino","releaseDate":1046390400000,"language":"en","type":"Movie","_key":"11658"} +{"label":"T\u00f3mas Lemarquis","version":17,"id":"18818","lastModified":"1301901624000","name":"T\u00f3mas Lemarquis","type":"Person","_key":"11659"} +{"label":"\u00der\u00f6stur Le\u00f3 Gunnarsson","version":20,"id":"18819","lastModified":"1301903110000","name":"\u00der\u00f6stur Le\u00f3 Gunnarsson","type":"Person","_key":"11660"} +{"label":"El\u00edn Hansd\u00f3ttir","version":17,"id":"18820","lastModified":"1301901749000","name":"El\u00edn Hansd\u00f3ttir","type":"Person","_key":"11661"} +{"label":"Hjalti R\u00f6gnvaldsson","version":16,"id":"18821","lastModified":"1301903110000","name":"Hjalti R\u00f6gnvaldsson","type":"Person","_key":"11662"} +{"label":"P\u00e9tur Einarsson","version":20,"id":"18822","lastModified":"1301901749000","name":"P\u00e9tur Einarsson","type":"Person","_key":"11663"} +{"label":"Dagur K\u00e1ri","version":28,"id":"18823","lastModified":"1301901567000","name":"Dagur K\u00e1ri","type":"Person","_key":"11664"} +{"label":"All the Way Boys","description":"No overview found.","id":"1721","runtime":106,"imdbId":"tt0069095","version":309,"lastModified":"1301903141000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e34\/4bc91290017a3c57fe006e34\/piu-forte-ragazzi-mid.jpg","studio":"Cecchi Gori Group Tiger Cinematografica","genre":"Adventure","title":"All the Way Boys","releaseDate":100224000000,"language":"en","type":"Movie","_key":"11665"} +{"label":"Giuseppe Colizzi","version":34,"id":"18834","lastModified":"1301901501000","name":"Giuseppe Colizzi","type":"Person","_key":"11666"} +{"label":"Alexander Allerson","version":20,"id":"18840","lastModified":"1301901571000","name":"Alexander Allerson","type":"Person","_key":"11667"} +{"label":"Bud Spencer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/137\/4c014ced017a3c7036001137\/bud-spencer-profile.jpg","biography":"Bud Spencer, pseudonimo di Carlo Pedersoli (Napoli, 31 ottobre 1929), \u00e8 un attore, sceneggiatore, produttore cinematografico ed ex-nuotatore italiano. Particolarmente noto per i suoi film in coppia con Terence Hill (con il quale, nel 2010, ha ricevuto il David di Donatello alla carriera), \u00e8 stato il primo italiano a scendere sotto il minuto nei 100 m stile libero, oltre ad essere stato pi\u00f9 volte campione italiano di nuoto a stile libero e in staffetta.","version":131,"birthday":"-1267664400000","id":"18841","birthplace":"Napoli, Italy","lastModified":"1301904065000","name":"Bud Spencer","type":"Person","_key":"11668"} +{"label":"Reinhard Kolldehoff","version":35,"id":"38171","lastModified":"1301901497000","name":"Reinhard Kolldehoff","type":"Person","_key":"11669"} +{"label":"Captain Corelli's Mandolin","description":"When a fisherman leaves to fight with the Greek army during WWII, his fiancee falls in love with the local Italian commander.","id":"1722","runtime":131,"imdbId":"tt0238112","trailer":"http:\/\/www.youtube.com\/watch?v=l345WSCfzts","homepage":"http:\/\/movies.uip.de\/corellismandoline\/","version":427,"lastModified":"1301901999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e41\/4bc91293017a3c57fe006e41\/captain-corelli-s-mandolin-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Captain Corelli's Mandolin","releaseDate":988934400000,"language":"en","type":"Movie","_key":"11670"} +{"label":"John Madden","version":41,"id":"18844","lastModified":"1301901309000","name":"John Madden","type":"Person","_key":"11671"} +{"label":"Irene Papas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4cae94fd7b9aa1213400014c\/irene-papas-profile.jpg","version":45,"id":"18847","lastModified":"1301901244000","name":"Irene Papas","type":"Person","_key":"11672"} +{"label":"Gerasimos Skiadaressis","version":19,"id":"18848","lastModified":"1301903110000","name":"Gerasimos Skiadaressis","type":"Person","_key":"11673"} +{"label":"Aspasia Kralli","version":17,"id":"18849","lastModified":"1301903110000","name":"Aspasia Kralli","type":"Person","_key":"11674"} +{"label":"Mihalis Giannatos","version":19,"id":"18850","lastModified":"1301901506000","name":"Mihalis Giannatos","type":"Person","_key":"11675"} +{"label":"Dimitris Kaberidis","version":18,"id":"18851","lastModified":"1301901756000","name":"Dimitris Kaberidis","type":"Person","_key":"11676"} +{"label":"Pietro Sarubbi","version":17,"id":"18852","lastModified":"1301903109000","name":"Pietro Sarubbi","type":"Person","_key":"11677"} +{"label":"Viki Maragaki","version":18,"id":"18853","lastModified":"1301901755000","name":"Viki Maragaki","type":"Person","_key":"11678"} +{"label":"The Front","description":"A cashier poses as a writer for blacklisted talents to submit their work through, but the injustice around him pushes him to take a stand.","id":"1723","runtime":95,"imdbId":"tt0074554","version":147,"lastModified":"1301903160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ff\/4cb042655e73d65b820000ff\/the-front-mid.jpg","genre":"Action","title":"The Front","releaseDate":211766400000,"language":"en","type":"Movie","_key":"11679"} +{"label":"Martin Ritt","version":49,"id":"18854","lastModified":"1301901574000","name":"Martin Ritt","type":"Person","_key":"11680"} +{"label":"Andrea Marcovicci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68c\/4c5b22487b9aa151f400068c\/andrea-marcovicci-profile.jpg","version":29,"id":"18859","lastModified":"1301901975000","name":"Andrea Marcovicci","type":"Person","_key":"11681"} +{"label":"Herschel Bernardi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4c2243c87b9aa135fd0001cb\/herschel-bernardi-profile.jpg","version":25,"id":"18860","lastModified":"1301901836000","name":"Herschel Bernardi","type":"Person","_key":"11682"} +{"label":"Zero Mostel","version":31,"id":"18861","lastModified":"1301901465000","name":"Zero Mostel","type":"Person","_key":"11683"} +{"label":"The Incredible Hulk","description":"The classic comic-book tale about a doctor who searches for an antidote to his exotic condition, which causes him to transform into a hulking, green monster when under duress. Drawing closer to finding a remedy, Dr. Banner becomes sidetracked as he's pursued first by the military and then by a rival monster known as the Abomination","id":"1724","runtime":114,"imdbId":"tt0800080","trailer":"http:\/\/www.youtube.com\/watch?v=VtGsuFvrzcY","version":1066,"lastModified":"1301901331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e52\/4bc91294017a3c57fe006e52\/the-incredible-hulk-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Incredible Hulk","releaseDate":1213315200000,"language":"en","tagline":"You'll like him when he's angry.","type":"Movie","_key":"11684"} +{"label":"Louis Leterrier","version":46,"id":"18865","lastModified":"1302064598000","name":"Louis Leterrier","type":"Person","_key":"11685"} +{"label":"Christina Cabot","version":24,"id":"68277","lastModified":"1302064599000","name":"Christina Cabot","type":"Person","_key":"11686"} +{"label":"Peter Mensah","version":24,"id":"68278","lastModified":"1302064599000","name":"Peter Mensah","type":"Person","_key":"11687"} +{"label":"West Side Story","description":"West Side Story is the film adaptation of the popular Broadway musical of the same name from directors Robert Wise and Jerome Robbins.","id":"1725","runtime":152,"imdbId":"tt0055614","trailer":"http:\/\/www.youtube.com\/watch?v=yA_aFprGzyc","version":754,"lastModified":"1301902289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e73\/4bc9129a017a3c57fe006e73\/west-side-story-mid.jpg","studio":"United Artists","genre":"Drama","title":"West Side Story","releaseDate":-258940800000,"language":"en","type":"Movie","_key":"11688"} +{"label":"Jerome Robbins","version":19,"id":"18868","lastModified":"1301901813000","name":"Jerome Robbins","type":"Person","_key":"11689"} +{"label":"Richard Beymer","version":21,"id":"6679","lastModified":"1301901206000","name":"Richard Beymer","type":"Person","_key":"11690"} +{"label":"Russ Tamblyn","version":33,"id":"6725","lastModified":"1301901242000","name":"Russ Tamblyn","type":"Person","_key":"11691"} +{"label":"George Chakiris","version":25,"id":"24880","lastModified":"1301901514000","name":"George Chakiris","type":"Person","_key":"11692"} +{"label":"Ned Glass","version":27,"id":"18870","lastModified":"1301901696000","name":"Ned Glass","type":"Person","_key":"11693"} +{"label":"William Bramley","version":17,"id":"18871","lastModified":"1301902016000","name":"William Bramley","type":"Person","_key":"11694"} +{"label":"Tucker Smith","version":16,"id":"18872","lastModified":"1301903109000","name":"Tucker Smith","type":"Person","_key":"11695"} +{"label":"Iron Man","description":"After escaping from kidnappers using makeshift power armor, an ultrarich inventor and weapons maker turns his creation into a force for good by using it to fight crime. But his skills are stretched to the limit when he must face the evil Iron Monger.","id":"1726","runtime":126,"imdbId":"tt0371746","trailer":"http:\/\/www.youtube.com\/watch?v=vhgzIM-9lfA","homepage":"http:\/\/ironmanmovie.marvel.com\/","version":1000,"lastModified":"1301900889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eae\/4bc912a2017a3c57fe006eae\/iron-man-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Iron Man","releaseDate":1209513600000,"language":"en","tagline":"Heroes aren't born. They're built.","type":"Movie","_key":"11696"} +{"label":"Jon Favreau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4bcf773e017a3c63e80000cc\/jon-favreau-profile.jpg","version":153,"id":"15277","lastModified":"1301904060000","name":"Jon Favreau","type":"Person","_key":"11697"} +{"label":"Leslie Bibb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4bd714ff017a3c21f60000d4\/leslie-bibb-profile.jpg","version":71,"id":"57451","lastModified":"1301904080000","name":"Leslie Bibb","type":"Person","_key":"11698"} +{"label":"Faran Tahir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/178\/4bdd4933017a3c20c6000178\/faran-tahir-profile.jpg","version":30,"id":"57452","lastModified":"1301901220000","name":"Faran Tahir","type":"Person","_key":"11699"} +{"label":"Bird on a Wire","description":"A FBI informant has kept his new identity secret for 15 years, now an old flame has recognised him and the bad guys are back for revenge.","id":"1727","runtime":111,"imdbId":"tt0099141","trailer":"http:\/\/www.youtube.com\/watch?v=1127","version":875,"lastModified":"1301902468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/227\/4d7971fa5e73d62834000227\/bird-on-a-wire-mid.jpg","studio":"Interscope Communications","genre":"Action","title":"Bird on a Wire","releaseDate":642988800000,"language":"en","type":"Movie","_key":"11700"} +{"label":"Goldie Hawn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f1\/4c7670e37b9aa16a070000f1\/goldie-hawn-profile.jpg","version":71,"id":"18892","lastModified":"1301901165000","name":"Goldie Hawn","type":"Person","_key":"11701"} +{"label":"Joan Severance","version":34,"id":"18891","lastModified":"1302059587000","name":"Joan Severance","type":"Person","_key":"11702"} +{"label":"Harry Caesar","version":24,"id":"18894","lastModified":"1301903113000","name":"Harry Caesar","type":"Person","_key":"11703"} +{"label":"Alex Bruhanski","version":24,"id":"18895","lastModified":"1301901708000","name":"Alex Bruhanski","type":"Person","_key":"11704"} +{"label":"The Forbidden Kingdom","description":"A discovery made by a kung fu obsessed American teen sends him on an adventure to China, where he joins up with a band of martial arts warriors in order to free the imprisoned Monkey King.","id":"1729","runtime":113,"imdbId":"tt0865556","trailer":"http:\/\/www.youtube.com\/watch?v=751","homepage":"http:\/\/www.forbiddenkingdommovie.com\/","version":620,"lastModified":"1301901430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0f\/4c0ac1f3017a3c29a6000a0f\/the-forbidden-kingdom-mid.jpg","studio":"Casey Silver Productions","genre":"Action","title":"The Forbidden Kingdom","releaseDate":1208476800000,"language":"en","tagline":"The battle for eternity is the fantasy of a lifetime.","type":"Movie","_key":"11705"} +{"label":"Rob Minkoff","version":52,"id":"18898","lastModified":"1302062970000","name":"Rob Minkoff","type":"Person","_key":"11706"} +{"label":"Jackie Chan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/040\/4c02b719017a3c7e93000040\/jackie-chan-profile.jpg","biography":"Jackie Chan, born Chan Kong-sang, \u9673\u6e2f\u751f) is a Hong Kong actor, action choreographer, filmmaker, comedian, producer, martial artist, screenwriter, entrepreneur, singer and stunt performer.\n\nIn his movies, he is known for his acrobatic fighting style, comic timing, use of improvised weapons, and innovative stunts. Jackie Chan has been acting since the 1970s and has appeared in over 100 films. Chan has received stars on the Hong Kong Avenue of Stars and the Hollywood Walk of Fame.\nAs a cultural icon,","version":455,"birthday":"-496630800000","id":"18897","birthplace":"Victoria Peak, Hong Kong","lastModified":"1302063585000","name":"Jackie Chan","type":"Person","_key":"11707"} +{"label":"Bingbing Li","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4c8bc2de7b9aa16744000126\/bingbing-li-profile.jpg","version":54,"id":"109432","lastModified":"1301922444000","name":"Bingbing Li","type":"Person","_key":"11708"} +{"label":"Yifei Liu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/292\/4d3e680a5e73d622cf004292\/yifei-liu-profile.jpg","version":29,"id":"122503","lastModified":"1301901509000","name":"Yifei Liu","type":"Person","_key":"11709"} +{"label":"Jack Posobiec","version":28,"id":"122515","lastModified":"1301902359000","name":"Jack Posobiec","type":"Person","_key":"11710"} +{"label":"Morgan Benoit","version":28,"id":"122504","lastModified":"1301902021000","name":"Morgan Benoit","type":"Person","_key":"11711"} +{"label":"Juana Collignon","version":28,"id":"122514","lastModified":"1301902171000","name":"Juana Collignon","type":"Person","_key":"11712"} +{"label":"Inland Empire","description":"An actress's perception of reality becomes increasingly distorted as she finds herself falling for her co-star in a remake of an unfinished Polish production that was supposedly cursed.","id":"1730","runtime":172,"imdbId":"tt0460829","trailer":"http:\/\/www.youtube.com\/watch?v=64","homepage":"http:\/\/www.inlandempirecinema.com\/","version":158,"lastModified":"1301901874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/674\/4c62fce85e73d63463000674\/inland-empire-mid.jpg","studio":"Studio Canal","genre":"Drama","title":"Inland Empire","releaseDate":1157500800000,"language":"en","type":"Movie","_key":"11713"} +{"label":"Peter J. Lucas","version":19,"id":"18905","lastModified":"1301901549000","name":"Peter J. Lucas","type":"Person","_key":"11714"} +{"label":"Neil Dickson","version":36,"id":"18906","lastModified":"1302058969000","name":"Neil Dickson","type":"Person","_key":"11715"} +{"label":"Helen","description":"On the outside, Helen has it all \u2013 a loving family and a successful career \u2013 but when her suppressed mental illness resurfaces, the world crumbles around her. Crippled by depression, Helen finds solace through her friendship with Mathilda, a kindred spirit struggling with bipolar disorder.","id":"1731","runtime":120,"imdbId":"tt1012729","version":355,"lastModified":"1301904999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c54\/4c67b5595e73d63463000c54\/helen-mid.jpg","studio":"Egoli Tossell Film AG","genre":"Drama","title":"Helen","releaseDate":1232064000000,"language":"en","tagline":"Recurence of mental illness cripples successful woman.","type":"Movie","_key":"11716"} +{"label":"Sandra Nettelbeck","version":26,"id":"18903","lastModified":"1301901975000","name":"Sandra Nettelbeck","type":"Person","_key":"11717"} +{"label":"Lauren Lee Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22a\/4cd5a8765e73d676cf00022a\/lauren-lee-smith-profile.jpg","version":37,"id":"52394","lastModified":"1301901405000","name":"Lauren Lee Smith","type":"Person","_key":"11718"} +{"label":"David Nykl","version":23,"id":"53324","lastModified":"1301901683000","name":"David Nykl","type":"Person","_key":"11719"} +{"label":"The Prisoner of Zenda","description":"No overview found.","id":"1732","runtime":108,"imdbId":"tt0079753","version":246,"lastModified":"1301903267000","studio":"Universal Pictures","genre":"Adventure","title":"The Prisoner of Zenda","releaseDate":314582400000,"language":"en","type":"Movie","_key":"11720"} +{"label":"Richard Quine","version":35,"id":"18907","lastModified":"1302028986000","name":"Richard Quine","type":"Person","_key":"11721"} +{"label":"Lynne Frederick","version":27,"id":"18913","lastModified":"1301901975000","name":"Lynne Frederick","type":"Person","_key":"11722"} +{"label":"Gregory Sierra","version":19,"id":"18914","lastModified":"1301901827000","name":"Gregory Sierra","type":"Person","_key":"11723"} +{"label":"Jeremy Kemp","version":31,"id":"55037","lastModified":"1301901651000","name":"Jeremy Kemp","type":"Person","_key":"11724"} +{"label":"The Mummy Collection","description":"No overview found.","id":"1733","version":509,"lastModified":"1301902204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/589\/4c6df6fd5e73d65f7b000589\/the-mummy-trilogy-mid.jpg","title":"The Mummy Collection","language":"en","type":"Movie","_key":"11725"} +{"label":"The Mummy Returns","description":"Many years ago, in Ancient Egypt, the Scorpian Kind led a menacing army, but when he sold his soul to Anubis, he was erased from history. Now he is only a myth...or is he? Rick and Evelyn O'Connell is still discovering new artifacts, along with their 8 year old son Alex. They discover the Bracelet of Anubis. But someone else is after the bracelet. High Priest Imhotep has been brought back from the dead once again and wants the bracelet, to control the Scorpian King's army. That's not the only pr","id":"1734","runtime":130,"imdbId":"tt0209163","trailer":"http:\/\/www.youtube.com\/watch?v=1605","version":634,"lastModified":"1301901234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f67\/4bc912bf017a3c57fe006f67\/the-mummy-returns-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Mummy Returns","releaseDate":988502400000,"language":"en","tagline":"The most powerful force on earth is about to be unleashed by the two people who should know better.","type":"Movie","_key":"11726"} +{"label":"Dwayne Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4bd3e14e017a3c7fb0000014\/dwayne-johnson-profile.jpg","biography":"<SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" lang=EN><STRONG>Dwayne Douglas Johnson<\/STRONG><\/SPAN><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" la","version":137,"birthday":"73609200000","id":"18918","lastModified":"1301904046000","name":"Dwayne Johnson","type":"Person","_key":"11727"} +{"label":"Freddie Boath","version":20,"id":"18919","lastModified":"1301901629000","name":"Freddie Boath","type":"Person","_key":"11728"} +{"label":"Patricia Velasquez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c3\/4d9bb2ae7b9aa16d070006c3\/patricia-velasquez-profile.jpg","version":33,"id":"18920","lastModified":"1302042262000","name":"Patricia Velasquez","type":"Person","_key":"11729"} +{"label":"The Mummy: Tomb of the Dragon Emperor","description":"The third installment in the Mummy franchise takes archaeologist Rick O'Connell to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his family -- including his wife and son -- to quash the so-called Dragon Emperor and his abuse of supernatural power.","id":"1735","runtime":112,"imdbId":"tt0859163","trailer":"http:\/\/www.youtube.com\/watch?v=612","homepage":"http:\/\/www.themummy.com\/","version":636,"lastModified":"1301901238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdf\/4d424de17b9aa15bab003fdf\/the-mummy-tomb-of-the-dragon-emperor-mid.jpg","studio":"Alphaville Films","genre":"Action","title":"The Mummy: Tomb of the Dragon Emperor","releaseDate":1217548800000,"language":"en","tagline":"A New Evil Awakens. ","type":"Movie","_key":"11730"} +{"label":"Luke Ford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64e\/4cc2e7615e73d6778400164e\/luke-ford-profile.jpg","version":51,"id":"55900","lastModified":"1301901177000","name":"Luke Ford","type":"Person","_key":"11731"} +{"label":"Isabella Leong","version":43,"id":"72040","lastModified":"1301901175000","name":"Isabella Leong","type":"Person","_key":"11732"} +{"label":"Shoppen","description":"Eine fast bombensichere Methode, Single zu bleiben, hei\u00dft \"Speed-Dating\". 18 Menschen nehmen an solch einem Kennenlern-Event teil. Neun M\u00e4nner und neun Frauen sitzen sich gegen\u00fcber, um sich unter Zeitdruck optimal zu verkaufen und einen Partner zu finden. Sie suchen ein Date - und haben sonst nichts gemein. Man redet \u00fcber Allergien, Cappuccino, Konsumverhalten, Linienbusse und Designerkleidung: Die Liste haneb\u00fcchener Verlegenheitsthemen ist lang. Doch noch hat keiner der einsamen Herzen die Hoff","id":"1736","runtime":91,"imdbId":"tt0805613","version":91,"lastModified":"1301904454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4d137b117b9aa1147a001215\/shoppen-mid.jpg","genre":"Comedy","title":"Shoppen","releaseDate":1161734400000,"language":"en","type":"Movie","_key":"11733"} +{"label":"Ralf Westhoff","version":21,"id":"18927","lastModified":"1301901629000","name":"Ralf Westhoff","type":"Person","_key":"11734"} +{"label":"Katja Brenner","version":21,"id":"18931","lastModified":"1301901482000","name":"Katja Brenner","type":"Person","_key":"11735"} +{"label":"Patricia Aulitzky","version":20,"id":"18933","lastModified":"1301901788000","name":"Patricia Aulitzky","type":"Person","_key":"11736"} +{"label":"David Baalcke","version":18,"id":"18934","lastModified":"1301901827000","name":"David Baalcke","type":"Person","_key":"11737"} +{"label":"Matthias Bundschuh","version":17,"id":"18935","lastModified":"1301901921000","name":"Matthias Bundschuh","type":"Person","_key":"11738"} +{"label":"Martin Butzke","version":17,"id":"18936","lastModified":"1301901921000","name":"Martin Butzke","type":"Person","_key":"11739"} +{"label":"Oliver B\u00fcrgin","version":21,"id":"18937","lastModified":"1301901755000","name":"Oliver B\u00fcrgin","type":"Person","_key":"11740"} +{"label":"Anna B\u00f6ger","version":18,"id":"18938","lastModified":"1301901629000","name":"Anna B\u00f6ger","type":"Person","_key":"11741"} +{"label":"Mediha Cetin","version":22,"id":"18939","lastModified":"1301901921000","name":"Mediha Cetin","type":"Person","_key":"11742"} +{"label":"Julia Heinze","version":17,"id":"18940","lastModified":"1301901921000","name":"Julia Heinze","type":"Person","_key":"11743"} +{"label":"Felix Hellmann","version":18,"id":"18941","lastModified":"1301901983000","name":"Felix Hellmann","type":"Person","_key":"11744"} +{"label":"Anja Klawun","version":22,"id":"18942","lastModified":"1301901788000","name":"Anja Klawun","type":"Person","_key":"11745"} +{"label":"Julia Koschitz","version":19,"id":"18943","lastModified":"1301903108000","name":"Julia Koschitz","type":"Person","_key":"11746"} +{"label":"Christian Pfeil","version":21,"id":"18945","lastModified":"1301901921000","name":"Christian Pfeil","type":"Person","_key":"11747"} +{"label":"Tanja Schleiff","version":17,"id":"18946","lastModified":"1301901921000","name":"Tanja Schleiff","type":"Person","_key":"11748"} +{"label":"Katharina M. Schubert","version":19,"id":"18947","lastModified":"1301901576000","name":"Katharina M. Schubert","type":"Person","_key":"11749"} +{"label":"Kathrin von Steinburg","version":17,"id":"18948","lastModified":"1301901921000","name":"Kathrin von Steinburg","type":"Person","_key":"11750"} +{"label":"Lisa Wagner","version":17,"id":"18949","lastModified":"1301901921000","name":"Lisa Wagner","type":"Person","_key":"11751"} +{"label":"Sebastian Weber","version":17,"id":"18950","lastModified":"1301901921000","name":"Sebastian Weber","type":"Person","_key":"11752"} +{"label":"Stephan Zinner","version":17,"id":"18951","lastModified":"1301901920000","name":"Stephan Zinner","type":"Person","_key":"11753"} +{"label":"Next","description":"A Las Vegas magician who can see into the future is pursued by FBI agents seeking to use his abilities to prevent a nuclear terrorist attack.","id":"1738","runtime":96,"imdbId":"tt0435705","trailer":"http:\/\/www.youtube.com\/watch?v=vb9_BHZ2VXM","homepage":"http:\/\/www.nextmovie.com","version":236,"lastModified":"1301901667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd8\/4bc912cf017a3c57fe006fd8\/next-mid.jpg","studio":"Revolution Studios","genre":"Action","title":"Next","releaseDate":1177632000000,"language":"en","tagline":"If you can see the future, you can save it.","type":"Movie","_key":"11754"} +{"label":"Tory Kittles","version":28,"id":"62645","lastModified":"1301901346000","name":"Tory Kittles","type":"Person","_key":"11755"} +{"label":"Enzo Cilenti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/220\/4cef355c5e73d6624f000220\/enzo-cilenti-profile.jpg","version":38,"birthday":"145148400000","id":"91494","birthplace":"Bradford, Yorkshire, England","lastModified":"1301901253000","name":"Enzo Cilenti","type":"Person","_key":"11756"} +{"label":"Wei\u00dfer Holunder","description":"No overview found.","id":"1739","runtime":85,"imdbId":"tt0051185","version":63,"lastModified":"1301904271000","genre":"Crime","title":"Wei\u00dfer Holunder","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"11757"} +{"label":"Paul May","version":25,"id":"49415","lastModified":"1301902188000","name":"Paul May","type":"Person","_key":"11758"} +{"label":"Germaine Damar","version":20,"id":"49426","lastModified":"1301902185000","name":"Germaine Damar","type":"Person","_key":"11759"} +{"label":"Carla Hagen","version":22,"id":"26526","lastModified":"1301901974000","name":"Carla Hagen","type":"Person","_key":"11760"} +{"label":"Michl Lang","version":23,"id":"46558","lastModified":"1301902349000","name":"Michl Lang","type":"Person","_key":"11761"} +{"label":"Gerty Godden","version":20,"id":"49428","lastModified":"1301902382000","name":"Gerty Godden","type":"Person","_key":"11762"} +{"label":"Stanislav Ledinek","version":26,"id":"28321","lastModified":"1301901797000","name":"Stanislav Ledinek","type":"Person","_key":"11763"} +{"label":"Ursula Herking","version":21,"id":"26553","lastModified":"1301901827000","name":"Ursula Herking","type":"Person","_key":"11764"} +{"label":"Lolita","version":21,"id":"49429","lastModified":"1301902199000","name":"Lolita","type":"Person","_key":"11765"} +{"label":"Willy R\u00f6sner","version":21,"id":"48336","lastModified":"1301902388000","name":"Willy R\u00f6sner","type":"Person","_key":"11766"} +{"label":"Helmut Brasch","version":21,"id":"49430","lastModified":"1301902163000","name":"Helmut Brasch","type":"Person","_key":"11767"} +{"label":"Fredy Brock","version":20,"id":"49431","lastModified":"1301902193000","name":"Fredy Brock","type":"Person","_key":"11768"} +{"label":"Rupert Hoegg","version":20,"id":"49432","lastModified":"1301902163000","name":"Rupert Hoegg","type":"Person","_key":"11769"} +{"label":"Lukas Ammann","version":20,"id":"49433","lastModified":"1301902349000","name":"Lukas Ammann","type":"Person","_key":"11770"} +{"label":"Karl Bayer","version":20,"id":"49434","lastModified":"1301902163000","name":"Karl Bayer","type":"Person","_key":"11771"} +{"label":"Paul B\u00f6s","version":20,"id":"49435","lastModified":"1301902188000","name":"Paul B\u00f6s","type":"Person","_key":"11772"} +{"label":"Max Greger","version":20,"id":"49436","lastModified":"1301902163000","name":"Max Greger","type":"Person","_key":"11773"} +{"label":"J\u00f6rg Maria Berg","version":21,"id":"49437","lastModified":"1301901974000","name":"J\u00f6rg Maria Berg","type":"Person","_key":"11774"} +{"label":"Willy Hagara","version":19,"id":"47255","lastModified":"1301902351000","name":"Willy Hagara","type":"Person","_key":"11775"} +{"label":"Nackt","description":"Nackt is the story of three couples, one of which just broke up, one that seems to be about to and one perfectly okay. They are all friends and from time to time they gather to talk about everything.One time they gather for dinner at the second couple's \"mansion\" - the husband became rich with his business. We see each couple as they prepare themselves for the party and learn a lot about their relationships.At the dinner they get to talking about recognizing each other's peer with closed eyes an","id":"1740","runtime":100,"imdbId":"tt0300237","version":70,"lastModified":"1301904479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe2\/4bc912d0017a3c57fe006fe2\/nackt-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Comedy","title":"Nackt","releaseDate":1032393600000,"language":"en","type":"Movie","_key":"11776"} +{"label":"Doris D\u00f6rrie","version":37,"id":"18969","lastModified":"1301901405000","name":"Doris D\u00f6rrie","type":"Person","_key":"11777"} +{"label":"Duck Tales","description":"No overview found.","id":"1759","title":"Duck Tales","language":"en","lastModified":"1302019273000","version":387,"type":"Movie","_key":"11778"} +{"label":"DuckTales: The Treasure of the Golden Suns","description":"No overview found.","id":"1760","runtime":120,"imdbId":"tt0191102","version":38,"lastModified":"1301904725000","studio":"Walt Disney Television","genre":"Adventure","title":"DuckTales: The Treasure of the Golden Suns","releaseDate":558316800000,"language":"en","type":"Movie","_key":"11779"} +{"label":"Alan Young","version":38,"id":"21874","lastModified":"1301901221000","name":"Alan Young","type":"Person","_key":"11780"} +{"label":"Tony Anselmo","version":51,"id":"34478","lastModified":"1301901683000","name":"Tony Anselmo","type":"Person","_key":"11781"} +{"label":"Russi Taylor","version":53,"id":"6035","lastModified":"1301966272000","name":"Russi Taylor","type":"Person","_key":"11782"} +{"label":"Michael Collins","description":"Michael Collins plays a crucial role in the establishment of the Irish Free State in the 1920s, but becomes vilified by those hoping to create a completely independent Irish republic.","id":"1770","runtime":132,"imdbId":"tt0117039","trailer":"http:\/\/www.youtube.com\/watch?v=F1pkbe29910","version":659,"lastModified":"1301903616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fef\/4bc912d2017a3c57fe006fef\/michael-collins-mid.jpg","studio":"Geffen Pictures","genre":"Documentary","title":"Michael Collins","releaseDate":846201600000,"language":"en","type":"Movie","_key":"11783"} +{"label":"Aidan Quinn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/efb\/4d6966d65e73d66b27000efb\/aidan-quinn-profile.jpg","version":87,"id":"18992","lastModified":"1302006579000","name":"Aidan Quinn","type":"Person","_key":"11784"} +{"label":"Stuart Graham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f06\/4d7e26c15e73d62828002f06\/stuart-graham-profile.jpg","version":30,"id":"18993","lastModified":"1301901784000","name":"Stuart Graham","type":"Person","_key":"11785"} +{"label":"Michael Dwyer","version":29,"id":"18995","lastModified":"1301901179000","name":"Michael Dwyer","type":"Person","_key":"11786"} +{"label":"Captain America: The First Avenger","description":"After being deemed unfit for military service, Steve Rogers volunteers for a top secret research project that turns him into Captain America, a superhero dedicated to defending America's ideals.","id":"1771","imdbId":"tt0458339","trailer":"http:\/\/www.youtube.com\/watch?v=IuQlnpbO7v8","homepage":"http:\/\/captainamerica.marvel.com\/","version":139,"lastModified":"1301901488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d2\/4d5c2f797b9aa1122f0011d2\/captain-america-the-first-avenger-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Captain America: The First Avenger","releaseDate":1311292800000,"language":"en","type":"Movie","_key":"11787"} +{"label":"Dominic Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cae\/4d70bed65e73d66b2b004cae\/dominic-cooper-profile.jpg","version":48,"id":"55470","lastModified":"1301901296000","name":"Dominic Cooper","type":"Person","_key":"11788"} +{"label":"Sebastian Stan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/767\/4ce5ad347b9aa168b4000767\/sebastian-stan-profile.jpg","version":61,"id":"60898","lastModified":"1301901148000","name":"Sebastian Stan","type":"Person","_key":"11789"} +{"label":"City of Hope","description":"City of Hope is a film by John Sayles starring Vincent Spano. The film illustrates an American city in New Jersey from the perspective of one man who has lived there his whole life.","id":"1772","runtime":129,"imdbId":"tt0101588","version":95,"lastModified":"1301902957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff8\/4bc912d3017a3c57fe006ff8\/city-of-hope-mid.jpg","studio":"Goldwyn Films","genre":"Drama","title":"City of Hope","releaseDate":687139200000,"language":"en","type":"Movie","_key":"11790"} +{"label":"Stephen Mendillo","version":19,"id":"19023","lastModified":"1301901624000","name":"Stephen Mendillo","type":"Person","_key":"11791"} +{"label":"Jace Alexander","version":15,"id":"20833","lastModified":"1301903114000","name":"Jace Alexander","type":"Person","_key":"11792"} +{"label":"Todd Graff","version":47,"id":"18342","lastModified":"1301901107000","name":"Todd Graff","type":"Person","_key":"11793"} +{"label":"Charlie Yanko","version":15,"id":"20834","lastModified":"1301903114000","name":"Charlie Yanko","type":"Person","_key":"11794"} +{"label":"John Sayles","version":88,"id":"102445","lastModified":"1302066065000","name":"John Sayles","type":"Person","_key":"11795"} +{"label":"American Madness","description":"American Madness is a film from director Frank Capra from 1932. Set during the depression the film depicts a bank trustee involved in a robbery scandal.","id":"1773","runtime":73,"imdbId":"tt0022626","version":69,"lastModified":"1301904049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67a\/4cd9b4117b9aa11b2200067a\/american-madness-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Crime","title":"American Madness","releaseDate":-1180569600000,"language":"en","type":"Movie","_key":"11796"} +{"label":"Walter Huston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4bcf315d017a3c63f5000034\/walter-huston-profile.jpg","biography":"Walter Huston was a Canadian-born American actor. He was the father of actor and director John Huston and the grandfather of actress Anjelica Huston and actor Danny Huston.\n\nBorn Walter Houghston in Toronto, Ontario to an Ulster-Scottish father and a Scottish Canadian mother, he began his Broadway career in 1924. Once talkies began in Hollywood, he achieved fame in character roles. His first major role was in 1929's The Virginian with Gary Cooper. He appeared in the Broadway theatrical adaptatio","version":50,"birthday":"-2705619600000","id":"19020","birthplace":"Toronto, Ontario, Canada","lastModified":"1301904082000","name":"Walter Huston","type":"Person","_key":"11797"} +{"label":"Kay Johnson","version":17,"id":"19021","lastModified":"1301901586000","name":"Kay Johnson","type":"Person","_key":"11798"} +{"label":"Constance Cummings","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f3\/4c518a287b9aa13d4c0001f3\/constance-cummings-profile.jpg","version":23,"id":"19022","lastModified":"1301903110000","name":"Constance Cummings","type":"Person","_key":"11799"} +{"label":"Gavin Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4a\/4be711b0017a3c35b5000d4a\/gavin-gordon-profile.jpg","version":30,"id":"2927","lastModified":"1301901369000","name":"Gavin Gordon","type":"Person","_key":"11800"} +{"label":"Arthur Hoyt","version":25,"id":"29263","lastModified":"1301901571000","name":"Arthur Hoyt","type":"Person","_key":"11801"} +{"label":"Robert Emmett O'Connor","version":26,"id":"10806","lastModified":"1301901974000","name":"Robert Emmett O'Connor","type":"Person","_key":"11802"} +{"label":"Robert Ellis","version":25,"birthday":"-2446074000000","id":"29347","birthplace":"Brooklyn, New York, USA","lastModified":"1301902163000","name":"Robert Ellis","type":"Person","_key":"11803"} +{"label":"The Big One","description":"The Big One is an investigative documentary from director Michael Moore who goes around the country asking why big American corporations produce their product abroad where labor is cheaper while so many Americans are unemployed, loosing their jobs, and would happily be hired by such companies as Nike.","id":"1774","runtime":91,"imdbId":"tt0124295","version":135,"lastModified":"1301907299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4bc912d4017a3c57fe007001\/the-big-one-mid.jpg","genre":"Documentary","title":"The Big One","releaseDate":892166400000,"language":"en","type":"Movie","_key":"11804"} +{"label":"Canadian Bacon","description":"Canadian Bacon is the only fictitious film from Director Michael Moore. This comedy is about an American president who decides to go to war to bring the public\u2019s opinion of him up during election time. Canadian Bacon is actor John Candy\u2019s last film. ","id":"1775","runtime":91,"imdbId":"tt0109370","version":380,"lastModified":"1301903937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4bc912d5017a3c57fe00700e\/canadian-bacon-mid.jpg","studio":"Gramercy Pictures","genre":"Action","title":"Canadian Bacon","releaseDate":802569600000,"language":"en","type":"Movie","_key":"11805"} +{"label":"Alan Alda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/495\/4ce1c2335e73d60f6e000495\/alan-alda-profile.jpg","version":85,"birthday":"-1070672400000","id":"21278","birthplace":"New York City, New York, USA","lastModified":"1301901250000","name":"Alan Alda","type":"Person","_key":"11806"} +{"label":"Rhea Perlman","version":34,"id":"24203","lastModified":"1301901355000","name":"Rhea Perlman","type":"Person","_key":"11807"} +{"label":"James Belushi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e7f\/4be88b2a017a3c35b7000e7f\/james-belushi-profile.jpg","version":105,"id":"26485","lastModified":"1302066196000","name":"James Belushi","type":"Person","_key":"11808"} +{"label":"Richard Council","version":18,"id":"92788","lastModified":"1301902709000","name":"Richard Council","type":"Person","_key":"11809"} +{"label":"Jesus Camp","description":"Jesus Camp is a documentary about a children\u2019s religious summer camp. The film was nominated for an Academy Award for best documentary yet was extremely controversial and received negative reactions from some viewers claiming the camp was child abuse.","id":"1776","runtime":87,"imdbId":"tt0486358","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=6RNfL6IVWCE","version":130,"lastModified":"1301902837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4bc912d6017a3c57fe00701f\/jesus-camp-mid.jpg","genre":"Documentary","title":"Jesus Camp","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"11810"} +{"label":"Rachel Grady","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/644\/4ca9a4177b9aa17acd000644\/rachel-grady-profile.jpg","version":22,"id":"19006","lastModified":"1301901563000","name":"Rachel Grady","type":"Person","_key":"11811"} +{"label":"Heidi Ewing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64d\/4ca9a3fc7b9aa17acb00064d\/heidi-ewing-profile.jpg","version":20,"id":"19003","lastModified":"1301901427000","name":"Heidi Ewing","type":"Person","_key":"11812"} +{"label":"Becky Fischer","version":17,"id":"19007","lastModified":"1301901975000","name":"Becky Fischer","type":"Person","_key":"11813"} +{"label":"Mike Papantonio","version":17,"id":"19008","lastModified":"1301901975000","name":"Mike Papantonio","type":"Person","_key":"11814"} +{"label":"Fahrenheit 911","description":"Michael Moore's view on what happened to the United States after September 11; and how the Bush Administration allegedly used the tragic event to push forward its agenda for unjust wars in Afghanistan and Iraq.","id":"1777","runtime":122,"imdbId":"tt0361596","trailer":"http:\/\/www.youtube.com\/watch?v=rsFwzhbBRrM","version":166,"lastModified":"1301902887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/037\/4bc912d9017a3c57fe007037\/fahrenheit-9-11-mid.jpg","genre":"Documentary","title":"Fahrenheit 911","releaseDate":1083888000000,"language":"en","tagline":"Controversy...what controversy?","type":"Movie","_key":"11815"} +{"label":"The Backyard","description":"No overview found.","id":"1778","runtime":80,"imdbId":"tt0309326","version":102,"lastModified":"1300978033000","genre":"Documentary","title":"The Backyard","releaseDate":1015545600000,"language":"en","type":"Movie","_key":"11816"} +{"label":"Paul Hough","version":19,"id":"19026","lastModified":"1301902016000","name":"Paul Hough","type":"Person","_key":"11817"} +{"label":"The Lizard","version":21,"id":"19027","lastModified":"1301902016000","name":"The Lizard","type":"Person","_key":"11818"} +{"label":"Scar","version":21,"id":"19028","lastModified":"1301902016000","name":"Scar","type":"Person","_key":"11819"} +{"label":"Chaos","version":21,"id":"19029","lastModified":"1301901827000","name":"Chaos","type":"Person","_key":"11820"} +{"label":"Heartless","version":21,"id":"19030","lastModified":"1301901974000","name":"Heartless","type":"Person","_key":"11821"} +{"label":"Roger & Me","description":"Roger & Me is an American documentary from journalist and independent film maker Michael Moore.","id":"1779","runtime":91,"imdbId":"tt0098213","trailer":"http:\/\/www.youtube.com\/watch?v=xPNmHPjkxdk","version":480,"lastModified":"1301904964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/049\/4bc912dc017a3c57fe007049\/roger-me-mid.jpg","studio":"Warner Independent Pictures","genre":"Comedy","title":"Roger & Me","releaseDate":630115200000,"language":"en","type":"Movie","_key":"11822"} +{"label":"An Inconvenient Truth","description":"A documentary on Al Gore's campaign to make the issue of global warming a recognized problem worldwide.","id":"1781","runtime":94,"imdbId":"tt0497116","trailer":"http:\/\/www.youtube.com\/watch?v=46","homepage":"http:\/\/www.climatecrisis.net\/","version":252,"lastModified":"1301908049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4bc912df017a3c57fe00705f\/an-inconvenient-truth-mid.jpg","studio":"Paramount Pictures","genre":"Documentary","title":"An Inconvenient Truth","releaseDate":1148428800000,"language":"en","type":"Movie","_key":"11823"} +{"label":"Davis Guggenheim","version":24,"id":"19012","lastModified":"1301901698000","name":"Davis Guggenheim","type":"Person","_key":"11824"} +{"label":"Al Gore","version":30,"id":"19013","lastModified":"1301901398000","name":"Al Gore","type":"Person","_key":"11825"} +{"label":"Billy West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27b\/4bf98479017a3c702f00027b\/billy-west-profile.jpg","biography":"William Richard \"Billy\" West (born April 16, 1952) is an American voice actor. He launched his career in the early 1980s performing daily comedic routines on Boston's WBCN (TOP Rock station of the time) shortly after moving on to do the revival of Beany and Cecil and was also a castmember on the Howard Stern's radio show during the early to mid 1990s.\n\nWest is best known for his voice-work on Ren & Stimpy, Doug and Futurama. His favorite characters are Philip J. Fry (Futurama) and Stimpy (Ren a","version":113,"id":"23679","lastModified":"1301997897000","name":"Billy West","type":"Person","_key":"11826"} +{"label":"Afterwards","description":"Newly divorced lawyer Nathan Del Amico is shaken up after he meets a doctor who claims that he can sense when select people are about to die. Though he doesn't believe the doctor, events in Nathan's life slowly make him think he's not long for this world.","id":"1782","runtime":107,"imdbId":"tt0940580","trailer":"http:\/\/www.youtube.com\/watch?v=uK5rjw2t_Ac","version":380,"lastModified":"1301902430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/280\/4ca7b9c67b9aa17acc000280\/afterwards-mid.jpg","studio":"Christal Films","genre":"Drama","title":"Afterwards","releaseDate":1222819200000,"language":"en","type":"Movie","_key":"11827"} +{"label":"Evangeline Lilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c36\/4cbb465a5e73d67783000c36\/evangeline-lilly-profile.jpg","version":63,"id":"19034","lastModified":"1301901254000","name":"Evangeline Lilly","type":"Person","_key":"11828"} +{"label":"Gilles Bourdos","version":23,"id":"19035","lastModified":"1301901514000","name":"Gilles Bourdos","type":"Person","_key":"11829"} +{"label":"To End All Wars","description":"Inspired by real-life events, this film explores the experiences of Capt. Ernest Gordon (Ciaran McMenamin) and other Japanese prisoners of war who were enlisted for the grueling task of building the Railroad of Death. As the men struggle to maintain their sanity and will, they begin to drift apart while Major Campbell (Robert Carlyle) plans his escape, Lt. Rigden (Kiefer Sutherland) watches his back, and Gordon attempts to keep his dignity.","id":"1783","runtime":108,"imdbId":"tt0243609","version":147,"lastModified":"1301903449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a49\/4d6d11f45e73d66b23003a49\/to-end-all-wars-mid.jpg","studio":"Argyll Film Partners","genre":"Action","title":"To End All Wars","releaseDate":999388800000,"language":"en","type":"Movie","_key":"11830"} +{"label":"David L. Cunningham","version":31,"id":"19037","lastModified":"1302065848000","name":"David L. Cunningham","type":"Person","_key":"11831"} +{"label":"Ciar\u00e1n McMenamin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a59\/4d6d13cc5e73d66b23003a59\/ciar-n-mcmenamin-profile.jpg","version":25,"id":"19047","lastModified":"1301901597000","name":"Ciar\u00e1n McMenamin","type":"Person","_key":"11832"} +{"label":"Sakae Kimura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac2\/4d6d13f05e73d66b2b003ac2\/sakae-kimura-profile.jpg","version":18,"id":"19048","lastModified":"1301903110000","name":"Sakae Kimura","type":"Person","_key":"11833"} +{"label":"Masayuki Yui","version":19,"id":"19049","lastModified":"1301901983000","name":"Masayuki Yui","type":"Person","_key":"11834"} +{"label":"Barbarella","description":"No overview found.","id":"1784","runtime":0,"imdbId":"tt1486570","version":164,"lastModified":"1301516584000","studio":"Dino De Laurentiis Company","genre":"Action","title":"Barbarella","language":"en","type":"Movie","_key":"11835"} +{"label":"May Fools","description":"An eccentric family is re-united during the 1968 general strike in France, after the death of the grandmother.","id":"1785","runtime":107,"imdbId":"tt0097884","version":122,"lastModified":"1301903716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/deb\/4d4345aa5e73d65385000deb\/milou-en-mai-mid.jpg","studio":"TF1 Films Productions","genre":"Comedy","title":"May Fools","releaseDate":633139200000,"language":"en","type":"Movie","_key":"11836"} +{"label":"Michel Duchaussoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61b\/4d827bef7b9aa17f7000061b\/michel-duchaussoy-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\"><span style=\"font-size: 12px;\">Michel Duchaussoy est un acteur de th\u00e9\u00e2tre et de cin\u00e9ma, n\u00e9 le 29 novembre 1938 \u00e0 Valenciennes (France).<\/span><\/font><span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \">\nIl r\u00e9ussit ses \u00e9tudes de Lettres \u00e0 <a href=\"http:\/\/fr.wikipedia.org\/wiki\/Lille\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: i","version":61,"id":"19062","lastModified":"1301944669000","name":"Michel Duchaussoy","type":"Person","_key":"11837"} +{"label":"Bruno Carette","version":18,"id":"19063","lastModified":"1301901913000","name":"Bruno Carette","type":"Person","_key":"11838"} +{"label":"Martine Gautier","version":18,"id":"19064","lastModified":"1301901913000","name":"Martine Gautier","type":"Person","_key":"11839"} +{"label":"Rozenne Le Tallec","version":18,"id":"19065","lastModified":"1301901542000","name":"Rozenne Le Tallec","type":"Person","_key":"11840"} +{"label":"Jeanne Herry","version":18,"id":"19066","lastModified":"1301901913000","name":"Jeanne Herry","type":"Person","_key":"11841"} +{"label":"Renaud Danner","version":18,"id":"19067","lastModified":"1301901913000","name":"Renaud Danner","type":"Person","_key":"11842"} +{"label":"Fran\u00e7ois Berl\u00e9and","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/74b\/4ca10bbc5e73d6704e00074b\/francois-berleand-profile.jpg","version":113,"birthday":"-558406800000","id":"7693","birthplace":"Paris, France","lastModified":"1302030723000","name":"Fran\u00e7ois Berl\u00e9and","type":"Person","_key":"11843"} +{"label":"Dominique Blanc","version":29,"id":"19068","lastModified":"1301903109000","name":"Dominique Blanc","type":"Person","_key":"11844"} +{"label":"Au revoir les enfants","description":"A French boarding school run by priests seems to be a haven from World War II until a new student arrives. He becomes the roommate of top student in his class. Rivals at first, the roommates form a bond and share a secret.","id":"1786","runtime":104,"imdbId":"tt0092593","version":105,"lastModified":"1301903072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4bc912e5017a3c57fe00708f\/au-revoir-les-enfants-mid.jpg","studio":"MK2 Productions","genre":"Drama","title":"Au revoir les enfants","releaseDate":560563200000,"language":"en","type":"Movie","_key":"11845"} +{"label":"Gaspard Manesse","version":18,"id":"19071","lastModified":"1301901432000","name":"Gaspard Manesse","type":"Person","_key":"11846"} +{"label":"Raphael Fejt\u00f6","version":17,"id":"19072","lastModified":"1301903108000","name":"Raphael Fejt\u00f6","type":"Person","_key":"11847"} +{"label":"Francine Racette","version":17,"id":"19073","lastModified":"1301903110000","name":"Francine Racette","type":"Person","_key":"11848"} +{"label":"Philippe Morier-Genoud","version":24,"id":"19075","lastModified":"1301901570000","name":"Philippe Morier-Genoud","type":"Person","_key":"11849"} +{"label":"Stanislas Carr\u00e9 de Malberg","version":18,"id":"19074","lastModified":"1301901913000","name":"Stanislas Carr\u00e9 de Malberg","type":"Person","_key":"11850"} +{"label":"Fran\u00e7ois N\u00e9gret","version":22,"id":"19076","lastModified":"1301901850000","name":"Fran\u00e7ois N\u00e9gret","type":"Person","_key":"11851"} +{"label":"Xavier Legrand","version":18,"id":"19077","lastModified":"1301901913000","name":"Xavier Legrand","type":"Person","_key":"11852"} +{"label":"Pascal Rivet","version":18,"id":"19078","lastModified":"1301901913000","name":"Pascal Rivet","type":"Person","_key":"11853"} +{"label":"Richard Leboeuf","version":18,"id":"19079","lastModified":"1301901749000","name":"Richard Leboeuf","type":"Person","_key":"11854"} +{"label":"Arnaud Henriet","version":21,"id":"19080","lastModified":"1301901913000","name":"Arnaud Henriet","type":"Person","_key":"11855"} +{"label":"Luc Etienne","version":18,"id":"19081","lastModified":"1301901913000","name":"Luc Etienne","type":"Person","_key":"11856"} +{"label":"Jean-Paul Dubarry","version":18,"id":"19082","lastModified":"1301901913000","name":"Jean-Paul Dubarry","type":"Person","_key":"11857"} +{"label":"Jacqueline Paris","version":18,"id":"19083","lastModified":"1301901913000","name":"Jacqueline Paris","type":"Person","_key":"11858"} +{"label":"Bad Girls","description":"Architect Paul Thomas insinuates himself into the relationship of two bisexual women living in a St. Tropez villa with tragic consequences.","id":"1787","runtime":100,"imdbId":"tt0062728","version":100,"lastModified":"1301907298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4c913e3c5e73d626f0000019\/les-biches-mid.jpg","studio":"Les Films de la Bo\u00e9tie","genre":"Drama","title":"Bad Girls","releaseDate":-56160000000,"language":"en","type":"Movie","_key":"11859"} +{"label":"Claude Chabrol","version":137,"id":"19069","lastModified":"1301901230000","name":"Claude Chabrol","type":"Person","_key":"11860"} +{"label":"Jacqueline Sassard","version":21,"id":"19091","lastModified":"1301901586000","name":"Jacqueline Sassard","type":"Person","_key":"11861"} +{"label":"St\u00e9phane Audran","version":57,"id":"19092","lastModified":"1301901263000","name":"St\u00e9phane Audran","type":"Person","_key":"11862"} +{"label":"Footloose","description":"Classic tale of teen rebellion and repression features a delightful combination of dance choreography and realistic and touching performances. When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock.","id":"1788","runtime":107,"imdbId":"tt0087277","trailer":"http:\/\/www.youtube.com\/watch?v=2308","version":224,"lastModified":"1301904394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88b\/4d0abc587b9aa162b700088b\/footloose-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Footloose","releaseDate":445824000000,"language":"en","tagline":"The music is on his side.","type":"Movie","_key":"11863"} +{"label":"Lori Singer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fe\/4c2260c87b9aa135fd0001fe\/lori-singer-profile.jpg","version":28,"id":"26456","lastModified":"1301901379000","name":"Lori Singer","type":"Person","_key":"11864"} +{"label":"Herbert Ross","version":52,"id":"18378","lastModified":"1302026546000","name":"Herbert Ross","type":"Person","_key":"11865"} +{"label":"The Gazebo","description":"TV writer Elliott Nash buries a blackmailer under the new gazebo in his suburban backyard. But the nervous man can't let the body rest there.","id":"1789","runtime":100,"imdbId":"tt0052837","version":51,"lastModified":"1301903167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b4\/4bc912ea017a3c57fe0070b4\/the-gazebo-mid.jpg","studio":"Avon Production","genre":"Comedy","title":"The Gazebo","releaseDate":-317001600000,"language":"en","type":"Movie","_key":"11866"} +{"label":"George Marshall","version":36,"id":"19093","lastModified":"1301901375000","name":"George Marshall","type":"Person","_key":"11867"} +{"label":"Doro Merande","version":17,"id":"19097","lastModified":"1301903110000","name":"Doro Merande","type":"Person","_key":"11868"} +{"label":"Mabel Albertson","version":17,"id":"19098","lastModified":"1301902021000","name":"Mabel Albertson","type":"Person","_key":"11869"} +{"label":"Heaven with a Gun","description":"Glenn Ford plays Jim Killian, a preacher who arrives in a town divided between cattlemen and sheep herders. But Killian isn't just any preacher. He is a former fast gun who has set upon a different path.","id":"1790","runtime":98,"imdbId":"tt0064409","version":62,"lastModified":"1301904479000","studio":"King Brothers Productions","genre":"Western","title":"Heaven with a Gun","releaseDate":-21168000000,"language":"en","type":"Movie","_key":"11870"} +{"label":"Lee H. Katzin","version":22,"id":"19101","lastModified":"1301901663000","name":"Lee H. Katzin","type":"Person","_key":"11871"} +{"label":"Barbara Hershey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/685\/4c5b1b247b9aa151f2000685\/barbara-hershey-profile.jpg","version":102,"id":"10767","lastModified":"1301901110000","name":"Barbara Hershey","type":"Person","_key":"11872"} +{"label":"Harry Townes","version":19,"id":"19107","lastModified":"1301901983000","name":"Harry Townes","type":"Person","_key":"11873"} +{"label":"Carolyn Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67d\/4ca9f5547b9aa17acf00067d\/carolyn-jones-profile.jpg","version":39,"id":"19109","lastModified":"1301985258000","name":"Carolyn Jones","type":"Person","_key":"11874"} +{"label":"Virginia Gregg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/193\/4c405d017b9aa1427f000193\/virginia-gregg-profile.jpg","version":28,"id":"19110","lastModified":"1301901191000","name":"Virginia Gregg","type":"Person","_key":"11875"} +{"label":"Noah Beery Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/372\/4c614d7b7b9aa172d9000372\/noah-beery-jr-profile.jpg","version":30,"birthday":"-1779670800000","id":"30297","birthplace":"New York City, New York, USA","lastModified":"1301901645000","name":"Noah Beery Jr.","type":"Person","_key":"11876"} +{"label":"La Pianiste","description":"A young man romantically pursues his masochistic piano teacher.","id":"1791","runtime":131,"imdbId":"tt0254686","version":81,"lastModified":"1301997312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e0\/4d0999c67b9aa1440d0002e0\/la-pianiste-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Drama","title":"La Pianiste","releaseDate":990576000000,"language":"en","type":"Movie","_key":"11877"} +{"label":"Anna Sigalevitch","version":22,"id":"19122","lastModified":"1301904134000","name":"Anna Sigalevitch","type":"Person","_key":"11878"} +{"label":"Susanne Lothar","version":30,"id":"19123","lastModified":"1301901287000","name":"Susanne Lothar","type":"Person","_key":"11879"} +{"label":"Cornelia K\u00f6ndgen","version":18,"id":"19124","lastModified":"1301901749000","name":"Cornelia K\u00f6ndgen","type":"Person","_key":"11880"} +{"label":"Stuck on You","description":"The very essence of the relationship between co-joined twins Bob and Walt is tested when Walt convinces them to move to L.A. so he can become an actor. Quickly the twins find fame and fortune by landing a job on Cher's TV show, but the success threatens to drive them apart. ","id":"1792","runtime":118,"imdbId":"tt0338466","trailer":"http:\/\/www.youtube.com\/watch?v=1804","version":300,"lastModified":"1301903383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ce\/4bc912ee017a3c57fe0070ce\/stuck-on-you-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Stuck on You","releaseDate":1071014400000,"language":"en","type":"Movie","_key":"11881"} +{"label":"Wen Yann Shih","version":16,"id":"19127","lastModified":"1301903110000","name":"Wen Yann Shih","type":"Person","_key":"11882"} +{"label":"Dane Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e99\/4cbb22297b9aa138d7000e99\/dane-cook-profile.jpg","version":82,"id":"31837","lastModified":"1301901137000","name":"Dane Cook","type":"Person","_key":"11883"} +{"label":"Max Dugan Returns","description":"No overview found.","id":"1793","runtime":98,"imdbId":"tt0085919","version":116,"lastModified":"1301904142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df3\/4d205ef47b9aa17367001df3\/max-dugan-returns-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Max Dugan Returns","releaseDate":417398400000,"language":"en","type":"Movie","_key":"11884"} +{"label":"Marsha Mason","version":31,"id":"19131","lastModified":"1301901469000","name":"Marsha Mason","type":"Person","_key":"11885"} +{"label":"Charley Lau","version":18,"id":"19132","lastModified":"1301901827000","name":"Charley Lau","type":"Person","_key":"11886"} +{"label":"Mari Gorman","version":18,"id":"19133","lastModified":"1301901920000","name":"Mari Gorman","type":"Person","_key":"11887"} +{"label":"Brian Part","version":17,"id":"19134","lastModified":"1301901755000","name":"Brian Part","type":"Person","_key":"11888"} +{"label":"Panchito G\u00f3mez","version":19,"id":"19135","lastModified":"1301901983000","name":"Panchito G\u00f3mez","type":"Person","_key":"11889"} +{"label":"Sal Viscuso","version":17,"id":"19136","lastModified":"1301901920000","name":"Sal Viscuso","type":"Person","_key":"11890"} +{"label":"John Corvello","version":20,"id":"44893","lastModified":"1301902120000","name":"John Corvello","type":"Person","_key":"11891"} +{"label":"Jim Staahl","version":21,"id":"44894","lastModified":"1301901920000","name":"Jim Staahl","type":"Person","_key":"11892"} +{"label":"Tessa Richarde","version":20,"id":"44895","lastModified":"1301902120000","name":"Tessa Richarde","type":"Person","_key":"11893"} +{"label":"Duke Stroud","version":21,"id":"44896","lastModified":"1301902114000","name":"Duke Stroud","type":"Person","_key":"11894"} +{"label":"Shelley Morrison","version":22,"id":"44897","lastModified":"1301902137000","name":"Shelley Morrison","type":"Person","_key":"11895"} +{"label":"La c\u00e9r\u00e9monie","description":"Sophie, a quiet and shy maid working for the upper-class family Lelievre, hides her illiteracy under the cloak of a perfect household and obedience. She finds a friend in the energetic and uncompromising postmaster Jeanne, who encourages her to stand up against her bourgeois employers. Things start to escalate as the Lelievres find out that Sophie can't read and has brought Jeanne into their house against their wish.","id":"1802","runtime":111,"imdbId":"tt0112769","version":70,"lastModified":"1301903878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4cd5a1827b9aa11b26000134\/la-ceremonie-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"La c\u00e9r\u00e9monie","releaseDate":809740800000,"language":"en","type":"Movie","_key":"11896"} +{"label":"Jean-Pierre Cassel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bc\/4ca3e5605e73d636f70000bc\/jean-pierre-cassel-profile.jpg","version":88,"id":"19162","lastModified":"1302059100000","name":"Jean-Pierre Cassel","type":"Person","_key":"11897"} +{"label":"Virginie Ledoyen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4cd1742e5e73d65024001037\/virginie-ledoyen-profile.jpg","version":62,"id":"19163","lastModified":"1301901263000","name":"Virginie Ledoyen","type":"Person","_key":"11898"} +{"label":"Julien Rochefort","version":22,"id":"19164","lastModified":"1301901819000","name":"Julien Rochefort","type":"Person","_key":"11899"} +{"label":"Dominique Frot","version":24,"id":"19165","lastModified":"1301903110000","name":"Dominique Frot","type":"Person","_key":"11900"} +{"label":"Angel","description":"No overview found.","id":"1803","runtime":89,"imdbId":"tt0086896","version":100,"lastModified":"1301903857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4bc912ef017a3c57fe0070db\/angel-mid.jpg","genre":"Crime","title":"Angel","releaseDate":451872000000,"language":"en","type":"Movie","_key":"11901"} +{"label":"Robert Vincent O'Neill","version":26,"id":"8956","lastModified":"1301901449000","name":"Robert Vincent O'Neill","type":"Person","_key":"11902"} +{"label":"Dick Shawn","version":33,"id":"19178","lastModified":"1301901569000","name":"Dick Shawn","type":"Person","_key":"11903"} +{"label":"Donna Wilkes","version":17,"id":"19179","lastModified":"1301901585000","name":"Donna Wilkes","type":"Person","_key":"11904"} +{"label":"Graem McGavin","version":16,"id":"19180","lastModified":"1301903109000","name":"Graem McGavin","type":"Person","_key":"11905"} +{"label":"Rory Calhoun","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4c865ed37b9aa1545b00009f\/rory-calhoun-profile.jpg","version":34,"id":"19181","lastModified":"1302032363000","name":"Rory Calhoun","type":"Person","_key":"11906"} +{"label":"Cliff Gorman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4caf32217b9aa121360001bb\/cliff-gorman-profile.jpg","version":26,"id":"19183","lastModified":"1301901399000","name":"Cliff Gorman","type":"Person","_key":"11907"} +{"label":"Susan Tyrrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ba\/4ca0b12b7b9aa164630001ba\/susan-tyrrell-profile.jpg","version":38,"id":"59369","lastModified":"1301901467000","name":"Susan Tyrrell","type":"Person","_key":"11908"} +{"label":"Elephant","description":"Elephant is a Gus Van Sant film depicting the story of a high school just before and after a massive shooting. The film is shot in a way that makes the viewer seem like they are there, in the high school, slowly walking around witnessing ever characters story unfold. The film won the Palme d\u2019Or and Best Director at the 2003 Cannes Film Festival.","id":"1807","runtime":81,"imdbId":"tt0363589","trailer":"http:\/\/www.youtube.com\/watch?v=49","version":145,"lastModified":"1301902838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e4\/4bc912ef017a3c57fe0070e4\/elephant-mid.jpg","studio":"HBO","genre":"Drama","title":"Elephant","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"11909"} +{"label":"Alex Frost","version":28,"id":"19195","lastModified":"1301901311000","name":"Alex Frost","type":"Person","_key":"11910"} +{"label":"Eric Deulen","version":20,"id":"19196","lastModified":"1301901486000","name":"Eric Deulen","type":"Person","_key":"11911"} +{"label":"John Robinson","version":33,"id":"19197","lastModified":"1301901418000","name":"John Robinson","type":"Person","_key":"11912"} +{"label":"Elias McConnell","version":23,"id":"19198","lastModified":"1301901415000","name":"Elias McConnell","type":"Person","_key":"11913"} +{"label":"Jordan Taylor","version":20,"id":"19199","lastModified":"1301901552000","name":"Jordan Taylor","type":"Person","_key":"11914"} +{"label":"Carrie Finklea","version":21,"id":"19200","lastModified":"1301903109000","name":"Carrie Finklea","type":"Person","_key":"11915"} +{"label":"Nicole George","version":20,"id":"19201","lastModified":"1301901552000","name":"Nicole George","type":"Person","_key":"11916"} +{"label":"Brittany Mountain","version":19,"id":"19202","lastModified":"1301903108000","name":"Brittany Mountain","type":"Person","_key":"11917"} +{"label":"Alicia Miles","version":19,"id":"19203","lastModified":"1301903109000","name":"Alicia Miles","type":"Person","_key":"11918"} +{"label":"Kristen Hicks","version":19,"id":"19204","lastModified":"1301903109000","name":"Kristen Hicks","type":"Person","_key":"11919"} +{"label":"Bennie Dixon","version":20,"id":"19205","lastModified":"1301901486000","name":"Bennie Dixon","type":"Person","_key":"11920"} +{"label":"Nathan Tyson","version":19,"id":"19206","lastModified":"1301903110000","name":"Nathan Tyson","type":"Person","_key":"11921"} +{"label":"Timothy Bottoms","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c3\/4bf21090017a3c32170002c3\/timothy-bottoms-profile.jpg","version":60,"birthday":"-578797200000","id":"19207","birthplace":"Santa Barbara, California","lastModified":"1301901316000","name":"Timothy Bottoms","type":"Person","_key":"11922"} +{"label":"Chantelle Chriestenson Nelson","version":21,"id":"19209","lastModified":"1301901513000","name":"Chantelle Chriestenson Nelson","type":"Person","_key":"11923"} +{"label":"Velvet Goldmine","description":"In 1984, British newspaper reporter Arthur Stuart is investigating the career of 1970s glam rock star Brian Slade, who was heavily influenced in his early years by American rock singer Curt Wild, whose show was quite crazy for his time.","id":"1808","runtime":112,"imdbId":"tt0120879","version":159,"lastModified":"1301904814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ed\/4bc912f0017a3c57fe0070ed\/velvet-goldmine-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Velvet Goldmine","releaseDate":895708800000,"language":"en","type":"Movie","_key":"11924"} +{"label":"Michael Feast","version":28,"id":"26259","lastModified":"1301901521000","name":"Michael Feast","type":"Person","_key":"11925"} +{"label":"Emily Woof","version":23,"id":"33679","lastModified":"1301901684000","name":"Emily Woof","type":"Person","_key":"11926"} +{"label":"Ganiat Kasumu","version":22,"id":"33680","lastModified":"1301901829000","name":"Ganiat Kasumu","type":"Person","_key":"11927"} +{"label":"The Rules of Attraction","description":"The incredibly spoiled and overprivileged students of Camden College are a backdrop for an unusual love triangle between a drug dealer, a virgin and a bisexual classmate.","id":"1809","runtime":110,"imdbId":"tt0292644","version":189,"lastModified":"1301940497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/116\/4bc912f6017a3c57fe007116\/the-rules-of-attraction-mid.jpg","studio":"Kingsgate Films","genre":"Comedy","title":"The Rules of Attraction","releaseDate":1034294400000,"language":"en","type":"Movie","_key":"11928"} +{"label":"James Van Der Beek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aae\/4cf5889f5e73d6299a000aae\/james-van-der-beek-profile.jpg","version":37,"id":"19210","lastModified":"1301901162000","name":"James Van Der Beek","type":"Person","_key":"11929"} +{"label":"Shannyn Sossamon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4bf145bc017a3c3217000134\/shannyn-sossamon-profile.jpg","version":69,"id":"27855","lastModified":"1301901119000","name":"Shannyn Sossamon","type":"Person","_key":"11930"} +{"label":"Ian Somerhalder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/989\/4cbb01ce5e73d67785000989\/ian-somerhalder-profile.jpg","version":44,"birthday":"281919600000","id":"19211","birthplace":"Covington, Louisiana, U.S.","lastModified":"1301901182000","name":"Ian Somerhalder","type":"Person","_key":"11931"} +{"label":"Thomas Ian Nicholas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d7\/4c3b0c265e73d671d30001d7\/thomas-ian-nicholas-profile.jpg","version":59,"id":"21403","lastModified":"1301901222000","name":"Thomas Ian Nicholas","type":"Person","_key":"11932"} +{"label":"Russell Sams","version":27,"id":"19212","lastModified":"1301901646000","name":"Russell Sams","type":"Person","_key":"11933"} +{"label":"Kip Pardue","version":42,"id":"65561","lastModified":"1301901703000","name":"Kip Pardue","type":"Person","_key":"11934"} +{"label":"Joel Michaely","version":28,"id":"59471","lastModified":"1301902048000","name":"Joel Michaely","type":"Person","_key":"11935"} +{"label":"Colin Bain","version":19,"id":"101618","lastModified":"1301902847000","name":"Colin Bain","type":"Person","_key":"11936"} +{"label":"Kavan Reece","version":19,"id":"104914","lastModified":"1301902647000","name":"Kavan Reece","type":"Person","_key":"11937"} +{"label":"Ron Jeremy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/342\/4c481aae5e73d61ef9000342\/ron-jeremy-profile.jpg","version":61,"id":"42545","lastModified":"1301901279000","name":"Ron Jeremy","type":"Person","_key":"11938"} +{"label":"Viva Zapata!","description":"No overview found.","id":"1810","runtime":113,"imdbId":"tt0045296","trailer":"http:\/\/www.youtube.com\/watch?v=Wm5TCglKzjY","version":127,"lastModified":"1301903245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12e\/4bc912f9017a3c57fe00712e\/viva-zapata-mid.jpg","studio":"20th Century Fox","genre":"Adventure","title":"Viva Zapata!","releaseDate":-599616000000,"language":"en","type":"Movie","_key":"11939"} +{"label":"Jean Peters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/340\/4bd1f8d7017a3c63f3000340\/jean-peters-profile.jpg","version":33,"id":"19216","lastModified":"1301901295000","name":"Jean Peters","type":"Person","_key":"11940"} +{"label":"Arnold Moss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03e\/4c2362087b9aa13f6500003e\/arnold-moss-profile.jpg","version":23,"id":"15676","lastModified":"1301901325000","name":"Arnold Moss","type":"Person","_key":"11941"} +{"label":"Margo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/237\/4bf18c52017a3c320d000237\/margo-profile.jpg","version":21,"id":"19221","lastModified":"1301901442000","name":"Margo","type":"Person","_key":"11942"} +{"label":"Lou Gilbert","version":20,"id":"19215","lastModified":"1301901690000","name":"Lou Gilbert","type":"Person","_key":"11943"} +{"label":"Frank Silvera","version":25,"id":"19217","lastModified":"1301901350000","name":"Frank Silvera","type":"Person","_key":"11944"} +{"label":"Joseph Granby","version":17,"id":"19218","lastModified":"1301901688000","name":"Joseph Granby","type":"Person","_key":"11945"} +{"label":"Fay Roope","version":19,"id":"19219","lastModified":"1301901515000","name":"Fay Roope","type":"Person","_key":"11946"} +{"label":"Frank DeKova","version":48,"id":"50574","lastModified":"1301901443000","name":"Frank DeKova","type":"Person","_key":"11947"} +{"label":"Nowhere","description":"The third film in a trilogy by writer-director Gregg Araki. Described as \"90210 on acid\", the film tells the story of a day in the lives of a group of high school kids Los Angeles and the strange lives they lead.","id":"1811","runtime":82,"imdbId":"tt0119809","version":149,"lastModified":"1301902728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4bc912fa017a3c57fe007133\/nowhere-mid.jpg","studio":"Desperate Pictures","genre":"Drama","title":"Nowhere","releaseDate":863136000000,"language":"en","type":"Movie","_key":"11948"} +{"label":"Rachel True","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11b\/4d82b5427b9aa1436c00011b\/rachel-true-profile.jpg","version":30,"birthday":"-98758800000","id":"19222","birthplace":"New York City, New York, USA","lastModified":"1301901432000","name":"Rachel True","type":"Person","_key":"11949"} +{"label":"Nathan Bexton","version":26,"id":"19223","lastModified":"1301901644000","name":"Nathan Bexton","type":"Person","_key":"11950"} +{"label":"Christina Applegate","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/150\/4c8fb15d7b9aa17689000150\/christina-applegate-profile.jpg","biography":"Christina Applegate (born November 25, 1971)  best known for playing Kelly Bundy on the FOX sitcom Married... with Children. She has since established a film and television career, with major roles in several pictures, including Don't Tell Mom the Babysitter's Dead, The Big Hit, The Sweetest Thing, Anchorman, Farce of the Penguins, and Alvin and the Chipmunks: The Squeakquel. She has also starred in numerous productions including the 2005 Broadway revival of the musical Sweet Charity. More ","version":93,"birthday":"59871600000","id":"18979","birthplace":"Hollywood, California, USA","lastModified":"1301901087000","name":"Christina Applegate","type":"Person","_key":"11951"} +{"label":"Thyme Lewis","version":20,"id":"33674","lastModified":"1301901624000","name":"Thyme Lewis","type":"Person","_key":"11952"} +{"label":"Alan Boyce","version":24,"id":"33675","lastModified":"1301901241000","name":"Alan Boyce","type":"Person","_key":"11953"} +{"label":"Chiara Mastroianni","version":46,"id":"20710","lastModified":"1301901357000","name":"Chiara Mastroianni","type":"Person","_key":"11954"} +{"label":"Kathleen Robertson","version":33,"id":"33676","lastModified":"1301901432000","name":"Kathleen Robertson","type":"Person","_key":"11955"} +{"label":"Sarah Lassez","version":21,"id":"33677","lastModified":"1301901779000","name":"Sarah Lassez","type":"Person","_key":"11956"} +{"label":"Jaason Simmons","version":23,"id":"31633","lastModified":"1301901820000","name":"Jaason Simmons","type":"Person","_key":"11957"} +{"label":"Gregg Araki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18d\/4d52dd235e73d617bd00518d\/gregg-araki-profile.jpg","version":59,"id":"19224","lastModified":"1301901349000","name":"Gregg Araki","type":"Person","_key":"11958"} +{"label":"Trick","description":"The misadventures of two young gay men, trying to find a place to be alone, one night in Manhattan. Gabriel, an aspiring writer of Broadway musicals, meets Mark, a muscled stripper, who picks him up on the subway. They spend the night trying to find somewhere to be alone... forced to contend with Gabriel's selfish roommate, his irritating best friend, and a vicious, jealous drag queen in a gay dance club. The sun rises on a promising new relationship. <br><br><i>Trick<\/i> is a 1999 American inde","id":"1812","runtime":89,"imdbId":"tt0162710","version":116,"lastModified":"1301903985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bc912fa017a3c57fe007138\/trick-mid.jpg","studio":"Good Machine","genre":"Comedy","title":"Trick","releaseDate":932688000000,"language":"en","type":"Movie","_key":"11959"} +{"label":"Tori Spelling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b2\/4d906ba05e73d65f110028b2\/tori-spelling-profile.jpg","version":35,"id":"19149","lastModified":"1301901405000","name":"Tori Spelling","type":"Person","_key":"11960"} +{"label":"Christian Campbell","version":24,"id":"19225","lastModified":"1301902017000","name":"Christian Campbell","type":"Person","_key":"11961"} +{"label":"John Paul Pitoc","version":17,"id":"19226","lastModified":"1301902016000","name":"John Paul Pitoc","type":"Person","_key":"11962"} +{"label":"Brad Beyer","version":19,"id":"19227","lastModified":"1301901974000","name":"Brad Beyer","type":"Person","_key":"11963"} +{"label":"Jim Fall","version":20,"id":"19228","lastModified":"1301901827000","name":"Jim Fall","type":"Person","_key":"11964"} +{"label":"Devil's Advocate","description":"Kevin is a hotshot southern lawyer who gets the opportunity of a lifetime when he is offered a job with a law firm that promises many opportunities. He takes his wife to the Big Apple in hopes of a better life and a good job. But he only finds himself on the receiving end of trouble when he realises his boss is the Devil himself and has some treacherous plans up his sleeve for Kevin.","id":"1813","runtime":144,"imdbId":"tt0118971","trailer":"http:\/\/www.youtube.com\/watch?v=LpkTjtmuNA4","version":228,"lastModified":"1301901265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4bc912fb017a3c57fe007145\/the-devil-s-advocate-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Devil's Advocate","releaseDate":877046400000,"language":"en","tagline":"The newest attorney at the world's most powerful law firm has never lost a case. But he's about to lose his soul.","type":"Movie","_key":"11965"} +{"label":"Judith Ivey","version":31,"id":"19239","lastModified":"1301901980000","name":"Judith Ivey","type":"Person","_key":"11966"} +{"label":"Schr\u00f6ders wunderbare Welt","description":"No overview found.","id":"1814","runtime":114,"imdbId":"tt0496566","homepage":"http:\/\/www.schroederswunderbarewelt-derfilm.de","version":40,"lastModified":"1301904479000","studio":"filmkombinat Nordost GmbH & Co. KG","genre":"Comedy","title":"Schr\u00f6ders wunderbare Welt","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"11967"} +{"label":"Peter Schneider","version":18,"id":"19230","lastModified":"1301901405000","name":"Peter Schneider","type":"Person","_key":"11968"} +{"label":"Karl-Fred M\u00fcller","version":19,"id":"19231","lastModified":"1301901501000","name":"Karl-Fred M\u00fcller","type":"Person","_key":"11969"} +{"label":"Gitta Schweigh\u00f6fer","version":21,"id":"19232","lastModified":"1301901354000","name":"Gitta Schweigh\u00f6fer","type":"Person","_key":"11970"} +{"label":"Eva-Maria Hagen","version":21,"id":"19234","lastModified":"1301901797000","name":"Eva-Maria Hagen","type":"Person","_key":"11971"} +{"label":"Clemens Deindl","version":16,"id":"19233","lastModified":"1301903111000","name":"Clemens Deindl","type":"Person","_key":"11972"} +{"label":"Gerhard Olschewski","version":19,"id":"19235","lastModified":"1301901683000","name":"Gerhard Olschewski","type":"Person","_key":"11973"} +{"label":"Michael Schorr","version":22,"id":"19236","lastModified":"1301901663000","name":"Michael Schorr","type":"Person","_key":"11974"} +{"label":"The Big Sleep","description":"The classic Raymond Chandler tale retold with Mitchum taking over the Bogart role.","id":"1815","runtime":100,"imdbId":"tt0077234","version":101,"lastModified":"1301903716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8e\/4be7c081017a3c35c1000d8e\/the-big-sleep-mid.jpg","studio":"Incorporated Television Company","genre":"Crime","title":"The Big Sleep","releaseDate":295833600000,"language":"en","type":"Movie","_key":"11975"} +{"label":"Michael Winner","version":56,"id":"19244","lastModified":"1301901449000","name":"Michael Winner","type":"Person","_key":"11976"} +{"label":"A Chorus Line","description":"Broadway's celebratory musical about rejection makes it to the screen in a fizzless adaptation by Richard Attenborough that misses the whole point of the Broadway show","id":"1816","runtime":113,"imdbId":"tt0088915","version":180,"lastModified":"1301902769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/158\/4bc91301017a3c57fe007158\/a-chorus-line-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Drama","title":"A Chorus Line","releaseDate":503020800000,"language":"en","type":"Movie","_key":"11977"} +{"label":"Vicki Frederick","version":21,"id":"19256","lastModified":"1301901432000","name":"Vicki Frederick","type":"Person","_key":"11978"} +{"label":"Janet Jones","version":19,"id":"19257","lastModified":"1301901683000","name":"Janet Jones","type":"Person","_key":"11979"} +{"label":"Yamil Borges","version":16,"id":"19258","lastModified":"1301901624000","name":"Yamil Borges","type":"Person","_key":"11980"} +{"label":"Jan Gan Boyd","version":17,"id":"19259","lastModified":"1301901683000","name":"Jan Gan Boyd","type":"Person","_key":"11981"} +{"label":"Terrence Mann","version":26,"id":"19260","lastModified":"1301901215000","name":"Terrence Mann","type":"Person","_key":"11982"} +{"label":"Matt West","version":16,"id":"19261","lastModified":"1301901749000","name":"Matt West","type":"Person","_key":"11983"} +{"label":"Alyson Reed","version":17,"id":"19262","lastModified":"1301901542000","name":"Alyson Reed","type":"Person","_key":"11984"} +{"label":"Charles McGowan","version":15,"id":"19263","lastModified":"1301903110000","name":"Charles McGowan","type":"Person","_key":"11985"} +{"label":"Peter Fitzgerald","version":15,"id":"19264","lastModified":"1301903110000","name":"Peter Fitzgerald","type":"Person","_key":"11986"} +{"label":"Khandi Alexander","version":26,"id":"19265","lastModified":"1301901787000","name":"Khandi Alexander","type":"Person","_key":"11987"} +{"label":"Gregg Burge","version":14,"id":"180711","lastModified":"1301903291000","name":"Gregg Burge","type":"Person","_key":"11988"} +{"label":"Phone Booth","description":"A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding. ","id":"1817","runtime":81,"imdbId":"tt0183649","trailer":"http:\/\/www.youtube.com\/watch?v=p07lBCfC2q8","version":203,"lastModified":"1301902926000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16e\/4bc91302017a3c57fe00716e\/phone-booth-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"Phone Booth","releaseDate":1031616000000,"language":"en","type":"Movie","_key":"11989"} +{"label":"Paula Jai Parker","version":27,"id":"45245","lastModified":"1301975038000","name":"Paula Jai Parker","type":"Person","_key":"11990"} +{"label":"Shoot the Piano Player","description":"Charlie Kohler is a piano player in a bar. The waitress Lena is in love with him. One of Charlie's brother, Chico, a crook, takes refuge in the bar because he is chased by two gangsters, Momo and Ernest. We will discover that Charlie's real name is Edouard Saroyan, once a virtuose who gives up after his wife's suicide. Charlie now has to deal wih Chico, Ernest, Momo, Fido (his youngest brother who lives with him), and Lena...","id":"1818","runtime":82,"imdbId":"tt0054389","trailer":"http:\/\/www.youtube.com\/watch?v=tjd6Eg9APAs","version":253,"lastModified":"1302002085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/181\/4bc91304017a3c57fe007181\/tirez-sur-le-pianiste-mid.jpg","studio":"Les Films de la Pl\u00e9iade","genre":"Crime","title":"Shoot the Piano Player","releaseDate":-290217600000,"language":"en","type":"Movie","_key":"11991"} +{"label":"Nicole Berger","version":19,"id":"19269","lastModified":"1301901836000","name":"Nicole Berger","type":"Person","_key":"11992"} +{"label":"Mich\u00e8le Mercier","version":32,"id":"19270","lastModified":"1301901469000","name":"Mich\u00e8le Mercier","type":"Person","_key":"11993"} +{"label":"Serge Davri","version":19,"id":"148302","lastModified":"1301903084000","name":"Serge Davri","type":"Person","_key":"11994"} +{"label":"Richard Kanayan","version":15,"id":"150939","lastModified":"1301903128000","name":"Richard Kanayan","type":"Person","_key":"11995"} +{"label":"You, Me and Dupree","description":"After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.","id":"1819","runtime":110,"imdbId":"tt0463034","trailer":"http:\/\/www.youtube.com\/watch?v=TXOrXVbbFSY","homepage":"http:\/\/www.youmeanddupree.com\/","version":596,"lastModified":"1301901879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a61\/4d50b6e97b9aa13ab800ea61\/you-me-and-dupree-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"You, Me and Dupree","releaseDate":1152748800000,"language":"en","tagline":"Two's company. Dupree's a crowd.","type":"Movie","_key":"11996"} +{"label":"Anthony Russo","version":22,"id":"19271","lastModified":"1301901749000","name":"Anthony Russo","type":"Person","_key":"11997"} +{"label":"Joe Russo","version":22,"id":"19272","lastModified":"1301901624000","name":"Joe Russo","type":"Person","_key":"11998"} +{"label":"Seth Rogen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4bed6a40017a3c3c82000005\/seth-rogen-profile.jpg","biography":"Seth Rogen (born April 15, 1982) is a Canadian actor, comedian, voice artist, screenwriter, and film producer. Rogen began his career doing stand-up comedy for four years during his teens, coming in second place in the Vancouver Amateur Comedy Contest in 1998. While still living in his native Vancouver, he landed a supporting role in Freaks and Geeks. Shortly after Rogen moved to Los Angeles for his role, Freaks and Geeks was canceled after one season due to poor ratings. He then got a part on t","version":183,"birthday":"387669600000","id":"19274","birthplace":"Vancouver, British Columbia, Canada","lastModified":"1302049506000","name":"Seth Rogen","type":"Person","_key":"11999"} +{"label":"Amanda Detmer","version":26,"id":"19275","lastModified":"1301901648000","name":"Amanda Detmer","type":"Person","_key":"12000"} +{"label":"Ralph Ting","version":20,"id":"19276","lastModified":"1301901827000","name":"Ralph Ting","type":"Person","_key":"12001"} +{"label":"Todd Stashwick","version":26,"id":"19277","lastModified":"1301901542000","name":"Todd Stashwick","type":"Person","_key":"12002"} +{"label":"Bill Hader","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4bed6ca0017a3c4589000004\/bill-hader-profile.jpg","version":94,"birthday":"266022000000","id":"19278","birthplace":"Tulsa, Oklahoma, U.S.","lastModified":"1301976643000","name":"Bill Hader","type":"Person","_key":"12003"} +{"label":"Lance Armstrong","version":19,"id":"19279","lastModified":"1301901749000","name":"Lance Armstrong","type":"Person","_key":"12004"} +{"label":"Suzanne Ford","version":20,"id":"19280","lastModified":"1301901773000","name":"Suzanne Ford","type":"Person","_key":"12005"} +{"label":"Claudia Choi","version":20,"id":"19281","lastModified":"1301901749000","name":"Claudia Choi","type":"Person","_key":"12006"} +{"label":"50 First Dates","description":"Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again \u2026 and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.","id":"1824","runtime":99,"imdbId":"tt0343660","trailer":"http:\/\/www.youtube.com\/watch?v=ErjP5xMTc8I","version":598,"lastModified":"1301901814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b7\/4c75fab05e73d604170000b7\/50-first-dates-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"50 First Dates","releaseDate":1076630400000,"language":"en","tagline":"Imagine having to win over the girl of your dreams... every friggin' day.","type":"Movie","_key":"12007"} +{"label":"Adam Sandler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4bd5ef20017a3c65890000c8\/adam-sandler-profile.jpg","biography":"Adam Sandler was born on September 9, 1966, in Brooklyn, New York, to Judy and Stanley Sandler. At 17, he took his first step towards becoming a stand-up comedian when he spontaneously took the stage at a Boston comedy club. He found he was a natural comic. He nurtured his talent while at New York University (graduating with a Bachelor of Fine Arts degree in 1991) by performing regularly in clubs and at universities. During his freshman year, he snagged a recurring role as the Huxtable family's ","version":248,"birthday":"-104547600000","id":"19292","birthplace":"Brooklyn, New York, USA","lastModified":"1302065382000","name":"Adam Sandler","type":"Person","_key":"12008"} +{"label":"Rob Schneider","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/601\/4c6e71535e73d65f7b000601\/rob-schneider-profile.jpg","version":121,"id":"60949","lastModified":"1302065383000","name":"Rob Schneider","type":"Person","_key":"12009"} +{"label":"Lusia Strus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5df\/4c6e741a5e73d65f7e0005df\/lusia-strus-profile.jpg","version":30,"id":"19293","birthplace":"Chicago, Illinois, USA","lastModified":"1301901306000","name":"Lusia Strus","type":"Person","_key":"12010"} +{"label":"Blake Clark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e2\/4c6e74725e73d65f790005e2\/blake-clark-profile.jpg","version":39,"birthday":"-754621200000","id":"21485","birthplace":"Macon, Georgia, USA","lastModified":"1301901210000","name":"Blake Clark","type":"Person","_key":"12011"} +{"label":"Peter Segal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/656\/4ca9e9097b9aa17acf000656\/peter-segal-profile.jpg","version":81,"id":"13426","lastModified":"1302065382000","name":"Peter Segal","type":"Person","_key":"12012"} +{"label":"Over the Top","description":"Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money - and the love of the son he abandoned years earlier into the keeping of his his rich, ruthless father-in-law. ","id":"1825","runtime":93,"imdbId":"tt0093692","trailer":"http:\/\/www.youtube.com\/watch?v=1729","version":447,"lastModified":"1301902315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03e\/4c92d2967b9aa1073700003e\/over-the-top-mid.jpg","studio":"Cannon Group","genre":"Action","title":"Over the Top","releaseDate":540172800000,"language":"en","type":"Movie","_key":"12013"} +{"label":"Menahem Golan","version":84,"id":"33008","lastModified":"1301901571000","name":"Menahem Golan","type":"Person","_key":"12014"} +{"label":"Rick Zumwalt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/72b\/4d54d4427b9aa15cf100072b\/rick-zumwalt-profile.jpg","version":27,"id":"33011","lastModified":"1301901581000","name":"Rick Zumwalt","type":"Person","_key":"12015"} +{"label":"David Mendenhall","version":26,"id":"33012","lastModified":"1301901486000","name":"David Mendenhall","type":"Person","_key":"12016"} +{"label":"Bruce Way","version":25,"id":"33013","lastModified":"1301901932000","name":"Bruce Way","type":"Person","_key":"12017"} +{"label":"Sam Scarber","version":33,"id":"33014","lastModified":"1301901785000","name":"Sam Scarber","type":"Person","_key":"12018"} +{"label":"Chris McCarty","version":25,"id":"33015","lastModified":"1301901932000","name":"Chris McCarty","type":"Person","_key":"12019"} +{"label":"Terry Funk","version":27,"id":"33016","lastModified":"1301901646000","name":"Terry Funk","type":"Person","_key":"12020"} +{"label":"Allan Graf","version":29,"id":"33017","lastModified":"1301901636000","name":"Allan Graf","type":"Person","_key":"12021"} +{"label":"Russian Dolls","description":"Five years after their summer together in Barcelona, Xavier, William, Wendy, Martine and Isabelle reunite. ","id":"1826","runtime":129,"imdbId":"tt0409184","version":217,"lastModified":"1301903444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b9\/4bc9130c017a3c57fe0071b9\/les-poupees-russes-mid.jpg","studio":"Ce Qui Me Meut Motion Pictures","genre":"Comedy","title":"Russian Dolls","releaseDate":1118793600000,"language":"en","type":"Movie","_key":"12022"} +{"label":"The Story of Adele H","description":"The story of beautiful Ad\u00e8le Hugo, the second daughter of Victor Hugo, who is devastated by the accidental death of her elder sister. Hugo is living in exile on the island of Guernsey where Ad\u00e8le meets and is seized by an obsessive and unrequited love for a British officer, Lt. Pinson. She follows him to Halifax, Nova Scotia, under the assumed name of Miss Lewly. While in Halifax, he rejects her, but she communicates to her parents that she has married him. Her father urges her to return home, b","id":"1829","runtime":97,"imdbId":"tt0073114","version":126,"lastModified":"1302018610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3e\/4d2772d65e73d626bc001a3e\/l-histoire-d-ad-le-h-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"The Story of Adele H","releaseDate":181958400000,"language":"en","type":"Movie","_key":"12023"} +{"label":"Sylvia Marriott","version":18,"id":"19338","lastModified":"1301901383000","name":"Sylvia Marriott","type":"Person","_key":"12024"} +{"label":"Joseph Blatchley","version":18,"id":"19339","lastModified":"1301901913000","name":"Joseph Blatchley","type":"Person","_key":"12025"} +{"label":"Ruben Dorey","version":18,"id":"19340","lastModified":"1301901542000","name":"Ruben Dorey","type":"Person","_key":"12026"} +{"label":"Ivry Gitlis","version":19,"id":"19341","lastModified":"1301901586000","name":"Ivry Gitlis","type":"Person","_key":"12027"} +{"label":"Lord of War","description":"Yuri Orlov is a globetrotting arms dealer. Through some of the deadliest war zones, Yuri struggles to stay one step ahead of a relentless Interpol agent, his business rivals, even some of his customers who include many of the world's most notorious dictators. Finally, Yuri must also face his own conscience. ","id":"1830","runtime":122,"imdbId":"tt0399295","trailer":"http:\/\/www.youtube.com\/watch?v=ke79K4bO4P8","version":343,"lastModified":"1301901289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4d40d2bc5e73d65704000231\/lord-of-war-mid.jpg","studio":"Ascendant Pictures","genre":"Action","title":"Lord of War","releaseDate":1126828800000,"language":"en","tagline":"Where there's a will, there's a weapon","type":"Movie","_key":"12028"} +{"label":"Eamonn Walker","version":50,"id":"19299","lastModified":"1301901189000","name":"Eamonn Walker","type":"Person","_key":"12029"} +{"label":"Sammi Rotibi","version":25,"id":"19300","lastModified":"1301901311000","name":"Sammi Rotibi","type":"Person","_key":"12030"} +{"label":"Yevgeni Lazarev","version":29,"id":"19301","lastModified":"1301901240000","name":"Yevgeni Lazarev","type":"Person","_key":"12031"} +{"label":"Tanit Phoenix","version":46,"id":"37769","lastModified":"1301901134000","name":"Tanit Phoenix","type":"Person","_key":"12032"} +{"label":"The Next Best Thing","description":"No overview found.","id":"1831","runtime":108,"imdbId":"tt0156841","version":262,"lastModified":"1301903937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/841\/4cab31ba5e73d643ee000841\/the-next-best-thing-mid.jpg","studio":"Lakeshore Entertainment","genre":"Comedy","title":"The Next Best Thing","releaseDate":952041600000,"language":"en","type":"Movie","_key":"12033"} +{"label":"John Schlesinger","version":45,"id":"19304","lastModified":"1301901253000","name":"John Schlesinger","type":"Person","_key":"12034"} +{"label":"Malcolm Stumpf","version":17,"id":"19306","lastModified":"1301903109000","name":"Malcolm Stumpf","type":"Person","_key":"12035"} +{"label":"Suzanne Krull","version":20,"id":"19307","lastModified":"1301902019000","name":"Suzanne Krull","type":"Person","_key":"12036"} +{"label":"Dogma","description":"The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.","id":"1832","runtime":130,"imdbId":"tt0120655","homepage":"http:\/\/www.dogma-movie.com\/","version":436,"lastModified":"1301901297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4c1aebb15e73d67b0b0000f9\/dogma-mid.jpg","studio":"View Askew Productions","genre":"Comedy","title":"Dogma","releaseDate":942364800000,"language":"en","tagline":"It can be Hell getting into Heaven","type":"Movie","_key":"12037"} +{"label":"Jason Mewes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bbf\/4ca355f05e73d67049000bbf\/jason-mewes-profile.jpg","version":72,"id":"19302","lastModified":"1301901149000","name":"Jason Mewes","type":"Person","_key":"12038"} +{"label":"Alanis Morissette","version":25,"id":"131024","lastModified":"1301902395000","name":"Alanis Morissette","type":"Person","_key":"12039"} +{"label":"Brian O'Halloran","version":48,"id":"23629","lastModified":"1301901249000","name":"Brian O'Halloran","type":"Person","_key":"12040"} +{"label":"Janeane Garofalo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/97c\/4d3e43255e73d622cf00397c\/janeane-garofalo-profile.jpg","version":93,"id":"21197","lastModified":"1302066196000","name":"Janeane Garofalo","type":"Person","_key":"12041"} +{"label":"Walter Flanagan","version":27,"id":"23633","lastModified":"1301901363000","name":"Walter Flanagan","type":"Person","_key":"12042"} +{"label":"Scott Mosier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f61\/4d0d9d885e73d63713000f61\/scott-mosier-profile.jpg","version":87,"id":"20503","lastModified":"1301901214000","name":"Scott Mosier","type":"Person","_key":"12043"} +{"label":"Dwight Ewell","version":26,"id":"20283","lastModified":"1301901417000","name":"Dwight Ewell","type":"Person","_key":"12044"} +{"label":"Rent","description":"This rock opera tells the story of one year in the life of a group of bohemians struggling in modern day East Village New York. The story centers around Mark and Roger, two roommates. While a former tragedy has made Roger numb to life, Mark tries to capture it through his attempts to make a film. In the year that follows, the group deals with love, loss, AIDS, and modern day life.","id":"1833","runtime":135,"imdbId":"tt0294870","trailer":"http:\/\/www.youtube.com\/watch?v=55","homepage":"http:\/\/www.sonypictures.com\/movies\/rent\/","version":491,"lastModified":"1301903002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/207\/4bc9131b017a3c57fe007207\/rent-mid.jpg","studio":"1492 Pictures","genre":"Comedy","title":"Rent","releaseDate":1132704000000,"language":"en","tagline":"No day but today.","type":"Movie","_key":"12045"} +{"label":"Adam Pascal","version":19,"id":"17736","lastModified":"1301903108000","name":"Adam Pascal","type":"Person","_key":"12046"} +{"label":"Jesse L. Martin","version":21,"id":"19392","lastModified":"1301901816000","name":"Jesse L. Martin","type":"Person","_key":"12047"} +{"label":"Wilson Jermaine Heredia","version":17,"id":"19393","lastModified":"1301901671000","name":"Wilson Jermaine Heredia","type":"Person","_key":"12048"} +{"label":"Idina Menzel","version":24,"id":"19394","lastModified":"1301903110000","name":"Idina Menzel","type":"Person","_key":"12049"} +{"label":"Murder, My Sweet","description":"Detective Philip Marlowe (Dick Powell) is hired by hulking Moose Malloy (Mike Mazurki) to locate his old girlfriend that he lost track of while serving time in prison. With each lead he follows, Marlowe encounters lies, larceny, perjury, theft and a beautiful femme fatale (Claire Trevor).","id":"1834","runtime":95,"imdbId":"tt0037101","trailer":"http:\/\/www.youtube.com\/watch?v=hIVAF6AVaSw","version":412,"lastModified":"1301902584000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/210\/4bc9131b017a3c57fe007210\/murder-my-sweet-mid.jpg","studio":"RKO Radio Pictures, Inc.","genre":"Crime","title":"Murder, My Sweet","releaseDate":-790905600000,"language":"en","tagline":"An Original Philip Marlowe Mystery","type":"Movie","_key":"12050"} +{"label":"Edward Dmytryk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c5\/4c3b17757b9aa10ede0002c5\/edward-dmytryk-profile.jpg","biography":"Edward Dmytryk (September 4, 1908 \u2013 July 1, 1999) was an American film director who was amongst the Hollywood Ten, a group of blacklisted film industry professionals who served time in prison for being in contempt of Congress during the McCarthy-era 'red scare'.\n\nAlthough born in Grand Forks, British Columbia, Canada, Dmytryk grew up in San Francisco when his Ukrainian parents moved to the United States. At the age of 31, he became a naturalized citizen.\n\nHis best known films from the pre-McCart","version":58,"birthday":"-1935277200000","id":"64114","birthplace":"Grand Forks, British Columbia","lastModified":"1301901075000","name":"Edward Dmytryk","type":"Person","_key":"12051"} +{"label":"Luciano Sacripanti","version":25,"id":"19324","lastModified":"1301901755000","name":"Luciano Sacripanti","type":"Person","_key":"12052"} +{"label":"Dick Powell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a8\/4bd5e2f6017a3c65800000a8\/dick-powell-profile.jpg","biography":"Richard Ewing \"Dick\" Powell (November 14, 1904 \u2013 January 2, 1963) was an American singer, actor, producer, director and studio boss.\n\nBorn in Mountain View, the seat of Stone County in northern Arkansas, Powell attended the former Little Rock College in the state capital, before he started his entertainment career as a singer with the Charlie Davis Orchestra, based in the midwest. He recorded a number of records with Davis and on his own, for the Vocalion label in the late 1920s.\n\nPowell moved t","version":56,"birthday":"-2055373200000","id":"19328","birthplace":"Mountain View, Arkansas","lastModified":"1301904096000","name":"Dick Powell","type":"Person","_key":"12053"} +{"label":"Anne Shirley","version":26,"id":"19327","lastModified":"1301901513000","name":"Anne Shirley","type":"Person","_key":"12054"} +{"label":"Miles Mander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4bd5e590017a3c657e0000dd\/miles-mander-profile.jpg","version":44,"id":"19329","lastModified":"1301996123000","name":"Miles Mander","type":"Person","_key":"12055"} +{"label":"Douglas Walton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4f\/4be711fe017a3c35b5000d4f\/douglas-walton-profile.jpg","version":28,"id":"2928","lastModified":"1301901419000","name":"Douglas Walton","type":"Person","_key":"12056"} +{"label":"Donald Douglas","version":31,"id":"96257","lastModified":"1301902205000","name":"Donald Douglas","type":"Person","_key":"12057"} +{"label":"Farewell, My Lovely","description":"Robert Mitchum's first take as Raymond Chandler's detective Philip Marlowe.","id":"1835","runtime":95,"imdbId":"tt0072973","trailer":"http:\/\/www.youtube.com\/watch?v=htf7JgTmjdY","version":157,"lastModified":"1301902982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/219\/4bc9131c017a3c57fe007219\/farewell-my-lovely-mid.jpg","studio":"ITC Entertainment","genre":"Crime","title":"Farewell, My Lovely","releaseDate":176688000000,"language":"en","type":"Movie","_key":"12058"} +{"label":"Dick Richards","version":25,"id":"19333","lastModified":"1301903112000","name":"Dick Richards","type":"Person","_key":"12059"} +{"label":"Sylvia Miles","version":32,"id":"19335","lastModified":"1301901517000","name":"Sylvia Miles","type":"Person","_key":"12060"} +{"label":"Kate Murtagh","version":18,"id":"19337","lastModified":"1301901920000","name":"Kate Murtagh","type":"Person","_key":"12061"} +{"label":"Jack O'Halloran","version":32,"id":"41224","lastModified":"1301901502000","name":"Jack O'Halloran","type":"Person","_key":"12062"} +{"label":"Dans ma Peau","description":"Esther, a self-conscious young woman who works for a public relations firm. One night at a party with her friend, Sandrine (L\u00e9a Drucker), Esther wanders into the backyard and stumbles, scratching her leg on a piece of scrap metal. She goes back to the party, and later realizes that her injury is much more severe than she had thought. There's a huge, ugly gouge all the way up her shin, and she's bleeding profusely. She goes to a doctor, who patches her up and tells her she might need a skin graft","id":"1836","runtime":93,"imdbId":"tt0337961","version":66,"lastModified":"1301903466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/276\/4c1d3a925e73d67b0b000276\/dans-ma-peau-mid.jpg","studio":"Lazennec Productions","genre":"Drama","title":"Dans ma Peau","releaseDate":1038960000000,"language":"en","type":"Movie","_key":"12063"} +{"label":"Marina de Van","version":36,"id":"19359","lastModified":"1301901663000","name":"Marina de Van","type":"Person","_key":"12064"} +{"label":"L\u00e9a Drucker","version":28,"id":"19360","lastModified":"1301901318000","name":"L\u00e9a Drucker","type":"Person","_key":"12065"} +{"label":"Marc Rioufol","version":24,"id":"19362","lastModified":"1301901421000","name":"Marc Rioufol","type":"Person","_key":"12066"} +{"label":"Dominique Reymond","version":25,"id":"19363","lastModified":"1301901402000","name":"Dominique Reymond","type":"Person","_key":"12067"} +{"label":"Le Secret","description":"No overview found.","id":"1837","runtime":107,"imdbId":"tt0227458","version":165,"lastModified":"1302018495000","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Le Secret","releaseDate":973036800000,"language":"en","type":"Movie","_key":"12068"} +{"label":"Virginie Wagon","version":18,"id":"19376","lastModified":"1301903113000","name":"Virginie Wagon","type":"Person","_key":"12069"} +{"label":"Anne Coesens","version":17,"id":"19382","lastModified":"1301902024000","name":"Anne Coesens","type":"Person","_key":"12070"} +{"label":"Michel Bompoil","version":17,"id":"19383","lastModified":"1301903110000","name":"Michel Bompoil","type":"Person","_key":"12071"} +{"label":"Tony Todd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25f\/4d4871a47b9aa13dab00025f\/tony-todd-profile.jpg","version":78,"id":"19384","lastModified":"1301904081000","name":"Tony Todd","type":"Person","_key":"12072"} +{"label":"Quentin Rossi","version":21,"id":"19385","lastModified":"1301901683000","name":"Quentin Rossi","type":"Person","_key":"12073"} +{"label":"Jacqueline Jehanneuf","version":18,"id":"19386","lastModified":"1301903113000","name":"Jacqueline Jehanneuf","type":"Person","_key":"12074"} +{"label":"Aladin Reibel","version":22,"id":"19387","lastModified":"1301901827000","name":"Aladin Reibel","type":"Person","_key":"12075"} +{"label":"Val\u00e9rie Vogt","version":17,"id":"19388","lastModified":"1301901827000","name":"Val\u00e9rie Vogt","type":"Person","_key":"12076"} +{"label":"Fr\u00e9d\u00e9ric Sauzay","version":17,"id":"19389","lastModified":"1301901827000","name":"Fr\u00e9d\u00e9ric Sauzay","type":"Person","_key":"12077"} +{"label":"Natalya Ermilova","version":17,"id":"19390","lastModified":"1301901827000","name":"Natalya Ermilova","type":"Person","_key":"12078"} +{"label":"Charlotte Pradon","version":17,"id":"19391","lastModified":"1301901827000","name":"Charlotte Pradon","type":"Person","_key":"12079"} +{"label":"Dr\u00f8mmen","description":"A drama about a boy who's inspired by Dr. Martin Luther King Jr. and challenges repressive school authority in 1969 Denmark.","id":"1838","runtime":105,"imdbId":"tt0425235","version":61,"lastModified":"1301902431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/222\/4bc9131d017a3c57fe007222\/drmmen-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"Dr\u00f8mmen","releaseDate":1138579200000,"language":"en","type":"Movie","_key":"12080"} +{"label":"Niels Arden Oplev","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13e\/4c1b30325e73d67b0b00013e\/niels-arden-oplev-profile.jpg","version":39,"birthday":"-276742800000","id":"19346","lastModified":"1301901273000","name":"Niels Arden Oplev","type":"Person","_key":"12081"} +{"label":"Sarah Juel Werner","version":23,"id":"19354","lastModified":"1301901341000","name":"Sarah Juel Werner","type":"Person","_key":"12082"} +{"label":"Janus Dissing Rathke","version":18,"id":"19355","lastModified":"1301901827000","name":"Janus Dissing Rathke","type":"Person","_key":"12083"} +{"label":"Elin Reimer","version":19,"id":"19356","lastModified":"1301901942000","name":"Elin Reimer","type":"Person","_key":"12084"} +{"label":"Steen Stig Lommer","version":19,"id":"19357","lastModified":"1301901757000","name":"Steen Stig Lommer","type":"Person","_key":"12085"} +{"label":"Kurt Ravn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/072\/4c1896b75e73d67562000072\/kurt-ravn-profile.jpg","version":22,"id":"19358","lastModified":"1301901989000","name":"Kurt Ravn","type":"Person","_key":"12086"} +{"label":"Alias","description":"No overview found.","id":"1839","runtime":13,"imdbId":"tt0220967","version":89,"lastModified":"1301903465000","studio":"Lazennec Tout Court","genre":"Drama","title":"Alias","releaseDate":915148800000,"language":"en","type":"Movie","_key":"12087"} +{"label":"Caroline Brunner","version":17,"id":"19369","lastModified":"1301901827000","name":"Caroline Brunner","type":"Person","_key":"12088"} +{"label":"Anne Le Ny","version":22,"id":"19370","lastModified":"1301901663000","name":"Anne Le Ny","type":"Person","_key":"12089"} +{"label":"G\u00e9rard Chaillou","version":18,"id":"19371","lastModified":"1301901571000","name":"G\u00e9rard Chaillou","type":"Person","_key":"12090"} +{"label":"Danielle Durou","version":16,"id":"19372","lastModified":"1301903113000","name":"Danielle Durou","type":"Person","_key":"12091"} +{"label":"Charlotte Clamens","version":17,"id":"19373","lastModified":"1301901827000","name":"Charlotte Clamens","type":"Person","_key":"12092"} +{"label":"Patrick Carti\u00e9","version":20,"id":"19374","lastModified":"1301901797000","name":"Patrick Carti\u00e9","type":"Person","_key":"12093"} +{"label":"The Brasher Doubloon","description":"Mrs. Elizabeth Bright Murdock hires Marlowe to find an old rare coin, the Brasher Doubloon, that belonged in her deceased husband's collection. Mrs. Murdock insists that her son's wife has stolen the coin. Marlowe begins investigating, but quickly finds himself entangled in a series of unexplained murders.","id":"1840","runtime":72,"imdbId":"tt0039217","version":63,"lastModified":"1301903716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22b\/4bc91321017a3c57fe00722b\/the-brasher-doubloon-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Crime","title":"The Brasher Doubloon","releaseDate":-722736000000,"language":"en","type":"Movie","_key":"12094"} +{"label":"John Brahm","version":38,"id":"19396","lastModified":"1301901497000","name":"John Brahm","type":"Person","_key":"12095"} +{"label":"Roy Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4c1bbb737b9aa11815000032\/roy-roberts-profile.jpg","version":44,"id":"19400","lastModified":"1301901594000","name":"Roy Roberts","type":"Person","_key":"12096"} +{"label":"George Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4cb381717b9aa1345a00002c\/george-montgomery-profile.jpg","version":30,"id":"19401","lastModified":"1301903111000","name":"George Montgomery","type":"Person","_key":"12097"} +{"label":"Nancy Guild","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4c1bc1a17b9aa117c8000042\/nancy-guild-profile.jpg","version":18,"id":"19402","lastModified":"1301901697000","name":"Nancy Guild","type":"Person","_key":"12098"} +{"label":"Conrad Janis","version":19,"id":"19403","lastModified":"1301901749000","name":"Conrad Janis","type":"Person","_key":"12099"} +{"label":"Marvin Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4ca635447b9aa17acf00002a\/marvin-miller-profile.jpg","version":25,"id":"19404","lastModified":"1301901662000","name":"Marvin Miller","type":"Person","_key":"12100"} +{"label":"The Lady in the Lake","description":"Private detective Philip Marlowe is asked by a publishing executive, Adrienne Fromsett, to locate the wife of her boss, publisher Derace Kingsby. Earlier she had sent her husband a telegram saying she was heading to Mexico to marry Chris Lavery. However Kingsby had recently seen Lavery in the neighbouring Bay City. Marlowe pursues his investigation at the Kingsby's lakeside cottage.","id":"1841","runtime":105,"imdbId":"tt0039545","trailer":"http:\/\/www.youtube.com\/watch?v=lu1yBpO5cwE","version":74,"lastModified":"1301903159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4bc91323017a3c57fe007238\/the-lady-in-the-lake-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"The Lady in the Lake","releaseDate":-723945600000,"language":"en","type":"Movie","_key":"12101"} +{"label":"Robert Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aac\/4c0c23f6017a3c7e8f000aac\/robert-montgomery-profile.jpg","version":36,"id":"19406","lastModified":"1301901228000","name":"Robert Montgomery","type":"Person","_key":"12102"} +{"label":"Audrey Totter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33c\/4bd1f4ba017a3c63f300033c\/audrey-totter-profile.jpg","version":32,"id":"19413","lastModified":"1301901246000","name":"Audrey Totter","type":"Person","_key":"12103"} +{"label":"Lloyd Nolan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/100\/4bd708c6017a3c21e9000100\/lloyd-nolan-profile.jpg","version":43,"id":"19411","lastModified":"1301901175000","name":"Lloyd Nolan","type":"Person","_key":"12104"} +{"label":"Tom Tully","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36f\/4c0548db017a3c7e9200036f\/tom-tully-profile.jpg","version":31,"id":"19414","lastModified":"1301901105000","name":"Tom Tully","type":"Person","_key":"12105"} +{"label":"Jayne Meadows","version":23,"id":"19415","lastModified":"1301903109000","name":"Jayne Meadows","type":"Person","_key":"12106"} +{"label":"Dick Simmons","version":18,"id":"19410","lastModified":"1301901940000","name":"Dick Simmons","type":"Person","_key":"12107"} +{"label":"Ellay Mort","version":16,"id":"19412","lastModified":"1301901913000","name":"Ellay Mort","type":"Person","_key":"12108"} +{"label":"The Legend of Boggy Creek","description":"A documentary-style drama based on true accounts of the Fouke Monster in Arkansas. It focuses on the lives of back country people and their culture while detailing certain sightings of the monster. This title was a drive-in B movie favorite for it's time.","id":"1842","runtime":90,"imdbId":"tt0068837","version":426,"lastModified":"1301904859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4d8506375e73d653aa00302a\/the-legend-of-boggy-creek-mid.jpg","genre":"Horror","title":"The Legend of Boggy Creek","releaseDate":81475200000,"language":"en","type":"Movie","_key":"12109"} +{"label":"Charles B. Pierce","version":31,"id":"66224","lastModified":"1301902205000","name":"Charles B. Pierce","type":"Person","_key":"12110"} +{"label":"DiG!","description":"A documentary on the once promising American rock bands The Brian Jonestown Massacre and The Dandy Warhols. The friendship between respective founders, Anton Newcombe and Courtney Taylor, escalated into bitter rivalry as the Dandy Warhols garner major international success while the Brian Jonestown Massacre imploded in a haze of drugs.","id":"1843","runtime":107,"imdbId":"tt0388888","homepage":"http:\/\/www.palmpictures.com\/film\/dig-.php","version":322,"lastModified":"1301903716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4bc91324017a3c57fe007241\/dig-mid.jpg","genre":"Documentary","title":"DiG!","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"12111"} +{"label":"Ondi Timoner","version":24,"id":"19416","lastModified":"1301903109000","name":"Ondi Timoner","type":"Person","_key":"12112"} +{"label":"The Brian Jonestown Massacre","version":18,"id":"19417","lastModified":"1301901501000","name":"The Brian Jonestown Massacre","type":"Person","_key":"12113"} +{"label":"Entrapment","description":"When retired thief Robert \"Mac\" MacDougal is implicated in the disappearance of a priceless painting, insurance investigator Virginia \"Gin\" Baker sets a trap to catch her suspect. But Gin is not exactly who she seems. Soon, she and Mac have joined forces to pull off -- quite literally -- the heist of the millennium.","id":"1844","runtime":113,"imdbId":"tt0137494","trailer":"http:\/\/www.youtube.com\/watch?v=v6H_xboBE","version":830,"lastModified":"1301901776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/926\/4d35c98d7b9aa17a4500a926\/entrapment-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Entrapment","releaseDate":925344000000,"language":"en","tagline":"The trap is set.","type":"Movie","_key":"12114"} +{"label":"2 Days in Paris","description":"Adam Goldberg delivers \"an uproarious study in transatlantic culture panic\" as Jack, an anxious, hypochondriac-prone New Yorker vacationing throughout Europe with his breezy, free-spirited Parisian girlfriend, Marion. But when they make a two-day stop in Marion's hometown, the couple's romantic trip takes a turn as Jack is exposed to Marion's sexually perverse and emotionally unstable family.","id":"1845","runtime":96,"imdbId":"tt0841044","trailer":"http:\/\/www.youtube.com\/watch?v=T8raqLzb3rQ","version":285,"lastModified":"1301904062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25c\/4bc91325017a3c57fe00725c\/deux-jours-a-paris-mid.jpg","studio":"3L Filmproduktion GmbH","genre":"Comedy","title":"2 Days in Paris","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"12115"} +{"label":"Adan Jodorowsky","version":23,"id":"19579","lastModified":"1301901355000","name":"Adan Jodorowsky","type":"Person","_key":"12116"} +{"label":"Alexandre Nahon","version":20,"id":"19580","lastModified":"1301901295000","name":"Alexandre Nahon","type":"Person","_key":"12117"} +{"label":"Marlowe","description":"Los Angeles private-eye Philip Marlowe is trying to locate the brother of his new client, a woman named Orfamay Quest. The trail leads to two men who deny any knowledge of the brother's existence. Both are soon killed by an ice pick, so Marlowe deduces that there's much more to this than a simple missing-person case. Marlowe's path crosses that of a blackmailed movie star, Mavis Wald, and her friend, exotic dancer Delores. A mobster sends karate expert Winslow Wong to bust up Marlowe's office an","id":"1846","runtime":95,"imdbId":"tt0064638","trailer":"http:\/\/www.youtube.com\/watch?v=3O5Bq8aj9O8","version":85,"lastModified":"1301904021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26a\/4bc91328017a3c57fe00726a\/marlowe-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Marlowe","releaseDate":-8985600000,"language":"en","type":"Movie","_key":"12118"} +{"label":"Paul Bogart","version":25,"id":"55146","lastModified":"1301901652000","name":"Paul Bogart","type":"Person","_key":"12119"} +{"label":"Gayle Hunnicutt","version":23,"id":"79924","lastModified":"1301901811000","name":"Gayle Hunnicutt","type":"Person","_key":"12120"} +{"label":"Carroll O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4ca39d8a7b9aa16ed700005b\/carroll-o-connor-profile.jpg","version":30,"id":"26512","lastModified":"1301901428000","name":"Carroll O'Connor","type":"Person","_key":"12121"} +{"label":"Sharon Farrell","version":28,"id":"19434","lastModified":"1301901296000","name":"Sharon Farrell","type":"Person","_key":"12122"} +{"label":"H.M. Wynant","version":28,"id":"19435","lastModified":"1301901957000","name":"H.M. Wynant","type":"Person","_key":"12123"} +{"label":"Jackie Coogan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4bd82094017a3c1bfb0000ee\/jackie-coogan-profile.jpg","version":29,"id":"19426","lastModified":"1301901587000","name":"Jackie Coogan","type":"Person","_key":"12124"} +{"label":"Christopher Cary","version":19,"id":"19427","lastModified":"1301901913000","name":"Christopher Cary","type":"Person","_key":"12125"} +{"label":"Bruce Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2df\/4c18cfc15e73d64a250002df\/bruce-lee-profile.jpg","biography":"Bruce Lee (Chinese: \u674e\u5c0f\u9f8d; pinyin: L\u01d0 Xi\u0103ol\u00f3ng, born Lee Jun-fan (Chinese: \u674e\u632f\u85e9; pinyin: L\u01d0 Zh\u00e8nf\u0101n); 27 November 1940 \u2013 20 July 1973) was a martial artist, philosopher, actor, film director, film producer, screenwriter, and founder of the Jeet Kune Do martial arts movement. He is considered one of the most influential martial artists of the 20th century, and a cultural icon.\n\nLee was born in San Francisco, California, to parents of Hong Kong heritage but raised in Hong Kong until his late teens. U","version":80,"birthday":"-918180000000","id":"19429","birthplace":"Hong Kong","lastModified":"1301904071000","name":"Bruce Lee","type":"Person","_key":"12126"} +{"label":"Kenneth Tobey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/286\/4bf17822017a3c320b000286\/kenneth-tobey-profile.jpg","version":45,"id":"103069","lastModified":"1301995822000","name":"Kenneth Tobey","type":"Person","_key":"12127"} +{"label":"The Long Goodbye","description":"Detective Philip Marlowe tries to help a friend who is accused of murdering his wife.","id":"1847","runtime":113,"imdbId":"tt0070334","trailer":"http:\/\/www.youtube.com\/watch?v=GeNyD9UFXHs","version":415,"lastModified":"1301903497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/273\/4bc91329017a3c57fe007273\/the-long-goodbye-mid.jpg","genre":"Crime","title":"The Long Goodbye","releaseDate":100310400000,"language":"en","type":"Movie","_key":"12128"} +{"label":"Nina Van Pallandt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4c8652457b9aa1545f000092\/nina-van-pallandt-profile.jpg","version":29,"id":"41732","lastModified":"1301901823000","name":"Nina Van Pallandt","type":"Person","_key":"12129"} +{"label":"Mark Rydell","version":40,"id":"21958","lastModified":"1301901252000","name":"Mark Rydell","type":"Person","_key":"12130"} +{"label":"Jim Bouton","version":18,"id":"19442","lastModified":"1301901763000","name":"Jim Bouton","type":"Person","_key":"12131"} +{"label":"Warren Berlinger","version":21,"id":"19440","lastModified":"1301901965000","name":"Warren Berlinger","type":"Person","_key":"12132"} +{"label":"Jo Ann Brody","version":18,"id":"19443","lastModified":"1301901763000","name":"Jo Ann Brody","type":"Person","_key":"12133"} +{"label":"Jack Knight","version":18,"id":"19444","lastModified":"1301901927000","name":"Jack Knight","type":"Person","_key":"12134"} +{"label":"Pepe Callahan","version":18,"id":"19445","lastModified":"1301901763000","name":"Pepe Callahan","type":"Person","_key":"12135"} +{"label":"Enrique Lucero","version":24,"id":"19448","lastModified":"1301901803000","name":"Enrique Lucero","type":"Person","_key":"12136"} +{"label":"Vincent Palmieri","version":19,"id":"19446","lastModified":"1301901806000","name":"Vincent Palmieri","type":"Person","_key":"12137"} +{"label":"Pancho C\u00f3rdova","version":20,"id":"19447","lastModified":"1301903113000","name":"Pancho C\u00f3rdova","type":"Person","_key":"12138"} +{"label":"Poddle Springs","description":"No overview found.","id":"1848","runtime":92,"imdbId":"tt0145400","version":49,"lastModified":"1301905011000","studio":"Avnet\/Kerner Productions","genre":"Crime","title":"Poddle Springs","releaseDate":883612800000,"language":"en","type":"Movie","_key":"12139"} +{"label":"Bob Rafelson","version":50,"id":"19450","lastModified":"1301901529000","name":"Bob Rafelson","type":"Person","_key":"12140"} +{"label":"Michael Laskin","version":25,"id":"19454","lastModified":"1302002302000","name":"Michael Laskin","type":"Person","_key":"12141"} +{"label":"Julia Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fb7\/4d4748b95e73d65704003fb7\/julia-campbell-profile.jpg","version":24,"id":"19455","lastModified":"1301902032000","name":"Julia Campbell","type":"Person","_key":"12142"} +{"label":"Nia Peeples","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c12\/4d27b3ab7b9aa134e0001c12\/nia-peeples-profile.jpg","version":34,"id":"19456","lastModified":"1301901501000","name":"Nia Peeples","type":"Person","_key":"12143"} +{"label":"Nine Hours to Rama","description":"No overview found.","id":"1849","runtime":119,"imdbId":"tt0057362","version":80,"lastModified":"1301906640000","studio":"Red Lion","genre":"Crime","title":"Nine Hours to Rama","releaseDate":-210643200000,"language":"en","type":"Movie","_key":"12144"} +{"label":"Mark Robson","version":52,"id":"19457","lastModified":"1301901323000","name":"Mark Robson","type":"Person","_key":"12145"} +{"label":"Valerie Gearon","version":18,"id":"19461","lastModified":"1301901974000","name":"Valerie Gearon","type":"Person","_key":"12146"} +{"label":"Don Borisenko","version":17,"id":"19462","lastModified":"1301901663000","name":"Don Borisenko","type":"Person","_key":"12147"} +{"label":"Harry Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e11\/4c6942c67b9aa172d9000e11\/harry-andrews-profile.jpg","version":50,"id":"19463","lastModified":"1301901216000","name":"Harry Andrews","type":"Person","_key":"12148"} +{"label":"Man on the Moon","description":"A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.","id":"1850","runtime":118,"imdbId":"tt0125664","trailer":"http:\/\/www.youtube.com\/watch?v=LER9pt-hFLM","homepage":"http:\/\/www.universalpictures.com\/manonthemoon\/","version":543,"lastModified":"1302057847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/280\/4bc9132a017a3c57fe007280\/man-on-the-moon-mid.jpg","studio":"Jersey Films","genre":"Comedy","title":"Man on the Moon","releaseDate":945820800000,"language":"en","tagline":"Hello, my name is Andy and this is my movie.","type":"Movie","_key":"12149"} +{"label":"Bob Zmuda","version":21,"id":"25336","lastModified":"1301901478000","name":"Bob Zmuda","type":"Person","_key":"12150"} +{"label":"Leslie Lyles","version":18,"id":"19469","lastModified":"1301901478000","name":"Leslie Lyles","type":"Person","_key":"12151"} +{"label":"Greyson Erik Pendry","version":18,"id":"19470","lastModified":"1301901383000","name":"Greyson Erik Pendry","type":"Person","_key":"12152"} +{"label":"George Shapiro","version":18,"id":"19471","lastModified":"1301901432000","name":"George Shapiro","type":"Person","_key":"12153"} +{"label":"The Amanzing Captain Nemo","description":"No overview found.","id":"1851","runtime":98,"imdbId":"tt0077156","version":59,"lastModified":"1301904692000","studio":"Warner Bros. Pictures","genre":"Fantasy","title":"The Amanzing Captain Nemo","releaseDate":252460800000,"language":"en","type":"Movie","_key":"12154"} +{"label":"Alex March","version":16,"id":"19473","lastModified":"1301901629000","name":"Alex March","type":"Person","_key":"12155"} +{"label":"Med Flory","version":17,"id":"19483","lastModified":"1301901920000","name":"Med Flory","type":"Person","_key":"12156"} +{"label":"Burr DeBenning","version":19,"id":"19484","lastModified":"1301901854000","name":"Burr DeBenning","type":"Person","_key":"12157"} +{"label":"Tom Hallick","version":19,"id":"19485","lastModified":"1301902015000","name":"Tom Hallick","type":"Person","_key":"12158"} +{"label":"Yale Summers","version":17,"id":"19486","lastModified":"1301901920000","name":"Yale Summers","type":"Person","_key":"12159"} +{"label":"Lynda Day George","version":22,"id":"100633","lastModified":"1301902350000","name":"Lynda Day George","type":"Person","_key":"12160"} +{"label":"World Trade Center","description":"On September, 11th 2001, after the terrorist attack to the World Trade Center, the building collapses over the rescue team from the Port Authority Police Department. Will Jimeno and his sergeant John McLoughlin are found alive trapped under the wreckage while the rescue teams fight to save them.","id":"1852","runtime":129,"imdbId":"tt0469641","trailer":"http:\/\/www.youtube.com\/watch?v=kU738srDJRY","version":379,"lastModified":"1302056981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/292\/4bc9132f017a3c57fe007292\/world-trade-center-mid.jpg","studio":"Double Feature Films","genre":"Action","title":"World Trade Center","releaseDate":1155081600000,"language":"en","type":"Movie","_key":"12161"} +{"label":"Dorothy Lyman","version":21,"id":"19488","lastModified":"1301901749000","name":"Dorothy Lyman","type":"Person","_key":"12162"} +{"label":"Peter McRobbie","version":19,"id":"19489","lastModified":"1301901542000","name":"Peter McRobbie","type":"Person","_key":"12163"} +{"label":"Wass Stevens","version":19,"id":"19490","lastModified":"1301903109000","name":"Wass Stevens","type":"Person","_key":"12164"} +{"label":"Stephen Dorff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4c6abe7b7b9aa13ab600011a\/stephen-dorff-profile.jpg","version":100,"id":"10822","lastModified":"1301904090000","name":"Stephen Dorff","type":"Person","_key":"12165"} +{"label":"Stoney Westmoreland","version":21,"id":"19491","lastModified":"1301903110000","name":"Stoney Westmoreland","type":"Person","_key":"12166"} +{"label":"Viola Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa1\/4c70dfeb7b9aa13ab9000aa1\/viola-davis-profile.jpg","biography":"<SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><STRONG>Viola Davis<\/STRONG><\/SPAN><SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"> was ","version":92,"id":"19492","lastModified":"1301904095000","name":"Viola Davis","type":"Person","_key":"12167"} +{"label":"Lola Cook","version":18,"id":"19493","lastModified":"1301901624000","name":"Lola Cook","type":"Person","_key":"12168"} +{"label":"Anthony Piccininni","version":18,"id":"19494","lastModified":"1301901624000","name":"Anthony Piccininni","type":"Person","_key":"12169"} +{"label":"Alexa Gerasimovich","version":19,"id":"19495","lastModified":"1301901624000","name":"Alexa Gerasimovich","type":"Person","_key":"12170"} +{"label":"Morgan Flynn","version":18,"id":"19496","lastModified":"1301901624000","name":"Morgan Flynn","type":"Person","_key":"12171"} +{"label":"Armando Riesco","version":18,"id":"19497","lastModified":"1301901624000","name":"Armando Riesco","type":"Person","_key":"12172"} +{"label":"Jon Bernthal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ee\/4cc5ac7c7b9aa138d70024ee\/jon-bernthal-profile.jpg","version":54,"id":"19498","lastModified":"1301901240000","name":"Jon Bernthal","type":"Person","_key":"12173"} +{"label":"In the Realms of the Unreal","description":"In the Realms of the Unreal is a documentary about the reclusive New York artist Henry Darger. Henry Darger was so reclusive that when he died his neighbors were surprised to find a 15,143 page manuscript along with hundreds of paintings depicting The Story of the Vivian Girls, in What is Known as the Realms of the Unreal, of the Glodeco-Angelinnian War Storm, Cased by the Child Slave Rebellion.","id":"1853","runtime":81,"imdbId":"tt0390123","homepage":"http:\/\/opiumpandamonium.com\/realms\/","version":86,"lastModified":"1301905577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ef\/4d923f645e73d622770001ef\/in-the-realms-of-the-unreal-mid.jpg","studio":"Cherry Sky Films","genre":"Documentary","title":"In the Realms of the Unreal","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"12174"} +{"label":"Jessica Yu","version":20,"id":"19509","lastModified":"1301901571000","name":"Jessica Yu","type":"Person","_key":"12175"} +{"label":"Henry Darger","version":17,"id":"19510","lastModified":"1301902016000","name":"Henry Darger","type":"Person","_key":"12176"} +{"label":"Larry Pine","version":23,"id":"19511","lastModified":"1301901355000","name":"Larry Pine","type":"Person","_key":"12177"} +{"label":"Frier McCollister","version":16,"id":"19512","lastModified":"1301903113000","name":"Frier McCollister","type":"Person","_key":"12178"} +{"label":"Wally Wingert","version":20,"id":"19513","lastModified":"1301901785000","name":"Wally Wingert","type":"Person","_key":"12179"} +{"label":"Mary O'Donnell","version":17,"id":"19514","lastModified":"1301901797000","name":"Mary O'Donnell","type":"Person","_key":"12180"} +{"label":"Kiyoko Lerner","version":17,"id":"19515","lastModified":"1301901797000","name":"Kiyoko Lerner","type":"Person","_key":"12181"} +{"label":"...But Johnny!","description":"No overview found.","id":"1854","runtime":95,"imdbId":"tt0069660","version":163,"lastModified":"1301905722000","studio":"Studio Hamburg Filmproduktion","genre":"Comedy","title":"...But Johnny!","releaseDate":94694400000,"language":"en","type":"Movie","_key":"12182"} +{"label":"Alfred Weidenmann","version":22,"id":"19516","lastModified":"1301903112000","name":"Alfred Weidenmann","type":"Person","_key":"12183"} +{"label":"Herbert Reinecker","version":36,"id":"18555","lastModified":"1301901975000","name":"Herbert Reinecker","type":"Person","_key":"12184"} +{"label":"Herbert Fleischmann","version":20,"id":"19520","lastModified":"1301901683000","name":"Herbert Fleischmann","type":"Person","_key":"12185"} +{"label":"Judy Winter","version":20,"id":"19521","lastModified":"1301903110000","name":"Judy Winter","type":"Person","_key":"12186"} +{"label":"Inken Sommer","version":16,"id":"19522","lastModified":"1301903113000","name":"Inken Sommer","type":"Person","_key":"12187"} +{"label":"Monika Lundi","version":17,"id":"19523","lastModified":"1301903113000","name":"Monika Lundi","type":"Person","_key":"12188"} +{"label":"Tilly Lauenstein","version":18,"id":"19524","lastModified":"1301902027000","name":"Tilly Lauenstein","type":"Person","_key":"12189"} +{"label":"Gisela Trowe","version":21,"id":"19525","lastModified":"1301901664000","name":"Gisela Trowe","type":"Person","_key":"12190"} +{"label":"Maria Sebaldt","version":20,"id":"19526","lastModified":"1301901975000","name":"Maria Sebaldt","type":"Person","_key":"12191"} +{"label":"Cervantes","description":"No overview found.","id":"1855","runtime":94,"imdbId":"tt0060227","version":57,"lastModified":"1301905346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/297\/4bc91330017a3c57fe007297\/cervantes-mid.jpg","studio":"Procinex","genre":"Adventure","title":"Cervantes","releaseDate":-68256000000,"language":"en","type":"Movie","_key":"12192"} +{"label":"Vincent Sherman","version":32,"id":"19528","lastModified":"1301903112000","name":"Vincent Sherman","type":"Person","_key":"12193"} +{"label":"Gina Lollobrigida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fd\/4c24ed737b9aa1446d0000fd\/gina-lollobrigida-profile.jpg","version":40,"id":"19534","lastModified":"1301901361000","name":"Gina Lollobrigida","type":"Person","_key":"12194"} +{"label":"Transformers-The Movie","description":"It is the year 2005. The war between The Autobots and Decepticons has escalated all the way to Cybertron, which the Decepticons have reclaimed. The Autobots, without Optimus Prime after a conflict on Earth takes his life, must now face a destiny they know nothing of. Megatron and a group of forsaken Decepticons have been reformed by the ultimate transformer, a planet consuming demon known as Unicron into even deadlier warriors. Now Galvatron, Scourge and Cyclonus must destroy The Autobot Matrix ","id":"1857","runtime":84,"imdbId":"tt0092106","trailer":"http:\/\/www.youtube.com\/watch?v=zaEWLuVJee0","version":687,"lastModified":"1302055317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bd\/4ce860b25e73d6258f0003bd\/the-transformers-the-movie-mid.jpg","studio":"De Laurentiis Entertainment Group (DEG)","genre":"Action","title":"Transformers-The Movie","releaseDate":523843200000,"language":"en","tagline":"One shall stand and one shall fall","type":"Movie","_key":"12195"} +{"label":"Nelson Shin","version":21,"id":"19542","lastModified":"1301901797000","name":"Nelson Shin","type":"Person","_key":"12196"} +{"label":"Jack Angel","version":25,"id":"19545","lastModified":"1301901504000","name":"Jack Angel","type":"Person","_key":"12197"} +{"label":"Michael Bell","version":36,"id":"19546","lastModified":"1301901354000","name":"Michael Bell","type":"Person","_key":"12198"} +{"label":"Gregg Berger","version":37,"id":"19547","lastModified":"1301997171000","name":"Gregg Berger","type":"Person","_key":"12199"} +{"label":"Susan Blu","version":35,"id":"19548","lastModified":"1301901974000","name":"Susan Blu","type":"Person","_key":"12200"} +{"label":"Judd Nelson","version":58,"id":"21624","lastModified":"1301901174000","name":"Judd Nelson","type":"Person","_key":"12201"} +{"label":"Transformers","description":"Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots, the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.","id":"1858","runtime":132,"imdbId":"tt0418279","trailer":"http:\/\/www.youtube.com\/watch?v=4N2YWRJ-ppo","homepage":"http:\/\/www.transformersmovie.com\/","version":1454,"lastModified":"1301929981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/233\/4c9ea5cf5e73d67049000233\/transformers-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Transformers","releaseDate":1183507200000,"language":"en","tagline":"Their war. Our world.","type":"Movie","_key":"12202"} +{"label":"Josh Duhamel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/169\/4bd70da1017a3c21ea000169\/josh-duhamel-profile.jpg","biography":"<P style=\"MARGIN: 0in 0in 10pt; mso-layout-grid-align: none\" class=MsoNormal><FONT size=3><FONT face=Calibri><B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>Joshua David \"Josh\" Duhamel<\/SPAN><\/B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN> (pronounced \/d\u0259\u02c8m\u025bl\/, d\u0259-mel;November 14, 1972) was born in Minot, Nort","version":79,"id":"19536","lastModified":"1301904049000","name":"Josh Duhamel","type":"Person","_key":"12203"} +{"label":"Megan Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37e\/4c022a04017a3c703700137e\/megan-fox-profile.jpg","biography":"Megan Fox is of Irish, French and Native American ancestry and was born on the 16th of May, 1986 in Oak Ridge, Tennessee. Darlene Tonachio and Franklin Fox, Fox's parents divorced when she was young and she and her sister were raised by her mother and her stepfather, Tony Tonachio. She said that the two were \"very strict\" and that she wasn't allowed to have a boyfriend. She lived with her mother until she made enough money to support herself.\n \n Fox began her training in drama and dance at age f","version":102,"birthday":"516578400000","id":"19537","birthplace":"Oakridge, TN","lastModified":"1301904044000","name":"Megan Fox","type":"Person","_key":"12204"} +{"label":"Rachael Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4c3dafd67b9aa13a3c0000bf\/rachael-taylor-profile.jpg","version":45,"id":"19538","lastModified":"1301901103000","name":"Rachael Taylor","type":"Person","_key":"12205"} +{"label":"Peter Cullen","version":49,"id":"19540","lastModified":"1301901220000","name":"Peter Cullen","type":"Person","_key":"12206"} +{"label":"Mark Ryan","version":30,"id":"19541","lastModified":"1301901250000","name":"Mark Ryan","type":"Person","_key":"12207"} +{"label":"Michael O'Neill","version":50,"id":"21710","lastModified":"1301901129000","name":"Michael O'Neill","type":"Person","_key":"12208"} +{"label":"Julie White","version":51,"id":"24305","lastModified":"1301904083000","name":"Julie White","type":"Person","_key":"12209"} +{"label":"Ninotchka","description":"A stern Russian woman sent to Paris on official business finds herself attracted to a man who represents everything she is supposed to detest.","id":"1859","runtime":110,"imdbId":"tt0031725","trailer":"http:\/\/www.youtube.com\/watch?v=3E6rdGulgsc","version":153,"lastModified":"1301905279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/335\/4bc9134f017a3c57fe007335\/ninotchka-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Comedy","title":"Ninotchka","releaseDate":-954288000000,"language":"en","type":"Movie","_key":"12210"} +{"label":"Greta Garbo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/183\/4c24f5637b9aa14470000183\/greta-garbo-profile.jpg","version":31,"id":"19549","lastModified":"1301901292000","name":"Greta Garbo","type":"Person","_key":"12211"} +{"label":"Melvyn Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e4\/4c87c8267b9aa1545d0002e4\/melvyn-douglas-profile.jpg","version":50,"id":"19550","lastModified":"1301901222000","name":"Melvyn Douglas","type":"Person","_key":"12212"} +{"label":"Gregory Gaye","version":23,"id":"19551","lastModified":"1301901850000","name":"Gregory Gaye","type":"Person","_key":"12213"} +{"label":"Rolfe Sedan","version":18,"id":"19552","lastModified":"1301901773000","name":"Rolfe Sedan","type":"Person","_key":"12214"} +{"label":"Richard Carle","version":20,"id":"19553","lastModified":"1301903113000","name":"Richard Carle","type":"Person","_key":"12215"} +{"label":"I skrzypce przestaly grac","description":"No overview found.","id":"1860","runtime":98,"imdbId":"tt0096815","version":55,"lastModified":"1301906175000","genre":"Drama","title":"I skrzypce przestaly grac","releaseDate":567993600000,"language":"en","type":"Movie","_key":"12216"} +{"label":"Alexander Ramati","version":20,"id":"19556","lastModified":"1301901961000","name":"Alexander Ramati","type":"Person","_key":"12217"} +{"label":"Didi Ramati","version":16,"id":"19557","lastModified":"1301903111000","name":"Didi Ramati","type":"Person","_key":"12218"} +{"label":"Maya Ramati","version":17,"id":"19559","lastModified":"1301901961000","name":"Maya Ramati","type":"Person","_key":"12219"} +{"label":"Kasia Siwak","version":20,"id":"19560","lastModified":"1301901676000","name":"Kasia Siwak","type":"Person","_key":"12220"} +{"label":"Bettine Milne","version":17,"id":"19562","lastModified":"1301902016000","name":"Bettine Milne","type":"Person","_key":"12221"} +{"label":"Marcin Tronski","version":16,"id":"19563","lastModified":"1301903110000","name":"Marcin Tronski","type":"Person","_key":"12222"} +{"label":"Marne Maitland","version":28,"id":"67882","lastModified":"1301902220000","name":"Marne Maitland","type":"Person","_key":"12223"} +{"label":"Take The Bridge","description":"Take The Bridge is a 2007 independent film from Sergio M. Castilla about four young adults who all try to commit suicide on the same day and how they meet up and become friends. The film Premiering at the 2007 Tribeca Film Festival. ","id":"1861","runtime":87,"imdbId":"tt0427925","trailer":"http:\/\/www.youtube.com\/watch?v=76","homepage":"http:\/\/takethebridge-movie.com\/","version":92,"lastModified":"1301904969000","studio":"Angel Baby Entertainment","genre":"Drama","title":"Take The Bridge","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"12224"} +{"label":"Adri\u00e1n Castilla","version":17,"id":"19564","lastModified":"1301901686000","name":"Adri\u00e1n Castilla","type":"Person","_key":"12225"} +{"label":"Sergio M. Castilla","version":18,"id":"19565","lastModified":"1301901459000","name":"Sergio M. Castilla","type":"Person","_key":"12226"} +{"label":"Berlin Tunnel 21","description":"No overview found.","id":"1862","runtime":142,"imdbId":"tt0082059","version":77,"lastModified":"1301904574000","genre":"Action","title":"Berlin Tunnel 21","releaseDate":347155200000,"language":"en","type":"Movie","_key":"12227"} +{"label":"Richard Michaels","version":17,"id":"19572","lastModified":"1301901797000","name":"Richard Michaels","type":"Person","_key":"12228"} +{"label":"Robert Freitag","version":27,"id":"19574","lastModified":"1301901532000","name":"Robert Freitag","type":"Person","_key":"12229"} +{"label":"Jacques Breuer","version":17,"id":"19575","lastModified":"1301901833000","name":"Jacques Breuer","type":"Person","_key":"12230"} +{"label":"Richard Thomas","version":28,"id":"19576","lastModified":"1301901405000","name":"Richard Thomas","type":"Person","_key":"12231"} +{"label":"Ute Christensen","version":19,"id":"19577","lastModified":"1301901797000","name":"Ute Christensen","type":"Person","_key":"12232"} +{"label":"I Girasoli","description":"No overview found.","id":"1863","runtime":109,"imdbId":"tt0065782","version":77,"lastModified":"1301903856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54d\/4d47600c7b9aa103c800654d\/i-girasoli-mid.jpg","studio":"Compagnia Cinematografica Champion","genre":"Drama","title":"I Girasoli","releaseDate":22982400000,"language":"en","type":"Movie","_key":"12233"} +{"label":"Lyudmila Savelyeva","version":17,"id":"19584","lastModified":"1301901825000","name":"Lyudmila Savelyeva","type":"Person","_key":"12234"} +{"label":"Galina Andreyeva","version":17,"id":"19583","lastModified":"1301902009000","name":"Galina Andreyeva","type":"Person","_key":"12235"} +{"label":"Germano Longo","version":19,"id":"19585","lastModified":"1302003639000","name":"Germano Longo","type":"Person","_key":"12236"} +{"label":"Anna Carena","version":17,"id":"19586","lastModified":"1301902026000","name":"Anna Carena","type":"Person","_key":"12237"} +{"label":"Hello-Goodbye","description":"A car salesman journeys to France and encounters an apparently lonely woman. He immediately begins to successfully woo her only to learn that she is actually a baron's wife. Fortunately, the baron believes in open marriages and winds up hiring the Englishman to teach his son (from an earlier marriage) everything about automobiles. Meanwhile the car salesman finds himself falling seriously in love with the wife. The baron really doesn't mind as he himself is involved with another.","id":"1864","runtime":101,"imdbId":"tt0065828","version":77,"lastModified":"1301905721000","studio":"20th Century Fox","genre":"Comedy","title":"Hello-Goodbye","releaseDate":24883200000,"language":"en","type":"Movie","_key":"12238"} +{"label":"Jean Negulesco","version":31,"id":"19606","lastModified":"1301901263000","name":"Jean Negulesco","type":"Person","_key":"12239"} +{"label":"Michael Crawford","version":23,"id":"19610","lastModified":"1301901514000","name":"Michael Crawford","type":"Person","_key":"12240"} +{"label":"Peter Myers","version":17,"id":"19611","lastModified":"1301903109000","name":"Peter Myers","type":"Person","_key":"12241"} +{"label":"Ira von F\u00fcrstenberg","version":19,"id":"19612","lastModified":"1301901689000","name":"Ira von F\u00fcrstenberg","type":"Person","_key":"12242"} +{"label":"Mike Marshall","version":31,"id":"19613","lastModified":"1301903109000","name":"Mike Marshall","type":"Person","_key":"12243"} +{"label":"Genevi\u00e8ve Gilles","version":17,"id":"19614","lastModified":"1301901837000","name":"Genevi\u00e8ve Gilles","type":"Person","_key":"12244"} +{"label":"Didier Haudepin","version":19,"id":"19615","lastModified":"1301901830000","name":"Didier Haudepin","type":"Person","_key":"12245"} +{"label":"Lon Satton","version":17,"id":"19617","lastModified":"1301902009000","name":"Lon Satton","type":"Person","_key":"12246"} +{"label":"Pirates of the Caribbean: On Stranger Tides","description":"Captain Jack Sparrow (Depp) crosses paths with a woman from his past (Cruz), and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard (McShane), Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.","id":"1865","imdbId":"tt1298650","trailer":"http:\/\/www.youtube.com\/watch?v=-B7bAaUyvXg","homepage":"http:\/\/disney.go.com\/pirates\/index-on-stranger-tides.html#\/video\/","version":200,"lastModified":"1302051089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01b\/4d7fe0b95e73d6690200001b\/pirates-of-the-caribbean-on-stranger-tides-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Pirates of the Caribbean: On Stranger Tides","releaseDate":1305849600000,"language":"en","type":"Movie","_key":"12247"} +{"label":"Gemma Ward","version":29,"id":"55901","lastModified":"1302050913000","name":"Gemma Ward","type":"Person","_key":"12248"} +{"label":"Keith Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/590\/4ccc38657b9aa16ba0000590\/keith-richards-profile.jpg","version":29,"id":"140507","lastModified":"1302050913000","name":"Keith Richards","type":"Person","_key":"12249"} +{"label":"L`Astragale","description":"No overview found.","id":"1868","runtime":103,"imdbId":"tt0062686","version":56,"lastModified":"1301904479000","studio":"Les Films de la Pl\u00e9iade","genre":"Crime","title":"L`Astragale","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"12250"} +{"label":"Guy Casaril","version":18,"id":"19629","lastModified":"1301901797000","name":"Guy Casaril","type":"Person","_key":"12251"} +{"label":"Georges G\u00e9ret","version":28,"id":"19632","lastModified":"1301903109000","name":"Georges G\u00e9ret","type":"Person","_key":"12252"} +{"label":"Claude G\u00e9nia","version":18,"id":"19633","lastModified":"1301901839000","name":"Claude G\u00e9nia","type":"Person","_key":"12253"} +{"label":"J\u00fcrgen Draeger","version":17,"id":"19634","lastModified":"1301903113000","name":"J\u00fcrgen Draeger","type":"Person","_key":"12254"} +{"label":"Brigitte Grothum","version":19,"id":"19635","lastModified":"1301901839000","name":"Brigitte Grothum","type":"Person","_key":"12255"} +{"label":"Jean-Pierre Moulin","version":17,"id":"19636","lastModified":"1301903113000","name":"Jean-Pierre Moulin","type":"Person","_key":"12256"} +{"label":"Marl\u00e8ne Jobert","version":36,"id":"35000","lastModified":"1301901205000","name":"Marl\u00e8ne Jobert","type":"Person","_key":"12257"} +{"label":"Fantomas Strikes Back","description":"In the second episode of the trilogy Fant\u00f4mas kidnaps distinguished scientist professor Marchand with the aim to develop a super weapon that will enable him to menace the world. Fant\u00f4mas is also planning to abduct a second scientist, professor Lefebvre.","id":"1870","runtime":105,"imdbId":"tt0059168","trailer":"http:\/\/www.youtube.com\/watch?v=ILYL586QI38","version":110,"lastModified":"1301902164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b7\/4d1074747b9aa114880002b7\/fant-mas-se-d-cha-ne-mid.jpg","studio":"Artistes Auteurs Associ\u00e9s (A.A.A.)","genre":"Fantasy","title":"Fantomas Strikes Back","releaseDate":-128304000000,"language":"en","type":"Movie","_key":"12258"} +{"label":"Andr\u00e9 Hunebelle","version":68,"id":"19639","lastModified":"1301901448000","name":"Andr\u00e9 Hunebelle","type":"Person","_key":"12259"} +{"label":"Myl\u00e8ne Demongeot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ab\/4bfac072017a3c70370004ab\/mylene-demongeot-profile.jpg","version":59,"id":"19646","lastModified":"1301952220000","name":"Myl\u00e8ne Demongeot","type":"Person","_key":"12260"} +{"label":"Christian Toma","version":31,"id":"19644","lastModified":"1301903108000","name":"Christian Toma","type":"Person","_key":"12261"} +{"label":"Jacques Dynam","version":43,"id":"19645","lastModified":"1301901547000","name":"Jacques Dynam","type":"Person","_key":"12262"} +{"label":"Marie-H\u00e9l\u00e8ne Arnaud","version":25,"id":"19648","lastModified":"1301901542000","name":"Marie-H\u00e9l\u00e8ne Arnaud","type":"Person","_key":"12263"} +{"label":"Fant\u00f4mas","description":"Fant\u00f4mas is a man of many disguises. He uses maquillage as a weapon. He can impersonate anyone using an array of masks and can create endless confusion by constantly changing his appearance.","id":"1871","runtime":99,"imdbId":"tt0058089","version":121,"lastModified":"1301902429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36b\/4bc91358017a3c57fe00736b\/fantomas-mid.jpg","studio":"Gaumont","genre":"Fantasy","title":"Fant\u00f4mas","releaseDate":-184204800000,"language":"en","type":"Movie","_key":"12264"} +{"label":"Olivier De Fun\u00e8s","version":36,"id":"19653","lastModified":"1301901410000","name":"Olivier De Fun\u00e8s","type":"Person","_key":"12265"} +{"label":"Rise: Blood Hunter","description":"A young reporter (Lucy Liu) wakes up and realises that she is not alive anymore. She goes on a personal vendetta for a group a cultists that are responsible for her death.","id":"1872","runtime":94,"imdbId":"tt0389328","trailer":"http:\/\/www.youtube.com\/watch?v=2_QQkB54Cg0","version":263,"lastModified":"1301903484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/389\/4bc9135e017a3c57fe007389\/rise-blood-hunter-mid.jpg","studio":"Ghost House Pictures","genre":"Action","title":"Rise: Blood Hunter","releaseDate":1177718400000,"language":"en","type":"Movie","_key":"12266"} +{"label":"Michael Chiklis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b2\/4c439d1a5e73d60f370003b2\/michael-chiklis-profile.jpg","version":54,"id":"19654","lastModified":"1301901127000","name":"Michael Chiklis","type":"Person","_key":"12267"} +{"label":"James D'Arcy","version":45,"id":"19655","lastModified":"1301901214000","name":"James D'Arcy","type":"Person","_key":"12268"} +{"label":"Samaire Armstrong","version":26,"id":"19664","lastModified":"1301901447000","name":"Samaire Armstrong","type":"Person","_key":"12269"} +{"label":"Cameron Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/531\/4be0ecbe017a3c35c1000531\/cameron-richardson-profile.jpg","version":36,"id":"49914","lastModified":"1301901414000","name":"Cameron Richardson","type":"Person","_key":"12270"} +{"label":"Sebastian Gutierrez","version":39,"id":"19656","lastModified":"1301901489000","name":"Sebastian Gutierrez","type":"Person","_key":"12271"} +{"label":"Beyond Rangoon","description":"Patricia Arquette stars as American widow Laura Bowman, a young doctor who's unwittingly drawn into political turmoil while vacationing in Burma in the late 1980s, in this fictionalized drama based on actual events. Bowman initially left San Francisco with her sister (Frances McDormand) in an attempt to escape painful memories of her husband and son's violent deaths. But her fight to escape to Thailand could prove just as harrowing.","id":"1873","runtime":0,"imdbId":"tt0112495","version":159,"lastModified":"1301905215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/397\/4bc91360017a3c57fe007397\/beyond-rangoon-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"Beyond Rangoon","releaseDate":801273600000,"language":"en","type":"Movie","_key":"12272"} +{"label":"John Boorman","version":55,"id":"19665","lastModified":"1301901164000","name":"John Boorman","type":"Person","_key":"12273"} +{"label":"U Aung Ko","version":16,"id":"19668","lastModified":"1301901749000","name":"U Aung Ko","type":"Person","_key":"12274"} +{"label":"Tiara Jacquelina","version":16,"id":"19669","lastModified":"1301901749000","name":"Tiara Jacquelina","type":"Person","_key":"12275"} +{"label":"Ann Howard","version":16,"id":"19670","lastModified":"1301901749000","name":"Ann Howard","type":"Person","_key":"12276"} +{"label":"Ye Myint","version":16,"id":"19671","lastModified":"1301901624000","name":"Ye Myint","type":"Person","_key":"12277"} +{"label":"Cho Cho Myint","version":16,"id":"19672","lastModified":"1301901749000","name":"Cho Cho Myint","type":"Person","_key":"12278"} +{"label":"Haji Mohd Rajoli","version":20,"id":"19673","lastModified":"1301901749000","name":"Haji Mohd Rajoli","type":"Person","_key":"12279"} +{"label":"Michael Pickells","version":19,"id":"19674","lastModified":"1301901624000","name":"Michael Pickells","type":"Person","_key":"12280"} +{"label":"Enzo Rossi","version":16,"id":"19675","lastModified":"1301901542000","name":"Enzo Rossi","type":"Person","_key":"12281"} +{"label":"Kuswadinath Bujang","version":17,"id":"19682","lastModified":"1301901683000","name":"Kuswadinath Bujang","type":"Person","_key":"12282"} +{"label":"Johnny Cheah","version":16,"id":"19683","lastModified":"1301901624000","name":"Johnny Cheah","type":"Person","_key":"12283"} +{"label":"Goodbye Bafana","description":"GOODBYE BAFANA is the true story of a white South African racist whose life was profoundly altered by the black prisoner he guarded for twenty years. The prisoner's name was Nelson Mandela.","id":"1874","runtime":140,"imdbId":"tt0438859","homepage":"http:\/\/www.goodbyebafana.com\/","version":233,"lastModified":"1302049245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a0\/4bc91361017a3c57fe0073a0\/goodbye-bafana-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Goodbye Bafana","releaseDate":1171152000000,"language":"en","type":"Movie","_key":"12284"} +{"label":"Bille August","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b75\/4c0ad4a8017a3c3519000b75\/bille-august-profile.jpg","version":40,"id":"19684","lastModified":"1301901416000","name":"Bille August","type":"Person","_key":"12285"} +{"label":"Shiloh Henderson","version":18,"id":"19688","lastModified":"1301901478000","name":"Shiloh Henderson","type":"Person","_key":"12286"} +{"label":"Fantomas Against Scotland Yard","description":"In the third and final episode of the trilogy, Fant\u00f4mas imposes a head tax on the rich, threatening to kill those who do not comply.","id":"1875","runtime":104,"imdbId":"tt0060400","version":91,"lastModified":"1301901889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31b\/4d10b1307b9aa1148e00031b\/fantomas-contre-scotland-yard-mid.jpg","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Fantasy","title":"Fantomas Against Scotland Yard","releaseDate":-88300800000,"language":"en","type":"Movie","_key":"12287"} +{"label":"Fran\u00e7oise Christophe","version":30,"id":"24751","lastModified":"1301901354000","name":"Fran\u00e7oise Christophe","type":"Person","_key":"12288"} +{"label":"Jean-Roger Caussimon","version":25,"id":"36917","lastModified":"1301901857000","name":"Jean-Roger Caussimon","type":"Person","_key":"12289"} +{"label":"The Penalty King","description":"No overview found.","id":"1876","runtime":90,"imdbId":"tt0382222","version":118,"lastModified":"1302048394000","studio":"Maverik Motion Pictures","genre":"Comedy","title":"The Penalty King","releaseDate":1162857600000,"language":"en","type":"Movie","_key":"12290"} +{"label":"Chris Cook","version":19,"id":"19700","lastModified":"1301901797000","name":"Chris Cook","type":"Person","_key":"12291"} +{"label":"Nick Bartlett","version":17,"id":"19704","lastModified":"1301901797000","name":"Nick Bartlett","type":"Person","_key":"12292"} +{"label":"Patrick Micallef","version":16,"id":"19705","lastModified":"1301903110000","name":"Patrick Micallef","type":"Person","_key":"12293"} +{"label":"Jane Peachey","version":16,"id":"19706","lastModified":"1301903110000","name":"Jane Peachey","type":"Person","_key":"12294"} +{"label":"Frank Jarvis","version":17,"id":"19719","lastModified":"1301901974000","name":"Frank Jarvis","type":"Person","_key":"12295"} +{"label":"Tara Keatley","version":17,"id":"19720","lastModified":"1301901974000","name":"Tara Keatley","type":"Person","_key":"12296"} +{"label":"Dr. Mordrid","description":"No overview found.","id":"1877","runtime":72,"imdbId":"tt0104115","version":59,"lastModified":"1301904725000","genre":"Action","title":"Dr. Mordrid","releaseDate":752198400000,"language":"en","type":"Movie","_key":"12297"} +{"label":"Albert Band","version":35,"id":"19708","lastModified":"1301901714000","name":"Albert Band","type":"Person","_key":"12298"} +{"label":"Alfredo Antonio","version":21,"id":"19709","lastModified":"1301902016000","name":"Alfredo Antonio","type":"Person","_key":"12299"} +{"label":"Charles Band","version":91,"id":"19707","lastModified":"1301901407000","name":"Charles Band","type":"Person","_key":"12300"} +{"label":"Keith Coulouris","version":17,"id":"19717","lastModified":"1301902016000","name":"Keith Coulouris","type":"Person","_key":"12301"} +{"label":"Jay Acovone","version":25,"id":"42547","lastModified":"1301901460000","name":"Jay Acovone","type":"Person","_key":"12302"} +{"label":"Ritch Brinkley","version":19,"id":"22134","lastModified":"1301903117000","name":"Ritch Brinkley","type":"Person","_key":"12303"} +{"label":"Yvette Nipar","version":27,"id":"44149","lastModified":"1301901563000","name":"Yvette Nipar","type":"Person","_key":"12304"} +{"label":"Fear and Loathing in Las Vegas","description":"The hallucinogenic misadventures of sportswriter Raoul Duke and his Samoan lawyer, Dr. Gonzo, on a three-day romp from Los Angeles to Las Vegas. Motoring across the Mojave Desert on the way to Sin City, Duke and his purple haze passenger ingest a cornucopia of drugs ranging from acid to ether.","id":"1878","runtime":118,"imdbId":"tt0120669","trailer":"http:\/\/www.youtube.com\/watch?v=_d0hEzXrWT4","version":393,"lastModified":"1301900895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/716\/4d48bdf27b9aa13da1000716\/fear-and-loathing-in-las-vegas-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Fear and Loathing in Las Vegas","releaseDate":895795200000,"language":"en","tagline":"Buy the ticket, take the ride.","type":"Movie","_key":"12305"} +{"label":"Mark Harmon","version":54,"birthday":"-596250000000","id":"19728","birthplace":"Burbank, California, USA","lastModified":"1302059466000","name":"Mark Harmon","type":"Person","_key":"12306"} +{"label":"Penn Jillette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/62d\/4c6ebf5d5e73d65f7a00062d\/penn-jillette-profile.jpg","version":43,"id":"37221","lastModified":"1302059467000","name":"Penn Jillette","type":"Person","_key":"12307"} +{"label":"Lyle Lovett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4c9df6845e73d6704d000134\/lyle-lovett-profile.jpg","version":43,"id":"11059","lastModified":"1302059467000","name":"Lyle Lovett","type":"Person","_key":"12308"} +{"label":"Laraine Newman","version":39,"id":"35159","lastModified":"1302059467000","name":"Laraine Newman","type":"Person","_key":"12309"} +{"label":"Tim Thomerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e4f\/4cbcfe9f5e73d67786000e4f\/tim-thomerson-profile.jpg","version":72,"id":"29712","lastModified":"1302059467000","name":"Tim Thomerson","type":"Person","_key":"12310"} +{"label":"Guess Who's Coming to Dinner","description":"Matt and Christina Drayton are a couple whose attitudes are challenged when their daughter brings home a fianc\u00e9 who is black.","id":"1879","runtime":108,"imdbId":"tt0061735","version":170,"lastModified":"1301903940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/236\/4c052e48017a3c33d9000236\/guess-who-s-coming-to-dinner-mid.jpg","studio":"Stanley Kramer Productions","genre":"Comedy","title":"Guess Who's Coming to Dinner","releaseDate":-64972800000,"language":"en","type":"Movie","_key":"12311"} +{"label":"Katharine Houghton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a37\/4d276c3f7b9aa134cb001a37\/katharine-houghton-profile.jpg","version":29,"id":"19729","lastModified":"1301901151000","name":"Katharine Houghton","type":"Person","_key":"12312"} +{"label":"Isabel Sanford","version":20,"id":"21009","lastModified":"1301901826000","name":"Isabel Sanford","type":"Person","_key":"12313"} +{"label":"Alexandra Hay","version":19,"id":"21010","lastModified":"1301901976000","name":"Alexandra Hay","type":"Person","_key":"12314"} +{"label":"Red Dawn","description":"It is the mid-1980s. From out of the sky, Soviet & Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school & sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols & bows and arrows, the teens struggles to survive the bitter winter & Soviet KGB patrols hunting for them.","id":"1880","runtime":114,"imdbId":"tt0087985","trailer":"http:\/\/www.youtube.com\/watch?v=1_I4WgBfETc","version":204,"lastModified":"1301902243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c1\/4beded25017a3c45940000c1\/red-dawn-mid.jpg","studio":"United Artists","genre":"Action","title":"Red Dawn","releaseDate":460944000000,"language":"en","type":"Movie","_key":"12315"} +{"label":"Brad Savage","version":20,"id":"19737","lastModified":"1301901996000","name":"Brad Savage","type":"Person","_key":"12316"} +{"label":"John Milius","version":72,"id":"8328","lastModified":"1300041811000","name":"John Milius","type":"Person","_key":"12317"} +{"label":"Les yeux dans les bleus","description":"No overview found.","id":"1881","runtime":157,"imdbId":"tt0309093","version":43,"lastModified":"1301906707000","genre":"Documentary","title":"Les yeux dans les bleus","releaseDate":883612800000,"language":"en","type":"Movie","_key":"12318"} +{"label":"St\u00e9phane Meunier","version":16,"id":"19730","lastModified":"1301901945000","name":"St\u00e9phane Meunier","type":"Person","_key":"12319"} +{"label":"Zin\u00e9dine Zidane","version":19,"id":"19731","lastModified":"1301901786000","name":"Zin\u00e9dine Zidane","type":"Person","_key":"12320"} +{"label":"Didier Deschamps","version":16,"id":"19732","lastModified":"1301901945000","name":"Didier Deschamps","type":"Person","_key":"12321"} +{"label":"David Tr\u00e9z\u00e9guet","version":17,"id":"19733","lastModified":"1301901776000","name":"David Tr\u00e9z\u00e9guet","type":"Person","_key":"12322"} +{"label":"Lilian Thuram","version":16,"id":"19734","lastModified":"1301901945000","name":"Lilian Thuram","type":"Person","_key":"12323"} +{"label":"Aim\u00e9 Jacquet","version":17,"id":"19735","lastModified":"1301901983000","name":"Aim\u00e9 Jacquet","type":"Person","_key":"12324"} +{"label":"The Men","description":"No overview found.","id":"1882","runtime":85,"imdbId":"tt0042727","version":85,"lastModified":"1302017981000","studio":"United Artists","genre":"Drama","title":"The Men","releaseDate":-613872000000,"language":"en","type":"Movie","_key":"12325"} +{"label":"Arthur Jurado","version":17,"id":"19738","lastModified":"1301902016000","name":"Arthur Jurado","type":"Person","_key":"12326"} +{"label":"Malcolm X","description":"The biopic of the controversial and influential Black Nationalist leader.","id":"1883","runtime":202,"imdbId":"tt0104797","version":260,"lastModified":"1301902448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40c\/4bc91374017a3c57fe00740c\/malcolm-x-mid.jpg","studio":"40 Acres & a Mule Filmworks","genre":"Drama","title":"Malcolm X","releaseDate":722044800000,"language":"en","type":"Movie","_key":"12327"} +{"label":"Al Freeman Jr.","version":18,"id":"19739","lastModified":"1301901362000","name":"Al Freeman Jr.","type":"Person","_key":"12328"} +{"label":"Kate Vernon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/806\/4d8a794a7b9aa13ae7000806\/kate-vernon-profile.jpg","version":31,"birthday":"-274496400000","id":"19740","birthplace":"Cananda","lastModified":"1301901520000","name":"Kate Vernon","type":"Person","_key":"12329"} +{"label":"The Ewok Adventure","description":"Wicket the Ewok and his friends agree to help two shipwrecked human children on a quest to find their parents.","id":"1884","runtime":96,"imdbId":"tt0087225","version":85,"lastModified":"1301902505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4bc91374017a3c57fe007415\/the-ewok-adventure-mid.jpg","studio":"Lucasfilm","genre":"Adventure","title":"The Ewok Adventure","releaseDate":470188800000,"language":"en","type":"Movie","_key":"12330"} +{"label":"John Korty","version":26,"id":"19744","lastModified":"1301901691000","name":"John Korty","type":"Person","_key":"12331"} +{"label":"Aubree Miller","version":20,"id":"19750","lastModified":"1301901077000","name":"Aubree Miller","type":"Person","_key":"12332"} +{"label":"Daniel Frishman","version":18,"id":"19751","lastModified":"1301901123000","name":"Daniel Frishman","type":"Person","_key":"12333"} +{"label":"Guy Boyd","version":34,"id":"19752","lastModified":"1301901081000","name":"Guy Boyd","type":"Person","_key":"12334"} +{"label":"Debbie Lee Carrington","version":21,"id":"19753","lastModified":"1301901097000","name":"Debbie Lee Carrington","type":"Person","_key":"12335"} +{"label":"Tony Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5a\/4d4ae7d97b9aa13ab8003a5a\/tony-cox-profile.jpg","version":36,"id":"19754","lastModified":"1301975038000","name":"Tony Cox","type":"Person","_key":"12336"} +{"label":"Margarita Fern\u00e1ndez","version":18,"id":"19756","lastModified":"1301901088000","name":"Margarita Fern\u00e1ndez","type":"Person","_key":"12337"} +{"label":"Eric Walker","version":18,"id":"19757","lastModified":"1301901160000","name":"Eric Walker","type":"Person","_key":"12338"} +{"label":"Kevin Thompson","version":25,"id":"53760","lastModified":"1301901082000","name":"Kevin Thompson","type":"Person","_key":"12339"} +{"label":"The Karate Kid","description":"A handyman\/martial arts master agrees to teach a bullied boy karate and shows him that there is more to the martial art than fighting.","id":"1885","runtime":126,"imdbId":"tt0087538","trailer":"http:\/\/www.youtube.com\/watch?v=FOUGf_s4hy4","version":449,"lastModified":"1302046653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ad\/4c96f3b15e73d63a760005ad\/the-karate-kid-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Karate Kid","releaseDate":456710400000,"language":"en","type":"Movie","_key":"12340"} +{"label":"Pat Morita","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4bf8457a017a3c490a00002f\/pat-morita-profile.jpg","version":66,"id":"23915","lastModified":"1301901133000","name":"Pat Morita","type":"Person","_key":"12341"} +{"label":"Randee Heller","version":22,"id":"23916","lastModified":"1301901310000","name":"Randee Heller","type":"Person","_key":"12342"} +{"label":"Chad McQueen","version":25,"id":"23920","lastModified":"1301901816000","name":"Chad McQueen","type":"Person","_key":"12343"} +{"label":"Ron Thomas","version":23,"id":"23918","lastModified":"1301901643000","name":"Ron Thomas","type":"Person","_key":"12344"} +{"label":"Rob Garrison","version":22,"id":"23919","lastModified":"1301901634000","name":"Rob Garrison","type":"Person","_key":"12345"} +{"label":"William Zabka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4bf84883017a3c4905000041\/william-zabka-profile.jpg","version":30,"id":"56124","lastModified":"1301902145000","name":"William Zabka","type":"Person","_key":"12346"} +{"label":"Marie Antoinette","description":"The retelling of France's iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.","id":"1887","runtime":118,"imdbId":"tt0422720","trailer":"http:\/\/www.youtube.com\/watch?v=1828","homepage":"http:\/\/www.sonypictures.com\/homevideo\/marieantoinette\/index.html","version":364,"lastModified":"1302046387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/441\/4bc9137b017a3c57fe007441\/marie-antoinette-mid.jpg","studio":"American Zoetrope","genre":"Action","title":"Marie Antoinette","releaseDate":1148428800000,"language":"en","type":"Movie","_key":"12347"} +{"label":"Mary Nighy","version":21,"id":"19774","lastModified":"1301901496000","name":"Mary Nighy","type":"Person","_key":"12348"} +{"label":"James Lance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/144\/4ceea4e65e73d65318000144\/james-lance-profile.jpg","biography":"James Lance (born 29 September 1975) is a British actor who is best known for his appearances in a number of British comedy series. Lance attended the Sylvia Young Theatre School. He also appeared in the ITV1 mockumentary Moving Wallpaper, ITV1's Boy Meets Girl, as well as the ITV2 original comedy No Heroics as Timebomb.","version":30,"birthday":"181177200000","id":"19775","lastModified":"1301901223000","name":"James Lance","type":"Person","_key":"12349"} +{"label":"Jean-Christophe Bouvet","version":31,"id":"19776","lastModified":"1301901216000","name":"Jean-Christophe Bouvet","type":"Person","_key":"12350"} +{"label":"Florrie Betts","version":18,"id":"19777","lastModified":"1301901624000","name":"Florrie Betts","type":"Person","_key":"12351"} +{"label":"Marianne Faithfull","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a41\/4d172ab05e73d6083e008a41\/marianne-faithfull-profile.jpg","biography":"<P>Daughter of Eva, the Baroness Erisso, and Major Glynn Faithfull, a WWII British spy. Recorded the first song written by Mick Jagger and Keith Richards, \"As Tears Go By\" (1964). Involved in a major drug scandal with Jagger, Richards and others, which ultimately turned public opinion favorably towards the 'Rolling Stones' and other rock groups. In the 70's she became addicted to heroin and was homeless in London's Soho district for a couple of years. Recorded numerous albums in the 80's, while ","version":35,"birthday":"-726109200000","id":"19995","birthplace":"Hampstead, London, England, UK ","lastModified":"1301901190000","name":"Marianne Faithfull","type":"Person","_key":"12352"} +{"label":"Alain Doutey","version":28,"id":"35608","lastModified":"1301901565000","name":"Alain Doutey","type":"Person","_key":"12353"} +{"label":"The Fortune Cookie","description":"A cameraman is knocked over during a football game. His brother in law as the king of the ambulance chasing lawyers starts a suit while he's still knocked out. The cameraman is against it until he hears that his ex-wife will be coming to see him. He pretends to be injured to get her back, but also sees what the strain is doing to the football player who injured him.","id":"1888","runtime":125,"imdbId":"tt0060424","version":201,"lastModified":"1301904051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/446\/4bc9137c017a3c57fe007446\/the-fortune-cookie-mid.jpg","studio":"The Mirisch Corporation","genre":"Comedy","title":"The Fortune Cookie","releaseDate":-101088000000,"language":"en","type":"Movie","_key":"12354"} +{"label":"Ron Rich","version":16,"id":"19779","lastModified":"1301901749000","name":"Ron Rich","type":"Person","_key":"12355"} +{"label":"Judi West","version":16,"id":"19780","lastModified":"1301901542000","name":"Judi West","type":"Person","_key":"12356"} +{"label":"Harry Holcombe","version":15,"id":"19782","lastModified":"1301903114000","name":"Harry Holcombe","type":"Person","_key":"12357"} +{"label":"Marge Redmond","version":22,"id":"19783","lastModified":"1301901624000","name":"Marge Redmond","type":"Person","_key":"12358"} +{"label":"Ann Shoemaker","version":22,"id":"19784","lastModified":"1301903114000","name":"Ann Shoemaker","type":"Person","_key":"12359"} +{"label":"Archie Moore","version":19,"id":"19785","lastModified":"1301901843000","name":"Archie Moore","type":"Person","_key":"12360"} +{"label":"Howard McNear","version":27,"id":"19786","lastModified":"1301901805000","name":"Howard McNear","type":"Person","_key":"12361"} +{"label":"Harry Davis","version":17,"id":"19787","lastModified":"1301901912000","name":"Harry Davis","type":"Person","_key":"12362"} +{"label":"Lauren Gilbert","version":16,"id":"19788","lastModified":"1301901912000","name":"Lauren Gilbert","type":"Person","_key":"12363"} +{"label":"Feu a Volante","description":"No overview found.","id":"1889","runtime":80,"imdbId":"tt0059248","version":47,"lastModified":"1301904271000","genre":"Comedy","title":"Feu a Volante","releaseDate":-145670400000,"language":"en","type":"Movie","_key":"12364"} +{"label":"Marcel Oph\u00fcls","version":19,"id":"19789","lastModified":"1301903110000","name":"Marcel Oph\u00fcls","type":"Person","_key":"12365"} +{"label":"Eddie Constantine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4bd5e27a017a3c65800000a3\/eddie-constantine-profile.jpg","version":33,"id":"19794","lastModified":"1301901689000","name":"Eddie Constantine","type":"Person","_key":"12366"} +{"label":"Laura Valenzuela","version":19,"id":"19796","lastModified":"1301984262000","name":"Laura Valenzuela","type":"Person","_key":"12367"} +{"label":"Luis D\u00e1vila","version":19,"id":"19795","lastModified":"1301902023000","name":"Luis D\u00e1vila","type":"Person","_key":"12368"} +{"label":"Children of a Lesser God","description":"James is a new speech teacher at a school for the deaf. He falls for Sarah, a pupil who decided to stay on at the school rather than venture into the big bad world. She shuns him at first, refusing to read his lips and only using signs. Will her feelings change over time?","id":"1890","runtime":119,"imdbId":"tt0090830","version":231,"lastModified":"1302045635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44b\/4bc9137c017a3c57fe00744b\/children-of-a-lesser-god-mid.png","studio":"Paramount Pictures","genre":"Drama","title":"Children of a Lesser God","releaseDate":528681600000,"language":"en","tagline":"Love has a language all of its own.","type":"Movie","_key":"12369"} +{"label":"Marlee Matlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4c7d876f5e73d648e1000014\/marlee-matlin-profile.jpg","version":28,"birthday":"-139194000000","id":"19797","birthplace":"Morton Grove, Illinois, USA","lastModified":"1301901297000","name":"Marlee Matlin","type":"Person","_key":"12370"} +{"label":"John Limnidis","version":22,"id":"25186","lastModified":"1301901592000","name":"John Limnidis","type":"Person","_key":"12371"} +{"label":"Allison Gompf","version":22,"id":"25187","lastModified":"1301902015000","name":"Allison Gompf","type":"Person","_key":"12372"} +{"label":"John F. Cleary","version":22,"id":"25188","lastModified":"1301902018000","name":"John F. Cleary","type":"Person","_key":"12373"} +{"label":"Philip Holmes","version":22,"id":"25189","lastModified":"1301902033000","name":"Philip Holmes","type":"Person","_key":"12374"} +{"label":"Bob Hiltermann","version":22,"id":"25190","lastModified":"1301902033000","name":"Bob Hiltermann","type":"Person","_key":"12375"} +{"label":"Randa Haines","version":23,"id":"19798","lastModified":"1301901586000","name":"Randa Haines","type":"Person","_key":"12376"} +{"label":"Star Wars: Episode V: The Empire Strikes Back","description":"The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.","id":"1891","runtime":124,"imdbId":"tt0080684","trailer":"http:\/\/www.youtube.com\/watch?v=GD4BQ3Jro-k","version":377,"lastModified":"1301900868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a2\/4bc9138c017a3c57fe0074a2\/star-wars-episode-v-the-empire-strikes-back-mid.jpg","genre":"Action","title":"Star Wars: Episode V: The Empire Strikes Back","releaseDate":327715200000,"language":"en","tagline":"The Adventure Continues...","type":"Movie","_key":"12377"} +{"label":"Irvin Kershner","version":53,"id":"10930","lastModified":"1301933700000","name":"Irvin Kershner","type":"Person","_key":"12378"} +{"label":"Jeremy Bulloch","version":59,"id":"33185","lastModified":"1301901130000","name":"Jeremy Bulloch","type":"Person","_key":"12379"} +{"label":"John Hollis","version":38,"id":"27165","lastModified":"1301901207000","name":"John Hollis","type":"Person","_key":"12380"} +{"label":"Jack Purvis","version":34,"id":"132538","lastModified":"1301901265000","name":"Jack Purvis","type":"Person","_key":"12381"} +{"label":"Des Webb","version":33,"id":"132539","lastModified":"1301901254000","name":"Des Webb","type":"Person","_key":"12382"} +{"label":"Clive Revill","version":46,"id":"20128","lastModified":"1301901184000","name":"Clive Revill","type":"Person","_key":"12383"} +{"label":"Star Wars: Episode III: Revenge of the Sith","description":"(19 Years before Episode IV) Three years after the onset of the Clone Wars, the noble Jedi Knights have been leading a massive clone army into a galaxy-wide battle against the Separatists. When the sinister Sith unveil a thousand-year-old plot to rule the galaxy, the Republic crumbles and from its ashes rises the evil Galactic Empire. Jedi hero Anakin Skywalker is seduced by the dark side of the Force to become the Emperor's new apprentice - Darth Vader. The Jedi are decimated, as Obi-Wan Kenobi","id":"1895","runtime":140,"imdbId":"tt0121766","trailer":"http:\/\/www.youtube.com\/watch?v=xL9wcGO6oBA","homepage":"http:\/\/www.starwars.com\/movies\/episode-iii\/","version":362,"lastModified":"1302039336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f9\/4bc913cc017a3c57fe0075f9\/star-wars-episode-iii-revenge-of-the-sith-mid.jpg","studio":"Lucasfilm","genre":"Fantasy","title":"Star Wars: Episode III: Revenge of the Sith","releaseDate":1116460800000,"language":"en","tagline":"The saga is complete.","type":"Movie","_key":"12384"} +{"label":"David Bowers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/140\/4d335f7a5e73d63356002140\/david-bowers-profile.jpg","version":56,"id":"33183","lastModified":"1301904094000","name":"David Bowers","type":"Person","_key":"12385"} +{"label":"Rohan Nichol","version":40,"id":"33184","lastModified":"1301901272000","name":"Rohan Nichol","type":"Person","_key":"12386"} +{"label":"Salvador","description":"No overview found.","id":"1896","runtime":137,"imdbId":"tt0445691","trailer":"http:\/\/www.youtube.com\/watch?v=89","homepage":"http:\/\/www.salvadorfilm.com\/","version":105,"lastModified":"1301902899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/572\/4d0417e27b9aa11bc0001572\/salvador-mid.jpg","studio":"Mediapro","genre":"Drama","title":"Salvador","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"12387"} +{"label":"Leonardo Sbaraglia","version":43,"id":"19803","lastModified":"1301901315000","name":"Leonardo Sbaraglia","type":"Person","_key":"12388"} +{"label":"Ingrid Rubio","version":23,"id":"19819","lastModified":"1301901604000","name":"Ingrid Rubio","type":"Person","_key":"12389"} +{"label":"Mercedes Sampietro","version":22,"id":"19820","lastModified":"1301901963000","name":"Mercedes Sampietro","type":"Person","_key":"12390"} +{"label":"Olalla Escribano","version":16,"id":"19821","lastModified":"1301901629000","name":"Olalla Escribano","type":"Person","_key":"12391"} +{"label":"Carlota Olcina","version":16,"id":"19822","lastModified":"1301901629000","name":"Carlota Olcina","type":"Person","_key":"12392"} +{"label":"Bea Segura","version":16,"id":"19823","lastModified":"1301901755000","name":"Bea Segura","type":"Person","_key":"12393"} +{"label":"Andrea Ros","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4c4bfc727b9aa1237f00012d\/andrea-ros-profile.jpg","version":22,"id":"19824","lastModified":"1301901516000","name":"Andrea Ros","type":"Person","_key":"12394"} +{"label":"Jacob Torres","version":17,"id":"19825","lastModified":"1301901832000","name":"Jacob Torres","type":"Person","_key":"12395"} +{"label":"Joel Joan","version":20,"id":"19826","lastModified":"1301901714000","name":"Joel Joan","type":"Person","_key":"12396"} +{"label":"Pablo Derqui","version":23,"id":"19827","lastModified":"1301903110000","name":"Pablo Derqui","type":"Person","_key":"12397"} +{"label":"Oriol Vila","version":19,"id":"19828","lastModified":"1301901755000","name":"Oriol Vila","type":"Person","_key":"12398"} +{"label":"Manuel Huerga","version":17,"id":"19804","lastModified":"1301901683000","name":"Manuel Huerga","type":"Person","_key":"12399"} +{"label":"Game Out","description":"No overview found.","id":"1898","runtime":90,"version":108,"lastModified":"1301905346000","genre":"Comedy","title":"Game Out","releaseDate":578448000000,"language":"en","type":"Movie","_key":"12400"} +{"label":"Jacques Rouffio","version":23,"id":"19829","lastModified":"1301901797000","name":"Jacques Rouffio","type":"Person","_key":"12401"} +{"label":"Isabelle de Blonay","version":17,"id":"19830","lastModified":"1301901586000","name":"Isabelle de Blonay","type":"Person","_key":"12402"} +{"label":"Les Filles du Botaniste","description":"No overview found.","id":"1899","runtime":95,"imdbId":"tt0425985","trailer":"http:\/\/www.youtube.com\/watch?v=92","homepage":"http:\/\/www.lesfillesdubotaniste.com\/","version":71,"lastModified":"1301904478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4d6e1c347b9aa12fd1000415\/les-filles-du-botaniste-mid.jpg","studio":"Universum Film","genre":"Drama","title":"Les Filles du Botaniste","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"12403"} +{"label":"Sijie Dai","version":28,"id":"19837","lastModified":"1301901569000","name":"Sijie Dai","type":"Person","_key":"12404"} +{"label":"Myl\u00e8ne Jampano\u00ef","version":36,"id":"20197","lastModified":"1301901119000","name":"Myl\u00e8ne Jampano\u00ef","type":"Person","_key":"12405"} +{"label":"Xiao Ran Li","version":19,"id":"78870","lastModified":"1301902053000","name":"Xiao Ran Li","type":"Person","_key":"12406"} +{"label":"Ling Dong Fu","version":17,"id":"20199","lastModified":"1301901805000","name":"Ling Dong Fu","type":"Person","_key":"12407"} +{"label":"Wei-chang Wang","version":17,"id":"20200","lastModified":"1301901832000","name":"Wei-chang Wang","type":"Person","_key":"12408"} +{"label":"Nhu Quynh Nguyen","version":21,"id":"20201","lastModified":"1301903115000","name":"Nhu Quynh Nguyen","type":"Person","_key":"12409"} +{"label":"Nguyen Van Quang","version":16,"id":"20961","lastModified":"1301903115000","name":"Nguyen Van Quang","type":"Person","_key":"12410"} +{"label":"Linh Thj Bich Thu","version":18,"id":"20962","lastModified":"1301901661000","name":"Linh Thj Bich Thu","type":"Person","_key":"12411"} +{"label":"Yang Jun","version":17,"id":"20963","lastModified":"1301901794000","name":"Yang Jun","type":"Person","_key":"12412"} +{"label":"L\u00ea Tung Linh","version":17,"id":"20964","lastModified":"1301901794000","name":"L\u00ea Tung Linh","type":"Person","_key":"12413"} +{"label":"Chu Hung","version":20,"id":"20965","lastModified":"1301901794000","name":"Chu Hung","type":"Person","_key":"12414"} +{"label":"Tuo Jilin","version":16,"id":"20966","lastModified":"1301903110000","name":"Tuo Jilin","type":"Person","_key":"12415"} +{"label":"Traffic","description":"The movie takes a broad approach to the war on drugs in the USA. It shows the corruption in both Mexico and the USA. Both on a personnal scale as on larger scale. The movie has a lot of storylines, which are tied together slowly.","id":"1900","runtime":147,"imdbId":"tt0181865","trailer":"http:\/\/www.youtube.com\/watch?v=708","version":493,"lastModified":"1302042934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/610\/4bc913d2017a3c57fe007610\/traffic-mid.jpg","studio":"Bedford Falls Productions","genre":"Crime","title":"Traffic","releaseDate":977875200000,"language":"en","type":"Movie","_key":"12416"} +{"label":"Tomas Milian","version":61,"id":"21708","lastModified":"1301901236000","name":"Tomas Milian","type":"Person","_key":"12417"} +{"label":"Russell G. Jones","version":21,"id":"21709","lastModified":"1301903115000","name":"Russell G. Jones","type":"Person","_key":"12418"} +{"label":"Erika Christensen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/510\/4be0f5de017a3c35bf000510\/erika-christensen-profile.jpg","version":43,"id":"21711","lastModified":"1301901179000","name":"Erika Christensen","type":"Person","_key":"12419"} +{"label":"In Good Company","description":"Dan Foreman is a seasoned advertisement sales executive at a high-ranking publication when a corporate takeover results in him being placed under naive supervisor Carter Duryea, who is half his age. Matters are made worse when Dan's new supervisor becomes romantically involved with his daughter an 18 year-old college student Alex.","id":"1901","runtime":109,"imdbId":"tt0385267","version":197,"lastModified":"1302020569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4d\/4d50700e5e73d617ba003b4d\/in-good-company-mid.jpg","studio":"Depth of Field","genre":"Comedy","title":"In Good Company","releaseDate":1104278400000,"language":"en","tagline":"He's rich, young and handsome. He's in love with you and he's your dad's boss.","type":"Movie","_key":"12420"} +{"label":"Marg Helgenberger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04a\/4cdc26e05e73d606e200004a\/marg-helgenberger-profile.jpg","version":44,"id":"19838","lastModified":"1301901242000","name":"Marg Helgenberger","type":"Person","_key":"12421"} +{"label":"Amy Aquino","version":28,"id":"33457","lastModified":"1301901695000","name":"Amy Aquino","type":"Person","_key":"12422"} +{"label":"Open Your Eyes","description":"A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.","id":"1902","runtime":117,"imdbId":"tt0125659","version":184,"lastModified":"1301943078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5d\/4d945d367b9aa11997001c5d\/abre-los-ojos-mid.jpg","studio":"Les Films Alain Sarde","genre":"Drama","title":"Open Your Eyes","releaseDate":882489600000,"language":"en","type":"Movie","_key":"12423"} +{"label":"Alejandro Amen\u00e1bar","version":72,"id":"19840","lastModified":"1301904135000","name":"Alejandro Amen\u00e1bar","type":"Person","_key":"12424"} +{"label":"Chete Lera","version":20,"id":"19849","lastModified":"1301901413000","name":"Chete Lera","type":"Person","_key":"12425"} +{"label":"G\u00e9rard Barray","version":33,"id":"24404","lastModified":"1301901245000","name":"G\u00e9rard Barray","type":"Person","_key":"12426"} +{"label":"Vanilla Sky","description":"A successful publisher finds his life taking a turn for the surreal after a car accident with a jaded lover. ","id":"1903","runtime":130,"imdbId":"tt0259711","version":220,"lastModified":"1302041921000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d0\/4d16a7f55e73d608420087d0\/vanilla-sky-mid.jpg","studio":"Cruise-Wagner Productions","genre":"Drama","title":"Vanilla Sky","releaseDate":1008288000000,"language":"en","tagline":"Forget everything you know, and open your eyes.","type":"Movie","_key":"12427"} +{"label":"Armand Schultz","version":18,"id":"19851","lastModified":"1301903111000","name":"Armand Schultz","type":"Person","_key":"12428"} +{"label":"Memoirs of a Geisha","description":"Based on the internationally acclaimed novel by Arthur Golden, Memoirs of a Geisha is a sweeping romantic epic set in a mysterious and exotic world that still casts a potent spell today. The story begins in the years before WWII when a penniless Japanese child is torn from her family to work as a maid in a geisha house.","id":"1904","runtime":125,"imdbId":"tt0397535","trailer":"http:\/\/www.youtube.com\/watch?v=95","homepage":"http:\/\/www.sonypictures.com\/homevideo\/memoirsofageisha\/index.html","version":304,"lastModified":"1302033039000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2eb\/4d7bba6b7b9aa11a080162eb\/memoirs-of-a-geisha-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Memoirs of a Geisha","releaseDate":1133222400000,"language":"en","tagline":"My world is as forbidden as it is fragile; without its mysteries, it cannot survive.","type":"Movie","_key":"12429"} +{"label":"Suzuka Ohgo","version":24,"id":"19855","lastModified":"1301901484000","name":"Suzuka Ohgo","type":"Person","_key":"12430"} +{"label":"Navia Nguyen","version":22,"id":"19856","lastModified":"1301901633000","name":"Navia Nguyen","type":"Person","_key":"12431"} +{"label":"Kaori Momoi","version":32,"id":"19857","lastModified":"1301901406000","name":"Kaori Momoi","type":"Person","_key":"12432"} +{"label":"Zoe Weizenbaum","version":25,"id":"19858","lastModified":"1301901647000","name":"Zoe Weizenbaum","type":"Person","_key":"12433"} +{"label":"Kenneth Tsang Kong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/322\/4d8a35467b9aa13aea000322\/kenneth-tsang-kong-profile.jpg","version":55,"id":"10885","lastModified":"1301901158000","name":"Kenneth Tsang Kong","type":"Person","_key":"12434"} +{"label":"Samantha Futerman","version":23,"id":"19859","lastModified":"1301901549000","name":"Samantha Futerman","type":"Person","_key":"12435"} +{"label":"Karl Yune","version":23,"id":"19860","lastModified":"1301901553000","name":"Karl Yune","type":"Person","_key":"12436"} +{"label":"Die Bettwurst","description":"No overview found.","id":"1905","runtime":78,"imdbId":"tt0065465","version":38,"lastModified":"1301907438000","title":"Die Bettwurst","releaseDate":31536000000,"language":"en","type":"Movie","_key":"12437"} +{"label":"Dietmar Kracht","version":20,"id":"28629","lastModified":"1301901826000","name":"Dietmar Kracht","type":"Person","_key":"12438"} +{"label":"Luzi Kryn","version":21,"id":"28630","lastModified":"1301902016000","name":"Luzi Kryn","type":"Person","_key":"12439"} +{"label":"Steven Adamczewski","version":18,"id":"28631","lastModified":"1301901459000","name":"Steven Adamczewski","type":"Person","_key":"12440"} +{"label":"Solo Sunny","description":"No overview found.","id":"1906","runtime":100,"imdbId":"tt0079924","version":111,"lastModified":"1302063303000","studio":"DEFA","genre":"Drama","title":"Solo Sunny","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"12441"} +{"label":"Konrad Wolf","version":17,"id":"19865","lastModified":"1301901974000","name":"Konrad Wolf","type":"Person","_key":"12442"} +{"label":"The Beach","description":"British director Danny Boyle, known for the cult movie Trainspotting, makes a movie out of the bestseller and debut novel The Beach by Alex Garland. The movie is set in Thailand and reminds a Lord-of-the-Flies-Story.","id":"1907","runtime":119,"imdbId":"tt0163978","trailer":"http:\/\/www.youtube.com\/watch?v=ObKpwmZkl24","version":191,"lastModified":"1301906831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4d476bfc5e73d6108f0010bf\/the-beach-mid.jpg","studio":"Figment Films","genre":"Action","title":"The Beach","releaseDate":949449600000,"language":"en","tagline":"Somewhere on this planet it must exist.","type":"Movie","_key":"12443"} +{"label":"Guillaume Canet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a7\/4ce2d3667b9aa168b40003a7\/guillaume-canet-profile.jpg","version":80,"id":"19866","lastModified":"1301904090000","name":"Guillaume Canet","type":"Person","_key":"12444"} +{"label":"Staffan Kihlbom","version":23,"id":"19867","lastModified":"1301901478000","name":"Staffan Kihlbom","type":"Person","_key":"12445"} +{"label":"Paterson Joseph","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bf\/4ce2d3c57b9aa168b20003bf\/paterson-joseph-profile.jpg","version":26,"id":"19868","lastModified":"1301901470000","name":"Paterson Joseph","type":"Person","_key":"12446"} +{"label":"Peter Youngblood Hills","version":25,"id":"19869","lastModified":"1301901338000","name":"Peter Youngblood Hills","type":"Person","_key":"12447"} +{"label":"Jerry Swindall","version":24,"id":"19870","lastModified":"1301901586000","name":"Jerry Swindall","type":"Person","_key":"12448"} +{"label":"Lars Arentz-Hansen","version":24,"id":"19871","lastModified":"1301901624000","name":"Lars Arentz-Hansen","type":"Person","_key":"12449"} +{"label":"Magnus Lindgren","version":25,"id":"19873","lastModified":"1301901546000","name":"Magnus Lindgren","type":"Person","_key":"12450"} +{"label":"Daniel York","version":25,"id":"19874","lastModified":"1301901383000","name":"Daniel York","type":"Person","_key":"12451"} +{"label":"Daniel Caltagirone","version":40,"id":"19875","lastModified":"1301901280000","name":"Daniel Caltagirone","type":"Person","_key":"12452"} +{"label":"Zelda Tinska","version":24,"id":"19876","lastModified":"1301901683000","name":"Zelda Tinska","type":"Person","_key":"12453"} +{"label":"Inherit The Wind","description":"This gripping adaptation of the Jerome Lawrence-Robert E. Lee play examines an issue that still causes great controversy: the role religion should play in the schools.","id":"1908","runtime":128,"imdbId":"tt0053946","version":311,"lastModified":"1301904351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4d31fff67b9aa178ab0000e6\/inherit-the-wind-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Inherit The Wind","releaseDate":-294710400000,"language":"en","type":"Movie","_key":"12454"} +{"label":"Dick York","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4ceec7215e73d654f80000fb\/dick-york-profile.jpg","version":21,"id":"19877","lastModified":"1301901707000","name":"Dick York","type":"Person","_key":"12455"} +{"label":"Donna Anderson","version":17,"id":"19878","lastModified":"1301903112000","name":"Donna Anderson","type":"Person","_key":"12456"} +{"label":"Don Juan DeMarco","description":"A young man, masked and capeclad, believes himself to be Don Juan DeMarco, the greatest lover in the world. While undergoing psyciatric treatment for his delusion, he seduces all who surround him.","id":"1909","runtime":97,"imdbId":"tt0112883","version":202,"lastModified":"1301902917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/689\/4bc913e2017a3c57fe007689\/don-juan-demarco-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Don Juan DeMarco","releaseDate":797212800000,"language":"en","type":"Movie","_key":"12457"} +{"label":"G\u00e9raldine Pailhas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ac\/4d1395405e73d608380017ac\/g-raldine-pailhas-profile.jpg","version":40,"id":"19888","lastModified":"1301901161000","name":"G\u00e9raldine Pailhas","type":"Person","_key":"12458"} +{"label":"Bob Dishy","version":22,"id":"19889","lastModified":"1301903108000","name":"Bob Dishy","type":"Person","_key":"12459"} +{"label":"Stephen Singer","version":28,"id":"25214","lastModified":"1301901665000","name":"Stephen Singer","type":"Person","_key":"12460"} +{"label":"Jo Champa","version":23,"id":"25215","lastModified":"1301901567000","name":"Jo Champa","type":"Person","_key":"12461"} +{"label":"Jeremy Leven","version":38,"id":"25210","lastModified":"1301901632000","name":"Jeremy Leven","type":"Person","_key":"12462"} +{"label":"SommerHundeS\u00f6hne","description":"No overview found.","id":"1910","runtime":96,"imdbId":"tt0441795","version":42,"lastModified":"1301905009000","studio":"Friends Production GmbH & Co. Medienproduktions KG","genre":"Comedy","title":"SommerHundeS\u00f6hne","releaseDate":1098748800000,"language":"en","type":"Movie","_key":"12463"} +{"label":"Cyril Tuschi","version":17,"id":"19879","lastModified":"1301901970000","name":"Cyril Tuschi","type":"Person","_key":"12464"} +{"label":"Lilja Loeffler","version":17,"id":"19882","lastModified":"1301901983000","name":"Lilja Loeffler","type":"Person","_key":"12465"} +{"label":"Martin Claussen","version":20,"id":"19883","lastModified":"1301903113000","name":"Martin Claussen","type":"Person","_key":"12466"} +{"label":"Daniela Ziegler","version":17,"id":"19884","lastModified":"1301903112000","name":"Daniela Ziegler","type":"Person","_key":"12467"} +{"label":"Helmut R\u00fchl","version":16,"id":"19885","lastModified":"1301903112000","name":"Helmut R\u00fchl","type":"Person","_key":"12468"} +{"label":"Fernando Guerrero Rebollo","version":17,"id":"19886","lastModified":"1301901970000","name":"Fernando Guerrero Rebollo","type":"Person","_key":"12469"} +{"label":"Hans Pawliczek","version":20,"id":"19887","lastModified":"1301901661000","name":"Hans Pawliczek","type":"Person","_key":"12470"} +{"label":"The 13th Warrior","description":"In AD 922, Arab courtier Ahmad Ibn Fadlan (Antonio Banderas) accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.","id":"1911","runtime":102,"imdbId":"tt0120657","version":151,"lastModified":"1301909062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/355\/4d1d922b5e73d66b2b000355\/the-13th-warrior-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The 13th Warrior","releaseDate":929404800000,"language":"en","type":"Movie","_key":"12471"} +{"label":"Vladimir Kulich","version":21,"id":"19898","lastModified":"1301901542000","name":"Vladimir Kulich","type":"Person","_key":"12472"} +{"label":"Dennis Storh\u00f8i","version":22,"id":"19899","lastModified":"1301901338000","name":"Dennis Storh\u00f8i","type":"Person","_key":"12473"} +{"label":"Daniel Southern","version":21,"id":"19900","lastModified":"1301901749000","name":"Daniel Southern","type":"Person","_key":"12474"} +{"label":"Clive Russell","version":25,"id":"19901","lastModified":"1301901432000","name":"Clive Russell","type":"Person","_key":"12475"} +{"label":"Richard Bremmer","version":25,"id":"19903","lastModified":"1301901624000","name":"Richard Bremmer","type":"Person","_key":"12476"} +{"label":"Free Rainer - Dein Fernseher l\u00fcgt","description":"Der ebenso erfolgreiche wie arrogante Fernsehproduzent Rainer bedient mit Seifenopern, Talkshows und Spielshows wie \u201eHol dir das Superbaby\u201c die Bed\u00fcrfnisse der Zuschauer. Damit sorgt er beim Privatsender TTS f\u00fcr hohe Einschaltquoten, aber die soziale K\u00e4lte in seinem Arbeitsumfeld l\u00e4sst ihn zunehmend verzweifeln, weshalb er versucht, durch den regelm\u00e4\u00dfigen Konsum von Kokain sein Leben zu ertragen.(Excerpt from http:\/\/de.wikipedia.org\/wiki\/Free_Rainer_%E2%80%93_Dein_Fernseher_l%C3%BCgt)","id":"1912","runtime":129,"imdbId":"tt0810868","trailer":"http:\/\/www.youtube.com\/watch?v=9eO6R5un9Yk","homepage":"http:\/\/www.freerainer.de\/","version":88,"lastModified":"1301904024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b7\/4bc913e8017a3c57fe0076b7\/free-rainer-dein-fernseher-lugt-mid.jpg","studio":"Coop 99","genre":"Comedy","title":"Free Rainer - Dein Fernseher l\u00fcgt","releaseDate":1189468800000,"language":"en","type":"Movie","_key":"12477"} +{"label":"Elsa Schulz Gambard","version":18,"id":"35533","lastModified":"1301901410000","name":"Elsa Schulz Gambard","type":"Person","_key":"12478"} +{"label":"Gregor Blo\u00e9b","version":29,"id":"32931","lastModified":"1301901317000","name":"Gregor Blo\u00e9b","type":"Person","_key":"12479"} +{"label":"Milan Peschel","version":27,"id":"24440","lastModified":"1301901446000","name":"Milan Peschel","type":"Person","_key":"12480"} +{"label":"Simone Hanselmann","version":24,"id":"35534","lastModified":"1301901583000","name":"Simone Hanselmann","type":"Person","_key":"12481"} +{"label":"Franziska Knuppe","version":21,"id":"35535","lastModified":"1301901828000","name":"Franziska Knuppe","type":"Person","_key":"12482"} +{"label":"Thorsten Feller","version":20,"id":"19894","lastModified":"1301901629000","name":"Thorsten Feller","type":"Person","_key":"12483"} +{"label":"Vinzenz Kiefer","version":18,"id":"19895","lastModified":"1301903110000","name":"Vinzenz Kiefer","type":"Person","_key":"12484"} +{"label":"Us Conradi","version":21,"id":"35536","lastModified":"1301901837000","name":"Us Conradi","type":"Person","_key":"12485"} +{"label":"Robert Viktor Minich","version":21,"id":"35537","lastModified":"1301901838000","name":"Robert Viktor Minich","type":"Person","_key":"12486"} +{"label":"Ralf Knicker","version":20,"id":"35538","lastModified":"1301901629000","name":"Ralf Knicker","type":"Person","_key":"12487"} +{"label":"Andreas Brandt","version":20,"id":"35539","lastModified":"1301901755000","name":"Andreas Brandt","type":"Person","_key":"12488"} +{"label":"Irshad Panjatan","version":20,"id":"35540","lastModified":"1301901629000","name":"Irshad Panjatan","type":"Person","_key":"12489"} +{"label":"Doris Golpashin","version":18,"id":"35541","lastModified":"1301901805000","name":"Doris Golpashin","type":"Person","_key":"12490"} +{"label":"Peer J\u00e4ger","version":21,"id":"35542","lastModified":"1301901482000","name":"Peer J\u00e4ger","type":"Person","_key":"12491"} +{"label":"Leyli Timner","version":18,"id":"35543","lastModified":"1301901805000","name":"Leyli Timner","type":"Person","_key":"12492"} +{"label":"Finja Martens","version":19,"id":"46309","lastModified":"1301901747000","name":"Finja Martens","type":"Person","_key":"12493"} +{"label":"Islam Ben Arfa","version":20,"id":"46310","lastModified":"1301901755000","name":"Islam Ben Arfa","type":"Person","_key":"12494"} +{"label":"Jonas Laleman","version":29,"id":"46311","lastModified":"1301901641000","name":"Jonas Laleman","type":"Person","_key":"12495"} +{"label":"Eva-Maria Kurz","version":21,"id":"46312","lastModified":"1301902120000","name":"Eva-Maria Kurz","type":"Person","_key":"12496"} +{"label":"Alexander M\u00fcller","version":29,"id":"46313","lastModified":"1301901489000","name":"Alexander M\u00fcller","type":"Person","_key":"12497"} +{"label":"J\u00f6rg Purschke","version":20,"id":"46314","lastModified":"1301901755000","name":"J\u00f6rg Purschke","type":"Person","_key":"12498"} +{"label":"Toshko Savov","version":20,"id":"46315","lastModified":"1301902120000","name":"Toshko Savov","type":"Person","_key":"12499"} +{"label":"Nicole Pilzecker","version":20,"id":"46316","lastModified":"1301902120000","name":"Nicole Pilzecker","type":"Person","_key":"12500"} +{"label":"Walter H\u00f6tte","version":21,"id":"46317","lastModified":"1301901772000","name":"Walter H\u00f6tte","type":"Person","_key":"12501"} +{"label":"The Sea Inside","description":"Based on the profoundly moving true story that captured the world\u2019s attention, The Sea Inside is about Spaniard Ram\u00f3n Sampedro (Javier Bardem), who fought a 30-year campaign to win the right to end his life with dignity. The Sea Inside is the story of Ram\u00f3n\u2019s relationships with two women: Julia (Bel\u00e9n Rueda) a lawyer who supports his cause, and Rosa (Lola Due\u00f1as), a local woman who wants to convince him that life is worth living.","id":"1913","runtime":126,"imdbId":"tt0369702","version":194,"lastModified":"1301903188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c7\/4cb1c4555e73d65b850003c7\/mar-adentro-mid.jpg","studio":"Lucky Red","genre":"Drama","title":"The Sea Inside","releaseDate":1094083200000,"language":"en","type":"Movie","_key":"12502"} +{"label":"Bel\u00e9n Rueda","version":30,"id":"19907","lastModified":"1301901275000","name":"Bel\u00e9n Rueda","type":"Person","_key":"12503"} +{"label":"Joan Dalmau","version":20,"id":"19908","lastModified":"1301901755000","name":"Joan Dalmau","type":"Person","_key":"12504"} +{"label":"Josep Maria Pou","version":22,"id":"19909","lastModified":"1301901807000","name":"Josep Maria Pou","type":"Person","_key":"12505"} +{"label":"Mabel Rivera","version":27,"id":"33409","lastModified":"1301901439000","name":"Mabel Rivera","type":"Person","_key":"12506"} +{"label":"Clara Segura","version":23,"id":"33410","lastModified":"1301901755000","name":"Clara Segura","type":"Person","_key":"12507"} +{"label":"Alberto Jim\u00e9nez","version":22,"id":"24919","lastModified":"1301901799000","name":"Alberto Jim\u00e9nez","type":"Person","_key":"12508"} +{"label":"Tamar Novas","version":30,"id":"33411","lastModified":"1301901643000","name":"Tamar Novas","type":"Person","_key":"12509"} +{"label":"Alberto Amarilla","version":25,"id":"33412","lastModified":"1301901281000","name":"Alberto Amarilla","type":"Person","_key":"12510"} +{"label":"FC Venus","description":"No overview found.","id":"1914","runtime":95,"imdbId":"tt0487027","version":114,"lastModified":"1301905667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4d90a7685e73d65f170029a1\/fc-venus-mid.jpg","studio":"W\u00fcste Filmproduktion","genre":"Comedy","title":"FC Venus","releaseDate":1146096000000,"language":"en","type":"Movie","_key":"12511"} +{"label":"Nora Tschirner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b9\/4bd4231e017a3c7fa50000b9\/nora-tschirner-profile.jpg","version":38,"id":"19910","lastModified":"1301901188000","name":"Nora Tschirner","type":"Person","_key":"12512"} +{"label":"Anneke Kim Sarnau","version":23,"id":"19911","lastModified":"1301901571000","name":"Anneke Kim Sarnau","type":"Person","_key":"12513"} +{"label":"Ute Wieland","version":20,"id":"19912","lastModified":"1301901697000","name":"Ute Wieland","type":"Person","_key":"12514"} +{"label":"Bruno Grass","version":16,"id":"19920","lastModified":"1301903113000","name":"Bruno Grass","type":"Person","_key":"12515"} +{"label":"Manta, Manta","description":"No overview found.","id":"1915","runtime":91,"imdbId":"tt0102397","version":82,"lastModified":"1301905721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4bfa8190017a3c703300048f\/manta-manta-mid.jpg","studio":"Constantin Film","genre":"Comedy","title":"Manta, Manta","releaseDate":686448000000,"language":"en","type":"Movie","_key":"12516"} +{"label":"Wolfgang B\u00fcld","version":23,"id":"19921","lastModified":"1301903110000","name":"Wolfgang B\u00fcld","type":"Person","_key":"12517"} +{"label":"Tina Ruland","version":20,"id":"19926","lastModified":"1301901449000","name":"Tina Ruland","type":"Person","_key":"12518"} +{"label":"Michael Kessler","version":20,"id":"19927","lastModified":"1301901836000","name":"Michael Kessler","type":"Person","_key":"12519"} +{"label":"Uwe Fellensiek","version":17,"id":"19929","lastModified":"1301903113000","name":"Uwe Fellensiek","type":"Person","_key":"12520"} +{"label":"Austin Powers 4","description":"No overview found.","id":"1916","runtime":0,"imdbId":"tt1218992","version":62,"lastModified":"1301905721000","genre":"Comedy","title":"Austin Powers 4","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"12521"} +{"label":"Qui a tu\u00e9 Bambi?","description":"Isabelle, a beautiful nursing student, is starting her internship at a prestigious hospital. She meets Dr. Philip there, feels atracted to him from the beggining and starts suffering from strange fainting; so he calls her Bambi: her legs don't support her. Patients mysteriously start to dissappear from their rooms; so Bambi and Dr. Philip start a cat vs. mouse paranoid game, in order to catch the probable killer.","id":"1917","runtime":110,"imdbId":"tt0326036","version":52,"lastModified":"1301904047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99f\/4d5e57565e73d60c6d00199f\/qui-a-tu-bambi-mid.jpg","studio":"Haut et Court","genre":"Thriller","title":"Qui a tu\u00e9 Bambi?","releaseDate":1072224000000,"language":"en","type":"Movie","_key":"12522"} +{"label":"Gilles Marchand","version":32,"id":"18176","lastModified":"1301901798000","name":"Gilles Marchand","type":"Person","_key":"12523"} +{"label":"Sophie Quinton","version":20,"id":"19933","lastModified":"1301901663000","name":"Sophie Quinton","type":"Person","_key":"12524"} +{"label":"Catherine Jacob","version":30,"id":"19934","lastModified":"1301901570000","name":"Catherine Jacob","type":"Person","_key":"12525"} +{"label":"Yasmine Belmadi","version":18,"id":"19935","lastModified":"1301901460000","name":"Yasmine Belmadi","type":"Person","_key":"12526"} +{"label":"Mich\u00e8le Moretti","version":20,"id":"19936","lastModified":"1301901663000","name":"Mich\u00e8le Moretti","type":"Person","_key":"12527"} +{"label":"Val\u00e9rie Donzelli","version":25,"id":"19937","lastModified":"1301901404000","name":"Val\u00e9rie Donzelli","type":"Person","_key":"12528"} +{"label":"Sophie Medina","version":17,"id":"19938","lastModified":"1301901828000","name":"Sophie Medina","type":"Person","_key":"12529"} +{"label":"Or","description":"Or shoulders a lot: she's 17 or 18, a student, works evenings at a restaurant, recycles cans and bottles for cash, and tries to keep her mother Ruthie from returning to streetwalking in Tel Aviv. Ruthie calls Or \"my treasure,\" but Ruthie is a burden. She's just out of hospital, weak, and Or has found her a job as a house cleaner. The call of the quick money on the street is tough for Ruthie to ignore. Or's emotions roil further when the mother of the youth she's in love with comes to the flat to","id":"1918","runtime":95,"imdbId":"tt0388311","version":68,"lastModified":"1302046976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4d9bc5205e73d64a860001f0\/or-mid.jpg","studio":"Le Studio Canal+","genre":"Drama","title":"Or","releaseDate":1095292800000,"language":"en","type":"Movie","_key":"12530"} +{"label":"Keren Yedaya","version":17,"id":"19939","lastModified":"1301901839000","name":"Keren Yedaya","type":"Person","_key":"12531"} +{"label":"Ronit Elkabetz","version":33,"id":"19942","lastModified":"1301901357000","name":"Ronit Elkabetz","type":"Person","_key":"12532"} +{"label":"Dana Ivgy","version":16,"id":"19943","lastModified":"1301903113000","name":"Dana Ivgy","type":"Person","_key":"12533"} +{"label":"Meshar Cohen","version":17,"id":"19944","lastModified":"1301901996000","name":"Meshar Cohen","type":"Person","_key":"12534"} +{"label":"Katia Zinbris","version":17,"id":"19945","lastModified":"1301901996000","name":"Katia Zinbris","type":"Person","_key":"12535"} +{"label":"Shmuel Edelman","version":16,"id":"19946","lastModified":"1301903113000","name":"Shmuel Edelman","type":"Person","_key":"12536"} +{"label":"Away from Her","description":"A man coping with the institutionalization of his wife because of Alzheimer's disease faces an epiphany when she transfers her affections to another man, Aubrey, a wheel chair-bound mute who also is a patient at the nursing home.","id":"1919","runtime":110,"imdbId":"tt0491747","trailer":"http:\/\/www.youtube.com\/watch?v=1092","version":206,"lastModified":"1301917443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d1\/4bc913ec017a3c57fe0076d1\/away-from-her-mid.jpg","studio":"The Film Farm","genre":"Drama","title":"Away from Her","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"12537"} +{"label":"Kristen Thomson","version":23,"id":"19956","lastModified":"1301901532000","name":"Kristen Thomson","type":"Person","_key":"12538"} +{"label":"Wendy Crewson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e8\/4c32aa215e73d649690000e8\/wendy-crewson-profile.jpg","version":69,"id":"19957","lastModified":"1302065848000","name":"Wendy Crewson","type":"Person","_key":"12539"} +{"label":"Alberta Watson","version":37,"id":"19958","lastModified":"1301901228000","name":"Alberta Watson","type":"Person","_key":"12540"} +{"label":"Thomas Hauff","version":16,"id":"19959","lastModified":"1301901542000","name":"Thomas Hauff","type":"Person","_key":"12541"} +{"label":"Deanna Dezmari","version":18,"id":"19960","lastModified":"1301901564000","name":"Deanna Dezmari","type":"Person","_key":"12542"} +{"label":"Nina Dobrev","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28c\/4c054286017a3c351900028c\/nina-dobrev-profile.jpg","version":43,"birthday":"600303600000","id":"19961","birthplace":"Sofia, Bulgaria","lastModified":"1301948633000","name":"Nina Dobrev","type":"Person","_key":"12543"} +{"label":"Melanie Merkosky","version":16,"id":"19962","lastModified":"1301901542000","name":"Melanie Merkosky","type":"Person","_key":"12544"} +{"label":"Crime of Passion","description":"An executive's wife barters sex for her husband's business success.","id":"1920","runtime":83,"imdbId":"tt0050271","version":240,"lastModified":"1301903715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6da\/4bc913ed017a3c57fe0076da\/crime-of-passion-mid.jpg","studio":"United Artists","genre":"Crime","title":"Crime of Passion","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"12545"} +{"label":"Virginia Grey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e2\/4bd72537017a3c21f60000e2\/virginia-grey-profile.jpg","version":35,"id":"19967","lastModified":"1301903108000","name":"Virginia Grey","type":"Person","_key":"12546"} +{"label":"Royal Dano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a2\/4c62a8027b9aa172d90005a2\/royal-dano-profile.jpg","version":36,"id":"19968","lastModified":"1301903113000","name":"Royal Dano","type":"Person","_key":"12547"} +{"label":"Sweet November","description":"Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.","id":"1921","runtime":119,"imdbId":"tt0230838","trailer":"http:\/\/www.youtube.com\/watch?v=2068","version":155,"lastModified":"1301902214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4bc913ef017a3c57fe0076ec\/sweet-november-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Sweet November","releaseDate":982281600000,"language":"en","type":"Movie","_key":"12548"} +{"label":"Pat O'Connor","version":25,"id":"19969","lastModified":"1301901434000","name":"Pat O'Connor","type":"Person","_key":"12549"} +{"label":"Greg Germann","version":40,"id":"19974","lastModified":"1301901239000","name":"Greg Germann","type":"Person","_key":"12550"} +{"label":"Michael Rosenbaum","version":32,"id":"19975","lastModified":"1301901495000","name":"Michael Rosenbaum","type":"Person","_key":"12551"} +{"label":"Robert Joy","version":45,"id":"19976","lastModified":"1301901326000","name":"Robert Joy","type":"Person","_key":"12552"} +{"label":"Liam Aiken","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/764\/4d1c67345e73d66594001764\/liam-aiken-profile.jpg","version":38,"id":"19977","lastModified":"1302062068000","name":"Liam Aiken","type":"Person","_key":"12553"} +{"label":"Jason Kravits","version":20,"id":"19978","lastModified":"1301903112000","name":"Jason Kravits","type":"Person","_key":"12554"} +{"label":"June Carryl","version":21,"id":"19979","lastModified":"1301901670000","name":"June Carryl","type":"Person","_key":"12555"} +{"label":"Kelvin Han Yee","version":19,"id":"19980","lastModified":"1301901822000","name":"Kelvin Han Yee","type":"Person","_key":"12556"} +{"label":"David Fine","version":26,"id":"19981","lastModified":"1301901564000","name":"David Fine","type":"Person","_key":"12557"} +{"label":"Diane Amos","version":17,"id":"19982","lastModified":"1301903112000","name":"Diane Amos","type":"Person","_key":"12558"} +{"label":"Irina Palm","description":"Maggie, a 50-year-old widow, is looking desperately for money to pay for a last-chance treatment for her dying grandson. Having tried almost everything, Maggie drifts aimlessly through the streets of Soho in London.\n\nA poster in front of \"Sexy World\" catches her eye: \"Hostess wanted.\" Too dazed, desperate and naive to realize what she's doing, she enters the club. Miki, Sexy World's cynical owner,","id":"1922","runtime":103,"imdbId":"tt0762110","homepage":"http:\/\/www.irinapalm-derfilm.de\/home.htm","version":169,"lastModified":"1302028175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34d\/4bf47a46017a3c6d9200034d\/irina-palm-mid.jpg","studio":"Pallas Film","genre":"Comedy","title":"Irina Palm","releaseDate":1171324800000,"language":"en","type":"Movie","_key":"12559"} +{"label":"Sam Garbarski","version":15,"id":"19983","lastModified":"1301903109000","name":"Sam Garbarski","type":"Person","_key":"12560"} +{"label":"Kevin Bishop","version":22,"id":"19996","lastModified":"1301903110000","name":"Kevin Bishop","type":"Person","_key":"12561"} +{"label":"Siobhan Hewlett","version":17,"id":"19997","lastModified":"1301901485000","name":"Siobhan Hewlett","type":"Person","_key":"12562"} +{"label":"Dorka Gryllus","version":27,"id":"19998","lastModified":"1301901446000","name":"Dorka Gryllus","type":"Person","_key":"12563"} +{"label":"Corey Burke","version":16,"id":"19999","lastModified":"1301901634000","name":"Corey Burke","type":"Person","_key":"12564"} +{"label":"Meg Wynn Owen","version":22,"id":"20000","lastModified":"1301901838000","name":"Meg Wynn Owen","type":"Person","_key":"12565"} +{"label":"Susan Hitch","version":16,"id":"20001","lastModified":"1301901634000","name":"Susan Hitch","type":"Person","_key":"12566"} +{"label":"Flip Webster","version":17,"id":"20002","lastModified":"1301901811000","name":"Flip Webster","type":"Person","_key":"12567"} +{"label":"Twin Peaks: Fire Walk With Me","description":"Twin Peaks: Fire Walk With Me is the feature film that followed the cult television series Twin Peaks by David Lynch. The movie involves the mysterious murder of a girl named Laura Palmer and the small quiet town of Twin Peaks that is turned upside-down after her death. Essentially a prequel to David Lynch and Mark Frost's earlier TV series \"Twin Peaks.\" The first half-hour or so concerns the investigation by FBI Agent Chet Desmond (Chris Isaak) and his partner Sam Stanley (Kiefer Sutherland) i","id":"1923","runtime":125,"imdbId":"tt0105665","version":127,"lastModified":"1302028235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/700\/4cefebd35e73d66250000700\/twin-peaks-fire-walk-with-me-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Twin Peaks: Fire Walk With Me","releaseDate":704678400000,"language":"en","type":"Movie","_key":"12568"} +{"label":"Moira Kelly","version":42,"id":"20005","lastModified":"1302062970000","name":"Moira Kelly","type":"Person","_key":"12569"} +{"label":"M\u00e4dchen Amick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/278\/4ce0b7c55e73d60f6c000278\/madchen-amick-profile.jpg","version":31,"id":"6714","lastModified":"1301901161000","name":"M\u00e4dchen Amick","type":"Person","_key":"12570"} +{"label":"Phoebe Augustine","version":20,"id":"15796","lastModified":"1301901593000","name":"Phoebe Augustine","type":"Person","_key":"12571"} +{"label":"Ray Wise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ef\/4d4486b07b9aa15bf50010ef\/ray-wise-profile.jpg","version":63,"id":"6719","lastModified":"1301901166000","name":"Ray Wise","type":"Person","_key":"12572"} +{"label":"Lenny von Dohlen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c2b39877b9aa15e9c0000b7\/lenny-von-dohlen-profile.jpg","version":32,"id":"15799","lastModified":"1301901593000","name":"Lenny von Dohlen","type":"Person","_key":"12573"} +{"label":"Catherine E. Coulson","version":23,"id":"123516","lastModified":"1301902540000","name":"Catherine E. Coulson","type":"Person","_key":"12574"} +{"label":"Michael J. Anderson","version":24,"id":"123517","lastModified":"1301902540000","name":"Michael J. Anderson","type":"Person","_key":"12575"} +{"label":"Frank Silva","version":23,"id":"123518","lastModified":"1301902384000","name":"Frank Silva","type":"Person","_key":"12576"} +{"label":"Superman","description":"An alien orphan is sent from his dying planet to Earth, where he grows up to become his adoptive home's first and greatest super-hero.","id":"1924","runtime":143,"imdbId":"tt0078346","trailer":"http:\/\/www.youtube.com\/watch?v=XWHyvubVdPA","version":188,"lastModified":"1301906803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bb\/4bccf340017a3c0f270001bb\/superman-mid.jpg","studio":"Warner Bros. Pictures","genre":"Science Fiction","title":"Superman","releaseDate":282528000000,"language":"en","type":"Movie","_key":"12577"} +{"label":"Jackie Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c1\/4c49bb7a7b9aa115fc0000c1\/jackie-cooper-profile.jpg","version":35,"birthday":"-1492563600000","id":"55278","birthplace":"Los Angeles, California, USA","lastModified":"1301901364000","name":"Jackie Cooper","type":"Person","_key":"12578"} +{"label":"Margot Kidder","version":49,"id":"20011","lastModified":"1301901171000","name":"Margot Kidder","type":"Person","_key":"12579"} +{"label":"Valerie Perrine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23d\/4c8777b37b9aa1545c00023d\/valerie-perrine-profile.jpg","biography":"<meta charset=\"utf-8\"><font face=\"Arial\" size=\"3\"><span style=\"font-size: 13px;\"><meta charset=\"utf-8\"><small><font face=\"Arial\">After making her debut in the Kurt Vonnegut classic <b>Slaughterhouse Five<\/b><i>, <\/i>she has played with some of the most respected actors of our time; Gene Hackman in <strong>Superman<\/strong>, Jack Nicholson and Harvey Keitel in <strong>The Border<\/strong>, Robert Mitchum in <strong>Agency<\/strong>, Jackie Gleason in<strong> Mr. Billio","version":38,"birthday":"-830916000000","id":"26483","lastModified":"1301901210000","name":"Valerie Perrine","type":"Person","_key":"12580"} +{"label":"Maria Schell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4cae0fb77b9aa1213800001b\/maria-schell-profile.jpg","version":30,"id":"40954","lastModified":"1301901714000","name":"Maria Schell","type":"Person","_key":"12581"} +{"label":"Terence Stamp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58a\/4c62a3ef7b9aa172d900058a\/terence-stamp-profile.jpg","version":110,"id":"28641","lastModified":"1301901171000","name":"Terence Stamp","type":"Person","_key":"12582"} +{"label":"Phyllis Thaxter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/400\/4bf2d7bf017a3c320f000400\/phyllis-thaxter-profile.jpg","version":30,"id":"85042","lastModified":"1301901835000","name":"Phyllis Thaxter","type":"Person","_key":"12583"} +{"label":"Jeff East","version":27,"id":"53088","lastModified":"1301901445000","name":"Jeff East","type":"Person","_key":"12584"} +{"label":"Agnes und seine Br\u00fcder","description":"No overview found.","id":"1925","runtime":111,"imdbId":"tt0389738","homepage":"http:\/\/www.agnes-derfilm.de\/","version":60,"lastModified":"1301904039000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/726\/4bc913f7017a3c57fe007726\/agnes-und-seine-bruder-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Agnes und seine Br\u00fcder","releaseDate":1097712000000,"language":"en","type":"Movie","_key":"12585"} +{"label":"Martin Wei\u00df","version":17,"id":"20015","lastModified":"1301901684000","name":"Martin Wei\u00df","type":"Person","_key":"12586"} +{"label":"Vadim Glowna","version":31,"id":"20016","lastModified":"1301901564000","name":"Vadim Glowna","type":"Person","_key":"12587"} +{"label":"Margit Carstensen","version":23,"id":"20017","lastModified":"1301901680000","name":"Margit Carstensen","type":"Person","_key":"12588"} +{"label":"Suzan Anbeh","version":17,"id":"20018","lastModified":"1301901810000","name":"Suzan Anbeh","type":"Person","_key":"12589"} +{"label":"Lee Daniels","version":39,"id":"20019","lastModified":"1301901260000","name":"Lee Daniels","type":"Person","_key":"12590"} +{"label":"Sven Martinek","version":22,"id":"20020","lastModified":"1301903112000","name":"Sven Martinek","type":"Person","_key":"12591"} +{"label":"Maximilian Fischer","version":17,"id":"20022","lastModified":"1301901814000","name":"Maximilian Fischer","type":"Person","_key":"12592"} +{"label":"Kelly Trump","version":20,"id":"43173","lastModified":"1301902032000","name":"Kelly Trump","type":"Person","_key":"12593"} +{"label":"Axel Wedekind","version":22,"id":"43386","lastModified":"1301901779000","name":"Axel Wedekind","type":"Person","_key":"12594"} +{"label":"11'09''01 - September 11","description":"11 directors show their view on the terrorist attacks on the world trade center in New York.","id":"1926","runtime":135,"imdbId":"tt0328802","version":141,"lastModified":"1301904761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/737\/4bc913fa017a3c57fe007737\/11-09-01-september-11-mid.jpg","studio":"Studio Canal","genre":"Drama","title":"11'09''01 - September 11","releaseDate":1031702400000,"language":"en","type":"Movie","_key":"12595"} +{"label":"Youssef Chahine","version":19,"id":"20023","lastModified":"1301901624000","name":"Youssef Chahine","type":"Person","_key":"12596"} +{"label":"Amos Gitai","version":27,"id":"20024","lastModified":"1301901497000","name":"Amos Gitai","type":"Person","_key":"12597"} +{"label":"Sh\u00f4hei Imamura","version":61,"birthday":"-1366333200000","id":"20025","birthplace":"Tokyo","lastModified":"1301901424000","name":"Sh\u00f4hei Imamura","type":"Person","_key":"12598"} +{"label":"Samira Makhmalbaf","version":19,"id":"20026","lastModified":"1301901912000","name":"Samira Makhmalbaf","type":"Person","_key":"12599"} +{"label":"Idrissa Ouedraogo","version":18,"id":"20027","lastModified":"1301901912000","name":"Idrissa Ouedraogo","type":"Person","_key":"12600"} +{"label":"Danis Tanovic","version":27,"id":"20028","lastModified":"1301901318000","name":"Danis Tanovic","type":"Person","_key":"12601"} +{"label":"Maryam Karimi","version":19,"id":"20041","lastModified":"1301902015000","name":"Maryam Karimi","type":"Person","_key":"12602"} +{"label":"J\u00e9r\u00f4me Horry","version":19,"id":"20042","lastModified":"1301901514000","name":"J\u00e9r\u00f4me Horry","type":"Person","_key":"12603"} +{"label":"Keren Mor","version":18,"id":"20043","lastModified":"1301901912000","name":"Keren Mor","type":"Person","_key":"12604"} +{"label":"Tomer Russo","version":21,"id":"20044","lastModified":"1301901960000","name":"Tomer Russo","type":"Person","_key":"12605"} +{"label":"Tanvi Azmi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2a\/4d215b775e73d66b2b002c2a\/tanvi-azmi-profile.jpg","version":20,"id":"20045","lastModified":"1301901700000","name":"Tanvi Azmi","type":"Person","_key":"12606"} +{"label":"Kapil Bawa","version":18,"id":"20046","lastModified":"1301901912000","name":"Kapil Bawa","type":"Person","_key":"12607"} +{"label":"Hulk","description":"Bruce Banner, a genetics researcher with a tragic past, suffers an accident that causes him to transform into a raging green monster when he gets angry","id":"1927","runtime":138,"imdbId":"tt0286716","trailer":"http:\/\/www.youtube.com\/watch?v=H0RQOT14lck","version":493,"lastModified":"1301917220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74d\/4bc913fb017a3c57fe00774d\/hulk-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Hulk","releaseDate":1056067200000,"language":"en","type":"Movie","_key":"12608"} +{"label":"Cara Buono","version":27,"id":"20047","lastModified":"1301901260000","name":"Cara Buono","type":"Person","_key":"12609"} +{"label":"Paul Kersey","version":28,"id":"20048","lastModified":"1301901687000","name":"Paul Kersey","type":"Person","_key":"12610"} +{"label":"The Amazing Spider-Man","description":"No overview found.","id":"1930","runtime":0,"imdbId":"tt0948470","version":147,"lastModified":"1301902320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c3\/4c30a8805e73d63cd00001c3\/spider-man-4-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"The Amazing Spider-Man","releaseDate":1341273600000,"language":"en","type":"Movie","_key":"12611"} +{"label":"Marc Webb","version":31,"id":"87742","lastModified":"1301901636000","name":"Marc Webb","type":"Person","_key":"12612"} +{"label":"Andrew Garfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a0\/4ca8a9587b9aa17acb0004a0\/andrew-garfield-profile.jpg","biography":"American-British theatre, film, and television actor Andrew\nRussell Garfield is known for his roles in the films Lions for Lambs (2007), Boy\nA (2007), The Imaginarium of Doctor Parnassus (2009) and The Social Network\n(2010).\n\nGarfield began his career in theater working primarily as a\nstage actor where he won a MEN Theatre Award for his performance in Kes at\nManchester's Royal Exchange Theatre in 2004, and the outstanding newcomer award\nat the Evening Standard Theatre Awards in 2006. Garfield ma","version":84,"birthday":"430178400000","id":"37625","birthplace":"Los Angeles, California, USA","lastModified":"1302061274000","name":"Andrew Garfield","type":"Person","_key":"12613"} +{"label":"Emma Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e8\/4bec48d4017a3c37a70001e8\/emma-stone-profile.jpg","biography":"Actress Emma Stone got her big break in the movies as the wide-smiling redhead who enchants Jonah Hill in the 2007 comedy Superbad. A native of Arizona, Stone got her first experience with Hollywood in the VH1 reality show In Search of the Partridge Family (2004); she won the role of Laurie Partridge and appeared in a TV movie, The New Partridge Family, in 2005. Her fine comic work in Superbad led to parts in other feature-length comedies, including The Rocker (2008, with Christina Applegate), T","version":83,"birthday":"594774000000","id":"54693","birthplace":"Scottsdale, Arizona, USA","lastModified":"1301976643000","name":"Emma Stone","type":"Person","_key":"12614"} +{"label":"Julianne Nicholson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/127\/4ceea44e5e73d65314000127\/julianne-nicholson-profile.jpg","version":34,"id":"86034","lastModified":"1301902402000","name":"Julianne Nicholson","type":"Person","_key":"12615"} +{"label":"Campbell Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/184\/4d72688f7b9aa10f58000184\/campbell-scott-profile.jpg","version":59,"id":"55152","lastModified":"1301901292000","name":"Campbell Scott","type":"Person","_key":"12616"} +{"label":"Irrfan Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4c4f168c5e73d62ec2000116\/irrfan-khan-profile.jpg","version":63,"id":"76793","lastModified":"1301901267000","name":"Irrfan Khan","type":"Person","_key":"12617"} +{"label":"Stomp the Yard","description":"After the death of his younger brother, a troubled 19-year-old street dancer from Los Angeles is able to bypass juvenile hall by enrolling in the historically black, Truth University in Atlanta, Georgia. But his efforts to get an education and woo the girl he likes are sidelined when he is courted by the top two campus fraternities, both of which want and need his fierce street-style dance moves to win the highly coveted national step show competition.","id":"1931","runtime":114,"imdbId":"tt0775539","trailer":"http:\/\/www.youtube.com\/watch?v=hvLzhK7Vatw","version":256,"lastModified":"1301902618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75f\/4bc913fd017a3c57fe00775f\/stomp-the-yard-mid.jpg","studio":"Rainforest Films","genre":"Drama","title":"Stomp the Yard","releaseDate":1179360000000,"language":"en","tagline":"He will challenge their traditions. Their traditions will change his life.","type":"Movie","_key":"12618"} +{"label":"Sylvain White","version":36,"id":"31119","lastModified":"1301901450000","name":"Sylvain White","type":"Person","_key":"12619"} +{"label":"Columbus Short","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/171\/4bd85f29017a3c1c09000171\/columbus-short-profile.jpg","biography":"<SPAN style=\"LINE-HEIGHT: 130%; FONT-FAMILY: Arial; FONT-SIZE: 10pt\">Born in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:City w:st=\"on\">Kansas City<\/st1:City>, <st1:State w:st=\"on\">Missouri<\/st1:State> on September 19, 1982, <st1:City w:st=\"on\"><st1:place w:st=\"on\"><B style=\"mso-bidi-font-weight: normal\">Columbus<\/B><\/st1:place><\/st1:City><B style=\"mso-bidi-font-weight: normal\"> Keith Short, Jr<\/B>., started entertaining at the age of three by putting on","version":71,"birthday":"401234400000","id":"31132","birthplace":"Kansas City, MO","lastModified":"1301901159000","name":"Columbus Short","type":"Person","_key":"12620"} +{"label":"Ne-Yo","version":31,"id":"31133","lastModified":"1301901517000","name":"Ne-Yo","type":"Person","_key":"12621"} +{"label":"Darrin Dewitt Henson","version":31,"id":"31134","lastModified":"1301901221000","name":"Darrin Dewitt Henson","type":"Person","_key":"12622"} +{"label":"Jermaine Williams","version":27,"id":"31135","lastModified":"1301901357000","name":"Jermaine Williams","type":"Person","_key":"12623"} +{"label":"Chris Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4c913e517b9aa1021200002d\/chris-brown-profile.jpg","version":53,"birthday":"610322400000","id":"31136","birthplace":"Tappahannock, Virginia, USA","lastModified":"1301901162000","name":"Chris Brown","type":"Person","_key":"12624"} +{"label":"Brian J. White","version":46,"id":"31137","lastModified":"1301901087000","name":"Brian J. White","type":"Person","_key":"12625"} +{"label":"Valarie Pettiford","version":24,"id":"31138","lastModified":"1301901826000","name":"Valarie Pettiford","type":"Person","_key":"12626"} +{"label":"Allan Louis","version":24,"id":"31139","lastModified":"1302003007000","name":"Allan Louis","type":"Person","_key":"12627"} +{"label":"The Others","description":"Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.","id":"1933","runtime":101,"imdbId":"tt0230600","trailer":"http:\/\/www.youtube.com\/watch?v=Vu494-Dr5po","version":153,"lastModified":"1301901990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca9\/4d43094c7b9aa15bbb004ca9\/the-others-mid.jpg","studio":"Cruise-Wagner Productions","genre":"Drama","title":"The Others","releaseDate":996710400000,"language":"en","tagline":"Sooner or later she'll see them, then everything will be different.","type":"Movie","_key":"12628"} +{"label":"Alakina Mann","version":25,"id":"20051","lastModified":"1301903110000","name":"Alakina Mann","type":"Person","_key":"12629"} +{"label":"James Bentley","version":22,"id":"20052","lastModified":"1301901935000","name":"James Bentley","type":"Person","_key":"12630"} +{"label":"Eric Sykes","version":30,"id":"20053","lastModified":"1301903112000","name":"Eric Sykes","type":"Person","_key":"12631"} +{"label":"Elaine Cassidy","version":29,"id":"20054","lastModified":"1301901971000","name":"Elaine Cassidy","type":"Person","_key":"12632"} +{"label":"Ren\u00e9e Asherson","version":28,"id":"20055","lastModified":"1301901577000","name":"Ren\u00e9e Asherson","type":"Person","_key":"12633"} +{"label":"Keith Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c8\/4ceff37c5e73d6625a0006c8\/keith-allen-profile.jpg","version":38,"id":"20056","lastModified":"1301901443000","name":"Keith Allen","type":"Person","_key":"12634"} +{"label":"Michelle Fairley","version":25,"id":"20057","lastModified":"1301901935000","name":"Michelle Fairley","type":"Person","_key":"12635"} +{"label":"Alexander Vince","version":22,"id":"20058","lastModified":"1301901935000","name":"Alexander Vince","type":"Person","_key":"12636"} +{"label":"Gordon Reid","version":22,"id":"20059","lastModified":"1301901935000","name":"Gordon Reid","type":"Person","_key":"12637"} +{"label":"Ricardo L\u00f3pez","version":22,"id":"20060","lastModified":"1301901935000","name":"Ricardo L\u00f3pez","type":"Person","_key":"12638"} +{"label":"Shakespeare in Love","description":"Young Shakespeare is forced to stage his latest comedy, \"Romeo and Ethel, the Pirate's Daughter,\" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.","id":"1934","runtime":122,"imdbId":"tt0138097","trailer":"http:\/\/www.youtube.com\/watch?v=2305","version":168,"lastModified":"1301917022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b89\/4d504a8c7b9aa13aba00cb89\/shakespeare-in-love-mid.jpg","studio":"Bedford Falls Productions","genre":"Comedy","title":"Shakespeare in Love","releaseDate":914544000000,"language":"en","tagline":"Love is the only inspiration.","type":"Movie","_key":"12639"} +{"label":"Steven Beard","version":23,"id":"20069","lastModified":"1301901695000","name":"Steven Beard","type":"Person","_key":"12640"} +{"label":"Jim Carter","version":60,"id":"20070","lastModified":"1301901287000","name":"Jim Carter","type":"Person","_key":"12641"} +{"label":"Martin Clunes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/318\/4cef4fbe5e73d66255000318\/martin-clunes-profile.jpg","version":44,"id":"22159","lastModified":"1301901236000","name":"Martin Clunes","type":"Person","_key":"12642"} +{"label":"Les Soeurs f\u00e2ch\u00e9es","description":"A story of two sisters, one from the country with simpler attitudes who comes to stay for a short while with her sophisticated sister who lives in the big city.","id":"1935","runtime":92,"imdbId":"tt0410639","homepage":"http:\/www.zwei-ungleiche-schwestern.de\/","version":61,"lastModified":"1301904686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e1\/4c47a75a5e73d61efb0002e1\/les-soeurs-fachees-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Les Soeurs f\u00e2ch\u00e9es","releaseDate":1103673600000,"language":"en","type":"Movie","_key":"12643"} +{"label":"Alexandra Lecl\u00e8re","version":16,"id":"20073","lastModified":"1301901749000","name":"Alexandra Lecl\u00e8re","type":"Person","_key":"12644"} +{"label":"Catherine Frot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ad\/4d07538f7b9aa11bbf0035ad\/catherine-frot-profile.jpg","version":45,"id":"20080","lastModified":"1301901264000","name":"Catherine Frot","type":"Person","_key":"12645"} +{"label":"Brigitte Catillon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/95c\/4d2768067b9aa134e000195c\/brigitte-catillon-profile.jpg","version":29,"id":"20081","lastModified":"1301901285000","name":"Brigitte Catillon","type":"Person","_key":"12646"} +{"label":"Michel Vuillermoz","version":34,"id":"20082","lastModified":"1301901659000","name":"Michel Vuillermoz","type":"Person","_key":"12647"} +{"label":"Christiane Millet","version":22,"id":"20083","lastModified":"1301901749000","name":"Christiane Millet","type":"Person","_key":"12648"} +{"label":"Rose Thi\u00e9ry","version":19,"id":"20084","lastModified":"1301903113000","name":"Rose Thi\u00e9ry","type":"Person","_key":"12649"} +{"label":"Bruno Chiche","version":20,"id":"20085","lastModified":"1301901642000","name":"Bruno Chiche","type":"Person","_key":"12650"} +{"label":"Jean-Philippe Puymartin","version":18,"id":"20086","lastModified":"1301901715000","name":"Jean-Philippe Puymartin","type":"Person","_key":"12651"} +{"label":"Aurore Auteuil","version":17,"id":"20087","lastModified":"1301902015000","name":"Aurore Auteuil","type":"Person","_key":"12652"} +{"label":"River of No Return","description":"A western tale, set in the days of the California Gold Rush, in which Miss Monroe appears as a saloon singer who falls into the capable arms of Robert Mitchum after she is cruelly abandoned by her husband, Calhoun.The itinerant farmer and his young son help a heart-of-gold saloon singer search for her estranged husband","id":"1936","runtime":91,"imdbId":"tt0047422","version":136,"lastModified":"1302032364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78c\/4bc91404017a3c57fe00778c\/river-of-no-return-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"River of No Return","releaseDate":-494640000000,"language":"en","type":"Movie","_key":"12653"} +{"label":"Tommy Rettig","version":19,"id":"20099","lastModified":"1302032363000","name":"Tommy Rettig","type":"Person","_key":"12654"} +{"label":"Murvyn Vye","version":24,"id":"20100","lastModified":"1302032364000","name":"Murvyn Vye","type":"Person","_key":"12655"} +{"label":"Bonjour tristesse","description":"No overview found.","id":"1937","runtime":94,"imdbId":"tt0051429","version":106,"lastModified":"1301905670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e8\/4c24e4f27b9aa1446e0000e8\/bonjour-tristesse-mid.jpg","studio":"Wheel Productions","genre":"Drama","title":"Bonjour tristesse","releaseDate":-372211200000,"language":"en","type":"Movie","_key":"12656"} +{"label":"Deborah Kerr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4bc9928f017a3c1822000041\/deborah-kerr-profile.jpg","version":49,"id":"20141","lastModified":"1301901265000","name":"Deborah Kerr","type":"Person","_key":"12657"} +{"label":"Martita Hunt","version":26,"id":"20127","lastModified":"1301903113000","name":"Martita Hunt","type":"Person","_key":"12658"} +{"label":"Jean Kent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/164\/4bcc6ebd017a3c0f34000164\/jean-kent-profile.jpg","version":22,"id":"20143","lastModified":"1301901690000","name":"Jean Kent","type":"Person","_key":"12659"} +{"label":"Angel Face","description":"A ambulance driver gets involved with a rich girl that might have a darker side.","id":"1938","runtime":90,"imdbId":"tt0044357","trailer":"http:\/\/www.youtube.com\/watch?v=FdnVCnOe5uM","version":75,"lastModified":"1301907534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/799\/4bc91405017a3c57fe007799\/angel-face-mid.jpg","studio":"RKO Radio Pictures","genre":"Crime","title":"Angel Face","releaseDate":-538272000000,"language":"en","type":"Movie","_key":"12660"} +{"label":"Mona Freeman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d0\/4bf18103017a3c32170001d0\/mona-freeman-profile.jpg","version":21,"id":"20144","lastModified":"1301901774000","name":"Mona Freeman","type":"Person","_key":"12661"} +{"label":"Raymond Greenleaf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/469\/4cf7accc7b9aa15149001469\/raymond-greenleaf-profile.jpg","version":26,"id":"20145","lastModified":"1301901410000","name":"Raymond Greenleaf","type":"Person","_key":"12662"} +{"label":"Griff Barnett","version":20,"id":"20146","lastModified":"1301901912000","name":"Griff Barnett","type":"Person","_key":"12663"} +{"label":"Laura","description":"A police detective falls in love with the woman whose murder he's investigating. ","id":"1939","runtime":88,"imdbId":"tt0037008","trailer":"http:\/\/www.youtube.com\/watch?v=u6f8jRplej8","version":98,"lastModified":"1301902664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc9140a017a3c57fe0077b7\/laura-mid.jpg","studio":"20th Century Fox","genre":"Crime","title":"Laura","releaseDate":-796003200000,"language":"en","tagline":"The story of a love that became the most fearful thing that ever happened to a woman!","type":"Movie","_key":"12664"} +{"label":"Gene Tierney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4bd6f7c0017a3c21ee000099\/gene-tierney-profile.jpg","biography":"Gene Eliza Tierney was an American film and stage actress. Acclaimed as one of the great beauties of her day, she is best-remembered for her performance in the title role of Laura (1944) and her Academy Award-nominated performance for Best Actress in Leave Her to Heaven (1945).  Other notable roles include Martha Strable Van Cleve in Heaven Can Wait (1943), Isabel Bradley Maturin in The Razor's Edge (1946), Lucy Muir in The Ghost and Mrs. Muir (1947), Ann Sutton in Whirlpool (1949), Maggie ","version":55,"birthday":"-1550019600000","id":"20124","birthplace":"Brooklyn, New York, USA","lastModified":"1301904083000","name":"Gene Tierney","type":"Person","_key":"12665"} +{"label":"Clifton Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/772\/4c091917017a3c7e92000772\/clifton-webb-profile.jpg","version":24,"id":"20125","lastModified":"1301901284000","name":"Clifton Webb","type":"Person","_key":"12666"} +{"label":"Kathleen Howard","version":19,"id":"20126","lastModified":"1301901749000","name":"Kathleen Howard","type":"Person","_key":"12667"} +{"label":"Porgy and Bess","description":"Set in the early 1900s in the fictional Catfish Row section of Charleston, South Carolina, which serves as home to a black fishing community, the story focuses on the titular characters, crippled beggar Porgy, who travels about in a goat-drawn cart, and the drug-addicted Bess, who lives with stevedore Crown, the local bully.","id":"1940","runtime":138,"imdbId":"tt0053182","version":71,"lastModified":"1301904964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c8\/4bc9140d017a3c57fe0077c8\/porgy-and-bess-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Drama","title":"Porgy and Bess","releaseDate":-332121600000,"language":"en","type":"Movie","_key":"12668"} +{"label":"Dorothy Dandridge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f1\/4ca348c27b9aa168b40002f1\/dorothy-dandridge-profile.jpg","biography":"<SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><STRONG>Dorothy Jean Dandridge<\/STRONG><\/SPAN><SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: A","version":24,"id":"20155","lastModified":"1301901512000","name":"Dorothy Dandridge","type":"Person","_key":"12669"} +{"label":"Pearl Bailey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e9\/4ca3494c7b9aa168d00002e9\/pearl-bailey-profile.jpg","biography":"<SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><STRONG>Pearl Mae Bailey<\/STRONG><\/SPAN><SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\">","version":29,"id":"20157","lastModified":"1301901587000","name":"Pearl Bailey","type":"Person","_key":"12670"} +{"label":"Diahann Carroll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4d8d42a97b9aa1675e00034e\/diahann-carroll-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Diahann Carroll<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born July 17, 1935, in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">New York<\/st1:City>, <st1:State w:st=\"on\">New York<\/st1:State><\/st1:place>. She is an American film and television actress, as well as a singer. She attended <st1","version":38,"id":"20158","lastModified":"1301901941000","name":"Diahann Carroll","type":"Person","_key":"12671"} +{"label":"Leslie Scott","version":16,"id":"20159","lastModified":"1301901624000","name":"Leslie Scott","type":"Person","_key":"12672"} +{"label":"Ruth Attaway","version":16,"id":"20160","lastModified":"1301901749000","name":"Ruth Attaway","type":"Person","_key":"12673"} +{"label":"Exodus","description":"The theme is the founding of the state of Israel. The action begins on a ship filled with Jewish immigrants bound for Israel who are being off loaded on Cyprus. An Intelligence officer succeeds in getting them back on board their ship only to have the harbor blocked by the British with whom they must negotiate. The second part deals with declaring independence and the resulting warring.","id":"1941","runtime":208,"imdbId":"tt0053804","version":91,"lastModified":"1301903715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d6\/4bc91410017a3c57fe0077d6\/exodus-mid.png","studio":"Carlyle Productions","genre":"Action","title":"Exodus","releaseDate":-308188800000,"language":"en","type":"Movie","_key":"12674"} +{"label":"Bunny Lake Is Missing","description":"A woman reports that her young daughter is missing, but there seems to be no evidence that she ever existed.","id":"1942","runtime":107,"imdbId":"tt0058997","version":163,"lastModified":"1302039393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7df\/4bc91412017a3c57fe0077df\/bunny-lake-is-missing-mid.jpg","studio":"Wheel Productions","genre":"Drama","title":"Bunny Lake Is Missing","releaseDate":-134006400000,"language":"en","type":"Movie","_key":"12675"} +{"label":"Noel Coward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13c\/4bd86976017a3c1c0600013c\/noel-coward-profile.jpg","version":34,"id":"12718","lastModified":"1301901508000","name":"Noel Coward","type":"Person","_key":"12676"} +{"label":"Rosebud","description":"No overview found.","id":"1943","runtime":126,"imdbId":"tt0073637","version":237,"lastModified":"1301906093000","studio":"Oting SA","genre":"Action","title":"Rosebud","releaseDate":164851200000,"language":"en","type":"Movie","_key":"12677"} +{"label":"Brigitte Ariel","version":16,"id":"20112","lastModified":"1301901749000","name":"Brigitte Ariel","type":"Person","_key":"12678"} +{"label":"Claude Dauphin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/138\/4c7fbb407b9aa11345000138\/claude-dauphin-profile.jpg","version":39,"id":"20113","lastModified":"1301901505000","name":"Claude Dauphin","type":"Person","_key":"12679"} +{"label":"John V. Lindsay","version":16,"id":"20114","lastModified":"1301901749000","name":"John V. Lindsay","type":"Person","_key":"12680"} +{"label":"Amidou","version":28,"id":"20115","lastModified":"1301903115000","name":"Amidou","type":"Person","_key":"12681"} +{"label":"Lalla Ward","version":17,"id":"20116","lastModified":"1301901748000","name":"Lalla Ward","type":"Person","_key":"12682"} +{"label":"Debra Berger","version":28,"id":"20117","lastModified":"1301901980000","name":"Debra Berger","type":"Person","_key":"12683"} +{"label":"Fran\u00e7oise Brion","version":19,"id":"20118","lastModified":"1301901561000","name":"Fran\u00e7oise Brion","type":"Person","_key":"12684"} +{"label":"The Door in the Floor","description":"Alternately tragic and comic, an exploration of the complexities of love in both its brightest and darkest corners. Adapted from John Irving's best-selling novel A Widow for One Year, the film is set in the privileged beach community of East Hampton, New York and chronicles one pivotal summer in the lives of famous children's book author Ted Cole (Jeff Bridges) and his beautiful wife Marion (Kim Basinger). Their once-great marriage has been strained by tragedy. Her resulting despondency and his ","id":"1944","runtime":111,"imdbId":"tt0348593","version":139,"lastModified":"1301903189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4bcf8a51017a3c63f500009c\/the-door-in-the-floor-mid.jpg","studio":"Focus Features","genre":"Action","title":"The Door in the Floor","releaseDate":1087516800000,"language":"en","type":"Movie","_key":"12685"} +{"label":"Jon Foster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d5\/4c8cf3065e73d606910004d5\/jon-foster-profile.jpg","version":37,"id":"20132","lastModified":"1301901532000","name":"Jon Foster","type":"Person","_key":"12686"} +{"label":"Tod Williams","version":29,"id":"20133","lastModified":"1301901296000","name":"Tod Williams","type":"Person","_key":"12687"} +{"label":"Nell","description":"Nell is a girl who's been brought up in an isolated world. The only people she knew were her mother and twin sister. They lived together in a cottage in the forest. Nobody has ever met Nell. After her mother's death, she's discovered by the local doctor Jerome. He's fascinated by her, since she speaks a mangled language, developed by her sister and herself growing up, \"twin speak\" if you will. But Paula, a psychology student, wants her observed in a laboratory. The judge decides they get three m","id":"1945","runtime":113,"imdbId":"tt0110638","version":100,"lastModified":"1301905125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5d\/4c0e784f017a3c7e89000c5d\/nell-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Nell","releaseDate":788140800000,"language":"en","type":"Movie","_key":"12688"} +{"label":"Michael Apted","version":50,"id":"10781","lastModified":"1301901217000","name":"Michael Apted","type":"Person","_key":"12689"} +{"label":"Natasha Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28c\/4c2218eb7b9aa1321e00028c\/natasha-richardson-profile.jpg","version":49,"id":"20162","lastModified":"1301958059000","name":"Natasha Richardson","type":"Person","_key":"12690"} +{"label":"Richard Libertini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d7\/4c3dbb897b9aa13a3c0000d7\/richard-libertini-profile.jpg","version":31,"id":"20163","lastModified":"1301901465000","name":"Richard Libertini","type":"Person","_key":"12691"} +{"label":"Robin Mullins","version":16,"id":"20164","lastModified":"1301901749000","name":"Robin Mullins","type":"Person","_key":"12692"} +{"label":"O'Neal Compton","version":19,"id":"20165","lastModified":"1301901749000","name":"O'Neal Compton","type":"Person","_key":"12693"} +{"label":"Joe Inscoe","version":16,"id":"20166","lastModified":"1301903113000","name":"Joe Inscoe","type":"Person","_key":"12694"} +{"label":"Stephanie Dawn Wood","version":16,"id":"20167","lastModified":"1301901624000","name":"Stephanie Dawn Wood","type":"Person","_key":"12695"} +{"label":"eXistenZ","description":"A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.","id":"1946","runtime":97,"imdbId":"tt0120907","trailer":"http:\/\/www.youtube.com\/watch?v=IEuykd38iNE","version":173,"lastModified":"1302043685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b1\/4d471cfc5e73d670630029b1\/existenz-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Drama","title":"eXistenZ","releaseDate":924048000000,"language":"en","type":"Movie","_key":"12696"} +{"label":"Don McKellar","version":42,"id":"20173","lastModified":"1301901370000","name":"Don McKellar","type":"Person","_key":"12697"} +{"label":"Oscar Hsu","version":19,"id":"20174","lastModified":"1301901639000","name":"Oscar Hsu","type":"Person","_key":"12698"} +{"label":"Robert A. Silverman","version":25,"id":"20175","lastModified":"1301901519000","name":"Robert A. Silverman","type":"Person","_key":"12699"} +{"label":"Kris Lemche","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fb4\/4d52d4c97b9aa13ab4011fb4\/kris-lemche-profile.jpg","version":38,"id":"20176","lastModified":"1301901243000","name":"Kris Lemche","type":"Person","_key":"12700"} +{"label":"Kirsten Johnson","version":20,"id":"20177","lastModified":"1301901639000","name":"Kirsten Johnson","type":"Person","_key":"12701"} +{"label":"James Kirchner","version":19,"id":"20178","lastModified":"1301901769000","name":"James Kirchner","type":"Person","_key":"12702"} +{"label":"Bal\u00e1zs Ko\u00f3s","version":23,"id":"20179","lastModified":"1301901488000","name":"Bal\u00e1zs Ko\u00f3s","type":"Person","_key":"12703"} +{"label":"Stephanie Belding","version":25,"id":"20180","lastModified":"1301901212000","name":"Stephanie Belding","type":"Person","_key":"12704"} +{"label":"An Unfinished Life","description":"From the acclaimed director of CASANOVA, CHOCOLAT, and THE CIDER HOUSE RULES ... Academy Award(R) winners Robert Redford and Morgan Freeman star in this powerful story of risk and redemption. Stoic and heartbroken, Einar Gilkyson (Redford) quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley (Freeman). Then, suddenly, the woman he blames for the death of his only son arrives at his door broke, desperate, and with a granddaughter he's never known. But ev","id":"1947","runtime":108,"imdbId":"tt0350261","trailer":"http:\/\/www.youtube.com\/watch?v=6_C_8K_KnG8","homepage":"http:\/\/www.miramax.com\/anunfinishedlife\/","version":143,"lastModified":"1301903180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/809\/4bc91416017a3c57fe007809\/an-unfinished-life-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"An Unfinished Life","releaseDate":1112745600000,"language":"en","type":"Movie","_key":"12705"} +{"label":"Becca Gardner","version":19,"id":"20185","lastModified":"1301901588000","name":"Becca Gardner","type":"Person","_key":"12706"} +{"label":"Damian Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/418\/4bfa713e017a3c7031000418\/damian-lewis-profile.jpg","version":58,"id":"20186","lastModified":"1301901289000","name":"Damian Lewis","type":"Person","_key":"12707"} +{"label":"Camryn Manheim","version":22,"id":"20187","lastModified":"1301901838000","name":"Camryn Manheim","type":"Person","_key":"12708"} +{"label":"Lynda Boyd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4c2b8f205e73d6399700007c\/lynda-boyd-profile.jpg","version":28,"id":"20188","lastModified":"1301901589000","name":"Lynda Boyd","type":"Person","_key":"12709"} +{"label":"Crank","description":"Chev Chelios is a professional assassin working for the West Coast crime syndicate. Chev's girlfriend Eve doesn't know what Chev does and Chev is planning to quit the crime syndicate so he can spend more time with her. But for Chev, things about to get very bad, when he learns he has been injected with a poison called \"The Beijing Cocktail\" by his rival Verona, which will kill him if his heart rate drops. Trying to stay alive and seeking help from friend, Kaylo and Doc Miles, to keep his heart p","id":"1948","runtime":87,"imdbId":"tt0479884","trailer":"http:\/\/www.youtube.com\/watch?v=uEXsOqdzYhE","homepage":"http:\/\/www.crankfilm.com\/","version":261,"lastModified":"1301901373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14f\/4c56aa895e73d63a6e00014f\/crank-mid.jpg","studio":"Lions Gate Films","genre":"Action","title":"Crank","releaseDate":1157068800000,"language":"en","tagline":"Poison in his veins. Vengeance in his heart.","type":"Movie","_key":"12710"} +{"label":"Efren Ramirez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/321\/4ce1a3337b9aa168b1000321\/efren-ramirez-profile.jpg","version":34,"birthday":"118364400000","id":"20190","birthplace":"Los Angeles, California, USA","lastModified":"1301901179000","name":"Efren Ramirez","type":"Person","_key":"12711"} +{"label":"Jose Pablo Cantillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31d\/4ce1a3257b9aa168b100031d\/jose-pablo-cantillo-profile.jpg","version":42,"id":"20191","lastModified":"1301901229000","name":"Jose Pablo Cantillo","type":"Person","_key":"12712"} +{"label":"Brian Taylor","version":61,"id":"20192","lastModified":"1301901121000","name":"Brian Taylor","type":"Person","_key":"12713"} +{"label":"Mark Neveldine","version":69,"id":"20193","lastModified":"1301901157000","name":"Mark Neveldine","type":"Person","_key":"12714"} +{"label":"Zodiac","description":"A San Francisco cartoonist becomes an amateur detective obsessed with tracking down the Zodiac killer.","id":"1949","runtime":157,"imdbId":"tt0443706","trailer":"http:\/\/www.youtube.com\/watch?v=dJ0oNfjzx4k","homepage":"http:\/\/www.zodiacmovie.com\/","version":254,"lastModified":"1301901353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4d475d445e73d6570400406d\/zodiac-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Crime","title":"Zodiac","releaseDate":1172793600000,"language":"en","type":"Movie","_key":"12715"} +{"label":"Ed Setrakian","version":21,"id":"20210","lastModified":"1301901364000","name":"Ed Setrakian","type":"Person","_key":"12716"} +{"label":"John Getz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c3d1b2d5e73d6035f00000c\/john-getz-profile.jpg","version":60,"id":"20211","lastModified":"1301901410000","name":"John Getz","type":"Person","_key":"12717"} +{"label":"Lucky You","description":"A hotshot poker player tries to win a tournament in Vegas, but is fighting a losing battle with his personal problems.","id":"1950","runtime":124,"imdbId":"tt0338216","homepage":"http:\/\/luckyyoumovie.warnerbros.com\/","version":172,"lastModified":"1301903387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/875\/4bc91424017a3c57fe007875\/lucky-you-mid.jpg","studio":"Village Roadshow Pictures","genre":"Drama","title":"Lucky You","releaseDate":1177977600000,"language":"en","type":"Movie","_key":"12718"} +{"label":"Debra Messing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17c\/4c8fbb4e7b9aa1768800017c\/debra-messing-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bDebra Lynn Messing (born August 15, 1968)  best known for her role as Grace Adler in the sitcom Will & Grace.<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">Messing was born in the Brooklyn borough of New York City, the daughter of Sandra (n\u00e9e Simons), who has work","version":48,"birthday":"-43549200000","id":"23959","birthplace":"Brooklyn, New York, USA","lastModified":"1301901279000","name":"Debra Messing","type":"Person","_key":"12719"} +{"label":"Manderlay","description":"In 1933, after leaving Dogville, Grace Margaret Mulligan sees a slave being punished at a cotton farm called Manderlay. Officially slavery is illegal and Grace stands up against the owners of the farm. She stays with some gangsters in Manderlay and tries to influence the situation. But when harvest time comes Grace sees the social and economic reality of Manderlay. ","id":"1951","runtime":139,"imdbId":"tt0342735","trailer":"http:\/\/www.youtube.com\/watch?v=1072","version":165,"lastModified":"1301903829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4bc91427017a3c57fe00787e\/manderlay-mid.jpg","studio":"Film I Vast","genre":"Drama","title":"Manderlay","releaseDate":1116201600000,"language":"en","type":"Movie","_key":"12720"} +{"label":"USA - Land of Opportunities","description":"No overview found.","id":"1952","title":"USA - Land of Opportunities","language":"en","lastModified":"1301906763000","version":32,"type":"Movie","_key":"12721"} +{"label":"Wasington","description":"No overview found.","id":"1953","runtime":0,"version":41,"lastModified":"1301907438000","studio":"Zentropa Entertainments","title":"Wasington","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"12722"} +{"label":"The Butterfly Effect","description":"A young man blocks out harmful memories of significant events of his life. As he grows up, he finds a way to remember these lost memories and a supernatural way to alter his life.","id":"1954","runtime":114,"imdbId":"tt0289879","trailer":"http:\/\/www.youtube.com\/watch?v=u5dVQfzjDS4","version":247,"lastModified":"1301901398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/612\/4d1ae9a65e73d6083400b612\/the-butterfly-effect-mid.jpg","studio":"Bender-Spink Inc.","genre":"Science Fiction","title":"The Butterfly Effect","releaseDate":1074729600000,"language":"en","type":"Movie","_key":"12723"} +{"label":"Eric Bress","version":37,"id":"20218","lastModified":"1301901442000","name":"Eric Bress","type":"Person","_key":"12724"} +{"label":"Ashton Kutcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4c3232835e73d6496500000f\/ashton-kutcher-profile.jpg","biography":"Christopher Ashton Kutcher known as Ashton Kutcher, is an American actor, producer, former fashion model and comedian, best known for his portrayal of Michael Kelso in the Fox sitcom That '70s Show. He also created, produced and hosted Punk'd, and played lead roles in the Hollywood films Dude, Where's My Car?, Just Married, The Butterfly Effect, The Guardian, and What Happens in Vegas. He is also the producer and co-creator of the supernatural TV show Room 401 and the reality TV show Beauty and ","version":135,"birthday":"255654000000","id":"18976","birthplace":"Cedar Rapids, Iowa, USA","lastModified":"1302011631000","name":"Ashton Kutcher","type":"Person","_key":"12725"} +{"label":"Elden Henson","version":54,"id":"20220","lastModified":"1301901415000","name":"Elden Henson","type":"Person","_key":"12726"} +{"label":"Nathaniel DeVeaux","version":34,"id":"20221","lastModified":"1301901365000","name":"Nathaniel DeVeaux","type":"Person","_key":"12727"} +{"label":"John Patrick Amedori","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e6\/4d925e0e7b9aa119940003e6\/john-patrick-amedori-profile.jpg","version":54,"birthday":"545868000000","id":"43464","birthplace":"Baltimore, Maryland, USA","lastModified":"1301901180000","name":"John Patrick Amedori","type":"Person","_key":"12728"} +{"label":"The Elephant Man","description":"A Victorian surgeon rescues a heavily disfigured man who is mistreated while scraping a living as a side-show freak. Behind his monstrous facade, there is revealed a person of intelligence and sensitivity.","id":"1955","runtime":125,"imdbId":"tt0080678","trailer":"http:\/\/www.youtube.com\/watch?v=919","version":139,"lastModified":"1301903923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d3\/4d6aa3995e73d66b300021d3\/the-elephant-man-mid.jpg","studio":"Brooksfilms Ltd.","genre":"Drama","title":"The Elephant Man","releaseDate":349056000000,"language":"en","tagline":"I am not an animal! I am a human being! I...am...a man!","type":"Movie","_key":"12729"} +{"label":"Michael Elphick","version":31,"id":"1821","lastModified":"1301901294000","name":"Michael Elphick","type":"Person","_key":"12730"} +{"label":"Phoebe Nicholls","version":28,"id":"3930","lastModified":"1301901406000","name":"Phoebe Nicholls","type":"Person","_key":"12731"} +{"label":"Gerry","description":"Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble. An independent film with very little dialog and almost no action this is not a film for the masses. It's a very realistic portrayal of a situation, a slow and thoughtful film which will appeal to the those who can appreciate such things.","id":"1956","runtime":103,"imdbId":"tt0302674","version":138,"lastModified":"1301905747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b0\/4bc9142a017a3c57fe0078b0\/gerry-mid.jpg","studio":"My Cactus","genre":"Drama","title":"Gerry","releaseDate":1010793600000,"language":"en","type":"Movie","_key":"12732"} +{"label":"Enough","description":"On the run from an abusive husband, a young mother begins to train herself to fight back.","id":"1957","runtime":115,"imdbId":"tt0278435","trailer":"http:\/\/www.youtube.com\/watch?v=kDBpzvxxhvk","version":139,"lastModified":"1302025868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b9\/4bc9142d017a3c57fe0078b9\/enough-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Enough","releaseDate":1022198400000,"language":"en","type":"Movie","_key":"12733"} +{"label":"Bill Campbell","version":36,"id":"20215","lastModified":"1301901228000","name":"Bill Campbell","type":"Person","_key":"12734"} +{"label":"Tessa Allen","version":18,"id":"20216","lastModified":"1301901327000","name":"Tessa Allen","type":"Person","_key":"12735"} +{"label":"Dan Futterman","version":29,"id":"5346","lastModified":"1301901242000","name":"Dan Futterman","type":"Person","_key":"12736"} +{"label":"Janet Carroll","version":24,"id":"20217","lastModified":"1301901834000","name":"Janet Carroll","type":"Person","_key":"12737"} +{"label":"8 femmes","description":"The patron of a household is found murdered. 7 women, each of them in her own mysterious way, is linked to this man and could be the murderess. Satirical musical by French art house director Ozon.","id":"1958","runtime":111,"imdbId":"tt0283832","version":152,"lastModified":"1301902022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c2\/4bc9142e017a3c57fe0078c2\/8-femmes-mid.jpg","studio":"Centre National de la Cin\u00e9matographie","genre":"Comedy","title":"8 femmes","releaseDate":978912000000,"language":"en","type":"Movie","_key":"12738"} +{"label":"Danielle Darrieux","version":37,"id":"20233","lastModified":"1301901327000","name":"Danielle Darrieux","type":"Person","_key":"12739"} +{"label":"Fanny Ardant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47d\/4cd744c75e73d676ce00047d\/fanny-ardant-profile.jpg","version":45,"id":"20234","lastModified":"1301901273000","name":"Fanny Ardant","type":"Person","_key":"12740"} +{"label":"Firmine Richard","version":26,"id":"20235","lastModified":"1301901467000","name":"Firmine Richard","type":"Person","_key":"12741"} +{"label":"Swept from the Sea","description":"No overview found.","id":"1959","runtime":113,"imdbId":"tt0120257","version":165,"lastModified":"1301904463000","studio":"Phoenix Pictures","genre":"Drama","title":"Swept from the Sea","releaseDate":885513600000,"language":"en","type":"Movie","_key":"12742"} +{"label":"Beeban Kidron","version":29,"id":"20237","lastModified":"1301901386000","name":"Beeban Kidron","type":"Person","_key":"12743"} +{"label":"Vincent Perez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b66\/4be573f2017a3c35bb000b66\/vincent-perez-profile.jpg","version":60,"id":"20239","lastModified":"1301901265000","name":"Vincent Perez","type":"Person","_key":"12744"} +{"label":"Zo\u00eb Wanamaker","version":26,"id":"20240","lastModified":"1301901992000","name":"Zo\u00eb Wanamaker","type":"Person","_key":"12745"} +{"label":"Tony Haygarth","version":24,"id":"20241","lastModified":"1301903111000","name":"Tony Haygarth","type":"Person","_key":"12746"} +{"label":"Fiona Victory","version":17,"id":"20242","lastModified":"1301901755000","name":"Fiona Victory","type":"Person","_key":"12747"} +{"label":"Roger Ashton-Griffiths","version":51,"id":"20243","lastModified":"1301901229000","name":"Roger Ashton-Griffiths","type":"Person","_key":"12748"} +{"label":"William Scott-Masson","version":17,"id":"20244","lastModified":"1301901755000","name":"William Scott-Masson","type":"Person","_key":"12749"} +{"label":"Eve Matheson","version":17,"id":"20245","lastModified":"1301901755000","name":"Eve Matheson","type":"Person","_key":"12750"} +{"label":"Dave Hill","version":19,"id":"20246","lastModified":"1301901755000","name":"Dave Hill","type":"Person","_key":"12751"} +{"label":"Tom Bell","version":41,"id":"22169","lastModified":"1302011480000","name":"Tom Bell","type":"Person","_key":"12752"} +{"label":"Evil Dead Series","description":"The Evil Dead is a series of media that originated from a trilogy of horror films created by Sam Raimi. The films focus on the protagonist, Ashley \"Ash\" J. Williams, who is played by Bruce Campbell. Ash deals with \"deadites\", which are demons created by the Necronomicon.","id":"1960","version":65,"lastModified":"1301906620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4d62a4775e73d60c6d003f3c\/evil-dead-series-mid.jpg","title":"Evil Dead Series","language":"en","type":"Movie","_key":"12753"} +{"label":"My Name Is Bruce","description":"B Movie Legend Bruce Campbell is mistaken for his character Ash from the Evil Dead trilogy and forced to fight a real monster in a small town in Oregon.","id":"1961","runtime":84,"imdbId":"tt0489235","trailer":"http:\/\/www.youtube.com\/watch?v=754","version":190,"lastModified":"1301904071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e9\/4bc91431017a3c57fe0078e9\/my-name-is-bruce-mid.jpg","studio":"Dark Horse Entertainment","genre":"Comedy","title":"My Name Is Bruce","releaseDate":1191196800000,"language":"en","type":"Movie","_key":"12754"} +{"label":"Grace Thorsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f7\/4c2217467b9aa137530000f7\/grace-thorsen-profile.jpg","version":17,"id":"112543","lastModified":"1301901811000","name":"Grace Thorsen","type":"Person","_key":"12755"} +{"label":"Adam Boyd","version":17,"id":"20250","lastModified":"1301901673000","name":"Adam Boyd","type":"Person","_key":"12756"} +{"label":"Mike Estes","version":16,"id":"20251","lastModified":"1301901635000","name":"Mike Estes","type":"Person","_key":"12757"} +{"label":"Janelle Farber","version":16,"id":"20252","lastModified":"1301901635000","name":"Janelle Farber","type":"Person","_key":"12758"} +{"label":"Dani Kelly","version":16,"id":"20253","lastModified":"1301901552000","name":"Dani Kelly","type":"Person","_key":"12759"} +{"label":"Was n\u00fctzt die Liebe in Gedanken","description":"No overview found.","id":"1962","runtime":89,"imdbId":"tt0325733","homepage":"http:\/\/www.liebe-in-gedanken.de\/index.php?modul=home&mode=flash","version":51,"lastModified":"1301908625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/190\/4d56aeb57b9aa15d01002190\/was-n-tzt-die-liebe-in-gedanken-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Was n\u00fctzt die Liebe in Gedanken","releaseDate":1076544000000,"language":"en","type":"Movie","_key":"12760"} +{"label":"Achim von Borries","version":24,"id":"20254","lastModified":"1301901690000","name":"Achim von Borries","type":"Person","_key":"12761"} +{"label":"Thure Lindhardt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/555\/4c4483885e73d60f39000555\/thure-lindhardt-profile.jpg","version":41,"id":"20258","lastModified":"1302063844000","name":"Thure Lindhardt","type":"Person","_key":"12762"} +{"label":"Christoph Luser","version":26,"id":"20260","lastModified":"1301902027000","name":"Christoph Luser","type":"Person","_key":"12763"} +{"label":"Marius Frey","version":17,"id":"20261","lastModified":"1301903113000","name":"Marius Frey","type":"Person","_key":"12764"} +{"label":"Tino Mewes","version":25,"id":"20262","lastModified":"1301901354000","name":"Tino Mewes","type":"Person","_key":"12765"} +{"label":"The Bow","description":"No overview found.","id":"1963","runtime":89,"imdbId":"tt0456470","version":164,"lastModified":"1301904972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/917\/4bc91437017a3c57fe007917\/hwal-mid.jpg","studio":"Kim Ki-Duk Film","genre":"Drama","title":"The Bow","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"12766"} +{"label":"Si-jeok Seo","version":19,"id":"20263","lastModified":"1301901983000","name":"Si-jeok Seo","type":"Person","_key":"12767"} +{"label":"Gook-hwan Jeon","version":19,"id":"20264","lastModified":"1301901983000","name":"Gook-hwan Jeon","type":"Person","_key":"12768"} +{"label":"Seong-hwang Jeon","version":20,"id":"20265","lastModified":"1301902007000","name":"Seong-hwang Jeon","type":"Person","_key":"12769"} +{"label":"Ein Freund von mir","description":"No overview found.","id":"1964","runtime":84,"imdbId":"tt0441762","homepage":"http:\/\/www.einfreundvonmir.de\/","version":97,"lastModified":"1301916148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/920\/4bc91437017a3c57fe007920\/ein-freund-von-mir-mid.jpg","studio":"Film 1","genre":"Drama","title":"Ein Freund von mir","releaseDate":1160006400000,"language":"en","type":"Movie","_key":"12770"} +{"label":"Michael Wittenborn","version":17,"id":"20266","lastModified":"1301902015000","name":"Michael Wittenborn","type":"Person","_key":"12771"} +{"label":"Jan Ole Gerster","version":17,"id":"20267","lastModified":"1301902015000","name":"Jan Ole Gerster","type":"Person","_key":"12772"} +{"label":"Jens M\u00fcnchow","version":19,"id":"20270","lastModified":"1301901912000","name":"Jens M\u00fcnchow","type":"Person","_key":"12773"} +{"label":"A Perfect Murder","description":"Millionaire industrialist Steven Taylor is a man who has everything but what he craves most: the love and fidelity of his wife. A hugely successful player in the New York financial world, he considers her to be his most treasured acquisition. But she needs more than simply the role of dazzling accessory.","id":"1965","runtime":107,"imdbId":"tt0120787","version":132,"lastModified":"1301902654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/929\/4bc91438017a3c57fe007929\/a-perfect-murder-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Suspense","title":"A Perfect Murder","releaseDate":897004800000,"language":"en","tagline":"A powerful husband. An unfaithful wife. A jealous lover. All of them have a motive. Each of them has a plan.","type":"Movie","_key":"12774"} +{"label":"Sarita Choudhury","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/414\/4cc1a5155e73d67782001414\/sarita-choudhury-profile.jpg","version":34,"id":"20275","lastModified":"1302060488000","name":"Sarita Choudhury","type":"Person","_key":"12775"} +{"label":"Constance Towers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/474\/4bf2b9d5017a3c3213000474\/constance-towers-profile.jpg","version":35,"id":"20276","lastModified":"1301901570000","name":"Constance Towers","type":"Person","_key":"12776"} +{"label":"David Suchet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21b\/4c46a2417b9aa15ddf00021b\/david-suchet-profile.jpg","version":58,"id":"20277","lastModified":"1301901146000","name":"David Suchet","type":"Person","_key":"12777"} +{"label":"Alexander","description":"Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians he leads his Army across the then known world venturing further than any Westerner had ever gone all the way to India.","id":"1966","runtime":176,"imdbId":"tt0346491","trailer":"http:\/\/www.youtube.com\/watch?v=eTDYKkUZJ6o","version":234,"lastModified":"1301906829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4cae3d555e73d652b000008d\/alexander-mid.jpg","studio":"Intermedia Films","genre":"Adventure","title":"Alexander","releaseDate":1101254400000,"language":"en","type":"Movie","_key":"12778"} +{"label":"Jessie Kamm","version":22,"id":"20278","lastModified":"1301901840000","name":"Jessie Kamm","type":"Person","_key":"12779"} +{"label":"Fiona O'Shaughnessy","version":29,"id":"20279","lastModified":"1301901494000","name":"Fiona O'Shaughnessy","type":"Person","_key":"12780"} +{"label":"Patrick Carroll","version":22,"id":"20280","lastModified":"1301901696000","name":"Patrick Carroll","type":"Person","_key":"12781"} +{"label":"Peter Williamson","version":21,"id":"20281","lastModified":"1301901552000","name":"Peter Williamson","type":"Person","_key":"12782"} +{"label":"John Kavanagh","version":29,"id":"20282","lastModified":"1301901783000","name":"John Kavanagh","type":"Person","_key":"12783"} +{"label":"Gary Stretch","version":35,"id":"20284","lastModified":"1301901561000","name":"Gary Stretch","type":"Person","_key":"12784"} +{"label":"F\u00e9odor Atkine","version":53,"id":"20285","lastModified":"1301901500000","name":"F\u00e9odor Atkine","type":"Person","_key":"12785"} +{"label":"Toby Kebbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4ce021757b9aa168b00000f2\/toby-kebbell-profile.jpg","version":53,"id":"20286","lastModified":"1301906454000","name":"Toby Kebbell","type":"Person","_key":"12786"} +{"label":"Laird Macintosh","version":23,"id":"20287","lastModified":"1301901646000","name":"Laird Macintosh","type":"Person","_key":"12787"} +{"label":"Francisco Bosch","version":20,"id":"20288","lastModified":"1301903109000","name":"Francisco Bosch","type":"Person","_key":"12788"} +{"label":"Neil Jackson","version":48,"id":"20289","lastModified":"1301901573000","name":"Neil Jackson","type":"Person","_key":"12789"} +{"label":"Garrett Lombard","version":20,"id":"20290","lastModified":"1301903112000","name":"Garrett Lombard","type":"Person","_key":"12790"} +{"label":"Chris Aberdein","version":21,"id":"20291","lastModified":"1301901551000","name":"Chris Aberdein","type":"Person","_key":"12791"} +{"label":"Ask the Dust","description":"Colin Farrell ('The New World', 'Alexander') and Salma Hayek ('Frida', 'Once Upon a Time in Mexico') sizzle in this adaptation of John Fante's classic novel of desire in the desert.Farrell plays Arturo Bandini, a would-be writer seeking fame, fortune and a blue-eyed blonde in 1930's Los Angeles. Instead, he finds Mexican barmaid Camilla (Hayek), who hopes to blend into Anglo society by marrying a wealthy blue-blood. With remarkable performances, stunning photography, and direction by Academy Awa","id":"1967","runtime":117,"imdbId":"tt0384814","version":200,"lastModified":"1301903186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/963\/4bc91443017a3c57fe007963\/ask-the-dust-mid.jpg","studio":"Cruise\/Wagner Productions","genre":"Drama","title":"Ask the Dust","releaseDate":1138838400000,"language":"en","type":"Movie","_key":"12792"} +{"label":"Eileen Atkins","version":55,"id":"20300","lastModified":"1301901253000","name":"Eileen Atkins","type":"Person","_key":"12793"} +{"label":"Justin Kirk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f3\/4c95d1e27b9aa10d5a0002f3\/justin-kirk-profile.jpg","version":27,"id":"20301","lastModified":"1301901851000","name":"Justin Kirk","type":"Person","_key":"12794"} +{"label":"Tamara Craig Thomas","version":20,"id":"20302","lastModified":"1301901624000","name":"Tamara Craig Thomas","type":"Person","_key":"12795"} +{"label":"Dion Basco","version":17,"id":"20303","lastModified":"1301903110000","name":"Dion Basco","type":"Person","_key":"12796"} +{"label":"Jeremy Crutchley","version":37,"id":"20304","lastModified":"1301902029000","name":"Jeremy Crutchley","type":"Person","_key":"12797"} +{"label":"Robert Towne","version":71,"id":"11057","lastModified":"1301901262000","name":"Robert Towne","type":"Person","_key":"12798"} +{"label":"Fools Rush In","description":"Alex Whitman (Matthew Perry) is a designer from New York City who is sent to Las Vegas to supervise the construction of a nightclub that his firm has been hired to build. Alex is a straight-laced WASP-ish type who, while enjoying a night on the town, meets Isabel Fuentes (Salma Hayek), a free-spirited Mexican-American photographer. Alex and Isabel are overtaken by lust at first sight and end up sp","id":"1968","runtime":109,"imdbId":"tt0119141","version":134,"lastModified":"1301902916000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/865\/4d0a95495e73d613d5000865\/fools-rush-in-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Fools Rush In","releaseDate":855878400000,"language":"en","type":"Movie","_key":"12799"} +{"label":"Matthew Perry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4c5ffebc5e73d634620000fa\/matthew-perry-profile.jpg","version":61,"id":"14408","lastModified":"1301904087000","name":"Matthew Perry","type":"Person","_key":"12800"} +{"label":"Angelina Torres","version":17,"id":"20360","lastModified":"1301903114000","name":"Angelina Torres","type":"Person","_key":"12801"} +{"label":"John Bennett Perry","version":24,"id":"20361","lastModified":"1301903112000","name":"John Bennett Perry","type":"Person","_key":"12802"} +{"label":"Jill Clayburgh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4ce5a6a47b9aa179bc0000ca\/jill-clayburgh-profile.jpg","version":44,"id":"20362","lastModified":"1301901190000","name":"Jill Clayburgh","type":"Person","_key":"12803"} +{"label":"Suzanne Snyder","version":33,"id":"20363","lastModified":"1301901369000","name":"Suzanne Snyder","type":"Person","_key":"12804"} +{"label":"Mark Adair-Rios","version":18,"id":"4511","lastModified":"1301901478000","name":"Mark Adair-Rios","type":"Person","_key":"12805"} +{"label":"Stanley DeSantis","version":19,"id":"4171","lastModified":"1301901383000","name":"Stanley DeSantis","type":"Person","_key":"12806"} +{"label":"Josh Cruze","version":18,"id":"4665","lastModified":"1301901432000","name":"Josh Cruze","type":"Person","_key":"12807"} +{"label":"Angela Lanza","version":26,"id":"4666","lastModified":"1301901280000","name":"Angela Lanza","type":"Person","_key":"12808"} +{"label":"Bandidas","description":"Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance\u2026and a few good heists. ","id":"1969","runtime":93,"imdbId":"tt0416496","trailer":"http:\/\/www.youtube.com\/watch?v=1427","version":229,"lastModified":"1301901325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d9\/4c3b6d3d5e73d671d10001d9\/bandidas-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Bandidas","releaseDate":1137542400000,"language":"en","tagline":"Being BAD never looked so GOOD!","type":"Movie","_key":"12809"} +{"label":"Joachim R\u00f8nning","version":26,"id":"20307","lastModified":"1301901436000","name":"Joachim R\u00f8nning","type":"Person","_key":"12810"} +{"label":"Espen Sandberg","version":25,"id":"20308","lastModified":"1301901484000","name":"Espen Sandberg","type":"Person","_key":"12811"} +{"label":"Dwight Yoakam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4c3d17cd5e73d6035f000007\/dwight-yoakam-profile.jpg","version":53,"id":"20309","lastModified":"1301901247000","name":"Dwight Yoakam","type":"Person","_key":"12812"} +{"label":"The Grudge","description":"Karen Davis is an American Nurse moves to Tokyo and encounter a supernatural spirit who is vengeful and often possesses its victims. A series of horrifying and mysterious deaths start to occur, with the spirit passing its curse onto each victim. Karen must now find away to break this spell, before she becomes its next victim.","id":"1970","runtime":92,"imdbId":"tt0391198","trailer":"http:\/\/www.youtube.com\/watch?v=722","version":223,"lastModified":"1301901878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4c7ab66c5e73d613d6000491\/the-grudge-mid.jpg","studio":"Ghost House Pictures","genre":"Horror","title":"The Grudge","releaseDate":1098403200000,"language":"en","tagline":"It never forgives. It never forgets.","type":"Movie","_key":"12813"} +{"label":"Jason Behr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/817\/4d4c39117b9aa13ab8007817\/jason-behr-profile.jpg","version":30,"id":"20386","lastModified":"1301901206000","name":"Jason Behr","type":"Person","_key":"12814"} +{"label":"Clea DuVall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/537\/4be0edf3017a3c35c1000537\/clea-duvall-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Clea Helen D'Etienne DuVall<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> is an American actress, born September 25, 1977 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Los Angeles<\/st1:City>, <st1:State w:st=\"on\">California<\/st1:State><\/st1:place>. She is best known for her role as Sofie on th","version":73,"id":"20387","lastModified":"1302036582000","name":"Clea DuVall","type":"Person","_key":"12815"} +{"label":"KaDee Strickland","version":26,"id":"20388","lastModified":"1301901444000","name":"KaDee Strickland","type":"Person","_key":"12816"} +{"label":"Rosa Blasi","version":19,"id":"20389","lastModified":"1301901645000","name":"Rosa Blasi","type":"Person","_key":"12817"} +{"label":"Takashi Shimizu","version":39,"id":"20310","lastModified":"1301901445000","name":"Takashi Shimizu","type":"Person","_key":"12818"} +{"label":"Ju-on","description":"No overview found.","id":"1972","version":254,"lastModified":"1302025723000","genre":"Horror","title":"Ju-on","language":"en","type":"Movie","_key":"12819"} +{"label":"The Grudge","description":"No overview found.","id":"1974","version":173,"lastModified":"1301904758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4bc9144e017a3c57fe0079bc\/the-grudge-mid.jpg","genre":"Horror","title":"The Grudge","language":"en","type":"Movie","_key":"12820"} +{"label":"The Grudge 2","description":"In Tokyo, a young woman (Tamblyn) is exposed to the same mysterious curse that afflicted her sister (Gellar). The supernatural force, which fills a person with rage before spreading to its next victim, brings together a group of previously unrelated people who attempt to unlock its secret to save their lives.","id":"1975","runtime":102,"imdbId":"tt0433386","trailer":"http:\/\/www.youtube.com\/watch?v=111","homepage":"http:\/\/www.sonypictures.com\/homevideo\/thegrudge2\/","version":199,"lastModified":"1301903618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c5\/4bc9144f017a3c57fe0079c5\/the-grudge-2-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Horror","title":"The Grudge 2","releaseDate":1160611200000,"language":"en","tagline":"What Was Once Trapped, Will Now Be Unleashed","type":"Movie","_key":"12821"} +{"label":"Arielle Kebbel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4bcc0b98017a3c0f30000059\/arielle-kebbel-profile.jpg","version":63,"id":"20373","lastModified":"1302012203000","name":"Arielle Kebbel","type":"Person","_key":"12822"} +{"label":"Teresa Palmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42a\/4cf106517b9aa13eeb00042a\/teresa-palmer-profile.jpg","version":72,"id":"20374","lastModified":"1301904060000","name":"Teresa Palmer","type":"Person","_key":"12823"} +{"label":"Misako Uno","version":17,"id":"20375","lastModified":"1301903116000","name":"Misako Uno","type":"Person","_key":"12824"} +{"label":"Sarah Roemer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19d\/4bcc8558017a3c0f3400019d\/sarah-roemer-profile.jpg","version":31,"id":"20376","lastModified":"1301904084000","name":"Sarah Roemer","type":"Person","_key":"12825"} +{"label":"Matthew Knight","version":20,"id":"20377","lastModified":"1301901633000","name":"Matthew Knight","type":"Person","_key":"12826"} +{"label":"Ohga Tanaka","version":17,"id":"20378","lastModified":"1301903116000","name":"Ohga Tanaka","type":"Person","_key":"12827"} +{"label":"Christopher Cousins","version":21,"id":"20379","lastModified":"1301901643000","name":"Christopher Cousins","type":"Person","_key":"12828"} +{"label":"Paul Jarrett","version":29,"id":"20380","lastModified":"1301901566000","name":"Paul Jarrett","type":"Person","_key":"12829"} +{"label":"Jenna Dewan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4c7978455e73d613d70001cb\/jenna-dewan-profile.jpg","biography":"Jenna Dewan is a former model and dancer and was born on December 3, 1980 in Hartford Connecticut. Jenna grew up in Grapevine, Texas and discovered a love for dancing at the age of five. She is a graduate of Grapevine High School and has also attended the University of Southern Califronia, where she was a member of Pi Beta Phi. Jenna was discovered by a dance agent and toured alongside some of the greatest in music entertainment, most notably Janet Jackson and Ricky Martin. She has also appeared","version":39,"birthday":"344646000000","id":"20381","birthplace":"Hartford, Connecticut, USA","lastModified":"1301901239000","name":"Jenna Dewan","type":"Person","_key":"12830"} +{"label":"Jezebel","description":"No overview found.","id":"1976","runtime":103,"imdbId":"tt0030287","version":113,"lastModified":"1301906343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d2\/4bc91450017a3c57fe0079d2\/jezebel-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Jezebel","releaseDate":-1003190400000,"language":"en","type":"Movie","_key":"12831"} +{"label":"George Brent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4c766d9e7b9aa16a0b00015c\/george-brent-profile.jpg","version":38,"id":"20364","lastModified":"1301904083000","name":"George Brent","type":"Person","_key":"12832"} +{"label":"Margaret Lindsay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eb2\/4be889a8017a3c35c1000eb2\/margaret-lindsay-profile.jpg","version":32,"id":"20365","lastModified":"1301901679000","name":"Margaret Lindsay","type":"Person","_key":"12833"} +{"label":"Fay Bainter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b8\/4c599e777b9aa151f50004b8\/fay-bainter-profile.jpg","version":29,"id":"20366","lastModified":"1301901473000","name":"Fay Bainter","type":"Person","_key":"12834"} +{"label":"Richard Cromwell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ee\/4c51a63c7b9aa13d4a0001ee\/richard-cromwell-profile.jpg","version":19,"id":"20367","lastModified":"1301901473000","name":"Richard Cromwell","type":"Person","_key":"12835"} +{"label":"Spring Byington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f74\/4be98f05017a3c35b5000f74\/spring-byington-profile.jpg","version":34,"id":"20369","lastModified":"1301901839000","name":"Spring Byington","type":"Person","_key":"12836"} +{"label":"Irving Pichel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b8\/4be88582017a3c35b40011b8\/irving-pichel-profile.jpg","version":39,"id":"20370","lastModified":"1301901235000","name":"Irving Pichel","type":"Person","_key":"12837"} +{"label":"The Grudge 3","description":"Jake, the sole survivor of The Grudge 2 massacre, is tortured by chilling visions of Kayako and Toshio that have led to his hospitalization. Jake's caretaker, Dr. Sullivan is determined to investigate his horrifying tales. She explores his Chicago home, finding another family on the brink of succumbing to the curse. It becomes clear that Jake's terrifying stories are true, and a mysterious Japanese woman may be the only hope of banishing the spirits forever...unless her plan destroys them all.","id":"1977","runtime":90,"imdbId":"tt1053859","trailer":"http:\/\/www.youtube.com\/watch?v=gwbOej9r6K4","homepage":"http:\/\/www.sonypictures.com\/homevideo\/thegrudge3\/","version":207,"lastModified":"1301915832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4bcc317a017a3c0f2c0000e6\/the-grudge-3-mid.jpg","studio":"Stage 6 Films","genre":"Horror","title":"The Grudge 3","releaseDate":1242086400000,"language":"en","tagline":"You can't escape the curse.","type":"Movie","_key":"12838"} +{"label":"Toby Wilkins","version":20,"id":"82939","lastModified":"1301902301000","name":"Toby Wilkins","type":"Person","_key":"12839"} +{"label":"Johanna Braddy","version":28,"id":"95038","lastModified":"1301901201000","name":"Johanna Braddy","type":"Person","_key":"12840"} +{"label":"Gil McKinney","version":17,"id":"117522","lastModified":"1301902475000","name":"Gil McKinney","type":"Person","_key":"12841"} +{"label":"Emi Ikehata","version":16,"id":"117523","lastModified":"1301902475000","name":"Emi Ikehata","type":"Person","_key":"12842"} +{"label":"Jadie-Rose Hobson","version":17,"id":"117524","lastModified":"1301902187000","name":"Jadie-Rose Hobson","type":"Person","_key":"12843"} +{"label":"Beau Mirchoff","version":17,"id":"117525","lastModified":"1301902714000","name":"Beau Mirchoff","type":"Person","_key":"12844"} +{"label":"Aiko Horiuchi","version":16,"id":"117526","lastModified":"1301902645000","name":"Aiko Horiuchi","type":"Person","_key":"12845"} +{"label":"Shimba Tsuchiya","version":16,"id":"117527","lastModified":"1301902301000","name":"Shimba Tsuchiya","type":"Person","_key":"12846"} +{"label":"Stage Fright","description":"A struggling actress tries to help a friend prove his innocence when he's accused of murdering the husband of a high society entertainer.","id":"1978","runtime":110,"imdbId":"tt0042994","version":135,"lastModified":"1301906640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4bc91455017a3c57fe0079f9\/stage-fright-mid.jpg","studio":"Warner Bros. Pictures","genre":"Mystery","title":"Stage Fright","releaseDate":-626572800000,"language":"en","type":"Movie","_key":"12847"} +{"label":"Jane Wyman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/283\/4c051a5d017a3c7e87000283\/jane-wyman-profile.jpg","version":37,"id":"20391","lastModified":"1301901570000","name":"Jane Wyman","type":"Person","_key":"12848"} +{"label":"Michael Wilding","version":25,"id":"20392","lastModified":"1301901513000","name":"Michael Wilding","type":"Person","_key":"12849"} +{"label":"Richard Todd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b4\/4bd59f3c017a3c2e740001b4\/richard-todd-profile.jpg","version":29,"id":"20393","lastModified":"1301901459000","name":"Richard Todd","type":"Person","_key":"12850"} +{"label":"Alastair Sim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/232\/4c87b61f7b9aa1545f000232\/alastair-sim-profile.jpg","version":43,"id":"20394","lastModified":"1301901349000","name":"Alastair Sim","type":"Person","_key":"12851"} +{"label":"Sybil Thorndike","version":16,"id":"20399","lastModified":"1301901912000","name":"Sybil Thorndike","type":"Person","_key":"12852"} +{"label":"Fantastic Four: Rise of the Silver Surfer","description":"The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.","id":"1979","runtime":92,"imdbId":"tt0486576","trailer":"http:\/\/www.youtube.com\/watch?v=Y3EC_V9A-rw","version":329,"lastModified":"1301901142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a56\/4bc91466017a3c57fe007a56\/fantastic-four-rise-of-the-silver-surfer-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Fantastic Four: Rise of the Silver Surfer","releaseDate":1181865600000,"language":"en","tagline":"Discover the secret of the Surfer.","type":"Movie","_key":"12853"} +{"label":"Tim Story","version":38,"id":"20400","lastModified":"1301901485000","name":"Tim Story","type":"Person","_key":"12854"} +{"label":"Julian McMahon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/427\/4c439e495e73d60f38000427\/julian-mcmahon-profile.jpg","biography":"Julian Dana William McMahon is an australian actor and former fashion model. His best known roles are \"Cole Turner\" from the Warner Bros TV series \"Charmed\" and the role of plastic surgeon \"Christian Troy\" from the Emmy and Golden Globe-winning TV series \"Nip\/Tuck\". ","version":52,"birthday":"-45190800000","id":"20402","birthplace":"Sydney, New South Wales, Australia","lastModified":"1301901165000","name":"Julian McMahon","type":"Person","_key":"12855"} +{"label":"Vanessa Minnillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34d\/4d8a36df7b9aa13ae400034d\/vanessa-minnillo-profile.jpg","version":31,"id":"20404","lastModified":"1301901274000","name":"Vanessa Minnillo","type":"Person","_key":"12856"} +{"label":"Brian Posehn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35f\/4d8a37377b9aa13ae100035f\/brian-posehn-profile.jpg","version":46,"id":"20405","lastModified":"1301901242000","name":"Brian Posehn","type":"Person","_key":"12857"} +{"label":"Bra Boys","description":"A film about the cultural evolution of the Sydney beach side suburb of Maroubra and the social struggle faced by it's youth - the notorious surf gang known as the Bra Boys.","id":"1980","runtime":90,"imdbId":"tt0951318","version":170,"lastModified":"1301903943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a64\/4bc91468017a3c57fe007a64\/bra-boys-mid.jpg","studio":"Bradahood Productions","genre":"Comedy","title":"Bra Boys","releaseDate":1173225600000,"language":"en","type":"Movie","_key":"12858"} +{"label":"Jai Abberton","version":18,"id":"20407","lastModified":"1301901512000","name":"Jai Abberton","type":"Person","_key":"12859"} +{"label":"Koby Abberton","version":19,"id":"20408","lastModified":"1301901456000","name":"Koby Abberton","type":"Person","_key":"12860"} +{"label":"Sunny Abberton","version":24,"id":"20409","lastModified":"1301901591000","name":"Sunny Abberton","type":"Person","_key":"12861"} +{"label":"Macario De Souza","version":24,"id":"20410","lastModified":"1301901696000","name":"Macario De Souza","type":"Person","_key":"12862"} +{"label":"Les Aventures des Schtroumpfs","description":"No overview found.","id":"1983","runtime":90,"imdbId":"tt0233263","version":40,"lastModified":"1301905682000","genre":"Animation","title":"Les Aventures des Schtroumpfs","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"12863"} +{"label":"Eddy Ryssack","version":17,"id":"20421","lastModified":"1301901509000","name":"Eddy Ryssack","type":"Person","_key":"12864"} +{"label":"1984","description":"1984 is the first feature film based on George Orwell\u2019s novel 1984.","id":"1984","runtime":90,"imdbId":"tt0048918","version":84,"lastModified":"1301903717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6d\/4bc91469017a3c57fe007a6d\/1984-mid.jpg","genre":"Science Fiction","title":"1984","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"12865"} +{"label":"Michael Anderson","version":42,"id":"20412","lastModified":"1301901287000","name":"Michael Anderson","type":"Person","_key":"12866"} +{"label":"Jan Sterling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4bd5d4c8017a3c657e00009d\/jan-sterling-profile.jpg","biography":"Most active in films during the 1950s, Sterling received a Golden Globe Award for Best Supporting Actress for her performance in The High and the Mighty (1954), and was nominated for an Academy Award for Best Supporting Actress for the same performance. Her career declined during the 1960s, however she continued to play occasional roles for television and theatre.\n\nEarly life\n\nSterling was born Jane Sterling Adriance in New York City, into a well-to-do family. She was educated in private schools","version":40,"birthday":"-1538355600000","id":"20418","birthplace":"New York City, New York, USA","lastModified":"1301904078000","name":"Jan Sterling","type":"Person","_key":"12867"} +{"label":"The Constant Gardener","description":"Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.","id":"1985","runtime":129,"imdbId":"tt0387131","version":212,"lastModified":"1301915686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4bc9146b017a3c57fe007a7a\/the-constant-gardener-mid.jpg","studio":"Focus Features","genre":"Drama","title":"The Constant Gardener","releaseDate":1125446400000,"language":"en","tagline":"Love. At any cost.","type":"Movie","_key":"12868"} +{"label":"Donald Sumpter","version":45,"id":"20425","lastModified":"1301901246000","name":"Donald Sumpter","type":"Person","_key":"12869"} +{"label":"Daniele Harford","version":27,"id":"20426","lastModified":"1301901826000","name":"Daniele Harford","type":"Person","_key":"12870"} +{"label":"Bernard Otieno Oduor","version":20,"id":"20427","lastModified":"1301901834000","name":"Bernard Otieno Oduor","type":"Person","_key":"12871"} +{"label":"Damaris Itenyo Agweyu","version":20,"id":"20428","lastModified":"1301901834000","name":"Damaris Itenyo Agweyu","type":"Person","_key":"12872"} +{"label":"Keith Pearson","version":20,"id":"20429","lastModified":"1301901837000","name":"Keith Pearson","type":"Person","_key":"12873"} +{"label":"Va, vis et deviens","description":"No overview found.","id":"1986","runtime":140,"imdbId":"tt0388505","version":75,"lastModified":"1301905654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05b\/4bdc9fc6017a3c20c700005b\/va-vis-et-deviens-mid.jpg","studio":"Elz\u00e9vir Films","genre":"Drama","title":"Va, vis et deviens","releaseDate":1112140800000,"language":"en","type":"Movie","_key":"12874"} +{"label":"Radu Mihaileanu","version":43,"id":"20430","lastModified":"1301901496000","name":"Radu Mihaileanu","type":"Person","_key":"12875"} +{"label":"Moshe Abebe","version":19,"id":"20436","lastModified":"1301901478000","name":"Moshe Abebe","type":"Person","_key":"12876"} +{"label":"Moshe Agazai","version":19,"id":"20437","lastModified":"1301901542000","name":"Moshe Agazai","type":"Person","_key":"12877"} +{"label":"Sirak M. Sabahat","version":19,"id":"20438","lastModified":"1301901478000","name":"Sirak M. Sabahat","type":"Person","_key":"12878"} +{"label":"Roni Hadar","version":19,"id":"20439","lastModified":"1301901432000","name":"Roni Hadar","type":"Person","_key":"12879"} +{"label":"Ya\u00ebl Abecassis","version":22,"id":"20441","lastModified":"1301901499000","name":"Ya\u00ebl Abecassis","type":"Person","_key":"12880"} +{"label":"Roschdy Zem","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4d75339c5e73d66462000028\/roschdy-zem-profile.jpg","version":62,"id":"20442","lastModified":"1301901110000","name":"Roschdy Zem","type":"Person","_key":"12881"} +{"label":"Yitzhak Edgar","version":18,"id":"20443","lastModified":"1301903109000","name":"Yitzhak Edgar","type":"Person","_key":"12882"} +{"label":"Rami Danon","version":20,"id":"20444","lastModified":"1301903110000","name":"Rami Danon","type":"Person","_key":"12883"} +{"label":"Meskie Shibru Sivan","version":18,"id":"20445","lastModified":"1301903109000","name":"Meskie Shibru Sivan","type":"Person","_key":"12884"} +{"label":"Mimi Abonesh Kebede","version":18,"id":"20446","lastModified":"1301903110000","name":"Mimi Abonesh Kebede","type":"Person","_key":"12885"} +{"label":"Raymonde Abecassis","version":18,"id":"20447","lastModified":"1301903110000","name":"Raymonde Abecassis","type":"Person","_key":"12886"} +{"label":"Elad Atrakchi","version":18,"id":"20448","lastModified":"1301903109000","name":"Elad Atrakchi","type":"Person","_key":"12887"} +{"label":"Benny's Video","description":"A story about a boy called Benny, who watches violent movies, including a home-made video of a pig being slaughtered. Soon after, Benny loses his mind and kills a girl and films the murder with his video camera.","id":"1987","runtime":105,"imdbId":"tt0103793","version":97,"lastModified":"1301905655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a87\/4bc9146e017a3c57fe007a87\/bennys-video-mid.jpg","studio":"Wega Film","genre":"Drama","title":"Benny's Video","releaseDate":716256000000,"language":"en","type":"Movie","_key":"12888"} +{"label":"Arno Frisch","version":20,"id":"20449","lastModified":"1301901413000","name":"Arno Frisch","type":"Person","_key":"12889"} +{"label":"Ingrid Stassner","version":16,"id":"20450","lastModified":"1301903116000","name":"Ingrid Stassner","type":"Person","_key":"12890"} +{"label":"A Mighty Heart","description":"Based on Mariane Pearl's account of the terrifying and unforgettable story of her husband, Wall Street Journal reporter Danny Pearl's life and death.","id":"1988","runtime":100,"imdbId":"tt0829459","trailer":"http:\/\/www.youtube.com\/watch?v=212","homepage":"http:\/\/www.amightyheartmovie.com\/","version":244,"lastModified":"1301903617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a94\/4bc9146f017a3c57fe007a94\/a-mighty-heart-mid.jpg","studio":"Plan B Entertainment","genre":"Drama","title":"A Mighty Heart","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"12891"} +{"label":"Harvesp Viraf Chiniwala","version":19,"id":"20467","lastModified":"1301901453000","name":"Harvesp Viraf Chiniwala","type":"Person","_key":"12892"} +{"label":"Azfar Ali","version":18,"id":"20468","lastModified":"1301901434000","name":"Azfar Ali","type":"Person","_key":"12893"} +{"label":"Jillian Armenante","version":23,"id":"20469","lastModified":"1301903110000","name":"Jillian Armenante","type":"Person","_key":"12894"} +{"label":"Zachary Coffin","version":19,"id":"20470","lastModified":"1301901586000","name":"Zachary Coffin","type":"Person","_key":"12895"} +{"label":"Demetri Goritsas","version":19,"id":"20471","lastModified":"1301901547000","name":"Demetri Goritsas","type":"Person","_key":"12896"} +{"label":"Mohammed Afzal","version":21,"id":"32334","lastModified":"1301901482000","name":"Mohammed Afzal","type":"Person","_key":"12897"} +{"label":"Mushtaq Khan","version":22,"id":"32335","lastModified":"1301901482000","name":"Mushtaq Khan","type":"Person","_key":"12898"} +{"label":"Daud Khan","version":21,"id":"32336","lastModified":"1301901482000","name":"Daud Khan","type":"Person","_key":"12899"} +{"label":"Telal Saeed","version":21,"id":"32337","lastModified":"1301901482000","name":"Telal Saeed","type":"Person","_key":"12900"} +{"label":"Tipu Taheer","version":21,"id":"32338","lastModified":"1301901482000","name":"Tipu Taheer","type":"Person","_key":"12901"} +{"label":"My Blueberry Nights","description":"Elizabeth (Jones) has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls.","id":"1989","runtime":111,"imdbId":"tt0765120","trailer":"http:\/\/www.youtube.com\/watch?v=364","version":181,"lastModified":"1301906246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c5\/4d5496777b9aa15cf60003c5\/my-blueberry-nights-mid.jpg","studio":"Block 2 Pictures","genre":"Drama","title":"My Blueberry Nights","releaseDate":1179273600000,"language":"en","type":"Movie","_key":"12902"} +{"label":"Norah Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4be\/4bfac61f017a3c70370004be\/norah-jones-profile.jpg","version":24,"id":"20472","lastModified":"1301901281000","name":"Norah Jones","type":"Person","_key":"12903"} +{"label":"Cat Power","version":22,"id":"53865","lastModified":"1301901682000","name":"Cat Power","type":"Person","_key":"12904"} +{"label":"Paranoid Park","description":"An unsolved murder at Portland's infamous Paranoid Park brings detectives to a local high school, propelling a young skater into a moral dilemma where he must deal with the consequences of his own actions.","id":"1990","runtime":85,"imdbId":"tt0842929","trailer":"http:\/\/www.youtube.com\/watch?v=558","homepage":"http:\/\/www.paranoidpark.co.uk\/","version":204,"lastModified":"1301915562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac4\/4bc91477017a3c57fe007ac4\/paranoid-park-mid.jpg","studio":"MK2 Productions","genre":"Drama","title":"Paranoid Park","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"12905"} +{"label":"Gabe Nevins","version":16,"id":"20478","lastModified":"1301901487000","name":"Gabe Nevins","type":"Person","_key":"12906"} +{"label":"Taylor Momsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65f\/4d29fae65e73d626c400365f\/taylor-momsen-profile.jpg","version":24,"id":"20480","lastModified":"1301901214000","name":"Taylor Momsen","type":"Person","_key":"12907"} +{"label":"Jake Miller","version":16,"id":"20481","lastModified":"1301901487000","name":"Jake Miller","type":"Person","_key":"12908"} +{"label":"Daniel Liu","version":16,"id":"20479","lastModified":"1301901637000","name":"Daniel Liu","type":"Person","_key":"12909"} +{"label":"Lauren McKinney","version":19,"id":"56768","lastModified":"1301901934000","name":"Lauren McKinney","type":"Person","_key":"12910"} +{"label":"Grace Carter","version":19,"id":"56769","lastModified":"1301902128000","name":"Grace Carter","type":"Person","_key":"12911"} +{"label":"Jay 'Smay' Williamson","version":17,"id":"56770","lastModified":"1301901805000","name":"Jay 'Smay' Williamson","type":"Person","_key":"12912"} +{"label":"Oliver Garnier","version":17,"id":"56771","lastModified":"1301901669000","name":"Oliver Garnier","type":"Person","_key":"12913"} +{"label":"Winfield Jackson","version":17,"id":"56772","lastModified":"1301901805000","name":"Winfield Jackson","type":"Person","_key":"12914"} +{"label":"Dillon Hines","version":19,"id":"56773","lastModified":"1301902128000","name":"Dillon Hines","type":"Person","_key":"12915"} +{"label":"Brad Peterson","version":19,"id":"56774","lastModified":"1301902128000","name":"Brad Peterson","type":"Person","_key":"12916"} +{"label":"John Michael Burrowes","version":17,"id":"56775","lastModified":"1301901805000","name":"John Michael Burrowes","type":"Person","_key":"12917"} +{"label":"Emma Nevins","version":19,"id":"56776","lastModified":"1301901637000","name":"Emma Nevins","type":"Person","_key":"12918"} +{"label":"Joe Schweitzer","version":19,"id":"56777","lastModified":"1301901934000","name":"Joe Schweitzer","type":"Person","_key":"12919"} +{"label":"Death Proof","description":"Directors Quentin Tarantino and Robert Rodriguez present two full-length movies in a new horror double feature.\n\nIn Tarantino's \"Death Proof,\" Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna an Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.\n","id":"1991","runtime":113,"imdbId":"tt1028528","homepage":"http:\/\/www.deathproof.net\/","version":388,"lastModified":"1302044610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d8\/4d4819485e73d66f590030d8\/death-proof-mid.jpg","studio":"A Band Apart","genre":"Action","title":"Death Proof","releaseDate":1182384000000,"language":"en","tagline":"A crash course in revenge","type":"Movie","_key":"12920"} +{"label":"Sydney Tamiia Poitier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a20\/4d6b39375e73d66b27002a20\/sydney-tamiia-poitier-profile.jpg","version":27,"id":"20493","lastModified":"1301901201000","name":"Sydney Tamiia Poitier","type":"Person","_key":"12921"} +{"label":"Zoe Bell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a1b\/4d6b390a5e73d66b27002a1b\/zoe-bell-profile.jpg","version":53,"id":"20494","lastModified":"1299538445000","name":"Zoe Bell","type":"Person","_key":"12922"} +{"label":"Rose McGowan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49a\/4be08ec5017a3c35bf00049a\/rose-mcgowan-profile.jpg","version":106,"birthday":"116031600000","id":"16850","birthplace":"Florence, italy","lastModified":"1302061539000","name":"Rose McGowan","type":"Person","_key":"12923"} +{"label":"Omar Doom","version":42,"id":"23286","lastModified":"1301901112000","name":"Omar Doom","type":"Person","_key":"12924"} +{"label":"Planet Terror","description":"In Rodriguez's \"Planet Terror,\" two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend Wray lead a team of accidental warriors into the night. ","id":"1992","runtime":105,"imdbId":"tt1077258","trailer":"http:\/\/www.youtube.com\/watch?v=243","homepage":"http:\/\/www.planetterror.senator.de\/","version":224,"lastModified":"1301901410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff8\/4d322c7c7b9aa178ab000ff8\/planet-terror-mid.jpg","studio":"Troublemaker Studios","genre":"Horror","title":"Planet Terror","releaseDate":1182384000000,"language":"en","tagline":"Humanity's last hope... Rests on a high power machine gun.","type":"Movie","_key":"12925"} +{"label":"Jeff Fahey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/158\/4c7e5daf7b9aa10d96000158\/jeff-fahey-profile.jpg","version":58,"id":"20495","lastModified":"1301901135000","name":"Jeff Fahey","type":"Person","_key":"12926"} +{"label":"Josh Brolin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/251\/4c39fcfd7b9aa10ede000251\/josh-brolin-profile.jpg","version":168,"id":"16851","lastModified":"1302062428000","name":"Josh Brolin","type":"Person","_key":"12927"} +{"label":"Jason Douglas","version":27,"id":"20496","lastModified":"1301901330000","name":"Jason Douglas","type":"Person","_key":"12928"} +{"label":"Stacy Ferguson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce9\/4cf2772d5e73d61e3d000ce9\/stacy-ferguson-profile.jpg","version":41,"id":"20497","lastModified":"1301901295000","name":"Stacy Ferguson","type":"Person","_key":"12929"} +{"label":"Carlos Gallardo","version":34,"id":"20498","lastModified":"1301901233000","name":"Carlos Gallardo","type":"Person","_key":"12930"} +{"label":"Rebel Rodriguez","version":24,"id":"20499","lastModified":"1301901326000","name":"Rebel Rodriguez","type":"Person","_key":"12931"} +{"label":"Nuovomondo","description":"No overview found.","id":"1993","runtime":118,"imdbId":"tt0465188","trailer":"http:\/\/www.youtube.com\/watch?v=116","version":65,"lastModified":"1301903158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2e\/4bc9148a017a3c57fe007b2e\/nuovomondo-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Drama","title":"Nuovomondo","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"12932"} +{"label":"Emanuele Crialese","version":24,"id":"20587","lastModified":"1301901542000","name":"Emanuele Crialese","type":"Person","_key":"12933"} +{"label":"Vincenzo Amato","version":26,"id":"20588","lastModified":"1301901248000","name":"Vincenzo Amato","type":"Person","_key":"12934"} +{"label":"Aurora Quattrocchi","version":18,"id":"20589","lastModified":"1301901826000","name":"Aurora Quattrocchi","type":"Person","_key":"12935"} +{"label":"Francesco Casisa","version":21,"id":"20590","lastModified":"1301901586000","name":"Francesco Casisa","type":"Person","_key":"12936"} +{"label":"Filippo Pucillo","version":17,"id":"20591","lastModified":"1301901912000","name":"Filippo Pucillo","type":"Person","_key":"12937"} +{"label":"Federica De Cola","version":17,"id":"8781","lastModified":"1301901478000","name":"Federica De Cola","type":"Person","_key":"12938"} +{"label":"Isabella Ragonese","version":21,"id":"9627","lastModified":"1301901601000","name":"Isabella Ragonese","type":"Person","_key":"12939"} +{"label":"Massimo Laguardia","version":17,"id":"12457","lastModified":"1301901624000","name":"Massimo Laguardia","type":"Person","_key":"12940"} +{"label":"Filippo Luna","version":16,"id":"19465","lastModified":"1301903110000","name":"Filippo Luna","type":"Person","_key":"12941"} +{"label":"Andrea Prodan","version":19,"id":"20440","lastModified":"1301903114000","name":"Andrea Prodan","type":"Person","_key":"12942"} +{"label":"Ernesto Mahieux","version":21,"id":"20592","lastModified":"1301901953000","name":"Ernesto Mahieux","type":"Person","_key":"12943"} +{"label":"The Most Dangerous Game","description":"An insane hunter arranges for a ship to be wrecked on an island where he can indulge in some sort of hunting and killing of the passengers.","id":"1994","runtime":66,"imdbId":"tt0023238","version":285,"lastModified":"1301915442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc9148c017a3c57fe007b38\/the-most-dangerous-game-mid.jpg","studio":"RKO Radio Pictures","genre":"Action","title":"The Most Dangerous Game","releaseDate":-1177459200000,"language":"en","type":"Movie","_key":"12944"} +{"label":"Joel McCrea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4c23a6e47b9aa1446b000015\/joel-mccrea-profile.jpg","version":37,"id":"20501","lastModified":"1302031589000","name":"Joel McCrea","type":"Person","_key":"12945"} +{"label":"Leslie Banks","version":26,"id":"20502","lastModified":"1301901797000","name":"Leslie Banks","type":"Person","_key":"12946"} +{"label":"Lara Croft: Tomb Raider","description":"English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.","id":"1995","runtime":101,"imdbId":"tt0146316","trailer":"http:\/\/www.youtube.com\/watch?v=SK_6neZLkfU","version":225,"lastModified":"1301901125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/013\/4c93040a5e73d63696000013\/lara-croft-tomb-raider-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Lara Croft: Tomb Raider","releaseDate":991008000000,"language":"en","tagline":"Born into Wealth. Groomed by the Elite. Trained for Combat.","type":"Movie","_key":"12947"} +{"label":"Robert Phillips","version":25,"id":"20509","lastModified":"1301901587000","name":"Robert Phillips","type":"Person","_key":"12948"} +{"label":"Richard Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8be\/4cab2d447b9aa17acb0008be\/richard-johnson-profile.jpg","version":47,"id":"20510","lastModified":"1301901234000","name":"Richard Johnson","type":"Person","_key":"12949"} +{"label":"Chris Barrie","version":32,"id":"20511","lastModified":"1301901249000","name":"Chris Barrie","type":"Person","_key":"12950"} +{"label":"Rachel Appleton","version":24,"id":"20512","lastModified":"1301901588000","name":"Rachel Appleton","type":"Person","_key":"12951"} +{"label":"Lara Croft Tomb Raider: The Cradle of Life","description":"Intrepid British archaeologist Lara Croft has made perhaps the most important archaeological discovery in history: an orb that leads to the mythical Pandora's Box. Unfortunately, the orb falls into the hands of Jonathan Reiss, an evil scientist who deals in killer viruses and hopes to sell the secrets of the box as the ultimate weapon. ","id":"1996","runtime":117,"imdbId":"tt0325703","version":317,"lastModified":"1302039214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b57\/4be52d1b017a3c35bd000b57\/lara-croft-tomb-raider-the-cradle-of-life-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Lara Croft Tomb Raider: The Cradle of Life","releaseDate":1059091200000,"language":"en","type":"Movie","_key":"12952"} +{"label":"Simon Yam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4bce96db017a3c48680000b5\/simon-yam-profile.jpg","version":118,"id":"20519","lastModified":"1302052496000","name":"Simon Yam","type":"Person","_key":"12953"} +{"label":"Fabiano Martell","version":26,"id":"20520","lastModified":"1301901338000","name":"Fabiano Martell","type":"Person","_key":"12954"} +{"label":"Jonathan Coyne","version":29,"id":"20521","lastModified":"1301901382000","name":"Jonathan Coyne","type":"Person","_key":"12955"} +{"label":"Robert Cavanah","version":29,"id":"20522","lastModified":"1301901307000","name":"Robert Cavanah","type":"Person","_key":"12956"} +{"label":"Ronan Vibert","version":29,"id":"20523","lastModified":"1301901356000","name":"Ronan Vibert","type":"Person","_key":"12957"} +{"label":"Two Brothers","description":"Two tigers are separated as cubs and taken into captivity, only to be reunited years later as enemies by an explorer (Pearce) who inadvertently forces them to fight each other.","id":"1997","runtime":105,"imdbId":"tt0338512","version":236,"lastModified":"1301915320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b87\/4bc91498017a3c57fe007b87\/deux-freres-mid.jpg","studio":"Path\u00e9 Cin\u00e9ma","genre":"Action","title":"Two Brothers","releaseDate":1081296000000,"language":"en","tagline":"Two infant tiger cubs, separated from their parents and each other.","type":"Movie","_key":"12958"} +{"label":"Ma\u00ef Anh Le","version":23,"id":"20526","lastModified":"1301901434000","name":"Ma\u00ef Anh Le","type":"Person","_key":"12959"} +{"label":"Oanh Nguyen","version":22,"id":"20527","lastModified":"1301901547000","name":"Oanh Nguyen","type":"Person","_key":"12960"} +{"label":"Jaran 'See Tao' Petcharoen","version":23,"id":"20528","lastModified":"1301901669000","name":"Jaran 'See Tao' Petcharoen","type":"Person","_key":"12961"} +{"label":"St\u00e9phanie Lagarde","version":22,"id":"20529","lastModified":"1301903114000","name":"St\u00e9phanie Lagarde","type":"Person","_key":"12962"} +{"label":"Philippine Leroy-Beaulieu","version":29,"id":"20530","lastModified":"1301901582000","name":"Philippine Leroy-Beaulieu","type":"Person","_key":"12963"} +{"label":"Vincent Scarito","version":22,"id":"20531","lastModified":"1301903116000","name":"Vincent Scarito","type":"Person","_key":"12964"} +{"label":"Moussa Maaskri","version":32,"id":"20532","lastModified":"1301901482000","name":"Moussa Maaskri","type":"Person","_key":"12965"} +{"label":"Holy Lola","description":"No overview found.","id":"1998","runtime":130,"imdbId":"tt0384177","version":87,"lastModified":"1301903770000","studio":"Les Films Alain Sarde","genre":"Drama","title":"Holy Lola","releaseDate":1097884800000,"language":"en","type":"Movie","_key":"12966"} +{"label":"Bertrand Tavernier","version":62,"id":"20556","lastModified":"1301901671000","name":"Bertrand Tavernier","type":"Person","_key":"12967"} +{"label":"Isabelle Carr\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4c166b6c7b9aa108b400009d\/isabelle-carre-profile.jpg","version":57,"id":"4166","lastModified":"1301901166000","name":"Isabelle Carr\u00e9","type":"Person","_key":"12968"} +{"label":"Fr\u00e9d\u00e9ric Pierrot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e24\/4d264ccf7b9aa134cb000e24\/fr-d-ric-pierrot-profile.jpg","version":32,"id":"9005","lastModified":"1301901236000","name":"Fr\u00e9d\u00e9ric Pierrot","type":"Person","_key":"12969"} +{"label":"Lara Guirao","version":17,"id":"12813","lastModified":"1301902015000","name":"Lara Guirao","type":"Person","_key":"12970"} +{"label":"Maria Pitarresi","version":18,"id":"12666","lastModified":"1301902015000","name":"Maria Pitarresi","type":"Person","_key":"12971"} +{"label":"Jean-Yves Roan","version":17,"id":"16330","lastModified":"1301901682000","name":"Jean-Yves Roan","type":"Person","_key":"12972"} +{"label":"Philippe Sa\u00efd","version":19,"id":"14013","lastModified":"1301901682000","name":"Philippe Sa\u00efd","type":"Person","_key":"12973"} +{"label":"Anne Loiret","version":17,"id":"13191","lastModified":"1301901595000","name":"Anne Loiret","type":"Person","_key":"12974"} +{"label":"S\u00e9verine Caneele","version":17,"id":"12584","lastModified":"1301901683000","name":"S\u00e9verine Caneele","type":"Person","_key":"12975"} +{"label":"Jacques Gamblin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/694\/4d84cc467b9aa12ed0001694\/jacques-gamblin-profile.jpg","version":39,"id":"77860","lastModified":"1301901856000","name":"Jacques Gamblin","type":"Person","_key":"12976"} +{"label":"In the Bedroom","description":"Set in a tranquil town on the Maine coast, this character-driven drama tells the story of a couple whose teenage son is involved in a love affair with a single mother. When the relationship comes to a sudden and tragic end, the boy's parents must face their worst nightmare and embark on a dark and dangerous psychological journey.","id":"1999","runtime":130,"imdbId":"tt0247425","version":173,"lastModified":"1301915242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ee\/4d24f8ad7b9aa134e00001ee\/in-the-bedroom-mid.jpg","studio":"Good Machine","genre":"Drama","title":"In the Bedroom","releaseDate":979862400000,"language":"en","type":"Movie","_key":"12977"} +{"label":"William Wise","version":20,"id":"20542","lastModified":"1301903113000","name":"William Wise","type":"Person","_key":"12978"} +{"label":"Frank T. Wells","version":15,"id":"20543","lastModified":"1301903114000","name":"Frank T. Wells","type":"Person","_key":"12979"} +{"label":"W. Clapham Murray","version":15,"id":"20544","lastModified":"1301903111000","name":"W. Clapham Murray","type":"Person","_key":"12980"} +{"label":"Justin Ashforth","version":16,"id":"20545","lastModified":"1301903111000","name":"Justin Ashforth","type":"Person","_key":"12981"} +{"label":"Aguirre: The Wrath of God","description":"A few decades after the destruction of the Inca empire, a Spanish expedition leaves the mountains of Peru and goes down the Amazon river in search of gold and wealth. Soon, they come across great difficulties and Don Aguirres, a ruthless man who cares only about riches, becomes their leader. But will his quest lead them to \"the golden city\", or to certain destruction","id":"2000","runtime":93,"imdbId":"tt0068182","trailer":"http:\/\/www.youtube.com\/watch?v=2q3D0h4xCro","version":90,"lastModified":"1299908700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b99\/4bc91499017a3c57fe007b99\/aguirre-der-zorn-gottes-mid.jpg","studio":"Hessischer Rundfunk","genre":"Adventure","title":"Aguirre: The Wrath of God","releaseDate":94435200000,"language":"en","type":"Movie","_key":"12982"} +{"label":"Helena Rojo","version":15,"id":"20546","lastModified":"1299496456000","name":"Helena Rojo","type":"Person","_key":"12983"} +{"label":"Del Negro","version":15,"id":"20547","lastModified":"1299499061000","name":"Del Negro","type":"Person","_key":"12984"} +{"label":"Ruy Guerra","version":17,"id":"20548","lastModified":"1299498913000","name":"Ruy Guerra","type":"Person","_key":"12985"} +{"label":"Cecilia Rivera","version":15,"id":"20549","lastModified":"1299501608000","name":"Cecilia Rivera","type":"Person","_key":"12986"} +{"label":"Edward Roland","version":19,"id":"18441","lastModified":"1299501608000","name":"Edward Roland","type":"Person","_key":"12987"} +{"label":"Daniel Ades","version":16,"id":"20550","lastModified":"1299515523000","name":"Daniel Ades","type":"Person","_key":"12988"} +{"label":"Armando Polanah","version":15,"id":"20551","lastModified":"1299501120000","name":"Armando Polanah","type":"Person","_key":"12989"} +{"label":"Alejandro Repulles","version":18,"id":"24038","lastModified":"1299503756000","name":"Alejandro Repulles","type":"Person","_key":"12990"} +{"label":"We Own the Night","description":"A New York nightclub manager tries to save his brother and father from Russian mafia hit men.","id":"2001","runtime":105,"imdbId":"tt0498399","trailer":"http:\/\/www.youtube.com\/watch?v=2261","version":243,"lastModified":"1301907546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4d7250627b9aa1776e0001f0\/we-own-the-night-mid.jpg","studio":"Industry Entertainment","genre":"Action","title":"We Own the Night","releaseDate":1180051200000,"language":"en","tagline":"Two brothers on opposite sides of the law. Beyond their differences lies loyalty.","type":"Movie","_key":"12991"} +{"label":"James Gray","version":32,"id":"20561","lastModified":"1301901401000","name":"James Gray","type":"Person","_key":"12992"} +{"label":"Antoni Corone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c7e\/4c72b2265e73d65f7a000c7e\/antoni-corone-profile.jpg","version":54,"id":"20562","lastModified":"1302062389000","name":"Antoni Corone","type":"Person","_key":"12993"} +{"label":"Alex Veadov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c1c\/4c72b2ee5e73d65f7b000c1c\/alex-veadov-profile.jpg","version":22,"birthday":"-243478800000","id":"20563","birthplace":"New York City, New York, USA","lastModified":"1301901470000","name":"Alex Veadov","type":"Person","_key":"12994"} +{"label":"Tony Musante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c20\/4c72b3945e73d65f7b000c20\/tony-musante-profile.jpg","version":27,"birthday":"-1057366800000","id":"20564","birthplace":"Bridgeport, Connecticut, USA","lastModified":"1301901805000","name":"Tony Musante","type":"Person","_key":"12995"} +{"label":"Burton Perez","version":20,"id":"20565","lastModified":"1301901624000","name":"Burton Perez","type":"Person","_key":"12996"} +{"label":"Katie Condidorio","version":23,"id":"20566","lastModified":"1301901478000","name":"Katie Condidorio","type":"Person","_key":"12997"} +{"label":"The Last Mistress","description":"Secrets, rumors and betrayals surround the upcoming marriage between a young dissolute man and virtuous woman of the French aristocracy.","id":"2002","runtime":110,"imdbId":"tt0437526","trailer":"http:\/\/www.youtube.com\/watch?v=EQxF47Jq59k","version":322,"lastModified":"1301915124000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb4\/4bc9149d017a3c57fe007bb4\/une-vieille-maitresse-mid.jpg","studio":"CB Films","genre":"Drama","title":"The Last Mistress","releaseDate":1180483200000,"language":"en","type":"Movie","_key":"12998"} +{"label":"Fu'ad A\u00eft Aattou","version":18,"id":"4704","lastModified":"1301901410000","name":"Fu'ad A\u00eft Aattou","type":"Person","_key":"12999"} +{"label":"Claude Sarraute","version":17,"id":"11490","lastModified":"1301901629000","name":"Claude Sarraute","type":"Person","_key":"13000"} +{"label":"Jean-Philippe Tesse","version":17,"id":"20574","lastModified":"1301901629000","name":"Jean-Philippe Tesse","type":"Person","_key":"13001"} +{"label":"Sarah Pratt","version":17,"id":"20575","lastModified":"1301901629000","name":"Sarah Pratt","type":"Person","_key":"13002"} +{"label":"L\u00e9a Seydoux","version":17,"id":"20576","lastModified":"1301901755000","name":"L\u00e9a Seydoux","type":"Person","_key":"13003"} +{"label":"Amira Casar","version":38,"id":"20577","lastModified":"1301952220000","name":"Amira Casar","type":"Person","_key":"13004"} +{"label":"Caroline Ducey","version":29,"id":"7691","lastModified":"1301901353000","name":"Caroline Ducey","type":"Person","_key":"13005"} +{"label":"Jean-Claude Binoche","version":18,"id":"20578","lastModified":"1301901682000","name":"Jean-Claude Binoche","type":"Person","_key":"13006"} +{"label":"Fr\u00e9d\u00e9ric Botton","version":19,"id":"20579","lastModified":"1301901755000","name":"Fr\u00e9d\u00e9ric Botton","type":"Person","_key":"13007"} +{"label":"Anatomy of Hell","description":"No overview found.","id":"2003","runtime":88,"imdbId":"tt0348529","version":97,"lastModified":"1301903665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/027\/4d3dc3047b9aa12ea4000027\/anatomie-de-l-enfer-mid.jpg","studio":"CB Films","genre":"Drama","title":"Anatomy of Hell","releaseDate":1075248000000,"language":"en","type":"Movie","_key":"13008"} +{"label":"Rocco Siffredi","version":28,"id":"7694","lastModified":"1301901202000","name":"Rocco Siffredi","type":"Person","_key":"13009"} +{"label":"Jacques Monge","version":19,"id":"20598","lastModified":"1301901912000","name":"Jacques Monge","type":"Person","_key":"13010"} +{"label":"Kebab Connection","description":"No overview found.","id":"2004","runtime":95,"imdbId":"tt0177882","version":127,"lastModified":"1301915079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc9\/4bc9149f017a3c57fe007bc9\/kebab-connection-mid.jpg","studio":"W\u00fcste Filmproduktion","genre":"Comedy","title":"Kebab Connection","releaseDate":1107302400000,"language":"en","type":"Movie","_key":"13011"} +{"label":"Anno Saul","version":23,"id":"20605","lastModified":"1301901632000","name":"Anno Saul","type":"Person","_key":"13012"} +{"label":"Emanuel Bettencourt","version":17,"id":"20613","lastModified":"1301901459000","name":"Emanuel Bettencourt","type":"Person","_key":"13013"} +{"label":"Hasan Ali Mete","version":16,"id":"20614","lastModified":"1301903113000","name":"Hasan Ali Mete","type":"Person","_key":"13014"} +{"label":"Adnan Maral","version":17,"id":"20615","lastModified":"1301902015000","name":"Adnan Maral","type":"Person","_key":"13015"} +{"label":"Tatjana Velimirov","version":16,"id":"20618","lastModified":"1301901925000","name":"Tatjana Velimirov","type":"Person","_key":"13016"} +{"label":"Fahri \u00d6g\u00fcn Yardim","version":31,"id":"20619","lastModified":"1301901506000","name":"Fahri \u00d6g\u00fcn Yardim","type":"Person","_key":"13017"} +{"label":"Romina F\u00fctterer","version":15,"id":"20620","lastModified":"1301903114000","name":"Romina F\u00fctterer","type":"Person","_key":"13018"} +{"label":"Nursel K\u00f6se","version":29,"id":"20730","lastModified":"1301903112000","name":"Nursel K\u00f6se","type":"Person","_key":"13019"} +{"label":"Sister Act","description":"A Vegas singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV.","id":"2005","runtime":100,"imdbId":"tt0105417","trailer":"http:\/\/www.youtube.com\/watch?v=pAsJxAZl558","version":110,"lastModified":"1301902201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cd\/4d5052997b9aa1193e0015cd\/sister-act-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Sister Act","releaseDate":707097600000,"language":"en","tagline":"No booze! No sex! No drugs!... No way!","type":"Movie","_key":"13020"} +{"label":"Wendy Makkena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab2\/4d92e6aa5e73d62277000ab2\/wendy-makkena-profile.jpg","version":24,"id":"20623","lastModified":"1301901457000","name":"Wendy Makkena","type":"Person","_key":"13021"} +{"label":"Mary Wickes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/025\/4cae0d4e7b9aa12135000025\/mary-wickes-profile.jpg","version":34,"id":"20624","lastModified":"1301903116000","name":"Mary Wickes","type":"Person","_key":"13022"} +{"label":"Robert Miranda","version":30,"id":"20625","lastModified":"1301901707000","name":"Robert Miranda","type":"Person","_key":"13023"} +{"label":"Joseph Maher","version":23,"id":"20626","lastModified":"1301901643000","name":"Joseph Maher","type":"Person","_key":"13024"} +{"label":"Charlotte Crossley","version":16,"id":"20627","lastModified":"1301903114000","name":"Charlotte Crossley","type":"Person","_key":"13025"} +{"label":"Michael Durrell","version":22,"id":"20628","lastModified":"1301901338000","name":"Michael Durrell","type":"Person","_key":"13026"} +{"label":"Bell, Book and Candle","description":"A modern-day witch likes her neighbor but despises his fiancee, so she enchants him to love her instead... only to fall in love with him for real.","id":"2006","runtime":106,"imdbId":"tt0051406","trailer":"http:\/\/www.youtube.com\/watch?v=owBbuPw3df8","version":114,"lastModified":"1301904252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/814\/4c5e4c255e73d63a6c000814\/bell-book-and-candle-mid.jpg","studio":"Julian Blaustein Productions","genre":"Comedy","title":"Bell, Book and Candle","releaseDate":-347760000000,"language":"en","type":"Movie","_key":"13027"} +{"label":"Ernie Kovacs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10f\/4c766e8e7b9aa16a0900010f\/ernie-kovacs-profile.jpg","version":25,"id":"20602","lastModified":"1301901708000","name":"Ernie Kovacs","type":"Person","_key":"13028"} +{"label":"Hermione Gingold","version":20,"id":"20603","lastModified":"1301901642000","name":"Hermione Gingold","type":"Person","_key":"13029"} +{"label":"Janice Rule","version":31,"id":"20604","lastModified":"1301901808000","name":"Janice Rule","type":"Person","_key":"13030"} +{"label":"Lorenzo's Oil","description":"Lorenzo Odone was a normal child until the age of 7. After then, strange things began to happen to him: he would have blackouts, memory lapses, and other strange mental phemonenons. He is eventually diagnosed as suffering from ALD: an extremely rare incurable degenerative brain disorder. Frustrated at the failings of doctors and medicine in this area, the Odones begin to educate themselves ","id":"2007","runtime":135,"imdbId":"tt0104756","version":144,"lastModified":"1302039068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4bc914a3017a3c57fe007be8\/lorenzo-s-oil-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Lorenzo's Oil","releaseDate":725673600000,"language":"en","type":"Movie","_key":"13031"} +{"label":"George Miller","version":149,"id":"20629","lastModified":"1301966272000","name":"George Miller","type":"Person","_key":"13032"} +{"label":"Ann Hearn","version":17,"id":"20631","lastModified":"1301903111000","name":"Ann Hearn","type":"Person","_key":"13033"} +{"label":"Maduka Steady","version":16,"id":"20632","lastModified":"1301903114000","name":"Maduka Steady","type":"Person","_key":"13034"} +{"label":"Aaron Jackson","version":18,"id":"20633","lastModified":"1301903114000","name":"Aaron Jackson","type":"Person","_key":"13035"} +{"label":"The Promise","description":"An orphaned girl, driven by poverty at such a young age, makes a promise with an enchantress. In return for beauty and the admiration of every man, she will never be with the man she loves. This spell cannot be broken unless the impossible happens: snow falling in spring and the dead coming back to life. Now a grown and beautiful princess, she regrets her promise, for all of the men she's loved has always been met with tragedy. In love again with a man behind a red armor and a golden mask who re","id":"2008","runtime":98,"imdbId":"tt0417976","version":153,"lastModified":"1301914987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf9\/4bc914a5017a3c57fe007bf9\/wu-ji-mid.jpg","genre":"Drama","title":"The Promise","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"13036"} +{"label":"Kaige Chen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f3\/4c8532f37b9aa142900001f3\/kaige-chen-profile.jpg","version":50,"id":"20640","lastModified":"1301901337000","name":"Kaige Chen","type":"Person","_key":"13037"} +{"label":"Cecilia Cheung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/75c\/4d33f0857b9aa17a4500775c\/cecilia-cheung-profile.jpg","biography":"Cheung was born in Hong Kong to a Chinese father and a half Chinese-half British mother. Her parents divorced when she was just a child after which she was sent to Australia to live with her aunt at the age of fourteen. She has an elder half-sister Dai Pek-Chi, two younger brothers and a younger half-brother from her father's side. ","version":40,"birthday":"327967200000","id":"20652","birthplace":"Hong Kong","lastModified":"1301901235000","name":"Cecilia Cheung","type":"Person","_key":"13038"} +{"label":"Hong Chen","version":29,"id":"20655","lastModified":"1301901739000","name":"Hong Chen","type":"Person","_key":"13039"} +{"label":"Qian Cheng","version":23,"id":"20656","lastModified":"1301903113000","name":"Qian Cheng","type":"Person","_key":"13040"} +{"label":"4 Months, 3 Weeks & 2 Days","description":"Gabita is pregnant, abortion is strictly forbidden in Romania during the communist regime. Despite this it is common practice and Gabita wants an abortion. The movie follows her and her friend Otilia during the day she has made the appointment with Mr. Bebe to have the abortion.","id":"2009","runtime":113,"imdbId":"tt1032846","trailer":"http:\/\/www.youtube.com\/watch?v=1854","version":121,"lastModified":"1301914955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0a\/4bc914a6017a3c57fe007c0a\/4-luni-3-saptamani-si-2-zile-mid.jpg","studio":"Saga Film","genre":"Drama","title":"4 Months, 3 Weeks & 2 Days","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"13041"} +{"label":"Cristian Mungiu","version":37,"id":"20657","lastModified":"1301901513000","name":"Cristian Mungiu","type":"Person","_key":"13042"} +{"label":"Laura Vasiliu","version":19,"id":"20698","lastModified":"1301901833000","name":"Laura Vasiliu","type":"Person","_key":"13043"} +{"label":"Anamaria Marinca","version":25,"id":"20699","lastModified":"1301901452000","name":"Anamaria Marinca","type":"Person","_key":"13044"} +{"label":"Vlad Ivanov","version":27,"id":"39959","lastModified":"1301901579000","name":"Vlad Ivanov","type":"Person","_key":"13045"} +{"label":"Alexandru Potocean","version":19,"id":"39960","lastModified":"1301901523000","name":"Alexandru Potocean","type":"Person","_key":"13046"} +{"label":"Luminita Gheorghiu","version":22,"id":"39961","lastModified":"1301901682000","name":"Luminita Gheorghiu","type":"Person","_key":"13047"} +{"label":"Adi Carauleanu","version":22,"id":"39962","lastModified":"1301901593000","name":"Adi Carauleanu","type":"Person","_key":"13048"} +{"label":"Mogari no mori","description":"No overview found.","id":"2010","runtime":97,"imdbId":"tt1016205","version":93,"lastModified":"1301903440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c13\/4bc914a8017a3c57fe007c13\/mogari-no-mori-mid.jpg","studio":"Celluloid Dreams","genre":"Drama","title":"Mogari no mori","releaseDate":1179964800000,"language":"en","type":"Movie","_key":"13049"} +{"label":"Naomi Kawase","version":19,"id":"20658","lastModified":"1301901959000","name":"Naomi Kawase","type":"Person","_key":"13050"} +{"label":"Machiko Ono","version":18,"id":"20705","lastModified":"1301901787000","name":"Machiko Ono","type":"Person","_key":"13051"} +{"label":"Shigeki Uda","version":17,"id":"20706","lastModified":"1301901959000","name":"Shigeki Uda","type":"Person","_key":"13052"} +{"label":"Makiko Watanabe","version":18,"id":"20707","lastModified":"1301901959000","name":"Makiko Watanabe","type":"Person","_key":"13053"} +{"label":"Y\u00f4ichir\u00f4 Sait\u00f4","version":19,"id":"20708","lastModified":"1301902015000","name":"Y\u00f4ichir\u00f4 Sait\u00f4","type":"Person","_key":"13054"} +{"label":"Persepolis","description":"In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.","id":"2011","runtime":95,"imdbId":"tt0808417","trailer":"http:\/\/www.youtube.com\/watch?v=NZ22VyjJ6n8","homepage":"http:\/\/www.sonypictures.com\/classics\/persepolis\/","version":169,"lastModified":"1301914897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fee\/4d8bcf505e73d653ce000fee\/persepolis-mid.jpg","studio":"2.4.7. Films","genre":"Animation","title":"Persepolis","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"13055"} +{"label":"Vincent Paronnaud","version":23,"id":"20709","lastModified":"1301901755000","name":"Vincent Paronnaud","type":"Person","_key":"13056"} +{"label":"Marjane Satrapi","version":23,"id":"20659","lastModified":"1301901547000","name":"Marjane Satrapi","type":"Person","_key":"13057"} +{"label":"Simon Abkarian","version":46,"id":"10917","lastModified":"1301901157000","name":"Simon Abkarian","type":"Person","_key":"13058"} +{"label":"Gabrielle Lopes Benites","version":20,"id":"43779","lastModified":"1301901826000","name":"Gabrielle Lopes Benites","type":"Person","_key":"13059"} +{"label":"Fran\u00e7ois Jerosme","version":22,"id":"43780","lastModified":"1301901920000","name":"Fran\u00e7ois Jerosme","type":"Person","_key":"13060"} +{"label":"Silent Light","description":"Johan and his family are Mennonites from the north of Mexico. Against the law of God and Man, Johan falls in love with another woman.","id":"2012","runtime":142,"imdbId":"tt0841925","homepage":"http:\/\/www.stelletlicht.com\/","version":93,"lastModified":"1301905288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4c\/4bc914b3017a3c57fe007c4c\/stellet-licht-mid.jpg","studio":"Bac Films","genre":"Drama","title":"Silent Light","releaseDate":1179792000000,"language":"en","type":"Movie","_key":"13061"} +{"label":"Carlos Reygadas","version":29,"id":"20660","lastModified":"1301901493000","name":"Carlos Reygadas","type":"Person","_key":"13062"} +{"label":"Elizabeth Fehr","version":20,"id":"50553","lastModified":"1301901542000","name":"Elizabeth Fehr","type":"Person","_key":"13063"} +{"label":"Jacobo Klassen","version":20,"id":"50554","lastModified":"1301902115000","name":"Jacobo Klassen","type":"Person","_key":"13064"} +{"label":"Maria Pankratz","version":20,"id":"50555","lastModified":"1301901542000","name":"Maria Pankratz","type":"Person","_key":"13065"} +{"label":"Miriam Toews","version":20,"id":"50556","lastModified":"1301901748000","name":"Miriam Toews","type":"Person","_key":"13066"} +{"label":"Cornelio Wall","version":20,"id":"50557","lastModified":"1301901912000","name":"Cornelio Wall","type":"Person","_key":"13067"} +{"label":"Peter Wall","version":20,"id":"50558","lastModified":"1301901912000","name":"Peter Wall","type":"Person","_key":"13068"} +{"label":"The Diving Bell And The Butterfly","description":"Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.","id":"2013","runtime":112,"imdbId":"tt0401383","homepage":"http:\/\/www.thedivingbellandthebutterfly-themovie.com\/","version":200,"lastModified":"1301906493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c63\/4bc914b6017a3c57fe007c63\/le-scaphandre-et-le-papillon-mid.jpg","studio":"Path\u00e9 Renn Productions","genre":"Drama","title":"The Diving Bell And The Butterfly","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"13069"} +{"label":"Olatz L\u00f3pez Garmendia","version":23,"id":"20725","lastModified":"1301901595000","name":"Olatz L\u00f3pez Garmendia","type":"Person","_key":"13070"} +{"label":"Marina Hands","version":40,"id":"32511","lastModified":"1301944669000","name":"Marina Hands","type":"Person","_key":"13071"} +{"label":"Jean-Philippe \u00c9coffey","version":21,"id":"49946","lastModified":"1301901586000","name":"Jean-Philippe \u00c9coffey","type":"Person","_key":"13072"} +{"label":"G\u00e9rard Watkins","version":23,"id":"49947","lastModified":"1301901551000","name":"G\u00e9rard Watkins","type":"Person","_key":"13073"} +{"label":"Nicolas Le Riche","version":23,"id":"49948","lastModified":"1301901634000","name":"Nicolas Le Riche","type":"Person","_key":"13074"} +{"label":"The Edge of Heaven","description":"Nejat seems disapproving about his widower father Ali's choice of prostitute Yeter for a live-in girlfriend. But he grows fond of her when he discovers she sends money home to Turkey for her daughter's university studies. Yeter's sudden death distances father and son. Nejat travels to Istanbul to search for Yeter's daughter Ayten. Political activist Ayten has fled the Turkish police and is already in Germany. She is befriended by a young woman, Lotte, who invites rebellious Ayten to stay in her ","id":"2014","runtime":122,"imdbId":"tt0880502","trailer":"http:\/\/www.youtube.com\/watch?v=938","homepage":"http:\/\/www.yasaminkiyisinda.com\/","version":112,"lastModified":"1301992630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c76\/4bc914b9017a3c57fe007c76\/yasamn-kysnda-mid.jpg","studio":"Coraz\u00f3n International","genre":"Drama","title":"The Edge of Heaven","releaseDate":1179532800000,"language":"en","type":"Movie","_key":"13075"} +{"label":"Nurg\u00fcl Ye\u015fil\u00e7ay","version":24,"id":"20726","lastModified":"1301901595000","name":"Nurg\u00fcl Ye\u015fil\u00e7ay","type":"Person","_key":"13076"} +{"label":"Baki Davrak","version":23,"id":"20727","lastModified":"1301901836000","name":"Baki Davrak","type":"Person","_key":"13077"} +{"label":"Tuncel Kurtiz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9f\/4d14596f5e73d60834001e9f\/tuncel-kurtiz-profile.jpg","biography":"<P>\u200b(d. 1 \u015eubat 1936, Bah\u00e7ecik, Kocaeli[1]), sinema ve tiyatro oyuncusu, y\u00f6netmen, yap\u0131mc\u0131, senarist.<\/P>\r\n<P>\u00dcniversitede k\u0131sa bir s\u00fcre hukuk fak\u00fcltesinde, daha sonra ise filoloji, felsefe, psikoloji ve sanat tarihi b\u00f6l\u00fcmlerinde okudu; ancak hi\u00e7birinden mezun olmad\u0131.[1] \u0130lk kez 1959 y\u0131l\u0131nda Dormen Tiyatrosu'nda oyunculu\u011fa ba\u015flam\u0131\u015f olan sanat\u00e7\u0131, sinema filmlerinde rol ald\u0131. S\u00fcr\u00fc filmiyle zirveye \u00e7\u0131kan sanat\u00e7\u0131, do\u011fayla i\u00e7i\u00e7e ya\u015famay\u0131 sever. Hac\u0131 ve Asi adl\u0131 dizilerde ba\u015frol oynam\u0131\u015ft\u0131r. 2009 y\u0131l\u0131n","version":27,"id":"20728","lastModified":"1301901468000","name":"Tuncel Kurtiz","type":"Person","_key":"13078"} +{"label":"Patrycia Ziolkowska","version":27,"id":"20729","lastModified":"1301901781000","name":"Patrycia Ziolkowska","type":"Person","_key":"13079"} +{"label":"Yelda Reynaud","version":21,"id":"20731","lastModified":"1301903112000","name":"Yelda Reynaud","type":"Person","_key":"13080"} +{"label":"Secret Sunshine","description":"Sin-ae moves with her son Jun to Miryang, the town where her dead husband was born. As she tries to come to herself and set out on new foundations, another tragic event overturns her life.","id":"2015","runtime":142,"imdbId":"tt0817225","version":149,"lastModified":"1301903832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f0\/4d11d7f15e73d608320009f0\/milyang-mid.jpg","studio":"CJ Entertainment","genre":"Drama","title":"Secret Sunshine","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"13081"} +{"label":"Chang-dong Lee","version":25,"id":"96657","lastModified":"1301902653000","name":"Chang-dong Lee","type":"Person","_key":"13082"} +{"label":"Do-yeon Jeon","version":24,"id":"20737","lastModified":"1301903116000","name":"Do-yeon Jeon","type":"Person","_key":"13083"} +{"label":"Days of Glory","description":"During WWII, four North African men enlist in the French army to liberate that country from Nazi oppression, and to fight French discrimination.","id":"2016","runtime":128,"imdbId":"tt0444182","trailer":"http:\/\/www.youtube.com\/watch?v=5O3Hgrc_dTM","homepage":"http:\/\/www.indigenes-lefilm.com\/","version":369,"lastModified":"1301902848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77a\/4cba1e4e5e73d6778500077a\/indigenes-mid.jpg","studio":"Tessalit Productions","genre":"Drama","title":"Days of Glory","releaseDate":1159315200000,"language":"en","tagline":"The true story of World War II's forgotten heroes.","type":"Movie","_key":"13084"} +{"label":"Rachid Bouchareb","version":36,"id":"20665","lastModified":"1301901382000","name":"Rachid Bouchareb","type":"Person","_key":"13085"} +{"label":"Samy Naceri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/728\/4d0e587c5e73d6371c001728\/samy-naceri-profile.jpg","version":51,"id":"20666","lastModified":"1301901097000","name":"Samy Naceri","type":"Person","_key":"13086"} +{"label":"Sami Bouajila","version":52,"id":"20667","lastModified":"1301901183000","name":"Sami Bouajila","type":"Person","_key":"13087"} +{"label":"Bernard Blancan","version":28,"id":"20668","lastModified":"1301901602000","name":"Bernard Blancan","type":"Person","_key":"13088"} +{"label":"Mathieu Simonet","version":27,"id":"20669","lastModified":"1301901445000","name":"Mathieu Simonet","type":"Person","_key":"13089"} +{"label":"Beno\u00eet Giros","version":23,"id":"20670","lastModified":"1301901624000","name":"Beno\u00eet Giros","type":"Person","_key":"13090"} +{"label":"Assaad Bouab","version":25,"id":"20671","lastModified":"1301901519000","name":"Assaad Bouab","type":"Person","_key":"13091"} +{"label":"Antoine Chappey","version":25,"id":"20672","lastModified":"1301901748000","name":"Antoine Chappey","type":"Person","_key":"13092"} +{"label":"Aur\u00e9lie Eltvedt","version":23,"id":"20673","lastModified":"1301901826000","name":"Aur\u00e9lie Eltvedt","type":"Person","_key":"13093"} +{"label":"Thomas Langmann","version":51,"id":"20674","lastModified":"1301901404000","name":"Thomas Langmann","type":"Person","_key":"13094"} +{"label":"Dioucounda Koma","version":22,"id":"20675","lastModified":"1301901624000","name":"Dioucounda Koma","type":"Person","_key":"13095"} +{"label":"Philippe Beglia","version":21,"id":"20676","lastModified":"1301901542000","name":"Philippe Beglia","type":"Person","_key":"13096"} +{"label":"Momo Debbouze","version":21,"id":"20677","lastModified":"1301901624000","name":"Momo Debbouze","type":"Person","_key":"13097"} +{"label":"Abdelkim Bouchareb","version":21,"id":"20678","lastModified":"1301901542000","name":"Abdelkim Bouchareb","type":"Person","_key":"13098"} +{"label":"Abdelhamid Idjaini","version":21,"id":"20679","lastModified":"1301901624000","name":"Abdelhamid Idjaini","type":"Person","_key":"13099"} +{"label":"No Good Deed","description":"While doing a friend a favor and searching for a runaway teenager, a police detective stumbles upon a bizarre band of criminals about to pull off a bank robbery.","id":"2017","runtime":94,"imdbId":"tt0292610","version":194,"lastModified":"1301905048000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c95\/4bc914c2017a3c57fe007c95\/no-good-deed-mid.jpg","studio":"ApolloMedia","genre":"Action","title":"No Good Deed","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"13100"} +{"label":"Jonathan Higgins","version":25,"id":"20696","lastModified":"1301901629000","name":"Jonathan Higgins","type":"Person","_key":"13101"} +{"label":"Shannon Lawson","version":20,"id":"20697","lastModified":"1301902015000","name":"Shannon Lawson","type":"Person","_key":"13102"} +{"label":"The Wedding Planner","description":"Mary Fiore, San Francisco's premiere wedding planner is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fianc\u00e9 of her latest client, wealthy Fran Donnolly. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.","id":"2018","runtime":103,"imdbId":"tt0209475","version":191,"lastModified":"1301902849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/472\/4d71bc1b7b9aa1294c000472\/the-wedding-planner-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Wedding Planner","releaseDate":980467200000,"language":"en","tagline":"His big day is her big problem.","type":"Movie","_key":"13103"} +{"label":"Adam Shankman","version":68,"id":"20739","lastModified":"1301941876000","name":"Adam Shankman","type":"Person","_key":"13104"} +{"label":"Justin Chambers","version":26,"id":"20746","lastModified":"1301901460000","name":"Justin Chambers","type":"Person","_key":"13105"} +{"label":"Joanna Gleason","version":29,"id":"20747","lastModified":"1301901203000","name":"Joanna Gleason","type":"Person","_key":"13106"} +{"label":"Lou Myers","version":20,"id":"20748","lastModified":"1301903113000","name":"Lou Myers","type":"Person","_key":"13107"} +{"label":"Charles Kimbrough","version":20,"id":"20749","lastModified":"1301903111000","name":"Charles Kimbrough","type":"Person","_key":"13108"} +{"label":"Judy Greer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4bf6e77c017a3c77330002cb\/judy-greer-profile.jpg","version":80,"id":"20750","lastModified":"1301904076000","name":"Judy Greer","type":"Person","_key":"13109"} +{"label":"Bridgette Wilson","version":43,"id":"20751","lastModified":"1301901514000","name":"Bridgette Wilson","type":"Person","_key":"13110"} +{"label":"Alex Rocco","version":39,"id":"20752","lastModified":"1301901204000","name":"Alex Rocco","type":"Person","_key":"13111"} +{"label":"Fred Willard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18d\/4caf2ee57b9aa1213700018d\/fred-willard-profile.jpg","version":105,"id":"20753","lastModified":"1302066403000","name":"Fred Willard","type":"Person","_key":"13112"} +{"label":"Philip Pavel","version":21,"id":"20754","lastModified":"1301901542000","name":"Philip Pavel","type":"Person","_key":"13113"} +{"label":"Natalia Jaroszyk","version":17,"id":"20755","lastModified":"1301903114000","name":"Natalia Jaroszyk","type":"Person","_key":"13114"} +{"label":"Susan Mosher","version":17,"id":"20756","lastModified":"1301903114000","name":"Susan Mosher","type":"Person","_key":"13115"} +{"label":"Hard Target","description":"Natasha Binder comes to New Orleans looking for her father, who has gone missing. In doing so, she meets a very hard man called Chance. He helps her find out that her father was killed by an organisation who sell the opportunity to hunt human prey. They are taking advantage of a police strike in New Orleans. Will the Muscles from Brussels win through?","id":"2019","runtime":97,"imdbId":"tt0107076","trailer":"http:\/\/www.youtube.com\/watch?v=1532","version":160,"lastModified":"1301901870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cac\/4bc914c5017a3c57fe007cac\/hard-target-mid.jpg","studio":"Alphaville Films","genre":"Action","title":"Hard Target","releaseDate":745804800000,"language":"en","type":"Movie","_key":"13116"} +{"label":"Jean-Claude Van Damme","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f3\/4bd07e54017a3c63ea0000f3\/jean-claude-van-damme-profile.jpg","version":172,"birthday":"-290480400000","id":"15111","birthplace":"Sint-Agatha Berchem, Belgium","lastModified":"1301904065000","name":"Jean-Claude Van Damme","type":"Person","_key":"13117"} +{"label":"Yancy Butler","version":30,"id":"20759","lastModified":"1301901197000","name":"Yancy Butler","type":"Person","_key":"13118"} +{"label":"Willie C. Carpenter","version":21,"id":"20760","lastModified":"1301901489000","name":"Willie C. Carpenter","type":"Person","_key":"13119"} +{"label":"Sven-Ole Thorsen","version":32,"id":"20761","lastModified":"1301901771000","name":"Sven-Ole Thorsen","type":"Person","_key":"13120"} +{"label":"Chuck Pfarrer","version":46,"id":"20757","lastModified":"1302064820000","name":"Chuck Pfarrer","type":"Person","_key":"13121"} +{"label":"Robert Apisa","version":20,"id":"20762","lastModified":"1301902023000","name":"Robert Apisa","type":"Person","_key":"13122"} +{"label":"Douglas Forsythe Rye","version":20,"id":"20763","lastModified":"1301902015000","name":"Douglas Forsythe Rye","type":"Person","_key":"13123"} +{"label":"Mike Leinert","version":20,"id":"20764","lastModified":"1301901826000","name":"Mike Leinert","type":"Person","_key":"13124"} +{"label":"Lenore Banks","version":21,"id":"20765","lastModified":"1301901964000","name":"Lenore Banks","type":"Person","_key":"13125"} +{"label":"The Bachelor","description":"Jimmie is seeing his single friends get married one by one. He isn't too worried until his girlfriend Anne catches the bouquet at his friend Marco's wedding. Suddenly, his wild mustang days are numbered. He finally decides to propose to her, but he sticks his foot in his mouth and botches the proposal. Being insulted by the defeatist proposal, Anne leaves town on an assignment. After she's gone, he finds out that his recently-deceased grandfather's will stipulates that he gets nothing of a multi","id":"2020","runtime":101,"imdbId":"tt0120596","version":162,"lastModified":"1301904145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/323\/4cb1ce237b9aa12641000323\/the-bachelor-mid.jpg","studio":"George Street Pictures","genre":"Comedy","title":"The Bachelor","releaseDate":941760000000,"language":"en","tagline":"One thousand brides. One hundred million dollars. Jimmie Shannon is about to discover the true value of love.","type":"Movie","_key":"13126"} +{"label":"Gary Sinyor","version":24,"id":"20779","lastModified":"1301901579000","name":"Gary Sinyor","type":"Person","_key":"13127"} +{"label":"Artie Lange","version":36,"id":"20788","lastModified":"1301901266000","name":"Artie Lange","type":"Person","_key":"13128"} +{"label":"Jack & Sarah","description":"Jack always lands on his feet. He lands on his feet when he marries the beautiful Sarah. He lands on his feet when he buys a luxurious new home. However, when Sarah goes into labour, he takes a tumble down the stairs and lands on his head. When he comes around he discovers he is the proud father of a baby girl, but deficient in the spouse department to the tune of 1. The hires the help of a novice","id":"2021","runtime":110,"imdbId":"tt0113448","version":97,"lastModified":"1301906093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc2\/4bc914cb017a3c57fe007cc2\/jack-sarah-mid.jpg","studio":"Granada Film Productions","genre":"Comedy","title":"Jack & Sarah","releaseDate":802051200000,"language":"en","type":"Movie","_key":"13129"} +{"label":"Richard E. Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/223\/4bd1e8f9017a3c63ea000223\/richard-e-grant-profile.jpg","version":62,"id":"20766","lastModified":"1301901274000","name":"Richard E. Grant","type":"Person","_key":"13130"} +{"label":"Cherie Lunghi","version":24,"id":"20768","lastModified":"1301901320000","name":"Cherie Lunghi","type":"Person","_key":"13131"} +{"label":"Imogen Stubbs","version":22,"id":"20769","lastModified":"1301901950000","name":"Imogen Stubbs","type":"Person","_key":"13132"} +{"label":"David Swift","version":22,"id":"20770","lastModified":"1301901926000","name":"David Swift","type":"Person","_key":"13133"} +{"label":"Kate Hardie","version":20,"id":"20771","lastModified":"1301901748000","name":"Kate Hardie","type":"Person","_key":"13134"} +{"label":"Laurent Gr\u00e9vill","version":26,"id":"20772","lastModified":"1301901651000","name":"Laurent Gr\u00e9vill","type":"Person","_key":"13135"} +{"label":"Tim Sullivan","version":42,"id":"20773","lastModified":"1301901595000","name":"Tim Sullivan","type":"Person","_key":"13136"} +{"label":"Mr. Deeds","description":"When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an expos\u00e9 on Deeds.","id":"2022","runtime":96,"imdbId":"tt0280590","trailer":"http:\/\/www.youtube.com\/watch?v=FLNtwxIbQQM","version":220,"lastModified":"1301902370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13c\/4cdce0e65e73d606e600013c\/mr-deeds-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Mr. Deeds","releaseDate":1025222400000,"language":"en","tagline":"Small town kid, big time right hook.","type":"Movie","_key":"13137"} +{"label":"Allen Covert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/550\/4d82cbf55e73d67e55000550\/allen-covert-profile.jpg","version":81,"id":"20818","lastModified":"1302060441000","name":"Allen Covert","type":"Person","_key":"13138"} +{"label":"Peter Dante","version":52,"id":"20819","lastModified":"1301901410000","name":"Peter Dante","type":"Person","_key":"13139"} +{"label":"Hidalgo","description":"Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...","id":"2023","runtime":136,"imdbId":"tt0317648","trailer":"http:\/\/www.youtube.com\/watch?v=rV0K8ddyKh8","version":165,"lastModified":"1301902678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce8\/4bc914d3017a3c57fe007ce8\/hidalgo-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Hidalgo","releaseDate":1076976000000,"language":"en","tagline":"Unbridled. Unbroken. Unbeaten.","type":"Movie","_key":"13140"} +{"label":"Zuleikha Robinson","version":26,"id":"20803","lastModified":"1301901478000","name":"Zuleikha Robinson","type":"Person","_key":"13141"} +{"label":"Adam Alexi-Malle","version":22,"id":"20804","lastModified":"1301901629000","name":"Adam Alexi-Malle","type":"Person","_key":"13142"} +{"label":"Louise Lombard","version":27,"id":"20805","lastModified":"1301901469000","name":"Louise Lombard","type":"Person","_key":"13143"} +{"label":"Harsh Nayyar","version":24,"id":"20807","lastModified":"1301903111000","name":"Harsh Nayyar","type":"Person","_key":"13144"} +{"label":"Adoni Maropis","version":27,"id":"20808","lastModified":"1301903111000","name":"Adoni Maropis","type":"Person","_key":"13145"} +{"label":"Joshua Wolf Coleman","version":19,"id":"20809","lastModified":"1301901912000","name":"Joshua Wolf Coleman","type":"Person","_key":"13146"} +{"label":"The Patriot","description":"After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.","id":"2024","runtime":164,"imdbId":"tt0187393","trailer":"http:\/\/www.youtube.com\/watch?v=-w6M6IIKjWM","version":626,"lastModified":"1301914483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cff\/4bc914d5017a3c57fe007cff\/the-patriot-mid.jpg","studio":"Centropolis Entertainment","genre":"Action","title":"The Patriot","releaseDate":962150400000,"language":"en","tagline":"Some things are worth fighting for.","type":"Movie","_key":"13147"} +{"label":"Joely Richardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57c\/4d1f4efb5e73d66b2d00157c\/joely-richardson-profile.jpg","version":48,"id":"20810","lastModified":"1301931352000","name":"Joely Richardson","type":"Person","_key":"13148"} +{"label":"Lisa Brenner","version":27,"id":"20811","lastModified":"1301901483000","name":"Lisa Brenner","type":"Person","_key":"13149"} +{"label":"Jay Arlen Jones","version":20,"id":"20812","lastModified":"1301901924000","name":"Jay Arlen Jones","type":"Person","_key":"13150"} +{"label":"Joey D. Vieira","version":20,"id":"20813","lastModified":"1301901924000","name":"Joey D. Vieira","type":"Person","_key":"13151"} +{"label":"Gregory Smith","version":45,"id":"20814","lastModified":"1302065848000","name":"Gregory Smith","type":"Person","_key":"13152"} +{"label":"Skye McCole Bartusiak","version":32,"id":"20815","lastModified":"1301901650000","name":"Skye McCole Bartusiak","type":"Person","_key":"13153"} +{"label":"Bryan Chafin","version":25,"id":"20816","lastModified":"1301901116000","name":"Bryan Chafin","type":"Person","_key":"13154"} +{"label":"Peter Woodward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cb0\/4d7c0c365e73d62836001cb0\/peter-woodward-profile.jpg","version":30,"id":"20817","lastModified":"1301901924000","name":"Peter Woodward","type":"Person","_key":"13155"} +{"label":"Quelques jours avec moi","description":"No overview found.","id":"2025","runtime":129,"imdbId":"tt0095943","version":73,"lastModified":"1301907436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4bdb63ba017a3c5d8d00017e\/quelques-jours-avec-moi-mid.jpg","studio":"Cin\u00e9a","genre":"Comedy","title":"Quelques jours avec moi","releaseDate":587520000000,"language":"en","type":"Movie","_key":"13156"} +{"label":"Claude Sautet","version":46,"id":"20789","lastModified":"1301901451000","name":"Claude Sautet","type":"Person","_key":"13157"} +{"label":"Th\u00e9r\u00e8se Liotard","version":24,"id":"20796","lastModified":"1301901824000","name":"Th\u00e9r\u00e8se Liotard","type":"Person","_key":"13158"} +{"label":"G\u00e9rard Isma\u00ebl","version":21,"id":"20797","lastModified":"1301902031000","name":"G\u00e9rard Isma\u00ebl","type":"Person","_key":"13159"} +{"label":"Tanya Lopert","version":26,"id":"20798","lastModified":"1301901689000","name":"Tanya Lopert","type":"Person","_key":"13160"} +{"label":"Philippe Laudenbach","version":44,"id":"20799","lastModified":"1301901405000","name":"Philippe Laudenbach","type":"Person","_key":"13161"} +{"label":"Hostage","description":"A police officer is wracked by guilt from a prior stint as a negotiator. When a mafia accountant is taken hostage on his beat, he must negotiate the standoff, even as his own family is held captive by the mob.","id":"2026","runtime":109,"imdbId":"tt0340163","version":186,"lastModified":"1301902479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d10\/4bc914d7017a3c57fe007d10\/hostage-mid.jpg","studio":"Miramax Films","genre":"Action","title":"Hostage","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"13162"} +{"label":"Florent Emilio Siri","version":20,"id":"20839","lastModified":"1301901509000","name":"Florent Emilio Siri","type":"Person","_key":"13163"} +{"label":"Michelle Horn","version":18,"id":"20847","lastModified":"1301901432000","name":"Michelle Horn","type":"Person","_key":"13164"} +{"label":"Ben Foster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/317\/4bd2e3e2017a3c63ef000317\/ben-foster-profile.jpg","version":98,"id":"11107","lastModified":"1301904079000","name":"Ben Foster","type":"Person","_key":"13165"} +{"label":"Marshall Allman","version":25,"id":"17347","lastModified":"1301901486000","name":"Marshall Allman","type":"Person","_key":"13166"} +{"label":"Serena Scott Thomas","version":32,"id":"10780","lastModified":"1301901364000","name":"Serena Scott Thomas","type":"Person","_key":"13167"} +{"label":"Rumer Willis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bf05768017a3c2d2e00003b\/rumer-willis-profile.jpg","version":28,"id":"20848","lastModified":"1301901311000","name":"Rumer Willis","type":"Person","_key":"13168"} +{"label":"Say Anything...","description":"To know Lloyd Dobler is to love him. Diane Court is about to know Lloyd Dobler.","id":"2028","runtime":96,"imdbId":"tt0098258","version":145,"lastModified":"1301902300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2b\/4bc914db017a3c57fe007d2b\/say-anything-mid.jpg","studio":"Gracie Films","genre":"Comedy","title":"Say Anything...","releaseDate":608515200000,"language":"en","type":"Movie","_key":"13169"} +{"label":"Amy Brooks","version":19,"id":"21062","lastModified":"1301901842000","name":"Amy Brooks","type":"Person","_key":"13170"} +{"label":"Pamela Adlon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd5\/4d4a8c9e7b9aa13aab000dd5\/pamela-adlon-profile.jpg","version":53,"id":"21063","lastModified":"1301901328000","name":"Pamela Adlon","type":"Person","_key":"13171"} +{"label":"Jason Gould","version":19,"id":"21064","lastModified":"1301902030000","name":"Jason Gould","type":"Person","_key":"13172"} +{"label":"Johnny Green","version":23,"id":"21065","lastModified":"1301901687000","name":"Johnny Green","type":"Person","_key":"13173"} +{"label":"Patrick O'Neill","version":29,"id":"21066","lastModified":"1301901826000","name":"Patrick O'Neill","type":"Person","_key":"13174"} +{"label":"Tanguy","description":"No overview found.","id":"2029","runtime":108,"imdbId":"tt0274155","version":102,"lastModified":"1301904693000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d39\/4bc914dd017a3c57fe007d39\/tanguy-mid.jpg","studio":"Les Productions du Champ Poirier","genre":"Comedy","title":"Tanguy","releaseDate":1004572800000,"language":"en","type":"Movie","_key":"13175"} +{"label":"\u00c9tienne Chatiliez","version":33,"id":"20849","lastModified":"1301901585000","name":"\u00c9tienne Chatiliez","type":"Person","_key":"13176"} +{"label":"Eric Berger","version":25,"id":"20850","lastModified":"1301901467000","name":"Eric Berger","type":"Person","_key":"13177"} +{"label":"Sabine Az\u00e9ma","version":37,"id":"20851","lastModified":"1301901377000","name":"Sabine Az\u00e9ma","type":"Person","_key":"13178"} +{"label":"H\u00e9l\u00e8ne Duc","version":18,"id":"20852","lastModified":"1301901554000","name":"H\u00e9l\u00e8ne Duc","type":"Person","_key":"13179"} +{"label":"Andr\u00e9 Wilms","version":36,"id":"20853","lastModified":"1301901499000","name":"Andr\u00e9 Wilms","type":"Person","_key":"13180"} +{"label":"Bekenntnisse des Hochstaplers Felix Krull","description":"No overview found.","id":"2030","runtime":108,"imdbId":"tt0050179","version":69,"lastModified":"1301906183000","studio":"Filmaufbau","genre":"Comedy","title":"Bekenntnisse des Hochstaplers Felix Krull","releaseDate":-400464000000,"language":"en","type":"Movie","_key":"13181"} +{"label":"Heidi Br\u00fchl","version":28,"id":"20861","lastModified":"1301901422000","name":"Heidi Br\u00fchl","type":"Person","_key":"13182"} +{"label":"Susi Nicoletti","version":24,"id":"20862","lastModified":"1301901663000","name":"Susi Nicoletti","type":"Person","_key":"13183"} +{"label":"Werner Hinz","version":19,"id":"20863","lastModified":"1301903115000","name":"Werner Hinz","type":"Person","_key":"13184"} +{"label":"Ingrid Andree","version":20,"id":"20864","lastModified":"1301902027000","name":"Ingrid Andree","type":"Person","_key":"13185"} +{"label":"Paul Dahlke","version":20,"id":"20865","lastModified":"1301901570000","name":"Paul Dahlke","type":"Person","_key":"13186"} +{"label":"Peer Schmidt","version":25,"id":"20866","lastModified":"1301901974000","name":"Peer Schmidt","type":"Person","_key":"13187"} +{"label":"Kurt Hoffmann","version":24,"id":"20869","lastModified":"1301901501000","name":"Kurt Hoffmann","type":"Person","_key":"13188"} +{"label":"Auferstehung","description":"No overview found.","id":"2031","runtime":105,"imdbId":"tt0051382","version":53,"lastModified":"1301906762000","studio":"Bavaria Film International","genre":"Drama","title":"Auferstehung","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"13189"} +{"label":"Myriam Bru","version":18,"id":"20889","lastModified":"1301901662000","name":"Myriam Bru","type":"Person","_key":"13190"} +{"label":"Ruth Niehaus","version":17,"id":"20880","lastModified":"1301901797000","name":"Ruth Niehaus","type":"Person","_key":"13191"} +{"label":"Edith Mill","version":18,"id":"20881","lastModified":"1301901570000","name":"Edith Mill","type":"Person","_key":"13192"} +{"label":"Lea Massari","version":23,"id":"20882","lastModified":"1301901295000","name":"Lea Massari","type":"Person","_key":"13193"} +{"label":"G\u00fcnther L\u00fcders","version":21,"id":"20883","lastModified":"1301901663000","name":"G\u00fcnther L\u00fcders","type":"Person","_key":"13194"} +{"label":"Elisabeth Flickenschildt","version":26,"id":"20884","lastModified":"1301901525000","name":"Elisabeth Flickenschildt","type":"Person","_key":"13195"} +{"label":"Lina Carstens","version":23,"id":"20886","lastModified":"1301901797000","name":"Lina Carstens","type":"Person","_key":"13196"} +{"label":"Marisa Merlini","version":27,"id":"20887","lastModified":"1301903115000","name":"Marisa Merlini","type":"Person","_key":"13197"} +{"label":"Rudolf Rhomberg","version":17,"id":"20888","lastModified":"1301903113000","name":"Rudolf Rhomberg","type":"Person","_key":"13198"} +{"label":"Gabrielle Dorziat","version":20,"id":"37444","lastModified":"1301901974000","name":"Gabrielle Dorziat","type":"Person","_key":"13199"} +{"label":"Jean Murat","version":23,"id":"37143","lastModified":"1301901662000","name":"Jean Murat","type":"Person","_key":"13200"} +{"label":"Transit","description":"No overview found.","id":"2032","runtime":140,"imdbId":"tt0416111","version":100,"lastModified":"1301905654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d42\/4bc914df017a3c57fe007d42\/2032-mid.jpg","studio":"Kinokompaniya CTB","genre":"Comedy","title":"Transit","releaseDate":1152144000000,"language":"en","type":"Movie","_key":"13201"} +{"label":"Daniil Strakhov","version":21,"id":"20891","lastModified":"1301901317000","name":"Daniil Strakhov","type":"Person","_key":"13202"} +{"label":"Anastasiya Nemolyayeva","version":18,"id":"20892","lastModified":"1301901447000","name":"Anastasiya Nemolyayeva","type":"Person","_key":"13203"} +{"label":"Svetlana Stroganova","version":18,"id":"20893","lastModified":"1301901791000","name":"Svetlana Stroganova","type":"Person","_key":"13204"} +{"label":"Jurij Ickov","version":18,"id":"20894","lastModified":"1301901825000","name":"Jurij Ickov","type":"Person","_key":"13205"} +{"label":"Stepan Abramov","version":18,"id":"20895","lastModified":"1301901966000","name":"Stepan Abramov","type":"Person","_key":"13206"} +{"label":"Aleksey Serebryakov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17e\/4c5693f47b9aa151f300017e\/aleksey-serebryakov-profile.jpg","version":30,"birthday":"-176086800000","id":"113332","birthplace":"Moscow","lastModified":"1301902222000","name":"Aleksey Serebryakov","type":"Person","_key":"13207"} +{"label":"Infinity","description":"Story of the early life of genius and Nobel Prize-winning physicist Richard Feynman.","id":"2033","runtime":119,"imdbId":"tt0116635","version":114,"lastModified":"1301903861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4c9ff6305e73d67b5f0003b7\/infinity-mid.jpg","studio":"First Look International","genre":"Drama","title":"Infinity","releaseDate":844387200000,"language":"en","type":"Movie","_key":"13208"} +{"label":"Jeffrey Force","version":17,"id":"20900","lastModified":"1301901688000","name":"Jeffrey Force","type":"Person","_key":"13209"} +{"label":"David Drew Gallagher","version":22,"id":"20901","lastModified":"1301901829000","name":"David Drew Gallagher","type":"Person","_key":"13210"} +{"label":"Raffi Di Blasio","version":16,"id":"20902","lastModified":"1301903116000","name":"Raffi Di Blasio","type":"Person","_key":"13211"} +{"label":"Josh Keaton","version":28,"id":"20903","lastModified":"1302059499000","name":"Josh Keaton","type":"Person","_key":"13212"} +{"label":"James Hong","version":69,"id":"20904","lastModified":"1301901290000","name":"James Hong","type":"Person","_key":"13213"} +{"label":"Melissa DeLizia","version":17,"id":"20905","lastModified":"1301901812000","name":"Melissa DeLizia","type":"Person","_key":"13214"} +{"label":"Peter Michael Goetz","version":19,"id":"20906","lastModified":"1301901834000","name":"Peter Michael Goetz","type":"Person","_key":"13215"} +{"label":"Training Day","description":"Staying on the right side of the law will be more challenging than anything rookie cop Jake Hoyt has ever faced -- especially since Hoyt's partner for the next 24 hours is meaner than L.A.'s meanest streets.","id":"2034","runtime":122,"imdbId":"tt0139654","trailer":"http:\/\/www.youtube.com\/watch?v=gKTVQPOH8ZA","homepage":"http:\/\/trainingday.warnerbros.com\/","version":229,"lastModified":"1301976755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ae\/4d8c5ee17b9aa13ae40029ae\/training-day-mid.jpg","studio":"NPV Entertainment","genre":"Action","title":"Training Day","releaseDate":1002240000000,"language":"en","tagline":"Boom Ba-Boom, Boom, Boom...","type":"Movie","_key":"13216"} +{"label":"Antoine Fuqua","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e4\/4d8158d17b9aa12dac0014e4\/antoine-fuqua-profile.jpg","version":63,"id":"20907","lastModified":"1302060727000","name":"Antoine Fuqua","type":"Person","_key":"13217"} +{"label":"Snoop Dogg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4c14f6785e73d64a1f00007c\/snoop-dogg-profile.jpg","version":67,"id":"19767","lastModified":"1302060727000","name":"Snoop Dogg","type":"Person","_key":"13218"} +{"label":"Dr. Dre","version":31,"id":"2041","lastModified":"1302060727000","name":"Dr. Dre","type":"Person","_key":"13219"} +{"label":"Charlotte Ayanna","version":29,"id":"6281","lastModified":"1302060728000","name":"Charlotte Ayanna","type":"Person","_key":"13220"} +{"label":"Touch and Die","description":"No overview found.","id":"2035","runtime":180,"imdbId":"tt0103108","version":67,"lastModified":"1301906184000","studio":"ITC Productions","genre":"Thriller","title":"Touch and Die","releaseDate":662688000000,"language":"en","type":"Movie","_key":"13221"} +{"label":"Piernico Solinas","version":20,"id":"20909","lastModified":"1301901570000","name":"Piernico Solinas","type":"Person","_key":"13222"} +{"label":"V\u00e9ronique Jannot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a94\/4d1b58cc5e73d665a6000a94\/v-ronique-jannot-profile.jpg","version":23,"id":"42934","lastModified":"1301901599000","name":"V\u00e9ronique Jannot","type":"Person","_key":"13223"} +{"label":"Jacques Perrin","version":66,"id":"20030","lastModified":"1301901202000","name":"Jacques Perrin","type":"Person","_key":"13224"} +{"label":"David Birney","version":19,"id":"20913","lastModified":"1301901501000","name":"David Birney","type":"Person","_key":"13225"} +{"label":"Kent Broadhurst","version":17,"id":"20914","lastModified":"1301902022000","name":"Kent Broadhurst","type":"Person","_key":"13226"} +{"label":"Bradley Cole","version":17,"id":"20915","lastModified":"1301903116000","name":"Bradley Cole","type":"Person","_key":"13227"} +{"label":"Ron De Roxtra","version":17,"id":"20916","lastModified":"1301902029000","name":"Ron De Roxtra","type":"Person","_key":"13228"} +{"label":"Nik Hagler","version":17,"id":"20912","lastModified":"1301902014000","name":"Nik Hagler","type":"Person","_key":"13229"} +{"label":"Jean-Yves Gautier","version":19,"id":"20918","lastModified":"1301902022000","name":"Jean-Yves Gautier","type":"Person","_key":"13230"} +{"label":"Luca Venantini","version":23,"id":"20919","lastModified":"1301901502000","name":"Luca Venantini","type":"Person","_key":"13231"} +{"label":"Ren\u00e9e Estevez","version":23,"id":"42935","lastModified":"1301902204000","name":"Ren\u00e9e Estevez","type":"Person","_key":"13232"} +{"label":"Avalanche Express","description":"CIA agent Harry Wargrave (Marvin) is sent to aid Gen. Marenkov (Shaw), a senior Russian official, who is defecting to the west. Wargrave decides they should travel to safety on a train across Europe, the \"Atlantic Express\". During the journey they must survive attacks by terrorists and an avalanche, all planned by Russian spy-catcher Nikolai Bunin (Schell).","id":"2036","runtime":85,"imdbId":"tt0078812","version":148,"lastModified":"1301904827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/253\/4d2874ff7b9aa134d3002253\/avalanche-express-mid.jpg","studio":"Lorimar Productions","genre":"Action","title":"Avalanche Express","releaseDate":307411200000,"language":"en","type":"Movie","_key":"13233"} +{"label":"Monte Hellman","version":38,"id":"20921","lastModified":"1301901473000","name":"Monte Hellman","type":"Person","_key":"13234"} +{"label":"Linda Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/325\/4c4d3ccd7b9aa1237c000325\/linda-evans-profile.jpg","version":22,"id":"20928","lastModified":"1301901900000","name":"Linda Evans","type":"Person","_key":"13235"} +{"label":"Joe Namath","version":18,"id":"20929","lastModified":"1301902005000","name":"Joe Namath","type":"Person","_key":"13236"} +{"label":"Mike Connors","version":25,"id":"29718","lastModified":"1301901588000","name":"Mike Connors","type":"Person","_key":"13237"} +{"label":"Arthur Brauss","version":24,"id":"22623","lastModified":"1301903120000","name":"Arthur Brauss","type":"Person","_key":"13238"} +{"label":"David Hess","version":36,"id":"101575","lastModified":"1301902561000","name":"David Hess","type":"Person","_key":"13239"} +{"label":"Sylva Langova","version":17,"id":"97642","lastModified":"1301902987000","name":"Sylva Langova","type":"Person","_key":"13240"} +{"label":"Kristina Nel","version":21,"id":"51561","lastModified":"1301901643000","name":"Kristina Nel","type":"Person","_key":"13241"} +{"label":"Aphrodite","description":"Harry is a young millionaire on holiday; he takes his yacht to a Greek island, and stays in the mansion of his friend...","id":"2037","runtime":95,"imdbId":"tt0083572","version":71,"lastModified":"1301906639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ac\/4d0130ff5e73d621a20000ac\/aphrodite-mid.jpg","studio":"Almira Films","genre":"Drama","title":"Aphrodite","releaseDate":378691200000,"language":"en","type":"Movie","_key":"13242"} +{"label":"Robert Fuest","version":29,"id":"20937","lastModified":"1301901458000","name":"Robert Fuest","type":"Person","_key":"13243"} +{"label":"Catherine Jourdan","version":19,"id":"20945","lastModified":"1301901478000","name":"Catherine Jourdan","type":"Person","_key":"13244"} +{"label":"Daniel Beretta","version":16,"id":"20946","lastModified":"1301901912000","name":"Daniel Beretta","type":"Person","_key":"13245"} +{"label":"Yves Massard","version":17,"id":"20947","lastModified":"1301901935000","name":"Yves Massard","type":"Person","_key":"13246"} +{"label":"Iron Eagle III","description":"Chappy discovers a drug-smuggling scheme at his own air base. It turns out that the lives of some village people in Peru are at stake, and he decides to fly there with ancient airplanes and friends to free them.","id":"2038","runtime":98,"imdbId":"tt0103617","version":109,"lastModified":"1301903038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4d47db157b9aa15bb500c376\/iron-eagle-iii-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Iron Eagle III","releaseDate":704592000000,"language":"en","type":"Movie","_key":"13247"} +{"label":"Rachel McLish","version":17,"id":"20957","lastModified":"1301902014000","name":"Rachel McLish","type":"Person","_key":"13248"} +{"label":"Ray 'Boom Boom' Mancini","version":16,"id":"20958","lastModified":"1301903113000","name":"Ray 'Boom Boom' Mancini","type":"Person","_key":"13249"} +{"label":"Louis Gossett Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4cc835337b9aa16b9c0000a7\/louis-gossett-jr-profile.jpg","version":65,"id":"20959","lastModified":"1301901219000","name":"Louis Gossett Jr.","type":"Person","_key":"13250"} +{"label":"Rob Estes","version":17,"id":"20960","lastModified":"1301901812000","name":"Rob Estes","type":"Person","_key":"13251"} +{"label":"Moonstruck","description":"Cher is devastatingly funny, sinuous and beautiful as Loretta, an unlucky-in-love Italian widow who finds romance through the intervention of the Manhattan moon. With her wedding to a close friend just weeks away, she meets - and falls hopelessly in love with - his younger brother (Cage)! ","id":"2039","runtime":102,"imdbId":"tt0093565","trailer":"http:\/\/www.youtube.com\/watch?v=FtvJexR4iVg","version":167,"lastModified":"1302025065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5d\/4bc914e5017a3c57fe007d5d\/moonstruck-mid.jpg","studio":"Star Partners II Ltd.","genre":"Comedy","title":"Moonstruck","releaseDate":566784000000,"language":"en","type":"Movie","_key":"13252"} +{"label":"Cher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/777\/4ce595417b9aa168b0000777\/cher-profile.jpg","biography":"Cher, Born Cherilyn Sarkisianis a long-time American #1\nBillboard Hot 100 and Grammy Award winning recording artist, Emmy Award winning\ntelevision personality, multiple Academy Award, Golden Globe, and Cannes Film\nFestival award winning actress, director, record producer and dedicated\nphilanthropist. With a career spanning over six decades and referred to as the\nGoddess of Pop, she has won an Academy Award, a Grammy Award, an Emmy Award,\nthree Golden Globes and a Cannes Film Festival Award among","version":67,"birthday":"-745380000000","id":"38225","birthplace":"El Centro, California, USA","lastModified":"1301904064000","name":"Cher","type":"Person","_key":"13253"} +{"label":"Julie Bovasso","version":19,"id":"20972","lastModified":"1301901763000","name":"Julie Bovasso","type":"Person","_key":"13254"} +{"label":"Louis Guss","version":16,"id":"20973","lastModified":"1301903115000","name":"Louis Guss","type":"Person","_key":"13255"} +{"label":"Anita Gillette","version":18,"id":"20974","lastModified":"1301901762000","name":"Anita Gillette","type":"Person","_key":"13256"} +{"label":"Nada Despotovich","version":20,"id":"20975","lastModified":"1301901388000","name":"Nada Despotovich","type":"Person","_key":"13257"} +{"label":"Savior","description":"A hardened mercenary in the Foreign Legion begins to find his own humanity when confronted with atrocities during the fighting in Bosnia","id":"2042","runtime":99,"imdbId":"tt0120070","version":116,"lastModified":"1301905278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/167\/4d056abf5e73d621a3003167\/savior-mid.jpg","studio":"Initial Entertainment Group","genre":"Drama","title":"Savior","releaseDate":911520000000,"language":"en","type":"Movie","_key":"13258"} +{"label":"Predrag Antonijevic","version":20,"id":"21013","lastModified":"1301901827000","name":"Predrag Antonijevic","type":"Person","_key":"13259"} +{"label":"Pascal Rollin","version":17,"id":"21019","lastModified":"1301903111000","name":"Pascal Rollin","type":"Person","_key":"13260"} +{"label":"Catlin Foster","version":17,"id":"21020","lastModified":"1301903115000","name":"Catlin Foster","type":"Person","_key":"13261"} +{"label":"John Maclaren","version":20,"id":"21021","lastModified":"1301903113000","name":"John Maclaren","type":"Person","_key":"13262"} +{"label":"Along Came a Spider","description":"When a teacher kidnaps a girl from a prestigious school, homicide detective Alex Cross takes the case, teaming up with young security agent Jezzie Flannigan, in hopes of finding the girl and stopping the brutal psychopath. Every second counts as Alex and Jezzie attempt to track down the kidnapper before the spider claims another victim for its web.","id":"2043","runtime":99,"imdbId":"tt0164334","version":178,"lastModified":"1301905747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c7\/4d3dfe7e7b9aa15bbf0004c7\/along-came-a-spider-mid.jpg","studio":"AZL Productions KG","genre":"Crime","title":"Along Came a Spider","releaseDate":994896000000,"language":"en","tagline":"The game is far from over.","type":"Movie","_key":"13263"} +{"label":"Mika Boorem","version":32,"id":"21027","lastModified":"1301901239000","name":"Mika Boorem","type":"Person","_key":"13264"} +{"label":"Billy Burke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4c8cee785e73d609ed0001cb\/billy-burke-profile.jpg","version":111,"id":"21029","lastModified":"1301901165000","name":"Billy Burke","type":"Person","_key":"13265"} +{"label":"Michael Moriarty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4bca025c017a3c0e8b00003d\/michael-moriarty-profile.jpg","version":46,"id":"21030","lastModified":"1301901198000","name":"Michael Moriarty","type":"Person","_key":"13266"} +{"label":"The Lake House","description":"A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late","id":"2044","runtime":95,"imdbId":"tt0410297","trailer":"http:\/\/www.youtube.com\/watch?v=118","homepage":"http:\/\/wwws.warnerbros.de\/thelakehouse\/","version":242,"lastModified":"1301901507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d89\/4bc914eb017a3c57fe007d89\/the-lake-house-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Lake House","releaseDate":1152144000000,"language":"en","type":"Movie","_key":"13267"} +{"label":"Alejandro Agresti","version":28,"id":"21031","lastModified":"1302065009000","name":"Alejandro Agresti","type":"Person","_key":"13268"} +{"label":"Shohreh Aghdashloo","version":47,"id":"21041","lastModified":"1302065009000","name":"Shohreh Aghdashloo","type":"Person","_key":"13269"} +{"label":"Ebon Moss-Bachrach","version":31,"id":"21042","lastModified":"1302065009000","name":"Ebon Moss-Bachrach","type":"Person","_key":"13270"} +{"label":"Dylan Walsh","version":45,"id":"21043","lastModified":"1302065009000","name":"Dylan Walsh","type":"Person","_key":"13271"} +{"label":"Lynn Collins","version":63,"id":"21044","lastModified":"1302065009000","name":"Lynn Collins","type":"Person","_key":"13272"} +{"label":"Unforgettable","description":"Ray Liotta stars as a medical examiner who has been acquitted for his wife's murder but many still question his innocence. Obsessed with finding his wife's killer, a possible solution presents itself in an experimental serum designed by a neurobiology Linda Fiorentino which has the ability to transfer memories from one person to another, but not without consequences. Liotta driven to solve the case injects himself with the serum, bringing him closer and closer to finding her killer but bringin","id":"2045","runtime":106,"imdbId":"tt0118040","version":131,"lastModified":"1302039337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/865\/4d11e1227b9aa11482000865\/unforgettable-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Mystery","title":"Unforgettable","releaseDate":825033600000,"language":"en","type":"Movie","_key":"13273"} +{"label":"John Dahl","version":32,"id":"21053","lastModified":"1301901524000","name":"John Dahl","type":"Person","_key":"13274"} +{"label":"Colleen Rennison","version":20,"id":"21058","lastModified":"1301901685000","name":"Colleen Rennison","type":"Person","_key":"13275"} +{"label":"Caroline Elliott","version":17,"id":"21059","lastModified":"1301903115000","name":"Caroline Elliott","type":"Person","_key":"13276"} +{"label":"Stellina Rusich","version":17,"id":"21060","lastModified":"1301903113000","name":"Stellina Rusich","type":"Person","_key":"13277"} +{"label":"The Gift","description":"When a local woman disappears and the police can't seem to find any leads, her father turns to a poor young woman with psychic powers. Slowly she starts having visions of the woman chained and in a pond. Her visions lead to the body and the arrest of an abusive husband, but did he really do it? ","id":"2046","runtime":111,"imdbId":"tt0219699","trailer":"http:\/\/www.youtube.com\/watch?v=<object width=\"640\" height=\"390\"><param name=\"movie\" value=\"http:\/\/www.youtube.com\/v\/z13OwZdffYs?fs=1&hl=fr_FR&rel=0\"><\/param><param name=\"allowFullScreen\" value=\"true\"><\/param><param name=\"allowscriptaccess\" value=\"always\"><\/param><embed src=\"http:\/\/www.youtube.com\/v\/z13OwZdffYs?fs=1&hl=fr_FR&rel=0\" type=\"application\/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"640\" height=\"390\"><\/embed><\/object>","version":178,"lastModified":"1301902916000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f9\/4cb883797b9aa138d80008f9\/the-gift-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"The Gift","releaseDate":977270400000,"language":"en","tagline":"The only witness to the crime was not even there.","type":"Movie","_key":"13278"} +{"label":"David Brannen","version":18,"id":"21164","lastModified":"1301901912000","name":"David Brannen","type":"Person","_key":"13279"} +{"label":"Kim Dickens","version":55,"id":"21165","lastModified":"1301901402000","name":"Kim Dickens","type":"Person","_key":"13280"} +{"label":"The Real McCoy","description":"Karen McCoy is released from prison with nothing but the clothes on her back. Before being incarcerated Karen was the bank robber of her time, but now she wishes for nothing more than to settle down and start a new life. Unfortunately between a dirty parole officer, old business partners, and an idiot ex-husband she will have to do the unthinkable in order to save her son.","id":"2047","runtime":100,"imdbId":"tt0107927","version":116,"lastModified":"1301903864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dae\/4bc914ed017a3c57fe007dae\/the-real-mccoy-mid.jpg","studio":"Capella International","genre":"Action","title":"The Real McCoy","releaseDate":751766400000,"language":"en","type":"Movie","_key":"13281"} +{"label":"Russell Mulcahy","version":77,"id":"52968","lastModified":"1301901178000","name":"Russell Mulcahy","type":"Person","_key":"13282"} +{"label":"David Dwyer","version":22,"id":"21084","lastModified":"1301901790000","name":"David Dwyer","type":"Person","_key":"13283"} +{"label":"Zach English","version":18,"id":"21081","lastModified":"1301902002000","name":"Zach English","type":"Person","_key":"13284"} +{"label":"Raynor Scheine","version":29,"id":"21082","lastModified":"1301901567000","name":"Raynor Scheine","type":"Person","_key":"13285"} +{"label":"Andy Stahl","version":22,"id":"21083","lastModified":"1301901839000","name":"Andy Stahl","type":"Person","_key":"13286"} +{"label":"I, Robot","description":"In the year 2035, where robots are common and abide by the three laws of robotics, a techno-phobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.","id":"2048","runtime":115,"imdbId":"tt0343818","trailer":"http:\/\/www.youtube.com\/watch?v=s0f3JeDVeEo","homepage":"http:\/\/foxfilm.terra.com.br\/filme.php?id_filme=485","version":323,"lastModified":"1301976799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddf\/4bc914f3017a3c57fe007ddf\/i-robot-mid.jpg","studio":"Overbrook Films","genre":"Action","title":"I, Robot","releaseDate":1089936000000,"language":"en","tagline":"Laws are made to be broken.","type":"Movie","_key":"13287"} +{"label":"Alex Proyas","version":67,"id":"21085","lastModified":"1301901125000","name":"Alex Proyas","type":"Person","_key":"13288"} +{"label":"Alan Tudyk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4bd70b16017a3c21ec0000ee\/alan-tudyk-profile.jpg","version":92,"id":"21088","lastModified":"1301901126000","name":"Alan Tudyk","type":"Person","_key":"13289"} +{"label":"Bruce Greenwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4bd74c16017a3c21e9000160\/bruce-greenwood-profile.jpg","version":116,"id":"21089","lastModified":"1301904072000","name":"Bruce Greenwood","type":"Person","_key":"13290"} +{"label":"How To Cook Your Life","description":"No overview found.","id":"2049","runtime":93,"imdbId":"tt0943512","homepage":"http:\/\/www.how-to-cook-your-life.de","version":108,"lastModified":"1301913725000","studio":"MFA Filmdistribution","genre":"Documentary","title":"How To Cook Your Life","releaseDate":1178755200000,"language":"en","type":"Movie","_key":"13291"} +{"label":"Edward Espe Brown","version":17,"id":"21100","lastModified":"1301901662000","name":"Edward Espe Brown","type":"Person","_key":"13292"} +{"label":"Mr. Holland's Opus","description":"In 1965, passionate musician Glenn Holland (Richard Dreyfuss) takes a day job as a high school music teacher, convinced it's just a small obstacle on the road to his true calling: writing a historic opus. As the decades roll by with the composition unwritten but generations of students inspired through his teaching, Holland must redefine his life's purpose.","id":"2054","runtime":137,"imdbId":"tt0113862","trailer":"http:\/\/www.youtube.com\/watch?v=2307","version":102,"lastModified":"1301902795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e06\/4bc914f9017a3c57fe007e06\/mr-holland-s-opus-mid.jpg","studio":"Interscope Communications","genre":"Drama","title":"Mr. Holland's Opus","releaseDate":821923200000,"language":"en","type":"Movie","_key":"13293"} +{"label":"Glenne Headly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b8\/4c51d0fb5e73d632bc0000b8\/glenne-headly-profile.jpg","version":51,"id":"21104","lastModified":"1301901402000","name":"Glenne Headly","type":"Person","_key":"13294"} +{"label":"Jay Thomas","version":25,"id":"21105","lastModified":"1301901272000","name":"Jay Thomas","type":"Person","_key":"13295"} +{"label":"Nicholas John Renner","version":17,"id":"21107","lastModified":"1301901983000","name":"Nicholas John Renner","type":"Person","_key":"13296"} +{"label":"Joseph Anderson","version":17,"id":"21108","lastModified":"1301902014000","name":"Joseph Anderson","type":"Person","_key":"13297"} +{"label":"Anthony Natale","version":17,"id":"21109","lastModified":"1301901824000","name":"Anthony Natale","type":"Person","_key":"13298"} +{"label":"Jean Louisa Kelly","version":24,"id":"26495","lastModified":"1301901591000","name":"Jean Louisa Kelly","type":"Person","_key":"13299"} +{"label":"Open Range","description":"A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.","id":"2055","runtime":139,"imdbId":"tt0316356","trailer":"http:\/\/www.youtube.com\/watch?v=60wmgRH958Q","version":161,"lastModified":"1301913659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e18\/4bc914fd017a3c57fe007e18\/open-range-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Open Range","releaseDate":1043798400000,"language":"en","type":"Movie","_key":"13300"} +{"label":"Abraham Benrubi","version":29,"id":"21132","lastModified":"1301901341000","name":"Abraham Benrubi","type":"Person","_key":"13301"} +{"label":"Dean McDermott","version":24,"id":"65771","lastModified":"1301901488000","name":"Dean McDermott","type":"Person","_key":"13302"} +{"label":"The Station Agent","description":"The passion of the lonely and quiet dwarf Finbar McBride is trains. Fin inherits some land with an old depot in the middle of nowhere in Newfoundland, New Jersey, when his partner, also a fanatic for trains and unique friend Henry Styles, dies. He moves to the train station, where his neighbor is the Cuban Joe Oramas, who is manning his sick father's hot-dog trailer. He also meets Olivia Harris, a clumsy divorced woman who grieves the death of her beloved son Sam. After some days, the weird trio","id":"2056","runtime":88,"imdbId":"tt0340377","trailer":"http:\/\/www.youtube.com\/watch?v=121","version":177,"lastModified":"1301905384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e25\/4bc914fd017a3c57fe007e25\/the-station-agent-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"The Station Agent","releaseDate":1043539200000,"language":"en","tagline":"Loneliness is much better when you have got someone to share it with.","type":"Movie","_key":"13303"} +{"label":"Jase Blankfort","version":18,"id":"21123","lastModified":"1301901682000","name":"Jase Blankfort","type":"Person","_key":"13304"} +{"label":"Paula Garc\u00e9s","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d7\/4ce18c6e5e73d60f6d0003d7\/paula-garces-profile.jpg","version":35,"id":"21124","lastModified":"1301901157000","name":"Paula Garc\u00e9s","type":"Person","_key":"13305"} +{"label":"Richard Kind","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/344\/4c95ddaa7b9aa10d5c000344\/richard-kind-profile.jpg","version":76,"id":"21125","lastModified":"1302066196000","name":"Richard Kind","type":"Person","_key":"13306"} +{"label":"Bobby Cannavale","version":37,"id":"21127","lastModified":"1301901386000","name":"Bobby Cannavale","type":"Person","_key":"13307"} +{"label":"Raven Goodwin","version":17,"id":"21128","lastModified":"1301903115000","name":"Raven Goodwin","type":"Person","_key":"13308"} +{"label":"Marla Sucharetza","version":16,"id":"21129","lastModified":"1301903117000","name":"Marla Sucharetza","type":"Person","_key":"13309"} +{"label":"Joe Lo Truglio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/535\/4ce3ffa57b9aa168b3000535\/joe-lo-truglio-profile.jpg","version":29,"id":"21131","lastModified":"1301976643000","name":"Joe Lo Truglio","type":"Person","_key":"13310"} +{"label":"John Slattery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/357\/4d59dc217b9aa122bb000357\/john-slattery-profile.jpg","version":57,"id":"21134","lastModified":"1301901217000","name":"John Slattery","type":"Person","_key":"13311"} +{"label":"Peter Dinklage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/589\/4cf1f9a15e73d61e3b000589\/peter-dinklage-profile.jpg","version":65,"id":"22970","lastModified":"1301901193000","name":"Peter Dinklage","type":"Person","_key":"13312"} +{"label":"Original Sin","description":"A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp","id":"2057","runtime":112,"imdbId":"tt0218922","trailer":"http:\/\/www.youtube.com\/watch?v=126","version":142,"lastModified":"1301901657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ba\/4bd2d015017a3c63f30003ba\/original-sin-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Original Sin","releaseDate":979257600000,"language":"en","type":"Movie","_key":"13313"} +{"label":"Gregory Itzin","version":34,"id":"21142","lastModified":"1301901295000","name":"Gregory Itzin","type":"Person","_key":"13314"} +{"label":"Allison Mackie","version":18,"id":"21143","lastModified":"1301901551000","name":"Allison Mackie","type":"Person","_key":"13315"} +{"label":"Joan Pringle","version":18,"id":"21144","lastModified":"1301901939000","name":"Joan Pringle","type":"Person","_key":"13316"} +{"label":"Cordelia Richards","version":17,"id":"21145","lastModified":"1301901764000","name":"Cordelia Richards","type":"Person","_key":"13317"} +{"label":"James Haven","version":19,"id":"21166","lastModified":"1301901776000","name":"James Haven","type":"Person","_key":"13318"} +{"label":"Addicted to Love","description":"Good-natured astronomer Sam is devastated when the love of his life, Linda, leaves him for a suave Frenchman named Anton. He therefore does what every other normal dumpee would do; go to New York and set up home in the abandoned building opposite his ex-girlfriend's apartment, intent on winning her back and waiting until she decides to leave her current lover.","id":"2058","runtime":100,"imdbId":"tt0118556","version":134,"lastModified":"1301904632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e48\/4bc914ff017a3c57fe007e48\/addicted-to-love-mid.jpg","studio":"Outlaw Productions","genre":"Comedy","title":"Addicted to Love","releaseDate":869702400000,"language":"en","type":"Movie","_key":"13319"} +{"label":"Maureen Stapleton","version":30,"id":"21151","lastModified":"1301901416000","name":"Maureen Stapleton","type":"Person","_key":"13320"} +{"label":"Nesbitt Blaisdell","version":28,"id":"21152","lastModified":"1301901748000","name":"Nesbitt Blaisdell","type":"Person","_key":"13321"} +{"label":"Remak Ramsay","version":19,"id":"21153","lastModified":"1301901547000","name":"Remak Ramsay","type":"Person","_key":"13322"} +{"label":"Lee Wilkof","version":27,"id":"21154","lastModified":"1301901765000","name":"Lee Wilkof","type":"Person","_key":"13323"} +{"label":"National Treasure","description":"Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.","id":"2059","runtime":131,"imdbId":"tt0368891","trailer":"http:\/\/www.youtube.com\/watch?v=5l-6N8Y-Sgg","version":260,"lastModified":"1301901298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e89\/4bc9150b017a3c57fe007e89\/national-treasure-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"National Treasure","releaseDate":1101340800000,"language":"en","tagline":"The greatest adventure history has ever revealed.","type":"Movie","_key":"13324"} +{"label":"David Dayan Fisher","version":26,"id":"21182","lastModified":"1301901179000","name":"David Dayan Fisher","type":"Person","_key":"13325"} +{"label":"Justin Bartha","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f4\/4bd5a0f5017a3c2e7d0000f4\/justin-bartha-profile.jpg","version":60,"id":"21180","lastModified":"1302059268000","name":"Justin Bartha","type":"Person","_key":"13326"} +{"label":"Des enfants g\u00e2t\u00e9s","description":"No overview found.","id":"2060","runtime":114,"imdbId":"tt0075933","version":47,"lastModified":"1301905653000","studio":"Little Bear Production","genre":"Comedy","title":"Des enfants g\u00e2t\u00e9s","releaseDate":242438400000,"language":"en","type":"Movie","_key":"13327"} +{"label":"Christine Pascal","version":21,"id":"3200","lastModified":"1301901353000","name":"Christine Pascal","type":"Person","_key":"13328"} +{"label":"Michel Aumont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fdd\/4d52f5a97b9aa13aaf011fdd\/michel-aumont-profile.jpg","version":61,"id":"21170","lastModified":"1301952583000","name":"Michel Aumont","type":"Person","_key":"13329"} +{"label":"G\u00e9rard Jugnot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d5b\/4d125ead5e73d6083e000d5b\/g-rard-jugnot-profile.jpg","version":82,"id":"21171","lastModified":"1301901180000","name":"G\u00e9rard Jugnot","type":"Person","_key":"13330"} +{"label":"Arlette Bonnard","version":18,"id":"21172","lastModified":"1301901972000","name":"Arlette Bonnard","type":"Person","_key":"13331"} +{"label":"G\u00e9rard Zimmermann","version":17,"id":"21173","lastModified":"1301902014000","name":"G\u00e9rard Zimmermann","type":"Person","_key":"13332"} +{"label":"Liza Braconnier","version":15,"id":"21174","lastModified":"1301903116000","name":"Liza Braconnier","type":"Person","_key":"13333"} +{"label":"Michel Blanc","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cc\/4bfad0e0017a3c70360005cc\/michel-blanc-profile.jpg","version":75,"id":"21175","lastModified":"1301901318000","name":"Michel Blanc","type":"Person","_key":"13334"} +{"label":"Michel Berto","version":15,"id":"21176","lastModified":"1301903116000","name":"Michel Berto","type":"Person","_key":"13335"} +{"label":"Thierry Lhermitte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/079\/4cee6ede5e73d65314000079\/thierry-lhermitte-profile.jpg","version":102,"id":"21177","lastModified":"1301901218000","name":"Thierry Lhermitte","type":"Person","_key":"13336"} +{"label":"Pusher","description":"A drug pusher grows increasingly desperate after a botched deal leaves him with a large debt to a ruthless drug lord.","id":"2061","runtime":105,"imdbId":"tt0117407","homepage":"http:\/\/www.pusher.nu\/","version":163,"lastModified":"1301907158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed3\/4bc91519017a3c57fe007ed3\/pusher-mid.jpg","studio":"Nordic Film","genre":"Action","title":"Pusher","releaseDate":841363200000,"language":"en","type":"Movie","_key":"13337"} +{"label":"Nicolas Winding Refn","version":34,"id":"21183","lastModified":"1301901242000","name":"Nicolas Winding Refn","type":"Person","_key":"13338"} +{"label":"Laura Drasb\u00e6k","version":22,"id":"21192","lastModified":"1301901606000","name":"Laura Drasb\u00e6k","type":"Person","_key":"13339"} +{"label":"Peter Andersson","version":48,"id":"21193","lastModified":"1301901130000","name":"Peter Andersson","type":"Person","_key":"13340"} +{"label":"Vanja Bajicic","version":16,"id":"21194","lastModified":"1301901944000","name":"Vanja Bajicic","type":"Person","_key":"13341"} +{"label":"Lisbeth Rasmussen","version":16,"id":"21195","lastModified":"1301901776000","name":"Lisbeth Rasmussen","type":"Person","_key":"13342"} +{"label":"Levino Jensen","version":17,"id":"21196","lastModified":"1301901805000","name":"Levino Jensen","type":"Person","_key":"13343"} +{"label":"Zlatko Buric","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c20\/4cf14b925e73d61929000c20\/zlatko-buric-profile.jpg","version":34,"id":"31960","lastModified":"1301904096000","name":"Zlatko Buric","type":"Person","_key":"13344"} +{"label":"Ratatouille","description":"In one of Paris' finest restaurants, Remy, a determined young rat, dreams of becoming a renowned French chef. Torn between his family's wishes and his true calling. Remy and his pal Linguini set in motion a hilarious chain of events that turns the City of Lights upside down.","id":"2062","runtime":110,"imdbId":"tt0382932","trailer":"http:\/\/www.youtube.com\/watch?v=c3sBBRxDAqk","homepage":"http:\/\/disney.go.com\/disneypictures\/ratatouille\/","version":279,"lastModified":"1302062129000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4c19ac907b9aa108d6000306\/ratatouille-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Ratatouille","releaseDate":1182988800000,"language":"en","tagline":"He's dying to become a chef.","type":"Movie","_key":"13345"} +{"label":"Brad Bird","version":82,"id":"7087","lastModified":"1302063785000","name":"Brad Bird","type":"Person","_key":"13346"} +{"label":"Patton Oswalt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16c\/4d8fc8f85e73d65f1400216c\/patton-oswalt-profile.jpg","biography":"American stand-up comedian, writer and actor Patton Oswalt first\nbegan performing standup comedy in the late 1980s to early 1990s. After spending\ntwo seasons writing for MADtv, and starring in his own 1996 comedy special for\nHBO, he began performing in films and television shows.In January 2011, Oswalt\nreleased his first book, Zombie Spaceship Wasteland.\n\nOswalt married writer Michelle Eileen McNamara on September\n24, 2005. Their daughter, Alice Rigney Oswalt, was born on April 15, 2009.<\/p>","version":58,"birthday":"-29293200000","id":"10872","birthplace":"Portsmouth, Virginia, USA","lastModified":"1302062128000","name":"Patton Oswalt","type":"Person","_key":"13347"} +{"label":"Lou Romano","version":53,"id":"7962","lastModified":"1302062128000","name":"Lou Romano","type":"Person","_key":"13348"} +{"label":"Peter Sohn","version":29,"id":"21198","lastModified":"1302062128000","name":"Peter Sohn","type":"Person","_key":"13349"} +{"label":"Jake Steinfeld","version":27,"id":"21199","lastModified":"1302062128000","name":"Jake Steinfeld","type":"Person","_key":"13350"} +{"label":"Will Arnett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/344\/4c99ce487b9aa12337000344\/will-arnett-profile.jpg","version":126,"id":"21200","lastModified":"1302062128000","name":"Will Arnett","type":"Person","_key":"13351"} +{"label":"Julius Callahan","version":28,"id":"32536","lastModified":"1302062128000","name":"Julius Callahan","type":"Person","_key":"13352"} +{"label":"While You Were Sleeping","description":"A love story built on a misunderstanding. A transit worker pulls commuter Peter off the tracks after he's mugged. But while he's in a coma, his family mistakenly thinks she's Peter's fianc\u00e9e, and she doesn't correct them. Things get more complicated when she falls for his brother, who's not quite sure that she's who she claims to be.","id":"2064","runtime":103,"imdbId":"tt0114924","trailer":"http:\/\/www.youtube.com\/watch?v=1310","version":118,"lastModified":"1301902350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83a\/4d50ae777b9aa13aab00e83a\/while-you-were-sleeping-mid.jpg","studio":"Caravan Pictures","genre":"Comedy","title":"While You Were Sleeping","releaseDate":804211200000,"language":"en","tagline":"A story about love at second sight.","type":"Movie","_key":"13353"} +{"label":"Micole Mercurio","version":24,"id":"21202","lastModified":"1302002303000","name":"Micole Mercurio","type":"Person","_key":"13354"} +{"label":"Monica Keena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f7\/4ce1879e5e73d60f700003f7\/monica-keena-profile.jpg","version":41,"birthday":"296694000000","id":"18315","birthplace":"Brooklyn, New York, USA","lastModified":"1301901181000","name":"Monica Keena","type":"Person","_key":"13355"} +{"label":"Je crois que je l'aime","description":"No overview found.","id":"2065","runtime":90,"imdbId":"tt0488565","trailer":"http:\/\/www.youtube.com\/watch?v=145","version":73,"lastModified":"1301906097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fea\/4bc9154e017a3c57fe007fea\/je-crois-que-je-l-aime-mid.jpg","studio":"TF1 Films Productions","genre":"Comedy","title":"Je crois que je l'aime","releaseDate":1172016000000,"language":"en","type":"Movie","_key":"13356"} +{"label":"Liane Foly","version":17,"id":"22305","lastModified":"1301901585000","name":"Liane Foly","type":"Person","_key":"13357"} +{"label":"Guilaine Londez","version":18,"id":"22307","lastModified":"1301903117000","name":"Guilaine Londez","type":"Person","_key":"13358"} +{"label":"Albert Dray","version":16,"id":"22308","lastModified":"1301903117000","name":"Albert Dray","type":"Person","_key":"13359"} +{"label":"Pierre Diot","version":19,"id":"22309","lastModified":"1302054336000","name":"Pierre Diot","type":"Person","_key":"13360"} +{"label":"Mar Sodupe","version":23,"id":"22310","lastModified":"1301903117000","name":"Mar Sodupe","type":"Person","_key":"13361"} +{"label":"Cl\u00e9mentine Poidatz","version":17,"id":"22311","lastModified":"1301903117000","name":"Cl\u00e9mentine Poidatz","type":"Person","_key":"13362"} +{"label":"Venantino Venantini","version":46,"id":"22312","lastModified":"1302024945000","name":"Venantino Venantini","type":"Person","_key":"13363"} +{"label":"Brian Bigg","version":15,"id":"22313","lastModified":"1301903117000","name":"Brian Bigg","type":"Person","_key":"13364"} +{"label":"William Boisg\u00e9rault","version":16,"id":"22314","lastModified":"1301903118000","name":"William Boisg\u00e9rault","type":"Person","_key":"13365"} +{"label":"Silvana Gasparini","version":18,"id":"22315","lastModified":"1301901837000","name":"Silvana Gasparini","type":"Person","_key":"13366"} +{"label":"Nancy Tate","version":15,"id":"22316","lastModified":"1301903117000","name":"Nancy Tate","type":"Person","_key":"13367"} +{"label":"Pierre Jolivet","version":26,"id":"21504","lastModified":"1301901546000","name":"Pierre Jolivet","type":"Person","_key":"13368"} +{"label":"Mission to Mars","description":"When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.","id":"2067","runtime":114,"imdbId":"tt0183523","trailer":"http:\/\/www.youtube.com\/watch?v=xwcI3fkKeiw","version":158,"lastModified":"1301902393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff7\/4bc9154f017a3c57fe007ff7\/mission-to-mars-mid.jpg","studio":"Constantin Film","genre":"Science Fiction","title":"Mission to Mars","releaseDate":952300800000,"language":"en","type":"Movie","_key":"13369"} +{"label":"Kavan Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c9\/4d7ed9c97b9aa122b00004c9\/kavan-smith-profile.jpg","version":25,"id":"21213","lastModified":"1301901599000","name":"Kavan Smith","type":"Person","_key":"13370"} +{"label":"Jill Teed","version":18,"id":"21214","lastModified":"1301901933000","name":"Jill Teed","type":"Person","_key":"13371"} +{"label":"Elise Neal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4d7ff5db7b9aa12da60000d3\/elise-neal-profile.jpg","biography":"<SPAN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\">Elise Neal was born in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Memphis<\/st1:City>, <st1:State w:st=\"on\">Tennessee<\/st1:State><\/st1:place> on March 14, 1966. She graduated from <st1:PlaceName w:","version":28,"id":"21215","lastModified":"1301903113000","name":"Elise Neal","type":"Person","_key":"13372"} +{"label":"Kim Delaney","version":21,"id":"21216","lastModified":"1301901842000","name":"Kim Delaney","type":"Person","_key":"13373"} +{"label":"The Whole Nine Yards","description":"A mobster named Jimmy the Tulip agrees to cooperate with an FBI investigation in order to stay out of prison; he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbors figure out his true identity and come knocking to see if he'd be up for one more hit, suburban style.","id":"2069","runtime":98,"imdbId":"tt0190138","trailer":"http:\/\/www.youtube.com\/watch?v=NkK4xtLF2Vc","version":174,"lastModified":"1301913385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77d\/4d21c6a37b9aa1280f00077d\/the-whole-nine-yards-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Whole Nine Yards","releaseDate":956188800000,"language":"en","tagline":"In the heart of suburbia, a hit man with heart has just moved in.","type":"Movie","_key":"13374"} +{"label":"Jonathan Lynn","version":49,"id":"21217","lastModified":"1301901331000","name":"Jonathan Lynn","type":"Person","_key":"13375"} +{"label":"Natasha Henstridge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4dc\/4be0ef13017a3c35b50004dc\/natasha-henstridge-profile.jpg","version":69,"id":"57395","lastModified":"1301901156000","name":"Natasha Henstridge","type":"Person","_key":"13376"} +{"label":"Spogliamoci cos\u00ec senza pudor","description":"No overview found.","id":"2070","runtime":87,"imdbId":"tt0075255","version":46,"lastModified":"1301905720000","studio":"Medusa Produzione","genre":"Comedy","title":"Spogliamoci cos\u00ec senza pudor","releaseDate":189302400000,"language":"en","type":"Movie","_key":"13377"} +{"label":"Sergio Martino","version":52,"id":"21227","lastModified":"1301901508000","name":"Sergio Martino","type":"Person","_key":"13378"} +{"label":"Barbara Bouchet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/759\/4cd91b185e73d676d1000759\/barbara-bouchet-profile.jpg","version":24,"id":"16021","lastModified":"1301901531000","name":"Barbara Bouchet","type":"Person","_key":"13379"} +{"label":"Johnny Dorelli","version":21,"id":"21234","lastModified":"1301901825000","name":"Johnny Dorelli","type":"Person","_key":"13380"} +{"label":"Alberto Lionello","version":23,"id":"21235","lastModified":"1301901825000","name":"Alberto Lionello","type":"Person","_key":"13381"} +{"label":"Aldo Maccione","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4c4fecd07b9aa136d100007d\/aldo-maccione-profile.jpg","biography":"C'est dans les ann\u00e9es 60 qu'Aldo Maccione se fait remarquer pour la premi\u00e8re fois dans un th\u00e9\u00e2tre turinois en imitant les stars de cin\u00e9ma de l'\u00e9poque. Venu travailler \u00e0 Paris, il se produit dans le mythique Olympia o\u00f9, en collaboration avec son groupe italien Les Brutos, un quatuor musical d\u00e9jant\u00e9, il assure les entractes de la prestigieuse salle de concert parisienne. Le succ\u00e8s est au rendez-vous pour la bande qui arpente d\u00e9sormais les quatre coins de la plan\u00e8te.\n\nCe n'est que la d\u00e9cennie suiva","version":37,"birthday":"-1076029200000","id":"21236","birthplace":"Turino, Italy","lastModified":"1301901859000","name":"Aldo Maccione","type":"Person","_key":"13382"} +{"label":"Enrico Montesano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43e\/4bfa7f44017a3c703600043e\/enrico-montesano-profile.jpg","biography":"Enrico Montesano \u00e8 un attore di teatro, cinema, e uomo di spettacolo italiano.\ninizia la carriera negli anni 60, diventando uno dei p\u00f9 famosi comici e attori italiani","version":30,"birthday":"-772858800000","id":"21237","birthplace":"Roma, Italy","lastModified":"1301901797000","name":"Enrico Montesano","type":"Person","_key":"13383"} +{"label":"Gianrico Tedeschi","version":19,"id":"21238","lastModified":"1301902014000","name":"Gianrico Tedeschi","type":"Person","_key":"13384"} +{"label":"Brenda Welch","version":17,"id":"21239","lastModified":"1301902014000","name":"Brenda Welch","type":"Person","_key":"13385"} +{"label":"Nadia Cassini","version":20,"id":"21240","lastModified":"1301901974000","name":"Nadia Cassini","type":"Person","_key":"13386"} +{"label":"Shattered","description":"Dan Merrick comes out from a shattering car accident with amnesia. He finds that he is married to Judith who is trying to help him start his life again. He keeps getting flashbacks about events and places that he can't remember. He meets pet shop owner and part time private detective Gus Klein who is supposedly done some work for him prior to the accident. Klein helps Merrick to find out more...","id":"2071","runtime":98,"imdbId":"tt0102900","version":308,"lastModified":"1301913361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc91553017a3c57fe008018\/shattered-mid.jpg","studio":"Capella International","genre":"Mystery","title":"Shattered","releaseDate":690681600000,"language":"en","type":"Movie","_key":"13387"} +{"label":"Greta Scacchi","version":48,"id":"21245","lastModified":"1302011678000","name":"Greta Scacchi","type":"Person","_key":"13388"} +{"label":"Corbin Bernsen","version":119,"id":"21246","lastModified":"1301901128000","name":"Corbin Bernsen","type":"Person","_key":"13389"} +{"label":"Debi A. Monahan","version":17,"id":"21247","lastModified":"1301901912000","name":"Debi A. Monahan","type":"Person","_key":"13390"} +{"label":"Bert Rosario","version":21,"id":"21248","lastModified":"1301901912000","name":"Bert Rosario","type":"Person","_key":"13391"} +{"label":"Jedda Jones","version":16,"id":"21249","lastModified":"1301901912000","name":"Jedda Jones","type":"Person","_key":"13392"} +{"label":"Scott Getlin","version":16,"id":"21250","lastModified":"1301901912000","name":"Scott Getlin","type":"Person","_key":"13393"} +{"label":"Cyberjack","description":"No overview found.","id":"2072","runtime":99,"imdbId":"tt0112763","version":88,"lastModified":"1301903719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bc91553017a3c57fe00801d\/cyberjack-mid.jpg","studio":"Catalyst Films International","genre":"Action","title":"Cyberjack","releaseDate":788918400000,"language":"en","type":"Movie","_key":"13394"} +{"label":"Robert Lee","version":19,"id":"21251","lastModified":"1301901687000","name":"Robert Lee","type":"Person","_key":"13395"} +{"label":"Michael Dudikoff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c8\/4bccc6bd017a3c0f260001c8\/michael-dudikoff-profile.jpg","version":33,"id":"21259","lastModified":"1301901246000","name":"Michael Dudikoff","type":"Person","_key":"13396"} +{"label":"Suki Kaiser","version":19,"id":"21260","lastModified":"1301901934000","name":"Suki Kaiser","type":"Person","_key":"13397"} +{"label":"Jon Cuthbert","version":16,"id":"21261","lastModified":"1301903112000","name":"Jon Cuthbert","type":"Person","_key":"13398"} +{"label":"James Thom","version":15,"id":"21262","lastModified":"1301903115000","name":"James Thom","type":"Person","_key":"13399"} +{"label":"Topaz Hasfal-Schou","version":18,"id":"21263","lastModified":"1301903115000","name":"Topaz Hasfal-Schou","type":"Person","_key":"13400"} +{"label":"Garvin Cross","version":21,"id":"21264","lastModified":"1301901766000","name":"Garvin Cross","type":"Person","_key":"13401"} +{"label":"Dean McKenzie","version":17,"id":"21265","lastModified":"1301902031000","name":"Dean McKenzie","type":"Person","_key":"13402"} +{"label":"Flirting with Disaster","description":"Mel Coplin and his wife, Nancy, live in New York, near Mel's neurotic, Jewish, adoptive parents, Ed and Pearl Coplin. Mel and Nancy have just had their first child, and they refuse to name their son until Mel can discover the identity of his biological parents. After an adoption agency employee locates his biological mother's name in a database, Mel decides to meet her personally.","id":"2074","runtime":92,"imdbId":"tt0116324","version":114,"lastModified":"1301904625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc91555017a3c57fe008026\/flirting-with-disaster-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Flirting with Disaster","releaseDate":837648000000,"language":"en","type":"Movie","_key":"13403"} +{"label":"Mary Tyler Moore","version":26,"id":"21277","lastModified":"1301901689000","name":"Mary Tyler Moore","type":"Person","_key":"13404"} +{"label":"Prizzi's Honor","description":"A professional hit man and hit woman fall in love, only to discover that they have each been hired to kill the other.","id":"2075","runtime":124,"imdbId":"tt0089841","version":157,"lastModified":"1301913323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4bc91555017a3c57fe00802f\/prizzi-s-honor-mid.jpg","studio":"ABC Pictures","genre":"Comedy","title":"Prizzi's Honor","releaseDate":507427200000,"language":"en","type":"Movie","_key":"13405"} +{"label":"William Hickey","version":45,"id":"21282","lastModified":"1301901354000","name":"William Hickey","type":"Person","_key":"13406"} +{"label":"Lee Richardson","version":29,"id":"21283","lastModified":"1301901586000","name":"Lee Richardson","type":"Person","_key":"13407"} +{"label":"Ann Selepegno","version":18,"id":"21284","lastModified":"1301901810000","name":"Ann Selepegno","type":"Person","_key":"13408"} +{"label":"Swindle","description":"No overview found.","id":"2076","runtime":93,"imdbId":"tt0190938","version":103,"lastModified":"1301905658000","studio":"Constellation Films","genre":"Action","title":"Swindle","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"13409"} +{"label":"K.C. Bascombe","version":21,"id":"21285","lastModified":"1301901513000","name":"K.C. Bascombe","type":"Person","_key":"13410"} +{"label":"Dave Foley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/703\/4cbddc927b9aa138d7001703\/dave-foley-profile.jpg","version":47,"id":"21290","lastModified":"1301957337000","name":"Dave Foley","type":"Person","_key":"13411"} +{"label":"Conrad Pla","version":17,"id":"21291","lastModified":"1301901513000","name":"Conrad Pla","type":"Person","_key":"13412"} +{"label":"Alain Goulem","version":18,"id":"21292","lastModified":"1301901671000","name":"Alain Goulem","type":"Person","_key":"13413"} +{"label":"Alan Fawcett","version":21,"id":"21293","lastModified":"1301901982000","name":"Alan Fawcett","type":"Person","_key":"13414"} +{"label":"Katie Griffin","version":20,"id":"21294","lastModified":"1301901690000","name":"Katie Griffin","type":"Person","_key":"13415"} +{"label":"Jack Daniel Wells","version":17,"id":"21295","lastModified":"1301901974000","name":"Jack Daniel Wells","type":"Person","_key":"13416"} +{"label":"Genevieve Sabourin","version":16,"id":"21296","lastModified":"1301903115000","name":"Genevieve Sabourin","type":"Person","_key":"13417"} +{"label":"Vanya Rose","version":17,"id":"21297","lastModified":"1301902014000","name":"Vanya Rose","type":"Person","_key":"13418"} +{"label":"Ryan Kennedy","version":26,"id":"21298","lastModified":"1302041699000","name":"Ryan Kennedy","type":"Person","_key":"13419"} +{"label":"The Rink","description":"After amusements working in a restaurant, Charlie uses his lunch break to go roller skating.","id":"2077","runtime":24,"imdbId":"tt0007264","version":82,"lastModified":"1301686250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ca\/4cab31d37b9aa17acb0008ca\/the-rink-mid.jpg","studio":"Lone Star Corporation","genre":"Comedy","title":"The Rink","releaseDate":-1674950400000,"language":"en","type":"Movie","_key":"13420"} +{"label":"Edna Purviance","version":64,"id":"21301","lastModified":"1301901525000","name":"Edna Purviance","type":"Person","_key":"13421"} +{"label":"James T. Kelley","version":28,"id":"21302","lastModified":"1301901843000","name":"James T. Kelley","type":"Person","_key":"13422"} +{"label":"Eric Campbell","version":30,"id":"21303","lastModified":"1301901843000","name":"Eric Campbell","type":"Person","_key":"13423"} +{"label":"Lloyd Bacon","version":43,"id":"21305","lastModified":"1301901466000","name":"Lloyd Bacon","type":"Person","_key":"13424"} +{"label":"Albert Austin","version":36,"id":"21306","lastModified":"1301901809000","name":"Albert Austin","type":"Person","_key":"13425"} +{"label":"The Pawnshop","description":"Chaplin plays an assistant in a pawnshop run by Bergman. He engages in a slapstick battles with his fellow pawnshop assistant, deals with eccentric customers, and flirts with the pawnbroker's daughter. One customer, posing as a jewelry buyer, pulls a gun and tries to rob the place. Chaplin disarms him.","id":"2078","runtime":32,"imdbId":"tt0007162","version":86,"lastModified":"1301906649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4bc91557017a3c57fe008039\/the-pawnshop-mid.jpg","studio":"Lone Star Corporation","genre":"Comedy","title":"The Pawnshop","releaseDate":-1680393600000,"language":"en","type":"Movie","_key":"13426"} +{"label":"John Rand","version":32,"id":"21310","lastModified":"1301901843000","name":"John Rand","type":"Person","_key":"13427"} +{"label":"Wesley Ruggles","version":27,"id":"21311","lastModified":"1301903116000","name":"Wesley Ruggles","type":"Person","_key":"13428"} +{"label":"Frank J. Coleman","version":19,"id":"21312","lastModified":"1301903113000","name":"Frank J. Coleman","type":"Person","_key":"13429"} +{"label":"The Count","description":"The tailor's handyman (Chaplin) burns a count's trousers while ironing them and is fired. His superior discovers a note explaining the count can't attend a party, and dresses up like one to take his place. Chaplin also goes to the residence hosting the party, but runs into the tailor. They both then struggle to win the fair maiden, Miss Moneybags. Soon, Charlie is distracted by a gypsy girl and the tailor must fend off other suitors. The real Count finally arrives, learns of the imposters and ca","id":"2079","runtime":34,"imdbId":"tt0006548","version":91,"lastModified":"1301907299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc5\/4d55ded55e73d617c7006bc5\/the-count-mid.jpg","studio":"Lone Star Corporation","genre":"Comedy","title":"The Count","releaseDate":-1682812800000,"language":"en","type":"Movie","_key":"13430"} +{"label":"Leota Bryan","version":17,"id":"21313","lastModified":"1301901920000","name":"Leota Bryan","type":"Person","_key":"13431"} +{"label":"Charlotte Mineau","version":23,"id":"21314","lastModified":"1301901843000","name":"Charlotte Mineau","type":"Person","_key":"13432"} +{"label":"X-Men Origins: Wolverine","description":"A spinoff of the X-men series of films and comic books revealing the life of Wolverine-- his childhood in Canada, the Weapon X program, his conflict with half-brother Sabretooth, and becoming a legendary X-man.","id":"2080","runtime":107,"imdbId":"tt0458525","trailer":"http:\/\/www.youtube.com\/watch?v=Diqtd1gTUEc","homepage":"http:\/\/www.x-menorigins.com\/","version":351,"lastModified":"1301900841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/570\/4ca00d515e73d6704d000570\/x-men-origins-wolverine-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"X-Men Origins: Wolverine","releaseDate":1241136000000,"language":"en","type":"Movie","_key":"13433"} +{"label":"Will i Am","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d6\/4c096257017a3c7e860009d6\/will-i-am-profile.jpg","version":28,"id":"82092","lastModified":"1301901102000","name":"Will i Am","type":"Person","_key":"13434"} +{"label":"Kevin Durand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4d24ee2c5e73d626a800018b\/kevin-durand-profile.jpg","version":62,"id":"79072","lastModified":"1301901110000","name":"Kevin Durand","type":"Person","_key":"13435"} +{"label":"Taylor Kitsch","version":36,"id":"60900","lastModified":"1301901074000","name":"Taylor Kitsch","type":"Person","_key":"13436"} +{"label":"Daniel Henney","version":32,"id":"82093","lastModified":"1301901095000","name":"Daniel Henney","type":"Person","_key":"13437"} +{"label":"Ryan Reynolds","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bf\/4bd7937c017a3c21e90001bf\/ryan-reynolds-profile.jpg","version":133,"birthday":"214873200000","id":"10859","birthplace":"Vancouver, British Columbia, Canada","lastModified":"1301904050000","name":"Ryan Reynolds","type":"Person","_key":"13438"} +{"label":"Scott Adkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ca\/4c06c54c017a3c35190004ca\/scott-adkins-profile.jpg","version":43,"id":"78110","lastModified":"1301904093000","name":"Scott Adkins","type":"Person","_key":"13439"} +{"label":"Tim Pocock","version":30,"id":"82094","lastModified":"1301901095000","name":"Tim Pocock","type":"Person","_key":"13440"} +{"label":"Halloween","description":"After being committed for 17 years, Michael Myers, now a grown man and still very dangerous, escapes from the mental institution (where he was committed as a 10 year old) and he immediately returns to Haddonfield, where he wants to find his baby sister, Laurie. Anyone who crosses his path is in mortal danger","id":"2082","runtime":109,"imdbId":"tt0373883","homepage":"http:\/\/www.halloweenmovies.com\/","version":195,"lastModified":"1301902100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b8\/4bc9156b017a3c57fe0080b8\/halloween-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Halloween","releaseDate":1188518400000,"language":"en","tagline":"Evil. Unmasked.","type":"Movie","_key":"13441"} +{"label":"Daeg Faerch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37c\/4d8a38037b9aa13ae100037c\/daeg-faerch-profile.jpg","version":29,"id":"21317","lastModified":"1301901200000","name":"Daeg Faerch","type":"Person","_key":"13442"} +{"label":"Scout Taylor-Compton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/437\/4d7e8ea25e73d62836003437\/scout-taylor-compton-profile.jpg","biography":"American actress and singer Scout Taylor-Compton began her\nacting career in 1998, with an appearance in the film A.W.O.L. with David\nMorse, and later in the short film Thursday Afternoon. She has appeared in\nnumerous small television roles and in feature films that range from dramas to\nthose in the horror genre. She went on to have small roles in both television\nand film including Ally McBeal, ER, Frasier, The Guardian and The Division. She\nappeared in several student films, commercials for Fuji","version":49,"birthday":"604018800000","id":"21318","birthplace":"Long Beach, California, USA","lastModified":"1301901204000","name":"Scout Taylor-Compton","type":"Person","_key":"13443"} +{"label":"Danielle Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3be\/4ce15cb95e73d60f6e0003be\/danielle-harris-profile.jpg","biography":"Danielle was born in Daytona Beach, Florida and then her family moved to\n Port Orange, Florida when she was in the fourth grade, where she \nattended Spruce Creek Elementary School. She was only there a very short\n while after winning a children's beauty contest her family them moved \nto Queens, New York City, New York. She attended PS232 elementary school\n in Queens and began a career as a child actress in numerous television \ncommercials before landing her first role on the long running soap op","version":60,"birthday":"233967600000","id":"21320","birthplace":"Daytona Beach, Florida","lastModified":"1302065075000","name":"Danielle Harris","type":"Person","_key":"13444"} +{"label":"Kristina Klebe","version":23,"id":"21321","lastModified":"1301901775000","name":"Kristina Klebe","type":"Person","_key":"13445"} +{"label":"Skyler Gisondo","version":27,"id":"61263","lastModified":"1301901633000","name":"Skyler Gisondo","type":"Person","_key":"13446"} +{"label":"Richard Lynch","version":44,"id":"97878","lastModified":"1301902164000","name":"Richard Lynch","type":"Person","_key":"13447"} +{"label":"Sybil Danning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/706\/4c62d0f37b9aa172da000706\/sybil-danning-profile.jpg","version":51,"id":"29541","lastModified":"1301901221000","name":"Sybil Danning","type":"Person","_key":"13448"} +{"label":"Micky Dolenz","version":31,"id":"82775","lastModified":"1301901959000","name":"Micky Dolenz","type":"Person","_key":"13449"} +{"label":"Guitar Men: The Darkest Secret of Rock 'n Roll","description":"No overview found.","id":"2083","runtime":70,"imdbId":"tt1328622","trailer":"http:\/\/www.youtube.com\/watch?v=134","homepage":"http:\/\/guitarmen-themovie.com\/","version":53,"lastModified":"1301904719000","studio":"Killing Pictures","genre":"Comedy","title":"Guitar Men: The Darkest Secret of Rock 'n Roll","releaseDate":1182988800000,"language":"en","type":"Movie","_key":"13450"} +{"label":"Thomas Wind","version":21,"id":"21324","lastModified":"1301901589000","name":"Thomas Wind","type":"Person","_key":"13451"} +{"label":"Tammi Torpedo","version":17,"id":"21329","lastModified":"1301901651000","name":"Tammi Torpedo","type":"Person","_key":"13452"} +{"label":"U. Rabbit","version":17,"id":"21338","lastModified":"1301901651000","name":"U. Rabbit","type":"Person","_key":"13453"} +{"label":"Hironori Matsuzaki","version":17,"id":"21331","lastModified":"1301901565000","name":"Hironori Matsuzaki","type":"Person","_key":"13454"} +{"label":"Gerhard Gutberlet","version":17,"id":"21332","lastModified":"1301901565000","name":"Gerhard Gutberlet","type":"Person","_key":"13455"} +{"label":"Nicholas Young","version":16,"id":"21333","lastModified":"1301903118000","name":"Nicholas Young","type":"Person","_key":"13456"} +{"label":"Mark Hentschel","version":16,"id":"21334","lastModified":"1301903118000","name":"Mark Hentschel","type":"Person","_key":"13457"} +{"label":"Joe Carrera","version":16,"id":"21335","lastModified":"1301903118000","name":"Joe Carrera","type":"Person","_key":"13458"} +{"label":"Andreas H\u00e4mel","version":17,"id":"21336","lastModified":"1301901983000","name":"Andreas H\u00e4mel","type":"Person","_key":"13459"} +{"label":"Eddi Zacharias","version":17,"id":"21337","lastModified":"1301901983000","name":"Eddi Zacharias","type":"Person","_key":"13460"} +{"label":"Birthday Girl","description":"A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.","id":"2084","runtime":93,"imdbId":"tt0188453","version":205,"lastModified":"1301903245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c3\/4bef057e017a3c45980001c3\/birthday-girl-mid.jpg","studio":"FilmFour","genre":"Comedy","title":"Birthday Girl","releaseDate":999734400000,"language":"en","type":"Movie","_key":"13461"} +{"label":"Jez Butterworth","version":39,"id":"21339","lastModified":"1301901283000","name":"Jez Butterworth","type":"Person","_key":"13462"} +{"label":"Kate Lynn Evans","version":25,"id":"21344","lastModified":"1301901576000","name":"Kate Lynn Evans","type":"Person","_key":"13463"} +{"label":"Stephen Mangan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/219\/4cf680e85e73d6299d001219\/stephen-mangan-profile.jpg","version":26,"id":"21345","lastModified":"1301901670000","name":"Stephen Mangan","type":"Person","_key":"13464"} +{"label":"Jo McInnes","version":20,"id":"21347","lastModified":"1301901983000","name":"Jo McInnes","type":"Person","_key":"13465"} +{"label":"Jonathan Aris","version":28,"id":"28477","lastModified":"1301902120000","name":"Jonathan Aris","type":"Person","_key":"13466"} +{"label":"Rebecca Clarke","version":23,"id":"34545","lastModified":"1301902014000","name":"Rebecca Clarke","type":"Person","_key":"13467"} +{"label":"Raj Ghatak","version":25,"id":"34547","lastModified":"1301902015000","name":"Raj Ghatak","type":"Person","_key":"13468"} +{"label":"David Mark","version":23,"id":"34548","lastModified":"1301902014000","name":"David Mark","type":"Person","_key":"13469"} +{"label":"Jack Pierce","version":22,"id":"34549","lastModified":"1301901920000","name":"Jack Pierce","type":"Person","_key":"13470"} +{"label":"Alan Stocks","version":22,"id":"34550","lastModified":"1301901920000","name":"Alan Stocks","type":"Person","_key":"13471"} +{"label":"Steve Pemberton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fa\/4c46cbc97b9aa15de00001fa\/steve-pemberton-profile.jpg","version":45,"id":"28485","lastModified":"1301901164000","name":"Steve Pemberton","type":"Person","_key":"13472"} +{"label":"J.J. Toba","version":22,"id":"34552","lastModified":"1301901920000","name":"J.J. Toba","type":"Person","_key":"13473"} +{"label":"Romeo Must Die","description":"Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead \u2026 or worse!","id":"2085","runtime":115,"imdbId":"tt0165929","trailer":"http:\/\/www.youtube.com\/watch?v=1764","version":180,"lastModified":"1301902143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5df\/4d447de77b9aa15bbb0065df\/romeo-must-die-mid.jpg","genre":"Action","title":"Romeo Must Die","releaseDate":960422400000,"language":"en","tagline":"In the city ruled by criminals, two families have forgotten their fear. He will make them remember.","type":"Movie","_key":"13474"} +{"label":"Andrzej Bartkowiak","version":91,"id":"10765","lastModified":"1301901273000","name":"Andrzej Bartkowiak","type":"Person","_key":"13475"} +{"label":"Aaliyah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/367\/4c57f8bc7b9aa151f7000367\/aaliyah-profile.jpg","version":27,"birthday":"285289200000","id":"21352","birthplace":"Brooklyn, New York, USA","lastModified":"1301901248000","name":"Aaliyah","type":"Person","_key":"13476"} +{"label":"Isaiah Washington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b5\/4cb0e8a07b9aa1263d0001b5\/isaiah-washington-profile.jpg","version":44,"birthday":"-202438800000","id":"21353","birthplace":"Houston, Texas","lastModified":"1301901141000","name":"Isaiah Washington","type":"Person","_key":"13477"} +{"label":"Russell Wong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34b\/4c57fa217b9aa151f500034b\/russell-wong-profile.jpg","version":36,"id":"21354","lastModified":"1301901446000","name":"Russell Wong","type":"Person","_key":"13478"} +{"label":"DMX","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/460\/4c488d895e73d61efa000460\/dmx-profile.jpg","version":44,"id":"21355","lastModified":"1301901248000","name":"DMX","type":"Person","_key":"13479"} +{"label":"D.B. Woodside","version":20,"id":"21356","lastModified":"1301901920000","name":"D.B. Woodside","type":"Person","_key":"13480"} +{"label":"Jon Kit Lee","version":20,"id":"21358","lastModified":"1301901920000","name":"Jon Kit Lee","type":"Person","_key":"13481"} +{"label":"Edoardo Ballerini","version":24,"id":"21359","lastModified":"1301901836000","name":"Edoardo Ballerini","type":"Person","_key":"13482"} +{"label":"Matthew Harrison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be6\/4d0d1ed35e73d63716000be6\/matthew-harrison-profile.jpg","version":24,"id":"21360","lastModified":"1301901468000","name":"Matthew Harrison","type":"Person","_key":"13483"} +{"label":"Henry O","version":28,"id":"39829","lastModified":"1301901592000","name":"Henry O","type":"Person","_key":"13484"} +{"label":"Nick of Time","description":"Gene Watson is a public accountant who arrives on a train at Union Station in Los Angeles, accompanied by his 6-year-old daughter Lynn. Because of his ordinary looks, he is approached by a pair of sinister people named Smith and Jones. ","id":"2086","runtime":90,"imdbId":"tt0113972","version":294,"lastModified":"1301902374000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0df\/4bc91571017a3c57fe0080df\/nick-of-time-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"Nick of Time","releaseDate":816998400000,"language":"en","type":"Movie","_key":"13485"} +{"label":"Courtney Chase","version":17,"id":"21365","lastModified":"1301901549000","name":"Courtney Chase","type":"Person","_key":"13486"} +{"label":"Roma Maffia","version":26,"id":"21366","lastModified":"1301903113000","name":"Roma Maffia","type":"Person","_key":"13487"} +{"label":"Peter Strauss","version":31,"id":"21368","lastModified":"1301901687000","name":"Peter Strauss","type":"Person","_key":"13488"} +{"label":"Gloria Reuben","version":23,"id":"21369","lastModified":"1301901761000","name":"Gloria Reuben","type":"Person","_key":"13489"} +{"label":"The Getaway","description":"Doc McCoy is put in prison because his partners chickened out and flew off without him after exchanging a prisoner with a lot of money. Doc knows Jack Benyon, a rich \"business\"-man, is up to something big, so he tells his wife (Carol McCoy) to tell him that he's for sale if Benyon can get him out of prison. Benyon pulls some strings and Doc McCoy is released again. Unfortunately he has to cooperate with the same person that got him to prison.","id":"2087","runtime":115,"imdbId":"tt0109890","version":123,"lastModified":"1301903142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e8\/4bc91572017a3c57fe0080e8\/the-getaway-mid.jpg","studio":"David Foster Productions","genre":"Action","title":"The Getaway","releaseDate":766281600000,"language":"en","type":"Movie","_key":"13490"} +{"label":"James Stephens","version":15,"id":"21376","lastModified":"1301903110000","name":"James Stephens","type":"Person","_key":"13491"} +{"label":"Romeo is Bleeding","description":"A corrupt cop gets in over his head when he tries to assassinate a beautiful Russian hit-woman.","id":"2088","runtime":100,"imdbId":"tt0107983","trailer":"http:\/\/www.youtube.com\/watch?v=XuPs8dWiXZw","version":134,"lastModified":"1301903519000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4c8b46327b9aa167450000c4\/romeo-is-bleeding-mid.jpg","studio":"Working Title Films","genre":"Action","title":"Romeo is Bleeding","releaseDate":781401600000,"language":"en","type":"Movie","_key":"13492"} +{"label":"Peter Medak","version":29,"id":"21377","lastModified":"1301901495000","name":"Peter Medak","type":"Person","_key":"13493"} +{"label":"Larry Joshua","version":19,"id":"21380","lastModified":"1301901629000","name":"Larry Joshua","type":"Person","_key":"13494"} +{"label":"Wallace Wood","version":17,"id":"21381","lastModified":"1301901547000","name":"Wallace Wood","type":"Person","_key":"13495"} +{"label":"Gene Canfield","version":18,"id":"21382","lastModified":"1301901755000","name":"Gene Canfield","type":"Person","_key":"13496"} +{"label":"William Duff-Griffin","version":17,"id":"21383","lastModified":"1301901754000","name":"William Duff-Griffin","type":"Person","_key":"13497"} +{"label":"Paul Butler","version":22,"id":"21384","lastModified":"1301901410000","name":"Paul Butler","type":"Person","_key":"13498"} +{"label":"Tony Sirico","version":27,"id":"21385","lastModified":"1301901569000","name":"Tony Sirico","type":"Person","_key":"13499"} +{"label":"Cutaway","description":"The successful undercover agent Victor Cooper is assigned for his ninth mission: to find how the loadings of drug is being brought to Miami. He suspects that the drug is coming through the air and joins a team of sky diving, under the leadership of Red Line, a fanatic and considered the athlete number one in this sport in the world. Due to his profile of winner, Vic gets involved with the group and he \"disconnects\" from his position of infiltrated agent, \"connecting\" with the team.","id":"2089","runtime":104,"imdbId":"tt0211792","version":92,"lastModified":"1301913134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4bd7812f017a3c21ec000241\/cutaway-mid.jpg","studio":"Cutting Edge Entertainment","genre":"Action","title":"Cutaway","releaseDate":967248000000,"language":"en","type":"Movie","_key":"13500"} +{"label":"Guy Manos","version":16,"id":"21386","lastModified":"1301903110000","name":"Guy Manos","type":"Person","_key":"13501"} +{"label":"Dennis Rodman","version":24,"id":"21397","lastModified":"1301901396000","name":"Dennis Rodman","type":"Person","_key":"13502"} +{"label":"Maxine Bahns","version":20,"id":"21398","lastModified":"1301902017000","name":"Maxine Bahns","type":"Person","_key":"13503"} +{"label":"Ron Silver","version":44,"id":"21399","lastModified":"1302001427000","name":"Ron Silver","type":"Person","_key":"13504"} +{"label":"Roy Ageloff","version":19,"id":"21400","lastModified":"1301901912000","name":"Roy Ageloff","type":"Person","_key":"13505"} +{"label":"Marcos A. Ferraez","version":15,"id":"21401","lastModified":"1301903116000","name":"Marcos A. Ferraez","type":"Person","_key":"13506"} +{"label":"Adam Wylie","version":18,"id":"21402","lastModified":"1301903116000","name":"Adam Wylie","type":"Person","_key":"13507"} +{"label":"The Heist","description":"No overview found.","id":"2090","runtime":83,"imdbId":"tt0211407","version":76,"lastModified":"1301906644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4d398f447b9aa161450011a2\/the-heist-mid.jpg","studio":"Splendid Pictures","genre":"Action","title":"The Heist","releaseDate":915148800000,"language":"en","type":"Movie","_key":"13508"} +{"label":"Kurt Voss","version":22,"id":"21404","lastModified":"1301901441000","name":"Kurt Voss","type":"Person","_key":"13509"} +{"label":"Ice-T","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/507\/4d533ea87b9aa13aab012507\/ice-t-profile.jpg","version":45,"id":"21411","lastModified":"1301976020000","name":"Ice-T","type":"Person","_key":"13510"} +{"label":"Amy Locane","version":24,"id":"21412","lastModified":"1301901461000","name":"Amy Locane","type":"Person","_key":"13511"} +{"label":"David Faustino","version":22,"id":"18978","lastModified":"1301901563000","name":"David Faustino","type":"Person","_key":"13512"} +{"label":"Billy Rieck","version":16,"id":"21414","lastModified":"1301901920000","name":"Billy Rieck","type":"Person","_key":"13513"} +{"label":"De'aundre Bonds","version":22,"id":"93538","lastModified":"1301902404000","name":"De'aundre Bonds","type":"Person","_key":"13514"} +{"label":"The Badge","description":"No overview found.","id":"2091","runtime":99,"imdbId":"tt0286493","version":111,"lastModified":"1301904968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4ceb01715e73d6258e000635\/the-badge-mid.jpg","studio":"Emmett\/Furla Films","genre":"Crime","title":"The Badge","releaseDate":1031356800000,"language":"en","type":"Movie","_key":"13515"} +{"label":"Robby Henson","version":20,"id":"21415","lastModified":"1301901501000","name":"Robby Henson","type":"Person","_key":"13516"} +{"label":"William Devane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4d\/4c6830875e73d63461000d4d\/william-devane-profile.jpg","version":53,"id":"21416","lastModified":"1301901413000","name":"William Devane","type":"Person","_key":"13517"} +{"label":"Audrey Marie Anderson","version":23,"id":"21417","lastModified":"1301902014000","name":"Audrey Marie Anderson","type":"Person","_key":"13518"} +{"label":"Wish You Were Here","description":"No overview found.","id":"2092","runtime":81,"imdbId":"tt0418329","version":148,"lastModified":"1301906097000","studio":"Versatile Film","genre":"Erotic","title":"Wish You Were Here","releaseDate":1107216000000,"language":"en","type":"Movie","_key":"13519"} +{"label":"Darryn Welch","version":18,"id":"21421","lastModified":"1301901546000","name":"Darryn Welch","type":"Person","_key":"13520"} +{"label":"Sam Page","version":18,"id":"21429","lastModified":"1301901586000","name":"Sam Page","type":"Person","_key":"13521"} +{"label":"Natassia Malthe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/96a\/4d2769207b9aa134e000196a\/natassia-malthe-profile.jpg","version":42,"id":"21430","lastModified":"1301901105000","name":"Natassia Malthe","type":"Person","_key":"13522"} +{"label":"David Gant","version":25,"id":"21431","lastModified":"1301901470000","name":"David Gant","type":"Person","_key":"13523"} +{"label":"Lidea Ruth","version":16,"id":"21432","lastModified":"1301901629000","name":"Lidea Ruth","type":"Person","_key":"13524"} +{"label":"Michael Maxwell","version":16,"id":"21433","lastModified":"1301903117000","name":"Michael Maxwell","type":"Person","_key":"13525"} +{"label":"Roger Pera","version":15,"id":"21434","lastModified":"1301903114000","name":"Roger Pera","type":"Person","_key":"13526"} +{"label":"Howard Marks","version":16,"id":"21435","lastModified":"1301901754000","name":"Howard Marks","type":"Person","_key":"13527"} +{"label":"Eddie Webber","version":17,"id":"21436","lastModified":"1301901919000","name":"Eddie Webber","type":"Person","_key":"13528"} +{"label":"Andre Schneider","version":63,"id":"21437","lastModified":"1301904069000","name":"Andre Schneider","type":"Person","_key":"13529"} +{"label":"Louis Phillips","version":16,"id":"21438","lastModified":"1301903113000","name":"Louis Phillips","type":"Person","_key":"13530"} +{"label":"Natalie Beer","version":16,"id":"21439","lastModified":"1301903114000","name":"Natalie Beer","type":"Person","_key":"13531"} +{"label":"Amsterdamned","description":"A mysterious diver hiding in Amsterdam's canal system embarks on a rampage of gruesome murders, terrifying city officials and leaving few clues for the city's best detective, who doesn't suspect that both his new girlfriend and twelve-year-old daughter may be closer than he is to finding the killer.","id":"2093","runtime":105,"imdbId":"tt0094651","version":68,"lastModified":"1301913080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/141\/4c2f2fae7b9aa16662000141\/amsterdamned-mid.jpg","studio":"First Floor Features","genre":"Action","title":"Amsterdamned","releaseDate":571536000000,"language":"en","type":"Movie","_key":"13532"} +{"label":"Dick Maas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4cad0cfe7b9aa11b3d000010\/dick-maas-profile.jpg","version":79,"birthday":"-590634000000","id":"21440","birthplace":"Heemstede","lastModified":"1301901401000","name":"Dick Maas","type":"Person","_key":"13533"} +{"label":"Monique van de Ven","version":26,"id":"21445","lastModified":"1301901491000","name":"Monique van de Ven","type":"Person","_key":"13534"} +{"label":"Serge-Henri Valcke","version":20,"id":"21446","lastModified":"1301901856000","name":"Serge-Henri Valcke","type":"Person","_key":"13535"} +{"label":"Tanneke Hartzuiker","version":15,"id":"21447","lastModified":"1301903117000","name":"Tanneke Hartzuiker","type":"Person","_key":"13536"} +{"label":"Wim Zomer","version":15,"id":"21448","lastModified":"1301903115000","name":"Wim Zomer","type":"Person","_key":"13537"} +{"label":"Hidde Maas","version":16,"id":"21449","lastModified":"1301903114000","name":"Hidde Maas","type":"Person","_key":"13538"} +{"label":"Lou Landr\u00e9","version":17,"id":"21450","lastModified":"1301902014000","name":"Lou Landr\u00e9","type":"Person","_key":"13539"} +{"label":"Tatum Dagelet","version":17,"id":"21451","lastModified":"1301902014000","name":"Tatum Dagelet","type":"Person","_key":"13540"} +{"label":"Roustabout","description":"Elvis plays a bad-boy singer roaming the highways on his Japanese motorcycle; laid up after an accident, he joins a carnival owned by the feisty Barbara Stanwyck.","id":"2094","runtime":101,"imdbId":"tt0058534","version":103,"lastModified":"1301905653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fa\/4bc91574017a3c57fe0080fa\/roustabout-mid.jpg","studio":"Hall & Wallis Productions","genre":"Drama","title":"Roustabout","releaseDate":-162172800000,"language":"en","type":"Movie","_key":"13541"} +{"label":"John Rich","version":22,"id":"21452","lastModified":"1301901478000","name":"John Rich","type":"Person","_key":"13542"} +{"label":"Elvis Presley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4bcf2ded017a3c63f100001f\/elvis-presley-profile.jpg","version":87,"id":"21457","lastModified":"1301901136000","name":"Elvis Presley","type":"Person","_key":"13543"} +{"label":"Joan Freeman","version":20,"id":"21458","lastModified":"1301902008000","name":"Joan Freeman","type":"Person","_key":"13544"} +{"label":"Sue Ane Langdon","version":24,"id":"21459","lastModified":"1301903116000","name":"Sue Ane Langdon","type":"Person","_key":"13545"} +{"label":"Pat Buttram","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4d04046d5e73d621a40021d1\/pat-buttram-profile.jpg","version":28,"id":"21460","lastModified":"1301901360000","name":"Pat Buttram","type":"Person","_key":"13546"} +{"label":"Joan Staley","version":20,"id":"21461","lastModified":"1301903115000","name":"Joan Staley","type":"Person","_key":"13547"} +{"label":"Raquel Welch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/604\/4c62cfbe7b9aa172de000604\/raquel-welch-profile.jpg","version":50,"id":"21462","lastModified":"1301901131000","name":"Raquel Welch","type":"Person","_key":"13548"} +{"label":"Desert Saints","description":"Kiefer Sutherland is a hard-edged hit man. Known as the world's best professional killer, Sutherland is living a life of detached solitude when he is given an assignment that pairs him up with a sultry hitchhiker (Melora Walters). Before long, he finds there is more to her than meets the eye, as he becomes entangled deeper and deeper into a web of fatal lies and double-crosses.","id":"2095","runtime":88,"imdbId":"tt0167116","version":85,"lastModified":"1301906714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4c8e9abf5e73d6149000000e\/desert-saints-mid.jpg","studio":"Prufrock Pictures","genre":"Action","title":"Desert Saints","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"13549"} +{"label":"Richard Greenberg","version":19,"id":"21463","lastModified":"1301901815000","name":"Richard Greenberg","type":"Person","_key":"13550"} +{"label":"Shawn Woods","version":16,"id":"21472","lastModified":"1301901947000","name":"Shawn Woods","type":"Person","_key":"13551"} +{"label":"Christopher Bersh","version":16,"id":"21473","lastModified":"1301901561000","name":"Christopher Bersh","type":"Person","_key":"13552"} +{"label":"Leslie Stefanson","version":25,"id":"21474","lastModified":"1301901445000","name":"Leslie Stefanson","type":"Person","_key":"13553"} +{"label":"Tycus","description":"An underground city is built to save a cross-section of humanity as a comet hurtles toward Earth.","id":"2096","runtime":94,"imdbId":"tt0156146","version":66,"lastModified":"1301913046000","studio":"Royal Oaks Entertainment","genre":"Action","title":"Tycus","releaseDate":883612800000,"language":"en","type":"Movie","_key":"13554"} +{"label":"John Putch","version":36,"id":"21475","lastModified":"1301901670000","name":"John Putch","type":"Person","_key":"13555"} +{"label":"Todd Allen","version":23,"id":"21484","lastModified":"1301901500000","name":"Todd Allen","type":"Person","_key":"13556"} +{"label":"Sarah Dalton","version":17,"id":"21486","lastModified":"1301901682000","name":"Sarah Dalton","type":"Person","_key":"13557"} +{"label":"Sonny D'Angelo","version":17,"id":"21487","lastModified":"1301902014000","name":"Sonny D'Angelo","type":"Person","_key":"13558"} +{"label":"Sandra Francis","version":17,"id":"21488","lastModified":"1301902013000","name":"Sandra Francis","type":"Person","_key":"13559"} +{"label":"Peter Onorati","version":16,"id":"21490","lastModified":"1301903117000","name":"Peter Onorati","type":"Person","_key":"13560"} +{"label":"Finola Hughes","version":28,"id":"66881","lastModified":"1301901496000","name":"Finola Hughes","type":"Person","_key":"13561"} +{"label":"Daikyoj\u00fb Gappa","description":"No overview found.","id":"2097","runtime":90,"imdbId":"tt0061550","version":59,"lastModified":"1301904968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/466\/4d0e012f7b9aa10258002466\/daikyoj-gappa-mid.jpg","studio":"Manson Corporation","genre":"Horror","title":"Daikyoj\u00fb Gappa","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"13562"} +{"label":"Haruyasu Noguchi","version":17,"id":"21491","lastModified":"1301901754000","name":"Haruyasu Noguchi","type":"Person","_key":"13563"} +{"label":"Tamio Kawaji","version":19,"id":"21499","lastModified":"1301901708000","name":"Tamio Kawaji","type":"Person","_key":"13564"} +{"label":"Y\u00f4ko Yamamoto","version":18,"id":"21500","lastModified":"1301901682000","name":"Y\u00f4ko Yamamoto","type":"Person","_key":"13565"} +{"label":"Yuji Okada","version":17,"id":"21501","lastModified":"1301901754000","name":"Yuji Okada","type":"Person","_key":"13566"} +{"label":"K\u00f4ji Wada","version":17,"id":"21502","lastModified":"1301903113000","name":"K\u00f4ji Wada","type":"Person","_key":"13567"} +{"label":"Tatsuya Fuji","version":23,"id":"21503","lastModified":"1301901788000","name":"Tatsuya Fuji","type":"Person","_key":"13568"} +{"label":"Viva Las Vegas","description":"Lucky Jackson arrives in town with his car literally in tow ready for the first Las Vegas Grand Prix - once he has the money to buy an engine. He gets the cash easily enough but mislays it when the pretty swimming pool manageress takes his mind off things. It seems he will lose both race and girl, problems made more difficult by rivalry from Elmo Mancini, fellow racer and womaniser","id":"2098","runtime":85,"imdbId":"tt0058725","version":130,"lastModified":"1301902763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/111\/4bc91579017a3c57fe008111\/viva-las-vegas-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Viva Las Vegas","releaseDate":-171676800000,"language":"en","type":"Movie","_key":"13569"} +{"label":"George Sidney","version":36,"id":"21506","lastModified":"1301901304000","name":"George Sidney","type":"Person","_key":"13570"} +{"label":"William Demarest","version":36,"id":"21510","lastModified":"1301901241000","name":"William Demarest","type":"Person","_key":"13571"} +{"label":"Raw Deal","description":"Mark Kaminsky is kicked out of the FBI for his rough treatment of a suspect. He winds up as the sheriff of a small town in North Carolina. FBI Chief Harry Shannon, whose son has been killed by a mobster named Patrovina, enlists Kaminsky in a personal vendetta with a promise of reinstatement into the FBI if Patrovina is taken down. To accomplish this, he must go undercover and join Patrovina's gang","id":"2099","runtime":97,"imdbId":"tt0091828","version":309,"lastModified":"1301913004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d6\/4bfa8ca6017a3c702a0003d6\/raw-deal-mid.jpg","studio":"De Laurentiis","genre":"Action","title":"Raw Deal","releaseDate":524966400000,"language":"en","type":"Movie","_key":"13572"} +{"label":"Kathryn Harrold","version":22,"id":"21519","lastModified":"1301901788000","name":"Kathryn Harrold","type":"Person","_key":"13573"} +{"label":"Sam Wanamaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ec\/4ca4e6195e73d636fb0002ec\/sam-wanamaker-profile.jpg","version":31,"id":"21520","lastModified":"1301901695000","name":"Sam Wanamaker","type":"Person","_key":"13574"} +{"label":"Steven Hill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/493\/4c9a257d7b9aa122e1000493\/steven-hill-profile.jpg","version":36,"id":"21521","lastModified":"1301901661000","name":"Steven Hill","type":"Person","_key":"13575"} +{"label":"Joe Regalbuto","version":23,"id":"21522","lastModified":"1301901832000","name":"Joe Regalbuto","type":"Person","_key":"13576"} +{"label":"Ed Lauter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/760\/4cb9b4665e73d67783000760\/ed-lauter-profile.jpg","version":60,"id":"21523","lastModified":"1301901570000","name":"Ed Lauter","type":"Person","_key":"13577"} +{"label":"Blanche Baker","version":24,"id":"21525","lastModified":"1301901560000","name":"Blanche Baker","type":"Person","_key":"13578"} +{"label":"The Last Castle","description":"A Court Martialed general rallies together 1200 inmates to rise against the system that put him away. ","id":"2100","runtime":131,"imdbId":"tt0272020","version":161,"lastModified":"1302039217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/127\/4bc9157d017a3c57fe008127\/the-last-castle-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"The Last Castle","releaseDate":1006992000000,"language":"en","tagline":"A Castle Can Only Have One King","type":"Movie","_key":"13579"} +{"label":"Rod Lurie","version":39,"id":"21526","lastModified":"1301901788000","name":"Rod Lurie","type":"Person","_key":"13580"} +{"label":"Steve Burton","version":20,"id":"21530","lastModified":"1301901576000","name":"Steve Burton","type":"Person","_key":"13581"} +{"label":"Samuel Ball","version":23,"id":"21532","lastModified":"1301901633000","name":"Samuel Ball","type":"Person","_key":"13582"} +{"label":"Jeremy Childs","version":21,"id":"21533","lastModified":"1301902004000","name":"Jeremy Childs","type":"Person","_key":"13583"} +{"label":"George W. Scott","version":19,"id":"21535","lastModified":"1301903120000","name":"George W. Scott","type":"Person","_key":"13584"} +{"label":"The Brother from Space","description":"No overview found.","id":"2101","runtime":90,"imdbId":"tt0380368","version":67,"lastModified":"1301904271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12c\/4bc9157d017a3c57fe00812c\/fratello-dello-spazio-mid.jpg","studio":"Constan Films","genre":"Science Fiction","title":"The Brother from Space","releaseDate":567993600000,"language":"en","type":"Movie","_key":"13585"} +{"label":"Mario Gariazzo","version":25,"id":"100419","lastModified":"1301901570000","name":"Mario Gariazzo","type":"Person","_key":"13586"} +{"label":"Agostina Belli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cc\/4ca4d95c7b9aa16ed60002cc\/agostina-belli-profile.jpg","version":26,"id":"21541","lastModified":"1301901277000","name":"Agostina Belli","type":"Person","_key":"13587"} +{"label":"Silvia Tortosa","version":22,"id":"21542","lastModified":"1301901318000","name":"Silvia Tortosa","type":"Person","_key":"13588"} +{"label":"William Berger","version":31,"id":"102101","lastModified":"1301901419000","name":"William Berger","type":"Person","_key":"13589"} +{"label":"Eduardo Fajardo","version":24,"id":"100409","lastModified":"1301902996000","name":"Eduardo Fajardo","type":"Person","_key":"13590"} +{"label":"Luis Barboo","version":45,"id":"30963","lastModified":"1301901506000","name":"Luis Barboo","type":"Person","_key":"13591"} +{"label":"Jos\u00e9 Antonio Ceinos","version":19,"id":"102125","lastModified":"1301902536000","name":"Jos\u00e9 Antonio Ceinos","type":"Person","_key":"13592"} +{"label":"Manuel Gallardo","version":18,"id":"102126","lastModified":"1301903056000","name":"Manuel Gallardo","type":"Person","_key":"13593"} +{"label":"Le\u00f3n Klimovsky","version":31,"id":"93079","lastModified":"1301902163000","name":"Le\u00f3n Klimovsky","type":"Person","_key":"13594"} +{"label":"Jos\u00e9 Manuel Mart\u00edn","version":27,"id":"32153","lastModified":"1301901619000","name":"Jos\u00e9 Manuel Mart\u00edn","type":"Person","_key":"13595"} +{"label":"Solar Crisis","description":"A huge solar flare is predicted to fry the Earth. Astronauts aboard the spaceship Helios must go to the Sun to drop a bomb equipped with an Artificial Intelligence (Freddy) and a Japanese pilot (as a back up if the Artificial Intelligence fail) at the right time so the flare will point somewhere else.","id":"2102","runtime":112,"imdbId":"tt0100649","version":104,"lastModified":"1301903467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4bc9157d017a3c57fe008131\/kuraishisu-niju-goju-nen-mid.jpg","studio":"Japan America Picture Company","genre":"Action","title":"Solar Crisis","releaseDate":647913600000,"language":"en","type":"Movie","_key":"13596"} +{"label":"Richard C. Sarafian","version":27,"id":"21544","lastModified":"1301901379000","name":"Richard C. Sarafian","type":"Person","_key":"13597"} +{"label":"Tim Matheson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09c\/4c3dbbd97b9aa13a3e00009c\/tim-matheson-profile.jpg","version":62,"id":"21561","lastModified":"1301901218000","name":"Tim Matheson","type":"Person","_key":"13598"} +{"label":"Annabel Schofield","version":17,"id":"21562","lastModified":"1301901546000","name":"Annabel Schofield","type":"Person","_key":"13599"} +{"label":"Corin Nemec","version":44,"id":"21563","lastModified":"1301901411000","name":"Corin Nemec","type":"Person","_key":"13600"} +{"label":"Tetsuya Bessho","version":17,"id":"21564","lastModified":"1301903115000","name":"Tetsuya Bessho","type":"Person","_key":"13601"} +{"label":"Solaris","description":"Upon arrival at the space station orbiting an ocean world called Solaris a psychologist discovers that the commander of an expedition to the planet has died mysteriously. Other strange events soon start happening as well, such as the appearance of old acquaintances of the crew, including some who are dead.","id":"2103","runtime":99,"imdbId":"tt0307479","version":171,"lastModified":"1302043837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4bc91580017a3c57fe00813f\/solaris-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Solaris","releaseDate":1038355200000,"language":"en","type":"Movie","_key":"13602"} +{"label":"Natascha McElhone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4c11c2525e73d6392500001f\/natascha-mcelhone-profile.jpg","biography":"Natascha McElhone (born 14 December 1969) is an English actress of stage, screen and television, best known for her roles in Ronin, The Truman Show and Solaris. McElhone also plays a leading role in the Showtime series Californication.","version":53,"id":"11317","lastModified":"1302060762000","name":"Natascha McElhone","type":"Person","_key":"13603"} +{"label":"Requiem","description":"No overview found.","id":"2104","runtime":98,"imdbId":"tt0286917","version":121,"lastModified":"1301908040000","studio":"Canal Plus","genre":"Action","title":"Requiem","releaseDate":1009497600000,"language":"en","type":"Movie","_key":"13604"} +{"label":"Herv\u00e9 Renoh","version":22,"id":"21569","lastModified":"1301901806000","name":"Herv\u00e9 Renoh","type":"Person","_key":"13605"} +{"label":"Jean-Louis Loca","version":16,"id":"21580","lastModified":"1301903115000","name":"Jean-Louis Loca","type":"Person","_key":"13606"} +{"label":"Marc Chapiteau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad4\/4d3e6e4e7b9aa15bbb000ad4\/marc-chapiteau-profile.jpg","version":18,"id":"21579","lastModified":"1301903114000","name":"Marc Chapiteau","type":"Person","_key":"13607"} +{"label":"Patrick Dell'Isola","version":15,"id":"21576","lastModified":"1301903117000","name":"Patrick Dell'Isola","type":"Person","_key":"13608"} +{"label":"Julie-Anne Roth","version":15,"id":"21577","lastModified":"1301903117000","name":"Julie-Anne Roth","type":"Person","_key":"13609"} +{"label":"Simon Eine","version":18,"id":"21581","lastModified":"1301901805000","name":"Simon Eine","type":"Person","_key":"13610"} +{"label":"Mathieu Busson","version":16,"id":"21582","lastModified":"1301903118000","name":"Mathieu Busson","type":"Person","_key":"13611"} +{"label":"Jacques Seiler","version":18,"id":"21583","lastModified":"1301901999000","name":"Jacques Seiler","type":"Person","_key":"13612"} +{"label":"American Pie","description":"At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to try to be the first to \"score.\" And of course, the senior prom is their last best chance. As the fateful date draws near, the boys wonder who among them will get lucky.","id":"2105","runtime":95,"imdbId":"tt0163651","trailer":"http:\/\/www.youtube.com\/watch?v=F0GJMxsivh4","version":243,"lastModified":"1301920163000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61f\/4c5bb1405e73d63a7100061f\/american-pie-mid.jpg","studio":"Newmarket Capital Group","genre":"Comedy","title":"American Pie","releaseDate":931478400000,"language":"en","tagline":"There's nothing like your first piece.","type":"Movie","_key":"13613"} +{"label":"Jason Biggs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fd\/4c3b0a005e73d671d00001fd\/jason-biggs-profile.jpg","version":82,"id":"21593","lastModified":"1301904071000","name":"Jason Biggs","type":"Person","_key":"13614"} +{"label":"Chris Klein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/182\/4c3b0a6e5e73d671d1000182\/chris-klein-profile.jpg","version":71,"id":"21594","lastModified":"1301904082000","name":"Chris Klein","type":"Person","_key":"13615"} +{"label":"Alyson Hannigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82f\/4be32c66017a3c35b500082f\/alyson-hannigan-profile.jpg","biography":"Alyson, born in Washington DC, began her acting career in Atlanta at the young age of 4 in commercials sponsoring such companies as McDonald's, Six Flags, and Oreos. She is a seasoned television actress veteran, guest starring in \"Picket Fences\" (1992), \"Roseanne\" (1988), \"Touched by an Angel\" (1994) and the \"The Torkelsons\" (1991) before starring in her most notorious role yet in \"Buffy the Vampire Slayer\" (1997) as Willow Rosenberg.","version":70,"birthday":"133311600000","id":"21595","birthplace":"Washington, D.C., USA","lastModified":"1301901142000","name":"Alyson Hannigan","type":"Person","_key":"13616"} +{"label":"Shannon Elizabeth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4bcc8748017a3c0f2700014c\/shannon-elizabeth-profile.jpg","version":50,"id":"21596","lastModified":"1301901171000","name":"Shannon Elizabeth","type":"Person","_key":"13617"} +{"label":"Jennifer Coolidge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bc\/4c3b0d9a5e73d671d40001bc\/jennifer-coolidge-profile.jpg","version":62,"id":"38334","lastModified":"1301901118000","name":"Jennifer Coolidge","type":"Person","_key":"13618"} +{"label":"Eugene Levy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4bce3bdc017a3c4868000005\/eugene-levy-profile.jpg","version":148,"id":"26510","lastModified":"1302012203000","name":"Eugene Levy","type":"Person","_key":"13619"} +{"label":"Eddie Kaye Thomas","version":47,"id":"52480","lastModified":"1301901177000","name":"Eddie Kaye Thomas","type":"Person","_key":"13620"} +{"label":"Hot Enough for June","description":"No overview found.","id":"2106","runtime":98,"imdbId":"tt0059282","version":53,"lastModified":"1301907436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4d77f7e65e73d67f020010cb\/hot-enough-for-june-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Hot Enough for June","releaseDate":-183427200000,"language":"en","type":"Movie","_key":"13621"} +{"label":"Ralph Thomas","version":25,"id":"21598","lastModified":"1301901405000","name":"Ralph Thomas","type":"Person","_key":"13622"} +{"label":"Dirk Bogarde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a09\/4be422de017a3c35bd000a09\/dirk-bogarde-profile.jpg","version":48,"id":"21605","lastModified":"1301901370000","name":"Dirk Bogarde","type":"Person","_key":"13623"} +{"label":"Sylva Koscina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e3\/4bf17ae3017a3c32130001e3\/sylva-koscina-profile.jpg","version":35,"id":"21606","lastModified":"1301901666000","name":"Sylva Koscina","type":"Person","_key":"13624"} +{"label":"Roger Delgado","version":21,"id":"21607","lastModified":"1301902007000","name":"Roger Delgado","type":"Person","_key":"13625"} +{"label":"Derek Fowlds","version":19,"id":"21608","lastModified":"1301902009000","name":"Derek Fowlds","type":"Person","_key":"13626"} +{"label":"Eric Pohlmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f3\/4cadcd667b9aa11b3a0000f3\/eric-pohlmann-profile.jpg","version":36,"id":"21609","lastModified":"1301903118000","name":"Eric Pohlmann","type":"Person","_key":"13627"} +{"label":"L.A. Story","description":"With the help of a talking freeway billboard, a \"wacky weatherman\" tries to win the heart of an English newspaper reporter, who is struggling to make sense of the strange world of early-90s Los Angeles.","id":"2107","runtime":95,"imdbId":"tt0102250","version":162,"lastModified":"1301903060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17d\/4bc91588017a3c57fe00817d\/l-a-story-mid.jpg","studio":"Carolco Pictures Inc","genre":"Comedy","title":"L.A. Story","releaseDate":665971200000,"language":"en","type":"Movie","_key":"13628"} +{"label":"Victoria Tennant","version":31,"id":"21618","lastModified":"1301901403000","name":"Victoria Tennant","type":"Person","_key":"13629"} +{"label":"Marilu Henner","version":36,"id":"21619","lastModified":"1301901464000","name":"Marilu Henner","type":"Person","_key":"13630"} +{"label":"Susan Forristal","version":18,"id":"21620","lastModified":"1301901934000","name":"Susan Forristal","type":"Person","_key":"13631"} +{"label":"The Breakfast Club","description":"In this 1980s Brat Pack film, the athlete, the brain, the criminal, the princess and the basket case break through the social barriers of high school during Saturday detention. The disparate group clashes at first but begin to bond as they reveal their feelings and find a common enemy in their bully principal.","id":"2108","runtime":97,"imdbId":"tt0088847","version":164,"lastModified":"1301901758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19f\/4bc9158e017a3c57fe00819f\/the-breakfast-club-mid.jpg","studio":"A&M Films","genre":"Comedy","title":"The Breakfast Club","releaseDate":489369600000,"language":"en","tagline":"They only met once, but it changed their lives forever.","type":"Movie","_key":"13632"} +{"label":"Molly Ringwald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ebe\/4c0fcb2d017a3c29a6000ebe\/molly-ringwald-profile.jpg","biography":"As a child, Ringwald appeared in many local TV commercials and stage plays in the Sacramento area. In 1978, at the age of 10, she was chosen to play Kate in the West Coast production of Annie, performing in Los Angeles. In 1979, Ringwald appeared in the TV series Diff'rent Strokes and was selected to become a cast member of the spin-off Facts of Life. She played \"Molly Parker,\" a perky, fun-loving student at Eastland Girls School. Although she had essentially a supporting role, one entire episod","version":56,"id":"21625","lastModified":"1301901125000","name":"Molly Ringwald","type":"Person","_key":"13633"} +{"label":"John Hughes","version":227,"id":"11505","lastModified":"1302062573000","name":"John Hughes","type":"Person","_key":"13634"} +{"label":"Rush Hour","description":"When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.","id":"2109","runtime":97,"imdbId":"tt0120812","trailer":"http:\/\/www.youtube.com\/watch?v=jPULDr0cn6A","version":225,"lastModified":"1301901570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bc\/4bc91591017a3c57fe0081bc\/rush-hour-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Rush Hour","releaseDate":906076800000,"language":"en","tagline":"Two cops. One is all talk. The other is all action.","type":"Movie","_key":"13635"} +{"label":"Tzi Ma","version":42,"id":"21629","lastModified":"1302061732000","name":"Tzi Ma","type":"Person","_key":"13636"} +{"label":"Robert Littman","version":27,"id":"21630","lastModified":"1302061732000","name":"Robert Littman","type":"Person","_key":"13637"} +{"label":"Julia Hsu","version":27,"id":"21632","lastModified":"1302061732000","name":"Julia Hsu","type":"Person","_key":"13638"} +{"label":"Kai Lennox","version":29,"id":"21633","lastModified":"1302061732000","name":"Kai Lennox","type":"Person","_key":"13639"} +{"label":"Brett Ratner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4d7ff2917b9aa12da4000075\/brett-ratner-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Brett Ratner<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born on March 28, 1969 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Miami Beach<\/st1:City>, <st1:State w:st=\"on\">Florida<\/st1:State><\/st1:place>. Ratner attended high school in <st1:country-region w:st=\"on\">Israel<\/st1:country-reg","version":104,"birthday":"-24109200000","id":"11091","birthplace":"Miami, Florida, US","lastModified":"1302061732000","name":"Brett Ratner","type":"Person","_key":"13640"} +{"label":"Wasabi","description":"Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.","id":"2110","runtime":94,"imdbId":"tt0281364","version":197,"lastModified":"1301901202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a7\/4caa5e1d5e73d643f00007a7\/wasabi-mid.jpg","studio":"Tobis","genre":"Action","title":"Wasabi","releaseDate":1004486400000,"language":"en","tagline":"For those who take their action raw.","type":"Movie","_key":"13641"} +{"label":"G\u00e9rard Krawczyk","version":40,"id":"21647","lastModified":"1301901327000","name":"G\u00e9rard Krawczyk","type":"Person","_key":"13642"} +{"label":"Ryoko Hirosue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cbe\/4d2224317b9aa1280f000cbe\/ryoko-hirosue-profile.jpg","version":30,"id":"21658","lastModified":"1301901104000","name":"Ryoko Hirosue","type":"Person","_key":"13643"} +{"label":"Michel Muller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d95\/4be574ee017a3c35b4000d95\/michel-muller-profile.jpg","version":33,"id":"21659","lastModified":"1301901275000","name":"Michel Muller","type":"Person","_key":"13644"} +{"label":"Yoshi Oida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d6d\/4d9102b47b9aa1674f003d6d\/yoshi-oida-profile.jpg","version":23,"id":"21663","lastModified":"1301901754000","name":"Yoshi Oida","type":"Person","_key":"13645"} +{"label":"Christian Sinniger","version":23,"id":"21664","lastModified":"1301901842000","name":"Christian Sinniger","type":"Person","_key":"13646"} +{"label":"Alexandre Brik","version":20,"id":"21665","lastModified":"1301903113000","name":"Alexandre Brik","type":"Person","_key":"13647"} +{"label":"Jean-Marc Montalto","version":21,"id":"21666","lastModified":"1301901682000","name":"Jean-Marc Montalto","type":"Person","_key":"13648"} +{"label":"V\u00e9ronique Balme","version":21,"id":"21667","lastModified":"1301901805000","name":"V\u00e9ronique Balme","type":"Person","_key":"13649"} +{"label":"Fabio Zenoni","version":21,"id":"21668","lastModified":"1301901995000","name":"Fabio Zenoni","type":"Person","_key":"13650"} +{"label":"Balzac and the Little Chinese Seamstress","description":"During the Cultural Revolution, two young men are sent to a remote mining village where they fall in love with the local tailor\u2019s beautiful granddaughter and discover a suitcase full of forbidden Western novels.","id":"2111","runtime":116,"imdbId":"tt0291032","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/balzac-and-the-little-chinese-seamstress","version":70,"lastModified":"1301904719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bc91596017a3c57fe0081dd\/xiao-cai-feng-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Balzac and the Little Chinese Seamstress","releaseDate":1034121600000,"language":"en","type":"Movie","_key":"13651"} +{"label":"Shuangbao Wang","version":19,"id":"21975","lastModified":"1301901576000","name":"Shuangbao Wang","type":"Person","_key":"13652"} +{"label":"Xun Zhou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/078\/4c7e1f147b9aa10d94000078\/xun-zhou-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Zhou Xun<\/b> (born October 18, 1976) is a <a href=\"http:\/\/en.wikipedia.org\/wiki\/Chinese_people\" title=\"Chinese people\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Chinese<\/a> actress ","version":47,"birthday":"214441200000","id":"71057","birthplace":"Quzhou, Zhejiang, China","lastModified":"1301901253000","name":"Xun Zhou","type":"Person","_key":"13653"} +{"label":"Kun Chen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4c7e21717b9aa10d96000099\/kun-chen-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Chen Kun<\/b> (<a href=\"http:\/\/en.wikipedia.org\/wiki\/Chinese_language\" title=\"Chinese language\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Chinese<\/a>: <span lang=\"zh\" xml:lang=\"zh\"><a hre","version":37,"birthday":"192236400000","id":"109809","birthplace":"Chongqing, Sichuan, China","lastModified":"1301901473000","name":"Kun Chen","type":"Person","_key":"13654"} +{"label":"Payback","description":"With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.","id":"2112","runtime":100,"imdbId":"tt0120784","trailer":"http:\/\/www.youtube.com\/watch?v=oXRaT5Bl3IA","version":161,"lastModified":"1301902079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ea\/4bc91597017a3c57fe0081ea\/payback-mid.jpg","studio":"Icon Productions","genre":"Action","title":"Payback","releaseDate":921110400000,"language":"en","tagline":"No More Mr. Nice Guy.","type":"Movie","_key":"13655"} +{"label":"Brian Helgeland","version":124,"id":"4723","lastModified":"1301901170000","name":"Brian Helgeland","type":"Person","_key":"13656"} +{"label":"John Myhre","version":46,"id":"11002","lastModified":"1301901296000","name":"John Myhre","type":"Person","_key":"13657"} +{"label":"Jack Conley","version":40,"id":"21675","lastModified":"1301901101000","name":"Jack Conley","type":"Person","_key":"13658"} +{"label":"Final Fantasy: The Spirits Within","description":"A female scientist makes a last stand on Earth with the help of an elite team of soldiers against an invasion of alien phantoms.","id":"2114","runtime":106,"imdbId":"tt0173840","trailer":"http:\/\/www.youtube.com\/watch?v=m3gEkDxDp0Y","version":565,"lastModified":"1301912747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4bc9159c017a3c57fe008215\/final-fantasy-the-spirits-within-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Final Fantasy: The Spirits Within","releaseDate":998524800000,"language":"en","type":"Movie","_key":"13659"} +{"label":"Hironobu Sakaguchi","version":20,"id":"21692","lastModified":"1301901478000","name":"Hironobu Sakaguchi","type":"Person","_key":"13660"} +{"label":"Motonori Sakakibara","version":26,"id":"21693","lastModified":"1301901542000","name":"Motonori Sakakibara","type":"Person","_key":"13661"} +{"label":"Ming-Na","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/551\/4d5339d47b9aa13ab8012551\/ming-na-profile.jpg","version":40,"id":"21702","lastModified":"1302062603000","name":"Ming-Na","type":"Person","_key":"13662"} +{"label":"Peri Gilpin","version":26,"id":"21703","lastModified":"1301901562000","name":"Peri Gilpin","type":"Person","_key":"13663"} +{"label":"Light of Day","description":"No overview found.","id":"2115","runtime":107,"imdbId":"tt0093415","version":76,"lastModified":"1301904249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/436\/4ca0b2a47b9aa1578a000436\/light-of-day-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Light of Day","releaseDate":539568000000,"language":"en","type":"Movie","_key":"13664"} +{"label":"Paul Schrader","version":64,"id":"1035","lastModified":"1300013574000","name":"Paul Schrader","type":"Person","_key":"13665"} +{"label":"Joan Jett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ef\/4ca0b2267b9aa15e3c0003ef\/joan-jett-profile.jpg","version":17,"id":"21730","lastModified":"1301901708000","name":"Joan Jett","type":"Person","_key":"13666"} +{"label":"Michael McKean","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e3\/4c7976ff5e73d613d40001e3\/michael-mckean-profile.jpg","version":97,"birthday":"-700880400000","id":"21731","birthplace":"New York, USA","lastModified":"1302066402000","name":"Michael McKean","type":"Person","_key":"13667"} +{"label":"Michael Dolan","version":21,"id":"21733","lastModified":"1301901564000","name":"Michael Dolan","type":"Person","_key":"13668"} +{"label":"Paul J. Harkins","version":16,"id":"21734","lastModified":"1301901919000","name":"Paul J. Harkins","type":"Person","_key":"13669"} +{"label":"Billy L. Sullivan","version":17,"id":"21735","lastModified":"1301901919000","name":"Billy L. Sullivan","type":"Person","_key":"13670"} +{"label":"Jason Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4c3dda1b7b9aa13cd9000016\/jason-miller-profile.jpg","version":33,"id":"21736","lastModified":"1301901506000","name":"Jason Miller","type":"Person","_key":"13671"} +{"label":"Out of Time","description":"Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.","id":"2116","runtime":105,"imdbId":"tt0313443","version":201,"lastModified":"1302062389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/222\/4bc9159d017a3c57fe008222\/out-of-time-mid.jpg","studio":"Original Film","genre":"Action","title":"Out of Time","releaseDate":1065139200000,"language":"en","tagline":"The Clock Is Ticking...","type":"Movie","_key":"13672"} +{"label":"Carl Franklin","version":38,"id":"21712","lastModified":"1302062388000","name":"Carl Franklin","type":"Person","_key":"13673"} +{"label":"Alex Carter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/138\/4ceeca055e73d654f6000138\/alex-carter-profile.jpg","version":22,"id":"21724","lastModified":"1302062389000","name":"Alex Carter","type":"Person","_key":"13674"} +{"label":"Dean Cain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/114\/4bf893f9017a3c490a000114\/dean-cain-profile.jpg","biography":"His mother, actress Sharon Thomas, married his adoptive father, director Christopher Cain; when Dean was three. Though he grew up in Malibu and attended Santa Monica High School, his career plans favored professional football over acting. While at Princeton, he completed a history major, dated Brooke Shields for two years, and set an NCAA record for interceptions in a season. After signing with the Buffalo Bills, a knee injury ended his pro career before it began. Though he had already played a ","version":70,"birthday":"-108003600000","id":"21721","birthplace":"Mt. Clemens, Michigan, USA","lastModified":"1302062389000","name":"Dean Cain","type":"Person","_key":"13675"} +{"label":"John Billingsley","version":35,"id":"21722","lastModified":"1302062389000","name":"John Billingsley","type":"Person","_key":"13676"} +{"label":"Robert Baker","version":27,"id":"21723","lastModified":"1302062389000","name":"Robert Baker","type":"Person","_key":"13677"} +{"label":"Sophie Scholl: The Final Days","description":"True story of Germany's most famous anti-Nazi heroine brought to thrilling, dramatic life. Sophie Scholl stars Julia Jentsch in a luminous performance as the fearless activist of the underground student resistance group, The White Rose. Armed with long-buried historical records of her incarceration, director Marc Rothemund expertly re-creates the last six days of Sophie Scholl's life.","id":"2117","runtime":117,"imdbId":"tt0426578","homepage":"http:\/\/www.sophiescholl-derfilm.de\/","version":160,"lastModified":"1301912664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22b\/4bc915a0017a3c57fe00822b\/sophie-scholl-die-letzten-tage-mid.jpg","studio":"Both Film","genre":"Drama","title":"Sophie Scholl: The Final Days","releaseDate":1108252800000,"language":"en","type":"Movie","_key":"13678"} +{"label":"Marc Rothemund","version":31,"id":"21737","lastModified":"1301901451000","name":"Marc Rothemund","type":"Person","_key":"13679"} +{"label":"Fabian Hinrichs","version":27,"id":"21742","lastModified":"1301901845000","name":"Fabian Hinrichs","type":"Person","_key":"13680"} +{"label":"Florian Stetter","version":22,"id":"21744","lastModified":"1301901401000","name":"Florian Stetter","type":"Person","_key":"13681"} +{"label":"Maximilian Br\u00fcckner","version":29,"id":"21748","lastModified":"1301901450000","name":"Maximilian Br\u00fcckner","type":"Person","_key":"13682"} +{"label":"Johannes Suhm","version":20,"id":"21746","lastModified":"1301902018000","name":"Johannes Suhm","type":"Person","_key":"13683"} +{"label":"J\u00f6rg Hube","version":19,"id":"21749","lastModified":"1301903119000","name":"J\u00f6rg Hube","type":"Person","_key":"13684"} +{"label":"Petra Kelling","version":24,"id":"21750","lastModified":"1301901566000","name":"Petra Kelling","type":"Person","_key":"13685"} +{"label":"Franz Staber","version":19,"id":"21752","lastModified":"1301901919000","name":"Franz Staber","type":"Person","_key":"13686"} +{"label":"Lilli Jung","version":19,"id":"21753","lastModified":"1301901919000","name":"Lilli Jung","type":"Person","_key":"13687"} +{"label":"L.A. Confidential","description":"Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner in this lush tribute to tough film noir crime films. Based on the multi-layered James Ellroy novel.","id":"2118","runtime":138,"imdbId":"tt0119488","version":237,"lastModified":"1301901362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/255\/4bc915a4017a3c57fe008255\/l-a-confidential-mid.jpg","studio":"Monarchy Enterprises B.V.","genre":"Crime","title":"L.A. Confidential","releaseDate":881193600000,"language":"en","tagline":"Everything is suspect... Everyone is for sale... And nothing is what it seems.","type":"Movie","_key":"13688"} +{"label":"Days of Thunder","description":"Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.","id":"2119","runtime":107,"imdbId":"tt0099371","trailer":"http:\/\/www.youtube.com\/watch?v=AhUhuDW_jOw","version":227,"lastModified":"1301906223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4c15fafb7b9aa105bf0000d2\/days-of-thunder-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Days of Thunder","releaseDate":653788800000,"language":"en","tagline":"You can't stop the thunder.","type":"Movie","_key":"13689"} +{"label":"J.C. Quinn","version":34,"id":"21757","lastModified":"1301901201000","name":"J.C. Quinn","type":"Person","_key":"13690"} +{"label":"Don Simpson","version":61,"id":"771","lastModified":"1299491565000","name":"Don Simpson","type":"Person","_key":"13691"} +{"label":"Cedric","description":"No overview found.","id":"2120","runtime":11,"version":63,"lastModified":"1301908351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/283\/4bc915ab017a3c57fe008283\/cedric-mid.jpg","genre":"Animation","title":"Cedric","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"13692"} +{"label":"Bernhard H\u00f6cker","version":16,"id":"21773","lastModified":"1301901825000","name":"Bernhard H\u00f6cker","type":"Person","_key":"13693"} +{"label":"Jochen Malmsheimer","version":15,"id":"21774","lastModified":"1301903119000","name":"Jochen Malmsheimer","type":"Person","_key":"13694"} +{"label":"Hennes Bender","version":16,"id":"21775","lastModified":"1301901773000","name":"Hennes Bender","type":"Person","_key":"13695"} +{"label":"Eva Danner","version":16,"id":"21776","lastModified":"1301902013000","name":"Eva Danner","type":"Person","_key":"13696"} +{"label":"Rolf Buschpeter","version":15,"id":"21777","lastModified":"1301901912000","name":"Rolf Buschpeter","type":"Person","_key":"13697"} +{"label":"The Whole Ten Yards","description":"\"The Tulip\" Tudeski now spends his days compulsively cleaning his house and perfecting his culinary skills with his wife, Jill, a purported assassin who has yet to pull off a clean hit. Suddenly, an uninvited and unwelcome connection to their past unexpectedly shows up on Jimmy and Jill's doorstep: it's Oz, and he's begging them to help him rescue his wife Cynthia.","id":"2122","runtime":98,"imdbId":"tt0327247","version":166,"lastModified":"1301902222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/321\/4d58b1337b9aa15cf6004321\/the-whole-ten-yards-mid.jpg","studio":"Cheyenne Enterprises","genre":"Action","title":"The Whole Ten Yards","releaseDate":1094688000000,"language":"en","tagline":"They missed each other. This time, their aim is better.","type":"Movie","_key":"13698"} +{"label":"Howard Deutch","version":51,"id":"26502","lastModified":"1301901285000","name":"Howard Deutch","type":"Person","_key":"13699"} +{"label":"Johnny Messner","version":29,"id":"21798","lastModified":"1301901575000","name":"Johnny Messner","type":"Person","_key":"13700"} +{"label":"Me, Myself & Irene","description":"Jim Carrey plays a Rhode Island State Trooper named Charlie who has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.","id":"2123","runtime":116,"imdbId":"tt0183505","version":199,"lastModified":"1301907765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4bc915b1017a3c57fe0082a6\/me-myself-irene-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Me, Myself & Irene","releaseDate":971913600000,"language":"en","tagline":"From gentle to mental.","type":"Movie","_key":"13701"} +{"label":"Mongo Brownlee","version":21,"id":"21802","lastModified":"1301901826000","name":"Mongo Brownlee","type":"Person","_key":"13702"} +{"label":"Kate Forster","version":20,"id":"21803","lastModified":"1301901550000","name":"Kate Forster","type":"Person","_key":"13703"} +{"label":"Jerod Mixon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/119\/4c9df7965e73d6704e000119\/jerod-mixon-profile.jpg","version":24,"birthday":"359503200000","id":"21804","lastModified":"1301901561000","name":"Jerod Mixon","type":"Person","_key":"13704"} +{"label":"Color of Night","description":"When New York psychiatrist Bill Capa visits Los Angeles to take over his murdered colleague's therapy group, he finds himself embroiled in the thick of a mystery when he bumps into Rose and begins a torrid affair.","id":"2124","runtime":121,"imdbId":"tt0109456","version":150,"lastModified":"1301902200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4cf2b3987b9aa1490400000e\/color-of-night-mid.jpg","studio":"UFA Universum-Film AG","genre":"Crime","title":"Color of Night","releaseDate":786844800000,"language":"en","type":"Movie","_key":"13705"} +{"label":"Richard Rush","version":27,"id":"21806","lastModified":"1301901570000","name":"Richard Rush","type":"Person","_key":"13706"} +{"label":"Jane March","version":30,"id":"21817","lastModified":"1301901317000","name":"Jane March","type":"Person","_key":"13707"} +{"label":"Lesley Ann Warren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ae\/4ca34a417b9aa1578a0007ae\/lesley-ann-warren-profile.jpg","version":51,"id":"21818","lastModified":"1301901453000","name":"Lesley Ann Warren","type":"Person","_key":"13708"} +{"label":"Wedlock","description":"No overview found.","id":"2125","runtime":101,"imdbId":"tt0103239","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/wedlock","version":120,"lastModified":"1301912464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afa\/4be64d2b017a3c35bf000afa\/wedlock-mid.jpg","studio":"HBO Films","genre":"Action","title":"Wedlock","releaseDate":684028800000,"language":"en","type":"Movie","_key":"13709"} +{"label":"Lewis Teague","version":41,"id":"21819","lastModified":"1301901326000","name":"Lewis Teague","type":"Person","_key":"13710"} +{"label":"I Love You Baby","description":"No overview found.","id":"2126","runtime":103,"imdbId":"tt0240601","version":97,"lastModified":"1301907435000","studio":"Warner Bros. Pictures","genre":"Thriller","title":"I Love You Baby","releaseDate":956188800000,"language":"en","type":"Movie","_key":"13711"} +{"label":"Nick Lyon","version":26,"id":"21825","lastModified":"1301901690000","name":"Nick Lyon","type":"Person","_key":"13712"} +{"label":"Mark Keller","version":25,"id":"21831","lastModified":"1301901501000","name":"Mark Keller","type":"Person","_key":"13713"} +{"label":"Jasmin Gerat","version":25,"id":"21832","lastModified":"1301901459000","name":"Jasmin Gerat","type":"Person","_key":"13714"} +{"label":"Burkhard Driest","version":22,"id":"21833","lastModified":"1301902023000","name":"Burkhard Driest","type":"Person","_key":"13715"} +{"label":"Katja Burkard","version":17,"id":"21834","lastModified":"1301903119000","name":"Katja Burkard","type":"Person","_key":"13716"} +{"label":"Wolfram Kons","version":16,"id":"21835","lastModified":"1301903119000","name":"Wolfram Kons","type":"Person","_key":"13717"} +{"label":"Ralph Morgenstern","version":20,"id":"21836","lastModified":"1301902019000","name":"Ralph Morgenstern","type":"Person","_key":"13718"} +{"label":"Peter Rappengl\u00fcck","version":19,"id":"21837","lastModified":"1301902023000","name":"Peter Rappengl\u00fcck","type":"Person","_key":"13719"} +{"label":"Carlo Thr\u00e4nhardt","version":18,"id":"21838","lastModified":"1301902026000","name":"Carlo Thr\u00e4nhardt","type":"Person","_key":"13720"} +{"label":"Hostile Waters","description":"No overview found.","id":"2131","runtime":94,"imdbId":"tt0119320","trailer":"http:\/\/www.youtube.com\/watch?v=-rvB6lpbUzg","version":85,"lastModified":"1301903878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e06\/4d4cb5c75e73d617bd001e06\/hostile-waters-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Hostile Waters","releaseDate":877132800000,"language":"en","type":"Movie","_key":"13721"} +{"label":"David Drury","version":21,"id":"21839","lastModified":"1301901976000","name":"David Drury","type":"Person","_key":"13722"} +{"label":"Regina Taylor","version":26,"id":"21848","lastModified":"1301903118000","name":"Regina Taylor","type":"Person","_key":"13723"} +{"label":"Totally Blonde","description":"No overview found.","id":"2132","runtime":94,"imdbId":"tt0200954","version":150,"lastModified":"1301912420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d1\/4d1cadd27b9aa17a930005d1\/totally-blonde-mid.jpg","studio":"Splendid Pictures","genre":"Comedy","title":"Totally Blonde","releaseDate":978307200000,"language":"en","type":"Movie","_key":"13724"} +{"label":"Andrew Van Slee","version":23,"id":"21849","lastModified":"1301901565000","name":"Andrew Van Slee","type":"Person","_key":"13725"} +{"label":"Krista Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d0\/4be09c48017a3c35bf0004d0\/krista-allen-profile.jpg","version":38,"id":"21858","lastModified":"1302044062000","name":"Krista Allen","type":"Person","_key":"13726"} +{"label":"Maeve Quinlan","version":23,"id":"21859","lastModified":"1301901785000","name":"Maeve Quinlan","type":"Person","_key":"13727"} +{"label":"Michael Bubl\u00e9","version":22,"id":"21860","lastModified":"1301903118000","name":"Michael Bubl\u00e9","type":"Person","_key":"13728"} +{"label":"Brody Hutzler","version":19,"id":"21861","lastModified":"1301903118000","name":"Brody Hutzler","type":"Person","_key":"13729"} +{"label":"Charlene Tilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35c\/4c4d94cb7b9aa1238100035c\/charlene-tilton-profile.jpg","version":29,"birthday":"-318301200000","id":"21862","birthplace":"San Diego, CA","lastModified":"1301901337000","name":"Charlene Tilton","type":"Person","_key":"13730"} +{"label":"The Perfect Storm","description":"In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail. Magnificent foreshadowing and anticipation fill this true-life drama while minute details of the fishing boats, their gear and the weather are juxtaposed with the sea adventure.","id":"2133","runtime":130,"imdbId":"tt0177971","trailer":"http:\/\/www.youtube.com\/watch?v=gVwuy-4TzU8","version":198,"lastModified":"1301901773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4c55c1495e73d63a6c000041\/the-perfect-storm-mid.jpg","studio":"Baltimore Pictures","genre":"Action","title":"The Perfect Storm","releaseDate":964051200000,"language":"en","tagline":"The storm is coming.","type":"Movie","_key":"13731"} +{"label":"Allen Payne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/371\/4d533ea17b9aa13aba012371\/allen-payne-profile.jpg","version":36,"id":"32486","lastModified":"1301976020000","name":"Allen Payne","type":"Person","_key":"13732"} +{"label":"The Time Machine","description":"Responding to an invitation issued five days earlier, five gentlemen meet at the London residence of their mutual friend, scientist George, who, having arrived late and disheveled, recounts the last five days, beginning with the group's 31 December 1899 meeting: George explains that he has been working for two years to prove the possibility of movement within the fourth dimension, time, by creating a time machine to carry man into the future or past.","id":"2134","runtime":103,"imdbId":"tt0054387","trailer":"http:\/\/www.youtube.com\/watch?v=A9miqKm0aB0","version":161,"lastModified":"1301907113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e8\/4bc915b9017a3c57fe0082e8\/the-time-machine-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Action","title":"The Time Machine","releaseDate":-295833600000,"language":"en","tagline":"You Will Orbit into the Fantastic Future!","type":"Movie","_key":"13733"} +{"label":"George Pal","version":31,"id":"21869","lastModified":"1301901408000","name":"George Pal","type":"Person","_key":"13734"} +{"label":"Yvette Mimieux","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/110\/4c24f2b57b9aa1446a000110\/yvette-mimieux-profile.jpg","version":26,"id":"21876","lastModified":"1301901197000","name":"Yvette Mimieux","type":"Person","_key":"13735"} +{"label":"Sebastian Cabot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4caf70987b9aa12641000029\/sebastian-cabot-profile.jpg","version":49,"id":"21877","lastModified":"1301901144000","name":"Sebastian Cabot","type":"Person","_key":"13736"} +{"label":"Doris Lloyd","version":35,"birthday":"-2319325200000","id":"21878","birthplace":"Liverpool, England, UK","lastModified":"1301901781000","name":"Doris Lloyd","type":"Person","_key":"13737"} +{"label":"The Time Machine","description":"Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.","id":"2135","runtime":96,"imdbId":"tt0268695","trailer":"http:\/\/www.youtube.com\/watch?v=Ry_s2Pk1DHI","homepage":"http:\/\/timemachine.countingdown.com\/","version":202,"lastModified":"1301901815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f1\/4bc915bc017a3c57fe0082f1\/the-time-machine-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Time Machine","releaseDate":1016668800000,"language":"en","tagline":"The greatest adventure THROUGH all time!","type":"Movie","_key":"13738"} +{"label":"Simon Wells","version":40,"id":"21879","lastModified":"1301901395000","name":"Simon Wells","type":"Person","_key":"13739"} +{"label":"Samantha Mumba","version":20,"id":"97049","lastModified":"1301903011000","name":"Samantha Mumba","type":"Person","_key":"13740"} +{"label":"Laura Kirk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7e\/4d442b065e73d66f59000b7e\/laura-kirk-profile.jpg","version":26,"id":"21881","lastModified":"1301901367000","name":"Laura Kirk","type":"Person","_key":"13741"} +{"label":"Josh Stamberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b45\/4d442ace5e73d67063000b45\/josh-stamberg-profile.jpg","version":31,"id":"21882","lastModified":"1301901281000","name":"Josh Stamberg","type":"Person","_key":"13742"} +{"label":"Gib Gas - Ich will Spass","description":"No overview found.","id":"2136","runtime":91,"imdbId":"tt0083999","version":52,"lastModified":"1301907423000","studio":"Constantin Film","genre":"Comedy","title":"Gib Gas - Ich will Spass","releaseDate":413078400000,"language":"en","type":"Movie","_key":"13743"} +{"label":"Nena","version":20,"id":"21890","lastModified":"1301901501000","name":"Nena","type":"Person","_key":"13744"} +{"label":"Markus M\u00f6rl","version":18,"id":"21889","lastModified":"1301901585000","name":"Markus M\u00f6rl","type":"Person","_key":"13745"} +{"label":"Enny Gerber","version":17,"id":"21895","lastModified":"1301901568000","name":"Enny Gerber","type":"Person","_key":"13746"} +{"label":"Karl Dall","version":23,"id":"21896","lastModified":"1301901568000","name":"Karl Dall","type":"Person","_key":"13747"} +{"label":"Peter Lengauer","version":17,"id":"21898","lastModified":"1301901658000","name":"Peter Lengauer","type":"Person","_key":"13748"} +{"label":"Cornelia Kraus","version":17,"id":"21899","lastModified":"1301901669000","name":"Cornelia Kraus","type":"Person","_key":"13749"} +{"label":"The Storm Riders","description":"Based on a comic book called Fung Wan (or Tin Ha), the movie stars Ekin Cheng as Wind and Aaron Kwok as Cloud. The plot involves two children, Whispering Wind and Striding Cloud, who become powerful warriors under the evil warlord Conquer's tutelage. They grow up serving as his subordinates, but a love triangle and an accident leads to a quest for retribution.","id":"2137","runtime":128,"imdbId":"tt0165499","version":118,"lastModified":"1301904389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d1\/4d32ed465e73d6335b0018d1\/fung-wan-hung-ba-tin-ha-mid.jpg","studio":"Golden Harvest Pictures","genre":"Eastern","title":"The Storm Riders","releaseDate":900720000000,"language":"en","type":"Movie","_key":"13750"} +{"label":"Wai-keung Lau","version":62,"id":"65994","lastModified":"1301901172000","name":"Wai-keung Lau","type":"Person","_key":"13751"} +{"label":"Aaron Kwok","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6f\/4d2139275e73d66b2d002a6f\/aaron-kwok-profile.jpg","version":41,"id":"21908","lastModified":"1301901232000","name":"Aaron Kwok","type":"Person","_key":"13752"} +{"label":"Ekin Cheng","version":68,"id":"21909","lastModified":"1302033950000","name":"Ekin Cheng","type":"Person","_key":"13753"} +{"label":"Kristy Yang","version":21,"id":"21910","lastModified":"1301901305000","name":"Kristy Yang","type":"Person","_key":"13754"} +{"label":"Qi Shu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c5\/4be2753c017a3c35b50006c5\/qi-shu-profile.jpg","version":70,"id":"21911","lastModified":"1302033938000","name":"Qi Shu","type":"Person","_key":"13755"} +{"label":"Michael Tse","version":24,"id":"21912","lastModified":"1301901602000","name":"Michael Tse","type":"Person","_key":"13756"} +{"label":"Rongguang Yu","version":37,"id":"21913","lastModified":"1301957818000","name":"Rongguang Yu","type":"Person","_key":"13757"} +{"label":"Alex Fong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae1\/4d04e0445e73d621a5002ae1\/alex-fong-profile.jpg","version":33,"id":"21914","lastModified":"1301922444000","name":"Alex Fong","type":"Person","_key":"13758"} +{"label":"Berlin Snuff","description":"No overview found.","id":"2138","runtime":33,"imdbId":"tt0298754","version":42,"lastModified":"1301907434000","studio":"Killing Pictures","genre":"Comedy","title":"Berlin Snuff","releaseDate":788918400000,"language":"en","type":"Movie","_key":"13759"} +{"label":"Harry Schwerdtfeger","version":16,"id":"21953","lastModified":"1301903115000","name":"Harry Schwerdtfeger","type":"Person","_key":"13760"} +{"label":"Hartmut Jacob","version":17,"id":"21954","lastModified":"1301901690000","name":"Hartmut Jacob","type":"Person","_key":"13761"} +{"label":"Thomas Sieper","version":18,"id":"21948","lastModified":"1301901684000","name":"Thomas Sieper","type":"Person","_key":"13762"} +{"label":"Klaus Heinemann","version":17,"id":"21955","lastModified":"1301901987000","name":"Klaus Heinemann","type":"Person","_key":"13763"} +{"label":"Mike Hess","version":17,"id":"21956","lastModified":"1301901825000","name":"Mike Hess","type":"Person","_key":"13764"} +{"label":"Andreas Walter","version":17,"id":"21957","lastModified":"1301901833000","name":"Andreas Walter","type":"Person","_key":"13765"} +{"label":"Cleopatra Jones and the Casino of Gold","description":"Cleopatra Jones (Tamara Dobson) investigates the disappearance of two friends in Hong Kong.","id":"2139","runtime":94,"imdbId":"tt0072791","version":85,"lastModified":"1301906324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/303\/4bc915be017a3c57fe008303\/cleopatra-jones-and-the-casino-of-gold-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Cleopatra Jones and the Casino of Gold","releaseDate":174268800000,"language":"en","type":"Movie","_key":"13766"} +{"label":"Charles Bail","version":19,"id":"21916","lastModified":"1301903118000","name":"Charles Bail","type":"Person","_key":"13767"} +{"label":"Tamara Dobson","version":20,"id":"21923","lastModified":"1301902031000","name":"Tamara Dobson","type":"Person","_key":"13768"} +{"label":"Ni Tien","version":18,"id":"21924","lastModified":"1301903118000","name":"Ni Tien","type":"Person","_key":"13769"} +{"label":"Albert Popwell","version":17,"id":"21925","lastModified":"1301903115000","name":"Albert Popwell","type":"Person","_key":"13770"} +{"label":"Caro Kenyatta","version":17,"id":"21926","lastModified":"1301903116000","name":"Caro Kenyatta","type":"Person","_key":"13771"} +{"label":"Shen Chan","version":16,"id":"21927","lastModified":"1301903118000","name":"Shen Chan","type":"Person","_key":"13772"} +{"label":"Christopher Hunt","version":17,"id":"21928","lastModified":"1301903120000","name":"Christopher Hunt","type":"Person","_key":"13773"} +{"label":"Chen Chi Lin","version":16,"id":"21929","lastModified":"1301903120000","name":"Chen Chi Lin","type":"Person","_key":"13774"} +{"label":"Locke Hua Liu","version":17,"id":"21930","lastModified":"1301902024000","name":"Locke Hua Liu","type":"Person","_key":"13775"} +{"label":"Kiss of the Dragon","description":"Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.","id":"2140","runtime":98,"imdbId":"tt0271027","trailer":"http:\/\/www.youtube.com\/watch?v=r0niCjov11A","version":603,"lastModified":"1301912276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/311\/4bc915bf017a3c57fe008311\/kiss-of-the-dragon-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Kiss of the Dragon","releaseDate":1003968000000,"language":"en","type":"Movie","_key":"13776"} +{"label":"Chris Nahon","version":33,"id":"21931","lastModified":"1301901581000","name":"Chris Nahon","type":"Person","_key":"13777"} +{"label":"Max Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/381\/4c43909c5e73d60f39000381\/max-ryan-profile.jpg","version":42,"id":"21942","lastModified":"1301901526000","name":"Max Ryan","type":"Person","_key":"13778"} +{"label":"Ric Young","version":28,"id":"21943","lastModified":"1301901669000","name":"Ric Young","type":"Person","_key":"13779"} +{"label":"Burt Kwouk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/316\/4cb5ccf57b9aa138d7000316\/burt-kwouk-profile.jpg","version":37,"id":"21944","lastModified":"1301901714000","name":"Burt Kwouk","type":"Person","_key":"13780"} +{"label":"Laurence Ashley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd7\/4d27e9d07b9aa134e0001dd7\/laurence-ashley-profile.jpg","version":25,"id":"21945","lastModified":"1301901372000","name":"Laurence Ashley","type":"Person","_key":"13781"} +{"label":"James Dean","description":"The man behind the legend and a knowing look at the 1950's Hollywood are revealed in this dynamic bioepic of the meteoric star whose troubled life echoed his gut-grabbing performances in East of Eden, Rebel Without A Cause and Giant.","id":"2141","runtime":120,"imdbId":"tt0240628","trailer":"http:\/\/www.youtube.com\/watch?v=fqosam94RJ0","version":141,"lastModified":"1301912229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31a\/4bc915c0017a3c57fe00831a\/james-dean-an-invented-life-mid.jpg","studio":"Five Mile River Films","genre":"Drama","title":"James Dean","releaseDate":996883200000,"language":"en","tagline":"The stars that burn brightest burn quickest","type":"Movie","_key":"13782"} +{"label":"Valentina Cervi","version":30,"id":"21965","lastModified":"1301901409000","name":"Valentina Cervi","type":"Person","_key":"13783"} +{"label":"Joanne Linville","version":22,"id":"16051","lastModified":"1301901691000","name":"Joanne Linville","type":"Person","_key":"13784"} +{"label":"Samuel Gould","version":21,"id":"21967","lastModified":"1301901683000","name":"Samuel Gould","type":"Person","_key":"13785"} +{"label":"Cop Land","description":"Freddy Heflin (Stallone) is a simple, small-town Sheriff who had big dreams of becoming a New York City cop before a heroic deed left him deaf in one ear. Though he saved the life of the woman he loves (Sciorra), she went on to marry someone else. But everything in Freddy's life is about to change after he uncovers evidence of a murder, fakes suicide and police tampering.","id":"2142","runtime":116,"imdbId":"tt0118887","trailer":"http:\/\/www.youtube.com\/watch?v=1945","version":307,"lastModified":"1301912213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cc\/4c15f5b67b9aa105ce0000cc\/cop-land-mid.jpg","studio":"Across the River Productions","genre":"Action","title":"Cop Land","releaseDate":870825600000,"language":"en","type":"Movie","_key":"13786"} +{"label":"Carla's Song","description":"No overview found.","id":"2143","runtime":125,"imdbId":"tt0115832","version":139,"lastModified":"1301905237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4c9388ec5e73d63a7800002a\/carla-s-song-mid.jpg","studio":"Alta Films S.A.","genre":"Drama","title":"Carla's Song","releaseDate":843177600000,"language":"en","tagline":"A dream called freedom. A nightmare called Nicaragua.","type":"Movie","_key":"13787"} +{"label":"Oyanka Cabezas","version":19,"id":"21977","lastModified":"1301901809000","name":"Oyanka Cabezas","type":"Person","_key":"13788"} +{"label":"Louise Goodall","version":21,"id":"21978","lastModified":"1301901797000","name":"Louise Goodall","type":"Person","_key":"13789"} +{"label":"Salvador Espinoza","version":19,"id":"21979","lastModified":"1301901825000","name":"Salvador Espinoza","type":"Person","_key":"13790"} +{"label":"Margaret McAdam","version":19,"id":"21980","lastModified":"1301901810000","name":"Margaret McAdam","type":"Person","_key":"13791"} +{"label":"Subash Singh Pall","version":17,"id":"132886","lastModified":"1301902678000","name":"Subash Singh Pall","type":"Person","_key":"13792"} +{"label":"Stewart Preston","version":18,"id":"132887","lastModified":"1301902721000","name":"Stewart Preston","type":"Person","_key":"13793"} +{"label":"Richard Loza","version":18,"id":"132888","lastModified":"1301903061000","name":"Richard Loza","type":"Person","_key":"13794"} +{"label":"Greg Friel","version":18,"id":"132889","lastModified":"1301903040000","name":"Greg Friel","type":"Person","_key":"13795"} +{"label":"Andy Townsley","version":18,"id":"132890","lastModified":"1301902715000","name":"Andy Townsley","type":"Person","_key":"13796"} +{"label":"Alicia Devine","version":18,"id":"132891","lastModified":"1301902712000","name":"Alicia Devine","type":"Person","_key":"13797"} +{"label":"John Paul Leach","version":18,"id":"132892","lastModified":"1301902715000","name":"John Paul Leach","type":"Person","_key":"13798"} +{"label":"Norma Rivera","version":17,"id":"132893","lastModified":"1301902661000","name":"Norma Rivera","type":"Person","_key":"13799"} +{"label":"Jos\u00e9 Meneses","version":17,"id":"132894","lastModified":"1301902636000","name":"Jos\u00e9 Meneses","type":"Person","_key":"13800"} +{"label":"Rosa Amelia L\u00f3pez","version":17,"id":"132895","lastModified":"1301902638000","name":"Rosa Amelia L\u00f3pez","type":"Person","_key":"13801"} +{"label":"Keila Rodriguez","version":17,"id":"132896","lastModified":"1301902636000","name":"Keila Rodriguez","type":"Person","_key":"13802"} +{"label":"Josefa Calderon De Calero","version":17,"id":"132897","lastModified":"1301902563000","name":"Josefa Calderon De Calero","type":"Person","_key":"13803"} +{"label":"Azucena Figueroa","version":17,"id":"132898","lastModified":"1301902563000","name":"Azucena Figueroa","type":"Person","_key":"13804"} +{"label":"Tomasa Garc\u00eda","version":17,"id":"132899","lastModified":"1301902748000","name":"Tomasa Garc\u00eda","type":"Person","_key":"13805"} +{"label":"Alcides Gonz\u00e1lez","version":18,"id":"132900","lastModified":"1301903015000","name":"Alcides Gonz\u00e1lez","type":"Person","_key":"13806"} +{"label":"Manuela Guevara","version":17,"id":"132901","lastModified":"1301902746000","name":"Manuela Guevara","type":"Person","_key":"13807"} +{"label":"Karla Obando","version":17,"id":"132902","lastModified":"1301902637000","name":"Karla Obando","type":"Person","_key":"13808"} +{"label":"Santos Olivas","version":18,"id":"132903","lastModified":"1301903064000","name":"Santos Olivas","type":"Person","_key":"13809"} +{"label":"Alison Paula Rizo","version":17,"id":"132904","lastModified":"1301902672000","name":"Alison Paula Rizo","type":"Person","_key":"13810"} +{"label":"Elba Aurora Talavera","version":17,"id":"132905","lastModified":"1301902914000","name":"Elba Aurora Talavera","type":"Person","_key":"13811"} +{"label":"Luis Talavera","version":17,"id":"132906","lastModified":"1301902637000","name":"Luis Talavera","type":"Person","_key":"13812"} +{"label":"Jimmy Jose Arguello","version":17,"id":"132907","lastModified":"1301902659000","name":"Jimmy Jose Arguello","type":"Person","_key":"13813"} +{"label":"Jos\u00e9 Alberto Avenda\u00f1o","version":18,"id":"132908","lastModified":"1301902708000","name":"Jos\u00e9 Alberto Avenda\u00f1o","type":"Person","_key":"13814"} +{"label":"Ana Victoria Borge","version":17,"id":"132909","lastModified":"1301902634000","name":"Ana Victoria Borge","type":"Person","_key":"13815"} +{"label":"Junior Escobar","version":17,"id":"132910","lastModified":"1301902653000","name":"Junior Escobar","type":"Person","_key":"13816"} +{"label":"Alma Bianco Medina","version":18,"id":"132911","lastModified":"1301902690000","name":"Alma Bianco Medina","type":"Person","_key":"13817"} +{"label":"Tatiana Miranda","version":17,"id":"132912","lastModified":"1301902650000","name":"Tatiana Miranda","type":"Person","_key":"13818"} +{"label":"Ram\u00f3n Monterrey","version":17,"id":"132913","lastModified":"1301902614000","name":"Ram\u00f3n Monterrey","type":"Person","_key":"13819"} +{"label":"Santiago Neira","version":17,"id":"132914","lastModified":"1301902622000","name":"Santiago Neira","type":"Person","_key":"13820"} +{"label":"Belkis Ramirez","version":17,"id":"132915","lastModified":"1301902646000","name":"Belkis Ramirez","type":"Person","_key":"13821"} +{"label":"Mar\u00eda Jos\u00e9 Silva","version":17,"id":"132916","lastModified":"1301902888000","name":"Mar\u00eda Jos\u00e9 Silva","type":"Person","_key":"13822"} +{"label":"Amy Bank","version":17,"id":"132917","lastModified":"1301902590000","name":"Amy Bank","type":"Person","_key":"13823"} +{"label":"Belinda Forbes","version":17,"id":"132918","lastModified":"1301902637000","name":"Belinda Forbes","type":"Person","_key":"13824"} +{"label":"Mark Forget","version":17,"id":"132919","lastModified":"1301902637000","name":"Mark Forget","type":"Person","_key":"13825"} +{"label":"Tom Lee","version":18,"id":"132920","lastModified":"1301903078000","name":"Tom Lee","type":"Person","_key":"13826"} +{"label":"Micky Mckay","version":17,"id":"132921","lastModified":"1301902640000","name":"Micky Mckay","type":"Person","_key":"13827"} +{"label":"Ruth Pacheco","version":18,"id":"132922","lastModified":"1301902697000","name":"Ruth Pacheco","type":"Person","_key":"13828"} +{"label":"Richard Senghas","version":18,"id":"132923","lastModified":"1301902701000","name":"Richard Senghas","type":"Person","_key":"13829"} +{"label":"Anita Setright","version":17,"id":"132924","lastModified":"1301902585000","name":"Anita Setright","type":"Person","_key":"13830"} +{"label":"Laura Tredway","version":17,"id":"132925","lastModified":"1301902406000","name":"Laura Tredway","type":"Person","_key":"13831"} +{"label":"Marcelino Cruz","version":19,"id":"132926","lastModified":"1301902681000","name":"Marcelino Cruz","type":"Person","_key":"13832"} +{"label":"Alberto Flores","version":19,"id":"132927","lastModified":"1301902681000","name":"Alberto Flores","type":"Person","_key":"13833"} +{"label":"Roberto Flores","version":17,"id":"132928","lastModified":"1301902748000","name":"Roberto Flores","type":"Person","_key":"13834"} +{"label":"Narciso Gonz\u00e1lez","version":17,"id":"132929","lastModified":"1301902748000","name":"Narciso Gonz\u00e1lez","type":"Person","_key":"13835"} +{"label":"Claire Hemphill","version":19,"id":"132930","lastModified":"1301902535000","name":"Claire Hemphill","type":"Person","_key":"13836"} +{"label":"Felipe Hernandez","version":18,"id":"132931","lastModified":"1301902532000","name":"Felipe Hernandez","type":"Person","_key":"13837"} +{"label":"Ford Kiernan","version":19,"id":"132932","lastModified":"1301902748000","name":"Ford Kiernan","type":"Person","_key":"13838"} +{"label":"Ram\u00f3n Lozano","version":17,"id":"132933","lastModified":"1301902406000","name":"Ram\u00f3n Lozano","type":"Person","_key":"13839"} +{"label":"Thomas McTaggart","version":18,"id":"132934","lastModified":"1301902470000","name":"Thomas McTaggart","type":"Person","_key":"13840"} +{"label":"One Night at McCool's","description":"Every man has a different recollection of the beautiful young woman who wreaked havoc on their lives during one heated night.","id":"2144","runtime":93,"imdbId":"tt0203755","version":283,"lastModified":"1301912167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e87\/4d91162e7b9aa1674f003e87\/one-night-at-mccool-s-mid.jpg","studio":"Furthur Films","genre":"Action","title":"One Night at McCool's","releaseDate":988243200000,"language":"en","type":"Movie","_key":"13841"} +{"label":"Harald Zwart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41e\/4c7a27235e73d613d300041e\/harald-zwart-profile.jpg","version":46,"birthday":"-142131600000","id":"21981","birthplace":"Netherlands","lastModified":"1302063585000","name":"Harald Zwart","type":"Person","_key":"13842"} +{"label":"Mary Jo Smith","version":23,"id":"21985","lastModified":"1301901338000","name":"Mary Jo Smith","type":"Person","_key":"13843"} +{"label":"Reba McEntire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/034\/4c9bda555e73d66d1d000034\/reba-mcentire-profile.jpg","version":35,"id":"21986","birthplace":"Los Angeles, California, USA","lastModified":"1301901116000","name":"Reba McEntire","type":"Person","_key":"13844"} +{"label":"Der Formel Eins Film","description":"No overview found.","id":"2145","runtime":97,"imdbId":"tt0089162","version":54,"lastModified":"1301905704000","studio":"Bavaria Film International","genre":"Comedy","title":"Der Formel Eins Film","releaseDate":489369600000,"language":"en","type":"Movie","_key":"13845"} +{"label":"Sissy Kelling","version":18,"id":"21993","lastModified":"1301903118000","name":"Sissy Kelling","type":"Person","_key":"13846"} +{"label":"Frank Meyer-Brockmann","version":17,"id":"21994","lastModified":"1301902017000","name":"Frank Meyer-Brockmann","type":"Person","_key":"13847"} +{"label":"Dietmar B\u00e4r","version":23,"id":"21996","lastModified":"1301901447000","name":"Dietmar B\u00e4r","type":"Person","_key":"13848"} +{"label":"Falco","version":20,"id":"21990","lastModified":"1301901563000","name":"Falco","type":"Person","_key":"13849"} +{"label":"Limahl","version":18,"id":"21991","lastModified":"1301901781000","name":"Limahl","type":"Person","_key":"13850"} +{"label":"Pia Zadora","version":21,"id":"21992","lastModified":"1301903117000","name":"Pia Zadora","type":"Person","_key":"13851"} +{"label":"Kurt Raab","version":28,"id":"21997","lastModified":"1301901803000","name":"Kurt Raab","type":"Person","_key":"13852"} +{"label":"Rolf Zacher","version":25,"id":"21998","lastModified":"1301901666000","name":"Rolf Zacher","type":"Person","_key":"13853"} +{"label":"Die Toten Hosen","version":24,"id":"21999","lastModified":"1301901506000","name":"Die Toten Hosen","type":"Person","_key":"13854"} +{"label":"The Flickering Flame","description":"No overview found.","id":"2147","runtime":52,"imdbId":"tt0130700","version":34,"lastModified":"1301302605000","genre":"Documentary","title":"The Flickering Flame","releaseDate":820454400000,"language":"en","type":"Movie","_key":"13855"} +{"label":"The Cotton Club","description":"The Cotton Club was a famous night club in Harlem. The story follows the people that visited the club, those that ran it, and is peppered with the Jazz music that made it so famous","id":"2148","runtime":127,"imdbId":"tt0087089","trailer":"http:\/\/www.youtube.com\/watch?v=fru1zRGhs-Y","version":309,"lastModified":"1301908382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33b\/4bc915c5017a3c57fe00833b\/the-cotton-club-mid.jpg","studio":"PSO International","genre":"Crime","title":"The Cotton Club","releaseDate":471830400000,"language":"en","type":"Movie","_key":"13856"} +{"label":"Gregory Hines","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/395\/4d8d48237b9aa16755000395\/gregory-hines-profile.jpg","version":63,"birthday":"-753584400000","id":"66804","birthplace":"New York City, New York, USA","lastModified":"1301901378000","name":"Gregory Hines","type":"Person","_key":"13857"} +{"label":"Body of Evidence","description":"After her much older, wealthy lover dies following an intense session of sadomasochistic sex, dominatrix Rebecca Carlson (Madonna) finds herself charged with his murder. Desperate for freedom, she slowly seduces her attorney, Frank Delaney (Willem Dafoe), and embarks on a dark and dangerous affair with him.","id":"2149","runtime":99,"imdbId":"tt0106453","version":135,"lastModified":"1301906110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/344\/4bc915c5017a3c57fe008344\/body-of-evidence-mid.jpg","studio":"De Laurentiis","genre":"Crime","title":"Body of Evidence","releaseDate":727056000000,"language":"en","type":"Movie","_key":"13858"} +{"label":"Uli Edel","version":48,"id":"15868","lastModified":"1301901206000","name":"Uli Edel","type":"Person","_key":"13859"} +{"label":"Lillian Lehman","version":16,"id":"22516","lastModified":"1301901930000","name":"Lillian Lehman","type":"Person","_key":"13860"} +{"label":"The Shrek Collection","description":"The fairytale story of a large, strong, solitude-loving, intimidating ogre named Shrek, and his friends.","id":"2150","version":262,"lastModified":"1301912087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bda8f58017a3c5d93000063\/the-shrek-collection-mid.jpg","title":"The Shrek Collection","language":"en","type":"Movie","_key":"13861"} +{"label":"Man with the Screaming Brain","description":"In 2005 Bruce Campbell directed his first ever feature film. The film stars Bruce Campbell as a wealthy CEO who travels to Bulgaria after the fall of communism. His plan was to do business for his U.S. drug company yet he is shortly caught up in some dirty situations and ends up with a brain transplant after his brain is severely damaged. Slapstick B-Movie science fiction on a low budget.","id":"2151","runtime":90,"imdbId":"tt0365478","trailer":"http:\/\/www.youtube.com\/watch?v=132","version":111,"lastModified":"1301905675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/352\/4bc915c6017a3c57fe008352\/man-with-the-screaming-brain-mid.jpg","studio":"ApolloProScreen","genre":"Comedy","title":"Man with the Screaming Brain","releaseDate":1112486400000,"language":"en","type":"Movie","_key":"13862"} +{"label":"Tamara Gorski","version":20,"id":"22014","lastModified":"1301901503000","name":"Tamara Gorski","type":"Person","_key":"13863"} +{"label":"Antoinette Byron","version":17,"id":"22015","lastModified":"1301901829000","name":"Antoinette Byron","type":"Person","_key":"13864"} +{"label":"Vladimir Kolev","version":17,"id":"22016","lastModified":"1301901992000","name":"Vladimir Kolev","type":"Person","_key":"13865"} +{"label":"Valentin Giasbeily","version":16,"id":"22017","lastModified":"1301903120000","name":"Valentin Giasbeily","type":"Person","_key":"13866"} +{"label":"Velizar Binev","version":25,"id":"22018","lastModified":"1301901574000","name":"Velizar Binev","type":"Person","_key":"13867"} +{"label":"Raicho Vasilev","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26b\/4d2089095e73d66b3000226b\/raicho-vasilev-profile.jpg","version":30,"id":"22019","lastModified":"1301901333000","name":"Raicho Vasilev","type":"Person","_key":"13868"} +{"label":"Dixie Chicks: Shut Up and Sing","description":"Shut Up and Sing is a documentary about the country band from Texas called the Dixie Chicks and how one tiny comment against President Bush dropped their number one hit off the charts and caused fans to hate them, destroy their CD\u2019s, and protest at their concerts. A film about freedom of speech gone out of control and the three girls lives that were forever changed by a small anti-Bush comment","id":"2152","runtime":93,"imdbId":"tt0811136","version":131,"lastModified":"1301904970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/357\/4bc915c6017a3c57fe008357\/dixie-chicks-shut-up-and-sing-mid.jpg","studio":"The Weinstein Company","genre":"Documentary","title":"Dixie Chicks: Shut Up and Sing","releaseDate":1158019200000,"language":"en","type":"Movie","_key":"13869"} +{"label":"Barbara Kopple","version":25,"id":"22020","lastModified":"1301903118000","name":"Barbara Kopple","type":"Person","_key":"13870"} +{"label":"Natalie Maines","version":16,"id":"22023","lastModified":"1301903117000","name":"Natalie Maines","type":"Person","_key":"13871"} +{"label":"Emily Robison","version":18,"id":"22024","lastModified":"1301901830000","name":"Emily Robison","type":"Person","_key":"13872"} +{"label":"Martie Maguire","version":17,"id":"22025","lastModified":"1301903118000","name":"Martie Maguire","type":"Person","_key":"13873"} +{"label":"Rick Rubin","version":19,"id":"22026","lastModified":"1301901829000","name":"Rick Rubin","type":"Person","_key":"13874"} +{"label":"Simon Renshaw","version":17,"id":"22027","lastModified":"1301901829000","name":"Simon Renshaw","type":"Person","_key":"13875"} +{"label":"The Driver","description":"A specialist getaway drive is relentlessly pursued by a detective.","id":"2153","runtime":91,"imdbId":"tt0077474","version":132,"lastModified":"1301903598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/375\/4bc915ca017a3c57fe008375\/the-driver-mid.jpg","studio":"EMI Films Ltd.","genre":"Action","title":"The Driver","releaseDate":268876800000,"language":"en","type":"Movie","_key":"13876"} +{"label":"Joseph Walsh","version":20,"id":"22035","lastModified":"1301903120000","name":"Joseph Walsh","type":"Person","_key":"13877"} +{"label":"Ryan O'Neal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/060\/4ca644f15e73d643ef000060\/ryan-o-neal-profile.jpg","version":46,"id":"31070","lastModified":"1301901236000","name":"Ryan O'Neal","type":"Person","_key":"13878"} +{"label":"The Dark Side of The Moon","description":"No overview found.","id":"2154","runtime":96,"imdbId":"tt0099364","trailer":"http:\/\/www.youtube.com\/watch?v=ueQLIiXOC0c","version":288,"lastModified":"1301912007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37e\/4bc915ca017a3c57fe00837e\/the-dark-side-of-the-moon-mid.jpg","studio":"Wildstreet Pictures","genre":"Action","title":"The Dark Side of The Moon","releaseDate":631152000000,"language":"en","type":"Movie","_key":"13879"} +{"label":"D.J. Webster","version":16,"id":"22036","lastModified":"1301901439000","name":"D.J. Webster","type":"Person","_key":"13880"} +{"label":"Will Bledsoe","version":19,"id":"22049","lastModified":"1301901394000","name":"Will Bledsoe","type":"Person","_key":"13881"} +{"label":"Camilla More","version":17,"id":"22050","lastModified":"1301901453000","name":"Camilla More","type":"Person","_key":"13882"} +{"label":"Wendy MacDonald","version":17,"id":"22052","lastModified":"1301901983000","name":"Wendy MacDonald","type":"Person","_key":"13883"} +{"label":"Alan Blumenfeld","version":20,"id":"22053","lastModified":"1301901936000","name":"Alan Blumenfeld","type":"Person","_key":"13884"} +{"label":"Ken Lesco","version":16,"id":"22054","lastModified":"1301901936000","name":"Ken Lesco","type":"Person","_key":"13885"} +{"label":"Reindeer Games","description":"A sa sortie de prison, Rudy Duncan n'aspire qu'\u00e0 une chose : prendre un nouveau d\u00e9part dans la vie au c\u00f4t\u00e9 d'Ashley, la fille de ses r\u00eaves, et si possible quelques vacances... Mais ses bonnes r\u00e9solutions et son bonheur tout neuf se heurtent \u00e0 un serieux obstacle : le fr\u00e8re dejant\u00e9 d'Ashley, Gabriel, et sa bande de malfrats. Pour d\u00e9valiser un casino, ils ont besoin de l'aide de Rudy dont la connaissance de l'\u00e9tablissement est vitale pour la r\u00e9ussite du plan. Rudy doit-il renouer avec son pass\u00e9 de","id":"2155","runtime":124,"imdbId":"tt0184858","version":283,"lastModified":"1301911988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/390\/4bc915cb017a3c57fe008390\/reindeer-games-mid.jpg","studio":"Dimension","genre":"Action","title":"Reindeer Games","releaseDate":951436800000,"language":"en","type":"Movie","_key":"13886"} +{"label":"Net Games","description":"The successful publicist Adam Vance of the SFC is in the middle of a campaign to get an important Japanese client and is needy of sex because his traumatized wife Jennifer Vance was raped one year ago and is totally frigid, refusing to have sex. His close friend and colleague Ray Walters suggests Adam to visit the porn site cyber chat.net, where lonely people have erotic conversation. Adam meets Angel, a luscious woman and hacker while his wife is visiting her rapist in the prison with her thera","id":"2156","runtime":95,"imdbId":"tt0330203","version":93,"lastModified":"1301904454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c3\/4caa8f647b9aa17aca0007c3\/net-games-mid.jpg","studio":"Extraordinary Films","genre":"Suspense","title":"Net Games","releaseDate":1044144000000,"language":"en","type":"Movie","_key":"13887"} +{"label":"Lala Sloatman","version":26,"id":"22072","lastModified":"1301901959000","name":"Lala Sloatman","type":"Person","_key":"13888"} +{"label":"Monique Demers","version":16,"id":"22073","lastModified":"1301903119000","name":"Monique Demers","type":"Person","_key":"13889"} +{"label":"Vanessa Lee Evigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/359\/4c9526505e73d63a79000359\/vanessa-lee-evigan-profile.jpg","version":24,"id":"22074","lastModified":"1301903118000","name":"Vanessa Lee Evigan","type":"Person","_key":"13890"} +{"label":"Reggie Lee","version":25,"id":"22075","lastModified":"1301901132000","name":"Reggie Lee","type":"Person","_key":"13891"} +{"label":"Lost in Space","description":"The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.","id":"2157","runtime":130,"imdbId":"tt0120738","version":221,"lastModified":"1301901918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b5\/4d419e977b9aa15bb00035b5\/lost-in-space-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Lost in Space","releaseDate":891561600000,"language":"en","tagline":"Danger, Will Robinson!","type":"Movie","_key":"13892"} +{"label":"Matt LeBlanc","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70d\/4ccb55ce5e73d6502100070d\/matt-leblanc-profile.jpg","biography":"Matt LeBlanc was born in Newton, Massachussetts, to an Italian mother and a father of mixed Irish, English, Dutch and French ancestry. After graduating from high school, he spent some time as a photo model in Florida before moving to New York where he took drama classes. After a few small roles on stage and on TV, he became famous for his role as Joey in \"Friends\" (1994), and in a less successful spin-off, \"Joey\" (2004). From 2003 to 2006, he was married to Missy McKnight, with whom he had one c","version":50,"birthday":"-76986000000","id":"14407","birthplace":"Newton, Massachusetts, USA","lastModified":"1301901200000","name":"Matt LeBlanc","type":"Person","_key":"13893"} +{"label":"Lacey Chabert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4bcc8312017a3c0f2a000115\/lacey-chabert-profile.jpg","biography":"Regarded as one of the best young actresses of her generation, Lacey Chabert started in drama and music performances in and around her hometown in Mississippi from an early age, and was a finalist on Star Search in 1991. She gained her break in a cough syrup commercial, before successfully auditioning for the Broadway\n production of Les Miserables, where she played young Cosette for two \nyears. Since then, she has been on a few television series, notably Party of Five<a href=\"http:\/\/www.imdb.com","version":99,"birthday":"402188400000","id":"22082","birthplace":"Purvis, Mississippi, USA","lastModified":"1301904072000","name":"Lacey Chabert","type":"Person","_key":"13894"} +{"label":"Jack Johnson","version":21,"id":"135526","lastModified":"1301902267000","name":"Jack Johnson","type":"Person","_key":"13895"} +{"label":"Voyage to the Bottom of the Sea","description":"The crew of an atomic submarine battle to save the world from global destruction. ","id":"2160","runtime":105,"imdbId":"tt0055608","version":91,"lastModified":"1301904963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/311\/4c77e33b7b9aa16a09000311\/voyage-to-the-bottom-of-the-sea-mid.jpg","studio":"20th Century Fox","genre":"Adventure","title":"Voyage to the Bottom of the Sea","releaseDate":-267408000000,"language":"en","type":"Movie","_key":"13896"} +{"label":"Irwin Allen","version":42,"id":"7506","lastModified":"1302057425000","name":"Irwin Allen","type":"Person","_key":"13897"} +{"label":"Barbara Eden","version":23,"id":"22090","lastModified":"1301901338000","name":"Barbara Eden","type":"Person","_key":"13898"} +{"label":"Robert Sterling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b8\/4bf5435a017a3c320d0008b8\/robert-sterling-profile.jpg","biography":"Robert Sterling, born William Sterling Hart (November 13, 1917 \u2013 May 30, 2006) was an American film and television actor.\n\nThe son of baseball player and umpire Bill Hart, he was born in New Castle, Pennsylvania. He attended the University of Pittsburgh and worked as a clothing salesman before pursuing an acting career.\n\nAfter signing with Columbia Pictures in 1939, he changed his name to Robert Sterling to avoid confusion with silent western star William S. Hart. In 1941, Sterling went to MGM. ","version":26,"birthday":"-1645232400000","id":"22091","birthplace":"New Castle, Pennsylvania","lastModified":"1301904093000","name":"Robert Sterling","type":"Person","_key":"13899"} +{"label":"Michael Ansara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2be\/4ca4d3c07b9aa16ed60002be\/michael-ansara-profile.jpg","version":34,"id":"16074","lastModified":"1301901791000","name":"Michael Ansara","type":"Person","_key":"13900"} +{"label":"Frankie Avalon","version":33,"id":"22092","lastModified":"1301901363000","name":"Frankie Avalon","type":"Person","_key":"13901"} +{"label":"Fantastic Voyage","description":"The science of miniaturization has been unlocked, and the army has big plans. But when a scientist carrying the secret of the process is injured in a surprise attack, a life-threatening blood clot puts him into a coma. Now, a team of adventurers will have to use the technology to travel inside his body and destroy the clot.","id":"2161","runtime":100,"imdbId":"tt0060397","version":113,"lastModified":"1302038745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c14\/4cf1429d5e73d61928000c14\/fantastic-voyage-mid.jpg","studio":"20th Century Fox","genre":"Adventure","title":"Fantastic Voyage","releaseDate":-105926400000,"language":"en","type":"Movie","_key":"13902"} +{"label":"Jean Del Val","version":21,"id":"22099","lastModified":"1301901773000","name":"Jean Del Val","type":"Person","_key":"13903"} +{"label":"Chill Factor","description":"A store clerk and an ice cream truck driver are thrown together when a dying scientist entrusts them with a deadly chemical kept in ice. This chemical will kill every living thing once it melts. They have to take the chemical codenamed 'Elvis' to the next nearest military base while being chased by terrorists who want it to hold the country for ransom. ","id":"2162","runtime":101,"imdbId":"tt0163579","version":161,"lastModified":"1301906246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/153\/4d7a911e7b9aa11a18001153\/chill-factor-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"Chill Factor","releaseDate":936144000000,"language":"en","type":"Movie","_key":"13904"} +{"label":"Hugh Johnson","version":37,"id":"22100","lastModified":"1301901586000","name":"Hugh Johnson","type":"Person","_key":"13905"} +{"label":"Skeet Ulrich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/204\/4c3b1cfe5e73d671cf000204\/skeet-ulrich-profile.jpg","version":55,"id":"22108","lastModified":"1302061539000","name":"Skeet Ulrich","type":"Person","_key":"13906"} +{"label":"Peter Firth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c9\/4ca51f295e73d636f80002c9\/peter-firth-profile.jpg","version":41,"id":"22109","lastModified":"1301901332000","name":"Peter Firth","type":"Person","_key":"13907"} +{"label":"Daniel Hugh Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d8\/4cc9bbd77b9aa16b9b0003d8\/daniel-hugh-kelly-profile.jpg","version":36,"id":"22111","lastModified":"1301901603000","name":"Daniel Hugh Kelly","type":"Person","_key":"13908"} +{"label":"Judson Mills","version":21,"id":"22113","lastModified":"1301903117000","name":"Judson Mills","type":"Person","_key":"13909"} +{"label":"Jordan Mott","version":21,"id":"22114","lastModified":"1301901825000","name":"Jordan Mott","type":"Person","_key":"13910"} +{"label":"Hudson Leick","version":25,"id":"87282","lastModified":"1301902479000","name":"Hudson Leick","type":"Person","_key":"13911"} +{"label":"Breakdown","description":"When his SUV breaks down on a remote Southwestern road, Jeff Taylor lets his wife, Amy, hitch a ride with a trucker to get help. When she doesn't return, Jeff fixes his SUV and tracks down the trucker -- who tells the police he's never seen Amy. Johnathan Mostow's tense thriller then follows Jeff's desperate search for his wife, which eventually uncovers a small town's murderous secret.","id":"2163","runtime":95,"imdbId":"tt0118771","version":140,"lastModified":"1301903387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3da\/4bc915d7017a3c57fe0083da\/breakdown-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Breakdown","releaseDate":862531200000,"language":"en","tagline":"It could happen to you.","type":"Movie","_key":"13912"} +{"label":"Jack Noseworthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa3\/4d593adb7b9aa15d01004aa3\/jack-noseworthy-profile.jpg","version":42,"id":"22133","lastModified":"1301901184000","name":"Jack Noseworthy","type":"Person","_key":"13913"} +{"label":"Stargate","description":"Two very different men join forces to unravel the mystery of a \"Stargate,\" an ancient human transmitter, discovered in the Egyptian desert. Once activated, it enables scientists and the military to travel light years from earth, to a strange and alien world, where the visitors must overcome an enigmatic ruler.","id":"2164","runtime":128,"imdbId":"tt0111282","trailer":"http:\/\/www.youtube.com\/watch?v=1YtEp3b-A68","version":607,"lastModified":"1301911841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e7\/4bc915d8017a3c57fe0083e7\/stargate-mid.jpg","studio":"Canal Plus","genre":"Action","title":"Stargate","releaseDate":783302400000,"language":"en","type":"Movie","_key":"13914"} +{"label":"Alexis Cruz","version":28,"id":"22138","lastModified":"1301901447000","name":"Alexis Cruz","type":"Person","_key":"13915"} +{"label":"Viveca Lindfors","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58a\/4bf3f325017a3c320f00058a\/viveca-lindfors-profile.jpg","version":44,"id":"22137","lastModified":"1301901208000","name":"Viveca Lindfors","type":"Person","_key":"13916"} +{"label":"Carlos Lauchu","version":23,"id":"22139","lastModified":"1301901588000","name":"Carlos Lauchu","type":"Person","_key":"13917"} +{"label":"Jaye Davidson","biography":"<SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"><STRONG>Jaye Davidson<\/STRONG><\/SPAN><SPAN lang=EN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\"> wa","version":10,"id":"228173","lastModified":"1301904025000","name":"Jaye Davidson","type":"Person","_key":"13918"} +{"label":"Liberty stands still","description":"The wife of a gun manufacturer is held hostage by a man seeking revenge for the death of his daughter in a high school shooting incident.","id":"2165","runtime":92,"imdbId":"tt0280870","version":138,"lastModified":"1301904969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fb\/4bc915da017a3c57fe0083fb\/liberty-stands-still-mid.jpg","studio":"Lions Gate Films","genre":"Drama","title":"Liberty stands still","releaseDate":1011312000000,"language":"en","type":"Movie","_key":"13919"} +{"label":"Kari Skogland","version":35,"id":"22140","lastModified":"1301901341000","name":"Kari Skogland","type":"Person","_key":"13920"} +{"label":"Gregory Calpakis","version":19,"id":"22150","lastModified":"1301901983000","name":"Gregory Calpakis","type":"Person","_key":"13921"} +{"label":"The Revengers Comedies","description":"No overview found.","id":"2166","runtime":86,"imdbId":"tt0120013","version":82,"lastModified":"1301904453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/405\/4bc915dc017a3c57fe008405\/the-revengers-comedies-mid.jpg","studio":"Artisan Entertainment","genre":"Comedy","title":"The Revengers Comedies","releaseDate":898214400000,"language":"en","type":"Movie","_key":"13922"} +{"label":"Malcolm Mowbray","version":25,"id":"22151","lastModified":"1301901833000","name":"Malcolm Mowbray","type":"Person","_key":"13923"} +{"label":"2:37","description":"At precisely 2:37 a tragedy will occur, affecting the lives of a group of students and their teachers. As the story unfolds, the individual stories of the six teenagers are revealed, each with its own explosive significance. ","id":"2168","runtime":95,"imdbId":"tt0472582","trailer":"http:\/\/www.youtube.com\/watch?v=1853","version":128,"lastModified":"1301911765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40e\/4bc915dd017a3c57fe00840e\/2-37-mid.jpg","studio":"M2 Entertainment","genre":"Drama","title":"2:37","releaseDate":1148601600000,"language":"en","type":"Movie","_key":"13924"} +{"label":"Murali K. Thalluri","version":19,"id":"22172","lastModified":"1301901501000","name":"Murali K. Thalluri","type":"Person","_key":"13925"} +{"label":"Frank Sweet","version":17,"id":"22174","lastModified":"1301901681000","name":"Frank Sweet","type":"Person","_key":"13926"} +{"label":"Sam Harris","version":22,"id":"23240","lastModified":"1301901664000","name":"Sam Harris","type":"Person","_key":"13927"} +{"label":"Joel Mackenzie","version":20,"id":"23241","lastModified":"1301901459000","name":"Joel Mackenzie","type":"Person","_key":"13928"} +{"label":"Clementine Mellor","version":20,"id":"23242","lastModified":"1301901825000","name":"Clementine Mellor","type":"Person","_key":"13929"} +{"label":"Charles Baird","version":20,"id":"23243","lastModified":"1301901829000","name":"Charles Baird","type":"Person","_key":"13930"} +{"label":"Marni Spillane","version":20,"id":"23244","lastModified":"1301901825000","name":"Marni Spillane","type":"Person","_key":"13931"} +{"label":"Sarah Hudson","version":20,"id":"23245","lastModified":"1301901811000","name":"Sarah Hudson","type":"Person","_key":"13932"} +{"label":"Manta - Der Film","description":"No overview found.","id":"2169","runtime":90,"imdbId":"tt0102396","version":70,"lastModified":"1301905294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f2\/4c6438177b9aa172dd0008f2\/manta-der-film-mid.jpg","studio":"Royal Film","genre":"Comedy","title":"Manta - Der Film","releaseDate":685238400000,"language":"en","type":"Movie","_key":"13933"} +{"label":"Peter Timm","version":21,"id":"22175","lastModified":"1301903118000","name":"Peter Timm","type":"Person","_key":"13934"} +{"label":"Sebastian Rudolph","version":19,"id":"22184","lastModified":"1301901417000","name":"Sebastian Rudolph","type":"Person","_key":"13935"} +{"label":"Nadeshda Brennicke","version":23,"id":"22185","lastModified":"1301901356000","name":"Nadeshda Brennicke","type":"Person","_key":"13936"} +{"label":"Jophi Ries","version":16,"id":"22186","lastModified":"1301903115000","name":"Jophi Ries","type":"Person","_key":"13937"} +{"label":"Edda Fischer","version":16,"id":"22187","lastModified":"1301903118000","name":"Edda Fischer","type":"Person","_key":"13938"} +{"label":"Dieter Pfaff","version":23,"id":"22188","lastModified":"1301902017000","name":"Dieter Pfaff","type":"Person","_key":"13939"} +{"label":"Brigitte Janner","version":19,"id":"22189","lastModified":"1301903113000","name":"Brigitte Janner","type":"Person","_key":"13940"} +{"label":"Dieter Thomas Heck","version":18,"id":"22190","lastModified":"1301901825000","name":"Dieter Thomas Heck","type":"Person","_key":"13941"} +{"label":"Peter Maffay","version":16,"id":"22191","lastModified":"1301903119000","name":"Peter Maffay","type":"Person","_key":"13942"} +{"label":"Une glace avec deux boules ou je le dis \u00e0 maman","description":"No overview found.","id":"2170","runtime":94,"imdbId":"tt0083143","version":58,"lastModified":"1301904453000","studio":"Belstar Productions","genre":"Comedy","title":"Une glace avec deux boules ou je le dis \u00e0 maman","releaseDate":385171200000,"language":"en","type":"Movie","_key":"13943"} +{"label":"Philippe Margue","version":15,"id":"22207","lastModified":"1301903114000","name":"Philippe Margue","type":"Person","_key":"13944"} +{"label":"Christian Lara","version":17,"id":"22195","lastModified":"1301901629000","name":"Christian Lara","type":"Person","_key":"13945"} +{"label":"Val\u00e9rie Dumas","version":16,"id":"22209","lastModified":"1301901629000","name":"Val\u00e9rie Dumas","type":"Person","_key":"13946"} +{"label":"D\u00e9sir\u00e9e Nosbusch","version":19,"id":"22210","lastModified":"1301901805000","name":"D\u00e9sir\u00e9e Nosbusch","type":"Person","_key":"13947"} +{"label":"Sarah Siritzky","version":16,"id":"22211","lastModified":"1301901918000","name":"Sarah Siritzky","type":"Person","_key":"13948"} +{"label":"Daniel Sarky","version":20,"id":"22212","lastModified":"1301901578000","name":"Daniel Sarky","type":"Person","_key":"13949"} +{"label":"Anne L\u00e9tourneau","version":17,"id":"22213","lastModified":"1301901983000","name":"Anne L\u00e9tourneau","type":"Person","_key":"13950"} +{"label":"Wet Hot American Summer","description":"The setting is Camp Firewood, the year 1981. It's the last day before everyone goes back to the real world, but there's still a summer's worth of unfinished business to resolve. At the center of the action is camp director Beth, who struggles to keep order while she falls in love with the local astrophysics professor. He is busy trying to save the camp from a deadly piece of NASA's Skylab which is hurtling toward earth. All that, plus: a dangerous waterfall rescue, love triangles, misfits, cool ","id":"2171","runtime":97,"imdbId":"tt0243655","homepage":"http:\/\/www.wethotamericansummer.com\/","version":120,"lastModified":"1301902927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6a\/4d51b81b7b9aa13ab4010d6a\/wet-hot-american-summer-mid.jpg","studio":"Eureka Pictures","genre":"Comedy","title":"Wet Hot American Summer","releaseDate":996192000000,"language":"en","type":"Movie","_key":"13951"} +{"label":"David Wain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/91a\/4d61ec945e73d60c5a00391a\/david-wain-profile.jpg","version":32,"id":"22214","lastModified":"1301901104000","name":"David Wain","type":"Person","_key":"13952"} +{"label":"Marguerite Moreau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f2\/4cf578c55e73d629990008f2\/marguerite-moreau-profile.jpg","version":37,"id":"22223","lastModified":"1301901236000","name":"Marguerite Moreau","type":"Person","_key":"13953"} +{"label":"Michael Ian Black","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36d\/4d4a39685e73d617b300036d\/michael-ian-black-profile.jpg","version":27,"id":"22224","lastModified":"1301901439000","name":"Michael Ian Black","type":"Person","_key":"13954"} +{"label":"A.D. Miles","version":19,"id":"22225","lastModified":"1301901911000","name":"A.D. Miles","type":"Person","_key":"13955"} +{"label":"Christopher Meloni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2d\/4d3e43925e73d622cb003c2d\/christopher-meloni-profile.jpg","version":40,"id":"22227","lastModified":"1301901286000","name":"Christopher Meloni","type":"Person","_key":"13956"} +{"label":"Pathfinder","description":"Around the year 1000 AD warlike people, the so-called \"tjuder\", roam in northern Scandinavia. As they brutally kill a family in a remote area, including the parents and their little daughter, the families teenage son, Aigin, observes the slaughter. He manages to flee from these killers and reaches a camp with other Lapps whose inhabitants are worried if he has been able to hide his track. Afraid of the murderous people, they decide to flee to the coast. The boy stays alone to avenge his families","id":"2172","runtime":86,"imdbId":"tt0093668","trailer":"http:\/\/www.youtube.com\/watch?v=3066","version":91,"lastModified":"1301903690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/429\/4bc915e0017a3c57fe008429\/ofelas-mid.jpg","studio":"Filmkameratene A\/S","genre":"Adventure","title":"Pathfinder","releaseDate":557625600000,"language":"en","type":"Movie","_key":"13957"} +{"label":"Svein Scharffenberg","version":18,"id":"22229","lastModified":"1301901673000","name":"Svein Scharffenberg","type":"Person","_key":"13958"} +{"label":"Ingvald Guttorm","version":18,"id":"22559","lastModified":"1301901828000","name":"Ingvald Guttorm","type":"Person","_key":"13959"} +{"label":"Nils Utsi","version":18,"id":"22560","lastModified":"1301901673000","name":"Nils Utsi","type":"Person","_key":"13960"} +{"label":"Nils-Aslak Valkeap\u00e4\u00e4","version":18,"id":"22561","lastModified":"1301901991000","name":"Nils-Aslak Valkeap\u00e4\u00e4","type":"Person","_key":"13961"} +{"label":"Henrik H. Buljo","version":18,"id":"110097","lastModified":"1301903038000","name":"Henrik H. Buljo","type":"Person","_key":"13962"} +{"label":"Helgi Sk\u00falason","version":18,"id":"22228","lastModified":"1301903115000","name":"Helgi Sk\u00falason","type":"Person","_key":"13963"} +{"label":"Knut Walle","version":18,"id":"110101","lastModified":"1301903006000","name":"Knut Walle","type":"Person","_key":"13964"} +{"label":"John Sigurd Kristensen","version":18,"id":"110104","lastModified":"1301903038000","name":"John Sigurd Kristensen","type":"Person","_key":"13965"} +{"label":"Sara Marit Gaup","version":18,"id":"110105","lastModified":"1301902988000","name":"Sara Marit Gaup","type":"Person","_key":"13966"} +{"label":"Anne-Marja Blind","version":18,"id":"110106","lastModified":"1301902988000","name":"Anne-Marja Blind","type":"Person","_key":"13967"} +{"label":"Ellen Anne Buljo","version":18,"id":"110107","lastModified":"1301902988000","name":"Ellen Anne Buljo","type":"Person","_key":"13968"} +{"label":"Svein Birger Olsen","version":18,"id":"110108","lastModified":"1301902988000","name":"Svein Birger Olsen","type":"Person","_key":"13969"} +{"label":"Sverre Porsanger","version":23,"id":"79192","lastModified":"1301902328000","name":"Sverre Porsanger","type":"Person","_key":"13970"} +{"label":"Nils Gaup","version":28,"id":"22558","lastModified":"1301901456000","name":"Nils Gaup","type":"Person","_key":"13971"} +{"label":"Artie","description":"No overview found.","id":"2173","runtime":89,"imdbId":"tt0245724","version":152,"lastModified":"1301907298000","genre":"Comedy","title":"Artie","releaseDate":946684800000,"language":"en","type":"Movie","_key":"13972"} +{"label":"Matt Berman","version":20,"id":"22230","lastModified":"1301901918000","name":"Matt Berman","type":"Person","_key":"13973"} +{"label":"Adeeb Hammoudi","version":16,"id":"22246","lastModified":"1301901754000","name":"Adeeb Hammoudi","type":"Person","_key":"13974"} +{"label":"Seth Walther","version":17,"id":"22247","lastModified":"1301901682000","name":"Seth Walther","type":"Person","_key":"13975"} +{"label":"Heather McComb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eaa\/4d8e46605e73d65f17000eaa\/heather-mccomb-profile.jpg","version":29,"id":"22248","lastModified":"1301901588000","name":"Heather McComb","type":"Person","_key":"13976"} +{"label":"Christine Steel","version":17,"id":"22249","lastModified":"1301901690000","name":"Christine Steel","type":"Person","_key":"13977"} +{"label":"Rance Howard","version":23,"id":"22250","lastModified":"1301902056000","name":"Rance Howard","type":"Person","_key":"13978"} +{"label":"Royce D. Applegate","version":19,"id":"22251","lastModified":"1301903117000","name":"Royce D. Applegate","type":"Person","_key":"13979"} +{"label":"Wirklich alles?!","description":"No overview found.","id":"2175","runtime":65,"imdbId":"tt0433263","version":35,"lastModified":"1301906761000","studio":"Sony","genre":"Documentary","title":"Wirklich alles?!","releaseDate":1038614400000,"language":"en","type":"Movie","_key":"13980"} +{"label":"Helmuth R\u00fc\u00dfmann","version":17,"id":"22253","lastModified":"1301901839000","name":"Helmuth R\u00fc\u00dfmann","type":"Person","_key":"13981"} +{"label":"Wolfgang Petry","version":20,"id":"22254","lastModified":"1301901973000","name":"Wolfgang Petry","type":"Person","_key":"13982"} +{"label":"The Glass House","description":"After the sudden death of their parents in a car accident, 16-year-old Ruby Baker and her 11-year-old brother Rhett are sent to live in the posh Malibu house of Terry and Erin Glass, old friends of their parents. But Ruby soon learns that her new foster parents are not all they seem to be.","id":"2176","runtime":106,"imdbId":"tt0221218","trailer":"http:\/\/www.youtube.com\/watch?v=3026","version":168,"lastModified":"1301904506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d6\/4cc908045e73d650250003d6\/the-glass-house-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Glass House","releaseDate":987724800000,"language":"en","type":"Movie","_key":"13983"} +{"label":"Leelee Sobieski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ea\/4d5f4cc15e73d60c5c0021ea\/leelee-sobieski-profile.jpg","version":65,"id":"22290","lastModified":"1301904073000","name":"Leelee Sobieski","type":"Person","_key":"13984"} +{"label":"Daniel Sackheim","version":27,"id":"12632","lastModified":"1301901449000","name":"Daniel Sackheim","type":"Person","_key":"13985"} +{"label":"Falco L.I.V.E.","description":"No overview found.","id":"2177","runtime":110,"version":98,"lastModified":"1301905288000","studio":"\u00d6sterreichischer Rundfunk","genre":"Musical","title":"Falco L.I.V.E.","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"13986"} +{"label":"Susanne Haiden","version":15,"id":"22264","lastModified":"1301901911000","name":"Susanne Haiden","type":"Person","_key":"13987"} +{"label":"Peter Nagy","version":14,"id":"22266","lastModified":"1301903114000","name":"Peter Nagy","type":"Person","_key":"13988"} +{"label":"Dieter Haspel","version":15,"id":"22278","lastModified":"1301901911000","name":"Dieter Haspel","type":"Person","_key":"13989"} +{"label":"Barbara St\u00f6ckel","version":14,"id":"22279","lastModified":"1301903111000","name":"Barbara St\u00f6ckel","type":"Person","_key":"13990"} +{"label":"Thomas Rabitsch","version":15,"id":"22280","lastModified":"1301903116000","name":"Thomas Rabitsch","type":"Person","_key":"13991"} +{"label":"Bernhard Rabitsch","version":16,"id":"22281","lastModified":"1301901911000","name":"Bernhard Rabitsch","type":"Person","_key":"13992"} +{"label":"Peter Paul Skrepek","version":16,"id":"22282","lastModified":"1301901911000","name":"Peter Paul Skrepek","type":"Person","_key":"13993"} +{"label":"Thomas Lang","version":15,"id":"22283","lastModified":"1301903116000","name":"Thomas Lang","type":"Person","_key":"13994"} +{"label":"Bertl Pistracher","version":15,"id":"22284","lastModified":"1301903116000","name":"Bertl Pistracher","type":"Person","_key":"13995"} +{"label":"Peter Vieweger","version":15,"id":"22285","lastModified":"1301903116000","name":"Peter Vieweger","type":"Person","_key":"13996"} +{"label":"Helmut Bibl","version":15,"id":"22286","lastModified":"1301903116000","name":"Helmut Bibl","type":"Person","_key":"13997"} +{"label":"Polio Brezina","version":15,"id":"22287","lastModified":"1301903116000","name":"Polio Brezina","type":"Person","_key":"13998"} +{"label":"Otmar Klein","version":16,"id":"22288","lastModified":"1301901911000","name":"Otmar Klein","type":"Person","_key":"13999"} +{"label":"Bodo Schopf","version":15,"id":"22289","lastModified":"1301903116000","name":"Bodo Schopf","type":"Person","_key":"14000"} +{"label":"The Battle of The Alamo","description":"No overview found.","id":"2178","runtime":52,"imdbId":"tt0115635","version":40,"lastModified":"1301906761000","studio":"Discovery Docs","genre":"Documentary","title":"The Battle of The Alamo","releaseDate":1157587200000,"language":"en","type":"Movie","_key":"14001"} +{"label":"Paul Wagner","version":17,"id":"22291","lastModified":"1301901835000","name":"Paul Wagner","type":"Person","_key":"14002"} +{"label":"Nina Gilden Seavey","version":17,"id":"22292","lastModified":"1301903113000","name":"Nina Gilden Seavey","type":"Person","_key":"14003"} +{"label":"Tenacious D in The Pick of Destiny","description":"In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.","id":"2179","runtime":93,"imdbId":"tt0365830","trailer":"http:\/\/www.youtube.com\/watch?v=137","homepage":"http:\/\/www.tenaciousdmovie.com\/","version":198,"lastModified":"1301901980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d14\/4c0fc7f8017a3c7e89000d14\/tenacious-d-in-the-pick-of-destiny-mid.jpg","studio":"Red Hour Films","genre":"Comedy","title":"Tenacious D in The Pick of Destiny","releaseDate":1132617600000,"language":"en","type":"Movie","_key":"14004"} +{"label":"Heartbreak Hotel","description":"No overview found.","id":"2180","runtime":102,"imdbId":"tt0785002","homepage":"http:\/\/www.schwedischfuerfortgeschrittene.de\/","version":119,"lastModified":"1301904740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/454\/4bc915e8017a3c57fe008454\/heartbreak-hotel-mid.jpg","studio":"Sweetwater","genre":"Comedy","title":"Heartbreak Hotel","releaseDate":1160179200000,"language":"en","type":"Movie","_key":"14005"} +{"label":"Colin Nutley","version":25,"id":"22323","lastModified":"1301901570000","name":"Colin Nutley","type":"Person","_key":"14006"} +{"label":"Maria Lundqvist","version":31,"id":"22330","lastModified":"1301901973000","name":"Maria Lundqvist","type":"Person","_key":"14007"} +{"label":"Johan Rabaeus","version":23,"id":"22331","lastModified":"1301901973000","name":"Johan Rabaeus","type":"Person","_key":"14008"} +{"label":"Erica Braun","version":17,"id":"22333","lastModified":"1301903110000","name":"Erica Braun","type":"Person","_key":"14009"} +{"label":"Claes M\u00e5nsson","version":26,"id":"95566","lastModified":"1301902978000","name":"Claes M\u00e5nsson","type":"Person","_key":"14010"} +{"label":"Geliebte wei\u00dfe Maus","description":"No overview found.","id":"2181","runtime":76,"imdbId":"tt0058134","version":54,"lastModified":"1301906097000","studio":"DEFA","genre":"Comedy","title":"Geliebte wei\u00dfe Maus","releaseDate":-177638400000,"language":"en","type":"Movie","_key":"14011"} +{"label":"Gottfried Kolditz","version":29,"id":"22334","lastModified":"1301901756000","name":"Gottfried Kolditz","type":"Person","_key":"14012"} +{"label":"Rolf Herricht","version":17,"id":"22347","lastModified":"1301901825000","name":"Rolf Herricht","type":"Person","_key":"14013"} +{"label":"Carola Braunbock","version":23,"id":"22343","lastModified":"1301901924000","name":"Carola Braunbock","type":"Person","_key":"14014"} +{"label":"Karin Schr\u00f6der","version":18,"id":"22350","lastModified":"1301901818000","name":"Karin Schr\u00f6der","type":"Person","_key":"14015"} +{"label":"Mathilde Danegger","version":19,"id":"22344","lastModified":"1301901546000","name":"Mathilde Danegger","type":"Person","_key":"14016"} +{"label":"Peter Dommisch","version":18,"id":"22345","lastModified":"1301903117000","name":"Peter Dommisch","type":"Person","_key":"14017"} +{"label":"Gerd Ehlers","version":17,"id":"22346","lastModified":"1301901918000","name":"Gerd Ehlers","type":"Person","_key":"14018"} +{"label":"Johannes Maus","version":21,"id":"22349","lastModified":"1301901754000","name":"Johannes Maus","type":"Person","_key":"14019"} +{"label":"Sabine Thalbach","version":18,"id":"22351","lastModified":"1301901629000","name":"Sabine Thalbach","type":"Person","_key":"14020"} +{"label":"Jochen Thomas","version":18,"id":"22352","lastModified":"1301902050000","name":"Jochen Thomas","type":"Person","_key":"14021"} +{"label":"Attack of the Killer Tomatoes!","description":"Attack of the Killer Tomatoes is a 1978 comedy film directed by John De Bello and starring David Miller. The film is a spoof of B-movies. Made on a budget of less than USD $100,000, the story involves tomatoes becoming sentient by unknown means and revolting against humanity. ","id":"2182","runtime":87,"imdbId":"tt0080391","version":177,"lastModified":"1301911538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/462\/4bc915e9017a3c57fe008462\/attack-of-the-killer-tomatoes-mid.jpg","studio":"Four Square Productions","genre":"Comedy","title":"Attack of the Killer Tomatoes!","releaseDate":276048000000,"language":"en","tagline":"Aaargh!...","type":"Movie","_key":"14022"} +{"label":"John De Bello","version":40,"id":"22353","lastModified":"1301901947000","name":"John De Bello","type":"Person","_key":"14023"} +{"label":"David Miller","version":20,"id":"22354","lastModified":"1301902013000","name":"David Miller","type":"Person","_key":"14024"} +{"label":"George Wilson","version":22,"id":"27587","lastModified":"1301901947000","name":"George Wilson","type":"Person","_key":"14025"} +{"label":"Sharon Taylor","version":20,"id":"22355","lastModified":"1301902013000","name":"Sharon Taylor","type":"Person","_key":"14026"} +{"label":"J. Stephen Peace","version":27,"id":"22356","lastModified":"1301901984000","name":"J. Stephen Peace","type":"Person","_key":"14027"} +{"label":"Ernie Meyers","version":19,"id":"22371","lastModified":"1301901947000","name":"Ernie Meyers","type":"Person","_key":"14028"} +{"label":"Hindenburg Disaster: Probable Cause","description":"No overview found.","id":"2183","runtime":50,"imdbId":"tt0418729","version":40,"lastModified":"1301907434000","studio":"Discovery Docs","genre":"Documentary","title":"Hindenburg Disaster: Probable Cause","releaseDate":978307200000,"language":"en","type":"Movie","_key":"14029"} +{"label":"Sara Kestelmann","version":18,"id":"22370","lastModified":"1301901405000","name":"Sara Kestelmann","type":"Person","_key":"14030"} +{"label":"Maus und Katz","description":"No overview found.","id":"2184","runtime":103,"imdbId":"tt0107532","version":39,"lastModified":"1301907434000","studio":"WDR","genre":"Thriller","title":"Maus und Katz","releaseDate":755481600000,"language":"en","type":"Movie","_key":"14031"} +{"label":"Dieter Mann","version":25,"id":"22379","lastModified":"1301901797000","name":"Dieter Mann","type":"Person","_key":"14032"} +{"label":"Jale Arikan","version":16,"id":"22380","lastModified":"1301903118000","name":"Jale Arikan","type":"Person","_key":"14033"} +{"label":"Big Trouble","description":"Based on a book by Dave Barry, Big Trouble tells the story of a journalist who gets involved with a wealthy schemer, a bored housewife, and Russian mobsters.","id":"2185","runtime":85,"imdbId":"tt0246464","version":203,"lastModified":"1301903735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4d3f64875e73d622d5005052\/big-trouble-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Big Trouble","releaseDate":1020556800000,"language":"en","type":"Movie","_key":"14034"} +{"label":"Within the Woods","description":"The low budget film starring the young Bruce Campbell that influenced the Evil Dead films.","id":"2186","runtime":32,"imdbId":"tt0078503","trailer":"http:\/\/www.youtube.com\/watch?v=139","version":50,"lastModified":"1301903857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/676\/4d1af39a5e73d6083400b676\/within-the-woods-mid.jpg","genre":"Horror","title":"Within the Woods","releaseDate":280627200000,"language":"en","type":"Movie","_key":"14035"} +{"label":"Scott Spiegel","version":35,"id":"11641","lastModified":"1301901503000","name":"Scott Spiegel","type":"Person","_key":"14036"} +{"label":"Mary Valenti","version":17,"id":"22385","lastModified":"1301902030000","name":"Mary Valenti","type":"Person","_key":"14037"} +{"label":"Alles nur Tarnung","description":"No overview found.","id":"2187","runtime":90,"imdbId":"tt0115516","version":66,"lastModified":"1301904967000","studio":"Living Camera","genre":"Comedy","title":"Alles nur Tarnung","releaseDate":847929600000,"language":"en","type":"Movie","_key":"14038"} +{"label":"Peter Zingler","version":20,"id":"22373","lastModified":"1301901585000","name":"Peter Zingler","type":"Person","_key":"14039"} +{"label":"Gino Lapisarda","version":16,"id":"22397","lastModified":"1301903119000","name":"Gino Lapisarda","type":"Person","_key":"14040"} +{"label":"Vittorio Alfieri","version":16,"id":"22398","lastModified":"1301903118000","name":"Vittorio Alfieri","type":"Person","_key":"14041"} +{"label":"Margot Hammerschmidt","version":16,"id":"22399","lastModified":"1301903119000","name":"Margot Hammerschmidt","type":"Person","_key":"14042"} +{"label":"Adolf Laimb\u00f6ck","version":15,"id":"22400","lastModified":"1301903114000","name":"Adolf Laimb\u00f6ck","type":"Person","_key":"14043"} +{"label":"Bernd E. J\u00e4ger von Boxen","version":15,"id":"22401","lastModified":"1301903117000","name":"Bernd E. J\u00e4ger von Boxen","type":"Person","_key":"14044"} +{"label":"Wilfried Elste","version":19,"id":"22402","lastModified":"1301903115000","name":"Wilfried Elste","type":"Person","_key":"14045"} +{"label":"Edgar Cox","version":16,"id":"22394","lastModified":"1301903117000","name":"Edgar Cox","type":"Person","_key":"14046"} +{"label":"The Corrs: Live at Lansdowne Road","description":"No overview found.","id":"2188","runtime":87,"imdbId":"tt0267391","version":84,"lastModified":"1301904692000","studio":"Warner Bros. Entertainment","genre":"Musical","title":"The Corrs: Live at Lansdowne Road","releaseDate":946684800000,"language":"en","type":"Movie","_key":"14047"} +{"label":"Nick Wickham","version":24,"id":"22404","lastModified":"1301901576000","name":"Nick Wickham","type":"Person","_key":"14048"} +{"label":"Ciar\u00e1n Tanham","version":18,"id":"22403","lastModified":"1301903115000","name":"Ciar\u00e1n Tanham","type":"Person","_key":"14049"} +{"label":"Sharon Corr","version":19,"id":"22410","lastModified":"1301901532000","name":"Sharon Corr","type":"Person","_key":"14050"} +{"label":"Caroline Corr","version":19,"id":"22411","lastModified":"1301901359000","name":"Caroline Corr","type":"Person","_key":"14051"} +{"label":"Jim Corr","version":19,"id":"22412","lastModified":"1301903115000","name":"Jim Corr","type":"Person","_key":"14052"} +{"label":"Anthony Drennan","version":18,"id":"22421","lastModified":"1301903118000","name":"Anthony Drennan","type":"Person","_key":"14053"} +{"label":"Keith Duffy","version":17,"id":"22422","lastModified":"1301903118000","name":"Keith Duffy","type":"Person","_key":"14054"} +{"label":"Tomboy","description":"A budding female race-car driver finally meets her racing idol and unbelievably they fall in love...a love that's quickly put to the test when, having received the chance to show her racing talents, the two find themselves in a race for a multi-million dollar sponsorship contract.","id":"2189","runtime":91,"imdbId":"tt0090184","version":96,"lastModified":"1302023489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/245\/4d4eab887b9aa13aba00a245\/tomboy-mid.jpg","studio":"Crown International Pictures","genre":"Comedy","title":"Tomboy","releaseDate":500774400000,"language":"en","tagline":"It's not just a man's world anymore.","type":"Movie","_key":"14055"} +{"label":"Herb Freed","version":24,"id":"22423","lastModified":"1301901777000","name":"Herb Freed","type":"Person","_key":"14056"} +{"label":"Gerard Christopher","version":17,"id":"22435","lastModified":"1301901754000","name":"Gerard Christopher","type":"Person","_key":"14057"} +{"label":"Philip Sterling","version":18,"id":"22437","lastModified":"1301903120000","name":"Philip Sterling","type":"Person","_key":"14058"} +{"label":"Eric Douglas","version":18,"id":"22438","lastModified":"1301901776000","name":"Eric Douglas","type":"Person","_key":"14059"} +{"label":"Paul Gunning","version":18,"id":"22439","lastModified":"1301901940000","name":"Paul Gunning","type":"Person","_key":"14060"} +{"label":"Toby Iland","version":17,"id":"22440","lastModified":"1301903118000","name":"Toby Iland","type":"Person","_key":"14061"} +{"label":"E. Danny Murphy","version":19,"id":"97747","lastModified":"1301902648000","name":"E. Danny Murphy","type":"Person","_key":"14062"} +{"label":"Cynthia Thompson","version":23,"id":"104289","lastModified":"1301902961000","name":"Cynthia Thompson","type":"Person","_key":"14063"} +{"label":"Michelle Bauer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4c94cd427b9aa10d590000a3\/michelle-bauer-profile.jpg","version":117,"id":"97698","lastModified":"1301901291000","name":"Michelle Bauer","type":"Person","_key":"14064"} +{"label":"Kristi Somers","version":20,"id":"100462","lastModified":"1301902650000","name":"Kristi Somers","type":"Person","_key":"14065"} +{"label":"Stranded","description":"A team of astronauts on the first mission to Mars crashes onto the surface, losing contact with Earth...","id":"2191","runtime":95,"imdbId":"tt0283015","version":140,"lastModified":"1301903787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/479\/4bc915eb017a3c57fe008479\/stranded-naufragos-mid.jpg","genre":"Drama","title":"Stranded","releaseDate":1013472000000,"language":"en","type":"Movie","_key":"14066"} +{"label":"Mar\u00eda Lid\u00f3n","version":18,"id":"22451","lastModified":"1301901629000","name":"Mar\u00eda Lid\u00f3n","type":"Person","_key":"14067"} +{"label":"Vincent Gallo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70d\/4d542c297b9aa13ab801370d\/vincent-gallo-profile.jpg","version":52,"id":"22461","lastModified":"1301901117000","name":"Vincent Gallo","type":"Person","_key":"14068"} +{"label":"Joaquim de Almeida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/387\/4d8027207b9aa12dac000387\/joaquim-de-almeida-profile.jpg","version":56,"id":"22462","lastModified":"1301901244000","name":"Joaquim de Almeida","type":"Person","_key":"14069"} +{"label":"Mar\u00eda Lid\u00f3n","version":21,"id":"22463","lastModified":"1301901506000","name":"Mar\u00eda Lid\u00f3n","type":"Person","_key":"14070"} +{"label":"Danel Aser","version":18,"id":"22464","lastModified":"1301901805000","name":"Danel Aser","type":"Person","_key":"14071"} +{"label":"Johnny Ramone","version":22,"id":"22465","lastModified":"1301903117000","name":"Johnny Ramone","type":"Person","_key":"14072"} +{"label":"Paul Gibert","version":17,"id":"22466","lastModified":"1301903118000","name":"Paul Gibert","type":"Person","_key":"14073"} +{"label":"Sandok, il Maciste della giungla","description":"No overview found.","id":"2192","runtime":85,"imdbId":"tt0128447","version":45,"lastModified":"1301905658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47e\/4bc915ee017a3c57fe00847e\/sandok-il-maciste-della-giungla-mid.jpg","studio":"Capitole Films","genre":"Action","title":"Sandok, il Maciste della giungla","releaseDate":-181872000000,"language":"en","type":"Movie","_key":"14074"} +{"label":"Umberto Lenzi","version":49,"id":"22467","lastModified":"1301901357000","name":"Umberto Lenzi","type":"Person","_key":"14075"} +{"label":"Sean Flynn","version":16,"id":"22474","lastModified":"1301901629000","name":"Sean Flynn","type":"Person","_key":"14076"} +{"label":"Alessandra Panaro","version":16,"id":"22475","lastModified":"1301901918000","name":"Alessandra Panaro","type":"Person","_key":"14077"} +{"label":"Marie Versini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4ca3e60e5e73d636fa00008f\/marie-versini-profile.jpg","version":28,"id":"22476","lastModified":"1301901243000","name":"Marie Versini","type":"Person","_key":"14078"} +{"label":"Mimmo Palmara","version":18,"id":"22477","lastModified":"1301901918000","name":"Mimmo Palmara","type":"Person","_key":"14079"} +{"label":"Giacomo Rossi-Stuart","version":33,"id":"22479","lastModified":"1301901573000","name":"Giacomo Rossi-Stuart","type":"Person","_key":"14080"} +{"label":"Arturo Dominici","version":21,"id":"98485","lastModified":"1301902306000","name":"Arturo Dominici","type":"Person","_key":"14081"} +{"label":"My Tutor","description":"No overview found.","id":"2193","runtime":97,"imdbId":"tt0085980","version":135,"lastModified":"1302023445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4c3301677b9aa174e6000087\/my-tutor-mid.jpg","studio":"Crown International Pictures","genre":"Comedy","title":"My Tutor","releaseDate":415584000000,"language":"en","type":"Movie","_key":"14082"} +{"label":"George Bowers","version":49,"id":"11454","lastModified":"1301901957000","name":"George Bowers","type":"Person","_key":"14083"} +{"label":"Caren Kaye","version":25,"id":"22489","lastModified":"1301901572000","name":"Caren Kaye","type":"Person","_key":"14084"} +{"label":"Matt Lattanzi","version":20,"id":"22490","lastModified":"1301901797000","name":"Matt Lattanzi","type":"Person","_key":"14085"} +{"label":"Kevin McCarthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fff\/4bffda16017a3c702b000fff\/kevin-mccarthy-profile.jpg","version":51,"id":"34597","lastModified":"1301901110000","name":"Kevin McCarthy","type":"Person","_key":"14086"} +{"label":"Clark Brandon","version":16,"id":"22492","lastModified":"1301903120000","name":"Clark Brandon","type":"Person","_key":"14087"} +{"label":"Bruce Bauer","version":16,"id":"22493","lastModified":"1301903118000","name":"Bruce Bauer","type":"Person","_key":"14088"} +{"label":"Arlene Golonka","version":21,"id":"22494","lastModified":"1301901824000","name":"Arlene Golonka","type":"Person","_key":"14089"} +{"label":"Amber Denyse Austin","version":16,"id":"22495","lastModified":"1301903118000","name":"Amber Denyse Austin","type":"Person","_key":"14090"} +{"label":"Nichts bereuen","description":"No overview found.","id":"2194","runtime":104,"imdbId":"tt0290015","version":74,"lastModified":"1301906097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/487\/4bc915ef017a3c57fe008487\/nichts-bereuen-mid.jpg","studio":"ARRI","genre":"Comedy","title":"Nichts bereuen","releaseDate":1005782400000,"language":"en","type":"Movie","_key":"14091"} +{"label":"Benjamin Quabeck","version":18,"id":"22496","lastModified":"1301901629000","name":"Benjamin Quabeck","type":"Person","_key":"14092"} +{"label":"Andi Wecker","version":16,"id":"22506","lastModified":"1301903111000","name":"Andi Wecker","type":"Person","_key":"14093"} +{"label":"Josef Heynert","version":24,"id":"22511","lastModified":"1301901651000","name":"Josef Heynert","type":"Person","_key":"14094"} +{"label":"Sonja Rogusch","version":16,"id":"22512","lastModified":"1301903120000","name":"Sonja Rogusch","type":"Person","_key":"14095"} +{"label":"Gerd Croll","version":17,"id":"22513","lastModified":"1301901983000","name":"Gerd Croll","type":"Person","_key":"14096"} +{"label":"Ellis Heiden","version":16,"id":"22514","lastModified":"1301902119000","name":"Ellis Heiden","type":"Person","_key":"14097"} +{"label":"Sebastian R\u00fcger","version":18,"id":"22515","lastModified":"1301902119000","name":"Sebastian R\u00fcger","type":"Person","_key":"14098"} +{"label":"Beste Zeit","description":"No overview found.","id":"2195","runtime":95,"imdbId":"tt0991269","version":50,"lastModified":"1301903370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4d133e917b9aa1148e001062\/beste-zeit-mid.jpg","studio":"Monaco Film","genre":"Drama","title":"Beste Zeit","releaseDate":1185408000000,"language":"en","type":"Movie","_key":"14099"} +{"label":"Anna Maria Sturm","version":22,"id":"23169","lastModified":"1301901684000","name":"Anna Maria Sturm","type":"Person","_key":"14100"} +{"label":"Rosalie Thomass","version":22,"id":"23170","lastModified":"1301902028000","name":"Rosalie Thomass","type":"Person","_key":"14101"} +{"label":"Ferdinand Schmidt-Modrow","version":24,"id":"23171","lastModified":"1301902028000","name":"Ferdinand Schmidt-Modrow","type":"Person","_key":"14102"} +{"label":"Florian Br\u00fcckner","version":22,"id":"23172","lastModified":"1301902028000","name":"Florian Br\u00fcckner","type":"Person","_key":"14103"} +{"label":"Peter Mitterrutzner","version":23,"id":"23178","lastModified":"1301902193000","name":"Peter Mitterrutzner","type":"Person","_key":"14104"} +{"label":"Andreas Giebel","version":22,"id":"23179","lastModified":"1301902163000","name":"Andreas Giebel","type":"Person","_key":"14105"} +{"label":"Johanna Bittenbinder","version":22,"id":"23180","lastModified":"1301901797000","name":"Johanna Bittenbinder","type":"Person","_key":"14106"} +{"label":"Stefan Murr","version":23,"id":"23181","lastModified":"1301901797000","name":"Stefan Murr","type":"Person","_key":"14107"} +{"label":"Volker Bruch","version":50,"id":"23182","lastModified":"1301901229000","name":"Volker Bruch","type":"Person","_key":"14108"} +{"label":"Death at a Funeral","description":"Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.","id":"2196","runtime":91,"imdbId":"tt0795368","homepage":"http:\/\/www.deathatafuneral-themovie.com\/","version":199,"lastModified":"1301901186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/494\/4bc915f0017a3c57fe008494\/death-at-a-funeral-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Death at a Funeral","releaseDate":1171238400000,"language":"en","tagline":"From director Frank Oz comes the story of a family that puts the F U in funeral.","type":"Movie","_key":"14109"} +{"label":"Keeley Hawes","version":45,"id":"22809","lastModified":"1301901306000","name":"Keeley Hawes","type":"Person","_key":"14110"} +{"label":"Andy Nyman","version":47,"id":"22810","lastModified":"1301901176000","name":"Andy Nyman","type":"Person","_key":"14111"} +{"label":"Daisy Donovan","version":30,"id":"22811","lastModified":"1301901647000","name":"Daisy Donovan","type":"Person","_key":"14112"} +{"label":"Jane Asher","version":37,"id":"22969","lastModified":"1301901856000","name":"Jane Asher","type":"Person","_key":"14113"} +{"label":"Si le vent soul\u00e8ve les sables","description":"No overview found.","id":"2197","runtime":96,"imdbId":"tt0889222","trailer":"http:\/\/www.youtube.com\/watch?v=149","homepage":"http:\/\/www.soundsofsand.be\/","version":54,"lastModified":"1301904692000","studio":"MEDIA Programme of the European Union","genre":"Drama","title":"Si le vent soul\u00e8ve les sables","releaseDate":1178064000000,"language":"en","type":"Movie","_key":"14114"} +{"label":"Marion H\u00e4nsel","version":17,"id":"22812","lastModified":"1301902119000","name":"Marion H\u00e4nsel","type":"Person","_key":"14115"} +{"label":"Isaka Sawadogo","version":21,"id":"23301","lastModified":"1301904135000","name":"Isaka Sawadogo","type":"Person","_key":"14116"} +{"label":"Carole Karemera","version":20,"id":"23302","lastModified":"1301901754000","name":"Carole Karemera","type":"Person","_key":"14117"} +{"label":"Asma Nouman Aden","version":19,"id":"23303","lastModified":"1301901918000","name":"Asma Nouman Aden","type":"Person","_key":"14118"} +{"label":"Sa\u00efd Abdallah Mohamed","version":17,"id":"23304","lastModified":"1301902168000","name":"Sa\u00efd Abdallah Mohamed","type":"Person","_key":"14119"} +{"label":"Ahmed Ibrahim Mohamed","version":19,"id":"23305","lastModified":"1301902119000","name":"Ahmed Ibrahim Mohamed","type":"Person","_key":"14120"} +{"label":"Marco Prince","version":27,"id":"23306","lastModified":"1301902041000","name":"Marco Prince","type":"Person","_key":"14121"} +{"label":"Moussa Assan","version":19,"id":"23307","lastModified":"1301902119000","name":"Moussa Assan","type":"Person","_key":"14122"} +{"label":"Himmel, Scheich und Wolkenbruch","description":"No overview found.","id":"2198","runtime":90,"imdbId":"tt0079296","version":56,"lastModified":"1301905657000","studio":"Terra-Filmkunst GmbH","genre":"Comedy","title":"Himmel, Scheich und Wolkenbruch","releaseDate":286156800000,"language":"en","type":"Movie","_key":"14123"} +{"label":"Dieter B\u00f6ttger","version":16,"id":"22517","lastModified":"1301901918000","name":"Dieter B\u00f6ttger","type":"Person","_key":"14124"} +{"label":"Peter Wyngarde","version":20,"id":"22529","lastModified":"1301902119000","name":"Peter Wyngarde","type":"Person","_key":"14125"} +{"label":"Marl\u00e8ne Charell","version":16,"id":"22530","lastModified":"1301903118000","name":"Marl\u00e8ne Charell","type":"Person","_key":"14126"} +{"label":"Felix Dvorak","version":17,"id":"22518","lastModified":"1301902119000","name":"Felix Dvorak","type":"Person","_key":"14127"} +{"label":"Herbert Fux","version":32,"id":"22531","lastModified":"1301901797000","name":"Herbert Fux","type":"Person","_key":"14128"} +{"label":"Guido Baumann","version":16,"id":"22532","lastModified":"1301902119000","name":"Guido Baumann","type":"Person","_key":"14129"} +{"label":"Maxi B\u00f6hm","version":16,"id":"22533","lastModified":"1301902119000","name":"Maxi B\u00f6hm","type":"Person","_key":"14130"} +{"label":"Rudi Carrell","version":18,"id":"22534","lastModified":"1301901629000","name":"Rudi Carrell","type":"Person","_key":"14131"} +{"label":"Heinz Eckner","version":16,"id":"22535","lastModified":"1301902119000","name":"Heinz Eckner","type":"Person","_key":"14132"} +{"label":"Sissy L\u00f6winger","version":17,"id":"22537","lastModified":"1301902119000","name":"Sissy L\u00f6winger","type":"Person","_key":"14133"} +{"label":"Karl Tischlinger","version":17,"id":"22538","lastModified":"1301902119000","name":"Karl Tischlinger","type":"Person","_key":"14134"} +{"label":"Ossy Kolmann","version":20,"id":"22536","lastModified":"1301903118000","name":"Ossy Kolmann","type":"Person","_key":"14135"} +{"label":"My Mom's a Werewolf","description":"No overview found.","id":"2199","runtime":90,"imdbId":"tt0097938","version":119,"lastModified":"1301906096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49e\/4bc915f1017a3c57fe00849e\/my-mom-s-a-werewolf-mid.jpg","studio":"Hairy Productions","genre":"Comedy","title":"My Mom's a Werewolf","releaseDate":626745600000,"language":"en","type":"Movie","_key":"14136"} +{"label":"Michael Fischa","version":20,"id":"100645","lastModified":"1301902999000","name":"Michael Fischa","type":"Person","_key":"14137"} +{"label":"Susan Blakely","version":27,"id":"22553","lastModified":"1301901264000","name":"Susan Blakely","type":"Person","_key":"14138"} +{"label":"Tina Caspary","version":20,"id":"22554","lastModified":"1301901669000","name":"Tina Caspary","type":"Person","_key":"14139"} +{"label":"Diana Barrows","version":18,"id":"22555","lastModified":"1301901918000","name":"Diana Barrows","type":"Person","_key":"14140"} +{"label":"Ruth Buzzi","version":28,"id":"22556","lastModified":"1301901646000","name":"Ruth Buzzi","type":"Person","_key":"14141"} +{"label":"Marilyn McCoo","version":16,"id":"22557","lastModified":"1301903119000","name":"Marilyn McCoo","type":"Person","_key":"14142"} +{"label":"Jakob, der L\u00fcgner","description":"No overview found.","id":"2200","runtime":100,"imdbId":"tt0071688","version":51,"lastModified":"1301904967000","studio":"DEFA","genre":"Comedy","title":"Jakob, der L\u00fcgner","releaseDate":183945600000,"language":"en","type":"Movie","_key":"14143"} +{"label":"Frank Beyer","version":25,"id":"22562","lastModified":"1301901482000","name":"Frank Beyer","type":"Person","_key":"14144"} +{"label":"Erwin Geschonneck","version":24,"id":"22570","lastModified":"1301901445000","name":"Erwin Geschonneck","type":"Person","_key":"14145"} +{"label":"Blanche Kommerell","version":22,"id":"22571","lastModified":"1301901567000","name":"Blanche Kommerell","type":"Person","_key":"14146"} +{"label":"Manuela Simon","version":16,"id":"22572","lastModified":"1301903115000","name":"Manuela Simon","type":"Person","_key":"14147"} +{"label":"Zsuzsa Gordon","version":16,"id":"22574","lastModified":"1301902119000","name":"Zsuzsa Gordon","type":"Person","_key":"14148"} +{"label":"Friedrich Richter","version":18,"id":"22575","lastModified":"1301902119000","name":"Friedrich Richter","type":"Person","_key":"14149"} +{"label":"Margit Bara","version":16,"id":"22576","lastModified":"1301903119000","name":"Margit Bara","type":"Person","_key":"14150"} +{"label":"Reimar J. Baur","version":17,"id":"22577","lastModified":"1301901918000","name":"Reimar J. Baur","type":"Person","_key":"14151"} +{"label":"Dezs\u00f6 Garas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37c\/4c47f50d5e73d61ef800037c\/dezso-garas-profile.jpg","version":23,"id":"123974","lastModified":"1301902579000","name":"Dezs\u00f6 Garas","type":"Person","_key":"14152"} +{"label":"Lassie Come Home","description":"After her destitute family is forced to sell her, a collie named Lassie escapes from her new owner and begins the long trek from Scotland to her Yorkshire home. (source: www.imdb.com)","id":"2202","runtime":88,"imdbId":"tt0036098","version":105,"lastModified":"1301906318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a3\/4bc915f1017a3c57fe0084a3\/lassie-come-home-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Lassie Come Home","releaseDate":-827971200000,"language":"en","type":"Movie","_key":"14153"} +{"label":"Edmund Gwenn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/788\/4c5c36a57b9aa151f3000788\/edmund-gwenn-profile.jpg","version":34,"id":"22600","lastModified":"1301901299000","name":"Edmund Gwenn","type":"Person","_key":"14154"} +{"label":"Ben Webster","version":17,"id":"22601","lastModified":"1301902115000","name":"Ben Webster","type":"Person","_key":"14155"} +{"label":"J. Pat O'Malley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fe\/4d9a94d47b9aa164cf0004fe\/j-pat-o-malley-profile.jpg","version":41,"id":"22602","lastModified":"1302034612000","name":"J. Pat O'Malley","type":"Person","_key":"14156"} +{"label":"John Rogers","version":27,"birthday":"-2566947600000","id":"22605","birthplace":"Manchester, England, UK","lastModified":"1301901774000","name":"John Rogers","type":"Person","_key":"14157"} +{"label":"Arthur Shields","version":31,"id":"22603","lastModified":"1301901490000","name":"Arthur Shields","type":"Person","_key":"14158"} +{"label":"Alec Craig","version":23,"id":"22606","lastModified":"1301902136000","name":"Alec Craig","type":"Person","_key":"14159"} +{"label":"F\u00fcr ein paar Filme mehr...","description":"No overview found.","id":"2203","runtime":30,"homepage":"http:\/\/www.killingpictures.com","version":14,"lastModified":"1301906194000","title":"F\u00fcr ein paar Filme mehr...","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"14160"} +{"label":"Alice in the Cities","description":"German journalist Philip Winter has a case of writer's block when trying to write an article about the United States.","id":"2204","runtime":110,"imdbId":"tt0069687","version":102,"lastModified":"1301903074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/114\/4bdafc39017a3c5d8b000114\/alice-in-den-stadten-mid.jpg","genre":"Drama","title":"Alice in the Cities","releaseDate":137980800000,"language":"en","type":"Movie","_key":"14161"} +{"label":"Micky Kley","version":17,"id":"22610","lastModified":"1301901918000","name":"Micky Kley","type":"Person","_key":"14162"} +{"label":"Yella Rottl\u00e4nder","version":18,"id":"22611","lastModified":"1301901982000","name":"Yella Rottl\u00e4nder","type":"Person","_key":"14163"} +{"label":"Lisa Kreuzer","version":31,"id":"22612","lastModified":"1301901838000","name":"Lisa Kreuzer","type":"Person","_key":"14164"} +{"label":"Edda K\u00f6chl","version":18,"id":"22613","lastModified":"1301901506000","name":"Edda K\u00f6chl","type":"Person","_key":"14165"} +{"label":"Ernest Boehm","version":17,"id":"22614","lastModified":"1301902119000","name":"Ernest Boehm","type":"Person","_key":"14166"} +{"label":"Sam Presti","version":17,"id":"22615","lastModified":"1301903118000","name":"Sam Presti","type":"Person","_key":"14167"} +{"label":"Lois Moran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/251\/4c604dba7b9aa172dd000251\/lois-moran-profile.jpg","version":19,"id":"22616","lastModified":"1301902057000","name":"Lois Moran","type":"Person","_key":"14168"} +{"label":"Real Men Don't Eat Gummi Bears","description":"No overview found.","id":"2205","runtime":89,"imdbId":"tt0097464","version":40,"lastModified":"1301907434000","studio":"Lisa Film","genre":"Comedy","title":"Real Men Don't Eat Gummi Bears","releaseDate":619315200000,"language":"en","type":"Movie","_key":"14169"} +{"label":"Walter Bannert","version":20,"id":"22617","lastModified":"1301901796000","name":"Walter Bannert","type":"Person","_key":"14170"} +{"label":"Amadeus August","version":21,"id":"22622","lastModified":"1301901448000","name":"Amadeus August","type":"Person","_key":"14171"} +{"label":"Richy Guitar","description":"No overview found.","id":"2206","runtime":90,"imdbId":"tt0090381","version":52,"lastModified":"1301905722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b0\/4bc915f4017a3c57fe0084b0\/richy-guitar-mid.jpg","genre":"Musical","title":"Richy Guitar","releaseDate":441763200000,"language":"en","type":"Movie","_key":"14172"} +{"label":"Michael Laux","version":18,"id":"22625","lastModified":"1301901829000","name":"Michael Laux","type":"Person","_key":"14173"} +{"label":"Farin Urlaub","version":20,"id":"22629","lastModified":"1301901798000","name":"Farin Urlaub","type":"Person","_key":"14174"} +{"label":"Bela B. Felsenheimer","version":27,"id":"22630","lastModified":"1301901450000","name":"Bela B. Felsenheimer","type":"Person","_key":"14175"} +{"label":"Hans Runge","version":18,"id":"22631","lastModified":"1301901798000","name":"Hans Runge","type":"Person","_key":"14176"} +{"label":"Kristina Raschen","version":16,"id":"22632","lastModified":"1301903119000","name":"Kristina Raschen","type":"Person","_key":"14177"} +{"label":"Ingrid van Bergen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a50\/4cdb12035e73d676cf000a50\/ingrid-van-bergen-profile.jpg","version":25,"id":"22633","lastModified":"1301901530000","name":"Ingrid van Bergen","type":"Person","_key":"14178"} +{"label":"Horst Pinnow","version":16,"id":"22634","lastModified":"1301903119000","name":"Horst Pinnow","type":"Person","_key":"14179"} +{"label":"Rolf Eden","version":19,"id":"22635","lastModified":"1301902013000","name":"Rolf Eden","type":"Person","_key":"14180"} +{"label":"16 Blocks","description":"An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.","id":"2207","runtime":102,"imdbId":"tt0450232","trailer":"http:\/\/www.youtube.com\/watch?v=C_FfgGZl9RE","version":246,"lastModified":"1301901318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c1\/4bc915f6017a3c57fe0084c1\/16-blocks-mid.jpg","studio":"Cheyenne Enterprises","genre":"Action","title":"16 Blocks","releaseDate":1141171200000,"language":"en","tagline":"For a New York cop and his witness, the distance between life and death just got very short.","type":"Movie","_key":"14181"} +{"label":"Jenna Stern","version":21,"id":"22820","lastModified":"1301901123000","name":"Jenna Stern","type":"Person","_key":"14182"} +{"label":"David Zayas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/436\/4ca5db3e5e73d636fb000436\/david-zayas-profile.jpg","version":61,"birthday":"-90000000","id":"22821","birthplace":"Puerto Rico","lastModified":"1301904062000","name":"David Zayas","type":"Person","_key":"14183"} +{"label":"Genesis - Live at Wembley Stadium 1988","description":"1. Mama 2. Abacab 3. Domino (Part 1: In The Glow of The Night) 4. Domino (Part 2: The Last Domino) 5. That's All 6. Brazilian 7. Land Of Confusion 8. Tonight, Tonight, Tonight 9. Throwing It All Away 10. Home By The Sea 11. Invisible Touch 12. Drum Duet 13. Los Endos 14. Turn It On Again FILMED AT WEMBLEY STADIUM DURING FOUR SOLD OUT CONCERTS 1st-4th JULY 1987 TO AN AUDIENCE OF 288 000.","id":"2208","runtime":131,"imdbId":"tt0459294","version":76,"lastModified":"1301905010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4d004e8f5e73d6299e0060ab\/genesis-live-at-wembley-stadium-1988-mid.jpg","genre":"Documentary","title":"Genesis - Live at Wembley Stadium 1988","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"14184"} +{"label":"James Yukich","version":24,"id":"22636","lastModified":"1301901973000","name":"James Yukich","type":"Person","_key":"14185"} +{"label":"Tony Banks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4bd6ef2a017a3c21e90000e0\/tony-banks-profile.jpg","version":44,"id":"110066","lastModified":"1301902201000","name":"Tony Banks","type":"Person","_key":"14186"} +{"label":"Mike Rutherford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4bd6ef14017a3c21f600009f\/mike-rutherford-profile.jpg","version":39,"id":"110067","lastModified":"1301902530000","name":"Mike Rutherford","type":"Person","_key":"14187"} +{"label":"Phil Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a1\/4bd6ed05017a3c21ec0000a1\/phil-collins-profile.jpg","version":67,"id":"110001","lastModified":"1301901358000","name":"Phil Collins","type":"Person","_key":"14188"} +{"label":"Daryl Stuermer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4bd6eda4017a3c21f6000096\/daryl-stuermer-profile.jpg","version":41,"id":"110023","lastModified":"1301902513000","name":"Daryl Stuermer","type":"Person","_key":"14189"} +{"label":"Chester Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4bd6eec2017a3c21ec0000ad\/chester-thompson-profile.jpg","version":41,"id":"22645","lastModified":"1301903119000","name":"Chester Thompson","type":"Person","_key":"14190"} +{"label":"Hostess","description":"No overview found.","id":"2209","runtime":98,"imdbId":"tt0074645","version":137,"lastModified":"1301907291000","studio":"DEFA","genre":"Comedy","title":"Hostess","releaseDate":193017600000,"language":"en","type":"Movie","_key":"14191"} +{"label":"Rolf R\u00f6mer","version":18,"id":"22647","lastModified":"1301901747000","name":"Rolf R\u00f6mer","type":"Person","_key":"14192"} +{"label":"Angela Brunner","version":17,"id":"22662","lastModified":"1301901911000","name":"Angela Brunner","type":"Person","_key":"14193"} +{"label":"Annekathrin B\u00fcrger","version":20,"id":"22663","lastModified":"1301901500000","name":"Annekathrin B\u00fcrger","type":"Person","_key":"14194"} +{"label":"Veronika Fischer","version":17,"id":"22653","lastModified":"1301901747000","name":"Veronika Fischer","type":"Person","_key":"14195"} +{"label":"Fred Delmare","version":26,"id":"22594","lastModified":"1301901572000","name":"Fred Delmare","type":"Person","_key":"14196"} +{"label":"Nina Hagen","version":20,"id":"22652","lastModified":"1301901911000","name":"Nina Hagen","type":"Person","_key":"14197"} +{"label":"J\u00fcrgen Heinrich","version":21,"id":"22664","lastModified":"1301901973000","name":"J\u00fcrgen Heinrich","type":"Person","_key":"14198"} +{"label":"Manfred Karge","version":19,"id":"22665","lastModified":"1301901799000","name":"Manfred Karge","type":"Person","_key":"14199"} +{"label":"Roswitha Marks","version":16,"id":"22666","lastModified":"1301902115000","name":"Roswitha Marks","type":"Person","_key":"14200"} +{"label":"Berndt Stichler","version":16,"id":"22667","lastModified":"1301902115000","name":"Berndt Stichler","type":"Person","_key":"14201"} +{"label":"Christiane Ufholz","version":17,"id":"22654","lastModified":"1301902115000","name":"Christiane Ufholz","type":"Person","_key":"14202"} +{"label":"Earth Girls Are Easy","description":"Three furry, crazy aliens crash land in a California girls pool. Comedy, music and romance follow.","id":"2210","runtime":100,"imdbId":"tt0097257","trailer":"http:\/\/www.youtube.com\/watch?v=eeydSb0FOko","version":108,"lastModified":"1301903060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d3\/4bc915f7017a3c57fe0084d3\/earth-girls-are-easy-mid.jpg","studio":"De Laurentiis","genre":"Comedy","title":"Earth Girls Are Easy","releaseDate":567993600000,"language":"en","type":"Movie","_key":"14203"} +{"label":"Julien Temple","version":27,"id":"22669","lastModified":"1301901466000","name":"Julien Temple","type":"Person","_key":"14204"} +{"label":"Damon Wayans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4c3dae0e7b9aa13a3f0000eb\/damon-wayans-profile.jpg","version":47,"id":"22675","lastModified":"1302065074000","name":"Damon Wayans","type":"Person","_key":"14205"} +{"label":"Julie Brown","version":20,"id":"22670","lastModified":"1301901754000","name":"Julie Brown","type":"Person","_key":"14206"} +{"label":"Aimee & Jaguar","description":"No overview found.","id":"2211","runtime":125,"imdbId":"tt0130444","trailer":"http:\/\/www.youtube.com\/watch?v=140","version":151,"lastModified":"1301991723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dd\/4d9aed395e73d647610005dd\/aimee-jaguar-mid.jpg","studio":"Senator Film Produktion","genre":"Drama","title":"Aimee & Jaguar","releaseDate":918691200000,"language":"en","type":"Movie","_key":"14207"} +{"label":"Max F\u00e4rberb\u00f6ck","version":21,"id":"22677","lastModified":"1301901747000","name":"Max F\u00e4rberb\u00f6ck","type":"Person","_key":"14208"} +{"label":"Maria Schrader","version":36,"id":"22686","lastModified":"1301901455000","name":"Maria Schrader","type":"Person","_key":"14209"} +{"label":"Johanna Wokalek","version":35,"id":"22687","lastModified":"1301901213000","name":"Johanna Wokalek","type":"Person","_key":"14210"} +{"label":"Elisabeth Degen","version":17,"id":"22688","lastModified":"1301902115000","name":"Elisabeth Degen","type":"Person","_key":"14211"} +{"label":"Inge Keller","version":17,"id":"22689","lastModified":"1301902115000","name":"Inge Keller","type":"Person","_key":"14212"} +{"label":"Kyra Mladeck","version":18,"id":"22690","lastModified":"1301902048000","name":"Kyra Mladeck","type":"Person","_key":"14213"} +{"label":"Nightwatch","description":"He's the prime suspect in a terrifying mystery. The police are after him and so is the murderer.","id":"2212","runtime":102,"imdbId":"tt0119791","version":98,"lastModified":"1301902547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4c34952d7b9aa17a3400006e\/nightwatch-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Nightwatch","releaseDate":854755200000,"language":"en","type":"Movie","_key":"14214"} +{"label":"Ole Bornedal","version":28,"id":"22676","lastModified":"1301901696000","name":"Ole Bornedal","type":"Person","_key":"14215"} +{"label":"Zerschmetterte Tr\u00e4ume - Eine Liebe in Fesseln","description":"No overview found.","id":"2213","runtime":93,"imdbId":"tt0168267","version":46,"lastModified":"1301906763000","studio":"Zeitsprung Entertainment","genre":"Drama","title":"Zerschmetterte Tr\u00e4ume - Eine Liebe in Fesseln","releaseDate":905299200000,"language":"en","type":"Movie","_key":"14216"} +{"label":"Johannes Fabrick","version":18,"id":"22691","lastModified":"1301902002000","name":"Johannes Fabrick","type":"Person","_key":"14217"} +{"label":"Sophie Sch\u00fctt","version":19,"id":"22699","lastModified":"1301901522000","name":"Sophie Sch\u00fctt","type":"Person","_key":"14218"} +{"label":"Hardy Kr\u00fcger Jr.","version":20,"id":"22700","lastModified":"1301901836000","name":"Hardy Kr\u00fcger Jr.","type":"Person","_key":"14219"} +{"label":"Karlheinz Ciba","version":17,"id":"22701","lastModified":"1301902013000","name":"Karlheinz Ciba","type":"Person","_key":"14220"} +{"label":"Nicolas K\u00f6nig","version":17,"id":"22702","lastModified":"1301901663000","name":"Nicolas K\u00f6nig","type":"Person","_key":"14221"} +{"label":"Diana K\u00f6rner","version":20,"id":"22703","lastModified":"1301901662000","name":"Diana K\u00f6rner","type":"Person","_key":"14222"} +{"label":"Samy Orfgen","version":19,"id":"22704","lastModified":"1301901974000","name":"Samy Orfgen","type":"Person","_key":"14223"} +{"label":"Jens Neuhaus","version":17,"id":"22705","lastModified":"1301902013000","name":"Jens Neuhaus","type":"Person","_key":"14224"} +{"label":"Heimliche Ehen","description":"No overview found.","id":"2214","runtime":91,"imdbId":"tt0049298","version":58,"lastModified":"1301907297000","studio":"DEFA","genre":"Drama","title":"Heimliche Ehen","releaseDate":-439603200000,"language":"en","type":"Movie","_key":"14225"} +{"label":"Paul Heidemann","version":18,"id":"22711","lastModified":"1301901434000","name":"Paul Heidemann","type":"Person","_key":"14226"} +{"label":"Gerd Michael Henneberg","version":16,"id":"22712","lastModified":"1301901482000","name":"Gerd Michael Henneberg","type":"Person","_key":"14227"} +{"label":"Helga Jordan","version":17,"id":"22713","lastModified":"1301901506000","name":"Helga Jordan","type":"Person","_key":"14228"} +{"label":"Siegfried H\u00f6mke","version":16,"id":"22714","lastModified":"1301901482000","name":"Siegfried H\u00f6mke","type":"Person","_key":"14229"} +{"label":"Waltraud Kogel","version":17,"id":"22716","lastModified":"1301901982000","name":"Waltraud Kogel","type":"Person","_key":"14230"} +{"label":"Franz Kutschera","version":16,"id":"22717","lastModified":"1301902119000","name":"Franz Kutschera","type":"Person","_key":"14231"} +{"label":"Otto Lange","version":16,"id":"22718","lastModified":"1301902119000","name":"Otto Lange","type":"Person","_key":"14232"} +{"label":"Marga Legal","version":18,"id":"22719","lastModified":"1301901918000","name":"Marga Legal","type":"Person","_key":"14233"} +{"label":"Theo Shall","version":16,"id":"22720","lastModified":"1301902118000","name":"Theo Shall","type":"Person","_key":"14234"} +{"label":"Steffie Spira","version":18,"id":"22721","lastModified":"1301902119000","name":"Steffie Spira","type":"Person","_key":"14235"} +{"label":"Margret Stange","version":16,"id":"22722","lastModified":"1301903119000","name":"Margret Stange","type":"Person","_key":"14236"} +{"label":"Hubert Suschka","version":18,"id":"22723","lastModified":"1301901576000","name":"Hubert Suschka","type":"Person","_key":"14237"} +{"label":"Hans Klering","version":22,"id":"23261","lastModified":"1301902118000","name":"Hans Klering","type":"Person","_key":"14238"} +{"label":"K\u00f6nigskinder","description":"No overview found.","id":"2215","runtime":89,"imdbId":"tt0056161","version":73,"lastModified":"1301416766000","studio":"DEFA","genre":"Drama","title":"K\u00f6nigskinder","releaseDate":-238809600000,"language":"en","type":"Movie","_key":"14239"} +{"label":"Natalja J. Iljina","version":17,"id":"22733","lastModified":"1301902013000","name":"Natalja J. Iljina","type":"Person","_key":"14240"} +{"label":"Gertraud Kreissig","version":18,"id":"22734","lastModified":"1301901669000","name":"Gertraud Kreissig","type":"Person","_key":"14241"} +{"label":"Manfred Krug","version":24,"id":"22735","lastModified":"1301901500000","name":"Manfred Krug","type":"Person","_key":"14242"} +{"label":"Betty Loewen","version":17,"id":"22736","lastModified":"1301901982000","name":"Betty Loewen","type":"Person","_key":"14243"} +{"label":"Walter Lendrich","version":17,"id":"22737","lastModified":"1301901629000","name":"Walter Lendrich","type":"Person","_key":"14244"} +{"label":"Monika Lennartz","version":17,"id":"22738","lastModified":"1301902118000","name":"Monika Lennartz","type":"Person","_key":"14245"} +{"label":"Nikolai J. Lukinow","version":17,"id":"22739","lastModified":"1301901681000","name":"Nikolai J. Lukinow","type":"Person","_key":"14246"} +{"label":"Talla S. Nowikowa","version":16,"id":"22741","lastModified":"1301901754000","name":"Talla S. Nowikowa","type":"Person","_key":"14247"} +{"label":"Leonid Swjetlow","version":17,"id":"22742","lastModified":"1301903115000","name":"Leonid Swjetlow","type":"Person","_key":"14248"} +{"label":"Ulrich Thein","version":20,"id":"22743","lastModified":"1301901448000","name":"Ulrich Thein","type":"Person","_key":"14249"} +{"label":"Erik Veldre","version":17,"id":"22744","lastModified":"1301901754000","name":"Erik Veldre","type":"Person","_key":"14250"} +{"label":"G\u00fcnter Naumann","version":22,"id":"23070","lastModified":"1301902168000","name":"G\u00fcnter Naumann","type":"Person","_key":"14251"} +{"label":"F\u00fcnf Patronenh\u00fclsen","description":"No overview found.","id":"2216","runtime":90,"imdbId":"tt0053846","version":57,"lastModified":"1301905653000","studio":"DEFA","genre":"History","title":"F\u00fcnf Patronenh\u00fclsen","releaseDate":-289094400000,"language":"en","type":"Movie","_key":"14252"} +{"label":"Dom de Beern","version":16,"id":"22748","lastModified":"1301901911000","name":"Dom de Beern","type":"Person","_key":"14253"} +{"label":"Jochen Diestelmann","version":18,"id":"22749","lastModified":"1301901628000","name":"Jochen Diestelmann","type":"Person","_key":"14254"} +{"label":"Fritz Diez","version":16,"id":"22750","lastModified":"1301902115000","name":"Fritz Diez","type":"Person","_key":"14255"} +{"label":"Fritz Ernst Fechner","version":16,"id":"22751","lastModified":"1301902115000","name":"Fritz Ernst Fechner","type":"Person","_key":"14256"} +{"label":"Hans Finohr","version":17,"id":"22752","lastModified":"1301901753000","name":"Hans Finohr","type":"Person","_key":"14257"} +{"label":"Harald Jopt","version":16,"id":"22753","lastModified":"1301901911000","name":"Harald Jopt","type":"Person","_key":"14258"} +{"label":"Edwin Marian","version":18,"id":"22754","lastModified":"1301901754000","name":"Edwin Marian","type":"Person","_key":"14259"} +{"label":"Walter Schramm","version":16,"id":"22755","lastModified":"1301902115000","name":"Walter Schramm","type":"Person","_key":"14260"} +{"label":"Ernst-Georg Schwill","version":19,"id":"22756","lastModified":"1301901963000","name":"Ernst-Georg Schwill","type":"Person","_key":"14261"} +{"label":"...und deine Liebe auch","description":"No overview found.","id":"2217","runtime":89,"imdbId":"tt0055716","version":50,"lastModified":"1301906181000","studio":"DEFA","genre":"Drama","title":"...und deine Liebe auch","releaseDate":-229737600000,"language":"en","type":"Movie","_key":"14262"} +{"label":"Frank Vogel","version":19,"id":"22757","lastModified":"1301901842000","name":"Frank Vogel","type":"Person","_key":"14263"} +{"label":"Bertina Acevedo","version":17,"id":"22766","lastModified":"1301901576000","name":"Bertina Acevedo","type":"Person","_key":"14264"} +{"label":"Alfonso Arau","version":38,"id":"22767","lastModified":"1301901229000","name":"Alfonso Arau","type":"Person","_key":"14265"} +{"label":"Maria Besendahl","version":19,"id":"22768","lastModified":"1301901663000","name":"Maria Besendahl","type":"Person","_key":"14266"} +{"label":"Marita B\u00f6hme","version":19,"id":"22769","lastModified":"1301903118000","name":"Marita B\u00f6hme","type":"Person","_key":"14267"} +{"label":"Katharina Lind","version":20,"id":"22770","lastModified":"1301901585000","name":"Katharina Lind","type":"Person","_key":"14268"} +{"label":"Gisela Strauss","version":17,"id":"22771","lastModified":"1301901796000","name":"Gisela Strauss","type":"Person","_key":"14269"} +{"label":"Kati Sz\u00e9kely","version":17,"id":"22772","lastModified":"1301901805000","name":"Kati Sz\u00e9kely","type":"Person","_key":"14270"} +{"label":"Doris Thalmer","version":17,"id":"22773","lastModified":"1301902012000","name":"Doris Thalmer","type":"Person","_key":"14271"} +{"label":"Die Hosen des Ritters von Bredow","description":"No overview found.","id":"2218","runtime":95,"imdbId":"tt0070192","version":60,"lastModified":"1301908363000","studio":"DEFA","genre":"Drama","title":"Die Hosen des Ritters von Bredow","releaseDate":115603200000,"language":"en","type":"Movie","_key":"14272"} +{"label":"Konrad Petzold","version":23,"id":"22775","lastModified":"1301901964000","name":"Konrad Petzold","type":"Person","_key":"14273"} +{"label":"Maya L\u00f6ffler","version":17,"id":"22783","lastModified":"1301901681000","name":"Maya L\u00f6ffler","type":"Person","_key":"14274"} +{"label":"Carin Abicht","version":17,"id":"22785","lastModified":"1301902012000","name":"Carin Abicht","type":"Person","_key":"14275"} +{"label":"Kati Bus","version":17,"id":"22786","lastModified":"1301902012000","name":"Kati Bus","type":"Person","_key":"14276"} +{"label":"Antal Farkas","version":19,"id":"22787","lastModified":"1301901984000","name":"Antal Farkas","type":"Person","_key":"14277"} +{"label":"Stefan Lisewski","version":18,"id":"22789","lastModified":"1301902118000","name":"Stefan Lisewski","type":"Person","_key":"14278"} +{"label":"Silvia Neef","version":16,"id":"22790","lastModified":"1301903113000","name":"Silvia Neef","type":"Person","_key":"14279"} +{"label":"Petr Skarke","version":17,"id":"22791","lastModified":"1301902052000","name":"Petr Skarke","type":"Person","_key":"14280"} +{"label":"Lissy Tempelhof","version":16,"id":"22792","lastModified":"1301902118000","name":"Lissy Tempelhof","type":"Person","_key":"14281"} +{"label":"Axel Triebel","version":18,"id":"22793","lastModified":"1301901754000","name":"Axel Triebel","type":"Person","_key":"14282"} +{"label":"Gerry Wolff","version":21,"id":"22982","lastModified":"1301901976000","name":"Gerry Wolff","type":"Person","_key":"14283"} +{"label":"Hannjo Hasse","version":23,"id":"22589","lastModified":"1301901801000","name":"Hannjo Hasse","type":"Person","_key":"14284"} +{"label":"Der Dritte","description":"No overview found.","id":"2219","runtime":107,"imdbId":"tt0068508","version":87,"lastModified":"1301417585000","studio":"DEFA","genre":"Drama","title":"Der Dritte","releaseDate":69552000000,"language":"en","type":"Movie","_key":"14285"} +{"label":"Egon G\u00fcnther","version":18,"id":"22833","lastModified":"1301902118000","name":"Egon G\u00fcnther","type":"Person","_key":"14286"} +{"label":"Elke Niebelsch\u00fctz","version":16,"id":"22844","lastModified":"1301901629000","name":"Elke Niebelsch\u00fctz","type":"Person","_key":"14287"} +{"label":"Christoph Bayertt","version":18,"id":"22848","lastModified":"1301901995000","name":"Christoph Bayertt","type":"Person","_key":"14288"} +{"label":"Barbara Dittus","version":20,"id":"22849","lastModified":"1301901629000","name":"Barbara Dittus","type":"Person","_key":"14289"} +{"label":"Tamara Doege","version":16,"id":"22850","lastModified":"1301901918000","name":"Tamara Doege","type":"Person","_key":"14290"} +{"label":"Ute Garnitz","version":17,"id":"22851","lastModified":"1301902118000","name":"Ute Garnitz","type":"Person","_key":"14291"} +{"label":"Jutta Hoffmann","version":22,"id":"22852","lastModified":"1301901504000","name":"Jutta Hoffmann","type":"Person","_key":"14292"} +{"label":"Peter K\u00f6hncke","version":16,"id":"22853","lastModified":"1301903118000","name":"Peter K\u00f6hncke","type":"Person","_key":"14293"} +{"label":"Rolf Ludwig","version":20,"id":"22854","lastModified":"1301901546000","name":"Rolf Ludwig","type":"Person","_key":"14294"} +{"label":"Erika Pelikowsky","version":18,"id":"22855","lastModified":"1301902118000","name":"Erika Pelikowsky","type":"Person","_key":"14295"} +{"label":"Jaecki Schwarz","version":21,"id":"22856","lastModified":"1301901962000","name":"Jaecki Schwarz","type":"Person","_key":"14296"} +{"label":"Januskopf","description":"No overview found.","id":"2220","runtime":95,"imdbId":"tt0068758","version":59,"lastModified":"1301908362000","studio":"DEFA","title":"Januskopf","releaseDate":84067200000,"language":"en","type":"Movie","_key":"14297"} +{"label":"Irene Maetzig","version":16,"id":"22804","lastModified":"1301902118000","name":"Irene Maetzig","type":"Person","_key":"14298"} +{"label":"Kurt Maetzig","version":23,"id":"22795","lastModified":"1301901449000","name":"Kurt Maetzig","type":"Person","_key":"14299"} +{"label":"Ursula Am-Ende","version":17,"id":"22822","lastModified":"1301901810000","name":"Ursula Am-Ende","type":"Person","_key":"14300"} +{"label":"Viktor Avdyushko","version":19,"id":"22823","lastModified":"1301903118000","name":"Viktor Avdyushko","type":"Person","_key":"14301"} +{"label":"Norbert Christian","version":18,"id":"22824","lastModified":"1301901918000","name":"Norbert Christian","type":"Person","_key":"14302"} +{"label":"G\u00fcnter Drescher","version":16,"id":"22825","lastModified":"1301902118000","name":"G\u00fcnter Drescher","type":"Person","_key":"14303"} +{"label":"Werner Ehrlicher","version":16,"id":"22826","lastModified":"1301902118000","name":"Werner Ehrlicher","type":"Person","_key":"14304"} +{"label":"Daniela Golz","version":16,"id":"22827","lastModified":"1301903119000","name":"Daniela Golz","type":"Person","_key":"14305"} +{"label":"Harald Hauser","version":18,"id":"22828","lastModified":"1301902012000","name":"Harald Hauser","type":"Person","_key":"14306"} +{"label":"Valeria Marian","version":16,"id":"22829","lastModified":"1301902118000","name":"Valeria Marian","type":"Person","_key":"14307"} +{"label":"Katja Paryla","version":16,"id":"22830","lastModified":"1301902118000","name":"Katja Paryla","type":"Person","_key":"14308"} +{"label":"Galina Polskikh","version":18,"id":"22831","lastModified":"1301902054000","name":"Galina Polskikh","type":"Person","_key":"14309"} +{"label":"Tamara Sovchi","version":17,"id":"22832","lastModified":"1301903119000","name":"Tamara Sovchi","type":"Person","_key":"14310"} +{"label":"Eddie Cochran & Friends","description":"No overview found.","id":"2221","runtime":55,"version":52,"lastModified":"1301907290000","genre":"Documentary","title":"Eddie Cochran & Friends","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"14311"} +{"label":"Artwork Team","version":17,"id":"22869","lastModified":"1301901911000","name":"Artwork Team","type":"Person","_key":"14312"} +{"label":"Eddie Cochran","version":16,"id":"22857","lastModified":"1301901911000","name":"Eddie Cochran","type":"Person","_key":"14313"} +{"label":"Eddie Cochran Band","version":16,"id":"22871","lastModified":"1301901585000","name":"Eddie Cochran Band","type":"Person","_key":"14314"} +{"label":"Joey Dee","version":18,"id":"22858","lastModified":"1301901976000","name":"Joey Dee","type":"Person","_key":"14315"} +{"label":"The Starliters","version":16,"id":"22872","lastModified":"1301901585000","name":"The Starliters","type":"Person","_key":"14316"} +{"label":"Jerry Lee Lewis","version":18,"id":"22859","lastModified":"1301902115000","name":"Jerry Lee Lewis","type":"Person","_key":"14317"} +{"label":"Chuck Berry","version":20,"id":"22860","lastModified":"1301901911000","name":"Chuck Berry","type":"Person","_key":"14318"} +{"label":"Carl Perkins","version":16,"id":"22861","lastModified":"1301902115000","name":"Carl Perkins","type":"Person","_key":"14319"} +{"label":"Fats Domino","version":16,"id":"22862","lastModified":"1301901911000","name":"Fats Domino","type":"Person","_key":"14320"} +{"label":"Bo Diddley","version":16,"id":"22863","lastModified":"1301902115000","name":"Bo Diddley","type":"Person","_key":"14321"} +{"label":"Gene Vincent","version":16,"id":"22864","lastModified":"1301902115000","name":"Gene Vincent","type":"Person","_key":"14322"} +{"label":"Little Richard","version":25,"id":"22865","lastModified":"1301902009000","name":"Little Richard","type":"Person","_key":"14323"} +{"label":"Bill Haley","version":16,"id":"22866","lastModified":"1301902115000","name":"Bill Haley","type":"Person","_key":"14324"} +{"label":"His Comets","version":15,"id":"22873","lastModified":"1301902115000","name":"His Comets","type":"Person","_key":"14325"} +{"label":"Buddy Holly","version":16,"id":"22867","lastModified":"1301901911000","name":"Buddy Holly","type":"Person","_key":"14326"} +{"label":"Roy Orbison","version":20,"id":"22868","lastModified":"1301901951000","name":"Roy Orbison","type":"Person","_key":"14327"} +{"label":"Christine","id":"2222","runtime":96,"imdbId":"tt0056933","version":122,"lastModified":"1301906761000","studio":"DEFA","genre":"Drama","title":"Christine","releaseDate":151027200000,"language":"en","type":"Movie","_key":"14328"} +{"label":"Preludio 11","description":"No overview found.","id":"2223","runtime":90,"imdbId":"tt0058490","version":63,"lastModified":"1301907443000","studio":"DEFA","genre":"Drama","title":"Preludio 11","releaseDate":-182649600000,"language":"en","type":"Movie","_key":"14329"} +{"label":"Miguel Benavides","version":17,"id":"22884","lastModified":"1301902012000","name":"Miguel Benavides","type":"Person","_key":"14330"} +{"label":"Roberto Blanco","version":19,"id":"22885","lastModified":"1301901799000","name":"Roberto Blanco","type":"Person","_key":"14331"} +{"label":"Aurora Depestre","version":16,"id":"22886","lastModified":"1301903119000","name":"Aurora Depestre","type":"Person","_key":"14332"} +{"label":"Wilfried Ortmann","version":17,"id":"22888","lastModified":"1301902167000","name":"Wilfried Ortmann","type":"Person","_key":"14333"} +{"label":"Carlos L\u00f3pez Moctezuma","version":18,"id":"22890","lastModified":"1301902168000","name":"Carlos L\u00f3pez Moctezuma","type":"Person","_key":"14334"} +{"label":"G\u00fcnther Simon","version":24,"id":"23052","lastModified":"1301901976000","name":"G\u00fcnther Simon","type":"Person","_key":"14335"} +{"label":"Hilmar Thate","version":25,"id":"23342","lastModified":"1301901824000","name":"Hilmar Thate","type":"Person","_key":"14336"} +{"label":"Alaskaf\u00fcchse","description":"No overview found.","id":"2225","runtime":95,"imdbId":"tt0057830","version":57,"lastModified":"1301904023000","studio":"DEFA","genre":"Action","title":"Alaskaf\u00fcchse","releaseDate":-170467200000,"language":"en","type":"Movie","_key":"14337"} +{"label":"Werner W. Wallroth","version":17,"id":"22895","lastModified":"1301902118000","name":"Werner W. Wallroth","type":"Person","_key":"14338"} +{"label":"Hans-Joachim Blochwitz","version":16,"id":"22898","lastModified":"1301901754000","name":"Hans-Joachim Blochwitz","type":"Person","_key":"14339"} +{"label":"Werner Ilsemann","version":16,"id":"22899","lastModified":"1301903119000","name":"Werner Ilsemann","type":"Person","_key":"14340"} +{"label":"Wolf Kaiser","version":18,"id":"22900","lastModified":"1301901799000","name":"Wolf Kaiser","type":"Person","_key":"14341"} +{"label":"Hans-Peter Minetti","version":18,"id":"22902","lastModified":"1301901918000","name":"Hans-Peter Minetti","type":"Person","_key":"14342"} +{"label":"Gerhard Rachold","version":18,"id":"22903","lastModified":"1301902121000","name":"Gerhard Rachold","type":"Person","_key":"14343"} +{"label":"Rolf Schneider","version":16,"id":"22904","lastModified":"1301901754000","name":"Rolf Schneider","type":"Person","_key":"14344"} +{"label":"Friederike Aust","version":17,"id":"22905","lastModified":"1301901805000","name":"Friederike Aust","type":"Person","_key":"14345"} +{"label":"Hans-Joachim Teuscher","version":19,"id":"22906","lastModified":"1301901678000","name":"Hans-Joachim Teuscher","type":"Person","_key":"14346"} +{"label":"Klaus-J\u00fcrgen Tews","version":17,"id":"22907","lastModified":"1301901754000","name":"Klaus-J\u00fcrgen Tews","type":"Person","_key":"14347"} +{"label":"Thomas Weisgerber","version":16,"id":"22908","lastModified":"1301901754000","name":"Thomas Weisgerber","type":"Person","_key":"14348"} +{"label":"Hans Robert Wille","version":15,"id":"22909","lastModified":"1301901754000","name":"Hans Robert Wille","type":"Person","_key":"14349"} +{"label":"Helmut Ziehlke","version":16,"id":"22910","lastModified":"1301901754000","name":"Helmut Ziehlke","type":"Person","_key":"14350"} +{"label":"Ivan Malr\u00e9","version":18,"id":"22922","lastModified":"1301901805000","name":"Ivan Malr\u00e9","type":"Person","_key":"14351"} +{"label":"Ein Lord am Alexanderplatz","description":"No overview found.","id":"2226","runtime":111,"imdbId":"tt0061919","version":55,"lastModified":"1301908362000","studio":"DEFA","genre":"Comedy","title":"Ein Lord am Alexanderplatz","releaseDate":-89424000000,"language":"en","type":"Movie","_key":"14352"} +{"label":"G\u00fcnter Reisch","version":23,"id":"22911","lastModified":"1301901754000","name":"G\u00fcnter Reisch","type":"Person","_key":"14353"} +{"label":"Angelica Domr\u00f6se","version":27,"id":"22917","lastModified":"1301901289000","name":"Angelica Domr\u00f6se","type":"Person","_key":"14354"} +{"label":"Joachim Bober","version":16,"id":"22918","lastModified":"1301903113000","name":"Joachim Bober","type":"Person","_key":"14355"} +{"label":"Erika Dunkelmann","version":17,"id":"22919","lastModified":"1301901754000","name":"Erika Dunkelmann","type":"Person","_key":"14356"} +{"label":"Hannes Fischer","version":20,"id":"22920","lastModified":"1301901918000","name":"Hannes Fischer","type":"Person","_key":"14357"} +{"label":"Monika Gabriel","version":17,"id":"22921","lastModified":"1301901825000","name":"Monika Gabriel","type":"Person","_key":"14358"} +{"label":"Willi Narloch","version":17,"id":"22923","lastModified":"1301902012000","name":"Willi Narloch","type":"Person","_key":"14359"} +{"label":"Willi Schwabe","version":17,"id":"22924","lastModified":"1301901918000","name":"Willi Schwabe","type":"Person","_key":"14360"} +{"label":"Friedo Solter","version":19,"id":"22879","lastModified":"1301903120000","name":"Friedo Solter","type":"Person","_key":"14361"} +{"label":"Rolf Ripperger","version":16,"id":"22925","lastModified":"1301901918000","name":"Rolf Ripperger","type":"Person","_key":"14362"} +{"label":"Nackt unter W\u00f6lfen","description":"No overview found.","id":"2227","runtime":124,"imdbId":"tt0056271","version":57,"lastModified":"1301906645000","studio":"DEFA","genre":"Drama","title":"Nackt unter W\u00f6lfen","releaseDate":-212371200000,"language":"en","type":"Movie","_key":"14363"} +{"label":"Wolfram Handel","version":16,"id":"22928","lastModified":"1301901918000","name":"Wolfram Handel","type":"Person","_key":"14364"} +{"label":"Erik S. Klein","version":22,"id":"22929","lastModified":"1301901667000","name":"Erik S. Klein","type":"Person","_key":"14365"} +{"label":"Herbert K\u00f6fer","version":18,"id":"22930","lastModified":"1301901918000","name":"Herbert K\u00f6fer","type":"Person","_key":"14366"} +{"label":"Zygmunt Malanowicz","version":18,"id":"22931","lastModified":"1301901717000","name":"Zygmunt Malanowicz","type":"Person","_key":"14367"} +{"label":"Boleslaw Plotnicki","version":19,"id":"22932","lastModified":"1301901982000","name":"Boleslaw Plotnicki","type":"Person","_key":"14368"} +{"label":"Heinz Peter Scholz","version":18,"id":"22933","lastModified":"1301902168000","name":"Heinz Peter Scholz","type":"Person","_key":"14369"} +{"label":"Peter Sturm","version":16,"id":"22934","lastModified":"1301903119000","name":"Peter Sturm","type":"Person","_key":"14370"} +{"label":"Krystyn W\u00f3jcik","version":17,"id":"22935","lastModified":"1301902168000","name":"Krystyn W\u00f3jcik","type":"Person","_key":"14371"} +{"label":"Gerry Wolff","version":16,"id":"22794","lastModified":"1301903119000","name":"Gerry Wolff","type":"Person","_key":"14372"} +{"label":"Nelken in Aspik","description":"No overview found.","id":"2228","runtime":95,"imdbId":"tt0074957","version":54,"lastModified":"1301908350000","studio":"DEFA","genre":"Comedy","title":"Nelken in Aspik","releaseDate":212371200000,"language":"en","type":"Movie","_key":"14373"} +{"label":"Dirk Jungnickel","version":17,"id":"22959","lastModified":"1301901629000","name":"Dirk Jungnickel","type":"Person","_key":"14374"} +{"label":"Georgi Kissimov","version":17,"id":"22960","lastModified":"1301902114000","name":"Georgi Kissimov","type":"Person","_key":"14375"} +{"label":"Eberhard Cohrs","version":16,"id":"22961","lastModified":"1301902114000","name":"Eberhard Cohrs","type":"Person","_key":"14376"} +{"label":"Helga G\u00f6ring","version":20,"id":"22962","lastModified":"1301901664000","name":"Helga G\u00f6ring","type":"Person","_key":"14377"} +{"label":"Helga Sasse","version":16,"id":"22963","lastModified":"1301901747000","name":"Helga Sasse","type":"Person","_key":"14378"} +{"label":"Lutz St\u00fcckrath","version":16,"id":"22964","lastModified":"1301901747000","name":"Lutz St\u00fcckrath","type":"Person","_key":"14379"} +{"label":"J\u00fcrgen Zartmann","version":17,"id":"22965","lastModified":"1301901747000","name":"J\u00fcrgen Zartmann","type":"Person","_key":"14380"} +{"label":"Winfried Glatzeder","version":27,"id":"23986","lastModified":"1301901647000","name":"Winfried Glatzeder","type":"Person","_key":"14381"} +{"label":"Die Flucht","description":"No overview found.","id":"2229","runtime":94,"imdbId":"tt0076040","version":68,"lastModified":"1301908362000","studio":"DEFA","genre":"Drama","title":"Die Flucht","releaseDate":245548800000,"language":"en","type":"Movie","_key":"14382"} +{"label":"Roland Gr\u00e4f","version":19,"id":"22936","lastModified":"1301902132000","name":"Roland Gr\u00e4f","type":"Person","_key":"14383"} +{"label":"Eleonore Dressel","version":20,"id":"22942","lastModified":"1301901547000","name":"Eleonore Dressel","type":"Person","_key":"14384"} +{"label":"Trude Bechmann","version":16,"id":"22943","lastModified":"1301901754000","name":"Trude Bechmann","type":"Person","_key":"14385"} +{"label":"Jenny Gr\u00f6llmann","version":19,"id":"22944","lastModified":"1301902148000","name":"Jenny Gr\u00f6llmann","type":"Person","_key":"14386"} +{"label":"Carl Heinz Choynski","version":17,"id":"22945","lastModified":"1301901839000","name":"Carl Heinz Choynski","type":"Person","_key":"14387"} +{"label":"Johanna Clas","version":16,"id":"22946","lastModified":"1301901754000","name":"Johanna Clas","type":"Person","_key":"14388"} +{"label":"Hans Feldner","version":17,"id":"22947","lastModified":"1301901810000","name":"Hans Feldner","type":"Person","_key":"14389"} +{"label":"Karin Gregorek","version":16,"id":"22949","lastModified":"1301901753000","name":"Karin Gregorek","type":"Person","_key":"14390"} +{"label":"Heinz Hupfer","version":16,"id":"22950","lastModified":"1301902118000","name":"Heinz Hupfer","type":"Person","_key":"14391"} +{"label":"Gertraud Klawitter","version":16,"id":"22951","lastModified":"1301902118000","name":"Gertraud Klawitter","type":"Person","_key":"14392"} +{"label":"Wilhelm Koch-Hooge","version":16,"id":"22952","lastModified":"1301902118000","name":"Wilhelm Koch-Hooge","type":"Person","_key":"14393"} +{"label":"Simone von Zglinicki","version":16,"id":"22953","lastModified":"1301902118000","name":"Simone von Zglinicki","type":"Person","_key":"14394"} +{"label":"Kit & Co.","description":"No overview found.","id":"2231","runtime":106,"imdbId":"tt0071720","version":76,"lastModified":"1301904967000","studio":"DEFA","genre":"Adventure","title":"Kit & Co.","releaseDate":156643200000,"language":"en","type":"Movie","_key":"14395"} +{"label":"Dean Reed","version":18,"id":"22979","lastModified":"1301901354000","name":"Dean Reed","type":"Person","_key":"14396"} +{"label":"Renate Blume","version":19,"id":"22974","lastModified":"1301901918000","name":"Renate Blume","type":"Person","_key":"14397"} +{"label":"Monika Woytowicz","version":18,"id":"22983","lastModified":"1301901799000","name":"Monika Woytowicz","type":"Person","_key":"14398"} +{"label":"Siegfried Kilian","version":16,"id":"22976","lastModified":"1301901754000","name":"Siegfried Kilian","type":"Person","_key":"14399"} +{"label":"Edgar K\u00fchlow","version":17,"id":"22977","lastModified":"1301901825000","name":"Edgar K\u00fchlow","type":"Person","_key":"14400"} +{"label":"Hans Lucke","version":17,"id":"22978","lastModified":"1301902118000","name":"Hans Lucke","type":"Person","_key":"14401"} +{"label":"Bodo Schmidt","version":16,"id":"22980","lastModified":"1301901754000","name":"Bodo Schmidt","type":"Person","_key":"14402"} +{"label":"Willi Schrade","version":20,"id":"22981","lastModified":"1301901789000","name":"Willi Schrade","type":"Person","_key":"14403"} +{"label":"Lothar Schellhorn","version":16,"id":"22984","lastModified":"1301901754000","name":"Lothar Schellhorn","type":"Person","_key":"14404"} +{"label":"Ralph Boettner","version":21,"id":"77390","lastModified":"1301901988000","name":"Ralph Boettner","type":"Person","_key":"14405"} +{"label":"Die Legende von Paul und Paula","description":"No overview found.","id":"2232","runtime":105,"imdbId":"tt0070299","version":102,"lastModified":"1301910879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4dd\/4bc915f9017a3c57fe0084dd\/die-legende-von-paul-und-paula-mid.jpg","studio":"DEFA","genre":"Drama","title":"Die Legende von Paul und Paula","releaseDate":102211200000,"language":"en","type":"Movie","_key":"14406"} +{"label":"Heiner Carow","version":17,"id":"22987","lastModified":"1301901747000","name":"Heiner Carow","type":"Person","_key":"14407"} +{"label":"J\u00fcrgen Frohriep","version":17,"id":"23005","lastModified":"1301901911000","name":"J\u00fcrgen Frohriep","type":"Person","_key":"14408"} +{"label":"Robert Glatzeder","version":19,"id":"23006","lastModified":"1301902114000","name":"Robert Glatzeder","type":"Person","_key":"14409"} +{"label":"Hans Hardt-Hardtloff","version":20,"id":"23008","lastModified":"1301902041000","name":"Hans Hardt-Hardtloff","type":"Person","_key":"14410"} +{"label":"K\u00e4the Reichel","version":21,"id":"23009","lastModified":"1301902114000","name":"K\u00e4the Reichel","type":"Person","_key":"14411"} +{"label":"Dietmar Richter-Reinick","version":21,"id":"23010","lastModified":"1301902121000","name":"Dietmar Richter-Reinick","type":"Person","_key":"14412"} +{"label":"Frank Schenk","version":19,"id":"23011","lastModified":"1301902114000","name":"Frank Schenk","type":"Person","_key":"14413"} +{"label":"Hertha Thiele","version":19,"id":"11635","lastModified":"1301901572000","name":"Hertha Thiele","type":"Person","_key":"14414"} +{"label":"Heidemarie Wenzel","version":19,"id":"23012","lastModified":"1301902114000","name":"Heidemarie Wenzel","type":"Person","_key":"14415"} +{"label":"Peter Gotthardt","version":17,"id":"22997","lastModified":"1301902114000","name":"Peter Gotthardt","type":"Person","_key":"14416"} +{"label":"Verwirrung der Liebe","description":"No overview found.","id":"2233","runtime":105,"imdbId":"tt0053415","version":54,"lastModified":"1301906645000","studio":"DEFA","genre":"Drama","title":"Verwirrung der Liebe","releaseDate":-322963200000,"language":"en","type":"Movie","_key":"14417"} +{"label":"An franz\u00f6sischen Kaminen","description":"No overview found.","id":"2234","runtime":99,"imdbId":"tt0055748","version":56,"lastModified":"1301906187000","studio":"DEFA","genre":"Drama","title":"An franz\u00f6sischen Kaminen","releaseDate":-220752000000,"language":"en","type":"Movie","_key":"14418"} +{"label":"Arno Wyzniewski","version":24,"id":"23254","lastModified":"1301901799000","name":"Arno Wyzniewski","type":"Person","_key":"14419"} +{"label":"Harry Hindemith","version":21,"id":"23047","lastModified":"1301902164000","name":"Harry Hindemith","type":"Person","_key":"14420"} +{"label":"Evelyn Cron","version":20,"id":"23046","lastModified":"1301902012000","name":"Evelyn Cron","type":"Person","_key":"14421"} +{"label":"Gerd Biewer","version":20,"id":"23045","lastModified":"1301902013000","name":"Gerd Biewer","type":"Person","_key":"14422"} +{"label":"Horst Jonischkan","version":20,"id":"23048","lastModified":"1301902012000","name":"Horst Jonischkan","type":"Person","_key":"14423"} +{"label":"J\u00f6rg Kaehler","version":20,"id":"23049","lastModified":"1301901799000","name":"J\u00f6rg Kaehler","type":"Person","_key":"14424"} +{"label":"Willi Neuenhahn","version":21,"id":"23050","lastModified":"1301901976000","name":"Willi Neuenhahn","type":"Person","_key":"14425"} +{"label":"Werner R\u00f6wekamp","version":20,"id":"23051","lastModified":"1301901976000","name":"Werner R\u00f6wekamp","type":"Person","_key":"14426"} +{"label":"Albert Zahn","version":20,"id":"23054","lastModified":"1301901825000","name":"Albert Zahn","type":"Person","_key":"14427"} +{"label":"Earth, Wind & Fire","description":"No overview found.","id":"2235","runtime":60,"version":68,"lastModified":"1301302610000","studio":"Time Warner","genre":"Documentary","title":"Earth, Wind & Fire","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"14428"} +{"label":"Warner Team","version":16,"id":"23027","lastModified":"1301901973000","name":"Warner Team","type":"Person","_key":"14429"} +{"label":"Maurice White","version":16,"id":"23037","lastModified":"1301902162000","name":"Maurice White","type":"Person","_key":"14430"} +{"label":"Philip Bailey","version":16,"id":"23038","lastModified":"1301902162000","name":"Philip Bailey","type":"Person","_key":"14431"} +{"label":"Verdine White","version":16,"id":"23039","lastModified":"1301901662000","name":"Verdine White","type":"Person","_key":"14432"} +{"label":"Ralph Johnson","version":16,"id":"23040","lastModified":"1301901570000","name":"Ralph Johnson","type":"Person","_key":"14433"} +{"label":"Bob Dylan - TV Live & Rear 1963 - 1975","description":"No overview found.","id":"2236","runtime":50,"version":17,"lastModified":"1301908620000","studio":"BBC Films","genre":"Documentary","title":"Bob Dylan - TV Live & Rear 1963 - 1975","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"14434"} +{"label":"BBC Team","version":16,"id":"23055","lastModified":"1301902013000","name":"BBC Team","type":"Person","_key":"14435"} +{"label":"Sonntagsfahrer","description":"No overview found.","id":"2237","runtime":86,"imdbId":"tt0057519","version":60,"lastModified":"1301906645000","studio":"DEFA","genre":"Drama","title":"Sonntagsfahrer","releaseDate":-200102400000,"language":"en","type":"Movie","_key":"14436"} +{"label":"Gerhard Klein","version":20,"id":"23058","lastModified":"1301901580000","name":"Gerhard Klein","type":"Person","_key":"14437"} +{"label":"Harald Halgardt","version":19,"id":"23065","lastModified":"1301901918000","name":"Harald Halgardt","type":"Person","_key":"14438"} +{"label":"Walter E. Fu\u00df","version":20,"id":"23062","lastModified":"1301902118000","name":"Walter E. Fu\u00df","type":"Person","_key":"14439"} +{"label":"Erich Gerberding","version":19,"id":"23063","lastModified":"1301902118000","name":"Erich Gerberding","type":"Person","_key":"14440"} +{"label":"Herwart Grosse","version":21,"birthday":"-1947373200000","id":"23064","lastModified":"1301901753000","name":"Herwart Grosse","type":"Person","_key":"14441"} +{"label":"Rita Hempel","version":19,"id":"23066","lastModified":"1301902118000","name":"Rita Hempel","type":"Person","_key":"14442"} +{"label":"Hartmut Kirschke","version":19,"id":"23067","lastModified":"1301902118000","name":"Hartmut Kirschke","type":"Person","_key":"14443"} +{"label":"Irene Korb","version":19,"id":"23068","lastModified":"1301902118000","name":"Irene Korb","type":"Person","_key":"14444"} +{"label":"Erich Mirek","version":19,"id":"23069","lastModified":"1301902118000","name":"Erich Mirek","type":"Person","_key":"14445"} +{"label":"Wolfgang Ostberg","version":19,"id":"23071","lastModified":"1301902118000","name":"Wolfgang Ostberg","type":"Person","_key":"14446"} +{"label":"Helmut Schreiber","version":25,"id":"22593","lastModified":"1301901790000","name":"Helmut Schreiber","type":"Person","_key":"14447"} +{"label":"Ellinor Vogel","version":20,"id":"23072","lastModified":"1301902118000","name":"Ellinor Vogel","type":"Person","_key":"14448"} +{"label":"Juke Box Revival - Rock'n'Roll Vol. 2","description":"No overview found.","id":"2238","runtime":60,"version":35,"lastModified":"1301908631000","genre":"Documentary","title":"Juke Box Revival - Rock'n'Roll Vol. 2","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"14449"} +{"label":"Len Cotter","version":16,"id":"23077","lastModified":"1301901689000","name":"Len Cotter","type":"Person","_key":"14450"} +{"label":"Spencer Davis","version":16,"id":"23082","lastModified":"1301901799000","name":"Spencer Davis","type":"Person","_key":"14451"} +{"label":"Bryan Hyland","version":16,"id":"23083","lastModified":"1301901799000","name":"Bryan Hyland","type":"Person","_key":"14452"} +{"label":"Del Shannon","version":16,"id":"23084","lastModified":"1301901572000","name":"Del Shannon","type":"Person","_key":"14453"} +{"label":"Rockin Robin Band","version":16,"id":"23085","lastModified":"1301901799000","name":"Rockin Robin Band","type":"Person","_key":"14454"} +{"label":"Tommy Sands","version":24,"id":"23086","lastModified":"1301901976000","name":"Tommy Sands","type":"Person","_key":"14455"} +{"label":"Bobby Lewis","version":16,"id":"23087","lastModified":"1301902176000","name":"Bobby Lewis","type":"Person","_key":"14456"} +{"label":"Roger McGuinn","version":16,"id":"23088","lastModified":"1301901799000","name":"Roger McGuinn","type":"Person","_key":"14457"} +{"label":"Johnny Tillotson","version":16,"id":"23089","lastModified":"1301901799000","name":"Johnny Tillotson","type":"Person","_key":"14458"} +{"label":"The Dovells","version":16,"id":"23090","lastModified":"1301902164000","name":"The Dovells","type":"Person","_key":"14459"} +{"label":"Bobby Vee","version":16,"id":"23091","lastModified":"1301902164000","name":"Bobby Vee","type":"Person","_key":"14460"} +{"label":"Frankie Ford","version":16,"id":"23092","lastModified":"1301901799000","name":"Frankie Ford","type":"Person","_key":"14461"} +{"label":"Johnny Thunder","version":16,"id":"23093","lastModified":"1301901799000","name":"Johnny Thunder","type":"Person","_key":"14462"} +{"label":"Jack Scott","version":16,"id":"23094","lastModified":"1301901825000","name":"Jack Scott","type":"Person","_key":"14463"} +{"label":"Buddy Knox","version":16,"id":"23095","lastModified":"1301901799000","name":"Buddy Knox","type":"Person","_key":"14464"} +{"label":"The Crickets","version":16,"id":"23096","lastModified":"1301901799000","name":"The Crickets","type":"Person","_key":"14465"} +{"label":"Hallam Foe","description":"Hallam's talent for spying on people reveals his darkest fears-and his most peculiar desires. Driven to expose the true cause of his mother's death, he instead finds himself searching the rooftops of the city for love.","id":"2239","runtime":95,"imdbId":"tt0466816","trailer":"http:\/\/www.youtube.com\/watch?v=165","homepage":"http:\/\/www.thefilmfactory.co.uk\/hallamfoe\/","version":143,"lastModified":"1301902748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f3\/4bc915fd017a3c57fe0084f3\/hallam-foe-mid.jpg","genre":"Comedy","title":"Hallam Foe","releaseDate":1140048000000,"language":"en","type":"Movie","_key":"14466"} +{"label":"Unterm Birnbaum","description":"No overview found.","id":"2240","runtime":90,"imdbId":"tt0072345","version":66,"lastModified":"1301906645000","studio":"DEFA","genre":"Crime","title":"Unterm Birnbaum","releaseDate":122256000000,"language":"en","type":"Movie","_key":"14467"} +{"label":"Marie-Luise Krause","version":19,"id":"23103","lastModified":"1301902118000","name":"Marie-Luise Krause","type":"Person","_key":"14468"} +{"label":"Egon Schlegel","version":21,"id":"23104","lastModified":"1301902118000","name":"Egon Schlegel","type":"Person","_key":"14469"} +{"label":"Ralf Kirsten","version":20,"id":"23097","lastModified":"1301901628000","name":"Ralf Kirsten","type":"Person","_key":"14470"} +{"label":"Peter Aust","version":19,"id":"23108","lastModified":"1301902118000","name":"Peter Aust","type":"Person","_key":"14471"} +{"label":"Matthias G\u00fcnther","version":17,"id":"23110","lastModified":"1301902012000","name":"Matthias G\u00fcnther","type":"Person","_key":"14472"} +{"label":"Gert G\u00fctschow","version":19,"id":"23111","lastModified":"1301902118000","name":"Gert G\u00fctschow","type":"Person","_key":"14473"} +{"label":"G\u00fcnter Junghans","version":22,"id":"23112","lastModified":"1301902055000","name":"G\u00fcnter Junghans","type":"Person","_key":"14474"} +{"label":"Agnes Kraus","version":19,"id":"23113","lastModified":"1301902118000","name":"Agnes Kraus","type":"Person","_key":"14475"} +{"label":"Karla Runkehl","version":19,"id":"23114","lastModified":"1301902118000","name":"Karla Runkehl","type":"Person","_key":"14476"} +{"label":"Angelika Waller","version":19,"id":"23115","lastModified":"1301902118000","name":"Angelika Waller","type":"Person","_key":"14477"} +{"label":"Sonnenallee","description":"No overview found.","id":"2241","runtime":101,"imdbId":"tt0177242","homepage":"http:\/\/www.sonnenallee.de\/","version":86,"lastModified":"1301906092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4bf6b09d017a3c772a000248\/sonnenallee-mid.jpg","studio":"Boje Buck Produktion","genre":"Comedy","title":"Sonnenallee","releaseDate":939254400000,"language":"en","type":"Movie","_key":"14478"} +{"label":"Leander Hau\u00dfmann","version":34,"id":"23116","lastModified":"1301901438000","name":"Leander Hau\u00dfmann","type":"Person","_key":"14479"} +{"label":"Teresa Wei\u00dfbach","version":22,"id":"23120","lastModified":"1301901401000","name":"Teresa Wei\u00dfbach","type":"Person","_key":"14480"} +{"label":"Ignaz Kirchner","version":20,"id":"23121","lastModified":"1301901624000","name":"Ignaz Kirchner","type":"Person","_key":"14481"} +{"label":"Annika Kuhl","version":22,"id":"23122","lastModified":"1301901542000","name":"Annika Kuhl","type":"Person","_key":"14482"} +{"label":"Elena Mei\u00dfner","version":20,"id":"23123","lastModified":"1301901825000","name":"Elena Mei\u00dfner","type":"Person","_key":"14483"} +{"label":"Horst Lebinsky","version":19,"id":"23124","lastModified":"1301901911000","name":"Horst Lebinsky","type":"Person","_key":"14484"} +{"label":"Martin Moeller","version":19,"id":"23125","lastModified":"1301901747000","name":"Martin Moeller","type":"Person","_key":"14485"} +{"label":"Patrick G\u00fcldenberg","version":22,"id":"23126","lastModified":"1301902145000","name":"Patrick G\u00fcldenberg","type":"Person","_key":"14486"} +{"label":"Julia lebt","description":"No overview found.","id":"2242","runtime":90,"imdbId":"tt0057211","version":55,"lastModified":"1301302612000","studio":"DEFA","title":"Julia lebt","releaseDate":-197337600000,"language":"en","type":"Movie","_key":"14487"} +{"label":"Martin Fl\u00f6rchinger","version":25,"id":"23131","lastModified":"1301901513000","name":"Martin Fl\u00f6rchinger","type":"Person","_key":"14488"} +{"label":"Rosemarie Funk","version":17,"id":"23132","lastModified":"1301901453000","name":"Rosemarie Funk","type":"Person","_key":"14489"} +{"label":"Herbert Graedtke","version":22,"id":"23133","lastModified":"1301901581000","name":"Herbert Graedtke","type":"Person","_key":"14490"} +{"label":"Karla Kersten","version":17,"id":"23135","lastModified":"1301901805000","name":"Karla Kersten","type":"Person","_key":"14491"} +{"label":"Heinz-Dieter Knaup","version":20,"id":"23136","lastModified":"1301901681000","name":"Heinz-Dieter Knaup","type":"Person","_key":"14492"} +{"label":"Ruth Kommerell","version":20,"id":"23137","lastModified":"1301901681000","name":"Ruth Kommerell","type":"Person","_key":"14493"} +{"label":"Hans-Peter Reinicke","version":17,"id":"23138","lastModified":"1301901669000","name":"Hans-Peter Reinicke","type":"Person","_key":"14494"} +{"label":"Peter Reusse","version":21,"id":"23139","lastModified":"1301902012000","name":"Peter Reusse","type":"Person","_key":"14495"} +{"label":"Peter Sindermann","version":20,"id":"23140","lastModified":"1301901672000","name":"Peter Sindermann","type":"Person","_key":"14496"} +{"label":"Fred Staglies","version":20,"id":"23141","lastModified":"1301901690000","name":"Fred Staglies","type":"Person","_key":"14497"} +{"label":"Fred Thomalla","version":20,"id":"23142","lastModified":"1301901689000","name":"Fred Thomalla","type":"Person","_key":"14498"} +{"label":"The Beach Boys - California Surfin","description":"No overview found.","id":"2244","runtime":67,"version":35,"lastModified":"1301906761000","genre":"Documentary","title":"The Beach Boys - California Surfin","releaseDate":946684800000,"language":"en","type":"Movie","_key":"14499"} +{"label":"Planet Song","version":17,"id":"23183","lastModified":"1301901796000","name":"Planet Song","type":"Person","_key":"14500"} +{"label":"Brian Wilson","version":22,"id":"23185","lastModified":"1301901436000","name":"Brian Wilson","type":"Person","_key":"14501"} +{"label":"Carl Wilson","version":21,"id":"23186","lastModified":"1301901514000","name":"Carl Wilson","type":"Person","_key":"14502"} +{"label":"Dennis Wilson","version":22,"id":"23187","lastModified":"1301901570000","name":"Dennis Wilson","type":"Person","_key":"14503"} +{"label":"Mike Love","version":22,"id":"23188","lastModified":"1301901666000","name":"Mike Love","type":"Person","_key":"14504"} +{"label":"Alan Jardine","version":16,"id":"23189","lastModified":"1301902162000","name":"Alan Jardine","type":"Person","_key":"14505"} +{"label":"Bruce Johnston","version":16,"id":"23190","lastModified":"1301902162000","name":"Bruce Johnston","type":"Person","_key":"14506"} +{"label":"Jan Berry","version":16,"id":"23191","lastModified":"1301901973000","name":"Jan Berry","type":"Person","_key":"14507"} +{"label":"Dean Torrence","version":16,"id":"23192","lastModified":"1301901973000","name":"Dean Torrence","type":"Person","_key":"14508"} +{"label":"The Beach Combers","version":16,"id":"23193","lastModified":"1301901973000","name":"The Beach Combers","type":"Person","_key":"14509"} +{"label":"Green Lights Blue Skies","description":"No overview found.","id":"2245","runtime":141,"version":60,"lastModified":"1301904724000","genre":"Documentary","title":"Green Lights Blue Skies","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"14510"} +{"label":"MTV Team","version":18,"id":"23194","lastModified":"1301902163000","name":"MTV Team","type":"Person","_key":"14511"} +{"label":"Gary Crowley","version":16,"id":"23195","lastModified":"1301901973000","name":"Gary Crowley","type":"Person","_key":"14512"} +{"label":"Lynyrd Skynyrd","version":16,"id":"23196","lastModified":"1301901973000","name":"Lynyrd Skynyrd","type":"Person","_key":"14513"} +{"label":"The Free","version":16,"id":"23197","lastModified":"1301902163000","name":"The Free","type":"Person","_key":"14514"} +{"label":"City Boy","version":16,"id":"23198","lastModified":"1301902163000","name":"City Boy","type":"Person","_key":"14515"} +{"label":"Stealers Wheel","version":16,"id":"23199","lastModified":"1301902163000","name":"Stealers Wheel","type":"Person","_key":"14516"} +{"label":"Lloyd Cole & The Commotions","version":16,"id":"23200","lastModified":"1301901973000","name":"Lloyd Cole & The Commotions","type":"Person","_key":"14517"} +{"label":"Status Quo","version":16,"id":"23201","lastModified":"1301901796000","name":"Status Quo","type":"Person","_key":"14518"} +{"label":"Steve Winwood","version":16,"id":"23202","lastModified":"1301902163000","name":"Steve Winwood","type":"Person","_key":"14519"} +{"label":"The Cristians","version":16,"id":"23203","lastModified":"1301901973000","name":"The Cristians","type":"Person","_key":"14520"} +{"label":"10cc","version":16,"id":"23204","lastModified":"1301902012000","name":"10cc","type":"Person","_key":"14521"} +{"label":"John Miles","version":18,"id":"23205","lastModified":"1301902163000","name":"John Miles","type":"Person","_key":"14522"} +{"label":"Joe Jackson","version":21,"id":"23206","lastModified":"1301902163000","name":"Joe Jackson","type":"Person","_key":"14523"} +{"label":"Thin Lizzy","version":16,"id":"23207","lastModified":"1301901796000","name":"Thin Lizzy","type":"Person","_key":"14524"} +{"label":"Frankie Goes to Hollywood","version":16,"id":"23208","lastModified":"1301901973000","name":"Frankie Goes to Hollywood","type":"Person","_key":"14525"} +{"label":"Propaganda","version":16,"id":"23209","lastModified":"1301901973000","name":"Propaganda","type":"Person","_key":"14526"} +{"label":"Buggles","version":16,"id":"23210","lastModified":"1301902162000","name":"Buggles","type":"Person","_key":"14527"} +{"label":"Dex`ys Midnight Runners","version":16,"id":"23212","lastModified":"1301901973000","name":"Dex`ys Midnight Runners","type":"Person","_key":"14528"} +{"label":"Malice","description":"A tale about a happily married couple who would like to have children. Tracy teaches infants, Andy's a college professor. Things are never the same after she is taken to hospital and operated upon by Jed, a \"know all\" doctor.","id":"2246","runtime":107,"imdbId":"tt0107497","version":148,"lastModified":"1301904761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e7\/4be49124017a3c35b50009e7\/malice-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"Malice","releaseDate":749260800000,"language":"en","type":"Movie","_key":"14529"} +{"label":"Harold Becker","version":42,"id":"23213","lastModified":"1301901523000","name":"Harold Becker","type":"Person","_key":"14530"} +{"label":"Bebe Neuwirth","version":37,"id":"10739","lastModified":"1301901781000","name":"Bebe Neuwirth","type":"Person","_key":"14531"} +{"label":"Debrah Farentino","version":23,"id":"23214","lastModified":"1301901603000","name":"Debrah Farentino","type":"Person","_key":"14532"} +{"label":"David Bowe","version":30,"id":"11659","lastModified":"1301901254000","name":"David Bowe","type":"Person","_key":"14533"} +{"label":"The Shadows - The Final Tour 2004","description":"No overview found.","id":"2247","runtime":180,"version":84,"lastModified":"1301923165000","title":"The Shadows - The Final Tour 2004","releaseDate":1101686400000,"language":"en","type":"Movie","_key":"14534"} +{"label":"Aubrey Powell","version":27,"id":"23217","lastModified":"1301901973000","name":"Aubrey Powell","type":"Person","_key":"14535"} +{"label":"Bruce Welch","version":23,"id":"23221","lastModified":"1301901973000","name":"Bruce Welch","type":"Person","_key":"14536"} +{"label":"Hank B. Marvin","version":20,"id":"23222","lastModified":"1301902162000","name":"Hank B. Marvin","type":"Person","_key":"14537"} +{"label":"Brian Bennett","version":23,"id":"23223","lastModified":"1301902162000","name":"Brian Bennett","type":"Person","_key":"14538"} +{"label":"Torrente","description":"No overview found.","id":"2248","title":"Torrente","language":"en","lastModified":"1301908542000","version":257,"type":"Movie","_key":"14539"} +{"label":"Sous mes yeux","description":"No overview found.","id":"2249","runtime":91,"imdbId":"tt0328494","version":41,"lastModified":"1301905429000","studio":"Arte","genre":"Drama","title":"Sous mes yeux","releaseDate":1024790400000,"language":"en","type":"Movie","_key":"14540"} +{"label":"Jean-Baptiste Montagut","version":23,"id":"23224","lastModified":"1301901500000","name":"Jean-Baptiste Montagut","type":"Person","_key":"14541"} +{"label":"Hugh Bonneville","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4ceeb8675e73d654f900005b\/hugh-bonneville-profile.jpg","version":45,"id":"19923","lastModified":"1301901168000","name":"Hugh Bonneville","type":"Person","_key":"14542"} +{"label":"Die Abenteuer des Werner Holt","description":"No overview found.","id":"2250","runtime":156,"imdbId":"tt0057816","version":86,"lastModified":"1301906186000","studio":"DEFA","genre":"Drama","title":"Die Abenteuer des Werner Holt","releaseDate":-154828800000,"language":"en","type":"Movie","_key":"14543"} +{"label":"Joachim Kunert","version":21,"id":"23230","lastModified":"1301901841000","name":"Joachim Kunert","type":"Person","_key":"14544"} +{"label":"Klaus-Peter Thiele","version":20,"id":"23248","lastModified":"1301901664000","name":"Klaus-Peter Thiele","type":"Person","_key":"14545"} +{"label":"Marie Alexander","version":17,"id":"23249","lastModified":"1301901669000","name":"Marie Alexander","type":"Person","_key":"14546"} +{"label":"Dietlinde Greiff","version":20,"id":"23250","lastModified":"1301901976000","name":"Dietlinde Greiff","type":"Person","_key":"14547"} +{"label":"Wolfgang Langhoff","version":20,"id":"23251","lastModified":"1301902012000","name":"Wolfgang Langhoff","type":"Person","_key":"14548"} +{"label":"Ingeborg Ottmann","version":21,"id":"23252","lastModified":"1301901976000","name":"Ingeborg Ottmann","type":"Person","_key":"14549"} +{"label":"Karla Chadimov\u00e1","version":20,"id":"23500","lastModified":"1301901976000","name":"Karla Chadimov\u00e1","type":"Person","_key":"14550"} +{"label":"Klaus Gehrke","version":20,"id":"23503","lastModified":"1301901976000","name":"Klaus Gehrke","type":"Person","_key":"14551"} +{"label":"Unfaithful","description":"Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.","id":"2251","runtime":124,"imdbId":"tt0250797","version":193,"lastModified":"1301902926000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11c\/4d4704877b9aa15bf500511c\/unfaithful-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"Unfaithful","releaseDate":1020988800000,"language":"en","tagline":"Where do you go when you've gone too far?","type":"Movie","_key":"14552"} +{"label":"Olivier Martinez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d24\/4d2636cf7b9aa134dc000d24\/olivier-martinez-profile.jpg","version":37,"id":"15533","lastModified":"1301901290000","name":"Olivier Martinez","type":"Person","_key":"14553"} +{"label":"Erik Per Sullivan","version":22,"id":"17190","lastModified":"1301901681000","name":"Erik Per Sullivan","type":"Person","_key":"14554"} +{"label":"Chad Lowe","version":22,"id":"21549","lastModified":"1301901825000","name":"Chad Lowe","type":"Person","_key":"14555"} +{"label":"Myra Lucretia Taylor","version":21,"id":"20318","lastModified":"1301901842000","name":"Myra Lucretia Taylor","type":"Person","_key":"14556"} +{"label":"Kate Burton","version":67,"id":"20879","lastModified":"1301921699000","name":"Kate Burton","type":"Person","_key":"14557"} +{"label":"Eastern Promises","description":"A girl walks in to a shop and asks for help. When the shopkeeper tells her to leave, she starts bleeding and faints. In the hospital she dies while giving birth to a girl. The nurse wants to find out who her family is and gets stuck in the world of Russian crime.","id":"2252","runtime":100,"imdbId":"tt0765443","trailer":"http:\/\/www.youtube.com\/watch?v=iq_M8EOC4zA","homepage":"http:\/\/www.focusfeatures.com\/easternpromises\/","version":360,"lastModified":"1301901486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4c56abcf5e73d63a6f00010c\/eastern-promises-mid.jpg","studio":"Serendipity Point Films","genre":"Crime","title":"Eastern Promises","releaseDate":1189641600000,"language":"en","tagline":"Every sin leaves a mark.","type":"Movie","_key":"14558"} +{"label":"Jerzy Skolimowski","version":44,"id":"43553","lastModified":"1301901180000","name":"Jerzy Skolimowski","type":"Person","_key":"14559"} +{"label":"Josef Altin","version":28,"id":"43554","lastModified":"1301901395000","name":"Josef Altin","type":"Person","_key":"14560"} +{"label":"Mina E. Mina","version":26,"id":"43555","lastModified":"1301901585000","name":"Mina E. Mina","type":"Person","_key":"14561"} +{"label":"Aleksander Mikic","version":28,"id":"43556","lastModified":"1301901775000","name":"Aleksander Mikic","type":"Person","_key":"14562"} +{"label":"Sarah-Jeanne Labrosse","version":23,"id":"43557","lastModified":"1301901453000","name":"Sarah-Jeanne Labrosse","type":"Person","_key":"14563"} +{"label":"Valkyrie","description":"Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the F\u00fchrer.","id":"2253","runtime":120,"imdbId":"tt0985699","trailer":"http:\/\/www.youtube.com\/watch?v=fZrUbI0IqUk","version":285,"lastModified":"1301901383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4bc91607017a3c57fe00853d\/valkyrie-mid.jpg","studio":"United Artists","genre":"Action","title":"Valkyrie","releaseDate":1230249600000,"language":"en","tagline":"Many saw evil. They dared to stop it.","type":"Movie","_key":"14564"} +{"label":"Carice van Houten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86f\/4d8f242f5e73d65f1100186f\/carice-van-houten-profile.jpg","biography":"Carice Anouk van Houten, born on September 5, 1976, is a Dutch stage and film actress. She won three Golden Calves for her roles in Suzy Q (1999), Undercover Kitty (2001) and Black Book (2006). Her role in Black Book launched her international career. She acted in the American films Valkyrie (2008), and Repo Men (2010).","version":50,"id":"23229","lastModified":"1301901113000","name":"Carice van Houten","type":"Person","_key":"14565"} +{"label":"David Bamber","version":33,"id":"26657","lastModified":"1301901588000","name":"David Bamber","type":"Person","_key":"14566"} +{"label":"Gerhard Haase-Hindenberg","version":23,"id":"39846","lastModified":"1301901437000","name":"Gerhard Haase-Hindenberg","type":"Person","_key":"14567"} +{"label":"Matthias Freihof","version":28,"id":"36746","lastModified":"1301901314000","name":"Matthias Freihof","type":"Person","_key":"14568"} +{"label":"Halina Reijn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/217\/4c04dc68017a3c7e87000217\/halina-reijn-profile.jpg","version":42,"id":"39847","lastModified":"1301901201000","name":"Halina Reijn","type":"Person","_key":"14569"} +{"label":"Manfred-Anton Algrang","version":21,"id":"39848","lastModified":"1301901453000","name":"Manfred-Anton Algrang","type":"Person","_key":"14570"} +{"label":"Werner Daehn","version":26,"id":"39849","lastModified":"1301901389000","name":"Werner Daehn","type":"Person","_key":"14571"} +{"label":"Andy Gatjen","version":25,"id":"39850","lastModified":"1301901459000","name":"Andy Gatjen","type":"Person","_key":"14572"} +{"label":"Christopher Karl Hemeyer","version":25,"id":"39851","lastModified":"1301901343000","name":"Christopher Karl Hemeyer","type":"Person","_key":"14573"} +{"label":"Philipp von Schulthess","version":23,"id":"39852","lastModified":"1301901310000","name":"Philipp von Schulthess","type":"Person","_key":"14574"} +{"label":"Jamie Parker","version":27,"id":"40633","lastModified":"1301901438000","name":"Jamie Parker","type":"Person","_key":"14575"} +{"label":"Florian Panzner","version":31,"id":"40634","lastModified":"1301901349000","name":"Florian Panzner","type":"Person","_key":"14576"} +{"label":"Karl Alexander Seidel","version":27,"id":"41276","lastModified":"1301901276000","name":"Karl Alexander Seidel","type":"Person","_key":"14577"} +{"label":"Justus Kammerer","version":23,"id":"41277","lastModified":"1301901389000","name":"Justus Kammerer","type":"Person","_key":"14578"} +{"label":"Frank Christian Marx","version":22,"id":"28586","lastModified":"1301901327000","name":"Frank Christian Marx","type":"Person","_key":"14579"} +{"label":"Entlassen auf Bew\u00e4hrung","description":"No overview found.","id":"2254","runtime":90,"imdbId":"tt0233654","version":64,"lastModified":"1301905657000","studio":"DEFA","genre":"Crime","title":"Entlassen auf Bew\u00e4hrung","releaseDate":-143251200000,"language":"en","type":"Movie","_key":"14580"} +{"label":"Richard Groschopp","version":20,"id":"23269","lastModified":"1301901628000","name":"Richard Groschopp","type":"Person","_key":"14581"} +{"label":"Heinz Klevenow Jr.","version":17,"id":"23273","lastModified":"1301901669000","name":"Heinz Klevenow Jr.","type":"Person","_key":"14582"} +{"label":"B\u00e4rbel Bolle","version":19,"id":"23274","lastModified":"1301901628000","name":"B\u00e4rbel Bolle","type":"Person","_key":"14583"} +{"label":"Erich Brauer","version":18,"id":"23275","lastModified":"1301901506000","name":"Erich Brauer","type":"Person","_key":"14584"} +{"label":"Karl Kendzia","version":17,"id":"23277","lastModified":"1301901805000","name":"Karl Kendzia","type":"Person","_key":"14585"} +{"label":"Krista Siegrid Lau","version":17,"id":"23278","lastModified":"1301902168000","name":"Krista Siegrid Lau","type":"Person","_key":"14586"} +{"label":"Otto Mellies","version":27,"id":"23279","lastModified":"1301901963000","name":"Otto Mellies","type":"Person","_key":"14587"} +{"label":"Helga Raumer","version":21,"id":"23281","lastModified":"1301901497000","name":"Helga Raumer","type":"Person","_key":"14588"} +{"label":"Gudrun Ritter","version":24,"id":"23282","lastModified":"1301901962000","name":"Gudrun Ritter","type":"Person","_key":"14589"} +{"label":"Karl Sturm","version":19,"id":"23283","lastModified":"1301901753000","name":"Karl Sturm","type":"Person","_key":"14590"} +{"label":"Chasing Amy","description":"Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.","id":"2255","runtime":110,"imdbId":"tt0118842","trailer":"http:\/\/www.youtube.com\/watch?v=_sAZWyaaIOM","homepage":"http:\/\/www.viewaskew.com\/chasingamy\/","version":127,"lastModified":"1301903175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57a\/4bc9160f017a3c57fe00857a\/chasing-amy-mid.jpg","studio":"View Askew Productions","genre":"Comedy","title":"Chasing Amy","releaseDate":860112000000,"language":"en","tagline":"It's not who you love. It's how.","type":"Movie","_key":"14591"} +{"label":"Joey Lauren Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bb\/4bcc376d017a3c0f340000bb\/joey-lauren-adams-profile.jpg","version":55,"id":"16484","lastModified":"1301901208000","name":"Joey Lauren Adams","type":"Person","_key":"14592"} +{"label":"View Askewniverse","description":"The View Askewniverse is a fictional universe created by writer\/director Kevin Smith, featured in several films, comics and a television series; it is named for Smith's production company, View Askew Productions. The characters Jay and Silent Bob appear in almost all the View Askewniverse media, and characters from one story often reappear or are made reference to in others.","id":"2256","version":33,"lastModified":"1301904443000","title":"View Askewniverse","language":"en","type":"Movie","_key":"14593"} +{"label":"Chronik eines Mordes","description":"No overview found.","id":"2257","runtime":95,"imdbId":"tt0059033","version":55,"lastModified":"1301904967000","studio":"DEFA","genre":"Drama","title":"Chronik eines Mordes","releaseDate":-153014400000,"language":"en","type":"Movie","_key":"14594"} +{"label":"Jir\u00ed Vrst\u00e1la","version":19,"id":"23265","lastModified":"1301901805000","name":"Jir\u00ed Vrst\u00e1la","type":"Person","_key":"14595"} +{"label":"Bohumil Sm\u00edda","version":17,"id":"23264","lastModified":"1301901823000","name":"Bohumil Sm\u00edda","type":"Person","_key":"14596"} +{"label":"Antje Ruge","version":20,"birthday":"-1531098000000","id":"23263","lastModified":"1301902118000","name":"Antje Ruge","type":"Person","_key":"14597"} +{"label":"Gisela Graupner","version":19,"id":"23260","lastModified":"1301902118000","name":"Gisela Graupner","type":"Person","_key":"14598"} +{"label":"Norbert Petznick","version":17,"id":"23262","lastModified":"1301902118000","name":"Norbert Petznick","type":"Person","_key":"14599"} +{"label":"Siegfried Wei\u00df","version":19,"id":"23266","lastModified":"1301902118000","name":"Siegfried Wei\u00df","type":"Person","_key":"14600"} +{"label":"Utz","description":"No overview found.","id":"2258","runtime":98,"imdbId":"tt0105712","version":74,"lastModified":"1301906096000","studio":"Viva Pictures","genre":"Drama","title":"Utz","releaseDate":700617600000,"language":"en","type":"Movie","_key":"14601"} +{"label":"Gaye Brown","version":19,"id":"13483","lastModified":"1301901482000","name":"Gaye Brown","type":"Person","_key":"14602"} +{"label":"Christian Mueller-Stahl","version":20,"id":"23327","lastModified":"1301902202000","name":"Christian Mueller-Stahl","type":"Person","_key":"14603"} +{"label":"Jakub Zdenek","version":22,"id":"23328","lastModified":"1301901784000","name":"Jakub Zdenek","type":"Person","_key":"14604"} +{"label":"Christian Rabe","version":19,"id":"23329","lastModified":"1301901918000","name":"Christian Rabe","type":"Person","_key":"14605"} +{"label":"The House of the Spirits","description":"Chile, second half of the 20th century. The poor Esteban marries Clara and they get a daughter, Blanca. Esteban works hard and eventually gets money to buy a hacienda and become a local patriarch. He becomes very conservative and is feared by his workers. When Blanca grows up, she falls in love with a young revolutionary, Pedro, who urges the workers to fight for socialism.","id":"2259","runtime":140,"imdbId":"tt0107151","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-house-of-the-spirits","version":111,"lastModified":"1301902925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfc\/4c0e69b2017a3c7e8f000cfc\/the-house-of-spirit-mid.jpg","studio":"Costa do Castelo Filmes","genre":"Drama","title":"The House of the Spirits","releaseDate":751161600000,"language":"en","type":"Movie","_key":"14606"} +{"label":"Jan Niklas","version":26,"id":"37068","lastModified":"1301901580000","name":"Jan Niklas","type":"Person","_key":"14607"} +{"label":"Capturing the Friedmans","description":"An Oscar nominated documentary about a middle-class American family who is torn apart when the father Arnold and son Jesse are accused of sexually abusing numerous children. Director Jarecki interviews people from different sides of this tragic story and raises the question of whether they were rightfully tried when they claim they were innocent and there was never any evidence against them.","id":"2260","runtime":107,"imdbId":"tt0342172","trailer":"http:\/\/www.youtube.com\/watch?v=142","homepage":"http:\/\/www.capturingthefriedmans.com\/main.html","version":140,"lastModified":"1301904760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4c1464595e73d64a20000052\/capturing-the-friedmans-mid.jpg","studio":"Magnolia Pictures","genre":"Documentary","title":"Capturing the Friedmans","releaseDate":1054252800000,"language":"en","type":"Movie","_key":"14608"} +{"label":"Andrew Jarecki","version":24,"id":"23287","lastModified":"1301901646000","name":"Andrew Jarecki","type":"Person","_key":"14609"} +{"label":"Arnold Friedman","version":21,"id":"23290","lastModified":"1301901778000","name":"Arnold Friedman","type":"Person","_key":"14610"} +{"label":"Elaine Friedman","version":21,"id":"23291","lastModified":"1301901778000","name":"Elaine Friedman","type":"Person","_key":"14611"} +{"label":"Jesse Friedman","version":20,"id":"23292","lastModified":"1301901646000","name":"Jesse Friedman","type":"Person","_key":"14612"} +{"label":"David Friedman","version":21,"id":"23293","lastModified":"1301901778000","name":"David Friedman","type":"Person","_key":"14613"} +{"label":"Seth Friedman","version":20,"id":"23294","lastModified":"1301901947000","name":"Seth Friedman","type":"Person","_key":"14614"} +{"label":"Wattstax","description":"Wattstax is the 1973 documentary film about the Afro-American Woodstock concert held in Los Angeles seven years after the Watts riots. Director Mel Stuart mixes footage from the concert with footage of the living conditions in the current day Watts neighborhood. The film won the Golden Globe for Best Documentary Film.","id":"2261","runtime":98,"imdbId":"tt0070902","version":69,"lastModified":"1301906646000","studio":"Columbia Pictures","genre":"Documentary","title":"Wattstax","releaseDate":129168000000,"language":"en","type":"Movie","_key":"14615"} +{"label":"Staple Singers","version":17,"id":"23309","lastModified":"1301901576000","name":"Staple Singers","type":"Person","_key":"14616"} +{"label":"Rufus Thomas","version":20,"id":"23310","lastModified":"1301901681000","name":"Rufus Thomas","type":"Person","_key":"14617"} +{"label":"Kim Weston","version":20,"id":"23311","lastModified":"1301901521000","name":"Kim Weston","type":"Person","_key":"14618"} +{"label":"Die Sehnsucht der Veronika Voss","description":"No overview found.","id":"2262","runtime":104,"imdbId":"tt0084654","version":104,"lastModified":"1301907290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/589\/4bc91613017a3c57fe008589\/die-sehnsucht-der-veronika-voss-mid.jpg","studio":"Laura Ziskin Productions","genre":"Crime","title":"Die Sehnsucht der Veronika Voss","releaseDate":381974400000,"language":"en","type":"Movie","_key":"14619"} +{"label":"Annemarie D\u00fcringer","version":25,"id":"23344","lastModified":"1301901697000","name":"Annemarie D\u00fcringer","type":"Person","_key":"14620"} +{"label":"Elisabeth Volkmann","version":24,"id":"23345","lastModified":"1301901953000","name":"Elisabeth Volkmann","type":"Person","_key":"14621"} +{"label":"Music Box","description":"A lawyer defends her father accused of war crimes, but there is more to the case than she suspects.","id":"2263","runtime":124,"imdbId":"tt0100211","version":94,"lastModified":"1301904809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/407\/4d68656d5e73d66b2b000407\/music-box-mid.jpg","studio":"Carolco Pictures Inc","genre":"Crime","title":"Music Box","releaseDate":630288000000,"language":"en","type":"Movie","_key":"14622"} +{"label":"Cheryl Lynn Bruce","version":21,"id":"23355","lastModified":"1301902188000","name":"Cheryl Lynn Bruce","type":"Person","_key":"14623"} +{"label":"Mari T\u00f6r\u00f6csik","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/088\/4c4556215e73d61efd000088\/mari-torocsik-profile.jpg","version":32,"id":"23356","lastModified":"1301901620000","name":"Mari T\u00f6r\u00f6csik","type":"Person","_key":"14624"} +{"label":"Lola","description":"No overview found.","id":"2264","runtime":113,"imdbId":"tt0082671","version":129,"lastModified":"1301906646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/162\/4d1048f67b9aa11488000162\/lola-mid.jpg","studio":"Rialto Film","genre":"Comedy","title":"Lola","releaseDate":367113600000,"language":"en","type":"Movie","_key":"14625"} +{"label":"Helga Feddersen","version":25,"id":"23380","lastModified":"1301901482000","name":"Helga Feddersen","type":"Person","_key":"14626"} +{"label":"Rosel Zech","version":17,"id":"23381","lastModified":"1301902198000","name":"Rosel Zech","type":"Person","_key":"14627"} +{"label":"Momo","description":"In the ruins of an amphitheatre just outside an unnamed Italian city lives Momo, a little girl of mysterious origin. She is remarkable in the neighbourhood because she has the extraordinary ability to listen \u2014 really listen. By simply being with people and listening to them, she can help them find answers to their problems, make up with each other, and think of fun games.","id":"2265","runtime":101,"imdbId":"tt0091537","version":85,"lastModified":"1301905287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4bd3b66b017a3c5342000047\/momo-mid.jpg","studio":"Iduna Film Produktiongesellschaft","genre":"Comedy","title":"Momo","releaseDate":521942400000,"language":"en","type":"Movie","_key":"14628"} +{"label":"Johannes Schaaf","version":20,"id":"23357","lastModified":"1301901911000","name":"Johannes Schaaf","type":"Person","_key":"14629"} +{"label":"Radost Bokel","version":20,"id":"23366","lastModified":"1301901911000","name":"Radost Bokel","type":"Person","_key":"14630"} +{"label":"Ninetto Davoli","version":31,"id":"23367","lastModified":"1301901969000","name":"Ninetto Davoli","type":"Person","_key":"14631"} +{"label":"Bruno Stori","version":19,"id":"23368","lastModified":"1301902114000","name":"Bruno Stori","type":"Person","_key":"14632"} +{"label":"Elide Melli","version":22,"id":"23369","lastModified":"1301901747000","name":"Elide Melli","type":"Person","_key":"14633"} +{"label":"Francesco De Rosa","version":21,"id":"23370","lastModified":"1301902172000","name":"Francesco De Rosa","type":"Person","_key":"14634"} +{"label":"Paris, je t'aime","description":"Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.","id":"2266","runtime":120,"imdbId":"tt0401711","trailer":"http:\/\/www.youtube.com\/watch?v=152","version":239,"lastModified":"1301901746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a6\/4bc91618017a3c57fe0085a6\/paris-je-t-aime-mid.jpg","studio":"Canal Plus","genre":"Drama","title":"Paris, je t'aime","releaseDate":1147910400000,"language":"en","type":"Movie","_key":"14635"} +{"label":"Christopher Doyle","version":48,"id":"1357","lastModified":"1299493002000","name":"Christopher Doyle","type":"Person","_key":"14636"} +{"label":"Alexander Payne","version":47,"id":"13235","lastModified":"1301901304000","name":"Alexander Payne","type":"Person","_key":"14637"} +{"label":"Sylvain Chomet","version":69,"id":"21768","lastModified":"1301901429000","name":"Sylvain Chomet","type":"Person","_key":"14638"} +{"label":"Bruno Podalyd\u00e8s","version":28,"id":"21769","lastModified":"1301901570000","name":"Bruno Podalyd\u00e8s","type":"Person","_key":"14639"} +{"label":"Fr\u00e9d\u00e9ric Auburtin","version":20,"id":"21126","lastModified":"1301901825000","name":"Fr\u00e9d\u00e9ric Auburtin","type":"Person","_key":"14640"} +{"label":"Olivier Assayas","version":35,"id":"21678","lastModified":"1301901354000","name":"Olivier Assayas","type":"Person","_key":"14641"} +{"label":"Nobuhiro Suwa","version":20,"id":"21681","lastModified":"1301901585000","name":"Nobuhiro Suwa","type":"Person","_key":"14642"} +{"label":"Oliver Schmitz","version":18,"id":"21683","lastModified":"1301901543000","name":"Oliver Schmitz","type":"Person","_key":"14643"} +{"label":"Daniela Thomas","version":21,"id":"21771","lastModified":"1301901825000","name":"Daniela Thomas","type":"Person","_key":"14644"} +{"label":"Axel Kiener","version":18,"id":"22165","lastModified":"1301901585000","name":"Axel Kiener","type":"Person","_key":"14645"} +{"label":"Julie Bataille","version":20,"id":"21550","lastModified":"1301901513000","name":"Julie Bataille","type":"Person","_key":"14646"} +{"label":"Florence Muller","version":22,"id":"22163","lastModified":"1301901519000","name":"Florence Muller","type":"Person","_key":"14647"} +{"label":"Le\u00efla Bekhti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05f\/4cd173975e73d6502300105f\/leila-bekhti-profile.jpg","version":29,"id":"23383","lastModified":"1301901604000","name":"Le\u00efla Bekhti","type":"Person","_key":"14648"} +{"label":"Seydou Boro","version":21,"id":"23384","lastModified":"1301901695000","name":"Seydou Boro","type":"Person","_key":"14649"} +{"label":"Martin Combes","version":23,"id":"23385","lastModified":"1301901796000","name":"Martin Combes","type":"Person","_key":"14650"} +{"label":"Cyril Descours","version":27,"id":"23386","lastModified":"1301901405000","name":"Cyril Descours","type":"Person","_key":"14651"} +{"label":"Lionel Dray","version":21,"id":"23387","lastModified":"1301901662000","name":"Lionel Dray","type":"Person","_key":"14652"} +{"label":"Hippolyte Girardot","version":52,"id":"23388","lastModified":"1301901331000","name":"Hippolyte Girardot","type":"Person","_key":"14653"} +{"label":"Sara Martins","version":27,"id":"23390","lastModified":"1301901600000","name":"Sara Martins","type":"Person","_key":"14654"} +{"label":"Paul Putner","version":21,"id":"23391","lastModified":"1301901825000","name":"Paul Putner","type":"Person","_key":"14655"} +{"label":"Joana Preiss","version":25,"id":"23392","lastModified":"1301901585000","name":"Joana Preiss","type":"Person","_key":"14656"} +{"label":"Barbet Schroeder","version":79,"id":"23393","lastModified":"1301901408000","name":"Barbet Schroeder","type":"Person","_key":"14657"} +{"label":"Li Xin","version":21,"id":"23394","lastModified":"1301901825000","name":"Li Xin","type":"Person","_key":"14658"} +{"label":"The Last Mimzy","description":"Two siblings begin to develop special talents after they find a mysterious box of toys. Soon the kids, their parents, and even their teacher are drawn into a strange new world and find a task ahead of them that is far more important than any of them could imagine!","id":"2267","runtime":94,"imdbId":"tt0768212","homepage":"www.mimzy.com","version":392,"lastModified":"1301945441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44f\/4c29bebc7b9aa1446a00044f\/the-last-mimzy-mid.jpg","studio":"New Line Cinema","genre":"Adventure","title":"The Last Mimzy","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"14659"} +{"label":"Robert Shaye","version":80,"id":"13663","lastModified":"1301931352000","name":"Robert Shaye","type":"Person","_key":"14660"} +{"label":"Chris O'Neil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/576\/4d9a027e7b9aa15f3d000576\/chris-o-neil-profile.jpg","version":20,"id":"23417","lastModified":"1301931614000","name":"Chris O'Neil","type":"Person","_key":"14661"} +{"label":"Rhiannon Leigh Wryn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/567\/4d9a02197b9aa15f3d000567\/rhiannon-leigh-wryn-profile.jpg","version":25,"id":"23418","lastModified":"1301931513000","name":"Rhiannon Leigh Wryn","type":"Person","_key":"14662"} +{"label":"Kathryn Hahn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9bc\/4d0ace125e73d613d50009bc\/kathryn-hahn-profile.jpg","version":50,"id":"17696","lastModified":"1301931352000","name":"Kathryn Hahn","type":"Person","_key":"14663"} +{"label":"The Golden Compass","description":"After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.","id":"2268","runtime":105,"imdbId":"tt0385752","trailer":"http:\/\/www.youtube.com\/watch?v=gNiiJ0JtBOQ","homepage":"http:\/\/www.goldencompassmovie.com\/index_german.html","version":291,"lastModified":"1301901257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4d6343737b9aa13254000317\/the-golden-compass-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"The Golden Compass","releaseDate":1196121600000,"language":"en","tagline":"There are worlds beyond our own - the compass will show the way.","type":"Movie","_key":"14664"} +{"label":"Ben Walker","version":26,"id":"45585","lastModified":"1301901628000","name":"Ben Walker","type":"Person","_key":"14665"} +{"label":"Magda Szubanski","version":35,"id":"45586","lastModified":"1301901628000","name":"Magda Szubanski","type":"Person","_key":"14666"} +{"label":"Jack Shepherd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cb6\/4cf148d45e73d61925000cb6\/jack-shepherd-profile.jpg","version":31,"id":"45587","lastModified":"1301901469000","name":"Jack Shepherd","type":"Person","_key":"14667"} +{"label":"Clare Higgins","version":39,"id":"45588","lastModified":"1301901604000","name":"Clare Higgins","type":"Person","_key":"14668"} +{"label":"Dakota Blue Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b68\/4d27879b7b9aa134cb001b68\/dakota-blue-richards-profile.jpg","version":31,"id":"45589","lastModified":"1301901466000","name":"Dakota Blue Richards","type":"Person","_key":"14669"} +{"label":"Day Watch","description":"A man who serves in the war between the forces of Light and Dark comes into possession of a device that can restore life to Moscow, which was nearly destroyed by an apocalyptic event.","id":"2269","runtime":132,"imdbId":"tt0409904","homepage":"http:\/\/www.foxsearchlight.com\/daywatch\/","version":291,"lastModified":"1302067338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e8\/4bc91624017a3c57fe0085e8\/dnevnoy-dozor-mid.jpg","studio":"Bazelevs Production","genre":"Action","title":"Day Watch","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"14670"} +{"label":"Timur Bekmambetov","biography":"\u0422\u0438\u043c\u0443\u0440 \u0411\u0435\u043a\u043c\u0430\u043c\u0431\u0435\u0442\u043e\u0432 (\u0440\u0435\u0436\u0438c\u0441\u0435\u0440, \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442, \u043f\u0440\u043e\u0434\u044e\u0441\u0435\u0440) \u0440\u043e\u0434\u0438\u043b\u0441\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0435 \u0413\u0443\u0440\u044c\u0435\u0432 (\u0410\u0442\u044b\u0440\u0430\u0443) \u0421\u0421\u0421\u0420 (\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d) 25 \u0438\u044e\u043d\u044f 1961 \u0433\u043e\u0434\u0430.\n\u041f\u0435\u0440\u0432\u044b\u043c \u043c\u0435\u0441\u0442\u043e\u043c \u0443\u0447\u0435\u0431\u044b \u043f\u043e\u0441\u043b\u0435 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0448\u043a\u043e\u043b\u044b, \u0441\u0442\u0430\u043b \u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u0438\u0439 \u042d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 (\u041c\u0410\u0418), \u0443\u0436\u0435 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0422\u0438\u043c\u0443\u0440 \u043d\u0430\u043b\u0430\u0434\u0438\u043b \u0441\u0432\u044f\u0437\u0438 \u0441 \u0434\u0438\u0441\u0441\u0438\u0434\u0435\u043d\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 \u0445\u0443\u0434\u043e\u0436\u043d\u0438\u043a\u0430\u043c\u0438 \u0442\u0435\u0445 \u043b\u0435\u0442, \u0442\u0430\u043a\u0438\u043c\u0438 \u043a\u0430\u043a \u0420\u0430\u0431\u0438\u043d \u0438 \u0417\u0432\u0435\u0440\u0435\u0432. \u0412 1980 \u0433\u043e\u0434\u0443, \u043f\u043e\u043f\u0430\u0432 \u043f\u043e\u0434 \u00ab\u043f\u0440\u0435\u0434\u043e\u043b\u0438\u043c\u043f\u0438\u0439\u0441\u043a\u0443\u044e \u0433\u0440\u0435\u0431\u0435\u043d\u043a\u0443\u00bb, \u00ab\u0432\u044b\u0447\u0435\u0441\u044b\u0432\u0430\u044e\u0449\u0443\u044e\u00bb \u043d\u0435\u0431\u043b\u0430\u0433\u043e\u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0445 \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u0438\u0437 \u0441\u0442\u043e\u043b\u0438\u0446\u044b, \u043f\u0435\u0440\u0435\u0431\u0440\u0430\u043b\u0441\u044f \u0432 \u0422\u0430\u0448\u043a\u0435\u043d\u0442, \u0433\u0434\u0435 \u0438 \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u043b \u043d\u0430 \u0444\u0430\u043a\u0443\u043b\u044c\u0442\u0435\u0442 \u0436\u0438\u0432\u043e\u043f\u0438\u0441\u0438 \u043f\u043e \u0441\u043f\u0435\u0446\u0438\u0430","version":87,"id":"23430","lastModified":"1302067324000","name":"Timur Bekmambetov","type":"Person","_key":"14671"} +{"label":"Konstantin Khabenskiy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/325\/4ca824a97b9aa17acd000325\/konstantin-khabenskiy-profile.jpg","version":53,"id":"23440","lastModified":"1302067324000","name":"Konstantin Khabenskiy","type":"Person","_key":"14672"} +{"label":"Mariya Poroshina","version":30,"id":"23441","lastModified":"1302067324000","name":"Mariya Poroshina","type":"Person","_key":"14673"} +{"label":"Vladimir Menshov","version":42,"id":"23442","lastModified":"1302067324000","name":"Vladimir Menshov","type":"Person","_key":"14674"} +{"label":"Galina Tyunina","version":30,"id":"23443","lastModified":"1302067324000","name":"Galina Tyunina","type":"Person","_key":"14675"} +{"label":"Zhanna Friske","version":34,"id":"23444","lastModified":"1302067324000","name":"Zhanna Friske","type":"Person","_key":"14676"} +{"label":"Viktor Verzhbitskiy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd6\/4d63f8e27b9aa13254000fd6\/viktor-verzhbitskiy-profile.jpg","version":52,"id":"29832","lastModified":"1302067324000","name":"Viktor Verzhbitskiy","type":"Person","_key":"14677"} +{"label":"Dmitriy Martynov","version":24,"id":"29833","lastModified":"1302067324000","name":"Dmitriy Martynov","type":"Person","_key":"14678"} +{"label":"Valeriy Zolotukhin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25d\/4c56b9907b9aa151f400025d\/valeriy-zolotukhin-profile.jpg","version":45,"birthday":"-900381600000","id":"29834","birthplace":"Russia","lastModified":"1302067324000","name":"Valeriy Zolotukhin","type":"Person","_key":"14679"} +{"label":"Nurzhuman Ikhtymbayev","version":24,"id":"29836","lastModified":"1302067324000","name":"Nurzhuman Ikhtymbayev","type":"Person","_key":"14680"} +{"label":"Aleksey Maklakov","version":27,"id":"29837","lastModified":"1302067324000","name":"Aleksey Maklakov","type":"Person","_key":"14681"} +{"label":"Aleksandr Samoylenko","version":26,"id":"29838","lastModified":"1302067324000","name":"Aleksandr Samoylenko","type":"Person","_key":"14682"} +{"label":"Yuriy Kutsenko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/179\/4c5692587b9aa151f3000179\/yuriy-kutsenko-profile.jpg","version":51,"birthday":"-82688400000","id":"29839","birthplace":"Zaporogie","lastModified":"1302067324000","name":"Yuriy Kutsenko","type":"Person","_key":"14683"} +{"label":"Irina Yakovleva","version":26,"id":"29840","lastModified":"1302067324000","name":"Irina Yakovleva","type":"Person","_key":"14684"} +{"label":"Georgiy Dronov","version":24,"id":"29841","lastModified":"1302067324000","name":"Georgiy Dronov","type":"Person","_key":"14685"} +{"label":"Nikolay Olyalin","version":26,"id":"29842","lastModified":"1302067324000","name":"Nikolay Olyalin","type":"Person","_key":"14686"} +{"label":"Rimma Markova","version":32,"id":"29843","lastModified":"1302067325000","name":"Rimma Markova","type":"Person","_key":"14687"} +{"label":"Anna Slyusareva","version":30,"id":"31861","lastModified":"1302067325000","name":"Anna Slyusareva","type":"Person","_key":"14688"} +{"label":"Igor Lifanov","version":26,"id":"29845","lastModified":"1302067325000","name":"Igor Lifanov","type":"Person","_key":"14689"} +{"label":"Mariya Mironova","version":33,"id":"29847","lastModified":"1302067325000","name":"Mariya Mironova","type":"Person","_key":"14690"} +{"label":"Anna Dubrovskaya","version":32,"id":"29848","lastModified":"1302067325000","name":"Anna Dubrovskaya","type":"Person","_key":"14691"} +{"label":"Sergey Ovchinnikov","version":26,"id":"29849","lastModified":"1302067325000","name":"Sergey Ovchinnikov","type":"Person","_key":"14692"} +{"label":"Anton Stepanenko","version":26,"id":"29850","lastModified":"1302067325000","name":"Anton Stepanenko","type":"Person","_key":"14693"} +{"label":"Sergey Trofimov","version":37,"id":"23438","lastModified":"1302067325000","name":"Sergey Trofimov","type":"Person","_key":"14694"} +{"label":"Aleksey Chadov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d22\/4d52de847b9aa13aba011d22\/aleksey-chadov-profile.jpg","version":30,"id":"101433","lastModified":"1302067325000","name":"Aleksey Chadov","type":"Person","_key":"14695"} +{"label":"Stardust","description":"In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.","id":"2270","runtime":122,"imdbId":"tt0486655","trailer":"http:\/\/www.youtube.com\/watch?v=Y6_gBg4XjWk","homepage":"http:\/\/www.stardustmovie.com","version":343,"lastModified":"1302010217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4bc9162b017a3c57fe008607\/stardust-mid.jpg","studio":"Di Bonaventura Pictures","genre":"Action","title":"Stardust","releaseDate":1186617600000,"language":"en","tagline":"The fairytale that won't behave","type":"Movie","_key":"14696"} +{"label":"Matthew Vaughn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4ce5798a7b9aa179bb000029\/matthew-vaughn-profile.jpg","version":96,"id":"957","lastModified":"1299491032000","name":"Matthew Vaughn","type":"Person","_key":"14697"} +{"label":"Charlie Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf1\/4d2227d27b9aa1280f000cf1\/charlie-cox-profile.jpg","version":43,"id":"23458","lastModified":"1301904085000","name":"Charlie Cox","type":"Person","_key":"14698"} +{"label":"Sienna Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4bebaf81017a3c37a00000c8\/sienna-miller-profile.jpg","version":53,"id":"23459","lastModified":"1301904074000","name":"Sienna Miller","type":"Person","_key":"14699"} +{"label":"Bimbo Hart","version":25,"id":"35390","lastModified":"1301901436000","name":"Bimbo Hart","type":"Person","_key":"14700"} +{"label":"Alastair MacIntosh","version":23,"id":"35391","lastModified":"1301901464000","name":"Alastair MacIntosh","type":"Person","_key":"14701"} +{"label":"Henry Cavill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/608\/4d9ba6bc7b9aa16d10000608\/henry-cavill-profile.jpg","version":41,"birthday":"420933600000","id":"73968","birthplace":"Channel Islands","lastModified":"1302039748000","name":"Henry Cavill","type":"Person","_key":"14702"} +{"label":"The Seeker: The Dark Is Rising","description":"A boy's life is turned upside down when he learns that he is the last of a group of immortal warriors who have dedicated their lives to fighting the forces of the dark.","id":"2274","runtime":99,"imdbId":"tt0484562","version":230,"lastModified":"1301901908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/619\/4bc91632017a3c57fe008619\/the-dark-is-rising-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Seeker: The Dark Is Rising","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"14703"} +{"label":"Jonathan Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cb\/4d7e329b7b9aa11a0801a3cb\/jonathan-jackson-profile.jpg","version":37,"id":"23495","lastModified":"1302065848000","name":"Jonathan Jackson","type":"Person","_key":"14704"} +{"label":"Amelia Warner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4c396d0d5e73d671d100009a\/amelia-warner-profile.jpg","version":41,"id":"23496","lastModified":"1302065848000","name":"Amelia Warner","type":"Person","_key":"14705"} +{"label":"Drew Tyler Bell","version":29,"id":"23497","lastModified":"1302065848000","name":"Drew Tyler Bell","type":"Person","_key":"14706"} +{"label":"Alexander Ludwig","version":34,"id":"23498","lastModified":"1302065849000","name":"Alexander Ludwig","type":"Person","_key":"14707"} +{"label":"The General's Daughter","description":"Respected Army Gen. Joe Campbell is headed for a hero's retirement -- until his daughter is raped and murdered on his military base, and warrant officers and ex-lovers Paul Brenner and Sara Sunhill are given 36 hours to solve the convoluted case. But what they discover could bring the entire base down.","id":"2275","runtime":116,"imdbId":"tt0144214","version":125,"lastModified":"1301903175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/132\/4c9a37335e73d65615000132\/the-general-s-daughter-mid.jpg","studio":"MFP Munich Film Partners","genre":"Drama","title":"The General's Daughter","releaseDate":929664000000,"language":"en","tagline":"To find the truth, follow the lies.","type":"Movie","_key":"14708"} +{"label":"Bicentennial Man","description":"In the not so distant future, androids are owned as household servants. Andrew, is an extraordinary robot who exhibits emotional and creative characteristics that were never expected of him. Over a period of 200 years he evolves far beyond his initial design.","id":"2277","runtime":132,"imdbId":"tt0182789","version":162,"lastModified":"1301902071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d2\/4d83b74d7b9aa12ecd0002d2\/bicentennial-man-mid.jpg","studio":"1492 Pictures","genre":"Drama","title":"Bicentennial Man","releaseDate":945388800000,"language":"en","tagline":"One robot's 200 year journey to become an ordinary man.","type":"Movie","_key":"14709"} +{"label":"Kiersten Warren","version":26,"id":"23504","lastModified":"1301902114000","name":"Kiersten Warren","type":"Person","_key":"14710"} +{"label":"Big","description":"When a boy wishes to be big at a magic wish machine, he wakes up the next morning and finds himself in an adult body literally overnight.","id":"2280","runtime":104,"imdbId":"tt0094737","trailer":"http:\/\/www.youtube.com\/watch?v=J62jciQ1PbY","version":384,"lastModified":"1302022400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4c55c6ec5e73d63a6c000055\/big-mid.jpg","studio":"Gracie Films","genre":"Comedy","title":"Big","releaseDate":581299200000,"language":"en","type":"Movie","_key":"14711"} +{"label":"Jon Lovitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4cf6786d5e73d6299b00123e\/jon-lovitz-profile.jpg","version":83,"id":"16165","lastModified":"1301901111000","name":"Jon Lovitz","type":"Person","_key":"14712"} +{"label":"Penny Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ee\/4bd0a07e017a3c63ed0001ee\/penny-marshall-profile.jpg","version":50,"id":"14911","lastModified":"1301901327000","name":"Penny Marshall","type":"Person","_key":"14713"} +{"label":"\u00c0 nos amours","description":"No overview found.","id":"2282","runtime":95,"imdbId":"tt0086650","version":94,"lastModified":"1301904907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/027\/4c8577c25e73d66b5a000027\/a-nos-amours-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"\u00c0 nos amours","releaseDate":437788800000,"language":"en","type":"Movie","_key":"14714"} +{"label":"Evelyne Ker","version":18,"id":"21770","lastModified":"1301901796000","name":"Evelyne Ker","type":"Person","_key":"14715"} +{"label":"Maurice Pialat","version":27,"id":"16988","lastModified":"1301901459000","name":"Maurice Pialat","type":"Person","_key":"14716"} +{"label":"Dominique Besnehard","version":30,"id":"21680","lastModified":"1301903113000","name":"Dominique Besnehard","type":"Person","_key":"14717"} +{"label":"Anne-Sophie Maill\u00e9","version":17,"id":"21883","lastModified":"1301901825000","name":"Anne-Sophie Maill\u00e9","type":"Person","_key":"14718"} +{"label":"Pierre-Loup Rajot","version":17,"id":"21578","lastModified":"1301901825000","name":"Pierre-Loup Rajot","type":"Person","_key":"14719"} +{"label":"Ma\u00eft\u00e9 Maill\u00e9","version":17,"id":"22160","lastModified":"1301901796000","name":"Ma\u00eft\u00e9 Maill\u00e9","type":"Person","_key":"14720"} +{"label":"Christophe Odent","version":24,"id":"23505","lastModified":"1301901797000","name":"Christophe Odent","type":"Person","_key":"14721"} +{"label":"Jacques Fieschi","version":27,"id":"23506","lastModified":"1301901662000","name":"Jacques Fieschi","type":"Person","_key":"14722"} +{"label":"Cyr Boitard","version":20,"id":"23507","lastModified":"1301901825000","name":"Cyr Boitard","type":"Person","_key":"14723"} +{"label":"The Manns - Novel of a Century","description":"No overview found.","id":"2283","runtime":312,"imdbId":"tt0250573","version":74,"lastModified":"1301904453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9c\/4d7b6e4d5e73d65174000f9c\/die-manns-ein-jahrhundertroman-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"The Manns - Novel of a Century","releaseDate":1007510400000,"language":"en","type":"Movie","_key":"14724"} +{"label":"Heinrich Breloer","version":32,"id":"23511","lastModified":"1302004068000","name":"Heinrich Breloer","type":"Person","_key":"14725"} +{"label":"Veronica Ferres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4cf196dd7b9aa1449b000001\/veronica-ferres-profile.jpg","version":49,"id":"23524","lastModified":"1302003981000","name":"Veronica Ferres","type":"Person","_key":"14726"} +{"label":"Stefanie Stappenbeck","version":20,"id":"23525","lastModified":"1301901805000","name":"Stefanie Stappenbeck","type":"Person","_key":"14727"} +{"label":"Anne-Marie Blanc","version":18,"id":"23527","lastModified":"1301902017000","name":"Anne-Marie Blanc","type":"Person","_key":"14728"} +{"label":"Rudolf Wessely","version":21,"id":"23528","lastModified":"1301901824000","name":"Rudolf Wessely","type":"Person","_key":"14729"} +{"label":"Katharina Eckerfeld","version":21,"id":"23529","lastModified":"1301902024000","name":"Katharina Eckerfeld","type":"Person","_key":"14730"} +{"label":"Mr. Magorium's Wonder Emporium","description":"Molly Mahoney is the awkward and insecure manager of Mr. Magorium's Wonder Emporium, the strangest, most fantastic, most wonderful toy store in the world. But when Mr. Magorium bequeaths the store to her, a dark and ominous change begins to take over the once remarkable Emporium.","id":"2284","runtime":93,"imdbId":"tt0457419","trailer":"http:\/\/www.youtube.com\/watch?v=m4Mrga2aSL0","homepage":"http:\/\/www.magorium.com\/","version":290,"lastModified":"1301901639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66f\/4bc91640017a3c57fe00866f\/mr-magorium-s-wonder-emporium-mid.jpg","genre":"Animation","title":"Mr. Magorium's Wonder Emporium","releaseDate":1195084800000,"language":"en","tagline":"You have to believe it to see it.","type":"Movie","_key":"14731"} +{"label":"Jason Bateman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4c1a3dce7b9aa1156c000058\/jason-bateman-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bAmerican actor Jason Bateman comes from the small town of Rye, New York.  He is most famous for his his role on the television series Arrested Development. Bateman comes from a family of entertainers and started acting at an early age. More recently he has moved his focus from television to working on feature films.<\/span><\/font>\n\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\"","version":130,"id":"23532","lastModified":"1302064939000","name":"Jason Bateman","type":"Person","_key":"14732"} +{"label":"Zach Mills","version":25,"id":"23533","lastModified":"1301901281000","name":"Zach Mills","type":"Person","_key":"14733"} +{"label":"Jonathan Potts","version":23,"id":"23534","lastModified":"1301901549000","name":"Jonathan Potts","type":"Person","_key":"14734"} +{"label":"Rebecca Northan","version":27,"id":"23535","lastModified":"1301901458000","name":"Rebecca Northan","type":"Person","_key":"14735"} +{"label":"David Rendall","version":24,"id":"23536","lastModified":"1301904120000","name":"David Rendall","type":"Person","_key":"14736"} +{"label":"Jade Cohen","version":23,"id":"23538","lastModified":"1301901549000","name":"Jade Cohen","type":"Person","_key":"14737"} +{"label":"Marcia Bennett","version":37,"id":"40385","lastModified":"1301901446000","name":"Marcia Bennett","type":"Person","_key":"14738"} +{"label":"Ted Ludzik","version":24,"id":"40386","lastModified":"1301901388000","name":"Ted Ludzik","type":"Person","_key":"14739"} +{"label":"Zach Helm","version":25,"id":"23539","lastModified":"1301901312000","name":"Zach Helm","type":"Person","_key":"14740"} +{"label":"Eine Liebe in Deutschland","description":"No overview found.","id":"2285","runtime":132,"imdbId":"tt0085843","version":97,"lastModified":"1301906096000","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Eine Liebe in Deutschland","releaseDate":436060800000,"language":"en","type":"Movie","_key":"14741"} +{"label":"Piotr Lysak","version":20,"id":"23563","lastModified":"1301901824000","name":"Piotr Lysak","type":"Person","_key":"14742"} +{"label":"G\u00e9rard Desarthe","version":20,"id":"23565","lastModified":"1301902198000","name":"G\u00e9rard Desarthe","type":"Person","_key":"14743"} +{"label":"Erika Wackernagel","version":20,"id":"23566","lastModified":"1301902191000","name":"Erika Wackernagel","type":"Person","_key":"14744"} +{"label":"Crusade in Jeans","description":"Dolf a 15 year old boy is sent back in time by a timemachine. Accidentally he is sent back to the Middle Ages. He is rescued by children who are part of a childrens' crusade, on their way to rescue Jeruzalem. During the trip Dolf finds out the danger is not coming from outside the crusade, but from within.","id":"2286","runtime":125,"imdbId":"tt0381111","trailer":"http:\/\/www.youtube.com\/watch?v=190","version":95,"lastModified":"1301903259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/144\/4bd02dfd017a3c63f5000144\/kruistocht-in-spijkerbroek-mid.jpg","studio":"Kasander Film Company","genre":"Adventure","title":"Crusade in Jeans","releaseDate":1163548800000,"language":"en","type":"Movie","_key":"14745"} +{"label":"Ben Sombogaart","version":24,"id":"79437","lastModified":"1301901493000","name":"Ben Sombogaart","type":"Person","_key":"14746"} +{"label":"Stephanie Leonidas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b7\/4d3687d75e73d6335600c6b7\/stephanie-leonidas-profile.jpg","version":26,"id":"23587","lastModified":"1301901290000","name":"Stephanie Leonidas","type":"Person","_key":"14747"} +{"label":"Ryan Winsley","version":22,"id":"23588","lastModified":"1301902198000","name":"Ryan Winsley","type":"Person","_key":"14748"} +{"label":"Jake Kedge","version":19,"id":"23589","lastModified":"1301902203000","name":"Jake Kedge","type":"Person","_key":"14749"} +{"label":"Joe Flynn","version":18,"id":"137108","lastModified":"1301902702000","name":"Joe Flynn","type":"Person","_key":"14750"} +{"label":"Rize","description":"A documentary film that highlights two street derived dance styles, Clowing and Krumping, that came out of the low income neighborhoods of L.A.. Director David LaChapelle interviews each dance crew about how their unique dances evolved. A new and positive activity away from the drugs, guns, and gangs that ruled their neighborhood. A raw film about a growing sub-culture movements in America.","id":"2287","runtime":86,"imdbId":"tt0436724","trailer":"http:\/\/www.youtube.com\/watch?v=155","version":183,"lastModified":"1301903690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/680\/4bc91642017a3c57fe008680\/rize-mid.jpg","studio":"David LaChapelle Studios","genre":"Documentary","title":"Rize","releaseDate":1105747200000,"language":"en","type":"Movie","_key":"14751"} +{"label":"David LaChapelle","version":23,"id":"23590","lastModified":"1301902117000","name":"David LaChapelle","type":"Person","_key":"14752"} +{"label":"Christopher Toler","version":17,"id":"23591","lastModified":"1301902203000","name":"Christopher Toler","type":"Person","_key":"14753"} +{"label":"Tommy the Clown","version":19,"id":"23592","lastModified":"1301901917000","name":"Tommy the Clown","type":"Person","_key":"14754"} +{"label":"Miss Prissy","version":19,"id":"23593","lastModified":"1301901918000","name":"Miss Prissy","type":"Person","_key":"14755"} +{"label":"Dragon","version":19,"id":"23596","lastModified":"1301901628000","name":"Dragon","type":"Person","_key":"14756"} +{"label":"Ceasare Willis","version":17,"id":"23597","lastModified":"1301901684000","name":"Ceasare Willis","type":"Person","_key":"14757"} +{"label":"La Ni\u00f1a","version":19,"id":"23598","lastModified":"1301901753000","name":"La Ni\u00f1a","type":"Person","_key":"14758"} +{"label":"Larry Berry","version":19,"id":"23599","lastModified":"1301901917000","name":"Larry Berry","type":"Person","_key":"14759"} +{"label":"Kevin Scott Richardson","version":17,"id":"23605","lastModified":"1301902117000","name":"Kevin Scott Richardson","type":"Person","_key":"14760"} +{"label":"Closer","description":"Set in contemporary London, a story of passion, drama, love, and abandonment involving four strangers--their chance meetings, instant attractions and casual betrayals. ","id":"2288","runtime":98,"imdbId":"tt0376541","trailer":"http:\/\/www.youtube.com\/watch?v=156","version":203,"lastModified":"1301901435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68d\/4bc91646017a3c57fe00868d\/closer-mid.jpg","studio":"Sony Pictures","genre":"Drama","title":"Closer","releaseDate":1102032000000,"language":"en","tagline":"If you believe in love at first sight, you never stop looking.","type":"Movie","_key":"14761"} +{"label":"Nick Hobbs","version":24,"id":"23607","lastModified":"1301901513000","name":"Nick Hobbs","type":"Person","_key":"14762"} +{"label":"Colin Stinton","version":47,"id":"23608","lastModified":"1301901103000","name":"Colin Stinton","type":"Person","_key":"14763"} +{"label":"Cold Mountain","description":"Cold Mountain is the film adaptation of the novel by the same name from Charles Frazier. A star-studded film taking place in North Carolina during the Civil War. The film portrays civilian life during the war from the perspective of a woman who has been left behind as the men fight.","id":"2289","runtime":154,"imdbId":"tt0159365","trailer":"http:\/\/www.youtube.com\/watch?v=uXGtunJ9Jqk","version":156,"lastModified":"1301901985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a7\/4bc91648017a3c57fe0086a7\/cold-mountain-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Cold Mountain","releaseDate":1072310400000,"language":"en","type":"Movie","_key":"14764"} +{"label":"Jakob the Liar","description":"In 1944 Poland, a Jewish shop keeper named Jakob is summoned to ghetto headquarters after being caught out after curfew. While waiting for the German Kommondant, Jakob overhears a German radio broadcast about Russian troop movements. Returned to the ghetto, the shopkeeper shares his information with a friend and then rumors fly that there is a secret radio within the ghetto.","id":"2290","runtime":120,"imdbId":"tt0120716","version":205,"lastModified":"1301905383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b0\/4bc91649017a3c57fe0086b0\/jakob-the-liar-mid.jpg","studio":"Blue Wolf Productions","genre":"Comedy","title":"Jakob the Liar","releaseDate":937440000000,"language":"en","type":"Movie","_key":"14765"} +{"label":"Hannah Taylor-Gordon","version":25,"id":"23621","lastModified":"1301901649000","name":"Hannah Taylor-Gordon","type":"Person","_key":"14766"} +{"label":"\u00c9va Ig\u00f3","version":22,"id":"23622","lastModified":"1301901588000","name":"\u00c9va Ig\u00f3","type":"Person","_key":"14767"} +{"label":"Istv\u00e1n B\u00e1lint","version":19,"id":"23623","lastModified":"1301902025000","name":"Istv\u00e1n B\u00e1lint","type":"Person","_key":"14768"} +{"label":"Kathleen Gati","version":23,"id":"23625","lastModified":"1301901925000","name":"Kathleen Gati","type":"Person","_key":"14769"} +{"label":"Jacob's Ladder","description":"A traumatized Vietnam war veteran finds out that his post-war life isn't what he believes it to be when he's attacked by horned creatures in the subway and his dead son comes to visit him...","id":"2291","runtime":115,"imdbId":"tt0099871","trailer":"http:\/\/www.youtube.com\/watch?v=157","version":128,"lastModified":"1301902736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c5\/4bc9164e017a3c57fe0086c5\/jacob-s-ladder-mid.jpg","studio":"Tri Star","genre":"Drama","title":"Jacob's Ladder","releaseDate":657504000000,"language":"en","type":"Movie","_key":"14770"} +{"label":"Patricia Kalember","version":37,"id":"23627","lastModified":"1301916267000","name":"Patricia Kalember","type":"Person","_key":"14771"} +{"label":"Eriq La Salle","version":30,"id":"23628","lastModified":"1301901559000","name":"Eriq La Salle","type":"Person","_key":"14772"} +{"label":"Clerks","description":"Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed \u2026 and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.","id":"2292","runtime":92,"imdbId":"tt0109445","trailer":"http:\/\/www.youtube.com\/watch?v=KSjjEfv8be4","version":434,"lastModified":"1301909845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dd\/4bc91650017a3c57fe0086dd\/clerks-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Clerks","releaseDate":782524800000,"language":"en","tagline":"Just because they serve you doesn't mean they like you.","type":"Movie","_key":"14773"} +{"label":"Jeff Anderson","version":34,"id":"23630","lastModified":"1301901183000","name":"Jeff Anderson","type":"Person","_key":"14774"} +{"label":"Lisa Spoonhauer","version":21,"id":"23632","lastModified":"1301901295000","name":"Lisa Spoonhauer","type":"Person","_key":"14775"} +{"label":"Marilyn Ghigliotti","version":23,"id":"23631","lastModified":"1301901457000","name":"Marilyn Ghigliotti","type":"Person","_key":"14776"} +{"label":"Scott Schiaffo","version":21,"birthday":"-191811600000","id":"23634","lastModified":"1301901488000","name":"Scott Schiaffo","type":"Person","_key":"14777"} +{"label":"David Klein","version":40,"id":"21405","lastModified":"1301901394000","name":"David Klein","type":"Person","_key":"14778"} +{"label":"Ed Hapstak","version":20,"id":"23635","lastModified":"1301901345000","name":"Ed Hapstak","type":"Person","_key":"14779"} +{"label":"Pattijean Csik","version":20,"id":"23636","lastModified":"1301901312000","name":"Pattijean Csik","type":"Person","_key":"14780"} +{"label":"John Henry Westhead","version":20,"id":"23637","lastModified":"1301901345000","name":"John Henry Westhead","type":"Person","_key":"14781"} +{"label":"Mallrats","description":"Both dumped by their girlfriends, two best friends seek refuge in the local mall.","id":"2293","runtime":94,"imdbId":"tt0113749","trailer":"http:\/\/www.youtube.com\/watch?v=_eVo7aBze1w","version":155,"lastModified":"1301902438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ee\/4bc91653017a3c57fe0086ee\/mallrats-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Mallrats","releaseDate":814147200000,"language":"en","type":"Movie","_key":"14782"} +{"label":"Jeremy London","version":35,"id":"23646","lastModified":"1301901332000","name":"Jeremy London","type":"Person","_key":"14783"} +{"label":"Shannen Doherty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ae\/4bcc3738017a3c0f320000ae\/shannen-doherty-profile.jpg","version":59,"id":"19144","lastModified":"1302059430000","name":"Shannen Doherty","type":"Person","_key":"14784"} +{"label":"Ren\u00e9e Humphrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ac\/4c7c6df45e73d647490000ac\/renee-humphrey-profile.jpg","version":24,"id":"23647","lastModified":"1301901424000","name":"Ren\u00e9e Humphrey","type":"Person","_key":"14785"} +{"label":"Jay and Silent Bob Strike Back","description":"When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.","id":"2294","runtime":104,"imdbId":"tt0261392","trailer":"http:\/\/www.youtube.com\/watch?v=1548","version":142,"lastModified":"1301901911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bea\/4d175aa65e73d6083e008bea\/jay-and-silent-bob-strike-back-mid.jpg","studio":"View Askew Productions","genre":"Action","title":"Jay and Silent Bob Strike Back","releaseDate":998438400000,"language":"en","tagline":"Hollywood had it coming","type":"Movie","_key":"14786"} +{"label":"Ali Larter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4bcc1059017a3c0f27000095\/ali-larter-profile.jpg","version":82,"birthday":"194310000000","id":"17303","birthplace":"Cherry Hill, New Jersey ","lastModified":"1301904052000","name":"Ali Larter","type":"Person","_key":"14787"} +{"label":"Jennifer Schwalbach Smith","version":34,"id":"23658","lastModified":"1301901227000","name":"Jennifer Schwalbach Smith","type":"Person","_key":"14788"} +{"label":"Clerks II","description":"A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.","id":"2295","runtime":97,"imdbId":"tt0424345","trailer":"http:\/\/www.youtube.com\/watch?v=b1jDs_vxrDs","version":266,"lastModified":"1301902525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/127\/4ce716af5e73d62590000127\/clerks-ii-mid.jpg","studio":"The Weinstein Company","genre":"Comedy","title":"Clerks II","releaseDate":1148601600000,"language":"en","tagline":"With Power Comes No Responsibility","type":"Movie","_key":"14789"} +{"label":"Trevor Fehrman","version":23,"id":"23740","lastModified":"1301901824000","name":"Trevor Fehrman","type":"Person","_key":"14790"} +{"label":"Kein Mann f\u00fcr Camp Detrick","description":"No overview found.","id":"2296","runtime":90,"imdbId":"tt0385806","version":40,"lastModified":"1301905344000","studio":"DEFA","genre":"Crime","title":"Kein Mann f\u00fcr Camp Detrick","releaseDate":23846400000,"language":"en","type":"Movie","_key":"14791"} +{"label":"Ingrid Sander","version":21,"id":"23638","lastModified":"1301901973000","name":"Ingrid Sander","type":"Person","_key":"14792"} +{"label":"Horst Drinda","version":20,"id":"23643","lastModified":"1301902013000","name":"Horst Drinda","type":"Person","_key":"14793"} +{"label":"G\u00fcnther Grabbert","version":20,"id":"23644","lastModified":"1301901796000","name":"G\u00fcnther Grabbert","type":"Person","_key":"14794"} +{"label":"Kafka","description":"Kafka, an insurance worker gets embroiled in an underground group after a co-worker is murdered. The underground group is responsible for bombings all over town, attempting to thwart a secret organization that controls the major events in society. He eventually penetrates the secret organization and must confront them.","id":"2297","runtime":98,"imdbId":"tt0102181","trailer":"http:\/\/www.youtube.com\/watch?v=1bf4QVM0RII","version":99,"lastModified":"1301903721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72c\/4bc9165f017a3c57fe00872c\/kafka-mid.jpg","studio":"Baltimore Pictures","genre":"Drama","title":"Kafka","releaseDate":662688000000,"language":"en","type":"Movie","_key":"14795"} +{"label":"Der Kinoerz\u00e4hler","description":"No overview found.","id":"2298","runtime":98,"imdbId":"tt0107324","version":50,"lastModified":"1301907433000","studio":"Allianz","genre":"Drama","title":"Der Kinoerz\u00e4hler","releaseDate":754185600000,"language":"en","type":"Movie","_key":"14796"} +{"label":"Bernhard Sinkel","version":29,"id":"23660","lastModified":"1301901973000","name":"Bernhard Sinkel","type":"Person","_key":"14797"} +{"label":"Martin Benrath","version":20,"id":"23664","lastModified":"1301901824000","name":"Martin Benrath","type":"Person","_key":"14798"} +{"label":"Andrej Jautze","version":20,"id":"23665","lastModified":"1301901691000","name":"Andrej Jautze","type":"Person","_key":"14799"} +{"label":"Katharina Tanner","version":20,"id":"23666","lastModified":"1301902199000","name":"Katharina Tanner","type":"Person","_key":"14800"} +{"label":"Sophie Loewe","version":17,"id":"23667","lastModified":"1301901982000","name":"Sophie Loewe","type":"Person","_key":"14801"} +{"label":"Harry Baer","version":30,"id":"23668","lastModified":"1301901796000","name":"Harry Baer","type":"Person","_key":"14802"} +{"label":"Gojko Mitic","version":23,"id":"22588","lastModified":"1301901448000","name":"Gojko Mitic","type":"Person","_key":"14803"} +{"label":"L'\u00c9quipier","description":"No overview found.","id":"2299","runtime":104,"imdbId":"tt0388562","trailer":"http:\/\/www.youtube.com\/watch?v=2684","version":45,"lastModified":"1301906181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73e\/4bc91660017a3c57fe00873e\/l-equipier-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Drama","title":"L'\u00c9quipier","releaseDate":1099440000000,"language":"en","type":"Movie","_key":"14804"} +{"label":"Philippe Torreton","version":31,"id":"23669","lastModified":"1301901378000","name":"Philippe Torreton","type":"Person","_key":"14805"} +{"label":"Gr\u00e9gori Derang\u00e8re","version":22,"id":"23670","lastModified":"1301901815000","name":"Gr\u00e9gori Derang\u00e8re","type":"Person","_key":"14806"} +{"label":"\u00c9milie Dequenne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/164\/4d191d285e73d6083800a164\/milie-dequenne-profile.jpg","version":30,"id":"23671","lastModified":"1301901206000","name":"\u00c9milie Dequenne","type":"Person","_key":"14807"} +{"label":"Nathalie Besan\u00e7on","version":20,"id":"23672","lastModified":"1301901997000","name":"Nathalie Besan\u00e7on","type":"Person","_key":"14808"} +{"label":"Martine Sarcey","version":24,"id":"23673","lastModified":"1301902162000","name":"Martine Sarcey","type":"Person","_key":"14809"} +{"label":"Jean Senejoux","version":20,"id":"23674","lastModified":"1301901973000","name":"Jean Senejoux","type":"Person","_key":"14810"} +{"label":"Thierry Lavat","version":20,"id":"23675","lastModified":"1301901973000","name":"Thierry Lavat","type":"Person","_key":"14811"} +{"label":"Eric Bonicatto","version":21,"id":"23676","lastModified":"1301902162000","name":"Eric Bonicatto","type":"Person","_key":"14812"} +{"label":"Space Jam","description":"Space Jam is the animated\/live action film starring Michael Jordan and Bugs Bunny. The film follows Jordan from a brief glimpse at his childhood up to his professional basketball career where he meets Bugs Bunny and the rest of the Looney Tune characters who decide to cause a little mischief on the court. The film won a Grammy for Best Song by R. Kelly 'I believe I can fly.'","id":"2300","runtime":87,"imdbId":"tt0117705","trailer":"http:\/\/www.youtube.com\/watch?v=xFwXDN3sI8g","version":448,"lastModified":"1301909650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74c\/4bc91662017a3c57fe00874c\/space-jam-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Animation","title":"Space Jam","releaseDate":848016000000,"language":"en","tagline":"Get ready to jam.","type":"Movie","_key":"14813"} +{"label":"Joe Pytka","version":25,"id":"23677","lastModified":"1301901675000","name":"Joe Pytka","type":"Person","_key":"14814"} +{"label":"Tony Cervone","version":32,"id":"23683","lastModified":"1301904135000","name":"Tony Cervone","type":"Person","_key":"14815"} +{"label":"Bruce W. Smith","version":22,"id":"23684","lastModified":"1301901478000","name":"Bruce W. Smith","type":"Person","_key":"14816"} +{"label":"Michael Jordan","version":25,"id":"23678","lastModified":"1301901747000","name":"Michael Jordan","type":"Person","_key":"14817"} +{"label":"Dee Bradley Baker","version":43,"id":"23680","lastModified":"1301901177000","name":"Dee Bradley Baker","type":"Person","_key":"14818"} +{"label":"Brandon Hammond","version":24,"id":"23681","lastModified":"1301901834000","name":"Brandon Hammond","type":"Person","_key":"14819"} +{"label":"Larry Bird","version":23,"id":"23682","lastModified":"1301901668000","name":"Larry Bird","type":"Person","_key":"14820"} +{"label":"Collin","description":"No overview found.","id":"2301","runtime":181,"imdbId":"tt0081844","version":73,"lastModified":"1301907433000","studio":"Windrose Film- und Fernsehproduktion","genre":"Drama","title":"Collin","releaseDate":376444800000,"language":"en","type":"Movie","_key":"14821"} +{"label":"Peter Schulze-Rohr","version":21,"id":"23685","lastModified":"1301901405000","name":"Peter Schulze-Rohr","type":"Person","_key":"14822"} +{"label":"Manfred Inger","version":20,"id":"23693","lastModified":"1301901796000","name":"Manfred Inger","type":"Person","_key":"14823"} +{"label":"Margot Werner","version":20,"id":"23698","lastModified":"1301901824000","name":"Margot Werner","type":"Person","_key":"14824"} +{"label":"Tilli Breidenbach","version":20,"id":"23692","lastModified":"1301901796000","name":"Tilli Breidenbach","type":"Person","_key":"14825"} +{"label":"Hans Christian Blech","version":30,"id":"23694","lastModified":"1301902018000","name":"Hans Christian Blech","type":"Person","_key":"14826"} +{"label":"Peter Kuiper","version":21,"id":"23695","lastModified":"1301902197000","name":"Peter Kuiper","type":"Person","_key":"14827"} +{"label":"Hannes Messemer","version":29,"id":"23696","lastModified":"1301902196000","name":"Hannes Messemer","type":"Person","_key":"14828"} +{"label":"Werner Stocker","version":22,"id":"23697","lastModified":"1301901833000","name":"Werner Stocker","type":"Person","_key":"14829"} +{"label":"Thekla Carola Wied","version":21,"id":"23699","lastModified":"1301902023000","name":"Thekla Carola Wied","type":"Person","_key":"14830"} +{"label":"Avalon","description":"No overview found.","id":"2302","runtime":126,"imdbId":"tt0099073","version":178,"lastModified":"1301903825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75a\/4bc91663017a3c57fe00875a\/avalon-mid.png","studio":"Baltimore Pictures","genre":"Drama","title":"Avalon","releaseDate":655084800000,"language":"en","type":"Movie","_key":"14831"} +{"label":"Leo Fuchs","version":19,"id":"23705","lastModified":"1301901546000","name":"Leo Fuchs","type":"Person","_key":"14832"} +{"label":"Eve Gordon","version":23,"id":"23706","lastModified":"1301901558000","name":"Eve Gordon","type":"Person","_key":"14833"} +{"label":"Lou Jacobi","version":28,"id":"23708","lastModified":"1301901569000","name":"Lou Jacobi","type":"Person","_key":"14834"} +{"label":"Joan Plowright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59e\/4cb8f11d5e73d6778600059e\/joan-plowright-profile.jpg","version":61,"id":"23709","lastModified":"1302066065000","name":"Joan Plowright","type":"Person","_key":"14835"} +{"label":"Israel Rubinek","version":19,"id":"23710","lastModified":"1301901754000","name":"Israel Rubinek","type":"Person","_key":"14836"} +{"label":"Grant Gelt","version":19,"id":"23711","lastModified":"1301901754000","name":"Grant Gelt","type":"Person","_key":"14837"} +{"label":"Gespr\u00e4ch mit dem Biest","description":"No overview found.","id":"2303","runtime":95,"imdbId":"tt0115943","version":52,"lastModified":"1301904023000","studio":"Rudolf Steiner TV\/Film Produktion & Consult GmbH","genre":"Comedy","title":"Gespr\u00e4ch mit dem Biest","releaseDate":856396800000,"language":"en","type":"Movie","_key":"14838"} +{"label":"Katharina B\u00f6hm","version":20,"id":"23718","lastModified":"1301901482000","name":"Katharina B\u00f6hm","type":"Person","_key":"14839"} +{"label":"Harald Juhnke","version":34,"id":"23720","lastModified":"1301901164000","name":"Harald Juhnke","type":"Person","_key":"14840"} +{"label":"Dieter Laser","version":31,"id":"23721","lastModified":"1301901184000","name":"Dieter Laser","type":"Person","_key":"14841"} +{"label":"Joachim Dietmar Mues","version":22,"id":"23722","lastModified":"1301902159000","name":"Joachim Dietmar Mues","type":"Person","_key":"14842"} +{"label":"Kai Rautenberg","version":20,"id":"23723","lastModified":"1301901753000","name":"Kai Rautenberg","type":"Person","_key":"14843"} +{"label":"L'Homme bless\u00e9","description":"No overview found.","id":"2304","runtime":109,"imdbId":"tt0084085","version":80,"lastModified":"1301906096000","studio":"France 3 Cin\u00e9ma","genre":"Crime","title":"L'Homme bless\u00e9","releaseDate":422668800000,"language":"en","type":"Movie","_key":"14844"} +{"label":"Patrice Ch\u00e9reau","version":37,"id":"23724","lastModified":"1301901559000","name":"Patrice Ch\u00e9reau","type":"Person","_key":"14845"} +{"label":"Annick Alane","version":27,"id":"23733","lastModified":"1301901546000","name":"Annick Alane","type":"Person","_key":"14846"} +{"label":"Vittorio Mezzogiorno","version":22,"id":"23734","lastModified":"1301901792000","name":"Vittorio Mezzogiorno","type":"Person","_key":"14847"} +{"label":"Roland Bertin","version":25,"id":"23735","lastModified":"1301901824000","name":"Roland Bertin","type":"Person","_key":"14848"} +{"label":"Claude Berri","version":102,"id":"20718","lastModified":"1301901268000","name":"Claude Berri","type":"Person","_key":"14849"} +{"label":"Hammou Gra\u00efa","version":19,"id":"23737","lastModified":"1301901904000","name":"Hammou Gra\u00efa","type":"Person","_key":"14850"} +{"label":"Sophie Edmond","version":20,"id":"23738","lastModified":"1301902191000","name":"Sophie Edmond","type":"Person","_key":"14851"} +{"label":"An uns glaubt Gott nicht mehr","description":"No overview found.","id":"2306","runtime":110,"imdbId":"tt0083554","version":48,"lastModified":"1301905010000","studio":"\u00d6sterreichischer Rundfunk","genre":"Drama","title":"An uns glaubt Gott nicht mehr","releaseDate":391046400000,"language":"en","type":"Movie","_key":"14852"} +{"label":"Axel Corti","version":21,"id":"23741","lastModified":"1301901708000","name":"Axel Corti","type":"Person","_key":"14853"} +{"label":"Johannes Silberschneider","version":23,"id":"23750","lastModified":"1301901681000","name":"Johannes Silberschneider","type":"Person","_key":"14854"} +{"label":"Barbara Petritsch","version":20,"id":"23751","lastModified":"1301901837000","name":"Barbara Petritsch","type":"Person","_key":"14855"} +{"label":"Georg Corten","version":20,"id":"23752","lastModified":"1301902200000","name":"Georg Corten","type":"Person","_key":"14856"} +{"label":"Georg Marischka","version":26,"id":"23753","lastModified":"1301901662000","name":"Georg Marischka","type":"Person","_key":"14857"} +{"label":"Fritz Muliar","version":22,"id":"23754","lastModified":"1301901796000","name":"Fritz Muliar","type":"Person","_key":"14858"} +{"label":"Eric Schildkraut","version":20,"id":"23755","lastModified":"1301902012000","name":"Eric Schildkraut","type":"Person","_key":"14859"} +{"label":"Dietrich Siegl","version":20,"id":"23756","lastModified":"1301901973000","name":"Dietrich Siegl","type":"Person","_key":"14860"} +{"label":"A Pyromaniac's Love Story","description":"No overview found.","id":"2307","runtime":94,"imdbId":"tt0114210","version":110,"lastModified":"1301905277000","studio":"Hollywood Pictures","genre":"Comedy","title":"A Pyromaniac's Love Story","releaseDate":799027200000,"language":"en","type":"Movie","_key":"14861"} +{"label":"Joshua Brand","version":19,"id":"23757","lastModified":"1301902117000","name":"Joshua Brand","type":"Person","_key":"14862"} +{"label":"Sadie Frost","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f92\/4cf181985e73d61926000f92\/sadie-frost-profile.jpg","version":40,"id":"41381","lastModified":"1301901277000","name":"Sadie Frost","type":"Person","_key":"14863"} +{"label":"Inkheart","description":"An adventure of a father and his young daughter, searching for a long lost book that will help reunite a missing, close relative, this fantasy takes a darker side whenever we hear Mo 'Silvertongue' Folchart reading out aloud from books.","id":"2309","runtime":106,"imdbId":"tt0494238","trailer":"http:\/\/www.youtube.com\/watch?v=1201","homepage":"http:\/\/www.inkheartmovie.com\/","version":285,"lastModified":"1301901532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/805\/4cfde6825e73d6299e004805\/inkheart-mid.jpg","studio":"New Line Cinema","genre":"Adventure","title":"Inkheart","releaseDate":1229558400000,"language":"en","type":"Movie","_key":"14864"} +{"label":"Eliza Bennett","version":35,"id":"23775","lastModified":"1301901275000","name":"Eliza Bennett","type":"Person","_key":"14865"} +{"label":"Matt King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32c\/4bf1a9a5017a3c320b00032c\/matt-king-profile.jpg","version":35,"id":"23776","birthplace":"Watford, England, UK","lastModified":"1301901117000","name":"Matt King","type":"Person","_key":"14866"} +{"label":"Marnix Van Den Broeke","version":25,"id":"56475","lastModified":"1301902199000","name":"Marnix Van Den Broeke","type":"Person","_key":"14867"} +{"label":"Beowulf","description":"An epic tale concerning a 6th-century Scandinavian warrior named Beowulf and his mission to slay the manlike ogre Grendel, a descendant of Cain.","id":"2310","runtime":113,"imdbId":"tt0442933","trailer":"http:\/\/www.youtube.com\/watch?v=6V0w1eYIXuo&hd=1","homepage":"http:\/\/www.beowulfmovie.com\/","version":399,"lastModified":"1301901296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/275\/4c60ed4c5e73d63462000275\/beowulf-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Beowulf","releaseDate":1194998400000,"language":"en","tagline":"Evil breeds pain.","type":"Movie","_key":"14868"} +{"label":"Sebastian Roch\u00e9","version":30,"id":"23789","lastModified":"1301901372000","name":"Sebastian Roch\u00e9","type":"Person","_key":"14869"} +{"label":"Dominic Keating","version":27,"id":"23790","lastModified":"1301901555000","name":"Dominic Keating","type":"Person","_key":"14870"} +{"label":"Charlotte Salt","version":27,"id":"42216","lastModified":"1301901488000","name":"Charlotte Salt","type":"Person","_key":"14871"} +{"label":"Rik Young","version":29,"id":"42217","lastModified":"1301901394000","name":"Rik Young","type":"Person","_key":"14872"} +{"label":"Sonje Fortag","version":25,"id":"42284","lastModified":"1301901684000","name":"Sonje Fortag","type":"Person","_key":"14873"} +{"label":"Sharisse Baker-Bernard","version":27,"id":"42285","lastModified":"1301901639000","name":"Sharisse Baker-Bernard","type":"Person","_key":"14874"} +{"label":"Woody Schultz","version":58,"id":"42288","lastModified":"1301901118000","name":"Woody Schultz","type":"Person","_key":"14875"} +{"label":"Tyler Steelman","version":32,"id":"42289","lastModified":"1301901103000","name":"Tyler Steelman","type":"Person","_key":"14876"} +{"label":"Nick Jameson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c0\/4ce19b575e73d60f710003c0\/nick-jameson-profile.jpg","version":31,"id":"39214","lastModified":"1301901641000","name":"Nick Jameson","type":"Person","_key":"14877"} +{"label":"Shay Duffin","version":32,"id":"42290","lastModified":"1301901555000","name":"Shay Duffin","type":"Person","_key":"14878"} +{"label":"Jacquie Barnbrook","version":36,"id":"42291","lastModified":"1301901439000","name":"Jacquie Barnbrook","type":"Person","_key":"14879"} +{"label":"Fredrik Hiller","version":27,"id":"42292","lastModified":"1301901555000","name":"Fredrik Hiller","type":"Person","_key":"14880"} +{"label":"Daniel D. McGrew","version":25,"id":"42293","lastModified":"1301901506000","name":"Daniel D. McGrew","type":"Person","_key":"14881"} +{"label":"Alan Jones Silva","version":25,"id":"42294","lastModified":"1301901669000","name":"Alan Jones Silva","type":"Person","_key":"14882"} +{"label":"Hurengl\u00fcck","description":"No overview found.","id":"2311","runtime":90,"imdbId":"tt0099813","version":40,"lastModified":"1301906760000","studio":"Monaco Film","genre":"Thriller","title":"Hurengl\u00fcck","releaseDate":664934400000,"language":"en","type":"Movie","_key":"14883"} +{"label":"Detlef R\u00f6nfeldt","version":20,"id":"23792","lastModified":"1301902191000","name":"Detlef R\u00f6nfeldt","type":"Person","_key":"14884"} +{"label":"Marco Hofschneider","version":27,"id":"23797","lastModified":"1301901595000","name":"Marco Hofschneider","type":"Person","_key":"14885"} +{"label":"Kurt Weinzierl","version":24,"id":"23798","lastModified":"1301901500000","name":"Kurt Weinzierl","type":"Person","_key":"14886"} +{"label":"In the Name of the King","description":"A man named Farmer sets out to rescue his kidnapped wife and avenge the death of his son -- two acts committed by the Krugs, a race of animal-warriors who are controlled by the evil Gallian.","id":"2312","runtime":127,"imdbId":"tt0460780","trailer":"http:\/\/www.youtube.com\/watch?v=310","homepage":"http:\/\/www.inthenameoftheking.com\/","version":242,"lastModified":"1301901819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79e\/4bc91674017a3c57fe00879e\/in-the-name-of-the-king-a-dungeon-siege-tale-mid.jpg","studio":"Boll Kino Beteiligungs GmbH & Co. KG","genre":"Action","title":"In the Name of the King","releaseDate":1200009600000,"language":"en","type":"Movie","_key":"14887"} +{"label":"Uwe Boll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/935\/4cbaf37c5e73d67785000935\/uwe-boll-profile.jpg","version":81,"id":"23799","lastModified":"1301901113000","name":"Uwe Boll","type":"Person","_key":"14888"} +{"label":"Matthew Lillard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4cf106777b9aa13eea000402\/matthew-lillard-profile.jpg","version":89,"id":"26457","lastModified":"1302061539000","name":"Matthew Lillard","type":"Person","_key":"14889"} +{"label":"Prime","description":"A career driven professional from Manhattan is wooed by a young painter, who also happens to be the son of her psychoanalyst.","id":"2313","runtime":102,"imdbId":"tt0387514","version":185,"lastModified":"1301902557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a7\/4bc91675017a3c57fe0087a7\/prime-mid.jpg","studio":"Stratus Film Co.","genre":"Comedy","title":"Prime","releaseDate":1127260800000,"language":"en","type":"Movie","_key":"14890"} +{"label":"Bryan Greenberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f60\/4d8bce9c7b9aa13ae1001f60\/bryan-greenberg-profile.jpg","version":37,"id":"23821","lastModified":"1301901350000","name":"Bryan Greenberg","type":"Person","_key":"14891"} +{"label":"Annie Parisse","version":39,"id":"24291","lastModified":"1301901215000","name":"Annie Parisse","type":"Person","_key":"14892"} +{"label":"Jerry Adler","version":26,"id":"24292","lastModified":"1301901496000","name":"Jerry Adler","type":"Person","_key":"14893"} +{"label":"Doris Belack","version":27,"id":"24293","lastModified":"1301901496000","name":"Doris Belack","type":"Person","_key":"14894"} +{"label":"Mini Anden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7bd\/4d05c6447b9aa11bbf0027bd\/mini-anden-profile.jpg","biography":"\u200bSusanna \"Mini\" And\u00e9n (born 7 June 1978) is a Swedish model, actress, occasional host, and producer. She was born in Stockholm and began modeling at the age of ten. She has been on the cover of many fashion magazines including Vogue, Marie Claire, Cosmopolitan and ELLE. She is currently seen as the face for Giorgio Armani's new perfume Armani Code for women. ","version":35,"birthday":"266022000000","id":"142953","birthplace":"Stockholm, Sweden","lastModified":"1301901372000","name":"Mini Anden","type":"Person","_key":"14895"} +{"label":"Ben Younger","version":32,"id":"24294","lastModified":"1301901234000","name":"Ben Younger","type":"Person","_key":"14896"} +{"label":"The Long Run","description":"No overview found.","id":"2314","runtime":112,"imdbId":"tt0218411","version":116,"lastModified":"1301905368000","studio":"Baer Production Company","genre":"Drama","title":"The Long Run","releaseDate":946684800000,"language":"en","type":"Movie","_key":"14897"} +{"label":"Jean Stewart","version":20,"id":"23822","lastModified":"1301901581000","name":"Jean Stewart","type":"Person","_key":"14898"} +{"label":"Nthati Moshesh","version":20,"id":"23835","lastModified":"1301901824000","name":"Nthati Moshesh","type":"Person","_key":"14899"} +{"label":"Septula Sebogodi","version":18,"id":"23836","lastModified":"1301901669000","name":"Septula Sebogodi","type":"Person","_key":"14900"} +{"label":"Anna-Mart van der Merwe","version":18,"id":"23837","lastModified":"1301901982000","name":"Anna-Mart van der Merwe","type":"Person","_key":"14901"} +{"label":"Christopher Kubheka","version":20,"id":"23838","lastModified":"1301902162000","name":"Christopher Kubheka","type":"Person","_key":"14902"} +{"label":"Gift Leotlela","version":17,"id":"23839","lastModified":"1301902200000","name":"Gift Leotlela","type":"Person","_key":"14903"} +{"label":"Jeremia Ramasita","version":17,"id":"23840","lastModified":"1301902168000","name":"Jeremia Ramasita","type":"Person","_key":"14904"} +{"label":"The Story of an African Farm","description":"No overview found.","id":"2316","runtime":97,"imdbId":"tt0388441","homepage":"http:\/\/www.africanfarmthemovie.com\/","version":79,"lastModified":"1301906475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73a\/4c6fd9a05e73d65f7d00073a\/the-story-of-an-african-farm-mid.jpg","studio":"Rodini Films","genre":"Drama","title":"The Story of an African Farm","releaseDate":1097193600000,"language":"en","type":"Movie","_key":"14905"} +{"label":"David Lister","version":28,"id":"23841","lastModified":"1301901444000","name":"David Lister","type":"Person","_key":"14906"} +{"label":"Luke Gallant","version":19,"id":"23853","lastModified":"1301901642000","name":"Luke Gallant","type":"Person","_key":"14907"} +{"label":"Kasha Kropinski","version":19,"id":"23855","lastModified":"1301901939000","name":"Kasha Kropinski","type":"Person","_key":"14908"} +{"label":"Karin van der Laag","version":19,"id":"23856","lastModified":"1301901940000","name":"Karin van der Laag","type":"Person","_key":"14909"} +{"label":"Anneke Weidemann","version":20,"id":"23857","lastModified":"1301901940000","name":"Anneke Weidemann","type":"Person","_key":"14910"} +{"label":"Pilgrim","description":"A beautiful artist (Gloria Reuben) helps an amnesiac (Ray Liotta) piece together his identity and evade a gangster (Armin Mueller-Stahl) on his trail.","id":"2318","runtime":97,"imdbId":"tt0203053","version":109,"lastModified":"1301906106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dc\/4d1f674e5e73d66b2d0016dc\/pilgrim-mid.jpg","studio":"Barzo Productions","genre":"Thriller","title":"Pilgrim","releaseDate":964742400000,"language":"en","type":"Movie","_key":"14911"} +{"label":"Harley Cokeliss","version":26,"id":"23858","lastModified":"1301901753000","name":"Harley Cokeliss","type":"Person","_key":"14912"} +{"label":"Lisa Owen","version":21,"id":"23873","lastModified":"1301902191000","name":"Lisa Owen","type":"Person","_key":"14913"} +{"label":"Phillip Jarrett","version":20,"id":"23874","lastModified":"1301902117000","name":"Phillip Jarrett","type":"Person","_key":"14914"} +{"label":"Patricio Castillo","version":20,"id":"23875","lastModified":"1301902117000","name":"Patricio Castillo","type":"Person","_key":"14915"} +{"label":"Rene Pereia","version":18,"id":"23876","lastModified":"1301902168000","name":"Rene Pereia","type":"Person","_key":"14916"} +{"label":"Angelina Pel\u00e1ez","version":18,"id":"23877","lastModified":"1301902168000","name":"Angelina Pel\u00e1ez","type":"Person","_key":"14917"} +{"label":"The Dust Factory","description":"The Dust Factory is an adventure about the love and friendship between two teenagers who help each other through a difficult time in their lives.","id":"2319","runtime":99,"imdbId":"tt0329030","version":206,"lastModified":"1301907773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b0\/4bc91676017a3c57fe0087b0\/the-dust-factory-mid.jpg","studio":"Bahr Productions","genre":"Drama","title":"The Dust Factory","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"14918"} +{"label":"Eric Small","version":21,"id":"23883","lastModified":"1301901341000","name":"Eric Small","type":"Person","_key":"14919"} +{"label":"Hayden Panettiere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e9\/4c54976e7b9aa13d4c0006e9\/hayden-panettiere-profile.jpg","version":101,"birthday":"619653600000","id":"17265","birthplace":"Palisades, New York, USA","lastModified":"1301904050000","name":"Hayden Panettiere","type":"Person","_key":"14920"} +{"label":"Ryan Kelley","version":21,"birthday":"525823200000","id":"23891","birthplace":"Glen Ellyn, Illinois, USA","lastModified":"1301901280000","name":"Ryan Kelley","type":"Person","_key":"14921"} +{"label":"George De La Pena","version":22,"id":"23893","lastModified":"1301901385000","name":"George De La Pena","type":"Person","_key":"14922"} +{"label":"Kyle Hansen","version":19,"id":"23895","lastModified":"1301901917000","name":"Kyle Hansen","type":"Person","_key":"14923"} +{"label":"Ted Roisum","version":19,"id":"23896","lastModified":"1301901917000","name":"Ted Roisum","type":"Person","_key":"14924"} +{"label":"Ayanna Berkshire","version":19,"id":"23897","lastModified":"1301901917000","name":"Ayanna Berkshire","type":"Person","_key":"14925"} +{"label":"Shuhe","version":19,"id":"23898","lastModified":"1301901917000","name":"Shuhe","type":"Person","_key":"14926"} +{"label":"Robert Blanche","version":23,"id":"23899","lastModified":"1301901837000","name":"Robert Blanche","type":"Person","_key":"14927"} +{"label":"Peter Horton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4cad0bf65e73d6507200000c\/peter-horton-profile.jpg","version":35,"id":"44990","lastModified":"1301901444000","name":"Peter Horton","type":"Person","_key":"14928"} +{"label":"Kim Myers","version":27,"id":"55958","lastModified":"1301901649000","name":"Kim Myers","type":"Person","_key":"14929"} +{"label":"Executive Decision","description":"Terrorists hijack a 747 inbound to Washington D.C., demanding the the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.","id":"2320","runtime":134,"imdbId":"tt0116253","trailer":"http:\/\/www.youtube.com\/watch?v=4Ms91m1bCXQ","version":143,"lastModified":"1301902848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bd\/4bc91676017a3c57fe0087bd\/executive-decision-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Executive Decision","releaseDate":826848000000,"language":"en","type":"Movie","_key":"14930"} +{"label":"Steven Seagal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/245\/4bf98822017a3c7033000245\/steven-seagal-profile.jpg","version":168,"id":"23880","lastModified":"1301904058000","name":"Steven Seagal","type":"Person","_key":"14931"} +{"label":"Mary Ellen Trainor","version":31,"id":"23967","lastModified":"1301901984000","name":"Mary Ellen Trainor","type":"Person","_key":"14932"} +{"label":"Married to the Mob","description":"An undercover FBI agent falls in love with a recently widowed mafia wife seeking to start her life over after her husband's murder.","id":"2321","runtime":103,"imdbId":"tt0095593","trailer":"http:\/\/www.youtube.com\/watch?v=1xTC6UYgGSs","version":146,"lastModified":"1301904294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ca\/4bc91677017a3c57fe0087ca\/married-to-the-mob-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Married to the Mob","releaseDate":587952000000,"language":"en","tagline":"They're her family... Whether she likes it or not.","type":"Movie","_key":"14933"} +{"label":"Sneakers","description":"When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking \"black box\" from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his \"sneakers\" must save themselves and the world economy by retrieving the box back from their blackmailers.","id":"2322","runtime":126,"imdbId":"tt0105435","version":356,"lastModified":"1301909125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71e\/4d44f5217b9aa15bf500171e\/sneakers-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Sneakers","releaseDate":715996800000,"language":"en","tagline":"We could tell you what it's about. But then, of course, we'd have to kill you.","type":"Movie","_key":"14934"} +{"label":"Timothy Busfield","version":35,"id":"23881","lastModified":"1301901329000","name":"Timothy Busfield","type":"Person","_key":"14935"} +{"label":"Phil Alden Robinson","version":46,"id":"23968","lastModified":"1301901353000","name":"Phil Alden Robinson","type":"Person","_key":"14936"} +{"label":"Field of Dreams","description":"Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.","id":"2323","runtime":105,"imdbId":"tt0097351","trailer":"http:\/\/www.youtube.com\/watch?v=2316","version":182,"lastModified":"1301902422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/807\/4bc91682017a3c57fe008807\/field-of-dreams-mid.jpg","studio":"Gordon Company","genre":"Drama","title":"Field of Dreams","releaseDate":609120000000,"language":"en","tagline":"If you believe the impossible, the incredible can come true.","type":"Movie","_key":"14937"} +{"label":"Amy Madigan","version":44,"id":"23882","lastModified":"1301901216000","name":"Amy Madigan","type":"Person","_key":"14938"} +{"label":"Dwier Brown","version":26,"id":"23974","lastModified":"1301901559000","name":"Dwier Brown","type":"Person","_key":"14939"} +{"label":"Lee Garlington","version":36,"id":"23975","lastModified":"1301901372000","name":"Lee Garlington","type":"Person","_key":"14940"} +{"label":"Local Color","description":"A successful artist looks back with loving memories on the summer of his defining year, 1974. A talented but troubled 18-year-old aspiring artist befriends a brilliant elderly alcoholic painter who has turned his back on not only art but life. The two form what appears to be at first a tenuous relationship. The kid wants to learn all the secrets the master has locked away inside his head and heart. Time has not been kind to the old master. His life appears pointless to him until the kid rekindle","id":"2324","runtime":107,"imdbId":"tt0472126","homepage":"http:\/\/www.localcolormovie.com\/","version":151,"lastModified":"1301905552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/811\/4bc91684017a3c57fe008811\/local-color-mid.jpg","studio":"Permut Presentations","genre":"Drama","title":"Local Color","releaseDate":1146096000000,"language":"en","type":"Movie","_key":"14941"} +{"label":"George Gallo","version":51,"id":"21792","lastModified":"1301903118000","name":"George Gallo","type":"Person","_key":"14942"} +{"label":"Tom Adams","version":26,"id":"23910","lastModified":"1301901850000","name":"Tom Adams","type":"Person","_key":"14943"} +{"label":"Nancy Casemore","version":19,"id":"23911","lastModified":"1301901917000","name":"Nancy Casemore","type":"Person","_key":"14944"} +{"label":"Julie Lott","version":20,"id":"23902","lastModified":"1301901917000","name":"Julie Lott","type":"Person","_key":"14945"} +{"label":"Taso Papadakis","version":19,"id":"23912","lastModified":"1301901628000","name":"Taso Papadakis","type":"Person","_key":"14946"} +{"label":"Leningrad","description":"When in 1941 Nazi Germany invaded the Soviet Union, their troops quickly besieged Leningrad. Foreign journalists are evacuated but one of them... ","id":"2325","runtime":120,"imdbId":"tt0432314","version":82,"lastModified":"1301903715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81b\/4bc91685017a3c57fe00881b\/leningrad-mid.jpg","studio":"KoBura Film","genre":"Drama","title":"Leningrad","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"14947"} +{"label":"Aleksandr Buravsky","version":22,"id":"23921","lastModified":"1301901624000","name":"Aleksandr Buravsky","type":"Person","_key":"14948"} +{"label":"Mira Sorvino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ce\/4d6fb79f5e73d65a170009ce\/mira-sorvino-profile.jpg","version":70,"id":"23931","lastModified":"1301901130000","name":"Mira Sorvino","type":"Person","_key":"14949"} +{"label":"Eckehard Hoffmann","version":22,"id":"23932","lastModified":"1301901513000","name":"Eckehard Hoffmann","type":"Person","_key":"14950"} +{"label":"Underworld Collection","description":"The Underworld series is a series of Romeo & Juliet-like vampire\/werewolf films directed by Len Wiseman.","id":"2326","version":67,"lastModified":"1301902674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/824\/4bc91686017a3c57fe008824\/underworld-collection-mid.jpg","title":"Underworld Collection","language":"en","type":"Movie","_key":"14951"} +{"label":"Wilsberg","description":"No overview found.","id":"2328","title":"Wilsberg","language":"en","lastModified":"1301906721000","version":14,"type":"Movie","_key":"14952"} +{"label":"Wilsberg - Und die Toten l\u00e4sst man ruhen","description":"No overview found.","id":"2329","runtime":90,"imdbId":"tt0880565","version":46,"lastModified":"1301908618000","title":"Wilsberg - Und die Toten l\u00e4sst man ruhen","releaseDate":793238400000,"language":"en","type":"Movie","_key":"14953"} +{"label":"Dorothea Neukirchen","version":21,"id":"23933","lastModified":"1301901973000","name":"Dorothea Neukirchen","type":"Person","_key":"14954"} +{"label":"Katja Studt","version":25,"id":"23937","lastModified":"1301902022000","name":"Katja Studt","type":"Person","_key":"14955"} +{"label":"Karin Anselm","version":20,"id":"23938","lastModified":"1301902162000","name":"Karin Anselm","type":"Person","_key":"14956"} +{"label":"Ren\u00e9 Toussaint","version":18,"id":"23939","lastModified":"1301902162000","name":"Ren\u00e9 Toussaint","type":"Person","_key":"14957"} +{"label":"Maximilian Wigger","version":20,"id":"23940","lastModified":"1301902162000","name":"Maximilian Wigger","type":"Person","_key":"14958"} +{"label":"Stefan Wigger","version":18,"id":"23941","lastModified":"1301901662000","name":"Stefan Wigger","type":"Person","_key":"14959"} +{"label":"Dietrich Adam","version":21,"id":"23942","lastModified":"1301902162000","name":"Dietrich Adam","type":"Person","_key":"14960"} +{"label":"Taxi","description":"In Marseilles (France), skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.","id":"2330","runtime":86,"imdbId":"tt0152930","version":117,"lastModified":"1301902792000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/832\/4bc91687017a3c57fe008832\/taxi-mid.jpg","studio":"Studio Canal","genre":"Action","title":"Taxi","releaseDate":891993600000,"language":"en","type":"Movie","_key":"14961"} +{"label":"Fr\u00e9d\u00e9ric Diefenthal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6eb\/4d0e5a325e73d6370a0016eb\/fr-d-ric-diefenthal-profile.jpg","version":46,"id":"23943","lastModified":"1301901157000","name":"Fr\u00e9d\u00e9ric Diefenthal","type":"Person","_key":"14962"} +{"label":"Emma Wiklund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/796\/4d0e5a1c5e73d63713001796\/emma-wiklund-profile.jpg","version":36,"id":"23944","lastModified":"1301901132000","name":"Emma Wiklund","type":"Person","_key":"14963"} +{"label":"Manuela Gourary","version":23,"id":"23983","lastModified":"1301901434000","name":"Manuela Gourary","type":"Person","_key":"14964"} +{"label":"Bernard Farcy","version":29,"id":"23984","lastModified":"1301901444000","name":"Bernard Farcy","type":"Person","_key":"14965"} +{"label":"Georges Neri","version":24,"id":"23985","lastModified":"1301901434000","name":"Georges Neri","type":"Person","_key":"14966"} +{"label":"G\u00e9rard Pir\u00e8s","version":36,"id":"23945","lastModified":"1301902141000","name":"G\u00e9rard Pir\u00e8s","type":"Person","_key":"14967"} +{"label":"Jesus","description":"No overview found.","id":"2331","runtime":240,"imdbId":"tt0199232","version":148,"lastModified":"1301903739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/649\/4cd862185e73d676cd000649\/jesus-mid.jpg","studio":"Beta Film","genre":"Drama","title":"Jesus","releaseDate":946080000000,"language":"en","type":"Movie","_key":"14968"} +{"label":"Roger Young","version":39,"id":"23946","lastModified":"1301901380000","name":"Roger Young","type":"Person","_key":"14969"} +{"label":"Jeremy Sisto","version":73,"id":"23958","lastModified":"1301901370000","name":"Jeremy Sisto","type":"Person","_key":"14970"} +{"label":"Claudio Amendola","version":28,"id":"23961","lastModified":"1301901642000","name":"Claudio Amendola","type":"Person","_key":"14971"} +{"label":"Christian Kohlund","version":29,"id":"23962","lastModified":"1301901514000","name":"Christian Kohlund","type":"Person","_key":"14972"} +{"label":"Taxi 2","description":"The Japanese ambassaor is visiting Marseilles to view the city police's anti-gang tactics. During the visit he is kidnapped by a group working for the Japanese yakuza. Young officer Emilien is determined to rescue the ambassador and officer Petra (his girlfriend), who was also kidnapped, and restore the honor of his department. Once again, speed demon taxi-driver Daniel is called to save the day.","id":"2332","runtime":85,"imdbId":"tt0183869","version":167,"lastModified":"1301902799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83f\/4bc9168a017a3c57fe00883f\/taxi-2-mid.jpg","studio":"ARP S\u00e9lection","genre":"Action","title":"Taxi 2","releaseDate":953942400000,"language":"en","type":"Movie","_key":"14973"} +{"label":"Die Buddenbrooks","description":"Mid-19th-century, Baltic Sea port city of Lubeck, Germany. Follows the fourth generation of the Buddenbrook mercantile family as Tony and Thomas reach the age of marriage. Fatefully impeded every step of the way, the Buddenbrooks struggle as economic hardship and personal defeats weigh down family relations. ","id":"2333","runtime":151,"imdbId":"tt1058601","version":61,"lastModified":"1301905705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4bc9168a017a3c57fe008844\/die-buddenbrooks-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"Die Buddenbrooks","releaseDate":1230163200000,"language":"en","type":"Movie","_key":"14974"} +{"label":"Alexander Fehling","version":36,"id":"31663","lastModified":"1301901117000","name":"Alexander Fehling","type":"Person","_key":"14975"} +{"label":"L\u00e9a Bosco","version":21,"id":"66151","lastModified":"1301902379000","name":"L\u00e9a Bosco","type":"Person","_key":"14976"} +{"label":"Mark Waschke","version":25,"id":"40501","lastModified":"1301901960000","name":"Mark Waschke","type":"Person","_key":"14977"} +{"label":"Raban Bieling","version":32,"id":"55181","lastModified":"1301902019000","name":"Raban Bieling","type":"Person","_key":"14978"} +{"label":"Taxi 3","description":"A gang of thieves calling themselves the Santa Claus Gang are wreaking havoc, and the police can't keep up. Police Captain Gilbert is distracted by a Chinese reporter writing a story on his squad, and taxi driver Daniel is in the midst of a relationship crisis. After a string of mistakes in which the thieves outsmart the police time and time again, Daniel and his super-taxi pitch in.","id":"2334","runtime":82,"imdbId":"tt0295721","version":117,"lastModified":"1301902211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4bccee54017a3c0f300001f4\/taxi-3-mid.jpg","studio":"EuropaCorp Distribution","genre":"Action","title":"Taxi 3","releaseDate":1043798400000,"language":"en","type":"Movie","_key":"14979"} +{"label":"Taxi 4","description":"Before being extradited to Africa to stand trial, a notorious Belgian criminal is entrusted to the Marseilles police department for less than 24 hours. But the wily crook convinces bumbling policeman Emilien he's a lowly Belgian embassy employee who got railroaded by the brilliant master criminal.","id":"2335","runtime":90,"imdbId":"tt0804540","homepage":"http:\/\/www.taxi4-lefilm.com\/","version":134,"lastModified":"1301901948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4bccedc8017a3c0f2a0001ec\/taxi-4-mid.jpg","studio":"TF1 Films Productions","genre":"Action","title":"Taxi 4","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"14980"} +{"label":"Jean-Luc Couchard","version":28,"id":"24040","lastModified":"1301901533000","name":"Jean-Luc Couchard","type":"Person","_key":"14981"} +{"label":"Fran\u00e7ois Damiens","version":38,"id":"24041","lastModified":"1301901299000","name":"Fran\u00e7ois Damiens","type":"Person","_key":"14982"} +{"label":"Mourade Zeguendi","version":25,"id":"24042","lastModified":"1301901681000","name":"Mourade Zeguendi","type":"Person","_key":"14983"} +{"label":"King Kongs Faust","description":"Berlin Film Fest 1984.","id":"2336","runtime":80,"imdbId":"tt0087560","version":93,"lastModified":"1301908360000","studio":"Katrin Seybold Film GmbH","genre":"Documentary","title":"King Kongs Faust","releaseDate":483494400000,"language":"en","type":"Movie","_key":"14984"} +{"label":"Heiner Stadler","version":21,"id":"24078","lastModified":"1301901917000","name":"Heiner Stadler","type":"Person","_key":"14985"} +{"label":"Heinz Van Nouhuys","version":19,"id":"24102","lastModified":"1301901546000","name":"Heinz Van Nouhuys","type":"Person","_key":"14986"} +{"label":"Werner Grassmann","version":19,"id":"24101","lastModified":"1301902117000","name":"Werner Grassmann","type":"Person","_key":"14987"} +{"label":"Wolfgang L\u00e4ngsfeld","version":22,"id":"24103","lastModified":"1301902117000","name":"Wolfgang L\u00e4ngsfeld","type":"Person","_key":"14988"} +{"label":"Gisela Weilemann","version":19,"id":"24104","lastModified":"1301902117000","name":"Gisela Weilemann","type":"Person","_key":"14989"} +{"label":"Gad Klein","version":19,"id":"24105","lastModified":"1301902117000","name":"Gad Klein","type":"Person","_key":"14990"} +{"label":"Volker Stollberg","version":19,"id":"24106","lastModified":"1301902117000","name":"Volker Stollberg","type":"Person","_key":"14991"} +{"label":"Philip Behrens","version":19,"id":"24107","lastModified":"1301902117000","name":"Philip Behrens","type":"Person","_key":"14992"} +{"label":"Michael Stejskal","version":19,"id":"24108","lastModified":"1301902117000","name":"Michael Stejskal","type":"Person","_key":"14993"} +{"label":"Ponkie","version":19,"id":"24109","lastModified":"1301902117000","name":"Ponkie","type":"Person","_key":"14994"} +{"label":"Peggy Parnass","version":19,"id":"24110","lastModified":"1301902117000","name":"Peggy Parnass","type":"Person","_key":"14995"} +{"label":"Peter Przygodda","version":56,"id":"2309","lastModified":"1299493417000","name":"Peter Przygodda","type":"Person","_key":"14996"} +{"label":"Helmut F\u00e4rber","version":19,"id":"24111","lastModified":"1301902117000","name":"Helmut F\u00e4rber","type":"Person","_key":"14997"} +{"label":"Johanna Eisenrieder","version":19,"id":"24113","lastModified":"1301901753000","name":"Johanna Eisenrieder","type":"Person","_key":"14998"} +{"label":"Burt Willis","version":19,"id":"24114","lastModified":"1301902117000","name":"Burt Willis","type":"Person","_key":"14999"} +{"label":"Lila Waters","version":20,"id":"24115","lastModified":"1301902191000","name":"Lila Waters","type":"Person","_key":"15000"} +{"label":"Crofton Hardester","version":20,"id":"24116","lastModified":"1301902117000","name":"Crofton Hardester","type":"Person","_key":"15001"} +{"label":"Helga Oswald","version":19,"id":"24117","lastModified":"1301902117000","name":"Helga Oswald","type":"Person","_key":"15002"} +{"label":"Rosa Elena Lujan","version":19,"id":"24119","lastModified":"1301902117000","name":"Rosa Elena Lujan","type":"Person","_key":"15003"} +{"label":"Ginger Myers","version":20,"id":"24118","lastModified":"1301902171000","name":"Ginger Myers","type":"Person","_key":"15004"} +{"label":"Herman Weigel","version":36,"id":"24120","lastModified":"1301901962000","name":"Herman Weigel","type":"Person","_key":"15005"} +{"label":"Bernd Eichinger","version":184,"id":"673","lastModified":"1299951046000","name":"Bernd Eichinger","type":"Person","_key":"15006"} +{"label":"Moritz de Hadeln","version":19,"id":"24121","lastModified":"1301902117000","name":"Moritz de Hadeln","type":"Person","_key":"15007"} +{"label":"Franz Seitz","version":31,"id":"52587","lastModified":"1301901669000","name":"Franz Seitz","type":"Person","_key":"15008"} +{"label":"Laslo Benedek","version":24,"id":"89981","lastModified":"1301902532000","name":"Laslo Benedek","type":"Person","_key":"15009"} +{"label":"Va Banque","description":"No overview found.","id":"2337","runtime":95,"imdbId":"tt0092145","version":75,"lastModified":"1301904967000","studio":"Roxy Film","genre":"Comedy","title":"Va Banque","releaseDate":507254400000,"language":"en","type":"Movie","_key":"15010"} +{"label":"Diethard K\u00fcster","version":20,"id":"24122","lastModified":"1301901917000","name":"Diethard K\u00fcster","type":"Person","_key":"15011"} +{"label":"Grazyna Dylong","version":19,"id":"24132","lastModified":"1301902117000","name":"Grazyna Dylong","type":"Person","_key":"15012"} +{"label":"Claus-Dieter Reents","version":21,"id":"24133","lastModified":"1301901658000","name":"Claus-Dieter Reents","type":"Person","_key":"15013"} +{"label":"Joschka Fischer","version":19,"id":"24136","lastModified":"1301902117000","name":"Joschka Fischer","type":"Person","_key":"15014"} +{"label":"Willy DeVille","version":17,"id":"24137","lastModified":"1301901982000","name":"Willy DeVille","type":"Person","_key":"15015"} +{"label":"Vera M\u00fcller","version":19,"id":"24138","lastModified":"1301901753000","name":"Vera M\u00fcller","type":"Person","_key":"15016"} +{"label":"Helmut Stauss","version":17,"id":"24139","lastModified":"1301901982000","name":"Helmut Stauss","type":"Person","_key":"15017"} +{"label":"Aurelio Malfa","version":17,"id":"24140","lastModified":"1301902168000","name":"Aurelio Malfa","type":"Person","_key":"15018"} +{"label":"Maximilian R\u00fcthlein","version":17,"id":"24141","lastModified":"1301902168000","name":"Maximilian R\u00fcthlein","type":"Person","_key":"15019"} +{"label":"Dorothea Moritz","version":19,"id":"24142","lastModified":"1301902117000","name":"Dorothea Moritz","type":"Person","_key":"15020"} +{"label":"Kevin Coyne","version":19,"id":"24144","lastModified":"1301902117000","name":"Kevin Coyne","type":"Person","_key":"15021"} +{"label":"Holly-Jane Rahlens","version":19,"id":"24145","lastModified":"1301902117000","name":"Holly-Jane Rahlens","type":"Person","_key":"15022"} +{"label":"Stefan Meinke","version":19,"id":"24146","lastModified":"1301902117000","name":"Stefan Meinke","type":"Person","_key":"15023"} +{"label":"Ewald Knabe","version":19,"id":"24147","lastModified":"1301902117000","name":"Ewald Knabe","type":"Person","_key":"15024"} +{"label":"Ralph Geiger","version":19,"id":"24148","lastModified":"1301902117000","name":"Ralph Geiger","type":"Person","_key":"15025"} +{"label":"Peggy Panzlaff","version":19,"id":"24149","lastModified":"1301902117000","name":"Peggy Panzlaff","type":"Person","_key":"15026"} +{"label":"Hilde Hessmann","version":19,"id":"24150","lastModified":"1301902117000","name":"Hilde Hessmann","type":"Person","_key":"15027"} +{"label":"Fred Leuschner","version":19,"id":"24151","lastModified":"1301902117000","name":"Fred Leuschner","type":"Person","_key":"15028"} +{"label":"Michael Sell","version":17,"id":"24152","lastModified":"1301902168000","name":"Michael Sell","type":"Person","_key":"15029"} +{"label":"Rene Hennig","version":17,"id":"24153","lastModified":"1301902168000","name":"Rene Hennig","type":"Person","_key":"15030"} +{"label":"Achim Reichel","version":20,"id":"24124","lastModified":"1301902117000","name":"Achim Reichel","type":"Person","_key":"15031"} +{"label":"Rio Reiser","version":20,"id":"24125","lastModified":"1301902117000","name":"Rio Reiser","type":"Person","_key":"15032"} +{"label":"Joy Rider","version":20,"id":"24126","lastModified":"1301901917000","name":"Joy Rider","type":"Person","_key":"15033"} +{"label":"The Matrix Trilogy","description":"The Matrix trilogy depicts a complex science fiction story incorporating many philosophical elements. Written and directed by the Wachowski brothers and produced by Joel Silver. ","id":"2344","version":87,"lastModified":"1301901532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86c\/4bc9168d017a3c57fe00886c\/the-matrix-trilogy-mid.jpg","studio":"Warner Bros Pictures","title":"The Matrix Trilogy","language":"en","type":"Movie","_key":"15034"} +{"label":"Still Life","description":"No overview found.","id":"2346","runtime":108,"imdbId":"tt0859765","version":148,"lastModified":"1301905967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63c\/4d1351585e73d6084200163c\/sanxia-haoren-mid.jpg","studio":"Shanghai Film Studios","genre":"Drama","title":"Still Life","releaseDate":1157414400000,"language":"en","type":"Movie","_key":"15035"} +{"label":"Zhang Ke Jia","version":27,"id":"24011","lastModified":"1301901698000","name":"Zhang Ke Jia","type":"Person","_key":"15036"} +{"label":"Sanming Han","version":19,"id":"24043","lastModified":"1301901668000","name":"Sanming Han","type":"Person","_key":"15037"} +{"label":"Tao Zhao","version":20,"id":"24044","lastModified":"1301901982000","name":"Tao Zhao","type":"Person","_key":"15038"} +{"label":"Hongwei Wang","version":19,"id":"27997","lastModified":"1301901982000","name":"Hongwei Wang","type":"Person","_key":"15039"} +{"label":"Zhubin Li","version":19,"id":"28085","lastModified":"1301901796000","name":"Zhubin Li","type":"Person","_key":"15040"} +{"label":"Haiyu Xiang","version":19,"id":"28086","lastModified":"1301901796000","name":"Haiyu Xiang","type":"Person","_key":"15041"} +{"label":"Lin Zhou","version":21,"id":"28087","lastModified":"1301901973000","name":"Lin Zhou","type":"Person","_key":"15042"} +{"label":"Lizhen Ma","version":18,"id":"28088","lastModified":"1301901982000","name":"Lizhen Ma","type":"Person","_key":"15043"} +{"label":"Zhou Lan","version":21,"id":"28089","lastModified":"1301901570000","name":"Zhou Lan","type":"Person","_key":"15044"} +{"label":"Yong Huang","version":21,"id":"28090","lastModified":"1301901796000","name":"Yong Huang","type":"Person","_key":"15045"} +{"label":"Jingsheng Li","version":19,"id":"28091","lastModified":"1301901973000","name":"Jingsheng Li","type":"Person","_key":"15046"} +{"label":"Jianlin Pan","version":19,"id":"28092","lastModified":"1301901973000","name":"Jianlin Pan","type":"Person","_key":"15047"} +{"label":"Yougzhong Li","version":19,"id":"28093","lastModified":"1301901973000","name":"Yougzhong Li","type":"Person","_key":"15048"} +{"label":"Holy Matrimony","description":"No overview found.","id":"2348","runtime":93,"imdbId":"tt0110044","version":71,"lastModified":"1301903071000","studio":"Colony Productions","genre":"Comedy","title":"Holy Matrimony","releaseDate":765763200000,"language":"en","type":"Movie","_key":"15049"} +{"label":"Joseph Gordon-Levitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e3\/4be2e620017a3c35bb0007e3\/joseph-gordon-levitt-profile.jpg","version":160,"birthday":"351212400000","id":"24045","birthplace":"Los Angeles, California, USA","lastModified":"1302059592000","name":"Joseph Gordon-Levitt","type":"Person","_key":"15050"} +{"label":"Tate Donovan","version":46,"id":"15455","lastModified":"1302059499000","name":"Tate Donovan","type":"Person","_key":"15051"} +{"label":"John Schuck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b3\/4ca24f7b7b9aa1578a0006b3\/john-schuck-profile.jpg","version":30,"id":"24046","lastModified":"1301901712000","name":"John Schuck","type":"Person","_key":"15052"} +{"label":"Jeffrey Nordling","version":41,"id":"24048","lastModified":"1301901444000","name":"Jeffrey Nordling","type":"Person","_key":"15053"} +{"label":"Erbsen auf halb 6","description":"No overview found.","id":"2349","runtime":107,"imdbId":"tt0366416","homepage":"http:\/\/www.erbsenaufhalbsechs-derfilm.de\/","version":106,"lastModified":"1301416765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4c0a4905017a3c29a6000936\/erbsen-auf-halb-6-mid.jpg","studio":"Senator Film Produktion","genre":"Drama","title":"Erbsen auf halb 6","releaseDate":1078358400000,"language":"en","type":"Movie","_key":"15054"} +{"label":"Harald Schrott","version":24,"id":"24054","lastModified":"1301901988000","name":"Harald Schrott","type":"Person","_key":"15055"} +{"label":"Max Mauff","version":20,"id":"24056","lastModified":"1301901917000","name":"Max Mauff","type":"Person","_key":"15056"} +{"label":"Annett Renneberg","version":21,"id":"24057","lastModified":"1301902146000","name":"Annett Renneberg","type":"Person","_key":"15057"} +{"label":"Jens M\u00fcnchow","version":20,"id":"24058","lastModified":"1301902117000","name":"Jens M\u00fcnchow","type":"Person","_key":"15058"} +{"label":"Petra Hartung","version":19,"id":"24061","lastModified":"1301902117000","name":"Petra Hartung","type":"Person","_key":"15059"} +{"label":"Jens Peter Brose","version":23,"id":"24062","lastModified":"1301902156000","name":"Jens Peter Brose","type":"Person","_key":"15060"} +{"label":"Aksana Assmann","version":19,"id":"24063","lastModified":"1301902117000","name":"Aksana Assmann","type":"Person","_key":"15061"} +{"label":"Imke B\u00fcchel","version":20,"id":"24064","lastModified":"1301901987000","name":"Imke B\u00fcchel","type":"Person","_key":"15062"} +{"label":"Mario Winkelmann","version":19,"id":"24065","lastModified":"1301901917000","name":"Mario Winkelmann","type":"Person","_key":"15063"} +{"label":"Dustin Semmelrogge","version":17,"id":"24066","lastModified":"1301901982000","name":"Dustin Semmelrogge","type":"Person","_key":"15064"} +{"label":"Ina Holst","version":19,"id":"24067","lastModified":"1301901753000","name":"Ina Holst","type":"Person","_key":"15065"} +{"label":"Claudia Dibbern","version":17,"id":"24068","lastModified":"1301901805000","name":"Claudia Dibbern","type":"Person","_key":"15066"} +{"label":"Samantha Viana","version":15,"id":"24069","lastModified":"1301902117000","name":"Samantha Viana","type":"Person","_key":"15067"} +{"label":"Christelle Gilles","version":15,"id":"24070","lastModified":"1301901917000","name":"Christelle Gilles","type":"Person","_key":"15068"} +{"label":"Jodie Ahlborn","version":15,"id":"24071","lastModified":"1301901917000","name":"Jodie Ahlborn","type":"Person","_key":"15069"} +{"label":"Cecile Harke","version":15,"id":"24072","lastModified":"1301902117000","name":"Cecile Harke","type":"Person","_key":"15070"} +{"label":"Reinhard Wegner","version":15,"id":"24073","lastModified":"1301901917000","name":"Reinhard Wegner","type":"Person","_key":"15071"} +{"label":"Heinz Petters","version":17,"id":"48119","lastModified":"1301902168000","name":"Heinz Petters","type":"Person","_key":"15072"} +{"label":"Hilmir Sn\u00e6r Gu\u00f0nason","version":28,"id":"52913","lastModified":"1301901483000","name":"Hilmir Sn\u00e6r Gu\u00f0nason","type":"Person","_key":"15073"} +{"label":"Lars B\u00fcchel","version":26,"id":"24074","lastModified":"1301901782000","name":"Lars B\u00fcchel","type":"Person","_key":"15074"} +{"label":"Reign Over Me","description":"A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.","id":"2355","runtime":125,"imdbId":"tt0490204","trailer":"http:\/\/www.youtube.com\/watch?v=jwy6XPXAw_M","homepage":"http:\/\/www.sonypictures.com\/movies\/reignoverme\/index.html","version":246,"lastModified":"1301902674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4d4d6bed5e73d617b3002317\/reign-over-me-mid.jpg","studio":"3 Art Entertainment","genre":"Drama","title":"Reign Over Me","releaseDate":1174521600000,"language":"en","tagline":"Let in the unexpected.","type":"Movie","_key":"15075"} +{"label":"Mike Binder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ef\/4d0cd0a35e73d6370a0007ef\/mike-binder-profile.jpg","version":49,"id":"24173","lastModified":"1301901229000","name":"Mike Binder","type":"Person","_key":"15076"} +{"label":"10 Items or Less","description":"A aging Hollywood icon whose fear of failure has smouldered his once-luminous star strikes up an unlikely friendship with an acid tongued checkout clerk while researching his latest role. Now, stuck on his own far from Brentwood, the actor must rely upon the kindness of a common stranger to help him get back on his feet.","id":"2357","runtime":82,"imdbId":"tt0499603","version":184,"lastModified":"1301907541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/003\/4ce5e66e7b9aa17c4f000003\/10-items-or-less-mid.jpg","studio":"Revelations Entertainment","genre":"Comedy","title":"10 Items or Less","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"15077"} +{"label":"Anne Dudek","version":30,"id":"24198","lastModified":"1301901698000","name":"Anne Dudek","type":"Person","_key":"15078"} +{"label":"Jennifer Echols","version":25,"id":"24199","lastModified":"1301901911000","name":"Jennifer Echols","type":"Person","_key":"15079"} +{"label":"Leonardo Nam","version":26,"id":"24200","lastModified":"1301901689000","name":"Leonardo Nam","type":"Person","_key":"15080"} +{"label":"Alexandra Berardi","version":25,"id":"24201","lastModified":"1301901475000","name":"Alexandra Berardi","type":"Person","_key":"15081"} +{"label":"Hector Atreyu Ruiz","version":21,"id":"24202","lastModified":"1301901911000","name":"Hector Atreyu Ruiz","type":"Person","_key":"15082"} +{"label":"Oh Marbella","description":"No overview found.","id":"2358","runtime":88,"imdbId":"tt0338300","version":100,"lastModified":"1301905292000","studio":"Shoreline Entertainment","genre":"Comedy","title":"Oh Marbella","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"15083"} +{"label":"Piers Ashworth","version":31,"id":"24206","lastModified":"1301901935000","name":"Piers Ashworth","type":"Person","_key":"15084"} +{"label":"Lara Belmont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34c\/4cf1c7c75e73d61e3d00034c\/lara-belmont-profile.jpg","version":28,"id":"24239","lastModified":"1301901602000","name":"Lara Belmont","type":"Person","_key":"15085"} +{"label":"Roland Manookian","version":25,"id":"24240","lastModified":"1301901495000","name":"Roland Manookian","type":"Person","_key":"15086"} +{"label":"Sara Stockbridge","version":23,"id":"24241","lastModified":"1301901983000","name":"Sara Stockbridge","type":"Person","_key":"15087"} +{"label":"Cathy Murphy","version":19,"id":"24243","lastModified":"1301901917000","name":"Cathy Murphy","type":"Person","_key":"15088"} +{"label":"Charlotte Lucas","version":19,"id":"24244","lastModified":"1301901917000","name":"Charlotte Lucas","type":"Person","_key":"15089"} +{"label":"Nick Moorcroft","version":28,"id":"24208","lastModified":"1301902129000","name":"Nick Moorcroft","type":"Person","_key":"15090"} +{"label":"Patrick Poletti","version":19,"id":"24247","lastModified":"1301902116000","name":"Patrick Poletti","type":"Person","_key":"15091"} +{"label":"Fabienne Villette","version":20,"id":"24210","lastModified":"1301901917000","name":"Fabienne Villette","type":"Person","_key":"15092"} +{"label":"Ryan Wiik","version":28,"id":"24213","lastModified":"1301901651000","name":"Ryan Wiik","type":"Person","_key":"15093"} +{"label":"Sicko","description":"Sicko is a Michael Moore documentary about the corrupt health care system in the United States who's main goal is to make profit even if it means loosing peoples lives. -The more people you deny health insurance the more money we make- is the business concept for health providers in America.","id":"2359","runtime":116,"imdbId":"tt0386032","homepage":"http:\/\/www.sicko-themovie.com\/","version":163,"lastModified":"1301908050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a0\/4bc91694017a3c57fe0088a0\/sicko-mid.jpg","studio":"The Weinstein Company","genre":"Documentary","title":"Sicko","releaseDate":1179532800000,"language":"en","tagline":"This might hurt a little.","type":"Movie","_key":"15094"} +{"label":"Saving Grace","description":"Unexpectedly widowed, prim and proper housewife Grace Trevethyn finds herself in dire financial straits when she inherits massive debts her late husband had been accruing for years. Faced with losing her house, she decides to use her talent for horticulture and hatches a plan to grow potent marijuana which can be sold at an astronomical price, thus solving her financial crisis.","id":"2360","runtime":93,"imdbId":"tt0195234","version":228,"lastModified":"1301902347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b6\/4d18221a5e73d608340096b6\/saving-grace-mid.jpg","studio":"Homerun Productions","genre":"Comedy","title":"Saving Grace","releaseDate":948672000000,"language":"en","type":"Movie","_key":"15095"} +{"label":"Nigel Cole","version":40,"id":"24248","lastModified":"1302010797000","name":"Nigel Cole","type":"Person","_key":"15096"} +{"label":"Craig Ferguson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bd\/4bde4a10017a3c35bd0000bd\/craig-ferguson-profile.jpg","version":58,"id":"24264","lastModified":"1301901122000","name":"Craig Ferguson","type":"Person","_key":"15097"} +{"label":"Bill Bailey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41a\/4cb7f3a45e73d6778100041a\/bill-bailey-profile.jpg","version":110,"birthday":"-188355600000","id":"24265","birthplace":"Bath, Somerset, England","lastModified":"1301904071000","name":"Bill Bailey","type":"Person","_key":"15098"} +{"label":"Valerie Edmond","version":24,"id":"24266","lastModified":"1301901917000","name":"Valerie Edmond","type":"Person","_key":"15099"} +{"label":"Tristan Sturrock","version":18,"id":"24267","lastModified":"1301902024000","name":"Tristan Sturrock","type":"Person","_key":"15100"} +{"label":"Denise Coffey","version":18,"id":"24270","lastModified":"1301901989000","name":"Denise Coffey","type":"Person","_key":"15101"} +{"label":"Ken Campbell","version":26,"id":"24271","lastModified":"1301901680000","name":"Ken Campbell","type":"Person","_key":"15102"} +{"label":"John Fortune","version":20,"id":"24272","lastModified":"1301901917000","name":"John Fortune","type":"Person","_key":"15103"} +{"label":"Philip Wright","version":20,"id":"24273","lastModified":"1301901917000","name":"Philip Wright","type":"Person","_key":"15104"} +{"label":"Darren Southworth","version":20,"id":"24274","lastModified":"1301901917000","name":"Darren Southworth","type":"Person","_key":"15105"} +{"label":"Johnny Bamford","version":18,"id":"24275","lastModified":"1301902024000","name":"Johnny Bamford","type":"Person","_key":"15106"} +{"label":"Bill Hallet","version":20,"id":"24276","lastModified":"1301901753000","name":"Bill Hallet","type":"Person","_key":"15107"} +{"label":"Alison Dillon","version":20,"id":"24277","lastModified":"1301901917000","name":"Alison Dillon","type":"Person","_key":"15108"} +{"label":"Bill Weston","version":24,"id":"24278","lastModified":"1301901837000","name":"Bill Weston","type":"Person","_key":"15109"} +{"label":"The Lark Farm","description":"The Lark Farm is set in a small Turkish town in 1915. It deals with the genocide of Armenians, looking closely at the fortunes, or rather, misfortunes of one wealthy Armenian family.","id":"2361","runtime":122,"imdbId":"tt0854672","version":108,"lastModified":"1301903612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4c82cc575e73d664d5000004\/la-masseria-delle-allodole-mid.jpg","studio":"Ager 3","genre":"Drama","title":"The Lark Farm","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"15110"} +{"label":"Vittorio Taviani","version":26,"id":"24281","lastModified":"1301901623000","name":"Vittorio Taviani","type":"Person","_key":"15111"} +{"label":"Paolo Taviani","version":25,"id":"24279","lastModified":"1301901686000","name":"Paolo Taviani","type":"Person","_key":"15112"} +{"label":"Alessandro Preziosi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d28\/4d4e64317b9aa13ab8009d28\/alessandro-preziosi-profile.jpg","version":35,"id":"24288","lastModified":"1301901583000","name":"Alessandro Preziosi","type":"Person","_key":"15113"} +{"label":"Mohammed Bakri","version":24,"id":"24289","lastModified":"1301902114000","name":"Mohammed Bakri","type":"Person","_key":"15114"} +{"label":"Mariano Rigillo","version":20,"id":"24290","lastModified":"1301902114000","name":"Mariano Rigillo","type":"Person","_key":"15115"} +{"label":"Westworld","description":"A amusement park for rich vacationers. The park provides its customers a way to live out their fantasies through the use of robots that provide anything they want. Two of the vacationers choose a wild west adventure. However, after a computer breakdown, they find that they are now being stalked by a rogue robot gun-slinger.","id":"2362","runtime":88,"imdbId":"tt0070909","trailer":"http:\/\/www.youtube.com\/watch?v=I5j3OfecRjw","version":178,"lastModified":"1301903442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d1\/4bc9169a017a3c57fe0088d1\/westworld-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Westworld","releaseDate":122688000000,"language":"en","type":"Movie","_key":"15116"} +{"label":"Michael Crichton","version":97,"id":"4782","lastModified":"1302063644000","name":"Michael Crichton","type":"Person","_key":"15117"} +{"label":"Richard Benjamin","version":57,"id":"24318","lastModified":"1301901260000","name":"Richard Benjamin","type":"Person","_key":"15118"} +{"label":"Norman Bartold","version":21,"id":"24319","lastModified":"1301902130000","name":"Norman Bartold","type":"Person","_key":"15119"} +{"label":"Alan Oppenheimer","version":33,"id":"24320","lastModified":"1301901503000","name":"Alan Oppenheimer","type":"Person","_key":"15120"} +{"label":"Victoria Shaw","version":27,"id":"24321","lastModified":"1301901776000","name":"Victoria Shaw","type":"Person","_key":"15121"} +{"label":"Linda Gaye Scott","version":20,"id":"24322","lastModified":"1301902130000","name":"Linda Gaye Scott","type":"Person","_key":"15122"} +{"label":"Steve Franken","version":22,"id":"24323","lastModified":"1301902130000","name":"Steve Franken","type":"Person","_key":"15123"} +{"label":"Michael T. Mikler","version":18,"id":"24324","lastModified":"1301901833000","name":"Michael T. Mikler","type":"Person","_key":"15124"} +{"label":"Terry Wilson","version":23,"id":"24325","lastModified":"1301901769000","name":"Terry Wilson","type":"Person","_key":"15125"} +{"label":"Anne Randall","version":21,"id":"24326","lastModified":"1301901936000","name":"Anne Randall","type":"Person","_key":"15126"} +{"label":"Les cousins","description":"Charles is a young provincial coming up to Paris to study law. He shares his cousin Paul's flat. Paul is a kind of decadent boy, a disillusioned pleasure-seeker, always dragging along with other idles, while Charles is a plodding, naive and honest man. He fell in love with Florence, one of Paul's acquaintances. But how will Paul react to that attempt to build a real love relationship ? One of the major New Wave films.","id":"2363","runtime":110,"imdbId":"tt0052708","version":83,"lastModified":"1301905012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15c\/4d4833375e73d66f5900315c\/les-cousins-mid.jpg","studio":"AJYM-Films","genre":"Drama","title":"Les cousins","releaseDate":-341193600000,"language":"en","type":"Movie","_key":"15127"} +{"label":"G\u00e9rard Blain","version":29,"id":"24298","lastModified":"1301901504000","name":"G\u00e9rard Blain","type":"Person","_key":"15128"} +{"label":"Jean-Claude Brialy","version":69,"id":"24299","lastModified":"1301901320000","name":"Jean-Claude Brialy","type":"Person","_key":"15129"} +{"label":"Juliette Mayniel","version":26,"id":"24300","lastModified":"1301902021000","name":"Juliette Mayniel","type":"Person","_key":"15130"} +{"label":"Genevi\u00e8ve Cluny","version":22,"id":"24301","lastModified":"1301902012000","name":"Genevi\u00e8ve Cluny","type":"Person","_key":"15131"} +{"label":"Mich\u00e8le M\u00e9ritz","version":25,"id":"24302","lastModified":"1301901586000","name":"Mich\u00e8le M\u00e9ritz","type":"Person","_key":"15132"} +{"label":"Paul Bisciglia","version":28,"id":"24303","lastModified":"1301901827000","name":"Paul Bisciglia","type":"Person","_key":"15133"} +{"label":"Fran\u00e7oise Vatel","version":21,"id":"24304","lastModified":"1301902031000","name":"Fran\u00e7oise Vatel","type":"Person","_key":"15134"} +{"label":"Jaws Series","description":"The classic disaster films about a great white shark that\u2019s been attacking people of the coast of New England and bringing terror to their beach vacations. The first film was a major box-office success bringing in almost 500 million world wide and spawning the blockbuster movie phenomena and two sequels. ","id":"2366","version":49,"lastModified":"1301904837000","genre":"Horror","title":"Jaws Series","language":"en","type":"Movie","_key":"15135"} +{"label":"Topaz","description":"A French intelligence agent becomes embroiled in the Cold War politics first with uncovering the events leading up to the 1962 Cuban Missle Crisis, and then back to France to break up an international Russian spy ring.","id":"2370","runtime":143,"imdbId":"tt0065112","version":108,"lastModified":"1301905558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8df\/4bc9169f017a3c57fe0088df\/topaz-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Topaz","releaseDate":-1123200000,"language":"en","type":"Movie","_key":"15136"} +{"label":"Frederick Stafford","version":23,"id":"24363","lastModified":"1301901398000","name":"Frederick Stafford","type":"Person","_key":"15137"} +{"label":"Dany Robin","version":27,"id":"24364","lastModified":"1301901498000","name":"Dany Robin","type":"Person","_key":"15138"} +{"label":"Michel Subor","version":30,"id":"24365","lastModified":"1301901494000","name":"Michel Subor","type":"Person","_key":"15139"} +{"label":"Philippe Noiret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ca\/4ca2483b5e73d612d70003ca\/philippe-noiret-profile.jpg","version":70,"id":"24366","lastModified":"1301901230000","name":"Philippe Noiret","type":"Person","_key":"15140"} +{"label":"John Forsythe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b0\/4c518ca27b9aa13d4e0001b0\/john-forsythe-profile.jpg","version":40,"id":"24367","lastModified":"1301901648000","name":"John Forsythe","type":"Person","_key":"15141"} +{"label":"Roscoe Lee Browne","version":44,"id":"24368","lastModified":"1301901288000","name":"Roscoe Lee Browne","type":"Person","_key":"15142"} +{"label":"Per-Axel Arosenius","version":23,"id":"24369","lastModified":"1301901605000","name":"Per-Axel Arosenius","type":"Person","_key":"15143"} +{"label":"Edmon Ryan","version":28,"id":"24549","lastModified":"1301901110000","name":"Edmon Ryan","type":"Person","_key":"15144"} +{"label":"Sonja Kolthoff","version":22,"id":"24550","lastModified":"1301901999000","name":"Sonja Kolthoff","type":"Person","_key":"15145"} +{"label":"Tina Hedstr\u00f6m","version":24,"id":"24552","lastModified":"1301901707000","name":"Tina Hedstr\u00f6m","type":"Person","_key":"15146"} +{"label":"John Van Dreelen","version":29,"id":"24554","lastModified":"1301901566000","name":"John Van Dreelen","type":"Person","_key":"15147"} +{"label":"Donald Randolph","version":29,"id":"24556","lastModified":"1301902162000","name":"Donald Randolph","type":"Person","_key":"15148"} +{"label":"Assassination Attempt","description":"Documents reveal in 1980 that the Germans planned to kill the Big Three in Teheran in 1943.","id":"2371","runtime":192,"imdbId":"tt0081609","version":107,"lastModified":"1301905657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e8\/4bc916a0017a3c57fe0088e8\/43-mid.jpg","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Action","title":"Assassination Attempt","releaseDate":363398400000,"language":"en","type":"Movie","_key":"15149"} +{"label":"Natalya Belokhvostikova","version":21,"id":"24370","lastModified":"1301901506000","name":"Natalya Belokhvostikova","type":"Person","_key":"15150"} +{"label":"Igor Kostolevsky","version":21,"id":"24371","lastModified":"1301901576000","name":"Igor Kostolevsky","type":"Person","_key":"15151"} +{"label":"Armen Dzhigarkhanyan","version":29,"id":"24372","lastModified":"1301901463000","name":"Armen Dzhigarkhanyan","type":"Person","_key":"15152"} +{"label":"Albert Filozov","version":22,"id":"24373","lastModified":"1301901805000","name":"Albert Filozov","type":"Person","_key":"15153"} +{"label":"Gleb Strizhenov","version":22,"id":"24374","lastModified":"1301902168000","name":"Gleb Strizhenov","type":"Person","_key":"15154"} +{"label":"Vsevolod Sanayev","version":21,"id":"28769","lastModified":"1301901532000","name":"Vsevolod Sanayev","type":"Person","_key":"15155"} +{"label":"Nartai Begalin","version":21,"id":"34600","lastModified":"1301901917000","name":"Nartai Begalin","type":"Person","_key":"15156"} +{"label":"Jess Hahn","version":36,"id":"33723","lastModified":"1301901501000","name":"Jess Hahn","type":"Person","_key":"15157"} +{"label":"Evelyne Kraft","version":21,"id":"34601","lastModified":"1301901917000","name":"Evelyne Kraft","type":"Person","_key":"15158"} +{"label":"Natalia Naumowa","version":23,"id":"34602","lastModified":"1301901753000","name":"Natalia Naumowa","type":"Person","_key":"15159"} +{"label":"Vladimir Naumov","version":27,"id":"24376","lastModified":"1301901656000","name":"Vladimir Naumov","type":"Person","_key":"15160"} +{"label":"Aleksandr Alov","version":27,"id":"24375","lastModified":"1301901567000","name":"Aleksandr Alov","type":"Person","_key":"15161"} +{"label":"Mon oncle Benjamin","description":"Sous le r\u00e8gne de Louis XV, Benjamin Rathery (Jacques Brel) est m\u00e9decin de campagne, principalement des pauvres de la r\u00e9gion. C'est \u00e9galement un ripailleur perp\u00e9tuel et un coureur de jupons inv\u00e9t\u00e9r\u00e9, mais une seule fille, dont il est follement amoureux, lui r\u00e9siste : Manette (Claude Jade), la fille de l'aubergiste. Mais celle-ci n'entend c\u00e9der au m\u00e9decin qu'au prix d'un contrat de mariage en poche.","id":"2373","runtime":90,"imdbId":"tt0122617","version":79,"lastModified":"1301907432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4bc916a0017a3c57fe0088f1\/mon-oncle-benjamin-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Mon oncle Benjamin","releaseDate":-2937600000,"language":"en","type":"Movie","_key":"15162"} +{"label":"Jacques Brel","version":32,"id":"24377","lastModified":"1301901662000","name":"Jacques Brel","type":"Person","_key":"15163"} +{"label":"Bernard Alane","version":35,"id":"24378","lastModified":"1302054335000","name":"Bernard Alane","type":"Person","_key":"15164"} +{"label":"Paul Frankeur","version":36,"id":"24684","lastModified":"1301901569000","name":"Paul Frankeur","type":"Person","_key":"15165"} +{"label":"Lyne Chardonnet","version":21,"id":"24691","lastModified":"1301902162000","name":"Lyne Chardonnet","type":"Person","_key":"15166"} +{"label":"Bernard Blier","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\">\n<\/font><table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" style=\"font-family: Verdana, Helvetica, sans-serif; -webkit-border-horizontal-spacing: 3px; -webkit-border-vertical-spacing: 3px; \"><tbody><tr style=\"font-family: Verdana, Helvetica, sans-serif; font-size: 12px; \"><td style=\"font-family: Verdana, Helvetica, sans-serif; font-size: 12px; \">\n<\/td><\/tr><tr style=\"font-family: Verdana, Helvetica, sans-serif; font-size: 12px; \"><td ","version":59,"birthday":"-1703293200000","id":"24379","lastModified":"1302033356000","name":"Bernard Blier","type":"Person","_key":"15167"} +{"label":"Alfred Adam","version":23,"id":"24687","lastModified":"1301901824000","name":"Alfred Adam","type":"Person","_key":"15168"} +{"label":"Armand Mestral","version":21,"id":"28176","lastModified":"1301902203000","name":"Armand Mestral","type":"Person","_key":"15169"} +{"label":"Paul Pr\u00e9boist","version":53,"id":"24500","lastModified":"1301901354000","name":"Paul Pr\u00e9boist","type":"Person","_key":"15170"} +{"label":"Carlo Alighiero","version":21,"id":"24689","lastModified":"1301901796000","name":"Carlo Alighiero","type":"Person","_key":"15171"} +{"label":"Dominique De Keuchel","version":17,"id":"28177","lastModified":"1301902168000","name":"Dominique De Keuchel","type":"Person","_key":"15172"} +{"label":"Jean-Pierre Lamy","version":20,"id":"28178","lastModified":"1301902191000","name":"Jean-Pierre Lamy","type":"Person","_key":"15173"} +{"label":"Edouard Molinaro","version":44,"id":"24380","lastModified":"1301901796000","name":"Edouard Molinaro","type":"Person","_key":"15174"} +{"label":"Le Radeau de la M\u00e9duse","description":"No overview found.","id":"2374","runtime":130,"imdbId":"tt0164839","version":64,"lastModified":"1301907433000","studio":"G\u00e9maci","genre":"Drama","title":"Le Radeau de la M\u00e9duse","releaseDate":900460800000,"language":"en","type":"Movie","_key":"15175"} +{"label":"Jean Yanne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/559\/4c9feac95e73d6704b000559\/jean-yanne-profile.jpg","version":43,"id":"24381","lastModified":"1301901529000","name":"Jean Yanne","type":"Person","_key":"15176"} +{"label":"Alain Mac\u00e9","version":21,"id":"24382","lastModified":"1301902191000","name":"Alain Mac\u00e9","type":"Person","_key":"15177"} +{"label":"Victor Garrivier","version":22,"id":"24383","lastModified":"1301901839000","name":"Victor Garrivier","type":"Person","_key":"15178"} +{"label":"Michel Baumann","version":20,"id":"24384","lastModified":"1301902029000","name":"Michel Baumann","type":"Person","_key":"15179"} +{"label":"Laurent Terzieff","version":36,"id":"24385","lastModified":"1301901569000","name":"Laurent Terzieff","type":"Person","_key":"15180"} +{"label":"Marie Matheron","version":22,"id":"69150","lastModified":"1301902348000","name":"Marie Matheron","type":"Person","_key":"15181"} +{"label":"Laurence Hamelin","version":20,"id":"69151","lastModified":"1301902379000","name":"Laurence Hamelin","type":"Person","_key":"15182"} +{"label":"Stephanie Lanoux","version":17,"id":"69152","lastModified":"1301902359000","name":"Stephanie Lanoux","type":"Person","_key":"15183"} +{"label":"Iradj Azimi","version":27,"id":"24386","lastModified":"1301901662000","name":"Iradj Azimi","type":"Person","_key":"15184"} +{"label":"Pr\u00eatres interdits","description":"No overview found.","id":"2375","runtime":90,"imdbId":"tt0174143","version":41,"lastModified":"1301906181000","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Drama","title":"Pr\u00eatres interdits","releaseDate":122774400000,"language":"en","type":"Movie","_key":"15185"} +{"label":"Pierre Mondy","version":47,"id":"24387","lastModified":"1301901448000","name":"Pierre Mondy","type":"Person","_key":"15186"} +{"label":"Claude Pi\u00e9plu","version":47,"id":"24388","lastModified":"1301901405000","name":"Claude Pi\u00e9plu","type":"Person","_key":"15187"} +{"label":"Germaine Delbat","version":29,"id":"24883","lastModified":"1301901796000","name":"Germaine Delbat","type":"Person","_key":"15188"} +{"label":"Lucienne Legrand","version":22,"id":"24884","lastModified":"1301902162000","name":"Lucienne Legrand","type":"Person","_key":"15189"} +{"label":"Louis Seigner","version":24,"id":"24885","lastModified":"1301902162000","name":"Louis Seigner","type":"Person","_key":"15190"} +{"label":"Mich\u00e8le Watrin","version":20,"id":"26658","lastModified":"1301902012000","name":"Mich\u00e8le Watrin","type":"Person","_key":"15191"} +{"label":"Denys de La Patelli\u00e8re","version":26,"id":"24389","lastModified":"1301901685000","name":"Denys de La Patelli\u00e8re","type":"Person","_key":"15192"} +{"label":"Le pion","description":"No overview found.","id":"2376","runtime":85,"imdbId":"tt0078086","version":49,"lastModified":"1301907433000","studio":"Les Films 21","genre":"Comedy","title":"Le pion","releaseDate":278121600000,"language":"en","type":"Movie","_key":"15193"} +{"label":"Maureen Kerwin","version":21,"id":"24390","lastModified":"1301901832000","name":"Maureen Kerwin","type":"Person","_key":"15194"} +{"label":"Michel Galabru","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4d14a74d5e73d6083e002096\/michel-galabru-profile.jpg","version":92,"id":"24629","lastModified":"1302061548000","name":"Michel Galabru","type":"Person","_key":"15195"} +{"label":"Mathieu Vermesh","version":20,"id":"25974","lastModified":"1301901824000","name":"Mathieu Vermesh","type":"Person","_key":"15196"} +{"label":"St\u00e9phane Lievain","version":20,"id":"25975","lastModified":"1301902191000","name":"St\u00e9phane Lievain","type":"Person","_key":"15197"} +{"label":"Bernard Musson","version":31,"id":"25976","lastModified":"1301902163000","name":"Bernard Musson","type":"Person","_key":"15198"} +{"label":"Christian Gion","version":21,"id":"24391","lastModified":"1301902191000","name":"Christian Gion","type":"Person","_key":"15199"} +{"label":"Bonsoir","description":"No overview found.","id":"2377","runtime":85,"imdbId":"tt0165113","version":79,"lastModified":"1301906645000","studio":"Flach Films","genre":"Comedy","title":"Bonsoir","releaseDate":758937600000,"language":"en","type":"Movie","_key":"15200"} +{"label":"Marie-Christine Barrault","version":37,"id":"24393","lastModified":"1301901567000","name":"Marie-Christine Barrault","type":"Person","_key":"15201"} +{"label":"Corinne Le Poulain","version":19,"id":"24394","lastModified":"1301901753000","name":"Corinne Le Poulain","type":"Person","_key":"15202"} +{"label":"Jean-Pierre Bisson","version":21,"id":"24395","lastModified":"1301901917000","name":"Jean-Pierre Bisson","type":"Person","_key":"15203"} +{"label":"Maaike Jansen","version":19,"id":"24396","lastModified":"1301902116000","name":"Maaike Jansen","type":"Person","_key":"15204"} +{"label":"Catherine Mouchet","version":25,"id":"24762","lastModified":"1301901846000","name":"Catherine Mouchet","type":"Person","_key":"15205"} +{"label":"Roland Blanche","version":33,"id":"24763","lastModified":"1301901844000","name":"Roland Blanche","type":"Person","_key":"15206"} +{"label":"Jean Abeill\u00e9","version":19,"id":"24764","lastModified":"1301901917000","name":"Jean Abeill\u00e9","type":"Person","_key":"15207"} +{"label":"Laurence Vincendon","version":19,"id":"24838","lastModified":"1301901917000","name":"Laurence Vincendon","type":"Person","_key":"15208"} +{"label":"Monique Darpy","version":19,"id":"24839","lastModified":"1301901917000","name":"Monique Darpy","type":"Person","_key":"15209"} +{"label":"Jean-Pierre Clami","version":20,"id":"25192","lastModified":"1301902040000","name":"Jean-Pierre Clami","type":"Person","_key":"15210"} +{"label":"Georges Lucas","version":20,"id":"25193","lastModified":"1301901753000","name":"Georges Lucas","type":"Person","_key":"15211"} +{"label":"Lauren Grandt","version":17,"id":"25209","lastModified":"1301902191000","name":"Lauren Grandt","type":"Person","_key":"15212"} +{"label":"Jean-Pierre Mocky","version":30,"id":"24397","lastModified":"1301901500000","name":"Jean-Pierre Mocky","type":"Person","_key":"15213"} +{"label":"L'\u00eele aux trente cercueils","description":"No overview found.","id":"2378","runtime":300,"imdbId":"tt0169519","version":41,"lastModified":"1301905344000","studio":"Path\u00e9 Cin\u00e9ma","genre":"Adventure","title":"L'\u00eele aux trente cercueils","releaseDate":306720000000,"language":"en","type":"Movie","_key":"15214"} +{"label":"Jean-Paul Zehnacker","version":24,"id":"24398","lastModified":"1301901416000","name":"Jean-Paul Zehnacker","type":"Person","_key":"15215"} +{"label":"Yves Beneyton","version":25,"id":"24399","lastModified":"1301901500000","name":"Yves Beneyton","type":"Person","_key":"15216"} +{"label":"Pascal Sellier","version":20,"id":"24400","lastModified":"1301902012000","name":"Pascal Sellier","type":"Person","_key":"15217"} +{"label":"Julie Philippe","version":20,"id":"24401","lastModified":"1301901973000","name":"Julie Philippe","type":"Person","_key":"15218"} +{"label":"Marie Mergey","version":24,"id":"24402","lastModified":"1301902162000","name":"Marie Mergey","type":"Person","_key":"15219"} +{"label":"Pierre Semmler","version":27,"id":"32368","lastModified":"1301901244000","name":"Pierre Semmler","type":"Person","_key":"15220"} +{"label":"Jean-Ren\u00e9 Gossart","version":18,"id":"34288","lastModified":"1301901982000","name":"Jean-Ren\u00e9 Gossart","type":"Person","_key":"15221"} +{"label":"Marcel Cravenne","version":20,"id":"24403","lastModified":"1301901824000","name":"Marcel Cravenne","type":"Person","_key":"15222"} +{"label":"Le t\u00e9moin","description":"No overview found.","id":"2379","runtime":100,"imdbId":"tt0176254","version":40,"lastModified":"1301904046000","studio":"Films Ren\u00e9 Th\u00e9venet","genre":"Drama","title":"Le t\u00e9moin","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"15223"} +{"label":"Jean-Claude Dauphin","version":29,"id":"24405","lastModified":"1302061548000","name":"Jean-Claude Dauphin","type":"Person","_key":"15224"} +{"label":"Jeanne P\u00e9rez","version":23,"id":"24778","lastModified":"1301901824000","name":"Jeanne P\u00e9rez","type":"Person","_key":"15225"} +{"label":"Claude Vernier","version":25,"id":"24779","lastModified":"1301901796000","name":"Claude Vernier","type":"Person","_key":"15226"} +{"label":"Bernard Fr\u00e9maux","version":21,"id":"24780","lastModified":"1301902012000","name":"Bernard Fr\u00e9maux","type":"Person","_key":"15227"} +{"label":"Anne Walter","version":21,"id":"24406","lastModified":"1301901796000","name":"Anne Walter","type":"Person","_key":"15228"} +{"label":"Home Sweet Home","description":"No overview found.","id":"2380","runtime":85,"imdbId":"tt0173904","version":143,"lastModified":"1301421215000","genre":"Comedy","title":"Home Sweet Home","releaseDate":94694400000,"language":"en","type":"Movie","_key":"15229"} +{"label":"Ann Petersen","version":22,"id":"24407","lastModified":"1301902040000","name":"Ann Petersen","type":"Person","_key":"15230"} +{"label":"Marcel Josz","version":20,"id":"24408","lastModified":"1301902186000","name":"Marcel Josz","type":"Person","_key":"15231"} +{"label":"Jacques Lippe","version":20,"id":"28084","lastModified":"1301901974000","name":"Jacques Lippe","type":"Person","_key":"15232"} +{"label":"Beno\u00eet Lamy","version":23,"id":"24409","lastModified":"1301901818000","name":"Beno\u00eet Lamy","type":"Person","_key":"15233"} +{"label":"Lenin v Parizhe","description":"No overview found.","id":"2381","runtime":106,"imdbId":"tt0081043","version":54,"lastModified":"1301907432000","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Drama","title":"Lenin v Parizhe","releaseDate":388281600000,"language":"en","type":"Movie","_key":"15234"} +{"label":"Yuri Kayurov","version":17,"id":"24413","lastModified":"1301901982000","name":"Yuri Kayurov","type":"Person","_key":"15235"} +{"label":"Vladimir Antonik","version":17,"id":"24416","lastModified":"1301901805000","name":"Vladimir Antonik","type":"Person","_key":"15236"} +{"label":"Valentina Svetlova","version":17,"id":"24417","lastModified":"1301901805000","name":"Valentina Svetlova","type":"Person","_key":"15237"} +{"label":"Sergei Yutkevich","version":18,"id":"24419","lastModified":"1301901796000","name":"Sergei Yutkevich","type":"Person","_key":"15238"} +{"label":"Les Feux de la Chandeleur","description":"No overview found.","id":"2382","runtime":110,"imdbId":"tt0173821","version":52,"lastModified":"1301905347000","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Drama","title":"Les Feux de la Chandeleur","releaseDate":75513600000,"language":"en","type":"Movie","_key":"15239"} +{"label":"Jean Rochefort","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48c\/4cd744e05e73d676d200048c\/jean-rochefort-profile.jpg","version":76,"id":"24421","lastModified":"1301901361000","name":"Jean Rochefort","type":"Person","_key":"15240"} +{"label":"Bernard Fresson","version":42,"id":"24422","lastModified":"1301901501000","name":"Bernard Fresson","type":"Person","_key":"15241"} +{"label":"Gabriella Boccardo","version":20,"id":"24423","lastModified":"1301901837000","name":"Gabriella Boccardo","type":"Person","_key":"15242"} +{"label":"Ilaria Occhini","version":34,"id":"24424","lastModified":"1301901589000","name":"Ilaria Occhini","type":"Person","_key":"15243"} +{"label":"Isabelle Missud","version":20,"id":"39103","lastModified":"1301901681000","name":"Isabelle Missud","type":"Person","_key":"15244"} +{"label":"Christophe Bruno","version":25,"id":"35246","lastModified":"1301901824000","name":"Christophe Bruno","type":"Person","_key":"15245"} +{"label":"Serge Korber","version":33,"id":"24425","lastModified":"1301901683000","name":"Serge Korber","type":"Person","_key":"15246"} +{"label":"The Bear","description":"An orphan bear cub hooks up with an adult male as they try to dodge human hunters.","id":"2383","runtime":94,"imdbId":"tt0095800","version":124,"lastModified":"1301902784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4d8bd5d45e73d65beb0000a8\/l-ours-mid.jpg","studio":"Renn Productions","genre":"Adventure","title":"The Bear","releaseDate":593222400000,"language":"en","tagline":"He's an orphan... at the start of a journey. A journey to survive.","type":"Movie","_key":"15247"} +{"label":"Bart the Bear","version":22,"id":"24433","lastModified":"1301901805000","name":"Bart the Bear","type":"Person","_key":"15248"} +{"label":"Youk the Bear","version":22,"id":"24434","lastModified":"1301902019000","name":"Youk the Bear","type":"Person","_key":"15249"} +{"label":"Jack Wallace","version":26,"id":"24435","lastModified":"1301902197000","name":"Jack Wallace","type":"Person","_key":"15250"} +{"label":"Andr\u00e9 Lacombe","version":22,"id":"24436","lastModified":"1301902168000","name":"Andr\u00e9 Lacombe","type":"Person","_key":"15251"} +{"label":"Schwarze Schafe","description":"No overview found.","id":"2384","runtime":94,"imdbId":"tt0832517","version":77,"lastModified":"1301998408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/908\/4bc916a5017a3c57fe008908\/schwarze-schafe-mid.jpg","studio":"Oliwood Productions","genre":"Comedy","title":"Schwarze Schafe","releaseDate":1155945600000,"language":"en","type":"Movie","_key":"15252"} +{"label":"Eralp Uzun","version":19,"id":"24437","lastModified":"1301901747000","name":"Eralp Uzun","type":"Person","_key":"15253"} +{"label":"Richard Hanschmann","version":19,"id":"24438","lastModified":"1301901747000","name":"Richard Hanschmann","type":"Person","_key":"15254"} +{"label":"Jule B\u00f6we","version":25,"id":"24439","lastModified":"1301901243000","name":"Jule B\u00f6we","type":"Person","_key":"15255"} +{"label":"Kirk Kirchberger","version":21,"id":"24441","lastModified":"1301901998000","name":"Kirk Kirchberger","type":"Person","_key":"15256"} +{"label":"Daniel Zillmann","version":23,"id":"24442","lastModified":"1301901772000","name":"Daniel Zillmann","type":"Person","_key":"15257"} +{"label":"Bruno Cathomas","version":21,"id":"27985","lastModified":"1301901652000","name":"Bruno Cathomas","type":"Person","_key":"15258"} +{"label":"Jenny Deimling","version":19,"id":"27986","lastModified":"1301901747000","name":"Jenny Deimling","type":"Person","_key":"15259"} +{"label":"Barbara Kowa","version":23,"id":"28297","lastModified":"1301901448000","name":"Barbara Kowa","type":"Person","_key":"15260"} +{"label":"Daniel Krauss","version":27,"id":"30726","lastModified":"1301901559000","name":"Daniel Krauss","type":"Person","_key":"15261"} +{"label":"Helga Senk","version":19,"id":"30786","lastModified":"1301901747000","name":"Helga Senk","type":"Person","_key":"15262"} +{"label":"Oliver Rihs","version":21,"id":"24443","lastModified":"1301901911000","name":"Oliver Rihs","type":"Person","_key":"15263"} +{"label":"Agent Trouble","description":"No overview found.","id":"2385","runtime":88,"imdbId":"tt0092521","version":70,"lastModified":"1301415415000","studio":"Bac Films","title":"Agent Trouble","releaseDate":556329600000,"language":"en","type":"Movie","_key":"15264"} +{"label":"Tom Novembre","version":21,"id":"24454","lastModified":"1301901851000","name":"Tom Novembre","type":"Person","_key":"15265"} +{"label":"Pierre Arditi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53d\/4d10db615e73d6083400053d\/pierre-arditi-profile.jpg","version":59,"id":"24816","lastModified":"1301950076000","name":"Pierre Arditi","type":"Person","_key":"15266"} +{"label":"Sophie Moyse","version":20,"id":"24817","lastModified":"1301902181000","name":"Sophie Moyse","type":"Person","_key":"15267"} +{"label":"Herv\u00e9 Pauchon","version":17,"id":"24818","lastModified":"1301902176000","name":"Herv\u00e9 Pauchon","type":"Person","_key":"15268"} +{"label":"Les Robots pensants","description":"No overview found.","id":"2386","runtime":90,"imdbId":"tt0190718","version":36,"lastModified":"1301903602000","genre":"Horror","title":"Les Robots pensants","releaseDate":220924800000,"language":"en","type":"Movie","_key":"15269"} +{"label":"Fran\u00e7ois Dunoyer","version":20,"id":"24459","lastModified":"1301902025000","name":"Fran\u00e7ois Dunoyer","type":"Person","_key":"15270"} +{"label":"Andr\u00e9 Reybaz","version":20,"id":"24460","lastModified":"1301902010000","name":"Andr\u00e9 Reybaz","type":"Person","_key":"15271"} +{"label":"Thierry Murzeau","version":20,"id":"35392","lastModified":"1301901681000","name":"Thierry Murzeau","type":"Person","_key":"15272"} +{"label":"Gis\u00e8le Casadesus","version":26,"id":"24462","lastModified":"1301952583000","name":"Gis\u00e8le Casadesus","type":"Person","_key":"15273"} +{"label":"Roger Crouzet","version":20,"id":"24461","lastModified":"1301902199000","name":"Roger Crouzet","type":"Person","_key":"15274"} +{"label":"Michel Subiela","version":20,"id":"24463","lastModified":"1301901691000","name":"Michel Subiela","type":"Person","_key":"15275"} +{"label":"Tableau d'honneur","description":"No overview found.","id":"2387","runtime":90,"imdbId":"tt0105514","version":46,"lastModified":"1301904047000","studio":"Canal Plus","genre":"Comedy","title":"Tableau d'honneur","releaseDate":714787200000,"language":"en","type":"Movie","_key":"15276"} +{"label":"Philippe Khorsand","version":26,"id":"24464","lastModified":"1301901526000","name":"Philippe Khorsand","type":"Person","_key":"15277"} +{"label":"Eric Elmosnino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/225\/4c8780507b9aa1545a000225\/eric-elmosnino-profile.jpg","version":27,"id":"24465","lastModified":"1301902204000","name":"Eric Elmosnino","type":"Person","_key":"15278"} +{"label":"C\u00e9cile Pallas","version":22,"id":"24466","lastModified":"1301901839000","name":"C\u00e9cile Pallas","type":"Person","_key":"15279"} +{"label":"Jean-Paul Roussillon","version":35,"id":"24467","lastModified":"1301902164000","name":"Jean-Paul Roussillon","type":"Person","_key":"15280"} +{"label":"Evelyne Buyle","version":22,"id":"24468","lastModified":"1301902164000","name":"Evelyne Buyle","type":"Person","_key":"15281"} +{"label":"Patrick Guillemin","version":21,"id":"24469","lastModified":"1301902173000","name":"Patrick Guillemin","type":"Person","_key":"15282"} +{"label":"Kathy Kriegel","version":21,"id":"24470","lastModified":"1301902164000","name":"Kathy Kriegel","type":"Person","_key":"15283"} +{"label":"Mathias M\u00e9gard","version":20,"id":"33997","lastModified":"1301902011000","name":"Mathias M\u00e9gard","type":"Person","_key":"15284"} +{"label":"St\u00e9phanie Ruaux","version":20,"id":"33998","lastModified":"1301902011000","name":"St\u00e9phanie Ruaux","type":"Person","_key":"15285"} +{"label":"Judith R\u00e9my","version":20,"id":"33999","lastModified":"1301902016000","name":"Judith R\u00e9my","type":"Person","_key":"15286"} +{"label":"Marine Jolivet","version":20,"id":"34000","lastModified":"1301902028000","name":"Marine Jolivet","type":"Person","_key":"15287"} +{"label":"Charles Nemes","version":26,"id":"24471","lastModified":"1301902164000","name":"Charles Nemes","type":"Person","_key":"15288"} +{"label":"\u00c0 San Remo","description":"No overview found.","id":"2388","runtime":22,"imdbId":"tt0367266","version":39,"lastModified":"1301907433000","studio":"Local Films","genre":"Drama","title":"\u00c0 San Remo","releaseDate":1081987200000,"language":"en","type":"Movie","_key":"15289"} +{"label":"J\u00e9r\u00e9my Lemaire","version":20,"id":"24472","lastModified":"1301901695000","name":"J\u00e9r\u00e9my Lemaire","type":"Person","_key":"15290"} +{"label":"Jean-Jacques Benhamou","version":20,"id":"24473","lastModified":"1301902030000","name":"Jean-Jacques Benhamou","type":"Person","_key":"15291"} +{"label":"Emmanuelle Baccarini","version":20,"id":"28628","lastModified":"1301902162000","name":"Emmanuelle Baccarini","type":"Person","_key":"15292"} +{"label":"Julien Donada","version":20,"id":"24833","lastModified":"1301902202000","name":"Julien Donada","type":"Person","_key":"15293"} +{"label":"Sous le signe de Monte Cristo","description":"No overview found.","id":"2389","runtime":100,"imdbId":"tt0174227","version":41,"lastModified":"1301905343000","studio":"P.A.C.","genre":"Adventure","title":"Sous le signe de Monte Cristo","releaseDate":-33350400000,"language":"en","type":"Movie","_key":"15294"} +{"label":"Paul Barge","version":23,"id":"24474","lastModified":"1301901500000","name":"Paul Barge","type":"Person","_key":"15295"} +{"label":"Anny Duperey","version":39,"id":"24475","lastModified":"1301901570000","name":"Anny Duperey","type":"Person","_key":"15296"} +{"label":"Pierre Brasseur","version":40,"id":"24476","lastModified":"1301901377000","name":"Pierre Brasseur","type":"Person","_key":"15297"} +{"label":"Paul Le Person","version":32,"id":"24477","lastModified":"1301901830000","name":"Paul Le Person","type":"Person","_key":"15298"} +{"label":"Raymond Pellegrin","version":31,"id":"24478","lastModified":"1301901796000","name":"Raymond Pellegrin","type":"Person","_key":"15299"} +{"label":"Jean Saudray","version":21,"id":"24479","lastModified":"1301902191000","name":"Jean Saudray","type":"Person","_key":"15300"} +{"label":"Gabriel Gascon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4c2cb8395e73d6399a00012f\/gabriel-gascon-profile.jpg","version":20,"id":"24480","lastModified":"1301901603000","name":"Gabriel Gascon","type":"Person","_key":"15301"} +{"label":"L'homme qui n'\u00e9tait pas l\u00e0","description":"No overview found.","id":"2390","runtime":83,"imdbId":"tt0173907","version":51,"lastModified":"1301906760000","studio":"Les Productions Artistes Associ\u00e9s","genre":"Thriller","title":"L'homme qui n'\u00e9tait pas l\u00e0","releaseDate":547257600000,"language":"en","type":"Movie","_key":"15302"} +{"label":"Ren\u00e9 F\u00e9ret","version":22,"id":"24481","lastModified":"1301902162000","name":"Ren\u00e9 F\u00e9ret","type":"Person","_key":"15303"} +{"label":"Jacques Dufilho","version":29,"id":"24482","lastModified":"1301901500000","name":"Jacques Dufilho","type":"Person","_key":"15304"} +{"label":"Georges Descri\u00e8res","version":28,"id":"24483","lastModified":"1301901318000","name":"Georges Descri\u00e8res","type":"Person","_key":"15305"} +{"label":"Val\u00e9rie Stroh","version":21,"id":"24484","lastModified":"1301901844000","name":"Val\u00e9rie Stroh","type":"Person","_key":"15306"} +{"label":"L'honneur d'un capitaine","description":"No overview found.","id":"2391","runtime":120,"imdbId":"tt0084089","version":57,"lastModified":"1301907443000","studio":"Bela Productions","genre":"Drama","title":"L'honneur d'un capitaine","releaseDate":378691200000,"language":"en","type":"Movie","_key":"15307"} +{"label":"Nicole Garcia","version":43,"id":"24485","lastModified":"1301901516000","name":"Nicole Garcia","type":"Person","_key":"15308"} +{"label":"Robert Etcheverry","version":20,"id":"24486","lastModified":"1301902197000","name":"Robert Etcheverry","type":"Person","_key":"15309"} +{"label":"Christophe Malavoy","version":26,"id":"24487","lastModified":"1301901976000","name":"Christophe Malavoy","type":"Person","_key":"15310"} +{"label":"Patrick Chauvel","version":24,"id":"24488","lastModified":"1301901664000","name":"Patrick Chauvel","type":"Person","_key":"15311"} +{"label":"Jean-Fran\u00e7ois Poron","version":23,"id":"24489","lastModified":"1301902192000","name":"Jean-Fran\u00e7ois Poron","type":"Person","_key":"15312"} +{"label":"Jean Vigny","version":21,"id":"24490","lastModified":"1301902011000","name":"Jean Vigny","type":"Person","_key":"15313"} +{"label":"Alain Bastien-Thiry","version":20,"id":"24491","lastModified":"1301902199000","name":"Alain Bastien-Thiry","type":"Person","_key":"15314"} +{"label":"Hubert Gignoux","version":22,"id":"44401","lastModified":"1301901799000","name":"Hubert Gignoux","type":"Person","_key":"15315"} +{"label":"Florent Pagny","version":21,"id":"35931","lastModified":"1301901572000","name":"Florent Pagny","type":"Person","_key":"15316"} +{"label":"Pierre Schoendoerffer","version":28,"id":"24492","lastModified":"1301901532000","name":"Pierre Schoendoerffer","type":"Person","_key":"15317"} +{"label":"La ragazza di via Condotti","description":"No overview found.","id":"2392","runtime":95,"imdbId":"tt0071309","version":53,"lastModified":"1301904692000","studio":"Mandala Film","genre":"Crime","title":"La ragazza di via Condotti","releaseDate":113875200000,"language":"en","type":"Movie","_key":"15318"} +{"label":"Femi Benussi","version":29,"id":"24493","lastModified":"1301901790000","name":"Femi Benussi","type":"Person","_key":"15319"} +{"label":"Alberto de Mendoza","version":40,"id":"24494","lastModified":"1301984277000","name":"Alberto de Mendoza","type":"Person","_key":"15320"} +{"label":"Michel Constantin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/577\/4d7e9f2b5e73d62836003577\/michel-constantin-profile.jpg","version":33,"id":"24495","lastModified":"1301901803000","name":"Michel Constantin","type":"Person","_key":"15321"} +{"label":"Sim\u00f3n Andreu","version":38,"id":"24496","lastModified":"1301901283000","name":"Sim\u00f3n Andreu","type":"Person","_key":"15322"} +{"label":"Manuel de Blas","version":32,"id":"30351","lastModified":"1301901666000","name":"Manuel de Blas","type":"Person","_key":"15323"} +{"label":"Giacomo Furia","version":22,"id":"37124","lastModified":"1301901753000","name":"Giacomo Furia","type":"Person","_key":"15324"} +{"label":"Giuseppe Castellano","version":19,"id":"37125","lastModified":"1301901753000","name":"Giuseppe Castellano","type":"Person","_key":"15325"} +{"label":"Patty Shepard","version":34,"id":"31347","lastModified":"1301901450000","name":"Patty Shepard","type":"Person","_key":"15326"} +{"label":"Dada Gallotti","version":23,"id":"31548","lastModified":"1301901977000","name":"Dada Gallotti","type":"Person","_key":"15327"} +{"label":"Germ\u00e1n Lorente","version":19,"id":"24497","lastModified":"1301901434000","name":"Germ\u00e1n Lorente","type":"Person","_key":"15328"} +{"label":"Le bateau sur l'herbe","description":"No overview found.","id":"2393","runtime":90,"imdbId":"tt0065454","version":50,"lastModified":"1301905344000","studio":"Vicco Films","genre":"Comedy","title":"Le bateau sur l'herbe","releaseDate":40608000000,"language":"en","type":"Movie","_key":"15329"} +{"label":"John McEnery","version":32,"id":"24498","lastModified":"1301901570000","name":"John McEnery","type":"Person","_key":"15330"} +{"label":"Micha Bayard","version":23,"id":"28172","lastModified":"1301902198000","name":"Micha Bayard","type":"Person","_key":"15331"} +{"label":"Pierre Asso","version":20,"id":"28173","lastModified":"1301902191000","name":"Pierre Asso","type":"Person","_key":"15332"} +{"label":"Jean de Coninck","version":25,"id":"28174","lastModified":"1301901824000","name":"Jean de Coninck","type":"Person","_key":"15333"} +{"label":"Carla Marlier","version":23,"id":"25959","lastModified":"1301902023000","name":"Carla Marlier","type":"Person","_key":"15334"} +{"label":"Bernard Salvage","version":20,"id":"28175","lastModified":"1301902191000","name":"Bernard Salvage","type":"Person","_key":"15335"} +{"label":"G\u00e9rard Brach","version":60,"id":"2356","lastModified":"1299668838000","name":"G\u00e9rard Brach","type":"Person","_key":"15336"} +{"label":"Sans famille","description":"No overview found.","id":"2394","runtime":180,"imdbId":"tt0261964","version":78,"lastModified":"1301906182000","studio":"Bavaria Film International","genre":"Drama","title":"Sans famille","releaseDate":977097600000,"language":"en","type":"Movie","_key":"15337"} +{"label":"Pierre Richard","version":55,"id":"24501","lastModified":"1301901113000","name":"Pierre Richard","type":"Person","_key":"15338"} +{"label":"Jules Sitruk","version":25,"id":"24502","lastModified":"1301901644000","name":"Jules Sitruk","type":"Person","_key":"15339"} +{"label":"Marcel Dossogne","version":20,"id":"24504","lastModified":"1301902163000","name":"Marcel Dossogne","type":"Person","_key":"15340"} +{"label":"Gwennoal Hollenstein","version":20,"id":"24505","lastModified":"1301902163000","name":"Gwennoal Hollenstein","type":"Person","_key":"15341"} +{"label":"Julia Portoghese","version":20,"id":"24506","lastModified":"1301902163000","name":"Julia Portoghese","type":"Person","_key":"15342"} +{"label":"Jean-Daniel Verhaeghe","version":22,"id":"24507","lastModified":"1301901464000","name":"Jean-Daniel Verhaeghe","type":"Person","_key":"15343"} +{"label":"Asterix at the Olympic Games","description":"Ast\u00e9rix and Ob\u00e9lix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Beno\u00eet Poelvoorde) uses every trick in the book to have his own team win the game, and get rid of his father Julius Caesar (Alain Delon) in the process.","id":"2395","runtime":117,"imdbId":"tt0463872","trailer":"http:\/\/www.youtube.com\/watch?v=386","homepage":"http:\/\/www.asterixauxjeuxolympiques.com\/index.php","version":207,"lastModified":"1301907661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92a\/4bc916a8017a3c57fe00892a\/asterix-aux-jeux-olympiques-mid.jpg","studio":"Canal Plus","genre":"Adventure","title":"Asterix at the Olympic Games","releaseDate":1201651200000,"language":"en","type":"Movie","_key":"15344"} +{"label":"Fr\u00e9d\u00e9ric Forestier","biography":"<span style=\"font-family: Tahoma, Lucida, Arial, sans-serif; line-height: 18px; \">Apr\u00e8s avoir co-sign\u00e9 avec <a href=\"http:\/\/www.allocine.fr\/personne\/fichepersonne_gen_cpersonne=56857.html\" title=\"St\u00e9phane Gateau\" style=\"font-size: 1em; color: rgb(0, 94, 168); text-decoration: none; outline-style: none; outline-width: initial; outline-color: initial; \">St\u00e9phane Gateau<\/a> le film \u00e0 <i>sketches<\/i> <a href=\"http:\/\/www.allocine.fr\/film\/fichefilm_gen_cfilm=33330.html\" title=\"Para","version":37,"id":"24886","lastModified":"1301901491000","name":"Fr\u00e9d\u00e9ric Forestier","type":"Person","_key":"15345"} +{"label":"Clovis Cornillac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b71\/4d1b67d05e73d665a6000b71\/clovis-cornillac-profile.jpg","version":67,"id":"24891","lastModified":"1301901167000","name":"Clovis Cornillac","type":"Person","_key":"15346"} +{"label":"Franck Dubosc","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54f\/4bfaac92017a3c703600054f\/franck-dubosc-profile.jpg","version":52,"id":"24893","lastModified":"1301901171000","name":"Franck Dubosc","type":"Person","_key":"15347"} +{"label":"Jos\u00e9 Garcia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b8\/4d1ba1b15e73d6084200c0b8\/jos-garcia-profile.jpg","version":62,"id":"24895","lastModified":"1301901175000","name":"Jos\u00e9 Garcia","type":"Person","_key":"15348"} +{"label":"St\u00e9phane Rousseau","version":28,"id":"24896","lastModified":"1301901594000","name":"St\u00e9phane Rousseau","type":"Person","_key":"15349"} +{"label":"M\u00f3nica Cruz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f7\/4cf1871a7b9aa13ef20007f7\/monica-cruz-profile.jpg","version":29,"id":"24899","lastModified":"1301901515000","name":"M\u00f3nica Cruz","type":"Person","_key":"15350"} +{"label":"Beno\u00eet Poelvoorde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a1\/4c4ffc377b9aa136ce0000a1\/benoit-poelvoorde-profile.jpg","biography":"Natif de Namur, fils cadet d'une \u00e9pici\u00e8re et d'un routier (d\u00e9c\u00e9d\u00e9 alors qu'il \u00e9tait jeune) il fait ses \u00e9tudes chez les J\u00e9suites \u00e0 l'internat de Godinne puis, \u00e0 17 ans, quitte le domicile familial pour suivre des cours d'arts appliqu\u00e9s \u00e0 l'ICT F\u00e9licien Rops \u00e0 Namur o\u00f9 il rencontre R\u00e9my Belvaux. Il se passionne pour le th\u00e9\u00e2tre et se fait remarquer gr\u00e2ce \u00e0 ses interpr\u00e9tations atypiques. Destin\u00e9 \u00e0 une carri\u00e8re de dessinateur, il pratique \u00e9galement une seconde activit\u00e9 : la photographie. Durant ses \u00e9","version":98,"birthday":"-166496400000","id":"47820","birthplace":"Namur, Belgique","lastModified":"1301901145000","name":"Beno\u00eet Poelvoorde","type":"Person","_key":"15351"} +{"label":"Vanessa Hessler","version":26,"id":"47821","lastModified":"1301901753000","name":"Vanessa Hessler","type":"Person","_key":"15352"} +{"label":"Michael Herbig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b7\/4cf223ec5e73d61e3b0007b7\/michael-herbig-profile.jpg","version":68,"id":"18072","lastModified":"1302036944000","name":"Michael Herbig","type":"Person","_key":"15353"} +{"label":"Bouli Lanners","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a6\/4d1352c75e73d6083e0014a6\/bouli-lanners-profile.jpg","version":58,"id":"47822","lastModified":"1301901405000","name":"Bouli Lanners","type":"Person","_key":"15354"} +{"label":"Adriana Karembeu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6e\/4d1b9df55e73d6083400bf6e\/adriana-karembeu-profile.jpg","version":27,"id":"47824","lastModified":"1301901671000","name":"Adriana Karembeu","type":"Person","_key":"15355"} +{"label":"J\u00e9r\u00f4me Le Banner","version":48,"id":"47825","lastModified":"1301901411000","name":"J\u00e9r\u00f4me Le Banner","type":"Person","_key":"15356"} +{"label":"Alexandre Astier","version":29,"id":"47826","lastModified":"1301901603000","name":"Alexandre Astier","type":"Person","_key":"15357"} +{"label":"Luca Bizzarri","version":25,"id":"47827","lastModified":"1301901982000","name":"Luca Bizzarri","type":"Person","_key":"15358"} +{"label":"Paolo Kessisoglu","version":25,"id":"47828","lastModified":"1301902023000","name":"Paolo Kessisoglu","type":"Person","_key":"15359"} +{"label":"Elie Semoun","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58e\/4d1debe27b9aa1736b00058e\/elie-semoun-profile.jpg","biography":"<meta charset=\"utf-8\"><b><font color=\"#333333\" face=\"Arial, Helvetica, sans-serif\"><span style=\"font-size: 14px; line-height: 21px;\">\u00c9lie Semoun, de son vrai nom \u00c9lie Semhoun, n\u00e9 le 16 octobre 1963 \u00e0 Antony. Dans la s\u00e9rie des noms associ\u00e9s, apr\u00e8s Pierre Palmade et Michelle Laroque ou encore Eric etRamzy, je demande Elie et Dieudonn\u00e9. Le juif et le black. Un tandem nerveux, un humour souvent mordant voir noir (madame piche...).Mais toutes les bonnes choses ont une fin. Le duo se s\u00e9pare apr\u00e8s avoi","version":56,"id":"47829","lastModified":"1301901300000","name":"Elie Semoun","type":"Person","_key":"15360"} +{"label":"Sim","version":26,"id":"35957","lastModified":"1301901576000","name":"Sim","type":"Person","_key":"15361"} +{"label":"Saga Ast\u00e9rix et Ob\u00e9lix","description":"No overview found.","id":"2396","version":66,"lastModified":"1301904907000","title":"Saga Ast\u00e9rix et Ob\u00e9lix","language":"en","type":"Movie","_key":"15362"} +{"label":"Fallout","description":"No overview found.","id":"2397","runtime":90,"imdbId":"tt0150500","version":79,"lastModified":"1301904695000","studio":"Royal Oaks Entertainment","genre":"Action","title":"Fallout","releaseDate":883612800000,"language":"en","type":"Movie","_key":"15363"} +{"label":"Rodney McDonald","version":24,"id":"24508","lastModified":"1301901514000","name":"Rodney McDonald","type":"Person","_key":"15364"} +{"label":"Daniel Baldwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4c4e52517b9aa1326f000048\/daniel-baldwin-profile.jpg","version":49,"id":"24516","lastModified":"1301901455000","name":"Daniel Baldwin","type":"Person","_key":"15365"} +{"label":"Frank Zagarino","version":23,"id":"24517","lastModified":"1301901651000","name":"Frank Zagarino","type":"Person","_key":"15366"} +{"label":"Teri Ann Linn","version":17,"id":"24518","lastModified":"1301901982000","name":"Teri Ann Linn","type":"Person","_key":"15367"} +{"label":"Scott Valentine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/765\/4d249f087b9aa13f74000765\/scott-valentine-profile.jpg","version":33,"birthday":"-365475600000","id":"24519","birthplace":"Saratoga Springs, New York, USA","lastModified":"1301901222000","name":"Scott Valentine","type":"Person","_key":"15368"} +{"label":"John Reilly","version":20,"id":"24520","lastModified":"1301902122000","name":"John Reilly","type":"Person","_key":"15369"} +{"label":"David Leisure","version":25,"id":"24521","lastModified":"1301901777000","name":"David Leisure","type":"Person","_key":"15370"} +{"label":"Michael Holden","version":19,"id":"24522","lastModified":"1301902122000","name":"Michael Holden","type":"Person","_key":"15371"} +{"label":"Michael Khmurov","version":19,"id":"24523","lastModified":"1301902122000","name":"Michael Khmurov","type":"Person","_key":"15372"} +{"label":"Joseph Ashton","version":21,"id":"24525","lastModified":"1301902122000","name":"Joseph Ashton","type":"Person","_key":"15373"} +{"label":"Les Anneaux de Bic\u00eatre","description":"No overview found.","id":"2398","runtime":98,"imdbId":"tt0175445","version":41,"lastModified":"1301903727000","genre":"Drama","title":"Les Anneaux de Bic\u00eatre","releaseDate":221270400000,"language":"en","type":"Movie","_key":"15374"} +{"label":"Bernard Dh\u00e9ran","version":32,"id":"24532","lastModified":"1301901405000","name":"Bernard Dh\u00e9ran","type":"Person","_key":"15375"} +{"label":"G\u00e9rard Buhr","version":34,"id":"27443","lastModified":"1301902162000","name":"G\u00e9rard Buhr","type":"Person","_key":"15376"} +{"label":"Louis Grospierre","version":21,"id":"24533","lastModified":"1301901796000","name":"Louis Grospierre","type":"Person","_key":"15377"} +{"label":"Hitchhiker: Windows","description":"No overview found.","id":"2399","runtime":30,"version":21,"lastModified":"1301906760000","genre":"Thriller","title":"Hitchhiker: Windows","releaseDate":631152000000,"language":"en","type":"Movie","_key":"15378"} +{"label":"David Marshall Grant","version":28,"id":"24535","lastModified":"1301901796000","name":"David Marshall Grant","type":"Person","_key":"15379"} +{"label":"Annabelle Mouloudji","version":16,"id":"24536","lastModified":"1301902191000","name":"Annabelle Mouloudji","type":"Person","_key":"15380"} +{"label":"Jean-Claude Bouillon","version":16,"id":"24537","lastModified":"1301902176000","name":"Jean-Claude Bouillon","type":"Person","_key":"15381"} +{"label":"Ren\u00e9 Manzor","version":24,"id":"24547","lastModified":"1301901662000","name":"Ren\u00e9 Manzor","type":"Person","_key":"15382"} +{"label":"Eug\u00e9nie Grandet","description":"No overview found.","id":"2400","runtime":83,"imdbId":"tt0173806","version":45,"lastModified":"1301905723000","studio":"Arte","genre":"Drama","title":"Eug\u00e9nie Grandet","releaseDate":757382400000,"language":"en","type":"Movie","_key":"15383"} +{"label":"Alexandra London","version":23,"id":"24539","lastModified":"1301901683000","name":"Alexandra London","type":"Person","_key":"15384"} +{"label":"Jean Carmet","version":43,"id":"24540","lastModified":"1301901288000","name":"Jean Carmet","type":"Person","_key":"15385"} +{"label":"Dominique Labourier","version":25,"id":"24541","lastModified":"1301901583000","name":"Dominique Labourier","type":"Person","_key":"15386"} +{"label":"Jean-Claude Adelin","version":20,"id":"24542","lastModified":"1301902032000","name":"Jean-Claude Adelin","type":"Person","_key":"15387"} +{"label":"Bernard Haller","version":22,"id":"24543","lastModified":"1301902032000","name":"Bernard Haller","type":"Person","_key":"15388"} +{"label":"Sacha Briquet","version":21,"id":"24544","lastModified":"1301902017000","name":"Sacha Briquet","type":"Person","_key":"15389"} +{"label":"Pascal Elso","version":20,"id":"24545","lastModified":"1301901826000","name":"Pascal Elso","type":"Person","_key":"15390"} +{"label":"Olivier Delor","version":20,"id":"24546","lastModified":"1301902011000","name":"Olivier Delor","type":"Person","_key":"15391"} +{"label":"Kita no misaki - Cap du nord","description":"No overview found.","id":"2401","runtime":113,"imdbId":"tt0173960","version":33,"lastModified":"1301907432000","studio":"Toho Company","genre":"Drama","title":"Kita no misaki - Cap du nord","releaseDate":197337600000,"language":"en","type":"Movie","_key":"15392"} +{"label":"Go Kato","version":27,"id":"24548","lastModified":"1301901856000","name":"Go Kato","type":"Person","_key":"15393"} +{"label":"Tomoko Ogawa","version":20,"id":"24553","lastModified":"1301901824000","name":"Tomoko Ogawa","type":"Person","_key":"15394"} +{"label":"Kinuyo Tanaka","version":39,"id":"24551","lastModified":"1301901473000","name":"Kinuyo Tanaka","type":"Person","_key":"15395"} +{"label":"Wataru Kobayashi","version":20,"id":"66614","lastModified":"1301902191000","name":"Wataru Kobayashi","type":"Person","_key":"15396"} +{"label":"Kei Kumai","version":26,"id":"24555","lastModified":"1301901500000","name":"Kei Kumai","type":"Person","_key":"15397"} +{"label":"Sc\u00e9narios sur la Drogue","description":"No overview found.","id":"2402","runtime":95,"imdbId":"tt0240886","version":53,"lastModified":"1301907445000","genre":"Drama","title":"Sc\u00e9narios sur la Drogue","releaseDate":951091200000,"language":"en","type":"Movie","_key":"15398"} +{"label":"Laurence C\u00f4te","version":25,"id":"24558","lastModified":"1301902193000","name":"Laurence C\u00f4te","type":"Person","_key":"15399"} +{"label":"Darry Cowl","version":33,"id":"24807","lastModified":"1301901683000","name":"Darry Cowl","type":"Person","_key":"15400"} +{"label":"Sophie Hardy","version":24,"id":"25341","lastModified":"1301901681000","name":"Sophie Hardy","type":"Person","_key":"15401"} +{"label":"Aur\u00e9lien Wiik","version":30,"id":"25342","lastModified":"1301901524000","name":"Aur\u00e9lien Wiik","type":"Person","_key":"15402"} +{"label":"Tara R\u00f6mer","version":23,"id":"25343","lastModified":"1301902203000","name":"Tara R\u00f6mer","type":"Person","_key":"15403"} +{"label":"Laura Favali","version":22,"id":"25344","lastModified":"1301902191000","name":"Laura Favali","type":"Person","_key":"15404"} +{"label":"Lou Doillon","version":25,"id":"25345","lastModified":"1301902016000","name":"Lou Doillon","type":"Person","_key":"15405"} +{"label":"Eva Darlan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c11\/4d1b72165e73d66594000c11\/eva-darlan-profile.jpg","version":43,"id":"25346","lastModified":"1301901195000","name":"Eva Darlan","type":"Person","_key":"15406"} +{"label":"Lor\u00e0nt Deutsch","version":45,"id":"25347","lastModified":"1301901370000","name":"Lor\u00e0nt Deutsch","type":"Person","_key":"15407"} +{"label":"Mathieu Delarive","version":22,"id":"25348","lastModified":"1301901801000","name":"Mathieu Delarive","type":"Person","_key":"15408"} +{"label":"Santiago Otheguy","version":24,"id":"24559","lastModified":"1301901801000","name":"Santiago Otheguy","type":"Person","_key":"15409"} +{"label":"Marion Vernoux","version":20,"id":"24560","lastModified":"1301901833000","name":"Marion Vernoux","type":"Person","_key":"15410"} +{"label":"Franck Chiche","version":20,"id":"25339","lastModified":"1301901585000","name":"Franck Chiche","type":"Person","_key":"15411"} +{"label":"Emmanuelle Bercot","version":24,"id":"25340","lastModified":"1301901689000","name":"Emmanuelle Bercot","type":"Person","_key":"15412"} +{"label":"Joseph","description":"No overview found.","id":"2405","runtime":178,"imdbId":"tt0113483","version":185,"lastModified":"1301907359000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/618\/4d6afa265e73d60733000618\/joseph-mid.jpg","studio":"Beta Film","genre":"Drama","title":"Joseph","releaseDate":797990400000,"language":"en","type":"Movie","_key":"15413"} +{"label":"Paul Mercurio","version":23,"id":"24589","lastModified":"1301901956000","name":"Paul Mercurio","type":"Person","_key":"15414"} +{"label":"Dominique Sanda","version":50,"id":"24590","lastModified":"1301940154000","name":"Dominique Sanda","type":"Person","_key":"15415"} +{"label":"Valeria Cavalli","version":29,"id":"24591","lastModified":"1301901753000","name":"Valeria Cavalli","type":"Person","_key":"15416"} +{"label":"Kelly Miller","version":20,"id":"24592","lastModified":"1301902011000","name":"Kelly Miller","type":"Person","_key":"15417"} +{"label":"Gloria Carlin","version":23,"id":"24593","lastModified":"1301901285000","name":"Gloria Carlin","type":"Person","_key":"15418"} +{"label":"Michael Angelis","version":23,"id":"24594","lastModified":"1301901776000","name":"Michael Angelis","type":"Person","_key":"15419"} +{"label":"Vincenzo Nicoli","version":28,"id":"24595","lastModified":"1301901482000","name":"Vincenzo Nicoli","type":"Person","_key":"15420"} +{"label":"Colin Bruce","version":19,"id":"24596","lastModified":"1301902116000","name":"Colin Bruce","type":"Person","_key":"15421"} +{"label":"Michael Attwell","version":17,"id":"24598","lastModified":"1301901903000","name":"Michael Attwell","type":"Person","_key":"15422"} +{"label":"Davide Cincis","version":19,"id":"24600","lastModified":"1301901917000","name":"Davide Cincis","type":"Person","_key":"15423"} +{"label":"Rodolfo Corsato","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/138\/4c76cc665e73d60416000138\/rodolfo-corsato-profile.jpg","version":26,"id":"24603","lastModified":"1301901715000","name":"Rodolfo Corsato","type":"Person","_key":"15424"} +{"label":"Pete Lee-Wilson","version":27,"id":"24605","lastModified":"1301901434000","name":"Pete Lee-Wilson","type":"Person","_key":"15425"} +{"label":"Selva Rasalingam","version":17,"id":"24607","lastModified":"1301902012000","name":"Selva Rasalingam","type":"Person","_key":"15426"} +{"label":"Diego Wallraff","version":20,"id":"24609","lastModified":"1301902011000","name":"Diego Wallraff","type":"Person","_key":"15427"} +{"label":"Michael Zimmermann","version":19,"id":"24611","lastModified":"1301901917000","name":"Michael Zimmermann","type":"Person","_key":"15428"} +{"label":"Jamie Glover","version":21,"id":"24613","lastModified":"1301902116000","name":"Jamie Glover","type":"Person","_key":"15429"} +{"label":"Rinaldo Rocco","version":22,"id":"24616","lastModified":"1301901563000","name":"Rinaldo Rocco","type":"Person","_key":"15430"} +{"label":"Timur Yusef","version":22,"id":"24617","lastModified":"1301901926000","name":"Timur Yusef","type":"Person","_key":"15431"} +{"label":"Paloma Baeza","version":24,"id":"24618","lastModified":"1301901753000","name":"Paloma Baeza","type":"Person","_key":"15432"} +{"label":"Brett Warren","version":19,"id":"24620","lastModified":"1301901917000","name":"Brett Warren","type":"Person","_key":"15433"} +{"label":"Anna Mazzotti","version":19,"id":"24621","lastModified":"1301901917000","name":"Anna Mazzotti","type":"Person","_key":"15434"} +{"label":"Andrew Clover","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11b\/4ceec8fe5e73d654f800011b\/andrew-clover-profile.jpg","version":20,"id":"24622","lastModified":"1301901586000","name":"Andrew Clover","type":"Person","_key":"15435"} +{"label":"Eric P. Caspar","version":21,"id":"24623","lastModified":"1301901961000","name":"Eric P. Caspar","type":"Person","_key":"15436"} +{"label":"Anton Alexander","version":19,"id":"24624","lastModified":"1301901753000","name":"Anton Alexander","type":"Person","_key":"15437"} +{"label":"Milton Johns","version":19,"id":"24625","lastModified":"1301901917000","name":"Milton Johns","type":"Person","_key":"15438"} +{"label":"Josh Maguire","version":20,"id":"24626","lastModified":"1301902029000","name":"Josh Maguire","type":"Person","_key":"15439"} +{"label":"Oliver Cotton","version":32,"id":"24627","lastModified":"1301901832000","name":"Oliver Cotton","type":"Person","_key":"15440"} +{"label":"Anna Zapparoli","version":18,"id":"24628","lastModified":"1301901982000","name":"Anna Zapparoli","type":"Person","_key":"15441"} +{"label":"Una spirale di nebbia","description":"No overview found.","id":"2410","runtime":110,"imdbId":"tt0147530","version":43,"lastModified":"1301905719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a4\/4ca108697b9aa15e3c0004a4\/una-spirale-di-nebbia-mid.jpg","studio":"Intercontinental","genre":"Drama","title":"Una spirale di nebbia","releaseDate":220924800000,"language":"en","type":"Movie","_key":"15442"} +{"label":"Marc Porel","version":33,"id":"24597","lastModified":"1301901507000","name":"Marc Porel","type":"Person","_key":"15443"} +{"label":"Duilio Del Prete","version":25,"id":"24599","lastModified":"1301901669000","name":"Duilio Del Prete","type":"Person","_key":"15444"} +{"label":"Carole Chauvet","version":20,"id":"24601","lastModified":"1301902191000","name":"Carole Chauvet","type":"Person","_key":"15445"} +{"label":"Marina Berti","version":31,"id":"24602","lastModified":"1301901832000","name":"Marina Berti","type":"Person","_key":"15446"} +{"label":"Corrado Gaipa","version":22,"id":"24604","lastModified":"1301901825000","name":"Corrado Gaipa","type":"Person","_key":"15447"} +{"label":"Stefano Satta Flores","version":25,"id":"24606","lastModified":"1301902186000","name":"Stefano Satta Flores","type":"Person","_key":"15448"} +{"label":"Flavio Bucci","version":27,"id":"24608","lastModified":"1301902005000","name":"Flavio Bucci","type":"Person","_key":"15449"} +{"label":"Martine Brochard","version":21,"id":"24610","lastModified":"1301902039000","name":"Martine Brochard","type":"Person","_key":"15450"} +{"label":"Eleonora Giorgi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c8\/4bfa8a2e017a3c70310004c8\/eleonora-giorgi-profile.jpg","biography":"Eleonora Giorgi \u00e8 un'attrice e regista italiana.","version":26,"birthday":"-511146000000","id":"24612","birthplace":"Roma, Italy","lastModified":"1301902162000","name":"Eleonora Giorgi","type":"Person","_key":"15451"} +{"label":"Roberto Posse","version":20,"id":"24614","lastModified":"1301901824000","name":"Roberto Posse","type":"Person","_key":"15452"} +{"label":"Wendy D'Olive","version":20,"id":"24615","lastModified":"1301902011000","name":"Wendy D'Olive","type":"Person","_key":"15453"} +{"label":"Eriprando Visconti","version":24,"id":"24619","lastModified":"1301902186000","name":"Eriprando Visconti","type":"Person","_key":"15454"} +{"label":"Rendezvous in Paris","description":"No overview found.","id":"2411","runtime":104,"imdbId":"tt0176090","version":73,"lastModified":"1301906639000","studio":"Bavaria Film International","genre":"Drama","title":"Rendezvous in Paris","releaseDate":408412800000,"language":"en","type":"Movie","_key":"15455"} +{"label":"Harald Kuhlmann","version":21,"id":"24630","lastModified":"1301901911000","name":"Harald Kuhlmann","type":"Person","_key":"15456"} +{"label":"Barry Stokes","version":22,"id":"24631","lastModified":"1301901951000","name":"Barry Stokes","type":"Person","_key":"15457"} +{"label":"V\u00e9r\u00e9nice Rudolph","version":19,"id":"24632","lastModified":"1301902114000","name":"V\u00e9r\u00e9nice Rudolph","type":"Person","_key":"15458"} +{"label":"Gunther Malzacher","version":19,"id":"24633","lastModified":"1301902114000","name":"Gunther Malzacher","type":"Person","_key":"15459"} +{"label":"Nina Div\u00edskov\u00e1","version":20,"id":"27890","lastModified":"1301901911000","name":"Nina Div\u00edskov\u00e1","type":"Person","_key":"15460"} +{"label":"Marie Hor\u00e1kov\u00e1","version":19,"id":"27891","lastModified":"1301901911000","name":"Marie Hor\u00e1kov\u00e1","type":"Person","_key":"15461"} +{"label":"Barbara Morawiecz","version":23,"id":"27892","lastModified":"1301902154000","name":"Barbara Morawiecz","type":"Person","_key":"15462"} +{"label":"Frantisek Peterka","version":19,"id":"27893","lastModified":"1301901911000","name":"Frantisek Peterka","type":"Person","_key":"15463"} +{"label":"Ludvik Pozner","version":19,"id":"27894","lastModified":"1301901911000","name":"Ludvik Pozner","type":"Person","_key":"15464"} +{"label":"Chantal Bronner","version":19,"id":"27895","lastModified":"1301901911000","name":"Chantal Bronner","type":"Person","_key":"15465"} +{"label":"Olga Val\u00e9ry","version":19,"id":"27896","lastModified":"1301901911000","name":"Olga Val\u00e9ry","type":"Person","_key":"15466"} +{"label":"Helena Zaludova","version":19,"id":"27897","lastModified":"1301901911000","name":"Helena Zaludova","type":"Person","_key":"15467"} +{"label":"Monika Ricankova","version":19,"id":"27898","lastModified":"1301901911000","name":"Monika Ricankova","type":"Person","_key":"15468"} +{"label":"Gabi Kubach","version":20,"id":"24634","lastModified":"1301902114000","name":"Gabi Kubach","type":"Person","_key":"15469"} +{"label":"C\u00e9lim\u00e8ne et le cardinal","description":"No overview found.","id":"2412","runtime":107,"imdbId":"tt0932662","version":34,"lastModified":"1301907343000","genre":"Comedy","title":"C\u00e9lim\u00e8ne et le cardinal","releaseDate":1156204800000,"language":"en","type":"Movie","_key":"15470"} +{"label":"Patrick Pr\u00e9jean","version":24,"id":"24652","lastModified":"1301902024000","name":"Patrick Pr\u00e9jean","type":"Person","_key":"15471"} +{"label":"Jacques Rampal","version":19,"id":"24653","lastModified":"1301901774000","name":"Jacques Rampal","type":"Person","_key":"15472"} +{"label":"Jesus of Nazareth","description":"No overview found.","id":"2413","runtime":371,"imdbId":"tt0075520","version":176,"lastModified":"1301908360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4c4349b55e73d60f36000317\/jesus-of-nazareth-mid.jpg","studio":"ITC Productions","genre":"Drama","title":"Jesus of Nazareth","releaseDate":228268800000,"language":"en","type":"Movie","_key":"15473"} +{"label":"Franco Zeffirelli","version":72,"id":"24657","lastModified":"1301901322000","name":"Franco Zeffirelli","type":"Person","_key":"15474"} +{"label":"Robert Powell","version":29,"id":"24682","lastModified":"1301901460000","name":"Robert Powell","type":"Person","_key":"15475"} +{"label":"James Farentino","version":31,"id":"24685","lastModified":"1301948776000","name":"James Farentino","type":"Person","_key":"15476"} +{"label":"Olivia Hussey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61b\/4c62b0707b9aa172dc00061b\/olivia-hussey-profile.jpg","version":51,"id":"24695","lastModified":"1301901208000","name":"Olivia Hussey","type":"Person","_key":"15477"} +{"label":"Yorgo Voyagis","version":35,"id":"24696","lastModified":"1301901604000","name":"Yorgo Voyagis","type":"Person","_key":"15478"} +{"label":"Maria Carta","version":24,"id":"24697","lastModified":"1301902011000","name":"Maria Carta","type":"Person","_key":"15479"} +{"label":"Regina Bianchi","version":24,"id":"24698","lastModified":"1301902011000","name":"Regina Bianchi","type":"Person","_key":"15480"} +{"label":"Lee Montague","version":28,"id":"24699","lastModified":"1301902030000","name":"Lee Montague","type":"Person","_key":"15481"} +{"label":"Renato Rascel","version":26,"id":"24700","lastModified":"1301901851000","name":"Renato Rascel","type":"Person","_key":"15482"} +{"label":"Oliver Tobias","version":26,"id":"24701","lastModified":"1301901834000","name":"Oliver Tobias","type":"Person","_key":"15483"} +{"label":"Norman Bowler","version":25,"id":"24702","lastModified":"1301902025000","name":"Norman Bowler","type":"Person","_key":"15484"} +{"label":"John Phillips","version":25,"id":"24705","lastModified":"1301902022000","name":"John Phillips","type":"Person","_key":"15485"} +{"label":"Ken Jones","version":24,"id":"24706","lastModified":"1301902025000","name":"Ken Jones","type":"Person","_key":"15486"} +{"label":"Nancy Nevinson","version":25,"id":"24707","lastModified":"1301902033000","name":"Nancy Nevinson","type":"Person","_key":"15487"} +{"label":"Renato Terra","version":24,"id":"24708","lastModified":"1301902025000","name":"Renato Terra","type":"Person","_key":"15488"} +{"label":"Roy Holder","version":29,"id":"24709","lastModified":"1301901832000","name":"Roy Holder","type":"Person","_key":"15489"} +{"label":"Jonathan Adams","version":25,"id":"13477","lastModified":"1301901298000","name":"Jonathan Adams","type":"Person","_key":"15490"} +{"label":"Christopher Reich","version":24,"id":"24710","lastModified":"1301902011000","name":"Christopher Reich","type":"Person","_key":"15491"} +{"label":"Lorenzo Monet","version":24,"id":"24711","lastModified":"1301901697000","name":"Lorenzo Monet","type":"Person","_key":"15492"} +{"label":"Michael Cronin","version":24,"id":"24712","lastModified":"1301902033000","name":"Michael Cronin","type":"Person","_key":"15493"} +{"label":"Forbes Collins","version":24,"id":"24713","lastModified":"1301902033000","name":"Forbes Collins","type":"Person","_key":"15494"} +{"label":"Tony Vogel","version":25,"id":"24714","lastModified":"1301902033000","name":"Tony Vogel","type":"Person","_key":"15495"} +{"label":"Murray Salem","version":35,"id":"14709","lastModified":"1301901409000","name":"Murray Salem","type":"Person","_key":"15496"} +{"label":"Steve Gardner","version":25,"id":"24715","lastModified":"1301901830000","name":"Steve Gardner","type":"Person","_key":"15497"} +{"label":"John Duttine","version":24,"id":"24716","lastModified":"1301901981000","name":"John Duttine","type":"Person","_key":"15498"} +{"label":"Michael Haughey","version":35,"id":"24718","lastModified":"1301901358000","name":"Michael Haughey","type":"Person","_key":"15499"} +{"label":"Keith Skinner","version":26,"id":"24720","lastModified":"1301901981000","name":"Keith Skinner","type":"Person","_key":"15500"} +{"label":"Cyril Shaps","version":27,"id":"24722","lastModified":"1301901708000","name":"Cyril Shaps","type":"Person","_key":"15501"} +{"label":"Jonathan Muller","version":24,"id":"24724","lastModified":"1301902011000","name":"Jonathan Muller","type":"Person","_key":"15502"} +{"label":"John Tordoff","version":25,"id":"24726","lastModified":"1301901600000","name":"John Tordoff","type":"Person","_key":"15503"} +{"label":"Keith Washington","version":24,"id":"24728","lastModified":"1301902011000","name":"Keith Washington","type":"Person","_key":"15504"} +{"label":"Sergio Nicolai","version":24,"id":"24729","lastModified":"1301901981000","name":"Sergio Nicolai","type":"Person","_key":"15505"} +{"label":"Isabel Mestres","version":24,"id":"24730","lastModified":"1301902022000","name":"Isabel Mestres","type":"Person","_key":"15506"} +{"label":"Renato Montalbano","version":26,"id":"24731","lastModified":"1301901980000","name":"Renato Montalbano","type":"Person","_key":"15507"} +{"label":"Bruce Lidington","version":26,"id":"24732","lastModified":"1301901980000","name":"Bruce Lidington","type":"Person","_key":"15508"} +{"label":"Derek Godfrey","version":28,"id":"24733","lastModified":"1301901980000","name":"Derek Godfrey","type":"Person","_key":"15509"} +{"label":"Mimmo Craig","version":21,"id":"24734","lastModified":"1301902013000","name":"Mimmo Craig","type":"Person","_key":"15510"} +{"label":"John Eastham","version":24,"id":"24735","lastModified":"1301902011000","name":"John Eastham","type":"Person","_key":"15511"} +{"label":"Robert Davey","version":24,"id":"24736","lastModified":"1301902011000","name":"Robert Davey","type":"Person","_key":"15512"} +{"label":"Oliver Smith","version":29,"id":"24737","lastModified":"1301901980000","name":"Oliver Smith","type":"Person","_key":"15513"} +{"label":"George Camiller","version":24,"id":"24738","lastModified":"1301901824000","name":"George Camiller","type":"Person","_key":"15514"} +{"label":"Antonello Campodifiori","version":26,"id":"24739","lastModified":"1301902024000","name":"Antonello Campodifiori","type":"Person","_key":"15515"} +{"label":"Tim Pearce","version":24,"id":"24740","lastModified":"1301902024000","name":"Tim Pearce","type":"Person","_key":"15516"} +{"label":"Paul Curran","version":24,"id":"24741","lastModified":"1301901980000","name":"Paul Curran","type":"Person","_key":"15517"} +{"label":"Bruno Barnabe","version":26,"id":"24742","lastModified":"1301901980000","name":"Bruno Barnabe","type":"Person","_key":"15518"} +{"label":"Simon MacCorkindale","version":43,"id":"24743","lastModified":"1301901246000","name":"Simon MacCorkindale","type":"Person","_key":"15519"} +{"label":"Lionel Guyett","version":24,"id":"24744","lastModified":"1301902011000","name":"Lionel Guyett","type":"Person","_key":"15520"} +{"label":"Peter Harlowe","version":24,"id":"24745","lastModified":"1301901688000","name":"Peter Harlowe","type":"Person","_key":"15521"} +{"label":"Carl Forgione","version":24,"id":"24746","lastModified":"1301902011000","name":"Carl Forgione","type":"Person","_key":"15522"} +{"label":"Pino Colizzi","version":25,"id":"24747","lastModified":"1301901980000","name":"Pino Colizzi","type":"Person","_key":"15523"} +{"label":"Harold Bennett","version":25,"id":"24748","lastModified":"1301901980000","name":"Harold Bennett","type":"Person","_key":"15524"} +{"label":"Immad Cohen","version":24,"id":"24749","lastModified":"1301901682000","name":"Immad Cohen","type":"Person","_key":"15525"} +{"label":"Andrew Manson","version":24,"id":"24750","lastModified":"1301901980000","name":"Andrew Manson","type":"Person","_key":"15526"} +{"label":"Le malin plaisir","description":"No overview found.","id":"2414","runtime":105,"imdbId":"tt0174003","version":40,"lastModified":"1301904724000","studio":"Clodio Cinematografica","genre":"Crime","title":"Le malin plaisir","releaseDate":157766400000,"language":"en","type":"Movie","_key":"15527"} +{"label":"Mary Marquet","version":34,"id":"24686","lastModified":"1301901459000","name":"Mary Marquet","type":"Person","_key":"15528"} +{"label":"C\u00e9cile Vassort","version":30,"id":"24688","lastModified":"1301902162000","name":"C\u00e9cile Vassort","type":"Person","_key":"15529"} +{"label":"Nicoletta Machiavelli","version":26,"id":"24690","lastModified":"1301901796000","name":"Nicoletta Machiavelli","type":"Person","_key":"15530"} +{"label":"Eric Najsztat","version":21,"id":"25124","lastModified":"1301901812000","name":"Eric Najsztat","type":"Person","_key":"15531"} +{"label":"Nicole Jamet","version":22,"id":"24806","lastModified":"1301901973000","name":"Nicole Jamet","type":"Person","_key":"15532"} +{"label":"Arthur Amalric","version":20,"id":"34830","lastModified":"1301902011000","name":"Arthur Amalric","type":"Person","_key":"15533"} +{"label":"Ermanno Casanova","version":23,"id":"34831","lastModified":"1301901973000","name":"Ermanno Casanova","type":"Person","_key":"15534"} +{"label":"Yvonne Pellegrini","version":20,"id":"34832","lastModified":"1301902011000","name":"Yvonne Pellegrini","type":"Person","_key":"15535"} +{"label":"Bernard Toublanc-Michel","version":24,"id":"24692","lastModified":"1301901502000","name":"Bernard Toublanc-Michel","type":"Person","_key":"15536"} +{"label":"La Passion de Camille et Lucile Desmoulins","description":"No overview found.","id":"2415","runtime":100,"imdbId":"tt0176007","version":34,"lastModified":"1301908618000","genre":"Drama","title":"La Passion de Camille et Lucile Desmoulins","releaseDate":252460800000,"language":"en","type":"Movie","_key":"15537"} +{"label":"Gabriel Cattand","version":25,"id":"24752","lastModified":"1301901972000","name":"Gabriel Cattand","type":"Person","_key":"15538"} +{"label":"Fran\u00e7ois Patrice","version":20,"id":"24753","lastModified":"1301902021000","name":"Fran\u00e7ois Patrice","type":"Person","_key":"15539"} +{"label":"William Sabatier","version":20,"id":"24754","lastModified":"1301902191000","name":"William Sabatier","type":"Person","_key":"15540"} +{"label":"Jean-Paul Carr\u00e8re","version":21,"id":"24755","lastModified":"1301902162000","name":"Jean-Paul Carr\u00e8re","type":"Person","_key":"15541"} +{"label":"Amours sous la r\u00e9volution: Andr\u00e9 Ch\u00e9nier et la jeune captive","description":"No overview found.","id":"2416","runtime":100,"imdbId":"tt0358355","version":31,"lastModified":"1301906181000","genre":"History","title":"Amours sous la r\u00e9volution: Andr\u00e9 Ch\u00e9nier et la jeune captive","releaseDate":252460800000,"language":"en","type":"Movie","_key":"15542"} +{"label":"Nicolas Silberg","version":23,"id":"24758","lastModified":"1301901981000","name":"Nicolas Silberg","type":"Person","_key":"15543"} +{"label":"Jacques Toja","version":27,"id":"24759","lastModified":"1301901796000","name":"Jacques Toja","type":"Person","_key":"15544"} +{"label":"Une petite fille dans les tournesols","description":"No overview found.","id":"2417","runtime":95,"imdbId":"tt0174311","version":36,"lastModified":"1301905719000","genre":"Drama","title":"Une petite fille dans les tournesols","releaseDate":471052800000,"language":"en","type":"Movie","_key":"15545"} +{"label":"Bruno Pradal","version":20,"id":"24765","lastModified":"1301901672000","name":"Bruno Pradal","type":"Person","_key":"15546"} +{"label":"Bernard Rousselet","version":26,"id":"24766","lastModified":"1301901500000","name":"Bernard Rousselet","type":"Person","_key":"15547"} +{"label":"Isabelle Cagnat","version":20,"id":"24769","lastModified":"1301901973000","name":"Isabelle Cagnat","type":"Person","_key":"15548"} +{"label":"Eric Cavanhac","version":20,"id":"24770","lastModified":"1301901973000","name":"Eric Cavanhac","type":"Person","_key":"15549"} +{"label":"Monique M\u00e9linand","version":21,"id":"24771","lastModified":"1301901796000","name":"Monique M\u00e9linand","type":"Person","_key":"15550"} +{"label":"Maud Rayer","version":21,"id":"24772","lastModified":"1301901796000","name":"Maud Rayer","type":"Person","_key":"15551"} +{"label":"Bernard F\u00e9ri\u00e9","version":20,"id":"24773","lastModified":"1301901973000","name":"Bernard F\u00e9ri\u00e9","type":"Person","_key":"15552"} +{"label":"The Greatest Story Ever Told","description":"The Greatest Story Ever Told is a film by director George Stevens about the life of Jesus.","id":"2428","runtime":199,"imdbId":"tt0059245","version":171,"lastModified":"1301903420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb0\/4cf5ebf65e73d6299a000eb0\/the-greatest-story-ever-told-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Greatest Story Ever Told","releaseDate":-153878400000,"language":"en","type":"Movie","_key":"15553"} +{"label":"Michael Anderson Jr.","version":23,"id":"24808","lastModified":"1301902168000","name":"Michael Anderson Jr.","type":"Person","_key":"15554"} +{"label":"Ina Balin","version":25,"id":"24809","lastModified":"1301901972000","name":"Ina Balin","type":"Person","_key":"15555"} +{"label":"Pat Boone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6da\/4ca9f3db7b9aa17aca0006da\/pat-boone-profile.jpg","version":25,"id":"24810","lastModified":"1301901796000","name":"Pat Boone","type":"Person","_key":"15556"} +{"label":"Victor Buono","version":29,"id":"24811","lastModified":"1301901448000","name":"Victor Buono","type":"Person","_key":"15557"} +{"label":"Joanna Dunham","version":23,"id":"24812","lastModified":"1301901972000","name":"Joanna Dunham","type":"Person","_key":"15558"} +{"label":"David McCallum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dfc\/4bfeba95017a3c7033000dfc\/david-mccallum-profile.jpg","version":51,"id":"24813","lastModified":"1301901519000","name":"David McCallum","type":"Person","_key":"15559"} +{"label":"Dorothy McGuire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5bb\/4bfadde6017a3c70330005bb\/dorothy-mcguire-profile.jpg","version":38,"id":"24815","lastModified":"1301901972000","name":"Dorothy McGuire","type":"Person","_key":"15560"} +{"label":"Gary Raymond","version":29,"id":"24819","lastModified":"1301901972000","name":"Gary Raymond","type":"Person","_key":"15561"} +{"label":"Joseph Schildkraut","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/358\/4cb5eb8e7b9aa138d9000358\/joseph-schildkraut-profile.jpg","version":33,"id":"24820","lastModified":"1301983210000","name":"Joseph Schildkraut","type":"Person","_key":"15562"} +{"label":"John Abbott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc9\/4c0ceef1017a3c7e86000dc9\/john-abbott-profile.jpg","version":43,"id":"24826","lastModified":"1301901517000","name":"John Abbott","type":"Person","_key":"15563"} +{"label":"Rodolfo Acosta","version":25,"id":"24827","lastModified":"1301901585000","name":"Rodolfo Acosta","type":"Person","_key":"15564"} +{"label":"Trop c'est trop","description":"No overview found.","id":"2429","runtime":90,"imdbId":"tt0072323","version":71,"lastModified":"1301906092000","studio":"S.N. Prodis","genre":"Drama","title":"Trop c'est trop","releaseDate":171158400000,"language":"en","type":"Movie","_key":"15565"} +{"label":"Didier Kaminka","version":34,"id":"24796","lastModified":"1301901658000","name":"Didier Kaminka","type":"Person","_key":"15566"} +{"label":"Georges Beller","version":25,"id":"24798","lastModified":"1301902204000","name":"Georges Beller","type":"Person","_key":"15567"} +{"label":"Philippe Ogouz","version":24,"id":"24799","lastModified":"1301901606000","name":"Philippe Ogouz","type":"Person","_key":"15568"} +{"label":"Chantal Goya","version":25,"id":"24801","lastModified":"1301901403000","name":"Chantal Goya","type":"Person","_key":"15569"} +{"label":"G\u00e9rard Filipelli","version":19,"id":"24828","lastModified":"1301902114000","name":"G\u00e9rard Filipelli","type":"Person","_key":"15570"} +{"label":"Jean-Guy Fechner","version":20,"id":"24829","lastModified":"1301902048000","name":"Jean-Guy Fechner","type":"Person","_key":"15571"} +{"label":"Jean Sarrus","version":20,"id":"24830","lastModified":"1301902048000","name":"Jean Sarrus","type":"Person","_key":"15572"} +{"label":"G\u00e9rard Rinaldi","version":20,"id":"24831","lastModified":"1301902114000","name":"G\u00e9rard Rinaldi","type":"Person","_key":"15573"} +{"label":"Daniel Pr\u00e9vost","version":40,"id":"24832","lastModified":"1301901316000","name":"Daniel Pr\u00e9vost","type":"Person","_key":"15574"} +{"label":"Le choix","description":"No overview found.","id":"2430","runtime":90,"imdbId":"tt0181384","version":59,"lastModified":"1301908618000","studio":"Belga Films","genre":"Drama","title":"Le choix","releaseDate":157766400000,"language":"en","type":"Movie","_key":"15575"} +{"label":"Georges Lambert","version":20,"id":"24858","lastModified":"1301901973000","name":"Georges Lambert","type":"Person","_key":"15576"} +{"label":"Jacques Faber","version":21,"id":"24859","lastModified":"1301901697000","name":"Jacques Faber","type":"Person","_key":"15577"} +{"label":"Maurice Sevenant","version":20,"id":"24856","lastModified":"1301901796000","name":"Maurice Sevenant","type":"Person","_key":"15578"} +{"label":"Pierre Laroche","version":20,"id":"24857","lastModified":"1301902162000","name":"Pierre Laroche","type":"Person","_key":"15579"} +{"label":"Lise et Laura","description":"No overview found.","id":"2431","runtime":90,"imdbId":"tt0173986","version":37,"lastModified":"1301905009000","genre":"Drama","title":"Lise et Laura","releaseDate":385948800000,"language":"en","type":"Movie","_key":"15580"} +{"label":"Bernard Malaterre","version":20,"id":"24860","lastModified":"1301901585000","name":"Bernard Malaterre","type":"Person","_key":"15581"} +{"label":"Erik Colin","version":20,"id":"24861","lastModified":"1301902190000","name":"Erik Colin","type":"Person","_key":"15582"} +{"label":"Jeannette Granval","version":20,"id":"24862","lastModified":"1301902197000","name":"Jeannette Granval","type":"Person","_key":"15583"} +{"label":"Robert Angebaud","version":20,"id":"24863","lastModified":"1301902191000","name":"Robert Angebaud","type":"Person","_key":"15584"} +{"label":"Nicole Bermin","version":20,"id":"24864","lastModified":"1301902197000","name":"Nicole Bermin","type":"Person","_key":"15585"} +{"label":"S\u00e9bastien Keran","version":20,"id":"24865","lastModified":"1301902186000","name":"S\u00e9bastien Keran","type":"Person","_key":"15586"} +{"label":"Nicole Chanu","version":20,"id":"24866","lastModified":"1301902162000","name":"Nicole Chanu","type":"Person","_key":"15587"} +{"label":"Henri Helman","version":20,"id":"24867","lastModified":"1301902162000","name":"Henri Helman","type":"Person","_key":"15588"} +{"label":"The Young Girls of Rochefort","description":"Delphine and Solange are two sisters living in Rochefort. Delphine is a dancing teacher and Solange composes and teaches the piano. Maxence is a poet and a painter. He is doing his military service. Simon owns a music shop, he left Paris once month ago to come back where he fell in love 10 years ago. They are looking for love, looking for each other, without being aware that their ideal partner is very close.","id":"2433","runtime":124,"imdbId":"tt0062873","version":87,"lastModified":"1301904960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/922\/4d79743a7b9aa14cbc000922\/les-demoiselles-de-rochefort-mid.jpg","studio":"Madeleine Films","genre":"Drama","title":"The Young Girls of Rochefort","releaseDate":-88992000000,"language":"en","type":"Movie","_key":"15589"} +{"label":"Grover Dale","version":21,"id":"24881","lastModified":"1301902016000","name":"Grover Dale","type":"Person","_key":"15590"} +{"label":"Jacques Demy","version":43,"id":"24882","lastModified":"1301901572000","name":"Jacques Demy","type":"Person","_key":"15591"} +{"label":"Le grand secret","description":"No overview found.","id":"2434","runtime":360,"imdbId":"tt0175392","version":48,"lastModified":"1301905657000","studio":"WDR","genre":"Thriller","title":"Le grand secret","releaseDate":626918400000,"language":"en","type":"Movie","_key":"15592"} +{"label":"Louise Marleau","version":23,"id":"24902","lastModified":"1301901753000","name":"Louise Marleau","type":"Person","_key":"15593"} +{"label":"Claude Rich","version":53,"id":"24903","lastModified":"1302032162000","name":"Claude Rich","type":"Person","_key":"15594"} +{"label":"Peter Sattmann","version":22,"id":"24904","lastModified":"1301901565000","name":"Peter Sattmann","type":"Person","_key":"15595"} +{"label":"Paul Guers","version":22,"id":"24905","lastModified":"1301901447000","name":"Paul Guers","type":"Person","_key":"15596"} +{"label":"Leila Fr\u00e9chet","version":17,"id":"24906","lastModified":"1301902191000","name":"Leila Fr\u00e9chet","type":"Person","_key":"15597"} +{"label":"Richard M\u00fcnch","version":28,"id":"18964","lastModified":"1301901586000","name":"Richard M\u00fcnch","type":"Person","_key":"15598"} +{"label":"Alain Mottet","version":28,"id":"24907","lastModified":"1301902160000","name":"Alain Mottet","type":"Person","_key":"15599"} +{"label":"Juanjo Artero","version":17,"id":"36817","lastModified":"1301901824000","name":"Juanjo Artero","type":"Person","_key":"15600"} +{"label":"Jacques Tr\u00e9bouta","version":19,"id":"24908","lastModified":"1301901753000","name":"Jacques Tr\u00e9bouta","type":"Person","_key":"15601"} +{"label":"S\u00f3lo m\u00eda","description":"No overview found.","id":"2435","runtime":100,"imdbId":"tt0303120","version":50,"lastModified":"1301907444000","studio":"TVE","genre":"Drama","title":"S\u00f3lo m\u00eda","releaseDate":1004486400000,"language":"en","type":"Movie","_key":"15602"} +{"label":"Javier Balaguer","version":20,"id":"24915","lastModified":"1301901709000","name":"Javier Balaguer","type":"Person","_key":"15603"} +{"label":"Elvira M\u00ednguez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c3\/4cf1b20a5e73d61e3b0001c3\/elvira-minguez-profile.jpg","version":22,"id":"24918","lastModified":"1301901424000","name":"Elvira M\u00ednguez","type":"Person","_key":"15604"} +{"label":"Mar\u00eda Jos\u00e9 Alfonso","version":22,"id":"24920","lastModified":"1301901977000","name":"Mar\u00eda Jos\u00e9 Alfonso","type":"Person","_key":"15605"} +{"label":"Beatriz Bergam\u00edn","version":20,"id":"24921","lastModified":"1301901977000","name":"Beatriz Bergam\u00edn","type":"Person","_key":"15606"} +{"label":"Asunci\u00f3n Balaguer","version":21,"id":"24922","lastModified":"1301901977000","name":"Asunci\u00f3n Balaguer","type":"Person","_key":"15607"} +{"label":"Gin\u00e9s Garc\u00eda Mill\u00e1n","version":20,"id":"24923","lastModified":"1301901977000","name":"Gin\u00e9s Garc\u00eda Mill\u00e1n","type":"Person","_key":"15608"} +{"label":"Luis Hostalot","version":22,"id":"24924","lastModified":"1301901984000","name":"Luis Hostalot","type":"Person","_key":"15609"} +{"label":"Borja Elgea","version":20,"id":"24925","lastModified":"1301901976000","name":"Borja Elgea","type":"Person","_key":"15610"} +{"label":"Mario Mart\u00edn","version":23,"id":"24926","lastModified":"1301901976000","name":"Mario Mart\u00edn","type":"Person","_key":"15611"} +{"label":"Myriam De Maeztu","version":21,"id":"24927","lastModified":"1301901976000","name":"Myriam De Maeztu","type":"Person","_key":"15612"} +{"label":"Arantxa de Juan","version":20,"id":"24928","lastModified":"1301901976000","name":"Arantxa de Juan","type":"Person","_key":"15613"} +{"label":"Double Dragon","description":"Set 15 years in the future in post-earthquake California, where San Diego and Los Angeles are merged into one city, two teenage brothers have half of a powerful ancient Chinese talisman. An evil gang leader named Bo Abobo has the other half, and determines to get the brothers' half and have a complete medallion so he can gain absolute power of the magical Double Dragon medallion.","id":"2436","runtime":89,"imdbId":"tt0106761","version":296,"lastModified":"1301904255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/933\/4bc916aa017a3c57fe008933\/double-dragon-mid.jpg","studio":"Universal Film","genre":"Action","title":"Double Dragon","releaseDate":783907200000,"language":"en","type":"Movie","_key":"15614"} +{"label":"James Yukich","version":20,"id":"24946","lastModified":"1301901681000","name":"James Yukich","type":"Person","_key":"15615"} +{"label":"Scott Wolf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49f\/4d10c6cd5e73d6083400049f\/scott-wolf-profile.jpg","version":29,"id":"24965","lastModified":"1301901524000","name":"Scott Wolf","type":"Person","_key":"15616"} +{"label":"Kristina Wagner","version":21,"id":"24966","lastModified":"1301901570000","name":"Kristina Wagner","type":"Person","_key":"15617"} +{"label":"Alyssa Milano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4bcc1192017a3c0f2f00005a\/alyssa-milano-profile.jpg","version":91,"id":"24967","lastModified":"1301901074000","name":"Alyssa Milano","type":"Person","_key":"15618"} +{"label":"Nils Allen Stewart","version":23,"id":"24968","lastModified":"1301901972000","name":"Nils Allen Stewart","type":"Person","_key":"15619"} +{"label":"John Mallory Asher","version":20,"id":"24970","lastModified":"1301901984000","name":"John Mallory Asher","type":"Person","_key":"15620"} +{"label":"Le bahut va craquer","description":"No overview found.","id":"2437","runtime":90,"imdbId":"tt0155522","version":45,"lastModified":"1301904991000","studio":"Paris Procin\u00e9","genre":"Comedy","title":"Le bahut va craquer","releaseDate":357955200000,"language":"en","type":"Movie","_key":"15621"} +{"label":"Fanny Bastien","version":21,"id":"24930","lastModified":"1301902008000","name":"Fanny Bastien","type":"Person","_key":"15622"} +{"label":"Dany Carrel","version":24,"id":"24931","lastModified":"1301901776000","name":"Dany Carrel","type":"Person","_key":"15623"} +{"label":"Robert Castel","version":21,"id":"24932","lastModified":"1301902139000","name":"Robert Castel","type":"Person","_key":"15624"} +{"label":"Jacques Monod","version":23,"id":"24933","lastModified":"1301901791000","name":"Jacques Monod","type":"Person","_key":"15625"} +{"label":"Charlotte Walior","version":20,"id":"24934","lastModified":"1301902190000","name":"Charlotte Walior","type":"Person","_key":"15626"} +{"label":"Eric Civanyan","version":20,"id":"24935","lastModified":"1301901805000","name":"Eric Civanyan","type":"Person","_key":"15627"} +{"label":"Michel Nerval","version":19,"id":"24936","lastModified":"1301902139000","name":"Michel Nerval","type":"Person","_key":"15628"} +{"label":"The Country Girl","description":"The 1954 musical film based on the play by the same name. Actress Grace Kelly won an Academy Award for Best Actress. The film tells the story of an ex-theater actor who is given one more chance to star in a musical yet his alcoholism may prevent it from happening.","id":"2438","runtime":104,"imdbId":"tt0046874","version":107,"lastModified":"1302053049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4d2679cb7b9aa134d3000ff9\/the-country-girl-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Country Girl","releaseDate":-504921600000,"language":"en","type":"Movie","_key":"15629"} +{"label":"Bing Crosby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/038\/4c40af517b9aa14594000038\/bing-crosby-profile.jpg","version":75,"id":"24937","lastModified":"1302056492000","name":"Bing Crosby","type":"Person","_key":"15630"} +{"label":"Anthony Ross","version":27,"id":"24938","lastModified":"1301902163000","name":"Anthony Ross","type":"Person","_key":"15631"} +{"label":"Jacqueline Fontaine","version":20,"id":"26027","lastModified":"1301902011000","name":"Jacqueline Fontaine","type":"Person","_key":"15632"} +{"label":"Eddie Ryder","version":22,"id":"26028","lastModified":"1301902013000","name":"Eddie Ryder","type":"Person","_key":"15633"} +{"label":"Robert Kent","version":29,"id":"26029","lastModified":"1301901847000","name":"Robert Kent","type":"Person","_key":"15634"} +{"label":"John W. Reynolds","version":20,"id":"26030","lastModified":"1301902011000","name":"John W. Reynolds","type":"Person","_key":"15635"} +{"label":"George Seaton","version":49,"id":"24939","lastModified":"1301901666000","name":"George Seaton","type":"Person","_key":"15636"} +{"label":"J.S.A. Joint Security Area","description":"In the DMZ separating North and South Korea, two North Korean soldiers have been killed, supposedly by one South Korean soldier. But the 11 bullets found in the bodies, together with the 5 remaining bullets in the assassin's magazine clip, amount to 16 bullets for a gun that should normally hold 15 bullets. The investigating Swiss\/Swedish team from the neutral countries overseeing the DMZ suspects that another, unknown party was involved - all of which points to some sort of cover up. The truth ","id":"2440","runtime":110,"imdbId":"tt0260991","version":109,"lastModified":"1301906098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/950\/4bc916ac017a3c57fe008950\/gongdong-gyeongbi-guyeok-jsa-mid.jpg","studio":"CJ Entertainment","genre":"Drama","title":"J.S.A. Joint Security Area","releaseDate":968457600000,"language":"en","type":"Movie","_key":"15637"} +{"label":"Yeong-ae Lee","version":21,"id":"25001","lastModified":"1302032927000","name":"Yeong-ae Lee","type":"Person","_key":"15638"} +{"label":"Byung-hun Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cb8\/4d27c57b7b9aa134e0001cb8\/byung-hun-lee-profile.jpg","version":51,"birthday":"16585200000","id":"25002","birthplace":"Seoul, South Korea","lastModified":"1301904085000","name":"Byung-hun Lee","type":"Person","_key":"15639"} +{"label":"Tae-woo Kim","version":20,"id":"25003","lastModified":"1301901982000","name":"Tae-woo Kim","type":"Person","_key":"15640"} +{"label":"Ha-kyun Shin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/434\/4d2546a25e73d626c4000434\/ha-kyun-shin-profile.jpg","version":38,"id":"25004","lastModified":"1301901276000","name":"Ha-kyun Shin","type":"Person","_key":"15641"} +{"label":"Christoph Hofrichter","version":23,"id":"25005","lastModified":"1301901757000","name":"Christoph Hofrichter","type":"Person","_key":"15642"} +{"label":"Herbert Ulrich","version":21,"id":"25006","lastModified":"1301902011000","name":"Herbert Ulrich","type":"Person","_key":"15643"} +{"label":"Vacas","description":"No overview found.","id":"2441","runtime":96,"imdbId":"tt0103186","version":79,"lastModified":"1301905287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/955\/4bc916ac017a3c57fe008955\/vacas-mid.jpg","studio":"Sociedad General de Television S.A.","genre":"Drama","title":"Vacas","releaseDate":699062400000,"language":"en","type":"Movie","_key":"15644"} +{"label":"Emma Su\u00e1rez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c51\/4cfb554b7b9aa15149002c51\/emma-suarez-profile.jpg","version":23,"id":"24974","lastModified":"1301901237000","name":"Emma Su\u00e1rez","type":"Person","_key":"15645"} +{"label":"Carmelo G\u00f3mez","version":29,"id":"24975","lastModified":"1301901713000","name":"Carmelo G\u00f3mez","type":"Person","_key":"15646"} +{"label":"Ana Torrent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c6d\/4cfb56e87b9aa15149002c6d\/ana-torrent-profile.jpg","version":40,"id":"24976","lastModified":"1301901318000","name":"Ana Torrent","type":"Person","_key":"15647"} +{"label":"Karra Elejalde","version":30,"id":"24977","lastModified":"1301901272000","name":"Karra Elejalde","type":"Person","_key":"15648"} +{"label":"Klara Badiola","version":19,"id":"24978","lastModified":"1301902114000","name":"Klara Badiola","type":"Person","_key":"15649"} +{"label":"Txema Blasco","version":23,"id":"24979","lastModified":"1301902164000","name":"Txema Blasco","type":"Person","_key":"15650"} +{"label":"Kandido Uranga","version":19,"id":"24980","lastModified":"1301902114000","name":"Kandido Uranga","type":"Person","_key":"15651"} +{"label":"Miguel \u00c1ngel Garc\u00eda","version":19,"id":"24981","lastModified":"1301902114000","name":"Miguel \u00c1ngel Garc\u00eda","type":"Person","_key":"15652"} +{"label":"Ane S\u00e1nchez","version":22,"id":"24982","lastModified":"1301901976000","name":"Ane S\u00e1nchez","type":"Person","_key":"15653"} +{"label":"Magdalena Mikolajczyk","version":19,"id":"24983","lastModified":"1301902114000","name":"Magdalena Mikolajczyk","type":"Person","_key":"15654"} +{"label":"Enara Azkue","version":19,"id":"24984","lastModified":"1301902114000","name":"Enara Azkue","type":"Person","_key":"15655"} +{"label":"Ortzi Balda","version":19,"id":"24985","lastModified":"1301902114000","name":"Ortzi Balda","type":"Person","_key":"15656"} +{"label":"Elisabeth Ruiz","version":19,"id":"24986","lastModified":"1301902114000","name":"Elisabeth Ruiz","type":"Person","_key":"15657"} +{"label":"Ram\u00f3n Barea","version":21,"id":"24987","lastModified":"1301901542000","name":"Ram\u00f3n Barea","type":"Person","_key":"15658"} +{"label":"The Final Cut","description":"No overview found.","id":"2442","runtime":96,"imdbId":"tt0113063","version":108,"lastModified":"1301904963000","studio":"Concorde Filmverleih","genre":"Action","title":"The Final Cut","releaseDate":788918400000,"language":"en","type":"Movie","_key":"15659"} +{"label":"Roger Christian","version":59,"id":"5058","lastModified":"1301901295000","name":"Roger Christian","type":"Person","_key":"15660"} +{"label":"Kelly Benson","version":19,"id":"25022","lastModified":"1301901911000","name":"Kelly Benson","type":"Person","_key":"15661"} +{"label":"Anne Ramsay","version":21,"id":"25023","lastModified":"1301901911000","name":"Anne Ramsay","type":"Person","_key":"15662"} +{"label":"Lloyd Berry","version":20,"id":"25024","lastModified":"1301902114000","name":"Lloyd Berry","type":"Person","_key":"15663"} +{"label":"The Spider Woman","description":"Sherlock Holmes investigates a series of so-called \"pajama suicides\". He knows the female villain behind them is as cunning as Moriarty and as venomous as a spider.Based on \"The Sign of Four\" and the short stories \"The Dying Detective\", \"The Final Problem\", \"The Speckled Band\" and \"The Adventure of the Devil's Foot\".","id":"2443","runtime":63,"imdbId":"tt0037303","version":111,"lastModified":"1301904326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac1\/4cce0c7e5e73d65022000ac1\/the-spider-woman-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"The Spider Woman","releaseDate":-818812800000,"language":"en","type":"Movie","_key":"15664"} +{"label":"Roy William Neill","version":53,"id":"25165","lastModified":"1301901670000","name":"Roy William Neill","type":"Person","_key":"15665"} +{"label":"Basil Rathbone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4bd5edee017a3c6585000075\/basil-rathbone-profile.jpg","version":83,"id":"8727","lastModified":"1301996123000","name":"Basil Rathbone","type":"Person","_key":"15666"} +{"label":"Gale Sondergaard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d5\/4ccad08e7b9aa16b9b0004d5\/gale-sondergaard-profile.jpg","version":40,"id":"25173","lastModified":"1301901504000","name":"Gale Sondergaard","type":"Person","_key":"15667"} +{"label":"Vernon Downing","version":19,"id":"25174","lastModified":"1301902114000","name":"Vernon Downing","type":"Person","_key":"15668"} +{"label":"Dennis Hoey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a64\/4d027ce67b9aa11bc4000a64\/dennis-hoey-profile.jpg","version":33,"id":"25175","lastModified":"1301901442000","name":"Dennis Hoey","type":"Person","_key":"15669"} +{"label":"Arthur Hohl","version":38,"id":"25176","lastModified":"1301901808000","name":"Arthur Hohl","type":"Person","_key":"15670"} +{"label":"Mary Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cde\/4be72884017a3c35b7000cde\/mary-gordon-profile.jpg","version":41,"id":"2934","lastModified":"1301901359000","name":"Mary Gordon","type":"Person","_key":"15671"} +{"label":"Teddy Infuhr","version":23,"id":"25177","lastModified":"1301901850000","name":"Teddy Infuhr","type":"Person","_key":"15672"} +{"label":"La Ardilla roja","description":"No overview found.","id":"2444","runtime":114,"imdbId":"tt0106305","version":124,"lastModified":"1301903603000","studio":"Sociedad General de Television S.A.","genre":"Drama","title":"La Ardilla roja","releaseDate":735350400000,"language":"en","type":"Movie","_key":"15673"} +{"label":"Mar\u00eda Barranco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a8e\/4cfb55b57b9aa15c97001a8e\/maria-barranco-profile.jpg","version":32,"id":"25025","lastModified":"1301901529000","name":"Mar\u00eda Barranco","type":"Person","_key":"15674"} +{"label":"Cristina Marcos","version":22,"id":"25026","lastModified":"1301902164000","name":"Cristina Marcos","type":"Person","_key":"15675"} +{"label":"M\u00f3nica Molina","version":21,"id":"25027","lastModified":"1301901976000","name":"M\u00f3nica Molina","type":"Person","_key":"15676"} +{"label":"Ana Gracia","version":22,"id":"25028","lastModified":"1301901976000","name":"Ana Gracia","type":"Person","_key":"15677"} +{"label":"Susana Garc\u00eda D\u00edez","version":20,"id":"25029","lastModified":"1301902195000","name":"Susana Garc\u00eda D\u00edez","type":"Person","_key":"15678"} +{"label":"Eneko Irizar","version":20,"id":"25030","lastModified":"1301902185000","name":"Eneko Irizar","type":"Person","_key":"15679"} +{"label":"Sarai Noceda","version":20,"id":"25031","lastModified":"1301902164000","name":"Sarai Noceda","type":"Person","_key":"15680"} +{"label":"Maite Yerro","version":20,"id":"25032","lastModified":"1301902164000","name":"Maite Yerro","type":"Person","_key":"15681"} +{"label":"The Nativity Story","description":"Mary and Joseph make the hard journey to Bethlehem for a blessed event in this retelling of the Nativity story. This meticulously researched and visually lush adaptation of the biblical tale follows the pair on their arduous path to their arrival in a small village, where they find shelter in a quiet manger and Jesus is born.","id":"2447","runtime":101,"imdbId":"tt0762121","homepage":"http:\/\/www.thenativitystory.com\/","version":240,"lastModified":"1301904333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/328\/4d238a365e73d66b30004328\/the-nativity-story-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"The Nativity Story","releaseDate":1137024000000,"language":"en","type":"Movie","_key":"15682"} +{"label":"Catherine Hardwicke","version":60,"id":"19850","lastModified":"1301901241000","name":"Catherine Hardwicke","type":"Person","_key":"15683"} +{"label":"Oscar Isaac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c3959e85e73d671d300008f\/oscar-isaac-profile.jpg","version":42,"id":"25072","lastModified":"1301901131000","name":"Oscar Isaac","type":"Person","_key":"15684"} +{"label":"Stanley Townsend","version":36,"id":"25074","lastModified":"1301979595000","name":"Stanley Townsend","type":"Person","_key":"15685"} +{"label":"Stefan Kalipha","version":20,"id":"25079","lastModified":"1301902011000","name":"Stefan Kalipha","type":"Person","_key":"15686"} +{"label":"Alessandro Giuggioli","version":19,"id":"25080","lastModified":"1301901747000","name":"Alessandro Giuggioli","type":"Person","_key":"15687"} +{"label":"Farida Ouchani","version":19,"id":"25082","lastModified":"1301901747000","name":"Farida Ouchani","type":"Person","_key":"15688"} +{"label":"Sa\u00efd Amadis","version":22,"id":"25083","lastModified":"1301901669000","name":"Sa\u00efd Amadis","type":"Person","_key":"15689"} +{"label":"Maria Giovanna Donzelli","version":19,"id":"25084","lastModified":"1301901747000","name":"Maria Giovanna Donzelli","type":"Person","_key":"15690"} +{"label":"Francesca Piliero","version":19,"id":"25085","lastModified":"1301901911000","name":"Francesca Piliero","type":"Person","_key":"15691"} +{"label":"Serge Feuillard","version":19,"id":"25086","lastModified":"1301901747000","name":"Serge Feuillard","type":"Person","_key":"15692"} +{"label":"Kais Nashif","version":19,"id":"25087","lastModified":"1301901542000","name":"Kais Nashif","type":"Person","_key":"15693"} +{"label":"Andy Lucas","version":20,"id":"25088","lastModified":"1301901911000","name":"Andy Lucas","type":"Person","_key":"15694"} +{"label":"Tomer Sisley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd1\/4d56f0665e73d617ba00add1\/tomer-sisley-profile.jpg","version":28,"id":"25089","lastModified":"1301901346000","name":"Tomer Sisley","type":"Person","_key":"15695"} +{"label":"Jeffery Kissoon","version":19,"id":"25090","lastModified":"1301901624000","name":"Jeffery Kissoon","type":"Person","_key":"15696"} +{"label":"Lucia Zotti","version":19,"id":"25091","lastModified":"1301901911000","name":"Lucia Zotti","type":"Person","_key":"15697"} +{"label":"Monica Contini","version":19,"id":"25092","lastModified":"1301901911000","name":"Monica Contini","type":"Person","_key":"15698"} +{"label":"Paola Sotgiu","version":19,"id":"25093","lastModified":"1301901911000","name":"Paola Sotgiu","type":"Person","_key":"15699"} +{"label":"Gabrielle Scharnitzky","version":19,"id":"25094","lastModified":"1301901624000","name":"Gabrielle Scharnitzky","type":"Person","_key":"15700"} +{"label":"Stewart Scudamore","version":19,"id":"25095","lastModified":"1301901911000","name":"Stewart Scudamore","type":"Person","_key":"15701"} +{"label":"Chiara Di Pede","version":19,"id":"25096","lastModified":"1301901747000","name":"Chiara Di Pede","type":"Person","_key":"15702"} +{"label":"Luciana Paolicelli","version":17,"id":"25097","lastModified":"1301901805000","name":"Luciana Paolicelli","type":"Person","_key":"15703"} +{"label":"Damir Todorovic","version":19,"id":"25098","lastModified":"1301901747000","name":"Damir Todorovic","type":"Person","_key":"15704"} +{"label":"Matt Patresi","version":20,"id":"25099","lastModified":"1301901624000","name":"Matt Patresi","type":"Person","_key":"15705"} +{"label":"Ted Rusoff","version":22,"id":"25100","lastModified":"1301901964000","name":"Ted Rusoff","type":"Person","_key":"15706"} +{"label":"Andrea Bruschi","version":20,"id":"25102","lastModified":"1301901546000","name":"Andrea Bruschi","type":"Person","_key":"15707"} +{"label":"Jean-Claude Deret","version":19,"id":"25103","lastModified":"1301901824000","name":"Jean-Claude Deret","type":"Person","_key":"15708"} +{"label":"Angela Iurilli","version":19,"id":"25104","lastModified":"1301901624000","name":"Angela Iurilli","type":"Person","_key":"15709"} +{"label":"Francesco Martoccia","version":19,"id":"25105","lastModified":"1301901911000","name":"Francesco Martoccia","type":"Person","_key":"15710"} +{"label":"Alessandro Piscitelli","version":19,"id":"25107","lastModified":"1301901911000","name":"Alessandro Piscitelli","type":"Person","_key":"15711"} +{"label":"Maria Antonietta DiMonte","version":19,"id":"25109","lastModified":"1301901911000","name":"Maria Antonietta DiMonte","type":"Person","_key":"15712"} +{"label":"Emilio Adrisani","version":19,"id":"25110","lastModified":"1301901911000","name":"Emilio Adrisani","type":"Person","_key":"15713"} +{"label":"Emilia Fortunato","version":19,"id":"25112","lastModified":"1301901911000","name":"Emilia Fortunato","type":"Person","_key":"15714"} +{"label":"Shelby Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f3\/4c22187e7b9aa130a60002f3\/shelby-young-profile.jpg","version":21,"id":"25113","lastModified":"1301901104000","name":"Shelby Young","type":"Person","_key":"15715"} +{"label":"Sami Samir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ab\/4c395fff5e73d671d40000ab\/sami-samir-profile.jpg","version":26,"id":"124398","lastModified":"1301901669000","name":"Sami Samir","type":"Person","_key":"15716"} +{"label":"Le bonheur des autres","description":"No overview found.","id":"2448","runtime":90,"imdbId":"tt0312496","version":48,"lastModified":"1301906181000","studio":"France 3 Cin\u00e9ma","genre":"Comedy","title":"Le bonheur des autres","releaseDate":657244800000,"language":"en","type":"Movie","_key":"15717"} +{"label":"Roger Miremont","version":25,"id":"25045","lastModified":"1301901840000","name":"Roger Miremont","type":"Person","_key":"15718"} +{"label":"Nathalie Courval","version":22,"id":"25047","lastModified":"1301902015000","name":"Nathalie Courval","type":"Person","_key":"15719"} +{"label":"Yves Afonso","version":29,"id":"25048","lastModified":"1301901511000","name":"Yves Afonso","type":"Person","_key":"15720"} +{"label":"Annick Bonhomme","version":20,"id":"25049","lastModified":"1301902194000","name":"Annick Bonhomme","type":"Person","_key":"15721"} +{"label":"Marie Boitel","version":20,"id":"25050","lastModified":"1301901818000","name":"Marie Boitel","type":"Person","_key":"15722"} +{"label":"Philippe Capelle","version":20,"id":"25051","lastModified":"1301901824000","name":"Philippe Capelle","type":"Person","_key":"15723"} +{"label":"Thomas Chabrol","version":31,"id":"25052","lastModified":"1301901662000","name":"Thomas Chabrol","type":"Person","_key":"15724"} +{"label":"Ronan Chalmin","version":20,"id":"25053","lastModified":"1301902190000","name":"Ronan Chalmin","type":"Person","_key":"15725"} +{"label":"Fran\u00e7ois Dobrzynski","version":20,"id":"25055","lastModified":"1301901795000","name":"Fran\u00e7ois Dobrzynski","type":"Person","_key":"15726"} +{"label":"Josiane Duhamel","version":20,"id":"25056","lastModified":"1301901795000","name":"Josiane Duhamel","type":"Person","_key":"15727"} +{"label":"Serge Martel","version":20,"id":"25057","lastModified":"1301901824000","name":"Serge Martel","type":"Person","_key":"15728"} +{"label":"Charles L. Bitsch","version":19,"id":"25059","lastModified":"1301901795000","name":"Charles L. Bitsch","type":"Person","_key":"15729"} +{"label":"Port\u00e9 disparu","description":"No overview found.","id":"2449","runtime":90,"imdbId":"tt0193426","version":38,"lastModified":"1301905009000","genre":"Drama","title":"Port\u00e9 disparu","releaseDate":804988800000,"language":"en","type":"Movie","_key":"15730"} +{"label":"Georges Claisse","version":26,"id":"25062","lastModified":"1301901662000","name":"Georges Claisse","type":"Person","_key":"15731"} +{"label":"Jean Barney","version":29,"id":"25064","lastModified":"1301901500000","name":"Jean Barney","type":"Person","_key":"15732"} +{"label":"Nicolas Moreau","version":27,"id":"25065","lastModified":"1301901506000","name":"Nicolas Moreau","type":"Person","_key":"15733"} +{"label":"Fabienne P\u00e9rineau","version":20,"id":"25067","lastModified":"1301901824000","name":"Fabienne P\u00e9rineau","type":"Person","_key":"15734"} +{"label":"Jacques Richard","version":22,"id":"25069","lastModified":"1301901605000","name":"Jacques Richard","type":"Person","_key":"15735"} +{"label":"Mamie Rose","description":"No overview found.","id":"2452","runtime":90,"imdbId":"tt0174004","version":38,"lastModified":"1301417782000","genre":"Comedy","title":"Mamie Rose","releaseDate":193449600000,"language":"en","type":"Movie","_key":"15736"} +{"label":"Mireille Audibert","version":23,"id":"25125","lastModified":"1301902190000","name":"Mireille Audibert","type":"Person","_key":"15737"} +{"label":"Jeanne Herviale","version":23,"id":"25126","lastModified":"1301902162000","name":"Jeanne Herviale","type":"Person","_key":"15738"} +{"label":"Pierre Goutas","version":20,"id":"25127","lastModified":"1301902011000","name":"Pierre Goutas","type":"Person","_key":"15739"} +{"label":"Harley Davidson and the Marlboro Man","description":"It's the lawless future, and renegade biker Harley Davidson (Mickey Rourke) and his surly cowboy buddy, Marlboro (Don Johnson), learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.","id":"2453","runtime":94,"imdbId":"tt0102005","version":309,"lastModified":"1301902257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc916b1017a3c57fe00896b\/harley-davidson-and-the-marlboro-man-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Harley Davidson and the Marlboro Man","releaseDate":682905600000,"language":"en","type":"Movie","_key":"15740"} +{"label":"Don Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c53\/4cc30e0d7b9aa138d9001c53\/don-johnson-profile.jpg","version":54,"id":"25129","lastModified":"1301904095000","name":"Don Johnson","type":"Person","_key":"15741"} +{"label":"Chelsea Field","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4c3daed77b9aa13a3c0000b6\/chelsea-field-profile.jpg","version":35,"id":"27008","lastModified":"1302065074000","name":"Chelsea Field","type":"Person","_key":"15742"} +{"label":"Robert Ginty","version":23,"id":"27012","lastModified":"1301901802000","name":"Robert Ginty","type":"Person","_key":"15743"} +{"label":"The Chronicles of Narnia: Prince Caspian","description":"One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.","id":"2454","runtime":140,"imdbId":"tt0499448","trailer":"http:\/\/www.youtube.com\/watch?v=dSJqhmjYw-o","version":332,"lastModified":"1302043205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98e\/4bc916b7017a3c57fe00898e\/the-chronicles-of-narnia-prince-caspian-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"The Chronicles of Narnia: Prince Caspian","releaseDate":1210723200000,"language":"en","tagline":"Hope has a new face.","type":"Movie","_key":"15744"} +{"label":"Ben Barnes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e2\/4ce5b8b17b9aa168b00007e2\/ben-barnes-profile.jpg","version":67,"id":"25130","lastModified":"1301904069000","name":"Ben Barnes","type":"Person","_key":"15745"} +{"label":"Alicia Borrachero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db1\/4d264e9d7b9aa134cf000db1\/alicia-borrachero-profile.jpg","version":39,"id":"25132","lastModified":"1301901315000","name":"Alicia Borrachero","type":"Person","_key":"15746"} +{"label":"Vincent Grass","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e1e\/4d264f237b9aa134d3000e1e\/vincent-grass-profile.jpg","version":39,"id":"25133","lastModified":"1301901387000","name":"Vincent Grass","type":"Person","_key":"15747"} +{"label":"Shane Rangi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4ce5ba097b9aa179bc000125\/shane-rangi-profile.jpg","version":50,"id":"25134","lastModified":"1301901238000","name":"Shane Rangi","type":"Person","_key":"15748"} +{"label":"Cornell John","version":36,"id":"25135","lastModified":"1301901445000","name":"Cornell John","type":"Person","_key":"15749"} +{"label":"Ken Stott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35c\/4cf1cbe45e73d61e3a00035c\/ken-stott-profile.jpg","version":50,"id":"25136","lastModified":"1301901251000","name":"Ken Stott","type":"Person","_key":"15750"} +{"label":"Confidentially Yours","description":"Claude Massoulier is murdered while hunting at the same place as Julien Vercel (Jean-Louis Trintignant), an estate agent who knew him and whose fingerprints are found on Massoulier's car. As the police discover that Marie-Christine Vercel (Caroline Sihol), Julien's wife, was Massoulier's mistress, Julien is the prime suspect. But his secretary, Barbara Becker (Fanny Ardant), while not quite convinced he is innocent, defends him and leads her private investigations.","id":"2455","runtime":110,"imdbId":"tt0086551","version":72,"lastModified":"1301903695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4ce2877e5e73d60f7000053d\/vivement-dimanche-mid.jpg","studio":"Les Films du Carrosse","genre":"Crime","title":"Confidentially Yours","releaseDate":410227200000,"language":"en","type":"Movie","_key":"15751"} +{"label":"La Mandragore","description":"No overview found.","id":"2456","runtime":90,"imdbId":"tt0219164","version":40,"lastModified":"1301419721000","genre":"Comedy","title":"La Mandragore","releaseDate":90115200000,"language":"en","type":"Movie","_key":"15752"} +{"label":"Angelo Bardi","version":21,"id":"24943","lastModified":"1301901796000","name":"Angelo Bardi","type":"Person","_key":"15753"} +{"label":"Roger Pelletier","version":22,"id":"25149","lastModified":"1301902162000","name":"Roger Pelletier","type":"Person","_key":"15754"} +{"label":"Nathalie Nerval","version":22,"id":"25150","lastModified":"1301901796000","name":"Nathalie Nerval","type":"Person","_key":"15755"} +{"label":"Joseph Falcucci","version":21,"id":"25151","lastModified":"1301902164000","name":"Joseph Falcucci","type":"Person","_key":"15756"} +{"label":"Raymond Jourdan","version":21,"id":"25152","lastModified":"1301901972000","name":"Raymond Jourdan","type":"Person","_key":"15757"} +{"label":"Philippe Arnal","version":20,"id":"25153","lastModified":"1301902190000","name":"Philippe Arnal","type":"Person","_key":"15758"} +{"label":"Children of Paradise","description":"Filmed during the German occupation, this French milestone centers around the theatrical life of a beautiful courtesan and the four men who love her. Voted the \"Best French Film in History\" by the French Film Academy in 1990.","id":"2457","runtime":190,"imdbId":"tt0037674","version":111,"lastModified":"1301905107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4c9db2975e73d670490000db\/les-enfants-du-paradis-mid.jpg","studio":"Path\u00e9 Cin\u00e9ma","genre":"Drama","title":"Children of Paradise","releaseDate":-788918400000,"language":"en","type":"Movie","_key":"15759"} +{"label":"Arletty","version":34,"id":"25154","lastModified":"1301901531000","name":"Arletty","type":"Person","_key":"15760"} +{"label":"Jean-Louis Barrault","version":31,"id":"25155","lastModified":"1301901499000","name":"Jean-Louis Barrault","type":"Person","_key":"15761"} +{"label":"Mar\u00eda Casares","version":26,"id":"25156","lastModified":"1301901576000","name":"Mar\u00eda Casares","type":"Person","_key":"15762"} +{"label":"Marcel Herrand","version":32,"id":"25157","lastModified":"1301902192000","name":"Marcel Herrand","type":"Person","_key":"15763"} +{"label":"Louis Salou","version":25,"id":"25158","lastModified":"1301902171000","name":"Louis Salou","type":"Person","_key":"15764"} +{"label":"Pierre Renoir","version":26,"id":"25159","lastModified":"1301902172000","name":"Pierre Renoir","type":"Person","_key":"15765"} +{"label":"Jane Marken","version":30,"id":"25160","lastModified":"1301901965000","name":"Jane Marken","type":"Person","_key":"15766"} +{"label":"Marcel Carn\u00e9","version":43,"id":"25161","lastModified":"1301901501000","name":"Marcel Carn\u00e9","type":"Person","_key":"15767"} +{"label":"Un \u00e9l\u00e9phant \u00e7a trompe \u00e9norm\u00e9ment","description":"No overview found.","id":"2459","runtime":105,"imdbId":"tt0076852","version":58,"lastModified":"1301904841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/993\/4bc916b7017a3c57fe008993\/un-elephant-ca-trompe-enormement-mid.jpg","studio":"Les Productions de la Gu\u00e9ville","genre":"Comedy","title":"Un \u00e9l\u00e9phant \u00e7a trompe \u00e9norm\u00e9ment","releaseDate":212198400000,"language":"en","type":"Movie","_key":"15768"} +{"label":"Dani\u00e8le Delorme","version":30,"id":"25178","lastModified":"1301901354000","name":"Dani\u00e8le Delorme","type":"Person","_key":"15769"} +{"label":"Guy Bedos","version":23,"id":"25179","lastModified":"1301901459000","name":"Guy Bedos","type":"Person","_key":"15770"} +{"label":"Victor Lanoux","version":31,"id":"25180","lastModified":"1301901846000","name":"Victor Lanoux","type":"Person","_key":"15771"} +{"label":"Marthe Villalonga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0d\/4d1b72085e73d66594000c0d\/marthe-villalonga-profile.jpg","version":40,"id":"25181","lastModified":"1301901652000","name":"Marthe Villalonga","type":"Person","_key":"15772"} +{"label":"Yves Robert","version":64,"id":"25182","lastModified":"1302031940000","name":"Yves Robert","type":"Person","_key":"15773"} +{"label":"Tierra","description":"No overview found.","id":"2460","runtime":125,"imdbId":"tt0117909","version":134,"lastModified":"1301904808000","studio":"Lolafilms S.A.","genre":"Drama","title":"Tierra","releaseDate":832550400000,"language":"en","type":"Movie","_key":"15774"} +{"label":"Txarly Llorente","version":19,"id":"25232","lastModified":"1301901917000","name":"Txarly Llorente","type":"Person","_key":"15775"} +{"label":"Silke","version":19,"id":"25216","lastModified":"1301901506000","name":"Silke","type":"Person","_key":"15776"} +{"label":"Juan Jos\u00e9 Su\u00e1rez","version":19,"id":"25217","lastModified":"1301902116000","name":"Juan Jos\u00e9 Su\u00e1rez","type":"Person","_key":"15777"} +{"label":"Ricardo Amador","version":19,"id":"25218","lastModified":"1301902116000","name":"Ricardo Amador","type":"Person","_key":"15778"} +{"label":"C\u00e9sar Vea","version":19,"id":"25219","lastModified":"1301902115000","name":"C\u00e9sar Vea","type":"Person","_key":"15779"} +{"label":"Pepe Viyuela","version":23,"id":"25220","lastModified":"1301902137000","name":"Pepe Viyuela","type":"Person","_key":"15780"} +{"label":"Alicia Agut","version":19,"id":"25221","lastModified":"1301902115000","name":"Alicia Agut","type":"Person","_key":"15781"} +{"label":"Miguel Palenzuela","version":19,"id":"25222","lastModified":"1301902115000","name":"Miguel Palenzuela","type":"Person","_key":"15782"} +{"label":"Vicente Haro","version":19,"id":"25223","lastModified":"1301902115000","name":"Vicente Haro","type":"Person","_key":"15783"} +{"label":"Adelfina Serrano","version":19,"id":"25224","lastModified":"1301902115000","name":"Adelfina Serrano","type":"Person","_key":"15784"} +{"label":"Jos\u00e9 Amador","version":20,"id":"25225","lastModified":"1301902177000","name":"Jos\u00e9 Amador","type":"Person","_key":"15785"} +{"label":"Montse G. Romeu","version":24,"id":"25226","lastModified":"1301902190000","name":"Montse G. Romeu","type":"Person","_key":"15786"} +{"label":"Hibernatus","description":"The frozen body of Paul Fournier is discovered in Greenland where he had disappeared during a scientific expedition in 1905. Perfectly conserved he is brought back to life in the 1960s. His descendants take care of him: to spare him the cultural shock they behave so to make believe it's 1905 and they are his cousins, uncle...","id":"2462","runtime":82,"imdbId":"tt0064425","version":81,"lastModified":"1301903424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d0\/4d1100087b9aa114880004d0\/hibernatus-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Hibernatus","releaseDate":-9763200000,"language":"en","type":"Movie","_key":"15787"} +{"label":"Martine Kelly","version":28,"id":"25235","lastModified":"1301901839000","name":"Martine Kelly","type":"Person","_key":"15788"} +{"label":"Running Out of Time","description":"Police inspector and excellent hostage negotiator Ho Sheung-Sang finds himself in over his head when he is pulled into a 72 hour game by a cancer suffering criminal out for vengeance on Hong Kong's organized crime syndicates.","id":"2463","runtime":93,"imdbId":"tt0216165","version":93,"lastModified":"1301904245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ade\/4d50ba027b9aa13aaf00eade\/am-zin-mid.jpg","studio":"China Film","genre":"Action","title":"Running Out of Time","releaseDate":938044800000,"language":"en","type":"Movie","_key":"15789"} +{"label":"Johnnie To","version":85,"id":"25236","lastModified":"1302052496000","name":"Johnnie To","type":"Person","_key":"15790"} +{"label":"Andy Lau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf7\/4d04e8c25e73d621a2002bf7\/andy-lau-profile.jpg","version":112,"id":"25246","lastModified":"1301904098000","name":"Andy Lau","type":"Person","_key":"15791"} +{"label":"Ching Wan Lau","version":42,"id":"25247","lastModified":"1302052496000","name":"Ching Wan Lau","type":"Person","_key":"15792"} +{"label":"YoYo Mung","version":19,"id":"25248","lastModified":"1301901514000","name":"YoYo Mung","type":"Person","_key":"15793"} +{"label":"Waise Lee","version":29,"id":"25249","lastModified":"1301901464000","name":"Waise Lee","type":"Person","_key":"15794"} +{"label":"Suet Lam","version":93,"id":"25251","lastModified":"1302052496000","name":"Suet Lam","type":"Person","_key":"15795"} +{"label":"Ruby Wong","version":25,"id":"25252","lastModified":"1301902192000","name":"Ruby Wong","type":"Person","_key":"15796"} +{"label":"Wai Ai","version":21,"id":"25253","lastModified":"1301902115000","name":"Wai Ai","type":"Person","_key":"15797"} +{"label":"Wai Kin Lam","version":20,"id":"25254","lastModified":"1301902115000","name":"Wai Kin Lam","type":"Person","_key":"15798"} +{"label":"Robert Sparks","version":44,"id":"10149","lastModified":"1301901504000","name":"Robert Sparks","type":"Person","_key":"15799"} +{"label":"Shiu Hung Hui","version":32,"id":"63582","lastModified":"1301901414000","name":"Shiu Hung Hui","type":"Person","_key":"15800"} +{"label":"Firetrap","description":"No overview found.","id":"2464","runtime":97,"imdbId":"tt0243907","version":113,"lastModified":"1301905657000","studio":"City Heat Productions","genre":"Action","title":"Firetrap","releaseDate":984700800000,"language":"en","type":"Movie","_key":"15801"} +{"label":"Harris Done","version":20,"id":"25289","lastModified":"1301902115000","name":"Harris Done","type":"Person","_key":"15802"} +{"label":"Mel Harris","version":29,"id":"25306","lastModified":"1301902181000","name":"Mel Harris","type":"Person","_key":"15803"} +{"label":"Vanessa Angel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ca\/4ca521d85e73d636f70002ca\/vanessa-angel-profile.jpg","version":36,"id":"25308","lastModified":"1301901560000","name":"Vanessa Angel","type":"Person","_key":"15804"} +{"label":"Jim Storm","version":22,"id":"25309","lastModified":"1301902181000","name":"Jim Storm","type":"Person","_key":"15805"} +{"label":"Dale Godboldo","version":17,"id":"25310","lastModified":"1301901824000","name":"Dale Godboldo","type":"Person","_key":"15806"} +{"label":"John O'Hurley","version":17,"id":"25311","lastModified":"1301902168000","name":"John O'Hurley","type":"Person","_key":"15807"} +{"label":"Elena Sahagun","version":18,"id":"25313","lastModified":"1301902190000","name":"Elena Sahagun","type":"Person","_key":"15808"} +{"label":"Harry Van Gorkum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b7\/4c7972755e73d613d70001b7\/harry-van-gorkum-profile.jpg","version":39,"id":"58655","lastModified":"1301901239000","name":"Harry Van Gorkum","type":"Person","_key":"15809"} +{"label":"Tomb Raider Collection","description":"Tomb Raider is a series of action-adventure movies, centering around the adventures of the female fictional British archaeologist Lara Croft.","id":"2467","version":137,"lastModified":"1301904147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4bc916b8017a3c57fe0089a1\/tomb-raider-collection-mid.jpg","title":"Tomb Raider Collection","language":"en","type":"Movie","_key":"15810"} +{"label":"Tie Me Up! Tie Me Down!","description":"Ricky is released from a mental hospital, and knows exactly what he wants to do. He hunts down Marina, a porn film star he once had sex with, and tries to convince here to be his wife. She is a bit reluctant, so he ties her up... Will this approach endear him to her ?","id":"2469","runtime":111,"imdbId":"tt0101026","version":146,"lastModified":"1301903628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9aa\/4bc916bb017a3c57fe0089aa\/atame-mid.jpg","studio":"El Deseo","genre":"Comedy","title":"Tie Me Up! Tie Me Down!","releaseDate":632966400000,"language":"en","type":"Movie","_key":"15811"} +{"label":"Victoria Abril","version":47,"id":"25256","lastModified":"1301901287000","name":"Victoria Abril","type":"Person","_key":"15812"} +{"label":"Julieta Serrano","version":36,"id":"25257","lastModified":"1301901972000","name":"Julieta Serrano","type":"Person","_key":"15813"} +{"label":"Rossy de Palma","version":44,"id":"25258","lastModified":"1301901500000","name":"Rossy de Palma","type":"Person","_key":"15814"} +{"label":"Lola Cardona","version":22,"id":"25259","lastModified":"1301902199000","name":"Lola Cardona","type":"Person","_key":"15815"} +{"label":"Emiliano Redondo","version":26,"id":"25260","lastModified":"1301901834000","name":"Emiliano Redondo","type":"Person","_key":"15816"} +{"label":"Oswaldo Delgado","version":22,"id":"25261","lastModified":"1301902190000","name":"Oswaldo Delgado","type":"Person","_key":"15817"} +{"label":"Concha Rabal","version":22,"id":"25262","lastModified":"1301902190000","name":"Concha Rabal","type":"Person","_key":"15818"} +{"label":"Alberto Fern\u00e1ndez de Rosa","version":21,"id":"25263","lastModified":"1301902168000","name":"Alberto Fern\u00e1ndez de Rosa","type":"Person","_key":"15819"} +{"label":"Jos\u00e9 Mar\u00eda Tasso","version":22,"id":"25264","lastModified":"1301902174000","name":"Jos\u00e9 Mar\u00eda Tasso","type":"Person","_key":"15820"} +{"label":"Angelina Llongueras","version":22,"id":"25265","lastModified":"1301902162000","name":"Angelina Llongueras","type":"Person","_key":"15821"} +{"label":"Manuel Bandera","version":24,"id":"25266","lastModified":"1301902034000","name":"Manuel Bandera","type":"Person","_key":"15822"} +{"label":"Virginia D\u00edez","version":22,"id":"25267","lastModified":"1301902162000","name":"Virginia D\u00edez","type":"Person","_key":"15823"} +{"label":"Juana Cordero","version":22,"id":"25268","lastModified":"1301902162000","name":"Juana Cordero","type":"Person","_key":"15824"} +{"label":"Francisca Caballero","version":26,"id":"25269","lastModified":"1301902203000","name":"Francisca Caballero","type":"Person","_key":"15825"} +{"label":"Francisca Pajuelo","version":22,"id":"25270","lastModified":"1301902162000","name":"Francisca Pajuelo","type":"Person","_key":"15826"} +{"label":"V\u00edctor Coyote","version":22,"id":"25271","lastModified":"1301902162000","name":"V\u00edctor Coyote","type":"Person","_key":"15827"} +{"label":"Alito Rodgers","version":22,"id":"25272","lastModified":"1301902162000","name":"Alito Rodgers","type":"Person","_key":"15828"} +{"label":"Tamaki","version":22,"id":"25273","lastModified":"1301902189000","name":"Tamaki","type":"Person","_key":"15829"} +{"label":"Malena Gracia","version":22,"id":"25274","lastModified":"1301902162000","name":"Malena Gracia","type":"Person","_key":"15830"} +{"label":"Agust\u00edn Almod\u00f3var","version":74,"id":"952","lastModified":"1299927907000","name":"Agust\u00edn Almod\u00f3var","type":"Person","_key":"15831"} +{"label":"Rodolfo Montero","version":22,"id":"25275","lastModified":"1301902162000","name":"Rodolfo Montero","type":"Person","_key":"15832"} +{"label":"Miguel Garc\u00eda","version":22,"id":"25276","lastModified":"1301902162000","name":"Miguel Garc\u00eda","type":"Person","_key":"15833"} +{"label":"Pedro Losada","version":22,"id":"25277","lastModified":"1301902162000","name":"Pedro Losada","type":"Person","_key":"15834"} +{"label":"Belle \u00c9poque","description":"A Spanish soldier deserts from the army in 1931, only to find himself arrested by a group of local policemen. He is released and soon befriends a lonely, old man in the local village. Problems arise when the old man's daughters come to visit their father and the soldier quickly falls in love with each of them. ","id":"2470","runtime":109,"imdbId":"tt0103791","version":94,"lastModified":"1301907295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b7\/4bc916bb017a3c57fe0089b7\/belle-epoque-mid.jpg","genre":"Comedy","title":"Belle \u00c9poque","releaseDate":694224000000,"language":"en","type":"Movie","_key":"15835"} +{"label":"Fernando Trueba","version":26,"id":"37526","lastModified":"1301901644000","name":"Fernando Trueba","type":"Person","_key":"15836"} +{"label":"Miriam D\u00edaz Aroca","version":15,"id":"145412","lastModified":"1301902490000","name":"Miriam D\u00edaz Aroca","type":"Person","_key":"15837"} +{"label":"Agust\u00edn Gonz\u00e1lez","version":19,"id":"115482","lastModified":"1301928356000","name":"Agust\u00edn Gonz\u00e1lez","type":"Person","_key":"15838"} +{"label":"Mary Carmen Ram\u00edrez","version":15,"id":"145413","lastModified":"1301902518000","name":"Mary Carmen Ram\u00edrez","type":"Person","_key":"15839"} +{"label":"Jorge Sanz","version":15,"id":"145414","lastModified":"1301902468000","name":"Jorge Sanz","type":"Person","_key":"15840"} +{"label":"The Hitchhiker","description":"No overview found.","id":"2473","version":278,"lastModified":"1301905967000","genre":"Horror","title":"The Hitchhiker","language":"en","type":"Movie","_key":"15841"} +{"label":"Eragon","description":"In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.","id":"2486","runtime":104,"imdbId":"tt0449010","trailer":"http:\/\/www.youtube.com\/watch?v=0W0Wc1E8ffk","homepage":"http:\/\/www.eragonmovie.com\/","version":312,"lastModified":"1301901432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d5\/4bc916c0017a3c57fe0089d5\/eragon-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Eragon","releaseDate":1165968000000,"language":"en","tagline":"When darkness falls, a hero will ride.","type":"Movie","_key":"15842"} +{"label":"Ed Speleers","version":22,"id":"25438","lastModified":"1301901364000","name":"Ed Speleers","type":"Person","_key":"15843"} +{"label":"Richard Rifkin","version":22,"id":"25440","lastModified":"1301901638000","name":"Richard Rifkin","type":"Person","_key":"15844"} +{"label":"Joss Stone","version":22,"id":"25442","lastModified":"1301901777000","name":"Joss Stone","type":"Person","_key":"15845"} +{"label":"Michael Mehlmann","version":19,"id":"25443","lastModified":"1301901669000","name":"Michael Mehlmann","type":"Person","_key":"15846"} +{"label":"Tam\u00e1s De\u00e1k","version":19,"id":"25444","lastModified":"1301901805000","name":"Tam\u00e1s De\u00e1k","type":"Person","_key":"15847"} +{"label":"Matt Devere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bed\/4d88c6bd5e73d67514000bed\/matt-devere-profile.jpg","version":37,"id":"25445","lastModified":"1301901322000","name":"Matt Devere","type":"Person","_key":"15848"} +{"label":"M\u00e1t\u00e9 Haumann","version":19,"id":"25446","lastModified":"1301901805000","name":"M\u00e1t\u00e9 Haumann","type":"Person","_key":"15849"} +{"label":"Andrea Fazekas","version":21,"id":"25447","lastModified":"1301901628000","name":"Andrea Fazekas","type":"Person","_key":"15850"} +{"label":"Caroline Chikezie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4c39683b5e73d671d1000092\/caroline-chikezie-profile.jpg","version":30,"id":"25448","lastModified":"1301901806000","name":"Caroline Chikezie","type":"Person","_key":"15851"} +{"label":"\u00c1gnes B\u00e1nfalvy","version":19,"id":"25449","lastModified":"1301901576000","name":"\u00c1gnes B\u00e1nfalvy","type":"Person","_key":"15852"} +{"label":"P\u00e1l Makrai","version":19,"id":"25450","lastModified":"1301901506000","name":"P\u00e1l Makrai","type":"Person","_key":"15853"} +{"label":"Spencer Wilding","version":25,"id":"25451","lastModified":"1301901514000","name":"Spencer Wilding","type":"Person","_key":"15854"} +{"label":"G\u00e1bor Hortob\u00e1gyi","version":19,"id":"25452","lastModified":"1301901576000","name":"G\u00e1bor Hortob\u00e1gyi","type":"Person","_key":"15855"} +{"label":"Christopher Egan","version":25,"id":"76918","lastModified":"1301901347000","name":"Christopher Egan","type":"Person","_key":"15856"} +{"label":"Stefen Fangmeier","version":29,"id":"25453","lastModified":"1301901483000","name":"Stefen Fangmeier","type":"Person","_key":"15857"} +{"label":"Lady Snowblood","description":"Yuki's family is nearly wiped out before she is born due to the machinations of a band of criminals. These criminals kidnap and brutalize her mother but leave her alive. Later her mother ends up in prison with only revenge to keep her alive. She creates an instrument for this revenge by purposefully getting pregnant. Yuki never knows the love of a family but only killing and revenge.","id":"2487","runtime":97,"imdbId":"tt0158714","version":86,"lastModified":"1301906123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e2\/4bc916c1017a3c57fe0089e2\/shurayukihime-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Lady Snowblood","releaseDate":123552000000,"language":"en","type":"Movie","_key":"15858"} +{"label":"Meiko Kaji","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/803\/4d43c3395e73d66f59000803\/meiko-kaji-profile.jpg","version":34,"id":"25461","lastModified":"1301901641000","name":"Meiko Kaji","type":"Person","_key":"15859"} +{"label":"K\u00f4 Nishimura","version":38,"id":"25462","lastModified":"1301901597000","name":"K\u00f4 Nishimura","type":"Person","_key":"15860"} +{"label":"Toshio Kurosawa","version":29,"id":"25463","lastModified":"1301901857000","name":"Toshio Kurosawa","type":"Person","_key":"15861"} +{"label":"Masaaki Daimon","version":20,"id":"25464","lastModified":"1301902134000","name":"Masaaki Daimon","type":"Person","_key":"15862"} +{"label":"Miyoko Akaza","version":21,"id":"25465","lastModified":"1301902134000","name":"Miyoko Akaza","type":"Person","_key":"15863"} +{"label":"Eiji Okada","version":51,"id":"25466","lastModified":"1302052174000","name":"Eiji Okada","type":"Person","_key":"15864"} +{"label":"Les Amours sous la R\u00e9volution","description":"No overview found.","id":"2488","title":"Les Amours sous la R\u00e9volution","language":"en","lastModified":"1301907428000","version":146,"type":"Movie","_key":"15865"} +{"label":"The Princess Bride","description":"In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.","id":"2493","runtime":98,"imdbId":"tt0093779","trailer":"http:\/\/www.youtube.com\/watch?v=VYgcrny2hRs","version":634,"lastModified":"1301905474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a12\/4bc916c8017a3c57fe008a12\/the-princess-bride-mid.jpg","studio":"Act III Communications","genre":"Action","title":"The Princess Bride","releaseDate":538704000000,"language":"en","tagline":"She gets kidnapped. He gets killed. But it all ends up okay.","type":"Movie","_key":"15866"} +{"label":"Mandy Patinkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a7\/4caf33347b9aa121370001a7\/mandy-patinkin-profile.jpg","version":44,"id":"25503","lastModified":"1301901491000","name":"Mandy Patinkin","type":"Person","_key":"15867"} +{"label":"Andr\u00e9 the Giant","version":25,"id":"25504","lastModified":"1301901813000","name":"Andr\u00e9 the Giant","type":"Person","_key":"15868"} +{"label":"The Bourne Identity","description":"Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. Bourne realizes, though, that he has the combat and mental skills of a world-class spy, but who does he work for?","id":"2501","runtime":119,"imdbId":"tt0258463","trailer":"http:\/\/www.youtube.com\/watch?v=2tqK_3mKQUw","version":295,"lastModified":"1301900954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a55\/4bc916d2017a3c57fe008a55\/the-bourne-identity-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Bourne Identity","releaseDate":1024012800000,"language":"en","tagline":"He was the perfect weapon until he became the target.","type":"Movie","_key":"15869"} +{"label":"Adewale Akinnuoye-Agbaje","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9e\/4d27c62e7b9aa134d8001d9e\/adewale-akinnuoye-agbaje-profile.jpg","version":60,"id":"31164","lastModified":"1302037844000","name":"Adewale Akinnuoye-Agbaje","type":"Person","_key":"15870"} +{"label":"The Bourne Supremacy","description":"When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.","id":"2502","runtime":103,"imdbId":"tt0372183","trailer":"http:\/\/www.youtube.com\/watch?v=WrWTJv0yEyI","version":332,"lastModified":"1301900971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16e\/4d87a4727b9aa137c000016e\/the-bourne-supremacy-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Bourne Supremacy","releaseDate":1090540800000,"language":"en","tagline":"They should have left him alone.","type":"Movie","_key":"15871"} +{"label":"Paul Greengrass","version":82,"id":"25598","lastModified":"1301901131000","name":"Paul Greengrass","type":"Person","_key":"15872"} +{"label":"The Bourne Ultimatum","description":"Bourne is once again brought out of hiding by reporter Simon Ross who is trying to unveil Operation Blackbriar an upgrade to Project Treadstone in a series of newspaper columns.Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past whilst dodging The Company's best efforts to eradicate him.","id":"2503","runtime":115,"imdbId":"tt0440963","trailer":"http:\/\/www.youtube.com\/watch?v=reotzNITIeQ","homepage":"http:\/\/www.thebourneultimatum.com\/","version":426,"lastModified":"1301900874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abc\/4bc916e3017a3c57fe008abc\/the-bourne-ultimatum-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Bourne Ultimatum","releaseDate":1185321600000,"language":"en","tagline":"Remember everything. Forgive nothing.","type":"Movie","_key":"15873"} +{"label":"\u00c9dgar Ram\u00edrez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/509\/4cc9ed165e73d65020000509\/edgar-ramirez-profile.jpg","version":42,"id":"25616","lastModified":"1301906440000","name":"\u00c9dgar Ram\u00edrez","type":"Person","_key":"15874"} +{"label":"Tom Gallop","version":32,"id":"27030","lastModified":"1301901112000","name":"Tom Gallop","type":"Person","_key":"15875"} +{"label":"Joey Ansah","version":35,"id":"29406","lastModified":"1301901111000","name":"Joey Ansah","type":"Person","_key":"15876"} +{"label":"The Bourne Films","description":"The Bourne Trilogy is a series of novels by Robert Ludlum, which have been adapted to film in a series starring Matt Damon.\nThe original three Jason Bourne novels are:\nThe Bourne Identity (1980)\nThe Bourne Supremacy (1986)\nThe Bourne Ultimatum (1990)\nThe film trilogy:\nThe Bourne Identity (2002)\nThe Bourne Supremacy (2004)\nThe Bourne Ultimatum (2007)","id":"2504","version":311,"lastModified":"1301903982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4d088dcd7b9aa101de0002e5\/the-bourne-films-mid.jpg","title":"The Bourne Films","language":"en","type":"Movie","_key":"15877"} +{"label":"Our Mother's House","description":"No overview found.","id":"2516","runtime":100,"imdbId":"tt0062089","version":75,"lastModified":"1301907443000","studio":"Filmways Pictures","genre":"Drama","title":"Our Mother's House","releaseDate":-79056000000,"language":"en","type":"Movie","_key":"15878"} +{"label":"Jack Clayton","version":31,"id":"25630","lastModified":"1301901572000","name":"Jack Clayton","type":"Person","_key":"15879"} +{"label":"Margaret Brooks","version":20,"id":"25634","lastModified":"1301901824000","name":"Margaret Brooks","type":"Person","_key":"15880"} +{"label":"Pamela Franklin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/908\/4cab577b7b9aa17ace000908\/pamela-franklin-profile.jpg","version":31,"id":"25635","lastModified":"1301901412000","name":"Pamela Franklin","type":"Person","_key":"15881"} +{"label":"Louis Sheldon Williams","version":20,"id":"25636","lastModified":"1301901513000","name":"Louis Sheldon Williams","type":"Person","_key":"15882"} +{"label":"John Gugolka","version":20,"id":"25637","lastModified":"1301902179000","name":"John Gugolka","type":"Person","_key":"15883"} +{"label":"Mark Lester","version":30,"id":"25638","lastModified":"1301901572000","name":"Mark Lester","type":"Person","_key":"15884"} +{"label":"Gustav Henry","version":20,"id":"25639","lastModified":"1301902190000","name":"Gustav Henry","type":"Person","_key":"15885"} +{"label":"Parnum Wallace","version":20,"id":"25640","lastModified":"1301902193000","name":"Parnum Wallace","type":"Person","_key":"15886"} +{"label":"Yootha Joyce","version":22,"id":"25641","lastModified":"1301902164000","name":"Yootha Joyce","type":"Person","_key":"15887"} +{"label":"Claire Davidson","version":20,"id":"25642","lastModified":"1301902164000","name":"Claire Davidson","type":"Person","_key":"15888"} +{"label":"Anthony Nicholls","version":21,"id":"25643","lastModified":"1301902164000","name":"Anthony Nicholls","type":"Person","_key":"15889"} +{"label":"Annette Carell","version":20,"id":"25644","lastModified":"1301902198000","name":"Annette Carell","type":"Person","_key":"15890"} +{"label":"Nobody Knows","description":"In Tokyo, the reckless single mother Keiko moves to a small apartment with her twelve years old son Akira Fukushima and hidden in the luggage, his siblings Kyoko, Shigeru and Yuki. The children have different fathers and do not have schooling, but they have a happy life with their mother. When Keiko finds a new boyfriend, she leaves the children alone, giving some money to Akira and assigning him to take care of his siblings. When the money finishes, Akira manages to find means to survive with t","id":"2517","runtime":141,"imdbId":"tt0408664","homepage":"http:\/\/www.lhp.com.sg\/nobodyknows\/","version":148,"lastModified":"1301903946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af0\/4bc916ea017a3c57fe008af0\/dare-mo-shiranai-mid.jpg","studio":"Bandai Visual Company (JAPAN)","genre":"Drama","title":"Nobody Knows","releaseDate":1098316800000,"language":"en","type":"Movie","_key":"15891"} +{"label":"Hirokazu Koreeda","version":64,"id":"25645","lastModified":"1301901452000","name":"Hirokazu Koreeda","type":"Person","_key":"15892"} +{"label":"Y\u00fbya Yagira","version":31,"id":"25648","lastModified":"1301901669000","name":"Y\u00fbya Yagira","type":"Person","_key":"15893"} +{"label":"Ayu Kitaura","version":22,"id":"25649","lastModified":"1301901845000","name":"Ayu Kitaura","type":"Person","_key":"15894"} +{"label":"Hiei Kimura","version":23,"id":"25650","lastModified":"1301901795000","name":"Hiei Kimura","type":"Person","_key":"15895"} +{"label":"Momoko Shimizu","version":23,"id":"25651","lastModified":"1301901795000","name":"Momoko Shimizu","type":"Person","_key":"15896"} +{"label":"Hanae Kan","version":23,"id":"25652","lastModified":"1301901971000","name":"Hanae Kan","type":"Person","_key":"15897"} +{"label":"You","version":25,"id":"25653","lastModified":"1301901683000","name":"You","type":"Person","_key":"15898"} +{"label":"Hitler: The Rise of Evil","description":"A unique slant, profiling the life of Adolf Hitler as a child and his rise through the ranks of the National German Workers' Party prior to World War II.","id":"2518","runtime":180,"imdbId":"tt0346293","version":430,"lastModified":"1301904780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc916ea017a3c57fe008af9\/hitler-the-rise-of-evil-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Drama","title":"Hitler: The Rise of Evil","releaseDate":1047945600000,"language":"en","type":"Movie","_key":"15899"} +{"label":"Julianna Margulies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/328\/4c8bcb045e73d6068f000328\/julianna-margulies-profile.jpg","version":46,"id":"25654","lastModified":"1301901161000","name":"Julianna Margulies","type":"Person","_key":"15900"} +{"label":"Zoe Telford","version":25,"id":"25655","lastModified":"1301901644000","name":"Zoe Telford","type":"Person","_key":"15901"} +{"label":"Justin Salinger","version":32,"id":"25657","lastModified":"1301901441000","name":"Justin Salinger","type":"Person","_key":"15902"} +{"label":"Chris Larkin","version":26,"id":"25658","lastModified":"1301901546000","name":"Chris Larkin","type":"Person","_key":"15903"} +{"label":"Patricia Netzer","version":24,"id":"25660","lastModified":"1301901753000","name":"Patricia Netzer","type":"Person","_key":"15904"} +{"label":"Harvey Friedman","version":24,"id":"25661","lastModified":"1301901753000","name":"Harvey Friedman","type":"Person","_key":"15905"} +{"label":"Julie-Ann Hassett","version":24,"id":"25662","lastModified":"1301901628000","name":"Julie-Ann Hassett","type":"Person","_key":"15906"} +{"label":"Thomas Sangster","version":42,"id":"25663","lastModified":"1301954555000","name":"Thomas Sangster","type":"Person","_key":"15907"} +{"label":"Simon Sullivan","version":24,"id":"25664","lastModified":"1301901753000","name":"Simon Sullivan","type":"Person","_key":"15908"} +{"label":"Robert Glenister","version":24,"id":"25665","lastModified":"1301901753000","name":"Robert Glenister","type":"Person","_key":"15909"} +{"label":"Ian Hogg","version":30,"id":"25666","lastModified":"1301901808000","name":"Ian Hogg","type":"Person","_key":"15910"} +{"label":"Filip Hess","version":25,"id":"25667","lastModified":"1301901850000","name":"Filip Hess","type":"Person","_key":"15911"} +{"label":"Brendan Hughes","version":25,"id":"25668","lastModified":"1301901753000","name":"Brendan Hughes","type":"Person","_key":"15912"} +{"label":"Howie Lotker","version":24,"id":"25669","lastModified":"1301901753000","name":"Howie Lotker","type":"Person","_key":"15913"} +{"label":"Robert Russell","version":30,"id":"25670","lastModified":"1301901916000","name":"Robert Russell","type":"Person","_key":"15914"} +{"label":"David Fisher","version":25,"id":"25671","lastModified":"1301902011000","name":"David Fisher","type":"Person","_key":"15915"} +{"label":"Hana Frejkova","version":24,"id":"25672","lastModified":"1301901753000","name":"Hana Frejkova","type":"Person","_key":"15916"} +{"label":"Wolfgang M\u00fcller","version":24,"id":"25673","lastModified":"1301901982000","name":"Wolfgang M\u00fcller","type":"Person","_key":"15917"} +{"label":"Christopher Ettridge","version":26,"id":"25674","lastModified":"1301901603000","name":"Christopher Ettridge","type":"Person","_key":"15918"} +{"label":"Bruce Byron","version":25,"id":"25675","lastModified":"1301901753000","name":"Bruce Byron","type":"Person","_key":"15919"} +{"label":"George Pensotti","version":24,"id":"25676","lastModified":"1301901753000","name":"George Pensotti","type":"Person","_key":"15920"} +{"label":"Joel Kirby","version":35,"id":"25677","lastModified":"1301901633000","name":"Joel Kirby","type":"Person","_key":"15921"} +{"label":"Richard Haas","version":25,"id":"25678","lastModified":"1301901837000","name":"Richard Haas","type":"Person","_key":"15922"} +{"label":"Richard Katz","version":24,"id":"25679","lastModified":"1301901753000","name":"Richard Katz","type":"Person","_key":"15923"} +{"label":"Laurence Kennedy","version":24,"id":"25680","lastModified":"1301901753000","name":"Laurence Kennedy","type":"Person","_key":"15924"} +{"label":"Ned Vukovic","version":25,"id":"25681","lastModified":"1301901628000","name":"Ned Vukovic","type":"Person","_key":"15925"} +{"label":"David O'Kelly","version":25,"id":"25682","lastModified":"1301901837000","name":"David O'Kelly","type":"Person","_key":"15926"} +{"label":"Gavin Stewart","version":24,"id":"25683","lastModified":"1301901753000","name":"Gavin Stewart","type":"Person","_key":"15927"} +{"label":"Rod Grover","version":24,"id":"25684","lastModified":"1301901753000","name":"Rod Grover","type":"Person","_key":"15928"} +{"label":"Richard Rowlands","version":24,"id":"25685","lastModified":"1301901753000","name":"Richard Rowlands","type":"Person","_key":"15929"} +{"label":"John Comer","version":25,"id":"25686","lastModified":"1301901916000","name":"John Comer","type":"Person","_key":"15930"} +{"label":"Terence Longdon","version":31,"id":"25687","lastModified":"1301901708000","name":"Terence Longdon","type":"Person","_key":"15931"} +{"label":"Christopher Bowen","version":28,"id":"25688","lastModified":"1301902034000","name":"Christopher Bowen","type":"Person","_key":"15932"} +{"label":"Liliana Komorowska","version":27,"id":"25689","lastModified":"1301901753000","name":"Liliana Komorowska","type":"Person","_key":"15933"} +{"label":"Todd Kramer","version":24,"id":"25690","lastModified":"1301901916000","name":"Todd Kramer","type":"Person","_key":"15934"} +{"label":"Max von Thun","version":30,"id":"25691","lastModified":"1301901471000","name":"Max von Thun","type":"Person","_key":"15935"} +{"label":"Jiri Zeman","version":24,"id":"25701","lastModified":"1301901753000","name":"Jiri Zeman","type":"Person","_key":"15936"} +{"label":"Jir\u00ed Novotny","version":22,"id":"25704","lastModified":"1301901805000","name":"Jir\u00ed Novotny","type":"Person","_key":"15937"} +{"label":"Mikul\u00e1s Kren","version":22,"id":"25706","lastModified":"1301901805000","name":"Mikul\u00e1s Kren","type":"Person","_key":"15938"} +{"label":"Robert Orr","version":24,"id":"25708","lastModified":"1301901753000","name":"Robert Orr","type":"Person","_key":"15939"} +{"label":"Jan Petrina","version":24,"id":"25709","lastModified":"1301901753000","name":"Jan Petrina","type":"Person","_key":"15940"} +{"label":"Jan Vosmik","version":24,"id":"25710","lastModified":"1301901753000","name":"Jan Vosmik","type":"Person","_key":"15941"} +{"label":"Mike McGuffie","version":25,"id":"25712","lastModified":"1301901628000","name":"Mike McGuffie","type":"Person","_key":"15942"} +{"label":"Jir\u00ed Knot","version":22,"id":"25716","lastModified":"1301901576000","name":"Jir\u00ed Knot","type":"Person","_key":"15943"} +{"label":"Dagmar Bl\u00e1hov\u00e1","version":26,"id":"25717","lastModified":"1301901983000","name":"Dagmar Bl\u00e1hov\u00e1","type":"Person","_key":"15944"} +{"label":"Jan Kuzelka","version":24,"id":"25718","lastModified":"1301901916000","name":"Jan Kuzelka","type":"Person","_key":"15945"} +{"label":"Jeff Smith","version":24,"id":"25719","lastModified":"1301901753000","name":"Jeff Smith","type":"Person","_key":"15946"} +{"label":"Adam Bradley","version":24,"id":"25720","lastModified":"1301901753000","name":"Adam Bradley","type":"Person","_key":"15947"} +{"label":"Avi Muyderman","version":24,"id":"25727","lastModified":"1301901753000","name":"Avi Muyderman","type":"Person","_key":"15948"} +{"label":"Joel Sugerman","version":24,"id":"25721","lastModified":"1301901546000","name":"Joel Sugerman","type":"Person","_key":"15949"} +{"label":"Vladimir Kulhavy","version":27,"id":"25723","lastModified":"1301901916000","name":"Vladimir Kulhavy","type":"Person","_key":"15950"} +{"label":"Tomas Zastera","version":24,"id":"25724","lastModified":"1301901753000","name":"Tomas Zastera","type":"Person","_key":"15951"} +{"label":"Roger Denesha","version":24,"id":"25725","lastModified":"1301901753000","name":"Roger Denesha","type":"Person","_key":"15952"} +{"label":"Jan Unger","version":29,"id":"25726","lastModified":"1301901753000","name":"Jan Unger","type":"Person","_key":"15953"} +{"label":"Tim Otis","version":24,"id":"25728","lastModified":"1301901753000","name":"Tim Otis","type":"Person","_key":"15954"} +{"label":"Nancy Bishop","version":24,"id":"25729","lastModified":"1301901753000","name":"Nancy Bishop","type":"Person","_key":"15955"} +{"label":"Vitezslav Bouchner","version":24,"id":"25731","lastModified":"1301901753000","name":"Vitezslav Bouchner","type":"Person","_key":"15956"} +{"label":"Curtis Matthew","version":24,"id":"25732","lastModified":"1301902022000","name":"Curtis Matthew","type":"Person","_key":"15957"} +{"label":"Erik Johanson","version":24,"id":"25733","lastModified":"1301901753000","name":"Erik Johanson","type":"Person","_key":"15958"} +{"label":"Jir\u00ed M. Sieber","version":22,"id":"25734","lastModified":"1301901805000","name":"Jir\u00ed M. Sieber","type":"Person","_key":"15959"} +{"label":"Jan Buda\u0159","version":26,"id":"136811","lastModified":"1301901849000","name":"Jan Buda\u0159","type":"Person","_key":"15960"} +{"label":"Christian Duguay","version":51,"id":"25735","lastModified":"1301901349000","name":"Christian Duguay","type":"Person","_key":"15961"} +{"label":"The Bible: In the Beginning...","description":"Extravagant production of the first part of the book of Genesis. Covers Adam and Eve, Noah and the Flood and Abraham and Isaac.","id":"2525","runtime":174,"imdbId":"tt0060164","version":147,"lastModified":"1301903074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/437\/4d2fdf6d5e73d667de000437\/the-bible-in-the-beginning-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Bible: In the Beginning...","releaseDate":-102902400000,"language":"en","type":"Movie","_key":"15962"} +{"label":"Ulla Bergryd","version":20,"id":"25779","lastModified":"1301901632000","name":"Ulla Bergryd","type":"Person","_key":"15963"} +{"label":"Pupella Maggio","version":25,"id":"25780","lastModified":"1301901841000","name":"Pupella Maggio","type":"Person","_key":"15964"} +{"label":"Angelo Boscariol","version":20,"id":"25781","lastModified":"1301901924000","name":"Angelo Boscariol","type":"Person","_key":"15965"} +{"label":"Peter Heinze","version":20,"id":"25782","lastModified":"1301901924000","name":"Peter Heinze","type":"Person","_key":"15966"} +{"label":"Eric Leutzinger","version":20,"id":"25783","lastModified":"1301901924000","name":"Eric Leutzinger","type":"Person","_key":"15967"} +{"label":"Anna Orso","version":19,"id":"25784","lastModified":"1301901982000","name":"Anna Orso","type":"Person","_key":"15968"} +{"label":"Gabriella Pallotta","version":25,"id":"25785","lastModified":"1301901811000","name":"Gabriella Pallotta","type":"Person","_key":"15969"} +{"label":"Rossana Di Rocco","version":20,"id":"25786","lastModified":"1301901924000","name":"Rossana Di Rocco","type":"Person","_key":"15970"} +{"label":"Ava Gardner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4bd1ed24017a3c63ed00031e\/ava-gardner-profile.jpg","version":63,"id":"25787","lastModified":"1302028580000","name":"Ava Gardner","type":"Person","_key":"15971"} +{"label":"Zoe Sallis","version":20,"id":"25788","lastModified":"1301901924000","name":"Zoe Sallis","type":"Person","_key":"15972"} +{"label":"Eleonora Rossi Drago","version":21,"id":"25789","lastModified":"1301901924000","name":"Eleonora Rossi Drago","type":"Person","_key":"15973"} +{"label":"Adriana Ambesi","version":21,"id":"25790","lastModified":"1301901924000","name":"Adriana Ambesi","type":"Person","_key":"15974"} +{"label":"Maria Grazia Spina","version":20,"id":"25791","lastModified":"1301901924000","name":"Maria Grazia Spina","type":"Person","_key":"15975"} +{"label":"Alberto Lucantoni","version":20,"id":"25792","lastModified":"1301901924000","name":"Alberto Lucantoni","type":"Person","_key":"15976"} +{"label":"Luciano Conversi","version":20,"id":"25793","lastModified":"1301901924000","name":"Luciano Conversi","type":"Person","_key":"15977"} +{"label":"Claudie Lange","version":20,"id":"25794","lastModified":"1301901924000","name":"Claudie Lange","type":"Person","_key":"15978"} +{"label":"Moses the Lawgiver","description":"No overview found.","id":"2526","runtime":141,"imdbId":"tt0072547","version":93,"lastModified":"1301906759000","studio":"Rai Cinemafiction","genre":"History","title":"Moses the Lawgiver","releaseDate":156902400000,"language":"en","type":"Movie","_key":"15979"} +{"label":"Aharon Ipal\u00e9","version":24,"id":"25808","lastModified":"1301902193000","name":"Aharon Ipal\u00e9","type":"Person","_key":"15980"} +{"label":"Shmuel Rodensky","version":20,"id":"25809","lastModified":"1301902195000","name":"Shmuel Rodensky","type":"Person","_key":"15981"} +{"label":"Mariangela Melato","version":27,"id":"25810","lastModified":"1301902162000","name":"Mariangela Melato","type":"Person","_key":"15982"} +{"label":"Bill Lancaster","version":22,"id":"15406","lastModified":"1301901972000","name":"Bill Lancaster","type":"Person","_key":"15983"} +{"label":"Mario Ferrari","version":20,"id":"25811","lastModified":"1301902161000","name":"Mario Ferrari","type":"Person","_key":"15984"} +{"label":"Melba Englander","version":20,"id":"25812","lastModified":"1301902162000","name":"Melba Englander","type":"Person","_key":"15985"} +{"label":"Michele Placido","version":70,"id":"25819","lastModified":"1301901304000","name":"Michele Placido","type":"Person","_key":"15986"} +{"label":"Antonio Piovanelli","version":20,"id":"25813","lastModified":"1301902161000","name":"Antonio Piovanelli","type":"Person","_key":"15987"} +{"label":"John Francis Lane","version":20,"id":"25820","lastModified":"1301902190000","name":"John Francis Lane","type":"Person","_key":"15988"} +{"label":"Jos\u00e9 Quaglio","version":23,"id":"25815","lastModified":"1301940154000","name":"Jos\u00e9 Quaglio","type":"Person","_key":"15989"} +{"label":"Umberto Raho","version":31,"id":"25816","lastModified":"1301901795000","name":"Umberto Raho","type":"Person","_key":"15990"} +{"label":"Dina Doron","version":17,"id":"25817","lastModified":"1301902011000","name":"Dina Doron","type":"Person","_key":"15991"} +{"label":"Mosko Alkalai","version":21,"id":"25818","lastModified":"1301902190000","name":"Mosko Alkalai","type":"Person","_key":"15992"} +{"label":"Paul Muller","version":63,"id":"101549","lastModified":"1301902516000","name":"Paul Muller","type":"Person","_key":"15993"} +{"label":"Gianfranco De Bosio","version":21,"id":"25821","lastModified":"1301901500000","name":"Gianfranco De Bosio","type":"Person","_key":"15994"} +{"label":"Que la b\u00eate meure","description":"When his young son is killed in a hit and run accident, Charles Thenier resolves to hunt down and murder the killer. By chance, Thenier makes the acquaintance of an actress, Hel\u00e8ne Lanson, who was in the car at the time of the accident. Initially suspecting that she is the target of his revenge, Therier pretends to be in love with her, savoring his moment of triumph. Then his view changes when Hel\u00e8ne confesses to having had a nervous breakdown at about the time of the car accident. Therier disco","id":"2527","runtime":113,"imdbId":"tt0064861","version":48,"lastModified":"1301903370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b02\/4bc916ed017a3c57fe008b02\/que-la-bete-meure-mid.jpg","studio":"Les Films de la Bo\u00e9tie","genre":"Crime","title":"Que la b\u00eate meure","releaseDate":-10195200000,"language":"en","type":"Movie","_key":"15995"} +{"label":"Caroline Cellier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/def\/4d1b9c825e73d66598000def\/caroline-cellier-profile.jpg","version":29,"id":"25838","lastModified":"1301901229000","name":"Caroline Cellier","type":"Person","_key":"15996"} +{"label":"Marc Di Napoli","version":24,"id":"25841","lastModified":"1301901570000","name":"Marc Di Napoli","type":"Person","_key":"15997"} +{"label":"Anouk Ferjac","version":23,"id":"25839","lastModified":"1301902011000","name":"Anouk Ferjac","type":"Person","_key":"15998"} +{"label":"Louise Chevalier","version":27,"id":"25842","lastModified":"1301901662000","name":"Louise Chevalier","type":"Person","_key":"15999"} +{"label":"Guy Marly","version":20,"id":"25844","lastModified":"1301902190000","name":"Guy Marly","type":"Person","_key":"16000"} +{"label":"Lorraine Rainer","version":20,"id":"25845","lastModified":"1301902190000","name":"Lorraine Rainer","type":"Person","_key":"16001"} +{"label":"St\u00e9phane Di Napoli","version":20,"id":"25847","lastModified":"1301901795000","name":"St\u00e9phane Di Napoli","type":"Person","_key":"16002"} +{"label":"Madame Bovary","description":"The story of a 19th Century farmer's daughter who dreams of a life of romance, is dulled by her marriage to a provincial doctor, finds passion with a philandering aristocrat, and who, in time, abandoned and blackmailed, commits suicide.","id":"2528","runtime":140,"imdbId":"tt0102368","version":125,"lastModified":"1301905856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86b\/4cccd26f5e73d6502500086b\/madame-bovary-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Madame Bovary","releaseDate":670636800000,"language":"en","type":"Movie","_key":"16003"} +{"label":"Jean-Fran\u00e7ois Balmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/262\/4c51d9197b9aa13d4a000262\/jean-francois-balmer-profile.jpg","version":28,"id":"35527","lastModified":"1301901533000","name":"Jean-Fran\u00e7ois Balmer","type":"Person","_key":"16004"} +{"label":"Lucas Belvaux","version":29,"id":"25854","lastModified":"1301904135000","name":"Lucas Belvaux","type":"Person","_key":"16005"} +{"label":"Christiane Minazzoli","version":27,"id":"28149","lastModified":"1301902161000","name":"Christiane Minazzoli","type":"Person","_key":"16006"} +{"label":"Jean-Louis Maury","version":20,"id":"39523","lastModified":"1301901903000","name":"Jean-Louis Maury","type":"Person","_key":"16007"} +{"label":"Adolphe ou l'\u00e2ge tendre","description":"No overview found.","id":"2536","runtime":103,"imdbId":"tt0062642","version":39,"lastModified":"1301905723000","studio":"Prisma Films","genre":"Drama","title":"Adolphe ou l'\u00e2ge tendre","releaseDate":-49852800000,"language":"en","type":"Movie","_key":"16008"} +{"label":"Ulla Jacobsson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b3\/4ccc993e5e73d650240008b3\/ulla-jacobsson-profile.jpg","version":28,"id":"25888","lastModified":"1302033334000","name":"Ulla Jacobsson","type":"Person","_key":"16009"} +{"label":"Maria Mauban","version":22,"id":"25889","lastModified":"1301901681000","name":"Maria Mauban","type":"Person","_key":"16010"} +{"label":"Nathalie Nell","version":23,"id":"25890","lastModified":"1301901976000","name":"Nathalie Nell","type":"Person","_key":"16011"} +{"label":"Michel Robert","version":20,"id":"25891","lastModified":"1301902197000","name":"Michel Robert","type":"Person","_key":"16012"} +{"label":"La pelota vasca. La piel contra la piedra","description":"No overview found.","id":"2537","runtime":110,"imdbId":"tt0382898","version":57,"lastModified":"1301908479000","studio":"Alicia Produce S L","genre":"Documentary","title":"La pelota vasca. La piel contra la piedra","releaseDate":1064016000000,"language":"en","type":"Movie","_key":"16013"} +{"label":"Hola, \u00bfest\u00e1s sola?","description":"No overview found.","id":"2538","runtime":92,"imdbId":"tt0113312","version":56,"lastModified":"1301905013000","studio":"Canal+ Espa\u00f1a","genre":"Comedy","title":"Hola, \u00bfest\u00e1s sola?","releaseDate":814838400000,"language":"en","type":"Movie","_key":"16014"} +{"label":"Arcadi Levin","version":20,"id":"25899","lastModified":"1301901841000","name":"Arcadi Levin","type":"Person","_key":"16015"} +{"label":"Daniel Guzm\u00e1n","version":20,"id":"25900","lastModified":"1301901829000","name":"Daniel Guzm\u00e1n","type":"Person","_key":"16016"} +{"label":"Pedro Miguel Mart\u00ednez","version":21,"id":"25901","lastModified":"1301901670000","name":"Pedro Miguel Mart\u00ednez","type":"Person","_key":"16017"} +{"label":"Ruth Rodr\u00edguez","version":20,"id":"25902","lastModified":"1301901835000","name":"Ruth Rodr\u00edguez","type":"Person","_key":"16018"} +{"label":"Alfonso Nsue","version":20,"id":"25903","lastModified":"1301901814000","name":"Alfonso Nsue","type":"Person","_key":"16019"} +{"label":"Amelia Ochandiano","version":21,"id":"25904","lastModified":"1301901799000","name":"Amelia Ochandiano","type":"Person","_key":"16020"} +{"label":"David Jare\u00f1o","version":20,"id":"25905","lastModified":"1301901799000","name":"David Jare\u00f1o","type":"Person","_key":"16021"} +{"label":"Spanglish","description":"A woman and her daughter emigrate from Mexico for a better life in America, where they start working for a family where the patriarch is a newly celebrated chef with an insecure wife.","id":"2539","runtime":131,"imdbId":"tt0371246","version":346,"lastModified":"1301904359000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d6\/4d1118ac7b9aa114820004d6\/spanglish-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Spanglish","releaseDate":1103241600000,"language":"en","type":"Movie","_key":"16022"} +{"label":"James L. Brooks","version":105,"id":"3388","lastModified":"1299501137000","name":"James L. Brooks","type":"Person","_key":"16023"} +{"label":"Shelbie Bruce","version":22,"id":"25907","lastModified":"1301902018000","name":"Shelbie Bruce","type":"Person","_key":"16024"} +{"label":"Sarah Steele","version":25,"id":"25908","lastModified":"1301901293000","name":"Sarah Steele","type":"Person","_key":"16025"} +{"label":"Ian Hyland","version":22,"id":"25909","lastModified":"1301902006000","name":"Ian Hyland","type":"Person","_key":"16026"} +{"label":"Victoria Luna","version":21,"id":"25910","lastModified":"1301901948000","name":"Victoria Luna","type":"Person","_key":"16027"} +{"label":"Cecilia Su\u00e1rez","version":34,"id":"25911","lastModified":"1301901494000","name":"Cecilia Su\u00e1rez","type":"Person","_key":"16028"} +{"label":"Zazie dans le m\u00e9tro","description":"Zazie in the Metro \u2014 or simply Zazie, depending on the translation (original French title: Zazie dans le m\u00e9tro) \u2014 a French novel written in 1959, was the first major success of author Raymond Queneau. Zazie explores colloquial language as opposed to 'standard' written French, a distinction that is particularly marked in French, where correct language usage is governed by an official academy. The first word of the book, the neologism Doukipudonktan is a phonetic transcription of D'o\u00f9 qu'il pue d","id":"2546","runtime":89,"imdbId":"tt0054494","version":65,"lastModified":"1301985542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/853\/4ca256c15e73d67b5f000853\/zazie-dans-le-metro-mid.jpg","studio":"Path\u00e9 Consortium Cin\u00e9ma","genre":"Comedy","title":"Zazie dans le m\u00e9tro","releaseDate":-289612800000,"language":"en","type":"Movie","_key":"16029"} +{"label":"Philippe Collin","version":23,"id":"25954","lastModified":"1301902114000","name":"Philippe Collin","type":"Person","_key":"16030"} +{"label":"Olivier G\u00e9rard","version":20,"id":"25955","lastModified":"1301902114000","name":"Olivier G\u00e9rard","type":"Person","_key":"16031"} +{"label":"Richard Bigotini","version":24,"id":"25956","lastModified":"1301901810000","name":"Richard Bigotini","type":"Person","_key":"16032"} +{"label":"Catherine Demongeot","version":20,"id":"25957","lastModified":"1301901478000","name":"Catherine Demongeot","type":"Person","_key":"16033"} +{"label":"Hubert Deschamps","version":32,"id":"25958","lastModified":"1301901448000","name":"Hubert Deschamps","type":"Person","_key":"16034"} +{"label":"Annie Fratellini","version":20,"id":"25960","lastModified":"1301902114000","name":"Annie Fratellini","type":"Person","_key":"16035"} +{"label":"Yvonne Clech","version":25,"id":"25961","lastModified":"1301901542000","name":"Yvonne Clech","type":"Person","_key":"16036"} +{"label":"Odette Piquet","version":21,"id":"25962","lastModified":"1301901910000","name":"Odette Piquet","type":"Person","_key":"16037"} +{"label":"Nicolas Bataille","version":21,"id":"25963","lastModified":"1301902190000","name":"Nicolas Bataille","type":"Person","_key":"16038"} +{"label":"Antoine Roblot","version":20,"id":"25964","lastModified":"1301902114000","name":"Antoine Roblot","type":"Person","_key":"16039"} +{"label":"Marc Doelnitz","version":21,"id":"25965","lastModified":"1301902134000","name":"Marc Doelnitz","type":"Person","_key":"16040"} +{"label":"Jacques Gheusi","version":20,"id":"25966","lastModified":"1301902114000","name":"Jacques Gheusi","type":"Person","_key":"16041"} +{"label":"Louis Lalanne","version":20,"id":"25967","lastModified":"1301902114000","name":"Louis Lalanne","type":"Person","_key":"16042"} +{"label":"Christine Howard","version":20,"id":"25968","lastModified":"1301902114000","name":"Christine Howard","type":"Person","_key":"16043"} +{"label":"Joe Versus the Volcano","description":"Hypochondriac Joe Banks finds out he has six months to live, quits his dead end job, musters the courage to ask his female co-workder out on a date, and is then hired to jump into a volcano by a mysterious visitor.","id":"2565","runtime":102,"imdbId":"tt0099892","version":89,"lastModified":"1301904643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1c\/4bc916f0017a3c57fe008b1c\/joe-versus-the-volcano-mid.jpg","studio":"Amblin Entertainment","genre":"Comedy","title":"Joe Versus the Volcano","releaseDate":636940800000,"language":"en","type":"Movie","_key":"16044"} +{"label":"Barry McGovern","version":21,"id":"26094","lastModified":"1301901836000","name":"Barry McGovern","type":"Person","_key":"16045"} +{"label":"John Patrick Shanley","version":46,"id":"26095","lastModified":"1301901328000","name":"John Patrick Shanley","type":"Person","_key":"16046"} +{"label":"Le Temps qui reste","description":"No overview found.","id":"2566","runtime":85,"imdbId":"tt0417189","version":77,"lastModified":"1302038843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b36\/4bc916f7017a3c57fe008b36\/le-temps-qui-reste-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Drama","title":"Le Temps qui reste","releaseDate":1133308800000,"language":"en","type":"Movie","_key":"16047"} +{"label":"Melvil Poupaud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/512\/4d10d4555e73d60834000512\/melvil-poupaud-profile.jpg","version":52,"id":"26100","lastModified":"1301901222000","name":"Melvil Poupaud","type":"Person","_key":"16048"} +{"label":"Marie Rivi\u00e8re","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/579\/4cd794a85e73d676cf000579\/marie-riviere-profile.jpg","version":44,"id":"26101","lastModified":"1301901353000","name":"Marie Rivi\u00e8re","type":"Person","_key":"16049"} +{"label":"Christian Sengewald","version":26,"id":"26102","lastModified":"1301902011000","name":"Christian Sengewald","type":"Person","_key":"16050"} +{"label":"Louise-Anne Hippeau","version":21,"id":"26103","lastModified":"1301901911000","name":"Louise-Anne Hippeau","type":"Person","_key":"16051"} +{"label":"Henri de Lorme","version":21,"id":"26104","lastModified":"1301902114000","name":"Henri de Lorme","type":"Person","_key":"16052"} +{"label":"Walter Pagano","version":21,"id":"26105","lastModified":"1301902114000","name":"Walter Pagano","type":"Person","_key":"16053"} +{"label":"Ugo Soussan Trabelsi","version":21,"id":"26106","lastModified":"1301902114000","name":"Ugo Soussan Trabelsi","type":"Person","_key":"16054"} +{"label":"Alba Ga\u00efa Kraghede Bellugi","version":21,"id":"26107","lastModified":"1301902114000","name":"Alba Ga\u00efa Kraghede Bellugi","type":"Person","_key":"16055"} +{"label":"Victor Poulouin","version":21,"id":"26108","lastModified":"1301902114000","name":"Victor Poulouin","type":"Person","_key":"16056"} +{"label":"Laurence Ragon","version":21,"id":"26109","lastModified":"1301902114000","name":"Laurence Ragon","type":"Person","_key":"16057"} +{"label":"The Aviator","description":"Young Hughes directs one of Scorsese's favorite films, Hell's Angels. Hughes was so obsessed with perfection in the aerial sequences that he waits forever for perfect conditions, right down to cloud formations. The Aviator ends in 1946, when Hughes was still a dashing young man and romancing actresses like Ava Gardner and Katharine Hepburn.","id":"2567","runtime":170,"imdbId":"tt0338751","trailer":"http:\/\/www.youtube.com\/watch?v=zikFDK4cuQA","version":231,"lastModified":"1301903646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4f\/4bc916fa017a3c57fe008b4f\/the-aviator-mid.jpg","studio":"Appian Way","genre":"Drama","title":"The Aviator","releaseDate":1103932800000,"language":"en","tagline":"For some men, the sky was the limit. For him, it was just the beginning.","type":"Movie","_key":"16058"} +{"label":"The Lovers","description":"A shallow, provincial wife finds her life changed overnight by a sudden tryst with an unpretentious, young architect.","id":"2574","runtime":90,"imdbId":"tt0052556","version":109,"lastModified":"1301995929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b67\/4bc91701017a3c57fe008b67\/les-amants-mid.jpg","studio":"Nouvelles \u00c9ditions de Film","genre":"Drama","title":"The Lovers","releaseDate":-357350400000,"language":"en","type":"Movie","_key":"16059"} +{"label":"Alain Cavalier","version":24,"id":"26182","lastModified":"1301901828000","name":"Alain Cavalier","type":"Person","_key":"16060"} +{"label":"Fran\u00e7ois Leterrier","version":28,"id":"26183","lastModified":"1301901367000","name":"Fran\u00e7ois Leterrier","type":"Person","_key":"16061"} +{"label":"Jean-Marc Bory","version":21,"id":"26163","lastModified":"1301901910000","name":"Jean-Marc Bory","type":"Person","_key":"16062"} +{"label":"Judith Magre","version":23,"id":"26165","lastModified":"1301902041000","name":"Judith Magre","type":"Person","_key":"16063"} +{"label":"Mich\u00e8le Girardon","version":24,"id":"26166","lastModified":"1301901965000","name":"Mich\u00e8le Girardon","type":"Person","_key":"16064"} +{"label":"Georgette Lobre","version":20,"id":"26167","lastModified":"1301902114000","name":"Georgette Lobre","type":"Person","_key":"16065"} +{"label":"Patricia Maurin","version":20,"id":"26169","lastModified":"1301902114000","name":"Patricia Maurin","type":"Person","_key":"16066"} +{"label":"Lucienne Hamon","version":20,"id":"26170","lastModified":"1301901910000","name":"Lucienne Hamon","type":"Person","_key":"16067"} +{"label":"Pierre Frag","version":20,"id":"26171","lastModified":"1301902114000","name":"Pierre Frag","type":"Person","_key":"16068"} +{"label":"Gib Grossac","version":20,"id":"26173","lastModified":"1301902114000","name":"Gib Grossac","type":"Person","_key":"16069"} +{"label":"The Tailor of Panama","description":"A British spy is banished to Panama after having an affair with an ambassador's mistress. Once there he makes connection with a local tailor with a nefarious past and connections to all of the top political and gangster figures in Panama. The tailor also has a wife, who works for the Panamanian president and a huge debt. The mission is to learn what the President intends to do with the Canal.","id":"2575","runtime":109,"imdbId":"tt0236784","version":227,"lastModified":"1301902533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b75\/4bc91702017a3c57fe008b75\/the-tailor-of-panama-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"The Tailor of Panama","releaseDate":981849600000,"language":"en","type":"Movie","_key":"16070"} +{"label":"Leonor Varela","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f4\/4d05acc85e73d621a50032f4\/leonor-varela-profile.jpg","version":57,"id":"10839","lastModified":"1302060400000","name":"Leonor Varela","type":"Person","_key":"16071"} +{"label":"Harold Pinter","version":44,"id":"26157","lastModified":"1302031892000","name":"Harold Pinter","type":"Person","_key":"16072"} +{"label":"Lola Boorman","version":21,"id":"26161","lastModified":"1301902190000","name":"Lola Boorman","type":"Person","_key":"16073"} +{"label":"The Diary of Anne Frank","description":"Harrowing story of a young Jewish girl who, with her family and their friends is forced into hiding in an attic in Nazi-occupied Amsterdam.","id":"2576","runtime":180,"imdbId":"tt0052738","version":189,"lastModified":"1301903421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c51\/4d4b347c5e73d617b3000c51\/the-diary-of-anne-frank-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"The Diary of Anne Frank","releaseDate":-340588800000,"language":"en","type":"Movie","_key":"16074"} +{"label":"Millie Perkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/399\/4d94e4e97b9aa11997002399\/millie-perkins-profile.jpg","version":37,"id":"26142","lastModified":"1301901567000","name":"Millie Perkins","type":"Person","_key":"16075"} +{"label":"Gusti Huber","version":20,"id":"26147","lastModified":"1301902114000","name":"Gusti Huber","type":"Person","_key":"16076"} +{"label":"Dodie Heath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ab\/4c5b16fd7b9aa151f50006ab\/dodie-heath-profile.jpg","version":23,"id":"26148","lastModified":"1301902048000","name":"Dodie Heath","type":"Person","_key":"16077"} +{"label":"Robert Boon","version":22,"id":"26149","lastModified":"1301902172000","name":"Robert Boon","type":"Person","_key":"16078"} +{"label":"Delmar Erickson","version":18,"id":"26150","lastModified":"1301902114000","name":"Delmar Erickson","type":"Person","_key":"16079"} +{"label":"Gretchen Goertz","version":20,"id":"26152","lastModified":"1301902114000","name":"Gretchen Goertz","type":"Person","_key":"16080"} +{"label":"William Kirschner","version":20,"id":"26153","lastModified":"1301902114000","name":"William Kirschner","type":"Person","_key":"16081"} +{"label":"Edmund Purdom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4c49b4427b9aa115fc0000ad\/edmund-purdom-profile.jpg","version":44,"id":"26155","lastModified":"1301901450000","name":"Edmund Purdom","type":"Person","_key":"16082"} +{"label":"Frank Tweddell","version":22,"id":"26156","lastModified":"1301902114000","name":"Frank Tweddell","type":"Person","_key":"16083"} +{"label":"Charles Wagenheim","version":25,"id":"26158","lastModified":"1301901939000","name":"Charles Wagenheim","type":"Person","_key":"16084"} +{"label":"Code 46","description":"A futuristic 'Brief Encounter', a love story in which the romance is doomed by genetic incompatibility.","id":"2577","runtime":92,"imdbId":"tt0345061","trailer":"http:\/\/www.youtube.com\/watch?v=U9BkV2TUHCY","version":438,"lastModified":"1301903754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7e\/4bc91703017a3c57fe008b7e\/code-46-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Code 46","releaseDate":1062460800000,"language":"en","type":"Movie","_key":"16085"} +{"label":"Nabil Elouahabi","version":18,"id":"26197","lastModified":"1301901410000","name":"Nabil Elouahabi","type":"Person","_key":"16086"} +{"label":"Sarah Backhous","version":21,"id":"26198","lastModified":"1301901696000","name":"Sarah Backhous","type":"Person","_key":"16087"} +{"label":"Jonathan Ibbotson","version":21,"id":"26199","lastModified":"1301902025000","name":"Jonathan Ibbotson","type":"Person","_key":"16088"} +{"label":"Emil Marwa","version":26,"id":"26201","lastModified":"1301901956000","name":"Emil Marwa","type":"Person","_key":"16089"} +{"label":"Nina Fog","version":21,"id":"26202","lastModified":"1301902190000","name":"Nina Fog","type":"Person","_key":"16090"} +{"label":"Bruno Lastra","version":22,"id":"26203","lastModified":"1301901956000","name":"Bruno Lastra","type":"Person","_key":"16091"} +{"label":"Natalie Jackson Mendoza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/963\/4d90d90c7b9aa1675e003963\/natalie-jackson-mendoza-profile.jpg","version":35,"id":"57575","lastModified":"1301901326000","name":"Natalie Jackson Mendoza","type":"Person","_key":"16092"} +{"label":"Brother Sun, Sister Moon","description":"This is a dramatization of events in the life of St. Francis of Assisi from before his conversion experience through his audience with the pope, including his friendship with St. Clare.","id":"2587","runtime":135,"imdbId":"tt0069824","version":125,"lastModified":"1301418035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/059\/4c14652e5e73d64a20000059\/fratello-sole-sorella-luna-mid.jpg","studio":"Euro International Film","genre":"Drama","title":"Brother Sun, Sister Moon","releaseDate":99964800000,"language":"en","type":"Movie","_key":"16093"} +{"label":"Graham Faulkner","version":19,"id":"26255","lastModified":"1301901771000","name":"Graham Faulkner","type":"Person","_key":"16094"} +{"label":"Judi Bowker","version":21,"id":"26256","lastModified":"1301902003000","name":"Judi Bowker","type":"Person","_key":"16095"} +{"label":"Leigh Lawson","version":28,"id":"26257","lastModified":"1301901216000","name":"Leigh Lawson","type":"Person","_key":"16096"} +{"label":"Kenneth Cranham","version":45,"id":"26258","lastModified":"1301901336000","name":"Kenneth Cranham","type":"Person","_key":"16097"} +{"label":"Nicholas Willatt","version":19,"id":"26260","lastModified":"1301901771000","name":"Nicholas Willatt","type":"Person","_key":"16098"} +{"label":"John Sharp","version":26,"id":"26261","lastModified":"1301901681000","name":"John Sharp","type":"Person","_key":"16099"} +{"label":"Francesco Guerrieri","version":19,"id":"26262","lastModified":"1301902131000","name":"Francesco Guerrieri","type":"Person","_key":"16100"} +{"label":"Carlo Pisacane","version":23,"id":"26263","lastModified":"1301902137000","name":"Carlo Pisacane","type":"Person","_key":"16101"} +{"label":"Ca\u00f3tica Ana","description":"Drama by Julio Medem about a young woman's life.","id":"2588","runtime":119,"imdbId":"tt0456340","trailer":"http:\/\/www.youtube.com\/watch?v=183","homepage":"http:\/\/www.juliomedem.org\/caoticaana\/historia.html","version":80,"lastModified":"1301904962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b93\/4bc91707017a3c57fe008b93\/caotica-ana-mid.jpg","studio":"Alicia Produce S L","genre":"Comedy","title":"Ca\u00f3tica Ana","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"16102"} +{"label":"M\u00f3nica S\u00e1nchez","version":20,"id":"26272","lastModified":"1301901542000","name":"M\u00f3nica S\u00e1nchez","type":"Person","_key":"16103"} +{"label":"Manuela Vell\u00e9s","version":20,"id":"26279","lastModified":"1301901432000","name":"Manuela Vell\u00e9s","type":"Person","_key":"16104"} +{"label":"Bebe","version":20,"id":"26280","lastModified":"1301901478000","name":"Bebe","type":"Person","_key":"16105"} +{"label":"Asier Newman","version":23,"id":"26281","lastModified":"1301901485000","name":"Asier Newman","type":"Person","_key":"16106"} +{"label":"Nicolas Cazal\u00e9","version":30,"id":"26282","lastModified":"1301901701000","name":"Nicolas Cazal\u00e9","type":"Person","_key":"16107"} +{"label":"Gerrit Graham","version":42,"id":"26283","lastModified":"1301901313000","name":"Gerrit Graham","type":"Person","_key":"16108"} +{"label":"Giacomo Gonnella","version":21,"id":"26284","lastModified":"1301901824000","name":"Giacomo Gonnella","type":"Person","_key":"16109"} +{"label":"Leslie Charles","version":20,"id":"26285","lastModified":"1301901747000","name":"Leslie Charles","type":"Person","_key":"16110"} +{"label":"Sue Flack","version":20,"id":"26287","lastModified":"1301901623000","name":"Sue Flack","type":"Person","_key":"16111"} +{"label":"Ra\u00fal Pe\u00f1a","version":22,"id":"26288","lastModified":"1301901623000","name":"Ra\u00fal Pe\u00f1a","type":"Person","_key":"16112"} +{"label":"Juanma Lara","version":22,"id":"26289","lastModified":"1301901747000","name":"Juanma Lara","type":"Person","_key":"16113"} +{"label":"Sybelle Silverphoenix","version":18,"id":"26290","lastModified":"1301901747000","name":"Sybelle Silverphoenix","type":"Person","_key":"16114"} +{"label":"Antonio Vega","version":16,"id":"279","lastModified":"1299492771000","name":"Antonio Vega","type":"Person","_key":"16115"} +{"label":"The Fire Within","description":"Alain Leroy is a recovering alcoholic who decides to end his life, but first decides to visit his friends in Paris one last time, in an attempt at finding a reason to continue living.","id":"2593","runtime":108,"imdbId":"tt0057058","version":101,"lastModified":"1301995954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48a\/4d6a4e657b9aa1363600248a\/le-feu-follet-mid.jpg","studio":"Nouvelles \u00c9ditions de Film","genre":"Drama","title":"The Fire Within","releaseDate":-196128000000,"language":"en","type":"Movie","_key":"16116"} +{"label":"L\u00e9na Skerla","version":21,"id":"26361","lastModified":"1301901910000","name":"L\u00e9na Skerla","type":"Person","_key":"16117"} +{"label":"Jean-Paul Moulinot","version":21,"id":"26362","lastModified":"1301901747000","name":"Jean-Paul Moulinot","type":"Person","_key":"16118"} +{"label":"Mona Dol","version":21,"id":"26363","lastModified":"1301901747000","name":"Mona Dol","type":"Person","_key":"16119"} +{"label":"Pierre Moncorbier","version":22,"id":"26364","lastModified":"1301901910000","name":"Pierre Moncorbier","type":"Person","_key":"16120"} +{"label":"Ren\u00e9 Dupuy","version":22,"id":"26365","lastModified":"1301901824000","name":"Ren\u00e9 Dupuy","type":"Person","_key":"16121"} +{"label":"Bernard Tiphaine","version":22,"id":"26366","lastModified":"1301902113000","name":"Bernard Tiphaine","type":"Person","_key":"16122"} +{"label":"Bernard No\u00ebl","version":25,"id":"26367","lastModified":"1301901701000","name":"Bernard No\u00ebl","type":"Person","_key":"16123"} +{"label":"Ursula Kubler","version":21,"id":"26368","lastModified":"1301901747000","name":"Ursula Kubler","type":"Person","_key":"16124"} +{"label":"Fran\u00e7ois Gragnon","version":21,"id":"26369","lastModified":"1301901747000","name":"Fran\u00e7ois Gragnon","type":"Person","_key":"16125"} +{"label":"Romain Bouteille","version":23,"id":"26370","lastModified":"1301901910000","name":"Romain Bouteille","type":"Person","_key":"16126"} +{"label":"Jacques Sereys","version":24,"id":"26371","lastModified":"1301902161000","name":"Jacques Sereys","type":"Person","_key":"16127"} +{"label":"Claude Deschamps","version":21,"id":"26372","lastModified":"1301901747000","name":"Claude Deschamps","type":"Person","_key":"16128"} +{"label":"Tony Taffin","version":21,"id":"26373","lastModified":"1301901747000","name":"Tony Taffin","type":"Person","_key":"16129"} +{"label":"Monsieur Batignole","description":"Sous la France occup\u00e9e de 1942, \u00e0 Paris, Edmond Batignole, un boucher sans histoire, tente de survivre comme tant d'autres. Il peut se laisser entra\u00eener par son entourage et sa l\u00e2chet\u00e9 sur les pentes de l'infamie. Mais il va choisir de lutter pour sauver la vie de Simon, un petit enfant juif.","id":"2594","runtime":100,"imdbId":"tt0291400","version":270,"lastModified":"1301903381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b98\/4bc91707017a3c57fe008b98\/monsieur-batignole-mid.jpg","studio":"Novo Arturo Films","genre":"Comedy","title":"Monsieur Batignole","releaseDate":1015372800000,"language":"en","type":"Movie","_key":"16130"} +{"label":"Mich\u00e8le Garcia","version":24,"id":"26401","lastModified":"1301901585000","name":"Mich\u00e8le Garcia","type":"Person","_key":"16131"} +{"label":"Alexia Portal","version":20,"id":"26402","lastModified":"1301902190000","name":"Alexia Portal","type":"Person","_key":"16132"} +{"label":"Violette Blanckaert","version":20,"id":"26403","lastModified":"1301902193000","name":"Violette Blanckaert","type":"Person","_key":"16133"} +{"label":"Daphn\u00e9 Baiwir","version":26,"id":"26404","lastModified":"1301902200000","name":"Daphn\u00e9 Baiwir","type":"Person","_key":"16134"} +{"label":"G\u00f6tz Burger","version":22,"id":"26405","lastModified":"1301901677000","name":"G\u00f6tz Burger","type":"Person","_key":"16135"} +{"label":"Der Fluch des Waldes","description":"No overview found.","id":"2601","runtime":45,"version":23,"lastModified":"1301908617000","genre":"Horror","title":"Der Fluch des Waldes","releaseDate":1127692800000,"language":"en","type":"Movie","_key":"16136"} +{"label":"Jan Luttenberger","version":18,"id":"26603","lastModified":"1301901585000","name":"Jan Luttenberger","type":"Person","_key":"16137"} +{"label":"Florian Sch\u00f6nbauer","version":26,"id":"27316","lastModified":"1301901662000","name":"Florian Sch\u00f6nbauer","type":"Person","_key":"16138"} +{"label":"Tanja Parapatics","version":16,"id":"26605","lastModified":"1301901820000","name":"Tanja Parapatics","type":"Person","_key":"16139"} +{"label":"Patrick Laferl","version":20,"id":"26606","lastModified":"1301902161000","name":"Patrick Laferl","type":"Person","_key":"16140"} +{"label":"Petra Zierhofer","version":16,"id":"26607","lastModified":"1301901583000","name":"Petra Zierhofer","type":"Person","_key":"16141"} +{"label":"Nathalie Wei\u00df","version":16,"id":"26608","lastModified":"1301902188000","name":"Nathalie Wei\u00df","type":"Person","_key":"16142"} +{"label":"Florian Hainfellner","version":20,"id":"26609","lastModified":"1301902161000","name":"Florian Hainfellner","type":"Person","_key":"16143"} +{"label":"Ulrike Kientzl","version":16,"id":"26610","lastModified":"1301902190000","name":"Ulrike Kientzl","type":"Person","_key":"16144"} +{"label":"Scream Collection","description":"No overview found.","id":"2602","runtime":347,"version":443,"lastModified":"1301903985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03e\/4c8eaebd5e73d6149500003e\/scream-collection-mid.jpg","studio":"Dimension Films","title":"Scream Collection","language":"en","tagline":"Don't Answer The Phone. Don't Open The Door. Don't Try To Escape.","type":"Movie","_key":"16145"} +{"label":"Born on the Fourth of July","description":"The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for. ","id":"2604","runtime":145,"imdbId":"tt0096969","trailer":"http:\/\/www.youtube.com\/watch?v=t8NR6n1nRMI","version":186,"lastModified":"1301902410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d7\/4d3f69087b9aa15bb00017d7\/born-on-the-fourth-of-july-mid.jpg","genre":"Drama","title":"Born on the Fourth of July","releaseDate":630115200000,"language":"en","tagline":"A story of innocence lost and courage found.","type":"Movie","_key":"16146"} +{"label":"Caroline Kava","version":33,"id":"26466","lastModified":"1302031948000","name":"Caroline Kava","type":"Person","_key":"16147"} +{"label":"Holly Marie Combs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fe\/4d112d2a5e73d608320006fe\/holly-marie-combs-profile.jpg","version":54,"id":"26469","lastModified":"1301901422000","name":"Holly Marie Combs","type":"Person","_key":"16148"} +{"label":"Kyra Sedgwick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cf\/4d83e7e77b9aa12ed80005cf\/kyra-sedgwick-profile.jpg","version":60,"id":"26467","lastModified":"1301901081000","name":"Kyra Sedgwick","type":"Person","_key":"16149"} +{"label":"Rob Camilletti","version":25,"id":"26468","lastModified":"1301904120000","name":"Rob Camilletti","type":"Person","_key":"16150"} +{"label":"Jerry Levine","version":27,"id":"26470","lastModified":"1301901910000","name":"Jerry Levine","type":"Person","_key":"16151"} +{"label":"Short Circuit","description":"After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.","id":"2605","runtime":98,"imdbId":"tt0091949","trailer":"http:\/\/www.youtube.com\/watch?v=RBtRVjAMbVo","version":194,"lastModified":"1301902421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb8\/4bc9170a017a3c57fe008bb8\/short-circuit-mid.jpg","studio":"David Foster Productions","genre":"Action","title":"Short Circuit","releaseDate":515980800000,"language":"en","tagline":"Something wonderful has happened... No. 5 is alive!","type":"Movie","_key":"16152"} +{"label":"Steve Guttenberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4cadb3037b9aa11b3b0000b2\/steve-guttenberg-profile.jpg","version":88,"birthday":"-358390800000","id":"26472","lastModified":"1301901215000","name":"Steve Guttenberg","type":"Person","_key":"16153"} +{"label":"Fisher Stevens","version":59,"id":"26473","lastModified":"1301901531000","name":"Fisher Stevens","type":"Person","_key":"16154"} +{"label":"G.W. Bailey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4cadb2137b9aa11b3d0000cc\/g-w-bailey-profile.jpg","version":44,"birthday":"-799898400000","id":"27237","lastModified":"1301901662000","name":"G.W. Bailey","type":"Person","_key":"16155"} +{"label":"Brian McNamara","version":30,"id":"27238","lastModified":"1301902028000","name":"Brian McNamara","type":"Person","_key":"16156"} +{"label":"Maid to Order","description":"When the behavior of his wild and out of control daughter causes her millionaire father to wish he'd never had a daughter, her fairy godmother appears and grants his wish.","id":"2608","runtime":93,"imdbId":"tt0093476","trailer":"http:\/\/www.youtube.com\/watch?v=OuPWK_antUI","version":105,"lastModified":"1301905860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4c85e0025e73d66b5c000094\/maid-to-order-mid.jpg","studio":"Lorimar Productions","genre":"Comedy","title":"Maid to Order","releaseDate":552873600000,"language":"en","type":"Movie","_key":"16157"} +{"label":"Michael Ontkean","version":24,"id":"6678","lastModified":"1301901287000","name":"Michael Ontkean","type":"Person","_key":"16158"} +{"label":"Merry Clayton","version":20,"id":"26482","lastModified":"1301902184000","name":"Merry Clayton","type":"Person","_key":"16159"} +{"label":"Amy Holden Jones","version":32,"id":"21371","lastModified":"1301901807000","name":"Amy Holden Jones","type":"Person","_key":"16160"} +{"label":"Planes, Trains and Automobiles","description":"Think you've had a bad day? At every turn, marketing exec Neal Page's plans to get home to his family for Thanksgiving get foiled, and somehow the loudmouthed, idiosyncratic fellow traveler Del Griffith is always right next to him driving him nuts.","id":"2609","runtime":93,"imdbId":"tt0093748","trailer":"http:\/\/www.youtube.com\/watch?v=SNWx7_tZRcI","version":144,"lastModified":"1301902279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/180\/4c39636c7b9aa10edd000180\/planes-trains-automobiles-mid.jpg","studio":"Hughes Entertainment","genre":"Comedy","title":"Planes, Trains and Automobiles","releaseDate":564796800000,"language":"en","tagline":"What he really wanted was to spend Thanksgiving with his family. What he got was three days with the turkey","type":"Movie","_key":"16161"} +{"label":"Laila Robins","version":28,"id":"27260","lastModified":"1301901785000","name":"Laila Robins","type":"Person","_key":"16162"} +{"label":"Olivia Burnette","version":23,"id":"27261","lastModified":"1301901766000","name":"Olivia Burnette","type":"Person","_key":"16163"} +{"label":"Carol Bruce","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ea\/4c9cc65f7b9aa1430f0000ea\/carol-bruce-profile.jpg","version":24,"id":"27262","lastModified":"1301901842000","name":"Carol Bruce","type":"Person","_key":"16164"} +{"label":"Diana Douglas","version":26,"id":"27263","lastModified":"1301902136000","name":"Diana Douglas","type":"Person","_key":"16165"} +{"label":"Susan Kellermann","version":23,"id":"27264","lastModified":"1301901330000","name":"Susan Kellermann","type":"Person","_key":"16166"} +{"label":"Shopgirl","description":"Mirabelle is a disenchanted salesgirl and aspiring artist who sells gloves and accessories at a department store. She has two men in her life: wealthy divorc\u00e9e Ray Porter and struggling musician Jeremy. Mirabelle falls in love with the glamorous Ray, and her life takes a magical turn, but eventually she realizes that she must empower herself and make a choice between them.","id":"2610","runtime":104,"imdbId":"tt0338427","version":160,"lastModified":"1301902196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36d\/4d4f316c5e73d617b700336d\/shopgirl-mid.jpg","studio":"Hyde Park Films","genre":"Comedy","title":"Shopgirl","releaseDate":1129852800000,"language":"en","type":"Movie","_key":"16167"} +{"label":"Rebecca Pidgeon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/169\/4d7264957b9aa10f54000169\/rebecca-pidgeon-profile.jpg","version":39,"birthday":"-133405200000","id":"27267","lastModified":"1301901471000","name":"Rebecca Pidgeon","type":"Person","_key":"16168"} +{"label":"Samantha Shelton","version":20,"id":"27268","lastModified":"1301901910000","name":"Samantha Shelton","type":"Person","_key":"16169"} +{"label":"Gina Doctor","version":20,"id":"27269","lastModified":"1301901623000","name":"Gina Doctor","type":"Person","_key":"16170"} +{"label":"Anand Tucker","version":34,"id":"26481","lastModified":"1301901376000","name":"Anand Tucker","type":"Person","_key":"16171"} +{"label":"Only the Lonely","description":"Danny Muldoon (John Candy), a Chicago policeman, still lives with his overbearing mother Rose (Maureen O'Hara). He meets and falls in love with Theresa Luna (Ally Sheedy), whose father owns the local funeral parlour. Naturally, his mother objects to the relationship, and Danny and Theresa must either overcome her objections or give up the romance.","id":"2611","runtime":104,"imdbId":"tt0102598","trailer":"http:\/\/www.youtube.com\/watch?v=nUBa7nHTC6c","version":124,"lastModified":"1301904893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02b\/4c128bc37b9aa1027000002b\/only-the-lonely-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Only the Lonely","releaseDate":675043200000,"language":"en","type":"Movie","_key":"16172"} +{"label":"Maureen O'Hara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/083\/4bd811c7017a3c1c05000083\/maureen-o-hara-profile.jpg","version":66,"id":"70035","lastModified":"1301901168000","name":"Maureen O'Hara","type":"Person","_key":"16173"} +{"label":"Mr. Destiny","description":"Larry Burrows is unhappy and feels powerless over his life. He believes his entire life could have turned out differently had he not missed that shot in a baseball game when was a kid. One night he meets this mysterious man, who could change his fate by offering him that alternative life he always dreamed of. But as Burrows embarks on this journey of self discovery he realises that even this new life has its problems and drawbacks..","id":"2612","runtime":110,"imdbId":"tt0100201","trailer":"http:\/\/www.youtube.com\/watch?v=U8E2QhBqpr0","version":124,"lastModified":"1301903742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4cd390195e73d6734c00010c\/mr-destiny-mid.jpg","studio":"Laurence Mark Productions","genre":"Comedy","title":"Mr. Destiny","releaseDate":655689600000,"language":"en","type":"Movie","_key":"16174"} +{"label":"Bill McCutcheon","version":21,"id":"26486","lastModified":"1301902127000","name":"Bill McCutcheon","type":"Person","_key":"16175"} +{"label":"James Orr","version":33,"id":"27444","lastModified":"1301901636000","name":"James Orr","type":"Person","_key":"16176"} +{"label":"Prelude to a Kiss","description":"A couple fall in love despite the girl's pessimistic outlook. As they struggle to come to terms with their relationship, something supernatural happens that tests it.","id":"2613","runtime":105,"imdbId":"tt0105165","version":123,"lastModified":"1301904397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd9\/4bc91710017a3c57fe008bd9\/prelude-to-a-kiss-mid.jpg","studio":"Michael Gruskoff Productions","genre":"Comedy","title":"Prelude to a Kiss","releaseDate":710726400000,"language":"en","type":"Movie","_key":"16177"} +{"label":"Patty Duke","version":25,"id":"27446","lastModified":"1301901800000","name":"Patty Duke","type":"Person","_key":"16178"} +{"label":"Sydney Walker","version":21,"id":"27447","lastModified":"1301902190000","name":"Sydney Walker","type":"Person","_key":"16179"} +{"label":"Rocky Carroll","version":25,"id":"27448","lastModified":"1301901588000","name":"Rocky Carroll","type":"Person","_key":"16180"} +{"label":"Norman Ren\u00e9","version":21,"id":"26487","lastModified":"1301901672000","name":"Norman Ren\u00e9","type":"Person","_key":"16181"} +{"label":"InnerSpace","description":"A hapless store clerk must foil criminals to save the life of the man who, miniaturized in a secret experiment, was accidentally injected into him.","id":"2614","runtime":120,"imdbId":"tt0093260","version":226,"lastModified":"1301902927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f5\/4c20b3ef7b9aa130e50001f5\/innerspace-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"InnerSpace","releaseDate":552096000000,"language":"en","type":"Movie","_key":"16182"} +{"label":"Fiona Lewis","version":33,"id":"26490","lastModified":"1301902033000","name":"Fiona Lewis","type":"Person","_key":"16183"} +{"label":"Vernon Wells","version":60,"id":"26491","lastModified":"1301901195000","name":"Vernon Wells","type":"Person","_key":"16184"} +{"label":"Uncle Buck","description":"Uncle Buck has a reputation for being unreliable and a bit of a house wrecker. It is therefore with reluctance, his sister-in-law agrees to leave Buck looking after the kids (two harmless youngsters and a rebelious teenager) when she visits her sick father.","id":"2616","runtime":100,"imdbId":"tt0098554","trailer":"http:\/\/www.youtube.com\/watch?v=1_lOyGcMIEU","version":162,"lastModified":"1301907112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf3\/4bc91712017a3c57fe008bf3\/uncle-buck-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Uncle Buck","releaseDate":619228800000,"language":"en","tagline":"He's crude. He's crass. He's family.","type":"Movie","_key":"16185"} +{"label":"Elaine Bromka","version":21,"id":"27491","lastModified":"1301901516000","name":"Elaine Bromka","type":"Person","_key":"16186"} +{"label":"Garrett M. Brown","version":38,"id":"27492","lastModified":"1301901177000","name":"Garrett M. Brown","type":"Person","_key":"16187"} +{"label":"Jay Underwood","version":25,"id":"27493","lastModified":"1301901570000","name":"Jay Underwood","type":"Person","_key":"16188"} +{"label":"The Great Outdoors","description":"Suburbanite Chet Ripley takes his family to a lakeside resort for what he thinks will be a quiet vacation away from it all. But then his snobby brother-in-law Roman Craig shows up with his snooty brood, and unexpected mishaps ensue. The two families try to get along \u2026 but they didn't count on Mother Nature stepping in to add her two cents.","id":"2617","runtime":91,"imdbId":"tt0095253","version":128,"lastModified":"1301904801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59b\/4d4dedfe7b9aa13aab00959b\/the-great-outdoors-mid.jpg","studio":"Hughes Entertainment","genre":"Comedy","title":"The Great Outdoors","releaseDate":582508800000,"language":"en","tagline":"The wildlife is wild, but his brother-in-law in unbearable.","type":"Movie","_key":"16189"} +{"label":"Chris Young","version":29,"id":"27504","lastModified":"1301901644000","name":"Chris Young","type":"Person","_key":"16190"} +{"label":"Ian Giatti","version":20,"id":"27505","lastModified":"1301902113000","name":"Ian Giatti","type":"Person","_key":"16191"} +{"label":"Hilary Gordon","version":20,"id":"27506","lastModified":"1301901747000","name":"Hilary Gordon","type":"Person","_key":"16192"} +{"label":"Rebecca Gordon","version":20,"id":"27507","lastModified":"1301902113000","name":"Rebecca Gordon","type":"Person","_key":"16193"} +{"label":"Zoaunne LeRoy","version":20,"id":"27508","lastModified":"1301902113000","name":"Zoaunne LeRoy","type":"Person","_key":"16194"} +{"label":"Splash","description":"A star-studded cast including Tom Hanks, Daryl Hannah and John Candy join together for this hilarious comedy. The fun starts when a successful businessman (Hanks) falls in love with the girl of his dreams (Daryl Hannah). There's one big complication though; he's fallen hook, line and sinker for a mermaid.","id":"2619","runtime":111,"imdbId":"tt0088161","version":85,"lastModified":"1301902869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5c\/4bc91726017a3c57fe008c5c\/splash-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Splash","releaseDate":447638400000,"language":"en","type":"Movie","_key":"16195"} +{"label":"Shecky Greene","version":27,"id":"27514","lastModified":"1301901708000","name":"Shecky Greene","type":"Person","_key":"16196"} +{"label":"Richard B. Shull","version":25,"id":"27515","lastModified":"1301901542000","name":"Richard B. Shull","type":"Person","_key":"16197"} +{"label":"Bobby Di Cicco","version":31,"id":"27516","lastModified":"1301901435000","name":"Bobby Di Cicco","type":"Person","_key":"16198"} +{"label":"Howard Morris","version":28,"id":"27517","lastModified":"1301901641000","name":"Howard Morris","type":"Person","_key":"16199"} +{"label":"Lowell Ganz","version":67,"id":"27518","lastModified":"1301901445000","name":"Lowell Ganz","type":"Person","_key":"16200"} +{"label":"Babaloo Mandel","version":62,"id":"27519","lastModified":"1301901495000","name":"Babaloo Mandel","type":"Person","_key":"16201"} +{"label":"Armed and Dangerous","description":"Dooley, a cop wrongly sacked for corruption, teams up with a useless defence lawyer in their new careers... as security guards. When the two are made fall guys for a robbery at a location they are guarding, the pair begin to investigate corruption within the company and their union. They soon make enemies of everyone, but can the unlikely duo save the day?","id":"2620","runtime":88,"imdbId":"tt0090660","trailer":"http:\/\/www.youtube.com\/watch?v=xKHhWsYpF1E","version":167,"lastModified":"1301905204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c65\/4bc9172a017a3c57fe008c65\/armed-and-dangerous-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Armed and Dangerous","releaseDate":524448000000,"language":"en","type":"Movie","_key":"16202"} +{"label":"Don Stroud","version":34,"id":"69494","lastModified":"1301901663000","name":"Don Stroud","type":"Person","_key":"16203"} +{"label":"Return to Me","description":"It took a lot of cajoling to get Bob (Duchovny), a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress, Grace (Driver). Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.","id":"2621","runtime":115,"imdbId":"tt0122459","version":351,"lastModified":"1301903696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6e\/4bc9172b017a3c57fe008c6e\/return-to-me-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Return to Me","releaseDate":955065600000,"language":"en","type":"Movie","_key":"16204"} +{"label":"An Officer and a Gentleman","description":"Zack Mayo is a young man who has signed up for Navy Flight School. He is a Navy brat who has a bad attitude problem. Sgt. Foley is there to train and evaluate him and will clearly find Zack wanting. Zack meets Paula, a girl who has little beyond family and must decide what it is he wants to do with his life.","id":"2623","runtime":122,"imdbId":"tt0084434","version":200,"lastModified":"1301904627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c81\/4bc9172c017a3c57fe008c81\/an-officer-and-a-gentleman-mid.jpg","studio":"Lorimar Film Entertainment","genre":"Drama","title":"An Officer and a Gentleman","releaseDate":398044800000,"language":"en","type":"Movie","_key":"16205"} +{"label":"Debra Winger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8df\/4cb8fb787b9aa138da0008df\/debra-winger-profile.jpg","version":49,"id":"26513","lastModified":"1301901231000","name":"Debra Winger","type":"Person","_key":"16206"} +{"label":"Lisa Blount","version":34,"id":"27539","lastModified":"1301901373000","name":"Lisa Blount","type":"Person","_key":"16207"} +{"label":"Harold Sylvester","version":28,"id":"27540","lastModified":"1301901707000","name":"Harold Sylvester","type":"Person","_key":"16208"} +{"label":"Mr. Jones","description":"The story about the relationship between a manic depressive man, Mr Jones, and the female doctor who takes more than a professional interest in his treatment.","id":"2625","runtime":114,"imdbId":"tt0107611","version":136,"lastModified":"1301904893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4c8f7d185e73d61495000134\/mr-jones-mid.jpg","studio":"Rastar Films","genre":"Drama","title":"Mr. Jones","releaseDate":750038400000,"language":"en","type":"Movie","_key":"16209"} +{"label":"Tom Irwin","version":20,"id":"27544","lastModified":"1301901586000","name":"Tom Irwin","type":"Person","_key":"16210"} +{"label":"Bruce Altman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/556\/4cca0b8d5e73d65020000556\/bruce-altman-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Married and has one daughterStudied in NYC with William Hickey and at the William Esper studio.<\/p>A 1990 graduate of the Yale School of Drama.<\/p><\/span>","version":56,"birthday":"-457578000000","id":"27545","birthplace":"The Bronx, New York, U.S","lastModified":"1301901301000","name":"Bruce Altman","type":"Person","_key":"16211"} +{"label":"Lauren Tom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4bf985a8017a3c7033000231\/lauren-tom-profile.jpg","biography":"Lauren Tom (born August 4, 1961) is an American actress and voice actress perhaps best known for her roles as Lena St Clair in The Joy Luck Club, Julie in the TV series Friends, providing the voices for two animated TV comedy series on Futurama as Amy Wong and her mother Inez, and on King of the Hill as Minh & Connie Souphanousinphone.","version":65,"id":"15100","lastModified":"1302001428000","name":"Lauren Tom","type":"Person","_key":"16212"} +{"label":"Lisa Malkiewicz","version":20,"id":"27546","lastModified":"1301901824000","name":"Lisa Malkiewicz","type":"Person","_key":"16213"} +{"label":"The Specialist","description":"May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.","id":"2636","runtime":110,"imdbId":"tt0111255","trailer":"http:\/\/www.youtube.com\/watch?v=nDFzJHgf9uE","version":124,"lastModified":"1301907112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8f\/4bc9172e017a3c57fe008c8f\/the-specialist-mid.jpg","studio":"Producciones La Iguana","genre":"Action","title":"The Specialist","releaseDate":781488000000,"language":"en","type":"Movie","_key":"16214"} +{"label":"Luis Llosa","version":27,"id":"26648","lastModified":"1301901690000","name":"Luis Llosa","type":"Person","_key":"16215"} +{"label":"Mario Ernesto S\u00e1nchez","version":27,"id":"26651","lastModified":"1301901514000","name":"Mario Ernesto S\u00e1nchez","type":"Person","_key":"16216"} +{"label":"Sergio Dor\u00e9 Jr.","version":21,"id":"26652","lastModified":"1301902018000","name":"Sergio Dor\u00e9 Jr.","type":"Person","_key":"16217"} +{"label":"Chase Randolph","version":24,"id":"26653","lastModified":"1301902013000","name":"Chase Randolph","type":"Person","_key":"16218"} +{"label":"Jeana Bell","version":24,"id":"26654","lastModified":"1301902004000","name":"Jeana Bell","type":"Person","_key":"16219"} +{"label":"Brittany Paige Bouck","version":24,"id":"26655","lastModified":"1301902029000","name":"Brittany Paige Bouck","type":"Person","_key":"16220"} +{"label":"Emilio Estefan Jr.","version":24,"id":"26656","lastModified":"1301902032000","name":"Emilio Estefan Jr.","type":"Person","_key":"16221"} +{"label":"The Mothman Prophecies","description":"Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.","id":"2637","runtime":119,"imdbId":"tt0265349","version":181,"lastModified":"1301902836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9c\/4bc91731017a3c57fe008c9c\/the-mothman-prophecies-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"The Mothman Prophecies","releaseDate":1011916800000,"language":"en","type":"Movie","_key":"16222"} +{"label":"Bob Tracey","version":22,"id":"27550","lastModified":"1301901910000","name":"Bob Tracey","type":"Person","_key":"16223"} +{"label":"Tom Stoviak","version":23,"id":"27551","lastModified":"1301901941000","name":"Tom Stoviak","type":"Person","_key":"16224"} +{"label":"David Eigenberg","version":44,"id":"27552","lastModified":"1301901096000","name":"David Eigenberg","type":"Person","_key":"16225"} +{"label":"Bill Laing","version":22,"id":"27553","lastModified":"1301901910000","name":"Bill Laing","type":"Person","_key":"16226"} +{"label":"Alan Bates","version":59,"id":"27554","lastModified":"1302031892000","name":"Alan Bates","type":"Person","_key":"16227"} +{"label":"Ron Emanuel","version":22,"id":"27681","lastModified":"1301901910000","name":"Ron Emanuel","type":"Person","_key":"16228"} +{"label":"Yvonne Erickson","version":22,"id":"27682","lastModified":"1301901910000","name":"Yvonne Erickson","type":"Person","_key":"16229"} +{"label":"Scott Nunnally","version":22,"id":"27683","lastModified":"1301901910000","name":"Scott Nunnally","type":"Person","_key":"16230"} +{"label":"Harris Mackenzie","version":22,"id":"27684","lastModified":"1301901910000","name":"Harris Mackenzie","type":"Person","_key":"16231"} +{"label":"Zachary Mott","version":22,"id":"27685","lastModified":"1301901910000","name":"Zachary Mott","type":"Person","_key":"16232"} +{"label":"Ann McDonough","version":22,"id":"27686","lastModified":"1301902113000","name":"Ann McDonough","type":"Person","_key":"16233"} +{"label":"Shane Callahan","version":22,"id":"27687","lastModified":"1301901910000","name":"Shane Callahan","type":"Person","_key":"16234"} +{"label":"Dan Callahan","version":22,"id":"27688","lastModified":"1301901910000","name":"Dan Callahan","type":"Person","_key":"16235"} +{"label":"Christin Frame","version":22,"id":"27689","lastModified":"1301901910000","name":"Christin Frame","type":"Person","_key":"16236"} +{"label":"Rohn Thomas","version":22,"id":"27690","lastModified":"1301901910000","name":"Rohn Thomas","type":"Person","_key":"16237"} +{"label":"Susan Nicholas","version":22,"id":"27691","lastModified":"1301902113000","name":"Susan Nicholas","type":"Person","_key":"16238"} +{"label":"Tim Hartman","version":22,"id":"27692","lastModified":"1301902113000","name":"Tim Hartman","type":"Person","_key":"16239"} +{"label":"Jennifer Martin","version":22,"id":"27694","lastModified":"1301901910000","name":"Jennifer Martin","type":"Person","_key":"16240"} +{"label":"Pete Handelman","version":22,"id":"27708","lastModified":"1301901910000","name":"Pete Handelman","type":"Person","_key":"16241"} +{"label":"Matt Miller","version":22,"id":"27709","lastModified":"1301901910000","name":"Matt Miller","type":"Person","_key":"16242"} +{"label":"Josh Braun","version":22,"id":"27710","lastModified":"1301901910000","name":"Josh Braun","type":"Person","_key":"16243"} +{"label":"Doug Korstanje","version":22,"id":"27711","lastModified":"1301901910000","name":"Doug Korstanje","type":"Person","_key":"16244"} +{"label":"Betsy Zajko","version":22,"id":"27712","lastModified":"1301901910000","name":"Betsy Zajko","type":"Person","_key":"16245"} +{"label":"Elizabeth Cazenave","version":22,"id":"27713","lastModified":"1301902113000","name":"Elizabeth Cazenave","type":"Person","_key":"16246"} +{"label":"Sam Nicotero","version":24,"id":"27714","lastModified":"1301901775000","name":"Sam Nicotero","type":"Person","_key":"16247"} +{"label":"Tom Tully","version":22,"id":"97593","lastModified":"1301902641000","name":"Tom Tully","type":"Person","_key":"16248"} +{"label":"Deconstructing Harry","description":"This film tells the story of a successful writer called Harry Block, played by Allen himself, who draws inspiration from people he knows in real-life, and from events that happened to him, sometimes causing these people to become alienated from him as a result.","id":"2639","runtime":96,"imdbId":"tt0118954","version":147,"lastModified":"1301903339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb3\/4bc91733017a3c57fe008cb3\/deconstructing-harry-mid.jpg","studio":"Jean Doumanian Productions","genre":"Comedy","title":"Deconstructing Harry","releaseDate":872553600000,"language":"en","type":"Movie","_key":"16249"} +{"label":"Eric Bogosian","version":40,"id":"10866","lastModified":"1301901649000","name":"Eric Bogosian","type":"Person","_key":"16250"} +{"label":"Amy Irving","version":49,"id":"27563","lastModified":"1301901295000","name":"Amy Irving","type":"Person","_key":"16251"} +{"label":"Eric Lloyd","version":37,"id":"27564","lastModified":"1301901250000","name":"Eric Lloyd","type":"Person","_key":"16252"} +{"label":"Heathers","description":"A girl who half-heartedly tries to be part of the \"in crowd\" of her school meets a rebel who teaches her a more devious way to play social politics.","id":"2640","runtime":102,"imdbId":"tt0097493","trailer":"http:\/\/www.youtube.com\/watch?v=HEeQpejFbYA","version":144,"lastModified":"1301902327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccd\/4bc91734017a3c57fe008ccd\/heathers-mid.jpg","studio":"Cinemarque","genre":"Comedy","title":"Heathers","releaseDate":607305600000,"language":"en","type":"Movie","_key":"16253"} +{"label":"Kim Walker","version":22,"id":"27565","lastModified":"1302059430000","name":"Kim Walker","type":"Person","_key":"16254"} +{"label":"Penelope Milford","version":23,"id":"27566","lastModified":"1302059430000","name":"Penelope Milford","type":"Person","_key":"16255"} +{"label":"Lance Fenton","version":23,"id":"27567","lastModified":"1302059430000","name":"Lance Fenton","type":"Person","_key":"16256"} +{"label":"Jennifer Rhodes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/375\/4d804ad25e73d6724b000375\/jennifer-rhodes-profile.jpg","version":24,"id":"27568","lastModified":"1302059430000","name":"Jennifer Rhodes","type":"Person","_key":"16257"} +{"label":"A.D.","description":"No overview found.","id":"2641","runtime":410,"imdbId":"tt0088471","version":174,"lastModified":"1301908349000","studio":"Procter & Gamble Productions","genre":"History","title":"A.D.","releaseDate":481075200000,"language":"en","type":"Movie","_key":"16258"} +{"label":"Anthony Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73d\/4ca11f005e73d6704900073d\/anthony-andrews-profile.jpg","version":60,"birthday":"-693363600000","id":"26659","lastModified":"1301901379000","name":"Anthony Andrews","type":"Person","_key":"16259"} +{"label":"Richard Kiley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/172\/4c9ce9b97b9aa1430b000172\/richard-kiley-profile.jpg","version":28,"id":"26660","lastModified":"1301902055000","name":"Richard Kiley","type":"Person","_key":"16260"} +{"label":"Jennifer O'Neill","version":34,"id":"26662","lastModified":"1301901411000","name":"Jennifer O'Neill","type":"Person","_key":"16261"} +{"label":"Denis Quilley","version":25,"id":"26663","lastModified":"1301902157000","name":"Denis Quilley","type":"Person","_key":"16262"} +{"label":"Ben Vereen","version":31,"id":"26664","lastModified":"1301902028000","name":"Ben Vereen","type":"Person","_key":"16263"} +{"label":"Cecil Humphreys","version":23,"id":"26665","lastModified":"1301902009000","name":"Cecil Humphreys","type":"Person","_key":"16264"} +{"label":"Amanda Pays","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d4\/4c30f2ab5e73d63ccd0001d4\/amanda-pays-profile.jpg","version":31,"id":"26666","lastModified":"1301901511000","name":"Amanda Pays","type":"Person","_key":"16265"} +{"label":"Philip Sayer","version":20,"id":"26667","lastModified":"1301901443000","name":"Philip Sayer","type":"Person","_key":"16266"} +{"label":"Michael Wilding, Jr.","version":15,"id":"26668","lastModified":"1301901910000","name":"Michael Wilding, Jr.","type":"Person","_key":"16267"} +{"label":"Vincent Riotta","version":33,"id":"26669","lastModified":"1301901471000","name":"Vincent Riotta","type":"Person","_key":"16268"} +{"label":"Rebecca Saire","version":20,"id":"26670","lastModified":"1301902113000","name":"Rebecca Saire","type":"Person","_key":"16269"} +{"label":"Tom Durham","version":19,"id":"26671","lastModified":"1301902113000","name":"Tom Durham","type":"Person","_key":"16270"} +{"label":"Anthony Pedley","version":19,"id":"26672","lastModified":"1301902113000","name":"Anthony Pedley","type":"Person","_key":"16271"} +{"label":"Harold Kasket","version":22,"id":"26673","lastModified":"1301901630000","name":"Harold Kasket","type":"Person","_key":"16272"} +{"label":"Ralph Arliss","version":24,"id":"26674","lastModified":"1301902113000","name":"Ralph Arliss","type":"Person","_key":"16273"} +{"label":"Mike Gwilym","version":20,"id":"26675","lastModified":"1301901910000","name":"Mike Gwilym","type":"Person","_key":"16274"} +{"label":"Davyd Harries","version":17,"id":"26676","lastModified":"1301902193000","name":"Davyd Harries","type":"Person","_key":"16275"} +{"label":"Norma Martinelli","version":19,"id":"26677","lastModified":"1301902113000","name":"Norma Martinelli","type":"Person","_key":"16276"} +{"label":"Bruce Winant","version":19,"id":"26678","lastModified":"1301902113000","name":"Bruce Winant","type":"Person","_key":"16277"} +{"label":"Damien Thomas","version":24,"id":"26679","lastModified":"1301901487000","name":"Damien Thomas","type":"Person","_key":"16278"} +{"label":"Derek Hoxby","version":19,"id":"26680","lastModified":"1301902113000","name":"Derek Hoxby","type":"Person","_key":"16279"} +{"label":"Angela Morant","version":19,"id":"26681","lastModified":"1301901910000","name":"Angela Morant","type":"Person","_key":"16280"} +{"label":"Clive Arrindell","version":19,"id":"26682","lastModified":"1301902113000","name":"Clive Arrindell","type":"Person","_key":"16281"} +{"label":"Gerrard McArthur","version":19,"id":"26683","lastModified":"1301902113000","name":"Gerrard McArthur","type":"Person","_key":"16282"} +{"label":"Jane How","version":22,"id":"26684","lastModified":"1301901747000","name":"Jane How","type":"Person","_key":"16283"} +{"label":"Jonathan Tafler","version":19,"id":"26685","lastModified":"1301902113000","name":"Jonathan Tafler","type":"Person","_key":"16284"} +{"label":"Richard Kane","version":19,"id":"26686","lastModified":"1301902113000","name":"Richard Kane","type":"Person","_key":"16285"} +{"label":"Barrie Houghton","version":21,"id":"26687","lastModified":"1301902113000","name":"Barrie Houghton","type":"Person","_key":"16286"} +{"label":"Maggie Wickman","version":19,"id":"26688","lastModified":"1301902113000","name":"Maggie Wickman","type":"Person","_key":"16287"} +{"label":"Alan Downer","version":19,"id":"26689","lastModified":"1301902113000","name":"Alan Downer","type":"Person","_key":"16288"} +{"label":"Martin Potter","version":25,"id":"26690","lastModified":"1301901648000","name":"Martin Potter","type":"Person","_key":"16289"} +{"label":"Colin Haigh","version":19,"id":"26691","lastModified":"1301902113000","name":"Colin Haigh","type":"Person","_key":"16290"} +{"label":"Roderick Horn","version":19,"id":"26692","lastModified":"1301902113000","name":"Roderick Horn","type":"Person","_key":"16291"} +{"label":"John Wheatley","version":19,"id":"26693","lastModified":"1301902113000","name":"John Wheatley","type":"Person","_key":"16292"} +{"label":"Joss Buckley","version":15,"id":"26694","lastModified":"1301902113000","name":"Joss Buckley","type":"Person","_key":"16293"} +{"label":"David Sumner","version":19,"id":"26695","lastModified":"1301902113000","name":"David Sumner","type":"Person","_key":"16294"} +{"label":"Stephen Finlay","version":19,"id":"26696","lastModified":"1301902113000","name":"Stephen Finlay","type":"Person","_key":"16295"} +{"label":"Katia Dandoulaki","version":17,"id":"26697","lastModified":"1301902204000","name":"Katia Dandoulaki","type":"Person","_key":"16296"} +{"label":"Eddie Grossman","version":19,"id":"26698","lastModified":"1301902113000","name":"Eddie Grossman","type":"Person","_key":"16297"} +{"label":"John Steiner","version":35,"id":"26700","lastModified":"1301901560000","name":"John Steiner","type":"Person","_key":"16298"} +{"label":"Robert Wentz","version":19,"id":"26701","lastModified":"1301902113000","name":"Robert Wentz","type":"Person","_key":"16299"} +{"label":"Philip Anthony","version":19,"id":"26702","lastModified":"1301901910000","name":"Philip Anthony","type":"Person","_key":"16300"} +{"label":"Peter Blythe","version":21,"id":"26703","lastModified":"1301901841000","name":"Peter Blythe","type":"Person","_key":"16301"} +{"label":"Gary Brown","version":15,"id":"26704","lastModified":"1301902113000","name":"Gary Brown","type":"Person","_key":"16302"} +{"label":"Peter Howell","version":19,"id":"26705","lastModified":"1301902113000","name":"Peter Howell","type":"Person","_key":"16303"} +{"label":"David Rintoul","version":23,"id":"26706","lastModified":"1301902198000","name":"David Rintoul","type":"Person","_key":"16304"} +{"label":"Nicholas Ball","version":22,"id":"26707","lastModified":"1301901669000","name":"Nicholas Ball","type":"Person","_key":"16305"} +{"label":"David Brandon","version":26,"id":"99539","lastModified":"1301902578000","name":"David Brandon","type":"Person","_key":"16306"} +{"label":"Stuart Cooper","version":24,"id":"26708","lastModified":"1301901788000","name":"Stuart Cooper","type":"Person","_key":"16307"} +{"label":"Two Weeks Notice","description":"Millionaire real estate developer George Wade doesn't make a move without Lucy Kelson, his multitasking chief counsel and virtual right arm. But after a year of calling the shots, Lucy is giving her two weeks' notice. It seems Lucy's finally free of George and his 24-hour requests, which included everything from taking care of George's clothing to handling his divorce settlements. But George has other ideas.","id":"2642","runtime":101,"imdbId":"tt0313737","version":244,"lastModified":"1301901960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc9\/4d79a89f7b9aa14cc2000cc9\/two-weeks-notice-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Two Weeks Notice","releaseDate":1040169600000,"language":"en","tagline":"A comedy about love at last glance.","type":"Movie","_key":"16308"} +{"label":"Marc Lawrence","version":58,"id":"18323","lastModified":"1301901200000","name":"Marc Lawrence","type":"Person","_key":"16309"} +{"label":"Robert Klein","version":29,"id":"26715","lastModified":"1301901500000","name":"Robert Klein","type":"Person","_key":"16310"} +{"label":"David Haig","version":26,"id":"26717","lastModified":"1301901817000","name":"David Haig","type":"Person","_key":"16311"} +{"label":"Dorian Missick","version":23,"id":"26718","lastModified":"1301902138000","name":"Dorian Missick","type":"Person","_key":"16312"} +{"label":"Veanne Cox","version":23,"id":"26719","lastModified":"1301902026000","name":"Veanne Cox","type":"Person","_key":"16313"} +{"label":"Janine LaManna","version":20,"id":"26720","lastModified":"1301902004000","name":"Janine LaManna","type":"Person","_key":"16314"} +{"label":"Iraida Polanco","version":28,"id":"26721","lastModified":"1301901795000","name":"Iraida Polanco","type":"Person","_key":"16315"} +{"label":"Charlotte Maier","version":23,"id":"26722","lastModified":"1301902010000","name":"Charlotte Maier","type":"Person","_key":"16316"} +{"label":"Katheryn Winnick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/421\/4ce30b167b9aa168af000421\/katheryn-winnick-profile.jpg","version":69,"id":"26723","lastModified":"1302011632000","name":"Katheryn Winnick","type":"Person","_key":"16317"} +{"label":"Zuijia Paidang","description":"No overview found.","id":"2643","title":"Zuijia Paidang","language":"en","lastModified":"1301907451000","version":33,"type":"Movie","_key":"16318"} +{"label":"Aces Go Places","description":"No overview found.","id":"2644","runtime":93,"imdbId":"tt0084955","version":85,"lastModified":"1301904727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/109\/4c173bc17b9aa108d6000109\/zuijia-paidang-mid.jpg","studio":"Cinema City Film Productions","genre":"Action","title":"Aces Go Places","releaseDate":378691200000,"language":"en","type":"Movie","_key":"16319"} +{"label":"Eric Tsang","version":88,"id":"26724","lastModified":"1301904065000","name":"Eric Tsang","type":"Person","_key":"16320"} +{"label":"Sylvia Chang","version":29,"id":"26739","lastModified":"1301901604000","name":"Sylvia Chang","type":"Person","_key":"16321"} +{"label":"Lindzay Chan","version":20,"id":"26740","lastModified":"1301901417000","name":"Lindzay Chan","type":"Person","_key":"16322"} +{"label":"Sing Chen","version":23,"id":"26741","lastModified":"1301901975000","name":"Sing Chen","type":"Person","_key":"16323"} +{"label":"Tat-wah Cho","version":23,"id":"26742","lastModified":"1301901682000","name":"Tat-wah Cho","type":"Person","_key":"16324"} +{"label":"Carroll Gordon","version":17,"id":"26743","lastModified":"1301901982000","name":"Carroll Gordon","type":"Person","_key":"16325"} +{"label":"Samuel Hui","version":27,"id":"26728","lastModified":"1301901513000","name":"Samuel Hui","type":"Person","_key":"16326"} +{"label":"George Lam","version":24,"id":"26744","lastModified":"1301901857000","name":"George Lam","type":"Person","_key":"16327"} +{"label":"Karl Maka","version":39,"id":"26726","lastModified":"1301901357000","name":"Karl Maka","type":"Person","_key":"16328"} +{"label":"Dean Shek","version":43,"id":"26727","lastModified":"1301901410000","name":"Dean Shek","type":"Person","_key":"16329"} +{"label":"Bak-Ming Wong","version":42,"id":"26725","lastModified":"1301975713000","name":"Bak-Ming Wong","type":"Person","_key":"16330"} +{"label":"Aces Go Places II","description":"No overview found.","id":"2645","runtime":84,"imdbId":"tt0086646","version":72,"lastModified":"1301906759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af8\/4d7cbada7b9aa11a08018af8\/zuijia-paidang-daxian-shentong-mid.jpg","genre":"Action","title":"Aces Go Places II","releaseDate":437356800000,"language":"en","type":"Movie","_key":"16331"} +{"label":"Charlie Cho","version":20,"id":"26755","lastModified":"1301901458000","name":"Charlie Cho","type":"Person","_key":"16332"} +{"label":"Yasuaki Kurata","version":32,"id":"26756","lastModified":"1301901354000","name":"Yasuaki Kurata","type":"Person","_key":"16333"} +{"label":"Billy Lau","version":20,"id":"26757","lastModified":"1301901823000","name":"Billy Lau","type":"Person","_key":"16334"} +{"label":"Sue Wang","version":20,"id":"26758","lastModified":"1301901680000","name":"Sue Wang","type":"Person","_key":"16335"} +{"label":"Tsui Hark","version":173,"id":"26760","lastModified":"1301957818000","name":"Tsui Hark","type":"Person","_key":"16336"} +{"label":"Aces Go Places III","description":"No overview found.","id":"2646","runtime":96,"imdbId":"tt0088457","version":57,"lastModified":"1301905009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/308\/4c881eb05e73d66b5f000308\/zuijia-paidang-zhi-nuhuang-miling-mid.jpg","studio":"Cinema City Film Productions","genre":"Action","title":"Aces Go Places III","releaseDate":469843200000,"language":"en","type":"Movie","_key":"16337"} +{"label":"Huguette Funfrock","version":20,"id":"26764","lastModified":"1301902033000","name":"Huguette Funfrock","type":"Person","_key":"16338"} +{"label":"Sand\u00e2 Sugiyama","version":20,"id":"26765","lastModified":"1301901695000","name":"Sand\u00e2 Sugiyama","type":"Person","_key":"16339"} +{"label":"Toby Russell","version":21,"id":"26766","lastModified":"1301901681000","name":"Toby Russell","type":"Person","_key":"16340"} +{"label":"Aces Go Places IV","description":"Baldy and King Kong shuttle between New Zealand and Hong Kong to recover a hi-tech prism that can impart superhuman powers","id":"2647","runtime":86,"imdbId":"tt0092268","version":47,"lastModified":"1301908616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/103\/4c173c097b9aa108d7000103\/zuijia-paidang-zhi-qianli-jiu-chaipo-mid.jpg","studio":"Cinema City Film Productions","genre":"Action","title":"Aces Go Places IV","releaseDate":533001600000,"language":"en","type":"Movie","_key":"16341"} +{"label":"Ringo Lam","version":55,"id":"26767","lastModified":"1301901124000","name":"Ringo Lam","type":"Person","_key":"16342"} +{"label":"Xin zuljia paidang","description":"Two friends who own an investment firm turn to a policeman friend for help when they are framed for robbery by a gang of antiquities smugglers.","id":"2648","runtime":103,"imdbId":"tt0098681","version":57,"lastModified":"1301908376000","studio":"Cinema City Film Productions","genre":"Eastern","title":"Xin zuljia paidang","releaseDate":599616000000,"language":"en","type":"Movie","_key":"16343"} +{"label":"Chia-Liang Liu","version":36,"id":"26775","lastModified":"1302035251000","name":"Chia-Liang Liu","type":"Person","_key":"16344"} +{"label":"Ellen Chan","version":20,"id":"26778","lastModified":"1301901634000","name":"Ellen Chan","type":"Person","_key":"16345"} +{"label":"Deborah Grant","version":20,"id":"26780","lastModified":"1301902195000","name":"Deborah Grant","type":"Person","_key":"16346"} +{"label":"Chi Chun Ha","version":25,"id":"26781","lastModified":"1301901826000","name":"Chi Chun Ha","type":"Person","_key":"16347"} +{"label":"Mark Houghton","version":25,"id":"26782","lastModified":"1301901551000","name":"Mark Houghton","type":"Person","_key":"16348"} +{"label":"Conan Lee","version":23,"id":"26783","lastModified":"1301901850000","name":"Conan Lee","type":"Person","_key":"16349"} +{"label":"Danny Lee","version":35,"id":"26784","lastModified":"1301901528000","name":"Danny Lee","type":"Person","_key":"16350"} +{"label":"Nina Li Chi","version":19,"id":"26785","lastModified":"1301902124000","name":"Nina Li Chi","type":"Person","_key":"16351"} +{"label":"Melvin Wong","version":19,"id":"26786","lastModified":"1301902124000","name":"Melvin Wong","type":"Person","_key":"16352"} +{"label":"Fennie Yuen","version":28,"id":"26787","lastModified":"1301901799000","name":"Fennie Yuen","type":"Person","_key":"16353"} +{"label":"Leslie Cheung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ff\/4d3fef215e73d622d50055ff\/leslie-cheung-profile.jpg","biography":"L\u200b<meta charset=\"utf-8\"><span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>eslie Cheung Kwok-Wing<\/b> (12 September 1956 \u2013 1 April 2003), nicknamed elder brother (\u54e5\u54e5), was a film actor and musician from Hong Kong. Cheung was considered as \"one of the founding fathers of <a href=\"http:\/\/en.wikipedia.org\/wiki\/Cantopop\" title=\"Cantopop\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-","version":62,"birthday":"-419821200000","id":"69637","birthplace":"Hong Kong","lastModified":"1301901299000","name":"Leslie Cheung","type":"Person","_key":"16354"} +{"label":"The Game","description":"In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a coldhearted loner, receives an unusual present from his younger brother, Conrad -- a gift certificate to play a unique kind of game. In nary a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.","id":"2649","runtime":128,"imdbId":"tt0119174","trailer":"http:\/\/www.youtube.com\/watch?v=0kqQNBR09Rc","version":217,"lastModified":"1301903018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4d692fcb7b9aa13631001491\/the-game-mid.jpg","studio":"A&B Producoes","genre":"Drama","title":"The Game","releaseDate":874022400000,"language":"en","tagline":"What do you get for the man who has everything?","type":"Movie","_key":"16355"} +{"label":"Anna Katarina","version":23,"id":"27570","lastModified":"1301902019000","name":"Anna Katarina","type":"Person","_key":"16356"} +{"label":"Hard Candy","description":"A mature 14-year old girl meets a charming 32-year old photographer on the Internet. Suspecting that he is a pedophile, she goes to his home in an attempt to expose him.","id":"2652","runtime":103,"imdbId":"tt0424136","trailer":"http:\/\/www.youtube.com\/watch?v=a-C2H4ipxz0","homepage":"http:\/\/hardcandymovie.com\/","version":225,"lastModified":"1301902220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d21\/4bc91740017a3c57fe008d21\/hard-candy-mid.jpg","studio":"IcePack Pictures","genre":"Suspense","title":"Hard Candy","releaseDate":1106438400000,"language":"en","type":"Movie","_key":"16357"} +{"label":"David Slade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4cd32b9e7b9aa1135200000c\/david-slade-profile.jpg","version":61,"id":"27571","lastModified":"1301901124000","name":"David Slade","type":"Person","_key":"16358"} +{"label":"Ellen Page","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e1\/4c4dc8dd7b9aa123800003e1\/ellen-page-profile.jpg","biography":"Ellen Philpotts-Page (born February 21, 1987), known professionally as Ellen Page, is a Canadian actress. Page received both Golden Globe and Academy Award nominations for Best Actress for her role as the title character in the film Juno.\n\nIn 2008, Page was nominated for Time's 100 Most Influential People list and placed #86 on FHM's Sexiest Women in the World list, and moved up to #70 for 2010. In June 2008, Page was named on Entertainment Weekly's future A-List stars list.\n\nPage resides in her","version":151,"birthday":"540860400000","id":"27578","birthplace":"Halifax, Nova Scotia, Canada","lastModified":"1301904042000","name":"Ellen Page","type":"Person","_key":"16359"} +{"label":"Sandra Oh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a78\/4cc09ae87b9aa138d8001a78\/sandra-oh-profile.jpg","version":59,"id":"25540","lastModified":"1301932472000","name":"Sandra Oh","type":"Person","_key":"16360"} +{"label":"Odessa Rae","version":23,"id":"27579","lastModified":"1301901297000","name":"Odessa Rae","type":"Person","_key":"16361"} +{"label":"G.J. Echternkamp","version":20,"id":"27580","lastModified":"1301901579000","name":"G.J. Echternkamp","type":"Person","_key":"16362"} +{"label":"In the Mouth of Madness","description":"With the disappearance of hack horror writer Sutter Cane, all Hell is breaking loose...literally! Author Cane, it seems, has a knack for description that really brings his evil creepy-crawlies to life. Insurance investigator John Trent is sent to investigate Cane's mysterious vanishing act and ends up in the sleepy little East Coast town of Hobb's End.","id":"2654","runtime":95,"imdbId":"tt0113409","version":189,"lastModified":"1301950202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d33\/4bc91743017a3c57fe008d33\/in-the-mouth-of-madness-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"In the Mouth of Madness","releaseDate":786240000000,"language":"en","type":"Movie","_key":"16363"} +{"label":"Julie Carmen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4caf32967b9aa121360001c2\/julie-carmen-profile.jpg","version":29,"id":"27584","lastModified":"1301901463000","name":"Julie Carmen","type":"Person","_key":"16364"} +{"label":"Wilhelm von Homburg","version":38,"id":"27585","lastModified":"1301901260000","name":"Wilhelm von Homburg","type":"Person","_key":"16365"} +{"label":"Conrad Bergschneider","version":20,"id":"27586","lastModified":"1301902113000","name":"Conrad Bergschneider","type":"Person","_key":"16366"} +{"label":"What Lies Beneath","description":"When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.","id":"2655","runtime":130,"imdbId":"tt0161081","trailer":"http:\/\/www.youtube.com\/watch?v=PRlEqRa8NjQ","version":171,"lastModified":"1301420469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82e\/4d47103b7b9aa15bf500582e\/what-lies-beneath-mid.jpg","studio":"DreamWorks SKG","genre":"Drama","title":"What Lies Beneath","releaseDate":964137600000,"language":"en","tagline":"He was the perfect husband until his one mistake followed them home.","type":"Movie","_key":"16367"} +{"label":"Pleasantville","description":"Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called \"Pleasantville,\" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.","id":"2657","runtime":124,"imdbId":"tt0120789","version":250,"lastModified":"1301907547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32a\/4d2135947b9aa1280f00032a\/pleasantville-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Pleasantville","releaseDate":905990400000,"language":"en","tagline":"Nothing is as simple as black and white.","type":"Movie","_key":"16368"} +{"label":"Gary Ross","version":44,"id":"23964","lastModified":"1301901354000","name":"Gary Ross","type":"Person","_key":"16369"} +{"label":"Jane Kaczmarek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4d9a67d75e73d64767000054\/jane-kaczmarek-profile.jpg","version":28,"id":"27725","lastModified":"1301957559000","name":"Jane Kaczmarek","type":"Person","_key":"16370"} +{"label":"Don Knotts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4caf3ad57b9aa122550000e9\/don-knotts-profile.jpg","version":59,"birthday":"-1434243600000","id":"27726","birthplace":"Morgantown, West Virgina USA","lastModified":"1301901365000","name":"Don Knotts","type":"Person","_key":"16371"} +{"label":"Marissa Ribisi","version":25,"id":"27727","lastModified":"1301901431000","name":"Marissa Ribisi","type":"Person","_key":"16372"} +{"label":"Batman: The Movie","description":"The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.","id":"2661","runtime":105,"imdbId":"tt0060153","version":638,"lastModified":"1301949306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6c\/4bc9174c017a3c57fe008d6c\/batman-mid.png","studio":"William Dozier Productions","genre":"Action","title":"Batman: The Movie","releaseDate":-108086400000,"language":"en","type":"Movie","_key":"16373"} +{"label":"Adam West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4bd393fc017a3c534300001e\/adam-west-profile.jpg","version":46,"id":"26847","lastModified":"1301901367000","name":"Adam West","type":"Person","_key":"16374"} +{"label":"Burt Ward","version":24,"id":"35192","lastModified":"1301901491000","name":"Burt Ward","type":"Person","_key":"16375"} +{"label":"Lee Meriwether","version":25,"id":"16108","lastModified":"1301901565000","name":"Lee Meriwether","type":"Person","_key":"16376"} +{"label":"Neil Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ee\/4bf18a67017a3c320b0002ee\/neil-hamilton-profile.jpg","version":35,"id":"27733","lastModified":"1301902170000","name":"Neil Hamilton","type":"Person","_key":"16377"} +{"label":"Stafford Repp","version":25,"id":"27734","lastModified":"1301901809000","name":"Stafford Repp","type":"Person","_key":"16378"} +{"label":"Burt Ward","version":23,"id":"35191","lastModified":"1301901643000","name":"Burt Ward","type":"Person","_key":"16379"} +{"label":"Leslie H. Martinson","version":27,"id":"27728","lastModified":"1301901550000","name":"Leslie H. Martinson","type":"Person","_key":"16380"} +{"label":"House of 1000 Corpses","description":"Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.","id":"2662","runtime":89,"imdbId":"tt0251736","version":683,"lastModified":"1302036757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8a\/4bc91754017a3c57fe008d8a\/house-of-1000-corpses-mid.jpg","studio":"Alamode Film","genre":"Comedy","title":"House of 1000 Corpses","releaseDate":1047513600000,"language":"en","type":"Movie","_key":"16381"} +{"label":"Chris Hardwick","version":36,"id":"27738","lastModified":"1301997171000","name":"Chris Hardwick","type":"Person","_key":"16382"} +{"label":"Erin Daniels","version":18,"id":"18662","lastModified":"1301901747000","name":"Erin Daniels","type":"Person","_key":"16383"} +{"label":"Jennifer Jostyn","version":23,"id":"27739","lastModified":"1301901836000","name":"Jennifer Jostyn","type":"Person","_key":"16384"} +{"label":"Walton Goggins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ea\/4ca60ba37b9aa16eda0004ea\/walton-goggins-profile.jpg","version":41,"id":"27740","lastModified":"1301901486000","name":"Walton Goggins","type":"Person","_key":"16385"} +{"label":"Robert Allen Mukes","version":21,"id":"27741","lastModified":"1301901623000","name":"Robert Allen Mukes","type":"Person","_key":"16386"} +{"label":"Dennis Fimple","version":26,"id":"27742","lastModified":"1301901910000","name":"Dennis Fimple","type":"Person","_key":"16387"} +{"label":"David Reynolds","version":25,"id":"44825","lastModified":"1301901830000","name":"David Reynolds","type":"Person","_key":"16388"} +{"label":"William Bassett","version":26,"id":"83978","lastModified":"1301902141000","name":"William Bassett","type":"Person","_key":"16389"} +{"label":"Airplane 2","description":"The hero of an unlikely airplane disaster must overcome his own inadequacies, improbable accidents and his former girlfriend in order to save a space shuttle from destruction in this spoof sequel of the disaster parody Airplane!","id":"2665","runtime":85,"imdbId":"tt0083530","trailer":"http:\/\/www.youtube.com\/watch?v=gyHW6jUZzyI","version":675,"lastModified":"1302019500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4bed9f06017a3c458e00002a\/airplane-ii-the-sequel-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Airplane 2","releaseDate":408326400000,"language":"en","type":"Movie","_key":"16390"} +{"label":"Ken Finkleman","version":34,"id":"27746","lastModified":"1301901356000","name":"Ken Finkleman","type":"Person","_key":"16391"} +{"label":"Chuck Connors","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d9\/4c0932a2017a3c7e890006d9\/chuck-connors-profile.jpg","version":45,"id":"27747","lastModified":"1301901287000","name":"Chuck Connors","type":"Person","_key":"16392"} +{"label":"James A. Watson Jr.","version":25,"id":"27748","lastModified":"1301901993000","name":"James A. Watson Jr.","type":"Person","_key":"16393"} +{"label":"Dark City","description":"A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.","id":"2666","runtime":100,"imdbId":"tt0118929","trailer":"http:\/\/www.youtube.com\/watch?v=OpS1ynQbDSk","version":343,"lastModified":"1302036547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc9\/4c71d9b15e73d65f7a000bc9\/dark-city-mid.jpg","studio":"Mystery Clock Cinema","genre":"Mystery","title":"Dark City","releaseDate":888537600000,"language":"en","type":"Movie","_key":"16394"} +{"label":"Richard O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04d\/4c8fd1217b9aa17b4b00004d\/richard-o-brien-profile.jpg","version":32,"id":"13474","lastModified":"1301901553000","name":"Richard O'Brien","type":"Person","_key":"16395"} +{"label":"Bruce Spence","version":53,"id":"27752","lastModified":"1301901104000","name":"Bruce Spence","type":"Person","_key":"16396"} +{"label":"Colin Friels","version":43,"id":"27753","lastModified":"1301901505000","name":"Colin Friels","type":"Person","_key":"16397"} +{"label":"Mitchell Butel","version":27,"id":"27754","lastModified":"1301901584000","name":"Mitchell Butel","type":"Person","_key":"16398"} +{"label":"Melissa George","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64b\/4be23fbb017a3c35bf00064b\/melissa-george-profile.jpg","version":69,"id":"27755","lastModified":"1301904091000","name":"Melissa George","type":"Person","_key":"16399"} +{"label":"The Blair Witch Project","description":"In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary...A year later their footage was found.","id":"2667","runtime":86,"imdbId":"tt0185937","homepage":"http:\/\/www.blairwitch.com\/","version":668,"lastModified":"1302036468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49a\/4d2ea76a5e73d63a4e00e49a\/the-blair-witch-project-mid.jpg","studio":"Haxan Entertainment","genre":"Drama","title":"The Blair Witch Project","releaseDate":917222400000,"language":"en","type":"Movie","_key":"16400"} +{"label":"Daniel Myrick","version":49,"id":"26849","lastModified":"1301901244000","name":"Daniel Myrick","type":"Person","_key":"16401"} +{"label":"Eduardo S\u00e1nchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a3\/4cef3a985e73d66b070001a3\/eduardo-sanchez-profile.jpg","version":43,"id":"26850","lastModified":"1301901170000","name":"Eduardo S\u00e1nchez","type":"Person","_key":"16402"} +{"label":"Heather Donahue","version":26,"id":"26851","lastModified":"1301901271000","name":"Heather Donahue","type":"Person","_key":"16403"} +{"label":"Joshua Leonard","version":36,"id":"26852","lastModified":"1301901242000","name":"Joshua Leonard","type":"Person","_key":"16404"} +{"label":"Michael C. Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26a\/4cef3e4d5e73d6625a00026a\/michael-c-williams-profile.jpg","version":31,"id":"26853","lastModified":"1301901237000","name":"Michael C. Williams","type":"Person","_key":"16405"} +{"label":"Bob Griffith","version":25,"id":"81061","lastModified":"1301901338000","name":"Bob Griffith","type":"Person","_key":"16406"} +{"label":"Jim King","version":25,"id":"81062","lastModified":"1301901747000","name":"Jim King","type":"Person","_key":"16407"} +{"label":"Sandra S\u00e1nchez","version":25,"id":"81063","lastModified":"1301901910000","name":"Sandra S\u00e1nchez","type":"Person","_key":"16408"} +{"label":"Ed Swanson","version":25,"id":"81064","lastModified":"1301901910000","name":"Ed Swanson","type":"Person","_key":"16409"} +{"label":"Patricia DeCou","version":25,"id":"81065","lastModified":"1301901910000","name":"Patricia DeCou","type":"Person","_key":"16410"} +{"label":"Mark Mason","version":25,"id":"81066","lastModified":"1301901623000","name":"Mark Mason","type":"Person","_key":"16411"} +{"label":"Jackie Hallex","version":25,"id":"81067","lastModified":"1301901910000","name":"Jackie Hallex","type":"Person","_key":"16412"} +{"label":"Sleepy Hollow","description":"New York detective Ichabod Crane is sent to Sleepy Hollow to investigate a series of mysterious deaths in which the victims are found beheaded. But the locals believe the culprit to be none other than the ghost of the legendary Headless Horseman.","id":"2668","runtime":105,"imdbId":"tt0162661","version":1114,"lastModified":"1302036390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0a\/4bc91769017a3c57fe008e0a\/sleepy-hollow-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"Sleepy Hollow","releaseDate":942796800000,"language":"en","tagline":"Heads will roll.","type":"Movie","_key":"16413"} +{"label":"Steven Waddington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4ceebcb55e73d654f700008d\/steven-waddington-profile.jpg","version":41,"id":"27764","lastModified":"1301901255000","name":"Steven Waddington","type":"Person","_key":"16414"} +{"label":"The Bounty","description":"The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.","id":"2669","runtime":132,"imdbId":"tt0086993","trailer":"http:\/\/www.youtube.com\/watch?v=g5QER2wu0lg","version":316,"lastModified":"1301902887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4d32513e5e73d6334f00147c\/the-bounty-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"The Bounty","releaseDate":452476800000,"language":"en","type":"Movie","_key":"16415"} +{"label":"Philip Davis","version":43,"id":"26854","lastModified":"1301901201000","name":"Philip Davis","type":"Person","_key":"16416"} +{"label":"Wi Kuki Kaa","version":20,"id":"26855","lastModified":"1301901910000","name":"Wi Kuki Kaa","type":"Person","_key":"16417"} +{"label":"Tevaite Vernette","version":20,"id":"26856","lastModified":"1301901910000","name":"Tevaite Vernette","type":"Person","_key":"16418"} +{"label":"Philip Martin Brown","version":20,"id":"26857","lastModified":"1301902113000","name":"Philip Martin Brown","type":"Person","_key":"16419"} +{"label":"Malcolm Terris","version":21,"id":"26858","lastModified":"1301901910000","name":"Malcolm Terris","type":"Person","_key":"16420"} +{"label":"Simon Adams","version":20,"id":"26859","lastModified":"1301901910000","name":"Simon Adams","type":"Person","_key":"16421"} +{"label":"John Sessions","version":28,"id":"26860","lastModified":"1301901604000","name":"John Sessions","type":"Person","_key":"16422"} +{"label":"Andrew Wilde","version":20,"id":"26861","lastModified":"1301901910000","name":"Andrew Wilde","type":"Person","_key":"16423"} +{"label":"Neil Morrissey","version":24,"id":"26862","lastModified":"1301902134000","name":"Neil Morrissey","type":"Person","_key":"16424"} +{"label":"Richard Graham","version":27,"id":"26863","lastModified":"1301901495000","name":"Richard Graham","type":"Person","_key":"16425"} +{"label":"Jon Gadsby","version":20,"id":"26864","lastModified":"1301901910000","name":"Jon Gadsby","type":"Person","_key":"16426"} +{"label":"Brendan Conroy","version":22,"id":"26865","lastModified":"1301901850000","name":"Brendan Conroy","type":"Person","_key":"16427"} +{"label":"Barry Dransfield","version":20,"id":"26866","lastModified":"1301901910000","name":"Barry Dransfield","type":"Person","_key":"16428"} +{"label":"Steve Fletcher","version":21,"id":"26867","lastModified":"1301901774000","name":"Steve Fletcher","type":"Person","_key":"16429"} +{"label":"Mary Kauila","version":20,"id":"26868","lastModified":"1301901747000","name":"Mary Kauila","type":"Person","_key":"16430"} +{"label":"Sharon Bower","version":22,"id":"26869","lastModified":"1301901978000","name":"Sharon Bower","type":"Person","_key":"16431"} +{"label":"Tavana","version":20,"id":"26870","lastModified":"1301901910000","name":"Tavana","type":"Person","_key":"16432"} +{"label":"It","description":"A series of murders prompts Mike Hanlon to suspect that the supernatural menace that he and a group of friends battled as children has returned. He begins to call his friends to remind them of the oath they swore: if It returned again, they would come back to Derry to do battle again.","id":"2670","runtime":192,"imdbId":"tt0099864","version":330,"lastModified":"1301901977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eec\/4d4b8df25e73d617b7000eec\/it-mid.jpg","studio":"Green\/Epstein Productions","genre":"Drama","title":"It","releaseDate":658886400000,"language":"en","tagline":"From the King of terror, a chilling new dimension in horror.","type":"Movie","_key":"16433"} +{"label":"Tommy Lee Wallace","version":48,"id":"11777","lastModified":"1302059231000","name":"Tommy Lee Wallace","type":"Person","_key":"16434"} +{"label":"Harry Anderson","version":23,"id":"27769","lastModified":"1301901529000","name":"Harry Anderson","type":"Person","_key":"16435"} +{"label":"Dennis Christopher","version":34,"id":"27770","lastModified":"1301901327000","name":"Dennis Christopher","type":"Person","_key":"16436"} +{"label":"Adam Faraizl","version":22,"id":"27768","lastModified":"1301901995000","name":"Adam Faraizl","type":"Person","_key":"16437"} +{"label":"Brandon Crane","version":21,"id":"27774","lastModified":"1301901932000","name":"Brandon Crane","type":"Person","_key":"16438"} +{"label":"Tim Reid","version":22,"id":"27771","lastModified":"1301901945000","name":"Tim Reid","type":"Person","_key":"16439"} +{"label":"John Ritter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fb\/4cd6263a7b9aa11b240001fb\/john-ritter-profile.jpg","version":50,"id":"27772","lastModified":"1301901376000","name":"John Ritter","type":"Person","_key":"16440"} +{"label":"Jonathan Brandis","version":40,"id":"27773","lastModified":"1301901291000","name":"Jonathan Brandis","type":"Person","_key":"16441"} +{"label":"Chelan Simmons","version":50,"id":"27775","lastModified":"1301901235000","name":"Chelan Simmons","type":"Person","_key":"16442"} +{"label":"Ring","description":"A mysterious video has been linked to a number of deaths, and when an inquisitive journalist finds the tape and views it herself, she sets in motion a chain of events that puts her own life in danger. ","id":"2671","runtime":96,"imdbId":"tt0178868","version":430,"lastModified":"1301946422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e31\/4bc9176f017a3c57fe008e31\/ringu-mid.jpg","studio":"Kadokawa Shoten Publishing Co. Ltd.","genre":"Horror","title":"Ring","releaseDate":886204800000,"language":"en","tagline":"?One curse, one cure, one week to find it??","type":"Movie","_key":"16443"} +{"label":"Hideo Nakata","version":37,"id":"26875","lastModified":"1301901285000","name":"Hideo Nakata","type":"Person","_key":"16444"} +{"label":"Nanako Matsushima","version":24,"id":"27776","lastModified":"1301901376000","name":"Nanako Matsushima","type":"Person","_key":"16445"} +{"label":"Miki Nakatani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41c\/4d3e6ea45e73d622d800441c\/miki-nakatani-profile.jpg","version":32,"id":"27778","lastModified":"1301901577000","name":"Miki Nakatani","type":"Person","_key":"16446"} +{"label":"Y\u00fbko Takeuchi","version":19,"id":"27779","lastModified":"1301901689000","name":"Y\u00fbko Takeuchi","type":"Person","_key":"16447"} +{"label":"Hitomi Sat\u00f4","version":22,"id":"27780","lastModified":"1301901592000","name":"Hitomi Sat\u00f4","type":"Person","_key":"16448"} +{"label":"Y\u00f4ichi Numata","version":18,"id":"27781","lastModified":"1301901681000","name":"Y\u00f4ichi Numata","type":"Person","_key":"16449"} +{"label":"Yutaka Matsushige","version":26,"id":"27782","lastModified":"1301901714000","name":"Yutaka Matsushige","type":"Person","_key":"16450"} +{"label":"Katsumi Muramatsu","version":21,"id":"27783","lastModified":"1301901695000","name":"Katsumi Muramatsu","type":"Person","_key":"16451"} +{"label":"Rikiya \u00d4taka","version":19,"id":"27784","lastModified":"1301901836000","name":"Rikiya \u00d4taka","type":"Person","_key":"16452"} +{"label":"Il y a longtemps que je t'aime","description":"No overview found.","id":"2672","runtime":95,"imdbId":"tt0174771","version":56,"lastModified":"1301907432000","genre":"Comedy","title":"Il y a longtemps que je t'aime","releaseDate":143856000000,"language":"en","type":"Movie","_key":"16453"} +{"label":"Philippe Mareuil","version":23,"id":"26876","lastModified":"1301904135000","name":"Philippe Mareuil","type":"Person","_key":"16454"} +{"label":"Jackie Sardou","version":20,"id":"26877","lastModified":"1301901681000","name":"Jackie Sardou","type":"Person","_key":"16455"} +{"label":"Daniel Lecourtois","version":23,"id":"26878","lastModified":"1301901661000","name":"Daniel Lecourtois","type":"Person","_key":"16456"} +{"label":"Raymond G\u00e9r\u00f4me","version":29,"id":"26879","lastModified":"1301901795000","name":"Raymond G\u00e9r\u00f4me","type":"Person","_key":"16457"} +{"label":"Georges Folgoas","version":20,"id":"26880","lastModified":"1301901823000","name":"Georges Folgoas","type":"Person","_key":"16458"} +{"label":"Volpone","description":"No overview found.","id":"2674","runtime":120,"imdbId":"tt0176298","version":59,"lastModified":"1301935684000","genre":"Comedy","title":"Volpone","releaseDate":281923200000,"language":"en","type":"Movie","_key":"16459"} +{"label":"Jean Le Poulain","version":22,"id":"26886","lastModified":"1301901662000","name":"Jean Le Poulain","type":"Person","_key":"16460"} +{"label":"Francis Huster","version":33,"id":"26887","lastModified":"1301901354000","name":"Francis Huster","type":"Person","_key":"16461"} +{"label":"Jean Meyer","version":24,"id":"26888","lastModified":"1301901795000","name":"Jean Meyer","type":"Person","_key":"16462"} +{"label":"Francis Lemaire","version":21,"id":"26889","lastModified":"1301902190000","name":"Francis Lemaire","type":"Person","_key":"16463"} +{"label":"Jacques Marin","version":30,"id":"26890","lastModified":"1299948802000","name":"Jacques Marin","type":"Person","_key":"16464"} +{"label":"Signs","description":"A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.","id":"2675","runtime":106,"imdbId":"tt0286106","version":481,"lastModified":"1301993177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4cda35e35e73d676d10008f1\/signs-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"Signs","releaseDate":1027900800000,"language":"en","tagline":"It\u2019s not like they didn\u2019t warn us.","type":"Movie","_key":"16465"} +{"label":"Rory Culkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4c3a04f17b9aa10edd00020a\/rory-culkin-profile.jpg","version":56,"id":"28042","lastModified":"1301901265000","name":"Rory Culkin","type":"Person","_key":"16466"} +{"label":"Ted Sutton","version":27,"id":"28043","lastModified":"1301901585000","name":"Ted Sutton","type":"Person","_key":"16467"} +{"label":"Merritt Wever","version":42,"id":"28044","lastModified":"1301901329000","name":"Merritt Wever","type":"Person","_key":"16468"} +{"label":"Marion McCorry","version":47,"id":"28046","lastModified":"1301901161000","name":"Marion McCorry","type":"Person","_key":"16469"} +{"label":"Michael Showalter","version":29,"id":"22215","lastModified":"1301901281000","name":"Michael Showalter","type":"Person","_key":"16470"} +{"label":"Kevin Pires","version":27,"id":"28047","lastModified":"1301901580000","name":"Kevin Pires","type":"Person","_key":"16471"} +{"label":"Clifford David","version":30,"id":"28048","lastModified":"1301901443000","name":"Clifford David","type":"Person","_key":"16472"} +{"label":"Rhonda Overby","version":27,"id":"28049","lastModified":"1301901580000","name":"Rhonda Overby","type":"Person","_key":"16473"} +{"label":"Memoirs of an Invisible Man","description":"After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.","id":"2687","runtime":99,"imdbId":"tt0104850","version":267,"lastModified":"1301902449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e59\/4bc91774017a3c57fe008e59\/memoirs-of-an-invisible-man-mid.jpg","studio":"Alcor Films","genre":"Action","title":"Memoirs of an Invisible Man","releaseDate":699235200000,"language":"en","type":"Movie","_key":"16474"} +{"label":"Chevy Chase","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7a\/4be49885017a3c35bb000a7a\/chevy-chase-profile.jpg","version":113,"birthday":"-827888400000","id":"54812","birthplace":"Woodstock , New York","lastModified":"1302062572000","name":"Chevy Chase","type":"Person","_key":"16475"} +{"label":"Richard Epcar","version":26,"id":"26993","lastModified":"1301902113000","name":"Richard Epcar","type":"Person","_key":"16476"} +{"label":"Steven Barr","version":20,"id":"26994","lastModified":"1301901910000","name":"Steven Barr","type":"Person","_key":"16477"} +{"label":"Gregory Paul Martin","version":20,"id":"26995","lastModified":"1301901910000","name":"Gregory Paul Martin","type":"Person","_key":"16478"} +{"label":"Patricia Heaton","version":23,"id":"26996","lastModified":"1301902113000","name":"Patricia Heaton","type":"Person","_key":"16479"} +{"label":"Irma la Douce","description":"Irma la Douce is a 1963 comedy starring Jack Lemmon and Shirley MacLaine, directed by Billy Wilder. Though the film is not a musical, it won Andr\u00e9 Previn an Academy Award for Best Score Adaptation or Treatment. There is also a scene in the film, in which Shirley MacLaine exclaims \"Dis-donc!\" whilst dancing on a table, which appears to be a deliberate tribute to the musical from which the film is derived. The film was nominated for Best Actress in a Leading Role (Shirley MacLaine) and Best Cinema","id":"2690","runtime":135,"imdbId":"tt0057187","trailer":"http:\/\/www.youtube.com\/watch?v=GgrEynddh7I","version":372,"lastModified":"1302035849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a04\/4bfd160f017a3c7036000a04\/irma-la-douce-mid.jpg","studio":"The Mirisch Corporation","genre":"Comedy","title":"Irma la Douce","releaseDate":-207532800000,"language":"en","type":"Movie","_key":"16480"} +{"label":"Bruce Yarnell","version":21,"id":"27034","lastModified":"1301901681000","name":"Bruce Yarnell","type":"Person","_key":"16481"} +{"label":"Paul Dubov","version":28,"birthday":"-1616634000000","id":"27035","birthplace":"Illinois, USA","lastModified":"1301901971000","name":"Paul Dubov","type":"Person","_key":"16482"} +{"label":"Der Rote Elvis","description":"No overview found.","id":"2692","runtime":90,"imdbId":"tt0949770","version":88,"lastModified":"1301904046000","studio":"Neue Visionen","genre":"Documentary","title":"Der Rote Elvis","releaseDate":1171324800000,"language":"en","type":"Movie","_key":"16483"} +{"label":"Celino Bleiwei\u00df","version":18,"id":"30788","lastModified":"1301901681000","name":"Celino Bleiwei\u00df","type":"Person","_key":"16484"} +{"label":"Peter Boyles","version":20,"id":"30789","lastModified":"1301901448000","name":"Peter Boyles","type":"Person","_key":"16485"} +{"label":"Egon Krenz","version":20,"id":"30790","lastModified":"1301901971000","name":"Egon Krenz","type":"Person","_key":"16486"} +{"label":"Will Roberts","version":18,"id":"30791","lastModified":"1301901971000","name":"Will Roberts","type":"Person","_key":"16487"} +{"label":"Wiebke Reed","version":20,"id":"30792","lastModified":"1301901971000","name":"Wiebke Reed","type":"Person","_key":"16488"} +{"label":"Nils D\u00fcwell","version":22,"id":"30801","lastModified":"1301901971000","name":"Nils D\u00fcwell","type":"Person","_key":"16489"} +{"label":"Isabel Allende","version":20,"id":"23330","lastModified":"1301902126000","name":"Isabel Allende","type":"Person","_key":"16490"} +{"label":"Leopold Gr\u00fcn","version":21,"id":"28579","lastModified":"1301901795000","name":"Leopold Gr\u00fcn","type":"Person","_key":"16491"} +{"label":"Tuya De Hunshi","description":"Set in Inner Mongolia, a physical setback causes a young woman to choose a suitor who can take care of her, as well as her disabled husband.","id":"2694","runtime":96,"imdbId":"tt0949564","version":94,"lastModified":"1301904243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e66\/4bc91775017a3c57fe008e66\/tuya-de-hunshi-mid.jpg","studio":"Maxyee Culture Industry","genre":"Drama","title":"Tuya De Hunshi","releaseDate":1158796800000,"language":"en","type":"Movie","_key":"16492"} +{"label":"Quanan Wang","version":18,"id":"27073","lastModified":"1301901747000","name":"Quanan Wang","type":"Person","_key":"16493"} +{"label":"Nan Yu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/159\/4c826b117b9aa13b6b000159\/nan-yu-profile.jpg","version":24,"id":"27084","lastModified":"1301901715000","name":"Nan Yu","type":"Person","_key":"16494"} +{"label":"Bater","version":19,"id":"27085","lastModified":"1301901910000","name":"Bater","type":"Person","_key":"16495"} +{"label":"Sen'ge","version":17,"id":"27087","lastModified":"1301901747000","name":"Sen'ge","type":"Person","_key":"16496"} +{"label":"Zhaya","version":19,"id":"27089","lastModified":"1301902113000","name":"Zhaya","type":"Person","_key":"16497"} +{"label":"Guca!","description":"No overview found.","id":"2696","runtime":94,"imdbId":"tt0906014","homepage":"www.gucha.kinowelt.de","version":93,"lastModified":"1301904020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c6\/4d6188847b9aa154cb0052c6\/guca-mid.jpg","studio":"Pallas Film","genre":"Comedy","title":"Guca!","releaseDate":1163462400000,"language":"en","type":"Movie","_key":"16498"} +{"label":"Marko Markovic","version":17,"id":"28374","lastModified":"1301901683000","name":"Marko Markovic","type":"Person","_key":"16499"} +{"label":"Aleksandra Manasijevic","version":17,"id":"28375","lastModified":"1301901830000","name":"Aleksandra Manasijevic","type":"Person","_key":"16500"} +{"label":"Mladen Nelevic","version":21,"id":"28376","lastModified":"1301904129000","name":"Mladen Nelevic","type":"Person","_key":"16501"} +{"label":"Nenad Okanovic","version":17,"id":"28377","lastModified":"1301901696000","name":"Nenad Okanovic","type":"Person","_key":"16502"} +{"label":"Slavoljub Pesic","version":17,"id":"28378","lastModified":"1301902178000","name":"Slavoljub Pesic","type":"Person","_key":"16503"} +{"label":"Olga Odanovic","version":17,"id":"28379","lastModified":"1301901678000","name":"Olga Odanovic","type":"Person","_key":"16504"} +{"label":"Mirjana Djurdjevic","version":18,"id":"28380","lastModified":"1301901698000","name":"Mirjana Djurdjevic","type":"Person","_key":"16505"} +{"label":"Zumrita Jakupovic","version":17,"id":"28381","lastModified":"1301901842000","name":"Zumrita Jakupovic","type":"Person","_key":"16506"} +{"label":"Svetislav Pesic","version":17,"id":"28382","lastModified":"1301901842000","name":"Svetislav Pesic","type":"Person","_key":"16507"} +{"label":"Marko Jeremic","version":17,"id":"28383","lastModified":"1301901841000","name":"Marko Jeremic","type":"Person","_key":"16508"} +{"label":"Jovo Maksic","version":17,"id":"28384","lastModified":"1301901825000","name":"Jovo Maksic","type":"Person","_key":"16509"} +{"label":"Dusan Milic","version":21,"id":"28385","lastModified":"1301901661000","name":"Dusan Milic","type":"Person","_key":"16510"} +{"label":"Evan Almighty","description":"Buffalo newsman Evan Baxter is elected to Congress with the slogan, \"Change the world.\" He lucks into a huge house in a new Virginia suburb. His Capitol office is also fantastic, but there's a catch: he's tapped by the powerful Congressman Long to co-sponsor a bill to allow development in national parks. In steps God, who appears to a disbelieving Evan and gently commands him to build an ark","id":"2698","runtime":95,"imdbId":"tt0413099","trailer":"http:\/\/www.youtube.com\/watch?v=189","homepage":"http:\/\/www.evanalmighty.com\/","version":806,"lastModified":"1302035589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af8\/4d0628c17b9aa11bbf002af8\/evan-almighty-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Evan Almighty","releaseDate":1181433600000,"language":"en","type":"Movie","_key":"16511"} +{"label":"Wanda Sykes","version":66,"id":"27102","lastModified":"1301901182000","name":"Wanda Sykes","type":"Person","_key":"16512"} +{"label":"Graham Phillips","version":27,"id":"27103","lastModified":"1301901383000","name":"Graham Phillips","type":"Person","_key":"16513"} +{"label":"Johnny Simmons","version":59,"id":"27104","lastModified":"1301904089000","name":"Johnny Simmons","type":"Person","_key":"16514"} +{"label":"Ed Helms","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4bd5a09c017a3c2e740001c2\/ed-helms-profile.jpg","version":54,"id":"27105","lastModified":"1302059268000","name":"Ed Helms","type":"Person","_key":"16515"} +{"label":"Titanic","description":"No overview found.","id":"2699","runtime":173,"imdbId":"tt0115392","version":883,"lastModified":"1302057573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22b\/4cffb1087b9aa1514b00622b\/titanic-mid.jpg","studio":"American Zoetrope","genre":"Disaster","title":"Titanic","releaseDate":848188800000,"language":"en","type":"Movie","_key":"16516"} +{"label":"Harley Jane Kozak","version":29,"id":"27106","lastModified":"1301901588000","name":"Harley Jane Kozak","type":"Person","_key":"16517"} +{"label":"Mike Doyle","version":27,"id":"27107","lastModified":"1301901843000","name":"Mike Doyle","type":"Person","_key":"16518"} +{"label":"Sonsee Neu","version":24,"id":"27108","lastModified":"1301901412000","name":"Sonsee Neu","type":"Person","_key":"16519"} +{"label":"Felicity Waterman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c8\/4d4790bd5e73d6108f0011c8\/felicity-waterman-profile.jpg","version":26,"id":"27109","lastModified":"1301902010000","name":"Felicity Waterman","type":"Person","_key":"16520"} +{"label":"Malcolm Stewart","version":29,"id":"27110","lastModified":"1301901365000","name":"Malcolm Stewart","type":"Person","_key":"16521"} +{"label":"Kevin McNulty","version":34,"id":"27111","lastModified":"1301901274000","name":"Kevin McNulty","type":"Person","_key":"16522"} +{"label":"Terence Kelly","version":23,"id":"27112","lastModified":"1301901689000","name":"Terence Kelly","type":"Person","_key":"16523"} +{"label":"Scott Hylands","version":28,"id":"27113","lastModified":"1301901523000","name":"Scott Hylands","type":"Person","_key":"16524"} +{"label":"Janne Mortil","version":20,"id":"27114","lastModified":"1301901838000","name":"Janne Mortil","type":"Person","_key":"16525"} +{"label":"Tamsin Kelsey","version":21,"id":"27115","lastModified":"1301902016000","name":"Tamsin Kelsey","type":"Person","_key":"16526"} +{"label":"Kevin Conway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/118\/4bd85d7d017a3c1c06000118\/kevin-conway-profile.jpg","version":37,"id":"27116","lastModified":"1301901524000","name":"Kevin Conway","type":"Person","_key":"16527"} +{"label":"Devon Hoholuk","version":17,"id":"27117","lastModified":"1301901805000","name":"Devon Hoholuk","type":"Person","_key":"16528"} +{"label":"Crystal Verge","version":20,"id":"27118","lastModified":"1301901823000","name":"Crystal Verge","type":"Person","_key":"16529"} +{"label":"Bernard Cuffling","version":24,"id":"27119","lastModified":"1301901683000","name":"Bernard Cuffling","type":"Person","_key":"16530"} +{"label":"Stephen Dimopoulos","version":24,"id":"27121","lastModified":"1301902030000","name":"Stephen Dimopoulos","type":"Person","_key":"16531"} +{"label":"Matthew Walker","version":27,"id":"27122","lastModified":"1301901272000","name":"Matthew Walker","type":"Person","_key":"16532"} +{"label":"Chris Humphreys","version":23,"id":"27123","lastModified":"1301901828000","name":"Chris Humphreys","type":"Person","_key":"16533"} +{"label":"Gerard Plunkett","version":29,"id":"27124","lastModified":"1301901841000","name":"Gerard Plunkett","type":"Person","_key":"16534"} +{"label":"Molly Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc0\/4cf145595e73d61929000bc0\/molly-parker-profile.jpg","version":50,"birthday":"77324400000","id":"27125","birthplace":"Maple Ridge, British Columbia, Canada","lastModified":"1301901203000","name":"Molly Parker","type":"Person","_key":"16535"} +{"label":"Hagan Beggs","version":22,"id":"27126","lastModified":"1301901839000","name":"Hagan Beggs","type":"Person","_key":"16536"} +{"label":"Brent Stait","version":23,"id":"27127","lastModified":"1301901585000","name":"Brent Stait","type":"Person","_key":"16537"} +{"label":"Aaron Pearl","version":31,"id":"27128","lastModified":"1301901237000","name":"Aaron Pearl","type":"Person","_key":"16538"} +{"label":"Byron Lucas","version":20,"id":"27129","lastModified":"1301902010000","name":"Byron Lucas","type":"Person","_key":"16539"} +{"label":"Ron Halder","version":20,"id":"27130","lastModified":"1301901823000","name":"Ron Halder","type":"Person","_key":"16540"} +{"label":"Eric Schneider","version":20,"id":"27131","lastModified":"1301901823000","name":"Eric Schneider","type":"Person","_key":"16541"} +{"label":"Gavin Craig","version":20,"id":"27132","lastModified":"1301902010000","name":"Gavin Craig","type":"Person","_key":"16542"} +{"label":"Janie Woods-Morris","version":20,"id":"27133","lastModified":"1301901991000","name":"Janie Woods-Morris","type":"Person","_key":"16543"} +{"label":"Peter Haworth","version":20,"id":"27134","lastModified":"1301901823000","name":"Peter Haworth","type":"Person","_key":"16544"} +{"label":"Martin Evans","version":20,"id":"27135","lastModified":"1301902010000","name":"Martin Evans","type":"Person","_key":"16545"} +{"label":"Katharine Isabelle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bbe\/4d7f46e95e73d62828003bbe\/katharine-isabelle-profile.jpg","version":38,"id":"27136","lastModified":"1301901460000","name":"Katharine Isabelle","type":"Person","_key":"16546"} +{"label":"Lachlan Murdoch","version":20,"id":"27137","lastModified":"1301901823000","name":"Lachlan Murdoch","type":"Person","_key":"16547"} +{"label":"Doug Abrahams","version":19,"id":"27138","lastModified":"1301901823000","name":"Doug Abrahams","type":"Person","_key":"16548"} +{"label":"Robin Driscoll","version":29,"id":"16357","lastModified":"1301901836000","name":"Robin Driscoll","type":"Person","_key":"16549"} +{"label":"Tina Fiorda","version":20,"id":"27139","lastModified":"1301901829000","name":"Tina Fiorda","type":"Person","_key":"16550"} +{"label":"Cindy Girling","version":20,"id":"27140","lastModified":"1301901836000","name":"Cindy Girling","type":"Person","_key":"16551"} +{"label":"Kim Kondrashoff","version":20,"id":"27141","lastModified":"1301901689000","name":"Kim Kondrashoff","type":"Person","_key":"16552"} +{"label":"Richard Lautsch","version":20,"id":"27142","lastModified":"1301901836000","name":"Richard Lautsch","type":"Person","_key":"16553"} +{"label":"John Tench","version":29,"id":"27143","lastModified":"1301901465000","name":"John Tench","type":"Person","_key":"16554"} +{"label":"Shaina Tianne Unger","version":20,"id":"27144","lastModified":"1301901823000","name":"Shaina Tianne Unger","type":"Person","_key":"16555"} +{"label":"Dale Wilson","version":25,"id":"27145","lastModified":"1301901825000","name":"Dale Wilson","type":"Person","_key":"16556"} +{"label":"Robert Lieberman","version":34,"id":"27146","lastModified":"1301901268000","name":"Robert Lieberman","type":"Person","_key":"16557"} +{"label":"Esther","description":"No overview found.","id":"2700","runtime":90,"imdbId":"tt0183055","version":571,"lastModified":"1301907432000","studio":"Five Mile River Films","genre":"History","title":"Esther","releaseDate":922665600000,"language":"en","type":"Movie","_key":"16558"} +{"label":"Ornella Muti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4c2a84947b9aa15e98000062\/ornella-muti-profile.jpg","version":51,"birthday":"-452221200000","id":"27163","birthplace":"Roma, Italy","lastModified":"1301901266000","name":"Ornella Muti","type":"Person","_key":"16559"} +{"label":"Frank Baker","version":20,"birthday":"-2436915600000","id":"27164","birthplace":"Melbourne, Australia","lastModified":"1301901589000","name":"Frank Baker","type":"Person","_key":"16560"} +{"label":"Umberto Orsini","version":35,"id":"27166","lastModified":"1301901795000","name":"Umberto Orsini","type":"Person","_key":"16561"} +{"label":"Phil Davies","version":20,"id":"27167","lastModified":"1301901823000","name":"Phil Davies","type":"Person","_key":"16562"} +{"label":"Natasha Williams","version":20,"id":"27168","lastModified":"1301901823000","name":"Natasha Williams","type":"Person","_key":"16563"} +{"label":"Peter Halliday","version":20,"id":"27169","lastModified":"1301901823000","name":"Peter Halliday","type":"Person","_key":"16564"} +{"label":"Darren Bransford","version":20,"id":"27170","lastModified":"1301901795000","name":"Darren Bransford","type":"Person","_key":"16565"} +{"label":"Nicola Harrington","version":20,"id":"27171","lastModified":"1301901795000","name":"Nicola Harrington","type":"Person","_key":"16566"} +{"label":"Peter Guinness","version":34,"id":"27172","lastModified":"1301901499000","name":"Peter Guinness","type":"Person","_key":"16567"} +{"label":"Bruce Purchase","version":23,"id":"27173","lastModified":"1301901714000","name":"Bruce Purchase","type":"Person","_key":"16568"} +{"label":"Ilza Prestinari","version":20,"id":"27174","lastModified":"1301901795000","name":"Ilza Prestinari","type":"Person","_key":"16569"} +{"label":"Hassani Shapi","version":22,"id":"27175","lastModified":"1301901795000","name":"Hassani Shapi","type":"Person","_key":"16570"} +{"label":"Karl Geary","version":25,"id":"27176","lastModified":"1301901795000","name":"Karl Geary","type":"Person","_key":"16571"} +{"label":"Marco Bonini","version":21,"id":"27177","lastModified":"1301901500000","name":"Marco Bonini","type":"Person","_key":"16572"} +{"label":"Zakaria Atifi","version":20,"id":"27178","lastModified":"1301901823000","name":"Zakaria Atifi","type":"Person","_key":"16573"} +{"label":"Raffaele Mertes","version":29,"id":"23951","lastModified":"1301903109000","name":"Raffaele Mertes","type":"Person","_key":"16574"} +{"label":"Abraham","description":"This engrossing dramatization of the life of Abraham, the most tested servant of God and the father of Judaism, spans from the patriarch's quest for the Promised Land to the sacrifice of his son, Isaac.","id":"2701","runtime":175,"imdbId":"tt0109036","version":313,"lastModified":"1301906092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4c3e5dc47b9aa13dca00002a\/abraham-mid.jpg","studio":"Five Mile River Films","genre":"History","title":"Abraham","releaseDate":765331200000,"language":"en","type":"Movie","_key":"16575"} +{"label":"Carolina Rosi","version":19,"id":"27188","lastModified":"1301902113000","name":"Carolina Rosi","type":"Person","_key":"16576"} +{"label":"Simona Ferraro","version":17,"id":"27189","lastModified":"1301901805000","name":"Simona Ferraro","type":"Person","_key":"16577"} +{"label":"Tom Radcliffe","version":19,"id":"27190","lastModified":"1301902113000","name":"Tom Radcliffe","type":"Person","_key":"16578"} +{"label":"Jude Alderson","version":20,"id":"27191","lastModified":"1301902140000","name":"Jude Alderson","type":"Person","_key":"16579"} +{"label":"Evelina Meghnagi","version":17,"id":"27192","lastModified":"1301902192000","name":"Evelina Meghnagi","type":"Person","_key":"16580"} +{"label":"Danny Mertsoy","version":19,"id":"27193","lastModified":"1301902113000","name":"Danny Mertsoy","type":"Person","_key":"16581"} +{"label":"Giuseppe Peluso","version":19,"id":"27194","lastModified":"1301902113000","name":"Giuseppe Peluso","type":"Person","_key":"16582"} +{"label":"Taylor Scipio","version":19,"id":"27195","lastModified":"1301902113000","name":"Taylor Scipio","type":"Person","_key":"16583"} +{"label":"Mario Erpichini","version":19,"id":"27196","lastModified":"1301902113000","name":"Mario Erpichini","type":"Person","_key":"16584"} +{"label":"Emidio La Vella","version":19,"id":"27197","lastModified":"1301902113000","name":"Emidio La Vella","type":"Person","_key":"16585"} +{"label":"Orso Maria Guerrini","version":21,"id":"27198","lastModified":"1301902156000","name":"Orso Maria Guerrini","type":"Person","_key":"16586"} +{"label":"Francesco Carnelutti","version":19,"id":"27199","lastModified":"1301902113000","name":"Francesco Carnelutti","type":"Person","_key":"16587"} +{"label":"Maurizio Benazzo","version":20,"id":"27200","lastModified":"1301902113000","name":"Maurizio Benazzo","type":"Person","_key":"16588"} +{"label":"Paco Reconti","version":22,"id":"27201","lastModified":"1301902023000","name":"Paco Reconti","type":"Person","_key":"16589"} +{"label":"Aziz Khaldoun","version":19,"id":"27202","lastModified":"1301902113000","name":"Aziz Khaldoun","type":"Person","_key":"16590"} +{"label":"Francesco Siciliano","version":20,"id":"27203","lastModified":"1301902113000","name":"Francesco Siciliano","type":"Person","_key":"16591"} +{"label":"Joel Proust","version":20,"id":"24586","lastModified":"1301901917000","name":"Joel Proust","type":"Person","_key":"16592"} +{"label":"Kh\u00e2kestar-o-kh\u00e2k","description":"No overview found.","id":"2702","runtime":105,"imdbId":"tt0420715","homepage":"http:\/\/www.bodegafilms.com\/film.php?id_film=26#","version":46,"lastModified":"1301906758000","studio":"Afghanfilm","genre":"Drama","title":"Kh\u00e2kestar-o-kh\u00e2k","releaseDate":1084406400000,"language":"en","type":"Movie","_key":"16593"} +{"label":"Abdul Ghani","version":20,"id":"28663","lastModified":"1301901832000","name":"Abdul Ghani","type":"Person","_key":"16594"} +{"label":"Jawan Mard Homayoun","version":20,"id":"28664","lastModified":"1301901841000","name":"Jawan Mard Homayoun","type":"Person","_key":"16595"} +{"label":"Walli Tallosh","version":20,"id":"28666","lastModified":"1301902023000","name":"Walli Tallosh","type":"Person","_key":"16596"} +{"label":"Guilda Chahverdi","version":20,"id":"28667","lastModified":"1301901662000","name":"Guilda Chahverdi","type":"Person","_key":"16597"} +{"label":"Kader Arefi","version":20,"id":"28668","lastModified":"1301902161000","name":"Kader Arefi","type":"Person","_key":"16598"} +{"label":"Atiq Rahimi","version":21,"id":"28671","lastModified":"1301901662000","name":"Atiq Rahimi","type":"Person","_key":"16599"} +{"label":"Genesi: La creazione e il diluvio","description":"An all-enveloping darkness. Suddenly, a child's voice, frightened, questioning, pierces the darkness... The first flickering rays of light begin to sculpt mysterious shapes out of the darkness ... Among them, a very old man. He reassures the child, exhorting him to see the wonders of the earth. And it is with this child's eyes that we will witness the creation of the world.","id":"2703","runtime":91,"imdbId":"tt0109884","version":62,"lastModified":"1301907432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/170\/4d73dc275e73d60882000170\/genesi-la-creazione-e-il-diluvio-mid.jpg","studio":"Beta Film","genre":"History","title":"Genesi: La creazione e il diluvio","releaseDate":779673600000,"language":"en","type":"Movie","_key":"16600"} +{"label":"Omero Antonutti","version":27,"id":"27208","lastModified":"1301901661000","name":"Omero Antonutti","type":"Person","_key":"16601"} +{"label":"Sabir Aziz","version":20,"id":"27209","lastModified":"1301902190000","name":"Sabir Aziz","type":"Person","_key":"16602"} +{"label":"Haddou Zoubida","version":20,"id":"27210","lastModified":"1301902196000","name":"Haddou Zoubida","type":"Person","_key":"16603"} +{"label":"Annabi Abdelialil","version":20,"id":"27211","lastModified":"1301902010000","name":"Annabi Abdelialil","type":"Person","_key":"16604"} +{"label":"B. Haddan Mohammed","version":20,"id":"27212","lastModified":"1301902191000","name":"B. Haddan Mohammed","type":"Person","_key":"16605"} +{"label":"Ermanno Olmi","version":32,"id":"27213","lastModified":"1301901661000","name":"Ermanno Olmi","type":"Person","_key":"16606"} +{"label":"The Bible","description":"No overview found.","id":"2704","version":612,"lastModified":"1302035098000","genre":"Drama","title":"The Bible","language":"en","type":"Movie","_key":"16607"} +{"label":"San Paolo","description":"No overview found.","id":"2707","runtime":170,"imdbId":"tt0270621","version":98,"lastModified":"1301906638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e94\/4bc9177d017a3c57fe008e94\/san-paolo-mid.jpg","studio":"Cesk\u00e1 Televize","genre":"History","title":"San Paolo","releaseDate":946684800000,"language":"en","type":"Movie","_key":"16608"} +{"label":"Johannes Brandrup","version":23,"id":"27270","lastModified":"1301901383000","name":"Johannes Brandrup","type":"Person","_key":"16609"} +{"label":"Barbora Bobulova","version":30,"id":"27271","lastModified":"1301901607000","name":"Barbora Bobulova","type":"Person","_key":"16610"} +{"label":"Ennio Fantastichini","version":36,"id":"27272","lastModified":"1301901473000","name":"Ennio Fantastichini","type":"Person","_key":"16611"} +{"label":"Giorgio Pasotti","version":24,"id":"27274","lastModified":"1301902134000","name":"Giorgio Pasotti","type":"Person","_key":"16612"} +{"label":"Daniela Poggi","version":23,"id":"27275","lastModified":"1301901795000","name":"Daniela Poggi","type":"Person","_key":"16613"} +{"label":"Christian Brendel","version":21,"id":"27276","lastModified":"1301902045000","name":"Christian Brendel","type":"Person","_key":"16614"} +{"label":"Ian Ricketts","version":19,"id":"27278","lastModified":"1301902113000","name":"Ian Ricketts","type":"Person","_key":"16615"} +{"label":"Massimo Sarchielli","version":21,"id":"27279","lastModified":"1301902137000","name":"Massimo Sarchielli","type":"Person","_key":"16616"} +{"label":"Riccardo Sardon\u00e8","version":19,"id":"27280","lastModified":"1301902113000","name":"Riccardo Sardon\u00e8","type":"Person","_key":"16617"} +{"label":"Faith Brook","version":21,"id":"27281","lastModified":"1301902168000","name":"Faith Brook","type":"Person","_key":"16618"} +{"label":"Maria Cristina Heller","version":19,"id":"27282","lastModified":"1301902113000","name":"Maria Cristina Heller","type":"Person","_key":"16619"} +{"label":"Gaetano Varcasia","version":19,"id":"27283","lastModified":"1301902113000","name":"Gaetano Varcasia","type":"Person","_key":"16620"} +{"label":"Jeremy Zimmerman","version":27,"id":"23955","lastModified":"1301901669000","name":"Jeremy Zimmerman","type":"Person","_key":"16621"} +{"label":"Farid Reguragui","version":19,"id":"27284","lastModified":"1301902113000","name":"Farid Reguragui","type":"Person","_key":"16622"} +{"label":"Mohamed Alkaghat","version":19,"id":"27285","lastModified":"1301902113000","name":"Mohamed Alkaghat","type":"Person","_key":"16623"} +{"label":"Azelarab Alkaghat","version":19,"id":"27286","lastModified":"1301901747000","name":"Azelarab Alkaghat","type":"Person","_key":"16624"} +{"label":"Colin Goodwin","version":19,"id":"27287","lastModified":"1301902113000","name":"Colin Goodwin","type":"Person","_key":"16625"} +{"label":"Mohamed Bensouda","version":21,"id":"27288","lastModified":"1301902169000","name":"Mohamed Bensouda","type":"Person","_key":"16626"} +{"label":"Mohamed Khayi","version":19,"id":"27289","lastModified":"1301901623000","name":"Mohamed Khayi","type":"Person","_key":"16627"} +{"label":"Hicham Bahloul","version":19,"id":"27290","lastModified":"1301901747000","name":"Hicham Bahloul","type":"Person","_key":"16628"} +{"label":"Der Fluch des Waldes 2007","description":"No overview found.","id":"2711","runtime":0,"version":19,"lastModified":"1300978183000","title":"Der Fluch des Waldes 2007","releaseDate":1193184000000,"language":"en","type":"Movie","_key":"16629"} +{"label":"Manuel Brunnflicker","version":20,"id":"27318","lastModified":"1301902161000","name":"Manuel Brunnflicker","type":"Person","_key":"16630"} +{"label":"Johanna Dworak","version":22,"id":"27317","lastModified":"1301901569000","name":"Johanna Dworak","type":"Person","_key":"16631"} +{"label":"Jacob","description":"In this inspiring tale from the book of Genesis, young shepherd Jacob (Matthew Modine) falls in love with and wants to marry Rachel (Lara Flynn Boyle), the daughter of his Uncle Laban (Giancarlo Giannini). Lacking a dowry, Jacob toils seven years as his uncle's indentured servant to win Rachel's hand. But calculating Laban dupes him into another seven years of labor. Irene Papas portrays Jacob's iron-willed mother.","id":"2712","runtime":91,"imdbId":"tt0110175","version":170,"lastModified":"1301907296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99f\/4d0e87d75e73d6370e00199f\/jacob-mid.jpg","studio":"Antena 3 Televisi\u00f3n","genre":"History","title":"Jacob","releaseDate":786499200000,"language":"en","type":"Movie","_key":"16632"} +{"label":"Christoph Waltz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4bca4b5f017a3c0e8b0000a7\/christoph-waltz-profile.jpg","biography":"<span style=\"font-size: 13px; line-height: 19px; font-family: sans-serif; \">Waltz was born in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Vienna\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Vienna<\/a>, Austria, the son of set and stage designers Johannes Waltz and Elisabeth Urb","version":89,"birthday":"-417920400000","id":"27319","lastModified":"1302049505000","name":"Christoph Waltz","type":"Person","_key":"16633"} +{"label":"Christoph M. Ohrt","version":27,"id":"27320","lastModified":"1301901961000","name":"Christoph M. Ohrt","type":"Person","_key":"16634"} +{"label":"Philip Locke","biography":"Educated at St Marylebone Central School.\n\nBegan as a professional actor at the Oldham Repertory Theatre in 1954.\n\nAttended RADA.\n\nPerformed with the Royal Shakespeare Company.\n\nPerformed with the National Theatre.\n\nPerformed at the Royal Court Theatre.\n\nWas nominated for Broadway's 1975 Tony Award as Best Supporting or Featured Actor (Dramatic) for \"Sherlock Holmes\".","version":22,"birthday":"-1317862800000","id":"27321","birthplace":"St. Marylebone, London, England, UK","lastModified":"1301901638000","name":"Philip Locke","type":"Person","_key":"16635"} +{"label":"Daniel Newman","version":25,"id":"8323","lastModified":"1301901236000","name":"Daniel Newman","type":"Person","_key":"16636"} +{"label":"Cecilia Dazzi","version":26,"id":"27322","lastModified":"1301902161000","name":"Cecilia Dazzi","type":"Person","_key":"16637"} +{"label":"Garry Cooper","version":27,"id":"27323","lastModified":"1301901753000","name":"Garry Cooper","type":"Person","_key":"16638"} +{"label":"Bev Willis","version":21,"id":"27324","lastModified":"1301902169000","name":"Bev Willis","type":"Person","_key":"16639"} +{"label":"James Hayes","version":20,"id":"27325","lastModified":"1301902190000","name":"James Hayes","type":"Person","_key":"16640"} +{"label":"Padraig Casey","version":19,"id":"27326","lastModified":"1301902116000","name":"Padraig Casey","type":"Person","_key":"16641"} +{"label":"William Sleigh","version":19,"id":"27327","lastModified":"1301902116000","name":"William Sleigh","type":"Person","_key":"16642"} +{"label":"Linda Polan","version":21,"id":"27328","lastModified":"1301902116000","name":"Linda Polan","type":"Person","_key":"16643"} +{"label":"Peter Gordon","version":20,"id":"27329","lastModified":"1301902131000","name":"Peter Gordon","type":"Person","_key":"16644"} +{"label":"Oliver Hobson","version":19,"id":"27330","lastModified":"1301902116000","name":"Oliver Hobson","type":"Person","_key":"16645"} +{"label":"Neil Daglish","version":19,"id":"27331","lastModified":"1301902116000","name":"Neil Daglish","type":"Person","_key":"16646"} +{"label":"Zubin Varla","version":19,"id":"27332","lastModified":"1301902116000","name":"Zubin Varla","type":"Person","_key":"16647"} +{"label":"Michael Walker","version":20,"id":"27333","lastModified":"1301902177000","name":"Michael Walker","type":"Person","_key":"16648"} +{"label":"Peter Jonfield","version":20,"id":"27334","lastModified":"1301902177000","name":"Peter Jonfield","type":"Person","_key":"16649"} +{"label":"Crispin Redman","version":19,"id":"27335","lastModified":"1301902116000","name":"Crispin Redman","type":"Person","_key":"16650"} +{"label":"Julie Mullen","version":20,"id":"27336","lastModified":"1301902200000","name":"Julie Mullen","type":"Person","_key":"16651"} +{"label":"Peter Turner","version":20,"id":"27337","lastModified":"1301902191000","name":"Peter Turner","type":"Person","_key":"16652"} +{"label":"Emma Hall","version":20,"id":"27338","lastModified":"1301902116000","name":"Emma Hall","type":"Person","_key":"16653"} +{"label":"Peter Hall","version":19,"id":"27339","lastModified":"1301901546000","name":"Peter Hall","type":"Person","_key":"16654"} +{"label":"Number One","description":"No overview found.","id":"2718","runtime":95,"imdbId":"tt0174077","version":518,"lastModified":"1301906758000","studio":"San Ignazio Cinematografica","genre":"Crime","title":"Number One","releaseDate":107395200000,"language":"en","type":"Movie","_key":"16655"} +{"label":"Gianni Buffardi","version":22,"id":"27378","lastModified":"1301902161000","name":"Gianni Buffardi","type":"Person","_key":"16656"} +{"label":"Chris Avram","version":25,"id":"27382","lastModified":"1301902161000","name":"Chris Avram","type":"Person","_key":"16657"} +{"label":"Howard Ross","version":26,"id":"27383","lastModified":"1301901825000","name":"Howard Ross","type":"Person","_key":"16658"} +{"label":"Paolo Malco","version":26,"id":"27384","lastModified":"1301901670000","name":"Paolo Malco","type":"Person","_key":"16659"} +{"label":"Andrea Aureli","version":22,"id":"27385","lastModified":"1301901971000","name":"Andrea Aureli","type":"Person","_key":"16660"} +{"label":"Emilio Bonucci","version":21,"id":"27386","lastModified":"1301902041000","name":"Emilio Bonucci","type":"Person","_key":"16661"} +{"label":"Isabelle De Valvert","version":21,"id":"27387","lastModified":"1301901832000","name":"Isabelle De Valvert","type":"Person","_key":"16662"} +{"label":"Guido Mannari","version":20,"id":"27388","lastModified":"1301902190000","name":"Guido Mannari","type":"Person","_key":"16663"} +{"label":"Rita Calderoni","version":21,"id":"27389","lastModified":"1301902161000","name":"Rita Calderoni","type":"Person","_key":"16664"} +{"label":"Carla Mancini","version":20,"id":"27390","lastModified":"1301902190000","name":"Carla Mancini","type":"Person","_key":"16665"} +{"label":"Moses","description":"An ordinary man is called upon by God to do the impossible in this lovingly told production of the Old Testament story. When the Pharaoh of Egypt begins to tighten the noose on his Jewish slaves, Moses (Ben Kingsley) leads them to freedom. Philip Stone, Anthony Higgins, Anton Lesser and Anita Zagaria are featured in this award-winning installment from TNT's \"greatest stories of the Bible\" series directed by Roger Young.","id":"2719","runtime":182,"imdbId":"tt0117086","version":346,"lastModified":"1302034677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4d6afbb45e73d66b2700281d\/moses-mid.jpg","studio":"Antena 3 Televisi\u00f3n","genre":"History","title":"Moses","releaseDate":819417600000,"language":"en","type":"Movie","_key":"16666"} +{"label":"Anna Galiena","version":42,"id":"27391","lastModified":"1301901970000","name":"Anna Galiena","type":"Person","_key":"16667"} +{"label":"Enrico Lo Verso","version":56,"id":"27392","lastModified":"1301901855000","name":"Enrico Lo Verso","type":"Person","_key":"16668"} +{"label":"Philippe Leroy","version":37,"id":"25333","lastModified":"1301901584000","name":"Philippe Leroy","type":"Person","_key":"16669"} +{"label":"Dudley Sutton","version":27,"id":"27393","lastModified":"1301901839000","name":"Dudley Sutton","type":"Person","_key":"16670"} +{"label":"Anita Zagaria","version":22,"id":"27394","lastModified":"1301902180000","name":"Anita Zagaria","type":"Person","_key":"16671"} +{"label":"Federico Pacifici","version":20,"id":"27395","lastModified":"1301902123000","name":"Federico Pacifici","type":"Person","_key":"16672"} +{"label":"Sonia Braga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4c23804e7b9aa13f65000089\/sonia-braga-profile.jpg","version":32,"id":"27396","lastModified":"1301901459000","name":"Sonia Braga","type":"Person","_key":"16673"} +{"label":"Anton Lesser","version":22,"id":"27397","lastModified":"1301901436000","name":"Anton Lesser","type":"Person","_key":"16674"} +{"label":"Urbano Barberini","version":24,"id":"27398","lastModified":"1301901775000","name":"Urbano Barberini","type":"Person","_key":"16675"} +{"label":"Paolo Calabresi","version":25,"id":"27399","lastModified":"1301902057000","name":"Paolo Calabresi","type":"Person","_key":"16676"} +{"label":"Riccardo Salerno","version":20,"id":"27400","lastModified":"1301902123000","name":"Riccardo Salerno","type":"Person","_key":"16677"} +{"label":"Bruno Bilotta","version":21,"id":"27401","lastModified":"1301901850000","name":"Bruno Bilotta","type":"Person","_key":"16678"} +{"label":"Lawrence Blight","version":20,"id":"27402","lastModified":"1301902123000","name":"Lawrence Blight","type":"Person","_key":"16679"} +{"label":"Christian Ashton","version":20,"id":"27403","lastModified":"1301902123000","name":"Christian Ashton","type":"Person","_key":"16680"} +{"label":"Christian Catuogno","version":20,"id":"27404","lastModified":"1301902123000","name":"Christian Catuogno","type":"Person","_key":"16681"} +{"label":"Daniel Wilson","version":24,"id":"27405","lastModified":"1301901833000","name":"Daniel Wilson","type":"Person","_key":"16682"} +{"label":"Florian Fitz","version":25,"id":"27406","lastModified":"1301901497000","name":"Florian Fitz","type":"Person","_key":"16683"} +{"label":"Soumaya Harris","version":20,"id":"27407","lastModified":"1301902123000","name":"Soumaya Harris","type":"Person","_key":"16684"} +{"label":"Mark Lewis","version":28,"id":"27408","lastModified":"1301902123000","name":"Mark Lewis","type":"Person","_key":"16685"} +{"label":"Jacqueline Lustig","version":20,"id":"27409","lastModified":"1301902123000","name":"Jacqueline Lustig","type":"Person","_key":"16686"} +{"label":"Justine Midda","version":20,"id":"27410","lastModified":"1301902123000","name":"Justine Midda","type":"Person","_key":"16687"} +{"label":"Stefania Montorsi","version":31,"id":"27411","lastModified":"1301901607000","name":"Stefania Montorsi","type":"Person","_key":"16688"} +{"label":"Benito Pacifico","version":20,"id":"27412","lastModified":"1301902123000","name":"Benito Pacifico","type":"Person","_key":"16689"} +{"label":"Franco Maria Salamon","version":25,"id":"15911","lastModified":"1301901396000","name":"Franco Maria Salamon","type":"Person","_key":"16690"} +{"label":"Claudio Pacifico","version":21,"id":"15913","lastModified":"1301901942000","name":"Claudio Pacifico","type":"Person","_key":"16691"} +{"label":"Imane Soussi","version":20,"id":"27413","lastModified":"1301902123000","name":"Imane Soussi","type":"Person","_key":"16692"} +{"label":"Sarah Thomas","version":21,"id":"27414","lastModified":"1301902179000","name":"Sarah Thomas","type":"Person","_key":"16693"} +{"label":"Amy Werba","version":20,"id":"27415","lastModified":"1301902123000","name":"Amy Werba","type":"Person","_key":"16694"} +{"label":"Robert Willox","version":21,"id":"27416","lastModified":"1301902179000","name":"Robert Willox","type":"Person","_key":"16695"} +{"label":"Aziz Janah","version":20,"id":"27417","lastModified":"1301902123000","name":"Aziz Janah","type":"Person","_key":"16696"} +{"label":"San Giovanni \u2013 L'apocalisse","description":"No overview found.","id":"2720","runtime":180,"imdbId":"tt0303668","version":72,"lastModified":"1301905652000","studio":"KirchMedia","genre":"History","title":"San Giovanni \u2013 L'apocalisse","releaseDate":1039478400000,"language":"en","type":"Movie","_key":"16697"} +{"label":"Vittoria Belvedere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a3d\/4d7bedea5e73d62836001a3d\/vittoria-belvedere-profile.jpg","version":24,"birthday":"64450800000","id":"27418","birthplace":"Vibo Valentia, Calabria, Italy","lastModified":"1301901432000","name":"Vittoria Belvedere","type":"Person","_key":"16698"} +{"label":"Benjamin Sadler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4ca628645e73d643ef00002e\/benjamin-sadler-profile.jpg","version":33,"id":"27419","lastModified":"1301901500000","name":"Benjamin Sadler","type":"Person","_key":"16699"} +{"label":"Erol Sander","version":21,"id":"27420","lastModified":"1301901962000","name":"Erol Sander","type":"Person","_key":"16700"} +{"label":"Ian Duncan","version":23,"id":"27421","lastModified":"1301901500000","name":"Ian Duncan","type":"Person","_key":"16701"} +{"label":"Bruce Payne","version":40,"id":"27422","lastModified":"1301901245000","name":"Bruce Payne","type":"Person","_key":"16702"} +{"label":"Alessandro Bertolucci","version":19,"id":"27423","lastModified":"1301902113000","name":"Alessandro Bertolucci","type":"Person","_key":"16703"} +{"label":"Walter Nudo","version":19,"id":"27424","lastModified":"1301902113000","name":"Walter Nudo","type":"Person","_key":"16704"} +{"label":"Constantine Gregory","version":23,"id":"27425","lastModified":"1301902182000","name":"Constantine Gregory","type":"Person","_key":"16705"} +{"label":"Luca Ward","version":22,"id":"27426","lastModified":"1301901910000","name":"Luca Ward","type":"Person","_key":"16706"} +{"label":"Massimiliano Pazzaglia","version":19,"id":"27427","lastModified":"1301902113000","name":"Massimiliano Pazzaglia","type":"Person","_key":"16707"} +{"label":"Aaron Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4bd41f97017a3c7fb2000044\/aaron-johnson-profile.jpg","version":53,"birthday":"645228000000","id":"27428","birthplace":"High Wycombe, England, UK","lastModified":"1301904072000","name":"Aaron Johnson","type":"Person","_key":"16708"} +{"label":"Alex McSweeney","version":20,"id":"27429","lastModified":"1301902113000","name":"Alex McSweeney","type":"Person","_key":"16709"} +{"label":"Stefania Rivi","version":19,"id":"27430","lastModified":"1301902113000","name":"Stefania Rivi","type":"Person","_key":"16710"} +{"label":"Carlo Greco","version":19,"id":"27431","lastModified":"1301902113000","name":"Carlo Greco","type":"Person","_key":"16711"} +{"label":"Luigi Diberti","version":23,"id":"27432","lastModified":"1301901747000","name":"Luigi Diberti","type":"Person","_key":"16712"} +{"label":"Paolo Villaggio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/478\/4bfa7bed017a3c7033000478\/paolo-villaggio-profile.jpg","biography":"Comico Italiano nato a Genova e famoso per i suoi personaggi paradossali tra cui Fantozzi, Fracchia. E' anche uno scrittore e regista e ultimamente a svolto anche parti pi\u00f9 serie.","version":75,"birthday":"-1122080400000","id":"27433","birthplace":"Genova, Italy","lastModified":"1301901380000","name":"Paolo Villaggio","type":"Person","_key":"16713"} +{"label":"Z","description":"A pulse-pounding political thriller, Greek expatriate director Costa-Gavras\u2019s Z was one of the cinematic sensations of the late sixties, and remains among the most vital dispatches from that hallowed era of filmmaking. This Academy Award winner\u2014loosely based on the 1963 assassination of Greek left-wing activist Gregoris Lambrakis\u2014stars Yves Montand as a prominent politician and doctor whose public murder amid a violent demonstration is covered up by military and government officials; Jean-Louis ","id":"2721","runtime":127,"imdbId":"tt0065234","version":159,"lastModified":"1301905204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e99\/4bc9177e017a3c57fe008e99\/z-mid.jpg","studio":"Valoria Films","genre":"Thriller","title":"Z","releaseDate":-4147200000,"language":"en","type":"Movie","_key":"16714"} +{"label":"Fran\u00e7ois P\u00e9rier","version":32,"id":"27440","lastModified":"1301901526000","name":"Fran\u00e7ois P\u00e9rier","type":"Person","_key":"16715"} +{"label":"Pierre Dux","version":24,"id":"27441","lastModified":"1301902161000","name":"Pierre Dux","type":"Person","_key":"16716"} +{"label":"El Otro lado de la cama","description":"When Paula leaves her mate Pedro, he misses her and looks for comfort with his best friends, Javier and Sonia. Paula is having an affair with Javier. The cuckold Pedro tries to find who is the secret lover of Paula, and hires a private eye. Meanwhile, while comforting Pedro, Sonia has one night stand with him and Javier thinks she is cheating him with her lesbian friend Lucia.","id":"2722","runtime":114,"imdbId":"tt0301524","version":87,"lastModified":"1301904962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d99\/4d583a3e5e73d6176000ad99\/el-otro-lado-de-la-cama-mid.jpg","studio":"V\u00eda Digital","genre":"Comedy","title":"El Otro lado de la cama","releaseDate":1019865600000,"language":"en","type":"Movie","_key":"16717"} +{"label":"Emilio Mart\u00ednez L\u00e1zaro","version":24,"id":"27449","lastModified":"1301901560000","name":"Emilio Mart\u00ednez L\u00e1zaro","type":"Person","_key":"16718"} +{"label":"Ernesto Alterio","version":26,"id":"27459","lastModified":"1301901597000","name":"Ernesto Alterio","type":"Person","_key":"16719"} +{"label":"Guillermo Toledo","version":35,"id":"27460","lastModified":"1301901565000","name":"Guillermo Toledo","type":"Person","_key":"16720"} +{"label":"Natalia Verbeke","version":31,"id":"27461","lastModified":"1301901842000","name":"Natalia Verbeke","type":"Person","_key":"16721"} +{"label":"Alberto San Juan","version":22,"id":"27462","lastModified":"1301902034000","name":"Alberto San Juan","type":"Person","_key":"16722"} +{"label":"Mar\u00eda Esteve","version":20,"id":"27463","lastModified":"1301901747000","name":"Mar\u00eda Esteve","type":"Person","_key":"16723"} +{"label":"Nathalie Poza","version":21,"id":"27464","lastModified":"1301902143000","name":"Nathalie Poza","type":"Person","_key":"16724"} +{"label":"Secun de la Rosa","version":20,"id":"27465","lastModified":"1301901747000","name":"Secun de la Rosa","type":"Person","_key":"16725"} +{"label":"Carol Salvador","version":20,"id":"27466","lastModified":"1301901747000","name":"Carol Salvador","type":"Person","_key":"16726"} +{"label":"Geli Albaladejo","version":20,"id":"27467","lastModified":"1301901542000","name":"Geli Albaladejo","type":"Person","_key":"16727"} +{"label":"Blanca Marsillach","version":21,"id":"27468","lastModified":"1301901643000","name":"Blanca Marsillach","type":"Person","_key":"16728"} +{"label":"Cote Soler","version":23,"id":"27470","lastModified":"1301901440000","name":"Cote Soler","type":"Person","_key":"16729"} +{"label":"Luis Bermejo","version":20,"id":"27471","lastModified":"1301901542000","name":"Luis Bermejo","type":"Person","_key":"16730"} +{"label":"Curro Iglesias","version":20,"id":"27472","lastModified":"1301901542000","name":"Curro Iglesias","type":"Person","_key":"16731"} +{"label":"Mohamed Khashoggi","version":22,"id":"27454","lastModified":"1301901747000","name":"Mohamed Khashoggi","type":"Person","_key":"16732"} +{"label":"Daniel Gonz\u00e1lez","version":20,"id":"27473","lastModified":"1301901542000","name":"Daniel Gonz\u00e1lez","type":"Person","_key":"16733"} +{"label":"Roma Alfaro","version":20,"id":"27474","lastModified":"1301901542000","name":"Roma Alfaro","type":"Person","_key":"16734"} +{"label":"Coral Ortega","version":22,"id":"27475","lastModified":"1301901514000","name":"Coral Ortega","type":"Person","_key":"16735"} +{"label":"Dacia Gonz\u00e1lez","version":20,"id":"27476","lastModified":"1301901542000","name":"Dacia Gonz\u00e1lez","type":"Person","_key":"16736"} +{"label":"Mercedes del Castillo","version":20,"id":"27477","lastModified":"1301901542000","name":"Mercedes del Castillo","type":"Person","_key":"16737"} +{"label":"Julio Viero","version":20,"id":"27478","lastModified":"1301901542000","name":"Julio Viero","type":"Person","_key":"16738"} +{"label":"Julio Reches","version":20,"id":"27479","lastModified":"1301901542000","name":"Julio Reches","type":"Person","_key":"16739"} +{"label":"Leticia Dolera","version":22,"id":"45060","lastModified":"1301901563000","name":"Leticia Dolera","type":"Person","_key":"16740"} +{"label":"Postal","description":"The story begins with a regular Joe who tries desperately to seek employment, but embarks on a violent rampage when he teams up with cult leader Uncle Dave. Their first act is to heist an amusement park, only to learn that the Taliban are planning the same heist as well. Chaos ensues, and now the Postal Dude must not only take on terrorists but also political figures.","id":"2728","runtime":100,"imdbId":"tt0486640","homepage":"http:\/\/www.postal-the-movie.com\/","version":254,"lastModified":"1301903499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eae\/4bc9177f017a3c57fe008eae\/postal-mid.jpg","studio":"Running With Scissors","genre":"Action","title":"Postal","releaseDate":1186790400000,"language":"en","type":"Movie","_key":"16741"} +{"label":"Michael Benyaer","version":21,"id":"27588","lastModified":"1301901432000","name":"Michael Benyaer","type":"Person","_key":"16742"} +{"label":"Jackie Tohn","version":20,"id":"27589","lastModified":"1301901747000","name":"Jackie Tohn","type":"Person","_key":"16743"} +{"label":"Chris Spencer","version":28,"id":"27590","lastModified":"1301901558000","name":"Chris Spencer","type":"Person","_key":"16744"} +{"label":"Vince Desiderio","version":20,"id":"27591","lastModified":"1301901623000","name":"Vince Desiderio","type":"Person","_key":"16745"} +{"label":"Larry Thomas","version":22,"id":"27592","lastModified":"1301901581000","name":"Larry Thomas","type":"Person","_key":"16746"} +{"label":"Michaela Mann","version":22,"id":"27593","lastModified":"1301901787000","name":"Michaela Mann","type":"Person","_key":"16747"} +{"label":"Indochine","description":"The story starts in the 1930's at one of the largest rubber-tree plantations in Indochine (Vietnam). This plantation is owned by the French colonist Eliane, a proud woman who lives with her father and her native adoptive daughter Camille. She doesn't have a husband or a man in her life (apart from her father), but gets to know the young officer Jean-Baptiste when both want to buy the same painting at an auction. They have a short affair, but than she refuses to see him again. In the meantime it'","id":"2731","runtime":157,"imdbId":"tt0104507","version":339,"lastModified":"1302056285000","studio":"Cin\u00e9 Cinq","genre":"Drama","title":"Indochine","releaseDate":703296000000,"language":"en","type":"Movie","_key":"16748"} +{"label":"R\u00e9gis Wargnier","version":29,"id":"27614","lastModified":"1301901287000","name":"R\u00e9gis Wargnier","type":"Person","_key":"16749"} +{"label":"Alain Fromager","version":23,"id":"27615","lastModified":"1301901404000","name":"Alain Fromager","type":"Person","_key":"16750"} +{"label":"Eric Nguyen","version":20,"id":"27616","lastModified":"1301902194000","name":"Eric Nguyen","type":"Person","_key":"16751"} +{"label":"Jean-Baptiste Huynh","version":20,"id":"27806","lastModified":"1301902161000","name":"Jean-Baptiste Huynh","type":"Person","_key":"16752"} +{"label":"Henri Marteau","version":23,"id":"27807","lastModified":"1301901971000","name":"Henri Marteau","type":"Person","_key":"16753"} +{"label":"Nemesis","description":"No overview found.","id":"2732","runtime":0,"imdbId":"tt0800353","version":427,"lastModified":"1302034103000","genre":"Drama","title":"Nemesis","language":"en","type":"Movie","_key":"16754"} +{"label":"Nicole Mosleh","version":22,"id":"27617","lastModified":"1301902201000","name":"Nicole Mosleh","type":"Person","_key":"16755"} +{"label":"Janina Sachau","version":20,"id":"27624","lastModified":"1301902193000","name":"Janina Sachau","type":"Person","_key":"16756"} +{"label":"Gesine Cukrowski","version":24,"id":"27625","lastModified":"1301901661000","name":"Gesine Cukrowski","type":"Person","_key":"16757"} +{"label":"Goetz Schulte","version":20,"id":"27626","lastModified":"1301902193000","name":"Goetz Schulte","type":"Person","_key":"16758"} +{"label":"Waldemar Kobus","version":35,"id":"27627","lastModified":"1301901661000","name":"Waldemar Kobus","type":"Person","_key":"16759"} +{"label":"Joanne Gl\u00e4sel","version":20,"id":"27628","lastModified":"1301902010000","name":"Joanne Gl\u00e4sel","type":"Person","_key":"16760"} +{"label":"Vincenzo Tanassi","version":17,"id":"27629","lastModified":"1301902168000","name":"Vincenzo Tanassi","type":"Person","_key":"16761"} +{"label":"Francesco D'Ignazio","version":18,"id":"27630","lastModified":"1301902190000","name":"Francesco D'Ignazio","type":"Person","_key":"16762"} +{"label":"David","description":"No overview found.","id":"2734","runtime":190,"imdbId":"tt0118933","version":160,"lastModified":"1301906655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d0\/4c371b397b9aa105fa0000d0\/david-mid.jpg","studio":"Beta Film","genre":"History","title":"David","releaseDate":859420800000,"language":"en","type":"Movie","_key":"16763"} +{"label":"Nathaniel Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4cad0c0f5e73d6507100000c\/nathaniel-parker-profile.jpg","version":39,"birthday":"-240627600000","id":"27631","birthplace":"London, England, UK","lastModified":"1301901221000","name":"Nathaniel Parker","type":"Person","_key":"16764"} +{"label":"Ben Daniels","version":28,"id":"27632","lastModified":"1302022846000","name":"Ben Daniels","type":"Person","_key":"16765"} +{"label":"Richard Ashcroft","version":20,"id":"27633","lastModified":"1301902199000","name":"Richard Ashcroft","type":"Person","_key":"16766"} +{"label":"Gideon Turner","version":20,"id":"27634","lastModified":"1301902190000","name":"Gideon Turner","type":"Person","_key":"16767"} +{"label":"Dominic Rowan","version":20,"id":"27635","lastModified":"1301902169000","name":"Dominic Rowan","type":"Person","_key":"16768"} +{"label":"Edward Hall","version":20,"id":"27636","lastModified":"1301902199000","name":"Edward Hall","type":"Person","_key":"16769"} +{"label":"Clara Bellar","version":24,"id":"27637","lastModified":"1301901507000","name":"Clara Bellar","type":"Person","_key":"16770"} +{"label":"Gina Bellman","version":24,"id":"27638","lastModified":"1301901983000","name":"Gina Bellman","type":"Person","_key":"16771"} +{"label":"John Francis","version":20,"id":"27639","lastModified":"1301902190000","name":"John Francis","type":"Person","_key":"16772"} +{"label":"Mohamad Belfikh","version":20,"id":"27640","lastModified":"1301902190000","name":"Mohamad Belfikh","type":"Person","_key":"16773"} +{"label":"Peter-Hugo Daly","version":22,"id":"27641","lastModified":"1301902169000","name":"Peter-Hugo Daly","type":"Person","_key":"16774"} +{"label":"Lina Sastri","version":27,"id":"27642","lastModified":"1301902169000","name":"Lina Sastri","type":"Person","_key":"16775"} +{"label":"Marco Leonardi","version":33,"id":"27643","lastModified":"1301901459000","name":"Marco Leonardi","type":"Person","_key":"16776"} +{"label":"Luke Elliot","version":20,"id":"27644","lastModified":"1301902190000","name":"Luke Elliot","type":"Person","_key":"16777"} +{"label":"Giorgio Francesco Palombi","version":20,"id":"27645","lastModified":"1301902203000","name":"Giorgio Francesco Palombi","type":"Person","_key":"16778"} +{"label":"Freddy Douglas","version":22,"id":"27646","lastModified":"1301902196000","name":"Freddy Douglas","type":"Person","_key":"16779"} +{"label":"Angelo Infanti","version":35,"id":"27647","lastModified":"1302024945000","name":"Angelo Infanti","type":"Person","_key":"16780"} +{"label":"Abdelahk Lazali","version":20,"id":"27648","lastModified":"1301902190000","name":"Abdelahk Lazali","type":"Person","_key":"16781"} +{"label":"Joseph Long","version":27,"id":"27649","lastModified":"1301902169000","name":"Joseph Long","type":"Person","_key":"16782"} +{"label":"Emilio Doorgasingh","version":22,"id":"27650","lastModified":"1301901823000","name":"Emilio Doorgasingh","type":"Person","_key":"16783"} +{"label":"Francesca Bartellini","version":20,"id":"27651","lastModified":"1301901669000","name":"Francesca Bartellini","type":"Person","_key":"16784"} +{"label":"Paul Angelis","version":24,"id":"27652","lastModified":"1301901507000","name":"Paul Angelis","type":"Person","_key":"16785"} +{"label":"Jeremy Peters","version":22,"id":"27653","lastModified":"1301902178000","name":"Jeremy Peters","type":"Person","_key":"16786"} +{"label":"Said Amel","version":20,"id":"27654","lastModified":"1301902198000","name":"Said Amel","type":"Person","_key":"16787"} +{"label":"Peter Mair","version":20,"id":"27655","lastModified":"1301902174000","name":"Peter Mair","type":"Person","_key":"16788"} +{"label":"Peter Birrel","version":20,"id":"27656","lastModified":"1301902183000","name":"Peter Birrel","type":"Person","_key":"16789"} +{"label":"Rachid Fekkak","version":20,"id":"27657","lastModified":"1301902174000","name":"Rachid Fekkak","type":"Person","_key":"16790"} +{"label":"Zaki Houari","version":20,"id":"27658","lastModified":"1301902186000","name":"Zaki Houari","type":"Person","_key":"16791"} +{"label":"Tim Woodward","version":29,"id":"27659","lastModified":"1301902169000","name":"Tim Woodward","type":"Person","_key":"16792"} +{"label":"Roger Hammond","version":31,"id":"27660","lastModified":"1301901676000","name":"Roger Hammond","type":"Person","_key":"16793"} +{"label":"Mahjoub Raji","version":20,"id":"27661","lastModified":"1301902169000","name":"Mahjoub Raji","type":"Person","_key":"16794"} +{"label":"Mohamen Mehdi Ouazanni","version":17,"id":"27662","lastModified":"1301902169000","name":"Mohamen Mehdi Ouazanni","type":"Person","_key":"16795"} +{"label":"Ahmed Boulane","version":23,"id":"27664","lastModified":"1301901807000","name":"Ahmed Boulane","type":"Person","_key":"16796"} +{"label":"Mohamed Razine","version":20,"id":"27665","lastModified":"1301902169000","name":"Mohamed Razine","type":"Person","_key":"16797"} +{"label":"Mohamed Bastaoui","version":20,"id":"27666","lastModified":"1301902169000","name":"Mohamed Bastaoui","type":"Person","_key":"16798"} +{"label":"Salah Benmoussa","version":20,"id":"27667","lastModified":"1301902169000","name":"Salah Benmoussa","type":"Person","_key":"16799"} +{"label":"Adil Abdelwahab","version":20,"id":"27668","lastModified":"1301902169000","name":"Adil Abdelwahab","type":"Person","_key":"16800"} +{"label":"Mohamed Tsouli","version":20,"id":"27669","lastModified":"1301902169000","name":"Mohamed Tsouli","type":"Person","_key":"16801"} +{"label":"Abdellah Lamrani","version":20,"id":"27670","lastModified":"1301902169000","name":"Abdellah Lamrani","type":"Person","_key":"16802"} +{"label":"Mohamed Khaddy","version":20,"id":"27671","lastModified":"1301902169000","name":"Mohamed Khaddy","type":"Person","_key":"16803"} +{"label":"Younes Megri","version":17,"id":"27672","lastModified":"1301902169000","name":"Younes Megri","type":"Person","_key":"16804"} +{"label":"Adil Besri","version":20,"id":"27673","lastModified":"1301901983000","name":"Adil Besri","type":"Person","_key":"16805"} +{"label":"Mustapha Salamat","version":20,"id":"27674","lastModified":"1301902169000","name":"Mustapha Salamat","type":"Person","_key":"16806"} +{"label":"Mohamed Basri","version":17,"id":"27675","lastModified":"1301902169000","name":"Mohamed Basri","type":"Person","_key":"16807"} +{"label":"Robert Markowitz","version":22,"id":"27676","lastModified":"1301901577000","name":"Robert Markowitz","type":"Person","_key":"16808"} +{"label":"Monsieur seul","description":"No overview found.","id":"2735","runtime":240,"imdbId":"tt0174934","version":46,"lastModified":"1301904723000","studio":"Antenne-2","genre":"Crime","title":"Monsieur seul","releaseDate":145497600000,"language":"en","type":"Movie","_key":"16809"} +{"label":"Joseph Drimal","version":21,"id":"27695","lastModified":"1301902161000","name":"Joseph Drimal","type":"Person","_key":"16810"} +{"label":"Michel Vitold","version":26,"id":"27696","lastModified":"1301901569000","name":"Michel Vitold","type":"Person","_key":"16811"} +{"label":"Fernand Berset","version":21,"id":"27697","lastModified":"1301902010000","name":"Fernand Berset","type":"Person","_key":"16812"} +{"label":"Bernard La Jarrige","version":21,"id":"27698","lastModified":"1301902161000","name":"Bernard La Jarrige","type":"Person","_key":"16813"} +{"label":"Jean Par\u00e9d\u00e8s","version":24,"id":"27699","lastModified":"1301901971000","name":"Jean Par\u00e9d\u00e8s","type":"Person","_key":"16814"} +{"label":"G\u00e9rard Victor","version":20,"id":"27700","lastModified":"1301902010000","name":"G\u00e9rard Victor","type":"Person","_key":"16815"} +{"label":"Serge Berry","version":20,"id":"27701","lastModified":"1301901971000","name":"Serge Berry","type":"Person","_key":"16816"} +{"label":"Jacques Disses","version":20,"id":"27702","lastModified":"1301902029000","name":"Jacques Disses","type":"Person","_key":"16817"} +{"label":"Sylvie Fontaine","version":20,"id":"27703","lastModified":"1301901971000","name":"Sylvie Fontaine","type":"Person","_key":"16818"} +{"label":"Jacqueline Duvanel","version":20,"id":"27704","lastModified":"1301901971000","name":"Jacqueline Duvanel","type":"Person","_key":"16819"} +{"label":"Mony Dalm\u00e8s","version":20,"id":"27705","lastModified":"1301902028000","name":"Mony Dalm\u00e8s","type":"Person","_key":"16820"} +{"label":"Bernadette Lange","version":20,"id":"27706","lastModified":"1301901971000","name":"Bernadette Lange","type":"Person","_key":"16821"} +{"label":"Op\u00e9ration lune","description":"A French documentary or, one might say more accurately, a mockumentary, by director William Karel which originally aired on Arte in 2002 with the title Op\u00e9ration Lune. The basic premise for the film is the theory that the television footage from the Apollo 11 Moon landing was faked and actually recorded in a studio by the CIA with help from director Stanley Kubrick.","id":"2740","runtime":52,"imdbId":"tt0344160","version":35,"lastModified":"1301905009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecc\/4bc91783017a3c57fe008ecc\/operation-lune-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Documentary","title":"Op\u00e9ration lune","releaseDate":1034726400000,"language":"en","type":"Movie","_key":"16822"} +{"label":"Richard Nixon","version":22,"id":"27765","lastModified":"1301901354000","name":"Richard Nixon","type":"Person","_key":"16823"} +{"label":"William Karel","version":20,"id":"27766","lastModified":"1301901318000","name":"William Karel","type":"Person","_key":"16824"} +{"label":"Au th\u00e9\u00e2tre ce soir","description":"No overview found.","id":"2741","title":"Au th\u00e9\u00e2tre ce soir","language":"en","lastModified":"1301908527000","version":56,"type":"Movie","_key":"16825"} +{"label":"Naked Lunch","description":"After developing an addiction to the substance he uses to kill bugs, an exterminator accidentally murders his wife and becomes involved in a secret government plot being orchestrated by giant bugs in an Islamic port town in Africa.","id":"2742","runtime":115,"imdbId":"tt0102511","version":216,"lastModified":"1302039313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed5\/4bc91784017a3c57fe008ed5\/naked-lunch-mid.jpg","studio":"Film Trustees Ltd.","genre":"Drama","title":"Naked Lunch","releaseDate":693792000000,"language":"en","type":"Movie","_key":"16826"} +{"label":"Joseph Scoren","version":21,"id":"27810","lastModified":"1301902190000","name":"Joseph Scoren","type":"Person","_key":"16827"} +{"label":"Peter Weller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/420\/4ca0bea07b9aa15e3c000420\/peter-weller-profile.jpg","version":72,"id":"27811","lastModified":"1301901099000","name":"Peter Weller","type":"Person","_key":"16828"} +{"label":"Monique Mercure","version":28,"id":"27812","lastModified":"1301901681000","name":"Monique Mercure","type":"Person","_key":"16829"} +{"label":"Michael Zelniker","version":22,"id":"27813","lastModified":"1301901823000","name":"Michael Zelniker","type":"Person","_key":"16830"} +{"label":"The Borrowers","description":"The Borrowers are small humans (about 15 cm high) that live in England. They live in human homes and feed from 'borrowed' food from the house they live in. The movie follows a family of Borrowers on their search for a new home.","id":"2745","runtime":164,"imdbId":"tt0105957","version":74,"lastModified":"1301906089000","studio":"Working Title Films","genre":"Adventure","title":"The Borrowers","releaseDate":754358400000,"language":"en","type":"Movie","_key":"16831"} +{"label":"John Henderson","version":20,"id":"107736","lastModified":"1301902537000","name":"John Henderson","type":"Person","_key":"16832"} +{"label":"Penelope Wilton","version":17,"id":"27819","lastModified":"1301901669000","name":"Penelope Wilton","type":"Person","_key":"16833"} +{"label":"Rebecca Callard","version":20,"id":"27820","lastModified":"1301901623000","name":"Rebecca Callard","type":"Person","_key":"16834"} +{"label":"Paul Cross","version":19,"id":"27821","lastModified":"1301901623000","name":"Paul Cross","type":"Person","_key":"16835"} +{"label":"David Ryall","version":28,"id":"27822","lastModified":"1301901444000","name":"David Ryall","type":"Person","_key":"16836"} +{"label":"Stanley Lebor","version":19,"id":"27823","lastModified":"1301902113000","name":"Stanley Lebor","type":"Person","_key":"16837"} +{"label":"Pamela Cundell","version":19,"id":"27824","lastModified":"1301902113000","name":"Pamela Cundell","type":"Person","_key":"16838"} +{"label":"Victoria Donovan","version":19,"id":"27825","lastModified":"1301901910000","name":"Victoria Donovan","type":"Person","_key":"16839"} +{"label":"fl 19,99","description":"Different couples go to a hotel which has an special offer for staying over at the 31st of december 1999 in to the new millenium. The movie follows the different couples and their reasons to be in the hotel.","id":"2747","runtime":90,"imdbId":"tt0126911","version":64,"lastModified":"1301908618000","studio":"Isabella Films BV","genre":"Comedy","title":"fl 19,99","releaseDate":907804800000,"language":"en","type":"Movie","_key":"16840"} +{"label":"Mart Dominicus","version":21,"id":"27829","lastModified":"1301901796000","name":"Mart Dominicus","type":"Person","_key":"16841"} +{"label":"Thomas Acda","version":26,"id":"27831","lastModified":"1301901796000","name":"Thomas Acda","type":"Person","_key":"16842"} +{"label":"Marijke Aerts","version":20,"id":"27832","lastModified":"1301902176000","name":"Marijke Aerts","type":"Person","_key":"16843"} +{"label":"Abdenbi Azzaoui","version":20,"id":"27833","lastModified":"1301901681000","name":"Abdenbi Azzaoui","type":"Person","_key":"16844"} +{"label":"Jacqueline Blom","version":23,"id":"27834","lastModified":"1301901796000","name":"Jacqueline Blom","type":"Person","_key":"16845"} +{"label":"Jan Willem Brakenhoff","version":17,"id":"27835","lastModified":"1301901805000","name":"Jan Willem Brakenhoff","type":"Person","_key":"16846"} +{"label":"Leny Breederveld","version":22,"id":"27836","lastModified":"1301901796000","name":"Leny Breederveld","type":"Person","_key":"16847"} +{"label":"Manja Christis","version":20,"id":"27837","lastModified":"1301901823000","name":"Manja Christis","type":"Person","_key":"16848"} +{"label":"Cleo Dankert","version":20,"id":"27838","lastModified":"1301901796000","name":"Cleo Dankert","type":"Person","_key":"16849"} +{"label":"Genio De Groot","version":17,"id":"27839","lastModified":"1301901805000","name":"Genio De Groot","type":"Person","_key":"16850"} +{"label":"Wim Kouwenhoven","version":20,"id":"27840","lastModified":"1301901796000","name":"Wim Kouwenhoven","type":"Person","_key":"16851"} +{"label":"Journey to Italy","description":"This deceptively simple tale of a bored English couple (George Sanders and Ingrid Bergman) travelling to Italy to find a buyer for a house inherited from an uncle is transformed by Roberto Rossellini into a passionate story of cruelty and cynicism as their marriage disintegrates around them.","id":"2748","runtime":81,"imdbId":"tt0046511","version":176,"lastModified":"1302033338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eec\/4bc91786017a3c57fe008eec\/viaggio-in-italia-mid.jpg","studio":"Sveva Film","genre":"Drama","title":"Journey to Italy","releaseDate":-483408000000,"language":"en","type":"Movie","_key":"16852"} +{"label":"Marcello Caracciolo Di Laurino","version":19,"id":"27854","lastModified":"1301901823000","name":"Marcello Caracciolo Di Laurino","type":"Person","_key":"16853"} +{"label":"Vladimiro Cecchi","version":20,"id":"27857","lastModified":"1301901910000","name":"Vladimiro Cecchi","type":"Person","_key":"16854"} +{"label":"Jackie Frost","version":20,"id":"27844","lastModified":"1301901432000","name":"Jackie Frost","type":"Person","_key":"16855"} +{"label":"Anna Proclemer","version":20,"id":"27841","lastModified":"1301902113000","name":"Anna Proclemer","type":"Person","_key":"16856"} +{"label":"Leslie Daniels","version":19,"id":"27842","lastModified":"1301901805000","name":"Leslie Daniels","type":"Person","_key":"16857"} +{"label":"Natalia Ray","version":20,"id":"27843","lastModified":"1301901747000","name":"Natalia Ray","type":"Person","_key":"16858"} +{"label":"15 Minutes","description":"When Eastern European criminals Oleg and Emil come to New York City to pick up their share of a heist score, Oleg steals a video camera and starts filming their activities, both legal and illegal. When they learn how the American media circus can make a remorseless killer look like the victim and make them rich, they target media-savvy NYPD Homicide Detective Eddie Flemming and media-naive FDNY Fire Marshal Jordy Warsaw, the cops investigating their murder and torching of their former criminal p","id":"2749","runtime":120,"imdbId":"tt0179626","version":290,"lastModified":"1301902705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef9\/4bc91789017a3c57fe008ef9\/15-minutes-mid.jpg","studio":"Industry Entertainment","genre":"Action","title":"15 Minutes","releaseDate":989452800000,"language":"en","type":"Movie","_key":"16859"} +{"label":"John Herzfeld","version":40,"id":"27846","lastModified":"1301901650000","name":"John Herzfeld","type":"Person","_key":"16860"} +{"label":"24 Hour Party People","description":"In 1976, Tony Wilson sets up Factory Records and brings Manchester's music to the world.","id":"2750","runtime":117,"imdbId":"tt0274309","homepage":"http:\/\/www.24hourpartypeople-themovie.com\/","version":219,"lastModified":"1301906296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0a\/4bc9178b017a3c57fe008f0a\/24-hour-party-people-mid.jpg","studio":"WAVEpictures","genre":"Comedy","title":"24 Hour Party People","releaseDate":1013558400000,"language":"en","type":"Movie","_key":"16861"} +{"label":"Martin Hancock","version":20,"id":"28158","lastModified":"1301901585000","name":"Martin Hancock","type":"Person","_key":"16862"} +{"label":"Mark Windows","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4b\/4cf154305e73d61926000d4b\/mark-windows-profile.jpg","version":21,"id":"28159","lastModified":"1301901376000","name":"Mark Windows","type":"Person","_key":"16863"} +{"label":"Dave Gorman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d6a\/4cf153df5e73d61925000d6a\/dave-gorman-profile.jpg","version":26,"id":"28160","lastModified":"1301901500000","name":"Dave Gorman","type":"Person","_key":"16864"} +{"label":"John Simm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bce\/4cf13a7e5e73d61924000bce\/john-simm-profile.jpg","biography":"John Simm was born on 10th July 1970 in Leeds, West Yorkshire and grew \nup in Nelson, Lancashire. He attended Edge End High School, Nelson, \nLancashire followed by Blackpool Drama College at 16 and the Drama \nCentre, London at 19. He lives with his wife, actress Kate Magowan, and \ntheir children Ryan (born 13th August 2001) and Molly (born February \n2007). Simm won the best actor award at the Valencia Film Festival for his film debut in \"Boston Kickout\" (1996).","version":40,"birthday":"16412400000","id":"42604","birthplace":"Leeds, West Yorkshire, UK","lastModified":"1301901181000","name":"John Simm","type":"Person","_key":"16865"} +{"label":"3 Misses","description":"Three stories of people in distress that interlock.","id":"2751","runtime":11,"imdbId":"tt0239206","version":33,"lastModified":"1300978186000","studio":"CineTe Filmprodukite","genre":"Animation","title":"3 Misses","releaseDate":883612800000,"language":"en","type":"Movie","_key":"16866"} +{"label":"Paul Driessen","version":23,"id":"27847","lastModified":"1301901569000","name":"Paul Driessen","type":"Person","_key":"16867"} +{"label":"40 Days and 40 Nights","description":"When easy-on-the-eyes Matt Sullivan is dumped by his girlfriend, he swears off all sex for Lent, which lasts 40 days and 40 nights. But his abstinence is tested when he meets beautiful and sexy Erica Sutton. Feeling like he's doomed if he doesn't stick to his plan, he struggles to resist the girl of his dreams.","id":"2752","runtime":96,"imdbId":"tt0243736","trailer":"http:\/\/www.youtube.com\/watch?v=yL0ChfJe2F8","version":444,"lastModified":"1302032769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f18\/4bc9178d017a3c57fe008f18\/40-days-and-40-nights-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"40 Days and 40 Nights","releaseDate":1027555200000,"language":"en","tagline":"One Man Is About To Do The Unthinkable. No Sex. Whatsoever. For...","type":"Movie","_key":"16868"} +{"label":"Barry Newman","version":36,"id":"27860","lastModified":"1301901353000","name":"Barry Newman","type":"Person","_key":"16869"} +{"label":"Mary Gross","version":32,"id":"27862","lastModified":"1301901324000","name":"Mary Gross","type":"Person","_key":"16870"} +{"label":"Paulo Costanzo","version":33,"id":"57133","lastModified":"1301901566000","name":"Paulo Costanzo","type":"Person","_key":"16871"} +{"label":"The Assault","description":"At the end of WW II the Dutch resistance kills a German officer in front of the house of a Dutch family. Years after the war the young boy who witnessed the killing runs into the members of the resistance who committed the killing.","id":"2753","runtime":124,"imdbId":"tt0090576","version":269,"lastModified":"1301903158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4cd6c6b57b9aa11b260002a7\/de-aanslag-mid.jpg","studio":"Fons Rademakers Produktie","genre":"Drama","title":"The Assault","releaseDate":508032000000,"language":"en","type":"Movie","_key":"16872"} +{"label":"Fons Rademakers","version":31,"id":"27866","lastModified":"1301901428000","name":"Fons Rademakers","type":"Person","_key":"16873"} +{"label":"Marc van Uchelen","version":22,"id":"27867","lastModified":"1301901492000","name":"Marc van Uchelen","type":"Person","_key":"16874"} +{"label":"John Kraaykamp","version":21,"id":"27868","lastModified":"1301901910000","name":"John Kraaykamp","type":"Person","_key":"16875"} +{"label":"Huub van der Lubbe","version":21,"id":"27869","lastModified":"1301901910000","name":"Huub van der Lubbe","type":"Person","_key":"16876"} +{"label":"Christian Golusda","version":24,"id":"27870","lastModified":"1301901788000","name":"Christian Golusda","type":"Person","_key":"16877"} +{"label":"Harold Bendig","version":21,"id":"27871","lastModified":"1301901910000","name":"Harold Bendig","type":"Person","_key":"16878"} +{"label":"Lex Wiertz","version":21,"id":"27872","lastModified":"1301901910000","name":"Lex Wiertz","type":"Person","_key":"16879"} +{"label":"Abel","description":"An extremely weird comedy about the life of 31- year-old Abel, who has never left home. After failing with doctors and psychiatrists, Abel's father Victor brings home Christine, a friend, in an attempt to teach Abel basic social skills. After that trouble starts and Abel is thrown out into the street.","id":"2754","runtime":100,"imdbId":"tt0090579","version":82,"lastModified":"1301905652000","studio":"Cooperatieve Muziek-Theatre","genre":"Comedy","title":"Abel","releaseDate":509846400000,"language":"en","type":"Movie","_key":"16880"} +{"label":"Alex van Warmerdam","version":44,"id":"27875","lastModified":"1301901286000","name":"Alex van Warmerdam","type":"Person","_key":"16881"} +{"label":"Henri Garcin","version":37,"id":"27880","lastModified":"1301901451000","name":"Henri Garcin","type":"Person","_key":"16882"} +{"label":"Olga Zuiderhoek","version":21,"id":"27881","lastModified":"1301901746000","name":"Olga Zuiderhoek","type":"Person","_key":"16883"} +{"label":"Annet Malherbe","version":28,"id":"27882","lastModified":"1301901542000","name":"Annet Malherbe","type":"Person","_key":"16884"} +{"label":"Loes Luca","version":23,"id":"27883","lastModified":"1301901776000","name":"Loes Luca","type":"Person","_key":"16885"} +{"label":"Peer Mascini","version":20,"id":"27884","lastModified":"1301901560000","name":"Peer Mascini","type":"Person","_key":"16886"} +{"label":"Marc van Warmerdam","version":23,"id":"27885","lastModified":"1301902190000","name":"Marc van Warmerdam","type":"Person","_key":"16887"} +{"label":"About Schmidt","description":"Schmidt is a man his 60's. He is retiring and wants to start enjoying life, problem is: he has become a gromply old man.","id":"2755","runtime":125,"imdbId":"tt0257360","version":198,"lastModified":"1301903626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4d17f1a45e73d6084200952e\/about-schmidt-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"About Schmidt","releaseDate":1039737600000,"language":"en","type":"Movie","_key":"16888"} +{"label":"June Squibb","version":22,"id":"35515","lastModified":"1301901623000","name":"June Squibb","type":"Person","_key":"16889"} +{"label":"Howard Hesseman","version":47,"id":"35516","lastModified":"1302066402000","name":"Howard Hesseman","type":"Person","_key":"16890"} +{"label":"Connie Ray","version":22,"id":"35517","lastModified":"1301901542000","name":"Connie Ray","type":"Person","_key":"16891"} +{"label":"Harry Groener","version":22,"id":"35518","lastModified":"1301901542000","name":"Harry Groener","type":"Person","_key":"16892"} +{"label":"Mark Venhuizen","version":22,"id":"35519","lastModified":"1301901542000","name":"Mark Venhuizen","type":"Person","_key":"16893"} +{"label":"Cheryl Hamada","version":23,"id":"35520","lastModified":"1301901542000","name":"Cheryl Hamada","type":"Person","_key":"16894"} +{"label":"Matt Winston","version":26,"id":"35521","lastModified":"1301901698000","name":"Matt Winston","type":"Person","_key":"16895"} +{"label":"The Abyss","description":"An American nuclear submarine is attacked (during the cold war) and crashes underwater. The navy asks the workers of a nearby underwater oil rig who are joined by a number of navy SEALS to locate and investigate the cause of the crash. As the crew embark on their mission, they encounter a number of difficulties and discover that they may not be alone. There is something else down there.","id":"2756","runtime":138,"imdbId":"tt0096754","trailer":"http:\/\/www.youtube.com\/watch?v=lJyRF0Fzl9Y","version":549,"lastModified":"1302064642000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f54\/4bc91796017a3c57fe008f54\/the-abyss-mid.jpg","studio":"Lightstorm Entertainment","genre":"Comedy","title":"The Abyss","releaseDate":618624000000,"language":"en","tagline":"There's everything you've ever known about adventure, and then there's The Abyss.","type":"Movie","_key":"16896"} +{"label":"Leo Burmester","version":26,"id":"30151","lastModified":"1301901769000","name":"Leo Burmester","type":"Person","_key":"16897"} +{"label":"John Bedford Lloyd","version":47,"id":"60118","lastModified":"1301901156000","name":"John Bedford Lloyd","type":"Person","_key":"16898"} +{"label":"Adaptation.","description":"Charlie Kaufman writes the way he lives... With Great Difficulty. His Twin Brother Donald Lives the way he writes... with foolish abandon. Susan writes about life... But can't live it. John's life is a book... Waiting to be adapted. One story... Four Lives... A million ways it can end.","id":"2757","runtime":110,"imdbId":"tt0268126","trailer":"http:\/\/www.youtube.com\/watch?v=0HtZ2M4e_AM","homepage":"http:\/\/www.sonypictures.com\/homevideo\/adaptation-superbit\/index.html","version":362,"lastModified":"1302032045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f67\/4bc91799017a3c57fe008f67\/adaptation-mid.jpg","studio":"Propaganda Films","genre":"Comedy","title":"Adaptation.","releaseDate":1023840000000,"language":"en","type":"Movie","_key":"16899"} +{"label":"Jim Beaver","version":27,"id":"29862","lastModified":"1301901547000","name":"Jim Beaver","type":"Person","_key":"16900"} +{"label":"Addams Family Values","description":"Pugsley and Wednesday Addams aren't happy with their new baby brother, Pubert. Gomez tries to comfort Morticia by hiring a nanny. The Addams' finally find the perfect nanny in Debbie. She charms the family, especial Uncle Fester...","id":"2758","runtime":94,"imdbId":"tt0106220","trailer":"http:\/\/www.youtube.com\/watch?v=jVlPzTPLC4M","version":181,"lastModified":"1301901696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7a\/4bc9179d017a3c57fe008f7a\/addams-family-values-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Addams Family Values","releaseDate":753667200000,"language":"en","tagline":"The Family Just Got A Little Stranger","type":"Movie","_key":"16901"} +{"label":"Raul Julia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4c2380a17b9aa13f60000084\/raul-julia-profile.jpg","version":57,"birthday":"-940899600000","id":"27888","birthplace":"San Juan, Puerto Rico","lastModified":"1301999068000","name":"Raul Julia","type":"Person","_key":"16902"} +{"label":"The Adventures of Priscilla, Queen of the Desert","description":"Two drag-queens and a transsexual contract to perform a drag show at a resort in Alice Springs, a resort town in the remote Australian desert. They head west from Sydney aboard their lavender bus, Priscilla. En route, it is discovered that the woman they've contracted with is Anthony's wife. Their bus breaks down, and is repaired by Bob, who travels on with them.","id":"2759","runtime":104,"imdbId":"tt0109045","version":798,"lastModified":"1302031710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8c\/4bc9179f017a3c57fe008f8c\/the-adventures-of-priscilla-queen-of-the-desert-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"The Adventures of Priscilla, Queen of the Desert","releaseDate":782006400000,"language":"en","type":"Movie","_key":"16903"} +{"label":"Stephan Elliott","version":32,"id":"27889","lastModified":"1301901787000","name":"Stephan Elliott","type":"Person","_key":"16904"} +{"label":"The Lodger","description":"No overview found.","id":"2760","runtime":70,"imdbId":"tt0017075","version":328,"lastModified":"1301904904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9f\/4bc917a0017a3c57fe008f9f\/the-lodger-mid.jpg","studio":"Gainsborough Pictures","genre":"Thriller","title":"The Lodger","releaseDate":-1353196800000,"language":"en","type":"Movie","_key":"16905"} +{"label":"Alma Reville","version":34,"id":"3681","lastModified":"1301901463000","name":"Alma Reville","type":"Person","_key":"16906"} +{"label":"Marie Ault","version":20,"id":"27911","lastModified":"1301901669000","name":"Marie Ault","type":"Person","_key":"16907"} +{"label":"Arthur Chesney","version":21,"id":"27912","lastModified":"1301901695000","name":"Arthur Chesney","type":"Person","_key":"16908"} +{"label":"June","version":18,"id":"27913","lastModified":"1301901669000","name":"June","type":"Person","_key":"16909"} +{"label":"Malcolm Keen","version":23,"id":"27914","lastModified":"1301901605000","name":"Malcolm Keen","type":"Person","_key":"16910"} +{"label":"Ivor Novello","version":25,"id":"27915","lastModified":"1301901701000","name":"Ivor Novello","type":"Person","_key":"16911"} +{"label":"Secret Agent","description":"After three British agents are assigned to assassinate a mysterious German spy during World War I, two of them become ambivalent when their duty to the mission conflicts with their consciences.","id":"2761","runtime":86,"imdbId":"tt0028231","version":392,"lastModified":"1301934574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb0\/4bc917a4017a3c57fe008fb0\/secret-agent-mid.jpg","studio":"Gaumont British Production","genre":"Suspense","title":"Secret Agent","releaseDate":-1073001600000,"language":"en","type":"Movie","_key":"16912"} +{"label":"Pen Tennyson","version":23,"id":"27923","lastModified":"1301901746000","name":"Pen Tennyson","type":"Person","_key":"16913"} +{"label":"Percy Marmont","version":26,"id":"27929","lastModified":"1301901746000","name":"Percy Marmont","type":"Person","_key":"16914"} +{"label":"Florence Kahn","version":20,"id":"27930","lastModified":"1301902190000","name":"Florence Kahn","type":"Person","_key":"16915"} +{"label":"Charles Carson","version":23,"id":"27931","lastModified":"1301901933000","name":"Charles Carson","type":"Person","_key":"16916"} +{"label":"Lilli Palmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4bd5a733017a3c2e79000160\/lilli-palmer-profile.jpg","version":38,"id":"27932","lastModified":"1301901514000","name":"Lilli Palmer","type":"Person","_key":"16917"} +{"label":"Young and Innocent","description":"A film actress is murdered by her estranged husband who is jealous of all her young boyfriends. The next day, writer Robert Tisdall (who happens to be one such boyfriend) discovers her body on the beach.","id":"2762","runtime":80,"imdbId":"tt0029811","version":362,"lastModified":"1301903994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bec0da2017a3c37a30001c0\/young-and-innocent-mid.jpg","studio":"Gaumont British Production","genre":"Drama","title":"Young and Innocent","releaseDate":-1041379200000,"language":"en","type":"Movie","_key":"16918"} +{"label":"Nova Pilbeam","version":24,"id":"27939","lastModified":"1301901623000","name":"Nova Pilbeam","type":"Person","_key":"16919"} +{"label":"Derrick De Marney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09e\/4c49b3537b9aa115fe00009e\/derrick-de-marney-profile.jpg","version":26,"birthday":"-1996966800000","id":"27940","birthplace":"London, England","lastModified":"1301901799000","name":"Derrick De Marney","type":"Person","_key":"16920"} +{"label":"Edward Rigby","version":25,"id":"27941","lastModified":"1301901776000","name":"Edward Rigby","type":"Person","_key":"16921"} +{"label":"George Curzon","version":24,"id":"27942","lastModified":"1301902112000","name":"George Curzon","type":"Person","_key":"16922"} +{"label":"Pamela Carme","version":22,"id":"27943","lastModified":"1301902112000","name":"Pamela Carme","type":"Person","_key":"16923"} +{"label":"George Merritt","version":23,"birthday":"-2494890000000","id":"27944","birthplace":"London, England, UK","lastModified":"1301901967000","name":"George Merritt","type":"Person","_key":"16924"} +{"label":"J.H. Roberts","version":27,"birthday":"-2697325200000","id":"27945","birthplace":"London, England","lastModified":"1301902168000","name":"J.H. Roberts","type":"Person","_key":"16925"} +{"label":"Jerry Verno","version":22,"id":"27946","lastModified":"1301902112000","name":"Jerry Verno","type":"Person","_key":"16926"} +{"label":"H.F. Maltby","version":20,"id":"27947","lastModified":"1301902168000","name":"H.F. Maltby","type":"Person","_key":"16927"} +{"label":"John Miller","version":24,"id":"27948","lastModified":"1301902112000","name":"John Miller","type":"Person","_key":"16928"} +{"label":"Ah Pook Is Here","description":"An organic looking figure speaks about life, politics and death.","id":"2763","runtime":6,"imdbId":"tt0109055","version":35,"lastModified":"1301417660000","genre":"Animation","title":"Ah Pook Is Here","releaseDate":757382400000,"language":"en","type":"Movie","_key":"16929"} +{"label":"Philip Hunt","version":22,"id":"27949","lastModified":"1301901822000","name":"Philip Hunt","type":"Person","_key":"16930"} +{"label":"All Stars","description":"No overview found.","id":"2764","runtime":115,"imdbId":"tt0118588","version":60,"lastModified":"1301906180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52a\/4d457fbf7b9aa15bb500752a\/all-stars-mid.jpg","title":"All Stars","releaseDate":862444800000,"language":"en","type":"Movie","_key":"16931"} +{"label":"Jean van de Velde","version":27,"id":"27954","lastModified":"1301901854000","name":"Jean van de Velde","type":"Person","_key":"16932"} +{"label":"Antonie Kamerling","version":26,"id":"27957","lastModified":"1301901795000","name":"Antonie Kamerling","type":"Person","_key":"16933"} +{"label":"Danny de Munk","version":21,"id":"27958","lastModified":"1301901795000","name":"Danny de Munk","type":"Person","_key":"16934"} +{"label":"Peter Paul Muller","version":22,"id":"27959","lastModified":"1301901569000","name":"Peter Paul Muller","type":"Person","_key":"16935"} +{"label":"Plien van Bennekom","version":22,"id":"27960","lastModified":"1301901795000","name":"Plien van Bennekom","type":"Person","_key":"16936"} +{"label":"Raymi Sambo","version":20,"id":"27961","lastModified":"1301901795000","name":"Raymi Sambo","type":"Person","_key":"16937"} +{"label":"Kasper van Kooten","version":17,"id":"27962","lastModified":"1301901823000","name":"Kasper van Kooten","type":"Person","_key":"16938"} +{"label":"Les Amants du Pont-Neuf","description":"Set against Paris' oldest bridge, the Pont Neuf, while it was closed for repairs, this film is a love story between two young vagrants: Alex, a would be circus performer addicted to alcohol and sedatives and Michele, a painter driven to a life on the streets because of a failed relationship and an affliction which is slowly turning her blind.","id":"2767","runtime":125,"imdbId":"tt0101318","version":85,"lastModified":"1301904922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc9\/4bc917a7017a3c57fe008fc9\/les-amants-du-pont-neuf-mid.jpg","studio":"Films A2","genre":"Drama","title":"Les Amants du Pont-Neuf","releaseDate":687571200000,"language":"en","type":"Movie","_key":"16939"} +{"label":"Leos Carax","version":28,"id":"27977","lastModified":"1301901318000","name":"Leos Carax","type":"Person","_key":"16940"} +{"label":"Denis Lavant","version":54,"id":"27978","lastModified":"1301901420000","name":"Denis Lavant","type":"Person","_key":"16941"} +{"label":"Klaus-Michael Gr\u00fcber","version":21,"id":"27979","lastModified":"1301901513000","name":"Klaus-Michael Gr\u00fcber","type":"Person","_key":"16942"} +{"label":"Edith Scob","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9c\/4d3e6c5d7b9aa15bab000a9c\/edith-scob-profile.jpg","version":38,"id":"27980","lastModified":"1301901448000","name":"Edith Scob","type":"Person","_key":"16943"} +{"label":"Georges Aperghis","version":21,"id":"27981","lastModified":"1301902189000","name":"Georges Aperghis","type":"Person","_key":"16944"} +{"label":"Daniel Buain","version":21,"id":"27982","lastModified":"1301902189000","name":"Daniel Buain","type":"Person","_key":"16945"} +{"label":"Marion Stalens","version":21,"id":"27983","lastModified":"1301902189000","name":"Marion Stalens","type":"Person","_key":"16946"} +{"label":"American Gigolo","description":"Julian makes a lucrative living as an escort to older women in the Los Angeles area. He begins a relationship with Michelle, a local politician's wife, without expecting any pay. One of his clients is murdered and Detective Sunday begins pumping him for details on his different clients, something he is reluctant to do considering the nature of his work. Julian begins to suspect he's being framed. Meanwhile Michelle begins to fall in love with him.","id":"2768","runtime":117,"imdbId":"tt0080365","trailer":"http:\/\/www.youtube.com\/watch?v=Rcq2bdeP0Ec","version":793,"lastModified":"1302053047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fce\/4bc917a8017a3c57fe008fce\/american-gigolo-mid.jpg","studio":"Paramount Pictures","genre":"Thriller","title":"American Gigolo","releaseDate":318816000000,"language":"en","type":"Movie","_key":"16947"} +{"label":"Lauren Hutton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0df\/4c51cf1b5e73d632bd0000df\/lauren-hutton-profile.jpg","version":41,"birthday":"-824432400000","id":"27964","birthplace":"Charleston, South Carolina","lastModified":"1301901209000","name":"Lauren Hutton","type":"Person","_key":"16948"} +{"label":"Judith Ransdell","version":20,"id":"27965","lastModified":"1301901584000","name":"Judith Ransdell","type":"Person","_key":"16949"} +{"label":"K Callan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/432\/4ca0b1887b9aa1578a000432\/k-callan-profile.jpg","version":24,"id":"41729","lastModified":"1301901964000","name":"K Callan","type":"Person","_key":"16950"} +{"label":"Carole Cook","version":31,"id":"41730","lastModified":"1301901522000","name":"Carole Cook","type":"Person","_key":"16951"} +{"label":"Brian Davies","version":19,"id":"41734","lastModified":"1301901771000","name":"Brian Davies","type":"Person","_key":"16952"} +{"label":"Tom Stewart","version":19,"id":"41735","lastModified":"1301901771000","name":"Tom Stewart","type":"Person","_key":"16953"} +{"label":"Patricia Carr","version":19,"id":"41736","lastModified":"1301901771000","name":"Patricia Carr","type":"Person","_key":"16954"} +{"label":"David Cryer","version":22,"id":"66296","lastModified":"1301901771000","name":"David Cryer","type":"Person","_key":"16955"} +{"label":"Frances Bergen","version":20,"id":"105307","lastModified":"1301902545000","name":"Frances Bergen","type":"Person","_key":"16956"} +{"label":"Macdonald Carey","version":23,"id":"7665","lastModified":"1301901357000","name":"Macdonald Carey","type":"Person","_key":"16957"} +{"label":"William Dozier","version":22,"id":"14355","lastModified":"1301901572000","name":"William Dozier","type":"Person","_key":"16958"} +{"label":"Peter Turgeon","version":16,"id":"105308","lastModified":"1301902651000","name":"Peter Turgeon","type":"Person","_key":"16959"} +{"label":"Robert Wightman","version":16,"id":"105309","lastModified":"1301902928000","name":"Robert Wightman","type":"Person","_key":"16960"} +{"label":"Richard Derr","version":20,"id":"15772","lastModified":"1301901418000","name":"Richard Derr","type":"Person","_key":"16961"} +{"label":"Jessica Potter","version":20,"id":"122050","lastModified":"1301902724000","name":"Jessica Potter","type":"Person","_key":"16962"} +{"label":"Gordon Haight","version":20,"id":"122051","lastModified":"1301902723000","name":"Gordon Haight","type":"Person","_key":"16963"} +{"label":"Carlo Alonso","version":20,"id":"122052","lastModified":"1301903020000","name":"Carlo Alonso","type":"Person","_key":"16964"} +{"label":"Michael Goyak","version":20,"id":"122053","lastModified":"1301902727000","name":"Michael Goyak","type":"Person","_key":"16965"} +{"label":"John Hammerton","version":20,"id":"122055","lastModified":"1301902727000","name":"John Hammerton","type":"Person","_key":"16966"} +{"label":"Michele Drake","version":20,"id":"122056","lastModified":"1301902727000","name":"Michele Drake","type":"Person","_key":"16967"} +{"label":"Linda Horn","version":20,"id":"122057","lastModified":"1301902696000","name":"Linda Horn","type":"Person","_key":"16968"} +{"label":"Faye Michael Nuell","version":20,"id":"122058","lastModified":"1301902696000","name":"Faye Michael Nuell","type":"Person","_key":"16969"} +{"label":"Eugene Jackson","version":29,"id":"89313","lastModified":"1301902696000","name":"Eugene Jackson","type":"Person","_key":"16970"} +{"label":"Roma Alvarez","version":20,"id":"122059","lastModified":"1301902704000","name":"Roma Alvarez","type":"Person","_key":"16971"} +{"label":"Dawn Adams","version":21,"id":"93657","lastModified":"1301902356000","name":"Dawn Adams","type":"Person","_key":"16972"} +{"label":"Bob Jardine","version":19,"id":"122060","lastModified":"1301902651000","name":"Bob Jardine","type":"Person","_key":"16973"} +{"label":"Nanette Tarpey","version":19,"id":"122062","lastModified":"1301902928000","name":"Nanette Tarpey","type":"Person","_key":"16974"} +{"label":"Maggie Jean Smith","version":20,"id":"122063","lastModified":"1301902696000","name":"Maggie Jean Smith","type":"Person","_key":"16975"} +{"label":"Pamela Fong","version":19,"id":"122064","lastModified":"1301902928000","name":"Pamela Fong","type":"Person","_key":"16976"} +{"label":"Randy Stokey","version":20,"id":"122065","lastModified":"1301902518000","name":"Randy Stokey","type":"Person","_key":"16977"} +{"label":"Harris Weingart","version":20,"id":"122066","lastModified":"1301903014000","name":"Harris Weingart","type":"Person","_key":"16978"} +{"label":"James Currie","version":21,"id":"75436","lastModified":"1301901986000","name":"James Currie","type":"Person","_key":"16979"} +{"label":"Norman Stevans","version":20,"id":"122067","lastModified":"1301903014000","name":"Norman Stevans","type":"Person","_key":"16980"} +{"label":"Betty Canter","version":20,"id":"122068","lastModified":"1301902696000","name":"Betty Canter","type":"Person","_key":"16981"} +{"label":"Laura Gile","version":20,"id":"122069","lastModified":"1301902696000","name":"Laura Gile","type":"Person","_key":"16982"} +{"label":"Brent Dunsford","version":20,"id":"122070","lastModified":"1301902696000","name":"Brent Dunsford","type":"Person","_key":"16983"} +{"label":"Barry Satterfield","version":20,"id":"122071","lastModified":"1301902696000","name":"Barry Satterfield","type":"Person","_key":"16984"} +{"label":"Sam L. Nickens","version":20,"id":"122072","lastModified":"1301902696000","name":"Sam L. Nickens","type":"Person","_key":"16985"} +{"label":"William Valdez","version":20,"id":"122073","lastModified":"1301902696000","name":"William Valdez","type":"Person","_key":"16986"} +{"label":"Mary Helen Barro","version":20,"id":"122074","lastModified":"1301902696000","name":"Mary Helen Barro","type":"Person","_key":"16987"} +{"label":"John H. Lowe","version":20,"id":"122075","lastModified":"1301902696000","name":"John H. Lowe","type":"Person","_key":"16988"} +{"label":"Kopi Sotiropulos","version":20,"id":"122076","lastModified":"1301903032000","name":"Kopi Sotiropulos","type":"Person","_key":"16989"} +{"label":"Gordon W. Grant","version":20,"id":"122077","lastModified":"1301903014000","name":"Gordon W. Grant","type":"Person","_key":"16990"} +{"label":"Ron Cummins","version":20,"id":"122078","lastModified":"1301902696000","name":"Ron Cummins","type":"Person","_key":"16991"} +{"label":"Frank Pesce","version":21,"id":"101615","lastModified":"1301902303000","name":"Frank Pesce","type":"Person","_key":"16992"} +{"label":"An American in Paris","description":"Jerry Mulligan (Gene Kelly) is an exuberant American expatriate in Paris trying to make a reputation as a painter. His friend Adam (Oscar Levant) is a struggling concert pianist who's a long time associate of a famous French singer, Henri Baurel (Georges Gu\u00e9tary). A lonely society woman, Milo Roberts (Nina Foch) takes Jerry under her wing and supports him, but is interested in more than his art.","id":"2769","runtime":113,"imdbId":"tt0043278","trailer":"http:\/\/www.youtube.com\/watch?v=FiiaJRXPAm4","version":486,"lastModified":"1302052874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdb\/4bc917a9017a3c57fe008fdb\/an-american-in-paris-mid.jpg","studio":"Loew's","genre":"Comedy","title":"An American in Paris","releaseDate":-575769600000,"language":"en","type":"Movie","_key":"16993"} +{"label":"Oscar Levant","version":25,"id":"27966","lastModified":"1301901661000","name":"Oscar Levant","type":"Person","_key":"16994"} +{"label":"Georges Gu\u00e9tary","version":21,"id":"27967","lastModified":"1301901414000","name":"Georges Gu\u00e9tary","type":"Person","_key":"16995"} +{"label":"American Pie 2","description":"The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant...","id":"2770","runtime":108,"imdbId":"tt0252866","trailer":"http:\/\/www.youtube.com\/watch?v=_wRxtLKy90A","version":302,"lastModified":"1301902198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fec\/4bc917ad017a3c57fe008fec\/american-pie-2-mid.jpg","studio":"Liveplanet","genre":"Comedy","title":"American Pie 2","releaseDate":997401600000,"language":"en","tagline":"This Summer It's All About Sticking Together.","type":"Movie","_key":"16996"} +{"label":"Chris Owen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/787\/4d8f210a5e73d65f0e001787\/chris-owen-profile.jpg","version":62,"id":"26999","lastModified":"1302062686000","name":"Chris Owen","type":"Person","_key":"16997"} +{"label":"Molly Cheek","version":51,"id":"54586","lastModified":"1301901105000","name":"Molly Cheek","type":"Person","_key":"16998"} +{"label":"Lisa Arturo","version":30,"id":"55619","lastModified":"1301901815000","name":"Lisa Arturo","type":"Person","_key":"16999"} +{"label":"J.B. Rogers","version":31,"id":"7409","lastModified":"1301901414000","name":"J.B. Rogers","type":"Person","_key":"17000"} +{"label":"American Splendor","description":"An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.","id":"2771","runtime":101,"imdbId":"tt0305206","version":141,"lastModified":"1302059786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffe\/4bc917af017a3c57fe008ffe\/american-splendor-mid.jpg","studio":"Good Machine","genre":"Comedy","title":"American Splendor","releaseDate":1048118400000,"language":"en","tagline":"Ordinary life is pretty complicated","type":"Movie","_key":"17001"} +{"label":"Chris Ambrose","version":21,"id":"27970","lastModified":"1301901581000","name":"Chris Ambrose","type":"Person","_key":"17002"} +{"label":"Joey Krajcar","version":21,"id":"27971","lastModified":"1301902178000","name":"Joey Krajcar","type":"Person","_key":"17003"} +{"label":"Cameron Carter","version":21,"id":"27973","lastModified":"1301901585000","name":"Cameron Carter","type":"Person","_key":"17004"} +{"label":"Daniel Tay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9b\/4d8395b25e73d67e55000d9b\/daniel-tay-profile.jpg","version":25,"id":"27974","lastModified":"1301901362000","name":"Daniel Tay","type":"Person","_key":"17005"} +{"label":"Mary Faktor","version":21,"id":"27975","lastModified":"1301902023000","name":"Mary Faktor","type":"Person","_key":"17006"} +{"label":"Harvey Pekar","version":23,"id":"27976","lastModified":"1301902005000","name":"Harvey Pekar","type":"Person","_key":"17007"} +{"label":"Shari Springer Berman","version":39,"id":"72205","lastModified":"1301901978000","name":"Shari Springer Berman","type":"Person","_key":"17008"} +{"label":"Robert Pulcini","version":50,"id":"72206","lastModified":"1301901573000","name":"Robert Pulcini","type":"Person","_key":"17009"} +{"label":"Florida - Der Sonnenstaat","description":"No overview found.","id":"2772","runtime":38,"version":21,"lastModified":"1301908615000","genre":"Documentary","title":"Florida - Der Sonnenstaat","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"17010"} +{"label":"Petra Gries","version":33,"id":"27987","lastModified":"1301901662000","name":"Petra Gries","type":"Person","_key":"17011"} +{"label":"J\u00fcrgen Gries","version":32,"id":"27988","lastModified":"1301901570000","name":"J\u00fcrgen Gries","type":"Person","_key":"17012"} +{"label":"\u00c4gypten - Nil und Pyramiden","description":"No overview found.","id":"2773","runtime":43,"version":20,"lastModified":"1301908618000","genre":"Documentary","title":"\u00c4gypten - Nil und Pyramiden","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"17013"} +{"label":"Nationalparks der USA","description":"No overview found.","id":"2774","runtime":34,"version":18,"lastModified":"1300978190000","genre":"Documentary","title":"Nationalparks der USA","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"17014"} +{"label":"Karibik Tr\u00e4ume","description":"No overview found.","id":"2775","runtime":35,"version":22,"lastModified":"1301417780000","genre":"Documentary","title":"Karibik Tr\u00e4ume","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"17015"} +{"label":"Die Inseln Hawaii","description":"No overview found.","id":"2776","runtime":41,"version":30,"lastModified":"1300978190000","genre":"Documentary","title":"Die Inseln Hawaii","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"17016"} +{"label":"The Birdcage Inn","description":"With a red-light district in Seoul being demolished, the residents there find they have to relocate. Jin-a opts to leave Seoul and heads to the eastern city of Pohang. There she takes up residence in a boarding house run by a small family. Besides the parents, there is a daughter attending university and a son in high school. At first Jin-a is very happy there, however she continues to sell her body driving her into confrontation with the repressed daughter, Hye-mi. Things go from bad to worse w","id":"2777","runtime":100,"imdbId":"tt0190268","version":61,"lastModified":"1301903876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/017\/4c03440f017a3c29a6000017\/2777-mid.jpg","studio":"Boogui Cinema","genre":"Drama","title":"The Birdcage Inn","releaseDate":909792000000,"language":"en","type":"Movie","_key":"17017"} +{"label":"Ji-eun Lee","version":3,"id":"231505","lastModified":"1301773750000","name":"Ji-eun Lee","type":"Person","_key":"17018"} +{"label":"Hae-eun Lee","version":3,"id":"231506","lastModified":"1301773773000","name":"Hae-eun Lee","type":"Person","_key":"17019"} +{"label":"Jae-mo Ahn","version":20,"id":"87784","lastModified":"1301902233000","name":"Jae-mo Ahn","type":"Person","_key":"17020"} +{"label":"Hyeong-gi Jeong","version":3,"id":"231507","lastModified":"1301773879000","name":"Hyeong-gi Jeong","type":"Person","_key":"17021"} +{"label":"Min-seok Son","version":4,"id":"231508","lastModified":"1301774459000","name":"Min-seok Son","type":"Person","_key":"17022"} +{"label":"Clifford","description":"No overview found.","id":"2778","runtime":90,"imdbId":"tt0109447","version":112,"lastModified":"1301907111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc917b2017a3c57fe009018\/clifford-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Clifford","releaseDate":765158400000,"language":"en","type":"Movie","_key":"17023"} +{"label":"Charles Grodin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4c505e667b9aa13bf400002f\/charles-grodin-profile.jpg","version":60,"birthday":"-1095037200000","id":"28164","birthplace":"Pittsburgh, Pennsylvania, USA","lastModified":"1301901410000","name":"Charles Grodin","type":"Person","_key":"17024"} +{"label":"Jennifer Savidge","version":20,"id":"28165","lastModified":"1301902010000","name":"Jennifer Savidge","type":"Person","_key":"17025"} +{"label":"Ben Savage","version":25,"id":"28166","lastModified":"1301902046000","name":"Ben Savage","type":"Person","_key":"17026"} +{"label":"Don Galloway","version":27,"id":"28167","lastModified":"1301901807000","name":"Don Galloway","type":"Person","_key":"17027"} +{"label":"Timothy Stack","version":23,"id":"28168","lastModified":"1301902194000","name":"Timothy Stack","type":"Person","_key":"17028"} +{"label":"Paul Flaherty","version":21,"id":"28169","lastModified":"1301901512000","name":"Paul Flaherty","type":"Person","_key":"17029"} +{"label":"The Curse of the Jade Scorpion","description":"CW Briggs is a veteran insurance investigator, with many successes. Betty Ann Fitzgerald is a new employee in the company he works for, with the task of reorganizing the office. They don't like each other - or at least that's what they think. During a night out with the rest of the office employees, they go to watch Voltan, a magician who secretly hypnotizes both of them.","id":"2779","runtime":103,"imdbId":"tt0256524","version":234,"lastModified":"1301903617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4bc917b6017a3c57fe00902d\/the-curse-of-the-jade-scorpion-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"The Curse of the Jade Scorpion","releaseDate":996969600000,"language":"en","type":"Movie","_key":"17030"} +{"label":"John Tormey","version":25,"id":"28002","lastModified":"1301901547000","name":"John Tormey","type":"Person","_key":"17031"} +{"label":"Elizabeth Berkley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d7\/4d0aa6715e73d613d10008d7\/elizabeth-berkley-profile.jpg","version":36,"id":"19189","lastModified":"1301901108000","name":"Elizabeth Berkley","type":"Person","_key":"17032"} +{"label":"Kaili Vernoff","version":23,"id":"28003","lastModified":"1301901598000","name":"Kaili Vernoff","type":"Person","_key":"17033"} +{"label":"Brian Markinson","version":31,"id":"28004","lastModified":"1301901458000","name":"Brian Markinson","type":"Person","_key":"17034"} +{"label":"Maurice Sonnenberg","version":21,"id":"28005","lastModified":"1301901623000","name":"Maurice Sonnenberg","type":"Person","_key":"17035"} +{"label":"John Doumanian","version":21,"id":"28006","lastModified":"1301901746000","name":"John Doumanian","type":"Person","_key":"17036"} +{"label":"Kevin Cahoon","version":21,"id":"28007","lastModified":"1301901746000","name":"Kevin Cahoon","type":"Person","_key":"17037"} +{"label":"Philip Levy","version":21,"id":"28008","lastModified":"1301901746000","name":"Philip Levy","type":"Person","_key":"17038"} +{"label":"Vince Giordano","version":21,"id":"28009","lastModified":"1301901746000","name":"Vince Giordano","type":"Person","_key":"17039"} +{"label":"David Ogden Stiers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8e0\/4cda11005e73d676cd0008e0\/david-ogden-stiers-profile.jpg","biography":"David Ogden Stiers is an American actor, director, vocal actor, and musician, noted for his role in the television sitcom M*A*S*H as Major Charles Emerson Winchester III and the science fiction drama The Dead Zone as Reverend Gene Purdy.","version":96,"birthday":"-857440800000","id":"28010","birthplace":"Peoria, Illinois, USA","lastModified":"1301976135000","name":"David Ogden Stiers","type":"Person","_key":"17040"} +{"label":"Howard Alden","version":21,"id":"28011","lastModified":"1301901623000","name":"Howard Alden","type":"Person","_key":"17041"} +{"label":"Ted Sommer","version":21,"id":"28012","lastModified":"1301901542000","name":"Ted Sommer","type":"Person","_key":"17042"} +{"label":"Randy Sandke","version":21,"id":"28013","lastModified":"1301901542000","name":"Randy Sandke","type":"Person","_key":"17043"} +{"label":"Peter Ecklund","version":21,"id":"28014","lastModified":"1301901542000","name":"Peter Ecklund","type":"Person","_key":"17044"} +{"label":"Joel Helleny","version":21,"id":"28015","lastModified":"1301901542000","name":"Joel Helleny","type":"Person","_key":"17045"} +{"label":"Chuck Wilson","version":22,"id":"28016","lastModified":"1301901623000","name":"Chuck Wilson","type":"Person","_key":"17046"} +{"label":"Raymond Beckenstein","version":21,"id":"28017","lastModified":"1301901542000","name":"Raymond Beckenstein","type":"Person","_key":"17047"} +{"label":"Lawrence Feldman","version":21,"id":"28018","lastModified":"1301901746000","name":"Lawrence Feldman","type":"Person","_key":"17048"} +{"label":"Ken Peplowski","version":21,"id":"28019","lastModified":"1301901542000","name":"Ken Peplowski","type":"Person","_key":"17049"} +{"label":"Carole Bayeux","version":21,"id":"28021","lastModified":"1301901746000","name":"Carole Bayeux","type":"Person","_key":"17050"} +{"label":"Kenneth Edelson","version":21,"id":"28022","lastModified":"1301901623000","name":"Kenneth Edelson","type":"Person","_key":"17051"} +{"label":"Brian McConnachie","version":21,"id":"28023","lastModified":"1301901623000","name":"Brian McConnachie","type":"Person","_key":"17052"} +{"label":"Judy Gold","version":21,"id":"28024","lastModified":"1301901623000","name":"Judy Gold","type":"Person","_key":"17053"} +{"label":"Herb Lovelle","version":25,"id":"28025","lastModified":"1301901542000","name":"Herb Lovelle","type":"Person","_key":"17054"} +{"label":"Carmen","version":22,"id":"28026","lastModified":"1301901909000","name":"Carmen","type":"Person","_key":"17055"} +{"label":"Patrick Horgan","version":22,"id":"28027","lastModified":"1301901541000","name":"Patrick Horgan","type":"Person","_key":"17056"} +{"label":"Howard Erskine","version":23,"id":"28028","lastModified":"1301901623000","name":"Howard Erskine","type":"Person","_key":"17057"} +{"label":"Ira Wheeler","version":25,"id":"28029","lastModified":"1301901542000","name":"Ira Wheeler","type":"Person","_key":"17058"} +{"label":"Tina Sloan","version":21,"id":"28030","lastModified":"1301901623000","name":"Tina Sloan","type":"Person","_key":"17059"} +{"label":"Ramsey Faragallah","version":21,"id":"28031","lastModified":"1301901746000","name":"Ramsey Faragallah","type":"Person","_key":"17060"} +{"label":"Bob Dorian","version":23,"id":"28032","lastModified":"1301901580000","name":"Bob Dorian","type":"Person","_key":"17061"} +{"label":"Arthur J. Nascarella","version":36,"id":"28033","lastModified":"1301901353000","name":"Arthur J. Nascarella","type":"Person","_key":"17062"} +{"label":"Trude Klein","version":21,"id":"28034","lastModified":"1301901623000","name":"Trude Klein","type":"Person","_key":"17063"} +{"label":"Irwin Corey","version":22,"id":"28035","lastModified":"1301901935000","name":"Irwin Corey","type":"Person","_key":"17064"} +{"label":"Michael Mulheren","version":21,"id":"28036","lastModified":"1301901623000","name":"Michael Mulheren","type":"Person","_key":"17065"} +{"label":"Peter Linari","version":21,"id":"28037","lastModified":"1301901623000","name":"Peter Linari","type":"Person","_key":"17066"} +{"label":"Ray Garvey","version":25,"id":"28038","lastModified":"1301901515000","name":"Ray Garvey","type":"Person","_key":"17067"} +{"label":"Bruce Brown","version":21,"id":"28039","lastModified":"1301901623000","name":"Bruce Brown","type":"Person","_key":"17068"} +{"label":"Dan Moran","version":22,"id":"28040","lastModified":"1301901338000","name":"Dan Moran","type":"Person","_key":"17069"} +{"label":"Dick Hyman","version":36,"id":"20967","lastModified":"1301901672000","name":"Dick Hyman","type":"Person","_key":"17070"} +{"label":"Ein toller Einfall","description":"No overview found.","id":"2784","runtime":87,"imdbId":"tt0023600","version":68,"lastModified":"1301907431000","studio":"UFA Universum-Film AG","genre":"Comedy","title":"Ein toller Einfall","releaseDate":-1187740800000,"language":"en","type":"Movie","_key":"17071"} +{"label":"Max Adalbert","version":20,"id":"28059","lastModified":"1301902168000","name":"Max Adalbert","type":"Person","_key":"17072"} +{"label":"Rosi Barsony","version":17,"id":"28060","lastModified":"1301901805000","name":"Rosi Barsony","type":"Person","_key":"17073"} +{"label":"Wilhelm Bendow","version":22,"id":"28061","lastModified":"1301901795000","name":"Wilhelm Bendow","type":"Person","_key":"17074"} +{"label":"Gerda Bunnemann","version":18,"id":"28062","lastModified":"1301902161000","name":"Gerda Bunnemann","type":"Person","_key":"17075"} +{"label":"Aenne Goerling","version":17,"id":"28063","lastModified":"1301902167000","name":"Aenne Goerling","type":"Person","_key":"17076"} +{"label":"Harry Halm","version":22,"id":"28064","lastModified":"1301902161000","name":"Harry Halm","type":"Person","_key":"17077"} +{"label":"Ferdinand Hart","version":20,"id":"28065","lastModified":"1301902161000","name":"Ferdinand Hart","type":"Person","_key":"17078"} +{"label":"Theo Lingen","version":28,"id":"28066","lastModified":"1301901795000","name":"Theo Lingen","type":"Person","_key":"17079"} +{"label":"Genia Nikolaieva","version":17,"id":"28067","lastModified":"1301902168000","name":"Genia Nikolaieva","type":"Person","_key":"17080"} +{"label":"Fritz Odemar","version":22,"id":"28068","lastModified":"1301902010000","name":"Fritz Odemar","type":"Person","_key":"17081"} +{"label":"Klaus Pohl","version":27,"id":"28069","lastModified":"1301901262000","name":"Klaus Pohl","type":"Person","_key":"17082"} +{"label":"Heinz Salfner","version":20,"id":"28070","lastModified":"1301902189000","name":"Heinz Salfner","type":"Person","_key":"17083"} +{"label":"Adele Sandrock","version":21,"id":"28071","lastModified":"1301902189000","name":"Adele Sandrock","type":"Person","_key":"17084"} +{"label":"Ellen Schwanneke","version":20,"id":"28072","lastModified":"1301902189000","name":"Ellen Schwanneke","type":"Person","_key":"17085"} +{"label":"Oskar Sima","version":24,"id":"28073","lastModified":"1301901971000","name":"Oskar Sima","type":"Person","_key":"17086"} +{"label":"Leo Slezak","version":20,"id":"28074","lastModified":"1301902190000","name":"Leo Slezak","type":"Person","_key":"17087"} +{"label":"Dorothea Wieck","version":21,"id":"28075","lastModified":"1301901823000","name":"Dorothea Wieck","type":"Person","_key":"17088"} +{"label":"Pierrot le Fou","description":"Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.","id":"2786","runtime":110,"imdbId":"tt0059592","trailer":"http:\/\/www.youtube.com\/watch?v=ycg2yb3qiUo","version":456,"lastModified":"1302028753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03e\/4bc917ba017a3c57fe00903e\/pierrot-le-fou-mid.jpg","studio":"De Laurentiis Entertainment Group (DEG)","genre":"Drama","title":"Pierrot le Fou","releaseDate":-137030400000,"language":"en","type":"Movie","_key":"17089"} +{"label":"Graziella Galvani","version":20,"id":"12773","lastModified":"1301901431000","name":"Graziella Galvani","type":"Person","_key":"17090"} +{"label":"Dirk Sanders","version":17,"id":"20420","lastModified":"1301901623000","name":"Dirk Sanders","type":"Person","_key":"17091"} +{"label":"Jimmy Karoubi","version":16,"id":"21772","lastModified":"1301903116000","name":"Jimmy Karoubi","type":"Person","_key":"17092"} +{"label":"Roger Dutoit","version":16,"id":"22162","lastModified":"1301903116000","name":"Roger Dutoit","type":"Person","_key":"17093"} +{"label":"Hans Meyer","version":28,"id":"22796","lastModified":"1301901396000","name":"Hans Meyer","type":"Person","_key":"17094"} +{"label":"Samuel Fuller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/594\/4be177d7017a3c35b5000594\/samuel-fuller-profile.jpg","biography":"Samuel Michael Fuller (August 12, 1912 \u2013 October 30, 1997) was an American screenwriter, novelist and film director known for low-budget genre movies with controversial themes.\n\nHe was born Samuel Michael Fuller in Worcester, Massachusetts, the son of Benjamin Rabinovitch, a Jewish immigrant  from Russia, and Rebecca Baum, a Jewish immigrant from Poland. After immigrating to America, the family's surname was changed from Rabinovitch to \"Fuller\" possibly by inspiration of a Doctor who arrive","version":94,"birthday":"-1811034000000","id":"26959","birthplace":"Worcester, Massachusetts, US","lastModified":"1301901112000","name":"Samuel Fuller","type":"Person","_key":"17095"} +{"label":"Aicha Abadir","version":18,"id":"22167","lastModified":"1301901623000","name":"Aicha Abadir","type":"Person","_key":"17096"} +{"label":"Raymond Devos","version":20,"id":"23162","lastModified":"1301901623000","name":"Raymond Devos","type":"Person","_key":"17097"} +{"label":"Georges Staquet","version":20,"id":"23701","lastModified":"1301902112000","name":"Georges Staquet","type":"Person","_key":"17098"} +{"label":"Henri Attal","version":31,"id":"23480","lastModified":"1301901498000","name":"Henri Attal","type":"Person","_key":"17099"} +{"label":"Pierre Hanin","version":18,"id":"66716","lastModified":"1301902296000","name":"Pierre Hanin","type":"Person","_key":"17100"} +{"label":"L\u00e1szl\u00f3 Szab\u00f3","version":31,"id":"38899","lastModified":"1301901658000","name":"L\u00e1szl\u00f3 Szab\u00f3","type":"Person","_key":"17101"} +{"label":"Pitch Black","description":"After crash-landing on a seemingly lifeless planet, pilot Carolyn Fry and the remaining passengers -- including murderer Riddick and policeman William J. Johns -- encounter an army of creatures whose only weakness is light. As night approaches and the aliens emerge, the passengers must rely on Riddick's powerful night vision to lead them through the darkness.","id":"2787","runtime":112,"imdbId":"tt0134847","trailer":"http:\/\/www.youtube.com\/watch?v=pSWXlm9I05o","homepage":"http:\/\/www.pitchblack.com\/","version":557,"lastModified":"1302050666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4bc917be017a3c57fe00905f\/pitch-black-mid.jpg","studio":"Interscope Communications","genre":"Action","title":"Pitch Black","releaseDate":968284800000,"language":"en","tagline":"Don't be afraid of the dark. Be afraid of what's in the dark","type":"Movie","_key":"17102"} +{"label":"Rhiana Griffith","version":30,"id":"28098","lastModified":"1301901186000","name":"Rhiana Griffith","type":"Person","_key":"17103"} +{"label":"Lewis Fitz-Gerald","version":30,"id":"28099","lastModified":"1301901431000","name":"Lewis Fitz-Gerald","type":"Person","_key":"17104"} +{"label":"Claudia Black","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ac\/4bfa6e81017a3c702d0004ac\/claudia-black-profile.jpg","version":48,"id":"26054","lastModified":"1301901351000","name":"Claudia Black","type":"Person","_key":"17105"} +{"label":"Simon Burke","version":30,"id":"28100","lastModified":"1301901346000","name":"Simon Burke","type":"Person","_key":"17106"} +{"label":"David Twohy","version":105,"id":"28239","lastModified":"1301901186000","name":"David Twohy","type":"Person","_key":"17107"} +{"label":"Carolynne Cunningham","version":29,"id":"3506","lastModified":"1301901419000","name":"Carolynne Cunningham","type":"Person","_key":"17108"} +{"label":"Reality Bites","description":"A small circle of friends suffering from post-collegiate blues must confront the hard truth about life, love and the pursuit of gainful employment. As they struggle to map out survival guides for the future, the Gen-X quartet soon begins to realize that reality isn't all it's cracked up to be.","id":"2788","runtime":99,"imdbId":"tt0110950","version":471,"lastModified":"1302050484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f07\/4d5688c17b9aa15cf6001f07\/reality-bites-mid.jpg","studio":"Jersey Films","genre":"Comedy","title":"Reality Bites","releaseDate":761529600000,"language":"en","tagline":"A comedy about love in the '90s.","type":"Movie","_key":"17109"} +{"label":"Harry O'Reilly","version":30,"id":"28101","lastModified":"1301901541000","name":"Harry O'Reilly","type":"Person","_key":"17110"} +{"label":"Susan Norfleet","version":24,"id":"28102","lastModified":"1301901909000","name":"Susan Norfleet","type":"Person","_key":"17111"} +{"label":"James Rothenberg","version":24,"id":"28103","lastModified":"1301901623000","name":"James Rothenberg","type":"Person","_key":"17112"} +{"label":"Eric Morgan Stuart","version":24,"id":"28104","lastModified":"1301901623000","name":"Eric Morgan Stuart","type":"Person","_key":"17113"} +{"label":"Chelsea Lagos","version":24,"id":"28105","lastModified":"1301901623000","name":"Chelsea Lagos","type":"Person","_key":"17114"} +{"label":"The Chronicles of Riddick","description":"Five years after the events in sci-fi film Pitch Black, escaped convict Riddick finds himself caught in the middle of a galactic war waged by Lord Marshal, the leader of a sect called the Necromongers. Riddick is charged with stopping the Necromonger army from its evil grip, meanwhile rescuing an old friend from a prison planet and evading capture by bounty hunters.","id":"2789","runtime":114,"imdbId":"tt0296572","trailer":"http:\/\/www.youtube.com\/watch?v=dHva0-ckVMw","homepage":"http:\/\/www.thechroniclesofriddick.com\/","version":318,"lastModified":"1301901276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e6\/4bd09a31017a3c63ed0001e6\/the-chronicles-of-riddick-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Chronicles of Riddick","releaseDate":1094083200000,"language":"en","tagline":"All the power in the universe can't change destiny.","type":"Movie","_key":"17115"} +{"label":"Christina Cox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3cc\/4bfa8adb017a3c70370003cc\/christina-cox-profile.jpg","version":25,"id":"28110","lastModified":"1301901137000","name":"Christina Cox","type":"Person","_key":"17116"} +{"label":"Alexa Davalos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/458\/4bfa7a11017a3c7031000458\/alexa-davalos-profile.jpg","version":42,"id":"28109","lastModified":"1302062686000","name":"Alexa Davalos","type":"Person","_key":"17117"} +{"label":"Below the Earth's Surface","description":"No overview found.","id":"2790","runtime":90,"imdbId":"tt1232001","version":65,"lastModified":"1301906065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a1\/4d41472d5e73d657290005a1\/der-abgrund-eine-stadt-st-rzt-ein-mid.jpg","genre":"Action","title":"Below the Earth's Surface","releaseDate":1212364800000,"language":"en","type":"Movie","_key":"17118"} +{"label":"Liane Forestieri","version":20,"id":"28111","lastModified":"1301901982000","name":"Liane Forestieri","type":"Person","_key":"17119"} +{"label":"Marco Girnth","version":21,"id":"28112","lastModified":"1301901971000","name":"Marco Girnth","type":"Person","_key":"17120"} +{"label":"Horst-G\u00fcnter Marx","version":21,"id":"28113","lastModified":"1301901667000","name":"Horst-G\u00fcnter Marx","type":"Person","_key":"17121"} +{"label":"Oliver Stritzel","version":23,"id":"28114","lastModified":"1301901795000","name":"Oliver Stritzel","type":"Person","_key":"17122"} +{"label":"Ercan Durmaz","version":24,"id":"28115","lastModified":"1301901971000","name":"Ercan Durmaz","type":"Person","_key":"17123"} +{"label":"Michael Lott","version":25,"id":"28116","lastModified":"1301901499000","name":"Michael Lott","type":"Person","_key":"17124"} +{"label":"Sebastian Vigg","version":26,"id":"28117","lastModified":"1301901569000","name":"Sebastian Vigg","type":"Person","_key":"17125"} +{"label":"The Chronicles of Riddick: Dark Fury","description":"\"Dark Fury\" shows what happened with Riddick, Jack and the Iman between \"Pitch Black\" and \"The Chronicles of Riddick\". Just escaped from the darkness their escape vessel is captured by mercenaries. But those are no normal mercenaries as they want to add Riddick to their \"art\" collection of the most brutal and evil criminals.","id":"2791","runtime":34,"imdbId":"tt0407658","homepage":"http:\/\/www.thechroniclesofriddick.com","version":231,"lastModified":"1302027843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b1\/4bc917ca017a3c57fe0090b1\/the-chronicles-of-riddick-dark-fury-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Chronicles of Riddick: Dark Fury","releaseDate":1087257600000,"language":"en","type":"Movie","_key":"17126"} +{"label":"Dwight Schultz","version":46,"id":"28248","lastModified":"1301901102000","name":"Dwight Schultz","type":"Person","_key":"17127"} +{"label":"Peter Chung","version":30,"id":"28249","lastModified":"1301901263000","name":"Peter Chung","type":"Person","_key":"17128"} +{"label":"Das Testament des Cornelius Gulden","description":"No overview found.","id":"2792","runtime":84,"imdbId":"tt0130309","version":52,"lastModified":"1301418673000","studio":"Itala Film","genre":"Comedy","title":"Das Testament des Cornelius Gulden","releaseDate":-1172707200000,"language":"en","type":"Movie","_key":"17129"} +{"label":"E.W. Emo","version":19,"id":"28118","lastModified":"1301901909000","name":"E.W. Emo","type":"Person","_key":"17130"} +{"label":"Georg Alexander","version":26,"id":"28126","lastModified":"1301901962000","name":"Georg Alexander","type":"Person","_key":"17131"} +{"label":"Ida W\u00fcst","version":20,"id":"28127","lastModified":"1301901746000","name":"Ida W\u00fcst","type":"Person","_key":"17132"} +{"label":"Hedwig Wangel","version":19,"id":"28128","lastModified":"1301901746000","name":"Hedwig Wangel","type":"Person","_key":"17133"} +{"label":"Kurt Lilien","version":21,"id":"28129","lastModified":"1301901960000","name":"Kurt Lilien","type":"Person","_key":"17134"} +{"label":"Julius Falkenstein","version":28,"id":"28130","lastModified":"1302002936000","name":"Julius Falkenstein","type":"Person","_key":"17135"} +{"label":"Leo Peukert","version":20,"id":"28131","lastModified":"1301902112000","name":"Leo Peukert","type":"Person","_key":"17136"} +{"label":"Erich Kestin","version":19,"id":"28132","lastModified":"1301901746000","name":"Erich Kestin","type":"Person","_key":"17137"} +{"label":"Paul Samson-K\u00f6rner","version":19,"id":"28133","lastModified":"1301901746000","name":"Paul Samson-K\u00f6rner","type":"Person","_key":"17138"} +{"label":"Voglia di Volare","description":"No overview found.","id":"2793","runtime":220,"imdbId":"tt0175405","version":38,"lastModified":"1301907431000","genre":"Adventure","title":"Voglia di Volare","releaseDate":470793600000,"language":"en","type":"Movie","_key":"17139"} +{"label":"Gianni Morandi","version":20,"id":"28134","lastModified":"1301901988000","name":"Gianni Morandi","type":"Person","_key":"17140"} +{"label":"Linda Celani","version":20,"id":"28135","lastModified":"1301902010000","name":"Linda Celani","type":"Person","_key":"17141"} +{"label":"Isabella Spade","version":20,"id":"28139","lastModified":"1301902187000","name":"Isabella Spade","type":"Person","_key":"17142"} +{"label":"Anna Campori","version":23,"id":"28140","lastModified":"1301902045000","name":"Anna Campori","type":"Person","_key":"17143"} +{"label":"Pier Giuseppe Murgia","version":21,"id":"28136","lastModified":"1301901709000","name":"Pier Giuseppe Murgia","type":"Person","_key":"17144"} +{"label":"Chronicles of Riddick Series","description":"The Chronicles of Riddick is a science fiction series, spanning a number of films and video games. \"The Chronicles of Riddick\" is also the title of the second film in the series. The series follows the exploits of the character Richard B. Riddick and the universe in which they take place.","id":"2794","runtime":282,"homepage":"http:\/\/www.thechroniclesofriddick.com\/","version":71,"lastModified":"1301902669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4bc917cb017a3c57fe0090bf\/the-chronicles-of-riddick-mid.jpg","studio":"Universal Studios","title":"Chronicles of Riddick Series","language":"en","tagline":"All the power in the universe can't change destiny","type":"Movie","_key":"17145"} +{"label":"Le Songe d'une nuit d'\u00e9t\u00e9","description":"No overview found.","id":"2796","runtime":95,"imdbId":"tt0176164","version":37,"lastModified":"1301905718000","genre":"Comedy","title":"Le Songe d'une nuit d'\u00e9t\u00e9","releaseDate":-604800000,"language":"en","type":"Movie","_key":"17146"} +{"label":"Jean-Christophe Averty","version":20,"id":"28143","lastModified":"1301902010000","name":"Jean-Christophe Averty","type":"Person","_key":"17147"} +{"label":"Christine Delaroche","version":22,"id":"28146","lastModified":"1301901569000","name":"Christine Delaroche","type":"Person","_key":"17148"} +{"label":"Jean-Claude Drouot","version":24,"id":"28150","lastModified":"1301901466000","name":"Jean-Claude Drouot","type":"Person","_key":"17149"} +{"label":"Michel Ruhl","version":21,"id":"28147","lastModified":"1301902161000","name":"Michel Ruhl","type":"Person","_key":"17150"} +{"label":"Dominique Seriana","version":20,"id":"28148","lastModified":"1301902189000","name":"Dominique Seriana","type":"Person","_key":"17151"} +{"label":"Beno\u00eet Allemane","version":21,"id":"28151","lastModified":"1301902187000","name":"Beno\u00eet Allemane","type":"Person","_key":"17152"} +{"label":"Nous ne l'avons pas assez aim\u00e9e","description":"No overview found.","id":"2797","runtime":85,"imdbId":"tt0175971","version":38,"lastModified":"1301903727000","genre":"Drama","title":"Nous ne l'avons pas assez aim\u00e9e","releaseDate":343353600000,"language":"en","type":"Movie","_key":"17153"} +{"label":"Patrick Antoine","version":20,"id":"28179","lastModified":"1301902189000","name":"Patrick Antoine","type":"Person","_key":"17154"} +{"label":"Gilles S\u00e9gal","version":22,"id":"28182","lastModified":"1301902187000","name":"Gilles S\u00e9gal","type":"Person","_key":"17155"} +{"label":"Michel Fortin","version":22,"id":"28183","lastModified":"1301901998000","name":"Michel Fortin","type":"Person","_key":"17156"} +{"label":"Rosine Cadoret","version":20,"id":"28184","lastModified":"1301902189000","name":"Rosine Cadoret","type":"Person","_key":"17157"} +{"label":"Michel Bardinet","version":22,"id":"28185","lastModified":"1301901988000","name":"Michel Bardinet","type":"Person","_key":"17158"} +{"label":"Oscar","description":"Bertrand, un riche promoteur, m\u00e8ne une vie paisible. Jusqu'au jour o\u00f9 son homme de confiance, Christian, le fait chanter pour doubler son salaire et obtenir la main de sa fille, dont il est l'amant. Il lui avoue \u00e9galement qu'il le vole depuis de nombreuses ann\u00e9es. Les choses se compliquent encore quand la ma\u00eetresse de Christian se r\u00e9v\u00e8le finalement ne pas \u00eatre Colette, la fille de Bertrand, mais qu'en revanche, Colette s'av\u00e8re \u00eatre enceinte d'Oscar, le chauffeur.","id":"2798","runtime":85,"imdbId":"tt0062083","version":94,"lastModified":"1301904249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4cacd1387b9aa1193000001d\/oscar-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Oscar","releaseDate":-70243200000,"language":"en","type":"Movie","_key":"17159"} +{"label":"Sylvia Saurel","version":24,"id":"28187","lastModified":"1301902010000","name":"Sylvia Saurel","type":"Person","_key":"17160"} +{"label":"Dominique Page","version":22,"id":"28188","lastModified":"1301902189000","name":"Dominique Page","type":"Person","_key":"17161"} +{"label":"Mario David","version":35,"id":"28189","lastModified":"1301901448000","name":"Mario David","type":"Person","_key":"17162"} +{"label":"Roger Van Hool","version":31,"id":"28190","lastModified":"1301901822000","name":"Roger Van Hool","type":"Person","_key":"17163"} +{"label":"Rumor has it...","description":"Jennifer Aniston portrays Sarah Huttinger, whose return home with her fiance convinces her that the sedate, proper, country-club lifestyle of her family isn't for her, and that maybe the Huttinger family isn't even hers. Join Sarah as she uncovers secrets that suggest the Huttingers are neither sedate nor proper. The story is rumor. The laughs are real!","id":"2800","runtime":97,"imdbId":"tt0398375","homepage":"http:\/\/rumorhasitmovie.warnerbros.com","version":388,"lastModified":"1302048935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d0\/4bc917cc017a3c57fe0090d0\/rumor-has-it-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Rumor has it...","releaseDate":1135468800000,"language":"en","type":"Movie","_key":"17164"} +{"label":"Richard Jenkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bc\/4c6a92aa7b9aa13ab80000bc\/richard-jenkins-profile.jpg","version":108,"id":"28633","lastModified":"1301904092000","name":"Richard Jenkins","type":"Person","_key":"17165"} +{"label":"Steve Sandvoss","version":28,"id":"28634","lastModified":"1301901587000","name":"Steve Sandvoss","type":"Person","_key":"17166"} +{"label":"De Arm Van Jezus","description":"Jakob Yzermans is an American salesman looking for his roots in Rotterdam. He thinks his father (Hendrik Yzermans) has left Holland with the money he took from his collegues. Jakob is trying to get the money together to repay the money. While doing so he encounters more and more problems.","id":"2802","runtime":70,"imdbId":"tt0352178","version":48,"lastModified":"1301906179000","studio":"Riba Filmproductions","title":"De Arm Van Jezus","releaseDate":1043366400000,"language":"en","type":"Movie","_key":"17167"} +{"label":"Huug van Tienhoven","version":22,"id":"28213","lastModified":"1301901499000","name":"Huug van Tienhoven","type":"Person","_key":"17168"} +{"label":"Ferry Heijne","version":18,"id":"28214","lastModified":"1301901669000","name":"Ferry Heijne","type":"Person","_key":"17169"} +{"label":"Frank van den Bops","version":21,"id":"28215","lastModified":"1301901669000","name":"Frank van den Bops","type":"Person","_key":"17170"} +{"label":"De Kift","version":22,"id":"28216","lastModified":"1301902161000","name":"De Kift","type":"Person","_key":"17171"} +{"label":"Andr\u00e9 van der Hout","version":25,"id":"28217","lastModified":"1301901500000","name":"Andr\u00e9 van der Hout","type":"Person","_key":"17172"} +{"label":"Linda de Kooning","version":20,"id":"28219","lastModified":"1301901681000","name":"Linda de Kooning","type":"Person","_key":"17173"} +{"label":"La Crim: Le Secret","description":"No overview found.","id":"2803","runtime":90,"imdbId":"tt0405533","version":52,"lastModified":"1301905719000","genre":"Crime","title":"La Crim: Le Secret","releaseDate":1079308800000,"language":"en","type":"Movie","_key":"17174"} +{"label":"Dominique Guillo","version":20,"id":"24879","lastModified":"1301901971000","name":"Dominique Guillo","type":"Person","_key":"17175"} +{"label":"Isabel Otero","version":21,"id":"24875","lastModified":"1301901669000","name":"Isabel Otero","type":"Person","_key":"17176"} +{"label":"Christian Bujeau","version":23,"id":"24877","lastModified":"1301901448000","name":"Christian Bujeau","type":"Person","_key":"17177"} +{"label":"Tristan Calvez","version":20,"id":"24878","lastModified":"1301901971000","name":"Tristan Calvez","type":"Person","_key":"17178"} +{"label":"Jean-Fran\u00e7ois Garreaud","version":29,"id":"28225","lastModified":"1301901532000","name":"Jean-Fran\u00e7ois Garreaud","type":"Person","_key":"17179"} +{"label":"S\u00e9verine Ferrer","version":20,"id":"28228","lastModified":"1301902161000","name":"S\u00e9verine Ferrer","type":"Person","_key":"17180"} +{"label":"Jean Dell","version":27,"id":"35359","lastModified":"1301901971000","name":"Jean Dell","type":"Person","_key":"17181"} +{"label":"De IJzeren Hond","description":"No overview found.","id":"2804","runtime":0,"version":24,"lastModified":"1301107161000","title":"De IJzeren Hond","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"17182"} +{"label":"Pim Heijne","version":16,"id":"28229","lastModified":"1301902189000","name":"Pim Heijne","type":"Person","_key":"17183"} +{"label":"Wim ter Weele","version":17,"id":"28230","lastModified":"1301902161000","name":"Wim ter Weele","type":"Person","_key":"17184"} +{"label":"Dog: Rottweiler","version":16,"id":"28231","lastModified":"1301902161000","name":"Dog: Rottweiler","type":"Person","_key":"17185"} +{"label":"Tears of the Black Tiger","description":"A homage and parody of 1950's and 1960's Thai romantic melodramas and action films.","id":"2805","runtime":110,"imdbId":"tt0269217","trailer":"http:\/\/www.youtube.com\/watch?v=saTKuN5bc68","version":105,"lastModified":"1301904823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dd\/4bc917ce017a3c57fe0090dd\/fah-talai-jone-mid.jpg","studio":"Aichi Arts Center","genre":"Western","title":"Tears of the Black Tiger","releaseDate":970704000000,"language":"en","type":"Movie","_key":"17186"} +{"label":"Wisit Sasanatieng","version":28,"id":"28233","lastModified":"1301901177000","name":"Wisit Sasanatieng","type":"Person","_key":"17187"} +{"label":"Chartchai Ngamsan","version":17,"id":"134723","lastModified":"1301902308000","name":"Chartchai Ngamsan","type":"Person","_key":"17188"} +{"label":"Suwinit Panjamawat","version":19,"id":"134724","lastModified":"1301902381000","name":"Suwinit Panjamawat","type":"Person","_key":"17189"} +{"label":"Stella Malucchi","version":19,"id":"134725","lastModified":"1301902347000","name":"Stella Malucchi","type":"Person","_key":"17190"} +{"label":"Supakorn Kitsuwon","version":18,"id":"134726","lastModified":"1301902387000","name":"Supakorn Kitsuwon","type":"Person","_key":"17191"} +{"label":"Arawat Ruangvuth","version":18,"id":"134727","lastModified":"1301902524000","name":"Arawat Ruangvuth","type":"Person","_key":"17192"} +{"label":"Sombat Metanee","version":17,"id":"134728","lastModified":"1301902405000","name":"Sombat Metanee","type":"Person","_key":"17193"} +{"label":"Pairoj Jaisingha","version":17,"id":"134729","lastModified":"1301902506000","name":"Pairoj Jaisingha","type":"Person","_key":"17194"} +{"label":"Naiyana Sheewanun","version":18,"id":"134730","lastModified":"1301902541000","name":"Naiyana Sheewanun","type":"Person","_key":"17195"} +{"label":"Kanchit Kwanpracha","version":18,"id":"134731","lastModified":"1301902539000","name":"Kanchit Kwanpracha","type":"Person","_key":"17196"} +{"label":"Chamloen Sridang","version":18,"id":"134732","lastModified":"1301902542000","name":"Chamloen Sridang","type":"Person","_key":"17197"} +{"label":"American Pie Collection","description":"No overview found.","id":"2806","version":79,"lastModified":"1301903979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3af\/4c89450a5e73d66b5f0003af\/american-pie-mid.jpg","title":"American Pie Collection","language":"en","tagline":"There's something about your first piece.","type":"Movie","_key":"17198"} +{"label":"Jongens van de Landbouwschool","description":"Documentary about the Dutch punkband 'De Klojos'. and it sucks bigtime","id":"2807","runtime":53,"trailer":"http:\/\/www.youtube.com\/watch?v=193","version":66,"lastModified":"1301904270000","genre":"Documentary","title":"Jongens van de Landbouwschool","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"17199"} +{"label":"Kars Penninx","version":17,"id":"28234","lastModified":"1301901569000","name":"Kars Penninx","type":"Person","_key":"17200"} +{"label":"Eef Baerends","version":16,"id":"28815","lastModified":"1301901661000","name":"Eef Baerends","type":"Person","_key":"17201"} +{"label":"Pieter Bijker","version":16,"id":"33426","lastModified":"1301901499000","name":"Pieter Bijker","type":"Person","_key":"17202"} +{"label":"Marc van der Marel","version":16,"id":"33427","lastModified":"1301901499000","name":"Marc van der Marel","type":"Person","_key":"17203"} +{"label":"Marc-Jan Gubbels","version":16,"id":"33428","lastModified":"1301901513000","name":"Marc-Jan Gubbels","type":"Person","_key":"17204"} +{"label":"Gerrie","version":16,"id":"37578","lastModified":"1301901661000","name":"Gerrie","type":"Person","_key":"17205"} +{"label":"Violette Nozi\u00e8re","description":"Paris, 1933. The daughter of a respectable lower middle class couple, Violette Nozi\u00e8re, leads a disreputable double life. Far from being the innocent 18-year-old her parents mistake her for, she spends her nights with dissolute young men in the less salubrious areas of the city. One day, Violette meets her ideal man, Jean Dabin, but he is a scoundrel who soon begins to extort money from her. When her parents discover that she is stealing from them, Violette finds the tension in their cramped apa","id":"2813","runtime":124,"imdbId":"tt0078467","version":65,"lastModified":"1301903876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4d0cfb235e73d6371c000a7a\/violette-nozi-re-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Violette Nozi\u00e8re","releaseDate":280540800000,"language":"en","type":"Movie","_key":"17206"} +{"label":"Lisa Langlois","version":24,"id":"28246","lastModified":"1301901795000","name":"Lisa Langlois","type":"Person","_key":"17207"} +{"label":"Fran\u00e7ois Maistre","version":33,"id":"28247","lastModified":"1301902161000","name":"Fran\u00e7ois Maistre","type":"Person","_key":"17208"} +{"label":"Jean Dalmain","version":20,"id":"28251","lastModified":"1301902010000","name":"Jean Dalmain","type":"Person","_key":"17209"} +{"label":"Guy Hoffman","version":23,"id":"28252","lastModified":"1301902189000","name":"Guy Hoffman","type":"Person","_key":"17210"} +{"label":"Dora Doll","version":37,"id":"25166","lastModified":"1301901687000","name":"Dora Doll","type":"Person","_key":"17211"} +{"label":"Fran\u00e7ois-Eric Gendron","version":21,"id":"28253","lastModified":"1301902041000","name":"Fran\u00e7ois-Eric Gendron","type":"Person","_key":"17212"} +{"label":"Bernadette Lafont","version":43,"id":"28254","lastModified":"1301901289000","name":"Bernadette Lafont","type":"Person","_key":"17213"} +{"label":"Fabrice Luchini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/230\/4d52f4c87b9aa13ab4012230\/fabrice-luchini-profile.jpg","version":61,"id":"28255","lastModified":"1301901359000","name":"Fabrice Luchini","type":"Person","_key":"17214"} +{"label":"Sabato domenica e luned\u00ec","description":"No overview found.","id":"2814","runtime":119,"imdbId":"tt0098244","version":35,"lastModified":"1301905009000","studio":"Reteitalia","genre":"Comedy","title":"Sabato domenica e luned\u00ec","releaseDate":631152000000,"language":"en","type":"Movie","_key":"17215"} +{"label":"Lina Wertm\u00fcller","version":29,"id":"26265","lastModified":"1301901971000","name":"Lina Wertm\u00fcller","type":"Person","_key":"17216"} +{"label":"Luca De Filippo","version":21,"id":"28257","lastModified":"1301901842000","name":"Luca De Filippo","type":"Person","_key":"17217"} +{"label":"Luciano De Crescenzo","version":38,"id":"28259","lastModified":"1301901859000","name":"Luciano De Crescenzo","type":"Person","_key":"17218"} +{"label":"Alessandra Mussolini","version":21,"id":"28258","lastModified":"1301901971000","name":"Alessandra Mussolini","type":"Person","_key":"17219"} +{"label":"J\u00e9r\u00f4me Anger","version":20,"id":"25108","lastModified":"1301902161000","name":"J\u00e9r\u00f4me Anger","type":"Person","_key":"17220"} +{"label":"Les oiseaux de la lune","description":"No overview found.","id":"2815","runtime":90,"imdbId":"tt0175987","version":39,"lastModified":"1301906758000","genre":"Comedy","title":"Les oiseaux de la lune","releaseDate":136339200000,"language":"en","type":"Movie","_key":"17221"} +{"label":"Andr\u00e9 Barsacq","version":20,"id":"28260","lastModified":"1301902190000","name":"Andr\u00e9 Barsacq","type":"Person","_key":"17222"} +{"label":"Jacques Duby","version":25,"id":"28262","lastModified":"1301901569000","name":"Jacques Duby","type":"Person","_key":"17223"} +{"label":"Jean-Gabriel Nordmann","version":20,"id":"28263","lastModified":"1301901680000","name":"Jean-Gabriel Nordmann","type":"Person","_key":"17224"} +{"label":"Marcel Cuvelier","version":27,"id":"28264","lastModified":"1301902161000","name":"Marcel Cuvelier","type":"Person","_key":"17225"} +{"label":"Pascale de Boysson","version":20,"id":"28265","lastModified":"1301902189000","name":"Pascale de Boysson","type":"Person","_key":"17226"} +{"label":"Henri Lambert","version":23,"id":"28266","lastModified":"1301901971000","name":"Henri Lambert","type":"Person","_key":"17227"} +{"label":"Luce Garcia-Ville","version":25,"id":"28277","lastModified":"1301901500000","name":"Luce Garcia-Ville","type":"Person","_key":"17228"} +{"label":"Madeleine Barbul\u00e9e","version":23,"id":"28278","lastModified":"1299498855000","name":"Madeleine Barbul\u00e9e","type":"Person","_key":"17229"} +{"label":"Same Old Song","description":"Odile is a business executive looking for a new, bigger apartment. Her younger sister Camille has just completed her doctoral thesis in history and is a Paris tour guide. Simon is a regular on Camille's tours because he's attracted to her. Camille has fallen for Marc, and they begin an affair. Nicolas is also looking for an apartment, since he hopes to eventually have his family join him in Paris.","id":"2817","runtime":120,"imdbId":"tt0119828","version":76,"lastModified":"1301906758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e2\/4bc917d0017a3c57fe0090e2\/on-connait-la-chanson-mid.jpg","genre":"Comedy","title":"Same Old Song","releaseDate":892080000000,"language":"en","type":"Movie","_key":"17230"} +{"label":"Agn\u00e8s Jaoui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15d\/4d96f0107b9aa119a000415d\/agn-s-jaoui-profile.jpg","biography":"El\u00e8ve dou\u00e9e, Agn\u00e8s Jaoui fait hypokh\u00e2gne au lyc\u00e9e Henri IV et entre au \nConservatoire \u00e0 l'\u00e2ge de 17 ans. Elle suit \u00e0 partir de 1984 les cours au\n th\u00e9\u00e2tre des Amandiers de Nanterre, dirig\u00e9 \u00e0 l'\u00e9poque par <a href=\"http:\/\/www.allocine.fr\/personne\/fichepersonne_gen_cpersonne=158.html\" title=\"Patrice Ch\u00e9reau\">Patrice Ch\u00e9reau<\/a>. D\u00e9j\u00e0 apparue au cin\u00e9ma dans <b><a href=\"http:\/\/www.allocine.fr\/film\/fichefilm_gen_cfilm=29577.html\" title=\"Le Faucon\">Le Faucon<\/a><\/b> (1983, <a href=\"http:\/\/www.allocine.f","version":64,"id":"28279","lastModified":"1301901505000","name":"Agn\u00e8s Jaoui","type":"Person","_key":"17231"} +{"label":"Jean-Pierre Bacri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/608\/4bfadd09017a3c7036000608\/jean-pierre-bacri-profile.jpg","version":61,"id":"28281","lastModified":"1301901597000","name":"Jean-Pierre Bacri","type":"Person","_key":"17232"} +{"label":"Jacques Mauclair","version":22,"id":"28284","lastModified":"1301901825000","name":"Jacques Mauclair","type":"Person","_key":"17233"} +{"label":"Groupe Flag: Vrai ou faux","description":"No overview found.","id":"2819","runtime":90,"imdbId":"tt0593207","version":35,"lastModified":"1301419703000","studio":"Centre National de la Cin\u00e9matographie","genre":"Crime","title":"Groupe Flag: Vrai ou faux","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"17234"} +{"label":"\u00c9tienne Dhaene","version":20,"id":"24567","lastModified":"1301901823000","name":"\u00c9tienne Dhaene","type":"Person","_key":"17235"} +{"label":"Sophie De La Rochefoucauld","version":17,"id":"24561","lastModified":"1301901669000","name":"Sophie De La Rochefoucauld","type":"Person","_key":"17236"} +{"label":"Patrick Fierry","version":22,"id":"24562","lastModified":"1301901500000","name":"Patrick Fierry","type":"Person","_key":"17237"} +{"label":"St\u00e9phane Algoud","version":20,"id":"24564","lastModified":"1301901834000","name":"St\u00e9phane Algoud","type":"Person","_key":"17238"} +{"label":"Philippe Magnan","version":25,"id":"24563","lastModified":"1301901845000","name":"Philippe Magnan","type":"Person","_key":"17239"} +{"label":"Philippe Fr\u00e9con","version":20,"id":"24565","lastModified":"1301902161000","name":"Philippe Fr\u00e9con","type":"Person","_key":"17240"} +{"label":"J\u00e9r\u00f4me Marc","version":20,"id":"24566","lastModified":"1301902161000","name":"J\u00e9r\u00f4me Marc","type":"Person","_key":"17241"} +{"label":"Deed Poll","description":"No overview found.","id":"2820","runtime":42,"imdbId":"tt0451035","trailer":"http:\/\/www.youtube.com\/watch?v=460","version":66,"lastModified":"1301903361000","studio":"Viv\u00e0svan Pictures","genre":"Thriller","title":"Deed Poll","releaseDate":1102204800000,"language":"en","type":"Movie","_key":"17242"} +{"label":"Rainer-Maria Wittenauer","version":18,"id":"28298","lastModified":"1301901669000","name":"Rainer-Maria Wittenauer","type":"Person","_key":"17243"} +{"label":"Gianni Meurer","version":19,"id":"28299","lastModified":"1301901546000","name":"Gianni Meurer","type":"Person","_key":"17244"} +{"label":"Martina Schaak","version":22,"id":"28300","lastModified":"1301901815000","name":"Martina Schaak","type":"Person","_key":"17245"} +{"label":"Ingo J. Biermann","version":53,"id":"28302","lastModified":"1301901662000","name":"Ingo J. Biermann","type":"Person","_key":"17246"} +{"label":"Glastage","description":"No overview found.","id":"2821","runtime":27,"imdbId":"tt1319566","version":40,"lastModified":"1301906761000","genre":"Drama","title":"Glastage","releaseDate":1177113600000,"language":"en","type":"Movie","_key":"17247"} +{"label":"Ingmar Skrinjar","version":22,"id":"28306","lastModified":"1301901582000","name":"Ingmar Skrinjar","type":"Person","_key":"17248"} +{"label":"Alexander Bandilla","version":21,"id":"28307","lastModified":"1301901582000","name":"Alexander Bandilla","type":"Person","_key":"17249"} +{"label":"Doris Prilop","version":20,"id":"28308","lastModified":"1301902180000","name":"Doris Prilop","type":"Person","_key":"17250"} +{"label":"Stephan Schoenholtz","version":23,"id":"28314","lastModified":"1301901797000","name":"Stephan Schoenholtz","type":"Person","_key":"17251"} +{"label":"Christian Ziewer","version":20,"id":"28315","lastModified":"1301902189000","name":"Christian Ziewer","type":"Person","_key":"17252"} +{"label":"La paz de tus ojos tristes","description":"No overview found.","id":"2823","runtime":80,"imdbId":"tt1537839","version":41,"lastModified":"1301904718000","studio":"Triton","genre":"Thriller","title":"La paz de tus ojos tristes","releaseDate":1165708800000,"language":"en","type":"Movie","_key":"17253"} +{"label":"Anthony Himbs","version":26,"id":"28316","lastModified":"1301901447000","name":"Anthony Himbs","type":"Person","_key":"17254"} +{"label":"Die Mondv\u00f6gel","description":"No overview found.","id":"2824","runtime":90,"imdbId":"tt0057319","version":35,"lastModified":"1301905718000","studio":"ZDF","genre":"Comedy","title":"Die Mondv\u00f6gel","releaseDate":-212976000000,"language":"en","type":"Movie","_key":"17255"} +{"label":"Peter Zadek","version":20,"id":"28319","lastModified":"1301901823000","name":"Peter Zadek","type":"Person","_key":"17256"} +{"label":"Konstantin Paloff","version":20,"id":"28323","lastModified":"1301902020000","name":"Konstantin Paloff","type":"Person","_key":"17257"} +{"label":"Un hombre de porvenir","description":"No overview found.","id":"2825","runtime":90,"imdbId":"tt1660417","version":38,"lastModified":"1301906155000","genre":"Crime","title":"Un hombre de porvenir","releaseDate":1272499200000,"language":"en","type":"Movie","_key":"17258"} +{"label":"Federica Trucchia","version":23,"id":"28318","lastModified":"1301901823000","name":"Federica Trucchia","type":"Person","_key":"17259"} +{"label":"Nicolas Vaporidis","version":22,"id":"28320","lastModified":"1301901951000","name":"Nicolas Vaporidis","type":"Person","_key":"17260"} +{"label":"Luigi Jacuzio","version":23,"id":"28322","lastModified":"1301902009000","name":"Luigi Jacuzio","type":"Person","_key":"17261"} +{"label":"Ian Brewner","version":20,"id":"28324","lastModified":"1301901586000","name":"Ian Brewner","type":"Person","_key":"17262"} +{"label":"Mauregard","description":"No overview found.","id":"2826","runtime":360,"imdbId":"tt0175396","version":55,"lastModified":"1301905652000","genre":"Drama","title":"Mauregard","releaseDate":23587200000,"language":"en","type":"Movie","_key":"17263"} +{"label":"Claude de Givray","version":26,"id":"3531","lastModified":"1301901189000","name":"Claude de Givray","type":"Person","_key":"17264"} +{"label":"Richard Leduc","version":21,"id":"28330","lastModified":"1301901792000","name":"Richard Leduc","type":"Person","_key":"17265"} +{"label":"Henri Guisol","version":24,"id":"28609","lastModified":"1301901568000","name":"Henri Guisol","type":"Person","_key":"17266"} +{"label":"Jacques Berthier","version":20,"id":"28328","lastModified":"1301901623000","name":"Jacques Berthier","type":"Person","_key":"17267"} +{"label":"Gaby Sylvia","version":20,"id":"28329","lastModified":"1301901746000","name":"Gaby Sylvia","type":"Person","_key":"17268"} +{"label":"Roger Pigaut","version":19,"id":"28331","lastModified":"1301901746000","name":"Roger Pigaut","type":"Person","_key":"17269"} +{"label":"Christine Simon","version":20,"id":"34779","lastModified":"1301901623000","name":"Christine Simon","type":"Person","_key":"17270"} +{"label":"Jandeline","version":19,"id":"34780","lastModified":"1301901623000","name":"Jandeline","type":"Person","_key":"17271"} +{"label":"Jacques Destoop","version":20,"id":"28614","lastModified":"1301901823000","name":"Jacques Destoop","type":"Person","_key":"17272"} +{"label":"John Rico","version":20,"id":"28613","lastModified":"1301901746000","name":"John Rico","type":"Person","_key":"17273"} +{"label":"Anne Korrigan","version":19,"id":"28332","lastModified":"1301901746000","name":"Anne Korrigan","type":"Person","_key":"17274"} +{"label":"Anne-Marie Coffinet","version":21,"id":"28606","lastModified":"1301902003000","name":"Anne-Marie Coffinet","type":"Person","_key":"17275"} +{"label":"Jacques Couturier","version":19,"id":"28607","lastModified":"1301901746000","name":"Jacques Couturier","type":"Person","_key":"17276"} +{"label":"Marie-Blanche Vergnes","version":21,"id":"34778","lastModified":"1301901965000","name":"Marie-Blanche Vergnes","type":"Person","_key":"17277"} +{"label":"Anne Vernon","version":24,"id":"28608","lastModified":"1301901641000","name":"Anne Vernon","type":"Person","_key":"17278"} +{"label":"Mich\u00e8le Montel","version":23,"id":"28610","lastModified":"1301901795000","name":"Mich\u00e8le Montel","type":"Person","_key":"17279"} +{"label":"B\u00e9atrice Romand","version":30,"id":"28611","lastModified":"1301901584000","name":"B\u00e9atrice Romand","type":"Person","_key":"17280"} +{"label":"Jacques Galland","version":21,"id":"28612","lastModified":"1301901909000","name":"Jacques Galland","type":"Person","_key":"17281"} +{"label":"My Boss's Daughter","description":"When a young man agrees to housesit for his boss, he thinks it'll be the perfect opportunity to get close to the woman he desperately has a crush on - his boss's daughter. But he doesn't plan on the long line of other houseguests that try to keep him from his mission. And he also has to deal with the daughter's older brother, who's on the run from local drug dealers","id":"2830","runtime":83,"imdbId":"tt0270980","version":135,"lastModified":"1302044046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b3\/4d8ac5e55e73d653c80007b3\/my-boss-s-daughter-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"My Boss's Daughter","releaseDate":1061510400000,"language":"en","type":"Movie","_key":"17282"} +{"label":"Andy Richter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27d\/4c99ddde7b9aa1275900027d\/andy-richter-profile.jpg","version":63,"birthday":"846457200000","id":"28637","birthplace":"Grand Rapids, Michigan, USA ","lastModified":"1301901167000","name":"Andy Richter","type":"Person","_key":"17283"} +{"label":"David Koechner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12a\/4ce062017b9aa168b100012a\/david-koechner-profile.jpg","version":77,"id":"28638","lastModified":"1301901195000","name":"David Koechner","type":"Person","_key":"17284"} +{"label":"Carmen Electra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fc\/4c45c81e5e73d61ef90000fc\/carmen-electra-profile.jpg","biography":"Tara Leigh Patrick (born April 20, 1972), professionally known as Carmen Electra is an American glamour model, actress, television personality, singer, dancer and sex symbol. She gained fame for her appearances in Playboy magazine, on the MTV game show Singled Out, on the TV series Baywatch, and dancing with the Pussycat Dolls, and has since had roles in the parody films Scary Movie, Date Movie, Epic Movie, Meet the Spartans, and Disaster Movie.\n\nElectra was born in Sharonville, Ohio, the daught","version":78,"birthday":"72572400000","id":"28639","birthplace":"Sharonville, Ohio","lastModified":"1301901151000","name":"Carmen Electra","type":"Person","_key":"17285"} +{"label":"Molly Shannon","version":39,"id":"28640","lastModified":"1301901498000","name":"Molly Shannon","type":"Person","_key":"17286"} +{"label":"Identity","description":"Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.","id":"2832","runtime":90,"imdbId":"tt0309698","trailer":"http:\/\/www.youtube.com\/watch?v=_pbmcgdWE-0","version":294,"lastModified":"1302043216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fd\/4bc917d2017a3c57fe0090fd\/identity-mid.jpg","studio":"Konrad Pictures","genre":"Crime","title":"Identity","releaseDate":1051228800000,"language":"en","tagline":"The secret lies within.","type":"Movie","_key":"17287"} +{"label":"Rebecca De Mornay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24d\/4bd78f65017a3c21f100024d\/rebecca-de-mornay-profile.jpg","version":52,"id":"28412","lastModified":"1301901148000","name":"Rebecca De Mornay","type":"Person","_key":"17288"} +{"label":"Carmen Argenziano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ed\/4c3b175b5e73d671d30001ed\/carmen-argenziano-profile.jpg","version":49,"id":"28413","lastModified":"1301901106000","name":"Carmen Argenziano","type":"Person","_key":"17289"} +{"label":"Leila Kenzle","version":22,"id":"15044","lastModified":"1301901551000","name":"Leila Kenzle","type":"Person","_key":"17290"} +{"label":"Matt Letscher","version":23,"id":"28414","lastModified":"1301901763000","name":"Matt Letscher","type":"Person","_key":"17291"} +{"label":"Bret Loehr","version":23,"id":"28415","lastModified":"1301901763000","name":"Bret Loehr","type":"Person","_key":"17292"} +{"label":"Frederick Coffin","version":29,"id":"28416","lastModified":"1301901316000","name":"Frederick Coffin","type":"Person","_key":"17293"} +{"label":"Joe Hart","version":22,"id":"28417","lastModified":"1301901484000","name":"Joe Hart","type":"Person","_key":"17294"} +{"label":"Michael Hirsch","version":21,"id":"28418","lastModified":"1301901437000","name":"Michael Hirsch","type":"Person","_key":"17295"} +{"label":"Terence Bernie Hines","version":21,"id":"28419","lastModified":"1301901634000","name":"Terence Bernie Hines","type":"Person","_key":"17296"} +{"label":"Stuart M. Besser","version":40,"id":"28401","lastModified":"1302061538000","name":"Stuart M. Besser","type":"Person","_key":"17297"} +{"label":"Fou comme Fran\u00e7ois","description":"No overview found.","id":"2837","runtime":95,"imdbId":"tt0174654","version":35,"lastModified":"1301908617000","genre":"Comedy","title":"Fou comme Fran\u00e7ois","releaseDate":284774400000,"language":"en","type":"Movie","_key":"17298"} +{"label":"G\u00e9rard Chouchan","version":21,"id":"25042","lastModified":"1301902189000","name":"G\u00e9rard Chouchan","type":"Person","_key":"17299"} +{"label":"Michel Creton","version":26,"id":"25038","lastModified":"1301902010000","name":"Michel Creton","type":"Person","_key":"17300"} +{"label":"Reine Courtois","version":20,"id":"25039","lastModified":"1301902189000","name":"Reine Courtois","type":"Person","_key":"17301"} +{"label":"Fabienne Arel","version":20,"id":"25040","lastModified":"1301902189000","name":"Fabienne Arel","type":"Person","_key":"17302"} +{"label":"Jean-Pierre Lituac","version":20,"id":"25041","lastModified":"1301902189000","name":"Jean-Pierre Lituac","type":"Person","_key":"17303"} +{"label":"La grotte aux loups","description":"No overview found.","id":"2840","runtime":90,"imdbId":"tt0175688","version":48,"lastModified":"1301907443000","genre":"Crime","title":"La grotte aux loups","releaseDate":336355200000,"language":"en","type":"Movie","_key":"17304"} +{"label":"Alain Claessens","version":22,"id":"25033","lastModified":"1301901976000","name":"Alain Claessens","type":"Person","_key":"17305"} +{"label":"Michel Cassagne","version":22,"id":"25034","lastModified":"1301902164000","name":"Michel Cassagne","type":"Person","_key":"17306"} +{"label":"Maurice Aufair","version":21,"id":"25035","lastModified":"1301902007000","name":"Maurice Aufair","type":"Person","_key":"17307"} +{"label":"Bernard Born","version":20,"id":"25036","lastModified":"1301902196000","name":"Bernard Born","type":"Person","_key":"17308"} +{"label":"Jacqueline Burnand","version":20,"id":"25037","lastModified":"1301902188000","name":"Jacqueline Burnand","type":"Person","_key":"17309"} +{"label":"Neige Dolsky","version":22,"id":"28460","lastModified":"1301901976000","name":"Neige Dolsky","type":"Person","_key":"17310"} +{"label":"Yvonne Stara","version":20,"id":"28461","lastModified":"1301902176000","name":"Yvonne Stara","type":"Person","_key":"17311"} +{"label":"A Very Long Engagement","description":"Five soldiers are convicted of self-mutilation in order to escape military service during World War I. They are condemned to face near certain death in the no man's land between the French and German trench lines. It appears that all of them were killed in a subsequent battle, but Mathilde, the fianc\u00e9e of one of the soldiers, refuses to give up hope and begins to uncover clues.","id":"2841","runtime":133,"imdbId":"tt0344510","version":293,"lastModified":"1302044914000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f60\/4d7de3757b9aa11a08019f60\/un-long-dimanche-de-fian-ailles-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"A Very Long Engagement","releaseDate":1098835200000,"language":"en","type":"Movie","_key":"17312"} +{"label":"Dominique Bettenfeld","version":30,"id":"28462","lastModified":"1301901623000","name":"Dominique Bettenfeld","type":"Person","_key":"17313"} +{"label":"Jean-Pierre Darroussin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77c\/4cff61f25e73d6299a00577c\/jean-pierre-darroussin-profile.jpg","version":79,"id":"28463","lastModified":"1301901191000","name":"Jean-Pierre Darroussin","type":"Person","_key":"17314"} +{"label":"J\u00e9r\u00f4me Kircher","version":33,"id":"28857","lastModified":"1301901541000","name":"J\u00e9r\u00f4me Kircher","type":"Person","_key":"17315"} +{"label":"Riot at the Rite","description":"No overview found.","id":"2844","runtime":90,"imdbId":"tt0473080","version":57,"lastModified":"1301906649000","studio":"BBC Films","genre":"Drama","title":"Riot at the Rite","releaseDate":1129593600000,"language":"en","type":"Movie","_key":"17316"} +{"label":"Adam Garcia","version":43,"id":"28472","lastModified":"1301901230000","name":"Adam Garcia","type":"Person","_key":"17317"} +{"label":"Aidan McArdle","version":17,"id":"28473","lastModified":"1301901453000","name":"Aidan McArdle","type":"Person","_key":"17318"} +{"label":"Emma Pierson","version":21,"id":"28475","lastModified":"1301901754000","name":"Emma Pierson","type":"Person","_key":"17319"} +{"label":"Griff Rhys Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/254\/4cd3f31d5e73d67348000254\/griff-rhys-jones-profile.jpg","version":28,"id":"28476","lastModified":"1301901426000","name":"Griff Rhys Jones","type":"Person","_key":"17320"} +{"label":"Christian McKay","version":33,"id":"28478","lastModified":"1301901630000","name":"Christian McKay","type":"Person","_key":"17321"} +{"label":"Richard Hope","version":19,"id":"28479","lastModified":"1301901920000","name":"Richard Hope","type":"Person","_key":"17322"} +{"label":"Philip Herbert","version":19,"id":"28480","lastModified":"1301902120000","name":"Philip Herbert","type":"Person","_key":"17323"} +{"label":"Naomi Wattis","version":19,"id":"28481","lastModified":"1301901754000","name":"Naomi Wattis","type":"Person","_key":"17324"} +{"label":"Peter Copley","version":21,"id":"28482","lastModified":"1301901919000","name":"Peter Copley","type":"Person","_key":"17325"} +{"label":"Sara Dee","version":19,"id":"28483","lastModified":"1301901919000","name":"Sara Dee","type":"Person","_key":"17326"} +{"label":"Zenaida Yanowsky","version":19,"id":"28484","lastModified":"1301901919000","name":"Zenaida Yanowsky","type":"Person","_key":"17327"} +{"label":"Philip Battley","version":19,"id":"28486","lastModified":"1301901919000","name":"Philip Battley","type":"Person","_key":"17328"} +{"label":"Andy Wilson","version":28,"id":"28487","lastModified":"1301901532000","name":"Andy Wilson","type":"Person","_key":"17329"} +{"label":"Martin Coates","version":19,"id":"28494","lastModified":"1301901919000","name":"Martin Coates","type":"Person","_key":"17330"} +{"label":"Adam Jenkins","version":19,"id":"28495","lastModified":"1301902120000","name":"Adam Jenkins","type":"Person","_key":"17331"} +{"label":"Paula Turnbull","version":19,"id":"28496","lastModified":"1301901919000","name":"Paula Turnbull","type":"Person","_key":"17332"} +{"label":"La Silla","description":"No overview found.","id":"2845","runtime":95,"imdbId":"tt0468869","version":129,"lastModified":"1301851705000","studio":"Eddie Saeta","genre":"Drama","title":"La Silla","releaseDate":1154476800000,"language":"en","type":"Movie","_key":"17333"} +{"label":"Julio D. Wallovits","version":20,"id":"28498","lastModified":"1301901754000","name":"Julio D. Wallovits","type":"Person","_key":"17334"} +{"label":"Francesc Garrido","version":20,"id":"28507","lastModified":"1301901919000","name":"Francesc Garrido","type":"Person","_key":"17335"} +{"label":"Ulises Dumont","version":20,"id":"28508","lastModified":"1301901919000","name":"Ulises Dumont","type":"Person","_key":"17336"} +{"label":"Francesc Orella","version":22,"id":"28509","lastModified":"1301901988000","name":"Francesc Orella","type":"Person","_key":"17337"} +{"label":"Gonzalo Cunill","version":21,"id":"28510","lastModified":"1301902158000","name":"Gonzalo Cunill","type":"Person","_key":"17338"} +{"label":"Luis Zahera","version":21,"id":"28511","lastModified":"1301902119000","name":"Luis Zahera","type":"Person","_key":"17339"} +{"label":"Dora Santacreu","version":19,"id":"28512","lastModified":"1301901919000","name":"Dora Santacreu","type":"Person","_key":"17340"} +{"label":"Rachel Lascar","version":19,"id":"28513","lastModified":"1301902119000","name":"Rachel Lascar","type":"Person","_key":"17341"} +{"label":"\u00c0lex Brendem\u00fchl","version":22,"id":"28514","lastModified":"1301902168000","name":"\u00c0lex Brendem\u00fchl","type":"Person","_key":"17342"} +{"label":"Esther Bov\u00e9","version":19,"id":"28515","lastModified":"1301901754000","name":"Esther Bov\u00e9","type":"Person","_key":"17343"} +{"label":"Ferran Madico","version":19,"id":"28516","lastModified":"1301902119000","name":"Ferran Madico","type":"Person","_key":"17344"} +{"label":"Emili Corral","version":19,"id":"28517","lastModified":"1301902119000","name":"Emili Corral","type":"Person","_key":"17345"} +{"label":"Iv\u00e1n Morales","version":19,"id":"28518","lastModified":"1301902119000","name":"Iv\u00e1n Morales","type":"Person","_key":"17346"} +{"label":"Alba Garc\u00eda","version":19,"id":"28519","lastModified":"1301902119000","name":"Alba Garc\u00eda","type":"Person","_key":"17347"} +{"label":"Andrea Santiago","version":19,"id":"28520","lastModified":"1301902119000","name":"Andrea Santiago","type":"Person","_key":"17348"} +{"label":"Zwischen Flieder wandern und singen","description":"No overview found.","id":"2846","runtime":16,"imdbId":"tt0448183","homepage":"http:\/\/www.ijbiermann.com","version":52,"lastModified":"1301906758000","genre":"Drama","title":"Zwischen Flieder wandern und singen","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"17349"} +{"label":"Alma Leiberg","version":20,"id":"28531","lastModified":"1301901569000","name":"Alma Leiberg","type":"Person","_key":"17350"} +{"label":"Maxim Mehmet","version":28,"id":"28532","lastModified":"1301901405000","name":"Maxim Mehmet","type":"Person","_key":"17351"} +{"label":"Anna Bolk","version":20,"id":"28533","lastModified":"1301901795000","name":"Anna Bolk","type":"Person","_key":"17352"} +{"label":"Ovo Maltine","version":22,"id":"28534","lastModified":"1301901569000","name":"Ovo Maltine","type":"Person","_key":"17353"} +{"label":"Benjamin Knight","version":19,"id":"28535","lastModified":"1301901795000","name":"Benjamin Knight","type":"Person","_key":"17354"} +{"label":"Maya M\u00fcller","version":20,"id":"28536","lastModified":"1301902189000","name":"Maya M\u00fcller","type":"Person","_key":"17355"} +{"label":"Miriam Glinka","version":20,"id":"28537","lastModified":"1301902189000","name":"Miriam Glinka","type":"Person","_key":"17356"} +{"label":"Scherzo","description":"No overview found.","id":"2847","runtime":6,"homepage":"www.ijbiermann.com","version":26,"lastModified":"1301833100000","genre":"Drama","title":"Scherzo","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"17357"} +{"label":"Sebastian Suba","version":18,"id":"28538","lastModified":"1301901805000","name":"Sebastian Suba","type":"Person","_key":"17358"} +{"label":"Rahel Savoldelli","version":16,"id":"28539","lastModified":"1301902189000","name":"Rahel Savoldelli","type":"Person","_key":"17359"} +{"label":"Coda","description":"No overview found.","id":"2848","runtime":5,"imdbId":"tt0411236","homepage":"http:\/\/www.ijbiermann.com","version":60,"lastModified":"1301908615000","genre":"Drama","title":"Coda","releaseDate":1075680000000,"language":"en","type":"Movie","_key":"17360"} +{"label":"Pr\u00e9lude","description":"No overview found.","id":"2849","runtime":4,"homepage":"www.ijbiermann.com","version":21,"lastModified":"1301906179000","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Drama","title":"Pr\u00e9lude","releaseDate":1102204800000,"language":"en","type":"Movie","_key":"17361"} +{"label":"Anna Brandt","version":16,"id":"28546","lastModified":"1301901795000","name":"Anna Brandt","type":"Person","_key":"17362"} +{"label":"Sol Bondy","version":16,"id":"28547","lastModified":"1301901795000","name":"Sol Bondy","type":"Person","_key":"17363"} +{"label":"Breaking Glass","description":"One segment of the video short \"Et\u00fcden op. 18\"","id":"2850","runtime":13,"homepage":"www.ijbiermann.com","version":107,"lastModified":"1301454026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58d\/4d8184e65e73d6724b00158d\/breaking-glass-mid.jpg","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Drama","title":"Breaking Glass","releaseDate":1128816000000,"language":"en","type":"Movie","_key":"17364"} +{"label":"Maryam Zaree","version":16,"id":"28552","lastModified":"1301901795000","name":"Maryam Zaree","type":"Person","_key":"17365"} +{"label":"Sebastian Becker","version":16,"id":"28553","lastModified":"1301901795000","name":"Sebastian Becker","type":"Person","_key":"17366"} +{"label":"Pulsar","description":"No overview found.","id":"2851","runtime":11,"homepage":"www.ijbiermann.com","version":41,"lastModified":"1301904478000","genre":"Drama","title":"Pulsar","releaseDate":1128816000000,"language":"en","type":"Movie","_key":"17367"} +{"label":"Claudia Falco","version":16,"id":"28556","lastModified":"1301901499000","name":"Claudia Falco","type":"Person","_key":"17368"} +{"label":"Sandra Pohl","version":16,"id":"28557","lastModified":"1301901661000","name":"Sandra Pohl","type":"Person","_key":"17369"} +{"label":"Stuart Dee","description":"No overview found.","id":"2852","runtime":31,"homepage":"www.ijbiermann.com","version":30,"lastModified":"1301908615000","genre":"Comedy","title":"Stuart Dee","releaseDate":1128816000000,"language":"en","type":"Movie","_key":"17370"} +{"label":"Attila Borlan","version":16,"id":"28558","lastModified":"1301902161000","name":"Attila Borlan","type":"Person","_key":"17371"} +{"label":"Christy Leonardo","version":16,"id":"28559","lastModified":"1301901569000","name":"Christy Leonardo","type":"Person","_key":"17372"} +{"label":"Anna Guddat","version":17,"id":"28560","lastModified":"1301902161000","name":"Anna Guddat","type":"Person","_key":"17373"} +{"label":"Klavierstunde","description":"No overview found.","id":"2853","runtime":8,"homepage":"www.ijbiermann.com","version":23,"lastModified":"1301905718000","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Drama","title":"Klavierstunde","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"17374"} +{"label":"Katharina Rivilis","version":24,"id":"28562","lastModified":"1301901569000","name":"Katharina Rivilis","type":"Person","_key":"17375"} +{"label":"Vor dem Konzert","description":"No overview found.","id":"2854","runtime":12,"version":29,"lastModified":"1301908085000","title":"Vor dem Konzert","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"17376"} +{"label":"Ren\u00e9 Hofschneider","version":21,"id":"28656","lastModified":"1301901678000","name":"Ren\u00e9 Hofschneider","type":"Person","_key":"17377"} +{"label":"Der Mann mit dem Objektiv","description":"No overview found.","id":"2855","runtime":80,"imdbId":"tt0055137","version":51,"lastModified":"1301907297000","studio":"DEFA","genre":"Science Fiction","title":"Der Mann mit dem Objektiv","releaseDate":-260409600000,"language":"en","type":"Movie","_key":"17378"} +{"label":"Helga Labudda","version":17,"id":"28651","lastModified":"1301901453000","name":"Helga Labudda","type":"Person","_key":"17379"} +{"label":"Christine Laszar","version":19,"id":"28652","lastModified":"1301901629000","name":"Christine Laszar","type":"Person","_key":"17380"} +{"label":"Erich Franz","version":19,"id":"28646","lastModified":"1301901754000","name":"Erich Franz","type":"Person","_key":"17381"} +{"label":"Monika Hildebrandt","version":15,"id":"28647","lastModified":"1301902118000","name":"Monika Hildebrandt","type":"Person","_key":"17382"} +{"label":"Maika Joseph","version":15,"id":"28648","lastModified":"1301902118000","name":"Maika Joseph","type":"Person","_key":"17383"} +{"label":"Micaela Krei\u00dfler","version":19,"id":"28649","lastModified":"1301902118000","name":"Micaela Krei\u00dfler","type":"Person","_key":"17384"} +{"label":"Eduard Kubat","version":15,"id":"28650","lastModified":"1301902118000","name":"Eduard Kubat","type":"Person","_key":"17385"} +{"label":"Axel M\u00fcller","version":16,"id":"28653","lastModified":"1301902189000","name":"Axel M\u00fcller","type":"Person","_key":"17386"} +{"label":"Uta-Maria Sch\u00fctze","version":16,"id":"28654","lastModified":"1301902192000","name":"Uta-Maria Sch\u00fctze","type":"Person","_key":"17387"} +{"label":"Otto Stark","version":19,"id":"28655","lastModified":"1301902118000","name":"Otto Stark","type":"Person","_key":"17388"} +{"label":"Half Past Ten","description":"No overview found.","id":"2856","runtime":60,"imdbId":"tt1533792","trailer":"http:\/\/www.youtube.com\/watch?v=458","version":60,"lastModified":"1301906762000","studio":"Viv\u00e0svan Pictures","genre":"Drama","title":"Half Past Ten","releaseDate":1228089600000,"language":"en","type":"Movie","_key":"17389"} +{"label":"Sascha Bachmann","version":20,"id":"28580","lastModified":"1301901817000","name":"Sascha Bachmann","type":"Person","_key":"17390"} +{"label":"Michael F. Stoerzer","version":20,"id":"28583","lastModified":"1301901584000","name":"Michael F. Stoerzer","type":"Person","_key":"17391"} +{"label":"Kerstin Linnartz","version":22,"id":"28584","lastModified":"1301901449000","name":"Kerstin Linnartz","type":"Person","_key":"17392"} +{"label":"Sascia Haj","version":20,"id":"28585","lastModified":"1301901680000","name":"Sascia Haj","type":"Person","_key":"17393"} +{"label":"Charlotte Happe","version":20,"id":"32222","lastModified":"1301901828000","name":"Charlotte Happe","type":"Person","_key":"17394"} +{"label":"Der Mann im Keller","description":"No overview found.","id":"2857","runtime":51,"imdbId":"tt1236474","version":49,"lastModified":"1301904271000","studio":"Viv\u00e0svan Pictures","genre":"Comedy","title":"Der Mann im Keller","releaseDate":1212364800000,"language":"en","type":"Movie","_key":"17395"} +{"label":"Nikolaus Firmkranz","version":21,"id":"28587","lastModified":"1301901838000","name":"Nikolaus Firmkranz","type":"Person","_key":"17396"} +{"label":"Dominique Wolf","version":20,"id":"28588","lastModified":"1301901662000","name":"Dominique Wolf","type":"Person","_key":"17397"} +{"label":"Blues","description":"No overview found.","id":"2858","runtime":67,"version":148,"lastModified":"1301908032000","studio":"Viv\u00e0svan Pictures","genre":"Drama","title":"Blues","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"17398"} +{"label":"Immer nie am Meer","description":"No overview found.","id":"2859","runtime":88,"imdbId":"tt0976042","homepage":"http:\/\/www.immernieammeer.at","version":372,"lastModified":"1301905652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38f\/4d26ce067b9aa134d800138f\/immer-nie-am-meer-mid.jpg","studio":"Coop 99","genre":"Comedy","title":"Immer nie am Meer","releaseDate":1191456000000,"language":"en","type":"Movie","_key":"17399"} +{"label":"Christoph Grissemann","version":24,"id":"28594","lastModified":"1301901746000","name":"Christoph Grissemann","type":"Person","_key":"17400"} +{"label":"Dirk Stermann","version":22,"id":"28595","lastModified":"1301901623000","name":"Dirk Stermann","type":"Person","_key":"17401"} +{"label":"Heinz Strunk","version":22,"id":"28596","lastModified":"1301901541000","name":"Heinz Strunk","type":"Person","_key":"17402"} +{"label":"Philip Bialowski","version":18,"id":"28597","lastModified":"1301901668000","name":"Philip Bialowski","type":"Person","_key":"17403"} +{"label":"Eva Maria Neubauer","version":20,"id":"28598","lastModified":"1301902112000","name":"Eva Maria Neubauer","type":"Person","_key":"17404"} +{"label":"Gabriele Heckel","version":20,"id":"28599","lastModified":"1301902112000","name":"Gabriele Heckel","type":"Person","_key":"17405"} +{"label":"Silke Jandl","version":20,"id":"28600","lastModified":"1301902112000","name":"Silke Jandl","type":"Person","_key":"17406"} +{"label":"Bernhard Majcen","version":20,"id":"28601","lastModified":"1301902112000","name":"Bernhard Majcen","type":"Person","_key":"17407"} +{"label":"Marion Dimali","version":20,"id":"28602","lastModified":"1301902112000","name":"Marion Dimali","type":"Person","_key":"17408"} +{"label":"Christopher Sch\u00e4rf","version":21,"id":"28603","lastModified":"1301902112000","name":"Christopher Sch\u00e4rf","type":"Person","_key":"17409"} +{"label":"Alexander Rieder","version":20,"id":"28604","lastModified":"1301902112000","name":"Alexander Rieder","type":"Person","_key":"17410"} +{"label":"Markus Schleinzer","version":24,"id":"28605","lastModified":"1301902112000","name":"Markus Schleinzer","type":"Person","_key":"17411"} +{"label":"Antonin Svoboda","version":35,"id":"3929","lastModified":"1301901281000","name":"Antonin Svoboda","type":"Person","_key":"17412"} +{"label":"Claire's Knee","description":"On the eve of his wedding, on holiday on the Lake Annecy shore, a career diplomat visits an old acquaintance, perhaps a former girlfriend. Through her he meets an intense teenager, Laura, and then lusts after her sister, Claire. Whilst Laura attempts to flirt with him, his fantasy becomes focused on wanting to caress Claire's knee.","id":"2860","runtime":105,"imdbId":"tt0065772","version":79,"lastModified":"1302063426000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a7\/4d486a765e73d654c00000a7\/le-genou-de-claire-mid.jpg","studio":"Les Films du Losange","genre":"Drama","title":"Claire's Knee","releaseDate":35942400000,"language":"en","type":"Movie","_key":"17413"} +{"label":"Eric Rohmer","version":114,"id":"28615","lastModified":"1301901448000","name":"Eric Rohmer","type":"Person","_key":"17414"} +{"label":"Laurence de Monaghan","version":22,"id":"28616","lastModified":"1301902189000","name":"Laurence de Monaghan","type":"Person","_key":"17415"} +{"label":"Aurora Cornu","version":22,"id":"28617","lastModified":"1301901834000","name":"Aurora Cornu","type":"Person","_key":"17416"} +{"label":"G\u00e9rard Falconetti","version":22,"id":"28618","lastModified":"1301902161000","name":"G\u00e9rard Falconetti","type":"Person","_key":"17417"} +{"label":"A Good Marriage","description":"Sabine vows to give up married lovers, and is determined to find a good husband. Her best friend Clarisse introduces her to her cousin Edmond, a busy lawyer from Paris. Sabine pursues Edmond, with the encouragement of Clarisse, but Edmond does not seem very interested.","id":"2861","runtime":97,"imdbId":"tt0082053","version":69,"lastModified":"1301908189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/188\/4c7a778b7b9aa176bf000188\/le-beau-mariage-mid.jpg","studio":"Les Films du Losange","genre":"Comedy","title":"A Good Marriage","releaseDate":390614400000,"language":"en","type":"Movie","_key":"17418"} +{"label":"Sophie Renoir","version":22,"id":"28627","lastModified":"1301902189000","name":"Sophie Renoir","type":"Person","_key":"17419"} +{"label":"Signale - Ein Weltraumabenteuer","description":"No overview found.","id":"2863","runtime":110,"imdbId":"tt0066379","version":84,"lastModified":"1301906088000","studio":"DEFA","genre":"Science Fiction","title":"Signale - Ein Weltraumabenteuer","releaseDate":30240000000,"language":"en","type":"Movie","_key":"17420"} +{"label":"Stanislaw Dulz","version":17,"id":"28699","lastModified":"1301901623000","name":"Stanislaw Dulz","type":"Person","_key":"17421"} +{"label":"Gerda Eggers-Ebert","version":19,"id":"28700","lastModified":"1301902112000","name":"Gerda Eggers-Ebert","type":"Person","_key":"17422"} +{"label":"Otto Hanisch","version":18,"id":"22581","lastModified":"1301902121000","name":"Otto Hanisch","type":"Person","_key":"17423"} +{"label":"Kurt Marks","version":19,"id":"28701","lastModified":"1301902112000","name":"Kurt Marks","type":"Person","_key":"17424"} +{"label":"Maria Starzenska","version":19,"id":"28702","lastModified":"1301902112000","name":"Maria Starzenska","type":"Person","_key":"17425"} +{"label":"Ahn Dao Pham Huy","version":17,"id":"28705","lastModified":"1301901909000","name":"Ahn Dao Pham Huy","type":"Person","_key":"17426"} +{"label":"Jean Hounsinou","version":19,"id":"28706","lastModified":"1301902112000","name":"Jean Hounsinou","type":"Person","_key":"17427"} +{"label":"Promod Pandey","version":19,"id":"28709","lastModified":"1301901909000","name":"Promod Pandey","type":"Person","_key":"17428"} +{"label":"Irena Karel","version":17,"id":"28710","lastModified":"1301902112000","name":"Irena Karel","type":"Person","_key":"17429"} +{"label":"Piotr Pawlowski","version":17,"id":"28712","lastModified":"1301901982000","name":"Piotr Pawlowski","type":"Person","_key":"17430"} +{"label":"Soheir El-Morshidy","version":17,"id":"28716","lastModified":"1301901805000","name":"Soheir El-Morshidy","type":"Person","_key":"17431"} +{"label":"Alfred M\u00fcller","version":20,"id":"28717","lastModified":"1301902112000","name":"Alfred M\u00fcller","type":"Person","_key":"17432"} +{"label":"Aubrey Pankey","version":17,"id":"28719","lastModified":"1301902112000","name":"Aubrey Pankey","type":"Person","_key":"17433"} +{"label":"Berndt Renn\u00e9","version":19,"id":"28721","lastModified":"1301902112000","name":"Berndt Renn\u00e9","type":"Person","_key":"17434"} +{"label":"Iurie Darie","version":19,"id":"28722","lastModified":"1301902112000","name":"Iurie Darie","type":"Person","_key":"17435"} +{"label":"Zbigniew Sawan","version":19,"id":"28723","lastModified":"1301901746000","name":"Zbigniew Sawan","type":"Person","_key":"17436"} +{"label":"Marianne Christina Schilling","version":19,"id":"28724","lastModified":"1301901909000","name":"Marianne Christina Schilling","type":"Person","_key":"17437"} +{"label":"Ewgeni Sharikow","version":17,"id":"28728","lastModified":"1301901982000","name":"Ewgeni Sharikow","type":"Person","_key":"17438"} +{"label":"Karin Ugowski","version":24,"id":"27370","lastModified":"1301901541000","name":"Karin Ugowski","type":"Person","_key":"17439"} +{"label":"Hunting and Gathering","description":"Camille (Audrey Tautou) works evenings as an office cleaning woman, and makes graceful drawings in her free time, living in the attic of a Parisian apartment block. Philibert (Laurent Stocker) is a young, aristocratic history buff living - temporarily - in an apartment lower down, part of the estate of his late grandmother. He has let out part of it to up and coming cook Franck (Guillaume Canet), ","id":"2882","runtime":97,"imdbId":"tt0792965","homepage":"http:\/\/www.ensemblecesttout-lefilm.com\/site.html","version":124,"lastModified":"1301902437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12d\/4bc917da017a3c57fe00912d\/ensemble-c-est-tout-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"Hunting and Gathering","releaseDate":1174435200000,"language":"en","tagline":"Love might be closer than you think.","type":"Movie","_key":"17440"} +{"label":"Laurent Stocker","version":21,"id":"28675","lastModified":"1301901382000","name":"Laurent Stocker","type":"Person","_key":"17441"} +{"label":"Fran\u00e7oise Bertin","version":23,"id":"28676","lastModified":"1301901623000","name":"Fran\u00e7oise Bertin","type":"Person","_key":"17442"} +{"label":"Dani\u00e8le Lebrun","version":22,"id":"28677","lastModified":"1301901708000","name":"Dani\u00e8le Lebrun","type":"Person","_key":"17443"} +{"label":"Marie-France Mignal","version":22,"id":"28678","lastModified":"1301901382000","name":"Marie-France Mignal","type":"Person","_key":"17444"} +{"label":"B\u00e9atrice Michel","version":21,"id":"28679","lastModified":"1301901823000","name":"B\u00e9atrice Michel","type":"Person","_key":"17445"} +{"label":"Kahena Saighi","version":21,"id":"28680","lastModified":"1301902010000","name":"Kahena Saighi","type":"Person","_key":"17446"} +{"label":"H\u00e9l\u00e8ne Surg\u00e8re","version":32,"id":"28681","lastModified":"1301901574000","name":"H\u00e9l\u00e8ne Surg\u00e8re","type":"Person","_key":"17447"} +{"label":"Juliette Arnaud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cb\/4d753ff55e73d664620000cb\/juliette-arnaud-profile.jpg","version":25,"id":"28682","lastModified":"1301901833000","name":"Juliette Arnaud","type":"Person","_key":"17448"} +{"label":"Michel Dubois","version":21,"id":"28683","lastModified":"1301901812000","name":"Michel Dubois","type":"Person","_key":"17449"} +{"label":"Thierry Mauvoisin","version":18,"id":"28689","lastModified":"1301902112000","name":"Thierry Mauvoisin","type":"Person","_key":"17450"} +{"label":"Kill Bill Collection","description":"The movie is an epic-length revenge drama, with homages to earlier film genres, such as Hong Kong martial arts movies, Japanese samurai movies and Italian spaghetti westerns; an extensive use of popular music and pop culture references; and aestheticization of violence.","id":"2883","version":242,"lastModified":"1301902654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4bc917da017a3c57fe009136\/kill-bill-collection-mid.jpg","title":"Kill Bill Collection","language":"en","type":"Movie","_key":"17451"} +{"label":"And the Band Played On","description":"The story of the discovery of the AIDS epidemic and the political infighting of the scientific community hampering the early fight with it.","id":"2887","runtime":140,"imdbId":"tt0106273","version":110,"lastModified":"1301904396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4c38c6fb5e73d671cf00004a\/and-the-band-played-on-mid.jpg","studio":"HBO Films","genre":"Comedy","title":"And the Band Played On","releaseDate":747705600000,"language":"en","type":"Movie","_key":"17452"} +{"label":"Andr\u00e9 Hazes, zij gelooft in mij","description":"Portrait of the popular Dutch singer Andr\u00e9 Hazes.","id":"2890","runtime":86,"imdbId":"tt0222718","version":37,"lastModified":"1301904270000","genre":"Documentary","title":"Andr\u00e9 Hazes, zij gelooft in mij","releaseDate":948931200000,"language":"en","type":"Movie","_key":"17453"} +{"label":"John Appel","version":20,"id":"28725","lastModified":"1301901661000","name":"John Appel","type":"Person","_key":"17454"} +{"label":"Andr\u00e9 Hazes","version":20,"id":"28729","lastModified":"1301901661000","name":"Andr\u00e9 Hazes","type":"Person","_key":"17455"} +{"label":"Jos Brink","version":20,"id":"28730","lastModified":"1301901661000","name":"Jos Brink","type":"Person","_key":"17456"} +{"label":"Dreetje Hazes","version":20,"id":"28731","lastModified":"1301901794000","name":"Dreetje Hazes","type":"Person","_key":"17457"} +{"label":"Rachel Hazes","version":20,"id":"28732","lastModified":"1301901569000","name":"Rachel Hazes","type":"Person","_key":"17458"} +{"label":"Roxeanne Hazes","version":18,"id":"28733","lastModified":"1301902161000","name":"Roxeanne Hazes","type":"Person","_key":"17459"} +{"label":"An Angel at My Table","description":"Janet Frame grows up in a poor family. She is different than the other kids. She is considered abnormal and locked away in a mental institution for eight years. Everything changes when she starts writing books.","id":"2891","runtime":158,"imdbId":"tt0099040","version":102,"lastModified":"1301904949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4bc917de017a3c57fe00913f\/an-angel-at-my-table-mid.jpg","studio":"Channel Four Films","genre":"Drama","title":"An Angel at My Table","releaseDate":652492800000,"language":"en","type":"Movie","_key":"17460"} +{"label":"Alexia Keogh","version":19,"id":"28735","lastModified":"1301901775000","name":"Alexia Keogh","type":"Person","_key":"17461"} +{"label":"Karen Fergusson","version":19,"id":"28736","lastModified":"1301902137000","name":"Karen Fergusson","type":"Person","_key":"17462"} +{"label":"Iris Churn","version":19,"id":"28737","lastModified":"1301901942000","name":"Iris Churn","type":"Person","_key":"17463"} +{"label":"Jessie Mune","version":19,"id":"28738","lastModified":"1301902137000","name":"Jessie Mune","type":"Person","_key":"17464"} +{"label":"Kevin J. Wilson","version":19,"id":"28739","lastModified":"1301902137000","name":"Kevin J. Wilson","type":"Person","_key":"17465"} +{"label":"Edith Campion","version":17,"id":"28740","lastModified":"1301902167000","name":"Edith Campion","type":"Person","_key":"17466"} +{"label":"Angel Baby","description":"Two schizophrenics meet during therapy and fall in love. Unfortunately they are on a road to nowhere...","id":"2892","runtime":105,"imdbId":"tt0112362","version":66,"lastModified":"1301904046000","studio":"Australian Film Commission","genre":"Drama","title":"Angel Baby","releaseDate":788918400000,"language":"en","type":"Movie","_key":"17467"} +{"label":"Michael Rymer","version":35,"id":"28741","lastModified":"1301901358000","name":"Michael Rymer","type":"Person","_key":"17468"} +{"label":"John Lynch","version":45,"id":"28743","lastModified":"1301901196000","name":"John Lynch","type":"Person","_key":"17469"} +{"label":"Jacqueline McKenzie","version":28,"id":"28744","lastModified":"1301901288000","name":"Jacqueline McKenzie","type":"Person","_key":"17470"} +{"label":"Deborra-Lee Furness","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/484\/4d32d6fe7b9aa177db006484\/deborra-lee-furness-profile.jpg","version":36,"id":"28745","lastModified":"1301901286000","name":"Deborra-Lee Furness","type":"Person","_key":"17471"} +{"label":"Geoff Brooks","version":20,"id":"28746","lastModified":"1301901823000","name":"Geoff Brooks","type":"Person","_key":"17472"} +{"label":"Humphrey Bower","version":20,"id":"28747","lastModified":"1301901971000","name":"Humphrey Bower","type":"Person","_key":"17473"} +{"label":"Alex Pinder","version":17,"id":"28748","lastModified":"1301901982000","name":"Alex Pinder","type":"Person","_key":"17474"} +{"label":"Eolomea","description":"This East German space-travel film depicts the difficulties experienced by intrepid explorers: resistance to new exploration by bureaucrats, confusing instructions from scientists, the lure of the familiar and, of course, the difficulties of the exploration itself. In this film, the planet which might be explored, if the bureaucrats will look the other way for a moment, is called Eolomea","id":"2893","runtime":82,"imdbId":"tt0068542","version":104,"lastModified":"1301905652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/148\/4bc917de017a3c57fe009148\/eolomea-mid.jpg","studio":"DEFA","genre":"Science Fiction","title":"Eolomea","releaseDate":85881600000,"language":"en","type":"Movie","_key":"17475"} +{"label":"Herrmann Zschoche","version":25,"id":"28753","lastModified":"1301901500000","name":"Herrmann Zschoche","type":"Person","_key":"17476"} +{"label":"Cox Habbema","version":22,"id":"27533","lastModified":"1301901623000","name":"Cox Habbema","type":"Person","_key":"17477"} +{"label":"Ivan Andonov","version":18,"id":"28761","lastModified":"1301901982000","name":"Ivan Andonov","type":"Person","_key":"17478"} +{"label":"Holger Mahlich","version":24,"id":"28766","lastModified":"1301901498000","name":"Holger Mahlich","type":"Person","_key":"17479"} +{"label":"Benjamin Besson","version":20,"id":"28762","lastModified":"1301902112000","name":"Benjamin Besson","type":"Person","_key":"17480"} +{"label":"J\u00fcrgen Scharfenberg","version":22,"id":"28771","lastModified":"1301901745000","name":"J\u00fcrgen Scharfenberg","type":"Person","_key":"17481"} +{"label":"Evelyn Opoczynski","version":23,"id":"27048","lastModified":"1301902112000","name":"Evelyn Opoczynski","type":"Person","_key":"17482"} +{"label":"Wolfgang Greese","version":21,"id":"28764","lastModified":"1301901746000","name":"Wolfgang Greese","type":"Person","_key":"17483"} +{"label":"Kurt H\u00f6hne","version":20,"id":"28765","lastModified":"1301901746000","name":"Kurt H\u00f6hne","type":"Person","_key":"17484"} +{"label":"Arndt-Michael Schade","version":20,"id":"28770","lastModified":"1301901745000","name":"Arndt-Michael Schade","type":"Person","_key":"17485"} +{"label":"Harald Wandel","version":20,"id":"28772","lastModified":"1301902112000","name":"Harald Wandel","type":"Person","_key":"17486"} +{"label":"Herbert Dirmoser","version":20,"id":"28763","lastModified":"1301901746000","name":"Herbert Dirmoser","type":"Person","_key":"17487"} +{"label":"The Lady and the Duke","description":"This breathtaking, visually experimental film from New Wave director Eric Rohmer tells the true story of Grace Dalrymple Elliot (Lucy Russell), a British aristocrat trapped in Paris during the French Revolution. Determined to maintain her stiff upper lip and pampered life despite the upheaval, Grace continues her friendship with the Duke of Orl\u00e9ans (Jean-Claude Dreyfus) while risking her life and liberty to protect a fugitive.","id":"2894","runtime":129,"imdbId":"tt0239234","version":103,"lastModified":"1301903899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d3\/4c7a8d537b9aa176be0001d3\/l-anglaise-et-le-duc-mid.jpg","studio":"Compagnie Eric Rohmer","genre":"Comedy","title":"The Lady and the Duke","releaseDate":999820800000,"language":"en","type":"Movie","_key":"17488"} +{"label":"Lucy Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fb\/4cd794015e73d676d10004fb\/lucy-russell-profile.jpg","version":29,"id":"28749","lastModified":"1301901578000","name":"Lucy Russell","type":"Person","_key":"17489"} +{"label":"Rosette","version":24,"id":"29513","lastModified":"1301902189000","name":"Rosette","type":"Person","_key":"17490"} +{"label":"L\u00e9onard Cobiant","version":22,"id":"29514","lastModified":"1301902011000","name":"L\u00e9onard Cobiant","type":"Person","_key":"17491"} +{"label":"Fran\u00e7ois Marthouret","version":28,"id":"25116","lastModified":"1301901794000","name":"Fran\u00e7ois Marthouret","type":"Person","_key":"17492"} +{"label":"Caroline Morin","version":19,"id":"29515","lastModified":"1301902167000","name":"Caroline Morin","type":"Person","_key":"17493"} +{"label":"Serge Renko","version":22,"id":"29516","lastModified":"1301901823000","name":"Serge Renko","type":"Person","_key":"17494"} +{"label":"Eric Viellard","version":24,"id":"29517","lastModified":"1301901569000","name":"Eric Viellard","type":"Person","_key":"17495"} +{"label":"Alain Libolt","version":27,"id":"39349","lastModified":"1301901567000","name":"Alain Libolt","type":"Person","_key":"17496"} +{"label":"The Apostle","description":"After his happy life spins out of control, a preacher from Texas changes his name, goes to Louisiana and starts preaching on the radio.","id":"2895","runtime":134,"imdbId":"tt0118632","version":129,"lastModified":"1301904293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/331\/4c58c6e25e73d63a6d000331\/the-apostle-mid.jpg","studio":"Butcher's Run Productions","genre":"Drama","title":"The Apostle","releaseDate":873504000000,"language":"en","type":"Movie","_key":"17497"} +{"label":"June Carter Cash","version":21,"id":"28767","lastModified":"1301901569000","name":"June Carter Cash","type":"Person","_key":"17498"} +{"label":"Farrah Fawcett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/179\/4c7e7a0a7b9aa10d97000179\/farrah-fawcett-profile.jpg","version":43,"id":"28768","lastModified":"1301901207000","name":"Farrah Fawcett","type":"Person","_key":"17499"} +{"label":"Agitator","description":"When a young Yakuza torments the customers in a rival crime family's nightclub, it is not long before his dead body is found. Soon, inter-family retaliation follows, resulting in the death fo a prominent crime boss. Devastated by htis turn of events, the temperamental Kenzaki vows to avenge his boss's death and, as bloody violence ensues, the body count reaches excessive proportions.","id":"2896","runtime":150,"imdbId":"tt0305240","version":70,"lastModified":"1301907297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/694\/4bf40af3017a3c320d000694\/araburu-tamashii-tachi-mid.jpg","studio":"Daiei Motion Picture","genre":"Crime","title":"Agitator","releaseDate":1017446400000,"language":"en","tagline":"thank you - and - fuck you - brother","type":"Movie","_key":"17500"} +{"label":"Mickey Curtis","version":24,"id":"28776","lastModified":"1301901815000","name":"Mickey Curtis","type":"Person","_key":"17501"} +{"label":"Yoshiyuki Daichi","version":23,"id":"28777","lastModified":"1301904136000","name":"Yoshiyuki Daichi","type":"Person","_key":"17502"} +{"label":"Around the World in Eighty Days","description":"Based on the famous book by Jules Verne the movie follows Phileas Fogg on his journey around the world. Which has to be completed within 80 days, a very short period for those days.","id":"2897","runtime":167,"imdbId":"tt0048960","trailer":"http:\/\/www.youtube.com\/watch?v=SX1ZEvb7Y5w","version":114,"lastModified":"1301902431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/155\/4bc917df017a3c57fe009155\/around-the-world-in-eighty-days-mid.jpg","studio":"Michael Todd Company","genre":"Adventure","title":"Around the World in Eighty Days","releaseDate":-416793600000,"language":"en","type":"Movie","_key":"17503"} +{"label":"Cantinflas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/216\/4c4277df7b9aa14593000216\/cantinflas-profile.jpg","biography":"Fortino Mario Alfonso Moreno Reyes (12 de agosto de 1911 \u2013 20 de abril de 1993), mejor conocido como Cantinflas, fue un actor y comediante mexicano.\n\nGan\u00f3 una enorme popularidad con la interpretaci\u00f3n de su personaje Cantinflas, un hombre salido de los barrios pobres que se origin\u00f3 del t\u00edpico pelado. El personaje se asoci\u00f3 con la identidad nacional de M\u00e9xico y le permiti\u00f3 a Moreno establecer una larga y exitosa carrera cinematogr\u00e1fica que incluy\u00f3 una participaci\u00f3n en Hollywood.","version":74,"birthday":"-1842656400000","id":"29518","birthplace":"Santa Mar\u00eda La Redonda, M\u00e9xico D.F.","lastModified":"1301901306000","name":"Cantinflas","type":"Person","_key":"17504"} +{"label":"Charles Boyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd5\/4bfedbb8017a3c702a000cd5\/charles-boyer-profile.jpg","version":52,"id":"29519","lastModified":"1301901237000","name":"Charles Boyer","type":"Person","_key":"17505"} +{"label":"Robert Newton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/104\/4bd5a15f017a3c2e7d000104\/robert-newton-profile.jpg","biography":"Robert Newton was an English stage and film actor. Along with Errol Flynn, Newton was one of the most popular actors among the male juvenile audience of the 1940s and early 1950s, especially with British boys. He was cited as a role model by actor Tony Hancock and drummer Keith Moon.","version":39,"birthday":"-2037315600000","id":"29520","birthplace":"Shaftesbury, Dorset, England","lastModified":"1301901111000","name":"Robert Newton","type":"Person","_key":"17506"} +{"label":"Gilbert Roland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d9\/4ca9ed2c7b9aa17acb0006d9\/gilbert-roland-profile.jpg","version":41,"id":"29273","lastModified":"1301901472000","name":"Gilbert Roland","type":"Person","_key":"17507"} +{"label":"Tim McCoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/039\/4cb382b87b9aa13456000039\/tim-mccoy-profile.jpg","version":22,"id":"29521","lastModified":"1301901856000","name":"Tim McCoy","type":"Person","_key":"17508"} +{"label":"Melville Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b8\/4be48025017a3c35bf0008b8\/melville-cooper-profile.jpg","version":43,"id":"8730","lastModified":"1301901426000","name":"Melville Cooper","type":"Person","_key":"17509"} +{"label":"Ronald Colman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4c49a7b87b9aa115ff00007c\/ronald-colman-profile.jpg","version":37,"id":"29522","lastModified":"1301901466000","name":"Ronald Colman","type":"Person","_key":"17510"} +{"label":"Martine Carol","version":26,"id":"29523","lastModified":"1301902135000","name":"Martine Carol","type":"Person","_key":"17511"} +{"label":"As Good as It Gets","description":"New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.","id":"2898","runtime":138,"imdbId":"tt0119822","trailer":"http:\/\/www.youtube.com\/watch?v=GMY8iYw-Bwk","version":153,"lastModified":"1301901508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16a\/4bc917e1017a3c57fe00916a\/as-good-as-it-gets-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"As Good as It Gets","releaseDate":882489600000,"language":"en","tagline":"A comedy from the heart that goes for the throat.","type":"Movie","_key":"17512"} +{"label":"Shirley Knight","version":47,"id":"28778","lastModified":"1301901415000","name":"Shirley Knight","type":"Person","_key":"17513"} +{"label":"Lupe Ontiveros","version":32,"id":"28779","lastModified":"1301901833000","name":"Lupe Ontiveros","type":"Person","_key":"17514"} +{"label":"Ast\u00e9rix & Ob\u00e9lix: Mission Cl\u00e9op\u00e2tre","description":"Asterix and Obelix go to Egypt to help build a palace for Cleopatra.","id":"2899","runtime":108,"imdbId":"tt0250223","trailer":"http:\/\/www.youtube.com\/watch?v=XlhihCd6qtw","version":79,"lastModified":"1301902165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/177\/4bc917e5017a3c57fe009177\/asterix-obelix-mission-cleopatre-mid.jpg","studio":"Renn Productions","genre":"Comedy","title":"Ast\u00e9rix & Ob\u00e9lix: Mission Cl\u00e9op\u00e2tre","releaseDate":1016668800000,"language":"en","type":"Movie","_key":"17515"} +{"label":"Christian Clavier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/50f\/4bfad5de017a3c703700050f\/christian-clavier-profile.jpg","version":118,"id":"28781","lastModified":"1301901105000","name":"Christian Clavier","type":"Person","_key":"17516"} +{"label":"G\u00e9rard Darmon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a1\/4bfaddab017a3c702f0006a1\/gerard-darmon-profile.jpg","version":53,"id":"47337","lastModified":"1301901208000","name":"G\u00e9rard Darmon","type":"Person","_key":"17517"} +{"label":"Edouard Baer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/56e\/4d9392455e73d6225100156e\/edouard-baer-profile.jpg","version":37,"id":"41035","lastModified":"1301901446000","name":"Edouard Baer","type":"Person","_key":"17518"} +{"label":"Jean Benguigui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c6\/4d0e1a645e73d6370a0013c6\/jean-benguigui-profile.jpg","version":40,"id":"35899","lastModified":"1301901334000","name":"Jean Benguigui","type":"Person","_key":"17519"} +{"label":"Marina Fo\u00efs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d21\/4d179ae45e73d6082e008d21\/marina-fo-s-profile.jpg","version":64,"id":"76820","lastModified":"1301901120000","name":"Marina Fo\u00efs","type":"Person","_key":"17520"} +{"label":"Chantal Lauby","version":35,"id":"82119","lastModified":"1301901259000","name":"Chantal Lauby","type":"Person","_key":"17521"} +{"label":"The Astronaut's Wife","description":"A NASA astronaut and his wife's lives are propelled into utter dismay upon his return home from a space mission that lost contact with Earth for two minutes. What happened during those frightening 120 seconds in space will effect their marriage, sanity, and ultimately threaten their lives.","id":"2900","runtime":109,"imdbId":"tt0138304","version":111,"lastModified":"1301915125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/180\/4bc917e5017a3c57fe009180\/the-astronaut-s-wife-mid.jpg","studio":"New Line Cinema","genre":"Science Fiction","title":"The Astronaut's Wife","releaseDate":935712000000,"language":"en","type":"Movie","_key":"17522"} +{"label":"Rand Ravich","version":33,"id":"29524","lastModified":"1301901212000","name":"Rand Ravich","type":"Person","_key":"17523"} +{"label":"Atash","description":"No overview found.","id":"2901","runtime":109,"imdbId":"tt0324011","version":52,"lastModified":"1301906757000","genre":"Drama","title":"Atash","releaseDate":979171200000,"language":"en","type":"Movie","_key":"17524"} +{"label":"Sa\u00e2d Chra\u00efbi","version":21,"id":"28783","lastModified":"1301902010000","name":"Sa\u00e2d Chra\u00efbi","type":"Person","_key":"17525"} +{"label":"Abdellah Didane","version":20,"id":"28785","lastModified":"1301902189000","name":"Abdellah Didane","type":"Person","_key":"17526"} +{"label":"Mouna Fettou","version":20,"id":"28786","lastModified":"1301902196000","name":"Mouna Fettou","type":"Person","_key":"17527"} +{"label":"Jean-Michel Noirey","version":33,"id":"28787","lastModified":"1301901422000","name":"Jean-Michel Noirey","type":"Person","_key":"17528"} +{"label":"Louise Lemoine","version":17,"id":"28788","lastModified":"1301901576000","name":"Louise Lemoine","type":"Person","_key":"17529"} +{"label":"Au petit Marguery","description":"No overview found.","id":"2903","runtime":0,"imdbId":"tt0112410","version":33,"lastModified":"1300978203000","title":"Au petit Marguery","releaseDate":815788800000,"language":"en","type":"Movie","_key":"17530"} +{"label":"Laurent B\u00e9n\u00e9gui","version":27,"id":"28791","lastModified":"1301902161000","name":"Laurent B\u00e9n\u00e9gui","type":"Person","_key":"17531"} +{"label":"Alain Beigel","version":20,"id":"28792","lastModified":"1301902189000","name":"Alain Beigel","type":"Person","_key":"17532"} +{"label":"Marie Bunel","version":34,"id":"28793","lastModified":"1301901585000","name":"Marie Bunel","type":"Person","_key":"17533"} +{"label":"Colgado de la luna","description":"No overview found.","id":"2904","runtime":87,"imdbId":"tt1597526","version":53,"lastModified":"1301906649000","genre":"Horror","title":"Colgado de la luna","releaseDate":1130630400000,"language":"en","type":"Movie","_key":"17534"} +{"label":"Gabriel Nieve","version":33,"id":"28317","lastModified":"1301901243000","name":"Gabriel Nieve","type":"Person","_key":"17535"} +{"label":"Ariel Hern\u00e1ndez","version":17,"id":"28803","lastModified":"1301901516000","name":"Ariel Hern\u00e1ndez","type":"Person","_key":"17536"} +{"label":"Julietta Del Sol","version":20,"id":"28804","lastModified":"1301903109000","name":"Julietta Del Sol","type":"Person","_key":"17537"} +{"label":"Guillermo Meza","version":19,"id":"28805","lastModified":"1301901524000","name":"Guillermo Meza","type":"Person","_key":"17538"} +{"label":"Victoria Cardi\u00e9l","version":20,"id":"28806","lastModified":"1301901546000","name":"Victoria Cardi\u00e9l","type":"Person","_key":"17539"} +{"label":"Emilia Nieve","version":25,"id":"28802","lastModified":"1301902161000","name":"Emilia Nieve","type":"Person","_key":"17540"} +{"label":"Joaqu\u00edn Manzanera","version":22,"id":"28807","lastModified":"1301901823000","name":"Joaqu\u00edn Manzanera","type":"Person","_key":"17541"} +{"label":"Greta Champreux","version":27,"id":"28808","lastModified":"1301901448000","name":"Greta Champreux","type":"Person","_key":"17542"} +{"label":"Yo tengo un coraz\u00f3n que quiere hundir mi cuerpo en los mares de ilusi\u00f3n","description":"No overview found.","id":"2905","runtime":107,"version":36,"lastModified":"1301906646000","genre":"Drama","title":"Yo tengo un coraz\u00f3n que quiere hundir mi cuerpo en los mares de ilusi\u00f3n","releaseDate":1134864000000,"language":"en","type":"Movie","_key":"17543"} +{"label":"Franco del Puerto","version":15,"id":"28810","lastModified":"1301901482000","name":"Franco del Puerto","type":"Person","_key":"17544"} +{"label":"Alessandro Gazul","version":15,"id":"28809","lastModified":"1301901482000","name":"Alessandro Gazul","type":"Person","_key":"17545"} +{"label":"Ra\u00fal Jackson","version":15,"id":"28811","lastModified":"1301901482000","name":"Ra\u00fal Jackson","type":"Person","_key":"17546"} +{"label":"Ella Mid\u00f3n","version":15,"id":"28812","lastModified":"1301902119000","name":"Ella Mid\u00f3n","type":"Person","_key":"17547"} +{"label":"Carla Pizzorno","version":16,"id":"28813","lastModified":"1301902189000","name":"Carla Pizzorno","type":"Person","_key":"17548"} +{"label":"Santiago Nogaredo","version":15,"id":"28814","lastModified":"1301902119000","name":"Santiago Nogaredo","type":"Person","_key":"17549"} +{"label":"Amiga de los amores mal entendidos","description":"No overview found.","id":"2906","runtime":52,"imdbId":"tt1650816","version":41,"lastModified":"1301905009000","genre":"Drama","title":"Amiga de los amores mal entendidos","releaseDate":1149292800000,"language":"en","type":"Movie","_key":"17550"} +{"label":"The Addams Family","description":"Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?","id":"2907","runtime":102,"imdbId":"tt0101272","trailer":"http:\/\/www.youtube.com\/watch?v=4t2tdKD9tPs","version":146,"lastModified":"1301902784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/191\/4bc917e7017a3c57fe009191\/the-addams-family-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"The Addams Family","releaseDate":690768000000,"language":"en","tagline":"Weird Is Relative","type":"Movie","_key":"17551"} +{"label":"Elizabeth Wilson","version":30,"id":"10776","lastModified":"1301901453000","name":"Elizabeth Wilson","type":"Person","_key":"17552"} +{"label":"Judith Malina","version":26,"id":"119864","lastModified":"1301902546000","name":"Judith Malina","type":"Person","_key":"17553"} +{"label":"Paul Benedict","version":34,"id":"41243","lastModified":"1302066402000","name":"Paul Benedict","type":"Person","_key":"17554"} +{"label":"Christopher Hart","version":27,"id":"50400","lastModified":"1301901478000","name":"Christopher Hart","type":"Person","_key":"17555"} +{"label":"Jimmy Workman","version":24,"id":"119866","lastModified":"1301902471000","name":"Jimmy Workman","type":"Person","_key":"17556"} +{"label":"John Franklin","version":32,"id":"66986","lastModified":"1301901541000","name":"John Franklin","type":"Person","_key":"17557"} +{"label":"Tony Azito","version":28,"id":"119867","lastModified":"1301902528000","name":"Tony Azito","type":"Person","_key":"17558"} +{"label":"Douglas Brian Martin","version":24,"id":"119868","lastModified":"1301902470000","name":"Douglas Brian Martin","type":"Person","_key":"17559"} +{"label":"Besuch bei Van Gogh","description":"No overview found.","id":"2908","runtime":105,"imdbId":"tt0090714","version":41,"lastModified":"1301907431000","studio":"DEFA","genre":"Science Fiction","title":"Besuch bei Van Gogh","releaseDate":497750400000,"language":"en","type":"Movie","_key":"17560"} +{"label":"Horst Seemann","version":20,"id":"28816","lastModified":"1301901698000","name":"Horst Seemann","type":"Person","_key":"17561"} +{"label":"Dagmar Patrasov\u00e1","version":18,"id":"28817","lastModified":"1301901604000","name":"Dagmar Patrasov\u00e1","type":"Person","_key":"17562"} +{"label":"Hanns-J\u00f6rn Weber","version":17,"id":"28818","lastModified":"1301902179000","name":"Hanns-J\u00f6rn Weber","type":"Person","_key":"17563"} +{"label":"Im Staub der Sterne","description":"A retro '70s vision of the future, IN THE DUST OF THE STARS was made by the DEFA film studio. A radio signal attracts a team of astronauts to a mysterious planet. Once there, they are warmly welcomed by an alien race, but are soon suspicious of what is really occurring on this strange land.","id":"2909","runtime":98,"imdbId":"tt0074671","version":62,"lastModified":"1301904243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19a\/4bc917e8017a3c57fe00919a\/im-staub-der-sterne-mid.jpg","studio":"DEFA","genre":"Science Fiction","title":"Im Staub der Sterne","releaseDate":205027200000,"language":"en","type":"Movie","_key":"17564"} +{"label":"Sigrid Meyer","version":20,"id":"28823","lastModified":"1301902112000","name":"Sigrid Meyer","type":"Person","_key":"17565"} +{"label":"Zephi Alsec","version":18,"id":"28824","lastModified":"1301902112000","name":"Zephi Alsec","type":"Person","_key":"17566"} +{"label":"Violeta Andrei","version":18,"id":"28825","lastModified":"1301902192000","name":"Violeta Andrei","type":"Person","_key":"17567"} +{"label":"Milan Beli","version":20,"id":"28826","lastModified":"1301902112000","name":"Milan Beli","type":"Person","_key":"17568"} +{"label":"Stefan Mihailescu-Braila","version":18,"id":"28827","lastModified":"1301902193000","name":"Stefan Mihailescu-Braila","type":"Person","_key":"17569"} +{"label":"Jana Brejchov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/90a\/4ca2f1ce5e73d67b5f00090a\/jana-brejchova-profile.jpg","version":21,"id":"28828","lastModified":"1301901428000","name":"Jana Brejchov\u00e1","type":"Person","_key":"17570"} +{"label":"Aurelia Dumitrescu","version":20,"id":"28829","lastModified":"1301902112000","name":"Aurelia Dumitrescu","type":"Person","_key":"17571"} +{"label":"Dorin Ganea","version":16,"id":"28830","lastModified":"1301902112000","name":"Dorin Ganea","type":"Person","_key":"17572"} +{"label":"Regine Heintze","version":20,"id":"28831","lastModified":"1301902173000","name":"Regine Heintze","type":"Person","_key":"17573"} +{"label":"Hans-Ulrich Lauffer","version":16,"id":"28832","lastModified":"1301902112000","name":"Hans-Ulrich Lauffer","type":"Person","_key":"17574"} +{"label":"Mihai Mereuta","version":18,"id":"28833","lastModified":"1301902193000","name":"Mihai Mereuta","type":"Person","_key":"17575"} +{"label":"Leon Niemczyk","version":26,"id":"28834","lastModified":"1301901600000","name":"Leon Niemczyk","type":"Person","_key":"17576"} +{"label":"Silvia Popovici","version":18,"id":"28835","lastModified":"1301901825000","name":"Silvia Popovici","type":"Person","_key":"17577"} +{"label":"Ekkehard Schall","version":21,"id":"28838","lastModified":"1301902189000","name":"Ekkehard Schall","type":"Person","_key":"17578"} +{"label":"Carlo Schmidt","version":22,"id":"28836","lastModified":"1301902112000","name":"Carlo Schmidt","type":"Person","_key":"17579"} +{"label":"Alfred Struwe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/262\/4bec6b5d017a3c37ac000262\/alfred-struwe-profile.jpg","version":20,"id":"118431","lastModified":"1301902923000","name":"Alfred Struwe","type":"Person","_key":"17580"} +{"label":"The Last Drop","description":"Different factions in WWII-era Holland race to find a stash of Nazi gold.","id":"2911","runtime":103,"imdbId":"tt0398029","version":122,"lastModified":"1301904800000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a3\/4bc917e9017a3c57fe0091a3\/the-last-drop-mid.jpg","studio":"Carnaby Films","genre":"Action","title":"The Last Drop","releaseDate":1116806400000,"language":"en","type":"Movie","_key":"17581"} +{"label":"Colin Teague","version":22,"id":"28839","lastModified":"1301901443000","name":"Colin Teague","type":"Person","_key":"17582"} +{"label":"Alexander Skarsg\u00e5rd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/869\/4cfa93225e73d6299a002869\/alexander-skarsgard-profile.jpg","version":32,"id":"28846","lastModified":"1301901152000","name":"Alexander Skarsg\u00e5rd","type":"Person","_key":"17583"} +{"label":"Rafe Spall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/003\/4c9386bb7b9aa10d5c000003\/rafe-spall-profile.jpg","version":36,"id":"28847","lastModified":"1301901121000","name":"Rafe Spall","type":"Person","_key":"17584"} +{"label":"Sean Pertwee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bbd\/4cf13d085e73d61928000bbd\/sean-pertwee-profile.jpg","version":55,"id":"28848","lastModified":"1301901121000","name":"Sean Pertwee","type":"Person","_key":"17585"} +{"label":"Todd Spangler","version":19,"id":"28849","lastModified":"1301901919000","name":"Todd Spangler","type":"Person","_key":"17586"} +{"label":"Dave Evans","version":19,"id":"28850","lastModified":"1301901919000","name":"Dave Evans","type":"Person","_key":"17587"} +{"label":"Lauretta Lewis","version":20,"id":"28851","lastModified":"1301902010000","name":"Lauretta Lewis","type":"Person","_key":"17588"} +{"label":"John White Abbott","version":19,"id":"28852","lastModified":"1301901919000","name":"John White Abbott","type":"Person","_key":"17589"} +{"label":"Anton Rodgers","version":35,"id":"28853","lastModified":"1301901657000","name":"Anton Rodgers","type":"Person","_key":"17590"} +{"label":"Aoife Madden","version":19,"id":"28854","lastModified":"1301901919000","name":"Aoife Madden","type":"Person","_key":"17591"} +{"label":"Justin Thomson","version":19,"id":"28855","lastModified":"1301902119000","name":"Justin Thomson","type":"Person","_key":"17592"} +{"label":"Jack Dee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/332\/4cf1cb865e73d61e3c000332\/jack-dee-profile.jpg","version":23,"birthday":"-229482000000","id":"28856","birthplace":"Petts Wood, London, UK","lastModified":"1301901490000","name":"Jack Dee","type":"Person","_key":"17593"} +{"label":"The Butcher","description":"An unlikely friendship between a dour, working class butcher and a repressed schoolteacher coincides with a grisly series of Ripper-type murders in a provincial French town.","id":"2912","runtime":90,"imdbId":"tt0064106","version":104,"lastModified":"1301904046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ac\/4bc917ea017a3c57fe0091ac\/le-boucher-mid.jpg","studio":"Les Films de la Bo\u00e9tie","genre":"Thriller","title":"The Butcher","releaseDate":4924800000,"language":"en","type":"Movie","_key":"17594"} +{"label":"Antonio Passalia","version":22,"id":"28859","lastModified":"1301902014000","name":"Antonio Passalia","type":"Person","_key":"17595"} +{"label":"Roger Rudel","version":22,"id":"28860","lastModified":"1301902023000","name":"Roger Rudel","type":"Person","_key":"17596"} +{"label":"Mario Beccara","version":22,"id":"28861","lastModified":"1301902197000","name":"Mario Beccara","type":"Person","_key":"17597"} +{"label":"Chemie und Liebe","description":"No overview found.","id":"2914","runtime":98,"imdbId":"tt0236097","version":56,"lastModified":"1301908348000","studio":"DEFA","genre":"Science Fiction","title":"Chemie und Liebe","releaseDate":-681177600000,"language":"en","type":"Movie","_key":"17598"} +{"label":"Arthur Maria Rabenalt","version":26,"id":"29148","lastModified":"1301901909000","name":"Arthur Maria Rabenalt","type":"Person","_key":"17599"} +{"label":"Alfred Braun","version":21,"id":"28878","lastModified":"1301901786000","name":"Alfred Braun","type":"Person","_key":"17600"} +{"label":"Gisela Deege","version":19,"id":"28879","lastModified":"1301901478000","name":"Gisela Deege","type":"Person","_key":"17601"} +{"label":"Arno Ebert","version":19,"id":"28880","lastModified":"1301901828000","name":"Arno Ebert","type":"Person","_key":"17602"} +{"label":"Ann H\u00f6ling","version":17,"id":"28882","lastModified":"1301902192000","name":"Ann H\u00f6ling","type":"Person","_key":"17603"} +{"label":"Eugen Klinger","version":19,"id":"28883","lastModified":"1301902112000","name":"Eugen Klinger","type":"Person","_key":"17604"} +{"label":"Ralph Lothar","version":19,"id":"28884","lastModified":"1301902112000","name":"Ralph Lothar","type":"Person","_key":"17605"} +{"label":"Eduard Matzig","version":17,"id":"28885","lastModified":"1301902194000","name":"Eduard Matzig","type":"Person","_key":"17606"} +{"label":"Hans Nielsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42a\/4ca098ff5e73d67b5f00042a\/hans-nielsen-profile.jpg","version":25,"id":"28886","lastModified":"1301902196000","name":"Hans Nielsen","type":"Person","_key":"17607"} +{"label":"Anneliese Rausch","version":19,"id":"28887","lastModified":"1301902112000","name":"Anneliese Rausch","type":"Person","_key":"17608"} +{"label":"Ye Chong Yin","version":19,"id":"28888","lastModified":"1301902112000","name":"Ye Chong Yin","type":"Person","_key":"17609"} +{"label":"Gerd Frickh\u00f6ffer","version":28,"id":"37914","lastModified":"1301901797000","name":"Gerd Frickh\u00f6ffer","type":"Person","_key":"17610"} +{"label":"Baby Blue","description":"No overview found.","id":"2922","runtime":119,"imdbId":"tt0252253","version":146,"lastModified":"1301905081000","studio":"Shooting Star Filmcompany BV","genre":"Thriller","title":"Baby Blue","releaseDate":980380800000,"language":"en","type":"Movie","_key":"17611"} +{"label":"Theo van Gogh","version":24,"id":"28889","lastModified":"1301901499000","name":"Theo van Gogh","type":"Person","_key":"17612"} +{"label":"Roeland Fernhout","version":22,"id":"28892","lastModified":"1301901971000","name":"Roeland Fernhout","type":"Person","_key":"17613"} +{"label":"Nienke R\u00f6mer","version":20,"id":"28893","lastModified":"1301902189000","name":"Nienke R\u00f6mer","type":"Person","_key":"17614"} +{"label":"Ren\u00e9e Fokker","version":23,"id":"28894","lastModified":"1301901674000","name":"Ren\u00e9e Fokker","type":"Person","_key":"17615"} +{"label":"Jack Wouterse","version":31,"id":"28896","lastModified":"1301901794000","name":"Jack Wouterse","type":"Person","_key":"17616"} +{"label":"Najib Amhali","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/802\/4cbf7fb27b9aa138d9001802\/najib-amhali-profile.jpg","version":37,"birthday":"39567600000","id":"78800","birthplace":"Nador","lastModified":"1301901714000","name":"Najib Amhali","type":"Person","_key":"17617"} +{"label":"B. Monkey","description":"Alan (Jared Harris) is a schoolteacher in London who also moonlights as a jazz disc jockey for a hosptial PA system. One night after work, he goes to a bar and sees Beatrice (Asia Argento), a beautiful woman who is arguing with two men. Alan is immediately captivated by Beatrice and begins to pursue her. What Alan doesn't know is that Beatrice is an infamous thief known to the police as \"B. Monkey\" (named for her ability to break into anything), and the men she was arguing with were Paul (Rupert","id":"2923","runtime":94,"imdbId":"tt0120594","version":126,"lastModified":"1301903486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b5\/4bc917ed017a3c57fe0091b5\/b-monkey-mid.jpg","studio":"Synchronistic Pictures","genre":"Thriller","title":"B. Monkey","releaseDate":910396800000,"language":"en","type":"Movie","_key":"17618"} +{"label":"Julie T. Wallace","version":22,"id":"28897","lastModified":"1301902203000","name":"Julie T. Wallace","type":"Person","_key":"17619"} +{"label":"Michael Radford","version":45,"id":"28898","lastModified":"1301901504000","name":"Michael Radford","type":"Person","_key":"17620"} +{"label":"Backdraft","description":"They say a blast of flames can take a life ... and hide a secret. But now firemen brothers Brian and Stephen McCaffrey are battling each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.","id":"2924","runtime":132,"imdbId":"tt0101393","version":541,"lastModified":"1301911424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33c\/4cb1c5567b9aa1263f00033c\/backdraft-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Backdraft","releaseDate":675043200000,"language":"en","tagline":"Silently behind a door, it waits.","type":"Movie","_key":"17621"} +{"label":"The First Wives Club","description":"Erstwhile college chums Elise, Annie and Brenda reunite for the funeral of a friend who committed suicide after her husband traded her in for a hot new model -- only to realize they're all in the same predicament. With help from an interior decorator, a socialite, Annie's daughter and a mafioso, they form a troika and plot payback against their two-timing exes with delicious results.","id":"2925","runtime":103,"imdbId":"tt0116313","version":148,"lastModified":"1301903734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cf\/4bc917ef017a3c57fe0091cf\/the-first-wives-club-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The First Wives Club","releaseDate":820454400000,"language":"en","tagline":"Don't get mad. Get everything.","type":"Movie","_key":"17622"} +{"label":"Hugh Wilson","version":65,"id":"28904","lastModified":"1301957226000","name":"Hugh Wilson","type":"Person","_key":"17623"} +{"label":"Bette Midler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8db\/4cda0f5d5e73d676cd0008db\/bette-midler-profile.jpg","biography":"Bette Midler is an American singer, actress and comedian, also known (by her informal stage name) as The Divine Miss M. She has starred in live-action films such as Ruthless People, Beaches and Hocus Pocus, as well as featuring in animated films such as Oliver & Company and Fantasia 2000.\n\nDuring her more than forty-year career, Midler has been nominated for two Academy Awards; and won four Grammy Awards, four Golden Globes, three Emmy Awards, and a special Tony Award. She has also sold over","version":88,"birthday":"-760064400000","id":"73931","birthplace":"Honolulu, Hawaii, U.S","lastModified":"1302037082000","name":"Bette Midler","type":"Person","_key":"17624"} +{"label":"Ivana Trump","version":22,"id":"28907","lastModified":"1301902010000","name":"Ivana Trump","type":"Person","_key":"17625"} +{"label":"The Three Musketeers","description":"The young D'Artagnan arrives in Paris with dreams of becoming a king's musketeer. He meets and quarrels with three men, Athos, Porthos, and Aramis, each of whom challenges him to a duel. D'Artagnan finds out they are musketeers and is invited to join them in their efforts to oppose Cardinal Richelieu, who wishes to increase his already considerable power over the king. D'Artagnan must also juggle affairs with the charming Constance Bonancieux and the passionate Lady De Winter, a secret agent for","id":"2926","runtime":105,"imdbId":"tt0072281","version":138,"lastModified":"1301902887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e4\/4ccc62285e73d650220007e4\/the-three-musketeers-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Three Musketeers","releaseDate":124416000000,"language":"en","type":"Movie","_key":"17626"} +{"label":"Richard Chamberlain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b2\/4c9e38b95e73d670490001b2\/richard-chamberlain-profile.jpg","version":48,"id":"28906","lastModified":"1301901102000","name":"Richard Chamberlain","type":"Person","_key":"17627"} +{"label":"Spike Milligan","version":21,"id":"29539","lastModified":"1301902112000","name":"Spike Milligan","type":"Person","_key":"17628"} +{"label":"Simon Ward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bf\/4d3364635e73d633560021bf\/simon-ward-profile.jpg","version":28,"id":"29540","lastModified":"1301901142000","name":"Simon Ward","type":"Person","_key":"17629"} +{"label":"Moon 44","description":"In 2038, at a remote outpost on Moon 44, Galactic Mining Corp. agent Felix Stone (Michael Par\u00e9) embarks on a dangerous mission to stop the hijacking of precious natural resources needed on Earth. To do so, he must battle a familiar foe and an alien enemy. Malcolm McDowell, Lisa Eichhorn and Dean Devlin star in this sci-fi thriller from action director Roland Emmerich (Independence Day).","id":"2927","runtime":102,"imdbId":"tt0097910","version":157,"lastModified":"1301906088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f6\/4bd60950017a3c658a0000f6\/moon-44-mid.jpg","studio":"Centropolis Film Productions","genre":"Science Fiction","title":"Moon 44","releaseDate":635040000000,"language":"en","tagline":"In the outer zone... you need a friend","type":"Movie","_key":"17630"} +{"label":"Michael Par\u00e9","version":65,"id":"60650","lastModified":"1301901202000","name":"Michael Par\u00e9","type":"Person","_key":"17631"} +{"label":"Dean Devlin","version":97,"id":"8676","lastModified":"1302059644000","name":"Dean Devlin","type":"Person","_key":"17632"} +{"label":"Mehmet Yilmaz","version":23,"id":"28951","lastModified":"1301901745000","name":"Mehmet Yilmaz","type":"Person","_key":"17633"} +{"label":"John March","version":22,"id":"28952","lastModified":"1301901909000","name":"John March","type":"Person","_key":"17634"} +{"label":"Drew Lucas","version":22,"id":"28953","lastModified":"1301901745000","name":"Drew Lucas","type":"Person","_key":"17635"} +{"label":"David Williamson","version":30,"id":"28954","lastModified":"1301901666000","name":"David Williamson","type":"Person","_key":"17636"} +{"label":"Calvin Burke","version":22,"id":"28955","lastModified":"1301901745000","name":"Calvin Burke","type":"Person","_key":"17637"} +{"label":"Andy Howarth","version":22,"id":"28956","lastModified":"1301901745000","name":"Andy Howarth","type":"Person","_key":"17638"} +{"label":"William Begatie","version":22,"id":"28957","lastModified":"1301901909000","name":"William Begatie","type":"Person","_key":"17639"} +{"label":"Bernhard Bolden","version":22,"id":"28958","lastModified":"1301902112000","name":"Bernhard Bolden","type":"Person","_key":"17640"} +{"label":"Michael Antoniou","version":22,"id":"28959","lastModified":"1301901909000","name":"Michael Antoniou","type":"Person","_key":"17641"} +{"label":"Bernhard Nickel","version":22,"id":"28960","lastModified":"1301902112000","name":"Bernhard Nickel","type":"Person","_key":"17642"} +{"label":"Thomas Nickel","version":22,"id":"28961","lastModified":"1301901745000","name":"Thomas Nickel","type":"Person","_key":"17643"} +{"label":"Frederic Mills","version":22,"id":"28962","lastModified":"1301901745000","name":"Frederic Mills","type":"Person","_key":"17644"} +{"label":"Michael","description":"Tabloid reporters are sent by their editor to investigate after the paper recieves a letter from a woman claiming an angel is living with her.","id":"2928","runtime":105,"imdbId":"tt0117038","version":151,"lastModified":"1301903887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dc\/4bc917f0017a3c57fe0091dc\/michael-mid.jpg","studio":"Alphaville Films","genre":"Comedy","title":"Michael","releaseDate":840499200000,"language":"en","type":"Movie","_key":"17645"} +{"label":"Jean Stapleton","version":23,"id":"28933","lastModified":"1301901971000","name":"Jean Stapleton","type":"Person","_key":"17646"} +{"label":"Frankenstein","description":"Frankenstein, a young medical student, trying to create the perfect human being, instead creates a misshapen monster. Made ill by what he has done, Frankenstein is comforted by his fianc\u00e9e but on his wedding night he is visited by the monster. A fight ensues but the monster, seeing himself in a mirror, is horrified and runs away. He later returns, entering the bride's room, and finds her alone...","id":"2929","runtime":13,"imdbId":"tt0001223","version":82,"lastModified":"1301905966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ef\/4bc917f2017a3c57fe0091ef\/frankenstein-mid.jpg","studio":"Edison Studios","genre":"Horror","title":"Frankenstein","releaseDate":-1886889600000,"language":"en","type":"Movie","_key":"17647"} +{"label":"J. Searle Dawley","version":22,"id":"28968","lastModified":"1301901572000","name":"J. Searle Dawley","type":"Person","_key":"17648"} +{"label":"Mary Fuller","version":20,"id":"28972","lastModified":"1301901822000","name":"Mary Fuller","type":"Person","_key":"17649"} +{"label":"Charles Ogle","version":21,"id":"28971","lastModified":"1301901815000","name":"Charles Ogle","type":"Person","_key":"17650"} +{"label":"Augustus Phillips","version":17,"id":"28973","lastModified":"1301901829000","name":"Augustus Phillips","type":"Person","_key":"17651"} +{"label":"Homunculus","description":"No overview found.","id":"2955","title":"Homunculus","language":"en","lastModified":"1301906715000","version":32,"type":"Movie","_key":"17652"} +{"label":"Homunculus","description":"No overview found.","id":"2956","runtime":69,"imdbId":"tt0006820","version":64,"lastModified":"1300978206000","studio":"Decla Bioscop AG","genre":"Horror","title":"Homunculus","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17653"} +{"label":"Otto Rippert","version":31,"id":"29022","lastModified":"1301901500000","name":"Otto Rippert","type":"Person","_key":"17654"} +{"label":"Fern Andra","version":20,"id":"28984","lastModified":"1301901690000","name":"Fern Andra","type":"Person","_key":"17655"} +{"label":"Josef Bunzl","version":20,"id":"28986","lastModified":"1301902199000","name":"Josef Bunzl","type":"Person","_key":"17656"} +{"label":"Maria Carmi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4c2365d07b9aa13f6400004e\/maria-carmi-profile.jpg","version":21,"id":"28987","lastModified":"1301901586000","name":"Maria Carmi","type":"Person","_key":"17657"} +{"label":"Aud Egede Nissen","version":31,"id":"28988","lastModified":"1301901662000","name":"Aud Egede Nissen","type":"Person","_key":"17658"} +{"label":"Lia Borr\u00e9","version":20,"id":"28990","lastModified":"1301901836000","name":"Lia Borr\u00e9","type":"Person","_key":"17659"} +{"label":"Olaf F\u00f8nss","version":25,"id":"28991","lastModified":"1301901680000","name":"Olaf F\u00f8nss","type":"Person","_key":"17660"} +{"label":"Friedrich K\u00fchne","version":27,"id":"28992","lastModified":"1301901569000","name":"Friedrich K\u00fchne","type":"Person","_key":"17661"} +{"label":"Ernst Ludwig","version":20,"id":"28993","lastModified":"1301901794000","name":"Ernst Ludwig","type":"Person","_key":"17662"} +{"label":"Adolf Paul","version":25,"id":"28994","lastModified":"1301902204000","name":"Adolf Paul","type":"Person","_key":"17663"} +{"label":"Albert Paul","version":20,"id":"28995","lastModified":"1301901794000","name":"Albert Paul","type":"Person","_key":"17664"} +{"label":"Max Ruhbeck","version":21,"id":"28997","lastModified":"1301901588000","name":"Max Ruhbeck","type":"Person","_key":"17665"} +{"label":"Mechthildis Thein","version":25,"id":"28998","lastModified":"1301901971000","name":"Mechthildis Thein","type":"Person","_key":"17666"} +{"label":"Lupu Pick","version":20,"id":"28996","lastModified":"1301901794000","name":"Lupu Pick","type":"Person","_key":"17667"} +{"label":"Lore R\u00fcckert","version":25,"id":"29004","lastModified":"1301901971000","name":"Lore R\u00fcckert","type":"Person","_key":"17668"} +{"label":"Das geheimnisvolle Buch","description":"No overview found.","id":"2957","runtime":75,"imdbId":"tt0130001","version":46,"lastModified":"1301906758000","studio":"Decla Bioscop AG","genre":"Horror","title":"Das geheimnisvolle Buch","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17669"} +{"label":"Ernst Benzinger","version":20,"id":"28999","lastModified":"1301902161000","name":"Ernst Benzinger","type":"Person","_key":"17670"} +{"label":"Einar Bruun","version":20,"id":"29000","lastModified":"1301902161000","name":"Einar Bruun","type":"Person","_key":"17671"} +{"label":"Margarete Ferida","version":20,"id":"29001","lastModified":"1301902161000","name":"Margarete Ferida","type":"Person","_key":"17672"} +{"label":"Nelly Lagarst","version":20,"id":"29003","lastModified":"1301902161000","name":"Nelly Lagarst","type":"Person","_key":"17673"} +{"label":"Die Liebestrag\u00f6die des Homunculus","description":"No overview found.","id":"2958","runtime":64,"imdbId":"tt0130002","version":46,"lastModified":"1301421347000","studio":"Decla Bioscop AG","genre":"Horror","title":"Die Liebestrag\u00f6die des Homunculus","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17674"} +{"label":"Ilsa Lersen","version":20,"id":"29005","lastModified":"1301902189000","name":"Ilsa Lersen","type":"Person","_key":"17675"} +{"label":"Erna Thiele","version":20,"id":"29006","lastModified":"1301902189000","name":"Erna Thiele","type":"Person","_key":"17676"} +{"label":"Hedwig Wiese","version":20,"id":"29007","lastModified":"1301902198000","name":"Hedwig Wiese","type":"Person","_key":"17677"} +{"label":"Walter Wolffgram","version":20,"id":"29008","lastModified":"1301902189000","name":"Walter Wolffgram","type":"Person","_key":"17678"} +{"label":"License To Wed","description":"Newly engaged, Ben and Sadie can't wait to start their life together and live happily ever after. However Sadie's family church's Reverend Frank won't bless their union until they pass his patented, \"foolproof\" marriage prep course consisting of outrageous classes, outlandish homework assignments and some outright invasion of privacy. ","id":"2959","runtime":90,"imdbId":"tt0762114","trailer":"http:\/\/www.youtube.com\/watch?v=195","homepage":"http:\/\/licensetowedthemovie.warnerbros.com\/","version":215,"lastModified":"1301902207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4bc917f7017a3c57fe009215\/license-to-wed-mid.jpg","studio":"Phoenix Pictures","genre":"Comedy","title":"License To Wed","releaseDate":1182729600000,"language":"en","tagline":"First came love... then came Reverend Frank.","type":"Movie","_key":"17679"} +{"label":"Ken Kwapis","version":41,"id":"29009","lastModified":"1301901331000","name":"Ken Kwapis","type":"Person","_key":"17680"} +{"label":"John Krasinski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/368\/4c7a25dd5e73d613d4000368\/john-krasinski-profile.jpg","version":64,"birthday":"309222000000","id":"17697","birthplace":"Boston, Massachusetts, USA","lastModified":"1301901131000","name":"John Krasinski","type":"Person","_key":"17681"} +{"label":"Eric Christian Olsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30a\/4bed003e017a3c37a500030a\/eric-christian-olsen-profile.jpg","version":56,"id":"29020","lastModified":"1302037844000","name":"Eric Christian Olsen","type":"Person","_key":"17682"} +{"label":"Christine Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f5\/4bfc7b2d017a3c702a0007f5\/christine-taylor-profile.jpg","version":64,"id":"15286","lastModified":"1302060441000","name":"Christine Taylor","type":"Person","_key":"17683"} +{"label":"Roxanne Hart","version":39,"id":"29021","lastModified":"1301901347000","name":"Roxanne Hart","type":"Person","_key":"17684"} +{"label":"Die Rache des Homunculus","description":"No overview found.","id":"2960","runtime":68,"imdbId":"tt0007240","version":40,"lastModified":"1301421347000","studio":"Decla Bioscop AG","genre":"Horror","title":"Die Rache des Homunculus","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17685"} +{"label":"Die Vernichtung der Menschheit","description":"No overview found.","id":"2961","runtime":52,"imdbId":"tt0130004","version":43,"lastModified":"1301417780000","studio":"Decla Bioscop AG","genre":"Horror","title":"Die Vernichtung der Menschheit","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17686"} +{"label":"Maria Immhofen","version":20,"id":"29024","lastModified":"1301901971000","name":"Maria Immhofen","type":"Person","_key":"17687"} +{"label":"Fritz Steidel","version":20,"id":"29025","lastModified":"1301901971000","name":"Fritz Steidel","type":"Person","_key":"17688"} +{"label":"Das Ende des Homunculus","description":"No overview found.","id":"2962","runtime":59,"imdbId":"tt0130005","version":44,"lastModified":"1301908616000","studio":"Decla Bioscop AG","genre":"Horror","title":"Das Ende des Homunculus","releaseDate":-1704153600000,"language":"en","type":"Movie","_key":"17689"} +{"label":"Robert Reinert Jr.","version":20,"id":"29026","lastModified":"1301902201000","name":"Robert Reinert Jr.","type":"Person","_key":"17690"} +{"label":"Thea Sandten","version":20,"id":"29027","lastModified":"1301902201000","name":"Thea Sandten","type":"Person","_key":"17691"} +{"label":"Le Voyage \u00e0 travers l'impossible","description":"No overview found.","id":"2963","runtime":24,"imdbId":"tt0000499","version":40,"lastModified":"1301906562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27a\/4d512f687b9aa13ab801027a\/le-voyage-travers-l-impossible-mid.jpg","genre":"Science Fiction","title":"Le Voyage \u00e0 travers l'impossible","releaseDate":-2059171200000,"language":"en","type":"Movie","_key":"17692"} +{"label":"Himmelskibet","description":"No overview found.","id":"2964","runtime":97,"imdbId":"tt0008100","version":65,"lastModified":"1301905723000","studio":"Nordisk Film","genre":"Science Fiction","title":"Himmelskibet","releaseDate":-1640995200000,"language":"en","type":"Movie","_key":"17693"} +{"label":"Holger-Madsen","version":18,"id":"29029","lastModified":"1301902164000","name":"Holger-Madsen","type":"Person","_key":"17694"} +{"label":"Nils Asther","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47c\/4c59a0b57b9aa151f300047c\/nils-asther-profile.jpg","version":27,"id":"29036","lastModified":"1301901533000","name":"Nils Asther","type":"Person","_key":"17695"} +{"label":"Philip Bech","version":20,"id":"29037","lastModified":"1301902189000","name":"Philip Bech","type":"Person","_key":"17696"} +{"label":"Alf Blutecher","version":20,"id":"29038","lastModified":"1301902164000","name":"Alf Blutecher","type":"Person","_key":"17697"} +{"label":"Frederik Jacobsen","version":20,"id":"29039","lastModified":"1301901976000","name":"Frederik Jacobsen","type":"Person","_key":"17698"} +{"label":"Lilly Jacobson","version":17,"id":"29040","lastModified":"1301901814000","name":"Lilly Jacobson","type":"Person","_key":"17699"} +{"label":"Svend Kornbech","version":20,"id":"29041","lastModified":"1301901799000","name":"Svend Kornbech","type":"Person","_key":"17700"} +{"label":"Nicolai Neiiendam","version":17,"id":"29042","lastModified":"1301901814000","name":"Nicolai Neiiendam","type":"Person","_key":"17701"} +{"label":"Alfred Osmund","version":20,"id":"29043","lastModified":"1301901799000","name":"Alfred Osmund","type":"Person","_key":"17702"} +{"label":"Zanny Petersen","version":20,"id":"29044","lastModified":"1301901799000","name":"Zanny Petersen","type":"Person","_key":"17703"} +{"label":"Gunnar Toln\u00e6s","version":17,"id":"29045","lastModified":"1301901814000","name":"Gunnar Toln\u00e6s","type":"Person","_key":"17704"} +{"label":"20.000 Leagues Under the Sea","description":"No overview found.","id":"2965","runtime":95,"imdbId":"tt0118247","version":96,"lastModified":"1301907725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/812\/4c5c819e7b9aa151f6000812\/20-000-leagues-under-the-sea-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Adventure","title":"20.000 Leagues Under the Sea","releaseDate":859075200000,"language":"en","type":"Movie","_key":"17705"} +{"label":"Ben Cross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1be\/4bd74c35017a3c21ea0001be\/ben-cross-profile.jpg","version":62,"id":"29068","lastModified":"1301901087000","name":"Ben Cross","type":"Person","_key":"17706"} +{"label":"Michael Jayston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/304\/4ca4ecf75e73d636fb000304\/michael-jayston-profile.jpg","version":27,"id":"29069","lastModified":"1301901661000","name":"Michael Jayston","type":"Person","_key":"17707"} +{"label":"Jeff Harding","version":24,"id":"29071","lastModified":"1301901794000","name":"Jeff Harding","type":"Person","_key":"17708"} +{"label":"David Henry","version":20,"id":"29072","lastModified":"1301902189000","name":"David Henry","type":"Person","_key":"17709"} +{"label":"James Vaughan","version":20,"id":"29073","lastModified":"1301902189000","name":"James Vaughan","type":"Person","_key":"17710"} +{"label":"Susannah Fellows","version":20,"id":"29075","lastModified":"1301902160000","name":"Susannah Fellows","type":"Person","_key":"17711"} +{"label":"Joshua Brody","version":20,"id":"29076","lastModified":"1301902160000","name":"Joshua Brody","type":"Person","_key":"17712"} +{"label":"Phillip Van Dyke","version":19,"id":"29077","lastModified":"1301901855000","name":"Phillip Van Dyke","type":"Person","_key":"17713"} +{"label":"Paul Gross","version":38,"id":"84021","lastModified":"1301902055000","name":"Paul Gross","type":"Person","_key":"17714"} +{"label":"20.000 Leagues Under the Sea","description":"No overview found.","id":"2966","runtime":158,"imdbId":"tt0118248","version":85,"lastModified":"1301825316000","genre":"Adventure","title":"20.000 Leagues Under the Sea","releaseDate":863308800000,"language":"en","type":"Movie","_key":"17715"} +{"label":"Rod Hardy","version":25,"id":"29078","lastModified":"1301901420000","name":"Rod Hardy","type":"Person","_key":"17716"} +{"label":"Mia Sara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a5\/4c5aa4e85e73d63a710005a5\/mia-sara-profile.jpg","version":32,"id":"29091","lastModified":"1301901146000","name":"Mia Sara","type":"Person","_key":"17717"} +{"label":"Bryan Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b81\/4c0be98a017a3c33d9000b81\/bryan-brown-profile.jpg","biography":"Bryan Neathway Brown (born 23 June 1947) is an Australian actor.\n\nEarly life\n\nBrown was born in Sydney, the son of John (Jack) Brown and Molly Brown, a house cleaner and pianist in the early days of the Langshaw School of Ballet. He grew up in the south-western Sydney suburb of Bankstown, and began working at AMP as an actuarial student. He started to act in amateur theatre performances, where he discovered a passion for acting.\n\nCareer\n\nBrown went to England in 1964, eventually winning minor ro","version":71,"birthday":"-710910000000","id":"29092","birthplace":"Sydney, Australia","lastModified":"1301904077000","name":"Bryan Brown","type":"Person","_key":"17718"} +{"label":"John Bach","version":21,"id":"29094","lastModified":"1301902050000","name":"John Bach","type":"Person","_key":"17719"} +{"label":"Nicholas Hammond","version":24,"id":"29095","lastModified":"1301901623000","name":"Nicholas Hammond","type":"Person","_key":"17720"} +{"label":"Peter McCauley","version":21,"id":"29096","lastModified":"1301902188000","name":"Peter McCauley","type":"Person","_key":"17721"} +{"label":"Kerry Armstrong","version":24,"id":"29097","lastModified":"1301901779000","name":"Kerry Armstrong","type":"Person","_key":"17722"} +{"label":"Alraune","description":"Little is known about this film which is now believed to be lost. It is a variation on the original legend of Alraune in which a Mad Scientist creates a beautiful but demonic child from the forced union between a woman and a Mandrake root.","id":"2967","runtime":80,"imdbId":"tt0008826","version":59,"lastModified":"1301905718000","genre":"Horror","title":"Alraune","releaseDate":-1640995200000,"language":"en","type":"Movie","_key":"17723"} +{"label":"Edmund Fritz","version":20,"id":"29099","lastModified":"1301902022000","name":"Edmund Fritz","type":"Person","_key":"17724"} +{"label":"G\u00e9za Erd\u00e9lyi","version":20,"id":"29102","lastModified":"1301902009000","name":"G\u00e9za Erd\u00e9lyi","type":"Person","_key":"17725"} +{"label":"Gyula G\u00e1l","version":20,"id":"29103","lastModified":"1301901448000","name":"Gyula G\u00e1l","type":"Person","_key":"17726"} +{"label":"K\u00e1lm\u00e1n K\u00f6rmendy","version":20,"id":"29104","lastModified":"1301902160000","name":"K\u00e1lm\u00e1n K\u00f6rmendy","type":"Person","_key":"17727"} +{"label":"Margit Lux","version":20,"id":"29105","lastModified":"1301901794000","name":"Margit Lux","type":"Person","_key":"17728"} +{"label":"R\u00f3zsi Sz\u00f6ll\u00f6si","version":20,"id":"29106","lastModified":"1301902160000","name":"R\u00f3zsi Sz\u00f6ll\u00f6si","type":"Person","_key":"17729"} +{"label":"Jen\u00f6 T\u00f6rzs","version":22,"id":"29107","lastModified":"1301901980000","name":"Jen\u00f6 T\u00f6rzs","type":"Person","_key":"17730"} +{"label":"Alraune, die Henkerstochter, genannt die rote Hanne","description":"No overview found.","id":"2968","runtime":88,"imdbId":"tt0008825","version":66,"lastModified":"1301174103000","studio":"Luna Filmproduktion","genre":"Horror","title":"Alraune, die Henkerstochter, genannt die rote Hanne","releaseDate":-1640995200000,"language":"en","type":"Movie","_key":"17731"} +{"label":"Joseph Klein","version":21,"id":"29109","lastModified":"1301902160000","name":"Joseph Klein","type":"Person","_key":"17732"} +{"label":"Eugen Ill\u00e9s","version":19,"id":"29108","lastModified":"1301902160000","name":"Eugen Ill\u00e9s","type":"Person","_key":"17733"} +{"label":"Max Auzinger","version":21,"id":"29113","lastModified":"1301902160000","name":"Max Auzinger","type":"Person","_key":"17734"} +{"label":"Ernst Rennspies","version":20,"id":"29115","lastModified":"1301902160000","name":"Ernst Rennspies","type":"Person","_key":"17735"} +{"label":"Tatjana Sand","version":20,"id":"29116","lastModified":"1301902189000","name":"Tatjana Sand","type":"Person","_key":"17736"} +{"label":"Gustav Adolf Semler","version":20,"id":"29117","lastModified":"1301902160000","name":"Gustav Adolf Semler","type":"Person","_key":"17737"} +{"label":"Hilde Wolter","version":20,"id":"29118","lastModified":"1301902160000","name":"Hilde Wolter","type":"Person","_key":"17738"} +{"label":"Alraune","description":"No overview found.","id":"2969","runtime":108,"imdbId":"tt0017621","version":75,"lastModified":"1300978207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21a\/4bc917f7017a3c57fe00921a\/alraune-mid.jpg","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"Alraune","releaseDate":-1323388800000,"language":"en","type":"Movie","_key":"17739"} +{"label":"Henrik Galeen","version":26,"birthday":"-2808003600000","id":"9833","birthplace":"Berlin, Germany","lastModified":"1301901569000","name":"Henrik Galeen","type":"Person","_key":"17740"} +{"label":"Paul Wegener","version":32,"id":"29123","lastModified":"1301901448000","name":"Paul Wegener","type":"Person","_key":"17741"} +{"label":"Wolfgang Zilzer","version":22,"id":"29124","lastModified":"1301901971000","name":"Wolfgang Zilzer","type":"Person","_key":"17742"} +{"label":"Louis Ralph","version":20,"id":"29125","lastModified":"1301902189000","name":"Louis Ralph","type":"Person","_key":"17743"} +{"label":"Hans Trautner","version":20,"id":"29126","lastModified":"1301902195000","name":"Hans Trautner","type":"Person","_key":"17744"} +{"label":"John Loder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/055\/4cc6cf5e7b9aa15b24000055\/john-loder-profile.jpg","version":37,"id":"29127","lastModified":"1301901426000","name":"John Loder","type":"Person","_key":"17745"} +{"label":"Mia Pankau","version":20,"id":"29128","lastModified":"1301902189000","name":"Mia Pankau","type":"Person","_key":"17746"} +{"label":"Georg John","version":26,"id":"29129","lastModified":"1301902161000","name":"Georg John","type":"Person","_key":"17747"} +{"label":"Alexander Sascha","version":20,"id":"29130","lastModified":"1301902189000","name":"Alexander Sascha","type":"Person","_key":"17748"} +{"label":"Heinrich Schroth","version":20,"id":"29131","lastModified":"1301902204000","name":"Heinrich Schroth","type":"Person","_key":"17749"} +{"label":"Alraune","description":"No overview found.","id":"2970","runtime":103,"imdbId":"tt0020635","version":71,"lastModified":"1301904962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/227\/4bc917fc017a3c57fe009227\/alraune-mid.jpg","studio":"Tobis","genre":"Science Fiction","title":"Alraune","releaseDate":-1257120000000,"language":"en","type":"Movie","_key":"17750"} +{"label":"Richard Oswald","version":28,"id":"29132","lastModified":"1301901768000","name":"Richard Oswald","type":"Person","_key":"17751"} +{"label":"Albert Bassermann","version":33,"id":"29137","lastModified":"1301901776000","name":"Albert Bassermann","type":"Person","_key":"17752"} +{"label":"Harald Paulsen","version":21,"id":"29138","lastModified":"1301901935000","name":"Harald Paulsen","type":"Person","_key":"17753"} +{"label":"Adolf E. Licho","version":19,"id":"29139","lastModified":"1301902112000","name":"Adolf E. Licho","type":"Person","_key":"17754"} +{"label":"Agnes Straub","version":19,"id":"29140","lastModified":"1301902112000","name":"Agnes Straub","type":"Person","_key":"17755"} +{"label":"Bernhard Goetzke","version":24,"id":"29141","lastModified":"1301902112000","name":"Bernhard Goetzke","type":"Person","_key":"17756"} +{"label":"Martin Kosleck","version":29,"id":"29142","lastModified":"1301902190000","name":"Martin Kosleck","type":"Person","_key":"17757"} +{"label":"K\u00e4the Haack","version":25,"id":"29143","lastModified":"1301901967000","name":"K\u00e4the Haack","type":"Person","_key":"17758"} +{"label":"Ivan Koval-Samborsky","version":21,"id":"29144","lastModified":"1301902112000","name":"Ivan Koval-Samborsky","type":"Person","_key":"17759"} +{"label":"Liselotte Schaak","version":20,"id":"29145","lastModified":"1301902112000","name":"Liselotte Schaak","type":"Person","_key":"17760"} +{"label":"Henry Bender","version":21,"id":"29146","lastModified":"1301901841000","name":"Henry Bender","type":"Person","_key":"17761"} +{"label":"Elsa Basserman","version":17,"id":"29147","lastModified":"1301902167000","name":"Elsa Basserman","type":"Person","_key":"17762"} +{"label":"Alraune","description":"No overview found.","id":"2971","runtime":92,"imdbId":"tt0044344","version":122,"lastModified":"1301908348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/525\/4bf39cc6017a3c3212000525\/alraune-mid.jpg","studio":"Carlton Film Export","genre":"Drama","title":"Alraune","releaseDate":-542505600000,"language":"en","type":"Movie","_key":"17763"} +{"label":"Harry Meyen","version":24,"id":"29159","lastModified":"1301901590000","name":"Harry Meyen","type":"Person","_key":"17764"} +{"label":"Hans Cossy","version":19,"id":"29161","lastModified":"1301902111000","name":"Hans Cossy","type":"Person","_key":"17765"} +{"label":"Gardy Brombacher","version":19,"id":"29162","lastModified":"1301902111000","name":"Gardy Brombacher","type":"Person","_key":"17766"} +{"label":"Trude Hesterberg","version":20,"id":"29163","lastModified":"1301902111000","name":"Trude Hesterberg","type":"Person","_key":"17767"} +{"label":"Julia Koschka","version":19,"id":"29164","lastModified":"1301902111000","name":"Julia Koschka","type":"Person","_key":"17768"} +{"label":"Denise Vernac","version":21,"id":"29165","lastModified":"1301902133000","name":"Denise Vernac","type":"Person","_key":"17769"} +{"label":"Willem Holsboer","version":20,"id":"29167","lastModified":"1301902166000","name":"Willem Holsboer","type":"Person","_key":"17770"} +{"label":"Rolf Henniger","version":21,"id":"44347","lastModified":"1301902294000","name":"Rolf Henniger","type":"Person","_key":"17771"} +{"label":"The Golem: How He Came Into the World","description":"No overview found.","id":"2972","runtime":85,"imdbId":"tt0011237","version":73,"lastModified":"1301904961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/230\/4bc917fd017a3c57fe009230\/der-golem-wie-er-in-die-welt-kam-mid.jpg","studio":"Projektions-AG Union","genre":"Horror","title":"The Golem: How He Came Into the World","releaseDate":-1551830400000,"language":"en","type":"Movie","_key":"17772"} +{"label":"Carl Boese","version":20,"id":"29168","lastModified":"1301901745000","name":"Carl Boese","type":"Person","_key":"17773"} +{"label":"Albert Steinr\u00fcck","version":21,"id":"29175","lastModified":"1301901431000","name":"Albert Steinr\u00fcck","type":"Person","_key":"17774"} +{"label":"Lyda Salmonova","version":20,"id":"29176","lastModified":"1301901943000","name":"Lyda Salmonova","type":"Person","_key":"17775"} +{"label":"Hans St\u00fcrm","version":20,"id":"29178","lastModified":"1301902189000","name":"Hans St\u00fcrm","type":"Person","_key":"17776"} +{"label":"Max Kronert","version":22,"id":"29179","lastModified":"1302002936000","name":"Max Kronert","type":"Person","_key":"17777"} +{"label":"Otto Geb\u00fchr","version":19,"id":"29180","lastModified":"1301902111000","name":"Otto Geb\u00fchr","type":"Person","_key":"17778"} +{"label":"Dore Paetzold","version":19,"id":"29181","lastModified":"1301902111000","name":"Dore Paetzold","type":"Person","_key":"17779"} +{"label":"Lothar M\u00fcthel","version":19,"id":"29182","lastModified":"1301902111000","name":"Lothar M\u00fcthel","type":"Person","_key":"17780"} +{"label":"Loni Nest","version":22,"id":"29183","lastModified":"1301901623000","name":"Loni Nest","type":"Person","_key":"17781"} +{"label":"Carl Ebert","version":21,"id":"29184","lastModified":"1301901953000","name":"Carl Ebert","type":"Person","_key":"17782"} +{"label":"Aelita","description":"Bolshevik propaganda : the comparison between 1921's Russia, and a capitalistic planet Mars. Engineer Los is building a spaceship to reach Mars. He is in love with Aelita, the regent, who he met in his dreams. In real life, his wife Natacha takes care of refugees. [Actually, Aelita is the figurehead queen, and not the regent (Tuskub), who holds the real power. Los's wife should be spelled \"Natasha.\"","id":"2973","runtime":120,"imdbId":"tt0014646","version":93,"lastModified":"1301991370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/294\/4d99a9975e73d6361e000294\/aelita-mid.jpg","studio":"Mezhrabpom","genre":"Adventure","title":"Aelita","releaseDate":-1428537600000,"language":"en","type":"Movie","_key":"17783"} +{"label":"Yakov Protazanov","version":21,"id":"29186","lastModified":"1301902111000","name":"Yakov Protazanov","type":"Person","_key":"17784"} +{"label":"Yuliya Solntseva","version":19,"id":"29195","lastModified":"1301901541000","name":"Yuliya Solntseva","type":"Person","_key":"17785"} +{"label":"Igor Ilyinsky","version":19,"id":"29196","lastModified":"1301902111000","name":"Igor Ilyinsky","type":"Person","_key":"17786"} +{"label":"Nikolai Tsereteli","version":18,"id":"29197","lastModified":"1301901982000","name":"Nikolai Tsereteli","type":"Person","_key":"17787"} +{"label":"Nikolai Batalov","version":19,"id":"29198","lastModified":"1301902111000","name":"Nikolai Batalov","type":"Person","_key":"17788"} +{"label":"Vera Orlova","version":19,"id":"29199","lastModified":"1301901909000","name":"Vera Orlova","type":"Person","_key":"17789"} +{"label":"Valentina Kuindzhi","version":19,"id":"29200","lastModified":"1301902111000","name":"Valentina Kuindzhi","type":"Person","_key":"17790"} +{"label":"Pavel Pol","version":19,"id":"29201","lastModified":"1301902111000","name":"Pavel Pol","type":"Person","_key":"17791"} +{"label":"Konstantin Eggert","version":21,"id":"29202","lastModified":"1301902111000","name":"Konstantin Eggert","type":"Person","_key":"17792"} +{"label":"Yuri Zavadsky","version":19,"id":"29203","lastModified":"1301902111000","name":"Yuri Zavadsky","type":"Person","_key":"17793"} +{"label":"Aleksandra Peregonets","version":19,"id":"29204","lastModified":"1301901909000","name":"Aleksandra Peregonets","type":"Person","_key":"17794"} +{"label":"Orlacs H\u00e4nde","description":"No overview found.","id":"2974","runtime":92,"imdbId":"tt0015202","version":41,"lastModified":"1301906757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23e\/4bc917fd017a3c57fe00923e\/orlacs-hande-mid.jpg","studio":"Panfilm","genre":"Crime","title":"Orlacs H\u00e4nde","releaseDate":-1428624000000,"language":"en","type":"Movie","_key":"17795"} +{"label":"Alexandra Sorina","version":20,"id":"29246","lastModified":"1301902160000","name":"Alexandra Sorina","type":"Person","_key":"17796"} +{"label":"Carmen Cartellieri","version":20,"id":"29247","lastModified":"1301901794000","name":"Carmen Cartellieri","type":"Person","_key":"17797"} +{"label":"Fritz Strassny","version":20,"id":"29248","lastModified":"1301902160000","name":"Fritz Strassny","type":"Person","_key":"17798"} +{"label":"Paul Askonas","version":20,"id":"29249","lastModified":"1301902160000","name":"Paul Askonas","type":"Person","_key":"17799"} +{"label":"Hairspray","description":"Pleasantly plump teenager Tracy Turnblad and her best friend Penny Pingleton audition to be on The Corny Collins Show and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.","id":"2976","runtime":115,"imdbId":"tt0427327","trailer":"http:\/\/www.youtube.com\/watch?v=A9MgeFFjHlk","homepage":"http:\/\/www.hairspraymovie.com\/","version":308,"lastModified":"1301902169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24b\/4bc917ff017a3c57fe00924b\/hairspray-mid.jpg","studio":"Ingenious Film Partners","genre":"Comedy","title":"Hairspray","releaseDate":1184284800000,"language":"en","tagline":"When you follow your own beat, the world will follow you.","type":"Movie","_key":"17800"} +{"label":"Karl Irvine","version":23,"id":"29212","lastModified":"1301901255000","name":"Karl Irvine","type":"Person","_key":"17801"} +{"label":"Joanna Moore","version":26,"id":"29213","lastModified":"1301901284000","name":"Joanna Moore","type":"Person","_key":"17802"} +{"label":"Amanda Bynes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/544\/4be0a41d017a3c35bb000544\/amanda-bynes-profile.jpg","version":49,"birthday":"512863200000","id":"29220","birthplace":"Thousand Oaks, California, USA","lastModified":"1301904073000","name":"Amanda Bynes","type":"Person","_key":"17803"} +{"label":"Brittany Snow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ee\/4c023dae017a3c70310013ee\/brittany-snow-profile.jpg","version":40,"id":"29221","lastModified":"1301901215000","name":"Brittany Snow","type":"Person","_key":"17804"} +{"label":"Zac Efron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fa\/4bceab6d017a3c48670000fa\/zac-efron-profile.jpg","version":64,"id":"29222","lastModified":"1301904079000","name":"Zac Efron","type":"Person","_key":"17805"} +{"label":"Elijah Kelley","version":24,"id":"29223","lastModified":"1301901680000","name":"Elijah Kelley","type":"Person","_key":"17806"} +{"label":"Nikki Blonsky","version":22,"id":"29224","lastModified":"1301901453000","name":"Nikki Blonsky","type":"Person","_key":"17807"} +{"label":"Taylor Parks","version":24,"id":"29225","lastModified":"1301901680000","name":"Taylor Parks","type":"Person","_key":"17808"} +{"label":"Jerry Stiller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/121\/4ce063d87b9aa168b4000121\/jerry-stiller-profile.jpg","version":47,"id":"26042","lastModified":"1301901575000","name":"Jerry Stiller","type":"Person","_key":"17809"} +{"label":"Becoming Jane","description":"A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.","id":"2977","runtime":120,"imdbId":"tt0416508","trailer":"http:\/\/www.youtube.com\/watch?v=OYViBfUvSOA","homepage":"http:\/\/becomingjane-themovie.com\/","version":185,"lastModified":"1301902746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/282\/4bc9180a017a3c57fe009282\/becoming-jane-mid.jpg","studio":"Ecosse Films","genre":"Drama","title":"Becoming Jane","releaseDate":1172793600000,"language":"en","type":"Movie","_key":"17810"} +{"label":"Julian Jarrold","version":28,"id":"29226","lastModified":"1301901283000","name":"Julian Jarrold","type":"Person","_key":"17811"} +{"label":"Joe Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4cae45587b9aa12135000081\/joe-anderson-profile.jpg","version":56,"id":"29234","lastModified":"1301901206000","name":"Joe Anderson","type":"Person","_key":"17812"} +{"label":"Lucy Cohu","version":24,"id":"29235","lastModified":"1301901745000","name":"Lucy Cohu","type":"Person","_key":"17813"} +{"label":"Anna Maxwell Martin","version":29,"id":"29236","lastModified":"1301901599000","name":"Anna Maxwell Martin","type":"Person","_key":"17814"} +{"label":"Leo Bill","version":24,"id":"29237","lastModified":"1301901488000","name":"Leo Bill","type":"Person","_key":"17815"} +{"label":"Jessica Ashworth","version":22,"id":"29238","lastModified":"1301901909000","name":"Jessica Ashworth","type":"Person","_key":"17816"} +{"label":"Michael James Ford","version":22,"id":"29239","lastModified":"1301901745000","name":"Michael James Ford","type":"Person","_key":"17817"} +{"label":"Tom Vaughan-Lawlor","version":22,"id":"29240","lastModified":"1301901909000","name":"Tom Vaughan-Lawlor","type":"Person","_key":"17818"} +{"label":"Ghostbusters II","description":"Five years later, the Ghostbusters have been plagued by lawsuits and court orders, and their once-lucrative business is bankrupt. However, when Dana begins to have ghost problems again, the boys come out of retirement only to be promptly arrested. The Ghostbusters discover that New York is once again headed for supernatural doom, with a river of ectoplasmic slime bubbling beneath the city and an ancient sorcerer attempting to possess Dana's baby and be born anew.","id":"2978","runtime":102,"imdbId":"tt0097428","trailer":"http:\/\/www.youtube.com\/watch?v=1520","version":237,"lastModified":"1301901709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/233\/4d40d0585e73d6571c000233\/ghostbusters-ii-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Ghostbusters II","releaseDate":613958400000,"language":"en","tagline":"We're back!","type":"Movie","_key":"17819"} +{"label":"Return of the Ghostbusters","description":"The mile high city is rocked when an ancient Egyptian menace comes to town, and the Denver Ghostbusters must return to save the universe once more.","id":"2979","runtime":85,"imdbId":"tt1230164","version":81,"lastModified":"1301905343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b3\/4bc91815017a3c57fe0092b3\/return-of-the-ghostbusters-mid.jpg","studio":"BraxtanFILM","genre":"Comedy","title":"Return of the Ghostbusters","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"17820"} +{"label":"Hank Braxtan","version":30,"id":"117168","lastModified":"1301902714000","name":"Hank Braxtan","type":"Person","_key":"17821"} +{"label":"Tim Johnson","version":30,"id":"117169","lastModified":"1301903005000","name":"Tim Johnson","type":"Person","_key":"17822"} +{"label":"J. Michael Weiss","version":28,"id":"85819","lastModified":"1301902378000","name":"J. Michael Weiss","type":"Person","_key":"17823"} +{"label":"Joel Hanson","version":23,"id":"117170","lastModified":"1301902714000","name":"Joel Hanson","type":"Person","_key":"17824"} +{"label":"Ron Vischer","version":23,"id":"117171","lastModified":"1301902534000","name":"Ron Vischer","type":"Person","_key":"17825"} +{"label":"Arielle Brachfeld","version":23,"id":"117172","lastModified":"1301902715000","name":"Arielle Brachfeld","type":"Person","_key":"17826"} +{"label":"Donte Essien","version":23,"id":"117173","lastModified":"1301902534000","name":"Donte Essien","type":"Person","_key":"17827"} +{"label":"Lisa Wegener","version":23,"id":"117174","lastModified":"1301902714000","name":"Lisa Wegener","type":"Person","_key":"17828"} +{"label":"Heath C. Heine","version":23,"id":"117175","lastModified":"1301902715000","name":"Heath C. Heine","type":"Person","_key":"17829"} +{"label":"Kevin Cunningham","version":23,"id":"117176","lastModified":"1301902534000","name":"Kevin Cunningham","type":"Person","_key":"17830"} +{"label":"Ghostbusters Collection","description":"The sci-fi comedy ghost fighting film series from the 80's.","id":"2980","version":97,"lastModified":"1301903486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4bc91815017a3c57fe0092b8\/ghostbusters-mid.jpg","genre":"Action","title":"Ghostbusters Collection","language":"en","type":"Movie","_key":"17831"} +{"label":"The Lost World","description":"The first film adaptation of Sir Arthur Conan Doyle's classic novel about a land where prehistoric creatures still roam.","id":"2981","runtime":106,"imdbId":"tt0016039","version":126,"lastModified":"1301905651000","studio":"First National Bank of Chicago (London Branch)","genre":"Adventure","title":"The Lost World","releaseDate":-1405209600000,"language":"en","type":"Movie","_key":"17832"} +{"label":"Milton Menasco","version":18,"id":"29256","lastModified":"1301901644000","name":"Milton Menasco","type":"Person","_key":"17833"} +{"label":"Harry O. Hoyt","version":23,"id":"29250","lastModified":"1301901805000","name":"Harry O. Hoyt","type":"Person","_key":"17834"} +{"label":"Bessie Love","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/170\/4c24eab17b9aa14470000170\/bessie-love-profile.jpg","version":25,"id":"29258","lastModified":"1301901840000","name":"Bessie Love","type":"Person","_key":"17835"} +{"label":"Lewis Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/992\/4be45450017a3c35b7000992\/lewis-stone-profile.jpg","version":42,"id":"29259","lastModified":"1301901699000","name":"Lewis Stone","type":"Person","_key":"17836"} +{"label":"Wallace Beery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58a\/4cb7044e7b9aa138da00058a\/wallace-beery-profile.jpg","version":36,"id":"29260","lastModified":"1301901337000","name":"Wallace Beery","type":"Person","_key":"17837"} +{"label":"Lloyd Hughes","version":18,"id":"29261","lastModified":"1301901669000","name":"Lloyd Hughes","type":"Person","_key":"17838"} +{"label":"Alma Bennett","version":20,"id":"29262","lastModified":"1301902111000","name":"Alma Bennett","type":"Person","_key":"17839"} +{"label":"Margaret McWade","version":20,"id":"29264","lastModified":"1301902111000","name":"Margaret McWade","type":"Person","_key":"17840"} +{"label":"Bull Montana","version":21,"id":"29265","lastModified":"1301902111000","name":"Bull Montana","type":"Person","_key":"17841"} +{"label":"Frank Finch Smiles","version":20,"id":"29266","lastModified":"1301902111000","name":"Frank Finch Smiles","type":"Person","_key":"17842"} +{"label":"Jules Cowles","version":21,"id":"29267","lastModified":"1301902111000","name":"Jules Cowles","type":"Person","_key":"17843"} +{"label":"George Bunny","version":22,"id":"29268","lastModified":"1301901669000","name":"George Bunny","type":"Person","_key":"17844"} +{"label":"Charles Wellesley","version":20,"id":"29269","lastModified":"1301901745000","name":"Charles Wellesley","type":"Person","_key":"17845"} +{"label":"Jocko the Monkey","version":18,"id":"29270","lastModified":"1301902167000","name":"Jocko the Monkey","type":"Person","_key":"17846"} +{"label":"Arthur Conan Doyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/745\/4cbf21407b9aa138d9001745\/arthur-conan-doyle-profile.jpg","version":71,"id":"25167","lastModified":"1301901322000","name":"Arthur Conan Doyle","type":"Person","_key":"17847"} +{"label":"Virginia Brown Faire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b4\/4c406d107b9aa142830001b4\/virginia-brown-faire-profile.jpg","version":21,"id":"29271","lastModified":"1301902167000","name":"Virginia Brown Faire","type":"Person","_key":"17848"} +{"label":"Nelson McDowell","version":19,"id":"29272","lastModified":"1301901909000","name":"Nelson McDowell","type":"Person","_key":"17849"} +{"label":"Leo White","version":39,"id":"29274","lastModified":"1301901843000","name":"Leo White","type":"Person","_key":"17850"} +{"label":"The Lost World","description":"Professor Challenger leads an expedition of scientists and adventurers to a remote plateau deep in the Amazonian jungle to verify his claim that dinosaurs still live there.","id":"2982","runtime":97,"imdbId":"tt0054038","version":98,"lastModified":"1301907147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c1\/4bc91816017a3c57fe0092c1\/the-lost-world-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Lost World","releaseDate":-298857600000,"language":"en","type":"Movie","_key":"17851"} +{"label":"Ad Schaumer","version":20,"id":"29281","lastModified":"1301901745000","name":"Ad Schaumer","type":"Person","_key":"17852"} +{"label":"Fernando Lamas","version":23,"id":"29282","lastModified":"1301901842000","name":"Fernando Lamas","type":"Person","_key":"17853"} +{"label":"Richard Haydn","version":38,"id":"29283","lastModified":"1301901434000","name":"Richard Haydn","type":"Person","_key":"17854"} +{"label":"Ray Stricklyn","version":25,"id":"29284","lastModified":"1301901850000","name":"Ray Stricklyn","type":"Person","_key":"17855"} +{"label":"Jay Novello","version":30,"id":"29285","lastModified":"1301901946000","name":"Jay Novello","type":"Person","_key":"17856"} +{"label":"Vitina Marcus","version":22,"id":"29286","lastModified":"1301902112000","name":"Vitina Marcus","type":"Person","_key":"17857"} +{"label":"The Lost World","description":"No overview found.","id":"2983","runtime":99,"imdbId":"tt0104759","version":96,"lastModified":"1301905651000","genre":"Action","title":"The Lost World","releaseDate":694224000000,"language":"en","type":"Movie","_key":"17858"} +{"label":"Timothy Bond","version":23,"id":"29287","lastModified":"1302040093000","name":"Timothy Bond","type":"Person","_key":"17859"} +{"label":"Eric McCormack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e1\/4c3b10b55e73d671d30001e1\/eric-mccormack-profile.jpg","version":31,"id":"29298","lastModified":"1301901329000","name":"Eric McCormack","type":"Person","_key":"17860"} +{"label":"Nathania Stanford","version":20,"id":"29299","lastModified":"1301901794000","name":"Nathania Stanford","type":"Person","_key":"17861"} +{"label":"Darren Peter Mercer","version":20,"id":"29300","lastModified":"1301902160000","name":"Darren Peter Mercer","type":"Person","_key":"17862"} +{"label":"Sala Came","version":20,"id":"29301","lastModified":"1301902160000","name":"Sala Came","type":"Person","_key":"17863"} +{"label":"Fidelis Cheza","version":20,"id":"29302","lastModified":"1301901971000","name":"Fidelis Cheza","type":"Person","_key":"17864"} +{"label":"John Chinosiyani","version":20,"id":"29303","lastModified":"1301902160000","name":"John Chinosiyani","type":"Person","_key":"17865"} +{"label":"A Countess from Hong Kong","description":"Leaving Hong Kong after a stopover, an American diplomat (Marlon Brando) discovers a stowaway in his stateroom -- the Countess Natascha Alexandra (Sophia Loren), whose family has fled from Russia. Fearful of losing his job, he tries to keep his new roommate hidden while they both try -- unsuccessfully -- to keep from falling in love. Countess of Hong Kong was director Charlie Chaplin's last film (and the first since 1923 in which he didn't star).","id":"2984","runtime":120,"imdbId":"tt0061523","version":76,"lastModified":"1301905343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd1\/4d55df7c5e73d617c7006bd1\/a-countess-from-hong-kong-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"A Countess from Hong Kong","releaseDate":-94348800000,"language":"en","type":"Movie","_key":"17866"} +{"label":"Sydney Chaplin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f5\/4ca4a2d37b9aa16eda0001f5\/sydney-chaplin-profile.jpg","version":33,"id":"29304","lastModified":"1301902162000","name":"Sydney Chaplin","type":"Person","_key":"17867"} +{"label":"Bill Nagy","version":21,"id":"29305","lastModified":"1301901714000","name":"Bill Nagy","type":"Person","_key":"17868"} +{"label":"John Paul","version":21,"id":"29306","lastModified":"1301901794000","name":"John Paul","type":"Person","_key":"17869"} +{"label":"Michael Medwin","version":22,"id":"29307","lastModified":"1301901794000","name":"Michael Medwin","type":"Person","_key":"17870"} +{"label":"Oliver Johnston","version":30,"id":"29308","lastModified":"1301901971000","name":"Oliver Johnston","type":"Person","_key":"17871"} +{"label":"Patrick Cargill","version":24,"id":"29309","lastModified":"1301901569000","name":"Patrick Cargill","type":"Person","_key":"17872"} +{"label":"Tiger by the Tail","description":"No overview found.","id":"2985","runtime":99,"imdbId":"tt0063696","version":45,"lastModified":"1301907407000","genre":"Drama","title":"Tiger by the Tail","releaseDate":-44755200000,"language":"en","type":"Movie","_key":"17873"} +{"label":"Christopher George","version":36,"id":"29312","lastModified":"1301901507000","name":"Christopher George","type":"Person","_key":"17874"} +{"label":"Dean Jagger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bd5cd5c017a3c658900003b\/dean-jagger-profile.jpg","version":59,"id":"29313","lastModified":"1301901254000","name":"Dean Jagger","type":"Person","_key":"17875"} +{"label":"Charo","version":24,"id":"29314","lastModified":"1301901785000","name":"Charo","type":"Person","_key":"17876"} +{"label":"Glenda Farrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b2\/4c60178c7b9aa172de0001b2\/glenda-farrell-profile.jpg","version":37,"id":"29315","lastModified":"1301901532000","name":"Glenda Farrell","type":"Person","_key":"17877"} +{"label":"Lloyd Bochner","version":23,"id":"13399","lastModified":"1301901650000","name":"Lloyd Bochner","type":"Person","_key":"17878"} +{"label":"R.G. Springsteen","version":29,"id":"29317","lastModified":"1301901472000","name":"R.G. Springsteen","type":"Person","_key":"17879"} +{"label":"Satan's Harvest","description":"No overview found.","id":"2986","runtime":90,"imdbId":"tt0059680","version":48,"lastModified":"1301907431000","title":"Satan's Harvest","releaseDate":2678400000,"language":"en","type":"Movie","_key":"17880"} +{"label":"Matt Monro","version":20,"id":"29326","lastModified":"1301902189000","name":"Matt Monro","type":"Person","_key":"17881"} +{"label":"Douglas K. Stone","version":16,"id":"29853","lastModified":"1301902189000","name":"Douglas K. Stone","type":"Person","_key":"17882"} +{"label":"Mr. Kingstreet's War","description":"No overview found.","id":"2987","runtime":92,"imdbId":"tt0070416","version":52,"lastModified":"1301906179000","studio":"HRS Films","genre":"Drama","title":"Mr. Kingstreet's War","releaseDate":105062400000,"language":"en","type":"Movie","_key":"17883"} +{"label":"Rossano Brazzi","version":33,"id":"29327","lastModified":"1301901499000","name":"Rossano Brazzi","type":"Person","_key":"17884"} +{"label":"Brian O'Shaughnessy","version":22,"id":"33718","lastModified":"1301901661000","name":"Brian O'Shaughnessy","type":"Person","_key":"17885"} +{"label":"Bruce Millar","version":20,"id":"29338","lastModified":"1301901569000","name":"Bruce Millar","type":"Person","_key":"17886"} +{"label":"Percival Rubens","version":21,"id":"29328","lastModified":"1301901822000","name":"Percival Rubens","type":"Person","_key":"17887"} +{"label":"The Harrad Experiment","description":"At fictional Harrad College students learn about sexuality and experiment with each other. Based on the 1962 book of the same name by Robert Rimmer, this movie deals with the concept of free love during the height of the sexual revolution which took place in the United States.","id":"2988","runtime":95,"imdbId":"tt0070157","version":98,"lastModified":"1301906087000","studio":"Cinema Arts Productions","genre":"Drama","title":"The Harrad Experiment","releaseDate":105926400000,"language":"en","type":"Movie","_key":"17888"} +{"label":"Jesse Corallo","version":20,"id":"29355","lastModified":"1301901541000","name":"Jesse Corallo","type":"Person","_key":"17889"} +{"label":"Laurie Walters","version":20,"id":"29360","lastModified":"1301902127000","name":"Laurie Walters","type":"Person","_key":"17890"} +{"label":"Victoria Thompson","version":20,"id":"29361","lastModified":"1301902127000","name":"Victoria Thompson","type":"Person","_key":"17891"} +{"label":"Elliott Street","version":19,"id":"29362","lastModified":"1301902111000","name":"Elliott Street","type":"Person","_key":"17892"} +{"label":"Robert Middleton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c4\/4c2b54c27b9aa15e990000c4\/robert-middleton-profile.jpg","version":31,"id":"29363","lastModified":"1301901715000","name":"Robert Middleton","type":"Person","_key":"17893"} +{"label":"Billy Sands","version":19,"id":"29364","lastModified":"1301902111000","name":"Billy Sands","type":"Person","_key":"17894"} +{"label":"Sharon Ullrick","version":17,"id":"29365","lastModified":"1301902167000","name":"Sharon Ullrick","type":"Person","_key":"17895"} +{"label":"Maggie Wellman","version":19,"id":"29366","lastModified":"1301901745000","name":"Maggie Wellman","type":"Person","_key":"17896"} +{"label":"Ron Kolman","version":19,"id":"29367","lastModified":"1301902111000","name":"Ron Kolman","type":"Person","_key":"17897"} +{"label":"Michael Greene","version":26,"id":"29368","lastModified":"1301901909000","name":"Michael Greene","type":"Person","_key":"17898"} +{"label":"Melanie Griffith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/184\/4c7d27da7b9aa10976000184\/melanie-griffith-profile.jpg","version":98,"id":"29369","lastModified":"1302003353000","name":"Melanie Griffith","type":"Person","_key":"17899"} +{"label":"Gregory Harrison","version":29,"id":"29370","lastModified":"1301901909000","name":"Gregory Harrison","type":"Person","_key":"17900"} +{"label":"Roar","description":"No overview found.","id":"2989","runtime":102,"imdbId":"tt0083001","homepage":"http:\/\/www.roarthemovie.com","version":90,"lastModified":"1301905009000","genre":"Adventure","title":"Roar","releaseDate":374371200000,"language":"en","type":"Movie","_key":"17901"} +{"label":"Jerry Marshall","version":20,"id":"29372","lastModified":"1301902188000","name":"Jerry Marshall","type":"Person","_key":"17902"} +{"label":"Kyalo Mativo","version":20,"id":"29373","lastModified":"1301902188000","name":"Kyalo Mativo","type":"Person","_key":"17903"} +{"label":"Rick Glassey","version":20,"id":"29374","lastModified":"1301902160000","name":"Rick Glassey","type":"Person","_key":"17904"} +{"label":"Steve Miller","version":20,"id":"29375","lastModified":"1301902160000","name":"Steve Miller","type":"Person","_key":"17905"} +{"label":"Noel Marshall","version":31,"id":"29342","lastModified":"1301901971000","name":"Noel Marshall","type":"Person","_key":"17906"} +{"label":"John Marshall","version":20,"id":"89246","lastModified":"1301902682000","name":"John Marshall","type":"Person","_key":"17907"} +{"label":"Pacific Heights","description":"A couple works hard to renovate their dream house and become landlords to pay for it. Unfortunately one of their tenants has plans of his own.","id":"2990","runtime":102,"imdbId":"tt0100318","version":123,"lastModified":"1301902770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5d\/4c7138bc5e73d65f7a000a5d\/pacific-heights-mid.jpg","studio":"Morgan Creek Productions","genre":"Crime","title":"Pacific Heights","releaseDate":654480000000,"language":"en","type":"Movie","_key":"17908"} +{"label":"Nobu McCarthy","version":24,"id":"29381","lastModified":"1301901851000","name":"Nobu McCarthy","type":"Person","_key":"17909"} +{"label":"Carl Lumbly","version":23,"id":"29382","lastModified":"1301902111000","name":"Carl Lumbly","type":"Person","_key":"17910"} +{"label":"Luca Bercovici","version":33,"birthday":"-405738000000","id":"29383","birthplace":"New York City, New York, USA","lastModified":"1301901529000","name":"Luca Bercovici","type":"Person","_key":"17911"} +{"label":"Sheila McCarthy","version":23,"id":"29384","lastModified":"1301901946000","name":"Sheila McCarthy","type":"Person","_key":"17912"} +{"label":"James Staley","version":22,"id":"29385","lastModified":"1301902057000","name":"James Staley","type":"Person","_key":"17913"} +{"label":"La Encadenada","description":"No overview found.","id":"2991","runtime":95,"imdbId":"tt0070031","version":50,"lastModified":"1301906638000","studio":"Metheus Film","genre":"Erotic","title":"La Encadenada","releaseDate":168393600000,"language":"en","type":"Movie","_key":"17914"} +{"label":"Manuel Mur Oti","version":20,"id":"29386","lastModified":"1301901909000","name":"Manuel Mur Oti","type":"Person","_key":"17915"} +{"label":"Jaime Bayarri","version":20,"id":"29392","lastModified":"1301902009000","name":"Jaime Bayarri","type":"Person","_key":"17916"} +{"label":"Marisa Mell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4cb382247b9aa1345a000030\/marisa-mell-profile.jpg","version":77,"id":"29395","lastModified":"1301901319000","name":"Marisa Mell","type":"Person","_key":"17917"} +{"label":"Anthony Steffen","version":23,"id":"29396","lastModified":"1301901909000","name":"Anthony Steffen","type":"Person","_key":"17918"} +{"label":"Juan Rib\u00f3","version":19,"id":"29397","lastModified":"1301902111000","name":"Juan Rib\u00f3","type":"Person","_key":"17919"} +{"label":"Richard Baron","version":19,"id":"29398","lastModified":"1301902111000","name":"Richard Baron","type":"Person","_key":"17920"} +{"label":"Lili Mur\u00e1ti","version":18,"id":"102153","lastModified":"1301902906000","name":"Lili Mur\u00e1ti","type":"Person","_key":"17921"} +{"label":"Carla Cal\u00f2","version":16,"id":"102154","lastModified":"1301902640000","name":"Carla Cal\u00f2","type":"Person","_key":"17922"} +{"label":"Beni Deus","version":20,"id":"102155","lastModified":"1301902640000","name":"Beni Deus","type":"Person","_key":"17923"} +{"label":"Appetite","description":"No overview found.","id":"2992","runtime":97,"imdbId":"tt0149698","version":82,"lastModified":"1301908613000","studio":"101 Productions","genre":"Horror","title":"Appetite","releaseDate":902880000000,"language":"en","type":"Movie","_key":"17924"} +{"label":"Trevor Eve","version":20,"id":"29407","lastModified":"1301901680000","name":"Trevor Eve","type":"Person","_key":"17925"} +{"label":"Ute Lemper","version":35,"id":"29408","lastModified":"1301901503000","name":"Ute Lemper","type":"Person","_key":"17926"} +{"label":"Christien Anholt","version":29,"id":"29409","lastModified":"1301901448000","name":"Christien Anholt","type":"Person","_key":"17927"} +{"label":"George Lenz","version":21,"id":"29410","lastModified":"1301902202000","name":"George Lenz","type":"Person","_key":"17928"} +{"label":"Ys\u00e9 Tran","version":20,"id":"29411","lastModified":"1301901822000","name":"Ys\u00e9 Tran","type":"Person","_key":"17929"} +{"label":"Eric MacLennan","version":20,"id":"29412","lastModified":"1301901837000","name":"Eric MacLennan","type":"Person","_key":"17930"} +{"label":"George Milton","version":21,"id":"29413","lastModified":"1301901838000","name":"George Milton","type":"Person","_key":"17931"} +{"label":"David Daniels","version":20,"id":"29424","lastModified":"1301902009000","name":"David Daniels","type":"Person","_key":"17932"} +{"label":"Una sull'altra","description":"No overview found.","id":"2993","runtime":97,"imdbId":"tt0065148","homepage":"http:\/\/www.severin-films.com\/perl\/search.pl?CO=SEV1109","version":67,"lastModified":"1301908619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d6\/4bc91817017a3c57fe0092d6\/una-sull-altra-mid.jpg","genre":"Erotic","title":"Una sull'altra","releaseDate":-12009600000,"language":"en","type":"Movie","_key":"17933"} +{"label":"Elsa Martinelli","version":24,"birthday":"-1102035600000","id":"29428","lastModified":"1301901522000","name":"Elsa Martinelli","type":"Person","_key":"17934"} +{"label":"Riccardo Cucciolla","version":24,"id":"29429","lastModified":"1301901363000","name":"Riccardo Cucciolla","type":"Person","_key":"17935"} +{"label":"Bill Vanders","version":21,"id":"29430","lastModified":"1301902011000","name":"Bill Vanders","type":"Person","_key":"17936"} +{"label":"Franco Balducci","version":22,"id":"29431","lastModified":"1301902191000","name":"Franco Balducci","type":"Person","_key":"17937"} +{"label":"Jean Sobieski","version":20,"id":"29432","lastModified":"1301902162000","name":"Jean Sobieski","type":"Person","_key":"17938"} +{"label":"Lucio Fulci","version":100,"id":"29433","lastModified":"1301901188000","name":"Lucio Fulci","type":"Person","_key":"17939"} +{"label":"Danger: Diabolik","description":"One of the great comic book movies of all time from director Mario Bava.","id":"2994","runtime":100,"imdbId":"tt0062861","trailer":"http:\/\/www.youtube.com\/watch?v=QTcGTEK0Q2g","version":248,"lastModified":"1301906498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e3\/4bc9181a017a3c57fe0092e3\/danger-diabolik-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"Danger: Diabolik","releaseDate":-61171200000,"language":"en","type":"Movie","_key":"17940"} +{"label":"John Phillip Law","version":34,"id":"29426","lastModified":"1301901593000","name":"John Phillip Law","type":"Person","_key":"17941"} +{"label":"Terry-Thomas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d3d\/4d05064e5e73d621a1002d3d\/terry-thomas-profile.jpg","version":69,"id":"29427","lastModified":"1301901181000","name":"Terry-Thomas","type":"Person","_key":"17942"} +{"label":"Mario Bava","version":98,"id":"25826","lastModified":"1301901219000","name":"Mario Bava","type":"Person","_key":"17943"} +{"label":"Masquerade","description":"No overview found.","id":"2995","runtime":102,"imdbId":"tt0059433","version":78,"lastModified":"1301905718000","studio":"Michael Relph Productions","genre":"Action","title":"Masquerade","releaseDate":-148953600000,"language":"en","type":"Movie","_key":"17944"} +{"label":"Basil Dearden","version":33,"id":"29504","lastModified":"1301901354000","name":"Basil Dearden","type":"Person","_key":"17945"} +{"label":"Bill Fraser","version":24,"id":"29505","lastModified":"1301901680000","name":"Bill Fraser","type":"Person","_key":"17946"} +{"label":"The Lost World","description":"No overview found.","id":"2996","runtime":45,"imdbId":"tt0938313","version":173,"lastModified":"1301904893000","genre":"Science Fiction","title":"The Lost World","releaseDate":883612800000,"language":"en","type":"Movie","_key":"17947"} +{"label":"Jack Fletcher","version":31,"id":"21694","lastModified":"1301901335000","name":"Jack Fletcher","type":"Person","_key":"17948"} +{"label":"Richard Doyle","version":23,"id":"29443","lastModified":"1301997171000","name":"Richard Doyle","type":"Person","_key":"17949"} +{"label":"Marnie Mosiman","version":19,"id":"29444","lastModified":"1301901938000","name":"Marnie Mosiman","type":"Person","_key":"17950"} +{"label":"Ethan Phillips","version":25,"id":"29445","lastModified":"1301902132000","name":"Ethan Phillips","type":"Person","_key":"17951"} +{"label":"Armin Shimerman","version":25,"id":"29446","lastModified":"1301901973000","name":"Armin Shimerman","type":"Person","_key":"17952"} +{"label":"Roxann Dawson","version":21,"id":"34396","lastModified":"1301901558000","name":"Roxann Dawson","type":"Person","_key":"17953"} +{"label":"The Lost World","description":"A scientist discovers dinosaurs on a remote plateau in Mongolia.","id":"2997","runtime":97,"imdbId":"tt0138581","version":179,"lastModified":"1301906492000","genre":"Adventure","title":"The Lost World","releaseDate":908236800000,"language":"en","type":"Movie","_key":"17954"} +{"label":"Bob Keen","version":20,"id":"29447","lastModified":"1301901937000","name":"Bob Keen","type":"Person","_key":"17955"} +{"label":"Patrick Bergin","version":51,"id":"29459","lastModified":"1301901331000","name":"Patrick Bergin","type":"Person","_key":"17956"} +{"label":"Jayne Heitmeyer","version":21,"id":"29460","lastModified":"1301901843000","name":"Jayne Heitmeyer","type":"Person","_key":"17957"} +{"label":"Julian Casey","version":27,"id":"29461","lastModified":"1301901647000","name":"Julian Casey","type":"Person","_key":"17958"} +{"label":"David Nerman","version":23,"id":"29462","lastModified":"1301901641000","name":"David Nerman","type":"Person","_key":"17959"} +{"label":"Michael Sinelnikoff","version":22,"id":"29463","lastModified":"1301901529000","name":"Michael Sinelnikoff","type":"Person","_key":"17960"} +{"label":"Gregoriane Minot Payeur","version":19,"id":"29464","lastModified":"1301901771000","name":"Gregoriane Minot Payeur","type":"Person","_key":"17961"} +{"label":"Jack Langedijk","version":19,"id":"29465","lastModified":"1301902131000","name":"Jack Langedijk","type":"Person","_key":"17962"} +{"label":"Russell Yuen","version":27,"id":"29466","lastModified":"1301901713000","name":"Russell Yuen","type":"Person","_key":"17963"} +{"label":"James Bradford","version":22,"id":"29468","lastModified":"1301901771000","name":"James Bradford","type":"Person","_key":"17964"} +{"label":"Jacques Lessard","version":20,"id":"29469","lastModified":"1301902188000","name":"Jacques Lessard","type":"Person","_key":"17965"} +{"label":"Martin Sims","version":19,"id":"29470","lastModified":"1301901937000","name":"Martin Sims","type":"Person","_key":"17966"} +{"label":"Zabriskie Point","description":"An epic portrait of late Sixties America, as seen through the portrayal of two of its children: anthropology student Daria (who's helping a property developer build a village in the Los Angeles desert) and dropout Mark (who's wanted by the authorities for allegedly killing a policeman during a student riot)... ","id":"2998","runtime":110,"imdbId":"tt0066601","version":109,"lastModified":"1301904684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ec\/4bc9181a017a3c57fe0092ec\/zabriskie-point-mid.jpg","genre":"Drama","title":"Zabriskie Point","releaseDate":3369600000,"language":"en","type":"Movie","_key":"17967"} +{"label":"Mark Frechette","version":20,"id":"29896","lastModified":"1301901696000","name":"Mark Frechette","type":"Person","_key":"17968"} +{"label":"Daria Halprin","version":20,"id":"29897","lastModified":"1301901680000","name":"Daria Halprin","type":"Person","_key":"17969"} +{"label":"Bill Garaway","version":3,"id":"225930","lastModified":"1298307058000","name":"Bill Garaway","type":"Person","_key":"17970"} +{"label":"Kathleen Cleaver","version":3,"id":"225931","lastModified":"1298307076000","name":"Kathleen Cleaver","type":"Person","_key":"17971"} +{"label":"How to Steal a Million","description":"Nicole's father, a legendary art collector, lends his prized Cellini Venus to a prestigious Paris museum. Unfortunately, the Venus was a forgery sculpted by Nicole's grandfather. Before tests can be done which would prove the Venus a fake, Nicole enlists the services of \"society burglar\" Simon Demott to steal the million dollar statue.","id":"3001","runtime":123,"imdbId":"tt0060522","trailer":"http:\/\/www.youtube.com\/watch?v=6v1LWd0hiH0","version":168,"lastModified":"1301902239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ff\/4bc9181b017a3c57fe0092ff\/how-to-steal-a-million-mid.jpg","studio":"World Wide Productions","genre":"Action","title":"How to Steal a Million","releaseDate":-109555200000,"language":"en","type":"Movie","_key":"17972"} +{"label":"Fernand Gravey","version":21,"id":"30774","lastModified":"1301901768000","name":"Fernand Gravey","type":"Person","_key":"17973"} +{"label":"The Lost World","description":"No overview found.","id":"3002","runtime":92,"imdbId":"tt0191252","version":232,"lastModified":"1301908409000","genre":"Adventure","title":"The Lost World","releaseDate":923097600000,"language":"en","type":"Movie","_key":"17974"} +{"label":"Richard Franklin","version":28,"id":"29471","lastModified":"1301901971000","name":"Richard Franklin","type":"Person","_key":"17975"} +{"label":"William deVry","version":17,"id":"29476","lastModified":"1301902182000","name":"William deVry","type":"Person","_key":"17976"} +{"label":"William Snow","version":22,"id":"29477","lastModified":"1301901681000","name":"William Snow","type":"Person","_key":"17977"} +{"label":"Rachel Blakely","version":20,"id":"29478","lastModified":"1301902196000","name":"Rachel Blakely","type":"Person","_key":"17978"} +{"label":"Jennifer O'Dell","version":22,"id":"29479","lastModified":"1301901799000","name":"Jennifer O'Dell","type":"Person","_key":"17979"} +{"label":"Lani John Tupu","version":20,"id":"29480","lastModified":"1301902160000","name":"Lani John Tupu","type":"Person","_key":"17980"} +{"label":"Laura Vazquez","version":20,"id":"29481","lastModified":"1301901971000","name":"Laura Vazquez","type":"Person","_key":"17981"} +{"label":"The Lost World","description":"This Lost World is a splendid BBC TV dramatisation of Sir Arthur Conan Doyle's famous adventure story. Bob Hoskins makes an unusually genial Professor Challenger, far less of a bully than Doyle's character, but his slightly stereotyped companions are nicely filled out by a solid cast. James Fox is Challenger's more timid but still covertly adventurous rival, Tom Ward is the moustachioed big game hunter who faces an Allosaurus with an elephant gun, and Matthew Rhys plays the tagalong reporter hop","id":"3003","runtime":150,"imdbId":"tt0302739","version":84,"lastModified":"1301028155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ac\/4cd74cd85e73d676d10004ac\/the-lost-world-mid.jpg","genre":"Adventure","title":"The Lost World","releaseDate":1009238400000,"language":"en","type":"Movie","_key":"17982"} +{"label":"Stuart Orme","version":26,"id":"29482","lastModified":"1301901661000","name":"Stuart Orme","type":"Person","_key":"17983"} +{"label":"Tom Ward","version":24,"id":"29527","lastModified":"1301902160000","name":"Tom Ward","type":"Person","_key":"17984"} +{"label":"Matthew Rhys","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48f\/4cd74e0f5e73d676ce00048f\/matthew-rhys-profile.jpg","version":32,"id":"29528","lastModified":"1301901265000","name":"Matthew Rhys","type":"Person","_key":"17985"} +{"label":"12 + 1","description":"No overview found.","id":"3004","runtime":96,"imdbId":"tt0065361","version":86,"lastModified":"1301905651000","studio":"CEF","genre":"Comedy","title":"12 + 1","releaseDate":-7430400000,"language":"en","type":"Movie","_key":"17986"} +{"label":"Sharon Tate","version":27,"id":"29490","lastModified":"1301901356000","name":"Sharon Tate","type":"Person","_key":"17987"} +{"label":"William Rushton","version":19,"id":"29492","lastModified":"1301901745000","name":"William Rushton","type":"Person","_key":"17988"} +{"label":"Tim Brooke-Taylor","version":24,"id":"29493","lastModified":"1301901699000","name":"Tim Brooke-Taylor","type":"Person","_key":"17989"} +{"label":"Nicolas Gessner","version":27,"id":"29494","lastModified":"1301901403000","name":"Nicolas Gessner","type":"Person","_key":"17990"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"No overview found.","id":"3006","runtime":16,"imdbId":"tt0126875","version":134,"lastModified":"1301904631000","studio":"Selig Polyscope Company","genre":"Fantasy","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-1937692800000,"language":"en","type":"Movie","_key":"17991"} +{"label":"Otis Turner","version":23,"id":"29530","lastModified":"1301901699000","name":"Otis Turner","type":"Person","_key":"17992"} +{"label":"Hobart Bosworth","version":23,"id":"29536","lastModified":"1301901971000","name":"Hobart Bosworth","type":"Person","_key":"17993"} +{"label":"By Rocket to the Moon","description":"A scientist discovers that there's gold on the moon, he builds a rocket to fly there, but there's too much rivalry among the crew to have a sucessful expedition.","id":"3007","runtime":91,"imdbId":"tt0019901","version":75,"lastModified":"1301904961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/311\/4bc9181d017a3c57fe009311\/frau-im-mond-mid.jpg","studio":"UFA Universum-Film AG","genre":"Science Fiction","title":"By Rocket to the Moon","releaseDate":-1269043200000,"language":"en","type":"Movie","_key":"17994"} +{"label":"Gerda Maurus","version":20,"id":"29554","lastModified":"1301901431000","name":"Gerda Maurus","type":"Person","_key":"17995"} +{"label":"Tilla Durieux","version":20,"id":"29556","lastModified":"1301901909000","name":"Tilla Durieux","type":"Person","_key":"17996"} +{"label":"Margarete Kupfer","version":23,"id":"29557","lastModified":"1301901745000","name":"Margarete Kupfer","type":"Person","_key":"17997"} +{"label":"Alexa von Porembsky","version":21,"id":"29558","lastModified":"1301901845000","name":"Alexa von Porembsky","type":"Person","_key":"17998"} +{"label":"Gerhard Dammann","version":20,"id":"29559","lastModified":"1301901909000","name":"Gerhard Dammann","type":"Person","_key":"17999"} +{"label":"Alfred Loretto","version":20,"id":"29560","lastModified":"1301901909000","name":"Alfred Loretto","type":"Person","_key":"18000"} +{"label":"Gustl Gstettenbaur","version":24,"id":"46845","lastModified":"1301901788000","name":"Gustl Gstettenbaur","type":"Person","_key":"18001"} +{"label":"10:30 P.M. Summer","description":"No overview found.","id":"3008","runtime":85,"imdbId":"tt0060045","version":75,"lastModified":"1301904963000","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"10:30 P.M. Summer","releaseDate":-100656000000,"language":"en","type":"Movie","_key":"18002"} +{"label":"Melina Mercouri","version":22,"id":"29902","lastModified":"1301901594000","name":"Melina Mercouri","type":"Person","_key":"18003"} +{"label":"Peter Finch","version":37,"id":"29903","lastModified":"1301901463000","name":"Peter Finch","type":"Person","_key":"18004"} +{"label":"Juli\u00e1n Mateos","version":20,"id":"29904","lastModified":"1301901576000","name":"Juli\u00e1n Mateos","type":"Person","_key":"18005"} +{"label":"The Trial","description":"An unassuming office worker is arrested and stands trial, but he is never made aware of his charges.","id":"3009","runtime":118,"imdbId":"tt0057427","version":85,"lastModified":"1301905001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/079\/4c14ab615e73d64a23000079\/le-proces-mid.jpg","studio":"Paris-Europa Productions","genre":"Drama","title":"The Trial","releaseDate":-221875200000,"language":"en","type":"Movie","_key":"18006"} +{"label":"Suzanne Flon","version":34,"id":"30720","lastModified":"1301901401000","name":"Suzanne Flon","type":"Person","_key":"18007"} +{"label":"Madeleine Robinson","version":25,"id":"30721","lastModified":"1301901702000","name":"Madeleine Robinson","type":"Person","_key":"18008"} +{"label":"The Cardinal","description":"A young Catholic priest from Boston confronts bigotry, Naziism, and his own personal conflicts as he rises to the office of cardinal.","id":"3010","runtime":175,"imdbId":"tt0056907","version":409,"lastModified":"1301910415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31a\/4bc91820017a3c57fe00931a\/the-cardinal-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"The Cardinal","releaseDate":-191116800000,"language":"en","type":"Movie","_key":"18009"} +{"label":"Tom Tryon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bd\/4cd403ba7b9aa113a90000bd\/tom-tryon-profile.jpg","version":32,"id":"30778","lastModified":"1301901426000","name":"Tom Tryon","type":"Person","_key":"18010"} +{"label":"Dorothy Gish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4c605bc77b9aa172de000222\/dorothy-gish-profile.jpg","version":22,"id":"30779","lastModified":"1301901834000","name":"Dorothy Gish","type":"Person","_key":"18011"} +{"label":"Maggie McNamara","version":19,"id":"30780","lastModified":"1301901745000","name":"Maggie McNamara","type":"Person","_key":"18012"} +{"label":"Bill Hayes","version":19,"id":"30781","lastModified":"1301901745000","name":"Bill Hayes","type":"Person","_key":"18013"} +{"label":"Cameron Prud'Homme","version":20,"id":"30782","lastModified":"1301901745000","name":"Cameron Prud'Homme","type":"Person","_key":"18014"} +{"label":"Loring Smith","version":20,"id":"30783","lastModified":"1301901745000","name":"Loring Smith","type":"Person","_key":"18015"} +{"label":"Cecil Kellaway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cf\/4c7d41a67b9aa109780001cf\/cecil-kellaway-profile.jpg","version":43,"id":"30228","lastModified":"1301901970000","name":"Cecil Kellaway","type":"Person","_key":"18016"} +{"label":"Jose Duvall","version":20,"id":"30784","lastModified":"1301901822000","name":"Jose Duvall","type":"Person","_key":"18017"} +{"label":"Peter MacLean","version":23,"id":"30785","lastModified":"1301901745000","name":"Peter MacLean","type":"Person","_key":"18018"} +{"label":"Good Neighbor Sam","description":"No overview found.","id":"3011","runtime":130,"imdbId":"tt0058153","version":92,"lastModified":"1301910381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fc\/4d98b5cd5e73d623b00052fc\/good-neighbor-sam-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Good Neighbor Sam","releaseDate":-171849600000,"language":"en","tagline":"Slam! Bam! Here comes Sam!...Caught in the Middle of a Two-Woman Jam!","type":"Movie","_key":"18019"} +{"label":"Dorothy Provine","version":31,"id":"29717","lastModified":"1301901661000","name":"Dorothy Provine","type":"Person","_key":"18020"} +{"label":"Edward Andrews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/176\/4c9cea227b9aa1430b000176\/edward-andrews-profile.jpg","version":38,"id":"29719","lastModified":"1301902046000","name":"Edward Andrews","type":"Person","_key":"18021"} +{"label":"Charles Lane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d6\/4bd5e4b4017a3c657e0000d6\/charles-lane-profile.jpg","version":52,"id":"29579","lastModified":"1301901372000","name":"Charles Lane","type":"Person","_key":"18022"} +{"label":"David Swift","version":40,"id":"29715","lastModified":"1301958059000","name":"David Swift","type":"Person","_key":"18023"} +{"label":"The Victors","description":"Intercutting dramatic vignettes with newsreel footage, the story follows the characters from an infantry squad as they make their way from Sicily to Germany during the end of World War II.","id":"3012","runtime":175,"imdbId":"tt0057652","version":97,"lastModified":"1301907699000","studio":"Columbia Pictures Corporation","genre":"War","title":"The Victors","releaseDate":-192844800000,"language":"en","type":"Movie","_key":"18024"} +{"label":"Carl Foreman","version":63,"birthday":"-1749690000000","id":"4066","birthplace":"Chicago, Illinois, USA","lastModified":"1301901264000","name":"Carl Foreman","type":"Person","_key":"18025"} +{"label":"Rosanna Schiaffino","version":24,"id":"30927","lastModified":"1301901584000","name":"Rosanna Schiaffino","type":"Person","_key":"18026"} +{"label":"Michael Callan","version":41,"id":"30928","lastModified":"1301901461000","name":"Michael Callan","type":"Person","_key":"18027"} +{"label":"James Mitchum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4bd820d2017a3c1c06000071\/james-mitchum-profile.jpg","version":27,"id":"30929","lastModified":"1301901822000","name":"James Mitchum","type":"Person","_key":"18028"} +{"label":"Senta Berger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab7\/4d88a9695e73d6750c000ab7\/senta-berger-profile.jpg","version":48,"id":"12776","lastModified":"1301901302000","name":"Senta Berger","type":"Person","_key":"18029"} +{"label":"Albert Lieven","version":22,"id":"30930","lastModified":"1301902031000","name":"Albert Lieven","type":"Person","_key":"18030"} +{"label":"Bloodline","description":"No overview found.","id":"3013","runtime":116,"imdbId":"tt0078879","version":81,"lastModified":"1301907111000","studio":"NF Geria III-Produktion M\u00fcnchen","genre":"Crime","title":"Bloodline","releaseDate":299462400000,"language":"en","type":"Movie","_key":"18031"} +{"label":"Pinkas Braun","version":26,"id":"29542","lastModified":"1301901583000","name":"Pinkas Braun","type":"Person","_key":"18032"} +{"label":"Michelle Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ab\/4cb8875f7b9aa138d70009ab\/michelle-phillips-profile.jpg","version":26,"id":"29543","lastModified":"1301901519000","name":"Michelle Phillips","type":"Person","_key":"18033"} +{"label":"Claudia Mori","version":21,"id":"29544","lastModified":"1301901822000","name":"Claudia Mori","type":"Person","_key":"18034"} +{"label":"The Man Between","description":"The Man Between is a 1953 British thriller film directed by Carol Reed and starring James Mason, Claire Bloom, Hildegard Knef and Geoffrey Toone. A British woman on a visit to post-war Berlin is caught up in an espionage ring smuggling secrets into and out of the Eastern Bloc.","id":"3014","runtime":100,"imdbId":"tt0046031","version":235,"lastModified":"1301906638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/323\/4bc91820017a3c57fe009323\/the-man-between-mid.jpg","studio":"British Lion Film Corporation","genre":"Thriller","title":"The Man Between","releaseDate":-508723200000,"language":"en","type":"Movie","_key":"18035"} +{"label":"Adrian Pryce-Jones","version":19,"id":"30938","lastModified":"1301901541000","name":"Adrian Pryce-Jones","type":"Person","_key":"18036"} +{"label":"Claire Bloom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/667\/4c5b12b57b9aa151f4000667\/claire-bloom-profile.jpg","version":77,"id":"29545","lastModified":"1301901168000","name":"Claire Bloom","type":"Person","_key":"18037"} +{"label":"Geoffrey Toone","version":27,"id":"29546","lastModified":"1301901623000","name":"Geoffrey Toone","type":"Person","_key":"18038"} +{"label":"Aribert W\u00e4scher","version":21,"id":"30933","lastModified":"1301901541000","name":"Aribert W\u00e4scher","type":"Person","_key":"18039"} +{"label":"Ernst Schr\u00f6der","version":24,"id":"30934","lastModified":"1301902026000","name":"Ernst Schr\u00f6der","type":"Person","_key":"18040"} +{"label":"Dieter Krause","version":20,"id":"30935","lastModified":"1301901680000","name":"Dieter Krause","type":"Person","_key":"18041"} +{"label":"Karl John","version":24,"id":"30936","lastModified":"1301901571000","name":"Karl John","type":"Person","_key":"18042"} +{"label":"Ljuba Welitsch","version":20,"id":"30937","lastModified":"1301901909000","name":"Ljuba Welitsch","type":"Person","_key":"18043"} +{"label":"Der Januskopf","description":"In this uncredited and apparently lost version of Robert Louis Stevenson's \"The Strange Case of Dr. Jekyll and Mr. Hyde\" the protagonist is Dr. Warren, who indulges his evil nature by periodically turning himself into the depraved Mr. O'Connor.","id":"3015","runtime":107,"imdbId":"tt0011348","version":69,"lastModified":"1301906638000","studio":"Lipow-Film","genre":"Horror","title":"Der Januskopf","releaseDate":-1557360000000,"language":"en","type":"Movie","_key":"18044"} +{"label":"Magnus Stifter","version":18,"id":"29563","lastModified":"1301903110000","name":"Magnus Stifter","type":"Person","_key":"18045"} +{"label":"Margarete Schlegel","version":23,"id":"29564","lastModified":"1301901566000","name":"Margarete Schlegel","type":"Person","_key":"18046"} +{"label":"Willy Kaiser-Heyl","version":19,"id":"29565","lastModified":"1301902111000","name":"Willy Kaiser-Heyl","type":"Person","_key":"18047"} +{"label":"Danny Guertler","version":19,"id":"29566","lastModified":"1301901909000","name":"Danny Guertler","type":"Person","_key":"18048"} +{"label":"Jaro F\u00fcrth","version":22,"id":"29567","lastModified":"1301902153000","name":"Jaro F\u00fcrth","type":"Person","_key":"18049"} +{"label":"Hans Lanser-Rudolf","version":19,"id":"29568","lastModified":"1301901909000","name":"Hans Lanser-Rudolf","type":"Person","_key":"18050"} +{"label":"Marga Reuter","version":19,"id":"29569","lastModified":"1301902111000","name":"Marga Reuter","type":"Person","_key":"18051"} +{"label":"Lanja Rudolph","version":19,"id":"29570","lastModified":"1301901909000","name":"Lanja Rudolph","type":"Person","_key":"18052"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"Dr. Jekyll and Mr. Hyde is a 1920 horror silent film based upon Robert Louis Stevenson's novella The Strange Case of Dr Jekyll and Mr Hyde and starring actor John Barrymore.","id":"3016","runtime":67,"imdbId":"tt0011130","version":386,"lastModified":"1301910294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32c\/4bc91821017a3c57fe00932c\/dr-jekyll-und-mr-hyde-mid.jpg","studio":"Famous Players Ltd","genre":"Drama","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-1571270400000,"language":"en","tagline":"The world's greatest actor in a tremendous story of man at his best and worst!","type":"Movie","_key":"18053"} +{"label":"John S. Robertson","version":23,"id":"29571","lastModified":"1301901623000","name":"John S. Robertson","type":"Person","_key":"18054"} +{"label":"Shaw Lovett","version":21,"id":"29576","lastModified":"1301901745000","name":"Shaw Lovett","type":"Person","_key":"18055"} +{"label":"John Barrymore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e72\/4bfed788017a3c702b000e72\/john-barrymore-profile.jpg","version":37,"birthday":"-2773098000000","id":"29578","birthplace":"Philadelphia, Pennsylvania, USA","lastModified":"1301901325000","name":"John Barrymore","type":"Person","_key":"18056"} +{"label":"Brandon Hurst","version":28,"id":"29580","lastModified":"1301901775000","name":"Brandon Hurst","type":"Person","_key":"18057"} +{"label":"Cecil Clovelly","version":22,"id":"29581","lastModified":"1301901541000","name":"Cecil Clovelly","type":"Person","_key":"18058"} +{"label":"Nita Naldi","version":21,"id":"29582","lastModified":"1301901909000","name":"Nita Naldi","type":"Person","_key":"18059"} +{"label":"Alma Aiken","version":21,"id":"29583","lastModified":"1301901909000","name":"Alma Aiken","type":"Person","_key":"18060"} +{"label":"J. Malcolm Dunn","version":19,"id":"29584","lastModified":"1301901909000","name":"J. Malcolm Dunn","type":"Person","_key":"18061"} +{"label":"Martha Mansfield","version":21,"id":"29585","lastModified":"1301901909000","name":"Martha Mansfield","type":"Person","_key":"18062"} +{"label":"Edgard Var\u00e8se","version":19,"id":"29586","lastModified":"1301901909000","name":"Edgard Var\u00e8se","type":"Person","_key":"18063"} +{"label":"Dr. Jekyll and Mr. Hyde","id":"3017","runtime":40,"imdbId":"tt0011131","version":379,"lastModified":"1301910271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4c8fc96a7b9aa17b4a00001d\/dr-jekyll-and-mr-hyde-mid.jpg","genre":"Drama","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-1570060800000,"language":"en","type":"Movie","_key":"18064"} +{"label":"J. Charles Haydon","version":21,"id":"29587","lastModified":"1301901841000","name":"J. Charles Haydon","type":"Person","_key":"18065"} +{"label":"Sheldon Lewis","version":22,"id":"29589","lastModified":"1301901661000","name":"Sheldon Lewis","type":"Person","_key":"18066"} +{"label":"Alex Shannon","version":20,"id":"29590","lastModified":"1301901661000","name":"Alex Shannon","type":"Person","_key":"18067"} +{"label":"Dora Mills Adams","version":17,"id":"29591","lastModified":"1301901691000","name":"Dora Mills Adams","type":"Person","_key":"18068"} +{"label":"Gladys Field","version":20,"id":"29592","lastModified":"1301901794000","name":"Gladys Field","type":"Person","_key":"18069"} +{"label":"Harold Foshay","version":20,"id":"29593","lastModified":"1301901661000","name":"Harold Foshay","type":"Person","_key":"18070"} +{"label":"Leslie Austin","version":20,"id":"29594","lastModified":"1301901970000","name":"Leslie Austin","type":"Person","_key":"18071"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"Dr. Jekyll faces horrible consequences when he lets his dark side run wild with a potion that changes him into the animalistic Mr. Hyde.","id":"3019","runtime":98,"imdbId":"tt0022835","version":127,"lastModified":"1301902198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37b\/4cc6cf4d5e73d64e5e00037b\/dr-jekyll-and-mr-hyde-mid.jpg","studio":"Paramount Vantage","genre":"Drama","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-1199318400000,"language":"en","type":"Movie","_key":"18072"} +{"label":"Rouben Mamoulian","version":32,"id":"29595","lastModified":"1302002174000","name":"Rouben Mamoulian","type":"Person","_key":"18073"} +{"label":"Rose Hobart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f9\/4c6eb9a57b9aa13ab40007f9\/rose-hobart-profile.jpg","version":27,"id":"29599","lastModified":"1301996123000","name":"Rose Hobart","type":"Person","_key":"18074"} +{"label":"Holmes Herbert","version":39,"id":"29600","lastModified":"1301902165000","name":"Holmes Herbert","type":"Person","_key":"18075"} +{"label":"Halliwell Hobbes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4bf70dc6017a3c773300030c\/halliwell-hobbes-profile.jpg","version":32,"id":"29601","lastModified":"1301901451000","name":"Halliwell Hobbes","type":"Person","_key":"18076"} +{"label":"Edgar Norton","version":23,"id":"29602","lastModified":"1301901822000","name":"Edgar Norton","type":"Person","_key":"18077"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"Dr. Jekyll faces horrible consequences when he lets his dark side run wild with a potion that changes him into the animalistic Mr. Hyde","id":"3020","runtime":10,"imdbId":"tt0211340","version":102,"lastModified":"1301908389000","genre":"Drama","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-1199232000000,"language":"en","type":"Movie","_key":"18078"} +{"label":"William Vance","version":26,"id":"29604","lastModified":"1301902160000","name":"William Vance","type":"Person","_key":"18079"} +{"label":"1408","description":"The cynical and skeptical writer Mike Enslin writes books evaluating supernatural phenomena in hotels, graveyards and other haunted places, usually debunking the mystery. While writing his last book, he travels from Los Angeles to New York to spend one night in the evil room 1408 of the Dolphin Hotel, which is permanently unavailable for guests. The reluctant manager Mr. Gerald Olin objects to his request and offers an upgrade, expensive booze and finally the reports relating the death of more t","id":"3021","runtime":94,"imdbId":"tt0450385","trailer":"http:\/\/www.youtube.com\/watch?v=WIASqPZqnhs","homepage":"http:\/\/www.1408-themovie.com\/","version":254,"lastModified":"1301901190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/360\/4bc91829017a3c57fe009360\/1408-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"1408","releaseDate":1182470400000,"language":"en","tagline":"The only demons in room 1408 are those within you.","type":"Movie","_key":"18080"} +{"label":"Mikael H\u00e5fstr\u00f6m","version":49,"id":"29605","lastModified":"1301901214000","name":"Mikael H\u00e5fstr\u00f6m","type":"Person","_key":"18081"} +{"label":"Jasmine Jessica Anthony","version":24,"id":"29612","lastModified":"1301901207000","name":"Jasmine Jessica Anthony","type":"Person","_key":"18082"} +{"label":"Alexandra Silber","version":24,"id":"29613","lastModified":"1301901330000","name":"Alexandra Silber","type":"Person","_key":"18083"} +{"label":"Emily Harvey","version":23,"id":"29614","lastModified":"1301901342000","name":"Emily Harvey","type":"Person","_key":"18084"} +{"label":"Noah Lee Margetts","version":23,"id":"29615","lastModified":"1301901310000","name":"Noah Lee Margetts","type":"Person","_key":"18085"} +{"label":"William Armstrong","version":34,"id":"29616","lastModified":"1301901278000","name":"William Armstrong","type":"Person","_key":"18086"} +{"label":"Paul Birchard","version":26,"id":"29617","lastModified":"1301901437000","name":"Paul Birchard","type":"Person","_key":"18087"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"Dr. Jekyll believes good and evil exist in everyone and creates a potion that allows his evil side, Mr. Hyde, to come to the fore. He faces horrible consequences when he lets his dark side run amok.","id":"3022","runtime":113,"imdbId":"tt0033553","version":138,"lastModified":"1301903338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38c\/4bc91831017a3c57fe00938c\/dr-jekyll-and-mr-hyde-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Dr. Jekyll and Mr. Hyde","releaseDate":-895881600000,"language":"en","type":"Movie","_key":"18088"} +{"label":"Lana Turner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4bd70d0f017a3c21f50000be\/lana-turner-profile.jpg","version":47,"id":"29623","lastModified":"1301901454000","name":"Lana Turner","type":"Person","_key":"18089"} +{"label":"Ian Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4c20c71b7b9aa1369400000f\/ian-hunter-profile.jpg","version":35,"id":"8731","lastModified":"1301996123000","name":"Ian Hunter","type":"Person","_key":"18090"} +{"label":"Peter Godfrey","version":27,"id":"29625","lastModified":"1301901773000","name":"Peter Godfrey","type":"Person","_key":"18091"} +{"label":"William Tannen","version":25,"id":"29626","lastModified":"1301901603000","name":"William Tannen","type":"Person","_key":"18092"} +{"label":"Abbott and Costello Meet Dr. Jekyll and Mr. Hyde","description":"Abbott & Costello are two bumbling (naturally) American cops, on exchange in London, hunting for Mr. Hyde, the monster that has been terrorizing the city.","id":"3023","runtime":76,"imdbId":"tt0045469","version":107,"lastModified":"1301904019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/395\/4bc91832017a3c57fe009395\/abbott-and-costello-meet-dr-jekyll-and-mr-hyde-mid.jpg","studio":"Universal Studios","genre":"Comedy","title":"Abbott and Costello Meet Dr. Jekyll and Mr. Hyde","releaseDate":-518140800000,"language":"en","tagline":"All New ! All Wild ! All Fun !","type":"Movie","_key":"18093"} +{"label":"Charles Lamont","version":40,"id":"29627","lastModified":"1301901528000","name":"Charles Lamont","type":"Person","_key":"18094"} +{"label":"Bud Abbott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4c8476957b9aa1428c000160\/bud-abbott-profile.jpg","version":58,"id":"30111","lastModified":"1301901398000","name":"Bud Abbott","type":"Person","_key":"18095"} +{"label":"Lou Costello","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/078\/4c86436b7b9aa1545a000078\/lou-costello-profile.jpg","version":55,"id":"29642","lastModified":"1301901163000","name":"Lou Costello","type":"Person","_key":"18096"} +{"label":"Craig Stevens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e1\/4bf43c79017a3c320a0006e1\/craig-stevens-profile.jpg","version":28,"id":"29643","lastModified":"1301901921000","name":"Craig Stevens","type":"Person","_key":"18097"} +{"label":"Helen Westcott","version":29,"id":"29644","lastModified":"1301901806000","name":"Helen Westcott","type":"Person","_key":"18098"} +{"label":"John Dierkes","version":33,"id":"29645","lastModified":"1301901553000","name":"John Dierkes","type":"Person","_key":"18099"} +{"label":"The Strange Case of Dr. Jekyll and Mr. Hyde","description":"No overview found.","id":"3024","runtime":120,"imdbId":"tt0062908","version":83,"lastModified":"1301905966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4c8fcb2c7b9aa17b4c000028\/the-strange-case-of-dr-jekyll-and-mr-hyde-mid.jpg","studio":"Canadian Broadcasting Corporation","genre":"Drama","title":"The Strange Case of Dr. Jekyll and Mr. Hyde","releaseDate":-62640000000,"language":"en","type":"Movie","_key":"18100"} +{"label":"Charles Jarrott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a9\/4ca289d05e73d614290002a9\/charles-jarrott-profile.jpg","version":24,"id":"29646","lastModified":"1301901606000","name":"Charles Jarrott","type":"Person","_key":"18101"} +{"label":"Leo Genn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36e\/4c2233537b9aa130e500036e\/leo-genn-profile.jpg","version":29,"id":"29655","lastModified":"1301901412000","name":"Leo Genn","type":"Person","_key":"18102"} +{"label":"Torin Thatcher","version":36,"id":"10925","lastModified":"1301901245000","name":"Torin Thatcher","type":"Person","_key":"18103"} +{"label":"Rex Sevenoaks","version":22,"id":"29656","lastModified":"1301902202000","name":"Rex Sevenoaks","type":"Person","_key":"18104"} +{"label":"Gillie Fenwick","version":20,"id":"29657","lastModified":"1301902188000","name":"Gillie Fenwick","type":"Person","_key":"18105"} +{"label":"Elizabeth Cole","version":17,"id":"29658","lastModified":"1301902186000","name":"Elizabeth Cole","type":"Person","_key":"18106"} +{"label":"Paul Harding","version":20,"id":"29660","lastModified":"1301902188000","name":"Paul Harding","type":"Person","_key":"18107"} +{"label":"Oskar Homolka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cc\/4ca4b2b77b9aa16ed80002cc\/oskar-homolka-profile.jpg","version":32,"id":"29661","lastModified":"1301901529000","name":"Oskar Homolka","type":"Person","_key":"18108"} +{"label":"The Two Faces of Dr. Jekyll","description":"No overview found.","id":"3025","runtime":88,"imdbId":"tt0054416","version":80,"lastModified":"1301905715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/233\/4c193aa37b9aa10913000233\/the-two-faces-of-dr-jekyll-mid.jpg","genre":"Horror","title":"The Two Faces of Dr. Jekyll","releaseDate":-273456000000,"language":"en","type":"Movie","_key":"18109"} +{"label":"Terence Fisher","version":54,"id":"29662","lastModified":"1301901803000","name":"Terence Fisher","type":"Person","_key":"18110"} +{"label":"Paul Massie","version":23,"id":"29672","lastModified":"1301902188000","name":"Paul Massie","type":"Person","_key":"18111"} +{"label":"David Kossoff","version":26,"id":"29675","lastModified":"1301901463000","name":"David Kossoff","type":"Person","_key":"18112"} +{"label":"Norma Marla","version":17,"id":"29676","lastModified":"1301901833000","name":"Norma Marla","type":"Person","_key":"18113"} +{"label":"Magda Miller","version":20,"id":"29677","lastModified":"1301902188000","name":"Magda Miller","type":"Person","_key":"18114"} +{"label":"Dawn Addams","version":30,"id":"72717","lastModified":"1301901842000","name":"Dawn Addams","type":"Person","_key":"18115"} +{"label":"Experiment in Evil","description":"A large house in a respectable suburb of Paris is the residence of Dr. Cordelier, an eminent psychiatrist who has withdrawn from society to pursue his secret research into the functioning of the human brain. His lifelong friend, the lawyer Ma\u00eetre Joly, becomes concerned when Cordelier draws up a will in which he bequeaths his entire estate to a stranger, Monsieur Opale. When Joly discovers that Opale is a misshapen, sadistic brute, who willfully attacks children and women, he cannot understand w","id":"3026","runtime":95,"imdbId":"tt0053348","version":49,"lastModified":"1301905070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/344\/4d98b4f37b9aa119a0006344\/le-testament-du-docteur-cordelier-mid.jpg","studio":"Compagnie Jean Renoir","genre":"Drama","title":"Experiment in Evil","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"18116"} +{"label":"Teddy Bilis","version":21,"id":"29679","lastModified":"1301901970000","name":"Teddy Bilis","type":"Person","_key":"18117"} +{"label":"Sylviane Margoll\u00e9","version":18,"id":"29680","lastModified":"1301901982000","name":"Sylviane Margoll\u00e9","type":"Person","_key":"18118"} +{"label":"Jacques Danoville","version":21,"id":"29681","lastModified":"1301901661000","name":"Jacques Danoville","type":"Person","_key":"18119"} +{"label":"Andr\u00e9 Certes","version":18,"id":"29682","lastModified":"1301901833000","name":"Andr\u00e9 Certes","type":"Person","_key":"18120"} +{"label":"Jean-Pierre Granval","version":21,"id":"29683","lastModified":"1301901794000","name":"Jean-Pierre Granval","type":"Person","_key":"18121"} +{"label":"Dr. Jekyll and Mr. Hyde","description":"No overview found.","id":"3027","runtime":90,"imdbId":"tt0070002","version":295,"lastModified":"1301908041000","genre":"Horror","title":"Dr. Jekyll and Mr. Hyde","releaseDate":100310400000,"language":"en","type":"Movie","_key":"18122"} +{"label":"David Winters","version":31,"id":"29700","lastModified":"1301901970000","name":"David Winters","type":"Person","_key":"18123"} +{"label":"Susan Hampshire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4c24ef3e7b9aa145490000fb\/susan-hampshire-profile.jpg","version":35,"id":"29703","lastModified":"1301901411000","name":"Susan Hampshire","type":"Person","_key":"18124"} +{"label":"Geoffrey Moore","version":20,"id":"29704","lastModified":"1301902017000","name":"Geoffrey Moore","type":"Person","_key":"18125"} +{"label":"Jekyll and Hyde ... Together Again","description":"No overview found.","id":"3028","runtime":87,"imdbId":"tt0084171","version":111,"lastModified":"1301905081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39e\/4bc91833017a3c57fe00939e\/jekyll-and-hyde-together-again-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Jekyll and Hyde ... Together Again","releaseDate":408153600000,"language":"en","type":"Movie","_key":"18126"} +{"label":"Jerry Belson","version":29,"id":"29705","lastModified":"1301901812000","name":"Jerry Belson","type":"Person","_key":"18127"} +{"label":"Mark Blankfield","version":31,"id":"29709","lastModified":"1301901584000","name":"Mark Blankfield","type":"Person","_key":"18128"} +{"label":"Bess Armstrong","version":32,"id":"29710","lastModified":"1301901563000","name":"Bess Armstrong","type":"Person","_key":"18129"} +{"label":"Krista Errickson","version":17,"id":"29711","lastModified":"1301902167000","name":"Krista Errickson","type":"Person","_key":"18130"} +{"label":"Michael McGuire","version":21,"id":"29713","lastModified":"1301901909000","name":"Michael McGuire","type":"Person","_key":"18131"} +{"label":"Neil Hunt","version":20,"id":"29714","lastModified":"1301902188000","name":"Neil Hunt","type":"Person","_key":"18132"} +{"label":"End of the World","description":"The plot concerns a comet hurling toward Earth on a collision course and the different reactions to people on the impending disaster.","id":"3029","runtime":105,"imdbId":"tt0021864","version":189,"lastModified":"1301906087000","studio":"L'\u00c9cran d'Art","genre":"Science Fiction","title":"End of the World","releaseDate":-1228867200000,"language":"en","type":"Movie","_key":"18133"} +{"label":"Abel Gance","version":40,"id":"29720","lastModified":"1301901223000","name":"Abel Gance","type":"Person","_key":"18134"} +{"label":"Colette Darfeuil","version":20,"id":"29738","lastModified":"1301902111000","name":"Colette Darfeuil","type":"Person","_key":"18135"} +{"label":"Jeanne Brindeau","version":20,"id":"29739","lastModified":"1301902111000","name":"Jeanne Brindeau","type":"Person","_key":"18136"} +{"label":"Samson Fainsilber","version":22,"id":"29740","lastModified":"1301902186000","name":"Samson Fainsilber","type":"Person","_key":"18137"} +{"label":"Georges Colin","version":20,"id":"29741","lastModified":"1301902111000","name":"Georges Colin","type":"Person","_key":"18138"} +{"label":"Victor Francen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4c45bdd77b9aa15de10000b6\/victor-francen-profile.jpg","version":31,"id":"29743","lastModified":"1301901579000","name":"Victor Francen","type":"Person","_key":"18139"} +{"label":"End of the World","description":"No overview found.","id":"3030","runtime":88,"imdbId":"tt0075990","version":130,"lastModified":"1301905725000","studio":"Charles Band Productions","genre":"Science Fiction","title":"End of the World","releaseDate":239241600000,"language":"en","type":"Movie","_key":"18140"} +{"label":"John Hayes","version":25,"id":"29744","lastModified":"1301902020000","name":"John Hayes","type":"Person","_key":"18141"} +{"label":"Kirk Scott","version":20,"id":"29752","lastModified":"1301902179000","name":"Kirk Scott","type":"Person","_key":"18142"} +{"label":"Liz Ross","version":20,"id":"29753","lastModified":"1301902010000","name":"Liz Ross","type":"Person","_key":"18143"} +{"label":"Jon Van Ness","version":21,"id":"29754","lastModified":"1301901982000","name":"Jon Van Ness","type":"Person","_key":"18144"} +{"label":"Island of Lost Souls","description":"No overview found.","id":"3031","runtime":70,"imdbId":"tt0024188","trailer":"http:\/\/www.youtube.com\/watch?v=2440","version":74,"lastModified":"1301907111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a7\/4bc91834017a3c57fe0093a7\/island-of-lost-souls-mid.jpg","studio":"Paramount Pictures","genre":"Adventure","title":"Island of Lost Souls","releaseDate":-1170288000000,"language":"en","type":"Movie","_key":"18145"} +{"label":"Erle C. Kenton","version":31,"id":"29755","lastModified":"1301901526000","name":"Erle C. Kenton","type":"Person","_key":"18146"} +{"label":"Richard Arlen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/354\/4c614c417b9aa172dc000354\/richard-arlen-profile.jpg","version":27,"id":"29760","lastModified":"1301901715000","name":"Richard Arlen","type":"Person","_key":"18147"} +{"label":"Kathleen Burke","version":21,"id":"29761","lastModified":"1301902032000","name":"Kathleen Burke","type":"Person","_key":"18148"} +{"label":"Stanley Fields","version":26,"id":"29762","lastModified":"1301901855000","name":"Stanley Fields","type":"Person","_key":"18149"} +{"label":"Hans Steinke","version":19,"id":"29763","lastModified":"1301902111000","name":"Hans Steinke","type":"Person","_key":"18150"} +{"label":"Tetsu Komai","version":19,"id":"29764","lastModified":"1301902111000","name":"Tetsu Komai","type":"Person","_key":"18151"} +{"label":"Angel in Green","description":"No overview found.","id":"3032","runtime":96,"imdbId":"tt0092564","version":69,"lastModified":"1301907430000","genre":"Action","title":"Angel in Green","releaseDate":559267200000,"language":"en","type":"Movie","_key":"18152"} +{"label":"Marvin J. Chomsky","version":23,"id":"29765","lastModified":"1301901661000","name":"Marvin J. Chomsky","type":"Person","_key":"18153"} +{"label":"Dan Lauria","version":25,"id":"29774","lastModified":"1301901661000","name":"Dan Lauria","type":"Person","_key":"18154"} +{"label":"Bobby Hosea","version":23,"id":"29775","lastModified":"1301902160000","name":"Bobby Hosea","type":"Person","_key":"18155"} +{"label":"Michael Novak","version":20,"id":"29776","lastModified":"1301901822000","name":"Michael Novak","type":"Person","_key":"18156"} +{"label":"Jos\u00e9 Angel Santana","version":17,"id":"29777","lastModified":"1301901805000","name":"Jos\u00e9 Angel Santana","type":"Person","_key":"18157"} +{"label":"Rick Adams","version":20,"id":"29778","lastModified":"1301901824000","name":"Rick Adams","type":"Person","_key":"18158"} +{"label":"Milo O'Shea","version":34,"id":"47137","lastModified":"1301901952000","name":"Milo O'Shea","type":"Person","_key":"18159"} +{"label":"Gods and Monsters","description":"It's 1957, and Whale's heyday as the director of \"Frankenstein,\" \"Bride of Frankenstein\" and \"The Invisible Man\" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.","id":"3033","runtime":105,"imdbId":"tt0120684","homepage":"http:\/\/www.godsandmonsters.net\/","version":416,"lastModified":"1301903285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e11\/4d4cb6495e73d617bd001e11\/gods-and-monsters-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Gods and Monsters","releaseDate":885340800000,"language":"en","type":"Movie","_key":"18160"} +{"label":"Lynn Redgrave","version":41,"id":"29791","lastModified":"1301901402000","name":"Lynn Redgrave","type":"Person","_key":"18161"} +{"label":"David Dukes","version":28,"id":"29792","lastModified":"1301901775000","name":"David Dukes","type":"Person","_key":"18162"} +{"label":"Mark Kiely","version":20,"id":"29794","lastModified":"1301902009000","name":"Mark Kiely","type":"Person","_key":"18163"} +{"label":"Jack Plotnick","version":25,"id":"29795","lastModified":"1301901945000","name":"Jack Plotnick","type":"Person","_key":"18164"} +{"label":"Rosalind Ayres","version":21,"id":"29796","lastModified":"1301901909000","name":"Rosalind Ayres","type":"Person","_key":"18165"} +{"label":"Matt McKenzie","version":23,"id":"29797","lastModified":"1301901782000","name":"Matt McKenzie","type":"Person","_key":"18166"} +{"label":"Young Frankenstein","description":"Mel Brooks takes on the classic horror flick in this comedic retelling of the Frankenstein story.","id":"3034","runtime":106,"imdbId":"tt0072431","trailer":"http:\/\/www.youtube.com\/watch?v=1298","version":840,"lastModified":"1301902510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cb\/4bc91839017a3c57fe0093cb\/young-frankenstein-mid.jpg","studio":"Crossbow Productions","genre":"Comedy","title":"Young Frankenstein","releaseDate":156297600000,"language":"en","tagline":"The scariest comedy of all time!","type":"Movie","_key":"18167"} +{"label":"Marty Feldman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/496\/4d4680395e73d67063002496\/marty-feldman-profile.jpg","version":41,"id":"29802","lastModified":"1301901360000","name":"Marty Feldman","type":"Person","_key":"18168"} +{"label":"Madeline Kahn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f4\/4bcc762d017a3c0f260000f4\/madeline-kahn-profile.jpg","version":80,"id":"29803","lastModified":"1302002585000","name":"Madeline Kahn","type":"Person","_key":"18169"} +{"label":"Frankenstein","description":"Dr. Frankenstein, an obsessed scientist, creates a living being from parts of exhumed corpses. The movie revolves around this monster and his struggle to live again.","id":"3035","runtime":71,"imdbId":"tt0021884","trailer":"http:\/\/www.youtube.com\/watch?v=tTNN5h8CG_Y","version":564,"lastModified":"1302044162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dc\/4bc9183b017a3c57fe0093dc\/frankenstein-mid.jpg","studio":"Universal Film","genre":"Horror","title":"Frankenstein","releaseDate":-1202774400000,"language":"en","type":"Movie","_key":"18170"} +{"label":"Mae Clarke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/96a\/4be4c9f5017a3c35bf00096a\/mae-clarke-profile.jpg","version":26,"id":"29814","lastModified":"1301902170000","name":"Mae Clarke","type":"Person","_key":"18171"} +{"label":"John Boles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a7\/4c6155897b9aa172dd0003a7\/john-boles-profile.jpg","version":26,"id":"29815","lastModified":"1301902054000","name":"John Boles","type":"Person","_key":"18172"} +{"label":"Frederick Kerr","version":21,"id":"29816","lastModified":"1301902022000","name":"Frederick Kerr","type":"Person","_key":"18173"} +{"label":"Lionel Belmore","version":26,"id":"29817","lastModified":"1301996123000","name":"Lionel Belmore","type":"Person","_key":"18174"} +{"label":"Michael Mark","version":45,"id":"30163","lastModified":"1301996123000","name":"Michael Mark","type":"Person","_key":"18175"} +{"label":"Frankenstein","description":"Based on Mary Shelley's novel, \"Frankenstein\" tells the story of Victor Frankenstein, a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.","id":"3036","runtime":123,"imdbId":"tt0109836","trailer":"http:\/\/www.youtube.com\/watch?v=Lg17y6iz7Xs","version":303,"lastModified":"1301903564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4cc464a35e73d6350600102a\/frankenstein-mid.jpg","studio":"American Zoetrope","genre":"Horror","title":"Frankenstein","releaseDate":783907200000,"language":"en","type":"Movie","_key":"18176"} +{"label":"Richard Briers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/691\/4ce51bc07b9aa168b1000691\/richard-briers-profile.jpg","version":33,"id":"29859","lastModified":"1301901336000","name":"Richard Briers","type":"Person","_key":"18177"} +{"label":"Trevyn McDowell","version":22,"id":"29860","lastModified":"1301901697000","name":"Trevyn McDowell","type":"Person","_key":"18178"} +{"label":"Yella","description":"Narrowly escaping her volatile ex-husband, Yella flees her small hometown in former East Germany for a new life in the West. She finds a promising job with Philipp, a handsome business executive with whom an unlikely romance soon blossoms. But just as Yella seems poised to realize her dreams, she finds herself haunted by buried truths that threaten to destroy her newfound happiness.","id":"3037","runtime":89,"imdbId":"tt0806686","homepage":"http:\/\/www.yella-der-film.de\/","version":529,"lastModified":"1301904071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c0\/4c0a5035017a3c7e920008c0\/yella-mid.jpg","studio":"Medienboard Berlin-Brandenburg GmbH","genre":"Drama","title":"Yella","releaseDate":1203120000000,"language":"en","type":"Movie","_key":"18179"} +{"label":"Selin Bademsoy","version":17,"id":"29827","lastModified":"1301902167000","name":"Selin Bademsoy","type":"Person","_key":"18180"} +{"label":"Night Watch","description":"A fantasy-thriller set in present-day Moscow where the respective forces that control daytime and night time do battle. ","id":"3040","runtime":114,"imdbId":"tt0403358","trailer":"http:\/\/www.youtube.com\/watch?v=yMHQsjgQDrA?hd=1","version":259,"lastModified":"1301902633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab4\/4d1fee457b9aa17375001ab4\/nochnoy-dozor-mid.jpg","studio":"Bazelevs Production","genre":"Action","title":"Night Watch","releaseDate":1089244800000,"language":"en","type":"Movie","_key":"18181"} +{"label":"Dmitriy Martynov","version":23,"id":"31859","lastModified":"1301902031000","name":"Dmitriy Martynov","type":"Person","_key":"18182"} +{"label":"Aleksandr Samoylenko","version":22,"id":"31860","lastModified":"1301901982000","name":"Aleksandr Samoylenko","type":"Person","_key":"18183"} +{"label":"Ilya Lagutenko","version":24,"id":"31899","lastModified":"1301901937000","name":"Ilya Lagutenko","type":"Person","_key":"18184"} +{"label":"En la Cama","description":"No overview found.","id":"3041","runtime":85,"imdbId":"tt0474642","homepage":"http:\/\/www.enlacama.cl\/","version":109,"lastModified":"1301905900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b67\/4d0d165f5e73d63716000b67\/en-la-cama-mid.jpg","studio":"Ceneca Producciones","genre":"Drama","title":"En la Cama","releaseDate":1130198400000,"language":"en","type":"Movie","_key":"18185"} +{"label":"Blanca Lewin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b9\/4d3de8dd7b9aa15bad0002b9\/blanca-lewin-profile.jpg","biography":"She studied at <a href=\"http:\/\/en.wikipedia.org\/wiki\/Pontificia_Universidad_Cat%C3%B3lica_de_Chile\" title=\"Pontificia Universidad Cat\u00f3lica de Chile\" class=\"mw-redirect\">Pontificia\n Universidad Cat\u00f3lica de Chile<\/a>. She is best known by her role of \n\"Lola Padilla\" in the soap opera called <a href=\"http:\/\/en.wikipedia.org\/w\/index.php?title=Lola_%28telenovela%29&action=edit&redlink=1\" class=\"new\" title=\"Lola (telenovela) (page does not exist)\">Lola<\/a> by\n <a href=\"http:\/\/en.wikipedia.org\/","version":24,"birthday":"145926000000","id":"32164","birthplace":"Santiago, Chile","lastModified":"1301901531000","name":"Blanca Lewin","type":"Person","_key":"18186"} +{"label":"Gonzalo Valenzuela","version":21,"id":"32165","lastModified":"1301901584000","name":"Gonzalo Valenzuela","type":"Person","_key":"18187"} +{"label":"Mat\u00edas Bize","version":22,"id":"32166","lastModified":"1301901531000","name":"Mat\u00edas Bize","type":"Person","_key":"18188"} +{"label":"Frankenstein","description":"No overview found.","id":"3042","runtime":117,"imdbId":"tt0106959","version":106,"lastModified":"1301906676000","studio":"Turner Network Television","genre":"Drama","title":"Frankenstein","releaseDate":725587200000,"language":"en","type":"Movie","_key":"18189"} +{"label":"David Wickes","version":20,"id":"29863","lastModified":"1301901572000","name":"David Wickes","type":"Person","_key":"18190"} +{"label":"Fiona Gillies","version":17,"id":"29870","lastModified":"1301902167000","name":"Fiona Gillies","type":"Person","_key":"18191"} +{"label":"Jacinta Mulcahy","version":20,"id":"29871","lastModified":"1301902188000","name":"Jacinta Mulcahy","type":"Person","_key":"18192"} +{"label":"Ronald Leigh-Hunt","version":19,"id":"29872","lastModified":"1301901668000","name":"Ronald Leigh-Hunt","type":"Person","_key":"18193"} +{"label":"Timothy Stark","version":20,"id":"29873","lastModified":"1301902188000","name":"Timothy Stark","type":"Person","_key":"18194"} +{"label":"Flesh for Frankenstein","description":"No overview found.","id":"3043","runtime":95,"imdbId":"tt0071508","version":572,"lastModified":"1301903856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42c\/4bc9184a017a3c57fe00942c\/flesh-for-frankenstein-mid.jpg","studio":"Braunsberg Productions","genre":"Horror","title":"Flesh for Frankenstein","releaseDate":123465600000,"language":"en","type":"Movie","_key":"18195"} +{"label":"Joe Dallesandro","version":37,"id":"29915","lastModified":"1301901503000","name":"Joe Dallesandro","type":"Person","_key":"18196"} +{"label":"Monique van Vooren","version":20,"id":"29916","lastModified":"1301901487000","name":"Monique van Vooren","type":"Person","_key":"18197"} +{"label":"Arno Juerging","version":19,"id":"29917","lastModified":"1301901909000","name":"Arno Juerging","type":"Person","_key":"18198"} +{"label":"Dalila Di Lazzaro","version":23,"id":"29918","lastModified":"1301901856000","name":"Dalila Di Lazzaro","type":"Person","_key":"18199"} +{"label":"Srdjan Zelenovic","version":19,"id":"29919","lastModified":"1301901745000","name":"Srdjan Zelenovic","type":"Person","_key":"18200"} +{"label":"Nicoletta Elmi","version":24,"id":"29920","lastModified":"1301902129000","name":"Nicoletta Elmi","type":"Person","_key":"18201"} +{"label":"Marco Liofredi","version":19,"id":"29921","lastModified":"1301902111000","name":"Marco Liofredi","type":"Person","_key":"18202"} +{"label":"The Great Global Warming Swindle","description":"This film tries to blow the whistle on what it calls the biggest swindle in modern history: 'Man Made Global Warming'. Watch this film and make up your own mind.","id":"3048","runtime":74,"imdbId":"tt1020027","homepage":"http:\/\/www.greatglobalwarmingswindle.co.uk\/","version":93,"lastModified":"1301905101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/435\/4bc9184a017a3c57fe009435\/the-great-global-warming-swindle-mid.jpg","studio":"Channel Four Films","genre":"Documentary","title":"The Great Global Warming Swindle","releaseDate":1173312000000,"language":"en","type":"Movie","_key":"18203"} +{"label":"Martin Durkin","version":21,"id":"29881","lastModified":"1301902160000","name":"Martin Durkin","type":"Person","_key":"18204"} +{"label":"Tim Ball","version":20,"id":"29898","lastModified":"1301901794000","name":"Tim Ball","type":"Person","_key":"18205"} +{"label":"Nir Shaviv","version":20,"id":"29899","lastModified":"1301902160000","name":"Nir Shaviv","type":"Person","_key":"18206"} +{"label":"Ace Ventura: Pet Detective","description":"He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man . . . or beast!","id":"3049","runtime":86,"imdbId":"tt0109040","trailer":"http:\/\/www.youtube.com\/watch?v=o09RCDnkMj0","version":273,"lastModified":"1301901943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03f\/4bed999f017a3c458a00003f\/ace-ventura-pet-detective-mid.jpg","studio":"Morgan Creek Productions","genre":"Comedy","title":"Ace Ventura: Pet Detective","releaseDate":760320000000,"language":"en","tagline":"He's the best there is! (Actually, he's the only one there is.)","type":"Movie","_key":"18207"} +{"label":"Troy Evans","version":39,"id":"31006","lastModified":"1301901350000","name":"Troy Evans","type":"Person","_key":"18208"} +{"label":"John Capodice","version":33,"id":"31007","lastModified":"1301901261000","name":"John Capodice","type":"Person","_key":"18209"} +{"label":"Bill Zuckert","version":28,"id":"16070","lastModified":"1301901271000","name":"Bill Zuckert","type":"Person","_key":"18210"} +{"label":"Doctor Dolittle","description":"A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!","id":"3050","runtime":85,"imdbId":"tt0118998","version":461,"lastModified":"1301902556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45d\/4bc91850017a3c57fe00945d\/doctor-dolittle-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Doctor Dolittle","releaseDate":897696000000,"language":"en","type":"Movie","_key":"18211"} +{"label":"Richard Schiff","version":54,"id":"31028","lastModified":"1301901230000","name":"Richard Schiff","type":"Person","_key":"18212"} +{"label":"Kristen Wilson","version":36,"id":"31029","lastModified":"1301901273000","name":"Kristen Wilson","type":"Person","_key":"18213"} +{"label":"Kyla Pratt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/247\/4c0139e8017a3c702f001247\/kyla-pratt-profile.jpg","version":35,"id":"31031","lastModified":"1301901349000","name":"Kyla Pratt","type":"Person","_key":"18214"} +{"label":"Steven Gilborn","version":21,"id":"31032","lastModified":"1301901909000","name":"Steven Gilborn","type":"Person","_key":"18215"} +{"label":"Raven-Symon\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a87\/4d1469f27b9aa11486001a87\/raven-symon-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Raven-Symon\u00e9 Christina Pearman<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born on December 10, 1985 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Atlanta<\/st1:City>, <st1:country-region w:st=\"on\">Georgia<\/st1:country-region><\/st1:place>. Known professionally as <B>Raven-Symon\u00e9<\/B>, or s","version":82,"id":"66896","lastModified":"1301901163000","name":"Raven-Symon\u00e9","type":"Person","_key":"18216"} +{"label":"Betty Thomas","version":54,"id":"31024","lastModified":"1301901230000","name":"Betty Thomas","type":"Person","_key":"18217"} +{"label":"Eye of the Devil","description":"No overview found.","id":"3051","runtime":96,"imdbId":"tt0061634","version":167,"lastModified":"1301906088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/462\/4bc91850017a3c57fe009462\/eye-of-the-devil-mid.jpg","studio":"Filmways Pictures","genre":"Horror","title":"Eye of the Devil","releaseDate":-65404800000,"language":"en","type":"Movie","_key":"18218"} +{"label":"Edward Mulhare","version":28,"id":"30125","lastModified":"1301901765000","name":"Edward Mulhare","type":"Person","_key":"18219"} +{"label":"Don't Make Waves","description":"New York tourist Tony Curtis falls asleep on a Southern California beach on his first night in the West and wakes up to The New Phantasmagoria--catamarans, surfers (including a dog), bodybuilders, acrobats, motorcycle chicken races, a nut fishing in the shallows . . . and Sharon Tate as a skydiver named Malibu who gives Curtis the rapture of artificial respiration when he is conked on the head by a flying surfboard.","id":"3052","runtime":97,"imdbId":"tt0061590","version":94,"lastModified":"1301907430000","studio":"Filmways Pictures","genre":"Comedy","title":"Don't Make Waves","releaseDate":-80006400000,"language":"en","type":"Movie","_key":"18220"} +{"label":"The Fearless Vampire Killers","description":"A noted professor and his dim-witted apprentice fall prey to their inquiring vampires, while on the trail of the ominous damsel in distress.","id":"3053","runtime":108,"imdbId":"tt0061655","version":294,"lastModified":"1301905851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46b\/4bc91851017a3c57fe00946b\/the-fearless-vampire-killers-mid.jpg","studio":"Filmways Pictures","genre":"Comedy","title":"The Fearless Vampire Killers","releaseDate":-92016000000,"language":"en","type":"Movie","_key":"18221"} +{"label":"Iain Quarrier","version":24,"id":"30120","lastModified":"1301901927000","name":"Iain Quarrier","type":"Person","_key":"18222"} +{"label":"Ferdy Mayne","version":37,"id":"26557","lastModified":"1301901529000","name":"Ferdy Mayne","type":"Person","_key":"18223"} +{"label":"Alfie Bass","version":34,"id":"30119","lastModified":"1301901974000","name":"Alfie Bass","type":"Person","_key":"18224"} +{"label":"The Wrecking Crew","description":"No overview found.","id":"3054","runtime":105,"imdbId":"tt0065225","version":189,"lastModified":"1301904952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/602\/4d05f2e35e73d621a3003602\/the-wrecking-crew-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"The Wrecking Crew","releaseDate":-30153600000,"language":"en","type":"Movie","_key":"18225"} +{"label":"Phil Karlson","version":46,"id":"29907","lastModified":"1301901111000","name":"Phil Karlson","type":"Person","_key":"18226"} +{"label":"Nancy Kwan","version":25,"id":"29908","lastModified":"1301901716000","name":"Nancy Kwan","type":"Person","_key":"18227"} +{"label":"Nigel Green","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/391\/4cb610977b9aa138d9000391\/nigel-green-profile.jpg","version":48,"id":"29909","lastModified":"1301901448000","name":"Nigel Green","type":"Person","_key":"18228"} +{"label":"Tina Louise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/721\/4be2c069017a3c35b5000721\/tina-louise-profile.jpg","version":23,"id":"29910","lastModified":"1301902007000","name":"Tina Louise","type":"Person","_key":"18229"} +{"label":"Valley of the Dolls","description":"Film version of Jacqueline Susann's best-selling novel chronicling the rise and fall of three young ladies in show business.","id":"3055","runtime":123,"imdbId":"tt0062430","version":175,"lastModified":"1301904191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/474\/4bc91855017a3c57fe009474\/valley-of-the-dolls-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Valley of the Dolls","releaseDate":-64627200000,"language":"en","type":"Movie","_key":"18230"} +{"label":"Barbara Parkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4c5b1ace7b9aa151f6000607\/barbara-parkins-profile.jpg","version":29,"id":"30121","lastModified":"1301901858000","name":"Barbara Parkins","type":"Person","_key":"18231"} +{"label":"Tony Scotti","version":20,"id":"30122","lastModified":"1301902190000","name":"Tony Scotti","type":"Person","_key":"18232"} +{"label":"Lee Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f4f\/4c740cd67b9aa13ab8000f4f\/lee-grant-profile.jpg","version":44,"id":"30123","lastModified":"1301901411000","name":"Lee Grant","type":"Person","_key":"18233"} +{"label":"Susan Hayward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/060\/4bd5c694017a3c658a000060\/susan-hayward-profile.jpg","version":50,"id":"30124","lastModified":"1301901505000","name":"Susan Hayward","type":"Person","_key":"18234"} +{"label":"Frankenstein","description":"No overview found.","id":"3056","runtime":88,"imdbId":"tt0397430","version":169,"lastModified":"1302021925000","studio":"L.I.F.T. Production","genre":"Action","title":"Frankenstein","releaseDate":1097366400000,"language":"en","type":"Movie","_key":"18235"} +{"label":"Ivana Milicevic","version":45,"id":"29930","lastModified":"1301901263000","name":"Ivana Milicevic","type":"Person","_key":"18236"} +{"label":"Deborah Duke","version":21,"id":"29931","lastModified":"1301902179000","name":"Deborah Duke","type":"Person","_key":"18237"} +{"label":"Ann Mahoney","version":20,"id":"29932","lastModified":"1301902177000","name":"Ann Mahoney","type":"Person","_key":"18238"} +{"label":"Deneen Tyler","version":26,"id":"29933","lastModified":"1301901595000","name":"Deneen Tyler","type":"Person","_key":"18239"} +{"label":"Brett Rice","version":31,"id":"29934","lastModified":"1301901666000","name":"Brett Rice","type":"Person","_key":"18240"} +{"label":"Frankenstein","description":"Frankenstein is a 2004 U.S. television miniseries (edited into a film) based on the book Frankenstein by Mary Shelley. It follows the original book more closely than other adaptions. The story is of a scientist who brings life to a creature fashioned from corpses and various body parts.","id":"3057","runtime":204,"imdbId":"tt0368730","version":161,"lastModified":"1302021904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47d\/4bc91856017a3c57fe00947d\/frankenstein-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Drama","title":"Frankenstein","releaseDate":1096934400000,"language":"en","type":"Movie","_key":"18241"} +{"label":"Kevin Connor","version":37,"id":"95329","lastModified":"1301902420000","name":"Kevin Connor","type":"Person","_key":"18242"} +{"label":"Luke Goss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4d0b8f745e73d636e9000002\/luke-goss-profile.jpg","version":67,"id":"10843","lastModified":"1301901087000","name":"Luke Goss","type":"Person","_key":"18243"} +{"label":"Nicole Lewis","version":19,"id":"29944","lastModified":"1301901541000","name":"Nicole Lewis","type":"Person","_key":"18244"} +{"label":"Monika Hilmerov\u00e1","version":18,"id":"29945","lastModified":"1301902167000","name":"Monika Hilmerov\u00e1","type":"Person","_key":"18245"} +{"label":"Tomas Mastalir","version":17,"id":"29946","lastModified":"1301901576000","name":"Tomas Mastalir","type":"Person","_key":"18246"} +{"label":"Frankenstein","description":"No overview found.","id":"3058","runtime":15,"imdbId":"tt0422273","version":83,"lastModified":"1301908348000","genre":"Animation","title":"Frankenstein","releaseDate":694224000000,"language":"en","type":"Movie","_key":"18247"} +{"label":"John Schnall","version":23,"id":"29947","lastModified":"1301902144000","name":"John Schnall","type":"Person","_key":"18248"} +{"label":"Derek Tague","version":20,"id":"29948","lastModified":"1301901822000","name":"Derek Tague","type":"Person","_key":"18249"} +{"label":"Intolerance","description":"The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.","id":"3059","runtime":163,"imdbId":"tt0006864","version":516,"lastModified":"1301903567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/192\/4c5718c65e73d63a6f000192\/intolerance-mid.jpg","studio":"Triangle Film Corporation","genre":"Drama","title":"Intolerance","releaseDate":-1685404800000,"language":"en","type":"Movie","_key":"18250"} +{"label":"Robert Harron","version":25,"id":"29950","lastModified":"1301901714000","name":"Robert Harron","type":"Person","_key":"18251"} +{"label":"F.A. Turner","version":19,"id":"29951","lastModified":"1301901668000","name":"F.A. Turner","type":"Person","_key":"18252"} +{"label":"Sam De Grasse","version":19,"id":"29952","lastModified":"1301902167000","name":"Sam De Grasse","type":"Person","_key":"18253"} +{"label":"Vera Lewis","version":26,"id":"29953","lastModified":"1301902196000","name":"Vera Lewis","type":"Person","_key":"18254"} +{"label":"Lillian Langdon","version":22,"id":"29954","lastModified":"1301902130000","name":"Lillian Langdon","type":"Person","_key":"18255"} +{"label":"Olga Grey","version":21,"id":"29955","lastModified":"1301902130000","name":"Olga Grey","type":"Person","_key":"18256"} +{"label":"Erich von Ritzau","version":21,"id":"29956","lastModified":"1301902130000","name":"Erich von Ritzau","type":"Person","_key":"18257"} +{"label":"Margery Wilson","version":21,"id":"29957","lastModified":"1301902130000","name":"Margery Wilson","type":"Person","_key":"18258"} +{"label":"Ruth Handforth","version":21,"id":"29958","lastModified":"1301902130000","name":"Ruth Handforth","type":"Person","_key":"18259"} +{"label":"Alfred Paget","version":22,"id":"29959","lastModified":"1301902130000","name":"Alfred Paget","type":"Person","_key":"18260"} +{"label":"Seena Owen","version":21,"id":"29960","lastModified":"1301902130000","name":"Seena Owen","type":"Person","_key":"18261"} +{"label":"Carl Stockdale","version":24,"id":"29961","lastModified":"1301902171000","name":"Carl Stockdale","type":"Person","_key":"18262"} +{"label":"The Big Parade","description":"The story of an idle rich boy who joins the US Army's Rainbow Division and is sent to France to fight in World War I, becomes friends with two working class men, experiences the horrors of trench warfare, and finds love with a French girl.","id":"3060","runtime":141,"imdbId":"tt0015624","version":106,"lastModified":"1301907289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/097\/4ced53c47b9aa1313b000097\/the-big-parade-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"History","title":"The Big Parade","releaseDate":-1393459200000,"language":"en","type":"Movie","_key":"18263"} +{"label":"George W. Hill","version":21,"id":"29963","lastModified":"1301901431000","name":"George W. Hill","type":"Person","_key":"18264"} +{"label":"John Gilbert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dc\/4c49c7747b9aa115fe0000dc\/john-gilbert-profile.jpg","version":21,"id":"98045","lastModified":"1301901382000","name":"John Gilbert","type":"Person","_key":"18265"} +{"label":"Ren\u00e9e Ador\u00e9e","version":20,"id":"29973","lastModified":"1301901641000","name":"Ren\u00e9e Ador\u00e9e","type":"Person","_key":"18266"} +{"label":"Claire McDowell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/388\/4c6153957b9aa172d9000388\/claire-mcdowell-profile.jpg","version":25,"id":"29974","lastModified":"1301901472000","name":"Claire McDowell","type":"Person","_key":"18267"} +{"label":"Claire Adams","version":21,"id":"29975","lastModified":"1301901909000","name":"Claire Adams","type":"Person","_key":"18268"} +{"label":"Robert Ober","version":19,"id":"29976","lastModified":"1301901623000","name":"Robert Ober","type":"Person","_key":"18269"} +{"label":"Tom O'Brien","version":22,"id":"29977","lastModified":"1301901745000","name":"Tom O'Brien","type":"Person","_key":"18270"} +{"label":"Karl Dane","version":22,"id":"29978","lastModified":"1301901850000","name":"Karl Dane","type":"Person","_key":"18271"} +{"label":"Kathleen Key","version":20,"id":"29979","lastModified":"1301901909000","name":"Kathleen Key","type":"Person","_key":"18272"} +{"label":"Rosita Marstini","version":19,"id":"29980","lastModified":"1301901909000","name":"Rosita Marstini","type":"Person","_key":"18273"} +{"label":"Julanne Johnston","version":20,"id":"29981","lastModified":"1301901982000","name":"Julanne Johnston","type":"Person","_key":"18274"} +{"label":"The Crowd","description":"The film centers on ambitious but undisciplined New York City office worker John who meets and marries Mary. They start a family, struggle to cope with marital stress, financial setbacks, and tragedy, all while lost amid the anonymous, pitiless throngs of the big city.","id":"3061","runtime":104,"imdbId":"tt0018806","version":68,"lastModified":"1301904480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13d\/4c9d06fe5e73d66d1e00013d\/the-crowd-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Crowd","releaseDate":-1321315200000,"language":"en","type":"Movie","_key":"18275"} +{"label":"Eleanor Boardman","version":20,"id":"29985","lastModified":"1301902023000","name":"Eleanor Boardman","type":"Person","_key":"18276"} +{"label":"James Murray","version":23,"id":"29986","lastModified":"1301901581000","name":"James Murray","type":"Person","_key":"18277"} +{"label":"Bert Roach","version":29,"id":"29987","lastModified":"1301901597000","name":"Bert Roach","type":"Person","_key":"18278"} +{"label":"Estelle Clark","version":20,"id":"29988","lastModified":"1301901584000","name":"Estelle Clark","type":"Person","_key":"18279"} +{"label":"Daniel G. Tomlinson","version":20,"id":"29989","lastModified":"1301902009000","name":"Daniel G. Tomlinson","type":"Person","_key":"18280"} +{"label":"Lucy Beaumont","version":23,"id":"29990","lastModified":"1301902024000","name":"Lucy Beaumont","type":"Person","_key":"18281"} +{"label":"Freddie Burke Frederick","version":20,"id":"29991","lastModified":"1301902009000","name":"Freddie Burke Frederick","type":"Person","_key":"18282"} +{"label":"Alice Mildred Puter","version":20,"id":"29992","lastModified":"1301902023000","name":"Alice Mildred Puter","type":"Person","_key":"18283"} +{"label":"42nd Street","description":"A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.","id":"3062","runtime":89,"imdbId":"tt0024034","trailer":"http:\/\/www.youtube.com\/watch?v=EH5ksSMVfE0","version":475,"lastModified":"1301903824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48a\/4bc91857017a3c57fe00948a\/42nd-street-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"42nd Street","releaseDate":-1164844800000,"language":"en","type":"Movie","_key":"18284"} +{"label":"Warner Baxter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab8\/4be4e638017a3c35bb000ab8\/warner-baxter-profile.jpg","version":29,"id":"29999","lastModified":"1301901605000","name":"Warner Baxter","type":"Person","_key":"18285"} +{"label":"Bebe Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b3\/4d2b29315e73d626ac0041b3\/bebe-daniels-profile.jpg","version":97,"id":"30000","lastModified":"1301901094000","name":"Bebe Daniels","type":"Person","_key":"18286"} +{"label":"Ruby Keeler","version":22,"id":"30001","lastModified":"1301901943000","name":"Ruby Keeler","type":"Person","_key":"18287"} +{"label":"Guy Kibbee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4ca3aacc5e73d636fc000098\/guy-kibbee-profile.jpg","version":34,"birthday":"-2771456400000","id":"30002","birthplace":"El Paso, Texas, USA","lastModified":"1301901530000","name":"Guy Kibbee","type":"Person","_key":"18288"} +{"label":"Ginger Rogers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a4\/4c09379a017a3c7e8f0007a4\/ginger-rogers-profile.jpg","version":61,"id":"30003","lastModified":"1302032432000","name":"Ginger Rogers","type":"Person","_key":"18289"} +{"label":"Ned Sparks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac9\/4cc1844e7b9aa138d5001ac9\/ned-sparks-profile.jpg","version":23,"id":"30004","lastModified":"1301902054000","name":"Ned Sparks","type":"Person","_key":"18290"} +{"label":"Allen Jenkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/308\/4c98d2547b9aa122de000308\/allen-jenkins-profile.jpg","version":36,"id":"30005","lastModified":"1301901304000","name":"Allen Jenkins","type":"Person","_key":"18291"} +{"label":"Edward J. Nugent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/231\/4c604ad37b9aa172dc000231\/edward-j-nugent-profile.jpg","version":20,"id":"30006","lastModified":"1301901850000","name":"Edward J. Nugent","type":"Person","_key":"18292"} +{"label":"Robert McWade","version":24,"id":"30007","lastModified":"1301902163000","name":"Robert McWade","type":"Person","_key":"18293"} +{"label":"Duck Soup","description":"Rufus T. Firefly is named president\/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.","id":"3063","runtime":68,"imdbId":"tt0023969","trailer":"http:\/\/www.youtube.com\/watch?v=bonpelSt2ME","version":198,"lastModified":"1301903982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/497\/4bc91858017a3c57fe009497\/duck-soup-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Duck Soup","releaseDate":-1139961600000,"language":"en","type":"Movie","_key":"18294"} +{"label":"Leo McCarey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5dd\/4c5adb627b9aa151f20005dd\/leo-mccarey-profile.jpg","version":67,"id":"30008","lastModified":"1301901251000","name":"Leo McCarey","type":"Person","_key":"18295"} +{"label":"Groucho Marx","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/236\/4c503b017b9aa136ce000236\/groucho-marx-profile.jpg","version":49,"birthday":"-2500851600000","id":"10798","birthplace":"New York City, New York, USA","lastModified":"1301901322000","name":"Groucho Marx","type":"Person","_key":"18296"} +{"label":"Harpo Marx","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21b\/4c503be67b9aa136d200021b\/harpo-marx-profile.jpg","version":46,"id":"10800","lastModified":"1301901575000","name":"Harpo Marx","type":"Person","_key":"18297"} +{"label":"Chico Marx","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/233\/4c503cb37b9aa136cf000233\/chico-marx-profile.jpg","version":46,"id":"10799","lastModified":"1301901668000","name":"Chico Marx","type":"Person","_key":"18298"} +{"label":"Zeppo Marx","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/245\/4c503dba7b9aa136ce000245\/zeppo-marx-profile.jpg","version":29,"id":"30014","lastModified":"1301901533000","name":"Zeppo Marx","type":"Person","_key":"18299"} +{"label":"Margaret Dumont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4c503e2f7b9aa136d2000222\/margaret-dumont-profile.jpg","version":31,"id":"10804","lastModified":"1301901601000","name":"Margaret Dumont","type":"Person","_key":"18300"} +{"label":"Raquel Torres","version":22,"id":"30015","lastModified":"1301901909000","name":"Raquel Torres","type":"Person","_key":"18301"} +{"label":"Edmund Breese","version":22,"id":"30016","lastModified":"1301902158000","name":"Edmund Breese","type":"Person","_key":"18302"} +{"label":"Charles Middleton","version":30,"id":"30017","lastModified":"1301901525000","name":"Charles Middleton","type":"Person","_key":"18303"} +{"label":"Edgar Kennedy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/491\/4ca5f6df7b9aa16ed6000491\/edgar-kennedy-profile.jpg","version":53,"id":"30018","lastModified":"1301901699000","name":"Edgar Kennedy","type":"Person","_key":"18304"} +{"label":"Chances Are","description":"Alex has a lifetime full of wonderful memories. But unfortunately, they're not his.","id":"3064","runtime":108,"imdbId":"tt0097044","version":585,"lastModified":"1301903824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a1\/4bc91859017a3c57fe0094a1\/chances-are-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"Chances Are","releaseDate":605491200000,"language":"en","type":"Movie","_key":"18305"} +{"label":"Mystery Science Theater 3000: The Movie","description":"The mad and evil scientist, Dr. Clayton Forrester, has created an evil little scheme that is bound to give him world global domination but first things first. He plans to torment Mike Nelson and the robots by sending them a real stinker of a film to watch called, \"This Island Earth.\" He is convinced that this movie will drive them insane. Will this be the ultimate cheese that breaks the boys' spirits?","id":"3065","runtime":73,"imdbId":"tt0117128","trailer":"http:\/\/www.youtube.com\/watch?v=D5zqzDpriZk","homepage":"http:\/\/www.mst3k.com\/","version":363,"lastModified":"1301903062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/020\/4c3dee695e73d6047a000020\/mystery-science-theater-3000-the-movie-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Mystery Science Theater 3000: The Movie","releaseDate":829872000000,"language":"en","tagline":"Every year Hollywood makes hundreds of movies. This is one of them.","type":"Movie","_key":"18306"} +{"label":"Trace Beaulieu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4c7fd9665e73d648dd00020a\/trace-beaulieu-profile.jpg","version":32,"birthday":"-351997200000","id":"30019","lastModified":"1302065090000","name":"Trace Beaulieu","type":"Person","_key":"18307"} +{"label":"Michael J. Nelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/627\/4be17faa017a3c35bb000627\/michael-j-nelson-profile.jpg","biography":"Michael J. Nelson is the former host and writer of the Emmy-nominated, Peabody Award-winning Mystery Science Theater 3000. Since that time, he has appeared on numerous radio and TV shows, penned a regular column for TV Guide, and authored best-selling books for both HarperCollins and Abrams.\n\nHis first book, Mike Nelson's Movie Megacheese, thrilled critics, including Richard Schickel of Time Magazine, who said of Mike, \"He's more fun than a barrel of Val Kilmers... Smarter than a roomful of Patr","version":42,"birthday":"-164854800000","id":"30020","birthplace":"St. Charles, Illinois","lastModified":"1301901804000","name":"Michael J. Nelson","type":"Person","_key":"18308"} +{"label":"Jim Mallon","version":27,"id":"30021","lastModified":"1301902160000","name":"Jim Mallon","type":"Person","_key":"18309"} +{"label":"Kevin Murphy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58b\/4be1842a017a3c35bf00058b\/kevin-murphy-profile.jpg","version":34,"birthday":"-415328400000","id":"30022","birthplace":"River Forest, Illinois","lastModified":"1301901855000","name":"Kevin Murphy","type":"Person","_key":"18310"} +{"label":"John Brady","version":23,"id":"30023","lastModified":"1301902197000","name":"John Brady","type":"Person","_key":"18311"} +{"label":"Kyofu densetsu: Kaiki! Furankenshutain","description":"No overview found.","id":"3066","runtime":30,"imdbId":"tt0270954","version":48,"lastModified":"1301907430000","genre":"Animation","title":"Kyofu densetsu: Kaiki! Furankenshutain","releaseDate":347155200000,"language":"en","type":"Movie","_key":"18312"} +{"label":"Yugo Serikawa","version":21,"id":"30025","lastModified":"1301901675000","name":"Yugo Serikawa","type":"Person","_key":"18313"} +{"label":"Masao Komatsu","version":20,"id":"30028","lastModified":"1301901682000","name":"Masao Komatsu","type":"Person","_key":"18314"} +{"label":"Greg Finley","version":20,"id":"30029","lastModified":"1301902013000","name":"Greg Finley","type":"Person","_key":"18315"} +{"label":"Ted Layman","version":20,"id":"30030","lastModified":"1301901685000","name":"Ted Layman","type":"Person","_key":"18316"} +{"label":"Tony Oliver","version":24,"id":"30031","lastModified":"1301902160000","name":"Tony Oliver","type":"Person","_key":"18317"} +{"label":"Dan Woren","version":22,"id":"30032","lastModified":"1301902160000","name":"Dan Woren","type":"Person","_key":"18318"} +{"label":"Frankenstein","description":"No overview found.","id":"3067","runtime":90,"imdbId":"tt0087288","version":120,"lastModified":"1301906770000","studio":"BBC Films","genre":"Horror","title":"Frankenstein","releaseDate":441763200000,"language":"en","type":"Movie","_key":"18319"} +{"label":"James Ormerod","version":21,"id":"30033","lastModified":"1301901970000","name":"James Ormerod","type":"Person","_key":"18320"} +{"label":"Terence Alexander","version":30,"id":"30035","lastModified":"1301902165000","name":"Terence Alexander","type":"Person","_key":"18321"} +{"label":"Susan Wooldridge","version":25,"id":"30036","lastModified":"1301901701000","name":"Susan Wooldridge","type":"Person","_key":"18322"} +{"label":"Michael Cochrane","version":28,"id":"30037","lastModified":"1301901970000","name":"Michael Cochrane","type":"Person","_key":"18323"} +{"label":"Frankenstein","description":"No overview found.","id":"3068","runtime":180,"imdbId":"tt0070073","version":592,"lastModified":"1301906095000","genre":"Horror","title":"Frankenstein","releaseDate":95990400000,"language":"en","type":"Movie","_key":"18324"} +{"label":"Glenn Jordan","version":25,"id":"30038","lastModified":"1301901713000","name":"Glenn Jordan","type":"Person","_key":"18325"} +{"label":"Susan Strasberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dd\/4ca4d4177b9aa16eda0002dd\/susan-strasberg-profile.jpg","version":32,"id":"30043","lastModified":"1301901605000","name":"Susan Strasberg","type":"Person","_key":"18326"} +{"label":"Bo Svenson","version":44,"id":"30044","lastModified":"1301901131000","name":"Bo Svenson","type":"Person","_key":"18327"} +{"label":"Heidi Vaughn","version":19,"id":"30045","lastModified":"1301901745000","name":"Heidi Vaughn","type":"Person","_key":"18328"} +{"label":"Philip Bourneuf","version":22,"id":"30046","lastModified":"1301902165000","name":"Philip Bourneuf","type":"Person","_key":"18329"} +{"label":"Robert Gentry","version":19,"id":"30047","lastModified":"1301902110000","name":"Robert Gentry","type":"Person","_key":"18330"} +{"label":"Jon Lormer","version":19,"id":"15721","lastModified":"1301902022000","name":"Jon Lormer","type":"Person","_key":"18331"} +{"label":"John Karlen","version":27,"id":"30048","lastModified":"1301902139000","name":"John Karlen","type":"Person","_key":"18332"} +{"label":"George Morgan","version":19,"id":"30049","lastModified":"1301902110000","name":"George Morgan","type":"Person","_key":"18333"} +{"label":"Brian Avery","version":27,"id":"30050","lastModified":"1301901840000","name":"Brian Avery","type":"Person","_key":"18334"} +{"label":"Willie Aames","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d3a\/4c67ee2f7b9aa172da000d3a\/willie-aames-profile.jpg","biography":"Willie Aames is an American actor, film and television director, television producer, and screenwriter. He played Tommy Bradford on the 1970s' Eight Is Enough, and Buddy Lembeck on the 1980s sitcom Charles in Charge.","version":27,"birthday":"-298688400000","id":"30051","birthplace":"Orange County, California","lastModified":"1301901645000","name":"Willie Aames","type":"Person","_key":"18335"} +{"label":"Frankenstein Reborn","description":"No overview found.","id":"3069","runtime":84,"imdbId":"tt0460800","version":95,"lastModified":"1301906087000","studio":"The Asylum","genre":"Horror","title":"Frankenstein Reborn","releaseDate":1125187200000,"language":"en","type":"Movie","_key":"18336"} +{"label":"Leigh Scott","version":38,"id":"30052","lastModified":"1301901421000","name":"Leigh Scott","type":"Person","_key":"18337"} +{"label":"Rhett Giles","version":35,"id":"30066","lastModified":"1301901186000","name":"Rhett Giles","type":"Person","_key":"18338"} +{"label":"Thomas Downey","version":19,"id":"30067","lastModified":"1301902110000","name":"Thomas Downey","type":"Person","_key":"18339"} +{"label":"Jeff Denton","version":22,"id":"30068","lastModified":"1301902159000","name":"Jeff Denton","type":"Person","_key":"18340"} +{"label":"Joel Hebner","version":21,"id":"30069","lastModified":"1301902110000","name":"Joel Hebner","type":"Person","_key":"18341"} +{"label":"Joel Hebner","version":19,"id":"30070","lastModified":"1301902110000","name":"Joel Hebner","type":"Person","_key":"18342"} +{"label":"Eliza Swenson","version":20,"id":"30071","lastModified":"1301901382000","name":"Eliza Swenson","type":"Person","_key":"18343"} +{"label":"Amanda Barton","version":22,"id":"30064","lastModified":"1301902159000","name":"Amanda Barton","type":"Person","_key":"18344"} +{"label":"Christina Rosenberg","version":19,"id":"30072","lastModified":"1301902110000","name":"Christina Rosenberg","type":"Person","_key":"18345"} +{"label":"Sarah Lieving","version":23,"id":"30073","lastModified":"1301901909000","name":"Sarah Lieving","type":"Person","_key":"18346"} +{"label":"Frankenstein","description":"No overview found.","id":"3070","runtime":60,"imdbId":"tt0311159","version":113,"lastModified":"1301906667000","studio":"CBS Television","genre":"Horror","title":"Frankenstein","releaseDate":536457600000,"language":"en","type":"Movie","_key":"18347"} +{"label":"Burt Brinckerhoff","version":22,"id":"30074","lastModified":"1301901584000","name":"Burt Brinckerhoff","type":"Person","_key":"18348"} +{"label":"Frankenstein","description":"Frankenstein is a 2007 British television film produced by Impossible Pictures for ITV. It was written and directed by Jed Mercurio, adapted from Mary Shelley's original novel to a present-day setting. Dr. Victoria Frankenstein, a female geneticist, accidentally creates a monster while growing her son's clone from stem cells as an organ donor in an effort to prevent his imminent death.","id":"3071","runtime":0,"imdbId":"tt1020766","version":140,"lastModified":"1301905203000","genre":"Drama","title":"Frankenstein","releaseDate":1193788800000,"language":"en","type":"Movie","_key":"18349"} +{"label":"Jed Mercurio","version":23,"id":"30076","lastModified":"1301901970000","name":"Jed Mercurio","type":"Person","_key":"18350"} +{"label":"Anna Torv","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d99\/4d6be9b25e73d60729000d99\/anna-torv-profile.jpg","biography":"Anna Torv was born in Melbourne, Victoria, Australia and grew up on the Hinterlands of the Gold Coast, Queensland. Anna's father Hans Torv is of Estonian descent, but he was born in Stirling, Scotland. She has been estranged from her father since the age of 8. She has one sibling, a younger brother, Dylan.\nIn 2004 Torv joined the cast of the Australia's acclaimed television drama The Secret Life Of Us playing Nikki. Torv plays FBI Agent Olivia Dunham in the American television series Fringe","version":56,"birthday":"261442800000","id":"30084","birthplace":"Melbourne, Victoria, Australia","lastModified":"1301902167000","name":"Anna Torv","type":"Person","_key":"18351"} +{"label":"Michael Wildman","version":25,"id":"30085","lastModified":"1301902188000","name":"Michael Wildman","type":"Person","_key":"18352"} +{"label":"Julian Bleach","version":21,"id":"30086","lastModified":"1301902195000","name":"Julian Bleach","type":"Person","_key":"18353"} +{"label":"Fraser James","version":24,"id":"30087","lastModified":"1301901970000","name":"Fraser James","type":"Person","_key":"18354"} +{"label":"Richard Betts","version":21,"id":"30088","lastModified":"1301902160000","name":"Richard Betts","type":"Person","_key":"18355"} +{"label":"Frankenstein Unbound","description":"The ultimate weapon, claimed to be safe for mankind, produces global side-effects including time slides and disappearances. The scientist behind the project and his car are zapped from the year 2031 to 1817 in Switzerland where he meets Dr. Victor Frankenstein, Mary Shelley and others.","id":"3072","runtime":82,"imdbId":"tt0099612","version":299,"lastModified":"1301905434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c1\/4bc9185d017a3c57fe0094c1\/frankenstein-unbound-mid.jpg","studio":"The Mount Company","genre":"Drama","title":"Frankenstein Unbound","releaseDate":657504000000,"language":"en","type":"Movie","_key":"18356"} +{"label":"Nick Brimble","version":24,"id":"8319","lastModified":"1301901315000","name":"Nick Brimble","type":"Person","_key":"18357"} +{"label":"Catherine Rabett","version":20,"id":"30096","lastModified":"1301901908000","name":"Catherine Rabett","type":"Person","_key":"18358"} +{"label":"Michael Hutchence","version":23,"id":"30097","lastModified":"1301901942000","name":"Michael Hutchence","type":"Person","_key":"18359"} +{"label":"Catherine Corman","version":20,"id":"30098","lastModified":"1301901908000","name":"Catherine Corman","type":"Person","_key":"18360"} +{"label":"Bud Abbott Lou Costello Meet Frankenstein","description":"Two hapless frieght handlers find themselves encountering Dracula, the Frankenstein Monster and the Wolf Man.","id":"3073","runtime":83,"imdbId":"tt0040068","version":225,"lastModified":"1301902723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ca\/4bc9185d017a3c57fe0094ca\/bud-abbott-lou-costello-meet-frankenstein-mid.jpg","studio":"Universal International Pictures","genre":"Comedy","title":"Bud Abbott Lou Costello Meet Frankenstein","releaseDate":-679968000000,"language":"en","tagline":"More howls than you can shake a shiver at!!!","type":"Movie","_key":"18361"} +{"label":"Charles Barton","version":26,"id":"30099","lastModified":"1301901699000","name":"Charles Barton","type":"Person","_key":"18362"} +{"label":"Glenn Strange","version":24,"birthday":"-2220915600000","id":"30112","birthplace":"Weed, New Mexico, USA","lastModified":"1301901834000","name":"Glenn Strange","type":"Person","_key":"18363"} +{"label":"Jane Randolph","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/549\/4c6d55e97b9aa13ab4000549\/jane-randolph-profile.jpg","version":34,"id":"30114","lastModified":"1301901428000","name":"Jane Randolph","type":"Person","_key":"18364"} +{"label":"Frank Ferguson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/162\/4c9cf01a7b9aa1430e000162\/frank-ferguson-profile.jpg","version":34,"id":"30115","lastModified":"1301901857000","name":"Frank Ferguson","type":"Person","_key":"18365"} +{"label":"Charles Bradstreet","version":20,"id":"30116","lastModified":"1301901908000","name":"Charles Bradstreet","type":"Person","_key":"18366"} +{"label":"Bobby Barber","version":20,"id":"30117","lastModified":"1301901908000","name":"Bobby Barber","type":"Person","_key":"18367"} +{"label":"George Barton","version":20,"id":"30118","lastModified":"1301901908000","name":"George Barton","type":"Person","_key":"18368"} +{"label":"Lenore Aubert","version":18,"id":"96065","lastModified":"1301902470000","name":"Lenore Aubert","type":"Person","_key":"18369"} +{"label":"The Ghost of Frankenstein","description":"No overview found.","id":"3074","runtime":67,"imdbId":"tt0034786","version":112,"lastModified":"1301905651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d3\/4bc9185e017a3c57fe0094d3\/the-ghost-of-frankenstein-mid.jpg","studio":"Universal Pictures Corporation","genre":"Fantasy","title":"The Ghost of Frankenstein","releaseDate":-877478400000,"language":"en","type":"Movie","_key":"18370"} +{"label":"Janet Ann Gallow","version":17,"id":"30134","lastModified":"1301901576000","name":"Janet Ann Gallow","type":"Person","_key":"18371"} +{"label":"Barton Yarborough","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc0\/4cd1814c7b9aa16b9f000cc0\/barton-yarborough-profile.jpg","version":27,"id":"30135","lastModified":"1301901167000","name":"Barton Yarborough","type":"Person","_key":"18372"} +{"label":"Evelyn Ankers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66b\/4be1ecde017a3c35b500066b\/evelyn-ankers-profile.jpg","version":36,"id":"30133","lastModified":"1301983372000","name":"Evelyn Ankers","type":"Person","_key":"18373"} +{"label":"Leyland Hodgson","version":32,"id":"30136","lastModified":"1301902161000","name":"Leyland Hodgson","type":"Person","_key":"18374"} +{"label":"Olaf Hytten","version":34,"id":"32192","lastModified":"1301983372000","name":"Olaf Hytten","type":"Person","_key":"18375"} +{"label":"Harry Cording","version":32,"id":"98052","lastModified":"1301983372000","name":"Harry Cording","type":"Person","_key":"18376"} +{"label":"Frankenstein Must Be Destroyed","description":"No overview found.","id":"3075","runtime":98,"imdbId":"tt0065738","version":94,"lastModified":"1301906638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23e\/4bf19a1f017a3c321700023e\/frankenstein-must-be-destroyed-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Frankenstein Must Be Destroyed","releaseDate":-177120000000,"language":"en","type":"Movie","_key":"18377"} +{"label":"Veronica Carlson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/102\/4c24ede47b9aa1446d000102\/veronica-carlson-profile.jpg","version":31,"id":"30140","lastModified":"1301901508000","name":"Veronica Carlson","type":"Person","_key":"18378"} +{"label":"Maxine Audley","version":31,"id":"30141","lastModified":"1301902165000","name":"Maxine Audley","type":"Person","_key":"18379"} +{"label":"George Pravda","version":21,"id":"30142","lastModified":"1301902053000","name":"George Pravda","type":"Person","_key":"18380"} +{"label":"Frankenstein Meets the Wolf Man","description":"Graverobbers open the grave of the Wolfman and awake him. He doesn't like the idea of being immortal and killing people when the moon is full, so he tries to find Dr. Frankenstein, in the hopes that the Dr. can cure him, but Frankenstein is dead and only his Monster is alive and this one wants to live, not to die like the Wolfman.","id":"3076","runtime":74,"imdbId":"tt0035899","trailer":"http:\/\/www.youtube.com\/watch?v=JbZZgsd0XJ0","version":514,"lastModified":"1301903317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e0\/4bc91863017a3c57fe0094e0\/frankenstein-meets-the-wolf-man-mid.jpg","studio":"Universal International Pictures","genre":"Horror","title":"Frankenstein Meets the Wolf Man","releaseDate":-846633600000,"language":"en","type":"Movie","_key":"18381"} +{"label":"Ilona Massey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4c24f82c7b9aa1446a00012b\/ilona-massey-profile.jpg","version":24,"id":"30143","lastModified":"1301901808000","name":"Ilona Massey","type":"Person","_key":"18382"} +{"label":"Patric Knowles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e84\/4be886b1017a3c35c1000e84\/patric-knowles-profile.jpg","version":48,"id":"8726","lastModified":"1301995707000","name":"Patric Knowles","type":"Person","_key":"18383"} +{"label":"Don Barclay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e1\/4c98db1e7b9aa122df0002e1\/don-barclay-profile.jpg","version":25,"id":"30144","lastModified":"1301902055000","name":"Don Barclay","type":"Person","_key":"18384"} +{"label":"Harry Stubbs","version":21,"id":"30145","lastModified":"1301902168000","name":"Harry Stubbs","type":"Person","_key":"18385"} +{"label":"Son of Frankenstein","description":"No overview found.","id":"3077","runtime":99,"imdbId":"tt0031951","version":116,"lastModified":"1301906500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ed\/4bc91864017a3c57fe0094ed\/son-of-frankenstein-mid.jpg","studio":"Universal Pictures Corporation","genre":"Horror","title":"Son of Frankenstein","releaseDate":-977270400000,"language":"en","type":"Movie","_key":"18386"} +{"label":"Rowland V. Lee","version":27,"id":"30146","lastModified":"1301996123000","name":"Rowland V. Lee","type":"Person","_key":"18387"} +{"label":"Donnie Dunagan","version":24,"id":"30161","lastModified":"1302035910000","name":"Donnie Dunagan","type":"Person","_key":"18388"} +{"label":"Perry Ivins","version":22,"id":"30162","lastModified":"1301901643000","name":"Perry Ivins","type":"Person","_key":"18389"} +{"label":"Caroline Frances Cooke","version":19,"id":"30164","lastModified":"1301902128000","name":"Caroline Frances Cooke","type":"Person","_key":"18390"} +{"label":"It Happened One Night","description":"Comic romance between a down-to-earth newspaper reporter and a spoiled runaway heiress. ","id":"3078","runtime":105,"imdbId":"tt0025316","trailer":"http:\/\/www.youtube.com\/watch?v=p0qbcJ-24UM","version":609,"lastModified":"1301907778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/512\/4bc9186a017a3c57fe009512\/it-happened-one-night-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"It Happened One Night","releaseDate":-1131580800000,"language":"en","type":"Movie","_key":"18391"} +{"label":"Claudette Colbert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4c75470f7b9aa13ab40010dd\/claudette-colbert-profile.jpg","version":45,"id":"30155","lastModified":"1301901471000","name":"Claudette Colbert","type":"Person","_key":"18392"} +{"label":"Walter Connolly","version":29,"birthday":"-2610838800000","id":"30156","birthplace":"Cincinnati, Ohio, USA","lastModified":"1301901283000","name":"Walter Connolly","type":"Person","_key":"18393"} +{"label":"Roscoe Karns","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c9\/4cbc994e7b9aa138d50013c9\/roscoe-karns-profile.jpg","version":30,"id":"30157","lastModified":"1301901279000","name":"Roscoe Karns","type":"Person","_key":"18394"} +{"label":"Jameson Thomas","version":23,"id":"30158","lastModified":"1301901490000","name":"Jameson Thomas","type":"Person","_key":"18395"} +{"label":"Blanche Friderici","version":22,"id":"30159","lastModified":"1301901597000","name":"Blanche Friderici","type":"Person","_key":"18396"} +{"label":"Charles C. Wilson","version":23,"birthday":"-2380237200000","id":"30160","birthplace":"New York City, New York, USA","lastModified":"1301901489000","name":"Charles C. Wilson","type":"Person","_key":"18397"} +{"label":"The Curse of Frankenstein","description":"No overview found.","id":"3079","runtime":82,"imdbId":"tt0050280","trailer":"http:\/\/www.youtube.com\/watch?v=2grc7X7JwJY","version":231,"lastModified":"1301906492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4bc9186d017a3c57fe00952e\/the-curse-of-frankenstein-mid.jpg","studio":"Clarion Films","genre":"Drama","title":"The Curse of Frankenstein","releaseDate":-395107200000,"language":"en","type":"Movie","_key":"18398"} +{"label":"Melvyn Hayes","version":23,"id":"30188","lastModified":"1301901766000","name":"Melvyn Hayes","type":"Person","_key":"18399"} +{"label":"Valerie Gaunt","version":17,"id":"30189","lastModified":"1301902167000","name":"Valerie Gaunt","type":"Person","_key":"18400"} +{"label":"Paul Hardtmuth","version":19,"id":"30190","lastModified":"1301902129000","name":"Paul Hardtmuth","type":"Person","_key":"18401"} +{"label":"Noel Hood","version":19,"id":"30191","lastModified":"1301902129000","name":"Noel Hood","type":"Person","_key":"18402"} +{"label":"Hazel Court","version":30,"id":"101499","lastModified":"1301901977000","name":"Hazel Court","type":"Person","_key":"18403"} +{"label":"Top Hat","description":"Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace. ","id":"3080","runtime":101,"imdbId":"tt0027125","version":149,"lastModified":"1302039489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/537\/4bc9186d017a3c57fe009537\/top-hat-mid.jpg","studio":"RKO Radio Pictures","genre":"Comedy","title":"Top Hat","releaseDate":-1083715200000,"language":"en","type":"Movie","_key":"18404"} +{"label":"Mark Sandrich","version":26,"id":"30165","lastModified":"1301901561000","name":"Mark Sandrich","type":"Person","_key":"18405"} +{"label":"Fred Astaire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2fa\/4c475c3a7b9aa15de10002fa\/fred-astaire-profile.jpg","version":86,"id":"30181","lastModified":"1302056514000","name":"Fred Astaire","type":"Person","_key":"18406"} +{"label":"Erik Rhodes","version":24,"id":"30183","lastModified":"1301901559000","name":"Erik Rhodes","type":"Person","_key":"18407"} +{"label":"Eric Blore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e4\/4c83a7bf5e73d664d60000e4\/eric-blore-profile.jpg","version":38,"id":"30184","lastModified":"1301901667000","name":"Eric Blore","type":"Person","_key":"18408"} +{"label":"Helen Broderick","version":23,"id":"30185","lastModified":"1301902034000","name":"Helen Broderick","type":"Person","_key":"18409"} +{"label":"The Goddess","description":"No overview found.","id":"3081","runtime":104,"imdbId":"tt0051667","version":257,"lastModified":"1301906757000","studio":"Columbia Pictures Corporation","genre":"Drama","title":"The Goddess","releaseDate":-363657600000,"language":"en","type":"Movie","_key":"18410"} +{"label":"Kim Stanley","version":24,"id":"31440","lastModified":"1301901499000","name":"Kim Stanley","type":"Person","_key":"18411"} +{"label":"Bert Freed","version":27,"id":"31503","lastModified":"1301901504000","name":"Bert Freed","type":"Person","_key":"18412"} +{"label":"Joan Copeland","version":26,"id":"31504","lastModified":"1301901499000","name":"Joan Copeland","type":"Person","_key":"18413"} +{"label":"Betty Lou Holland","version":22,"id":"31505","lastModified":"1301901661000","name":"Betty Lou Holland","type":"Person","_key":"18414"} +{"label":"Gerald Hiken","version":20,"id":"31506","lastModified":"1301902013000","name":"Gerald Hiken","type":"Person","_key":"18415"} +{"label":"John Cromwell","version":37,"id":"31497","lastModified":"1301901449000","name":"John Cromwell","type":"Person","_key":"18416"} +{"label":"Modern Times","description":"The Tramp struggles to live in modern industrial society with the help of a young homeless woman.","id":"3082","runtime":87,"imdbId":"tt0027977","trailer":"http:\/\/www.youtube.com\/watch?v=914","version":227,"lastModified":"1301902466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54c\/4bc91871017a3c57fe00954c\/modern-times-mid.jpg","studio":"Charles Chaplin Productions","genre":"Comedy","title":"Modern Times","releaseDate":-1069977600000,"language":"en","type":"Movie","_key":"18417"} +{"label":"Tiny Sandford","version":36,"id":"30194","lastModified":"1301901601000","name":"Tiny Sandford","type":"Person","_key":"18418"} +{"label":"Stanley Blystone","version":22,"id":"30196","lastModified":"1301901943000","name":"Stanley Blystone","type":"Person","_key":"18419"} +{"label":"Richard Alexander","version":23,"birthday":"-2118099600000","id":"30197","birthplace":"Dallas, Texas, USA","lastModified":"1301901771000","name":"Richard Alexander","type":"Person","_key":"18420"} +{"label":"Cecil Reynolds","version":20,"id":"30198","lastModified":"1301901908000","name":"Cecil Reynolds","type":"Person","_key":"18421"} +{"label":"Mira McKinney","version":21,"id":"30199","lastModified":"1301901642000","name":"Mira McKinney","type":"Person","_key":"18422"} +{"label":"Murdock MacQuarrie","version":20,"id":"30200","lastModified":"1301901908000","name":"Murdock MacQuarrie","type":"Person","_key":"18423"} +{"label":"Wilfred Lucas","version":25,"id":"30201","lastModified":"1301901855000","name":"Wilfred Lucas","type":"Person","_key":"18424"} +{"label":"Edward LeSaint","version":18,"birthday":"-3125782800000","id":"30202","birthplace":"Cincinnati, Ohio, USA","lastModified":"1301901771000","name":"Edward LeSaint","type":"Person","_key":"18425"} +{"label":"Fred Malatesta","version":20,"id":"30203","lastModified":"1301901908000","name":"Fred Malatesta","type":"Person","_key":"18426"} +{"label":"Sammy Stein","version":21,"id":"30204","lastModified":"1301901908000","name":"Sammy Stein","type":"Person","_key":"18427"} +{"label":"Juana Sutton","version":20,"id":"30205","lastModified":"1301901908000","name":"Juana Sutton","type":"Person","_key":"18428"} +{"label":"Ted Oliver","version":20,"id":"30206","lastModified":"1301901908000","name":"Ted Oliver","type":"Person","_key":"18429"} +{"label":"Mr. Smith Goes to Washington","description":"A naive man is appointed to fill a vacancy in the US Senate. His plans promptly collide with political corruption, but he doesn't back down.","id":"3083","runtime":129,"imdbId":"tt0031679","trailer":"http:\/\/www.youtube.com\/watch?v=sm9qaEJ3MBc","version":444,"lastModified":"1301904975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56e\/4bc91878017a3c57fe00956e\/mr-smith-goes-to-washington-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Mr. Smith Goes to Washington","releaseDate":-953337600000,"language":"en","type":"Movie","_key":"18430"} +{"label":"Jean Arthur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b3a\/4be5bc9a017a3c35b7000b3a\/jean-arthur-profile.jpg","version":38,"id":"30210","lastModified":"1301901234000","name":"Jean Arthur","type":"Person","_key":"18431"} +{"label":"Edward Arnold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4bd5be31017a3c6580000014\/edward-arnold-profile.jpg","version":48,"id":"30211","lastModified":"1301901505000","name":"Edward Arnold","type":"Person","_key":"18432"} +{"label":"Harry Carey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/136\/4bd706c8017a3c21ea000136\/harry-carey-profile.jpg","version":42,"id":"30212","lastModified":"1301902034000","name":"Harry Carey","type":"Person","_key":"18433"} +{"label":"Ruth Donnelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16d\/4c2231f27b9aa1369400016d\/ruth-donnelly-profile.jpg","version":30,"id":"30214","lastModified":"1301901455000","name":"Ruth Donnelly","type":"Person","_key":"18434"} +{"label":"Grant Mitchell","version":32,"id":"30215","lastModified":"1301901699000","name":"Grant Mitchell","type":"Person","_key":"18435"} +{"label":"Pierre Watkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/778\/4cb85b267b9aa138d9000778\/pierre-watkin-profile.jpg","version":30,"id":"30216","lastModified":"1301902034000","name":"Pierre Watkin","type":"Person","_key":"18436"} +{"label":"Dick Elliott","version":26,"id":"30217","lastModified":"1301901939000","name":"Dick Elliott","type":"Person","_key":"18437"} +{"label":"Billy Watson","version":21,"id":"30218","lastModified":"1301901822000","name":"Billy Watson","type":"Person","_key":"18438"} +{"label":"Delmar Watson","version":21,"id":"30219","lastModified":"1301901822000","name":"Delmar Watson","type":"Person","_key":"18439"} +{"label":"Harry Watson","version":21,"id":"30221","lastModified":"1301901760000","name":"Harry Watson","type":"Person","_key":"18440"} +{"label":"Garry Watson","version":20,"id":"30222","lastModified":"1301901760000","name":"Garry Watson","type":"Person","_key":"18441"} +{"label":"Larry Simms","version":49,"id":"30223","lastModified":"1301901504000","name":"Larry Simms","type":"Person","_key":"18442"} +{"label":"Astrid Allwyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/271\/4bf99ab2017a3c7033000271\/astrid-allwyn-profile.jpg","version":24,"birthday":"-2022714000000","id":"119898","birthplace":"South Manchester, Connecticut, USA","lastModified":"1301901716000","name":"Astrid Allwyn","type":"Person","_key":"18443"} +{"label":"Wuthering Heights","description":"No overview found.","id":"3084","runtime":103,"imdbId":"tt0032145","trailer":"http:\/\/www.youtube.com\/watch?v=okFq-NOIO0I","version":278,"lastModified":"1301903824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/578\/4bc9187b017a3c57fe009578\/wuthering-heights-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Drama","title":"Wuthering Heights","releaseDate":-969494400000,"language":"en","type":"Movie","_key":"18444"} +{"label":"Merle Oberon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4dd\/4c599f6e7b9aa151f20004dd\/merle-oberon-profile.jpg","version":35,"id":"30225","lastModified":"1301901429000","name":"Merle Oberon","type":"Person","_key":"18445"} +{"label":"Geraldine Fitzgerald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ac\/4bd99ea7017a3c1bfc0002ac\/geraldine-fitzgerald-profile.jpg","version":41,"id":"30226","lastModified":"1301901265000","name":"Geraldine Fitzgerald","type":"Person","_key":"18446"} +{"label":"Hugh Williams","version":28,"id":"30227","lastModified":"1301901970000","name":"Hugh Williams","type":"Person","_key":"18447"} +{"label":"Sarita Wooton","version":22,"id":"30229","lastModified":"1301901970000","name":"Sarita Wooton","type":"Person","_key":"18448"} +{"label":"Rex Downing","version":22,"id":"30230","lastModified":"1301901794000","name":"Rex Downing","type":"Person","_key":"18449"} +{"label":"Douglas Scott","version":23,"id":"30231","lastModified":"1301901970000","name":"Douglas Scott","type":"Person","_key":"18450"} +{"label":"His Girl Friday","description":"Hildy Johnson has divorced Walter Burns and visits his office to tell him that she is engaged to another man and that they are going to get married the day after. Walter Burns can't let that happen and frames the other man, Bruce Baldwin, for a lot of stuff getting him into trouble all the time, while he tries to steer Hildy back into her old job as his employee (editor of his newspaper).","id":"3085","runtime":92,"imdbId":"tt0032599","version":621,"lastModified":"1301903660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58d\/4bc9187f017a3c57fe00958d\/his-girl-friday-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"His Girl Friday","releaseDate":-945907200000,"language":"en","type":"Movie","_key":"18451"} +{"label":"Rosalind Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b7\/4c2232d77b9aa1321e0002b7\/rosalind-russell-profile.jpg","version":45,"id":"30233","lastModified":"1301901299000","name":"Rosalind Russell","type":"Person","_key":"18452"} +{"label":"Gene Lockhart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ae\/4c5ad9f97b9aa151f30005ae\/gene-lockhart-profile.jpg","version":47,"birthday":"-2475882000000","id":"30234","birthplace":"London, Ontario, Canada","lastModified":"1301901275000","name":"Gene Lockhart","type":"Person","_key":"18453"} +{"label":"Clarence Kolb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f10\/4be885e0017a3c35bd000f10\/clarence-kolb-profile.jpg","version":32,"id":"30237","lastModified":"1301901410000","name":"Clarence Kolb","type":"Person","_key":"18454"} +{"label":"Frank Jenks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7de\/4cb851787b9aa138d70007de\/frank-jenks-profile.jpg","version":40,"id":"30238","lastModified":"1301901379000","name":"Frank Jenks","type":"Person","_key":"18455"} +{"label":"Abner Biberman","version":25,"id":"30239","lastModified":"1301901478000","name":"Abner Biberman","type":"Person","_key":"18456"} +{"label":"Frank Orth","version":37,"id":"30240","lastModified":"1301902034000","name":"Frank Orth","type":"Person","_key":"18457"} +{"label":"Helen Mack","version":24,"id":"30241","lastModified":"1301902046000","name":"Helen Mack","type":"Person","_key":"18458"} +{"label":"Alma Kruger","version":23,"id":"30242","lastModified":"1301901822000","name":"Alma Kruger","type":"Person","_key":"18459"} +{"label":"Pat West","version":22,"id":"30243","lastModified":"1301902188000","name":"Pat West","type":"Person","_key":"18460"} +{"label":"Ernest Truex","version":21,"id":"34419","lastModified":"1301901856000","name":"Ernest Truex","type":"Person","_key":"18461"} +{"label":"The Lady Eve","description":"Returning from a year up the Amazon studying snakes, the rich but unsophisticated Charles Pike meets con-artist Jean Harrington on a ship. They fall in love, but a misunderstanding causes them to split on bad terms. To get back at him, Jean disguises herself as an English lady, and comes back to tease and torment him.","id":"3086","runtime":97,"imdbId":"tt0033804","version":131,"lastModified":"1302039503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59a\/4bc91880017a3c57fe00959a\/the-lady-eve-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Lady Eve","releaseDate":-910396800000,"language":"en","type":"Movie","_key":"18462"} +{"label":"Preston Sturges","version":54,"id":"30249","lastModified":"1301901787000","name":"Preston Sturges","type":"Person","_key":"18463"} +{"label":"Martha O'Driscoll","version":24,"id":"30260","lastModified":"1301902139000","name":"Martha O'Driscoll","type":"Person","_key":"18464"} +{"label":"Janet Beecher","version":20,"id":"30261","lastModified":"1301901745000","name":"Janet Beecher","type":"Person","_key":"18465"} +{"label":"Robert Greig","version":23,"id":"30262","lastModified":"1301902128000","name":"Robert Greig","type":"Person","_key":"18466"} +{"label":"Dora Clement","version":21,"id":"30263","lastModified":"1301902110000","name":"Dora Clement","type":"Person","_key":"18467"} +{"label":"Luis Alberni","version":28,"id":"30264","lastModified":"1301901478000","name":"Luis Alberni","type":"Person","_key":"18468"} +{"label":"Yankee Doodle Dandy","description":"A film of the life of the renowned musical composer, playwright, actor, dancer and singer George M. Cohan.","id":"3087","runtime":126,"imdbId":"tt0035575","version":193,"lastModified":"1301903781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a8\/4bc91881017a3c57fe0095a8\/yankee-doodle-dandy-mid.jpg","studio":"Warner Bros. Pictures","genre":"Documentary","title":"Yankee Doodle Dandy","releaseDate":-870825600000,"language":"en","type":"Movie","_key":"18469"} +{"label":"Joan Leslie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a2\/4bd6fc4c017a3c21ee0000a2\/joan-leslie-profile.jpg","version":29,"id":"30269","lastModified":"1301901409000","name":"Joan Leslie","type":"Person","_key":"18470"} +{"label":"Richard Whorf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64f\/4c62bca37b9aa172dc00064f\/richard-whorf-profile.jpg","version":28,"id":"30270","lastModified":"1301901667000","name":"Richard Whorf","type":"Person","_key":"18471"} +{"label":"Irene Manning","version":23,"id":"30271","lastModified":"1301902009000","name":"Irene Manning","type":"Person","_key":"18472"} +{"label":"George Tobias","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/263\/4bd99f82017a3c1bff000263\/george-tobias-profile.jpg","version":41,"id":"30272","lastModified":"1301901668000","name":"George Tobias","type":"Person","_key":"18473"} +{"label":"Rosemary DeCamp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4bce18f8017a3c24c7000073\/rosemary-decamp-profile.jpg","version":32,"id":"30273","lastModified":"1301901576000","name":"Rosemary DeCamp","type":"Person","_key":"18474"} +{"label":"Jeanne Cagney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48a\/4d880ecc5e73d6751000048a\/jeanne-cagney-profile.jpg","version":23,"id":"30274","lastModified":"1301901541000","name":"Jeanne Cagney","type":"Person","_key":"18475"} +{"label":"Frances Langford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/114\/4c9ccc8a7b9aa1430d000114\/frances-langford-profile.jpg","version":20,"id":"30275","lastModified":"1301902055000","name":"Frances Langford","type":"Person","_key":"18476"} +{"label":"George Barbier","version":25,"id":"30276","lastModified":"1301901944000","name":"George Barbier","type":"Person","_key":"18477"} +{"label":"Douglas Croft","version":21,"id":"30277","lastModified":"1301901908000","name":"Douglas Croft","type":"Person","_key":"18478"} +{"label":"Eddie Foy Jr.","version":25,"id":"30278","lastModified":"1301901668000","name":"Eddie Foy Jr.","type":"Person","_key":"18479"} +{"label":"Minor Watson","version":35,"birthday":"-2525389200000","id":"30279","birthplace":"Marrianna, Arkansas, USA","lastModified":"1301901712000","name":"Minor Watson","type":"Person","_key":"18480"} +{"label":"Chester Clute","version":19,"id":"30280","lastModified":"1301902110000","name":"Chester Clute","type":"Person","_key":"18481"} +{"label":"Odette Myrtil","version":24,"id":"30281","lastModified":"1301901908000","name":"Odette Myrtil","type":"Person","_key":"18482"} +{"label":"Patsy Parsons","version":19,"id":"30282","lastModified":"1301902110000","name":"Patsy Parsons","type":"Person","_key":"18483"} +{"label":"Jack Young","version":19,"id":"30283","lastModified":"1301901908000","name":"Jack Young","type":"Person","_key":"18484"} +{"label":"My Darling Clementine","description":"\"My Darling Clementine\" is John Ford's retelling of the famous shoot out at the OK Corral that arose from the the Earp Clanton feud. ","id":"3088","runtime":97,"imdbId":"tt0038762","trailer":"http:\/\/www.youtube.com\/watch?v=2WTaci5qIJ0","version":113,"lastModified":"1301904821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b1\/4bc91882017a3c57fe0095b1\/my-darling-clementine-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"My Darling Clementine","releaseDate":-728352000000,"language":"en","type":"Movie","_key":"18485"} +{"label":"Linda Darnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4bcf3322017a3c63ef00003b\/linda-darnell-profile.jpg","version":48,"id":"30289","lastModified":"1302002174000","name":"Linda Darnell","type":"Person","_key":"18486"} +{"label":"Victor Mature","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4bd5c489017a3c6580000024\/victor-mature-profile.jpg","biography":"Victor John Mature was an American stage, film and television actor.\n\nIn July 1942 Mature attempted to enlist in the U.S. Navy but was rejected for color blindness. He enlisted in the U.S. Coast Guard after taking a different eye test the same day. He was assigned to the USCGC Storis (WMEC-38), which was doing Greenland patrol work. After 14 months aboard the Storis, Mature was promoted to the rate of Chief Boatswain's Mate. In 1944 he did a series of War Bond tours and acted in morale shows. He","version":54,"birthday":"-1796346000000","id":"30290","birthplace":"Louisville, Kentucky","lastModified":"1301901076000","name":"Victor Mature","type":"Person","_key":"18487"} +{"label":"Cathy Downs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cca\/4c0e4d40017a3c7e8f000cca\/cathy-downs-profile.jpg","version":30,"id":"30291","lastModified":"1301901584000","name":"Cathy Downs","type":"Person","_key":"18488"} +{"label":"Grant Withers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4c76830b7b9aa16a07000125\/grant-withers-profile.jpg","version":33,"id":"30292","lastModified":"1301901607000","name":"Grant Withers","type":"Person","_key":"18489"} +{"label":"Red River","description":"Dunson is driving his cattle to Red River when his adopted son, Matthew, turns against him.","id":"3089","runtime":133,"imdbId":"tt0040724","version":186,"lastModified":"1301904336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ba\/4bc91885017a3c57fe0095ba\/red-river-mid.jpg","studio":"Monterey Productions","genre":"Action","title":"Red River","releaseDate":-673228800000,"language":"en","type":"Movie","_key":"18490"} +{"label":"Arthur Rosson","version":21,"id":"30293","lastModified":"1301901745000","name":"Arthur Rosson","type":"Person","_key":"18491"} +{"label":"Joanne Dru","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4ca62f0b7b9aa17ace00001d\/joanne-dru-profile.jpg","version":38,"id":"30296","lastModified":"1301901074000","name":"Joanne Dru","type":"Person","_key":"18492"} +{"label":"Chief Yowlachie","version":21,"id":"30298","lastModified":"1301901908000","name":"Chief Yowlachie","type":"Person","_key":"18493"} +{"label":"Hank Worden","version":32,"id":"30299","lastModified":"1301901908000","name":"Hank Worden","type":"Person","_key":"18494"} +{"label":"Ray Hyke","version":21,"id":"30300","lastModified":"1301902008000","name":"Ray Hyke","type":"Person","_key":"18495"} +{"label":"Hal Taliaferro","version":22,"id":"121238","lastModified":"1301903051000","name":"Hal Taliaferro","type":"Person","_key":"18496"} +{"label":"The Treasure of the Sierra Madre","description":"Fred C. Dobbs and Bob Curtin, both down on their luck in Tampico, Mexico in 1925, meet up with a grizzled prospector named Howard and decide to join with him in search of gold in the wilds of central Mexico. Through enormous difficulties, they eventually succeed in finding gold, but bandits, the elements, and most especially greed threaten to turn their success into disaster.","id":"3090","runtime":126,"imdbId":"tt0040897","trailer":"http:\/\/www.youtube.com\/watch?v=886","version":541,"lastModified":"1301902565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c3\/4bc91886017a3c57fe0095c3\/the-treasure-of-the-sierra-madre-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Treasure of the Sierra Madre","releaseDate":-693878400000,"language":"en","tagline":"The nearer they get to their treasure, the farther they get from the law","type":"Movie","_key":"18497"} +{"label":"Bruce Bennett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4bd5ec56017a3c6586000092\/bruce-bennett-profile.jpg","version":40,"id":"30303","lastModified":"1301901454000","name":"Bruce Bennett","type":"Person","_key":"18498"} +{"label":"Alfonso Bedoya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/043\/4c23625c7b9aa13f65000043\/alfonso-bedoya-profile.jpg","version":24,"id":"30304","lastModified":"1301901687000","name":"Alfonso Bedoya","type":"Person","_key":"18499"} +{"label":"Arturo Soto Rangel","version":21,"id":"30305","lastModified":"1301901745000","name":"Arturo Soto Rangel","type":"Person","_key":"18500"} +{"label":"Manuel Dond\u00e9","version":25,"id":"30306","lastModified":"1301901745000","name":"Manuel Dond\u00e9","type":"Person","_key":"18501"} +{"label":"Jos\u00e9 Torvay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a1\/4cac7aa47b9aa1152a0001a1\/jose-torvay-profile.jpg","version":27,"id":"30307","lastModified":"1301901428000","name":"Jos\u00e9 Torvay","type":"Person","_key":"18502"} +{"label":"Margarito Luna","version":22,"id":"30308","lastModified":"1301901822000","name":"Margarito Luna","type":"Person","_key":"18503"} +{"label":"S\u00e9ance on a Wet Afternoon","description":"No overview found.","id":"3092","runtime":115,"imdbId":"tt0058557","trailer":"http:\/\/www.youtube.com\/watch?v=W6dbk6RXALI","version":269,"lastModified":"1301903053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f9\/4d97a72a5e73d62c170028f9\/s-ance-on-a-wet-afternoon-mid.jpg","studio":"Allied Film Makers","genre":"Crime","title":"S\u00e9ance on a Wet Afternoon","releaseDate":-174614400000,"language":"en","type":"Movie","_key":"18504"} +{"label":"Bryan Forbes","version":41,"id":"31439","lastModified":"1301901661000","name":"Bryan Forbes","type":"Person","_key":"18505"} +{"label":"Marian Spencer","version":20,"id":"31525","lastModified":"1301901970000","name":"Marian Spencer","type":"Person","_key":"18506"} +{"label":"Judith Donner","version":20,"id":"31526","lastModified":"1301901794000","name":"Judith Donner","type":"Person","_key":"18507"} +{"label":"Basic Instinct 2","description":"Novelist Catherine Tramell is once again in trouble with the law, and Scotland Yard appoints psychiatrist Dr. Michael Glass to evaluate her. Though, like Detective Nick Curran before him, Glass is entranced by Tramell and lured into a seductive game.","id":"3093","runtime":114,"imdbId":"tt0430912","trailer":"http:\/\/www.youtube.com\/watch?v=whKeDU92Ydg","version":680,"lastModified":"1301902317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4c985b845e73d6556c0000db\/basic-instinct-2-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Basic Instinct 2","releaseDate":1142899200000,"language":"en","type":"Movie","_key":"18508"} +{"label":"Michael Caton-Jones","version":56,"id":"30365","lastModified":"1302064820000","name":"Michael Caton-Jones","type":"Person","_key":"18509"} +{"label":"Stan Collymore","version":21,"id":"30429","lastModified":"1301901341000","name":"Stan Collymore","type":"Person","_key":"18510"} +{"label":"Indira Varma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/410\/4cc1a45a5e73d67782001410\/indira-varma-profile.jpg","version":35,"id":"30430","birthplace":"Somerset, England, UK","lastModified":"1301901471000","name":"Indira Varma","type":"Person","_key":"18511"} +{"label":"Heathcote Williams","version":22,"id":"30431","lastModified":"1301901309000","name":"Heathcote Williams","type":"Person","_key":"18512"} +{"label":"Jan Chappell","version":22,"id":"30432","lastModified":"1301901416000","name":"Jan Chappell","type":"Person","_key":"18513"} +{"label":"Neil Maskell","version":31,"id":"30433","lastModified":"1301901242000","name":"Neil Maskell","type":"Person","_key":"18514"} +{"label":"Ellen Thomas","version":21,"id":"30434","lastModified":"1301901341000","name":"Ellen Thomas","type":"Person","_key":"18515"} +{"label":"Flora Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d2e\/4cf27a8e5e73d61e3d000d2e\/flora-montgomery-profile.jpg","version":32,"id":"30435","lastModified":"1301922148000","name":"Flora Montgomery","type":"Person","_key":"18516"} +{"label":"Kata Dob\u00f3","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4cd4d80e7b9aa11b240000b6\/kata-dobo-profile.jpg","version":32,"id":"30436","lastModified":"1301901299000","name":"Kata Dob\u00f3","type":"Person","_key":"18517"} +{"label":"Iain Robertson","version":25,"id":"30437","lastModified":"1301901278000","name":"Iain Robertson","type":"Person","_key":"18518"} +{"label":"Charlie Simpson","version":21,"id":"30438","lastModified":"1301901281000","name":"Charlie Simpson","type":"Person","_key":"18519"} +{"label":"Danielle Lydon","version":21,"id":"30439","lastModified":"1301901226000","name":"Danielle Lydon","type":"Person","_key":"18520"} +{"label":"Christopher Brand","version":21,"id":"30440","lastModified":"1301901255000","name":"Christopher Brand","type":"Person","_key":"18521"} +{"label":"Charlotte Purton","version":21,"id":"30441","lastModified":"1301901281000","name":"Charlotte Purton","type":"Person","_key":"18522"} +{"label":"Adam Allfrey","version":21,"id":"30442","lastModified":"1301901281000","name":"Adam Allfrey","type":"Person","_key":"18523"} +{"label":"Mark Sangster","version":21,"id":"30443","lastModified":"1301901386000","name":"Mark Sangster","type":"Person","_key":"18524"} +{"label":"Tim Berrington","version":25,"id":"30444","lastModified":"1301901241000","name":"Tim Berrington","type":"Person","_key":"18525"} +{"label":"Vee Vimolmal","version":21,"id":"30445","lastModified":"1301901281000","name":"Vee Vimolmal","type":"Person","_key":"18526"} +{"label":"Simon Lenagan","version":22,"id":"30446","lastModified":"1301901271000","name":"Simon Lenagan","type":"Person","_key":"18527"} +{"label":"Clair Tebbut","version":22,"id":"30447","lastModified":"1301901271000","name":"Clair Tebbut","type":"Person","_key":"18528"} +{"label":"Aisling O'Neill","version":19,"id":"30448","lastModified":"1301901294000","name":"Aisling O'Neill","type":"Person","_key":"18529"} +{"label":"Alexandra Staden","version":21,"id":"30449","lastModified":"1301901281000","name":"Alexandra Staden","type":"Person","_key":"18530"} +{"label":"Peter Rnic","version":25,"id":"30450","lastModified":"1301901169000","name":"Peter Rnic","type":"Person","_key":"18531"} +{"label":"Martin Heathcote","version":20,"id":"30451","lastModified":"1301901268000","name":"Martin Heathcote","type":"Person","_key":"18532"} +{"label":"Keith How","version":21,"id":"30452","lastModified":"1301901341000","name":"Keith How","type":"Person","_key":"18533"} +{"label":"Robert Clarke","version":42,"id":"30453","lastModified":"1301901164000","name":"Robert Clarke","type":"Person","_key":"18534"} +{"label":"Robyn Cooper","version":21,"id":"30454","lastModified":"1301901280000","name":"Robyn Cooper","type":"Person","_key":"18535"} +{"label":"Robert Dearle","version":21,"id":"30455","lastModified":"1301901385000","name":"Robert Dearle","type":"Person","_key":"18536"} +{"label":"Timo Gilbert","version":21,"id":"30456","lastModified":"1301901255000","name":"Timo Gilbert","type":"Person","_key":"18537"} +{"label":"Nachtrausch","description":"No overview found.","id":"3094","runtime":13,"imdbId":"tt0345690","version":41,"lastModified":"1301907434000","title":"Nachtrausch","releaseDate":1023408000000,"language":"en","type":"Movie","_key":"18538"} +{"label":"Simon Gro\u00df","version":24,"id":"30370","lastModified":"1301901662000","name":"Simon Gro\u00df","type":"Person","_key":"18539"} +{"label":"Daniella Erdmann","version":20,"id":"30377","lastModified":"1301902010000","name":"Daniella Erdmann","type":"Person","_key":"18540"} +{"label":"Marc Schulze","version":17,"id":"30378","lastModified":"1301901686000","name":"Marc Schulze","type":"Person","_key":"18541"} +{"label":"Esther Zimmering","version":25,"id":"30379","lastModified":"1301902189000","name":"Esther Zimmering","type":"Person","_key":"18542"} +{"label":"Miss Marie Lloyd: Queen of the Music Hall","description":"No overview found.","id":"3095","runtime":80,"imdbId":"tt0944839","version":67,"lastModified":"1301904478000","studio":"BBC Films","genre":"Drama","title":"Miss Marie Lloyd: Queen of the Music Hall","releaseDate":1178668800000,"language":"en","type":"Movie","_key":"18543"} +{"label":"James Hawes","version":25,"id":"30310","lastModified":"1301901569000","name":"James Hawes","type":"Person","_key":"18544"} +{"label":"Martin Harrison","version":20,"id":"30340","lastModified":"1301901970000","name":"Martin Harrison","type":"Person","_key":"18545"} +{"label":"Chris Stoaling","version":21,"id":"24223","lastModified":"1301902160000","name":"Chris Stoaling","type":"Person","_key":"18546"} +{"label":"Heidi Gower","version":20,"id":"30341","lastModified":"1301902204000","name":"Heidi Gower","type":"Person","_key":"18547"} +{"label":"Heidi Gower","version":20,"id":"30342","lastModified":"1301902160000","name":"Heidi Gower","type":"Person","_key":"18548"} +{"label":"Jessie Wallace","version":20,"id":"30314","lastModified":"1301901970000","name":"Jessie Wallace","type":"Person","_key":"18549"} +{"label":"Richard Armitage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4d9378317b9aa1199100114c\/richard-armitage-profile.jpg","version":30,"id":"30315","lastModified":"1301901530000","name":"Richard Armitage","type":"Person","_key":"18550"} +{"label":"Lee Williams","version":22,"id":"30317","lastModified":"1301901661000","name":"Lee Williams","type":"Person","_key":"18551"} +{"label":"Amanda Root","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/309\/4cb7109d5e73d67785000309\/amanda-root-profile.jpg","version":27,"id":"30318","lastModified":"1301901773000","name":"Amanda Root","type":"Person","_key":"18552"} +{"label":"Tom Payne","version":22,"id":"30319","lastModified":"1301901970000","name":"Tom Payne","type":"Person","_key":"18553"} +{"label":"Annette Badland","version":22,"id":"30320","lastModified":"1301901794000","name":"Annette Badland","type":"Person","_key":"18554"} +{"label":"Star Ella Jones","version":20,"id":"30321","lastModified":"1301902008000","name":"Star Ella Jones","type":"Person","_key":"18555"} +{"label":"Sue Elliott-Nichols","version":17,"id":"30322","lastModified":"1301901983000","name":"Sue Elliott-Nichols","type":"Person","_key":"18556"} +{"label":"Tim Faraday","version":21,"id":"30323","lastModified":"1301901794000","name":"Tim Faraday","type":"Person","_key":"18557"} +{"label":"Paul Lowe","version":17,"id":"30324","lastModified":"1301902187000","name":"Paul Lowe","type":"Person","_key":"18558"} +{"label":"Michael Mears","version":23,"id":"30325","lastModified":"1301901846000","name":"Michael Mears","type":"Person","_key":"18559"} +{"label":"Shaughan Seymour","version":26,"id":"30326","lastModified":"1301901970000","name":"Shaughan Seymour","type":"Person","_key":"18560"} +{"label":"James Puddephatt","version":23,"id":"30327","lastModified":"1301901970000","name":"James Puddephatt","type":"Person","_key":"18561"} +{"label":"Jack Sweeney","version":20,"id":"30329","lastModified":"1301901970000","name":"Jack Sweeney","type":"Person","_key":"18562"} +{"label":"Becky Pennick","version":20,"id":"30330","lastModified":"1301901970000","name":"Becky Pennick","type":"Person","_key":"18563"} +{"label":"Dos billetes","description":"No overview found.","id":"3096","runtime":0,"imdbId":"tt0817900","homepage":"http:\/\/www.dosbilletes.com\/","version":59,"lastModified":"1301907298000","studio":"Producciones Scarlata","genre":"Crime","title":"Dos billetes","releaseDate":1190246400000,"language":"en","type":"Movie","_key":"18564"} +{"label":"Javier Serrano","version":23,"id":"30343","lastModified":"1301901546000","name":"Javier Serrano","type":"Person","_key":"18565"} +{"label":"Toni Mart\u00ednez","version":19,"id":"30349","lastModified":"1301901754000","name":"Toni Mart\u00ednez","type":"Person","_key":"18566"} +{"label":"Monica Pont","version":19,"id":"30350","lastModified":"1301902119000","name":"Monica Pont","type":"Person","_key":"18567"} +{"label":"Ariadna Cabrol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4c7e30055e73d648e10000bf\/ariadna-cabrol-profile.jpg","version":22,"id":"30352","lastModified":"1301901380000","name":"Ariadna Cabrol","type":"Person","_key":"18568"} +{"label":"Emiliano Jim\u00e9nez","version":19,"id":"30353","lastModified":"1301902119000","name":"Emiliano Jim\u00e9nez","type":"Person","_key":"18569"} +{"label":"Ruth Navarro","version":19,"id":"30354","lastModified":"1301901919000","name":"Ruth Navarro","type":"Person","_key":"18570"} +{"label":"Pep Ferrer","version":19,"id":"30355","lastModified":"1301901919000","name":"Pep Ferrer","type":"Person","_key":"18571"} +{"label":"Enric Arredondo","version":19,"id":"30356","lastModified":"1301901919000","name":"Enric Arredondo","type":"Person","_key":"18572"} +{"label":"Xabier Elorriaga","version":22,"id":"30357","lastModified":"1301901754000","name":"Xabier Elorriaga","type":"Person","_key":"18573"} +{"label":"Jos\u00e9 Manuel Cervino","version":20,"id":"30358","lastModified":"1301902188000","name":"Jos\u00e9 Manuel Cervino","type":"Person","_key":"18574"} +{"label":"Manuel Mena","version":19,"id":"30359","lastModified":"1301902119000","name":"Manuel Mena","type":"Person","_key":"18575"} +{"label":"Jos\u00e9 Comisario","version":19,"id":"30360","lastModified":"1301902119000","name":"Jos\u00e9 Comisario","type":"Person","_key":"18576"} +{"label":"Manuel Veiga","version":19,"id":"30361","lastModified":"1301901754000","name":"Manuel Veiga","type":"Person","_key":"18577"} +{"label":"Eva Arnal","version":19,"id":"30362","lastModified":"1301901754000","name":"Eva Arnal","type":"Person","_key":"18578"} +{"label":"Sandra Alcaraz","version":19,"id":"30363","lastModified":"1301901919000","name":"Sandra Alcaraz","type":"Person","_key":"18579"} +{"label":"Josi Garc\u00eda","version":20,"id":"30344","lastModified":"1301902119000","name":"Josi Garc\u00eda","type":"Person","_key":"18580"} +{"label":"The Tulse Luper Suitcases, Part 1: The Moab Story","description":"The Tulse Luper Suitcases reconstructs the life of Tulse Luper, a professional writer and project-maker, caught up in a life of prisons. He was born in 1911 in Newport, South Wales and presumably last heard of in 1989. His life is reconstructed from the evidence of 92 suitcases found around the world - 92 being the atomic number of the element Uranium. The project includes three feature films, a TV series, 92 DVDs, CD-ROMs, and books.","id":"3097","runtime":127,"imdbId":"tt0307596","version":118,"lastModified":"1301907299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/976\/4d7d39325e73d6282a002976\/the-tulse-luper-suitcases-part-1-the-moab-story-mid.jpg","studio":"Kasander Film Company","genre":"Drama","title":"The Tulse Luper Suitcases, Part 1: The Moab Story","releaseDate":1053734400000,"language":"en","type":"Movie","_key":"18581"} +{"label":"JJ Feild","version":39,"id":"30710","lastModified":"1301901178000","name":"JJ Feild","type":"Person","_key":"18582"} +{"label":"Caroline Dhavernas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a0\/4cf714895e73d6299d0017a0\/caroline-dhavernas-profile.jpg","biography":"<span style=\"font-family: helvetica,arial,sans-serif;\"><small>Caroline\nDhavernas made her television debut in the popular daytime soap opera\nMarilyn at the age of twelve. Since then, she has played lead roles in\nQuebec\u2019s most successful television series such as Zap, Jasmine,\nUrgence I and II, Lobby and Le Pollock. But it was as the young and\nbeautiful Stephanie in the highly successful series Tag I and II, that\nshe became a household name with French Canadian audiences. She was\nnominated for tw","version":52,"id":"31383","lastModified":"1301901168000","name":"Caroline Dhavernas","type":"Person","_key":"18583"} +{"label":"Jordi Moll\u00e0","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd0\/4cbc87f65e73d67785000cd0\/jordi-molla-profile.jpg","version":55,"id":"31384","lastModified":"1301901174000","name":"Jordi Moll\u00e0","type":"Person","_key":"18584"} +{"label":"Scot Williams","version":30,"id":"31385","lastModified":"1301901414000","name":"Scot Williams","type":"Person","_key":"18585"} +{"label":"Drew Mulligan","version":23,"id":"31386","lastModified":"1301901661000","name":"Drew Mulligan","type":"Person","_key":"18586"} +{"label":"Yorick van Wageningen","version":31,"id":"31387","lastModified":"1301901414000","name":"Yorick van Wageningen","type":"Person","_key":"18587"} +{"label":"Na\u00edm Thomas","version":20,"id":"31388","lastModified":"1301901755000","name":"Na\u00edm Thomas","type":"Person","_key":"18588"} +{"label":"Nilo Mur","version":21,"id":"31389","lastModified":"1301901755000","name":"Nilo Mur","type":"Person","_key":"18589"} +{"label":"Mich\u00e8le Bernier","version":22,"id":"31390","lastModified":"1301901402000","name":"Mich\u00e8le Bernier","type":"Person","_key":"18590"} +{"label":"Barbara Tarbuck","version":21,"id":"31391","lastModified":"1301901629000","name":"Barbara Tarbuck","type":"Person","_key":"18591"} +{"label":"Enrique Alcides","version":21,"id":"31392","lastModified":"1301901755000","name":"Enrique Alcides","type":"Person","_key":"18592"} +{"label":"Shaun Phillips","version":22,"id":"31393","lastModified":"1301901755000","name":"Shaun Phillips","type":"Person","_key":"18593"} +{"label":"Guillermo Ayesa","version":20,"id":"31394","lastModified":"1301901755000","name":"Guillermo Ayesa","type":"Person","_key":"18594"} +{"label":"Joan Codina","version":20,"id":"31395","lastModified":"1301901755000","name":"Joan Codina","type":"Person","_key":"18595"} +{"label":"Xavier Aliguer","version":18,"id":"31396","lastModified":"1301901822000","name":"Xavier Aliguer","type":"Person","_key":"18596"} +{"label":"Iv\u00e1n Andrade","version":20,"id":"31397","lastModified":"1301901755000","name":"Iv\u00e1n Andrade","type":"Person","_key":"18597"} +{"label":"Lauren Hadley","version":20,"id":"31398","lastModified":"1301901755000","name":"Lauren Hadley","type":"Person","_key":"18598"} +{"label":"Joshua Light","version":20,"id":"31399","lastModified":"1301901755000","name":"Joshua Light","type":"Person","_key":"18599"} +{"label":"Vincent Bonnet","version":20,"id":"31400","lastModified":"1301901755000","name":"Vincent Bonnet","type":"Person","_key":"18600"} +{"label":"Sally-Jo Jenkins","version":20,"id":"31401","lastModified":"1301901755000","name":"Sally-Jo Jenkins","type":"Person","_key":"18601"} +{"label":"Manu Fullola","version":18,"id":"31402","lastModified":"1301901805000","name":"Manu Fullola","type":"Person","_key":"18602"} +{"label":"Winston Evans","version":20,"id":"31404","lastModified":"1301901755000","name":"Winston Evans","type":"Person","_key":"18603"} +{"label":"Francine Morgan","version":20,"id":"31405","lastModified":"1301901755000","name":"Francine Morgan","type":"Person","_key":"18604"} +{"label":"Thomas Bodmer","version":20,"id":"31406","lastModified":"1301901755000","name":"Thomas Bodmer","type":"Person","_key":"18605"} +{"label":"Joan-Francesc Ainaud","version":20,"id":"31407","lastModified":"1301901755000","name":"Joan-Francesc Ainaud","type":"Person","_key":"18606"} +{"label":"Phillippe Boekstal","version":20,"id":"31408","lastModified":"1301901755000","name":"Phillippe Boekstal","type":"Person","_key":"18607"} +{"label":"Edmon Roch","version":20,"id":"31409","lastModified":"1301901755000","name":"Edmon Roch","type":"Person","_key":"18608"} +{"label":"Amelia White","version":20,"id":"31410","lastModified":"1301901755000","name":"Amelia White","type":"Person","_key":"18609"} +{"label":"Clare Boland","version":20,"id":"31411","lastModified":"1301901755000","name":"Clare Boland","type":"Person","_key":"18610"} +{"label":"Marlene Griffiths","version":20,"id":"31412","lastModified":"1301901755000","name":"Marlene Griffiths","type":"Person","_key":"18611"} +{"label":"Roger Nott","version":20,"id":"31413","lastModified":"1301901755000","name":"Roger Nott","type":"Person","_key":"18612"} +{"label":"Josep de Font","version":20,"id":"31414","lastModified":"1301901755000","name":"Josep de Font","type":"Person","_key":"18613"} +{"label":"Ivan Labanda","version":20,"id":"31415","lastModified":"1301901755000","name":"Ivan Labanda","type":"Person","_key":"18614"} +{"label":"Roger Padilla","version":20,"id":"31416","lastModified":"1301901755000","name":"Roger Padilla","type":"Person","_key":"18615"} +{"label":"Joan Pastor","version":20,"id":"31417","lastModified":"1301901755000","name":"Joan Pastor","type":"Person","_key":"18616"} +{"label":"Aimar P\u00e9rez","version":20,"id":"31418","lastModified":"1301901755000","name":"Aimar P\u00e9rez","type":"Person","_key":"18617"} +{"label":"Phil Rowlands","version":20,"id":"31419","lastModified":"1301901755000","name":"Phil Rowlands","type":"Person","_key":"18618"} +{"label":"Marti Santiago","version":20,"id":"31420","lastModified":"1301901755000","name":"Marti Santiago","type":"Person","_key":"18619"} +{"label":"Albert L\u00f3pez-Murtra","version":20,"id":"31421","lastModified":"1301901755000","name":"Albert L\u00f3pez-Murtra","type":"Person","_key":"18620"} +{"label":"Ivan Massagu\u00e9","version":20,"id":"31422","lastModified":"1301901755000","name":"Ivan Massagu\u00e9","type":"Person","_key":"18621"} +{"label":"Bruno Pichot","version":20,"id":"31423","lastModified":"1301901755000","name":"Bruno Pichot","type":"Person","_key":"18622"} +{"label":"Ricard Sales","version":20,"id":"31424","lastModified":"1301901755000","name":"Ricard Sales","type":"Person","_key":"18623"} +{"label":"Coast Alexander Ryen","version":20,"id":"31425","lastModified":"1301901755000","name":"Coast Alexander Ryen","type":"Person","_key":"18624"} +{"label":"Tanya Moodie","version":20,"id":"31427","lastModified":"1301901755000","name":"Tanya Moodie","type":"Person","_key":"18625"} +{"label":"Paul Rockenbrod","version":20,"id":"31428","lastModified":"1301901755000","name":"Paul Rockenbrod","type":"Person","_key":"18626"} +{"label":"Francesco Salvi","version":21,"id":"31429","lastModified":"1301901629000","name":"Francesco Salvi","type":"Person","_key":"18627"} +{"label":"D\u00e1vid Sp\u00e1h","version":20,"id":"31430","lastModified":"1301901755000","name":"D\u00e1vid Sp\u00e1h","type":"Person","_key":"18628"} +{"label":"Nigel Terry","version":24,"id":"31431","lastModified":"1301901405000","name":"Nigel Terry","type":"Person","_key":"18629"} +{"label":"Alec Von Bargen","version":20,"id":"31432","lastModified":"1301901755000","name":"Alec Von Bargen","type":"Person","_key":"18630"} +{"label":"Leslie Woodhall","version":20,"id":"31433","lastModified":"1301901755000","name":"Leslie Woodhall","type":"Person","_key":"18631"} +{"label":"Peter Greenaway","version":133,"id":"30309","lastModified":"1301901127000","name":"Peter Greenaway","type":"Person","_key":"18632"} +{"label":"The Tulse Luper Suitcases, Part 2: Vaux to the Sea","description":"The Tulse Luper Suitcases reconstructs the life of Tulse Luper, a professional writer and project-maker, caught up in a life of prisons. He was born in 1911 in Newport, South Wales and presumably last heard of in 1989. His life is reconstructed from the evidence of 92 suitcases found around the world - 92 being the atomic number of the element Uranium. The project includes three feature films, a TV series, 92 DVDs, CD-ROMs, and books.","id":"3098","runtime":108,"imdbId":"tt0408281","version":78,"lastModified":"1301908363000","studio":"Kasander Film Company","genre":"Drama","title":"The Tulse Luper Suitcases, Part 2: Vaux to the Sea","releaseDate":1076284800000,"language":"en","type":"Movie","_key":"18633"} +{"label":"Ronald Pickup","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de1\/4d280cab7b9aa134cf001de1\/ronald-pickup-profile.jpg","version":45,"id":"32556","lastModified":"1301901161000","name":"Ronald Pickup","type":"Person","_key":"18634"} +{"label":"Benjamin Davies","version":19,"id":"32557","lastModified":"1301901919000","name":"Benjamin Davies","type":"Person","_key":"18635"} +{"label":"Porgy Franssen","version":21,"id":"32558","lastModified":"1301901919000","name":"Porgy Franssen","type":"Person","_key":"18636"} +{"label":"Scott Handy","version":21,"id":"32559","lastModified":"1301901919000","name":"Scott Handy","type":"Person","_key":"18637"} +{"label":"Ceri Mears","version":19,"id":"32561","lastModified":"1301901919000","name":"Ceri Mears","type":"Person","_key":"18638"} +{"label":"The Tulse Luper Suitcases, Part 3: From Sark to the Finish","description":"The Tulse Luper Suitcases reconstructs the life of Tulse Luper, a professional writer and project-maker, caught up in a life of prisons. He was born in 1911 in Newport, South Wales and presumably last heard of in 1989. His life is reconstructed from the evidence of 92 suitcases found around the world - 92 being the atomic number of the element Uranium. The project includes three feature films, a TV series, 92 DVDs, CD-ROMs, and books.","id":"3099","runtime":120,"imdbId":"tt0379561","version":61,"lastModified":"1301907429000","studio":"Kasander Film Company","genre":"Drama","title":"The Tulse Luper Suitcases, Part 3: From Sark to the Finish","releaseDate":1062806400000,"language":"en","type":"Movie","_key":"18639"} +{"label":"Roberto Citran","version":32,"id":"32562","lastModified":"1301901845000","name":"Roberto Citran","type":"Person","_key":"18640"} +{"label":"Giovanni Capalbo","version":20,"id":"32563","lastModified":"1301902023000","name":"Giovanni Capalbo","type":"Person","_key":"18641"} +{"label":"Renata Litvinova","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04b\/4bcf4223017a3c63ed00004b\/renata-litvinova-profile.jpg","version":31,"id":"32564","lastModified":"1301901513000","name":"Renata Litvinova","type":"Person","_key":"18642"} +{"label":"Jochum ten Haaf","version":21,"id":"32565","lastModified":"1301901836000","name":"Jochum ten Haaf","type":"Person","_key":"18643"} +{"label":"A Life in Suitcases","description":"Follows Tulse Luper as he is swept into the ill-fortuned tides of the 20th century and forced to spend his life in a succession of imprisonments.","id":"3100","runtime":120,"imdbId":"tt0486192","version":54,"lastModified":"1301908614000","studio":"Kasander Film Company","genre":"Drama","title":"A Life in Suitcases","releaseDate":1129766400000,"language":"en","type":"Movie","_key":"18644"} +{"label":"I Love You to Death","description":"As Rosalie finds out Joey is cheeting on her, she tries to kill him. After five times the police thinks it is enough and puts her in jail. Joey is waiting for her when she is released and the couple lives happily ever after... Based on the true story of Frances and Anthony Toto in 1984.","id":"3101","runtime":94,"imdbId":"tt0099819","version":608,"lastModified":"1301904630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f0\/4bc9188e017a3c57fe0095f0\/i-love-you-to-death-mid.jpg","studio":"Chestnut Hill Productions","genre":"Action","title":"I Love You to Death","releaseDate":639360000000,"language":"en","type":"Movie","_key":"18645"} +{"label":"Tracey Ullman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24d\/4cf6793d5e73d6299b00124d\/tracey-ullman-profile.jpg","version":52,"id":"30364","lastModified":"1301901203000","name":"Tracey Ullman","type":"Person","_key":"18646"} +{"label":"Victoria Jackson","version":26,"id":"30366","lastModified":"1301901442000","name":"Victoria Jackson","type":"Person","_key":"18647"} +{"label":"Alisan Porter","version":24,"id":"30367","lastModified":"1301901478000","name":"Alisan Porter","type":"Person","_key":"18648"} +{"label":"Jon Kasdan","version":24,"id":"30368","lastModified":"1301901946000","name":"Jon Kasdan","type":"Person","_key":"18649"} +{"label":"Michelle Joyner","version":20,"id":"30369","lastModified":"1301902110000","name":"Michelle Joyner","type":"Person","_key":"18650"} +{"label":"Carey Dietrich","version":20,"id":"30395","lastModified":"1301901745000","name":"Carey Dietrich","type":"Person","_key":"18651"} +{"label":"Nina Halvorsson","version":20,"id":"30396","lastModified":"1301901623000","name":"Nina Halvorsson","type":"Person","_key":"18652"} +{"label":"Michael Grillo","version":29,"id":"30383","lastModified":"1301901593000","name":"Michael Grillo","type":"Person","_key":"18653"} +{"label":"My Step Brother Frankenstein","description":"No overview found.","id":"3102","runtime":120,"imdbId":"tt0416040","version":55,"lastModified":"1301907429000","genre":"Drama","title":"My Step Brother Frankenstein","releaseDate":1098316800000,"language":"en","type":"Movie","_key":"18654"} +{"label":"Valeriy Todorovskiy","version":34,"id":"30397","lastModified":"1301901472000","name":"Valeriy Todorovskiy","type":"Person","_key":"18655"} +{"label":"Leonid Yarmolnik","version":21,"id":"30399","lastModified":"1301902008000","name":"Leonid Yarmolnik","type":"Person","_key":"18656"} +{"label":"Daniil Spivakovsky","version":20,"id":"30403","lastModified":"1301902188000","name":"Daniil Spivakovsky","type":"Person","_key":"18657"} +{"label":"Elena Yakovleva","version":18,"id":"30404","lastModified":"1301902176000","name":"Elena Yakovleva","type":"Person","_key":"18658"} +{"label":"Sergey Gazarov","version":26,"id":"30405","lastModified":"1301901468000","name":"Sergey Gazarov","type":"Person","_key":"18659"} +{"label":"Vladimir Bogdanov","version":22,"id":"30406","lastModified":"1301901834000","name":"Vladimir Bogdanov","type":"Person","_key":"18660"} +{"label":"Artem Shalimov","version":20,"id":"30408","lastModified":"1301902188000","name":"Artem Shalimov","type":"Person","_key":"18661"} +{"label":"Sergey Garmash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/063\/4bcf4b99017a3c63ef000063\/sergey-garmash-profile.jpg","version":54,"id":"81000","lastModified":"1301901409000","name":"Sergey Garmash","type":"Person","_key":"18662"} +{"label":"House of Frankenstein","description":"No overview found.","id":"3103","runtime":71,"imdbId":"tt0036931","version":97,"lastModified":"1301907288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f9\/4bc9188e017a3c57fe0095f9\/house-of-frankenstein-mid.jpg","studio":"Universal Pictures Corporation","genre":"Fantasy","title":"House of Frankenstein","releaseDate":-791596800000,"language":"en","type":"Movie","_key":"18663"} +{"label":"Anne Gwynne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4caf69597b9aa1263c000006\/anne-gwynne-profile.jpg","biography":"<b>Anne Gwynne<\/b><span style=\"font-family: Georgia; font-size: small; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \"><b> <\/b>was signed by Universal Pictures when she was 20 yrs old, and co-starred in \"Flash Gordon Conquers the Universe\" with Buster Crabbe soon thereafter . Over the next years, Miss Gwynne would be featured in some thirty-eight Universal films, and become one of the studio\u2019s most recognizable stars. She co-starred in an additional 20 f","version":31,"birthday":"-1611363600000","id":"30415","birthplace":"San Antonio, Texas, USA","lastModified":"1301904080000","name":"Anne Gwynne","type":"Person","_key":"18664"} +{"label":"Peter Coe","version":24,"id":"30416","lastModified":"1301901491000","name":"Peter Coe","type":"Person","_key":"18665"} +{"label":"George Zucco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/617\/4be1ee55017a3c35bf000617\/george-zucco-profile.jpg","version":46,"id":"30417","lastModified":"1301901576000","name":"George Zucco","type":"Person","_key":"18666"} +{"label":"Elena Verdugo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/117\/4c9ccf857b9aa1430e000117\/elena-verdugo-profile.jpg","version":18,"id":"133788","lastModified":"1301902222000","name":"Elena Verdugo","type":"Person","_key":"18667"} +{"label":"Frankenstein Created Woman","description":"Baron Frankenstein (Peter Cushing) revives the dead body of a disfigured girl, Christina (Susan Denberg), who has committed suicide following the wrongful execution of her lover, Hans (Robert Morris), for murder. The Baron's further experiments succeed in transplanting Hans's soul into Christine, who then takes revenge on the young dandies who framed Hans for their own crime.Frankenstein Created Woman is one of the most critically acclaimed Hammer films, with some commentators appreciating its f","id":"3104","runtime":92,"imdbId":"tt0061683","version":94,"lastModified":"1301905966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20a\/4c180ffc7b9aa108d400020a\/frankenstein-created-woman-mid.jpg","studio":"Hammer Film Productions","genre":"Horror","title":"Frankenstein Created Woman","releaseDate":-88387200000,"language":"en","type":"Movie","_key":"18668"} +{"label":"Susan Denberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bc\/4cb6141a7b9aa138d80003bc\/susan-denberg-profile.jpg","version":18,"id":"15645","lastModified":"1301901660000","name":"Susan Denberg","type":"Person","_key":"18669"} +{"label":"Robert Morris","version":20,"id":"30420","lastModified":"1301901841000","name":"Robert Morris","type":"Person","_key":"18670"} +{"label":"Barry Warren","version":20,"id":"30421","lastModified":"1301902130000","name":"Barry Warren","type":"Person","_key":"18671"} +{"label":"Frankenstein: The True Story","description":"No overview found.","id":"3105","runtime":182,"imdbId":"tt0070074","version":316,"lastModified":"1301906757000","studio":"BBC Films","genre":"Horror","title":"Frankenstein: The True Story","releaseDate":123465600000,"language":"en","type":"Movie","_key":"18672"} +{"label":"Jack Smight","version":28,"id":"30422","lastModified":"1301901334000","name":"Jack Smight","type":"Person","_key":"18673"} +{"label":"Leonard Whiting","version":24,"id":"30426","lastModified":"1301901499000","name":"Leonard Whiting","type":"Person","_key":"18674"} +{"label":"Nicola Pagett","version":20,"id":"30427","lastModified":"1301902199000","name":"Nicola Pagett","type":"Person","_key":"18675"} +{"label":"Michael Sarrazin","version":34,"id":"30428","lastModified":"1301901318000","name":"Michael Sarrazin","type":"Person","_key":"18676"} +{"label":"\u0414\u043e\u0437\u043e\u0440","description":"No overview found.","id":"3106","version":334,"lastModified":"1301906492000","title":"\u0414\u043e\u0437\u043e\u0440","language":"en","type":"Movie","_key":"18677"} +{"label":"Destroy All Monsters","description":"Aliens have released all the giant monsters from their imprisonment on Monster Island and are using them to destroy all major cities on the planet. It is up to the daring crew of the super rocket ship X-2 to infiltrate the aliens' headquarters before the Earth monsters and King Ghidrah annihilate the planet.","id":"3107","runtime":89,"imdbId":"tt0063172","version":199,"lastModified":"1301905445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/602\/4bc9188f017a3c57fe009602\/kaiju-soshingeki-mid.jpg","studio":"Toho Company","genre":"Action","title":"Destroy All Monsters","releaseDate":-44755200000,"language":"en","type":"Movie","_key":"18678"} +{"label":"Seiji Tani","version":19,"id":"30468","lastModified":"1301901766000","name":"Seiji Tani","type":"Person","_key":"18679"} +{"label":"Akira Kubo","version":31,"id":"30469","lastModified":"1301901845000","name":"Akira Kubo","type":"Person","_key":"18680"} +{"label":"Jun Tazaki","version":26,"id":"30470","lastModified":"1301901934000","name":"Jun Tazaki","type":"Person","_key":"18681"} +{"label":"Yukiko Kobayashi","version":19,"id":"30471","lastModified":"1301902128000","name":"Yukiko Kobayashi","type":"Person","_key":"18682"} +{"label":"Ky\u00f4ko Ai","version":18,"id":"30472","lastModified":"1301902199000","name":"Ky\u00f4ko Ai","type":"Person","_key":"18683"} +{"label":"Andrew Hughes","version":19,"id":"30473","lastModified":"1301902128000","name":"Andrew Hughes","type":"Person","_key":"18684"} +{"label":"Ch\u00f4tar\u00f4 T\u00f4gin","version":19,"id":"30474","lastModified":"1301901990000","name":"Ch\u00f4tar\u00f4 T\u00f4gin","type":"Person","_key":"18685"} +{"label":"Yoshifumi Tajima","version":20,"id":"30475","lastModified":"1301902128000","name":"Yoshifumi Tajima","type":"Person","_key":"18686"} +{"label":"Hisaya Ito","version":21,"id":"30476","lastModified":"1301902188000","name":"Hisaya Ito","type":"Person","_key":"18687"} +{"label":"House of Frankenstein","description":"No overview found.","id":"3108","runtime":120,"imdbId":"tt0127378","version":92,"lastModified":"1301905033000","studio":"Big Talk Productions","genre":"Action","title":"House of Frankenstein","releaseDate":878428800000,"language":"en","type":"Movie","_key":"18688"} +{"label":"Peter Werner","version":24,"id":"30477","lastModified":"1301901512000","name":"Peter Werner","type":"Person","_key":"18689"} +{"label":"Peter Crombie","version":22,"id":"30487","lastModified":"1301902194000","name":"Peter Crombie","type":"Person","_key":"18690"} +{"label":"Miguel Sandoval","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46b\/4d82685d7b9aa17f7d00046b\/miguel-sandoval-profile.jpg","version":43,"id":"30488","lastModified":"1301901503000","name":"Miguel Sandoval","type":"Person","_key":"18691"} +{"label":"Karen Austin","version":26,"id":"30489","lastModified":"1301901833000","name":"Karen Austin","type":"Person","_key":"18692"} +{"label":"The Quiet Man","description":"A disgraced American boxer retires to Ireland, where he finds love.","id":"3109","runtime":129,"imdbId":"tt0045061","version":236,"lastModified":"1301904341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/613\/4bc91893017a3c57fe009613\/the-quiet-man-mid.jpg","studio":"Argosy Pictures","genre":"Comedy","title":"The Quiet Man","releaseDate":-550627200000,"language":"en","type":"Movie","_key":"18693"} +{"label":"Victor McLaglen","version":39,"id":"30495","lastModified":"1301901597000","name":"Victor McLaglen","type":"Person","_key":"18694"} +{"label":"Francis Ford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c3cbbcd7b9aa12691000022\/francis-ford-profile.jpg","version":24,"birthday":"-2789082000000","id":"30496","birthplace":"Portland, Maine, USA","lastModified":"1301901674000","name":"Francis Ford","type":"Person","_key":"18695"} +{"label":"Eileen Crowe","version":22,"id":"30497","lastModified":"1301901930000","name":"Eileen Crowe","type":"Person","_key":"18696"} +{"label":"May Craig","version":22,"id":"30498","lastModified":"1301902125000","name":"May Craig","type":"Person","_key":"18697"} +{"label":"Charles B. Fitzsimons","version":22,"id":"30499","lastModified":"1301901930000","name":"Charles B. Fitzsimons","type":"Person","_key":"18698"} +{"label":"James O'Hara","version":22,"id":"30500","lastModified":"1301902125000","name":"James O'Hara","type":"Person","_key":"18699"} +{"label":"Sean McClory","version":25,"id":"30501","lastModified":"1301901635000","name":"Sean McClory","type":"Person","_key":"18700"} +{"label":"Joseph O'Dea","version":22,"id":"30502","lastModified":"1301901930000","name":"Joseph O'Dea","type":"Person","_key":"18701"} +{"label":"Eric Gorman","version":22,"id":"30503","lastModified":"1301902125000","name":"Eric Gorman","type":"Person","_key":"18702"} +{"label":"Paddy O'Donnell","version":22,"id":"30505","lastModified":"1301901930000","name":"Paddy O'Donnell","type":"Person","_key":"18703"} +{"label":"Kevin Lawless","version":22,"id":"30504","lastModified":"1301902125000","name":"Kevin Lawless","type":"Person","_key":"18704"} +{"label":"Shane","description":"A weary gunfighter attempts to settle down with a homestead family, but a smouldering settler and rancher conflict forces him to act.","id":"3110","runtime":118,"imdbId":"tt0046303","trailer":"http:\/\/www.youtube.com\/watch?v=SWdPmapuOd4","version":312,"lastModified":"1301903823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cd\/4d38cc577b9aa161450003cd\/shane-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Shane","releaseDate":-526780800000,"language":"en","type":"Movie","_key":"18705"} +{"label":"Alan Ladd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4bd5b8ab017a3c658900001f\/alan-ladd-profile.jpg","biography":"Alan Walbridge Ladd (September 3, 1913 \u2013 January 29, 1964) was an American film actor.\n\nEarly life\n\nLadd was born in Hot Springs, Arkansas to an American father (Alan Ladd, Sr.) and an English-American mother (Ina Raleigh Ladd). His father died when he was four, and his mother relocated to Oklahoma City where she married Jim Beavers, a housepainter. The family then moved again to North Hollywood, California where Ladd became a high-school swimming and diving champion and participated in high sch","version":39,"birthday":"-1777597200000","id":"30510","birthplace":"Hot Springs, Arkansas USA","lastModified":"1301901101000","name":"Alan Ladd","type":"Person","_key":"18706"} +{"label":"Brandon De Wilde","version":27,"id":"30511","lastModified":"1301902203000","name":"Brandon De Wilde","type":"Person","_key":"18707"} +{"label":"Edgar Buchanan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/664\/4ca9eca57b9aa17acf000664\/edgar-buchanan-profile.jpg","version":36,"id":"30512","lastModified":"1301901601000","name":"Edgar Buchanan","type":"Person","_key":"18708"} +{"label":"Paul McVey","version":22,"id":"30513","lastModified":"1301901988000","name":"Paul McVey","type":"Person","_key":"18709"} +{"label":"Leonard Strong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4c40b69f7b9aa1459400005b\/leonard-strong-profile.jpg","version":26,"id":"30514","lastModified":"1301901529000","name":"Leonard Strong","type":"Person","_key":"18710"} +{"label":"Ray Spiker","version":20,"id":"30515","lastModified":"1301902127000","name":"Ray Spiker","type":"Person","_key":"18711"} +{"label":"Janice Carroll","version":19,"id":"30516","lastModified":"1301902110000","name":"Janice Carroll","type":"Person","_key":"18712"} +{"label":"Martin Mason","version":19,"id":"30517","lastModified":"1301902110000","name":"Martin Mason","type":"Person","_key":"18713"} +{"label":"Helen Brown","version":24,"id":"30518","lastModified":"1301901579000","name":"Helen Brown","type":"Person","_key":"18714"} +{"label":"Nancy Kulp","version":20,"id":"30519","lastModified":"1301901745000","name":"Nancy Kulp","type":"Person","_key":"18715"} +{"label":"A Star Is Born","description":"No overview found.","id":"3111","runtime":181,"imdbId":"tt0047522","trailer":"http:\/\/www.youtube.com\/watch?v=ConbdWKVvXU","version":190,"lastModified":"1301905551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/031\/4c2341d97b9aa13f62000031\/a-star-is-born-mid.jpg","studio":"Transcona Enterprises","genre":"Drama","title":"A Star Is Born","releaseDate":-481507200000,"language":"en","type":"Movie","_key":"18716"} +{"label":"Charles Bickford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06b\/4bd5e68b017a3c658900006b\/charles-bickford-profile.jpg","version":45,"id":"30527","lastModified":"1301926589000","name":"Charles Bickford","type":"Person","_key":"18717"} +{"label":"Lucy Marlow","version":22,"id":"30528","lastModified":"1301901715000","name":"Lucy Marlow","type":"Person","_key":"18718"} +{"label":"Amanda Blake","version":24,"id":"30529","lastModified":"1301901820000","name":"Amanda Blake","type":"Person","_key":"18719"} +{"label":"Hazel Shermet","version":21,"id":"30531","lastModified":"1301902007000","name":"Hazel Shermet","type":"Person","_key":"18720"} +{"label":"Lotus Robb","version":21,"id":"30532","lastModified":"1301902028000","name":"Lotus Robb","type":"Person","_key":"18721"} +{"label":"The Night of the Hunter","description":"A religious fanatic marries a gullible widow whose young children are reluctant to tell him where their real daddy hid $10,000 he'd stolen in a robbery.","id":"3112","runtime":93,"imdbId":"tt0048424","trailer":"http:\/\/www.youtube.com\/watch?v=e5AKK_om1VU","version":248,"lastModified":"1301961225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/413\/4cf7a0747b9aa15149001413\/the-night-of-the-hunter-mid.jpg","studio":"Paul Gregory Productions","genre":"Drama","title":"The Night of the Hunter","releaseDate":-449971200000,"language":"en","tagline":"The wedding night, the anticipation, the kiss, the knife, BUT ABOVE ALL...THE SUSPENSE!","type":"Movie","_key":"18722"} +{"label":"James Gleason","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/198\/4c869f127b9aa1545d000198\/james-gleason-profile.jpg","version":47,"id":"30537","lastModified":"1301901335000","name":"James Gleason","type":"Person","_key":"18723"} +{"label":"Evelyn Varden","version":24,"id":"30538","lastModified":"1301901745000","name":"Evelyn Varden","type":"Person","_key":"18724"} +{"label":"Don Beddoe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/256\/4c7990255e73d613d5000256\/don-beddoe-profile.jpg","version":48,"id":"30539","lastModified":"1301995580000","name":"Don Beddoe","type":"Person","_key":"18725"} +{"label":"Billy Chapin","version":29,"id":"30540","lastModified":"1301901524000","name":"Billy Chapin","type":"Person","_key":"18726"} +{"label":"Sally Jane Bruce","version":23,"id":"30541","lastModified":"1301901623000","name":"Sally Jane Bruce","type":"Person","_key":"18727"} +{"label":"Gloria Castillo","version":27,"id":"30542","lastModified":"1301901773000","name":"Gloria Castillo","type":"Person","_key":"18728"} +{"label":"Sh\u00e9h\u00e9razade","description":"No overview found.","id":"3113","runtime":90,"imdbId":"tt0174202","version":55,"lastModified":"1301908611000","genre":"Comedy","title":"Sh\u00e9h\u00e9razade","releaseDate":62899200000,"language":"en","type":"Movie","_key":"18729"} +{"label":"Pierre Badel","version":20,"id":"24944","lastModified":"1301901569000","name":"Pierre Badel","type":"Person","_key":"18730"} +{"label":"Pierre Micha\u00ebl","version":22,"id":"24940","lastModified":"1301902160000","name":"Pierre Micha\u00ebl","type":"Person","_key":"18731"} +{"label":"Anic\u00e9e Alvina","version":23,"id":"24941","lastModified":"1301901589000","name":"Anic\u00e9e Alvina","type":"Person","_key":"18732"} +{"label":"Tsilla Chelton","version":23,"id":"24942","lastModified":"1301901969000","name":"Tsilla Chelton","type":"Person","_key":"18733"} +{"label":"The Searchers","description":"As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.","id":"3114","runtime":119,"imdbId":"tt0049730","trailer":"http:\/\/www.youtube.com\/watch?v=cnF-lAQ6d5U","version":833,"lastModified":"1301903059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63e\/4bc9189a017a3c57fe00963e\/the-searchers-mid.jpg","studio":"C.V. Whitney Pictures","genre":"Drama","title":"The Searchers","releaseDate":-435628800000,"language":"en","tagline":"...He had to find her...he had to find her","type":"Movie","_key":"18734"} +{"label":"Jeffrey Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4c49bc4c7b9aa11600000081\/jeffrey-hunter-profile.jpg","version":36,"id":"30551","lastModified":"1301901275000","name":"Jeffrey Hunter","type":"Person","_key":"18735"} +{"label":"Olive Carey","version":30,"id":"30552","lastModified":"1301902019000","name":"Olive Carey","type":"Person","_key":"18736"} +{"label":"Henry Brandon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/246\/4cac9db97b9aa1152c000246\/henry-brandon-profile.jpg","version":41,"id":"30553","lastModified":"1301901566000","name":"Henry Brandon","type":"Person","_key":"18737"} +{"label":"Ken Curtis","version":29,"id":"30554","lastModified":"1301901940000","name":"Ken Curtis","type":"Person","_key":"18738"} +{"label":"Antonio Moreno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/272\/4c604d287b9aa172da000272\/antonio-moreno-profile.jpg","version":28,"id":"30555","lastModified":"1301902054000","name":"Antonio Moreno","type":"Person","_key":"18739"} +{"label":"Beulah Archuletta","version":23,"id":"30556","lastModified":"1301902188000","name":"Beulah Archuletta","type":"Person","_key":"18740"} +{"label":"Walter Coy","version":23,"id":"30557","lastModified":"1301902110000","name":"Walter Coy","type":"Person","_key":"18741"} +{"label":"Dorothy Jordan","version":23,"id":"30558","lastModified":"1301902110000","name":"Dorothy Jordan","type":"Person","_key":"18742"} +{"label":"Pippa Scott","version":25,"id":"30559","lastModified":"1301902198000","name":"Pippa Scott","type":"Person","_key":"18743"} +{"label":"Patrick Wayne","version":36,"id":"30560","lastModified":"1301901503000","name":"Patrick Wayne","type":"Person","_key":"18744"} +{"label":"Godzilla vs. The Sea Monster","description":"Some teenagers want to obtain a boat to find a brother. When they look around a boat without permission, they find a thief who takes them on his escape. They are caught in a storm and arrive at Letchi Island where natives of Infant Island have been enslaved by the terrorist organisation Red Bamboo. The young men wake up Godzilla to put an end to the Red Bamboo.","id":"3115","runtime":87,"imdbId":"tt0060464","version":144,"lastModified":"1301905669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/651\/4bc9189c017a3c57fe009651\/gojira-ebira-mosura-nankai-no-daiketto-mid.jpg","studio":"Toho Company","genre":"Action","title":"Godzilla vs. The Sea Monster","releaseDate":-95990400000,"language":"en","type":"Movie","_key":"18745"} +{"label":"Jun Fukuda","version":20,"id":"30561","lastModified":"1301901939000","name":"Jun Fukuda","type":"Person","_key":"18746"} +{"label":"Kumi Mizuno","version":27,"id":"30564","lastModified":"1301902141000","name":"Kumi Mizuno","type":"Person","_key":"18747"} +{"label":"Hideo Sunazuka","version":19,"id":"30565","lastModified":"1301901932000","name":"Hideo Sunazuka","type":"Person","_key":"18748"} +{"label":"T\u00f4ru Watanabe","version":18,"id":"30566","lastModified":"1301901841000","name":"T\u00f4ru Watanabe","type":"Person","_key":"18749"} +{"label":"T\u00f4ru Ibuki","version":19,"id":"30567","lastModified":"1301901708000","name":"T\u00f4ru Ibuki","type":"Person","_key":"18750"} +{"label":"Midnight Cowboy","description":"A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.","id":"3116","runtime":113,"imdbId":"tt0064665","trailer":"http:\/\/www.youtube.com\/watch?v=jdie95qDtNw","version":230,"lastModified":"1301902291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa3\/4d6081be7b9aa154cf003fa3\/midnight-cowboy-mid.jpg","studio":"Florin Productions","genre":"Drama","title":"Midnight Cowboy","releaseDate":-19094400000,"language":"en","type":"Movie","_key":"18751"} +{"label":"Brenda Vaccaro","version":45,"id":"30585","lastModified":"1301901171000","name":"Brenda Vaccaro","type":"Person","_key":"18752"} +{"label":"Frankenstein and the Monster from Hell","description":"No overview found.","id":"3117","runtime":99,"imdbId":"tt0071519","version":121,"lastModified":"1301906193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15d\/4c180f7e7b9aa1091200015d\/frankenstein-and-the-monster-from-hell-mid.jpg","studio":"Hammer Film Productions","genre":"Horror","title":"Frankenstein and the Monster from Hell","releaseDate":136684800000,"language":"en","type":"Movie","_key":"18753"} +{"label":"Shane Briant","version":35,"id":"30576","lastModified":"1301901803000","name":"Shane Briant","type":"Person","_key":"18754"} +{"label":"Madeline Smith","version":25,"id":"30577","lastModified":"1301901849000","name":"Madeline Smith","type":"Person","_key":"18755"} +{"label":"John Stratton","version":23,"id":"30579","lastModified":"1301901503000","name":"John Stratton","type":"Person","_key":"18756"} +{"label":"Michael Ward","version":24,"id":"30581","lastModified":"1301902165000","name":"Michael Ward","type":"Person","_key":"18757"} +{"label":"Norman Mitchell","version":21,"id":"30582","lastModified":"1301902188000","name":"Norman Mitchell","type":"Person","_key":"18758"} +{"label":"Elsie Wagstaff","version":20,"id":"30583","lastModified":"1301902188000","name":"Elsie Wagstaff","type":"Person","_key":"18759"} +{"label":"Christopher Cunningham","version":20,"id":"30584","lastModified":"1301902197000","name":"Christopher Cunningham","type":"Person","_key":"18760"} +{"label":"Frankenstein 90","description":"No overview found.","id":"3118","runtime":100,"imdbId":"tt0087289","version":92,"lastModified":"1301906637000","studio":"TF1 Films Productions","genre":"Comedy","title":"Frankenstein 90","releaseDate":461289600000,"language":"en","type":"Movie","_key":"18761"} +{"label":"Alain Jessua","version":27,"id":"30632","lastModified":"1301901745000","name":"Alain Jessua","type":"Person","_key":"18762"} +{"label":"Eddy Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51b\/4d10e03e5e73d6082e00051b\/eddy-mitchell-profile.jpg","version":31,"id":"30641","lastModified":"1301901570000","name":"Eddy Mitchell","type":"Person","_key":"18763"} +{"label":"Fiona G\u00e9lin","version":18,"id":"30642","lastModified":"1301902203000","name":"Fiona G\u00e9lin","type":"Person","_key":"18764"} +{"label":"Herma Vos","version":19,"id":"30643","lastModified":"1301901908000","name":"Herma Vos","type":"Person","_key":"18765"} +{"label":"Ged Marlon","version":19,"id":"30644","lastModified":"1301902110000","name":"Ged Marlon","type":"Person","_key":"18766"} +{"label":"Anna Gaylor","version":24,"id":"34989","lastModified":"1301902004000","name":"Anna Gaylor","type":"Person","_key":"18767"} +{"label":"Serge Marquand","version":34,"id":"38915","lastModified":"1301901447000","name":"Serge Marquand","type":"Person","_key":"18768"} +{"label":"Frankenstein and Me","description":"No overview found.","id":"3119","runtime":90,"imdbId":"tt0116356","version":62,"lastModified":"1301906637000","studio":"France Film","genre":"Fantasy","title":"Frankenstein and Me","releaseDate":820454400000,"language":"en","type":"Movie","_key":"18769"} +{"label":"Robert Tinnell","version":20,"id":"30586","lastModified":"1301901478000","name":"Robert Tinnell","type":"Person","_key":"18770"} +{"label":"Jamieson Boulanger","version":20,"id":"30607","lastModified":"1301901623000","name":"Jamieson Boulanger","type":"Person","_key":"18771"} +{"label":"Ricky Mabe","version":23,"id":"30608","lastModified":"1301901845000","name":"Ricky Mabe","type":"Person","_key":"18772"} +{"label":"Polly Shannon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9e3\/4c70e1327b9aa13ab50009e3\/polly-shannon-profile.jpg","version":40,"id":"30609","lastModified":"1301901508000","name":"Polly Shannon","type":"Person","_key":"18773"} +{"label":"Myriam Cyr","version":23,"id":"30611","lastModified":"1301902137000","name":"Myriam Cyr","type":"Person","_key":"18774"} +{"label":"Ryan Gosling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db0\/4cf5d7635e73d6299e000db0\/ryan-gosling-profile.jpg","version":61,"birthday":"345337200000","id":"30614","birthplace":"Cananda","lastModified":"1301901161000","name":"Ryan Gosling","type":"Person","_key":"18775"} +{"label":"Rebecca Henderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/830\/4cf54a7f5e73d6299b000830\/rebecca-henderson-profile.jpg","version":21,"id":"30616","lastModified":"1301901507000","name":"Rebecca Henderson","type":"Person","_key":"18776"} +{"label":"Jason Cavalier","version":19,"id":"30617","lastModified":"1301901745000","name":"Jason Cavalier","type":"Person","_key":"18777"} +{"label":"Nashville","description":"No overview found.","id":"3121","runtime":159,"imdbId":"tt0073440","version":155,"lastModified":"1301904961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6de\/4c07d475017a3c7e860006de\/nashville-mid.jpg","studio":"ABC Pictures","genre":"Drama","title":"Nashville","releaseDate":171676800000,"language":"en","type":"Movie","_key":"18778"} +{"label":"Barbara Baxley","version":23,"id":"30610","lastModified":"1301901745000","name":"Barbara Baxley","type":"Person","_key":"18779"} +{"label":"Timothy Brown","version":32,"id":"30612","lastModified":"1301901939000","name":"Timothy Brown","type":"Person","_key":"18780"} +{"label":"Keith Carradine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/292\/4c224e137b9aa13227000292\/keith-carradine-profile.jpg","version":53,"id":"30613","lastModified":"1301901425000","name":"Keith Carradine","type":"Person","_key":"18781"} +{"label":"Robert DoQui","version":33,"id":"30615","lastModified":"1301901431000","name":"Robert DoQui","type":"Person","_key":"18782"} +{"label":"Barbara Harris","version":39,"id":"30618","lastModified":"1301901564000","name":"Barbara Harris","type":"Person","_key":"18783"} +{"label":"David Hayward","version":22,"id":"30619","lastModified":"1301902049000","name":"David Hayward","type":"Person","_key":"18784"} +{"label":"Allan F. Nicholls","version":28,"id":"30601","lastModified":"1301901695000","name":"Allan F. Nicholls","type":"Person","_key":"18785"} +{"label":"Dave Peel","version":20,"id":"30602","lastModified":"1301902110000","name":"Dave Peel","type":"Person","_key":"18786"} +{"label":"Cristina Raines","version":24,"id":"30620","lastModified":"1301901643000","name":"Cristina Raines","type":"Person","_key":"18787"} +{"label":"Bert Remsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4ca24fe37b9aa168e00001bb\/bert-remsen-profile.jpg","version":36,"id":"30621","lastModified":"1301901595000","name":"Bert Remsen","type":"Person","_key":"18788"} +{"label":"Gwen Welles","version":19,"birthday":"-594262800000","id":"30622","birthplace":"Chattanooga, Tennessee, USA","lastModified":"1301902136000","name":"Gwen Welles","type":"Person","_key":"18789"} +{"label":"James Dan Calvert","version":19,"id":"30623","lastModified":"1301902110000","name":"James Dan Calvert","type":"Person","_key":"18790"} +{"label":"Donna Denton","version":21,"id":"30624","lastModified":"1301902188000","name":"Donna Denton","type":"Person","_key":"18791"} +{"label":"Merle Kilgore","version":19,"id":"30625","lastModified":"1301902110000","name":"Merle Kilgore","type":"Person","_key":"18792"} +{"label":"Carol McGinnis","version":19,"id":"30626","lastModified":"1301902110000","name":"Carol McGinnis","type":"Person","_key":"18793"} +{"label":"Sheila Bailey","version":19,"id":"30627","lastModified":"1301901908000","name":"Sheila Bailey","type":"Person","_key":"18794"} +{"label":"Patti Bryant","version":19,"id":"30628","lastModified":"1301902110000","name":"Patti Bryant","type":"Person","_key":"18795"} +{"label":"Richard Baskin","version":24,"id":"30629","lastModified":"1301901788000","name":"Richard Baskin","type":"Person","_key":"18796"} +{"label":"Jonnie Barnett","version":20,"id":"30595","lastModified":"1301902110000","name":"Jonnie Barnett","type":"Person","_key":"18797"} +{"label":"Vassar Clements","version":19,"id":"30630","lastModified":"1301902110000","name":"Vassar Clements","type":"Person","_key":"18798"} +{"label":"Sue Barton","version":19,"id":"30631","lastModified":"1301902110000","name":"Sue Barton","type":"Person","_key":"18799"} +{"label":"Lady Frankenstein","description":"Dr. Frankensteins' daughter, who is in love with the aging lab assistant Marshall, continues with her fathers experiments and attempts to transplant Marshall's brain into a new body to prolong his life.","id":"3122","runtime":99,"imdbId":"tt0067321","trailer":"http:\/\/www.youtube.com\/watch?v=AlRqJdMN3mw","version":423,"lastModified":"1301908380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/678\/4bc918a3017a3c57fe009678\/la-figlia-di-frankenstein-mid.jpg","studio":"Condor International Productions","genre":"Horror","title":"Lady Frankenstein","releaseDate":31536000000,"language":"en","type":"Movie","_key":"18800"} +{"label":"Mel Welles","version":34,"id":"30647","lastModified":"1301901970000","name":"Mel Welles","type":"Person","_key":"18801"} +{"label":"Aureliano Luppi","version":20,"id":"30648","lastModified":"1301901551000","name":"Aureliano Luppi","type":"Person","_key":"18802"} +{"label":"Rosalba Neri","version":29,"id":"30664","lastModified":"1301901813000","name":"Rosalba Neri","type":"Person","_key":"18803"} +{"label":"Paul Whiteman","version":19,"id":"30665","lastModified":"1301901437000","name":"Paul Whiteman","type":"Person","_key":"18804"} +{"label":"Renate Kasch\u00e9","version":19,"id":"30666","lastModified":"1301901996000","name":"Renate Kasch\u00e9","type":"Person","_key":"18805"} +{"label":"Lorenzo Terzon","version":21,"id":"30667","lastModified":"1301902138000","name":"Lorenzo Terzon","type":"Person","_key":"18806"} +{"label":"Ada Pometti","version":19,"id":"30668","lastModified":"1301902125000","name":"Ada Pometti","type":"Person","_key":"18807"} +{"label":"The Evil of Frankenstein","description":"No overview found.","id":"3124","runtime":84,"imdbId":"tt0058073","version":73,"lastModified":"1301908542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00a\/4c12cb887b9aa102f900000a\/the-evil-of-frankenstein-mid.jpg","genre":"Horror","title":"The Evil of Frankenstein","releaseDate":-178329600000,"language":"en","type":"Movie","_key":"18808"} +{"label":"Freddie Francis","version":51,"id":"5629","lastModified":"1302031788000","name":"Freddie Francis","type":"Person","_key":"18809"} +{"label":"Sandor El\u00e8s","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/445\/4cb610dd7b9aa138d7000445\/sandor-eles-profile.jpg","version":22,"id":"30672","lastModified":"1301901714000","name":"Sandor El\u00e8s","type":"Person","_key":"18810"} +{"label":"Katy Wild","version":20,"id":"30673","lastModified":"1301901949000","name":"Katy Wild","type":"Person","_key":"18811"} +{"label":"David Hutcheson","version":23,"id":"30674","lastModified":"1301902145000","name":"David Hutcheson","type":"Person","_key":"18812"} +{"label":"James Maxwell","version":20,"id":"30675","lastModified":"1301902145000","name":"James Maxwell","type":"Person","_key":"18813"} +{"label":"Howard Goorney","version":25,"id":"30676","lastModified":"1301901494000","name":"Howard Goorney","type":"Person","_key":"18814"} +{"label":"Kiwi Kingston","version":20,"id":"30677","lastModified":"1301902188000","name":"Kiwi Kingston","type":"Person","_key":"18815"} +{"label":"Dracula vs. Frankenstein","description":"No overview found.","id":"3125","runtime":94,"imdbId":"tt0067017","version":338,"lastModified":"1301908077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/518\/4ce983ac5e73d6258c000518\/dracula-vs-frankenstein-mid.jpg","studio":"Independent Pictures (I)","genre":"Horror","title":"Dracula vs. Frankenstein","releaseDate":31536000000,"language":"en","type":"Movie","_key":"18816"} +{"label":"Al Adamson","version":42,"id":"30678","lastModified":"1301901452000","name":"Al Adamson","type":"Person","_key":"18817"} +{"label":"J. Carrol Naish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54c\/4bfaa26b017a3c703100054c\/j-carrol-naish-profile.jpg","version":50,"birthday":"-2333494800000","id":"30686","birthplace":"New York City, New York, USA","lastModified":"1301901324000","name":"J. Carrol Naish","type":"Person","_key":"18818"} +{"label":"Anthony Eisley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4c49a91d7b9aa115fc000098\/anthony-eisley-profile.jpg","version":30,"id":"30687","lastModified":"1301901794000","name":"Anthony Eisley","type":"Person","_key":"18819"} +{"label":"Greydon Clark","version":28,"id":"30689","lastModified":"1301901976000","name":"Greydon Clark","type":"Person","_key":"18820"} +{"label":"Zandor Vorkov","version":20,"id":"30690","lastModified":"1301902188000","name":"Zandor Vorkov","type":"Person","_key":"18821"} +{"label":"John Bloom","version":66,"id":"6491","lastModified":"1301901263000","name":"John Bloom","type":"Person","_key":"18822"} +{"label":"Regina Carrol","version":24,"id":"102971","lastModified":"1301902714000","name":"Regina Carrol","type":"Person","_key":"18823"} +{"label":"Alvin and the Chipmunks meet Frankenstein","description":"While the Chipmunks are working at the amusement park, Majestic Movie Studios, in a singing attraction. Little do they know that the real Dr. Frankenstein are in a new attraction called, \"Frankenstein's Castle\". After Alvin drives a crazy bus ride, they miss their next performance and get locked in the park after closing time. Dr. Frankenstein figures that the castle isn't scary enough and re-creates the real Frankenstein and after the monster finds the boys, it starts a wild and wacky adventure","id":"3126","runtime":78,"imdbId":"tt0207957","version":65,"lastModified":"1301908612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b2\/4c0855e8017a3c7e920006b2\/alvin-and-the-chipmunks-meet-frankenstein-mid.jpg","genre":"Animation","title":"Alvin and the Chipmunks meet Frankenstein","releaseDate":938476800000,"language":"en","type":"Movie","_key":"18824"} +{"label":"Kathi Castillo","version":23,"id":"30691","lastModified":"1301902190000","name":"Kathi Castillo","type":"Person","_key":"18825"} +{"label":"Ross Bagdasarian Jr.","version":29,"id":"30694","lastModified":"1301902040000","name":"Ross Bagdasarian Jr.","type":"Person","_key":"18826"} +{"label":"Mary Kay Bergman","version":43,"id":"30695","lastModified":"1301901244000","name":"Mary Kay Bergman","type":"Person","_key":"18827"} +{"label":"Janice Karman","version":37,"id":"30696","lastModified":"1301901421000","name":"Janice Karman","type":"Person","_key":"18828"} +{"label":"Jim Meskimen","version":23,"id":"30697","lastModified":"1301901111000","name":"Jim Meskimen","type":"Person","_key":"18829"} +{"label":"Kevin Michael Richardson","version":58,"id":"24362","lastModified":"1301901097000","name":"Kevin Michael Richardson","type":"Person","_key":"18830"} +{"label":"The Revenge of Frankenstein","description":"No overview found.","id":"3127","runtime":89,"imdbId":"tt0050894","version":235,"lastModified":"1301905966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fd\/4c1938ac7b9aa108d70002fd\/the-revenge-of-frankenstein-mid.jpg","genre":"Horror","title":"The Revenge of Frankenstein","releaseDate":-365644800000,"language":"en","type":"Movie","_key":"18831"} +{"label":"Francis Matthews","version":22,"id":"30704","lastModified":"1301901554000","name":"Francis Matthews","type":"Person","_key":"18832"} +{"label":"Michael Gwynn","version":25,"id":"30705","lastModified":"1301996032000","name":"Michael Gwynn","type":"Person","_key":"18833"} +{"label":"Oscar Quitak","version":21,"id":"30707","lastModified":"1301902141000","name":"Oscar Quitak","type":"Person","_key":"18834"} +{"label":"Richard Wordsworth","version":23,"id":"30708","lastModified":"1302031788000","name":"Richard Wordsworth","type":"Person","_key":"18835"} +{"label":"John Stuart","version":24,"id":"30709","lastModified":"1301902151000","name":"John Stuart","type":"Person","_key":"18836"} +{"label":"Gangs of New York","description":"1863. America was born in the streets. In this movie, we see Amsterdam Vallon returning to the Five Points of America to seek vengeance against the psychotic gangland kingpin Bill the Butcher who murdered his father years ago. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.","id":"3131","runtime":166,"imdbId":"tt0217505","trailer":"http:\/\/www.youtube.com\/watch?v=7A-rsM6bRxU","version":537,"lastModified":"1301907976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d7\/4d810a315e73d672590009d7\/gangs-of-new-york-mid.jpg","studio":"Miramax Films","genre":"Crime","title":"Gangs of New York","releaseDate":1039824000000,"language":"en","tagline":"America Was Born In The Streets.","type":"Movie","_key":"18837"} +{"label":"Larry Gilliard Jr.","version":42,"id":"37947","lastModified":"1301901249000","name":"Larry Gilliard Jr.","type":"Person","_key":"18838"} +{"label":"Bad Company","description":"When a Harvard-educated CIA agent is killed during an operation, the secret agency recruits his twin brother.","id":"3132","runtime":117,"imdbId":"tt0280486","trailer":"http:\/\/www.youtube.com\/watch?v=pCiMFSq7Gh4","version":252,"lastModified":"1301903752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b0\/4d8bd6085e73d65beb0000b0\/bad-company-mid.jpg","studio":"Jerry Bruckheimer Films","genre":"Action","title":"Bad Company","releaseDate":1023148800000,"language":"en","type":"Movie","_key":"18839"} +{"label":"Garcelle Beauvais","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ee4\/4d8bcbda7b9aa13aed001ee4\/garcelle-beauvais-profile.jpg","version":39,"birthday":"-97808400000","id":"31647","birthplace":"Haiti","lastModified":"1301901522000","name":"Garcelle Beauvais","type":"Person","_key":"18840"} +{"label":"Dragan Mi\u0107anovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cf\/4d6439307b9aa1296f0004cf\/dragan-mi-anovi-profile.jpg","version":36,"id":"31648","lastModified":"1301901408000","name":"Dragan Mi\u0107anovi\u0107","type":"Person","_key":"18841"} +{"label":"DeVone Lawson Jr.","version":25,"id":"31650","lastModified":"1301902015000","name":"DeVone Lawson Jr.","type":"Person","_key":"18842"} +{"label":"Wills Robbins","version":25,"id":"31651","lastModified":"1301901588000","name":"Wills Robbins","type":"Person","_key":"18843"} +{"label":"Badlands","description":"Dramatization of the Starkweather-Fugate killing spree of the 1950's, in which a teenage girl and her twenty-something boyfriend slaughtered her entire family and several others in the Dakota badlands.","id":"3133","runtime":94,"imdbId":"tt0069762","trailer":"http:\/\/www.youtube.com\/watch?v=2459","version":417,"lastModified":"1301902318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c8\/4bc918b0017a3c57fe0096c8\/badlands-mid.jpg","studio":"Pressman-Williams","genre":"Drama","title":"Badlands","releaseDate":119491200000,"language":"en","tagline":"In 1959 a lot of people were killing time. Kit and Holly were killing people.","type":"Movie","_key":"18844"} +{"label":"Terrence Malick","version":59,"id":"30715","lastModified":"1301901202000","name":"Terrence Malick","type":"Person","_key":"18845"} +{"label":"Gary Littlejohn","version":23,"id":"33058","lastModified":"1301901696000","name":"Gary Littlejohn","type":"Person","_key":"18846"} +{"label":"Alan Vint","version":25,"id":"33059","lastModified":"1301902010000","name":"Alan Vint","type":"Person","_key":"18847"} +{"label":"Ramon Bieri","version":25,"id":"33060","lastModified":"1301902011000","name":"Ramon Bieri","type":"Person","_key":"18848"} +{"label":"John Womack Jr.","version":22,"id":"33061","lastModified":"1301902008000","name":"John Womack Jr.","type":"Person","_key":"18849"} +{"label":"Baise-moi","description":"Based on the novel by Virginie Despentes of the same title. Manu and Nadine lose their last tenuous relationship with main-stream society when Manu gets raped and Nadine sees her only friend being shot. After a chance encounter, they embark on an explosive journey of sex and murder. Perhaps as a revenge against men, perhaps as a revolt against bourgeois society, but certainly in a negation - almost joyful in its senseless violence - of all the codes of a society which has excluded, raped and hum","id":"3134","runtime":77,"imdbId":"tt0249380","version":163,"lastModified":"1301902872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f5\/4d4701457b9aa15bb000a0f5\/baise-moi-mid.jpg","studio":"Pan Europ\u00e9enne Production","genre":"Drama","title":"Baise-moi","releaseDate":962150400000,"language":"en","type":"Movie","_key":"18850"} +{"label":"Virginie Despentes","version":31,"id":"30716","lastModified":"1301901829000","name":"Virginie Despentes","type":"Person","_key":"18851"} +{"label":"Karen Lancaume","version":30,"id":"146242","lastModified":"1301903087000","name":"Karen Lancaume","type":"Person","_key":"18852"} +{"label":"Raffa\u00ebla Anderson","version":30,"id":"146243","lastModified":"1301903087000","name":"Raffa\u00ebla Anderson","type":"Person","_key":"18853"} +{"label":"Ouassini Embarek","version":29,"id":"47335","lastModified":"1301901733000","name":"Ouassini Embarek","type":"Person","_key":"18854"} +{"label":"Rock 'n' Roll Frankenstein","description":"No overview found.","id":"3144","runtime":88,"imdbId":"tt0183717","version":58,"lastModified":"1301908611000","studio":"R&R Productions","genre":"Comedy","title":"Rock 'n' Roll Frankenstein","releaseDate":915148800000,"language":"en","type":"Movie","_key":"18855"} +{"label":"Brian O'Hara","version":24,"id":"30745","lastModified":"1301901833000","name":"Brian O'Hara","type":"Person","_key":"18856"} +{"label":"Graig Guggenheim","version":21,"id":"30751","lastModified":"1301901970000","name":"Graig Guggenheim","type":"Person","_key":"18857"} +{"label":"Jayson Spence","version":20,"id":"30752","lastModified":"1301901970000","name":"Jayson Spence","type":"Person","_key":"18858"} +{"label":"Barry Feterman","version":20,"id":"30753","lastModified":"1301901970000","name":"Barry Feterman","type":"Person","_key":"18859"} +{"label":"Hiram Jacob Segarra","version":20,"id":"30754","lastModified":"1301901970000","name":"Hiram Jacob Segarra","type":"Person","_key":"18860"} +{"label":"Andrew Hurley","version":20,"id":"30755","lastModified":"1301901794000","name":"Andrew Hurley","type":"Person","_key":"18861"} +{"label":"Ted Travelstead","version":20,"id":"30756","lastModified":"1301901794000","name":"Ted Travelstead","type":"Person","_key":"18862"} +{"label":"Mark Trares","version":20,"id":"30757","lastModified":"1301901794000","name":"Mark Trares","type":"Person","_key":"18863"} +{"label":"Jamie Gillard","version":20,"id":"30758","lastModified":"1301901794000","name":"Jamie Gillard","type":"Person","_key":"18864"} +{"label":"The Horror of Frankenstein","description":"No overview found.","id":"3145","runtime":95,"imdbId":"tt0065851","version":114,"lastModified":"1301907698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e2\/4bc918b5017a3c57fe0096e2\/the-horror-of-frankenstein-mid.jpg","studio":"EMI Films Ltd.","genre":"Horror","title":"The Horror of Frankenstein","releaseDate":45964800000,"language":"en","type":"Movie","_key":"18865"} +{"label":"Jimmy Sangster","version":52,"id":"30700","lastModified":"1301901799000","name":"Jimmy Sangster","type":"Person","_key":"18866"} +{"label":"Kate O'Mara","version":19,"id":"30765","lastModified":"1301901510000","name":"Kate O'Mara","type":"Person","_key":"18867"} +{"label":"Graham James","version":20,"id":"30768","lastModified":"1301901516000","name":"Graham James","type":"Person","_key":"18868"} +{"label":"James Hayter","version":28,"id":"30769","lastModified":"1301901569000","name":"James Hayter","type":"Person","_key":"18869"} +{"label":"Ralph Bates","version":23,"id":"101533","lastModified":"1301902969000","name":"Ralph Bates","type":"Person","_key":"18870"} +{"label":"War of the Gargantuas","description":"An experimental lab animal called a gargantua escapes from his captors and is suspected to be the creature that is killing people all over the countryside. But when the gargantua from the lab appears at the same time as the evil gargantua, the two begin to battle across Japan.","id":"3146","runtime":90,"imdbId":"tt0060440","version":79,"lastModified":"1301905675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4c1a7f3a7b9aa116a1000004\/furankenshutain-no-kaiju-sanda-tai-gaira-mid.jpg","studio":"Benedict Pictures Corp.","genre":"Science Fiction","title":"War of the Gargantuas","releaseDate":-108000000000,"language":"en","type":"Movie","_key":"18871"} +{"label":"Nobuo Nakamura","version":24,"id":"30772","lastModified":"1301901996000","name":"Nobuo Nakamura","type":"Person","_key":"18872"} +{"label":"The Frankenstein Files: How Hollywood Made a Monster","description":"No overview found.","id":"3147","runtime":45,"imdbId":"tt0322326","version":45,"lastModified":"1301907429000","studio":"Universal Pictures","genre":"Documentary","title":"The Frankenstein Files: How Hollywood Made a Monster","releaseDate":915148800000,"language":"en","type":"Movie","_key":"18873"} +{"label":"David J. Skal","version":29,"id":"30803","lastModified":"1301901970000","name":"David J. Skal","type":"Person","_key":"18874"} +{"label":"Rick Baker","version":30,"id":"16178","lastModified":"1302059075000","name":"Rick Baker","type":"Person","_key":"18875"} +{"label":"Rudy Behlmer","version":20,"id":"30807","lastModified":"1301901680000","name":"Rudy Behlmer","type":"Person","_key":"18876"} +{"label":"Ivan Butler","version":20,"id":"30808","lastModified":"1301902020000","name":"Ivan Butler","type":"Person","_key":"18877"} +{"label":"Dwight David Frye","version":22,"id":"30809","lastModified":"1301904136000","name":"Dwight David Frye","type":"Person","_key":"18878"} +{"label":"Donald F. Glut","version":30,"id":"30810","lastModified":"1301901584000","name":"Donald F. Glut","type":"Person","_key":"18879"} +{"label":"Richard Gordon","version":20,"id":"30811","lastModified":"1301902008000","name":"Richard Gordon","type":"Person","_key":"18880"} +{"label":"Jan-Christopher Horak","version":23,"id":"30812","lastModified":"1301902019000","name":"Jan-Christopher Horak","type":"Person","_key":"18881"} +{"label":"Paul M. Jensen","version":21,"id":"30813","lastModified":"1301901794000","name":"Paul M. Jensen","type":"Person","_key":"18882"} +{"label":"Sara Karloff","version":26,"id":"30814","lastModified":"1301901970000","name":"Sara Karloff","type":"Person","_key":"18883"} +{"label":"Bob Madison","version":21,"id":"30815","lastModified":"1301901680000","name":"Bob Madison","type":"Person","_key":"18884"} +{"label":"Gregory W. Mank","version":20,"id":"30816","lastModified":"1301902020000","name":"Gregory W. Mank","type":"Person","_key":"18885"} +{"label":"Un Dollaro per 7 vigliacchi","description":"No overview found.","id":"3148","runtime":93,"imdbId":"tt0063303","version":76,"lastModified":"1301907288000","studio":"Hercules Cinematografica","genre":"Comedy","title":"Un Dollaro per 7 vigliacchi","releaseDate":-50198400000,"language":"en","type":"Movie","_key":"18886"} +{"label":"Giorgio Gentili","version":20,"id":"30817","lastModified":"1301901745000","name":"Giorgio Gentili","type":"Person","_key":"18887"} +{"label":"Gustavo Rojo","version":22,"id":"30830","lastModified":"1301901442000","name":"Gustavo Rojo","type":"Person","_key":"18888"} +{"label":"Fernando Hilbeck","version":31,"id":"30831","lastModified":"1301901578000","name":"Fernando Hilbeck","type":"Person","_key":"18889"} +{"label":"Franco Fabrizi","version":28,"id":"30832","lastModified":"1301901560000","name":"Franco Fabrizi","type":"Person","_key":"18890"} +{"label":"Jesse James Meets Frankenstein's Daughter","description":"Dr. Frankenstein's Granddaughter Maria, and her brother assistant Rudolph, moved to the old west because the lightning storms there are more frequent and intense, which allows them to work on the experiments of their grandfather. But the experiments are failing and Rudolph's been secretly killing the corpses afterwards. Meanwhile, the Lopez family leaves the town because of the evil going on there","id":"3149","runtime":86,"imdbId":"tt0060558","trailer":"http:\/\/www.youtube.com\/watch?v=d8GRx4jLvAM","version":80,"lastModified":"1301904977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4bc918b5017a3c57fe0096eb\/jesse-james-meets-frankenstein-s-daughter-mid.jpg","studio":"Circle Productions","genre":"Crime","title":"Jesse James Meets Frankenstein's Daughter","releaseDate":-118454400000,"language":"en","type":"Movie","_key":"18891"} +{"label":"William Beaudine","version":23,"birthday":"-2460243600000","id":"30833","birthplace":"New York City, New York, USA","lastModified":"1301901643000","name":"William Beaudine","type":"Person","_key":"18892"} +{"label":"John Lupton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/736\/4caa13b07b9aa17acd000736\/john-lupton-profile.jpg","version":23,"id":"30844","lastModified":"1301901602000","name":"John Lupton","type":"Person","_key":"18893"} +{"label":"Narda Onyx","version":19,"id":"30845","lastModified":"1301901931000","name":"Narda Onyx","type":"Person","_key":"18894"} +{"label":"Cal Bolder","version":17,"id":"15976","lastModified":"1301901931000","name":"Cal Bolder","type":"Person","_key":"18895"} +{"label":"Jim Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd9\/4d949b2d7b9aa11991001fd9\/jim-davis-profile.jpg","version":26,"id":"30846","lastModified":"1301901931000","name":"Jim Davis","type":"Person","_key":"18896"} +{"label":"Steven Geray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37b\/4ca09f747b9aa15e3c00037b\/steven-geray-profile.jpg","version":45,"id":"30847","lastModified":"1301901410000","name":"Steven Geray","type":"Person","_key":"18897"} +{"label":"Rayford Barnes","version":19,"id":"30848","lastModified":"1301901995000","name":"Rayford Barnes","type":"Person","_key":"18898"} +{"label":"William Fawcett","version":20,"id":"30849","lastModified":"1301901638000","name":"William Fawcett","type":"Person","_key":"18899"} +{"label":"Frankenstein Punk","description":"No overview found.","id":"3150","runtime":12,"imdbId":"tt0091074","version":52,"lastModified":"1301906757000","genre":"Animation","title":"Frankenstein Punk","releaseDate":504921600000,"language":"en","type":"Movie","_key":"18900"} +{"label":"Cao Hamburger","version":23,"id":"30851","lastModified":"1301901794000","name":"Cao Hamburger","type":"Person","_key":"18901"} +{"label":"Frankenstein General Hospital","description":"No overview found.","id":"3151","runtime":90,"imdbId":"tt0095173","version":86,"lastModified":"1301302609000","studio":"New Star Entertainment","genre":"Comedy","title":"Frankenstein General Hospital","releaseDate":573177600000,"language":"en","type":"Movie","_key":"18902"} +{"label":"Deborah Romare","version":18,"id":"30852","lastModified":"1301901837000","name":"Deborah Romare","type":"Person","_key":"18903"} +{"label":"Leslie Jordan","version":25,"id":"30861","lastModified":"1301901666000","name":"Leslie Jordan","type":"Person","_key":"18904"} +{"label":"Jonathan Farwell","version":21,"id":"30862","lastModified":"1301902009000","name":"Jonathan Farwell","type":"Person","_key":"18905"} +{"label":"Kathy Shower","version":21,"id":"30863","lastModified":"1301901822000","name":"Kathy Shower","type":"Person","_key":"18906"} +{"label":"Hamilton Mitchell","version":20,"id":"30864","lastModified":"1301901823000","name":"Hamilton Mitchell","type":"Person","_key":"18907"} +{"label":"Lou Cutell","version":22,"id":"30865","lastModified":"1301901589000","name":"Lou Cutell","type":"Person","_key":"18908"} +{"label":"Katie Caple","version":20,"id":"30866","lastModified":"1301901842000","name":"Katie Caple","type":"Person","_key":"18909"} +{"label":"Dorothy Patterson","version":20,"id":"30867","lastModified":"1301901995000","name":"Dorothy Patterson","type":"Person","_key":"18910"} +{"label":"Mark DeCarlo","version":33,"id":"60258","lastModified":"1301901590000","name":"Mark DeCarlo","type":"Person","_key":"18911"} +{"label":"Big Monster on Campus","description":"No overview found.","id":"3152","runtime":92,"imdbId":"tt0164192","version":78,"lastModified":"1301904960000","studio":"Regent Entertainment","genre":"Comedy","title":"Big Monster on Campus","releaseDate":946684800000,"language":"en","type":"Movie","_key":"18912"} +{"label":"Mitch Marcus","version":19,"id":"30869","lastModified":"1301901622000","name":"Mitch Marcus","type":"Person","_key":"18913"} +{"label":"Justin Walker","version":20,"id":"30881","lastModified":"1301901908000","name":"Justin Walker","type":"Person","_key":"18914"} +{"label":"Christine Lakin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26e\/4c9edde35e73d6704a00026e\/christine-lakin-profile.jpg","version":44,"id":"30882","lastModified":"1301901276000","name":"Christine Lakin","type":"Person","_key":"18915"} +{"label":"Christian Payne","version":19,"id":"30883","lastModified":"1301901908000","name":"Christian Payne","type":"Person","_key":"18916"} +{"label":"Kenn Michael","version":18,"id":"30884","lastModified":"1301901994000","name":"Kenn Michael","type":"Person","_key":"18917"} +{"label":"La l\u00e9gende des phares","description":"No overview found.","id":"3153","runtime":13,"version":28,"lastModified":"1301907429000","genre":"Thriller","title":"La l\u00e9gende des phares","releaseDate":1009929600000,"language":"en","type":"Movie","_key":"18918"} +{"label":"Cl\u00e9ment Miller","version":43,"id":"30885","lastModified":"1301901404000","name":"Cl\u00e9ment Miller","type":"Person","_key":"18919"} +{"label":"L'histoire d'une \u00e9toile noire","description":"No overview found.","id":"3154","runtime":38,"version":27,"lastModified":"1301421345000","title":"L'histoire d'une \u00e9toile noire","releaseDate":1095897600000,"language":"en","type":"Movie","_key":"18920"} +{"label":"Andr\u00e9 Arend van de Noord","version":16,"id":"33591","lastModified":"1301901826000","name":"Andr\u00e9 Arend van de Noord","type":"Person","_key":"18921"} +{"label":"Andr\u00e9e Faltoyano","version":16,"id":"33592","lastModified":"1301902015000","name":"Andr\u00e9e Faltoyano","type":"Person","_key":"18922"} +{"label":"Simon R\u00e9llan","version":17,"id":"33593","lastModified":"1301901661000","name":"Simon R\u00e9llan","type":"Person","_key":"18923"} +{"label":"Eva Maria Reyes","version":16,"id":"33594","lastModified":"1301901992000","name":"Eva Maria Reyes","type":"Person","_key":"18924"} +{"label":"Ren\u00e9 Miller","version":19,"id":"33595","lastModified":"1301901970000","name":"Ren\u00e9 Miller","type":"Person","_key":"18925"} +{"label":"Claudine Frechon","version":17,"id":"33596","lastModified":"1301901794000","name":"Claudine Frechon","type":"Person","_key":"18926"} +{"label":"S\u00e9bastien Frechon","version":16,"id":"33597","lastModified":"1301901673000","name":"S\u00e9bastien Frechon","type":"Person","_key":"18927"} +{"label":"Rien \u00e0 faire","description":"No overview found.","id":"3155","runtime":57,"version":19,"lastModified":"1301419688000","title":"Rien \u00e0 faire","releaseDate":1131494400000,"language":"en","type":"Movie","_key":"18928"} +{"label":"Tu vas rire mais je vais te tuer","description":"No overview found.","id":"3156","runtime":55,"version":28,"lastModified":"1300978234000","genre":"Comedy","title":"Tu vas rire mais je vais te tuer","releaseDate":1116115200000,"language":"en","type":"Movie","_key":"18929"} +{"label":"Eva LaReine","version":16,"id":"33598","lastModified":"1301902008000","name":"Eva LaReine","type":"Person","_key":"18930"} +{"label":"Claudio Testi","version":16,"id":"33599","lastModified":"1301902008000","name":"Claudio Testi","type":"Person","_key":"18931"} +{"label":"Ricardo Th\u00e9roux","version":16,"id":"33600","lastModified":"1301901970000","name":"Ricardo Th\u00e9roux","type":"Person","_key":"18932"} +{"label":"M\u00e9lisande Th\u00e9roux","version":16,"id":"33601","lastModified":"1301901794000","name":"M\u00e9lisande Th\u00e9roux","type":"Person","_key":"18933"} +{"label":"ZaZie","version":16,"id":"33602","lastModified":"1301901794000","name":"ZaZie","type":"Person","_key":"18934"} +{"label":"Margot Leonhardt","version":16,"id":"33603","lastModified":"1301901970000","name":"Margot Leonhardt","type":"Person","_key":"18935"} +{"label":"Une affaire pornographique","description":"No overview found.","id":"3157","runtime":35,"version":31,"lastModified":"1301906757000","genre":"Thriller","title":"Une affaire pornographique","releaseDate":1128902400000,"language":"en","type":"Movie","_key":"18936"} +{"label":"Lisa Schlegel","version":16,"id":"34105","lastModified":"1301902008000","name":"Lisa Schlegel","type":"Person","_key":"18937"} +{"label":"Dodine Herry","version":16,"id":"34106","lastModified":"1301902008000","name":"Dodine Herry","type":"Person","_key":"18938"} +{"label":"Vincent Lecoeur","version":16,"id":"34107","lastModified":"1301901822000","name":"Vincent Lecoeur","type":"Person","_key":"18939"} +{"label":"Il canile","description":"No overview found.","id":"3158","runtime":55,"version":33,"lastModified":"1301906087000","genre":"Horror","title":"Il canile","releaseDate":1164844800000,"language":"en","type":"Movie","_key":"18940"} +{"label":"Franco Maron","version":15,"id":"33604","lastModified":"1301901541000","name":"Franco Maron","type":"Person","_key":"18941"} +{"label":"Emanuele Cincis","version":15,"id":"33605","lastModified":"1301901908000","name":"Emanuele Cincis","type":"Person","_key":"18942"} +{"label":"Giovanni Verdesca","version":15,"id":"33606","lastModified":"1301901908000","name":"Giovanni Verdesca","type":"Person","_key":"18943"} +{"label":"Carlo Daniele","version":15,"id":"33607","lastModified":"1301901908000","name":"Carlo Daniele","type":"Person","_key":"18944"} +{"label":"Evelina Gori","version":20,"id":"33608","lastModified":"1301901850000","name":"Evelina Gori","type":"Person","_key":"18945"} +{"label":"Daniel Zerbini","version":15,"id":"33609","lastModified":"1301901908000","name":"Daniel Zerbini","type":"Person","_key":"18946"} +{"label":"Fabiana Tardiola","version":15,"id":"33610","lastModified":"1301901908000","name":"Fabiana Tardiola","type":"Person","_key":"18947"} +{"label":"Terror! Il castello delle donne maledette","description":"No overview found.","id":"3159","runtime":90,"imdbId":"tt0069851","version":74,"lastModified":"1301906637000","studio":"Classic Films International","genre":"Horror","title":"Terror! Il castello delle donne maledette","releaseDate":130464000000,"language":"en","type":"Movie","_key":"18948"} +{"label":"Dick Randall","version":32,"id":"30652","lastModified":"1301902167000","name":"Dick Randall","type":"Person","_key":"18949"} +{"label":"Michael Dunn","version":17,"id":"16085","lastModified":"1301901908000","name":"Michael Dunn","type":"Person","_key":"18950"} +{"label":"Gordon Mitchell","version":42,"id":"30898","lastModified":"1302001373000","name":"Gordon Mitchell","type":"Person","_key":"18951"} +{"label":"Loren Ewing","version":19,"id":"30899","lastModified":"1301901908000","name":"Loren Ewing","type":"Person","_key":"18952"} +{"label":"Luciano Pigozzi","version":35,"id":"30900","lastModified":"1301901559000","name":"Luciano Pigozzi","type":"Person","_key":"18953"} +{"label":"Xiro Papas","version":22,"id":"30891","lastModified":"1301901665000","name":"Xiro Papas","type":"Person","_key":"18954"} +{"label":"Salvatore Baccaro","version":21,"id":"30901","lastModified":"1301901770000","name":"Salvatore Baccaro","type":"Person","_key":"18955"} +{"label":"Simonetta Vitelli","version":21,"id":"30902","lastModified":"1301901908000","name":"Simonetta Vitelli","type":"Person","_key":"18956"} +{"label":"Eric Mann","version":19,"id":"30903","lastModified":"1301901908000","name":"Eric Mann","type":"Person","_key":"18957"} +{"label":"Laura De Benedittis","version":16,"id":"102166","lastModified":"1301902905000","name":"Laura De Benedittis","type":"Person","_key":"18958"} +{"label":"Christiane R\u00fccker","version":21,"id":"46047","lastModified":"1301901744000","name":"Christiane R\u00fccker","type":"Person","_key":"18959"} +{"label":"Annamaria Tornello","version":16,"id":"102167","lastModified":"1301902905000","name":"Annamaria Tornello","type":"Person","_key":"18960"} +{"label":"Mike Monty","version":18,"id":"101325","lastModified":"1301902905000","name":"Mike Monty","type":"Person","_key":"18961"} +{"label":"Frankenstein Conquers the World","description":"This Film was banned in 1995 for Political Reasons","id":"3160","runtime":93,"imdbId":"tt0059205","version":122,"lastModified":"1301906110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0be\/4c1e3d2a7b9aa129580000be\/furankenshutain-tai-chitei-kaiju-baragon-mid.jpg","studio":"Henry G. Saperstein Enterprises Inc.","genre":"Horror","title":"Frankenstein Conquers the World","releaseDate":-138844800000,"language":"en","type":"Movie","_key":"18962"} +{"label":"Koji Furuhata","version":20,"id":"30906","lastModified":"1301901933000","name":"Koji Furuhata","type":"Person","_key":"18963"} +{"label":"Susumu Fujita","version":25,"id":"30907","lastModified":"1301901851000","name":"Susumu Fujita","type":"Person","_key":"18964"} +{"label":"Making Frankensense of 'Young Frankenstein'","description":"No overview found.","id":"3161","runtime":42,"imdbId":"tt0428798","version":45,"lastModified":"1301906160000","studio":"20th Century Fox","genre":"Documentary","title":"Making Frankensense of 'Young Frankenstein'","releaseDate":820454400000,"language":"en","type":"Movie","_key":"18965"} +{"label":"Patrick Cousans","version":22,"id":"30909","lastModified":"1301901695000","name":"Patrick Cousans","type":"Person","_key":"18966"} +{"label":"Stanford C. Allen","version":31,"id":"16533","lastModified":"1302061976000","name":"Stanford C. Allen","type":"Person","_key":"18967"} +{"label":"William D. Gordean","version":36,"id":"30918","lastModified":"1301901578000","name":"William D. Gordean","type":"Person","_key":"18968"} +{"label":"Michael Gruskoff","version":25,"id":"12116","lastModified":"1301901513000","name":"Michael Gruskoff","type":"Person","_key":"18969"} +{"label":"Gerald Hirschfeld","version":28,"id":"6847","lastModified":"1301901361000","name":"Gerald Hirschfeld","type":"Person","_key":"18970"} +{"label":"Blackenstein","description":"No overview found.","id":"3162","runtime":87,"imdbId":"tt0069795","version":221,"lastModified":"1301907448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4c14d48f7b9aa105d3000001\/blackenstein-mid.jpg","studio":"Frisco Productions Limited","genre":"Horror","title":"Blackenstein","releaseDate":94694400000,"language":"en","type":"Movie","_key":"18971"} +{"label":"William A. Levey","version":21,"id":"30942","lastModified":"1301901821000","name":"William A. Levey","type":"Person","_key":"18972"} +{"label":"John Hart","version":34,"id":"2860","lastModified":"1300054872000","name":"John Hart","type":"Person","_key":"18973"} +{"label":"Ivory Stone","version":20,"id":"30949","lastModified":"1301902008000","name":"Ivory Stone","type":"Person","_key":"18974"} +{"label":"Joe De Sue","version":18,"id":"30950","lastModified":"1301901995000","name":"Joe De Sue","type":"Person","_key":"18975"} +{"label":"Roosevelt Jackson","version":20,"id":"30951","lastModified":"1301902013000","name":"Roosevelt Jackson","type":"Person","_key":"18976"} +{"label":"Andrea King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22b\/4bf17034017a3c321500022b\/andrea-king-profile.jpg","biography":"Andrea King appeared in Broadway plays and other theater work before appearing in The March of Time's first feature-length film entitled The Ramparts We Watch (1940). In 1944, she signed with Warner Bros. and changed her stage name to King (some of her early movies have her credited as Georgette McKee - her stepfather's name). King appeared uncredited in the Bette Davis film, Mr. Skeffington (1944) and went on to do another ten movies in the next three years. King was originally cast to play Dr.","version":35,"birthday":"-1606784400000","id":"30952","birthplace":"Paris, France","lastModified":"1301901118000","name":"Andrea King","type":"Person","_key":"18977"} +{"label":"Nick Bolin","version":20,"id":"30953","lastModified":"1301902008000","name":"Nick Bolin","type":"Person","_key":"18978"} +{"label":"Karin Lind","version":20,"id":"30954","lastModified":"1301901584000","name":"Karin Lind","type":"Person","_key":"18979"} +{"label":"Yvonne Robinson","version":20,"id":"30955","lastModified":"1301902008000","name":"Yvonne Robinson","type":"Person","_key":"18980"} +{"label":"Bob Brophy","version":17,"id":"135109","lastModified":"1301903080000","name":"Bob Brophy","type":"Person","_key":"18981"} +{"label":"Liz Renay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/256\/4ca49caa7b9aa16ed9000256\/liz-renay-profile.jpg","version":29,"id":"76494","lastModified":"1301901857000","name":"Liz Renay","type":"Person","_key":"18982"} +{"label":"La maldici\u00f3n de Frankenstein","description":"No overview found.","id":"3163","runtime":94,"imdbId":"tt0068559","version":48,"lastModified":"1301906757000","studio":"C. F\u00e9nix Films","genre":"Erotic","title":"La maldici\u00f3n de Frankenstein","releaseDate":63072000000,"language":"en","type":"Movie","_key":"18983"} +{"label":"Jesus Franco","version":233,"id":"30956","lastModified":"1301901205000","name":"Jesus Franco","type":"Person","_key":"18984"} +{"label":"Alberto Dalb\u00e9s","version":31,"id":"100717","lastModified":"1301996520000","name":"Alberto Dalb\u00e9s","type":"Person","_key":"18985"} +{"label":"Beatriz Sav\u00f3n","version":17,"id":"100720","lastModified":"1301902714000","name":"Beatriz Sav\u00f3n","type":"Person","_key":"18986"} +{"label":"Anne Libert","version":24,"id":"30960","lastModified":"1301901822000","name":"Anne Libert","type":"Person","_key":"18987"} +{"label":"Fernando Bilbao","version":26,"id":"30964","lastModified":"1301901569000","name":"Fernando Bilbao","type":"Person","_key":"18988"} +{"label":"Britt Nichols","version":26,"id":"30961","lastModified":"1301901794000","name":"Britt Nichols","type":"Person","_key":"18989"} +{"label":"Daniel White","version":51,"id":"30957","lastModified":"1301901578000","name":"Daniel White","type":"Person","_key":"18990"} +{"label":"Doris Thomas","version":18,"id":"100721","lastModified":"1301902682000","name":"Doris Thomas","type":"Person","_key":"18991"} +{"label":"Lina Romay","version":58,"id":"101472","lastModified":"1301901807000","name":"Lina Romay","type":"Person","_key":"18992"} +{"label":"Frankenstein 1970","description":"No overview found.","id":"3164","runtime":83,"imdbId":"tt0051630","version":111,"lastModified":"1301906664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f8\/4bc918b6017a3c57fe0096f8\/frankenstein-1970-mid.jpg","studio":"Aubrey Schenck Productions","genre":"Horror","title":"Frankenstein 1970","releaseDate":-361411200000,"language":"en","type":"Movie","_key":"18993"} +{"label":"Howard W. Koch","version":43,"id":"3428","lastModified":"1301901230000","name":"Howard W. Koch","type":"Person","_key":"18994"} +{"label":"Jana Lund","version":21,"id":"30976","lastModified":"1301901635000","name":"Jana Lund","type":"Person","_key":"18995"} +{"label":"Tom Duggan","version":19,"id":"30977","lastModified":"1301901765000","name":"Tom Duggan","type":"Person","_key":"18996"} +{"label":"Charlotte Austin","version":24,"id":"30978","lastModified":"1301901806000","name":"Charlotte Austin","type":"Person","_key":"18997"} +{"label":"Norbert Schiller","version":20,"id":"30979","lastModified":"1301901932000","name":"Norbert Schiller","type":"Person","_key":"18998"} +{"label":"Mike Lane","version":22,"id":"30980","lastModified":"1301901775000","name":"Mike Lane","type":"Person","_key":"18999"} +{"label":"Don 'Red' Barry","version":30,"id":"103789","lastModified":"1301903039000","name":"Don 'Red' Barry","type":"Person","_key":"19000"} +{"label":"Frankenstein Island","description":"No overview found.","id":"3165","runtime":97,"imdbId":"tt0082410","version":473,"lastModified":"1301907253000","studio":"Cerito Films","genre":"Horror","title":"Frankenstein Island","releaseDate":347155200000,"language":"en","type":"Movie","_key":"19001"} +{"label":"Jerry Warren","version":31,"id":"30981","lastModified":"1301901794000","name":"Jerry Warren","type":"Person","_key":"19002"} +{"label":"Tain Bodkin","version":20,"id":"30986","lastModified":"1301901821000","name":"Tain Bodkin","type":"Person","_key":"19003"} +{"label":"George Mitchell","version":23,"id":"30987","lastModified":"1301901584000","name":"George Mitchell","type":"Person","_key":"19004"} +{"label":"Katherine Victor","version":24,"id":"30984","lastModified":"1301901680000","name":"Katherine Victor","type":"Person","_key":"19005"} +{"label":"Robert Christopher","version":21,"id":"30982","lastModified":"1301902019000","name":"Robert Christopher","type":"Person","_key":"19006"} +{"label":"Patrick O'Neil","version":18,"id":"30985","lastModified":"1301902010000","name":"Patrick O'Neil","type":"Person","_key":"19007"} +{"label":"Frankenstein Meets the Spacemonster","description":"No overview found.","id":"3166","runtime":79,"imdbId":"tt0059199","version":160,"lastModified":"1301906637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/702\/4bc918b7017a3c57fe009702\/frankenstein-meets-the-spacemonster-mid.jpg","studio":"Vernon-Seneca Films","genre":"Horror","title":"Frankenstein Meets the Spacemonster","releaseDate":-134956800000,"language":"en","type":"Movie","_key":"19008"} +{"label":"Robert Gaffney","version":19,"id":"30988","lastModified":"1301901622000","name":"Robert Gaffney","type":"Person","_key":"19009"} +{"label":"Marilyn Hanold","version":25,"id":"30998","lastModified":"1301901990000","name":"Marilyn Hanold","type":"Person","_key":"19010"} +{"label":"Nancy Marshall","version":19,"id":"30999","lastModified":"1301901622000","name":"Nancy Marshall","type":"Person","_key":"19011"} +{"label":"David Kerman","version":19,"id":"31000","lastModified":"1301901908000","name":"David Kerman","type":"Person","_key":"19012"} +{"label":"Robert Reilly","version":19,"id":"31001","lastModified":"1301901908000","name":"Robert Reilly","type":"Person","_key":"19013"} +{"label":"Robert Alan Browne","version":21,"id":"31002","lastModified":"1301901622000","name":"Robert Alan Browne","type":"Person","_key":"19014"} +{"label":"Susan Stephens","version":19,"id":"31003","lastModified":"1301901908000","name":"Susan Stephens","type":"Person","_key":"19015"} +{"label":"Ace Ventura","description":"No overview found.","id":"3167","title":"Ace Ventura","language":"en","lastModified":"1302020749000","version":838,"type":"Movie","_key":"19016"} +{"label":"Ballo a tre passi","description":"No overview found.","id":"3168","runtime":107,"imdbId":"tt0389778","version":42,"lastModified":"1301908611000","studio":"Eyescreen S.r.l.","genre":"Drama","title":"Ballo a tre passi","releaseDate":1062374400000,"language":"en","type":"Movie","_key":"19017"} +{"label":"Salvatore Mereu","version":21,"id":"31008","lastModified":"1301901794000","name":"Salvatore Mereu","type":"Person","_key":"19018"} +{"label":"Michele Carboni","version":20,"id":"31016","lastModified":"1301901970000","name":"Michele Carboni","type":"Person","_key":"19019"} +{"label":"Doctor Dolittle","description":"No overview found.","id":"3169","version":798,"lastModified":"1301906797000","genre":"Action","title":"Doctor Dolittle","language":"en","type":"Movie","_key":"19020"} +{"label":"Bambi","description":"The animated story of Bambi, a young deer hailed as the 'Prince of the Forest' at his birth. As Bambi grows, he makes friends with the other animals of the forest, learns the skills needed to survive, and even finds love. One day, however, the hunters come, and Bambi must learn to be as brave as his father if he is to lead the other deer to safety.","id":"3170","runtime":70,"imdbId":"tt0034492","trailer":"http:\/\/www.youtube.com\/watch?v=156fLnoovF8","version":591,"lastModified":"1302035910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23f\/4d7036547b9aa1300000123f\/bambi-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"Bambi","releaseDate":-864691200000,"language":"en","tagline":"A great love story.","type":"Movie","_key":"19021"} +{"label":"Hardie Albright","version":27,"id":"31702","lastModified":"1302035910000","name":"Hardie Albright","type":"Person","_key":"19022"} +{"label":"Stan Alexander","version":23,"id":"31703","lastModified":"1302035910000","name":"Stan Alexander","type":"Person","_key":"19023"} +{"label":"Peter Behn","version":23,"id":"31704","lastModified":"1302035910000","name":"Peter Behn","type":"Person","_key":"19024"} +{"label":"Sam Edwards","version":29,"id":"31705","lastModified":"1302035910000","name":"Sam Edwards","type":"Person","_key":"19025"} +{"label":"Thelma Boardman","version":23,"id":"31706","lastModified":"1302035910000","name":"Thelma Boardman","type":"Person","_key":"19026"} +{"label":"Tim Davis","version":23,"id":"31707","lastModified":"1302035910000","name":"Tim Davis","type":"Person","_key":"19027"} +{"label":"Bambi Meets Godzilla","description":"Bambi is nibbling the grass, unaware of the upcoming encounter with Godzilla. Who will win when they finally meet?","id":"3171","runtime":2,"imdbId":"tt0064064","version":116,"lastModified":"1301906156000","genre":"Animation","title":"Bambi Meets Godzilla","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"19028"} +{"label":"Marv Newland","version":22,"id":"31022","lastModified":"1301901811000","name":"Marv Newland","type":"Person","_key":"19029"} +{"label":"Bandits","description":"Two bank robbers fall in love with the girl they've kidnapped.","id":"3172","runtime":120,"imdbId":"tt0219965","version":254,"lastModified":"1301903826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae2\/4d8f55075e73d65f0e001ae2\/bandits-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Bandits","releaseDate":1002844800000,"language":"en","type":"Movie","_key":"19030"} +{"label":"William Converse-Roberts","version":21,"id":"31712","lastModified":"1301901458000","name":"William Converse-Roberts","type":"Person","_key":"19031"} +{"label":"Brian F. O'Byrne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/709\/4c08373e017a3c33d9000709\/brian-f-o-byrne-profile.jpg","version":41,"id":"31713","lastModified":"1302064749000","name":"Brian F. O'Byrne","type":"Person","_key":"19032"} +{"label":"Stacey Travis","version":37,"id":"31714","lastModified":"1301901169000","name":"Stacey Travis","type":"Person","_key":"19033"} +{"label":"Azura Skye","version":24,"id":"31715","lastModified":"1301901382000","name":"Azura Skye","type":"Person","_key":"19034"} +{"label":"Peggy Miley","version":21,"id":"31716","lastModified":"1301901458000","name":"Peggy Miley","type":"Person","_key":"19035"} +{"label":"January Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4c3d0eb25e73d6035e000004\/january-jones-profile.jpg","version":67,"id":"31717","lastModified":"1301901359000","name":"January Jones","type":"Person","_key":"19036"} +{"label":"Bangkok Dangerous","description":"The movie is about a deaf-mute hitman and his partner. Trouble begins when he starts a relationship with a young woman.","id":"3173","runtime":105,"imdbId":"tt0263101","version":281,"lastModified":"1301903441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72f\/4bc918bc017a3c57fe00972f\/bangkok-dangerous-jp-mid.jpg","studio":"Film Bangkok","genre":"Action","title":"Bangkok Dangerous","releaseDate":941414400000,"language":"en","type":"Movie","_key":"19037"} +{"label":"Oxide Pang Chun","version":59,"id":"31033","lastModified":"1301901266000","name":"Oxide Pang Chun","type":"Person","_key":"19038"} +{"label":"Danny Pang","version":50,"id":"21905","lastModified":"1301901231000","name":"Danny Pang","type":"Person","_key":"19039"} +{"label":"Pawalit Mongkolpisit","version":20,"id":"31041","lastModified":"1301901431000","name":"Pawalit Mongkolpisit","type":"Person","_key":"19040"} +{"label":"Premsinee Ratanasopha","version":20,"id":"31042","lastModified":"1301901622000","name":"Premsinee Ratanasopha","type":"Person","_key":"19041"} +{"label":"Patharawarin Timkul","version":20,"id":"31043","lastModified":"1301901383000","name":"Patharawarin Timkul","type":"Person","_key":"19042"} +{"label":"Pisek Intrakanchit","version":20,"id":"31044","lastModified":"1301901478000","name":"Pisek Intrakanchit","type":"Person","_key":"19043"} +{"label":"Korkiate Limpapat","version":20,"id":"31045","lastModified":"1301901541000","name":"Korkiate Limpapat","type":"Person","_key":"19044"} +{"label":"Piya Boonnak","version":20,"id":"31046","lastModified":"1301901478000","name":"Piya Boonnak","type":"Person","_key":"19045"} +{"label":"Barcode","description":"No overview found.","id":"3174","runtime":8,"imdbId":"tt0209930","version":31,"lastModified":"1300978237000","genre":"Animation","title":"Barcode","releaseDate":978307200000,"language":"en","type":"Movie","_key":"19046"} +{"label":"Adriaan Lokman","version":20,"id":"31053","lastModified":"1301901794000","name":"Adriaan Lokman","type":"Person","_key":"19047"} +{"label":"Barry Lyndon","description":"In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love of his cousin Nora Brady. When Nora engages to the British Captain John Quin, Barry challenges him for a duel of pistols. He wins and escapes to Dublin, but is robbed on the road. Without any other alternative, Barry joins the British Army to fight in the Seven Years War.","id":"3175","runtime":184,"imdbId":"tt0072684","trailer":"http:\/\/www.youtube.com\/watch?v=hHCKrusk5SQ","version":1066,"lastModified":"1302000940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/158\/4d985c4a5e73d62c17003158\/barry-lyndon-mid.jpg","studio":"Hawk Films","genre":"Drama","title":"Barry Lyndon","releaseDate":188092800000,"language":"en","type":"Movie","_key":"19048"} +{"label":"Marisa Berenson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/400\/4d5a33415e73d65e95000400\/marisa-berenson-profile.jpg","version":32,"id":"31071","lastModified":"1301901498000","name":"Marisa Berenson","type":"Person","_key":"19049"} +{"label":"Hardy Kr\u00fcger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c49b7377b9aa115fd00008f\/hardy-kruger-profile.jpg","version":42,"id":"37777","lastModified":"1301901404000","name":"Hardy Kr\u00fcger","type":"Person","_key":"19050"} +{"label":"Frank Middlemass","version":21,"id":"31718","lastModified":"1301901431000","name":"Frank Middlemass","type":"Person","_key":"19051"} +{"label":"Arthur O'Sullivan","version":20,"id":"31719","lastModified":"1301901541000","name":"Arthur O'Sullivan","type":"Person","_key":"19052"} +{"label":"Gay Hamilton","version":20,"id":"31720","lastModified":"1301901744000","name":"Gay Hamilton","type":"Person","_key":"19053"} +{"label":"Marie Kean","version":21,"id":"31721","lastModified":"1301901622000","name":"Marie Kean","type":"Person","_key":"19054"} +{"label":"Murray Melvin","version":26,"id":"31722","lastModified":"1301901908000","name":"Murray Melvin","type":"Person","_key":"19055"} +{"label":"Leon Vitali","version":30,"id":"5020","lastModified":"1301901353000","name":"Leon Vitali","type":"Person","_key":"19056"} +{"label":"Billy Boyle","version":20,"id":"31723","lastModified":"1301901622000","name":"Billy Boyle","type":"Person","_key":"19057"} +{"label":"Battle Royale","description":"In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary \"Battle Royale\" act.","id":"3176","runtime":122,"imdbId":"tt0266308","trailer":"http:\/\/www.youtube.com\/watch?v=qMOCEF4n_zs","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/battle-royale","version":151,"lastModified":"1301903148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00c\/4cdb68247b9aa1327600000c\/batoru-rowaiaru-mid.jpg","studio":"Battle Royale Production Committee","genre":"Thriller","title":"Battle Royale","releaseDate":976924800000,"language":"en","type":"Movie","_key":"19058"} +{"label":"Kinji Fukasaku","version":60,"id":"31074","lastModified":"1301901217000","name":"Kinji Fukasaku","type":"Person","_key":"19059"} +{"label":"Tatsuya Fujiwara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ea4\/4d2655e67b9aa134cb000ea4\/tatsuya-fujiwara-profile.jpg","version":44,"id":"31078","lastModified":"1301901110000","name":"Tatsuya Fujiwara","type":"Person","_key":"19060"} +{"label":"Aki Maeda","version":27,"id":"31079","lastModified":"1301901221000","name":"Aki Maeda","type":"Person","_key":"19061"} +{"label":"Tar\u00f4 Yamamoto","version":24,"id":"31080","lastModified":"1301901169000","name":"Tar\u00f4 Yamamoto","type":"Person","_key":"19062"} +{"label":"Battle Royale II: Requiem","description":"It's three years after the events of the original Battle Royale, and Shuya Nanahara is now an internationally-known terrorist determined to bring down the government. His terrorist group, Wild Seven, stages an attack that levels several buildings in Tokyo on Christmas Day, killing 8000 people.Exactly one year afterward, the government enacts the \"New Century Terrorist Counter-Measure Alternative\" program, a.k.a. the BRII act, and sends the forty-two students of Shikanotoride Junior High Class 3-","id":"3177","runtime":155,"imdbId":"tt0338763","trailer":"http:\/\/www.youtube.com\/watch?v=pSSzmolgvmY","version":58,"lastModified":"1301904049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75c\/4bc918c3017a3c57fe00975c\/batoru-rowaiaru-ii-chinkonka-mid.jpg","studio":"Fukasaku-gumi","genre":"Action","title":"Battle Royale II: Requiem","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"19063"} +{"label":"Kenta Fukasaku","version":46,"id":"31073","lastModified":"1301901297000","name":"Kenta Fukasaku","type":"Person","_key":"19064"} +{"label":"Ai Maeda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e45\/4d905f8d7b9aa16a24002e45\/ai-maeda-profile.jpg","version":29,"id":"31082","lastModified":"1301901584000","name":"Ai Maeda","type":"Person","_key":"19065"} +{"label":"Beat","description":"Courtney Love stars as Joan Vollmer, the second wife of writer William S. Burroughs (Keifer Sutherland), in this picturesque look at death and travel among a group of travelling college students who would go on to become the best-known of the \"Beat\" writers.","id":"3178","runtime":93,"imdbId":"tt0401246","version":309,"lastModified":"1301906087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ece\/4d2339085e73d66b27003ece\/beat-mid.jpg","genre":"Drama","title":"Beat","releaseDate":946684800000,"language":"en","type":"Movie","_key":"19066"} +{"label":"Gary Walkow","version":21,"id":"83712","lastModified":"1301902541000","name":"Gary Walkow","type":"Person","_key":"19067"} +{"label":"Beavis and Butt-Head Do America","description":"This is a full-length cartoon movie featuring the dim-witted obnoxious loser teens, Beavis and Butt-head. They are obsessed with sex, TV, heavy-metal rock 'n roll, sex, coolness and sex, in that order. The trouble begins when the couch-potato duo's beloved television disappears (they assume it was stolen).","id":"3179","runtime":81,"imdbId":"tt0115641","trailer":"http:\/\/www.youtube.com\/watch?v=v8FfXeoh9cE","version":214,"lastModified":"1301902540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/031\/4c034593017a3c33d9000031\/beavis-and-butt-head-do-america-mid.jpg","studio":"Paramount Pictures","genre":"Animation","title":"Beavis and Butt-Head Do America","releaseDate":850608000000,"language":"en","tagline":"Coming to a screen bigger than your TV.","type":"Movie","_key":"19068"} +{"label":"Dracula vs Frankenstein","description":"Dr. Frankenstein and his assistant Morpho are killed just as they bring their creation to life. The monster is taken by Cagliostro and he now controls the monster and plans to have it mate and create the perfect master race!","id":"3199","runtime":88,"imdbId":"tt0065660","version":348,"lastModified":"1301907753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4c1d0ab57b9aa11e95000047\/dracula-contra-frankenstein-mid.jpg","studio":"Comptoir Fran\u00e7ais du Film Production","genre":"Horror","title":"Dracula vs Frankenstein","releaseDate":90892800000,"language":"en","type":"Movie","_key":"19069"} +{"label":"Genevi\u00e8ve Robert","version":21,"id":"31152","lastModified":"1301901676000","name":"Genevi\u00e8ve Robert","type":"Person","_key":"19070"} +{"label":"Paca Gabald\u00f3n","version":21,"id":"31153","lastModified":"1301901815000","name":"Paca Gabald\u00f3n","type":"Person","_key":"19071"} +{"label":"Brandy","version":22,"id":"31154","lastModified":"1301901766000","name":"Brandy","type":"Person","_key":"19072"} +{"label":"Billy Frankenstein","description":"No overview found.","id":"3200","runtime":100,"imdbId":"tt0184276","version":54,"lastModified":"1301906756000","studio":"Royal Oaks Entertainment","genre":"Comedy","title":"Billy Frankenstein","releaseDate":883612800000,"language":"en","type":"Movie","_key":"19073"} +{"label":"Fred Olen Ray","version":178,"id":"31155","lastModified":"1302044062000","name":"Fred Olen Ray","type":"Person","_key":"19074"} +{"label":"Jordan Lamoureux","version":20,"id":"31160","lastModified":"1301901661000","name":"Jordan Lamoureux","type":"Person","_key":"19075"} +{"label":"Mary Elizabeth McGlynn","version":28,"id":"31161","lastModified":"1301901660000","name":"Mary Elizabeth McGlynn","type":"Person","_key":"19076"} +{"label":"Daran Norris","version":32,"id":"31162","lastModified":"1301901569000","name":"Daran Norris","type":"Person","_key":"19077"} +{"label":"Brian Carrillo","version":18,"id":"31163","lastModified":"1301901994000","name":"Brian Carrillo","type":"Person","_key":"19078"} +{"label":"Kristin Jadrnicek","version":20,"id":"31165","lastModified":"1301901821000","name":"Kristin Jadrnicek","type":"Person","_key":"19079"} +{"label":"The Vindicator","description":"No overview found.","id":"3201","runtime":93,"imdbId":"tt0092172","version":60,"lastModified":"1301904242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/530\/4be09be0017a3c35bb000530\/the-vindicator-mid.jpg","studio":"Michael Levy Enterprises","genre":"Action","title":"The Vindicator","releaseDate":508723200000,"language":"en","type":"Movie","_key":"19080"} +{"label":"Jean-Claude Lord","version":23,"id":"31177","lastModified":"1301901348000","name":"Jean-Claude Lord","type":"Person","_key":"19081"} +{"label":"David McIlwraith","version":25,"id":"31184","lastModified":"1301901389000","name":"David McIlwraith","type":"Person","_key":"19082"} +{"label":"Teri Austin","version":19,"id":"31185","lastModified":"1301901908000","name":"Teri Austin","type":"Person","_key":"19083"} +{"label":"Richard Cox","version":22,"id":"31186","lastModified":"1301901908000","name":"Richard Cox","type":"Person","_key":"19084"} +{"label":"Catherine Disher","version":20,"id":"31187","lastModified":"1301901908000","name":"Catherine Disher","type":"Person","_key":"19085"} +{"label":"Micki Moore","version":19,"id":"31188","lastModified":"1301901908000","name":"Micki Moore","type":"Person","_key":"19086"} +{"label":"Larry Aubrey","version":19,"id":"31189","lastModified":"1301901908000","name":"Larry Aubrey","type":"Person","_key":"19087"} +{"label":"Victor Frankenstein","description":"No overview found.","id":"3202","runtime":92,"imdbId":"tt0076881","version":46,"lastModified":"1301906756000","studio":"Tiger Aspect Productions","genre":"Horror","title":"Victor Frankenstein","releaseDate":220924800000,"language":"en","type":"Movie","_key":"19088"} +{"label":"Calvin Floyd","version":22,"id":"31190","lastModified":"1301901794000","name":"Calvin Floyd","type":"Person","_key":"19089"} +{"label":"Nicholas Clay","version":28,"id":"31196","lastModified":"1301901317000","name":"Nicholas Clay","type":"Person","_key":"19090"} +{"label":"Stacy Dorning","version":20,"id":"31197","lastModified":"1301901821000","name":"Stacy Dorning","type":"Person","_key":"19091"} +{"label":"Olof Bergstr\u00f6m","version":20,"id":"31199","lastModified":"1301901837000","name":"Olof Bergstr\u00f6m","type":"Person","_key":"19092"} +{"label":"Mathias Henrikson","version":20,"id":"31200","lastModified":"1301901821000","name":"Mathias Henrikson","type":"Person","_key":"19093"} +{"label":"Jan Ohlsson","version":29,"id":"71007","lastModified":"1301901400000","name":"Jan Ohlsson","type":"Person","_key":"19094"} +{"label":"Tales of Frankenstein","description":"No overview found.","id":"3203","runtime":28,"imdbId":"tt0247751","version":70,"lastModified":"1301907446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77c\/4bc918c7017a3c57fe00977c\/tales-of-frankenstein-mid.jpg","studio":"Columbia Pictures","genre":"Horror","title":"Tales of Frankenstein","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"19095"} +{"label":"Don Megowan","version":24,"id":"31208","lastModified":"1301901801000","name":"Don Megowan","type":"Person","_key":"19096"} +{"label":"Ludwig St\u00f6ssel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b5\/4c59a0407b9aa151f70004b5\/ludwig-stossel-profile.jpg","version":32,"id":"31209","lastModified":"1301901427000","name":"Ludwig St\u00f6ssel","type":"Person","_key":"19097"} +{"label":"Richard Bull","version":26,"id":"31210","lastModified":"1301901573000","name":"Richard Bull","type":"Person","_key":"19098"} +{"label":"She's Alive! Creating the Bride of Frankenstein","description":"No overview found.","id":"3204","runtime":39,"imdbId":"tt0295601","version":46,"lastModified":"1301906756000","studio":"Universal Studios","genre":"Documentary","title":"She's Alive! Creating the Bride of Frankenstein","releaseDate":915148800000,"language":"en","type":"Movie","_key":"19099"} +{"label":"Clive Barker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28a\/4bf19866017a3c320d00028a\/clive-barker-profile.jpg","version":76,"id":"31211","lastModified":"1301901324000","name":"Clive Barker","type":"Person","_key":"19100"} +{"label":"Christopher Bram","version":21,"id":"29785","lastModified":"1301901661000","name":"Christopher Bram","type":"Person","_key":"19101"} +{"label":"Scott MacQueen","version":21,"id":"31212","lastModified":"1301901969000","name":"Scott MacQueen","type":"Person","_key":"19102"} +{"label":"Gregory W. Mank","version":18,"id":"31213","lastModified":"1301901661000","name":"Gregory W. Mank","type":"Person","_key":"19103"} +{"label":"Santo contra la Hija de Frankenstein","description":"Dr. Frankenstein and her assistant, Dr. Yanco, are going to bring one of their experiments to life in Santo Vs. Frankenstein's Daughter. She intends to use a monster named Ursus to do her evil bidding. Using a youth serum to retain their vitality, the doctors set their sights upon none other than El Santo. They need his super human blood to regenerate a stronger youth serum. They kidnap Santo's goddaughter, Norma and lure him into Dr. Frankenstein's lab where he is captured and enslaved. Will Sa","id":"3205","runtime":97,"imdbId":"tt0067707","version":90,"lastModified":"1301906953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4c4b66b05e73d62a4200006f\/santo-vs-la-hija-de-frankenstein-mid.jpg","studio":"Clodio Cinematografica","genre":"Horror","title":"Santo contra la Hija de Frankenstein","releaseDate":82252800000,"language":"en","type":"Movie","_key":"19104"} +{"label":"Miguel M. Delgado","version":58,"id":"125071","lastModified":"1301902639000","name":"Miguel M. Delgado","type":"Person","_key":"19105"} +{"label":"Santo","version":26,"id":"31221","lastModified":"1301901814000","name":"Santo","type":"Person","_key":"19106"} +{"label":"Gina Romand","version":21,"id":"31222","lastModified":"1301901680000","name":"Gina Romand","type":"Person","_key":"19107"} +{"label":"Anel","version":21,"id":"31223","lastModified":"1301901794000","name":"Anel","type":"Person","_key":"19108"} +{"label":"Roberto Ca\u00f1edo","version":20,"id":"31224","lastModified":"1301901995000","name":"Roberto Ca\u00f1edo","type":"Person","_key":"19109"} +{"label":"Sonia Fuentes","version":21,"id":"31226","lastModified":"1301901970000","name":"Sonia Fuentes","type":"Person","_key":"19110"} +{"label":"Enrique Llanes","version":21,"id":"31227","lastModified":"1301901970000","name":"Enrique Llanes","type":"Person","_key":"19111"} +{"label":"Carlos Agost\u00ed","version":19,"id":"105141","lastModified":"1301902682000","name":"Carlos Agost\u00ed","type":"Person","_key":"19112"} +{"label":"Frankenstein vs. the Creature from Blood Cove","description":"No overview found.","id":"3206","runtime":90,"imdbId":"tt0451060","version":99,"lastModified":"1301906673000","studio":"William Winckler Productions","genre":"Horror","title":"Frankenstein vs. the Creature from Blood Cove","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19113"} +{"label":"William Winckler","version":20,"id":"31228","lastModified":"1301901515000","name":"William Winckler","type":"Person","_key":"19114"} +{"label":"G. Larry Butler","version":21,"id":"31234","lastModified":"1301901569000","name":"G. Larry Butler","type":"Person","_key":"19115"} +{"label":"William Winckler","version":24,"id":"31235","lastModified":"1301901404000","name":"William Winckler","type":"Person","_key":"19116"} +{"label":"Dezzirae Ascalon","version":20,"id":"31237","lastModified":"1301901513000","name":"Dezzirae Ascalon","type":"Person","_key":"19117"} +{"label":"Corey Marshall","version":24,"id":"31239","lastModified":"1301901286000","name":"Corey Marshall","type":"Person","_key":"19118"} +{"label":"Gary Canavello","version":20,"id":"31241","lastModified":"1301901822000","name":"Gary Canavello","type":"Person","_key":"19119"} +{"label":"Alison Lees-Taylor","version":20,"id":"31242","lastModified":"1301901584000","name":"Alison Lees-Taylor","type":"Person","_key":"19120"} +{"label":"Lawrence Furbish","version":20,"id":"31243","lastModified":"1301901584000","name":"Lawrence Furbish","type":"Person","_key":"19121"} +{"label":"Rich Knight","version":21,"id":"31244","lastModified":"1301901661000","name":"Rich Knight","type":"Person","_key":"19122"} +{"label":"Das Papstattentat","description":"No overview found.","id":"3207","runtime":90,"imdbId":"tt1166105","version":56,"lastModified":"1301905650000","studio":"RTL","genre":"Thriller","title":"Das Papstattentat","releaseDate":1205625600000,"language":"en","type":"Movie","_key":"19123"} +{"label":"Claudine Wilde","version":19,"id":"53606","lastModified":"1301902296000","name":"Claudine Wilde","type":"Person","_key":"19124"} +{"label":"J\u00fcrgen Tarrach","version":29,"id":"10923","lastModified":"1301901572000","name":"J\u00fcrgen Tarrach","type":"Person","_key":"19125"} +{"label":"Joris Gratwohl","version":19,"id":"53605","lastModified":"1301902296000","name":"Joris Gratwohl","type":"Person","_key":"19126"} +{"label":"Kristian Kiehling","version":29,"id":"34295","lastModified":"1301901499000","name":"Kristian Kiehling","type":"Person","_key":"19127"} +{"label":"Rainer Matsutani","version":26,"id":"28403","lastModified":"1301901657000","name":"Rainer Matsutani","type":"Person","_key":"19128"} +{"label":"I Was a Teenage Frankenstein","description":"No overview found.","id":"3208","runtime":74,"imdbId":"tt0050531","trailer":"http:\/\/www.youtube.com\/watch?v=347","version":66,"lastModified":"1301904684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/781\/4bc918c7017a3c57fe009781\/i-was-a-teenage-frankenstein-mid.jpg","studio":"Santa Rosa Productions","genre":"Horror","title":"I Was a Teenage Frankenstein","releaseDate":-382060800000,"language":"en","type":"Movie","_key":"19129"} +{"label":"Herbert L. Strock","version":25,"id":"31251","lastModified":"1301901472000","name":"Herbert L. Strock","type":"Person","_key":"19130"} +{"label":"Phyllis Coates","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4c24f6957b9aa1446e000126\/phyllis-coates-profile.jpg","version":22,"id":"31259","lastModified":"1301901578000","name":"Phyllis Coates","type":"Person","_key":"19131"} +{"label":"Robert Burton","version":36,"id":"31260","lastModified":"1301901605000","name":"Robert Burton","type":"Person","_key":"19132"} +{"label":"Gary Conway","version":25,"id":"31261","lastModified":"1301901908000","name":"Gary Conway","type":"Person","_key":"19133"} +{"label":"John Cliff","version":22,"id":"31264","lastModified":"1301901781000","name":"John Cliff","type":"Person","_key":"19134"} +{"label":"Marshall Bradford","version":21,"id":"31265","lastModified":"1301901622000","name":"Marshall Bradford","type":"Person","_key":"19135"} +{"label":"Claudia Bryar","version":20,"id":"31266","lastModified":"1301901584000","name":"Claudia Bryar","type":"Person","_key":"19136"} +{"label":"Angela Blake","version":19,"id":"31267","lastModified":"1301901622000","name":"Angela Blake","type":"Person","_key":"19137"} +{"label":"No Telling","description":"No overview found.","id":"3209","runtime":93,"imdbId":"tt0102545","version":76,"lastModified":"1301302611000","studio":"Glass Eye Pix","genre":"Horror","title":"No Telling","releaseDate":662688000000,"language":"en","type":"Movie","_key":"19138"} +{"label":"Miriam Healy-Louie","version":20,"id":"31279","lastModified":"1301902008000","name":"Miriam Healy-Louie","type":"Person","_key":"19139"} +{"label":"Stephen Ramsey","version":20,"id":"31280","lastModified":"1301902008000","name":"Stephen Ramsey","type":"Person","_key":"19140"} +{"label":"Richard Topol","version":20,"id":"31282","lastModified":"1301902008000","name":"Richard Topol","type":"Person","_key":"19141"} +{"label":"Ashley Arcement","version":21,"id":"31283","lastModified":"1301904135000","name":"Ashley Arcement","type":"Person","_key":"19142"} +{"label":"Robert Brady","version":20,"id":"31284","lastModified":"1301901979000","name":"Robert Brady","type":"Person","_key":"19143"} +{"label":"Susan Dee","version":20,"id":"31285","lastModified":"1301901979000","name":"Susan Dee","type":"Person","_key":"19144"} +{"label":"David Van Tieghem","version":18,"id":"31272","lastModified":"1301901851000","name":"David Van Tieghem","type":"Person","_key":"19145"} +{"label":"The Projected Man","description":"No overview found.","id":"3210","runtime":77,"imdbId":"tt0062159","version":90,"lastModified":"1301906766000","studio":"Compton Films","genre":"Horror","title":"The Projected Man","releaseDate":-92016000000,"language":"en","type":"Movie","_key":"19146"} +{"label":"John Croydon","version":25,"id":"31287","lastModified":"1301901800000","name":"John Croydon","type":"Person","_key":"19147"} +{"label":"Ian Curteis","version":24,"id":"31286","lastModified":"1301901732000","name":"Ian Curteis","type":"Person","_key":"19148"} +{"label":"Mary Peach","version":20,"id":"31294","lastModified":"1301901799000","name":"Mary Peach","type":"Person","_key":"19149"} +{"label":"Bryant Haliday","version":23,"id":"31295","lastModified":"1301901572000","name":"Bryant Haliday","type":"Person","_key":"19150"} +{"label":"Norman Wooland","version":29,"id":"31296","lastModified":"1301986210000","name":"Norman Wooland","type":"Person","_key":"19151"} +{"label":"Ronald Allen","version":24,"id":"31297","lastModified":"1301901406000","name":"Ronald Allen","type":"Person","_key":"19152"} +{"label":"Derek Farr","version":20,"id":"31298","lastModified":"1301902008000","name":"Derek Farr","type":"Person","_key":"19153"} +{"label":"Gerard Heinz","version":23,"id":"31299","lastModified":"1301901799000","name":"Gerard Heinz","type":"Person","_key":"19154"} +{"label":"Allen and Rossi meet Dracula and Frankenstein","description":"No overview found.","id":"3211","runtime":60,"imdbId":"tt0071123","version":37,"lastModified":"1301905342000","genre":"Comedy","title":"Allen and Rossi meet Dracula and Frankenstein","releaseDate":126230400000,"language":"en","type":"Movie","_key":"19155"} +{"label":"Marty Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4c811ad97b9aa118f50000c8\/marty-allen-profile.jpg","version":24,"id":"31300","lastModified":"1301901499000","name":"Marty Allen","type":"Person","_key":"19156"} +{"label":"Steve Rossi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4c811b1b7b9aa118f50000cc\/steve-rossi-profile.jpg","version":24,"id":"31301","lastModified":"1301901448000","name":"Steve Rossi","type":"Person","_key":"19157"} +{"label":"100 Years of Horror: The Frankenstein Family","description":"No overview found.","id":"3212","runtime":60,"imdbId":"tt0305153","version":55,"lastModified":"1301905287000","genre":"Documentary","title":"100 Years of Horror: The Frankenstein Family","releaseDate":820454400000,"language":"en","type":"Movie","_key":"19158"} +{"label":"Ted Newsom","version":52,"id":"31302","lastModified":"1301901406000","name":"Ted Newsom","type":"Person","_key":"19159"} +{"label":"Kevin M. Glover","version":26,"id":"31305","lastModified":"1301901458000","name":"Kevin M. Glover","type":"Person","_key":"19160"} +{"label":"Michael F. Blake","version":20,"id":"31307","lastModified":"1301901717000","name":"Michael F. Blake","type":"Person","_key":"19161"} +{"label":"Richard E. Cunha","version":28,"id":"31308","lastModified":"1301901533000","name":"Richard E. Cunha","type":"Person","_key":"19162"} +{"label":"Hugh M. Hefner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/442\/4ca0cb147b9aa15e3c000442\/hugh-m-hefner-profile.jpg","version":34,"id":"31309","lastModified":"1301901319000","name":"Hugh M. Hefner","type":"Person","_key":"19163"} +{"label":"Jack Hill","version":48,"id":"31310","lastModified":"1301901461000","name":"Jack Hill","type":"Person","_key":"19164"} +{"label":"Don Medford","version":20,"id":"31312","lastModified":"1301901644000","name":"Don Medford","type":"Person","_key":"19165"} +{"label":"Jack P. Pierce","version":31,"id":"29813","lastModified":"1301996123000","name":"Jack P. Pierce","type":"Person","_key":"19166"} +{"label":"100 Years of Horror: Baron Frankenstein","description":"No overview found.","id":"3213","runtime":60,"imdbId":"tt0872069","version":44,"lastModified":"1301906187000","genre":"Documentary","title":"100 Years of Horror: Baron Frankenstein","releaseDate":820454400000,"language":"en","type":"Movie","_key":"19167"} +{"label":"Santo y Blue Demon contra el doctor Frankenstein","description":"Innocent women are being kidnapped and used as guinea pigs for a brain transplant experiment. The diabolical Dr. Frankenstein continues his quest to perfect his brain transplant operation to bring back his deceased wife at any cost - even if it means playing with the lives of others. El Santo and Blue Demon are called in to help when their friend Alicia becomes Dr. Frankenstein's next target. It'll take both heroes to go up against the dastardly doctor and go mano a mano with his super strong zo","id":"3214","runtime":95,"imdbId":"tt0258123","version":69,"lastModified":"1301905718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/604\/4d4847df5e73d65ee4001604\/santo-y-blue-demon-contra-el-doctor-frankenstein-mid.jpg","studio":"Cinematogr\u00e1fica Calder\u00f3n","genre":"Horror","title":"Santo y Blue Demon contra el doctor Frankenstein","releaseDate":152409600000,"language":"en","type":"Movie","_key":"19168"} +{"label":"Blue Demon","version":19,"id":"31319","lastModified":"1301901813000","name":"Blue Demon","type":"Person","_key":"19169"} +{"label":"Sasha Montenegro","version":20,"id":"31320","lastModified":"1301901794000","name":"Sasha Montenegro","type":"Person","_key":"19170"} +{"label":"Jorge Russek","version":22,"id":"31321","lastModified":"1301901689000","name":"Jorge Russek","type":"Person","_key":"19171"} +{"label":"Ivonne Govea","version":18,"id":"31322","lastModified":"1301901994000","name":"Ivonne Govea","type":"Person","_key":"19172"} +{"label":"Carlos Su\u00e1rez","version":21,"id":"31323","lastModified":"1301901510000","name":"Carlos Su\u00e1rez","type":"Person","_key":"19173"} +{"label":"Rub\u00e9n Aguirre","version":18,"id":"31324","lastModified":"1301902019000","name":"Rub\u00e9n Aguirre","type":"Person","_key":"19174"} +{"label":"Jorge Casanova","version":20,"id":"31325","lastModified":"1301901971000","name":"Jorge Casanova","type":"Person","_key":"19175"} +{"label":"La Sangre de Frankenstein","description":"No overview found.","id":"3215","runtime":74,"imdbId":"tt0298028","version":48,"lastModified":"1301906188000","studio":"Gorevision Films","genre":"Comedy","title":"La Sangre de Frankenstein","releaseDate":1033603200000,"language":"en","type":"Movie","_key":"19176"} +{"label":"Germ\u00e1n Magari\u00f1os","version":19,"id":"31326","lastModified":"1301901821000","name":"Germ\u00e1n Magari\u00f1os","type":"Person","_key":"19177"} +{"label":"Leandro De la Torre","version":18,"id":"31330","lastModified":"1301902017000","name":"Leandro De la Torre","type":"Person","_key":"19178"} +{"label":"Martin Villagra","version":20,"id":"31331","lastModified":"1301901821000","name":"Martin Villagra","type":"Person","_key":"19179"} +{"label":"Diego Cagide","version":22,"id":"31328","lastModified":"1301902010000","name":"Diego Cagide","type":"Person","_key":"19180"} +{"label":"Mariano Salas","version":20,"id":"31332","lastModified":"1301901812000","name":"Mariano Salas","type":"Person","_key":"19181"} +{"label":"Jos\u00e9 Luis Paruolo","version":18,"id":"31333","lastModified":"1301901823000","name":"Jos\u00e9 Luis Paruolo","type":"Person","_key":"19182"} +{"label":"Federico Paruolo","version":20,"id":"31334","lastModified":"1301901680000","name":"Federico Paruolo","type":"Person","_key":"19183"} +{"label":"Alan Goyen","version":20,"id":"31335","lastModified":"1301901837000","name":"Alan Goyen","type":"Person","_key":"19184"} +{"label":"Los Monstruos del terror","description":"No overview found.","id":"3216","runtime":87,"imdbId":"tt0064687","version":66,"lastModified":"1301904960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/786\/4bc918c7017a3c57fe009786\/los-monstruos-del-terror-mid.jpg","studio":"Eichberg-Film","genre":"Horror","title":"Los Monstruos del terror","releaseDate":4924800000,"language":"en","type":"Movie","_key":"19185"} +{"label":"Tulio Demicheli","version":20,"id":"31338","lastModified":"1301901744000","name":"Tulio Demicheli","type":"Person","_key":"19186"} +{"label":"Eberhard Meichsner","version":22,"id":"31337","lastModified":"1301901797000","name":"Eberhard Meichsner","type":"Person","_key":"19187"} +{"label":"Hugo Fregonese","version":26,"id":"31336","lastModified":"1301901520000","name":"Hugo Fregonese","type":"Person","_key":"19188"} +{"label":"Helga Geissler","version":19,"id":"31348","lastModified":"1301901908000","name":"Helga Geissler","type":"Person","_key":"19189"} +{"label":"\u00c1ngel del Pozo","version":23,"id":"31349","lastModified":"1301901999000","name":"\u00c1ngel del Pozo","type":"Person","_key":"19190"} +{"label":"Craig Hill","version":29,"id":"31350","lastModified":"1301901454000","name":"Craig Hill","type":"Person","_key":"19191"} +{"label":"Paul Naschy","version":87,"id":"31351","lastModified":"1301901404000","name":"Paul Naschy","type":"Person","_key":"19192"} +{"label":"Monster Mash: The Movie","description":"No overview found.","id":"3217","runtime":83,"imdbId":"tt0113105","version":111,"lastModified":"1301907288000","genre":"Comedy","title":"Monster Mash: The Movie","releaseDate":788918400000,"language":"en","type":"Movie","_key":"19193"} +{"label":"Joel Cohen","version":50,"id":"12892","lastModified":"1301901526000","name":"Joel Cohen","type":"Person","_key":"19194"} +{"label":"Alec Sokolow","version":48,"id":"12893","lastModified":"1301901490000","name":"Alec Sokolow","type":"Person","_key":"19195"} +{"label":"Ian Bohen","version":21,"id":"31362","lastModified":"1301901812000","name":"Ian Bohen","type":"Person","_key":"19196"} +{"label":"Candace Cameron Bure","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0eb\/4d06b9017b9aa11bc20030eb\/candace-cameron-bure-profile.jpg","version":25,"birthday":"197593200000","id":"31363","birthplace":"Panaroma City, California, USA","lastModified":"1301969702000","name":"Candace Cameron Bure","type":"Person","_key":"19197"} +{"label":"Sarah Douglas","version":29,"id":"31364","lastModified":"1301901572000","name":"Sarah Douglas","type":"Person","_key":"19198"} +{"label":"John Kassir","version":31,"id":"31365","lastModified":"1302062310000","name":"John Kassir","type":"Person","_key":"19199"} +{"label":"Bobby Pickett","version":25,"id":"31354","lastModified":"1301901766000","name":"Bobby Pickett","type":"Person","_key":"19200"} +{"label":"Jimmie Walker","version":22,"id":"31366","lastModified":"1301901553000","name":"Jimmie Walker","type":"Person","_key":"19201"} +{"label":"Anthony Crivello","version":25,"id":"31367","lastModified":"1301901845000","name":"Anthony Crivello","type":"Person","_key":"19202"} +{"label":"Deron McBee","version":21,"id":"31368","lastModified":"1301901622000","name":"Deron McBee","type":"Person","_key":"19203"} +{"label":"E. Aron Price","version":19,"id":"31369","lastModified":"1301901622000","name":"E. Aron Price","type":"Person","_key":"19204"} +{"label":"Mistress Frankenstein","description":"No overview found.","id":"3218","runtime":90,"imdbId":"tt0245291","version":67,"lastModified":"1301906769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78b\/4bc918c7017a3c57fe00978b\/mistress-frankenstein-mid.jpg","studio":"Seduction Cinema","genre":"Comedy","title":"Mistress Frankenstein","releaseDate":970444800000,"language":"en","type":"Movie","_key":"19205"} +{"label":"John Bacchus","version":102,"id":"31370","lastModified":"1301901408000","name":"John Bacchus","type":"Person","_key":"19206"} +{"label":"Darian Caine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/587\/4d7bebcd7b9aa11a10017587\/darian-caine-profile.jpg","version":69,"id":"31376","lastModified":"1301901574000","name":"Darian Caine","type":"Person","_key":"19207"} +{"label":"Victoria Vega","version":35,"id":"31378","lastModified":"1301901584000","name":"Victoria Vega","type":"Person","_key":"19208"} +{"label":"John Paul Fedele","version":85,"id":"31381","lastModified":"1301901503000","name":"John Paul Fedele","type":"Person","_key":"19209"} +{"label":"Michael R. Thomas","version":48,"id":"35641","lastModified":"1301901574000","name":"Michael R. Thomas","type":"Person","_key":"19210"} +{"label":"Bennigan Feeney","version":25,"id":"31382","lastModified":"1301901821000","name":"Bennigan Feeney","type":"Person","_key":"19211"} +{"label":"Debbie Rochon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/275\/4bf191a7017a3c320d000275\/debbie-rochon-profile.jpg","version":167,"id":"35579","lastModified":"1301901266000","name":"Debbie Rochon","type":"Person","_key":"19212"} +{"label":"Michael Raso","version":113,"id":"31373","lastModified":"1301901451000","name":"Michael Raso","type":"Person","_key":"19213"} +{"label":"Pete Jacelone","version":39,"id":"35612","lastModified":"1301901513000","name":"Pete Jacelone","type":"Person","_key":"19214"} +{"label":"Jeffrey Faoro","version":44,"id":"35578","lastModified":"1301901821000","name":"Jeffrey Faoro","type":"Person","_key":"19215"} +{"label":"Heidi Christine","version":31,"id":"31377","lastModified":"1301901821000","name":"Heidi Christine","type":"Person","_key":"19216"} +{"label":"Jessie Harcourt","version":24,"id":"31379","lastModified":"1301901812000","name":"Jessie Harcourt","type":"Person","_key":"19217"} +{"label":"Jade Duboir","version":38,"id":"31380","lastModified":"1301901458000","name":"Jade Duboir","type":"Person","_key":"19218"} +{"label":"Island - Insel im Norden","description":"No overview found.","id":"3286","runtime":15,"version":116,"lastModified":"1301417778000","genre":"Documentary","title":"Island - Insel im Norden","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19219"} +{"label":"It's Alive: The True Story of Frankenstein","description":"No overview found.","id":"3287","runtime":100,"imdbId":"tt0224299","version":43,"lastModified":"1301906756000","studio":"A&E Television Networks","genre":"Documentary","title":"It's Alive: The True Story of Frankenstein","releaseDate":757382400000,"language":"en","type":"Movie","_key":"19220"} +{"label":"Frankenstein: The College Years","description":"No overview found.","id":"3288","runtime":100,"imdbId":"tt0101911","version":78,"lastModified":"1301906756000","studio":"Spirit","genre":"Comedy","title":"Frankenstein: The College Years","releaseDate":688608000000,"language":"en","type":"Movie","_key":"19221"} +{"label":"William Ragsdale","version":26,"id":"31467","lastModified":"1301901499000","name":"William Ragsdale","type":"Person","_key":"19222"} +{"label":"Christopher Daniel Barnes","version":29,"id":"31468","lastModified":"1302063458000","name":"Christopher Daniel Barnes","type":"Person","_key":"19223"} +{"label":"Andrea Elson","version":20,"id":"31469","lastModified":"1301901679000","name":"Andrea Elson","type":"Person","_key":"19224"} +{"label":"De'voreaux White","version":18,"id":"31470","lastModified":"1301901682000","name":"De'voreaux White","type":"Person","_key":"19225"} +{"label":"Patrick Richwood","version":20,"id":"31471","lastModified":"1301901969000","name":"Patrick Richwood","type":"Person","_key":"19226"} +{"label":"Lust for Frankenstein","description":"No overview found.","id":"3290","runtime":82,"imdbId":"tt0175621","version":95,"lastModified":"1301906087000","genre":"Erotic","title":"Lust for Frankenstein","releaseDate":883612800000,"language":"en","type":"Movie","_key":"19227"} +{"label":"Anal\u00eda Ivars","version":27,"id":"102100","lastModified":"1301902319000","name":"Anal\u00eda Ivars","type":"Person","_key":"19228"} +{"label":"Amber Newman","version":29,"id":"31490","lastModified":"1301901789000","name":"Amber Newman","type":"Person","_key":"19229"} +{"label":"Carlos Subterfuge","version":19,"id":"31491","lastModified":"1301901744000","name":"Carlos Subterfuge","type":"Person","_key":"19230"} +{"label":"Robert King","version":29,"id":"31492","lastModified":"1301901821000","name":"Robert King","type":"Person","_key":"19231"} +{"label":"Rachel Sheppard","version":25,"id":"31494","lastModified":"1301901458000","name":"Rachel Sheppard","type":"Person","_key":"19232"} +{"label":"Pedro Temboury","version":30,"id":"31495","lastModified":"1301901586000","name":"Pedro Temboury","type":"Person","_key":"19233"} +{"label":"Bill Meelater","version":19,"id":"31496","lastModified":"1301901622000","name":"Bill Meelater","type":"Person","_key":"19234"} +{"label":"Alex Cox","version":9,"id":"226512","lastModified":"1301904015000","name":"Alex Cox","type":"Person","_key":"19235"} +{"label":"Good Night, and Good Luck","description":"Taking place during the early days of broadcast journalism in 1950's America, a chronicle of the real-life conflict between television news man Edward R. Murrow and Senator Joseph McCarthy and the House Un-American Activities Committee.","id":"3291","runtime":93,"imdbId":"tt0433383","homepage":"http:\/\/wip.warnerbros.com\/goodnightgoodluck\/","version":538,"lastModified":"1301903661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c0\/4bc918d0017a3c57fe0097c0\/good-night-and-good-luck-mid.jpg","studio":"Warner Independent Pictures","genre":"Documentary","title":"Good Night, and Good Luck","releaseDate":1104537600000,"language":"en","tagline":"They took on the Government with nothing but the truth.","type":"Movie","_key":"19236"} +{"label":"Rose Abdoo","version":21,"id":"31507","lastModified":"1301901382000","name":"Rose Abdoo","type":"Person","_key":"19237"} +{"label":"Reed Diamond","version":32,"id":"31508","lastModified":"1301901559000","name":"Reed Diamond","type":"Person","_key":"19238"} +{"label":"Helen Slayton-Hughes","version":22,"id":"31510","lastModified":"1301901338000","name":"Helen Slayton-Hughes","type":"Person","_key":"19239"} +{"label":"Grant Heslov","version":75,"id":"31511","lastModified":"1301901277000","name":"Grant Heslov","type":"Person","_key":"19240"} +{"label":"Robert John Burke","version":46,"id":"31512","lastModified":"1301916267000","name":"Robert John Burke","type":"Person","_key":"19241"} +{"label":"Dianne Reeves","version":21,"id":"31513","lastModified":"1301901431000","name":"Dianne Reeves","type":"Person","_key":"19242"} +{"label":"Peter Jacobson","version":25,"id":"31514","lastModified":"1301901343000","name":"Peter Jacobson","type":"Person","_key":"19243"} +{"label":"Tulse Luper","description":"No overview found.","id":"3292","version":37,"lastModified":"1301906503000","title":"Tulse Luper","language":"en","type":"Movie","_key":"19244"} +{"label":"Pirates of Silicon Valley","description":"This film is the semi-humorous documentary about the men who made the world of technology what it is today, their struggles during college, the founding of their companies, and the ingenious actions they took to build up the global corporate empires of Apple Computer Inc. and Microsoft Corporation.","id":"3293","runtime":93,"imdbId":"tt0168122","trailer":"http:\/\/www.youtube.com\/watch?v=ZNQk-s6BMH8","homepage":"http:\/\/alt.tnt.tv\/movies\/tntoriginals\/pirates\/frame_index.htm","version":604,"lastModified":"1301906349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/629\/4d55da657b9aa15d01001629\/pirates-of-silicon-valley-mid.jpg","studio":"Haft Entertainment","genre":"Documentary","title":"Pirates of Silicon Valley","releaseDate":929836800000,"language":"en","type":"Movie","_key":"19245"} +{"label":"J.G. Hertzler","version":26,"id":"31527","lastModified":"1301901438000","name":"J.G. Hertzler","type":"Person","_key":"19246"} +{"label":"Wayne P\u00e9re","version":26,"id":"31528","lastModified":"1301901687000","name":"Wayne P\u00e9re","type":"Person","_key":"19247"} +{"label":"Sheila Shaw","version":26,"id":"31529","lastModified":"1301901581000","name":"Sheila Shaw","type":"Person","_key":"19248"} +{"label":"Gema Zamprogna","version":25,"id":"31530","lastModified":"1301901766000","name":"Gema Zamprogna","type":"Person","_key":"19249"} +{"label":"John Di Maggio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1dd\/4bf98551017a3c70360001dd\/john-di-maggio-profile.jpg","biography":"John William DiMaggio (born September 6, 1968) is an American voice actor. A native of North Plainfield, New Jersey,[1], he is known for his gruff, deep voice and New Jersey accent, which he uses to voice mainly villains and anti-heroes. He is best known for his voice roles of Bender in Futurama, Dr. Drakken and Motor Ed in Kim Possible, Marcus Fenix in Gears of War and Gears of War 2, Rico in the Penguins of Madagascar series, and Wakka as well as Kimahri Ronso in Final Fantasy X. He now part","version":120,"id":"31531","lastModified":"1301901171000","name":"John Di Maggio","type":"Person","_key":"19250"} +{"label":"Josh Hopkins","version":40,"id":"31532","lastModified":"1301901565000","name":"Josh Hopkins","type":"Person","_key":"19251"} +{"label":"Allan Kolman","version":31,"id":"31533","lastModified":"1301901766000","name":"Allan Kolman","type":"Person","_key":"19252"} +{"label":"Marcus Giamatti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/069\/4d97b34e7b9aa119a0005069\/marcus-giamatti-profile.jpg","version":36,"id":"31534","lastModified":"1301901839000","name":"Marcus Giamatti","type":"Person","_key":"19253"} +{"label":"Melissa Suzanne McBride","version":26,"id":"31535","lastModified":"1301901513000","name":"Melissa Suzanne McBride","type":"Person","_key":"19254"} +{"label":"Marc Worden","version":34,"id":"31536","lastModified":"1301901256000","name":"Marc Worden","type":"Person","_key":"19255"} +{"label":"Martyn Burke","version":39,"id":"15872","lastModified":"1301901349000","name":"Martyn Burke","type":"Person","_key":"19256"} +{"label":"Band of Brothers","description":"This is the story of \"E\" Easy Company, 506th Regiment of the 101st Airborne Division from their initial training starting in 1942 to the end of World War II. They parachuted behind enemy lines in the early hours of D-Day in support of the landings at Utah beach, participated in the liberation of Carentan and again parachuted into action during Operation Market Garden. They also liberated a concentration camp and were the first to enter Hitler's mountain retreat in Berchtesgarten. A fascinating t","id":"3294","imdbId":"tt0185906","homepage":"http:\/\/www.hbo.com\/band\/","version":927,"lastModified":"1301901325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/809\/4bc918db017a3c57fe009809\/band-of-brothers-mid.jpg","title":"Band of Brothers","language":"en","type":"Movie","_key":"19257"} +{"label":"Currahee","description":"Easy Company is introduced to Captain Sobel, who has the group undergo hard and unfair training. As a result, Sobel comes into conflict with his men, including Richard Winters, his executive officer. The company is shipped to England to prepare for D-Day. After displaying a lack of leadership ability in the field, Sobel is reassigned. ","id":"3295","runtime":1,"imdbId":"tt1245384","version":72,"lastModified":"1301902658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81a\/4bc918dc017a3c57fe00981a\/currahee-mid.jpg","genre":"History","title":"Currahee","releaseDate":999993600000,"language":"en","type":"Movie","_key":"19258"} +{"label":"Shane Taylor","version":40,"id":"126429","lastModified":"1301901696000","name":"Shane Taylor","type":"Person","_key":"19259"} +{"label":"Peter Youngblood Hills","version":32,"id":"126430","lastModified":"1301902591000","name":"Peter Youngblood Hills","type":"Person","_key":"19260"} +{"label":"Rick Warden","version":22,"id":"126434","lastModified":"1301902591000","name":"Rick Warden","type":"Person","_key":"19261"} +{"label":"Ross McCall","version":28,"id":"56366","lastModified":"1301901278000","name":"Ross McCall","type":"Person","_key":"19262"} +{"label":"Day Of Days","description":"Easy Company lands in Normandy, scattered all across and away from their drop zone. 1st Lt. Meehan, commander of Easy, is killed when his plane suffers a direct hit and 1st Lt. Winters must take command. With a small group of men, Winters takes out a set of guns at Br\u00e9court and thereby wins the respect of his fellow soldiers as a leader.","id":"3296","runtime":0,"imdbId":"tt1247465","version":469,"lastModified":"1301905379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/827\/4bc918dd017a3c57fe009827\/day-of-days-mid.jpg","genre":"History","title":"Day Of Days","releaseDate":999993600000,"language":"en","type":"Movie","_key":"19263"} +{"label":"Richard Loncraine","version":45,"id":"33315","lastModified":"1301901275000","name":"Richard Loncraine","type":"Person","_key":"19264"} +{"label":"Carentan","description":"Easy Company are sent to liberate the French village of Carentan, where they lose several men in heavy fighting. The episode focuses on Private Albert Blithe, who struggles with crippling anxiety following the battle.","id":"3297","runtime":0,"imdbId":"tt1247463","version":39,"lastModified":"1301905720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/839\/4bc918dd017a3c57fe009839\/carentan-mid.jpg","genre":"History","title":"Carentan","releaseDate":1000598400000,"language":"en","type":"Movie","_key":"19265"} +{"label":"Mikael Salomon","version":67,"id":"30149","lastModified":"1301901287000","name":"Mikael Salomon","type":"Person","_key":"19266"} +{"label":"Replacements","description":"New characters are introduced when replacements join Easy Company, who struggle to be accepted by the veterans who fought at Normandy. The Company is sent to parachute into and fight in the Netherlands as part of Operation Market Garden, where they liberate Eindhoven. During combat in Nuenen, the replacements integrate themselves with the Company, but the Company is forced to retreat.","id":"3298","runtime":0,"imdbId":"tt1247467","version":406,"lastModified":"1301903318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/846\/4bc918de017a3c57fe009846\/band-of-brothers-replacements-mid.jpg","genre":"History","title":"Replacements","releaseDate":1001203200000,"language":"en","type":"Movie","_key":"19267"} +{"label":"David Nutter","version":35,"id":"33316","lastModified":"1301901821000","name":"David Nutter","type":"Person","_key":"19268"} +{"label":"Crossroads","description":"Winters writes a report on the challenge of an unexpected resistance to a German attack, and is haunted by his conscience after shooting a teenage German soldier; this flashback occurs several times in later episodes. Operation Pegasus is depicted. Easy Company is called to Bastogne to repel the sudden German counterattack. ","id":"3299","runtime":0,"imdbId":"tt1247464","homepage":"http:\/\/www.hbo.com\/band\/","version":516,"lastModified":"1301904069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/853\/4bc918df017a3c57fe009853\/crossroads-mid.jpg","genre":"Comedy","title":"Crossroads","releaseDate":1001808000000,"language":"en","type":"Movie","_key":"19269"} +{"label":"Bastogne","description":"Easy Company experiences the Battle of the Bulge and have to hold ground near Bastogne while running low on ammunition and other supplies. The episode focuses on medic Eugene \"Doc\" Roe as he helps out his fellow soldiers where he can, while also scrounging for medical supplies, of which the Company is dangerously low.","id":"3300","runtime":0,"imdbId":"tt1247462","version":56,"lastModified":"1301905717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/860\/4bc918df017a3c57fe009860\/bastogne-mid.jpg","genre":"History","title":"Bastogne","releaseDate":1002412800000,"language":"en","type":"Movie","_key":"19270"} +{"label":"David Leland","version":29,"id":"33317","lastModified":"1301901425000","name":"David Leland","type":"Person","_key":"19271"} +{"label":"The Breaking Point","description":"Easy Company battles near Foy, Belgium, losing numerous men. In the episode, the actions of 1st Lt. Norman Dike, the Company's commander, are examined and questioned. He is eventually relieved by 1st Lt. Ronald Speirs, who becomes the Company's new leader. Serving as narrator is 1st Sgt.","id":"3301","runtime":0,"imdbId":"tt1247468","version":72,"lastModified":"1301904961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86d\/4bc918e0017a3c57fe00986d\/the-breaking-point-mid.jpg","genre":"History","title":"The Breaking Point","releaseDate":1003017600000,"language":"en","type":"Movie","_key":"19272"} +{"label":"The Last Patrol","description":"Easy Company carries out a dangerous mission in Haguenau as David Webster (who narrates this episode) returns from a hospital. Together with new replacement 2nd Lt. Jones, he eventually (re)integrates with the other soldiers, whose experiences at Bastogne have made them weary and closed off from Webster due to the fact he didn't try to leave hospital early unlike other soldiers in the company.","id":"3302","runtime":0,"imdbId":"tt1247469","version":100,"lastModified":"1301905091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87a\/4bc918e3017a3c57fe00987a\/the-last-patrol-mid.jpg","genre":"History","title":"The Last Patrol","releaseDate":1003622400000,"language":"en","type":"Movie","_key":"19273"} +{"label":"Tony To","version":23,"id":"33318","lastModified":"1301902008000","name":"Tony To","type":"Person","_key":"19274"} +{"label":"Why We Fight","description":"As Nixon battles alcoholism, Easy Company enters Germany. A concentration camp near Landsberg is discovered by a patrol. This site leaves many soldiers both shocked and disgusted at what they're witnessing at the hands of the Nazis. The episode was based on the liberation of Kaufering IV in the area of Hurlach. ","id":"3303","runtime":98,"imdbId":"tt1247470","version":243,"lastModified":"1301905651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/887\/4bc918e4017a3c57fe009887\/why-we-fight-mid.jpg","genre":"History","title":"Why We Fight","releaseDate":1004227200000,"language":"en","type":"Movie","_key":"19275"} +{"label":"Points","description":"The company captures Eagle's Nest in Berchtesgaden, and also discover Hitler and Goering's large supply of liquor. The end of the war is announced. While those with enough points go home, the remainder of Easy Company stays behind until the end of the Pacific War is declared. ","id":"3304","runtime":0,"imdbId":"tt1247466","version":80,"lastModified":"1301906757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/894\/4bc918e4017a3c57fe009894\/points-mid.jpg","genre":"History","title":"Points","releaseDate":1004832000000,"language":"en","type":"Movie","_key":"19276"} +{"label":"Frankenstein: A Cinematic Scrapbook","description":"No overview found.","id":"3305","runtime":60,"imdbId":"tt0150633","version":45,"lastModified":"1301907428000","genre":"Documentary","title":"Frankenstein: A Cinematic Scrapbook","releaseDate":662688000000,"language":"en","type":"Movie","_key":"19277"} +{"label":"Frankenstein '80","description":"No overview found.","id":"3306","runtime":85,"imdbId":"tt0071518","version":92,"lastModified":"1301907275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/899\/4bc918e4017a3c57fe009899\/frankenstein-80-mid.jpg","studio":"M.G.D. Film","genre":"Horror","title":"Frankenstein '80","releaseDate":92966400000,"language":"en","type":"Movie","_key":"19278"} +{"label":"Mario Mancini","version":22,"id":"30893","lastModified":"1301901977000","name":"Mario Mancini","type":"Person","_key":"19279"} +{"label":"John Richardson","version":31,"id":"31545","lastModified":"1301901294000","name":"John Richardson","type":"Person","_key":"19280"} +{"label":"Renato Romano","version":26,"id":"31546","lastModified":"1301901822000","name":"Renato Romano","type":"Person","_key":"19281"} +{"label":"Roberto Fizz","version":17,"id":"103630","lastModified":"1301903058000","name":"Roberto Fizz","type":"Person","_key":"19282"} +{"label":"Mildred Pierce","description":"After her cheating husband leaves her, Mildred Pierce proves she can become independent and successful, but can't win the approval of her spoiled daughter.","id":"3309","runtime":111,"imdbId":"tt0037913","trailer":"http:\/\/www.youtube.com\/watch?v=K4h4HZWSPUc","version":248,"lastModified":"1301902724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a2\/4bc918e5017a3c57fe0098a2\/mildred-pierce-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Mildred Pierce","releaseDate":-765936000000,"language":"en","tagline":"A mother's love leads to murder","type":"Movie","_key":"19283"} +{"label":"Joan Crawford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c5\/4bd5ed3f017a3c65860000c5\/joan-crawford-profile.jpg","version":58,"id":"31550","lastModified":"1301901171000","name":"Joan Crawford","type":"Person","_key":"19284"} +{"label":"Zachary Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4bcc8f81017a3c0f2600015c\/zachary-scott-profile.jpg","version":38,"id":"31551","lastModified":"1301901359000","name":"Zachary Scott","type":"Person","_key":"19285"} +{"label":"Ann Blyth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d1\/4c9a13087b9aa122de0004d1\/ann-blyth-profile.jpg","version":26,"id":"31844","lastModified":"1301901857000","name":"Ann Blyth","type":"Person","_key":"19286"} +{"label":"Veda Ann Borg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32e\/4c9a0fbc7b9aa1275800032e\/veda-ann-borg-profile.jpg","version":28,"id":"22948","lastModified":"1301901279000","name":"Veda Ann Borg","type":"Person","_key":"19287"} +{"label":"Jo Ann Marlowe","version":18,"id":"21682","lastModified":"1301901928000","name":"Jo Ann Marlowe","type":"Person","_key":"19288"} +{"label":"Edison's Frankenstein","description":"No overview found.","id":"3343","runtime":19,"imdbId":"tt0309554","version":45,"lastModified":"1301908632000","studio":"Mooncycle Pictures","genre":"Drama","title":"Edison's Frankenstein","releaseDate":631152000000,"language":"en","type":"Movie","_key":"19289"} +{"label":"Robert David","version":23,"id":"31552","lastModified":"1301901572000","name":"Robert David","type":"Person","_key":"19290"} +{"label":"John Golden","version":20,"id":"31557","lastModified":"1301901800000","name":"John Golden","type":"Person","_key":"19291"} +{"label":"Mary Ann Curto","version":20,"id":"31558","lastModified":"1301901665000","name":"Mary Ann Curto","type":"Person","_key":"19292"} +{"label":"David Paulson","version":20,"id":"31559","lastModified":"1301901799000","name":"David Paulson","type":"Person","_key":"19293"} +{"label":"B.J. Cearley","version":18,"id":"31560","lastModified":"1301901674000","name":"B.J. Cearley","type":"Person","_key":"19294"} +{"label":"Atomic Samurai","description":"No overview found.","id":"3344","runtime":104,"imdbId":"tt0106316","version":45,"lastModified":"1301905341000","studio":"No Mercy Productions","genre":"Action","title":"Atomic Samurai","releaseDate":725846400000,"language":"en","type":"Movie","_key":"19295"} +{"label":"Scott Shaw","version":53,"id":"31561","lastModified":"1301901499000","name":"Scott Shaw","type":"Person","_key":"19296"} +{"label":"Kenneth H. Kim","version":21,"id":"31562","lastModified":"1301902008000","name":"Kenneth H. Kim","type":"Person","_key":"19297"} +{"label":"Kimberly Bolin","version":20,"id":"31567","lastModified":"1301901584000","name":"Kimberly Bolin","type":"Person","_key":"19298"} +{"label":"Douglas Robert Jackson","version":20,"id":"31568","lastModified":"1301902008000","name":"Douglas Robert Jackson","type":"Person","_key":"19299"} +{"label":"Roger Ellis","version":21,"id":"31569","lastModified":"1301901969000","name":"Roger Ellis","type":"Person","_key":"19300"} +{"label":"Jane Oshita","version":20,"id":"31570","lastModified":"1301901969000","name":"Jane Oshita","type":"Person","_key":"19301"} +{"label":"Bix Jordan","version":20,"id":"31571","lastModified":"1301902007000","name":"Bix Jordan","type":"Person","_key":"19302"} +{"label":"Terry Ringer","version":20,"id":"31572","lastModified":"1301901969000","name":"Terry Ringer","type":"Person","_key":"19303"} +{"label":"Flick","description":"No overview found.","id":"3345","runtime":83,"imdbId":"tt0202358","version":79,"lastModified":"1301906768000","genre":"Horror","title":"Flick","releaseDate":23760000000,"language":"en","type":"Movie","_key":"19304"} +{"label":"Gilbert W. Taylor","version":21,"id":"31573","lastModified":"1301901995000","name":"Gilbert W. Taylor","type":"Person","_key":"19305"} +{"label":"Robin Ward","version":21,"id":"31581","lastModified":"1301901978000","name":"Robin Ward","type":"Person","_key":"19306"} +{"label":"Kathleen Sawyer","version":20,"id":"31582","lastModified":"1301901978000","name":"Kathleen Sawyer","type":"Person","_key":"19307"} +{"label":"Ty Haller","version":20,"id":"31583","lastModified":"1301902033000","name":"Ty Haller","type":"Person","_key":"19308"} +{"label":"Tony Moffat-Lynch","version":20,"id":"31584","lastModified":"1301902024000","name":"Tony Moffat-Lynch","type":"Person","_key":"19309"} +{"label":"Stephanie Laird","version":20,"id":"31585","lastModified":"1301901978000","name":"Stephanie Laird","type":"Person","_key":"19310"} +{"label":"Ken Hagan","version":20,"id":"31586","lastModified":"1301901978000","name":"Ken Hagan","type":"Person","_key":"19311"} +{"label":"Frankestein el vampiro y compa\u00f1\u00eda","description":"No overview found.","id":"3346","runtime":76,"imdbId":"tt0054893","version":64,"lastModified":"1301907288000","studio":"Cinematogr\u00e1fica Calder\u00f3n","genre":"Comedy","title":"Frankestein el vampiro y compa\u00f1\u00eda","releaseDate":-249177600000,"language":"en","type":"Movie","_key":"19312"} +{"label":"Benito Alazraki","version":20,"id":"31587","lastModified":"1301901679000","name":"Benito Alazraki","type":"Person","_key":"19313"} +{"label":"Manuel 'Loco' Vald\u00e9s","version":18,"id":"31592","lastModified":"1301901530000","name":"Manuel 'Loco' Vald\u00e9s","type":"Person","_key":"19314"} +{"label":"Martha Elena Cervantes","version":18,"id":"31593","lastModified":"1301901690000","name":"Martha Elena Cervantes","type":"Person","_key":"19315"} +{"label":"Nora Very\u00e1n","version":18,"id":"31594","lastModified":"1301902008000","name":"Nora Very\u00e1n","type":"Person","_key":"19316"} +{"label":"Roberto G. Rivera","version":18,"id":"31595","lastModified":"1301902008000","name":"Roberto G. Rivera","type":"Person","_key":"19317"} +{"label":"Jos\u00e9 Jasso","version":18,"id":"31596","lastModified":"1301901674000","name":"Jos\u00e9 Jasso","type":"Person","_key":"19318"} +{"label":"Joaqu\u00edn Garc\u00eda Vargas","version":18,"id":"31597","lastModified":"1301901674000","name":"Joaqu\u00edn Garc\u00eda Vargas","type":"Person","_key":"19319"} +{"label":"Quint\u00edn Bulnes","version":18,"id":"31598","lastModified":"1301901580000","name":"Quint\u00edn Bulnes","type":"Person","_key":"19320"} +{"label":"Antonio Bravo","version":20,"id":"31599","lastModified":"1301901541000","name":"Antonio Bravo","type":"Person","_key":"19321"} +{"label":"Jorge Mondrag\u00f3n","version":18,"id":"31600","lastModified":"1301901813000","name":"Jorge Mondrag\u00f3n","type":"Person","_key":"19322"} +{"label":"Juli\u00e1n de Meriche","version":18,"id":"31601","lastModified":"1301901995000","name":"Juli\u00e1n de Meriche","type":"Person","_key":"19323"} +{"label":"Alberto Villanueva","version":19,"id":"31602","lastModified":"1301901622000","name":"Alberto Villanueva","type":"Person","_key":"19324"} +{"label":"Frankenstein all'italiana","description":"No overview found.","id":"3347","runtime":89,"imdbId":"tt0076051","version":51,"lastModified":"1301905717000","studio":"Euro International Films","genre":"Comedy","title":"Frankenstein all'italiana","releaseDate":185846400000,"language":"en","type":"Movie","_key":"19325"} +{"label":"Armando Crispino","version":20,"id":"31603","lastModified":"1301901569000","name":"Armando Crispino","type":"Person","_key":"19326"} +{"label":"Jenny Tamburi","version":22,"id":"31612","lastModified":"1301901806000","name":"Jenny Tamburi","type":"Person","_key":"19327"} +{"label":"Lorenza Guerrieri","version":21,"id":"31613","lastModified":"1301901569000","name":"Lorenza Guerrieri","type":"Person","_key":"19328"} +{"label":"Anna Mazzamauro","version":31,"id":"31614","lastModified":"1301901795000","name":"Anna Mazzamauro","type":"Person","_key":"19329"} +{"label":"The Making of Frankenstein vs. the Creature from Blood Cove","description":"No overview found.","id":"3348","runtime":30,"imdbId":"tt0880617","version":44,"lastModified":"1301907428000","genre":"Documentary","title":"The Making of Frankenstein vs. the Creature from Blood Cove","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19330"} +{"label":"John Abiskaron","version":20,"id":"31615","lastModified":"1301901820000","name":"John Abiskaron","type":"Person","_key":"19331"} +{"label":"Michael Anton","version":20,"id":"31616","lastModified":"1301901696000","name":"Michael Anton","type":"Person","_key":"19332"} +{"label":"Tera Cooley","version":20,"id":"31617","lastModified":"1301901696000","name":"Tera Cooley","type":"Person","_key":"19333"} +{"label":"Rich Knight","version":18,"id":"31618","lastModified":"1301901674000","name":"Rich Knight","type":"Person","_key":"19334"} +{"label":"Lisa Hammer","version":20,"id":"31619","lastModified":"1301901969000","name":"Lisa Hammer","type":"Person","_key":"19335"} +{"label":"Carla Harvey","version":20,"id":"31620","lastModified":"1301901969000","name":"Carla Harvey","type":"Person","_key":"19336"} +{"label":"Frankenstein & the Werewolf Reborn!","description":"No overview found.","id":"3349","runtime":92,"imdbId":"tt0267506","version":44,"lastModified":"1301906699000","genre":"Horror","title":"Frankenstein & the Werewolf Reborn!","releaseDate":946684800000,"language":"en","type":"Movie","_key":"19337"} +{"label":"David DeCoteau","version":55,"id":"97618","lastModified":"1301901801000","name":"David DeCoteau","type":"Person","_key":"19338"} +{"label":"Jeff Burr","version":34,"id":"31621","lastModified":"1301901353000","name":"Jeff Burr","type":"Person","_key":"19339"} +{"label":"Frankenstein Reborn!","description":"No overview found.","id":"3350","runtime":79,"imdbId":"tt0174658","version":79,"lastModified":"1301906768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a7\/4bc918e5017a3c57fe0098a7\/frankenstein-reborn-mid.jpg","studio":"Full Moon Pictures","genre":"Horror","title":"Frankenstein Reborn!","releaseDate":883612800000,"language":"en","type":"Movie","_key":"19340"} +{"label":"Ben Gould","version":20,"id":"31634","lastModified":"1301901821000","name":"Ben Gould","type":"Person","_key":"19341"} +{"label":"Haven Burton","version":20,"id":"31635","lastModified":"1301901820000","name":"Haven Burton","type":"Person","_key":"19342"} +{"label":"Ethan Wilde","version":20,"id":"31636","lastModified":"1301901573000","name":"Ethan Wilde","type":"Person","_key":"19343"} +{"label":"George Calin","version":20,"id":"31637","lastModified":"1301901666000","name":"George Calin","type":"Person","_key":"19344"} +{"label":"Oana Stefanescu","version":20,"id":"31638","lastModified":"1301901801000","name":"Oana Stefanescu","type":"Person","_key":"19345"} +{"label":"Claudiu Trandafir","version":20,"id":"31639","lastModified":"1301901801000","name":"Claudiu Trandafir","type":"Person","_key":"19346"} +{"label":"Roxana Popa","version":20,"id":"31640","lastModified":"1301901801000","name":"Roxana Popa","type":"Person","_key":"19347"} +{"label":"Frankenstein Reborn: Behind the Scenes","description":"No overview found.","id":"3351","runtime":13,"imdbId":"tt0856201","version":46,"lastModified":"1301907429000","studio":"The Global Asylum","genre":"Documentary","title":"Frankenstein Reborn: Behind the Scenes","releaseDate":1125360000000,"language":"en","type":"Movie","_key":"19348"} +{"label":"Steven C. Miller","version":22,"id":"30058","lastModified":"1301902159000","name":"Steven C. Miller","type":"Person","_key":"19349"} +{"label":"Kurt Altschwager","version":21,"id":"30060","lastModified":"1301902159000","name":"Kurt Altschwager","type":"Person","_key":"19350"} +{"label":"Video Kings","description":"Flo und sein Kumpel Hotte arbeiten in der mies gehenden Neuk\u00f6llner Videothek Video K\u00f6nig. Kein Wunder, denn Hotte gl\u00e4nzt mit null Filmwissen, und Flo muss mit damit fertig werden, von seiner Freundin verlassen worden zu sein. Die beiden Ungl\u00fccksv\u00f6gel lassen sich vom Kiez-Gauner Bernhardt abzocken, von Schl\u00e4gern die Fresse polieren und Inkasso-Unternehmen drangsalieren. Ein Gl\u00fcck, dass f\u00fcr Flo wenigstens wieder die Liebe in Form von Nachbarin Ramona lacht, auch wenn diese m\u00f6glicherweise eine Pros","id":"3361","runtime":94,"imdbId":"tt0424539","homepage":"http:\/\/www.videokings.de\/","version":156,"lastModified":"1301906354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4d48746e7b9aa13d9f0002dc\/video-kings-mid.jpg","studio":"Madhouse Pictures","genre":"Comedy","title":"Video Kings","releaseDate":1189036800000,"language":"en","type":"Movie","_key":"19351"} +{"label":"Daniel Acht","version":22,"id":"31845","lastModified":"1301901666000","name":"Daniel Acht","type":"Person","_key":"19352"} +{"label":"Ali Eckert","version":18,"id":"22986","lastModified":"1301901978000","name":"Ali Eckert","type":"Person","_key":"19353"} +{"label":"Hendrik Arnst","version":20,"id":"31846","lastModified":"1301901688000","name":"Hendrik Arnst","type":"Person","_key":"19354"} +{"label":"Carolina Vera Squella","version":18,"id":"31847","lastModified":"1301901413000","name":"Carolina Vera Squella","type":"Person","_key":"19355"} +{"label":"Thomas Schmidt","version":20,"id":"31848","lastModified":"1301902008000","name":"Thomas Schmidt","type":"Person","_key":"19356"} +{"label":"Gerd Knebel","version":27,"id":"32252","lastModified":"1301901573000","name":"Gerd Knebel","type":"Person","_key":"19357"} +{"label":"Henni Nachtsheim","version":27,"id":"32253","lastModified":"1301901801000","name":"Henni Nachtsheim","type":"Person","_key":"19358"} +{"label":"Steffen Wink","version":32,"id":"32254","lastModified":"1301901666000","name":"Steffen Wink","type":"Person","_key":"19359"} +{"label":"The Yes Men","description":"The Yes Men claim the website GATT.org and pretend to represent the World Trade Organisation (WTO). The documentary follows them as they give presentations on various locations.","id":"3396","runtime":80,"imdbId":"tt0379593","trailer":"http:\/\/www.youtube.com\/watch?v=fJ3WOtHS-D8","homepage":"http:\/\/www.theyesmen.org\/","version":132,"lastModified":"1301903821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b4\/4bc918e6017a3c57fe0098b4\/the-yes-men-mid.jpg","studio":"Yes Men Films LLC","genre":"Documentary","title":"The Yes Men","releaseDate":1062892800000,"language":"en","type":"Movie","_key":"19360"} +{"label":"Dan Ollman","version":20,"id":"31652","lastModified":"1301901458000","name":"Dan Ollman","type":"Person","_key":"19361"} +{"label":"Sarah Price","version":20,"id":"31653","lastModified":"1301901541000","name":"Sarah Price","type":"Person","_key":"19362"} +{"label":"Chris Smith","version":21,"id":"31654","lastModified":"1301901779000","name":"Chris Smith","type":"Person","_key":"19363"} +{"label":"Mike Bonanno","version":25,"id":"31655","lastModified":"1301901478000","name":"Mike Bonanno","type":"Person","_key":"19364"} +{"label":"Andy Bichlbaum","version":26,"id":"31656","lastModified":"1301901622000","name":"Andy Bichlbaum","type":"Person","_key":"19365"} +{"label":"Patrick Lichty","version":20,"id":"31657","lastModified":"1301901513000","name":"Patrick Lichty","type":"Person","_key":"19366"} +{"label":"Sal Salamone","version":19,"id":"31658","lastModified":"1301901622000","name":"Sal Salamone","type":"Person","_key":"19367"} +{"label":"Phil Bayly","version":19,"id":"31659","lastModified":"1301901478000","name":"Phil Bayly","type":"Person","_key":"19368"} +{"label":"Philip De Lorenzo","version":19,"id":"31660","lastModified":"1301901622000","name":"Philip De Lorenzo","type":"Person","_key":"19369"} +{"label":"Greg Palast","version":21,"id":"31661","lastModified":"1301901644000","name":"Greg Palast","type":"Person","_key":"19370"} +{"label":"Am Ende Kommen Touristen","description":"Sven arrives in nowadays Auschwitz to do his civil service at the memorial. He encounters unfriendliness, especially by Stanislaw Krzeminski, the 85 year old KZ-survivor, and Krzysztof Lanuszewski, brother of his early love affair Ania. Even his boss Herold, the places manager, does little to help Sven familiarize. But when problems accumulate Sven realises that he already has become involved.","id":"3397","runtime":85,"imdbId":"tt0775417","version":188,"lastModified":"1301905287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e2\/4d3dc5d65e73d672970000e2\/am-ende-kommen-touristen-mid.jpg","studio":"23\/5 Filmproduktion","genre":"Drama","title":"Am Ende Kommen Touristen","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"19371"} +{"label":"Robert Thalheim","version":25,"id":"31662","lastModified":"1301901350000","name":"Robert Thalheim","type":"Person","_key":"19372"} +{"label":"Ryszard Ronczewski","version":19,"id":"31664","lastModified":"1301901431000","name":"Ryszard Ronczewski","type":"Person","_key":"19373"} +{"label":"Barbara Wysocka","version":19,"id":"31665","lastModified":"1301901431000","name":"Barbara Wysocka","type":"Person","_key":"19374"} +{"label":"Piotr Rogucki","version":19,"id":"31666","lastModified":"1301901478000","name":"Piotr Rogucki","type":"Person","_key":"19375"} +{"label":"Lutz Blochberger","version":22,"id":"31667","lastModified":"1301901563000","name":"Lutz Blochberger","type":"Person","_key":"19376"} +{"label":"Rich and Scary: Independent Soap Movie Experience","description":"No overview found.","id":"3398","runtime":88,"imdbId":"tt1055308","version":37,"lastModified":"1301906756000","studio":"J\u00fcrgen Br\u00fcning Filmproduktion","title":"Rich and Scary: Independent Soap Movie Experience","releaseDate":1066262400000,"language":"en","type":"Movie","_key":"19377"} +{"label":"Ingo Heise","version":34,"id":"31678","lastModified":"1301901569000","name":"Ingo Heise","type":"Person","_key":"19378"} +{"label":"Kristina Bischoff","version":21,"id":"31679","lastModified":"1301901679000","name":"Kristina Bischoff","type":"Person","_key":"19379"} +{"label":"Clarissa Oktavia","version":20,"id":"31680","lastModified":"1301901679000","name":"Clarissa Oktavia","type":"Person","_key":"19380"} +{"label":"Isabelle Stoffel","version":20,"id":"31681","lastModified":"1301901969000","name":"Isabelle Stoffel","type":"Person","_key":"19381"} +{"label":"Sinta Tamsjadi","version":22,"id":"31682","lastModified":"1301901569000","name":"Sinta Tamsjadi","type":"Person","_key":"19382"} +{"label":"L\u00fccken im Gedankenstrom","description":"No overview found.","id":"3399","runtime":10,"imdbId":"tt0977614","version":36,"lastModified":"1301906756000","genre":"Drama","title":"L\u00fccken im Gedankenstrom","releaseDate":1139184000000,"language":"en","type":"Movie","_key":"19383"} +{"label":"Julius Weiland","version":21,"id":"31683","lastModified":"1301901499000","name":"Julius Weiland","type":"Person","_key":"19384"} +{"label":"Hei\u00dfes Blut oder Vivienne del Vargos' letzter Vorhang","description":"No overview found.","id":"3400","runtime":60,"imdbId":"tt0950695","homepage":"http:\/\/www.ingolinosuperstars.com","version":41,"lastModified":"1301906756000","genre":"Horror","title":"Hei\u00dfes Blut oder Vivienne del Vargos' letzter Vorhang","releaseDate":1139184000000,"language":"en","type":"Movie","_key":"19385"} +{"label":"Ades Zabel","version":20,"id":"31690","lastModified":"1301902007000","name":"Ades Zabel","type":"Person","_key":"19386"} +{"label":"Stefan Kuschner","version":20,"id":"31691","lastModified":"1301901821000","name":"Stefan Kuschner","type":"Person","_key":"19387"} +{"label":"Gerome Castell","version":20,"id":"31692","lastModified":"1301901794000","name":"Gerome Castell","type":"Person","_key":"19388"} +{"label":"Ichgola Androgyn","version":22,"id":"31693","lastModified":"1301901499000","name":"Ichgola Androgyn","type":"Person","_key":"19389"} +{"label":"Scenes from the Sex Struggles at North Beverly Drive, Los Angeles, CA (Remix)","description":"No overview found.","id":"3401","runtime":62,"imdbId":"tt1181931","homepage":"http:\/\/www.ingolinosuperstars.com","version":30,"lastModified":"1301419669000","title":"Scenes from the Sex Struggles at North Beverly Drive, Los Angeles, CA (Remix)","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"19390"} +{"label":"Marta","description":"No overview found.","id":"3402","runtime":96,"imdbId":"tt0067010","version":77,"lastModified":"1301907428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b9\/4bc918e6017a3c57fe0098b9\/marta-mid.jpg","studio":"Cinemar","genre":"Thriller","title":"Marta","releaseDate":40176000000,"language":"en","type":"Movie","_key":"19391"} +{"label":"Jes\u00fas Puente","version":25,"id":"31694","lastModified":"1301901794000","name":"Jes\u00fas Puente","type":"Person","_key":"19392"} +{"label":"George Rigaud","version":39,"id":"31695","lastModified":"1301956576000","name":"George Rigaud","type":"Person","_key":"19393"} +{"label":"Isa Miranda","version":25,"id":"31696","lastModified":"1301901702000","name":"Isa Miranda","type":"Person","_key":"19394"} +{"label":"N\u00e9lida Quiroga","version":20,"id":"31697","lastModified":"1301901812000","name":"N\u00e9lida Quiroga","type":"Person","_key":"19395"} +{"label":"Jos\u00e9 Antonio Nieves Conde","version":21,"id":"31849","lastModified":"1301901680000","name":"Jos\u00e9 Antonio Nieves Conde","type":"Person","_key":"19396"} +{"label":"Alta tensi\u00f3n","description":"No overview found.","id":"3403","runtime":91,"imdbId":"tt0066756","version":42,"lastModified":"1301907410000","studio":"Jupiter Generale Cinematografica","genre":"Thriller","title":"Alta tensi\u00f3n","releaseDate":71020800000,"language":"en","type":"Movie","_key":"19397"} +{"label":"Julio Buchs","version":20,"id":"31698","lastModified":"1301901581000","name":"Julio Buchs","type":"Person","_key":"19398"} +{"label":"Juan Luis Galiardo","version":25,"id":"31699","lastModified":"1301901999000","name":"Juan Luis Galiardo","type":"Person","_key":"19399"} +{"label":"Helga Lin\u00e9","version":49,"id":"31700","lastModified":"1301901498000","name":"Helga Lin\u00e9","type":"Person","_key":"19400"} +{"label":"Patrizia Adiutori","version":21,"id":"31701","lastModified":"1301901678000","name":"Patrizia Adiutori","type":"Person","_key":"19401"} +{"label":"Nel buio del terrore","description":"No overview found.","id":"3404","runtime":90,"imdbId":"tt0066889","version":45,"lastModified":"1301908636000","studio":"International Apollo Films","genre":"Drama","title":"Nel buio del terrore","releaseDate":37065600000,"language":"en","type":"Movie","_key":"19402"} +{"label":"Anyone Can Play","description":"No overview found.","id":"3405","runtime":88,"imdbId":"tt0061586","version":70,"lastModified":"1301418670000","studio":"Documento Film","genre":"Comedy","title":"Anyone Can Play","releaseDate":-42076800000,"language":"en","type":"Movie","_key":"19403"} +{"label":"Luigi Zampa","version":24,"id":"31890","lastModified":"1301901744000","name":"Luigi Zampa","type":"Person","_key":"19404"} +{"label":"Virna Lisi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4c24f7147b9aa1446a000120\/virna-lisi-profile.jpg","version":38,"id":"31895","lastModified":"1301901325000","name":"Virna Lisi","type":"Person","_key":"19405"} +{"label":"Brett Halsey","version":33,"birthday":"-1152925200000","id":"31896","birthplace":"Santa Ana, California, USA ","lastModified":"1301901567000","name":"Brett Halsey","type":"Person","_key":"19406"} +{"label":"Marco Guglielmi","version":19,"id":"31897","lastModified":"1301901908000","name":"Marco Guglielmi","type":"Person","_key":"19407"} +{"label":"Luciano Salce","version":24,"id":"31898","lastModified":"1301902017000","name":"Luciano Salce","type":"Person","_key":"19408"} +{"label":"O Frankenstein de Mois\u00e9s Neto - Vers\u00e3o Muda","description":"No overview found.","id":"3406","runtime":40,"imdbId":"tt0322327","version":39,"lastModified":"1301905716000","studio":"Ilusionistas","genre":"Horror","title":"O Frankenstein de Mois\u00e9s Neto - Vers\u00e3o Muda","releaseDate":614476800000,"language":"en","type":"Movie","_key":"19409"} +{"label":"Mois\u00e9s Neto","version":20,"id":"31724","lastModified":"1301901820000","name":"Mois\u00e9s Neto","type":"Person","_key":"19410"} +{"label":"Henrique Amaral","version":20,"id":"31726","lastModified":"1301901660000","name":"Henrique Amaral","type":"Person","_key":"19411"} +{"label":"Black Escobar","version":20,"id":"31727","lastModified":"1301901969000","name":"Black Escobar","type":"Person","_key":"19412"} +{"label":"Paula Costa Rego","version":20,"id":"31728","lastModified":"1301901969000","name":"Paula Costa Rego","type":"Person","_key":"19413"} +{"label":"Frankenstein: Birth of a Monster","description":"No overview found.","id":"3407","runtime":75,"imdbId":"tt0391160","version":57,"lastModified":"1301906189000","studio":"BBC Films","genre":"Drama","title":"Frankenstein: Birth of a Monster","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"19414"} +{"label":"Mary Downes","version":21,"id":"31729","lastModified":"1301901682000","name":"Mary Downes","type":"Person","_key":"19415"} +{"label":"Robert Winston","version":20,"id":"31736","lastModified":"1301901665000","name":"Robert Winston","type":"Person","_key":"19416"} +{"label":"Lucy Davenport","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d38\/4cf5cb735e73d6299c000d38\/lucy-davenport-profile.jpg","version":31,"id":"31737","lastModified":"1301901253000","name":"Lucy Davenport","type":"Person","_key":"19417"} +{"label":"Raphaella Pester","version":20,"id":"31738","lastModified":"1301901503000","name":"Raphaella Pester","type":"Person","_key":"19418"} +{"label":"Oliver Chris","version":20,"id":"31739","lastModified":"1301901837000","name":"Oliver Chris","type":"Person","_key":"19419"} +{"label":"Amy Phillips","version":21,"id":"31740","lastModified":"1301901515000","name":"Amy Phillips","type":"Person","_key":"19420"} +{"label":"Boy Frankenstein","description":"No overview found.","id":"3408","runtime":9,"imdbId":"tt0402861","version":63,"lastModified":"1301907999000","genre":"Horror","title":"Boy Frankenstein","releaseDate":883612800000,"language":"en","type":"Movie","_key":"19421"} +{"label":"Susana Donovan","version":23,"id":"31741","lastModified":"1301901569000","name":"Susana Donovan","type":"Person","_key":"19422"} +{"label":"El Vampiro de la autopista","description":"No overview found.","id":"3409","runtime":90,"imdbId":"tt0066519","version":48,"lastModified":"1301906768000","studio":"Cin\u00e9a","genre":"Horror","title":"El Vampiro de la autopista","releaseDate":32054400000,"language":"en","type":"Movie","_key":"19423"} +{"label":"Jos\u00e9 Luis Madrid","version":20,"id":"31742","lastModified":"1301901801000","name":"Jos\u00e9 Luis Madrid","type":"Person","_key":"19424"} +{"label":"Val Davis","version":21,"id":"31747","lastModified":"1301901801000","name":"Val Davis","type":"Person","_key":"19425"} +{"label":"Barta Barri","version":27,"id":"31748","lastModified":"1301901805000","name":"Barta Barri","type":"Person","_key":"19426"} +{"label":"Anastasio Campoy","version":18,"id":"31749","lastModified":"1301901801000","name":"Anastasio Campoy","type":"Person","_key":"19427"} +{"label":"Susan Carvasal","version":20,"id":"31750","lastModified":"1301901573000","name":"Susan Carvasal","type":"Person","_key":"19428"} +{"label":"Victor Davis","version":20,"id":"31751","lastModified":"1301901666000","name":"Victor Davis","type":"Person","_key":"19429"} +{"label":"Kurt Esteban","version":20,"id":"31752","lastModified":"1301901978000","name":"Kurt Esteban","type":"Person","_key":"19430"} +{"label":"Luis Induni","version":25,"id":"31753","lastModified":"1301956528000","name":"Luis Induni","type":"Person","_key":"19431"} +{"label":"Patricia Loran","version":21,"id":"31754","lastModified":"1301901801000","name":"Patricia Loran","type":"Person","_key":"19432"} +{"label":"Sevimli Frankestayn","description":"No overview found.","id":"3410","runtime":80,"imdbId":"tt0362137","version":43,"lastModified":"1301906755000","studio":"Acar Film","genre":"Comedy","title":"Sevimli Frankestayn","releaseDate":157766400000,"language":"en","type":"Movie","_key":"19433"} +{"label":"Nejat Saydam","version":21,"id":"31755","lastModified":"1301901569000","name":"Nejat Saydam","type":"Person","_key":"19434"} +{"label":"B\u00fclent Kayabas","version":20,"id":"31758","lastModified":"1301901681000","name":"B\u00fclent Kayabas","type":"Person","_key":"19435"} +{"label":"Meral Orhonsay","version":22,"id":"31759","lastModified":"1301901597000","name":"Meral Orhonsay","type":"Person","_key":"19436"} +{"label":"Sevda Karaca","version":20,"id":"31760","lastModified":"1301901794000","name":"Sevda Karaca","type":"Person","_key":"19437"} +{"label":"Savas Basar","version":20,"id":"31761","lastModified":"1301901794000","name":"Savas Basar","type":"Person","_key":"19438"} +{"label":"Y\u00fcksel G\u00f6zen","version":18,"id":"31762","lastModified":"1301901674000","name":"Y\u00fcksel G\u00f6zen","type":"Person","_key":"19439"} +{"label":"Mualla Kavur","version":20,"id":"31763","lastModified":"1301901660000","name":"Mualla Kavur","type":"Person","_key":"19440"} +{"label":"Robot Wrecks","description":"No overview found.","id":"3411","runtime":11,"imdbId":"tt0034122","version":51,"lastModified":"1301906179000","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Robot Wrecks","releaseDate":-898560000000,"language":"en","type":"Movie","_key":"19441"} +{"label":"Edward L. Cahn","version":33,"id":"31764","lastModified":"1301901661000","name":"Edward L. Cahn","type":"Person","_key":"19442"} +{"label":"Margaret Bert","version":20,"id":"31770","lastModified":"1301902007000","name":"Margaret Bert","type":"Person","_key":"19443"} +{"label":"Billy Bletcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f3\/4d20b3615e73d66b270023f3\/billy-bletcher-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \">The diminutive (5 feet 2 inches\/1.57 meters) Bletcher appeared on-screen in films and later television from the 1910s to the 1970s, including appearances in several <i><a href=\"http:\/\/en.wikipedia.org\/wiki\/Our_Gang\" title=\"Our Gang\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-c","version":42,"birthday":"-2375312400000","id":"31771","birthplace":"Lancaster, Pennsylvania, USA","lastModified":"1301901251000","name":"Billy Bletcher","type":"Person","_key":"19444"} +{"label":"Darla Hood","version":21,"id":"31772","lastModified":"1301902007000","name":"Darla Hood","type":"Person","_key":"19445"} +{"label":"Billy 'Froggy' Laughlin","version":18,"id":"31773","lastModified":"1301901675000","name":"Billy 'Froggy' Laughlin","type":"Person","_key":"19446"} +{"label":"George 'Spanky' McFarland","version":18,"id":"31774","lastModified":"1301902024000","name":"George 'Spanky' McFarland","type":"Person","_key":"19447"} +{"label":"Ritorno dalla morte","description":"No overview found.","id":"3412","runtime":92,"imdbId":"tt0105245","version":59,"lastModified":"1301906768000","studio":"Filmirage S.r.l.","genre":"Horror","title":"Ritorno dalla morte","releaseDate":662688000000,"language":"en","type":"Movie","_key":"19448"} +{"label":"Joe D'Amato","version":124,"id":"31775","lastModified":"1302025010000","name":"Joe D'Amato","type":"Person","_key":"19449"} +{"label":"Donald O'Brien","version":31,"id":"31779","lastModified":"1301901470000","name":"Donald O'Brien","type":"Person","_key":"19450"} +{"label":"Cinzia Monreale","version":25,"id":"31780","lastModified":"1301901837000","name":"Cinzia Monreale","type":"Person","_key":"19451"} +{"label":"Robin Tazusky","version":20,"id":"31781","lastModified":"1301901820000","name":"Robin Tazusky","type":"Person","_key":"19452"} +{"label":"Richard Harsh","version":20,"id":"31782","lastModified":"1301902007000","name":"Richard Harsh","type":"Person","_key":"19453"} +{"label":"Dun Dustman","version":20,"id":"31783","lastModified":"1301901842000","name":"Dun Dustman","type":"Person","_key":"19454"} +{"label":"Mark Frank","version":20,"id":"31784","lastModified":"1301901839000","name":"Mark Frank","type":"Person","_key":"19455"} +{"label":"Mark Quail","version":18,"id":"31785","lastModified":"1301901838000","name":"Mark Quail","type":"Person","_key":"19456"} +{"label":"Orlak, el infierno de Frankenstein","description":"No overview found.","id":"3413","runtime":103,"imdbId":"tt0054148","version":84,"lastModified":"1301302605000","studio":"Filmadora Independiente","genre":"Horror","title":"Orlak, el infierno de Frankenstein","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"19457"} +{"label":"Rafael Baled\u00f3n","version":18,"id":"31786","lastModified":"1301902009000","name":"Rafael Baled\u00f3n","type":"Person","_key":"19458"} +{"label":"Joaqu\u00edn Cordero","version":19,"id":"31792","lastModified":"1301901679000","name":"Joaqu\u00edn Cordero","type":"Person","_key":"19459"} +{"label":"Armando Calvo","version":21,"id":"31793","lastModified":"1301902007000","name":"Armando Calvo","type":"Person","_key":"19460"} +{"label":"Rosa de Castilla","version":20,"id":"31794","lastModified":"1301902024000","name":"Rosa de Castilla","type":"Person","_key":"19461"} +{"label":"Irma Dorantes","version":20,"id":"31795","lastModified":"1301902007000","name":"Irma Dorantes","type":"Person","_key":"19462"} +{"label":"Andr\u00e9s Soler","version":21,"id":"31796","lastModified":"1301901999000","name":"Andr\u00e9s Soler","type":"Person","_key":"19463"} +{"label":"Pedro de Aguill\u00f3n","version":18,"id":"31797","lastModified":"1301901816000","name":"Pedro de Aguill\u00f3n","type":"Person","_key":"19464"} +{"label":"David Reynoso","version":20,"id":"31798","lastModified":"1301901679000","name":"David Reynoso","type":"Person","_key":"19465"} +{"label":"Carlos Ancira","version":22,"id":"31799","lastModified":"1301901665000","name":"Carlos Ancira","type":"Person","_key":"19466"} +{"label":"Antonio Raxel","version":23,"id":"31800","lastModified":"1301901665000","name":"Antonio Raxel","type":"Person","_key":"19467"} +{"label":"El \u00faltimo Frankenstein","description":"No overview found.","id":"3414","runtime":17,"imdbId":"tt0463798","version":54,"lastModified":"1302019780000","studio":"Centro Nacional Aut\u00f3nomo de Cinematograf\u00eda","genre":"Horror","title":"El \u00faltimo Frankenstein","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"19468"} +{"label":"Carmen L'Roche","version":19,"id":"31801","lastModified":"1301901793000","name":"Carmen L'Roche","type":"Person","_key":"19469"} +{"label":"Al\u00ed Jos\u00e9 Garc\u00eda","version":18,"id":"31806","lastModified":"1301901675000","name":"Al\u00ed Jos\u00e9 Garc\u00eda","type":"Person","_key":"19470"} +{"label":"Il Mostro di Frankenstein","description":"No overview found.","id":"3416","runtime":39,"imdbId":"tt0011481","version":40,"lastModified":"1301907428000","studio":"Albertini Film","genre":"Horror","title":"Il Mostro di Frankenstein","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"19471"} +{"label":"Eugenio Testa","version":20,"id":"31809","lastModified":"1301901820000","name":"Eugenio Testa","type":"Person","_key":"19472"} +{"label":"Linda Albertini","version":20,"id":"31812","lastModified":"1301901794000","name":"Linda Albertini","type":"Person","_key":"19473"} +{"label":"Luciano Albertini","version":21,"id":"31811","lastModified":"1301901969000","name":"Luciano Albertini","type":"Person","_key":"19474"} +{"label":"Umberto Guarracino","version":20,"id":"31813","lastModified":"1301901794000","name":"Umberto Guarracino","type":"Person","_key":"19475"} +{"label":"Aldo Mezzanotte","version":20,"id":"31814","lastModified":"1301901794000","name":"Aldo Mezzanotte","type":"Person","_key":"19476"} +{"label":"Frankenstein: Une histoire d'amour","description":"No overview found.","id":"3417","runtime":85,"imdbId":"tt0322328","version":54,"lastModified":"1301908610000","studio":"France 2 Cin\u00e9ma","genre":"Drama","title":"Frankenstein: Une histoire d'amour","releaseDate":126230400000,"language":"en","type":"Movie","_key":"19477"} +{"label":"Bob Th\u00e9nault","version":18,"id":"31815","lastModified":"1301901820000","name":"Bob Th\u00e9nault","type":"Person","_key":"19478"} +{"label":"G\u00e9rard Berner","version":18,"id":"31817","lastModified":"1301901679000","name":"G\u00e9rard Berner","type":"Person","_key":"19479"} +{"label":"Karin Petersen","version":20,"id":"31818","lastModified":"1301901569000","name":"Karin Petersen","type":"Person","_key":"19480"} +{"label":"Fran\u00e7oise Lugagne","version":21,"id":"31819","lastModified":"1301901816000","name":"Fran\u00e7oise Lugagne","type":"Person","_key":"19481"} +{"label":"G\u00e9rard Boucaron","version":18,"id":"31820","lastModified":"1301901581000","name":"G\u00e9rard Boucaron","type":"Person","_key":"19482"} +{"label":"Jean Lepage","version":20,"id":"31821","lastModified":"1301901969000","name":"Jean Lepage","type":"Person","_key":"19483"} +{"label":"Death Watch","description":"Roddy has a camera implanted in his brain. He is then hired by a television producer to film a documentary of terminally ill Katherine, without her knowledge. His footage will then be run on the popular TV series, \"Death Watch\".","id":"3418","runtime":128,"imdbId":"tt0081182","version":75,"lastModified":"1301904019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c2\/4bc918ea017a3c57fe0098c2\/la-mort-en-direct-mid.jpg","studio":"Soci\u00e9t\u00e9 Fran\u00e7aise de Production","genre":"Drama","title":"Death Watch","releaseDate":326678400000,"language":"en","type":"Movie","_key":"19484"} +{"label":"Eva Maria Meineke","version":22,"id":"26247","lastModified":"1301901622000","name":"Eva Maria Meineke","type":"Person","_key":"19485"} +{"label":"William Russell","version":25,"id":"32041","lastModified":"1301902007000","name":"William Russell","type":"Person","_key":"19486"} +{"label":"Qui","description":"No overview found.","id":"3419","runtime":74,"imdbId":"tt0065515","version":97,"lastModified":"1301904243000","studio":"Fida cinematografica","genre":"Thriller","title":"Qui","releaseDate":22896000000,"language":"en","type":"Movie","_key":"19487"} +{"label":"L\u00e9onard Keigel","version":21,"id":"31822","lastModified":"1301901801000","name":"L\u00e9onard Keigel","type":"Person","_key":"19488"} +{"label":"Gabriele Tinti","version":52,"id":"31991","lastModified":"1302024945000","name":"Gabriele Tinti","type":"Person","_key":"19489"} +{"label":"Simone Bach","version":20,"id":"32296","lastModified":"1301901666000","name":"Simone Bach","type":"Person","_key":"19490"} +{"label":"Frankenstein JR.","description":"No overview found.","id":"3420","runtime":8,"imdbId":"tt0862933","version":47,"lastModified":"1301907445000","studio":"Purple Sea","genre":"Comedy","title":"Frankenstein JR.","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"19491"} +{"label":"Asif Ahmed","version":25,"id":"31823","lastModified":"1301902034000","name":"Asif Ahmed","type":"Person","_key":"19492"} +{"label":"Sarah Atwood","version":20,"id":"31825","lastModified":"1301901820000","name":"Sarah Atwood","type":"Person","_key":"19493"} +{"label":"Brent Beebe","version":20,"id":"31826","lastModified":"1301901696000","name":"Brent Beebe","type":"Person","_key":"19494"} +{"label":"Jenna Ferrari","version":20,"id":"31827","lastModified":"1301902007000","name":"Jenna Ferrari","type":"Person","_key":"19495"} +{"label":"Patrick Lazzara","version":18,"id":"31828","lastModified":"1301901580000","name":"Patrick Lazzara","type":"Person","_key":"19496"} +{"label":"Elizabeth Mihelich","version":20,"id":"31829","lastModified":"1301901677000","name":"Elizabeth Mihelich","type":"Person","_key":"19497"} +{"label":"Jennifer Parsons","version":21,"id":"31830","lastModified":"1301902034000","name":"Jennifer Parsons","type":"Person","_key":"19498"} +{"label":"Chaka Small","version":20,"id":"31831","lastModified":"1301901683000","name":"Chaka Small","type":"Person","_key":"19499"} +{"label":"Bloomfield","description":"No overview found.","id":"3421","runtime":94,"imdbId":"tt0068694","version":67,"lastModified":"1301907449000","studio":"Cenfilco Tel Aviv","genre":"Drama","title":"Bloomfield","releaseDate":44582400000,"language":"en","type":"Movie","_key":"19500"} +{"label":"Uri Zohar","version":20,"id":"32297","lastModified":"1301901675000","name":"Uri Zohar","type":"Person","_key":"19501"} +{"label":"Kim Burfield","version":21,"id":"32302","lastModified":"1301902009000","name":"Kim Burfield","type":"Person","_key":"19502"} +{"label":"Maurice Kaufmann","version":25,"id":"32303","lastModified":"1301901696000","name":"Maurice Kaufmann","type":"Person","_key":"19503"} +{"label":"Yossi Yadin","version":20,"id":"32304","lastModified":"1301902031000","name":"Yossi Yadin","type":"Person","_key":"19504"} +{"label":"Zvi Yaron","version":20,"id":"32305","lastModified":"1301902031000","name":"Zvi Yaron","type":"Person","_key":"19505"} +{"label":"Beyla Genauer","version":20,"id":"32306","lastModified":"1301902027000","name":"Beyla Genauer","type":"Person","_key":"19506"} +{"label":"Sarah Moor","version":20,"id":"32307","lastModified":"1301902028000","name":"Sarah Moor","type":"Person","_key":"19507"} +{"label":"David Heyman","version":142,"id":"10968","lastModified":"1301901273000","name":"David Heyman","type":"Person","_key":"19508"} +{"label":"La Califfa","description":"No overview found.","id":"3422","runtime":112,"imdbId":"tt0065516","version":66,"lastModified":"1301906191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69d\/4d78c37c7b9aa157c200069d\/la-califfa-mid.jpg","studio":"Les Films Corona","genre":"Drama","title":"La Califfa","releaseDate":58492800000,"language":"en","type":"Movie","_key":"19509"} +{"label":"Ugo Tognazzi","version":44,"id":"32312","lastModified":"1301901407000","name":"Ugo Tognazzi","type":"Person","_key":"19510"} +{"label":"Massimo Farinelli","version":21,"id":"32313","lastModified":"1301901820000","name":"Massimo Farinelli","type":"Person","_key":"19511"} +{"label":"Roberto Bisacco","version":23,"id":"32314","lastModified":"1301902007000","name":"Roberto Bisacco","type":"Person","_key":"19512"} +{"label":"Gigi Ballista","version":22,"id":"32315","lastModified":"1301901978000","name":"Gigi Ballista","type":"Person","_key":"19513"} +{"label":"Alberto Bevilacqua","version":30,"id":"32308","lastModified":"1301901681000","name":"Alberto Bevilacqua","type":"Person","_key":"19514"} +{"label":"Les choses de la vie","description":"No overview found.","id":"3423","runtime":89,"imdbId":"tt0064165","version":71,"lastModified":"1301904726000","studio":"Fida cinematografica","genre":"Drama","title":"Les choses de la vie","releaseDate":9244800000,"language":"en","type":"Movie","_key":"19515"} +{"label":"G\u00e9rard Lartigau","version":29,"id":"32322","lastModified":"1301901846000","name":"G\u00e9rard Lartigau","type":"Person","_key":"19516"} +{"label":"Boby Lapointe","version":25,"id":"32323","lastModified":"1301901798000","name":"Boby Lapointe","type":"Person","_key":"19517"} +{"label":"Betty Beckers","version":21,"id":"32324","lastModified":"1301901975000","name":"Betty Beckers","type":"Person","_key":"19518"} +{"label":"Mado","description":"No overview found.","id":"3424","runtime":135,"imdbId":"tt0074840","version":154,"lastModified":"1301905725000","studio":"Terra-Filmkunst GmbH","genre":"Drama","title":"Mado","releaseDate":215222400000,"language":"en","type":"Movie","_key":"19519"} +{"label":"Jacques Dutronc","version":34,"id":"32089","lastModified":"1301901680000","name":"Jacques Dutronc","type":"Person","_key":"19520"} +{"label":"Une histoire simple","description":"No overview found.","id":"3425","runtime":107,"imdbId":"tt0075975","version":73,"lastModified":"1301905719000","studio":"Renn Productions","genre":"Drama","title":"Une histoire simple","releaseDate":280540800000,"language":"en","type":"Movie","_key":"19521"} +{"label":"Bruno Cremer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ab\/4ca3edf05e73d636f90000ab\/bruno-cremer-profile.jpg","version":34,"id":"32364","lastModified":"1301901570000","name":"Bruno Cremer","type":"Person","_key":"19522"} +{"label":"Sophie Daumier","version":21,"id":"32365","lastModified":"1301901972000","name":"Sophie Daumier","type":"Person","_key":"19523"} +{"label":"Yves Knapp","version":20,"id":"32367","lastModified":"1301901824000","name":"Yves Knapp","type":"Person","_key":"19524"} +{"label":"C\u00e9sar et Rosalie","description":"No overview found.","id":"3426","runtime":107,"imdbId":"tt0068441","version":80,"lastModified":"1301905650000","studio":"Fildebroc","genre":"Drama","title":"C\u00e9sar et Rosalie","releaseDate":86745600000,"language":"en","type":"Movie","_key":"19525"} +{"label":"Gisela Hahn","version":25,"id":"32370","lastModified":"1301901744000","name":"Gisela Hahn","type":"Person","_key":"19526"} +{"label":"Carlo Nell","version":20,"id":"32372","lastModified":"1301902007000","name":"Carlo Nell","type":"Person","_key":"19527"} +{"label":"Max et les ferrailleurs","description":"No overview found.","id":"3427","runtime":112,"imdbId":"tt0067409","version":67,"lastModified":"1301903714000","studio":"Fida cinematografica","genre":"Thriller","title":"Max et les ferrailleurs","releaseDate":35596800000,"language":"en","type":"Movie","_key":"19528"} +{"label":"Jacques Canselier","version":20,"id":"32373","lastModified":"1301901744000","name":"Jacques Canselier","type":"Person","_key":"19529"} +{"label":"Maurice Auzel","version":20,"id":"32374","lastModified":"1301901744000","name":"Maurice Auzel","type":"Person","_key":"19530"} +{"label":"Fr\u00fchlings Erwachen - Eine Kindertrag\u00f6die","description":"No overview found.","id":"3428","runtime":45,"version":38,"lastModified":"1301908347000","genre":"Drama","title":"Fr\u00fchlings Erwachen - Eine Kindertrag\u00f6die","releaseDate":1212624000000,"language":"en","type":"Movie","_key":"19531"} +{"label":"Kerstin Wagner","version":15,"id":"42496","lastModified":"1301901622000","name":"Kerstin Wagner","type":"Person","_key":"19532"} +{"label":"Nathalie Schmidt","version":16,"id":"42491","lastModified":"1301901907000","name":"Nathalie Schmidt","type":"Person","_key":"19533"} +{"label":"Lena Knauder","version":20,"id":"31836","lastModified":"1301901496000","name":"Lena Knauder","type":"Person","_key":"19534"} +{"label":"Anja Gruber","version":15,"id":"42497","lastModified":"1301901907000","name":"Anja Gruber","type":"Person","_key":"19535"} +{"label":"Samuel Maenle","version":15,"id":"42498","lastModified":"1301901907000","name":"Samuel Maenle","type":"Person","_key":"19536"} +{"label":"Sophie Dinhopel","version":15,"id":"42499","lastModified":"1301901907000","name":"Sophie Dinhopel","type":"Person","_key":"19537"} +{"label":"Matthias Rigler","version":15,"id":"42500","lastModified":"1301901907000","name":"Matthias Rigler","type":"Person","_key":"19538"} +{"label":"Valeska Paszkiewicz","version":16,"id":"42492","lastModified":"1301901907000","name":"Valeska Paszkiewicz","type":"Person","_key":"19539"} +{"label":"Roman Shimanovsky","version":15,"id":"42501","lastModified":"1301901907000","name":"Roman Shimanovsky","type":"Person","_key":"19540"} +{"label":"Mr. Brooks","description":"A psychological thriller about a man who is sometimes controlled by his murder-and-mayhem-loving alter ego.","id":"3432","runtime":120,"imdbId":"tt0780571","trailer":"http:\/\/www.youtube.com\/watch?v=Q_4p43gSHxw","version":385,"lastModified":"1301901499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/021\/4c1b9adc7b9aa117c1000021\/mr-brooks-mid.jpg","studio":"Tig Productions","genre":"Crime","title":"Mr. Brooks","releaseDate":1180569600000,"language":"en","type":"Movie","_key":"19541"} +{"label":"Bruce A. Evans","version":39,"id":"3028","lastModified":"1299669453000","name":"Bruce A. Evans","type":"Person","_key":"19542"} +{"label":"Danielle Panabaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/087\/4cae45a97b9aa12135000087\/danielle-panabaker-profile.jpg","version":56,"id":"31838","lastModified":"1301901131000","name":"Danielle Panabaker","type":"Person","_key":"19543"} +{"label":"Ruben Santiago-Hudson","version":28,"id":"31839","lastModified":"1301901283000","name":"Ruben Santiago-Hudson","type":"Person","_key":"19544"} +{"label":"Matt Schulze","version":45,"id":"31841","lastModified":"1301901256000","name":"Matt Schulze","type":"Person","_key":"19545"} +{"label":"Yasmine Delawari","version":22,"id":"31842","lastModified":"1301901456000","name":"Yasmine Delawari","type":"Person","_key":"19546"} +{"label":"Jason Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22b\/4d20b2e67b9aa1736f00222b\/jason-lewis-profile.jpg","version":41,"id":"32224","lastModified":"1301901198000","name":"Jason Lewis","type":"Person","_key":"19547"} +{"label":"Lindsay Crouse","version":42,"id":"32225","lastModified":"1301901326000","name":"Lindsay Crouse","type":"Person","_key":"19548"} +{"label":"La Malquerida","description":"No overview found.","id":"3437","runtime":86,"imdbId":"tt0041624","version":244,"lastModified":"1301908347000","studio":"Cabrera Films","genre":"Drama","title":"La Malquerida","releaseDate":-640396800000,"language":"en","type":"Movie","_key":"19549"} +{"label":"Jaime Contreras","version":20,"id":"31871","lastModified":"1301901821000","name":"Jaime Contreras","type":"Person","_key":"19550"} +{"label":"Dolores del Rio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c9\/4bfac24f017a3c702a0004c9\/dolores-del-rio-profile.jpg","version":31,"id":"31876","lastModified":"1301901559000","name":"Dolores del Rio","type":"Person","_key":"19551"} +{"label":"Columba Dom\u00ednguez","version":18,"id":"31877","lastModified":"1301901673000","name":"Columba Dom\u00ednguez","type":"Person","_key":"19552"} +{"label":"Julio Villarreal","version":21,"id":"31878","lastModified":"1301901541000","name":"Julio Villarreal","type":"Person","_key":"19553"} +{"label":"Gilberto Gonz\u00e1lez","version":18,"id":"31879","lastModified":"1301901999000","name":"Gilberto Gonz\u00e1lez","type":"Person","_key":"19554"} +{"label":"Mim\u00ed Derba","version":19,"id":"31880","lastModified":"1301901843000","name":"Mim\u00ed Derba","type":"Person","_key":"19555"} +{"label":"Enriqueta Reza","version":19,"id":"31881","lastModified":"1301901907000","name":"Enriqueta Reza","type":"Person","_key":"19556"} +{"label":"Carlos Riquelme","version":20,"id":"31882","lastModified":"1301901907000","name":"Carlos Riquelme","type":"Person","_key":"19557"} +{"label":"Eduardo Arozamena","version":19,"id":"31883","lastModified":"1301901907000","name":"Eduardo Arozamena","type":"Person","_key":"19558"} +{"label":"Luis Aceves Casta\u00f1eda","version":22,"id":"31884","lastModified":"1301902002000","name":"Luis Aceves Casta\u00f1eda","type":"Person","_key":"19559"} +{"label":"Rogelio Fern\u00e1ndez","version":18,"id":"31885","lastModified":"1301902003000","name":"Rogelio Fern\u00e1ndez","type":"Person","_key":"19560"} +{"label":"Agust\u00edn Fern\u00e1ndez","version":18,"id":"31886","lastModified":"1301901998000","name":"Agust\u00edn Fern\u00e1ndez","type":"Person","_key":"19561"} +{"label":"Jaime Fern\u00e1ndez","version":19,"id":"31887","lastModified":"1301901941000","name":"Jaime Fern\u00e1ndez","type":"Person","_key":"19562"} +{"label":"Santiago Torres","version":19,"id":"31888","lastModified":"1301901907000","name":"Santiago Torres","type":"Person","_key":"19563"} +{"label":"Fernando Casanova","version":21,"id":"31889","lastModified":"1301901907000","name":"Fernando Casanova","type":"Person","_key":"19564"} +{"label":"MacGyver: Lost Treasure of Atlantis","description":"MacGyver and his former college professor are first hunting some artifacts attributed to Zenon, an ancient scientist from Atlantis, and later the lost city of Atlantis itself.","id":"3468","runtime":93,"imdbId":"tt0110419","version":98,"lastModified":"1301905650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e1\/4bc918ed017a3c57fe0098e1\/macgyver-lost-treasure-of-atlantis-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"MacGyver: Lost Treasure of Atlantis","releaseDate":768873600000,"language":"en","type":"Movie","_key":"19565"} +{"label":"Michael Vejar","version":27,"id":"31900","lastModified":"1301901497000","name":"Michael Vejar","type":"Person","_key":"19566"} +{"label":"Richard Dean Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05f\/4bcd9db8017a3c604200005f\/richard-dean-anderson-profile.jpg","version":35,"birthday":"-629254800000","id":"26085","birthplace":"Minneapolis, Minnesota, United States","lastModified":"1301901410000","name":"Richard Dean Anderson","type":"Person","_key":"19567"} +{"label":"Brian Blessed","version":35,"id":"8318","lastModified":"1302061112000","name":"Brian Blessed","type":"Person","_key":"19568"} +{"label":"Sophie Ward","version":30,"id":"31921","lastModified":"1301901590000","name":"Sophie Ward","type":"Person","_key":"19569"} +{"label":"Christian Burgess","version":19,"id":"31922","lastModified":"1301901622000","name":"Christian Burgess","type":"Person","_key":"19570"} +{"label":"Geoffrey Beevers","version":21,"id":"31924","lastModified":"1301901744000","name":"Geoffrey Beevers","type":"Person","_key":"19571"} +{"label":"George Jackos","version":20,"id":"31926","lastModified":"1301901936000","name":"George Jackos","type":"Person","_key":"19572"} +{"label":"Andreas Markos","version":19,"id":"31927","lastModified":"1301901907000","name":"Andreas Markos","type":"Person","_key":"19573"} +{"label":"Barry McCormick","version":18,"id":"31928","lastModified":"1301901998000","name":"Barry McCormick","type":"Person","_key":"19574"} +{"label":"Far from the Madding Crowd","description":"Bathsheba Everdine, a willful, flirtatious, young woman, unexpectedly inherits a large farm and becomes romantically involved with three widely divergent men.","id":"3469","runtime":166,"imdbId":"tt0061648","version":182,"lastModified":"1301904203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4d7424f55e73d6397d000080\/far-from-the-madding-crowd-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Far from the Madding Crowd","releaseDate":-80179200000,"language":"en","type":"Movie","_key":"19575"} +{"label":"Kip Gowans","version":20,"id":"31938","lastModified":"1301901907000","name":"Kip Gowans","type":"Person","_key":"19576"} +{"label":"David Bracknell","version":20,"id":"31939","lastModified":"1301901744000","name":"David Bracknell","type":"Person","_key":"19577"} +{"label":"Nigel Wooll","version":22,"id":"12649","lastModified":"1301901977000","name":"Nigel Wooll","type":"Person","_key":"19578"} +{"label":"Fiona Walker","version":24,"id":"31940","lastModified":"1301901947000","name":"Fiona Walker","type":"Person","_key":"19579"} +{"label":"Prunella Ransome","version":22,"id":"31941","lastModified":"1301901622000","name":"Prunella Ransome","type":"Person","_key":"19580"} +{"label":"Alison Leggatt","version":24,"id":"31942","lastModified":"1301901907000","name":"Alison Leggatt","type":"Person","_key":"19581"} +{"label":"Paul Dawkins","version":21,"id":"31943","lastModified":"1301901907000","name":"Paul Dawkins","type":"Person","_key":"19582"} +{"label":"Julian Somers","version":26,"id":"31944","lastModified":"1301901744000","name":"Julian Somers","type":"Person","_key":"19583"} +{"label":"Andrew Robertson","version":25,"id":"31945","lastModified":"1301901744000","name":"Andrew Robertson","type":"Person","_key":"19584"} +{"label":"Brian Rawlinson","version":22,"id":"31946","lastModified":"1301901907000","name":"Brian Rawlinson","type":"Person","_key":"19585"} +{"label":"Vincent Harding","version":21,"id":"31947","lastModified":"1301901744000","name":"Vincent Harding","type":"Person","_key":"19586"} +{"label":"Victor Stone","version":21,"id":"31948","lastModified":"1301901744000","name":"Victor Stone","type":"Person","_key":"19587"} +{"label":"Owen Berry","version":21,"id":"31949","lastModified":"1301901820000","name":"Owen Berry","type":"Person","_key":"19588"} +{"label":"Lawrence Carter","version":20,"id":"31950","lastModified":"1301901907000","name":"Lawrence Carter","type":"Person","_key":"19589"} +{"label":"Pauline Melville","version":20,"id":"31951","lastModified":"1301901622000","name":"Pauline Melville","type":"Person","_key":"19590"} +{"label":"The Emperor of Atlantis","description":"No overview found.","id":"3470","runtime":75,"imdbId":"tt0182071","version":43,"lastModified":"1301905008000","studio":"ARD","genre":"Drama","title":"The Emperor of Atlantis","releaseDate":220924800000,"language":"en","type":"Movie","_key":"19591"} +{"label":"John Goldschmidt","version":22,"id":"23315","lastModified":"1301901448000","name":"John Goldschmidt","type":"Person","_key":"19592"} +{"label":"Alexander Malta","version":20,"id":"31955","lastModified":"1301901660000","name":"Alexander Malta","type":"Person","_key":"19593"} +{"label":"Siegmund Nimsgern","version":20,"id":"31956","lastModified":"1301901660000","name":"Siegmund Nimsgern","type":"Person","_key":"19594"} +{"label":"Janet Perry","version":20,"id":"31957","lastModified":"1301901499000","name":"Janet Perry","type":"Person","_key":"19595"} +{"label":"Teresa Stratas","version":20,"id":"31958","lastModified":"1301901793000","name":"Teresa Stratas","type":"Person","_key":"19596"} +{"label":"Siren of Atlantis","description":"No overview found.","id":"3471","runtime":75,"imdbId":"tt0040794","version":202,"lastModified":"1301906087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4c8682d97b9aa1545a00010c\/siren-of-atlantis-mid.jpg","studio":"Seymour Nebenzal Productions","genre":"Adventure","title":"Siren of Atlantis","releaseDate":-662688000000,"language":"en","type":"Movie","_key":"19597"} +{"label":"Gregg C. Tallas","version":25,"id":"31962","lastModified":"1301901810000","name":"Gregg C. Tallas","type":"Person","_key":"19598"} +{"label":"Arthur Ripley","version":29,"id":"31963","lastModified":"1301901600000","name":"Arthur Ripley","type":"Person","_key":"19599"} +{"label":"Maria Montez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/108\/4c24eccb7b9aa1446e000108\/maria-montez-profile.jpg","version":29,"id":"31975","lastModified":"1301901580000","name":"Maria Montez","type":"Person","_key":"19600"} +{"label":"Morris Carnovsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e29\/4cd2c8597b9aa16b9f000e29\/morris-carnovsky-profile.jpg","version":30,"id":"31977","lastModified":"1301901449000","name":"Morris Carnovsky","type":"Person","_key":"19601"} +{"label":"Rus Conklin","version":20,"id":"31978","lastModified":"1301902007000","name":"Rus Conklin","type":"Person","_key":"19602"} +{"label":"Allan Nixon","version":22,"id":"31979","lastModified":"1301901644000","name":"Allan Nixon","type":"Person","_key":"19603"} +{"label":"Dennis O'Keefe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22e\/4bf18bfd017a3c320d00022e\/dennis-o-keefe-profile.jpg","version":37,"id":"88462","lastModified":"1301902319000","name":"Dennis O'Keefe","type":"Person","_key":"19604"} +{"label":"Dirty Pretty Things","description":"An urban hotel in London is a gathering and flash point for legal and illegal immigrants attempting to cobble together their lives in a new country. The immigrants include Senay (Audrey Tatou), a Turkish woman, and a Nigerian doctor named Okwe (Chiwetel Ejiofor) who is working as a night porter at the hotel. The pair discover the hotel is a front for all sorts of clandestine activities. Their only wish is to avoid possible deportation. Okwe becomes more entangled in the goings on when he is call","id":"3472","runtime":97,"imdbId":"tt0301199","version":206,"lastModified":"1302039395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ee\/4bc918f0017a3c57fe0098ee\/dirty-pretty-things-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Dirty Pretty Things","releaseDate":1031184000000,"language":"en","tagline":"Every dream has its price.","type":"Movie","_key":"19605"} +{"label":"Damon Younger","version":24,"id":"31961","lastModified":"1301901368000","name":"Damon Younger","type":"Person","_key":"19606"} +{"label":"Journey Beneath the Desert","description":"A helicopter crashes in the desert, and the crew winds up in the underground city of Atlantis and get mixed up in a slave revolt.","id":"3473","runtime":105,"imdbId":"tt0054641","version":92,"lastModified":"1301907438000","studio":"Transmonde Film","genre":"Adventure","title":"Journey Beneath the Desert","releaseDate":-273283200000,"language":"en","type":"Movie","_key":"19607"} +{"label":"Giuseppe Masini","version":22,"id":"31980","lastModified":"1301901683000","name":"Giuseppe Masini","type":"Person","_key":"19608"} +{"label":"Georges Rivi\u00e8re","version":20,"id":"31987","lastModified":"1301901673000","name":"Georges Rivi\u00e8re","type":"Person","_key":"19609"} +{"label":"James Westmoreland","version":24,"id":"31988","lastModified":"1301901698000","name":"James Westmoreland","type":"Person","_key":"19610"} +{"label":"Amedeo Nazzari","version":26,"id":"31989","lastModified":"1301901823000","name":"Amedeo Nazzari","type":"Person","_key":"19611"} +{"label":"Giulia Rubini","version":22,"id":"31990","lastModified":"1301901993000","name":"Giulia Rubini","type":"Person","_key":"19612"} +{"label":"Ignazio Dolce","version":20,"id":"31992","lastModified":"1301901991000","name":"Ignazio Dolce","type":"Person","_key":"19613"} +{"label":"Queen of Atlantis","description":"Antinea, the Queen of Atlantis, rules her secret kingdom hidden beneath the Sahara Desert. One day two lost explorers stumble into her kingdom, and soon realize that they haven\u2019t really been saved\u2014Antinea has a habit of taking men as lovers, then when she\u2019s done with them, she kills them and keeps them mummified.","id":"3474","runtime":87,"imdbId":"tt0023002","version":91,"lastModified":"1301906086000","genre":"Fantasy","title":"Queen of Atlantis","releaseDate":-1184112000000,"language":"en","type":"Movie","_key":"19614"} +{"label":"Heinz Klingenberg","version":19,"id":"32003","lastModified":"1301901622000","name":"Heinz Klingenberg","type":"Person","_key":"19615"} +{"label":"Gustav Diessl","version":23,"id":"32004","lastModified":"1301901402000","name":"Gustav Diessl","type":"Person","_key":"19616"} +{"label":"Tela Tcha\u00ef","version":18,"id":"32005","lastModified":"1301901819000","name":"Tela Tcha\u00ef","type":"Person","_key":"19617"} +{"label":"Florelle","version":19,"id":"32006","lastModified":"1301901744000","name":"Florelle","type":"Person","_key":"19618"} +{"label":"Mathias Wieman","version":19,"id":"32007","lastModified":"1301901744000","name":"Mathias Wieman","type":"Person","_key":"19619"} +{"label":"Georges Tourreil","version":18,"id":"32008","lastModified":"1301901819000","name":"Georges Tourreil","type":"Person","_key":"19620"} +{"label":"Gertrude Pabst","version":19,"id":"32009","lastModified":"1301901744000","name":"Gertrude Pabst","type":"Person","_key":"19621"} +{"label":"Rositta Severus-Liedernit","version":17,"id":"32010","lastModified":"1301901744000","name":"Rositta Severus-Liedernit","type":"Person","_key":"19622"} +{"label":"Martha von Konssatzki","version":19,"id":"32011","lastModified":"1301901744000","name":"Martha von Konssatzki","type":"Person","_key":"19623"} +{"label":"Le train","description":"No overview found.","id":"3475","runtime":95,"imdbId":"tt0070826","version":96,"lastModified":"1301906637000","studio":"Lira Films","genre":"Drama","title":"Le train","releaseDate":120873600000,"language":"en","type":"Movie","_key":"19624"} +{"label":"Pierre Granier-Deferre","version":31,"id":"32096","lastModified":"1301901457000","name":"Pierre Granier-Deferre","type":"Person","_key":"19625"} +{"label":"Maurice Biraud","version":28,"id":"32100","lastModified":"1301901600000","name":"Maurice Biraud","type":"Person","_key":"19626"} +{"label":"Paul Amiot","version":21,"id":"32101","lastModified":"1301901820000","name":"Paul Amiot","type":"Person","_key":"19627"} +{"label":"Roger Ibanez","version":20,"id":"32102","lastModified":"1301902007000","name":"Roger Ibanez","type":"Person","_key":"19628"} +{"label":"Jean Lescot","version":24,"id":"32103","lastModified":"1301901723000","name":"Jean Lescot","type":"Person","_key":"19629"} +{"label":"Franco Mazzieri","version":19,"id":"32104","lastModified":"1301901744000","name":"Franco Mazzieri","type":"Person","_key":"19630"} +{"label":"R\u00e9gine","version":23,"id":"32105","lastModified":"1301901676000","name":"R\u00e9gine","type":"Person","_key":"19631"} +{"label":"That Most Important Thing: Love","description":"Servais Mont, a photographer, meets Nadine Chevalier who earns her money starring in cheap soft-core movies. Trying to help her, he borrows the money from the loan sharks to finance the theatrical production of 'Richard III' and gives Nadine a part.","id":"3476","runtime":109,"imdbId":"tt0073155","version":68,"lastModified":"1301904448000","studio":"Rizzoli Films","genre":"Drama","title":"That Most Important Thing: Love","releaseDate":161395200000,"language":"en","type":"Movie","_key":"19632"} +{"label":"Andrzej Zulawski","version":27,"id":"32082","lastModified":"1301901491000","name":"Andrzej Zulawski","type":"Person","_key":"19633"} +{"label":"Roger Blin","version":24,"id":"32090","lastModified":"1301901967000","name":"Roger Blin","type":"Person","_key":"19634"} +{"label":"Gabrielle Doulcet","version":22,"id":"32091","lastModified":"1301901907000","name":"Gabrielle Doulcet","type":"Person","_key":"19635"} +{"label":"Michel Robin","version":27,"id":"32092","lastModified":"1301901667000","name":"Michel Robin","type":"Person","_key":"19636"} +{"label":"Guy Mairesse","version":23,"id":"32093","lastModified":"1301901643000","name":"Guy Mairesse","type":"Person","_key":"19637"} +{"label":"Katia Tchenko","version":21,"id":"32094","lastModified":"1301901907000","name":"Katia Tchenko","type":"Person","_key":"19638"} +{"label":"Le Trio Infernal","description":"No overview found.","id":"3477","runtime":107,"imdbId":"tt0072320","version":69,"lastModified":"1301905716000","studio":"Belstar Productions","genre":"Comedy","title":"Le Trio Infernal","releaseDate":138412800000,"language":"en","type":"Movie","_key":"19639"} +{"label":"Francis Girod","version":26,"id":"32069","lastModified":"1301901660000","name":"Francis Girod","type":"Person","_key":"19640"} +{"label":"Mascha Gonska","version":23,"id":"32076","lastModified":"1301901499000","name":"Mascha Gonska","type":"Person","_key":"19641"} +{"label":"Philippe Brizard","version":20,"id":"32077","lastModified":"1301901681000","name":"Philippe Brizard","type":"Person","_key":"19642"} +{"label":"Jean Rigaux","version":20,"id":"32078","lastModified":"1301902007000","name":"Jean Rigaux","type":"Person","_key":"19643"} +{"label":"Monica Fiorentini","version":20,"id":"32079","lastModified":"1301902007000","name":"Monica Fiorentini","type":"Person","_key":"19644"} +{"label":"Monique Tarb\u00e8s","version":18,"id":"32080","lastModified":"1301902007000","name":"Monique Tarb\u00e8s","type":"Person","_key":"19645"} +{"label":"Francis Claude","version":20,"id":"32081","lastModified":"1301902011000","name":"Francis Claude","type":"Person","_key":"19646"} +{"label":"Ludwig II","description":"A history of Ludwig, king of Bavaria, from his crowning in 1864 until his death in 1886.","id":"3478","runtime":235,"imdbId":"tt0068883","version":139,"lastModified":"1301904960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f7\/4bc918f1017a3c57fe0098f7\/ludwig-ii-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"Ludwig II","releaseDate":94435200000,"language":"en","type":"Movie","_key":"19647"} +{"label":"Helmut Berger","version":27,"id":"32058","lastModified":"1301901243000","name":"Helmut Berger","type":"Person","_key":"19648"} +{"label":"Helmut Griem","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bac\/4cce395a5e73d65023000bac\/helmut-griem-profile.jpg","version":32,"id":"32059","lastModified":"1301901264000","name":"Helmut Griem","type":"Person","_key":"19649"} +{"label":"Izabella Telezynska","version":20,"id":"32060","lastModified":"1301901744000","name":"Izabella Telezynska","type":"Person","_key":"19650"} +{"label":"John Moulder-Brown","version":24,"id":"32061","lastModified":"1301901338000","name":"John Moulder-Brown","type":"Person","_key":"19651"} +{"label":"Sonia Petrovna","version":22,"id":"32062","lastModified":"1301901907000","name":"Sonia Petrovna","type":"Person","_key":"19652"} +{"label":"Heinz Moog","version":20,"id":"32064","lastModified":"1301901744000","name":"Heinz Moog","type":"Person","_key":"19653"} +{"label":"Nora Ricci","version":21,"id":"32066","lastModified":"1301901907000","name":"Nora Ricci","type":"Person","_key":"19654"} +{"label":"Mark Burns","version":23,"id":"32067","lastModified":"1301901907000","name":"Mark Burns","type":"Person","_key":"19655"} +{"label":"Maurizio Bonuglia","version":24,"id":"32068","lastModified":"1301901622000","name":"Maurizio Bonuglia","type":"Person","_key":"19656"} +{"label":"Adriana Asti","version":28,"id":"44110","lastModified":"1301901617000","name":"Adriana Asti","type":"Person","_key":"19657"} +{"label":"Dirty Hands","description":"Saint Tropez. Julie Wormser and her lover, writer and neighbour Jeff Marle, plan the murder of her wealthy husband Louis, an impotent who drinks a lot. She hits him, and leaves the rest of the task to Jeff. Julie finds herself alone the following day, and becomes therefore the prime suspect. Where is Louis' body? Where is Jeff? Is there any secret beyond a door? Nothing is what it seems in this highly acclaimed taut thriller.","id":"3479","runtime":121,"imdbId":"tt0073169","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/les-innocents-aux-mains-sales","version":204,"lastModified":"1301908347000","studio":"Jupiter Generale Cinematografica","genre":"Crime","title":"Dirty Hands","releaseDate":164937600000,"language":"en","type":"Movie","_key":"19658"} +{"label":"Paolo Giusti","version":21,"id":"32042","lastModified":"1301901907000","name":"Paolo Giusti","type":"Person","_key":"19659"} +{"label":"Fran\u00e7ois Perrot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ddb\/4d1b72445e73d6084200bddb\/fran-ois-perrot-profile.jpg","version":32,"id":"32043","lastModified":"1301901422000","name":"Fran\u00e7ois Perrot","type":"Person","_key":"19660"} +{"label":"Pierre Santini","version":23,"id":"32044","lastModified":"1301901781000","name":"Pierre Santini","type":"Person","_key":"19661"} +{"label":"Serge Bento","version":22,"id":"32045","lastModified":"1301901907000","name":"Serge Bento","type":"Person","_key":"19662"} +{"label":"Jean Cherlian","version":23,"id":"32046","lastModified":"1301901622000","name":"Jean Cherlian","type":"Person","_key":"19663"} +{"label":"Le vieux fusil","description":"No overview found.","id":"3480","runtime":103,"imdbId":"tt0073864","version":87,"lastModified":"1301902487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db4\/4cd278e57b9aa16b9c000db4\/le-vieux-fusil-mid.jpg","studio":"Les Productions Artistes Associ\u00e9s","genre":"Drama","title":"Le vieux fusil","releaseDate":177897600000,"language":"en","type":"Movie","_key":"19664"} +{"label":"Robert Enrico","version":30,"id":"32012","lastModified":"1301901316000","name":"Robert Enrico","type":"Person","_key":"19665"} +{"label":"Joachim Hansen","version":30,"id":"32019","lastModified":"1301901448000","name":"Joachim Hansen","type":"Person","_key":"19666"} +{"label":"Robert Hoffmann","version":29,"id":"32020","lastModified":"1301901342000","name":"Robert Hoffmann","type":"Person","_key":"19667"} +{"label":"Karl Michael Vogler","version":24,"id":"32021","lastModified":"1301901792000","name":"Karl Michael Vogler","type":"Person","_key":"19668"} +{"label":"Caroline Bonhomme","version":19,"id":"32022","lastModified":"1301901907000","name":"Caroline Bonhomme","type":"Person","_key":"19669"} +{"label":"Catherine Delaporte","version":19,"id":"32023","lastModified":"1301901744000","name":"Catherine Delaporte","type":"Person","_key":"19670"} +{"label":"Madeleine Ozeray","version":19,"id":"32024","lastModified":"1301901907000","name":"Madeleine Ozeray","type":"Person","_key":"19671"} +{"label":"Jean-Paul Cisife","version":18,"id":"32025","lastModified":"1301901820000","name":"Jean-Paul Cisife","type":"Person","_key":"19672"} +{"label":"The Face of Fu Manchu","description":"Grisly strangulations in London alert Nayland Smith of Scotland Yard to the possibility that fiendish Fu Manchu may not after all be dead, even though Smith witnessed his execution. A killer spray made from Tibetan berries seems to be involved and clues keep leading back to the Thames.","id":"3481","runtime":89,"imdbId":"tt0059162","trailer":"http:\/\/www.youtube.com\/watch?v=PuJRxviIAbA","version":93,"lastModified":"1301903714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/900\/4bc918f2017a3c57fe009900\/the-face-of-fu-manchu-mid.jpg","studio":"Constantin Film","genre":"Crime","title":"The Face of Fu Manchu","releaseDate":-139017600000,"language":"en","type":"Movie","_key":"19673"} +{"label":"Don Sharpe","version":17,"id":"20110","lastModified":"1301901624000","name":"Don Sharpe","type":"Person","_key":"19674"} +{"label":"Howard Marion-Crawford","version":29,"id":"32119","lastModified":"1301901639000","name":"Howard Marion-Crawford","type":"Person","_key":"19675"} +{"label":"Walter Rilla","version":28,"id":"32120","lastModified":"1301901574000","name":"Walter Rilla","type":"Person","_key":"19676"} +{"label":"The Train","description":"As the Allied forces approach Paris in August 1944, German Colonel Von Waldheim is desperate to take all of France's greatest paintings to Germany. He manages to secure a train to transport the valuable art works even as the chaos of retreat descends upon them. The French resistance however wants to stop them from stealing their national treasures but have received orders from London that they are not to be destroyed. The station master, Labiche, is tasked with scheduling the train and making it","id":"3482","runtime":133,"imdbId":"tt0059825","trailer":"http:\/\/www.youtube.com\/watch?v=GNh_1w0G_lA","version":340,"lastModified":"1302019424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/909\/4bc918f3017a3c57fe009909\/the-train-mid.jpg","studio":"Dear Film Produzione","genre":"Action","title":"The Train","releaseDate":-166492800000,"language":"en","tagline":"It carried their hopes, their nation's honour!","type":"Movie","_key":"19677"} +{"label":"Charles Millot","version":21,"id":"32112","lastModified":"1301901907000","name":"Charles Millot","type":"Person","_key":"19678"} +{"label":"The Blood of Fu Manchu","description":"Fu Manchu inoculates ten women with poison, to kill ten world leaders.","id":"3483","runtime":92,"imdbId":"tt0062741","version":182,"lastModified":"1301903475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/912\/4bc918f4017a3c57fe009912\/the-blood-of-fu-manchu-mid.jpg","studio":"Ada Films","genre":"Adventure","title":"The Blood of Fu Manchu","releaseDate":-42940800000,"language":"en","type":"Movie","_key":"19679"} +{"label":"Richard Greene","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e27\/4c0d07ec017a3c7e86000e27\/richard-greene-profile.jpg","version":31,"id":"32128","lastModified":"1301901414000","name":"Richard Greene","type":"Person","_key":"19680"} +{"label":"Maria Rohm","version":35,"id":"32129","lastModified":"1301901662000","name":"Maria Rohm","type":"Person","_key":"19681"} +{"label":"Ricardo Palacios","version":28,"id":"32130","lastModified":"1301901983000","name":"Ricardo Palacios","type":"Person","_key":"19682"} +{"label":"Loni von Friedl","version":23,"id":"32131","lastModified":"1301901744000","name":"Loni von Friedl","type":"Person","_key":"19683"} +{"label":"Frances Khan","version":18,"id":"32132","lastModified":"1301901820000","name":"Frances Khan","type":"Person","_key":"19684"} +{"label":"The Mask of Fu Manchu","description":"Boris Karloff stars as the villainous Dr. Fu Manchu in a race with a team of Englishmen to find the tomb of Ghengis Khan. Fu Manchu wants to use the relics to cause an uprising in the East to wipe out the white race. ","id":"3484","runtime":68,"imdbId":"tt0023194","version":68,"lastModified":"1301904242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91f\/4bc918f8017a3c57fe00991f\/the-mask-of-fu-manchu-mid.jpg","studio":"Cosmopolitan Productions","genre":"Adventure","title":"The Mask of Fu Manchu","releaseDate":-1172534400000,"language":"en","type":"Movie","_key":"19685"} +{"label":"Charles Vidor","version":32,"id":"32134","lastModified":"1301901473000","name":"Charles Vidor","type":"Person","_key":"19686"} +{"label":"Charles Brabin","version":20,"id":"32133","lastModified":"1301901541000","name":"Charles Brabin","type":"Person","_key":"19687"} +{"label":"Charles Starrett","version":22,"id":"32137","lastModified":"1301901744000","name":"Charles Starrett","type":"Person","_key":"19688"} +{"label":"David Torrence","version":22,"id":"32139","lastModified":"1301902033000","name":"David Torrence","type":"Person","_key":"19689"} +{"label":"The Castle of Fu Manchu","description":"The evil mastermind Fu Manchu plots his latest scheme to basically freeze over the Earth's oceans with his diabolical new device. Opposing him is his arch-nemesis, Interpol's very British Dr. Nayland Smith.","id":"3485","runtime":98,"imdbId":"tt0064338","version":200,"lastModified":"1301905303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92d\/4bc918fb017a3c57fe00992d\/die-folterkammer-des-dr-fu-man-chu-mid.jpg","studio":"Balc\u00e1zar Producciones Cinematogr\u00e1ficas","genre":"Action","title":"The Castle of Fu Manchu","releaseDate":-18662400000,"language":"en","type":"Movie","_key":"19690"} +{"label":"G\u00fcnther Stoll","version":28,"id":"26598","lastModified":"1301902195000","name":"G\u00fcnther Stoll","type":"Person","_key":"19691"} +{"label":"Maria Perschy","version":30,"id":"32152","lastModified":"1301901643000","name":"Maria Perschy","type":"Person","_key":"19692"} +{"label":"The Fiendish Plot of Dr. Fu Manchu","description":"Fu Manchu's 168th birthday celebration is dampened when a hapless flunky spills Fu's age-regressing elixir vitae. Fu sends his lackeys to round up ingredients for a new batch of elixir, starting with the Star of Leningrad diamond, nabbed from a Soviet exhibition in Washington. The FBI sends agents Capone and Williams to England to confer with Nayland Smith, an expert on Fu. ","id":"3486","runtime":108,"imdbId":"tt0080731","version":100,"lastModified":"1301903358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93a\/4bc918fc017a3c57fe00993a\/the-fiendish-plot-of-dr-fu-manchu-mid.jpg","studio":"Playboy Enterprises","genre":"Comedy","title":"The Fiendish Plot of Dr. Fu Manchu","releaseDate":334540800000,"language":"en","type":"Movie","_key":"19693"} +{"label":"Piers Haggard","version":26,"id":"32154","lastModified":"1301901541000","name":"Piers Haggard","type":"Person","_key":"19694"} +{"label":"Simon Williams","version":19,"id":"32160","lastModified":"1301901478000","name":"Simon Williams","type":"Person","_key":"19695"} +{"label":"Stratford Johns","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4c4234e37b9aa145900001d1\/stratford-johns-profile.jpg","version":34,"id":"32161","lastModified":"1301901517000","name":"Stratford Johns","type":"Person","_key":"19696"} +{"label":"Cl\u00e9ment Harari","version":24,"id":"32162","lastModified":"1301901678000","name":"Cl\u00e9ment Harari","type":"Person","_key":"19697"} +{"label":"Kwan-Young Lee","version":19,"id":"32163","lastModified":"1301901906000","name":"Kwan-Young Lee","type":"Person","_key":"19698"} +{"label":"Drums of Fu Manchu","description":"No overview found.","id":"3487","title":"Drums of Fu Manchu","language":"en","lastModified":"1301905725000","version":369,"type":"Movie","_key":"19699"} +{"label":"Drums of Fu Manchu","description":"No overview found.","id":"3488","runtime":69,"imdbId":"tt0035828","version":91,"lastModified":"1301906086000","genre":"Horror","title":"Drums of Fu Manchu","releaseDate":-823564800000,"language":"en","type":"Movie","_key":"19700"} +{"label":"John English","version":27,"id":"32174","lastModified":"1301901643000","name":"John English","type":"Person","_key":"19701"} +{"label":"William Witney","version":31,"id":"32175","lastModified":"1301901567000","name":"William Witney","type":"Person","_key":"19702"} +{"label":"William Royle","version":18,"id":"32189","lastModified":"1301901744000","name":"William Royle","type":"Person","_key":"19703"} +{"label":"Robert Kellard","version":26,"id":"32190","lastModified":"1301901560000","name":"Robert Kellard","type":"Person","_key":"19704"} +{"label":"Gloria Franklin","version":18,"id":"32191","lastModified":"1301901541000","name":"Gloria Franklin","type":"Person","_key":"19705"} +{"label":"Tom Chatterton","version":18,"id":"32193","lastModified":"1301901622000","name":"Tom Chatterton","type":"Person","_key":"19706"} +{"label":"Luana Walters","version":26,"id":"32194","lastModified":"1301901943000","name":"Luana Walters","type":"Person","_key":"19707"} +{"label":"Lal Chand Mehra","version":24,"id":"32195","lastModified":"1301901795000","name":"Lal Chand Mehra","type":"Person","_key":"19708"} +{"label":"88 Minutes","description":"\"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.","id":"3489","runtime":110,"imdbId":"tt0411061","trailer":"http:\/\/www.youtube.com\/watch?v=zUCd805JDJk","version":336,"lastModified":"1301949893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a3\/4d9504ac5e73d6225d0024a3\/88-minutes-mid.jpg","studio":"Millennium Films","genre":"Crime","title":"88 Minutes","releaseDate":1171411200000,"language":"en","tagline":"\"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.","type":"Movie","_key":"19709"} +{"label":"Leah Cairns","version":24,"id":"32202","lastModified":"1301901123000","name":"Leah Cairns","type":"Person","_key":"19710"} +{"label":"Stephen Moyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4c2d26325e73d63ccf000016\/stephen-moyer-profile.jpg","biography":"<span style=\"text-decoration: underline;\"><\/span>Stephen Moyer is best known for playing Bill Compton in the series True Blood. He is also well-known for his role as Michael in the BBC series Ny-Lon (2004) co-starring Rashida Jones.\n\nStephen is also a theater actor, having appeared in productions of The Iron Man at the Young Vic Theatre and Romeo and Juliet with the Oxford Stage\n\nOn television, he made his debut on the British sitcom Conjugal Rites in 1993. Since then, Moyer has landed roles bot","version":49,"birthday":"-7088400000","id":"32203","birthplace":"Brentwood, Essex, England, UK","lastModified":"1301901162000","name":"Stephen Moyer","type":"Person","_key":"19711"} +{"label":"Christopher Redman","version":31,"id":"32204","lastModified":"1301901131000","name":"Christopher Redman","type":"Person","_key":"19712"} +{"label":"Brendan Fletcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4c8643ec7b9aa1545b000073\/brendan-fletcher-profile.jpg","version":47,"id":"32205","lastModified":"1301901108000","name":"Brendan Fletcher","type":"Person","_key":"19713"} +{"label":"Drums of Fu Manchu","description":"Movie serial that was later edited together into a feature movie.","id":"3490","runtime":90,"imdbId":"tt0032420","version":270,"lastModified":"1301904192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d6\/4cac9d2b7b9aa1152e0001d6\/drums-of-fu-manchu-mid.jpg","genre":"Fantasy","title":"Drums of Fu Manchu","releaseDate":-940377600000,"language":"en","type":"Movie","_key":"19714"} +{"label":"Candy Boy","description":"No overview found.","id":"3508","runtime":12,"imdbId":"tt1064728","version":94,"lastModified":"1301905428000","studio":"Local Films","genre":"Animation","title":"Candy Boy","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"19715"} +{"label":"Pascal-Alex Vincent","version":21,"id":"32226","lastModified":"1301901415000","name":"Pascal-Alex Vincent","type":"Person","_key":"19716"} +{"label":"A Scanner Darkly","description":"What does a scanner see? Into the head? Into the heart? From the novel by Philip K. Dick - the sci-fi legend whose works-to-film include Blade Runner, Total Recall and Minority Report - comes A Scanner Darkly, brought to the screen by filmmaker Richard Linklater with an edgy graphic-novel look.The time: just beyond now. The place: suburbia. The story: a twisted, funny tale of people hooked on Substance D. And of a government that cheerfully destroys its citizens - their rights, their rela","id":"3509","runtime":96,"imdbId":"tt0405296","trailer":"http:\/\/www.youtube.com\/watch?v=1LUQb6XBUT0","version":821,"lastModified":"1301934933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/975\/4bc91908017a3c57fe009975\/a-scanner-darkly-mid.jpg","studio":"Warner Independent Pictures","genre":"Animation","title":"A Scanner Darkly","releaseDate":1148515200000,"language":"en","tagline":"Everything Is Not Going To Be OK","type":"Movie","_key":"19717"} +{"label":"Mitch Baker","version":27,"id":"32238","lastModified":"1301916409000","name":"Mitch Baker","type":"Person","_key":"19718"} +{"label":"Steven Chester Prince","version":24,"id":"32239","lastModified":"1301901437000","name":"Steven Chester Prince","type":"Person","_key":"19719"} +{"label":"Natasha Valdez","version":24,"id":"32240","lastModified":"1301901485000","name":"Natasha Valdez","type":"Person","_key":"19720"} +{"label":"Angela Rawna","version":25,"id":"32241","lastModified":"1301901552000","name":"Angela Rawna","type":"Person","_key":"19721"} +{"label":"Chamblee Ferguson","version":26,"id":"32242","lastModified":"1301901506000","name":"Chamblee Ferguson","type":"Person","_key":"19722"} +{"label":"Melody Chase","version":24,"id":"32243","lastModified":"1301901635000","name":"Melody Chase","type":"Person","_key":"19723"} +{"label":"Shem","description":"The coming of age story of a young Jewish boy (Newman) who travels europe in search of the grave of his Great Grandfather who was killed by the Nazis in the War. ","id":"3510","runtime":94,"imdbId":"tt0406214","version":103,"lastModified":"1301907037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc9190e017a3c57fe00999d\/shem-mid.jpg","studio":"BIF Productions","genre":"Drama","title":"Shem","releaseDate":1148601600000,"language":"en","type":"Movie","_key":"19724"} +{"label":"Istv\u00e1n Szab\u00f3","version":24,"id":"32244","lastModified":"1301901580000","name":"Istv\u00e1n Szab\u00f3","type":"Person","_key":"19725"} +{"label":"Arturo Brachetti","version":21,"id":"32245","lastModified":"1301901987000","name":"Arturo Brachetti","type":"Person","_key":"19726"} +{"label":"Hadassah Hungar Diamant","version":19,"id":"32272","lastModified":"1301901931000","name":"Hadassah Hungar Diamant","type":"Person","_key":"19727"} +{"label":"Geraldine de Bastion","version":19,"id":"32273","lastModified":"1301901931000","name":"Geraldine de Bastion","type":"Person","_key":"19728"} +{"label":"Ferrante Ferranti","version":19,"id":"32274","lastModified":"1301901931000","name":"Ferrante Ferranti","type":"Person","_key":"19729"} +{"label":"Gordana Grubjsesic","version":19,"id":"32275","lastModified":"1301901931000","name":"Gordana Grubjsesic","type":"Person","_key":"19730"} +{"label":"David Merlini","version":19,"id":"32276","lastModified":"1301901930000","name":"David Merlini","type":"Person","_key":"19731"} +{"label":"Caroline Roboh","version":20,"id":"32269","lastModified":"1301901635000","name":"Caroline Roboh","type":"Person","_key":"19732"} +{"label":"The Br\u00f8ken","description":"The life of a successful radiologist spirals out of control when she sees the spitting image of herself driving down a London street. While attempting to uncover who the imposter could be, she stumbles into a terrifying mystery that her family and closest friends are somehow involved in, leaving her with no one to trust.","id":"3511","runtime":88,"imdbId":"tt0906734","trailer":"http:\/\/www.youtube.com\/watch?v=1356","version":221,"lastModified":"1302018432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cf\/4bccebc8017a3c0f2f0001cf\/the-brken-mid.jpg","studio":"Gaumont","genre":"Indie","title":"The Br\u00f8ken","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"19733"} +{"label":"Michelle Duncan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4d9b564f5e73d64a2300000b\/michelle-duncan-profile.jpg","version":25,"id":"32248","lastModified":"1302018607000","name":"Michelle Duncan","type":"Person","_key":"19734"} +{"label":"Natasha Alderslade","version":21,"id":"32249","lastModified":"1301901584000","name":"Natasha Alderslade","type":"Person","_key":"19735"} +{"label":"Kubrick Ellis","version":19,"id":"32268","lastModified":"1301902007000","name":"Kubrick Ellis","type":"Person","_key":"19736"} +{"label":"Sean Ellis","version":39,"id":"32250","lastModified":"1301901307000","name":"Sean Ellis","type":"Person","_key":"19737"} +{"label":"Under Siege 2: Dark Territory","description":"Under Siege 2: Dark Territory is a 1995 American action film set on board a train traveling through the Rocky Mountains from Denver to Los Angeles. Directed by Geoff Murphy, it stars Steven Seagal as the ex-Navy SEAL, Casey Ryback and is the sequel to the 1992 film Under Siege also starring Seagal. The film was produced by Seagal along with Arnon Milchan and Steve Perry. The film's cast was made up of cameos and supporting roles by Everett McGill, Peter Greene, Kurtwood Smith and a then-unknown ","id":"3512","runtime":99,"imdbId":"tt0114781","trailer":"http:\/\/www.youtube.com\/watch?v=C6PFEzkwgoU","version":829,"lastModified":"1301902279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c4\/4bc91914017a3c57fe0099c4\/under-siege-2-dark-territory-mid.jpg","studio":"Warner Bros Pictures","genre":"Action","title":"Under Siege 2: Dark Territory","releaseDate":805680000000,"language":"en","tagline":"A top secret nuclear satellite. A team of international terrorists. A government held hostage. An undetectable moving headquarters. Only one hero stands in the way.","type":"Movie","_key":"19738"} +{"label":"Geoff Murphy","version":40,"id":"32277","lastModified":"1301901217000","name":"Geoff Murphy","type":"Person","_key":"19739"} +{"label":"Katherine Heigl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4bed6796017a3c3c75000005\/katherine-heigl-profile.jpg","biography":"Katherine Marie Heigl, born on November 24, 1978, is an American actress. She is best known for her role as Dr. Izzie Stevens on Grey's Anatomy and her starring role in the movies Knocked Up, Zyzzyx Road, 27 Dresses, The Ugly Truth, Killers and Life As We Know It. Heigl started her career as a child model with Wilhelmina Models before she turned her attention to acting. She made her debut in the coming-of-age film, That Night. Heigl co-starred as Isabel Evans in the television series Roswell and","version":106,"birthday":"280710000000","id":"25541","birthplace":"Washington, D.C., U.S.","lastModified":"1302011632000","name":"Katherine Heigl","type":"Person","_key":"19740"} +{"label":"Patrick Kilpatrick","version":42,"id":"32286","lastModified":"1301901466000","name":"Patrick Kilpatrick","type":"Person","_key":"19741"} +{"label":"Scott Sowers","version":25,"id":"32287","lastModified":"1301901685000","name":"Scott Sowers","type":"Person","_key":"19742"} +{"label":"Afifi Alaouie","version":24,"id":"32288","lastModified":"1301901679000","name":"Afifi Alaouie","type":"Person","_key":"19743"} +{"label":"Andy Romano","version":35,"id":"32289","lastModified":"1301901644000","name":"Andy Romano","type":"Person","_key":"19744"} +{"label":"Brenda Bakke","version":47,"id":"32290","lastModified":"1301901288000","name":"Brenda Bakke","type":"Person","_key":"19745"} +{"label":"Sandra Taylor","version":30,"id":"32291","lastModified":"1301901487000","name":"Sandra Taylor","type":"Person","_key":"19746"} +{"label":"Legionnaire","description":"Alain Lefevre is a boxer paid by a Marseille mobster to take a dive. When he wins the fight he attempts to flee to America with the mobster's girlfriend Katrina. This plan fails and he seeks escape by joining the foreign legion. As part of the legion he tangles with abusive lieutenant Steinkampf and bonds with legionnaires Luther, Mackintosh and Rosetti.","id":"3513","runtime":98,"imdbId":"tt0126388","trailer":"http:\/\/www.youtube.com\/watch?v=1677","version":530,"lastModified":"1301947712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9dc\/4bc91916017a3c57fe0099dc\/legionnaire-mid.jpg","studio":"Edward R. Pressman Film Corporation","genre":"Action","title":"Legionnaire","releaseDate":912643200000,"language":"en","type":"Movie","_key":"19747"} +{"label":"Nicholas Farrell","version":30,"id":"32357","lastModified":"1301901353000","name":"Nicholas Farrell","type":"Person","_key":"19748"} +{"label":"Ana Sofrenovic","version":25,"id":"32358","lastModified":"1301901744000","name":"Ana Sofrenovic","type":"Person","_key":"19749"} +{"label":"Mario Kalli","version":24,"id":"32359","lastModified":"1301901820000","name":"Mario Kalli","type":"Person","_key":"19750"} +{"label":"Joe Montana","version":23,"id":"32360","lastModified":"1301901744000","name":"Joe Montana","type":"Person","_key":"19751"} +{"label":"Kim R\u00f8mer","version":22,"id":"32361","lastModified":"1301902007000","name":"Kim R\u00f8mer","type":"Person","_key":"19752"} +{"label":"Selbstportrait 1","description":"No overview found.","id":"3514","runtime":9,"version":26,"lastModified":"1301907428000","genre":"Documentary","title":"Selbstportrait 1","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19753"} +{"label":"I'll Sleep When I'm Dead","description":"Will Graham, a former London crime boss who has left his former life to live as a recluse in the forest. Haunted by the blood of those he has murdered, Will wishes never to return. But when his brother commits suicide, following a sexual assault at the hands of a volatile car dealer, Will returns to London to discover the cause of his brother's death and administer justice to those responsible.","id":"3515","runtime":97,"imdbId":"tt0319531","trailer":"http:\/\/www.youtube.com\/watch?v=3310","homepage":"http:\/\/www.iswid.net\/","version":169,"lastModified":"1301904061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e5\/4bc91917017a3c57fe0099e5\/i-ll-sleep-when-i-m-dead-mid.jpg","studio":"Franchise Pictures","genre":"Thriller","title":"I'll Sleep When I'm Dead","releaseDate":1087344000000,"language":"en","type":"Movie","_key":"19754"} +{"label":"John Surman","version":21,"id":"32807","lastModified":"1301901744000","name":"John Surman","type":"Person","_key":"19755"} +{"label":"Alexander Morton","version":27,"id":"32808","lastModified":"1301901524000","name":"Alexander Morton","type":"Person","_key":"19756"} +{"label":"Paul Mohan","version":20,"id":"32809","lastModified":"1301901622000","name":"Paul Mohan","type":"Person","_key":"19757"} +{"label":"Brian Croucher","version":20,"id":"32810","lastModified":"1301901906000","name":"Brian Croucher","type":"Person","_key":"19758"} +{"label":"largo e mesto","description":"No overview found.","id":"3516","runtime":12,"version":16,"lastModified":"1301906755000","genre":"Documentary","title":"largo e mesto","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19759"} +{"label":"Lydia Gorstein","version":20,"id":"28555","lastModified":"1301901661000","name":"Lydia Gorstein","type":"Person","_key":"19760"} +{"label":"Tunten l\u00fcgen nicht","description":"No overview found.","id":"3517","runtime":59,"imdbId":"tt0304899","version":37,"lastModified":"1301906755000","studio":"Rosa von Praunheim Filmproduktion","genre":"Documentary","title":"Tunten l\u00fcgen nicht","releaseDate":978307200000,"language":"en","type":"Movie","_key":"19761"} +{"label":"Rosa von Praunheim","version":34,"id":"19864","lastModified":"1301901974000","name":"Rosa von Praunheim","type":"Person","_key":"19762"} +{"label":"Bev Stroganov","version":20,"id":"32811","lastModified":"1301901822000","name":"Bev Stroganov","type":"Person","_key":"19763"} +{"label":"Tima die G\u00f6ttliche","version":21,"id":"32812","lastModified":"1301901820000","name":"Tima die G\u00f6ttliche","type":"Person","_key":"19764"} +{"label":"Pfui, Rosa!","description":"No overview found.","id":"3518","runtime":70,"imdbId":"tt0354809","version":36,"lastModified":"1301907428000","studio":"Rosa von Praunheim Filmproduktion","genre":"Documentary","title":"Pfui, Rosa!","releaseDate":1035590400000,"language":"en","type":"Movie","_key":"19765"} +{"label":"K\u00fche, vom Nebel geschw\u00e4ngert","description":"No overview found.","id":"3519","runtime":85,"imdbId":"tt0304312","version":31,"lastModified":"1301906755000","studio":"Rosa von Praunheim Filmproduktion","genre":"Documentary","title":"K\u00fche, vom Nebel geschw\u00e4ngert","releaseDate":1031011200000,"language":"en","type":"Movie","_key":"19766"} +{"label":"Casanova '70","description":"No overview found.","id":"3520","runtime":125,"imdbId":"tt0059015","version":394,"lastModified":"1301904477000","studio":"Compagnia Cinematografica Champion","genre":"Comedy","title":"Casanova '70","releaseDate":-140486400000,"language":"en","type":"Movie","_key":"19767"} +{"label":"Mario Monicelli","version":45,"id":"32375","lastModified":"1301901499000","name":"Mario Monicelli","type":"Person","_key":"19768"} +{"label":"Enrico Maria Salerno","version":31,"id":"32377","lastModified":"1301901675000","name":"Enrico Maria Salerno","type":"Person","_key":"19769"} +{"label":"Liana Orfei","version":22,"id":"32378","lastModified":"1301902018000","name":"Liana Orfei","type":"Person","_key":"19770"} +{"label":"Moira Orfei","version":21,"id":"32379","lastModified":"1301901851000","name":"Moira Orfei","type":"Person","_key":"19771"} +{"label":"Margaret Lee","version":24,"id":"32380","lastModified":"1301901856000","name":"Margaret Lee","type":"Person","_key":"19772"} +{"label":"The Puzzle of the Red Orchid","description":"Rival gangsters from Chicago move to London and attempt to extort money from rich Britons.","id":"3521","runtime":84,"imdbId":"tt0055391","trailer":"http:\/\/www.youtube.com\/watch?v=r2_GdzFbd6s","version":66,"lastModified":"1301903857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ea\/4bc91917017a3c57fe0099ea\/das-ratsel-der-roten-orchidee-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"The Puzzle of the Red Orchid","releaseDate":-247276800000,"language":"en","type":"Movie","_key":"19773"} +{"label":"Helmut Ashley","version":24,"id":"32547","lastModified":"1301901396000","name":"Helmut Ashley","type":"Person","_key":"19774"} +{"label":"Adrian Hoven","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51e\/4ca940675e73d643eb00051e\/adrian-hoven-profile.jpg","version":43,"id":"32552","lastModified":"1301901447000","name":"Adrian Hoven","type":"Person","_key":"19775"} +{"label":"Christiane Nielsen","version":21,"id":"32553","lastModified":"1301902007000","name":"Christiane Nielsen","type":"Person","_key":"19776"} +{"label":"Wolfgang B\u00fcttner","version":22,"id":"32554","lastModified":"1301901822000","name":"Wolfgang B\u00fcttner","type":"Person","_key":"19777"} +{"label":"Herbert A.E. B\u00f6hme","version":21,"id":"32555","lastModified":"1301901679000","name":"Herbert A.E. B\u00f6hme","type":"Person","_key":"19778"} +{"label":"G\u00fcnther Jerschke","version":26,"id":"26400","lastModified":"1301901969000","name":"G\u00fcnther Jerschke","type":"Person","_key":"19779"} +{"label":"French Dressing","description":"No overview found.","id":"3522","runtime":86,"imdbId":"tt0057073","version":83,"lastModified":"1301908611000","studio":"Kenneth Harper Production","genre":"Comedy","title":"French Dressing","releaseDate":-181526400000,"language":"en","type":"Movie","_key":"19780"} +{"label":"Ken Russell","version":46,"id":"32327","lastModified":"1301959036000","name":"Ken Russell","type":"Person","_key":"19781"} +{"label":"James Booth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8af\/4ccc99275e73d650240008af\/james-booth-profile.jpg","version":32,"id":"15857","lastModified":"1301901317000","name":"James Booth","type":"Person","_key":"19782"} +{"label":"Alita Naughton","version":20,"id":"32572","lastModified":"1301901516000","name":"Alita Naughton","type":"Person","_key":"19783"} +{"label":"Bryan Pringle","version":18,"id":"22171","lastModified":"1301903120000","name":"Bryan Pringle","type":"Person","_key":"19784"} +{"label":"Robert Robinson","version":20,"id":"32573","lastModified":"1301901688000","name":"Robert Robinson","type":"Person","_key":"19785"} +{"label":"Norman Pitt","version":20,"id":"32574","lastModified":"1301901661000","name":"Norman Pitt","type":"Person","_key":"19786"} +{"label":"Henry McCarty","version":20,"id":"32575","lastModified":"1301901661000","name":"Henry McCarty","type":"Person","_key":"19787"} +{"label":"The Last Ride to Santa Cruz","description":"No overview found.","id":"3523","runtime":95,"imdbId":"tt0057247","version":57,"lastModified":"1301905008000","studio":"Rialto Film","genre":"Western","title":"The Last Ride to Santa Cruz","releaseDate":-181872000000,"language":"en","type":"Movie","_key":"19788"} +{"label":"Rolf Olsen","version":47,"id":"32576","lastModified":"1301901793000","name":"Rolf Olsen","type":"Person","_key":"19789"} +{"label":"Walter Giller","version":28,"id":"32585","lastModified":"1301901569000","name":"Walter Giller","type":"Person","_key":"19790"} +{"label":"Thomas Fritsch","version":28,"id":"32586","lastModified":"1301901569000","name":"Thomas Fritsch","type":"Person","_key":"19791"} +{"label":"Lebensborn","description":"No overview found.","id":"3524","runtime":87,"imdbId":"tt0055077","version":55,"lastModified":"1301908347000","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Lebensborn","releaseDate":-282960000000,"language":"en","type":"Movie","_key":"19792"} +{"label":"Werner Klingler","version":24,"id":"32516","lastModified":"1301901656000","name":"Werner Klingler","type":"Person","_key":"19793"} +{"label":"Emmerich Schrenk","version":22,"id":"32520","lastModified":"1301901637000","name":"Emmerich Schrenk","type":"Person","_key":"19794"} +{"label":"Joachim Mock","version":19,"id":"32521","lastModified":"1301901744000","name":"Joachim Mock","type":"Person","_key":"19795"} +{"label":"Gert G\u00fcnther Hoffmann","version":28,"id":"32522","lastModified":"1301901966000","name":"Gert G\u00fcnther Hoffmann","type":"Person","_key":"19796"} +{"label":"Waldemar Tepel","version":19,"id":"32523","lastModified":"1301901743000","name":"Waldemar Tepel","type":"Person","_key":"19797"} +{"label":"Rosemarie Kirstein","version":20,"id":"32524","lastModified":"1301901743000","name":"Rosemarie Kirstein","type":"Person","_key":"19798"} +{"label":"Renate K\u00fcster","version":19,"id":"32525","lastModified":"1301901743000","name":"Renate K\u00fcster","type":"Person","_key":"19799"} +{"label":"Hellmut Lange","version":19,"id":"32526","lastModified":"1301901820000","name":"Hellmut Lange","type":"Person","_key":"19800"} +{"label":"Horst Keitel","version":19,"id":"32527","lastModified":"1301901743000","name":"Horst Keitel","type":"Person","_key":"19801"} +{"label":"Working Girl","description":"Witty, romantic look at life in the corporate jungle. Tess McGill is an ambitious secretary with a unique approach for climbing the ladder to success. When her classy, but villainous boss breaks a leg skiing, Tess takes over her office, her apartment and even her wardrobe. She creates a deal with a handsome investment banker that will either take her to the top, or finish her off for good.","id":"3525","runtime":115,"imdbId":"tt0096463","trailer":"http:\/\/www.youtube.com\/watch?v=2266","version":324,"lastModified":"1301903179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a0\/4d6c68ec7b9aa136250043a0\/working-girl-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Working Girl","releaseDate":598579200000,"language":"en","type":"Movie","_key":"19802"} +{"label":"James Lally","version":23,"id":"32493","lastModified":"1301901906000","name":"James Lally","type":"Person","_key":"19803"} +{"label":"Robert Easton","version":31,"id":"32494","lastModified":"1301901768000","name":"Robert Easton","type":"Person","_key":"19804"} +{"label":"Frances","description":"The true story of Frances Farmer's meteoric rise to fame in Hollywood and the tragic turn her life took when she was blacklisted.","id":"3526","runtime":140,"imdbId":"tt0083967","trailer":"http:\/\/www.youtube.com\/watch?v=QJzj8dRRmbk","version":234,"lastModified":"1301908397000","genre":"Drama","title":"Frances","releaseDate":407721600000,"language":"en","type":"Movie","_key":"19805"} +{"label":"Bart Burns","version":21,"id":"32328","lastModified":"1301901622000","name":"Bart Burns","type":"Person","_key":"19806"} +{"label":"Bonnie Bartlett","version":20,"id":"32479","lastModified":"1301901743000","name":"Bonnie Bartlett","type":"Person","_key":"19807"} +{"label":"Donald Craig","version":21,"id":"32480","lastModified":"1301901769000","name":"Donald Craig","type":"Person","_key":"19808"} +{"label":"Sarah Cunningham","version":20,"id":"32481","lastModified":"1301901743000","name":"Sarah Cunningham","type":"Person","_key":"19809"} +{"label":"J. Michael Flynn","version":20,"id":"32482","lastModified":"1301901541000","name":"J. Michael Flynn","type":"Person","_key":"19810"} +{"label":"Ted King","version":20,"id":"32483","lastModified":"1301901906000","name":"Ted King","type":"Person","_key":"19811"} +{"label":"Casey MacGill","version":20,"id":"32484","lastModified":"1301901743000","name":"Casey MacGill","type":"Person","_key":"19812"} +{"label":"Don't Come Knocking","description":"Howard Spence has seen better days. Once a big Western movie star, he now drowns his disgust for his selfish and failed life with alcohol, drugs and young women. If he were to die now, nobody would shed a tear over him, that's the sad truth. Until one day Howard learns that he might have a child somewhere out there...","id":"3527","runtime":123,"imdbId":"tt0377800","homepage":"http:\/\/www.dontcomeknocking.com\/","version":373,"lastModified":"1301905760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fc\/4bc9191b017a3c57fe0099fc\/don-t-come-knocking-mid.jpg","studio":"Emotion Pictures","genre":"Drama","title":"Don't Come Knocking","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"19813"} +{"label":"Gabriel Mann","version":35,"id":"32458","lastModified":"1301901493000","name":"Gabriel Mann","type":"Person","_key":"19814"} +{"label":"Rachel Amondson","version":22,"id":"32460","lastModified":"1301901622000","name":"Rachel Amondson","type":"Person","_key":"19815"} +{"label":"Tom Farrell","version":22,"id":"32461","lastModified":"1301901906000","name":"Tom Farrell","type":"Person","_key":"19816"} +{"label":"Ein g\u00f6ttlicher Job","description":"No overview found.","id":"3528","runtime":83,"imdbId":"tt0246659","version":58,"lastModified":"1301905286000","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Ein g\u00f6ttlicher Job","releaseDate":987638400000,"language":"en","type":"Movie","_key":"19817"} +{"label":"Thorsten Wettcke","version":21,"id":"32443","lastModified":"1301901743000","name":"Thorsten Wettcke","type":"Person","_key":"19818"} +{"label":"Tamara Simunovic","version":20,"id":"32444","lastModified":"1301901541000","name":"Tamara Simunovic","type":"Person","_key":"19819"} +{"label":"Ron Matz","version":21,"id":"32445","lastModified":"1301901649000","name":"Ron Matz","type":"Person","_key":"19820"} +{"label":"Minh-Khai Phan-Thi","version":20,"id":"32446","lastModified":"1301901512000","name":"Minh-Khai Phan-Thi","type":"Person","_key":"19821"} +{"label":"Markus von Lingen","version":19,"id":"32448","lastModified":"1301901622000","name":"Markus von Lingen","type":"Person","_key":"19822"} +{"label":"The Thin Man","description":"Comedy-mystery featuring Nick and Nora Charles: a former detective and his rich, playful wife. They solve a murder case mostly for the fun of it.","id":"3529","runtime":93,"imdbId":"tt0025878","trailer":"http:\/\/www.youtube.com\/watch?v=nSNJ-8ouQEM","version":394,"lastModified":"1301904551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a05\/4bc9191c017a3c57fe009a05\/the-thin-man-mid.jpg","studio":"Cosmopolitan Productions","genre":"Comedy","title":"The Thin Man","releaseDate":-1123804800000,"language":"en","type":"Movie","_key":"19823"} +{"label":"W.S. Van Dyke","version":34,"id":"32427","lastModified":"1301901373000","name":"W.S. Van Dyke","type":"Person","_key":"19824"} +{"label":"William Powell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4bd5a450017a3c2e78000120\/william-powell-profile.jpg","version":83,"id":"32428","lastModified":"1301901083000","name":"William Powell","type":"Person","_key":"19825"} +{"label":"Nat Pendleton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32f\/4cb5dee17b9aa138d500032f\/nat-pendleton-profile.jpg","version":37,"id":"32430","lastModified":"1301901578000","name":"Nat Pendleton","type":"Person","_key":"19826"} +{"label":"Minna Gombell","version":32,"id":"32431","lastModified":"1301901670000","name":"Minna Gombell","type":"Person","_key":"19827"} +{"label":"Henry Wadsworth","version":23,"id":"32433","lastModified":"1301901762000","name":"Henry Wadsworth","type":"Person","_key":"19828"} +{"label":"William Henry","version":26,"id":"32434","lastModified":"1301901380000","name":"William Henry","type":"Person","_key":"19829"} +{"label":"Harold Huber","version":28,"id":"32435","lastModified":"1301901575000","name":"Harold Huber","type":"Person","_key":"19830"} +{"label":"Natalie Moorhead","version":23,"id":"32436","lastModified":"1301902015000","name":"Natalie Moorhead","type":"Person","_key":"19831"} +{"label":"Edward Brophy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/057\/4caf792c7b9aa12640000057\/edward-brophy-profile.jpg","version":54,"id":"32437","lastModified":"1301901492000","name":"Edward Brophy","type":"Person","_key":"19832"} +{"label":"Cyril Thornton","version":23,"id":"32438","lastModified":"1301901906000","name":"Cyril Thornton","type":"Person","_key":"19833"} +{"label":"Maureen O'Sullivan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4c696fb57b9aa138e7000005\/maureen-o-sullivan-profile.jpg","version":45,"id":"41516","lastModified":"1301901380000","name":"Maureen O'Sullivan","type":"Person","_key":"19834"} +{"label":"U-571","description":"In the midst of World War II, the battle below the seas rages. The Nazi's have the upper edge as the Allies are unable to crack their war codes. That is, until a wrecked U-boat sends out an SOS signal, and the Allies realise this is their chance to seize the 'enigma coding machine'. But masquerading as Nazi's and taking over the U-boat is the smallest of their problems..","id":"3536","runtime":116,"imdbId":"tt0141926","trailer":"http:\/\/www.youtube.com\/watch?v=jZZ4KxfKAdk","homepage":"http:\/\/www.u-571.com\/","version":861,"lastModified":"1301901428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a17\/4bc9191e017a3c57fe009a17\/u-571-mid.jpg","studio":"Canal Plus","genre":"Action","title":"U-571","releaseDate":955929600000,"language":"en","tagline":"Heroes are ordinary men who do extraordinary things in extraordinary times.","type":"Movie","_key":"19835"} +{"label":"Jon Bon Jovi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fd\/4ceea4705e73d653150000fd\/jon-bon-jovi-profile.jpg","version":52,"id":"32362","lastModified":"1302068223000","name":"Jon Bon Jovi","type":"Person","_key":"19836"} +{"label":"Will Estes","version":26,"id":"32363","lastModified":"1302068223000","name":"Will Estes","type":"Person","_key":"19837"} +{"label":"Fame","description":"A chronicle of the lives of several teenagers who attend a New York high school for students gifted in the performing arts","id":"3537","runtime":134,"imdbId":"tt0080716","version":184,"lastModified":"1301903629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a24\/4bc91922017a3c57fe009a24\/fame-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Fame","releaseDate":327283200000,"language":"en","type":"Movie","_key":"19838"} +{"label":"Eddie Barth","version":23,"id":"32384","lastModified":"1301901622000","name":"Eddie Barth","type":"Person","_key":"19839"} +{"label":"Irene Cara","version":23,"id":"32385","lastModified":"1301901443000","name":"Irene Cara","type":"Person","_key":"19840"} +{"label":"Lee Curreri","version":22,"id":"32386","lastModified":"1301901743000","name":"Lee Curreri","type":"Person","_key":"19841"} +{"label":"Laura Dean","version":22,"id":"32387","lastModified":"1301901743000","name":"Laura Dean","type":"Person","_key":"19842"} +{"label":"Antonia Franceschi","version":22,"id":"32388","lastModified":"1301901478000","name":"Antonia Franceschi","type":"Person","_key":"19843"} +{"label":"Boyd Gaines","version":27,"id":"32389","lastModified":"1301901541000","name":"Boyd Gaines","type":"Person","_key":"19844"} +{"label":"Albert Hague","version":22,"id":"32390","lastModified":"1301901622000","name":"Albert Hague","type":"Person","_key":"19845"} +{"label":"Tresa Hughes","version":25,"id":"32391","lastModified":"1301901743000","name":"Tresa Hughes","type":"Person","_key":"19846"} +{"label":"Steve Inwood","version":24,"id":"32392","lastModified":"1301901743000","name":"Steve Inwood","type":"Person","_key":"19847"} +{"label":"Paul McCrane","version":33,"id":"32393","lastModified":"1301901362000","name":"Paul McCrane","type":"Person","_key":"19848"} +{"label":"Anne Meara","version":37,"id":"32394","lastModified":"1301901120000","name":"Anne Meara","type":"Person","_key":"19849"} +{"label":"Debbie Allen","version":27,"id":"32395","lastModified":"1301901455000","name":"Debbie Allen","type":"Person","_key":"19850"} +{"label":"Richard Belzer","version":37,"id":"32396","lastModified":"1301901491000","name":"Richard Belzer","type":"Person","_key":"19851"} +{"label":"Gisela","description":"No overview found.","id":"3538","runtime":90,"imdbId":"tt0472094","version":54,"lastModified":"1301906755000","studio":"Tag\/Traum Filmproduktion","genre":"Drama","title":"Gisela","releaseDate":1119830400000,"language":"en","type":"Movie","_key":"19852"} +{"label":"Isabelle Stever","version":21,"id":"32399","lastModified":"1301901660000","name":"Isabelle Stever","type":"Person","_key":"19853"} +{"label":"Anne Weinknecht","version":20,"id":"32409","lastModified":"1301901969000","name":"Anne Weinknecht","type":"Person","_key":"19854"} +{"label":"Carlo Ljubek","version":31,"id":"32410","lastModified":"1301901590000","name":"Carlo Ljubek","type":"Person","_key":"19855"} +{"label":"Stefan Rudolf","version":20,"id":"32411","lastModified":"1301901969000","name":"Stefan Rudolf","type":"Person","_key":"19856"} +{"label":"Horst Markgraf","version":24,"id":"28930","lastModified":"1301901793000","name":"Horst Markgraf","type":"Person","_key":"19857"} +{"label":"Paul Oberpichler","version":20,"id":"32412","lastModified":"1301901660000","name":"Paul Oberpichler","type":"Person","_key":"19858"} +{"label":"Off Beat","description":"No overview found.","id":"3539","runtime":100,"imdbId":"tt0412888","version":133,"lastModified":"1301907295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d3\/4c5554e37b9aa13d4c0007d3\/kammerflimmern-mid.jpg","studio":"Bavaria Film International","genre":"Drama","title":"Off Beat","releaseDate":1094860800000,"language":"en","type":"Movie","_key":"19859"} +{"label":"Hendrik H\u00f6lzemann","version":25,"id":"32415","lastModified":"1301901569000","name":"Hendrik H\u00f6lzemann","type":"Person","_key":"19860"} +{"label":"Bibiana Beglau","version":24,"id":"32421","lastModified":"1301901587000","name":"Bibiana Beglau","type":"Person","_key":"19861"} +{"label":"Volker Spengler","version":23,"id":"32422","lastModified":"1301901793000","name":"Volker Spengler","type":"Person","_key":"19862"} +{"label":"Das letzte St\u00fcck Himmel","description":"No overview found.","id":"3540","runtime":90,"imdbId":"tt1076995","version":62,"lastModified":"1301904477000","studio":"Arte","genre":"Drama","title":"Das letzte St\u00fcck Himmel","releaseDate":1187308800000,"language":"en","type":"Movie","_key":"19863"} +{"label":"Jo Baier","version":29,"id":"32424","lastModified":"1301901696000","name":"Jo Baier","type":"Person","_key":"19864"} +{"label":"David Rott","version":25,"id":"32425","lastModified":"1301901499000","name":"David Rott","type":"Person","_key":"19865"} +{"label":"Maximilian von Pufendorf","version":22,"id":"32426","lastModified":"1301901533000","name":"Maximilian von Pufendorf","type":"Person","_key":"19866"} +{"label":"Karl Kranzkowski","version":22,"id":"28343","lastModified":"1301901569000","name":"Karl Kranzkowski","type":"Person","_key":"19867"} +{"label":"La belva col mitra","description":"No overview found.","id":"3541","runtime":91,"imdbId":"tt0075740","version":56,"lastModified":"1301907287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4d7ced9a5e73d6282a002542\/la-belva-col-mitra-mid.jpg","studio":"Supercine","genre":"Action","title":"La belva col mitra","releaseDate":246931200000,"language":"en","type":"Movie","_key":"19868"} +{"label":"Sergio Grieco","version":23,"id":"32495","lastModified":"1301901969000","name":"Sergio Grieco","type":"Person","_key":"19869"} +{"label":"Enzo Milioni","version":22,"id":"32670","lastModified":"1301901478000","name":"Enzo Milioni","type":"Person","_key":"19870"} +{"label":"Richard Harrison","version":36,"id":"32673","lastModified":"1301901579000","name":"Richard Harrison","type":"Person","_key":"19871"} +{"label":"Marina Giordana","version":20,"id":"32674","lastModified":"1301902006000","name":"Marina Giordana","type":"Person","_key":"19872"} +{"label":"Luigi Bonos","version":22,"id":"32675","lastModified":"1301901513000","name":"Luigi Bonos","type":"Person","_key":"19873"} +{"label":"Vittorio Duse","version":22,"id":"32676","lastModified":"1301985936000","name":"Vittorio Duse","type":"Person","_key":"19874"} +{"label":"Claudio Gora","version":25,"id":"32677","lastModified":"1301901699000","name":"Claudio Gora","type":"Person","_key":"19875"} +{"label":"Alberto Squillante","version":19,"id":"32678","lastModified":"1301901906000","name":"Alberto Squillante","type":"Person","_key":"19876"} +{"label":"Nello Pazzafini","version":21,"id":"32679","lastModified":"1301901714000","name":"Nello Pazzafini","type":"Person","_key":"19877"} +{"label":"Antonio Basile","version":19,"id":"32680","lastModified":"1301901906000","name":"Antonio Basile","type":"Person","_key":"19878"} +{"label":"Sergio Smacchi","version":19,"id":"32681","lastModified":"1301901906000","name":"Sergio Smacchi","type":"Person","_key":"19879"} +{"label":"Lady Chatterley","description":"French adaption of DH Lawrence's infamous novel about forbidden passion across the class divide. Winner of the 2007 Cesar Award for Best Film.","id":"3542","runtime":167,"imdbId":"tt0459880","trailer":"http:\/\/www.youtube.com\/watch?v=213","homepage":"http:\/\/www.kino.com\/ladychatterley\/#Scene_1","version":611,"lastModified":"1302018970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a32\/4bc91923017a3c57fe009a32\/lady-chatterley-mid.jpg","studio":"Saga Film","genre":"Drama","title":"Lady Chatterley","releaseDate":1162339200000,"language":"en","type":"Movie","_key":"19880"} +{"label":"Pascale Ferran","version":24,"id":"32501","lastModified":"1301901478000","name":"Pascale Ferran","type":"Person","_key":"19881"} +{"label":"Jean-Louis Coullo'ch","version":21,"id":"32512","lastModified":"1301901110000","name":"Jean-Louis Coullo'ch","type":"Person","_key":"19882"} +{"label":"H\u00e9l\u00e8ne Filli\u00e8res","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4d9641745e73d62251004155\/h-l-ne-filli-res-profile.jpg","version":30,"id":"32513","lastModified":"1301901679000","name":"H\u00e9l\u00e8ne Filli\u00e8res","type":"Person","_key":"19883"} +{"label":"Bernard Verley","version":33,"id":"32514","lastModified":"1301901529000","name":"Bernard Verley","type":"Person","_key":"19884"} +{"label":"Sava Lolov","version":21,"id":"32515","lastModified":"1301901622000","name":"Sava Lolov","type":"Person","_key":"19885"} +{"label":"Out of Rosenheim","description":"A surreal comedy depicting a diverse cast of characters and the changes they undergo as the German tourist Jasmin interacts with each of them at a remote truck stop in the middle of the Mojave desert.","id":"3543","runtime":95,"imdbId":"tt0095801","version":84,"lastModified":"1301903464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3b\/4bc91924017a3c57fe009a3b\/out-of-rosenheim-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Out of Rosenheim","releaseDate":563673600000,"language":"en","type":"Movie","_key":"19886"} +{"label":"Percy Adlon","version":27,"id":"32632","lastModified":"1301901307000","name":"Percy Adlon","type":"Person","_key":"19887"} +{"label":"Monica Calhoun","version":23,"id":"32646","lastModified":"1301901490000","name":"Monica Calhoun","type":"Person","_key":"19888"} +{"label":"Darron Flagg","version":22,"id":"32647","lastModified":"1301901512000","name":"Darron Flagg","type":"Person","_key":"19889"} +{"label":"George Aguilar","version":27,"id":"32648","lastModified":"1301901280000","name":"George Aguilar","type":"Person","_key":"19890"} +{"label":"G. Smokey Campbell","version":23,"id":"32649","lastModified":"1301901512000","name":"G. Smokey Campbell","type":"Person","_key":"19891"} +{"label":"Hans Stadlbauer","version":24,"id":"32650","lastModified":"1301901497000","name":"Hans Stadlbauer","type":"Person","_key":"19892"} +{"label":"Alan S. Craig","version":22,"id":"32651","lastModified":"1301901414000","name":"Alan S. Craig","type":"Person","_key":"19893"} +{"label":"Apesanahkwat","version":22,"id":"32652","lastModified":"1301901512000","name":"Apesanahkwat","type":"Person","_key":"19894"} +{"label":"Ronald Lee Jarvis","version":21,"id":"32653","lastModified":"1301901478000","name":"Ronald Lee Jarvis","type":"Person","_key":"19895"} +{"label":"Mark Daneri","version":21,"id":"32654","lastModified":"1301901478000","name":"Mark Daneri","type":"Person","_key":"19896"} +{"label":"Ray Young","version":22,"id":"32655","lastModified":"1301901488000","name":"Ray Young","type":"Person","_key":"19897"} +{"label":"Gary Lee Davis","version":21,"id":"32656","lastModified":"1301901478000","name":"Gary Lee Davis","type":"Person","_key":"19898"} +{"label":"Lebensborn","description":"No overview found.","id":"3544","runtime":98,"imdbId":"tt0123956","version":46,"lastModified":"1301908609000","studio":"Alfa Film","genre":"Drama","title":"Lebensborn","releaseDate":852076800000,"language":"en","type":"Movie","_key":"19899"} +{"label":"David Stephens","version":22,"id":"32537","lastModified":"1301901793000","name":"David Stephens","type":"Person","_key":"19900"} +{"label":"Melissa Carlton","version":20,"id":"32538","lastModified":"1301901679000","name":"Melissa Carlton","type":"Person","_key":"19901"} +{"label":"Greg Forshay","version":20,"id":"32539","lastModified":"1301901820000","name":"Greg Forshay","type":"Person","_key":"19902"} +{"label":"Tyler Mason","version":20,"id":"32541","lastModified":"1301901820000","name":"Tyler Mason","type":"Person","_key":"19903"} +{"label":"T.J. Myers","version":18,"id":"32542","lastModified":"1301901822000","name":"T.J. Myers","type":"Person","_key":"19904"} +{"label":"Lenny Rose","version":28,"id":"32543","lastModified":"1301901969000","name":"Lenny Rose","type":"Person","_key":"19905"} +{"label":"Monique Parent","version":43,"id":"32544","lastModified":"1301901571000","name":"Monique Parent","type":"Person","_key":"19906"} +{"label":"Arthur Roberts","version":29,"id":"98437","lastModified":"1301902992000","name":"Arthur Roberts","type":"Person","_key":"19907"} +{"label":"Spur des Falken","description":"No overview found.","id":"3545","runtime":121,"imdbId":"tt0063638","version":87,"lastModified":"1301903859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/158\/4c39f7b85e73d671d0000158\/spur-des-falken-mid.jpg","studio":"DEFA","genre":"Drama","title":"Spur des Falken","releaseDate":-48211200000,"language":"en","type":"Movie","_key":"19908"} +{"label":"Eva Seemann","version":20,"id":"32610","lastModified":"1301901759000","name":"Eva Seemann","type":"Person","_key":"19909"} +{"label":"Barbara Brylska","version":21,"id":"22590","lastModified":"1301901567000","name":"Barbara Brylska","type":"Person","_key":"19910"} +{"label":"Lali Meskhi","version":16,"id":"22591","lastModified":"1301902121000","name":"Lali Meskhi","type":"Person","_key":"19911"} +{"label":"Hartmut Beer","version":17,"id":"22592","lastModified":"1301902121000","name":"Hartmut Beer","type":"Person","_key":"19912"} +{"label":"Milan Jablonsky","version":21,"id":"32617","lastModified":"1301902012000","name":"Milan Jablonsky","type":"Person","_key":"19913"} +{"label":"Fred Ludwig","version":19,"id":"32618","lastModified":"1301901756000","name":"Fred Ludwig","type":"Person","_key":"19914"} +{"label":"Horst Kube","version":21,"id":"27298","lastModified":"1301901963000","name":"Horst Kube","type":"Person","_key":"19915"} +{"label":"Georgi Tadishvili","version":18,"id":"32619","lastModified":"1301901822000","name":"Georgi Tadishvili","type":"Person","_key":"19916"} +{"label":"Rodam Chelidze","version":19,"id":"32620","lastModified":"1301901921000","name":"Rodam Chelidze","type":"Person","_key":"19917"} +{"label":"Lavrenti Koshadze","version":19,"id":"32621","lastModified":"1301901756000","name":"Lavrenti Koshadze","type":"Person","_key":"19918"} +{"label":"Koba Kobulov","version":20,"id":"32622","lastModified":"1301902010000","name":"Koba Kobulov","type":"Person","_key":"19919"} +{"label":"Albert Giorgadze","version":19,"id":"32623","lastModified":"1301901630000","name":"Albert Giorgadze","type":"Person","_key":"19920"} +{"label":"Fritz Mohr","version":19,"id":"32624","lastModified":"1301901921000","name":"Fritz Mohr","type":"Person","_key":"19921"} +{"label":"Paul Berndt","version":19,"id":"32625","lastModified":"1301901921000","name":"Paul Berndt","type":"Person","_key":"19922"} +{"label":"Otar Koberidze","version":20,"id":"32626","lastModified":"1301902012000","name":"Otar Koberidze","type":"Person","_key":"19923"} +{"label":"Dudukhana Tserodze","version":19,"id":"32627","lastModified":"1301901921000","name":"Dudukhana Tserodze","type":"Person","_key":"19924"} +{"label":"Wilfried Roil","version":18,"id":"32628","lastModified":"1301902009000","name":"Wilfried Roil","type":"Person","_key":"19925"} +{"label":"Klaus J\u00fcrgen Kramer","version":19,"id":"32629","lastModified":"1301901921000","name":"Klaus J\u00fcrgen Kramer","type":"Person","_key":"19926"} +{"label":"Sepp Klose","version":20,"id":"32630","lastModified":"1301901921000","name":"Sepp Klose","type":"Person","_key":"19927"} +{"label":"Werner Wieland","version":20,"id":"23025","lastModified":"1301902121000","name":"Werner Wieland","type":"Person","_key":"19928"} +{"label":"Dagmar Delmare","version":19,"id":"32631","lastModified":"1301901921000","name":"Dagmar Delmare","type":"Person","_key":"19929"} +{"label":"Wsciekly","description":"No overview found.","id":"3546","runtime":102,"imdbId":"tt0081773","version":56,"lastModified":"1301904960000","studio":"Film Polski Film Agency","genre":"Thriller","title":"Wsciekly","releaseDate":316051200000,"language":"en","type":"Movie","_key":"19930"} +{"label":"Roman Zaluski","version":20,"id":"32689","lastModified":"1301901743000","name":"Roman Zaluski","type":"Person","_key":"19931"} +{"label":"Bronislaw Cieslak","version":18,"id":"32694","lastModified":"1301901683000","name":"Bronislaw Cieslak","type":"Person","_key":"19932"} +{"label":"Ewa Kania","version":19,"id":"32695","lastModified":"1301901905000","name":"Ewa Kania","type":"Person","_key":"19933"} +{"label":"Krzysztof Kowalewski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04b\/4c7de2535e73d648dd00004b\/krzysztof-kowalewski-profile.jpg","version":31,"id":"32696","lastModified":"1301950697000","name":"Krzysztof Kowalewski","type":"Person","_key":"19934"} +{"label":"Tadeusz Borowski","version":19,"id":"32697","lastModified":"1301901743000","name":"Tadeusz Borowski","type":"Person","_key":"19935"} +{"label":"Zbigniew Buczkowski","version":19,"id":"32699","lastModified":"1301901905000","name":"Zbigniew Buczkowski","type":"Person","_key":"19936"} +{"label":"Andrzej Chrzanowski","version":19,"id":"32700","lastModified":"1301901905000","name":"Andrzej Chrzanowski","type":"Person","_key":"19937"} +{"label":"Halina Rasiak\u00f3wna","version":19,"id":"54866","lastModified":"1301902296000","name":"Halina Rasiak\u00f3wna","type":"Person","_key":"19938"} +{"label":"Sabina Wisniewska","version":18,"id":"54867","lastModified":"1301902367000","name":"Sabina Wisniewska","type":"Person","_key":"19939"} +{"label":"Maria Zbyszewska","version":20,"id":"26920","lastModified":"1301902118000","name":"Maria Zbyszewska","type":"Person","_key":"19940"} +{"label":"Reflections in a Golden Eye","description":"Bizarre tale of sex, betrayal, and perversion at a military post.","id":"3547","runtime":106,"imdbId":"tt0062185","version":123,"lastModified":"1302001373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59f\/4d739a2b5e73d676c200059f\/reflections-in-a-golden-eye-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Reflections in a Golden Eye","releaseDate":-70243200000,"language":"en","type":"Movie","_key":"19941"} +{"label":"Brian Keith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/276\/4bf17359017a3c320b000276\/brian-keith-profile.jpg","version":57,"id":"32791","lastModified":"1302001373000","name":"Brian Keith","type":"Person","_key":"19942"} +{"label":"Zorro David","version":22,"id":"32792","lastModified":"1302001373000","name":"Zorro David","type":"Person","_key":"19943"} +{"label":"The Proposal","description":"No overview found.","id":"3548","runtime":91,"imdbId":"tt0179435","version":112,"lastModified":"1301905286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a2\/4d60cdda7b9aa154c70044a2\/the-proposal-mid.jpg","studio":"Front Street Productions","genre":"Drama","title":"The Proposal","releaseDate":978912000000,"language":"en","type":"Movie","_key":"19944"} +{"label":"Richard Gale","version":21,"id":"32730","lastModified":"1301901541000","name":"Richard Gale","type":"Person","_key":"19945"} +{"label":"Michael Kopsa","version":25,"id":"32748","lastModified":"1301901446000","name":"Michael Kopsa","type":"Person","_key":"19946"} +{"label":"Alex Diakun","version":38,"id":"32749","lastModified":"1301901434000","name":"Alex Diakun","type":"Person","_key":"19947"} +{"label":"Brian Jensen","version":21,"id":"32750","lastModified":"1301901477000","name":"Brian Jensen","type":"Person","_key":"19948"} +{"label":"Mark Acheson","version":32,"id":"32751","lastModified":"1301901504000","name":"Mark Acheson","type":"Person","_key":"19949"} +{"label":"Jerry Walliser","version":21,"id":"32752","lastModified":"1301901477000","name":"Jerry Walliser","type":"Person","_key":"19950"} +{"label":"After the Wedding","description":"A manager of an orphanage in India is sent to Copenhagen, Denmark, where he discovers a life-altering family secret.","id":"3549","runtime":124,"imdbId":"tt0457655","version":179,"lastModified":"1301904969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a54\/4bc91929017a3c57fe009a54\/efter-brylluppet-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"After the Wedding","releaseDate":1140739200000,"language":"en","type":"Movie","_key":"19951"} +{"label":"Stine Fischer Christensen","version":24,"id":"32682","lastModified":"1301901511000","name":"Stine Fischer Christensen","type":"Person","_key":"19952"} +{"label":"Sidse Babett Knudsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc7\/4c0e3b35017a3c33d9000dc7\/sidse-babett-knudsen-profile.jpg","version":30,"id":"32683","lastModified":"1301901347000","name":"Sidse Babett Knudsen","type":"Person","_key":"19953"} +{"label":"Rolf Lassg\u00e5rd","version":66,"id":"32684","lastModified":"1302012476000","name":"Rolf Lassg\u00e5rd","type":"Person","_key":"19954"} +{"label":"Christian Tafdrup","version":21,"id":"32685","lastModified":"1301901743000","name":"Christian Tafdrup","type":"Person","_key":"19955"} +{"label":"Frederik Gullits Ernst","version":21,"id":"32726","lastModified":"1301901743000","name":"Frederik Gullits Ernst","type":"Person","_key":"19956"} +{"label":"Kristian Gullits Ernst","version":21,"id":"32727","lastModified":"1301901743000","name":"Kristian Gullits Ernst","type":"Person","_key":"19957"} +{"label":"Ida Dwinger","version":22,"id":"32728","lastModified":"1301901743000","name":"Ida Dwinger","type":"Person","_key":"19958"} +{"label":"Mona Malm","version":21,"id":"32729","lastModified":"1301901743000","name":"Mona Malm","type":"Person","_key":"19959"} +{"label":"Mahogany","description":"Tracy, an aspiring designer from the slums of Chicago puts herself through fashion school in the hopes of becoming one of the world's top designers. Her ambition leads her to Rome spurring a choice between the man she loves or her newfound success.","id":"3554","runtime":109,"imdbId":"tt0073335","version":287,"lastModified":"1301906489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4d81512f7b9aa12db200144c\/mahogany-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Mahogany","releaseDate":181958400000,"language":"en","type":"Movie","_key":"19960"} +{"label":"Diana Ross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bc\/4d8150d67b9aa128890001bc\/diana-ross-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Diana Ernestine Earle Ross<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">, born March 26, 1944, is an award-winning singer and actress. Ross served as lead singer of the Motown group The Supremes during the 1960s. After leaving the group in 1970, Ross began a solo career that included successful ventures into film and Broadway. She received a Best Actress Academy Award no","version":26,"id":"32715","lastModified":"1301901680000","name":"Diana Ross","type":"Person","_key":"19961"} +{"label":"Beah Richards","version":21,"id":"32774","lastModified":"1301901838000","name":"Beah Richards","type":"Person","_key":"19962"} +{"label":"Lenard Norris","version":20,"id":"32775","lastModified":"1301902006000","name":"Lenard Norris","type":"Person","_key":"19963"} +{"label":"Berry Gordy","version":22,"id":"32718","lastModified":"1301901839000","name":"Berry Gordy","type":"Person","_key":"19964"} +{"label":"Tony Richardson","version":36,"id":"32765","lastModified":"1301901526000","name":"Tony Richardson","type":"Person","_key":"19965"} +{"label":"Mahogany","description":"No overview found.","id":"3555","runtime":10,"imdbId":"tt0469939","version":63,"lastModified":"1301907427000","studio":"AGK Productions","genre":"Comedy","title":"Mahogany","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"19966"} +{"label":"Alan G. Kelly","version":22,"id":"32753","lastModified":"1301901969000","name":"Alan G. Kelly","type":"Person","_key":"19967"} +{"label":"Helene Androlia","version":20,"id":"32762","lastModified":"1301901793000","name":"Helene Androlia","type":"Person","_key":"19968"} +{"label":"Andrew Gardner","version":20,"id":"32763","lastModified":"1301901793000","name":"Andrew Gardner","type":"Person","_key":"19969"} +{"label":"Peter Steven","version":20,"id":"32764","lastModified":"1301901793000","name":"Peter Steven","type":"Person","_key":"19970"} +{"label":"Mike Arnott","version":21,"id":"32754","lastModified":"1301901836000","name":"Mike Arnott","type":"Person","_key":"19971"} +{"label":"Mad Dog Coll","description":"No overview found.","id":"3556","runtime":88,"imdbId":"tt0055118","version":60,"lastModified":"1301904477000","studio":"Thalia Productions","genre":"Crime","title":"Mad Dog Coll","releaseDate":-272678400000,"language":"en","type":"Movie","_key":"19972"} +{"label":"Burt Balaban","version":21,"id":"32776","lastModified":"1301901512000","name":"Burt Balaban","type":"Person","_key":"19973"} +{"label":"Kay Doubleday","version":20,"id":"32784","lastModified":"1301901687000","name":"Kay Doubleday","type":"Person","_key":"19974"} +{"label":"Brooke Hayward","version":20,"id":"32785","lastModified":"1301902019000","name":"Brooke Hayward","type":"Person","_key":"19975"} +{"label":"John Davis Chandler","version":23,"id":"32786","lastModified":"1301901660000","name":"John Davis Chandler","type":"Person","_key":"19976"} +{"label":"Neil Nephew","version":20,"id":"32787","lastModified":"1301901969000","name":"Neil Nephew","type":"Person","_key":"19977"} +{"label":"Leroy r\u00e4umt auf","description":"No overview found.","id":"3557","runtime":18,"imdbId":"tt1114752","homepage":"http:\/\/www.leroyberlin.de","version":58,"lastModified":"1301906086000","studio":"Stormfilm Berlin","genre":"Comedy","title":"Leroy r\u00e4umt auf","releaseDate":1133049600000,"language":"en","type":"Movie","_key":"19978"} +{"label":"Armin V\u00f6lckers","version":21,"id":"32825","lastModified":"1301901905000","name":"Armin V\u00f6lckers","type":"Person","_key":"19979"} +{"label":"Alain Morel","version":20,"id":"32847","lastModified":"1301901743000","name":"Alain Morel","type":"Person","_key":"19980"} +{"label":"Frauke Sch\u00f6nhals","version":15,"id":"32848","lastModified":"1301901743000","name":"Frauke Sch\u00f6nhals","type":"Person","_key":"19981"} +{"label":"Mark Diment","version":15,"id":"32849","lastModified":"1301901743000","name":"Mark Diment","type":"Person","_key":"19982"} +{"label":"Mirco Dzienkansky","version":19,"id":"32850","lastModified":"1301901621000","name":"Mirco Dzienkansky","type":"Person","_key":"19983"} +{"label":"Doris Hofmann","version":15,"id":"32851","lastModified":"1301901905000","name":"Doris Hofmann","type":"Person","_key":"19984"} +{"label":"Paul Maa\u00df","version":20,"id":"32852","lastModified":"1301901905000","name":"Paul Maa\u00df","type":"Person","_key":"19985"} +{"label":"Hanna Steidel","version":15,"id":"32853","lastModified":"1301901905000","name":"Hanna Steidel","type":"Person","_key":"19986"} +{"label":"Errol Trotman-Harewood","version":22,"id":"32854","lastModified":"1301901743000","name":"Errol Trotman-Harewood","type":"Person","_key":"19987"} +{"label":"Barbara Wittmann","version":15,"id":"32855","lastModified":"1301901905000","name":"Barbara Wittmann","type":"Person","_key":"19988"} +{"label":"Girl, Interrupted","description":"Diagnosed with borderline personality disorder, Susanna Kaysen gets sent to a mental institution for a short stay but spends the next year avoiding her fears, descending into the skewed world of people who truly belong on the inside. Lisa Rowe is a seductive and dangerous patient who forces Kaysen to face what she's really afraid of.","id":"3558","runtime":127,"imdbId":"tt0172493","version":229,"lastModified":"1301901721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a67\/4bc9192c017a3c57fe009a67\/girl-interrupted-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Girl, Interrupted","releaseDate":944611200000,"language":"en","tagline":"The crazy thing is, you're not crazy.","type":"Movie","_key":"19989"} +{"label":"Elisabeth Moss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/961\/4cb8e2257b9aa138d8000961\/elisabeth-moss-profile.jpg","version":43,"id":"32798","lastModified":"1301901248000","name":"Elisabeth Moss","type":"Person","_key":"19990"} +{"label":"Angela Bettis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/266\/4d0590bc5e73d621a3003266\/angela-bettis-profile.jpg","version":35,"id":"32799","lastModified":"1301901199000","name":"Angela Bettis","type":"Person","_key":"19991"} +{"label":"Drucie McDaniel","version":21,"id":"32800","lastModified":"1301901477000","name":"Drucie McDaniel","type":"Person","_key":"19992"} +{"label":"Christina Myers","version":21,"id":"32801","lastModified":"1301901743000","name":"Christina Myers","type":"Person","_key":"19993"} +{"label":"Travis Fine","version":30,"id":"32802","lastModified":"1301901394000","name":"Travis Fine","type":"Person","_key":"19994"} +{"label":"Der Todestunnel - nur die Wahrheit z\u00e4hlt","description":"No overview found.","id":"3559","runtime":95,"imdbId":"tt0420255","version":52,"lastModified":"1301907427000","studio":"Bavaria Film International","genre":"Action","title":"Der Todestunnel - nur die Wahrheit z\u00e4hlt","releaseDate":1128384000000,"language":"en","type":"Movie","_key":"19995"} +{"label":"Dominique Othenin-Girard","version":29,"id":"32813","lastModified":"1301901499000","name":"Dominique Othenin-Girard","type":"Person","_key":"19996"} +{"label":"Aglaia Szyszkowitz","version":26,"id":"32818","lastModified":"1301901317000","name":"Aglaia Szyszkowitz","type":"Person","_key":"19997"} +{"label":"Ettore Bassi","version":20,"id":"32819","lastModified":"1301901583000","name":"Ettore Bassi","type":"Person","_key":"19998"} +{"label":"Michael Reale","version":20,"id":"32821","lastModified":"1301901793000","name":"Michael Reale","type":"Person","_key":"19999"} +{"label":"Dominic Raacke","version":23,"id":"32822","lastModified":"1301901793000","name":"Dominic Raacke","type":"Person","_key":"20000"} +{"label":"Gedeon Burkhard","version":51,"id":"32823","lastModified":"1301901127000","name":"Gedeon Burkhard","type":"Person","_key":"20001"} +{"label":"Balazc Schallberg","version":18,"id":"32824","lastModified":"1301901834000","name":"Balazc Schallberg","type":"Person","_key":"20002"} +{"label":"Un ombra nell'ombra","description":"No overview found.","id":"3560","runtime":106,"imdbId":"tt0131510","version":56,"lastModified":"1301418669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6c\/4bc9192c017a3c57fe009a6c\/un-ombra-nell-ombra-mid.jpg","studio":"Aretusa Film","genre":"Erotic","title":"Un ombra nell'ombra","releaseDate":309398400000,"language":"en","type":"Movie","_key":"20003"} +{"label":"Pier Carpi","version":21,"id":"32826","lastModified":"1301901621000","name":"Pier Carpi","type":"Person","_key":"20004"} +{"label":"Anne Heywood","version":20,"id":"32913","lastModified":"1301901905000","name":"Anne Heywood","type":"Person","_key":"20005"} +{"label":"Paola Tedesco","version":21,"id":"32914","lastModified":"1301901807000","name":"Paola Tedesco","type":"Person","_key":"20006"} +{"label":"Lara Wendel","version":25,"id":"32915","lastModified":"1301901442000","name":"Lara Wendel","type":"Person","_key":"20007"} +{"label":"Ezio Miani","version":19,"id":"32916","lastModified":"1301901621000","name":"Ezio Miani","type":"Person","_key":"20008"} +{"label":"West Buchanan","version":20,"id":"32917","lastModified":"1301901905000","name":"West Buchanan","type":"Person","_key":"20009"} +{"label":"Carmen Russo","version":16,"id":"102218","lastModified":"1301902905000","name":"Carmen Russo","type":"Person","_key":"20010"} +{"label":"Marina Daunia","version":20,"id":"41120","lastModified":"1301901905000","name":"Marina Daunia","type":"Person","_key":"20011"} +{"label":"Patrizia Webley","version":19,"id":"32918","lastModified":"1301901621000","name":"Patrizia Webley","type":"Person","_key":"20012"} +{"label":"Sofia Dionisio","version":16,"id":"102219","lastModified":"1301902640000","name":"Sofia Dionisio","type":"Person","_key":"20013"} +{"label":"Sonia Viviani","version":20,"id":"100410","lastModified":"1301902682000","name":"Sonia Viviani","type":"Person","_key":"20014"} +{"label":"Dirce Funari","version":29,"id":"43194","lastModified":"1301902158000","name":"Dirce Funari","type":"Person","_key":"20015"} +{"label":"Anny Papa","version":16,"id":"102220","lastModified":"1301902640000","name":"Anny Papa","type":"Person","_key":"20016"} +{"label":"La profezia","description":"No overview found.","id":"3561","runtime":100,"imdbId":"tt0076571","version":46,"lastModified":"1301905716000","studio":"Triton","genre":"Erotic","title":"La profezia","releaseDate":281577600000,"language":"en","type":"Movie","_key":"20017"} +{"label":"Lou Castel","version":22,"id":"32827","lastModified":"1301901969000","name":"Lou Castel","type":"Person","_key":"20018"} +{"label":"Laura Trotter","version":22,"id":"32828","lastModified":"1301901793000","name":"Laura Trotter","type":"Person","_key":"20019"} +{"label":"Javier Escriv\u00e1","version":20,"id":"32829","lastModified":"1301901660000","name":"Javier Escriv\u00e1","type":"Person","_key":"20020"} +{"label":"V\u00edctor Israel","version":26,"id":"32830","lastModified":"1301901448000","name":"V\u00edctor Israel","type":"Person","_key":"20021"} +{"label":"Paola Maiolini","version":22,"id":"32898","lastModified":"1301901969000","name":"Paola Maiolini","type":"Person","_key":"20022"} +{"label":"Giulio Petroni","version":24,"id":"32831","lastModified":"1301901660000","name":"Giulio Petroni","type":"Person","_key":"20023"} +{"label":"Leroy","description":"No overview found.","id":"3562","runtime":89,"imdbId":"tt0898323","homepage":"http:\/\/www.leroylize.it","version":101,"lastModified":"1301904447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ec\/4c5385e87b9aa13d4a0004ec\/leroy-mid.jpg","studio":"Dreamer Joint Venture Filmproduktion","genre":"Comedy","title":"Leroy","releaseDate":1190851200000,"language":"en","type":"Movie","_key":"20024"} +{"label":"Conrad F. Geier","version":20,"id":"32859","lastModified":"1301902006000","name":"Conrad F. Geier","type":"Person","_key":"20025"} +{"label":"Anna Hausburg","version":21,"id":"32860","lastModified":"1301901655000","name":"Anna Hausburg","type":"Person","_key":"20026"} +{"label":"Cay Helmich","version":20,"id":"32861","lastModified":"1301901820000","name":"Cay Helmich","type":"Person","_key":"20027"} +{"label":"Julius Jellinek","version":19,"id":"32862","lastModified":"1301901541000","name":"Julius Jellinek","type":"Person","_key":"20028"} +{"label":"G\u00fcnther Kaufmann","version":23,"id":"32863","lastModified":"1301901124000","name":"G\u00fcnther Kaufmann","type":"Person","_key":"20029"} +{"label":"Eva Mannschott","version":21,"id":"32864","lastModified":"1301901541000","name":"Eva Mannschott","type":"Person","_key":"20030"} +{"label":"Andreas Schulz","version":37,"id":"32865","lastModified":"1301901767000","name":"Andreas Schulz","type":"Person","_key":"20031"} +{"label":"Constantin von Jascheroff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef1\/4d4e6cda7b9aa13ab4009ef1\/constantin-von-jascheroff-profile.jpg","version":28,"id":"32866","lastModified":"1301901956000","name":"Constantin von Jascheroff","type":"Person","_key":"20032"} +{"label":"Raphael Wild","version":20,"id":"32867","lastModified":"1301902006000","name":"Raphael Wild","type":"Person","_key":"20033"} +{"label":"I Now Pronounce You Chuck and Larry","description":"Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core -- which is why when widower Larry asks Chuck to pose as his gay lover so that he can get domestic partner benefits for his kids, his buddy agrees. Things get dicey, however, when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.","id":"3563","runtime":110,"imdbId":"tt0762107","trailer":"http:\/\/www.youtube.com\/watch?v=ryrFuOLpoOM","homepage":"http:\/\/www.chuckandlarry.com\/index.php","version":358,"lastModified":"1301902027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a90\/4bc91931017a3c57fe009a90\/i-now-pronounce-you-chuck-and-larry-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"I Now Pronounce You Chuck and Larry","releaseDate":1184198400000,"language":"en","tagline":"They're as straight as can be, but don't tell anyone.","type":"Movie","_key":"20034"} +{"label":"Kevin James","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/289\/4c3b229b7b9aa10edb000289\/kevin-james-profile.jpg","version":85,"birthday":"-147834000000","id":"32895","birthplace":"Mineola, New York","lastModified":"1301901110000","name":"Kevin James","type":"Person","_key":"20035"} +{"label":"Nicholas Turturro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/475\/4ca6066b7b9aa16ed5000475\/nicholas-turturro-profile.jpg","version":36,"birthday":"-250045200000","id":"32897","birthplace":"New York City, New York, USA","lastModified":"1302065382000","name":"Nicholas Turturro","type":"Person","_key":"20036"} +{"label":"Rachel Dratch","version":62,"id":"32905","lastModified":"1301901220000","name":"Rachel Dratch","type":"Person","_key":"20037"} +{"label":"Nick Swardson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ce\/4ce199705e73d60f6c0003ce\/nick-swardson-profile.jpg","version":68,"id":"32907","lastModified":"1301901241000","name":"Nick Swardson","type":"Person","_key":"20038"} +{"label":"Le Dernier tunnel","description":"No overview found.","id":"3564","runtime":109,"imdbId":"tt0373788","version":102,"lastModified":"1301906086000","studio":"Christal Films","genre":"Crime","title":"Le Dernier tunnel","releaseDate":1079049600000,"language":"en","type":"Movie","_key":"20039"} +{"label":"Erik Canuel","version":19,"id":"32868","lastModified":"1301901621000","name":"Erik Canuel","type":"Person","_key":"20040"} +{"label":"Michel C\u00f4t\u00e9","version":30,"id":"32885","lastModified":"1301901507000","name":"Michel C\u00f4t\u00e9","type":"Person","_key":"20041"} +{"label":"Jean Lapointe","version":19,"id":"32886","lastModified":"1301901905000","name":"Jean Lapointe","type":"Person","_key":"20042"} +{"label":"Nicolas Canuel","version":21,"id":"32888","lastModified":"1301901540000","name":"Nicolas Canuel","type":"Person","_key":"20043"} +{"label":"Marie-France Marcotte","version":19,"id":"32889","lastModified":"1301901743000","name":"Marie-France Marcotte","type":"Person","_key":"20044"} +{"label":"S\u00e9bastien Huberdeau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e22\/4d4e9e935e73d617b3002e22\/s-bastien-huberdeau-profile.jpg","version":23,"id":"32890","lastModified":"1301901414000","name":"S\u00e9bastien Huberdeau","type":"Person","_key":"20045"} +{"label":"C\u00e9line Bonnier","version":19,"id":"32891","lastModified":"1301901823000","name":"C\u00e9line Bonnier","type":"Person","_key":"20046"} +{"label":"Anick Lemay","version":19,"id":"32892","lastModified":"1301901743000","name":"Anick Lemay","type":"Person","_key":"20047"} +{"label":"Jean-Fran\u00e7ois Beaupr\u00e9","version":18,"id":"32893","lastModified":"1301901825000","name":"Jean-Fran\u00e7ois Beaupr\u00e9","type":"Person","_key":"20048"} +{"label":"Underground","description":"No overview found.","id":"3565","runtime":84,"imdbId":"tt0019509","version":92,"lastModified":"1301907287000","studio":"BIF Productions","genre":"Drama","title":"Underground","releaseDate":-1309737600000,"language":"en","type":"Movie","_key":"20049"} +{"label":"Anthony Asquith","version":32,"birthday":"-2118963600000","id":"32919","lastModified":"1301901330000","name":"Anthony Asquith","type":"Person","_key":"20050"} +{"label":"Brian Aherne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c83\/4be72573017a3c35b9000c83\/brian-aherne-profile.jpg","version":34,"id":"32923","lastModified":"1301901512000","name":"Brian Aherne","type":"Person","_key":"20051"} +{"label":"Elissa Landi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/793\/4caa1f327b9aa17ace000793\/elissa-landi-profile.jpg","version":24,"id":"32924","lastModified":"1301901668000","name":"Elissa Landi","type":"Person","_key":"20052"} +{"label":"Cyril McLaglen","version":18,"id":"32925","lastModified":"1301901458000","name":"Cyril McLaglen","type":"Person","_key":"20053"} +{"label":"Norah Baring","version":21,"id":"32926","lastModified":"1301901569000","name":"Norah Baring","type":"Person","_key":"20054"} +{"label":"Heldentod - Der Tunnel und die L\u00fcge","description":"No overview found.","id":"3572","runtime":45,"imdbId":"tt0422407","version":50,"lastModified":"1301905008000","studio":"ZDF","genre":"Documentary","title":"Heldentod - Der Tunnel und die L\u00fcge","releaseDate":997228800000,"language":"en","type":"Movie","_key":"20055"} +{"label":"Britta Wauer","version":21,"id":"32963","lastModified":"1301901509000","name":"Britta Wauer","type":"Person","_key":"20056"} +{"label":"Rainer Albertz","version":20,"id":"32966","lastModified":"1301901584000","name":"Rainer Albertz","type":"Person","_key":"20057"} +{"label":"Michael Baade","version":20,"id":"32967","lastModified":"1301901679000","name":"Michael Baade","type":"Person","_key":"20058"} +{"label":"Egon Bahr","version":20,"id":"32968","lastModified":"1301901660000","name":"Egon Bahr","type":"Person","_key":"20059"} +{"label":"Nadine Beyer","version":20,"id":"32969","lastModified":"1301901660000","name":"Nadine Beyer","type":"Person","_key":"20060"} +{"label":"G\u00fcnter Bohnsack","version":20,"id":"32970","lastModified":"1301901660000","name":"G\u00fcnter Bohnsack","type":"Person","_key":"20061"} +{"label":"Johannes Fr\u00f6hner","version":20,"id":"32971","lastModified":"1301901660000","name":"Johannes Fr\u00f6hner","type":"Person","_key":"20062"} +{"label":"Regine Hildebrandt","version":20,"id":"32972","lastModified":"1301901691000","name":"Regine Hildebrandt","type":"Person","_key":"20063"} +{"label":"Hubert Hohlbein","version":20,"id":"32973","lastModified":"1301901660000","name":"Hubert Hohlbein","type":"Person","_key":"20064"} +{"label":"Hagen Koch","version":20,"id":"32974","lastModified":"1301901660000","name":"Hagen Koch","type":"Person","_key":"20065"} +{"label":"Thomas Mauch","version":28,"id":"20553","lastModified":"1301901797000","name":"Thomas Mauch","type":"Person","_key":"20066"} +{"label":"Siegfried Mechler","version":20,"id":"32975","lastModified":"1301901660000","name":"Siegfried Mechler","type":"Person","_key":"20067"} +{"label":"Joachim Neumann","version":20,"id":"32976","lastModified":"1301901660000","name":"Joachim Neumann","type":"Person","_key":"20068"} +{"label":"Ludwig A. Rehlinger","version":20,"id":"32977","lastModified":"1301901660000","name":"Ludwig A. Rehlinger","type":"Person","_key":"20069"} +{"label":"J\u00fcrgen Schreiber","version":20,"id":"32978","lastModified":"1301901679000","name":"J\u00fcrgen Schreiber","type":"Person","_key":"20070"} +{"label":"Walter Venedey","version":20,"id":"32979","lastModified":"1301901969000","name":"Walter Venedey","type":"Person","_key":"20071"} +{"label":"Hermann von Berg","version":18,"id":"32980","lastModified":"1301901683000","name":"Hermann von Berg","type":"Person","_key":"20072"} +{"label":"Hartmut Wolter","version":20,"id":"32981","lastModified":"1301901660000","name":"Hartmut Wolter","type":"Person","_key":"20073"} +{"label":"Emma","description":"Reworking of Jane Austen's classic novel, set in nineteenth century England, about the rather unsuccessful attempts at matchmaking carried out by a beautiful young woman on her unsuspecting friends.","id":"3573","runtime":121,"imdbId":"tt0116191","version":609,"lastModified":"1301903491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9e\/4bc91935017a3c57fe009a9e\/emma-mid.jpg","studio":"Haft Entertainment","genre":"Comedy","title":"Emma","releaseDate":838944000000,"language":"en","tagline":"Cupid is armed and dangerous!","type":"Movie","_key":"20074"} +{"label":"Douglas McGrath","version":60,"id":"32983","lastModified":"1302011678000","name":"Douglas McGrath","type":"Person","_key":"20075"} +{"label":"Denys Hawthorne","version":21,"id":"32989","lastModified":"1301901743000","name":"Denys Hawthorne","type":"Person","_key":"20076"} +{"label":"Sophie Thompson","version":48,"id":"32990","lastModified":"1301901199000","name":"Sophie Thompson","type":"Person","_key":"20077"} +{"label":"Doctor X","description":"A wisecracking New York reporter intrudes on a research scientist's quest to unmask The Moon Killer.","id":"3574","runtime":76,"imdbId":"tt0022827","version":96,"lastModified":"1301905551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4c56644a7b9aa151f700013f\/doctor-x-mid.jpg","studio":"First National Bank of Chicago (London Branch)","genre":"Horror","title":"Doctor X","releaseDate":-1178582400000,"language":"en","type":"Movie","_key":"20078"} +{"label":"Lee Tracy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e0e\/4be5ba6a017a3c35b4000e0e\/lee-tracy-profile.jpg","version":24,"id":"33003","lastModified":"1301901456000","name":"Lee Tracy","type":"Person","_key":"20079"} +{"label":"Preston Foster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ec\/4bd99cc2017a3c1c000001ec\/preston-foster-profile.jpg","version":39,"id":"33004","lastModified":"1301901294000","name":"Preston Foster","type":"Person","_key":"20080"} +{"label":"Harry Beresford","version":23,"id":"33005","lastModified":"1301901672000","name":"Harry Beresford","type":"Person","_key":"20081"} +{"label":"Leila Bennett","version":19,"id":"33006","lastModified":"1301901905000","name":"Leila Bennett","type":"Person","_key":"20082"} +{"label":"Robert Warwick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/920\/4cb8940b7b9aa138d8000920\/robert-warwick-profile.jpg","version":34,"birthday":"-2878938000000","id":"33007","birthplace":"Sacramento, California, USA","lastModified":"1301901699000","name":"Robert Warwick","type":"Person","_key":"20083"} +{"label":"George Rosener","version":20,"id":"32995","lastModified":"1301901905000","name":"George Rosener","type":"Person","_key":"20084"} +{"label":"The Return of Doctor X","description":"Dr. Francis Flegg , a specialist in blood disease and research, has been assisted in recent months by a mysterious fellow named Marshall Quesne who is extremely pale, with a streak of white hair. Newspaperman Garrett following the disappearance of an actress, whom he claims he saw was dead, turns up alive again, making Garrett look foolish. But he slowly becomes suspicious of Quesne and Flegg.\n","id":"3575","runtime":62,"imdbId":"tt0031851","version":83,"lastModified":"1302064111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa7\/4bc91936017a3c57fe009aa7\/the-return-of-doctor-x-mid.jpg","studio":"Warner Bros. Pictures","genre":"Horror","title":"The Return of Doctor X","releaseDate":-949363200000,"language":"en","type":"Movie","_key":"20085"} +{"label":"Rosemary Lane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25f\/4c60577c7b9aa172dd00025f\/rosemary-lane-profile.jpg","version":23,"id":"33021","lastModified":"1301901830000","name":"Rosemary Lane","type":"Person","_key":"20086"} +{"label":"Dennis Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cf\/4c4741307b9aa15de20002cf\/dennis-morgan-profile.jpg","version":33,"id":"33022","lastModified":"1301901373000","name":"Dennis Morgan","type":"Person","_key":"20087"} +{"label":"Lya Lys","version":21,"id":"33023","lastModified":"1301901789000","name":"Lya Lys","type":"Person","_key":"20088"} +{"label":"Huntz Hall","version":24,"birthday":"-1589936400000","id":"33024","birthplace":"New York City, New York, USA","lastModified":"1301901644000","name":"Huntz Hall","type":"Person","_key":"20089"} +{"label":"Howard C. Hickman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4c6972e07b9aa138e500001e\/howard-c-hickman-profile.jpg","version":23,"id":"33025","lastModified":"1301901621000","name":"Howard C. Hickman","type":"Person","_key":"20090"} +{"label":"Calling Dr. Gillespie","description":"No overview found.","id":"3576","runtime":89,"imdbId":"tt0034570","version":63,"lastModified":"1301906637000","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Calling Dr. Gillespie","releaseDate":-865296000000,"language":"en","type":"Movie","_key":"20091"} +{"label":"Harold S. Bucquet","version":22,"id":"33026","lastModified":"1301901847000","name":"Harold S. Bucquet","type":"Person","_key":"20092"} +{"label":"Philip Dorn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/257\/4c6043187b9aa172da000257\/philip-dorn-profile.jpg","version":25,"id":"33031","lastModified":"1301901333000","name":"Philip Dorn","type":"Person","_key":"20093"} +{"label":"Walter Kingsford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cdf\/4be7636c017a3c35bf000cdf\/walter-kingsford-profile.jpg","version":29,"birthday":"-2785885200000","id":"33033","birthplace":"Redhill, Surrey, England","lastModified":"1301901575000","name":"Walter Kingsford","type":"Person","_key":"20094"} +{"label":"Nell Craig","version":20,"id":"33034","lastModified":"1301901820000","name":"Nell Craig","type":"Person","_key":"20095"} +{"label":"Ruth Tobey","version":18,"id":"33035","lastModified":"1301901587000","name":"Ruth Tobey","type":"Person","_key":"20096"} +{"label":"Der Tunnel","description":"n this acclaimed drama inspired by true events, Olympic swimmer Harry Melchior (Heino Ferch) defects from East Germany in the 1960s and hatches a daring plot to help his sister (Alexandra Maria Lara) and others flee East Berlin through a 145-yard underground tunnel. With the help of an engineer (Sebastian Koch), Melchior leads the risky plan, under constant threat of being discovered by the authorities.","id":"3577","runtime":188,"imdbId":"tt0251447","version":124,"lastModified":"1301902630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aac\/4bc91936017a3c57fe009aac\/der-tunnel-mid.jpg","studio":"Sat.1","genre":"Action","title":"Der Tunnel","releaseDate":980035200000,"language":"en","type":"Movie","_key":"20097"} +{"label":"Roland Suso Richter","version":33,"id":"33036","lastModified":"1301901262000","name":"Roland Suso Richter","type":"Person","_key":"20098"} +{"label":"Nicolette Krebitz","version":24,"id":"33040","lastModified":"1301901262000","name":"Nicolette Krebitz","type":"Person","_key":"20099"} +{"label":"Claudia Michelsen","version":23,"id":"33041","lastModified":"1301901599000","name":"Claudia Michelsen","type":"Person","_key":"20100"} +{"label":"Felix Eitner","version":28,"id":"33042","lastModified":"1301901567000","name":"Felix Eitner","type":"Person","_key":"20101"} +{"label":"Heinrich Schmieder","version":21,"id":"33043","lastModified":"1301901582000","name":"Heinrich Schmieder","type":"Person","_key":"20102"} +{"label":"Uwe Kockisch","version":23,"id":"48711","lastModified":"1301901845000","name":"Uwe Kockisch","type":"Person","_key":"20103"} +{"label":"The Tunnel","description":"No overview found.","id":"3578","runtime":72,"imdbId":"tt0024703","version":95,"lastModified":"1301906086000","studio":"Bavaria Film International","genre":"Science Fiction","title":"The Tunnel","releaseDate":-1167609600000,"language":"en","type":"Movie","_key":"20104"} +{"label":"Curtis Bernhardt","version":34,"id":"33062","lastModified":"1301901777000","name":"Curtis Bernhardt","type":"Person","_key":"20105"} +{"label":"Attila H\u00f6rbiger","version":21,"id":"33070","lastModified":"1301901905000","name":"Attila H\u00f6rbiger","type":"Person","_key":"20106"} +{"label":"Olly von Flint","version":20,"id":"33071","lastModified":"1301901905000","name":"Olly von Flint","type":"Person","_key":"20107"} +{"label":"Max Weydner","version":19,"id":"33072","lastModified":"1301902007000","name":"Max Weydner","type":"Person","_key":"20108"} +{"label":"Elga Brink","version":20,"id":"33073","lastModified":"1301901905000","name":"Elga Brink","type":"Person","_key":"20109"} +{"label":"Richard Ryen","version":20,"id":"33074","lastModified":"1301901905000","name":"Richard Ryen","type":"Person","_key":"20110"} +{"label":"Georg Henrich","version":20,"id":"33075","lastModified":"1301901743000","name":"Georg Henrich","type":"Person","_key":"20111"} +{"label":"Magda Lena","version":20,"id":"33076","lastModified":"1301901905000","name":"Magda Lena","type":"Person","_key":"20112"} +{"label":"Will Dohm","version":21,"id":"33077","lastModified":"1301901905000","name":"Will Dohm","type":"Person","_key":"20113"} +{"label":"Ferdinand Marian","version":23,"id":"33078","lastModified":"1301901446000","name":"Ferdinand Marian","type":"Person","_key":"20114"} +{"label":"Josef Eichheim","version":20,"id":"33079","lastModified":"1301901743000","name":"Josef Eichheim","type":"Person","_key":"20115"} +{"label":"G\u00fcnther Vogdt","version":20,"id":"33080","lastModified":"1301901905000","name":"G\u00fcnther Vogdt","type":"Person","_key":"20116"} +{"label":"Erna Fentsch","version":22,"id":"33081","lastModified":"1301901695000","name":"Erna Fentsch","type":"Person","_key":"20117"} +{"label":"Beppo Brem","version":29,"id":"33082","lastModified":"1301901566000","name":"Beppo Brem","type":"Person","_key":"20118"} +{"label":"Otto Br\u00fcggemann","version":20,"id":"33083","lastModified":"1301901743000","name":"Otto Br\u00fcggemann","type":"Person","_key":"20119"} +{"label":"Friedrich Ulmer","version":20,"id":"33084","lastModified":"1301901905000","name":"Friedrich Ulmer","type":"Person","_key":"20120"} +{"label":"Shadow Realm","description":"No overview found.","id":"3579","runtime":120,"imdbId":"tt0328723","homepage":"http:\/\/www.scifi.com\/onair\/scifipictures\/shadowrealm\/","version":120,"lastModified":"1301906086000","genre":"Horror","title":"Shadow Realm","releaseDate":1027728000000,"language":"en","type":"Movie","_key":"20121"} +{"label":"Miguel Ferrer","version":58,"id":"15860","lastModified":"1301901220000","name":"Miguel Ferrer","type":"Person","_key":"20122"} +{"label":"Anna Hagan","version":23,"id":"33046","lastModified":"1301901676000","name":"Anna Hagan","type":"Person","_key":"20123"} +{"label":"John Dadey","version":20,"id":"33047","lastModified":"1301901997000","name":"John Dadey","type":"Person","_key":"20124"} +{"label":"Matthew Munn","version":20,"id":"33048","lastModified":"1301901969000","name":"Matthew Munn","type":"Person","_key":"20125"} +{"label":"Giacomo Baessato","version":25,"id":"33049","lastModified":"1301901969000","name":"Giacomo Baessato","type":"Person","_key":"20126"} +{"label":"Terry Howson","version":20,"id":"33050","lastModified":"1301901969000","name":"Terry Howson","type":"Person","_key":"20127"} +{"label":"John B. Lowe","version":20,"id":"33051","lastModified":"1301901969000","name":"John B. Lowe","type":"Person","_key":"20128"} +{"label":"Chiara Zanni","version":62,"id":"33053","lastModified":"1301901161000","name":"Chiara Zanni","type":"Person","_key":"20129"} +{"label":"Keith Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/161\/4c179dd77b9aa108d8000161\/keith-gordon-profile.jpg","version":48,"id":"33054","lastModified":"1301901248000","name":"Keith Gordon","type":"Person","_key":"20130"} +{"label":"Paul Shapiro","version":18,"id":"17312","lastModified":"1301901587000","name":"Paul Shapiro","type":"Person","_key":"20131"} +{"label":"Ian Toynton","version":20,"id":"33056","lastModified":"1301902006000","name":"Ian Toynton","type":"Person","_key":"20132"} +{"label":"Changeling","description":"A mother's prayer for her kidnapped son to return home is answered, though it doesn't take long for her to suspect the boy who comes back is not hers.","id":"3580","runtime":141,"imdbId":"tt0824747","trailer":"http:\/\/www.youtube.com\/watch?v=T0A3ZynBbhg","version":468,"lastModified":"1301901355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aee\/4bc9193f017a3c57fe009aee\/the-changeling-mid.jpg","studio":"Imagine Entertainment","genre":"Drama","title":"Changeling","releaseDate":1225411200000,"language":"en","type":"Movie","_key":"20133"} +{"label":"Jeffrey Donovan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/481\/4bfa71a2017a3c702f000481\/jeffrey-donovan-profile.jpg","version":29,"id":"52886","lastModified":"1301901512000","name":"Jeffrey Donovan","type":"Person","_key":"20134"} +{"label":"Geoff Pierson","version":30,"id":"25879","lastModified":"1301901248000","name":"Geoff Pierson","type":"Person","_key":"20135"} +{"label":"Amy Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05f\/4c125a637b9aa17ec300005f\/amy-ryan-profile.jpg","version":55,"id":"39388","lastModified":"1301901123000","name":"Amy Ryan","type":"Person","_key":"20136"} +{"label":"Death Line","description":"No overview found.","id":"3581","runtime":87,"imdbId":"tt0068458","version":74,"lastModified":"1301904980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4c1b813b7b9aa1178e00001d\/death-line-mid.jpg","studio":"Harbor Ventures","genre":"Horror","title":"Death Line","releaseDate":84153600000,"language":"en","type":"Movie","_key":"20137"} +{"label":"Gary Sherman","version":28,"id":"33094","lastModified":"1301901578000","name":"Gary Sherman","type":"Person","_key":"20138"} +{"label":"David Ladd","version":34,"id":"33104","lastModified":"1301901554000","name":"David Ladd","type":"Person","_key":"20139"} +{"label":"Sharon Gurney","version":20,"id":"33105","lastModified":"1301901643000","name":"Sharon Gurney","type":"Person","_key":"20140"} +{"label":"Hugh Armstrong","version":20,"id":"33106","lastModified":"1301902006000","name":"Hugh Armstrong","type":"Person","_key":"20141"} +{"label":"June Turner","version":20,"id":"33107","lastModified":"1301902000000","name":"June Turner","type":"Person","_key":"20142"} +{"label":"James Cossins","version":26,"id":"33109","lastModified":"1301901606000","name":"James Cossins","type":"Person","_key":"20143"} +{"label":"Heather Stoney","version":19,"id":"33110","lastModified":"1301901934000","name":"Heather Stoney","type":"Person","_key":"20144"} +{"label":"The Millionairess","description":"When her father dies, Epifania Parerga, an Italian in London, becomes the world's richest woman. She feels incomplete without a husband and falls in love with a humble, Indian physician, Ahmed el Kabir, much loved by his indigent English patients. ","id":"3582","runtime":89,"imdbId":"tt0054086","version":117,"lastModified":"1301905828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af3\/4bc9193f017a3c57fe009af3\/the-millionairess-mid.jpg","studio":"Dimitri De Grunwald Production","genre":"Comedy","title":"The Millionairess","releaseDate":-290476800000,"language":"en","type":"Movie","_key":"20145"} +{"label":"Noel Purcell","version":28,"id":"33090","lastModified":"1301901966000","name":"Noel Purcell","type":"Person","_key":"20146"} +{"label":"Virginia Vernon","version":19,"id":"33091","lastModified":"1301901905000","name":"Virginia Vernon","type":"Person","_key":"20147"} +{"label":"Eleanor Summerfield","version":24,"id":"33092","lastModified":"1301901810000","name":"Eleanor Summerfield","type":"Person","_key":"20148"} +{"label":"Pauline Jameson","version":20,"id":"33093","lastModified":"1301901974000","name":"Pauline Jameson","type":"Person","_key":"20149"} +{"label":"Der Tunnel","description":"No overview found.","id":"3583","runtime":90,"imdbId":"tt0165999","version":94,"lastModified":"1301905341000","studio":"ZDF","genre":"Drama","title":"Der Tunnel","releaseDate":410227200000,"language":"en","type":"Movie","_key":"20150"} +{"label":"Wilm ten Haaf","version":22,"id":"26826","lastModified":"1301901793000","name":"Wilm ten Haaf","type":"Person","_key":"20151"} +{"label":"Elert Bode","version":21,"id":"33116","lastModified":"1301924786000","name":"Elert Bode","type":"Person","_key":"20152"} +{"label":"Jo Bolling","version":20,"id":"33117","lastModified":"1301902006000","name":"Jo Bolling","type":"Person","_key":"20153"} +{"label":"Ines Jacob-Kuballa","version":20,"id":"33118","lastModified":"1301901820000","name":"Ines Jacob-Kuballa","type":"Person","_key":"20154"} +{"label":"Gisela Keiner","version":20,"id":"33119","lastModified":"1301902031000","name":"Gisela Keiner","type":"Person","_key":"20155"} +{"label":"Eva Kotthaus","version":21,"id":"33120","lastModified":"1301901793000","name":"Eva Kotthaus","type":"Person","_key":"20156"} +{"label":"Max Volkert Martens","version":18,"id":"33121","lastModified":"1301902006000","name":"Max Volkert Martens","type":"Person","_key":"20157"} +{"label":"Sabine Postel","version":20,"id":"33122","lastModified":"1301902006000","name":"Sabine Postel","type":"Person","_key":"20158"} +{"label":"Ludwig Thiesen","version":20,"id":"33123","lastModified":"1301902006000","name":"Ludwig Thiesen","type":"Person","_key":"20159"} +{"label":"Clara Walbroehl","version":20,"id":"33124","lastModified":"1301901660000","name":"Clara Walbroehl","type":"Person","_key":"20160"} +{"label":"Kaiky\u00f4","description":"No overview found.","id":"3584","runtime":142,"imdbId":"tt0215887","version":50,"lastModified":"1301906190000","studio":"Toho Company","genre":"Drama","title":"Kaiky\u00f4","releaseDate":403574400000,"language":"en","type":"Movie","_key":"20161"} +{"label":"Shir\u00f4 Moritani","version":19,"id":"33125","lastModified":"1301901597000","name":"Shir\u00f4 Moritani","type":"Person","_key":"20162"} +{"label":"Tomokazu Miura","version":29,"id":"33134","lastModified":"1301901857000","name":"Tomokazu Miura","type":"Person","_key":"20163"} +{"label":"Chish\u00fb Ry\u00fb","version":30,"id":"33135","lastModified":"1301901378000","name":"Chish\u00fb Ry\u00fb","type":"Person","_key":"20164"} +{"label":"Sayuri Yoshinaga","version":24,"id":"33136","lastModified":"1301901702000","name":"Sayuri Yoshinaga","type":"Person","_key":"20165"} +{"label":"Naoko Otani","version":20,"id":"33137","lastModified":"1301901840000","name":"Naoko Otani","type":"Person","_key":"20166"} +{"label":"Ken Takakura","version":42,"id":"73427","lastModified":"1302052174000","name":"Ken Takakura","type":"Person","_key":"20167"} +{"label":"Clockmaker","description":"No overview found.","id":"3585","runtime":90,"imdbId":"tt0160139","version":74,"lastModified":"1301906189000","studio":"Castel Film Romania","genre":"Adventure","title":"Clockmaker","releaseDate":903398400000,"language":"en","type":"Movie","_key":"20168"} +{"label":"Christopher R\u00e9my","version":18,"id":"33138","lastModified":"1301901833000","name":"Christopher R\u00e9my","type":"Person","_key":"20169"} +{"label":"Christopher Coppola","version":25,"id":"33139","lastModified":"1301901502000","name":"Christopher Coppola","type":"Person","_key":"20170"} +{"label":"Anthony Medwetz","version":20,"id":"33150","lastModified":"1301901977000","name":"Anthony Medwetz","type":"Person","_key":"20171"} +{"label":"Katie Johnston","version":20,"id":"33151","lastModified":"1301901800000","name":"Katie Johnston","type":"Person","_key":"20172"} +{"label":"Zachary McLemore","version":21,"id":"33152","lastModified":"1301901665000","name":"Zachary McLemore","type":"Person","_key":"20173"} +{"label":"Pierrino Mascarino","version":22,"id":"33153","lastModified":"1301901800000","name":"Pierrino Mascarino","type":"Person","_key":"20174"} +{"label":"Daisy Nystul","version":20,"id":"33154","lastModified":"1301901820000","name":"Daisy Nystul","type":"Person","_key":"20175"} +{"label":"Tom Gulager","version":20,"id":"33155","lastModified":"1301901833000","name":"Tom Gulager","type":"Person","_key":"20176"} +{"label":"Pr\u00eat-\u00e0-porter","description":"Paris Fashion Week draws the usual bunch of people; designers, reporters, models, magazine editors, photographers. Follows the various storylines of these characters, centering around a murder investigation of a prominent fashion figure. Features an all-star cast.","id":"3586","runtime":133,"imdbId":"tt0110907","version":124,"lastModified":"1301903464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4bf3d29b017a3c320f00053f\/pret-a-porter-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Pr\u00eat-\u00e0-porter","releaseDate":788140800000,"language":"en","type":"Movie","_key":"20177"} +{"label":"Tara Leon","version":19,"id":"33158","lastModified":"1301901621000","name":"Tara Leon","type":"Person","_key":"20178"} +{"label":"Georgianna Robertson","version":20,"id":"33159","lastModified":"1301901621000","name":"Georgianna Robertson","type":"Person","_key":"20179"} +{"label":"Anne Canovas","version":24,"id":"33160","lastModified":"1301901603000","name":"Anne Canovas","type":"Person","_key":"20180"} +{"label":"Fran\u00e7ois Cluzet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3db\/4d07b9e45e73d621a30043db\/francois-cluzet-profile.jpg","version":67,"id":"33161","lastModified":"1301901220000","name":"Fran\u00e7ois Cluzet","type":"Person","_key":"20181"} +{"label":"Harry Belafonte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/127\/4bd5a4f5017a3c2e78000127\/harry-belafonte-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; TEXT-INDENT: 0.5in; MARGIN: 0in 0in 0pt\"><B><SPAN style=\"FONT-FAMILY: Batang; FONT-SIZE: 11pt; mso-ansi-language: EN; mso-bidi-font-family: Tahoma\" lang=EN>Harold George<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: Batang; FONT-SIZE: 11pt; mso-ansi-language: EN; mso-bidi-font-family: Tahoma\" lang=EN> \"<B>Harry<\/B>\" <B>Belafonte, Jr.<\/B> (originally <B>Belafonete<\/B>; born March 1, 1927) is an American of Jamaican and Martiniquan descent who is a singer, actor, and social ac","version":38,"birthday":"-1351904400000","id":"33162","birthplace":"Jamaica","lastModified":"1301901322000","name":"Harry Belafonte","type":"Person","_key":"20182"} +{"label":"Claudia Schiffer","version":24,"id":"33163","lastModified":"1301901541000","name":"Claudia Schiffer","type":"Person","_key":"20183"} +{"label":"Thierry Mugler","version":19,"id":"33164","lastModified":"1301901621000","name":"Thierry Mugler","type":"Person","_key":"20184"} +{"label":"Tatjana Patitz","version":21,"id":"33165","lastModified":"1301901621000","name":"Tatjana Patitz","type":"Person","_key":"20185"} +{"label":"Bogus","description":"No overview found.","id":"3587","runtime":110,"imdbId":"tt0115725","version":206,"lastModified":"1301905385000","studio":"New Regency Pictures","genre":"Comedy","title":"Bogus","releaseDate":841968000000,"language":"en","type":"Movie","_key":"20186"} +{"label":"Denis Mercier","version":20,"id":"33157","lastModified":"1301901992000","name":"Denis Mercier","type":"Person","_key":"20187"} +{"label":"Sheryl Lee Ralph","version":31,"id":"33613","lastModified":"1301901686000","name":"Sheryl Lee Ralph","type":"Person","_key":"20188"} +{"label":"Barbara Hamilton","version":20,"id":"33614","lastModified":"1301902029000","name":"Barbara Hamilton","type":"Person","_key":"20189"} +{"label":"A River Made to Drown in","description":"No overview found.","id":"3588","runtime":98,"imdbId":"tt0165445","version":82,"lastModified":"1301904727000","studio":"Island Park Films","genre":"Drama","title":"A River Made to Drown in","releaseDate":852076800000,"language":"en","type":"Movie","_key":"20190"} +{"label":"James Merendino","version":28,"id":"33156","lastModified":"1301901357000","name":"James Merendino","type":"Person","_key":"20191"} +{"label":"Michael Saucedo","version":20,"id":"33623","lastModified":"1301901829000","name":"Michael Saucedo","type":"Person","_key":"20192"} +{"label":"It Happened Tomorrow","description":"A young turn-of-the-century newspaper man finds he can get hold of the next day's paper. This brings more problems than fortune, especially as his new girlfriend is part of a phony clairvoyant act.","id":"3589","runtime":85,"imdbId":"tt0036962","version":257,"lastModified":"1301905650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afc\/4bc91942017a3c57fe009afc\/it-happened-tomorrow-mid.jpg","studio":"Arnold Pressburger Films","genre":"Comedy","title":"It Happened Tomorrow","releaseDate":-807753600000,"language":"en","type":"Movie","_key":"20193"} +{"label":"Ren\u00e9 Clair","version":52,"id":"33166","lastModified":"1302041433000","name":"Ren\u00e9 Clair","type":"Person","_key":"20194"} +{"label":"George Cleveland","version":26,"id":"32218","lastModified":"1301901773000","name":"George Cleveland","type":"Person","_key":"20195"} +{"label":"George Chandler","version":28,"id":"33178","lastModified":"1301901663000","name":"George Chandler","type":"Person","_key":"20196"} +{"label":"Eddie Acuff","version":33,"id":"33179","lastModified":"1301901803000","name":"Eddie Acuff","type":"Person","_key":"20197"} +{"label":"Paul Guilfoyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4cc6d4677b9aa15b2200005d\/paul-guilfoyle-profile.jpg","version":32,"id":"104714","lastModified":"1301902053000","name":"Paul Guilfoyle","type":"Person","_key":"20198"} +{"label":"Tainstvennyy ostrov","description":"No overview found.","id":"3590","runtime":75,"imdbId":"tt0034260","version":50,"lastModified":"1301907446000","genre":"Adventure","title":"Tainstvennyy ostrov","releaseDate":-915148800000,"language":"en","type":"Movie","_key":"20199"} +{"label":"Eduard Pentslin","version":21,"id":"33200","lastModified":"1301901666000","name":"Eduard Pentslin","type":"Person","_key":"20200"} +{"label":"A. Krasnopolsky","version":20,"id":"33206","lastModified":"1301901979000","name":"A. Krasnopolsky","type":"Person","_key":"20201"} +{"label":"Pavel Kiyansky","version":20,"id":"33207","lastModified":"1301901979000","name":"Pavel Kiyansky","type":"Person","_key":"20202"} +{"label":"A. Andriyenko-Zemskov","version":20,"id":"33208","lastModified":"1301901978000","name":"A. Andriyenko-Zemskov","type":"Person","_key":"20203"} +{"label":"I. Kozlov","version":18,"id":"33209","lastModified":"1301902012000","name":"I. Kozlov","type":"Person","_key":"20204"} +{"label":"R. Ross","version":20,"id":"33210","lastModified":"1301901979000","name":"R. Ross","type":"Person","_key":"20205"} +{"label":"Yuri Grammatikati","version":18,"id":"33211","lastModified":"1301902016000","name":"Yuri Grammatikati","type":"Person","_key":"20206"} +{"label":"Andrei Sova","version":20,"id":"33212","lastModified":"1301901979000","name":"Andrei Sova","type":"Person","_key":"20207"} +{"label":"Nikolai Komissarov","version":20,"id":"33213","lastModified":"1301901801000","name":"Nikolai Komissarov","type":"Person","_key":"20208"} +{"label":"One Million Years B.C.","description":"Caveman Tumak is banished from his savage tribe. He finds a brief home among a group of gentle seacoast dwelling cave people until he is banished from them as well. Missing him, one of their women, Loana leaves with him, deciding to face the harsh prehistoric world with its monsters and volcanos as a couple.","id":"3591","runtime":100,"imdbId":"tt0060782","version":139,"lastModified":"1301903932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05d\/4c345a667b9aa17a3900005d\/one-million-years-b-c-mid.jpg","studio":"Hammer Film Productions","genre":"Science Fiction","title":"One Million Years B.C.","releaseDate":-97977600000,"language":"en","type":"Movie","_key":"20209"} +{"label":"Don Chaffey","version":29,"id":"25558","lastModified":"1301901785000","name":"Don Chaffey","type":"Person","_key":"20210"} +{"label":"Percy Herbert","version":38,"id":"33220","lastModified":"1301901666000","name":"Percy Herbert","type":"Person","_key":"20211"} +{"label":"Jean Wladon","version":19,"id":"33221","lastModified":"1301901947000","name":"Jean Wladon","type":"Person","_key":"20212"} +{"label":"Lisa Thomas","version":19,"id":"33222","lastModified":"1301901947000","name":"Lisa Thomas","type":"Person","_key":"20213"} +{"label":"One Million B.C.","description":"No overview found.","id":"3592","runtime":80,"imdbId":"tt0032871","version":77,"lastModified":"1301904019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b17\/4bc91945017a3c57fe009b17\/one-million-b-c-mid.jpg","studio":"HAL Films","genre":"Fantasy","title":"One Million B.C.","releaseDate":-936748800000,"language":"en","type":"Movie","_key":"20214"} +{"label":"Hal Roach","version":80,"id":"33223","lastModified":"1301901597000","name":"Hal Roach","type":"Person","_key":"20215"} +{"label":"Hal Roach Jr.","version":20,"id":"33224","lastModified":"1301901743000","name":"Hal Roach Jr.","type":"Person","_key":"20216"} +{"label":"Carole Landis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d4\/4cb35c9d7b9aa126410005d4\/carole-landis-profile.jpg","version":22,"id":"33229","lastModified":"1301901378000","name":"Carole Landis","type":"Person","_key":"20217"} +{"label":"John Hubbard","version":27,"id":"33230","lastModified":"1301901943000","name":"John Hubbard","type":"Person","_key":"20218"} +{"label":"Mamo Clark","version":19,"id":"33232","lastModified":"1301901904000","name":"Mamo Clark","type":"Person","_key":"20219"} +{"label":"Edgar Edwards","version":24,"id":"33233","lastModified":"1301901904000","name":"Edgar Edwards","type":"Person","_key":"20220"} +{"label":"Nigel De Brulier","version":25,"id":"34047","lastModified":"1301901774000","name":"Nigel De Brulier","type":"Person","_key":"20221"} +{"label":"Dr. Cyclops","description":"No overview found.","id":"3593","runtime":76,"imdbId":"tt0032412","trailer":"http:\/\/www.youtube.com\/watch?v=2811","version":81,"lastModified":"1301904474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b20\/4bc91946017a3c57fe009b20\/dr-cyclops-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Dr. Cyclops","releaseDate":-937958400000,"language":"en","type":"Movie","_key":"20222"} +{"label":"Thomas Coley","version":20,"id":"33251","lastModified":"1301901458000","name":"Thomas Coley","type":"Person","_key":"20223"} +{"label":"Janice Logan","version":20,"id":"33252","lastModified":"1301901445000","name":"Janice Logan","type":"Person","_key":"20224"} +{"label":"Frank Yaconelli","version":20,"id":"33253","lastModified":"1301901956000","name":"Frank Yaconelli","type":"Person","_key":"20225"} +{"label":"Frank Reicher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30e\/4cb5d8d67b9aa138d800030e\/frank-reicher-profile.jpg","version":32,"id":"3245","lastModified":"1301901304000","name":"Frank Reicher","type":"Person","_key":"20226"} +{"label":"The Number 23","description":"Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.","id":"3594","runtime":98,"imdbId":"tt0481369","trailer":"http:\/\/www.youtube.com\/watch?v=226","homepage":"http:\/\/wwws.warnerbros.de\/number23\/","version":327,"lastModified":"1301901804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/912\/4d42f5967b9aa15bb0004912\/the-number-23-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"The Number 23","releaseDate":1172016000000,"language":"en","tagline":"First it takes hold of your mind...then it takes hold of your life.","type":"Movie","_key":"20227"} +{"label":"Logan Lerman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30f\/4bed0b35017a3c37a300030f\/logan-lerman-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, Verdana; font-size: 11px; \">Born and raised in Beverly Hills, Logan Lerman wanted to become an actor at an early age. So he told his mother of his desire to be an actor when he was 2 1\/2 years old. At the age of 4, Logan had an agent and was booked for two commercials. His first appearance on the big screen was as William, the youngest son of Mel Gibson's character in The Patriot (2000). Also in 2000, he appeared with the same actor (Gibson), this time","version":66,"birthday":"695775600000","id":"33235","birthplace":"Beverly Hills, California, USA","lastModified":"1301904061000","name":"Logan Lerman","type":"Person","_key":"20228"} +{"label":"Rhona Mitra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4bcc0df4017a3c0f30000061\/rhona-mitra-profile.jpg","version":69,"id":"25702","lastModified":"1301904071000","name":"Rhona Mitra","type":"Person","_key":"20229"} +{"label":"Paul Butcher","version":29,"id":"33706","lastModified":"1301901482000","name":"Paul Butcher","type":"Person","_key":"20230"} +{"label":"David Stifel","version":27,"id":"33707","lastModified":"1301901385000","name":"David Stifel","type":"Person","_key":"20231"} +{"label":"Ransom","description":"When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.","id":"3595","runtime":117,"imdbId":"tt0117438","trailer":"http:\/\/www.youtube.com\/watch?v=3347","version":227,"lastModified":"1301904496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b47\/4bc9194d017a3c57fe009b47\/ransom-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Ransom","releaseDate":847411200000,"language":"en","type":"Movie","_key":"20232"} +{"label":"Brawley Nolte","version":23,"id":"33239","lastModified":"1301901512000","name":"Brawley Nolte","type":"Person","_key":"20233"} +{"label":"Nancy Ticotin","version":22,"id":"33240","lastModified":"1301901621000","name":"Nancy Ticotin","type":"Person","_key":"20234"} +{"label":"Michael Gaston","version":34,"id":"33241","lastModified":"1301901182000","name":"Michael Gaston","type":"Person","_key":"20235"} +{"label":"Kevin Neil McCready","version":23,"id":"33242","lastModified":"1301901678000","name":"Kevin Neil McCready","type":"Person","_key":"20236"} +{"label":"Allen Bernstein","version":23,"id":"33243","lastModified":"1301902006000","name":"Allen Bernstein","type":"Person","_key":"20237"} +{"label":"Things to Come","description":"Late 1960 and the world consists of feudal cities after decades of a global war and plague. 2035 and the world has been rebuilt with fantastic technology, but has progress gone to far and has man learned anything.","id":"3596","runtime":117,"imdbId":"tt0028358","version":147,"lastModified":"1301904540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b58\/4bc9194e017a3c57fe009b58\/things-to-come-mid.jpg","studio":"London Film Productions","genre":"Drama","title":"Things to Come","releaseDate":-1068681600000,"language":"en","type":"Movie","_key":"20238"} +{"label":"William Cameron Menzies","version":32,"birthday":"-2317078800000","id":"11489","birthplace":"New Haven, Connecticut, USA","lastModified":"1301901489000","name":"William Cameron Menzies","type":"Person","_key":"20239"} +{"label":"Edward Chapman","version":28,"id":"33267","lastModified":"1301901398000","name":"Edward Chapman","type":"Person","_key":"20240"} +{"label":"Margaretta Scott","version":19,"id":"33268","lastModified":"1301901904000","name":"Margaretta Scott","type":"Person","_key":"20241"} +{"label":"Maurice Braddell","version":16,"id":"100783","lastModified":"1301902905000","name":"Maurice Braddell","type":"Person","_key":"20242"} +{"label":"Sophie Stewart","version":20,"id":"33272","lastModified":"1301901637000","name":"Sophie Stewart","type":"Person","_key":"20243"} +{"label":"Ann Todd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4cdc29897b9aa137fe000018\/ann-todd-profile.jpg","version":28,"id":"100784","lastModified":"1302031788000","name":"Ann Todd","type":"Person","_key":"20244"} +{"label":"Pearl Argyle","version":16,"id":"100785","lastModified":"1301902905000","name":"Pearl Argyle","type":"Person","_key":"20245"} +{"label":"Kenneth Villiers","version":16,"id":"100786","lastModified":"1301902905000","name":"Kenneth Villiers","type":"Person","_key":"20246"} +{"label":"Patrick Barr","version":19,"id":"100787","lastModified":"1301902490000","name":"Patrick Barr","type":"Person","_key":"20247"} +{"label":"Abraham Sofaer","version":24,"id":"82780","lastModified":"1301902681000","name":"Abraham Sofaer","type":"Person","_key":"20248"} +{"label":"I Know What You Did Last Summer","description":"As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning \"I Know What You Did Last Summer.\" ","id":"3597","runtime":100,"imdbId":"tt0119345","trailer":"http:\/\/www.youtube.com\/watch?v=219","version":336,"lastModified":"1301902384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21b\/4d4e944b7b9aa13ab400a21b\/i-know-what-you-did-last-summer-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Horror","title":"I Know What You Did Last Summer","releaseDate":877046400000,"language":"en","tagline":"If you're going to bury the truth, make sure it stays buried.","type":"Movie","_key":"20249"} +{"label":"Jim Gillespie","version":30,"id":"33254","lastModified":"1301901519000","name":"Jim Gillespie","type":"Person","_key":"20250"} +{"label":"Jennifer Love Hewitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ac\/4be09fbc017a3c35b70004ac\/jennifer-love-hewitt-profile.jpg","version":96,"birthday":"288399600000","id":"33259","birthplace":"Waco, Texas, USA","lastModified":"1301904085000","name":"Jennifer Love Hewitt","type":"Person","_key":"20251"} +{"label":"Freddie Prinze Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4c8642a67b9aa1545e000098\/freddie-prinze-jr-profile.jpg","version":63,"birthday":"195087600000","id":"33260","birthplace":"Los Angeles, California, USA","lastModified":"1301901122000","name":"Freddie Prinze Jr.","type":"Person","_key":"20252"} +{"label":"Muse Watson","version":33,"id":"17348","lastModified":"1301901801000","name":"Muse Watson","type":"Person","_key":"20253"} +{"label":"Stuart Greer","version":24,"id":"33262","lastModified":"1301901590000","name":"Stuart Greer","type":"Person","_key":"20254"} +{"label":"Dan Albright","version":25,"id":"33269","lastModified":"1301901650000","name":"Dan Albright","type":"Person","_key":"20255"} +{"label":"Rasool J'Han","version":23,"id":"33271","lastModified":"1301901678000","name":"Rasool J'Han","type":"Person","_key":"20256"} +{"label":"Lost Horizon","description":"The movie is based on the book of the same name by James Hinton The survivors of of an air crash in the Himalayas are rescued by the inhabitants of Shangri-La.","id":"3598","runtime":132,"imdbId":"tt0029162","version":290,"lastModified":"1302039497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b8\/4cf4f8317b9aa151470001b8\/lost-horizon-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Lost Horizon","releaseDate":-1020384000000,"language":"en","type":"Movie","_key":"20257"} +{"label":"Isabel Jewell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ea\/4bf18796017a3c320d0001ea\/isabell-jewell-profile.jpg","version":32,"id":"33277","lastModified":"1301901275000","name":"Isabel Jewell","type":"Person","_key":"20258"} +{"label":"I Still Know What You Did Last Summer","description":"Unfinished business with coed Julie James brings the murderer to the Bahamas to terrorize her and her friends, Karla, Tyrell and Will, during a vacation. Can Ray Bronson who survived a bloody attack alongside Julie two summers ago, get to the island in time to save everyone?","id":"3600","runtime":100,"imdbId":"tt0130018","trailer":"http:\/\/www.youtube.com\/watch?v=99yCJwP97Uo","version":259,"lastModified":"1301903279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc91954017a3c57fe009b78\/i-still-know-what-you-did-last-summer-mid.jpg","studio":"Mandalay Pictures","genre":"Drama","title":"I Still Know What You Did Last Summer","releaseDate":910915200000,"language":"en","tagline":"Someone is dying for a second chance.","type":"Movie","_key":"20259"} +{"label":"Danny Cannon","version":35,"id":"33279","lastModified":"1301901256000","name":"Danny Cannon","type":"Person","_key":"20260"} +{"label":"Brandy Norwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06d\/4d1491d15e73d6083800206d\/brandy-norwood-profile.jpg","version":33,"id":"33285","lastModified":"1301901309000","name":"Brandy Norwood","type":"Person","_key":"20261"} +{"label":"Matthew Settle","version":30,"id":"33286","lastModified":"1301901650000","name":"Matthew Settle","type":"Person","_key":"20262"} +{"label":"I Know What You Did Last Summer","description":"No overview found.","id":"3601","version":265,"lastModified":"1301905807000","genre":"Horror","title":"I Know What You Did Last Summer","language":"en","type":"Movie","_key":"20263"} +{"label":"I'll Always Know What You Did Last Summer","description":"Several teenagers in a small-town in Colorado concoct a July 4th prank based on a frightening legend that goes awry when their friend ends up accidentally killed; however, the teens agree to keep their involvement a secret from the authorities, who continue to search for the man who apparently killed their friend. A year later, with the July 4th celebration coming up again, the teenagers realize that they're being stalked by someone who clearly intends on keeping the horrible legend alive by kil","id":"3602","runtime":92,"imdbId":"tt0469111","trailer":"http:\/\/www.youtube.com\/watch?v=217","version":154,"lastModified":"1301903822000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02e\/4d038f9e7b9aa11bc000102e\/i-ll-always-know-what-you-did-last-summer-mid.jpg","studio":"Summer Knowledge LLC","genre":"Drama","title":"I'll Always Know What You Did Last Summer","releaseDate":1155600000000,"language":"en","type":"Movie","_key":"20264"} +{"label":"Brooke Nevin","version":27,"id":"33292","lastModified":"1301901400000","name":"Brooke Nevin","type":"Person","_key":"20265"} +{"label":"David Paetkau","version":21,"id":"33293","lastModified":"1301901541000","name":"David Paetkau","type":"Person","_key":"20266"} +{"label":"K.C. Clyde","version":29,"id":"33294","lastModified":"1301901382000","name":"K.C. Clyde","type":"Person","_key":"20267"} +{"label":"Seth Packard","version":22,"id":"33295","lastModified":"1301901583000","name":"Seth Packard","type":"Person","_key":"20268"} +{"label":"Torrey DeVitto","version":24,"id":"33296","lastModified":"1301901564000","name":"Torrey DeVitto","type":"Person","_key":"20269"} +{"label":"Ben Easter","version":24,"id":"33297","lastModified":"1301901904000","name":"Ben Easter","type":"Person","_key":"20270"} +{"label":"Clayton Taylor","version":21,"id":"33298","lastModified":"1301901621000","name":"Clayton Taylor","type":"Person","_key":"20271"} +{"label":"Michael Flynn","version":38,"id":"7144","lastModified":"1301901285000","name":"Michael Flynn","type":"Person","_key":"20272"} +{"label":"Don Shanks","version":26,"id":"33299","lastModified":"1301901496000","name":"Don Shanks","type":"Person","_key":"20273"} +{"label":"Black Sheep","description":"A genetic engineering experiment gone horribly awry turns a large flock of docile sheep into unrelenting killing machines in this rural horror comedy directed by Jonathan King and featuring special effects designed by Weta Workshop.","id":"3603","runtime":87,"imdbId":"tt0779982","trailer":"http:\/\/www.youtube.com\/watch?v=829ZvtRKzAU","homepage":"http:\/\/www.blacksheep-themovie.com\/","version":298,"lastModified":"1301903088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9f\/4bc91959017a3c57fe009b9f\/black-sheep-mid.jpg","studio":"New Zealand Film Commission","genre":"Comedy","title":"Black Sheep","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"20274"} +{"label":"Jonathan King","version":28,"id":"33300","lastModified":"1301901414000","name":"Jonathan King","type":"Person","_key":"20275"} +{"label":"Nathan Meister","version":21,"id":"33305","lastModified":"1301901621000","name":"Nathan Meister","type":"Person","_key":"20276"} +{"label":"Peter Feeney","version":23,"id":"33306","lastModified":"1301901376000","name":"Peter Feeney","type":"Person","_key":"20277"} +{"label":"Danielle Mason","version":24,"id":"33307","lastModified":"1301901442000","name":"Danielle Mason","type":"Person","_key":"20278"} +{"label":"James Ashcroft","version":21,"id":"33308","lastModified":"1301901477000","name":"James Ashcroft","type":"Person","_key":"20279"} +{"label":"Mick Rose","version":27,"id":"33309","lastModified":"1301901431000","name":"Mick Rose","type":"Person","_key":"20280"} +{"label":"Tandi Wright","version":22,"id":"33310","lastModified":"1301901477000","name":"Tandi Wright","type":"Person","_key":"20281"} +{"label":"Matthew Chamberlain","version":24,"id":"33311","lastModified":"1301901460000","name":"Matthew Chamberlain","type":"Person","_key":"20282"} +{"label":"Flash Gordon","description":"A football player and his friends travel to the planet Mongo and find themselves fighting the tyrant, Ming the Merciless, to save Earth.","id":"3604","runtime":111,"imdbId":"tt0080745","trailer":"http:\/\/www.youtube.com\/watch?v=AMEc_MiLmgw","version":341,"lastModified":"1301907457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbf\/4bc9195d017a3c57fe009bbf\/flash-gordon-mid.jpg","studio":"De Laurentiis","genre":"Action","title":"Flash Gordon","releaseDate":344822400000,"language":"en","tagline":"He'll save every one of us!","type":"Movie","_key":"20283"} +{"label":"Sam J. Jones","version":25,"id":"33321","lastModified":"1301901465000","name":"Sam J. Jones","type":"Person","_key":"20284"} +{"label":"Melody Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4c8fd2957b9aa17b49000033\/melody-anderson-profile.jpg","version":26,"id":"33322","lastModified":"1301901455000","name":"Melody Anderson","type":"Person","_key":"20285"} +{"label":"Tara Road","description":"Two grieving women - Ria, a Dublin mom whose husband discloses he's in love with a woman already pregnant, and Marilyn, a Connecticut Yankee who's son has died - swap houses for a couple months. Marilyn finds solace in Ria's garden and becomes friends with Colm, a local with a restaurant and his own demons. Ria gets a job cooking, has a date or two, and gradually comes out of her shell. Meanwhile,","id":"3631","runtime":101,"imdbId":"tt0429153","version":215,"lastModified":"1301905203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/209\/4ca755025e73d643eb000209\/tara-road-mid.jpg","studio":"Ferndale Films","genre":"Drama","title":"Tara Road","releaseDate":1127952000000,"language":"en","type":"Movie","_key":"20286"} +{"label":"Gillies MacKinnon","version":29,"id":"33405","lastModified":"1301901582000","name":"Gillies MacKinnon","type":"Person","_key":"20287"} +{"label":"Maria Doyle Kennedy","version":21,"id":"33394","lastModified":"1301901477000","name":"Maria Doyle Kennedy","type":"Person","_key":"20288"} +{"label":"Dearbhla Molloy","version":20,"id":"33395","lastModified":"1301901820000","name":"Dearbhla Molloy","type":"Person","_key":"20289"} +{"label":"Sean Power","version":20,"id":"33396","lastModified":"1301901820000","name":"Sean Power","type":"Person","_key":"20290"} +{"label":"Sarah Bolger","version":33,"id":"33397","lastModified":"1302066065000","name":"Sarah Bolger","type":"Person","_key":"20291"} +{"label":"Eileen Colgan","version":22,"id":"33398","lastModified":"1301901764000","name":"Eileen Colgan","type":"Person","_key":"20292"} +{"label":"Bronagh Gallagher","version":25,"id":"33399","lastModified":"1301901362000","name":"Bronagh Gallagher","type":"Person","_key":"20293"} +{"label":"James Herrick","version":20,"id":"33400","lastModified":"1301901678000","name":"James Herrick","type":"Person","_key":"20294"} +{"label":"Bosco Hogan","version":21,"id":"33401","lastModified":"1301901595000","name":"Bosco Hogan","type":"Person","_key":"20295"} +{"label":"Chris Jaco Olckers","version":19,"id":"33402","lastModified":"1301901621000","name":"Chris Jaco Olckers","type":"Person","_key":"20296"} +{"label":"Mac McDonald","version":23,"id":"33403","lastModified":"1301901541000","name":"Mac McDonald","type":"Person","_key":"20297"} +{"label":"Ruby Wax","version":21,"id":"33404","lastModified":"1301901743000","name":"Ruby Wax","type":"Person","_key":"20298"} +{"label":"Flash Gordon","description":"Three earthlings visit the planet Mongo to thwart the evil schemes of Emperor Ming the Merciless.","id":"3632","runtime":72,"imdbId":"tt0027623","version":131,"lastModified":"1301907285000","studio":"Universal Studios","genre":"Science Fiction","title":"Flash Gordon","releaseDate":-1048550400000,"language":"en","type":"Movie","_key":"20299"} +{"label":"Ray Taylor","version":19,"id":"33377","lastModified":"1301901904000","name":"Ray Taylor","type":"Person","_key":"20300"} +{"label":"Frederick Stephani","version":20,"id":"33364","lastModified":"1301901904000","name":"Frederick Stephani","type":"Person","_key":"20301"} +{"label":"Buster Crabbe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32d\/4c7807ff7b9aa16a0700032d\/buster-crabbe-profile.jpg","version":31,"id":"33359","lastModified":"1301901422000","name":"Buster Crabbe","type":"Person","_key":"20302"} +{"label":"Jean Rogers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4c754b427b9aa16a0a00000d\/jean-rogers-profile.jpg","version":25,"id":"33360","lastModified":"1301901473000","name":"Jean Rogers","type":"Person","_key":"20303"} +{"label":"Priscilla Lawson","version":20,"id":"33361","lastModified":"1301901594000","name":"Priscilla Lawson","type":"Person","_key":"20304"} +{"label":"Frank Shannon","version":19,"id":"33362","lastModified":"1301901904000","name":"Frank Shannon","type":"Person","_key":"20305"} +{"label":"Jack 'Tiny' Lipson","version":17,"id":"33382","lastModified":"1301901904000","name":"Jack 'Tiny' Lipson","type":"Person","_key":"20306"} +{"label":"James Pierce","version":19,"id":"33378","lastModified":"1301901904000","name":"James Pierce","type":"Person","_key":"20307"} +{"label":"Theodore Lorch","version":20,"id":"33383","lastModified":"1301901939000","name":"Theodore Lorch","type":"Person","_key":"20308"} +{"label":"Earl Askam","version":19,"id":"33363","lastModified":"1301901621000","name":"Earl Askam","type":"Person","_key":"20309"} +{"label":"Girl with a Pearl Earring","description":"This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting \"Girl With A Pearl Earring\" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.","id":"3635","runtime":101,"imdbId":"tt0335119","version":284,"lastModified":"1301902173000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd6\/4bc91963017a3c57fe009bd6\/girl-with-a-pearl-earring-mid.jpg","studio":"Wild Bear Films","genre":"Drama","title":"Girl with a Pearl Earring","releaseDate":1062288000000,"language":"en","type":"Movie","_key":"20310"} +{"label":"Judy Parfitt","version":26,"id":"33448","lastModified":"1301901492000","name":"Judy Parfitt","type":"Person","_key":"20311"} +{"label":"Essie Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/432\/4d2889c27b9aa134cb002432\/essie-davis-profile.jpg","version":58,"id":"33449","lastModified":"1301904092000","name":"Essie Davis","type":"Person","_key":"20312"} +{"label":"Gabrielle Reidy","version":21,"id":"33451","lastModified":"1301901904000","name":"Gabrielle Reidy","type":"Person","_key":"20313"} +{"label":"Chris McHallem","version":21,"id":"33452","lastModified":"1301901904000","name":"Chris McHallem","type":"Person","_key":"20314"} +{"label":"Rollo Weeks","version":26,"id":"33453","lastModified":"1301901517000","name":"Rollo Weeks","type":"Person","_key":"20315"} +{"label":"No Reservations","description":"Kate is a terrific chef at a Manhattan restaurant, sent to therapy by the restaurant owner because she is cold, unyielding, rule-bound, and a pain in the neck. Kate's world is flipped over when her only sister dies and her ten-year-old niece, Zoe, comes to live with her.","id":"3638","runtime":105,"imdbId":"tt0481141","trailer":"http:\/\/www.youtube.com\/watch?v=2-5RJTf0-Jk","homepage":"http:\/\/noreservationsmovie.warnerbros.com\/","version":292,"lastModified":"1301901874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4bc91964017a3c57fe009be8\/no-reservations-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"No Reservations","releaseDate":1185321600000,"language":"en","type":"Movie","_key":"20316"} +{"label":"Jenny Wade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ba\/4be0a363017a3c35b70004ba\/jenny-wade-profile.jpg","version":26,"id":"33430","lastModified":"1301901119000","name":"Jenny Wade","type":"Person","_key":"20317"} +{"label":"Eric Silver","version":22,"id":"33431","lastModified":"1301901111000","name":"Eric Silver","type":"Person","_key":"20318"} +{"label":"Arija Bareikis","version":36,"id":"33432","lastModified":"1301901109000","name":"Arija Bareikis","type":"Person","_key":"20319"} +{"label":"Zo\u00eb Kravitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4d8bcd787b9aa13ae400201f\/zo-kravitz-profile.jpg","version":36,"birthday":"596934000000","id":"37153","birthplace":"Los Angeles, California, USA","lastModified":"1301901714000","name":"Zo\u00eb Kravitz","type":"Person","_key":"20320"} +{"label":"Scott Hicks","version":32,"id":"33433","lastModified":"1301901401000","name":"Scott Hicks","type":"Person","_key":"20321"} +{"label":"Bella Martha","description":"Martha is a single woman who lives for one passion: cooking. The head chef at a chic restaurant, Martha has no time for anything - or anyone - else. But Martha's solitary life is shaken when a fateful accident brings her sister's eight-year-old daughter, Lina, to her doorstep.","id":"3640","runtime":106,"imdbId":"tt0246772","trailer":"http:\/\/www.youtube.com\/watch?v=221","version":117,"lastModified":"1301903158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4d487b9d5e73d654ba000176\/bella-martha-mid.jpg","studio":"Bavaria Film International","genre":"Comedy","title":"Bella Martha","releaseDate":1000080000000,"language":"en","type":"Movie","_key":"20322"} +{"label":"Maxime Foerste","version":21,"id":"33509","lastModified":"1301901651000","name":"Maxime Foerste","type":"Person","_key":"20323"} +{"label":"Antonio Wannek","version":22,"id":"33510","lastModified":"1301901838000","name":"Antonio Wannek","type":"Person","_key":"20324"} +{"label":"Oliver Broumis","version":21,"id":"33511","lastModified":"1301901676000","name":"Oliver Broumis","type":"Person","_key":"20325"} +{"label":"Casa Ricordi","description":"No overview found.","id":"3641","runtime":110,"imdbId":"tt0046833","version":84,"lastModified":"1301903876000","studio":"Cormoran Films","genre":"History","title":"Casa Ricordi","releaseDate":-476064000000,"language":"en","type":"Movie","_key":"20326"} +{"label":"Carmine Gallone","version":30,"id":"33464","lastModified":"1301901793000","name":"Carmine Gallone","type":"Person","_key":"20327"} +{"label":"Roland Alexandre","version":21,"id":"33470","lastModified":"1301901969000","name":"Roland Alexandre","type":"Person","_key":"20328"} +{"label":"Elisa Cegani","version":27,"id":"33636","lastModified":"1301901660000","name":"Elisa Cegani","type":"Person","_key":"20329"} +{"label":"Renzo Giovampietro","version":20,"id":"33637","lastModified":"1301901820000","name":"Renzo Giovampietro","type":"Person","_key":"20330"} +{"label":"Fosco Giachetti","version":24,"id":"33471","lastModified":"1301940154000","name":"Fosco Giachetti","type":"Person","_key":"20331"} +{"label":"Roldano Lupi","version":22,"id":"33638","lastModified":"1301902006000","name":"Roldano Lupi","type":"Person","_key":"20332"} +{"label":"Vira Silenti","version":20,"id":"33639","lastModified":"1301901820000","name":"Vira Silenti","type":"Person","_key":"20333"} +{"label":"Flash Gordon: The Greatest Adventure of All","description":"No overview found.","id":"3679","runtime":95,"imdbId":"tt0270950","version":79,"lastModified":"1301906755000","studio":"Filmation Productions","genre":"Animation","title":"Flash Gordon: The Greatest Adventure of All","releaseDate":398736000000,"language":"en","type":"Movie","_key":"20334"} +{"label":"Robert Ridgely","version":24,"id":"25626","lastModified":"1301901660000","name":"Robert Ridgely","type":"Person","_key":"20335"} +{"label":"Diane Pershing","version":20,"id":"33481","lastModified":"1301901569000","name":"Diane Pershing","type":"Person","_key":"20336"} +{"label":"Bob Holt","version":28,"id":"33482","lastModified":"1301901353000","name":"Bob Holt","type":"Person","_key":"20337"} +{"label":"David Opatoshu","version":23,"id":"15744","lastModified":"1301901353000","name":"David Opatoshu","type":"Person","_key":"20338"} +{"label":"Vic Perrin","version":22,"id":"15949","lastModified":"1301901660000","name":"Vic Perrin","type":"Person","_key":"20339"} +{"label":"Melendy Britt","version":20,"id":"33483","lastModified":"1301901660000","name":"Melendy Britt","type":"Person","_key":"20340"} +{"label":"Robert Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c1\/4bf3f38b017a3c320b0006c1\/robert-douglas-profile.jpg","version":35,"id":"33484","lastModified":"1301986210000","name":"Robert Douglas","type":"Person","_key":"20341"} +{"label":"Gwen Wetzler","version":20,"id":"33534","lastModified":"1301901678000","name":"Gwen Wetzler","type":"Person","_key":"20342"} +{"label":"What's New, Pussycat","description":"No overview found.","id":"3681","runtime":108,"imdbId":"tt0059903","version":312,"lastModified":"1301905047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6c\/4c109198017a3c7e8f000e6c\/what-s-new-pussycat-mid.jpg","studio":"Famous Artists Productions","genre":"Comedy","title":"What's New, Pussycat","releaseDate":-142905600000,"language":"en","type":"Movie","_key":"20343"} +{"label":"Paula Prentiss","version":31,"id":"33644","lastModified":"1301901494000","name":"Paula Prentiss","type":"Person","_key":"20344"} +{"label":"Katrin Schaake","version":30,"id":"26330","lastModified":"1301901567000","name":"Katrin Schaake","type":"Person","_key":"20345"} +{"label":"Jacques Balutin","version":24,"id":"33645","lastModified":"1301901658000","name":"Jacques Balutin","type":"Person","_key":"20346"} +{"label":"El\u00e9onore Hirt","version":21,"id":"35880","lastModified":"1301901743000","name":"El\u00e9onore Hirt","type":"Person","_key":"20347"} +{"label":"Fran\u00e7oise Hardy","version":20,"id":"41951","lastModified":"1301901743000","name":"Fran\u00e7oise Hardy","type":"Person","_key":"20348"} +{"label":"Sabine Sun","version":21,"id":"37794","lastModified":"1301901621000","name":"Sabine Sun","type":"Person","_key":"20349"} +{"label":"Barbara Sommers","version":23,"id":"126747","lastModified":"1301902772000","name":"Barbara Sommers","type":"Person","_key":"20350"} +{"label":"Clive Donner","version":30,"id":"33513","lastModified":"1301901267000","name":"Clive Donner","type":"Person","_key":"20351"} +{"label":"54","description":"Famous 70's NYC nightclub seen and told through the eyes of a young employee.","id":"3682","runtime":89,"imdbId":"tt0120577","trailer":"http:\/\/www.youtube.com\/watch?v=1399","version":130,"lastModified":"1301902619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfd\/4bc91967017a3c57fe009bfd\/54-mid.jpg","studio":"Redeemable Features","genre":"Drama","title":"54","releaseDate":904262400000,"language":"en","type":"Movie","_key":"20352"} +{"label":"Mark Christopher","version":23,"id":"33541","lastModified":"1301901678000","name":"Mark Christopher","type":"Person","_key":"20353"} +{"label":"Sherry Stringfield","version":25,"id":"33653","lastModified":"1301901512000","name":"Sherry Stringfield","type":"Person","_key":"20354"} +{"label":"Breckin Meyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ad\/4d3256ea7b9aa17af80023ad\/breckin-meyer-profile.jpg","version":90,"id":"33654","lastModified":"1302036442000","name":"Breckin Meyer","type":"Person","_key":"20355"} +{"label":"Erika Alexander","version":37,"id":"33655","lastModified":"1301901568000","name":"Erika Alexander","type":"Person","_key":"20356"} +{"label":"Aemilia Robinson","version":21,"id":"33657","lastModified":"1301901820000","name":"Aemilia Robinson","type":"Person","_key":"20357"} +{"label":"Skipp Sudduth","version":29,"id":"33658","lastModified":"1301901521000","name":"Skipp Sudduth","type":"Person","_key":"20358"} +{"label":"John Hines","version":21,"id":"33659","lastModified":"1301901828000","name":"John Hines","type":"Person","_key":"20359"} +{"label":"Barbara Radecki","version":21,"id":"33660","lastModified":"1301901682000","name":"Barbara Radecki","type":"Person","_key":"20360"} +{"label":"Victor Sutherland","version":23,"id":"33661","lastModified":"1301901667000","name":"Victor Sutherland","type":"Person","_key":"20361"} +{"label":"Coati Mundi","version":27,"id":"33662","lastModified":"1301901793000","name":"Coati Mundi","type":"Person","_key":"20362"} +{"label":"Sheryl Crow","version":29,"id":"10750","lastModified":"1301901821000","name":"Sheryl Crow","type":"Person","_key":"20363"} +{"label":"Donald Trump","version":50,"id":"33663","lastModified":"1301901119000","name":"Donald Trump","type":"Person","_key":"20364"} +{"label":"Sophie Rousseau","version":21,"id":"33664","lastModified":"1301901820000","name":"Sophie Rousseau","type":"Person","_key":"20365"} +{"label":"Cindy Crawford","version":27,"id":"33665","lastModified":"1301901298000","name":"Cindy Crawford","type":"Person","_key":"20366"} +{"label":"Georgina Grenville","version":21,"id":"33666","lastModified":"1301901691000","name":"Georgina Grenville","type":"Person","_key":"20367"} +{"label":"Victor Browne","version":26,"id":"33667","lastModified":"1301901662000","name":"Victor Browne","type":"Person","_key":"20368"} +{"label":"Cameron Mathison","version":23,"id":"33669","lastModified":"1301901764000","name":"Cameron Mathison","type":"Person","_key":"20369"} +{"label":"Jay Goede","version":21,"id":"33670","lastModified":"1301901820000","name":"Jay Goede","type":"Person","_key":"20370"} +{"label":"Patrick Taylor","version":21,"id":"33671","lastModified":"1301901681000","name":"Patrick Taylor","type":"Person","_key":"20371"} +{"label":"Ellen Albertini Dow","version":29,"id":"85171","lastModified":"1302060441000","name":"Ellen Albertini Dow","type":"Person","_key":"20372"} +{"label":"Flags of Our Fathers","description":"There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. \"Flags of Our Fathers\" is the story of three of the six surviving servicemen, John \"Doc\" Bradley (Ryan Phillippe), Pvt. Rene Gagnon (Jesse Bradford), and Pvt. Ira Hayes (Adam Beach), who fought in the battle to take Iwo Jima. ","id":"3683","runtime":131,"imdbId":"tt0418689","trailer":"http:\/\/www.youtube.com\/watch?v=1510","version":605,"lastModified":"1301901608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1e\/4bc9196d017a3c57fe009c1e\/flags-of-our-fathers-mid.jpg","studio":"Malpaso Productions","genre":"Action","title":"Flags of Our Fathers","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"20373"} +{"label":"Adam Beach","version":38,"birthday":"90284400000","id":"33527","birthplace":"Ashern, Manitoba, Canada","lastModified":"1301901241000","name":"Adam Beach","type":"Person","_key":"20374"} +{"label":"Joseph Cross","version":33,"id":"33528","lastModified":"1301901413000","name":"Joseph Cross","type":"Person","_key":"20375"} +{"label":"Alessandro Mastrobuono","version":22,"id":"33530","lastModified":"1301901550000","name":"Alessandro Mastrobuono","type":"Person","_key":"20376"} +{"label":"Brian Kimmet","version":20,"id":"33531","lastModified":"1301901762000","name":"Brian Kimmet","type":"Person","_key":"20377"} +{"label":"Stark Sands","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f1\/4c8cf5b45e73d609ed0001f1\/stark-sands-profile.jpg","version":33,"id":"33532","lastModified":"1301901484000","name":"Stark Sands","type":"Person","_key":"20378"} +{"label":"David Rasche","version":38,"id":"33533","lastModified":"1301901285000","name":"David Rasche","type":"Person","_key":"20379"} +{"label":"Baytekin fezada carpisanlar","description":"1967 is the year of \"Baytekin Fezada \u00c7arp\u0131\u015fanlar \/ Flash Gordon - Battle in Space\" in which director \u015einasi \u00d6zonuk tries hardly,despite a very low budget,to come up with a space Opera.","id":"3684","runtime":90,"imdbId":"tt0336004","version":39,"lastModified":"1301907426000","studio":"Onuk Film","genre":"Action","title":"Baytekin fezada carpisanlar","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"20380"} +{"label":"Sinasi \u00d6zonuk","version":22,"id":"33551","lastModified":"1301901793000","name":"Sinasi \u00d6zonuk","type":"Person","_key":"20381"} +{"label":"Hasan Demirtag","version":20,"id":"33553","lastModified":"1301901819000","name":"Hasan Demirtag","type":"Person","_key":"20382"} +{"label":"Meltem Mete","version":20,"id":"33554","lastModified":"1301901512000","name":"Meltem Mete","type":"Person","_key":"20383"} +{"label":"Sevgi Can","version":20,"id":"33555","lastModified":"1301901678000","name":"Sevgi Can","type":"Person","_key":"20384"} +{"label":"Askin Dilek","version":20,"id":"33556","lastModified":"1301901820000","name":"Askin Dilek","type":"Person","_key":"20385"} +{"label":"Winnetou","description":"No overview found.","id":"3685","runtime":101,"imdbId":"tt0057687","version":63,"lastModified":"1301903477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/105\/4bcc7b18017a3c0f2a000105\/winnetou-mid.jpg","studio":"Jadran Film","genre":"Adventure","title":"Winnetou","releaseDate":-191203200000,"language":"en","type":"Movie","_key":"20386"} +{"label":"Harald Reinl","version":54,"id":"33542","lastModified":"1301901263000","name":"Harald Reinl","type":"Person","_key":"20387"} +{"label":"Pierre Brice","version":35,"id":"33543","lastModified":"1301901448000","name":"Pierre Brice","type":"Person","_key":"20388"} +{"label":"Walter Barnes","version":25,"id":"33544","lastModified":"1301901969000","name":"Walter Barnes","type":"Person","_key":"20389"} +{"label":"Chris Howland","version":26,"id":"33545","lastModified":"1301901793000","name":"Chris Howland","type":"Person","_key":"20390"} +{"label":"Dunja Rajter","version":22,"id":"33546","lastModified":"1301901690000","name":"Dunja Rajter","type":"Person","_key":"20391"} +{"label":"Last of the Renegades","description":"Forester, a ruthless oil baron, wants to create a war between the native American tribes and the white men. Old Shatterhand, Winnetou and their sidekick Castlepool try to prevent this.","id":"3686","runtime":94,"imdbId":"tt0058751","version":55,"lastModified":"1301906755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70f\/4caa5af65e73d643eb00070f\/winnetou-ii-mid.jpg","studio":"Jadran Film","genre":"Drama","title":"Last of the Renegades","releaseDate":-166924800000,"language":"en","type":"Movie","_key":"20392"} +{"label":"Anthony Steel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/063\/4c49aa7d7b9aa115fd000063\/anthony-steel-profile.jpg","version":30,"id":"33547","lastModified":"1301901508000","name":"Anthony Steel","type":"Person","_key":"20393"} +{"label":"Marie-No\u00eblle Barre","version":21,"id":"33548","lastModified":"1301901678000","name":"Marie-No\u00eblle Barre","type":"Person","_key":"20394"} +{"label":"Renato Baldini","version":22,"id":"33549","lastModified":"1301901690000","name":"Renato Baldini","type":"Person","_key":"20395"} +{"label":"Flesh Gordon","description":"Emperor Wang (the Perverted) is leader of the planet Porno and sends his mighty \"Sex Ray\" towards Earth, turning everyone into sex-mad fiends. Only one man can save the Earth, football player Flesh Gordon. Along with his girlfriend Dale Ardor and Professor Flexi-Jerkoff, they set off towards the source of the Sex Ray, unaware of the perils that face them!","id":"3687","runtime":90,"imdbId":"tt0068595","version":195,"lastModified":"1301904684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c27\/4bc9196e017a3c57fe009c27\/flesh-gordon-mid.jpg","studio":"Graffiti Productions","genre":"Comedy","title":"Flesh Gordon","releaseDate":144374400000,"language":"en","type":"Movie","_key":"20396"} +{"label":"Michael Benveniste","version":19,"id":"33557","lastModified":"1301901541000","name":"Michael Benveniste","type":"Person","_key":"20397"} +{"label":"Howard Ziehm","version":32,"id":"33558","lastModified":"1301901541000","name":"Howard Ziehm","type":"Person","_key":"20398"} +{"label":"Jason Williams","version":38,"id":"33566","lastModified":"1301901490000","name":"Jason Williams","type":"Person","_key":"20399"} +{"label":"Suzanne Fields","version":21,"id":"33567","lastModified":"1301901789000","name":"Suzanne Fields","type":"Person","_key":"20400"} +{"label":"Joseph Hudgins","version":19,"id":"33568","lastModified":"1301901743000","name":"Joseph Hudgins","type":"Person","_key":"20401"} +{"label":"William Dennis Hunt","version":22,"id":"33569","lastModified":"1301901540000","name":"William Dennis Hunt","type":"Person","_key":"20402"} +{"label":"Candy Samples","version":32,"id":"33570","lastModified":"1301901789000","name":"Candy Samples","type":"Person","_key":"20403"} +{"label":"Mycle Brandy","version":22,"id":"33571","lastModified":"1301901743000","name":"Mycle Brandy","type":"Person","_key":"20404"} +{"label":"Lance Larsen","version":19,"id":"33572","lastModified":"1301901904000","name":"Lance Larsen","type":"Person","_key":"20405"} +{"label":"Damon Charles","version":20,"id":"33573","lastModified":"1301902006000","name":"Damon Charles","type":"Person","_key":"20406"} +{"label":"Robert V. Greene","version":19,"id":"33574","lastModified":"1301901743000","name":"Robert V. Greene","type":"Person","_key":"20407"} +{"label":"Flesh Gordon meets the Cosmic Cheerleaders","description":"No overview found.","id":"3688","runtime":98,"imdbId":"tt0097365","version":172,"lastModified":"1301908346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c30\/4bc9196f017a3c57fe009c30\/flesh-gordon-meets-the-cosmic-cheerleaders-mid.jpg","studio":"Filmvest International","genre":"Comedy","title":"Flesh Gordon meets the Cosmic Cheerleaders","releaseDate":647654400000,"language":"en","type":"Movie","_key":"20408"} +{"label":"Doug Frisby","version":19,"id":"33575","lastModified":"1301901904000","name":"Doug Frisby","type":"Person","_key":"20409"} +{"label":"Vince Murdocco","version":20,"id":"33585","lastModified":"1301901904000","name":"Vince Murdocco","type":"Person","_key":"20410"} +{"label":"Robyn Kelly","version":19,"id":"33586","lastModified":"1301901743000","name":"Robyn Kelly","type":"Person","_key":"20411"} +{"label":"Tony Travis","version":19,"id":"33587","lastModified":"1301901621000","name":"Tony Travis","type":"Person","_key":"20412"} +{"label":"Morgan Fox","version":19,"id":"33588","lastModified":"1301901904000","name":"Morgan Fox","type":"Person","_key":"20413"} +{"label":"Bruce Scott","version":23,"id":"33589","lastModified":"1301901834000","name":"Bruce Scott","type":"Person","_key":"20414"} +{"label":"Maureen Webb","version":18,"id":"33590","lastModified":"1301902010000","name":"Maureen Webb","type":"Person","_key":"20415"} +{"label":"Diamond Walkers","description":"No overview found.","id":"3689","runtime":92,"imdbId":"tt0154409","version":49,"lastModified":"1301908607000","genre":"Adventure","title":"Diamond Walkers","releaseDate":-137808000000,"language":"en","type":"Movie","_key":"20416"} +{"label":"Harald Leipnitz","version":27,"id":"33719","lastModified":"1301901568000","name":"Harald Leipnitz","type":"Person","_key":"20417"} +{"label":"Ann Smyrner","version":25,"id":"33720","lastModified":"1301901499000","name":"Ann Smyrner","type":"Person","_key":"20418"} +{"label":"Paul Martin","version":23,"id":"33721","lastModified":"1301901512000","name":"Paul Martin","type":"Person","_key":"20419"} +{"label":"City of Fear","description":"No overview found.","id":"3690","runtime":90,"imdbId":"tt0154339","version":133,"lastModified":"1301906637000","studio":"Towers of London Productions","title":"City of Fear","releaseDate":-136166400000,"language":"en","type":"Movie","_key":"20420"} +{"label":"Peter Bezencenet","version":20,"id":"33715","lastModified":"1301902024000","name":"Peter Bezencenet","type":"Person","_key":"20421"} +{"label":"Terry Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22f\/4cb634815e73d6778400022f\/terry-moore-profile.jpg","version":41,"id":"33716","lastModified":"1301901210000","name":"Terry Moore","type":"Person","_key":"20422"} +{"label":"Train d'enfer","description":"No overview found.","id":"3691","runtime":92,"imdbId":"tt0061112","version":74,"lastModified":"1302018020000","genre":"Thriller","title":"Train d'enfer","releaseDate":-130723200000,"language":"en","type":"Movie","_key":"20423"} +{"label":"Jean Lara","version":20,"id":"33714","lastModified":"1301901820000","name":"Jean Lara","type":"Person","_key":"20424"} +{"label":"Gilles Grangier","version":34,"id":"33781","lastModified":"1301902006000","name":"Gilles Grangier","type":"Person","_key":"20425"} +{"label":"New York chiama Superdrago","description":"No overview found.","id":"3692","runtime":100,"imdbId":"tt0060956","version":52,"lastModified":"1301906754000","genre":"Action","title":"New York chiama Superdrago","releaseDate":-122169600000,"language":"en","type":"Movie","_key":"20426"} +{"label":"Ray Danton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/100\/4bd81e51017a3c1c05000100\/ray-danton-profile.jpg","version":25,"id":"33722","lastModified":"1301901579000","name":"Ray Danton","type":"Person","_key":"20427"} +{"label":"Giorgio Ferroni","version":21,"id":"33724","lastModified":"1301901568000","name":"Giorgio Ferroni","type":"Person","_key":"20428"} +{"label":"Objectif: 500 millions","description":"No overview found.","id":"3693","runtime":90,"imdbId":"tt0060773","version":32,"lastModified":"1301905008000","studio":"Rome Paris Films","genre":"Action","title":"Objectif: 500 millions","releaseDate":-119059200000,"language":"en","type":"Movie","_key":"20429"} +{"label":"Che notte, ragazzi!","description":"No overview found.","id":"3694","runtime":0,"imdbId":"tt0060323","version":28,"lastModified":"1301907427000","studio":"Atl\u00e1ntida Films","title":"Che notte, ragazzi!","releaseDate":-102729600000,"language":"en","type":"Movie","_key":"20430"} +{"label":"Giorgio Capitani","version":24,"id":"33717","lastModified":"1301901969000","name":"Giorgio Capitani","type":"Person","_key":"20431"} +{"label":"Stuntman","description":"No overview found.","id":"3695","runtime":98,"imdbId":"tt0063652","version":83,"lastModified":"1301907427000","studio":"Marianne Productions","genre":"Action","title":"Stuntman","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"20432"} +{"label":"Carla Antonelli","version":20,"id":"33792","lastModified":"1301901689000","name":"Carla Antonelli","type":"Person","_key":"20433"} +{"label":"Jean-Claude Bercq","version":21,"id":"33793","lastModified":"1301901820000","name":"Jean-Claude Bercq","type":"Person","_key":"20434"} +{"label":"Benito Boggino","version":20,"id":"33794","lastModified":"1301902006000","name":"Benito Boggino","type":"Person","_key":"20435"} +{"label":"Aldo De Carellis","version":20,"id":"33795","lastModified":"1301901969000","name":"Aldo De Carellis","type":"Person","_key":"20436"} +{"label":"Virgilio Conti","version":20,"id":"33796","lastModified":"1301901969000","name":"Virgilio Conti","type":"Person","_key":"20437"} +{"label":"Marcello Baldi","version":21,"id":"33787","lastModified":"1301901689000","name":"Marcello Baldi","type":"Person","_key":"20438"} +{"label":"Les belles au bois dormantes","description":"No overview found.","id":"3696","runtime":90,"imdbId":"tt0064078","version":42,"lastModified":"1301904477000","studio":"Ascot","genre":"Drama","title":"Les belles au bois dormantes","releaseDate":10800000000,"language":"en","type":"Movie","_key":"20439"} +{"label":"Pierre Chenal","version":20,"id":"33797","lastModified":"1301901569000","name":"Pierre Chenal","type":"Person","_key":"20440"} +{"label":"Ettore Manni","version":26,"id":"33801","lastModified":"1301901532000","name":"Ettore Manni","type":"Person","_key":"20441"} +{"label":"Krista Nell","version":25,"id":"33802","lastModified":"1301901569000","name":"Krista Nell","type":"Person","_key":"20442"} +{"label":"Albert Minski","version":20,"id":"33803","lastModified":"1301902006000","name":"Albert Minski","type":"Person","_key":"20443"} +{"label":"Tutti fratelli nel west... per parte di padre","description":"No overview found.","id":"3697","runtime":96,"imdbId":"tt0153342","version":34,"lastModified":"1301416111000","studio":"Terra-Filmkunst GmbH","genre":"Western","title":"Tutti fratelli nel west... per parte di padre","releaseDate":63072000000,"language":"en","type":"Movie","_key":"20444"} +{"label":"Antonio Sabato","version":25,"id":"33708","lastModified":"1301902009000","name":"Antonio Sabato","type":"Person","_key":"20445"} +{"label":"Amico, stammi lontano almeno un palmo","description":"No overview found.","id":"3698","runtime":98,"imdbId":"tt0068203","version":52,"lastModified":"1301416898000","studio":"Jupiter Generale Cinematografica","genre":"Western","title":"Amico, stammi lontano almeno un palmo","releaseDate":66009600000,"language":"en","type":"Movie","_key":"20446"} +{"label":"Michele Lupo","version":30,"id":"33806","lastModified":"1301901688000","name":"Michele Lupo","type":"Person","_key":"20447"} +{"label":"George Eastman","version":61,"id":"33807","lastModified":"1301901507000","name":"George Eastman","type":"Person","_key":"20448"} +{"label":"Vittorio Congia","version":21,"id":"33809","lastModified":"1301902006000","name":"Vittorio Congia","type":"Person","_key":"20449"} +{"label":"Luciano Catenacci","version":32,"id":"33810","lastModified":"1301901686000","name":"Luciano Catenacci","type":"Person","_key":"20450"} +{"label":"Remo Capitani","version":21,"id":"33811","lastModified":"1301901590000","name":"Remo Capitani","type":"Person","_key":"20451"} +{"label":"Seven Blood-Stained Orchids","description":"No overview found.","id":"3699","runtime":108,"imdbId":"tt0067696","version":119,"lastModified":"1301906637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c35\/4bc9196f017a3c57fe009c35\/sette-orchidee-macchiate-di-rosso-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Seven Blood-Stained Orchids","releaseDate":67737600000,"language":"en","type":"Movie","_key":"20452"} +{"label":"Uschi Glas","version":37,"id":"33709","lastModified":"1301901317000","name":"Uschi Glas","type":"Person","_key":"20453"} +{"label":"Petra Sch\u00fcrmann","version":20,"id":"33710","lastModified":"1301901431000","name":"Petra Sch\u00fcrmann","type":"Person","_key":"20454"} +{"label":"Pier Paolo Capponi","version":22,"id":"33815","lastModified":"1301901948000","name":"Pier Paolo Capponi","type":"Person","_key":"20455"} +{"label":"Marina Malfatti","version":24,"id":"33816","lastModified":"1301901621000","name":"Marina Malfatti","type":"Person","_key":"20456"} +{"label":"Gabriella Giorgelli","version":30,"id":"33817","lastModified":"1301901425000","name":"Gabriella Giorgelli","type":"Person","_key":"20457"} +{"label":"Aldo Barberito","version":21,"id":"33818","lastModified":"1301902006000","name":"Aldo Barberito","type":"Person","_key":"20458"} +{"label":"Bruno Corazzari","version":27,"id":"33819","lastModified":"1301901643000","name":"Bruno Corazzari","type":"Person","_key":"20459"} +{"label":"Franco Fantasia","version":30,"id":"33820","lastModified":"1301901978000","name":"Franco Fantasia","type":"Person","_key":"20460"} +{"label":"Pena de muerte","description":"No overview found.","id":"3700","runtime":89,"imdbId":"tt0070522","version":41,"lastModified":"1301907426000","studio":"Emaus Films S.A.","genre":"Horror","title":"Pena de muerte","releaseDate":94694400000,"language":"en","type":"Movie","_key":"20461"} +{"label":"Jorge Grau","version":24,"id":"33821","lastModified":"1301901404000","name":"Jorge Grau","type":"Person","_key":"20462"} +{"label":"Espartaco Santoni","version":20,"id":"33827","lastModified":"1301901793000","name":"Espartaco Santoni","type":"Person","_key":"20463"} +{"label":"Juli\u00e1n Navarro","version":20,"id":"33825","lastModified":"1301901819000","name":"Juli\u00e1n Navarro","type":"Person","_key":"20464"} +{"label":"Elisa Laguna","version":20,"id":"33826","lastModified":"1301901968000","name":"Elisa Laguna","type":"Person","_key":"20465"} +{"label":"M\u00e1ximo Valverde","version":21,"id":"33828","lastModified":"1301901968000","name":"M\u00e1ximo Valverde","type":"Person","_key":"20466"} +{"label":"Milano rovente","description":"No overview found.","id":"3701","runtime":90,"imdbId":"tt0134821","version":80,"lastModified":"1301906768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3a\/4bc91970017a3c57fe009c3a\/milano-rovente-mid.jpg","studio":"Telemondial","genre":"Action","title":"Milano rovente","releaseDate":99100800000,"language":"en","type":"Movie","_key":"20467"} +{"label":"Antonio Casagrande","version":20,"id":"33862","lastModified":"1301901678000","name":"Antonio Casagrande","type":"Person","_key":"20468"} +{"label":"Carla Romanelli","version":22,"id":"33863","lastModified":"1301902010000","name":"Carla Romanelli","type":"Person","_key":"20469"} +{"label":"Alessandro Sperli","version":20,"id":"33864","lastModified":"1301901680000","name":"Alessandro Sperli","type":"Person","_key":"20470"} +{"label":"Piero Corbetta","version":20,"id":"33865","lastModified":"1301901678000","name":"Piero Corbetta","type":"Person","_key":"20471"} +{"label":"Vittorio Pinelli","version":20,"id":"33866","lastModified":"1301901678000","name":"Vittorio Pinelli","type":"Person","_key":"20472"} +{"label":"Bella ricca lieve difetto fisico cerca anima gemella","description":"No overview found.","id":"3703","runtime":91,"imdbId":"tt0069775","version":38,"lastModified":"1301906755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3f\/4bc91970017a3c57fe009c3f\/bella-ricca-lieve-difetto-fisico-cerca-anima-gemella-mid.jpg","studio":"Goriz Film","genre":"Comedy","title":"Bella ricca lieve difetto fisico cerca anima gemella","releaseDate":94694400000,"language":"en","type":"Movie","_key":"20473"} +{"label":"Carlo Giuffr\u00e8","version":24,"id":"33926","lastModified":"1301901660000","name":"Carlo Giuffr\u00e8","type":"Person","_key":"20474"} +{"label":"Gina Rovere","version":25,"id":"33928","lastModified":"1301901660000","name":"Gina Rovere","type":"Person","_key":"20475"} +{"label":"Elena Fiore","version":22,"id":"33929","lastModified":"1301901660000","name":"Elena Fiore","type":"Person","_key":"20476"} +{"label":"Erika Blanc","version":38,"id":"97929","lastModified":"1301902511000","name":"Erika Blanc","type":"Person","_key":"20477"} +{"label":"Im Juli","description":"Can Daniel follow the sun from Hamburg to the Bosporus by Friday to meet his love?","id":"3716","runtime":100,"imdbId":"tt0177858","version":112,"lastModified":"1301904806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c48\/4bc91970017a3c57fe009c48\/im-juli-mid.jpg","studio":"W\u00fcste Filmproduktion","genre":"Road Movie","title":"Im Juli","releaseDate":967075200000,"language":"en","type":"Movie","_key":"20478"} +{"label":"Dylan Gray","version":21,"id":"33681","lastModified":"1301902008000","name":"Dylan Gray","type":"Person","_key":"20479"} +{"label":"Sandra Borgmann","version":24,"id":"33682","lastModified":"1301901690000","name":"Sandra Borgmann","type":"Person","_key":"20480"} +{"label":"Tsunami","description":"No overview found.","id":"3717","runtime":90,"imdbId":"tt0425573","version":221,"lastModified":"1301904214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4bc91973017a3c57fe009c52\/tsunami-terror-in-der-nordsee-mid.jpg","studio":"GFP Medienfonds","genre":"Disaster","title":"Tsunami","releaseDate":1125187200000,"language":"en","type":"Movie","_key":"20481"} +{"label":"Anja Knauer","version":22,"id":"34296","lastModified":"1301901660000","name":"Anja Knauer","type":"Person","_key":"20482"} +{"label":"Ingo Naujoks","version":33,"id":"34297","lastModified":"1301901286000","name":"Ingo Naujoks","type":"Person","_key":"20483"} +{"label":"Susanne Hoss","version":21,"id":"34298","lastModified":"1301901680000","name":"Susanne Hoss","type":"Person","_key":"20484"} +{"label":"Charlie Rinn","version":21,"id":"34299","lastModified":"1301901677000","name":"Charlie Rinn","type":"Person","_key":"20485"} +{"label":"Dieter Montag","version":21,"id":"34300","lastModified":"1301901678000","name":"Dieter Montag","type":"Person","_key":"20486"} +{"label":"Evelyn Meyka","version":21,"id":"34301","lastModified":"1301901679000","name":"Evelyn Meyka","type":"Person","_key":"20487"} +{"label":"J\u00f6rn Hentschel","version":24,"id":"53870","lastModified":"1301902006000","name":"J\u00f6rn Hentschel","type":"Person","_key":"20488"} +{"label":"Winfried Oelsner","version":21,"id":"34303","lastModified":"1301901458000","name":"Winfried Oelsner","type":"Person","_key":"20489"} +{"label":"Onibaba","description":"In medieval times, on a remote plain, a widow and her mother-in-law kill wandering samurai, put their bodies in a hole in the ground and sell their armour and valuables, until the daughter-in-law falls in love with one of their intended victims.","id":"3763","runtime":103,"imdbId":"tt0058430","version":200,"lastModified":"1302066189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4c50c9ff7b9aa13d4d00009d\/onibaba-mid.jpg","studio":"Kindai Eiga Kyokai","genre":"Drama","title":"Onibaba","releaseDate":-161308800000,"language":"en","type":"Movie","_key":"20490"} +{"label":"Kaneto Shind\u00f4","version":31,"id":"33727","lastModified":"1301901354000","name":"Kaneto Shind\u00f4","type":"Person","_key":"20491"} +{"label":"Nobuko Otowa","version":24,"id":"33728","lastModified":"1301901583000","name":"Nobuko Otowa","type":"Person","_key":"20492"} +{"label":"Jitsuko Yoshimura","version":31,"id":"33729","lastModified":"1301901448000","name":"Jitsuko Yoshimura","type":"Person","_key":"20493"} +{"label":"Kei Sat\u00f4","version":36,"id":"33730","lastModified":"1301901298000","name":"Kei Sat\u00f4","type":"Person","_key":"20494"} +{"label":"J\u00fbkichi Uno","version":21,"id":"33731","lastModified":"1301901582000","name":"J\u00fbkichi Uno","type":"Person","_key":"20495"} +{"label":"Taiji Tonoyama","version":29,"id":"33732","lastModified":"1301901531000","name":"Taiji Tonoyama","type":"Person","_key":"20496"} +{"label":"Naked Island","description":"No overview found.","id":"3764","runtime":94,"imdbId":"tt0056049","version":113,"lastModified":"1302021740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dd\/4d4037367b9aa15bb50022dd\/hadaka-no-shima-mid.jpg","studio":"Kindai Eiga Kyokai","genre":"Drama","title":"Naked Island","releaseDate":-287366400000,"language":"en","type":"Movie","_key":"20497"} +{"label":"Shinji Tanaka","version":21,"id":"33734","lastModified":"1301901660000","name":"Shinji Tanaka","type":"Person","_key":"20498"} +{"label":"Masanori Horimoto","version":21,"id":"33735","lastModified":"1301901793000","name":"Masanori Horimoto","type":"Person","_key":"20499"} +{"label":"The Lady from Shanghai","description":"A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.","id":"3766","runtime":87,"imdbId":"tt0040525","trailer":"http:\/\/www.youtube.com\/watch?v=LvhoeL3Vv-c","version":161,"lastModified":"1302065659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5f\/4bc91974017a3c57fe009c5f\/the-lady-from-shanghai-mid.jpg","studio":"Columbia Pictures","genre":"Crime","title":"The Lady from Shanghai","releaseDate":-695001600000,"language":"en","tagline":"I told you... you know nothing about wickedness","type":"Movie","_key":"20500"} +{"label":"Rita Hayworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/020\/4bd5b6e1017a3c657e000020\/rita-hayworth-profile.jpg","version":53,"id":"33741","lastModified":"1302002174000","name":"Rita Hayworth","type":"Person","_key":"20501"} +{"label":"Glenn Anders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4c7669807b9aa16a070000dd\/glenn-anders-profile.jpg","version":24,"id":"33742","lastModified":"1301901442000","name":"Glenn Anders","type":"Person","_key":"20502"} +{"label":"Gus Schilling","version":24,"id":"33743","lastModified":"1301901541000","name":"Gus Schilling","type":"Person","_key":"20503"} +{"label":"Louis Merrill","version":24,"id":"33744","lastModified":"1301901470000","name":"Louis Merrill","type":"Person","_key":"20504"} +{"label":"Carl Frank","version":22,"id":"33745","lastModified":"1301901541000","name":"Carl Frank","type":"Person","_key":"20505"} +{"label":"Evelyn Ellis","version":22,"id":"33746","lastModified":"1301901621000","name":"Evelyn Ellis","type":"Person","_key":"20506"} +{"label":"Gilda","description":"Just arrived in Argentina, small-time crooked gambler Johnny Farrell is saved from a gunman by sinister Ballin Mundson, who later makes Johnny his right-hand man. But their friendship based on mutual lack of scruples is strained when Mundson returns from a trip with a wife: whom Johnny once knew and learned to hate.","id":"3767","runtime":110,"imdbId":"tt0038559","trailer":"http:\/\/www.youtube.com\/watch?v=DRF2hjNN4Zw","version":152,"lastModified":"1301908093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c79\/4bc91976017a3c57fe009c79\/gilda-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Gilda","releaseDate":-753580800000,"language":"en","tagline":"\"I was true to one man once... and look what happened...\"","type":"Movie","_key":"20507"} +{"label":"Gerald Mohr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4ca49b997b9aa16ed50001d1\/gerald-mohr-profile.jpg","version":31,"id":"51717","lastModified":"1301901857000","name":"Gerald Mohr","type":"Person","_key":"20508"} +{"label":"Mark Roberts","version":24,"id":"131229","lastModified":"1301901978000","name":"Mark Roberts","type":"Person","_key":"20509"} +{"label":"Ludwig Donath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b5\/4c2ce17c7b9aa15e990001b5\/ludwig-donath-profile.jpg","version":35,"id":"34405","lastModified":"1301901670000","name":"Ludwig Donath","type":"Person","_key":"20510"} +{"label":"Throne of Blood","description":"Mikio and Washizu are the commanders of the 1st and 2nd Fortress under a local lord, who reigns in the Spiders' Web Castle. After defeating the lord's enemies in battle, they visit the fortress. Washizu, driven by his wife, conspires and murders the lord, becoming lord of the castle. But his evil deeds come back to haunt him.","id":"3777","runtime":109,"imdbId":"tt0050613","version":92,"lastModified":"1301905556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c82\/4bc91977017a3c57fe009c82\/kumonosu-jo-mid.jpg","studio":"Toho Company","genre":"Eastern","title":"Throne of Blood","releaseDate":-409017600000,"language":"en","type":"Movie","_key":"20511"} +{"label":"Isuzu Yamada","version":32,"id":"33761","lastModified":"1301901424000","name":"Isuzu Yamada","type":"Person","_key":"20512"} +{"label":"Hiroshi Tachikawa","version":22,"id":"33763","lastModified":"1301901850000","name":"Hiroshi Tachikawa","type":"Person","_key":"20513"} +{"label":"Red Beard","description":"Set in feudal times, novice physician, Yuzo Kayama, is sent to a poor infirmary expecting just to visit, but is infuriated to learn he must stay. He tries to provoke his termination, but is foiled by head doctor \"Red Beard\" (Toshiro Mifune), a man whose methods are as caring as they are unpredictable.","id":"3780","runtime":185,"imdbId":"tt0058888","version":96,"lastModified":"1301905190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8b\/4bc9197a017a3c57fe009c8b\/akahige-mid.jpg","studio":"Toho Company","genre":"Drama","title":"Red Beard","releaseDate":-152409600000,"language":"en","type":"Movie","_key":"20514"} +{"label":"Y\u00fbz\u00f4 Kayama","version":26,"id":"33764","lastModified":"1301901509000","name":"Y\u00fbz\u00f4 Kayama","type":"Person","_key":"20515"} +{"label":"Ky\u00f4ko Kagawa","version":37,"id":"34374","lastModified":"1301901268000","name":"Ky\u00f4ko Kagawa","type":"Person","_key":"20516"} +{"label":"Ikiru","description":"Kanji Watanabe is a middle-aged man who has worked in the same monotonous bureaucratic position for decades. Learning he has cancer, he starts to look for the meaning of his life.","id":"3782","runtime":143,"imdbId":"tt0044741","version":155,"lastModified":"1301903983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c99\/4bc9197b017a3c57fe009c99\/3782-mid.jpg","studio":"Toho Company","genre":"Drama","title":"Ikiru","releaseDate":-543715200000,"language":"en","type":"Movie","_key":"20517"} +{"label":"Shinichi Himori","version":23,"id":"33767","lastModified":"1301901587000","name":"Shinichi Himori","type":"Person","_key":"20518"} +{"label":"Haruo Tanaka","version":25,"id":"34375","lastModified":"1301901606000","name":"Haruo Tanaka","type":"Person","_key":"20519"} +{"label":"Nobuo Kaneko","version":24,"id":"34376","lastModified":"1301901507000","name":"Nobuo Kaneko","type":"Person","_key":"20520"} +{"label":"Bokuzen Hidari","version":24,"id":"34377","lastModified":"1301901715000","name":"Bokuzen Hidari","type":"Person","_key":"20521"} +{"label":"Miki Odagiri","version":22,"id":"34378","lastModified":"1301901840000","name":"Miki Odagiri","type":"Person","_key":"20522"} +{"label":"Destination Saturn","description":"No overview found.","id":"3783","runtime":90,"imdbId":"tt0060303","version":54,"lastModified":"1301419648000","studio":"Universal Pictures","genre":"Science Fiction","title":"Destination Saturn","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"20523"} +{"label":"Saul A. Goodkind","version":28,"id":"33368","lastModified":"1301901832000","name":"Saul A. Goodkind","type":"Person","_key":"20524"} +{"label":"Constance Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/590\/4cb358f57b9aa12640000590\/constance-moore-profile.jpg","version":24,"id":"33774","lastModified":"1301901660000","name":"Constance Moore","type":"Person","_key":"20525"} +{"label":"Jack Mulhall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/236\/4c604cc07b9aa172dc000236\/jack-mulhall-profile.jpg","version":24,"birthday":"-2595114000000","id":"33776","birthplace":"Wappingers Falls, New York, USA","lastModified":"1301901968000","name":"Jack Mulhall","type":"Person","_key":"20526"} +{"label":"Anthony Warde","version":28,"id":"33777","lastModified":"1301901968000","name":"Anthony Warde","type":"Person","_key":"20527"} +{"label":"C. Montague Shaw","version":26,"id":"33698","lastModified":"1301901660000","name":"C. Montague Shaw","type":"Person","_key":"20528"} +{"label":"Frankie and Johnny","description":"Garry Marshall (Pretty Woman) directs the screen adaptation of Terence McNally's play Frankie and Johnny at the Clair de Lune, the story of a short-order cook (Al Pacino) who drives a waitress (Michelle Pfeiffer) crazy with his adamant courtship and mixed messages. The film is okay and not much more than that, the major stumbling block being Marshall's failure to scrub away enough star veneer on Pacino and Pfeiffer to accept them as minimum-wage drones with nowhere to go but toward each other. F","id":"3784","runtime":118,"imdbId":"tt0101912","trailer":"http:\/\/www.youtube.com\/watch?v=FqbByda2v2g","version":239,"lastModified":"1302041871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4c614eaa5e73d63c86000051\/frankie-and-johnny-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Frankie and Johnny","releaseDate":687744000000,"language":"en","type":"Movie","_key":"20529"} +{"label":"Nathan Lane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4bce3c3e017a3c486e000001\/nathan-lane-profile.jpg","version":61,"id":"78729","lastModified":"1301901247000","name":"Nathan Lane","type":"Person","_key":"20530"} +{"label":"Harvey Miller","version":27,"id":"29706","lastModified":"1301902199000","name":"Harvey Miller","type":"Person","_key":"20531"} +{"label":"Jane Morris","version":18,"id":"13451","lastModified":"1301901830000","name":"Jane Morris","type":"Person","_key":"20532"} +{"label":"Greg Lewis","version":22,"id":"33832","lastModified":"1301901840000","name":"Greg Lewis","type":"Person","_key":"20533"} +{"label":"Al Fann","version":21,"id":"33833","lastModified":"1301901819000","name":"Al Fann","type":"Person","_key":"20534"} +{"label":"Ele Keats","version":24,"id":"33834","lastModified":"1301901562000","name":"Ele Keats","type":"Person","_key":"20535"} +{"label":"Tim Hopper","version":21,"id":"33835","lastModified":"1301901820000","name":"Tim Hopper","type":"Person","_key":"20536"} +{"label":"Sean O'Bryan","version":26,"id":"33836","lastModified":"1301901779000","name":"Sean O'Bryan","type":"Person","_key":"20537"} +{"label":"Goldie McLaughlin","version":21,"id":"33837","lastModified":"1301901673000","name":"Goldie McLaughlin","type":"Person","_key":"20538"} +{"label":"Buck Rogers in the 25th Century","description":"No overview found.","id":"3785","runtime":10,"imdbId":"tt0210595","version":60,"lastModified":"1301416901000","genre":"Science Fiction","title":"Buck Rogers in the 25th Century","releaseDate":-1136073600000,"language":"en","type":"Movie","_key":"20539"} +{"label":"Dr. Harlan Tarbell","version":21,"id":"33838","lastModified":"1301902006000","name":"Dr. Harlan Tarbell","type":"Person","_key":"20540"} +{"label":"John Dille Jr.","version":20,"id":"33840","lastModified":"1301902006000","name":"John Dille Jr.","type":"Person","_key":"20541"} +{"label":"Buck Rogers in the 25th Century","description":"Capt. William \"Buck\" Rogers is a jovial space cowboy who is accidentally time-warped from 1987 to 2491. Earth is engaged in interplanetary war following a global holocaust, and Buck's piloting skills make him an ideal starfighter recruit for the Earth Defense Directorate, where his closest colleagues are Dr. Huer (Tim O'Connor), squadron leader Col. Wilma Deering (former model Erin Gray, looking oh-so-foxy), the wisecracking robot Twiki (voiced by cartoon legend Mel Blanc), and a portable comput","id":"3786","runtime":98,"imdbId":"tt0077278","version":211,"lastModified":"1302063287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e7\/4bf10ca4017a3c32120000e7\/buck-rogers-in-the-25th-century-mid.jpg","studio":"Universal Film","genre":"Science Fiction","title":"Buck Rogers in the 25th Century","releaseDate":289180800000,"language":"en","type":"Movie","_key":"20542"} +{"label":"Daniel Haller","version":56,"id":"28236","lastModified":"1301901663000","name":"Daniel Haller","type":"Person","_key":"20543"} +{"label":"Gil Gerard","version":26,"id":"33848","lastModified":"1301901660000","name":"Gil Gerard","type":"Person","_key":"20544"} +{"label":"Pamela Hensley","version":21,"id":"33849","lastModified":"1301901819000","name":"Pamela Hensley","type":"Person","_key":"20545"} +{"label":"Erin Gray","version":25,"id":"33850","lastModified":"1301901525000","name":"Erin Gray","type":"Person","_key":"20546"} +{"label":"Tim O'Conner","version":20,"id":"33851","lastModified":"1301901683000","name":"Tim O'Conner","type":"Person","_key":"20547"} +{"label":"Duke Butler","version":20,"id":"33852","lastModified":"1301901688000","name":"Duke Butler","type":"Person","_key":"20548"} +{"label":"Felix Silla","version":24,"id":"33853","lastModified":"1301901697000","name":"Felix Silla","type":"Person","_key":"20549"} +{"label":"Buck Rogers","description":"No overview found.","id":"3787","runtime":90,"imdbId":"tt0075792","version":69,"lastModified":"1301417774000","studio":"Universal Pictures","genre":"Science Fiction","title":"Buck Rogers","releaseDate":220924800000,"language":"en","type":"Movie","_key":"20550"} +{"label":"Philson Ahn","version":20,"id":"33854","lastModified":"1301901819000","name":"Philson Ahn","type":"Person","_key":"20551"} +{"label":"Guy Usher","version":24,"id":"33855","lastModified":"1301901660000","name":"Guy Usher","type":"Person","_key":"20552"} +{"label":"William Gould","version":22,"birthday":"-2640301200000","id":"33856","lastModified":"1301901968000","name":"William Gould","type":"Person","_key":"20553"} +{"label":"Ham and the Masked Marvel","description":"No overview found.","id":"3845","runtime":15,"imdbId":"tt0311247","version":35,"lastModified":"1301417774000","genre":"Comedy","title":"Ham and the Masked Marvel","releaseDate":-1696291200000,"language":"en","type":"Movie","_key":"20554"} +{"label":"Harry Edwards","version":22,"id":"33944","lastModified":"1301901968000","name":"Harry Edwards","type":"Person","_key":"20555"} +{"label":"Lloyd Hamilton","version":22,"id":"33945","lastModified":"1301901793000","name":"Lloyd Hamilton","type":"Person","_key":"20556"} +{"label":"Bud Duncan","version":20,"id":"33947","lastModified":"1301901793000","name":"Bud Duncan","type":"Person","_key":"20557"} +{"label":"Norma Nichols","version":21,"id":"33948","lastModified":"1301901660000","name":"Norma Nichols","type":"Person","_key":"20558"} +{"label":"The Musical Marvel","description":"No overview found.","id":"3846","runtime":22,"imdbId":"tt0008338","version":59,"lastModified":"1301905008000","studio":"Vogue Motion Picture Company","genre":"Comedy","title":"The Musical Marvel","releaseDate":-1668988800000,"language":"en","type":"Movie","_key":"20559"} +{"label":"Ben Turpin","version":29,"id":"33949","lastModified":"1301901579000","name":"Ben Turpin","type":"Person","_key":"20560"} +{"label":"Robin Williamson","version":20,"id":"33950","lastModified":"1301901458000","name":"Robin Williamson","type":"Person","_key":"20561"} +{"label":"Gypsy Abbott","version":18,"id":"33951","lastModified":"1301901584000","name":"Gypsy Abbott","type":"Person","_key":"20562"} +{"label":"Edward J. Laurie","version":20,"id":"33952","lastModified":"1301901414000","name":"Edward J. Laurie","type":"Person","_key":"20563"} +{"label":"Arthur Moon","version":20,"id":"33953","lastModified":"1301901583000","name":"Arthur Moon","type":"Person","_key":"20564"} +{"label":"F\u00fcr den Unbekannten Hund","description":"No overview found.","id":"3851","runtime":107,"imdbId":"tt0475278","homepage":"http:\/\/www.fuerdenunbekanntenhund.com\/","version":64,"lastModified":"1301903464000","studio":"Medienboard Berlin-Brandenburg GmbH","genre":"Drama","title":"F\u00fcr den Unbekannten Hund","releaseDate":1194480000000,"language":"en","type":"Movie","_key":"20565"} +{"label":"Dominik Reding","version":25,"id":"33982","lastModified":"1301901647000","name":"Dominik Reding","type":"Person","_key":"20566"} +{"label":"Lukas Steltner","version":19,"id":"33985","lastModified":"1301901621000","name":"Lukas Steltner","type":"Person","_key":"20567"} +{"label":"Ferris M.C.","version":18,"id":"33986","lastModified":"1301901836000","name":"Ferris M.C.","type":"Person","_key":"20568"} +{"label":"Zarah L\u00f6wenthal","version":19,"id":"33987","lastModified":"1301901743000","name":"Zarah L\u00f6wenthal","type":"Person","_key":"20569"} +{"label":"Gunnar Melches","version":17,"id":"33988","lastModified":"1301901621000","name":"Gunnar Melches","type":"Person","_key":"20570"} +{"label":"Katharina Lorenz","version":19,"id":"33989","lastModified":"1301901904000","name":"Katharina Lorenz","type":"Person","_key":"20571"} +{"label":"Puja Behboud","version":19,"id":"33990","lastModified":"1301901904000","name":"Puja Behboud","type":"Person","_key":"20572"} +{"label":"Lorenz Klee","version":19,"id":"33991","lastModified":"1301901904000","name":"Lorenz Klee","type":"Person","_key":"20573"} +{"label":"Nikolaus Benda","version":19,"id":"33992","lastModified":"1301901904000","name":"Nikolaus Benda","type":"Person","_key":"20574"} +{"label":"Chajim Koenigshofen","version":17,"id":"33993","lastModified":"1301901904000","name":"Chajim Koenigshofen","type":"Person","_key":"20575"} +{"label":"Klaus Schreiber","version":19,"id":"33994","lastModified":"1301901904000","name":"Klaus Schreiber","type":"Person","_key":"20576"} +{"label":"Fiona Piekarek","version":19,"id":"33995","lastModified":"1301901743000","name":"Fiona Piekarek","type":"Person","_key":"20577"} +{"label":"Florian Jaeger","version":17,"id":"33996","lastModified":"1301901904000","name":"Florian Jaeger","type":"Person","_key":"20578"} +{"label":"Azuloscurocasinegro","description":"No overview found.","id":"3865","runtime":105,"imdbId":"tt0452971","version":60,"lastModified":"1301902799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca6\/4bc9197c017a3c57fe009ca6\/azuloscurocasinegro-mid.jpg","studio":"Tesela Producciones Cinematogr\u00e1ficas","genre":"Drama","title":"Azuloscurocasinegro","releaseDate":1143158400000,"language":"en","type":"Movie","_key":"20579"} +{"label":"Daniel S\u00e1nchez Ar\u00e9valo","version":26,"id":"34017","lastModified":"1301901451000","name":"Daniel S\u00e1nchez Ar\u00e9valo","type":"Person","_key":"20580"} +{"label":"Quim Guti\u00e9rrez","version":21,"id":"34018","lastModified":"1301901819000","name":"Quim Guti\u00e9rrez","type":"Person","_key":"20581"} +{"label":"Marta Etura","version":31,"id":"34019","lastModified":"1301901298000","name":"Marta Etura","type":"Person","_key":"20582"} +{"label":"Ra\u00fal Ar\u00e9valo","version":30,"id":"34021","lastModified":"1301901802000","name":"Ra\u00fal Ar\u00e9valo","type":"Person","_key":"20583"} +{"label":"H\u00e9ctor Colom\u00e9","version":26,"id":"34020","lastModified":"1301901842000","name":"H\u00e9ctor Colom\u00e9","type":"Person","_key":"20584"} +{"label":"Eva Pallar\u00e9s","version":20,"id":"34052","lastModified":"1301902006000","name":"Eva Pallar\u00e9s","type":"Person","_key":"20585"} +{"label":"Ana Wagener","version":20,"id":"34053","lastModified":"1301901803000","name":"Ana Wagener","type":"Person","_key":"20586"} +{"label":"Roberto Enr\u00edquez","version":22,"id":"34054","lastModified":"1301901979000","name":"Roberto Enr\u00edquez","type":"Person","_key":"20587"} +{"label":"Alba G\u00e1rate","version":20,"id":"34055","lastModified":"1301901979000","name":"Alba G\u00e1rate","type":"Person","_key":"20588"} +{"label":"Marta Aledo","version":23,"id":"34056","lastModified":"1301901503000","name":"Marta Aledo","type":"Person","_key":"20589"} +{"label":"Juli\u00e1n Villagr\u00e1n","version":20,"id":"34057","lastModified":"1301901979000","name":"Juli\u00e1n Villagr\u00e1n","type":"Person","_key":"20590"} +{"label":"Daniel Muriel","version":20,"id":"34058","lastModified":"1301901979000","name":"Daniel Muriel","type":"Person","_key":"20591"} +{"label":"D-Day on Mars","description":"This is a shortened version of the 1945 Republic serial \"The Purple Monster Strikes,\" which was released to television in 1966.","id":"3866","runtime":100,"imdbId":"tt0060274","version":53,"lastModified":"1301907449000","studio":"Republic Pictures","genre":"Science Fiction","title":"D-Day on Mars","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"20592"} +{"label":"Spencer Gordon Bennet","version":20,"birthday":"-2429485200000","id":"33954","birthplace":"Brooklyn, New York, USA","lastModified":"1301901574000","name":"Spencer Gordon Bennet","type":"Person","_key":"20593"} +{"label":"Fred C. Brannon","version":20,"id":"33955","lastModified":"1301901997000","name":"Fred C. Brannon","type":"Person","_key":"20594"} +{"label":"Roy Barcroft","version":23,"id":"33969","lastModified":"1301901532000","name":"Roy Barcroft","type":"Person","_key":"20595"} +{"label":"James Craven","version":22,"id":"33970","lastModified":"1301901584000","name":"James Craven","type":"Person","_key":"20596"} +{"label":"Dennis Moore","version":20,"birthday":"-1954458000000","id":"33967","birthplace":"Fort Worth, Texas, USA","lastModified":"1301901583000","name":"Dennis Moore","type":"Person","_key":"20597"} +{"label":"Linda Stirling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fe7\/4bffd8fe017a3c7033000fe7\/linda-stirling-profile.jpg","biography":"Her real name was Louise Schultz. She was born 11 Oct 1921, in Long Beach California. Most of you know her by her screen and acting name of \"Tigress Linda Stirling\".\n\nShe studied music, dance, and drama as a child and received a scholarship to a Hollywood acting school. But she arrived in Hollywood to discover the school had closed, and she took a job as a showgirl at the Earl Carroll Theatre in Hollywood. She modeled in fashion advertisements and one ad led to a screen test. She was cast as a","version":26,"id":"33968","lastModified":"1301904087000","name":"Linda Stirling","type":"Person","_key":"20598"} +{"label":"Bud Geary","version":18,"birthday":"-2268176400000","id":"33971","birthplace":"Salt Lake City, Utah, USA","lastModified":"1301901574000","name":"Bud Geary","type":"Person","_key":"20599"} +{"label":"Joe Whitehead","version":21,"id":"33972","lastModified":"1301902006000","name":"Joe Whitehead","type":"Person","_key":"20600"} +{"label":"Fred Howard","version":20,"id":"33973","lastModified":"1301902006000","name":"Fred Howard","type":"Person","_key":"20601"} +{"label":"Rosemonde James","version":20,"id":"34012","lastModified":"1301902006000","name":"Rosemonde James","type":"Person","_key":"20602"} +{"label":"Mary Moore","version":20,"id":"34011","lastModified":"1301901678000","name":"Mary Moore","type":"Person","_key":"20603"} +{"label":"Wheaton Chambers","version":24,"id":"32221","lastModified":"1301901980000","name":"Wheaton Chambers","type":"Person","_key":"20604"} +{"label":"El Camino de las Hormigas","description":"Four nights in Caracas. A documentary essay about chaos and civilization.","id":"3867","runtime":54,"imdbId":"tt0106509","version":40,"lastModified":"1301908617000","studio":"Makatoa Media Producciones","genre":"Documentary","title":"El Camino de las Hormigas","releaseDate":733536000000,"language":"en","type":"Movie","_key":"20605"} +{"label":"Rafael Marziano Tinoco","version":40,"id":"31804","lastModified":"1301901286000","name":"Rafael Marziano Tinoco","type":"Person","_key":"20606"} +{"label":"1900","description":"Set in Bertolucci's ancestral region of Emilia, the film chronicles the lives of two men during the political turmoils that took place in Italy in the first half on the 20th century.","id":"3870","runtime":315,"imdbId":"tt0074084","version":131,"lastModified":"1301902619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc9197d017a3c57fe009caf\/novecento-mid.jpg","genre":"Drama","title":"1900","releaseDate":209001600000,"language":"en","type":"Movie","_key":"20607"} +{"label":"Stefania Sandrelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d31\/4cd1c8c47b9aa16b9b000d31\/stefania-sandrelli-profile.jpg","version":66,"id":"34027","lastModified":"1301940153000","name":"Stefania Sandrelli","type":"Person","_key":"20608"} +{"label":"Werner Bruhns","version":25,"id":"27597","lastModified":"1301901621000","name":"Werner Bruhns","type":"Person","_key":"20609"} +{"label":"Francesca Bertini","version":24,"id":"34035","lastModified":"1301902005000","name":"Francesca Bertini","type":"Person","_key":"20610"} +{"label":"Anna-Maria Gherardi","version":23,"id":"34037","lastModified":"1301901904000","name":"Anna-Maria Gherardi","type":"Person","_key":"20611"} +{"label":"Ellen Schwiers","version":24,"id":"34039","lastModified":"1301901743000","name":"Ellen Schwiers","type":"Person","_key":"20612"} +{"label":"Anna Henkel","version":23,"id":"34040","lastModified":"1301901621000","name":"Anna Henkel","type":"Person","_key":"20613"} +{"label":"Roberto Maccanti","version":23,"id":"34041","lastModified":"1301901904000","name":"Roberto Maccanti","type":"Person","_key":"20614"} +{"label":"Paolo Pavesi","version":23,"id":"34042","lastModified":"1301901904000","name":"Paolo Pavesi","type":"Person","_key":"20615"} +{"label":"Stefania Casini","version":26,"id":"34043","lastModified":"1301901640000","name":"Stefania Casini","type":"Person","_key":"20616"} +{"label":"Brothers","description":"No overview found.","id":"3875","runtime":117,"imdbId":"tt0386342","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/brothers","version":160,"lastModified":"1301903173000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbc\/4bc9197e017a3c57fe009cbc\/brdre-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"Brothers","releaseDate":1093564800000,"language":"en","type":"Movie","_key":"20617"} +{"label":"Rebecca L\u00f8gstrup","version":24,"id":"34864","lastModified":"1301901743000","name":"Rebecca L\u00f8gstrup","type":"Person","_key":"20618"} +{"label":"Solbj\u00f8rg H\u00f8jfeldt","version":26,"id":"34865","lastModified":"1301901851000","name":"Solbj\u00f8rg H\u00f8jfeldt","type":"Person","_key":"20619"} +{"label":"Paw Henriksen","version":24,"id":"34866","lastModified":"1301901743000","name":"Paw Henriksen","type":"Person","_key":"20620"} +{"label":"Laura Bro","version":27,"id":"34867","lastModified":"1301901509000","name":"Laura Bro","type":"Person","_key":"20621"} +{"label":"Things We Lost in the Fire","description":"A recent widow invites her husband's troubled best friend to live with her and her two children. As he gradually turns his life around, he helps the family cope and confront their loss.","id":"3877","runtime":113,"imdbId":"tt0469623","homepage":"http:\/\/www.thingswelostinthefiremovie.com\/","version":236,"lastModified":"1301902496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd2\/4bc91982017a3c57fe009cd2\/things-we-lost-in-the-fire-mid.jpg","studio":"DreamWorks","genre":"Drama","title":"Things We Lost in the Fire","releaseDate":1190764800000,"language":"en","type":"Movie","_key":"20622"} +{"label":"Sarah Dubrovsky","version":26,"id":"34051","lastModified":"1301901540000","name":"Sarah Dubrovsky","type":"Person","_key":"20623"} +{"label":"Sakima and the Masked Marvel","description":"No overview found.","id":"3899","runtime":100,"imdbId":"tt0060929","version":54,"lastModified":"1301908346000","studio":"Republic Pictures","genre":"Action","title":"Sakima and the Masked Marvel","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"20624"} +{"label":"Johnny Arthur","version":21,"id":"34086","lastModified":"1301901768000","name":"Johnny Arthur","type":"Person","_key":"20625"} +{"label":"Tom Steele","version":19,"id":"34101","lastModified":"1301901904000","name":"Tom Steele","type":"Person","_key":"20626"} +{"label":"Louise Currie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a4e\/4d027c5f7b9aa11bc2000a4e\/louise-currie-profile.jpg","version":23,"birthday":"-1543539600000","id":"34085","birthplace":"Oklahoma City, Oklahoma, USA","lastModified":"1301901374000","name":"Louise Currie","type":"Person","_key":"20627"} +{"label":"William Forrest","version":23,"id":"34084","lastModified":"1301901964000","name":"William Forrest","type":"Person","_key":"20628"} +{"label":"David Bacon","version":19,"id":"34088","lastModified":"1301901621000","name":"David Bacon","type":"Person","_key":"20629"} +{"label":"Bill Healy","version":19,"id":"34089","lastModified":"1301901621000","name":"Bill Healy","type":"Person","_key":"20630"} +{"label":"Rod Bacon","version":18,"id":"34102","lastModified":"1301901689000","name":"Rod Bacon","type":"Person","_key":"20631"} +{"label":"Eddie Parker","version":22,"id":"34103","lastModified":"1301901945000","name":"Eddie Parker","type":"Person","_key":"20632"} +{"label":"Thomas Louden","version":19,"id":"34090","lastModified":"1301901904000","name":"Thomas Louden","type":"Person","_key":"20633"} +{"label":"Gayne Whitman","version":19,"id":"34104","lastModified":"1301901621000","name":"Gayne Whitman","type":"Person","_key":"20634"} +{"label":"Deszcz","description":"No overview found.","id":"3901","runtime":7,"version":22,"lastModified":"1300978272000","genre":"Drama","title":"Deszcz","releaseDate":528940800000,"language":"en","type":"Movie","_key":"20635"} +{"label":"Zbigniew Maziarz","version":18,"id":"34108","lastModified":"1301901793000","name":"Zbigniew Maziarz","type":"Person","_key":"20636"} +{"label":"Dobros\u0142aw Mater","version":16,"id":"34155","lastModified":"1301901992000","name":"Dobros\u0142aw Mater","type":"Person","_key":"20637"} +{"label":"Janusz Paw\u0142ak","version":16,"id":"34156","lastModified":"1301902006000","name":"Janusz Paw\u0142ak","type":"Person","_key":"20638"} +{"label":"Mieczys\u0142aw Marosek","version":16,"id":"34157","lastModified":"1301902006000","name":"Mieczys\u0142aw Marosek","type":"Person","_key":"20639"} +{"label":"Bo\u017cena Dobierzewska","version":16,"id":"34158","lastModified":"1301901999000","name":"Bo\u017cena Dobierzewska","type":"Person","_key":"20640"} +{"label":"Piotr J\u0105kowski","version":16,"id":"34159","lastModified":"1301901968000","name":"Piotr J\u0105kowski","type":"Person","_key":"20641"} +{"label":"I'm Not There","description":"Ruminations on the life of Bob Dylan, where six characters embody a different aspect of the musician's life and work.","id":"3902","runtime":135,"imdbId":"tt0368794","trailer":"http:\/\/www.youtube.com\/watch?v=gJzPSPkWTrM","homepage":"http:\/\/www.imnotthere-movie.com\/","version":153,"lastModified":"1301901768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/032\/4c13fe085e73d64a22000032\/i-m-not-there-mid.jpg","genre":"Drama","title":"I'm Not There","releaseDate":1188518400000,"language":"en","type":"Movie","_key":"20642"} +{"label":"Marcus Carl Franklin","version":26,"id":"34111","lastModified":"1301901771000","name":"Marcus Carl Franklin","type":"Person","_key":"20643"} +{"label":"Primavera","description":"No overview found.","id":"3920","runtime":15,"version":73,"lastModified":"1301419653000","genre":"Drama","title":"Primavera","releaseDate":641606400000,"language":"en","type":"Movie","_key":"20644"} +{"label":"Magdalena Mirek","version":17,"id":"34137","lastModified":"1301901968000","name":"Magdalena Mirek","type":"Person","_key":"20645"} +{"label":"Wiatr","description":"No overview found.","id":"3921","runtime":10,"version":33,"lastModified":"1301419651000","genre":"Drama","title":"Wiatr","releaseDate":560390400000,"language":"en","type":"Movie","_key":"20646"} +{"label":"Malgorzata Potocka","version":16,"id":"34138","lastModified":"1301901793000","name":"Malgorzata Potocka","type":"Person","_key":"20647"} +{"label":"Jan Hencz","version":18,"id":"34143","lastModified":"1301901971000","name":"Jan Hencz","type":"Person","_key":"20648"} +{"label":"Piotr Rudzi\u0144ski","version":16,"id":"34144","lastModified":"1301901969000","name":"Piotr Rudzi\u0144ski","type":"Person","_key":"20649"} +{"label":"Kolysanka","description":"No overview found.","id":"3922","runtime":10,"version":27,"lastModified":"1301905008000","title":"Kolysanka","releaseDate":592012800000,"language":"en","type":"Movie","_key":"20650"} +{"label":"Ma\u0142gorzata Abramowicz","version":16,"id":"34148","lastModified":"1301901793000","name":"Ma\u0142gorzata Abramowicz","type":"Person","_key":"20651"} +{"label":"Jaros\u0142aw Dunaj","version":16,"id":"34149","lastModified":"1301901793000","name":"Jaros\u0142aw Dunaj","type":"Person","_key":"20652"} +{"label":"Dorota Tadajczyk","version":16,"id":"34150","lastModified":"1301901793000","name":"Dorota Tadajczyk","type":"Person","_key":"20653"} +{"label":"Jam Dw\u00f3r Polski","description":"No overview found.","id":"3923","runtime":27,"version":14,"lastModified":"1300978272000","title":"Jam Dw\u00f3r Polski","releaseDate":657849600000,"language":"en","type":"Movie","_key":"20654"} +{"label":"Wlodzimierz Szpak","version":16,"id":"34140","lastModified":"1301901997000","name":"Wlodzimierz Szpak","type":"Person","_key":"20655"} +{"label":"Blondie","description":"No overview found.","id":"3924","version":72,"lastModified":"1301906720000","genre":"Comedy","title":"Blondie","language":"en","type":"Movie","_key":"20656"} +{"label":"Blondie","description":"No overview found.","id":"3925","runtime":70,"imdbId":"tt0029927","version":277,"lastModified":"1301905286000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie","releaseDate":-981072000000,"language":"en","type":"Movie","_key":"20657"} +{"label":"Frank R. Strayer","version":35,"id":"34170","lastModified":"1301901408000","name":"Frank R. Strayer","type":"Person","_key":"20658"} +{"label":"Penny Singleton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d1\/4bf43ec7017a3c320b0007d1\/penny-singleton-profile.jpg","version":49,"id":"34178","lastModified":"1301901321000","name":"Penny Singleton","type":"Person","_key":"20659"} +{"label":"Arthur Lake","version":51,"id":"34179","lastModified":"1301901452000","name":"Arthur Lake","type":"Person","_key":"20660"} +{"label":"Gordon Oliver","version":27,"id":"34180","lastModified":"1301901600000","name":"Gordon Oliver","type":"Person","_key":"20661"} +{"label":"Danny Mummert","version":41,"id":"34181","lastModified":"1301901451000","name":"Danny Mummert","type":"Person","_key":"20662"} +{"label":"Kathleen Lockhart","version":26,"id":"34182","lastModified":"1301901507000","name":"Kathleen Lockhart","type":"Person","_key":"20663"} +{"label":"Dorothy Moore","version":22,"id":"34183","lastModified":"1301902030000","name":"Dorothy Moore","type":"Person","_key":"20664"} +{"label":"Fay Helm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/270\/4bf6c3ea017a3c772b000270\/fay-helm-profile.jpg","version":35,"birthday":"-1916528400000","id":"34184","birthplace":"Bakersfield, California, USA","lastModified":"1301983372000","name":"Fay Helm","type":"Person","_key":"20665"} +{"label":"Willie Best","version":29,"id":"34185","lastModified":"1301901939000","name":"Willie Best","type":"Person","_key":"20666"} +{"label":"Hal K. Dawson","version":22,"id":"34186","lastModified":"1301901621000","name":"Hal K. Dawson","type":"Person","_key":"20667"} +{"label":"Chuck Hamilton","version":17,"id":"34187","birthplace":"California, USA","lastModified":"1301901621000","name":"Chuck Hamilton","type":"Person","_key":"20668"} +{"label":"Daisy","version":41,"id":"34214","lastModified":"1301901575000","name":"Daisy","type":"Person","_key":"20669"} +{"label":"Blondie Brings Up Baby","description":"No overview found.","id":"3929","runtime":72,"imdbId":"tt0031106","version":97,"lastModified":"1301906086000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Brings Up Baby","releaseDate":-951436800000,"language":"en","type":"Movie","_key":"20670"} +{"label":"Robert Middlemass","version":22,"id":"34208","lastModified":"1301901576000","name":"Robert Middlemass","type":"Person","_key":"20671"} +{"label":"Peggy Ann Garner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/085\/4ca648877b9aa17acd000085\/peggy-ann-garner-profile.jpg","version":26,"id":"34210","lastModified":"1301901603000","name":"Peggy Ann Garner","type":"Person","_key":"20672"} +{"label":"Roy Gordon","version":29,"id":"34211","lastModified":"1301901441000","name":"Roy Gordon","type":"Person","_key":"20673"} +{"label":"Grace Stafford","version":20,"id":"34212","lastModified":"1301901621000","name":"Grace Stafford","type":"Person","_key":"20674"} +{"label":"Helen Jerome Eddy","version":21,"id":"34213","lastModified":"1301901540000","name":"Helen Jerome Eddy","type":"Person","_key":"20675"} +{"label":"Blondie Takes a Vacation","description":"No overview found.","id":"3930","runtime":72,"imdbId":"tt0031108","version":88,"lastModified":"1301906637000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Takes a Vacation","releaseDate":-961027200000,"language":"en","type":"Movie","_key":"20676"} +{"label":"Donald MacBride","version":37,"id":"34234","lastModified":"1301901702000","name":"Donald MacBride","type":"Person","_key":"20677"} +{"label":"Thomas W. Ross","version":24,"id":"34235","lastModified":"1301902005000","name":"Thomas W. Ross","type":"Person","_key":"20678"} +{"label":"Elizabeth Dunn","version":21,"id":"34236","lastModified":"1301901850000","name":"Elizabeth Dunn","type":"Person","_key":"20679"} +{"label":"Robert Wilcox","version":24,"id":"34237","lastModified":"1301901560000","name":"Robert Wilcox","type":"Person","_key":"20680"} +{"label":"Harlan Briggs","version":22,"id":"34238","lastModified":"1301901939000","name":"Harlan Briggs","type":"Person","_key":"20681"} +{"label":"Blondie Meets the Boss","description":"No overview found.","id":"3931","runtime":75,"imdbId":"tt0031107","version":83,"lastModified":"1301906636000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Meets the Boss","releaseDate":-972604800000,"language":"en","type":"Movie","_key":"20682"} +{"label":"Stanley Brown","version":25,"id":"34241","lastModified":"1301901904000","name":"Stanley Brown","type":"Person","_key":"20683"} +{"label":"Joel Dean","version":20,"id":"34242","lastModified":"1301902005000","name":"Joel Dean","type":"Person","_key":"20684"} +{"label":"Richard Fiske","version":22,"id":"34243","lastModified":"1301901598000","name":"Richard Fiske","type":"Person","_key":"20685"} +{"label":"Inez Courtney","version":23,"id":"34244","lastModified":"1301983210000","name":"Inez Courtney","type":"Person","_key":"20686"} +{"label":"Skinnay Ennis and His Orchestra","version":18,"id":"34245","lastModified":"1301902019000","name":"Skinnay Ennis and His Orchestra","type":"Person","_key":"20687"} +{"label":"Corpse Bride","description":"Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.","id":"3933","runtime":77,"imdbId":"tt0121164","trailer":"http:\/\/www.youtube.com\/watch?v=1473","homepage":"http:\/\/corpsebridemovie.warnerbros.com\/","version":256,"lastModified":"1301901368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf5\/4bc91988017a3c57fe009cf5\/corpse-bride-mid.jpg","studio":"Warner Bros. Pictures","genre":"Animation","title":"Corpse Bride","releaseDate":1126137600000,"language":"en","tagline":"There's been a grave misunderstanding.","type":"Movie","_key":"20688"} +{"label":"Mike Johnson","version":24,"id":"34891","lastModified":"1301901385000","name":"Mike Johnson","type":"Person","_key":"20689"} +{"label":"Danny Elfman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4d0db3305e73d6370e00100b\/danny-elfman-profile.jpg","version":236,"id":"531","lastModified":"1300030853000","name":"Danny Elfman","type":"Person","_key":"20690"} +{"label":"Paul Whitehouse","version":28,"id":"34900","lastModified":"1301901752000","name":"Paul Whitehouse","type":"Person","_key":"20691"} +{"label":"Joanna Lumley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/564\/4cb8e7725e73d67785000564\/joanna-lumley-profile.jpg","version":47,"id":"34901","lastModified":"1301901283000","name":"Joanna Lumley","type":"Person","_key":"20692"} +{"label":"Jane Horrocks","version":54,"id":"34902","lastModified":"1301901287000","name":"Jane Horrocks","type":"Person","_key":"20693"} +{"label":"Enn Reitel","version":28,"id":"34904","lastModified":"1301901628000","name":"Enn Reitel","type":"Person","_key":"20694"} +{"label":"Stephen Ballantyne","version":23,"id":"34905","lastModified":"1301901546000","name":"Stephen Ballantyne","type":"Person","_key":"20695"} +{"label":"M\u00e9nage","description":"No overview found.","id":"3934","runtime":84,"imdbId":"tt0092068","version":74,"lastModified":"1301908617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfa\/4bc91989017a3c57fe009cfa\/tenue-de-soiree-mid.jpg","studio":"Cin\u00e9 Valse","genre":"Comedy","title":"M\u00e9nage","releaseDate":514598400000,"language":"en","type":"Movie","_key":"20696"} +{"label":"Bertrand Blier","version":64,"id":"34262","lastModified":"1301901299000","name":"Bertrand Blier","type":"Person","_key":"20697"} +{"label":"The Last Woman","description":"No overview found.","id":"3935","runtime":108,"imdbId":"tt0075364","version":82,"lastModified":"1301302611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/025\/4d5c414e7b9aa154c7000025\/la-derni-re-femme-mid.jpg","studio":"Flaminia Produzioni Cinematografiche","genre":"Drama","title":"The Last Woman","releaseDate":198892800000,"language":"en","type":"Movie","_key":"20698"} +{"label":"Marco Ferreri","version":30,"id":"34264","lastModified":"1301901855000","name":"Marco Ferreri","type":"Person","_key":"20699"} +{"label":"Zouzou","version":26,"id":"34266","lastModified":"1301901659000","name":"Zouzou","type":"Person","_key":"20700"} +{"label":"Giuliana Calandra","version":29,"id":"51744","lastModified":"1301901813000","name":"Giuliana Calandra","type":"Person","_key":"20701"} +{"label":"Blondie Has Servant Trouble","description":"No overview found.","id":"3936","runtime":72,"imdbId":"tt0032261","version":83,"lastModified":"1301907287000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Has Servant Trouble","releaseDate":-928972800000,"language":"en","type":"Movie","_key":"20702"} +{"label":"Esther Dale","version":31,"id":"34268","lastModified":"1301901590000","name":"Esther Dale","type":"Person","_key":"20703"} +{"label":"Ray Turner","version":20,"id":"34269","lastModified":"1301902005000","name":"Ray Turner","type":"Person","_key":"20704"} +{"label":"Walter Soderling","version":23,"id":"34270","lastModified":"1301902009000","name":"Walter Soderling","type":"Person","_key":"20705"} +{"label":"Blondie on a Budget","description":"No overview found.","id":"3937","runtime":72,"imdbId":"tt0032263","version":91,"lastModified":"1301908346000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie on a Budget","releaseDate":-941673600000,"language":"en","type":"Movie","_key":"20706"} +{"label":"Thurston Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ae\/4be4566f017a3c35b90009ae\/thurston-hall-profile.jpg","version":35,"id":"34277","lastModified":"1301901507000","name":"Thurston Hall","type":"Person","_key":"20707"} +{"label":"William Brisbane","version":19,"id":"34278","lastModified":"1301901743000","name":"William Brisbane","type":"Person","_key":"20708"} +{"label":"Blondie Plays Cupid","description":"The Bumstead family is off to see relatives in the country when Blondie runs into Charlie and Millie, an eloping couple needing her help.","id":"3938","runtime":72,"imdbId":"tt0032262","version":90,"lastModified":"1301906086000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Plays Cupid","releaseDate":-920505600000,"language":"en","type":"Movie","_key":"20709"} +{"label":"Will Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/80d\/4c5c36447b9aa151f500080d\/will-wright-profile.jpg","version":39,"id":"34279","lastModified":"1301901077000","name":"Will Wright","type":"Person","_key":"20710"} +{"label":"Spencer Charters","version":28,"id":"34280","lastModified":"1301901621000","name":"Spencer Charters","type":"Person","_key":"20711"} +{"label":"Blondie in Society","description":"No overview found.","id":"3939","runtime":76,"imdbId":"tt0033404","version":89,"lastModified":"1301302609000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie in Society","releaseDate":-898128000000,"language":"en","type":"Movie","_key":"20712"} +{"label":"The Robert Mitchell Boy Choir","version":18,"id":"34284","lastModified":"1301902019000","name":"The Robert Mitchell Boy Choir","type":"Person","_key":"20713"} +{"label":"William Frawley","version":31,"id":"34285","lastModified":"1301901801000","name":"William Frawley","type":"Person","_key":"20714"} +{"label":"Chick Chandler","version":28,"birthday":"-2049757200000","id":"34286","birthplace":"Kingston, New York, USA","lastModified":"1301901666000","name":"Chick Chandler","type":"Person","_key":"20715"} +{"label":"Bill Goodwin","version":30,"id":"34287","lastModified":"1301901801000","name":"Bill Goodwin","type":"Person","_key":"20716"} +{"label":"Blondie for Victory","description":"No overview found.","id":"3940","runtime":71,"imdbId":"tt0034526","version":67,"lastModified":"1301416749000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie for Victory","releaseDate":-864864000000,"language":"en","type":"Movie","_key":"20717"} +{"label":"Majelle White","version":20,"id":"34292","lastModified":"1301902005000","name":"Majelle White","type":"Person","_key":"20718"} +{"label":"Stuart Erwin","version":27,"id":"34293","lastModified":"1301901702000","name":"Stuart Erwin","type":"Person","_key":"20719"} +{"label":"Edward Gargan","version":29,"birthday":"-2128899600000","id":"34294","birthplace":"Brooklyn, New York, USA","lastModified":"1301901857000","name":"Edward Gargan","type":"Person","_key":"20720"} +{"label":"Blondie Goes Latin","description":"No overview found.","id":"3941","runtime":72,"imdbId":"tt0033403","version":83,"lastModified":"1301421212000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Goes Latin","releaseDate":-878688000000,"language":"en","type":"Movie","_key":"20721"} +{"label":"Ruth Terry","version":20,"id":"34449","lastModified":"1301901904000","name":"Ruth Terry","type":"Person","_key":"20722"} +{"label":"Janet Burston","version":19,"id":"34450","lastModified":"1301901904000","name":"Janet Burston","type":"Person","_key":"20723"} +{"label":"Kirby Grant","version":19,"id":"34451","lastModified":"1301901904000","name":"Kirby Grant","type":"Person","_key":"20724"} +{"label":"Tito Gu\u00edzar","version":18,"id":"34452","lastModified":"1301902019000","name":"Tito Gu\u00edzar","type":"Person","_key":"20725"} +{"label":"Blondie Goes to College","description":"No overview found.","id":"3942","runtime":74,"imdbId":"tt0034525","version":68,"lastModified":"1301905726000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Goes to College","releaseDate":-882403200000,"language":"en","type":"Movie","_key":"20726"} +{"label":"Janet Blair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/772\/4be2cd73017a3c35c1000772\/janet-blair-profile.jpg","version":27,"id":"34314","lastModified":"1301901805000","name":"Janet Blair","type":"Person","_key":"20727"} +{"label":"Adele Mara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/121\/4c7682bd7b9aa16a07000121\/adele-mara-profile.jpg","version":25,"id":"34315","lastModified":"1301901530000","name":"Adele Mara","type":"Person","_key":"20728"} +{"label":"Larry Parks","version":24,"id":"34316","lastModified":"1301901819000","name":"Larry Parks","type":"Person","_key":"20729"} +{"label":"Andrew Tombes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/65b\/4bf3e8ad017a3c321300065b\/andrew-tombes-profile.jpg","version":27,"id":"34317","lastModified":"1301901820000","name":"Andrew Tombes","type":"Person","_key":"20730"} +{"label":"Blondie's Blessed Event","description":"No overview found.","id":"3943","runtime":72,"imdbId":"tt0034527","version":84,"lastModified":"1301908345000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie's Blessed Event","releaseDate":-875145600000,"language":"en","type":"Movie","_key":"20731"} +{"label":"Norma Jean Wayne","version":19,"id":"34318","lastModified":"1301901904000","name":"Norma Jean Wayne","type":"Person","_key":"20732"} +{"label":"Paul Harvey","version":38,"id":"34320","lastModified":"1301901775000","name":"Paul Harvey","type":"Person","_key":"20733"} +{"label":"Dorothy Ann Seese","version":19,"id":"34322","lastModified":"1301901904000","name":"Dorothy Ann Seese","type":"Person","_key":"20734"} +{"label":"Tom Kennedy","version":28,"id":"34324","lastModified":"1301901848000","name":"Tom Kennedy","type":"Person","_key":"20735"} +{"label":"Eileen O'Hearn","version":18,"id":"34325","lastModified":"1301902005000","name":"Eileen O'Hearn","type":"Person","_key":"20736"} +{"label":"Footlight Glamour","description":"No overview found.","id":"3944","runtime":72,"imdbId":"tt0035895","version":84,"lastModified":"1301906085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cff\/4bc91989017a3c57fe009cff\/footlight-glamour-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Footlight Glamour","releaseDate":-828576000000,"language":"en","type":"Movie","_key":"20737"} +{"label":"Marjorie Ann Mutchie","version":35,"id":"34329","lastModified":"1301901680000","name":"Marjorie Ann Mutchie","type":"Person","_key":"20738"} +{"label":"Ann Savage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4bd7256d017a3c21f60000e6\/ann-savage-profile.jpg","version":26,"id":"34330","lastModified":"1301901234000","name":"Ann Savage","type":"Person","_key":"20739"} +{"label":"Elspeth Dudgeon","version":19,"id":"34331","lastModified":"1301901743000","name":"Elspeth Dudgeon","type":"Person","_key":"20740"} +{"label":"Lew Kelly","version":18,"birthday":"-2851376400000","id":"34332","birthplace":"Saint Louis, Missouri, USA","lastModified":"1301901621000","name":"Lew Kelly","type":"Person","_key":"20741"} +{"label":"Arthur Loft","version":24,"id":"34333","lastModified":"1301901659000","name":"Arthur Loft","type":"Person","_key":"20742"} +{"label":"Rafael Storm","version":20,"id":"34334","lastModified":"1301901743000","name":"Rafael Storm","type":"Person","_key":"20743"} +{"label":"It's a Great Life","description":"No overview found.","id":"3959","runtime":72,"imdbId":"tt0036049","version":84,"lastModified":"1301906636000","studio":"Columbia Pictures","genre":"Comedy","title":"It's a Great Life","releaseDate":-839462400000,"language":"en","type":"Movie","_key":"20744"} +{"label":"Reggie the Horse","version":18,"id":"34346","lastModified":"1301902021000","name":"Reggie the Horse","type":"Person","_key":"20745"} +{"label":"Hugh Herbert","version":30,"id":"34347","lastModified":"1301904062000","name":"Hugh Herbert","type":"Person","_key":"20746"} +{"label":"Alan Dinehart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f2\/4be496a4017a3c35b50009f2\/alan-dinehart-profile.jpg","version":28,"id":"34348","lastModified":"1301901583000","name":"Alan Dinehart","type":"Person","_key":"20747"} +{"label":"Douglas Leavitt","version":20,"id":"34349","lastModified":"1301901678000","name":"Douglas Leavitt","type":"Person","_key":"20748"} +{"label":"Wei\u00dft was geil w\u00e4r...?!","description":"No overview found.","id":"3960","runtime":97,"imdbId":"tt1104712","homepage":"http:\/\/www.wwgw.de\/","version":64,"lastModified":"1301905341000","studio":"Filmf\u00f6rderanstalt (FFA)","genre":"Comedy","title":"Wei\u00dft was geil w\u00e4r...?!","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"20749"} +{"label":"Mike Marzuk","version":23,"id":"34341","lastModified":"1301901659000","name":"Mike Marzuk","type":"Person","_key":"20750"} +{"label":"Axel Schreiber","version":21,"id":"25415","lastModified":"1301901568000","name":"Axel Schreiber","type":"Person","_key":"20751"} +{"label":"Isaak Dentler","version":20,"id":"34352","lastModified":"1301901793000","name":"Isaak Dentler","type":"Person","_key":"20752"} +{"label":"Nadja Bobyleva","version":22,"id":"34353","lastModified":"1301901447000","name":"Nadja Bobyleva","type":"Person","_key":"20753"} +{"label":"Hedwig Podzich","version":18,"id":"34354","lastModified":"1301901830000","name":"Hedwig Podzich","type":"Person","_key":"20754"} +{"label":"Tina Grawe","version":20,"id":"34355","lastModified":"1301901793000","name":"Tina Grawe","type":"Person","_key":"20755"} +{"label":"Philippine Pachl","version":20,"id":"34356","lastModified":"1301901968000","name":"Philippine Pachl","type":"Person","_key":"20756"} +{"label":"Leave lt to Blondie","description":"No overview found.","id":"3961","runtime":74,"imdbId":"tt0037866","version":66,"lastModified":"1300978275000","studio":"Columbia Pictures","genre":"Comedy","title":"Leave lt to Blondie","releaseDate":-784425600000,"language":"en","type":"Movie","_key":"20757"} +{"label":"Abby Berlin","version":29,"id":"34357","lastModified":"1301901659000","name":"Abby Berlin","type":"Person","_key":"20758"} +{"label":"Marjorie Weaver","version":29,"id":"34363","lastModified":"1301901986000","name":"Marjorie Weaver","type":"Person","_key":"20759"} +{"label":"Eula Morgan","version":19,"id":"34364","lastModified":"1301901904000","name":"Eula Morgan","type":"Person","_key":"20760"} +{"label":"Arthur Space","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bb6\/4cc18fef7b9aa138d7001bb6\/arthur-space-profile.jpg","version":35,"id":"34365","lastModified":"1301901605000","name":"Arthur Space","type":"Person","_key":"20761"} +{"label":"Fred Graff","version":20,"id":"34366","lastModified":"1301901904000","name":"Fred Graff","type":"Person","_key":"20762"} +{"label":"Jack Rice","version":25,"id":"34367","lastModified":"1301902005000","name":"Jack Rice","type":"Person","_key":"20763"} +{"label":"Marilyn Johnson","version":17,"id":"34368","lastModified":"1301901904000","name":"Marilyn Johnson","type":"Person","_key":"20764"} +{"label":"Bis zum Ellenbogen","description":"No overview found.","id":"3962","runtime":90,"imdbId":"tt0818108","homepage":"www.ellenbogen-derfilm.de","version":56,"lastModified":"1301904457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0c\/4bc9198a017a3c57fe009d0c\/bis-zum-ellenbogen-mid.jpg","studio":"Element e Filmproduktion","genre":"Comedy","title":"Bis zum Ellenbogen","releaseDate":1182643200000,"language":"en","type":"Movie","_key":"20765"} +{"label":"Stefan Kurt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/631\/4d0b85f05e73d6469a000631\/stefan-kurt-profile.jpg","version":44,"id":"34383","lastModified":"1301901292000","name":"Stefan Kurt","type":"Person","_key":"20766"} +{"label":"Susanne Wolff","version":22,"id":"34390","lastModified":"1301901925000","name":"Susanne Wolff","type":"Person","_key":"20767"} +{"label":"Katharina Matz","version":19,"id":"34391","lastModified":"1301901632000","name":"Katharina Matz","type":"Person","_key":"20768"} +{"label":"Sophie Stierle","version":19,"id":"34392","lastModified":"1301901632000","name":"Sophie Stierle","type":"Person","_key":"20769"} +{"label":"Luisa Lindner","version":19,"id":"34394","lastModified":"1301901632000","name":"Luisa Lindner","type":"Person","_key":"20770"} +{"label":"Saga Les Rivi\u00e8res pourpres","description":"No overview found.","id":"3963","version":105,"lastModified":"1301908485000","title":"Saga Les Rivi\u00e8res pourpres","language":"en","type":"Movie","_key":"20771"} +{"label":"The Crimson Rivers","description":"Detective Pierre Niemans (Jean Reno) is sent to a small town in the French Alps to investigate the brutal murder of a senior student of the local university. Meanwhile, Detective Max Kerkerian (Vincent Cassel) investigates the desecration of the grave of a girl in the nearby town of Sarzac. As other corpses are found, the two men beginn to notice the startling connections between their cases...","id":"3964","runtime":95,"imdbId":"tt0228786","version":195,"lastModified":"1301872539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d15\/4bc9198b017a3c57fe009d15\/les-rivieres-pourpres-mid.jpg","studio":"Gaumont","genre":"Thriller","title":"The Crimson Rivers","releaseDate":946684800000,"language":"en","type":"Movie","_key":"20772"} +{"label":"Nadia Far\u00e8s","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70a\/4d13731b5e73d6083400170a\/nadia-far-s-profile.jpg","version":41,"id":"34627","lastModified":"1301901190000","name":"Nadia Far\u00e8s","type":"Person","_key":"20773"} +{"label":"Karim Belkhadra","version":35,"id":"35076","lastModified":"1301901419000","name":"Karim Belkhadra","type":"Person","_key":"20774"} +{"label":"Didier Flamand","version":36,"id":"35077","lastModified":"1301901662000","name":"Didier Flamand","type":"Person","_key":"20775"} +{"label":"Crimson Rivers II: Angels of the Apocalypse","description":"Pierre Niemans faces the threat of the apocalypse while investigating a series of ritual murders.","id":"3965","runtime":90,"imdbId":"tt0337103","version":126,"lastModified":"1301588596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4bd385a5017a3c5342000005\/les-rivieres-pourpres-ii-les-anges-de-l-apocalypse-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Crimson Rivers II: Angels of the Apocalypse","releaseDate":1077062400000,"language":"en","tagline":"An unholy crime... An unstoppable killer... Caught in a deadly tide.","type":"Movie","_key":"20776"} +{"label":"Camille Natta","version":32,"id":"35081","lastModified":"1301901235000","name":"Camille Natta","type":"Person","_key":"20777"} +{"label":"Gabrielle Lazure","version":32,"id":"35082","lastModified":"1301901370000","name":"Gabrielle Lazure","type":"Person","_key":"20778"} +{"label":"Augustin Legrand","version":36,"id":"35083","lastModified":"1301901298000","name":"Augustin Legrand","type":"Person","_key":"20779"} +{"label":"Johnny Hallyday","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42e\/4d827acf5e73d6397e00042e\/johnny-hallyday-profile.jpg","biography":"<font class=\"home_lien_noir\">Johnny Hallyday, v\u00e9ritable l\u00e9gende de la \nchanson fran\u00e7aise, d\u00e9bute sa carri\u00e8re cin\u00e9matographique en 1955 avec une\n toute petite apparition dans Les Diaboliques , \u00e0 l'\u00e2ge de douze ans.\n\n \n\nProfitant de son succ\u00e8s naissant dans la musique, il appara\u00eet ensuite, \nadolescent, dans le film \u00e0 sketchs Les Parisiennes , puis dans Cherchez \nl'idole et D'o\u00f9 viens-tu Johnny ? , deux com\u00e9dies musicales, le second \nenti\u00e8rement bas\u00e9 sur son nouveau statut d'ic\u00f4ne de la chanson. \n\n","version":48,"birthday":"-837828000000","id":"35084","birthplace":"Paris, France","lastModified":"1301901115000","name":"Johnny Hallyday","type":"Person","_key":"20780"} +{"label":"Andr\u00e9 Penvern","version":31,"id":"35085","lastModified":"1301901363000","name":"Andr\u00e9 Penvern","type":"Person","_key":"20781"} +{"label":"Blondie Knows Best","description":"No overview found.","id":"3966","runtime":72,"imdbId":"tt0038367","version":80,"lastModified":"1301907426000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Knows Best","releaseDate":-732412800000,"language":"en","type":"Movie","_key":"20782"} +{"label":"Blondie's Lucky Day","description":"No overview found.","id":"3967","runtime":72,"imdbId":"tt0038368","version":66,"lastModified":"1301908345000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie's Lucky Day","releaseDate":-749347200000,"language":"en","type":"Movie","_key":"20783"} +{"label":"Bob Haymes","version":18,"id":"34414","lastModified":"1301902020000","name":"Bob Haymes","type":"Person","_key":"20784"} +{"label":"Angelyn Orr","version":19,"id":"34415","lastModified":"1301901904000","name":"Angelyn Orr","type":"Person","_key":"20785"} +{"label":"Charles Arnt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/038\/4ca3795b7b9aa16ed9000038\/charles-arnt-profile.jpg","version":32,"id":"34416","lastModified":"1301901472000","name":"Charles Arnt","type":"Person","_key":"20786"} +{"label":"Life with Blondie","description":"No overview found.","id":"3968","runtime":72,"imdbId":"tt0038691","version":86,"lastModified":"1301907286000","studio":"Columbia Pictures","genre":"Comedy","title":"Life with Blondie","releaseDate":-759024000000,"language":"en","type":"Movie","_key":"20787"} +{"label":"Bobby Larson","version":19,"id":"34420","lastModified":"1301901742000","name":"Bobby Larson","type":"Person","_key":"20788"} +{"label":"George Tyne","version":25,"id":"34421","lastModified":"1301901683000","name":"George Tyne","type":"Person","_key":"20789"} +{"label":"Francis Pierlot","version":27,"id":"34422","lastModified":"1301901379000","name":"Francis Pierlot","type":"Person","_key":"20790"} +{"label":"Ray Walker","version":28,"id":"34423","lastModified":"1301901803000","name":"Ray Walker","type":"Person","_key":"20791"} +{"label":"Steve Benton","version":19,"id":"34424","lastModified":"1301901742000","name":"Steve Benton","type":"Person","_key":"20792"} +{"label":"Blondie in the Dough","description":"No overview found.","id":"3969","runtime":72,"imdbId":"tt0039200","version":71,"lastModified":"1301908599000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie in the Dough","releaseDate":-700963200000,"language":"en","type":"Movie","_key":"20793"} +{"label":"Blondie's Anniversary","description":"No overview found.","id":"3970","runtime":72,"imdbId":"tt0039201","version":80,"lastModified":"1301419642000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie's Anniversary","releaseDate":-695520000000,"language":"en","type":"Movie","_key":"20794"} +{"label":"Adele Jergens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/036\/4bcf59eb017a3c63eb000036\/adele-jergens-profile.jpg","version":30,"id":"34437","lastModified":"1301901804000","name":"Adele Jergens","type":"Person","_key":"20795"} +{"label":"Blondie's Big Moment","description":"No overview found.","id":"3976","runtime":72,"imdbId":"tt0039202","version":85,"lastModified":"1301908345000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie's Big Moment","releaseDate":-725155200000,"language":"en","type":"Movie","_key":"20796"} +{"label":"Daisy","version":21,"id":"34441","lastModified":"1301902017000","name":"Daisy","type":"Person","_key":"20797"} +{"label":"Anita Louise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be6\/4be480ce017a3c35b4000be6\/anita-louise-profile.jpg","version":30,"id":"34442","lastModified":"1301901822000","name":"Anita Louise","type":"Person","_key":"20798"} +{"label":"Jack Davis","version":19,"id":"34443","lastModified":"1301901904000","name":"Jack Davis","type":"Person","_key":"20799"} +{"label":"Johnny Granath","version":19,"id":"34444","lastModified":"1301901904000","name":"Johnny Granath","type":"Person","_key":"20800"} +{"label":"Alyn Lockwood","version":23,"id":"34445","lastModified":"1301902005000","name":"Alyn Lockwood","type":"Person","_key":"20801"} +{"label":"Robert De Haven","version":19,"id":"34446","lastModified":"1301901904000","name":"Robert De Haven","type":"Person","_key":"20802"} +{"label":"Douglas Wood","version":19,"id":"34447","lastModified":"1301901903000","name":"Douglas Wood","type":"Person","_key":"20803"} +{"label":"Dick Wessel","version":26,"id":"34448","lastModified":"1301902005000","name":"Dick Wessel","type":"Person","_key":"20804"} +{"label":"Blondies Holiday","description":"No overview found.","id":"3977","runtime":72,"imdbId":"tt0039203","version":75,"lastModified":"1301421212000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondies Holiday","releaseDate":-717292800000,"language":"en","type":"Movie","_key":"20805"} +{"label":"Sid Tomack","version":26,"id":"34468","lastModified":"1301901532000","name":"Sid Tomack","type":"Person","_key":"20806"} +{"label":"Mary Young","version":21,"id":"34469","lastModified":"1301901903000","name":"Mary Young","type":"Person","_key":"20807"} +{"label":"Jeff York","version":30,"id":"34470","lastModified":"1301901580000","name":"Jeff York","type":"Person","_key":"20808"} +{"label":"Anne Nagel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ec\/4c5b0e4e7b9aa151f60005ec\/anne-nagel-profile.jpg","version":29,"id":"34471","lastModified":"1301901562000","name":"Anne Nagel","type":"Person","_key":"20809"} +{"label":"Jody Gilbert","version":23,"id":"34472","lastModified":"1301901621000","name":"Jody Gilbert","type":"Person","_key":"20810"} +{"label":"Blondies Reward","description":"No overview found.","id":"3978","runtime":72,"imdbId":"tt0040173","version":69,"lastModified":"1300978276000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondies Reward","releaseDate":-681004800000,"language":"en","type":"Movie","_key":"20811"} +{"label":"Gay Nelson","version":19,"id":"34474","lastModified":"1301901742000","name":"Gay Nelson","type":"Person","_key":"20812"} +{"label":"Ross Ford","version":24,"id":"34475","lastModified":"1301901559000","name":"Ross Ford","type":"Person","_key":"20813"} +{"label":"Blondies Secret","description":"No overview found.","id":"3979","runtime":72,"imdbId":"tt0040174","version":78,"lastModified":"1301908345000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondies Secret","releaseDate":-663465600000,"language":"en","type":"Movie","_key":"20814"} +{"label":"Edward Bernds","version":45,"id":"34402","lastModified":"1301901378000","name":"Edward Bernds","type":"Person","_key":"20815"} +{"label":"Critters","description":"A massive ball of furry creatures from another world eat their way through a small mid-western town followed by intergalactic bounty hunters opposed only by militant townspeople.","id":"3980","runtime":82,"imdbId":"tt0090887","trailer":"http:\/\/www.youtube.com\/watch?v=daefyJqt39M","version":108,"lastModified":"1301902886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2b\/4bc9198f017a3c57fe009d2b\/critters-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Critters","releaseDate":513561600000,"language":"en","type":"Movie","_key":"20816"} +{"label":"Billy Green Bush","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33a\/4c4d3fa17b9aa1237d00033a\/billy-green-bush-profile.jpg","version":26,"id":"35090","lastModified":"1301901306000","name":"Billy Green Bush","type":"Person","_key":"20817"} +{"label":"Scott Grimes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a8\/4be2e194017a3c35b70007a8\/scott-grimes-profile.jpg","version":43,"id":"35091","lastModified":"1301901467000","name":"Scott Grimes","type":"Person","_key":"20818"} +{"label":"Nadine Van der Velde","version":19,"id":"35875","lastModified":"1301901458000","name":"Nadine Van der Velde","type":"Person","_key":"20819"} +{"label":"Don Keith Opper","version":29,"id":"35092","lastModified":"1301901244000","name":"Don Keith Opper","type":"Person","_key":"20820"} +{"label":"What Women Want","description":"After an accident, a chauvenistic executive gains the ability to hear what women are really thinking.","id":"3981","runtime":126,"imdbId":"tt0207201","version":248,"lastModified":"1301901634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3c\/4bc91991017a3c57fe009d3c\/what-women-want-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"What Women Want","releaseDate":976838400000,"language":"en","type":"Movie","_key":"20821"} +{"label":"Nancy Meyers","version":131,"id":"17698","lastModified":"1301958059000","name":"Nancy Meyers","type":"Person","_key":"20822"} +{"label":"Lauren Holly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c2d0fc95e73d63cca000001\/lauren-holly-profile.jpg","version":60,"id":"34485","lastModified":"1301904051000","name":"Lauren Holly","type":"Person","_key":"20823"} +{"label":"Mark Feuerstein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4d1d33fc5e73d66b300000cc\/mark-feuerstein-profile.jpg","version":30,"id":"11365","lastModified":"1301901146000","name":"Mark Feuerstein","type":"Person","_key":"20824"} +{"label":"Ashley Johnson","version":39,"id":"34486","lastModified":"1301901649000","name":"Ashley Johnson","type":"Person","_key":"20825"} +{"label":"Delta Burke","version":28,"id":"34487","lastModified":"1301901305000","name":"Delta Burke","type":"Person","_key":"20826"} +{"label":"Diana Maria Riva","version":24,"id":"34488","lastModified":"1301901588000","name":"Diana Maria Riva","type":"Person","_key":"20827"} +{"label":"Eric Balfour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84a\/4cd9d6bd7b9aa113ac00084a\/eric-balfour-profile.jpg","version":69,"id":"34489","lastModified":"1301901096000","name":"Eric Balfour","type":"Person","_key":"20828"} +{"label":"Sarah Paulson","version":44,"id":"34490","lastModified":"1301901260000","name":"Sarah Paulson","type":"Person","_key":"20829"} +{"label":"Il Dolce e l'amaro","description":"No overview found.","id":"3982","runtime":98,"imdbId":"tt1071785","version":70,"lastModified":"1301906754000","studio":"Indigo Film","genre":"Crime","title":"Il Dolce e l'amaro","releaseDate":1188864000000,"language":"en","type":"Movie","_key":"20830"} +{"label":"Luigi Lo Cascio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4ca617b45e73d643ef000001\/luigi-lo-cascio-profile.jpg","version":39,"birthday":"-69469200000","id":"34491","birthplace":"Palermo, Italy","lastModified":"1301901136000","name":"Luigi Lo Cascio","type":"Person","_key":"20831"} +{"label":"Donatella Finocchiaro","version":24,"id":"35102","lastModified":"1301901819000","name":"Donatella Finocchiaro","type":"Person","_key":"20832"} +{"label":"Gaetano Bruno","version":28,"id":"35103","lastModified":"1301901819000","name":"Gaetano Bruno","type":"Person","_key":"20833"} +{"label":"Renato Carpentieri","version":28,"id":"35104","lastModified":"1301901794000","name":"Renato Carpentieri","type":"Person","_key":"20834"} +{"label":"Toni Gambino","version":20,"id":"35105","lastModified":"1301902005000","name":"Toni Gambino","type":"Person","_key":"20835"} +{"label":"Fabrizio Gifuni","version":23,"id":"35106","lastModified":"1301901968000","name":"Fabrizio Gifuni","type":"Person","_key":"20836"} +{"label":"Ornella Giusto","version":20,"id":"35107","lastModified":"1301902005000","name":"Ornella Giusto","type":"Person","_key":"20837"} +{"label":"Pier Luigi Misasi","version":24,"id":"35108","lastModified":"1301901844000","name":"Pier Luigi Misasi","type":"Person","_key":"20838"} +{"label":"Andrea Porporati","version":23,"id":"35096","lastModified":"1301901793000","name":"Andrea Porporati","type":"Person","_key":"20839"} +{"label":"Brucio nel vento","description":"No overview found.","id":"3983","runtime":120,"imdbId":"tt0308071","version":74,"lastModified":"1301908606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64b\/4d57f2f27b9aa15cf300364b\/brucio-nel-vento-mid.jpg","studio":"Albachiara","genre":"Drama","title":"Brucio nel vento","releaseDate":1011312000000,"language":"en","type":"Movie","_key":"20840"} +{"label":"Ivan Franek","version":24,"id":"35116","lastModified":"1301901715000","name":"Ivan Franek","type":"Person","_key":"20841"} +{"label":"Ctirad G\u00f6tz","version":19,"id":"35117","lastModified":"1301901811000","name":"Ctirad G\u00f6tz","type":"Person","_key":"20842"} +{"label":"Petr Forman","version":21,"id":"35118","lastModified":"1301901836000","name":"Petr Forman","type":"Person","_key":"20843"} +{"label":"Zuzana Maurery","version":20,"id":"35119","lastModified":"1301901836000","name":"Zuzana Maurery","type":"Person","_key":"20844"} +{"label":"Pavel Andel","version":20,"id":"35120","lastModified":"1301901689000","name":"Pavel Andel","type":"Person","_key":"20845"} +{"label":"Shelter Me","description":"No overview found.","id":"3984","runtime":100,"imdbId":"tt0816626","version":120,"lastModified":"1301416766000","studio":"Rai Cinemafiction","genre":"Drama","title":"Shelter Me","releaseDate":1159401600000,"language":"en","type":"Movie","_key":"20846"} +{"label":"Marco S. Puccioni","version":18,"id":"34492","lastModified":"1301901999000","name":"Marco S. Puccioni","type":"Person","_key":"20847"} +{"label":"Antonia Liskova","version":21,"id":"35127","lastModified":"1301901678000","name":"Antonia Liskova","type":"Person","_key":"20848"} +{"label":"Steffan Boje","version":22,"id":"35128","lastModified":"1301901597000","name":"Steffan Boje","type":"Person","_key":"20849"} +{"label":"Mounir Ouadi","version":20,"id":"35129","lastModified":"1301901842000","name":"Mounir Ouadi","type":"Person","_key":"20850"} +{"label":"Vitaliano Trevisan","version":20,"id":"35130","lastModified":"1301902033000","name":"Vitaliano Trevisan","type":"Person","_key":"20851"} +{"label":"Blondie Hits the Jackpot","description":"No overview found.","id":"3985","runtime":72,"imdbId":"tt0041188","version":85,"lastModified":"1301907286000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie Hits the Jackpot","releaseDate":-639100800000,"language":"en","type":"Movie","_key":"20852"} +{"label":"Lloyd Corrigan","version":34,"id":"34497","lastModified":"1301901527000","name":"Lloyd Corrigan","type":"Person","_key":"20853"} +{"label":"Ann Carter","version":24,"id":"34498","lastModified":"1301901940000","name":"Ann Carter","type":"Person","_key":"20854"} +{"label":"Blondies Big Deal","description":"No overview found.","id":"3986","runtime":72,"imdbId":"tt0041189","version":48,"lastModified":"1300978278000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondies Big Deal","releaseDate":-656812800000,"language":"en","type":"Movie","_key":"20855"} +{"label":"Collette Lyons","version":20,"id":"34503","lastModified":"1301901990000","name":"Collette Lyons","type":"Person","_key":"20856"} +{"label":"Wilton Graff","version":32,"id":"34504","lastModified":"1301901714000","name":"Wilton Graff","type":"Person","_key":"20857"} +{"label":"Stanley Andrews","version":22,"id":"34505","lastModified":"1301901855000","name":"Stanley Andrews","type":"Person","_key":"20858"} +{"label":"Beware of Blondie","description":"No overview found.","id":"3987","runtime":64,"imdbId":"tt0042243","version":87,"lastModified":"1301908643000","studio":"Columbia Pictures","genre":"Comedy","title":"Beware of Blondie","releaseDate":-622339200000,"language":"en","type":"Movie","_key":"20859"} +{"label":"Edward Earle","version":23,"birthday":"-2760051600000","id":"34508","birthplace":"Toronto, Ontario, Canada","lastModified":"1301901458000","name":"Edward Earle","type":"Person","_key":"20860"} +{"label":"Blondie's Hero","description":"No overview found.","id":"3988","runtime":72,"imdbId":"tt0042263","version":81,"lastModified":"1300978278000","studio":"Columbia Pictures","genre":"Comedy","title":"Blondie's Hero","releaseDate":-625363200000,"language":"en","type":"Movie","_key":"20861"} +{"label":"Iris Adrian","version":32,"id":"34509","lastModified":"1301901531000","name":"Iris Adrian","type":"Person","_key":"20862"} +{"label":"Team America: World Police","description":"Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time?It stars\u2026 Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glove","id":"3989","runtime":98,"imdbId":"tt0372588","trailer":"http:\/\/www.youtube.com\/watch?v=9R5dk0JY2xc","homepage":"http:\/\/www.teamamerica.com","version":334,"lastModified":"1301907686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d49\/4bc91996017a3c57fe009d49\/team-america-world-police-mid.jpg","studio":"Paramount Pictures","genre":"Animation","title":"Team America: World Police","releaseDate":1097452800000,"language":"en","tagline":"Putting the \"F\" back in Freedom.","type":"Movie","_key":"20863"} +{"label":"Trey Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25c\/4c948c4e5e73d63a7900025c\/trey-parker-profile.jpg","version":130,"birthday":"-6397200000","id":"34517","birthplace":"Conifer, Colorado, USA","lastModified":"1301901113000","name":"Trey Parker","type":"Person","_key":"20864"} +{"label":"Matt Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/267\/4c948c755e73d63a79000267\/matt-stone-profile.jpg","version":88,"birthday":"44060400000","id":"34518","birthplace":"Houston, Texas, USA","lastModified":"1301901148000","name":"Matt Stone","type":"Person","_key":"20865"} +{"label":"Kristen Miller","version":30,"id":"34519","lastModified":"1301901843000","name":"Kristen Miller","type":"Person","_key":"20866"} +{"label":"Masasa Moyo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a2\/4d4c35d15e73d617c10015a2\/masasa-moyo-profile.jpg","version":35,"id":"34520","lastModified":"1301901087000","name":"Masasa Moyo","type":"Person","_key":"20867"} +{"label":"Maurice LaMarche","version":58,"id":"34521","lastModified":"1301901347000","name":"Maurice LaMarche","type":"Person","_key":"20868"} +{"label":"Beetlejuice","description":"Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.","id":"4011","runtime":92,"imdbId":"tt0094721","trailer":"http:\/\/www.youtube.com\/watch?v=7FmiA7gGnvY","version":430,"lastModified":"1301904345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c9\/4caa11ac5e73d643ed0005c9\/beetlejuice-mid.jpg","studio":"Geffen Pictures","genre":"Comedy","title":"Beetlejuice","releaseDate":575683200000,"language":"en","tagline":"He's guaranteed to put some life, in your afterlife.","type":"Movie","_key":"20869"} +{"label":"Annie McEnroe","version":27,"id":"34535","lastModified":"1301901378000","name":"Annie McEnroe","type":"Person","_key":"20870"} +{"label":"Maurice Page","version":22,"id":"34536","lastModified":"1301901640000","name":"Maurice Page","type":"Person","_key":"20871"} +{"label":"Hugo Stanger","version":24,"id":"34537","lastModified":"1301901555000","name":"Hugo Stanger","type":"Person","_key":"20872"} +{"label":"Rachel Mittelman","version":22,"id":"34538","lastModified":"1301901640000","name":"Rachel Mittelman","type":"Person","_key":"20873"} +{"label":"The Believer","description":"The movie tells the story of a young Jewish man who becomes fiercely anti-Semitic.","id":"4012","runtime":98,"imdbId":"tt0247199","version":148,"lastModified":"1301903628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9b\/4bc919a6017a3c57fe009d9b\/the-believer-mid.jpg","studio":"Seven Arts Pictures","genre":"Drama","title":"The Believer","releaseDate":979862400000,"language":"en","type":"Movie","_key":"20874"} +{"label":"Henry Bean","version":34,"id":"30458","lastModified":"1301901230000","name":"Henry Bean","type":"Person","_key":"20875"} +{"label":"Summer Phoenix","version":24,"id":"34543","lastModified":"1301901404000","name":"Summer Phoenix","type":"Person","_key":"20876"} +{"label":"Joshua Harto","version":29,"id":"34544","lastModified":"1301901215000","name":"Joshua Harto","type":"Person","_key":"20877"} +{"label":"Mille milliards de dollar","description":"Paul Kerjean, journaliste, re\u00e7oit un jour un coup de t\u00e9l\u00e9phone anonyme. Son interlocuteur accuse Jacques Beno\u00eet-Lambert, un industriel, d'avoir re\u00e7u un pot-de-vin, pour c\u00e9der \u00e0 l'\u00e9tranger une usine fran\u00e7aise. L'enqu\u00eate de Kerjean confirme cette accusation.","id":"4023","runtime":132,"imdbId":"tt0082749","version":75,"lastModified":"1301903464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da4\/4bc919a7017a3c57fe009da4\/mille-milliards-de-dollar-mid.jpg","studio":"Films A2","genre":"Thriller","title":"Mille milliards de dollar","releaseDate":382147200000,"language":"en","type":"Movie","_key":"20878"} +{"label":"Henri Verneuil","version":42,"id":"34580","lastModified":"1301901317000","name":"Henri Verneuil","type":"Person","_key":"20879"} +{"label":"Patrick Dewaere","version":31,"id":"34581","lastModified":"1301901363000","name":"Patrick Dewaere","type":"Person","_key":"20880"} +{"label":"Jean-Laurent Cochet","version":21,"id":"34582","lastModified":"1301901583000","name":"Jean-Laurent Cochet","type":"Person","_key":"20881"} +{"label":"Fernand Ledoux","version":32,"id":"34583","lastModified":"1301901498000","name":"Fernand Ledoux","type":"Person","_key":"20882"} +{"label":"Jacques Fran\u00e7ois","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16b\/4ca0a3c67b9aa1646300016b\/jacques-francois-profile.jpg","version":36,"birthday":"-1566176400000","id":"34584","birthplace":"Paris, France","lastModified":"1301901968000","name":"Jacques Fran\u00e7ois","type":"Person","_key":"20883"} +{"label":"Robert Party","version":19,"id":"34585","lastModified":"1301901742000","name":"Robert Party","type":"Person","_key":"20884"} +{"label":"Jean Mercure","version":19,"id":"34586","lastModified":"1301901742000","name":"Jean Mercure","type":"Person","_key":"20885"} +{"label":"Claude Marcault","version":19,"id":"34587","lastModified":"1301901742000","name":"Claude Marcault","type":"Person","_key":"20886"} +{"label":"Jacques Maury","version":19,"id":"34588","lastModified":"1301901742000","name":"Jacques Maury","type":"Person","_key":"20887"} +{"label":"Jacqueline Doyen","version":19,"id":"34589","lastModified":"1301901742000","name":"Jacqueline Doyen","type":"Person","_key":"20888"} +{"label":"Last Year at Marienbad","description":"In a sprawling baroque hotel, a man tries to persuade a married woman to leave her husband and run away with him. He reminds her of her promise when they met a year ago, at Marienbad, but the woman seems not to remember that meeting...","id":"4024","runtime":94,"imdbId":"tt0054632","version":196,"lastModified":"1301904019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57d\/4bf3ea40017a3c320f00057d\/l-annee-derniere-a-marienbad-mid.jpg","studio":"Argos Films S.A.","genre":"Drama","title":"Last Year at Marienbad","releaseDate":-271555200000,"language":"en","type":"Movie","_key":"20889"} +{"label":"Giorgio Albertazzi","version":24,"id":"34593","lastModified":"1301901584000","name":"Giorgio Albertazzi","type":"Person","_key":"20890"} +{"label":"Sacha Pito\u00ebff","version":33,"id":"34594","lastModified":"1301901658000","name":"Sacha Pito\u00ebff","type":"Person","_key":"20891"} +{"label":"The Prize","description":"No overview found.","id":"4025","runtime":134,"imdbId":"tt0057426","version":75,"lastModified":"1301416748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a1\/4cd3fcbe7b9aa113a90000a1\/the-prize-mid.jpg","studio":"Roxbury Productions","genre":"Drama","title":"The Prize","releaseDate":-189993600000,"language":"en","type":"Movie","_key":"20892"} +{"label":"Micheline Presle","version":39,"id":"34595","lastModified":"1301901691000","name":"Micheline Presle","type":"Person","_key":"20893"} +{"label":"Sergio Fantoni","version":27,"id":"34596","lastModified":"1301901452000","name":"Sergio Fantoni","type":"Person","_key":"20894"} +{"label":"Jacqueline Beer","version":20,"id":"34598","lastModified":"1301901903000","name":"Jacqueline Beer","type":"Person","_key":"20895"} +{"label":"Don Dubbins","version":27,"id":"40380","lastModified":"1301901426000","name":"Don Dubbins","type":"Person","_key":"20896"} +{"label":"Virginia Christine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e54\/4bffd9d0017a3c7037000e54\/virginia-christine-profile.jpg","version":35,"id":"101481","lastModified":"1301901507000","name":"Virginia Christine","type":"Person","_key":"20897"} +{"label":"Les Valseuses","description":"No overview found.","id":"4031","runtime":150,"imdbId":"tt0072353","version":76,"lastModified":"1301902166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da9\/4bc919a7017a3c57fe009da9\/les-valseuses-mid.jpg","studio":"S.N. Prodis","genre":"Comedy","title":"Les Valseuses","releaseDate":132969600000,"language":"en","type":"Movie","_key":"20898"} +{"label":"Jacques Chailleux","version":21,"id":"34604","lastModified":"1301901477000","name":"Jacques Chailleux","type":"Person","_key":"20899"} +{"label":"Michel Peyrelon","version":23,"id":"34605","lastModified":"1301901903000","name":"Michel Peyrelon","type":"Person","_key":"20900"} +{"label":"Eva Damien","version":21,"id":"34606","lastModified":"1301901678000","name":"Eva Damien","type":"Person","_key":"20901"} +{"label":"Christian Alers","version":20,"id":"34607","lastModified":"1301901621000","name":"Christian Alers","type":"Person","_key":"20902"} +{"label":"Christiane Muller","version":20,"id":"34608","lastModified":"1301901621000","name":"Christiane Muller","type":"Person","_key":"20903"} +{"label":"Michel Pilorg\u00e9","version":27,"id":"34260","lastModified":"1301901691000","name":"Michel Pilorg\u00e9","type":"Person","_key":"20904"} +{"label":"My Girl","description":"Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...","id":"4032","runtime":102,"imdbId":"tt0102492","version":136,"lastModified":"1301902868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1e\/4d1bae727b9aa179eb000c1e\/my-girl-mid.jpg","studio":"Imagine Entertainment","genre":"Comedy","title":"My Girl","releaseDate":691200000000,"language":"en","type":"Movie","_key":"20905"} +{"label":"Howard Zieff","version":28,"id":"34611","lastModified":"1301901840000","name":"Howard Zieff","type":"Person","_key":"20906"} +{"label":"Anna Chlumsky","version":35,"id":"34612","lastModified":"1301901268000","name":"Anna Chlumsky","type":"Person","_key":"20907"} +{"label":"Lara Steinick","version":21,"id":"35168","lastModified":"1301901992000","name":"Lara Steinick","type":"Person","_key":"20908"} +{"label":"Vivement Truffaut","description":"A tribute to the late, great French director Francois Truffaut, this documentary was undoubtedly named after his last movie, Vivement Dimanche!, released in 1983. Included in this overview of Truffaut's contribution to filmmaking are clips from 14 of his movies arranged according to the themes he favored. These include childhood, literature, the cinema itself, romance, marriage, and death.","id":"4033","runtime":67,"imdbId":"tt0176295","version":47,"lastModified":"1301907447000","genre":"Documentary","title":"Vivement Truffaut","releaseDate":489974400000,"language":"en","type":"Movie","_key":"20909"} +{"label":"L'homme de Rio","description":"No overview found.","id":"4034","runtime":110,"imdbId":"tt0058203","version":73,"lastModified":"1301905008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcc\/4bc919ae017a3c57fe009dcc\/l-homme-de-rio-mid.jpg","studio":"Les Productions Artistes Associ\u00e9s","genre":"Comedy","title":"L'homme de Rio","releaseDate":-186364800000,"language":"en","type":"Movie","_key":"20910"} +{"label":"Philippe de Broca","version":36,"id":"34613","lastModified":"1301901447000","name":"Philippe de Broca","type":"Person","_key":"20911"} +{"label":"Simone Renant","version":20,"id":"34615","lastModified":"1301901712000","name":"Simone Renant","type":"Person","_key":"20912"} +{"label":"Roger Dumas","version":34,"id":"34616","lastModified":"1301901662000","name":"Roger Dumas","type":"Person","_key":"20913"} +{"label":"Ubiracy De Oliveira","version":20,"id":"34617","lastModified":"1301902005000","name":"Ubiracy De Oliveira","type":"Person","_key":"20914"} +{"label":"Milton Ribeiro","version":20,"id":"34618","lastModified":"1301902005000","name":"Milton Ribeiro","type":"Person","_key":"20915"} +{"label":"Lucien Raimbourg","version":25,"id":"34619","lastModified":"1301901977000","name":"Lucien Raimbourg","type":"Person","_key":"20916"} +{"label":"Law of Desire","description":"A film makers sexual disorientation jepordizes his latest project.","id":"4043","runtime":102,"imdbId":"tt0093412","version":333,"lastModified":"1301902890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd5\/4bc919af017a3c57fe009dd5\/la-ley-del-deseo-mid.jpg","studio":"El Deseo","genre":"Comedy","title":"Law of Desire","releaseDate":539568000000,"language":"en","type":"Movie","_key":"20917"} +{"label":"Eusebio Poncela","version":32,"id":"34629","lastModified":"1301901568000","name":"Eusebio Poncela","type":"Person","_key":"20918"} +{"label":"Miguel Molina","version":26,"id":"34792","lastModified":"1301901621000","name":"Miguel Molina","type":"Person","_key":"20919"} +{"label":"Manuela Velasco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/390\/4c0157fa017a3c702d001390\/manuela-velasco-profile.jpg","version":34,"id":"34793","lastModified":"1301901318000","name":"Manuela Velasco","type":"Person","_key":"20920"} +{"label":"Bibiana Fern\u00e1ndez","version":28,"id":"34794","lastModified":"1301901779000","name":"Bibiana Fern\u00e1ndez","type":"Person","_key":"20921"} +{"label":"Nacho Mart\u00ednez","version":25,"id":"34795","lastModified":"1301901959000","name":"Nacho Mart\u00ednez","type":"Person","_key":"20922"} +{"label":"Germ\u00e1n Cobos","version":21,"id":"104064","lastModified":"1301902665000","name":"Germ\u00e1n Cobos","type":"Person","_key":"20923"} +{"label":"Le Club: Claude Jade","description":"No overview found.","id":"4044","runtime":90,"version":20,"lastModified":"1301907426000","genre":"Documentary","title":"Le Club: Claude Jade","releaseDate":986947200000,"language":"en","type":"Movie","_key":"20924"} +{"label":"Pierre Tchernia","version":43,"id":"34630","lastModified":"1301901458000","name":"Pierre Tchernia","type":"Person","_key":"20925"} +{"label":"Jean-Oll\u00e9 Laprune","version":16,"id":"34631","lastModified":"1301902015000","name":"Jean-Oll\u00e9 Laprune","type":"Person","_key":"20926"} +{"label":"Denis Parent","version":16,"id":"34632","lastModified":"1301901659000","name":"Denis Parent","type":"Person","_key":"20927"} +{"label":"Christine Haas","version":16,"id":"34633","lastModified":"1301901968000","name":"Christine Haas","type":"Person","_key":"20928"} +{"label":"Olivier Boutinot","version":16,"id":"34634","lastModified":"1301901968000","name":"Olivier Boutinot","type":"Person","_key":"20929"} +{"label":"AlloCin\u00e9 talkshow","description":"No overview found.","id":"4045","runtime":0,"version":23,"lastModified":"1301908606000","genre":"Documentary","title":"AlloCin\u00e9 talkshow","releaseDate":1000512000000,"language":"en","type":"Movie","_key":"20930"} +{"label":"Agn\u00e8s Soral","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2a\/4d7b1a3d5e73d65ec6000c2a\/agn-s-soral-profile.jpg","version":37,"birthday":"-301885200000","id":"34637","birthplace":"Aix-les-Bains","lastModified":"1301901466000","name":"Agn\u00e8s Soral","type":"Person","_key":"20931"} +{"label":"Franck Keller","version":17,"id":"34636","lastModified":"1301901678000","name":"Franck Keller","type":"Person","_key":"20932"} +{"label":"Die gl\u00e4serne Zelle","description":"No overview found.","id":"4049","runtime":93,"imdbId":"tt0077615","version":41,"lastModified":"1301904477000","studio":"Roxy Film","genre":"Crime","title":"Die gl\u00e4serne Zelle","releaseDate":260668800000,"language":"en","type":"Movie","_key":"20933"} +{"label":"Hans W. Geissend\u00f6rfer","version":29,"id":"34639","lastModified":"1301901514000","name":"Hans W. Geissend\u00f6rfer","type":"Person","_key":"20934"} +{"label":"G\u00fcnter Strack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/60e\/4d0b8c365e73d6469c00060e\/g-nter-strack-profile.jpg","version":42,"id":"26349","lastModified":"1301901600000","name":"G\u00fcnter Strack","type":"Person","_key":"20935"} +{"label":"Walter Kohut","version":21,"id":"26589","lastModified":"1301902012000","name":"Walter Kohut","type":"Person","_key":"20936"} +{"label":"Claudius Kracht","version":20,"id":"34641","lastModified":"1301901819000","name":"Claudius Kracht","type":"Person","_key":"20937"} +{"label":"Schneeland","description":"No overview found.","id":"4050","runtime":130,"imdbId":"tt0378715","homepage":"http:\/\/www.schneeland.de\/","version":73,"lastModified":"1301906754000","studio":"WDR","genre":"Drama","title":"Schneeland","releaseDate":1106179200000,"language":"en","type":"Movie","_key":"20938"} +{"label":"Ina Weisse","version":23,"id":"34644","lastModified":"1301901659000","name":"Ina Weisse","type":"Person","_key":"20939"} +{"label":"Der Zauberberg","description":"No overview found.","id":"4051","runtime":329,"imdbId":"tt0084946","version":83,"lastModified":"1301302611000","studio":"Franz Seitz Filmproduktion","genre":"Drama","title":"Der Zauberberg","releaseDate":383443200000,"language":"en","type":"Movie","_key":"20940"} +{"label":"Christoph Eichhorn","version":21,"id":"34645","lastModified":"1301902003000","name":"Christoph Eichhorn","type":"Person","_key":"20941"} +{"label":"Alexander Radszun","version":22,"id":"34646","lastModified":"1301901803000","name":"Alexander Radszun","type":"Person","_key":"20942"} +{"label":"Margot Hielscher","version":21,"id":"34647","lastModified":"1301902024000","name":"Margot Hielscher","type":"Person","_key":"20943"} +{"label":"Gudrun Gabriel","version":21,"id":"34648","lastModified":"1301901979000","name":"Gudrun Gabriel","type":"Person","_key":"20944"} +{"label":"Les gaspards","description":"No overview found.","id":"4073","runtime":90,"imdbId":"tt0070090","version":52,"lastModified":"1301906636000","studio":"ORTF","genre":"Comedy","title":"Les gaspards","releaseDate":129340800000,"language":"en","type":"Movie","_key":"20945"} +{"label":"Prudence Harrington","version":19,"id":"34675","lastModified":"1301901621000","name":"Prudence Harrington","type":"Person","_key":"20946"} +{"label":"Roger Carel","version":59,"id":"34676","lastModified":"1301901318000","name":"Roger Carel","type":"Person","_key":"20947"} +{"label":"Annie Cordy","version":29,"id":"34677","lastModified":"1301901583000","name":"Annie Cordy","type":"Person","_key":"20948"} +{"label":"Fran\u00e7oise Cingal","version":19,"id":"34678","lastModified":"1301901621000","name":"Fran\u00e7oise Cingal","type":"Person","_key":"20949"} +{"label":"Daniel Ivernel","version":22,"id":"34679","lastModified":"1301901477000","name":"Daniel Ivernel","type":"Person","_key":"20950"} +{"label":"Benny & Joon","description":"A mentally ill young woman finds her love in an eccentric man who models himself after Buster Keaton.","id":"4104","runtime":98,"imdbId":"tt0106387","trailer":"http:\/\/www.youtube.com\/watch?v=AL-5_ceNc-s","version":183,"lastModified":"1301904762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/478\/4d9655b25e73d623b0003478\/benny-joon-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Benny & Joon","releaseDate":734918400000,"language":"en","tagline":"A romance on the brink of reality.","type":"Movie","_key":"20951"} +{"label":"Jeremiah S. Chechik","version":36,"id":"34682","lastModified":"1301901215000","name":"Jeremiah S. Chechik","type":"Person","_key":"20952"} +{"label":"Black Rain","description":"Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. In Japan, however, he manages to escape. As they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game the Japanese way.","id":"4105","runtime":125,"imdbId":"tt0096933","trailer":"http:\/\/www.youtube.com\/watch?v=3390","version":370,"lastModified":"1301907295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfe\/4bc919b2017a3c57fe009dfe\/black-rain-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Black Rain","releaseDate":622425600000,"language":"en","tagline":"Their country. Their laws. Their game. His rules.","type":"Movie","_key":"20953"} +{"label":"Y\u00fbsaku Matsuda","version":22,"id":"34689","lastModified":"1301901673000","name":"Y\u00fbsaku Matsuda","type":"Person","_key":"20954"} +{"label":"Shigeru K\u00f4yama","version":28,"id":"34690","lastModified":"1302052174000","name":"Shigeru K\u00f4yama","type":"Person","_key":"20955"} +{"label":"John Spencer","version":43,"id":"34691","lastModified":"1301901202000","name":"John Spencer","type":"Person","_key":"20956"} +{"label":"Checkpoint","description":"A group Russian soldiers is send to an outpost to guard the area. They pass the day patroulling the area, while being shot at from the forest. They never know if the civillions are hostile or friendly to them.","id":"4106","runtime":85,"imdbId":"tt0196381","version":84,"lastModified":"1301903587000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4d545f3f7b9aa15cf1000002\/blokpost-mid.jpg","studio":"Kinokompaniya CTB","genre":"Drama","title":"Checkpoint","releaseDate":883612800000,"language":"en","type":"Movie","_key":"20957"} +{"label":"Roman Romantsov","version":20,"id":"34697","lastModified":"1301901540000","name":"Roman Romantsov","type":"Person","_key":"20958"} +{"label":"Kirill Ulyanov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4d54602d7b9aa15d0100000b\/kirill-ulyanov-profile.jpg","version":21,"id":"34698","lastModified":"1301901742000","name":"Kirill Ulyanov","type":"Person","_key":"20959"} +{"label":"Ivan Kuzmin","version":20,"id":"34699","lastModified":"1301901742000","name":"Ivan Kuzmin","type":"Person","_key":"20960"} +{"label":"Denis Kirillov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4d5460447b9aa15cf600000a\/denis-kirillov-profile.jpg","version":21,"id":"34700","lastModified":"1301901540000","name":"Denis Kirillov","type":"Person","_key":"20961"} +{"label":"Yegor Tomoshevsky","version":20,"id":"34701","lastModified":"1301901742000","name":"Yegor Tomoshevsky","type":"Person","_key":"20962"} +{"label":"Yuri Grigoriev","version":20,"id":"34702","lastModified":"1301901903000","name":"Yuri Grigoriev","type":"Person","_key":"20963"} +{"label":"Denis Moiseyev","version":20,"id":"34703","lastModified":"1301901621000","name":"Denis Moiseyev","type":"Person","_key":"20964"} +{"label":"Alexander Ivanov","version":20,"id":"34704","lastModified":"1301901621000","name":"Alexander Ivanov","type":"Person","_key":"20965"} +{"label":"Zoya Buryak","version":20,"id":"34707","lastModified":"1301901621000","name":"Zoya Buryak","type":"Person","_key":"20966"} +{"label":"Aleksey Buldakov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e90\/4d545cd37b9aa1193e007e90\/aleksey-buldakov-profile.jpg","version":33,"id":"86719","lastModified":"1301902164000","name":"Aleksey Buldakov","type":"Person","_key":"20967"} +{"label":"Sergei Guslinsky","version":28,"id":"86723","lastModified":"1301902717000","name":"Sergei Guslinsky","type":"Person","_key":"20968"} +{"label":"Andrey Krasko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4d5460977b9aa15cf6000012\/andrey-krasko-profile.jpg","version":40,"id":"86725","lastModified":"1301901595000","name":"Andrey Krasko","type":"Person","_key":"20969"} +{"label":"Bloody Sunday","description":"The movie tells the dramatised story of the Irish civil rights protest march on January 30 1972. The march ended in a massacre by British troops.","id":"4107","runtime":107,"imdbId":"tt0280491","version":130,"lastModified":"1301905552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e07\/4bc919b5017a3c57fe009e07\/bloody-sunday-mid.jpg","studio":"Portman Entertainment Group","genre":"Action","title":"Bloody Sunday","releaseDate":1011139200000,"language":"en","type":"Movie","_key":"20970"} +{"label":"James Nesbitt","version":41,"id":"34715","lastModified":"1301901194000","name":"James Nesbitt","type":"Person","_key":"20971"} +{"label":"Allan Gildea","version":20,"id":"34716","lastModified":"1301901416000","name":"Allan Gildea","type":"Person","_key":"20972"} +{"label":"Gerard Crossan","version":21,"id":"34717","lastModified":"1301901583000","name":"Gerard Crossan","type":"Person","_key":"20973"} +{"label":"Mary Moulds","version":20,"id":"34718","lastModified":"1301901688000","name":"Mary Moulds","type":"Person","_key":"20974"} +{"label":"Carmel McCallion","version":20,"id":"34719","lastModified":"1301901513000","name":"Carmel McCallion","type":"Person","_key":"20975"} +{"label":"Christopher Villiers","version":24,"id":"34720","lastModified":"1301901334000","name":"Christopher Villiers","type":"Person","_key":"20976"} +{"label":"The Transporter","description":"Former Special Forces officer Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.","id":"4108","runtime":94,"imdbId":"tt0293662","trailer":"http:\/\/www.youtube.com\/watch?v=0poXFSvX0_4","version":457,"lastModified":"1301901160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e20\/4bc919b7017a3c57fe009e20\/the-transporter-mid.jpg","studio":"TF1 Films Productions","genre":"Action","title":"The Transporter","releaseDate":1033516800000,"language":"en","tagline":"Rules are made to be broken.","type":"Movie","_key":"20977"} +{"label":"Corey Yuen Kwai","version":74,"id":"35452","lastModified":"1301901218000","name":"Corey Yuen Kwai","type":"Person","_key":"20978"} +{"label":"Blondie and Dagwood","description":"No overview found.","id":"4110","runtime":24,"imdbId":"tt0243791","version":53,"lastModified":"1301908639000","studio":"King Features Syndicate","genre":"Animation","title":"Blondie and Dagwood","releaseDate":548035200000,"language":"en","type":"Movie","_key":"20979"} +{"label":"Mike Joens","version":19,"id":"34730","lastModified":"1301902033000","name":"Mike Joens","type":"Person","_key":"20980"} +{"label":"Loni Anderson","version":21,"id":"34735","lastModified":"1301901803000","name":"Loni Anderson","type":"Person","_key":"20981"} +{"label":"Pat Fraley","version":21,"id":"34737","lastModified":"1301901459000","name":"Pat Fraley","type":"Person","_key":"20982"} +{"label":"Ellen Gerstell","version":20,"id":"34738","lastModified":"1301901504000","name":"Ellen Gerstell","type":"Person","_key":"20983"} +{"label":"Laurel Page","version":20,"id":"34739","lastModified":"1301901513000","name":"Laurel Page","type":"Person","_key":"20984"} +{"label":"Ike Eisenmann","version":24,"id":"87066","lastModified":"1301902138000","name":"Ike Eisenmann","type":"Person","_key":"20985"} +{"label":"Blondie of the Follies","description":"Blondie, a New York tenement dweller, and Lurlene are best friends. When Lurlene makes the cast of a big Broadway show, she arranges for Blondie to join the cast as well. But the friendship goes awry when Lurlene's sweetheart, wealthy Larry Belmont, catches Blondie's act and falls for the fair-haired newcomer.","id":"4111","runtime":91,"imdbId":"tt0022700","version":52,"lastModified":"1301421212000","studio":"Cosmopolitan Productions","genre":"Comedy","title":"Blondie of the Follies","releaseDate":-1178150400000,"language":"en","type":"Movie","_key":"20986"} +{"label":"Edmund Goulding","version":30,"id":"34740","lastModified":"1301901501000","name":"Edmund Goulding","type":"Person","_key":"20987"} +{"label":"Marion Davies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/704\/4ca9f9087b9aa17acb000704\/marion-davies-profile.jpg","version":24,"id":"34742","lastModified":"1301901646000","name":"Marion Davies","type":"Person","_key":"20988"} +{"label":"Billie Dove","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25f\/4c605e3f7b9aa172d900025f\/billie-dove-profile.jpg","version":21,"id":"34744","lastModified":"1301901859000","name":"Billie Dove","type":"Person","_key":"20989"} +{"label":"Jimmy Durante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ab\/4c49bce07b9aa116010000ab\/jimmy-durante-profile.jpg","version":40,"id":"34745","lastModified":"1301901525000","name":"Jimmy Durante","type":"Person","_key":"20990"} +{"label":"Sidney Toler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/992\/4be456a9017a3c35b5000992\/sidney-toler-profile.jpg","version":55,"id":"34747","lastModified":"1301901412000","name":"Sidney Toler","type":"Person","_key":"20991"} +{"label":"Douglass Dumbrille","version":47,"id":"34748","lastModified":"1301901409000","name":"Douglass Dumbrille","type":"Person","_key":"20992"} +{"label":"Sarah Padden","version":27,"id":"34749","lastModified":"1301901632000","name":"Sarah Padden","type":"Person","_key":"20993"} +{"label":"Louise Carter","version":22,"id":"34750","lastModified":"1301901978000","name":"Louise Carter","type":"Person","_key":"20994"} +{"label":"Blondie Johnson","description":"A female crook fights her way from poverty to the top of the underworld.","id":"4112","runtime":67,"imdbId":"tt0023817","version":149,"lastModified":"1301906636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e33\/4bc919b9017a3c57fe009e33\/blondie-johnson-mid.jpg","studio":"First National Bank of Chicago (London Branch)","genre":"Comedy","title":"Blondie Johnson","releaseDate":-1162512000000,"language":"en","type":"Movie","_key":"20995"} +{"label":"Ray Enright","version":21,"birthday":"-2327965200000","id":"34751","birthplace":"Anderson, Indiana, USA","lastModified":"1301901346000","name":"Ray Enright","type":"Person","_key":"20996"} +{"label":"Lucien Hubbard","version":20,"id":"34752","lastModified":"1301901443000","name":"Lucien Hubbard","type":"Person","_key":"20997"} +{"label":"Chester Morris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/acb\/4be5da4f017a3c35bf000acb\/chester-morris-profile.jpg","version":28,"id":"34754","lastModified":"1301901303000","name":"Chester Morris","type":"Person","_key":"20998"} +{"label":"Earle Foxe","version":20,"id":"34755","lastModified":"1301901382000","name":"Earle Foxe","type":"Person","_key":"20999"} +{"label":"Claire Dodd","version":23,"id":"34756","lastModified":"1301901490000","name":"Claire Dodd","type":"Person","_key":"21000"} +{"label":"Mae Busch","version":37,"id":"34757","lastModified":"1301901471000","name":"Mae Busch","type":"Person","_key":"21001"} +{"label":"Joseph Cawthorn","version":23,"id":"34758","lastModified":"1301901466000","name":"Joseph Cawthorn","type":"Person","_key":"21002"} +{"label":"Sterling Holloway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/249\/4d3224505e73d6335b001249\/sterling-holloway-profile.jpg","version":68,"id":"34759","lastModified":"1301901119000","name":"Sterling Holloway","type":"Person","_key":"21003"} +{"label":"Toshia Mori","version":22,"id":"34760","lastModified":"1301901621000","name":"Toshia Mori","type":"Person","_key":"21004"} +{"label":"Arthur Vinton","version":19,"id":"34761","lastModified":"1301901621000","name":"Arthur Vinton","type":"Person","_key":"21005"} +{"label":"Donald Kirke","version":20,"id":"34762","lastModified":"1301901621000","name":"Donald Kirke","type":"Person","_key":"21006"} +{"label":"Biffen och Bananen","description":"No overview found.","id":"4113","runtime":95,"imdbId":"tt0043337","version":48,"lastModified":"1300978282000","studio":"Fribergs Filmbyr\u00e5 AB","genre":"Comedy","title":"Biffen och Bananen","releaseDate":-595987200000,"language":"en","type":"Movie","_key":"21007"} +{"label":"Rolf Husberg","version":22,"id":"34763","lastModified":"1301901980000","name":"Rolf Husberg","type":"Person","_key":"21008"} +{"label":"\u00c5ke Gr\u00f6nberg","version":24,"id":"34769","lastModified":"1301901842000","name":"\u00c5ke Gr\u00f6nberg","type":"Person","_key":"21009"} +{"label":"\u00c5ke S\u00f6derblom","version":19,"id":"34770","lastModified":"1301901831000","name":"\u00c5ke S\u00f6derblom","type":"Person","_key":"21010"} +{"label":"Lillebil Kjell\u00e9n","version":18,"id":"34771","lastModified":"1301901991000","name":"Lillebil Kjell\u00e9n","type":"Person","_key":"21011"} +{"label":"Lennart Lindberg","version":21,"id":"34772","lastModified":"1301902030000","name":"Lennart Lindberg","type":"Person","_key":"21012"} +{"label":"H\u00e5kan Westergren","version":19,"id":"34773","lastModified":"1301901675000","name":"H\u00e5kan Westergren","type":"Person","_key":"21013"} +{"label":"G\u00f6sta Pr\u00fczelius","version":24,"id":"34774","lastModified":"1301901858000","name":"G\u00f6sta Pr\u00fczelius","type":"Person","_key":"21014"} +{"label":"Maj Larsson","version":20,"id":"34775","lastModified":"1301901979000","name":"Maj Larsson","type":"Person","_key":"21015"} +{"label":"Siv Larsson","version":20,"id":"34776","lastModified":"1301901979000","name":"Siv Larsson","type":"Person","_key":"21016"} +{"label":"Blondie, Biffen och Bananen","description":"No overview found.","id":"4114","runtime":95,"imdbId":"tt0044430","version":51,"lastModified":"1301908640000","studio":"Fribergs Filmbyr\u00e5 AB","genre":"Comedy","title":"Blondie, Biffen och Bananen","releaseDate":-548035200000,"language":"en","type":"Movie","_key":"21017"} +{"label":"Lars-Eric Kjellgren","version":20,"id":"34777","lastModified":"1301901513000","name":"Lars-Eric Kjellgren","type":"Person","_key":"21018"} +{"label":"Harry Ahlin","version":20,"id":"34784","lastModified":"1301902005000","name":"Harry Ahlin","type":"Person","_key":"21019"} +{"label":"Wiktor Andersson","version":20,"id":"34785","lastModified":"1301902030000","name":"Wiktor Andersson","type":"Person","_key":"21020"} +{"label":"Erik 'Bullen' Berglund","version":18,"id":"34786","lastModified":"1301902022000","name":"Erik 'Bullen' Berglund","type":"Person","_key":"21021"} +{"label":"Git Gay","version":20,"id":"34787","lastModified":"1301902030000","name":"Git Gay","type":"Person","_key":"21022"} +{"label":"Emy Hagman","version":21,"id":"34788","lastModified":"1301901834000","name":"Emy Hagman","type":"Person","_key":"21023"} +{"label":"Doris Svedlund","version":18,"id":"34789","lastModified":"1301902021000","name":"Doris Svedlund","type":"Person","_key":"21024"} +{"label":"Le ch\u00e2teau perdu","description":"No overview found.","id":"4132","runtime":90,"imdbId":"tt0175532","version":41,"lastModified":"1301906754000","genre":"History","title":"Le ch\u00e2teau perdu","releaseDate":106272000000,"language":"en","type":"Movie","_key":"21025"} +{"label":"Fran\u00e7ois Chatel","version":20,"id":"34820","lastModified":"1301902027000","name":"Fran\u00e7ois Chatel","type":"Person","_key":"21026"} +{"label":"Lise Delamare","version":21,"id":"34824","lastModified":"1301901677000","name":"Lise Delamare","type":"Person","_key":"21027"} +{"label":"Pierre Nunzi","version":20,"id":"34823","lastModified":"1301901678000","name":"Pierre Nunzi","type":"Person","_key":"21028"} +{"label":"Claude Titre","version":20,"id":"34825","lastModified":"1301901675000","name":"Claude Titre","type":"Person","_key":"21029"} +{"label":"G\u00e9rard Chevalier","version":20,"id":"34826","lastModified":"1301901681000","name":"G\u00e9rard Chevalier","type":"Person","_key":"21030"} +{"label":"Jean-Claude Ballard","version":21,"id":"34827","lastModified":"1301901659000","name":"Jean-Claude Ballard","type":"Person","_key":"21031"} +{"label":"Bernard Cara","version":22,"id":"34828","lastModified":"1301901659000","name":"Bernard Cara","type":"Person","_key":"21032"} +{"label":"Jacqueline Mille","version":21,"id":"34829","lastModified":"1301901792000","name":"Jacqueline Mille","type":"Person","_key":"21033"} +{"label":"Blow","description":"Johnny Depp turns in a quietly powerful performance at the heart of this drama as real-life coke smuggler George Jung, who rises from poverty to become one of the biggest drug dealers in America before his eventual downfall. Adapted from the 1993 book \"Blow: How a Small-Town Boy Made $100 Million with the Medellin Cocaine Cartel and Lost It All.\"","id":"4133","runtime":124,"imdbId":"tt0221027","trailer":"http:\/\/www.youtube.com\/watch?v=2w5pVPGmjUY","version":351,"lastModified":"1301901531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15f\/4c56f9405e73d63a7000015f\/blow-mid.jpg","studio":"Apostle Pictures","genre":"Crime","title":"Blow","releaseDate":985824000000,"language":"en","tagline":"Based on a True Story.","type":"Movie","_key":"21034"} +{"label":"Kevin Gage","version":52,"id":"34839","lastModified":"1301901355000","name":"Kevin Gage","type":"Person","_key":"21035"} +{"label":"Miguel P\u00e9rez","version":23,"id":"34840","lastModified":"1301901512000","name":"Miguel P\u00e9rez","type":"Person","_key":"21036"} +{"label":"Dan Ferro","version":22,"id":"34841","lastModified":"1301901540000","name":"Dan Ferro","type":"Person","_key":"21037"} +{"label":"Tony Amendola","version":25,"id":"34842","lastModified":"1301901636000","name":"Tony Amendola","type":"Person","_key":"21038"} +{"label":"Monet Mazur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dcc\/4d9489a95e73d62274001dcc\/monet-mazur-profile.jpg","version":46,"id":"34844","lastModified":"1301901346000","name":"Monet Mazur","type":"Person","_key":"21039"} +{"label":"Lola Glaudini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/144\/4d2377867b9aa17373004144\/lola-glaudini-profile.jpg","version":33,"id":"34845","lastModified":"1301901299000","name":"Lola Glaudini","type":"Person","_key":"21040"} +{"label":"Jennifer Gimenez","version":22,"id":"34846","lastModified":"1301901477000","name":"Jennifer Gimenez","type":"Person","_key":"21041"} +{"label":"Emma Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4bee7b64017a3c459300018b\/emma-roberts-profile.jpg","biography":"Emma Rose Roberts (born February 10, 1991) is an American actress, singer-songwriter, and designer. She is the daughter of actor Eric Roberts and the niece of actresses Julia Roberts and Lisa Roberts Gillan. Roberts became known for her role as Addie Singer in the Nickelodeon television series Unfabulous. She released her debut album, which also served as the show's soundtrack Unfabulous and More. Roberts then pursued a solo singing career by recording two songs for the soundtracks of Ice Prince","version":69,"birthday":"666140400000","id":"34847","birthplace":"Rhinebeck, New York, U.S","lastModified":"1301904072000","name":"Emma Roberts","type":"Person","_key":"21042"} +{"label":"Bobcat Goldthwait","version":43,"id":"95024","lastModified":"1301976989000","name":"Bobcat Goldthwait","type":"Person","_key":"21043"} +{"label":"Ted Demme","version":36,"id":"34849","lastModified":"1301901350000","name":"Ted Demme","type":"Person","_key":"21044"} +{"label":"Het zwijgen","description":"No overview found.","id":"4134","runtime":90,"imdbId":"tt0481976","homepage":"http:\/\/www.hetzwijgen.nl\/","version":59,"lastModified":"1301906754000","studio":"Waterland Film & TV","genre":"Thriller","title":"Het zwijgen","releaseDate":1143072000000,"language":"en","type":"Movie","_key":"21045"} +{"label":"Vincent Croiset","version":20,"id":"34868","lastModified":"1301901968000","name":"Vincent Croiset","type":"Person","_key":"21046"} +{"label":"Rosa Reuten","version":20,"id":"34869","lastModified":"1301901968000","name":"Rosa Reuten","type":"Person","_key":"21047"} +{"label":"Susan Visser","version":22,"id":"34870","lastModified":"1301901968000","name":"Susan Visser","type":"Person","_key":"21048"} +{"label":"Nelly Frijda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b5\/4cbf7fc07b9aa138da0018b5\/nelly-frijda-profile.jpg","version":30,"birthday":"-1062291600000","id":"34871","birthplace":"Amsterdam","lastModified":"1301901404000","name":"Nelly Frijda","type":"Person","_key":"21049"} +{"label":"Eric van der Donk","version":22,"id":"34872","lastModified":"1301902005000","name":"Eric van der Donk","type":"Person","_key":"21050"} +{"label":"Adri Schrover","version":24,"id":"28218","lastModified":"1301901971000","name":"Adri Schrover","type":"Person","_key":"21051"} +{"label":"Tonnie Dinjens","version":20,"id":"34881","lastModified":"1301902005000","name":"Tonnie Dinjens","type":"Person","_key":"21052"} +{"label":"Ripley's Believe It Or Not","description":"No overview found.","id":"4136","runtime":0,"imdbId":"tt0218787","version":236,"lastModified":"1301908607000","studio":"Paramount Pictures","genre":"Comedy","title":"Ripley's Believe It Or Not","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"21053"} +{"label":"Blindsight","description":"No overview found.","id":"4140","runtime":104,"imdbId":"tt0841084","homepage":"http:\/\/www.blindsightthemovie.com\/","version":117,"lastModified":"1301905286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9a\/4cf668087b9aa15146000e9a\/blindsight-mid.jpg","studio":"Robson Entertainment","genre":"Documentary","title":"Blindsight","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"21054"} +{"label":"Lucy Walker","version":24,"id":"34949","lastModified":"1301901362000","name":"Lucy Walker","type":"Person","_key":"21055"} +{"label":"Gavin Attwood","version":20,"id":"34957","lastModified":"1301901676000","name":"Gavin Attwood","type":"Person","_key":"21056"} +{"label":"Sally Berg","version":20,"id":"34958","lastModified":"1301901464000","name":"Sally Berg","type":"Person","_key":"21057"} +{"label":"Sonam Bhumtso","version":20,"id":"34959","lastModified":"1301901594000","name":"Sonam Bhumtso","type":"Person","_key":"21058"} +{"label":"Michael Brown","version":25,"id":"16207","lastModified":"1301901512000","name":"Michael Brown","type":"Person","_key":"21059"} +{"label":"Dachung","version":20,"id":"34960","lastModified":"1301901583000","name":"Dachung","type":"Person","_key":"21060"} +{"label":"Jeff Evans","version":20,"id":"34961","lastModified":"1301901517000","name":"Jeff Evans","type":"Person","_key":"21061"} +{"label":"Gyenshen","version":20,"id":"34962","lastModified":"1301901365000","name":"Gyenshen","type":"Person","_key":"21062"} +{"label":"Stefani Jackenthal","version":20,"id":"34963","lastModified":"1301901461000","name":"Stefani Jackenthal","type":"Person","_key":"21063"} +{"label":"Shoot 'Em Up","description":"A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen. ","id":"4141","runtime":86,"imdbId":"tt0465602","trailer":"http:\/\/www.youtube.com\/watch?v=PQx24---sfw","homepage":"http:\/\/wwws.warnerbros.de\/shootemup\/","version":266,"lastModified":"1301901232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b10\/4d4a64047b9aa13ab4000b10\/shoot-em-up-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Shoot 'Em Up","releaseDate":1185408000000,"language":"en","type":"Movie","_key":"21064"} +{"label":"Daniel Pilon","version":28,"id":"34971","lastModified":"1301901431000","name":"Daniel Pilon","type":"Person","_key":"21065"} +{"label":"Pas si m\u00e9chant que \u00e7a","description":"No overview found.","id":"4146","runtime":90,"imdbId":"tt0071974","version":44,"lastModified":"1301302612000","studio":"Artco Films","genre":"Comedy","title":"Pas si m\u00e9chant que \u00e7a","releaseDate":126230400000,"language":"en","type":"Movie","_key":"21066"} +{"label":"Claude Goretta","version":22,"id":"34999","lastModified":"1301901594000","name":"Claude Goretta","type":"Person","_key":"21067"} +{"label":"Jacques Debary","version":25,"id":"35001","lastModified":"1301901837000","name":"Jacques Debary","type":"Person","_key":"21068"} +{"label":"Roland Amstutz","version":23,"id":"35002","lastModified":"1301901819000","name":"Roland Amstutz","type":"Person","_key":"21069"} +{"label":"Paul Crauchet","version":30,"id":"35003","lastModified":"1301901803000","name":"Paul Crauchet","type":"Person","_key":"21070"} +{"label":"Guillaume Depardieu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/439\/4ca8c0ce5e73d643eb000439\/guillaume-depardieu-profile.jpg","version":39,"id":"35004","lastModified":"1301901360000","name":"Guillaume Depardieu","type":"Person","_key":"21071"} +{"label":"Road to Perdition","description":"Hit man Michael Sullivan, known in his 1930s Chicago world as The Angel of Death, is on the run after his wife and son are murdered. With his surviving son in tow, Michael sets out to exact brutal vengeance. Complicating matters are a reporter, Al Capone's enforcer and other shady characters.","id":"4147","runtime":119,"imdbId":"tt0257044","version":362,"lastModified":"1301901482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4c11d16f7b9aa17ec5000023\/road-to-perdition-mid.jpg","studio":"The Zanuck Company","genre":"Action","title":"Road to Perdition","releaseDate":1026432000000,"language":"en","tagline":"Every son holds the future for his father.","type":"Movie","_key":"21072"} +{"label":"David Darlow","version":28,"id":"35022","lastModified":"1302062068000","name":"David Darlow","type":"Person","_key":"21073"} +{"label":"Doug Spinuzza","version":26,"id":"35024","lastModified":"1302062068000","name":"Doug Spinuzza","type":"Person","_key":"21074"} +{"label":"Kurt Naebig","version":26,"id":"35025","lastModified":"1302062068000","name":"Kurt Naebig","type":"Person","_key":"21075"} +{"label":"Duane Sharp","version":27,"id":"35026","lastModified":"1302062068000","name":"Duane Sharp","type":"Person","_key":"21076"} +{"label":"Revolutionary Road","description":"A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.","id":"4148","runtime":119,"imdbId":"tt0959337","trailer":"http:\/\/www.youtube.com\/watch?v=af01__Kvvr8","version":339,"lastModified":"1301907499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/627\/4d4f8e275e73d617b7003627\/revolutionary-road-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Revolutionary Road","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"21077"} +{"label":"Ryan Simpkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4cdc657c7b9aa13801000089\/ryan-simpkins-profile.jpg","version":31,"id":"35027","lastModified":"1301901278000","name":"Ryan Simpkins","type":"Person","_key":"21078"} +{"label":"Zoe Kazan","version":36,"id":"35028","lastModified":"1301901288000","name":"Zoe Kazan","type":"Person","_key":"21079"} +{"label":"David Harbour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37d\/4d03d88f7b9aa11bc400137d\/david-harbour-profile.jpg","version":42,"id":"35029","lastModified":"1301901097000","name":"David Harbour","type":"Person","_key":"21080"} +{"label":"Middlemarch","description":"No overview found.","id":"4149","runtime":0,"imdbId":"tt1019448","version":95,"lastModified":"1301906178000","genre":"Drama","title":"Middlemarch","language":"en","type":"Movie","_key":"21081"} +{"label":"Les trois mousquetaires: La vengeance de Milady","description":"No overview found.","id":"4153","runtime":187,"imdbId":"tt0055548","version":58,"lastModified":"1301904684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b6\/4d5287857b9aa13aab0118b6\/les-trois-mousquetaires-la-vengeance-de-milady-mid.jpg","studio":"Borderie","genre":"Adventure","title":"Les trois mousquetaires: La vengeance de Milady","releaseDate":-260150400000,"language":"en","type":"Movie","_key":"21082"} +{"label":"Bernard Borderie","version":23,"id":"35042","lastModified":"1301901742000","name":"Bernard Borderie","type":"Person","_key":"21083"} +{"label":"Perrette Pradier","version":26,"id":"35043","lastModified":"1301901497000","name":"Perrette Pradier","type":"Person","_key":"21084"} +{"label":"Bernard Woringer","version":20,"id":"35044","lastModified":"1301901742000","name":"Bernard Woringer","type":"Person","_key":"21085"} +{"label":"Guy Delorme","version":22,"id":"35045","lastModified":"1301901742000","name":"Guy Delorme","type":"Person","_key":"21086"} +{"label":"Guy Tr\u00e9jan","version":28,"id":"35046","lastModified":"1301901659000","name":"Guy Tr\u00e9jan","type":"Person","_key":"21087"} +{"label":"Daniel Sorano","version":21,"id":"35047","lastModified":"1301901791000","name":"Daniel Sorano","type":"Person","_key":"21088"} +{"label":"Anne Tonietti","version":19,"id":"35048","lastModified":"1301901742000","name":"Anne Tonietti","type":"Person","_key":"21089"} +{"label":"Robert Berri","version":19,"id":"35049","lastModified":"1301901742000","name":"Robert Berri","type":"Person","_key":"21090"} +{"label":"Henri Nassiet","version":19,"id":"35050","lastModified":"1301901742000","name":"Henri Nassiet","type":"Person","_key":"21091"} +{"label":"Three Seasons","description":"Three Seasons wants to show individuals triumphing over adversities, recovering from traumas, looking forward to better times, as well as nostalgia for those better days before American and French and other invasions, material and ideological. It is a poetic film that tries to paint a picture of the urban culture undergoing westernisation.","id":"4154","runtime":105,"imdbId":"tt0138874","version":126,"lastModified":"1301903888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a0\/4c4d44cd5e73d62a420001a0\/ba-mua-mid.jpg","studio":"October Films","genre":"Drama","title":"Three Seasons","releaseDate":925430400000,"language":"en","type":"Movie","_key":"21092"} +{"label":"Tony Bui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b9\/4c4d45295e73d62a3e0001b9\/tony-bui-profile.jpg","version":27,"id":"35052","lastModified":"1301901667000","name":"Tony Bui","type":"Person","_key":"21093"} +{"label":"Duong Don","version":25,"id":"35053","lastModified":"1301901407000","name":"Duong Don","type":"Person","_key":"21094"} +{"label":"Ngoc Hiep Nguyen","version":19,"id":"35054","lastModified":"1301901685000","name":"Ngoc Hiep Nguyen","type":"Person","_key":"21095"} +{"label":"Manh Cuong Tran","version":22,"id":"35055","lastModified":"1301901580000","name":"Manh Cuong Tran","type":"Person","_key":"21096"} +{"label":"Diep Bui","version":19,"id":"35056","lastModified":"1301901673000","name":"Diep Bui","type":"Person","_key":"21097"} +{"label":"Huu Duoc Nguyen","version":19,"id":"35057","lastModified":"1301901686000","name":"Huu Duoc Nguyen","type":"Person","_key":"21098"} +{"label":"Lola Guimond","version":19,"id":"35058","lastModified":"1301901687000","name":"Lola Guimond","type":"Person","_key":"21099"} +{"label":"Paul and Michelle","description":"No overview found.","id":"4155","runtime":90,"imdbId":"tt0071978","version":58,"lastModified":"1301907449000","studio":"Lewis Gilbert Productions","genre":"Drama","title":"Paul and Michelle","releaseDate":155088000000,"language":"en","type":"Movie","_key":"21100"} +{"label":"Sean Bury","version":24,"id":"35063","lastModified":"1301901366000","name":"Sean Bury","type":"Person","_key":"21101"} +{"label":"Ronald Lewis","version":23,"id":"35064","lastModified":"1301901667000","name":"Ronald Lewis","type":"Person","_key":"21102"} +{"label":"Friends","description":"No overview found.","id":"4156","runtime":97,"imdbId":"tt0067118","version":101,"lastModified":"1300978285000","studio":"Lewis Gilbert Productions","genre":"Drama","title":"Friends","releaseDate":38620800000,"language":"en","type":"Movie","_key":"21103"} +{"label":"Toby Robins","version":20,"id":"35065","lastModified":"1301901678000","name":"Toby Robins","type":"Person","_key":"21104"} +{"label":"Pascale Roberts","version":23,"id":"35066","lastModified":"1301901667000","name":"Pascale Roberts","type":"Person","_key":"21105"} +{"label":"Heyy Babyy","description":"Three handsome Sydney bachelors Aroush,Tanmay and Al \u2013 are having the time of their lives in Sydney. They flirt around, and have numerous conquests to their credit. They suddenly find their dating and mating rituals destroyed when a dimpled little roommate lands up on their doorstep. When it comes to babies, they\u2019re total zeroes and this bundle of joy is anything but joyous.","id":"4157","runtime":160,"imdbId":"tt0806088","trailer":"http:\/\/www.youtube.com\/watch?v=235","homepage":"http:\/\/heyybabyy.erosentertainment.com","version":321,"lastModified":"1301416013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec7\/4bc919d0017a3c57fe009ec7\/heyy-babyy-mid.jpg","studio":"Nadiadwala Grandsons","genre":"Comedy","title":"Heyy Babyy","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"21106"} +{"label":"Akshay Kumar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21e\/4bd0c55b017a3c63ed00021e\/akshay-kumar-profile.jpg","version":63,"birthday":"-73011600000","id":"35070","birthplace":"Amritsar, Punjab, India","lastModified":"1301901168000","name":"Akshay Kumar","type":"Person","_key":"21107"} +{"label":"Fardeen Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/146\/4c4f22fc5e73d62ec2000146\/fardeen-khan-profile.jpg","version":33,"id":"35069","lastModified":"1301901264000","name":"Fardeen Khan","type":"Person","_key":"21108"} +{"label":"Ritesh Deshmukh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4c4f26845e73d62ec600012d\/ritesh-deshmukh-profile.jpg","version":39,"id":"84957","lastModified":"1301901504000","name":"Ritesh Deshmukh","type":"Person","_key":"21109"} +{"label":"Vidya Balan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/127\/4c4f26ec5e73d62ec5000127\/vidya-balan-profile.jpg","version":36,"id":"35068","lastModified":"1301901254000","name":"Vidya Balan","type":"Person","_key":"21110"} +{"label":"Boman Irani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f8\/4d217d817b9aa1280f0004f8\/boman-irani-profile.jpg","version":66,"id":"35779","lastModified":"1301901267000","name":"Boman Irani","type":"Person","_key":"21111"} +{"label":"Shahrukh Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/283\/4d34a9715e73d63352009283\/shahrukh-khan-profile.jpg","version":114,"birthday":"-131418000000","id":"35742","birthplace":"New Delhi, India","lastModified":"1301901127000","name":"Shahrukh Khan","type":"Person","_key":"21112"} +{"label":"Dites-lui que je l'aime","description":"No overview found.","id":"4162","runtime":102,"imdbId":"tt0075946","version":52,"lastModified":"1301905716000","studio":"Filmoblic","genre":"Drama","title":"Dites-lui que je l'aime","releaseDate":244252800000,"language":"en","type":"Movie","_key":"21113"} +{"label":"Dominique Laffin","version":21,"id":"35134","lastModified":"1301901843000","name":"Dominique Laffin","type":"Person","_key":"21114"} +{"label":"Jacques Denis","version":22,"id":"35135","lastModified":"1301901838000","name":"Jacques Denis","type":"Person","_key":"21115"} +{"label":"V\u00e9ronique Silver","version":24,"id":"35136","lastModified":"1301901568000","name":"V\u00e9ronique Silver","type":"Person","_key":"21116"} +{"label":"Josiane Balasko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b2\/4d6fd13a5e73d65a300009b2\/josiane-balasko-profile.jpg","version":78,"id":"35137","lastModified":"1301901327000","name":"Josiane Balasko","type":"Person","_key":"21117"} +{"label":"Annick Le Moal","version":20,"id":"35138","lastModified":"1301901819000","name":"Annick Le Moal","type":"Person","_key":"21118"} +{"label":"Breach","description":"Based on the true story, FBI upstart Eric O'Neill enters into a power game with his boss, Robert Hanssen, an agent who was ultimately convicted of selling secrets to the Soviet Union.","id":"4169","runtime":110,"imdbId":"tt0401997","trailer":"http:\/\/www.youtube.com\/watch?v=232","homepage":"http:\/\/www.breachmovie.net\/","version":243,"lastModified":"1301903377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed0\/4bc919d3017a3c57fe009ed0\/breach-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Breach","releaseDate":1171238400000,"language":"en","type":"Movie","_key":"21119"} +{"label":"Billy Ray","version":49,"id":"21807","lastModified":"1301901450000","name":"Billy Ray","type":"Person","_key":"21120"} +{"label":"Trade","description":"Adriana is a 13-year-old girl from Mexico City whose kidnapping by sex traffickers sets in motion a desperate mission by her 17-year-old brother.","id":"4170","runtime":119,"imdbId":"tt0399095","trailer":"http:\/\/www.youtube.com\/watch?v=238","homepage":"http:\/\/www.trade-derfilm.de\/","version":228,"lastModified":"1302021904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eeb\/4bc919d5017a3c57fe009eeb\/trade-mid.jpg","studio":"Centropolis Film Productions","genre":"Drama","title":"Trade","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"21121"} +{"label":"Cesar Ramos","version":19,"id":"36584","lastModified":"1301901382000","name":"Cesar Ramos","type":"Person","_key":"21122"} +{"label":"Paulina Gaitan","version":24,"id":"36586","lastModified":"1301901285000","name":"Paulina Gaitan","type":"Person","_key":"21123"} +{"label":"Odette Toulemonde","description":"No overview found.","id":"4171","runtime":100,"imdbId":"tt0486636","homepage":"http:\/\/www.odettetoulemonde-lefilm.com\/","version":114,"lastModified":"1301905650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efe\/4bc919d7017a3c57fe009efe\/odette-toulemonde-mid.jpg","studio":"Path\u00e9 Renn Productions","genre":"Comedy","title":"Odette Toulemonde","releaseDate":1162771200000,"language":"en","type":"Movie","_key":"21124"} +{"label":"Eric-Emmanuel Schmitt","version":27,"id":"6543","lastModified":"1301952220000","name":"Eric-Emmanuel Schmitt","type":"Person","_key":"21125"} +{"label":"Fabrice Murgia","version":20,"id":"35891","lastModified":"1301901540000","name":"Fabrice Murgia","type":"Person","_key":"21126"} +{"label":"Nina Drecq","version":20,"id":"35892","lastModified":"1301901621000","name":"Nina Drecq","type":"Person","_key":"21127"} +{"label":"Camille Japy","version":22,"id":"35893","lastModified":"1301901801000","name":"Camille Japy","type":"Person","_key":"21128"} +{"label":"Julien Frison","version":26,"id":"35894","lastModified":"1301901845000","name":"Julien Frison","type":"Person","_key":"21129"} +{"label":"Laurence d'Amelio","version":19,"id":"35895","lastModified":"1301901590000","name":"Laurence d'Amelio","type":"Person","_key":"21130"} +{"label":"Stromboli","description":"Karen, a young woman from the Baltic countries, marries fisherman Antonio to escape from a prisoners camp. But the life in Antonio's village, Stromboli, threatened by the volcano, is a tough one and Karen cannot get used to it.","id":"4173","runtime":105,"imdbId":"tt0041931","version":60,"lastModified":"1301907145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb6\/4cf8640d5e73d62999001bb6\/stromboli-mid.jpg","studio":"RKO Radio Pictures, Inc.","genre":"Drama","title":"Stromboli","releaseDate":-627264000000,"language":"en","type":"Movie","_key":"21131"} +{"label":"Mario Vitale","version":22,"id":"35190","lastModified":"1301901838000","name":"Mario Vitale","type":"Person","_key":"21132"} +{"label":"Renzo Cesana","version":19,"id":"110205","lastModified":"1301902434000","name":"Renzo Cesana","type":"Person","_key":"21133"} +{"label":"Mario Sponzo","version":13,"id":"224455","lastModified":"1301903983000","name":"Mario Sponzo","type":"Person","_key":"21134"} +{"label":"Spellbound","description":"A psychiatrist tries to help the man she loves solve a murder buried in his subconscious.","id":"4174","runtime":111,"imdbId":"tt0038109","trailer":"http:\/\/www.youtube.com\/watch?v=S3Ury2w2ncw","version":147,"lastModified":"1301905103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f07\/4bc919da017a3c57fe009f07\/spellbound-mid.jpg","studio":"Vanguard Films","genre":"Drama","title":"Spellbound","releaseDate":-762739200000,"language":"en","type":"Movie","_key":"21135"} +{"label":"Michael Chekhov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4bc\/4bf2d8fa017a3c320d0004bc\/michael-chekhov-profile.jpg","version":20,"id":"35193","lastModified":"1301901540000","name":"Michael Chekhov","type":"Person","_key":"21136"} +{"label":"John Emery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af8\/4c0cf3f1017a3c7e89000af8\/john-emery-profile.jpg","version":26,"birthday":"-2039216400000","id":"35194","birthplace":"New York City, New York, USA","lastModified":"1301901663000","name":"John Emery","type":"Person","_key":"21137"} +{"label":"Donald Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/306\/4c4756a77b9aa15dde000306\/donald-curtis-profile.jpg","version":33,"id":"35847","lastModified":"1301901441000","name":"Donald Curtis","type":"Person","_key":"21138"} +{"label":"Art Baker","version":31,"id":"35848","lastModified":"1301901981000","name":"Art Baker","type":"Person","_key":"21139"} +{"label":"Wallace Ford","version":46,"birthday":"-2268435600000","id":"35849","birthplace":"Bolton, Lancashire, England, UK ","lastModified":"1301901290000","name":"Wallace Ford","type":"Person","_key":"21140"} +{"label":"Under Capricorn","description":"In 1831, Irishman Charles Adare travels to Australia to start a new life with the help of his cousin who has just been appointed governor. When he arrives he meets powerful landowner and ex-convict Sam Flusky, who wants to do a business deal with him. Whilst attending a dinner party at Flusky's house, Charles meets Flusky's wife Henrietta who he had known as a child back in Ireland. Henrietta is an alcoholic and seems to be on the verge of madness.","id":"4175","runtime":108,"imdbId":"tt0042004","version":195,"lastModified":"1301905286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f15\/4bc919db017a3c57fe009f15\/under-capricorn-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Under Capricorn","releaseDate":-641088000000,"language":"en","type":"Movie","_key":"21141"} +{"label":"Margaret Leighton","version":33,"id":"80255","lastModified":"1302031892000","name":"Margaret Leighton","type":"Person","_key":"21142"} +{"label":"Murder on the Orient Express","description":"In 1935, when his train is stopped by deep snow, detective Hercule Poirot is called on to solve a murder that occurred in his car the night before.","id":"4176","runtime":128,"imdbId":"tt0071877","trailer":"http:\/\/www.youtube.com\/watch?v=2688","version":160,"lastModified":"1301902001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdc\/4d8b62b65e73d653ce000bdc\/murder-on-the-orient-express-mid.jpg","studio":"EMI Films Ltd.","genre":"Drama","title":"Murder on the Orient Express","releaseDate":154483200000,"language":"en","type":"Movie","_key":"21143"} +{"label":"Rachel Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78f\/4caa23ca7b9aa17acb00078f\/rachel-roberts-profile.jpg","version":26,"id":"82495","lastModified":"1301902136000","name":"Rachel Roberts","type":"Person","_key":"21144"} +{"label":"Les petites bonnes","description":"No overview found.","id":"4179","runtime":90,"imdbId":"tt0214000","version":47,"lastModified":"1301907426000","studio":"France 3 Cin\u00e9ma","genre":"Comedy","title":"Les petites bonnes","releaseDate":879206400000,"language":"en","type":"Movie","_key":"21145"} +{"label":"Grace De Capitani","version":25,"id":"35202","lastModified":"1301901792000","name":"Grace De Capitani","type":"Person","_key":"21146"} +{"label":"Olivia Brunaux","version":20,"id":"35203","lastModified":"1301901512000","name":"Olivia Brunaux","type":"Person","_key":"21147"} +{"label":"Bunny Godillot","version":20,"id":"35206","lastModified":"1301902005000","name":"Bunny Godillot","type":"Person","_key":"21148"} +{"label":"Ginette Garcin","version":31,"id":"35204","lastModified":"1301901792000","name":"Ginette Garcin","type":"Person","_key":"21149"} +{"label":"Arielle S\u00e9m\u00e9noff","version":20,"id":"35205","lastModified":"1301902005000","name":"Arielle S\u00e9m\u00e9noff","type":"Person","_key":"21150"} +{"label":"Richard Darbois","version":20,"id":"35207","lastModified":"1301901499000","name":"Richard Darbois","type":"Person","_key":"21151"} +{"label":"3 hommes et un couffin","description":"No overview found.","id":"4180","runtime":106,"imdbId":"tt0090206","version":90,"lastModified":"1301905286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/551\/4d519e605e73d617ba004551\/3-hommes-et-un-couffin-mid.jpg","studio":"Flach Films","genre":"Comedy","title":"3 hommes et un couffin","releaseDate":495849600000,"language":"en","type":"Movie","_key":"21152"} +{"label":"Coline Serreau","version":45,"id":"35208","lastModified":"1301901400000","name":"Coline Serreau","type":"Person","_key":"21153"} +{"label":"Roland Giraud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4d719bab7b9aa170510000d1\/roland-giraud-profile.jpg","version":36,"id":"35210","lastModified":"1301901524000","name":"Roland Giraud","type":"Person","_key":"21154"} +{"label":"Michel Boujenah","version":27,"id":"35211","lastModified":"1301901642000","name":"Michel Boujenah","type":"Person","_key":"21155"} +{"label":"Josine Comellas","version":21,"id":"35213","lastModified":"1301901621000","name":"Josine Comellas","type":"Person","_key":"21156"} +{"label":"Gabriel Jabbour","version":24,"id":"35214","lastModified":"1301901790000","name":"Gabriel Jabbour","type":"Person","_key":"21157"} +{"label":"Valentine Monnier","version":25,"id":"35215","lastModified":"1301901477000","name":"Valentine Monnier","type":"Person","_key":"21158"} +{"label":"Catherine et Cie","description":"No overview found.","id":"4181","runtime":100,"imdbId":"tt0072770","version":46,"lastModified":"1301908345000","studio":"Viaduc Productions","genre":"Comedy","title":"Catherine et Cie","releaseDate":183772800000,"language":"en","type":"Movie","_key":"21159"} +{"label":"Michel Boisrond","version":20,"id":"35216","lastModified":"1301901559000","name":"Michel Boisrond","type":"Person","_key":"21160"} +{"label":"Mehdi El Glaoui","version":21,"id":"35217","lastModified":"1301904136000","name":"Mehdi El Glaoui","type":"Person","_key":"21161"} +{"label":"La vie \u00e0 l'envers","description":"A Paris real estate developer who feels compelled to withdraw from his seemingly perfect life into a world of his own. Is the man going insane? By conventional standards, maybe, but it's clear that the life he's fleeing is madder still from his point of view, and since that point of view is unfailingly witty and astute, we even come to accept his delusions as more \"real\" than reality.","id":"4182","runtime":92,"imdbId":"tt0059874","version":39,"lastModified":"1300978287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f27\/4bc919dc017a3c57fe009f27\/la-vie-a-l-envers-mid.jpg","studio":"A.J. Films","genre":"Drama","title":"La vie \u00e0 l'envers","releaseDate":-168307200000,"language":"en","type":"Movie","_key":"21162"} +{"label":"Guy Saint-Jean","version":20,"id":"34990","lastModified":"1301901903000","name":"Guy Saint-Jean","type":"Person","_key":"21163"} +{"label":"Nicole Gueden","version":20,"id":"35218","lastModified":"1301901742000","name":"Nicole Gueden","type":"Person","_key":"21164"} +{"label":"Jean Dewever","version":23,"id":"34988","lastModified":"1301901593000","name":"Jean Dewever","type":"Person","_key":"21165"} +{"label":"The Bride Wore Black","description":"Julie Kohler is prevented from suicide by her mother. She leaves the town. She will track down, charm and kill five men who do not know her. What is her goal ? What is her purpose?","id":"4191","runtime":107,"imdbId":"tt0061955","version":116,"lastModified":"1302038668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f34\/4bc919dd017a3c57fe009f34\/la-mariee-etait-en-noir-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"The Bride Wore Black","releaseDate":-56160000000,"language":"en","type":"Movie","_key":"21166"} +{"label":"Luce Fabiole","version":23,"id":"35247","lastModified":"1301902032000","name":"Luce Fabiole","type":"Person","_key":"21167"} +{"label":"Sylvine Delannoy","version":21,"id":"35248","lastModified":"1301901903000","name":"Sylvine Delannoy","type":"Person","_key":"21168"} +{"label":"Jacques Robiolles","version":21,"id":"35249","lastModified":"1301901903000","name":"Jacques Robiolles","type":"Person","_key":"21169"} +{"label":"Death on the Nile","description":"The film features the Belgian detective Hercule Poirot played by Peter Ustinov. It takes place in Egypt, mostly on the Nile River. Many of the cultural highlights of Egypt are also featured in the film, such as the Great Pyramids, the Sphinx, and temples at Abu Simbal and Karnak.","id":"4192","runtime":140,"imdbId":"tt0077413","trailer":"http:\/\/www.youtube.com\/watch?v=1021","version":135,"lastModified":"1301903251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/333\/4d237e2a5e73d66b2b004333\/death-on-the-nile-mid.jpg","studio":"G.W. Films","genre":"Crime","title":"Death on the Nile","releaseDate":276480000000,"language":"en","type":"Movie","_key":"21170"} +{"label":"Evil Under the Sun","description":"Trying to find how a millionaire wound up with a phony diamond brings Hercule Poirot to an exclusive island resort frequented by the rich and famous. When a murder is committed, everyone has an alibi.","id":"4193","runtime":117,"imdbId":"tt0083908","version":149,"lastModified":"1301903932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4d237c255e73d66b34004216\/evil-under-the-sun-mid.jpg","studio":"G.W. Films","genre":"Crime","title":"Evil Under the Sun","releaseDate":384134400000,"language":"en","type":"Movie","_key":"21171"} +{"label":"Emily Hone","version":23,"id":"35251","lastModified":"1301901788000","name":"Emily Hone","type":"Person","_key":"21172"} +{"label":"La vie de ch\u00e2teau","description":"No overview found.","id":"4194","runtime":93,"imdbId":"tt0059872","version":44,"lastModified":"1301906192000","studio":"Les Productions de la Gu\u00e9ville","genre":"Comedy","title":"La vie de ch\u00e2teau","releaseDate":-124156800000,"language":"en","type":"Movie","_key":"21173"} +{"label":"Jean-Paul Rappeneau","version":38,"id":"25950","lastModified":"1301901418000","name":"Jean-Paul Rappeneau","type":"Person","_key":"21174"} +{"label":"Carlos Thompson","version":23,"id":"35252","lastModified":"1301901585000","name":"Carlos Thompson","type":"Person","_key":"21175"} +{"label":"Marc Dudicourt","version":21,"id":"35253","lastModified":"1301902020000","name":"Marc Dudicourt","type":"Person","_key":"21176"} +{"label":"Bluebeard","description":"France, WWI. Landru, the father of four Children, contacts Parisian women through newspapers, seduces and eventually kills them in order to feed his little family.","id":"4195","runtime":115,"imdbId":"tt0056165","version":114,"lastModified":"1301906635000","studio":"Rome Paris Films","genre":"Drama","title":"Bluebeard","releaseDate":-218851200000,"language":"en","type":"Movie","_key":"21177"} +{"label":"Mich\u00e8le Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4bd70c49017a3c21f50000ba\/michele-morgan-profile.jpg","version":31,"id":"35254","lastModified":"1301901294000","name":"Mich\u00e8le Morgan","type":"Person","_key":"21178"} +{"label":"Catherine Rouvel","version":29,"id":"35255","lastModified":"1301901431000","name":"Catherine Rouvel","type":"Person","_key":"21179"} +{"label":"Huguette Forge","version":19,"id":"39524","lastModified":"1301901903000","name":"Huguette Forge","type":"Person","_key":"21180"} +{"label":"Robert Burnier","version":19,"id":"39525","lastModified":"1301901903000","name":"Robert Burnier","type":"Person","_key":"21181"} +{"label":"Diane Lepvrier","version":19,"id":"39526","lastModified":"1301901903000","name":"Diane Lepvrier","type":"Person","_key":"21182"} +{"label":"Gis\u00e8le Sandr\u00e9","version":19,"id":"39527","lastModified":"1301901903000","name":"Gis\u00e8le Sandr\u00e9","type":"Person","_key":"21183"} +{"label":"Pierre Lafont","version":19,"id":"39531","lastModified":"1301901903000","name":"Pierre Lafont","type":"Person","_key":"21184"} +{"label":"Raymond Queneau","version":23,"id":"25949","lastModified":"1301902114000","name":"Raymond Queneau","type":"Person","_key":"21185"} +{"label":"Lenin: The Train","description":"March\/April 1917. The first world war is already a couple year to pace. A sealed train with Russian emigrants keeps on driving from Z\u00fcrich Germany and Sweden to Sint-Petersburg. The outlaws stand under the guidance of Vladimir J. Lenin. Two senior officers support the revolutionary bomb \"to ensure that everything runs smoothly. Yet there are some unpleasant clashes between Socialists and enthusiastic workers who are worried about the war. During train travel there comes an end to Lenin's affair ","id":"4196","runtime":198,"imdbId":"tt0174862","trailer":"http:\/\/www.youtube.com\/watch?v=bGYRa-rTtzw","version":72,"lastModified":"1301905650000","studio":"TF1 Films Productions","genre":"Drama","title":"Lenin: The Train","releaseDate":641433600000,"language":"en","type":"Movie","_key":"21186"} +{"label":"Damiano Damiani","version":32,"id":"35256","lastModified":"1301901451000","name":"Damiano Damiani","type":"Person","_key":"21187"} +{"label":"Jason Connery","version":50,"id":"25527","lastModified":"1301901230000","name":"Jason Connery","type":"Person","_key":"21188"} +{"label":"Timothy West","version":34,"id":"35257","lastModified":"1301901403000","name":"Timothy West","type":"Person","_key":"21189"} +{"label":"Peter Whitman","version":19,"id":"35258","lastModified":"1301901903000","name":"Peter Whitman","type":"Person","_key":"21190"} +{"label":"Dagmar Schwarz","version":20,"id":"35259","lastModified":"1301901903000","name":"Dagmar Schwarz","type":"Person","_key":"21191"} +{"label":"Robin Lermitte","version":19,"id":"35260","lastModified":"1301901903000","name":"Robin Lermitte","type":"Person","_key":"21192"} +{"label":"Jeannine Mestre","version":26,"id":"35261","lastModified":"1301901903000","name":"Jeannine Mestre","type":"Person","_key":"21193"} +{"label":"Hans Kraemer","version":19,"id":"35262","lastModified":"1301901903000","name":"Hans Kraemer","type":"Person","_key":"21194"} +{"label":"Ernst Jacobi","version":23,"id":"26498","lastModified":"1301902110000","name":"Ernst Jacobi","type":"Person","_key":"21195"} +{"label":"Thomas Heinze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6e\/4d17167a7b9aa1147c002f6e\/thomas-heinze-profile.jpg","version":27,"id":"35264","lastModified":"1301901352000","name":"Thomas Heinze","type":"Person","_key":"21196"} +{"label":"Tobias Engel","version":19,"id":"35265","lastModified":"1301901903000","name":"Tobias Engel","type":"Person","_key":"21197"} +{"label":"The Man in the Iron Mask","description":"The story of Louis XIV of France and his attempts to keep his identical twin brother Philippe imprisoned away from sight and knowledge of the public, and Philippe's rescue by the aging Musketeers, led by D'Artagnan.","id":"4199","runtime":100,"imdbId":"tt0074853","version":92,"lastModified":"1301906635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c6\/4d74e97b5e73d602ef0004c6\/the-man-in-the-iron-mask-mid.jpg","studio":"ITC Entertainment","genre":"History","title":"The Man in the Iron Mask","releaseDate":237081600000,"language":"en","type":"Movie","_key":"21198"} +{"label":"Brenda Bruce","version":22,"id":"35315","lastModified":"1301901903000","name":"Brenda Bruce","type":"Person","_key":"21199"} +{"label":"The Fifth Musketeer","description":"No overview found.","id":"4201","runtime":116,"imdbId":"tt0079152","version":73,"lastModified":"1301907286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/866\/4ccc52d85e73d65023000866\/the-fifth-musketeer-mid.jpg","studio":"Sascha-Verleih","genre":"Action","title":"The Fifth Musketeer","releaseDate":292204800000,"language":"en","type":"Movie","_key":"21200"} +{"label":"Ken Annakin","version":41,"id":"35318","lastModified":"1301901325000","name":"Ken Annakin","type":"Person","_key":"21201"} +{"label":"Sylvia Kristel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/482\/4c065a12017a3c7e92000482\/sylvia-kristel-profile.jpg","version":47,"id":"35319","lastModified":"1301901174000","name":"Sylvia Kristel","type":"Person","_key":"21202"} +{"label":"Cornel Wilde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4bd5b408017a3c658a000007\/cornel-wilde-profile.jpg","version":50,"id":"35320","lastModified":"1301901265000","name":"Cornel Wilde","type":"Person","_key":"21203"} +{"label":"Rex Harrison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15f\/4c52f3857b9aa147f400015f\/rex-harrison-profile.jpg","version":49,"id":"35321","lastModified":"1301901286000","name":"Rex Harrison","type":"Person","_key":"21204"} +{"label":"Alan Hale Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/043\/4bcf3856017a3c63f1000043\/alan-hale-jr-profile.jpg","version":40,"id":"35322","lastModified":"1301901808000","name":"Alan Hale Jr.","type":"Person","_key":"21205"} +{"label":"Danton","description":"Danton (G\u00e9rard Depardieu) and Robespierre (Wojciech Pszoniak) were close friends and fought together in the French Revolution, but by 1793 Robespierre was France's ruler, determined to wipe out opposition with a series of mass executions that became known as the Reign of Terror. Danton, well known as a spokesman of the people, had been living in relative solitude in the French countryside, but he returned to Paris to challenge Robespierre's violent rule and call for the people to demand their ri","id":"4202","runtime":136,"imdbId":"tt0083789","version":161,"lastModified":"1301908365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74b\/4c5bd8c47b9aa151f500074b\/danton-mid.jpg","studio":"Gaumont","genre":"Drama","title":"Danton","releaseDate":411177600000,"language":"en","type":"Movie","_key":"21206"} +{"label":"Jacques Villeret","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15e\/4cef95e67b9aa13b9d00015e\/jacques-villeret-profile.jpg","version":49,"id":"35323","lastModified":"1301941380000","name":"Jacques Villeret","type":"Person","_key":"21207"} +{"label":"Anne Alvaro","version":26,"id":"35324","lastModified":"1301901540000","name":"Anne Alvaro","type":"Person","_key":"21208"} +{"label":"Women on the Verge of a Nervous Breakdown","description":"Women on the Verge of a Nervous Breakdown (Spanish: Mujeres al borde de un ataque de nervios) is a 1988 Spanish comedy film written and directed by Pedro Almod\u00f3var, starring Carmen Maura and Antonio Banderas. The film that brought Almod\u00f3var to widespread international attention, it was nominated for the 1989 Academy Award for Best Foreign-language film, and won five Goya Awards including Best Film and Best Actress in a Leading Role for Maura. The actual title refers in Spanish to \"un ataque de n","id":"4203","runtime":88,"imdbId":"tt0095675","version":175,"lastModified":"1301903215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4bc919e3017a3c57fe009f57\/mujeres-al-borde-de-un-ataque-de-nervios-mid.jpg","studio":"Laurenfilm","genre":"Comedy","title":"Women on the Verge of a Nervous Breakdown","releaseDate":575078400000,"language":"en","type":"Movie","_key":"21209"} +{"label":"Guillermo Montesinos","version":24,"id":"35351","lastModified":"1301901819000","name":"Guillermo Montesinos","type":"Person","_key":"21210"} +{"label":"Ana Leza","version":22,"id":"35352","lastModified":"1301901936000","name":"Ana Leza","type":"Person","_key":"21211"} +{"label":"\u00c1ngel de Andr\u00e9s L\u00f3pez","version":32,"id":"35353","lastModified":"1301901472000","name":"\u00c1ngel de Andr\u00e9s L\u00f3pez","type":"Person","_key":"21212"} +{"label":"Jos\u00e9 Antonio Navarro","version":22,"id":"35354","lastModified":"1301901770000","name":"Jos\u00e9 Antonio Navarro","type":"Person","_key":"21213"} +{"label":"Juan Lombardero","version":22,"id":"35355","lastModified":"1301901770000","name":"Juan Lombardero","type":"Person","_key":"21214"} +{"label":"Mary Gonz\u00e1lez","version":22,"id":"35356","lastModified":"1301901770000","name":"Mary Gonz\u00e1lez","type":"Person","_key":"21215"} +{"label":"Five Dollars a Day","description":"When con man Nat (Christopher Walken) convinces his straitlaced son, Flynn (Alessandro Nivola), to join him on a road trip, the two learn a few things about each other as they drive to New Mexico, attempting to live on no more than $5 a day. While they scam their way across the country, Flynn deals with the resentment he feels for his estranged father.","id":"4204","runtime":98,"imdbId":"tt1024733","version":171,"lastModified":"1301905293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05a\/4c8368887b9aa1428d00005a\/five-dollars-a-day-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Five Dollars a Day","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"21216"} +{"label":"Christopher Dempsey","version":24,"id":"36135","lastModified":"1301901494000","name":"Christopher Dempsey","type":"Person","_key":"21217"} +{"label":"Bridget White","version":22,"id":"36136","lastModified":"1301901595000","name":"Bridget White","type":"Person","_key":"21218"} +{"label":"Nectar Rose","version":32,"id":"36137","lastModified":"1301901242000","name":"Nectar Rose","type":"Person","_key":"21219"} +{"label":"Oh, what a Night","description":"Seventeen-year-old Eric Hansen, played by Corey Haim embarks on a journey in his new town during the summer of 1955 which will change his life forever.","id":"4205","runtime":93,"imdbId":"tt0105048","version":88,"lastModified":"1301905650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f64\/4bc919e4017a3c57fe009f64\/oh-what-a-night-mid.jpg","studio":"Green\/Epstein Productions","genre":"Comedy","title":"Oh, what a Night","releaseDate":694224000000,"language":"en","type":"Movie","_key":"21220"} +{"label":"Eric Till","version":35,"id":"35325","lastModified":"1301901276000","name":"Eric Till","type":"Person","_key":"21221"} +{"label":"Barbara Williams","version":21,"id":"35340","lastModified":"1301901226000","name":"Barbara Williams","type":"Person","_key":"21222"} +{"label":"Genevi\u00e8ve Bujold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33d\/4c2260a17b9aa130a600033d\/genevieve-bujold-profile.jpg","version":54,"id":"35341","lastModified":"1301901191000","name":"Genevi\u00e8ve Bujold","type":"Person","_key":"21223"} +{"label":"Kirsten Kieferle","version":19,"id":"35342","lastModified":"1301901431000","name":"Kirsten Kieferle","type":"Person","_key":"21224"} +{"label":"Joseph Ziegler","version":23,"id":"35343","lastModified":"1301901307000","name":"Joseph Ziegler","type":"Person","_key":"21225"} +{"label":"Denny Doherty","version":20,"id":"35344","lastModified":"1301901429000","name":"Denny Doherty","type":"Person","_key":"21226"} +{"label":"Diana Leblanc","version":19,"id":"35345","lastModified":"1301901431000","name":"Diana Leblanc","type":"Person","_key":"21227"} +{"label":"Ashley Rainey","version":19,"id":"35346","lastModified":"1301901431000","name":"Ashley Rainey","type":"Person","_key":"21228"} +{"label":"Sabrina Jamieson","version":19,"id":"35347","lastModified":"1301901431000","name":"Sabrina Jamieson","type":"Person","_key":"21229"} +{"label":"Martin et L\u00e9a","description":"No overview found.","id":"4208","runtime":90,"imdbId":"tt0077915","version":46,"lastModified":"1301906754000","studio":"Les Productions de la Gu\u00e9ville","genre":"Drama","title":"Martin et L\u00e9a","releaseDate":286588800000,"language":"en","type":"Movie","_key":"21230"} +{"label":"Isabelle Ho","version":20,"id":"35360","lastModified":"1301901678000","name":"Isabelle Ho","type":"Person","_key":"21231"} +{"label":"C\u00e9cile Le Bailly","version":20,"id":"35361","lastModified":"1301901659000","name":"C\u00e9cile Le Bailly","type":"Person","_key":"21232"} +{"label":"Louis Navarre","version":21,"id":"35362","lastModified":"1301901792000","name":"Louis Navarre","type":"Person","_key":"21233"} +{"label":"Gegen\u00fcber","description":"No overview found.","id":"4213","runtime":96,"imdbId":"tt1031932","homepage":"http:\/\/www.gegenueber-film.de\/","version":59,"lastModified":"1301904477000","studio":"WDR","genre":"Drama","title":"Gegen\u00fcber","releaseDate":1179619200000,"language":"en","type":"Movie","_key":"21234"} +{"label":"Jan Bonny","version":27,"id":"35375","lastModified":"1301901418000","name":"Jan Bonny","type":"Person","_key":"21235"} +{"label":"Matthias Brandt","version":33,"id":"35382","lastModified":"1301901659000","name":"Matthias Brandt","type":"Person","_key":"21236"} +{"label":"Anna Brass","version":22,"id":"35383","lastModified":"1301902017000","name":"Anna Brass","type":"Person","_key":"21237"} +{"label":"Pablo Ben-Yakov","version":20,"id":"35384","lastModified":"1301902005000","name":"Pablo Ben-Yakov","type":"Person","_key":"21238"} +{"label":"Jochen Striebeck","version":20,"id":"35385","lastModified":"1301902005000","name":"Jochen Striebeck","type":"Person","_key":"21239"} +{"label":"Maria K\u00f6rber","version":20,"id":"35386","lastModified":"1301901967000","name":"Maria K\u00f6rber","type":"Person","_key":"21240"} +{"label":"Claus Dieter Clausnitzer","version":20,"id":"35387","lastModified":"1301901967000","name":"Claus Dieter Clausnitzer","type":"Person","_key":"21241"} +{"label":"Danton","description":"No overview found.","id":"4217","runtime":60,"imdbId":"tt0012092","version":84,"lastModified":"1301908344000","studio":"W\u00f6rner-Filmgesellschaft","genre":"History","title":"Danton","releaseDate":-1535673600000,"language":"en","type":"Movie","_key":"21242"} +{"label":"Dimitri Buchowetzki","version":20,"id":"35407","lastModified":"1301901850000","name":"Dimitri Buchowetzki","type":"Person","_key":"21243"} +{"label":"Ferdinand von Alten","version":22,"id":"35423","lastModified":"1301901943000","name":"Ferdinand von Alten","type":"Person","_key":"21244"} +{"label":"Ossip Runitsch","version":19,"id":"35417","lastModified":"1301901620000","name":"Ossip Runitsch","type":"Person","_key":"21245"} +{"label":"Hugo D\u00f6blin","version":20,"id":"36142","lastModified":"1301901903000","name":"Hugo D\u00f6blin","type":"Person","_key":"21246"} +{"label":"Maly Delschaft","version":25,"id":"35420","lastModified":"1301901834000","name":"Maly Delschaft","type":"Person","_key":"21247"} +{"label":"Robert Scholz","version":19,"id":"36143","lastModified":"1301901620000","name":"Robert Scholz","type":"Person","_key":"21248"} +{"label":"Hilde Woerner","version":18,"id":"36144","lastModified":"1301901673000","name":"Hilde Woerner","type":"Person","_key":"21249"} +{"label":"Charlotte Ander","version":19,"id":"35418","lastModified":"1301901620000","name":"Charlotte Ander","type":"Person","_key":"21250"} +{"label":"The 100 Scariest Movie Moments","description":"No overview found.","id":"4225","runtime":300,"imdbId":"tt0450892","version":88,"lastModified":"1301903587000","genre":"Documentary","title":"The 100 Scariest Movie Moments","releaseDate":1098748800000,"language":"en","type":"Movie","_key":"21251"} +{"label":"Kevin Kaufman","version":18,"id":"35460","lastModified":"1301901540000","name":"Kevin Kaufman","type":"Person","_key":"21252"} +{"label":"Keiko Agena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c4f\/4d931f5b7b9aa1199a000c4f\/keiko-agena-profile.jpg","version":23,"id":"35467","lastModified":"1301901540000","name":"Keiko Agena","type":"Person","_key":"21253"} +{"label":"David Arquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/240\/4ca4acf47b9aa16ed6000240\/david-arquette-profile.jpg","version":88,"id":"15234","lastModified":"1302061539000","name":"David Arquette","type":"Person","_key":"21254"} +{"label":"Amber Benson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cf\/4d348a6f7b9aa17a450085cf\/amber-benson-profile.jpg","version":44,"id":"35468","lastModified":"1301901371000","name":"Amber Benson","type":"Person","_key":"21255"} +{"label":"Jami Bernard","version":19,"id":"35469","lastModified":"1301901903000","name":"Jami Bernard","type":"Person","_key":"21256"} +{"label":"Aviva Briefel","version":18,"id":"35470","lastModified":"1301901991000","name":"Aviva Briefel","type":"Person","_key":"21257"} +{"label":"Hilarie Burton","version":22,"id":"35472","lastModified":"1301901742000","name":"Hilarie Burton","type":"Person","_key":"21258"} +{"label":"Ramsey Campbell","version":24,"id":"35473","lastModified":"1301901903000","name":"Ramsey Campbell","type":"Person","_key":"21259"} +{"label":"Larry Cohen","version":70,"id":"19266","lastModified":"1301901411000","name":"Larry Cohen","type":"Person","_key":"21260"} +{"label":"Sean S. Cunningham","version":59,"id":"35475","lastModified":"1301901402000","name":"Sean S. Cunningham","type":"Person","_key":"21261"} +{"label":"Brittany Daniel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/52a\/4be0ea4a017a3c35b900052a\/brittany-daniel-profile.jpg","version":37,"id":"35476","lastModified":"1301901170000","name":"Brittany Daniel","type":"Person","_key":"21262"} +{"label":"James Eason","version":19,"id":"35477","lastModified":"1301901903000","name":"James Eason","type":"Person","_key":"21263"} +{"label":"Jesse Falcon","version":19,"id":"35478","lastModified":"1301901742000","name":"Jesse Falcon","type":"Person","_key":"21264"} +{"label":"Stephen King","version":185,"id":"3027","lastModified":"1299840028000","name":"Stephen King","type":"Person","_key":"21265"} +{"label":"Michael Dougherty","version":53,"id":"11012","lastModified":"1301901517000","name":"Michael Dougherty","type":"Person","_key":"21266"} +{"label":"Andrew Bryniarski","version":33,"id":"52366","lastModified":"1301901646000","name":"Andrew Bryniarski","type":"Person","_key":"21267"} +{"label":"Shriek If You Know What I Did Last Friday the Thirteenth","description":"Another spoof of the Scream\/I Know What You Did Last Summer horror gene involving a group of popular high school students stalked by a bumbling masked killer while a dogged reporter named Hagitha Utslay covers the story and of the plight of the prime suspect and transfer student Dawson.","id":"4226","runtime":86,"imdbId":"tt0212235","version":139,"lastModified":"1301904032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f73\/4bc919e7017a3c57fe009f73\/shriek-if-you-know-what-i-did-last-friday-the-thirteenth-mid.jpg","studio":"Endless Entertainment","genre":"Comedy","title":"Shriek If You Know What I Did Last Friday the Thirteenth","releaseDate":971740800000,"language":"en","type":"Movie","_key":"21268"} +{"label":"John Blanchard","version":22,"id":"35479","lastModified":"1301901488000","name":"John Blanchard","type":"Person","_key":"21269"} +{"label":"Aimee Graham","version":32,"id":"35545","lastModified":"1301901295000","name":"Aimee Graham","type":"Person","_key":"21270"} +{"label":"Chris Palermo","version":22,"id":"35546","lastModified":"1301901770000","name":"Chris Palermo","type":"Person","_key":"21271"} +{"label":"Harley Cross","version":29,"id":"35547","lastModified":"1301901669000","name":"Harley Cross","type":"Person","_key":"21272"} +{"label":"Simon Rex","version":35,"id":"35548","lastModified":"1301901777000","name":"Simon Rex","type":"Person","_key":"21273"} +{"label":"Coolio","version":41,"id":"35549","lastModified":"1301901560000","name":"Coolio","type":"Person","_key":"21274"} +{"label":"Danny Strong","version":26,"id":"35550","lastModified":"1301901770000","name":"Danny Strong","type":"Person","_key":"21275"} +{"label":"Julie Benz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4be\/4be0938d017a3c35bf0004be\/julie-benz-profile.jpg","version":81,"birthday":"73522800000","id":"35551","lastModified":"1301901078000","name":"Julie Benz","type":"Person","_key":"21276"} +{"label":"Majandra Delfino","version":33,"id":"35552","lastModified":"1301901583000","name":"Majandra Delfino","type":"Person","_key":"21277"} +{"label":"Steven Anthony Lawrence","version":24,"id":"35554","lastModified":"1301901678000","name":"Steven Anthony Lawrence","type":"Person","_key":"21278"} +{"label":"Tiffani Thiessen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e2\/4c95ac775e73d63a770003e2\/tiffani-thiessen-profile.jpg","version":27,"id":"19187","lastModified":"1301901948000","name":"Tiffani Thiessen","type":"Person","_key":"21279"} +{"label":"J'ai \u00e9pous\u00e9 une ombre","description":"No overview found.","id":"4227","runtime":95,"imdbId":"tt0084158","version":49,"lastModified":"1301907425000","studio":"Sara Films","genre":"Crime","title":"J'ai \u00e9pous\u00e9 une ombre","releaseDate":414201600000,"language":"en","type":"Movie","_key":"21280"} +{"label":"Robin Davis","version":20,"id":"35522","lastModified":"1301901792000","name":"Robin Davis","type":"Person","_key":"21281"} +{"label":"V\u00e9ronique Genest","version":20,"id":"35398","lastModified":"1301902005000","name":"V\u00e9ronique Genest","type":"Person","_key":"21282"} +{"label":"Humbert Balsan","version":21,"id":"35524","lastModified":"1301901851000","name":"Humbert Balsan","type":"Person","_key":"21283"} +{"label":"La R\u00e9volution fran\u00e7aise","description":"No overview found.","id":"4228","runtime":360,"imdbId":"tt0098238","version":82,"lastModified":"1301418666000","studio":"Les Films Ariane S.A.","genre":"History","title":"La R\u00e9volution fran\u00e7aise","releaseDate":623289600000,"language":"en","type":"Movie","_key":"21284"} +{"label":"Richard T. Heffron","version":30,"id":"35525","lastModified":"1301901497000","name":"Richard T. Heffron","type":"Person","_key":"21285"} +{"label":"Georges Corraface","version":28,"id":"35529","lastModified":"1301901584000","name":"Georges Corraface","type":"Person","_key":"21286"} +{"label":"Christopher Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/676\/4d96f1547b9aa12e93001676\/christopher-thompson-profile.jpg","version":36,"id":"35530","lastModified":"1301901592000","name":"Christopher Thompson","type":"Person","_key":"21287"} +{"label":"Serge Dupire","version":22,"id":"35531","lastModified":"1301901742000","name":"Serge Dupire","type":"Person","_key":"21288"} +{"label":"The Scary Movie","description":"No overview found.","id":"4229","runtime":7,"imdbId":"tt0985108","version":50,"lastModified":"1301302613000","genre":"Horror","title":"The Scary Movie","releaseDate":725846400000,"language":"en","type":"Movie","_key":"21289"} +{"label":"Peggy Ahwesh","version":23,"id":"35555","lastModified":"1301901967000","name":"Peggy Ahwesh","type":"Person","_key":"21290"} +{"label":"Martina Meijer Torr","version":21,"id":"35556","lastModified":"1301901792000","name":"Martina Meijer Torr","type":"Person","_key":"21291"} +{"label":"Sonja Mereu","version":21,"id":"35557","lastModified":"1301901499000","name":"Sonja Mereu","type":"Person","_key":"21292"} +{"label":"Scary Texas Movie","description":"No overview found.","id":"4230","runtime":72,"imdbId":"tt0128457","version":42,"lastModified":"1301905341000","studio":"Independent Film Distributors","genre":"Horror","title":"Scary Texas Movie","releaseDate":852076800000,"language":"en","type":"Movie","_key":"21293"} +{"label":"Brad Keller","version":21,"id":"35561","lastModified":"1301901681000","name":"Brad Keller","type":"Person","_key":"21294"} +{"label":"Mark Hanson","version":21,"id":"35566","lastModified":"1301940917000","name":"Mark Hanson","type":"Person","_key":"21295"} +{"label":"Katie Gratson","version":20,"id":"35567","lastModified":"1301901659000","name":"Katie Gratson","type":"Person","_key":"21296"} +{"label":"Mark Hankla","version":20,"id":"35568","lastModified":"1301901968000","name":"Mark Hankla","type":"Person","_key":"21297"} +{"label":"Marshall Prichard","version":20,"id":"35569","lastModified":"1301901968000","name":"Marshall Prichard","type":"Person","_key":"21298"} +{"label":"Martin Salisbury","version":20,"id":"35570","lastModified":"1301901968000","name":"Martin Salisbury","type":"Person","_key":"21299"} +{"label":"Robert F. Cawley","version":20,"id":"35572","lastModified":"1301901968000","name":"Robert F. Cawley","type":"Person","_key":"21300"} +{"label":"Lars Wyka","version":20,"id":"35573","lastModified":"1301901968000","name":"Lars Wyka","type":"Person","_key":"21301"} +{"label":"John Steakley","version":20,"id":"35562","lastModified":"1301901530000","name":"John Steakley","type":"Person","_key":"21302"} +{"label":"The Erotic Ghost","description":"No overview found.","id":"4231","runtime":72,"imdbId":"tt0256007","version":74,"lastModified":"1301904270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f78\/4bc919e7017a3c57fe009f78\/the-erotic-ghost-mid.jpg","studio":"Independent Film Distributors","genre":"Erotic","title":"The Erotic Ghost","releaseDate":978307200000,"language":"en","type":"Movie","_key":"21303"} +{"label":"Tammy Parks","version":26,"id":"35576","lastModified":"1301901501000","name":"Tammy Parks","type":"Person","_key":"21304"} +{"label":"Kimbo","version":20,"id":"35580","lastModified":"1301901967000","name":"Kimbo","type":"Person","_key":"21305"} +{"label":"Scream","description":"One year after the death of Sidney Prescott's mother, two students turn up gutted. When a serial killer appears, Sidney begins to suspect whether her mother's death and the two new deaths are related. No one is safe, as the killer begins to pick everyone off one by one.","id":"4232","runtime":111,"imdbId":"tt0117571","version":293,"lastModified":"1302061540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f96\/4bc919ed017a3c57fe009f96\/scream-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scream","releaseDate":850867200000,"language":"en","tagline":"Someone has taken their love of scary movies one step too far.","type":"Movie","_key":"21306"} +{"label":"Roger Jackson","version":42,"id":"51957","lastModified":"1302061539000","name":"Roger Jackson","type":"Person","_key":"21307"} +{"label":"David Booth","version":19,"id":"101312","lastModified":"1302061539000","name":"David Booth","type":"Person","_key":"21308"} +{"label":"Lawrence Hecht","version":19,"id":"101313","lastModified":"1302061539000","name":"Lawrence Hecht","type":"Person","_key":"21309"} +{"label":"Kevin Patrick Walls","version":32,"id":"10827","lastModified":"1302061539000","name":"Kevin Patrick Walls","type":"Person","_key":"21310"} +{"label":"Henry Winkler","version":45,"id":"31903","lastModified":"1301901251000","name":"Henry Winkler","type":"Person","_key":"21311"} +{"label":"Linda Blair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/138\/4c7e593e7b9aa10d96000138\/linda-blair-profile.jpg","version":50,"id":"37366","lastModified":"1302061540000","name":"Linda Blair","type":"Person","_key":"21312"} +{"label":"Scream 2","description":"Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati with long time friend Randy. Meanwhile, Gale Weathers best selling book on Sidney's life has now been made into a major motion picture. When two college students are killed in a theatre while watching the new film \"Stab,\" Sidney knows deep down that history is repeating itself.","id":"4233","runtime":120,"imdbId":"tt0120082","version":443,"lastModified":"1301901860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa3\/4bc919ef017a3c57fe009fa3\/scream-2-mid.jpg","studio":"Craven-Maddalena Films","genre":"Comedy","title":"Scream 2","releaseDate":881712000000,"language":"en","tagline":"Someone has taken their love of sequels one step too far.","type":"Movie","_key":"21313"} +{"label":"Scream 3","description":"A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, Stab 3. Sydney must face the demons of her past to stop the killer.","id":"4234","runtime":116,"imdbId":"tt0134084","version":280,"lastModified":"1301901482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/045\/4d4439057b9aa15bbb006045\/scream-3-mid.jpg","studio":"Craven-Maddalena Films","genre":"Comedy","title":"Scream 3","releaseDate":949536000000,"language":"en","tagline":"Someone has taken their love of trilogies one step too far.","type":"Movie","_key":"21314"} +{"label":"Scott Foley","version":27,"id":"35595","lastModified":"1301901742000","name":"Scott Foley","type":"Person","_key":"21315"} +{"label":"Deon Richmond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4d8beda57b9aa13aea002115\/deon-richmond-profile.jpg","version":26,"id":"35596","lastModified":"1301901494000","name":"Deon Richmond","type":"Person","_key":"21316"} +{"label":"Jenny McCarthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4c45c74a5e73d61efd000142\/jenny-mccarthy-profile.jpg","version":36,"id":"35597","lastModified":"1301901369000","name":"Jenny McCarthy","type":"Person","_key":"21317"} +{"label":"Matt Keeslar","version":33,"id":"35598","lastModified":"1301943859000","name":"Matt Keeslar","type":"Person","_key":"21318"} +{"label":"The Sicilian Clan","description":"No overview found.","id":"4235","runtime":125,"imdbId":"tt0064169","version":124,"lastModified":"1301903837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbe\/4bc919f4017a3c57fe009fbe\/le-clan-des-siciliens-mid.jpg","studio":"Les Productions Fox Europa","genre":"Crime","title":"The Sicilian Clan","releaseDate":-2678400000,"language":"en","type":"Movie","_key":"21319"} +{"label":"Irina Demick","version":24,"id":"35586","lastModified":"1301901678000","name":"Irina Demick","type":"Person","_key":"21320"} +{"label":"Danielle Volle","version":23,"id":"35587","lastModified":"1301901818000","name":"Danielle Volle","type":"Person","_key":"21321"} +{"label":"Karen Blanguernon","version":23,"id":"35589","lastModified":"1301901819000","name":"Karen Blanguernon","type":"Person","_key":"21322"} +{"label":"Philippe Baronnet","version":27,"id":"35590","lastModified":"1301901829000","name":"Philippe Baronnet","type":"Person","_key":"21323"} +{"label":"Yves Brainville","version":25,"id":"35591","lastModified":"1301901588000","name":"Yves Brainville","type":"Person","_key":"21324"} +{"label":"Edward Meeks","version":24,"id":"35592","lastModified":"1301902005000","name":"Edward Meeks","type":"Person","_key":"21325"} +{"label":"Sally Nesbitt","version":23,"id":"35593","lastModified":"1301901678000","name":"Sally Nesbitt","type":"Person","_key":"21326"} +{"label":"Freak Out","description":"No overview found.","id":"4237","runtime":92,"imdbId":"tt0329099","version":94,"lastModified":"1301906668000","studio":"Beyond Therapy Entertainment","genre":"Comedy","title":"Freak Out","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"21327"} +{"label":"Christian James","version":24,"id":"35599","lastModified":"1301901659000","name":"Christian James","type":"Person","_key":"21328"} +{"label":"James Heathcote","version":20,"id":"35602","lastModified":"1301901678000","name":"James Heathcote","type":"Person","_key":"21329"} +{"label":"Dan Palmer","version":22,"id":"35600","lastModified":"1301902019000","name":"Dan Palmer","type":"Person","_key":"21330"} +{"label":"Nicola Connell","version":20,"id":"35603","lastModified":"1301902005000","name":"Nicola Connell","type":"Person","_key":"21331"} +{"label":"Yazz Fetto","version":20,"id":"35604","lastModified":"1301901967000","name":"Yazz Fetto","type":"Person","_key":"21332"} +{"label":"Desmond Cullum-Jones","version":20,"id":"35605","lastModified":"1301901967000","name":"Desmond Cullum-Jones","type":"Person","_key":"21333"} +{"label":"Tony Rogers","version":20,"id":"35606","lastModified":"1301901659000","name":"Tony Rogers","type":"Person","_key":"21334"} +{"label":"The Erotic Mirror","description":"Amy and Bill are on a romantic getaway when they come across an old second-hand store. Amidst the clutter, Amy unearths a beautiful antique mirror and immediately is overcome by a deep inner desire to caress and explore her luscious body in ways she never thought possible. Amy quickly buys the mirror only to discover the ghostly legend of the sexually insatiable whorehouse madame trapped inside it. Powerless to control herself, Amy indulges her naughtiest fantasies when standing before the shimm","id":"4238","runtime":117,"imdbId":"tt0295973","version":58,"lastModified":"1301905341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb8\/4d7c1c4c7b9aa11a0c017bb8\/the-erotic-mirror-mid.jpg","studio":"Seduction Cinema","genre":"Drama","title":"The Erotic Mirror","releaseDate":1017100800000,"language":"en","type":"Movie","_key":"21335"} +{"label":"Laurie Wallace","version":28,"id":"35618","lastModified":"1301901568000","name":"Laurie Wallace","type":"Person","_key":"21336"} +{"label":"Major Dodge","version":22,"id":"35619","lastModified":"1301901447000","name":"Major Dodge","type":"Person","_key":"21337"} +{"label":"Ruby Larocca","version":51,"id":"35621","lastModified":"1301901571000","name":"Ruby Larocca","type":"Person","_key":"21338"} +{"label":"A.J. Khan","version":33,"id":"35622","lastModified":"1301901967000","name":"A.J. Khan","type":"Person","_key":"21339"} +{"label":"Lora Renee","version":25,"id":"35623","lastModified":"1301902005000","name":"Lora Renee","type":"Person","_key":"21340"} +{"label":"Mistress Rhiannon","version":19,"id":"98231","lastModified":"1301902995000","name":"Mistress Rhiannon","type":"Person","_key":"21341"} +{"label":"Misty Mundae","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/268\/4c311eb57b9aa16660000268\/misty-mundae-profile.jpg","version":87,"id":"94927","lastModified":"1301901323000","name":"Misty Mundae","type":"Person","_key":"21342"} +{"label":"Croque la vie","description":"No overview found.","id":"4239","runtime":105,"imdbId":"tt0082217","version":42,"lastModified":"1301906740000","studio":"Films A2","genre":"Comedy","title":"Croque la vie","releaseDate":374889600000,"language":"en","type":"Movie","_key":"21343"} +{"label":"Jean Charles Tacchella","version":22,"id":"35607","lastModified":"1301901957000","name":"Jean Charles Tacchella","type":"Person","_key":"21344"} +{"label":"Jacques Serres","version":20,"id":"35609","lastModified":"1301902017000","name":"Jacques Serres","type":"Person","_key":"21345"} +{"label":"Jean-Marc Thibault","version":26,"id":"35610","lastModified":"1301901790000","name":"Jean-Marc Thibault","type":"Person","_key":"21346"} +{"label":"Alix de Konopka","version":18,"id":"35611","lastModified":"1301901990000","name":"Alix de Konopka","type":"Person","_key":"21347"} +{"label":"Titanic 2000","description":"No overview found.","id":"4240","runtime":85,"imdbId":"tt0212559","version":80,"lastModified":"1301905285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc3\/4bc919f4017a3c57fe009fc3\/titanic-2000-mid.jpg","studio":"Independent Productions","genre":"Comedy","title":"Titanic 2000","releaseDate":915148800000,"language":"en","type":"Movie","_key":"21348"} +{"label":"Tina Krause","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd5\/4d7bffe47b9aa11a08017dd5\/tina-krause-profile.jpg","version":55,"id":"35634","lastModified":"1301901465000","name":"Tina Krause","type":"Person","_key":"21349"} +{"label":"Elizabeth Cintron","version":21,"id":"35635","lastModified":"1301901620000","name":"Elizabeth Cintron","type":"Person","_key":"21350"} +{"label":"Bob MacKay","version":21,"id":"35638","lastModified":"1301901903000","name":"Bob MacKay","type":"Person","_key":"21351"} +{"label":"Suzanne Lenore","version":19,"id":"99190","lastModified":"1301903053000","name":"Suzanne Lenore","type":"Person","_key":"21352"} +{"label":"Jasi Cotton Lanier","version":32,"id":"97736","lastModified":"1301902317000","name":"Jasi Cotton Lanier","type":"Person","_key":"21353"} +{"label":"William Hellfire","version":61,"id":"98967","lastModified":"1301902678000","name":"William Hellfire","type":"Person","_key":"21354"} +{"label":"Joey Smack","version":29,"id":"98969","lastModified":"1301902533000","name":"Joey Smack","type":"Person","_key":"21355"} +{"label":"Paige Turner","version":19,"id":"99191","lastModified":"1301902969000","name":"Paige Turner","type":"Person","_key":"21356"} +{"label":"Fred Mekeel","version":21,"id":"35649","lastModified":"1301901742000","name":"Fred Mekeel","type":"Person","_key":"21357"} +{"label":"Dean Paul","version":26,"id":"98740","lastModified":"1301902668000","name":"Dean Paul","type":"Person","_key":"21358"} +{"label":"Visitor Q","description":"A father, who is a failed former television reporter tries to mount a documentary about violence and sex among youths. He proceeds to have sex with his daughter who is now a prostitute and films his son being humiliated and hit by classmates. \"Q\", a perfect stranger somehow gets involved and enter the bizzare family who's son beats his mom, who in turn is also a prostitute and a heroin addict","id":"4241","runtime":84,"imdbId":"tt0290329","version":307,"lastModified":"1301904338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcc\/4bc919f5017a3c57fe009fcc\/bijita-q-mid.jpg","studio":"Alphaville Films","genre":"Comedy","title":"Visitor Q","releaseDate":978307200000,"language":"en","type":"Movie","_key":"21359"} +{"label":"Ken'ichi End\u00f4","version":38,"id":"35642","lastModified":"1301901461000","name":"Ken'ichi End\u00f4","type":"Person","_key":"21360"} +{"label":"Shungiku Uchida","version":27,"id":"35643","lastModified":"1301901499000","name":"Shungiku Uchida","type":"Person","_key":"21361"} +{"label":"Kazushi Watanabe","version":28,"id":"35644","lastModified":"1301901568000","name":"Kazushi Watanabe","type":"Person","_key":"21362"} +{"label":"Jun Mut\u00f4","version":27,"id":"35645","lastModified":"1301901499000","name":"Jun Mut\u00f4","type":"Person","_key":"21363"} +{"label":"Fujiko","version":33,"id":"35646","lastModified":"1301901661000","name":"Fujiko","type":"Person","_key":"21364"} +{"label":"Sh\u00f4ko Nakahara","version":27,"id":"35647","lastModified":"1301901659000","name":"Sh\u00f4ko Nakahara","type":"Person","_key":"21365"} +{"label":"Ikko Suzuki","version":28,"id":"35648","lastModified":"1301901682000","name":"Ikko Suzuki","type":"Person","_key":"21366"} +{"label":"Scary Movie","description":"This nineteen ninety one film was then nineteen year old director Daniel Erickson's first full length feature film.Producer Keith Brunson teamed up with co-producer\/director\/writer Erickson to bring his vision to life.They formed the production company Generic Movies LTD.to produce their one and only film. Filmed entirely in and around the Austin,Texas area","id":"4242","runtime":88,"imdbId":"tt0138078","version":92,"lastModified":"1301905550000","studio":"Brillstein-Grey Entertainment","genre":"Horror","title":"Scary Movie","releaseDate":599616000000,"language":"en","type":"Movie","_key":"21367"} +{"label":"Daniel Erickson","version":22,"id":"35650","lastModified":"1301901967000","name":"Daniel Erickson","type":"Person","_key":"21368"} +{"label":"Jason Waller","version":20,"id":"35683","lastModified":"1301901967000","name":"Jason Waller","type":"Person","_key":"21369"} +{"label":"Suzanne Aldrich","version":20,"id":"35684","lastModified":"1301901659000","name":"Suzanne Aldrich","type":"Person","_key":"21370"} +{"label":"Virginia Pratt","version":20,"id":"35685","lastModified":"1301901792000","name":"Virginia Pratt","type":"Person","_key":"21371"} +{"label":"Mark Voges","version":21,"id":"35652","lastModified":"1301901967000","name":"Mark Voges","type":"Person","_key":"21372"} +{"label":"Butch Patrick","version":25,"id":"35686","lastModified":"1301901967000","name":"Butch Patrick","type":"Person","_key":"21373"} +{"label":"Zane Rockenbaugh","version":20,"id":"35687","lastModified":"1301901819000","name":"Zane Rockenbaugh","type":"Person","_key":"21374"} +{"label":"Ev Lunning","version":20,"id":"35688","lastModified":"1301901792000","name":"Ev Lunning","type":"Person","_key":"21375"} +{"label":"Das Herz ist ein Dunkler Wald","description":"No overview found.","id":"4243","runtime":86,"imdbId":"tt0975676","version":62,"lastModified":"1301905716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd1\/4bc919f5017a3c57fe009fd1\/das-herz-ist-ein-dunkler-wald-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Das Herz ist ein Dunkler Wald","releaseDate":1198713600000,"language":"en","type":"Movie","_key":"21376"} +{"label":"Franziska Petri","version":23,"id":"35663","lastModified":"1301901286000","name":"Franziska Petri","type":"Person","_key":"21377"} +{"label":"The Kid","description":"Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly -- with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.","id":"4244","runtime":104,"imdbId":"tt0219854","version":135,"lastModified":"1301903169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b06\/4d4f1b067b9aa13aaf00ab06\/the-kid-mid.jpg","studio":"Buena Vista","genre":"Comedy","title":"The Kid","releaseDate":962928000000,"language":"en","tagline":"Nobody ever grows up quite like they imagined.","type":"Movie","_key":"21378"} +{"label":"Spencer Breslin","version":60,"id":"35654","lastModified":"1301901148000","name":"Spencer Breslin","type":"Person","_key":"21379"} +{"label":"Susan Dalian","version":26,"id":"35656","lastModified":"1301902029000","name":"Susan Dalian","type":"Person","_key":"21380"} +{"label":"Juanita Moore","version":31,"id":"35658","lastModified":"1301902031000","name":"Juanita Moore","type":"Person","_key":"21381"} +{"label":"Babeck","description":"No overview found.","id":"4245","runtime":210,"imdbId":"tt0062542","version":53,"lastModified":"1301904446000","studio":"ZDF","genre":"Crime","title":"Babeck","releaseDate":-32832000000,"language":"en","type":"Movie","_key":"21382"} +{"label":"Helmut Lohner","version":22,"id":"35667","lastModified":"1301901434000","name":"Helmut Lohner","type":"Person","_key":"21383"} +{"label":"Helmut K\u00e4utner","version":32,"id":"26436","lastModified":"1301901356000","name":"Helmut K\u00e4utner","type":"Person","_key":"21384"} +{"label":"Walter Richter","version":20,"id":"26231","lastModified":"1301901620000","name":"Walter Richter","type":"Person","_key":"21385"} +{"label":"Friedrich Joloff","version":24,"id":"35669","lastModified":"1301901742000","name":"Friedrich Joloff","type":"Person","_key":"21386"} +{"label":"Charles Regnier","version":26,"id":"35670","lastModified":"1301902029000","name":"Charles Regnier","type":"Person","_key":"21387"} +{"label":"Walter Morath","version":20,"id":"35671","lastModified":"1301901678000","name":"Walter Morath","type":"Person","_key":"21388"} +{"label":"Kai Fischer","version":20,"id":"35672","lastModified":"1301901918000","name":"Kai Fischer","type":"Person","_key":"21389"} +{"label":"Raimund Harmstorf","version":31,"id":"40568","lastModified":"1301901498000","name":"Raimund Harmstorf","type":"Person","_key":"21390"} +{"label":"Paul Verhoeven","version":19,"birthday":"-2162509200000","id":"121013","lastModified":"1301902784000","name":"Paul Verhoeven","type":"Person","_key":"21391"} +{"label":"Wolfgang Becker","version":23,"id":"35673","lastModified":"1301901954000","name":"Wolfgang Becker","type":"Person","_key":"21392"} +{"label":"Scary Movie","description":"No overview found.","id":"4246","version":387,"lastModified":"1301903899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4ce0ffa85e73d60f6c0002dc\/scary-movie-mid.jpg","genre":"Comedy","title":"Scary Movie","language":"en","type":"Movie","_key":"21393"} +{"label":"Scary Movie","description":"Following on the heels of popular teen-scream horror movies, with uproarious comedy and biting satire. Marlon and Shawn Wayans, Shannon Elizabeth and Carmen Electra pitch in to skewer some of Hollywood's biggest blockbusters, including Scream, I Know What You Did Last Summer, The Matrix, American Pie and The Blair Witch Project.","id":"4247","runtime":88,"imdbId":"tt0175142","version":406,"lastModified":"1301902886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4cddbb0f7b9aa13c75000055\/scary-movie-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scary Movie","releaseDate":962928000000,"language":"en","tagline":"No mercy. No shame. No sequel.","type":"Movie","_key":"21394"} +{"label":"Keenen Ivory Wayans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/465\/4d814d5f7b9aa12db7001465\/keenen-ivory-wayans-profile.jpg","biography":"<FONT size=3><B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\">Keenen Ivory Wayans<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\"> was born on June 8, 1958 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:City w:st=\"on\"><st1:place w:st=\"on\">New York City<\/st1:place><\/st1:City>. An actor, comedian, director and writer, he is best known as the host and creator of the FOX sketch comedy series <I style=\"mso-bidi-font-style:","version":71,"id":"35689","lastModified":"1301927020000","name":"Keenen Ivory Wayans","type":"Person","_key":"21395"} +{"label":"Frank B. Moore","version":24,"id":"35702","lastModified":"1301901307000","name":"Frank B. Moore","type":"Person","_key":"21396"} +{"label":"Mark McConchie","version":24,"id":"35703","lastModified":"1301901338000","name":"Mark McConchie","type":"Person","_key":"21397"} +{"label":"Karen Kruper","version":25,"id":"35704","lastModified":"1301901363000","name":"Karen Kruper","type":"Person","_key":"21398"} +{"label":"Regina Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55c\/4cf1fb545e73d61e3e00055c\/regina-hall-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Regina Hall<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born on December 12, 1970 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Washington<\/st1:City>, <st1:State w:st=\"on\">D.C.<\/st1:State><\/st1:place> She graduated from <st1:place w:st=\"on\"><st1:PlaceName w:st=\"on\">New York<\/st1:PlaceNam","version":71,"id":"35705","lastModified":"1301901119000","name":"Regina Hall","type":"Person","_key":"21399"} +{"label":"Scary Movie 2","description":"While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.","id":"4248","runtime":83,"imdbId":"tt0257106","version":296,"lastModified":"1301902296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e0\/4ce8e22a5e73d6258d0003e0\/scary-movie-2-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scary Movie 2","releaseDate":994204800000,"language":"en","tagline":"No More Mercy. No More Shame. No More Sequels - Honest! - We Lied.","type":"Movie","_key":"21400"} +{"label":"James DeBello","version":38,"id":"35768","lastModified":"1301901228000","name":"James DeBello","type":"Person","_key":"21401"} +{"label":"Shawn Wayans","version":67,"id":"35690","lastModified":"1301901243000","name":"Shawn Wayans","type":"Person","_key":"21402"} +{"label":"Christopher Masterson","version":36,"id":"35769","lastModified":"1301901290000","name":"Christopher Masterson","type":"Person","_key":"21403"} +{"label":"The Comeback","description":"No overview found.","id":"4249","runtime":78,"imdbId":"tt0299690","version":81,"lastModified":"1301904959000","genre":"Documentary","title":"The Comeback","releaseDate":326937600000,"language":"en","type":"Movie","_key":"21404"} +{"label":"Geoff Bennett","version":21,"id":"35706","lastModified":"1301901568000","name":"Geoff Bennett","type":"Person","_key":"21405"} +{"label":"Mike Mentzer","version":20,"id":"35707","lastModified":"1301901499000","name":"Mike Mentzer","type":"Person","_key":"21406"} +{"label":"Frank Zane","version":22,"id":"35721","lastModified":"1301901568000","name":"Frank Zane","type":"Person","_key":"21407"} +{"label":"Danny Padilla","version":20,"id":"35713","lastModified":"1301901792000","name":"Danny Padilla","type":"Person","_key":"21408"} +{"label":"Samir Bannout","version":20,"id":"35708","lastModified":"1301901792000","name":"Samir Bannout","type":"Person","_key":"21409"} +{"label":"Boyer Coe","version":20,"id":"35709","lastModified":"1301901792000","name":"Boyer Coe","type":"Person","_key":"21410"} +{"label":"Ed Corney","version":21,"id":"35711","lastModified":"1301901839000","name":"Ed Corney","type":"Person","_key":"21411"} +{"label":"Chris Dickerson","version":20,"id":"35712","lastModified":"1301901839000","name":"Chris Dickerson","type":"Person","_key":"21412"} +{"label":"Bill Pearl","version":20,"id":"35714","lastModified":"1301901792000","name":"Bill Pearl","type":"Person","_key":"21413"} +{"label":"Tom Platz","version":21,"id":"35715","lastModified":"1301901659000","name":"Tom Platz","type":"Person","_key":"21414"} +{"label":"Dennis Tinerino","version":18,"id":"35716","lastModified":"1301901811000","name":"Dennis Tinerino","type":"Person","_key":"21415"} +{"label":"Casey Viator","version":20,"id":"35717","lastModified":"1301901792000","name":"Casey Viator","type":"Person","_key":"21416"} +{"label":"Roger Walker","version":20,"id":"35718","lastModified":"1301901792000","name":"Roger Walker","type":"Person","_key":"21417"} +{"label":"Ken Waller","version":21,"id":"35719","lastModified":"1301901792000","name":"Ken Waller","type":"Person","_key":"21418"} +{"label":"Joe Weider","version":21,"id":"35720","lastModified":"1301901659000","name":"Joe Weider","type":"Person","_key":"21419"} +{"label":"Helmut Riedmeier","version":21,"id":"41613","lastModified":"1301901967000","name":"Helmut Riedmeier","type":"Person","_key":"21420"} +{"label":"Pornorama","description":"No overview found.","id":"4250","runtime":94,"imdbId":"tt0808425","homepage":"http:\/\/www.pornorama.film.de\/","version":57,"lastModified":"1301902663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4c39e11b5e73d671cf000142\/pornorama-mid.jpg","studio":"Constantin Film","genre":"Comedy","title":"Pornorama","releaseDate":1192060800000,"language":"en","type":"Movie","_key":"21421"} +{"label":"Elke Winkens","version":21,"id":"36320","lastModified":"1301901415000","name":"Elke Winkens","type":"Person","_key":"21422"} +{"label":"Valentina Lodovini","version":33,"id":"36322","lastModified":"1301901956000","name":"Valentina Lodovini","type":"Person","_key":"21423"} +{"label":"Leonie Brill","version":22,"id":"36323","lastModified":"1301904136000","name":"Leonie Brill","type":"Person","_key":"21424"} +{"label":"Martin Glade","version":21,"id":"36324","lastModified":"1301901979000","name":"Martin Glade","type":"Person","_key":"21425"} +{"label":"Christian N\u00e4the","version":26,"id":"36325","lastModified":"1301901451000","name":"Christian N\u00e4the","type":"Person","_key":"21426"} +{"label":"Michael Sch\u00f6nborn","version":22,"id":"36326","lastModified":"1301901666000","name":"Michael Sch\u00f6nborn","type":"Person","_key":"21427"} +{"label":"Patrick Finger","version":20,"id":"36327","lastModified":"1301901697000","name":"Patrick Finger","type":"Person","_key":"21428"} +{"label":"Sandra Ferrara","version":20,"id":"36328","lastModified":"1301901697000","name":"Sandra Ferrara","type":"Person","_key":"21429"} +{"label":"Heinz Badewitz","version":21,"id":"36329","lastModified":"1301901979000","name":"Heinz Badewitz","type":"Person","_key":"21430"} +{"label":"Lisa Potthoff","version":21,"id":"52010","lastModified":"1301901980000","name":"Lisa Potthoff","type":"Person","_key":"21431"} +{"label":"Veer-Zaara","description":"Set against the backdrop of conflict between India and Pakistan, this star-crossed romance follows the unfortunate love story of an Indian Air Force Sqadron Leader Veer Pratap Singh, and a Pakistani woman, Zaara Haayat Khan, who are separated for about twenty years. The story deepens with the arrival of Saamiya, a Pakistani lawyer, who finds Veer in prison, and upon listening to their story...","id":"4251","runtime":192,"imdbId":"tt0420332","version":166,"lastModified":"1301903692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea9\/4d66d39f7b9aa1297e002ea9\/veer-zaara-mid.jpg","studio":"Yash Raj Films","genre":"Drama","title":"Veer-Zaara","releaseDate":1100217600000,"language":"en","tagline":"A Love Legend","type":"Movie","_key":"21432"} +{"label":"Yash Chopra","version":42,"id":"35770","lastModified":"1301901463000","name":"Yash Chopra","type":"Person","_key":"21433"} +{"label":"Preity Zinta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/146\/4c4f29cf5e73d62ec1000146\/preity-zinta-profile.jpg","version":40,"id":"35745","lastModified":"1301901197000","name":"Preity Zinta","type":"Person","_key":"21434"} +{"label":"Rani Mukherjee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12e\/4c4f02647b9aa1326d00012e\/rani-mukherjee-profile.jpg","version":51,"birthday":"259282800000","id":"35776","birthplace":"Kolkata, West Bengal, India","lastModified":"1301901293000","name":"Rani Mukherjee","type":"Person","_key":"21435"} +{"label":"Amitabh Bachchan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/122\/4c4f00e97b9aa1326c000122\/amitabh-bachchan-profile.jpg","biography":"Amitabh Bachchan (Hindi: \u0905\u092e\u093f\u0924\u093e\u092d \u092c\u091a\u094d\u091a\u0928, born Amitabh Harivansh Bachchan on 11 October 1942), is an Indian film actor. He first gained popularity in the early 1970s as the \"angry young man\" of Bollywood cinema, and has since become one of the most prominent figures in the history of Indian cinema.[1][2]\n\nBachchan has won numerous major awards in his career, including three National Film Awards and thirteen Filmfare Awards. He holds the record for most number of Best Actor nominations at the Filmfa","version":77,"birthday":"-859168800000","id":"35780","birthplace":"Allahabad, Uttar Pradesh, India","lastModified":"1301901232000","name":"Amitabh Bachchan","type":"Person","_key":"21436"} +{"label":"Hema Malini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41e\/4d2243e77b9aa1736b00341e\/hema-malini-profile.jpg","version":26,"id":"35781","lastModified":"1301901415000","name":"Hema Malini","type":"Person","_key":"21437"} +{"label":"Divya Dutta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae0\/4d21578b5e73d66b27002ae0\/divya-dutta-profile.jpg","version":29,"id":"35778","lastModified":"1301901424000","name":"Divya Dutta","type":"Person","_key":"21438"} +{"label":"Kiron Kher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/add\/4d217db27b9aa17373002add\/kiron-kher-profile.jpg","version":38,"id":"35777","lastModified":"1301901276000","name":"Kiron Kher","type":"Person","_key":"21439"} +{"label":"Manoj Bajpai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dda\/4d2243f07b9aa1289f000dda\/manoj-bajpai-profile.jpg","version":28,"id":"35782","lastModified":"1301901422000","name":"Manoj Bajpai","type":"Person","_key":"21440"} +{"label":"Zohra Sehgal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e5\/4d34c3eb5e73d6334f0093e5\/zohra-sehgal-profile.jpg","version":26,"id":"35783","lastModified":"1301901670000","name":"Zohra Sehgal","type":"Person","_key":"21441"} +{"label":"Akhilendra Mishra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ad\/4d34c3e25e73d633490093ad\/akhilendra-mishra-profile.jpg","version":26,"id":"85724","lastModified":"1301901844000","name":"Akhilendra Mishra","type":"Person","_key":"21442"} +{"label":"Chalte Chalte","description":"Priya Chopra is a fashion designer and Raj Mathur owns a small trucking company. They meet on the road, quarrel, and then fall for each other. Priya, who is already engaged, must decide whether she will marry her fianc\u00e9 or leave him for Raj. Love triumphs, Raj and Priya marry and then struggle against adversity. They quarrel, separate, then reconcile.","id":"4252","runtime":167,"imdbId":"tt0346723","version":220,"lastModified":"1301905649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4c4f9e3a5e73d6303700007e\/4252-mid.jpg","studio":"Dreamz Unlimited","genre":"Comedy","title":"Chalte Chalte","releaseDate":1055376000000,"language":"en","tagline":"Opposites attract","type":"Movie","_key":"21443"} +{"label":"Aziz Mirza","version":24,"id":"35805","lastModified":"1301901561000","name":"Aziz Mirza","type":"Person","_key":"21444"} +{"label":"Jas Arora","version":20,"id":"35815","lastModified":"1301901540000","name":"Jas Arora","type":"Person","_key":"21445"} +{"label":"Satish Shah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5c\/4d2179f17b9aa1736b002a5c\/satish-shah-profile.jpg","version":36,"id":"35759","lastModified":"1301901413000","name":"Satish Shah","type":"Person","_key":"21446"} +{"label":"Jayshree T.","version":20,"id":"35816","lastModified":"1301901903000","name":"Jayshree T.","type":"Person","_key":"21447"} +{"label":"Rajeev Verma","version":22,"id":"35818","lastModified":"1301901643000","name":"Rajeev Verma","type":"Person","_key":"21448"} +{"label":"Johnny Lever","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b4\/4d2251d17b9aa173730034b4\/johnny-lever-profile.jpg","version":46,"id":"35819","lastModified":"1301901443000","name":"Johnny Lever","type":"Person","_key":"21449"} +{"label":"Suresh Bhagwat","version":20,"id":"35820","lastModified":"1301901903000","name":"Suresh Bhagwat","type":"Person","_key":"21450"} +{"label":"Masood Akhtar","version":24,"id":"35821","lastModified":"1301901938000","name":"Masood Akhtar","type":"Person","_key":"21451"} +{"label":"Hum Tum","description":"Hum Tum (Hindi: \u0939\u092e \u0924\u0941\u092e, translation: You and Me, Urdu: \u06c1\u0645 \u062a\u0645) is a Bollywood movie, released in India on May 28, 2004, directed by Kunal Kohli and produced by Aditya Chopra and Yash Chopra. The movie stars Saif Ali Khan and Rani Mukerji in the lead roles.","id":"4253","runtime":142,"imdbId":"tt0378072","version":166,"lastModified":"1301905667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4bc91a04017a3c57fe00a042\/4253-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Hum Tum","releaseDate":1085702400000,"language":"en","type":"Movie","_key":"21452"} +{"label":"Kunal Kohli","version":31,"id":"35784","lastModified":"1301901417000","name":"Kunal Kohli","type":"Person","_key":"21453"} +{"label":"Saif Ali Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4bf12809017a3c320b00012d\/saif-ali-khan-profile.jpg","biography":"Saif Ali Khan (Hindi: \u0938\u0948\u092b\u093c \u0905\u0932\u0940 \u0916\u093c\u093e\u0928, Bengali: \u09b8\u09be\u0987\u09ab \u0986\u09b2\u09bf \u0996\u09be\u09a8, Urdu: \u0633\u06cc\u0641 \u0639\u0644\u06cc \u062e\u0627\u0646, pronounced [s\u025b\u02d0f \u02c8\u0259li\u02d0 \u02c8xa\u02d0n]; born 16 August 1970 in New Delhi, India) is an Indian actor in Bollywood films. He is the son of the Nawab of Pataudi, Mansoor Ali Khan Pataudi, and the actress Sharmila Tagore. He has two sisters; actress Saba Ali Khan and Soha Ali Khan. He is the heir apparent to the headships of both the royal houses of Bhopal and Pataudi.\n\nKhan made his debut in 1992 with Parampara. He had his first ","version":46,"birthday":"19609200000","id":"35747","lastModified":"1301901360000","name":"Saif Ali Khan","type":"Person","_key":"21454"} +{"label":"Rati Agnihotri","version":23,"id":"35790","lastModified":"1301901294000","name":"Rati Agnihotri","type":"Person","_key":"21455"} +{"label":"Rishi Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fe\/4d2156945e73d659b70003fe\/rishi-kapoor-profile.jpg","version":44,"id":"35791","lastModified":"1301901467000","name":"Rishi Kapoor","type":"Person","_key":"21456"} +{"label":"Jimmy Shergill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6b\/4d21ff1f7b9aa1280f000a6b\/jimmy-shergill-profile.jpg","version":43,"id":"35792","lastModified":"1301901303000","name":"Jimmy Shergill","type":"Person","_key":"21457"} +{"label":"Abhishek Bachchan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f4\/4be1ca6b017a3c35b40007f4\/abhishek-bachchan-profile.jpg","version":70,"id":"35793","lastModified":"1301901172000","name":"Abhishek Bachchan","type":"Person","_key":"21458"} +{"label":"Shenaz Treasurywala","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4c4f018c7b9aa1326c000126\/shenaz-treasurywala-profile.jpg","version":24,"id":"35794","lastModified":"1301901462000","name":"Shenaz Treasurywala","type":"Person","_key":"21459"} +{"label":"Isha Koppikar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a87\/4d2a360c5e73d626be003a87\/isha-koppikar-profile.jpg","version":35,"id":"35795","lastModified":"1301901411000","name":"Isha Koppikar","type":"Person","_key":"21460"} +{"label":"Kal Ho Naa Ho","description":"Naina is 23, going on 50, living in an Indian neighbourhood in New York City. She is serious, overly cares for her family and has no time for parties, fun or herself. Aman arrives and much to Naina's irritation, insists on interfering in her life by pushing Naina into doing things she would never dream of. He her till she smiles. He conspires with friend Rohit to find her happiness. ","id":"4254","runtime":186,"imdbId":"tt0347304","version":168,"lastModified":"1301904249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/057\/4bc91a06017a3c57fe00a057\/4254-mid.jpg","studio":"Dharma Productions","genre":"Comedy","title":"Kal Ho Naa Ho","releaseDate":1069545600000,"language":"en","type":"Movie","_key":"21461"} +{"label":"Nikhil Advani","version":23,"id":"35735","lastModified":"1301901927000","name":"Nikhil Advani","type":"Person","_key":"21462"} +{"label":"Jaya Bhaduri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b5d\/4d21a1457b9aa1736b002b5d\/jaya-bhaduri-profile.jpg","version":30,"id":"35743","lastModified":"1301901350000","name":"Jaya Bhaduri","type":"Person","_key":"21463"} +{"label":"Sushma Seth","version":22,"id":"35749","lastModified":"1301902025000","name":"Sushma Seth","type":"Person","_key":"21464"} +{"label":"Reema Lagoo","version":22,"id":"35750","lastModified":"1301901953000","name":"Reema Lagoo","type":"Person","_key":"21465"} +{"label":"Delnaaz Paul","version":23,"id":"35752","lastModified":"1301902032000","name":"Delnaaz Paul","type":"Person","_key":"21466"} +{"label":"Sonali Bendre","version":20,"id":"35754","lastModified":"1301902026000","name":"Sonali Bendre","type":"Person","_key":"21467"} +{"label":"Simone Singh","version":22,"id":"35755","lastModified":"1301901927000","name":"Simone Singh","type":"Person","_key":"21468"} +{"label":"Rajpal Yadav","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d68\/4d2239c17b9aa12823000d68\/rajpal-yadav-profile.jpg","version":55,"id":"35756","lastModified":"1301901455000","name":"Rajpal Yadav","type":"Person","_key":"21469"} +{"label":"Athit Naik","version":20,"id":"35757","lastModified":"1301902004000","name":"Athit Naik","type":"Person","_key":"21470"} +{"label":"Princey Shukla","version":18,"id":"35758","lastModified":"1301901990000","name":"Princey Shukla","type":"Person","_key":"21471"} +{"label":"Kamini Khanna","version":22,"id":"35761","lastModified":"1301901927000","name":"Kamini Khanna","type":"Person","_key":"21472"} +{"label":"Shoma Anand","version":21,"id":"35762","lastModified":"1301901762000","name":"Shoma Anand","type":"Person","_key":"21473"} +{"label":"Sanjay Kapoor","version":21,"id":"35763","lastModified":"1301901484000","name":"Sanjay Kapoor","type":"Person","_key":"21474"} +{"label":"Sulabha Arya","version":21,"id":"35765","lastModified":"1301901927000","name":"Sulabha Arya","type":"Person","_key":"21475"} +{"label":"Ketki Dave","version":19,"id":"35767","lastModified":"1301901927000","name":"Ketki Dave","type":"Person","_key":"21476"} +{"label":"The Party at Kitty and Stud's","description":"No overview found.","id":"4255","runtime":71,"imdbId":"tt0065904","trailer":"http:\/\/www.youtube.com\/watch?v=qFYUTMQUD7U","version":55,"lastModified":"1301906754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4c5aadad7b9aa151f6000507\/the-party-at-kitty-and-stud-s-mid.jpg","genre":"Erotic","title":"The Party at Kitty and Stud's","releaseDate":3456000000,"language":"en","type":"Movie","_key":"21477"} +{"label":"Morton Lewis","version":20,"id":"35723","lastModified":"1301901819000","name":"Morton Lewis","type":"Person","_key":"21478"} +{"label":"Henrietta Holm","version":20,"id":"35727","lastModified":"1301901583000","name":"Henrietta Holm","type":"Person","_key":"21479"} +{"label":"Nicholas Warren","version":20,"id":"35728","lastModified":"1301901792000","name":"Nicholas Warren","type":"Person","_key":"21480"} +{"label":"Frank Micelli","version":20,"id":"35729","lastModified":"1301901819000","name":"Frank Micelli","type":"Person","_key":"21481"} +{"label":"Jodi Van Prang","version":20,"id":"35730","lastModified":"1301901967000","name":"Jodi Van Prang","type":"Person","_key":"21482"} +{"label":"Barbara Strom","version":20,"id":"35731","lastModified":"1301901967000","name":"Barbara Strom","type":"Person","_key":"21483"} +{"label":"Janet Banzet","version":20,"id":"35732","lastModified":"1301901967000","name":"Janet Banzet","type":"Person","_key":"21484"} +{"label":"Scary Movie 3","description":"In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.","id":"4256","runtime":84,"imdbId":"tt0306047","trailer":"http:\/\/www.youtube.com\/watch?v=fGTrKmkceiE","version":194,"lastModified":"1301906831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4bc91a0a017a3c57fe00a076\/scary-movie-3-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scary Movie 3","releaseDate":1066608000000,"language":"en","tagline":"Great trilogies come in threes.","type":"Movie","_key":"21485"} +{"label":"Marny Eng","version":24,"id":"35799","lastModified":"1301901540000","name":"Marny Eng","type":"Person","_key":"21486"} +{"label":"Jianna Ballard","version":27,"id":"35800","lastModified":"1301901568000","name":"Jianna Ballard","type":"Person","_key":"21487"} +{"label":"Scary Movie 4","description":"Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.","id":"4257","runtime":89,"imdbId":"tt0362120","trailer":"http:\/\/www.youtube.com\/watch?v=h0zAlXr1UOs","version":282,"lastModified":"1301901994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bc91a0c017a3c57fe00a092\/scary-movie-4-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scary Movie 4","releaseDate":1144800000000,"language":"en","tagline":"Bury the grudge. Burn the village. See the saw.","type":"Movie","_key":"21488"} +{"label":"Shaquille O'Neal","version":38,"id":"35806","lastModified":"1301901322000","name":"Shaquille O'Neal","type":"Person","_key":"21489"} +{"label":"Scary Movie 5","description":"No overview found.","id":"4258","runtime":90,"imdbId":"tt0795461","version":51,"lastModified":"1301904270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/097\/4bc91a0d017a3c57fe00a097\/scary-movie-5-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Scary Movie 5","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"21490"} +{"label":"Donna Harrison","version":16,"id":"69053","lastModified":"1301902376000","name":"Donna Harrison","type":"Person","_key":"21491"} +{"label":"Sophie Monk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ed\/4d05a0005e73d621a30032ed\/sophie-monk-profile.jpg","version":35,"id":"52854","lastModified":"1301901199000","name":"Sophie Monk","type":"Person","_key":"21492"} +{"label":"Alyson Michalk","version":16,"id":"69800","lastModified":"1301902376000","name":"Alyson Michalk","type":"Person","_key":"21493"} +{"label":"Making 'Scary Movie 3'","description":"No overview found.","id":"4259","runtime":23,"imdbId":"tt0425219","version":44,"lastModified":"1301907425000","studio":"Dimension","genre":"Documentary","title":"Making 'Scary Movie 3'","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"21494"} +{"label":"Paul Becker","version":20,"id":"35813","lastModified":"1301901499000","name":"Paul Becker","type":"Person","_key":"21495"} +{"label":"The Perfect Scary Movie","description":"No overview found.","id":"4260","runtime":102,"imdbId":"tt0487936","version":106,"lastModified":"1301908606000","studio":"Visual Voodoo","genre":"Documentary","title":"The Perfect Scary Movie","releaseDate":1130544000000,"language":"en","type":"Movie","_key":"21496"} +{"label":"Toby Dye","version":21,"id":"35814","lastModified":"1301901792000","name":"Toby Dye","type":"Person","_key":"21497"} +{"label":"Darrell Wilkins","version":20,"id":"35823","lastModified":"1301901967000","name":"Darrell Wilkins","type":"Person","_key":"21498"} +{"label":"Alice Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/153\/4bee6f7e017a3c4589000153\/alice-cooper-profile.jpg","version":41,"id":"35824","lastModified":"1301901568000","name":"Alice Cooper","type":"Person","_key":"21499"} +{"label":"Richard O'Brien","version":24,"id":"118484","lastModified":"1301902904000","name":"Richard O'Brien","type":"Person","_key":"21500"} +{"label":"Nous n'irons plus au bois","description":"No overview found.","id":"4261","runtime":90,"imdbId":"tt0187359","version":56,"lastModified":"1301904045000","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Drama","title":"Nous n'irons plus au bois","releaseDate":22291200000,"language":"en","type":"Movie","_key":"21501"} +{"label":"Siegfried Rauch","version":38,"id":"35826","lastModified":"1301901353000","name":"Siegfried Rauch","type":"Person","_key":"21502"} +{"label":"Jacques Higelin","version":20,"id":"35827","lastModified":"1301901819000","name":"Jacques Higelin","type":"Person","_key":"21503"} +{"label":"Sylvain Joubert","version":20,"id":"35828","lastModified":"1301901819000","name":"Sylvain Joubert","type":"Person","_key":"21504"} +{"label":"Vania Vilers","version":23,"id":"35829","lastModified":"1301901530000","name":"Vania Vilers","type":"Person","_key":"21505"} +{"label":"Henri D\u00e9us","version":21,"id":"35830","lastModified":"1301901659000","name":"Henri D\u00e9us","type":"Person","_key":"21506"} +{"label":"Georges Dumoulin","version":20,"id":"35833","lastModified":"1301901568000","name":"Georges Dumoulin","type":"Person","_key":"21507"} +{"label":"La rupture","description":"Helene Regnier's husband Charles, who is mentally ill, injures their son Michel in a rage. Charles moves back in with his wealthy and manipulative parents, who blame Helene for their son's condition and vow to win custody of Michel. While the boy is in hospital, Helene rents a room in a boarding house nearby. The Regniers hire Paul Thomas, a family acquaintance who needs money, to find dirt on Helene before the court hearing on custody. Paul moves into the boarding house and, with the help of hi","id":"4266","runtime":124,"imdbId":"tt0066318","version":121,"lastModified":"1301906925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57a\/4d4831ab5e73d6108f00157a\/la-rupture-mid.jpg","studio":"Les Films de la Bo\u00e9tie","genre":"Crime","title":"La rupture","releaseDate":20476800000,"language":"en","type":"Movie","_key":"21508"} +{"label":"Marguerite Cassan","version":20,"id":"35877","lastModified":"1301901620000","name":"Marguerite Cassan","type":"Person","_key":"21509"} +{"label":"Suzy Falk","version":25,"id":"35878","lastModified":"1301901540000","name":"Suzy Falk","type":"Person","_key":"21510"} +{"label":"Margo Lion","version":20,"id":"35879","lastModified":"1301901477000","name":"Margo Lion","type":"Person","_key":"21511"} +{"label":"Katia Romanoff","version":25,"id":"36483","lastModified":"1301901498000","name":"Katia Romanoff","type":"Person","_key":"21512"} +{"label":"Pr\u00e9parez vos mouchoirs","description":"No overview found.","id":"4267","runtime":108,"imdbId":"tt0078122","version":50,"lastModified":"1301904241000","studio":"Belga Films","genre":"Comedy","title":"Pr\u00e9parez vos mouchoirs","releaseDate":253324800000,"language":"en","type":"Movie","_key":"21513"} +{"label":"Jean Rougerie","version":23,"id":"35881","lastModified":"1302061548000","name":"Jean Rougerie","type":"Person","_key":"21514"} +{"label":"Riton Liebman","version":21,"id":"35882","lastModified":"1301901529000","name":"Riton Liebman","type":"Person","_key":"21515"} +{"label":"Sylvie Joly","version":19,"id":"35883","lastModified":"1301901742000","name":"Sylvie Joly","type":"Person","_key":"21516"} +{"label":"Liliane Rov\u00e8re","version":32,"id":"36513","lastModified":"1301901444000","name":"Liliane Rov\u00e8re","type":"Person","_key":"21517"} +{"label":"The Other One's Mug","description":"Martial Perrin is the president of a right-wing political party which is gearing itself up for a forthcoming election. When he learns that a notorious criminal named Kraus has escaped from prison, Perrin panics and goes into hiding. His deputy, Constant, hires Perrin\u2019s cousin, Gilbert, an actor who is a perfect double of Perrin, to replace him. What Gilbert does no know is that the killer Kraus is bumping off the people who were implicated in the affair for which he was arrested, and that Perrin","id":"4268","runtime":100,"imdbId":"tt0079251","version":57,"lastModified":"1301903876000","studio":"Films A2","genre":"Comedy","title":"The Other One's Mug","releaseDate":313804800000,"language":"en","type":"Movie","_key":"21518"} +{"label":"Andr\u00e9a Parisy","version":34,"id":"35884","lastModified":"1301901272000","name":"Andr\u00e9a Parisy","type":"Person","_key":"21519"} +{"label":"Bernard Lavalette","version":22,"id":"35885","lastModified":"1301901967000","name":"Bernard Lavalette","type":"Person","_key":"21520"} +{"label":"Pierre Douglas","version":21,"id":"35886","lastModified":"1301901830000","name":"Pierre Douglas","type":"Person","_key":"21521"} +{"label":"Catherine Lachens","version":26,"id":"35887","lastModified":"1301901701000","name":"Catherine Lachens","type":"Person","_key":"21522"} +{"label":"Une chambre en ville","description":"Set against the backdrop of an increasingly violent strike, a worker falls in love with the middle-class daughter of his landlady.","id":"4269","runtime":90,"imdbId":"tt0084843","version":71,"lastModified":"1301906754000","studio":"TF1 Films Productions","genre":"Drama","title":"Une chambre en ville","releaseDate":404524800000,"language":"en","type":"Movie","_key":"21523"} +{"label":"Richard Berry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f3\/4d1119a65e73d608420006f3\/richard-berry-profile.jpg","version":106,"id":"35896","lastModified":"1301901117000","name":"Richard Berry","type":"Person","_key":"21524"} +{"label":"Fabienne Guyon","version":20,"id":"35897","lastModified":"1301901819000","name":"Fabienne Guyon","type":"Person","_key":"21525"} +{"label":"La garce","description":"No overview found.","id":"4270","runtime":90,"imdbId":"tt0087314","version":57,"lastModified":"1301905341000","studio":"France 3 Cin\u00e9ma","genre":"Thriller","title":"La garce","releaseDate":463190400000,"language":"en","type":"Movie","_key":"21526"} +{"label":"Jean-Claude Leguay","version":21,"id":"35900","lastModified":"1301901819000","name":"Jean-Claude Leguay","type":"Person","_key":"21527"} +{"label":"Jenny Cl\u00e8ve","version":21,"id":"35902","lastModified":"1301901792000","name":"Jenny Cl\u00e8ve","type":"Person","_key":"21528"} +{"label":"Jean-Pierre Bagot","version":20,"id":"35903","lastModified":"1301901792000","name":"Jean-Pierre Bagot","type":"Person","_key":"21529"} +{"label":"La Vie est un long fleuve tranquille","description":"Dans une petite ville du nord de la France, deux familles nombreuses, les Le Quesnoy et les Groseille, d'origines bien diff\u00e9rentes, n'auraient jamais du se rencontrer. Mais c'\u00e9tait sans compter sur Josette, l'infirmi\u00e8re devou\u00e9e du docteur Mavial, amoureuse et lasse d'attendre qu'il quitte sa femme. Dans un moment d'\u00e9garement la douce infirmi\u00e8re a \u00e9chang\u00e9 deux nouveau-n\u00e9s, un Groseille (les pauvres) contre un Le Quesnoy (les riches), pour se venger de la vie et du docteur. Comprenant que Mavial n","id":"4271","runtime":90,"imdbId":"tt0096386","version":78,"lastModified":"1301907425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4bc91a0d017a3c57fe00a0a0\/la-vie-est-un-long-fleuve-tranquille-mid.jpg","studio":"MK2 Productions","genre":"Comedy","title":"La Vie est un long fleuve tranquille","releaseDate":570844800000,"language":"en","type":"Movie","_key":"21530"} +{"label":"Val\u00e9rie Lalande","version":20,"id":"35907","lastModified":"1301902005000","name":"Val\u00e9rie Lalande","type":"Person","_key":"21531"} +{"label":"Catherine Hiegel","version":26,"id":"35908","lastModified":"1301901499000","name":"Catherine Hiegel","type":"Person","_key":"21532"} +{"label":"Christine Pignet","version":24,"id":"35909","lastModified":"1301901701000","name":"Christine Pignet","type":"Person","_key":"21533"} +{"label":"Maurice Mons","version":22,"id":"35910","lastModified":"1301901819000","name":"Maurice Mons","type":"Person","_key":"21534"} +{"label":"Patrick Bouchitey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a98\/4d11d1805e73d60842000a98\/patrick-bouchitey-profile.jpg","version":49,"id":"35911","lastModified":"1301901236000","name":"Patrick Bouchitey","type":"Person","_key":"21535"} +{"label":"Ma vie est un enfer","description":"La na\u00efve et complex\u00e9e Leah signe par erreur un pacte avec le diable Abargadon. Mais elle est sur les listes du Paradis, aussi l'Archange Gabriel intervientil pour causer la perte du d\u00e9mon. Mais Leah commence \u00e0 trouver Abargadon s\u00e9duisant et pas si mauvais que \u00e7a. Elle d\u00e9cide de sauver son \u00e2me...","id":"4272","runtime":90,"imdbId":"tt0102367","version":83,"lastModified":"1301907292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e8\/4d56a3945e73d617ba0077e8\/ma-vie-est-un-enfer-mid.jpg","studio":"Ciby 2000","genre":"Comedy","title":"Ma vie est un enfer","releaseDate":691804800000,"language":"en","type":"Movie","_key":"21536"} +{"label":"Catherine Samie","version":24,"id":"35917","lastModified":"1301901659000","name":"Catherine Samie","type":"Person","_key":"21537"} +{"label":"Jessica Forde","version":22,"id":"35918","lastModified":"1301901827000","name":"Jessica Forde","type":"Person","_key":"21538"} +{"label":"Luis Rego","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/974\/4d6fd09b5e73d65a34000974\/luis-rego-profile.jpg","version":27,"id":"35919","lastModified":"1301901499000","name":"Luis Rego","type":"Person","_key":"21539"} +{"label":"Max Vialle","version":20,"id":"35920","lastModified":"1301902004000","name":"Max Vialle","type":"Person","_key":"21540"} +{"label":"Fort Saganne","description":"No overview found.","id":"4274","runtime":180,"imdbId":"tt0087284","version":83,"lastModified":"1301903603000","studio":"Albina Productions S.a.r.l.","genre":"Drama","title":"Fort Saganne","releaseDate":453081600000,"language":"en","type":"Movie","_key":"21541"} +{"label":"Alain Corneau","version":31,"id":"35927","lastModified":"1302061548000","name":"Alain Corneau","type":"Person","_key":"21542"} +{"label":"Sophie Grimaldi","version":26,"id":"35929","lastModified":"1301901662000","name":"Sophie Grimaldi","type":"Person","_key":"21543"} +{"label":"Pierre Tornade","version":46,"id":"35930","lastModified":"1301901355000","name":"Pierre Tornade","type":"Person","_key":"21544"} +{"label":"Les Mari\u00e9s de l'an II","description":"No overview found.","id":"4279","runtime":98,"imdbId":"tt0067397","version":64,"lastModified":"1301906085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc91a10017a3c57fe00a0a5\/les-maries-de-l-an-ii-mid.jpg","studio":"Gaumont","genre":"Adventure","title":"Les Mari\u00e9s de l'an II","releaseDate":39830400000,"language":"en","type":"Movie","_key":"21545"} +{"label":"Laura Antonelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ec\/4bfa8456017a3c702b0003ec\/laura-antonelli-profile.jpg","biography":"Laura Antonelli, nome d'arte di Laura Antonaz \u00e8 un'attrice italiana in auge particolarmente negli anni settanta e ottanta.\nFamosa per la sua bellezza e i film noti come commedia erotica all'italiana e non solo.","version":27,"birthday":"-843444000000","id":"35956","birthplace":"Pola, Croatia","lastModified":"1301901313000","name":"Laura Antonelli","type":"Person","_key":"21546"} +{"label":"Billy Kearns","version":25,"id":"35958","lastModified":"1301901509000","name":"Billy Kearns","type":"Person","_key":"21547"} +{"label":"Appointment with Death","description":"Emily Boynton, stepmother to the three Boynton children -- Lennox, Raymond and Carol -- and mother to Ginevra, blackmails the family lawyer, Jefferson Cope, into destroying a second will of her late husband that would have freed the children from her dominating influence. She takes herself, the children and her daughter-in-law Nadine on holiday to Europe and the Holy Land. In Jerusalem, the great detective Hercule Poirot meets up with a woman friend, Dr. Sarah King, who falls in love with Raymon","id":"4281","runtime":102,"imdbId":"tt0094669","version":99,"lastModified":"1301905356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0aa\/4bc91a10017a3c57fe00a0aa\/appointment-with-death-mid.jpg","studio":"Cannon Group","genre":"Crime","title":"Appointment with Death","releaseDate":577065600000,"language":"en","type":"Movie","_key":"21548"} +{"label":"Hayley Mills","version":47,"id":"36819","lastModified":"1301901347000","name":"Hayley Mills","type":"Person","_key":"21549"} +{"label":"Jenny Seagrove","version":25,"id":"36820","lastModified":"1301901941000","name":"Jenny Seagrove","type":"Person","_key":"21550"} +{"label":"David Soul","version":23,"id":"15956","lastModified":"1301901643000","name":"David Soul","type":"Person","_key":"21551"} +{"label":"Nicholas Guest","version":36,"id":"36821","lastModified":"1301901358000","name":"Nicholas Guest","type":"Person","_key":"21552"} +{"label":"Valerie Richards","version":20,"id":"36822","lastModified":"1301901903000","name":"Valerie Richards","type":"Person","_key":"21553"} +{"label":"Serial Lover","description":"Claire Doste is about to reach the age of 35 and has everything one dreams of, such as having four boyfriends and a creative job in a publishing house specialising in crime novels. One day, she invites all of her boyfriends to her birthday dinner so that she can pick out her would-be fianc\u00e9. But an accident happens when Claire is getting the dinner ready.","id":"4282","runtime":85,"imdbId":"tt0155157","version":83,"lastModified":"1301904241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d4\/4ce966a97b9aa17c8b0004d4\/serial-lover-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Serial Lover","releaseDate":893203200000,"language":"en","type":"Movie","_key":"21554"} +{"label":"James Huth","version":37,"id":"35959","lastModified":"1301901376000","name":"James Huth","type":"Person","_key":"21555"} +{"label":"Mich\u00e8le Laroque","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2fe\/4bdfa36f017a3c35bb0002fe\/michele-laroque-profile.jpg","version":47,"birthday":"-301280400000","id":"35962","birthplace":"Nice, Alpes-Maritimes","lastModified":"1301952220000","name":"Mich\u00e8le Laroque","type":"Person","_key":"21556"} +{"label":"Elise Tielrooy","version":20,"id":"35963","lastModified":"1301901903000","name":"Elise Tielrooy","type":"Person","_key":"21557"} +{"label":"Gilles Privat","version":19,"id":"35964","lastModified":"1301901903000","name":"Gilles Privat","type":"Person","_key":"21558"} +{"label":"Antoine Basler","version":29,"id":"35965","lastModified":"1301901202000","name":"Antoine Basler","type":"Person","_key":"21559"} +{"label":"Didier B\u00e9nureau","version":31,"id":"35966","lastModified":"1301901701000","name":"Didier B\u00e9nureau","type":"Person","_key":"21560"} +{"label":"Maurice Barth\u00e9l\u00e9my","version":19,"id":"35967","lastModified":"1301901903000","name":"Maurice Barth\u00e9l\u00e9my","type":"Person","_key":"21561"} +{"label":"Pierre-Fran\u00e7ois Martin-Laval","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f4c\/4d444f7c7b9aa15bb0005f4c\/pierre-fran-ois-martin-laval-profile.jpg","version":37,"id":"35968","lastModified":"1301901742000","name":"Pierre-Fran\u00e7ois Martin-Laval","type":"Person","_key":"21562"} +{"label":"Philippe Vieux","version":20,"id":"35969","lastModified":"1301902004000","name":"Philippe Vieux","type":"Person","_key":"21563"} +{"label":"Patrick Ligardes","version":29,"id":"35970","lastModified":"1301901491000","name":"Patrick Ligardes","type":"Person","_key":"21564"} +{"label":"Primeval","description":"A news team is sent to Burundi to capture and bring home a legendary 25-foot crocodile. Their difficult task turns potentially deadly when a warlord targets them for death.","id":"4283","runtime":93,"imdbId":"tt0772193","version":324,"lastModified":"1301903496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b3\/4bc91a10017a3c57fe00a0b3\/primeval-mid.jpg","studio":"Hollywood Pictures","genre":"Action","title":"Primeval","releaseDate":1168560000000,"language":"en","type":"Movie","_key":"21565"} +{"label":"Michael Katleman","version":19,"id":"35971","lastModified":"1301901540000","name":"Michael Katleman","type":"Person","_key":"21566"} +{"label":"Brooke Langton","version":28,"id":"35980","lastModified":"1301901420000","name":"Brooke Langton","type":"Person","_key":"21567"} +{"label":"Gideon Emery","version":25,"id":"35981","lastModified":"1301901695000","name":"Gideon Emery","type":"Person","_key":"21568"} +{"label":"Gabriel Malema","version":19,"id":"35982","lastModified":"1301901742000","name":"Gabriel Malema","type":"Person","_key":"21569"} +{"label":"Linda Mpondo","version":19,"id":"35983","lastModified":"1301901742000","name":"Linda Mpondo","type":"Person","_key":"21570"} +{"label":"Lehlohonolo Makoko","version":19,"id":"35984","lastModified":"1301901742000","name":"Lehlohonolo Makoko","type":"Person","_key":"21571"} +{"label":"Dumisani Mbebe","version":19,"id":"35985","lastModified":"1301901540000","name":"Dumisani Mbebe","type":"Person","_key":"21572"} +{"label":"Eddy 'Big Eddy' Bekombo","version":18,"id":"35986","lastModified":"1301901812000","name":"Eddy 'Big Eddy' Bekombo","type":"Person","_key":"21573"} +{"label":"Chris April","version":19,"id":"35987","lastModified":"1301901742000","name":"Chris April","type":"Person","_key":"21574"} +{"label":"Sasquatch Hunters","description":"Bigfoot... Sasquatch... Some legends never die... They Kill! ","id":"4284","runtime":88,"imdbId":"tt0339531","version":91,"lastModified":"1301905658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c1\/4bc91a11017a3c57fe00a0c1\/sasquatch-hunters-mid.jpg","studio":"The Flickerscope Company","genre":"Horror","title":"Sasquatch Hunters","releaseDate":1133654400000,"language":"en","type":"Movie","_key":"21575"} +{"label":"Fred Tepper","version":20,"id":"35988","lastModified":"1301901546000","name":"Fred Tepper","type":"Person","_key":"21576"} +{"label":"Matt Lattimore","version":18,"id":"35997","lastModified":"1301901425000","name":"Matt Lattimore","type":"Person","_key":"21577"} +{"label":"Amy Shelton-White","version":19,"id":"35998","lastModified":"1301901458000","name":"Amy Shelton-White","type":"Person","_key":"21578"} +{"label":"Gary Sturm","version":19,"id":"35999","lastModified":"1301901629000","name":"Gary Sturm","type":"Person","_key":"21579"} +{"label":"David Zelina","version":19,"id":"36000","lastModified":"1301901629000","name":"David Zelina","type":"Person","_key":"21580"} +{"label":"Juliana Dever","version":20,"id":"36001","lastModified":"1301901918000","name":"Juliana Dever","type":"Person","_key":"21581"} +{"label":"Nach F\u00fcnf im Urwald","description":"No overview found.","id":"4285","runtime":99,"imdbId":"tt0117143","version":66,"lastModified":"1301906635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ca\/4bc91a12017a3c57fe00a0ca\/nach-funf-im-urwald-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Drama","title":"Nach F\u00fcnf im Urwald","releaseDate":812505600000,"language":"en","type":"Movie","_key":"21582"} +{"label":"Axel Milberg","version":39,"id":"36010","lastModified":"1301901568000","name":"Axel Milberg","type":"Person","_key":"21583"} +{"label":"Farina Brock","version":19,"id":"36011","lastModified":"1301901620000","name":"Farina Brock","type":"Person","_key":"21584"} +{"label":"Peter Ender","version":20,"id":"36012","lastModified":"1301901742000","name":"Peter Ender","type":"Person","_key":"21585"} +{"label":"Thomas Schmauser","version":20,"id":"36013","lastModified":"1301901477000","name":"Thomas Schmauser","type":"Person","_key":"21586"} +{"label":"Johann von B\u00fclow","version":28,"id":"36014","lastModified":"1301901700000","name":"Johann von B\u00fclow","type":"Person","_key":"21587"} +{"label":"L'innocente","description":"Tullio Hermil is a chauvinist aristocrat who flaunts his mistress to his wife, but when he believes she has been unfaithful he becomes enamored of her again.","id":"4286","runtime":125,"imdbId":"tt0074686","version":131,"lastModified":"1301907285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4cedc2927b9aa13497000001\/l-innocente-mid.jpg","studio":"Francoriz Production","genre":"Drama","title":"L'innocente","releaseDate":200880000000,"language":"en","type":"Movie","_key":"21588"} +{"label":"Claude Mann","version":22,"id":"36018","lastModified":"1301901620000","name":"Claude Mann","type":"Person","_key":"21589"} +{"label":"Roberta Paladini","version":19,"id":"36019","lastModified":"1301901903000","name":"Roberta Paladini","type":"Person","_key":"21590"} +{"label":"Les Aveux les plus doux","description":"No overview found.","id":"4287","runtime":95,"imdbId":"tt0066799","version":47,"lastModified":"1301906753000","studio":"O.N.C.I.C.","genre":"Crime","title":"Les Aveux les plus doux","releaseDate":43459200000,"language":"en","type":"Movie","_key":"21591"} +{"label":"G\u00e9rard Landry","version":26,"id":"36021","lastModified":"1301901838000","name":"G\u00e9rard Landry","type":"Person","_key":"21592"} +{"label":"Hassan Hassani","version":20,"id":"36022","lastModified":"1301901967000","name":"Hassan Hassani","type":"Person","_key":"21593"} +{"label":"L\u00e9a Nanni","version":20,"id":"36023","lastModified":"1301901967000","name":"L\u00e9a Nanni","type":"Person","_key":"21594"} +{"label":"Raymond Louzoum","version":20,"id":"36024","lastModified":"1301901967000","name":"Raymond Louzoum","type":"Person","_key":"21595"} +{"label":"The Final Terror","description":"No overview found.","id":"4288","runtime":82,"imdbId":"tt0082379","version":90,"lastModified":"1301904723000","genre":"Horror","title":"The Final Terror","releaseDate":420595200000,"language":"en","type":"Movie","_key":"21596"} +{"label":"Adrian Zmed","version":22,"id":"36039","lastModified":"1301901499000","name":"Adrian Zmed","type":"Person","_key":"21597"} +{"label":"Ernest Harden Jr.","version":22,"id":"36040","lastModified":"1301901568000","name":"Ernest Harden Jr.","type":"Person","_key":"21598"} +{"label":"Lewis Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18f\/4d9760dd5e73d623b000418f\/lewis-smith-profile.jpg","version":23,"id":"36041","lastModified":"1301901568000","name":"Lewis Smith","type":"Person","_key":"21599"} +{"label":"Rachel Ward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ab\/4c47256a7b9aa15ddd0002ab\/rachel-ward-profile.jpg","version":40,"id":"36042","lastModified":"1301901159000","name":"Rachel Ward","type":"Person","_key":"21600"} +{"label":"Dinocroc","description":"No overview found.","id":"4289","runtime":86,"imdbId":"tt0365653","version":86,"lastModified":"1301904683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4bc91a13017a3c57fe00a0d3\/dinocroc-mid.jpg","studio":"Concorde Filmverleih","genre":"Action","title":"Dinocroc","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"21601"} +{"label":"Kevin O'Neill","version":19,"id":"36043","lastModified":"1301901431000","name":"Kevin O'Neill","type":"Person","_key":"21602"} +{"label":"Jane Longenecker","version":19,"id":"36056","lastModified":"1301901620000","name":"Jane Longenecker","type":"Person","_key":"21603"} +{"label":"Bruce Weitz","version":23,"id":"36058","lastModified":"1301901562000","name":"Bruce Weitz","type":"Person","_key":"21604"} +{"label":"Joanna Pacula","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/249\/4c17c1d97b9aa108b4000249\/joanna-pacula-profile.jpg","version":39,"id":"36059","lastModified":"1301901296000","name":"Joanna Pacula","type":"Person","_key":"21605"} +{"label":"Price Carson","version":19,"id":"36060","lastModified":"1301901477000","name":"Price Carson","type":"Person","_key":"21606"} +{"label":"Matthew Borlenghi","version":25,"id":"84163","lastModified":"1301902500000","name":"Matthew Borlenghi","type":"Person","_key":"21607"} +{"label":"Supergator","description":"No overview found.","id":"4290","runtime":91,"imdbId":"tt0827735","version":62,"lastModified":"1301907425000","studio":"Rodeo Productions","genre":"Horror","title":"Supergator","releaseDate":1184371200000,"language":"en","type":"Movie","_key":"21608"} +{"label":"Brian Clyde","version":21,"id":"36061","lastModified":"1301901792000","name":"Brian Clyde","type":"Person","_key":"21609"} +{"label":"Brad Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c6\/4ce183745e73d60f6d0003c6\/brad-johnson-profile.jpg","version":52,"birthday":"-321584400000","id":"36067","birthplace":"Tucson, Arizona, USA","lastModified":"1301901229000","name":"Brad Johnson","type":"Person","_key":"21610"} +{"label":"Bianca Lawson","version":23,"id":"36068","lastModified":"1301901583000","name":"Bianca Lawson","type":"Person","_key":"21611"} +{"label":"Mary Alexandra Stiefvater","version":22,"id":"36069","lastModified":"1301901675000","name":"Mary Alexandra Stiefvater","type":"Person","_key":"21612"} +{"label":"Josh Kelly","version":23,"id":"36070","lastModified":"1301901967000","name":"Josh Kelly","type":"Person","_key":"21613"} +{"label":"John Colton","version":24,"id":"36071","lastModified":"1301901582000","name":"John Colton","type":"Person","_key":"21614"} +{"label":"Holly Weber","version":20,"id":"36072","lastModified":"1301902004000","name":"Holly Weber","type":"Person","_key":"21615"} +{"label":"Kikujiro no natsu","description":"Brash, loudmouthed and opportunistic, Kikujiro is the unlikely companion for Masao who is determined to see the mother he has never met. The two begin a series of adventures which soon turns out to be a whimsical journey of laughter and tears with a wide array of surprises and unique characters along the way.","id":"4291","runtime":117,"imdbId":"tt0199683","trailer":"http:\/\/www.youtube.com\/watch?v=rgRdBOotk7o","version":113,"lastModified":"1301905853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e0\/4bc91a17017a3c57fe00a0e0\/4291-mid.jpg","studio":"Bandai Visual Company","genre":"Comedy","title":"Kikujiro no natsu","releaseDate":928540800000,"language":"en","type":"Movie","_key":"21616"} +{"label":"Yusuke Sekiguchi","version":21,"id":"36073","lastModified":"1301901742000","name":"Yusuke Sekiguchi","type":"Person","_key":"21617"} +{"label":"Kazuko Yoshiyuki","version":46,"id":"36074","lastModified":"1301901578000","name":"Kazuko Yoshiyuki","type":"Person","_key":"21618"} +{"label":"Beat Kiyoshi","version":21,"id":"36075","lastModified":"1301901903000","name":"Beat Kiyoshi","type":"Person","_key":"21619"} +{"label":"Gur\u00eato Giday\u00fb","version":20,"id":"36076","lastModified":"1301901990000","name":"Gur\u00eato Giday\u00fb","type":"Person","_key":"21620"} +{"label":"Rakkyo Ide","version":21,"id":"36077","lastModified":"1301901903000","name":"Rakkyo Ide","type":"Person","_key":"21621"} +{"label":"Nezumi Mamura","version":21,"id":"36078","lastModified":"1301901903000","name":"Nezumi Mamura","type":"Person","_key":"21622"} +{"label":"Fumie Hosokawa","version":21,"id":"36079","lastModified":"1301901903000","name":"Fumie Hosokawa","type":"Person","_key":"21623"} +{"label":"Daigaku Sekine","version":21,"id":"36080","lastModified":"1301901903000","name":"Daigaku Sekine","type":"Person","_key":"21624"} +{"label":"Eat the Rich","description":"No overview found.","id":"4292","runtime":90,"imdbId":"tt0092944","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/eat-the-rich","version":93,"lastModified":"1301905285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68b\/4cc305d55e73d6778500168b\/eat-the-rich-mid.jpg","studio":"Channel Four Films","genre":"Action","title":"Eat the Rich","releaseDate":559094400000,"language":"en","type":"Movie","_key":"21625"} +{"label":"Kevin Allen","version":27,"id":"36083","lastModified":"1301901596000","name":"Kevin Allen","type":"Person","_key":"21626"} +{"label":"Dave Beard","version":21,"id":"36084","lastModified":"1301901681000","name":"Dave Beard","type":"Person","_key":"21627"} +{"label":"Rowena Bently","version":21,"id":"36085","lastModified":"1301901678000","name":"Rowena Bently","type":"Person","_key":"21628"} +{"label":"Angela Bowie","version":22,"id":"37122","lastModified":"1301901967000","name":"Angela Bowie","type":"Person","_key":"21629"} +{"label":"Simon Brint","version":24,"id":"37120","lastModified":"1301901967000","name":"Simon Brint","type":"Person","_key":"21630"} +{"label":"Rene Bruchet","version":21,"id":"37123","lastModified":"1301901792000","name":"Rene Bruchet","type":"Person","_key":"21631"} +{"label":"Peter Richardson","version":25,"id":"36086","lastModified":"1301901499000","name":"Peter Richardson","type":"Person","_key":"21632"} +{"label":"L.A. Vice","description":"No overview found.","id":"4295","runtime":85,"imdbId":"tt0145038","version":113,"lastModified":"1301302614000","studio":"PM Entertainment Group","genre":"Action","title":"L.A. Vice","releaseDate":599616000000,"language":"en","type":"Movie","_key":"21633"} +{"label":"Joseph Merhi","version":43,"id":"36146","lastModified":"1301902034000","name":"Joseph Merhi","type":"Person","_key":"21634"} +{"label":"Lawrence Hilton-Jacobs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/845\/4d8a7d2d7b9aa13ae7000845\/lawrence-hilton-jacobs-profile.jpg","version":30,"id":"36152","lastModified":"1301901667000","name":"Lawrence Hilton-Jacobs","type":"Person","_key":"21635"} +{"label":"Jean Levine","version":18,"id":"36154","lastModified":"1301901810000","name":"Jean Levine","type":"Person","_key":"21636"} +{"label":"Jastereo Coviare","version":20,"id":"36155","lastModified":"1301901672000","name":"Jastereo Coviare","type":"Person","_key":"21637"} +{"label":"R.J. Walker","version":21,"id":"36156","lastModified":"1301901597000","name":"R.J. Walker","type":"Person","_key":"21638"} +{"label":"Greg Allan Martin","version":20,"id":"36157","lastModified":"1301901842000","name":"Greg Allan Martin","type":"Person","_key":"21639"} +{"label":"Mark Dunlap","version":20,"id":"36158","lastModified":"1301901842000","name":"Mark Dunlap","type":"Person","_key":"21640"} +{"label":"Don Nardini","version":20,"id":"36159","lastModified":"1301901583000","name":"Don Nardini","type":"Person","_key":"21641"} +{"label":"Joshua Sailor","version":20,"id":"36160","lastModified":"1301902004000","name":"Joshua Sailor","type":"Person","_key":"21642"} +{"label":"Millennium","description":"An investigator seeking the cause of an airline disaster discovers the involvement of an organisation of time travellers from a future Earth irreparably polluted who seek to rejuvenate the human race from those about to die in the past. Based on a novel by John Varley. ","id":"4296","runtime":108,"imdbId":"tt0097883","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/millennium","version":206,"lastModified":"1301904338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4bdb88ed017a3c5d8f0001f4\/millennium-mid.jpg","studio":"Gladden Entertainment","genre":"Drama","title":"Millennium","releaseDate":619920000000,"language":"en","type":"Movie","_key":"21643"} +{"label":"Cheryl Ladd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14a\/4c225d537b9aa1375300014a\/cheryl-ladd-profile.jpg","version":27,"id":"36169","lastModified":"1301901429000","name":"Cheryl Ladd","type":"Person","_key":"21644"} +{"label":"Daniel J. Travanti","version":24,"id":"36170","lastModified":"1301901367000","name":"Daniel J. Travanti","type":"Person","_key":"21645"} +{"label":"Brent Carver","version":23,"id":"36171","lastModified":"1301902023000","name":"Brent Carver","type":"Person","_key":"21646"} +{"label":"Al Waxman","version":22,"id":"36172","lastModified":"1301901932000","name":"Al Waxman","type":"Person","_key":"21647"} +{"label":"Lawrence Dane","version":32,"id":"36173","lastModified":"1301901602000","name":"Lawrence Dane","type":"Person","_key":"21648"} +{"label":"Monsieur Truffaut Meets Mr. Hitchcock","description":"No overview found.","id":"4297","runtime":30,"imdbId":"tt0298068","version":43,"lastModified":"1301906753000","studio":"Bayerischer Rundfunk","genre":"Documentary","title":"Monsieur Truffaut Meets Mr. Hitchcock","releaseDate":933811200000,"language":"en","type":"Movie","_key":"21649"} +{"label":"Robert Fischer","version":26,"id":"36202","lastModified":"1301901967000","name":"Robert Fischer","type":"Person","_key":"21650"} +{"label":"Madeleine Morgenstern","version":20,"id":"36204","lastModified":"1301901589000","name":"Madeleine Morgenstern","type":"Person","_key":"21651"} +{"label":"Helen Scott","version":23,"id":"36205","lastModified":"1301901659000","name":"Helen Scott","type":"Person","_key":"21652"} +{"label":"Les Sorci\u00e8res de Salem","description":"No overview found.","id":"4300","runtime":145,"imdbId":"tt0050997","version":63,"lastModified":"1301908344000","studio":"Path\u00e9 Cin\u00e9ma","genre":"Drama","title":"Les Sorci\u00e8res de Salem","releaseDate":-400291200000,"language":"en","type":"Movie","_key":"21653"} +{"label":"Raymond Rouleau","version":20,"id":"36206","lastModified":"1301901620000","name":"Raymond Rouleau","type":"Person","_key":"21654"} +{"label":"Jean Debucourt","version":29,"id":"36209","lastModified":"1301901568000","name":"Jean Debucourt","type":"Person","_key":"21655"} +{"label":"Jean Gaven","version":23,"id":"36210","lastModified":"1301901517000","name":"Jean Gaven","type":"Person","_key":"21656"} +{"label":"Pascale Petit","version":21,"id":"36211","lastModified":"1301901673000","name":"Pascale Petit","type":"Person","_key":"21657"} +{"label":"Alexandre Rignault","version":21,"id":"36212","lastModified":"1301901540000","name":"Alexandre Rignault","type":"Person","_key":"21658"} +{"label":"Aribert Grimmer","version":21,"id":"36213","lastModified":"1301901620000","name":"Aribert Grimmer","type":"Person","_key":"21659"} +{"label":"Jeanne Fusier-Gir","version":25,"id":"36214","lastModified":"1301901444000","name":"Jeanne Fusier-Gir","type":"Person","_key":"21660"} +{"label":"Coutan-Lambert","version":19,"id":"36215","lastModified":"1301901620000","name":"Coutan-Lambert","type":"Person","_key":"21661"} +{"label":"The Flower of My Secret","description":"Marisa Paredes is Leocadia (\"Leo\") Macias, a woman writing \u201cpink\u201d romance novels under the alias of Amanda Gris that are very popular all across Spain. Unlike her romantic novels, her own love life is troubled. Leo has a less than happy relationship with her husband Paco, a military officer stationed in Brussels then later in Bosnia, who is distant both physically and emotionally.","id":"4307","runtime":107,"imdbId":"tt0113083","version":193,"lastModified":"1301903250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/563\/4cd8b66e7b9aa11b27000563\/la-flor-de-mi-secreto-mid.jpg","studio":"El Deseo","genre":"Drama","title":"The Flower of My Secret","releaseDate":811728000000,"language":"en","type":"Movie","_key":"21662"} +{"label":"Juan Echanove","version":24,"id":"36277","lastModified":"1301901819000","name":"Juan Echanove","type":"Person","_key":"21663"} +{"label":"Carme Elias","version":21,"id":"36278","lastModified":"1301901456000","name":"Carme Elias","type":"Person","_key":"21664"} +{"label":"Joaqu\u00edn Cort\u00e9s","version":21,"id":"36279","lastModified":"1301901540000","name":"Joaqu\u00edn Cort\u00e9s","type":"Person","_key":"21665"} +{"label":"Manuela Vargas","version":21,"id":"36280","lastModified":"1301901477000","name":"Manuela Vargas","type":"Person","_key":"21666"} +{"label":"Imanol Arias","version":30,"id":"36281","lastModified":"1301901959000","name":"Imanol Arias","type":"Person","_key":"21667"} +{"label":"Gloria Mu\u00f1oz","version":21,"id":"36282","lastModified":"1301901540000","name":"Gloria Mu\u00f1oz","type":"Person","_key":"21668"} +{"label":"Juan Jos\u00e9 Otegui","version":21,"id":"36283","lastModified":"1301901540000","name":"Juan Jos\u00e9 Otegui","type":"Person","_key":"21669"} +{"label":"Compartiment tueurs","description":"No overview found.","id":"4311","runtime":95,"imdbId":"tt0059050","version":75,"lastModified":"1301904446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4bc91a18017a3c57fe00a0e5\/compartiment-tueurs-mid.jpg","studio":"PECF","genre":"Crime","title":"Compartiment tueurs","releaseDate":-130118400000,"language":"en","type":"Movie","_key":"21670"} +{"label":"Nadine Alari","version":25,"id":"36314","lastModified":"1301901567000","name":"Nadine Alari","type":"Person","_key":"21671"} +{"label":"Monique Chaumette","version":26,"id":"36315","lastModified":"1301901791000","name":"Monique Chaumette","type":"Person","_key":"21672"} +{"label":"Christian Marin","version":38,"id":"36316","lastModified":"1301901403000","name":"Christian Marin","type":"Person","_key":"21673"} +{"label":"Jenny Orl\u00e9ans","version":20,"id":"36317","lastModified":"1301901902000","name":"Jenny Orl\u00e9ans","type":"Person","_key":"21674"} +{"label":"Fran\u00e7oise Arnoul","version":24,"id":"36318","lastModified":"1301901843000","name":"Fran\u00e7oise Arnoul","type":"Person","_key":"21675"} +{"label":"Drei gegen drei","description":"No overview found.","id":"4322","runtime":105,"imdbId":"tt0089054","version":44,"lastModified":"1301417772000","studio":"Constantin Film","genre":"Comedy","title":"Drei gegen drei","releaseDate":501984000000,"language":"en","type":"Movie","_key":"21676"} +{"label":"Dominik Graf","version":27,"id":"32958","lastModified":"1301901568000","name":"Dominik Graf","type":"Person","_key":"21677"} +{"label":"Stephan Remmler","version":20,"id":"37408","lastModified":"1301901838000","name":"Stephan Remmler","type":"Person","_key":"21678"} +{"label":"Gert 'Kralle' Krawinkel","version":18,"id":"37409","lastModified":"1301901990000","name":"Gert 'Kralle' Krawinkel","type":"Person","_key":"21679"} +{"label":"Peter Behrens","version":20,"id":"37410","lastModified":"1301901819000","name":"Peter Behrens","type":"Person","_key":"21680"} +{"label":"Sunnyi Melles","version":26,"id":"37411","lastModified":"1301901659000","name":"Sunnyi Melles","type":"Person","_key":"21681"} +{"label":"Peer Augustinski","version":23,"id":"37412","lastModified":"1301901447000","name":"Peer Augustinski","type":"Person","_key":"21682"} +{"label":"Ein Mann im sch\u00f6nsten Alter","description":"No overview found.","id":"4323","runtime":109,"imdbId":"tt0057287","version":53,"lastModified":"1301908605000","studio":"Maran Film","genre":"Drama","title":"Ein Mann im sch\u00f6nsten Alter","releaseDate":-188006400000,"language":"en","type":"Movie","_key":"21683"} +{"label":"Franz Peter Wirth","version":21,"id":"36384","lastModified":"1301901659000","name":"Franz Peter Wirth","type":"Person","_key":"21684"} +{"label":"Pascale Audret","version":23,"id":"36385","lastModified":"1301901792000","name":"Pascale Audret","type":"Person","_key":"21685"} +{"label":"Fran\u00e7oise Pr\u00e9vost","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e57\/4d9b3b367b9aa164c6000e57\/fran-oise-pr-vost-profile.jpg","version":23,"id":"36386","lastModified":"1302011670000","name":"Fran\u00e7oise Pr\u00e9vost","type":"Person","_key":"21686"} +{"label":"Venusberg","description":"No overview found.","id":"4324","runtime":88,"imdbId":"tt0057640","version":42,"lastModified":"1301907425000","studio":"Franz Seitz Filmproduktion","genre":"Drama","title":"Venusberg","releaseDate":-210988800000,"language":"en","type":"Movie","_key":"21687"} +{"label":"Rolf Thiele","version":28,"id":"36387","lastModified":"1301901659000","name":"Rolf Thiele","type":"Person","_key":"21688"} +{"label":"Nicole Badal","version":20,"id":"36388","lastModified":"1301901833000","name":"Nicole Badal","type":"Person","_key":"21689"} +{"label":"Monica Flodquist","version":20,"id":"36389","lastModified":"1301902004000","name":"Monica Flodquist","type":"Person","_key":"21690"} +{"label":"Christine Gronberg","version":20,"id":"36390","lastModified":"1301902004000","name":"Christine Gronberg","type":"Person","_key":"21691"} +{"label":"Ina Duscha","version":20,"id":"36391","lastModified":"1301902026000","name":"Ina Duscha","type":"Person","_key":"21692"} +{"label":"Claudia Marus","version":20,"id":"36392","lastModified":"1301902004000","name":"Claudia Marus","type":"Person","_key":"21693"} +{"label":"Jane Axell","version":20,"id":"36393","lastModified":"1301902004000","name":"Jane Axell","type":"Person","_key":"21694"} +{"label":"Parapsycho - Spektrum der Angst","description":"No overview found.","id":"4325","runtime":105,"imdbId":"tt0073514","version":44,"lastModified":"1301907425000","studio":"TIT Filmproduktion","genre":"Drama","title":"Parapsycho - Spektrum der Angst","releaseDate":186624000000,"language":"en","type":"Movie","_key":"21695"} +{"label":"Peter Patzak","version":20,"id":"36394","lastModified":"1301901792000","name":"Peter Patzak","type":"Person","_key":"21696"} +{"label":"Mathieu Carri\u00e8re","version":47,"id":"36925","lastModified":"1301901253000","name":"Mathieu Carri\u00e8re","type":"Person","_key":"21697"} +{"label":"Herr Lehmann","description":"No overview found.","id":"4326","runtime":105,"imdbId":"tt0322545","version":158,"lastModified":"1301904446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ee\/4bc91a19017a3c57fe00a0ee\/herr-lehmann-mid.jpg","studio":"Pandora Filmproduktion","genre":"Comedy","title":"Herr Lehmann","releaseDate":1065052800000,"language":"en","type":"Movie","_key":"21698"} +{"label":"Katja Danowski","version":19,"id":"35447","lastModified":"1301901620000","name":"Katja Danowski","type":"Person","_key":"21699"} +{"label":"Uwe Dag Berlin","version":18,"id":"36406","lastModified":"1301902024000","name":"Uwe Dag Berlin","type":"Person","_key":"21700"} +{"label":"Martin Olbertz","version":19,"id":"36407","lastModified":"1301901742000","name":"Martin Olbertz","type":"Person","_key":"21701"} +{"label":"Hartmut Lange","version":19,"id":"36408","lastModified":"1301901902000","name":"Hartmut Lange","type":"Person","_key":"21702"} +{"label":"Tim Fischer","version":21,"id":"28365","lastModified":"1301901902000","name":"Tim Fischer","type":"Person","_key":"21703"} +{"label":"Michael Beck","version":24,"id":"36409","lastModified":"1301901348000","name":"Michael Beck","type":"Person","_key":"21704"} +{"label":"Bernhard Sch\u00fctz","version":19,"id":"44516","lastModified":"1301902360000","name":"Bernhard Sch\u00fctz","type":"Person","_key":"21705"} +{"label":"Stephan Baumecker","version":19,"id":"36411","lastModified":"1301901902000","name":"Stephan Baumecker","type":"Person","_key":"21706"} +{"label":"Karsten Speck","version":19,"id":"36412","lastModified":"1301901902000","name":"Karsten Speck","type":"Person","_key":"21707"} +{"label":"Fabian Oscar Wien","version":19,"id":"36413","lastModified":"1301901742000","name":"Fabian Oscar Wien","type":"Person","_key":"21708"} +{"label":"Heidi Z\u00fcger","version":19,"id":"36414","lastModified":"1301901742000","name":"Heidi Z\u00fcger","type":"Person","_key":"21709"} +{"label":"Thomas Brussig","version":23,"id":"36415","lastModified":"1301901951000","name":"Thomas Brussig","type":"Person","_key":"21710"} +{"label":"\u00dcmit Inaler","version":19,"id":"36416","lastModified":"1301901902000","name":"\u00dcmit Inaler","type":"Person","_key":"21711"} +{"label":"Pepe Danquart","version":27,"id":"36417","lastModified":"1301901786000","name":"Pepe Danquart","type":"Person","_key":"21712"} +{"label":"Charlie's Angels","description":"Aspects of this take on the 1970s hit TV series are similar to the original show :Angels Dylan, Natalie and Alex still work for Charlie and interface with Bosley. They still flip their hair, stop traffic with a smile and kick butt. The differences are the unsubtle humor, the martial arts training and the high-tech premise: This time, they're hot on the trail of stolen software.","id":"4327","runtime":98,"imdbId":"tt0160127","trailer":"http:\/\/www.youtube.com\/watch?v=1pireUuRxe8","version":573,"lastModified":"1301901444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4c4085247b9aa1459100001d\/charlie-s-angels-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Charlie's Angels","releaseDate":972172800000,"language":"en","tagline":"Get Some Action","type":"Movie","_key":"21713"} +{"label":"Luke Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4c16953c7b9aa108b40000ff\/luke-wilson-profile.jpg","version":134,"id":"36422","lastModified":"1301901127000","name":"Luke Wilson","type":"Person","_key":"21714"} +{"label":"Tom Green","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6da\/4ccb55055e73d650250006da\/tom-green-profile.jpg","biography":"Michael Thomas \"Tom\" Green is a Canadian actor, rapper, writer, comedian, talk show host and media personality. He is best-known for his MTV television show The Tom Green Show, his short-lived marriage to actress Drew Barrymore and for his roles in such films as Freddy Got Fingered, Road Trip, Stealing Harvard and Charlie's Angels.\n\nIn June 2003, Green had the chance to guest-host the Late Show with David Letterman which led to him hosting his own late-night talk show on MTV entitled The New Tom","version":44,"birthday":"49676400000","id":"36423","birthplace":"Pembroke, Ontario, Canada","lastModified":"1301901323000","name":"Tom Green","type":"Person","_key":"21715"} +{"label":"LL Cool J","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c1e2e435e73d60bb200008f\/ll-cool-j-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>James Todd Smith<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> better known as <B>LL Cool J<\/B> (acronym for <B>L<\/B>adies <B>L<\/B>ove <B>Cool<\/B> <B>J<\/B>ames) is an American rapper and actor. He has released twelve studio albums and two greatest hits compilations, with his final album being 2008's <I>Exit 13<\/I>, the ","version":72,"birthday":"-62038800000","id":"36424","birthplace":"Long Island","lastModified":"1301901247000","name":"LL Cool J","type":"Person","_key":"21716"} +{"label":"The Birds II: Land's End","description":"No overview found.","id":"4337","runtime":87,"imdbId":"tt0109275","version":67,"lastModified":"1301908605000","studio":"MTE","genre":"Horror","title":"The Birds II: Land's End","releaseDate":764035200000,"language":"en","type":"Movie","_key":"21717"} +{"label":"Rick Rosenthal","version":33,"id":"33341","lastModified":"1301901404000","name":"Rick Rosenthal","type":"Person","_key":"21718"} +{"label":"James Naughton","version":26,"id":"37421","lastModified":"1301901497000","name":"James Naughton","type":"Person","_key":"21719"} +{"label":"Jan Rubes","version":29,"id":"37422","lastModified":"1301901695000","name":"Jan Rubes","type":"Person","_key":"21720"} +{"label":"Stephanie Milford","version":20,"id":"37423","lastModified":"1301901819000","name":"Stephanie Milford","type":"Person","_key":"21721"} +{"label":"Megan Gallacher","version":20,"id":"37424","lastModified":"1301901819000","name":"Megan Gallacher","type":"Person","_key":"21722"} +{"label":"Richard K. Olsen","version":22,"id":"37425","lastModified":"1301901841000","name":"Richard K. Olsen","type":"Person","_key":"21723"} +{"label":"I Woke Up Early The Day I Died","description":"No overview found.","id":"4338","runtime":90,"imdbId":"tt0125211","version":96,"lastModified":"1301904191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10d\/4bc91a1d017a3c57fe00a10d\/i-woke-up-early-the-day-i-died-mid.jpg","studio":"Muse Productions","genre":"Comedy","title":"I Woke Up Early The Day I Died","releaseDate":905644800000,"language":"en","type":"Movie","_key":"21724"} +{"label":"Aris Iliopulos","version":20,"id":"37036","lastModified":"1301901902000","name":"Aris Iliopulos","type":"Person","_key":"21725"} +{"label":"Andrew McCarthy","version":60,"id":"37041","lastModified":"1302066065000","name":"Andrew McCarthy","type":"Person","_key":"21726"} +{"label":"Ann Magnuson","version":34,"id":"37042","lastModified":"1301901443000","name":"Ann Magnuson","type":"Person","_key":"21727"} +{"label":"Taylor Negron","version":41,"id":"37043","lastModified":"1302065075000","name":"Taylor Negron","type":"Person","_key":"21728"} +{"label":"Patrick Painter","version":20,"id":"37044","lastModified":"1301901902000","name":"Patrick Painter","type":"Person","_key":"21729"} +{"label":"Nicollette Sheridan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/430\/4ca0c32d7b9aa15e3c000430\/nicollette-sheridan-profile.jpg","version":37,"id":"37045","lastModified":"1301901194000","name":"Nicollette Sheridan","type":"Person","_key":"21730"} +{"label":"Vampira","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4bd82006017a3c1c090000c2\/vampira-profile.jpg","version":24,"id":"106171","lastModified":"1301902725000","name":"Vampira","type":"Person","_key":"21731"} +{"label":"Eartha Kitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4d8d52177b9aa16755000448\/eartha-kitt-profile.jpg","version":42,"birthday":"-1355619600000","id":"70243","birthplace":"South Carolina, USA","lastModified":"1302036944000","name":"Eartha Kitt","type":"Person","_key":"21732"} +{"label":"Conrad Brooks","version":48,"id":"97824","lastModified":"1301901667000","name":"Conrad Brooks","type":"Person","_key":"21733"} +{"label":"The Nasty Girl","description":"No overview found.","id":"4339","runtime":92,"imdbId":"tt0100557","version":193,"lastModified":"1301906178000","studio":"ZDF","genre":"Comedy","title":"The Nasty Girl","releaseDate":635040000000,"language":"en","type":"Movie","_key":"21734"} +{"label":"Lena Stolze","version":25,"id":"36486","lastModified":"1301901568000","name":"Lena Stolze","type":"Person","_key":"21735"} +{"label":"Hans-Reinhard M\u00fcller","version":21,"id":"36489","lastModified":"1301902004000","name":"Hans-Reinhard M\u00fcller","type":"Person","_key":"21736"} +{"label":"Monika Baumgartner","version":26,"id":"36490","lastModified":"1301901659000","name":"Monika Baumgartner","type":"Person","_key":"21737"} +{"label":"Elisabeth Bertram","version":21,"id":"36491","lastModified":"1301902032000","name":"Elisabeth Bertram","type":"Person","_key":"21738"} +{"label":"Michael Gahr","version":23,"id":"36493","lastModified":"1301901659000","name":"Michael Gahr","type":"Person","_key":"21739"} +{"label":"Robert Giggenbach","version":23,"id":"36494","lastModified":"1301901709000","name":"Robert Giggenbach","type":"Person","_key":"21740"} +{"label":"Fred Stillkrauth","version":21,"id":"36496","lastModified":"1301902004000","name":"Fred Stillkrauth","type":"Person","_key":"21741"} +{"label":"Barbara Gallauner","version":22,"id":"36498","lastModified":"1301902004000","name":"Barbara Gallauner","type":"Person","_key":"21742"} +{"label":"Udo Thomer","version":24,"id":"36500","lastModified":"1301901569000","name":"Udo Thomer","type":"Person","_key":"21743"} +{"label":"Karin Thaler","version":21,"id":"36501","lastModified":"1301902004000","name":"Karin Thaler","type":"Person","_key":"21744"} +{"label":"Stella Adorf","version":19,"id":"36502","lastModified":"1301902025000","name":"Stella Adorf","type":"Person","_key":"21745"} +{"label":"Rudolf Sch\u00fcndler","version":44,"id":"26600","lastModified":"1301901447000","name":"Rudolf Sch\u00fcndler","type":"Person","_key":"21746"} +{"label":"Michael Verhoeven","version":29,"id":"26595","lastModified":"1301901659000","name":"Michael Verhoeven","type":"Person","_key":"21747"} +{"label":"Hotel Very Welcome","description":"No overview found.","id":"4344","runtime":90,"imdbId":"tt0949423","homepage":"www.hotelverywelcome.de","version":101,"lastModified":"1301904683000","studio":"Komplizen Film","genre":"Comedy","title":"Hotel Very Welcome","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"21748"} +{"label":"Svenja Steinfelder","version":19,"id":"36561","lastModified":"1301901741000","name":"Svenja Steinfelder","type":"Person","_key":"21749"} +{"label":"Chris O'Dowd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41e\/4c4890af5e73d61ef800041e\/chris-o-dowd-profile.jpg","version":45,"id":"40477","lastModified":"1301901215000","name":"Chris O'Dowd","type":"Person","_key":"21750"} +{"label":"Ricky Champ","version":20,"id":"40478","lastModified":"1301901819000","name":"Ricky Champ","type":"Person","_key":"21751"} +{"label":"Gareth Llewelyn","version":19,"id":"40479","lastModified":"1301901620000","name":"Gareth Llewelyn","type":"Person","_key":"21752"} +{"label":"Sonja Heiss","version":20,"id":"36564","lastModified":"1301901902000","name":"Sonja Heiss","type":"Person","_key":"21753"} +{"label":"Atonement","description":"Fledgling writer Briony Tallis, as a 13-year-old, irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit. Based on the British romance novel by Ian McEwan.","id":"4347","runtime":130,"imdbId":"tt0783233","trailer":"http:\/\/www.youtube.com\/watch?v=WZAttjca0b8","homepage":"http:\/\/www.atonementthemovie.co.uk\/site\/site.html","version":342,"lastModified":"1301906822000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4bc91a24017a3c57fe00a133\/atonement-mid.jpg","studio":"Working Title Films","genre":"Drama","title":"Atonement","releaseDate":1188345600000,"language":"en","tagline":"Torn apart by betrayal. Separated by war. Bound by love.","type":"Movie","_key":"21754"} +{"label":"Joe Wright","version":43,"id":"36588","lastModified":"1302065990000","name":"Joe Wright","type":"Person","_key":"21755"} +{"label":"Saoirse Ronan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/928\/4c095bf0017a3c3519000928\/saoirse-ronan-profile.jpg","version":49,"id":"36592","lastModified":"1301901102000","name":"Saoirse Ronan","type":"Person","_key":"21756"} +{"label":"Pride & Prejudice","description":"Pride and Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr Bennet is an english gentleman living in Hartfordshire with his overbearing wife and 5 daughters. If Mr Bennet dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependant on the daughters making good marriages.","id":"4348","runtime":127,"imdbId":"tt0414387","trailer":"http:\/\/www.youtube.com\/watch?v=cTZAzVzFShw","homepage":"http:\/\/www.prideandprejudicemovie.net\/splash.html","version":454,"lastModified":"1301902074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f64\/4d21f4217b9aa17373002f64\/pride-prejudice-mid.jpg","studio":"Focus Features","genre":"Drama","title":"Pride & Prejudice","releaseDate":1122249600000,"language":"en","tagline":"A romance ahead of its time.","type":"Movie","_key":"21757"} +{"label":"Rosamund Pike","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4bd70e12017a3c21f60000ce\/rosamund-pike-profile.jpg","version":64,"id":"10882","lastModified":"1301979595000","name":"Rosamund Pike","type":"Person","_key":"21758"} +{"label":"Talulah Riley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bc\/4c7c92be7b9aa109780000bc\/talulah-riley-profile.jpg","version":45,"birthday":"496533600000","id":"66441","birthplace":"Hertfordshire, United Kingdom","lastModified":"1301901379000","name":"Talulah Riley","type":"Person","_key":"21759"} +{"label":"Carey Mulligan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/036\/4bf03dd4017a3c7fa3000036\/carey-mulligan-profile.jpg","version":62,"id":"36662","lastModified":"1301904087000","name":"Carey Mulligan","type":"Person","_key":"21760"} +{"label":"Claudie Blakley","version":26,"id":"36663","lastModified":"1301901547000","name":"Claudie Blakley","type":"Person","_key":"21761"} +{"label":"Sylvester Morand","version":23,"id":"36664","lastModified":"1301901920000","name":"Sylvester Morand","type":"Person","_key":"21762"} +{"label":"Simon Woods","version":30,"id":"36665","lastModified":"1301901996000","name":"Simon Woods","type":"Person","_key":"21763"} +{"label":"Pip Torrens","version":28,"id":"36666","lastModified":"1301901763000","name":"Pip Torrens","type":"Person","_key":"21764"} +{"label":"Janet Whiteside","version":22,"id":"36667","lastModified":"1301901920000","name":"Janet Whiteside","type":"Person","_key":"21765"} +{"label":"Sinead Matthews","version":26,"id":"36668","lastModified":"1301901771000","name":"Sinead Matthews","type":"Person","_key":"21766"} +{"label":"Rupert Friend","version":43,"id":"36669","lastModified":"1301979595000","name":"Rupert Friend","type":"Person","_key":"21767"} +{"label":"Rosamund Stephen","version":23,"id":"36671","lastModified":"1301902004000","name":"Rosamund Stephen","type":"Person","_key":"21768"} +{"label":"Tamzin Merchant","version":22,"id":"36672","lastModified":"1301901920000","name":"Tamzin Merchant","type":"Person","_key":"21769"} +{"label":"The Kingdom","description":"A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.","id":"4349","runtime":110,"imdbId":"tt0431197","trailer":"http:\/\/www.youtube.com\/watch?v=244","homepage":"http:\/\/www.thekingdommovie.com\/","version":548,"lastModified":"1302064940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffd\/4d150f097b9aa11486001ffd\/the-kingdom-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Kingdom","releaseDate":1187740800000,"language":"en","tagline":"How do you stop an enemy who isn't afraid to die?","type":"Movie","_key":"21770"} +{"label":"Bordertown","description":"The opening titles explain that American corporations are using the North American Free Trade Agreement by opening large maquiladoras right across the United States\u2013Mexico border. The maquiladoras hire mostly Mexican women to work long hours for little money in order to produce mass quantity products.Lauren Adrian (Jennifer Lopez), an impassioned American news reporter for the \"Chicago Sentinel\" wants to be assigned to the Iraq front-lines to cover the war. Instead, her editor George Morgan (Mar","id":"4351","runtime":118,"imdbId":"tt0445935","version":358,"lastModified":"1301902969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19e\/4bc91a37017a3c57fe00a19e\/bordertown-mid.jpg","studio":"El Norte Productions","genre":"Drama","title":"Bordertown","releaseDate":1171497600000,"language":"en","type":"Movie","_key":"21771"} +{"label":"Gregory Nava","version":32,"id":"16395","lastModified":"1301903107000","name":"Gregory Nava","type":"Person","_key":"21772"} +{"label":"Maya Zapata","version":25,"id":"36638","lastModified":"1301901493000","name":"Maya Zapata","type":"Person","_key":"21773"} +{"label":"Kate del Castillo","version":23,"id":"36628","lastModified":"1301901708000","name":"Kate del Castillo","type":"Person","_key":"21774"} +{"label":"John Norman","version":20,"id":"36630","lastModified":"1301901540000","name":"John Norman","type":"Person","_key":"21775"} +{"label":"Randall Batinkoff","version":31,"id":"36631","lastModified":"1301901376000","name":"Randall Batinkoff","type":"Person","_key":"21776"} +{"label":"Juan Diego Botto","version":24,"id":"36632","lastModified":"1301901826000","name":"Juan Diego Botto","type":"Person","_key":"21777"} +{"label":"Irineo Alvarez","version":20,"id":"36633","lastModified":"1301901540000","name":"Irineo Alvarez","type":"Person","_key":"21778"} +{"label":"Julio Cedillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4c3d16b95e73d60360000006\/julio-cedillo-profile.jpg","version":28,"id":"36634","lastModified":"1301901821000","name":"Julio Cedillo","type":"Person","_key":"21779"} +{"label":"Zaide Silvia Guti\u00e9rrez","version":25,"id":"36635","lastModified":"1301901540000","name":"Zaide Silvia Guti\u00e9rrez","type":"Person","_key":"21780"} +{"label":"Ronald Hamilton","version":20,"id":"36636","lastModified":"1301901741000","name":"Ronald Hamilton","type":"Person","_key":"21781"} +{"label":"Brandon Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4d4488bc7b9aa15bf5001120\/brandon-smith-profile.jpg","version":36,"id":"36637","lastModified":"1301901586000","name":"Brandon Smith","type":"Person","_key":"21782"} +{"label":"The Trap","description":"\"THE TRAP\" is a modern film noir reflecting the true face of Serbian (Eastern European) 'society in transition.' It's a story that could happen to you. It is a film about an ordinary man, who is forced to choose between life and death of his own child.","id":"4352","runtime":106,"imdbId":"tt0478813","trailer":"http:\/\/www.youtube.com\/watch?v=245","version":213,"lastModified":"1301904294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bd\/4bc91a3b017a3c57fe00a1bd\/klopka-the-trap-mid.jpg","studio":"Film House Bas Celik","genre":"Drama","title":"The Trap","releaseDate":1171238400000,"language":"en","type":"Movie","_key":"21783"} +{"label":"Srdan Golubovic","version":26,"id":"36639","lastModified":"1301901549000","name":"Srdan Golubovic","type":"Person","_key":"21784"} +{"label":"Neboj\u0161a Glogovac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/981\/4d7d50e97b9aa13f87001981\/neboj-a-glogovac-profile.jpg","version":35,"id":"36651","lastModified":"1301901502000","name":"Neboj\u0161a Glogovac","type":"Person","_key":"21785"} +{"label":"Natasa Ninkovic","version":30,"id":"36647","lastModified":"1301901435000","name":"Natasa Ninkovic","type":"Person","_key":"21786"} +{"label":"Anica Dobra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/636\/4d7d4fdb7b9aa11a08019636\/anica-dobra-profile.jpg","version":35,"id":"36653","lastModified":"1301901415000","name":"Anica Dobra","type":"Person","_key":"21787"} +{"label":"Boris Isakovic","version":25,"id":"36659","lastModified":"1301901761000","name":"Boris Isakovic","type":"Person","_key":"21788"} +{"label":"Marko Djurovic","version":24,"id":"36660","lastModified":"1301901833000","name":"Marko Djurovic","type":"Person","_key":"21789"} +{"label":"Vuk Kostic","version":28,"id":"85691","lastModified":"1301902047000","name":"Vuk Kostic","type":"Person","_key":"21790"} +{"label":"Vojin \u0106etkovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/577\/4d1df3537b9aa17367000577\/vojin-etkovi-profile.jpg","version":38,"id":"144630","lastModified":"1301901917000","name":"Vojin \u0106etkovi\u0107","type":"Person","_key":"21791"} +{"label":"Miki Manojlovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b81\/4d7fa68e7b9aa11a0c01bb81\/miki-manojlovi-profile.jpg","version":33,"id":"48791","lastModified":"1301901667000","name":"Miki Manojlovi\u0107","type":"Person","_key":"21792"} +{"label":"Milorad Mandi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fae\/4d6401165e73d60c68004fae\/milorad-mandic-profile.jpg","version":30,"id":"111055","lastModified":"1301902685000","name":"Milorad Mandi\u0107","type":"Person","_key":"21793"} +{"label":"Vera Br\u00fchne","description":"No overview found.","id":"4364","runtime":286,"imdbId":"tt0259302","version":87,"lastModified":"1301903855000","studio":"Constantin Film Produktion GmbH","genre":"Crime","title":"Vera Br\u00fchne","releaseDate":980294400000,"language":"en","type":"Movie","_key":"21794"} +{"label":"Anton Pointecker","version":19,"id":"36743","lastModified":"1301901741000","name":"Anton Pointecker","type":"Person","_key":"21795"} +{"label":"Bernd Fischerauer","version":19,"id":"36744","lastModified":"1301901741000","name":"Bernd Fischerauer","type":"Person","_key":"21796"} +{"label":"Mavie H\u00f6rbiger","version":25,"id":"36745","lastModified":"1301901317000","name":"Mavie H\u00f6rbiger","type":"Person","_key":"21797"} +{"label":"Michael Degen","version":21,"id":"28437","lastModified":"1301901935000","name":"Michael Degen","type":"Person","_key":"21798"} +{"label":"Agathe Taffertshofer","version":19,"id":"36747","lastModified":"1301901741000","name":"Agathe Taffertshofer","type":"Person","_key":"21799"} +{"label":"Hans-Peter Korff","version":22,"id":"36749","lastModified":"1301901567000","name":"Hans-Peter Korff","type":"Person","_key":"21800"} +{"label":"Josef Hannesschl\u00e4ger","version":20,"id":"36750","lastModified":"1301901741000","name":"Josef Hannesschl\u00e4ger","type":"Person","_key":"21801"} +{"label":"Kai Ivo Baulitz","version":19,"id":"36751","lastModified":"1301901741000","name":"Kai Ivo Baulitz","type":"Person","_key":"21802"} +{"label":"Marit Falk","version":19,"id":"36752","lastModified":"1301901741000","name":"Marit Falk","type":"Person","_key":"21803"} +{"label":"Karl-Heinz Gierke","version":19,"id":"36753","lastModified":"1301901741000","name":"Karl-Heinz Gierke","type":"Person","_key":"21804"} +{"label":"Eva Maria Bayerwaltes","version":18,"id":"36754","lastModified":"1301901688000","name":"Eva Maria Bayerwaltes","type":"Person","_key":"21805"} +{"label":"Peter Prager","version":24,"id":"36755","lastModified":"1301901540000","name":"Peter Prager","type":"Person","_key":"21806"} +{"label":"Irina Wanka","version":21,"id":"36756","lastModified":"1301901709000","name":"Irina Wanka","type":"Person","_key":"21807"} +{"label":"Matthias Heidepriem","version":19,"id":"36757","lastModified":"1301901902000","name":"Matthias Heidepriem","type":"Person","_key":"21808"} +{"label":"Rainer Koch","version":19,"id":"36758","lastModified":"1301901902000","name":"Rainer Koch","type":"Person","_key":"21809"} +{"label":"Peter Wei\u00df","version":19,"id":"36759","lastModified":"1301901741000","name":"Peter Wei\u00df","type":"Person","_key":"21810"} +{"label":"Dieter Goertz","version":19,"id":"36760","lastModified":"1301901902000","name":"Dieter Goertz","type":"Person","_key":"21811"} +{"label":"Johannes Langemann","version":19,"id":"36761","lastModified":"1301901902000","name":"Johannes Langemann","type":"Person","_key":"21812"} +{"label":"Johann M\u00fchlberger","version":19,"id":"36762","lastModified":"1301901741000","name":"Johann M\u00fchlberger","type":"Person","_key":"21813"} +{"label":"Hans-J\u00fcrgen Stockerl","version":19,"id":"36763","lastModified":"1301901902000","name":"Hans-J\u00fcrgen Stockerl","type":"Person","_key":"21814"} +{"label":"Juliane Binsch","version":18,"id":"36764","lastModified":"1301901810000","name":"Juliane Binsch","type":"Person","_key":"21815"} +{"label":"Katja Flint","version":35,"id":"36765","lastModified":"1301901410000","name":"Katja Flint","type":"Person","_key":"21816"} +{"label":"Michael Jahreis","version":19,"id":"36766","lastModified":"1301901902000","name":"Michael Jahreis","type":"Person","_key":"21817"} +{"label":"Valerie Niehaus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cb\/4cb225435e73d65b840004cb\/valerie-niehaus-profile.jpg","version":28,"id":"36767","lastModified":"1301901445000","name":"Valerie Niehaus","type":"Person","_key":"21818"} +{"label":"Gudrun Gundelach","version":19,"id":"36768","lastModified":"1301901741000","name":"Gudrun Gundelach","type":"Person","_key":"21819"} +{"label":"Oliver Tataru","version":20,"id":"36769","lastModified":"1301902004000","name":"Oliver Tataru","type":"Person","_key":"21820"} +{"label":"Udo Wachtveitl","version":22,"id":"36770","lastModified":"1301901656000","name":"Udo Wachtveitl","type":"Person","_key":"21821"} +{"label":"Munchies","description":"No overview found.","id":"4365","runtime":87,"imdbId":"tt0093582","version":105,"lastModified":"1301904355000","studio":"New Horizon Corporation","genre":"Comedy","title":"Munchies","releaseDate":541555200000,"language":"en","type":"Movie","_key":"21822"} +{"label":"Charlie Stratton","version":20,"id":"37597","lastModified":"1301901792000","name":"Charlie Stratton","type":"Person","_key":"21823"} +{"label":"Alix Elias","version":22,"id":"37598","lastModified":"1301901968000","name":"Alix Elias","type":"Person","_key":"21824"} +{"label":"Charlie Phillips","version":20,"id":"37599","lastModified":"1301901968000","name":"Charlie Phillips","type":"Person","_key":"21825"} +{"label":"Wendy Schaal","version":35,"id":"37600","lastModified":"1301901499000","name":"Wendy Schaal","type":"Person","_key":"21826"} +{"label":"Lori Birdsong","version":20,"id":"37601","lastModified":"1301902004000","name":"Lori Birdsong","type":"Person","_key":"21827"} +{"label":"Tina Hirsch","version":30,"id":"16157","lastModified":"1302059066000","name":"Tina Hirsch","type":"Person","_key":"21828"} +{"label":"L'Autrichienne","description":"No overview found.","id":"4366","runtime":98,"imdbId":"tt0096857","version":58,"lastModified":"1301907301000","studio":"Lira Films","genre":"Drama","title":"L'Autrichienne","releaseDate":653702400000,"language":"en","type":"Movie","_key":"21829"} +{"label":"Jean-Pol Dubois","version":21,"id":"32949","lastModified":"1301901790000","name":"Jean-Pol Dubois","type":"Person","_key":"21830"} +{"label":"Fr\u00e9d\u00e9ric van den Driessche","version":25,"id":"37605","lastModified":"1301902012000","name":"Fr\u00e9d\u00e9ric van den Driessche","type":"Person","_key":"21831"} +{"label":"Christian Charmetant","version":22,"id":"37606","lastModified":"1301901796000","name":"Christian Charmetant","type":"Person","_key":"21832"} +{"label":"G\u00e9raldine Danon","version":22,"id":"37607","lastModified":"1301901639000","name":"G\u00e9raldine Danon","type":"Person","_key":"21833"} +{"label":"Christophe Brault","version":19,"id":"37608","lastModified":"1301901760000","name":"Christophe Brault","type":"Person","_key":"21834"} +{"label":"Christian Bouillette","version":23,"id":"37609","lastModified":"1301901632000","name":"Christian Bouillette","type":"Person","_key":"21835"} +{"label":"Michel Herbault","version":20,"id":"37610","lastModified":"1301901681000","name":"Michel Herbault","type":"Person","_key":"21836"} +{"label":"Michel Favory","version":19,"id":"37611","lastModified":"1301901632000","name":"Michel Favory","type":"Person","_key":"21837"} +{"label":"Bernard Freyd","version":19,"id":"37612","lastModified":"1301901632000","name":"Bernard Freyd","type":"Person","_key":"21838"} +{"label":"Cat on a Hot Tin Roof","description":"No overview found.","id":"4367","runtime":144,"imdbId":"tt0088888","version":79,"lastModified":"1301906085000","genre":"Drama","title":"Cat on a Hot Tin Roof","releaseDate":473385600000,"language":"en","type":"Movie","_key":"21839"} +{"label":"Jack Hofsiss","version":20,"id":"37653","lastModified":"1301901593000","name":"Jack Hofsiss","type":"Person","_key":"21840"} +{"label":"Dark Wolf","description":"No overview found.","id":"4368","runtime":94,"imdbId":"tt0326820","version":66,"lastModified":"1301906678000","studio":"20th Century Fox","genre":"Horror","title":"Dark Wolf","releaseDate":1050364800000,"language":"en","type":"Movie","_key":"21841"} +{"label":"Richard Friedman","version":22,"id":"39167","lastModified":"1301901499000","name":"Richard Friedman","type":"Person","_key":"21842"} +{"label":"Ryan Alosio","version":28,"id":"39170","lastModified":"1301901447000","name":"Ryan Alosio","type":"Person","_key":"21843"} +{"label":"Andrea Bogart","version":23,"id":"39171","lastModified":"1301901659000","name":"Andrea Bogart","type":"Person","_key":"21844"} +{"label":"Jaime Bergman","version":20,"id":"39173","lastModified":"1301901514000","name":"Jaime Bergman","type":"Person","_key":"21845"} +{"label":"Sasha Craig","version":20,"id":"39174","lastModified":"1301901967000","name":"Sasha Craig","type":"Person","_key":"21846"} +{"label":"Juste une question d'amour","description":"No overview found.","id":"4369","runtime":88,"imdbId":"tt0231844","version":91,"lastModified":"1301906085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c6\/4bc91a3d017a3c57fe00a1c6\/juste-une-question-d-amour-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Drama","title":"Juste une question d'amour","releaseDate":948844800000,"language":"en","type":"Movie","_key":"21847"} +{"label":"Christian Faure","version":24,"id":"38446","lastModified":"1301901777000","name":"Christian Faure","type":"Person","_key":"21848"} +{"label":"Cyrille Thouvenin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5c\/4d760c2c5e73d66466000a5c\/cyrille-thouvenin-profile.jpg","biography":"Cyrille Thouvenin est un acteur de cin\u00e9ma et de th\u00e9\u00e2tre fran\u00e7ais n\u00e9 le 15 mai 1976, ancien \u00e9l\u00e8ve du cours Florent et dipl\u00f4m\u00e9 du Conservatoire national sup\u00e9rieur d'art dramatique (promotion 2001). Passionn\u00e9 par Moli\u00e8re, il a d\u00e9but\u00e9 \u00e0 la t\u00e9l\u00e9vision puis a rapidement fait ses classes au cin\u00e9ma. Il est nomm\u00e9 aux C\u00e9sars en 2001 en tant que Meilleur Espoir Masculin pour La Confusion des genres. Il encha\u00eene ensuite les r\u00f4les au cin\u00e9ma et \u00e0 la t\u00e9l\u00e9vision. Il n'oublie pas le th\u00e9\u00e2tre, et se consacre aussi","version":23,"birthday":"200962800000","id":"38449","lastModified":"1301901477000","name":"Cyrille Thouvenin","type":"Person","_key":"21849"} +{"label":"St\u00e9phan Gu\u00e9rin-Tilli\u00e9","biography":"St\u00e9phan Gu\u00e9rin-Tilli\u00e9 est n\u00e9 \u00e0 Reims. Il a pass\u00e9 une partie de son enfance \u00e0 Aurillac dans le Cantal. Suite \u00e0 sa rencontre avec Pierre Romans (metteur en sc\u00e8ne), il entre au cours Florent et travaille avec Raymond Acquaviva et Isabelle Nanty.\n\nIl fait ses premiers pas au th\u00e9\u00e2tre sous la direction de Fran\u00e7oise Petit et de Thierry de Peretti. Les r\u00f4les \u00e0 la t\u00e9l\u00e9vision et au cin\u00e9ma vont ensuite se succ\u00e9der.\n\nD\u00e9couvert par le grand public en 1997 gr\u00e2ce \u00e0 son premier r\u00f4le principal dans Quatre Gar\u00e7on","version":26,"id":"38450","birthplace":"Reims","lastModified":"1301901469000","name":"St\u00e9phan Gu\u00e9rin-Tilli\u00e9","type":"Person","_key":"21850"} +{"label":"Caroline Veyt","version":20,"id":"38451","lastModified":"1301901620000","name":"Caroline Veyt","type":"Person","_key":"21851"} +{"label":"Dani\u00e8le Denie","version":20,"id":"38452","lastModified":"1301901902000","name":"Dani\u00e8le Denie","type":"Person","_key":"21852"} +{"label":"Idwig Stephane","version":20,"id":"38453","lastModified":"1301901902000","name":"Idwig Stephane","type":"Person","_key":"21853"} +{"label":"La Banqui\u00e8re","description":"No overview found.","id":"4370","runtime":131,"imdbId":"tt0080415","version":55,"lastModified":"1301904241000","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"La Banqui\u00e8re","releaseDate":336182400000,"language":"en","type":"Movie","_key":"21854"} +{"label":"La voleuse","description":"No overview found.","id":"4371","runtime":88,"imdbId":"tt0061164","version":60,"lastModified":"1301907425000","studio":"Procinex","genre":"Drama","title":"La voleuse","releaseDate":-105753600000,"language":"en","type":"Movie","_key":"21855"} +{"label":"Jean Chapot","version":25,"id":"39503","lastModified":"1301901659000","name":"Jean Chapot","type":"Person","_key":"21856"} +{"label":"Sonia Schwarz","version":20,"id":"40237","lastModified":"1301902030000","name":"Sonia Schwarz","type":"Person","_key":"21857"} +{"label":"Mario Huth","version":20,"id":"40238","lastModified":"1301901677000","name":"Mario Huth","type":"Person","_key":"21858"} +{"label":"My Lover, My Son","description":"No overview found.","id":"4373","runtime":96,"imdbId":"tt0066113","version":38,"lastModified":"1301419613000","studio":"Metro-Goldwyn-Mayer","title":"My Lover, My Son","releaseDate":11404800000,"language":"en","type":"Movie","_key":"21859"} +{"label":"Donald Houston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/070\/4c49b3dc7b9aa11600000070\/donald-houston-profile.jpg","version":26,"id":"38358","lastModified":"1301901499000","name":"Donald Houston","type":"Person","_key":"21860"} +{"label":"Dennis Waterman","version":30,"id":"38359","lastModified":"1301996032000","name":"Dennis Waterman","type":"Person","_key":"21861"} +{"label":"John Newland","version":19,"id":"15766","lastModified":"1301901792000","name":"John Newland","type":"Person","_key":"21862"} +{"label":"Otley","description":"No overview found.","id":"4374","runtime":91,"imdbId":"tt0064775","version":93,"lastModified":"1301906178000","studio":"Columbia Pictures Corporation","genre":"Action","title":"Otley","releaseDate":-39484800000,"language":"en","type":"Movie","_key":"21863"} +{"label":"Dick Clement","version":54,"id":"18910","lastModified":"1301903113000","name":"Dick Clement","type":"Person","_key":"21864"} +{"label":"Alan Badel","version":32,"id":"39065","lastModified":"1301901499000","name":"Alan Badel","type":"Person","_key":"21865"} +{"label":"Triple Cross","description":"A safecracker turns double agent during WWII.","id":"4375","runtime":140,"imdbId":"tt0061647","version":75,"lastModified":"1301908605000","studio":"Warner Bros. Pictures","genre":"Action","title":"Triple Cross","releaseDate":-96681600000,"language":"en","type":"Movie","_key":"21866"} +{"label":"Dallas Doll","description":"No overview found.","id":"4376","runtime":104,"imdbId":"tt0109526","version":41,"lastModified":"1301905716000","studio":"Australian Broadcasting Corporation","genre":"Comedy","title":"Dallas Doll","releaseDate":783820800000,"language":"en","type":"Movie","_key":"21867"} +{"label":"Victoria Longley","version":20,"id":"40045","lastModified":"1301901791000","name":"Victoria Longley","type":"Person","_key":"21868"} +{"label":"Frank Gallacher","version":25,"id":"40046","lastModified":"1301901664000","name":"Frank Gallacher","type":"Person","_key":"21869"} +{"label":"Jake Blundell","version":20,"id":"40047","lastModified":"1301901568000","name":"Jake Blundell","type":"Person","_key":"21870"} +{"label":"Ann Turner","version":23,"id":"36772","lastModified":"1301901377000","name":"Ann Turner","type":"Person","_key":"21871"} +{"label":"Ein Leben lang kurze Hosen tragen","description":"Investigation into the personality of a teenager that kills other youth.","id":"4377","runtime":83,"imdbId":"tt0355683","version":57,"lastModified":"1301904241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4c53aff57b9aa147f4000248\/ein-leben-lang-kurze-hosen-tragen-mid.jpg","studio":"MTM Cineteve","genre":"Crime","title":"Ein Leben lang kurze Hosen tragen","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"21872"} +{"label":"Kai S. Pieck","version":20,"id":"36778","lastModified":"1301901902000","name":"Kai S. Pieck","type":"Person","_key":"21873"} +{"label":"Ulrike Bliefert","version":19,"id":"36786","lastModified":"1301901741000","name":"Ulrike Bliefert","type":"Person","_key":"21874"} +{"label":"J\u00fcrgen Christoph Kamcke","version":19,"id":"36788","lastModified":"1301901902000","name":"J\u00fcrgen Christoph Kamcke","type":"Person","_key":"21875"} +{"label":"Roland Riebeling","version":18,"id":"36789","lastModified":"1301902024000","name":"Roland Riebeling","type":"Person","_key":"21876"} +{"label":"Hans-Joachim Kulenkampff","version":22,"id":"36790","lastModified":"1301901658000","name":"Hans-Joachim Kulenkampff","type":"Person","_key":"21877"} +{"label":"Nachruf auf eine Bestie","description":"No overview found.","id":"4378","runtime":60,"imdbId":"tt0087773","version":36,"lastModified":"1300978303000","studio":"ZDF","genre":"Documentary","title":"Nachruf auf eine Bestie","releaseDate":473385600000,"language":"en","type":"Movie","_key":"21878"} +{"label":"J\u00fcrgen Bartsch","version":20,"id":"36777","lastModified":"1301901659000","name":"J\u00fcrgen Bartsch","type":"Person","_key":"21879"} +{"label":"Wilfried Rasch","version":20,"id":"36796","lastModified":"1301901792000","name":"Wilfried Rasch","type":"Person","_key":"21880"} +{"label":"Monster-in-Law","description":"Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.","id":"4379","runtime":101,"imdbId":"tt0369735","version":352,"lastModified":"1301902346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ad\/4d61a01b5e73d60c6d0035ad\/monster-in-law-mid.jpg","studio":"Avery Pix","genre":"Comedy","title":"Monster-in-Law","releaseDate":1115251200000,"language":"en","tagline":"This relationship is going to be a real mother.","type":"Movie","_key":"21881"} +{"label":"Robert Luketic","version":61,"id":"36797","lastModified":"1301901201000","name":"Robert Luketic","type":"Person","_key":"21882"} +{"label":"Michael Vartan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4cf6c2297b9aa15146001026\/michael-vartan-profile.jpg","version":43,"id":"15424","lastModified":"1301901206000","name":"Michael Vartan","type":"Person","_key":"21883"} +{"label":"Adam Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f2\/4cc47de35e73d677830018f2\/adam-scott-profile.jpg","version":85,"id":"36801","lastModified":"1301901183000","name":"Adam Scott","type":"Person","_key":"21884"} +{"label":"Elaine Stritch","version":30,"id":"36802","lastModified":"1301901491000","name":"Elaine Stritch","type":"Person","_key":"21885"} +{"label":"Stephen Dunham","version":26,"id":"36803","lastModified":"1301901902000","name":"Stephen Dunham","type":"Person","_key":"21886"} +{"label":"Shall We Dance","description":"A romantic comedy where a bored, overworked Estate Lawyer, upon first sight of a beautiful instructor, signs up for ballroom dancing lessons.","id":"4380","runtime":107,"imdbId":"tt0358135","homepage":"http:\/\/www.miramax.com\/shallwedance\/","version":559,"lastModified":"1301903889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dc\/4bc91a3f017a3c57fe00a1dc\/shall-we-dance-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Shall We Dance","releaseDate":1097798400000,"language":"en","type":"Movie","_key":"21887"} +{"label":"Peter Chelsom","version":37,"id":"36804","lastModified":"1301901495000","name":"Peter Chelsom","type":"Person","_key":"21888"} +{"label":"Tamara Hope","version":26,"id":"36810","lastModified":"1301901779000","name":"Tamara Hope","type":"Person","_key":"21889"} +{"label":"Nick Cannon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c85\/4cf3ec765e73d62387000c85\/nick-cannon-profile.jpg","version":42,"id":"36811","lastModified":"1301901250000","name":"Nick Cannon","type":"Person","_key":"21890"} +{"label":"Sarah Lafleur","version":19,"id":"36812","lastModified":"1301901902000","name":"Sarah Lafleur","type":"Person","_key":"21891"} +{"label":"Onalee Ames","version":24,"id":"36813","lastModified":"1301901620000","name":"Onalee Ames","type":"Person","_key":"21892"} +{"label":"Diana Salvatore","version":20,"id":"36814","lastModified":"1301902004000","name":"Diana Salvatore","type":"Person","_key":"21893"} +{"label":"Daphne Korol","version":19,"id":"36815","lastModified":"1301901902000","name":"Daphne Korol","type":"Person","_key":"21894"} +{"label":"David Sparrow","version":29,"id":"36816","lastModified":"1301901549000","name":"David Sparrow","type":"Person","_key":"21895"} +{"label":"Das M\u00e4dchen Rosemarie","description":"No overview found.","id":"4382","runtime":101,"imdbId":"tt0051963","version":70,"lastModified":"1301905649000","studio":"Roxy Film","genre":"Drama","title":"Das M\u00e4dchen Rosemarie","releaseDate":-363312000000,"language":"en","type":"Movie","_key":"21896"} +{"label":"Nadja Tiller","version":26,"id":"36836","lastModified":"1301901567000","name":"Nadja Tiller","type":"Person","_key":"21897"} +{"label":"Carl Raddatz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b7\/4cdb11e65e73d676d30009b7\/carl-raddatz-profile.jpg","version":24,"id":"36837","lastModified":"1301901659000","name":"Carl Raddatz","type":"Person","_key":"21898"} +{"label":"Hanne Wieder","version":21,"id":"36838","lastModified":"1301901902000","name":"Hanne Wieder","type":"Person","_key":"21899"} +{"label":"Jo Herbst","version":21,"id":"36825","lastModified":"1301901620000","name":"Jo Herbst","type":"Person","_key":"21900"} +{"label":"Werner Peters","version":34,"id":"36839","lastModified":"1301901961000","name":"Werner Peters","type":"Person","_key":"21901"} +{"label":"Horst Frank","version":22,"id":"18966","lastModified":"1301901620000","name":"Horst Frank","type":"Person","_key":"21902"} +{"label":"Erik von Loewis","version":20,"id":"36840","lastModified":"1301902004000","name":"Erik von Loewis","type":"Person","_key":"21903"} +{"label":"Helen Vita","version":23,"id":"36841","lastModified":"1301901940000","name":"Helen Vita","type":"Person","_key":"21904"} +{"label":"Die Wahrheit \u00fcber Rosemarie","description":"No overview found.","id":"4383","runtime":101,"imdbId":"tt0053432","version":70,"lastModified":"1301906650000","genre":"Drama","title":"Die Wahrheit \u00fcber Rosemarie","releaseDate":-321667200000,"language":"en","type":"Movie","_key":"21905"} +{"label":"Rudolf Jugert","version":20,"id":"36842","lastModified":"1301901547000","name":"Rudolf Jugert","type":"Person","_key":"21906"} +{"label":"Belinda Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db9\/4c0e4c0c017a3c29a6000db9\/belinda-lee-profile.jpg","version":25,"id":"36851","lastModified":"1301901558000","name":"Belinda Lee","type":"Person","_key":"21907"} +{"label":"Karl Sch\u00f6nb\u00f6ck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4ca095d55e73d612d7000007\/karl-schonbock-profile.jpg","version":26,"id":"36852","lastModified":"1301901564000","name":"Karl Sch\u00f6nb\u00f6ck","type":"Person","_key":"21908"} +{"label":"Annette Grau","version":19,"id":"36853","lastModified":"1301901756000","name":"Annette Grau","type":"Person","_key":"21909"} +{"label":"Hanna Micaela","version":19,"id":"36854","lastModified":"1301901629000","name":"Hanna Micaela","type":"Person","_key":"21910"} +{"label":"Claus Wilcke","version":21,"id":"36856","lastModified":"1301901629000","name":"Claus Wilcke","type":"Person","_key":"21911"} +{"label":"Rosemaries Tochter","description":"No overview found.","id":"4384","runtime":92,"imdbId":"tt0075154","version":63,"lastModified":"1300978304000","studio":"Roxy Film","genre":"Drama","title":"Rosemaries Tochter","releaseDate":217209600000,"language":"en","type":"Movie","_key":"21912"} +{"label":"Lillian M\u00fcller","version":19,"id":"36888","lastModified":"1301901902000","name":"Lillian M\u00fcller","type":"Person","_key":"21913"} +{"label":"B\u00e9la Ernyei","version":18,"id":"36889","lastModified":"1301902025000","name":"B\u00e9la Ernyei","type":"Person","_key":"21914"} +{"label":"Werner Pochath","version":26,"id":"36890","lastModified":"1301901771000","name":"Werner Pochath","type":"Person","_key":"21915"} +{"label":"Tamara Lund","version":20,"id":"36891","lastModified":"1301901741000","name":"Tamara Lund","type":"Person","_key":"21916"} +{"label":"Silvia Simon","version":19,"id":"36892","lastModified":"1301901741000","name":"Silvia Simon","type":"Person","_key":"21917"} +{"label":"Walter Ullrich","version":19,"id":"36893","lastModified":"1301901741000","name":"Walter Ullrich","type":"Person","_key":"21918"} +{"label":"Ernst Lothar","version":19,"id":"36894","lastModified":"1301901741000","name":"Ernst Lothar","type":"Person","_key":"21919"} +{"label":"Gerd Rigauer","version":18,"id":"36895","lastModified":"1301901817000","name":"Gerd Rigauer","type":"Person","_key":"21920"} +{"label":"Georg-Simon Schiller","version":18,"id":"36896","lastModified":"1301901810000","name":"Georg-Simon Schiller","type":"Person","_key":"21921"} +{"label":"Hans Clarin","version":27,"id":"36897","lastModified":"1301901498000","name":"Hans Clarin","type":"Person","_key":"21922"} +{"label":"Claus Fuchs","version":19,"id":"36899","lastModified":"1301901741000","name":"Claus Fuchs","type":"Person","_key":"21923"} +{"label":"Rosemarie Nitribitt - Tod einer Edelhure","description":"No overview found.","id":"4385","runtime":50,"imdbId":"tt0481423","version":35,"lastModified":"1301908605000","genre":"Drama","title":"Rosemarie Nitribitt - Tod einer Edelhure","releaseDate":788918400000,"language":"en","type":"Movie","_key":"21924"} +{"label":"Catherine H. Flemming","version":23,"id":"36906","lastModified":"1301901791000","name":"Catherine H. Flemming","type":"Person","_key":"21925"} +{"label":"Maximilian Kr\u00fcckl","version":25,"id":"36907","lastModified":"1301901447000","name":"Maximilian Kr\u00fcckl","type":"Person","_key":"21926"} +{"label":"Walter Sittler","version":24,"id":"36908","lastModified":"1301901568000","name":"Walter Sittler","type":"Person","_key":"21927"} +{"label":"G\u00fcnter Scholz","version":16,"id":"36919","lastModified":"1301901818000","name":"G\u00fcnter Scholz","type":"Person","_key":"21928"} +{"label":"Les Assassins de l'ordre","description":"No overview found.","id":"4386","runtime":107,"imdbId":"tt0066789","version":63,"lastModified":"1301907285000","studio":"Les Productions Belles Rives","genre":"Crime","title":"Les Assassins de l'ordre","releaseDate":42422400000,"language":"en","type":"Movie","_key":"21929"} +{"label":"Paola Pitagora","version":25,"id":"36909","lastModified":"1301901684000","name":"Paola Pitagora","type":"Person","_key":"21930"} +{"label":"Fran\u00e7ois Cadet","version":20,"id":"36910","lastModified":"1301901642000","name":"Fran\u00e7ois Cadet","type":"Person","_key":"21931"} +{"label":"Roland Lesaffre","version":25,"id":"36911","lastModified":"1301901974000","name":"Roland Lesaffre","type":"Person","_key":"21932"} +{"label":"Fran\u00e7oise Giret","version":19,"id":"36912","lastModified":"1301901620000","name":"Fran\u00e7oise Giret","type":"Person","_key":"21933"} +{"label":"Jean Franval","version":19,"id":"36914","lastModified":"1301901620000","name":"Jean Franval","type":"Person","_key":"21934"} +{"label":"Pierre Maguelon","version":26,"id":"36915","lastModified":"1301901902000","name":"Pierre Maguelon","type":"Person","_key":"21935"} +{"label":"Alain Nobis","version":20,"id":"36916","lastModified":"1301901678000","name":"Alain Nobis","type":"Person","_key":"21936"} +{"label":"Serge Sauvion","version":22,"id":"36918","lastModified":"1301901937000","name":"Serge Sauvion","type":"Person","_key":"21937"} +{"label":"Das M\u00e4dchen Rosemarie","description":"No overview found.","id":"4387","runtime":135,"imdbId":"tt0117132","version":65,"lastModified":"1301907425000","studio":"Constantin Film","genre":"Crime","title":"Das M\u00e4dchen Rosemarie","releaseDate":850435200000,"language":"en","type":"Movie","_key":"21938"} +{"label":"Horst Krause","version":29,"id":"36928","lastModified":"1301924714000","name":"Horst Krause","type":"Person","_key":"21939"} +{"label":"Il vero e il falso","description":"No overview found.","id":"4391","runtime":99,"imdbId":"tt0067941","version":39,"lastModified":"1301906753000","studio":"Euro International Film","genre":"Crime","title":"Il vero e il falso","releaseDate":71452800000,"language":"en","type":"Movie","_key":"21940"} +{"label":"Shirley Corrigan","version":28,"id":"36932","lastModified":"1301901512000","name":"Shirley Corrigan","type":"Person","_key":"21941"} +{"label":"Adalberto Maria Merli","version":23,"id":"36933","lastModified":"1301902004000","name":"Adalberto Maria Merli","type":"Person","_key":"21942"} +{"label":"Maria Teresa Albani","version":20,"id":"36934","lastModified":"1301902004000","name":"Maria Teresa Albani","type":"Person","_key":"21943"} +{"label":"Strogoff","description":"No overview found.","id":"4393","runtime":94,"imdbId":"tt0065951","version":65,"lastModified":"1301906753000","studio":"CCC Filmkunst GmbH","genre":"Adventure","title":"Strogoff","releaseDate":25920000000,"language":"en","type":"Movie","_key":"21944"} +{"label":"Mimsy Farmer","version":31,"id":"36938","lastModified":"1301901352000","name":"Mimsy Farmer","type":"Person","_key":"21945"} +{"label":"Kurt Meisel","version":22,"id":"36941","lastModified":"1301902004000","name":"Kurt Meisel","type":"Person","_key":"21946"} +{"label":"Elisabeth Bergner","version":23,"id":"36942","lastModified":"1301901840000","name":"Elisabeth Bergner","type":"Person","_key":"21947"} +{"label":"Ma\u00eetre Pygmalion","description":"No overview found.","id":"4394","runtime":170,"imdbId":"tt0174015","version":40,"lastModified":"1301906177000","studio":"Institut Fran\u00e7ais de Formation pour l'image","genre":"Drama","title":"Ma\u00eetre Pygmalion","releaseDate":175651200000,"language":"en","type":"Movie","_key":"21948"} +{"label":"Jacques Nahum","version":20,"id":"36944","lastModified":"1301901678000","name":"Jacques Nahum","type":"Person","_key":"21949"} +{"label":"H\u00e9l\u00e8ne Durand","version":20,"id":"36945","lastModified":"1301902004000","name":"H\u00e9l\u00e8ne Durand","type":"Person","_key":"21950"} +{"label":"Dominique Paturel","version":21,"id":"36948","lastModified":"1301902009000","name":"Dominique Paturel","type":"Person","_key":"21951"} +{"label":"Engel aus Eisen","description":"No overview found.","id":"4395","runtime":105,"imdbId":"tt0082330","version":51,"lastModified":"1301906634000","studio":"Independent Productions","genre":"Crime","title":"Engel aus Eisen","releaseDate":356832000000,"language":"en","type":"Movie","_key":"21952"} +{"label":"Thomas Brasch","version":20,"id":"36963","lastModified":"1301901902000","name":"Thomas Brasch","type":"Person","_key":"21953"} +{"label":"Ulrich Wesselmann","version":19,"id":"36972","lastModified":"1301901902000","name":"Ulrich Wesselmann","type":"Person","_key":"21954"} +{"label":"Peter Brombacher","version":19,"id":"36973","lastModified":"1301901902000","name":"Peter Brombacher","type":"Person","_key":"21955"} +{"label":"Horst Laube","version":19,"id":"36974","lastModified":"1301901902000","name":"Horst Laube","type":"Person","_key":"21956"} +{"label":"J\u00fcrgen Flimm","version":19,"id":"26305","lastModified":"1301902110000","name":"J\u00fcrgen Flimm","type":"Person","_key":"21957"} +{"label":"Die Halbzarte","description":"No overview found.","id":"4396","runtime":92,"imdbId":"tt0051695","version":71,"lastModified":"1301905285000","studio":"Cosmopol-Film GmbH","genre":"Comedy","title":"Die Halbzarte","releaseDate":-343612800000,"language":"en","type":"Movie","_key":"21958"} +{"label":"Rudolf Nussgruber","version":19,"id":"37657","lastModified":"1301901382000","name":"Rudolf Nussgruber","type":"Person","_key":"21959"} +{"label":"Gertraud Jesserer","version":20,"id":"37673","lastModified":"1301901902000","name":"Gertraud Jesserer","type":"Person","_key":"21960"} +{"label":"Alfred Costas","version":19,"id":"37674","lastModified":"1301901902000","name":"Alfred Costas","type":"Person","_key":"21961"} +{"label":"Rudolf Forster","version":22,"id":"37675","lastModified":"1301901948000","name":"Rudolf Forster","type":"Person","_key":"21962"} +{"label":"Richard Eybner","version":20,"id":"37677","lastModified":"1301901620000","name":"Richard Eybner","type":"Person","_key":"21963"} +{"label":"Casanova & Co.","description":"No overview found.","id":"4397","runtime":104,"imdbId":"tt0074290","version":40,"lastModified":"1301908604000","studio":"C.O.F.C.I.","genre":"Comedy","title":"Casanova & Co.","releaseDate":226022400000,"language":"en","type":"Movie","_key":"21964"} +{"label":"Franz Antel","version":30,"id":"37860","lastModified":"1301901568000","name":"Franz Antel","type":"Person","_key":"21965"} +{"label":"Olivia Pascal","version":20,"id":"38584","lastModified":"1301901851000","name":"Olivia Pascal","type":"Person","_key":"21966"} +{"label":"Jean Lefebvre","version":53,"id":"37457","lastModified":"1301901261000","name":"Jean Lefebvre","type":"Person","_key":"21967"} +{"label":"Lissi und der wilde Kaiser","description":"No overview found.","id":"4398","runtime":85,"imdbId":"tt0498525","homepage":"http:\/\/www.lissi.film.de\/","version":102,"lastModified":"1301903075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e5\/4bc91a40017a3c57fe00a1e5\/lissi-und-der-wilde-kaiser-mid.jpg","studio":"herbX film GmbH","genre":"Animation","title":"Lissi und der wilde Kaiser","releaseDate":1193270400000,"language":"en","type":"Movie","_key":"21968"} +{"label":"Christian Tramitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78c\/4cf224355e73d61e3e00078c\/christian-tramitz-profile.jpg","version":38,"id":"37035","lastModified":"1301901184000","name":"Christian Tramitz","type":"Person","_key":"21969"} +{"label":"Rick Kavanian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84b\/4ce5583b5e73d60f6e00084b\/rick-kavanian-profile.jpg","version":32,"id":"37034","lastModified":"1301901192000","name":"Rick Kavanian","type":"Person","_key":"21970"} +{"label":"Lotte Ledl","version":23,"id":"50088","lastModified":"1301901781000","name":"Lotte Ledl","type":"Person","_key":"21971"} +{"label":"Wambo","description":"No overview found.","id":"4399","runtime":101,"imdbId":"tt0259102","version":47,"lastModified":"1301905724000","studio":"Diana Productions, Inc.","genre":"Drama","title":"Wambo","releaseDate":989712000000,"language":"en","type":"Movie","_key":"21972"} +{"label":"Ruth Drexel","version":22,"id":"37065","lastModified":"1301901673000","name":"Ruth Drexel","type":"Person","_key":"21973"} +{"label":"Alexander Lutz","version":20,"id":"37067","lastModified":"1301902007000","name":"Alexander Lutz","type":"Person","_key":"21974"} +{"label":"Bettina Redlich","version":24,"id":"37066","lastModified":"1301901516000","name":"Bettina Redlich","type":"Person","_key":"21975"} +{"label":"Christian Doermer","version":22,"id":"32934","lastModified":"1301902017000","name":"Christian Doermer","type":"Person","_key":"21976"} +{"label":"Anne Bennent","version":21,"id":"37069","lastModified":"1301902023000","name":"Anne Bennent","type":"Person","_key":"21977"} +{"label":"Heribert Sasse","version":18,"id":"37070","lastModified":"1301901990000","name":"Heribert Sasse","type":"Person","_key":"21978"} +{"label":"Rosemarie Gerstenberg","version":20,"id":"37071","lastModified":"1301902004000","name":"Rosemarie Gerstenberg","type":"Person","_key":"21979"} +{"label":"Part of the Game","description":"No overview found.","id":"4402","runtime":100,"imdbId":"tt0436660","version":83,"lastModified":"1301904683000","studio":"Infinite Reality Productions","genre":"Drama","title":"Part of the Game","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"21980"} +{"label":"Richard de Klerk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f5\/4d95092d5e73d6225d0024f5\/richard-de-klerk-profile.jpg","version":27,"id":"37073","lastModified":"1302011754000","name":"Richard de Klerk","type":"Person","_key":"21981"} +{"label":"Jovanna Huguet","version":20,"id":"37695","lastModified":"1301901659000","name":"Jovanna Huguet","type":"Person","_key":"21982"} +{"label":"Colin Lawrence","version":26,"id":"37696","lastModified":"1301901967000","name":"Colin Lawrence","type":"Person","_key":"21983"} +{"label":"Heather Feeney","version":20,"id":"37697","lastModified":"1301901659000","name":"Heather Feeney","type":"Person","_key":"21984"} +{"label":"Mackenzie Gray","version":27,"id":"37698","lastModified":"1301901674000","name":"Mackenzie Gray","type":"Person","_key":"21985"} +{"label":"Mitra Loraz","version":20,"id":"37699","lastModified":"1301901967000","name":"Mitra Loraz","type":"Person","_key":"21986"} +{"label":"Sam Easton","version":27,"id":"37700","lastModified":"1301901317000","name":"Sam Easton","type":"Person","_key":"21987"} +{"label":"Nicholas D'Angelo","version":20,"id":"37701","lastModified":"1301901967000","name":"Nicholas D'Angelo","type":"Person","_key":"21988"} +{"label":"Rick Alyea","version":21,"id":"37689","lastModified":"1301901512000","name":"Rick Alyea","type":"Person","_key":"21989"} +{"label":"Crossed","description":"No overview found.","id":"4403","runtime":83,"imdbId":"tt0472109","version":76,"lastModified":"1301417566000","studio":"Infinite Reality Productions","genre":"Drama","title":"Crossed","releaseDate":1160352000000,"language":"en","type":"Movie","_key":"21990"} +{"label":"Kyle Labine","version":23,"id":"39353","lastModified":"1301902004000","name":"Kyle Labine","type":"Person","_key":"21991"} +{"label":"Rebecca DeJong","version":20,"id":"39355","lastModified":"1301902004000","name":"Rebecca DeJong","type":"Person","_key":"21992"} +{"label":"Robert Duncan","version":20,"id":"39357","lastModified":"1301902004000","name":"Robert Duncan","type":"Person","_key":"21993"} +{"label":"Alastair Gamble","version":27,"id":"39358","lastModified":"1301901509000","name":"Alastair Gamble","type":"Person","_key":"21994"} +{"label":"Paul Anthony","version":18,"id":"10863","lastModified":"1301901854000","name":"Paul Anthony","type":"Person","_key":"21995"} +{"label":"Lucia Walters","version":20,"id":"39360","lastModified":"1301901967000","name":"Lucia Walters","type":"Person","_key":"21996"} +{"label":"Amy Couldwell","version":20,"id":"39362","lastModified":"1301901818000","name":"Amy Couldwell","type":"Person","_key":"21997"} +{"label":"The Three Investigators and The Secret Of Skeleton Island","description":"No overview found.","id":"4407","runtime":91,"imdbId":"tt0476603","version":94,"lastModified":"1301904018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ee\/4bc91a41017a3c57fe00a1ee\/the-three-investigators-and-the-secret-of-skeleton-island-mid.jpg","studio":"Studio Hamburg International Production","genre":"Adventure","title":"The Three Investigators and The Secret Of Skeleton Island","releaseDate":1194480000000,"language":"en","type":"Movie","_key":"21998"} +{"label":"Florian Baxmeyer","version":27,"id":"37076","lastModified":"1301901649000","name":"Florian Baxmeyer","type":"Person","_key":"21999"} +{"label":"Jan Sebastian Ballhaus","version":17,"id":"37077","lastModified":"1301901477000","name":"Jan Sebastian Ballhaus","type":"Person","_key":"22000"} +{"label":"Chancellor Miller","version":24,"id":"37087","lastModified":"1301901445000","name":"Chancellor Miller","type":"Person","_key":"22001"} +{"label":"Nick Price","version":27,"id":"37088","lastModified":"1301901836000","name":"Nick Price","type":"Person","_key":"22002"} +{"label":"Cameron Monaghan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58d\/4d9a34c35e73d63da400058d\/cameron-monaghan-profile.jpg","version":25,"id":"37089","lastModified":"1301944484000","name":"Cameron Monaghan","type":"Person","_key":"22003"} +{"label":"Naima Sebe","version":20,"id":"37090","lastModified":"1301901818000","name":"Naima Sebe","type":"Person","_key":"22004"} +{"label":"Fiona Ramsey","version":18,"id":"37091","lastModified":"1301901990000","name":"Fiona Ramsey","type":"Person","_key":"22005"} +{"label":"Akin Omotoso","version":19,"id":"37092","lastModified":"1301901902000","name":"Akin Omotoso","type":"Person","_key":"22006"} +{"label":"Langley Kirkwood","version":22,"id":"37093","lastModified":"1301901760000","name":"Langley Kirkwood","type":"Person","_key":"22007"} +{"label":"Der Hammerm\u00f6rder","description":"No overview found.","id":"4408","runtime":90,"imdbId":"tt0099728","version":49,"lastModified":"1301907285000","studio":"CCC Filmkunst GmbH","genre":"Crime","title":"Der Hammerm\u00f6rder","releaseDate":631152000000,"language":"en","type":"Movie","_key":"22008"} +{"label":"Bernd Schadewald","version":21,"id":"37096","lastModified":"1301901941000","name":"Bernd Schadewald","type":"Person","_key":"22009"} +{"label":"Silvan Oesterle","version":19,"id":"37103","lastModified":"1301901902000","name":"Silvan Oesterle","type":"Person","_key":"22010"} +{"label":"Timmy Vetter","version":19,"id":"37104","lastModified":"1301901620000","name":"Timmy Vetter","type":"Person","_key":"22011"} +{"label":"Ulrich Pleitgen","version":21,"id":"37105","lastModified":"1301901961000","name":"Ulrich Pleitgen","type":"Person","_key":"22012"} +{"label":"Verena Plangger","version":19,"id":"37106","lastModified":"1301901620000","name":"Verena Plangger","type":"Person","_key":"22013"} +{"label":"Walter Kreye","version":26,"id":"37107","lastModified":"1301901566000","name":"Walter Kreye","type":"Person","_key":"22014"} +{"label":"Rudolf Waldemar Brem","version":23,"id":"37108","lastModified":"1301901959000","name":"Rudolf Waldemar Brem","type":"Person","_key":"22015"} +{"label":"Les Risques du m\u00e9tier","description":"No overview found.","id":"4410","runtime":105,"imdbId":"tt0062204","version":48,"lastModified":"1301906634000","studio":"Gaumont","genre":"Drama","title":"Les Risques du m\u00e9tier","releaseDate":-64108800000,"language":"en","type":"Movie","_key":"22016"} +{"label":"Andr\u00e9 Cayatte","version":24,"id":"24909","lastModified":"1301901753000","name":"Andr\u00e9 Cayatte","type":"Person","_key":"22017"} +{"label":"Emmanuelle Riva","version":27,"id":"37110","lastModified":"1301901338000","name":"Emmanuelle Riva","type":"Person","_key":"22018"} +{"label":"Ren\u00e9 Dary","version":22,"id":"37111","lastModified":"1301901382000","name":"Ren\u00e9 Dary","type":"Person","_key":"22019"} +{"label":"Christine Fabr\u00e9ga","version":21,"id":"37113","lastModified":"1301901741000","name":"Christine Fabr\u00e9ga","type":"Person","_key":"22020"} +{"label":"Gabriel Gobin","version":29,"id":"37114","lastModified":"1301901442000","name":"Gabriel Gobin","type":"Person","_key":"22021"} +{"label":"Muriel Baptiste","version":19,"id":"37115","lastModified":"1301901620000","name":"Muriel Baptiste","type":"Person","_key":"22022"} +{"label":"Chantal Martin","version":19,"id":"37116","lastModified":"1301901741000","name":"Chantal Martin","type":"Person","_key":"22023"} +{"label":"Delphine Desyeux","version":19,"id":"37117","lastModified":"1301901741000","name":"Delphine Desyeux","type":"Person","_key":"22024"} +{"label":"Jacques Harden","version":20,"id":"37118","lastModified":"1301901741000","name":"Jacques Harden","type":"Person","_key":"22025"} +{"label":"Claudine Berg","version":19,"id":"37119","lastModified":"1301901620000","name":"Claudine Berg","type":"Person","_key":"22026"} +{"label":"Les Mis\u00e9rables","description":"No overview found.","id":"4412","runtime":210,"imdbId":"tt0050709","version":80,"lastModified":"1301906634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eaa\/4d90c6205e73d67c44000eaa\/les-mis-rables-mid.jpg","studio":"Soci\u00e9t\u00e9 Nationale Path\u00e9 Cin\u00e9ma","genre":"History","title":"Les Mis\u00e9rables","releaseDate":-372643200000,"language":"en","type":"Movie","_key":"22027"} +{"label":"Jean-Paul Le Chanois","version":23,"id":"37126","lastModified":"1301901942000","name":"Jean-Paul Le Chanois","type":"Person","_key":"22028"} +{"label":"B\u00e9atrice Altariba","version":21,"id":"37129","lastModified":"1301901620000","name":"B\u00e9atrice Altariba","type":"Person","_key":"22029"} +{"label":"Giani Esposito","version":21,"id":"37130","lastModified":"1301901620000","name":"Giani Esposito","type":"Person","_key":"22030"} +{"label":"Bourvil","version":63,"id":"37131","lastModified":"1301901288000","name":"Bourvil","type":"Person","_key":"22031"} +{"label":"Elfriede Florin","version":21,"id":"37132","lastModified":"1301901741000","name":"Elfriede Florin","type":"Person","_key":"22032"} +{"label":"Silvia Monfort","version":21,"id":"37133","lastModified":"1301902003000","name":"Silvia Monfort","type":"Person","_key":"22033"} +{"label":"Martine Havet","version":19,"id":"37134","lastModified":"1301901620000","name":"Martine Havet","type":"Person","_key":"22034"} +{"label":"Lucien Baroux","version":20,"id":"37135","lastModified":"1301901843000","name":"Lucien Baroux","type":"Person","_key":"22035"} +{"label":"Julienne Paroli","version":19,"id":"37136","lastModified":"1301901620000","name":"Julienne Paroli","type":"Person","_key":"22036"} +{"label":"Jean Ozenne","version":22,"id":"37137","lastModified":"1301901834000","name":"Jean Ozenne","type":"Person","_key":"22037"} +{"label":"Isabelle Lobbe","version":19,"id":"37138","lastModified":"1301901620000","name":"Isabelle Lobbe","type":"Person","_key":"22038"} +{"label":"Jimmy Urbain","version":19,"id":"37139","lastModified":"1301901902000","name":"Jimmy Urbain","type":"Person","_key":"22039"} +{"label":"Marc Eyraud","version":21,"id":"37140","lastModified":"1301901600000","name":"Marc Eyraud","type":"Person","_key":"22040"} +{"label":"Pierre Tabard","version":24,"id":"37141","lastModified":"1301902002000","name":"Pierre Tabard","type":"Person","_key":"22041"} +{"label":"Suzanne Nivette","version":19,"id":"37142","lastModified":"1301901620000","name":"Suzanne Nivette","type":"Person","_key":"22042"} +{"label":"Ren\u00e9 Fleur","version":19,"id":"37144","lastModified":"1301901620000","name":"Ren\u00e9 Fleur","type":"Person","_key":"22043"} +{"label":"Henri Gu\u00e9gan","version":20,"id":"37145","lastModified":"1301901620000","name":"Henri Gu\u00e9gan","type":"Person","_key":"22044"} +{"label":"Luc Andrieux","version":19,"id":"37146","lastModified":"1301901902000","name":"Luc Andrieux","type":"Person","_key":"22045"} +{"label":"Gabrielle Fontan","version":19,"id":"37147","lastModified":"1301901620000","name":"Gabrielle Fontan","type":"Person","_key":"22046"} +{"label":"The Brave One","description":"A woman struggles to recover from a brutal attack by setting out on a mission for revenge.","id":"4413","runtime":122,"imdbId":"tt0476964","homepage":"http:\/\/www.thebraveone.com","version":480,"lastModified":"1302025697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/200\/4bc91a46017a3c57fe00a200\/the-brave-one-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Brave One","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"22047"} +{"label":"Ene Oloja","version":28,"id":"37148","lastModified":"1301902003000","name":"Ene Oloja","type":"Person","_key":"22048"} +{"label":"Luis Da Silva Jr.","version":26,"id":"37149","lastModified":"1301901989000","name":"Luis Da Silva Jr.","type":"Person","_key":"22049"} +{"label":"Blaze Foster","version":28,"id":"37150","lastModified":"1301902003000","name":"Blaze Foster","type":"Person","_key":"22050"} +{"label":"Rafael Sardina","version":31,"id":"37151","lastModified":"1301901602000","name":"Rafael Sardina","type":"Person","_key":"22051"} +{"label":"Gordon MacDonald","version":32,"id":"37152","lastModified":"1301901949000","name":"Gordon MacDonald","type":"Person","_key":"22052"} +{"label":"John Magaro","version":34,"id":"37154","lastModified":"1301901508000","name":"John Magaro","type":"Person","_key":"22053"} +{"label":"Julia Garro","version":34,"id":"37155","lastModified":"1302036133000","name":"Julia Garro","type":"Person","_key":"22054"} +{"label":"James Biberi","version":34,"id":"37156","lastModified":"1301901249000","name":"James Biberi","type":"Person","_key":"22055"} +{"label":"Lenny Venito","version":33,"id":"37157","lastModified":"1302066196000","name":"Lenny Venito","type":"Person","_key":"22056"} +{"label":"Carmen Ejogo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/388\/4c7a41fb5e73d613d8000388\/carmen-ejogo-profile.jpg","version":36,"birthday":"126226800000","id":"37158","birthplace":"London, England","lastModified":"1301901220000","name":"Carmen Ejogo","type":"Person","_key":"22057"} +{"label":"Les Mis\u00e9rables","description":"No overview found.","id":"4414","runtime":245,"imdbId":"tt0068959","version":172,"lastModified":"1301908605000","genre":"History","title":"Les Mis\u00e9rables","releaseDate":85881600000,"language":"en","type":"Movie","_key":"22058"} +{"label":"Marcel Bluwal","version":21,"id":"37163","lastModified":"1301901791000","name":"Marcel Bluwal","type":"Person","_key":"22059"} +{"label":"Hermine Karagheuz","version":20,"id":"37164","lastModified":"1301901819000","name":"Hermine Karagheuz","type":"Person","_key":"22060"} +{"label":"Jean-Luc Boutt\u00e9","version":20,"id":"37165","lastModified":"1301901818000","name":"Jean-Luc Boutt\u00e9","type":"Person","_key":"22061"} +{"label":"Lucien Nat","version":20,"id":"37166","lastModified":"1301901819000","name":"Lucien Nat","type":"Person","_key":"22062"} +{"label":"Vania Vinitsky","version":20,"id":"37167","lastModified":"1301901791000","name":"Vania Vinitsky","type":"Person","_key":"22063"} +{"label":"Les Miserables","description":"Jean Valjean, a Frenchman imprisoned for stealing bread, must flee a police officer named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.","id":"4415","runtime":134,"imdbId":"tt0119683","trailer":"http:\/\/www.youtube.com\/watch?v=Oni72Fl7xaw","version":280,"lastModified":"1301904631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/209\/4bc91a46017a3c57fe00a209\/les-miserables-mid.jpg","studio":"Mandalay Entertainment","genre":"Crime","title":"Les Miserables","releaseDate":893980800000,"language":"en","type":"Movie","_key":"22064"} +{"label":"Hans Matheson","version":30,"id":"37168","lastModified":"1301901828000","name":"Hans Matheson","type":"Person","_key":"22065"} +{"label":"Jon Kenny","version":21,"id":"37169","lastModified":"1301901620000","name":"Jon Kenny","type":"Person","_key":"22066"} +{"label":"Sylvie Koblizkova","version":21,"id":"37170","lastModified":"1301901620000","name":"Sylvie Koblizkova","type":"Person","_key":"22067"} +{"label":"Mimi Newman","version":21,"id":"37171","lastModified":"1301901620000","name":"Mimi Newman","type":"Person","_key":"22068"} +{"label":"Ian Cregg","version":22,"id":"37702","lastModified":"1301901678000","name":"Ian Cregg","type":"Person","_key":"22069"} +{"label":"Shane Hervey","version":21,"id":"37703","lastModified":"1301901620000","name":"Shane Hervey","type":"Person","_key":"22070"} +{"label":"Les Mis\u00e9rables","description":"No overview found.","id":"4416","runtime":220,"imdbId":"tt0084340","version":80,"lastModified":"1302009966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4d9b34535e73d64764000a96\/les-mis-rables-mid.jpg","studio":"TF1 Films Productions","genre":"History","title":"Les Mis\u00e9rables","releaseDate":403920000000,"language":"en","type":"Movie","_key":"22071"} +{"label":"Evelyne Bouix","version":23,"id":"37175","lastModified":"1301901446000","name":"Evelyne Bouix","type":"Person","_key":"22072"} +{"label":"Christiane Jean","version":22,"id":"37176","lastModified":"1301901780000","name":"Christiane Jean","type":"Person","_key":"22073"} +{"label":"Frank David","version":26,"id":"37177","lastModified":"1301901511000","name":"Frank David","type":"Person","_key":"22074"} +{"label":"Candice Patou","version":23,"id":"37178","lastModified":"1301901672000","name":"Candice Patou","type":"Person","_key":"22075"} +{"label":"Corinne Dacla","version":20,"id":"37179","lastModified":"1301901902000","name":"Corinne Dacla","type":"Person","_key":"22076"} +{"label":"Valentine Bordelet","version":19,"id":"37180","lastModified":"1301901620000","name":"Valentine Bordelet","type":"Person","_key":"22077"} +{"label":"Emmanuel Curtil","version":19,"id":"37181","lastModified":"1301901620000","name":"Emmanuel Curtil","type":"Person","_key":"22078"} +{"label":"Arlette Thomas","version":22,"id":"37182","lastModified":"1301901620000","name":"Arlette Thomas","type":"Person","_key":"22079"} +{"label":"H\u00e9l\u00e9na Manson","version":25,"id":"37183","lastModified":"1301901790000","name":"H\u00e9l\u00e9na Manson","type":"Person","_key":"22080"} +{"label":"Agathe Ladner","version":19,"id":"37184","lastModified":"1301901620000","name":"Agathe Ladner","type":"Person","_key":"22081"} +{"label":"Catherine Di Rigo","version":19,"id":"37185","lastModified":"1301901620000","name":"Catherine Di Rigo","type":"Person","_key":"22082"} +{"label":"Les Mis\u00e9rables","description":"Jean Valjean is an ex-convict struggling to redeem himself, but his attempts are continually ruined by the intrusion of Javert into his life. Javert is a cruel, ruthless police inspector who has dedicated his life to pursuing Valjean, whose only crime was stealing a loaf of bread, and later, breaking parole.","id":"4417","runtime":360,"imdbId":"tt0230534","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/les-miserables-p1","version":180,"lastModified":"1301908344000","studio":"DD Productions","genre":"History","title":"Les Mis\u00e9rables","releaseDate":968025600000,"language":"en","type":"Movie","_key":"22083"} +{"label":"Jos\u00e9e Dayan","version":29,"id":"37186","lastModified":"1301901413000","name":"Jos\u00e9e Dayan","type":"Person","_key":"22084"} +{"label":"L\u00e9opoldine Serre","version":21,"id":"37189","lastModified":"1301901741000","name":"L\u00e9opoldine Serre","type":"Person","_key":"22085"} +{"label":"Giovanna Mezzogiorno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78d\/4cfda7585e73d6299d00478d\/giovanna-mezzogiorno-profile.jpg","version":53,"id":"105685","lastModified":"1301901168000","name":"Giovanna Mezzogiorno","type":"Person","_key":"22086"} +{"label":"Der Fall Lebach","description":"No overview found.","id":"4418","runtime":90,"imdbId":"tt0478456","version":41,"lastModified":"1301419608000","studio":"Sat.1","genre":"Drama","title":"Der Fall Lebach","releaseDate":1105574400000,"language":"en","type":"Movie","_key":"22087"} +{"label":"Philipp Moog","version":20,"id":"37190","lastModified":"1301902024000","name":"Philipp Moog","type":"Person","_key":"22088"} +{"label":"Alexander Kerst","version":21,"id":"36303","lastModified":"1301901851000","name":"Alexander Kerst","type":"Person","_key":"22089"} +{"label":"Frank Strecker","version":20,"id":"26635","lastModified":"1301901512000","name":"Frank Strecker","type":"Person","_key":"22090"} +{"label":"I Miserabili","description":"No overview found.","id":"4419","runtime":188,"imdbId":"tt0039629","version":40,"lastModified":"1301905340000","studio":"Lux Film","genre":"History","title":"I Miserabili","releaseDate":-692582400000,"language":"en","type":"Movie","_key":"22091"} +{"label":"Gino Cervi","version":47,"id":"37191","lastModified":"1301901568000","name":"Gino Cervi","type":"Person","_key":"22092"} +{"label":"Hans Hinrich","version":20,"id":"37192","lastModified":"1301901818000","name":"Hans Hinrich","type":"Person","_key":"22093"} +{"label":"Luigi Pavese","version":22,"id":"37193","lastModified":"1301902003000","name":"Luigi Pavese","type":"Person","_key":"22094"} +{"label":"Jone Romano","version":20,"id":"37194","lastModified":"1301901791000","name":"Jone Romano","type":"Person","_key":"22095"} +{"label":"Aldo Nicodemi","version":20,"id":"37195","lastModified":"1301901967000","name":"Aldo Nicodemi","type":"Person","_key":"22096"} +{"label":"Delia Orman","version":20,"id":"37196","lastModified":"1301902003000","name":"Delia Orman","type":"Person","_key":"22097"} +{"label":"Riccardo Freda","version":29,"id":"37197","lastModified":"1301901967000","name":"Riccardo Freda","type":"Person","_key":"22098"} +{"label":"G.I. Jane","description":"When a crusading chairperson of the military budget committee pressures the would be Navy secretary to begin full gender integration of the service, he offers the chance for a test case for a female trainee in the elite Navy SEALS commando force. Lt Jordan O'Neil is given the assignment, but no one expects her to succeed in an inhumanly punishing regime that has a standard 60% dropout rate for men.","id":"4421","runtime":124,"imdbId":"tt0119173","version":762,"lastModified":"1301902969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4c1381427b9aa102f800009c\/g-i-jane-mid.jpg","studio":"Caravan Pictures","genre":"Action","title":"G.I. Jane","releaseDate":872208000000,"language":"en","tagline":"Failure is not an option.","type":"Movie","_key":"22099"} +{"label":"Jason Beghe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4cdc46867b9aa13800000061\/jason-beghe-profile.jpg","version":47,"id":"37203","lastModified":"1301901144000","name":"Jason Beghe","type":"Person","_key":"22100"} +{"label":"David Warshofsky","version":38,"id":"37204","lastModified":"1301901112000","name":"David Warshofsky","type":"Person","_key":"22101"} +{"label":"David Vadim","version":25,"id":"37205","lastModified":"1301901415000","name":"David Vadim","type":"Person","_key":"22102"} +{"label":"Boyd Kestner","version":24,"id":"37206","lastModified":"1301901345000","name":"Boyd Kestner","type":"Person","_key":"22103"} +{"label":"Angel David","version":29,"id":"37207","lastModified":"1301901440000","name":"Angel David","type":"Person","_key":"22104"} +{"label":"Der gro\u00dfe Abgang","description":"No overview found.","id":"4423","runtime":85,"imdbId":"tt0113225","version":39,"lastModified":"1300978307000","studio":"S\u00fcdwestrundfunk","genre":"Drama","title":"Der gro\u00dfe Abgang","releaseDate":799200000000,"language":"en","type":"Movie","_key":"22105"} +{"label":"Nico Hofmann","version":25,"id":"10895","lastModified":"1301901498000","name":"Nico Hofmann","type":"Person","_key":"22106"} +{"label":"Birgit Doll","version":22,"id":"37211","lastModified":"1301901695000","name":"Birgit Doll","type":"Person","_key":"22107"} +{"label":"Roland Sch\u00e4fer","version":23,"id":"37212","lastModified":"1301901967000","name":"Roland Sch\u00e4fer","type":"Person","_key":"22108"} +{"label":"Frauenm\u00f6rder Arved Imiela","description":"No overview found.","id":"4434","runtime":55,"imdbId":"tt0486582","version":39,"lastModified":"1301908604000","genre":"Drama","title":"Frauenm\u00f6rder Arved Imiela","releaseDate":788918400000,"language":"en","type":"Movie","_key":"22109"} +{"label":"Eberhard Itzenplitz","version":21,"id":"37230","lastModified":"1301901791000","name":"Eberhard Itzenplitz","type":"Person","_key":"22110"} +{"label":"Wolf Roth","version":24,"id":"26396","lastModified":"1301901568000","name":"Wolf Roth","type":"Person","_key":"22111"} +{"label":"Tatjana Clasing","version":20,"id":"25924","lastModified":"1301901678000","name":"Tatjana Clasing","type":"Person","_key":"22112"} +{"label":"Gracia-Maria Kaus","version":20,"id":"37231","lastModified":"1301901568000","name":"Gracia-Maria Kaus","type":"Person","_key":"22113"} +{"label":"Heike Terres","version":20,"id":"37232","lastModified":"1301901819000","name":"Heike Terres","type":"Person","_key":"22114"} +{"label":"Hans Teuscher","version":21,"id":"130449","lastModified":"1301902683000","name":"Hans Teuscher","type":"Person","_key":"22115"} +{"label":"Ashoka the Great","description":"No overview found.","id":"4435","runtime":155,"imdbId":"tt0249371","version":254,"lastModified":"1301908344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4bc91a4b017a3c57fe00a238\/4435-mid.jpg","studio":"Dreamz Unlimited","genre":"Drama","title":"Ashoka the Great","releaseDate":1000339200000,"language":"en","type":"Movie","_key":"22116"} +{"label":"Kareena Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4bf126f7017a3c320b000126\/kareena-kapoor-profile.jpg","biography":"Kareena Kapoor (Hindi: \u0915\u0930\u0940\u0928\u093e \u0915\u092a\u0942\u0930; born on 21 September 1980), often informally referred to as Bebo, is an Indian film actress who appears in Bollywood films. Born into a film family where both her parents, Randhir Kapoor and Babita, and her elder sister Karisma were actors, Kapoor faced the media spotlight from a very young age. However, she did not make her acting debut until the 2000 film Refugee, which earned her the Filmfare Best Female Debut Award. Her melodrama Kabhi Khushi Kabhie Gham","version":64,"birthday":"338335200000","id":"37233","birthplace":"Mumbai, Maharashtra","lastModified":"1301901232000","name":"Kareena Kapoor","type":"Person","_key":"22117"} +{"label":"Rahul Dev","version":26,"id":"37234","lastModified":"1301901603000","name":"Rahul Dev","type":"Person","_key":"22118"} +{"label":"Hrishitaa Bhatt","version":24,"id":"37235","lastModified":"1301901985000","name":"Hrishitaa Bhatt","type":"Person","_key":"22119"} +{"label":"Sooraj Balaji","version":20,"id":"37237","lastModified":"1301901902000","name":"Sooraj Balaji","type":"Person","_key":"22120"} +{"label":"Santosh Sivan","version":31,"id":"37236","lastModified":"1301901560000","name":"Santosh Sivan","type":"Person","_key":"22121"} +{"label":"Kein Bund f\u00fcr's Leben","description":"The movie deals with a guy who gets to join the German Bundeswehr involuntarily because a colleague loses his denial papers in order to get the chance to get down on his girlfriend. When entering the Bundeswehr he acts like a giant idiot and of course gets in one room with some of the biggest losers around. The loser turns out to be a hero and leads his loser-colleagues to win a contest with the local US army squad.","id":"4436","runtime":90,"imdbId":"tt0466713","homepage":"http:\/\/www.bund.film.de\/","version":68,"lastModified":"1301904241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/245\/4bc91a4c017a3c57fe00a245\/kein-bund-fur-s-leben-mid.jpg","studio":"GFP Medienfonds","genre":"Comedy","title":"Kein Bund f\u00fcr's Leben","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"22122"} +{"label":"Franz Dinda","version":24,"id":"37244","lastModified":"1301901650000","name":"Franz Dinda","type":"Person","_key":"22123"} +{"label":"Oona-Devi Liebich","version":22,"id":"37245","lastModified":"1301901511000","name":"Oona-Devi Liebich","type":"Person","_key":"22124"} +{"label":"Axel Stein","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6e\/4d1715fa7b9aa1148e002f6e\/axel-stein-profile.jpg","version":43,"id":"37246","lastModified":"1301901272000","name":"Axel Stein","type":"Person","_key":"22125"} +{"label":"Till Trenkel","version":20,"id":"37247","lastModified":"1301901902000","name":"Till Trenkel","type":"Person","_key":"22126"} +{"label":"Ronald Nitschke","version":21,"id":"26563","lastModified":"1301901741000","name":"Ronald Nitschke","type":"Person","_key":"22127"} +{"label":"Kailas Mahadevan","version":20,"id":"37248","lastModified":"1301901902000","name":"Kailas Mahadevan","type":"Person","_key":"22128"} +{"label":"Sonya Kraus","version":20,"id":"37249","lastModified":"1301901901000","name":"Sonya Kraus","type":"Person","_key":"22129"} +{"label":"Granz Henman","version":28,"id":"37705","lastModified":"1301901650000","name":"Granz Henman","type":"Person","_key":"22130"} +{"label":"2010: The Year We Make Contact","description":"A joint American-Soviet expedition is sent to Jupiter to discover what went wrong with the U.S.S. Discovery against a backdrop of growing global tensions. Among the mysteries the expedition must explain are the appearance of a huge black monolith in Jupiter's orbit and the fate of H.A.L., the Discovery's sentient computer. Based on a novel by Arthur C. Clarke.","id":"4437","runtime":116,"imdbId":"tt0086837","version":995,"lastModified":"1302025171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/276\/4bc91a53017a3c57fe00a276\/2010-the-year-we-make-contact-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"2010: The Year We Make Contact","releaseDate":471225600000,"language":"en","type":"Movie","_key":"22131"} +{"label":"Peter Hyams","version":136,"id":"37710","lastModified":"1301901177000","name":"Peter Hyams","type":"Person","_key":"22132"} +{"label":"Dana Elcar","version":30,"id":"37712","lastModified":"1301901417000","name":"Dana Elcar","type":"Person","_key":"22133"} +{"label":"Taliesin Jaffe","version":27,"id":"37713","lastModified":"1301901280000","name":"Taliesin Jaffe","type":"Person","_key":"22134"} +{"label":"James McEachin","version":29,"id":"37714","lastModified":"1301901352000","name":"James McEachin","type":"Person","_key":"22135"} +{"label":"Oleg Rudnik","version":27,"id":"37715","lastModified":"1301901382000","name":"Oleg Rudnik","type":"Person","_key":"22136"} +{"label":"Madolyn Smith Osborne","version":29,"id":"66079","lastModified":"1301901373000","name":"Madolyn Smith Osborne","type":"Person","_key":"22137"} +{"label":"The Odyssey Collection","description":"No overview found.","id":"4438","version":129,"lastModified":"1301906100000","studio":"Polaris","title":"The Odyssey Collection","language":"en","type":"Movie","_key":"22138"} +{"label":"Goy","description":"No overview found.","id":"4439","runtime":79,"trailer":"http:\/\/www.youtube.com\/watch?v=248","homepage":"http:\/\/www.goythemovie.com","version":51,"lastModified":"1301908604000","studio":"MEB Entertainment","genre":"Horror","title":"Goy","releaseDate":1199059200000,"language":"en","type":"Movie","_key":"22139"} +{"label":"Matthias Hues","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a44\/4c5df3d37b9aa151f4000a44\/matthias-hues-profile.jpg","version":26,"id":"37250","lastModified":"1301901209000","name":"Matthias Hues","type":"Person","_key":"22140"} +{"label":"Christopher Mitchum","version":30,"id":"37251","lastModified":"1301901464000","name":"Christopher Mitchum","type":"Person","_key":"22141"} +{"label":"Yvonne Zima","version":25,"id":"37252","lastModified":"1301901460000","name":"Yvonne Zima","type":"Person","_key":"22142"} +{"label":"Kamilla Bjorlin","version":17,"id":"37253","lastModified":"1301901690000","name":"Kamilla Bjorlin","type":"Person","_key":"22143"} +{"label":"Al Ruscio","version":27,"id":"37254","lastModified":"1301901588000","name":"Al Ruscio","type":"Person","_key":"22144"} +{"label":"Christopher Kriesa","version":24,"id":"37255","lastModified":"1301902008000","name":"Christopher Kriesa","type":"Person","_key":"22145"} +{"label":"Marcel Neum\u00fcller","version":16,"id":"37256","lastModified":"1301902003000","name":"Marcel Neum\u00fcller","type":"Person","_key":"22146"} +{"label":"Marc Schaumburg","version":16,"id":"37258","lastModified":"1301901678000","name":"Marc Schaumburg","type":"Person","_key":"22147"} +{"label":"Felix Kersting","version":17,"id":"37257","lastModified":"1301901682000","name":"Felix Kersting","type":"Person","_key":"22148"} +{"label":"Herzensschrei","description":"No overview found.","id":"4440","runtime":0,"version":20,"lastModified":"1301905717000","studio":"Viv\u00e0svan Pictures","genre":"Drama","title":"Herzensschrei","releaseDate":1285891200000,"language":"en","type":"Movie","_key":"22149"} +{"label":"Candy","description":"A poet falls in love with an art student, who gravitates to his bohemian lifestyle -- and his love of heroin. Hooked as much on one another as they are on the drug, their relationship alternates between states of oblivion, self-destruction, and despair.","id":"4441","runtime":108,"imdbId":"tt0424880","homepage":"http:\/\/www.dendyfilms.com.au\/candy\/","version":228,"lastModified":"1301904767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/288\/4bc91a57017a3c57fe00a288\/candy-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Drama","title":"Candy","releaseDate":1139961600000,"language":"en","type":"Movie","_key":"22150"} +{"label":"Neil Armfield","version":22,"id":"37259","lastModified":"1301901540000","name":"Neil Armfield","type":"Person","_key":"22151"} +{"label":"Abbie Cornish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d0\/4d32140e5e73d633520011d0\/abbie-cornish-profile.jpg","biography":"<SPAN style=\"LINE-HEIGHT: 19px; FONT-FAMILY: sans-serif; FONT-SIZE: 13px\">\r\n<P style=\"MARGIN: 0in 0in 10pt\" class=MsoNormal><FONT size=3 face=Calibri>Abbie Cornish, born on 7<SUP>th<\/SUP> August 1982 is an Australian actress. She is well known in Australia for a number of film and television roles, including Penne in the comedy\/lifestyle parody Life Support, her award-winning lead performance in 2004's Somersault and her role as Fannie Brawne in Bright Star. Her career began at the age of thirte","version":92,"birthday":"397519200000","id":"37260","lastModified":"1301916267000","name":"Abbie Cornish","type":"Person","_key":"22152"} +{"label":"Tony Martin","version":32,"id":"37286","lastModified":"1301901491000","name":"Tony Martin","type":"Person","_key":"22153"} +{"label":"Noni Hazlehurst","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27c\/4bf9e71a017a3c702b00027c\/noni-hazlehurst-profile.jpg","version":24,"id":"37287","lastModified":"1301901642000","name":"Noni Hazlehurst","type":"Person","_key":"22154"} +{"label":"Roberto Meza-Mont","version":20,"id":"37288","lastModified":"1301901741000","name":"Roberto Meza-Mont","type":"Person","_key":"22155"} +{"label":"Tom Budge","version":30,"id":"37289","lastModified":"1301901650000","name":"Tom Budge","type":"Person","_key":"22156"} +{"label":"Nathaniel Dean","version":25,"id":"37290","lastModified":"1301901812000","name":"Nathaniel Dean","type":"Person","_key":"22157"} +{"label":"Adrienne Pickering","version":31,"id":"37292","lastModified":"1301901176000","name":"Adrienne Pickering","type":"Person","_key":"22158"} +{"label":"Paul Blackwell","version":20,"id":"37293","lastModified":"1301901741000","name":"Paul Blackwell","type":"Person","_key":"22159"} +{"label":"The Brothers Grimm","description":"Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. They are put to the test, however, when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage. ","id":"4442","runtime":119,"imdbId":"tt0355295","trailer":"http:\/\/www.youtube.com\/watch?v=W3QkwDld1d4","version":470,"lastModified":"1301901365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4bcceb68017a3c0f2f0001c4\/the-brothers-grimm-mid.jpg","studio":"Dimension Films","genre":"Action","title":"The Brothers Grimm","releaseDate":1125014400000,"language":"en","tagline":"Eliminating Evil Since 1812.","type":"Movie","_key":"22160"} +{"label":"Barbora Lukesov\u00e1","version":21,"id":"37296","lastModified":"1301901517000","name":"Barbora Lukesov\u00e1","type":"Person","_key":"22161"} +{"label":"Nuits rouges","description":"No overview found.","id":"4443","runtime":104,"imdbId":"tt0069593","version":70,"lastModified":"1301908604000","studio":"New Line Cinema","genre":"Horror","title":"Nuits rouges","releaseDate":151200000000,"language":"en","type":"Movie","_key":"22162"} +{"label":"Georges Franju","version":23,"id":"37302","lastModified":"1301901851000","name":"Georges Franju","type":"Person","_key":"22163"} +{"label":"Jacques Champreux","version":23,"id":"37303","lastModified":"1301902003000","name":"Jacques Champreux","type":"Person","_key":"22164"} +{"label":"Josephine Chaplin","version":25,"id":"37306","lastModified":"1301901594000","name":"Josephine Chaplin","type":"Person","_key":"22165"} +{"label":"Ugo Pagliai","version":21,"id":"37307","lastModified":"1301901568000","name":"Ugo Pagliai","type":"Person","_key":"22166"} +{"label":"Enzo Fisichella","version":20,"id":"37308","lastModified":"1301902011000","name":"Enzo Fisichella","type":"Person","_key":"22167"} +{"label":"Pierre Collet","version":25,"id":"37309","lastModified":"1301901658000","name":"Pierre Collet","type":"Person","_key":"22168"} +{"label":"Mein Freund, der M\u00f6rder","description":"No overview found.","id":"4451","runtime":90,"imdbId":"tt0857233","version":35,"lastModified":"1301419603000","studio":"Fufoo Film","genre":"Documentary","title":"Mein Freund, der M\u00f6rder","releaseDate":1154390400000,"language":"en","type":"Movie","_key":"22169"} +{"label":"Peter Fleischmann","version":25,"id":"37313","lastModified":"1301901658000","name":"Peter Fleischmann","type":"Person","_key":"22170"} +{"label":"Bernhard Kimmel","version":20,"id":"37312","lastModified":"1301901818000","name":"Bernhard Kimmel","type":"Person","_key":"22171"} +{"label":"Al Capone im deutschen Wald","description":"No overview found.","id":"4452","runtime":105,"imdbId":"tt0063997","version":52,"lastModified":"1301906753000","studio":"WDR","genre":"Drama","title":"Al Capone im deutschen Wald","releaseDate":-6048000000,"language":"en","type":"Movie","_key":"22172"} +{"label":"Will Danin","version":21,"id":"26423","lastModified":"1301901658000","name":"Will Danin","type":"Person","_key":"22173"} +{"label":"Angelika Bender","version":20,"id":"37321","lastModified":"1301901791000","name":"Angelika Bender","type":"Person","_key":"22174"} +{"label":"Holger Ungerer","version":20,"id":"37322","lastModified":"1301901791000","name":"Holger Ungerer","type":"Person","_key":"22175"} +{"label":"Karl-Josef Cramer","version":20,"id":"37323","lastModified":"1301901791000","name":"Karl-Josef Cramer","type":"Person","_key":"22176"} +{"label":"Bernd Sch\u00e4fer","version":20,"id":"27603","lastModified":"1301901966000","name":"Bernd Sch\u00e4fer","type":"Person","_key":"22177"} +{"label":"Hans-J\u00fcrgen Bodinus","version":20,"id":"37324","lastModified":"1301901791000","name":"Hans-J\u00fcrgen Bodinus","type":"Person","_key":"22178"} +{"label":"Kurt Lasin","version":20,"id":"37325","lastModified":"1301901658000","name":"Kurt Lasin","type":"Person","_key":"22179"} +{"label":"Toni Dameris","version":20,"id":"37326","lastModified":"1301901791000","name":"Toni Dameris","type":"Person","_key":"22180"} +{"label":"Kurt Ackermann","version":20,"id":"37327","lastModified":"1301901791000","name":"Kurt Ackermann","type":"Person","_key":"22181"} +{"label":"Franz Josef Saile","version":18,"id":"37328","lastModified":"1301901810000","name":"Franz Josef Saile","type":"Person","_key":"22182"} +{"label":"Irene Mohler","version":20,"id":"37329","lastModified":"1301901791000","name":"Irene Mohler","type":"Person","_key":"22183"} +{"label":"Martin Truthmann","version":20,"id":"37330","lastModified":"1301901791000","name":"Martin Truthmann","type":"Person","_key":"22184"} +{"label":"Peter Adler","version":21,"id":"37319","lastModified":"1301901791000","name":"Peter Adler","type":"Person","_key":"22185"} +{"label":"Nachts auf den Stra\u00dfen","description":"No overview found.","id":"4453","runtime":111,"imdbId":"tt0043835","version":66,"lastModified":"1301907285000","studio":"Neue Deutsche Filmgesellschaft","genre":"Drama","title":"Nachts auf den Stra\u00dfen","releaseDate":-566870400000,"language":"en","type":"Movie","_key":"22186"} +{"label":"Fritz Stapenhorst","version":20,"id":"38027","lastModified":"1301901620000","name":"Fritz Stapenhorst","type":"Person","_key":"22187"} +{"label":"Wolf Ackva","version":19,"id":"38036","lastModified":"1301901741000","name":"Wolf Ackva","type":"Person","_key":"22188"} +{"label":"Marius Goring","version":26,"id":"38037","lastModified":"1301901490000","name":"Marius Goring","type":"Person","_key":"22189"} +{"label":"Hans Reiser","version":23,"id":"26586","lastModified":"1301902048000","name":"Hans Reiser","type":"Person","_key":"22190"} +{"label":"Peter Martin Urtel","version":19,"id":"38038","lastModified":"1301901741000","name":"Peter Martin Urtel","type":"Person","_key":"22191"} +{"label":"Hans Zesch-Ballot","version":19,"id":"38039","lastModified":"1301901540000","name":"Hans Zesch-Ballot","type":"Person","_key":"22192"} +{"label":"Karin Andersen","version":19,"id":"38040","lastModified":"1301901741000","name":"Karin Andersen","type":"Person","_key":"22193"} +{"label":"Svengali","description":"No overview found.","id":"4454","runtime":100,"imdbId":"tt0048680","version":76,"lastModified":"1301906530000","studio":"George Minter Productions","genre":"Drama","title":"Svengali","releaseDate":-483926400000,"language":"en","type":"Movie","_key":"22194"} +{"label":"Terence Morgan","version":23,"id":"39052","lastModified":"1301901328000","name":"Terence Morgan","type":"Person","_key":"22195"} +{"label":"Derek Bond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/337\/4c4755dd7b9aa15ddf000337\/derek-bond-profile.jpg","version":24,"id":"39053","lastModified":"1301901606000","name":"Derek Bond","type":"Person","_key":"22196"} +{"label":"Noel Langley","version":52,"id":"9052","lastModified":"1301986210000","name":"Noel Langley","type":"Person","_key":"22197"} +{"label":"Subway in the Sky","description":"No overview found.","id":"4455","runtime":87,"imdbId":"tt0053316","version":54,"lastModified":"1301906753000","studio":"United Artists","genre":"Crime","title":"Subway in the Sky","releaseDate":-320889600000,"language":"en","type":"Movie","_key":"22198"} +{"label":"Van Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae9\/4bfd81ad017a3c7031000ae9\/van-johnson-profile.jpg","version":54,"id":"37446","lastModified":"1301901225000","name":"Van Johnson","type":"Person","_key":"22199"} +{"label":"Vivian Matalon","version":20,"id":"38067","lastModified":"1301901966000","name":"Vivian Matalon","type":"Person","_key":"22200"} +{"label":"Carl Jaffe","version":22,"id":"38068","lastModified":"1301901966000","name":"Carl Jaffe","type":"Person","_key":"22201"} +{"label":"Chuck Keyser","version":20,"id":"38069","lastModified":"1301901966000","name":"Chuck Keyser","type":"Person","_key":"22202"} +{"label":"Edward Judd","version":27,"id":"38070","lastModified":"1301901971000","name":"Edward Judd","type":"Person","_key":"22203"} +{"label":"Gaylord Cavallaro","version":20,"id":"38071","lastModified":"1301901966000","name":"Gaylord Cavallaro","type":"Person","_key":"22204"} +{"label":"Katherine Kath","version":25,"id":"67445","lastModified":"1301901984000","name":"Katherine Kath","type":"Person","_key":"22205"} +{"label":"Muriel Box","version":20,"id":"37447","lastModified":"1301902019000","name":"Muriel Box","type":"Person","_key":"22206"} +{"label":"Jimmy Komisarjevsky","version":20,"id":"38065","lastModified":"1301901966000","name":"Jimmy Komisarjevsky","type":"Person","_key":"22207"} +{"label":"La fille de Hambourg","description":"No overview found.","id":"4456","runtime":86,"imdbId":"tt0052803","version":45,"lastModified":"1301419600000","studio":"Path\u00e9 Consortium Cin\u00e9ma","genre":"Drama","title":"La fille de Hambourg","releaseDate":-359337600000,"language":"en","type":"Movie","_key":"22208"} +{"label":"Fr\u00e9d\u00e9ric O'Brady","version":18,"id":"38079","lastModified":"1301901990000","name":"Fr\u00e9d\u00e9ric O'Brady","type":"Person","_key":"22209"} +{"label":"Almuth Bock","version":20,"id":"38080","lastModified":"1301902030000","name":"Almuth Bock","type":"Person","_key":"22210"} +{"label":"Yves All\u00e9gret","version":21,"id":"38072","lastModified":"1301902003000","name":"Yves All\u00e9gret","type":"Person","_key":"22211"} +{"label":"Witchery","description":"No overview found.","id":"4457","runtime":95,"imdbId":"tt0096453","version":363,"lastModified":"1301417771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/396\/4c88e8ae7b9aa1545a000396\/la-casa-4-witchcraft-mid.jpg","studio":"Filmirage S.r.l.","genre":"Horror","title":"Witchery","releaseDate":597542400000,"language":"en","type":"Movie","_key":"22212"} +{"label":"David Hasselhoff","version":53,"id":"28238","lastModified":"1301901196000","name":"David Hasselhoff","type":"Person","_key":"22213"} +{"label":"Catherine Hickland","version":21,"id":"37367","lastModified":"1301902034000","name":"Catherine Hickland","type":"Person","_key":"22214"} +{"label":"Annie Ross","version":30,"id":"37368","lastModified":"1301901512000","name":"Annie Ross","type":"Person","_key":"22215"} +{"label":"Leslie Cumming","version":21,"id":"37369","lastModified":"1301901677000","name":"Leslie Cumming","type":"Person","_key":"22216"} +{"label":"Robert Champagne","version":22,"id":"37370","lastModified":"1301901842000","name":"Robert Champagne","type":"Person","_key":"22217"} +{"label":"Fabrizio Laurenti","version":21,"id":"37363","lastModified":"1301901597000","name":"Fabrizio Laurenti","type":"Person","_key":"22218"} +{"label":"Ballade pour un voyou","description":"No overview found.","id":"4458","runtime":90,"imdbId":"tt0056848","version":46,"lastModified":"1301905285000","studio":"Les Editions Cin\u00e9graphiques","genre":"Drama","title":"Ballade pour un voyou","releaseDate":-213580800000,"language":"en","type":"Movie","_key":"22219"} +{"label":"Claude-Jean Bonnardot","version":20,"id":"38087","lastModified":"1301901540000","name":"Claude-Jean Bonnardot","type":"Person","_key":"22220"} +{"label":"Etienne Bierry","version":19,"id":"38093","lastModified":"1301901741000","name":"Etienne Bierry","type":"Person","_key":"22221"} +{"label":"Marc Duchamp","version":19,"id":"38094","lastModified":"1301901540000","name":"Marc Duchamp","type":"Person","_key":"22222"} +{"label":"Jacques Bertrand","version":25,"id":"38095","lastModified":"1301901423000","name":"Jacques Bertrand","type":"Person","_key":"22223"} +{"label":"Robert Bousquet","version":19,"id":"38096","lastModified":"1301901620000","name":"Robert Bousquet","type":"Person","_key":"22224"} +{"label":"Night Without Sleep","description":"Awaking one morning out of a drunken stupor, composer Richard Morton can't shake the feeling he has murdered a woman during the night.","id":"4459","runtime":77,"imdbId":"tt0044967","version":69,"lastModified":"1301904241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ac\/4bc91a5e017a3c57fe00a2ac\/night-without-sleep-mid.jpg","studio":"20th Century Fox","genre":"Thriller","title":"Night Without Sleep","releaseDate":-544838400000,"language":"en","type":"Movie","_key":"22225"} +{"label":"Joyce Mackenzie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e38\/4d948bde7b9aa11997001e38\/joyce-mackenzie-profile.jpg","version":22,"id":"37445","lastModified":"1301901477000","name":"Joyce Mackenzie","type":"Person","_key":"22226"} +{"label":"June Vincent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24b\/4bf1b20b017a3c320a00024b\/june-vincent-profile.jpg","version":22,"id":"38231","lastModified":"1301901540000","name":"June Vincent","type":"Person","_key":"22227"} +{"label":"Hugh Beaumont","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07b\/4bd8117b017a3c1c0000007b\/hugh-beaumont-profile.jpg","version":30,"id":"38232","lastModified":"1301901473000","name":"Hugh Beaumont","type":"Person","_key":"22228"} +{"label":"Roy Ward Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4c7667fe7b9aa16a0c0000b2\/roy-ward-baker-profile.jpg","biography":"<table nof=\"LY\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"667\"><tbody><tr align=\"LEFT\" valign=\"TOP\"><td height=\"17\" width=\"30\">\n<\/td><td width=\"637\">Roy Ward Baker is an English film director born in London on 19 December 1916. His best known film is A Night to Remember which won a Golden Globe for best foreign English language film in 1959. His later career was varied, and included many horror films and television shows.\n\nBaker's early career, from 1934 to 1939, was spent working for Ga","version":52,"id":"26134","lastModified":"1301996032000","name":"Roy Ward Baker","type":"Person","_key":"22229"} +{"label":"The Snows of Kilimanjaro","description":"No overview found.","id":"4460","runtime":117,"imdbId":"tt0045162","version":181,"lastModified":"1301905462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c4\/4cb27d045e73d65b820006c4\/the-snows-of-kilimanjaro-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Snows of Kilimanjaro","releaseDate":-548208000000,"language":"en","type":"Movie","_key":"22230"} +{"label":"Henry King","version":43,"id":"37362","lastModified":"1301901526000","name":"Henry King","type":"Person","_key":"22231"} +{"label":"Ava Norring","version":20,"id":"38235","lastModified":"1301901901000","name":"Ava Norring","type":"Person","_key":"22232"} +{"label":"Helene Stanley","version":22,"id":"38236","lastModified":"1301901806000","name":"Helene Stanley","type":"Person","_key":"22233"} +{"label":"Vicente G\u00f3mez","version":20,"id":"38237","lastModified":"1301901901000","name":"Vicente G\u00f3mez","type":"Person","_key":"22234"} +{"label":"Richard Allan","version":21,"id":"38238","lastModified":"1301901540000","name":"Richard Allan","type":"Person","_key":"22235"} +{"label":"Decision Before Dawn","description":"WWII is entering its last phase: Germany is in ruins, but does not yield. The US army lacks crucial knowledge about the German units operating on the opposite side of the Rhine, and decides to send two German prisoners to gather information. The scheme is risky: the Gestapo retains a terribly efficient network to identify and capture spies and deserters. Moreover, it is not clear that \"Tiger\", who does not mind any dirty work as long as the price is right, and war-weary \"Happy\", who might be eas","id":"4461","runtime":119,"imdbId":"tt0043459","version":128,"lastModified":"1302024510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/886\/4ca28d635e73d67b5f000886\/decision-before-dawn-mid.jpg","studio":"20th Century Fox","genre":"History","title":"Decision Before Dawn","releaseDate":-569030400000,"language":"en","type":"Movie","_key":"22236"} +{"label":"Anatole Litvak","version":40,"id":"37361","lastModified":"1301901198000","name":"Anatole Litvak","type":"Person","_key":"22237"} +{"label":"Dominique Blanchar","version":22,"id":"38243","lastModified":"1301901826000","name":"Dominique Blanchar","type":"Person","_key":"22238"} +{"label":"Wilfried Seyferth","version":18,"id":"38245","lastModified":"1301901942000","name":"Wilfried Seyferth","type":"Person","_key":"22239"} +{"label":"Helen Thimig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b5c\/4c65ad957b9aa172da000b5c\/helen-thimig-profile.jpg","version":24,"id":"38246","lastModified":"1301901859000","name":"Helen Thimig","type":"Person","_key":"22240"} +{"label":"Diplomatic Courier","description":"No overview found.","id":"4462","runtime":97,"imdbId":"tt0044552","version":96,"lastModified":"1301904970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4c572ac87b9aa151f50002ce\/diplomatic-courier-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Diplomatic Courier","releaseDate":-553910400000,"language":"en","type":"Movie","_key":"22241"} +{"label":"Henry Hathaway","version":77,"id":"37360","lastModified":"1301901230000","name":"Henry Hathaway","type":"Person","_key":"22242"} +{"label":"Tyrone Power","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32b\/4c7be5897b9aa176bf00032b\/tyrone-power-profile.jpg","version":48,"id":"10922","lastModified":"1302028154000","name":"Tyrone Power","type":"Person","_key":"22243"} +{"label":"Stephen McNally","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e5\/4c2b5afe7b9aa15e9f0000e5\/stephen-mcnally-profile.jpg","version":33,"id":"37448","lastModified":"1301901292000","name":"Stephen McNally","type":"Person","_key":"22244"} +{"label":"Arthur Blake","version":19,"id":"38252","lastModified":"1301901761000","name":"Arthur Blake","type":"Person","_key":"22245"} +{"label":"Herbert Berghof","version":20,"id":"38253","lastModified":"1301901761000","name":"Herbert Berghof","type":"Person","_key":"22246"} +{"label":"Gest\u00e4ndnis unter vier Augen","description":"No overview found.","id":"4463","runtime":100,"imdbId":"tt0047022","version":55,"lastModified":"1300978310000","studio":"Deutsche London Film Verleih GmbH","title":"Gest\u00e4ndnis unter vier Augen","releaseDate":-482716800000,"language":"en","type":"Movie","_key":"22247"} +{"label":"Fernand Marzelle","version":20,"id":"38262","lastModified":"1301901791000","name":"Fernand Marzelle","type":"Person","_key":"22248"} +{"label":"Andr\u00e9 Michel","version":20,"id":"38254","lastModified":"1301902031000","name":"Andr\u00e9 Michel","type":"Person","_key":"22249"} +{"label":"Franz Schafheitlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4ca4030a5e73d636f90000c8\/franz-schafheitlin-profile.jpg","version":26,"id":"38265","lastModified":"1301901798000","name":"Franz Schafheitlin","type":"Person","_key":"22250"} +{"label":"Ursula Grabley","version":20,"id":"38267","lastModified":"1301902003000","name":"Ursula Grabley","type":"Person","_key":"22251"} +{"label":"Seabiscuit","description":"True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.","id":"4464","runtime":141,"imdbId":"tt0329575","trailer":"http:\/\/www.youtube.com\/watch?v=1778","homepage":"http:\/\/www.seabiscuitmovie.com\/","version":617,"lastModified":"1301902914000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c1\/4bc91a5f017a3c57fe00a2c1\/seabiscuit-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Seabiscuit","releaseDate":1058832000000,"language":"en","type":"Movie","_key":"22252"} +{"label":"David McCullough","version":21,"id":"37332","lastModified":"1301901552000","name":"David McCullough","type":"Person","_key":"22253"} +{"label":"Gary Stevens","version":22,"id":"38272","lastModified":"1301901552000","name":"Gary Stevens","type":"Person","_key":"22254"} +{"label":"Chris McCarron","version":21,"id":"38273","lastModified":"1301901590000","name":"Chris McCarron","type":"Person","_key":"22255"} +{"label":"Annas Mutter","description":"No overview found.","id":"4465","runtime":93,"imdbId":"tt0085171","version":57,"lastModified":"1301905340000","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Annas Mutter","releaseDate":442195200000,"language":"en","type":"Movie","_key":"22256"} +{"label":"Gudrun Landgrebe","version":21,"id":"37343","lastModified":"1301901967000","name":"Gudrun Landgrebe","type":"Person","_key":"22257"} +{"label":"Verena Corinna","version":20,"id":"37344","lastModified":"1301901791000","name":"Verena Corinna","type":"Person","_key":"22258"} +{"label":"Isolde Barth","version":23,"id":"37345","lastModified":"1301901791000","name":"Isolde Barth","type":"Person","_key":"22259"} +{"label":"Roger Fritz","version":20,"id":"37346","lastModified":"1301901583000","name":"Roger Fritz","type":"Person","_key":"22260"} +{"label":"Michael Simbruk","version":18,"id":"37347","lastModified":"1301901579000","name":"Michael Simbruk","type":"Person","_key":"22261"} +{"label":"Sabrina Lorenz","version":20,"id":"37348","lastModified":"1301901583000","name":"Sabrina Lorenz","type":"Person","_key":"22262"} +{"label":"Stephanie Kellner","version":20,"id":"37349","lastModified":"1301901818000","name":"Stephanie Kellner","type":"Person","_key":"22263"} +{"label":"Der Fall Bachmeier - Keine Zeit f\u00fcr Tr\u00e4nen","description":"No overview found.","id":"4466","runtime":95,"imdbId":"tt0087232","version":48,"lastModified":"1301907450000","studio":"Hamburger Filmschule","genre":"Drama","title":"Der Fall Bachmeier - Keine Zeit f\u00fcr Tr\u00e4nen","releaseDate":477532800000,"language":"en","type":"Movie","_key":"22264"} +{"label":"Marie Colbin","version":20,"id":"37351","lastModified":"1301902019000","name":"Marie Colbin","type":"Person","_key":"22265"} +{"label":"Christine Limbach","version":20,"id":"37352","lastModified":"1301902026000","name":"Christine Limbach","type":"Person","_key":"22266"} +{"label":"Angela Schmid","version":18,"id":"37353","lastModified":"1301902029000","name":"Angela Schmid","type":"Person","_key":"22267"} +{"label":"Eugeniusz Priwieziencew","version":23,"id":"37354","lastModified":"1301950698000","name":"Eugeniusz Priwieziencew","type":"Person","_key":"22268"} +{"label":"Sven Dahlem","version":20,"id":"37355","lastModified":"1301902002000","name":"Sven Dahlem","type":"Person","_key":"22269"} +{"label":"Knut Hinz","version":22,"id":"37356","lastModified":"1301901523000","name":"Knut Hinz","type":"Person","_key":"22270"} +{"label":"Uwe Dallmeier","version":20,"id":"26903","lastModified":"1301902203000","name":"Uwe Dallmeier","type":"Person","_key":"22271"} +{"label":"Die S\u00fcnderin","description":"No overview found.","id":"4467","runtime":100,"imdbId":"tt0044098","version":51,"lastModified":"1301908604000","studio":"Deutsche Styria-Film","genre":"Drama","title":"Die S\u00fcnderin","releaseDate":-598147200000,"language":"en","type":"Movie","_key":"22272"} +{"label":"Willi Forst","version":20,"id":"37461","lastModified":"1301901826000","name":"Willi Forst","type":"Person","_key":"22273"} +{"label":"Das Phantom - Die Jagd nach Dagobert","description":"No overview found.","id":"4470","runtime":90,"imdbId":"tt0110824","version":52,"lastModified":"1301904478000","genre":"Crime","title":"Das Phantom - Die Jagd nach Dagobert","releaseDate":778723200000,"language":"en","type":"Movie","_key":"22274"} +{"label":"J\u00f6rg Gudzuhn","version":22,"id":"37382","lastModified":"1301901512000","name":"J\u00f6rg Gudzuhn","type":"Person","_key":"22275"} +{"label":"Peter Striebeck","version":20,"id":"36370","lastModified":"1301901796000","name":"Peter Striebeck","type":"Person","_key":"22276"} +{"label":"Simone Thomalla","version":24,"id":"37383","lastModified":"1301901662000","name":"Simone Thomalla","type":"Person","_key":"22277"} +{"label":"Peter Albers","version":20,"id":"37384","lastModified":"1301901973000","name":"Peter Albers","type":"Person","_key":"22278"} +{"label":"Hans Georg Panczak","version":20,"id":"37386","lastModified":"1301901973000","name":"Hans Georg Panczak","type":"Person","_key":"22279"} +{"label":"Peter Gavajda","version":21,"id":"37387","lastModified":"1301901973000","name":"Peter Gavajda","type":"Person","_key":"22280"} +{"label":"Wookie Mayer","version":20,"id":"37388","lastModified":"1301901973000","name":"Wookie Mayer","type":"Person","_key":"22281"} +{"label":"Patricia Rapp","version":20,"id":"37389","lastModified":"1301901973000","name":"Patricia Rapp","type":"Person","_key":"22282"} +{"label":"Klaus Funke","version":20,"id":"37390","lastModified":"1301901973000","name":"Klaus Funke","type":"Person","_key":"22283"} +{"label":"My Super Ex-Girlfriend","description":"When a regular New York building designer guy Matt Saunders dumps Jenny Johnson - a smart, sexy and reluctant superhero known as G-Girl - she uses her powers to make his life a living hell! ","id":"4474","runtime":95,"imdbId":"tt0465624","trailer":"http:\/\/www.youtube.com\/watch?v=7FY2efhRS4U","version":288,"lastModified":"1301902223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4d1bb4447b9aa1148800596b\/my-super-ex-girlfriend-mid.jpg","studio":"New Regency Pictures","genre":"Action","title":"My Super Ex-Girlfriend","releaseDate":1150761600000,"language":"en","tagline":"Hell hath no fury like a superwoman scorned.","type":"Movie","_key":"22284"} +{"label":"Stelio Savante","version":23,"id":"37403","lastModified":"1301901741000","name":"Stelio Savante","type":"Person","_key":"22285"} +{"label":"Mike Iorio","version":23,"id":"37404","lastModified":"1301901741000","name":"Mike Iorio","type":"Person","_key":"22286"} +{"label":"Margaret Anne Florence","version":25,"id":"37405","lastModified":"1301901642000","name":"Margaret Anne Florence","type":"Person","_key":"22287"} +{"label":"The Private Lives of Pippa Lee","description":"The life you love may be your own.... The wife of a much older man finds herself attracted to their neighbour's son, who is closer to her age.","id":"4475","runtime":98,"imdbId":"tt1134629","trailer":"http:\/\/www.youtube.com\/watch?v=2161","version":205,"lastModified":"1302024189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2db\/4bc91a67017a3c57fe00a2db\/the-private-lives-of-pippa-lee-mid.jpg","studio":"Plan B Productions","genre":"Drama","title":"The Private Lives of Pippa Lee","releaseDate":1246924800000,"language":"en","type":"Movie","_key":"22288"} +{"label":"Rebecca Miller","version":35,"id":"41670","lastModified":"1301901695000","name":"Rebecca Miller","type":"Person","_key":"22289"} +{"label":"Ryan McDonald","version":17,"id":"116834","lastModified":"1301902374000","name":"Ryan McDonald","type":"Person","_key":"22290"} +{"label":"Legends of the Fall","description":"An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.","id":"4476","runtime":133,"imdbId":"tt0110322","trailer":"http:\/\/www.youtube.com\/watch?v=ocAeBZdSDWg","version":410,"lastModified":"1301907551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9b\/4c0c7882017a3c3519000d9b\/legends-of-the-fall-mid.jpg","studio":"Bedford Falls Productions","genre":"Drama","title":"Legends of the Fall","releaseDate":787536000000,"language":"en","type":"Movie","_key":"22291"} +{"label":"Karina Lombard","version":23,"id":"11068","lastModified":"1301901825000","name":"Karina Lombard","type":"Person","_key":"22292"} +{"label":"Gordon Tootoosis","version":32,"id":"37430","lastModified":"1301901517000","name":"Gordon Tootoosis","type":"Person","_key":"22293"} +{"label":"John Novak","version":25,"id":"37431","lastModified":"1301901677000","name":"John Novak","type":"Person","_key":"22294"} +{"label":"Robert Wisden","version":33,"id":"37432","lastModified":"1301901207000","name":"Robert Wisden","type":"Person","_key":"22295"} +{"label":"The Devil's Own","description":"A New York cop on a collision course with the IRA's deadliest assassin","id":"4477","runtime":110,"imdbId":"tt0118972","version":646,"lastModified":"1302024088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f6\/4bc91a69017a3c57fe00a2f6\/the-devil-s-own-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Devil's Own","releaseDate":858211200000,"language":"en","type":"Movie","_key":"22296"} +{"label":"Ashley Carin","version":21,"id":"38338","lastModified":"1301901741000","name":"Ashley Carin","type":"Person","_key":"22297"} +{"label":"Simon Jones","version":23,"id":"37891","lastModified":"1301901901000","name":"Simon Jones","type":"Person","_key":"22298"} +{"label":"Paul Ronan","version":21,"id":"38339","lastModified":"1301901901000","name":"Paul Ronan","type":"Person","_key":"22299"} +{"label":"Indecent Proposal","description":"A married woman agrees to have sex with another man for $1,000,000.","id":"4478","runtime":117,"imdbId":"tt0107211","version":308,"lastModified":"1301903286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ff\/4bc91a6a017a3c57fe00a2ff\/indecent-proposal-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Indecent Proposal","releaseDate":734140800000,"language":"en","type":"Movie","_key":"22300"} +{"label":"Rip Taylor","version":28,"id":"37438","lastModified":"1301901620000","name":"Rip Taylor","type":"Person","_key":"22301"} +{"label":"Pierre Epstein","version":21,"id":"37439","lastModified":"1301901901000","name":"Pierre Epstein","type":"Person","_key":"22302"} +{"label":"Les Mis\u00e9rables","description":"Jean Valjean, convicted of stealing bread, is hounded for decades by the relentless and cruel policeman Javert.","id":"4479","runtime":150,"imdbId":"tt0077936","version":150,"lastModified":"1302023937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4cb516087b9aa138d90000bf\/les-miserables-mid.jpg","studio":"ITC Entertainment","genre":"Drama","title":"Les Mis\u00e9rables","releaseDate":283564800000,"language":"en","tagline":"A classic tale of one man's search for freedom and another's quest for revenge.","type":"Movie","_key":"22303"} +{"label":"Caroline Langrishe","version":30,"id":"37437","lastModified":"1301901447000","name":"Caroline Langrishe","type":"Person","_key":"22304"} +{"label":"Angela Pleasence","version":24,"id":"37440","lastModified":"1301901527000","name":"Angela Pleasence","type":"Person","_key":"22305"} +{"label":"Joyce Redman","version":22,"id":"37441","lastModified":"1301901581000","name":"Joyce Redman","type":"Person","_key":"22306"} +{"label":"Caroline Blakiston","version":25,"id":"37442","lastModified":"1301901449000","name":"Caroline Blakiston","type":"Person","_key":"22307"} +{"label":"Joanna Price","version":21,"id":"37443","lastModified":"1301901523000","name":"Joanna Price","type":"Person","_key":"22308"} +{"label":"Jean de Florette","description":"In a rural French village an old man and his only remaining relative cast their covetous eyes on an adjoining vacant property. They need its spring water for growing their flowers, so are dismayed to hear the man who has inherited it is moving in. They block up the spring and watch as their new neighbour tries to keep his crops watered from wells far afield through the hot summer. Though they see his desperate efforts are breaking his health and his wife and daughter's hearts they think only of ","id":"4480","runtime":120,"imdbId":"tt0091288","version":402,"lastModified":"1301904892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30c\/4bc91a6b017a3c57fe00a30c\/jean-de-florette-mid.jpg","studio":"DD Productions","genre":"Drama","title":"Jean de Florette","releaseDate":525484800000,"language":"en","type":"Movie","_key":"22309"} +{"label":"Elisabeth Depardieu","version":21,"id":"38351","lastModified":"1301901415000","name":"Elisabeth Depardieu","type":"Person","_key":"22310"} +{"label":"Ernestine Mazurowna","version":20,"id":"38385","lastModified":"1301901684000","name":"Ernestine Mazurowna","type":"Person","_key":"22311"} +{"label":"Armand Meffre","version":20,"id":"38386","lastModified":"1301901680000","name":"Armand Meffre","type":"Person","_key":"22312"} +{"label":"Jean Maurel","version":20,"id":"38387","lastModified":"1301901684000","name":"Jean Maurel","type":"Person","_key":"22313"} +{"label":"Didier Pain","version":26,"id":"38389","lastModified":"1301901571000","name":"Didier Pain","type":"Person","_key":"22314"} +{"label":"Pierre-Jean Rippert","version":20,"id":"38390","lastModified":"1301901582000","name":"Pierre-Jean Rippert","type":"Person","_key":"22315"} +{"label":"Manon Des Sources","description":"In this, the sequel to Jean de Florette, Manon (Beart) has grown into a beautiful young shepherdess living in the idyllic Provencal countryside. She plots vengeance on the men whose greedy conspiracy to acquire her her father's land caused his death years earlier.","id":"4481","runtime":120,"imdbId":"tt0091480","version":84,"lastModified":"1301902987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/327\/4bc91a71017a3c57fe00a327\/manon-des-sources-mid.jpg","studio":"DD Productions","genre":"Drama","title":"Manon Des Sources","releaseDate":532742400000,"language":"en","type":"Movie","_key":"22316"} +{"label":"Yvonne Gamy","version":22,"id":"38354","lastModified":"1301901645000","name":"Yvonne Gamy","type":"Person","_key":"22317"} +{"label":"French Twist","description":"After learning of her husband's infidelities, a housewife invites an itinerant lesbian to move in with them. None of their lives will ever be the same again.","id":"4482","runtime":95,"imdbId":"tt0113149","version":127,"lastModified":"1301903942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/330\/4bc91a72017a3c57fe00a330\/gazon-maudit-mid.jpg","studio":"TF1 Films Productions","genre":"Comedy","title":"French Twist","releaseDate":790387200000,"language":"en","type":"Movie","_key":"22318"} +{"label":"Katrine Boorman","version":22,"id":"38402","lastModified":"1301901431000","name":"Katrine Boorman","type":"Person","_key":"22319"} +{"label":"Telsche Boorman","version":22,"id":"38403","lastModified":"1301901901000","name":"Telsche Boorman","type":"Person","_key":"22320"} +{"label":"V\u00e9ronique Barrault","version":21,"id":"38404","lastModified":"1301901701000","name":"V\u00e9ronique Barrault","type":"Person","_key":"22321"} +{"label":"The Return of Martin Guerre","description":"During the medieval times, Martin Guerre returns to his hometown in the middle of France, after being away in the war since he was a child. Nobody recognise him, and the people who knew him suspect he is not Martin, but he knows all about his family and friends, even the most unusual things. Is this man really Martin Guerre?","id":"4483","runtime":122,"imdbId":"tt0084589","version":138,"lastModified":"1301904733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22e\/4ce080215e73d60f6d00022e\/le-retour-de-martin-guerre-mid.jpg","studio":"Soci\u00e9t\u00e9 Fran\u00e7aise de Production","genre":"Drama","title":"The Return of Martin Guerre","releaseDate":390182400000,"language":"en","type":"Movie","_key":"22322"} +{"label":"Daniel Vigne","version":24,"id":"38494","lastModified":"1301901620000","name":"Daniel Vigne","type":"Person","_key":"22323"} +{"label":"Maurice Barrier","version":27,"id":"38499","lastModified":"1301901400000","name":"Maurice Barrier","type":"Person","_key":"22324"} +{"label":"Bernard-Pierre Donnadieu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4ca1f75c7b9aa168b4000106\/bernard-pierre-donnadieu-profile.jpg","version":28,"birthday":"-646970400000","id":"38500","birthplace":"Paris, France","lastModified":"1301901175000","name":"Bernard-Pierre Donnadieu","type":"Person","_key":"22325"} +{"label":"Isabelle Sadoyan","version":27,"id":"38501","lastModified":"1301901937000","name":"Isabelle Sadoyan","type":"Person","_key":"22326"} +{"label":"Chantal Deruaz","version":20,"id":"38502","lastModified":"1301901620000","name":"Chantal Deruaz","type":"Person","_key":"22327"} +{"label":"Maurice Jacquemont","version":20,"id":"38503","lastModified":"1301901901000","name":"Maurice Jacquemont","type":"Person","_key":"22328"} +{"label":"Roger Planchon","version":20,"id":"38504","lastModified":"1301901901000","name":"Roger Planchon","type":"Person","_key":"22329"} +{"label":"Philippe Babin","version":20,"id":"38505","lastModified":"1301901901000","name":"Philippe Babin","type":"Person","_key":"22330"} +{"label":"Val\u00e9rie Chassigneux","version":20,"id":"38506","lastModified":"1301901901000","name":"Val\u00e9rie Chassigneux","type":"Person","_key":"22331"} +{"label":"La Cage Aux Folles","description":"After son Laurent (R\u00e9mi Laurent) turns up and announces his impending nuptials, transvestite-nightclub owner Renato (Ugo Tognazzi) and his drag-queen star attraction, Albin (Michel Serrault), agree to keep their gay lifestyle under wraps for the benefit of the bride-to-be's ultraconservative parents. When the prospective in-laws come to dinner, Renato and Albin masquerade as a straight, married couple -- with farcical results.","id":"4484","runtime":99,"imdbId":"tt0077288","version":143,"lastModified":"1301903248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b77\/4d2a63025e73d626ac003b77\/la-cage-aux-folles-mid.jpg","studio":"Da Ma Produzione","genre":"Comedy","title":"La Cage Aux Folles","releaseDate":278121600000,"language":"en","type":"Movie","_key":"22332"} +{"label":"R\u00e9mi Laurent","version":21,"id":"38510","lastModified":"1301901620000","name":"R\u00e9mi Laurent","type":"Person","_key":"22333"} +{"label":"Carmen Scarpitta","version":23,"id":"38511","lastModified":"1301901901000","name":"Carmen Scarpitta","type":"Person","_key":"22334"} +{"label":"Benny Luke","version":21,"id":"38512","lastModified":"1301901901000","name":"Benny Luke","type":"Person","_key":"22335"} +{"label":"Luisa Maneri","version":24,"id":"38513","lastModified":"1301901901000","name":"Luisa Maneri","type":"Person","_key":"22336"} +{"label":"Diva","description":"Jules, a young Parisian postman, secretly records a concert performance given by the opera singer Cynthia Hawkins, whom he idolises. The following day, Jules runs into a woman who is being pursued by armed thugs. Before she is killed, the woman slips an audio cassette into his mail bag...","id":"4485","runtime":117,"imdbId":"tt0082269","homepage":"http:\/\/diva-themovie.com\/","version":167,"lastModified":"1301904391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33d\/4bc91a73017a3c57fe00a33d\/diva-mid.jpg","studio":"Films A2","genre":"Action","title":"Diva","releaseDate":353116800000,"language":"en","type":"Movie","_key":"22337"} +{"label":"Jean-Jacques Beineix","version":37,"id":"37451","lastModified":"1301901462000","name":"Jean-Jacques Beineix","type":"Person","_key":"22338"} +{"label":"Fr\u00e9d\u00e9ric Andr\u00e9i","version":21,"id":"38514","lastModified":"1301901458000","name":"Fr\u00e9d\u00e9ric Andr\u00e9i","type":"Person","_key":"22339"} +{"label":"Wilhelmenia Fernandez","version":21,"id":"38515","lastModified":"1301901677000","name":"Wilhelmenia Fernandez","type":"Person","_key":"22340"} +{"label":"Jesus of Montreal","description":"A group of actors putting on an interpretive Passion Play in Montreal begin to experience a meshing of their characters and their private lives as the production takes form against the growing opposition of the Catholic church.","id":"4486","runtime":119,"imdbId":"tt0097635","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=YXqJyR67Uis","version":215,"lastModified":"1301904973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d8\/4c52929e7b9aa13d4b0002d8\/jesus-de-montreal-mid.jpg","studio":"Centre National de la Cin\u00e9matographie","genre":"Drama","title":"Jesus of Montreal","releaseDate":611366400000,"language":"en","type":"Movie","_key":"22341"} +{"label":"Denys Arcand","version":38,"id":"38516","lastModified":"1301901568000","name":"Denys Arcand","type":"Person","_key":"22342"} +{"label":"Lothaire Bluteau","version":32,"id":"38524","lastModified":"1301901279000","name":"Lothaire Bluteau","type":"Person","_key":"22343"} +{"label":"Catherine Wilkening","version":22,"id":"32946","lastModified":"1301901582000","name":"Catherine Wilkening","type":"Person","_key":"22344"} +{"label":"Johanne-Marie Tremblay","version":23,"id":"38525","lastModified":"1301901658000","name":"Johanne-Marie Tremblay","type":"Person","_key":"22345"} +{"label":"R\u00e9my Girard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ff\/4ce19d4e5e73d60f6f0003ff\/remy-girard-profile.jpg","version":55,"id":"38526","lastModified":"1302028705000","name":"R\u00e9my Girard","type":"Person","_key":"22346"} +{"label":"Robert Lepage","version":29,"id":"38527","lastModified":"1301901698000","name":"Robert Lepage","type":"Person","_key":"22347"} +{"label":"Gilles Pelletier","version":22,"id":"38528","lastModified":"1301901599000","name":"Gilles Pelletier","type":"Person","_key":"22348"} +{"label":"Yves Jacques","version":34,"id":"38529","lastModified":"1302028705000","name":"Yves Jacques","type":"Person","_key":"22349"} +{"label":"Belph\u00e9gor","description":"No overview found.","id":"4487","runtime":317,"imdbId":"tt0166420","version":60,"lastModified":"1301905649000","studio":"ORTF","genre":"Crime","title":"Belph\u00e9gor","releaseDate":-151372800000,"language":"en","type":"Movie","_key":"22350"} +{"label":"Claude Barma","version":19,"id":"37449","lastModified":"1301901901000","name":"Claude Barma","type":"Person","_key":"22351"} +{"label":"Yves R\u00e9nier","version":22,"id":"24781","lastModified":"1301901568000","name":"Yves R\u00e9nier","type":"Person","_key":"22352"} +{"label":"Juliette Gr\u00e9co","version":24,"id":"37452","lastModified":"1301901595000","name":"Juliette Gr\u00e9co","type":"Person","_key":"22353"} +{"label":"Fran\u00e7ois Chaumette","version":22,"id":"37460","lastModified":"1301901512000","name":"Fran\u00e7ois Chaumette","type":"Person","_key":"22354"} +{"label":"Sylvie","version":26,"id":"37462","lastModified":"1301901567000","name":"Sylvie","type":"Person","_key":"22355"} +{"label":"Andr\u00e9 Dumas","version":21,"id":"37463","lastModified":"1301901741000","name":"Andr\u00e9 Dumas","type":"Person","_key":"22356"} +{"label":"Muni","version":25,"id":"37464","lastModified":"1301901619000","name":"Muni","type":"Person","_key":"22357"} +{"label":"Isaac Alvarez","version":15,"id":"37465","lastModified":"1301901620000","name":"Isaac Alvarez","type":"Person","_key":"22358"} +{"label":"Friday the 13th","description":"Camp Crystal Lake has been shuttered for over 20 years due to several vicious and unsolved murders. The camp's new owner and several young counselors are readying the property for re-opening despite warnings of a \"death curse\" by local residents. The curse proves true on Friday the 13th as one by one each of the counselors is stalked by a violent killer.","id":"4488","runtime":95,"imdbId":"tt0080761","version":422,"lastModified":"1301902392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4c9516a17b9aa10d5b00012b\/friday-the-13th-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"Friday the 13th","releaseDate":326678400000,"language":"en","tagline":"You\u2019ll wish it were only a nightmare.","type":"Movie","_key":"22359"} +{"label":"Betsy Palmer","version":29,"id":"37469","lastModified":"1301901376000","name":"Betsy Palmer","type":"Person","_key":"22360"} +{"label":"Adrienne King","version":31,"id":"37470","lastModified":"1301901519000","name":"Adrienne King","type":"Person","_key":"22361"} +{"label":"Harry Crosby","version":26,"id":"37471","lastModified":"1301901362000","name":"Harry Crosby","type":"Person","_key":"22362"} +{"label":"Laurie Bartram","version":25,"id":"37472","lastModified":"1301901550000","name":"Laurie Bartram","type":"Person","_key":"22363"} +{"label":"Jeannine Taylor","version":25,"id":"37473","lastModified":"1301901633000","name":"Jeannine Taylor","type":"Person","_key":"22364"} +{"label":"Tod der Engel","description":"No overview found.","id":"4489","runtime":101,"imdbId":"tt0105610","version":50,"lastModified":"1301908603000","studio":"ZDF","genre":"Drama","title":"Tod der Engel","releaseDate":721267200000,"language":"en","type":"Movie","_key":"22365"} +{"label":"Rainer Wolffhardt","version":20,"id":"37474","lastModified":"1301901457000","name":"Rainer Wolffhardt","type":"Person","_key":"22366"} +{"label":"Wolfram Berger","version":24,"id":"37478","lastModified":"1301901317000","name":"Wolfram Berger","type":"Person","_key":"22367"} +{"label":"Gerd Fitz","version":20,"id":"37479","lastModified":"1301901415000","name":"Gerd Fitz","type":"Person","_key":"22368"} +{"label":"G\u00fcnter Clemens","version":20,"id":"37480","lastModified":"1301901458000","name":"G\u00fcnter Clemens","type":"Person","_key":"22369"} +{"label":"Alexander Duda","version":21,"id":"37481","lastModified":"1301901658000","name":"Alexander Duda","type":"Person","_key":"22370"} +{"label":"Britta Fischer","version":20,"id":"37482","lastModified":"1301901658000","name":"Britta Fischer","type":"Person","_key":"22371"} +{"label":"Gisela Freudenberg","version":18,"id":"37483","lastModified":"1301901658000","name":"Gisela Freudenberg","type":"Person","_key":"22372"} +{"label":"Paolo Magagna","version":20,"id":"37484","lastModified":"1301901658000","name":"Paolo Magagna","type":"Person","_key":"22373"} +{"label":"Barbara Weinzierl","version":22,"id":"37485","lastModified":"1301901966000","name":"Barbara Weinzierl","type":"Person","_key":"22374"} +{"label":"Arrebato","description":"No overview found.","id":"4494","runtime":105,"imdbId":"tt0078797","version":77,"lastModified":"1301907424000","studio":"Nicol\u00e1s Astiarraga P.C.","genre":"Drama","title":"Arrebato","releaseDate":329356800000,"language":"en","type":"Movie","_key":"22375"} +{"label":"Iv\u00e1n Zulueta","version":22,"id":"37513","lastModified":"1301901966000","name":"Iv\u00e1n Zulueta","type":"Person","_key":"22376"} +{"label":"Will More","version":23,"id":"37518","lastModified":"1301902005000","name":"Will More","type":"Person","_key":"22377"} +{"label":"Marta Fern\u00e1ndez Muro","version":24,"id":"37520","lastModified":"1301901966000","name":"Marta Fern\u00e1ndez Muro","type":"Person","_key":"22378"} +{"label":"Carmen Giralt","version":20,"id":"37521","lastModified":"1301901966000","name":"Carmen Giralt","type":"Person","_key":"22379"} +{"label":"Helena Fern\u00e1n-G\u00f3mez","version":20,"id":"37523","lastModified":"1301901966000","name":"Helena Fern\u00e1n-G\u00f3mez","type":"Person","_key":"22380"} +{"label":"Antonio Gasset","version":20,"id":"37524","lastModified":"1301901966000","name":"Antonio Gasset","type":"Person","_key":"22381"} +{"label":"Luis Ciges","version":25,"id":"37525","lastModified":"1301901568000","name":"Luis Ciges","type":"Person","_key":"22382"} +{"label":"El esp\u00edritu de la colmena","description":"No overview found.","id":"4495","runtime":97,"imdbId":"tt0070040","version":152,"lastModified":"1301902245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36c\/4bc91a7a017a3c57fe00a36c\/el-espiritu-de-la-colmena-mid.jpg","studio":"El\u00edas Querejeta Producciones Cinematogr\u00e1ficas S.L.","genre":"Fantasy","title":"El esp\u00edritu de la colmena","releaseDate":118886400000,"language":"en","type":"Movie","_key":"22383"} +{"label":"V\u00edctor Erice","version":23,"id":"37833","lastModified":"1301901350000","name":"V\u00edctor Erice","type":"Person","_key":"22384"} +{"label":"Teresa Gimpera","version":29,"id":"37839","lastModified":"1301901366000","name":"Teresa Gimpera","type":"Person","_key":"22385"} +{"label":"Isabel Teller\u00eda","version":21,"id":"37840","lastModified":"1301901420000","name":"Isabel Teller\u00eda","type":"Person","_key":"22386"} +{"label":"Laly Soldevila","version":20,"id":"37841","lastModified":"1301984316000","name":"Laly Soldevila","type":"Person","_key":"22387"} +{"label":"Miguel Picazo","version":22,"id":"37842","lastModified":"1301901649000","name":"Miguel Picazo","type":"Person","_key":"22388"} +{"label":"Jos\u00e9 Villasante","version":21,"id":"37843","lastModified":"1301901445000","name":"Jos\u00e9 Villasante","type":"Person","_key":"22389"} +{"label":"Juan Margallo","version":22,"id":"37844","lastModified":"1301901649000","name":"Juan Margallo","type":"Person","_key":"22390"} +{"label":"El desencanto","description":"No overview found.","id":"4496","runtime":97,"imdbId":"tt0074398","version":55,"lastModified":"1300978315000","studio":"El\u00edas Querejeta Producciones Cinematogr\u00e1ficas S.L.","genre":"Documentary","title":"El desencanto","releaseDate":189302400000,"language":"en","type":"Movie","_key":"22391"} +{"label":"Jaime Ch\u00e1varri","version":25,"id":"37613","lastModified":"1301901839000","name":"Jaime Ch\u00e1varri","type":"Person","_key":"22392"} +{"label":"Felicidad Blanc","version":20,"id":"37737","lastModified":"1301901677000","name":"Felicidad Blanc","type":"Person","_key":"22393"} +{"label":"Leopoldo Mar\u00eda Panero","version":20,"id":"37738","lastModified":"1301902003000","name":"Leopoldo Mar\u00eda Panero","type":"Person","_key":"22394"} +{"label":"Juan Luis Panero","version":20,"id":"37739","lastModified":"1301901966000","name":"Juan Luis Panero","type":"Person","_key":"22395"} +{"label":"Michi Panero","version":18,"id":"37740","lastModified":"1301902030000","name":"Michi Panero","type":"Person","_key":"22396"} +{"label":"Viridiana","description":"Viridiana, a young nun about to take her final vows, pays a visit to her widowed uncle at the request of her Mother Superior.","id":"4497","runtime":90,"imdbId":"tt0055601","version":124,"lastModified":"1301908011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/169\/4bd56f5a017a3c2e74000169\/viridiana-mid.jpg","studio":"UNINCI Films 59","genre":"Comedy","title":"Viridiana","releaseDate":-273628800000,"language":"en","type":"Movie","_key":"22397"} +{"label":"Juan Luis Bu\u00f1uel","version":23,"id":"37495","lastModified":"1301901790000","name":"Juan Luis Bu\u00f1uel","type":"Person","_key":"22398"} +{"label":"Jos\u00e9 Puyol","version":19,"id":"37496","lastModified":"1301901901000","name":"Jos\u00e9 Puyol","type":"Person","_key":"22399"} +{"label":"Silvia Pinal","version":28,"id":"37505","lastModified":"1301901803000","name":"Silvia Pinal","type":"Person","_key":"22400"} +{"label":"Victoria Zinny","version":25,"id":"37506","lastModified":"1301902028000","name":"Victoria Zinny","type":"Person","_key":"22401"} +{"label":"Teresa Rabal","version":19,"id":"37507","lastModified":"1301901901000","name":"Teresa Rabal","type":"Person","_key":"22402"} +{"label":"Luis Heredia","version":19,"id":"37508","lastModified":"1301901901000","name":"Luis Heredia","type":"Person","_key":"22403"} +{"label":"Joaqu\u00edn Roa","version":19,"id":"37509","lastModified":"1301901901000","name":"Joaqu\u00edn Roa","type":"Person","_key":"22404"} +{"label":"Lola Gaos","version":22,"id":"37510","lastModified":"1301901540000","name":"Lola Gaos","type":"Person","_key":"22405"} +{"label":"Juan Garc\u00eda Tiendra","version":17,"id":"37511","lastModified":"1301901741000","name":"Juan Garc\u00eda Tiendra","type":"Person","_key":"22406"} +{"label":"Sergio Mendiz\u00e1bal","version":19,"id":"37512","lastModified":"1301901901000","name":"Sergio Mendiz\u00e1bal","type":"Person","_key":"22407"} +{"label":"El verdugo","description":"No overview found.","id":"4498","runtime":87,"imdbId":"tt0057643","version":70,"lastModified":"1301904683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/371\/4bc91a7a017a3c57fe00a371\/el-verdugo-mid.jpg","studio":"Interlagar Films","genre":"Drama","title":"El verdugo","releaseDate":-199929600000,"language":"en","type":"Movie","_key":"22408"} +{"label":"Luis Garc\u00eda Berlanga","version":25,"id":"37493","lastModified":"1301901338000","name":"Luis Garc\u00eda Berlanga","type":"Person","_key":"22409"} +{"label":"Nino Manfredi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/38e\/4bfa7e53017a3c703700038e\/nino-manfredi-profile.jpg","biography":"Nino Manfredi, il cui nome completo \u00e8 Saturnino Manfredi, \u00e8 stato un attore, regista e sceneggiatore italiano. E' stato uno degli attori pi\u00f9 famosi della commedia italiana durante gli anni 60-70-80 insieme ad altri come Alberto Sordi, Ugo Tognazzi, Vittorio Gassman e Marcello Mastroianni.","version":48,"birthday":"-1459472400000","id":"37583","birthplace":"Castro dei Volsci, Frosinone, Italy","lastModified":"1301901493000","name":"Nino Manfredi","type":"Person","_key":"22410"} +{"label":"Jos\u00e9 Isbert","version":25,"id":"37584","lastModified":"1301986415000","name":"Jos\u00e9 Isbert","type":"Person","_key":"22411"} +{"label":"Emma Penella","version":23,"id":"37585","lastModified":"1301901997000","name":"Emma Penella","type":"Person","_key":"22412"} +{"label":"\u00c1ngel \u00c1lvarez","version":25,"id":"37586","lastModified":"1301986415000","name":"\u00c1ngel \u00c1lvarez","type":"Person","_key":"22413"} +{"label":"Jos\u00e9 Luis L\u00f3pez V\u00e1zquez","version":34,"id":"37587","lastModified":"1301985208000","name":"Jos\u00e9 Luis L\u00f3pez V\u00e1zquez","type":"Person","_key":"22414"} +{"label":"Mar\u00eda Luisa Ponte","version":25,"id":"37588","lastModified":"1301901818000","name":"Mar\u00eda Luisa Ponte","type":"Person","_key":"22415"} +{"label":"Mar\u00eda Isbert","version":21,"id":"37589","lastModified":"1301901741000","name":"Mar\u00eda Isbert","type":"Person","_key":"22416"} +{"label":"Pepi, Luci, Bom and Other Girls Like Mom","description":"Almodovar's first film of life in Madrid during the punk era and not one for the squeamish. He covers everything from drugs and sexual violence, to female masochism.","id":"4499","runtime":80,"imdbId":"tt0081323","version":91,"lastModified":"1301903714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b5\/4d5adc177b9aa122c30010b5\/pepi-luci-bom-y-otras-chicas-del-mont-n-mid.jpg","studio":"F\u00edgaro Films","genre":"Comedy","title":"Pepi, Luci, Bom and Other Girls Like Mom","releaseDate":341452800000,"language":"en","type":"Movie","_key":"22417"} +{"label":"Miguel \u00c1ngel P\u00e9rez Campos","version":21,"id":"37551","lastModified":"1301901901000","name":"Miguel \u00c1ngel P\u00e9rez Campos","type":"Person","_key":"22418"} +{"label":"Eva Siva","version":29,"id":"37545","lastModified":"1301901787000","name":"Eva Siva","type":"Person","_key":"22419"} +{"label":"Olvido Gara","version":20,"id":"37546","lastModified":"1301901989000","name":"Olvido Gara","type":"Person","_key":"22420"} +{"label":"F\u00e9lix Rotaeta","version":24,"id":"37542","lastModified":"1301901741000","name":"F\u00e9lix Rotaeta","type":"Person","_key":"22421"} +{"label":"Concha Gr\u00e9gori","version":26,"id":"37547","lastModified":"1301901787000","name":"Concha Gr\u00e9gori","type":"Person","_key":"22422"} +{"label":"Fabio McNamara","version":20,"id":"37548","lastModified":"1301901695000","name":"Fabio McNamara","type":"Person","_key":"22423"} +{"label":"Cristina S\u00e1nchez Pascual","version":23,"id":"37549","lastModified":"1301902026000","name":"Cristina S\u00e1nchez Pascual","type":"Person","_key":"22424"} +{"label":"\u00d3pera prima","description":"No overview found.","id":"4500","runtime":94,"imdbId":"tt0081820","version":59,"lastModified":"1301904446000","studio":"Les Films Moli\u00e8re","genre":"Comedy","title":"\u00d3pera prima","releaseDate":323481600000,"language":"en","type":"Movie","_key":"22425"} +{"label":"Ramiro De Maeztu","version":18,"id":"37565","lastModified":"1301901987000","name":"Ramiro De Maeztu","type":"Person","_key":"22426"} +{"label":"\u00d3scar Ladoire","version":25,"id":"37559","lastModified":"1301901946000","name":"\u00d3scar Ladoire","type":"Person","_key":"22427"} +{"label":"Paula Molina","version":20,"id":"37568","lastModified":"1301901942000","name":"Paula Molina","type":"Person","_key":"22428"} +{"label":"Antonio Resines","version":31,"id":"37569","lastModified":"1301901242000","name":"Antonio Resines","type":"Person","_key":"22429"} +{"label":"Luis Gonz\u00e1lez Regueral","version":18,"id":"37570","lastModified":"1301902030000","name":"Luis Gonz\u00e1lez Regueral","type":"Person","_key":"22430"} +{"label":"Alejandro Serna","version":19,"id":"37571","lastModified":"1301901900000","name":"Alejandro Serna","type":"Person","_key":"22431"} +{"label":"David Thomson","version":19,"id":"37572","lastModified":"1301901899000","name":"David Thomson","type":"Person","_key":"22432"} +{"label":"Tony Valento","version":20,"id":"37573","lastModified":"1301901899000","name":"Tony Valento","type":"Person","_key":"22433"} +{"label":"El Gran Wyoming","version":22,"id":"37574","lastModified":"1301901738000","name":"El Gran Wyoming","type":"Person","_key":"22434"} +{"label":"Der Fall Rohrbach","description":"No overview found.","id":"4501","runtime":270,"imdbId":"tt0335663","version":42,"lastModified":"1301908603000","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Der Fall Rohrbach","releaseDate":-209952000000,"language":"en","type":"Movie","_key":"22435"} +{"label":"Robert A. Stemmle","version":31,"id":"37899","lastModified":"1301901658000","name":"Robert A. Stemmle","type":"Person","_key":"22436"} +{"label":"Anita H\u00f6fer","version":23,"id":"37529","lastModified":"1301901966000","name":"Anita H\u00f6fer","type":"Person","_key":"22437"} +{"label":"Joachim Boldt","version":16,"id":"37530","lastModified":"1301901658000","name":"Joachim Boldt","type":"Person","_key":"22438"} +{"label":"Harry Riebauer","version":25,"id":"37531","lastModified":"1301901791000","name":"Harry Riebauer","type":"Person","_key":"22439"} +{"label":"Paul Glawion","version":20,"id":"37532","lastModified":"1301901791000","name":"Paul Glawion","type":"Person","_key":"22440"} +{"label":"Hermann Kiessner","version":20,"id":"37533","lastModified":"1301901966000","name":"Hermann Kiessner","type":"Person","_key":"22441"} +{"label":"Eduard Wandrey","version":21,"id":"37534","lastModified":"1301901966000","name":"Eduard Wandrey","type":"Person","_key":"22442"} +{"label":"Wolfgang Spier","version":16,"id":"25496","lastModified":"1301902159000","name":"Wolfgang Spier","type":"Person","_key":"22443"} +{"label":"Jam\u00f3n, jam\u00f3n","description":"No overview found.","id":"4507","runtime":95,"imdbId":"tt0104545","version":81,"lastModified":"1301907424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bf\/4cac9c415e73d64dd20002bf\/jamon-jamon-mid.jpg","genre":"Comedy","title":"Jam\u00f3n, jam\u00f3n","releaseDate":715564800000,"language":"en","type":"Movie","_key":"22444"} +{"label":"Bigas Luna","version":40,"id":"37577","lastModified":"1301901781000","name":"Bigas Luna","type":"Person","_key":"22445"} +{"label":"Tom\u00e1s Mart\u00edn","version":20,"id":"37579","lastModified":"1301901672000","name":"Tom\u00e1s Mart\u00edn","type":"Person","_key":"22446"} +{"label":"Juan Diego","version":36,"id":"37580","lastModified":"1301901701000","name":"Juan Diego","type":"Person","_key":"22447"} +{"label":"The Assassination of Jesse James by the Coward Robert Ford","description":"Everyone in 1880's America knows Jesse James. He's the nation's most notorious criminal, hunted by the law in 10 states. He's also the land's greatest hero, lauded as a Robin Hood by the public. Robert Ford? No one knows him. Not Yet. But the ambitious 19-year-old aims to change that. He'll befriend Jesse, ride with his gang. And if that doesn't bring Ford fame, he'll find a deadlier way.","id":"4512","runtime":156,"imdbId":"tt0443680","trailer":"http:\/\/www.youtube.com\/watch?v=nk0JaEwhf00&hd=1","homepage":"http:\/\/jessejamesmovie.warnerbros.com\/","version":355,"lastModified":"1301901879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d8\/4cb6f0357b9aa138d80004d8\/the-assassination-of-jesse-james-by-the-coward-robert-ford-mid.jpg","studio":"Scott Free Productions","genre":"Action","title":"The Assassination of Jesse James by the Coward Robert Ford","releaseDate":1188691200000,"language":"en","tagline":"Beyond the myth lies America's greatest betrayal","type":"Movie","_key":"22448"} +{"label":"Andrew Dominik","version":40,"id":"37618","lastModified":"1301901328000","name":"Andrew Dominik","type":"Person","_key":"22449"} +{"label":"Brooklynn Proulx","version":30,"id":"39518","lastModified":"1301901400000","name":"Brooklynn Proulx","type":"Person","_key":"22450"} +{"label":"Dustin Bollinger","version":24,"id":"39519","lastModified":"1301901619000","name":"Dustin Bollinger","type":"Person","_key":"22451"} +{"label":"Garret Dillahunt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4c2d1e755e73d63cca000010\/garret-dillahunt-profile.jpg","version":68,"id":"39520","lastModified":"1302062429000","name":"Garret Dillahunt","type":"Person","_key":"22452"} +{"label":"Paul Schneider","version":44,"id":"15684","lastModified":"1301901369000","name":"Paul Schneider","type":"Person","_key":"22453"} +{"label":"Joel McNichol","version":25,"id":"39521","lastModified":"1301901477000","name":"Joel McNichol","type":"Person","_key":"22454"} +{"label":"James Defelice","version":24,"id":"39522","lastModified":"1301901594000","name":"James Defelice","type":"Person","_key":"22455"} +{"label":"30 Days of Night","description":"As the sun sets over the isolated town of a small Alaskan town for winter, the residents prepare for 30 days of total darkness. But dusk heralds the arrival of a pack of blood-hungry vampires . . . with a month to kill.","id":"4513","runtime":113,"imdbId":"tt0389722","trailer":"http:\/\/www.youtube.com\/watch?v=c4-Qg3wlCrQ","homepage":"http:\/\/www.sonypictures.com\/movies\/30daysofnight\/index.html","version":442,"lastModified":"1301901370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36b\/4c54c8c85e73d632bd00036b\/30-days-of-night-mid.jpg","studio":"Dark Horse Entertainment","genre":"Action","title":"30 Days of Night","releaseDate":1192492800000,"language":"en","tagline":"They're Coming!","type":"Movie","_key":"22456"} +{"label":"Craig Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc9\/4cba48497b9aa138da000bc9\/craig-hall-profile.jpg","version":42,"id":"3496","lastModified":"1301901376000","name":"Craig Hall","type":"Person","_key":"22457"} +{"label":"Manu Bennett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a85\/4d7aa0a95e73d6282a000a85\/manu-bennett-profile.jpg","version":44,"id":"41782","lastModified":"1301901423000","name":"Manu Bennett","type":"Person","_key":"22458"} +{"label":"Nathaniel Lees","version":32,"id":"41784","lastModified":"1301901461000","name":"Nathaniel Lees","type":"Person","_key":"22459"} +{"label":"Joel Tobeck","version":40,"id":"41785","lastModified":"1301901274000","name":"Joel Tobeck","type":"Person","_key":"22460"} +{"label":"Lions for Lambs","description":"Three stories told simultaneous in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.","id":"4515","runtime":95,"imdbId":"tt0891527","trailer":"http:\/\/www.youtube.com\/watch?v=n_V6ulwA0KE","version":354,"lastModified":"1301907508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b4\/4bc91a87017a3c57fe00a3b4\/lions-for-lambs-mid.jpg","studio":"Andell Entertainment","genre":"Action","title":"Lions for Lambs","releaseDate":1193011200000,"language":"en","type":"Movie","_key":"22461"} +{"label":"Tracy Dali","version":27,"id":"37623","lastModified":"1301901393000","name":"Tracy Dali","type":"Person","_key":"22462"} +{"label":"Jennifer Sommerfield","version":26,"id":"37624","lastModified":"1301901619000","name":"Jennifer Sommerfield","type":"Person","_key":"22463"} +{"label":"My Best Friend","description":"Catherine refuses to believe that her business partner, the unlikeable Fran\u00e7ois, has a best friend, so she challenges him to set up an introduction. Scrambling to find someone willing to pose as his best pal, Fran\u00e7ois enlists the services of a charming taxi driver to play the part.","id":"4516","runtime":90,"imdbId":"tt0778784","trailer":"http:\/\/www.youtube.com\/watch?v=335","homepage":"http:\/\/www.monmeilleurami-lefilm.com\/","version":238,"lastModified":"1301906247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c1\/4bc91a8b017a3c57fe00a3c1\/mon-meilleur-ami-mid.jpg","studio":"Wild Bunch","genre":"Comedy","title":"My Best Friend","releaseDate":1158019200000,"language":"en","tagline":"It takes a lifetime to learn the meaning of friendship... Fran\u00e7ois has 10 days.","type":"Movie","_key":"22464"} +{"label":"Patrice Leconte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68e\/4bfad6f3017a3c702f00068e\/patrice-leconte-profile.jpg","version":75,"id":"37626","lastModified":"1301901230000","name":"Patrice Leconte","type":"Person","_key":"22465"} +{"label":"Dany Boon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/770\/4d136c435e73d60842001770\/dany-boon-profile.jpg","version":88,"id":"37627","lastModified":"1301901111000","name":"Dany Boon","type":"Person","_key":"22466"} +{"label":"Julie Gayet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/881\/4d7113887b9aa17015000881\/julie-gayet-profile.jpg","version":30,"id":"37628","lastModified":"1301901428000","name":"Julie Gayet","type":"Person","_key":"22467"} +{"label":"Julie Durand","version":21,"id":"37629","lastModified":"1301901539000","name":"Julie Durand","type":"Person","_key":"22468"} +{"label":"\u00c9lisabeth Bourgine","version":23,"id":"37763","lastModified":"1301901988000","name":"\u00c9lisabeth Bourgine","type":"Person","_key":"22469"} +{"label":"Jacques Spiesser","version":28,"id":"37764","lastModified":"1301901619000","name":"Jacques Spiesser","type":"Person","_key":"22470"} +{"label":"Audrey Marnay","version":25,"id":"37765","lastModified":"1301901899000","name":"Audrey Marnay","type":"Person","_key":"22471"} +{"label":"Elizabeth: The Golden Age","description":"This movie is a Sequel to the First Elizabeth movie from 1998, and takes place in the 15th century, following the virgin queen of England, and her epic battle against the Spanish fleet","id":"4517","runtime":115,"imdbId":"tt0414055","trailer":"http:\/\/www.youtube.com\/watch?v=265","version":364,"lastModified":"1301901563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a7\/4c5a248b5e73d63a710004a7\/elizabeth-the-golden-age-mid.jpg","studio":"Working Title Films","genre":"Drama","title":"Elizabeth: The Golden Age","releaseDate":1189296000000,"language":"en","tagline":"Woman. Warrior. Queen.","type":"Movie","_key":"22472"} +{"label":"Shekhar Kapur","version":33,"id":"37630","lastModified":"1301901250000","name":"Shekhar Kapur","type":"Person","_key":"22473"} +{"label":"Eddie Redmayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/288\/4d1384fa7b9aa1147a001288\/eddie-redmayne-profile.jpg","version":48,"id":"37632","lastModified":"1301901202000","name":"Eddie Redmayne","type":"Person","_key":"22474"} +{"label":"Elizabeth","description":"This film details the ascension to the throne and the early reign of Queen Elizabeth the First, as played by Cate Blanchett. The main focus is the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley. ","id":"4518","runtime":120,"imdbId":"tt0127536","trailer":"http:\/\/www.youtube.com\/watch?v=264","version":232,"lastModified":"1302023224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fa\/4d06115f7b9aa11bc10029fa\/elizabeth-mid.jpg","studio":"PolyGram Filmed Entertainment","genre":"Drama","title":"Elizabeth","releaseDate":908236800000,"language":"en","type":"Movie","_key":"22475"} +{"label":"Eric Cantona","version":30,"id":"37758","lastModified":"1301941360000","name":"Eric Cantona","type":"Person","_key":"22476"} +{"label":"Kathy Burke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f47\/4cf1840b5e73d61928000f47\/kathy-burke-profile.jpg","version":29,"id":"37759","lastModified":"1301901215000","name":"Kathy Burke","type":"Person","_key":"22477"} +{"label":"Kenny Doughty","version":24,"id":"37760","lastModified":"1301901399000","name":"Kenny Doughty","type":"Person","_key":"22478"} +{"label":"Conversations With My Gardener","description":"A successful artist, weary of Parisian life and on the verge of divorce, returns to the country to live in his childhood house. He needs someone to make a real vegetable garden again out of the wilderness it has become. The gardener happens to be a former schoolfriend. A warm, fruitful conversation starts between the two men.","id":"4519","runtime":109,"imdbId":"tt0825244","version":137,"lastModified":"1301905284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ec\/4bc91a93017a3c57fe00a3ec\/dialogue-avec-mon-jardinier-mid.jpg","studio":"Centre National de la Cin\u00e9matographie","genre":"Comedy","title":"Conversations With My Gardener","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"22479"} +{"label":"Jean Becker","version":34,"id":"37633","lastModified":"1301901650000","name":"Jean Becker","type":"Person","_key":"22480"} +{"label":"Fanny Cotten\u00e7on","version":22,"id":"37644","lastModified":"1301901738000","name":"Fanny Cotten\u00e7on","type":"Person","_key":"22481"} +{"label":"Alexia Barlier","version":21,"id":"37645","lastModified":"1301901738000","name":"Alexia Barlier","type":"Person","_key":"22482"} +{"label":"\u00c9lodie Navarre","version":24,"id":"37646","lastModified":"1301901838000","name":"\u00c9lodie Navarre","type":"Person","_key":"22483"} +{"label":"Michel Lagueyrie","version":19,"id":"37647","lastModified":"1301901899000","name":"Michel Lagueyrie","type":"Person","_key":"22484"} +{"label":"Christian Schiaretti","version":19,"id":"37648","lastModified":"1301901738000","name":"Christian Schiaretti","type":"Person","_key":"22485"} +{"label":"Bernard Crombey","version":22,"id":"37649","lastModified":"1301901816000","name":"Bernard Crombey","type":"Person","_key":"22486"} +{"label":"Jean-Claude Bolle-Reddat","version":23,"id":"37650","lastModified":"1301901258000","name":"Jean-Claude Bolle-Reddat","type":"Person","_key":"22487"} +{"label":"Monique Roussel","version":19,"id":"37651","lastModified":"1301901899000","name":"Monique Roussel","type":"Person","_key":"22488"} +{"label":"Coralie Andr\u00e9","version":19,"id":"37652","lastModified":"1301901899000","name":"Coralie Andr\u00e9","type":"Person","_key":"22489"} +{"label":"Sleuth","description":"On his sprawling country estate, an aging writer matches wits with the struggling actor who has stolen his wife's heart.","id":"4520","runtime":86,"imdbId":"tt0857265","trailer":"http:\/\/www.youtube.com\/watch?v=eDrdGPhs7vg","homepage":"http:\/\/www.sonyclassics.com\/sleuth\/","version":254,"lastModified":"1301902342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f9\/4bc91a94017a3c57fe00a3f9\/sleuth-mid.jpg","studio":"Riff Raff Film Productions","genre":"Suspense","title":"Sleuth","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"22490"} +{"label":"Carmel O'Sullivan","version":25,"id":"82847","lastModified":"1301901413000","name":"Carmel O'Sullivan","type":"Person","_key":"22491"} +{"label":"Enchanted","description":"The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a \"happily ever after\" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect ","id":"4523","runtime":107,"imdbId":"tt0461770","trailer":"http:\/\/www.youtube.com\/watch?v=261","homepage":"http:\/\/disney.go.com\/disneypictures\/enchanted\/","version":325,"lastModified":"1301920599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93e\/4d8e927e7b9aa1675500193e\/enchanted-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"Enchanted","releaseDate":1192838400000,"language":"en","tagline":"This fairytale princess is about to meet a real Prince Charming","type":"Movie","_key":"22492"} +{"label":"Kevin Lima","version":47,"id":"15775","lastModified":"1302066195000","name":"Kevin Lima","type":"Person","_key":"22493"} +{"label":"Rachel Covey","version":25,"id":"38192","lastModified":"1301901421000","name":"Rachel Covey","type":"Person","_key":"22494"} +{"label":"Jeff Bennett","version":105,"id":"34982","lastModified":"1301997897000","name":"Jeff Bennett","type":"Person","_key":"22495"} +{"label":"Emma Rose Lima","version":25,"id":"42914","lastModified":"1301901677000","name":"Emma Rose Lima","type":"Person","_key":"22496"} +{"label":"Teala Dunn","version":25,"id":"42915","lastModified":"1301901586000","name":"Teala Dunn","type":"Person","_key":"22497"} +{"label":"Kommissar X","description":"No overview found.","id":"4525","version":254,"lastModified":"1301908066000","title":"Kommissar X","language":"en","type":"Movie","_key":"22498"} +{"label":"Kommissar X - Drei gelbe Katzen","description":"No overview found.","id":"4526","runtime":95,"imdbId":"tt0060600","version":63,"lastModified":"1301907285000","studio":"Parnass-Film","genre":"Crime","title":"Kommissar X - Drei gelbe Katzen","releaseDate":-114480000000,"language":"en","type":"Movie","_key":"22499"} +{"label":"Rudolf Zehetgruber","version":25,"id":"37716","lastModified":"1301901619000","name":"Rudolf Zehetgruber","type":"Person","_key":"22500"} +{"label":"Brad Harris","version":31,"id":"37722","lastModified":"1301901596000","name":"Brad Harris","type":"Person","_key":"22501"} +{"label":"Dan Vadis","version":21,"id":"37723","lastModified":"1301901738000","name":"Dan Vadis","type":"Person","_key":"22502"} +{"label":"H.D. Kulatunga","version":20,"id":"37725","lastModified":"1301902003000","name":"H.D. Kulatunga","type":"Person","_key":"22503"} +{"label":"Mich\u00e8le Mahaut","version":18,"id":"37726","lastModified":"1301901672000","name":"Mich\u00e8le Mahaut","type":"Person","_key":"22504"} +{"label":"Philippe Lemaire","version":20,"id":"37727","lastModified":"1301901738000","name":"Philippe Lemaire","type":"Person","_key":"22505"} +{"label":"Erno Crisa","version":21,"id":"37728","lastModified":"1301901455000","name":"Erno Crisa","type":"Person","_key":"22506"} +{"label":"A. Jayarati","version":19,"id":"37729","lastModified":"1301901899000","name":"A. Jayarati","type":"Person","_key":"22507"} +{"label":"Werner Hauff","version":22,"id":"37730","lastModified":"1301901899000","name":"Werner Hauff","type":"Person","_key":"22508"} +{"label":"Paul Beckmann","version":20,"id":"37731","lastModified":"1301901677000","name":"Paul Beckmann","type":"Person","_key":"22509"} +{"label":"Joe Abey","version":19,"id":"37732","lastModified":"1301901619000","name":"Joe Abey","type":"Person","_key":"22510"} +{"label":"Chandrika 'Champa' Liyanage","version":17,"id":"37733","lastModified":"1301901619000","name":"Chandrika 'Champa' Liyanage","type":"Person","_key":"22511"} +{"label":"Claus Biederstaedt","version":22,"id":"37734","lastModified":"1301901505000","name":"Claus Biederstaedt","type":"Person","_key":"22512"} +{"label":"Gerd Duwner","version":20,"id":"37735","lastModified":"1301901899000","name":"Gerd Duwner","type":"Person","_key":"22513"} +{"label":"Benno Hoffmann","version":21,"id":"37671","lastModified":"1301901899000","name":"Benno Hoffmann","type":"Person","_key":"22514"} +{"label":"Tony Kendall","version":35,"id":"37745","lastModified":"1301901568000","name":"Tony Kendall","type":"Person","_key":"22515"} +{"label":"Kommissar X - Jagd auf Unbekannt","description":"No overview found.","id":"4527","runtime":92,"imdbId":"tt0059364","version":56,"lastModified":"1301906084000","studio":"Avala Film","genre":"Crime","title":"Kommissar X - Jagd auf Unbekannt","releaseDate":-120268800000,"language":"en","type":"Movie","_key":"22516"} +{"label":"Gianfranco Parolini","version":30,"id":"37742","lastModified":"1301901568000","name":"Gianfranco Parolini","type":"Person","_key":"22517"} +{"label":"Christa Linder","version":22,"id":"37746","lastModified":"1301901840000","name":"Christa Linder","type":"Person","_key":"22518"} +{"label":"Nikola Popovic","version":20,"id":"37747","lastModified":"1301901738000","name":"Nikola Popovic","type":"Person","_key":"22519"} +{"label":"Giuseppe Mattei","version":23,"id":"37748","lastModified":"1301901738000","name":"Giuseppe Mattei","type":"Person","_key":"22520"} +{"label":"Jacques B\u00e9zard","version":19,"id":"37749","lastModified":"1301902030000","name":"Jacques B\u00e9zard","type":"Person","_key":"22521"} +{"label":"Danielle Godet","version":25,"id":"37750","lastModified":"1301902022000","name":"Danielle Godet","type":"Person","_key":"22522"} +{"label":"Olivera Katarina","version":18,"id":"37751","lastModified":"1301901810000","name":"Olivera Katarina","type":"Person","_key":"22523"} +{"label":"Liliane Dulovic","version":20,"id":"37752","lastModified":"1301902003000","name":"Liliane Dulovic","type":"Person","_key":"22524"} +{"label":"Martin Hirthe","version":21,"id":"37753","lastModified":"1301901738000","name":"Martin Hirthe","type":"Person","_key":"22525"} +{"label":"Alf Marholm","version":22,"id":"37754","lastModified":"1301901695000","name":"Alf Marholm","type":"Person","_key":"22526"} +{"label":"The Count of Monte Cristo","description":"No overview found.","id":"4528","runtime":180,"imdbId":"tt0054761","version":133,"lastModified":"1301904959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76f\/4caa21607b9aa17aca00076f\/le-comte-de-monte-cristo-mid.jpg","studio":"Cineriz","genre":"History","title":"The Count of Monte Cristo","releaseDate":-254707200000,"language":"en","type":"Movie","_key":"22527"} +{"label":"Claude Autant-Lara","version":24,"id":"37770","lastModified":"1301901568000","name":"Claude Autant-Lara","type":"Person","_key":"22528"} +{"label":"Claudine Coster","version":24,"id":"37771","lastModified":"1301901658000","name":"Claudine Coster","type":"Person","_key":"22529"} +{"label":"Jean-Claude Michel","version":21,"id":"37772","lastModified":"1301901681000","name":"Jean-Claude Michel","type":"Person","_key":"22530"} +{"label":"Franco Silva","version":22,"id":"37773","lastModified":"1301901658000","name":"Franco Silva","type":"Person","_key":"22531"} +{"label":"Alain Ferral","version":21,"id":"37774","lastModified":"1301901680000","name":"Alain Ferral","type":"Person","_key":"22532"} +{"label":"L'espion","description":"No overview found.","id":"4529","runtime":106,"imdbId":"tt0060295","version":61,"lastModified":"1301421342000","studio":"PECF","genre":"Action","title":"L'espion","releaseDate":-101001600000,"language":"en","type":"Movie","_key":"22533"} +{"label":"Raoul L\u00e9vy","version":30,"id":"37775","lastModified":"1301901658000","name":"Raoul L\u00e9vy","type":"Person","_key":"22534"} +{"label":"Kommissar X - In den Klauen des goldenen Drachen","description":"No overview found.","id":"4532","runtime":88,"imdbId":"tt0060076","version":57,"lastModified":"1301906084000","studio":"Metheus-Film","genre":"Crime","title":"Kommissar X - In den Klauen des goldenen Drachen","releaseDate":-102729600000,"language":"en","type":"Movie","_key":"22535"} +{"label":"Barbara Frey","version":19,"id":"37781","lastModified":"1301901738000","name":"Barbara Frey","type":"Person","_key":"22536"} +{"label":"Luisa Rivelli","version":19,"id":"37782","lastModified":"1301901619000","name":"Luisa Rivelli","type":"Person","_key":"22537"} +{"label":"Ernst Fritz F\u00fcrbringer","version":24,"id":"26912","lastModified":"1301901788000","name":"Ernst Fritz F\u00fcrbringer","type":"Person","_key":"22538"} +{"label":"Margaret Rose Keil","version":20,"id":"37783","lastModified":"1301901738000","name":"Margaret Rose Keil","type":"Person","_key":"22539"} +{"label":"Carlo Tamberlani","version":21,"id":"37784","lastModified":"1301901899000","name":"Carlo Tamberlani","type":"Person","_key":"22540"} +{"label":"H. Amin","version":19,"id":"37785","lastModified":"1301901619000","name":"H. Amin","type":"Person","_key":"22541"} +{"label":"Curt Ackermann","version":19,"id":"37786","lastModified":"1301901899000","name":"Curt Ackermann","type":"Person","_key":"22542"} +{"label":"Horst Niendorf","version":20,"id":"37787","lastModified":"1301901738000","name":"Horst Niendorf","type":"Person","_key":"22543"} +{"label":"Kommissar X - Drei gr\u00fcne Hunde","description":"No overview found.","id":"4533","runtime":93,"imdbId":"tt0061878","version":61,"lastModified":"1301418664000","studio":"Avala Film","genre":"Crime","title":"Kommissar X - Drei gr\u00fcne Hunde","releaseDate":-86400000000,"language":"en","type":"Movie","_key":"22544"} +{"label":"Olga Schoberov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ff\/4ccd36567b9aa16b9c0006ff\/olga-schoberova-profile.jpg","version":24,"id":"37792","lastModified":"1301901713000","name":"Olga Schoberov\u00e1","type":"Person","_key":"22545"} +{"label":"Dietmar Sch\u00f6nherr","version":28,"id":"37793","lastModified":"1301901651000","name":"Dietmar Sch\u00f6nherr","type":"Person","_key":"22546"} +{"label":"Rossella Bergamonti","version":18,"id":"37795","lastModified":"1301901841000","name":"Rossella Bergamonti","type":"Person","_key":"22547"} +{"label":"Emilio Carrer","version":19,"id":"37796","lastModified":"1301901899000","name":"Emilio Carrer","type":"Person","_key":"22548"} +{"label":"Traudel Haas","version":17,"id":"37797","lastModified":"1301901899000","name":"Traudel Haas","type":"Person","_key":"22549"} +{"label":"Friedrich Schoenfelder","version":25,"id":"37798","lastModified":"1301901961000","name":"Friedrich Schoenfelder","type":"Person","_key":"22550"} +{"label":"Kommissar X - Drei blaue Panther","description":"No overview found.","id":"4534","runtime":89,"imdbId":"tt0061877","version":52,"lastModified":"1301906084000","studio":"Avala Film","genre":"Crime","title":"Kommissar X - Drei blaue Panther","releaseDate":-55036800000,"language":"en","type":"Movie","_key":"22551"} +{"label":"Corny Collins","version":26,"id":"37804","lastModified":"1301901501000","name":"Corny Collins","type":"Person","_key":"22552"} +{"label":"Hannelore Auer","version":24,"id":"37805","lastModified":"1301902003000","name":"Hannelore Auer","type":"Person","_key":"22553"} +{"label":"Erwin Strahl","version":22,"id":"37806","lastModified":"1301901788000","name":"Erwin Strahl","type":"Person","_key":"22554"} +{"label":"Kommissar X - Drei goldene Schlangen","description":"No overview found.","id":"4535","runtime":88,"imdbId":"tt0063193","version":49,"lastModified":"1301419605000","studio":"Avala Film","genre":"Crime","title":"Kommissar X - Drei goldene Schlangen","releaseDate":-22291200000,"language":"en","type":"Movie","_key":"22555"} +{"label":"Roberto Mauri","version":20,"id":"37807","lastModified":"1301901967000","name":"Roberto Mauri","type":"Person","_key":"22556"} +{"label":"Monica Pardo","version":18,"id":"37813","lastModified":"1301901810000","name":"Monica Pardo","type":"Person","_key":"22557"} +{"label":"Loni Heuser","version":23,"id":"37814","lastModified":"1301901660000","name":"Loni Heuser","type":"Person","_key":"22558"} +{"label":"Hansi Linder","version":18,"id":"37815","lastModified":"1301902030000","name":"Hansi Linder","type":"Person","_key":"22559"} +{"label":"World's Biggest Penis","description":"No overview found.","id":"4536","runtime":60,"imdbId":"tt0989101","version":29,"lastModified":"1301905340000","studio":"Channel Four Films","genre":"Documentary","title":"World's Biggest Penis","releaseDate":1138752000000,"language":"en","type":"Movie","_key":"22560"} +{"label":"Simon Kerslake","version":22,"id":"37808","lastModified":"1301902003000","name":"Simon Kerslake","type":"Person","_key":"22561"} +{"label":"Jonah Falcon","version":20,"id":"37809","lastModified":"1301901828000","name":"Jonah Falcon","type":"Person","_key":"22562"} +{"label":"Kommissar X jagt die roten Tiger","description":"No overview found.","id":"4537","runtime":89,"imdbId":"tt0067310","version":49,"lastModified":"1301906634000","studio":"Avala Film","genre":"Crime","title":"Kommissar X jagt die roten Tiger","releaseDate":51494400000,"language":"en","type":"Movie","_key":"22563"} +{"label":"Mohammad Ali","version":18,"id":"37819","lastModified":"1301901673000","name":"Mohammad Ali","type":"Person","_key":"22564"} +{"label":"Zeba","version":20,"id":"37820","lastModified":"1301902003000","name":"Zeba","type":"Person","_key":"22565"} +{"label":"Rainer Basedow","version":27,"id":"26555","lastModified":"1301901791000","name":"Rainer Basedow","type":"Person","_key":"22566"} +{"label":"The Darjeeling Limited","description":"Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their \"spiritual quest\", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).","id":"4538","runtime":91,"imdbId":"tt0838221","trailer":"http:\/\/www.youtube.com\/watch?v=fY_JQdzoBeM","homepage":"http:\/\/www.foxsearchlight.com\/thedarjeelinglimited\/","version":279,"lastModified":"1301902054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/448\/4bc91aa5017a3c57fe00a448\/the-darjeeling-limited-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Adventure","title":"The Darjeeling Limited","releaseDate":1188777600000,"language":"en","type":"Movie","_key":"22567"} +{"label":"Camilla Rutherford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4ceec5785e73d654f70000ff\/camilla-rutherford-profile.jpg","version":23,"id":"38809","lastModified":"1301901424000","name":"Camilla Rutherford","type":"Person","_key":"22568"} +{"label":"Wallace Wolodarsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/108\/4ceec5eb5e73d654f5000108\/wallace-wolodarsky-profile.jpg","version":37,"id":"486","lastModified":"1301901205000","name":"Wallace Wolodarsky","type":"Person","_key":"22569"} +{"label":"Amara Karan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4ceec4d85e73d654f70000ee\/amara-karan-profile.jpg","version":23,"id":"66443","lastModified":"1301901381000","name":"Amara Karan","type":"Person","_key":"22570"} +{"label":"Hearts of Darkness: A Filmmaker's Apocalypse","description":"Hearts of Darkness chronicles how production problems including bad weather, actors' health and other issues delayed the film, increasing costs and nearly destroying the life and career of Francis Ford Coppola.","id":"4539","runtime":96,"imdbId":"tt0102015","version":98,"lastModified":"1301904890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/460\/4bc91aaa017a3c57fe00a460\/hearts-of-darkness-a-filmmaker-s-apocalypse-mid.jpg","studio":"American Zoetrope","genre":"Documentary","title":"Hearts of Darkness: A Filmmaker's Apocalypse","releaseDate":691200000000,"language":"en","type":"Movie","_key":"22571"} +{"label":"Fax Bahr","version":24,"id":"37850","lastModified":"1301901415000","name":"Fax Bahr","type":"Person","_key":"22572"} +{"label":"George Hickenlooper","version":32,"id":"37852","lastModified":"1301901223000","name":"George Hickenlooper","type":"Person","_key":"22573"} +{"label":"Eleanor Coppola","version":20,"id":"37872","lastModified":"1301901512000","name":"Eleanor Coppola","type":"Person","_key":"22574"} +{"label":"Emil und die Detektive","description":"No overview found.","id":"4540","runtime":75,"imdbId":"tt0021836","version":79,"lastModified":"1301905007000","studio":"Universal Film","genre":"Comedy","title":"Emil und die Detektive","releaseDate":-1230768000000,"language":"en","type":"Movie","_key":"22575"} +{"label":"Gerhard Lamprecht","version":20,"id":"37845","lastModified":"1301901814000","name":"Gerhard Lamprecht","type":"Person","_key":"22576"} +{"label":"Rolf Wenkhaus","version":20,"id":"37853","lastModified":"1301901677000","name":"Rolf Wenkhaus","type":"Person","_key":"22577"} +{"label":"Rudolf Biebrach","version":20,"id":"37854","lastModified":"1301902010000","name":"Rudolf Biebrach","type":"Person","_key":"22578"} +{"label":"Hans Joachim Schaufu\u00df","version":20,"id":"37855","lastModified":"1301901658000","name":"Hans Joachim Schaufu\u00df","type":"Person","_key":"22579"} +{"label":"Hans L\u00f6hr","version":20,"id":"37856","lastModified":"1301901589000","name":"Hans L\u00f6hr","type":"Person","_key":"22580"} +{"label":"Ernst-Eberhard Reling","version":20,"id":"37857","lastModified":"1301901658000","name":"Ernst-Eberhard Reling","type":"Person","_key":"22581"} +{"label":"Waldemar Kupczyk","version":20,"id":"37858","lastModified":"1301901791000","name":"Waldemar Kupczyk","type":"Person","_key":"22582"} +{"label":"Hubert Schmitz","version":20,"id":"37859","lastModified":"1301901791000","name":"Hubert Schmitz","type":"Person","_key":"22583"} +{"label":"Emil and the Detectives","description":"No overview found.","id":"4541","runtime":70,"imdbId":"tt0026312","version":100,"lastModified":"1301906084000","studio":"Richard Wainwright Productions","genre":"Comedy","title":"Emil and the Detectives","releaseDate":-1104537600000,"language":"en","type":"Movie","_key":"22584"} +{"label":"Milton Rosmer","version":23,"id":"37861","lastModified":"1301901840000","name":"Milton Rosmer","type":"Person","_key":"22585"} +{"label":"George Hayes","version":20,"id":"37868","lastModified":"1301901837000","name":"George Hayes","type":"Person","_key":"22586"} +{"label":"Mary Glynne","version":24,"id":"37869","lastModified":"1301901839000","name":"Mary Glynne","type":"Person","_key":"22587"} +{"label":"Clare Greet","version":21,"id":"37870","lastModified":"1301901792000","name":"Clare Greet","type":"Person","_key":"22588"} +{"label":"Marion Foster","version":20,"id":"37871","lastModified":"1301901681000","name":"Marion Foster","type":"Person","_key":"22589"} +{"label":"Donald Pittman","version":20,"id":"37873","lastModified":"1301901659000","name":"Donald Pittman","type":"Person","_key":"22590"} +{"label":"John Singer","version":20,"id":"37874","lastModified":"1301902022000","name":"John Singer","type":"Person","_key":"22591"} +{"label":"Derek Blomfield","version":20,"id":"37875","lastModified":"1301901659000","name":"Derek Blomfield","type":"Person","_key":"22592"} +{"label":"Emil and the Detectives","description":"No overview found.","id":"4542","runtime":99,"imdbId":"tt0058056","version":91,"lastModified":"1301906084000","studio":"Walt Disney Pictures","genre":"Action","title":"Emil and the Detectives","releaseDate":-158976000000,"language":"en","type":"Movie","_key":"22593"} +{"label":"Peter Tewksbury","version":20,"id":"37876","lastModified":"1301901449000","name":"Peter Tewksbury","type":"Person","_key":"22594"} +{"label":"Walter Slezak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/084\/4bd8120e017a3c1c00000084\/walter-slezak-profile.jpg","biography":"Walter Slezak (3 May 1902 \u2013 21 April 1983) was a portly Austrian character actor who appeared in numerous Hollywood films. Slezak often portrayed villains or thugs, most notably the German U-boat engineer in Alfred Hitchcock's 1944 Lifeboat, but occasionally he got to play lighter roles, as in 1962's The Wonderful World of the Brothers Grimm. He also played a cheerfully corrupt and philosophical private detective in the 1947 film noir Born to Kill and appeared as Squire Trelawney in the 1972 ve","version":36,"birthday":"-2135379600000","id":"37884","birthplace":"Vienna, Austria","lastModified":"1301901506000","name":"Walter Slezak","type":"Person","_key":"22595"} +{"label":"Bryan Russell","version":21,"id":"37885","lastModified":"1301901658000","name":"Bryan Russell","type":"Person","_key":"22596"} +{"label":"Roger Mobley","version":20,"id":"37886","lastModified":"1301901658000","name":"Roger Mobley","type":"Person","_key":"22597"} +{"label":"Peter Ehrlich","version":20,"id":"37887","lastModified":"1301901684000","name":"Peter Ehrlich","type":"Person","_key":"22598"} +{"label":"Cindy Cassell","version":20,"id":"37888","lastModified":"1301901658000","name":"Cindy Cassell","type":"Person","_key":"22599"} +{"label":"Elsa Wagner","version":21,"id":"37889","lastModified":"1301901658000","name":"Elsa Wagner","type":"Person","_key":"22600"} +{"label":"Eva Ingeborg Scholz","version":22,"id":"26835","lastModified":"1301901791000","name":"Eva Ingeborg Scholz","type":"Person","_key":"22601"} +{"label":"David Petrychka","version":20,"id":"37890","lastModified":"1301901684000","name":"David Petrychka","type":"Person","_key":"22602"} +{"label":"Monty Python's The Meaning of Life","description":"Monty Python's The Meaning of Life is a 1983 musical comedy film by the Monty Python comedy team. Unlike the two previous films they had made, which had more or less each told single, coherent stories, The Meaning of Life returns to the sketch comedy format of the troupe's original television series, loosely structured as a series of comic skits about the various stages of life.","id":"4543","runtime":112,"imdbId":"tt0085959","trailer":"http:\/\/www.youtube.com\/watch?v=Vgji3K_tLB0","version":136,"lastModified":"1301908343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47e\/4bc91aac017a3c57fe00a47e\/monty-python-s-the-meaning-of-life-mid.jpg","studio":"Python (Monty) Pictures Limited","genre":"Comedy","title":"Monty Python's The Meaning of Life","releaseDate":417916800000,"language":"en","type":"Movie","_key":"22603"} +{"label":"Patricia Quinn","version":28,"id":"13475","lastModified":"1301901619000","name":"Patricia Quinn","type":"Person","_key":"22604"} +{"label":"Judy Loe","version":21,"id":"37892","lastModified":"1301901818000","name":"Judy Loe","type":"Person","_key":"22605"} +{"label":"Andrew MacLachlan","version":20,"id":"37893","lastModified":"1301901738000","name":"Andrew MacLachlan","type":"Person","_key":"22606"} +{"label":"Mark Holmes","version":20,"id":"37894","lastModified":"1301901619000","name":"Mark Holmes","type":"Person","_key":"22607"} +{"label":"Valerie Whittington","version":20,"id":"37895","lastModified":"1301901738000","name":"Valerie Whittington","type":"Person","_key":"22608"} +{"label":"Jennifer Franks","version":20,"id":"37896","lastModified":"1301901738000","name":"Jennifer Franks","type":"Person","_key":"22609"} +{"label":"Imogen Bickford-Smith","version":20,"id":"37897","lastModified":"1301901899000","name":"Imogen Bickford-Smith","type":"Person","_key":"22610"} +{"label":"Angela Mann","version":20,"id":"37898","lastModified":"1301901738000","name":"Angela Mann","type":"Person","_key":"22611"} +{"label":"Emil und die Detektive","description":"No overview found.","id":"4544","runtime":94,"imdbId":"tt0046954","version":81,"lastModified":"1301906177000","studio":"Berolina","genre":"Comedy","title":"Emil und die Detektive","releaseDate":-480211200000,"language":"en","type":"Movie","_key":"22612"} +{"label":"Peter Finkbeiner","version":20,"id":"37905","lastModified":"1301901818000","name":"Peter Finkbeiner","type":"Person","_key":"22613"} +{"label":"Heli Finkenzeller","version":20,"id":"37906","lastModified":"1301901658000","name":"Heli Finkenzeller","type":"Person","_key":"22614"} +{"label":"Ruth Nimbach","version":21,"id":"37907","lastModified":"1301901658000","name":"Ruth Nimbach","type":"Person","_key":"22615"} +{"label":"Claudia Sch\u00e4fer","version":20,"id":"37908","lastModified":"1301901966000","name":"Claudia Sch\u00e4fer","type":"Person","_key":"22616"} +{"label":"Margarete Haagen","version":26,"id":"37909","lastModified":"1301901658000","name":"Margarete Haagen","type":"Person","_key":"22617"} +{"label":"Camilla Spira","version":22,"id":"37910","lastModified":"1301901966000","name":"Camilla Spira","type":"Person","_key":"22618"} +{"label":"Hans Dieter Zeidler","version":20,"id":"37911","lastModified":"1301902027000","name":"Hans Dieter Zeidler","type":"Person","_key":"22619"} +{"label":"Walter Gross","version":23,"id":"37912","lastModified":"1301901791000","name":"Walter Gross","type":"Person","_key":"22620"} +{"label":"Ernst Waldow","version":29,"id":"37913","lastModified":"1301901791000","name":"Ernst Waldow","type":"Person","_key":"22621"} +{"label":"G-Man Jerry Cotton","description":"No overview found.","id":"4545","title":"G-Man Jerry Cotton","language":"en","lastModified":"1301906619000","version":135,"type":"Movie","_key":"22622"} +{"label":"The Count of Monte-Cristo","description":"No overview found.","id":"4546","runtime":119,"imdbId":"tt0072824","trailer":"http:\/\/www.youtube.com\/watch?v=GA93wreuyNM","version":159,"lastModified":"1301902981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77f\/4caa1ba67b9aa17ace00077f\/the-count-of-monte-cristo-mid.jpg","studio":"ITC Productions","genre":"History","title":"The Count of Monte-Cristo","releaseDate":158544000000,"language":"en","type":"Movie","_key":"22623"} +{"label":"David Greene","version":26,"id":"37915","lastModified":"1301901606000","name":"David Greene","type":"Person","_key":"22624"} +{"label":"Taryn Power","version":21,"id":"37916","lastModified":"1301901584000","name":"Taryn Power","type":"Person","_key":"22625"} +{"label":"Panic Room","description":"This claustrophobic thriller centers on a divorc\u00e9e and her daughter who are caught in a deadly game of cat-and-mouse with three burglars in their New York City brownstone, retreating to the vault-like safety of their aptly named panic room. As the intruders try to breach the room's security, the embattled duo must stay one step ahead.","id":"4547","runtime":112,"imdbId":"tt0258000","trailer":"http:\/\/www.youtube.com\/watch?v=gkII_JShveI","homepage":"http:\/\/www.sonypictures.com\/movies\/panicroom\/","version":724,"lastModified":"1302022454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/490\/4bc91ab0017a3c57fe00a490\/panic-room-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Crime","title":"Panic Room","releaseDate":1017360000000,"language":"en","tagline":"It was supposed to be the safest room in the house.","type":"Movie","_key":"22626"} +{"label":"Kristen Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4bcc00e3017a3c0f3200003c\/kristen-stewart-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bAmerican actress Kristen Jaymes Stewart is best known for playing Bella Swan in The Twilight Saga. She has also starred in films such as Panic Room (2002), Zathura (2005), In the Land of Women (2007), The Messengers (2007), Adventureland (2009) and The Runaways (2010). She has won various awards in three consecutive years. Stewart's first role was a nonspeaking part in the film The Thirteenth Year.<\/span><\/font><fo","version":156,"birthday":"639612000000","id":"37917","birthplace":"Los Angeles, California, USA","lastModified":"1302063844000","name":"Kristen Stewart","type":"Person","_key":"22627"} +{"label":"Ian Buchanan","version":24,"id":"15865","lastModified":"1301901805000","name":"Ian Buchanan","type":"Person","_key":"22628"} +{"label":"The Count of Monte Cristo","description":"No overview found.","id":"4548","runtime":400,"imdbId":"tt0167565","version":207,"lastModified":"1301902326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76a\/4caa218f7b9aa17acd00076a\/le-comte-de-monte-cristo-mid.jpg","studio":"TF1 Films Productions","genre":"History","title":"The Count of Monte Cristo","releaseDate":905126400000,"language":"en","type":"Movie","_key":"22629"} +{"label":"In\u00e9s Sastre","version":28,"id":"37918","lastModified":"1301901445000","name":"In\u00e9s Sastre","type":"Person","_key":"22630"} +{"label":"Stanislas Merhar","version":24,"id":"37919","lastModified":"1301901539000","name":"Stanislas Merhar","type":"Person","_key":"22631"} +{"label":"Julie Depardieu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f2d\/4d126cee5e73d60842000f2d\/julie-depardieu-profile.jpg","version":53,"id":"37920","lastModified":"1301901236000","name":"Julie Depardieu","type":"Person","_key":"22632"} +{"label":"Constanze Engelbrecht","version":22,"id":"37921","lastModified":"1301901619000","name":"Constanze Engelbrecht","type":"Person","_key":"22633"} +{"label":"Georges Moustaki","version":22,"id":"37922","lastModified":"1301901899000","name":"Georges Moustaki","type":"Person","_key":"22634"} +{"label":"Florence Darel","version":24,"id":"37923","lastModified":"1301901899000","name":"Florence Darel","type":"Person","_key":"22635"} +{"label":"Naike Rivelli","version":24,"id":"37924","lastModified":"1301901566000","name":"Naike Rivelli","type":"Person","_key":"22636"} +{"label":"Lady Vengeance","description":"After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?","id":"4550","runtime":110,"imdbId":"tt0451094","trailer":"http:\/\/www.youtube.com\/watch?v=256","homepage":"http:\/\/www.lady-vengeance.de\/","version":159,"lastModified":"1302032927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d0\/4be03695017a3c35b70003d0\/chinjeolhan-geumjassi-mid.jpg","studio":"Korea Capital Investment","genre":"Drama","title":"Lady Vengeance","releaseDate":1104537600000,"language":"en","tagline":"All she wanted was a peaceful life...they didn't give it.","type":"Movie","_key":"22637"} +{"label":"Tony Barry","version":27,"id":"76188","lastModified":"1302032927000","name":"Tony Barry","type":"Person","_key":"22638"} +{"label":"Anne Cordiner","version":15,"id":"187207","lastModified":"1302032927000","name":"Anne Cordiner","type":"Person","_key":"22639"} +{"label":"Be Cool","description":"Disenchanted with the movie industry, Chili Palmer (John Travolta) tries the music industry, meeting and romancing a widow of a music exec (Uma Thurman) on the way.","id":"4551","runtime":118,"imdbId":"tt0377471","version":146,"lastModified":"1301902676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36d\/4cd773e77b9aa11b2200036d\/be-cool-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Be Cool","releaseDate":1109894400000,"language":"en","tagline":"Everyone is looking for the next big hit","type":"Movie","_key":"22640"} +{"label":"F. Gary Gray","version":59,"id":"37932","lastModified":"1301975038000","name":"F. Gary Gray","type":"Person","_key":"22641"} +{"label":"Andr\u00e9 Benjamin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/279\/4c99c0297b9aa12758000279\/andre-benjamin-profile.jpg","version":51,"birthday":"170377200000","id":"37934","birthplace":"Atlanta, Georgia, USA","lastModified":"1301904128000","name":"Andr\u00e9 Benjamin","type":"Person","_key":"22642"} +{"label":"Christina Milian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a1\/4ce18bed5e73d60f6c0003a1\/christina-milian-profile.jpg","version":41,"id":"37936","lastModified":"1301901076000","name":"Christina Milian","type":"Person","_key":"22643"} +{"label":"Gregory Alan Williams","version":28,"id":"37937","lastModified":"1301901346000","name":"Gregory Alan Williams","type":"Person","_key":"22644"} +{"label":"A Tale of Two Sisters","description":"A Tale of Two Sisters (\uc7a5\ud654, \ud64d\ub828 Janghwa, Hongryeon literally 'Rose Flower, Red Lotus') is a 2003 South Korean psychological horror film. It was directed by Kim Ji-Woon and is both the highest-grossing Korean horror film and the first to be screened in American theatres.","id":"4552","runtime":110,"imdbId":"tt0365376","version":119,"lastModified":"1301903527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/504\/4bc91ac1017a3c57fe00a504\/janghwa-hongryeon-mid.jpg","studio":"Masulpiri Films","genre":"Horror","title":"A Tale of Two Sisters","releaseDate":1055462400000,"language":"en","type":"Movie","_key":"22645"} +{"label":"Kap-su Kim","version":20,"id":"37938","lastModified":"1301901672000","name":"Kap-su Kim","type":"Person","_key":"22646"} +{"label":"Jung-ah Yum","version":21,"id":"37939","lastModified":"1301901508000","name":"Jung-ah Yum","type":"Person","_key":"22647"} +{"label":"Su-jeong Lim","version":23,"id":"37940","lastModified":"1301901523000","name":"Su-jeong Lim","type":"Person","_key":"22648"} +{"label":"Geun-Young Moon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21d\/4d22dc1a7b9aa1289f00121d\/geun-young-moon-profile.jpg","version":27,"id":"37941","lastModified":"1301901334000","name":"Geun-Young Moon","type":"Person","_key":"22649"} +{"label":"Ji-woon Kim","version":34,"id":"69081","lastModified":"1301901286000","name":"Ji-woon Kim","type":"Person","_key":"22650"} +{"label":"The Machinist","description":"THE MACHINIST is the story of TREVOR REZNIK, a lathe-operator who is dying of insomnia. In a machine shop, occupational hazards are bad enough under normal circumstances; yet for Trevor the risks are compounded by fatigue. Trevor has lost the ability to sleep. This is no ordinary insomnia...","id":"4553","runtime":98,"imdbId":"tt0361862","trailer":"http:\/\/www.youtube.com\/watch?v=H0fuHY4U1UA","version":507,"lastModified":"1302057346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51d\/4bc91ac6017a3c57fe00a51d\/the-machinist-mid.jpg","studio":"Castelao Producciones S.A.","genre":"Drama","title":"The Machinist","releaseDate":1072915200000,"language":"en","tagline":"A little guilt goes a long way...","type":"Movie","_key":"22651"} +{"label":"Aitana S\u00e1nchez-Gij\u00f3n","version":37,"id":"37946","lastModified":"1301901253000","name":"Aitana S\u00e1nchez-Gij\u00f3n","type":"Person","_key":"22652"} +{"label":"Craig Stevenson","version":25,"id":"38950","lastModified":"1301901738000","name":"Craig Stevenson","type":"Person","_key":"22653"} +{"label":"Reg E. Cathey","version":34,"id":"38951","lastModified":"1301901493000","name":"Reg E. Cathey","type":"Person","_key":"22654"} +{"label":"Matthew Romero Moore","version":25,"id":"38952","lastModified":"1301901738000","name":"Matthew Romero Moore","type":"Person","_key":"22655"} +{"label":"James DePaul","version":25,"id":"38953","lastModified":"1301901899000","name":"James DePaul","type":"Person","_key":"22656"} +{"label":"Brad Anderson","version":49,"id":"37948","lastModified":"1301901182000","name":"Brad Anderson","type":"Person","_key":"22657"} +{"label":"Mordnacht in Manhattan","description":"No overview found.","id":"4554","runtime":89,"imdbId":"tt0059468","version":67,"lastModified":"1301905715000","studio":"Allianz","title":"Mordnacht in Manhattan","releaseDate":-129427200000,"language":"en","type":"Movie","_key":"22658"} +{"label":"Harald Philipp","version":23,"id":"18957","lastModified":"1301901658000","name":"Harald Philipp","type":"Person","_key":"22659"} +{"label":"George Nader","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4bf55b0c017a3c772a00001e\/george-nader-profile.jpg","version":31,"id":"18965","lastModified":"1301901289000","name":"George Nader","type":"Person","_key":"22660"} +{"label":"Heinz Weiss","version":30,"id":"18968","lastModified":"1301901358000","name":"Heinz Weiss","type":"Person","_key":"22661"} +{"label":"Monika Grimm","version":18,"id":"18967","lastModified":"1301901658000","name":"Monika Grimm","type":"Person","_key":"22662"} +{"label":"Slobodan Dimitrijevic","version":20,"id":"37962","lastModified":"1301901791000","name":"Slobodan Dimitrijevic","type":"Person","_key":"22663"} +{"label":"Siegurd Fitzek","version":21,"id":"36531","lastModified":"1301901658000","name":"Siegurd Fitzek","type":"Person","_key":"22664"} +{"label":"Allen Pinson","version":22,"id":"37964","lastModified":"1301901966000","name":"Allen Pinson","type":"Person","_key":"22665"} +{"label":"Elke Neidhart","version":20,"id":"37965","lastModified":"1301901966000","name":"Elke Neidhart","type":"Person","_key":"22666"} +{"label":"Henri Cogan","version":23,"id":"37966","lastModified":"1301901791000","name":"Henri Cogan","type":"Person","_key":"22667"} +{"label":"Willy Semmelrogge","version":26,"id":"26533","lastModified":"1301901966000","name":"Willy Semmelrogge","type":"Person","_key":"22668"} +{"label":"Walter Bluhm","version":22,"id":"37968","lastModified":"1301901966000","name":"Walter Bluhm","type":"Person","_key":"22669"} +{"label":"Dirk Dautzenberg","version":21,"id":"36576","lastModified":"1301901966000","name":"Dirk Dautzenberg","type":"Person","_key":"22670"} +{"label":"Uwe Reichmeister","version":20,"id":"37967","lastModified":"1301902003000","name":"Uwe Reichmeister","type":"Person","_key":"22671"} +{"label":"Silvia Solar","version":21,"id":"102077","lastModified":"1301902404000","name":"Silvia Solar","type":"Person","_key":"22672"} +{"label":"Sch\u00fcsse aus dem Geigenkasten","description":"No overview found.","id":"4555","runtime":89,"imdbId":"tt0059686","version":43,"lastModified":"1301908603000","studio":"Allianz","genre":"Crime","title":"Sch\u00fcsse aus dem Geigenkasten","releaseDate":-146966400000,"language":"en","type":"Movie","_key":"22673"} +{"label":"Fritz Umgelter","version":21,"id":"37969","lastModified":"1301902020000","name":"Fritz Umgelter","type":"Person","_key":"22674"} +{"label":"Sylvia Pascal","version":20,"id":"37972","lastModified":"1301902030000","name":"Sylvia Pascal","type":"Person","_key":"22675"} +{"label":"Helga Schlack","version":23,"id":"37973","lastModified":"1301901824000","name":"Helga Schlack","type":"Person","_key":"22676"} +{"label":"Helmut F\u00f6rnbacher","version":23,"id":"37974","lastModified":"1301901791000","name":"Helmut F\u00f6rnbacher","type":"Person","_key":"22677"} +{"label":"Philippe Gu\u00e9gan","version":18,"id":"37975","lastModified":"1301901838000","name":"Philippe Gu\u00e9gan","type":"Person","_key":"22678"} +{"label":"Hans E. Schons","version":20,"id":"37976","lastModified":"1301901818000","name":"Hans E. Schons","type":"Person","_key":"22679"} +{"label":"Hans Waldherr","version":22,"id":"37977","lastModified":"1301901658000","name":"Hans Waldherr","type":"Person","_key":"22680"} +{"label":"Heidi Leupolt","version":20,"id":"37978","lastModified":"1301901791000","name":"Heidi Leupolt","type":"Person","_key":"22681"} +{"label":"Nightwatching","description":"An extravagant, exotic and moving look at Rembrandt's romantic and professional life, and the controversy he created by the identification of a murderer in the painting THE NIGHT WATCH.","id":"4556","runtime":141,"imdbId":"tt0446750","version":532,"lastModified":"1301904551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/418\/4d5717a27b9aa16bca001418\/nightwatching-mid.jpg","studio":"Bac Films","genre":"Drama","title":"Nightwatching","releaseDate":1189036800000,"language":"en","type":"Movie","_key":"22682"} +{"label":"Emily Holmes","version":21,"id":"37979","lastModified":"1301902008000","name":"Emily Holmes","type":"Person","_key":"22683"} +{"label":"Christopher Britton","version":19,"id":"37981","lastModified":"1301901754000","name":"Christopher Britton","type":"Person","_key":"22684"} +{"label":"Agata Buzek","version":19,"id":"37982","lastModified":"1301901546000","name":"Agata Buzek","type":"Person","_key":"22685"} +{"label":"Natalie Press","version":22,"id":"37983","lastModified":"1301902032000","name":"Natalie Press","type":"Person","_key":"22686"} +{"label":"Hugh Thomas","version":19,"id":"37984","lastModified":"1301901754000","name":"Hugh Thomas","type":"Person","_key":"22687"} +{"label":"Adrian Lukis","version":24,"id":"37985","lastModified":"1301901341000","name":"Adrian Lukis","type":"Person","_key":"22688"} +{"label":"Jonathan Holmes","version":19,"id":"37986","lastModified":"1301901919000","name":"Jonathan Holmes","type":"Person","_key":"22689"} +{"label":"Harry Ferrier","version":19,"id":"37987","lastModified":"1301901754000","name":"Harry Ferrier","type":"Person","_key":"22690"} +{"label":"Um Null Uhr schnappt die Falle zu","description":"No overview found.","id":"4557","runtime":95,"imdbId":"tt0061137","version":72,"lastModified":"1301906084000","studio":"Allianz","genre":"Crime","title":"Um Null Uhr schnappt die Falle zu","releaseDate":-120873600000,"language":"en","type":"Movie","_key":"22691"} +{"label":"Dominique Wilms","version":16,"id":"18963","lastModified":"1301901899000","name":"Dominique Wilms","type":"Person","_key":"22692"} +{"label":"Ricky Cooper","version":19,"id":"38013","lastModified":"1301901899000","name":"Ricky Cooper","type":"Person","_key":"22693"} +{"label":"Ingrid Capelle","version":21,"id":"38014","lastModified":"1301901656000","name":"Ingrid Capelle","type":"Person","_key":"22694"} +{"label":"Harald Dietl","version":19,"id":"38015","lastModified":"1301901619000","name":"Harald Dietl","type":"Person","_key":"22695"} +{"label":"Orpheus","description":"Set in contemporary Paris, the movie is a variation of the classic Greek myth of Orpheus. This film is the central part of Cocteau's Orphic Trilogy, which consists of The Blood of a Poet (1930), Orpheus (1950) and Testament of Orpheus (1960).","id":"4558","runtime":112,"imdbId":"tt0041719","version":72,"lastModified":"1302031324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/550\/4d1aee525e73d665a6000550\/orph-e-mid.jpg","studio":"Andre Paulve Film","genre":"Fantasy","title":"Orpheus","releaseDate":-626054400000,"language":"en","type":"Movie","_key":"22696"} +{"label":"Marie D\u00e9a","version":24,"id":"37989","lastModified":"1301901839000","name":"Marie D\u00e9a","type":"Person","_key":"22697"} +{"label":"Henri Cr\u00e9mieux","version":25,"id":"37990","lastModified":"1301901659000","name":"Henri Cr\u00e9mieux","type":"Person","_key":"22698"} +{"label":"Edouard Dermithe","version":22,"id":"37991","lastModified":"1301901967000","name":"Edouard Dermithe","type":"Person","_key":"22699"} +{"label":"Pierre Bertin","version":31,"id":"37992","lastModified":"1301901353000","name":"Pierre Bertin","type":"Person","_key":"22700"} +{"label":"Hot Chocolate","description":"No overview found.","id":"4559","runtime":93,"imdbId":"tt0104444","version":105,"lastModified":"1301906634000","studio":"Le Studio Canal+","genre":"Comedy","title":"Hot Chocolate","releaseDate":694224000000,"language":"en","type":"Movie","_key":"22701"} +{"label":"Bo Derek","version":38,"id":"37995","lastModified":"1301901268000","name":"Bo Derek","type":"Person","_key":"22702"} +{"label":"Patricia Millardet","version":21,"id":"37996","lastModified":"1301901683000","name":"Patricia Millardet","type":"Person","_key":"22703"} +{"label":"David Martin","version":20,"id":"37997","lastModified":"1301901818000","name":"David Martin","type":"Person","_key":"22704"} +{"label":"Hella Petri","version":20,"id":"37998","lastModified":"1301901826000","name":"Hella Petri","type":"Person","_key":"22705"} +{"label":"Lepota poroka","description":"No overview found.","id":"4560","runtime":109,"imdbId":"tt0091398","version":40,"lastModified":"1301907424000","genre":"Drama","title":"Lepota poroka","releaseDate":504921600000,"language":"en","type":"Movie","_key":"22706"} +{"label":"Zivko Nikolic","version":20,"id":"37999","lastModified":"1301901818000","name":"Zivko Nikolic","type":"Person","_key":"22707"} +{"label":"Mira Furlan","version":26,"id":"36217","lastModified":"1301901568000","name":"Mira Furlan","type":"Person","_key":"22708"} +{"label":"Milutin Mima Karad\u017ei\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4d971f565e73d62c17002059\/milutin-karad-i-profile.jpg","version":28,"id":"38000","lastModified":"1301901575000","name":"Milutin Mima Karad\u017ei\u0107","type":"Person","_key":"22709"} +{"label":"Petar Bozovic","version":24,"id":"38001","lastModified":"1301901424000","name":"Petar Bozovic","type":"Person","_key":"22710"} +{"label":"Alain Noury","version":29,"id":"38002","lastModified":"1301901289000","name":"Alain Noury","type":"Person","_key":"22711"} +{"label":"Ines Kotman","version":20,"id":"38003","lastModified":"1301901658000","name":"Ines Kotman","type":"Person","_key":"22712"} +{"label":"Mira Banjac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b5\/4d6439d97b9aa129780004b5\/mira-banjac-profile.jpg","version":23,"id":"38004","lastModified":"1301901703000","name":"Mira Banjac","type":"Person","_key":"22713"} +{"label":"The Story of O","description":"The beautiful O is taken by her boyfriend, Rene, to a bizarre retreat, where she is trained in bondage and sexual perversion...","id":"4561","runtime":105,"imdbId":"tt0073115","version":776,"lastModified":"1302056691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4bc91ac8017a3c57fe00a53d\/histoire-d-o-mid.jpg","studio":"S.N. Prodis","genre":"Erotic","title":"The Story of O","releaseDate":178416000000,"language":"en","type":"Movie","_key":"22714"} +{"label":"Just Jaeckin","version":30,"id":"38007","lastModified":"1301901361000","name":"Just Jaeckin","type":"Person","_key":"22715"} +{"label":"Jean-Pierre Andr\u00e9ani","version":28,"id":"38008","lastModified":"1301901687000","name":"Jean-Pierre Andr\u00e9ani","type":"Person","_key":"22716"} +{"label":"Vladimir Brajovic","version":21,"id":"38009","lastModified":"1301902030000","name":"Vladimir Brajovic","type":"Person","_key":"22717"} +{"label":"Gabriel Briand","version":21,"id":"38010","lastModified":"1301901819000","name":"Gabriel Briand","type":"Person","_key":"22718"} +{"label":"Robert Schootemeyer","version":21,"id":"38011","lastModified":"1301902030000","name":"Robert Schootemeyer","type":"Person","_key":"22719"} +{"label":"Die Rechnung - eiskalt serviert","description":"No overview found.","id":"4562","runtime":89,"imdbId":"tt0060887","version":55,"lastModified":"1301906770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4bc91ac9017a3c57fe00a542\/die-rechnung-eiskalt-serviert-mid.jpg","studio":"Allianz","genre":"Crime","title":"Die Rechnung - eiskalt serviert","releaseDate":-105840000000,"language":"en","type":"Movie","_key":"22720"} +{"label":"Yvonne Monlaur","version":26,"id":"38045","lastModified":"1301901582000","name":"Yvonne Monlaur","type":"Person","_key":"22721"} +{"label":"Ullrich Haupt","version":22,"id":"38046","lastModified":"1301901986000","name":"Ullrich Haupt","type":"Person","_key":"22722"} +{"label":"Birke Bruck","version":20,"id":"38047","lastModified":"1301901818000","name":"Birke Bruck","type":"Person","_key":"22723"} +{"label":"The Vengeance Trilogy","description":"The Vengeance Trilogy (Korean: \ubcf5\uc218 \uc0bc\ubd80\uc791) are three films, Sympathy for Mr. Vengeance (2002), Oldboy (2003), Sympathy for Lady Vengeance (2005), directed by South Korean film director Park Chan-wook, which dealt with the themes of \"revenge, violence and salvation\".","id":"4563","runtime":361,"version":579,"lastModified":"1302056538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/337\/4d7ea2fc5e73d644d3000337\/the-vengeance-trilogy-mid.jpg","title":"The Vengeance Trilogy","language":"en","type":"Movie","_key":"22724"} +{"label":"Sex and the City: The Movie","description":"A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.","id":"4564","runtime":135,"imdbId":"tt1000774","trailer":"http:\/\/www.youtube.com\/watch?v=n4jVEyGuTfY","homepage":"http:\/\/www.sexandthecitymovie.com\/","version":1132,"lastModified":"1302034624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e69\/4c1064d4017a3c7e92000e69\/sex-and-the-city-the-movie-mid.jpg","studio":"HBO Films","genre":"Comedy","title":"Sex and the City: The Movie","releaseDate":1210550400000,"language":"en","tagline":"Get carried away.","type":"Movie","_key":"22725"} +{"label":"Michael Patrick King","version":54,"id":"38023","lastModified":"1301901241000","name":"Michael Patrick King","type":"Person","_key":"22726"} +{"label":"Bettiann Fishman","version":25,"id":"58358","lastModified":"1301901695000","name":"Bettiann Fishman","type":"Person","_key":"22727"} +{"label":"Andrew Fiero","version":25,"id":"58359","lastModified":"1301901457000","name":"Andrew Fiero","type":"Person","_key":"22728"} +{"label":"Cynthia Nixon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14a\/4beec992017a3c458a00014a\/cynthia-nixon-profile.jpg","version":54,"id":"38024","lastModified":"1301901083000","name":"Cynthia Nixon","type":"Person","_key":"22729"} +{"label":"Kristin Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1dc\/4beece55017a3c45890001dc\/kristin-davis-profile.jpg","version":44,"id":"38025","lastModified":"1301901083000","name":"Kristin Davis","type":"Person","_key":"22730"} +{"label":"Chris Noth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/732\/4ca3017e7b9aa1578a000732\/chris-noth-profile.jpg","version":47,"id":"38026","lastModified":"1301901103000","name":"Chris Noth","type":"Person","_key":"22731"} +{"label":"Mario Cantone","version":38,"id":"57551","lastModified":"1301901119000","name":"Mario Cantone","type":"Person","_key":"22732"} +{"label":"Julie Halston","version":25,"id":"57552","lastModified":"1301901149000","name":"Julie Halston","type":"Person","_key":"22733"} +{"label":"Kimberly 'Lil' Kim' Jones","version":26,"id":"57553","lastModified":"1301901561000","name":"Kimberly 'Lil' Kim' Jones","type":"Person","_key":"22734"} +{"label":"Alexandra Fong","version":32,"id":"58355","lastModified":"1301901088000","name":"Alexandra Fong","type":"Person","_key":"22735"} +{"label":"Kerry Bish\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/808\/4cf549425e73d6299d000808\/kerry-bishe-profile.jpg","version":33,"id":"58356","lastModified":"1301901277000","name":"Kerry Bish\u00e9","type":"Person","_key":"22736"} +{"label":"Joseph Pupo","version":24,"id":"58722","lastModified":"1301901117000","name":"Joseph Pupo","type":"Person","_key":"22737"} +{"label":"Gilles Marini","version":25,"id":"58723","lastModified":"1301901124000","name":"Gilles Marini","type":"Person","_key":"22738"} +{"label":"Der M\u00f6rderclub von Brooklyn","description":"No overview found.","id":"4565","runtime":96,"imdbId":"tt0062024","version":44,"lastModified":"1301907424000","studio":"Allianz","genre":"Crime","title":"Der M\u00f6rderclub von Brooklyn","releaseDate":-88214400000,"language":"en","type":"Movie","_key":"22739"} +{"label":"Werner Jacobs","version":29,"id":"38048","lastModified":"1301901353000","name":"Werner Jacobs","type":"Person","_key":"22740"} +{"label":"Karel Stepanek","version":31,"id":"38050","lastModified":"1301901568000","name":"Karel Stepanek","type":"Person","_key":"22741"} +{"label":"Helga Anders","version":22,"id":"38051","lastModified":"1301901966000","name":"Helga Anders","type":"Person","_key":"22742"} +{"label":"Helmut Kircher","version":20,"id":"38052","lastModified":"1301902003000","name":"Helmut Kircher","type":"Person","_key":"22743"} +{"label":"Heinz Reincke","version":32,"id":"38053","lastModified":"1301901352000","name":"Heinz Reincke","type":"Person","_key":"22744"} +{"label":"Michael Clayton","description":"A law firm brings in its \"fixer\" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.","id":"4566","runtime":119,"imdbId":"tt0465538","homepage":"http:\/\/michaelclayton.warnerbros.com\/","version":326,"lastModified":"1301907366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8b\/4d662ac05e73d66a70000f8b\/michael-clayton-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"Michael Clayton","releaseDate":1188518400000,"language":"en","tagline":"The truth can be adjusted","type":"Movie","_key":"22745"} +{"label":"Tony Gilroy","version":113,"id":"19242","lastModified":"1301901409000","name":"Tony Gilroy","type":"Person","_key":"22746"} +{"label":"Michael O'Keefe","version":45,"id":"38085","birthplace":"Mount Vernon, New York, USA","lastModified":"1301901190000","name":"Michael O'Keefe","type":"Person","_key":"22747"} +{"label":"Robert Prescott","version":25,"id":"38086","lastModified":"1301901582000","name":"Robert Prescott","type":"Person","_key":"22748"} +{"label":"Die Weibchen","description":"No overview found.","id":"4567","runtime":80,"imdbId":"tt0066554","version":48,"lastModified":"1301907424000","studio":"Roxy Film","genre":"Crime","title":"Die Weibchen","releaseDate":30758400000,"language":"en","type":"Movie","_key":"22749"} +{"label":"Zbynek Brynych","version":22,"id":"38097","lastModified":"1301901582000","name":"Zbynek Brynych","type":"Person","_key":"22750"} +{"label":"George Ardisson","version":23,"id":"38098","lastModified":"1301901819000","name":"George Ardisson","type":"Person","_key":"22751"} +{"label":"Anne-Marie Kuster","version":21,"id":"38099","lastModified":"1301901819000","name":"Anne-Marie Kuster","type":"Person","_key":"22752"} +{"label":"Gisela Fischer","version":22,"id":"38100","lastModified":"1301901688000","name":"Gisela Fischer","type":"Person","_key":"22753"} +{"label":"Klaus Dahlen","version":22,"id":"38101","lastModified":"1301901660000","name":"Klaus Dahlen","type":"Person","_key":"22754"} +{"label":"Fred Coplan","version":21,"id":"38102","lastModified":"1301901658000","name":"Fred Coplan","type":"Person","_key":"22755"} +{"label":"Kurt Zips","version":20,"id":"38103","lastModified":"1301901658000","name":"Kurt Zips","type":"Person","_key":"22756"} +{"label":"Tanja Gruber","version":20,"id":"38104","lastModified":"1301901966000","name":"Tanja Gruber","type":"Person","_key":"22757"} +{"label":"Ruth Eder","version":20,"id":"38105","lastModified":"1301901568000","name":"Ruth Eder","type":"Person","_key":"22758"} +{"label":"Brigitte Graf","version":20,"id":"38106","lastModified":"1301901791000","name":"Brigitte Graf","type":"Person","_key":"22759"} +{"label":"Hans Korte","version":21,"id":"38107","lastModified":"1301901966000","name":"Hans Korte","type":"Person","_key":"22760"} +{"label":"Sex Power","description":"No overview found.","id":"4568","runtime":81,"imdbId":"tt0066358","version":59,"lastModified":"1301908603000","studio":"Midem Productions","genre":"Drama","title":"Sex Power","releaseDate":17020800000,"language":"en","type":"Movie","_key":"22761"} +{"label":"Henry Chapier","version":20,"id":"38108","lastModified":"1301901832000","name":"Henry Chapier","type":"Person","_key":"22762"} +{"label":"Juliette Villard","version":22,"id":"38110","lastModified":"1301901841000","name":"Juliette Villard","type":"Person","_key":"22763"} +{"label":"Der Tod im roten Jaguar","description":"No overview found.","id":"4569","runtime":91,"imdbId":"tt0063704","version":49,"lastModified":"1301906177000","studio":"Constantin Film","genre":"Crime","title":"Der Tod im roten Jaguar","releaseDate":-43545600000,"language":"en","type":"Movie","_key":"22764"} +{"label":"Daniela Surina","version":18,"id":"38122","lastModified":"1301901988000","name":"Daniela Surina","type":"Person","_key":"22765"} +{"label":"Friedrich Sch\u00fctter","version":23,"id":"26332","lastModified":"1301901966000","name":"Friedrich Sch\u00fctter","type":"Person","_key":"22766"} +{"label":"Carl Lange","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5a5\/4cb242145e73d65b850005a5\/carl-lange-profile.jpg","version":30,"id":"38124","lastModified":"1301901603000","name":"Carl Lange","type":"Person","_key":"22767"} +{"label":"Giuliano Raffaelli","version":20,"id":"38125","lastModified":"1301901992000","name":"Giuliano Raffaelli","type":"Person","_key":"22768"} +{"label":"Herbert Stass","version":20,"id":"38126","lastModified":"1301902024000","name":"Herbert Stass","type":"Person","_key":"22769"} +{"label":"Grit Boettcher","version":24,"id":"36376","lastModified":"1301901672000","name":"Grit Boettcher","type":"Person","_key":"22770"} +{"label":"Gert Haucke","version":22,"id":"26911","lastModified":"1301902159000","name":"Gert Haucke","type":"Person","_key":"22771"} +{"label":"Kurt Jaggberg","version":20,"id":"26424","lastModified":"1301902178000","name":"Kurt Jaggberg","type":"Person","_key":"22772"} +{"label":"Robert Fuller","version":23,"id":"38129","lastModified":"1301901448000","name":"Robert Fuller","type":"Person","_key":"22773"} +{"label":"Pourvu qu'on ait l'ivresse","description":"No overview found.","id":"4570","runtime":90,"imdbId":"tt0072022","version":60,"lastModified":"1301906752000","studio":"Erka Cinematografica","genre":"Erotic","title":"Pourvu qu'on ait l'ivresse","releaseDate":149817600000,"language":"en","type":"Movie","_key":"22774"} +{"label":"Rinaldo Bassi","version":19,"id":"38111","lastModified":"1301901498000","name":"Rinaldo Bassi","type":"Person","_key":"22775"} +{"label":"Denyse Roland","version":23,"id":"38114","lastModified":"1301901498000","name":"Denyse Roland","type":"Person","_key":"22776"} +{"label":"Jean Valmont","version":21,"id":"38115","lastModified":"1301901468000","name":"Jean Valmont","type":"Person","_key":"22777"} +{"label":"Olivier Hussenot","version":22,"id":"38116","lastModified":"1301901791000","name":"Olivier Hussenot","type":"Person","_key":"22778"} +{"label":"Sezona mira u Parizu","description":"No overview found.","id":"4571","runtime":102,"imdbId":"tt0083059","version":40,"lastModified":"1301906192000","studio":"Albran Film","genre":"Drama","title":"Sezona mira u Parizu","releaseDate":362793600000,"language":"en","type":"Movie","_key":"22779"} +{"label":"Predrag Golubovic","version":20,"id":"38119","lastModified":"1301901987000","name":"Predrag Golubovic","type":"Person","_key":"22780"} +{"label":"Dragan Nikoli\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/314\/4d642c1b7b9aa12975000314\/dragan-nikoli-profile.jpg","version":35,"id":"38123","lastModified":"1302003042000","name":"Dragan Nikoli\u0107","type":"Person","_key":"22781"} +{"label":"Jane Chaplin","version":20,"id":"38128","lastModified":"1301902003000","name":"Jane Chaplin","type":"Person","_key":"22782"} +{"label":"Dynamit in gr\u00fcner Seide","description":"No overview found.","id":"4572","runtime":91,"imdbId":"tt0062919","version":47,"lastModified":"1301905340000","studio":"Allianz","genre":"Crime","title":"Dynamit in gr\u00fcner Seide","releaseDate":-58579200000,"language":"en","type":"Movie","_key":"22783"} +{"label":"Claus Holm","version":21,"id":"38140","lastModified":"1301901967000","name":"Claus Holm","type":"Person","_key":"22784"} +{"label":"Marlies Dr\u00e4ger","version":20,"id":"38141","lastModified":"1301902012000","name":"Marlies Dr\u00e4ger","type":"Person","_key":"22785"} +{"label":"G\u00fcnther Schramm","version":20,"id":"38142","lastModified":"1301901659000","name":"G\u00fcnther Schramm","type":"Person","_key":"22786"} +{"label":"Dieter Eppler","version":26,"id":"26245","lastModified":"1301901658000","name":"Dieter Eppler","type":"Person","_key":"22787"} +{"label":"Vrhovi Zelengore","description":"No overview found.","id":"4573","runtime":106,"imdbId":"tt0075407","version":38,"lastModified":"1301903602000","studio":"Centar Film","genre":"Drama","title":"Vrhovi Zelengore","releaseDate":189302400000,"language":"en","type":"Movie","_key":"22788"} +{"label":"Velimir Bata \u017divojinovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/211\/4d6401cd5e73d60c5c005211\/velimir-bata-zivojinovic-profile.jpg","version":42,"birthday":"-1154221200000","id":"38130","lastModified":"1301901362000","name":"Velimir Bata \u017divojinovi\u0107","type":"Person","_key":"22789"} +{"label":"Sergei Bondarchuk","version":22,"id":"38131","lastModified":"1301901341000","name":"Sergei Bondarchuk","type":"Person","_key":"22790"} +{"label":"Veljko Mandic","version":20,"id":"38132","lastModified":"1301901997000","name":"Veljko Mandic","type":"Person","_key":"22791"} +{"label":"Zdravko Velimirovic","version":20,"id":"38135","lastModified":"1301901673000","name":"Zdravko Velimirovic","type":"Person","_key":"22792"} +{"label":"Todessch\u00fcsse am Brodway","description":"No overview found.","id":"4574","runtime":89,"imdbId":"tt0063705","version":46,"lastModified":"1301907438000","studio":"Allianz","genre":"Crime","title":"Todessch\u00fcsse am Brodway","releaseDate":-24278400000,"language":"en","type":"Movie","_key":"22793"} +{"label":"Heidy Bohlen","version":23,"id":"26518","lastModified":"1301901663000","name":"Heidy Bohlen","type":"Person","_key":"22794"} +{"label":"Miha Baloh","version":19,"id":"38143","lastModified":"1301901988000","name":"Miha Baloh","type":"Person","_key":"22795"} +{"label":"Michaela May","version":23,"id":"38144","lastModified":"1301901327000","name":"Michaela May","type":"Person","_key":"22796"} +{"label":"Horst Naumann","version":22,"id":"26248","lastModified":"1301902186000","name":"Horst Naumann","type":"Person","_key":"22797"} +{"label":"Konrad Georg","version":23,"id":"38145","lastModified":"1301901501000","name":"Konrad Georg","type":"Person","_key":"22798"} +{"label":"Flesh","description":"A heroin junkie (Joe Dallesandro) works as a prostitute to support his habit and fund an abortion needed by the girlfriend of his lesbian wife. His seedy encounters with delusional and damaged clients, and dates with drag queens and hustlers are heavy on sex, drugs and decadence.","id":"4578","runtime":105,"imdbId":"tt0062979","version":142,"lastModified":"1302053521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/630\/4c62a1277b9aa172da000630\/flesh-mid.jpg","studio":"Factory Films","genre":"Comedy","title":"Flesh","releaseDate":-32918400000,"language":"en","type":"Movie","_key":"22799"} +{"label":"Geraldine Smith","version":20,"id":"38159","lastModified":"1301901509000","name":"Geraldine Smith","type":"Person","_key":"22800"} +{"label":"Patti D'Arbanville","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/765\/4ce5909a7b9aa168b0000765\/patti-d-arbanville-profile.jpg","version":46,"id":"38160","lastModified":"1301901151000","name":"Patti D'Arbanville","type":"Person","_key":"22801"} +{"label":"Louis Waldon","version":21,"id":"38161","lastModified":"1301902019000","name":"Louis Waldon","type":"Person","_key":"22802"} +{"label":"Barry Brown","version":23,"id":"38162","lastModified":"1301901457000","name":"Barry Brown","type":"Person","_key":"22803"} +{"label":"Heat","description":"No overview found.","id":"4579","runtime":102,"imdbId":"tt0068688","version":123,"lastModified":"1301903714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/597\/4bc91ad9017a3c57fe00a597\/heat-mid.jpg","studio":"Andy Warhol Enterprises","genre":"Comedy","title":"Heat","releaseDate":87091200000,"language":"en","type":"Movie","_key":"22804"} +{"label":"Eric Emerson","version":22,"id":"38163","lastModified":"1301901327000","name":"Eric Emerson","type":"Person","_key":"22805"} +{"label":"Ray Vestal","version":20,"id":"38164","lastModified":"1301901677000","name":"Ray Vestal","type":"Person","_key":"22806"} +{"label":"Andrea Feldman","version":20,"id":"38165","lastModified":"1301901582000","name":"Andrea Feldman","type":"Person","_key":"22807"} +{"label":"Lester Persky","version":22,"id":"38166","lastModified":"1301901511000","name":"Lester Persky","type":"Person","_key":"22808"} +{"label":"Harold Childe","version":20,"id":"38167","lastModified":"1301901677000","name":"Harold Childe","type":"Person","_key":"22809"} +{"label":"Je t'aime moi non plus","description":"No overview found.","id":"4580","runtime":90,"imdbId":"tt0073196","version":93,"lastModified":"1302018726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a0\/4bc91ad9017a3c57fe00a5a0\/je-t-aime-moi-non-plus-mid.jpg","studio":"Renn Productions","genre":"Drama","title":"Je t'aime moi non plus","releaseDate":195264000000,"language":"en","type":"Movie","_key":"22810"} +{"label":"Serge Gainsbourg","version":44,"id":"34263","lastModified":"1301901662000","name":"Serge Gainsbourg","type":"Person","_key":"22811"} +{"label":"Hugues Quester","version":23,"id":"38170","lastModified":"1301901812000","name":"Hugues Quester","type":"Person","_key":"22812"} +{"label":"Raoul Delfosse","version":21,"id":"38172","lastModified":"1301901781000","name":"Raoul Delfosse","type":"Person","_key":"22813"} +{"label":"Sense and Sensibility","description":"Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.","id":"4584","runtime":135,"imdbId":"tt0114388","trailer":"http:\/\/www.youtube.com\/watch?v=Ns17RQr1yK8","version":484,"lastModified":"1301932579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b1\/4bc91ada017a3c57fe00a5b1\/sense-and-sensibility-mid.jpg","studio":"Mirage Entertainment","genre":"Drama","title":"Sense and Sensibility","releaseDate":818812800000,"language":"en","type":"Movie","_key":"22814"} +{"label":"Mermaids","description":"An unconventional single mother relocates with her two daughters to a small Massachusetts town in 1963, where a number of events and relationships both challenge and strengthen their familial bonds.","id":"4587","runtime":110,"imdbId":"tt0100140","version":213,"lastModified":"1301904630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bf\/4bc91ade017a3c57fe00a5bf\/mermaids-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Mermaids","releaseDate":661132800000,"language":"en","type":"Movie","_key":"22815"} +{"label":"Caroline McWilliams","version":21,"id":"38226","lastModified":"1301901619000","name":"Caroline McWilliams","type":"Person","_key":"22816"} +{"label":"Rex Trailer","version":20,"id":"39039","lastModified":"1301901619000","name":"Rex Trailer","type":"Person","_key":"22817"} +{"label":"Betsy Townsend","version":20,"id":"39040","lastModified":"1301901619000","name":"Betsy Townsend","type":"Person","_key":"22818"} +{"label":"Lust, Caution","description":"An espionage thriller set in WWII-era Shanghai, in which a young woman, Wang Jiazhi, gets swept up in a dangerous game of emotional intrigue with a powerful political figure, Mr. Yee.","id":"4588","runtime":156,"imdbId":"tt0808357","trailer":"http:\/\/www.youtube.com\/watch?v=Pu7_GQqimBM","homepage":"http:\/\/www.bvi.com.tw\/movies\/lust_caution\/main.html","version":507,"lastModified":"1302018534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d8\/4bc91ae0017a3c57fe00a5d8\/lust-caution-mid.jpg","studio":"Focus Features","genre":"Action","title":"Lust, Caution","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"22819"} +{"label":"Wei Tang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/113\/4c82657c7b9aa13b69000113\/wei-tang-profile.jpg","version":24,"id":"38280","lastModified":"1301901429000","name":"Wei Tang","type":"Person","_key":"22820"} +{"label":"Lee-Hom Wang","version":25,"id":"38281","lastModified":"1301901523000","name":"Lee-Hom Wang","type":"Person","_key":"22821"} +{"label":"Chih-ying Chu","version":25,"id":"38285","lastModified":"1301901413000","name":"Chih-ying Chu","type":"Person","_key":"22822"} +{"label":"Ying-hsien Kao","version":24,"id":"38286","lastModified":"1301901344000","name":"Ying-hsien Kao","type":"Person","_key":"22823"} +{"label":"Ko Yu-Luen","version":27,"id":"38287","lastModified":"1301901361000","name":"Ko Yu-Luen","type":"Person","_key":"22824"} +{"label":"Carolina","description":"No overview found.","id":"4592","runtime":97,"imdbId":"tt0289889","version":432,"lastModified":"1301937765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e1\/4bc91ae0017a3c57fe00a5e1\/carolina-mid.jpg","studio":"Bregman-IAC Productions","genre":"Comedy","title":"Carolina","releaseDate":1054771200000,"language":"en","type":"Movie","_key":"22825"} +{"label":"Edward Atterton","version":30,"id":"38331","lastModified":"1301901596000","name":"Edward Atterton","type":"Person","_key":"22826"} +{"label":"Dwight Armstrong","version":19,"id":"38332","lastModified":"1301901619000","name":"Dwight Armstrong","type":"Person","_key":"22827"} +{"label":"Ana Ortiz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e8\/4cf202035e73d61e3d0005e8\/ana-ortiz-profile.jpg","version":28,"id":"38333","lastModified":"1301901398000","name":"Ana Ortiz","type":"Person","_key":"22828"} +{"label":"The Discreet Charm of the Bourgeoisie","description":"A surreal, virtually plotless series of dreams centered around six middle-class people and their consistently interrupted attempts to have a meal together.","id":"4593","runtime":101,"imdbId":"tt0068361","version":108,"lastModified":"1301903257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a9\/4cd7c95d5e73d676cf0005a9\/le-charme-discret-de-la-bourgeoisie-mid.jpg","studio":"Greenwich Film Productions","genre":"Comedy","title":"The Discreet Charm of the Bourgeoisie","releaseDate":85363200000,"language":"en","type":"Movie","_key":"22829"} +{"label":"Bulle Ogier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43d\/4ca8c0e55e73d643eb00043d\/bulle-ogier-profile.jpg","version":44,"id":"38341","lastModified":"1301901427000","name":"Bulle Ogier","type":"Person","_key":"22830"} +{"label":"Maxence Mailfort","version":28,"id":"38648","lastModified":"1301901419000","name":"Maxence Mailfort","type":"Person","_key":"22831"} +{"label":"Maria Gabriella Maione","version":23,"id":"44105","lastModified":"1301902186000","name":"Maria Gabriella Maione","type":"Person","_key":"22832"} +{"label":"Georges Douking","version":22,"id":"44106","lastModified":"1301902109000","name":"Georges Douking","type":"Person","_key":"22833"} +{"label":"Christian Baltauss","version":21,"id":"44107","lastModified":"1301902109000","name":"Christian Baltauss","type":"Person","_key":"22834"} +{"label":"Robert Beno\u00eet","version":23,"id":"44108","lastModified":"1301902109000","name":"Robert Beno\u00eet","type":"Person","_key":"22835"} +{"label":"Anne-Marie Deschott","version":27,"id":"44109","lastModified":"1301902156000","name":"Anne-Marie Deschott","type":"Person","_key":"22836"} +{"label":"Jacques Rispal","version":23,"id":"39443","lastModified":"1301901899000","name":"Jacques Rispal","type":"Person","_key":"22837"} +{"label":"Jour de f\u00eate","description":"Jour de f\u00eate tells the story of an inept and easily-distracted French mailman who frequently interrupts his duties to converse with the local inhabitants, as well as inspect the traveling fair that has come to his small community. Influenced by too much wine and a newsreel account of rapid transportation methods used by the United States postal system, he goes to hilarious lengths to speed the delivery of mail while aboard his bicycle.","id":"4595","runtime":76,"imdbId":"tt0040497","version":340,"lastModified":"1302054483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4be43061017a3c35bb0009a1\/jour-de-fete-mid.jpg","studio":"Cady Films","genre":"Comedy","title":"Jour de f\u00eate","releaseDate":-652060800000,"language":"en","type":"Movie","_key":"22838"} +{"label":"Santa Relli","version":20,"id":"38372","lastModified":"1301901947000","name":"Santa Relli","type":"Person","_key":"22839"} +{"label":"Maine Vall\u00e9e","version":20,"id":"38373","lastModified":"1301901778000","name":"Maine Vall\u00e9e","type":"Person","_key":"22840"} +{"label":"Roger Rafal","version":20,"id":"38375","lastModified":"1301901778000","name":"Roger Rafal","type":"Person","_key":"22841"} +{"label":"Jacques Beauvais","version":20,"id":"38376","lastModified":"1301901778000","name":"Jacques Beauvais","type":"Person","_key":"22842"} +{"label":"Armored","description":"A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.","id":"4597","runtime":88,"imdbId":"tt0913354","trailer":"http:\/\/www.youtube.com\/watch?v=_I_1qzLiWpw","version":457,"lastModified":"1302032413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/614\/4bc91ae8017a3c57fe00a614\/armored-mid.jpg","studio":"Buckaroo Entertainment","genre":"Action","title":"Armored","releaseDate":1259884800000,"language":"en","tagline":"Who will be the last man standing?","type":"Movie","_key":"22843"} +{"label":"Nimr\u00f3d Antal","version":43,"id":"41671","lastModified":"1301901123000","name":"Nimr\u00f3d Antal","type":"Person","_key":"22844"} +{"label":"Raising Helen","description":"The single and successful executive of the fashion world, Helen Harris, becomes the guardian of her two nieces and one nephew after the death of her sister and her brother-in-law. She moves from Manhattan to Queens, and faces difficulties trying to raise the children.","id":"4599","runtime":119,"imdbId":"tt0350028","version":305,"lastModified":"1301903891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61d\/4bc91ae9017a3c57fe00a61d\/raising-helen-mid.jpg","studio":"Beacon Pictures","genre":"Comedy","title":"Raising Helen","releaseDate":1083369600000,"language":"en","type":"Movie","_key":"22845"} +{"label":"John Corbett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4c83e45c5e73d664d600011e\/john-corbett-profile.jpg","version":51,"id":"38405","lastModified":"1301901222000","name":"John Corbett","type":"Person","_key":"22846"} +{"label":"Paris Hilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4c4e35fa7b9aa1326c000016\/paris-hilton-profile.jpg","biography":"Paris Whitney Hilton (born February 17, 1981) is an American socialite, heiress, media personality, model, singer, author, fashion designer and actress . She is a great-granddaughter of Conrad Hilton (founder of Hilton Hotels). Hilton is known for her controversial appearance in a sex tape in 2003, and appearance on the television series The Simple Life alongside fellow socialite and childhood best friend Nicole Richie. She is also known for her 2004 tongue-in-cheek autobiography,[2] several min","version":49,"birthday":"351212400000","id":"38406","birthplace":"New York City, New York","lastModified":"1301901191000","name":"Paris Hilton","type":"Person","_key":"22847"} +{"label":"Evan Sabara","version":20,"id":"38407","lastModified":"1301901738000","name":"Evan Sabara","type":"Person","_key":"22848"} +{"label":"Catherine Tayrien","version":20,"id":"38408","lastModified":"1301901619000","name":"Catherine Tayrien","type":"Person","_key":"22849"} +{"label":"Amber Valletta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07b\/4c4e7c467b9aa1326c00007b\/amber-valletta-profile.jpg","version":56,"birthday":"129596400000","id":"38425","birthplace":"Phoenix, Arizona, USA","lastModified":"1301901098000","name":"Amber Valletta","type":"Person","_key":"22850"} +{"label":"Sakina Jaffrey","version":21,"id":"34200","lastModified":"1301901677000","name":"Sakina Jaffrey","type":"Person","_key":"22851"} +{"label":"Die Sieger","description":"No overview found.","id":"4610","runtime":130,"imdbId":"tt0111183","version":75,"lastModified":"1301907659000","studio":"Bavaria Film International","genre":"Action","title":"Die Sieger","releaseDate":780192000000,"language":"en","type":"Movie","_key":"22852"} +{"label":"Michael Breitsprecher","version":20,"id":"38537","lastModified":"1301902003000","name":"Michael Breitsprecher","type":"Person","_key":"22853"} +{"label":"Werner Karle Jr.","version":19,"id":"38538","lastModified":"1301901899000","name":"Werner Karle Jr.","type":"Person","_key":"22854"} +{"label":"Thomas Sch\u00fccke","version":19,"id":"38539","lastModified":"1301901899000","name":"Thomas Sch\u00fccke","type":"Person","_key":"22855"} +{"label":"Valerie Vail","version":19,"id":"38540","lastModified":"1301901899000","name":"Valerie Vail","type":"Person","_key":"22856"} +{"label":"Natalia W\u00f6rner","version":21,"id":"38541","lastModified":"1301901958000","name":"Natalia W\u00f6rner","type":"Person","_key":"22857"} +{"label":"Sybille Waury","version":26,"id":"38542","lastModified":"1301901966000","name":"Sybille Waury","type":"Person","_key":"22858"} +{"label":"Claudia Brachmann","version":19,"id":"38543","lastModified":"1301901899000","name":"Claudia Brachmann","type":"Person","_key":"22859"} +{"label":"Paul Fa\u00dfnacht","version":22,"id":"28447","lastModified":"1301901789000","name":"Paul Fa\u00dfnacht","type":"Person","_key":"22860"} +{"label":"Helmut Everke","version":19,"id":"28400","lastModified":"1301902109000","name":"Helmut Everke","type":"Person","_key":"22861"} +{"label":"Geld","description":"No overview found.","id":"4611","runtime":90,"imdbId":"tt0097414","version":76,"lastModified":"1301907423000","studio":"Olga-Film GmbH (M\u00fcnchen)","genre":"Comedy","title":"Geld","releaseDate":606009600000,"language":"en","type":"Movie","_key":"22862"} +{"label":"Billie Z\u00f6ckler","version":21,"id":"38462","lastModified":"1301901815000","name":"Billie Z\u00f6ckler","type":"Person","_key":"22863"} +{"label":"Fabian Koerner","version":20,"id":"38547","lastModified":"1301901818000","name":"Fabian Koerner","type":"Person","_key":"22864"} +{"label":"Silvia Nentwig","version":20,"id":"38548","lastModified":"1301901658000","name":"Silvia Nentwig","type":"Person","_key":"22865"} +{"label":"Absolon","description":"In the near future, a virus has infected everyone on the planet, and Absolon is a drug that everyone must take to stay alive. One corporation controls the drug. Murchison is the leader of this firm. A scientist who was researching the virus is found murdered, and Norman Scott is the policeman who investigates the crime.","id":"4612","runtime":96,"imdbId":"tt0300902","version":192,"lastModified":"1301904332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/626\/4bc91aec017a3c57fe00a626\/absolon-mid.jpg","studio":"GFT Entertainment","genre":"Action","title":"Absolon","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"22866"} +{"label":"David DeBartolom\u00e9","version":19,"id":"38549","lastModified":"1301901555000","name":"David DeBartolom\u00e9","type":"Person","_key":"22867"} +{"label":"Christopher Lambert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4c4e4a097b9aa1326e000037\/christopher-lambert-profile.jpg","version":89,"birthday":"-402714000000","id":"38559","birthplace":"Great Neck, New York","lastModified":"1301901113000","name":"Christopher Lambert","type":"Person","_key":"22868"} +{"label":"Lou Diamond Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4c212aff7b9aa1369400005d\/lou-diamond-phillips-profile.jpg","version":90,"id":"38560","lastModified":"1301901081000","name":"Lou Diamond Phillips","type":"Person","_key":"22869"} +{"label":"Kelly Brook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/89d\/4cc47f155e73d6778500189d\/kelly-brook-profile.jpg","version":64,"birthday":"312159600000","id":"38561","birthplace":"Rochester, Kent, UK","lastModified":"1301901173000","name":"Kelly Brook","type":"Person","_key":"22870"} +{"label":"Roberta Angelica","version":21,"id":"38562","lastModified":"1301901639000","name":"Roberta Angelica","type":"Person","_key":"22871"} +{"label":"Neville Edwards","version":21,"id":"38563","lastModified":"1301901639000","name":"Neville Edwards","type":"Person","_key":"22872"} +{"label":"Tre Smith","version":21,"id":"38564","lastModified":"1301901639000","name":"Tre Smith","type":"Person","_key":"22873"} +{"label":"James Kidnie","version":26,"id":"38565","lastModified":"1301901707000","name":"James Kidnie","type":"Person","_key":"22874"} +{"label":"Donald Burda","version":23,"id":"38567","lastModified":"1301901560000","name":"Donald Burda","type":"Person","_key":"22875"} +{"label":"Scorched","description":"Three bank tellers. One goal: knock the place over. The ultimate inside jobs, plotted by three people with nothing to lose.","id":"4613","runtime":90,"imdbId":"tt0286947","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/scorched","version":115,"lastModified":"1301903365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/633\/4bc91aed017a3c57fe00a633\/scorched-mid.jpg","studio":"EC3 Productions","genre":"Action","title":"Scorched","releaseDate":1021593600000,"language":"en","type":"Movie","_key":"22876"} +{"label":"Gavin Grazer","version":21,"id":"38572","lastModified":"1301901899000","name":"Gavin Grazer","type":"Person","_key":"22877"} +{"label":"Rachael Leigh Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/352\/4bfa7040017a3c702a000352\/rachael-leigh-cook-profile.jpg","version":76,"id":"38581","lastModified":"1301901108000","name":"Rachael Leigh Cook","type":"Person","_key":"22878"} +{"label":"David Krumholtz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/619\/4d5942817b9aa16bca003619\/david-krumholtz-profile.jpg","version":71,"id":"38582","lastModified":"1301976644000","name":"David Krumholtz","type":"Person","_key":"22879"} +{"label":"Ivan Sergei","version":32,"id":"38583","lastModified":"1301901583000","name":"Ivan Sergei","type":"Person","_key":"22880"} +{"label":"The Sum of All Fears","description":"CIA analyst Jack Ryan must thwart the plans of a terrorist faction that threatens to induce a catastrophic conflict between the United States and Russia's newly elected president by detonating a nuclear weapon at a football game in Baltimore.","id":"4614","runtime":124,"imdbId":"tt0164184","version":440,"lastModified":"1302018425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/645\/4bc91aef017a3c57fe00a645\/the-sum-of-all-fears-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Sum of All Fears","releaseDate":1013126400000,"language":"en","tagline":"27,000 nuclear weapons. One is missing.","type":"Movie","_key":"22881"} +{"label":"Ken Jenkins","version":31,"id":"38570","lastModified":"1301901553000","name":"Ken Jenkins","type":"Person","_key":"22882"} +{"label":"John Beasley","version":25,"id":"38571","lastModified":"1301901539000","name":"John Beasley","type":"Person","_key":"22883"} +{"label":"La liceale al mare con l'amica di pap\u00e0","description":"No overview found.","id":"4615","runtime":86,"imdbId":"tt0081047","version":40,"lastModified":"1301906752000","studio":"Dania Film","genre":"Comedy","title":"La liceale al mare con l'amica di pap\u00e0","releaseDate":337392000000,"language":"en","type":"Movie","_key":"22884"} +{"label":"Marino Girolami","version":22,"id":"38585","lastModified":"1301901458000","name":"Marino Girolami","type":"Person","_key":"22885"} +{"label":"Sabrina Siani","version":25,"id":"38591","lastModified":"1301901498000","name":"Sabrina Siani","type":"Person","_key":"22886"} +{"label":"Cinzia de Ponti","version":24,"id":"38592","lastModified":"1301901658000","name":"Cinzia de Ponti","type":"Person","_key":"22887"} +{"label":"Alvaro Vitali","version":25,"id":"38593","lastModified":"1301901466000","name":"Alvaro Vitali","type":"Person","_key":"22888"} +{"label":"Gianni Ciardo","version":21,"id":"38594","lastModified":"1301901677000","name":"Gianni Ciardo","type":"Person","_key":"22889"} +{"label":"La dottoressa preferisce i marinai","description":"No overview found.","id":"4616","runtime":80,"imdbId":"tt0082284","version":40,"lastModified":"1301907423000","studio":"Fedelfilm","genre":"Comedy","title":"La dottoressa preferisce i marinai","releaseDate":378086400000,"language":"en","type":"Movie","_key":"22890"} +{"label":"Michele Massimo Tarantini","version":24,"id":"38595","lastModified":"1301901985000","name":"Michele Massimo Tarantini","type":"Person","_key":"22891"} +{"label":"Paola Senatore","version":23,"id":"38596","lastModified":"1301901658000","name":"Paola Senatore","type":"Person","_key":"22892"} +{"label":"Renzo Palmer","version":28,"id":"38597","lastModified":"1301956468000","name":"Renzo Palmer","type":"Person","_key":"22893"} +{"label":"Lucio Montanaro","version":21,"id":"38598","lastModified":"1301904136000","name":"Lucio Montanaro","type":"Person","_key":"22894"} +{"label":"Krabat","description":"A 14-year-old orphan named Krabat flees the horrors of the 30 Years War by becoming an apprentice to an ominous master of a mysterious mill. Krabat is not only taught the craft of milling, but is also instructed in the sinister world of the darker arts. When the life of his friend and protector is threatened, Krabat must struggle to free himself from an evil sorcerer's control in a gripping fight for freedom, friendship and love.","id":"4627","runtime":115,"imdbId":"tt0772181","version":104,"lastModified":"1302020824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4d4bc4cc5e73d617c10010a3\/krabat-mid.jpg","studio":"Claussen W\u00f6bke Putz","genre":"Action","title":"Krabat","releaseDate":1224115200000,"language":"en","type":"Movie","_key":"22895"} +{"label":"Paula Kalenberg","version":22,"id":"52635","lastModified":"1301901401000","name":"Paula Kalenberg","type":"Person","_key":"22896"} +{"label":"Anna Thalbach","version":21,"id":"38371","lastModified":"1301901642000","name":"Anna Thalbach","type":"Person","_key":"22897"} +{"label":"Enigma","description":"Five highly-trained KGB agents are sent to the west to assassinate several Soviet dissidents. In order to stop the diabolical plot, an American agent must infiltrate Soviet intelligence and obtain information from a Russian computer.","id":"4628","runtime":122,"imdbId":"tt0083891","version":285,"lastModified":"1301908541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4ca674025e73d643ef00007e\/enigma-mid.jpg","studio":"Goldcrest Films International","genre":"Action","title":"Enigma","releaseDate":412560000000,"language":"en","type":"Movie","_key":"22898"} +{"label":"Philippe Caroit","version":22,"id":"38647","lastModified":"1301901619000","name":"Philippe Caroit","type":"Person","_key":"22899"} +{"label":"Madeleine Damien","version":19,"id":"38649","lastModified":"1301901899000","name":"Madeleine Damien","type":"Person","_key":"22900"} +{"label":"Guy Di Rigo","version":18,"id":"38650","lastModified":"1301901990000","name":"Guy Di Rigo","type":"Person","_key":"22901"} +{"label":"Bernard Bloch","version":26,"id":"32948","lastModified":"1301901842000","name":"Bernard Bloch","type":"Person","_key":"22902"} +{"label":"David Baxt","version":21,"id":"38651","lastModified":"1301901899000","name":"David Baxt","type":"Person","_key":"22903"} +{"label":"December Boys","description":"One summer, four orphans boys who have grown to be the closest of friends find themselves competing for the attention of the same family.","id":"4629","runtime":105,"imdbId":"tt0465436","trailer":"http:\/\/www.youtube.com\/watch?v=267","homepage":"http:\/\/wip.warnerbros.com\/decemberboys\/","version":478,"lastModified":"1302030885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/665\/4bc91af4017a3c57fe00a665\/december-boys-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Drama","title":"December Boys","releaseDate":1189296000000,"language":"en","tagline":"After that summer nothing would be the same.","type":"Movie","_key":"22904"} +{"label":"Lee Cormie","version":24,"id":"38660","lastModified":"1301901539000","name":"Lee Cormie","type":"Person","_key":"22905"} +{"label":"Christian Byers","version":22,"id":"38661","lastModified":"1301901477000","name":"Christian Byers","type":"Person","_key":"22906"} +{"label":"James Fraser","version":21,"id":"38662","lastModified":"1301901619000","name":"James Fraser","type":"Person","_key":"22907"} +{"label":"Victoria Hill","version":31,"id":"38663","lastModified":"1301901431000","name":"Victoria Hill","type":"Person","_key":"22908"} +{"label":"Sullivan Stapleton","version":24,"id":"38664","lastModified":"1301901477000","name":"Sullivan Stapleton","type":"Person","_key":"22909"} +{"label":"Max Cullen","version":32,"id":"38665","lastModified":"1301901452000","name":"Max Cullen","type":"Person","_key":"22910"} +{"label":"Zemestan","description":"No overview found.","id":"4630","runtime":86,"imdbId":"tt0499166","version":72,"lastModified":"1301905284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66e\/4bc91af4017a3c57fe00a66e\/zemestan-mid.jpg","studio":"AMA Media","genre":"Drama","title":"Zemestan","releaseDate":1139875200000,"language":"en","type":"Movie","_key":"22911"} +{"label":"Mitra Hajjar","version":23,"id":"39369","lastModified":"1301901422000","name":"Mitra Hajjar","type":"Person","_key":"22912"} +{"label":"Ali Nicksaulat","version":23,"id":"39372","lastModified":"1301901422000","name":"Ali Nicksaulat","type":"Person","_key":"22913"} +{"label":"Hashem Abdi","version":19,"id":"39378","lastModified":"1301901619000","name":"Hashem Abdi","type":"Person","_key":"22914"} +{"label":"Said Orkani","version":19,"id":"39374","lastModified":"1301901539000","name":"Said Orkani","type":"Person","_key":"22915"} +{"label":"Zahra Jafari","version":19,"id":"39376","lastModified":"1301901899000","name":"Zahra Jafari","type":"Person","_key":"22916"} +{"label":"Valiollah Sali","version":19,"id":"39373","lastModified":"1301901899000","name":"Valiollah Sali","type":"Person","_key":"22917"} +{"label":"Safari Ghassemi","version":19,"id":"39375","lastModified":"1301901899000","name":"Safari Ghassemi","type":"Person","_key":"22918"} +{"label":"Hossein Hadgbegi","version":19,"id":"39371","lastModified":"1301901899000","name":"Hossein Hadgbegi","type":"Person","_key":"22919"} +{"label":"Naser Madahi","version":23,"id":"39377","lastModified":"1301901599000","name":"Naser Madahi","type":"Person","_key":"22920"} +{"label":"Leila Solymani","version":19,"id":"39368","lastModified":"1301901899000","name":"Leila Solymani","type":"Person","_key":"22921"} +{"label":"Mohammad Nazari","version":19,"id":"39370","lastModified":"1301901899000","name":"Mohammad Nazari","type":"Person","_key":"22922"} +{"label":"Ali Fanaian","version":20,"id":"39367","lastModified":"1301902003000","name":"Ali Fanaian","type":"Person","_key":"22923"} +{"label":"Nooreddin Goodarzi","version":17,"id":"39407","lastModified":"1301901619000","name":"Nooreddin Goodarzi","type":"Person","_key":"22924"} +{"label":"Sepehr Mikaelian","version":19,"id":"39408","lastModified":"1301901619000","name":"Sepehr Mikaelian","type":"Person","_key":"22925"} +{"label":"Rafi Pitts","version":30,"id":"39379","lastModified":"1301901477000","name":"Rafi Pitts","type":"Person","_key":"22926"} +{"label":"Cutlass","description":"First short movie directed by actress Kate Hudson with her stepfather Kurt Russell in the main part.","id":"4633","runtime":0,"imdbId":"tt1107809","homepage":"http:\/\/www.glamalert.com\/reelmoments\/","version":80,"lastModified":"1301906367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dd\/4d67a7117b9aa129780036dd\/cutlass-mid.jpg","genre":"Drama","title":"Cutlass","releaseDate":1191888000000,"language":"en","type":"Movie","_key":"22927"} +{"label":"Steve Jones","version":22,"id":"38667","lastModified":"1301901966000","name":"Steve Jones","type":"Person","_key":"22928"} +{"label":"Wellcome","description":"When a family move into a new house, they are confronted with an unexpected occupant.","id":"4634","runtime":13,"imdbId":"tt1086727","version":33,"lastModified":"1301908603000","genre":"Drama","title":"Wellcome","releaseDate":1097280000000,"language":"en","type":"Movie","_key":"22929"} +{"label":"Alexandra Gold Jourden","version":21,"id":"38668","lastModified":"1301902032000","name":"Alexandra Gold Jourden","type":"Person","_key":"22930"} +{"label":"The Trap","description":"No overview found.","id":"4635","runtime":0,"imdbId":"tt1086724","version":203,"lastModified":"1302058430000","genre":"Drama","title":"The Trap","releaseDate":1191888000000,"language":"en","type":"Movie","_key":"22931"} +{"label":"Camilla Belle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c3a\/4bfd8411017a3c702f000c3a\/camilla-belle-profile.jpg","version":67,"birthday":"528591600000","id":"38670","birthplace":"Los Angeles, California, USA","lastModified":"1301904069000","name":"Camilla Belle","type":"Person","_key":"22932"} +{"label":"Greg Butler","version":20,"id":"38671","lastModified":"1301902003000","name":"Greg Butler","type":"Person","_key":"22933"} +{"label":"Johanna Day","version":20,"id":"38672","lastModified":"1301901818000","name":"Johanna Day","type":"Person","_key":"22934"} +{"label":"Channing Tatum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26b\/4bdf2e78017a3c35bf00026b\/channing-tatum-profile.jpg","version":97,"id":"38673","lastModified":"1302036133000","name":"Channing Tatum","type":"Person","_key":"22935"} +{"label":"Aisha Tyler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/430\/4d8566697b9aa12edd002430\/aisha-tyler-profile.jpg","version":38,"birthday":"22460400000","id":"38674","birthplace":"San Francisco, California, USA","lastModified":"1301901295000","name":"Aisha Tyler","type":"Person","_key":"22936"} +{"label":"Hot Fuzz","description":"Top London cop, PC Nicholas Angel is good. Too good. And to stop the rest of his team looking bad, he is reassigned to the quiet town of Sandford. Paired with simple country cop Danny, everything seems quiet until two actors are found decapitated. It is address to as an accident, but Angel isn't going to accept that, especially when more and more people turn up dead. ","id":"4638","runtime":116,"imdbId":"tt0425112","trailer":"http:\/\/www.youtube.com\/watch?v=gxKJb6aukGQ","version":579,"lastModified":"1302030248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4d0e96907b9aa11770002b78\/hot-fuzz-mid.jpg","studio":"Working Title Films","genre":"Action","title":"Hot Fuzz","releaseDate":1171411200000,"language":"en","tagline":"Big cops. Small town. Moderate violence.","type":"Movie","_key":"22937"} +{"label":"Kevin Eldon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f50\/4cf17a915e73d61925000f50\/kevin-eldon-profile.jpg","version":23,"id":"39185","lastModified":"1301901107000","name":"Kevin Eldon","type":"Person","_key":"22938"} +{"label":"Karl Johnson","version":29,"id":"39186","lastModified":"1301901104000","name":"Karl Johnson","type":"Person","_key":"22939"} +{"label":"Olivia Colman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ab\/4cef52ad5e73d662530002ab\/olivia-colman-profile.jpg","version":28,"id":"39187","lastModified":"1301901103000","name":"Olivia Colman","type":"Person","_key":"22940"} +{"label":"Edward Woodward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4c751e1e7b9aa1660a0000e0\/edward-woodward-profile.jpg","version":33,"id":"39188","lastModified":"1301901104000","name":"Edward Woodward","type":"Person","_key":"22941"} +{"label":"Stephen Merchant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4ceea57b5e73d653170000d0\/stephen-merchant-profile.jpg","version":60,"id":"39189","lastModified":"1301901376000","name":"Stephen Merchant","type":"Person","_key":"22942"} +{"label":"Best Seller","description":"Hit man Cleve approaches writer\/cop Dennis about a story for his next book: How Cleve made a living, working for one of the most powerful politicians in the country. To get the story right, they travel around the country to gather statements and evidence, while strong forces use any means they can to keep the story untold.","id":"4639","runtime":110,"imdbId":"tt0092641","version":245,"lastModified":"1302051983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4cae26237b9aa1213900005f\/best-seller-mid.jpg","studio":"Hemdale Film Corporation","genre":"Action","title":"Best Seller","releaseDate":559526400000,"language":"en","type":"Movie","_key":"22943"} +{"label":"John Flynn","version":33,"id":"38689","lastModified":"1301901262000","name":"John Flynn","type":"Person","_key":"22944"} +{"label":"Allison Balson","version":20,"id":"38690","lastModified":"1301902024000","name":"Allison Balson","type":"Person","_key":"22945"} +{"label":"Anne Pitoniak","version":27,"id":"38691","lastModified":"1301901791000","name":"Anne Pitoniak","type":"Person","_key":"22946"} +{"label":"Read It and Weep","description":"No overview found.","id":"4641","runtime":90,"imdbId":"tt0494716","version":227,"lastModified":"1302057544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bd\/4bc91b03017a3c57fe00a6bd\/read-it-and-weep-mid.jpg","studio":"Walt Disney Television","genre":"Comedy","title":"Read It and Weep","releaseDate":1153440000000,"language":"en","type":"Movie","_key":"22947"} +{"label":"Paul Hoen","version":27,"id":"38692","lastModified":"1301901398000","name":"Paul Hoen","type":"Person","_key":"22948"} +{"label":"Kay Panabaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b2\/4d8a12f35e73d650470008b2\/kay-panabaker-profile.jpg","version":26,"id":"38703","lastModified":"1301901935000","name":"Kay Panabaker","type":"Person","_key":"22949"} +{"label":"Allison Scagliotti","version":21,"id":"38706","lastModified":"1301901491000","name":"Allison Scagliotti","type":"Person","_key":"22950"} +{"label":"Marquise Brown","version":19,"id":"38705","lastModified":"1301901738000","name":"Marquise Brown","type":"Person","_key":"22951"} +{"label":"Alexandra Krosney","version":24,"id":"38704","lastModified":"1301901539000","name":"Alexandra Krosney","type":"Person","_key":"22952"} +{"label":"Jason Dolley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aff\/4d1cc8eb5e73d665a6001aff\/jason-dolley-profile.jpg","version":23,"id":"38707","lastModified":"1301901467000","name":"Jason Dolley","type":"Person","_key":"22953"} +{"label":"Chad Broskey","version":19,"id":"38708","lastModified":"1301901539000","name":"Chad Broskey","type":"Person","_key":"22954"} +{"label":"Tom Virtue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41d\/4ce19bdc5e73d60f7000041d\/tom-virtue-profile.jpg","version":24,"id":"38709","lastModified":"1301901442000","name":"Tom Virtue","type":"Person","_key":"22955"} +{"label":"Connie Young","version":19,"id":"38710","lastModified":"1301901539000","name":"Connie Young","type":"Person","_key":"22956"} +{"label":"Robin Riker","version":21,"id":"38711","lastModified":"1301901834000","name":"Robin Riker","type":"Person","_key":"22957"} +{"label":"The Guardian","description":"A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's \"A\" School, where legendary rescue swimmer Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice","id":"4643","runtime":139,"imdbId":"tt0406816","version":422,"lastModified":"1302020290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4ca74c237b9aa17ace0001d7\/the-guardian-mid.jpg","studio":"A School Productions","genre":"Action","title":"The Guardian","releaseDate":1159401600000,"language":"en","type":"Movie","_key":"22958"} +{"label":"Melissa Sagemiller","version":36,"id":"41555","lastModified":"1301901565000","name":"Melissa Sagemiller","type":"Person","_key":"22959"} +{"label":"Omari Hardwick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/696\/4cd9b8f57b9aa11b22000696\/omari-hardwick-profile.jpg","version":81,"birthday":"126918000000","id":"41556","birthplace":"Atlanta, Georgia","lastModified":"1301901216000","name":"Omari Hardwick","type":"Person","_key":"22960"} +{"label":"Derek Adams","version":15,"id":"145538","lastModified":"1301902557000","name":"Derek Adams","type":"Person","_key":"22961"} +{"label":"Bryce Cass","version":15,"id":"145539","lastModified":"1301902557000","name":"Bryce Cass","type":"Person","_key":"22962"} +{"label":"Benny Ciaramello","version":15,"id":"145540","lastModified":"1301902557000","name":"Benny Ciaramello","type":"Person","_key":"22963"} +{"label":"Shelby Fenner","version":16,"id":"145541","lastModified":"1301902557000","name":"Shelby Fenner","type":"Person","_key":"22964"} +{"label":"Peter Gail","version":15,"id":"145542","lastModified":"1301902557000","name":"Peter Gail","type":"Person","_key":"22965"} +{"label":"Damon Lipari","version":15,"id":"145543","lastModified":"1301902570000","name":"Damon Lipari","type":"Person","_key":"22966"} +{"label":"Scott Mueller","version":15,"id":"145544","lastModified":"1301902557000","name":"Scott Mueller","type":"Person","_key":"22967"} +{"label":"Travis Willingham","version":15,"id":"145545","lastModified":"1301902695000","name":"Travis Willingham","type":"Person","_key":"22968"} +{"label":"The Year of Getting to Know Us","description":"A commitment-phobic man reunites with his estranged, ailing father and comes to terms with his own childhood.","id":"4644","runtime":0,"imdbId":"tt0924134","version":153,"lastModified":"1302020217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4c9c3bd55e73d66d1c000042\/the-year-of-getting-to-know-us-mid.jpg","studio":"Grand Army Entertainment","genre":"Drama","title":"The Year of Getting to Know Us","releaseDate":1195516800000,"language":"en","type":"Movie","_key":"22969"} +{"label":"Tom Arnold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4c9c3a9d5e73d66d20000045\/tom-arnold-profile.jpg","version":79,"id":"74036","lastModified":"1301901121000","name":"Tom Arnold","type":"Person","_key":"22970"} +{"label":"Jordana Spiro","version":27,"id":"39481","lastModified":"1301901459000","name":"Jordana Spiro","type":"Person","_key":"22971"} +{"label":"Patrick Sisam","version":21,"id":"41673","lastModified":"1301902003000","name":"Patrick Sisam","type":"Person","_key":"22972"} +{"label":"\u00d6dipussi","description":"No overview found.","id":"4645","runtime":88,"imdbId":"tt0094407","version":63,"lastModified":"1302004656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/929\/4d9b1fbd5e73d64764000929\/dipussi-mid.jpg","studio":"Rialto Film","genre":"Comedy","title":"\u00d6dipussi","releaseDate":573955200000,"language":"en","type":"Movie","_key":"22973"} +{"label":"Evelyn Hamann","version":23,"id":"41683","lastModified":"1301901519000","name":"Evelyn Hamann","type":"Person","_key":"22974"} +{"label":"Katharina Brauren","version":25,"id":"39585","lastModified":"1301901587000","name":"Katharina Brauren","type":"Person","_key":"22975"} +{"label":"Edda Seippel","version":21,"id":"41684","lastModified":"1301901677000","name":"Edda Seippel","type":"Person","_key":"22976"} +{"label":"Richard Lauffen","version":21,"id":"26253","lastModified":"1301902003000","name":"Richard Lauffen","type":"Person","_key":"22977"} +{"label":"Klaus Schultz","version":21,"id":"41685","lastModified":"1301902186000","name":"Klaus Schultz","type":"Person","_key":"22978"} +{"label":"Rosemarie Fendel","version":26,"id":"23360","lastModified":"1301901352000","name":"Rosemarie Fendel","type":"Person","_key":"22979"} +{"label":"Die Goldene Gans","description":"Klaus lebt mit seinen beiden faulen Br\u00fcdern in einer Schusterwerkstatt. Er mu\u00df alle Arbeit alleine machen. Eines Tages trifft er beim Holzf\u00e4llen eine alte Frau, die ihm seine Freundlichkeit mit einer goldenen Gans vergilt. Die hat eine besondere Eigenschaft: Alle Neugierigen, Neidischen, Habgierigen bleiben an ihr h\u00e4ngen. Auf seiner Wanderschaft sammelt Klaus so ein buntes Gefolge, selbst ein M\u00fcller mit einem Esel ist kleben geblieben. In der n\u00e4chsten Stadt bringt er damit die aus Langeweile in ","id":"4652","runtime":67,"imdbId":"tt0183126","version":78,"lastModified":"1301421210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ea\/4bc91b0a017a3c57fe00a6ea\/die-goldene-gans-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Die Goldene Gans","releaseDate":-166060800000,"language":"en","type":"Movie","_key":"22980"} +{"label":"Siegfried Hartmann","version":25,"id":"37535","lastModified":"1301901539000","name":"Siegfried Hartmann","type":"Person","_key":"22981"} +{"label":"Kaspar Eichel","version":19,"id":"38745","lastModified":"1301901899000","name":"Kaspar Eichel","type":"Person","_key":"22982"} +{"label":"Uwe Detlef Jessen","version":19,"id":"38746","lastModified":"1301901619000","name":"Uwe Detlef Jessen","type":"Person","_key":"22983"} +{"label":"Gerd E. Sch\u00e4fer","version":23,"id":"38747","lastModified":"1301901899000","name":"Gerd E. Sch\u00e4fer","type":"Person","_key":"22984"} +{"label":"Heinz Scholz","version":20,"id":"77387","lastModified":"1301902002000","name":"Heinz Scholz","type":"Person","_key":"22985"} +{"label":"Renate Usko","version":19,"id":"77388","lastModified":"1301902109000","name":"Renate Usko","type":"Person","_key":"22986"} +{"label":"Fritz Schlegel","version":20,"id":"74211","lastModified":"1301901738000","name":"Fritz Schlegel","type":"Person","_key":"22987"} +{"label":"Joachim Fuchs","version":19,"id":"77389","lastModified":"1301902109000","name":"Joachim Fuchs","type":"Person","_key":"22988"} +{"label":"Fritz Decho","version":22,"id":"74185","lastModified":"1301901899000","name":"Fritz Decho","type":"Person","_key":"22989"} +{"label":"Karl Heinz Oppel","version":18,"id":"77391","lastModified":"1301902173000","name":"Karl Heinz Oppel","type":"Person","_key":"22990"} +{"label":"Horst Papke","version":20,"id":"77392","lastModified":"1301902186000","name":"Horst Papke","type":"Person","_key":"22991"} +{"label":"Lutz Erdmann","version":20,"id":"77393","lastModified":"1301902002000","name":"Lutz Erdmann","type":"Person","_key":"22992"} +{"label":"Karin Fredersdorf","version":18,"id":"28565","lastModified":"1301902109000","name":"Karin Fredersdorf","type":"Person","_key":"22993"} +{"label":"Georg Kranz","version":24,"id":"23101","lastModified":"1301902192000","name":"Georg Kranz","type":"Person","_key":"22994"} +{"label":"Eva Przezicha","version":15,"id":"77394","lastModified":"1301902109000","name":"Eva Przezicha","type":"Person","_key":"22995"} +{"label":"Paul Rendelmann","version":19,"id":"77395","lastModified":"1301901738000","name":"Paul Rendelmann","type":"Person","_key":"22996"} +{"label":"Bernd R\u00f6ther","version":15,"id":"77396","lastModified":"1301902109000","name":"Bernd R\u00f6ther","type":"Person","_key":"22997"} +{"label":"Hermann Kl\u00e4ring","version":15,"id":"77397","lastModified":"1301902109000","name":"Hermann Kl\u00e4ring","type":"Person","_key":"22998"} +{"label":"Gerhard T\u00f6pel","version":15,"id":"77398","lastModified":"1301902109000","name":"Gerhard T\u00f6pel","type":"Person","_key":"22999"} +{"label":"Hans-Gotthilf Brown","version":19,"id":"77399","lastModified":"1301902109000","name":"Hans-Gotthilf Brown","type":"Person","_key":"23000"} +{"label":"Kampftag","description":"No overview found.","id":"4653","runtime":90,"imdbId":"tt0165344","version":40,"lastModified":"1301908602000","studio":"Infafilm","genre":"Comedy","title":"Kampftag","releaseDate":378691200000,"language":"en","type":"Movie","_key":"23001"} +{"label":"Manfred Grunert","version":22,"id":"38749","lastModified":"1301901966000","name":"Manfred Grunert","type":"Person","_key":"23002"} +{"label":"Werner Asam","version":21,"id":"38752","lastModified":"1301901966000","name":"Werner Asam","type":"Person","_key":"23003"} +{"label":"Ulrich Beiger","version":32,"id":"26937","lastModified":"1301902159000","name":"Ulrich Beiger","type":"Person","_key":"23004"} +{"label":"Christiane Blumhoff","version":20,"id":"38753","lastModified":"1301901818000","name":"Christiane Blumhoff","type":"Person","_key":"23005"} +{"label":"Elisabeth Endriss","version":20,"id":"38754","lastModified":"1301901818000","name":"Elisabeth Endriss","type":"Person","_key":"23006"} +{"label":"Ottfried Fischer","version":39,"id":"38719","lastModified":"1301901170000","name":"Ottfried Fischer","type":"Person","_key":"23007"} +{"label":"Echt tu matsch","description":"No overview found.","id":"4654","runtime":90,"imdbId":"tt0087191","version":46,"lastModified":"1301906752000","genre":"Comedy","title":"Echt tu matsch","releaseDate":441763200000,"language":"en","type":"Movie","_key":"23008"} +{"label":"Claus Strigel","version":22,"id":"38810","lastModified":"1301901966000","name":"Claus Strigel","type":"Person","_key":"23009"} +{"label":"Bertram Verhaag","version":21,"id":"38811","lastModified":"1301902014000","name":"Bertram Verhaag","type":"Person","_key":"23010"} +{"label":"Astrid Boner","version":20,"id":"38818","lastModified":"1301901791000","name":"Astrid Boner","type":"Person","_key":"23011"} +{"label":"Mine Gruber","version":20,"id":"38819","lastModified":"1301902002000","name":"Mine Gruber","type":"Person","_key":"23012"} +{"label":"Ernst Wilhelm Lenik","version":20,"id":"38820","lastModified":"1301902002000","name":"Ernst Wilhelm Lenik","type":"Person","_key":"23013"} +{"label":"Ulrike Neumann","version":20,"id":"38821","lastModified":"1301902003000","name":"Ulrike Neumann","type":"Person","_key":"23014"} +{"label":"Traficantes de p\u00e1nico","description":"No overview found.","id":"4655","runtime":93,"imdbId":"tt0080710","version":48,"lastModified":"1301904045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ef\/4bc91b0a017a3c57fe00a6ef\/traficantes-de-panico-mid.jpg","studio":"Lotus Films","genre":"Action","title":"Traficantes de p\u00e1nico","releaseDate":334540800000,"language":"en","type":"Movie","_key":"23015"} +{"label":"Ren\u00e9 Cardona Jr.","version":31,"id":"38756","lastModified":"1301901791000","name":"Ren\u00e9 Cardona Jr.","type":"Person","_key":"23016"} +{"label":"Stuart Whitman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e7\/4bf1bec0017a3c32150002e7\/stuart-whitman-profile.jpg","version":40,"id":"38761","lastModified":"1301901221000","name":"Stuart Whitman","type":"Person","_key":"23017"} +{"label":"Gianni Macchia","version":24,"id":"38762","lastModified":"1301901413000","name":"Gianni Macchia","type":"Person","_key":"23018"} +{"label":"Antonella Interlenghi","version":24,"id":"38763","lastModified":"1301901664000","name":"Antonella Interlenghi","type":"Person","_key":"23019"} +{"label":"Hugo Stiglitz","version":23,"id":"38764","lastModified":"1301901677000","name":"Hugo Stiglitz","type":"Person","_key":"23020"} +{"label":"Mario Almada","version":19,"id":"38765","lastModified":"1301901809000","name":"Mario Almada","type":"Person","_key":"23021"} +{"label":"Victoria Vera","version":17,"id":"100572","lastModified":"1301903051000","name":"Victoria Vera","type":"Person","_key":"23022"} +{"label":"Fernando Almada","version":17,"id":"100573","lastModified":"1301903051000","name":"Fernando Almada","type":"Person","_key":"23023"} +{"label":"Edith Gonz\u00e1lez","version":17,"id":"100574","lastModified":"1301903051000","name":"Edith Gonz\u00e1lez","type":"Person","_key":"23024"} +{"label":"M\u00f6rderischer Frieden","description":"No overview found.","id":"4656","runtime":91,"imdbId":"tt1105288","homepage":"http:\/\/www.movienetfilm.de\/moerd_frieden\/","version":43,"lastModified":"1301906177000","studio":"Arte","genre":"Drama","title":"M\u00f6rderischer Frieden","releaseDate":1195689600000,"language":"en","type":"Movie","_key":"23025"} +{"label":"Rudolf Schweiger","version":21,"id":"38766","lastModified":"1301901679000","name":"Rudolf Schweiger","type":"Person","_key":"23026"} +{"label":"Adrian Topol","version":25,"id":"38772","lastModified":"1301901448000","name":"Adrian Topol","type":"Person","_key":"23027"} +{"label":"Max Riemelt","version":40,"id":"38773","lastModified":"1301901317000","name":"Max Riemelt","type":"Person","_key":"23028"} +{"label":"Anatole Taubman","version":32,"id":"62892","lastModified":"1301901099000","name":"Anatole Taubman","type":"Person","_key":"23029"} +{"label":"Peter Bongartz","version":20,"id":"27610","lastModified":"1301901658000","name":"Peter Bongartz","type":"Person","_key":"23030"} +{"label":"Jindabyne","description":"Stewart Kane, an Irishman living in the Australian town of Jindabyne, is on a fishing trip in isolated hill country with three other men when they discover the body of a murdered girl in the river. Rather than return to the town immediately, they continue fishing and report their gruesome find days later. The story of a murder and a marriage - a film about the things that haunt us.","id":"4657","runtime":123,"imdbId":"tt0382765","trailer":"http:\/\/www.youtube.com\/watch?v=269","homepage":"http:\/\/www.sonyclassics.com\/jindabyne\/","version":166,"lastModified":"1301905385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f8\/4bc91b0a017a3c57fe00a6f8\/jindabyne-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Drama","title":"Jindabyne","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"23031"} +{"label":"Ray Lawrence","version":22,"id":"38774","lastModified":"1301901555000","name":"Ray Lawrence","type":"Person","_key":"23032"} +{"label":"Leah Purcell","version":19,"id":"38782","lastModified":"1301901539000","name":"Leah Purcell","type":"Person","_key":"23033"} +{"label":"Stelios Yiakmis","version":19,"id":"38783","lastModified":"1301901619000","name":"Stelios Yiakmis","type":"Person","_key":"23034"} +{"label":"Alice Garner","version":20,"id":"38784","lastModified":"1301901470000","name":"Alice Garner","type":"Person","_key":"23035"} +{"label":"Simon Stone","version":25,"id":"38785","lastModified":"1301901445000","name":"Simon Stone","type":"Person","_key":"23036"} +{"label":"Betty Lucas","version":19,"id":"38786","lastModified":"1301901619000","name":"Betty Lucas","type":"Person","_key":"23037"} +{"label":"Eva Lazzaro","version":19,"id":"38787","lastModified":"1301901619000","name":"Eva Lazzaro","type":"Person","_key":"23038"} +{"label":"Sean Rees-Wemyss","version":19,"id":"38788","lastModified":"1301901619000","name":"Sean Rees-Wemyss","type":"Person","_key":"23039"} +{"label":"Tatea Reilly","version":19,"id":"38789","lastModified":"1301901619000","name":"Tatea Reilly","type":"Person","_key":"23040"} +{"label":"John Howard","version":24,"id":"102603","lastModified":"1301902336000","name":"John Howard","type":"Person","_key":"23041"} +{"label":"Arctic Tale","description":"Arctic Tale is a 2007 documentary film from the National Geographic Society about the life cycle of a walrus and her calf, and a polar bear and her cubs, in a similar vein to the 2005 hit production March of the Penguins, also from National Geographic.","id":"4658","runtime":86,"imdbId":"tt0488508","trailer":"http:\/\/www.youtube.com\/watch?v=271","homepage":"http:\/\/www.arctictalemovie.com\/","version":199,"lastModified":"1301904507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/701\/4bc91b0b017a3c57fe00a701\/arctic-tale-mid.jpg","studio":"Visionbox Pictures","genre":"Documentary","title":"Arctic Tale","releaseDate":1182038400000,"language":"en","type":"Movie","_key":"23042"} +{"label":"Adam Ravetch","version":21,"id":"38790","lastModified":"1301901619000","name":"Adam Ravetch","type":"Person","_key":"23043"} +{"label":"Sarah Robertson","version":21,"id":"38791","lastModified":"1301901619000","name":"Sarah Robertson","type":"Person","_key":"23044"} +{"label":"Mama Mia - Nur keine Panik","description":"No overview found.","id":"4659","runtime":94,"imdbId":"tt0087669","version":65,"lastModified":"1301905284000","studio":"Lisa Film","genre":"Comedy","title":"Mama Mia - Nur keine Panik","releaseDate":439603200000,"language":"en","type":"Movie","_key":"23045"} +{"label":"Dieter Pr\u00f6ttel","version":23,"id":"38822","lastModified":"1301901444000","name":"Dieter Pr\u00f6ttel","type":"Person","_key":"23046"} +{"label":"Thomas Gottschalk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b0\/4d0917997b9aa101de0007b0\/thomas-gottschalk-profile.jpg","version":44,"id":"38832","lastModified":"1301901202000","name":"Thomas Gottschalk","type":"Person","_key":"23047"} +{"label":"Helmut Fischer","version":25,"id":"26590","lastModified":"1301901498000","name":"Helmut Fischer","type":"Person","_key":"23048"} +{"label":"Erni Singerl","version":22,"id":"38833","lastModified":"1301901566000","name":"Erni Singerl","type":"Person","_key":"23049"} +{"label":"Karl Obermayr","version":21,"id":"38834","lastModified":"1301901899000","name":"Karl Obermayr","type":"Person","_key":"23050"} +{"label":"Lilo Molina","version":19,"id":"38835","lastModified":"1301901899000","name":"Lilo Molina","type":"Person","_key":"23051"} +{"label":"Corinna Genest","version":19,"id":"38836","lastModified":"1301901899000","name":"Corinna Genest","type":"Person","_key":"23052"} +{"label":"J\u00f6rg Allg\u00e4uer","version":19,"id":"38837","lastModified":"1301901899000","name":"J\u00f6rg Allg\u00e4uer","type":"Person","_key":"23053"} +{"label":"Nicole Br\u00fchl","version":19,"id":"38838","lastModified":"1301901899000","name":"Nicole Br\u00fchl","type":"Person","_key":"23054"} +{"label":"Corinna Drews","version":19,"id":"38839","lastModified":"1301901899000","name":"Corinna Drews","type":"Person","_key":"23055"} +{"label":"Kurt Felix","version":19,"id":"38840","lastModified":"1301901899000","name":"Kurt Felix","type":"Person","_key":"23056"} +{"label":"Mike Kr\u00fcger","version":34,"id":"38841","lastModified":"1301901445000","name":"Mike Kr\u00fcger","type":"Person","_key":"23057"} +{"label":"Hans Werner Olm","version":19,"id":"38842","lastModified":"1301901739000","name":"Hans Werner Olm","type":"Person","_key":"23058"} +{"label":"Otto Retzer","version":23,"id":"38843","lastModified":"1301901993000","name":"Otto Retzer","type":"Person","_key":"23059"} +{"label":"Kolp","description":"No overview found.","id":"4660","runtime":105,"imdbId":"tt0192210","version":48,"lastModified":"1301908602000","studio":"Frank R\u00f6th Filmproduktion","genre":"Comedy","title":"Kolp","releaseDate":485740800000,"language":"en","type":"Movie","_key":"23060"} +{"label":"Frank R\u00f6th","version":22,"id":"36470","lastModified":"1301901568000","name":"Frank R\u00f6th","type":"Person","_key":"23061"} +{"label":"Hans-Joachim Grau","version":20,"id":"38847","lastModified":"1301901965000","name":"Hans-Joachim Grau","type":"Person","_key":"23062"} +{"label":"Charles M. Huber","version":22,"id":"38848","lastModified":"1301901974000","name":"Charles M. Huber","type":"Person","_key":"23063"} +{"label":"Grande \u00c9cole","description":"No overview found.","id":"4676","runtime":110,"imdbId":"tt0340137","version":134,"lastModified":"1302018210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc91b0e017a3c57fe00a70a\/grande-ecole-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Grande \u00c9cole","releaseDate":1075852800000,"language":"en","type":"Movie","_key":"23064"} +{"label":"Robert Salis","version":20,"id":"38856","lastModified":"1301901643000","name":"Robert Salis","type":"Person","_key":"23065"} +{"label":"Gregori Baquet","version":22,"id":"38862","lastModified":"1301901297000","name":"Gregori Baquet","type":"Person","_key":"23066"} +{"label":"Alice Taglioni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ceb\/4d27eb477b9aa134cf001ceb\/alice-taglioni-profile.jpg","version":45,"id":"38863","lastModified":"1301901131000","name":"Alice Taglioni","type":"Person","_key":"23067"} +{"label":"Arthur Jugnot","version":21,"id":"38864","lastModified":"1301901839000","name":"Arthur Jugnot","type":"Person","_key":"23068"} +{"label":"Salim Kechiouche","version":24,"id":"38865","lastModified":"1301901979000","name":"Salim Kechiouche","type":"Person","_key":"23069"} +{"label":"Fleur bleue","description":"No overview found.","id":"4677","runtime":230,"imdbId":"tt0405926","version":68,"lastModified":"1301906752000","genre":"Comedy","title":"Fleur bleue","releaseDate":662342400000,"language":"en","type":"Movie","_key":"23070"} +{"label":"Olivier Langlois","version":20,"id":"38866","lastModified":"1301901568000","name":"Olivier Langlois","type":"Person","_key":"23071"} +{"label":"Jean-Pierre Ronssin","version":20,"id":"38867","lastModified":"1301901791000","name":"Jean-Pierre Ronssin","type":"Person","_key":"23072"} +{"label":"Alain Tasma","version":20,"id":"38868","lastModified":"1301901658000","name":"Alain Tasma","type":"Person","_key":"23073"} +{"label":"H\u00e9l\u00e8ne Rames","version":20,"id":"38870","lastModified":"1301901791000","name":"H\u00e9l\u00e8ne Rames","type":"Person","_key":"23074"} +{"label":"Patrick Raynal","version":20,"id":"38871","lastModified":"1301902002000","name":"Patrick Raynal","type":"Person","_key":"23075"} +{"label":"Marina Golovine","version":20,"id":"38872","lastModified":"1301901818000","name":"Marina Golovine","type":"Person","_key":"23076"} +{"label":"Marie Lenoir","version":20,"id":"38873","lastModified":"1301901833000","name":"Marie Lenoir","type":"Person","_key":"23077"} +{"label":"Thierry Magnier","version":20,"id":"38874","lastModified":"1301901791000","name":"Thierry Magnier","type":"Person","_key":"23078"} +{"label":"Ya\u00ebl Elhadad","version":20,"id":"38875","lastModified":"1301901791000","name":"Ya\u00ebl Elhadad","type":"Person","_key":"23079"} +{"label":"La Vie des morts","description":"No overview found.","id":"4678","runtime":54,"imdbId":"tt0100869","version":75,"lastModified":"1302019632000","studio":"Odessa Films","genre":"Drama","title":"La Vie des morts","releaseDate":676684800000,"language":"en","type":"Movie","_key":"23080"} +{"label":"Roch Leibovici","version":20,"id":"38876","lastModified":"1301901818000","name":"Roch Leibovici","type":"Person","_key":"23081"} +{"label":"Marianne Denicourt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4bd7af43017a3c1c0500000e\/marianne-denicourt-profile.jpg","version":26,"birthday":"-114742800000","id":"38877","birthplace":"Paris, France","lastModified":"1301901248000","name":"Marianne Denicourt","type":"Person","_key":"23082"} +{"label":"Bernard Ballet","version":20,"id":"38878","lastModified":"1301901966000","name":"Bernard Ballet","type":"Person","_key":"23083"} +{"label":"Suzel Goffre","version":20,"id":"38879","lastModified":"1301901966000","name":"Suzel Goffre","type":"Person","_key":"23084"} +{"label":"Beno\u00eet Brione","version":20,"id":"38880","lastModified":"1301901966000","name":"Beno\u00eet Brione","type":"Person","_key":"23085"} +{"label":"Laurent Schilling","version":21,"id":"38881","lastModified":"1301901965000","name":"Laurent Schilling","type":"Person","_key":"23086"} +{"label":"Emmanuel Salinger","version":26,"id":"38882","lastModified":"1301901965000","name":"Emmanuel Salinger","type":"Person","_key":"23087"} +{"label":"Arnaud Desplechin","version":34,"id":"38883","lastModified":"1301901459000","name":"Arnaud Desplechin","type":"Person","_key":"23088"} +{"label":"Someone Behind the Door","description":"No overview found.","id":"4679","runtime":97,"imdbId":"tt0067773","version":355,"lastModified":"1302051756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/713\/4bc91b0f017a3c57fe00a713\/quelqu-un-derriere-la-porte-mid.jpg","studio":"Lira Films","genre":"Suspense","title":"Someone Behind the Door","releaseDate":60998400000,"language":"en","type":"Movie","_key":"23089"} +{"label":"Jill Ireland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e36\/4bfe945c017a3c702d000e36\/jill-ireland-profile.jpg","version":38,"id":"15753","lastModified":"1301901448000","name":"Jill Ireland","type":"Person","_key":"23090"} +{"label":"Adriano Magistretti","version":21,"id":"38889","lastModified":"1301901822000","name":"Adriano Magistretti","type":"Person","_key":"23091"} +{"label":"Deux hommes dans la ville","description":"No overview found.","id":"4680","runtime":100,"imdbId":"tt0069967","version":125,"lastModified":"1302027412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/720\/4bc91b11017a3c57fe00a720\/deux-hommes-dans-la-ville-mid.jpg","studio":"Medusa Produzione","genre":"Crime","title":"Deux hommes dans la ville","releaseDate":120355200000,"language":"en","type":"Movie","_key":"23092"} +{"label":"Jos\u00e9 Giovanni","version":38,"id":"35585","lastModified":"1301901792000","name":"Jos\u00e9 Giovanni","type":"Person","_key":"23093"} +{"label":"Malka Ribowska","version":19,"id":"38890","lastModified":"1301901738000","name":"Malka Ribowska","type":"Person","_key":"23094"} +{"label":"Patrick Lancelot","version":24,"id":"34994","lastModified":"1301901550000","name":"Patrick Lancelot","type":"Person","_key":"23095"} +{"label":"Verdict","description":"No overview found.","id":"4681","runtime":95,"imdbId":"tt0072359","version":259,"lastModified":"1301906491000","studio":"PECF","genre":"Crime","title":"Verdict","releaseDate":148089600000,"language":"en","type":"Movie","_key":"23096"} +{"label":"Michel Albertini","version":20,"id":"38891","lastModified":"1301901738000","name":"Michel Albertini","type":"Person","_key":"23097"} +{"label":"Muriel Catal\u00e1","version":19,"id":"38892","lastModified":"1301901738000","name":"Muriel Catal\u00e1","type":"Person","_key":"23098"} +{"label":"Anne Kreis","version":22,"id":"38893","lastModified":"1301901832000","name":"Anne Kreis","type":"Person","_key":"23099"} +{"label":"Jean-Fran\u00e7ois R\u00e9mi","version":21,"id":"38894","lastModified":"1301901738000","name":"Jean-Fran\u00e7ois R\u00e9mi","type":"Person","_key":"23100"} +{"label":"Jean Amos","version":19,"id":"38895","lastModified":"1301901738000","name":"Jean Amos","type":"Person","_key":"23101"} +{"label":"Fran\u00e7ois Vibert","version":19,"id":"38896","lastModified":"1301901738000","name":"Fran\u00e7ois Vibert","type":"Person","_key":"23102"} +{"label":"Fran\u00e7oise Bette","version":20,"id":"38897","lastModified":"1301901942000","name":"Fran\u00e7oise Bette","type":"Person","_key":"23103"} +{"label":"La Barricade du Point du Jour","description":"No overview found.","id":"4682","runtime":99,"imdbId":"tt0077211","version":39,"lastModified":"1301908602000","studio":"Les Films du Point du Jour","genre":"History","title":"La Barricade du Point du Jour","releaseDate":252460800000,"language":"en","type":"Movie","_key":"23104"} +{"label":"Claude Brosset","version":30,"id":"25076","lastModified":"1301902002000","name":"Claude Brosset","type":"Person","_key":"23105"} +{"label":"Ren\u00e9 Richon","version":20,"id":"38900","lastModified":"1301902002000","name":"Ren\u00e9 Richon","type":"Person","_key":"23106"} +{"label":"Une belle fille comme moi","description":"Stanislas Previne is a young sociologist, preparing a thesis on criminal women. He meets in prison Camille Bliss to interview her. Camille is accused to have murdered her lover Arthur and her husband Clovis. She tells Stanislas about her life and her love affairs.","id":"4683","runtime":98,"imdbId":"tt0069442","version":54,"lastModified":"1301906752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4d702cc97b9aa13633006465\/une-belle-fille-comme-moi-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"Une belle fille comme moi","releaseDate":85190400000,"language":"en","type":"Movie","_key":"23107"} +{"label":"Guy Marchand","version":43,"id":"38901","lastModified":"1301901454000","name":"Guy Marchand","type":"Person","_key":"23108"} +{"label":"Gilberte G\u00e9niat","version":22,"id":"38902","lastModified":"1301901791000","name":"Gilberte G\u00e9niat","type":"Person","_key":"23109"} +{"label":"Michel Delahaye","version":26,"id":"38903","lastModified":"1301901498000","name":"Michel Delahaye","type":"Person","_key":"23110"} +{"label":"Bolero","description":"No overview found.","id":"4684","runtime":103,"imdbId":"tt0085264","version":174,"lastModified":"1301907124000","studio":"Artus-Film","genre":"Comedy","title":"Bolero","releaseDate":499651200000,"language":"en","type":"Movie","_key":"23111"} +{"label":"R\u00fcdiger N\u00fcchtern","version":21,"id":"38904","lastModified":"1301901658000","name":"R\u00fcdiger N\u00fcchtern","type":"Person","_key":"23112"} +{"label":"Katja Rup\u00e9","version":28,"id":"38906","lastModified":"1301902033000","name":"Katja Rup\u00e9","type":"Person","_key":"23113"} +{"label":"Michael K\u00f6nig","version":21,"id":"38907","lastModified":"1301901791000","name":"Michael K\u00f6nig","type":"Person","_key":"23114"} +{"label":"Maxi N\u00fcchtern","version":20,"id":"38908","lastModified":"1301901965000","name":"Maxi N\u00fcchtern","type":"Person","_key":"23115"} +{"label":"Laurens Straub","version":25,"id":"38909","lastModified":"1301901818000","name":"Laurens Straub","type":"Person","_key":"23116"} +{"label":"Pit Kr\u00fcger","version":20,"id":"38911","lastModified":"1301901840000","name":"Pit Kr\u00fcger","type":"Person","_key":"23117"} +{"label":"Lothar Meid","version":23,"id":"24159","lastModified":"1301901973000","name":"Lothar Meid","type":"Person","_key":"23118"} +{"label":"Paul Hubschmid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d3\/4c7d42067b9aa109780001d3\/paul-hubschmid-profile.jpg","version":24,"id":"118861","lastModified":"1301902650000","name":"Paul Hubschmid","type":"Person","_key":"23119"} +{"label":"Le ma\u00eetre-nageur","description":"No overview found.","id":"4685","runtime":95,"imdbId":"tt0205250","version":55,"lastModified":"1301904959000","studio":"Nadja Films","genre":"Comedy","title":"Le ma\u00eetre-nageur","releaseDate":259891200000,"language":"en","type":"Movie","_key":"23120"} +{"label":"Moustache","version":21,"id":"38912","lastModified":"1301901562000","name":"Moustache","type":"Person","_key":"23121"} +{"label":"Beno\u00eet Ferreux","version":21,"id":"38913","lastModified":"1301901618000","name":"Beno\u00eet Ferreux","type":"Person","_key":"23122"} +{"label":"Christian Marquand","version":31,"id":"38914","lastModified":"1302061548000","name":"Christian Marquand","type":"Person","_key":"23123"} +{"label":"Across the Universe","description":"Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.","id":"4688","runtime":133,"imdbId":"tt0445922","trailer":"http:\/\/www.youtube.com\/watch?v=E4OUeFxtBA8","homepage":"http:\/\/www.acrosstheuniverse.com\/","version":604,"lastModified":"1302048440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/732\/4bc91b13017a3c57fe00a732\/across-the-universe-mid.jpg","studio":"Revolution Studios","genre":"Drama","title":"Across the Universe","releaseDate":1189382400000,"language":"en","tagline":"All you need is love.","type":"Movie","_key":"23124"} +{"label":"Evan Rachel Wood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/691\/4c8e1d765e73d60690000691\/evan-rachel-wood-profile.jpg","biography":"Evan Rachel Wood (born September 7, 1987) is an American actress and singer.Wood began her acting career in the late 1990s, appearing in several television series, including American Gothic and Once and Again. She made her debut as a leading film actress in Little Secrets (2002) and became well-known after her transition to a more adult-oriented Golden Globe-nominated role in the teen drama film Thirteen (2003). Wood continued acting mostly in independent films, including Pretty Persuasion ","version":84,"birthday":"557964000000","id":"38940","birthplace":"Raleigh, North Carolina, USA","lastModified":"1302066307000","name":"Evan Rachel Wood","type":"Person","_key":"23125"} +{"label":"Jim Sturgess","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4bf860df017a3c490c0000a3\/jim-sturgess-profile.jpg","version":57,"id":"38941","lastModified":"1301904094000","name":"Jim Sturgess","type":"Person","_key":"23126"} +{"label":"Dana Fuchs","version":21,"id":"38942","lastModified":"1301901539000","name":"Dana Fuchs","type":"Person","_key":"23127"} +{"label":"Martin Luther","version":21,"id":"38943","lastModified":"1301901618000","name":"Martin Luther","type":"Person","_key":"23128"} +{"label":"T.V. Carpio","version":23,"id":"38944","lastModified":"1301916267000","name":"T.V. Carpio","type":"Person","_key":"23129"} +{"label":"Spencer Liff","version":21,"id":"38945","lastModified":"1301901618000","name":"Spencer Liff","type":"Person","_key":"23130"} +{"label":"Lisa Hogg","version":21,"id":"38946","lastModified":"1301901618000","name":"Lisa Hogg","type":"Person","_key":"23131"} +{"label":"Nicholas Lumley","version":25,"id":"38947","lastModified":"1301901431000","name":"Nicholas Lumley","type":"Person","_key":"23132"} +{"label":"Michael Ryan","version":24,"id":"38948","lastModified":"1301901618000","name":"Michael Ryan","type":"Person","_key":"23133"} +{"label":"Angela Mounsey","version":21,"id":"38949","lastModified":"1301901618000","name":"Angela Mounsey","type":"Person","_key":"23134"} +{"label":"Antonique Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4d8bcd177b9aa13ae4002014\/antonique-smith-profile.jpg","version":18,"id":"171941","birthplace":"East Orange, New Jersey, USA","lastModified":"1301903492000","name":"Antonique Smith","type":"Person","_key":"23135"} +{"label":"Sympathy for Mr. Vengeance","description":"This is the story of Ryu, a deaf man, and his sister, who requires a kidney transplant. Ryu's boss, Park, has just laid him off, and in order to afford the transplant, Ryu and his girlfriend develop a plan to kidnap Park's daughter. Things go horribly wrong, and the situation spirals rapidly into a cycle of violence and revenge.","id":"4689","runtime":121,"imdbId":"tt0310775","version":304,"lastModified":"1302048202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/363\/4bf48e71017a3c6d92000363\/4689-mid.jpg","studio":"CJ Entertainment","genre":"Action","title":"Sympathy for Mr. Vengeance","releaseDate":1017360000000,"language":"en","type":"Movie","_key":"23136"} +{"label":"Ji-Eun Lim","version":23,"id":"39256","lastModified":"1301901672000","name":"Ji-Eun Lim","type":"Person","_key":"23137"} +{"label":"Bo-bae Han","version":25,"id":"39257","lastModified":"1301901818000","name":"Bo-bae Han","type":"Person","_key":"23138"} +{"label":"Dae-yeon Lee","version":25,"id":"39258","lastModified":"1301901818000","name":"Dae-yeon Lee","type":"Person","_key":"23139"} +{"label":"Pappa ante Portas","description":"No overview found.","id":"4695","runtime":84,"imdbId":"tt0102629","version":81,"lastModified":"1301926176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75b\/4bc91b1a017a3c57fe00a75b\/pappa-ante-portas-mid.jpg","studio":"Bavaria Film","genre":"Comedy","title":"Pappa ante Portas","releaseDate":667094400000,"language":"en","type":"Movie","_key":"23140"} +{"label":"Ortrud Beginnen","version":25,"id":"38992","lastModified":"1301901649000","name":"Ortrud Beginnen","type":"Person","_key":"23141"} +{"label":"Dagmar Biener","version":19,"id":"41692","lastModified":"1301901738000","name":"Dagmar Biener","type":"Person","_key":"23142"} +{"label":"Inge Wolffberg","version":20,"id":"26568","lastModified":"1301902109000","name":"Inge Wolffberg","type":"Person","_key":"23143"} +{"label":"H.H. M\u00fcller","version":19,"id":"36686","lastModified":"1301901899000","name":"H.H. M\u00fcller","type":"Person","_key":"23144"} +{"label":"Gerrit Schmidt-Fo\u00df","version":19,"id":"41693","lastModified":"1301902108000","name":"Gerrit Schmidt-Fo\u00df","type":"Person","_key":"23145"} +{"label":"Im Himmel ist die H\u00f6lle los","description":"No overview found.","id":"4700","runtime":82,"imdbId":"tt0089329","version":53,"lastModified":"1302008066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ec\/4d9b2bd15e73d647670009ec\/im-himmel-ist-die-h-lle-los-mid.jpg","studio":"ZDF","genre":"Comedy","title":"Im Himmel ist die H\u00f6lle los","releaseDate":468028800000,"language":"en","type":"Movie","_key":"23146"} +{"label":"Helmer von L\u00fctzelburg","version":21,"id":"38987","lastModified":"1301901738000","name":"Helmer von L\u00fctzelburg","type":"Person","_key":"23147"} +{"label":"Dirk Bach","version":25,"id":"38989","lastModified":"1301901651000","name":"Dirk Bach","type":"Person","_key":"23148"} +{"label":"Cleo Kretschmer","version":22,"id":"38990","lastModified":"1301901782000","name":"Cleo Kretschmer","type":"Person","_key":"23149"} +{"label":"Walter Bockmayer","version":24,"id":"38991","lastModified":"1301901618000","name":"Walter Bockmayer","type":"Person","_key":"23150"} +{"label":"Beate Hasenau","version":20,"id":"38993","lastModified":"1301901818000","name":"Beate Hasenau","type":"Person","_key":"23151"} +{"label":"Petra Wagner","version":20,"id":"38994","lastModified":"1301901818000","name":"Petra Wagner","type":"Person","_key":"23152"} +{"label":"Johanna K\u00f6nig","version":21,"id":"38995","lastModified":"1301901899000","name":"Johanna K\u00f6nig","type":"Person","_key":"23153"} +{"label":"Veronika von Quast","version":20,"id":"38996","lastModified":"1301901677000","name":"Veronika von Quast","type":"Person","_key":"23154"} +{"label":"Dagmar Stievermann","version":19,"id":"38997","lastModified":"1301901738000","name":"Dagmar Stievermann","type":"Person","_key":"23155"} +{"label":"A Tale of Two Cities","description":"British barrister Sydney Carton lives an insubstantial and unhappy life. He falls under the spell of Lucie Manette, but Lucie marries Charles Darnay. When Darnay goes to Paris to rescue an imprisoned family retainer, he becomes entangled in the snares of the brutal French Revolution and is himself jailed and condemned to the guillotine. But Sydney Carton, in love with a woman he cannot have, comes up with a daring plan to save her husband.","id":"4701","runtime":115,"imdbId":"tt0052270","version":78,"lastModified":"1301903714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4bc9d17c017a3c181c0000ab\/a-tale-of-two-cities-mid.jpg","studio":"Rank Organisation","genre":"Drama","title":"A Tale of Two Cities","releaseDate":-360115200000,"language":"en","type":"Movie","_key":"23156"} +{"label":"Dorothy Tutin","version":26,"id":"38998","lastModified":"1301901816000","name":"Dorothy Tutin","type":"Person","_key":"23157"} +{"label":"Stephen Murray","version":19,"id":"38999","lastModified":"1301901738000","name":"Stephen Murray","type":"Person","_key":"23158"} +{"label":"Athene Seyler","version":28,"id":"39000","lastModified":"1301901901000","name":"Athene Seyler","type":"Person","_key":"23159"} +{"label":"Rosalie Crutchley","version":21,"id":"39001","lastModified":"1301901899000","name":"Rosalie Crutchley","type":"Person","_key":"23160"} +{"label":"Freda Jackson","version":26,"id":"39002","lastModified":"1301901942000","name":"Freda Jackson","type":"Person","_key":"23161"} +{"label":"Ernest Clark","version":22,"id":"39003","lastModified":"1301901935000","name":"Ernest Clark","type":"Person","_key":"23162"} +{"label":"The Assassination of Trotsky","description":"After having been forced to leave the Soviet Union 1929 Trotsky has ended up in Mexico 1940. He is still busy with the politics. Stalin has sent out an assassin, Frank Jacson. Jacson befriends a young communist and gets an invitation to Trotsky's house.","id":"4702","runtime":103,"imdbId":"tt0068226","version":94,"lastModified":"1301904807000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e1\/4cabbaea5e73d64dd00000e1\/the-assassination-of-trotsky-mid.jpg","studio":"Dino de Laurentiis Cinematografica","genre":"Drama","title":"The Assassination of Trotsky","releaseDate":72576000000,"language":"en","type":"Movie","_key":"23163"} +{"label":"Luigi Vannucchi","version":21,"id":"39004","lastModified":"1301902010000","name":"Luigi Vannucchi","type":"Person","_key":"23164"} +{"label":"Simone Val\u00e8re","version":21,"id":"39005","lastModified":"1301902010000","name":"Simone Val\u00e8re","type":"Person","_key":"23165"} +{"label":"Peter Chatel","version":22,"id":"39006","lastModified":"1301902019000","name":"Peter Chatel","type":"Person","_key":"23166"} +{"label":"Carlos Miranda","version":21,"id":"39007","lastModified":"1301902033000","name":"Carlos Miranda","type":"Person","_key":"23167"} +{"label":"Claudio Brook","version":43,"id":"39008","lastModified":"1301901504000","name":"Claudio Brook","type":"Person","_key":"23168"} +{"label":"Joseph Losey","version":39,"id":"39009","lastModified":"1302031892000","name":"Joseph Losey","type":"Person","_key":"23169"} +{"label":"Daisy Miller","description":"In this comedy of manners, the American Winterbourne tries to figure out the bright and bubbly Daisy Miller, only to be helped and hindered by false judgments from their fellow friends.","id":"4703","runtime":91,"imdbId":"tt0071385","version":82,"lastModified":"1301908342000","studio":"Copa del Oro","genre":"Drama","title":"Daisy Miller","releaseDate":138412800000,"language":"en","type":"Movie","_key":"23170"} +{"label":"Peter Bogdanovich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/123\/4ceead595e73d65316000123\/peter-bogdanovich-profile.jpg","version":61,"id":"39012","lastModified":"1301901244000","name":"Peter Bogdanovich","type":"Person","_key":"23171"} +{"label":"Eileen Brennan","version":38,"id":"39015","lastModified":"1301901303000","name":"Eileen Brennan","type":"Person","_key":"23172"} +{"label":"James McMurtry","version":20,"id":"39016","lastModified":"1301902002000","name":"James McMurtry","type":"Person","_key":"23173"} +{"label":"Nicholas Jones","version":27,"id":"26121","lastModified":"1301902185000","name":"Nicholas Jones","type":"Person","_key":"23174"} +{"label":"George Morfogen","version":20,"id":"39017","lastModified":"1301902002000","name":"George Morfogen","type":"Person","_key":"23175"} +{"label":"At Long Last Love","description":"Bogdanovich tries to pay homage to the great Hollywood musicals of the 1930s. The film opened to scathing reviews and poor box office returns, prompting Bogdanovich to have an open letter of apology printed in newspapers throughout the U.S.","id":"4704","runtime":118,"imdbId":"tt0072665","version":83,"lastModified":"1301905544000","studio":"Copa del Oro","genre":"Drama","title":"At Long Last Love","releaseDate":162864000000,"language":"en","type":"Movie","_key":"23176"} +{"label":"L'infermiera","description":"No overview found.","id":"4705","runtime":90,"imdbId":"tt0074682","version":66,"lastModified":"1301904723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36c\/4c88c2c17b9aa1545c00036c\/l-infermiera-mid.jpg","studio":"Compagnia Cinematografica Champion","genre":"Comedy","title":"L'infermiera","releaseDate":304992000000,"language":"en","type":"Movie","_key":"23177"} +{"label":"Nello Rossati","version":20,"id":"39018","lastModified":"1301901967000","name":"Nello Rossati","type":"Person","_key":"23178"} +{"label":"Mario Pisu","version":25,"id":"39019","lastModified":"1301901578000","name":"Mario Pisu","type":"Person","_key":"23179"} +{"label":"Daniele Vargas","version":30,"id":"39020","lastModified":"1301901659000","name":"Daniele Vargas","type":"Person","_key":"23180"} +{"label":"Marina Confalone","version":18,"id":"39021","lastModified":"1301901672000","name":"Marina Confalone","type":"Person","_key":"23181"} +{"label":"The Lady Vanishes","description":"No overview found.","id":"4706","runtime":97,"imdbId":"tt0079428","version":78,"lastModified":"1301903463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3c\/4d123eae7b9aa1148e000a3c\/the-lady-vanishes-mid.jpg","studio":"Hammer Film Productions","genre":"Action","title":"The Lady Vanishes","releaseDate":283996800000,"language":"en","type":"Movie","_key":"23182"} +{"label":"Anthony Page","version":28,"id":"39022","lastModified":"1301902026000","name":"Anthony Page","type":"Person","_key":"23183"} +{"label":"Arthur Lowe","version":29,"id":"39024","lastModified":"1301901738000","name":"Arthur Lowe","type":"Person","_key":"23184"} +{"label":"Ian Carmichael","version":29,"id":"39025","lastModified":"1301901646000","name":"Ian Carmichael","type":"Person","_key":"23185"} +{"label":"Gerald Harper","version":22,"id":"39026","lastModified":"1301902002000","name":"Gerald Harper","type":"Person","_key":"23186"} +{"label":"Jenny Runacre","version":23,"id":"39027","lastModified":"1301901901000","name":"Jenny Runacre","type":"Person","_key":"23187"} +{"label":"Jean Anderson","version":25,"id":"39028","lastModified":"1301901563000","name":"Jean Anderson","type":"Person","_key":"23188"} +{"label":"Madlena Nedeva","version":20,"id":"39029","lastModified":"1301901899000","name":"Madlena Nedeva","type":"Person","_key":"23189"} +{"label":"Madge Ryan","version":20,"id":"39033","lastModified":"1301901899000","name":"Madge Ryan","type":"Person","_key":"23190"} +{"label":"Gary McDermott","version":20,"id":"39034","lastModified":"1301901899000","name":"Gary McDermott","type":"Person","_key":"23191"} +{"label":"Barbara Markham","version":20,"id":"39035","lastModified":"1301901898000","name":"Barbara Markham","type":"Person","_key":"23192"} +{"label":"Vladek Sheybal","version":27,"id":"39036","lastModified":"1301901644000","name":"Vladek Sheybal","type":"Person","_key":"23193"} +{"label":"Hurra, die Schule brennt!","description":"No overview found.","id":"4707","runtime":98,"imdbId":"tt0064458","version":48,"lastModified":"1301903872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/679\/4caa426c5e73d643ef000679\/hurra-die-schule-brennt-mid.jpg","studio":"Franz Seitz Filmproduktion","genre":"Comedy","title":"Hurra, die Schule brennt!","releaseDate":-1209600000,"language":"en","type":"Movie","_key":"23194"} +{"label":"Peter Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4d57e04f7b9aa16bc600205b\/peter-alexander-profile.jpg","version":27,"birthday":"-1372986000000","id":"39041","birthplace":"Vienna, Austria","lastModified":"1301901788000","name":"Peter Alexander","type":"Person","_key":"23195"} +{"label":"Heintje Simons","version":18,"id":"39042","lastModified":"1301901325000","name":"Heintje Simons","type":"Person","_key":"23196"} +{"label":"Gerlinde Locker","version":21,"id":"39043","lastModified":"1301901646000","name":"Gerlinde Locker","type":"Person","_key":"23197"} +{"label":"Werner Finck","version":21,"id":"39044","lastModified":"1301901646000","name":"Werner Finck","type":"Person","_key":"23198"} +{"label":"Ruth Stephan","version":35,"id":"39045","lastModified":"1301901497000","name":"Ruth Stephan","type":"Person","_key":"23199"} +{"label":"Hans Terofal","version":22,"id":"39046","lastModified":"1301901778000","name":"Hans Terofal","type":"Person","_key":"23200"} +{"label":"Carola H\u00f6hn","version":21,"id":"39047","lastModified":"1301901493000","name":"Carola H\u00f6hn","type":"Person","_key":"23201"} +{"label":"Hans Kraus","version":25,"id":"39048","lastModified":"1301901688000","name":"Hans Kraus","type":"Person","_key":"23202"} +{"label":"Alexander Golling","version":23,"id":"39051","lastModified":"1301904135000","name":"Alexander Golling","type":"Person","_key":"23203"} +{"label":"Is Paris Burning?","description":"The title is Adolf Hitler's question to his chief of staff Alfred Jodl on the eve of the liberation of Paris (August 25): the military governor of Paris, General Dietrich von Choltitz, had been ordered to destroy Paris rather than let it fall undamaged into the hands of the Allies, but von Choltitz disobeyed.The film follows historical events as U.S. General Dwight D. Eisenhower, head of the Allied invasion, refuses to divert troops to liberate Paris. His hand is forced by the French military le","id":"4708","runtime":175,"imdbId":"tt0060814","version":133,"lastModified":"1301904704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/096\/4ca3eca15e73d636fa000096\/paris-brule-t-il-mid.jpg","studio":"Marianne Productions","genre":"Drama","title":"Is Paris Burning?","releaseDate":-100483200000,"language":"en","type":"Movie","_key":"23204"} +{"label":"Skip Ward","version":25,"id":"39057","lastModified":"1301901999000","name":"Skip Ward","type":"Person","_key":"23205"} +{"label":"Maria Machado","version":20,"id":"39061","lastModified":"1301902029000","name":"Maria Machado","type":"Person","_key":"23206"} +{"label":"Michel Fugain","version":19,"id":"39062","lastModified":"1301901936000","name":"Michel Fugain","type":"Person","_key":"23207"} +{"label":"Germaine de France","version":19,"id":"39063","lastModified":"1301901936000","name":"Germaine de France","type":"Person","_key":"23208"} +{"label":"Billy Frick","version":19,"id":"39064","lastModified":"1301901936000","name":"Billy Frick","type":"Person","_key":"23209"} +{"label":"Holiday for Henrietta","description":"Two scriptwriters argue about the fate of Henrietta, a charming and gamine shopgirl. One favors a comical path for their heroine, who is overcome with sentimental love for a young photographer on Bastille Day. The other has a more thrilling and dastardly fate in mind for her. Among the film's irresistible conceits is Hildegarde Neff as an oversexed circus bareback rider.","id":"4709","runtime":118,"imdbId":"tt0048104","version":85,"lastModified":"1301906382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd3\/4d8f66ee5e73d65f0e001bd3\/la-f-te-henriette-mid.jpg","studio":"Filmsonor","genre":"Comedy","title":"Holiday for Henrietta","releaseDate":-537753600000,"language":"en","type":"Movie","_key":"23210"} +{"label":"Julien Duvivier","version":56,"id":"39058","lastModified":"1301901317000","name":"Julien Duvivier","type":"Person","_key":"23211"} +{"label":"Masculin f\u00e9minin","description":"The film stars French New Wave icon Jean-Pierre L\u00e9aud as Paul, a romantic young idealist and literary lion-wannabe who chases budding pop star, Madeleine (Chantal Goya, a real life Y\u00e9-y\u00e9 girl).","id":"4710","runtime":110,"imdbId":"tt0060675","version":176,"lastModified":"1302068223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ede\/4cfa61977b9aa15c8e000ede\/masculin-feminin-mid.jpg","studio":"Argos","genre":"Drama","title":"Masculin f\u00e9minin","releaseDate":-119318400000,"language":"en","type":"Movie","_key":"23212"} +{"label":"Michel Debord","version":23,"id":"39067","lastModified":"1301901233000","name":"Michel Debord","type":"Person","_key":"23213"} +{"label":"Catherine-Isabelle Duport","version":23,"id":"39068","lastModified":"1301901580000","name":"Catherine-Isabelle Duport","type":"Person","_key":"23214"} +{"label":"Ars\u00e8ne Lupin contre Ars\u00e8ne Lupin","description":"No overview found.","id":"4719","runtime":90,"imdbId":"tt0055759","version":50,"lastModified":"1301905648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/776\/4bc91b1c017a3c57fe00a776\/arsene-lupin-contre-arsene-lupin-mid.jpg","genre":"Comedy","title":"Ars\u00e8ne Lupin contre Ars\u00e8ne Lupin","releaseDate":-231465600000,"language":"en","type":"Movie","_key":"23215"} +{"label":"Genevi\u00e8ve Grad","version":41,"id":"39092","lastModified":"1301901447000","name":"Genevi\u00e8ve Grad","type":"Person","_key":"23216"} +{"label":"Daniel Cauchy","version":26,"id":"39093","lastModified":"1301901618000","name":"Daniel Cauchy","type":"Person","_key":"23217"} +{"label":"Fernand Fabre","version":20,"id":"39094","lastModified":"1301901818000","name":"Fernand Fabre","type":"Person","_key":"23218"} +{"label":"Andr\u00e9 Badin","version":21,"id":"39095","lastModified":"1301901846000","name":"Andr\u00e9 Badin","type":"Person","_key":"23219"} +{"label":"Jean-Marie Proslier","version":28,"id":"39096","lastModified":"1301901701000","name":"Jean-Marie Proslier","type":"Person","_key":"23220"} +{"label":"Hubert de Lapparent","version":20,"id":"39097","lastModified":"1301901708000","name":"Hubert de Lapparent","type":"Person","_key":"23221"} +{"label":"Henri Virlojeux","version":32,"id":"39098","lastModified":"1301901605000","name":"Henri Virlojeux","type":"Person","_key":"23222"} +{"label":"Body Snatchers","description":"A teenage girl and her father discover alien clones are replacing humans on a remote U.S. military base in Alabama.","id":"4722","runtime":87,"imdbId":"tt0106452","trailer":"http:\/\/www.youtube.com\/watch?v=okW2UfLNaJc","version":186,"lastModified":"1301903690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77f\/4bc91b1e017a3c57fe00a77f\/body-snatchers-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Body Snatchers","releaseDate":739584000000,"language":"en","tagline":"Imagine... you're gone and someone else is living inside your body.","type":"Movie","_key":"23223"} +{"label":"Abel Ferrara","version":54,"id":"39104","lastModified":"1301901198000","name":"Abel Ferrara","type":"Person","_key":"23224"} +{"label":"Christine Elise","version":25,"id":"39113","lastModified":"1301901637000","name":"Christine Elise","type":"Person","_key":"23225"} +{"label":"Kathleen Doyle","version":22,"id":"39114","lastModified":"1301901898000","name":"Kathleen Doyle","type":"Person","_key":"23226"} +{"label":"Reilly Murphy","version":22,"id":"39115","lastModified":"1301901898000","name":"Reilly Murphy","type":"Person","_key":"23227"} +{"label":"G. Elvis Phillips","version":22,"id":"39116","lastModified":"1301901898000","name":"G. Elvis Phillips","type":"Person","_key":"23228"} +{"label":"Meg Tilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ea\/4c9b66527b9aa122e10005ea\/meg-tilly-profile.jpg","version":37,"id":"39117","lastModified":"1301901427000","name":"Meg Tilly","type":"Person","_key":"23229"} +{"label":"Southland Tales","description":"Southland Tales is an ensemble piece set in the futuristic landscape of Los Angeles on July 4, 2008, as it stands on the brink of social, economic and environmental disaster.","id":"4723","runtime":160,"imdbId":"tt0405336","version":216,"lastModified":"1302045170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/790\/4bc91b20017a3c57fe00a790\/southland-tales-mid.jpg","studio":"Academy Films","genre":"Comedy","title":"Southland Tales","releaseDate":1148169600000,"language":"en","tagline":"Have a nice apocalypse.","type":"Movie","_key":"23230"} +{"label":"Will Sasso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cf\/4d059c835e73d621a30032cf\/will-sasso-profile.jpg","version":25,"id":"39125","lastModified":"1301901249000","name":"Will Sasso","type":"Person","_key":"23231"} +{"label":"Lisa K. Wyatt","version":20,"id":"39127","lastModified":"1301901388000","name":"Lisa K. Wyatt","type":"Person","_key":"23232"} +{"label":"Le Gendarme de Saint-Tropez","description":"The ambitious police officer Cruchot (Louis de Fun\u00e8s) is transferred to St. Tropez. He's struggling with crimes such as persistent nude swimming, but even more with his teenage daughter, who's trying to impress her rich friends by telling them her father was a millionaire and owned a yacht in the harbor.","id":"4727","runtime":89,"imdbId":"tt0058135","version":89,"lastModified":"1301902327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc91b26017a3c57fe00a7b7\/le-gendarme-de-st-tropez-mid.jpg","studio":"Franca Films","genre":"Comedy","title":"Le Gendarme de Saint-Tropez","releaseDate":-167616000000,"language":"en","type":"Movie","_key":"23233"} +{"label":"Jean Girault","version":109,"id":"39138","lastModified":"1301901409000","name":"Jean Girault","type":"Person","_key":"23234"} +{"label":"Michel Modo","version":44,"id":"39142","lastModified":"1301901280000","name":"Michel Modo","type":"Person","_key":"23235"} +{"label":"Guy Grosso","version":46,"id":"39143","lastModified":"1301901317000","name":"Guy Grosso","type":"Person","_key":"23236"} +{"label":"Patrice Laffont","version":24,"id":"39144","lastModified":"1301901687000","name":"Patrice Laffont","type":"Person","_key":"23237"} +{"label":"France Rumilly","version":33,"id":"39145","lastModified":"1301901402000","name":"France Rumilly","type":"Person","_key":"23238"} +{"label":"Jean-Pierre Bertrand","version":25,"id":"39146","lastModified":"1301901382000","name":"Jean-Pierre Bertrand","type":"Person","_key":"23239"} +{"label":"Giuseppe Porelli","version":22,"id":"39147","lastModified":"1301901618000","name":"Giuseppe Porelli","type":"Person","_key":"23240"} +{"label":"Maria Pac\u00f4me","version":27,"id":"39148","lastModified":"1301901715000","name":"Maria Pac\u00f4me","type":"Person","_key":"23241"} +{"label":"Nicole Vervil","version":25,"id":"39149","lastModified":"1301901477000","name":"Nicole Vervil","type":"Person","_key":"23242"} +{"label":"Le Gendarme \u00e0 New York","description":"The second installment of Gendarmes series, tells the story of Sergeant Cruchot (Louis De Funes), who, together with his faithful comrades, has been sent to the International Congress of Gendarmerie in N.Y.","id":"4728","runtime":95,"imdbId":"tt0060450","version":93,"lastModified":"1301902487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d0\/4bc91b28017a3c57fe00a7d0\/le-gendarme-a-new-york-mid.jpg","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Comedy","title":"Le Gendarme \u00e0 New York","releaseDate":-131760000000,"language":"en","type":"Movie","_key":"23243"} +{"label":"Alan Scott","version":24,"id":"39150","lastModified":"1301901634000","name":"Alan Scott","type":"Person","_key":"23244"} +{"label":"Marino Mas\u00e9","version":28,"id":"39151","lastModified":"1301901467000","name":"Marino Mas\u00e9","type":"Person","_key":"23245"} +{"label":"Le Gendarme se Marie","description":"The Saint-Tropez police launch a major offensive against dangerous drivers. Marechal Cruchot (Louis de Fun\u00e8s) relishes the assignment, which he pursues with a manic zeal. Cruchot is after an offending driver, who turns out to be Jos\u00e9pha (Claude Gensac), the widow of a highly regarded police colonel. When they meet, Cruchot falls instantly in love....","id":"4729","runtime":90,"imdbId":"tt0063005","version":94,"lastModified":"1301902663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f3\/4bc91b2f017a3c57fe00a7f3\/le-gendarme-se-marie-mid.jpg","studio":"Medusa Produzione","genre":"Comedy","title":"Le Gendarme se Marie","releaseDate":-41299200000,"language":"en","type":"Movie","_key":"23246"} +{"label":"Yves Vincent","version":21,"id":"39152","lastModified":"1301901618000","name":"Yves Vincent","type":"Person","_key":"23247"} +{"label":"OSS 117 prend des vacances","description":"No overview found.","id":"4730","runtime":90,"imdbId":"tt0064746","version":40,"lastModified":"1301906752000","studio":"Companhia Cinematogr\u00e1fica Vera Cruz","genre":"Action","title":"OSS 117 prend des vacances","releaseDate":2937600000,"language":"en","type":"Movie","_key":"23248"} +{"label":"Pierre Kalfon","version":20,"id":"39153","lastModified":"1301901818000","name":"Pierre Kalfon","type":"Person","_key":"23249"} +{"label":"Edwige Feuill\u00e8re","version":21,"id":"39156","lastModified":"1301901447000","name":"Edwige Feuill\u00e8re","type":"Person","_key":"23250"} +{"label":"Norma Bengell","version":27,"id":"39157","lastModified":"1301901842000","name":"Norma Bengell","type":"Person","_key":"23251"} +{"label":"S\u00e9rgio Hingst","version":20,"id":"39158","lastModified":"1301901827000","name":"S\u00e9rgio Hingst","type":"Person","_key":"23252"} +{"label":"Jorge Luis Costa","version":20,"id":"39159","lastModified":"1301901817000","name":"Jorge Luis Costa","type":"Person","_key":"23253"} +{"label":"Sandokan, la tigre di Mompracem","description":"No overview found.","id":"4731","runtime":90,"imdbId":"tt0057469","version":581,"lastModified":"1302038839000","studio":"Filmes S.A.","genre":"Adventure","title":"Sandokan, la tigre di Mompracem","releaseDate":-196646400000,"language":"en","type":"Movie","_key":"23254"} +{"label":"Steve Reeves","version":26,"id":"39162","lastModified":"1301901813000","name":"Steve Reeves","type":"Person","_key":"23255"} +{"label":"Andrea Bosic","version":22,"id":"39163","lastModified":"1301902002000","name":"Andrea Bosic","type":"Person","_key":"23256"} +{"label":"Mario Valdemarin","version":22,"id":"39164","lastModified":"1301901818000","name":"Mario Valdemarin","type":"Person","_key":"23257"} +{"label":"Enzo Fiermonte","version":24,"id":"39165","lastModified":"1301901791000","name":"Enzo Fiermonte","type":"Person","_key":"23258"} +{"label":"Maurice Poli","version":31,"id":"39166","lastModified":"1301901507000","name":"Maurice Poli","type":"Person","_key":"23259"} +{"label":"Captain Fracasse","description":"A ruined Baron Philippe de baron, meets one day a troupe of traveling actors led by Herod. Attracted by the one who plays the role of the ingenue: Isabella, and by the dynamism and enthusiasm of his companions, he takes the place of the deceased poet of the troupe. And during performances, Philippe became the captain Sunder. For his part, Isabelle loves Philip, but does not consider marriage, nobility him missing, she refuses to harm the career of Baron. And one day, the Duke of Vallombrosa, sed","id":"4732","runtime":108,"imdbId":"tt0053695","version":81,"lastModified":"1301903689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4d11af637b9aa1148e0006ec\/le-capitaine-fracasse-mid.jpg","studio":"Documento Films","genre":"Adventure","title":"Captain Fracasse","releaseDate":-274492800000,"language":"en","type":"Movie","_key":"23260"} +{"label":"Pierre Gaspard-Huit","version":27,"id":"39168","lastModified":"1301901567000","name":"Pierre Gaspard-Huit","type":"Person","_key":"23261"} +{"label":"Anna-Maria Ferrero","version":24,"id":"39172","lastModified":"1301902013000","name":"Anna-Maria Ferrero","type":"Person","_key":"23262"} +{"label":"Alain Saury","version":24,"id":"39176","lastModified":"1301901817000","name":"Alain Saury","type":"Person","_key":"23263"} +{"label":"Maurice Teynac","version":26,"id":"39177","lastModified":"1301901699000","name":"Maurice Teynac","type":"Person","_key":"23264"} +{"label":"Jo\u00eblle LaTour","version":24,"id":"39178","lastModified":"1301901790000","name":"Jo\u00eblle LaTour","type":"Person","_key":"23265"} +{"label":"Raoul Billerey","version":28,"id":"39179","lastModified":"1301901809000","name":"Raoul Billerey","type":"Person","_key":"23266"} +{"label":"The Gardener of Argenteuil","description":"Tulipe, is an old man who lives alone in an old railway carriage in the Argentueil region of Paris. His main passions are gardening and oil painting, but he also has a secret source of income. His godson discovers that Tulipe is actually a master forger, producing perfect copies of 10 franc notes. His godson\u2019s girlfriend sees this as an opportunity to get very rich \u2013 but she must persuade Tulipe to forge 500 franc notes. Assuming Tulipe\u2019s agreement, his godson and his girlfriend buy an expensiv","id":"4733","runtime":86,"imdbId":"tt0059328","version":51,"lastModified":"1301418662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4bc91b2f017a3c57fe00a7fc\/le-jardinier-d-argenteuil-mid.jpg","studio":"Films Vertried","genre":"Comedy","title":"The Gardener of Argenteuil","releaseDate":-102124800000,"language":"en","type":"Movie","_key":"23267"} +{"label":"Jean Tissier","version":23,"id":"39180","lastModified":"1301901738000","name":"Jean Tissier","type":"Person","_key":"23268"} +{"label":"Claude Nicot","version":22,"id":"39181","lastModified":"1301901658000","name":"Claude Nicot","type":"Person","_key":"23269"} +{"label":"Paulette Frantz","version":20,"id":"39182","lastModified":"1301901618000","name":"Paulette Frantz","type":"Person","_key":"23270"} +{"label":"Annie Savarin","version":20,"id":"39183","lastModified":"1301901618000","name":"Annie Savarin","type":"Person","_key":"23271"} +{"label":"Albert Michel","version":23,"id":"39184","lastModified":"1301901898000","name":"Albert Michel","type":"Person","_key":"23272"} +{"label":"Van Gogh","description":"No overview found.","id":"4734","runtime":158,"imdbId":"tt0103190","version":75,"lastModified":"1301904691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47e\/4d889c1c7b9aa1036b00047e\/van-gogh-mid.jpg","studio":"Centre National de la Cin\u00e9matographie","genre":"Drama","title":"Van Gogh","releaseDate":688780800000,"language":"en","type":"Movie","_key":"23273"} +{"label":"G\u00e9rard S\u00e9ty","version":22,"id":"39193","lastModified":"1301901790000","name":"G\u00e9rard S\u00e9ty","type":"Person","_key":"23274"} +{"label":"Corinne Bourdon","version":20,"id":"39194","lastModified":"1301901818000","name":"Corinne Bourdon","type":"Person","_key":"23275"} +{"label":"Elsa Zylberstein","version":37,"id":"39195","lastModified":"1301901567000","name":"Elsa Zylberstein","type":"Person","_key":"23276"} +{"label":"Leslie Azzoulai","version":20,"id":"39196","lastModified":"1301901818000","name":"Leslie Azzoulai","type":"Person","_key":"23277"} +{"label":"Jacques Vidal","version":20,"id":"39197","lastModified":"1301901790000","name":"Jacques Vidal","type":"Person","_key":"23278"} +{"label":"The Good and the Bad","description":"From 1935 to 1945, the happiness of a couple turns to sadness when their Traction Avant auto is used by the gang des Tractions Avant.","id":"4735","runtime":120,"imdbId":"tt0074231","version":79,"lastModified":"1301905284000","studio":"Les Films 13","genre":"Drama","title":"The Good and the Bad","releaseDate":191030400000,"language":"en","type":"Movie","_key":"23279"} +{"label":"Val\u00e9rie Lagrange","version":24,"id":"39199","lastModified":"1301901602000","name":"Val\u00e9rie Lagrange","type":"Person","_key":"23280"} +{"label":"L'Idiot","description":"No overview found.","id":"4736","runtime":101,"imdbId":"tt0038631","version":89,"lastModified":"1301908365000","studio":"Films Sacha Gordine","genre":"Drama","title":"L'Idiot","releaseDate":-743817600000,"language":"en","type":"Movie","_key":"23281"} +{"label":"Georges Lampin","version":21,"id":"39204","lastModified":"1302033211000","name":"Georges Lampin","type":"Person","_key":"23282"} +{"label":"G\u00e9rard Philipe","version":23,"id":"39208","lastModified":"1302041433000","name":"G\u00e9rard Philipe","type":"Person","_key":"23283"} +{"label":"Lucien Co\u00ebdel","version":20,"id":"39209","lastModified":"1301901791000","name":"Lucien Co\u00ebdel","type":"Person","_key":"23284"} +{"label":"Nathalie Nattier","version":22,"id":"39210","lastModified":"1301901819000","name":"Nathalie Nattier","type":"Person","_key":"23285"} +{"label":"Marguerite Moreno","version":20,"id":"39211","lastModified":"1301901582000","name":"Marguerite Moreno","type":"Person","_key":"23286"} +{"label":"Du bist nicht allein","description":"No overview found.","id":"4738","runtime":90,"imdbId":"tt1034388","version":74,"lastModified":"1301905283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/801\/4bc91b30017a3c57fe00a801\/du-bist-nicht-allein-mid.jpg","studio":"Rundfunk Berlin-Brandenburg","genre":"Comedy","title":"Du bist nicht allein","releaseDate":1177977600000,"language":"en","type":"Movie","_key":"23287"} +{"label":"Bernd B\u00f6hlich","version":21,"id":"38193","lastModified":"1301901539000","name":"Bernd B\u00f6hlich","type":"Person","_key":"23288"} +{"label":"Yekaterina Medvedeva","version":18,"id":"39246","lastModified":"1301901987000","name":"Yekaterina Medvedeva","type":"Person","_key":"23289"} +{"label":"Karoline Eichhorn","version":24,"id":"28395","lastModified":"1301901349000","name":"Karoline Eichhorn","type":"Person","_key":"23290"} +{"label":"Victor Choulman","version":20,"id":"39247","lastModified":"1301901618000","name":"Victor Choulman","type":"Person","_key":"23291"} +{"label":"Leon Kessler","version":19,"id":"39248","lastModified":"1301901737000","name":"Leon Kessler","type":"Person","_key":"23292"} +{"label":"Maria-Victoria Dragus","version":24,"id":"39249","lastModified":"1301901737000","name":"Maria-Victoria Dragus","type":"Person","_key":"23293"} +{"label":"Heinz Behrens","version":19,"id":"39250","lastModified":"1301901737000","name":"Heinz Behrens","type":"Person","_key":"23294"} +{"label":"Fritz Roth","version":21,"id":"35448","lastModified":"1301901898000","name":"Fritz Roth","type":"Person","_key":"23295"} +{"label":"Dominique Horwitz","version":26,"id":"39251","lastModified":"1301901243000","name":"Dominique Horwitz","type":"Person","_key":"23296"} +{"label":"Manfred Breitenstein","version":19,"id":"39252","lastModified":"1301901737000","name":"Manfred Breitenstein","type":"Person","_key":"23297"} +{"label":"Rapha\u00ebl ou le d\u00e9bauch\u00e9","description":"No overview found.","id":"4739","runtime":100,"imdbId":"tt0067652","version":53,"lastModified":"1301905283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/806\/4bc91b30017a3c57fe00a806\/raphael-ou-le-debauche-mid.jpg","studio":"Parc Films","genre":"Drama","title":"Rapha\u00ebl ou le d\u00e9bauch\u00e9","releaseDate":31536000000,"language":"en","type":"Movie","_key":"23298"} +{"label":"Jean Vilar","version":19,"id":"39235","lastModified":"1301901898000","name":"Jean Vilar","type":"Person","_key":"23299"} +{"label":"Isabelle De Fun\u00e8s","version":20,"id":"39236","lastModified":"1301901898000","name":"Isabelle De Fun\u00e8s","type":"Person","_key":"23300"} +{"label":"Yves Lefebvre","version":19,"id":"39238","lastModified":"1301901898000","name":"Yves Lefebvre","type":"Person","_key":"23301"} +{"label":"Jean-Pierre Bernard","version":25,"id":"39239","lastModified":"1301901618000","name":"Jean-Pierre Bernard","type":"Person","_key":"23302"} +{"label":"H\u00e9l\u00e8ne Ari\u00e9","version":20,"id":"39240","lastModified":"1301902002000","name":"H\u00e9l\u00e8ne Ari\u00e9","type":"Person","_key":"23303"} +{"label":"Ann Lewis","version":19,"id":"39241","lastModified":"1301901898000","name":"Ann Lewis","type":"Person","_key":"23304"} +{"label":"Maxime-Fabert","version":19,"id":"39242","lastModified":"1301901898000","name":"Maxime-Fabert","type":"Person","_key":"23305"} +{"label":"Michel Deville","version":25,"id":"39243","lastModified":"1301901496000","name":"Michel Deville","type":"Person","_key":"23306"} +{"label":"Appointment in Bray","description":"In 1917, the First World War is raging. Julien is from Luxemburg, so instead of having to go to war he studies piano in Paris. One day his friend Jacques, also a musician and now a fighter pilot on the front, invites him to spend a few days in his family's empty house in Bray. The housekeeper, a beautiful but mute woman lets Julien in, but his friend is late and he is obliged to wait. In the meantime, he starts reminiscing of the pre-war days spent with his friend and Jacques' girlfriend Odile.","id":"4746","runtime":90,"imdbId":"tt0067667","version":48,"lastModified":"1301907422000","studio":"Parc Films","genre":"Drama","title":"Appointment in Bray","releaseDate":45532800000,"language":"en","type":"Movie","_key":"23307"} +{"label":"Andr\u00e9 Delvaux","version":21,"id":"39271","lastModified":"1301901658000","name":"Andr\u00e9 Delvaux","type":"Person","_key":"23308"} +{"label":"Nathalie Granger","description":"No overview found.","id":"4747","runtime":83,"imdbId":"tt0068991","version":60,"lastModified":"1301907423000","studio":"Mouflet et Cie","genre":"Drama","title":"Nathalie Granger","releaseDate":87177600000,"language":"en","type":"Movie","_key":"23309"} +{"label":"Marguerite Duras","version":31,"id":"29905","lastModified":"1301901570000","name":"Marguerite Duras","type":"Person","_key":"23310"} +{"label":"Lucia Bos\u00e9","version":24,"id":"39274","lastModified":"1301901576000","name":"Lucia Bos\u00e9","type":"Person","_key":"23311"} +{"label":"Valerie Mascolo","version":20,"id":"39275","lastModified":"1301902004000","name":"Valerie Mascolo","type":"Person","_key":"23312"} +{"label":"Nathalie Bourgeois","version":20,"id":"39276","lastModified":"1301902003000","name":"Nathalie Bourgeois","type":"Person","_key":"23313"} +{"label":"Dionys Mascolo","version":20,"id":"39277","lastModified":"1301901965000","name":"Dionys Mascolo","type":"Person","_key":"23314"} +{"label":"\u00c7a va pas \u00eatre triste","description":"No overview found.","id":"4750","runtime":90,"imdbId":"tt0215386","version":40,"lastModified":"1301907422000","studio":"Le Goff Productions","genre":"Comedy","title":"\u00c7a va pas \u00eatre triste","releaseDate":413596800000,"language":"en","type":"Movie","_key":"23315"} +{"label":"Henry Courseaux","version":22,"id":"39283","lastModified":"1301901568000","name":"Henry Courseaux","type":"Person","_key":"23316"} +{"label":"Pierre Reggiani","version":20,"id":"39284","lastModified":"1301902031000","name":"Pierre Reggiani","type":"Person","_key":"23317"} +{"label":"Corinne Touzet","version":22,"id":"24576","lastModified":"1301901837000","name":"Corinne Touzet","type":"Person","_key":"23318"} +{"label":"Pierre Sisser","version":20,"id":"39285","lastModified":"1301901513000","name":"Pierre Sisser","type":"Person","_key":"23319"} +{"label":"The Lost Honor of Katharina Blum","description":"No overview found.","id":"4762","runtime":106,"imdbId":"tt0073858","version":103,"lastModified":"1302064076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/814\/4bc91b34017a3c57fe00a814\/die-verlorene-ehre-der-katharina-blum-mid.jpg","studio":"Bioskop-Film GmbH","genre":"Comedy","title":"The Lost Honor of Katharina Blum","releaseDate":182131200000,"language":"en","type":"Movie","_key":"23320"} +{"label":"Margarethe von Trotta","version":35,"id":"39298","lastModified":"1301901317000","name":"Margarethe von Trotta","type":"Person","_key":"23321"} +{"label":"Hannelore Hoger","version":28,"id":"39303","lastModified":"1301901656000","name":"Hannelore Hoger","type":"Person","_key":"23322"} +{"label":"Regine Lutz","version":21,"id":"39304","lastModified":"1301901737000","name":"Regine Lutz","type":"Person","_key":"23323"} +{"label":"Werner Eichhorn","version":20,"id":"39305","lastModified":"1301901618000","name":"Werner Eichhorn","type":"Person","_key":"23324"} +{"label":"Karl Heinz Vosgerau","version":19,"id":"39306","lastModified":"1301901672000","name":"Karl Heinz Vosgerau","type":"Person","_key":"23325"} +{"label":"Angelika Hillebrecht","version":20,"id":"39307","lastModified":"1301901898000","name":"Angelika Hillebrecht","type":"Person","_key":"23326"} +{"label":"Horatius H\u00e4berle","version":20,"id":"39308","lastModified":"1301901898000","name":"Horatius H\u00e4berle","type":"Person","_key":"23327"} +{"label":"Achim Strietzel","version":21,"id":"36253","lastModified":"1301901431000","name":"Achim Strietzel","type":"Person","_key":"23328"} +{"label":"L'horoscope","description":"No overview found.","id":"4764","runtime":90,"imdbId":"tt0077697","version":47,"lastModified":"1300978339000","studio":"Sofracima","genre":"Comedy","title":"L'horoscope","releaseDate":267235200000,"language":"en","type":"Movie","_key":"23329"} +{"label":"Claude Rollet","version":20,"id":"39329","lastModified":"1301901677000","name":"Claude Rollet","type":"Person","_key":"23330"} +{"label":"France Dougnac","version":21,"id":"39330","lastModified":"1301901512000","name":"France Dougnac","type":"Person","_key":"23331"} +{"label":"Alice Sapritch","version":31,"id":"39331","lastModified":"1301901655000","name":"Alice Sapritch","type":"Person","_key":"23332"} +{"label":"Henry Czarniak","version":23,"id":"39332","lastModified":"1301901768000","name":"Henry Czarniak","type":"Person","_key":"23333"} +{"label":"Sylvain Levignac","version":19,"id":"39333","lastModified":"1301901898000","name":"Sylvain Levignac","type":"Person","_key":"23334"} +{"label":"Catherine Boschel","version":19,"id":"39335","lastModified":"1301901898000","name":"Catherine Boschel","type":"Person","_key":"23335"} +{"label":"Mony-Rey","version":18,"id":"39336","lastModified":"1301901987000","name":"Mony-Rey","type":"Person","_key":"23336"} +{"label":"Yves Barsacq","version":26,"id":"39334","lastModified":"1301901449000","name":"Yves Barsacq","type":"Person","_key":"23337"} +{"label":"L'ibis rouge","description":"No overview found.","id":"4765","runtime":90,"imdbId":"tt0073142","version":50,"lastModified":"1301908342000","studio":"Les Films de l'Ep\u00e9e","genre":"Comedy","title":"L'ibis rouge","releaseDate":169862400000,"language":"en","type":"Movie","_key":"23338"} +{"label":"Karen Nielsen","version":20,"id":"39340","lastModified":"1301901898000","name":"Karen Nielsen","type":"Person","_key":"23339"} +{"label":"Maurice Vallier","version":21,"id":"39341","lastModified":"1301901497000","name":"Maurice Vallier","type":"Person","_key":"23340"} +{"label":"Fran\u00e7ois Bouchex","version":20,"id":"39342","lastModified":"1301902002000","name":"Fran\u00e7ois Bouchex","type":"Person","_key":"23341"} +{"label":"Jacques Fortunas","version":19,"id":"39343","lastModified":"1301901898000","name":"Jacques Fortunas","type":"Person","_key":"23342"} +{"label":"Michel Francini","version":19,"id":"39344","lastModified":"1301901898000","name":"Michel Francini","type":"Person","_key":"23343"} +{"label":"Antoine Mayor","version":19,"id":"39345","lastModified":"1301901898000","name":"Antoine Mayor","type":"Person","_key":"23344"} +{"label":"Barbara Val","version":19,"id":"39346","lastModified":"1301901898000","name":"Barbara Val","type":"Person","_key":"23345"} +{"label":"Rosine Young","version":19,"id":"39347","lastModified":"1301901898000","name":"Rosine Young","type":"Person","_key":"23346"} +{"label":"V\u00e9ronique V\u00e9gler","version":19,"id":"39348","lastModified":"1301901898000","name":"V\u00e9ronique V\u00e9gler","type":"Person","_key":"23347"} +{"label":"La Maison","description":"no overview","id":"4766","runtime":90,"imdbId":"tt0066042","version":72,"lastModified":"1301907422000","studio":"Renn Productions","genre":"Comedy","title":"La Maison","releaseDate":20476800000,"language":"en","type":"Movie","_key":"23348"} +{"label":"An\u00e9mone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4d713f0b5e73d63ca700000d\/an-mone-profile.jpg","version":34,"id":"39350","lastModified":"1301901498000","name":"An\u00e9mone","type":"Person","_key":"23349"} +{"label":"Here We Come","description":"The story of hip hip behind the iron curtain.","id":"4767","runtime":87,"imdbId":"tt1300240","trailer":"http:\/\/www.youtube.com\/watch?v=NQccUubmaNs","homepage":"http:\/\/www.herewecome.de\/","version":138,"lastModified":"1301908343000","studio":"Filmakademie Baden-W\u00fcrttemberg","genre":"Documentary","title":"Here We Come","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"23350"} +{"label":"Nico Raschick","version":21,"id":"39351","lastModified":"1301901582000","name":"Nico Raschick","type":"Person","_key":"23351"} +{"label":"Gone Baby Gone","description":"Two Boston area detectives investigate a little girl's kidnapping, which ultimately turns into a crisis both professionally and personally. Based on the Dennis Lehane novel.","id":"4771","runtime":115,"imdbId":"tt0452623","trailer":"http:\/\/www.youtube.com\/watch?v=f99Ep0koG84","homepage":"http:\/\/www.gonebabygone-themovie.com\/","version":200,"lastModified":"1301901562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/837\/4bc91b38017a3c57fe00a837\/gone-baby-gone-mid.jpg","studio":"Miramax Films","genre":"Crime","title":"Gone Baby Gone","releaseDate":1188950400000,"language":"en","tagline":"Everyone Wants The Truth... Until They Find It.","type":"Movie","_key":"23352"} +{"label":"Titus Welliver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/759\/4d28c3215e73d626b0002759\/titus-welliver-profile.jpg","version":58,"id":"39389","lastModified":"1301901208000","name":"Titus Welliver","type":"Person","_key":"23353"} +{"label":"Michael K. Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4c2a64245e73d63998000018\/michael-k-williams-profile.jpg","version":41,"id":"39390","lastModified":"1301901524000","name":"Michael K. Williams","type":"Person","_key":"23354"} +{"label":"Edi Gathegi","version":48,"id":"39391","lastModified":"1301901205000","name":"Edi Gathegi","type":"Person","_key":"23355"} +{"label":"Madeline O'Brien","version":24,"id":"86233","lastModified":"1301902179000","name":"Madeline O'Brien","type":"Person","_key":"23356"} +{"label":"Cul-de-sac","description":"A wounded criminal and his dying partner take refuge at a beachfront castle. The owners of the castle, a meek Englishman and his willful French wife, are initially the unwilling hosts to the criminals. Quickly, however, the relationships between the criminal, the wife, and the Englishman begin to shift in humorous and bizarre fashion. Written by Sean Taylor ","id":"4772","runtime":113,"imdbId":"tt0060268","version":280,"lastModified":"1301904629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/845\/4bc91b3c017a3c57fe00a845\/cul-de-sac-mid.jpg","studio":"Compton Films","genre":"Comedy","title":"Cul-de-sac","releaseDate":-123552000000,"language":"en","type":"Movie","_key":"23357"} +{"label":"Geoffrey Sumner","version":19,"id":"39392","lastModified":"1301901898000","name":"Geoffrey Sumner","type":"Person","_key":"23358"} +{"label":"Renee Houston","version":29,"id":"39393","lastModified":"1302031788000","name":"Renee Houston","type":"Person","_key":"23359"} +{"label":"Robert Dorning","version":20,"id":"39394","lastModified":"1301902002000","name":"Robert Dorning","type":"Person","_key":"23360"} +{"label":"Trevor Delaney","version":19,"id":"39395","lastModified":"1301901898000","name":"Trevor Delaney","type":"Person","_key":"23361"} +{"label":"Obsession","description":"New Orleans businessman Michael Courtland\u2019s life is shattered when his wife and daughter are tragically killed in a botched kidnap rescue attempt. Many years later whilst visiting Italy he meets and falls in in love with Sandra Portinari, who bears a striking resemblance to his wife.","id":"4780","runtime":98,"imdbId":"tt0074991","trailer":"http:\/\/www.youtube.com\/watch?v=QCAt6E4wBEk","version":138,"lastModified":"1301908040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/125\/4bf92566017a3c702b000125\/obsession-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Obsession","releaseDate":207705600000,"language":"en","type":"Movie","_key":"23362"} +{"label":"Sylvia Kuumba Williams","version":20,"id":"39426","lastModified":"1301901898000","name":"Sylvia Kuumba Williams","type":"Person","_key":"23363"} +{"label":"Wanda Blackman","version":20,"id":"39427","lastModified":"1301901898000","name":"Wanda Blackman","type":"Person","_key":"23364"} +{"label":"Stanley J. Reyes","version":20,"id":"39428","lastModified":"1301901898000","name":"Stanley J. Reyes","type":"Person","_key":"23365"} +{"label":"Nick Kreiger","version":20,"id":"39429","lastModified":"1301901737000","name":"Nick Kreiger","type":"Person","_key":"23366"} +{"label":"Don Hood","version":22,"id":"39430","lastModified":"1301901850000","name":"Don Hood","type":"Person","_key":"23367"} +{"label":"Andrea Esterhazy","version":20,"id":"39431","lastModified":"1301901898000","name":"Andrea Esterhazy","type":"Person","_key":"23368"} +{"label":"Tom Felleghy","version":38,"id":"39432","lastModified":"1301901570000","name":"Tom Felleghy","type":"Person","_key":"23369"} +{"label":"Nella Simoncini Barbieri","version":20,"id":"39433","lastModified":"1301901898000","name":"Nella Simoncini Barbieri","type":"Person","_key":"23370"} +{"label":"La guerre est finie","description":"No overview found.","id":"4781","runtime":121,"imdbId":"tt0060481","version":106,"lastModified":"1301908342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/852\/4bc91b3d017a3c57fe00a852\/la-guerre-est-finie-mid.jpg","studio":"Sofracima","genre":"Drama","title":"La guerre est finie","releaseDate":-114998400000,"language":"en","type":"Movie","_key":"23371"} +{"label":"Dominique Rozan","version":28,"id":"39436","lastModified":"1301901802000","name":"Dominique Rozan","type":"Person","_key":"23372"} +{"label":"Roland Monod","version":24,"id":"39438","lastModified":"1301901400000","name":"Roland Monod","type":"Person","_key":"23373"} +{"label":"Pierre Decazes","version":20,"id":"39439","lastModified":"1301901898000","name":"Pierre Decazes","type":"Person","_key":"23374"} +{"label":"Antoine Vitez","version":27,"id":"39440","lastModified":"1301902012000","name":"Antoine Vitez","type":"Person","_key":"23375"} +{"label":"Yvette Eti\u00e9vant","version":28,"id":"39441","lastModified":"1301901657000","name":"Yvette Eti\u00e9vant","type":"Person","_key":"23376"} +{"label":"Annie Fargue","version":20,"id":"39442","lastModified":"1301901898000","name":"Annie Fargue","type":"Person","_key":"23377"} +{"label":"Pierre Leproux","version":20,"id":"39444","lastModified":"1301901898000","name":"Pierre Leproux","type":"Person","_key":"23378"} +{"label":"Catherine de Seynes","version":22,"id":"39445","lastModified":"1301901790000","name":"Catherine de Seynes","type":"Person","_key":"23379"} +{"label":"Heart of Darkness","description":"No overview found.","id":"4782","runtime":100,"imdbId":"tt0110002","version":77,"lastModified":"1301416894000","studio":"Chris\/Rose Productions","genre":"Drama","title":"Heart of Darkness","releaseDate":763516800000,"language":"en","type":"Movie","_key":"23380"} +{"label":"Morten Faldaas","version":20,"id":"39447","lastModified":"1301902002000","name":"Morten Faldaas","type":"Person","_key":"23381"} +{"label":"Alan Scarfe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/488\/4d72a1237b9aa17756000488\/alan-scarfe-profile.jpg","version":31,"id":"26075","lastModified":"1301901965000","name":"Alan Scarfe","type":"Person","_key":"23382"} +{"label":"Quand la ville s'\u00e9veille","description":"No overview found.","id":"4785","runtime":90,"imdbId":"tt0285960","version":43,"lastModified":"1301906751000","studio":"Les Productions Belles Rives","genre":"Crime","title":"Quand la ville s'\u00e9veille","releaseDate":171158400000,"language":"en","type":"Movie","_key":"23383"} +{"label":"Pierre Grasset","version":26,"id":"39449","lastModified":"1301901658000","name":"Pierre Grasset","type":"Person","_key":"23384"} +{"label":"Rudo y Cursi","description":"Two brothers living a hard life of manual labor in rural Mexico have a simple dream: saving enough money to build their mother her dream house. But fate has other plans. A friendly game of soccer leads to first Rudo, then to Cursi being taken on by the nation\u2019s top talent scout. Suddenly, they find themselves living the high life of star athletes: fame, fortune, fast cars and beautiful women.","id":"4786","runtime":102,"imdbId":"tt0405393","version":208,"lastModified":"1302039224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85b\/4bc91b3e017a3c57fe00a85b\/rudo-y-cursi-mid.jpg","studio":"Canana Films","genre":"Comedy","title":"Rudo y Cursi","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"23385"} +{"label":"Carlos Cuar\u00f3n","version":24,"id":"12529","lastModified":"1301901658000","name":"Carlos Cuar\u00f3n","type":"Person","_key":"23386"} +{"label":"Jessica Mas","version":20,"id":"39457","lastModified":"1301901841000","name":"Jessica Mas","type":"Person","_key":"23387"} +{"label":"Armando Hern\u00e1ndez","version":25,"id":"39458","lastModified":"1301916409000","name":"Armando Hern\u00e1ndez","type":"Person","_key":"23388"} +{"label":"Iv\u00e1n Esquivel","version":16,"id":"63988","lastModified":"1301902197000","name":"Iv\u00e1n Esquivel","type":"Person","_key":"23389"} +{"label":"Cassandra's Dream","description":"The tale of two brothers with serious financial woes. When a third party proposes they turn to crime, things go bad and the two become enemies.","id":"4787","runtime":108,"imdbId":"tt0795493","trailer":"http:\/\/www.youtube.com\/watch?v=275","homepage":"http:\/\/www.cassandrasdreammovie.com\/","version":194,"lastModified":"1301902690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86c\/4bc91b41017a3c57fe00a86c\/cassandra-s-dream-mid.jpg","studio":"Iberville Productions","genre":"Crime","title":"Cassandra's Dream","releaseDate":1182124800000,"language":"en","type":"Movie","_key":"23390"} +{"label":"Hayley Atwell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4cacfc7d5e73d6503c0000b1\/hayley-atwell-profile.jpg","version":30,"id":"39459","lastModified":"1301901302000","name":"Hayley Atwell","type":"Person","_key":"23391"} +{"label":"Sally Hawkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4c8561b17b9aa15332000021\/sally-hawkins-profile.jpg","version":55,"birthday":"199407600000","id":"39658","birthplace":"London, England, UK","lastModified":"1302010797000","name":"Sally Hawkins","type":"Person","_key":"23392"} +{"label":"John Benfield","version":27,"id":"42642","lastModified":"1301901657000","name":"John Benfield","type":"Person","_key":"23393"} +{"label":"Blood in the Streets","description":"A modern thriller with shades of Spaghetti westerns and \"Dirty Harry\".","id":"4788","runtime":110,"imdbId":"tt0073626","trailer":"http:\/\/www.youtube.com\/watch?v=7HAFH9yl9Sc","version":77,"lastModified":"1301906659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4c2a00ef7b9aa1446a000491\/revolver-mid.jpg","studio":"Dieter Geissler Filmproduktion","genre":"Action","title":"Blood in the Streets","releaseDate":117936000000,"language":"en","tagline":"The last battle between crime and the law in every major city in the world.","type":"Movie","_key":"23394"} +{"label":"Marc Mazza","version":21,"id":"39461","lastModified":"1301901839000","name":"Marc Mazza","type":"Person","_key":"23395"} +{"label":"Gunnar Warner","version":21,"id":"39462","lastModified":"1301901681000","name":"Gunnar Warner","type":"Person","_key":"23396"} +{"label":"Sergio Sollima","version":29,"id":"39463","lastModified":"1301901493000","name":"Sergio Sollima","type":"Person","_key":"23397"} +{"label":"Il Giardino dei Finzi Contini","description":"In the late 1930s, in Ferrara, Italy, the Finzi-Contini are one of the leading families, wealthy, aristocratic, urbane; they are also Jewish. Their adult children, Micol and Alberto, gather a circle of friends for constant rounds of tennis and parties at their villa with its lovely grounds, keeping the rest of the world at bay. Into the circle steps Giorgio, a Jew from the middle class who falls i","id":"4789","runtime":95,"imdbId":"tt0065777","version":48,"lastModified":"1301904683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/879\/4bc91b43017a3c57fe00a879\/il-giardino-dei-finzi-contini-mid.jpg","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Il Giardino dei Finzi Contini","releaseDate":28944000000,"language":"en","type":"Movie","_key":"23398"} +{"label":"Lino Capolicchio","version":21,"id":"39467","lastModified":"1301901539000","name":"Lino Capolicchio","type":"Person","_key":"23399"} +{"label":"Barbara Pilavin","version":20,"id":"39468","lastModified":"1301901529000","name":"Barbara Pilavin","type":"Person","_key":"23400"} +{"label":"Camillo Cesarei","version":19,"id":"39469","lastModified":"1301901737000","name":"Camillo Cesarei","type":"Person","_key":"23401"} +{"label":"Katina Morisani","version":19,"id":"39470","lastModified":"1301901737000","name":"Katina Morisani","type":"Person","_key":"23402"} +{"label":"The Nada Gang","description":"Nada is a small leftwing terrorist group made up of six people from very different backgrounds. Diaz, the most militant of the group, plans to kidnap the American ambassador Richard Poindexter, in a bid to draw attention to their cause. One of the group, Treuffais, a timid philosophy teacher, will have no part in this and walks away. His five comrades succeed in spiriting Poindexter away to a remote farmhouse. Unfortunately for them, the police chief who is assigned to the case sees the eliminat","id":"4790","runtime":132,"imdbId":"tt0071890","version":93,"lastModified":"1301907423000","studio":"Les Films de la Bo\u00e9tie","genre":"Drama","title":"The Nada Gang","releaseDate":133056000000,"language":"en","type":"Movie","_key":"23403"} +{"label":"Viviane Romance","version":22,"id":"39471","lastModified":"1301902011000","name":"Viviane Romance","type":"Person","_key":"23404"} +{"label":"Henri Poirier","version":23,"id":"39472","lastModified":"1301901403000","name":"Henri Poirier","type":"Person","_key":"23405"} +{"label":"Jacques Rocchesani","version":21,"id":"39473","lastModified":"1301901965000","name":"Jacques Rocchesani","type":"Person","_key":"23406"} +{"label":"I Guappi","description":"No overview found.","id":"4791","runtime":130,"imdbId":"tt0070139","version":42,"lastModified":"1301905340000","studio":"Documento Film","genre":"Crime","title":"I Guappi","releaseDate":106790400000,"language":"en","type":"Movie","_key":"23407"} +{"label":"Pasquale Squitieri","version":21,"id":"39474","lastModified":"1301901790000","name":"Pasquale Squitieri","type":"Person","_key":"23408"} +{"label":"Lina Polito","version":20,"id":"39476","lastModified":"1301901965000","name":"Lina Polito","type":"Person","_key":"23409"} +{"label":"Le tueur","description":"No overview found.","id":"4792","runtime":87,"imdbId":"tt0069419","version":63,"lastModified":"1301417559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/886\/4bc91b43017a3c57fe00a886\/le-tueur-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Le tueur","releaseDate":68256000000,"language":"en","type":"Movie","_key":"23410"} +{"label":"Je t'aime, je t'aime","description":"Recovering from an attempted suicide, a man is selected to participate in a time travel experiment that has only been tested on mice. A malfunction in the experiment causes the man to experience moments from his past in a random order.","id":"4798","runtime":94,"imdbId":"tt0063152","version":77,"lastModified":"1301905825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4c8d45527b9aa167440002a1\/je-t-aime-je-t-aime-mid.jpg","studio":"Parc Films","genre":"Science Fiction","title":"Je t'aime, je t'aime","releaseDate":-53136000000,"language":"en","type":"Movie","_key":"23411"} +{"label":"Olga Georges-Picot","version":28,"id":"39491","lastModified":"1301904135000","name":"Olga Georges-Picot","type":"Person","_key":"23412"} +{"label":"Ir\u00e8ne Tunc","version":20,"id":"39492","lastModified":"1301901817000","name":"Ir\u00e8ne Tunc","type":"Person","_key":"23413"} +{"label":"Alain MacMoy","version":18,"id":"39493","lastModified":"1301901814000","name":"Alain MacMoy","type":"Person","_key":"23414"} +{"label":"Un grand patron","description":"No overview found.","id":"4799","runtime":95,"imdbId":"tt0158299","version":52,"lastModified":"1301905715000","studio":"\u00c9clair-Journal","genre":"Drama","title":"Un grand patron","releaseDate":-571017600000,"language":"en","type":"Movie","_key":"23415"} +{"label":"Yves Ciampi","version":21,"id":"39494","lastModified":"1301901790000","name":"Yves Ciampi","type":"Person","_key":"23416"} +{"label":"Ren\u00e9e Devillers","version":20,"id":"39497","lastModified":"1301901965000","name":"Ren\u00e9e Devillers","type":"Person","_key":"23417"} +{"label":"Pierre Destailles","version":20,"id":"39498","lastModified":"1301901583000","name":"Pierre Destailles","type":"Person","_key":"23418"} +{"label":"Michel Vadet","version":20,"id":"39499","lastModified":"1301901965000","name":"Michel Vadet","type":"Person","_key":"23419"} +{"label":"Christiane Barry","version":20,"id":"39500","lastModified":"1301901965000","name":"Christiane Barry","type":"Person","_key":"23420"} +{"label":"Jean-Claude Pascal","version":22,"id":"39501","lastModified":"1301901790000","name":"Jean-Claude Pascal","type":"Person","_key":"23421"} +{"label":"Charles et Lucie","description":"No overview found.","id":"4800","runtime":90,"imdbId":"tt0078954","version":43,"lastModified":"1301907422000","studio":"Cyth\u00e8re Films","genre":"Comedy","title":"Charles et Lucie","releaseDate":305337600000,"language":"en","type":"Movie","_key":"23422"} +{"label":"Nelly Kaplan","version":22,"id":"39502","lastModified":"1301901790000","name":"Nelly Kaplan","type":"Person","_key":"23423"} +{"label":"Marcel Gassouk","version":20,"id":"39506","lastModified":"1301901818000","name":"Marcel Gassouk","type":"Person","_key":"23424"} +{"label":"Henri Tisot","version":20,"id":"39507","lastModified":"1301901818000","name":"Henri Tisot","type":"Person","_key":"23425"} +{"label":"Das Netz","description":"No overview found.","id":"4805","runtime":121,"imdbId":"tt0434231","homepage":"http:\/\/www.t-h-e-n-e-t.com","version":85,"lastModified":"1301906634000","genre":"Documentary","title":"Das Netz","releaseDate":1064966400000,"language":"en","type":"Movie","_key":"23426"} +{"label":"Lutz Dammbeck","version":21,"id":"39528","lastModified":"1301901737000","name":"Lutz Dammbeck","type":"Person","_key":"23427"} +{"label":"Heinz von Foerster","version":17,"id":"39542","lastModified":"1301901539000","name":"Heinz von Foerster","type":"Person","_key":"23428"} +{"label":"John Brockman","version":22,"id":"39543","lastModified":"1301901511000","name":"John Brockman","type":"Person","_key":"23429"} +{"label":"Stewart Brand","version":19,"id":"39544","lastModified":"1301901737000","name":"Stewart Brand","type":"Person","_key":"23430"} +{"label":"Robert Taylor","version":22,"id":"39545","lastModified":"1301901840000","name":"Robert Taylor","type":"Person","_key":"23431"} +{"label":"Butch Gehring","version":19,"id":"39546","lastModified":"1301901737000","name":"Butch Gehring","type":"Person","_key":"23432"} +{"label":"Chris Waits","version":19,"id":"39547","lastModified":"1301901737000","name":"Chris Waits","type":"Person","_key":"23433"} +{"label":"David Gelernter","version":19,"id":"39548","lastModified":"1301901737000","name":"David Gelernter","type":"Person","_key":"23434"} +{"label":"Runaway Bride","description":"Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.","id":"4806","runtime":122,"imdbId":"tt0163187","version":163,"lastModified":"1301902994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/362\/4c7826085e73d60416000362\/runaway-bride-mid.jpg","studio":"Lakeshore Entertainment","genre":"Comedy","title":"Runaway Bride","releaseDate":932860800000,"language":"en","type":"Movie","_key":"23435"} +{"label":"Son of Sinbad","description":"Legendary pirate and adventurer Sinbad is in single-minded pursuit of two things: beautiful women and a substance called Greek Fire--an early version of gunpowder.","id":"4807","runtime":91,"imdbId":"tt0048642","version":62,"lastModified":"1301905648000","studio":"RKO Radio Pictures","genre":"Adventure","title":"Son of Sinbad","releaseDate":-460252800000,"language":"en","type":"Movie","_key":"23436"} +{"label":"Dale Robertson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4c49b0bc7b9aa115fd000073\/dale-robertson-profile.jpg","version":21,"id":"39549","lastModified":"1301901900000","name":"Dale Robertson","type":"Person","_key":"23437"} +{"label":"Lili St. Cyr","version":18,"id":"39551","lastModified":"1301901681000","name":"Lili St. Cyr","type":"Person","_key":"23438"} +{"label":"Mari Blanchard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26e\/4c054735017a3c29a600026e\/mari-blanchard-profile.jpg","version":25,"id":"39552","lastModified":"1301901641000","name":"Mari Blanchard","type":"Person","_key":"23439"} +{"label":"Pat Sheehan","version":22,"id":"34577","lastModified":"1301901790000","name":"Pat Sheehan","type":"Person","_key":"23440"} +{"label":"Kalantan","version":19,"id":"39553","lastModified":"1301901618000","name":"Kalantan","type":"Person","_key":"23441"} +{"label":"Sally Forrest","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21a\/4cac90957b9aa1152c00021a\/sally-forrest-profile.jpg","version":26,"id":"84232","lastModified":"1301901471000","name":"Sally Forrest","type":"Person","_key":"23442"} +{"label":"Ted Tetzlaff","version":33,"id":"4346","lastModified":"1301901229000","name":"Ted Tetzlaff","type":"Person","_key":"23443"} +{"label":"Charade","description":"Romance and suspense in Paris, as a woman is pursued by several men who want a fortune her murdered husband had stolen. Who can she trust?","id":"4808","runtime":113,"imdbId":"tt0056923","trailer":"http:\/\/www.youtube.com\/watch?v=0tru1XXI63U","version":184,"lastModified":"1301903099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4d7bb1c75e73d65ec10012a7\/charade-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Charade","releaseDate":-191721600000,"language":"en","type":"Movie","_key":"23444"} +{"label":"Marc Maurette","version":22,"id":"41713","lastModified":"1301901676000","name":"Marc Maurette","type":"Person","_key":"23445"} +{"label":"Dominique Minot","version":22,"id":"41714","lastModified":"1301902001000","name":"Dominique Minot","type":"Person","_key":"23446"} +{"label":"Paul Bonifas","version":22,"id":"41716","lastModified":"1301902021000","name":"Paul Bonifas","type":"Person","_key":"23447"} +{"label":"Thomas Chelimsky","version":22,"id":"41717","lastModified":"1301901840000","name":"Thomas Chelimsky","type":"Person","_key":"23448"} +{"label":"Good Morning Miss Dove","description":"No overview found.","id":"4809","runtime":107,"imdbId":"tt0048130","version":74,"lastModified":"1301907423000","studio":"Twentieth Century Fox Film Corporation","genre":"Drama","title":"Good Morning Miss Dove","releaseDate":-445219200000,"language":"en","type":"Movie","_key":"23449"} +{"label":"Jennifer Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09b\/4ca680ad5e73d643ef00009b\/jennifer-jones-profile.jpg","version":47,"id":"39554","lastModified":"1301901525000","name":"Jennifer Jones","type":"Person","_key":"23450"} +{"label":"Kipp Hamilton","version":24,"id":"39555","lastModified":"1301901447000","name":"Kipp Hamilton","type":"Person","_key":"23451"} +{"label":"Biff Elliot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f4\/4bdaf102017a3c5d8d0000f4\/biff-elliot-profile.jpg","version":26,"id":"41719","lastModified":"1301901817000","name":"Biff Elliot","type":"Person","_key":"23452"} +{"label":"Jerry Paris","version":42,"id":"41720","lastModified":"1301901498000","name":"Jerry Paris","type":"Person","_key":"23453"} +{"label":"Henry Koster","version":40,"id":"33064","lastModified":"1301901508000","name":"Henry Koster","type":"Person","_key":"23454"} +{"label":"Z\u00e4rtliche Chaoten","description":"No overview found.","id":"4813","runtime":93,"imdbId":"tt0094395","version":62,"lastModified":"1301905283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07b\/4cacf5385e73d6503b00007b\/zartliche-chaoten-mid.jpg","studio":"K. S. Film Karl Spiehs","genre":"Comedy","title":"Z\u00e4rtliche Chaoten","releaseDate":556416000000,"language":"en","type":"Movie","_key":"23455"} +{"label":"Franz Josef Gottlieb","version":30,"id":"39557","lastModified":"1301901286000","name":"Franz Josef Gottlieb","type":"Person","_key":"23456"} +{"label":"Jean-Marie Pfaff","version":19,"id":"39567","lastModified":"1301901898000","name":"Jean-Marie Pfaff","type":"Person","_key":"23457"} +{"label":"Dey Young","version":31,"id":"39568","lastModified":"1301901376000","name":"Dey Young","type":"Person","_key":"23458"} +{"label":"Ernst H. Hilbich","version":23,"id":"36509","lastModified":"1301901676000","name":"Ernst H. Hilbich","type":"Person","_key":"23459"} +{"label":"Z\u00e4rtliche Chaoten II","description":"No overview found.","id":"4814","runtime":94,"imdbId":"tt0096514","version":62,"lastModified":"1301904958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a6\/4bc91b47017a3c57fe00a8a6\/zartliche-chaoten-ii-mid.jpg","studio":"K. S. Film Karl Spiehs","genre":"Comedy","title":"Z\u00e4rtliche Chaoten II","releaseDate":583632000000,"language":"en","type":"Movie","_key":"23460"} +{"label":"Holm Dressler","version":20,"id":"39570","lastModified":"1301901677000","name":"Holm Dressler","type":"Person","_key":"23461"} +{"label":"Deborah Shelton","version":32,"id":"39574","lastModified":"1301901559000","name":"Deborah Shelton","type":"Person","_key":"23462"} +{"label":"Jango Edwards","version":19,"id":"39576","lastModified":"1301901618000","name":"Jango Edwards","type":"Person","_key":"23463"} +{"label":"Janis Kiriakidis","version":19,"id":"39088","lastModified":"1301901898000","name":"Janis Kiriakidis","type":"Person","_key":"23464"} +{"label":"Margit Geissler","version":18,"id":"39577","lastModified":"1301901677000","name":"Margit Geissler","type":"Person","_key":"23465"} +{"label":"Gerhard Zemann","version":19,"id":"39263","lastModified":"1301901539000","name":"Gerhard Zemann","type":"Person","_key":"23466"} +{"label":"Jochen Busse","version":26,"id":"39280","lastModified":"1301901440000","name":"Jochen Busse","type":"Person","_key":"23467"} +{"label":"Antonio Geissler","version":19,"id":"39578","lastModified":"1301901898000","name":"Antonio Geissler","type":"Person","_key":"23468"} +{"label":"Sch\u00f6n war die Zeit","description":"No overview found.","id":"4815","runtime":109,"imdbId":"tt0096058","version":57,"lastModified":"1301908342000","studio":"S\u00fcddeutscher Rundfunk","genre":"Comedy","title":"Sch\u00f6n war die Zeit","releaseDate":567993600000,"language":"en","type":"Movie","_key":"23469"} +{"label":"Klaus Gietinger","version":21,"id":"39579","lastModified":"1301901737000","name":"Klaus Gietinger","type":"Person","_key":"23470"} +{"label":"Leo Hiemer","version":19,"id":"39580","lastModified":"1301901898000","name":"Leo Hiemer","type":"Person","_key":"23471"} +{"label":"Joachim Bernhard","version":19,"id":"39325","lastModified":"1301901737000","name":"Joachim Bernhard","type":"Person","_key":"23472"} +{"label":"Ewa Blaszczyk","version":19,"id":"39583","lastModified":"1301901737000","name":"Ewa Blaszczyk","type":"Person","_key":"23473"} +{"label":"Gabi Braun","version":19,"id":"39584","lastModified":"1301901618000","name":"Gabi Braun","type":"Person","_key":"23474"} +{"label":"Christian Hoening","version":20,"id":"39586","lastModified":"1301901948000","name":"Christian Hoening","type":"Person","_key":"23475"} +{"label":"Jessica Kosmalla","version":19,"id":"39587","lastModified":"1301901987000","name":"Jessica Kosmalla","type":"Person","_key":"23476"} +{"label":"Hussi Kutlucan","version":20,"id":"39588","lastModified":"1301901898000","name":"Hussi Kutlucan","type":"Person","_key":"23477"} +{"label":"Dietmar M\u00f6ssmer","version":23,"id":"39589","lastModified":"1301901782000","name":"Dietmar M\u00f6ssmer","type":"Person","_key":"23478"} +{"label":"Walter Nuber","version":19,"id":"39590","lastModified":"1301901737000","name":"Walter Nuber","type":"Person","_key":"23479"} +{"label":"Armin Schmid","version":18,"id":"39591","lastModified":"1301902013000","name":"Armin Schmid","type":"Person","_key":"23480"} +{"label":"Eva Sch\u00f6nherr","version":19,"id":"39592","lastModified":"1301901898000","name":"Eva Sch\u00f6nherr","type":"Person","_key":"23481"} +{"label":"Jockel Tschiersch","version":21,"id":"38850","lastModified":"1301901953000","name":"Jockel Tschiersch","type":"Person","_key":"23482"} +{"label":"Luise Zodel","version":19,"id":"39593","lastModified":"1301901898000","name":"Luise Zodel","type":"Person","_key":"23483"} +{"label":"Ghost Dog: The Way of the Samurai","description":"An African American mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.","id":"4816","runtime":116,"imdbId":"tt0165798","trailer":"http:\/\/www.youtube.com\/watch?v=gpf0NFVLEn8","version":136,"lastModified":"1301902764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b8\/4bc91b49017a3c57fe00a8b8\/ghost-dog-the-way-of-the-samurai-mid.jpg","studio":"Pandora Filmproduktion","genre":"Action","title":"Ghost Dog: The Way of the Samurai","releaseDate":939168000000,"language":"en","type":"Movie","_key":"23484"} +{"label":"Tricia Vessey","version":23,"id":"39596","lastModified":"1301901547000","name":"Tricia Vessey","type":"Person","_key":"23485"} +{"label":"Damon Whitaker","version":22,"id":"39597","lastModified":"1301901686000","name":"Damon Whitaker","type":"Person","_key":"23486"} +{"label":"Frank Minucci","version":22,"id":"39598","lastModified":"1301901686000","name":"Frank Minucci","type":"Person","_key":"23487"} +{"label":"Gene Ruffini","version":21,"id":"39599","lastModified":"1301901630000","name":"Gene Ruffini","type":"Person","_key":"23488"} +{"label":"Never So Few","description":"A U.S. military troop takes command of a band of Burmese guerillas during World War II.","id":"4820","runtime":125,"imdbId":"tt0053108","trailer":"http:\/\/www.youtube.com\/watch?v=Bfbj4jEVR1A","version":93,"lastModified":"1301904350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bf\/4c6c03067b9aa13ab50002bf\/never-so-few-mid.jpg","studio":"Canterbury Productions","genre":"Action","title":"Never So Few","releaseDate":-317779200000,"language":"en","type":"Movie","_key":"23489"} +{"label":"Brian Donlevy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/158\/4bd5aaef017a3c2e7d000158\/brian-donlevy-profile.jpg","version":52,"id":"41755","lastModified":"1301901222000","name":"Brian Donlevy","type":"Person","_key":"23490"} +{"label":"Dean Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15f\/4ca4713e7b9aa16ed500015f\/dean-jones-profile.jpg","version":55,"id":"40393","lastModified":"1301901368000","name":"Dean Jones","type":"Person","_key":"23491"} +{"label":"Robert Bray","version":23,"id":"41756","lastModified":"1301901939000","name":"Robert Bray","type":"Person","_key":"23492"} +{"label":"Aki Aleong","version":27,"id":"41757","lastModified":"1301901472000","name":"Aki Aleong","type":"Person","_key":"23493"} +{"label":"Kismet","description":"Like a tale spun by Schehrazade, Kismet follows the remarkable and repeated changes of fortune that engulf a poor poet. It all happens in one incredible day when Kismet (Fate) takes a hand.","id":"4822","runtime":103,"imdbId":"tt0048260","version":76,"lastModified":"1302024688000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc9\/4d8b95c07b9aa13ae4001cc9\/kismet-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Adventure","title":"Kismet","releaseDate":-449193600000,"language":"en","type":"Movie","_key":"23494"} +{"label":"Howard Keel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a5\/4c49b8817b9aa115fe0000a5\/howard-keel-profile.jpg","version":38,"id":"39601","lastModified":"1301901493000","name":"Howard Keel","type":"Person","_key":"23495"} +{"label":"Dolores Gray","version":24,"id":"39602","lastModified":"1301901643000","name":"Dolores Gray","type":"Person","_key":"23496"} +{"label":"Vic Damone","version":19,"id":"39603","lastModified":"1301901898000","name":"Vic Damone","type":"Person","_key":"23497"} +{"label":"June Kirby","version":19,"id":"39604","lastModified":"1301901898000","name":"June Kirby","type":"Person","_key":"23498"} +{"label":"Reiko Sato","version":21,"id":"39605","lastModified":"1301901898000","name":"Reiko Sato","type":"Person","_key":"23499"} +{"label":"Wonci Lui","version":19,"id":"39606","lastModified":"1301901737000","name":"Wonci Lui","type":"Person","_key":"23500"} +{"label":"Patricia Dunn","version":19,"id":"39607","lastModified":"1301901897000","name":"Patricia Dunn","type":"Person","_key":"23501"} +{"label":"Final Analysis","description":"No overview found.","id":"4823","runtime":117,"imdbId":"tt0104265","version":127,"lastModified":"1301905385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/301\/4bda045e017a3c1bff000301\/final-analysis-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Final Analysis","releaseDate":699753600000,"language":"en","type":"Movie","_key":"23502"} +{"label":"Robert Harper","version":21,"id":"41739","lastModified":"1301901897000","name":"Robert Harper","type":"Person","_key":"23503"} +{"label":"Agustin Rodriguez","version":21,"id":"41740","lastModified":"1301902108000","name":"Agustin Rodriguez","type":"Person","_key":"23504"} +{"label":"Rita Zohar","version":20,"id":"41741","lastModified":"1301901897000","name":"Rita Zohar","type":"Person","_key":"23505"} +{"label":"The Jackal","description":"Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist.","id":"4824","runtime":124,"imdbId":"tt0119395","trailer":"http:\/\/www.youtube.com\/watch?v=JKV6_hB6nV0","version":207,"lastModified":"1301901961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be0\/4d866f097b9aa12ed0003be0\/the-jackal-mid.jpg","studio":"Alphaville Films","genre":"Action","title":"The Jackal","releaseDate":879465600000,"language":"en","tagline":"How do you stop an assassin who has no identity?","type":"Movie","_key":"23506"} +{"label":"Guys and Dolls","description":"In New York, a gambler is challenged to take a cold female missionary to Havana, but they fall for each other, and the bet has a hidden motive to finance a crap game.","id":"4825","runtime":150,"imdbId":"tt0048140","trailer":"http:\/\/www.youtube.com\/watch?v=p54t7jiGXlA","version":215,"lastModified":"1301904560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4c74b6305e73d65f7e000e74\/guys-and-dolls-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Drama","title":"Guys and Dolls","releaseDate":-444614400000,"language":"en","type":"Movie","_key":"23507"} +{"label":"Vivian Blaine","version":20,"id":"41748","lastModified":"1301901817000","name":"Vivian Blaine","type":"Person","_key":"23508"} +{"label":"Johnny Silver","version":20,"id":"41749","lastModified":"1301901677000","name":"Johnny Silver","type":"Person","_key":"23509"} +{"label":"Sheldon Leonard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b3\/4c62e76f7b9aa172dd0006b3\/sheldon-leonard-profile.jpg","version":37,"id":"41750","lastModified":"1301901110000","name":"Sheldon Leonard","type":"Person","_key":"23510"} +{"label":"Five Moons Plaza","description":"No overview found.","id":"4826","runtime":115,"imdbId":"tt0366900","version":63,"lastModified":"1301415270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa6\/4d656cf75e73d66a6b000aa6\/piazza-delle-cinque-lune-mid.jpg","studio":"Blue Spice Film","genre":"Thriller","title":"Five Moons Plaza","releaseDate":1052438400000,"language":"en","type":"Movie","_key":"23511"} +{"label":"Renzo Martinelli","version":35,"id":"39612","lastModified":"1301901428000","name":"Renzo Martinelli","type":"Person","_key":"23512"} +{"label":"Aisha Cerami","version":21,"id":"39617","lastModified":"1301901684000","name":"Aisha Cerami","type":"Person","_key":"23513"} +{"label":"Nicola Di Pinto","version":23,"id":"39618","lastModified":"1301901965000","name":"Nicola Di Pinto","type":"Person","_key":"23514"} +{"label":"Federica Martinelli","version":23,"id":"39619","lastModified":"1301901714000","name":"Federica Martinelli","type":"Person","_key":"23515"} +{"label":"The 11th Hour","description":"A look at the state of the global environment including visionary and practical solutions for restoring the planet's ecosystems. Featuring ongoing dialogues of experts from all over the world, including former Soviet Prime Minister Mikhail Gorbachev, renowned scientist Stephen Hawking, former head of the CIA R. James Woolse","id":"4832","runtime":91,"imdbId":"tt0492931","trailer":"http:\/\/www.youtube.com\/watch?v=7IBG2V98IBY","homepage":"http:\/\/wip.warnerbros.com\/11thhour\/","version":216,"lastModified":"1301904506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4bc91b50017a3c57fe00a8f1\/the-11th-hour-mid.jpg","studio":"Appian Way","genre":"Documentary","title":"The 11th Hour","releaseDate":1179532800000,"language":"en","tagline":"It's our generation that gets to change the world... forever.","type":"Movie","_key":"23516"} +{"label":"Nadia Conners","version":23,"id":"39647","lastModified":"1301901618000","name":"Nadia Conners","type":"Person","_key":"23517"} +{"label":"Leila Conners","version":23,"id":"39648","lastModified":"1301901897000","name":"Leila Conners","type":"Person","_key":"23518"} +{"label":"Kenny Ausubel","version":20,"id":"39652","lastModified":"1301901539000","name":"Kenny Ausubel","type":"Person","_key":"23519"} +{"label":"Janine Benyus","version":20,"id":"39653","lastModified":"1301901897000","name":"Janine Benyus","type":"Person","_key":"23520"} +{"label":"Sylvia Earle","version":19,"id":"39654","lastModified":"1301901672000","name":"Sylvia Earle","type":"Person","_key":"23521"} +{"label":"Gloria Flora","version":20,"id":"39655","lastModified":"1301901737000","name":"Gloria Flora","type":"Person","_key":"23522"} +{"label":"Michel Gelobter","version":20,"id":"39656","lastModified":"1301901737000","name":"Michel Gelobter","type":"Person","_key":"23523"} +{"label":"Starke Zeiten","description":"No overview found.","id":"4834","runtime":92,"imdbId":"tt0122732","version":46,"lastModified":"1300978343000","genre":"Comedy","title":"Starke Zeiten","releaseDate":579398400000,"language":"en","type":"Movie","_key":"23524"} +{"label":"Klaudi Fr\u00f6hlich","version":20,"id":"39638","lastModified":"1301901988000","name":"Klaudi Fr\u00f6hlich","type":"Person","_key":"23525"} +{"label":"Wolfgang Fierek","version":20,"id":"38974","lastModified":"1301902002000","name":"Wolfgang Fierek","type":"Person","_key":"23526"} +{"label":"Zachi Noy","version":28,"id":"39641","lastModified":"1301901403000","name":"Zachi Noy","type":"Person","_key":"23527"} +{"label":"Otto Schenk","version":20,"id":"39642","lastModified":"1301902002000","name":"Otto Schenk","type":"Person","_key":"23528"} +{"label":"La Chasse \u00e0 l'homme","description":"No overview found.","id":"4835","runtime":100,"imdbId":"tt0057936","version":53,"lastModified":"1301906634000","studio":"Euro International Film","genre":"Comedy","title":"La Chasse \u00e0 l'homme","releaseDate":-166838400000,"language":"en","type":"Movie","_key":"23529"} +{"label":"Marie Lafor\u00eat","version":28,"id":"39644","lastModified":"1301901839000","name":"Marie Lafor\u00eat","type":"Person","_key":"23530"} +{"label":"Francis Blanche","version":28,"id":"39645","lastModified":"1301901401000","name":"Francis Blanche","type":"Person","_key":"23531"} +{"label":"Mireille Darc","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/051\/4c1331f05e73d646dd000051\/mireille-darc-profile.jpg","version":37,"birthday":"-998269200000","id":"39646","birthplace":"Toulon (France)","lastModified":"1301901365000","name":"Mireille Darc","type":"Person","_key":"23532"} +{"label":"Layer Cake","description":"When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...","id":"4836","runtime":100,"imdbId":"tt0375912","trailer":"http:\/\/www.youtube.com\/watch?v=QtrbWfZtxxM","homepage":"http:\/\/www.sonypictures.co.uk\/homevideo\/layercake\/index.html","version":307,"lastModified":"1301941865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4c99286e5e73d6554a000138\/layer-cake-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Layer Cake","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"23533"} +{"label":"Burn Gorman","version":25,"id":"39659","lastModified":"1301901227000","name":"Burn Gorman","type":"Person","_key":"23534"} +{"label":"Tamer Hassan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4cf1a79f5e73d61e3c0000fe\/tamer-hassan-profile.jpg","version":42,"id":"39660","lastModified":"1301901277000","name":"Tamer Hassan","type":"Person","_key":"23535"} +{"label":"Francis Magee","version":21,"id":"39661","lastModified":"1301901677000","name":"Francis Magee","type":"Person","_key":"23536"} +{"label":"Dimitri Andreas","version":21,"id":"39662","lastModified":"1301901470000","name":"Dimitri Andreas","type":"Person","_key":"23537"} +{"label":"Garry Tubbs","version":21,"id":"39663","lastModified":"1301901582000","name":"Garry Tubbs","type":"Person","_key":"23538"} +{"label":"Nathalie Lunghi","version":20,"id":"39664","lastModified":"1301901539000","name":"Nathalie Lunghi","type":"Person","_key":"23539"} +{"label":"Marvin Benoit","version":20,"id":"39665","lastModified":"1301901338000","name":"Marvin Benoit","type":"Person","_key":"23540"} +{"label":"Rab Affleck","version":20,"id":"39678","lastModified":"1301901618000","name":"Rab Affleck","type":"Person","_key":"23541"} +{"label":"Steve John Shepherd","version":23,"id":"39679","lastModified":"1301901497000","name":"Steve John Shepherd","type":"Person","_key":"23542"} +{"label":"Paul Orchard","version":20,"id":"39680","lastModified":"1301901338000","name":"Paul Orchard","type":"Person","_key":"23543"} +{"label":"Stephen Walters","version":27,"id":"39681","lastModified":"1301901539000","name":"Stephen Walters","type":"Person","_key":"23544"} +{"label":"Louis Emerick","version":21,"id":"39682","lastModified":"1301901677000","name":"Louis Emerick","type":"Person","_key":"23545"} +{"label":"Ivan Kaye","version":22,"id":"39683","lastModified":"1301901539000","name":"Ivan Kaye","type":"Person","_key":"23546"} +{"label":"Ben Brasier","version":20,"id":"39684","lastModified":"1301901539000","name":"Ben Brasier","type":"Person","_key":"23547"} +{"label":"Neil Finnighan","version":20,"id":"39685","lastModified":"1301901539000","name":"Neil Finnighan","type":"Person","_key":"23548"} +{"label":"Budge Prewitt","version":19,"id":"39686","lastModified":"1301901579000","name":"Budge Prewitt","type":"Person","_key":"23549"} +{"label":"Don McCorkindale","version":19,"id":"39687","lastModified":"1301901508000","name":"Don McCorkindale","type":"Person","_key":"23550"} +{"label":"La Collectionneuse","description":"A bombastic, womanizing art dealer and his painter friend go to a seventeenth-century villa on the Riviera for a relaxing summer getaway. But their idyll is disturbed by the presence of the bohemian Hayd\u00e9e, accused of being a \u201ccollector\u201d of men.","id":"4837","runtime":89,"imdbId":"tt0061495","version":101,"lastModified":"1301905016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3e\/4d430ada7b9aa15bbf004b3e\/la-collectionneuse-mid.jpg","studio":"Les Films du Losange","genre":"Comedy","title":"La Collectionneuse","releaseDate":-89510400000,"language":"en","type":"Movie","_key":"23551"} +{"label":"Hayd\u00e9e Politoff","version":24,"id":"39672","lastModified":"1301902008000","name":"Hayd\u00e9e Politoff","type":"Person","_key":"23552"} +{"label":"Daniel Pommereulle","version":23,"id":"39673","lastModified":"1301901965000","name":"Daniel Pommereulle","type":"Person","_key":"23553"} +{"label":"Alain Jouffroy","version":23,"id":"39674","lastModified":"1301901965000","name":"Alain Jouffroy","type":"Person","_key":"23554"} +{"label":"Mijanou Bardot","version":23,"id":"39675","lastModified":"1301901965000","name":"Mijanou Bardot","type":"Person","_key":"23555"} +{"label":"Annik Morice","version":23,"id":"39676","lastModified":"1301901965000","name":"Annik Morice","type":"Person","_key":"23556"} +{"label":"Dennis Berry","version":24,"id":"39677","lastModified":"1301901658000","name":"Dennis Berry","type":"Person","_key":"23557"} +{"label":"Les \u00eeles","description":"No overview found.","id":"4838","runtime":110,"imdbId":"tt0188311","version":57,"lastModified":"1301908601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/911\/4bc91b55017a3c57fe00a911\/les-iles-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Les \u00eeles","releaseDate":416620800000,"language":"en","type":"Movie","_key":"23558"} +{"label":"Marie Trintignant","version":35,"id":"39689","lastModified":"1301901715000","name":"Marie Trintignant","type":"Person","_key":"23559"} +{"label":"Marcel Marceau","version":25,"id":"39690","lastModified":"1301901658000","name":"Marcel Marceau","type":"Person","_key":"23560"} +{"label":"Jean-Pierre Sentier","version":21,"id":"39691","lastModified":"1301901965000","name":"Jean-Pierre Sentier","type":"Person","_key":"23561"} +{"label":"Love Life","description":"A married young academic falls under the sexual thrall of a much older man whose air of jaded ennui conceals a secret desire for vengeance.","id":"4839","runtime":113,"imdbId":"tt0443570","version":83,"lastModified":"1301904275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4c8bbf165e73d6068d00029d\/liebesleben-mid.jpg","studio":"X-Filme","genre":"Drama","title":"Love Life","releaseDate":1194480000000,"language":"en","type":"Movie","_key":"23562"} +{"label":"Neta Garty","version":31,"id":"41639","lastModified":"1302011686000","name":"Neta Garty","type":"Person","_key":"23563"} +{"label":"Tovah Feldshuh","version":33,"id":"41640","lastModified":"1301901701000","name":"Tovah Feldshuh","type":"Person","_key":"23564"} +{"label":"Ishai Golan","version":22,"id":"41641","lastModified":"1301901567000","name":"Ishai Golan","type":"Person","_key":"23565"} +{"label":"Aryeh Moskona","version":21,"id":"41642","lastModified":"1301901809000","name":"Aryeh Moskona","type":"Person","_key":"23566"} +{"label":"Assi Dayan","version":26,"id":"41644","lastModified":"1301901573000","name":"Assi Dayan","type":"Person","_key":"23567"} +{"label":"Clara Khoury","version":24,"id":"41645","lastModified":"1301901567000","name":"Clara Khoury","type":"Person","_key":"23568"} +{"label":"Ein Prachtexemplar","description":"No overview found.","id":"4840","runtime":90,"imdbId":"tt0098114","version":60,"lastModified":"1301908601000","studio":"Radio Bremen","genre":"Comedy","title":"Ein Prachtexemplar","releaseDate":599616000000,"language":"en","type":"Movie","_key":"23569"} +{"label":"Bruno Jonas","version":23,"id":"38936","lastModified":"1301901498000","name":"Bruno Jonas","type":"Person","_key":"23570"} +{"label":"Rita Russek","version":20,"id":"38735","lastModified":"1301901567000","name":"Rita Russek","type":"Person","_key":"23571"} +{"label":"Klaus Haak","version":18,"id":"39705","lastModified":"1301901987000","name":"Klaus Haak","type":"Person","_key":"23572"} +{"label":"Sabine Zeininger","version":20,"id":"39706","lastModified":"1301902004000","name":"Sabine Zeininger","type":"Person","_key":"23573"} +{"label":"Ulrike Folkerts","version":23,"id":"36469","lastModified":"1301901516000","name":"Ulrike Folkerts","type":"Person","_key":"23574"} +{"label":"Stephan Schwartz","version":21,"id":"47251","lastModified":"1301902288000","name":"Stephan Schwartz","type":"Person","_key":"23575"} +{"label":"Blood of Others","description":"In the German-occupied Paris, Helene is torn between the love for her boyfriend Jean, working for the resistance and the German administrator Bergmann, who will do anything to gain her affection.","id":"4841","runtime":135,"imdbId":"tt0088038","version":90,"lastModified":"1301905283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91a\/4bc91b55017a3c57fe00a91a\/le-sang-des-autres-mid.jpg","studio":"Films A2","genre":"Drama","title":"Blood of Others","releaseDate":452304000000,"language":"en","type":"Movie","_key":"23576"} +{"label":"Christine Laurent","version":33,"id":"39708","lastModified":"1301901780000","name":"Christine Laurent","type":"Person","_key":"23577"} +{"label":"Kate Reid","version":30,"id":"39709","lastModified":"1301901349000","name":"Kate Reid","type":"Person","_key":"23578"} +{"label":"Renaud Verley","version":23,"id":"39710","lastModified":"1301901778000","name":"Renaud Verley","type":"Person","_key":"23579"} +{"label":"Marcel Guy","version":21,"id":"39711","lastModified":"1301901737000","name":"Marcel Guy","type":"Person","_key":"23580"} +{"label":"Adieu l'ami","description":"After serving together in the French Foreign Legion, a mercenary and a doctor leave the service and go their separate ways. Later, they are reunited and become involved with a caper involving millions in a high-security safe. The two men become locked in during a holiday weekend as the attempt to crack the safe's combination.","id":"4857","runtime":115,"imdbId":"tt0062639","version":68,"lastModified":"1301903071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4bc91b56017a3c57fe00a923\/adieu-l-ami-mid.jpg","studio":"Medusa Produzione","genre":"Crime","title":"Adieu l'ami","releaseDate":-43632000000,"language":"en","type":"Movie","_key":"23581"} +{"label":"Jean Herman","version":22,"id":"39719","lastModified":"1301901801000","name":"Jean Herman","type":"Person","_key":"23582"} +{"label":"Marianna Falk","version":19,"id":"39720","lastModified":"1301901897000","name":"Marianna Falk","type":"Person","_key":"23583"} +{"label":"Ellen Bahl","version":21,"id":"39721","lastModified":"1301901897000","name":"Ellen Bahl","type":"Person","_key":"23584"} +{"label":"Jean-Paul Tribout","version":20,"id":"39722","lastModified":"1301901897000","name":"Jean-Paul Tribout","type":"Person","_key":"23585"} +{"label":"Raoul Guylad","version":19,"id":"39723","lastModified":"1301901618000","name":"Raoul Guylad","type":"Person","_key":"23586"} +{"label":"Catherine Sola","version":19,"id":"39724","lastModified":"1301901737000","name":"Catherine Sola","type":"Person","_key":"23587"} +{"label":"The Invasion","description":"An alien lifeform, much like a fungus or spore, clings to the space shuttle Patriot as it crashes back to Earth, spreading tainted debris from Texas to Washington, D.C. Curious onlookers steal, touch and even sell the parts on eBay, much like what happened with the Columbia disaster. This in turn infects many people, robbing them of their emotions when they enter REM sleep.","id":"4858","runtime":99,"imdbId":"tt0427392","trailer":"http:\/\/www.youtube.com\/watch?v=283","homepage":"http:\/\/theinvasionmovie.warnerbros.com\/","version":410,"lastModified":"1301901751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b1\/4cf0872f5e73d619280004b1\/the-invasion-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Drama","title":"The Invasion","releaseDate":1187308800000,"language":"en","type":"Movie","_key":"23588"} +{"label":"Jackson Bond","version":27,"id":"39728","lastModified":"1301901477000","name":"Jackson Bond","type":"Person","_key":"23589"} +{"label":"Eric Benjamin","version":26,"id":"39729","lastModified":"1301901539000","name":"Eric Benjamin","type":"Person","_key":"23590"} +{"label":"Susan Floyd","version":27,"id":"39730","lastModified":"1301901539000","name":"Susan Floyd","type":"Person","_key":"23591"} +{"label":"Genghis Khan","description":"No overview found.","id":"4868","runtime":127,"imdbId":"tt0059219","version":67,"lastModified":"1301906753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ae\/4c5cbced5e73d63a700006ae\/genghis-khan-mid.jpg","studio":"Avala Film","genre":"Action","title":"Genghis Khan","releaseDate":-142819200000,"language":"en","type":"Movie","_key":"23592"} +{"label":"Yvonne Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/454\/4ca0a5b37b9aa1578f000454\/yvonne-mitchell-profile.jpg","version":25,"id":"39740","lastModified":"1301901857000","name":"Yvonne Mitchell","type":"Person","_key":"23593"} +{"label":"Michael Hordern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/309\/4ca520635e73d636f9000309\/michael-hordern-profile.jpg","version":60,"birthday":"-1838163600000","id":"39741","lastModified":"1301901696000","name":"Michael Hordern","type":"Person","_key":"23594"} +{"label":"Henry Levin","version":39,"id":"39743","lastModified":"1301901224000","name":"Henry Levin","type":"Person","_key":"23595"} +{"label":"Ten Little Indians","description":"Ten strangers are invited as weekend guests to a remote mountain mansion.When the host doesn't show up, the guests start dying, one by one, in uniquely macabre Agatha Christie-style.It is based on Christie's best-selling novel with 100 million sales to date, making it the world's best-selling mystery ever, and one of the most-printed books of all time.","id":"4879","runtime":90,"imdbId":"tt0061075","version":100,"lastModified":"1301904682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa5\/4d4c6a7d5e73d617bd001aa5\/ten-little-indians-mid.jpg","studio":"Tenlit Films","genre":"Crime","title":"Ten Little Indians","releaseDate":-144547200000,"language":"en","type":"Movie","_key":"23596"} +{"label":"Hugh O'Brian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ec\/4ca4ce8b7b9aa16ed70002ec\/hugh-o-brian-profile.jpg","version":28,"birthday":"-1473901200000","id":"39753","birthplace":"Rochester, New York, USA","lastModified":"1301901513000","name":"Hugh O'Brian","type":"Person","_key":"23597"} +{"label":"Fabian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28f\/4c6bf1647b9aa13ab600028f\/fabian-profile.jpg","version":32,"id":"39757","lastModified":"1301901380000","name":"Fabian","type":"Person","_key":"23598"} +{"label":"Daliah Lavi","version":30,"id":"39754","lastModified":"1301901447000","name":"Daliah Lavi","type":"Person","_key":"23599"} +{"label":"Marianne Hoppe","version":24,"id":"39755","lastModified":"1301901686000","name":"Marianne Hoppe","type":"Person","_key":"23600"} +{"label":"Nichts als Gespenster","description":"No overview found.","id":"4880","runtime":119,"imdbId":"tt0803047","homepage":"http:\/\/www.nichtsalsgespenster.de","version":66,"lastModified":"1301907413000","studio":"Senator Film Produktion","genre":"Comedy","title":"Nichts als Gespenster","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"23601"} +{"label":"Brigitte Hobmeier","version":21,"id":"41167","lastModified":"1301901837000","name":"Brigitte Hobmeier","type":"Person","_key":"23602"} +{"label":"S\u00f3lveig Arnarsd\u00f3ttir","version":21,"id":"41168","lastModified":"1301901817000","name":"S\u00f3lveig Arnarsd\u00f3ttir","type":"Person","_key":"23603"} +{"label":"Valur Freyr Einarsson","version":20,"id":"41169","lastModified":"1301901817000","name":"Valur Freyr Einarsson","type":"Person","_key":"23604"} +{"label":"Karina Plachetka","version":18,"id":"41170","lastModified":"1301901996000","name":"Karina Plachetka","type":"Person","_key":"23605"} +{"label":"Chiara Schoras","version":21,"id":"41171","lastModified":"1301901961000","name":"Chiara Schoras","type":"Person","_key":"23606"} +{"label":"Martin Gypkens","version":23,"id":"39758","lastModified":"1301901402000","name":"Martin Gypkens","type":"Person","_key":"23607"} +{"label":"Love Has Many Faces","description":"No overview found.","id":"4881","runtime":104,"imdbId":"tt0059403","version":89,"lastModified":"1301904571000","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Love Has Many Faces","releaseDate":-153100800000,"language":"en","type":"Movie","_key":"23608"} +{"label":"Alexander Singer","version":20,"id":"39759","lastModified":"1301901817000","name":"Alexander Singer","type":"Person","_key":"23609"} +{"label":"Stefanie Powers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4ca4bbb17b9aa16ed90002cb\/stefanie-powers-profile.jpg","version":44,"id":"39762","lastModified":"1301901254000","name":"Stefanie Powers","type":"Person","_key":"23610"} +{"label":"Ron Husmann","version":20,"id":"39763","lastModified":"1301902002000","name":"Ron Husmann","type":"Person","_key":"23611"} +{"label":"Jaime Bravo","version":20,"id":"39764","lastModified":"1301902002000","name":"Jaime Bravo","type":"Person","_key":"23612"} +{"label":"A Bullet for Pretty Boy","description":"No overview found.","id":"4882","runtime":89,"imdbId":"tt0065501","version":225,"lastModified":"1301903267000","studio":"American International Pictures","genre":"Action","title":"A Bullet for Pretty Boy","releaseDate":16848000000,"language":"en","type":"Movie","_key":"23613"} +{"label":"Larry Buchanan","version":32,"id":"39765","lastModified":"1301901447000","name":"Larry Buchanan","type":"Person","_key":"23614"} +{"label":"Jocelyn Lane","version":23,"id":"39768","lastModified":"1301901683000","name":"Jocelyn Lane","type":"Person","_key":"23615"} +{"label":"Astrid Warner","version":20,"id":"39769","lastModified":"1301901447000","name":"Astrid Warner","type":"Person","_key":"23616"} +{"label":"Adam Roarke","version":26,"id":"39770","lastModified":"1301995822000","name":"Adam Roarke","type":"Person","_key":"23617"} +{"label":"Michael Haynes","version":23,"id":"39771","lastModified":"1301901790000","name":"Michael Haynes","type":"Person","_key":"23618"} +{"label":"Robert Glenn","version":20,"id":"39772","lastModified":"1301901677000","name":"Robert Glenn","type":"Person","_key":"23619"} +{"label":"Jeff Alexander","version":22,"id":"39773","lastModified":"1301901658000","name":"Jeff Alexander","type":"Person","_key":"23620"} +{"label":"Bill Thurman","version":26,"id":"39774","lastModified":"1301901979000","name":"Bill Thurman","type":"Person","_key":"23621"} +{"label":"Annabelle Weenick","version":26,"id":"39775","lastModified":"1301901658000","name":"Annabelle Weenick","type":"Person","_key":"23622"} +{"label":"Camilla Carr","version":21,"id":"39776","lastModified":"1301901965000","name":"Camilla Carr","type":"Person","_key":"23623"} +{"label":"Desmond Dhooge","version":20,"id":"39777","lastModified":"1301902002000","name":"Desmond Dhooge","type":"Person","_key":"23624"} +{"label":"Ten Little Indians","description":"Ten people are invited for a weekend by a Mr U. N. Own, but he isn't on the island. At dinner a record is played, by that all the people are accused of murder, suddenly the first of them is dead, then the next... It seems to be that one of them is the murderer Mr. U. N. Own, but the person in suspect is always the person who is murdered next. At last only two people seem to be left.","id":"4883","runtime":98,"imdbId":"tt0072263","version":143,"lastModified":"1301905010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03a\/4c4b40137b9aa1237c00003a\/and-then-there-were-none-mid.jpg","studio":"Corona Filmproduktion","genre":"Crime","title":"Ten Little Indians","releaseDate":149212800000,"language":"en","type":"Movie","_key":"23625"} +{"label":"Nasser Malekmotei","version":21,"id":"39778","lastModified":"1301901999000","name":"Nasser Malekmotei","type":"Person","_key":"23626"} +{"label":"Peter Collinson","version":30,"id":"39779","lastModified":"1301901512000","name":"Peter Collinson","type":"Person","_key":"23627"} +{"label":"Ten Little Indians","description":"No overview found.","id":"4884","runtime":98,"imdbId":"tt0098454","version":57,"lastModified":"1301906177000","studio":"Breton Film Productions","genre":"Crime","title":"Ten Little Indians","releaseDate":611366400000,"language":"en","type":"Movie","_key":"23628"} +{"label":"Frank Stallone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54b\/4d6a511b7b9aa1363100254b\/frank-stallone-profile.jpg","version":27,"id":"39780","lastModified":"1301901965000","name":"Frank Stallone","type":"Person","_key":"23629"} +{"label":"Sarah Maur Thorp","version":39,"id":"39781","lastModified":"1301901567000","name":"Sarah Maur Thorp","type":"Person","_key":"23630"} +{"label":"Paul L. Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b1c\/4d930ac17b9aa11997000b1c\/paul-l-smith-profile.jpg","biography":"<b>Paul L. Smith<\/b> (born February 5, 1939) is an American character actor. Burly, bearded, and imposing, he has appeared in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Film\" title=\"Film\">films<\/a>\n and occasionally on TV since the 1970s, generally playing \"heavies\" and\n bad guys. His most notable roles include Hamidou, the vicious prison \nwarden in <i><a href=\"http:\/\/en.wikipedia.org\/wiki\/Midnight_Express_%28film%29\" title=\"Midnight Express (film)\">Midnight Express<\/a><\/i> (1978), Bluto in <a href=\"","version":36,"birthday":"-975286800000","id":"39782","birthplace":"Everett, Massachusetts, USA","lastModified":"1301901503000","name":"Paul L. Smith","type":"Person","_key":"23631"} +{"label":"Moira Lister","version":22,"id":"39783","lastModified":"1301902007000","name":"Moira Lister","type":"Person","_key":"23632"} +{"label":"Yehuda Efroni","version":25,"id":"39784","lastModified":"1301901572000","name":"Yehuda Efroni","type":"Person","_key":"23633"} +{"label":"Alan Birkinshaw","version":22,"id":"39785","lastModified":"1301901790000","name":"Alan Birkinshaw","type":"Person","_key":"23634"} +{"label":"Desyat negrityat","description":"No overview found.","id":"4885","runtime":137,"imdbId":"tt0092879","version":60,"lastModified":"1301904722000","studio":"Odessa Film Studios","genre":"Crime","title":"Desyat negrityat","releaseDate":536457600000,"language":"en","type":"Movie","_key":"23635"} +{"label":"Stanislav Govorukhin","version":18,"id":"39787","lastModified":"1301901965000","name":"Stanislav Govorukhin","type":"Person","_key":"23636"} +{"label":"Tatyana Drubich","version":18,"id":"39789","lastModified":"1301901698000","name":"Tatyana Drubich","type":"Person","_key":"23637"} +{"label":"Vladimir Zeldin","version":20,"id":"47436","lastModified":"1301902287000","name":"Vladimir Zeldin","type":"Person","_key":"23638"} +{"label":"Lyudmila Maksakova","version":18,"id":"39791","lastModified":"1301901809000","name":"Lyudmila Maksakova","type":"Person","_key":"23639"} +{"label":"Aleksei Zharkov","version":19,"id":"39792","lastModified":"1301901809000","name":"Aleksei Zharkov","type":"Person","_key":"23640"} +{"label":"Anatoli Romashin","version":18,"id":"39793","lastModified":"1301901840000","name":"Anatoli Romashin","type":"Person","_key":"23641"} +{"label":"Mikhail Gluzsky","version":20,"id":"39794","lastModified":"1301902033000","name":"Mikhail Gluzsky","type":"Person","_key":"23642"} +{"label":"Aleksei Zolotnitsky","version":18,"id":"39795","lastModified":"1301901988000","name":"Aleksei Zolotnitsky","type":"Person","_key":"23643"} +{"label":"Irina Tereshchenko","version":18,"id":"39796","lastModified":"1301901675000","name":"Irina Tereshchenko","type":"Person","_key":"23644"} +{"label":"Aleksandr Abdulov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e9\/4c5c01ce7b9aa151f60006e9\/aleksandr-abdulov-profile.jpg","version":44,"birthday":"-523674000000","id":"99272","birthplace":"Tobolsk, Russian SFSR, USSR","lastModified":"1301902494000","name":"Aleksandr Abdulov","type":"Person","_key":"23645"} +{"label":"And Then There Were None","description":"Ten people are invited for a weekend on an island by a Mr U. N. Own, but he isn't on the island. At dinner a record is played, by that all the people are accused of murder, suddenly the first of them is dead, then the next... It seems to be that one of them is the murderer Mr. U. N. Own, but the person in suspect is always the person who is murdered next. At last only two people seem to be left.","id":"4886","runtime":97,"imdbId":"tt0037515","version":105,"lastModified":"1301906634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/943\/4bc91b5c017a3c57fe00a943\/and-then-there-were-none-mid.jpg","studio":"Rene Clair Productions","genre":"Action","title":"And Then There Were None","releaseDate":-762739200000,"language":"en","type":"Movie","_key":"23646"} +{"label":"Louis Hayward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82f\/4be37922017a3c35c100082f\/louis-hayward-profile.jpg","version":36,"id":"39799","lastModified":"1301901325000","name":"Louis Hayward","type":"Person","_key":"23647"} +{"label":"June Duprez","version":26,"id":"39800","lastModified":"1301901648000","name":"June Duprez","type":"Person","_key":"23648"} +{"label":"Mischa Auer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/902\/4cab3fa57b9aa17acc000902\/mischa-auer-profile.jpg","version":33,"id":"39801","lastModified":"1301901532000","name":"Mischa Auer","type":"Person","_key":"23649"} +{"label":"Queenie Leonard","version":30,"id":"39802","lastModified":"1301995580000","name":"Queenie Leonard","type":"Person","_key":"23650"} +{"label":"Harry Thurston","version":20,"id":"39803","lastModified":"1301901817000","name":"Harry Thurston","type":"Person","_key":"23651"} +{"label":"Takva","description":"No overview found.","id":"4887","runtime":96,"imdbId":"tt0499262","homepage":"www.takva-film.de","version":69,"lastModified":"1301904682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4ce0a0895e73d60f7100028f\/takva-mid.jpg","studio":"Coraz\u00f3n International","genre":"Drama","title":"Takva","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"23652"} +{"label":"Erkan Can","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32c\/4ce159545e73d60f6c00032c\/erkan-can-profile.jpg","biography":"1 Kas\u0131m 1958'de Bursa'da do\u011fdu. 1975 y\u0131l\u0131nda Bursa Devlet Tiyatrosu, Ahmed Vefik Pa\u015fa sahnesine giderek tiyatro hayat\u0131na ba\u015flad\u0131. 1985 y\u0131l\u0131nda \u0130stanbul Belediye Konservatuar\u0131 Tiyatro B\u00f6l\u00fcm\u00fc'ne girdi ve 1990 y\u0131l\u0131nda oradan mezun oldu. 1991-1992 y\u0131llar\u0131 aras\u0131nda Bak\u0131rk\u00f6y Belediye Tiyatrosu'na girdi. 1992 y\u0131l\u0131nda sevilen dizi Mahallenin Muhtarlar\u0131nda Temel karakteri ile televizyon d\u00fcnyas\u0131na girdi. 1998 y\u0131l\u0131nda Gemide adl\u0131 filmde ba\u015frol oynad\u0131 ve b\u00fcy\u00fck bir hayran kitlesi olu\u015fturdu. 1998 y\u0131l\u0131nda 35.A","version":31,"birthday":"-352429200000","id":"90282","birthplace":"Bursa","lastModified":"1301901278000","name":"Erkan Can","type":"Person","_key":"23653"} +{"label":"Meray \u00dclgen","version":20,"id":"40019","lastModified":"1301901457000","name":"Meray \u00dclgen","type":"Person","_key":"23654"} +{"label":"\u00d6znur Kula","version":19,"id":"40020","lastModified":"1301901431000","name":"\u00d6znur Kula","type":"Person","_key":"23655"} +{"label":"Erman Saban","version":19,"id":"40021","lastModified":"1301901897000","name":"Erman Saban","type":"Person","_key":"23656"} +{"label":"M\u00fcfit Aytekin","version":19,"id":"40022","lastModified":"1301901897000","name":"M\u00fcfit Aytekin","type":"Person","_key":"23657"} +{"label":"Murat Cemcir","version":19,"id":"40023","lastModified":"1301901897000","name":"Murat Cemcir","type":"Person","_key":"23658"} +{"label":"Settar Tanriogen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b6f\/4d1b4b655e73d6084200bb6f\/settar-tanriogen-profile.jpg","biography":"<P>Settar Tanr\u0131\u00f6\u011fen (d.1962 , Denizli) T\u00fcrk sinema ve dizi film oyuncusu.<\/P>\r\n<P>Hacettepe \u00dcniversitesi Arkeoloji ve Sanat Tarihi B\u00f6l\u00fcm\u00fc mezunudur.<BR><\/P>","version":31,"id":"40024","lastModified":"1301901467000","name":"Settar Tanriogen","type":"Person","_key":"23659"} +{"label":"\u00d6zer Kiziltan","version":19,"id":"40025","lastModified":"1301901477000","name":"\u00d6zer Kiziltan","type":"Person","_key":"23660"} +{"label":"Der Mann von der Botschaft","description":"No overview found.","id":"4888","runtime":100,"imdbId":"tt0496348","version":44,"lastModified":"1301907284000","studio":"Tatfilm Produktionsges. mbH","genre":"Drama","title":"Der Mann von der Botschaft","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"23661"} +{"label":"Dito Tsintsadze","version":21,"id":"39804","lastModified":"1301901618000","name":"Dito Tsintsadze","type":"Person","_key":"23662"} +{"label":"Lika Martinova","version":19,"id":"39809","lastModified":"1301901431000","name":"Lika Martinova","type":"Person","_key":"23663"} +{"label":"Marika Giorgobiani","version":19,"id":"39810","lastModified":"1301901618000","name":"Marika Giorgobiani","type":"Person","_key":"23664"} +{"label":"Billion Dollar Brain","description":"A former British spy stumbles into in a plot to overthrow Communism with the help of a supercomputer. But who is working for whom?","id":"4889","runtime":111,"imdbId":"tt0061405","trailer":"http:\/\/www.youtube.com\/watch?v=JXXjsW_qIN4","version":317,"lastModified":"1301905565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/147\/4c6acbbe7b9aa13ab6000147\/billion-dollar-brain-mid.jpg","studio":"Lowndes Productions Limited","genre":"Adventure","title":"Billion Dollar Brain","releaseDate":-64195200000,"language":"en","type":"Movie","_key":"23665"} +{"label":"Milo Sperber","version":23,"id":"39817","lastModified":"1301901559000","name":"Milo Sperber","type":"Person","_key":"23666"} +{"label":"Jill Mai Meredith","version":19,"id":"39818","lastModified":"1301901618000","name":"Jill Mai Meredith","type":"Person","_key":"23667"} +{"label":"A Thousand Years of a Good Prayers","description":"The film follows Mr. Shi, a retired widower from Beijing. When his only daughter, Yilan, who lives in Spokane, Washington and works as a librarian, gets divorced, he decides to visit her to help her heal. However, Yilan is not interested. She tries keeping an emotional distance but when this finally fails she begins physically avoiding her father. He confronts her about an affair with a married Russian man and she, in turn, lets loose about all the gossip she'd heard as a young girl about his al","id":"4890","runtime":83,"imdbId":"tt0838233","version":141,"lastModified":"1301903275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/955\/4bc91b5d017a3c57fe00a955\/a-thousand-years-of-a-good-prayers-mid.jpg","studio":"Entertainment Farm","genre":"Drama","title":"A Thousand Years of a Good Prayers","releaseDate":1190678400000,"language":"en","type":"Movie","_key":"23668"} +{"label":"Wayne Wang","version":47,"id":"39819","lastModified":"1301901267000","name":"Wayne Wang","type":"Person","_key":"23669"} +{"label":"Feihong Yu","version":20,"id":"39831","lastModified":"1301901473000","name":"Feihong Yu","type":"Person","_key":"23670"} +{"label":"Vida Ghahremani","version":21,"id":"39832","lastModified":"1301901477000","name":"Vida Ghahremani","type":"Person","_key":"23671"} +{"label":"Where the Spies Are","description":"No overview found.","id":"4893","runtime":110,"imdbId":"tt0059905","version":83,"lastModified":"1301907110000","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Where the Spies Are","releaseDate":-124070400000,"language":"en","type":"Movie","_key":"23672"} +{"label":"Val Guest","version":66,"birthday":"-1832202000000","id":"39853","birthplace":"London, England, UK","lastModified":"1301901466000","name":"Val Guest","type":"Person","_key":"23673"} +{"label":"Paul Stassino","version":23,"id":"125908","lastModified":"1301902733000","name":"Paul Stassino","type":"Person","_key":"23674"} +{"label":"Noel Harrison","version":16,"id":"140167","lastModified":"1301902948000","name":"Noel Harrison","type":"Person","_key":"23675"} +{"label":"Ronald Radd","version":16,"id":"140168","lastModified":"1301902907000","name":"Ronald Radd","type":"Person","_key":"23676"} +{"label":"Alan Gifford","version":19,"id":"93948","lastModified":"1301902912000","name":"Alan Gifford","type":"Person","_key":"23677"} +{"label":"George Mikell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0aa\/4cc827487b9aa16b9f0000aa\/george-mikell-profile.jpg","version":35,"id":"137383","lastModified":"1301902578000","name":"George Mikell","type":"Person","_key":"23678"} +{"label":"G\u00e1bor Baraker","version":16,"id":"140169","lastModified":"1301902893000","name":"G\u00e1bor Baraker","type":"Person","_key":"23679"} +{"label":"Muxm\u00e4uschenstill","description":"A pseudo documentary study of an archetypal German who tries to model his world according to his ideas of law and (sexual) order.","id":"4896","runtime":90,"imdbId":"tt0396746","homepage":"http:\/\/www.mux-braucht-dich.de\/","version":58,"lastModified":"1301904958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95a\/4bc91b60017a3c57fe00a95a\/muxmauschenstill-mid.jpg","studio":"Schiwago Film","genre":"Drama","title":"Muxm\u00e4uschenstill","releaseDate":1075248000000,"language":"en","type":"Movie","_key":"23680"} +{"label":"Marcus Mittermeier","version":25,"id":"39861","lastModified":"1301901830000","name":"Marcus Mittermeier","type":"Person","_key":"23681"} +{"label":"Wanda Perdelwitz","version":20,"id":"39862","lastModified":"1301901897000","name":"Wanda Perdelwitz","type":"Person","_key":"23682"} +{"label":"Dieter Dost","version":22,"id":"39864","lastModified":"1301901897000","name":"Dieter Dost","type":"Person","_key":"23683"} +{"label":"La Gamberge","description":"No overview found.","id":"4897","runtime":90,"imdbId":"tt0054908","version":68,"lastModified":"1301906083000","studio":"Parc Films","genre":"Comedy","title":"La Gamberge","releaseDate":-248054400000,"language":"en","type":"Movie","_key":"23684"} +{"label":"Norbert Carbonnaux","version":17,"id":"39871","lastModified":"1301901897000","name":"Norbert Carbonnaux","type":"Person","_key":"23685"} +{"label":"Micheline Francey","version":22,"id":"39874","lastModified":"1301901695000","name":"Micheline Francey","type":"Person","_key":"23686"} +{"label":"Denise Gence","version":19,"id":"39875","lastModified":"1301901897000","name":"Denise Gence","type":"Person","_key":"23687"} +{"label":"H\u00e9l\u00e8ne Dieudonn\u00e9","version":20,"id":"39876","lastModified":"1301901897000","name":"H\u00e9l\u00e8ne Dieudonn\u00e9","type":"Person","_key":"23688"} +{"label":"Louis Saint\u00e8ve","version":19,"id":"39877","lastModified":"1301901897000","name":"Louis Saint\u00e8ve","type":"Person","_key":"23689"} +{"label":"Pierre Duncan","version":19,"id":"39878","lastModified":"1301901897000","name":"Pierre Duncan","type":"Person","_key":"23690"} +{"label":"Poulet au vinaigre","description":"This is a pretty conventional crime thriller of the 1980s, with some criminally dull characterisation and limp acting performances. None of the principal characters, except the formidable Lavardin, appears to have any substance, and the end result is by and large lacklustre and plodding.Thankfully, the film does have its saving graces. Firstly, the character of Lavardin is well played by Jean Poiret. The police inspector's methods and persona are so unconventional that he comes across as more fr","id":"4898","runtime":110,"imdbId":"tt0089832","version":78,"lastModified":"1301905550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4d0d27ee5e73d6370e000be8\/poulet-au-vinaigre-mid.jpg","studio":"MK2 Productions","genre":"Crime","title":"Poulet au vinaigre","releaseDate":481939200000,"language":"en","type":"Movie","_key":"23691"} +{"label":"Jean Topart","version":22,"id":"39880","lastModified":"1301901964000","name":"Jean Topart","type":"Person","_key":"23692"} +{"label":"Pauline Lafont","version":19,"id":"39881","lastModified":"1301901897000","name":"Pauline Lafont","type":"Person","_key":"23693"} +{"label":"Andr\u00e9e Tainsy","version":22,"id":"39882","lastModified":"1301902017000","name":"Andr\u00e9e Tainsy","type":"Person","_key":"23694"} +{"label":"Jean-Claude Bouillaud","version":19,"id":"39883","lastModified":"1301901897000","name":"Jean-Claude Bouillaud","type":"Person","_key":"23695"} +{"label":"Jacques Frantz","version":32,"id":"39884","lastModified":"1301901511000","name":"Jacques Frantz","type":"Person","_key":"23696"} +{"label":"Les portes claquent","description":"No overview found.","id":"4899","runtime":90,"imdbId":"tt0054196","version":45,"lastModified":"1301904017000","studio":"Francos Films","genre":"Comedy","title":"Les portes claquent","releaseDate":-284947200000,"language":"en","type":"Movie","_key":"23697"} +{"label":"Michel Fermaud","version":24,"id":"17032","lastModified":"1301903110000","name":"Michel Fermaud","type":"Person","_key":"23698"} +{"label":"Jacques Poitrenaud","version":28,"id":"39885","lastModified":"1301903108000","name":"Jacques Poitrenaud","type":"Person","_key":"23699"} +{"label":"Dany Saval","version":22,"id":"39887","lastModified":"1301901539000","name":"Dany Saval","type":"Person","_key":"23700"} +{"label":"Maurice Sarfati","version":19,"id":"39888","lastModified":"1301901618000","name":"Maurice Sarfati","type":"Person","_key":"23701"} +{"label":"Jacqueline Maillan","version":28,"id":"39889","lastModified":"1301901673000","name":"Jacqueline Maillan","type":"Person","_key":"23702"} +{"label":"Les loups dans la bergerie","description":"No overview found.","id":"4900","runtime":90,"imdbId":"tt0157943","version":45,"lastModified":"1301907284000","studio":"Madeleine Films","genre":"Crime","title":"Les loups dans la bergerie","releaseDate":-312595200000,"language":"en","type":"Movie","_key":"23703"} +{"label":"Herv\u00e9 Bromberger","version":23,"id":"28244","lastModified":"1301902161000","name":"Herv\u00e9 Bromberger","type":"Person","_key":"23704"} +{"label":"Jean Babil\u00e9e","version":15,"id":"39891","lastModified":"1301901897000","name":"Jean Babil\u00e9e","type":"Person","_key":"23705"} +{"label":"Jacques Mouli\u00e8res","version":19,"id":"39892","lastModified":"1301901897000","name":"Jacques Mouli\u00e8res","type":"Person","_key":"23706"} +{"label":"Jacques Bonnard","version":19,"id":"39893","lastModified":"1301901618000","name":"Jacques Bonnard","type":"Person","_key":"23707"} +{"label":"Michel Van Hoecke","version":15,"id":"39894","lastModified":"1301901618000","name":"Michel Van Hoecke","type":"Person","_key":"23708"} +{"label":"Jagdhunde","description":"No overview found.","id":"4901","runtime":86,"imdbId":"tt0949436","version":70,"lastModified":"1301905648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c8\/4d26d4627b9aa134d80013c8\/jagdhunde-mid.jpg","studio":"credofilm","genre":"Drama","title":"Jagdhunde","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"23709"} +{"label":"Ann-Kristin Reyels","version":23,"id":"39895","lastModified":"1301901897000","name":"Ann-Kristin Reyels","type":"Person","_key":"23710"} +{"label":"Josef Hader","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ab\/4c6b7f9d5e73d65f7d0001ab\/josef-hader-profile.jpg","version":71,"id":"39905","lastModified":"1301901279000","name":"Josef Hader","type":"Person","_key":"23711"} +{"label":"Luise Berndt","version":20,"id":"39906","lastModified":"1301901737000","name":"Luise Berndt","type":"Person","_key":"23712"} +{"label":"Judith Engel","version":27,"id":"39907","lastModified":"1301901857000","name":"Judith Engel","type":"Person","_key":"23713"} +{"label":"Ulrike Krumbiegel","version":22,"id":"39908","lastModified":"1301901539000","name":"Ulrike Krumbiegel","type":"Person","_key":"23714"} +{"label":"Land gewinnen","description":"No overview found.","id":"4902","runtime":20,"imdbId":"tt0982890","version":61,"lastModified":"1301417952000","studio":"Hamburg Media School","genre":"Drama","title":"Land gewinnen","releaseDate":1171324800000,"language":"en","type":"Movie","_key":"23715"} +{"label":"Marc Brummund","version":20,"id":"39909","lastModified":"1301902007000","name":"Marc Brummund","type":"Person","_key":"23716"} +{"label":"Radik Golovkov","version":25,"id":"39914","lastModified":"1301901657000","name":"Radik Golovkov","type":"Person","_key":"23717"} +{"label":"Olga Kolb","version":20,"id":"39915","lastModified":"1301901965000","name":"Olga Kolb","type":"Person","_key":"23718"} +{"label":"Andreas Schust","version":20,"id":"39916","lastModified":"1301901657000","name":"Andreas Schust","type":"Person","_key":"23719"} +{"label":"Jan Peter Heyne","version":20,"id":"39917","lastModified":"1301902017000","name":"Jan Peter Heyne","type":"Person","_key":"23720"} +{"label":"Hannah Riederer","version":20,"id":"39918","lastModified":"1301901965000","name":"Hannah Riederer","type":"Person","_key":"23721"} +{"label":"Little Laura and Big John","description":"No overview found.","id":"4903","runtime":82,"imdbId":"tt0070325","version":55,"lastModified":"1302023579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95f\/4bc91b60017a3c57fe00a95f\/little-laura-and-big-john-mid.jpg","genre":"Crime","title":"Little Laura and Big John","releaseDate":105235200000,"language":"en","type":"Movie","_key":"23722"} +{"label":"Ivy Thayer","version":20,"id":"39924","lastModified":"1301901965000","name":"Ivy Thayer","type":"Person","_key":"23723"} +{"label":"Ken Miller","version":22,"id":"39925","lastModified":"1301901790000","name":"Ken Miller","type":"Person","_key":"23724"} +{"label":"Lee Warren","version":20,"id":"39926","lastModified":"1301902026000","name":"Lee Warren","type":"Person","_key":"23725"} +{"label":"Jerry Albert","version":20,"id":"39927","lastModified":"1301901965000","name":"Jerry Albert","type":"Person","_key":"23726"} +{"label":"Luke Moberly","version":20,"id":"39928","lastModified":"1301901965000","name":"Luke Moberly","type":"Person","_key":"23727"} +{"label":"The Day of the Jackal","description":"An international assassin is employed by disgruntled French generals to kill Charles de Gaulle while a dedicated gendarme follows the assassin's trail in this political thriller. The film uses the perspectives of the ultra-professional assassin as he prepares his work and that of the harried but humble French detective as he uncovers the plot.","id":"4909","runtime":145,"imdbId":"tt0069947","trailer":"http:\/\/www.youtube.com\/watch?v=lQdYPtm2u2k","version":156,"lastModified":"1301903498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/968\/4bc91b61017a3c57fe00a968\/the-day-of-the-jackal-mid.jpg","studio":"Warwick Productions","genre":"Action","title":"The Day of the Jackal","releaseDate":112838400000,"language":"en","type":"Movie","_key":"23728"} +{"label":"Eric Porter","version":27,"id":"39955","lastModified":"1301901497000","name":"Eric Porter","type":"Person","_key":"23729"} +{"label":"Barrie Ingham","version":29,"id":"39949","lastModified":"1301901457000","name":"Barrie Ingham","type":"Person","_key":"23730"} +{"label":"Tony Britton","version":31,"id":"39950","lastModified":"1301901961000","name":"Tony Britton","type":"Person","_key":"23731"} +{"label":"Denis Carey","version":22,"id":"39951","lastModified":"1301902018000","name":"Denis Carey","type":"Person","_key":"23732"} +{"label":"Maurice Denham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ec\/4ca497ce7b9aa16ed70001ec\/maurice-denham-profile.jpg","version":50,"id":"39952","lastModified":"1301901156000","name":"Maurice Denham","type":"Person","_key":"23733"} +{"label":"Jean Martin","version":30,"id":"39953","lastModified":"1301901801000","name":"Jean Martin","type":"Person","_key":"23734"} +{"label":"Donald Sinden","version":25,"id":"39954","lastModified":"1301901646000","name":"Donald Sinden","type":"Person","_key":"23735"} +{"label":"Nicolas Vogel","version":21,"id":"39956","lastModified":"1301901926000","name":"Nicolas Vogel","type":"Person","_key":"23736"} +{"label":"Adrien Cayla-Legrand","version":21,"id":"39957","lastModified":"1301901926000","name":"Adrien Cayla-Legrand","type":"Person","_key":"23737"} +{"label":"Nicole Desailly","version":21,"id":"39958","lastModified":"1301901926000","name":"Nicole Desailly","type":"Person","_key":"23738"} +{"label":"The Man Who Haunted Himself","description":"No overview found.","id":"4910","runtime":89,"imdbId":"tt0066053","trailer":"http:\/\/www.youtube.com\/watch?v=qFxVWaDdNII","version":66,"lastModified":"1301907129000","studio":"Excalibur Films","genre":"Crime","title":"The Man Who Haunted Himself","releaseDate":21945600000,"language":"en","type":"Movie","_key":"23739"} +{"label":"Hildegarde Neil","version":20,"id":"39969","lastModified":"1301901457000","name":"Hildegarde Neil","type":"Person","_key":"23740"} +{"label":"Alastair Mackenzie","version":30,"id":"39970","lastModified":"1301901525000","name":"Alastair Mackenzie","type":"Person","_key":"23741"} +{"label":"Hugh Mackenzie","version":20,"id":"39971","lastModified":"1301901993000","name":"Hugh Mackenzie","type":"Person","_key":"23742"} +{"label":"Ruth Trouncer","version":20,"id":"39972","lastModified":"1301902032000","name":"Ruth Trouncer","type":"Person","_key":"23743"} +{"label":"Dark Blue","description":"A robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics. ","id":"4911","runtime":118,"imdbId":"tt0279331","version":165,"lastModified":"1301906239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/975\/4bc91b62017a3c57fe00a975\/dark-blue-mid.jpg","studio":"Alphaville Films","genre":"Action","title":"Dark Blue","releaseDate":1039824000000,"language":"en","type":"Movie","_key":"23744"} +{"label":"Michael Michele","version":28,"id":"39977","lastModified":"1301901398000","name":"Michael Michele","type":"Person","_key":"23745"} +{"label":"Confessions of a Dangerous Mind","description":"Television made him famous, but his biggest hits happened off screen. \"Confessions of a Dangerous Mind\" is the story of a legendary showman's double life - television producer by day, CIA assassin by night. At the height of his TV career, Chuck Barris was recruited by the CIA and trained to become a covert operative. Or so Barris said.","id":"4912","runtime":113,"imdbId":"tt0270288","trailer":"http:\/\/www.youtube.com\/watch?v=1470","version":179,"lastModified":"1301903190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ca\/4cd40e087b9aa113a90000ca\/confessions-of-a-dangerous-mind-mid.jpg","studio":"Allied Filmmakers","genre":"Action","title":"Confessions of a Dangerous Mind","releaseDate":1041292800000,"language":"en","tagline":"Some things are better left top secret.","type":"Movie","_key":"23746"} +{"label":"Linda Tomassone","version":24,"id":"39994","lastModified":"1301901309000","name":"Linda Tomassone","type":"Person","_key":"23747"} +{"label":"Jerry Weintraub","version":87,"id":"1888","lastModified":"1299612831000","name":"Jerry Weintraub","type":"Person","_key":"23748"} +{"label":"Michael Cera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a67\/4c0ad0df017a3c33d9000a67\/michael-cera-profile.jpg","version":89,"birthday":"581637600000","id":"39995","birthplace":"Brampton, Ontario, Canada","lastModified":"1302063712000","name":"Michael Cera","type":"Person","_key":"23749"} +{"label":"Sorry, Haters","description":"No overview found.","id":"4913","runtime":83,"imdbId":"tt0425600","trailer":"http:\/\/www.youtube.com\/watch?v=307","homepage":"http:\/\/www.sorryhaters2006.com\/","version":126,"lastModified":"1301416186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84c\/4d6cddf57b9aa1362500484c\/sorry-haters-mid.jpg","studio":"InDigEnt","genre":"Drama","title":"Sorry, Haters","releaseDate":1126310400000,"language":"en","type":"Movie","_key":"23750"} +{"label":"Jeff Stanzler","version":28,"id":"39978","lastModified":"1301901617000","name":"Jeff Stanzler","type":"Person","_key":"23751"} +{"label":"Remy K. Selma","version":20,"id":"39985","lastModified":"1301902018000","name":"Remy K. Selma","type":"Person","_key":"23752"} +{"label":"Jim Ryan","version":24,"id":"39986","lastModified":"1301901897000","name":"Jim Ryan","type":"Person","_key":"23753"} +{"label":"Guilty as Sin","description":"A lawyer (Rebecca De Mornay) defends a womanizing accused wife slayer (Don Johnson)","id":"4916","runtime":107,"imdbId":"tt0107057","version":97,"lastModified":"1301903606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/198\/4c1c02e85e73d67b0c000198\/guilty-as-sin-mid.jpg","studio":"Hollywood Pictures","genre":"Drama","title":"Guilty as Sin","releaseDate":739152000000,"language":"en","type":"Movie","_key":"23754"} +{"label":"A Boy and His Dog","description":"Set in the year 2024 in Post-Apocalyptic America, 18-year old Vic and his telepathic dog Blood are scavengers in the desolate wilderness ravaged by World War Four, where survivors must battle for food, shelter, and sexual companionship in the desert-like wasteland. Vic and Blood eke out a meager existence, foraging for food and fighting gangs of cutthroats.","id":"4917","runtime":91,"imdbId":"tt0072730","version":136,"lastModified":"1301904506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98b\/4bc91b67017a3c57fe00a98b\/a-boy-and-his-dog-mid.jpg","studio":"LQ\/JAF","genre":"Comedy","title":"A Boy and His Dog","releaseDate":185673600000,"language":"en","type":"Movie","_key":"23755"} +{"label":"Susanne Benton","version":21,"id":"40000","lastModified":"1301901838000","name":"Susanne Benton","type":"Person","_key":"23756"} +{"label":"Tim McIntire","version":32,"id":"39998","lastModified":"1301901414000","name":"Tim McIntire","type":"Person","_key":"23757"} +{"label":"Alvy Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f6\/4bf173a9017a3c32120001f6\/alvy-moore-profile.jpg","version":23,"id":"40001","lastModified":"1301901586000","name":"Alvy Moore","type":"Person","_key":"23758"} +{"label":"Helene Winston","version":22,"id":"40002","lastModified":"1301901960000","name":"Helene Winston","type":"Person","_key":"23759"} +{"label":"Hal Baylor","version":23,"id":"15781","lastModified":"1301901681000","name":"Hal Baylor","type":"Person","_key":"23760"} +{"label":"Ron Feinberg","version":21,"id":"40003","lastModified":"1301901681000","name":"Ron Feinberg","type":"Person","_key":"23761"} +{"label":"Michael Rupert","version":22,"id":"40004","lastModified":"1301901663000","name":"Michael Rupert","type":"Person","_key":"23762"} +{"label":"Don Carter","version":21,"id":"40005","lastModified":"1301901683000","name":"Don Carter","type":"Person","_key":"23763"} +{"label":"Michael Hershman","version":21,"id":"40006","lastModified":"1301901683000","name":"Michael Hershman","type":"Person","_key":"23764"} +{"label":"The Fourth Protocol","description":"Plan Aurora, led by Kim Philby is a plan that breaches the top-secret Fourth Protocol and turns the fears that shaped it into a living nightmare.\n\nA crack Soviet agent, placed under cover in a quiet English country town, begins to assemble a nuclear bomb, whilst MI5 agent John Preston attempts to prevent it's detonation.","id":"4918","runtime":119,"imdbId":"tt0093044","version":103,"lastModified":"1301905200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/994\/4bc91b68017a3c57fe00a994\/the-forth-protocol-mid.jpg","studio":"Forth Protocol","genre":"Action","title":"The Fourth Protocol","releaseDate":557107200000,"language":"en","type":"Movie","_key":"23765"} +{"label":"John Mackenzie","version":25,"id":"40007","lastModified":"1301901601000","name":"John Mackenzie","type":"Person","_key":"23766"} +{"label":"Ray McAnally","version":34,"id":"40008","lastModified":"1301901551000","name":"Ray McAnally","type":"Person","_key":"23767"} +{"label":"Vivere","description":"No overview found.","id":"4921","runtime":102,"imdbId":"tt0497467","version":93,"lastModified":"1301906353000","studio":"Elsani Film","genre":"Drama","title":"Vivere","releaseDate":1192665600000,"language":"en","type":"Movie","_key":"23768"} +{"label":"Kim Schnitzer","version":22,"id":"40015","lastModified":"1301901403000","name":"Kim Schnitzer","type":"Person","_key":"23769"} +{"label":"Angelina Maccarone","version":22,"id":"40016","lastModified":"1301901657000","name":"Angelina Maccarone","type":"Person","_key":"23770"} +{"label":"The Curious Case of Benjamin Button","description":"Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.","id":"4922","runtime":159,"imdbId":"tt0421715","trailer":"http:\/\/www.youtube.com\/watch?v=-zkrgUmBiTY","homepage":"http:\/\/www.benjaminbutton.com\/","version":439,"lastModified":"1301901044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cc\/4bf7b46c017a3c77320003cc\/the-curious-case-of-benjamin-button-mid.jpg","studio":"The Kennedy\/Marshall Company","genre":"Drama","title":"The Curious Case of Benjamin Button","releaseDate":1227657600000,"language":"en","tagline":"Life isn't measured in minutes, but in moments.","type":"Movie","_key":"23771"} +{"label":"Taraji P. Henson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/312\/4bd2db52017a3c63ef000312\/taraji-p-henson-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Taraji Penda Henson<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> was born September 11, 1970 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Southeast Washington<\/st1:City>, <st1:State w:st=\"on\">D.C.<\/st1:State><\/st1:place> Her first and middle name are of Swahili origin, with her first name me","version":74,"birthday":"21855600000","id":"40036","birthplace":"Washington, D.C., USA","lastModified":"1302063585000","name":"Taraji P. Henson","type":"Person","_key":"23772"} +{"label":"Bianca Chiminello","version":27,"id":"40038","lastModified":"1301901083000","name":"Bianca Chiminello","type":"Person","_key":"23773"} +{"label":"Josh Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc4\/4cf3e5275e73d62382000bc4\/josh-stewart-profile.jpg","version":45,"id":"40039","lastModified":"1301927672000","name":"Josh Stewart","type":"Person","_key":"23774"} +{"label":"Zardoz","description":"In the distant future Earth is divided into two camps, the barely civilized group and the overly civilized one with mental powers. A plague is attacking the second group, after which its members cease to have any interest in life and become nearly catatonic. When Zed, one of the barbarians, crosses over, the tenuous balance in their world is threatened.","id":"4923","runtime":105,"imdbId":"tt0070948","version":145,"lastModified":"1301903319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e2\/4bc91b71017a3c57fe00a9e2\/zardoz-mid.jpg","studio":"John Boorman Productions","genre":"Action","title":"Zardoz","releaseDate":129340800000,"language":"en","type":"Movie","_key":"23775"} +{"label":"John Alderton","version":24,"id":"40041","lastModified":"1301901248000","name":"John Alderton","type":"Person","_key":"23776"} +{"label":"Sally Anne Newton","version":20,"id":"40042","lastModified":"1301901457000","name":"Sally Anne Newton","type":"Person","_key":"23777"} +{"label":"Niall Buggy","version":32,"id":"40043","lastModified":"1301901450000","name":"Niall Buggy","type":"Person","_key":"23778"} +{"label":"Jessica Swift","version":20,"id":"40044","lastModified":"1301901677000","name":"Jessica Swift","type":"Person","_key":"23779"} +{"label":"Soul Hustler","description":"No overview found.","id":"4924","runtime":81,"imdbId":"tt0074377","version":53,"lastModified":"1301905007000","studio":"Monterey Films","genre":"Comedy","title":"Soul Hustler","releaseDate":205027200000,"language":"en","type":"Movie","_key":"23780"} +{"label":"Burt Topper","version":24,"id":"40048","lastModified":"1301901457000","name":"Burt Topper","type":"Person","_key":"23781"} +{"label":"Nai Bonet","version":22,"id":"40049","lastModified":"1301901567000","name":"Nai Bonet","type":"Person","_key":"23782"} +{"label":"Tony Russel","version":23,"id":"40050","lastModified":"1301901657000","name":"Tony Russel","type":"Person","_key":"23783"} +{"label":"Larry Bishop","version":25,"id":"34721","lastModified":"1301901498000","name":"Larry Bishop","type":"Person","_key":"23784"} +{"label":"Dead Bang","description":"No overview found.","id":"4925","runtime":90,"imdbId":"tt0097166","version":129,"lastModified":"1301906673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f1\/4c768cb85e73d604140000f1\/dead-bang-mid.jpg","studio":"Lorimar Film Entertainment","genre":"Action","title":"Dead Bang","releaseDate":606700800000,"language":"en","type":"Movie","_key":"23785"} +{"label":"Frank Military","version":20,"id":"40053","lastModified":"1301901993000","name":"Frank Military","type":"Person","_key":"23786"} +{"label":"Cry Terror!","description":"No overview found.","id":"4926","runtime":96,"imdbId":"tt0051501","version":69,"lastModified":"1301903578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ec\/4bc91b73017a3c57fe00a9ec\/cry-terror-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Thriller","title":"Cry Terror!","releaseDate":-368236800000,"language":"en","type":"Movie","_key":"23787"} +{"label":"Andrew L. Stone","version":40,"id":"40054","lastModified":"1301901539000","name":"Andrew L. Stone","type":"Person","_key":"23788"} +{"label":"Inger Stevens","version":36,"id":"40056","lastModified":"1301901323000","name":"Inger Stevens","type":"Person","_key":"23789"} +{"label":"Terry Ann Ross","version":20,"id":"40058","lastModified":"1301902002000","name":"Terry Ann Ross","type":"Person","_key":"23790"} +{"label":"Edge of Seventeen","description":"The tale of a high school student in the small town of Sandusky, Ohio circa 1984 (a year when 80's pop-culture was in it's prime) who comes to terms with his homosexuality much to the astonishment of his long-time girlfriend. ","id":"4927","runtime":99,"imdbId":"tt0138414","version":210,"lastModified":"1302008491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f1\/4bc91b74017a3c57fe00a9f1\/edge-of-seventeen-mid.jpg","studio":"Blue Streak Films","genre":"Drama","title":"Edge of Seventeen","releaseDate":926640000000,"language":"en","type":"Movie","_key":"23791"} +{"label":"Chris Stafford","version":20,"id":"40059","lastModified":"1301901832000","name":"Chris Stafford","type":"Person","_key":"23792"} +{"label":"Tina Holmes","version":27,"id":"40060","lastModified":"1301992520000","name":"Tina Holmes","type":"Person","_key":"23793"} +{"label":"Andersen Gabrych","version":20,"id":"40061","lastModified":"1301901817000","name":"Andersen Gabrych","type":"Person","_key":"23794"} +{"label":"Stephanie McVay","version":21,"id":"40062","lastModified":"1301901637000","name":"Stephanie McVay","type":"Person","_key":"23795"} +{"label":"Lea DeLaria","version":19,"id":"40063","lastModified":"1301901632000","name":"Lea DeLaria","type":"Person","_key":"23796"} +{"label":"John Eby","version":19,"id":"40064","lastModified":"1301901632000","name":"John Eby","type":"Person","_key":"23797"} +{"label":"Antonio Carriero","version":19,"id":"40065","lastModified":"1301901632000","name":"Antonio Carriero","type":"Person","_key":"23798"} +{"label":"Jason Lockhart","version":18,"id":"40066","lastModified":"1301901672000","name":"Jason Lockhart","type":"Person","_key":"23799"} +{"label":"Tony Maietta","version":19,"id":"40067","lastModified":"1301901760000","name":"Tony Maietta","type":"Person","_key":"23800"} +{"label":"Jeff Fryer","version":19,"id":"40068","lastModified":"1301901632000","name":"Jeff Fryer","type":"Person","_key":"23801"} +{"label":"Kevin Joseph Kelly","version":18,"id":"40069","lastModified":"1301901672000","name":"Kevin Joseph Kelly","type":"Person","_key":"23802"} +{"label":"Mark Gates","version":19,"id":"40070","lastModified":"1301901632000","name":"Mark Gates","type":"Person","_key":"23803"} +{"label":"Stevie Reese Desmond","version":18,"id":"40071","lastModified":"1301901672000","name":"Stevie Reese Desmond","type":"Person","_key":"23804"} +{"label":"Barbie Marie","version":19,"id":"40072","lastModified":"1301901632000","name":"Barbie Marie","type":"Person","_key":"23805"} +{"label":"Craig H. Shepherd","version":19,"id":"40073","lastModified":"1301901828000","name":"Craig H. Shepherd","type":"Person","_key":"23806"} +{"label":"Doug Million","version":19,"id":"40076","lastModified":"1301901632000","name":"Doug Million","type":"Person","_key":"23807"} +{"label":"Clay Van Sickle","version":18,"id":"40077","lastModified":"1301901672000","name":"Clay Van Sickle","type":"Person","_key":"23808"} +{"label":"Jimmy Mack","version":19,"id":"40079","lastModified":"1301901632000","name":"Jimmy Mack","type":"Person","_key":"23809"} +{"label":"Justin Leach","version":19,"id":"40080","lastModified":"1301901632000","name":"Justin Leach","type":"Person","_key":"23810"} +{"label":"Jeffrey Abramson","version":20,"id":"40081","lastModified":"1301901804000","name":"Jeffrey Abramson","type":"Person","_key":"23811"} +{"label":"Don Mitri","version":19,"id":"40082","lastModified":"1301901632000","name":"Don Mitri","type":"Person","_key":"23812"} +{"label":"Mike Roth","version":19,"id":"40083","lastModified":"1301901760000","name":"Mike Roth","type":"Person","_key":"23813"} +{"label":"Adam Penton","version":19,"id":"40084","lastModified":"1301901632000","name":"Adam Penton","type":"Person","_key":"23814"} +{"label":"Tal Ben-David","version":20,"id":"40085","lastModified":"1301901632000","name":"Tal Ben-David","type":"Person","_key":"23815"} +{"label":"Dina Ansden","version":19,"id":"40086","lastModified":"1301901760000","name":"Dina Ansden","type":"Person","_key":"23816"} +{"label":"Karen Brooks","version":20,"id":"40087","lastModified":"1301901632000","name":"Karen Brooks","type":"Person","_key":"23817"} +{"label":"Shannon Constantine","version":19,"id":"40088","lastModified":"1301901632000","name":"Shannon Constantine","type":"Person","_key":"23818"} +{"label":"Edd Martin","version":19,"id":"40089","lastModified":"1301901632000","name":"Edd Martin","type":"Person","_key":"23819"} +{"label":"Gregg Long","version":19,"id":"40090","lastModified":"1301901760000","name":"Gregg Long","type":"Person","_key":"23820"} +{"label":"Ryan Florio","version":19,"id":"40091","lastModified":"1301901632000","name":"Ryan Florio","type":"Person","_key":"23821"} +{"label":"Twiggy","version":23,"id":"40092","lastModified":"1301901760000","name":"Twiggy","type":"Person","_key":"23822"} +{"label":"Frank Klingshin","version":18,"id":"40093","lastModified":"1301901672000","name":"Frank Klingshin","type":"Person","_key":"23823"} +{"label":"Dominic Carrion","version":19,"id":"40094","lastModified":"1301901632000","name":"Dominic Carrion","type":"Person","_key":"23824"} +{"label":"Khalid Abdelrasoul","version":19,"id":"40095","lastModified":"1301901632000","name":"Khalid Abdelrasoul","type":"Person","_key":"23825"} +{"label":"Sally Law","version":19,"id":"40096","lastModified":"1301901760000","name":"Sally Law","type":"Person","_key":"23826"} +{"label":"Jarred J. Nichols","version":19,"id":"40097","lastModified":"1301901632000","name":"Jarred J. Nichols","type":"Person","_key":"23827"} +{"label":"Jay Warshak","version":18,"id":"40098","lastModified":"1301901809000","name":"Jay Warshak","type":"Person","_key":"23828"} +{"label":"Diva Delaria-Foley","version":19,"id":"40099","lastModified":"1301901632000","name":"Diva Delaria-Foley","type":"Person","_key":"23829"} +{"label":"Sebastian Sieck","version":19,"id":"40110","lastModified":"1301901632000","name":"Sebastian Sieck","type":"Person","_key":"23830"} +{"label":"Doris Del Castillo","version":19,"id":"40111","lastModified":"1301901760000","name":"Doris Del Castillo","type":"Person","_key":"23831"} +{"label":"David Moreton","version":23,"id":"40439","lastModified":"1301901547000","name":"David Moreton","type":"Person","_key":"23832"} +{"label":"The World, the Flesh and the Devil","description":"No overview found.","id":"4928","runtime":95,"imdbId":"tt0053454","version":90,"lastModified":"1302039344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fa\/4bc91b77017a3c57fe00a9fa\/the-world-the-flesh-and-the-devil-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The World, the Flesh and the Devil","releaseDate":-335145600000,"language":"en","type":"Movie","_key":"23833"} +{"label":"Ranald MacDougall","version":37,"id":"31843","lastModified":"1301901453000","name":"Ranald MacDougall","type":"Person","_key":"23834"} +{"label":"Hang 'em High","description":"The hanging was the best show in town. But they made two mistakes. They hung the wrong man and they didn't finish the job.","id":"4929","runtime":114,"imdbId":"tt0061747","trailer":"http:\/\/www.youtube.com\/watch?v=lSDsZOC-aRY","version":136,"lastModified":"1301907631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4c2344c07b9aa13f64000033\/hang-em-high-mid.jpg","studio":"Leonard Freeman Production","genre":"Action","title":"Hang 'em High","releaseDate":-44841600000,"language":"en","type":"Movie","_key":"23835"} +{"label":"Michael O'Sullivan","version":22,"id":"40154","lastModified":"1301901834000","name":"Michael O'Sullivan","type":"Person","_key":"23836"} +{"label":"Richard Gates","version":22,"id":"40155","lastModified":"1301901837000","name":"Richard Gates","type":"Person","_key":"23837"} +{"label":"House of Cards","description":"No overview found.","id":"4930","runtime":105,"imdbId":"tt0064448","version":131,"lastModified":"1301414906000","studio":"Universal Pictures","genre":"Thriller","title":"House of Cards","releaseDate":-40780800000,"language":"en","type":"Movie","_key":"23838"} +{"label":"Keith Michell","version":20,"id":"40159","lastModified":"1301901559000","name":"Keith Michell","type":"Person","_key":"23839"} +{"label":"Barnaby Shaw","version":19,"id":"40161","lastModified":"1301901897000","name":"Barnaby Shaw","type":"Person","_key":"23840"} +{"label":"Jacques Roux","version":20,"id":"40162","lastModified":"1301901897000","name":"Jacques Roux","type":"Person","_key":"23841"} +{"label":"Patience Collier","version":22,"id":"40163","lastModified":"1301901539000","name":"Patience Collier","type":"Person","_key":"23842"} +{"label":"William Job","version":19,"id":"40164","lastModified":"1301901897000","name":"William Job","type":"Person","_key":"23843"} +{"label":"Ave Ninchi","version":25,"id":"40165","lastModified":"1301902026000","name":"Ave Ninchi","type":"Person","_key":"23844"} +{"label":"Madigan","description":"No overview found.","id":"4931","runtime":101,"imdbId":"tt0063256","version":83,"lastModified":"1301903982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a14\/4bc91b7a017a3c57fe00aa14\/madigan-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Madigan","releaseDate":-55555200000,"language":"en","type":"Movie","_key":"23845"} +{"label":"Susan Clark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4bd5f9d8017a3c658a0000db\/susan-clark-profile.jpg","version":28,"id":"40168","lastModified":"1301901804000","name":"Susan Clark","type":"Person","_key":"23846"} +{"label":"Steve Ihnat","version":24,"id":"16101","lastModified":"1301901567000","name":"Steve Ihnat","type":"Person","_key":"23847"} +{"label":"A Guide for the Married Man","description":"No overview found.","id":"4932","runtime":89,"imdbId":"tt0061736","version":75,"lastModified":"1301903564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4c97dd5d5e73d6554a000042\/a-guide-for-the-married-man-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"A Guide for the Married Man","releaseDate":-82252800000,"language":"en","type":"Movie","_key":"23848"} +{"label":"Robert Morse","version":33,"id":"40173","lastModified":"1301901149000","name":"Robert Morse","type":"Person","_key":"23849"} +{"label":"Lucille Ball","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25b\/4c503a837b9aa136d000025b\/lucille-ball-profile.jpg","version":52,"id":"40174","birthplace":"Jamestown, New York","lastModified":"1301901224000","name":"Lucille Ball","type":"Person","_key":"23850"} +{"label":"Polly Bergen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4d7001227b9aa130000010a7\/polly-bergen-profile.jpg","version":35,"id":"40175","lastModified":"1301901350000","name":"Polly Bergen","type":"Person","_key":"23851"} +{"label":"Art Carney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f8d\/4c7408e57b9aa13ab9000f8d\/art-carney-profile.jpg","version":38,"id":"40176","lastModified":"1301901715000","name":"Art Carney","type":"Person","_key":"23852"} +{"label":"Jayne Mansfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/759\/4c62f8f07b9aa172da000759\/jayne-mansfield-profile.jpg","biography":"Jayne Mansfield (April 19, 1933 \u2013 June 29, 1967) was an American actress working both on Broadway and in Hollywood. One of the leading blonde sex symbols of the 1950s,[1] Mansfield starred in several popular Hollywood films that emphasized her platinum-blonde hair, hourglass figure and cleavage-revealing costumes.\r\n\r\nWhile Mansfield's film career was short-lived, she had several box office successes. She won the Theatre World Award, a Golden Globe and a Golden Laurel. As the demand for blonde bo","version":33,"birthday":"-1158282000000","id":"40177","birthplace":"Bryn Mawr, Pennsylvania","lastModified":"1301901490000","name":"Jayne Mansfield","type":"Person","_key":"23853"} +{"label":"Phil Silvers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d2\/4c751c7a7b9aa1660a0000d2\/phil-silvers-profile.jpg","version":36,"id":"40178","lastModified":"1301901603000","name":"Phil Silvers","type":"Person","_key":"23854"} +{"label":"Jackie Russell","version":19,"id":"40179","lastModified":"1301901897000","name":"Jackie Russell","type":"Person","_key":"23855"} +{"label":"The Buccaneer","description":"No overview found.","id":"4933","runtime":119,"imdbId":"tt0051436","version":59,"lastModified":"1301904475000","studio":"Paramount Pictures","genre":"Adventure","title":"The Buccaneer","releaseDate":-348969600000,"language":"en","type":"Movie","_key":"23856"} +{"label":"Henry Hull","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f27\/4be939e6017a3c35b5000f27\/henry-hull-profile.jpg","version":50,"id":"40180","lastModified":"1301901530000","name":"Henry Hull","type":"Person","_key":"23857"} +{"label":"Lorne Greene","version":28,"id":"40181","lastModified":"1301901316000","name":"Lorne Greene","type":"Person","_key":"23858"} +{"label":"Firecreek","description":"A peace-loving, part-time sheriff in the small town of Firecreek must take a stand when a gang of vicious outlaws takes over his town.","id":"4934","runtime":104,"imdbId":"tt0062975","trailer":"http:\/\/www.youtube.com\/watch?v=qcE9mSwPp2Y","version":102,"lastModified":"1301904630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/390\/4d7b81a65e73d62828001390\/firecreek-mid.jpg","studio":"Warner Bros. Pictures","genre":"Western","title":"Firecreek","releaseDate":-61171200000,"language":"en","type":"Movie","_key":"23859"} +{"label":"Vincent McEveety","version":28,"id":"15657","lastModified":"1301901360000","name":"Vincent McEveety","type":"Person","_key":"23860"} +{"label":"James Best","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d8e\/4c68310b5e73d63462000d8e\/james-best-profile.jpg","version":37,"id":"40185","lastModified":"1301901379000","name":"James Best","type":"Person","_key":"23861"} +{"label":"Barbara Luna","version":17,"id":"15950","lastModified":"1301902002000","name":"Barbara Luna","type":"Person","_key":"23862"} +{"label":"Jacqueline Scott","version":20,"id":"40186","lastModified":"1301901617000","name":"Jacqueline Scott","type":"Person","_key":"23863"} +{"label":"Howl's Moving Castle","description":"When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.","id":"4935","runtime":120,"imdbId":"tt0347149","trailer":"http:\/\/www.youtube.com\/watch?v=57r9jjqzJJk","version":174,"lastModified":"1301992211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a34\/4bc91b80017a3c57fe00aa34\/4935-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Howl's Moving Castle","releaseDate":1094342400000,"language":"en","type":"Movie","_key":"23864"} +{"label":"Chieko Baisho","version":27,"id":"40448","lastModified":"1301901413000","name":"Chieko Baisho","type":"Person","_key":"23865"} +{"label":"Mitsunori Isaki","version":30,"id":"40449","lastModified":"1301901418000","name":"Mitsunori Isaki","type":"Person","_key":"23866"} +{"label":"Y\u00f4 \u00d4izumi","version":25,"id":"40450","lastModified":"1301901464000","name":"Y\u00f4 \u00d4izumi","type":"Person","_key":"23867"} +{"label":"Akio \u00d4tsuka","version":41,"id":"40451","lastModified":"1301901166000","name":"Akio \u00d4tsuka","type":"Person","_key":"23868"} +{"label":"Daijiro Harada","version":27,"id":"40452","lastModified":"1301901455000","name":"Daijiro Harada","type":"Person","_key":"23869"} +{"label":"Haruko Kato","version":27,"id":"40453","lastModified":"1301901579000","name":"Haruko Kato","type":"Person","_key":"23870"} +{"label":"Route 66 - ein amerikanischer albTraum","description":"Germany's first Open Source movie. A gonzo style documentary.","id":"4936","runtime":104,"imdbId":"tt0419100","trailer":"http:\/\/www.youtube.com\/watch?v=299","homepage":"http:\/\/www.vebfilm.net\/content\/blogcategory\/29\/37\/lang,en\/","version":40,"lastModified":"1301905564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f96\/4d1470e85e73d60834001f96\/route-66-ein-amerikanischer-albtraum-mid.jpg","studio":"Kluge & Bechholds Productions","genre":"Documentary","title":"Route 66 - ein amerikanischer albTraum","releaseDate":1103587200000,"language":"en","type":"Movie","_key":"23871"} +{"label":"The Borgia Stick","description":"No overview found.","id":"4937","runtime":120,"imdbId":"tt0061419","version":61,"lastModified":"1301908601000","studio":"Universal TV","genre":"Crime","title":"The Borgia Stick","releaseDate":-89942400000,"language":"en","type":"Movie","_key":"23872"} +{"label":"David Lowell Rich","version":33,"id":"40187","lastModified":"1301901569000","name":"David Lowell Rich","type":"Person","_key":"23873"} +{"label":"Marc Connelly","version":22,"id":"40192","lastModified":"1301901715000","name":"Marc Connelly","type":"Person","_key":"23874"} +{"label":"Kathleen Maguire","version":22,"id":"40193","lastModified":"1301901677000","name":"Kathleen Maguire","type":"Person","_key":"23875"} +{"label":"House Jameson","version":24,"id":"40194","lastModified":"1301901817000","name":"House Jameson","type":"Person","_key":"23876"} +{"label":"The Last Frontier","description":"No overview found.","id":"4938","runtime":98,"imdbId":"tt0049431","version":263,"lastModified":"1301908342000","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Last Frontier","releaseDate":-444009600000,"language":"en","type":"Movie","_key":"23877"} +{"label":"Anthony Mann","version":59,"id":"40199","lastModified":"1302027776000","name":"Anthony Mann","type":"Person","_key":"23878"} +{"label":"Guy Madison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f0\/4bf1731b017a3c32120001f0\/guy-madison-profile.jpg","version":25,"id":"40201","lastModified":"1301901363000","name":"Guy Madison","type":"Person","_key":"23879"} +{"label":"Robert Preston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79a\/4c65af057b9aa1775a00079a\/robert-preston-profile.jpg","version":46,"id":"40202","lastModified":"1301901657000","name":"Robert Preston","type":"Person","_key":"23880"} +{"label":"Send Me No Flowers","description":"When he mistakenly thinks he's dying, a hypochondriac tries to choose his wife's next husband.","id":"4939","runtime":100,"imdbId":"tt0058571","trailer":"http:\/\/www.youtube.com\/watch?v=wJuDJNhSMGs","version":127,"lastModified":"1301907110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5c\/4d126e3f5e73d6082e000e5c\/send-me-no-flowers-mid.jpg","studio":"Martin Melcher Productions","genre":"Comedy","title":"Send Me No Flowers","releaseDate":-164592000000,"language":"en","type":"Movie","_key":"23881"} +{"label":"Tony Randall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/690\/4c62f7037b9aa172d9000690\/tony-randall-profile.jpg","version":47,"id":"40206","lastModified":"1301901279000","name":"Tony Randall","type":"Person","_key":"23882"} +{"label":"Patricia Barry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4d934f0a5e73d6227700112f\/patricia-barry-profile.jpg","biography":"Patricia received her first break into acting very soon after she graduated from Stephens College in the mid 1940s. Almost immediately after graduating, she received a contract from Columbus Pictures. They recognized that she had the rare combination of beauty, grace and intelligence that would serve her well throughout her long and well-respected career. When she first signed with Colombia Pictures, she was known as Patricia White. A few years later, in the late 1940s, she met Philip Barry, Jr.","version":33,"birthday":"-1518742800000","id":"40208","birthplace":"Davenport, Iowa, USA","lastModified":"1301901644000","name":"Patricia Barry","type":"Person","_key":"23883"} +{"label":"Paul Lynde","version":25,"id":"40209","lastModified":"1301901598000","name":"Paul Lynde","type":"Person","_key":"23884"} +{"label":"Hal March","version":21,"id":"40210","lastModified":"1301901677000","name":"Hal March","type":"Person","_key":"23885"} +{"label":"Clive Clerk","version":21,"id":"40211","lastModified":"1301901677000","name":"Clive Clerk","type":"Person","_key":"23886"} +{"label":"Dave Willock","version":27,"id":"40212","lastModified":"1301901804000","name":"Dave Willock","type":"Person","_key":"23887"} +{"label":"The Night of the Grizzly","description":"No overview found.","id":"4940","runtime":108,"imdbId":"tt0060754","version":246,"lastModified":"1301906491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56c\/4c5aceb77b9aa151f300056c\/the-night-of-the-grizzly-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Night of the Grizzly","releaseDate":-97891200000,"language":"en","type":"Movie","_key":"23888"} +{"label":"Joseph Pevney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55c\/4bfaa678017a3c703100055c\/joseph-pevney-profile.jpg","version":28,"id":"15705","lastModified":"1301901346000","name":"Joseph Pevney","type":"Person","_key":"23889"} +{"label":"Ron Ely","version":21,"id":"40219","lastModified":"1301901603000","name":"Ron Ely","type":"Person","_key":"23890"} +{"label":"Kevin Brodie","version":19,"id":"40220","lastModified":"1301901737000","name":"Kevin Brodie","type":"Person","_key":"23891"} +{"label":"Don Haggerty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c6\/4c06c184017a3c7e870004c6\/don-haggerty-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b><div style=\"display: inline !important; \"><font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\"><span style=\"font-size: 12px; font-weight: normal; line-height: normal;\">Don Haggerty (b. July 3, 1914, Poughkeepsie, New York \u2013 d. August 19, 1988, Cocoa Beach, Florida) was an American film actor appearing in films in the 1940s and 1950s. <\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\" size=\"3\">","version":34,"birthday":"-1751418000000","id":"40221","birthplace":"Poughkeepsie, New York, USA","lastModified":"1301901378000","name":"Don Haggerty","type":"Person","_key":"23892"} +{"label":"White Jazz","description":"No overview found.","id":"4941","runtime":0,"imdbId":"tt0892384","version":81,"lastModified":"1301418663000","studio":"Cherry Road Films LLC","title":"White Jazz","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"23893"} +{"label":"Joe Carnahan","version":67,"id":"40223","lastModified":"1301901235000","name":"Joe Carnahan","type":"Person","_key":"23894"} +{"label":"Leatherheads","description":"A light hearted comedy about the beginnings of Professional American Football. When a decorated war hero and college all star is tempted into playing professional football. Everyone see the chance to make some big money, but when a reporter digs up some dirt on the war hero... everyone could lose out.","id":"4942","runtime":114,"imdbId":"tt0379865","trailer":"http:\/\/www.youtube.com\/watch?v=564","homepage":"http:\/\/www.leatherheadsmovie.com\/","version":272,"lastModified":"1301902736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ce\/4d35df6d7b9aa178a700b0ce\/leatherheads-mid.jpg","studio":"Casey Silver Productions","genre":"Comedy","title":"Leatherheads","releaseDate":1206316800000,"language":"en","type":"Movie","_key":"23895"} +{"label":"Matt Bushell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cd\/4c8cf3285e73d6068e0004cd\/matt-bushell-profile.jpg","version":36,"id":"57995","lastModified":"1301992520000","name":"Matt Bushell","type":"Person","_key":"23896"} +{"label":"Nick Paonessa","version":23,"id":"57996","lastModified":"1301902005000","name":"Nick Paonessa","type":"Person","_key":"23897"} +{"label":"Malcolm Goodwin","version":30,"id":"57997","lastModified":"1301901281000","name":"Malcolm Goodwin","type":"Person","_key":"23898"} +{"label":"Tim Griffin","version":24,"id":"27031","lastModified":"1301901689000","name":"Tim Griffin","type":"Person","_key":"23899"} +{"label":"Burn After Reading","description":"This is comedic tale of espionage. An ousted CIA official's memoir accidentally falls into the hands of two unwise gym employees intent on exploiting their find. \n","id":"4944","runtime":96,"imdbId":"tt0887883","trailer":"http:\/\/www.youtube.com\/watch?v=eMWu6i7l5ec","version":272,"lastModified":"1301901253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7a\/4d35df9b7b9aa17b3700ad7a\/burn-after-reading-mid.jpg","studio":"Working Title Films","genre":"Comedy","title":"Burn After Reading","releaseDate":1221177600000,"language":"en","tagline":"Intelligence is relative.","type":"Movie","_key":"23900"} +{"label":"Man on Fire","description":"No overview found.","id":"4945","runtime":95,"imdbId":"tt0050682","version":73,"lastModified":"1301904629000","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Man on Fire","releaseDate":-390096000000,"language":"en","type":"Movie","_key":"23901"} +{"label":"Mary Fickett","version":20,"id":"40231","lastModified":"1301901582000","name":"Mary Fickett","type":"Person","_key":"23902"} +{"label":"Malcolm Brodrick","version":18,"id":"40232","lastModified":"1301901688000","name":"Malcolm Brodrick","type":"Person","_key":"23903"} +{"label":"Anne Seymour","version":23,"id":"40233","lastModified":"1301901477000","name":"Anne Seymour","type":"Person","_key":"23904"} +{"label":"Dan Riss","version":25,"id":"40234","lastModified":"1301901703000","name":"Dan Riss","type":"Person","_key":"23905"} +{"label":"The Swimming Pool","description":"Delon, Schneider and Ronet are a love triangle that leads to disaster.","id":"4946","runtime":120,"imdbId":"tt0064816","version":85,"lastModified":"1301903158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a93\/4bc91b8f017a3c57fe00aa93\/la-piscine-mid.jpg","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Crime","title":"The Swimming Pool","releaseDate":-28944000000,"language":"en","type":"Movie","_key":"23906"} +{"label":"Jacques Deray","version":34,"id":"40235","lastModified":"1301901357000","name":"Jacques Deray","type":"Person","_key":"23907"} +{"label":"Une femme \u00e0 sa fen\u00eatre","description":"No overview found.","id":"4947","runtime":110,"imdbId":"tt0075370","version":37,"lastModified":"1301907421000","studio":"Albina Productions S.a.r.l.","genre":"Crime","title":"Une femme \u00e0 sa fen\u00eatre","releaseDate":216432000000,"language":"en","type":"Movie","_key":"23908"} +{"label":"Clair de femme","description":"No overview found.","id":"4948","runtime":105,"imdbId":"tt0078978","version":44,"lastModified":"1300978355000","studio":"Georges-Alain Vuille Production","genre":"Drama","title":"Clair de femme","releaseDate":304732800000,"language":"en","type":"Movie","_key":"23909"} +{"label":"A Time for Killing","description":"During the Civil War, Confederate soldiers escape from a Union prison and head for the Mexican border. Along the way, they kill a Union courier bearing the news that the war is over. Keeping the message a secret, the captain has his men go on and they soon find themselves in a battle with the Union search party who also is unaware of the war's end.","id":"4949","runtime":88,"imdbId":"tt0062373","version":85,"lastModified":"1301903563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9c\/4bc91b91017a3c57fe00aa9c\/a-time-for-killing-mid.jpg","studio":"Columbia Pictures Corporation","genre":"History","title":"A Time for Killing","releaseDate":-76377600000,"language":"en","type":"Movie","_key":"23910"} +{"label":"Todd Armstrong","version":24,"id":"40241","lastModified":"1301901956000","name":"Todd Armstrong","type":"Person","_key":"23911"} +{"label":"Max Baer Jr.","version":20,"id":"40242","lastModified":"1301901897000","name":"Max Baer Jr.","type":"Person","_key":"23912"} +{"label":"Ulysse est revenu","description":"No overview found.","id":"4950","runtime":90,"imdbId":"tt0176265","version":32,"lastModified":"1301907422000","genre":"Drama","title":"Ulysse est revenu","releaseDate":268272000000,"language":"en","type":"Movie","_key":"23913"} +{"label":"10 Things I Hate About You","description":"Bianca, a tenth grader has never gone on a date, but she isn't allowed to go out with boys until her older sister gets a boyfriend. The problem is, Kat rubs nearly everyone the wrong way. But Bianca and the guy she has her eye on, Joey, are eager, so Joey fixes Kat up with Patrick, a new kid in town just bitter enough for Kat.","id":"4951","runtime":97,"imdbId":"tt0147800","trailer":"http:\/\/www.youtube.com\/watch?v=h-n3gclQ1ak","version":168,"lastModified":"1301901202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acd\/4bc91b99017a3c57fe00aacd\/10-things-i-hate-about-you-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"10 Things I Hate About You","releaseDate":917740800000,"language":"en","tagline":"How do I loathe thee? Let me count the ways.","type":"Movie","_key":"23914"} +{"label":"Gil Junger","version":45,"id":"40243","lastModified":"1301901405000","name":"Gil Junger","type":"Person","_key":"23915"} +{"label":"Larisa Oleynik","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ab\/4cc8494c5e73d650240002ab\/larisa-oleynik-profile.jpg","version":33,"id":"40978","lastModified":"1301901175000","name":"Larisa Oleynik","type":"Person","_key":"23916"} +{"label":"Andrew Keegan","version":35,"id":"40979","lastModified":"1301901177000","name":"Andrew Keegan","type":"Person","_key":"23917"} +{"label":"Susan May Pratt","version":33,"id":"40980","lastModified":"1301901401000","name":"Susan May Pratt","type":"Person","_key":"23918"} +{"label":"Kyle Cease","version":22,"id":"40981","lastModified":"1301901464000","name":"Kyle Cease","type":"Person","_key":"23919"} +{"label":"Greg Jackson","version":22,"id":"40982","lastModified":"1301901523000","name":"Greg Jackson","type":"Person","_key":"23920"} +{"label":"Pillow Talk","description":"A man and woman share a telephone line and despise each other, but then he has fun by romancing her with his voice disguised.","id":"4952","runtime":102,"imdbId":"tt0053172","trailer":"http:\/\/www.youtube.com\/watch?v=jVaCxZgZbOY","version":163,"lastModified":"1301904193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4c978fab7b9aa10d5c000511\/pillow-talk-mid.jpg","studio":"Arwin Productions","genre":"Comedy","title":"Pillow Talk","releaseDate":-323049600000,"language":"en","type":"Movie","_key":"23921"} +{"label":"Julia Meade","version":21,"id":"40247","lastModified":"1301901817000","name":"Julia Meade","type":"Person","_key":"23922"} +{"label":"Be Kind Rewind","description":"A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.","id":"4953","runtime":101,"imdbId":"tt0799934","trailer":"http:\/\/www.youtube.com\/watch?v=hBDlB01fQYo","version":173,"lastModified":"1301901901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/355\/4c8c2ce35e73d6068c000355\/be-kind-rewind-mid.jpg","studio":"Partizan","genre":"Comedy","title":"Be Kind Rewind","releaseDate":1201219200000,"language":"en","tagline":"You name it, we shoot it.","type":"Movie","_key":"23923"} +{"label":"Drop Zone","description":"A team of skydiving crooks led by DEA-agent-turned-bad Busey specialize in landing on police roofs and breaking in so their evil computer nerd can steal undercover agents' files and sell them to drug lords. Federal Marshal Snipes lost a brother to this crew and learns skydiving with the help of tough-but-lovable instructor Butler so he can track them down. ","id":"4954","runtime":101,"imdbId":"tt0109676","trailer":"http:\/\/www.youtube.com\/watch?v=8s9nvB7Oc8s","version":170,"lastModified":"1301903319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0e\/4bc91ba5017a3c57fe00ab0e\/drop-zone-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Drop Zone","releaseDate":786931200000,"language":"en","type":"Movie","_key":"23924"} +{"label":"Kyle Secor","version":28,"id":"40258","lastModified":"1301901779000","name":"Kyle Secor","type":"Person","_key":"23925"} +{"label":"Malcolm-Jamal Warner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9c0\/4d60246a7b9aa154cf0039c0\/malcolm-jamal-warner-profile.jpg","version":30,"id":"40259","lastModified":"1301901476000","name":"Malcolm-Jamal Warner","type":"Person","_key":"23926"} +{"label":"M\u00e4dchen in Uniform","description":"No overview found.","id":"4955","runtime":95,"imdbId":"tt0051964","version":78,"lastModified":"1301907284000","studio":"Les Films Modernes","genre":"Drama","title":"M\u00e4dchen in Uniform","releaseDate":-362448000000,"language":"en","type":"Movie","_key":"23927"} +{"label":"Therese Giehse","version":23,"id":"40251","lastModified":"1301901670000","name":"Therese Giehse","type":"Person","_key":"23928"} +{"label":"Sabine Sinjen","version":19,"id":"26300","lastModified":"1301901737000","name":"Sabine Sinjen","type":"Person","_key":"23929"} +{"label":"Blandine Ebinger","version":21,"id":"40252","lastModified":"1301901897000","name":"Blandine Ebinger","type":"Person","_key":"23930"} +{"label":"Danik Patisson","version":19,"id":"40993","lastModified":"1301901897000","name":"Danik Patisson","type":"Person","_key":"23931"} +{"label":"Ginette Pigeon","version":19,"id":"40994","lastModified":"1301901897000","name":"Ginette Pigeon","type":"Person","_key":"23932"} +{"label":"Roma Bahn","version":20,"id":"40996","lastModified":"1301901935000","name":"Roma Bahn","type":"Person","_key":"23933"} +{"label":"Margaret Jahnen","version":19,"id":"40997","lastModified":"1301901897000","name":"Margaret Jahnen","type":"Person","_key":"23934"} +{"label":"Ulla Moritz","version":20,"id":"40998","lastModified":"1301901897000","name":"Ulla Moritz","type":"Person","_key":"23935"} +{"label":"Edith Helou","version":19,"id":"41000","lastModified":"1301901897000","name":"Edith Helou","type":"Person","_key":"23936"} +{"label":"Tessy Aselmeier","version":19,"id":"41001","lastModified":"1301901737000","name":"Tessy Aselmeier","type":"Person","_key":"23937"} +{"label":"Edith Adana","version":19,"id":"41002","lastModified":"1301901897000","name":"Edith Adana","type":"Person","_key":"23938"} +{"label":"K\u00e4the Kamossa","version":18,"id":"41003","lastModified":"1301901987000","name":"K\u00e4the Kamossa","type":"Person","_key":"23939"} +{"label":"Regine Burghardt","version":18,"id":"41005","lastModified":"1301901987000","name":"Regine Burghardt","type":"Person","_key":"23940"} +{"label":"Marthe Mercadier","version":20,"id":"104087","lastModified":"1301902648000","name":"Marthe Mercadier","type":"Person","_key":"23941"} +{"label":"G\u00e9za von Radv\u00e1nyi","version":22,"id":"40983","lastModified":"1301901477000","name":"G\u00e9za von Radv\u00e1nyi","type":"Person","_key":"23942"} +{"label":"Eva Ebner","version":19,"id":"40984","lastModified":"1301901617000","name":"Eva Ebner","type":"Person","_key":"23943"} +{"label":"Christine","description":"No overview found.","id":"4956","runtime":100,"imdbId":"tt0051477","version":74,"lastModified":"1301904392000","studio":"Sp\u00e9va Films","genre":"Drama","title":"Christine","releaseDate":-348278400000,"language":"en","type":"Movie","_key":"23944"} +{"label":"Jean Galland","version":22,"id":"40897","lastModified":"1301901678000","name":"Jean Galland","type":"Person","_key":"23945"} +{"label":"The Legend of Bagger Vance","description":"From Academy Award\u00ae-winning director Robert Redford\u2020 comes a film that celebrates the power and potential of the human spirit. A tale of a local hero with a promising future whose hopes are shattered on the battlefields of war. The disillusioned young man turns his back on the world \u2013 until a fateful visit from a mysterious stranger turns his life around.","id":"4958","runtime":128,"imdbId":"tt0146984","version":142,"lastModified":"1301903017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b17\/4bc91ba6017a3c57fe00ab17\/the-legend-of-bagger-vance-mid.jpg","studio":"Allied Filmmakers","genre":"Drama","title":"The Legend of Bagger Vance","releaseDate":972604800000,"language":"en","type":"Movie","_key":"23946"} +{"label":"Joel Gretsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/493\/4d10cae15e73d6083e000493\/joel-gretsch-profile.jpg","version":42,"id":"25376","lastModified":"1301901247000","name":"Joel Gretsch","type":"Person","_key":"23947"} +{"label":"J. Michael Moncrief","version":22,"id":"40253","lastModified":"1301901254000","name":"J. Michael Moncrief","type":"Person","_key":"23948"} +{"label":"Wilbur Fitzgerald","version":27,"id":"41019","lastModified":"1301901200000","name":"Wilbur Fitzgerald","type":"Person","_key":"23949"} +{"label":"E. Roger Mitchell","version":22,"id":"41020","lastModified":"1301901280000","name":"E. Roger Mitchell","type":"Person","_key":"23950"} +{"label":"The International","description":"An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice . Uncovering illegal activities including money laundering, arms trading, and the destabilization of governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.","id":"4959","runtime":118,"imdbId":"tt0963178","trailer":"http:\/\/www.youtube.com\/watch?v=5mDi49Qj1xk","homepage":"http:\/\/www.sonypictures.com\/movies\/theinternational\/site\/","version":239,"lastModified":"1301901987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b44\/4bc91bad017a3c57fe00ab44\/the-international-mid.jpg","studio":"Studio Babelsberg","genre":"Action","title":"The International","releaseDate":1233792000000,"language":"en","tagline":"Is your money making a killing?","type":"Movie","_key":"23951"} +{"label":"Patrick Baladi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/453\/4d324c675e73d63352001453\/patrick-baladi-profile.jpg","version":29,"id":"43019","lastModified":"1302064749000","name":"Patrick Baladi","type":"Person","_key":"23952"} +{"label":"Jay Villiers","version":30,"id":"47589","lastModified":"1302064749000","name":"Jay Villiers","type":"Person","_key":"23953"} +{"label":"Michel Voletti","version":25,"id":"68056","lastModified":"1302064749000","name":"Michel Voletti","type":"Person","_key":"23954"} +{"label":"Synecdoche, New York","description":"A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.","id":"4960","runtime":124,"imdbId":"tt0383028","trailer":"http:\/\/www.youtube.com\/watch?v=1077","homepage":"http:\/\/www.sonyclassics.com\/synecdocheny","version":159,"lastModified":"1301922071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b56\/4bc91bb0017a3c57fe00ab56\/synecdoche-new-york-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Synecdoche, New York","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"23955"} +{"label":"Charlie Kaufman","version":60,"id":"202","lastModified":"1299491918000","name":"Charlie Kaufman","type":"Person","_key":"23956"} +{"label":"Mimic","description":"Three years ago entomologist Dr. Susan Tyler genetically created an insect to kill cockroaches carrying a virulent disease, now the insects are out to destroy their only predator, mankind!","id":"4961","runtime":105,"imdbId":"tt0119675","trailer":"http:\/\/www.youtube.com\/watch?v=76Uk0GISiog","version":113,"lastModified":"1301905763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5f\/4bc91bb0017a3c57fe00ab5f\/mimic-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Mimic","releaseDate":872208000000,"language":"en","type":"Movie","_key":"23957"} +{"label":"Alexander Goodwin","version":19,"id":"40271","lastModified":"1301901897000","name":"Alexander Goodwin","type":"Person","_key":"23958"} +{"label":"Adieu, plancher des vaches!","description":"No overview found.","id":"4962","runtime":118,"imdbId":"tt0205725","version":53,"lastModified":"1301906751000","studio":"Alia Films","genre":"Comedy","title":"Adieu, plancher des vaches!","releaseDate":944006400000,"language":"en","type":"Movie","_key":"23959"} +{"label":"Otar Iosseliani","version":22,"id":"40260","lastModified":"1301901790000","name":"Otar Iosseliani","type":"Person","_key":"23960"} +{"label":"Nico Tarielashvili","version":20,"id":"40261","lastModified":"1301901657000","name":"Nico Tarielashvili","type":"Person","_key":"23961"} +{"label":"Lily Lavina","version":20,"id":"40262","lastModified":"1301901657000","name":"Lily Lavina","type":"Person","_key":"23962"} +{"label":"Philippe Bas","version":24,"id":"32707","lastModified":"1301901447000","name":"Philippe Bas","type":"Person","_key":"23963"} +{"label":"Stephanie Hainque","version":18,"id":"41027","lastModified":"1301901672000","name":"Stephanie Hainque","type":"Person","_key":"23964"} +{"label":"Mirabelle Kirkland","version":20,"id":"41028","lastModified":"1301901965000","name":"Mirabelle Kirkland","type":"Person","_key":"23965"} +{"label":"Te quiero","description":"No overview found.","id":"4963","runtime":85,"imdbId":"tt0217085","version":69,"lastModified":"1301908600000","studio":"Cofimage 11","genre":"Crime","title":"Te quiero","releaseDate":982108800000,"language":"en","type":"Movie","_key":"23966"} +{"label":"Manuel Poirier","version":30,"id":"40263","lastModified":"1301901468000","name":"Manuel Poirier","type":"Person","_key":"23967"} +{"label":"Marine Delterme","version":27,"id":"40264","lastModified":"1301901790000","name":"Marine Delterme","type":"Person","_key":"23968"} +{"label":"Patricia Farfan Villena","version":21,"id":"40265","lastModified":"1301901657000","name":"Patricia Farfan Villena","type":"Person","_key":"23969"} +{"label":"Maruschka Detmers","version":28,"id":"40266","lastModified":"1301901790000","name":"Maruschka Detmers","type":"Person","_key":"23970"} +{"label":"Antoine Pereniguez","version":18,"id":"41036","lastModified":"1301901987000","name":"Antoine Pereniguez","type":"Person","_key":"23971"} +{"label":"Natalia C\u00e1rdenas","version":18,"id":"41038","lastModified":"1301901987000","name":"Natalia C\u00e1rdenas","type":"Person","_key":"23972"} +{"label":"Knocked Up","description":"For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.","id":"4964","runtime":129,"imdbId":"tt0478311","trailer":"http:\/\/www.youtube.com\/watch?v=K6oqO-xMERc","homepage":"http:\/\/knockedupmovie.com\/","version":331,"lastModified":"1301907550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a3\/4c96df335e73d63a760005a3\/knocked-up-mid.jpg","studio":"Apatow Productions","genre":"Comedy","title":"Knocked Up","releaseDate":1180137600000,"language":"en","tagline":"Save the due date","type":"Movie","_key":"23973"} +{"label":"Judd Apatow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/180\/4d05884d5e73d621a0003180\/judd-apatow-profile.jpg","version":155,"id":"41039","lastModified":"1301976645000","name":"Judd Apatow","type":"Person","_key":"23974"} +{"label":"Leslie Mann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/003\/4bed6b1c017a3c3c79000003\/leslie-mann-profile.jpg","version":72,"birthday":"70412400000","id":"41087","birthplace":"San Francisco, California, USA","lastModified":"1301904065000","name":"Leslie Mann","type":"Person","_key":"23975"} +{"label":"Jason Segel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4bed6c05017a3c4596000001\/jason-segel-profile.jpg","version":152,"birthday":"316998000000","id":"41088","birthplace":"Los Angeles, California, USA","lastModified":"1301904059000","name":"Jason Segel","type":"Person","_key":"23976"} +{"label":"Martin Starr","version":42,"id":"41089","lastModified":"1301976644000","name":"Martin Starr","type":"Person","_key":"23977"} +{"label":"Maude Apatow","version":24,"id":"41090","lastModified":"1301901582000","name":"Maude Apatow","type":"Person","_key":"23978"} +{"label":"Kristen Wiig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a4f\/4bfd4313017a3c702b000a4f\/kristen-wiig-profile.jpg","version":123,"id":"41091","lastModified":"1301904067000","name":"Kristen Wiig","type":"Person","_key":"23979"} +{"label":"Impostor","description":"Gary Sinise plays Spencer Olham, a top-secret government weapons designer who is arrested by a clandestine government organization on suspicion of being a clone created by the hostile alien race wanting to take over Earth.","id":"4965","runtime":102,"imdbId":"tt0160399","version":101,"lastModified":"1301904623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17f\/4bf3ff51017a3c6d9200017f\/impostor-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Impostor","releaseDate":1010102400000,"language":"en","tagline":"In the Future, not everyone is who they seem to be.","type":"Movie","_key":"23980"} +{"label":"Tim Guinee","version":41,"id":"40275","lastModified":"1301901284000","name":"Tim Guinee","type":"Person","_key":"23981"} +{"label":"Gary Dourdan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bb\/4c476e2b5e73d61efd0002bb\/gary-dourdan-profile.jpg","version":47,"id":"40276","lastModified":"1301901102000","name":"Gary Dourdan","type":"Person","_key":"23982"} +{"label":"Pan Tadeusz","description":"No overview found.","id":"4966","runtime":150,"imdbId":"tt0170351","version":95,"lastModified":"1301905668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4bcc693d017a3c0f320000f9\/pan-tadeusz-mid.jpg","studio":"Canal+Polska","genre":"Drama","title":"Pan Tadeusz","releaseDate":915148800000,"language":"en","type":"Movie","_key":"23983"} +{"label":"Keeping the Faith","description":"Three childhood friends, now a priest, a rabbi, and a successful career woman, meet up again. Against the backdrop of the setup for a new community centre, Jack and Anna start a relationship, causing confusion for Brian.","id":"4967","runtime":128,"imdbId":"tt0171433","version":114,"lastModified":"1301902834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bad\/4bc91bbd017a3c57fe00abad\/keeping-the-faith-mid.jpg","studio":"Spyglass Entertainment","genre":"Comedy","title":"Keeping the Faith","releaseDate":954892800000,"language":"en","type":"Movie","_key":"23984"} +{"label":"Jenna Elfman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30d\/4bd1e7b3017a3c63e800030d\/jenna-elfman-profile.jpg","version":34,"id":"40279","lastModified":"1301901417000","name":"Jenna Elfman","type":"Person","_key":"23985"} +{"label":"The Piano Player","description":"A tale about the relationship between a businessman who launders money for a Mafia figure and his gangster bodyguard. ","id":"4968","runtime":91,"imdbId":"tt0293509","version":103,"lastModified":"1301905473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb6\/4bc91bbe017a3c57fe00abb6\/the-piano-player-mid.jpg","studio":"American Video Films","genre":"Action","title":"The Piano Player","releaseDate":1033862400000,"language":"en","type":"Movie","_key":"23986"} +{"label":"Jean-Pierre Roux","version":19,"id":"40280","lastModified":"1301901897000","name":"Jean-Pierre Roux","type":"Person","_key":"23987"} +{"label":"Simon Mabija","version":19,"id":"40284","lastModified":"1301901617000","name":"Simon Mabija","type":"Person","_key":"23988"} +{"label":"Jeane Manson","version":21,"id":"40285","lastModified":"1301901665000","name":"Jeane Manson","type":"Person","_key":"23989"} +{"label":"Mode Theu","version":19,"id":"40286","lastModified":"1301901737000","name":"Mode Theu","type":"Person","_key":"23990"} +{"label":"Gothika","description":"After a car crash, a criminal psychologist (Halle Berry) comes to, only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband -- but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.","id":"4970","runtime":95,"imdbId":"tt0348836","homepage":"http:\/\/gothikamovie.warnerbros.com\/","version":184,"lastModified":"1301901912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/234\/4d6812637b9aa13636000234\/gothika-mid.jpg","studio":"Warner Bros. Pictures","genre":"Horror","title":"Gothika","releaseDate":1068681600000,"language":"en","tagline":"Because someone is dead doesn't mean they're gone.","type":"Movie","_key":"23991"} +{"label":"Lucy","description":"No overview found.","id":"4971","runtime":93,"imdbId":"tt0756678","homepage":"http:\/\/www.lucy-der-film.de\/","version":76,"lastModified":"1301520647000","studio":"Schramm Film Koerner & Weber","genre":"Drama","title":"Lucy","releaseDate":1139875200000,"language":"en","type":"Movie","_key":"23992"} +{"label":"Henner Winckler","version":21,"id":"40290","lastModified":"1301901477000","name":"Henner Winckler","type":"Person","_key":"23993"} +{"label":"Gordon Schmidt","version":20,"id":"40292","lastModified":"1301901511000","name":"Gordon Schmidt","type":"Person","_key":"23994"} +{"label":"Feo Aladag","version":36,"id":"40213","lastModified":"1301901443000","name":"Feo Aladag","type":"Person","_key":"23995"} +{"label":"Ninjo Borth","version":20,"id":"40293","lastModified":"1301901511000","name":"Ninjo Borth","type":"Person","_key":"23996"} +{"label":"Ganeshi Becks","version":19,"id":"40294","lastModified":"1301901897000","name":"Ganeshi Becks","type":"Person","_key":"23997"} +{"label":"The Green Butchers","description":"The Green Butchers (Danish: De gr\u00f8nne slagtere) is a black comedy featuring two butchers, Svend \"Sweat\" and Bjarne, who start their own shop to get away from their arrogant boss. Cannibalism is soon introduced to the plot, and further complications arise due to the reappearance of Bjarne's mentally retarded twin brother Eigil.","id":"4972","runtime":100,"imdbId":"tt0342492","trailer":"http:\/\/www.youtube.com\/watch?v=tUEvBM82DzI","version":135,"lastModified":"1301903501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc8\/4bc91bbf017a3c57fe00abc8\/de-grnne-slagtere-mid.jpg","studio":"M&M Productions","genre":"Comedy","title":"The Green Butchers","releaseDate":1047081600000,"language":"en","type":"Movie","_key":"23998"} +{"label":"Aksel Erhardtsen","version":20,"id":"40298","lastModified":"1301901689000","name":"Aksel Erhardtsen","type":"Person","_key":"23999"} +{"label":"Lily Weiding","version":19,"id":"40299","lastModified":"1301901486000","name":"Lily Weiding","type":"Person","_key":"24000"} +{"label":"Camilla Bendix","version":19,"id":"40300","lastModified":"1301901486000","name":"Camilla Bendix","type":"Person","_key":"24001"} +{"label":"Sous le Sable","description":"No overview found.","id":"4973","runtime":96,"imdbId":"tt0240913","version":94,"lastModified":"1301904137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd2\/4bc91bc0017a3c57fe00abd2\/sous-le-sable-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Drama","title":"Sous le Sable","releaseDate":981504000000,"language":"en","type":"Movie","_key":"24002"} +{"label":"Jacques Nolot","version":32,"id":"40304","lastModified":"1301901807000","name":"Jacques Nolot","type":"Person","_key":"24003"} +{"label":"5x2","description":"Five stages in the romance between a woman and a man.","id":"4974","runtime":91,"imdbId":"tt0354356","trailer":"http:\/\/www.youtube.com\/watch?v=3137","version":88,"lastModified":"1301903227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdf\/4bc91bc4017a3c57fe00abdf\/5x2-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Drama","title":"5x2","releaseDate":1093996800000,"language":"en","type":"Movie","_key":"24004"} +{"label":"St\u00e9phane Freiss","version":37,"id":"40305","lastModified":"1301901241000","name":"St\u00e9phane Freiss","type":"Person","_key":"24005"} +{"label":"Love Is the Devil: Study for a Portrait of Francis Bacon","description":"Biography of the British painter Francis Bacon. The movie focuses on his relationship with George Dyer, his lover. Dyer was a former small time crook. ","id":"4975","runtime":90,"imdbId":"tt0119577","version":100,"lastModified":"1301903989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55b\/4c53c8207b9aa13d4a00055b\/love-is-the-devil-study-for-a-portrait-of-francis-bacon-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Love Is the Devil: Study for a Portrait of Francis Bacon","releaseDate":905904000000,"language":"en","type":"Movie","_key":"24006"} +{"label":"John Maybury","version":29,"id":"40307","lastModified":"1301901493000","name":"John Maybury","type":"Person","_key":"24007"} +{"label":"Anne Lambton","version":22,"id":"40310","lastModified":"1301901778000","name":"Anne Lambton","type":"Person","_key":"24008"} +{"label":"Adrian Scarborough","version":25,"id":"40311","lastModified":"1301901646000","name":"Adrian Scarborough","type":"Person","_key":"24009"} +{"label":"Annabel Brooks","version":21,"id":"40314","lastModified":"1301901947000","name":"Annabel Brooks","type":"Person","_key":"24010"} +{"label":"L'homme sur les quais","description":"No overview found.","id":"4976","runtime":106,"imdbId":"tt0107132","version":69,"lastModified":"1301907421000","studio":"Blue Films","genre":"Drama","title":"L'homme sur les quais","releaseDate":746236800000,"language":"en","type":"Movie","_key":"24011"} +{"label":"Raoul Peck","version":25,"id":"40312","lastModified":"1301901965000","name":"Raoul Peck","type":"Person","_key":"24012"} +{"label":"Jennifer Zubar","version":20,"id":"40313","lastModified":"1301901582000","name":"Jennifer Zubar","type":"Person","_key":"24013"} +{"label":"Toto Bissainthe","version":20,"id":"40315","lastModified":"1301901567000","name":"Toto Bissainthe","type":"Person","_key":"24014"} +{"label":"Patrick Rameau","version":20,"id":"40316","lastModified":"1301901657000","name":"Patrick Rameau","type":"Person","_key":"24015"} +{"label":"Jean-Michel Martial","version":20,"id":"40317","lastModified":"1301901567000","name":"Jean-Michel Martial","type":"Person","_key":"24016"} +{"label":"Mireille Metellus","version":20,"id":"40324","lastModified":"1301901790000","name":"Mireille Metellus","type":"Person","_key":"24017"} +{"label":"Paprika","description":"When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.","id":"4977","runtime":90,"imdbId":"tt0851578","trailer":"http:\/\/www.youtube.com\/watch?v=302","homepage":"http:\/\/www.sonyclassics.com\/paprika\/","version":237,"lastModified":"1301902834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf0\/4bc91bc6017a3c57fe00abf0\/paprika-mid.jpg","genre":"Animation","title":"Paprika","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"24018"} +{"label":"Megumi Hayashibara","version":60,"id":"40325","lastModified":"1301901606000","name":"Megumi Hayashibara","type":"Person","_key":"24019"} +{"label":"Akio \u00d4tsuka","version":24,"id":"40326","lastModified":"1301901417000","name":"Akio \u00d4tsuka","type":"Person","_key":"24020"} +{"label":"T\u00f4ru Furuya","version":36,"id":"40327","lastModified":"1301901606000","name":"T\u00f4ru Furuya","type":"Person","_key":"24021"} +{"label":"K\u00f4ichi Yamadera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2d\/4d26289e7b9aa134d3000c2d\/k-ichi-yamadera-profile.jpg","version":60,"birthday":"-269571600000","id":"40328","birthplace":"Shiogama, Japan","lastModified":"1301901124000","name":"K\u00f4ichi Yamadera","type":"Person","_key":"24022"} +{"label":"Katsunosuke Hori","version":24,"id":"40329","lastModified":"1301901457000","name":"Katsunosuke Hori","type":"Person","_key":"24023"} +{"label":"Toru Emori","version":28,"id":"40330","lastModified":"1301901607000","name":"Toru Emori","type":"Person","_key":"24024"} +{"label":"Daisuke Sakaguchi","version":27,"id":"40331","lastModified":"1301901683000","name":"Daisuke Sakaguchi","type":"Person","_key":"24025"} +{"label":"Rikako Aikawa","version":23,"id":"40332","lastModified":"1301901555000","name":"Rikako Aikawa","type":"Person","_key":"24026"} +{"label":"Satoshi Kon","version":35,"id":"40333","lastModified":"1299493809000","name":"Satoshi Kon","type":"Person","_key":"24027"} +{"label":"Yasutaka Tsutsui","version":37,"id":"40334","lastModified":"1301901506000","name":"Yasutaka Tsutsui","type":"Person","_key":"24028"} +{"label":"An American Tail","description":"A young mouse named Fievel and his family decide to migrate to America, a \"land without cats,\" at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.","id":"4978","runtime":80,"imdbId":"tt0090633","version":95,"lastModified":"1301902411000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf9\/4bc91bc7017a3c57fe00abf9\/an-american-tail-mid.jpg","studio":"Sullivan Bluth Studios","genre":"Drama","title":"An American Tail","releaseDate":532915200000,"language":"en","tagline":"Meet Fievel. In his search to find his family, he discovered America.","type":"Movie","_key":"24029"} +{"label":"Don Bluth","version":99,"id":"40345","lastModified":"1301901215000","name":"Don Bluth","type":"Person","_key":"24030"} +{"label":"Phillip Glasser","version":29,"id":"40348","lastModified":"1301901382000","name":"Phillip Glasser","type":"Person","_key":"24031"} +{"label":"Erica Yohn","version":29,"id":"40349","lastModified":"1301901386000","name":"Erica Yohn","type":"Person","_key":"24032"} +{"label":"Amy Green","version":23,"id":"40350","lastModified":"1301901677000","name":"Amy Green","type":"Person","_key":"24033"} +{"label":"John Finnegan","version":21,"id":"40351","lastModified":"1301901617000","name":"John Finnegan","type":"Person","_key":"24034"} +{"label":"Pat Musick","version":29,"id":"35349","lastModified":"1301901124000","name":"Pat Musick","type":"Person","_key":"24035"} +{"label":"Neil Ross","version":23,"id":"35222","lastModified":"1301901737000","name":"Neil Ross","type":"Person","_key":"24036"} +{"label":"Will Ryan","version":26,"id":"40352","lastModified":"1301901496000","name":"Will Ryan","type":"Person","_key":"24037"} +{"label":"Montag kommen die Fenster","description":"No overview found.","id":"4979","runtime":88,"imdbId":"tt0477038","version":73,"lastModified":"1300978362000","genre":"Drama","title":"Montag kommen die Fenster","releaseDate":1139529600000,"language":"en","type":"Movie","_key":"24038"} +{"label":"Ulrich K\u00f6hler","version":23,"id":"40357","lastModified":"1301901897000","name":"Ulrich K\u00f6hler","type":"Person","_key":"24039"} +{"label":"Annette Drees","version":17,"id":"5749","lastModified":"1301901491000","name":"Annette Drees","type":"Person","_key":"24040"} +{"label":"Isabelle Menke","version":20,"id":"40358","lastModified":"1301901817000","name":"Isabelle Menke","type":"Person","_key":"24041"} +{"label":"Hans-Jochen Wagner","version":21,"id":"28421","lastModified":"1301902108000","name":"Hans-Jochen Wagner","type":"Person","_key":"24042"} +{"label":"Amber Bongard","version":21,"id":"40359","lastModified":"1301901897000","name":"Amber Bongard","type":"Person","_key":"24043"} +{"label":"Elisa Seydel","version":19,"id":"40360","lastModified":"1301901897000","name":"Elisa Seydel","type":"Person","_key":"24044"} +{"label":"S\u00fclke Pierach","version":19,"id":"40361","lastModified":"1301901737000","name":"S\u00fclke Pierach","type":"Person","_key":"24045"} +{"label":"Ilie Nastase","version":19,"id":"40362","lastModified":"1301901737000","name":"Ilie Nastase","type":"Person","_key":"24046"} +{"label":"Ursula Renecke","version":19,"id":"40363","lastModified":"1301901737000","name":"Ursula Renecke","type":"Person","_key":"24047"} +{"label":"Ingo Haeb","version":24,"id":"40364","lastModified":"1301901565000","name":"Ingo Haeb","type":"Person","_key":"24048"} +{"label":"Hartmut Becker","version":24,"id":"40365","lastModified":"1301901586000","name":"Hartmut Becker","type":"Person","_key":"24049"} +{"label":"Tatja Seibt","version":21,"id":"40366","lastModified":"1301901898000","name":"Tatja Seibt","type":"Person","_key":"24050"} +{"label":"Stefan Kriekhaus","version":20,"id":"40291","lastModified":"1301901617000","name":"Stefan Kriekhaus","type":"Person","_key":"24051"} +{"label":"There is no authority but yourself","description":"A Dutch documentary about the history of the anrchist punk band Crass. The film features archive footage of the band and interviews with former members Steve Ignorant, Penny RimbThe film features archive footage of the band and interviews with former members Steve Ignorant, Penny Rimbaud and Gee Vaucher.","id":"4981","runtime":70,"version":24,"lastModified":"1301907421000","genre":"Documentary","title":"There is no authority but yourself","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"24052"} +{"label":"Alexander Oey","version":16,"id":"40404","lastModified":"1301901695000","name":"Alexander Oey","type":"Person","_key":"24053"} +{"label":"Steve 'Ignorant' Williams","version":16,"id":"40407","lastModified":"1301901657000","name":"Steve 'Ignorant' Williams","type":"Person","_key":"24054"} +{"label":"Jeremy John Ratter","version":16,"id":"40408","lastModified":"1301901567000","name":"Jeremy John Ratter","type":"Person","_key":"24055"} +{"label":"Gee Vaucher","version":16,"id":"40409","lastModified":"1301901657000","name":"Gee Vaucher","type":"Person","_key":"24056"} +{"label":"American Gangster","description":"Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.","id":"4982","runtime":157,"imdbId":"tt0765429","trailer":"http:\/\/www.youtube.com\/watch?v=yXceJA-eoJg","homepage":"http:\/\/www.americangangster.net\/","version":530,"lastModified":"1301922098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3d\/4bc91bd1017a3c57fe00ac3d\/american-gangster-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"American Gangster","releaseDate":1192752000000,"language":"en","tagline":"There are two sides to the American dream.","type":"Movie","_key":"24057"} +{"label":"Lymari Nadal","version":25,"id":"40376","lastModified":"1301901106000","name":"Lymari Nadal","type":"Person","_key":"24058"} +{"label":"Roger Guenveur Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9a7\/4d8a90617b9aa13ae10009a7\/roger-guenveur-smith-profile.jpg","version":50,"id":"40377","lastModified":"1301901095000","name":"Roger Guenveur Smith","type":"Person","_key":"24059"} +{"label":"Run, Simon, Run","description":"No overview found.","id":"4983","runtime":74,"imdbId":"tt0066317","version":88,"lastModified":"1301903477000","studio":"Aaron Spelling Productions","genre":"Action","title":"Run, Simon, Run","releaseDate":28857600000,"language":"en","type":"Movie","_key":"24060"} +{"label":"George McCowan","version":29,"id":"40378","lastModified":"1301902024000","name":"George McCowan","type":"Person","_key":"24061"} +{"label":"Joyce Jameson","version":30,"id":"40381","lastModified":"1301901352000","name":"Joyce Jameson","type":"Person","_key":"24062"} +{"label":"White Lightning","description":"An ex con teams up with federal agents to help them with breaking up a moonshine ring.","id":"4984","runtime":101,"imdbId":"tt0070915","version":98,"lastModified":"1301905203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ce\/4d8e690a5e73d65f170010ce\/white-lightning-mid.jpg","studio":"Levy-Gardner-Laven","genre":"Action","title":"White Lightning","releaseDate":113443200000,"language":"en","type":"Movie","_key":"24063"} +{"label":"Jennifer Billingsley","version":24,"id":"40388","lastModified":"1301901567000","name":"Jennifer Billingsley","type":"Person","_key":"24064"} +{"label":"The Longest Yard","description":"In this rough-and-tumble yarn, actually filmed on-location at the Georgia State Prision, the cons are the heroes and the guards are the heavies. Eddie Albert is the sadistic warden who'll gladly make any sacrifice to push his guards' semi-pro football team to a national championship. ","id":"4985","runtime":121,"imdbId":"tt0071771","version":123,"lastModified":"1301904904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afe\/4d85cebc7b9aa12ecd002afe\/the-longest-yard-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Longest Yard","releaseDate":146275200000,"language":"en","type":"Movie","_key":"24065"} +{"label":"Bernadette Peters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92b\/4cbaf5375e73d6778200092b\/bernadette-peters-profile.jpg","version":46,"id":"40389","lastModified":"1301901222000","name":"Bernadette Peters","type":"Person","_key":"24066"} +{"label":"Michael Conrad","version":24,"id":"40390","lastModified":"1301901677000","name":"Michael Conrad","type":"Person","_key":"24067"} +{"label":"Mike Henry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c7d99f55e73d648e2000022\/mike-henry-profile.jpg","version":65,"id":"40595","lastModified":"1301901170000","name":"Mike Henry","type":"Person","_key":"24068"} +{"label":"Fuzz","description":"No overview found.","id":"4986","runtime":93,"imdbId":"tt0068617","version":100,"lastModified":"1301906491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4d39fe067b9aa161410029f9\/fuzz-mid.jpg","studio":"Filmways Pictures","genre":"Action","title":"Fuzz","releaseDate":79920000000,"language":"en","type":"Movie","_key":"24069"} +{"label":"Richard A. Colla","version":24,"id":"40391","lastModified":"1301902033000","name":"Richard A. Colla","type":"Person","_key":"24070"} +{"label":"Dan Frazer","version":20,"id":"40463","lastModified":"1301901851000","name":"Dan Frazer","type":"Person","_key":"24071"} +{"label":"Stewart Moss","version":18,"id":"15635","lastModified":"1301901567000","name":"Stewart Moss","type":"Person","_key":"24072"} +{"label":"Cal Bellini","version":20,"id":"40464","lastModified":"1301901596000","name":"Cal Bellini","type":"Person","_key":"24073"} +{"label":"The New Interns","description":"No overview found.","id":"4987","runtime":123,"imdbId":"tt0058398","version":55,"lastModified":"1301906083000","studio":"Robert Cohn Productions","genre":"Comedy","title":"The New Interns","releaseDate":-176256000000,"language":"en","type":"Movie","_key":"24074"} +{"label":"Kaye Stevens","version":18,"id":"40394","lastModified":"1301902002000","name":"Kaye Stevens","type":"Person","_key":"24075"} +{"label":"Jimmy Mathers","version":20,"id":"40395","lastModified":"1301902002000","name":"Jimmy Mathers","type":"Person","_key":"24076"} +{"label":"Michael Vandever","version":19,"id":"40396","lastModified":"1301901736000","name":"Michael Vandever","type":"Person","_key":"24077"} +{"label":"Greg Morris","version":20,"id":"40397","lastModified":"1301904130000","name":"Greg Morris","type":"Person","_key":"24078"} +{"label":"Bob Crane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c1\/4caf37fb7b9aa121370001c1\/bob-crane-profile.jpg","version":18,"id":"108984","lastModified":"1301902680000","name":"Bob Crane","type":"Person","_key":"24079"} +{"label":"Semi-Tough","description":"No overview found.","id":"4988","runtime":108,"imdbId":"tt0078227","version":79,"lastModified":"1301907284000","studio":"Charley Associates","genre":"Comedy","title":"Semi-Tough","releaseDate":248659200000,"language":"en","type":"Movie","_key":"24080"} +{"label":"Michael Ritchie","version":42,"id":"12964","lastModified":"1302036612000","name":"Michael Ritchie","type":"Person","_key":"24081"} +{"label":"Bert Convy","version":26,"id":"40401","lastModified":"1301901714000","name":"Bert Convy","type":"Person","_key":"24082"} +{"label":"Shamus","description":"No overview found.","id":"4989","runtime":106,"imdbId":"tt0070680","version":69,"lastModified":"1301907283000","studio":"Columbia Pictures Corporation","genre":"Mystery","title":"Shamus","releaseDate":97286400000,"language":"en","type":"Movie","_key":"24083"} +{"label":"Buzz Kulik","version":25,"id":"40402","lastModified":"1301901588000","name":"Buzz Kulik","type":"Person","_key":"24084"} +{"label":"Dyan Cannon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23b\/4cb5c8327b9aa138d500023b\/dyan-cannon-profile.jpg","version":52,"id":"40403","lastModified":"1301901419000","name":"Dyan Cannon","type":"Person","_key":"24085"} +{"label":"Hustle","description":"Phil Gaines is a bitter, cynical cop who investigates the case of a dead stripper\/porno actress found on the beach. Gaines is experiencing a troubled relationship with a hooker, and things don't get any better when the dead girl's father launches his own investigation.","id":"4990","runtime":120,"imdbId":"tt0073133","version":106,"lastModified":"1301904392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccb\/4bc91be6017a3c57fe00accb\/hustle-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Hustle","releaseDate":188697600000,"language":"en","type":"Movie","_key":"24086"} +{"label":"Jack Carter","version":27,"id":"40429","lastModified":"1301901668000","name":"Jack Carter","type":"Person","_key":"24087"} +{"label":"Colleen Brennan","version":23,"id":"40430","lastModified":"1301901581000","name":"Colleen Brennan","type":"Person","_key":"24088"} +{"label":"Catherine Bach","version":25,"id":"40431","lastModified":"1301901539000","name":"Catherine Bach","type":"Person","_key":"24089"} +{"label":"The Good Cop","description":"No overview found.","id":"4991","runtime":87,"imdbId":"tt0392049","version":125,"lastModified":"1301905368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd4\/4bc91be7017a3c57fe00acd4\/den-gode-strmer-mid.jpg","studio":"Sandrew Metronome","genre":"Action","title":"The Good Cop","releaseDate":1082073600000,"language":"en","type":"Movie","_key":"24090"} +{"label":"Ren\u00e9 Dif","version":20,"id":"40418","lastModified":"1301901282000","name":"Ren\u00e9 Dif","type":"Person","_key":"24091"} +{"label":"Robert Hansen","version":27,"id":"40419","lastModified":"1301901426000","name":"Robert Hansen","type":"Person","_key":"24092"} +{"label":"Jens Okking","version":24,"id":"40420","lastModified":"1301901553000","name":"Jens Okking","type":"Person","_key":"24093"} +{"label":"Rikke Louise Andersson","version":20,"id":"40421","lastModified":"1301901765000","name":"Rikke Louise Andersson","type":"Person","_key":"24094"} +{"label":"Kenneth Carmohn","version":19,"id":"40422","lastModified":"1301901636000","name":"Kenneth Carmohn","type":"Person","_key":"24095"} +{"label":"Thomas Chaanhing","version":19,"id":"40423","lastModified":"1301901932000","name":"Thomas Chaanhing","type":"Person","_key":"24096"} +{"label":"Helle Fagralid","version":21,"id":"40424","lastModified":"1301901932000","name":"Helle Fagralid","type":"Person","_key":"24097"} +{"label":"Hans Georg M\u00f8ller","version":19,"id":"40425","lastModified":"1301901636000","name":"Hans Georg M\u00f8ller","type":"Person","_key":"24098"} +{"label":"Kjeld N\u00f8rgaard","version":19,"id":"40426","lastModified":"1301901636000","name":"Kjeld N\u00f8rgaard","type":"Person","_key":"24099"} +{"label":"Earth Reeves","version":19,"id":"40427","lastModified":"1301901932000","name":"Earth Reeves","type":"Person","_key":"24100"} +{"label":"Kenneth Truelsen","version":19,"id":"40428","lastModified":"1301901636000","name":"Kenneth Truelsen","type":"Person","_key":"24101"} +{"label":"Shark!","description":"No overview found.","id":"4992","runtime":92,"imdbId":"tt0066365","version":99,"lastModified":"1301903855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43a\/4c597aba5e73d63a6e00043a\/shark-mid.jpg","studio":"Cinematogr\u00e1fica Calder\u00f3n","genre":"Action","title":"Shark!","releaseDate":-7344000000,"language":"en","type":"Movie","_key":"24102"} +{"label":"Barry Sullivan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08c\/4bd6f49b017a3c21ee00008c\/barry-sullivan-profile.jpg","biography":"Barry Sullivan (August 29, 1912 \u2013 June 6, 1994) was an American movie actor who appeared in over 100 movies from the 1930s to the 1980s.\n\nBorn in New York City, Sullivan fell into acting when in college playing semi-pro football. During the later Depression years, Sullivan was told that because of his 6 ft 3 in (1.9 m) stature and rugged good looks he could \"make money\" simply standing on a Broadway stage. This began a successful career on Broadway, movies and television.\n\nOne of Sullivan's most","version":51,"birthday":"-1809565200000","id":"40433","birthplace":"New York City, New York, USA","lastModified":"1301901089000","name":"Barry Sullivan","type":"Person","_key":"24103"} +{"label":"Emilia Stuart","version":21,"id":"40434","lastModified":"1301901817000","name":"Emilia Stuart","type":"Person","_key":"24104"} +{"label":"Manuel Alvarado","version":21,"id":"40435","lastModified":"1301901567000","name":"Manuel Alvarado","type":"Person","_key":"24105"} +{"label":"Carlos Beriochoa","version":19,"id":"40436","lastModified":"1301901987000","name":"Carlos Beriochoa","type":"Person","_key":"24106"} +{"label":"5 Card Stud","description":"No overview found.","id":"4993","runtime":103,"imdbId":"tt0062626","homepage":"A card cheat was hung... then all hell broke loose!","version":90,"lastModified":"1301906674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdd\/4bc91bea017a3c57fe00acdd\/5-card-stud-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"5 Card Stud","releaseDate":-45100800000,"language":"en","type":"Movie","_key":"24107"} +{"label":"Katherine Justice","version":20,"id":"40445","lastModified":"1301901964000","name":"Katherine Justice","type":"Person","_key":"24108"} +{"label":"Boogie Nights","description":"Eddie Addams wants to be an actor and becomes one. Although different than he aspired, he is discovered by a porn director. The movie shows the development of porn industry in the late 70's and 80's. Eddie's career is altered by the arrival of video.","id":"4995","runtime":156,"imdbId":"tt0118749","trailer":"http:\/\/www.youtube.com\/watch?v=1450","version":193,"lastModified":"1301902210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cef\/4bc91beb017a3c57fe00acef\/boogie-nights-mid.jpg","studio":"Ghoulardi Film Company","genre":"Comedy","title":"Boogie Nights","releaseDate":876268800000,"language":"en","tagline":"Everyone has one special thing.","type":"Movie","_key":"24109"} +{"label":"Luis Guzm\u00e1n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4c4e48507b9aa1326e000033\/luis-guzman-profile.jpg","version":104,"id":"40481","lastModified":"1302062195000","name":"Luis Guzm\u00e1n","type":"Person","_key":"24110"} +{"label":"Nicole Ari Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c79\/4d7eaafa7b9aa11a1401ac79\/nicole-ari-parker-profile.jpg","biography":"<SPAN style=\"FONT-SIZE: 12pt; FONT-FAMILY: 'Gill Sans MT'; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: Tahoma; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\">Nicole Ari Parker Kodjoe was on born October 7, 1970 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Baltimore<\/st1:City>, <st1:State w:st=\"on\">Maryland<\/st1:State><\/st1:place>. She graduated from <st1:PlaceNa","version":44,"id":"74615","lastModified":"1301902029000","name":"Nicole Ari Parker","type":"Person","_key":"24111"} +{"label":"Nachmittag","description":"No overview found.","id":"4996","runtime":97,"imdbId":"tt0856804","homepage":"http:\/\/www.peripherfilm.de\/nachmittag","version":60,"lastModified":"1301907284000","studio":"ZDF","genre":"Drama","title":"Nachmittag","releaseDate":1171324800000,"language":"en","type":"Movie","_key":"24112"} +{"label":"Stefan Butzm\u00fchlen","version":19,"id":"40492","lastModified":"1301901736000","name":"Stefan Butzm\u00fchlen","type":"Person","_key":"24113"} +{"label":"Angela Schanelec","version":23,"id":"40485","lastModified":"1301901539000","name":"Angela Schanelec","type":"Person","_key":"24114"} +{"label":"Jirka Zett","version":19,"id":"40498","lastModified":"1301901617000","name":"Jirka Zett","type":"Person","_key":"24115"} +{"label":"Miriam Horwitz","version":19,"id":"40499","lastModified":"1301901382000","name":"Miriam Horwitz","type":"Person","_key":"24116"} +{"label":"Fritz Schediwy","version":19,"id":"40500","lastModified":"1301901539000","name":"Fritz Schediwy","type":"Person","_key":"24117"} +{"label":"Agnes Schanelec","version":19,"id":"40502","lastModified":"1301901896000","name":"Agnes Schanelec","type":"Person","_key":"24118"} +{"label":"Katharina Linder","version":19,"id":"40503","lastModified":"1301901896000","name":"Katharina Linder","type":"Person","_key":"24119"} +{"label":"Tobias Lenel","version":19,"id":"40504","lastModified":"1301901896000","name":"Tobias Lenel","type":"Person","_key":"24120"} +{"label":"Wonderland","description":"On the afternoon of July 1, 1981, Los Angeles police responded to a distress call on Wonderland Avenue and discovered a grisly quadruple homicide. The police investigation that followed uncovered two versions of the events leading up to the brutal murders - both involving legendary porn actor John Holmes. You're about to experience both versions.","id":"4997","runtime":104,"imdbId":"tt0335563","trailer":"http:\/\/www.youtube.com\/watch?v=1554","version":224,"lastModified":"1301904284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/072\/4c8bd50e5e73d609ed000072\/wonderland-mid.jpg","studio":"Emmett\/Furla Films","genre":"Drama","title":"Wonderland","releaseDate":1066953600000,"language":"en","type":"Movie","_key":"24121"} +{"label":"Lisa Kudrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df9\/4c6939937b9aa172dc000df9\/lisa-kudrow-profile.jpg","biography":"<FONT size=3 face=Calibri>Lisa Valerie Kudrow-Stern <SPAN style=\"mso-spacerun: yes\"> <\/SPAN><SPAN style=\"mso-spacerun: yes\"> <\/SPAN>is an American actress, best known for her role as Phoebe Buffay in the television sitcom Friends, for which she received many accolades including an Emmy Award and two Screen Actors Guild Awards. While starring in Friends, Kudrow also appeared in 1999's comedy film Analyze This, directed by Harold Ramis, as well as its 2002 sequel Analyze That. Kudrow has","version":76,"birthday":"-202784400000","id":"14406","birthplace":"Encino, Kalifornie, USA","lastModified":"1302062230000","name":"Lisa Kudrow","type":"Person","_key":"24122"} +{"label":"Scoot McNairy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/299\/4cd5b8e67b9aa113ac000299\/scoot-mcnairy-profile.jpg","version":35,"id":"59233","lastModified":"1301901210000","name":"Scoot McNairy","type":"Person","_key":"24123"} +{"label":"James Cox","version":31,"id":"40508","lastModified":"1301901589000","name":"James Cox","type":"Person","_key":"24124"} +{"label":"Import Export","description":"A nurse from the Ukraine searches for a better life in the West, while an unemployed security guard from Austria heads East for the same reason. Both are looking for work, a new beginning, an existence, struggling to believe in themselves, to find a meaning in life..","id":"4998","runtime":135,"imdbId":"tt0459102","version":88,"lastModified":"1301903714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d16\/4bc91bf2017a3c57fe00ad16\/import-export-mid.jpg","studio":"Ulrich Seidl Film Produktion GmbH","genre":"Drama","title":"Import Export","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"24125"} +{"label":"Ulrich Seidl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b6\/4d5436a25e73d617ba0059b6\/ulrich-seidl-profile.jpg","version":47,"birthday":"-539744400000","id":"40506","birthplace":"Vienna, Austria","lastModified":"1301901539000","name":"Ulrich Seidl","type":"Person","_key":"24126"} +{"label":"Ekateryna Rak","version":19,"id":"40520","lastModified":"1301901617000","name":"Ekateryna Rak","type":"Person","_key":"24127"} +{"label":"Paul Hofmann","version":19,"id":"40521","lastModified":"1301901617000","name":"Paul Hofmann","type":"Person","_key":"24128"} +{"label":"Michael Thomas","version":19,"id":"40522","lastModified":"1301901617000","name":"Michael Thomas","type":"Person","_key":"24129"} +{"label":"Natalya Baranova","version":18,"id":"40523","lastModified":"1301901672000","name":"Natalya Baranova","type":"Person","_key":"24130"} +{"label":"Natalja Epureanu","version":18,"id":"40524","lastModified":"1301901672000","name":"Natalja Epureanu","type":"Person","_key":"24131"} +{"label":"Maria Hofst\u00e4tter","version":27,"id":"40525","lastModified":"1301901445000","name":"Maria Hofst\u00e4tter","type":"Person","_key":"24132"} +{"label":"Georg Friedrich","version":44,"id":"40526","lastModified":"1302005253000","name":"Georg Friedrich","type":"Person","_key":"24133"} +{"label":"Erich Finsches","version":18,"id":"40527","lastModified":"1301901672000","name":"Erich Finsches","type":"Person","_key":"24134"} +{"label":"Woman of Straw","description":"Connery's character Anthony Richmond schemes to get the fortune of his tyrannical, wheelchair-using tycoon uncle Charles Richmond (Richardson) by persuading Maria, a nurse he employs (Lollobrigida), to marry him. After his uncle's demise Anthony becomes a murder suspect. Lollobrigida's character is the Woman of Straw of the title.","id":"4999","runtime":122,"imdbId":"tt0058754","version":240,"lastModified":"1301902898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb2\/4cd0a3347b9aa16ba0000bb2\/woman-of-straw-mid.jpg","studio":"Michael Relph Productions","genre":"Crime","title":"Woman of Straw","releaseDate":-179193600000,"language":"en","type":"Movie","_key":"24135"} +{"label":"Alexander Knox","version":37,"id":"40529","lastModified":"1301901278000","name":"Alexander Knox","type":"Person","_key":"24136"} +{"label":"Johnny Sekka","version":23,"id":"40530","lastModified":"1301901817000","name":"Johnny Sekka","type":"Person","_key":"24137"} +{"label":"Forbidden Games","description":"A timeless evocation of childhood innocence corrupted, Ren\u00e9 Cl\u00e9ment\u2019s Forbidden Games tells the story of a young girl orphaned by war and the farm boy she joins in a fantastical world of macabre play. At once mythical and heartbreakingly real, this unique film features astonishing performances by its child stars and was honored with a special foreign language film Academy Award in 1952.","id":"5000","runtime":86,"imdbId":"tt0043686","version":87,"lastModified":"1300062818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d23\/4bc91bf3017a3c57fe00ad23\/jeux-interdits-mid.jpg","studio":"Silver Films","genre":"Drama","title":"Forbidden Games","releaseDate":-556934400000,"language":"en","tagline":"War...and how it affects the lives of our children","type":"Movie","_key":"24138"} +{"label":"Am\u00e9d\u00e9e","version":18,"id":"40535","lastModified":"1299494619000","name":"Am\u00e9d\u00e9e","type":"Person","_key":"24139"} +{"label":"Suzanne Courtal","version":18,"id":"40536","lastModified":"1299500151000","name":"Suzanne Courtal","type":"Person","_key":"24140"} +{"label":"Lucien Hubert","version":18,"id":"40537","lastModified":"1299500151000","name":"Lucien Hubert","type":"Person","_key":"24141"} +{"label":"Pierre Merov\u00e9e","version":18,"id":"40538","lastModified":"1299500150000","name":"Pierre Merov\u00e9e","type":"Person","_key":"24142"} +{"label":"Denise P\u00e9ronne","version":17,"id":"40539","lastModified":"1299501270000","name":"Denise P\u00e9ronne","type":"Person","_key":"24143"} +{"label":"Before Night Falls","description":"Episodic look at the life of Cuban poet and novelist, Reinaldo Arenas (1943-1990), from his childhood in Oriente province to his death in New York City.","id":"5001","runtime":134,"imdbId":"tt0247196","trailer":"http:\/\/www.youtube.com\/watch?v=55O18SYG9nQ","homepage":"http:\/\/www.before-night-falls.com\/frameset.html","version":208,"lastModified":"1301904507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b2\/4c4658ab7b9aa15de20001b2\/before-night-falls-mid.jpg","studio":"El Mar Pictures","genre":"Drama","title":"Before Night Falls","releaseDate":967939200000,"language":"en","type":"Movie","_key":"24144"} +{"label":"Andrea Di Stefano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a0e\/4d27689c7b9aa134cb001a0e\/andrea-di-stefano-profile.jpg","version":39,"id":"40541","lastModified":"1301901208000","name":"Andrea Di Stefano","type":"Person","_key":"24145"} +{"label":"Hector Babenco","version":30,"id":"40542","lastModified":"1301901309000","name":"Hector Babenco","type":"Person","_key":"24146"} +{"label":"Lifeguard","description":"No overview found.","id":"5002","runtime":96,"imdbId":"tt0074798","version":91,"lastModified":"1301904019000","studio":"Paramount Pictures","genre":"Comedy","title":"Lifeguard","releaseDate":206928000000,"language":"en","type":"Movie","_key":"24147"} +{"label":"Daniel Petrie","version":30,"id":"40549","lastModified":"1301901847000","name":"Daniel Petrie","type":"Person","_key":"24148"} +{"label":"Parker Stevenson","version":21,"id":"40550","lastModified":"1301902002000","name":"Parker Stevenson","type":"Person","_key":"24149"} +{"label":"Stephen Young","version":24,"id":"40551","lastModified":"1301901689000","name":"Stephen Young","type":"Person","_key":"24150"} +{"label":"Steve Burns","version":23,"id":"40552","lastModified":"1301901790000","name":"Steve Burns","type":"Person","_key":"24151"} +{"label":"Sharon Clark","version":20,"id":"40553","lastModified":"1301902002000","name":"Sharon Clark","type":"Person","_key":"24152"} +{"label":"Lenka Peterson","version":20,"id":"40554","lastModified":"1301901926000","name":"Lenka Peterson","type":"Person","_key":"24153"} +{"label":"Eric Hines","version":20,"id":"40555","lastModified":"1301902025000","name":"Eric Hines","type":"Person","_key":"24154"} +{"label":"Mark Hall","version":21,"id":"40556","lastModified":"1301902012000","name":"Mark Hall","type":"Person","_key":"24155"} +{"label":"Meine Sch\u00f6ne Bescherung","description":"No overview found.","id":"5003","runtime":96,"imdbId":"tt0961738","homepage":"http:\/\/www.meineschoenebescherung.de\/","version":56,"lastModified":"1301907284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4c\/4bc91bf9017a3c57fe00ad4c\/meine-schone-bescherung-mid.jpg","studio":"Arte","genre":"Comedy","title":"Meine Sch\u00f6ne Bescherung","releaseDate":1195689600000,"language":"en","type":"Movie","_key":"24156"} +{"label":"Vanessa Jopp","version":21,"id":"40559","lastModified":"1301901262000","name":"Vanessa Jopp","type":"Person","_key":"24157"} +{"label":"Rainer Sellien","version":19,"id":"40563","lastModified":"1301901896000","name":"Rainer Sellien","type":"Person","_key":"24158"} +{"label":"Roeland Wiesnekker","version":20,"id":"35425","lastModified":"1301901482000","name":"Roeland Wiesnekker","type":"Person","_key":"24159"} +{"label":"Andreas Windhuis","version":19,"id":"40564","lastModified":"1301901896000","name":"Andreas Windhuis","type":"Person","_key":"24160"} +{"label":"Matthias Matschke","version":24,"id":"40565","lastModified":"1301901960000","name":"Matthias Matschke","type":"Person","_key":"24161"} +{"label":"Ursula Doll","version":19,"id":"40566","lastModified":"1301901896000","name":"Ursula Doll","type":"Person","_key":"24162"} +{"label":"Bjarne M\u00e4del","version":18,"id":"40567","lastModified":"1301901695000","name":"Bjarne M\u00e4del","type":"Person","_key":"24163"} +{"label":"Siegfried und das sagenhafte Liebesleben der Nibelungen","description":"No overview found.","id":"5004","runtime":92,"imdbId":"tt0067753","version":48,"lastModified":"1301906177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d51\/4bc91bfa017a3c57fe00ad51\/siegfried-und-das-sagenhafte-liebesleben-der-nibelungen-mid.jpg","studio":"Atlas Film","genre":"Comedy","title":"Siegfried und das sagenhafte Liebesleben der Nibelungen","releaseDate":39916800000,"language":"en","type":"Movie","_key":"24164"} +{"label":"David F. Friedman","version":48,"id":"99934","lastModified":"1301902349000","name":"David F. Friedman","type":"Person","_key":"24165"} +{"label":"Fred Berhoff","version":20,"id":"40571","lastModified":"1301901582000","name":"Fred Berhoff","type":"Person","_key":"24166"} +{"label":"Walter Kraus","version":20,"id":"40572","lastModified":"1301902002000","name":"Walter Kraus","type":"Person","_key":"24167"} +{"label":"Carlheinz Heitmann","version":20,"id":"40573","lastModified":"1301902005000","name":"Carlheinz Heitmann","type":"Person","_key":"24168"} +{"label":"Achim Kaden","version":20,"id":"40574","lastModified":"1301901964000","name":"Achim Kaden","type":"Person","_key":"24169"} +{"label":"Tarzan's Jungle Rebellion","description":"No overview found.","id":"5033","runtime":90,"imdbId":"tt0059783","version":48,"lastModified":"1301907421000","studio":"Banner Productions","genre":"Adventure","title":"Tarzan's Jungle Rebellion","releaseDate":-73267200000,"language":"en","type":"Movie","_key":"24170"} +{"label":"Ulla Str\u00f6mstedt","version":20,"id":"40576","lastModified":"1301901964000","name":"Ulla Str\u00f6mstedt","type":"Person","_key":"24171"} +{"label":"Harry Lauter","version":29,"id":"40577","lastModified":"1301901712000","name":"Harry Lauter","type":"Person","_key":"24172"} +{"label":"Crime et ch\u00e2timent","description":"No overview found.","id":"5034","runtime":90,"imdbId":"tt0218124","version":35,"lastModified":"1301908600000","genre":"Crime","title":"Crime et ch\u00e2timent","releaseDate":33177600000,"language":"en","type":"Movie","_key":"24173"} +{"label":"Stellio Lorenzi","version":20,"id":"40578","lastModified":"1301902014000","name":"Stellio Lorenzi","type":"Person","_key":"24174"} +{"label":"Berthe Bovy","version":20,"id":"40579","lastModified":"1301901964000","name":"Berthe Bovy","type":"Person","_key":"24175"} +{"label":"Fr\u00e9d\u00e9rique Meininger","version":27,"id":"40582","lastModified":"1301901964000","name":"Fr\u00e9d\u00e9rique Meininger","type":"Person","_key":"24176"} +{"label":"Le grand Meaulnes","description":"No overview found.","id":"5035","runtime":115,"imdbId":"tt0064389","version":81,"lastModified":"1301904476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4d47083f7b9aa103c8005142\/le-grand-meaulnes-mid.jpg","studio":"UGC","genre":"Drama","title":"Le grand Meaulnes","releaseDate":-68428800000,"language":"en","type":"Movie","_key":"24177"} +{"label":"Jean-Gabriel Albicocco","version":23,"id":"40583","lastModified":"1301901657000","name":"Jean-Gabriel Albicocco","type":"Person","_key":"24178"} +{"label":"Jean Blaise","version":21,"id":"40585","lastModified":"1301901964000","name":"Jean Blaise","type":"Person","_key":"24179"} +{"label":"Christian de Tilli\u00e8re","version":22,"id":"40586","lastModified":"1301901657000","name":"Christian de Tilli\u00e8re","type":"Person","_key":"24180"} +{"label":"Th\u00e9r\u00e8se Quentin","version":21,"id":"40587","lastModified":"1301901965000","name":"Th\u00e9r\u00e8se Quentin","type":"Person","_key":"24181"} +{"label":"Wei\u00dfe W\u00f6lfe","description":"No overview found.","id":"5036","runtime":101,"imdbId":"tt0063798","version":44,"lastModified":"1301907421000","studio":"DEFA","genre":"Western","title":"Wei\u00dfe W\u00f6lfe","releaseDate":-16416000000,"language":"en","type":"Movie","_key":"24182"} +{"label":"Horst Schulze","version":19,"id":"22843","lastModified":"1301903118000","name":"Horst Schulze","type":"Person","_key":"24183"} +{"label":"Tarzan and the Great River","description":"No overview found.","id":"5037","runtime":88,"imdbId":"tt0062341","version":69,"lastModified":"1301906750000","studio":"Paramount Pictures","genre":"Adventure","title":"Tarzan and the Great River","releaseDate":-73699200000,"language":"en","type":"Movie","_key":"24184"} +{"label":"Jan Murray","version":21,"id":"40596","lastModified":"1301901790000","name":"Jan Murray","type":"Person","_key":"24185"} +{"label":"Diana Millay","version":20,"id":"40597","lastModified":"1301901964000","name":"Diana Millay","type":"Person","_key":"24186"} +{"label":"Rafer Johnson","version":20,"id":"40598","lastModified":"1301901964000","name":"Rafer Johnson","type":"Person","_key":"24187"} +{"label":"Robert Day","version":28,"id":"40599","lastModified":"1301901403000","name":"Robert Day","type":"Person","_key":"24188"} +{"label":"Vicky Cristina Barcelona","description":"Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.","id":"5038","runtime":96,"imdbId":"tt0497465","trailer":"http:\/\/www.youtube.com\/watch?v=968","homepage":"http:\/\/www.vickycristina-movie.com","version":203,"lastModified":"1301901547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d72\/4bc91bfd017a3c57fe00ad72\/vicky-cristina-barcelona-mid.jpg","studio":"Mediapro","genre":"Comedy","title":"Vicky Cristina Barcelona","releaseDate":1221782400000,"language":"en","tagline":"Life is the ultimate work of art","type":"Movie","_key":"24189"} +{"label":"Chris Messina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4cb1e0117b9aa1264100034e\/chris-messina-profile.jpg","version":66,"id":"61659","lastModified":"1301901107000","name":"Chris Messina","type":"Person","_key":"24190"} +{"label":"Rambo Collection","description":"No overview found.","id":"5039","version":99,"lastModified":"1301902499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12f\/4c7eabd85e73d648de00012f\/rambo-collection-mid.jpg","title":"Rambo Collection","language":"en","type":"Movie","_key":"24191"} +{"label":"Faraon","description":"No overview found.","id":"5040","runtime":180,"imdbId":"tt0060401","version":55,"lastModified":"1301904958000","studio":"Zesp\u00f3l Filmowy \"Kadr\"","genre":"History","title":"Faraon","releaseDate":-120268800000,"language":"en","type":"Movie","_key":"24192"} +{"label":"Jerzy Kawalerowicz","version":27,"id":"40615","lastModified":"1301958356000","name":"Jerzy Kawalerowicz","type":"Person","_key":"24193"} +{"label":"Krystyna Mikolajewska","version":19,"id":"40617","lastModified":"1301901896000","name":"Krystyna Mikolajewska","type":"Person","_key":"24194"} +{"label":"Ewa Krzyzewska","version":20,"id":"40619","lastModified":"1301901431000","name":"Ewa Krzyzewska","type":"Person","_key":"24195"} +{"label":"Wieslawa Mazurkiewicz","version":19,"id":"40622","lastModified":"1301901896000","name":"Wieslawa Mazurkiewicz","type":"Person","_key":"24196"} +{"label":"Suddenly, Love","description":"No overview found.","id":"5041","runtime":100,"imdbId":"tt0078339","version":65,"lastModified":"1301907283000","studio":"Ross Hunter Productions Inc.","genre":"Drama","title":"Suddenly, Love","releaseDate":281577600000,"language":"en","type":"Movie","_key":"24197"} +{"label":"Eileen Heckart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/38b\/4cc99f3c7b9aa16b9b00038b\/eileen-heckart-profile.jpg","version":29,"id":"40618","lastModified":"1301901577000","name":"Eileen Heckart","type":"Person","_key":"24198"} +{"label":"Kurt Kasznar","version":27,"id":"40620","lastModified":"1301901714000","name":"Kurt Kasznar","type":"Person","_key":"24199"} +{"label":"Kristine DeBell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e4\/4c8c9a095e73d6068f0003e4\/kristine-debell-profile.jpg","version":34,"id":"40621","lastModified":"1301901303000","name":"Kristine DeBell","type":"Person","_key":"24200"} +{"label":"Hayden Rorke","version":28,"id":"40623","lastModified":"1301901775000","name":"Hayden Rorke","type":"Person","_key":"24201"} +{"label":"Lulu Baxter","version":19,"id":"40624","lastModified":"1301901617000","name":"Lulu Baxter","type":"Person","_key":"24202"} +{"label":"Nancy Fox","version":19,"id":"40625","lastModified":"1301901617000","name":"Nancy Fox","type":"Person","_key":"24203"} +{"label":"John Creamer","version":19,"id":"40627","lastModified":"1301901617000","name":"John Creamer","type":"Person","_key":"24204"} +{"label":"Richard Rorke","version":19,"id":"40628","lastModified":"1301901617000","name":"Richard Rorke","type":"Person","_key":"24205"} +{"label":"Max Keller","version":19,"id":"40626","lastModified":"1301901617000","name":"Max Keller","type":"Person","_key":"24206"} +{"label":"Linwood Boomer","version":19,"id":"40629","lastModified":"1301901617000","name":"Linwood Boomer","type":"Person","_key":"24207"} +{"label":"Brian Fuld","version":19,"id":"40630","lastModified":"1301901617000","name":"Brian Fuld","type":"Person","_key":"24208"} +{"label":"Douglas Anderson","version":22,"id":"40631","lastModified":"1301901896000","name":"Douglas Anderson","type":"Person","_key":"24209"} +{"label":"Stuart Margolin","version":28,"id":"41406","lastModified":"1301901501000","name":"Stuart Margolin","type":"Person","_key":"24210"} +{"label":"Cats and Trees","description":"No overview found.","id":"5046","runtime":0,"version":52,"lastModified":"1301420851000","studio":"Liquidamber Films","title":"Cats and Trees","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"24211"} +{"label":"Isy Oliver","version":17,"id":"40874","lastModified":"1301902029000","name":"Isy Oliver","type":"Person","_key":"24212"} +{"label":"Maya von Doll","version":16,"id":"40875","lastModified":"1301901790000","name":"Maya von Doll","type":"Person","_key":"24213"} +{"label":"Sophie Linfield","version":16,"id":"40876","lastModified":"1301901790000","name":"Sophie Linfield","type":"Person","_key":"24214"} +{"label":"Joe Swanberg","version":31,"id":"40863","lastModified":"1301901790000","name":"Joe Swanberg","type":"Person","_key":"24215"} +{"label":"Huck Melnick","version":17,"id":"40867","lastModified":"1301901790000","name":"Huck Melnick","type":"Person","_key":"24216"} +{"label":"Nik Turner","version":18,"id":"40877","lastModified":"1301901790000","name":"Nik Turner","type":"Person","_key":"24217"} +{"label":"Tariq Layche","version":16,"id":"40878","lastModified":"1301901677000","name":"Tariq Layche","type":"Person","_key":"24218"} +{"label":"Les petites couleurs","description":"No overview found.","id":"5047","runtime":94,"imdbId":"tt0311641","version":64,"lastModified":"1301905659000","studio":"Light Night","genre":"Comedy","title":"Les petites couleurs","releaseDate":1019606400000,"language":"en","type":"Movie","_key":"24219"} +{"label":"Patricia Plattner","version":22,"id":"40881","lastModified":"1301901617000","name":"Patricia Plattner","type":"Person","_key":"24220"} +{"label":"Anouk Grinberg","version":23,"id":"40883","lastModified":"1301901347000","name":"Anouk Grinberg","type":"Person","_key":"24221"} +{"label":"Gilles Tschudi","version":22,"id":"41205","lastModified":"1301901382000","name":"Gilles Tschudi","type":"Person","_key":"24222"} +{"label":"Jean-Pierre Gos","version":20,"id":"41206","lastModified":"1301901896000","name":"Jean-Pierre Gos","type":"Person","_key":"24223"} +{"label":"Christian Gregori","version":19,"id":"41207","lastModified":"1301901896000","name":"Christian Gregori","type":"Person","_key":"24224"} +{"label":"Prospero's Books","description":"An exiled magician finds an opportunity for revenge against his enemies muted when his daughter and the son of his chief enemy fall in love in this uniquely structured retelling of the 'The Tempest'.","id":"5048","runtime":120,"imdbId":"tt0102722","version":88,"lastModified":"1301906699000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14a\/4d013d065e73d621a400014a\/prospero-s-books-mid.jpg","studio":"Allarts","genre":"Drama","title":"Prospero's Books","releaseDate":684028800000,"language":"en","tagline":"A magician's spell, the innocence of young love and a dream of revenge unite to create a tempest.","type":"Movie","_key":"24225"} +{"label":"Michael Clark","version":23,"id":"40898","lastModified":"1301901896000","name":"Michael Clark","type":"Person","_key":"24226"} +{"label":"Isabelle Pasco","version":24,"id":"40899","lastModified":"1301901539000","name":"Isabelle Pasco","type":"Person","_key":"24227"} +{"label":"Mark Rylance","version":38,"id":"40900","lastModified":"1301901464000","name":"Mark Rylance","type":"Person","_key":"24228"} +{"label":"Marie Angel","version":21,"id":"40901","lastModified":"1301901896000","name":"Marie Angel","type":"Person","_key":"24229"} +{"label":"Deborah Conway","version":23,"id":"40902","lastModified":"1301901782000","name":"Deborah Conway","type":"Person","_key":"24230"} +{"label":"Savage City","description":"No overview found.","id":"5049","runtime":93,"imdbId":"tt0071658","version":48,"lastModified":"1302022217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8d\/4bc91c01017a3c57fe00ad8d\/la-moglie-giovane-mid.jpg","studio":"Emaus Films S.A.","genre":"Drama","title":"Savage City","releaseDate":126230400000,"language":"en","type":"Movie","_key":"24231"} +{"label":"Giovanni d'Eramo","version":23,"id":"40884","lastModified":"1301901657000","name":"Giovanni d'Eramo","type":"Person","_key":"24232"} +{"label":"Mircha Carven","version":21,"id":"40886","lastModified":"1301902007000","name":"Mircha Carven","type":"Person","_key":"24233"} +{"label":"Riccardo Salvino","version":22,"id":"40887","lastModified":"1301901679000","name":"Riccardo Salvino","type":"Person","_key":"24234"} +{"label":"Senza via d'uscita","description":"No overview found.","id":"5050","runtime":85,"imdbId":"tt0065735","version":41,"lastModified":"1300978369000","studio":"Filmax Group","genre":"Crime","title":"Senza via d'uscita","releaseDate":132969600000,"language":"en","type":"Movie","_key":"24235"} +{"label":"Nando Favella","version":19,"id":"40890","lastModified":"1301901896000","name":"Nando Favella","type":"Person","_key":"24236"} +{"label":"Enzo Di Pietro","version":19,"id":"40891","lastModified":"1301901896000","name":"Enzo Di Pietro","type":"Person","_key":"24237"} +{"label":"Piero Scium\u00e8","version":21,"id":"40892","lastModified":"1301901736000","name":"Piero Scium\u00e8","type":"Person","_key":"24238"} +{"label":"The Baby of M\u00e2con","description":"A movie about the corruption in all levels of society. A baby is born from a supposed-to-be virgin woman, so a chain of hysteria about divine intervention in the birth takes place.","id":"5051","runtime":122,"imdbId":"tt0106335","version":101,"lastModified":"1301903864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d96\/4bc91c02017a3c57fe00ad96\/the-baby-of-macon-mid.jpg","studio":"Channel Four Films","genre":"History","title":"The Baby of M\u00e2con","releaseDate":747705600000,"language":"en","type":"Movie","_key":"24239"} +{"label":"Jonathan Lacey","version":15,"id":"146758","lastModified":"1301902727000","name":"Jonathan Lacey","type":"Person","_key":"24240"} +{"label":"Topkapi","description":"Arthur Simon Simpson is a small-time crook biding his time in Greece. One of his potential victims turns out to be a gentleman thief planning to steal the emerald-encrusted dagger of the Mehmed II from Istanbul's Topkapi Museum.","id":"5052","runtime":119,"imdbId":"tt0058672","trailer":"http:\/\/www.youtube.com\/watch?v=k8thNodJpLc","version":77,"lastModified":"1302022169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da4\/4bc91c03017a3c57fe00ada4\/topkapi-mid.jpg","studio":"Filmways Pictures","genre":"Action","title":"Topkapi","releaseDate":-166924800000,"language":"en","type":"Movie","_key":"24241"} +{"label":"I Love Vienna","description":"No overview found.","id":"5053","runtime":104,"imdbId":"tt0102087","version":68,"lastModified":"1301905520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/965\/4d542cdc7b9aa13ab4013965\/i-love-vienna-mid.jpg","studio":"Epo-Film","genre":"Comedy","title":"I Love Vienna","releaseDate":662688000000,"language":"en","type":"Movie","_key":"24242"} +{"label":"Houchang Allahyari","version":21,"id":"40903","lastModified":"1301901657000","name":"Houchang Allahyari","type":"Person","_key":"24243"} +{"label":"Freydoun Farokhzad","version":20,"id":"40904","lastModified":"1301901498000","name":"Freydoun Farokhzad","type":"Person","_key":"24244"} +{"label":"Niki List","version":28,"id":"40905","lastModified":"1301901498000","name":"Niki List","type":"Person","_key":"24245"} +{"label":"Dolores Schmidinger","version":23,"id":"40906","lastModified":"1301901599000","name":"Dolores Schmidinger","type":"Person","_key":"24246"} +{"label":"Sensazioni d'amore","description":"No overview found.","id":"5054","runtime":90,"imdbId":"tt0100577","version":36,"lastModified":"1301419547000","studio":"Duck Record","genre":"Erotic","title":"Sensazioni d'amore","releaseDate":631152000000,"language":"en","type":"Movie","_key":"24247"} +{"label":"Nin\u00ec Grassia","version":19,"id":"40907","lastModified":"1301901817000","name":"Nin\u00ec Grassia","type":"Person","_key":"24248"} +{"label":"Marcello Montana","version":20,"id":"40908","lastModified":"1301901677000","name":"Marcello Montana","type":"Person","_key":"24249"} +{"label":"Federica Farnese","version":20,"id":"40909","lastModified":"1301901370000","name":"Federica Farnese","type":"Person","_key":"24250"} +{"label":"Barbara Blasko","version":21,"id":"40910","lastModified":"1301901498000","name":"Barbara Blasko","type":"Person","_key":"24251"} +{"label":"Ashes and Diamonds","description":"Maciek and Andrzej, two home army fighters, were paired and ordered to kill an incoming communist party cadre. At the hotel where their target's welcoming party is being held. Maciek meets the barmaid Krystyna and the two have a brief, passionate affair, before he is pulled away from this fleeting happiness into his deadly mission.","id":"5055","runtime":103,"imdbId":"tt0052080","version":77,"lastModified":"1301902487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8be\/4bfc2ee7017a3c702d0008be\/popiol-i-diament-mid.jpg","studio":"Zesp\u00f3l Filmowy \"Kadr\"","genre":"Drama","title":"Ashes and Diamonds","releaseDate":-354931200000,"language":"en","type":"Movie","_key":"24252"} +{"label":"Zbigniew Cybulski","version":23,"id":"40914","lastModified":"1301901354000","name":"Zbigniew Cybulski","type":"Person","_key":"24253"} +{"label":"Waclaw Zastrzezynski","version":19,"id":"40915","lastModified":"1301901477000","name":"Waclaw Zastrzezynski","type":"Person","_key":"24254"} +{"label":"Adam Pawlikowski","version":22,"id":"40916","lastModified":"1301901514000","name":"Adam Pawlikowski","type":"Person","_key":"24255"} +{"label":"Bogumil Kobiela","version":19,"id":"40917","lastModified":"1301901736000","name":"Bogumil Kobiela","type":"Person","_key":"24256"} +{"label":"Stanislaw Milski","version":19,"id":"40918","lastModified":"1301901736000","name":"Stanislaw Milski","type":"Person","_key":"24257"} +{"label":"Halina Kwiatkowska","version":19,"id":"40919","lastModified":"1301901736000","name":"Halina Kwiatkowska","type":"Person","_key":"24258"} +{"label":"Barbara Krafft\u00f3wna","version":19,"id":"40920","lastModified":"1301901736000","name":"Barbara Krafft\u00f3wna","type":"Person","_key":"24259"} +{"label":"Deadlier Than the Male","description":"British agent Bulldog Drummond is assigned to stop a master criminal who uses beautiful women to do his killings.","id":"5056","runtime":101,"imdbId":"tt0060288","trailer":"http:\/\/www.youtube.com\/watch?v=wQA2CR2cGZ4","version":61,"lastModified":"1301904423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e19\/4d1e954e5e73d66b34000e19\/deadlier-than-the-male-mid.jpg","studio":"Greater Films Ltd.","genre":"Action","title":"Deadlier Than the Male","releaseDate":-91065600000,"language":"en","type":"Movie","_key":"24260"} +{"label":"Suzanna Leigh","version":27,"id":"40921","lastModified":"1301901286000","name":"Suzanna Leigh","type":"Person","_key":"24261"} +{"label":"Steve Carlson","version":24,"id":"40922","lastModified":"1301901790000","name":"Steve Carlson","type":"Person","_key":"24262"} +{"label":"Virginia North","version":23,"id":"40923","lastModified":"1301901498000","name":"Virginia North","type":"Person","_key":"24263"} +{"label":"Justine Lord","version":21,"id":"40924","lastModified":"1301901657000","name":"Justine Lord","type":"Person","_key":"24264"} +{"label":"Wig the Dick","description":"No overview found.","id":"5057","runtime":6,"version":23,"lastModified":"1300978370000","genre":"Musical","title":"Wig the Dick","releaseDate":1128297600000,"language":"en","type":"Movie","_key":"24265"} +{"label":"Aur\u00e9lien","description":"No overview found.","id":"5058","runtime":180,"imdbId":"tt0364215","version":42,"lastModified":"1301906751000","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Aur\u00e9lien","releaseDate":1052524800000,"language":"en","type":"Movie","_key":"24266"} +{"label":"Arnaud S\u00e9lignac","version":20,"id":"40930","lastModified":"1301901790000","name":"Arnaud S\u00e9lignac","type":"Person","_key":"24267"} +{"label":"Olivier Sitruk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a08\/4d76072e5e73d66466000a08\/olivier-sitruk-profile.jpg","biography":"A 16 ans, Olivier Sitruk int\u00e8gre le conservatoire de Nice. Jusqu\u2019en 92, il alterne petits boulots et petits r\u00f4les car le succ\u00e8s n\u2019est pas au rendez-vous. Il d\u00e9croche toutefois une apparition sur grand \u00e9cran dans La Gamine, o\u00f9 l\u2019on retrouve l\u2019\u00e9tonnant duo d\u2019acteurs Ma\u00efwenn- Johnny Hallyday.\n\nEn 94, il entre au conservatoire de Paris, pour peaufiner ses connaissances en art dramatique. Cette m\u00eame ann\u00e9e, il obtient le r\u00f4le d\u2019Eric, une petite frappe dans L\u2019App\u00e2t de Bertrand Tavernier, aux c\u00f4t\u00e9s de M","version":31,"birthday":"30927600000","id":"40937","birthplace":"Nice, Alpes-Maritimes","lastModified":"1301901527000","name":"Olivier Sitruk","type":"Person","_key":"24268"} +{"label":"Romane Bohringer","version":30,"id":"40938","lastModified":"1301901403000","name":"Romane Bohringer","type":"Person","_key":"24269"} +{"label":"Cl\u00e9ment Sibony","version":33,"id":"40939","lastModified":"1301901502000","name":"Cl\u00e9ment Sibony","type":"Person","_key":"24270"} +{"label":"Carry On Screaming!","description":"Carry on gang B-grade horror move farce","id":"5060","runtime":87,"imdbId":"tt0060214","trailer":"http:\/\/www.youtube.com\/watch?v=8jPn4g-eR48","version":67,"lastModified":"1302022065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db1\/4bc91c04017a3c57fe00adb1\/carry-on-screaming-mid.jpg","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Screaming!","releaseDate":-114220800000,"language":"en","type":"Movie","_key":"24271"} +{"label":"Gerald Thomas","version":51,"birthday":"-1548205200000","id":"40940","lastModified":"1301901411000","name":"Gerald Thomas","type":"Person","_key":"24272"} +{"label":"Kenneth Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/011\/4bcb645b017a3c3e08000011\/kenneth-williams-profile.jpg","version":54,"id":"40941","lastModified":"1301901452000","name":"Kenneth Williams","type":"Person","_key":"24273"} +{"label":"Jim Dale","version":42,"id":"40945","lastModified":"1301901286000","name":"Jim Dale","type":"Person","_key":"24274"} +{"label":"Harry H. Corbett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5fc\/4cf7e2b77b9aa1514b0015fc\/harry-h-corbett-profile.jpg","version":27,"id":"40948","lastModified":"1301901181000","name":"Harry H. Corbett","type":"Person","_key":"24275"} +{"label":"Joan Sims","version":48,"id":"40949","lastModified":"1301901352000","name":"Joan Sims","type":"Person","_key":"24276"} +{"label":"Charles Hawtrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4bcb6a4c017a3c3e0000000f\/charles-hawtrey-profile.jpg","version":47,"id":"40944","lastModified":"1301901575000","name":"Charles Hawtrey","type":"Person","_key":"24277"} +{"label":"Fenella Fielding","version":22,"id":"40950","lastModified":"1301901582000","name":"Fenella Fielding","type":"Person","_key":"24278"} +{"label":"Angela Douglas","version":24,"id":"40951","lastModified":"1301901582000","name":"Angela Douglas","type":"Person","_key":"24279"} +{"label":"Carry On Don't Lose Your Head","description":"The Carry On Gang take on the French Revolution. The \"black fingernail\" (Sidney James) rescues those about to be be-headed by Citizen Camembert (Kenneth Williams) of the French secret police.","id":"5061","runtime":90,"imdbId":"tt0060330","trailer":"http:\/\/www.youtube.com\/watch?v=IUS89dI5hO8","version":95,"lastModified":"1301905647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/314\/4c57de497b9aa151f5000314\/don-t-lose-your-head-mid.jpg","studio":"Adder","genre":"Comedy","title":"Carry On Don't Lose Your Head","releaseDate":-96595200000,"language":"en","type":"Movie","_key":"24280"} +{"label":"Jack Causey","version":20,"id":"41832","lastModified":"1301901477000","name":"Jack Causey","type":"Person","_key":"24281"} +{"label":"Sid James","version":57,"id":"40952","lastModified":"1301901087000","name":"Sid James","type":"Person","_key":"24282"} +{"label":"Peter Gilmore","version":31,"id":"82548","lastModified":"1301902497000","name":"Peter Gilmore","type":"Person","_key":"24283"} +{"label":"Marianne Stone","version":26,"id":"106628","lastModified":"1301902898000","name":"Marianne Stone","type":"Person","_key":"24284"} +{"label":"Leon Greene","version":22,"id":"113700","lastModified":"1301902519000","name":"Leon Greene","type":"Person","_key":"24285"} +{"label":"David Davenport","version":20,"id":"95096","lastModified":"1301903032000","name":"David Davenport","type":"Person","_key":"24286"} +{"label":"Richard Shaw","version":25,"id":"113701","lastModified":"1301902898000","name":"Richard Shaw","type":"Person","_key":"24287"} +{"label":"Valerie Van Ost","version":23,"id":"114555","lastModified":"1301902961000","name":"Valerie Van Ost","type":"Person","_key":"24288"} +{"label":"Jennifer Clulow","version":17,"id":"117391","lastModified":"1301902898000","name":"Jennifer Clulow","type":"Person","_key":"24289"} +{"label":"Peter Butterworth","version":35,"id":"40958","lastModified":"1301901787000","name":"Peter Butterworth","type":"Person","_key":"24290"} +{"label":"The Inquisitor","description":"No overview found.","id":"5062","runtime":88,"imdbId":"tt0082436","version":64,"lastModified":"1301906633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db6\/4bc91c05017a3c57fe00adb6\/garde-a-vue-mid.jpg","studio":"Les Films Ariane S.A.","genre":"Crime","title":"The Inquisitor","releaseDate":370051200000,"language":"en","type":"Movie","_key":"24291"} +{"label":"La passante de Sans-Souci","description":"No overview found.","id":"5063","runtime":110,"imdbId":"tt0084479","version":61,"lastModified":"1301906083000","studio":"Central Cinema Company Film","genre":"Drama","title":"La passante de Sans-Souci","releaseDate":387590400000,"language":"en","type":"Movie","_key":"24292"} +{"label":"Wendelin Werner","version":19,"id":"40955","lastModified":"1301901896000","name":"Wendelin Werner","type":"Person","_key":"24293"} +{"label":"Claire Denis","version":27,"id":"9888","lastModified":"1301901400000","name":"Claire Denis","type":"Person","_key":"24294"} +{"label":"Sabine Eckhard","version":19,"id":"41838","lastModified":"1301902108000","name":"Sabine Eckhard","type":"Person","_key":"24295"} +{"label":"Alain Peyrollaz","version":19,"id":"41839","lastModified":"1301902108000","name":"Alain Peyrollaz","type":"Person","_key":"24296"} +{"label":"Carry On Doctor","description":"After an injured charlatan is admitted to the hospital, a well-liked doctor is sacked from his job for apparently leering over a sunbathing nurse, when really the whole incident was contrived by the universally detested Dr. Tinkle and his ghastly matron. The rebellious patients decide to exact revenge upon the doctor and matron for what they have done.","id":"5064","runtime":94,"imdbId":"tt0061450","trailer":"http:\/\/www.youtube.com\/watch?v=ZjU12UD-grM","version":95,"lastModified":"1301904241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbf\/4bc91c05017a3c57fe00adbf\/carry-on-doctor-mid.jpg","studio":"The Rank Organisation Film Productions","genre":"Comedy","title":"Carry On Doctor","releaseDate":-65750400000,"language":"en","type":"Movie","_key":"24297"} +{"label":"Frankie Howerd","version":32,"id":"40956","lastModified":"1301901508000","name":"Frankie Howerd","type":"Person","_key":"24298"} +{"label":"Hattie Jacques","version":41,"id":"40957","lastModified":"1301901446000","name":"Hattie Jacques","type":"Person","_key":"24299"} +{"label":"June Jago","version":17,"id":"91489","lastModified":"1301902637000","name":"June Jago","type":"Person","_key":"24300"} +{"label":"Derek Francis","version":27,"id":"101529","lastModified":"1301902532000","name":"Derek Francis","type":"Person","_key":"24301"} +{"label":"Dandy Nichols","version":22,"id":"87747","lastModified":"1301902469000","name":"Dandy Nichols","type":"Person","_key":"24302"} +{"label":"Peter Jones","version":19,"id":"95093","lastModified":"1301902916000","name":"Peter Jones","type":"Person","_key":"24303"} +{"label":"Carry On Cowboy","description":"Stodge City is in the grip of the Rumpo Kid and his gang. Mistaken identity again takes a hand as a \"sanitary engineer\" (plumber) by the name of Marshal P. Knutt is mistaken for a law marshal! Being the conscientious sort, Marshal tries to help the town get rid of Rumpo, and a showdown is inevitable. Marshal has two aids - revenge-seeking Annie Oakley and his sanitary expertise","id":"5065","runtime":93,"imdbId":"tt0059014","trailer":"http:\/\/www.youtube.com\/watch?v=AG5-ro86Em0","version":76,"lastModified":"1302021987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc8\/4bc91c06017a3c57fe00adc8\/carry-on-cowboy-mid.jpg","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Cowboy","releaseDate":-121132800000,"language":"en","type":"Movie","_key":"24304"} +{"label":"Jon Pertwee","version":22,"id":"40960","lastModified":"1301901700000","name":"Jon Pertwee","type":"Person","_key":"24305"} +{"label":"Carry On Cleo","description":"Two Britons are captured and enslaved by invading Romans and taken to Rome. Hengist Pod creates useless inventions... ","id":"5066","runtime":94,"imdbId":"tt0057918","trailer":"http:\/\/www.youtube.com\/watch?v=W2F1r4Jh7CA","version":68,"lastModified":"1302021961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd1\/4bc91c09017a3c57fe00add1\/carry-on-cleo-mid.png","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Cleo","releaseDate":-162432000000,"language":"en","type":"Movie","_key":"24306"} +{"label":"Amanda Barrie","version":19,"id":"40961","lastModified":"1301901896000","name":"Amanda Barrie","type":"Person","_key":"24307"} +{"label":"Kenneth Connor","version":39,"id":"40962","lastModified":"1301901402000","name":"Kenneth Connor","type":"Person","_key":"24308"} +{"label":"Julie Stevens","version":19,"id":"40963","lastModified":"1301901617000","name":"Julie Stevens","type":"Person","_key":"24309"} +{"label":"Brian Oulton","version":21,"id":"40964","lastModified":"1301901774000","name":"Brian Oulton","type":"Person","_key":"24310"} +{"label":"Victor Maddern","version":25,"id":"40965","lastModified":"1301901703000","name":"Victor Maddern","type":"Person","_key":"24311"} +{"label":"The Burning Court","description":"A group of people visit a weird old man who is a student of the black arts. The man lives in an ancient, cursed castle. Soon people in the group start being killed off.","id":"5067","runtime":110,"imdbId":"tt0055839","version":60,"lastModified":"1301906177000","studio":"UFA Filmproduktion GmbH","genre":"Horror","title":"The Burning Court","releaseDate":-245721600000,"language":"en","type":"Movie","_key":"24312"} +{"label":"Fr\u00e9d\u00e9ric Duvall\u00e8s","version":22,"id":"40968","lastModified":"1302032139000","name":"Fr\u00e9d\u00e9ric Duvall\u00e8s","type":"Person","_key":"24313"} +{"label":"Ren\u00e9 G\u00e9nin","version":28,"id":"40969","lastModified":"1301901790000","name":"Ren\u00e9 G\u00e9nin","type":"Person","_key":"24314"} +{"label":"Dany Jacquet","version":21,"id":"40970","lastModified":"1301902005000","name":"Dany Jacquet","type":"Person","_key":"24315"} +{"label":"Antoine Balp\u00eatr\u00e9","version":21,"id":"40971","lastModified":"1301902015000","name":"Antoine Balp\u00eatr\u00e9","type":"Person","_key":"24316"} +{"label":"That Man in Istanbul","description":"No overview found.","id":"5068","runtime":114,"imdbId":"tt0059546","version":52,"lastModified":"1301908340000","studio":"Compagnia Cinematografica Mondiale","genre":"Action","title":"That Man in Istanbul","releaseDate":-138585600000,"language":"en","tagline":"What Tony the Turk does with redheads is a crime . . . what he does with crime is delicious . . . !","type":"Movie","_key":"24317"} +{"label":"Antonio Isasi-Isasmendi","version":27,"id":"40972","lastModified":"1301901965000","name":"Antonio Isasi-Isasmendi","type":"Person","_key":"24318"} +{"label":"\u00c1ngel Picazo","version":21,"id":"40973","lastModified":"1301901896000","name":"\u00c1ngel Picazo","type":"Person","_key":"24319"} +{"label":"Christiane Maybach","version":27,"id":"40974","lastModified":"1301901788000","name":"Christiane Maybach","type":"Person","_key":"24320"} +{"label":"Gustavo Re","version":25,"id":"40975","lastModified":"1301901974000","name":"Gustavo Re","type":"Person","_key":"24321"} +{"label":"Claude Cerval","version":27,"id":"40976","lastModified":"1301901896000","name":"Claude Cerval","type":"Person","_key":"24322"} +{"label":"La t\u00eate en l'air","description":"No overview found.","id":"5069","runtime":130,"imdbId":"tt0168409","version":38,"lastModified":"1301906176000","studio":"Soci\u00e9t\u00e9 Fran\u00e7aise de Production","genre":"Comedy","title":"La t\u00eate en l'air","releaseDate":741312000000,"language":"en","type":"Movie","_key":"24323"} +{"label":"Marl\u00e8ne Bertin","version":20,"id":"41012","lastModified":"1301901657000","name":"Marl\u00e8ne Bertin","type":"Person","_key":"24324"} +{"label":"Val\u00e9rie Karsenti","version":20,"id":"41014","lastModified":"1301902015000","name":"Val\u00e9rie Karsenti","type":"Person","_key":"24325"} +{"label":"Anne Rousselet","version":21,"id":"41015","lastModified":"1301901790000","name":"Anne Rousselet","type":"Person","_key":"24326"} +{"label":"Diane Valsonne","version":20,"id":"41016","lastModified":"1301901964000","name":"Diane Valsonne","type":"Person","_key":"24327"} +{"label":"How Much Do You Love Me?","description":"After winning the lottery, Fran\u00e7ois goes to a bar in Pigalle and offers one hundred thousand Euros per month to a prostitute named Daniela to live with him as his wife until his money runs out.","id":"5070","runtime":95,"imdbId":"tt0420555","homepage":"http:\/\/www.combientumaimes.com\/","version":84,"lastModified":"1301908340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e22\/4bc91c16017a3c57fe00ae22\/combien-tu-m-aimes-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Comedy","title":"How Much Do You Love Me?","releaseDate":1130284800000,"language":"en","tagline":"French Director Bertrand Blier creates an intensely seductive story about beauty, sex and Love.","type":"Movie","_key":"24328"} +{"label":"Bernard Campan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d7\/4d0e0b7c5e73d6370a0012d7\/bernard-campan-profile.jpg","version":77,"birthday":"-370659600000","id":"41029","birthplace":"Agen","lastModified":"1301901129000","name":"Bernard Campan","type":"Person","_key":"24329"} +{"label":"Fran\u00e7ois Rollin","version":21,"id":"41031","lastModified":"1301901431000","name":"Fran\u00e7ois Rollin","type":"Person","_key":"24330"} +{"label":"Baptiste Roussillon","version":20,"id":"41033","lastModified":"1301901617000","name":"Baptiste Roussillon","type":"Person","_key":"24331"} +{"label":"Farida Rahouadj","version":22,"id":"41037","lastModified":"1301901896000","name":"Farida Rahouadj","type":"Person","_key":"24332"} +{"label":"The Crazy Stranger","description":"A man is looking for a singer he had heard on cassette. He finds much more.","id":"5071","runtime":102,"imdbId":"tt0122082","version":126,"lastModified":"1301908346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/022\/4c497fd47b9aa11600000022\/gadjo-dilo-mid.jpg","studio":"Centre National de la Cin\u00e9matographie","genre":"Drama","title":"The Crazy Stranger","releaseDate":890956800000,"language":"en","type":"Movie","_key":"24333"} +{"label":"Tony Gatlif","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e87\/4d8cc62a7b9aa13aed002e87\/tony-gatlif-profile.jpg","version":42,"id":"41040","lastModified":"1301901790000","name":"Tony Gatlif","type":"Person","_key":"24334"} +{"label":"Rona Hartner","version":25,"id":"41190","lastModified":"1301901790000","name":"Rona Hartner","type":"Person","_key":"24335"} +{"label":"Izidor Serban","version":21,"id":"41192","lastModified":"1301901790000","name":"Izidor Serban","type":"Person","_key":"24336"} +{"label":"Ovidiu Balan","version":21,"id":"41193","lastModified":"1301901790000","name":"Ovidiu Balan","type":"Person","_key":"24337"} +{"label":"Angela Serban","version":21,"id":"41194","lastModified":"1301901790000","name":"Angela Serban","type":"Person","_key":"24338"} +{"label":"Aurica Ursan","version":21,"id":"41195","lastModified":"1301901964000","name":"Aurica Ursan","type":"Person","_key":"24339"} +{"label":"Vasile Serban","version":21,"id":"41196","lastModified":"1301901964000","name":"Vasile Serban","type":"Person","_key":"24340"} +{"label":"Ioan Serban","version":21,"id":"41197","lastModified":"1301901817000","name":"Ioan Serban","type":"Person","_key":"24341"} +{"label":"Gheorge Gherebenec","version":21,"id":"41198","lastModified":"1301901964000","name":"Gheorge Gherebenec","type":"Person","_key":"24342"} +{"label":"Dan Astileanu","version":26,"id":"41199","lastModified":"1301901789000","name":"Dan Astileanu","type":"Person","_key":"24343"} +{"label":"Severance","description":"When weapons multi-national Palisade Defense reward their European sales division with a team-building weekend in the mountains of Eastern Europe, the team fight first amongst themselves, and later for survival against a group of war-crazed killers intent on revenge!","id":"5072","runtime":96,"imdbId":"tt0464196","homepage":"http:\/\/www.severancethemovie.com","version":152,"lastModified":"1301903278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e37\/4bc91c18017a3c57fe00ae37\/severance-mid.jpg","studio":"Qwerty Films","genre":"Action","title":"Severance","releaseDate":1147996800000,"language":"en","tagline":"The Company Is Making Cutbacks","type":"Movie","_key":"24344"} +{"label":"Christopher Smith","version":45,"id":"41041","lastModified":"1301901194000","name":"Christopher Smith","type":"Person","_key":"24345"} +{"label":"Danny Dyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21c\/4bf1a836017a3c320a00021c\/danny-dyer-profile.jpg","version":57,"birthday":"238546800000","id":"41042","birthplace":"Canning Town, London, England, UK","lastModified":"1301901208000","name":"Danny Dyer","type":"Person","_key":"24346"} +{"label":"Laura Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4cf19e9c7b9aa14498000042\/laura-harris-profile.jpg","version":36,"id":"25872","lastModified":"1302017474000","name":"Laura Harris","type":"Person","_key":"24347"} +{"label":"Toby Stephens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f3\/4cd78da75e73d676d10004f3\/toby-stephens-profile.jpg","version":35,"id":"10881","lastModified":"1301901162000","name":"Toby Stephens","type":"Person","_key":"24348"} +{"label":"Tim McInnerny","version":43,"id":"41043","lastModified":"1301901183000","name":"Tim McInnerny","type":"Person","_key":"24349"} +{"label":"Babou Ceesay","version":21,"id":"41044","lastModified":"1301901630000","name":"Babou Ceesay","type":"Person","_key":"24350"} +{"label":"Coupable d'innocence ou Quand la raison dort","description":"No overview found.","id":"5073","runtime":110,"imdbId":"tt0099639","version":43,"lastModified":"1301908600000","studio":"Atria Film","genre":"History","title":"Coupable d'innocence ou Quand la raison dort","releaseDate":697680000000,"language":"en","type":"Movie","_key":"24351"} +{"label":"Marcin Ziebinski","version":20,"id":"41046","lastModified":"1301901817000","name":"Marcin Ziebinski","type":"Person","_key":"24352"} +{"label":"Jan Peszek","version":21,"id":"41047","lastModified":"1301901817000","name":"Jan Peszek","type":"Person","_key":"24353"} +{"label":"Prorva","description":"No overview found.","id":"5074","runtime":108,"imdbId":"tt0105182","version":54,"lastModified":"1301908600000","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Drama","title":"Prorva","releaseDate":716688000000,"language":"en","type":"Movie","_key":"24354"} +{"label":"Aleksandr Feklistov","version":20,"id":"41048","lastModified":"1301901790000","name":"Aleksandr Feklistov","type":"Person","_key":"24355"} +{"label":"Ivan Dykhovichnyy","version":19,"id":"41049","lastModified":"1301901498000","name":"Ivan Dykhovichnyy","type":"Person","_key":"24356"} +{"label":"Jean Galmot, aventurier","description":"No overview found.","id":"5075","runtime":190,"imdbId":"tt0099874","version":43,"lastModified":"1301906719000","studio":"Hachette Premi\u00e8re","genre":"Drama","title":"Jean Galmot, aventurier","releaseDate":656726400000,"language":"en","type":"Movie","_key":"24357"} +{"label":"Alain Maline","version":20,"id":"41051","lastModified":"1301901779000","name":"Alain Maline","type":"Person","_key":"24358"} +{"label":"Belinda Becker","version":20,"id":"41052","lastModified":"1301901562000","name":"Belinda Becker","type":"Person","_key":"24359"} +{"label":"Vincent Martin","version":20,"id":"41053","lastModified":"1301901811000","name":"Vincent Martin","type":"Person","_key":"24360"} +{"label":"Combat de fauves","description":"No overview found.","id":"5076","runtime":90,"imdbId":"tt0123707","version":42,"lastModified":"1300978372000","studio":"Filmboard Berlin-Brandenburg (FBB)","genre":"Drama","title":"Combat de fauves","releaseDate":873072000000,"language":"en","type":"Movie","_key":"24361"} +{"label":"Papa Wemba","version":20,"id":"41056","lastModified":"1301901964000","name":"Papa Wemba","type":"Person","_key":"24362"} +{"label":"Jacqueline Nicolas","version":20,"id":"41057","lastModified":"1301901567000","name":"Jacqueline Nicolas","type":"Person","_key":"24363"} +{"label":"Roland De Pauw","version":20,"id":"41058","lastModified":"1301901657000","name":"Roland De Pauw","type":"Person","_key":"24364"} +{"label":"Rico Micas","version":20,"id":"41059","lastModified":"1301901677000","name":"Rico Micas","type":"Person","_key":"24365"} +{"label":"Magic Graz","description":"No overview found.","id":"5077","runtime":35,"imdbId":"tt0266738","version":47,"lastModified":"1301907283000","studio":"Bert Klettenr Filmproduction","title":"Magic Graz","releaseDate":73526400000,"language":"en","type":"Movie","_key":"24366"} +{"label":"Curt M. Faudon","version":21,"id":"41098","lastModified":"1301901736000","name":"Curt M. Faudon","type":"Person","_key":"24367"} +{"label":"Fritz Heppner","version":19,"id":"41101","lastModified":"1301901896000","name":"Fritz Heppner","type":"Person","_key":"24368"} +{"label":"Helli Berger","version":19,"id":"41102","lastModified":"1301901896000","name":"Helli Berger","type":"Person","_key":"24369"} +{"label":"Wolfgang Bauer","version":24,"id":"41103","lastModified":"1301901957000","name":"Wolfgang Bauer","type":"Person","_key":"24370"} +{"label":"Monelle Boand","version":19,"id":"41104","lastModified":"1301901896000","name":"Monelle Boand","type":"Person","_key":"24371"} +{"label":"Heinrich Harrer","version":20,"id":"14587","lastModified":"1301901914000","name":"Heinrich Harrer","type":"Person","_key":"24372"} +{"label":"Oscar Peterson","version":19,"id":"41105","lastModified":"1301901896000","name":"Oscar Peterson","type":"Person","_key":"24373"} +{"label":"Fritz Zecha","version":19,"id":"41106","lastModified":"1301901896000","name":"Fritz Zecha","type":"Person","_key":"24374"} +{"label":"Robert Stolz","version":25,"id":"33173","lastModified":"1301901960000","name":"Robert Stolz","type":"Person","_key":"24375"} +{"label":"Jochen Rindt","version":19,"id":"41107","lastModified":"1301901896000","name":"Jochen Rindt","type":"Person","_key":"24376"} +{"label":"Gregor Traversa","version":19,"id":"41108","lastModified":"1301901896000","name":"Gregor Traversa","type":"Person","_key":"24377"} +{"label":"Amori, letti e tradimenti","description":"No overview found.","id":"5078","runtime":88,"imdbId":"tt0072641","version":35,"lastModified":"1301906750000","studio":"Alexandra Films","title":"Amori, letti e tradimenti","releaseDate":157766400000,"language":"en","type":"Movie","_key":"24378"} +{"label":"Alfonso Brescia","version":25,"id":"41147","lastModified":"1301901964000","name":"Alfonso Brescia","type":"Person","_key":"24379"} +{"label":"Ugo Bologna","version":32,"id":"41153","lastModified":"1301901426000","name":"Ugo Bologna","type":"Person","_key":"24380"} +{"label":"Don Backy","version":22,"id":"41155","lastModified":"1301901582000","name":"Don Backy","type":"Person","_key":"24381"} +{"label":"L'ultima volta","description":"No overview found.","id":"5079","runtime":97,"imdbId":"tt0075366","version":42,"lastModified":"1301905283000","studio":"Marzia Cinematografica","genre":"Crime","title":"L'ultima volta","releaseDate":189302400000,"language":"en","type":"Movie","_key":"24382"} +{"label":"Aldo Lado","version":24,"id":"41092","lastModified":"1301901836000","name":"Aldo Lado","type":"Person","_key":"24383"} +{"label":"Massimo Ranieri","version":20,"id":"41093","lastModified":"1301901896000","name":"Massimo Ranieri","type":"Person","_key":"24384"} +{"label":"Luigi Casellato","version":19,"id":"41094","lastModified":"1301901736000","name":"Luigi Casellato","type":"Person","_key":"24385"} +{"label":"Dominique Demarest","version":19,"id":"41095","lastModified":"1301901736000","name":"Dominique Demarest","type":"Person","_key":"24386"} +{"label":"Giovanni Ventura","version":19,"id":"41096","lastModified":"1301901896000","name":"Giovanni Ventura","type":"Person","_key":"24387"} +{"label":"Bruno Rosa","version":19,"id":"41097","lastModified":"1301901896000","name":"Bruno Rosa","type":"Person","_key":"24388"} +{"label":"Peccati a Venezia","description":"No overview found.","id":"5080","runtime":90,"imdbId":"tt0131524","version":40,"lastModified":"1301418661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3c\/4bc91c18017a3c57fe00ae3c\/peccati-a-venezia-mid.jpg","studio":"SIDAF","genre":"Erotic","title":"Peccati a Venezia","releaseDate":315532800000,"language":"en","type":"Movie","_key":"24389"} +{"label":"Amasi Damiani","version":24,"id":"41060","lastModified":"1301901414000","name":"Amasi Damiani","type":"Person","_key":"24390"} +{"label":"Gianni Dei","version":22,"id":"41067","lastModified":"1301902011000","name":"Gianni Dei","type":"Person","_key":"24391"} +{"label":"Dora Calindri","version":19,"id":"41068","lastModified":"1301901896000","name":"Dora Calindri","type":"Person","_key":"24392"} +{"label":"Laura Levi","version":20,"id":"41069","lastModified":"1301901736000","name":"Laura Levi","type":"Person","_key":"24393"} +{"label":"Gino Cassani","version":19,"id":"41070","lastModified":"1301901736000","name":"Gino Cassani","type":"Person","_key":"24394"} +{"label":"Leonora Fani","version":20,"id":"41071","lastModified":"1301901896000","name":"Leonora Fani","type":"Person","_key":"24395"} +{"label":"Febbre a 40!","description":"No overview found.","id":"5081","runtime":79,"imdbId":"tt0080838","version":42,"lastModified":"1301418661000","genre":"Comedy","title":"Febbre a 40!","releaseDate":315532800000,"language":"en","type":"Movie","_key":"24396"} +{"label":"Marius Mattei","version":25,"id":"41117","lastModified":"1301901969000","name":"Marius Mattei","type":"Person","_key":"24397"} +{"label":"Carole Andr\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/532\/4d6e9ce15e73d65a17000532\/carole-andr-profile.jpg","version":25,"id":"41118","lastModified":"1301901458000","name":"Carole Andr\u00e9","type":"Person","_key":"24398"} +{"label":"Isarco Ravaioli","version":22,"id":"41119","lastModified":"1301901768000","name":"Isarco Ravaioli","type":"Person","_key":"24399"} +{"label":"Marina Hedman","version":23,"id":"41074","lastModified":"1301901790000","name":"Marina Hedman","type":"Person","_key":"24400"} +{"label":"Zaira Zoccheddu","version":21,"id":"41121","lastModified":"1301901988000","name":"Zaira Zoccheddu","type":"Person","_key":"24401"} +{"label":"La Compagna di Viaggio","description":"No overview found.","id":"5082","runtime":94,"imdbId":"tt0080555","version":40,"lastModified":"1300978373000","studio":"Rinascita Cinematografica","genre":"Comedy","title":"La Compagna di Viaggio","releaseDate":315532800000,"language":"en","type":"Movie","_key":"24402"} +{"label":"Ferdinando Baldi","version":26,"id":"41159","lastModified":"1301901567000","name":"Ferdinando Baldi","type":"Person","_key":"24403"} +{"label":"Anna Maria Rizzoli","version":21,"id":"41160","lastModified":"1301901677000","name":"Anna Maria Rizzoli","type":"Person","_key":"24404"} +{"label":"Giorgio Bracardi","version":20,"id":"41161","lastModified":"1301902002000","name":"Giorgio Bracardi","type":"Person","_key":"24405"} +{"label":"Moana Pozzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/520\/4bfa9006017a3c702d000520\/moana-pozzi-profile.jpg","version":19,"birthday":"-273978000000","id":"41162","birthplace":"Genova, Italy","lastModified":"1301901964000","name":"Moana Pozzi","type":"Person","_key":"24406"} +{"label":"Serena Grandi","version":30,"id":"41163","lastModified":"1301901567000","name":"Serena Grandi","type":"Person","_key":"24407"} +{"label":"Massimo Pittarello","version":20,"id":"41164","lastModified":"1301901817000","name":"Massimo Pittarello","type":"Person","_key":"24408"} +{"label":"Loris Peota","version":20,"id":"41165","lastModified":"1301901817000","name":"Loris Peota","type":"Person","_key":"24409"} +{"label":"Pino Ferrara","version":20,"id":"41166","lastModified":"1301901817000","name":"Pino Ferrara","type":"Person","_key":"24410"} +{"label":"Corpi nudi","description":"No overview found.","id":"5083","runtime":90,"imdbId":"tt0150202","version":36,"lastModified":"1301907421000","studio":"SIDAF","genre":"Erotic","title":"Corpi nudi","releaseDate":410227200000,"language":"en","type":"Movie","_key":"24411"} +{"label":"Guia Lauri Filzi","version":20,"id":"41072","lastModified":"1301901677000","name":"Guia Lauri Filzi","type":"Person","_key":"24412"} +{"label":"Sandy Samuel","version":21,"id":"41073","lastModified":"1301901964000","name":"Sandy Samuel","type":"Person","_key":"24413"} +{"label":"Rosy Navarro","version":20,"id":"41075","lastModified":"1301901677000","name":"Rosy Navarro","type":"Person","_key":"24414"} +{"label":"Seifenblasen","description":"No overview found.","id":"5084","runtime":92,"imdbId":"tt0088081","version":33,"lastModified":"1301907420000","genre":"Comedy","title":"Seifenblasen","releaseDate":441763200000,"language":"en","type":"Movie","_key":"24415"} +{"label":"Alfred Ninaus","version":20,"id":"41078","lastModified":"1301901657000","name":"Alfred Ninaus","type":"Person","_key":"24416"} +{"label":"Claudia Anderson","version":20,"id":"41083","lastModified":"1301902002000","name":"Claudia Anderson","type":"Person","_key":"24417"} +{"label":"Stefan Makk","version":20,"id":"41085","lastModified":"1301901817000","name":"Stefan Makk","type":"Person","_key":"24418"} +{"label":"Raimond Knoll","version":20,"id":"41086","lastModified":"1301902001000","name":"Raimond Knoll","type":"Person","_key":"24419"} +{"label":"L'ultimo giorno","description":"No overview found.","id":"5085","runtime":90,"imdbId":"tt0214228","version":43,"lastModified":"1301419547000","title":"L'ultimo giorno","releaseDate":473385600000,"language":"en","type":"Movie","_key":"24420"} +{"label":"Domiziano Arcangeli","version":28,"id":"41062","lastModified":"1301901676000","name":"Domiziano Arcangeli","type":"Person","_key":"24421"} +{"label":"Silvano Tranquilli","version":25,"id":"41063","lastModified":"1301901817000","name":"Silvano Tranquilli","type":"Person","_key":"24422"} +{"label":"Ator III: The Hobgoblin","description":"No overview found.","id":"5086","runtime":94,"imdbId":"tt0100448","version":75,"lastModified":"1301908339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e41\/4bc91c18017a3c57fe00ae41\/ator-linvincible-mid.jpg","studio":"Filmirage S.r.l.","genre":"Adventure","title":"Ator III: The Hobgoblin","releaseDate":631152000000,"language":"en","type":"Movie","_key":"24423"} +{"label":"Eric Allan Kramer","version":35,"id":"41125","lastModified":"1301901491000","name":"Eric Allan Kramer","type":"Person","_key":"24424"} +{"label":"Margaret Lenzey","version":20,"id":"41126","lastModified":"1301901896000","name":"Margaret Lenzey","type":"Person","_key":"24425"} +{"label":"Laura Gemser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28f\/4c3120f27b9aa1666300028f\/laura-gemser-profile.jpg","version":79,"id":"41127","lastModified":"1302025010000","name":"Laura Gemser","type":"Person","_key":"24426"} +{"label":"Chris Murphy","version":20,"id":"41128","lastModified":"1301901896000","name":"Chris Murphy","type":"Person","_key":"24427"} +{"label":"Dina Morrone","version":20,"id":"41129","lastModified":"1301901896000","name":"Dina Morrone","type":"Person","_key":"24428"} +{"label":"Don Semeraro","version":20,"id":"41130","lastModified":"1301901896000","name":"Don Semeraro","type":"Person","_key":"24429"} +{"label":"Bil'in habibti","description":"The Israeli filmmaker Shai Corneli Polak records the building of the 'security wall' through Palestinian territory at the village of Bil'in. The villagers protest mostly peacefully, while the Israeli army doesn't react peacefully. By now the Israeli High Court has ruled that the building of the wall was illegal.","id":"5087","runtime":55,"imdbId":"tt1334581","version":33,"lastModified":"1301907421000","studio":"Claudius Films","genre":"Documentary","title":"Bil'in habibti","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"24430"} +{"label":"Shai Carmeli-Pollak","version":22,"id":"41131","lastModified":"1301901817000","name":"Shai Carmeli-Pollak","type":"Person","_key":"24431"} +{"label":"The Sugarland Express","description":"Lou-Jean, a blonde woman, tells her husband, who is imprisoned, to escape. They plan to kidnap their own child, who was placed with foster parents. The escape is partly successful, they take a hostage, who is a policeman and are pursued through to Texas.","id":"5121","runtime":110,"imdbId":"tt0072226","version":96,"lastModified":"1301904626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e46\/4bc91c1b017a3c57fe00ae46\/the-sugarland-express-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Sugarland Express","releaseDate":134352000000,"language":"en","tagline":"A girl with a great following.","type":"Movie","_key":"24432"} +{"label":"Michael Sacks","version":22,"id":"41278","lastModified":"1301901443000","name":"Michael Sacks","type":"Person","_key":"24433"} +{"label":"Gregory Walcott","version":33,"id":"41279","lastModified":"1301901253000","name":"Gregory Walcott","type":"Person","_key":"24434"} +{"label":"Steve Kanaly","version":23,"id":"41280","lastModified":"1301901617000","name":"Steve Kanaly","type":"Person","_key":"24435"} +{"label":"Harrison Zanuck","version":21,"id":"41281","lastModified":"1301901511000","name":"Harrison Zanuck","type":"Person","_key":"24436"} +{"label":"The Day of the Locust","description":"No overview found.","id":"5122","runtime":144,"imdbId":"tt0072848","version":116,"lastModified":"1301904027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/820\/4d6ef8965e73d65a17000820\/the-day-of-the-locust-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Day of the Locust","releaseDate":168652800000,"language":"en","type":"Movie","_key":"24437"} +{"label":"Geraldine Page","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e1\/4ca9eedb7b9aa17acb0006e1\/geraldine-page-profile.jpg","version":46,"id":"41283","lastModified":"1301901191000","name":"Geraldine Page","type":"Person","_key":"24438"} +{"label":"Lelia Goldoni","version":23,"id":"41284","lastModified":"1301901599000","name":"Lelia Goldoni","type":"Person","_key":"24439"} +{"label":"August Rush","description":"A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents. ","id":"5123","runtime":115,"imdbId":"tt0426931","trailer":"http:\/\/www.youtube.com\/watch?v=wH7bq_RjJqg","homepage":"http:\/\/augustrushmovie.warnerbros.com\/","version":306,"lastModified":"1301901677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5b\/4bc91c1d017a3c57fe00ae5b\/august-rush-mid.jpg","studio":"CJ Entertainment","genre":"Drama","title":"August Rush","releaseDate":1192838400000,"language":"en","type":"Movie","_key":"24440"} +{"label":"Kirsten Sheridan","version":29,"id":"41285","lastModified":"1301901307000","name":"Kirsten Sheridan","type":"Person","_key":"24441"} +{"label":"Marian Seldes","version":33,"id":"41293","lastModified":"1301901197000","name":"Marian Seldes","type":"Person","_key":"24442"} +{"label":"Mykelti Williamson","version":41,"id":"41294","lastModified":"1301901242000","name":"Mykelti Williamson","type":"Person","_key":"24443"} +{"label":"Leon Thomas III","version":23,"id":"41295","lastModified":"1301901419000","name":"Leon Thomas III","type":"Person","_key":"24444"} +{"label":"Aaron Staton","version":21,"id":"41296","lastModified":"1301901477000","name":"Aaron Staton","type":"Person","_key":"24445"} +{"label":"Alex O'Loughlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/306\/4becfffe017a3c37a5000306\/alex-o-loughlin-profile.jpg","version":28,"id":"41297","lastModified":"1301901250000","name":"Alex O'Loughlin","type":"Person","_key":"24446"} +{"label":"Jamia Simone Nash","version":22,"id":"41298","lastModified":"1301901413000","name":"Jamia Simone Nash","type":"Person","_key":"24447"} +{"label":"Comrades in Dreams","description":"No overview found.","id":"5124","runtime":100,"imdbId":"tt0893513","version":129,"lastModified":"1301908345000","studio":"Flying Moon Filmproduktion GmbH","genre":"Documentary","title":"Comrades in Dreams","releaseDate":1163289600000,"language":"en","type":"Movie","_key":"24448"} +{"label":"Uli Gaulke","version":21,"id":"41299","lastModified":"1301901617000","name":"Uli Gaulke","type":"Person","_key":"24449"} +{"label":"Anup Jagdale","version":19,"id":"41304","lastModified":"1301901617000","name":"Anup Jagdale","type":"Person","_key":"24450"} +{"label":"Penny Tefertiller","version":19,"id":"41305","lastModified":"1301901431000","name":"Penny Tefertiller","type":"Person","_key":"24451"} +{"label":"Yong-Sil Han","version":18,"id":"41306","lastModified":"1301901676000","name":"Yong-Sil Han","type":"Person","_key":"24452"} +{"label":"Lasanne Badiel","version":18,"id":"41307","lastModified":"1301901680000","name":"Lasanne Badiel","type":"Person","_key":"24453"} +{"label":"Rendition","description":"When an Egyptian terrorism suspect \"disappears\" on a flight from Africa to Washington DC, his American wife and a CIA analyst find themselves caught up in a struggle to secure his release from a secret detention facility somewhere outside the US.","id":"5125","runtime":120,"imdbId":"tt0804522","trailer":"http:\/\/www.youtube.com\/watch?v=IaK-HKIdv1E","homepage":"http:\/\/www.renditionmovie.com","version":275,"lastModified":"1301902443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e76\/4bc91c24017a3c57fe00ae76\/rendition-mid.jpg","studio":"Anonymous Content","genre":"Drama","title":"Rendition","releaseDate":1189123200000,"language":"en","type":"Movie","_key":"24454"} +{"label":"Omar Metwally","version":32,"id":"41309","lastModified":"1301901338000","name":"Omar Metwally","type":"Person","_key":"24455"} +{"label":"Moa Khouas","version":28,"id":"41313","lastModified":"1301901306000","name":"Moa Khouas","type":"Person","_key":"24456"} +{"label":"Zineb Oukach","version":25,"id":"41314","lastModified":"1301901476000","name":"Zineb Oukach","type":"Person","_key":"24457"} +{"label":"Laila Mrabti","version":25,"id":"41317","lastModified":"1301901382000","name":"Laila Mrabti","type":"Person","_key":"24458"} +{"label":"Najib Oudghiri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/785\/4cf718835e73d6299c001785\/najib-oudghiri-profile.jpg","version":25,"id":"143403","lastModified":"1301904067000","name":"Najib Oudghiri","type":"Person","_key":"24459"} +{"label":"Martian Child","description":"A science-fiction writer, recently widowed, considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially rejected boy who says he's really from Mars.","id":"5126","runtime":106,"imdbId":"tt0415965","trailer":"http:\/\/www.youtube.com\/watch?v=320","version":208,"lastModified":"1301903388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/172\/4d8d326b5e73d65f0e000172\/martian-child-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Martian Child","releaseDate":1193961600000,"language":"en","type":"Movie","_key":"24460"} +{"label":"Bobby Coleman","version":30,"id":"41308","lastModified":"1301901289000","name":"Bobby Coleman","type":"Person","_key":"24461"} +{"label":"Menno Meyjes","version":36,"id":"736","lastModified":"1301901203000","name":"Menno Meyjes","type":"Person","_key":"24462"} +{"label":"Ancient Warriors","description":"No overview found.","id":"5127","runtime":93,"imdbId":"tt0264365","version":64,"lastModified":"1301908339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff6\/4d8bcf695e73d653ce000ff6\/ancient-warriors-mid.jpg","studio":"Arc2 Intertainment","genre":"Action","title":"Ancient Warriors","releaseDate":1046476800000,"language":"en","type":"Movie","_key":"24463"} +{"label":"Walter von Huene","version":20,"id":"41338","lastModified":"1301901995000","name":"Walter von Huene","type":"Person","_key":"24464"} +{"label":"Michelle Hunziker","version":22,"id":"41340","lastModified":"1301901707000","name":"Michelle Hunziker","type":"Person","_key":"24465"} +{"label":"Andy Mackenzie","version":21,"id":"41341","lastModified":"1301902005000","name":"Andy Mackenzie","type":"Person","_key":"24466"} +{"label":"Iris Peynado","version":22,"id":"41342","lastModified":"1301901789000","name":"Iris Peynado","type":"Person","_key":"24467"} +{"label":"Michael Hartson","version":20,"id":"41343","lastModified":"1301901964000","name":"Michael Hartson","type":"Person","_key":"24468"} +{"label":"Lamont Johnson","version":26,"id":"41344","lastModified":"1301901657000","name":"Lamont Johnson","type":"Person","_key":"24469"} +{"label":"Ashley Eckstein","version":25,"id":"41345","lastModified":"1301901606000","name":"Ashley Eckstein","type":"Person","_key":"24470"} +{"label":"Stacey Longoria","version":20,"id":"41346","lastModified":"1301902001000","name":"Stacey Longoria","type":"Person","_key":"24471"} +{"label":"Beretta's Island","description":"No overview found.","id":"5128","runtime":90,"imdbId":"tt0138322","version":78,"lastModified":"1301906633000","studio":"Franco Columbu Productions","genre":"Action","title":"Beretta's Island","releaseDate":768096000000,"language":"en","type":"Movie","_key":"24472"} +{"label":"Michael Preece","version":22,"id":"41349","lastModified":"1301901657000","name":"Michael Preece","type":"Person","_key":"24473"} +{"label":"Ken Kercheval","version":20,"id":"41350","lastModified":"1301901673000","name":"Ken Kercheval","type":"Person","_key":"24474"} +{"label":"Van Quattro","version":20,"id":"41352","lastModified":"1301901657000","name":"Van Quattro","type":"Person","_key":"24475"} +{"label":"Leslie Ming","version":20,"id":"41353","lastModified":"1301901657000","name":"Leslie Ming","type":"Person","_key":"24476"} +{"label":"Audrey Brunner","version":20,"id":"41354","lastModified":"1301901657000","name":"Audrey Brunner","type":"Person","_key":"24477"} +{"label":"Dimitri Logothetis","version":25,"id":"41355","lastModified":"1301901657000","name":"Dimitri Logothetis","type":"Person","_key":"24478"} +{"label":"Elizabeth Kaitan","version":20,"id":"98078","lastModified":"1301902325000","name":"Elizabeth Kaitan","type":"Person","_key":"24479"} +{"label":"Sky Captain and the World of Tomorrow","description":"When scientists the world over keep disappearing without a trace, it's up to intrepid reporter Polly Perkins and top aviator Sky Captain to uncover the truth in this futuristic, Art Deco-style actioner. The task involves putting their lives at risk as the pair travels to treacherous locales, hoping to throw a wrench in the plans of a villain who aims to wipe out the planet.","id":"5137","runtime":107,"imdbId":"tt0346156","trailer":"http:\/\/www.youtube.com\/watch?v=Ecg1Er38pvk","homepage":"http:\/\/www.skycaptain.com\/","version":261,"lastModified":"1301907506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4c17ba237b9aa10913000119\/sky-captain-and-the-world-of-tomorrow-mid.jpg","studio":"Natural Nylon Entertainment","genre":"Action","title":"Sky Captain and the World of Tomorrow","releaseDate":1095120000000,"language":"en","tagline":"The Battle for Tomorrow is About to Begin...","type":"Movie","_key":"24480"} +{"label":"Kerry Conran","version":23,"id":"41378","lastModified":"1301901206000","name":"Kerry Conran","type":"Person","_key":"24481"} +{"label":"Omid Djalili","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d85\/4cbc61d15e73d67783000d85\/omid-djalili-profile.jpg","version":49,"id":"41379","lastModified":"1301901198000","name":"Omid Djalili","type":"Person","_key":"24482"} +{"label":"Peter Law","version":23,"id":"41380","lastModified":"1301901513000","name":"Peter Law","type":"Person","_key":"24483"} +{"label":"The Fox and the Child","description":"A young girl of about 10 years lives in a solitary peasant's house on the edge of the jurassic mountains in the East of France. One day in autumn, when she is on her way to school through the forest, she observes a hunting fox. Of course, the fox flees from her, but the girl feels a strong desire to meet the fox again.","id":"5139","runtime":110,"imdbId":"tt0756648","homepage":"http:\/\/www.lerenardetlenfant.com\/","version":171,"lastModified":"1301902980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9d\/4bc91c2a017a3c57fe00ae9d\/le-renard-et-l-enfant-mid.jpg","studio":"Bonne Pioche","genre":"Adventure","title":"The Fox and the Child","releaseDate":1197417600000,"language":"en","type":"Movie","_key":"24484"} +{"label":"Bertille No\u00ebl-Bruneau","version":20,"id":"41570","lastModified":"1301901736000","name":"Bertille No\u00ebl-Bruneau","type":"Person","_key":"24485"} +{"label":"Hannah And Her Sisters","description":"No overview found.","id":"5143","runtime":103,"imdbId":"tt0091167","trailer":"http:\/\/www.youtube.com\/watch?v=sZo6xjhGHUk","version":210,"lastModified":"1301903740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/003\/4d29878d7b9aa134dc003003\/hannah-and-her-sisters-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Hannah And Her Sisters","releaseDate":508118400000,"language":"en","type":"Movie","_key":"24486"} +{"label":"Christian Clemenson","version":28,"id":"41517","lastModified":"1301901586000","name":"Christian Clemenson","type":"Person","_key":"24487"} +{"label":"Marquise","description":"No overview found.","id":"5144","runtime":120,"imdbId":"tt0119623","version":83,"lastModified":"1301906633000","studio":"France 3 Cin\u00e9ma","genre":"Drama","title":"Marquise","releaseDate":872035200000,"language":"en","type":"Movie","_key":"24488"} +{"label":"V\u00e9ra Belmont","version":28,"id":"41518","lastModified":"1301901456000","name":"V\u00e9ra Belmont","type":"Person","_key":"24489"} +{"label":"Patrick Timsit","version":40,"id":"41526","lastModified":"1301901083000","name":"Patrick Timsit","type":"Person","_key":"24490"} +{"label":"Remo Girone","version":28,"id":"41527","lastModified":"1301901335000","name":"Remo Girone","type":"Person","_key":"24491"} +{"label":"Franck de la Personne","version":21,"id":"41528","lastModified":"1301901651000","name":"Franck de la Personne","type":"Person","_key":"24492"} +{"label":"Romina Mondello","version":24,"id":"41529","lastModified":"1301901897000","name":"Romina Mondello","type":"Person","_key":"24493"} +{"label":"The Business","description":"Set in 1980's Spain, Frankie is on the run from the high-rise's of South London to a new life in Malaga with nothing but a tin stuffed full of cash. Having no idea that this delivery of cash to super-suave playboy and ex-con Charlie will change his life forever, Frankie soon becomes one of the gang, and finds himself drawn into a flamboyant and violent world of organized crime.","id":"5145","runtime":97,"imdbId":"tt0429715","homepage":"http:\/\/www.thebusinessmovie.co.uk\/","version":199,"lastModified":"1301907790000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb8\/4bc91c2b017a3c57fe00aeb8\/the-business-mid.jpg","studio":"Vertigo Entertainment","genre":"Comedy","title":"The Business","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"24494"} +{"label":"Nick Love","version":28,"id":"41530","lastModified":"1301901783000","name":"Nick Love","type":"Person","_key":"24495"} +{"label":"Georgina Chapman","version":25,"id":"41547","lastModified":"1301901617000","name":"Georgina Chapman","type":"Person","_key":"24496"} +{"label":"Paul Burns","version":19,"id":"41540","lastModified":"1301902108000","name":"Paul Burns","type":"Person","_key":"24497"} +{"label":"Camille Coduri","version":23,"id":"26071","lastModified":"1301901514000","name":"Camille Coduri","type":"Person","_key":"24498"} +{"label":"The In-Laws","description":"Right before his daughter's wedding, a mild-mannered foot doctor discovers that his new in-laws are international smugglers.","id":"5146","runtime":98,"imdbId":"tt0314786","homepage":"http:\/\/thein-laws.warnerbros.com\/shell.html","version":226,"lastModified":"1301907727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec1\/4bc91c2c017a3c57fe00aec1\/the-in-laws-mid.jpg","studio":"Franchise Pictures","genre":"Action","title":"The In-Laws","releaseDate":1050537600000,"language":"en","type":"Movie","_key":"24499"} +{"label":"Andrew Fleming","version":40,"id":"41549","lastModified":"1301901328000","name":"Andrew Fleming","type":"Person","_key":"24500"} +{"label":"Lindsay Sloane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dde\/4d8e65d35e73d66362000dde\/lindsay-sloane-profile.jpg","version":53,"id":"41662","lastModified":"1302060488000","name":"Lindsay Sloane","type":"Person","_key":"24501"} +{"label":"Maria Ricossa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82b\/4d8f2c065e73d65ed600182b\/maria-ricossa-profile.jpg","version":29,"id":"41663","lastModified":"1301902108000","name":"Maria Ricossa","type":"Person","_key":"24502"} +{"label":"Michael Bodnar","version":20,"id":"41658","lastModified":"1301902108000","name":"Michael Bodnar","type":"Person","_key":"24503"} +{"label":"Vladimir Radian","version":20,"id":"41659","lastModified":"1301902108000","name":"Vladimir Radian","type":"Person","_key":"24504"} +{"label":"Robin Tunney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fc\/4d24e1a57b9aa134e00000fc\/robin-tunney-profile.jpg","biography":"Robin Tunney studied acting at the Chicago Academy for the Arts, \nspending her summer performing in such plays as \"Bus Stop\" and \"Agnes of\n God\". She moved to Los Angeles at the age of eighteen and shortly \nlanded roles in such television shows as <a href=\"http:\/\/www.imdb.com\/title\/tt0096635\/\">\"Life Goes On\"<\/a> (1989), <a href=\"http:\/\/www.imdb.com\/title\/tt0105972\/\">\"Class of '96\"<\/a> (1993) (recurring), <a href=\"http:\/\/www.imdb.com\/title\/tt0098844\/\">\"Law & Order\"<\/a> (1990), HBO's <a href=\"","version":49,"id":"17346","lastModified":"1301901194000","name":"Robin Tunney","type":"Person","_key":"24505"} +{"label":"Susan Aceron","version":21,"id":"41661","lastModified":"1301901736000","name":"Susan Aceron","type":"Person","_key":"24506"} +{"label":"Chang Tseng","version":32,"id":"41664","lastModified":"1301901488000","name":"Chang Tseng","type":"Person","_key":"24507"} +{"label":"The Lost Continent","description":"A cast of characters with sorted pasts take a charted cargo ship to get away from their troubles. Unfortunately, the boat is filled with explosives and when they go off the ship sinks stranding the crew and many of the passengers. Their troubles are just beginning when they're attacked by monsters and people that think they're Spanish conquistadors.","id":"5147","runtime":97,"imdbId":"tt0063240","trailer":"http:\/\/www.youtube.com\/watch?v=oJ3oQMLMBnk","version":88,"lastModified":"1301906012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12a\/4c7e547e7b9aa10d9400012a\/the-lost-continent-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Lost Continent","releaseDate":-48470400000,"language":"en","type":"Movie","_key":"24508"} +{"label":"Nigel Stock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22e\/4c9eba3f5e73d6704b00022e\/nigel-stock-profile.jpg","version":28,"id":"108637","lastModified":"1301901157000","name":"Nigel Stock","type":"Person","_key":"24509"} +{"label":"Neil McCallum","version":17,"id":"131109","lastModified":"1301902582000","name":"Neil McCallum","type":"Person","_key":"24510"} +{"label":"Ben Carruthers","version":19,"id":"131110","lastModified":"1301902554000","name":"Ben Carruthers","type":"Person","_key":"24511"} +{"label":"Jimmy Hanley","version":20,"id":"108680","lastModified":"1301903077000","name":"Jimmy Hanley","type":"Person","_key":"24512"} +{"label":"Dana Gillespie","version":19,"id":"110318","lastModified":"1301902227000","name":"Dana Gillespie","type":"Person","_key":"24513"} +{"label":"Michael Carreras","version":36,"id":"29664","lastModified":"1301901801000","name":"Michael Carreras","type":"Person","_key":"24514"} +{"label":"Schulz & Schulz","description":"No overview found.","id":"5150","runtime":105,"imdbId":"tt1226281","version":64,"lastModified":"1301907420000","studio":"Aspekt Telefilm","genre":"Comedy","title":"Schulz & Schulz","releaseDate":629251200000,"language":"en","type":"Movie","_key":"24515"} +{"label":"Ilse Hofmann","version":21,"id":"41593","lastModified":"1301901840000","name":"Ilse Hofmann","type":"Person","_key":"24516"} +{"label":"Klaus J. Behrendt","version":26,"id":"28368","lastModified":"1301901964000","name":"Klaus J. Behrendt","type":"Person","_key":"24517"} +{"label":"Marlen Diekhoff","version":22,"id":"41599","lastModified":"1301901567000","name":"Marlen Diekhoff","type":"Person","_key":"24518"} +{"label":"Gerhard Garbers","version":24,"id":"41600","lastModified":"1301901789000","name":"Gerhard Garbers","type":"Person","_key":"24519"} +{"label":"Krystian Martinek","version":23,"id":"41594","lastModified":"1301901789000","name":"Krystian Martinek","type":"Person","_key":"24520"} +{"label":"Bodo Frank","version":22,"id":"41601","lastModified":"1301902159000","name":"Bodo Frank","type":"Person","_key":"24521"} +{"label":"Werner Schwuchow","version":23,"id":"41602","lastModified":"1301901789000","name":"Werner Schwuchow","type":"Person","_key":"24522"} +{"label":"Schulz & Schulz II: Aller Anfang ist schwer","description":"No overview found.","id":"5151","runtime":94,"imdbId":"tt0102856","version":44,"lastModified":"1301908599000","studio":"Aspekt Telefilm","genre":"Comedy","title":"Schulz & Schulz II: Aller Anfang ist schwer","releaseDate":670377600000,"language":"en","type":"Movie","_key":"24523"} +{"label":"Monika Peitsch","version":20,"id":"41603","lastModified":"1301902185000","name":"Monika Peitsch","type":"Person","_key":"24524"} +{"label":"Schulz & Schulz IV: Neue Welten, alte Lasten","description":"No overview found.","id":"5152","runtime":90,"imdbId":"tt0108054","version":45,"lastModified":"1301907420000","studio":"Aspekt Telefilm","genre":"Comedy","title":"Schulz & Schulz IV: Neue Welten, alte Lasten","releaseDate":725414400000,"language":"en","type":"Movie","_key":"24525"} +{"label":"Eleonore Weisgerber","version":29,"id":"38621","lastModified":"1301902006000","name":"Eleonore Weisgerber","type":"Person","_key":"24526"} +{"label":"Irmgard Riessen","version":21,"id":"26318","lastModified":"1301902001000","name":"Irmgard Riessen","type":"Person","_key":"24527"} +{"label":"Neithardt Riedel","version":21,"id":"41596","lastModified":"1301902159000","name":"Neithardt Riedel","type":"Person","_key":"24528"} +{"label":"Cabiria","description":"No overview found.","id":"5153","runtime":148,"imdbId":"tt0003740","version":72,"lastModified":"1301905647000","studio":"Itala Film","genre":"Drama","title":"Cabiria","releaseDate":-1766793600000,"language":"en","type":"Movie","_key":"24529"} +{"label":"Carolina Catena","version":21,"id":"41605","lastModified":"1301901519000","name":"Carolina Catena","type":"Person","_key":"24530"} +{"label":"Lidia Quaranta","version":21,"id":"41606","lastModified":"1301901676000","name":"Lidia Quaranta","type":"Person","_key":"24531"} +{"label":"Gina Marangoni","version":21,"id":"41607","lastModified":"1301901581000","name":"Gina Marangoni","type":"Person","_key":"24532"} +{"label":"Dante Testa","version":21,"id":"41608","lastModified":"1301901585000","name":"Dante Testa","type":"Person","_key":"24533"} +{"label":"Umberto Mozzato","version":21,"id":"41609","lastModified":"1301902192000","name":"Umberto Mozzato","type":"Person","_key":"24534"} +{"label":"Bartolomeo Pagano","version":21,"id":"41610","lastModified":"1301902013000","name":"Bartolomeo Pagano","type":"Person","_key":"24535"} +{"label":"Giovanni Pastrone","version":25,"id":"41611","lastModified":"1301901585000","name":"Giovanni Pastrone","type":"Person","_key":"24536"} +{"label":"Ossessione","description":"\"Ossessione\", Luchino Visconti's first film is the also the first filmed adaptation of James M. Cain's novle \"The Postman Always Rings Twice\". It is slightly different than the 1946 John Garfield\/Lana Turner version or the 1981 Bob Rafaelson\/Nicholson\/Lange version, but the basic plot stays the same, except moved to Italy.","id":"5155","runtime":140,"imdbId":"tt0035160","version":107,"lastModified":"1301985936000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4cc6be9a7b9aa15b2500002a\/ossessione-mid.jpg","studio":"Industrie Cinematografiche Italiane","genre":"Drama","title":"Ossessione","releaseDate":-840412800000,"language":"en","type":"Movie","_key":"24537"} +{"label":"Clara Calamai","version":22,"id":"42407","lastModified":"1301985936000","name":"Clara Calamai","type":"Person","_key":"24538"} +{"label":"Dhia Cristiani","version":21,"id":"42408","lastModified":"1301985936000","name":"Dhia Cristiani","type":"Person","_key":"24539"} +{"label":"Elio Marcuzzo","version":21,"id":"42409","lastModified":"1301985936000","name":"Elio Marcuzzo","type":"Person","_key":"24540"} +{"label":"Michele Riccardini","version":21,"id":"42410","lastModified":"1301985936000","name":"Michele Riccardini","type":"Person","_key":"24541"} +{"label":"Juan de Landa","version":21,"id":"42411","lastModified":"1301985936000","name":"Juan de Landa","type":"Person","_key":"24542"} +{"label":"The Bicycle Thief","description":"A man and his son search for a stolen bicycle vital for his job.","id":"5156","runtime":93,"imdbId":"tt0040522","trailer":"http:\/\/www.youtube.com\/watch?v=FZm7WuIVPtM","version":739,"lastModified":"1301907354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ece\/4bc91c30017a3c57fe00aece\/ladri-di-biciclette-mid.jpg","studio":"Produzioni De Sica","genre":"Drama","title":"The Bicycle Thief","releaseDate":-665971200000,"language":"en","type":"Movie","_key":"24543"} +{"label":"Lamberto Maggiorani","version":21,"id":"42416","lastModified":"1301901617000","name":"Lamberto Maggiorani","type":"Person","_key":"24544"} +{"label":"Enzo Staiola","version":21,"id":"42417","lastModified":"1301901736000","name":"Enzo Staiola","type":"Person","_key":"24545"} +{"label":"Lianella Carell","version":21,"id":"42419","lastModified":"1301901896000","name":"Lianella Carell","type":"Person","_key":"24546"} +{"label":"Carlo Jachino","version":21,"id":"42421","lastModified":"1301901896000","name":"Carlo Jachino","type":"Person","_key":"24547"} +{"label":"Giulio Chiari","version":21,"id":"42423","lastModified":"1301902108000","name":"Giulio Chiari","type":"Person","_key":"24548"} +{"label":"Beneath the Valley of the Ultra-Vixens","description":"No overview found.","id":"5157","runtime":93,"imdbId":"tt0078846","version":62,"lastModified":"1301906660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54b\/4bf3b62d017a3c321500054b\/beneath-the-valley-of-the-ultra-vixens-mid.jpg","studio":"RM Films International","genre":"Comedy","title":"Beneath the Valley of the Ultra-Vixens","releaseDate":291772800000,"language":"en","tagline":"Six Chicks in search of a Cluck! ...and so hilariously funny!","type":"Movie","_key":"24549"} +{"label":"Uschi Digard","version":51,"id":"41699","lastModified":"1301901418000","name":"Uschi Digard","type":"Person","_key":"24550"} +{"label":"Ann Marie","version":18,"id":"41703","lastModified":"1301901188000","name":"Ann Marie","type":"Person","_key":"24551"} +{"label":"Sharon Ceccatti","version":18,"id":"41706","lastModified":"1301902200000","name":"Sharon Ceccatti","type":"Person","_key":"24552"} +{"label":"Ken Kerr","version":23,"id":"41707","lastModified":"1301901817000","name":"Ken Kerr","type":"Person","_key":"24553"} +{"label":"June Mack","version":20,"id":"41708","lastModified":"1301902028000","name":"June Mack","type":"Person","_key":"24554"} +{"label":"Kitten Natividad","version":31,"id":"41711","lastModified":"1301901817000","name":"Kitten Natividad","type":"Person","_key":"24555"} +{"label":"Blood wanted","description":"No overview found.","id":"5161","runtime":0,"version":771,"lastModified":"1302044890000","title":"Blood wanted","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"24556"} +{"label":"John Klann","version":16,"id":"41758","lastModified":"1301902007000","name":"John Klann","type":"Person","_key":"24557"} +{"label":"L'avventura","description":"A woman disappears during a Mediterranean boating trip. But during the search, her lover and her best friend become attracted to each other.","id":"5165","runtime":145,"imdbId":"tt0053619","version":132,"lastModified":"1301903755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed7\/4bc91c30017a3c57fe00aed7\/l-avventura-mid.jpg","studio":"Cino del Duca","genre":"Crime","title":"L'avventura","releaseDate":-300067200000,"language":"en","type":"Movie","_key":"24558"} +{"label":"Monica Vitti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f3\/4c62a6257b9aa1775a0002f3\/monica-vitti-profile.jpg","version":32,"id":"41779","lastModified":"1301901233000","name":"Monica Vitti","type":"Person","_key":"24559"} +{"label":"Esmeralda Ruspoli","version":25,"id":"41780","lastModified":"1301901446000","name":"Esmeralda Ruspoli","type":"Person","_key":"24560"} +{"label":"James Addams","version":19,"id":"41781","lastModified":"1301901736000","name":"James Addams","type":"Person","_key":"24561"} +{"label":"Nadia","description":"No overview found.","id":"5166","runtime":85,"version":57,"lastModified":"1301903689000","genre":"Road Movie","title":"Nadia","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"24562"} +{"label":"Irene Anula","version":16,"id":"41869","lastModified":"1301902010000","name":"Irene Anula","type":"Person","_key":"24563"} +{"label":"Nightrain","description":"No overview found.","id":"5167","runtime":96,"version":36,"lastModified":"1301906633000","studio":"Radio T\u00e9l\u00e9vision Belge Francophone","genre":"Drama","title":"Nightrain","releaseDate":1194134400000,"language":"en","type":"Movie","_key":"24564"} +{"label":"Leah Thys","version":15,"id":"41813","lastModified":"1301902108000","name":"Leah Thys","type":"Person","_key":"24565"} +{"label":"Chris Boni","version":15,"id":"41815","lastModified":"1301902108000","name":"Chris Boni","type":"Person","_key":"24566"} +{"label":"Isabel Leybaert","version":15,"id":"41814","lastModified":"1301902108000","name":"Isabel Leybaert","type":"Person","_key":"24567"} +{"label":"Arthur Semay","version":15,"id":"41816","lastModified":"1301901736000","name":"Arthur Semay","type":"Person","_key":"24568"} +{"label":"Free Souffriau","version":23,"id":"41817","lastModified":"1301901952000","name":"Free Souffriau","type":"Person","_key":"24569"} +{"label":"\u00catre et Avoir","description":"Ce documentaire porte sur la classe unique d'une \u00e9cole communale, \u00e0 Saint-Etienne sur Usson, en Auvergne. Le r\u00e9alisateur Nicolas Philibert a ainsi film\u00e9 une de ces classes qui regroupent, autour du m\u00eame ma\u00eetre ou d'une institutrice tous les enfants d'un m\u00eame village, de la maternelle au CM2.","id":"5168","runtime":104,"imdbId":"tt0318202","homepage":"http:\/\/www.seinundhaben.net","version":66,"lastModified":"1301904682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/044\/4c034c85017a3c29a6000044\/etre-et-avoir-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Documentary","title":"\u00catre et Avoir","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"24570"} +{"label":"Nicolas Philibert","version":30,"id":"41788","lastModified":"1301901736000","name":"Nicolas Philibert","type":"Person","_key":"24571"} +{"label":"Olivier","version":20,"id":"41797","lastModified":"1301901895000","name":"Olivier","type":"Person","_key":"24572"} +{"label":"George Lopez","version":71,"id":"41798","lastModified":"1301901077000","name":"George Lopez","type":"Person","_key":"24573"} +{"label":"Guillaume","version":20,"id":"41799","lastModified":"1301901896000","name":"Guillaume","type":"Person","_key":"24574"} +{"label":"Johan","version":19,"id":"41800","lastModified":"1301901981000","name":"Johan","type":"Person","_key":"24575"} +{"label":"Jonathan","version":20,"id":"41801","lastModified":"1301901617000","name":"Jonathan","type":"Person","_key":"24576"} +{"label":"Laura","version":20,"id":"41802","lastModified":"1301901736000","name":"Laura","type":"Person","_key":"24577"} +{"label":"L\u00e9titia","version":19,"id":"41803","lastModified":"1301901804000","name":"L\u00e9titia","type":"Person","_key":"24578"} +{"label":"Aliz\u00e9","version":20,"id":"41804","lastModified":"1301901539000","name":"Aliz\u00e9","type":"Person","_key":"24579"} +{"label":"Nathalie","version":20,"id":"41805","lastModified":"1301901736000","name":"Nathalie","type":"Person","_key":"24580"} +{"label":"Johann","version":20,"id":"41806","lastModified":"1301901736000","name":"Johann","type":"Person","_key":"24581"} +{"label":"Marie-Elizabeth","version":19,"id":"41807","lastModified":"1301901817000","name":"Marie-Elizabeth","type":"Person","_key":"24582"} +{"label":"Jessie","version":20,"id":"41808","lastModified":"1301901736000","name":"Jessie","type":"Person","_key":"24583"} +{"label":"Axel","version":20,"id":"41809","lastModified":"1301901736000","name":"Axel","type":"Person","_key":"24584"} +{"label":"Julien","version":20,"id":"41810","lastModified":"1301901736000","name":"Julien","type":"Person","_key":"24585"} +{"label":"Saint-Jacques... La Mecque","description":"Pierre, a rich boss, geek of working (De Penguern), Claude, his alcoholic and lifetime unemployed brother (Darroussin) and Clara, a moaning teacher who is incidentally their sister (Robin) learn the death of their mother. The notary tell them few things about the assets (a sum of money and a house) they will inherit... in the only condition of traveling together during 2 months the path of Saint Jacques De Compostel. After a violent refusal, they decide (separatly) to do it. This initiatory trav","id":"5171","runtime":103,"imdbId":"tt0429052","version":116,"lastModified":"1301906490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edc\/4bc91c31017a3c57fe00aedc\/saint-jacques-la-mecque-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Saint-Jacques... La Mecque","releaseDate":1129075200000,"language":"en","type":"Movie","_key":"24586"} +{"label":"Dominique Furg\u00e9","version":20,"id":"41876","lastModified":"1301901896000","name":"Dominique Furg\u00e9","type":"Person","_key":"24587"} +{"label":"Muriel Robin","version":20,"id":"41877","lastModified":"1301901736000","name":"Muriel Robin","type":"Person","_key":"24588"} +{"label":"Pascal L\u00e9gitimus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3da\/4d0e15575e73d637130013da\/pascal-l-gitimus-profile.jpg","version":40,"id":"41878","lastModified":"1301901423000","name":"Pascal L\u00e9gitimus","type":"Person","_key":"24589"} +{"label":"Marie Kremer","version":25,"id":"41879","lastModified":"1301901651000","name":"Marie Kremer","type":"Person","_key":"24590"} +{"label":"Flore Vannier-Moreau","version":20,"id":"41880","lastModified":"1301902108000","name":"Flore Vannier-Moreau","type":"Person","_key":"24591"} +{"label":"Aymen Sa\u00efdi","version":25,"id":"41881","lastModified":"1301901799000","name":"Aymen Sa\u00efdi","type":"Person","_key":"24592"} +{"label":"The Astronaut Farmer","description":"Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel; the FAA stalls him when he files a flight plan","id":"5172","runtime":104,"imdbId":"tt0469263","trailer":"http:\/\/www.youtube.com\/watch?v=330","homepage":"http:\/\/theastronautfarmermovie.warnerbros.com\/","version":283,"lastModified":"1301902211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee9\/4bc91c32017a3c57fe00aee9\/the-astronaut-farmer-mid.jpg","studio":"Polish Brothers Construction","genre":"Adventure","title":"The Astronaut Farmer","releaseDate":1160870400000,"language":"en","type":"Movie","_key":"24593"} +{"label":"Max Thieriot","version":45,"id":"41883","lastModified":"1301901120000","name":"Max Thieriot","type":"Person","_key":"24594"} +{"label":"Jasper Polish","version":20,"id":"41884","lastModified":"1301901900000","name":"Jasper Polish","type":"Person","_key":"24595"} +{"label":"Logan Polish","version":20,"id":"41885","lastModified":"1301901900000","name":"Logan Polish","type":"Person","_key":"24596"} +{"label":"Mark Polish","version":32,"id":"41886","lastModified":"1301901400000","name":"Mark Polish","type":"Person","_key":"24597"} +{"label":"Michael Polish","version":31,"id":"41887","lastModified":"1301901326000","name":"Michael Polish","type":"Person","_key":"24598"} +{"label":"Rush Hour","description":"The series centers on a pair of police detectives\u2014a Chinese police inspector and an American LAPD detective\u2014as they go on a series of misadventures often involving corrupt crime figures. All three films received commercial success and incorporate elements of martial arts, and the buddy cop sub-genre.","id":"5173","version":361,"lastModified":"1301903980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b0\/4d37d3777b9aa17af800e1b0\/rush-hour-mid.jpg","genre":"Action","title":"Rush Hour","language":"en","type":"Movie","_key":"24599"} +{"label":"Rush Hour 3","description":"After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother. ","id":"5174","runtime":91,"imdbId":"tt0293564","trailer":"http:\/\/www.youtube.com\/watch?v=nG5kt7yNLO8","version":1069,"lastModified":"1302061645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f09\/4bc91c3a017a3c57fe00af09\/rush-hour-3-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Rush Hour 3","releaseDate":1186617600000,"language":"en","tagline":"The Rush Is On!","type":"Movie","_key":"24600"} +{"label":"Jingchu Zhang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c39ff585e73d671d4000106\/jingchu-zhang-profile.jpg","version":51,"id":"41894","lastModified":"1302061644000","name":"Jingchu Zhang","type":"Person","_key":"24601"} +{"label":"No\u00e9mie Lenoir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f94\/4d8bd20c7b9aa13ae1001f94\/no-mie-lenoir-profile.jpg","version":18,"id":"145633","lastModified":"1302061645000","name":"No\u00e9mie Lenoir","type":"Person","_key":"24602"} +{"label":"Rush Hour 2","description":"It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot by L.A. crime boss Steven Reign and Triad Ricky Tan, an ex-cop who played a mysterious part in the death of Lee's father. The boys are soon up to their necks in fis","id":"5175","runtime":90,"imdbId":"tt0266915","trailer":"http:\/\/www.youtube.com\/watch?v=LzJEMPM08jU","version":362,"lastModified":"1301901659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2d\/4bc91c3d017a3c57fe00af2d\/rush-hour-2-mid.jpg","studio":"Spyglass Entertainment","genre":"Action","title":"Rush Hour 2","releaseDate":996796800000,"language":"en","tagline":"Get Ready For A Second Rush!","type":"Movie","_key":"24603"} +{"label":"Roselyn Sanchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4c2a415c7b9aa15e9e000033\/roselyn-sanchez-profile.jpg","biography":"<FONT size=3><B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\">Roselyn S\u00e1nchez<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\"> was born in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:City w:st=\"on\">San Juan<\/st1:City>, <st1:place w:st=\"on\">Puerto Rico<\/st1:place> on April 2, 1973. In addition to acting she is also a singer-songwriter, model, producer and writer. In <st1:place w:st=\"on\">Puerto Rico<\/st1:place>, she gai","version":47,"birthday":"102985200000","id":"41901","birthplace":"San Juan, Puerto Rico","lastModified":"1302061691000","name":"Roselyn Sanchez","type":"Person","_key":"24604"} +{"label":"3:10 to Yuma","description":"In Arizona in the late 1800's, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.","id":"5176","runtime":117,"imdbId":"tt0381849","trailer":"http:\/\/www.youtube.com\/watch?v=a1I7QQcXokY","homepage":"http:\/\/www.310toyumathefilm.com\/","version":628,"lastModified":"1301901174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8e\/4bc91c4d017a3c57fe00af8e\/3-10-to-yuma-mid.jpg","studio":"Lionsgate","genre":"Action","title":"3:10 to Yuma","releaseDate":1189036800000,"language":"en","tagline":"Time waits for one man.","type":"Movie","_key":"24605"} +{"label":"Lennie Loftin","version":32,"id":"42200","lastModified":"1301901082000","name":"Lennie Loftin","type":"Person","_key":"24606"} +{"label":"Rio Alexander","version":30,"id":"42201","lastModified":"1301901085000","name":"Rio Alexander","type":"Person","_key":"24607"} +{"label":"Pat Ricotti","version":30,"id":"42203","lastModified":"1301901086000","name":"Pat Ricotti","type":"Person","_key":"24608"} +{"label":"Shawn Howell","version":29,"id":"42204","lastModified":"1301901083000","name":"Shawn Howell","type":"Person","_key":"24609"} +{"label":"Johnny Whitworth","version":49,"id":"73589","lastModified":"1301916267000","name":"Johnny Whitworth","type":"Person","_key":"24610"} +{"label":"Voksne mennesker (Dark Horse)","description":"Sorumsuz grafiti sanat\u00e7\u0131s\u0131 Daniel, en az onun kadar umursamaz Franc ad\u0131nda bir k\u0131z, Dede yani Roger, uykusuzluk \u00e7eken bir yarg\u0131\u00e7 ve k\u00fc\u00e7\u00fck bir Fiat 500 hakk\u0131nda bir \u00f6yk\u00fc. Franc ve Daniel, sorumluluktan ve ba\u011flanmaktan alabildi\u011fine ka\u00e7ar, Dede ise b\u00fct\u00fcn kurallara uymak ister; bir yarg\u0131\u00e7, Daniel\u2019i duvarlara yaz\u0131 yazmaktan su\u00e7lu bulur ama adliyeden \u00e7\u0131kar \u00e7\u0131kmaz, i\u015fini, ailesini, her \u015feyi geride b\u0131rakmaya karar verir.","id":"5177","runtime":100,"imdbId":"tt0408318","homepage":"http:\/\/www.dark-horse.de\/start.htm","version":77,"lastModified":"1301904036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a4\/4ce44b245e73d60f700006a4\/voksne-mennesker-mid.jpg","genre":"Comedy","title":"Voksne mennesker (Dark Horse)","releaseDate":1115942400000,"language":"en","type":"Movie","_key":"24611"} +{"label":"Jakob Cedergren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/88f\/4ccc873e5e73d6502100088f\/jakob-cedergren-profile.jpg","version":30,"id":"41903","lastModified":"1301901469000","name":"Jakob Cedergren","type":"Person","_key":"24612"} +{"label":"Tilly Scott Pedersen","version":22,"id":"41904","lastModified":"1301902016000","name":"Tilly Scott Pedersen","type":"Person","_key":"24613"} +{"label":"Morten Suurballe","version":24,"id":"41905","lastModified":"1301901829000","name":"Morten Suurballe","type":"Person","_key":"24614"} +{"label":"Nicolaj Kopernikus","version":29,"id":"41906","lastModified":"1301902000000","name":"Nicolaj Kopernikus","type":"Person","_key":"24615"} +{"label":"Kristian Halken","version":27,"id":"41907","lastModified":"1301901849000","name":"Kristian Halken","type":"Person","_key":"24616"} +{"label":"Thomas W. Gabrielsson","version":22,"id":"41908","lastModified":"1301902000000","name":"Thomas W. Gabrielsson","type":"Person","_key":"24617"} +{"label":"The Good Heart","description":"Brian Cox stars as Jacques, the curmudgeonly owner of a gritty New York dive bar that serves as home to a motley assortment of professional drinkers. Jacques is determinedly drinking and smoking himself to death when he meets Lucas (Dano), a homeless young man who has already given up on life. Determined to keep his legacy alive, Jacques deems Lucas is a fitting heir and takes him under his wing, schooling him in the male-centric laws of his alcoholic clubhouse: no new customers, no fraternizing","id":"5178","runtime":95,"imdbId":"tt0808285","trailer":"http:\/\/www.youtube.com\/watch?v=JYgnHvgaCfQ","homepage":"http:\/\/www.thegoodheartfilm.com\/","version":708,"lastModified":"1301903500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4c8b6f5e5e73d60690000231\/the-good-heart-mid.jpg","studio":"Zik Zak Kvikmyndir","genre":"Drama","title":"The Good Heart","releaseDate":1272585600000,"language":"en","tagline":"Everyone needs a refuge from the world.","type":"Movie","_key":"24618"} +{"label":"Isild Le Besco","version":30,"id":"59624","lastModified":"1301901421000","name":"Isild Le Besco","type":"Person","_key":"24619"} +{"label":"The Prime of Miss Jean Brodie","description":"A headstrong young teacher in a private school in 1930s Edinburgh ignores the curriculum and influences her impressionable 12 year old charges with her over-romanticized world view.","id":"5179","runtime":116,"imdbId":"tt0064840","version":220,"lastModified":"1301906633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37b\/4ce870695e73d6258e00037b\/the-prime-of-miss-jean-brodie-mid.jpg","genre":"Drama","title":"The Prime of Miss Jean Brodie","releaseDate":-31276800000,"language":"en","type":"Movie","_key":"24620"} +{"label":"Robert Stephens","version":33,"id":"41957","lastModified":"1301901447000","name":"Robert Stephens","type":"Person","_key":"24621"} +{"label":"Gordon Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22d\/4c87b4187b9aa1545f00022d\/gordon-jackson-profile.jpg","version":45,"id":"41998","lastModified":"1301901426000","name":"Gordon Jackson","type":"Person","_key":"24622"} +{"label":"Diane Grayson","version":21,"id":"41999","lastModified":"1301902185000","name":"Diane Grayson","type":"Person","_key":"24623"} +{"label":"Jane Carr","version":29,"id":"42000","lastModified":"1301901964000","name":"Jane Carr","type":"Person","_key":"24624"} +{"label":"Shirley Steedman","version":21,"id":"42001","lastModified":"1301902185000","name":"Shirley Steedman","type":"Person","_key":"24625"} +{"label":"Scandal: On the Other Side","description":"No overview found.","id":"5181","runtime":85,"imdbId":"tt0253394","version":123,"lastModified":"1301418660000","genre":"Comedy","title":"Scandal: On the Other Side","releaseDate":915148800000,"language":"en","type":"Movie","_key":"24626"} +{"label":"Brad Bartram","version":27,"id":"41945","lastModified":"1301901560000","name":"Brad Bartram","type":"Person","_key":"24627"} +{"label":"Jesse Coleman","version":21,"id":"41973","lastModified":"1301902145000","name":"Jesse Coleman","type":"Person","_key":"24628"} +{"label":"Jason Schnuit","version":23,"id":"42078","lastModified":"1301902143000","name":"Jason Schnuit","type":"Person","_key":"24629"} +{"label":"Nancy O'Brien","version":21,"id":"41950","lastModified":"1301901981000","name":"Nancy O'Brien","type":"Person","_key":"24630"} +{"label":"Michelle Hall","version":21,"id":"41952","lastModified":"1301901847000","name":"Michelle Hall","type":"Person","_key":"24631"} +{"label":"Brandy Davis","version":19,"id":"41953","lastModified":"1301901857000","name":"Brandy Davis","type":"Person","_key":"24632"} +{"label":"Griffin Drew","version":27,"id":"41955","lastModified":"1301902129000","name":"Griffin Drew","type":"Person","_key":"24633"} +{"label":"Steve Curtis","version":22,"id":"41975","lastModified":"1301901676000","name":"Steve Curtis","type":"Person","_key":"24634"} +{"label":"Shyra Deland","version":20,"id":"41976","lastModified":"1301902137000","name":"Shyra Deland","type":"Person","_key":"24635"} +{"label":"Jarod Carey","version":20,"id":"41977","lastModified":"1301902108000","name":"Jarod Carey","type":"Person","_key":"24636"} +{"label":"Samantha Phillips","version":27,"id":"41978","lastModified":"1301902198000","name":"Samantha Phillips","type":"Person","_key":"24637"} +{"label":"David Christensen","version":22,"id":"41979","lastModified":"1301901736000","name":"David Christensen","type":"Person","_key":"24638"} +{"label":"Mr. Europe","description":"No overview found.","id":"5182","runtime":65,"version":27,"lastModified":"1301904476000","genre":"Documentary","title":"Mr. Europe","releaseDate":55209600000,"language":"en","type":"Movie","_key":"24639"} +{"label":"Mike Katz","version":21,"id":"41946","lastModified":"1301901822000","name":"Mike Katz","type":"Person","_key":"24640"} +{"label":"Albert Beckles","version":16,"id":"41947","lastModified":"1301902188000","name":"Albert Beckles","type":"Person","_key":"24641"} +{"label":"Sergio Oliva","version":16,"id":"41948","lastModified":"1301902199000","name":"Sergio Oliva","type":"Person","_key":"24642"} +{"label":"Serge Nubret","version":21,"id":"41949","lastModified":"1301902178000","name":"Serge Nubret","type":"Person","_key":"24643"} +{"label":"Jim Stryker","version":16,"id":"42183","lastModified":"1301901813000","name":"Jim Stryker","type":"Person","_key":"24644"} +{"label":"Dick Stark","version":16,"id":"42184","lastModified":"1301902174000","name":"Dick Stark","type":"Person","_key":"24645"} +{"label":"Travels With My Aunt","description":"A stodgy young man gets caught up in his free-living aunt''s shady schemes.","id":"5183","runtime":109,"imdbId":"tt0069404","version":82,"lastModified":"1301906116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/479\/4d7d187a5e73d65ec6002479\/travels-with-my-aunt-mid.jpg","genre":"Comedy","title":"Travels With My Aunt","releaseDate":92966400000,"language":"en","type":"Movie","_key":"24646"} +{"label":"Robert Flemyng","version":29,"id":"41958","lastModified":"1301902109000","name":"Robert Flemyng","type":"Person","_key":"24647"} +{"label":"Valerie White","version":21,"id":"41959","lastModified":"1301901739000","name":"Valerie White","type":"Person","_key":"24648"} +{"label":"Bernard Holley","version":21,"id":"41960","lastModified":"1301901739000","name":"Bernard Holley","type":"Person","_key":"24649"} +{"label":"John Hamill","version":23,"id":"41961","lastModified":"1301902109000","name":"John Hamill","type":"Person","_key":"24650"} +{"label":"Contergan","description":"No overview found.","id":"5184","runtime":180,"imdbId":"tt0490102","version":50,"lastModified":"1301905339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ea\/4cbedfec7b9aa138d70017ea\/contergan-mid.jpg","studio":"Zeitsprung Entertainment","genre":"Drama","title":"Contergan","releaseDate":1194393600000,"language":"en","type":"Movie","_key":"24651"} +{"label":"Adolf Winkelmann","version":20,"id":"41962","lastModified":"1301901817000","name":"Adolf Winkelmann","type":"Person","_key":"24652"} +{"label":"D\u00f6rte Lyssewski","version":22,"id":"41964","lastModified":"1301901964000","name":"D\u00f6rte Lyssewski","type":"Person","_key":"24653"} +{"label":"Sylvester Groth","version":37,"id":"41965","lastModified":"1301901157000","name":"Sylvester Groth","type":"Person","_key":"24654"} +{"label":"Denise Marko","version":20,"id":"41966","lastModified":"1301901817000","name":"Denise Marko","type":"Person","_key":"24655"} +{"label":"Olivia Magnani","version":25,"id":"41967","lastModified":"1301902028000","name":"Olivia Magnani","type":"Person","_key":"24656"} +{"label":"The Private Life of Sherlock Holmes","description":"Director Billy Wilder adds a new and intriguing twist to the personality of intrepid detective Sherlock Holmes. One thing hasn't changed however: Holmes' crime-solving talents. Holmes and Dr. Watson take on the case of a beautiful woman whose husband has vanished. The investigation proves strange indeed, involving six missing midgets, villainous monks, a Scottish castle, the Loch Ness monster, and covert naval experiments. Can the sleuths make sense of all this and solve the mystery","id":"5185","runtime":125,"imdbId":"tt0066249","version":540,"lastModified":"1301903337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dd\/4c5bdbcc7b9aa151f70006dd\/the-private-life-of-sherlock-holmes-mid.jpg","genre":"Adventure","title":"The Private Life of Sherlock Holmes","releaseDate":26006400000,"language":"en","tagline":"What you don't know about Sherlock Holmes has made a great motion picture","type":"Movie","_key":"24657"} +{"label":"Tamara Toumanova","version":25,"id":"41985","lastModified":"1301901789000","name":"Tamara Toumanova","type":"Person","_key":"24658"} +{"label":"The Reunion","description":"No overview found.","id":"5186","runtime":83,"imdbId":"tt0432025","version":125,"lastModified":"1301417344000","genre":"Erotic","title":"The Reunion","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"24659"} +{"label":"Nicholas Steel","version":23,"id":"41986","lastModified":"1301901736000","name":"Nicholas Steel","type":"Person","_key":"24660"} +{"label":"Barrett Blade","version":28,"id":"41989","lastModified":"1301901577000","name":"Barrett Blade","type":"Person","_key":"24661"} +{"label":"Dru Berrymore","version":20,"id":"41988","lastModified":"1301901539000","name":"Dru Berrymore","type":"Person","_key":"24662"} +{"label":"Evan Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36c\/4c4806f55e73d61efd00036c\/evan-stone-profile.jpg","version":112,"birthday":"-172198800000","id":"41996","birthplace":"Dallas, TX","lastModified":"1301901239000","name":"Evan Stone","type":"Person","_key":"24663"} +{"label":"Steven St. Croix","version":32,"birthday":"-58496400000","id":"41995","birthplace":"Los Angeles, CA","lastModified":"1301901563000","name":"Steven St. Croix","type":"Person","_key":"24664"} +{"label":"Cheyne Collins","version":35,"id":"41990","lastModified":"1301902172000","name":"Cheyne Collins","type":"Person","_key":"24665"} +{"label":"Cytherea","version":19,"id":"41991","lastModified":"1301901895000","name":"Cytherea","type":"Person","_key":"24666"} +{"label":"Dominica Leoni","version":19,"id":"41992","lastModified":"1301902108000","name":"Dominica Leoni","type":"Person","_key":"24667"} +{"label":"Monica Mayhem","version":19,"id":"41993","lastModified":"1301902108000","name":"Monica Mayhem","type":"Person","_key":"24668"} +{"label":"Randy Spears","version":39,"id":"41994","lastModified":"1301901604000","name":"Randy Spears","type":"Person","_key":"24669"} +{"label":"Lezley Zen","version":23,"id":"41997","lastModified":"1301902018000","name":"Lezley Zen","type":"Person","_key":"24670"} +{"label":"Three of Hearts","description":"No overview found.","id":"5187","runtime":110,"imdbId":"tt0108334","version":97,"lastModified":"1301904458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e3\/4c77d1155e73d604160002e3\/three-of-hearts-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Three of Hearts","releaseDate":736128000000,"language":"en","type":"Movie","_key":"24671"} +{"label":"Yurek Bogayevicz","version":19,"id":"42002","lastModified":"1301902108000","name":"Yurek Bogayevicz","type":"Person","_key":"24672"} +{"label":"Gail Strickland","version":27,"id":"42003","lastModified":"1301902048000","name":"Gail Strickland","type":"Person","_key":"24673"} +{"label":"Marek Johnson","version":20,"id":"42004","lastModified":"1301902000000","name":"Marek Johnson","type":"Person","_key":"24674"} +{"label":"Timothy Stickney","version":19,"id":"42005","lastModified":"1301902108000","name":"Timothy Stickney","type":"Person","_key":"24675"} +{"label":"Carnal Cruise","description":"No overview found.","id":"5188","runtime":83,"imdbId":"tt0210601","version":94,"lastModified":"1301905455000","genre":"Drama","title":"Carnal Cruise","releaseDate":852076800000,"language":"en","type":"Movie","_key":"24676"} +{"label":"Divida Rendlog","version":23,"id":"42043","lastModified":"1301901617000","name":"Divida Rendlog","type":"Person","_key":"24677"} +{"label":"Charlene Blaine","version":21,"id":"42046","lastModified":"1301901895000","name":"Charlene Blaine","type":"Person","_key":"24678"} +{"label":"Wesley O'Brian","version":18,"id":"42047","lastModified":"1301901575000","name":"Wesley O'Brian","type":"Person","_key":"24679"} +{"label":"Jody Frank","version":19,"id":"42048","lastModified":"1301901895000","name":"Jody Frank","type":"Person","_key":"24680"} +{"label":"Renee Thompson","version":18,"id":"42049","lastModified":"1301901605000","name":"Renee Thompson","type":"Person","_key":"24681"} +{"label":"Glen Ratcliffe","version":19,"id":"42051","lastModified":"1301901736000","name":"Glen Ratcliffe","type":"Person","_key":"24682"} +{"label":"Jack Maxwell","version":19,"id":"42052","lastModified":"1301902108000","name":"Jack Maxwell","type":"Person","_key":"24683"} +{"label":"Robert Donavan","version":34,"id":"83387","lastModified":"1301901493000","name":"Robert Donavan","type":"Person","_key":"24684"} +{"label":"Wild Orchids","description":"A prince in Java tries to seduce his visitor's wife, but he's discovered.","id":"5201","runtime":100,"imdbId":"tt0020589","version":368,"lastModified":"1301907136000","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Wild Orchids","releaseDate":-1289260800000,"language":"en","type":"Movie","_key":"24685"} +{"label":"Sidney Franklin","version":20,"id":"42060","lastModified":"1301901739000","name":"Sidney Franklin","type":"Person","_key":"24686"} +{"label":"Wilde Orchidee","description":"No overview found.","id":"5202","title":"Wilde Orchidee","language":"en","lastModified":"1301906548000","version":19,"type":"Movie","_key":"24687"} +{"label":"Wild Orchid","description":"A woman lawyer becomes mesmerized by a self-made millionaire during an encounter in Rio setting off a series of erotic encounters.","id":"5203","runtime":103,"imdbId":"tt0100934","trailer":"http:\/\/www.youtube.com\/watch?v=StwWLUzLbg8","version":357,"lastModified":"1301904286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d3\/4c5df8145e73d63a700007d3\/wild-orchid-mid.jpg","studio":"Vision Film Productions","genre":"Drama","title":"Wild Orchid","releaseDate":630288000000,"language":"en","type":"Movie","_key":"24688"} +{"label":"Zalman King","version":95,"id":"42113","lastModified":"1301901503000","name":"Zalman King","type":"Person","_key":"24689"} +{"label":"Carr\u00e9 Otis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/791\/4c5dfa605e73d63a6e000791\/carre-otis-profile.jpg","version":22,"id":"42122","lastModified":"1301901533000","name":"Carr\u00e9 Otis","type":"Person","_key":"24690"} +{"label":"Assumpta Serna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77c\/4c5df9895e73d63a6f00077c\/assumpta-serna-profile.jpg","version":35,"id":"42123","lastModified":"1301901566000","name":"Assumpta Serna","type":"Person","_key":"24691"} +{"label":"Oleg Vidov","version":23,"id":"42124","lastModified":"1301901709000","name":"Oleg Vidov","type":"Person","_key":"24692"} +{"label":"Milton Gon\u00e7alves","version":23,"id":"42125","lastModified":"1301901452000","name":"Milton Gon\u00e7alves","type":"Person","_key":"24693"} +{"label":"Jens Peter","version":21,"id":"42126","lastModified":"1301901981000","name":"Jens Peter","type":"Person","_key":"24694"} +{"label":"Antonio Mario Silva Da Silva","version":21,"id":"42127","lastModified":"1301901981000","name":"Antonio Mario Silva Da Silva","type":"Person","_key":"24695"} +{"label":"Kontroll","description":"A tale about a strange young man, Bulcs\u00fa, his fellow inspectors, who are all without exception likeable characters, a rival ticket inspection team, and racing along the tracks... And a tale about love.","id":"5204","runtime":111,"imdbId":"tt0373981","version":159,"lastModified":"1301904191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4bc91c5c017a3c57fe00afdd\/kontroll-mid.jpg","studio":"Caf\u00e9 Film","genre":"Comedy","title":"Kontroll","releaseDate":1069286400000,"language":"en","type":"Movie","_key":"24696"} +{"label":"S\u00e1ndor Cs\u00e1nyi","version":27,"id":"42067","lastModified":"1301901602000","name":"S\u00e1ndor Cs\u00e1nyi","type":"Person","_key":"24697"} +{"label":"Csaba Pindroch","version":25,"id":"42068","lastModified":"1301901581000","name":"Csaba Pindroch","type":"Person","_key":"24698"} +{"label":"Zolt\u00e1n Mucsi","version":27,"id":"42069","lastModified":"1301901620000","name":"Zolt\u00e1n Mucsi","type":"Person","_key":"24699"} +{"label":"S\u00e1ndor Bad\u00e1r","version":21,"id":"42070","lastModified":"1301901901000","name":"S\u00e1ndor Bad\u00e1r","type":"Person","_key":"24700"} +{"label":"Zsolt Nagy","version":20,"id":"42071","lastModified":"1301901895000","name":"Zsolt Nagy","type":"Person","_key":"24701"} +{"label":"Bence M\u00e1ty\u00e1ssy","version":20,"id":"42072","lastModified":"1301901736000","name":"Bence M\u00e1ty\u00e1ssy","type":"Person","_key":"24702"} +{"label":"Gy\u00f6z\u00f6 Szab\u00f3","version":27,"id":"42073","lastModified":"1301901835000","name":"Gy\u00f6z\u00f6 Szab\u00f3","type":"Person","_key":"24703"} +{"label":"Lajos Kov\u00e1cs","version":20,"id":"42074","lastModified":"1301901736000","name":"Lajos Kov\u00e1cs","type":"Person","_key":"24704"} +{"label":"Eszter Balla","version":20,"id":"42075","lastModified":"1301901736000","name":"Eszter Balla","type":"Person","_key":"24705"} +{"label":"L\u00e1szl\u00f3 N\u00e1dasi","version":20,"id":"42076","lastModified":"1301901736000","name":"L\u00e1szl\u00f3 N\u00e1dasi","type":"Person","_key":"24706"} +{"label":"Gy\u00f6rgy Cserhalmi","version":26,"id":"42077","lastModified":"1301901505000","name":"Gy\u00f6rgy Cserhalmi","type":"Person","_key":"24707"} +{"label":"Pumping Iron","description":"Pumping Iron is a 1977 documentary film about the run-up to the 1975 Mr. Olympia bodybuilding competition. The film focuses on Arnold Schwarzenegger and his competitors, Lou Ferrigno and Franco Columbu. The documentary was co-directed by Robert Fiore and George Butler. It was based on the book of the same name by Charles Gaines and George Butler (Simon and Schuster, 1974).","id":"5205","runtime":85,"imdbId":"tt0076578","version":478,"lastModified":"1301906103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/feb\/4bc91c5f017a3c57fe00afeb\/pumping-iron-mid.jpg","studio":"White Mountain Films","genre":"Documentary","title":"Pumping Iron","releaseDate":222393600000,"language":"en","type":"Movie","_key":"24708"} +{"label":"George Butler","version":23,"id":"42081","lastModified":"1301901948000","name":"George Butler","type":"Person","_key":"24709"} +{"label":"Robert Fiore","version":22,"id":"42082","lastModified":"1301901736000","name":"Robert Fiore","type":"Person","_key":"24710"} +{"label":"Lou Ferrigno","version":32,"id":"19137","lastModified":"1301901100000","name":"Lou Ferrigno","type":"Person","_key":"24711"} +{"label":"Roger Callard","version":20,"id":"42083","lastModified":"1301901817000","name":"Roger Callard","type":"Person","_key":"24712"} +{"label":"Robbie Robinson","version":20,"id":"42084","lastModified":"1301902173000","name":"Robbie Robinson","type":"Person","_key":"24713"} +{"label":"Paul Grant","version":18,"id":"42085","lastModified":"1301902185000","name":"Paul Grant","type":"Person","_key":"24714"} +{"label":"John Isaacs","version":18,"id":"42086","lastModified":"1301902167000","name":"John Isaacs","type":"Person","_key":"24715"} +{"label":"Marianne Claire","version":19,"id":"42087","lastModified":"1301902108000","name":"Marianne Claire","type":"Person","_key":"24716"} +{"label":"Matty Ferrigno","version":18,"id":"42088","lastModified":"1301902200000","name":"Matty Ferrigno","type":"Person","_key":"24717"} +{"label":"Victoria Ferrigno","version":19,"id":"42089","lastModified":"1301902108000","name":"Victoria Ferrigno","type":"Person","_key":"24718"} +{"label":"Jimmy Williams","version":25,"id":"42090","lastModified":"1301902187000","name":"Jimmy Williams","type":"Person","_key":"24719"} +{"label":"The Boss of it All","description":"Ravn is the owner of an IT-company. He is afraid of telling bad news to people, so he brings all the bad news as if someone else owns the company and he is only the messenger. When he tries to sell the company to an Icelandic company he gets into trouble. They want to see the owner and do business directly with him. So Ravn hires a cheap actor, Christoffer, to act as CEO.","id":"5206","runtime":95,"imdbId":"tt0469754","trailer":"http:\/\/www.youtube.com\/watch?v=OyPBZsli7e0","homepage":"http:\/\/www.direktorenfordethele.dk\/","version":289,"lastModified":"1301903100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff8\/4bc91c60017a3c57fe00aff8\/direktren-for-det-hele-mid.jpg","studio":"Zentropa Productions","genre":"Comedy","title":"The Boss of it All","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"24720"} +{"label":"Benedikt Erlingsson","version":21,"id":"42092","lastModified":"1301902167000","name":"Benedikt Erlingsson","type":"Person","_key":"24721"} +{"label":"Mia Lyhne","version":24,"id":"42094","lastModified":"1301902108000","name":"Mia Lyhne","type":"Person","_key":"24722"} +{"label":"Casper Christensen","version":29,"id":"42095","lastModified":"1301901422000","name":"Casper Christensen","type":"Person","_key":"24723"} +{"label":"Fri\u00f0rik \u00de\u00f3r Fri\u00f0riksson","version":22,"id":"6759","lastModified":"1299493450000","name":"Fri\u00f0rik \u00de\u00f3r Fri\u00f0riksson","type":"Person","_key":"24724"} +{"label":"Hercules in New York","description":"Hercules (Schwarzenegger) is sent to Earth where he finds true love and starts a promising career in the bodybuilder business.","id":"5227","runtime":91,"imdbId":"tt0065832","version":433,"lastModified":"1301903441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4bc91c61017a3c57fe00b001\/hercules-in-new-york-mid.jpg","studio":"RAF Industries","genre":"Action","title":"Hercules in New York","releaseDate":4320000000,"language":"en","type":"Movie","_key":"24725"} +{"label":"Arthur Allan Seidelman","version":27,"id":"41222","lastModified":"1301901456000","name":"Arthur Allan Seidelman","type":"Person","_key":"24726"} +{"label":"Deborah Loomis","version":20,"id":"42108","lastModified":"1301901765000","name":"Deborah Loomis","type":"Person","_key":"24727"} +{"label":"Taina Elg","version":21,"id":"42109","lastModified":"1301901944000","name":"Taina Elg","type":"Person","_key":"24728"} +{"label":"Stay Hungry","description":"Stay Hungry is a 1976 dramatic comedy film by director Bob Rafelson from a screenplay by Charles Gaines. The story centers on a young Birmingham, Alabama, scion, played by Jeff Bridges, who gets involved in a shady real-estate deal. In order to close the deal, he needs to buy a gym building to complete a multi-parcel lot. When he visits the gym, however, he finds himself romantically interested in the receptionist (Sally Field) and drawn to the carefree lifestyle of the Austrian body builder \"Jo","id":"5228","runtime":102,"imdbId":"tt0075268","version":362,"lastModified":"1301905202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f22\/4c73fe297b9aa13ab6000f22\/stay-hungry-mid.jpg","studio":"Outov Productions","genre":"Comedy","title":"Stay Hungry","releaseDate":199065600000,"language":"en","type":"Movie","_key":"24729"} +{"label":"Helena Kallianiotes","version":22,"id":"42155","lastModified":"1301902108000","name":"Helena Kallianiotes","type":"Person","_key":"24730"} +{"label":"Roger E. Mosley","version":25,"id":"42156","lastModified":"1301901939000","name":"Roger E. Mosley","type":"Person","_key":"24731"} +{"label":"Ed Begley Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4caf2f387b9aa1213400020a\/ed-begley-jr-profile.jpg","version":74,"id":"42157","lastModified":"1302066402000","name":"Ed Begley Jr.","type":"Person","_key":"24732"} +{"label":"John David Carson","version":22,"id":"42162","lastModified":"1301901840000","name":"John David Carson","type":"Person","_key":"24733"} +{"label":"Kathleen Miller","version":21,"id":"42166","lastModified":"1301901617000","name":"Kathleen Miller","type":"Person","_key":"24734"} +{"label":"Richard Gilliland","version":21,"id":"42169","lastModified":"1301901807000","name":"Richard Gilliland","type":"Person","_key":"24735"} +{"label":"Mayf Nutter","version":19,"id":"42170","lastModified":"1301902108000","name":"Mayf Nutter","type":"Person","_key":"24736"} +{"label":"Fannie Flagg","version":27,"id":"18251","lastModified":"1301902017000","name":"Fannie Flagg","type":"Person","_key":"24737"} +{"label":"The Hustler of Muscle Beach","description":"No overview found.","id":"5229","runtime":102,"imdbId":"tt0080909","version":54,"lastModified":"1301907420000","studio":"Furia\/Oringer Productions","genre":"Comedy","title":"The Hustler of Muscle Beach","releaseDate":327283200000,"language":"en","type":"Movie","_key":"24738"} +{"label":"Jonathan Kaplan","version":46,"id":"42171","lastModified":"1301901209000","name":"Jonathan Kaplan","type":"Person","_key":"24739"} +{"label":"Richard Hatch","version":30,"id":"42173","lastModified":"1301901403000","name":"Richard Hatch","type":"Person","_key":"24740"} +{"label":"Kay Lenz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e6\/4ca0afbb7b9aa15e3c0003e6\/kay-lenz-profile.jpg","version":32,"id":"42174","lastModified":"1301901606000","name":"Kay Lenz","type":"Person","_key":"24741"} +{"label":"Veronica Hamel","version":27,"id":"42176","lastModified":"1301902170000","name":"Veronica Hamel","type":"Person","_key":"24742"} +{"label":"Tim Kimber","version":20,"id":"42179","lastModified":"1301901999000","name":"Tim Kimber","type":"Person","_key":"24743"} +{"label":"Bobby Van","version":20,"id":"42180","lastModified":"1301902185000","name":"Bobby Van","type":"Person","_key":"24744"} +{"label":"Sam Laws","version":20,"id":"42181","lastModified":"1301902185000","name":"Sam Laws","type":"Person","_key":"24745"} +{"label":"Steve Davis","version":21,"id":"42182","lastModified":"1301902159000","name":"Steve Davis","type":"Person","_key":"24746"} +{"label":"Scandal: Lawful Entry","description":"No overview found.","id":"5232","runtime":80,"imdbId":"tt0266719","version":53,"lastModified":"1301906082000","genre":"Comedy","title":"Scandal: Lawful Entry","releaseDate":946684800000,"language":"en","type":"Movie","_key":"24747"} +{"label":"F. Lee Cochran","version":19,"id":"42218","lastModified":"1301902108000","name":"F. Lee Cochran","type":"Person","_key":"24748"} +{"label":"Kim Dawson","version":23,"id":"42222","lastModified":"1301901496000","name":"Kim Dawson","type":"Person","_key":"24749"} +{"label":"Daniel Anderson","version":23,"id":"42223","lastModified":"1301901670000","name":"Daniel Anderson","type":"Person","_key":"24750"} +{"label":"Gabriella Hall","version":24,"id":"42224","lastModified":"1301902152000","name":"Gabriella Hall","type":"Person","_key":"24751"} +{"label":"Jill Tompkins","version":20,"id":"42225","lastModified":"1301901617000","name":"Jill Tompkins","type":"Person","_key":"24752"} +{"label":"Regina Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b5\/4d990af75e73d635cc0001b5\/regina-russell-profile.jpg","version":32,"birthday":"-139366800000","id":"42226","birthplace":"Charleston, South Carolina","lastModified":"1301904128000","name":"Regina Russell","type":"Person","_key":"24753"} +{"label":"Two Shades of Blue","description":"When famed author Susan Price is framed for the murder of her fiance, billionare publisher Jack Reynolds, she changes her identity and goes undercover working as a relay operator for the hearing impaired to contact the deaf District Attorney in order to clear her name.","id":"5233","runtime":111,"imdbId":"tt0105819","version":446,"lastModified":"1301906633000","studio":"Vision Film Productions","genre":"Drama","title":"Two Shades of Blue","releaseDate":705196800000,"language":"en","type":"Movie","_key":"24754"} +{"label":"Nina Siemaszko","version":27,"id":"42133","lastModified":"1301902137000","name":"Nina Siemaszko","type":"Person","_key":"24755"} +{"label":"Wendy Hughes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/328\/4cf1c5fb5e73d61e3e000328\/wendy-hughes-profile.jpg","version":26,"id":"42134","lastModified":"1301901302000","name":"Wendy Hughes","type":"Person","_key":"24756"} +{"label":"Liane Alexandra Curtis","version":21,"id":"42135","lastModified":"1301901539000","name":"Liane Alexandra Curtis","type":"Person","_key":"24757"} +{"label":"Bridgit Ryan","version":24,"id":"42136","lastModified":"1301901763000","name":"Bridgit Ryan","type":"Person","_key":"24758"} +{"label":"Lydie Denier","version":22,"id":"42137","lastModified":"1301901736000","name":"Lydie Denier","type":"Person","_key":"24759"} +{"label":"Victoria Mahoney","version":19,"id":"42138","lastModified":"1301901676000","name":"Victoria Mahoney","type":"Person","_key":"24760"} +{"label":"Kathy Hartsell","version":20,"id":"42139","lastModified":"1301901617000","name":"Kathy Hartsell","type":"Person","_key":"24761"} +{"label":"Brent David Fraser","version":25,"id":"42140","lastModified":"1301901895000","name":"Brent David Fraser","type":"Person","_key":"24762"} +{"label":"Casey Sander","version":21,"id":"42141","lastModified":"1301902050000","name":"Casey Sander","type":"Person","_key":"24763"} +{"label":"Stafford Morgan","version":25,"id":"42142","lastModified":"1301902129000","name":"Stafford Morgan","type":"Person","_key":"24764"} +{"label":"Don Bloomfield","version":21,"id":"42143","lastModified":"1301901736000","name":"Don Bloomfield","type":"Person","_key":"24765"} +{"label":"Red Shoe Diaries","description":"Trapped by a burning secret. Torn by a blazing desire. He gave her his devoted passion. He offered her a lasting relationship. He promised her a secure future. She thought he was all she ever wanted. Until she met everything she ever desired: the perfect body... on the perfect man... with a perfect opportunity for having a secret affair with a total stranger. Haunted by guilt, she is drawn uncontrollably into the powerful, beckoning arms of illicit lust and feverish obsession. But like a moth lu","id":"5234","runtime":103,"imdbId":"tt0105227","version":176,"lastModified":"1301906348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9b\/4d32aca97b9aa178ab004b9b\/red-shoe-diaries-mid.jpg","studio":"Republic Pictures","genre":"Drama","title":"Red Shoe Diaries","releaseDate":705974400000,"language":"en","type":"Movie","_key":"24766"} +{"label":"Evie Sullivan","version":19,"id":"42144","lastModified":"1301901617000","name":"Evie Sullivan","type":"Person","_key":"24767"} +{"label":"Anna Karin","version":19,"id":"42145","lastModified":"1301902108000","name":"Anna Karin","type":"Person","_key":"24768"} +{"label":"Kai Wulff","version":27,"id":"42146","lastModified":"1301901895000","name":"Kai Wulff","type":"Person","_key":"24769"} +{"label":"Christina Caron","version":21,"id":"42147","lastModified":"1301902185000","name":"Christina Caron","type":"Person","_key":"24770"} +{"label":"Leana Hall","version":19,"id":"42148","lastModified":"1301902108000","name":"Leana Hall","type":"Person","_key":"24771"} +{"label":"Der Fischer und seine Frau","description":"No overview found.","id":"5235","runtime":102,"imdbId":"tt0430097","version":72,"lastModified":"1301907283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/006\/4bc91c62017a3c57fe00b006\/der-fischer-und-seine-frau-mid.jpg","studio":"Constantin Film","genre":"Comedy","title":"Der Fischer und seine Frau","releaseDate":1127347200000,"language":"en","type":"Movie","_key":"24772"} +{"label":"Young-Shin Kim","version":23,"id":"42152","lastModified":"1301901788000","name":"Young-Shin Kim","type":"Person","_key":"24773"} +{"label":"Eva Christian","version":21,"id":"26251","lastModified":"1301901962000","name":"Eva Christian","type":"Person","_key":"24774"} +{"label":"Gustav-Peter W\u00f6hler","version":28,"id":"36688","lastModified":"1301901496000","name":"Gustav-Peter W\u00f6hler","type":"Person","_key":"24775"} +{"label":"Eric Schmidt-Mohan","version":19,"id":"42153","lastModified":"1301901895000","name":"Eric Schmidt-Mohan","type":"Person","_key":"24776"} +{"label":"Kiss Kiss Bang Bang","description":"A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...","id":"5236","runtime":102,"imdbId":"tt0373469","trailer":"http:\/\/www.youtube.com\/watch?v=K1xsTRG-O04","version":492,"lastModified":"1301902217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc91c63017a3c57fe00b018\/kiss-kiss-bang-bang-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Kiss Kiss Bang Bang","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"24777"} +{"label":"Rockmond Dunbar","version":26,"id":"17345","lastModified":"1301901363000","name":"Rockmond Dunbar","type":"Person","_key":"24778"} +{"label":"Angela Lindvall","version":29,"id":"42158","lastModified":"1301901491000","name":"Angela Lindvall","type":"Person","_key":"24779"} +{"label":"Indio Falconer Downey","version":23,"id":"42159","lastModified":"1301901617000","name":"Indio Falconer Downey","type":"Person","_key":"24780"} +{"label":"Ariel Winter","version":32,"id":"42160","lastModified":"1301997896000","name":"Ariel Winter","type":"Person","_key":"24781"} +{"label":"Duane Carnahan","version":24,"id":"42163","lastModified":"1301901816000","name":"Duane Carnahan","type":"Person","_key":"24782"} +{"label":"Martha Hackett","version":25,"id":"42165","lastModified":"1301901524000","name":"Martha Hackett","type":"Person","_key":"24783"} +{"label":"Dust Devil","description":"A woman on the run from her abusive husband encounters a mysterious hitch-hiker.","id":"5237","runtime":103,"imdbId":"tt0104155","version":114,"lastModified":"1301905006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/021\/4bc91c66017a3c57fe00b021\/dust-devil-mid.jpg","studio":"Miramax Films","genre":"Horror","title":"Dust Devil","releaseDate":713232000000,"language":"en","type":"Movie","_key":"24784"} +{"label":"Richard Stanley","version":36,"id":"42175","lastModified":"1301901789000","name":"Richard Stanley","type":"Person","_key":"24785"} +{"label":"Red Shoe Diaries 2: Double Dare","description":"No overview found.","id":"5238","runtime":88,"imdbId":"tt0105228","version":74,"lastModified":"1301906082000","studio":"Republic Pictures","genre":"Drama","title":"Red Shoe Diaries 2: Double Dare","releaseDate":732931200000,"language":"en","type":"Movie","_key":"24786"} +{"label":"Tibor Tak\u00e1cs","version":35,"id":"42309","lastModified":"1301901493000","name":"Tibor Tak\u00e1cs","type":"Person","_key":"24787"} +{"label":"Michael Woods","version":21,"id":"42185","lastModified":"1301902108000","name":"Michael Woods","type":"Person","_key":"24788"} +{"label":"Pat Banta","version":16,"id":"11312","lastModified":"1301901539000","name":"Pat Banta","type":"Person","_key":"24789"} +{"label":"Laura Johnson","version":26,"id":"42186","lastModified":"1301901811000","name":"Laura Johnson","type":"Person","_key":"24790"} +{"label":"John Toles-Bey","version":21,"id":"42316","lastModified":"1301901934000","name":"John Toles-Bey","type":"Person","_key":"24791"} +{"label":"Scott Lawrence","version":19,"id":"42317","lastModified":"1301901895000","name":"Scott Lawrence","type":"Person","_key":"24792"} +{"label":"Sarah Luck Pearson","version":19,"id":"42318","lastModified":"1301901617000","name":"Sarah Luck Pearson","type":"Person","_key":"24793"} +{"label":"Red Shoe Diaries 3: Another Woman's Lipstick","description":"No overview found.","id":"5239","runtime":87,"imdbId":"tt0107934","version":83,"lastModified":"1301908338000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 3: Another Woman's Lipstick","releaseDate":755913600000,"language":"en","type":"Movie","_key":"24794"} +{"label":"Rafael Eisenman","version":36,"id":"42128","lastModified":"1302059543000","name":"Rafael Eisenman","type":"Person","_key":"24795"} +{"label":"Michael Karbelnikoff","version":21,"id":"42319","lastModified":"1301901945000","name":"Michael Karbelnikoff","type":"Person","_key":"24796"} +{"label":"Kevin Haley","version":19,"id":"42187","lastModified":"1301901895000","name":"Kevin Haley","type":"Person","_key":"24797"} +{"label":"Christina Fulton","version":21,"id":"42188","lastModified":"1301901789000","name":"Christina Fulton","type":"Person","_key":"24798"} +{"label":"Lynn Speier","version":19,"id":"42189","lastModified":"1301901895000","name":"Lynn Speier","type":"Person","_key":"24799"} +{"label":"Kim Burnette","version":19,"id":"42190","lastModified":"1301901895000","name":"Kim Burnette","type":"Person","_key":"24800"} +{"label":"Annabelle Gurwitch","version":25,"id":"42324","lastModified":"1301902108000","name":"Annabelle Gurwitch","type":"Person","_key":"24801"} +{"label":"William Paul Burns","version":24,"id":"42193","lastModified":"1301901567000","name":"William Paul Burns","type":"Person","_key":"24802"} +{"label":"Audie England","version":25,"id":"42325","lastModified":"1301902159000","name":"Audie England","type":"Person","_key":"24803"} +{"label":"Frederick Washburn","version":19,"id":"42326","lastModified":"1301901981000","name":"Frederick Washburn","type":"Person","_key":"24804"} +{"label":"Angela Cornell","version":24,"id":"42327","lastModified":"1301901657000","name":"Angela Cornell","type":"Person","_key":"24805"} +{"label":"Red Shoe Diaries 4: Auto Erotica","description":"No overview found.","id":"5240","runtime":90,"imdbId":"tt0207048","version":53,"lastModified":"1301908598000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 4: Auto Erotica","releaseDate":766800000000,"language":"en","type":"Movie","_key":"24806"} +{"label":"Kenny Johnson","version":24,"id":"42191","lastModified":"1301901679000","name":"Kenny Johnson","type":"Person","_key":"24807"} +{"label":"Marina Giulia Cavalli","version":22,"id":"42192","lastModified":"1301901789000","name":"Marina Giulia Cavalli","type":"Person","_key":"24808"} +{"label":"Caitlin Dulany","version":21,"id":"42194","lastModified":"1301901403000","name":"Caitlin Dulany","type":"Person","_key":"24809"} +{"label":"Troy Christian","version":24,"id":"13204","lastModified":"1301901789000","name":"Troy Christian","type":"Person","_key":"24810"} +{"label":"Two Moon Junction","description":"A young Southern d\u00e9butante temporarily abandons her posh lifestyle and upcoming, semi-arranged marriage to have a lustful and erotic fling with a rugged drifter who works at a local carnival.","id":"5241","runtime":104,"imdbId":"tt0096324","version":509,"lastModified":"1301907283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/258\/4ca789175e73d643ed000258\/two-moon-junction-mid.jpg","studio":"DDM Film Corporation","genre":"Erotic","title":"Two Moon Junction","releaseDate":578275200000,"language":"en","type":"Movie","_key":"24811"} +{"label":"Kristy McNichol","version":26,"id":"42195","lastModified":"1301901567000","name":"Kristy McNichol","type":"Person","_key":"24812"} +{"label":"Martin Hewitt","version":28,"id":"42196","lastModified":"1301901467000","name":"Martin Hewitt","type":"Person","_key":"24813"} +{"label":"Gengis Khan","description":"No overview found.","id":"5242","runtime":120,"imdbId":"tt0280701","version":66,"lastModified":"1301906725000","studio":"Int. Cinema Company","genre":"History","title":"Gengis Khan","releaseDate":703900800000,"language":"en","type":"Movie","_key":"24814"} +{"label":"Antonio Margheriti","version":38,"id":"5561","lastModified":"1301901261000","name":"Antonio Margheriti","type":"Person","_key":"24815"} +{"label":"Tricia O'Neil","version":24,"id":"42198","lastModified":"1301902146000","name":"Tricia O'Neil","type":"Person","_key":"24816"} +{"label":"Daniel Greene","version":24,"id":"42199","lastModified":"1301901563000","name":"Daniel Greene","type":"Person","_key":"24817"} +{"label":"Monsoon","description":"No overview found.","id":"5243","runtime":100,"imdbId":"tt0180846","version":449,"lastModified":"1301907552000","genre":"Drama","title":"Monsoon","releaseDate":993427200000,"language":"en","type":"Movie","_key":"24818"} +{"label":"Jag Mundhra","version":28,"id":"42205","lastModified":"1301901642000","name":"Jag Mundhra","type":"Person","_key":"24819"} +{"label":"Matt McCoy","version":26,"id":"42206","lastModified":"1301901586000","name":"Matt McCoy","type":"Person","_key":"24820"} +{"label":"Doug Jeffery","version":20,"id":"42207","lastModified":"1301901817000","name":"Doug Jeffery","type":"Person","_key":"24821"} +{"label":"Gulshan Grover","version":39,"id":"42208","lastModified":"1301901459000","name":"Gulshan Grover","type":"Person","_key":"24822"} +{"label":"Jenny McShane","version":23,"id":"42209","lastModified":"1301901645000","name":"Jenny McShane","type":"Person","_key":"24823"} +{"label":"Kumar Sunil","version":20,"id":"42210","lastModified":"1301901817000","name":"Kumar Sunil","type":"Person","_key":"24824"} +{"label":"Manish Thakkar","version":19,"id":"42211","lastModified":"1301902108000","name":"Manish Thakkar","type":"Person","_key":"24825"} +{"label":"Faizal Ahmed","version":19,"id":"42212","lastModified":"1301901736000","name":"Faizal Ahmed","type":"Person","_key":"24826"} +{"label":"Jimmy","version":17,"id":"42213","lastModified":"1301901736000","name":"Jimmy","type":"Person","_key":"24827"} +{"label":"Simon Fernandes","version":19,"id":"42214","lastModified":"1301901736000","name":"Simon Fernandes","type":"Person","_key":"24828"} +{"label":"Victor Bhalla","version":19,"id":"42215","lastModified":"1301901736000","name":"Victor Bhalla","type":"Person","_key":"24829"} +{"label":"Pleasurecraft","description":"No overview found.","id":"5244","runtime":82,"imdbId":"tt0197770","version":434,"lastModified":"1301904722000","studio":"Surrender Cinema","genre":"Erotic","title":"Pleasurecraft","releaseDate":915148800000,"language":"en","type":"Movie","_key":"24830"} +{"label":"Franklin A. Vallette","version":21,"id":"42227","lastModified":"1301901447000","name":"Franklin A. Vallette","type":"Person","_key":"24831"} +{"label":"Juan Carlos","version":20,"id":"42232","lastModified":"1301901413000","name":"Juan Carlos","type":"Person","_key":"24832"} +{"label":"Billy Riverside","version":20,"id":"42233","lastModified":"1301901352000","name":"Billy Riverside","type":"Person","_key":"24833"} +{"label":"Paul Johnson","version":20,"id":"42234","lastModified":"1301901460000","name":"Paul Johnson","type":"Person","_key":"24834"} +{"label":"Richard Burns","version":20,"id":"42235","lastModified":"1301901447000","name":"Richard Burns","type":"Person","_key":"24835"} +{"label":"Vincent Kessler","version":20,"id":"42236","lastModified":"1301902159000","name":"Vincent Kessler","type":"Person","_key":"24836"} +{"label":"Taimie Hannum","version":23,"id":"42238","lastModified":"1301901789000","name":"Taimie Hannum","type":"Person","_key":"24837"} +{"label":"Shayna Ryan","version":21,"id":"42239","lastModified":"1301901817000","name":"Shayna Ryan","type":"Person","_key":"24838"} +{"label":"Fast Lane to Malibu","description":"No overview found.","id":"5245","runtime":80,"imdbId":"tt0240500","version":60,"lastModified":"1301908599000","genre":"Erotic","title":"Fast Lane to Malibu","releaseDate":946684800000,"language":"en","type":"Movie","_key":"24839"} +{"label":"Kelley Cauthen","version":20,"id":"101339","lastModified":"1301902668000","name":"Kelley Cauthen","type":"Person","_key":"24840"} +{"label":"Tracy Ryan","version":25,"id":"42246","lastModified":"1301901567000","name":"Tracy Ryan","type":"Person","_key":"24841"} +{"label":"Renee Rea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/195\/4d9bbc7e5e73d64a86000195\/renee-rea-profile.jpg","version":27,"id":"42247","lastModified":"1302045447000","name":"Renee Rea","type":"Person","_key":"24842"} +{"label":"Stephen Harvard","version":20,"id":"42248","lastModified":"1301901816000","name":"Stephen Harvard","type":"Person","_key":"24843"} +{"label":"Kira Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22d\/4d9bcec65e73d64a9200022d\/kira-reed-profile.jpg","version":30,"birthday":"56156400000","id":"42249","birthplace":"Santa Clara, California","lastModified":"1302049634000","name":"Kira Reed","type":"Person","_key":"24844"} +{"label":"Nikki Fritz","version":35,"id":"42250","lastModified":"1301901507000","name":"Nikki Fritz","type":"Person","_key":"24845"} +{"label":"Robert Cunningham","version":21,"id":"42251","lastModified":"1301901964000","name":"Robert Cunningham","type":"Person","_key":"24846"} +{"label":"Blue Rain","description":"No overview found.","id":"5246","runtime":90,"version":63,"lastModified":"1301905801000","genre":"Erotic","title":"Blue Rain","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"24847"} +{"label":"Michael Raven","version":21,"id":"42252","lastModified":"1301901529000","name":"Michael Raven","type":"Person","_key":"24848"} +{"label":"Kaylani Lei","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f38\/4cbeb1ea5e73d67785000f38\/kaylani-lei-profile.jpg","version":56,"id":"42257","lastModified":"1301901175000","name":"Kaylani Lei","type":"Person","_key":"24849"} +{"label":"Eric Masterson","version":40,"id":"42259","lastModified":"1301901670000","name":"Eric Masterson","type":"Person","_key":"24850"} +{"label":"Erik Everhard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7b\/4d6a53c65e73d66b23001b7b\/erik-everhard-profile.jpg","version":76,"birthday":"218329200000","id":"42329","birthplace":"Calgary, Alberta, Canada","lastModified":"1301943049000","name":"Erik Everhard","type":"Person","_key":"24851"} +{"label":"Lexington Steele","version":16,"id":"42328","lastModified":"1301901789000","name":"Lexington Steele","type":"Person","_key":"24852"} +{"label":"Olivia del Rio","version":16,"id":"42255","lastModified":"1301902025000","name":"Olivia del Rio","type":"Person","_key":"24853"} +{"label":"Harley Davis","version":16,"id":"42254","lastModified":"1301902008000","name":"Harley Davis","type":"Person","_key":"24854"} +{"label":"Domino","version":16,"id":"42256","lastModified":"1301902159000","name":"Domino","type":"Person","_key":"24855"} +{"label":"Mr. Marcus","version":29,"id":"42258","lastModified":"1301902055000","name":"Mr. Marcus","type":"Person","_key":"24856"} +{"label":"Mercy","description":"No overview found.","id":"5247","runtime":117,"imdbId":"tt0188055","version":420,"lastModified":"1301906490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc91c66017a3c57fe00b026\/mercy-mid.jpg","studio":"Franchise Pictures","genre":"Erotic","title":"Mercy","releaseDate":950227200000,"language":"en","type":"Movie","_key":"24857"} +{"label":"Damian Harris","version":33,"id":"42301","lastModified":"1301901463000","name":"Damian Harris","type":"Person","_key":"24858"} +{"label":"Peta Wilson","version":42,"id":"42307","lastModified":"1301901215000","name":"Peta Wilson","type":"Person","_key":"24859"} +{"label":"Beau Starr","version":28,"id":"42308","lastModified":"1301901790000","name":"Beau Starr","type":"Person","_key":"24860"} +{"label":"Virtual Sexuality","description":"Desperate to find her perfect man Justine goes to a technology fair with her nerdy classmate Chas. It's not really her thing but is eventually persuaded to try a virtual reality makeover machine and discovers that she can create her perfect man even if it is only an electronic facsimile. The power surge from a freakish accident causes a part of her psyche to be copied into her virtual perfect man.","id":"5248","runtime":93,"imdbId":"tt0164221","version":118,"lastModified":"1301641894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02b\/4bc91c66017a3c57fe00b02b\/virtual-sexuality-mid.jpg","genre":"Drama","title":"Virtual Sexuality","releaseDate":930873600000,"language":"en","type":"Movie","_key":"24861"} +{"label":"Nick Hurran","version":33,"id":"42274","lastModified":"1301901447000","name":"Nick Hurran","type":"Person","_key":"24862"} +{"label":"Rupert Penry-Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0de\/4cc4d0935e73d635060010de\/rupert-penry-jones-profile.jpg","version":26,"id":"42276","lastModified":"1301901447000","name":"Rupert Penry-Jones","type":"Person","_key":"24863"} +{"label":"Laura Fraser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/536\/4d4c2a0c5e73d617bd001536\/laura-fraser-profile.jpg","version":38,"id":"42279","lastModified":"1301901497000","name":"Laura Fraser","type":"Person","_key":"24864"} +{"label":"Luke de Lacey","version":20,"id":"42280","lastModified":"1301902000000","name":"Luke de Lacey","type":"Person","_key":"24865"} +{"label":"Alan Westaway","version":20,"id":"42282","lastModified":"1301901582000","name":"Alan Westaway","type":"Person","_key":"24866"} +{"label":"Room 10","description":"No overview found.","id":"5249","runtime":18,"imdbId":"tt0867415","version":105,"lastModified":"1301907283000","genre":"Drama","title":"Room 10","releaseDate":1160956800000,"language":"en","type":"Movie","_key":"24867"} +{"label":"Andrea Buchanan","version":20,"id":"42295","lastModified":"1301901817000","name":"Andrea Buchanan","type":"Person","_key":"24868"} +{"label":"Gwen McGee","version":20,"id":"42296","lastModified":"1301901811000","name":"Gwen McGee","type":"Person","_key":"24869"} +{"label":"Bonita Friedericy","version":23,"id":"25946","lastModified":"1301901567000","name":"Bonita Friedericy","type":"Person","_key":"24870"} +{"label":"Brooke D'Orsay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b92\/4d93e5945e73d623b0000b92\/brooke-d-orsay-profile.jpg","version":30,"id":"42297","lastModified":"1301902159000","name":"Brooke D'Orsay","type":"Person","_key":"24871"} +{"label":"Patricia Place","version":26,"id":"42298","lastModified":"1301901657000","name":"Patricia Place","type":"Person","_key":"24872"} +{"label":"Ardor","description":"No overview found.","id":"5252","runtime":112,"imdbId":"tt0341470","version":51,"lastModified":"1301906750000","genre":"Drama","title":"Ardor","releaseDate":1036713600000,"language":"en","type":"Movie","_key":"24873"} +{"label":"Young-Joo Byun","version":18,"id":"42793","lastModified":"1301902017000","name":"Young-Joo Byun","type":"Person","_key":"24874"} +{"label":"Yunjin Kim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d8f\/4cf159965e73d61926000d8f\/yunjin-kim-profile.jpg","version":24,"id":"28662","lastModified":"1301901324000","name":"Yunjin Kim","type":"Person","_key":"24875"} +{"label":"Jong-won Lee","version":20,"id":"42795","lastModified":"1301902003000","name":"Jong-won Lee","type":"Person","_key":"24876"} +{"label":"Seung-Ri Ha","version":20,"id":"42797","lastModified":"1301901999000","name":"Seung-Ri Ha","type":"Person","_key":"24877"} +{"label":"Min-kyeong Kim","version":20,"id":"42798","lastModified":"1301902006000","name":"Min-kyeong Kim","type":"Person","_key":"24878"} +{"label":"Byung-ho Son","version":28,"id":"42799","lastModified":"1301958583000","name":"Byung-ho Son","type":"Person","_key":"24879"} +{"label":"Seong-Yong Kye","version":20,"id":"120935","lastModified":"1301902712000","name":"Seong-Yong Kye","type":"Person","_key":"24880"} +{"label":"Momentum","description":"No overview found.","id":"5256","runtime":88,"imdbId":"tt0316272","version":334,"lastModified":"1301906632000","studio":"Cinetel","genre":"Action","title":"Momentum","releaseDate":1048636800000,"language":"en","type":"Movie","_key":"24881"} +{"label":"James Seale","version":21,"id":"42365","lastModified":"1301901895000","name":"James Seale","type":"Person","_key":"24882"} +{"label":"Grayson McCouch","version":20,"id":"42373","lastModified":"1301901676000","name":"Grayson McCouch","type":"Person","_key":"24883"} +{"label":"Nicki Aycox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c13b7695e73d64a2000000c\/nicki-aycox-profile.jpg","version":54,"id":"42374","lastModified":"1301901691000","name":"Nicki Aycox","type":"Person","_key":"24884"} +{"label":"Morocco Omari","version":18,"id":"42375","lastModified":"1301901804000","name":"Morocco Omari","type":"Person","_key":"24885"} +{"label":"Zahn McClarnon","version":21,"id":"42376","lastModified":"1301902031000","name":"Zahn McClarnon","type":"Person","_key":"24886"} +{"label":"Alexondra Lee","version":20,"id":"42377","lastModified":"1301901558000","name":"Alexondra Lee","type":"Person","_key":"24887"} +{"label":"The Dish","description":"The Dish is a 2000 Australian film that tells the story of how the Parkes Observatory was used to relay the live television of man's first steps on the moon, during the Apollo 11 mission in 1969. It was the top grossing film in Australia in 2000.","id":"5257","runtime":101,"imdbId":"tt0205873","trailer":"http:\/\/www.youtube.com\/watch?v=Tc4MSie-P0k","version":491,"lastModified":"1301904746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05b\/4bc91c6c017a3c57fe00b05b\/the-dish-mid.jpg","studio":"Distant Horizons","genre":"Comedy","title":"The Dish","releaseDate":968976000000,"language":"en","type":"Movie","_key":"24888"} +{"label":"Rob Sitch","version":25,"id":"42378","lastModified":"1301901504000","name":"Rob Sitch","type":"Person","_key":"24889"} +{"label":"Billy Mitchell","version":25,"id":"42386","lastModified":"1301901121000","name":"Billy Mitchell","type":"Person","_key":"24890"} +{"label":"Christopher-Robin Street","version":18,"id":"42387","lastModified":"1301901804000","name":"Christopher-Robin Street","type":"Person","_key":"24891"} +{"label":"Luke Keltie","version":20,"id":"42388","lastModified":"1301902000000","name":"Luke Keltie","type":"Person","_key":"24892"} +{"label":"Naomi Wright","version":20,"id":"42389","lastModified":"1301902185000","name":"Naomi Wright","type":"Person","_key":"24893"} +{"label":"Ben Wright-Smith","version":20,"id":"42390","lastModified":"1301902000000","name":"Ben Wright-Smith","type":"Person","_key":"24894"} +{"label":"Grant Thompson","version":20,"id":"42392","lastModified":"1301902202000","name":"Grant Thompson","type":"Person","_key":"24895"} +{"label":"Bille Brown","version":26,"id":"42393","lastModified":"1301901980000","name":"Bille Brown","type":"Person","_key":"24896"} +{"label":"Bernard Curry","version":21,"id":"42394","lastModified":"1301902000000","name":"Bernard Curry","type":"Person","_key":"24897"} +{"label":"Beverley Dunn","version":25,"id":"62745","lastModified":"1301901878000","name":"Beverley Dunn","type":"Person","_key":"24898"} +{"label":"Mutter kommt in Fahrt","description":"No overview found.","id":"5258","runtime":87,"imdbId":"tt0378405","version":43,"lastModified":"1300978386000","studio":"Ziegler Film","genre":"Comedy","title":"Mutter kommt in Fahrt","releaseDate":1052438400000,"language":"en","type":"Movie","_key":"24899"} +{"label":"Ariane Zeller","version":23,"id":"42395","lastModified":"1301901657000","name":"Ariane Zeller","type":"Person","_key":"24900"} +{"label":"Gila von Weitershausen","version":24,"id":"42400","lastModified":"1301902159000","name":"Gila von Weitershausen","type":"Person","_key":"24901"} +{"label":"Jeanne Tremsal","version":23,"id":"42401","lastModified":"1301901657000","name":"Jeanne Tremsal","type":"Person","_key":"24902"} +{"label":"Thure Riefenstein","version":25,"id":"38442","lastModified":"1301901429000","name":"Thure Riefenstein","type":"Person","_key":"24903"} +{"label":"Verena Peter","version":20,"id":"42402","lastModified":"1301902185000","name":"Verena Peter","type":"Person","_key":"24904"} +{"label":"Zoe Welsch","version":20,"id":"42403","lastModified":"1301902185000","name":"Zoe Welsch","type":"Person","_key":"24905"} +{"label":"David Winter","version":23,"id":"42404","lastModified":"1301901789000","name":"David Winter","type":"Person","_key":"24906"} +{"label":"The Band's Visit","description":"Once-not long ago-a small Egyptian police band arrived in Israel. Not many remember this... It wasn't that important. A band comprised of members of the Egyptian police force head to Israel to play at the inaugural ceremony of an Arab arts center, only to find themselves lost in the wrong town.","id":"5259","runtime":83,"imdbId":"tt1032856","trailer":"http:\/\/www.youtube.com\/watch?v=392","homepage":"http:\/\/www.thebandsvisit.com","version":218,"lastModified":"1301903616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4c1999325e73d6793b000055\/5259-mid.jpg","studio":"July August Productions","genre":"Comedy","title":"The Band's Visit","releaseDate":1176940800000,"language":"en","type":"Movie","_key":"24907"} +{"label":"Eran Kolirin","version":25,"id":"42412","lastModified":"1301901516000","name":"Eran Kolirin","type":"Person","_key":"24908"} +{"label":"Khalifa Natour","version":22,"id":"42441","lastModified":"1301901594000","name":"Khalifa Natour","type":"Person","_key":"24909"} +{"label":"Saleh Bakri","version":27,"id":"42442","lastModified":"1301901459000","name":"Saleh Bakri","type":"Person","_key":"24910"} +{"label":"Shlomi Avraham","version":22,"id":"42444","lastModified":"1301901978000","name":"Shlomi Avraham","type":"Person","_key":"24911"} +{"label":"Rubi Moskovitz","version":20,"id":"42446","lastModified":"1301901978000","name":"Rubi Moskovitz","type":"Person","_key":"24912"} +{"label":"Gavriel Ayrum","version":18,"id":"42447","lastModified":"1301901978000","name":"Gavriel Ayrum","type":"Person","_key":"24913"} +{"label":"Jabarin Camal","version":18,"id":"42449","lastModified":"1301901978000","name":"Jabarin Camal","type":"Person","_key":"24914"} +{"label":"Was tun, wenn's brennt?","description":"No overview found.","id":"5261","runtime":101,"imdbId":"tt0207198","homepage":"http:\/\/www.sonypictures.de\/filme\/was-tun-wenns-brennt\/","version":87,"lastModified":"1301905020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/069\/4bc91c6d017a3c57fe00b069\/was-tun-wenn-s-brennt-mid.jpg","studio":"Claussen + W\u00f6bke Filmproduktion GmbH","genre":"Drama","title":"Was tun, wenn's brennt?","releaseDate":1012435200000,"language":"en","type":"Movie","_key":"24915"} +{"label":"Doris Schretzmayer","version":22,"id":"42422","lastModified":"1301901736000","name":"Doris Schretzmayer","type":"Person","_key":"24916"} +{"label":"Barbara Philipp","version":23,"id":"42426","lastModified":"1301901566000","name":"Barbara Philipp","type":"Person","_key":"24917"} +{"label":"Aykut Kayacik","version":20,"id":"38620","lastModified":"1301901617000","name":"Aykut Kayacik","type":"Person","_key":"24918"} +{"label":"Oliver Mommsen","version":23,"id":"38460","lastModified":"1301901961000","name":"Oliver Mommsen","type":"Person","_key":"24919"} +{"label":"This Maag","version":20,"id":"42428","lastModified":"1301901736000","name":"This Maag","type":"Person","_key":"24920"} +{"label":"Johanna von Halem","version":20,"id":"42431","lastModified":"1301901736000","name":"Johanna von Halem","type":"Person","_key":"24921"} +{"label":"Sandra Nedeleff","version":20,"id":"42432","lastModified":"1301901735000","name":"Sandra Nedeleff","type":"Person","_key":"24922"} +{"label":"Hanna Rudolph","version":20,"id":"42435","lastModified":"1301901735000","name":"Hanna Rudolph","type":"Person","_key":"24923"} +{"label":"Jamie Schuricht","version":20,"id":"42436","lastModified":"1301901735000","name":"Jamie Schuricht","type":"Person","_key":"24924"} +{"label":"Tim-Owe Georgi","version":19,"id":"42437","lastModified":"1301901804000","name":"Tim-Owe Georgi","type":"Person","_key":"24925"} +{"label":"Franz Gr\u00f6ning","version":20,"id":"42438","lastModified":"1301901735000","name":"Franz Gr\u00f6ning","type":"Person","_key":"24926"} +{"label":"Andrea Paula Paul","version":25,"id":"42439","lastModified":"1301901482000","name":"Andrea Paula Paul","type":"Person","_key":"24927"} +{"label":"Bernd Marszahn","version":20,"id":"42440","lastModified":"1301901735000","name":"Bernd Marszahn","type":"Person","_key":"24928"} +{"label":"Torsten Buchsteiner","version":20,"id":"42443","lastModified":"1301901735000","name":"Torsten Buchsteiner","type":"Person","_key":"24929"} +{"label":"Gotthard Lange","version":23,"id":"42445","lastModified":"1301901735000","name":"Gotthard Lange","type":"Person","_key":"24930"} +{"label":"Frank Kusche","version":20,"id":"42448","lastModified":"1301901735000","name":"Frank Kusche","type":"Person","_key":"24931"} +{"label":"Monika Jones","version":20,"id":"42450","lastModified":"1301901735000","name":"Monika Jones","type":"Person","_key":"24932"} +{"label":"Ralph Misske","version":25,"id":"42451","lastModified":"1301901655000","name":"Ralph Misske","type":"Person","_key":"24933"} +{"label":"Shellye Broughton","version":20,"id":"42452","lastModified":"1301901735000","name":"Shellye Broughton","type":"Person","_key":"24934"} +{"label":"Matthias Schmidt","version":20,"id":"42453","lastModified":"1301901735000","name":"Matthias Schmidt","type":"Person","_key":"24935"} +{"label":"Eric Hamel","version":20,"id":"42454","lastModified":"1301901735000","name":"Eric Hamel","type":"Person","_key":"24936"} +{"label":"Robert Mansfeld","version":20,"id":"42455","lastModified":"1301901735000","name":"Robert Mansfeld","type":"Person","_key":"24937"} +{"label":"Frank Muche","version":20,"id":"42456","lastModified":"1301901735000","name":"Frank Muche","type":"Person","_key":"24938"} +{"label":"Gregor Schnitzler","version":25,"id":"42457","lastModified":"1301901649000","name":"Gregor Schnitzler","type":"Person","_key":"24939"} +{"label":"Ist das Licht im K\u00fchlschrank wirklich aus?","description":"No overview found.","id":"5263","runtime":3,"version":25,"lastModified":"1301419544000","genre":"Documentary","title":"Ist das Licht im K\u00fchlschrank wirklich aus?","releaseDate":1184371200000,"language":"en","type":"Movie","_key":"24940"} +{"label":"Benjamin Wieg","version":22,"id":"17321","lastModified":"1301901680000","name":"Benjamin Wieg","type":"Person","_key":"24941"} +{"label":"Roman Schauerte","version":18,"id":"42489","lastModified":"1301901964000","name":"Roman Schauerte","type":"Person","_key":"24942"} +{"label":"Red Shoe Diaries 17: Swimming Naked","description":"No overview found.","id":"5264","runtime":83,"imdbId":"tt0247660","version":57,"lastModified":"1301908338000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 17: Swimming Naked","releaseDate":987811200000,"language":"en","type":"Movie","_key":"24943"} +{"label":"Henric Nieminen","version":20,"id":"42508","lastModified":"1301901735000","name":"Henric Nieminen","type":"Person","_key":"24944"} +{"label":"Kenneth David Ebling","version":19,"id":"42510","lastModified":"1301901895000","name":"Kenneth David Ebling","type":"Person","_key":"24945"} +{"label":"Omry Reznik","version":19,"id":"42511","lastModified":"1301901735000","name":"Omry Reznik","type":"Person","_key":"24946"} +{"label":"Robin Sagstetter","version":19,"id":"42512","lastModified":"1301901735000","name":"Robin Sagstetter","type":"Person","_key":"24947"} +{"label":"Carrie Sturdevant Fisher","version":18,"id":"42513","lastModified":"1301901804000","name":"Carrie Sturdevant Fisher","type":"Person","_key":"24948"} +{"label":"Sonya Ryzy-Ryski","version":18,"id":"42514","lastModified":"1301901804000","name":"Sonya Ryzy-Ryski","type":"Person","_key":"24949"} +{"label":"Cyia Batten","version":22,"id":"42515","lastModified":"1301901253000","name":"Cyia Batten","type":"Person","_key":"24950"} +{"label":"Caitlin McLean","version":19,"id":"42516","lastModified":"1301901735000","name":"Caitlin McLean","type":"Person","_key":"24951"} +{"label":"Kristi Frank","version":17,"id":"42517","lastModified":"1301901735000","name":"Kristi Frank","type":"Person","_key":"24952"} +{"label":"Red Shoe Diaries 5: Weekend Pass","description":"No overview found.","id":"5265","runtime":86,"imdbId":"tt0107935","version":70,"lastModified":"1301908598000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 5: Weekend Pass","releaseDate":807235200000,"language":"en","type":"Movie","_key":"24953"} +{"label":"Peter Care","version":28,"id":"42518","lastModified":"1301901993000","name":"Peter Care","type":"Person","_key":"24954"} +{"label":"Paula Barbieri","version":20,"id":"42522","lastModified":"1301901516000","name":"Paula Barbieri","type":"Person","_key":"24955"} +{"label":"Ron Marquette","version":21,"id":"42523","lastModified":"1301901964000","name":"Ron Marquette","type":"Person","_key":"24956"} +{"label":"Claire Stansfield","version":23,"id":"42524","lastModified":"1301901447000","name":"Claire Stansfield","type":"Person","_key":"24957"} +{"label":"Sue Kiel","version":21,"id":"42525","lastModified":"1301901964000","name":"Sue Kiel","type":"Person","_key":"24958"} +{"label":"Nicholas Love","version":18,"id":"15866","lastModified":"1301901567000","name":"Nicholas Love","type":"Person","_key":"24959"} +{"label":"Dee McCafferty","version":22,"id":"42526","lastModified":"1301902158000","name":"Dee McCafferty","type":"Person","_key":"24960"} +{"label":"Anthony Addabbo","version":22,"id":"42527","lastModified":"1301901789000","name":"Anthony Addabbo","type":"Person","_key":"24961"} +{"label":"Karen Newman","version":20,"id":"42528","lastModified":"1301902185000","name":"Karen Newman","type":"Person","_key":"24962"} +{"label":"Angella Kaye","version":18,"id":"42529","lastModified":"1301901999000","name":"Angella Kaye","type":"Person","_key":"24963"} +{"label":"Red Shoe Diaries 16: Temple of Flesh","description":"No overview found.","id":"5266","runtime":86,"imdbId":"tt0123236","version":44,"lastModified":"1301908600000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 16: Temple of Flesh","releaseDate":852076800000,"language":"en","type":"Movie","_key":"24964"} +{"label":"Anya Longwell","version":21,"id":"42532","lastModified":"1301901790000","name":"Anya Longwell","type":"Person","_key":"24965"} +{"label":"Justin Carroll","version":23,"id":"42533","lastModified":"1301901498000","name":"Justin Carroll","type":"Person","_key":"24966"} +{"label":"Darren Foy","version":16,"id":"42534","lastModified":"1301901999000","name":"Darren Foy","type":"Person","_key":"24967"} +{"label":"Elina Madison","version":29,"id":"42535","lastModified":"1301901523000","name":"Elina Madison","type":"Person","_key":"24968"} +{"label":"Red Shoe Diaries 15: Forbidden Zone","description":"No overview found.","id":"5267","runtime":86,"imdbId":"tt0295710","version":48,"lastModified":"1301908598000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 15: Forbidden Zone","releaseDate":1020297600000,"language":"en","type":"Movie","_key":"24969"} +{"label":"Brad Fisher","version":21,"id":"42548","lastModified":"1301902158000","name":"Brad Fisher","type":"Person","_key":"24970"} +{"label":"Beverly Johnson","version":20,"id":"42549","lastModified":"1301901964000","name":"Beverly Johnson","type":"Person","_key":"24971"} +{"label":"Honey Labrador","version":20,"id":"42550","lastModified":"1301901964000","name":"Honey Labrador","type":"Person","_key":"24972"} +{"label":"Raven Snow","version":21,"id":"42551","lastModified":"1301901964000","name":"Raven Snow","type":"Person","_key":"24973"} +{"label":"Red Shoe Diaries 6: How i met my Husband","description":"No overview found.","id":"5269","runtime":90,"imdbId":"tt0117454","version":75,"lastModified":"1301905339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4bc91c6d017a3c57fe00b06e\/red-shoe-diaries-6-how-i-met-my-husband-mid.jpg","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 6: How i met my Husband","releaseDate":823564800000,"language":"en","type":"Movie","_key":"24974"} +{"label":"Anne Goursaud","version":28,"id":"2873","lastModified":"1299493712000","name":"Anne Goursaud","type":"Person","_key":"24975"} +{"label":"Bernard Auroux","version":23,"id":"42553","lastModified":"1301901964000","name":"Bernard Auroux","type":"Person","_key":"24976"} +{"label":"Philippe Angers","version":20,"id":"42552","lastModified":"1301901964000","name":"Philippe Angers","type":"Person","_key":"24977"} +{"label":"Luigi Amodeo","version":21,"id":"42555","lastModified":"1301902021000","name":"Luigi Amodeo","type":"Person","_key":"24978"} +{"label":"Neith Hunter","version":22,"id":"42556","lastModified":"1301901497000","name":"Neith Hunter","type":"Person","_key":"24979"} +{"label":"John Enos III","version":23,"id":"42557","lastModified":"1301901964000","name":"John Enos III","type":"Person","_key":"24980"} +{"label":"Charlotte Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f6\/4d9518dd7b9aa119970026f6\/charlotte-lewis-profile.jpg","version":28,"id":"42558","lastModified":"1301901827000","name":"Charlotte Lewis","type":"Person","_key":"24981"} +{"label":"Jennifer Burton","version":23,"id":"42559","lastModified":"1301901964000","name":"Jennifer Burton","type":"Person","_key":"24982"} +{"label":"Alex Ardenti","version":18,"id":"42560","lastModified":"1301901804000","name":"Alex Ardenti","type":"Person","_key":"24983"} +{"label":"Andrea Riave","version":21,"id":"42561","lastModified":"1301902200000","name":"Andrea Riave","type":"Person","_key":"24984"} +{"label":"Rudy de Rooy","version":20,"id":"42562","lastModified":"1301901816000","name":"Rudy de Rooy","type":"Person","_key":"24985"} +{"label":"California Ralph","version":18,"id":"42563","lastModified":"1301901804000","name":"California Ralph","type":"Person","_key":"24986"} +{"label":"Red Shoe Diaries 12: Girl on a Bike","description":"No overview found.","id":"5270","runtime":78,"imdbId":"tt0295713","version":60,"lastModified":"1301417556000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 12: Girl on a Bike","releaseDate":952992000000,"language":"en","type":"Movie","_key":"24987"} +{"label":"Stephen Halbert","version":19,"id":"42638","lastModified":"1301901895000","name":"Stephen Halbert","type":"Person","_key":"24988"} +{"label":"Robbi Chong","version":21,"id":"42646","lastModified":"1301992520000","name":"Robbi Chong","type":"Person","_key":"24989"} +{"label":"Peter Gregory","version":21,"id":"42647","lastModified":"1301901735000","name":"Peter Gregory","type":"Person","_key":"24990"} +{"label":"Rhonda Aldrich","version":19,"id":"42648","lastModified":"1301901895000","name":"Rhonda Aldrich","type":"Person","_key":"24991"} +{"label":"Sofia Shinas","version":23,"id":"42649","lastModified":"1301901936000","name":"Sofia Shinas","type":"Person","_key":"24992"} +{"label":"Jesse Harris","version":22,"id":"42650","lastModified":"1301902027000","name":"Jesse Harris","type":"Person","_key":"24993"} +{"label":"Peter Quartaroli","version":19,"id":"42651","lastModified":"1301901895000","name":"Peter Quartaroli","type":"Person","_key":"24994"} +{"label":"G\u00e9raldine Cotte","version":18,"id":"42652","lastModified":"1301901981000","name":"G\u00e9raldine Cotte","type":"Person","_key":"24995"} +{"label":"Corinne Chuffart","version":19,"id":"42653","lastModified":"1301902107000","name":"Corinne Chuffart","type":"Person","_key":"24996"} +{"label":"Sally La Boeuf","version":19,"id":"42654","lastModified":"1301901895000","name":"Sally La Boeuf","type":"Person","_key":"24997"} +{"label":"Gosford Park","description":"Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.","id":"5279","runtime":137,"imdbId":"tt0280707","version":368,"lastModified":"1302039311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/077\/4bc91c70017a3c57fe00b077\/gosford-park-mid.jpg","studio":"Capitol Films","genre":"Comedy","title":"Gosford Park","releaseDate":1005091200000,"language":"en","type":"Movie","_key":"24998"} +{"label":"Trent Ford","version":22,"id":"42626","lastModified":"1301901646000","name":"Trent Ford","type":"Person","_key":"24999"} +{"label":"James Wilby","version":24,"id":"42627","lastModified":"1301901640000","name":"James Wilby","type":"Person","_key":"25000"} +{"label":"You're Dead","description":"No overview found.","id":"5282","runtime":98,"imdbId":"tt0178997","version":146,"lastModified":"1301905202000","studio":"Atlantic Streamline","genre":"Comedy","title":"You're Dead","releaseDate":938736000000,"language":"en","type":"Movie","_key":"25001"} +{"label":"Andy Hurst","version":36,"id":"42640","lastModified":"1301901657000","name":"Andy Hurst","type":"Person","_key":"25002"} +{"label":"Claire Skinner","version":24,"id":"42641","lastModified":"1301901816000","name":"Claire Skinner","type":"Person","_key":"25003"} +{"label":"Barbara Flynn","version":20,"id":"42564","lastModified":"1301902201000","name":"Barbara Flynn","type":"Person","_key":"25004"} +{"label":"Patrick Field","version":22,"id":"42643","lastModified":"1301901826000","name":"Patrick Field","type":"Person","_key":"25005"} +{"label":"Badi Uzzaman","version":20,"id":"42644","lastModified":"1301901789000","name":"Badi Uzzaman","type":"Person","_key":"25006"} +{"label":"Felicity Dean","version":26,"id":"42645","lastModified":"1301901977000","name":"Felicity Dean","type":"Person","_key":"25007"} +{"label":"Red Shoe Diaries 14: Luscious Lola","description":"No overview found.","id":"5283","runtime":86,"imdbId":"tt0245242","version":53,"lastModified":"1301419542000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 14: Luscious Lola","releaseDate":974160000000,"language":"en","type":"Movie","_key":"25008"} +{"label":"Heidi Mark","version":21,"id":"42656","lastModified":"1301901964000","name":"Heidi Mark","type":"Person","_key":"25009"} +{"label":"Bobbie Phillips","version":24,"id":"42657","lastModified":"1301901575000","name":"Bobbie Phillips","type":"Person","_key":"25010"} +{"label":"Michael Bendetti","version":20,"id":"42658","lastModified":"1301901841000","name":"Michael Bendetti","type":"Person","_key":"25011"} +{"label":"Vance Harvey","version":20,"id":"42659","lastModified":"1301902185000","name":"Vance Harvey","type":"Person","_key":"25012"} +{"label":"Herbie Tribino","version":20,"id":"42660","lastModified":"1301902159000","name":"Herbie Tribino","type":"Person","_key":"25013"} +{"label":"The Safe House","description":"No overview found.","id":"5284","runtime":180,"imdbId":"tt0272283","version":55,"lastModified":"1301417556000","studio":"Alibi Pictures","genre":"Crime","title":"The Safe House","releaseDate":1035763200000,"language":"en","type":"Movie","_key":"25014"} +{"label":"Simon Massey","version":20,"id":"42661","lastModified":"1301901999000","name":"Simon Massey","type":"Person","_key":"25015"} +{"label":"Sean Gleeson","version":19,"id":"42662","lastModified":"1301901895000","name":"Sean Gleeson","type":"Person","_key":"25016"} +{"label":"Robert Bathurst","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/44b\/4ca2a99d5e73d612f800044b\/robert-bathurst-profile.jpg","version":25,"id":"42663","lastModified":"1301902159000","name":"Robert Bathurst","type":"Person","_key":"25017"} +{"label":"Isobel Middleton","version":19,"id":"42585","lastModified":"1301902107000","name":"Isobel Middleton","type":"Person","_key":"25018"} +{"label":"Polly Moore","version":20,"id":"42664","lastModified":"1301901895000","name":"Polly Moore","type":"Person","_key":"25019"} +{"label":"Laura Jane Keston","version":19,"id":"42665","lastModified":"1301902107000","name":"Laura Jane Keston","type":"Person","_key":"25020"} +{"label":"Emily Keston","version":19,"id":"42666","lastModified":"1301902107000","name":"Emily Keston","type":"Person","_key":"25021"} +{"label":"Red Shoe Diaries 10: Slow Train","description":"No overview found.","id":"5285","runtime":87,"imdbId":"tt0247661","version":38,"lastModified":"1300978388000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 10: Slow Train","releaseDate":820454400000,"language":"en","type":"Movie","_key":"25022"} +{"label":"Athena Massey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24a\/4c8ba3595e73d6068c00024a\/athena-massey-profile.jpg","version":22,"id":"42687","lastModified":"1301902019000","name":"Athena Massey","type":"Person","_key":"25023"} +{"label":"Andrew Calder","version":19,"id":"42688","lastModified":"1301902107000","name":"Andrew Calder","type":"Person","_key":"25024"} +{"label":"Mark Zuelke","version":20,"id":"42689","lastModified":"1301901895000","name":"Mark Zuelke","type":"Person","_key":"25025"} +{"label":"Floyd Irons","version":22,"id":"42690","lastModified":"1301901775000","name":"Floyd Irons","type":"Person","_key":"25026"} +{"label":"Sam Menning","version":20,"id":"42691","lastModified":"1301901895000","name":"Sam Menning","type":"Person","_key":"25027"} +{"label":"Richard Hench","version":24,"id":"42692","lastModified":"1301901656000","name":"Richard Hench","type":"Person","_key":"25028"} +{"label":"Maureen Carter","version":19,"id":"42693","lastModified":"1301901895000","name":"Maureen Carter","type":"Person","_key":"25029"} +{"label":"Str\u00e1karnir okkar","description":"No overview found.","id":"5286","runtime":87,"imdbId":"tt0427906","version":49,"lastModified":"1301906082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4bc91c70017a3c57fe00b07c\/strakarnir-okkar-mid.jpg","studio":"The Icelandic Filmcompany","genre":"Comedy","title":"Str\u00e1karnir okkar","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"25030"} +{"label":"R\u00f3bert I. Douglas","version":22,"id":"42667","lastModified":"1301901735000","name":"R\u00f3bert I. Douglas","type":"Person","_key":"25031"} +{"label":"Bj\u00f6rn Hlynur Haraldsson","version":24,"id":"42668","lastModified":"1301902107000","name":"Bj\u00f6rn Hlynur Haraldsson","type":"Person","_key":"25032"} +{"label":"Lilja N\u00f3tt \u00de\u00f3rarinsd\u00f3ttir","version":22,"id":"42669","lastModified":"1301901895000","name":"Lilja N\u00f3tt \u00de\u00f3rarinsd\u00f3ttir","type":"Person","_key":"25033"} +{"label":"Arnmundur Ernst Bj\u00f6rnsson","version":21,"id":"42670","lastModified":"1301901804000","name":"Arnmundur Ernst Bj\u00f6rnsson","type":"Person","_key":"25034"} +{"label":"Helgi Bj\u00f6rnsson","version":25,"id":"42671","lastModified":"1301901799000","name":"Helgi Bj\u00f6rnsson","type":"Person","_key":"25035"} +{"label":"\u00deorsteinn Bachmann","version":19,"id":"42673","lastModified":"1301902107000","name":"\u00deorsteinn Bachmann","type":"Person","_key":"25036"} +{"label":"Sigur\u00f0ur Sk\u00falason","version":20,"id":"42672","lastModified":"1301902107000","name":"Sigur\u00f0ur Sk\u00falason","type":"Person","_key":"25037"} +{"label":"Marius Sverrisson","version":19,"id":"42674","lastModified":"1301901735000","name":"Marius Sverrisson","type":"Person","_key":"25038"} +{"label":"Hilmar Jonsson","version":19,"id":"42675","lastModified":"1301901735000","name":"Hilmar Jonsson","type":"Person","_key":"25039"} +{"label":"Felix Bergsson","version":19,"id":"42676","lastModified":"1301902107000","name":"Felix Bergsson","type":"Person","_key":"25040"} +{"label":"Erlendur Eir\u00edksson","version":21,"id":"42677","lastModified":"1301902107000","name":"Erlendur Eir\u00edksson","type":"Person","_key":"25041"} +{"label":"Red Shoe Diaries 9: Hotline","description":"No overview found.","id":"5287","runtime":90,"imdbId":"tt0124252","version":54,"lastModified":"1301906082000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 9: Hotline","releaseDate":757382400000,"language":"en","type":"Movie","_key":"25042"} +{"label":"St\u00e9phane Bonnet","version":18,"id":"42696","lastModified":"1301901804000","name":"St\u00e9phane Bonnet","type":"Person","_key":"25043"} +{"label":"Mar\u00eda Celedonio","version":18,"id":"42697","lastModified":"1301901804000","name":"Mar\u00eda Celedonio","type":"Person","_key":"25044"} +{"label":"James Eric","version":19,"id":"42698","lastModified":"1301901735000","name":"James Eric","type":"Person","_key":"25045"} +{"label":"Denice D. Lewis","version":19,"id":"42699","lastModified":"1301901617000","name":"Denice D. Lewis","type":"Person","_key":"25046"} +{"label":"George Pilgrim","version":20,"id":"42700","lastModified":"1301901476000","name":"George Pilgrim","type":"Person","_key":"25047"} +{"label":"Sabine Tingry","version":19,"id":"42701","lastModified":"1301901735000","name":"Sabine Tingry","type":"Person","_key":"25048"} +{"label":"Judy Toll","version":19,"id":"42702","lastModified":"1301901735000","name":"Judy Toll","type":"Person","_key":"25049"} +{"label":"Alexandra Tydings","version":22,"id":"42703","lastModified":"1301901895000","name":"Alexandra Tydings","type":"Person","_key":"25050"} +{"label":"Lynette Walden","version":22,"id":"42704","lastModified":"1301901735000","name":"Lynette Walden","type":"Person","_key":"25051"} +{"label":"Chaos","description":"Two cops, a rookie and a grizzled vet, pursue an accomplished bank robber. ","id":"5289","runtime":102,"imdbId":"tt0402910","trailer":"http:\/\/www.youtube.com\/watch?v=81eXAC96k8w","version":252,"lastModified":"1301902528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bf147e0017a3c3212000138\/chaos-mid.jpg","studio":"Current Entertainment","genre":"Action","title":"Chaos","releaseDate":1106006400000,"language":"en","type":"Movie","_key":"25052"} +{"label":"Justine Waddell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/689\/4d5a63ca5e73d65e95000689\/justine-waddell-profile.jpg","version":32,"id":"42705","lastModified":"1301901343000","name":"Justine Waddell","type":"Person","_key":"25053"} +{"label":"Nicholas Lea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c9\/4cee8e1b5e73d653160000c9\/nicholas-lea-profile.jpg","version":30,"id":"42706","lastModified":"1301901850000","name":"Nicholas Lea","type":"Person","_key":"25054"} +{"label":"Jessica Steen","version":30,"id":"42707","lastModified":"1301901843000","name":"Jessica Steen","type":"Person","_key":"25055"} +{"label":"Rob LaBelle","version":36,"id":"42708","lastModified":"1301901214000","name":"Rob LaBelle","type":"Person","_key":"25056"} +{"label":"Damon Johnson","version":22,"id":"42709","lastModified":"1301901431000","name":"Damon Johnson","type":"Person","_key":"25057"} +{"label":"Keegan Connor Tracy","version":25,"id":"42710","lastModified":"1301901676000","name":"Keegan Connor Tracy","type":"Person","_key":"25058"} +{"label":"Ty Olsson","version":37,"id":"42711","lastModified":"1301901444000","name":"Ty Olsson","type":"Person","_key":"25059"} +{"label":"Tony Giglio","version":42,"id":"42712","lastModified":"1301901528000","name":"Tony Giglio","type":"Person","_key":"25060"} +{"label":"Red Shoe Diaries 19: As she Wishes","description":"No overview found.","id":"5290","runtime":90,"imdbId":"tt0295560","version":35,"lastModified":"1301906749000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 19: As she Wishes","releaseDate":978307200000,"language":"en","type":"Movie","_key":"25061"} +{"label":"Adamo Palladino","version":16,"id":"42714","lastModified":"1301902019000","name":"Adamo Palladino","type":"Person","_key":"25062"} +{"label":"Amber Smith","version":21,"id":"42715","lastModified":"1301901567000","name":"Amber Smith","type":"Person","_key":"25063"} +{"label":"Red Shoe Diaries 18: The Game","description":"No overview found.","id":"5291","runtime":90,"imdbId":"tt0295712","version":49,"lastModified":"1301907283000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 18: The Game","releaseDate":946684800000,"language":"en","type":"Movie","_key":"25064"} +{"label":"Caron Bernstein","version":19,"id":"42716","lastModified":"1301901735000","name":"Caron Bernstein","type":"Person","_key":"25065"} +{"label":"Elodie Frenck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/921\/4cf57d155e73d62999000921\/elodie-frenck-profile.jpg","version":22,"id":"42718","lastModified":"1301901181000","name":"Elodie Frenck","type":"Person","_key":"25066"} +{"label":"Christian LeBlanc","version":19,"id":"42719","lastModified":"1301901539000","name":"Christian LeBlanc","type":"Person","_key":"25067"} +{"label":"Will Stewart","version":20,"id":"42720","lastModified":"1301901774000","name":"Will Stewart","type":"Person","_key":"25068"} +{"label":"Saxon Trainor","version":19,"id":"42721","lastModified":"1301902107000","name":"Saxon Trainor","type":"Person","_key":"25069"} +{"label":"Michael T. Weiss","version":29,"id":"42722","lastModified":"1301901321000","name":"Michael T. Weiss","type":"Person","_key":"25070"} +{"label":"Red Shoe Diaries 8: Night of Abandon","description":"No overview found.","id":"5292","runtime":85,"imdbId":"tt0114248","version":53,"lastModified":"1301906749000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 8: Night of Abandon","releaseDate":879897600000,"language":"en","type":"Movie","_key":"25071"} +{"label":"James Gavin Bedford","version":27,"id":"42131","lastModified":"1301901964000","name":"James Gavin Bedford","type":"Person","_key":"25072"} +{"label":"Catalina Bonakie","version":20,"id":"42726","lastModified":"1301902158000","name":"Catalina Bonakie","type":"Person","_key":"25073"} +{"label":"Daniel Leza","version":18,"id":"42727","lastModified":"1301901981000","name":"Daniel Leza","type":"Person","_key":"25074"} +{"label":"Red Shoe Diaries 7: Burning Up","description":"No overview found.","id":"5296","runtime":85,"imdbId":"tt0114247","version":71,"lastModified":"1301908338000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 7: Burning Up","releaseDate":852595200000,"language":"en","type":"Movie","_key":"25075"} +{"label":"Daniel Anibal Blasco","version":19,"id":"42729","lastModified":"1301902107000","name":"Daniel Anibal Blasco","type":"Person","_key":"25076"} +{"label":"Jennifer Ciesar","version":20,"id":"42730","lastModified":"1301901539000","name":"Jennifer Ciesar","type":"Person","_key":"25077"} +{"label":"Anthony Guidera","version":19,"id":"42731","lastModified":"1301902107000","name":"Anthony Guidera","type":"Person","_key":"25078"} +{"label":"Red Shoe Diaries 11: Farmer's Daughter","description":"No overview found.","id":"5297","runtime":82,"imdbId":"tt0323782","version":37,"lastModified":"1301905006000","studio":"Republic Pictures","genre":"Erotic","title":"Red Shoe Diaries 11: Farmer's Daughter","releaseDate":852076800000,"language":"en","type":"Movie","_key":"25079"} +{"label":"Irina Grigoryeva","version":21,"id":"42732","lastModified":"1301901859000","name":"Irina Grigoryeva","type":"Person","_key":"25080"} +{"label":"Patrick Budal","version":18,"id":"42733","lastModified":"1301901668000","name":"Patrick Budal","type":"Person","_key":"25081"} +{"label":"Anfisa Nejinskaya","version":20,"id":"42734","lastModified":"1301901511000","name":"Anfisa Nejinskaya","type":"Person","_key":"25082"} +{"label":"Yuliya Blokhina","version":20,"id":"42735","lastModified":"1301901352000","name":"Yuliya Blokhina","type":"Person","_key":"25083"} +{"label":"Red Shoe Diaries 13: Four on the Floor","description":"No overview found.","id":"5298","runtime":82,"imdbId":"tt0284427","version":48,"lastModified":"1301908338000","studio":"Republic Pictures","title":"Red Shoe Diaries 13: Four on the Floor","releaseDate":820454400000,"language":"en","type":"Movie","_key":"25084"} +{"label":"David Womark","version":19,"id":"42736","lastModified":"1301901735000","name":"David Womark","type":"Person","_key":"25085"} +{"label":"Demetra Hampton","version":20,"id":"42738","lastModified":"1301901617000","name":"Demetra Hampton","type":"Person","_key":"25086"} +{"label":"Natasha Cashman","version":19,"id":"42739","lastModified":"1301901539000","name":"Natasha Cashman","type":"Person","_key":"25087"} +{"label":"Christopher Atkins","version":33,"id":"42740","lastModified":"1301901566000","name":"Christopher Atkins","type":"Person","_key":"25088"} +{"label":"Dominique Abel","version":21,"id":"42741","lastModified":"1301901846000","name":"Dominique Abel","type":"Person","_key":"25089"} +{"label":"Rachel Palmieri","version":18,"id":"42742","lastModified":"1301901981000","name":"Rachel Palmieri","type":"Person","_key":"25090"} +{"label":"Mari Morrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d9\/4cf1ffe25e73d61e3b0005d9\/mari-morrow-profile.jpg","version":33,"id":"42743","lastModified":"1301901529000","name":"Mari Morrow","type":"Person","_key":"25091"} +{"label":"Alexandra Styron","version":19,"id":"42744","lastModified":"1301901895000","name":"Alexandra Styron","type":"Person","_key":"25092"} +{"label":"Without You I'm Nothing","description":"No overview found.","id":"5302","runtime":90,"imdbId":"tt0100946","version":478,"lastModified":"1301908338000","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Without You I'm Nothing","releaseDate":642384000000,"language":"en","type":"Movie","_key":"25093"} +{"label":"Steven Antin","version":21,"id":"42745","lastModified":"1301902198000","name":"Steven Antin","type":"Person","_key":"25094"} +{"label":"John Doe","version":35,"id":"42746","lastModified":"1301901416000","name":"John Doe","type":"Person","_key":"25095"} +{"label":"Lu Leonard","version":24,"id":"42751","lastModified":"1301901657000","name":"Lu Leonard","type":"Person","_key":"25096"} +{"label":"John Boskovich","version":21,"id":"42748","lastModified":"1301901789000","name":"John Boskovich","type":"Person","_key":"25097"} +{"label":"Hum Dil De Chuke Sanam","description":"Indian-based traditional family of Pundit Darbar (Vikram Gokhale) gets a visit from Sameer Rafilini (Salman Khan), from Italy, who has come as a pupil to learn music and singing. Darbar and his family accept him. Sameer meets Nandini (Aishwarya Rai), Darbar's daughter, and both fall in love. But Darbar wants Nandini to wed Vanraj (Ajay Devgan), and has Sameer swear that he will leave India.","id":"5319","runtime":188,"imdbId":"tt0150992","version":132,"lastModified":"1301905113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc91c72017a3c57fe00b093\/hum-dil-de-chuke-sanam-mid.jpg","studio":"Bhansali Films","genre":"Drama","title":"Hum Dil De Chuke Sanam","releaseDate":929664000000,"language":"en","type":"Movie","_key":"25098"} +{"label":"Aishwarya Rai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b7\/4c4a549a5e73d627100001b7\/aishwarya-rai-profile.jpg","version":88,"birthday":"120956400000","id":"87773","birthplace":"Mangalore, Karnataka, India","lastModified":"1301901117000","name":"Aishwarya Rai","type":"Person","_key":"25099"} +{"label":"Salman Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25a\/4c2691517b9aa1446a00025a\/salman-khan-profile.jpg","version":68,"id":"42802","lastModified":"1301901266000","name":"Salman Khan","type":"Person","_key":"25100"} +{"label":"Ajay Devgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/108\/4c4f22945e73d62ec5000108\/ajay-devgan-profile.jpg","version":65,"id":"42803","lastModified":"1301901361000","name":"Ajay Devgan","type":"Person","_key":"25101"} +{"label":"Vikram Gokhale","version":19,"id":"43413","lastModified":"1301901735000","name":"Vikram Gokhale","type":"Person","_key":"25102"} +{"label":"Smita Jaykar","version":20,"id":"43414","lastModified":"1301901895000","name":"Smita Jaykar","type":"Person","_key":"25103"} +{"label":"Kermati Desai","version":19,"id":"43415","lastModified":"1301901895000","name":"Kermati Desai","type":"Person","_key":"25104"} +{"label":"Vinay Pathak","version":35,"id":"43416","lastModified":"1301902166000","name":"Vinay Pathak","type":"Person","_key":"25105"} +{"label":"Sanjay Leela Bhansali","version":38,"id":"42804","lastModified":"1301901803000","name":"Sanjay Leela Bhansali","type":"Person","_key":"25106"} +{"label":"Dancing at Lughnasa","description":"No overview found.","id":"5332","runtime":96,"imdbId":"tt0120643","version":154,"lastModified":"1301905997000","studio":"B\u00f3rd Scann\u00e1n na h\u00c9ireann","genre":"Drama","title":"Dancing at Lughnasa","releaseDate":904867200000,"language":"en","type":"Movie","_key":"25107"} +{"label":"Brid Brennan","version":20,"id":"42601","lastModified":"1301901477000","name":"Brid Brennan","type":"Person","_key":"25108"} +{"label":"Lorcan Cranitch","version":21,"id":"42565","lastModified":"1301901617000","name":"Lorcan Cranitch","type":"Person","_key":"25109"} +{"label":"Darrell Johnston","version":20,"id":"42835","lastModified":"1301901895000","name":"Darrell Johnston","type":"Person","_key":"25110"} +{"label":"Marie Mullen","version":20,"id":"42836","lastModified":"1301901735000","name":"Marie Mullen","type":"Person","_key":"25111"} +{"label":"Dawn Bradfield","version":20,"id":"42837","lastModified":"1301901539000","name":"Dawn Bradfield","type":"Person","_key":"25112"} +{"label":"Peter Gowen","version":21,"id":"42838","lastModified":"1301901945000","name":"Peter Gowen","type":"Person","_key":"25113"} +{"label":"Kate O'Toole","version":22,"id":"42839","lastModified":"1301901895000","name":"Kate O'Toole","type":"Person","_key":"25114"} +{"label":"Apartment Zero","description":"The owner of a failing cinema and his mysterious boarder are caught up in the political intrigue of Argentina.","id":"5333","runtime":124,"imdbId":"tt0094667","version":648,"lastModified":"1301903879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8a\/4d33215f7b9aa17af8006b8a\/apartment-zero-mid.jpg","studio":"Summit Entertainment","genre":"Drama","title":"Apartment Zero","releaseDate":591580800000,"language":"en","type":"Movie","_key":"25115"} +{"label":"Dora Bryan","version":27,"id":"43626","lastModified":"1301901813000","name":"Dora Bryan","type":"Person","_key":"25116"} +{"label":"Mirella D'Angelo","version":25,"id":"43628","lastModified":"1301983557000","name":"Mirella D'Angelo","type":"Person","_key":"25117"} +{"label":"James Telfer","version":19,"id":"43629","lastModified":"1301901895000","name":"James Telfer","type":"Person","_key":"25118"} +{"label":"Fabrizio Bentivoglio","version":37,"id":"121732","lastModified":"1301901859000","name":"Fabrizio Bentivoglio","type":"Person","_key":"25119"} +{"label":"Billy Budd","description":"No overview found.","id":"5334","runtime":119,"imdbId":"tt0055796","version":107,"lastModified":"1301904134000","studio":"Anglo Allied","genre":"Action","title":"Billy Budd","releaseDate":-225244800000,"language":"en","type":"Movie","_key":"25120"} +{"label":"Paul Rogers","version":24,"id":"42840","lastModified":"1301901775000","name":"Paul Rogers","type":"Person","_key":"25121"} +{"label":"John Meillon","version":34,"id":"42841","lastModified":"1301901782000","name":"John Meillon","type":"Person","_key":"25122"} +{"label":"Teorema","description":"A wealthy Italian household is turned upside down when a handsome stranger (Terence Stamp) arrives, makes love to every family member and then disappears. Each has an epiphany of sorts, but none can figure out who the seductive visitor was or why he came.","id":"5335","runtime":105,"imdbId":"tt0063678","version":117,"lastModified":"1301905213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a1\/4bc91c73017a3c57fe00b0a1\/teorema-mid.jpg","genre":"Drama","title":"Teorema","releaseDate":-41817600000,"language":"en","type":"Movie","_key":"25123"} +{"label":"Pier Paolo Pasolini","version":75,"id":"5970","lastModified":"1301901183000","name":"Pier Paolo Pasolini","type":"Person","_key":"25124"} +{"label":"Andr\u00e9s Jos\u00e9 Cruz Soublette","version":22,"id":"42843","lastModified":"1301902185000","name":"Andr\u00e9s Jos\u00e9 Cruz Soublette","type":"Person","_key":"25125"} +{"label":"Giovanni Ivan Scratuglia","version":22,"id":"42844","lastModified":"1301902185000","name":"Giovanni Ivan Scratuglia","type":"Person","_key":"25126"} +{"label":"Sal\u00f2, or the 120 Days of Sodom","description":"Set in the Nazi-controlled, northern Italian state of Salo in 1944, four dignitaries round up sixteen perfect specimens of youth and take them together with guards, servants and studs to a palace near Marzabotto. In addition, there are four middle-aged women: three of whom recount arousing stories whilst the fourth accompanies on the piano. The story is largely taken up with their recounting the stories of Dante and De Sade: the Circle of Manias, the Circle of Shit and the Circle of Blood. Follo","id":"5336","runtime":116,"imdbId":"tt0073650","trailer":"http:\/\/www.youtube.com\/watch?v=0o2ul-UwOvU","version":227,"lastModified":"1301902290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b6\/4bc91c77017a3c57fe00b0b6\/salo-o-le-120-giornate-di-sodoma-mid.jpg","studio":"Produzioni Europee Associati","genre":"Drama","title":"Sal\u00f2, or the 120 Days of Sodom","releaseDate":185846400000,"language":"en","type":"Movie","_key":"25127"} +{"label":"Giorgio Cataldi","version":21,"id":"42845","lastModified":"1301901476000","name":"Giorgio Cataldi","type":"Person","_key":"25128"} +{"label":"Umberto Paolo Quintavalle","version":21,"id":"42846","lastModified":"1301901617000","name":"Umberto Paolo Quintavalle","type":"Person","_key":"25129"} +{"label":"Aldo Valletti","version":21,"id":"42847","lastModified":"1301901895000","name":"Aldo Valletti","type":"Person","_key":"25130"} +{"label":"Sonia Saviange","version":21,"id":"42848","lastModified":"1301901895000","name":"Sonia Saviange","type":"Person","_key":"25131"} +{"label":"Sergio Fascetti","version":21,"id":"42849","lastModified":"1301901894000","name":"Sergio Fascetti","type":"Person","_key":"25132"} +{"label":"Bruno Musso","version":21,"id":"42850","lastModified":"1301902107000","name":"Bruno Musso","type":"Person","_key":"25133"} +{"label":"Franco Merli","version":21,"id":"42851","lastModified":"1301901895000","name":"Franco Merli","type":"Person","_key":"25134"} +{"label":"Rinaldo Missaglia","version":21,"id":"42852","lastModified":"1301902107000","name":"Rinaldo Missaglia","type":"Person","_key":"25135"} +{"label":"Giuseppe Patruno","version":21,"id":"42853","lastModified":"1301901895000","name":"Giuseppe Patruno","type":"Person","_key":"25136"} +{"label":"Guido Galletti","version":21,"id":"42854","lastModified":"1301902107000","name":"Guido Galletti","type":"Person","_key":"25137"} +{"label":"Efisio Etzi","version":21,"id":"42855","lastModified":"1301901895000","name":"Efisio Etzi","type":"Person","_key":"25138"} +{"label":"Claudio Troccoli","version":21,"id":"42856","lastModified":"1301902107000","name":"Claudio Troccoli","type":"Person","_key":"25139"} +{"label":"Fabrizio Menichini","version":21,"id":"42857","lastModified":"1301902107000","name":"Fabrizio Menichini","type":"Person","_key":"25140"} +{"label":"Maurizio Valaguzza","version":21,"id":"42858","lastModified":"1301902107000","name":"Maurizio Valaguzza","type":"Person","_key":"25141"} +{"label":"Ezio Manni","version":21,"id":"42859","lastModified":"1301902107000","name":"Ezio Manni","type":"Person","_key":"25142"} +{"label":"Elsa De Giorgi","version":21,"id":"42860","lastModified":"1301901895000","name":"Elsa De Giorgi","type":"Person","_key":"25143"} +{"label":"Warum M\u00e4nner nicht zuh\u00f6ren und Frauen schlecht einparken","description":"No overview found.","id":"5338","runtime":103,"imdbId":"tt1112127","homepage":"http:\/\/www.maennerundfrauen.film.de\/","version":69,"lastModified":"1301904682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4bc91c78017a3c57fe00b0bf\/warum-manner-nicht-zuhoren-und-frauen-schlecht-einparken-mid.jpg","studio":"Constantin Film","genre":"Comedy","title":"Warum M\u00e4nner nicht zuh\u00f6ren und Frauen schlecht einparken","releaseDate":1196899200000,"language":"en","type":"Movie","_key":"25144"} +{"label":"Nadja Becker","version":19,"id":"42877","lastModified":"1301902107000","name":"Nadja Becker","type":"Person","_key":"25145"} +{"label":"Sasha","version":18,"id":"42878","lastModified":"1301901981000","name":"Sasha","type":"Person","_key":"25146"} +{"label":"Florentine Lahme","version":31,"id":"42879","lastModified":"1301901310000","name":"Florentine Lahme","type":"Person","_key":"25147"} +{"label":"The Hunting Party","description":"An emerging journalist (Jesse Eisenberg), an experienced cameraman (Terrence Howard), and a discredited reporter (Richard Gere) find their bold plan to capture Bosnia's top war criminal quickly spiraling out of control when a UN representative mistakes them for a CIA hit squad in a light-hearted thriller inspired by Scott Anderson's popular Esquire article. The Weinstein Company provides stateside","id":"5353","runtime":103,"imdbId":"tt0455782","homepage":"http:\/\/www.thehuntingpartymovie.com\/","version":278,"lastModified":"1301903491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2de\/4c5863d95e73d63a6c0002de\/the-hunting-party-mid.jpg","studio":"Intermedia Films","genre":"Action","title":"The Hunting Party","releaseDate":1188777600000,"language":"en","type":"Movie","_key":"25148"} +{"label":"Jesse Eisenberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef9\/4be9d4e7017a3c35b9000ef9\/jesse-eisenberg-profile.jpg","biography":"Jesse Adam Eisenberg is a young american actor.  Eisenberg first gained critical acclaim for his role in The Squid and the Whale.  He went on to appear in a few more films before appearing in 2009's Zombieland which made him a recognizable name in Hollywood.  This status was solidified when he played Facebook Co-Founder Mark Zuckerberg in The Social Network, a role for which he was nominated for a BAFTA and a Academy Award for Best Actor.  \nWhen asked about his career Eisenbe","version":96,"birthday":"434156400000","id":"44735","birthplace":"New York City, New York","lastModified":"1302061274000","name":"Jesse Eisenberg","type":"Person","_key":"25149"} +{"label":"Goran Kostic","version":23,"id":"44736","lastModified":"1301901895000","name":"Goran Kostic","type":"Person","_key":"25150"} +{"label":"Lejla Hadzimuratovic","version":21,"id":"44737","lastModified":"1301901895000","name":"Lejla Hadzimuratovic","type":"Person","_key":"25151"} +{"label":"Kristina Krepela","version":23,"id":"44738","lastModified":"1301901894000","name":"Kristina Krepela","type":"Person","_key":"25152"} +{"label":"Ljubomir Kerekes","version":24,"id":"44739","lastModified":"1301901714000","name":"Ljubomir Kerekes","type":"Person","_key":"25153"} +{"label":"Richard Shepard","version":34,"id":"44740","lastModified":"1301901306000","name":"Richard Shepard","type":"Person","_key":"25154"} +{"label":"Berlin am Meer","description":"No overview found.","id":"5354","runtime":95,"imdbId":"tt0961750","homepage":"http:\/\/www.berlinammeer-derfilm.de","version":82,"lastModified":"1301904887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/113\/4bf1077a017a3c320a000113\/berlin-am-meer-mid.jpg","studio":"alinefilmproduktion","genre":"Comedy","title":"Berlin am Meer","releaseDate":1168387200000,"language":"en","type":"Movie","_key":"25155"} +{"label":"Anna Br\u00fcggemann","version":22,"id":"42930","lastModified":"1301901351000","name":"Anna Br\u00fcggemann","type":"Person","_key":"25156"} +{"label":"Claudius Franz","version":19,"id":"42931","lastModified":"1301902107000","name":"Claudius Franz","type":"Person","_key":"25157"} +{"label":"Emma Daubas","version":19,"id":"42932","lastModified":"1301902107000","name":"Emma Daubas","type":"Person","_key":"25158"} +{"label":"Richard Kropf","version":20,"id":"43195","lastModified":"1301902120000","name":"Richard Kropf","type":"Person","_key":"25159"} +{"label":"Aaron Hildebrand","version":21,"id":"43196","lastModified":"1301902019000","name":"Aaron Hildebrand","type":"Person","_key":"25160"} +{"label":"Kida Khodr Ramadan","version":22,"id":"43197","lastModified":"1301901617000","name":"Kida Khodr Ramadan","type":"Person","_key":"25161"} +{"label":"Georg Veitl","version":19,"id":"43198","lastModified":"1301902107000","name":"Georg Veitl","type":"Person","_key":"25162"} +{"label":"Beat Marti","version":20,"id":"43199","lastModified":"1301902107000","name":"Beat Marti","type":"Person","_key":"25163"} +{"label":"Daniel G\u00e4rtner","version":19,"id":"43200","lastModified":"1301902107000","name":"Daniel G\u00e4rtner","type":"Person","_key":"25164"} +{"label":"Alina Bauer","version":19,"id":"43201","lastModified":"1301902107000","name":"Alina Bauer","type":"Person","_key":"25165"} +{"label":"Antje Traue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b6\/4bd2e5ac017a3c63eb0002b6\/antje-traue-profile.jpg","version":24,"id":"43202","lastModified":"1301901233000","name":"Antje Traue","type":"Person","_key":"25166"} +{"label":"Marcus Schinkel","version":19,"id":"43204","lastModified":"1301902107000","name":"Marcus Schinkel","type":"Person","_key":"25167"} +{"label":"Sarah Baumann","version":19,"id":"43206","lastModified":"1301902107000","name":"Sarah Baumann","type":"Person","_key":"25168"} +{"label":"Julia Giesbert","version":19,"id":"43209","lastModified":"1301902107000","name":"Julia Giesbert","type":"Person","_key":"25169"} +{"label":"Ingrid Arthur","version":19,"id":"43210","lastModified":"1301901735000","name":"Ingrid Arthur","type":"Person","_key":"25170"} +{"label":"Wolfgang Eissler","version":19,"id":"43211","lastModified":"1301901476000","name":"Wolfgang Eissler","type":"Person","_key":"25171"} +{"label":"Fred Claus","description":"Fred Claus (Vince Vaughn) and Santa Claus (Paul Giamatti) have been estranged brothers for many years. Now Fred must reconcile his differences with his brother whom he believes over shadows him. When an efficiency expert (Kevin Spacey) asseses the workings at the North Pole and threatens to shut Santa down, Fred must help his brother to save Christmas.","id":"5375","runtime":116,"imdbId":"tt0486583","trailer":"http:\/\/www.youtube.com\/watch?v=337","homepage":"http:\/\/fredclaus.warnerbros.com\/","version":490,"lastModified":"1301902521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/124\/4bc91c88017a3c57fe00b124\/fred-claus-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Fred Claus","releaseDate":1194048000000,"language":"en","type":"Movie","_key":"25172"} +{"label":"David Dobkin","version":37,"id":"42994","lastModified":"1301901413000","name":"David Dobkin","type":"Person","_key":"25173"} +{"label":"Trevor Peacock","version":19,"id":"42996","lastModified":"1301901617000","name":"Trevor Peacock","type":"Person","_key":"25174"} +{"label":"Elizabeth Berrington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37f\/4cf1ccb85e73d61e3d00037f\/elizabeth-berrington-profile.jpg","version":29,"id":"42998","lastModified":"1301901503000","name":"Elizabeth Berrington","type":"Person","_key":"25175"} +{"label":"Happily N'Ever after","description":"An alliance of evil-doers, led by Frieda, looks to take over Fairy Tale Land. But when Ella realizes her stepmother is out to ruin her storybook existence, she takes a dramatic turn and blossoms into the leader of the resistance effort.","id":"5393","runtime":87,"imdbId":"tt0308353","trailer":"http:\/\/www.youtube.com\/watch?v=340","homepage":"http:\/\/www.happilyneverafterthefilm.com\/","version":324,"lastModified":"1301902629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/137\/4bc91c89017a3c57fe00b137\/happily-n-ever-after-mid.jpg","studio":"Vanguard Films","genre":"Animation","title":"Happily N'Ever after","releaseDate":1167955200000,"language":"en","type":"Movie","_key":"25176"} +{"label":"Yvette Kaplan","version":30,"id":"31093","lastModified":"1301901744000","name":"Yvette Kaplan","type":"Person","_key":"25177"} +{"label":"Paul Bolger","version":20,"id":"133293","lastModified":"1301902544000","name":"Paul Bolger","type":"Person","_key":"25178"} +{"label":"Lisa Kaplan","version":23,"id":"43121","lastModified":"1301901511000","name":"Lisa Kaplan","type":"Person","_key":"25179"} +{"label":"Michael McShane","version":25,"id":"8316","lastModified":"1301901414000","name":"Michael McShane","type":"Person","_key":"25180"} +{"label":"Rob Paulsen","version":79,"id":"43125","lastModified":"1301901104000","name":"Rob Paulsen","type":"Person","_key":"25181"} +{"label":"Tom Kenny","version":47,"id":"78798","lastModified":"1301901529000","name":"Tom Kenny","type":"Person","_key":"25182"} +{"label":"Tress MacNeille","version":57,"id":"34983","lastModified":"1301901306000","name":"Tress MacNeille","type":"Person","_key":"25183"} +{"label":"Phil Proctor","version":35,"id":"61969","lastModified":"1301901471000","name":"Phil Proctor","type":"Person","_key":"25184"} +{"label":"Kath Soucie","version":47,"id":"60739","lastModified":"1301901183000","name":"Kath Soucie","type":"Person","_key":"25185"} +{"label":"Omagh","description":"The movie starts at the 1998 bomb attack by the Real IRA at Omagh, Northern Ireland. The attack killed 31 people. Michael Gallagher one of the relatives of the victims starts an examination to bring the people responsible to court.","id":"5413","runtime":102,"imdbId":"tt0408056","trailer":"http:\/\/www.youtube.com\/watch?v=348","version":203,"lastModified":"1301905283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/710\/4d5566895e73d617c7006710\/omagh-mid.jpg","studio":"Channel Four Films","genre":"Drama","title":"Omagh","releaseDate":1085184000000,"language":"en","type":"Movie","_key":"25186"} +{"label":"Pete Travis","version":26,"id":"43141","lastModified":"1301901343000","name":"Pete Travis","type":"Person","_key":"25187"} +{"label":"Gerard McSorley","version":35,"id":"43131","lastModified":"1301901560000","name":"Gerard McSorley","type":"Person","_key":"25188"} +{"label":"Michele Forbes","version":20,"id":"43132","lastModified":"1301901816000","name":"Michele Forbes","type":"Person","_key":"25189"} +{"label":"Peter Ballance","version":20,"id":"43133","lastModified":"1301902185000","name":"Peter Ballance","type":"Person","_key":"25190"} +{"label":"Pauline Hutton","version":19,"id":"43134","lastModified":"1301901735000","name":"Pauline Hutton","type":"Person","_key":"25191"} +{"label":"Fiona Glascott","version":20,"id":"43135","lastModified":"1301902140000","name":"Fiona Glascott","type":"Person","_key":"25192"} +{"label":"Kathy Kiera Clarke","version":19,"id":"43136","lastModified":"1301901735000","name":"Kathy Kiera Clarke","type":"Person","_key":"25193"} +{"label":"Claire Connor","version":19,"id":"43137","lastModified":"1301901735000","name":"Claire Connor","type":"Person","_key":"25194"} +{"label":"Ian McElhinney","version":26,"id":"43138","lastModified":"1301901449000","name":"Ian McElhinney","type":"Person","_key":"25195"} +{"label":"Sara Gilbert","version":23,"id":"3282","lastModified":"1301901308000","name":"Sara Gilbert","type":"Person","_key":"25196"} +{"label":"Alan Devlin","version":21,"id":"43139","lastModified":"1301901816000","name":"Alan Devlin","type":"Person","_key":"25197"} +{"label":"Tara Lynne O'Neill","version":19,"id":"43140","lastModified":"1301901735000","name":"Tara Lynne O'Neill","type":"Person","_key":"25198"} +{"label":"Absurd","description":"No overview found.","id":"5421","runtime":96,"imdbId":"tt0084028","version":126,"lastModified":"1301905006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/581\/4d1ada6b5e73d6083400b581\/rosso-sangue-mid.jpg","studio":"Filmirage S.r.l.","genre":"Horror","title":"Absurd","releaseDate":371692800000,"language":"en","type":"Movie","_key":"25199"} +{"label":"Katya Berger","version":24,"id":"43192","lastModified":"1301901352000","name":"Katya Berger","type":"Person","_key":"25200"} +{"label":"Annie Belle","version":31,"id":"101576","lastModified":"1301902165000","name":"Annie Belle","type":"Person","_key":"25201"} +{"label":"Erotic Nights of the Living Dead","description":"A sailor takes an American businessman and his girlfriend to an island where the businessman wants to build a resort. Soon a weird voodoo couple show up and warn them of bad things that are going to happen. It doesn't take long for the zombies to show up and start chowing down on human flesh. The main characters do manage to fit in quite a bit of sex though.","id":"5422","runtime":112,"imdbId":"tt0079642","version":57,"lastModified":"1301908598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/141\/4bc91c8a017a3c57fe00b141\/le-notti-erotiche-dei-morti-viventi-mid.jpg","studio":"Stefano Film","genre":"Horror","title":"Erotic Nights of the Living Dead","releaseDate":343353600000,"language":"en","type":"Movie","_key":"25202"} +{"label":"Mark Shannon","version":28,"id":"43193","lastModified":"1301902158000","name":"Mark Shannon","type":"Person","_key":"25203"} +{"label":"Antropophagus","description":"A group of tourists become stranded on an uninhabited island where they are stalked by an insane, violent, and grotesque killer that slaughtered the town's former residents.","id":"5424","runtime":90,"imdbId":"tt0082479","trailer":"http:\/\/www.youtube.com\/watch?v=VzBLIS1rRTI","version":67,"lastModified":"1301908339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4c13f6817b9aa10456000076\/antropophagus-mid.jpg","studio":"Filmirage S.r.l.","genre":"Horror","title":"Antropophagus","releaseDate":334627200000,"language":"en","type":"Movie","_key":"25204"} +{"label":"Tisa Farrow","version":23,"id":"43203","lastModified":"1301901413000","name":"Tisa Farrow","type":"Person","_key":"25205"} +{"label":"Saverio Vallone","version":21,"id":"43205","lastModified":"1301902172000","name":"Saverio Vallone","type":"Person","_key":"25206"} +{"label":"Mark Bodin","version":22,"id":"43207","lastModified":"1301901773000","name":"Mark Bodin","type":"Person","_key":"25207"} +{"label":"Bob Larsen","version":20,"id":"43208","lastModified":"1301901773000","name":"Bob Larsen","type":"Person","_key":"25208"} +{"label":"Beyond the Darkness","description":"A young rich orphan loses his fianc\u00e9e to voodoo doll mischief on the part of his housekeeper who is jealous of his attentions. He digs his girlfriend up, cleans her out, stuffs her, and puts her in bed at the mansion. Following this, he tries out and disposes of a series of young maidens, trying to find the right replacement for her, and the disapproving housekeeper helps him with the disposals.","id":"5425","runtime":94,"imdbId":"tt0078916","version":145,"lastModified":"1301904240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c3\/4c287fd15e73d61d0a0002c3\/buio-omega-mid.jpg","genre":"Horror","title":"Beyond the Darkness","releaseDate":311472000000,"language":"en","tagline":"A fate worse than death!","type":"Movie","_key":"25209"} +{"label":"Kieran Canter","version":21,"id":"43233","lastModified":"1301902176000","name":"Kieran Canter","type":"Person","_key":"25210"} +{"label":"Sam Modesto","version":21,"id":"43234","lastModified":"1301902201000","name":"Sam Modesto","type":"Person","_key":"25211"} +{"label":"Franca Stoppi","version":24,"id":"43235","lastModified":"1301901579000","name":"Franca Stoppi","type":"Person","_key":"25212"} +{"label":"Lucia D'Elia","version":21,"id":"43236","lastModified":"1301902000000","name":"Lucia D'Elia","type":"Person","_key":"25213"} +{"label":"Death Smiles on a Murderer","description":"A man discovers an ancient Incan formula for raising the dead, and uses it for a series of revenge murders.","id":"5434","runtime":97,"imdbId":"tt0068972","version":45,"lastModified":"1301906749000","studio":"Dany Film","genre":"Horror","title":"Death Smiles on a Murderer","releaseDate":95558400000,"language":"en","type":"Movie","_key":"25214"} +{"label":"Ewa Aulin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4cab5cef7b9aa114f4000019\/ewa-aulin-profile.jpg","version":26,"id":"43237","lastModified":"1301902055000","name":"Ewa Aulin","type":"Person","_key":"25215"} +{"label":"Angela Bo","version":21,"id":"43238","lastModified":"1301901567000","name":"Angela Bo","type":"Person","_key":"25216"} +{"label":"Sergio Doria","version":21,"id":"43239","lastModified":"1301902158000","name":"Sergio Doria","type":"Person","_key":"25217"} +{"label":"Luciano Rossi","version":23,"id":"43240","lastModified":"1301901825000","name":"Luciano Rossi","type":"Person","_key":"25218"} +{"label":"Attilio Dottesio","version":22,"id":"43241","lastModified":"1301902158000","name":"Attilio Dottesio","type":"Person","_key":"25219"} +{"label":"Marco Mariani","version":21,"id":"43242","lastModified":"1301902158000","name":"Marco Mariani","type":"Person","_key":"25220"} +{"label":"Va a ser que nadie es perfecto","description":"No overview found.","id":"5442","runtime":105,"imdbId":"tt0456698","homepage":"http:\/\/www.vaaserquenadieesperfecto.com\/","version":52,"lastModified":"1301905339000","studio":"Mediapro","genre":"Comedy","title":"Va a ser que nadie es perfecto","releaseDate":1160179200000,"language":"en","type":"Movie","_key":"25221"} +{"label":"Joaqu\u00edn Oristrell","version":23,"id":"43317","lastModified":"1301901567000","name":"Joaqu\u00edn Oristrell","type":"Person","_key":"25222"} +{"label":"Fernando Tejero","version":25,"id":"43321","lastModified":"1301901657000","name":"Fernando Tejero","type":"Person","_key":"25223"} +{"label":"Santi Mill\u00e1n","version":25,"id":"43322","lastModified":"1301901497000","name":"Santi Mill\u00e1n","type":"Person","_key":"25224"} +{"label":"Jos\u00e9 Luis Garc\u00eda P\u00e9rez","version":22,"id":"43323","lastModified":"1301901447000","name":"Jos\u00e9 Luis Garc\u00eda P\u00e9rez","type":"Person","_key":"25225"} +{"label":"Nacho Vidal","version":20,"id":"43051","lastModified":"1301901999000","name":"Nacho Vidal","type":"Person","_key":"25226"} +{"label":"Merc\u00e8 Mart\u00ednez","version":20,"id":"43324","lastModified":"1301902185000","name":"Merc\u00e8 Mart\u00ednez","type":"Person","_key":"25227"} +{"label":"Albert Espinosa","version":20,"id":"43325","lastModified":"1301902158000","name":"Albert Espinosa","type":"Person","_key":"25228"} +{"label":"Teresa Hurtado de Ory","version":18,"id":"43326","lastModified":"1301902167000","name":"Teresa Hurtado de Ory","type":"Person","_key":"25229"} +{"label":"Juanma Falc\u00f3n","version":20,"id":"43327","lastModified":"1301902185000","name":"Juanma Falc\u00f3n","type":"Person","_key":"25230"} +{"label":"Carmen Balagu\u00e9","version":20,"id":"43328","lastModified":"1301901816000","name":"Carmen Balagu\u00e9","type":"Person","_key":"25231"} +{"label":"Jordi Bosch","version":23,"id":"43329","lastModified":"1301902059000","name":"Jordi Bosch","type":"Person","_key":"25232"} +{"label":"Amor idiota","description":"No overview found.","id":"5443","runtime":104,"imdbId":"tt0421603","homepage":"http:\/\/www.mangafilms.es\/amoridiota\/","version":93,"lastModified":"1301906527000","studio":"Manga Film","genre":"Comedy","title":"Amor idiota","releaseDate":1108080000000,"language":"en","type":"Movie","_key":"25233"} +{"label":"Ventura Pons","version":25,"id":"43330","lastModified":"1301901678000","name":"Ventura Pons","type":"Person","_key":"25234"} +{"label":"Merc\u00e8 Pons","version":20,"id":"43333","lastModified":"1301901999000","name":"Merc\u00e8 Pons","type":"Person","_key":"25235"} +{"label":"Marc Cartes","version":20,"id":"43334","lastModified":"1301901999000","name":"Marc Cartes","type":"Person","_key":"25236"} +{"label":"Jordi Dauder","version":22,"id":"43335","lastModified":"1301902008000","name":"Jordi Dauder","type":"Person","_key":"25237"} +{"label":"Andrea Fantoni","version":20,"id":"43336","lastModified":"1301902158000","name":"Andrea Fantoni","type":"Person","_key":"25238"} +{"label":"Cayetana Guill\u00e9n Cuervo","version":21,"id":"43337","lastModified":"1301902158000","name":"Cayetana Guill\u00e9n Cuervo","type":"Person","_key":"25239"} +{"label":"Pere Tom\u00e0s","version":20,"id":"43338","lastModified":"1301902199000","name":"Pere Tom\u00e0s","type":"Person","_key":"25240"} +{"label":"H\u00e9ctor Mas","version":20,"id":"43339","lastModified":"1301902158000","name":"H\u00e9ctor Mas","type":"Person","_key":"25241"} +{"label":"Erlk\u00f6nig","description":"No overview found.","id":"5445","runtime":90,"imdbId":"tt1083454","version":45,"lastModified":"1301903267000","studio":"Colonia Media","genre":"Crime","title":"Erlk\u00f6nig","releaseDate":1195430400000,"language":"en","type":"Movie","_key":"25242"} +{"label":"Urs Egger","version":25,"id":"43347","lastModified":"1301901447000","name":"Urs Egger","type":"Person","_key":"25243"} +{"label":"Silke Bodenbender","version":33,"id":"43348","lastModified":"1301901352000","name":"Silke Bodenbender","type":"Person","_key":"25244"} +{"label":"Ruth Reinecke","version":21,"id":"43349","lastModified":"1301902204000","name":"Ruth Reinecke","type":"Person","_key":"25245"} +{"label":"Michael Brandner","version":24,"id":"38486","lastModified":"1301902006000","name":"Michael Brandner","type":"Person","_key":"25246"} +{"label":"Hans-J\u00f6rg Assmann","version":32,"id":"43350","lastModified":"1301943049000","name":"Hans-J\u00f6rg Assmann","type":"Person","_key":"25247"} +{"label":"Maxim Kovalevski","version":16,"id":"43456","lastModified":"1301902194000","name":"Maxim Kovalevski","type":"Person","_key":"25248"} +{"label":"Red Shoes Diaries","description":"No overview found.","id":"5455","title":"Red Shoes Diaries","language":"en","lastModified":"1301906356000","version":264,"type":"Movie","_key":"25249"} +{"label":"Cruel Intentions 2","description":"This takes place several years before Cruel Intentions, back to when Kathryn first meets Sebastian, their sexual attraction to each other and their enjoyment in destroying the lives of their peers.","id":"5458","runtime":87,"imdbId":"tt0196267","version":177,"lastModified":"1301902369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14a\/4bc91c8c017a3c57fe00b14a\/cruel-intentions-2-mid.jpg","studio":"Columbia TriStar","genre":"Comedy","title":"Cruel Intentions 2","releaseDate":984441600000,"language":"en","type":"Movie","_key":"25250"} +{"label":"Robin Dunne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ec\/4d9508895e73d622480024ec\/robin-dunne-profile.jpg","version":36,"id":"43426","lastModified":"1302011754000","name":"Robin Dunne","type":"Person","_key":"25251"} +{"label":"Sarah Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e89\/4d442d4a5e73d65704001e89\/sarah-thompson-profile.jpg","biography":"Sarah Thompson Kane (born October 25, 1979; Los Angeles, California) is an American actress. She is most widely known for the hit comedy Cruel Intentions 2 with Robin Dunne and Amy Adams and Keri Lynn Pratt. Sarah has enjoyed much television work: she joined the cast of 7th Heaven in its tenth season as \"Rose\", Simon's fiancee; she was well known for her role as Eve in Angel on The WB, during that show's fifth season; and she was cast as a character on ABC Family's Wildfire. She has also appeare","version":36,"id":"43427","lastModified":"1301901403000","name":"Sarah Thompson","type":"Person","_key":"25252"} +{"label":"Barry Flatman","version":28,"id":"43429","lastModified":"1301901582000","name":"Barry Flatman","type":"Person","_key":"25253"} +{"label":"Barclay Hope","version":25,"id":"43431","lastModified":"1301901582000","name":"Barclay Hope","type":"Person","_key":"25254"} +{"label":"Tane McClure","version":36,"id":"43432","lastModified":"1301901288000","name":"Tane McClure","type":"Person","_key":"25255"} +{"label":"Teresa Hill","version":24,"id":"43433","lastModified":"1301901657000","name":"Teresa Hill","type":"Person","_key":"25256"} +{"label":"Keri Lynn Pratt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4cdc66a07b9aa137ff0000d0\/keri-lynn-pratt-profile.jpg","version":33,"id":"77803","lastModified":"1301901426000","name":"Keri Lynn Pratt","type":"Person","_key":"25257"} +{"label":"Folgesch\u00e4den","description":"No overview found.","id":"5459","runtime":88,"imdbId":"tt0431069","version":52,"lastModified":"1301908598000","studio":"Maran Film","genre":"Drama","title":"Folgesch\u00e4den","releaseDate":1101254400000,"language":"en","type":"Movie","_key":"25258"} +{"label":"Samir Nasr","version":20,"id":"43434","lastModified":"1301902186000","name":"Samir Nasr","type":"Person","_key":"25259"} +{"label":"Mehdi Nebbou","version":39,"id":"43436","lastModified":"1301901137000","name":"Mehdi Nebbou","type":"Person","_key":"25260"} +{"label":"Jule Gartzke","version":21,"id":"43437","lastModified":"1301902199000","name":"Jule Gartzke","type":"Person","_key":"25261"} +{"label":"Mehdi Moinzadeh","version":24,"id":"43438","lastModified":"1301901847000","name":"Mehdi Moinzadeh","type":"Person","_key":"25262"} +{"label":"Solveig M\u00fcller","version":21,"id":"27257","lastModified":"1301902024000","name":"Solveig M\u00fcller","type":"Person","_key":"25263"} +{"label":"Cruel Intentions 3","description":"Two guys at a college prep school make wagers on seducing naive young girls, and then meet their match when they agree to see which one can seduce the most popular and devious girl who has her own agenda to everything.","id":"5460","runtime":85,"imdbId":"tt0391891","version":228,"lastModified":"1301952205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/775\/4d69582a7b9aa13631001775\/cruel-intentions-3-mid.jpg","studio":"Original Film","genre":"Drama","title":"Cruel Intentions 3","releaseDate":1085443200000,"language":"en","type":"Movie","_key":"25264"} +{"label":"Scott Ziehl","version":28,"id":"43439","lastModified":"1301901567000","name":"Scott Ziehl","type":"Person","_key":"25265"} +{"label":"Kerr Smith","version":38,"id":"43442","lastModified":"1301901243000","name":"Kerr Smith","type":"Person","_key":"25266"} +{"label":"Kristina Anapau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ab\/4ce5ae2d7b9aa168b00007ab\/kristina-anapau-profile.jpg","version":50,"id":"43443","lastModified":"1301901159000","name":"Kristina Anapau","type":"Person","_key":"25267"} +{"label":"Nathan Wetherington","version":23,"id":"43444","lastModified":"1301901511000","name":"Nathan Wetherington","type":"Person","_key":"25268"} +{"label":"Melissa Yvonne Lewis","version":23,"id":"43445","lastModified":"1301901524000","name":"Melissa Yvonne Lewis","type":"Person","_key":"25269"} +{"label":"Natalie Ramsey","version":25,"id":"43446","lastModified":"1301901657000","name":"Natalie Ramsey","type":"Person","_key":"25270"} +{"label":"Tom Parker","version":23,"id":"43447","lastModified":"1301901657000","name":"Tom Parker","type":"Person","_key":"25271"} +{"label":"Michael Pemberton","version":23,"id":"43448","lastModified":"1301901657000","name":"Michael Pemberton","type":"Person","_key":"25272"} +{"label":"Tara Carroll","version":23,"id":"43449","lastModified":"1301901657000","name":"Tara Carroll","type":"Person","_key":"25273"} +{"label":"Der Tote am Strand","description":"No overview found.","id":"5461","runtime":90,"imdbId":"tt0901005","version":42,"lastModified":"1301904465000","studio":"Relevant Film GmbH","genre":"Crime","title":"Der Tote am Strand","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"25274"} +{"label":"Martin Enlen","version":24,"id":"43440","lastModified":"1301901697000","name":"Martin Enlen","type":"Person","_key":"25275"} +{"label":"Hans Peter Hallwachs","version":24,"id":"26233","lastModified":"1301901999000","name":"Hans Peter Hallwachs","type":"Person","_key":"25276"} +{"label":"Silberhochzeit","description":"No overview found.","id":"5462","runtime":90,"imdbId":"tt0476019","version":44,"lastModified":"1301907420000","studio":"Bayerischer Rundfunk","genre":"Drama","title":"Silberhochzeit","releaseDate":1137110400000,"language":"en","type":"Movie","_key":"25277"} +{"label":"Matti Geschonneck","version":23,"id":"37538","lastModified":"1301901657000","name":"Matti Geschonneck","type":"Person","_key":"25278"} +{"label":"Iris Berben","version":36,"id":"43451","lastModified":"1301901497000","name":"Iris Berben","type":"Person","_key":"25279"} +{"label":"Gisela Schneeberger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/660\/4d5039277b9aa13ab800c660\/gisela-schneeberger-profile.jpg","version":30,"id":"39746","lastModified":"1301901331000","name":"Gisela Schneeberger","type":"Person","_key":"25280"} +{"label":"Oliver N\u00e4gele","version":24,"id":"43452","lastModified":"1301901999000","name":"Oliver N\u00e4gele","type":"Person","_key":"25281"} +{"label":"Papa und Mama","description":"No overview found.","id":"5463","runtime":180,"imdbId":"tt0445134","version":40,"lastModified":"1301904269000","studio":"ZDF","genre":"Comedy","title":"Papa und Mama","releaseDate":1136160000000,"language":"en","type":"Movie","_key":"25282"} +{"label":"Dieter Wedel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e7\/4d0c7f545e73d637100005e7\/dieter-wedel-profile.jpg","version":39,"id":"26802","lastModified":"1301901600000","name":"Dieter Wedel","type":"Person","_key":"25283"} +{"label":"Das Inferno - Flammen \u00fcber Berlin","description":"A fire breaks out in the Berlin Fernsehturm (Radio Tower) trapping several people in the restaurant and observation deck at the top. A team of firefighters, including a disgraced former member, rush to the rescue as chaos erupts among the trapped.","id":"5464","runtime":95,"imdbId":"tt0800028","version":54,"lastModified":"1301905714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41d\/4cd700585e73d676ce00041d\/das-inferno-flammen-uber-berlin-mid.jpg","studio":"Pro7","genre":"Action","title":"Das Inferno - Flammen \u00fcber Berlin","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"25284"} +{"label":"Stephan Luca","version":22,"id":"43453","lastModified":"1301901986000","name":"Stephan Luca","type":"Person","_key":"25285"} +{"label":"Thomas Darchinger","version":21,"id":"43455","lastModified":"1301902185000","name":"Thomas Darchinger","type":"Person","_key":"25286"} +{"label":"Mia Florentine Weiss","version":20,"id":"53426","lastModified":"1301902389000","name":"Mia Florentine Weiss","type":"Person","_key":"25287"} +{"label":"Das Millionenspiel","description":"No overview found.","id":"5465","runtime":96,"imdbId":"tt0066079","version":55,"lastModified":"1301906082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/174\/4bc91c8f017a3c57fe00b174\/das-millionenspiel-mid.jpg","studio":"WDR","genre":"Action","title":"Das Millionenspiel","releaseDate":25056000000,"language":"en","type":"Movie","_key":"25288"} +{"label":"Tom Toelle","version":21,"id":"26328","lastModified":"1301902107000","name":"Tom Toelle","type":"Person","_key":"25289"} +{"label":"J\u00f6rg Pleva","version":21,"id":"43490","lastModified":"1301901788000","name":"J\u00f6rg Pleva","type":"Person","_key":"25290"} +{"label":"Dieter Hallervorden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31f\/4ca4d3847b9aa16ed800031f\/dieter-hallervorden-profile.jpg","version":27,"birthday":"-1083200400000","id":"26532","birthplace":"Dessau, Germany","lastModified":"1301901351000","name":"Dieter Hallervorden","type":"Person","_key":"25291"} +{"label":"Theo Fink","version":19,"id":"43491","lastModified":"1301901894000","name":"Theo Fink","type":"Person","_key":"25292"} +{"label":"Josef Fr\u00f6hlich","version":19,"id":"43492","lastModified":"1301901894000","name":"Josef Fr\u00f6hlich","type":"Person","_key":"25293"} +{"label":"Annemarie Schradiek","version":19,"id":"43493","lastModified":"1301901894000","name":"Annemarie Schradiek","type":"Person","_key":"25294"} +{"label":"Elisabeth Wiedemann","version":21,"id":"43494","lastModified":"1301901496000","name":"Elisabeth Wiedemann","type":"Person","_key":"25295"} +{"label":"Andrea Grosske","version":19,"id":"36507","lastModified":"1301901735000","name":"Andrea Grosske","type":"Person","_key":"25296"} +{"label":"Brigitte Kortmann","version":19,"id":"43495","lastModified":"1301901894000","name":"Brigitte Kortmann","type":"Person","_key":"25297"} +{"label":"Suzanne Roquette","version":20,"id":"43496","lastModified":"1301902107000","name":"Suzanne Roquette","type":"Person","_key":"25298"} +{"label":"Joachim Richert","version":18,"id":"26430","lastModified":"1301902017000","name":"Joachim Richert","type":"Person","_key":"25299"} +{"label":"Arnim Basche","version":19,"id":"43497","lastModified":"1301901894000","name":"Arnim Basche","type":"Person","_key":"25300"} +{"label":"Heribert Fa\u00dfbender","version":19,"id":"43498","lastModified":"1301901894000","name":"Heribert Fa\u00dfbender","type":"Person","_key":"25301"} +{"label":"Ralf Gregan","version":25,"id":"43499","lastModified":"1301902147000","name":"Ralf Gregan","type":"Person","_key":"25302"} +{"label":"Gisela Marx","version":19,"id":"28341","lastModified":"1301901735000","name":"Gisela Marx","type":"Person","_key":"25303"} +{"label":"Love Exchange","description":"No overview found.","id":"5469","runtime":90,"imdbId":"tt0805566","version":90,"lastModified":"1301907102000","studio":"Twilight Movies","genre":"Drama","title":"Love Exchange","releaseDate":978307200000,"language":"en","type":"Movie","_key":"25304"} +{"label":"Madison Monroe","version":22,"id":"43500","lastModified":"1301901567000","name":"Madison Monroe","type":"Person","_key":"25305"} +{"label":"Holly Sampson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/796\/4d9b2b2f5e73d647b4000796\/holly-sampson-profile.jpg","version":28,"id":"43504","lastModified":"1302007763000","name":"Holly Sampson","type":"Person","_key":"25306"} +{"label":"Taylor Moore","version":20,"id":"43505","lastModified":"1301901567000","name":"Taylor Moore","type":"Person","_key":"25307"} +{"label":"Monique DeMoan","version":18,"id":"43506","lastModified":"1301901511000","name":"Monique DeMoan","type":"Person","_key":"25308"} +{"label":"Eddie Jay","version":20,"id":"43507","lastModified":"1301901567000","name":"Eddie Jay","type":"Person","_key":"25309"} +{"label":"Anthony Skordi","version":20,"id":"43508","lastModified":"1301901789000","name":"Anthony Skordi","type":"Person","_key":"25310"} +{"label":"David Usher","version":20,"id":"43510","lastModified":"1301902158000","name":"David Usher","type":"Person","_key":"25311"} +{"label":"Richard Neil","version":16,"id":"43509","lastModified":"1301901789000","name":"Richard Neil","type":"Person","_key":"25312"} +{"label":"Shannan Leigh","version":18,"id":"43511","lastModified":"1301902203000","name":"Shannan Leigh","type":"Person","_key":"25313"} +{"label":"Stella Porter","version":21,"id":"43512","lastModified":"1301902158000","name":"Stella Porter","type":"Person","_key":"25314"} +{"label":"Beowulf","description":" Beowulf is a wanderer who learns about a man-eating creature called Grendel which comes in the night to devour warriors trapped at the Outpost. The Outpost is ruled by Hrothgar. He has a daughter, whose husband may have been murdered by the Outpost's master of arms","id":"5470","runtime":95,"imdbId":"tt0120604","trailer":"http:\/\/www.youtube.com\/watch?v=Iaj-QSSwhac","version":105,"lastModified":"1301905550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/179\/4bc91c90017a3c57fe00b179\/beowulf-mid.jpg","studio":"Capitole Films","genre":"Action","title":"Beowulf","releaseDate":922924800000,"language":"en","type":"Movie","_key":"25315"} +{"label":"Graham Baker","version":25,"id":"43513","lastModified":"1301901688000","name":"Graham Baker","type":"Person","_key":"25316"} +{"label":"Vincent Hammond","version":20,"id":"43523","lastModified":"1301901894000","name":"Vincent Hammond","type":"Person","_key":"25317"} +{"label":"Charles Robinson","version":25,"id":"43524","lastModified":"1301901894000","name":"Charles Robinson","type":"Person","_key":"25318"} +{"label":"Brent Jefferson Lowe","version":21,"id":"43525","lastModified":"1301902185000","name":"Brent Jefferson Lowe","type":"Person","_key":"25319"} +{"label":"Roger Sloman","version":26,"id":"42593","lastModified":"1301902026000","name":"Roger Sloman","type":"Person","_key":"25320"} +{"label":"Beowulf & Grendel","description":"The blood-soaked tale of a Norse warrior's battle against the great and murderous troll, Grendel. Heads will roll. Out of allegiance to the King Hrothgar, the much respected Lord of the Danes, Beowulf leads a troop of warriors across the sea to rid a village of the marauding monster.","id":"5471","runtime":103,"imdbId":"tt0402057","homepage":"http:\/\/www.beowulfandgrendel.com\/","version":306,"lastModified":"1302059324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b6\/4d9b0bf25e73d647610007b6\/beowulf-grendel-mid.jpg","studio":"Movision","genre":"Action","title":"Beowulf & Grendel","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"25321"} +{"label":"Sturla Gunnarsson","version":26,"id":"43526","lastModified":"1301902158000","name":"Sturla Gunnarsson","type":"Person","_key":"25322"} +{"label":"Hringur Ingvarsson","version":22,"id":"43531","lastModified":"1301902018000","name":"Hringur Ingvarsson","type":"Person","_key":"25323"} +{"label":"Gunnar Eyj\u00f3lfsson","version":21,"id":"43533","lastModified":"1301901668000","name":"Gunnar Eyj\u00f3lfsson","type":"Person","_key":"25324"} +{"label":"Ingvar Eggert Sigur\u00f0sson","version":41,"id":"55584","lastModified":"1301901809000","name":"Ingvar Eggert Sigur\u00f0sson","type":"Person","_key":"25325"} +{"label":"Animated Epics: Beowulf","description":"No overview found.","id":"5472","runtime":27,"imdbId":"tt0270854","version":50,"lastModified":"1301905714000","studio":"Christmas Films","genre":"Animation","title":"Animated Epics: Beowulf","releaseDate":883612800000,"language":"en","type":"Movie","_key":"25326"} +{"label":"Yuri Kulakov","version":23,"id":"43535","lastModified":"1301901363000","name":"Yuri Kulakov","type":"Person","_key":"25327"} +{"label":"Anna Calder-Marshall","version":20,"id":"43543","lastModified":"1301901458000","name":"Anna Calder-Marshall","type":"Person","_key":"25328"} +{"label":"James Greene","version":18,"id":"43544","lastModified":"1301901804000","name":"James Greene","type":"Person","_key":"25329"} +{"label":"De Dominee","description":"Different solution new movie ;-) The Preacher tells the story about the rise and fall off a dutch mafiaboss. The movie is based on the story of Klaas Bruinsma.","id":"5473","runtime":110,"imdbId":"tt0370477","version":95,"lastModified":"1301906045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19d\/4bc91c95017a3c57fe00b19d\/de-dominee-mid.jpg","studio":"Samsa Film","genre":"Crime","title":"De Dominee","releaseDate":1094083200000,"language":"en","type":"Movie","_key":"25330"} +{"label":"Gerrard Verhage","version":21,"id":"43630","lastModified":"1301901735000","name":"Gerrard Verhage","type":"Person","_key":"25331"} +{"label":"Frank Lammers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/775\/4d8f1ffa5e73d65f0e001775\/frank-lammers-profile.jpg","version":29,"id":"43643","lastModified":"1301901422000","name":"Frank Lammers","type":"Person","_key":"25332"} +{"label":"Marcel Musters","version":25,"id":"43644","lastModified":"1301901617000","name":"Marcel Musters","type":"Person","_key":"25333"} +{"label":"Mike Reus","version":19,"id":"43645","lastModified":"1301902107000","name":"Mike Reus","type":"Person","_key":"25334"} +{"label":"Tygo Gernandt","version":23,"id":"43646","lastModified":"1301901250000","name":"Tygo Gernandt","type":"Person","_key":"25335"} +{"label":"Keith Davis","version":20,"id":"43647","lastModified":"1301902133000","name":"Keith Davis","type":"Person","_key":"25336"} +{"label":"Cas Jansen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/195\/4c04d31e017a3c33d9000195\/cas-jansen-profile.jpg","version":23,"id":"43648","lastModified":"1301901283000","name":"Cas Jansen","type":"Person","_key":"25337"} +{"label":"Christian Kmiotek","version":20,"id":"43649","lastModified":"1301902047000","name":"Christian Kmiotek","type":"Person","_key":"25338"} +{"label":"Pleuni Touw","version":20,"id":"43650","lastModified":"1301901947000","name":"Pleuni Touw","type":"Person","_key":"25339"} +{"label":"Rick Nicolet","version":19,"id":"43651","lastModified":"1301902107000","name":"Rick Nicolet","type":"Person","_key":"25340"} +{"label":"Chantal Janzen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4c04d4fc017a3c35190001ae\/chantal-janzen-profile.jpg","version":19,"id":"115690","lastModified":"1301901774000","name":"Chantal Janzen","type":"Person","_key":"25341"} +{"label":"Not Mozart: Letters, Riddles and Writs","description":"No overview found.","id":"5479","runtime":30,"imdbId":"tt0102290","version":55,"lastModified":"1301907420000","studio":"Artifax","genre":"Musical","title":"Not Mozart: Letters, Riddles and Writs","releaseDate":662688000000,"language":"en","type":"Movie","_key":"25342"} +{"label":"David Thomas","version":23,"id":"44929","lastModified":"1301901963000","name":"David Thomas","type":"Person","_key":"25343"} +{"label":"Tony Rohr","version":20,"id":"44930","lastModified":"1301902158000","name":"Tony Rohr","type":"Person","_key":"25344"} +{"label":"Jeremy Newson","version":18,"id":"13479","lastModified":"1301901567000","name":"Jeremy Newson","type":"Person","_key":"25345"} +{"label":"Shock","description":"A couple is terrorized in their new house haunted by the vengeful ghost of the woman's former husband who possesses her young son.","id":"5481","runtime":95,"imdbId":"tt0075651","trailer":"http:\/\/www.youtube.com\/watch?v=2605","version":166,"lastModified":"1302059191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4bc91c95017a3c57fe00b1a2\/shock-mid.jpg","studio":"Laser Cinematografica","genre":"Horror","title":"Shock","releaseDate":240192000000,"language":"en","type":"Movie","_key":"25346"} +{"label":"Daria Nicolodi","version":29,"id":"44959","lastModified":"1301901502000","name":"Daria Nicolodi","type":"Person","_key":"25347"} +{"label":"David Colin Jr.","version":21,"id":"44960","lastModified":"1301901854000","name":"David Colin Jr.","type":"Person","_key":"25348"} +{"label":"Ivan Rassimov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a0\/4bf1c088017a3c32170002a0\/ivan-rassimov-profile.jpg","version":31,"id":"44961","lastModified":"1301901522000","name":"Ivan Rassimov","type":"Person","_key":"25349"} +{"label":"Paul Costello","version":19,"id":"44962","lastModified":"1301902294000","name":"Paul Costello","type":"Person","_key":"25350"} +{"label":"Nicola Salerno","version":19,"id":"44963","lastModified":"1301902294000","name":"Nicola Salerno","type":"Person","_key":"25351"} +{"label":"Rabid Dogs","description":"Following a bungled robbery, three violent criminals take a young woman, a middle-aged man, and a child hostage and force them to drive them outside Rome to help them make a clean getaway.","id":"5482","runtime":96,"imdbId":"tt0071275","version":50,"lastModified":"1301904268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a7\/4bc91c95017a3c57fe00b1a7\/cani-arrabbiati-mid.jpg","studio":"International Media Films","genre":"Drama","title":"Rabid Dogs","releaseDate":126230400000,"language":"en","tagline":"Lock the doors, rollup the windows, and buckle up ... for the ride of your life!","type":"Movie","_key":"25352"} +{"label":"Lea Lander","version":22,"id":"44968","lastModified":"1301902184000","name":"Lea Lander","type":"Person","_key":"25353"} +{"label":"Maria Fabbri","version":21,"id":"44969","lastModified":"1301902184000","name":"Maria Fabbri","type":"Person","_key":"25354"} +{"label":"Lisa and the Devil","description":"No overview found.","id":"5483","runtime":95,"imdbId":"tt0068863","version":130,"lastModified":"1301905813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ac\/4bc91c95017a3c57fe00b1ac\/lisa-e-il-diavolo-mid.jpg","studio":"Leone International","genre":"Horror","title":"Lisa and the Devil","releaseDate":105753600000,"language":"en","type":"Movie","_key":"25355"} +{"label":"Alfredo Leone","version":31,"id":"44965","lastModified":"1301902185000","name":"Alfredo Leone","type":"Person","_key":"25356"} +{"label":"Alessio Orano","version":20,"id":"44972","lastModified":"1301902294000","name":"Alessio Orano","type":"Person","_key":"25357"} +{"label":"Four Times That Night","description":"No overview found.","id":"5484","runtime":83,"imdbId":"tt0069141","version":58,"lastModified":"1301904721000","studio":"Delfino Film","genre":"Comedy","title":"Four Times That Night","releaseDate":72144000000,"language":"en","type":"Movie","_key":"25358"} +{"label":"Daniela Giordano","version":24,"id":"44976","lastModified":"1301902158000","name":"Daniela Giordano","type":"Person","_key":"25359"} +{"label":"Valeria Sabel","version":21,"id":"44977","lastModified":"1301902377000","name":"Valeria Sabel","type":"Person","_key":"25360"} +{"label":"Brigitte Skay","version":20,"id":"44978","lastModified":"1301902377000","name":"Brigitte Skay","type":"Person","_key":"25361"} +{"label":"Baron Blood","description":"A young man, Peter, returns to Austria in search of his heritage. There he visits the castle of an ancestor, a sadistic Baron who was cursed to a violent death by a witch whom the Baron had burned at the stake. Peter reads aloud the incantation that causes Baron Blood to return and continue his murderous tortures.","id":"5485","runtime":98,"imdbId":"tt0069048","version":96,"lastModified":"1301904475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/086\/4c13fef87b9aa10458000086\/gli-orrori-del-castello-di-norimberga-mid.jpg","studio":"Euro America Produzioni Cinematografiche","genre":"Horror","title":"Baron Blood","releaseDate":67824000000,"language":"en","type":"Movie","_key":"25362"} +{"label":"Antonio Cantafora","version":23,"id":"44980","lastModified":"1301901787000","name":"Antonio Cantafora","type":"Person","_key":"25363"} +{"label":"Dieter Tressler","version":21,"id":"44982","lastModified":"1301902382000","name":"Dieter Tressler","type":"Person","_key":"25364"} +{"label":"Twitch of the Death Nerve","description":"No overview found.","id":"5486","runtime":84,"imdbId":"tt0067656","version":142,"lastModified":"1302058926000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b5\/4bc91c98017a3c57fe00b1b5\/reazione-a-catena-mid.jpg","studio":"Nuova Linea Cinematografica","genre":"Horror","title":"Twitch of the Death Nerve","releaseDate":53136000000,"language":"en","type":"Movie","_key":"25365"} +{"label":"Claudio Camaso","version":19,"id":"44987","lastModified":"1301902352000","name":"Claudio Camaso","type":"Person","_key":"25366"} +{"label":"Anna Maria Rosati","version":20,"id":"44988","lastModified":"1301902302000","name":"Anna Maria Rosati","type":"Person","_key":"25367"} +{"label":"I'm a Cyborg, But That's OK","description":"A young woman who believes she\u2019s a cyborg hears voices and harms herself while at work making radios. She\u2019s hospitalized in a mental institution where she eats nothing and talks to inanimate objects. She\u2019s Young-goon, granddaughter of a woman who thought she was a mouse (and whose dentures Young-goon wears) and a mother who\u2019s a butcher without much social grace. Young-goon comes to the attention of Il-sun, a ping-pong playing patient at the institution who makes it his goal to get her to eat. W","id":"5488","runtime":105,"imdbId":"tt0497137","trailer":"http:\/\/www.youtube.com\/watch?v=343","version":122,"lastModified":"1301903164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d4\/4bc91c9b017a3c57fe00b1d4\/saibogujiman-kwenchana-mid.jpg","studio":"Moho Films","genre":"Comedy","title":"I'm a Cyborg, But That's OK","releaseDate":1165449600000,"language":"en","type":"Movie","_key":"25368"} +{"label":"Su-jeong Lim","version":19,"id":"43571","lastModified":"1301901668000","name":"Su-jeong Lim","type":"Person","_key":"25369"} +{"label":"Jung Ji-hoon","version":16,"id":"43572","lastModified":"1301901641000","name":"Jung Ji-hoon","type":"Person","_key":"25370"} +{"label":"Lee Young-nyeo","version":16,"id":"43573","lastModified":"1301901641000","name":"Lee Young-nyeo","type":"Person","_key":"25371"} +{"label":"Sohn Young-soon","version":16,"id":"43574","lastModified":"1301901641000","name":"Sohn Young-soon","type":"Person","_key":"25372"} +{"label":"Choi Hee-jin","version":16,"id":"43575","lastModified":"1301901772000","name":"Choi Hee-jin","type":"Person","_key":"25373"} +{"label":"Yoo Ho-jung","version":16,"id":"43576","lastModified":"1301901772000","name":"Yoo Ho-jung","type":"Person","_key":"25374"} +{"label":"Lee Kyung-eun","version":16,"id":"43577","lastModified":"1301901772000","name":"Lee Kyung-eun","type":"Person","_key":"25375"} +{"label":"Joo Eun-young Hee","version":17,"id":"43578","lastModified":"1301902003000","name":"Joo Eun-young Hee","type":"Person","_key":"25376"} +{"label":"Lee Young-mi","version":16,"id":"43579","lastModified":"1301901938000","name":"Lee Young-mi","type":"Person","_key":"25377"} +{"label":"Chun Sung-hoon","version":16,"id":"43580","lastModified":"1301901558000","name":"Chun Sung-hoon","type":"Person","_key":"25378"} +{"label":"Kim Choon-gi","version":16,"id":"43581","lastModified":"1301901772000","name":"Kim Choon-gi","type":"Person","_key":"25379"} +{"label":"Kim Do-yeon","version":16,"id":"43582","lastModified":"1301901772000","name":"Kim Do-yeon","type":"Person","_key":"25380"} +{"label":"Neowolf","description":"No overview found.","id":"5489","runtime":90,"imdbId":"tt0847215","homepage":"www.neowolfthemovie.com","version":94,"lastModified":"1301905550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4c3676627b9aa105f700001f\/neowolf-mid.jpg","studio":"Intermedia Films","genre":"Horror","title":"Neowolf","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"25381"} +{"label":"Yvan Gauthier","version":21,"id":"43583","lastModified":"1301901645000","name":"Yvan Gauthier","type":"Person","_key":"25382"} +{"label":"Jonathan Carloff","version":19,"id":"43584","lastModified":"1301901777000","name":"Jonathan Carloff","type":"Person","_key":"25383"} +{"label":"Jacob Browne","version":19,"id":"43596","lastModified":"1301901777000","name":"Jacob Browne","type":"Person","_key":"25384"} +{"label":"Agim Kaba","version":19,"id":"43597","lastModified":"1301901946000","name":"Agim Kaba","type":"Person","_key":"25385"} +{"label":"Michael Frascino","version":18,"id":"43598","lastModified":"1301901673000","name":"Michael Frascino","type":"Person","_key":"25386"} +{"label":"Heidi Johanningmeier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/343\/4d03d39e7b9aa11bc2001343\/heidi-johanningmeier-profile.jpg","version":32,"id":"43599","lastModified":"1301901601000","name":"Heidi Johanningmeier","type":"Person","_key":"25387"} +{"label":"Ryan Ross","version":19,"id":"43600","lastModified":"1301901946000","name":"Ryan Ross","type":"Person","_key":"25388"} +{"label":"Megan Pepin","version":19,"id":"43602","lastModified":"1301901946000","name":"Megan Pepin","type":"Person","_key":"25389"} +{"label":"Battlefield Earth: A Saga of the Year 3000","description":"In the year 3000, man is no match for the Psychlo's, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlo's are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.","id":"5491","runtime":118,"imdbId":"tt0185183","trailer":"http:\/\/www.youtube.com\/watch?v=h0R_FR9pD2k","version":78,"lastModified":"1301903595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4bc91c9f017a3c57fe00b1ec\/battlefield-earth-a-saga-of-the-year-3000-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"Battlefield Earth: A Saga of the Year 3000","releaseDate":958089600000,"language":"en","type":"Movie","_key":"25390"} +{"label":"Sabine Karsenti","version":24,"id":"43611","lastModified":"1301901617000","name":"Sabine Karsenti","type":"Person","_key":"25391"} +{"label":"Christian Tessier","version":23,"id":"43612","lastModified":"1301902167000","name":"Christian Tessier","type":"Person","_key":"25392"} +{"label":"Sylvain Landry","version":23,"id":"43613","lastModified":"1301901894000","name":"Sylvain Landry","type":"Person","_key":"25393"} +{"label":"Battlefield Earth: Evolution & Creation","description":"No overview found.","id":"5492","runtime":16,"imdbId":"tt0353226","version":52,"lastModified":"1301906749000","studio":"Warner Bros. Pictures","genre":"Documentary","title":"Battlefield Earth: Evolution & Creation","releaseDate":957139200000,"language":"en","type":"Movie","_key":"25394"} +{"label":"Ronny Gosselin","version":22,"id":"43614","lastModified":"1301901567000","name":"Ronny Gosselin","type":"Person","_key":"25395"} +{"label":"Erik Henry","version":20,"id":"43615","lastModified":"1301902158000","name":"Erik Henry","type":"Person","_key":"25396"} +{"label":"Jonathan D. Krane","version":50,"id":"14093","lastModified":"1301901844000","name":"Jonathan D. Krane","type":"Person","_key":"25397"} +{"label":"Giles Nuttgens","version":24,"id":"3079","lastModified":"1300015900000","name":"Giles Nuttgens","type":"Person","_key":"25398"} +{"label":"Elie Samaha","version":72,"id":"18691","lastModified":"1301901231000","name":"Elie Samaha","type":"Person","_key":"25399"} +{"label":"Patrick Tatopoulos","version":66,"id":"3964","lastModified":"1302059645000","name":"Patrick Tatopoulos","type":"Person","_key":"25400"} +{"label":"Chris Trice","version":20,"id":"43616","lastModified":"1301902196000","name":"Chris Trice","type":"Person","_key":"25401"} +{"label":"Returner","description":"After an alien invasion threatens to annihilate the human race, a young Japanese girl, named Milly (Anne Suzuki), travels back in time from 2084 to October 2002, and enlists the reluctant aid of skilled Tokyo gunman, named Miyamoto (Takeshi Kaneshiro), to discover and prevent the start of the war. However, trouble ensues when the two protagonists are forced to deal with a Japanese mafia boss, named Mizoguchi (Goro Kishitani), who is somehow involved in the start of the war by keeping the first a","id":"5493","runtime":116,"imdbId":"tt0339579","version":150,"lastModified":"1301903617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fe\/4bc91ca0017a3c57fe00b1fe\/ritana-mid.jpg","studio":"Gaumont Columbia Tristar Films","genre":"Action","title":"Returner","releaseDate":1030752000000,"language":"en","type":"Movie","_key":"25402"} +{"label":"Takashi Yamazaki","version":33,"id":"43652","lastModified":"1301901539000","name":"Takashi Yamazaki","type":"Person","_key":"25403"} +{"label":"Takeshi Kaneshiro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ffb\/4d6c1b067b9aa13625003ffb\/takeshi-kaneshiro-profile.jpg","version":61,"id":"43661","lastModified":"1301901163000","name":"Takeshi Kaneshiro","type":"Person","_key":"25404"} +{"label":"Anne Suzuki","version":36,"id":"43662","lastModified":"1301901564000","name":"Anne Suzuki","type":"Person","_key":"25405"} +{"label":"Kirin Kiki","version":26,"id":"43663","lastModified":"1301901425000","name":"Kirin Kiki","type":"Person","_key":"25406"} +{"label":"Gor\u00f4 Kishitani","version":24,"id":"43664","lastModified":"1301901981000","name":"Gor\u00f4 Kishitani","type":"Person","_key":"25407"} +{"label":"Yukiko Okamoto","version":22,"id":"43665","lastModified":"1301902167000","name":"Yukiko Okamoto","type":"Person","_key":"25408"} +{"label":"Mitsuru Murata","version":22,"id":"43666","lastModified":"1301902107000","name":"Mitsuru Murata","type":"Person","_key":"25409"} +{"label":"Kisuke Iida","version":21,"id":"43667","lastModified":"1301902177000","name":"Kisuke Iida","type":"Person","_key":"25410"} +{"label":"Kazuya Shimizu","version":27,"id":"43668","lastModified":"1301901735000","name":"Kazuya Shimizu","type":"Person","_key":"25411"} +{"label":"Chiharu Kawai","version":22,"id":"43669","lastModified":"1301902106000","name":"Chiharu Kawai","type":"Person","_key":"25412"} +{"label":"Dean Harrington","version":25,"id":"43670","lastModified":"1301901399000","name":"Dean Harrington","type":"Person","_key":"25413"} +{"label":"Xiaoqun Zhao","version":21,"id":"43671","lastModified":"1301902177000","name":"Xiaoqun Zhao","type":"Person","_key":"25414"} +{"label":"Masaya Takahashi","version":22,"id":"43672","lastModified":"1301902106000","name":"Masaya Takahashi","type":"Person","_key":"25415"} +{"label":"George and the Dragon","description":"A knight returning from the Crusades takes on a dragon and becomes a legend.","id":"5494","runtime":93,"imdbId":"tt0306892","version":381,"lastModified":"1301946710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/207\/4bc91ca1017a3c57fe00b207\/george-and-the-dragon-mid.jpg","studio":"ApolloMedia","genre":"Action","title":"George and the Dragon","releaseDate":1080432000000,"language":"en","type":"Movie","_key":"25416"} +{"label":"Tom Reeve","version":24,"id":"43673","lastModified":"1301901894000","name":"Tom Reeve","type":"Person","_key":"25417"} +{"label":"Bill Treacher","version":19,"id":"43680","lastModified":"1301902106000","name":"Bill Treacher","type":"Person","_key":"25418"} +{"label":"Bin ich sexy?","description":"No overview found.","id":"5495","runtime":89,"imdbId":"tt0411165","version":54,"lastModified":"1301906082000","studio":"Maran Film","genre":"Comedy","title":"Bin ich sexy?","releaseDate":1119484800000,"language":"en","type":"Movie","_key":"25419"} +{"label":"Kathrin Feistl","version":20,"id":"43681","lastModified":"1301902106000","name":"Kathrin Feistl","type":"Person","_key":"25420"} +{"label":"Marie-Luise Schramm","version":22,"id":"43683","lastModified":"1301901952000","name":"Marie-Luise Schramm","type":"Person","_key":"25421"} +{"label":"Johanna Fritz","version":19,"id":"43684","lastModified":"1301901735000","name":"Johanna Fritz","type":"Person","_key":"25422"} +{"label":"Ismail Streit","version":19,"id":"43685","lastModified":"1301902106000","name":"Ismail Streit","type":"Person","_key":"25423"} +{"label":"Antje Hagen","version":20,"id":"43686","lastModified":"1301901894000","name":"Antje Hagen","type":"Person","_key":"25424"} +{"label":"Michael Heinsohn","version":19,"id":"43687","lastModified":"1301901735000","name":"Michael Heinsohn","type":"Person","_key":"25425"} +{"label":"Judith Hellebronth","version":19,"id":"43688","lastModified":"1301901735000","name":"Judith Hellebronth","type":"Person","_key":"25426"} +{"label":"Isabell Hindersin","version":19,"id":"43689","lastModified":"1301901735000","name":"Isabell Hindersin","type":"Person","_key":"25427"} +{"label":"Faria Nada","version":19,"id":"43690","lastModified":"1301901735000","name":"Faria Nada","type":"Person","_key":"25428"} +{"label":"Dietz Werner Steck","version":19,"id":"43691","lastModified":"1301901735000","name":"Dietz Werner Steck","type":"Person","_key":"25429"} +{"label":"Love Is All","description":"In Alles Is Liefde draait alles om de liefde, in alle denkbare combinaties. Klaasje (Wendy van Dijk) is gescheiden van Dennis (Peter Paul Muller) nadat hij haar heeft bedrogen met de juf (Chantal Janzen) van hun zoontje. Hoewel Dennis haar terug wil, lijken zijn kansen verkeken als Klaasje een aantrekkelijke jonge minnaar tegenkomt (Valerio Zeno). Simone, de beste vriendin van Klaasje (Anneke Blok) is de spil van haar gezin dat ze met strakke schema's door het drukke dagelijkse leven leidt. Haar","id":"5497","runtime":110,"imdbId":"tt0468644","trailer":"http:\/\/www.youtube.com\/watch?v=sJqpLYYIm8A","homepage":"http:\/\/www.allesisliefde.nl\/","version":158,"lastModified":"1301904823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/225\/4bc91ca7017a3c57fe00b225\/alles-is-liefde-mid.jpg","studio":"Motel Films","genre":"Comedy","title":"Love Is All","releaseDate":1192060800000,"language":"en","type":"Movie","_key":"25430"} +{"label":"Joram L\u00fcrsen","version":20,"id":"54874","lastModified":"1301901617000","name":"Joram L\u00fcrsen","type":"Person","_key":"25431"} +{"label":"Annemieke Bakker","version":25,"id":"43715","lastModified":"1301901851000","name":"Annemieke Bakker","type":"Person","_key":"25432"} +{"label":"Anneke Blok","version":22,"id":"43716","lastModified":"1301901735000","name":"Anneke Blok","type":"Person","_key":"25433"} +{"label":"Paul de Leeuw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/806\/4cbf7fdd7b9aa138d9001806\/paul-de-leeuw-profile.jpg","version":28,"birthday":"-245206800000","id":"43717","birthplace":"Rotterdam","lastModified":"1301901604000","name":"Paul de Leeuw","type":"Person","_key":"25434"} +{"label":"Marc-Marie Huijbregts","version":21,"id":"43718","lastModified":"1301902184000","name":"Marc-Marie Huijbregts","type":"Person","_key":"25435"} +{"label":"Ton Kas","version":20,"id":"43719","lastModified":"1301902106000","name":"Ton Kas","type":"Person","_key":"25436"} +{"label":"Bas Keijzer","version":21,"id":"43720","lastModified":"1301901735000","name":"Bas Keijzer","type":"Person","_key":"25437"} +{"label":"Wendy Van Dijk","version":19,"id":"43721","lastModified":"1301902167000","name":"Wendy Van Dijk","type":"Person","_key":"25438"} +{"label":"Intimate Nights","description":"No overview found.","id":"5501","runtime":98,"imdbId":"tt0185382","version":139,"lastModified":"1301905202000","studio":"Have Two Productions","genre":"Crime","title":"Intimate Nights","releaseDate":883612800000,"language":"en","type":"Movie","_key":"25439"} +{"label":"Jay Madison","version":22,"id":"43744","lastModified":"1301901963000","name":"Jay Madison","type":"Person","_key":"25440"} +{"label":"J. Cynthia Brooks","version":20,"id":"43749","lastModified":"1301901963000","name":"J. Cynthia Brooks","type":"Person","_key":"25441"} +{"label":"Chris Johnston","version":20,"id":"43750","lastModified":"1301901676000","name":"Chris Johnston","type":"Person","_key":"25442"} +{"label":"Jim Stevens","version":22,"id":"43748","lastModified":"1301901963000","name":"Jim Stevens","type":"Person","_key":"25443"} +{"label":"Kim Yates","version":21,"id":"43751","lastModified":"1301901657000","name":"Kim Yates","type":"Person","_key":"25444"} +{"label":"James Sinclair","version":20,"id":"43752","lastModified":"1301902196000","name":"James Sinclair","type":"Person","_key":"25445"} +{"label":"Collin Bernsen","version":19,"id":"43753","lastModified":"1301901804000","name":"Collin Bernsen","type":"Person","_key":"25446"} +{"label":"Tracy Richman","version":20,"id":"43754","lastModified":"1301902158000","name":"Tracy Richman","type":"Person","_key":"25447"} +{"label":"Hilary Segal","version":20,"id":"43755","lastModified":"1301901789000","name":"Hilary Segal","type":"Person","_key":"25448"} +{"label":"Dana Robbins","version":20,"id":"43756","lastModified":"1301901789000","name":"Dana Robbins","type":"Person","_key":"25449"} +{"label":"GiGi Erneta","version":33,"id":"43757","lastModified":"1301901367000","name":"GiGi Erneta","type":"Person","_key":"25450"} +{"label":"The Fugitive","description":"Wrongly convicted of murdering his wife, Dr. Richard Kimble escapes from custody after a ferocious train accident. But as he tries to find the real killer -- a mysterious one-armed man -- gung-ho U.S. Marshal Samuel Gerard is hot on Kimble's trail.","id":"5503","runtime":130,"imdbId":"tt0106977","trailer":"http:\/\/www.youtube.com\/watch?v=GoyqZJWjOjU","version":529,"lastModified":"1301901617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4d4cc4b07b9aa13aab0080d4\/the-fugitive-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Fugitive","releaseDate":744595200000,"language":"en","tagline":"A murdered wife. A one-armed man. An obsessed detective. The chase begins.","type":"Movie","_key":"25451"} +{"label":"Tom Wood","version":35,"id":"43772","lastModified":"1301901926000","name":"Tom Wood","type":"Person","_key":"25452"} +{"label":"Andreas Katsulas","version":38,"id":"43773","lastModified":"1301901649000","name":"Andreas Katsulas","type":"Person","_key":"25453"} +{"label":"L. Scott Caldwell","version":27,"id":"29051","lastModified":"1301901633000","name":"L. Scott Caldwell","type":"Person","_key":"25454"} +{"label":"Jane Lynch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ed\/4c4328b57b9aa145910002ed\/jane-lynch-profile.jpg","version":103,"id":"43775","lastModified":"1302050480000","name":"Jane Lynch","type":"Person","_key":"25455"} +{"label":"Neil Flynn","version":26,"id":"43776","lastModified":"1301902123000","name":"Neil Flynn","type":"Person","_key":"25456"} +{"label":"The Ladykillers","description":"Meet \"The Unholy Five\"...The Most Befuddled Set of Assorted Thugs That Ever Fouled Up a Million Dollar Bank Robbery!! A gang of five diverse oddball criminal types rent a two room apartment in an isolated house on a London cul-de-sac from an octogenarian widow with three pet parrots. The group's mastermind, Professor Marcus, tells her a cover story that they are members of an amateur string quintet and would like to use the rooms to hone their musical skills. In reality, they are plotting to rob","id":"5506","runtime":91,"imdbId":"tt0048281","version":175,"lastModified":"1301903933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/244\/4bc91caa017a3c57fe00b244\/the-ladykillers-mid.jpg","genre":"Comedy","title":"The Ladykillers","releaseDate":-437529600000,"language":"en","type":"Movie","_key":"25457"} +{"label":"Katie Johnson","version":24,"id":"43787","lastModified":"1301901539000","name":"Katie Johnson","type":"Person","_key":"25458"} +{"label":"Danny Green","version":27,"id":"43791","lastModified":"1301901547000","name":"Danny Green","type":"Person","_key":"25459"} +{"label":"Jack Warner","version":23,"id":"100343","lastModified":"1301902644000","name":"Jack Warner","type":"Person","_key":"25460"} +{"label":"Finders Keepers","description":"No overview found.","id":"5507","runtime":94,"imdbId":"tt0060413","version":266,"lastModified":"1301906082000","genre":"Comedy","title":"Finders Keepers","releaseDate":-96768000000,"language":"en","type":"Movie","_key":"25461"} +{"label":"Sidney Hayers","version":31,"id":"43792","lastModified":"1302011270000","name":"Sidney Hayers","type":"Person","_key":"25462"} +{"label":"Cliff Richard","version":24,"id":"23220","lastModified":"1301901662000","name":"Cliff Richard","type":"Person","_key":"25463"} +{"label":"John Rostill","version":21,"id":"43795","lastModified":"1301901894000","name":"John Rostill","type":"Person","_key":"25464"} +{"label":"Peggy Mount","version":26,"id":"43798","lastModified":"1301902050000","name":"Peggy Mount","type":"Person","_key":"25465"} +{"label":"Vivienne Ventura","version":20,"id":"43799","lastModified":"1301901735000","name":"Vivienne Ventura","type":"Person","_key":"25466"} +{"label":"Finders Keepers","description":"On the run from the police and a female roller derby team, scam artist Michael Rangeloff steals a coffin and boards a train, pretending to be a soldier bringing home a dead war buddy. He gets more than he bargained for from the train and the coffin.","id":"5508","runtime":96,"imdbId":"tt0087260","version":65,"lastModified":"1301906183000","studio":"CBS Television","genre":"Comedy","title":"Finders Keepers","releaseDate":453686400000,"language":"en","type":"Movie","_key":"25467"} +{"label":"Pamela Stephenson","version":26,"id":"43805","lastModified":"1301901530000","name":"Pamela Stephenson","type":"Person","_key":"25468"} +{"label":"Finders, Keepers","description":"No overview found.","id":"5509","runtime":11,"imdbId":"tt0177775","version":200,"lastModified":"1301906749000","studio":"Darc Productions","title":"Finders, Keepers","releaseDate":820454400000,"language":"en","type":"Movie","_key":"25469"} +{"label":"Daniel Bronzite","version":22,"id":"43806","lastModified":"1301901657000","name":"Daniel Bronzite","type":"Person","_key":"25470"} +{"label":"Richard Mark Arnold","version":20,"id":"43808","lastModified":"1301901816000","name":"Richard Mark Arnold","type":"Person","_key":"25471"} +{"label":"Jenifer Sparks","version":20,"id":"43809","lastModified":"1301901963000","name":"Jenifer Sparks","type":"Person","_key":"25472"} +{"label":"Finders Keepers","description":"No overview found.","id":"5510","runtime":74,"imdbId":"tt0043534","version":97,"lastModified":"1301907283000","studio":"Universal Pictures Corporation","genre":"Comedy","title":"Finders Keepers","releaseDate":-568080000000,"language":"en","type":"Movie","_key":"25473"} +{"label":"Frederick De Cordova","version":24,"id":"43816","lastModified":"1301985766000","name":"Frederick De Cordova","type":"Person","_key":"25474"} +{"label":"Tom Ewell","version":31,"id":"43819","lastModified":"1301902149000","name":"Tom Ewell","type":"Person","_key":"25475"} +{"label":"Julie Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fd\/4be04f5c017a3c35bd0004fd\/julie-adams-profile.jpg","version":34,"id":"31169","lastModified":"1301901298000","name":"Julie Adams","type":"Person","_key":"25476"} +{"label":"Dusty Henley","version":20,"id":"43820","lastModified":"1301902184000","name":"Dusty Henley","type":"Person","_key":"25477"} +{"label":"Harold Vermilyea","version":25,"id":"43821","lastModified":"1301901894000","name":"Harold Vermilyea","type":"Person","_key":"25478"} +{"label":"Richard Reeves","version":22,"id":"43822","lastModified":"1301902106000","name":"Richard Reeves","type":"Person","_key":"25479"} +{"label":"Herbert Anderson","version":21,"id":"43823","lastModified":"1301901816000","name":"Herbert Anderson","type":"Person","_key":"25480"} +{"label":"Madge Blake","version":21,"id":"43824","lastModified":"1301902184000","name":"Madge Blake","type":"Person","_key":"25481"} +{"label":"Harris Brown","version":20,"id":"43825","lastModified":"1301902147000","name":"Harris Brown","type":"Person","_key":"25482"} +{"label":"Edward Clark","version":22,"id":"43826","lastModified":"1301902106000","name":"Edward Clark","type":"Person","_key":"25483"} +{"label":"Elizabeth Flournoy","version":19,"id":"43827","lastModified":"1301901617000","name":"Elizabeth Flournoy","type":"Person","_key":"25484"} +{"label":"Le samoura\u00ef","description":"Hitman Jef Costello is a perfectionist who always carefully plans his murders and who never gets caught...","id":"5511","runtime":105,"imdbId":"tt0062229","trailer":"http:\/\/www.youtube.com\/watch?v=J4QsDsApaV0","version":337,"lastModified":"1301903500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/535\/4ccb98387b9aa16b9d000535\/le-samourai-mid.jpg","studio":"CICC","genre":"Crime","title":"Le samoura\u00ef","releaseDate":-69033600000,"language":"en","type":"Movie","_key":"25485"} +{"label":"Nathalie Delon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd9\/4c0e4b0c017a3c7e92000cd9\/nathalie-delon-profile.jpg","version":25,"id":"43814","lastModified":"1301901657000","name":"Nathalie Delon","type":"Person","_key":"25486"} +{"label":"Cathy Rosier","version":21,"id":"43815","lastModified":"1301901735000","name":"Cathy Rosier","type":"Person","_key":"25487"} +{"label":"Finders Keepers","description":"No overview found.","id":"5513","runtime":90,"imdbId":"tt0846779","version":59,"lastModified":"1301525585000","genre":"Comedy","title":"Finders Keepers","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"25488"} +{"label":"K.K. Smith","version":20,"id":"43828","lastModified":"1301902158000","name":"K.K. Smith","type":"Person","_key":"25489"} +{"label":"Jarell Jackson","version":20,"id":"43831","lastModified":"1301901963000","name":"Jarell Jackson","type":"Person","_key":"25490"} +{"label":"Laura Hayes","version":20,"id":"43832","lastModified":"1301902158000","name":"Laura Hayes","type":"Person","_key":"25491"} +{"label":"Duffy Hudson","version":20,"id":"43833","lastModified":"1301901789000","name":"Duffy Hudson","type":"Person","_key":"25492"} +{"label":"Finders Keepers","description":"No overview found.","id":"5514","runtime":35,"imdbId":"tt0231588","version":80,"lastModified":"1301908338000","genre":"Comedy","title":"Finders Keepers","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"25493"} +{"label":"Otis Thayer","version":21,"id":"43834","lastModified":"1301902158000","name":"Otis Thayer","type":"Person","_key":"25494"} +{"label":"Violet Mersereau","version":20,"id":"43835","lastModified":"1301901963000","name":"Violet Mersereau","type":"Person","_key":"25495"} +{"label":"Edmund Cobb","version":22,"id":"43836","lastModified":"1301901789000","name":"Edmund Cobb","type":"Person","_key":"25496"} +{"label":"Dorothy Dean Bridges","version":20,"id":"43837","lastModified":"1301901963000","name":"Dorothy Dean Bridges","type":"Person","_key":"25497"} +{"label":"Verne Layton","version":18,"id":"43838","lastModified":"1301901981000","name":"Verne Layton","type":"Person","_key":"25498"} +{"label":"Finders Keepers","description":"No overview found.","id":"5515","runtime":60,"imdbId":"tt0018889","version":150,"lastModified":"1301908338000","studio":"Universal Pictures Corporation","genre":"Comedy","title":"Finders Keepers","releaseDate":-1321315200000,"language":"en","type":"Movie","_key":"25499"} +{"label":"Laura La Plante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/250\/4c60581f7b9aa172d9000250\/laura-la-plante-profile.jpg","version":22,"id":"43843","lastModified":"1301901657000","name":"Laura La Plante","type":"Person","_key":"25500"} +{"label":"John Harron","version":24,"id":"43845","lastModified":"1301901789000","name":"John Harron","type":"Person","_key":"25501"} +{"label":"William Gorman","version":20,"id":"43846","lastModified":"1301902158000","name":"William Gorman","type":"Person","_key":"25502"} +{"label":"S. May Stone","version":20,"id":"43848","lastModified":"1301902158000","name":"S. May Stone","type":"Person","_key":"25503"} +{"label":"Joseph P. Mack","version":18,"id":"43849","lastModified":"1301902181000","name":"Joseph P. Mack","type":"Person","_key":"25504"} +{"label":"The Ladykillers","description":"An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord: a sharp old woman.","id":"5516","runtime":104,"imdbId":"tt0335245","version":225,"lastModified":"1301903100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff6\/4cbf22625e73d67784000ff6\/the-ladykillers-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The Ladykillers","releaseDate":1080259200000,"language":"en","type":"Movie","_key":"25505"} +{"label":"Irma P. Hall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c8c\/4c72adee5e73d65f7e000c8c\/irma-p-hall-profile.jpg","version":49,"birthday":"-1091322000000","id":"43853","birthplace":"Beaumont, Texas, USA","lastModified":"1301901146000","name":"Irma P. Hall","type":"Person","_key":"25506"} +{"label":"Ryan Hurst","version":46,"id":"43858","lastModified":"1301901283000","name":"Ryan Hurst","type":"Person","_key":"25507"} +{"label":"Diane Delano","version":30,"id":"43859","lastModified":"1301901894000","name":"Diane Delano","type":"Person","_key":"25508"} +{"label":"Finders Keepers","description":"No overview found.","id":"5517","runtime":20,"imdbId":"tt0311132","version":198,"lastModified":"1301906632000","studio":"Warner Bros. Pictures","genre":"Crime","title":"Finders Keepers","releaseDate":-1293840000000,"language":"en","type":"Movie","_key":"25509"} +{"label":"Bryan Foy","version":37,"id":"33019","lastModified":"1301901317000","name":"Bryan Foy","type":"Person","_key":"25510"} +{"label":"Helen Ferguson","version":20,"id":"43855","lastModified":"1301902187000","name":"Helen Ferguson","type":"Person","_key":"25511"} +{"label":"Janet Adair","version":20,"id":"43856","lastModified":"1301902158000","name":"Janet Adair","type":"Person","_key":"25512"} +{"label":"Helen Foster","version":20,"id":"43857","lastModified":"1301902158000","name":"Helen Foster","type":"Person","_key":"25513"} +{"label":"Finders Keepers, Lovers Weepers","description":"No overview found.","id":"5518","runtime":71,"imdbId":"tt0062973","version":91,"lastModified":"1301904240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4bf3f94e017a3c6d9200014b\/finders-keepers-lovers-weepers-mid.jpg","studio":"Eve Productions Inc.","genre":"Crime","title":"Finders Keepers, Lovers Weepers","releaseDate":-52099200000,"language":"en","type":"Movie","_key":"25514"} +{"label":"Anne Chapman","version":19,"id":"43864","lastModified":"1301901894000","name":"Anne Chapman","type":"Person","_key":"25515"} +{"label":"Paul Lockwood","version":19,"id":"43865","lastModified":"1301901735000","name":"Paul Lockwood","type":"Person","_key":"25516"} +{"label":"Gordon Westcott","version":20,"id":"43866","lastModified":"1301902009000","name":"Gordon Westcott","type":"Person","_key":"25517"} +{"label":"Duncan McLeod","version":19,"id":"43867","lastModified":"1301901894000","name":"Duncan McLeod","type":"Person","_key":"25518"} +{"label":"Robert Rudelson","version":20,"id":"43868","lastModified":"1301901894000","name":"Robert Rudelson","type":"Person","_key":"25519"} +{"label":"Lavelle Roby","version":21,"id":"43869","lastModified":"1301902184000","name":"Lavelle Roby","type":"Person","_key":"25520"} +{"label":"Jan Sinclair","version":19,"id":"43870","lastModified":"1301902106000","name":"Jan Sinclair","type":"Person","_key":"25521"} +{"label":"Joey DuPrez","version":19,"id":"43871","lastModified":"1301902106000","name":"Joey DuPrez","type":"Person","_key":"25522"} +{"label":"Nick Wolcuff","version":20,"id":"43872","lastModified":"1301901762000","name":"Nick Wolcuff","type":"Person","_key":"25523"} +{"label":"Pamela Collins","version":20,"id":"43873","lastModified":"1301902134000","name":"Pamela Collins","type":"Person","_key":"25524"} +{"label":"Vickie Roberts","version":19,"id":"43874","lastModified":"1301902106000","name":"Vickie Roberts","type":"Person","_key":"25525"} +{"label":"Michael Roberts","version":20,"id":"9177","lastModified":"1301901934000","name":"Michael Roberts","type":"Person","_key":"25526"} +{"label":"Orville Hallberg","version":20,"id":"43875","lastModified":"1301902106000","name":"Orville Hallberg","type":"Person","_key":"25527"} +{"label":"Anthony-James Ryan","version":21,"id":"43876","lastModified":"1301901617000","name":"Anthony-James Ryan","type":"Person","_key":"25528"} +{"label":"Se t'incontro, t'ammazzo","description":"No overview found.","id":"5519","runtime":92,"imdbId":"tt0066346","version":45,"lastModified":"1301907420000","studio":"Minerva Film SpA","genre":"Western","title":"Se t'incontro, t'ammazzo","releaseDate":38880000000,"language":"en","type":"Movie","_key":"25529"} +{"label":"Gianni Crea","version":20,"id":"43877","lastModified":"1301901963000","name":"Gianni Crea","type":"Person","_key":"25530"} +{"label":"Dino Strano","version":20,"id":"43884","lastModified":"1301902158000","name":"Dino Strano","type":"Person","_key":"25531"} +{"label":"Pia Giancaro","version":20,"id":"43885","lastModified":"1301901963000","name":"Pia Giancaro","type":"Person","_key":"25532"} +{"label":"Gennarino Pappagalli","version":20,"id":"43886","lastModified":"1301902158000","name":"Gennarino Pappagalli","type":"Person","_key":"25533"} +{"label":"My Sisters Keeper","description":"Based on a true story, My Sister's Keeper stars Kathy Bates as Christine, who since childhood has suffered from a debilitating mental illness. Spending most of her life in and out of various institutions, Christine has long yearned for independence, but is unable to wrest free of her controlling mother, Helen (Lynn Redgrave). Upon Helen's death, her other daughter, Judy (Elizabeth Perkins), a successful, self-absorbed art director who has deliberately distanced herself from her family, is appoin","id":"5520","runtime":90,"imdbId":"tt0298454","version":217,"lastModified":"1302057491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/697\/4d93d97e7b9aa1199a001697\/my-sisters-keeper-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Drama","title":"My Sisters Keeper","releaseDate":1012089600000,"language":"en","type":"Movie","_key":"25534"} +{"label":"Ron Lagomarsino","version":22,"id":"43887","lastModified":"1301902184000","name":"Ron Lagomarsino","type":"Person","_key":"25535"} +{"label":"Kimberly J. Brown","version":28,"id":"43893","lastModified":"1301901560000","name":"Kimberly J. Brown","type":"Person","_key":"25536"} +{"label":"Hallee Hirsh","version":21,"id":"43894","lastModified":"1301901894000","name":"Hallee Hirsh","type":"Person","_key":"25537"} +{"label":"Bobby Harwell","version":20,"id":"43895","lastModified":"1301902106000","name":"Bobby Harwell","type":"Person","_key":"25538"} +{"label":"Finder's Fee","description":"After finding a wallet in the street tepper calls the owner in order to return it. After making the call he discovers that the lottery ticket inside is a $6 million winner.To add to things his friends are on their way over for their weekly poker night & the groups tradition is to bet their lottery ticket.","id":"5521","runtime":100,"imdbId":"tt0192023","version":228,"lastModified":"1301906333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26c\/4bc91cb0017a3c57fe00b26c\/finder-s-fee-mid.jpg","studio":"MysticArts Pictures","genre":"Drama","title":"Finder's Fee","releaseDate":978307200000,"language":"en","type":"Movie","_key":"25539"} +{"label":"Jeff Probst","version":21,"id":"43896","lastModified":"1301902109000","name":"Jeff Probst","type":"Person","_key":"25540"} +{"label":"Erik Palladino","version":30,"id":"43902","lastModified":"1301901562000","name":"Erik Palladino","type":"Person","_key":"25541"} +{"label":"Carly Pope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/560\/4d20e41a7b9aa17375002560\/carly-pope-profile.jpg","version":50,"id":"43903","lastModified":"1301901276000","name":"Carly Pope","type":"Person","_key":"25542"} +{"label":"Colleen Wheeler","version":21,"id":"43905","lastModified":"1301901643000","name":"Colleen Wheeler","type":"Person","_key":"25543"} +{"label":"Louis Chirillo","version":28,"id":"89548","lastModified":"1301902517000","name":"Louis Chirillo","type":"Person","_key":"25544"} +{"label":"Zi mei qing chou","description":"No overview found.","id":"5522","runtime":90,"imdbId":"tt0453324","version":49,"lastModified":"1301908338000","genre":"Drama","title":"Zi mei qing chou","releaseDate":-220924800000,"language":"en","type":"Movie","_key":"25545"} +{"label":"Zhen Luo","version":19,"id":"43907","lastModified":"1301901894000","name":"Zhen Luo","type":"Person","_key":"25546"} +{"label":"Shan Kwan","version":23,"id":"43914","lastModified":"1301901894000","name":"Shan Kwan","type":"Person","_key":"25547"} +{"label":"Patricia Lam Fung","version":19,"id":"43915","lastModified":"1301901735000","name":"Patricia Lam Fung","type":"Person","_key":"25548"} +{"label":"Lan Wen","version":18,"id":"43916","lastModified":"1301902167000","name":"Lan Wen","type":"Person","_key":"25549"} +{"label":"Margaret Tu Chuan","version":19,"id":"43917","lastModified":"1301901894000","name":"Margaret Tu Chuan","type":"Person","_key":"25550"} +{"label":"Lan Wang","version":23,"id":"43918","lastModified":"1301902106000","name":"Lan Wang","type":"Person","_key":"25551"} +{"label":"Sha Wu","version":19,"id":"43919","lastModified":"1301902106000","name":"Sha Wu","type":"Person","_key":"25552"} +{"label":"Ho Yam","version":19,"id":"43920","lastModified":"1301902106000","name":"Ho Yam","type":"Person","_key":"25553"} +{"label":"Feng Erh","version":18,"id":"43921","lastModified":"1301902167000","name":"Feng Erh","type":"Person","_key":"25554"} +{"label":"Her Sister's Keeper","description":"No overview found.","id":"5523","runtime":92,"imdbId":"tt0930063","version":62,"lastModified":"1301905647000","studio":"Front Street Productions","genre":"Drama","title":"Her Sister's Keeper","releaseDate":1164499200000,"language":"en","type":"Movie","_key":"25555"} +{"label":"Michael Scott","version":35,"id":"30093","lastModified":"1301901745000","name":"Michael Scott","type":"Person","_key":"25556"} +{"label":"Dahlia Salem","version":20,"id":"43927","lastModified":"1301902136000","name":"Dahlia Salem","type":"Person","_key":"25557"} +{"label":"Meghan Ory","version":28,"id":"43928","lastModified":"1301901559000","name":"Meghan Ory","type":"Person","_key":"25558"} +{"label":"Anthony Ulc","version":19,"id":"43929","lastModified":"1301902106000","name":"Anthony Ulc","type":"Person","_key":"25559"} +{"label":"Bruno Verdoni","version":19,"id":"43930","lastModified":"1301902106000","name":"Bruno Verdoni","type":"Person","_key":"25560"} +{"label":"Jane McLean","version":27,"id":"43278","lastModified":"1301901123000","name":"Jane McLean","type":"Person","_key":"25561"} +{"label":"Darren Moore","version":19,"id":"43931","lastModified":"1301902183000","name":"Darren Moore","type":"Person","_key":"25562"} +{"label":"Woody Jefferys","version":19,"id":"43932","lastModified":"1301902106000","name":"Woody Jefferys","type":"Person","_key":"25563"} +{"label":"Adrien Dorval","version":23,"id":"43933","lastModified":"1301901894000","name":"Adrien Dorval","type":"Person","_key":"25564"} +{"label":"Myron Natwick","version":20,"id":"43934","lastModified":"1301902136000","name":"Myron Natwick","type":"Person","_key":"25565"} +{"label":"Sister's Keeper","description":"No overview found.","id":"5524","runtime":101,"imdbId":"tt0462540","version":91,"lastModified":"1301905202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/275\/4bc91cb1017a3c57fe00b275\/sister-s-keeper-mid.jpg","studio":"Offset Filmworks","genre":"Action","title":"Sister's Keeper","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"25566"} +{"label":"Carol Abney","version":19,"id":"43942","lastModified":"1301901894000","name":"Carol Abney","type":"Person","_key":"25567"} +{"label":"Eddie Alfano","version":21,"id":"43943","lastModified":"1301902016000","name":"Eddie Alfano","type":"Person","_key":"25568"} +{"label":"Ivan Basso","version":19,"id":"43944","lastModified":"1301901735000","name":"Ivan Basso","type":"Person","_key":"25569"} +{"label":"Alex Boling","version":20,"id":"43945","lastModified":"1301901894000","name":"Alex Boling","type":"Person","_key":"25570"} +{"label":"Denise Boutte","version":22,"id":"43946","lastModified":"1301901314000","name":"Denise Boutte","type":"Person","_key":"25571"} +{"label":"Ed Brigadier","version":20,"id":"43947","lastModified":"1301902129000","name":"Ed Brigadier","type":"Person","_key":"25572"} +{"label":"LaQuita Cleare","version":18,"id":"43948","lastModified":"1301902167000","name":"LaQuita Cleare","type":"Person","_key":"25573"} +{"label":"Kathleen Connor","version":19,"id":"43949","lastModified":"1301902106000","name":"Kathleen Connor","type":"Person","_key":"25574"} +{"label":"Dena Dietrich","version":20,"id":"43950","lastModified":"1301902129000","name":"Dena Dietrich","type":"Person","_key":"25575"} +{"label":"Sister's Keeper","description":"No overview found.","id":"5525","runtime":90,"imdbId":"tt0472179","version":95,"lastModified":"1301904269000","genre":"Action","title":"Sister's Keeper","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"25576"} +{"label":"Peter Langham","version":21,"id":"43955","lastModified":"1301901999000","name":"Peter Langham","type":"Person","_key":"25577"} +{"label":"D.C. Douglas","version":27,"id":"43961","lastModified":"1301901568000","name":"D.C. Douglas","type":"Person","_key":"25578"} +{"label":"Mary Sanchez","version":20,"id":"43962","lastModified":"1301901456000","name":"Mary Sanchez","type":"Person","_key":"25579"} +{"label":"Jessica Molina","version":20,"id":"43963","lastModified":"1301901816000","name":"Jessica Molina","type":"Person","_key":"25580"} +{"label":"Andr\u00e9s D\u00edaz","version":18,"id":"43964","lastModified":"1301901981000","name":"Andr\u00e9s D\u00edaz","type":"Person","_key":"25581"} +{"label":"Carlos Moreno Jr.","version":21,"id":"43965","lastModified":"1301901963000","name":"Carlos Moreno Jr.","type":"Person","_key":"25582"} +{"label":"Diavanna Zarzuela","version":20,"id":"43966","lastModified":"1301902158000","name":"Diavanna Zarzuela","type":"Person","_key":"25583"} +{"label":"Abigail Molina","version":20,"id":"43967","lastModified":"1301902158000","name":"Abigail Molina","type":"Person","_key":"25584"} +{"label":"Diana Molina","version":20,"id":"43968","lastModified":"1301902158000","name":"Diana Molina","type":"Person","_key":"25585"} +{"label":"Maricela Molina","version":18,"id":"43969","lastModified":"1301902167000","name":"Maricela Molina","type":"Person","_key":"25586"} +{"label":"Andy Langham","version":20,"id":"43970","lastModified":"1301902158000","name":"Andy Langham","type":"Person","_key":"25587"} +{"label":"Rainy Fields","version":20,"id":"43971","lastModified":"1301902158000","name":"Rainy Fields","type":"Person","_key":"25588"} +{"label":"A Killing Affair","description":"No overview found.","id":"5526","runtime":100,"imdbId":"tt0076266","version":127,"lastModified":"1301908337000","studio":"Columbia Pictures","genre":"Crime","title":"A Killing Affair","releaseDate":243648000000,"language":"en","type":"Movie","_key":"25589"} +{"label":"Elizabeth Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f0\/4c5b0ea67b9aa151f60005f0\/elizabeth-montgomery-profile.jpg","version":21,"id":"43975","lastModified":"1301901981000","name":"Elizabeth Montgomery","type":"Person","_key":"25590"} +{"label":"O.J. Simpson","version":54,"id":"12951","lastModified":"1301901401000","name":"O.J. Simpson","type":"Person","_key":"25591"} +{"label":"Rosalind Cash","version":25,"id":"43976","lastModified":"1301901588000","name":"Rosalind Cash","type":"Person","_key":"25592"} +{"label":"John Mahon","version":20,"id":"43978","lastModified":"1301901559000","name":"John Mahon","type":"Person","_key":"25593"} +{"label":"Allan Rich","version":28,"id":"35041","lastModified":"1301901476000","name":"Allan Rich","type":"Person","_key":"25594"} +{"label":"A Killing Affair","description":"No overview found.","id":"5527","runtime":100,"imdbId":"tt0095445","version":119,"lastModified":"1301906082000","studio":"Tomorrow Entertainment Inc.","genre":"Crime","title":"A Killing Affair","releaseDate":508291200000,"language":"en","type":"Movie","_key":"25595"} +{"label":"David Saperstein","version":24,"id":"43979","lastModified":"1301901894000","name":"David Saperstein","type":"Person","_key":"25596"} +{"label":"Rhetta Hughes","version":19,"id":"43986","lastModified":"1301901894000","name":"Rhetta Hughes","type":"Person","_key":"25597"} +{"label":"Amy Fields","version":19,"id":"43987","lastModified":"1301901735000","name":"Amy Fields","type":"Person","_key":"25598"} +{"label":"Richard Westrick","version":19,"id":"43988","lastModified":"1301902106000","name":"Richard Westrick","type":"Person","_key":"25599"} +{"label":"Trevor Jackson","version":19,"id":"43989","lastModified":"1301902106000","name":"Trevor Jackson","type":"Person","_key":"25600"} +{"label":"Susie Hall","version":19,"id":"43990","lastModified":"1301902106000","name":"Susie Hall","type":"Person","_key":"25601"} +{"label":"Sandi Brannon","version":19,"id":"43991","lastModified":"1301902106000","name":"Sandi Brannon","type":"Person","_key":"25602"} +{"label":"Bob Hannah","version":23,"id":"43992","lastModified":"1301902163000","name":"Bob Hannah","type":"Person","_key":"25603"} +{"label":"The Chorus","description":"Set in 1940's France, a new teacher at a school for disruptive boys gives hope and inspiration.","id":"5528","runtime":93,"imdbId":"tt0372824","homepage":"http:\/\/www.pathedistribution.com\/accueil\/filmcatalogue.php?IDFilm=498","version":398,"lastModified":"1302035152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/282\/4bc91cb2017a3c57fe00b282\/les-choristes-mid.jpg","studio":"Vega Films","genre":"Comedy","title":"The Chorus","releaseDate":1079481600000,"language":"en","type":"Movie","_key":"25604"} +{"label":"Christophe Barratier","version":32,"id":"43993","lastModified":"1301901836000","name":"Christophe Barratier","type":"Person","_key":"25605"} +{"label":"Jean-Baptiste Maunier","version":23,"id":"43996","lastModified":"1301901676000","name":"Jean-Baptiste Maunier","type":"Person","_key":"25606"} +{"label":"Maxence Perrin","version":21,"id":"43997","lastModified":"1301901838000","name":"Maxence Perrin","type":"Person","_key":"25607"} +{"label":"Jean-Paul Bonnaire","version":23,"id":"43998","lastModified":"1301901839000","name":"Jean-Paul Bonnaire","type":"Person","_key":"25608"} +{"label":"Gr\u00e9gory Gatignol","version":21,"id":"43999","lastModified":"1301901824000","name":"Gr\u00e9gory Gatignol","type":"Person","_key":"25609"} +{"label":"Hiroshima, My Love","description":"A young French actress is making an anti-war film in the rebuilt Japanese city of Hiroshima. Here, she has an affair with a Japanese architect, even though both of them are happily married. She will soon have to fly back home to Paris, but she spends one last night with her lover. At a caf\u00e9, she recounts the story of her first tragic love with a German soldier during the war....","id":"5544","runtime":90,"imdbId":"tt0052893","version":115,"lastModified":"1301903689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e3\/4bf3d971017a3c6d920000e3\/hiroshima-mon-amour-mid.jpg","studio":"Argos","genre":"Drama","title":"Hiroshima, My Love","releaseDate":-333331200000,"language":"en","type":"Movie","_key":"25610"} +{"label":"Stella Dassas","version":22,"id":"44020","lastModified":"1301901382000","name":"Stella Dassas","type":"Person","_key":"25611"} +{"label":"Pierre Barbaud","version":22,"id":"44021","lastModified":"1301901307000","name":"Pierre Barbaud","type":"Person","_key":"25612"} +{"label":"Dead Weekend","description":"No overview found.","id":"5546","runtime":82,"imdbId":"tt0112820","version":295,"lastModified":"1301904891000","studio":"IRS Media","genre":"Comedy","title":"Dead Weekend","releaseDate":813110400000,"language":"en","type":"Movie","_key":"25613"} +{"label":"Amos Poe","version":21,"id":"44023","lastModified":"1301901510000","name":"Amos Poe","type":"Person","_key":"25614"} +{"label":"Blair Valk","version":20,"id":"44032","lastModified":"1301901582000","name":"Blair Valk","type":"Person","_key":"25615"} +{"label":"Barbara Alyn Woods","version":28,"id":"44033","lastModified":"1301901785000","name":"Barbara Alyn Woods","type":"Person","_key":"25616"} +{"label":"RoboCop Series","description":"No overview found.","id":"5547","runtime":324,"version":237,"lastModified":"1302019204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/022\/4c8ea8d15e73d61492000022\/robocop-series-mid.jpg","studio":"Orion Pictures Corporation","title":"RoboCop Series","language":"en","tagline":"Part man. Part machine. All cop. The future of law enforcement.","type":"Movie","_key":"25617"} +{"label":"RoboCop","description":"Detroit - in the future - is crime ridden, and run by a massive company. The company have developed a huge crime fighting robot, which unfortunately develops a rather dangerous glitch. The company sees a way to get back in favor with the public when a cop called Alex Murphy is killed by a street gang. Murphy's body is reconstructed within a steel shell and named Robocop. The Robocop is very successful against criminals, and becomes a target of supervillian Boddicker.","id":"5548","runtime":102,"imdbId":"tt0093870","trailer":"http:\/\/www.youtube.com\/watch?v=vQtN3L16U7w","version":1066,"lastModified":"1302056530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc91cba017a3c57fe00b2a7\/robocop-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"RoboCop","releaseDate":553478400000,"language":"en","tagline":"Part man. Part machine. All cop. The future of law enforcement.","type":"Movie","_key":"25618"} +{"label":"Felton Perry","version":30,"id":"44042","lastModified":"1301901553000","name":"Felton Perry","type":"Person","_key":"25619"} +{"label":"Jesse D. Goins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4cd340f47b9aa113ab000001\/jesse-d-goins-profile.jpg","version":38,"id":"44043","lastModified":"1301901855000","name":"Jesse D. Goins","type":"Person","_key":"25620"} +{"label":"RoboCop 2","description":"A corrupt businesswoman seeks to disable Robocop in favour of her own model of cyborg.","id":"5549","runtime":82,"imdbId":"tt0100502","trailer":"http:\/\/www.youtube.com\/watch?v=Qby68STS8cQ","version":480,"lastModified":"1302034683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ac\/4d0639a45e73d621a30037ac\/robocop-2-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"RoboCop 2","releaseDate":646012800000,"language":"en","tagline":"He's back to protect the innocents.","type":"Movie","_key":"25621"} +{"label":"Belinda Bauer","version":29,"id":"44049","lastModified":"1301901319000","name":"Belinda Bauer","type":"Person","_key":"25622"} +{"label":"Mario Machado","version":27,"id":"44050","lastModified":"1301901342000","name":"Mario Machado","type":"Person","_key":"25623"} +{"label":"Leeza Gibbons","version":23,"id":"44051","lastModified":"1301901928000","name":"Leeza Gibbons","type":"Person","_key":"25624"} +{"label":"John Ingle","version":32,"id":"44052","lastModified":"1301901399000","name":"John Ingle","type":"Person","_key":"25625"} +{"label":"Roger Aaron Brown","version":28,"id":"44054","lastModified":"1301901551000","name":"Roger Aaron Brown","type":"Person","_key":"25626"} +{"label":"Gabriel Damon","version":27,"id":"44055","lastModified":"1301901350000","name":"Gabriel Damon","type":"Person","_key":"25627"} +{"label":"RoboCop 3","description":"Robocop saves the day once more. This time the half man\/half robot takes on ruthless developers who want to evict some people on \"their\" land.","id":"5550","runtime":104,"imdbId":"tt0107978","version":418,"lastModified":"1302019116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76d\/4d06427a5e73d621a400376d\/robocop-3-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"RoboCop 3","releaseDate":742003200000,"language":"en","tagline":"He's back to lay down the law.","type":"Movie","_key":"25628"} +{"label":"Fred Dekker","version":36,"id":"44056","lastModified":"1301901417000","name":"Fred Dekker","type":"Person","_key":"25629"} +{"label":"Remy Ryan","version":22,"id":"44058","lastModified":"1301901505000","name":"Remy Ryan","type":"Person","_key":"25630"} +{"label":"Jodi Long","version":31,"id":"44059","lastModified":"1301901466000","name":"Jodi Long","type":"Person","_key":"25631"} +{"label":"John Posey","version":24,"id":"44060","lastModified":"1301901580000","name":"John Posey","type":"Person","_key":"25632"} +{"label":"S.D. Nemeth","version":23,"id":"44062","lastModified":"1301901484000","name":"S.D. Nemeth","type":"Person","_key":"25633"} +{"label":"Edith Ivey","version":25,"id":"44063","lastModified":"1301901560000","name":"Edith Ivey","type":"Person","_key":"25634"} +{"label":"Space Cowboys","description":"Frank Corvin, \"Hawk\" Hawkins, Jerry O'Neill and Tank Sullivan were hotdog members of Project DAEDALUS, the Air Force's test program for space travel. Their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious Ikon communications satellite's orbit begins to degrade and threatens to crash into Earth.","id":"5551","runtime":130,"imdbId":"tt0186566","trailer":"http:\/\/www.youtube.com\/watch?v=rUCqsvYMhBs","homepage":"http:\/\/movies.warnerbros.com\/spacecowboys\/index.html","version":357,"lastModified":"1302034446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29f\/4d58a81d7b9aa15cf600429f\/space-cowboys-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Space Cowboys","releaseDate":965088000000,"language":"en","tagline":"Space will never be the same.","type":"Movie","_key":"25635"} +{"label":"Barbara Babcock","version":26,"id":"15746","lastModified":"1301901365000","name":"Barbara Babcock","type":"Person","_key":"25636"} +{"label":"Immortel (ad vitam)","description":"New York City in the year 2095 where genetically altered humans live side by side with unaltered men and women.","id":"5552","runtime":102,"imdbId":"tt0314063","version":851,"lastModified":"1301938797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc91cc4017a3c57fe00b2e5\/immortel-ad-vitam-mid.jpg","studio":"T\u00e9l\u00e9ma Productions","genre":"Action","title":"Immortel (ad vitam)","releaseDate":1079136000000,"language":"en","type":"Movie","_key":"25637"} +{"label":"Enki Bilal","version":28,"id":"44070","lastModified":"1301901698000","name":"Enki Bilal","type":"Person","_key":"25638"} +{"label":"Linda Hardy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e45\/4d264c747b9aa134dc000e45\/linda-hardy-profile.jpg","version":24,"id":"44078","lastModified":"1301901517000","name":"Linda Hardy","type":"Person","_key":"25639"} +{"label":"Thomas M. Pollard","version":21,"id":"44080","lastModified":"1301901680000","name":"Thomas M. Pollard","type":"Person","_key":"25640"} +{"label":"Derrick Brenner","version":19,"id":"44082","lastModified":"1301901641000","name":"Derrick Brenner","type":"Person","_key":"25641"} +{"label":"Olivier Achard","version":18,"id":"44083","lastModified":"1301901804000","name":"Olivier Achard","type":"Person","_key":"25642"} +{"label":"Yann Collette","version":26,"id":"77906","lastModified":"1301901467000","name":"Yann Collette","type":"Person","_key":"25643"} +{"label":"The Phantom of Liberty","description":"Bourgeois convention is demolished in Luis Bu\u00f1uel\u2019s surrealist gem. Featuring an elegant soiree with guests seated at toilet bowls, poker-playing monks using religious medals as chips, and police officers looking for a missing girl who is right under their noses, this perverse, playfully absurd comedy of non sequiturs deftly compiles many of the themes that preoccupied Bu\u00f1uel throughout his career\u2014from the hypocrisy of conventional morality to the arbitrariness of social arrangements.","id":"5558","runtime":103,"imdbId":"tt0071487","version":129,"lastModified":"1301905549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0b\/4ccf739f5e73d65023000d0b\/le-fantome-de-la-liberte-mid.jpg","studio":"Euro International Film","genre":"Comedy","title":"The Phantom of Liberty","releaseDate":148089600000,"language":"en","type":"Movie","_key":"25644"} +{"label":"H\u00e9l\u00e8ne Perdri\u00e8re","version":22,"id":"44111","lastModified":"1301901816000","name":"H\u00e9l\u00e8ne Perdri\u00e8re","type":"Person","_key":"25645"} +{"label":"Pierre-Fran\u00e7ois Pistorio","version":21,"id":"44112","lastModified":"1301901735000","name":"Pierre-Fran\u00e7ois Pistorio","type":"Person","_key":"25646"} +{"label":"Bee Movie","description":"Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.","id":"5559","runtime":90,"imdbId":"tt0389790","trailer":"http:\/\/www.youtube.com\/watch?v=FFGaS6MDknY","homepage":"http:\/\/www.beemovie.com\/","version":564,"lastModified":"1302055885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c3\/4c8ad13d5e73d6068d0000c3\/bee-movie-mid.jpg","studio":"DreamWorks SKG","genre":"Animation","title":"Bee Movie","releaseDate":1193529600000,"language":"en","tagline":"Born to bee wild.","type":"Movie","_key":"25647"} +{"label":"Steve Hickner","version":31,"id":"44113","lastModified":"1301901440000","name":"Steve Hickner","type":"Person","_key":"25648"} +{"label":"Simon J. Smith","version":34,"id":"44114","lastModified":"1301901362000","name":"Simon J. Smith","type":"Person","_key":"25649"} +{"label":"Jerry Seinfeld","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7dd\/4d1aff215e73d6084200b7dd\/jerry-seinfeld-profile.jpg","version":46,"id":"16377","lastModified":"1301901214000","name":"Jerry Seinfeld","type":"Person","_key":"25650"} +{"label":"Larry King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/253\/4d1affd25e73d6082e00b253\/larry-king-profile.jpg","version":35,"id":"44127","lastModified":"1301901236000","name":"Larry King","type":"Person","_key":"25651"} +{"label":"Megan Mullally","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ee\/4d1b00165e73d6084200b7ee\/megan-mullally-profile.jpg","version":38,"id":"52119","lastModified":"1301901527000","name":"Megan Mullally","type":"Person","_key":"25652"} +{"label":"Le beau Serge","description":"Francois (Jean-Claude Brialy) returns to his village after a long absence. He finds his friend Serge (G\u00e9rard Blain) who has married Yvonne, and has developed an alcohol problem after the death of their stillborn child. Serge has become an angry, bitter figure not unlike the roles of James Dean, refusing to face reality and adulthood and Francois must help him.","id":"5562","runtime":98,"imdbId":"tt0051404","version":74,"lastModified":"1301908337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4c8ef2d85e73d61493000095\/le-beau-serge-mid.jpg","genre":"Drama","title":"Le beau Serge","releaseDate":-346377600000,"language":"en","type":"Movie","_key":"25653"} +{"label":"Edmond Beauchamp","version":20,"id":"44129","lastModified":"1301901735000","name":"Edmond Beauchamp","type":"Person","_key":"25654"} +{"label":"Andr\u00e9 Dino","version":20,"id":"44225","lastModified":"1301901894000","name":"Andr\u00e9 Dino","type":"Person","_key":"25655"} +{"label":"Michel Creuze","version":20,"id":"44226","lastModified":"1301902106000","name":"Michel Creuze","type":"Person","_key":"25656"} +{"label":"\u0160\u00edlen\u011b smutn\u00e1 princezna","description":"No overview found.","id":"5589","runtime":73,"imdbId":"tt0232750","version":77,"lastModified":"1301904727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06c\/4cae36d07b9aa1213800006c\/silene-smutna-princezna-mid.jpg","studio":"Filmov\u00e9 Studio Barrandov","genre":"Comedy","title":"\u0160\u00edlen\u011b smutn\u00e1 princezna","releaseDate":-45619200000,"language":"en","type":"Movie","_key":"25657"} +{"label":"Bo\u0159ivoj Zeman","version":29,"id":"44216","lastModified":"1301901382000","name":"Bo\u0159ivoj Zeman","type":"Person","_key":"25658"} +{"label":"Helena Vondr\u00e1ckov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab6\/4ca2f76a5e73d67049000ab6\/helena-vondrackova-profile.jpg","version":23,"id":"44212","lastModified":"1301901472000","name":"Helena Vondr\u00e1ckov\u00e1","type":"Person","_key":"25659"} +{"label":"Jaroslav Marvan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/916\/4ccd61135e73d65025000916\/jaroslav-marvan-profile.jpg","biography":"<P>Jaroslav Marvan se narodil 11. prosince 1901 na \u017di\u017ekov\u011b v Praze. Od konce 20. let byl \u017eenat\u00fd s Mari\u00ed Marvanovou (s here\u010dku N\u00e1rodn\u00edho divadla, tragicky zesnulou Alenou Jan\u010da\u0159\u00edkovou m\u011bl od roku 1960 dceru Alenu Marvanovou). Marvan byl velmi pe\u010dliv\u00fd, p\u0159esn\u00fd, zodpov\u011bdn\u00fd, p\u0159ipraven\u00fd, na divadle v\u017edy um\u011bl perfektn\u011b text. Lp\u011bl na minutov\u00e9 p\u0159esnosti a nerad m\u011bnil n\u00e1vyky a byl velmi konzervativn\u00ed. V\u011bci v jeho byt\u011b m\u011bly sv\u00e9 pevn\u00e9 m\u00edsto, i v obl\u00e9k\u00e1n\u00ed si v\u017edy potrp\u011bl na nen\u00e1padnou decentnost.<\/P>\r\n<P>Nej","version":34,"birthday":"-2147734800000","id":"44214","birthplace":"Praha","lastModified":"1301901304000","name":"Jaroslav Marvan","type":"Person","_key":"25660"} +{"label":"Bohu\u0161 Z\u00e1horsk\u00fd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33a\/4ca2f5935e73d6142900033a\/bohus-zahorsky-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bBohu\u0161 Z\u00e1horsk\u00fd, vlastn\u00edm jm\u00e9nem Bohumil Z\u00e1horsk\u00fd, se narodil 5. \u00fanora 1906 v Praze. Jeho otec byl prof. \u010cVUT Jan Z\u00e1horsk\u00fd (1872 \u2013 1951). Jeho druhou \u017eenou byla od 1971 here\u010dka Vlasta Fabianov\u00e1 (1912 \u2013 1991). V d\u011btstv\u00ed se velmi nadchl pro divadlo. Z kvinty re\u00e1ln\u00e9ho gymn\u00e1zia ode\u0161el roku 1923 na St\u00e1tn\u00ed konzervato\u0159. Jako konzervatorista \u00fa\u010dinkoval pod pseudonymem B\u00f3\u017ea Horsk\u00fd v experiment\u00e1ln\u00edch studijn\u00edch p\u0159edstaven\u00edch M","version":34,"birthday":"-2016666000000","id":"44213","birthplace":"Praha","lastModified":"1301901301000","name":"Bohu\u0161 Z\u00e1horsk\u00fd","type":"Person","_key":"25661"} +{"label":"Josef Kemr","version":26,"id":"44215","lastModified":"1301902106000","name":"Josef Kemr","type":"Person","_key":"25662"} +{"label":"Darek Vostrel","version":22,"id":"45531","lastModified":"1301902294000","name":"Darek Vostrel","type":"Person","_key":"25663"} +{"label":"Franti\u0161ek Dibarbora","version":17,"id":"137030","lastModified":"1301902701000","name":"Franti\u0161ek Dibarbora","type":"Person","_key":"25664"} +{"label":"Old\u0159ich D\u011bdek","version":17,"id":"137031","lastModified":"1301902689000","name":"Old\u0159ich D\u011bdek","type":"Person","_key":"25665"} +{"label":"Donkey Skin","description":"A fairy godmother helps a princess disguise herself so she won't have to marry a man she doesn't love.","id":"5590","runtime":90,"imdbId":"tt0066207","version":147,"lastModified":"1301904392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43c\/4d3ddff75e73d622cf00043c\/peau-d-ne-mid.jpg","studio":"Marianne Productions","genre":"Comedy","title":"Donkey Skin","releaseDate":30499200000,"language":"en","type":"Movie","_key":"25666"} +{"label":"Testosterone","description":"No overview found.","id":"5591","runtime":103,"imdbId":"tt0378867","version":129,"lastModified":"1301906493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab5\/4d34705e5e73d63352007ab5\/testosterone-mid.jpg","studio":"Blue Streak Films","genre":"Comedy","title":"Testosterone","releaseDate":1051142400000,"language":"en","type":"Movie","_key":"25667"} +{"label":"David Sutcliffe","version":24,"id":"44221","lastModified":"1301901426000","name":"David Sutcliffe","type":"Person","_key":"25668"} +{"label":"Antonio Sabato Jr.","version":33,"id":"44222","lastModified":"1301901981000","name":"Antonio Sabato Jr.","type":"Person","_key":"25669"} +{"label":"Celina Font","version":18,"id":"44223","lastModified":"1301901816000","name":"Celina Font","type":"Person","_key":"25670"} +{"label":"Leonardo Brzezicki","version":20,"id":"44224","lastModified":"1301901894000","name":"Leonardo Brzezicki","type":"Person","_key":"25671"} +{"label":"The Girl Cut in Two","description":"Gabrielle Deneige is an independent, ambitious TV weather girl torn between her love of a distinguished author several decades her senior, and the attentions of a headstrong, potentially unstable young suitor. An unspoken past between the two men heightens tensions, and though she's initially certain of her love for one them, the see-saw demands and whims of both men keep confusing - and darkening - matters. Before long she's encountering emotional and societal forces well beyond her control, in","id":"5592","runtime":115,"imdbId":"tt0901485","trailer":"http:\/\/www.youtube.com\/watch?v=pj5PaLxpwgA","version":106,"lastModified":"1301904192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4c9f0a555e73d6704a00031c\/la-fille-coupee-en-deux-mid.jpg","studio":"Rh\u00f4ne-Alpes Cin\u00e9ma","genre":"Comedy","title":"The Girl Cut in Two","releaseDate":1186531200000,"language":"en","tagline":"One man's love is another man's lust.","type":"Movie","_key":"25672"} +{"label":"Mathilda May","version":30,"id":"44233","lastModified":"1301901315000","name":"Mathilda May","type":"Person","_key":"25673"} +{"label":"Jean-Marie Winling","version":27,"id":"44234","lastModified":"1301901734000","name":"Jean-Marie Winling","type":"Person","_key":"25674"} +{"label":"Was lebst Du?","description":"No overview found.","id":"5593","runtime":85,"imdbId":"tt0473727","version":51,"lastModified":"1301907419000","studio":"Icon Film","genre":"Documentary","title":"Was lebst Du?","releaseDate":1100304000000,"language":"en","type":"Movie","_key":"25675"} +{"label":"Bettina Braun","version":24,"id":"44249","lastModified":"1301901688000","name":"Bettina Braun","type":"Person","_key":"25676"} +{"label":"Ali El Mkllaki","version":18,"id":"45539","lastModified":"1301901981000","name":"Ali El Mkllaki","type":"Person","_key":"25677"} +{"label":"Kais Setti","version":20,"id":"45540","lastModified":"1301901963000","name":"Kais Setti","type":"Person","_key":"25678"} +{"label":"Alban Kadiri","version":20,"id":"45541","lastModified":"1301901789000","name":"Alban Kadiri","type":"Person","_key":"25679"} +{"label":"Ertan Dinc","version":20,"id":"45542","lastModified":"1301901963000","name":"Ertan Dinc","type":"Person","_key":"25680"} +{"label":"Di que s\u00ed","description":"An unlikely couple fake a relationship to win a TV game show prize. Wannabe actress Estrella dreams of becoming a hostess on a romance reality-TV show presented by Amador Rosales. Meanwhile, movie usher and film buff Victor, who hates such reality shows, is being pressured by his mother to be a contestant. Estrella and Victor end up the show's winners and are pursued on their holiday.","id":"5594","runtime":102,"imdbId":"tt0377051","version":52,"lastModified":"1301904446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32b\/4bc91cd0017a3c57fe00b32b\/di-que-si-mid.jpg","studio":"Columbia Films Productions","genre":"Comedy","title":"Di que s\u00ed","releaseDate":1100649600000,"language":"en","type":"Movie","_key":"25681"} +{"label":"Juan Calvo","version":21,"id":"44256","lastModified":"1301901893000","name":"Juan Calvo","type":"Person","_key":"25682"} +{"label":"Constantino Romero","version":19,"id":"44257","lastModified":"1301901734000","name":"Constantino Romero","type":"Person","_key":"25683"} +{"label":"Fermat's Room","description":"Four mathematicians who do not know each other are invited by a mysterious host on the pretext of resolving a great enigma. The room in which they find themselves turns out to be a shrinking room that will crush them if they do not discover in time what connects them all and why someone might wish to murder them.","id":"5595","runtime":90,"imdbId":"tt1016301","trailer":"http:\/\/www.youtube.com\/watch?v=SJ9y4SCLvNc","homepage":"http:\/\/www.mangafilms.es\/lahabitaciondefermat\/","version":132,"lastModified":"1301903963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33c\/4bc91cd2017a3c57fe00b33c\/la-habitacion-de-fermat-mid.jpg","studio":"Bocaboca Producciones S.A.","genre":"Thriller","title":"Fermat's Room","releaseDate":1195171200000,"language":"en","type":"Movie","_key":"25684"} +{"label":"Luis Piedrahita","version":25,"id":"44263","lastModified":"1301901893000","name":"Luis Piedrahita","type":"Person","_key":"25685"} +{"label":"Rodrigo Sope\u00f1a","version":25,"id":"44264","lastModified":"1301901539000","name":"Rodrigo Sope\u00f1a","type":"Person","_key":"25686"} +{"label":"Elena Ballesteros","version":21,"id":"44265","lastModified":"1301901734000","name":"Elena Ballesteros","type":"Person","_key":"25687"} +{"label":"Alejo Sauras","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7f\/4d036b645e73d621a2001a7f\/alejo-sauras-profile.jpg","version":30,"id":"44266","lastModified":"1301901647000","name":"Alejo Sauras","type":"Person","_key":"25688"} +{"label":"Helena Carri\u00f3n","version":21,"id":"45554","lastModified":"1301901893000","name":"Helena Carri\u00f3n","type":"Person","_key":"25689"} +{"label":"N\u00faria Badia","version":21,"id":"45555","lastModified":"1301901893000","name":"N\u00faria Badia","type":"Person","_key":"25690"} +{"label":"Das blaue Licht","description":"No overview found.","id":"5596","runtime":90,"imdbId":"tt0171121","version":61,"lastModified":"1301904958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/346\/4bc91cd5017a3c57fe00b346\/das-blaue-licht-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Das blaue Licht","releaseDate":195609600000,"language":"en","type":"Movie","_key":"25691"} +{"label":"Iris Gusner","version":21,"id":"44267","lastModified":"1301901893000","name":"Iris Gusner","type":"Person","_key":"25692"} +{"label":"Viktor Semyonov","version":18,"id":"44268","lastModified":"1301901981000","name":"Viktor Semyonov","type":"Person","_key":"25693"} +{"label":"Helmut Stra\u00dfburger","version":19,"id":"44269","lastModified":"1301901893000","name":"Helmut Stra\u00dfburger","type":"Person","_key":"25694"} +{"label":"Marylu Poolman","version":21,"id":"27500","lastModified":"1301902167000","name":"Marylu Poolman","type":"Person","_key":"25695"} +{"label":"Christa L\u00f6ser","version":19,"id":"44270","lastModified":"1301902106000","name":"Christa L\u00f6ser","type":"Person","_key":"25696"} +{"label":"Die klugen Dinge","description":"No overview found.","id":"5597","runtime":90,"imdbId":"tt0403206","version":50,"lastModified":"1301906749000","studio":"DEFA","genre":"Fantasy","title":"Die klugen Dinge","releaseDate":126057600000,"language":"en","type":"Movie","_key":"25697"} +{"label":"Gunter Sonneson","version":20,"id":"44279","lastModified":"1301901657000","name":"Gunter Sonneson","type":"Person","_key":"25698"} +{"label":"Adolf Peter Hoffmann","version":20,"id":"44280","lastModified":"1301901789000","name":"Adolf Peter Hoffmann","type":"Person","_key":"25699"} +{"label":"Hans-J\u00fcrgen Silbermann","version":20,"id":"44281","lastModified":"1301902158000","name":"Hans-J\u00fcrgen Silbermann","type":"Person","_key":"25700"} +{"label":"Siegfried Worch","version":20,"id":"44282","lastModified":"1301902158000","name":"Siegfried Worch","type":"Person","_key":"25701"} +{"label":"Eberhard Mellis","version":16,"id":"27064","lastModified":"1301902158000","name":"Eberhard Mellis","type":"Person","_key":"25702"} +{"label":"Elsa Grube-Deister","version":21,"id":"44287","lastModified":"1301901825000","name":"Elsa Grube-Deister","type":"Person","_key":"25703"} +{"label":"Rainer Hausdorf","version":21,"id":"44283","lastModified":"1301902158000","name":"Rainer Hausdorf","type":"Person","_key":"25704"} +{"label":"Rotk\u00e4ppchen","description":"No overview found.","id":"5598","runtime":90,"imdbId":"tt0056430","version":43,"lastModified":"1301908597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34b\/4bc91cd5017a3c57fe00b34b\/rotkappchen-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Rotk\u00e4ppchen","releaseDate":-235785600000,"language":"en","type":"Movie","_key":"25705"} +{"label":"G\u00f6tz Friedrich","version":20,"id":"44288","lastModified":"1301902158000","name":"G\u00f6tz Friedrich","type":"Person","_key":"25706"} +{"label":"Harald Engelmann","version":20,"id":"44289","lastModified":"1301902192000","name":"Harald Engelmann","type":"Person","_key":"25707"} +{"label":"Friedel Nowak","version":20,"id":"44290","lastModified":"1301902158000","name":"Friedel Nowak","type":"Person","_key":"25708"} +{"label":"Jochen Bley","version":22,"id":"44291","lastModified":"1301902158000","name":"Jochen Bley","type":"Person","_key":"25709"} +{"label":"Bahnw\u00e4rter Thiel","description":"No overview found.","id":"5599","runtime":90,"imdbId":"tt0124997","version":40,"lastModified":"1301906749000","studio":"DEFA","genre":"Drama","title":"Bahnw\u00e4rter Thiel","releaseDate":406684800000,"language":"en","type":"Movie","_key":"25710"} +{"label":"Hans-Joachim Kasprzik","version":20,"id":"36700","lastModified":"1301901656000","name":"Hans-Joachim Kasprzik","type":"Person","_key":"25711"} +{"label":"Martin Trettau","version":21,"id":"36711","lastModified":"1301901963000","name":"Martin Trettau","type":"Person","_key":"25712"} +{"label":"Walfriede Schmitt","version":22,"id":"44304","lastModified":"1301901963000","name":"Walfriede Schmitt","type":"Person","_key":"25713"} +{"label":"Die Schauspielerin","description":"No overview found.","id":"5600","runtime":90,"imdbId":"tt0096051","version":50,"lastModified":"1301906176000","studio":"DEFA","genre":"Drama","title":"Die Schauspielerin","releaseDate":592704000000,"language":"en","type":"Movie","_key":"25714"} +{"label":"Siegfried K\u00fchn","version":21,"id":"44305","lastModified":"1301901816000","name":"Siegfried K\u00fchn","type":"Person","_key":"25715"} +{"label":"J\u00fcrgen Watzke","version":21,"id":"44306","lastModified":"1301901840000","name":"J\u00fcrgen Watzke","type":"Person","_key":"25716"} +{"label":"Gesine Laatz","version":20,"id":"45569","lastModified":"1301902347000","name":"Gesine Laatz","type":"Person","_key":"25717"} +{"label":"Traitement de choc","description":"No overview found.","id":"5601","runtime":91,"imdbId":"tt0070827","version":53,"lastModified":"1301906632000","studio":"A.J. Films","genre":"Crime","title":"Traitement de choc","releaseDate":96163200000,"language":"en","type":"Movie","_key":"25718"} +{"label":"Robert Hirsch","version":19,"id":"44307","lastModified":"1301901893000","name":"Robert Hirsch","type":"Person","_key":"25719"} +{"label":"Jean-Fran\u00e7ois Calv\u00e9","version":19,"id":"44308","lastModified":"1301902106000","name":"Jean-Fran\u00e7ois Calv\u00e9","type":"Person","_key":"25720"} +{"label":"Jurandir Craveiro","version":19,"id":"44309","lastModified":"1301901893000","name":"Jurandir Craveiro","type":"Person","_key":"25721"} +{"label":"Joao Pareira Lopez","version":19,"id":"44310","lastModified":"1301901893000","name":"Joao Pareira Lopez","type":"Person","_key":"25722"} +{"label":"Alvaro Luis Carrasquinha","version":19,"id":"44311","lastModified":"1301901893000","name":"Alvaro Luis Carrasquinha","type":"Person","_key":"25723"} +{"label":"Dupont Lajoie","description":"No overview found.","id":"5602","runtime":90,"imdbId":"tt0071449","version":50,"lastModified":"1301904958000","studio":"Sofracima","genre":"Drama","title":"Dupont Lajoie","releaseDate":162604800000,"language":"en","type":"Movie","_key":"25724"} +{"label":"Yves Boisset","version":23,"id":"32940","lastModified":"1301901580000","name":"Yves Boisset","type":"Person","_key":"25725"} +{"label":"Oaxaca - Zwischen Rebellion und Utopie","description":"No overview found.","id":"5606","runtime":80,"homepage":"http:\/\/moviemientos.de\/","version":16,"lastModified":"1301908601000","genre":"Documentary","title":"Oaxaca - Zwischen Rebellion und Utopie","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"25726"} +{"label":"Miriam Fischer","version":17,"id":"44333","lastModified":"1301902347000","name":"Miriam Fischer","type":"Person","_key":"25727"} +{"label":"Die Nibelungen, Teil 1: Siegfried","description":"No overview found.","id":"5608","runtime":91,"imdbId":"tt0060749","version":64,"lastModified":"1301907282000","studio":"Avala Film","genre":"Adventure","title":"Die Nibelungen, Teil 1: Siegfried","releaseDate":-96336000000,"language":"en","type":"Movie","_key":"25728"} +{"label":"Uwe Beyer","version":19,"id":"44345","lastModified":"1301901893000","name":"Uwe Beyer","type":"Person","_key":"25729"} +{"label":"Maria Marlow","version":20,"id":"44346","lastModified":"1301901616000","name":"Maria Marlow","type":"Person","_key":"25730"} +{"label":"Siegfried Wischnewski","version":21,"id":"44348","lastModified":"1301902294000","name":"Siegfried Wischnewski","type":"Person","_key":"25731"} +{"label":"Hans von Borsody","version":23,"id":"44349","lastModified":"1301902343000","name":"Hans von Borsody","type":"Person","_key":"25732"} +{"label":"Fred Williams","version":33,"id":"44358","lastModified":"1301901638000","name":"Fred Williams","type":"Person","_key":"25733"} +{"label":"Skip Martin","version":26,"id":"44350","lastModified":"1301902201000","name":"Skip Martin","type":"Person","_key":"25734"} +{"label":"Samson Burke","version":23,"id":"44351","lastModified":"1301901850000","name":"Samson Burke","type":"Person","_key":"25735"} +{"label":"Hilde Weissner","version":20,"id":"44352","lastModified":"1301902374000","name":"Hilde Weissner","type":"Person","_key":"25736"} +{"label":"Barbara Bold","version":20,"id":"44353","lastModified":"1301902294000","name":"Barbara Bold","type":"Person","_key":"25737"} +{"label":"Ingrid Lotarius","version":19,"id":"44354","lastModified":"1301902294000","name":"Ingrid Lotarius","type":"Person","_key":"25738"} +{"label":"Maria Hofen","version":21,"id":"44355","lastModified":"1301902294000","name":"Maria Hofen","type":"Person","_key":"25739"} +{"label":"Milan Bosiljcic","version":20,"id":"44356","lastModified":"1301902374000","name":"Milan Bosiljcic","type":"Person","_key":"25740"} +{"label":"Djordje Nenadovic","version":19,"id":"44357","lastModified":"1301902294000","name":"Djordje Nenadovic","type":"Person","_key":"25741"} +{"label":"Die Nibelungen, Teil 2: Kriemhilds Rache","description":"No overview found.","id":"5609","runtime":88,"imdbId":"tt0060750","version":47,"lastModified":"1301906081000","studio":"Avala Film","genre":"Adventure","title":"Die Nibelungen, Teil 2: Kriemhilds Rache","releaseDate":-64540800000,"language":"en","type":"Movie","_key":"25742"} +{"label":"Cousin, cousine","description":"No overview found.","id":"5618","runtime":95,"imdbId":"tt0072826","version":84,"lastModified":"1301906632000","studio":"Gaumont","genre":"Comedy","title":"Cousin, cousine","releaseDate":185587200000,"language":"en","type":"Movie","_key":"25743"} +{"label":"Sybil Maas","version":20,"id":"44400","lastModified":"1301902374000","name":"Sybil Maas","type":"Person","_key":"25744"} +{"label":"Pierre Forget","version":21,"id":"51948","lastModified":"1301902106000","name":"Pierre Forget","type":"Person","_key":"25745"} +{"label":"All\u00f4 police: Retour \u00e0 l'envoyeur","description":"No overview found.","id":"5619","runtime":60,"imdbId":"tt0374173","version":44,"lastModified":"1301419375000","genre":"Crime","title":"All\u00f4 police: Retour \u00e0 l'envoyeur","releaseDate":17280000000,"language":"en","type":"Movie","_key":"25746"} +{"label":"Claude Ruben","version":20,"id":"44402","lastModified":"1301902379000","name":"Claude Ruben","type":"Person","_key":"25747"} +{"label":"Marion Loran","version":20,"id":"44403","lastModified":"1301902392000","name":"Marion Loran","type":"Person","_key":"25748"} +{"label":"Juliet Mills","version":28,"id":"44404","lastModified":"1301901715000","name":"Juliet Mills","type":"Person","_key":"25749"} +{"label":"Jean Marconi","version":20,"id":"44405","lastModified":"1301902391000","name":"Jean Marconi","type":"Person","_key":"25750"} +{"label":"Marcelle Ranson-Herv\u00e9","version":20,"id":"44406","lastModified":"1301902381000","name":"Marcelle Ranson-Herv\u00e9","type":"Person","_key":"25751"} +{"label":"Bernard Charlan","version":20,"id":"44407","lastModified":"1301902374000","name":"Bernard Charlan","type":"Person","_key":"25752"} +{"label":"Andr\u00e9 Thorent","version":20,"id":"44408","lastModified":"1301902382000","name":"Andr\u00e9 Thorent","type":"Person","_key":"25753"} +{"label":"Count Dracula","description":"Jess Franco's version of the Bram Stoker classic has Count Dracula as an old man who grows younger whenever he dines on the blood of young maidens.","id":"5620","runtime":98,"imdbId":"tt0065569","version":104,"lastModified":"1301906081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/591\/4d1c9c9d5e73d6082e00c591\/nachts-wenn-dracula-erwacht-mid.jpg","studio":"Corona Filmproduktion","genre":"Horror","title":"Count Dracula","releaseDate":7948800000,"language":"en","type":"Movie","_key":"25754"} +{"label":"Soledad Miranda","version":28,"id":"44409","lastModified":"1301901491000","name":"Soledad Miranda","type":"Person","_key":"25755"} +{"label":"Jos\u00e9 Mart\u00ednez Blanco","version":19,"id":"97726","lastModified":"1301902645000","name":"Jos\u00e9 Mart\u00ednez Blanco","type":"Person","_key":"25756"} +{"label":"Emma Cohen","version":23,"id":"97662","lastModified":"1301902305000","name":"Emma Cohen","type":"Person","_key":"25757"} +{"label":"Colette Giacobine","version":19,"id":"97727","lastModified":"1301902692000","name":"Colette Giacobine","type":"Person","_key":"25758"} +{"label":"Le Jouisseur","description":"No overview found.","id":"5621","runtime":104,"imdbId":"tt0141446","version":42,"lastModified":"1301906632000","studio":"Comptoir Fran\u00e7ais du Film Production","genre":"Comedy","title":"Le Jouisseur","releaseDate":171072000000,"language":"en","type":"Movie","_key":"25759"} +{"label":"Olivier Mathot","version":26,"id":"44411","lastModified":"1301902151000","name":"Olivier Mathot","type":"Person","_key":"25760"} +{"label":"Willy Braque","version":21,"id":"44412","lastModified":"1301902106000","name":"Willy Braque","type":"Person","_key":"25761"} +{"label":"Maria Mancini","version":20,"id":"44413","lastModified":"1301901999000","name":"Maria Mancini","type":"Person","_key":"25762"} +{"label":"Raymond Hardy","version":24,"id":"44414","lastModified":"1301902377000","name":"Raymond Hardy","type":"Person","_key":"25763"} +{"label":"Victor Mend\u00e9s","version":20,"id":"44415","lastModified":"1301901999000","name":"Victor Mend\u00e9s","type":"Person","_key":"25764"} +{"label":"Pamela Stanford","version":21,"id":"44416","lastModified":"1301902106000","name":"Pamela Stanford","type":"Person","_key":"25765"} +{"label":"Brigitte Monnin","version":19,"id":"44417","lastModified":"1301902294000","name":"Brigitte Monnin","type":"Person","_key":"25766"} +{"label":"Monica Swinn","version":22,"id":"101699","lastModified":"1301902718000","name":"Monica Swinn","type":"Person","_key":"25767"} +{"label":"Caroline Rivi\u00e8re","version":17,"id":"102156","lastModified":"1301902637000","name":"Caroline Rivi\u00e8re","type":"Person","_key":"25768"} +{"label":"And the Ship Sails On","description":"Film depicts the events on board a luxury liner filled with the friends of a deceased opera singer who have gathered to mourn her.","id":"5622","runtime":132,"imdbId":"tt0087188","version":89,"lastModified":"1301906334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7e\/4cf860745e73d6299a001d7e\/e-la-nave-va-mid.jpg","studio":"Vides Cinematografica","genre":"Comedy","title":"And the Ship Sails On","releaseDate":432000000000,"language":"en","type":"Movie","_key":"25769"} +{"label":"Peter Cellier","version":21,"id":"44419","lastModified":"1301901734000","name":"Peter Cellier","type":"Person","_key":"25770"} +{"label":"Victor Poletti","version":21,"id":"44420","lastModified":"1301902294000","name":"Victor Poletti","type":"Person","_key":"25771"} +{"label":"Elisa Mainardi","version":23,"id":"44421","lastModified":"1301902294000","name":"Elisa Mainardi","type":"Person","_key":"25772"} +{"label":"Norma West","version":21,"id":"44422","lastModified":"1301902294000","name":"Norma West","type":"Person","_key":"25773"} +{"label":"The Devil Came from Akasava","description":"A mineral is discovered which can turn metal to gold or humans into zombies. When the mineral is stolen, secret agents are sent in to get the mineral back!","id":"5623","runtime":84,"imdbId":"tt0067846","version":111,"lastModified":"1302053408000","studio":"CCC Filmkunst GmbH","genre":"Crime","title":"The Devil Came from Akasava","releaseDate":36979200000,"language":"en","type":"Movie","_key":"25774"} +{"label":"Ewa Str\u00f6mberg","version":24,"id":"44423","lastModified":"1301901999000","name":"Ewa Str\u00f6mberg","type":"Person","_key":"25775"} +{"label":"Rudolf Hertzog","version":19,"id":"100323","lastModified":"1301902648000","name":"Rudolf Hertzog","type":"Person","_key":"25776"} +{"label":"Karl Heinz Mannchen","version":26,"id":"100320","lastModified":"1301902667000","name":"Karl Heinz Mannchen","type":"Person","_key":"25777"} +{"label":"\u00c1ngel Men\u00e9ndez","version":30,"id":"99560","lastModified":"1301902168000","name":"\u00c1ngel Men\u00e9ndez","type":"Person","_key":"25778"} +{"label":"Der Todesr\u00e4cher von Soho","description":"No overview found.","id":"5624","runtime":90,"imdbId":"tt0067453","version":55,"lastModified":"1301905647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/354\/4bc91cd5017a3c57fe00b354\/der-todesracher-von-soho-mid.jpg","studio":"Central Cinema Company Film","genre":"Crime","title":"Der Todesr\u00e4cher von Soho","releaseDate":90115200000,"language":"en","type":"Movie","_key":"25779"} +{"label":"Wolfgang Kieling","version":25,"id":"26517","lastModified":"1301901648000","name":"Wolfgang Kieling","type":"Person","_key":"25780"} +{"label":"Elisa Mont\u00e9s","version":27,"id":"44424","lastModified":"1301996520000","name":"Elisa Mont\u00e9s","type":"Person","_key":"25781"} +{"label":"Eva Garden","version":22,"id":"44425","lastModified":"1301902294000","name":"Eva Garden","type":"Person","_key":"25782"} +{"label":"Madame und ihre Nichte","description":"No overview found.","id":"5625","runtime":90,"imdbId":"tt0064618","version":38,"lastModified":"1301906081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/359\/4bc91cd5017a3c57fe00b359\/madame-und-ihre-nichte-mid.jpg","studio":"Rapid-Film","genre":"Erotic","title":"Madame und ihre Nichte","releaseDate":-20476800000,"language":"en","type":"Movie","_key":"25783"} +{"label":"Eberhard Schr\u00f6der","version":20,"id":"44433","lastModified":"1301902106000","name":"Eberhard Schr\u00f6der","type":"Person","_key":"25784"} +{"label":"Ruth-Maria Kubitschek","version":26,"id":"28568","lastModified":"1301901496000","name":"Ruth-Maria Kubitschek","type":"Person","_key":"25785"} +{"label":"Rainer Penkert","version":22,"id":"44435","lastModified":"1301902390000","name":"Rainer Penkert","type":"Person","_key":"25786"} +{"label":"Karl Walter Diess","version":21,"id":"44436","lastModified":"1301902294000","name":"Karl Walter Diess","type":"Person","_key":"25787"} +{"label":"Ini Assmann","version":19,"id":"44437","lastModified":"1301901893000","name":"Ini Assmann","type":"Person","_key":"25788"} +{"label":"Ich schlafe mit meinem M\u00f6rder","description":"No overview found.","id":"5626","runtime":84,"imdbId":"tt0065876","version":46,"lastModified":"1301906081000","studio":"Rapid-Film","genre":"Crime","title":"Ich schlafe mit meinem M\u00f6rder","releaseDate":30672000000,"language":"en","type":"Movie","_key":"25789"} +{"label":"V\u00e9ronique Vendell","version":23,"id":"44439","lastModified":"1301902203000","name":"V\u00e9ronique Vendell","type":"Person","_key":"25790"} +{"label":"Wolf Harnisch","version":20,"id":"44440","lastModified":"1301902294000","name":"Wolf Harnisch","type":"Person","_key":"25791"} +{"label":"Ellen Umlauf","version":21,"id":"44441","lastModified":"1301902294000","name":"Ellen Umlauf","type":"Person","_key":"25792"} +{"label":"Helge T. Larisch","version":19,"id":"44442","lastModified":"1301902294000","name":"Helge T. Larisch","type":"Person","_key":"25793"} +{"label":"Rosl Mayr","version":19,"id":"44443","lastModified":"1301902106000","name":"Rosl Mayr","type":"Person","_key":"25794"} +{"label":"Die Bande des Schreckens","description":"No overview found.","id":"5630","runtime":92,"imdbId":"tt0053630","version":47,"lastModified":"1301908593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35e\/4bc91cd5017a3c57fe00b35e\/die-bande-des-schreckens-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Die Bande des Schreckens","releaseDate":-295142400000,"language":"en","type":"Movie","_key":"25795"} +{"label":"Karin Kernke","version":20,"id":"44466","lastModified":"1301902391000","name":"Karin Kernke","type":"Person","_key":"25796"} +{"label":"Karl-Georg Saebisch","version":20,"id":"44469","lastModified":"1301902376000","name":"Karl-Georg Saebisch","type":"Person","_key":"25797"} +{"label":"The Green Archer","description":"The country estate of American emigre Abel Bellamy (Gerd Fr\u00f6be, in fine intimidating form) is haunted by the ghost of the Green Archer, a 14th century Robin Hood type figure who terrorised the former lords of the manor.Now, with the gangster coming home on vaguely defined business and his niece Valerie (Karin Dor) arriving with her adoptive father to take up residence in the adjacent mansion, much to Bellamy's annoyance, the archer has returned.<br\/>Who is he and what does he want?","id":"5631","runtime":90,"imdbId":"tt0054947","version":101,"lastModified":"1301907282000","studio":"Rialto Film","genre":"Crime","title":"The Green Archer","releaseDate":-281232000000,"language":"en","type":"Movie","_key":"25798"} +{"label":"J\u00fcrgen Roland","version":25,"id":"36431","lastModified":"1301901539000","name":"J\u00fcrgen Roland","type":"Person","_key":"25799"} +{"label":"Klausj\u00fcrgen Wussow","version":20,"id":"44474","lastModified":"1301902184000","name":"Klausj\u00fcrgen Wussow","type":"Person","_key":"25800"} +{"label":"Edith Teichmann","version":20,"id":"44475","lastModified":"1301901999000","name":"Edith Teichmann","type":"Person","_key":"25801"} +{"label":"Hela Gruel","version":20,"id":"36312","lastModified":"1301901935000","name":"Hela Gruel","type":"Person","_key":"25802"} +{"label":"Hans Epskamp","version":20,"id":"44476","lastModified":"1301902374000","name":"Hans Epskamp","type":"Person","_key":"25803"} +{"label":"Der F\u00e4lscher von London","description":"No overview found.","id":"5632","runtime":93,"imdbId":"tt0054906","version":48,"lastModified":"1301908337000","studio":"Rialto Film","genre":"Crime","title":"Der F\u00e4lscher von London","releaseDate":-264297600000,"language":"en","type":"Movie","_key":"25804"} +{"label":"Robert Graf","version":46,"id":"44482","lastModified":"1302062429000","name":"Robert Graf","type":"Person","_key":"25805"} +{"label":"Joseph Offenbach","version":24,"id":"44484","lastModified":"1301901553000","name":"Joseph Offenbach","type":"Person","_key":"25806"} +{"label":"Viktor de Kowa","version":22,"id":"44486","lastModified":"1301901798000","name":"Viktor de Kowa","type":"Person","_key":"25807"} +{"label":"Der W\u00fcrger von Schlo\u00df Blackmore","description":"No overview found.","id":"5634","runtime":87,"imdbId":"tt0057692","version":43,"lastModified":"1301907282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/363\/4bc91cd6017a3c57fe00b363\/der-wurger-von-schlo-blackmore-mid.jpg","genre":"Crime","title":"Der W\u00fcrger von Schlo\u00df Blackmore","releaseDate":-206150400000,"language":"en","type":"Movie","_key":"25808"} +{"label":"Ingmar Zeisberg","version":19,"id":"44494","lastModified":"1301902106000","name":"Ingmar Zeisberg","type":"Person","_key":"25809"} +{"label":"Rudolf Fernau","version":19,"id":"44496","lastModified":"1301902106000","name":"Rudolf Fernau","type":"Person","_key":"25810"} +{"label":"Richard H\u00e4ussler","version":20,"id":"44498","lastModified":"1301902294000","name":"Richard H\u00e4ussler","type":"Person","_key":"25811"} +{"label":"Der unheimliche M\u00f6nch","description":"No overview found.","id":"5635","runtime":87,"imdbId":"tt0059846","version":49,"lastModified":"1301907282000","studio":"Rialto Film","genre":"Crime","title":"Der unheimliche M\u00f6nch","releaseDate":-127526400000,"language":"en","type":"Movie","_key":"25812"} +{"label":"Hartmut Reck","version":19,"id":"44499","lastModified":"1301902294000","name":"Hartmut Reck","type":"Person","_key":"25813"} +{"label":"Susanne Hsiao","version":19,"id":"44500","lastModified":"1301902294000","name":"Susanne Hsiao","type":"Person","_key":"25814"} +{"label":"Kurt Waitzmann","version":20,"id":"44501","lastModified":"1301901893000","name":"Kurt Waitzmann","type":"Person","_key":"25815"} +{"label":"Kurd Pieritz","version":23,"id":"44502","lastModified":"1301901961000","name":"Kurd Pieritz","type":"Person","_key":"25816"} +{"label":"Der Schatz im Silbersee","description":"No overview found.","id":"5636","runtime":111,"imdbId":"tt0056452","version":55,"lastModified":"1301905981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ff\/4cabbe4a5e73d64dce0000ff\/der-schatz-im-silbersee-mid.jpg","studio":"Rialto Film","genre":"Adventure","title":"Der Schatz im Silbersee","releaseDate":-222480000000,"language":"en","type":"Movie","_key":"25817"} +{"label":"Die Antwort kennt nur der Wind","description":"No overview found.","id":"5637","runtime":107,"imdbId":"tt0071153","version":54,"lastModified":"1301906632000","studio":"Roxy Film","genre":"Crime","title":"Die Antwort kennt nur der Wind","releaseDate":154137600000,"language":"en","type":"Movie","_key":"25818"} +{"label":"Marthe Keller","version":45,"id":"25282","lastModified":"1301901564000","name":"Marthe Keller","type":"Person","_key":"25819"} +{"label":"Christian Barbier","version":19,"id":"44509","lastModified":"1301902294000","name":"Christian Barbier","type":"Person","_key":"25820"} +{"label":"Eva Pflug","version":21,"id":"44511","lastModified":"1301902298000","name":"Eva Pflug","type":"Person","_key":"25821"} +{"label":"Friedrich Nowottny","version":19,"id":"44512","lastModified":"1301902294000","name":"Friedrich Nowottny","type":"Person","_key":"25822"} +{"label":"Heinz Baumann","version":22,"id":"27595","lastModified":"1301901656000","name":"Heinz Baumann","type":"Person","_key":"25823"} +{"label":"G\u00fcnter Mack","version":19,"id":"26418","lastModified":"1301901893000","name":"G\u00fcnter Mack","type":"Person","_key":"25824"} +{"label":"Alice's Restaurant","description":"Alice's Restaurant is a 1969 movie adapted from a song by Arlo Guthrie. The song is Arlo Guthrie's most famous work, a talking blues based on a true story that began on Thanksgiving Day 1965. The movie reproduces the events of the song, in addition to other scenes.","id":"5638","runtime":111,"imdbId":"tt0064002","version":426,"lastModified":"1301903855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/370\/4bc91cd9017a3c57fe00b370\/alice-s-restaurant-mid.jpg","studio":"Florin Productions","genre":"Comedy","title":"Alice's Restaurant","releaseDate":-11577600000,"language":"en","type":"Movie","_key":"25825"} +{"label":"Arlo Guthrie","version":32,"id":"44547","lastModified":"1301902023000","name":"Arlo Guthrie","type":"Person","_key":"25826"} +{"label":"Tina Chen","version":19,"id":"44550","lastModified":"1301901616000","name":"Tina Chen","type":"Person","_key":"25827"} +{"label":"Geoff Outlaw","version":19,"id":"44551","lastModified":"1301902294000","name":"Geoff Outlaw","type":"Person","_key":"25828"} +{"label":"Michael McClanathan","version":22,"id":"44552","lastModified":"1301902294000","name":"Michael McClanathan","type":"Person","_key":"25829"} +{"label":"Pete Seeger","version":22,"id":"44549","lastModified":"1301902167000","name":"Pete Seeger","type":"Person","_key":"25830"} +{"label":"Lee Hays","version":19,"id":"44553","lastModified":"1301902106000","name":"Lee Hays","type":"Person","_key":"25831"} +{"label":"Kathleen Dabney","version":19,"id":"81547","lastModified":"1301902468000","name":"Kathleen Dabney","type":"Person","_key":"25832"} +{"label":"William Obanhein","version":19,"id":"81548","lastModified":"1301902294000","name":"William Obanhein","type":"Person","_key":"25833"} +{"label":"Seth Allen","version":19,"id":"81549","lastModified":"1301902468000","name":"Seth Allen","type":"Person","_key":"25834"} +{"label":"Monroe Arnold","version":19,"id":"81550","lastModified":"1301902294000","name":"Monroe Arnold","type":"Person","_key":"25835"} +{"label":"Joseph Boley","version":19,"id":"81551","lastModified":"1301901734000","name":"Joseph Boley","type":"Person","_key":"25836"} +{"label":"Vinnette Carroll","version":19,"id":"81552","lastModified":"1301902468000","name":"Vinnette Carroll","type":"Person","_key":"25837"} +{"label":"Sylvia Davis","version":19,"id":"81553","lastModified":"1301902468000","name":"Sylvia Davis","type":"Person","_key":"25838"} +{"label":"Simm Landres","version":19,"id":"81554","lastModified":"1301902106000","name":"Simm Landres","type":"Person","_key":"25839"} +{"label":"Eulalie Noble","version":19,"id":"81555","lastModified":"1301902294000","name":"Eulalie Noble","type":"Person","_key":"25840"} +{"label":"Louis Beachner","version":19,"id":"81556","lastModified":"1301902468000","name":"Louis Beachner","type":"Person","_key":"25841"} +{"label":"MacIntyre Dixon","version":21,"id":"81557","lastModified":"1301902293000","name":"MacIntyre Dixon","type":"Person","_key":"25842"} +{"label":"Arthur Pierce Middleton","version":19,"id":"81558","lastModified":"1301902294000","name":"Arthur Pierce Middleton","type":"Person","_key":"25843"} +{"label":"Donald Marye","version":19,"id":"81559","lastModified":"1301902294000","name":"Donald Marye","type":"Person","_key":"25844"} +{"label":"Shelley Plimpton","version":19,"id":"81560","lastModified":"1301902294000","name":"Shelley Plimpton","type":"Person","_key":"25845"} +{"label":"Ron Weyand","version":21,"id":"81561","lastModified":"1301902293000","name":"Ron Weyand","type":"Person","_key":"25846"} +{"label":"Eleanor D. Wilson","version":19,"id":"81562","lastModified":"1301902468000","name":"Eleanor D. Wilson","type":"Person","_key":"25847"} +{"label":"Neil Brooks Cunningham","version":18,"id":"81563","lastModified":"1301902544000","name":"Neil Brooks Cunningham","type":"Person","_key":"25848"} +{"label":"Thomas De Wolfe","version":19,"id":"81564","lastModified":"1301902293000","name":"Thomas De Wolfe","type":"Person","_key":"25849"} +{"label":"James Hannon","version":18,"id":"81565","lastModified":"1301902390000","name":"James Hannon","type":"Person","_key":"25850"} +{"label":"John E. Quill","version":19,"id":"81566","lastModified":"1301902468000","name":"John E. Quill","type":"Person","_key":"25851"} +{"label":"Alice Brock","version":19,"id":"81567","lastModified":"1301902293000","name":"Alice Brock","type":"Person","_key":"25852"} +{"label":"Ich bin die Andere","description":"No overview found.","id":"5640","runtime":104,"imdbId":"tt0484434","version":75,"lastModified":"1301903267000","studio":"Concorde Filmverleih","genre":"Drama","title":"Ich bin die Andere","releaseDate":1160006400000,"language":"en","type":"Movie","_key":"25853"} +{"label":"Bernadette Heerwagen","version":24,"id":"44521","lastModified":"1301901656000","name":"Bernadette Heerwagen","type":"Person","_key":"25854"} +{"label":"Peter Lerchbaumer","version":22,"id":"44522","lastModified":"1301902158000","name":"Peter Lerchbaumer","type":"Person","_key":"25855"} +{"label":"Eve and the Handyman","description":"Eve is dressed in a long raincoat and follows the handyman around as he makes his appointed rounds. She watches as he has humorous run-ins while cleaning toilets, taking scrap metal to the dump, cleaning windows, delivering a tree, climbing poles, and remaining a gentleman while trying to help a topless hitchhiker. But why is she watching him so carefully? Written by Ed Sutton <esutton@mindspring.com>","id":"5642","runtime":65,"imdbId":"tt0054859","version":59,"lastModified":"1301906081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/267\/4bd9a09a017a3c1bff000267\/eve-and-the-handyman-mid.jpg","studio":"Eve Productions Inc.","genre":"Erotic","title":"Eve and the Handyman","releaseDate":-273283200000,"language":"en","type":"Movie","_key":"25856"} +{"label":"Eve Meyer","version":23,"id":"4680","lastModified":"1301901358000","name":"Eve Meyer","type":"Person","_key":"25857"} +{"label":"Frank Bolger","version":25,"id":"44535","lastModified":"1301902349000","name":"Frank Bolger","type":"Person","_key":"25858"} +{"label":"Iris Bristol","version":19,"id":"44536","lastModified":"1301901893000","name":"Iris Bristol","type":"Person","_key":"25859"} +{"label":"Joseph Carroll","version":19,"id":"44537","lastModified":"1301902293000","name":"Joseph Carroll","type":"Person","_key":"25860"} +{"label":"Rita Day","version":19,"id":"44538","lastModified":"1301902293000","name":"Rita Day","type":"Person","_key":"25861"} +{"label":"James A. Evanoff","version":17,"id":"44539","lastModified":"1301902293000","name":"James A. Evanoff","type":"Person","_key":"25862"} +{"label":"Gigi Frost","version":19,"id":"44540","lastModified":"1301902293000","name":"Gigi Frost","type":"Person","_key":"25863"} +{"label":"Mildred Knezevich","version":19,"id":"44541","lastModified":"1301902293000","name":"Mildred Knezevich","type":"Person","_key":"25864"} +{"label":"Francesca Leslie","version":17,"id":"44542","lastModified":"1301902293000","name":"Francesca Leslie","type":"Person","_key":"25865"} +{"label":"Lee Merrin","version":19,"id":"44543","lastModified":"1301902293000","name":"Lee Merrin","type":"Person","_key":"25866"} +{"label":"Six-Pack","description":"No overview found.","id":"5643","runtime":110,"imdbId":"tt0221554","version":83,"lastModified":"1301904891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bae\/4d1fc72e5e73d66b34001bae\/six-pack-mid.jpg","studio":"Chrysalide Film","genre":"Action","title":"Six-Pack","releaseDate":956707200000,"language":"en","type":"Movie","_key":"25867"} +{"label":"Alain Berb\u00e9rian","version":26,"id":"44554","lastModified":"1301901983000","name":"Alain Berb\u00e9rian","type":"Person","_key":"25868"} +{"label":"Richard Anconina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e2\/4bfac034017a3c702d0005e2\/richard-anconina-profile.jpg","version":39,"id":"44556","lastModified":"1301901577000","name":"Richard Anconina","type":"Person","_key":"25869"} +{"label":"Jonathan Firth","version":39,"id":"44557","lastModified":"1301901789000","name":"Jonathan Firth","type":"Person","_key":"25870"} +{"label":"Carole Richert","version":23,"id":"44558","lastModified":"1301902349000","name":"Carole Richert","type":"Person","_key":"25871"} +{"label":"Betty Bomonde","version":21,"id":"44559","lastModified":"1301902386000","name":"Betty Bomonde","type":"Person","_key":"25872"} +{"label":"Hubert Saint-Macary","version":29,"id":"44560","lastModified":"1301901701000","name":"Hubert Saint-Macary","type":"Person","_key":"25873"} +{"label":"Olivier Pag\u00e8s","version":19,"id":"44561","lastModified":"1301902390000","name":"Olivier Pag\u00e8s","type":"Person","_key":"25874"} +{"label":"Die Schatzinsel","description":"No overview found.","id":"5644","runtime":160,"imdbId":"tt0893548","version":81,"lastModified":"1301903563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/220\/4d1a89825e73d665a6000220\/die-schatzinsel-mid.jpg","studio":"Janus Films","genre":"Adventure","title":"Die Schatzinsel","releaseDate":1196035200000,"language":"en","type":"Movie","_key":"25875"} +{"label":"Hansj\u00f6rg Thurn","version":26,"id":"44562","lastModified":"1301901952000","name":"Hansj\u00f6rg Thurn","type":"Person","_key":"25876"} +{"label":"Fran\u00e7ois Goeske","version":31,"id":"44565","lastModified":"1301901350000","name":"Fran\u00e7ois Goeske","type":"Person","_key":"25877"} +{"label":"Diane Siemons-Willems","version":23,"id":"44566","lastModified":"1301901476000","name":"Diane Siemons-Willems","type":"Person","_key":"25878"} +{"label":"Tobias Moretti","version":28,"id":"44567","lastModified":"1301901524000","name":"Tobias Moretti","type":"Person","_key":"25879"} +{"label":"Hardy Schulz","version":23,"id":"44568","lastModified":"1301901893000","name":"Hardy Schulz","type":"Person","_key":"25880"} +{"label":"B\u00fclent Sharif","version":26,"id":"44569","lastModified":"1301901893000","name":"B\u00fclent Sharif","type":"Person","_key":"25881"} +{"label":"Luise B\u00e4hr","version":24,"id":"38297","lastModified":"1301901617000","name":"Luise B\u00e4hr","type":"Person","_key":"25882"} +{"label":"Erotica","description":"No overview found.","id":"5645","runtime":68,"imdbId":"tt0054852","version":60,"lastModified":"1301904709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/149\/4c1df03b7b9aa11e95000149\/erotica-mid.jpg","studio":"Pad-Ram Enterprises","genre":"Comedy","title":"Erotica","releaseDate":-267235200000,"language":"en","type":"Movie","_key":"25883"} +{"label":"Donna Townsend","version":19,"id":"44572","lastModified":"1301902139000","name":"Donna Townsend","type":"Person","_key":"25884"} +{"label":"Peggy Morgan","version":19,"id":"44573","lastModified":"1301902321000","name":"Peggy Morgan","type":"Person","_key":"25885"} +{"label":"Sherry Knight","version":19,"id":"44574","lastModified":"1301902139000","name":"Sherry Knight","type":"Person","_key":"25886"} +{"label":"Werner Kirsch","version":21,"id":"44575","lastModified":"1301901776000","name":"Werner Kirsch","type":"Person","_key":"25887"} +{"label":"Charles G. Schelling","version":22,"id":"44576","lastModified":"1301902320000","name":"Charles G. Schelling","type":"Person","_key":"25888"} +{"label":"Peter A. DeCenzie","version":28,"id":"44570","lastModified":"1301901789000","name":"Peter A. DeCenzie","type":"Person","_key":"25889"} +{"label":"Lana Young","version":20,"id":"44578","lastModified":"1301902374000","name":"Lana Young","type":"Person","_key":"25890"} +{"label":"Denise Daniels","version":20,"id":"44579","lastModified":"1301902374000","name":"Denise Daniels","type":"Person","_key":"25891"} +{"label":"Elaine Jones","version":19,"id":"44580","lastModified":"1301902320000","name":"Elaine Jones","type":"Person","_key":"25892"} +{"label":"Althea Currier","version":21,"id":"45064","lastModified":"1301902139000","name":"Althea Currier","type":"Person","_key":"25893"} +{"label":"Wild Gals of the Naked West","description":"No overview found.","id":"5646","runtime":65,"imdbId":"tt0056692","version":81,"lastModified":"1301906081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/257\/4bf6bd5e017a3c772b000257\/wild-gals-of-the-naked-west-mid.jpg","studio":"Films Pacifica Inc.","genre":"Comedy","title":"Wild Gals of the Naked West","releaseDate":-241401600000,"language":"en","type":"Movie","_key":"25894"} +{"label":"Sammy Gilbert","version":19,"id":"44581","lastModified":"1301902106000","name":"Sammy Gilbert","type":"Person","_key":"25895"} +{"label":"Terri Taylor","version":17,"id":"494","lastModified":"1299492926000","name":"Terri Taylor","type":"Person","_key":"25896"} +{"label":"Julie Williams","version":19,"id":"44582","lastModified":"1301901893000","name":"Julie Williams","type":"Person","_key":"25897"} +{"label":"Ken Parker","version":21,"id":"44583","lastModified":"1301901634000","name":"Ken Parker","type":"Person","_key":"25898"} +{"label":"Nate Schwantze","version":19,"id":"44584","lastModified":"1301901893000","name":"Nate Schwantze","type":"Person","_key":"25899"} +{"label":"Barbara Baral","version":19,"id":"44585","lastModified":"1301901893000","name":"Barbara Baral","type":"Person","_key":"25900"} +{"label":"Arlyn Solomon","version":19,"id":"44586","lastModified":"1301901893000","name":"Arlyn Solomon","type":"Person","_key":"25901"} +{"label":"Rusty Taylor","version":19,"id":"44587","lastModified":"1301902293000","name":"Rusty Taylor","type":"Person","_key":"25902"} +{"label":"Pegge Thomas","version":19,"id":"44588","lastModified":"1301901893000","name":"Pegge Thomas","type":"Person","_key":"25903"} +{"label":"Princess Livingston","version":21,"id":"44589","lastModified":"1301901981000","name":"Princess Livingston","type":"Person","_key":"25904"} +{"label":"The French Peep Show","description":"No overview found.","id":"5647","runtime":33,"imdbId":"tt0347025","version":37,"lastModified":"1301908597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/293\/4d3e54f65e73d622d1004293\/the-french-peep-show-mid.jpg","genre":"Documentary","title":"The French Peep Show","releaseDate":-497145600000,"language":"en","type":"Movie","_key":"25905"} +{"label":"Tempest Storm","version":18,"id":"44590","lastModified":"1301902374000","name":"Tempest Storm","type":"Person","_key":"25906"} +{"label":"The Immoral Mr. Teas","description":"No overview found.","id":"5648","runtime":63,"imdbId":"tt0052920","version":78,"lastModified":"1301908337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e3\/4bf44159017a3c320b0007e3\/the-immoral-mr-teas-mid.jpg","studio":"Pad-Ram Enterprises","genre":"Comedy","title":"The Immoral Mr. Teas","releaseDate":-217036800000,"language":"en","type":"Movie","_key":"25907"} +{"label":"Bill Teas","version":19,"id":"44592","lastModified":"1301902106000","name":"Bill Teas","type":"Person","_key":"25908"} +{"label":"Ann Peters","version":19,"id":"44593","lastModified":"1301901893000","name":"Ann Peters","type":"Person","_key":"25909"} +{"label":"Marilyn Wesley","version":19,"id":"44594","lastModified":"1301901892000","name":"Marilyn Wesley","type":"Person","_key":"25910"} +{"label":"Michele Roberts","version":19,"id":"44595","lastModified":"1301902106000","name":"Michele Roberts","type":"Person","_key":"25911"} +{"label":"Dawn Danielle","version":19,"id":"44596","lastModified":"1301901892000","name":"Dawn Danielle","type":"Person","_key":"25912"} +{"label":"Don Cochran","version":20,"id":"44597","lastModified":"1301901734000","name":"Don Cochran","type":"Person","_key":"25913"} +{"label":"G. Ferrus","version":19,"id":"44598","lastModified":"1301901892000","name":"G. Ferrus","type":"Person","_key":"25914"} +{"label":"Monica Liljistrand","version":20,"id":"44599","lastModified":"1301902293000","name":"Monica Liljistrand","type":"Person","_key":"25915"} +{"label":"Eric 'Mick' Nathanson","version":17,"id":"44600","lastModified":"1301901892000","name":"Eric 'Mick' Nathanson","type":"Person","_key":"25916"} +{"label":"June Wilkinson","version":19,"id":"44601","lastModified":"1301901892000","name":"June Wilkinson","type":"Person","_key":"25917"} +{"label":"Skyscrapers and Brassieres","description":"No overview found.","id":"5649","runtime":10,"imdbId":"tt0057508","version":36,"lastModified":"1301906749000","studio":"Eve Productions Inc.","genre":"Documentary","title":"Skyscrapers and Brassieres","releaseDate":-205286400000,"language":"en","type":"Movie","_key":"25918"} +{"label":"Rochelle Kennedy","version":21,"id":"44602","lastModified":"1301901816000","name":"Rochelle Kennedy","type":"Person","_key":"25919"} +{"label":"The Naked Camera","description":"No overview found.","id":"5650","runtime":10,"imdbId":"tt0054110","version":35,"lastModified":"1301906176000","studio":"Eve Productions Inc.","genre":"Documentary","title":"The Naked Camera","releaseDate":-273283200000,"language":"en","type":"Movie","_key":"25920"} +{"label":"Mikki France","version":20,"id":"44603","lastModified":"1301902012000","name":"Mikki France","type":"Person","_key":"25921"} +{"label":"Up!","description":"Up! is a 1976 soft core sex comedy film directed by American filmmaker Russ Meyer. The plot centers around a bizarre murder mystery involving the death of former Nazi Adolf Schwartz, a caricature of Adolf Hitler, who was living in hiding in a Bavarian style castle in Northern California.Kitten Natividad plays the \"Greek Chorus\", who appears nude between scenes throughout the film to provide narration, plot details, and updates.","id":"5651","runtime":80,"imdbId":"tt0075376","version":111,"lastModified":"1301904446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b4\/4bf62cac017a3c77300001b4\/up-mid.jpg","studio":"Eve Productions Inc.","genre":"Comedy","title":"Up!","releaseDate":212976000000,"language":"en","type":"Movie","_key":"25922"} +{"label":"Edward Schaaf","version":21,"id":"44609","lastModified":"1301902293000","name":"Edward Schaaf","type":"Person","_key":"25923"} +{"label":"Raven De La Croix","version":22,"id":"44615","lastModified":"1301902105000","name":"Raven De La Croix","type":"Person","_key":"25924"} +{"label":"Monty Bane","version":28,"id":"44616","lastModified":"1301901788000","name":"Monty Bane","type":"Person","_key":"25925"} +{"label":"Robert McLane","version":21,"id":"44610","lastModified":"1301902293000","name":"Robert McLane","type":"Person","_key":"25926"} +{"label":"Elaine Collins","version":22,"id":"44611","lastModified":"1301902293000","name":"Elaine Collins","type":"Person","_key":"25927"} +{"label":"Su Ling","version":23,"id":"44612","lastModified":"1301902200000","name":"Su Ling","type":"Person","_key":"25928"} +{"label":"Janet Wood","version":25,"id":"44613","lastModified":"1301902146000","name":"Janet Wood","type":"Person","_key":"25929"} +{"label":"Linda Sue Ragsdale","version":21,"id":"44614","lastModified":"1301902106000","name":"Linda Sue Ragsdale","type":"Person","_key":"25930"} +{"label":"Marianne Marks","version":23,"id":"44617","lastModified":"1301902105000","name":"Marianne Marks","type":"Person","_key":"25931"} +{"label":"Larry Dean","version":21,"id":"44618","lastModified":"1301902293000","name":"Larry Dean","type":"Person","_key":"25932"} +{"label":"Bob Schott","version":22,"id":"44619","lastModified":"1301902293000","name":"Bob Schott","type":"Person","_key":"25933"} +{"label":"Foxy Lae","version":21,"id":"44620","lastModified":"1301902105000","name":"Foxy Lae","type":"Person","_key":"25934"} +{"label":"Ray Reinhardt","version":21,"id":"44621","lastModified":"1301901892000","name":"Ray Reinhardt","type":"Person","_key":"25935"} +{"label":"The James Dean Story","description":"Released two years after James Dean's death, this documentary chronicles his short life and career via black-and-white still photographs, interviews with the aunt and uncle who raised him, his paternal grandparents, a New York City cabdriver friend, the owner of his favorite Los Angeles restaurant, outtakes from East of Eden, footage of the opening night of Giant, and Dean's ironic PSA for safe driving.","id":"5652","runtime":81,"imdbId":"tt0050558","version":502,"lastModified":"1302054695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3b\/4c0cee50017a3c29a6000c3b\/the-james-dean-story-mid.jpg","studio":"Warner Bros. Pictures","genre":"Documentary","title":"The James Dean Story","releaseDate":-390873600000,"language":"en","type":"Movie","_key":"25936"} +{"label":"George W. George","version":25,"id":"44623","lastModified":"1301902318000","name":"George W. George","type":"Person","_key":"25937"} +{"label":"Lew Bracker","version":19,"id":"44625","lastModified":"1301902105000","name":"Lew Bracker","type":"Person","_key":"25938"} +{"label":"Marvin Carter","version":19,"id":"44626","lastModified":"1301902105000","name":"Marvin Carter","type":"Person","_key":"25939"} +{"label":"Patsy D'Amore","version":16,"id":"44627","lastModified":"1301902293000","name":"Patsy D'Amore","type":"Person","_key":"25940"} +{"label":"Charles Dean","version":19,"id":"44628","lastModified":"1301902293000","name":"Charles Dean","type":"Person","_key":"25941"} +{"label":"Emma Dean","version":19,"id":"44629","lastModified":"1301902293000","name":"Emma Dean","type":"Person","_key":"25942"} +{"label":"Louis de Liso","version":19,"id":"44630","lastModified":"1301902293000","name":"Louis de Liso","type":"Person","_key":"25943"} +{"label":"Luther","description":"During the early 16th Century idealistic German monk Martin Luther, disgusted by the materialism in the church, begins the dialogue that will lead to the Protestant Reformation.","id":"5653","runtime":123,"imdbId":"tt0309820","trailer":"http:\/\/www.youtube.com\/watch?v=366","homepage":"http:\/\/www.lutherthemovie.com\/","version":294,"lastModified":"1302050679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/382\/4bc91cdb017a3c57fe00b382\/luther-mid.jpg","studio":"Eikon Film","genre":"Drama","title":"Luther","releaseDate":1067472000000,"language":"en","type":"Movie","_key":"25944"} +{"label":"Claire Cox","version":22,"id":"44635","lastModified":"1301902301000","name":"Claire Cox","type":"Person","_key":"25945"} +{"label":"Jochen Horst","version":26,"id":"44636","lastModified":"1301902348000","name":"Jochen Horst","type":"Person","_key":"25946"} +{"label":"Anian Zollner","version":24,"id":"44637","lastModified":"1301902155000","name":"Anian Zollner","type":"Person","_key":"25947"} +{"label":"Herb Andress","version":23,"id":"44638","lastModified":"1301902124000","name":"Herb Andress","type":"Person","_key":"25948"} +{"label":"Torben Liebrecht","version":22,"id":"44639","lastModified":"1301902301000","name":"Torben Liebrecht","type":"Person","_key":"25949"} +{"label":"Christopher Buchholz","version":25,"id":"44640","lastModified":"1301902124000","name":"Christopher Buchholz","type":"Person","_key":"25950"} +{"label":"Timothy Peach","version":25,"id":"44641","lastModified":"1301901497000","name":"Timothy Peach","type":"Person","_key":"25951"} +{"label":"Felix Klare","version":23,"id":"44642","lastModified":"1301902135000","name":"Felix Klare","type":"Person","_key":"25952"} +{"label":"Jens Winter","version":22,"id":"44643","lastModified":"1301902124000","name":"Jens Winter","type":"Person","_key":"25953"} +{"label":"Guerre et paix","description":"No overview found.","id":"5654","runtime":480,"imdbId":"tt0495055","version":66,"lastModified":"1301908618000","studio":"Lux Vide","genre":"History","title":"Guerre et paix","releaseDate":1192752000000,"language":"en","type":"Movie","_key":"25954"} +{"label":"Robert Dornhelm","version":22,"id":"44644","lastModified":"1301901570000","name":"Robert Dornhelm","type":"Person","_key":"25955"} +{"label":"Brendan Donnison","version":20,"id":"44645","lastModified":"1301901681000","name":"Brendan Donnison","type":"Person","_key":"25956"} +{"label":"Alessio Boni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ff5\/4cfd197b5e73d6299b003ff5\/alessio-boni-profile.jpg","version":39,"id":"44646","lastModified":"1301901167000","name":"Alessio Boni","type":"Person","_key":"25957"} +{"label":"Andrea Giordana","version":20,"id":"44647","lastModified":"1301902348000","name":"Andrea Giordana","type":"Person","_key":"25958"} +{"label":"Ana Caterina Morariu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ea\/4bfc08d6017a3c702a0006ea\/ana-caterina-morariu-profile.jpg","biography":"Ana Caterina Morariu (Cluj-Napoca, 20 novembre 1980) \u00e8 un'attrice rumena che vive e lavora in Italia.","version":20,"birthday":"343522800000","id":"44648","birthplace":"Cluj-Napoca, Romania","lastModified":"1301902348000","name":"Ana Caterina Morariu","type":"Person","_key":"25959"} +{"label":"Violante Placido","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f2\/4bfc0b66017a3c702f0008f2\/violante-placido-profile.jpg","biography":"Attrice e cantante italiana, figlia dell'attore e regista Michele Placido e dell'attrice Simonetta Stefanelli.","version":47,"birthday":"199753200000","id":"44649","birthplace":"Roma, Italy","lastModified":"1301954555000","name":"Violante Placido","type":"Person","_key":"25960"} +{"label":"Ken Duken","version":32,"id":"44651","lastModified":"1301901662000","name":"Ken Duken","type":"Person","_key":"25961"} +{"label":"Hary Prinz","version":25,"id":"44652","lastModified":"1301901823000","name":"Hary Prinz","type":"Person","_key":"25962"} +{"label":"Pilar Abella","version":20,"id":"44653","lastModified":"1301902374000","name":"Pilar Abella","type":"Person","_key":"25963"} +{"label":"Scali Delpeyrat","version":27,"id":"44654","lastModified":"1301902040000","name":"Scali Delpeyrat","type":"Person","_key":"25964"} +{"label":"Dairy of Terror","description":"No overview found.","id":"5655","runtime":65,"version":20,"lastModified":"1301302607000","genre":"Comedy","title":"Dairy of Terror","releaseDate":1195948800000,"language":"en","type":"Movie","_key":"25965"} +{"label":"Black Snake","description":"Story of a slave revolt on a 19th-century Caribbean island.","id":"5656","runtime":82,"imdbId":"tt0069796","trailer":"http:\/\/www.youtube.com\/watch?v=-Ha2XxA00s8","version":93,"lastModified":"1301905631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d1\/4bf41ddc017a3c320f0005d1\/black-snake-mid.jpg","studio":"Paramount Vantage","genre":"Adventure","title":"Black Snake","releaseDate":94694400000,"language":"en","type":"Movie","_key":"25966"} +{"label":"Anouska Hempel","version":23,"id":"44695","lastModified":"1301996032000","name":"Anouska Hempel","type":"Person","_key":"25967"} +{"label":"Thomas Baptiste","version":21,"id":"44696","lastModified":"1301902053000","name":"Thomas Baptiste","type":"Person","_key":"25968"} +{"label":"Milton McCollin","version":20,"id":"44697","lastModified":"1301902025000","name":"Milton McCollin","type":"Person","_key":"25969"} +{"label":"Bernard Boston","version":20,"id":"44698","lastModified":"1301901996000","name":"Bernard Boston","type":"Person","_key":"25970"} +{"label":"Vikki Richards","version":20,"id":"44699","lastModified":"1301902380000","name":"Vikki Richards","type":"Person","_key":"25971"} +{"label":"Anthony Sharp","version":19,"id":"44700","lastModified":"1301901981000","name":"Anthony Sharp","type":"Person","_key":"25972"} +{"label":"The Worm Eaters","description":"No overview found.","id":"5657","runtime":94,"imdbId":"tt0157197","version":84,"lastModified":"1302050127000","studio":"Cinema Features","genre":"Comedy","title":"The Worm Eaters","releaseDate":229651200000,"language":"en","type":"Movie","_key":"25973"} +{"label":"Herb Robins","version":22,"id":"44656","lastModified":"1301901963000","name":"Herb Robins","type":"Person","_key":"25974"} +{"label":"Barry Hostetler","version":23,"id":"44658","lastModified":"1301902347000","name":"Barry Hostetler","type":"Person","_key":"25975"} +{"label":"Lindsay Armstrong Black","version":20,"id":"44659","lastModified":"1301901999000","name":"Lindsay Armstrong Black","type":"Person","_key":"25976"} +{"label":"Mike Garrison","version":20,"id":"44660","lastModified":"1301902374000","name":"Mike Garrison","type":"Person","_key":"25977"} +{"label":"Joseph Sacket","version":18,"id":"44661","lastModified":"1301902167000","name":"Joseph Sacket","type":"Person","_key":"25978"} +{"label":"Mondkalb","description":"No overview found.","id":"5658","runtime":102,"imdbId":"tt0897272","version":50,"lastModified":"1301906632000","studio":"WDR","genre":"Drama","title":"Mondkalb","releaseDate":1201737600000,"language":"en","type":"Movie","_key":"25979"} +{"label":"Sylke Enders","version":23,"id":"44662","lastModified":"1301901616000","name":"Sylke Enders","type":"Person","_key":"25980"} +{"label":"Leonhard Carow","version":18,"id":"44669","lastModified":"1301901981000","name":"Leonhard Carow","type":"Person","_key":"25981"} +{"label":"Ronald Kukulies","version":19,"id":"44670","lastModified":"1301901892000","name":"Ronald Kukulies","type":"Person","_key":"25982"} +{"label":"Niels Bormann","version":20,"id":"44671","lastModified":"1301901999000","name":"Niels Bormann","type":"Person","_key":"25983"} +{"label":"Udo Schenk","version":20,"id":"31643","lastModified":"1301901616000","name":"Udo Schenk","type":"Person","_key":"25984"} +{"label":"Gabriele Grawe","version":18,"id":"44672","lastModified":"1301901981000","name":"Gabriele Grawe","type":"Person","_key":"25985"} +{"label":"Isabelle Ertmann","version":18,"id":"44673","lastModified":"1301901981000","name":"Isabelle Ertmann","type":"Person","_key":"25986"} +{"label":"Frank Hildebrandt","version":19,"id":"44675","lastModified":"1301902293000","name":"Frank Hildebrandt","type":"Person","_key":"25987"} +{"label":"Mystery Mansion","description":"No overview found.","id":"5660","runtime":95,"imdbId":"tt0091587","version":56,"lastModified":"1300978412000","studio":"Media Home Entertainment","genre":"Adventure","title":"Mystery Mansion","releaseDate":457574400000,"language":"en","type":"Movie","_key":"25988"} +{"label":"Dal McKennon","version":22,"id":"44676","lastModified":"1301902352000","name":"Dal McKennon","type":"Person","_key":"25989"} +{"label":"Randi Brown","version":19,"id":"44677","lastModified":"1301902293000","name":"Randi Brown","type":"Person","_key":"25990"} +{"label":"Riley Novak","version":19,"id":"44678","lastModified":"1301902293000","name":"Riley Novak","type":"Person","_key":"25991"} +{"label":"David Wagner","version":58,"id":"44679","lastModified":"1301901684000","name":"David Wagner","type":"Person","_key":"25992"} +{"label":"Jane Ferguson","version":19,"id":"44680","lastModified":"1301902293000","name":"Jane Ferguson","type":"Person","_key":"25993"} +{"label":"Joseph D. Savery","version":19,"id":"44681","lastModified":"1301902293000","name":"Joseph D. Savery","type":"Person","_key":"25994"} +{"label":"Richard Poe","version":19,"id":"44682","lastModified":"1301902293000","name":"Richard Poe","type":"Person","_key":"25995"} +{"label":"David Jackson","version":25,"id":"44683","lastModified":"1301901616000","name":"David Jackson","type":"Person","_key":"25996"} +{"label":"Where's Willie?","description":"No overview found.","id":"5661","runtime":97,"imdbId":"tt0078487","version":68,"lastModified":"1301904445000","studio":"Taurus Films","genre":"Comedy","title":"Where's Willie?","releaseDate":261187200000,"language":"en","type":"Movie","_key":"25997"} +{"label":"John Florea","version":21,"id":"44685","lastModified":"1301902033000","name":"John Florea","type":"Person","_key":"25998"} +{"label":"Henry Darrow","version":21,"id":"44686","lastModified":"1301902305000","name":"Henry Darrow","type":"Person","_key":"25999"} +{"label":"Katherine Woodville","version":21,"id":"44687","lastModified":"1301902105000","name":"Katherine Woodville","type":"Person","_key":"26000"} +{"label":"Marc Gilpin","version":21,"id":"44688","lastModified":"1301902293000","name":"Marc Gilpin","type":"Person","_key":"26001"} +{"label":"Rock Montanio","version":19,"id":"44689","lastModified":"1301902293000","name":"Rock Montanio","type":"Person","_key":"26002"} +{"label":"Baker's Hawk","description":"No overview found.","id":"5662","runtime":105,"imdbId":"tt0074176","version":91,"lastModified":"1301904567000","studio":"Doty-Dayton Production","genre":"Drama","title":"Baker's Hawk","releaseDate":219196800000,"language":"en","type":"Movie","_key":"26003"} +{"label":"Lyman Dayton","version":23,"id":"44690","lastModified":"1301902209000","name":"Lyman Dayton","type":"Person","_key":"26004"} +{"label":"Lee Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/380\/4cc99fc17b9aa16b9f000380\/lee-montgomery-profile.jpg","version":28,"id":"44691","lastModified":"1301901671000","name":"Lee Montgomery","type":"Person","_key":"26005"} +{"label":"John Parish","version":19,"id":"44692","lastModified":"1301902293000","name":"John Parish","type":"Person","_key":"26006"} +{"label":"Cult People","description":"No overview found.","id":"5669","runtime":60,"imdbId":"tt0199437","version":51,"lastModified":"1301906749000","genre":"Documentary","title":"Cult People","releaseDate":599616000000,"language":"en","type":"Movie","_key":"26007"} +{"label":"Curtis Harrington","version":30,"id":"44725","lastModified":"1301901570000","name":"Curtis Harrington","type":"Person","_key":"26008"} +{"label":"Waris Hussein","version":27,"id":"44726","lastModified":"1301902158000","name":"Waris Hussein","type":"Person","_key":"26009"} +{"label":"Michael Sarne","version":23,"id":"97958","lastModified":"1301903035000","name":"Michael Sarne","type":"Person","_key":"26010"} +{"label":"David Del Valle","version":22,"id":"102444","lastModified":"1301903069000","name":"David Del Valle","type":"Person","_key":"26011"} +{"label":"Cameron Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/838\/4c0930c3017a3c33d9000838\/cameron-mitchell-profile.jpg","version":54,"birthday":"-1614474000000","id":"44728","birthplace":"Dallastown, Pennsylvania, USA","lastModified":"1301901379000","name":"Cameron Mitchell","type":"Person","_key":"26012"} +{"label":"That's Sexploitation","description":"No overview found.","id":"5673","runtime":45,"imdbId":"tt0228933","version":47,"lastModified":"1301908597000","genre":"Documentary","title":"That's Sexploitation","releaseDate":94694400000,"language":"en","type":"Movie","_key":"26013"} +{"label":"Manny Brown","version":20,"id":"44752","lastModified":"1301902347000","name":"Manny Brown","type":"Person","_key":"26014"} +{"label":"Louis K. Sher","version":20,"id":"44754","lastModified":"1301901963000","name":"Louis K. Sher","type":"Person","_key":"26015"} +{"label":"Dan Sonney","version":23,"id":"44755","lastModified":"1301901963000","name":"Dan Sonney","type":"Person","_key":"26016"} +{"label":"Herschell Gordon Lewis","version":67,"id":"99916","lastModified":"1301902530000","name":"Herschell Gordon Lewis","type":"Person","_key":"26017"} +{"label":"Doris Wishman","version":22,"id":"116656","lastModified":"1302060229000","name":"Doris Wishman","type":"Person","_key":"26018"} +{"label":"Pandora Peaks","description":"No overview found.","id":"5674","runtime":71,"imdbId":"tt0299079","version":59,"lastModified":"1301906176000","studio":"RM Films International","genre":"Documentary","title":"Pandora Peaks","releaseDate":978307200000,"language":"en","type":"Movie","_key":"26019"} +{"label":"Pandora Peaks","version":24,"id":"44757","lastModified":"1301902184000","name":"Pandora Peaks","type":"Person","_key":"26020"} +{"label":"Leasha","version":20,"id":"44758","lastModified":"1301901999000","name":"Leasha","type":"Person","_key":"26021"} +{"label":"Tundi","version":20,"id":"44759","lastModified":"1301902374000","name":"Tundi","type":"Person","_key":"26022"} +{"label":"Hollywood Rated 'R'","description":"No overview found.","id":"5675","runtime":90,"imdbId":"tt0179853","version":61,"lastModified":"1301906191000","studio":"Kalamazoo International","genre":"Documentary","title":"Hollywood Rated 'R'","releaseDate":866678400000,"language":"en","type":"Movie","_key":"26023"} +{"label":"Dominique Cazenave","version":20,"id":"44760","lastModified":"1301901592000","name":"Dominique Cazenave","type":"Person","_key":"26024"} +{"label":"Doug Headline","version":26,"id":"44761","lastModified":"1301901669000","name":"Doug Headline","type":"Person","_key":"26025"} +{"label":"Forrest J Ackerman","version":51,"id":"44762","lastModified":"1301901149000","name":"Forrest J Ackerman","type":"Person","_key":"26026"} +{"label":"Edward D. Wood Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ae\/4bf19586017a3c32150002ae\/edward-d-wood-jr-profile.jpg","version":55,"id":"44763","lastModified":"1301901219000","name":"Edward D. Wood Jr.","type":"Person","_key":"26027"} +{"label":"William Lustig","version":33,"id":"44765","lastModified":"1301901324000","name":"William Lustig","type":"Person","_key":"26028"} +{"label":"Titus Moede","version":25,"id":"44766","lastModified":"1301902027000","name":"Titus Moede","type":"Person","_key":"26029"} +{"label":"Johnny Legend","version":18,"id":"100555","lastModified":"1301902306000","name":"Johnny Legend","type":"Person","_key":"26030"} +{"label":"Playboy: Voluptuous Vixens","description":"No overview found.","id":"5676","runtime":60,"imdbId":"tt0119904","version":72,"lastModified":"1301905647000","studio":"Playboy Enterprises","genre":"Documentary","title":"Playboy: Voluptuous Vixens","releaseDate":852076800000,"language":"en","type":"Movie","_key":"26031"} +{"label":"Scott Allen","version":20,"id":"44767","lastModified":"1301901892000","name":"Scott Allen","type":"Person","_key":"26032"} +{"label":"Jami Ferrell","version":19,"id":"44774","lastModified":"1301902105000","name":"Jami Ferrell","type":"Person","_key":"26033"} +{"label":"Melissa Holliday","version":19,"id":"44775","lastModified":"1301901734000","name":"Melissa Holliday","type":"Person","_key":"26034"} +{"label":"Jessica Lee","version":19,"id":"44776","lastModified":"1301901892000","name":"Jessica Lee","type":"Person","_key":"26035"} +{"label":"Shae Marks","version":20,"id":"44777","lastModified":"1301901768000","name":"Shae Marks","type":"Person","_key":"26036"} +{"label":"Stacy Sanches","version":19,"id":"44778","lastModified":"1301901892000","name":"Stacy Sanches","type":"Person","_key":"26037"} +{"label":"Carrie Stevens","version":20,"id":"44779","lastModified":"1301901935000","name":"Carrie Stevens","type":"Person","_key":"26038"} +{"label":"Kimber West","version":19,"id":"44780","lastModified":"1301902293000","name":"Kimber West","type":"Person","_key":"26039"} +{"label":"Carrie Westcott","version":19,"id":"44781","lastModified":"1301902293000","name":"Carrie Westcott","type":"Person","_key":"26040"} +{"label":"Amanda","version":18,"id":"44782","lastModified":"1301901981000","name":"Amanda","type":"Person","_key":"26041"} +{"label":"Christy Carrera","version":19,"id":"44783","lastModified":"1301901616000","name":"Christy Carrera","type":"Person","_key":"26042"} +{"label":"Busty Dusty","version":19,"id":"44784","lastModified":"1301902293000","name":"Busty Dusty","type":"Person","_key":"26043"} +{"label":"SaRenna Lee","version":20,"id":"44785","lastModified":"1301902293000","name":"SaRenna Lee","type":"Person","_key":"26044"} +{"label":"Sabrina","version":18,"id":"44786","lastModified":"1301901981000","name":"Sabrina","type":"Person","_key":"26045"} +{"label":"Kim Sanches","version":19,"id":"44787","lastModified":"1301902293000","name":"Kim Sanches","type":"Person","_key":"26046"} +{"label":"Traci Topps","version":19,"id":"44788","lastModified":"1301901892000","name":"Traci Topps","type":"Person","_key":"26047"} +{"label":"Trancers","description":"Angel City trooper Jack Deth is sent back in time from 2247 to 1985 Los Angeles to inhabit the body of his ancestor. Deth's assignment is to find his archenemy, Whistler, who turns people into zombies, before the fiend is able to kill all the ancestors of the future's governing council.","id":"5677","runtime":79,"imdbId":"tt0090192","version":137,"lastModified":"1301904959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/387\/4bc91cdb017a3c57fe00b387\/trancers-mid.jpg","studio":"# Lexyn Productions","genre":"Science Fiction","title":"Trancers","releaseDate":484185600000,"language":"en","tagline":"His name is Deth. He hunts Trancers. Even in the 20th Century.","type":"Movie","_key":"26048"} +{"label":"Biff Manard","version":24,"id":"44790","lastModified":"1301901616000","name":"Biff Manard","type":"Person","_key":"26049"} +{"label":"Michael Stefani","version":22,"id":"44791","lastModified":"1301902184000","name":"Michael Stefani","type":"Person","_key":"26050"} +{"label":"Art LaFleur","version":32,"id":"44792","lastModified":"1301901431000","name":"Art LaFleur","type":"Person","_key":"26051"} +{"label":"Telma Hopkins","version":22,"id":"44793","lastModified":"1301902374000","name":"Telma Hopkins","type":"Person","_key":"26052"} +{"label":"Miguel Fernandes","version":25,"id":"44794","lastModified":"1301902322000","name":"Miguel Fernandes","type":"Person","_key":"26053"} +{"label":"The Wrong Guys","description":"No overview found.","id":"5678","runtime":86,"imdbId":"tt0096466","version":117,"lastModified":"1302026079000","studio":"New World Pictures","genre":"Action","title":"The Wrong Guys","releaseDate":579484800000,"language":"en","type":"Movie","_key":"26054"} +{"label":"Danny Bilson","version":30,"id":"44789","lastModified":"1301901734000","name":"Danny Bilson","type":"Person","_key":"26055"} +{"label":"Louie Anderson","version":20,"id":"44795","lastModified":"1301902105000","name":"Louie Anderson","type":"Person","_key":"26056"} +{"label":"Franklyn Ajaye","version":24,"id":"44796","lastModified":"1301901619000","name":"Franklyn Ajaye","type":"Person","_key":"26057"} +{"label":"Timothy Van Patten","version":25,"id":"44797","lastModified":"1301901978000","name":"Timothy Van Patten","type":"Person","_key":"26058"} +{"label":"Garth Winsome","version":19,"id":"44798","lastModified":"1301902293000","name":"Garth Winsome","type":"Person","_key":"26059"} +{"label":"Carole Ita White","version":24,"id":"44799","lastModified":"1301902169000","name":"Carole Ita White","type":"Person","_key":"26060"} +{"label":"Bunny Summers","version":22,"id":"44800","lastModified":"1301901814000","name":"Bunny Summers","type":"Person","_key":"26061"} +{"label":"The Last Tango in Acapulco","description":"No overview found.","id":"5679","runtime":120,"imdbId":"tt0206874","version":34,"lastModified":"1301906748000","genre":"Thriller","title":"The Last Tango in Acapulco","releaseDate":166320000000,"language":"en","type":"Movie","_key":"26062"} +{"label":"Becky Sharpe","version":20,"id":"44803","lastModified":"1301902389000","name":"Becky Sharpe","type":"Person","_key":"26063"} +{"label":"Keith Erickson","version":20,"id":"44804","lastModified":"1301902158000","name":"Keith Erickson","type":"Person","_key":"26064"} +{"label":"Jake Monroe","version":20,"id":"44805","lastModified":"1301902158000","name":"Jake Monroe","type":"Person","_key":"26065"} +{"label":"Mar\u00eda P\u00eda","version":20,"id":"44806","lastModified":"1301902157000","name":"Mar\u00eda P\u00eda","type":"Person","_key":"26066"} +{"label":"Carlos Tobalina","version":30,"id":"44802","lastModified":"1301901497000","name":"Carlos Tobalina","type":"Person","_key":"26067"} +{"label":"Elvira, Mistress of the Dark","description":"When her great aunt dies famed horror hostess Elvira heads for the uptight new England town to Falwell to claim her inheritance of a haunted house a witches cookbook and a punk rock poodle. But once the stuffy locals get an eyeful of the scream queens ample assets all hell busts out & breaks loose.","id":"5680","runtime":96,"imdbId":"tt0095088","trailer":"http:\/\/www.youtube.com\/watch?v=1976","version":167,"lastModified":"1302047870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10e\/4c1d0d927b9aa1181500010e\/elvira-mistress-of-the-dark-mid.jpg","genre":"Comedy","title":"Elvira, Mistress of the Dark","releaseDate":591580800000,"language":"en","tagline":"Elvira makes her big screen debut in her new comedy.","type":"Movie","_key":"26068"} +{"label":"James Signorelli","version":26,"id":"44807","lastModified":"1301902136000","name":"James Signorelli","type":"Person","_key":"26069"} +{"label":"Cassandra Peterson","version":43,"id":"44810","lastModified":"1301901411000","name":"Cassandra Peterson","type":"Person","_key":"26070"} +{"label":"Lee McLaughlin","version":21,"id":"44815","lastModified":"1301902127000","name":"Lee McLaughlin","type":"Person","_key":"26071"} +{"label":"Ira Heiden","version":21,"id":"44816","lastModified":"1301901766000","name":"Ira Heiden","type":"Person","_key":"26072"} +{"label":"Pee-wee's Big Adventure","description":"The cartoonish and childish character Pee Wee Herman goes on a big adventure for the first time ever when his beloved shiny new bicycle is stolen by his nemesis Francis Buxton, a fellow man-child and neighborhood rich \"kid.\" And he sets off on an obsessive cross-country journey, determined to recover it. Pee-wee's awkward and childish attempts to be cool and mature.","id":"5683","runtime":90,"imdbId":"tt0089791","trailer":"http:\/\/www.youtube.com\/watch?v=ZrzqBwuxHV8","version":162,"lastModified":"1301902993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4d2115be7b9aa128860001dd\/pee-wee-s-big-adventure-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Pee-wee's Big Adventure","releaseDate":492393600000,"language":"en","type":"Movie","_key":"26073"} +{"label":"Mark Holton","version":35,"id":"44818","lastModified":"1301901648000","name":"Mark Holton","type":"Person","_key":"26074"} +{"label":"Judd Omen","version":20,"id":"44819","lastModified":"1301901804000","name":"Judd Omen","type":"Person","_key":"26075"} +{"label":"Irving Hellman","version":19,"id":"44820","lastModified":"1301901892000","name":"Irving Hellman","type":"Person","_key":"26076"} +{"label":"Peter Looney","version":21,"id":"44821","lastModified":"1301901734000","name":"Peter Looney","type":"Person","_key":"26077"} +{"label":"Starletta DuPois","version":23,"id":"44822","lastModified":"1301901559000","name":"Starletta DuPois","type":"Person","_key":"26078"} +{"label":"Monte Landis","version":28,"id":"44823","lastModified":"1301901644000","name":"Monte Landis","type":"Person","_key":"26079"} +{"label":"Milton Berle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4bd3b940017a3c533b000045\/milton-berle-profile.jpg","biography":"Milton Berle was an Emmy-winning American comedian and actor. As the manic host of NBC's Texaco Star Theater (1948\u201355), in 1948 he was the first major star of US television and as such became known as Uncle Miltie and Mr. Television to millions during TV's golden age.","version":34,"id":"69951","lastModified":"1301901522000","name":"Milton Berle","type":"Person","_key":"26080"} +{"label":"Jan Hooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c698d167b9aa13921000046\/jan-hooks-profile.jpg","version":21,"id":"129332","lastModified":"1301902791000","name":"Jan Hooks","type":"Person","_key":"26081"} +{"label":"Morgan Fairchild","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/203\/4c225dc27b9aa135f9000203\/morgan-fairchild-profile.jpg","version":25,"id":"14990","lastModified":"1301901415000","name":"Morgan Fairchild","type":"Person","_key":"26082"} +{"label":"Dee Snider","version":23,"id":"60434","lastModified":"1301901843000","name":"Dee Snider","type":"Person","_key":"26083"} +{"label":"Secret Weapons","description":"No overview found.","id":"5684","runtime":96,"imdbId":"tt0089983","version":88,"lastModified":"1302047384000","studio":"Goodman\/Rosen Productions","genre":"Drama","title":"Secret Weapons","releaseDate":478656000000,"language":"en","type":"Movie","_key":"26084"} +{"label":"Hunt Block","version":42,"id":"44826","lastModified":"1301901195000","name":"Hunt Block","type":"Person","_key":"26085"} +{"label":"A Night in Heaven","description":"No overview found.","id":"5686","runtime":86,"imdbId":"tt0086011","version":92,"lastModified":"1302045720000","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"A Night in Heaven","releaseDate":419731200000,"language":"en","type":"Movie","_key":"26086"} +{"label":"Robert Logan","version":21,"id":"44828","lastModified":"1301902137000","name":"Robert Logan","type":"Person","_key":"26087"} +{"label":"Deney Terrio","version":19,"id":"44829","lastModified":"1301902105000","name":"Deney Terrio","type":"Person","_key":"26088"} +{"label":"Deborah Rush","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/720\/4d8bc9d35e73d6551b000720\/deborah-rush-profile.jpg","version":37,"id":"44830","lastModified":"1301901431000","name":"Deborah Rush","type":"Person","_key":"26089"} +{"label":"Carrie Snodgress","version":32,"id":"44831","lastModified":"1301901389000","name":"Carrie Snodgress","type":"Person","_key":"26090"} +{"label":"Joseph Gian","version":20,"id":"44832","lastModified":"1301902184000","name":"Joseph Gian","type":"Person","_key":"26091"} +{"label":"Wet and Wild Summer","description":"No overview found.","id":"5688","runtime":95,"imdbId":"tt0105801","version":69,"lastModified":"1301906631000","studio":"Spectrum Films International","genre":"Comedy","title":"Wet and Wild Summer","releaseDate":709084800000,"language":"en","type":"Movie","_key":"26092"} +{"label":"Maurice Murphy","version":21,"id":"44833","lastModified":"1301902293000","name":"Maurice Murphy","type":"Person","_key":"26093"} +{"label":"Rebekah Carlton","version":22,"id":"44836","lastModified":"1301901645000","name":"Rebekah Carlton","type":"Person","_key":"26094"} +{"label":"Vanessa Steele","version":19,"id":"44837","lastModified":"1301902293000","name":"Vanessa Steele","type":"Person","_key":"26095"} +{"label":"Richard Carter","version":20,"id":"44838","lastModified":"1301902105000","name":"Richard Carter","type":"Person","_key":"26096"} +{"label":"Christopher Pate","version":19,"id":"44839","lastModified":"1301902293000","name":"Christopher Pate","type":"Person","_key":"26097"} +{"label":"The Blue Lagoon","description":"Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline (Brooke Shields) and Richard (Christopher Atkins) make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?","id":"5689","runtime":104,"imdbId":"tt0080453","trailer":"http:\/\/www.youtube.com\/watch?v=fuA55wlgTek","version":189,"lastModified":"1302024511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b1\/4d540e755e73d617c10058b1\/the-blue-lagoon-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"The Blue Lagoon","releaseDate":331603200000,"language":"en","tagline":"A sensuous story of natural love.","type":"Movie","_key":"26098"} +{"label":"Brooke Shields","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a8e\/4d88aacf5e73d67510000a8e\/brooke-shields-profile.jpg","version":74,"id":"15110","lastModified":"1301901173000","name":"Brooke Shields","type":"Person","_key":"26099"} +{"label":"Jeffrey Kleiser","version":22,"id":"44841","lastModified":"1301902293000","name":"Jeffrey Kleiser","type":"Person","_key":"26100"} +{"label":"Alan Hopgood","version":37,"id":"44842","lastModified":"1301901200000","name":"Alan Hopgood","type":"Person","_key":"26101"} +{"label":"Gus Mercurio","version":25,"id":"44843","lastModified":"1301902135000","name":"Gus Mercurio","type":"Person","_key":"26102"} +{"label":"Elva Josephson","version":17,"id":"136853","lastModified":"1301902907000","name":"Elva Josephson","type":"Person","_key":"26103"} +{"label":"Glenn Kohan","version":18,"id":"136854","lastModified":"1301903075000","name":"Glenn Kohan","type":"Person","_key":"26104"} +{"label":"Gert Jacoby","version":17,"id":"136855","lastModified":"1301902907000","name":"Gert Jacoby","type":"Person","_key":"26105"} +{"label":"Alex Hamilton","version":18,"id":"136856","lastModified":"1301903078000","name":"Alex Hamilton","type":"Person","_key":"26106"} +{"label":"Richard Evanson","version":17,"id":"136857","lastModified":"1301902907000","name":"Richard Evanson","type":"Person","_key":"26107"} +{"label":"The Heist","description":"No overview found.","id":"5690","runtime":73,"imdbId":"tt0068690","version":81,"lastModified":"1302044345000","studio":"Paramount Network Television","genre":"Crime","title":"The Heist","releaseDate":91843200000,"language":"en","type":"Movie","_key":"26108"} +{"label":"Don McDougall","version":18,"id":"15702","lastModified":"1301901999000","name":"Don McDougall","type":"Person","_key":"26109"} +{"label":"Elizabeth Ashley","version":30,"id":"44845","lastModified":"1301901656000","name":"Elizabeth Ashley","type":"Person","_key":"26110"} +{"label":"Howard Duff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4bd5aaac017a3c2e7000013b\/howard-duff-profile.jpg","version":40,"id":"44846","lastModified":"1301901078000","name":"Howard Duff","type":"Person","_key":"26111"} +{"label":"The Canterbury Tales","description":"This is the second in Pasolini's series of setting classic bawdy tales to film\u2026 In this case, he selected eight of Chaucer's Canterbury Tales, including the infamous miller's tale and the incident with the red hot poker kiss\u2026The tales revolve around a group of pilgrims who are journeying to the shrine of Saint Thomas a Becket of Canterbury\u2026 The trip is so boring that they begin telling each other stories that soon get obscene, gory and very sexy\u2026 Pasolini adds another motif to his visualization ","id":"5691","runtime":122,"imdbId":"tt0067647","version":79,"lastModified":"1301904237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b0\/4bc91ce1017a3c57fe00b3b0\/i-racconti-di-canterbury-mid.jpg","studio":"Les Productions Artistes Associ\u00e9s","genre":"Comedy","title":"The Canterbury Tales","releaseDate":84240000000,"language":"en","type":"Movie","_key":"26112"} +{"label":"Franco Citti","version":27,"id":"44860","lastModified":"1301901507000","name":"Franco Citti","type":"Person","_key":"26113"} +{"label":"Dan Thomas","version":20,"id":"44861","lastModified":"1301901892000","name":"Dan Thomas","type":"Person","_key":"26114"} +{"label":"J.P. Van Dyne","version":20,"id":"44862","lastModified":"1301902105000","name":"J.P. Van Dyne","type":"Person","_key":"26115"} +{"label":"Adrian Street","version":20,"id":"44863","lastModified":"1301902105000","name":"Adrian Street","type":"Person","_key":"26116"} +{"label":"George Bethell Datch","version":20,"id":"44864","lastModified":"1301902105000","name":"George Bethell Datch","type":"Person","_key":"26117"} +{"label":"Tom Baker","version":29,"id":"44865","lastModified":"1301901837000","name":"Tom Baker","type":"Person","_key":"26118"} +{"label":"Hunks in Hedonism","description":"No overview found.","id":"5692","runtime":60,"imdbId":"tt0270999","version":56,"lastModified":"1301905282000","genre":"Documentary","title":"Hunks in Hedonism","releaseDate":815270400000,"language":"en","type":"Movie","_key":"26119"} +{"label":"Darren Fox","version":19,"id":"44852","lastModified":"1301901892000","name":"Darren Fox","type":"Person","_key":"26120"} +{"label":"John Holiday","version":20,"id":"44853","lastModified":"1301901539000","name":"John Holiday","type":"Person","_key":"26121"} +{"label":"Doug Koziak","version":19,"id":"44854","lastModified":"1301901892000","name":"Doug Koziak","type":"Person","_key":"26122"} +{"label":"Julia Hennessy","version":19,"id":"44855","lastModified":"1301901892000","name":"Julia Hennessy","type":"Person","_key":"26123"} +{"label":"Sean Bartholomew","version":19,"id":"44856","lastModified":"1301901892000","name":"Sean Bartholomew","type":"Person","_key":"26124"} +{"label":"Warren Northwood","version":19,"id":"44857","lastModified":"1301902293000","name":"Warren Northwood","type":"Person","_key":"26125"} +{"label":"Steve Reinhardt","version":19,"id":"44858","lastModified":"1301902105000","name":"Steve Reinhardt","type":"Person","_key":"26126"} +{"label":"Kris Lord","version":16,"id":"44918","lastModified":"1301902105000","name":"Kris Lord","type":"Person","_key":"26127"} +{"label":"Hoosiers","description":"A coach with a checkered past and a local drunk train a small town high school basketball team to become a top contender for the championship.","id":"5693","runtime":114,"imdbId":"tt0091217","trailer":"http:\/\/www.youtube.com\/watch?v=diwRrudKHDU","version":203,"lastModified":"1302042973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c2\/4bc91ce2017a3c57fe00b3c2\/hoosiers-mid.jpg","studio":"Hemdale Film Corporation","genre":"Drama","title":"Hoosiers","releaseDate":532310400000,"language":"en","type":"Movie","_key":"26128"} +{"label":"David Anspaugh","version":23,"id":"44847","lastModified":"1301901585000","name":"David Anspaugh","type":"Person","_key":"26129"} +{"label":"C.W. Mundy","version":20,"id":"44849","lastModified":"1301902293000","name":"C.W. Mundy","type":"Person","_key":"26130"} +{"label":"Fern Persons","version":21,"id":"44850","lastModified":"1301901740000","name":"Fern Persons","type":"Person","_key":"26131"} +{"label":"The League of Gentlemen Are Behind You","description":"No overview found.","id":"5694","runtime":97,"imdbId":"tt0928145","version":38,"lastModified":"1301903727000","genre":"Comedy","title":"The League of Gentlemen Are Behind You","releaseDate":1163980800000,"language":"en","type":"Movie","_key":"26132"} +{"label":"The Great Train Robbery","description":"The clerk at the train station is assaulted and left tied by four men, then they rob the train threatening the operator. (They) take all the money and shoot a passenger when trying to run away. A little girl discovers the clerk tied and gives notice to the sheriff, who at once goes along with his men hunting the bandits.","id":"5698","runtime":11,"imdbId":"tt0000439","version":114,"lastModified":"1301905108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ce\/4d74157d5e73d608820003ce\/the-great-train-robbery-mid.jpg","studio":"Edison Studios","genre":"Western","title":"The Great Train Robbery","releaseDate":-2085523200000,"language":"en","type":"Movie","_key":"26133"} +{"label":"Edwin S. Porter","version":25,"id":"44866","lastModified":"1301901892000","name":"Edwin S. Porter","type":"Person","_key":"26134"} +{"label":"A.C. Abadie","version":20,"id":"44875","lastModified":"1301901539000","name":"A.C. Abadie","type":"Person","_key":"26135"} +{"label":"Justus D. Barnes","version":20,"id":"44876","lastModified":"1301901734000","name":"Justus D. Barnes","type":"Person","_key":"26136"} +{"label":"Walter Cameron","version":20,"id":"44877","lastModified":"1301901892000","name":"Walter Cameron","type":"Person","_key":"26137"} +{"label":"Gilbert M. 'Broncho Billy' Anderson","version":22,"id":"44879","lastModified":"1301901843000","name":"Gilbert M. 'Broncho Billy' Anderson","type":"Person","_key":"26138"} +{"label":"Star Virgin","description":"No overview found.","id":"5699","runtime":90,"imdbId":"tt0079949","version":45,"lastModified":"1301906081000","studio":"VCX","genre":"Comedy","title":"Star Virgin","releaseDate":304041600000,"language":"en","type":"Movie","_key":"26139"} +{"label":"Kari Klark","version":19,"id":"44868","lastModified":"1301902293000","name":"Kari Klark","type":"Person","_key":"26140"} +{"label":"Johnny Harden","version":19,"id":"44870","lastModified":"1301901892000","name":"Johnny Harden","type":"Person","_key":"26141"} +{"label":"Sam Grady","version":18,"id":"44871","lastModified":"1301902352000","name":"Sam Grady","type":"Person","_key":"26142"} +{"label":"Tracy Walton","version":18,"id":"44872","lastModified":"1301902167000","name":"Tracy Walton","type":"Person","_key":"26143"} +{"label":"Mike Ranger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/272\/4ca34acf7b9aa168ba000272\/mike-ranger-profile.jpg","version":33,"id":"44873","lastModified":"1301998082000","name":"Mike Ranger","type":"Person","_key":"26144"} +{"label":"Land Raiders","description":"No overview found.","id":"5700","runtime":101,"imdbId":"tt0065962","version":140,"lastModified":"1301906353000","studio":"Columbia Pictures Corporation","genre":"Action","title":"Land Raiders","releaseDate":-13651200000,"language":"en","type":"Movie","_key":"26145"} +{"label":"Nathan Juran","version":32,"id":"44878","lastModified":"1301901353000","name":"Nathan Juran","type":"Person","_key":"26146"} +{"label":"George Maharis","version":25,"id":"44880","lastModified":"1301901734000","name":"George Maharis","type":"Person","_key":"26147"} +{"label":"Arlene Dahl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/453\/4bf2b622017a3c320d000453\/arlene-dahl-profile.jpg","version":29,"id":"44881","lastModified":"1301901642000","name":"Arlene Dahl","type":"Person","_key":"26148"} +{"label":"Janet Landgard","version":20,"id":"44882","lastModified":"1301902105000","name":"Janet Landgard","type":"Person","_key":"26149"} +{"label":"Guy Rolfe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4c49b6627b9aa115fd00008b\/guy-rolfe-profile.jpg","version":35,"id":"44883","lastModified":"1301986210000","name":"Guy Rolfe","type":"Person","_key":"26150"} +{"label":"Die rote Zora","description":"No overview found.","id":"5701","runtime":99,"imdbId":"tt0878709","homepage":"http:\/\/rote-zora.universal-pictures.de\/","version":69,"lastModified":"1301904958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/441\/4d30d3705e73d63349000441\/die-rote-zora-mid.jpg","genre":"Drama","title":"Die rote Zora","releaseDate":1201132800000,"language":"en","type":"Movie","_key":"26151"} +{"label":"Peter Kahane","version":21,"id":"44884","lastModified":"1301901539000","name":"Peter Kahane","type":"Person","_key":"26152"} +{"label":"Linn Sara Reusse","version":18,"id":"44888","lastModified":"1301901804000","name":"Linn Sara Reusse","type":"Person","_key":"26153"} +{"label":"Jakob Knoblauch","version":19,"id":"44889","lastModified":"1301901476000","name":"Jakob Knoblauch","type":"Person","_key":"26154"} +{"label":"David Berton","version":21,"id":"44890","lastModified":"1301901648000","name":"David Berton","type":"Person","_key":"26155"} +{"label":"Pascal Andres","version":20,"id":"44891","lastModified":"1301901816000","name":"Pascal Andres","type":"Person","_key":"26156"} +{"label":"Woody Mues","version":20,"id":"44892","lastModified":"1301902299000","name":"Woody Mues","type":"Person","_key":"26157"} +{"label":"Nora Quest","version":21,"id":"45226","lastModified":"1301902146000","name":"Nora Quest","type":"Person","_key":"26158"} +{"label":"Perfect Lies","description":"No overview found.","id":"5702","runtime":90,"imdbId":"tt0300330","version":122,"lastModified":"1301906485000","studio":"Plus Films","genre":"Thriller","title":"Perfect Lies","releaseDate":895795200000,"language":"en","type":"Movie","_key":"26159"} +{"label":"Bret Stern","version":19,"id":"44899","lastModified":"1301902292000","name":"Bret Stern","type":"Person","_key":"26160"} +{"label":"Brettanya Friese","version":19,"id":"44902","lastModified":"1301901892000","name":"Brettanya Friese","type":"Person","_key":"26161"} +{"label":"Eric Leffler","version":19,"id":"44903","lastModified":"1301902292000","name":"Eric Leffler","type":"Person","_key":"26162"} +{"label":"John Fennessy","version":18,"id":"44904","lastModified":"1301901981000","name":"John Fennessy","type":"Person","_key":"26163"} +{"label":"Charis Michelsen","version":20,"id":"44905","lastModified":"1301902292000","name":"Charis Michelsen","type":"Person","_key":"26164"} +{"label":"William Laney","version":19,"id":"44906","lastModified":"1301902292000","name":"William Laney","type":"Person","_key":"26165"} +{"label":"Geoff Thompson","version":19,"id":"44907","lastModified":"1301902292000","name":"Geoff Thompson","type":"Person","_key":"26166"} +{"label":"David Greenwood","version":19,"id":"44908","lastModified":"1301902292000","name":"David Greenwood","type":"Person","_key":"26167"} +{"label":"Michael Bernosky","version":19,"id":"44909","lastModified":"1301902292000","name":"Michael Bernosky","type":"Person","_key":"26168"} +{"label":"Scott Hess","version":19,"id":"44910","lastModified":"1301902292000","name":"Scott Hess","type":"Person","_key":"26169"} +{"label":"Cody Carmack","version":19,"id":"44911","lastModified":"1301902292000","name":"Cody Carmack","type":"Person","_key":"26170"} +{"label":"John Montana","version":19,"id":"44912","lastModified":"1301902292000","name":"John Montana","type":"Person","_key":"26171"} +{"label":"Pier Paolo Piccoli","version":21,"id":"44913","lastModified":"1301902292000","name":"Pier Paolo Piccoli","type":"Person","_key":"26172"} +{"label":"Mike Manfro","version":19,"id":"44914","lastModified":"1301902292000","name":"Mike Manfro","type":"Person","_key":"26173"} +{"label":"Bill Tiesler","version":19,"id":"44915","lastModified":"1301902292000","name":"Bill Tiesler","type":"Person","_key":"26174"} +{"label":"Playboy: The Story of X","description":"No overview found.","id":"5704","runtime":82,"imdbId":"tt0185609","version":62,"lastModified":"1301417553000","studio":"Playboy Enterprises","genre":"Documentary","title":"Playboy: The Story of X","releaseDate":883612800000,"language":"en","type":"Movie","_key":"26175"} +{"label":"Chuck Workman","version":21,"id":"44931","lastModified":"1301901892000","name":"Chuck Workman","type":"Person","_key":"26176"} +{"label":"John Holmes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/784\/4ca33f977b9aa1578a000784\/john-holmes-profile.jpg","version":27,"id":"45573","lastModified":"1301901962000","name":"John Holmes","type":"Person","_key":"26177"} +{"label":"Juliet Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/939\/4ca1f7555e73d67049000939\/juliet-anderson-profile.jpg","biography":"Juliet was born in Burbank, California on July 23, 1938. After teaching \nEnglish as a second language for several years in Japan, Mexico, Greece \nand Finland, she moved to the United States wanting to radically change \nher life. She stumbled into the adult film industry at the age of 39. \nFor the next couple years she went on to make several dozen movies \nincluding the renowned Aunt Peg series.\n\nBecame a porn film producer who discovered Nina Hartley.<p>Didn't make her first adult film until she","version":34,"id":"44937","birthplace":"Burbank, California, USA","lastModified":"1301998082000","name":"Juliet Anderson","type":"Person","_key":"26178"} +{"label":"Samuel Z. Arkoff","version":71,"id":"30904","lastModified":"1301901454000","name":"Samuel Z. Arkoff","type":"Person","_key":"26179"} +{"label":"Juli Ashton","version":19,"id":"44938","lastModified":"1301902292000","name":"Juli Ashton","type":"Person","_key":"26180"} +{"label":"Lisa De Leeuw","version":21,"id":"44939","lastModified":"1301901892000","name":"Lisa De Leeuw","type":"Person","_key":"26181"} +{"label":"Samantha Fox","version":29,"id":"44941","lastModified":"1301901431000","name":"Samantha Fox","type":"Person","_key":"26182"} +{"label":"Vanessa del Rio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b0c\/4cf3cd9b5e73d62387000b0c\/vanessa-del-rio-profile.jpg","version":29,"id":"101154","lastModified":"1301901076000","name":"Vanessa del Rio","type":"Person","_key":"26183"} +{"label":"The New Original Wonder Woman","description":"No overview found.","id":"5705","runtime":97,"imdbId":"tt0073449","version":42,"lastModified":"1301906176000","studio":"Warner Bros. Television","genre":"Action","title":"The New Original Wonder Woman","releaseDate":184550400000,"language":"en","type":"Movie","_key":"26184"} +{"label":"Leonard Horn","version":27,"id":"44932","lastModified":"1301901789000","name":"Leonard Horn","type":"Person","_key":"26185"} +{"label":"Lyle Waggoner","version":23,"id":"44933","lastModified":"1301902192000","name":"Lyle Waggoner","type":"Person","_key":"26186"} +{"label":"Lynda Carter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/91a\/4d8fc2907b9aa1676100291a\/lynda-carter-profile.jpg","biography":"<h5>Date of Birth<\/h5>\n<a href=\"http:\/\/www.imdb.com\/date\/07-24\/\">24 July<\/a> <a href=\"http:\/\/www.imdb.com\/search\/name?birth_year=1951\">1951<\/a>, <a href=\"http:\/\/www.imdb.com\/search\/name?birth_place=Phoenix,%20Arizona,%20USA\">Phoenix, Arizona, USA<\/a>\n\n\n\n\n<h5>Birth Name<\/h5>\nLinda Jean Cordova Carter\n\n\n\n\n<h5>Height<\/h5>\n5' 9\u00bd\" (1.77 m)\n\n\n\n\n<h5>Spouse<\/h5>\n<table border=\"0\">\n\n<tbody><tr>\n<td valign=\"top\"><a href=\"http:\/\/www.imdb.com\/name\/nm2089585\/\">Robert Altman<\/a><\/td>\n<td valign=\"top\"> (<a hre","version":24,"id":"44935","lastModified":"1301901582000","name":"Lynda Carter","type":"Person","_key":"26187"} +{"label":"Playboy: Voluptuous Vixens II","description":"No overview found.","id":"5706","runtime":56,"imdbId":"tt0152000","homepage":"http:\/\/www.playboy.com","version":59,"lastModified":"1301944120000","studio":"Playboy Enterprises","genre":"Documentary","title":"Playboy: Voluptuous Vixens II","releaseDate":900979200000,"language":"en","type":"Movie","_key":"26188"} +{"label":"Barocca","version":19,"id":"44945","lastModified":"1301902105000","name":"Barocca","type":"Person","_key":"26189"} +{"label":"Art De La Torre","version":19,"id":"44946","lastModified":"1301902105000","name":"Art De La Torre","type":"Person","_key":"26190"} +{"label":"Cory Lane","version":19,"id":"44947","lastModified":"1301902105000","name":"Cory Lane","type":"Person","_key":"26191"} +{"label":"Linda O'Neil","version":18,"id":"44948","lastModified":"1301901981000","name":"Linda O'Neil","type":"Person","_key":"26192"} +{"label":"Tawny Peaks","version":19,"id":"44949","lastModified":"1301902105000","name":"Tawny Peaks","type":"Person","_key":"26193"} +{"label":"Shooting War","description":"No overview found.","id":"5707","runtime":88,"imdbId":"tt0250730","version":88,"lastModified":"1301943862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/389\/4ce219557b9aa168af000389\/shooting-war-mid.jpg","studio":"DreamWorks","genre":"Documentary","title":"Shooting War","releaseDate":976147200000,"language":"en","type":"Movie","_key":"26194"} +{"label":"Richard Schickel","version":24,"id":"44950","lastModified":"1301901734000","name":"Richard Schickel","type":"Person","_key":"26195"} +{"label":"Stephen Ambrose","version":20,"id":"44953","lastModified":"1301901816000","name":"Stephen Ambrose","type":"Person","_key":"26196"} +{"label":"Control","description":"Control is the biography of Joy Division lead singer Ian Curtis, taking his story from schoolboy days of 1973 to his suicide on the eve of the band's first American tour in 1980.","id":"5708","runtime":121,"imdbId":"tt0421082","trailer":"http:\/\/www.youtube.com\/watch?v=7c2_B_cWK_M","homepage":"http:\/\/www.controlthemovie.com","version":154,"lastModified":"1302021072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e0\/4bc91ce6017a3c57fe00b3e0\/control-mid.jpg","studio":"Becker International","genre":"Drama","title":"Control","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"26197"} +{"label":"Sam Riley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81b\/4cfa95d15e73d6299c00281b\/sam-riley-profile.jpg","biography":"<p>He is best known for playing the lead role of <a href=\"http:\/\/en.wikipedia.org\/wiki\/Ian_Curtis\" title=\"Ian Curtis\">Ian Curtis<\/a> in the movie <i><a href=\"http:\/\/en.wikipedia.org\/wiki\/Control_%282007_film%29\" title=\"Control (2007 film)\">Control<\/a><\/i>, a biopic about the lead singer of the 1970s <a href=\"http:\/\/en.wikipedia.org\/wiki\/Post-punk\" title=\"Post-punk\">post-punk<\/a> band <a href=\"http:\/\/en.wikipedia.org\/wiki\/Joy_Division\" title=\"Joy Division\">Joy Division<\/a>. His performance in the","version":34,"birthday":"316134000000","id":"32987","birthplace":"Leeds, West Yorkshire, England, UK ","lastModified":"1301901151000","name":"Sam Riley","type":"Person","_key":"26198"} +{"label":"James Anthony Pearson","version":23,"id":"45049","lastModified":"1301901493000","name":"James Anthony Pearson","type":"Person","_key":"26199"} +{"label":"Craig Parkinson","version":25,"id":"45050","lastModified":"1301901644000","name":"Craig Parkinson","type":"Person","_key":"26200"} +{"label":"Harry Treadaway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/357\/4bfa7169017a3c702a000357\/harry-treadaway-profile.jpg","version":29,"id":"45051","lastModified":"1301901439000","name":"Harry Treadaway","type":"Person","_key":"26201"} +{"label":"Anton Corbijn","version":39,"id":"45052","lastModified":"1301901355000","name":"Anton Corbijn","type":"Person","_key":"26202"} +{"label":"Amazon Women on the Moon","description":"A series of short sketches, most of which parody late-night television and the low-budget movies one often finds there. Other skits include a man being attacked by his apartment, a funeral hosted by classic comedians and a teen-age boy's big night turning into a nightmare.","id":"5709","runtime":85,"imdbId":"tt0092546","trailer":"http:\/\/www.youtube.com\/watch?v=TSuhi1o_9Cs","version":128,"lastModified":"1301943076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ed\/4bc91ce8017a3c57fe00b3ed\/amazon-women-on-the-moon-mid.jpg","studio":"Universal Film","genre":"Comedy","title":"Amazon Women on the Moon","releaseDate":558921600000,"language":"en","type":"Movie","_key":"26203"} +{"label":"Robert K. Weiss","version":44,"id":"7181","lastModified":"1301901177000","name":"Robert K. Weiss","type":"Person","_key":"26204"} +{"label":"Arsenio Hall","version":33,"id":"44994","lastModified":"1301901395000","name":"Arsenio Hall","type":"Person","_key":"26205"} +{"label":"Monique Gabrielle","version":43,"id":"44995","lastModified":"1301901462000","name":"Monique Gabrielle","type":"Person","_key":"26206"} +{"label":"Debby Davison","version":23,"id":"44996","lastModified":"1301901582000","name":"Debby Davison","type":"Person","_key":"26207"} +{"label":"Rob Krausz","version":22,"id":"44997","lastModified":"1301901488000","name":"Rob Krausz","type":"Person","_key":"26208"} +{"label":"Steve Forrest","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d1\/4be1c8c1017a3c35b40007d1\/steve-forrest-profile.jpg","version":35,"id":"44998","lastModified":"1301901363000","name":"Steve Forrest","type":"Person","_key":"26209"} +{"label":"B.B. King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/246\/4d46669c7b9aa15bb5008246\/b-b-king-profile.jpg","version":37,"id":"44999","lastModified":"1301901709000","name":"B.B. King","type":"Person","_key":"26210"} +{"label":"Sarah Lilly","version":23,"id":"45000","lastModified":"1301901488000","name":"Sarah Lilly","type":"Person","_key":"26211"} +{"label":"Steve Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ff\/4ca9f50c7b9aa17acc0006ff\/steve-allen-profile.jpg","version":25,"id":"45001","lastModified":"1301901577000","name":"Steve Allen","type":"Person","_key":"26212"} +{"label":"Angel Tompkins","version":27,"id":"45002","lastModified":"1301901771000","name":"Angel Tompkins","type":"Person","_key":"26213"} +{"label":"Michael Young","version":23,"id":"45004","lastModified":"1301901691000","name":"Michael Young","type":"Person","_key":"26214"} +{"label":"All the Way In!","description":"No overview found.","id":"5710","runtime":85,"imdbId":"tt0162846","version":108,"lastModified":"1301908336000","genre":"Erotic","title":"All the Way In!","releaseDate":441763200000,"language":"en","type":"Movie","_key":"26215"} +{"label":"Bob Chinn","version":25,"id":"45005","lastModified":"1301901892000","name":"Bob Chinn","type":"Person","_key":"26216"} +{"label":"Eric Edwards","version":28,"id":"45007","lastModified":"1301901532000","name":"Eric Edwards","type":"Person","_key":"26217"} +{"label":"Mike Horner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29b\/4ca34d5f7b9aa168cf00029b\/mike-horner-profile.jpg","version":26,"id":"42463","lastModified":"1301902053000","name":"Mike Horner","type":"Person","_key":"26218"} +{"label":"Tanya Lawson","version":20,"id":"45008","lastModified":"1301902184000","name":"Tanya Lawson","type":"Person","_key":"26219"} +{"label":"Mai Lin","version":21,"id":"45009","lastModified":"1301901892000","name":"Mai Lin","type":"Person","_key":"26220"} +{"label":"Annette Linder","version":19,"id":"45010","lastModified":"1301901431000","name":"Annette Linder","type":"Person","_key":"26221"} +{"label":"Shanna McCullough","version":21,"id":"45011","lastModified":"1301901775000","name":"Shanna McCullough","type":"Person","_key":"26222"} +{"label":"Martina Nation","version":19,"id":"45012","lastModified":"1301901476000","name":"Martina Nation","type":"Person","_key":"26223"} +{"label":"Heavenly Bodies!","description":"No overview found.","id":"5711","runtime":62,"imdbId":"tt0057133","version":82,"lastModified":"1301908336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40e\/4d3e54885e73d622cb00440e\/heavenly-bodies-mid.jpg","studio":"Eve Productions Inc.","genre":"Comedy","title":"Heavenly Bodies!","releaseDate":-205545600000,"language":"en","type":"Movie","_key":"26224"} +{"label":"Gaby Martone","version":18,"id":"45061","lastModified":"1301901804000","name":"Gaby Martone","type":"Person","_key":"26225"} +{"label":"Fred Owens","version":23,"id":"41696","lastModified":"1301902008000","name":"Fred Owens","type":"Person","_key":"26226"} +{"label":"Billy A. Newhouse","version":19,"id":"45062","lastModified":"1301902292000","name":"Billy A. Newhouse","type":"Person","_key":"26227"} +{"label":"Yvonne Cortell","version":19,"id":"45065","lastModified":"1301902105000","name":"Yvonne Cortell","type":"Person","_key":"26228"} +{"label":"Paulette Firestone","version":19,"id":"45066","lastModified":"1301902292000","name":"Paulette Firestone","type":"Person","_key":"26229"} +{"label":"Maria Andre","version":20,"id":"45067","lastModified":"1301902184000","name":"Maria Andre","type":"Person","_key":"26230"} +{"label":"F.E. Falconer","version":19,"id":"45068","lastModified":"1301902292000","name":"F.E. Falconer","type":"Person","_key":"26231"} +{"label":"Robert J. Ewald","version":19,"id":"45069","lastModified":"1301902292000","name":"Robert J. Ewald","type":"Person","_key":"26232"} +{"label":"William Knowles","version":19,"id":"45070","lastModified":"1301902292000","name":"William Knowles","type":"Person","_key":"26233"} +{"label":"Don Goodwin","version":19,"id":"45072","lastModified":"1301902105000","name":"Don Goodwin","type":"Person","_key":"26234"} +{"label":"Ivana Nolte","version":19,"id":"45073","lastModified":"1301902292000","name":"Ivana Nolte","type":"Person","_key":"26235"} +{"label":"Amber Morgan","version":19,"id":"45074","lastModified":"1301902292000","name":"Amber Morgan","type":"Person","_key":"26236"} +{"label":"Binkie Stewart","version":19,"id":"45075","lastModified":"1301902292000","name":"Binkie Stewart","type":"Person","_key":"26237"} +{"label":"Il Gladiatore che sfid\u00f2 l'impero","description":"No overview found.","id":"5714","runtime":90,"imdbId":"tt0178506","version":53,"lastModified":"1301908336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f3\/4d5aef1d7b9aa122bb0011f3\/il-gladiatore-che-sfid-l-impero-mid.jpg","studio":"Jonia Film","genre":"History","title":"Il Gladiatore che sfid\u00f2 l'impero","releaseDate":-131760000000,"language":"en","type":"Movie","_key":"26238"} +{"label":"Domenico Paolella","version":24,"id":"45030","lastModified":"1301902105000","name":"Domenico Paolella","type":"Person","_key":"26239"} +{"label":"Peter Lupus","version":22,"id":"45033","lastModified":"1301902317000","name":"Peter Lupus","type":"Person","_key":"26240"} +{"label":"Gloria Milland","version":18,"id":"45034","lastModified":"1301902352000","name":"Gloria Milland","type":"Person","_key":"26241"} +{"label":"Piero Lulli","version":23,"id":"45035","lastModified":"1301902377000","name":"Piero Lulli","type":"Person","_key":"26242"} +{"label":"Andrea Checchi","version":24,"id":"45036","lastModified":"1301902315000","name":"Andrea Checchi","type":"Person","_key":"26243"} +{"label":"Acting on Impulse","description":"No overview found.","id":"5715","runtime":93,"imdbId":"tt0106216","version":66,"lastModified":"1301906080000","studio":"Spectacor Films","genre":"Comedy","title":"Acting on Impulse","releaseDate":742262400000,"language":"en","type":"Movie","_key":"26244"} +{"label":"Sam Irvin","version":21,"id":"45037","lastModified":"1301901892000","name":"Sam Irvin","type":"Person","_key":"26245"} +{"label":"Miles O'Keeffe","version":28,"id":"45039","lastModified":"1301901462000","name":"Miles O'Keeffe","type":"Person","_key":"26246"} +{"label":"Adam Ant","version":24,"id":"45042","lastModified":"1301902393000","name":"Adam Ant","type":"Person","_key":"26247"} +{"label":"Smog","description":"No overview found.","id":"5716","runtime":86,"imdbId":"tt0070708","version":70,"lastModified":"1301905714000","studio":"WDR","genre":"Drama","title":"Smog","releaseDate":103680000000,"language":"en","type":"Movie","_key":"26248"} +{"label":"Marie-Luise Marjan","version":23,"id":"45044","lastModified":"1301901983000","name":"Marie-Luise Marjan","type":"Person","_key":"26249"} +{"label":"Wolfgang Gr\u00f6nebaum","version":20,"id":"45045","lastModified":"1301902374000","name":"Wolfgang Gr\u00f6nebaum","type":"Person","_key":"26250"} +{"label":"Heinz Schacht","version":20,"id":"26821","lastModified":"1301902198000","name":"Heinz Schacht","type":"Person","_key":"26251"} +{"label":"Michaela Henner","version":20,"id":"45046","lastModified":"1301902184000","name":"Michaela Henner","type":"Person","_key":"26252"} +{"label":"Hans Schulze","version":20,"id":"45047","lastModified":"1301902383000","name":"Hans Schulze","type":"Person","_key":"26253"} +{"label":"Doris Gallart","version":21,"id":"45048","lastModified":"1301902352000","name":"Doris Gallart","type":"Person","_key":"26254"} +{"label":"Man Push Cart","description":"No overview found.","id":"5717","runtime":87,"imdbId":"tt0464105","trailer":"http:\/\/www.youtube.com\/watch?v=358","homepage":"http:\/\/www.noruzfilms.com\/films\/mpc.html","version":320,"lastModified":"1302019043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc2\/4d192e185e73d60832009fc2\/man-push-cart-mid.jpg","genre":"Drama","title":"Man Push Cart","releaseDate":1125532800000,"language":"en","type":"Movie","_key":"26255"} +{"label":"Charles Daniel Sandoval","version":19,"id":"45725","lastModified":"1301901538000","name":"Charles Daniel Sandoval","type":"Person","_key":"26256"} +{"label":"Ali Reza","version":19,"id":"45726","lastModified":"1301901538000","name":"Ali Reza","type":"Person","_key":"26257"} +{"label":"Farooq 'Duke' Muhammad","version":18,"id":"45728","lastModified":"1301901668000","name":"Farooq 'Duke' Muhammad","type":"Person","_key":"26258"} +{"label":"Panicker Upendran","version":19,"id":"45729","lastModified":"1301901734000","name":"Panicker Upendran","type":"Person","_key":"26259"} +{"label":"Ahmad Razvi","version":20,"id":"45740","lastModified":"1301901892000","name":"Ahmad Razvi","type":"Person","_key":"26260"} +{"label":"Ramin Bahrani","version":26,"id":"45730","lastModified":"1301901945000","name":"Ramin Bahrani","type":"Person","_key":"26261"} +{"label":"King of California","description":"An unstable dad who after getting out of a mental institution tries to convince his daughter that there's Spanish gold buried somewhere under suburbia.","id":"5718","runtime":96,"imdbId":"tt0388182","trailer":"http:\/\/www.youtube.com\/watch?v=360","homepage":"http:\/\/www.firstlookstudios.com\/films\/king\/","version":268,"lastModified":"1301901961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fa\/4bc91ce9017a3c57fe00b3fa\/king-of-california-mid.jpg","studio":"Millenium Films","genre":"Comedy","title":"King of California","releaseDate":1169596800000,"language":"en","type":"Movie","_key":"26262"} +{"label":"Richard L. Fox","version":20,"id":"45836","lastModified":"1301901388000","name":"Richard L. Fox","type":"Person","_key":"26263"} +{"label":"Heather Grierson","version":20,"id":"45837","lastModified":"1301901484000","name":"Heather Grierson","type":"Person","_key":"26264"} +{"label":"Mike Cahill","version":22,"id":"45459","lastModified":"1301901550000","name":"Mike Cahill","type":"Person","_key":"26265"} +{"label":"Willis Burks II","version":20,"id":"45822","lastModified":"1301901484000","name":"Willis Burks II","type":"Person","_key":"26266"} +{"label":"Kathleen Wilhoite","version":32,"id":"42335","lastModified":"1301901240000","name":"Kathleen Wilhoite","type":"Person","_key":"26267"} +{"label":"Arthur Santiago","version":22,"id":"45825","lastModified":"1301901816000","name":"Arthur Santiago","type":"Person","_key":"26268"} +{"label":"Anne L. Nathan","version":19,"id":"45826","lastModified":"1301902167000","name":"Anne L. Nathan","type":"Person","_key":"26269"} +{"label":"Ashley Greene","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4bcc0390017a3c0f2c00005a\/ashley-greene-profile.jpg","version":93,"id":"45827","lastModified":"1301904058000","name":"Ashley Greene","type":"Person","_key":"26270"} +{"label":"Ian Hopps","version":19,"id":"45828","lastModified":"1301901981000","name":"Ian Hopps","type":"Person","_key":"26271"} +{"label":"Paul Lieber","version":21,"id":"45839","lastModified":"1301901936000","name":"Paul Lieber","type":"Person","_key":"26272"} +{"label":"Laura Kachergus","version":19,"id":"45840","lastModified":"1301901981000","name":"Laura Kachergus","type":"Person","_key":"26273"} +{"label":"Mudhoney","description":"No overview found.","id":"5719","runtime":92,"imdbId":"tt0059477","version":94,"lastModified":"1302064235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2af\/4bdf625e017a3c35bf0002af\/mudhoney-mid.jpg","studio":"Neue Delta Filmproduktion","genre":"Drama","title":"Mudhoney","releaseDate":-145324800000,"language":"en","type":"Movie","_key":"26274"} +{"label":"Hal Hopper","version":20,"id":"45081","lastModified":"1301902125000","name":"Hal Hopper","type":"Person","_key":"26275"} +{"label":"Antoinette Cristiani","version":18,"id":"45082","lastModified":"1301901575000","name":"Antoinette Cristiani","type":"Person","_key":"26276"} +{"label":"Rena Horten","version":20,"id":"45083","lastModified":"1301901581000","name":"Rena Horten","type":"Person","_key":"26277"} +{"label":"Lorna Maitland","version":21,"id":"45084","lastModified":"1301902125000","name":"Lorna Maitland","type":"Person","_key":"26278"} +{"label":"Sam Hanna","version":19,"id":"45085","lastModified":"1301902301000","name":"Sam Hanna","type":"Person","_key":"26279"} +{"label":"Lee Ballard","version":19,"id":"45086","lastModified":"1301901927000","name":"Lee Ballard","type":"Person","_key":"26280"} +{"label":"Motor Psycho","description":"No overview found.","id":"5720","runtime":74,"imdbId":"tt0059474","version":72,"lastModified":"1301906080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/840\/4bf4868f017a3c3213000840\/motor-psycho-mid.jpg","studio":"Eve Productions Inc.","genre":"Crime","title":"Motor Psycho","releaseDate":-139449600000,"language":"en","type":"Movie","_key":"26281"} +{"label":"Steve Masters","version":21,"id":"45093","lastModified":"1301901892000","name":"Steve Masters","type":"Person","_key":"26282"} +{"label":"Joseph Cellini","version":20,"id":"45089","lastModified":"1301902105000","name":"Joseph Cellini","type":"Person","_key":"26283"} +{"label":"Arshalouis Aivazian","version":21,"id":"45088","lastModified":"1301902374000","name":"Arshalouis Aivazian","type":"Person","_key":"26284"} +{"label":"Richard S. Brummer","version":26,"id":"41695","lastModified":"1301902188000","name":"Richard S. Brummer","type":"Person","_key":"26285"} +{"label":"George Costello","version":23,"id":"45090","lastModified":"1301902292000","name":"George Costello","type":"Person","_key":"26286"} +{"label":"Coleman Francis","version":23,"id":"45091","lastModified":"1301902322000","name":"Coleman Francis","type":"Person","_key":"26287"} +{"label":"Sharon Lee","version":21,"id":"45092","lastModified":"1301901999000","name":"Sharon Lee","type":"Person","_key":"26288"} +{"label":"Steve Oliver","version":21,"id":"45094","lastModified":"1301901892000","name":"Steve Oliver","type":"Person","_key":"26289"} +{"label":"F. Rufus Owens","version":21,"id":"45095","lastModified":"1301902302000","name":"F. Rufus Owens","type":"Person","_key":"26290"} +{"label":"Thomas Scott","version":20,"id":"45097","lastModified":"1301902292000","name":"Thomas Scott","type":"Person","_key":"26291"} +{"label":"Holle K. Winters","version":20,"id":"45098","lastModified":"1301902105000","name":"Holle K. Winters","type":"Person","_key":"26292"} +{"label":"Vixen!","description":"No overview found.","id":"5721","runtime":70,"imdbId":"tt0063787","version":73,"lastModified":"1302063725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/284\/4bf6bb96017a3c7730000284\/vixen-mid.jpg","studio":"Eve Productions Inc.","genre":"Comedy","title":"Vixen!","releaseDate":-38275200000,"language":"en","type":"Movie","_key":"26293"} +{"label":"Erica Gavin","version":21,"id":"45099","lastModified":"1301902184000","name":"Erica Gavin","type":"Person","_key":"26294"} +{"label":"Garth Pillsbury","version":20,"id":"45100","lastModified":"1301902302000","name":"Garth Pillsbury","type":"Person","_key":"26295"} +{"label":"Harrison Page","version":31,"id":"45101","lastModified":"1301901518000","name":"Harrison Page","type":"Person","_key":"26296"} +{"label":"Jon Evans","version":19,"id":"45102","lastModified":"1301902292000","name":"Jon Evans","type":"Person","_key":"26297"} +{"label":"Vincene Wallace","version":22,"id":"45103","lastModified":"1301901767000","name":"Vincene Wallace","type":"Person","_key":"26298"} +{"label":"Robert Aiken","version":20,"id":"45104","lastModified":"1301902306000","name":"Robert Aiken","type":"Person","_key":"26299"} +{"label":"Michael Donovan O'Donnell","version":18,"id":"45105","lastModified":"1301902352000","name":"Michael Donovan O'Donnell","type":"Person","_key":"26300"} +{"label":"Peter Carpenter","version":21,"id":"45106","lastModified":"1301902176000","name":"Peter Carpenter","type":"Person","_key":"26301"} +{"label":"Jackie Illman","version":19,"id":"45107","lastModified":"1301902292000","name":"Jackie Illman","type":"Person","_key":"26302"} +{"label":"Beyond the Valley of the Dolls","description":"A hip and happenin' all girl rock group head to LA to claim lead-singer Kelly's inheritance and make it (and make it) in LA. Soon the girls fall into a morass of drugs and deceit as their recording success soars. It takes several tragedies to make them stop and think... but is it too late?","id":"5722","runtime":109,"imdbId":"tt0065466","trailer":"http:\/\/www.youtube.com\/watch?v=373","homepage":"http:\/\/www.beyondthevalleyofthedolls.com\/home.html","version":86,"lastModified":"1301903190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f22\/4cfe81f35e73d6299b004f22\/beyond-the-valley-of-the-dolls-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Beyond the Valley of the Dolls","releaseDate":17020800000,"language":"en","type":"Movie","_key":"26303"} +{"label":"Dolly Read","version":20,"id":"45110","lastModified":"1301901992000","name":"Dolly Read","type":"Person","_key":"26304"} +{"label":"Cynthia Myers","version":20,"id":"45111","lastModified":"1301901818000","name":"Cynthia Myers","type":"Person","_key":"26305"} +{"label":"Marcia McBroom","version":20,"id":"45112","lastModified":"1301902378000","name":"Marcia McBroom","type":"Person","_key":"26306"} +{"label":"John Lazar","version":25,"id":"45113","lastModified":"1301901666000","name":"John Lazar","type":"Person","_key":"26307"} +{"label":"Michael Blodgett","version":25,"id":"45114","lastModified":"1301902028000","name":"Michael Blodgett","type":"Person","_key":"26308"} +{"label":"Edy Williams","version":26,"id":"45115","lastModified":"1301901979000","name":"Edy Williams","type":"Person","_key":"26309"} +{"label":"Phyllis Davis","version":24,"id":"36480","lastModified":"1301901691000","name":"Phyllis Davis","type":"Person","_key":"26310"} +{"label":"Once","description":"The Guy is a Dublin guitarist\/singer-songwriter who makes a living by fixing vacuum cleaners in his Dad's Hoover repair shop by day, and singing and playing for money on the Dublin streets by night. The Girl is a Czech who plays piano when she gets a chance, and does odd jobs by day and takes care of her mom and her daughter by night.","id":"5723","runtime":85,"imdbId":"tt0907657","trailer":"http:\/\/www.youtube.com\/watch?v=726SFblz9Lk","homepage":"http:\/\/www.foxsearchlight.com\/once\/","version":190,"lastModified":"1301902062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42b\/4bc91cf1017a3c57fe00b42b\/once-mid.jpg","studio":"Summit Entertainment","genre":"Drama","title":"Once","releaseDate":1152921600000,"language":"en","type":"Movie","_key":"26311"} +{"label":"John Carney","version":32,"id":"45117","lastModified":"1301901538000","name":"John Carney","type":"Person","_key":"26312"} +{"label":"Glen Hansard","version":36,"id":"45124","lastModified":"1301901382000","name":"Glen Hansard","type":"Person","_key":"26313"} +{"label":"Mark\u00e9ta Irglov\u00e1","version":31,"id":"45127","lastModified":"1301901431000","name":"Mark\u00e9ta Irglov\u00e1","type":"Person","_key":"26314"} +{"label":"Hugo Walsh","version":3,"id":"231753","lastModified":"1301859680000","name":"Hugo Walsh","type":"Person","_key":"26315"} +{"label":"Gerard Hendrick","version":3,"id":"231754","lastModified":"1301859707000","name":"Gerard Hendrick","type":"Person","_key":"26316"} +{"label":"Alaistair Foley","version":24,"id":"45129","lastModified":"1301901505000","name":"Alaistair Foley","type":"Person","_key":"26317"} +{"label":"Geoff Minogue","version":25,"id":"45130","lastModified":"1301901616000","name":"Geoff Minogue","type":"Person","_key":"26318"} +{"label":"Bill Hodnett","version":25,"id":"45131","lastModified":"1301901616000","name":"Bill Hodnett","type":"Person","_key":"26319"} +{"label":"Danuse Ktrestova","version":25,"id":"45132","lastModified":"1301901892000","name":"Danuse Ktrestova","type":"Person","_key":"26320"} +{"label":"Darren Healy","version":16,"id":"143859","lastModified":"1301902856000","name":"Darren Healy","type":"Person","_key":"26321"} +{"label":"Mal Whyte","version":13,"id":"188433","lastModified":"1301903206000","name":"Mal Whyte","type":"Person","_key":"26322"} +{"label":"Marcella Plunkett","version":13,"id":"163544","lastModified":"1301903611000","name":"Marcella Plunkett","type":"Person","_key":"26323"} +{"label":"Madonnen","description":"No overview found.","id":"5724","runtime":125,"imdbId":"tt0768209","homepage":"http:\/\/www.peripherfilm.de\/madonnen\/","version":84,"lastModified":"1301903855000","studio":"Pandora Film","genre":"Drama","title":"Madonnen","releaseDate":1171152000000,"language":"en","type":"Movie","_key":"26324"} +{"label":"Maria Speth","version":22,"id":"45133","lastModified":"1301902292000","name":"Maria Speth","type":"Person","_key":"26325"} +{"label":"Luisa Sappelt","version":21,"id":"45149","lastModified":"1301901780000","name":"Luisa Sappelt","type":"Person","_key":"26326"} +{"label":"Coleman Swinton","version":18,"id":"45150","lastModified":"1301901804000","name":"Coleman Swinton","type":"Person","_key":"26327"} +{"label":"Gerti Drassl","version":20,"id":"45151","lastModified":"1301902292000","name":"Gerti Drassl","type":"Person","_key":"26328"} +{"label":"Olivier Gourmet","version":44,"id":"45152","lastModified":"1302054335000","name":"Olivier Gourmet","type":"Person","_key":"26329"} +{"label":"Adriana Lewis","version":15,"id":"45153","lastModified":"1301902292000","name":"Adriana Lewis","type":"Person","_key":"26330"} +{"label":"Kenneth Uhle","version":15,"id":"45154","lastModified":"1301902292000","name":"Kenneth Uhle","type":"Person","_key":"26331"} +{"label":"Elli G\u00f6tz","version":15,"id":"45155","lastModified":"1301902292000","name":"Elli G\u00f6tz","type":"Person","_key":"26332"} +{"label":"Jermaine Tyrell Sanders","version":15,"id":"45156","lastModified":"1301902292000","name":"Jermaine Tyrell Sanders","type":"Person","_key":"26333"} +{"label":"Devante Latrell Jackson","version":15,"id":"45157","lastModified":"1301902292000","name":"Devante Latrell Jackson","type":"Person","_key":"26334"} +{"label":"Martin Goossens","version":15,"id":"45158","lastModified":"1301902292000","name":"Martin Goossens","type":"Person","_key":"26335"} +{"label":"Isabella Soupart","version":19,"id":"45159","lastModified":"1301902292000","name":"Isabella Soupart","type":"Person","_key":"26336"} +{"label":"J\u00e9r\u00e9mie Segard","version":22,"id":"45160","lastModified":"1301901734000","name":"J\u00e9r\u00e9mie Segard","type":"Person","_key":"26337"} +{"label":"Supervixens","description":"Supervixens is a 1975 sexploitation satire by American filmmaker Russ Meyer. The cast features Meyer regulars Charles Napier, Uschi Digard, and Haji. The film also features Shari Eubank (in a dual role) in one of her only two film roles ever and Christy Hartburg in her only film role ever.http:\/\/en.wikipedia.org\/wiki\/Supervixens","id":"5725","runtime":106,"imdbId":"tt0073768","version":72,"lastModified":"1301904797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/430\/4bc91cf4017a3c57fe00b430\/supervixens-mid.jpg","studio":"RM Films International","genre":"Comedy","title":"Supervixens","releaseDate":165628800000,"language":"en","type":"Movie","_key":"26338"} +{"label":"Charles Pitts","version":21,"id":"45163","lastModified":"1301901677000","name":"Charles Pitts","type":"Person","_key":"26339"} +{"label":"Shari Eubank","version":19,"id":"45183","lastModified":"1301901763000","name":"Shari Eubank","type":"Person","_key":"26340"} +{"label":"Henry Rowland","version":21,"id":"45164","lastModified":"1301901930000","name":"Henry Rowland","type":"Person","_key":"26341"} +{"label":"Christy Hartburg","version":20,"id":"45165","lastModified":"1301902029000","name":"Christy Hartburg","type":"Person","_key":"26342"} +{"label":"Deborah McGuire","version":18,"id":"45166","lastModified":"1301901981000","name":"Deborah McGuire","type":"Person","_key":"26343"} +{"label":"'Big Jack' Provan","version":18,"id":"45167","lastModified":"1301901981000","name":"'Big Jack' Provan","type":"Person","_key":"26344"} +{"label":"Mondo Topless","description":"Mondo Topless is a 1966 pseudo documentary directed by Russ Meyer, featuring Babette Bardot and Lorna Maitland among others. It was Meyer's first color film following a string of black & white \"roughie nudies\", including Faster, Pussycat! Kill! Kill! While a straightforward sexploitation film, the film owes some debt to the French new wave and cin\u00e9ma v\u00e9rit\u00e9 traditions, and is known to some under the titles: 'Mondo Girls' and 'Mondo Top.'Its tagline: \"Two Much For One Man...Russ Meyer's Busty Bu","id":"5726","runtime":60,"imdbId":"tt0060712","version":76,"lastModified":"1301903358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/435\/4bc91cf4017a3c57fe00b435\/mondo-topless-mid.jpg","studio":"Eve Productions Inc.","genre":"Documentary","title":"Mondo Topless","releaseDate":-98582400000,"language":"en","type":"Movie","_key":"26345"} +{"label":"Babette Bardot","version":20,"id":"45169","lastModified":"1301901616000","name":"Babette Bardot","type":"Person","_key":"26346"} +{"label":"Pat Barrington","version":19,"id":"45170","lastModified":"1301902105000","name":"Pat Barrington","type":"Person","_key":"26347"} +{"label":"Sin Lenee","version":19,"id":"45171","lastModified":"1301902105000","name":"Sin Lenee","type":"Person","_key":"26348"} +{"label":"Darlene Grey","version":18,"id":"45172","lastModified":"1301902167000","name":"Darlene Grey","type":"Person","_key":"26349"} +{"label":"Diane Young","version":19,"id":"45173","lastModified":"1301902292000","name":"Diane Young","type":"Person","_key":"26350"} +{"label":"Darla Paris","version":18,"id":"45174","lastModified":"1301902352000","name":"Darla Paris","type":"Person","_key":"26351"} +{"label":"Donna X","version":21,"id":"45175","lastModified":"1301901892000","name":"Donna X","type":"Person","_key":"26352"} +{"label":"Veronique Gabriel","version":21,"id":"45176","lastModified":"1301902105000","name":"Veronique Gabriel","type":"Person","_key":"26353"} +{"label":"Greta Thorwald","version":21,"id":"45177","lastModified":"1301902292000","name":"Greta Thorwald","type":"Person","_key":"26354"} +{"label":"Denice Duval","version":19,"id":"45178","lastModified":"1301902292000","name":"Denice Duval","type":"Person","_key":"26355"} +{"label":"Abundavita","version":21,"id":"45179","lastModified":"1301902292000","name":"Abundavita","type":"Person","_key":"26356"} +{"label":"Heide Richter","version":20,"id":"45180","lastModified":"1301902352000","name":"Heide Richter","type":"Person","_key":"26357"} +{"label":"Gigi La Touche","version":21,"id":"45181","lastModified":"1301902292000","name":"Gigi La Touche","type":"Person","_key":"26358"} +{"label":"Yvette Le Grand","version":21,"id":"45182","lastModified":"1301902292000","name":"Yvette Le Grand","type":"Person","_key":"26359"} +{"label":"The Desperate Women","description":"The film is a cheesy but sincere plea for proper sex education--and against illegal abortion. ","id":"5727","runtime":66,"imdbId":"tt0301192","version":66,"lastModified":"1301908596000","studio":"Topas","genre":"Drama","title":"The Desperate Women","releaseDate":-473385600000,"language":"en","type":"Movie","_key":"26360"} +{"label":"Anne Appleton","version":20,"id":"45185","lastModified":"1301901656000","name":"Anne Appleton","type":"Person","_key":"26361"} +{"label":"Paul Hahn","version":23,"id":"45186","lastModified":"1301901963000","name":"Paul Hahn","type":"Person","_key":"26362"} +{"label":"Samuel Newman","version":23,"id":"45187","lastModified":"1301901963000","name":"Samuel Newman","type":"Person","_key":"26363"} +{"label":"Maria Girard","version":20,"id":"45188","lastModified":"1301901999000","name":"Maria Girard","type":"Person","_key":"26364"} +{"label":"Roberto Risso","version":23,"id":"45189","lastModified":"1301901999000","name":"Roberto Risso","type":"Person","_key":"26365"} +{"label":"Ray Barrett","version":32,"id":"34657","lastModified":"1301998844000","name":"Ray Barrett","type":"Person","_key":"26366"} +{"label":"Virginia Leon","version":20,"id":"45190","lastModified":"1301901963000","name":"Virginia Leon","type":"Person","_key":"26367"} +{"label":"Joseph Allen","version":24,"id":"45249","lastModified":"1301901963000","name":"Joseph Allen","type":"Person","_key":"26368"} +{"label":"Howard Douglas","version":20,"id":"45250","lastModified":"1301901999000","name":"Howard Douglas","type":"Person","_key":"26369"} +{"label":"Stanley Glenn","version":20,"id":"45251","lastModified":"1301901963000","name":"Stanley Glenn","type":"Person","_key":"26370"} +{"label":"Theodore Marcuse","version":22,"id":"45252","lastModified":"1301901963000","name":"Theodore Marcuse","type":"Person","_key":"26371"} +{"label":"Kanen Wolfe","version":20,"id":"45253","lastModified":"1301901963000","name":"Kanen Wolfe","type":"Person","_key":"26372"} +{"label":"Robbie Lee","version":21,"id":"47405","lastModified":"1301901963000","name":"Robbie Lee","type":"Person","_key":"26373"} +{"label":"Louis B. Appleton Jr.","version":17,"id":"45191","lastModified":"1301901963000","name":"Louis B. Appleton Jr.","type":"Person","_key":"26374"} +{"label":"Tag der Idioten","description":"No overview found.","id":"5728","runtime":110,"imdbId":"tt0083160","version":44,"lastModified":"1301904445000","studio":"Oko-Film","genre":"Drama","title":"Tag der Idioten","releaseDate":385948800000,"language":"en","type":"Movie","_key":"26375"} +{"label":"Werner Schroeter","version":23,"id":"45192","lastModified":"1301901951000","name":"Werner Schroeter","type":"Person","_key":"26376"} +{"label":"Ingrid Caven","version":23,"id":"45195","lastModified":"1301901834000","name":"Ingrid Caven","type":"Person","_key":"26377"} +{"label":"Ida Di Benedetto","version":22,"id":"45196","lastModified":"1301902187000","name":"Ida Di Benedetto","type":"Person","_key":"26378"} +{"label":"Magdalena Montezuma","version":19,"id":"45197","lastModified":"1301902292000","name":"Magdalena Montezuma","type":"Person","_key":"26379"} +{"label":"Hermann Killmeyer","version":19,"id":"45198","lastModified":"1301902292000","name":"Hermann Killmeyer","type":"Person","_key":"26380"} +{"label":"Mostefa Djadjam","version":19,"id":"45199","lastModified":"1301902292000","name":"Mostefa Djadjam","type":"Person","_key":"26381"} +{"label":"L'\u00e2ge d'or","description":"The film consists of a series of tightly interlinked vignettes, the most sustained of which details the story of a man and a woman who are passionately in love. Their attempts to consummate their passion are constantly thwarted, by their families, by the Church and bourgeois society in general. In one notable scene, the young girl passionately fellates the toe of a religious statue.","id":"5729","runtime":60,"imdbId":"tt0021577","version":45,"lastModified":"1301904476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43a\/4bc91cf4017a3c57fe00b43a\/l-age-d-or-mid.jpg","studio":"Vicomte de Noailles","genre":"Comedy","title":"L'\u00e2ge d'or","releaseDate":-1236384000000,"language":"en","type":"Movie","_key":"26382"} +{"label":"Max Ernst","version":20,"id":"45201","lastModified":"1301901963000","name":"Max Ernst","type":"Person","_key":"26383"} +{"label":"Lionel Salem","version":20,"id":"45204","lastModified":"1301902157000","name":"Lionel Salem","type":"Person","_key":"26384"} +{"label":"Inn of the Damned","description":"No overview found.","id":"5730","runtime":118,"imdbId":"tt0071661","version":66,"lastModified":"1301908597000","studio":"Terryrod","genre":"Action","title":"Inn of the Damned","releaseDate":185068800000,"language":"en","type":"Movie","_key":"26385"} +{"label":"Terry Bourke","version":21,"id":"45202","lastModified":"1301902347000","name":"Terry Bourke","type":"Person","_key":"26386"} +{"label":"Alex Cord","version":29,"id":"45206","lastModified":"1301902385000","name":"Alex Cord","type":"Person","_key":"26387"} +{"label":"Michael Craig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/608\/4c62afe67b9aa172dd000608\/michael-craig-profile.jpg","version":34,"id":"25536","lastModified":"1302011399000","name":"Michael Craig","type":"Person","_key":"26388"} +{"label":"Phillip Avalon","version":29,"id":"44834","lastModified":"1301901567000","name":"Phillip Avalon","type":"Person","_key":"26389"} +{"label":"Tony Bonner","version":26,"id":"45207","lastModified":"1301901403000","name":"Tony Bonner","type":"Person","_key":"26390"} +{"label":"Carla Hoogeveen","version":20,"id":"45208","lastModified":"1301902374000","name":"Carla Hoogeveen","type":"Person","_key":"26391"} +{"label":"Summer City","description":"Four friends take a road trip to kick back, hit the pubs, and go surfing. Tension builds among the group between Sandy, a quiet young man who is angered by the obnoxious, womanizing Boo who seduces a teenaged girl while on their trip in one of his usual one night stands. Meanwhile, the girl's psychotic dad is also looking for Boo out of revenge for what he did to his daughter. Boo is in for a major wake up call.","id":"5731","runtime":90,"imdbId":"tt0076780","version":248,"lastModified":"1301903713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4d1c29fe7b9aa17a8f0001c4\/summer-city-mid.jpg","studio":"Avalon Studios","genre":"Drama","title":"Summer City","releaseDate":251596800000,"language":"en","type":"Movie","_key":"26392"} +{"label":"Christopher Fraser","version":21,"id":"45209","lastModified":"1301902199000","name":"Christopher Fraser","type":"Person","_key":"26393"} +{"label":"John Jarratt","version":25,"id":"45210","lastModified":"1301901708000","name":"John Jarratt","type":"Person","_key":"26394"} +{"label":"Steve Bisley","version":34,"id":"45211","lastModified":"1301901261000","name":"Steve Bisley","type":"Person","_key":"26395"} +{"label":"James Elliott","version":21,"id":"45212","lastModified":"1301902374000","name":"James Elliott","type":"Person","_key":"26396"} +{"label":"Debbie Forman","version":21,"id":"45213","lastModified":"1301902200000","name":"Debbie Forman","type":"Person","_key":"26397"} +{"label":"Carl Rorke","version":21,"id":"45214","lastModified":"1301902389000","name":"Carl Rorke","type":"Person","_key":"26398"} +{"label":"Sher Mountain Killings Mystery","description":"No overview found.","id":"5732","runtime":84,"imdbId":"tt0100596","version":66,"lastModified":"1301904721000","studio":"InterTropic Films","genre":"Action","title":"Sher Mountain Killings Mystery","releaseDate":657849600000,"language":"en","type":"Movie","_key":"26399"} +{"label":"Vince Martin","version":20,"id":"45215","lastModified":"1301902347000","name":"Vince Martin","type":"Person","_key":"26400"} +{"label":"Tom Richards","version":20,"id":"45216","lastModified":"1301902346000","name":"Tom Richards","type":"Person","_key":"26401"} +{"label":"Abigail","version":22,"id":"45217","lastModified":"1301902346000","name":"Abigail","type":"Person","_key":"26402"} +{"label":"Ron Becks","version":20,"id":"45218","lastModified":"1301901963000","name":"Ron Becks","type":"Person","_key":"26403"} +{"label":"Elizabeth McIvor","version":20,"id":"45219","lastModified":"1301902346000","name":"Elizabeth McIvor","type":"Person","_key":"26404"} +{"label":"Jeffrey Rhoe","version":20,"id":"45220","lastModified":"1301902157000","name":"Jeffrey Rhoe","type":"Person","_key":"26405"} +{"label":"Steven Jacobs","version":20,"id":"45221","lastModified":"1301901963000","name":"Steven Jacobs","type":"Person","_key":"26406"} +{"label":"Joe Bugner","version":25,"id":"45222","lastModified":"1301902159000","name":"Joe Bugner","type":"Person","_key":"26407"} +{"label":"Scalps","description":"No overview found.","id":"5733","runtime":84,"imdbId":"tt0086248","version":87,"lastModified":"1301906973000","studio":"American Partnership","genre":"Horror","title":"Scalps","releaseDate":439257600000,"language":"en","type":"Movie","_key":"26408"} +{"label":"Roger Maycock","version":20,"id":"45223","lastModified":"1301901999000","name":"Roger Maycock","type":"Person","_key":"26409"} +{"label":"Frank McDonald","version":19,"id":"45224","lastModified":"1301901575000","name":"Frank McDonald","type":"Person","_key":"26410"} +{"label":"Carol Sue Flockhart","version":20,"id":"45225","lastModified":"1301901963000","name":"Carol Sue Flockhart","type":"Person","_key":"26411"} +{"label":"Jo-Ann Robinson","version":20,"id":"45227","lastModified":"1301901809000","name":"Jo-Ann Robinson","type":"Person","_key":"26412"} +{"label":"Barbara Magnusson","version":20,"id":"45228","lastModified":"1301901963000","name":"Barbara Magnusson","type":"Person","_key":"26413"} +{"label":"Kirk Alyn","version":21,"id":"45229","lastModified":"1301901963000","name":"Kirk Alyn","type":"Person","_key":"26414"} +{"label":"Carroll Borland","version":26,"id":"45230","lastModified":"1301901789000","name":"Carroll Borland","type":"Person","_key":"26415"} +{"label":"Cynthia Hartline","version":20,"id":"45231","lastModified":"1301901999000","name":"Cynthia Hartline","type":"Person","_key":"26416"} +{"label":"Biohazard","description":"No overview found.","id":"5734","runtime":90,"imdbId":"tt0086967","version":60,"lastModified":"1301907282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43f\/4bc91cf4017a3c57fe00b43f\/biohazard-mid.jpg","studio":"Viking Films","genre":"Horror","title":"Biohazard","releaseDate":491875200000,"language":"en","type":"Movie","_key":"26417"} +{"label":"Aldo Ray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ed\/4bd853c7017a3c1bff0000ed\/aldo-ray-profile.jpg","version":37,"id":"45232","lastModified":"1301901671000","name":"Aldo Ray","type":"Person","_key":"26418"} +{"label":"Angelique Pettyjohn","version":18,"id":"98241","lastModified":"1301903072000","name":"Angelique Pettyjohn","type":"Person","_key":"26419"} +{"label":"William Fair","version":18,"id":"98242","lastModified":"1301902711000","name":"William Fair","type":"Person","_key":"26420"} +{"label":"David O'Hara","version":18,"id":"98243","lastModified":"1301903002000","name":"David O'Hara","type":"Person","_key":"26421"} +{"label":"Art Payton","version":17,"id":"98245","lastModified":"1301903063000","name":"Art Payton","type":"Person","_key":"26422"} +{"label":"Charles Roth","version":17,"id":"98246","lastModified":"1301903067000","name":"Charles Roth","type":"Person","_key":"26423"} +{"label":"The Tomb","description":"No overview found.","id":"5735","runtime":84,"imdbId":"tt0090183","version":246,"lastModified":"1301907289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/444\/4bc91cf5017a3c57fe00b444\/the-tomb-mid.jpg","studio":"Trans World Entertainment","genre":"Action","title":"The Tomb","releaseDate":531100800000,"language":"en","type":"Movie","_key":"26424"} +{"label":"Susan Stokey","version":23,"id":"45234","lastModified":"1301902318000","name":"Susan Stokey","type":"Person","_key":"26425"} +{"label":"King of the Nudies","description":"No overview found.","id":"5740","runtime":90,"imdbId":"tt0493560","version":684,"lastModified":"1301521894000","genre":"Documentary","title":"King of the Nudies","language":"en","type":"Movie","_key":"26426"} +{"label":"Lorna","description":"No overview found.","id":"5741","runtime":78,"imdbId":"tt0058301","version":60,"lastModified":"1301906660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a8\/4bf4829d017a3c32150006a8\/lorna-mid.jpg","studio":"Eve Productions Inc.","genre":"Drama","title":"Lorna","releaseDate":-167443200000,"language":"en","type":"Movie","_key":"26427"} +{"label":"Mark Bradley","version":21,"id":"45255","lastModified":"1301902125000","name":"Mark Bradley","type":"Person","_key":"26428"} +{"label":"James Rucker","version":20,"id":"45256","lastModified":"1301902387000","name":"James Rucker","type":"Person","_key":"26429"} +{"label":"Doc Scortt","version":19,"id":"45257","lastModified":"1301902125000","name":"Doc Scortt","type":"Person","_key":"26430"} +{"label":"Cherry, Harry & Raquel!","description":"No overview found.","id":"5742","runtime":71,"imdbId":"tt0064160","version":69,"lastModified":"1301906516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00c\/4c1a573f7b9aa1167200000c\/cherry-harry-raquel-mid.jpg","studio":"Eve Productions Inc.","genre":"Crime","title":"Cherry, Harry & Raquel!","releaseDate":9590400000,"language":"en","type":"Movie","_key":"26431"} +{"label":"Larissa Ely","version":20,"id":"45259","lastModified":"1301901797000","name":"Larissa Ely","type":"Person","_key":"26432"} +{"label":"Linda Ashton","version":20,"id":"45260","lastModified":"1301901974000","name":"Linda Ashton","type":"Person","_key":"26433"} +{"label":"Bert Santos","version":22,"id":"45261","lastModified":"1301902349000","name":"Bert Santos","type":"Person","_key":"26434"} +{"label":"Michelle Grand","version":20,"id":"45262","lastModified":"1301901999000","name":"Michelle Grand","type":"Person","_key":"26435"} +{"label":"John Koester","version":20,"id":"45263","lastModified":"1301901974000","name":"John Koester","type":"Person","_key":"26436"} +{"label":"Daniel Roberts","version":24,"id":"45264","lastModified":"1301901975000","name":"Daniel Roberts","type":"Person","_key":"26437"} +{"label":"Liebe ist Geschmackssache","description":"No overview found.","id":"5743","runtime":15,"imdbId":"tt0832503","version":46,"lastModified":"1300978421000","studio":"Kunsthochschule f\u00fcr Medien K\u00f6ln (KHM)","genre":"Musical","title":"Liebe ist Geschmackssache","releaseDate":852076800000,"language":"en","type":"Movie","_key":"26438"} +{"label":"Piet Fuchs","version":27,"id":"45265","lastModified":"1301901538000","name":"Piet Fuchs","type":"Person","_key":"26439"} +{"label":"Bernhard Marsch","version":24,"id":"45266","lastModified":"1301901816000","name":"Bernhard Marsch","type":"Person","_key":"26440"} +{"label":"Kai-Maria Steink\u00fchler","version":19,"id":"45271","lastModified":"1301902292000","name":"Kai-Maria Steink\u00fchler","type":"Person","_key":"26441"} +{"label":"Karen Oldenburg","version":19,"id":"45272","lastModified":"1301901616000","name":"Karen Oldenburg","type":"Person","_key":"26442"} +{"label":"Jo Zimmerman","version":18,"id":"45273","lastModified":"1301902352000","name":"Jo Zimmerman","type":"Person","_key":"26443"} +{"label":"Erik Goertz","version":19,"id":"45275","lastModified":"1301902292000","name":"Erik Goertz","type":"Person","_key":"26444"} +{"label":"Julia Hornisch","version":19,"id":"45276","lastModified":"1301902292000","name":"Julia Hornisch","type":"Person","_key":"26445"} +{"label":"J\u00fcrgen Nau","version":19,"id":"45277","lastModified":"1301902292000","name":"J\u00fcrgen Nau","type":"Person","_key":"26446"} +{"label":"Hans-Dieter Delkus","version":19,"id":"45278","lastModified":"1301902292000","name":"Hans-Dieter Delkus","type":"Person","_key":"26447"} +{"label":"Peter H\u00fcbner","version":19,"id":"45274","lastModified":"1301902292000","name":"Peter H\u00fcbner","type":"Person","_key":"26448"} +{"label":"Fanny Hill","description":"No overview found.","id":"5744","runtime":96,"imdbId":"tt0058088","version":64,"lastModified":"1301907281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b7\/4d3e57e15e73d622d10042b7\/fanny-hill-mid.jpg","studio":"Central Cinema Company Film","genre":"Comedy","title":"Fanny Hill","releaseDate":-166233600000,"language":"en","type":"Movie","_key":"26449"} +{"label":"Albert Zugsmith","version":37,"id":"45279","lastModified":"1301902157000","name":"Albert Zugsmith","type":"Person","_key":"26450"} +{"label":"Let\u00edcia Rom\u00e1n","version":22,"id":"45283","lastModified":"1301901804000","name":"Let\u00edcia Rom\u00e1n","type":"Person","_key":"26451"} +{"label":"Veronica Ericson","version":19,"id":"45286","lastModified":"1301902292000","name":"Veronica Ericson","type":"Person","_key":"26452"} +{"label":"Christiane Schmidtmer","version":19,"id":"45285","lastModified":"1301902292000","name":"Christiane Schmidtmer","type":"Person","_key":"26453"} +{"label":"Karin Evans","version":19,"id":"45284","lastModified":"1301902292000","name":"Karin Evans","type":"Person","_key":"26454"} +{"label":"Alexander D'Arcy","version":24,"birthday":"-1937437200000","id":"77159","birthplace":"Cairo, Egypt","lastModified":"1301901642000","name":"Alexander D'Arcy","type":"Person","_key":"26455"} +{"label":"The Seven Minutes","description":"No overview found.","id":"5745","runtime":115,"imdbId":"tt0067736","version":74,"lastModified":"1301907283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08c\/4c45a61a7b9aa15ddd00008c\/the-seven-minutes-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Seven Minutes","releaseDate":49075200000,"language":"en","type":"Movie","_key":"26456"} +{"label":"Wayne Maunder","version":19,"id":"45289","lastModified":"1301901734000","name":"Wayne Maunder","type":"Person","_key":"26457"} +{"label":"Marianne McAndrew","version":21,"id":"45290","lastModified":"1301902148000","name":"Marianne McAndrew","type":"Person","_key":"26458"} +{"label":"Philip Carey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c0\/4c77d6717b9aa16a090002c0\/philip-carey-profile.jpg","version":30,"id":"45291","lastModified":"1301901426000","name":"Philip Carey","type":"Person","_key":"26459"} +{"label":"Yvonne De Carlo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20b\/4bd5abb0017a3c2e7400020b\/yvonne-de-carlo-profile.jpg","version":46,"id":"41240","lastModified":"1301985766000","name":"Yvonne De Carlo","type":"Person","_key":"26460"} +{"label":"Yvonne D'Angers","version":19,"id":"45292","lastModified":"1301902167000","name":"Yvonne D'Angers","type":"Person","_key":"26461"} +{"label":"Faster Pussycat Fuck! Fuck!","description":"No overview found.","id":"5746","runtime":90,"imdbId":"tt0442220","version":47,"lastModified":"1301904445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/456\/4bc91cf5017a3c57fe00b456\/faster-pussycat-fuck-fuck-mid.jpg","studio":"Starr Productions","genre":"Erotic","title":"Faster Pussycat Fuck! Fuck!","releaseDate":1115078400000,"language":"en","type":"Movie","_key":"26462"} +{"label":"Elizabeth Starr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4cadd7015e73d650730000c2\/elizabeth-starr-profile.jpg","version":34,"id":"45293","lastModified":"1301901263000","name":"Elizabeth Starr","type":"Person","_key":"26463"} +{"label":"Larry Blueballs","version":21,"id":"45295","lastModified":"1301902292000","name":"Larry Blueballs","type":"Person","_key":"26464"} +{"label":"Kandi Cox","version":21,"id":"45296","lastModified":"1301901538000","name":"Kandi Cox","type":"Person","_key":"26465"} +{"label":"Summer Cummings","version":21,"id":"45297","lastModified":"1301901476000","name":"Summer Cummings","type":"Person","_key":"26466"} +{"label":"Dexter","version":21,"id":"45298","lastModified":"1301902105000","name":"Dexter","type":"Person","_key":"26467"} +{"label":"Cool Kat","version":21,"id":"45299","lastModified":"1301901892000","name":"Cool Kat","type":"Person","_key":"26468"} +{"label":"Rod Long","version":28,"id":"45300","lastModified":"1301902292000","name":"Rod Long","type":"Person","_key":"26469"} +{"label":"Andrew Morgado","version":21,"id":"45301","lastModified":"1301902292000","name":"Andrew Morgado","type":"Person","_key":"26470"} +{"label":"Daphne Rosen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/289\/4ca13fe57b9aa16463000289\/daphne-rosen-profile.jpg","version":25,"id":"45302","lastModified":"1301902222000","name":"Daphne Rosen","type":"Person","_key":"26471"} +{"label":"Dik Silver","version":21,"id":"45303","lastModified":"1301902105000","name":"Dik Silver","type":"Person","_key":"26472"} +{"label":"Alexis Star","version":21,"id":"45304","lastModified":"1301902105000","name":"Alexis Star","type":"Person","_key":"26473"} +{"label":"Tiffany Towers","version":21,"id":"45305","lastModified":"1301902105000","name":"Tiffany Towers","type":"Person","_key":"26474"} +{"label":"Common Law Cabin","description":"No overview found.","id":"5747","runtime":70,"imdbId":"tt0061504","trailer":"http:\/\/www.youtube.com\/watch?v=377","version":68,"lastModified":"1301906631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ef\/4bf3c914017a3c320d0005ef\/common-law-cabin-mid.jpg","studio":"Eve Productions Inc.","genre":"Comedy","title":"Common Law Cabin","releaseDate":-79056000000,"language":"en","type":"Movie","_key":"26475"} +{"label":"Ken Swofford","version":19,"id":"45308","lastModified":"1301902105000","name":"Ken Swofford","type":"Person","_key":"26476"} +{"label":"Alaina Capri","version":21,"id":"45309","lastModified":"1301901781000","name":"Alaina Capri","type":"Person","_key":"26477"} +{"label":"Adele Rein","version":19,"id":"45310","lastModified":"1301902292000","name":"Adele Rein","type":"Person","_key":"26478"} +{"label":"Andrew Hagara","version":19,"id":"45311","lastModified":"1301902291000","name":"Andrew Hagara","type":"Person","_key":"26479"} +{"label":"Good Morning... and Goodbye!","description":"No overview found.","id":"5748","runtime":80,"imdbId":"tt0061719","version":75,"lastModified":"1301147053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4c1f0cba7b9aa130a5000009\/good-morning-and-goodbye-mid.jpg","studio":"Eve Productions Inc.","genre":"Crime","title":"Good Morning... and Goodbye!","releaseDate":-68428800000,"language":"en","type":"Movie","_key":"26480"} +{"label":"Toby Adler","version":20,"id":"45313","lastModified":"1301902389000","name":"Toby Adler","type":"Person","_key":"26481"} +{"label":"Karen Ciral","version":20,"id":"45314","lastModified":"1301902147000","name":"Karen Ciral","type":"Person","_key":"26482"} +{"label":"Tom Howland","version":20,"id":"45315","lastModified":"1301902331000","name":"Tom Howland","type":"Person","_key":"26483"} +{"label":"Joe Perrin","version":20,"id":"45316","lastModified":"1301902331000","name":"Joe Perrin","type":"Person","_key":"26484"} +{"label":"Cara Peters","version":20,"id":"45317","lastModified":"1301902167000","name":"Cara Peters","type":"Person","_key":"26485"} +{"label":"Sylvia Tedemar","version":20,"id":"45318","lastModified":"1301901951000","name":"Sylvia Tedemar","type":"Person","_key":"26486"} +{"label":"Overkill","description":"No overview found.","id":"5749","runtime":87,"imdbId":"tt0091710","version":78,"lastModified":"1301908336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45b\/4bc91cf5017a3c57fe00b45b\/overkill-mid.jpg","genre":"Crime","title":"Overkill","releaseDate":566611200000,"language":"en","type":"Movie","_key":"26487"} +{"label":"Steve Rally","version":20,"id":"45322","lastModified":"1301901734000","name":"Steve Rally","type":"Person","_key":"26488"} +{"label":"John Nishio","version":19,"id":"45323","lastModified":"1301902291000","name":"John Nishio","type":"Person","_key":"26489"} +{"label":"Laura Burkett","version":19,"id":"45324","lastModified":"1301902105000","name":"Laura Burkett","type":"Person","_key":"26490"} +{"label":"Allen Wisch","version":20,"id":"45325","lastModified":"1301904130000","name":"Allen Wisch","type":"Person","_key":"26491"} +{"label":"Antonio Caprio","version":19,"id":"45326","lastModified":"1301901892000","name":"Antonio Caprio","type":"Person","_key":"26492"} +{"label":"Roy Summersett","version":18,"id":"45327","lastModified":"1301902352000","name":"Roy Summersett","type":"Person","_key":"26493"} +{"label":"Shiro Tomita","version":19,"id":"45328","lastModified":"1301902105000","name":"Shiro Tomita","type":"Person","_key":"26494"} +{"label":"Chris Tashima","version":19,"id":"45329","lastModified":"1301902291000","name":"Chris Tashima","type":"Person","_key":"26495"} +{"label":"Playboy: 101 Ways to Excite Your Lover","description":"No overview found.","id":"5750","runtime":90,"imdbId":"tt0216092","version":44,"lastModified":"1301905647000","studio":"Playboy Entertainment Group","genre":"Documentary","title":"Playboy: 101 Ways to Excite Your Lover","releaseDate":666316800000,"language":"en","type":"Movie","_key":"26496"} +{"label":"Robert Kubilos","version":23,"id":"45330","lastModified":"1301902129000","name":"Robert Kubilos","type":"Person","_key":"26497"} +{"label":"Chona Jason","version":19,"id":"45333","lastModified":"1301901892000","name":"Chona Jason","type":"Person","_key":"26498"} +{"label":"Lisa Saxton","version":19,"id":"45334","lastModified":"1301901734000","name":"Lisa Saxton","type":"Person","_key":"26499"} +{"label":"Michael George","version":19,"id":"45335","lastModified":"1301902105000","name":"Michael George","type":"Person","_key":"26500"} +{"label":"Alex Galin","version":19,"id":"45336","lastModified":"1301901891000","name":"Alex Galin","type":"Person","_key":"26501"} +{"label":"Michael J. Shane","version":22,"id":"45338","lastModified":"1301902135000","name":"Michael J. Shane","type":"Person","_key":"26502"} +{"label":"Eric Wallace","version":19,"id":"45339","lastModified":"1301902291000","name":"Eric Wallace","type":"Person","_key":"26503"} +{"label":"Sandra Wild","version":19,"id":"45340","lastModified":"1301902291000","name":"Sandra Wild","type":"Person","_key":"26504"} +{"label":"Gabriella Young","version":19,"id":"45341","lastModified":"1301902291000","name":"Gabriella Young","type":"Person","_key":"26505"} +{"label":"Sledgehammer","description":"No overview found.","id":"5751","runtime":87,"imdbId":"tt0244800","version":128,"lastModified":"1301904681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/460\/4bc91cf6017a3c57fe00b460\/sledgehammer-mid.jpg","genre":"Horror","title":"Sledgehammer","releaseDate":426816000000,"language":"en","type":"Movie","_key":"26506"} +{"label":"David A. Prior","version":42,"id":"45343","lastModified":"1301902129000","name":"David A. Prior","type":"Person","_key":"26507"} +{"label":"Linda McGill","version":19,"id":"45345","lastModified":"1301902105000","name":"Linda McGill","type":"Person","_key":"26508"} +{"label":"Ted Prior","version":39,"id":"45346","lastModified":"1301901789000","name":"Ted Prior","type":"Person","_key":"26509"} +{"label":"John Eastman","version":19,"id":"45347","lastModified":"1301901891000","name":"John Eastman","type":"Person","_key":"26510"} +{"label":"Stephen Wright","version":19,"id":"45348","lastModified":"1301902291000","name":"Stephen Wright","type":"Person","_key":"26511"} +{"label":"Janine Scheer","version":18,"id":"45349","lastModified":"1301902351000","name":"Janine Scheer","type":"Person","_key":"26512"} +{"label":"Tim Aguilar","version":19,"id":"45350","lastModified":"1301902291000","name":"Tim Aguilar","type":"Person","_key":"26513"} +{"label":"Sandy Brooke","version":23,"id":"45351","lastModified":"1301902318000","name":"Sandy Brooke","type":"Person","_key":"26514"} +{"label":"Michael Shanahan","version":19,"id":"45352","lastModified":"1301902291000","name":"Michael Shanahan","type":"Person","_key":"26515"} +{"label":"Mary Mendez","version":19,"id":"45353","lastModified":"1301902291000","name":"Mary Mendez","type":"Person","_key":"26516"} +{"label":"Justin Greer","version":19,"id":"45354","lastModified":"1301902291000","name":"Justin Greer","type":"Person","_key":"26517"} +{"label":"Doug Matley","version":19,"id":"45355","lastModified":"1301902291000","name":"Doug Matley","type":"Person","_key":"26518"} +{"label":"Killer Workout","description":"Two years ago, a young woman named Valerie was burned after entering a tanning salon. Now, her twin sister, Rhonda runs a local gym where all of a sudden, people are being murdered.","id":"5752","runtime":84,"imdbId":"tt0091339","version":104,"lastModified":"1301905309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc91cf6017a3c57fe00b469\/killer-workout-mid.jpg","studio":"The Winters Group","genre":"Horror","title":"Killer Workout","releaseDate":572140800000,"language":"en","type":"Movie","_key":"26519"} +{"label":"Marcia Karr","version":21,"id":"45356","lastModified":"1301902391000","name":"Marcia Karr","type":"Person","_key":"26520"} +{"label":"David James Campbell","version":20,"id":"45357","lastModified":"1301901891000","name":"David James Campbell","type":"Person","_key":"26521"} +{"label":"Fritz Matthews","version":27,"id":"45358","lastModified":"1301902105000","name":"Fritz Matthews","type":"Person","_key":"26522"} +{"label":"Teresa Van der Woude","version":20,"id":"45359","lastModified":"1301902374000","name":"Teresa Van der Woude","type":"Person","_key":"26523"} +{"label":"Richard Bravo","version":20,"id":"45360","lastModified":"1301902374000","name":"Richard Bravo","type":"Person","_key":"26524"} +{"label":"Dianne Copeland","version":19,"id":"45361","lastModified":"1301902291000","name":"Dianne Copeland","type":"Person","_key":"26525"} +{"label":"Laurel Mock","version":19,"id":"45362","lastModified":"1301902291000","name":"Laurel Mock","type":"Person","_key":"26526"} +{"label":"Deadly Prey","description":"No overview found.","id":"5753","runtime":81,"imdbId":"tt0092848","version":85,"lastModified":"1301906080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46e\/4bc91cf8017a3c57fe00b46e\/deadly-prey-mid.jpg","studio":"Action International Pictures","genre":"Action","title":"Deadly Prey","releaseDate":565401600000,"language":"en","type":"Movie","_key":"26527"} +{"label":"Troy Donahue","version":43,"id":"45363","lastModified":"1301901495000","name":"Troy Donahue","type":"Person","_key":"26528"} +{"label":"Dawn Abraham","version":19,"id":"45364","lastModified":"1301902291000","name":"Dawn Abraham","type":"Person","_key":"26529"} +{"label":"Suzanne Tara","version":19,"id":"45365","lastModified":"1301902291000","name":"Suzanne Tara","type":"Person","_key":"26530"} +{"label":"William Zipp","version":20,"id":"45366","lastModified":"1301901891000","name":"William Zipp","type":"Person","_key":"26531"} +{"label":"Thomas Baldwin","version":19,"id":"45367","lastModified":"1301902291000","name":"Thomas Baldwin","type":"Person","_key":"26532"} +{"label":"Leo Weltman","version":17,"id":"101278","lastModified":"1301903049000","name":"Leo Weltman","type":"Person","_key":"26533"} +{"label":"Timothy Elwell","version":17,"id":"100269","lastModified":"1301902637000","name":"Timothy Elwell","type":"Person","_key":"26534"} +{"label":"Brian O'Connor","version":16,"id":"101279","lastModified":"1301902898000","name":"Brian O'Connor","type":"Person","_key":"26535"} +{"label":"Sean Holton","version":20,"id":"101280","lastModified":"1301902637000","name":"Sean Holton","type":"Person","_key":"26536"} +{"label":"Darrel Guilbeau","version":18,"id":"101281","lastModified":"1301902368000","name":"Darrel Guilbeau","type":"Person","_key":"26537"} +{"label":"Nancy Paloian","version":23,"id":"100266","lastModified":"1301902714000","name":"Nancy Paloian","type":"Person","_key":"26538"} +{"label":"Born Killer","description":"No overview found.","id":"5754","runtime":77,"imdbId":"tt0099170","version":103,"lastModified":"1301906080000","studio":"Action International","genre":"Horror","title":"Born Killer","releaseDate":626832000000,"language":"en","type":"Movie","_key":"26539"} +{"label":"Kimberley Casey","version":22,"id":"45368","lastModified":"1301902184000","name":"Kimberley Casey","type":"Person","_key":"26540"} +{"label":"Ty Hardin","version":27,"id":"45369","lastModified":"1301902315000","name":"Ty Hardin","type":"Person","_key":"26541"} +{"label":"Durrell Nelson","version":20,"id":"45370","lastModified":"1301902374000","name":"Durrell Nelson","type":"Person","_key":"26542"} +{"label":"Adam Tucker","version":21,"id":"45371","lastModified":"1301902306000","name":"Adam Tucker","type":"Person","_key":"26543"} +{"label":"Francine Lapens\u00e9e","version":20,"id":"45372","lastModified":"1301902291000","name":"Francine Lapens\u00e9e","type":"Person","_key":"26544"} +{"label":"Mark Neukom","version":19,"id":"45373","lastModified":"1301902291000","name":"Mark Neukom","type":"Person","_key":"26545"} +{"label":"Victoria Nesbitt","version":19,"id":"45374","lastModified":"1301902291000","name":"Victoria Nesbitt","type":"Person","_key":"26546"} +{"label":"Sherry Leigh","version":20,"id":"45375","lastModified":"1301902291000","name":"Sherry Leigh","type":"Person","_key":"26547"} +{"label":"David Block","version":19,"id":"45376","lastModified":"1301902291000","name":"David Block","type":"Person","_key":"26548"} +{"label":"Possessed by the Night","description":"No overview found.","id":"5755","runtime":90,"imdbId":"tt0110875","version":63,"lastModified":"1301906176000","studio":"MDP Worldwide","genre":"Erotic","title":"Possessed by the Night","releaseDate":767923200000,"language":"en","type":"Movie","_key":"26549"} +{"label":"Sandahl Bergman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abd\/4d93057a7b9aa119a0000abd\/sandahl-bergman-profile.jpg","biography":"Stunning & statuesque blonde dancer and actress who first set male \nhearts racing as the key dancer in the sexually charged \"Airotica\" dance\n sequence in <a href=\"http:\/\/www.imdb.com\/title\/tt0078754\/\">All That Jazz<\/a> (1979).\n\nBergman appeared then in <a href=\"http:\/\/www.imdb.com\/title\/tt0081777\/\">Xanadu<\/a>\n (1980), before landing the role for which she is best remembered, as \nthe never say die female warrior\/thief \"Valeria\" in the Hyborean Age \naction of <a href=\"http:\/\/www.imdb.com\/title","version":46,"birthday":"-572230800000","id":"45378","birthplace":"Kansas City, Missouri, USA ","lastModified":"1301901188000","name":"Sandahl Bergman","type":"Person","_key":"26550"} +{"label":"Shannon Tweed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cf\/4d6a1bd07b9aa136250020cf\/shannon-tweed-profile.jpg","version":50,"id":"45379","lastModified":"1301901447000","name":"Shannon Tweed","type":"Person","_key":"26551"} +{"label":"Turhan Bey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/833\/4be37992017a3c35c1000833\/turhan-bey-profile.jpg","version":30,"id":"45380","lastModified":"1301901457000","name":"Turhan Bey","type":"Person","_key":"26552"} +{"label":"Melissa Brasselle","version":28,"id":"45381","lastModified":"1301901511000","name":"Melissa Brasselle","type":"Person","_key":"26553"} +{"label":"Center of the Web","description":"No overview found.","id":"5756","runtime":87,"imdbId":"tt0103933","version":109,"lastModified":"1301906080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/473\/4bc91cf9017a3c57fe00b473\/center-of-the-web-mid.jpg","studio":"Action International Pictures","genre":"Action","title":"Center of the Web","releaseDate":705888000000,"language":"en","type":"Movie","_key":"26554"} +{"label":"Heather Medway","version":16,"id":"101282","lastModified":"1301902898000","name":"Heather Medway","type":"Person","_key":"26555"} +{"label":"Graham Timbes","version":16,"id":"101283","lastModified":"1301902898000","name":"Graham Timbes","type":"Person","_key":"26556"} +{"label":"Jennifer Massey","version":16,"id":"101284","lastModified":"1301902898000","name":"Jennifer Massey","type":"Person","_key":"26557"} +{"label":"Man of the Year","description":"No overview found.","id":"5757","runtime":86,"imdbId":"tt0113756","version":229,"lastModified":"1301023095000","studio":"Artisan Entertainment","genre":"Comedy","title":"Man of the Year","releaseDate":825638400000,"language":"en","type":"Movie","_key":"26558"} +{"label":"Dirk Shafer","version":24,"id":"45382","lastModified":"1301901734000","name":"Dirk Shafer","type":"Person","_key":"26559"} +{"label":"Mary Stein","version":22,"id":"45386","lastModified":"1301902030000","name":"Mary Stein","type":"Person","_key":"26560"} +{"label":"Claudette Sutherland","version":19,"id":"45387","lastModified":"1301901891000","name":"Claudette Sutherland","type":"Person","_key":"26561"} +{"label":"Cal Bartlett","version":21,"id":"45388","lastModified":"1301901891000","name":"Cal Bartlett","type":"Person","_key":"26562"} +{"label":"Vivian Paxton","version":20,"id":"45389","lastModified":"1301902184000","name":"Vivian Paxton","type":"Person","_key":"26563"} +{"label":"Michael Marisi Ornstein","version":20,"id":"45390","lastModified":"1301902105000","name":"Michael Marisi Ornstein","type":"Person","_key":"26564"} +{"label":"Beth Broderick","version":21,"id":"45391","lastModified":"1301902105000","name":"Beth Broderick","type":"Person","_key":"26565"} +{"label":"Cynthia Szigeti","version":20,"id":"45392","lastModified":"1301901816000","name":"Cynthia Szigeti","type":"Person","_key":"26566"} +{"label":"Dennis Bailey","version":19,"id":"45393","lastModified":"1301902105000","name":"Dennis Bailey","type":"Person","_key":"26567"} +{"label":"Charles Sloane","version":19,"id":"45394","lastModified":"1301902105000","name":"Charles Sloane","type":"Person","_key":"26568"} +{"label":"Phyllis Franklin","version":20,"id":"45395","lastModified":"1301901338000","name":"Phyllis Franklin","type":"Person","_key":"26569"} +{"label":"Bill Brochtrup","version":23,"id":"45397","lastModified":"1301901993000","name":"Bill Brochtrup","type":"Person","_key":"26570"} +{"label":"Fort Atkinson","version":19,"id":"45399","lastModified":"1301902105000","name":"Fort Atkinson","type":"Person","_key":"26571"} +{"label":"Felix Montano","version":19,"id":"45401","lastModified":"1301902105000","name":"Felix Montano","type":"Person","_key":"26572"} +{"label":"Thom Collins","version":19,"id":"45402","lastModified":"1301902105000","name":"Thom Collins","type":"Person","_key":"26573"} +{"label":"Paul D. Fow","version":20,"id":"45403","lastModified":"1301902184000","name":"Paul D. Fow","type":"Person","_key":"26574"} +{"label":"See Me Feel Me: Keith Moon Naked for Your Pleasure (2009)","description":"No overview found.","id":"5758","runtime":0,"version":22,"lastModified":"1301907418000","genre":"Drama","title":"See Me Feel Me: Keith Moon Naked for Your Pleasure (2009)","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"26575"} +{"label":"Baghead","description":"Four actors go to a cabin in the woods to write, direct, and act in a film that will jump-start their careers. Their idea is a horror film about a man with a bag over his head, but what happens when that man mysteriously shows up?","id":"5759","runtime":84,"imdbId":"tt0923600","version":186,"lastModified":"1301906832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4bc91cf9017a3c57fe00b47c\/baghead-mid.jpg","studio":"Duplass Brothers Productions","genre":"Comedy","title":"Baghead","releaseDate":1200873600000,"language":"en","type":"Movie","_key":"26576"} +{"label":"Ross Partridge","version":25,"id":"45396","lastModified":"1301901843000","name":"Ross Partridge","type":"Person","_key":"26577"} +{"label":"Steve Zissis","version":20,"id":"45398","lastModified":"1301901816000","name":"Steve Zissis","type":"Person","_key":"26578"} +{"label":"Greta Gerwig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/432\/4d03e3867b9aa11bc3001432\/greta-gerwig-profile.jpg","version":39,"id":"45400","lastModified":"1301901423000","name":"Greta Gerwig","type":"Person","_key":"26579"} +{"label":"Elise Muller","version":24,"id":"45404","lastModified":"1301901656000","name":"Elise Muller","type":"Person","_key":"26580"} +{"label":"Jay Duplass","version":24,"id":"45405","lastModified":"1301901431000","name":"Jay Duplass","type":"Person","_key":"26581"} +{"label":"Mark Duplass","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4cd32ad37b9aa11353000007\/mark-duplass-profile.jpg","version":34,"id":"45407","lastModified":"1301901604000","name":"Mark Duplass","type":"Person","_key":"26582"} +{"label":"Circuit","description":"No overview found.","id":"5760","runtime":130,"imdbId":"tt0218107","version":113,"lastModified":"1301907552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/481\/4bc91cf9017a3c57fe00b481\/circuit-mid.jpg","studio":"Sneak Preview Entertainment","genre":"Crime","title":"Circuit","releaseDate":994982400000,"language":"en","type":"Movie","_key":"26583"} +{"label":"Jonathan Wade-Drahos","version":19,"id":"45410","lastModified":"1301902105000","name":"Jonathan Wade-Drahos","type":"Person","_key":"26584"} +{"label":"Andre Khabbazi","version":19,"id":"45411","lastModified":"1301902105000","name":"Andre Khabbazi","type":"Person","_key":"26585"} +{"label":"Brian Lane Green","version":19,"id":"45412","lastModified":"1301902291000","name":"Brian Lane Green","type":"Person","_key":"26586"} +{"label":"Daniel Kucan","version":19,"id":"45413","lastModified":"1301901734000","name":"Daniel Kucan","type":"Person","_key":"26587"} +{"label":"William Katt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4ca0b0047b9aa166d800001c\/william-katt-profile.jpg","version":48,"id":"45415","lastModified":"1301901336000","name":"William Katt","type":"Person","_key":"26588"} +{"label":"Paul Lekakis","version":19,"id":"45417","lastModified":"1301902291000","name":"Paul Lekakis","type":"Person","_key":"26589"} +{"label":"Darryl Stephens","version":22,"id":"45418","lastModified":"1301901934000","name":"Darryl Stephens","type":"Person","_key":"26590"} +{"label":"Michael Keenan","version":19,"id":"45420","lastModified":"1301902291000","name":"Michael Keenan","type":"Person","_key":"26591"} +{"label":"Hannah Takes the Stairs","description":"No overview found.","id":"5761","runtime":83,"imdbId":"tt0841108","trailer":"http:\/\/www.youtube.com\/watch?v=bf0ksFCaeI8","homepage":"http:\/\/www.hannahtakesthestairs.com\/","version":150,"lastModified":"1301905385000","studio":"Film Science","genre":"Drama","title":"Hannah Takes the Stairs","releaseDate":1173571200000,"language":"en","type":"Movie","_key":"26592"} +{"label":"Kent Osborne","version":25,"id":"45416","lastModified":"1301901770000","name":"Kent Osborne","type":"Person","_key":"26593"} +{"label":"Andrew Bujalski","version":29,"id":"40864","lastModified":"1301901300000","name":"Andrew Bujalski","type":"Person","_key":"26594"} +{"label":"Ry Russo-Young","version":20,"id":"45419","lastModified":"1301901616000","name":"Ry Russo-Young","type":"Person","_key":"26595"} +{"label":"Todd Rohal","version":19,"id":"45421","lastModified":"1301902105000","name":"Todd Rohal","type":"Person","_key":"26596"} +{"label":"Tipper Newton","version":20,"id":"45422","lastModified":"1301902105000","name":"Tipper Newton","type":"Person","_key":"26597"} +{"label":"Kris Swanberg","version":18,"id":"45423","lastModified":"1301902167000","name":"Kris Swanberg","type":"Person","_key":"26598"} +{"label":"Ivan Albertson","version":19,"id":"45424","lastModified":"1301902105000","name":"Ivan Albertson","type":"Person","_key":"26599"} +{"label":"Kevin Bewersdorf","version":21,"id":"45425","lastModified":"1301902105000","name":"Kevin Bewersdorf","type":"Person","_key":"26600"} +{"label":"Nathan Adloff","version":19,"id":"45426","lastModified":"1301902105000","name":"Nathan Adloff","type":"Person","_key":"26601"} +{"label":"Hardball","description":"No overview found.","id":"5762","runtime":87,"imdbId":"tt0119258","version":80,"lastModified":"1301905201000","studio":"Bounty Films Production Ltd.","genre":"Action","title":"Hardball","releaseDate":867801600000,"language":"en","type":"Movie","_key":"26602"} +{"label":"George Erschbamer","version":24,"id":"45427","lastModified":"1301902390000","name":"George Erschbamer","type":"Person","_key":"26603"} +{"label":"Lisa Howard","version":26,"id":"44238","lastModified":"1301901773000","name":"Lisa Howard","type":"Person","_key":"26604"} +{"label":"April Telek","version":20,"id":"45428","lastModified":"1301902105000","name":"April Telek","type":"Person","_key":"26605"} +{"label":"Steve Bacic","version":32,"id":"33355","lastModified":"1301901446000","name":"Steve Bacic","type":"Person","_key":"26606"} +{"label":"Alex Green","version":19,"id":"45429","lastModified":"1301901891000","name":"Alex Green","type":"Person","_key":"26607"} +{"label":"The Mummy Lives","description":"No overview found.","id":"5763","runtime":87,"imdbId":"tt0107618","version":86,"lastModified":"1301906525000","studio":"Global Pictures","genre":"Drama","title":"The Mummy Lives","releaseDate":742262400000,"language":"en","type":"Movie","_key":"26608"} +{"label":"Gerry O'Hara","version":29,"id":"45430","lastModified":"1301902056000","name":"Gerry O'Hara","type":"Person","_key":"26609"} +{"label":"Leslie Hardy","version":19,"id":"45431","lastModified":"1301902291000","name":"Leslie Hardy","type":"Person","_key":"26610"} +{"label":"Greg Wrangler","version":21,"id":"45432","lastModified":"1301902306000","name":"Greg Wrangler","type":"Person","_key":"26611"} +{"label":"Jack Cohen","version":21,"id":"45433","lastModified":"1301901927000","name":"Jack Cohen","type":"Person","_key":"26612"} +{"label":"Princess of Thieves","description":"Sherwood forest has a courageous new hero - Gwyn, the daughter of Robin Hood. Possessing the cunning skills of her legendary father and the beauty and intelligence of her mother Maid Marian, Gwyn is anxious to follow in her father's footsteps. King Richard nears death and Robin Hood and his Merry Men are summoned to help bring Richard's son Philip to his rightful place on the throne before the evil Prince John can assume power. Robin Hood's life and that of the future King of England soon lies i","id":"5764","runtime":88,"imdbId":"tt0272790","version":198,"lastModified":"1301903073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d18\/4d1a47705e73d6083200ad18\/princess-of-thieves-mid.jpg","studio":"Granada Television","genre":"Action","title":"Princess of Thieves","releaseDate":984268800000,"language":"en","tagline":"If you thought Robin Hood broke all the rules, wait until you meet his daughter!","type":"Movie","_key":"26613"} +{"label":"David Barrass","version":21,"id":"45438","lastModified":"1301901734000","name":"David Barrass","type":"Person","_key":"26614"} +{"label":"Hannah Cresswell","version":21,"id":"45439","lastModified":"1301901734000","name":"Hannah Cresswell","type":"Person","_key":"26615"} +{"label":"Crispin Letts","version":24,"id":"45440","lastModified":"1301902006000","name":"Crispin Letts","type":"Person","_key":"26616"} +{"label":"Knight Moves","description":"No overview found.","id":"5765","runtime":116,"imdbId":"tt0104627","version":100,"lastModified":"1302023347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c5\/4bd61c9d017a3c65820000c5\/knight-moves-mid.jpg","studio":"Cinevox Filmproduktion GmbH","genre":"Mystery","title":"Knight Moves","releaseDate":695347200000,"language":"en","type":"Movie","_key":"26617"} +{"label":"Mark Wilson","version":30,"id":"45443","lastModified":"1301901960000","name":"Mark Wilson","type":"Person","_key":"26618"} +{"label":"Champagne Charlie","description":"No overview found.","id":"5766","runtime":190,"imdbId":"tt0097041","version":81,"lastModified":"1301905838000","genre":"Adventure","title":"Champagne Charlie","releaseDate":608342400000,"language":"en","type":"Movie","_key":"26619"} +{"label":"Megan Gallagher","version":19,"id":"45445","lastModified":"1301902291000","name":"Megan Gallagher","type":"Person","_key":"26620"} +{"label":"Two for the Road","description":"The ten-year marriage of Mark and Joanna Wallace is on the rocks. In flashback they recall their first meeting, memorable moments in their courtship and early wedded life, their travels through Europe, their broken vow never to have children, and their increasing tensions that led to both of them having extra-marital affairs.","id":"5767","runtime":111,"imdbId":"tt0062407","trailer":"http:\/\/www.youtube.com\/watch?v=2HPtSGg2b4s","version":132,"lastModified":"1301904348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/570\/4bf3d419017a3c3212000570\/two-for-the-road-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"Two for the Road","releaseDate":-84672000000,"language":"en","type":"Movie","_key":"26621"} +{"label":"Eleanor Bron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c1\/4d4c2bc35e73d617ba0013c1\/eleanor-bron-profile.jpg","version":41,"id":"45453","lastModified":"1301901448000","name":"Eleanor Bron","type":"Person","_key":"26622"} +{"label":"Gabrielle Middleton","version":20,"id":"45454","lastModified":"1301902291000","name":"Gabrielle Middleton","type":"Person","_key":"26623"} +{"label":"Judy Cornwell","version":30,"id":"45455","lastModified":"1301902194000","name":"Judy Cornwell","type":"Person","_key":"26624"} +{"label":"Ir\u00e8ne Hilda","version":20,"id":"45456","lastModified":"1301902291000","name":"Ir\u00e8ne Hilda","type":"Person","_key":"26625"} +{"label":"Dominique Joos","version":20,"id":"45457","lastModified":"1301902291000","name":"Dominique Joos","type":"Person","_key":"26626"} +{"label":"Clarissa Hillel","version":20,"id":"45458","lastModified":"1301902291000","name":"Clarissa Hillel","type":"Person","_key":"26627"} +{"label":"The Best of Sex and Violence","description":"No overview found.","id":"5768","runtime":76,"imdbId":"tt0196373","version":60,"lastModified":"1301908335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/493\/4bc91cfa017a3c57fe00b493\/the-best-of-sex-and-violence-mid.jpg","genre":"Documentary","title":"The Best of Sex and Violence","releaseDate":347155200000,"language":"en","type":"Movie","_key":"26628"} +{"label":"Ken Dixon","version":25,"id":"45460","lastModified":"1301902137000","name":"Ken Dixon","type":"Person","_key":"26629"} +{"label":"Angela Aames","version":25,"id":"45463","lastModified":"1301901768000","name":"Angela Aames","type":"Person","_key":"26630"} +{"label":"Claudia Jennings","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/047\/4cb4aba47b9aa138d9000047\/claudia-jennings-profile.jpg","version":26,"id":"45469","lastModified":"1301901505000","name":"Claudia Jennings","type":"Person","_key":"26631"} +{"label":"Jocelyn Jones","version":23,"id":"45470","lastModified":"1301902174000","name":"Jocelyn Jones","type":"Person","_key":"26632"} +{"label":"Camille Keaton","version":29,"id":"45471","lastModified":"1301901670000","name":"Camille Keaton","type":"Person","_key":"26633"} +{"label":"Ian McCulloch","version":25,"id":"45473","lastModified":"1301901458000","name":"Ian McCulloch","type":"Person","_key":"26634"} +{"label":"Rudy Ray Moore","version":28,"id":"45474","lastModified":"1301901565000","name":"Rudy Ray Moore","type":"Person","_key":"26635"} +{"label":"Dixie Peabody","version":19,"id":"45475","lastModified":"1301902291000","name":"Dixie Peabody","type":"Person","_key":"26636"} +{"label":"Joan Prather","version":22,"id":"45476","lastModified":"1301902133000","name":"Joan Prather","type":"Person","_key":"26637"} +{"label":"Cheryl Smith","version":27,"id":"45480","lastModified":"1301902367000","name":"Cheryl Smith","type":"Person","_key":"26638"} +{"label":"Vanity","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/217\/4d8bf6397b9aa13ade002217\/vanity-profile.jpg","version":28,"id":"45481","lastModified":"1301901954000","name":"Vanity","type":"Person","_key":"26639"} +{"label":"Laura Jane Leary","version":18,"id":"45472","lastModified":"1301902050000","name":"Laura Jane Leary","type":"Person","_key":"26640"} +{"label":"Tom Jones","description":"No overview found.","id":"5769","runtime":128,"imdbId":"tt0057590","version":107,"lastModified":"1301905965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc91cfb017a3c57fe00b49c\/tom-jones-mid.jpg","studio":"Woodfall Film Productions","genre":"Action","title":"Tom Jones","releaseDate":-196905600000,"language":"en","type":"Movie","_key":"26641"} +{"label":"Edith Evans","version":23,"id":"45465","lastModified":"1301901616000","name":"Edith Evans","type":"Person","_key":"26642"} +{"label":"Joan Greenwood","version":36,"id":"45466","lastModified":"1301901469000","name":"Joan Greenwood","type":"Person","_key":"26643"} +{"label":"Diane Cilento","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bb\/4c34aa0a7b9aa17a350000bb\/diane-cilento-profile.jpg","version":28,"id":"45467","lastModified":"1301901670000","name":"Diane Cilento","type":"Person","_key":"26644"} +{"label":"George Devine","version":22,"id":"45468","lastModified":"1302031788000","name":"George Devine","type":"Person","_key":"26645"} +{"label":"The Glass Castle","description":"Laurent Bertal is a successful attorney who lives in Berne with his beautiful and adoring wife Evelyne. Theirs appears to be the perfect marriage, but while on holiday in Italy Evelyne falls in love with a young Frenchman, R\u00e9my. While Evelyne is profoundly unsettled by this romantic entanglement, R\u00e9my regards it as a mere distraction and soon heads back to Paris where he lives with his mistress, Marion. One day, Evelyne is overjoyed when she receives an invitation from R\u00e9my to spend a weekend w","id":"5770","runtime":99,"imdbId":"tt0042194","version":54,"lastModified":"1301906631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a1\/4bc91cfb017a3c57fe00b4a1\/le-chateau-de-verre-mid.jpg","studio":"Franco London Films","genre":"Drama","title":"The Glass Castle","releaseDate":-600998400000,"language":"en","type":"Movie","_key":"26646"} +{"label":"Elina Labourdette","version":22,"id":"45477","lastModified":"1301902105000","name":"Elina Labourdette","type":"Person","_key":"26647"} +{"label":"Germaine Stainval","version":18,"id":"45478","lastModified":"1301902291000","name":"Germaine Stainval","type":"Person","_key":"26648"} +{"label":"Uschi","description":"No overview found.","id":"5771","runtime":30,"version":36,"lastModified":"1301907418000","genre":"Documentary","title":"Uschi","releaseDate":320716800000,"language":"en","type":"Movie","_key":"26649"} +{"label":"Pornography in Hollywood","description":"No overview found.","id":"5772","runtime":68,"version":26,"lastModified":"1301906176000","genre":"Documentary","title":"Pornography in Hollywood","releaseDate":63072000000,"language":"en","type":"Movie","_key":"26650"} +{"label":"Ron Darby","version":22,"id":"45482","lastModified":"1301902389000","name":"Ron Darby","type":"Person","_key":"26651"} +{"label":"Robbin Day","version":16,"id":"45483","lastModified":"1301902186000","name":"Robbin Day","type":"Person","_key":"26652"} +{"label":"Eric Jeffery Haims","version":16,"id":"45484","lastModified":"1301902200000","name":"Eric Jeffery Haims","type":"Person","_key":"26653"} +{"label":"Malta","version":16,"id":"45485","lastModified":"1301902374000","name":"Malta","type":"Person","_key":"26654"} +{"label":"Eric Jeffrey Haims","version":22,"id":"100156","lastModified":"1301903049000","name":"Eric Jeffrey Haims","type":"Person","_key":"26655"} +{"label":"Red, White and Blue","description":"No overview found.","id":"5773","runtime":90,"imdbId":"tt0067660","version":86,"lastModified":"1301907418000","studio":"Quinxote Productions","genre":"Documentary","title":"Red, White and Blue","releaseDate":36633600000,"language":"en","type":"Movie","_key":"26656"} +{"label":"Ferd Sebastian","version":22,"id":"45491","lastModified":"1301901999000","name":"Ferd Sebastian","type":"Person","_key":"26657"} +{"label":"Beverly Sebastian","version":22,"id":"45489","lastModified":"1301901963000","name":"Beverly Sebastian","type":"Person","_key":"26658"} +{"label":"Robert Fitzpatrick","version":20,"id":"45494","lastModified":"1301901963000","name":"Robert Fitzpatrick","type":"Person","_key":"26659"} +{"label":"Barney Rosset","version":20,"id":"45495","lastModified":"1301901962000","name":"Barney Rosset","type":"Person","_key":"26660"} +{"label":"Omnibus: Fran\u00e7ois Truffaut","description":"No overview found.","id":"5774","runtime":60,"imdbId":"tt0896332","version":31,"lastModified":"1301905339000","studio":"BBC Films","genre":"Documentary","title":"Omnibus: Fran\u00e7ois Truffaut","releaseDate":123638400000,"language":"en","type":"Movie","_key":"26661"} +{"label":"Michael Darlow","version":21,"id":"45487","lastModified":"1301901681000","name":"Michael Darlow","type":"Person","_key":"26662"} +{"label":"Trader Hornee","description":"No overview found.","id":"5776","runtime":84,"imdbId":"tt0066479","version":78,"lastModified":"1301908335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a6\/4bc91cfe017a3c57fe00b4a6\/trader-hornee-mid.jpg","genre":"Action","title":"Trader Hornee","releaseDate":7776000000,"language":"en","type":"Movie","_key":"26663"} +{"label":"Jonathan Lucas","version":24,"id":"34896","lastModified":"1301901916000","name":"Jonathan Lucas","type":"Person","_key":"26664"} +{"label":"Buddy Pantsari","version":19,"id":"45499","lastModified":"1301902291000","name":"Buddy Pantsari","type":"Person","_key":"26665"} +{"label":"Elisabeth Monica","version":19,"id":"45500","lastModified":"1301902105000","name":"Elisabeth Monica","type":"Person","_key":"26666"} +{"label":"John Alderman","version":31,"id":"45501","lastModified":"1301902164000","name":"John Alderman","type":"Person","_key":"26667"} +{"label":"Luanne Roberts","version":18,"id":"45502","lastModified":"1301902351000","name":"Luanne Roberts","type":"Person","_key":"26668"} +{"label":"Lisa Grant","version":19,"id":"45503","lastModified":"1301902291000","name":"Lisa Grant","type":"Person","_key":"26669"} +{"label":"Fletcher Davies","version":19,"id":"45504","lastModified":"1301902291000","name":"Fletcher Davies","type":"Person","_key":"26670"} +{"label":"Brainerd Duffield","version":19,"id":"45505","lastModified":"1301902206000","name":"Brainerd Duffield","type":"Person","_key":"26671"} +{"label":"Deek Sills","version":18,"id":"45506","lastModified":"1301902351000","name":"Deek Sills","type":"Person","_key":"26672"} +{"label":"Neal Henderson","version":19,"id":"45507","lastModified":"1301902291000","name":"Neal Henderson","type":"Person","_key":"26673"} +{"label":"Slaves of Sin","description":"No overview found.","id":"5777","runtime":66,"imdbId":"tt0495195","version":33,"lastModified":"1301906748000","genre":"Documentary","title":"Slaves of Sin","releaseDate":915148800000,"language":"en","type":"Movie","_key":"26674"} +{"label":"Mary Yates","version":20,"id":"45508","lastModified":"1301902184000","name":"Mary Yates","type":"Person","_key":"26675"} +{"label":"Dansk sexualitet","description":"No overview found.","id":"5778","runtime":79,"version":19,"lastModified":"1301421338000","studio":"Horizon Pictures","genre":"Documentary","title":"Dansk sexualitet","releaseDate":5097600000,"language":"en","type":"Movie","_key":"26676"} +{"label":"M.C. von Hellen","version":16,"id":"45517","lastModified":"1301902346000","name":"M.C. von Hellen","type":"Person","_key":"26677"} +{"label":"Torn Curtain","description":"An American scientist publicly defects to East Germany as part of a cloak and dagger mission to find the solution for a formula resin and then figuring out a plan to escape back to the West.","id":"5780","runtime":128,"imdbId":"tt0061107","version":123,"lastModified":"1301904392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b7\/4bc91cff017a3c57fe00b4b7\/torn-curtain-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Torn Curtain","releaseDate":-109468800000,"language":"en","type":"Movie","_key":"26678"} +{"label":"Lila Kedrova","version":31,"id":"45523","lastModified":"1301901834000","name":"Lila Kedrova","type":"Person","_key":"26679"} +{"label":"Hansj\u00f6rg Felmy","version":22,"id":"45524","lastModified":"1301902297000","name":"Hansj\u00f6rg Felmy","type":"Person","_key":"26680"} +{"label":"Carolyn Conwell","version":21,"id":"45526","lastModified":"1301902294000","name":"Carolyn Conwell","type":"Person","_key":"26681"} +{"label":"That Obscure Object of Desire","description":"Set in Spain and France against the backdrop of a terrorist insurgency, the film tells the story of an aging Frenchman who falls in love with a young woman who repeatedly frustrates his romantic and sexual desires.","id":"5781","runtime":105,"imdbId":"tt0075824","version":86,"lastModified":"1301905122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c5\/4bc91d00017a3c57fe00b4c5\/cet-obscur-objet-du-desir-mid.jpg","studio":"Greenwich Film Productions","genre":"Comedy","title":"That Obscure Object of Desire","releaseDate":240624000000,"language":"en","type":"Movie","_key":"26682"} +{"label":"Zombie 4: After Death","description":"No overview found.","id":"5796","runtime":84,"imdbId":"tt0094620","version":138,"lastModified":"1301905285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c0\/4bd429e7017a3c7fa50000c0\/after-death-oltre-la-morte-mid.jpg","studio":"Flora Film","genre":"Horror","title":"Zombie 4: After Death","releaseDate":583804800000,"language":"en","type":"Movie","_key":"26683"} +{"label":"Claudio Fragasso","version":34,"id":"45577","lastModified":"1301902220000","name":"Claudio Fragasso","type":"Person","_key":"26684"} +{"label":"Jeff Stryker","version":22,"id":"44942","lastModified":"1301902184000","name":"Jeff Stryker","type":"Person","_key":"26685"} +{"label":"Candice Daly","version":21,"id":"45579","lastModified":"1301902346000","name":"Candice Daly","type":"Person","_key":"26686"} +{"label":"Massimo Vanni","version":26,"id":"45580","lastModified":"1301902157000","name":"Massimo Vanni","type":"Person","_key":"26687"} +{"label":"Jim Gaines","version":21,"id":"45581","lastModified":"1301902374000","name":"Jim Gaines","type":"Person","_key":"26688"} +{"label":"Don Wilson","version":29,"id":"45582","lastModified":"1301901789000","name":"Don Wilson","type":"Person","_key":"26689"} +{"label":"Bedtime Surprise","description":"No overview found.","id":"5798","runtime":3,"version":36,"lastModified":"1301907418000","genre":"Erotic","title":"Bedtime Surprise","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"26690"} +{"label":"Gunnar Steele","version":25,"id":"45574","lastModified":"1301901789000","name":"Gunnar Steele","type":"Person","_key":"26691"} +{"label":"Will Howard","version":19,"id":"45575","lastModified":"1301902374000","name":"Will Howard","type":"Person","_key":"26692"} +{"label":"Famous T & A","description":"No overview found.","id":"5799","runtime":74,"imdbId":"tt0495692","version":73,"lastModified":"1301907315000","genre":"Documentary","title":"Famous T & A","releaseDate":378691200000,"language":"en","type":"Movie","_key":"26693"} +{"label":"Idy Tripoldi","version":21,"id":"45576","lastModified":"1301901554000","name":"Idy Tripoldi","type":"Person","_key":"26694"} +{"label":"Can I Do It Till I Need Glasses?","description":"No overview found.","id":"5800","runtime":73,"imdbId":"tt0075801","version":95,"lastModified":"1301907281000","studio":"Dauntless Productions","genre":"Comedy","title":"Can I Do It Till I Need Glasses?","releaseDate":239241600000,"language":"en","type":"Movie","_key":"26695"} +{"label":"I. Robert Levy","version":21,"id":"45595","lastModified":"1301902105000","name":"I. Robert Levy","type":"Person","_key":"26696"} +{"label":"Roger Behr","version":19,"id":"45602","lastModified":"1301902291000","name":"Roger Behr","type":"Person","_key":"26697"} +{"label":"Mike Callie","version":22,"id":"45597","lastModified":"1301901891000","name":"Mike Callie","type":"Person","_key":"26698"} +{"label":"Joey Camen","version":22,"id":"45603","lastModified":"1301901804000","name":"Joey Camen","type":"Person","_key":"26699"} +{"label":"Moose Carlson","version":19,"id":"45604","lastModified":"1301902105000","name":"Moose Carlson","type":"Person","_key":"26700"} +{"label":"Sjon Carrol","version":19,"id":"45605","lastModified":"1301902105000","name":"Sjon Carrol","type":"Person","_key":"26701"} +{"label":"Gary Devaney","version":19,"id":"45606","lastModified":"1301902291000","name":"Gary Devaney","type":"Person","_key":"26702"} +{"label":"Jeff Doucette","version":26,"id":"35367","lastModified":"1301901554000","name":"Jeff Doucette","type":"Person","_key":"26703"} +{"label":"Vic Dunlop","version":19,"id":"45607","lastModified":"1301902105000","name":"Vic Dunlop","type":"Person","_key":"26704"} +{"label":"Ina Gould","version":19,"id":"45608","lastModified":"1301902291000","name":"Ina Gould","type":"Person","_key":"26705"} +{"label":"Rod Haase","version":19,"id":"45609","lastModified":"1301902291000","name":"Rod Haase","type":"Person","_key":"26706"} +{"label":"Judy Mazel","version":19,"id":"45610","lastModified":"1301902291000","name":"Judy Mazel","type":"Person","_key":"26707"} +{"label":"Pat McCormick","version":26,"id":"45611","lastModified":"1301901708000","name":"Pat McCormick","type":"Person","_key":"26708"} +{"label":"Walter Olkewicz","version":21,"id":"45612","lastModified":"1301902331000","name":"Walter Olkewicz","type":"Person","_key":"26709"} +{"label":"Thelma Pelish","version":23,"id":"45613","lastModified":"1301902200000","name":"Thelma Pelish","type":"Person","_key":"26710"} +{"label":"Roger Peltz","version":20,"id":"45614","lastModified":"1301902374000","name":"Roger Peltz","type":"Person","_key":"26711"} +{"label":"Patrick M. Wright","version":25,"id":"45615","lastModified":"1301902165000","name":"Patrick M. Wright","type":"Person","_key":"26712"} +{"label":"Song of the Little Road","description":"Sometime in the early years of the century, a boy, Apu, is born to a poor Brahmin family in a village in Bengal. The father, a poet and priest, cannot earn enough to keep his family going. Apu's sister, Durga, is forever stealing guavas from the neighbour's orchards. All these add to the daily struggles of the mother's life, notwithstanding her constant bickering with old aunt who lives with the family.","id":"5801","runtime":122,"imdbId":"tt0048473","trailer":"http:\/\/www.youtube.com\/watch?v=OmRiEMDDWeU","version":83,"lastModified":"1301903370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13d\/4c25155d7b9aa1446d00013d\/pather-panchali-mid.jpg","studio":"Government of West Bengal","genre":"Drama","title":"Song of the Little Road","releaseDate":-610675200000,"language":"en","type":"Movie","_key":"26713"} +{"label":"Uma Das Gupta","version":19,"id":"45591","lastModified":"1301902018000","name":"Uma Das Gupta","type":"Person","_key":"26714"} +{"label":"Subir Bannerjee","version":18,"id":"45592","lastModified":"1301903113000","name":"Subir Bannerjee","type":"Person","_key":"26715"} +{"label":"Chunibala Devi","version":21,"id":"45593","lastModified":"1301902193000","name":"Chunibala Devi","type":"Person","_key":"26716"} +{"label":"Sappho, Darling","description":"No overview found.","id":"5802","runtime":100,"imdbId":"tt0064934","version":49,"lastModified":"1301908596000","studio":"AB Svenska Ord","genre":"Drama","title":"Sappho, Darling","releaseDate":-32140800000,"language":"en","type":"Movie","_key":"26717"} +{"label":"Carol Young","version":20,"id":"45630","lastModified":"1301902346000","name":"Carol Young","type":"Person","_key":"26718"} +{"label":"Alan Darnay","version":18,"id":"45631","lastModified":"1301902351000","name":"Alan Darnay","type":"Person","_key":"26719"} +{"label":"Sally Sanford","version":20,"id":"45632","lastModified":"1301901999000","name":"Sally Sanford","type":"Person","_key":"26720"} +{"label":"Julia Blackburn","version":22,"id":"45633","lastModified":"1301902346000","name":"Julia Blackburn","type":"Person","_key":"26721"} +{"label":"Gary Kent","version":23,"id":"45634","lastModified":"1301902346000","name":"Gary Kent","type":"Person","_key":"26722"} +{"label":"The Kill","description":"No overview found.","id":"5803","runtime":90,"imdbId":"tt0207568","version":79,"lastModified":"1301908596000","genre":"Thriller","title":"The Kill","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"26723"} +{"label":"Gary Graver","version":73,"id":"30683","lastModified":"1301901178000","name":"Gary Graver","type":"Person","_key":"26724"} +{"label":"Antoinette Maynard","version":18,"id":"45637","lastModified":"1301901804000","name":"Antoinette Maynard","type":"Person","_key":"26725"} +{"label":"Walt Phillips","version":20,"id":"45638","lastModified":"1301901962000","name":"Walt Phillips","type":"Person","_key":"26726"} +{"label":"Sharon Wells","version":20,"id":"45639","lastModified":"1301901962000","name":"Sharon Wells","type":"Person","_key":"26727"} +{"label":"Nancy McGavin","version":20,"id":"45640","lastModified":"1301902157000","name":"Nancy McGavin","type":"Person","_key":"26728"} +{"label":"The Key to Reserva","description":"No overview found.","id":"5804","runtime":9,"imdbId":"tt1151319","homepage":"http:\/\/www.scorsesefilmfreixenet.com\/video_eng.htm","version":81,"lastModified":"1301907418000","genre":"Crime","title":"The Key to Reserva","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"26729"} +{"label":"Kelli O'Hara","version":20,"id":"45651","lastModified":"1301901656000","name":"Kelli O'Hara","type":"Person","_key":"26730"} +{"label":"Ich bin ein Berliner","description":"No overview found.","id":"5805","runtime":97,"imdbId":"tt0449478","version":55,"lastModified":"1301906080000","studio":"Rat Pack Filmproduktion GmbH","genre":"Comedy","title":"Ich bin ein Berliner","releaseDate":1127174400000,"language":"en","type":"Movie","_key":"26731"} +{"label":"Franziska Meyer Price","version":20,"id":"45652","lastModified":"1301901891000","name":"Franziska Meyer Price","type":"Person","_key":"26732"} +{"label":"Sophie von Kessel","version":21,"id":"45659","lastModified":"1301901782000","name":"Sophie von Kessel","type":"Person","_key":"26733"} +{"label":"Wolf Bachofner","version":19,"id":"45661","lastModified":"1301902291000","name":"Wolf Bachofner","type":"Person","_key":"26734"} +{"label":"Hannes Hellmann","version":20,"id":"45662","lastModified":"1301902104000","name":"Hannes Hellmann","type":"Person","_key":"26735"} +{"label":"Steffen Scheumann","version":19,"id":"45663","lastModified":"1301902291000","name":"Steffen Scheumann","type":"Person","_key":"26736"} +{"label":"Ute Maria Lerner","version":21,"id":"45664","lastModified":"1301902291000","name":"Ute Maria Lerner","type":"Person","_key":"26737"} +{"label":"Ober","description":"Edgar works as a waiter in 'Het Westen', a restaurant. He is married and has a lover. His neighbors terrorize him with loud music and garbage. One day after he is mistreated by some customers he is sick of it all and goes to talk to his creator, the scenario writer.","id":"5816","runtime":95,"imdbId":"tt0476681","homepage":"http:\/\/www.granietfilm.nl\/nl\/ober.htm","version":113,"lastModified":"1301906080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/285\/4bf6bc4d017a3c7732000285\/ober-mid.jpg","studio":"Graniet Film BV","genre":"Comedy","title":"Ober","releaseDate":1159401600000,"language":"en","type":"Movie","_key":"26738"} +{"label":"Ariane Schluter","version":20,"id":"45746","lastModified":"1301901891000","name":"Ariane Schluter","type":"Person","_key":"26739"} +{"label":"Jaap Spijkers","version":21,"id":"45747","lastModified":"1301901616000","name":"Jaap Spijkers","type":"Person","_key":"26740"} +{"label":"Mark Rietman","version":21,"id":"45748","lastModified":"1301902034000","name":"Mark Rietman","type":"Person","_key":"26741"} +{"label":"Thekla Reuten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/022\/4c9139ab7b9aa1020f000022\/thekla-reuten-profile.jpg","version":48,"birthday":"180054000000","id":"45749","birthplace":"Bussum, Noord-Holland, Netherlands ","lastModified":"1301901078000","name":"Thekla Reuten","type":"Person","_key":"26742"} +{"label":"Kees Prins","version":20,"id":"45750","lastModified":"1301902290000","name":"Kees Prins","type":"Person","_key":"26743"} +{"label":"Pierre Bokma","version":25,"id":"45751","lastModified":"1301902338000","name":"Pierre Bokma","type":"Person","_key":"26744"} +{"label":"Lyne Renee","version":22,"id":"45753","lastModified":"1301902373000","name":"Lyne Renee","type":"Person","_key":"26745"} +{"label":"Fedja van Hu\u00eat","version":25,"id":"45754","lastModified":"1301902216000","name":"Fedja van Hu\u00eat","type":"Person","_key":"26746"} +{"label":"Joop Admiraal","version":19,"id":"45755","lastModified":"1301902291000","name":"Joop Admiraal","type":"Person","_key":"26747"} +{"label":"Jakop Ahlbom","version":19,"id":"45756","lastModified":"1301902291000","name":"Jakop Ahlbom","type":"Person","_key":"26748"} +{"label":"Martine Berghuijs","version":17,"id":"45757","lastModified":"1301902291000","name":"Martine Berghuijs","type":"Person","_key":"26749"} +{"label":"Ren\u00e9 van 't Hof","version":22,"id":"45758","lastModified":"1301902334000","name":"Ren\u00e9 van 't Hof","type":"Person","_key":"26750"} +{"label":"You, the Living","description":"You, the Living is a film about humankind, its greatness and its baseness, joy and sorrow, its self-confidence and anxiety, its desire to love and be loved.","id":"5817","runtime":94,"imdbId":"tt0445336","trailer":"http:\/\/www.youtube.com\/watch?v=363","homepage":"http:\/\/www.royandersson.com\/dulevande\/","version":133,"lastModified":"1301903463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d7\/4bc91d02017a3c57fe00b4d7\/du-levande-mid.jpg","studio":"Roy Andersson Filmproduktion","genre":"Comedy","title":"You, the Living","releaseDate":1190332800000,"language":"en","type":"Movie","_key":"26751"} +{"label":"H\u00e5kan Angser","version":18,"id":"45775","lastModified":"1301901668000","name":"H\u00e5kan Angser","type":"Person","_key":"26752"} +{"label":"Eric B\u00e4ckman","version":19,"id":"45776","lastModified":"1301901476000","name":"Eric B\u00e4ckman","type":"Person","_key":"26753"} +{"label":"Patrik Anders Edgren","version":19,"id":"45777","lastModified":"1301901734000","name":"Patrik Anders Edgren","type":"Person","_key":"26754"} +{"label":"Bj\u00f6rn Englund","version":19,"id":"45778","lastModified":"1301901476000","name":"Bj\u00f6rn Englund","type":"Person","_key":"26755"} +{"label":"Lennart Eriksson","version":19,"id":"45779","lastModified":"1301902104000","name":"Lennart Eriksson","type":"Person","_key":"26756"} +{"label":"P\u00e4r Fredriksson","version":19,"id":"45780","lastModified":"1301902290000","name":"P\u00e4r Fredriksson","type":"Person","_key":"26757"} +{"label":"Elisabeth Helander","version":19,"id":"45781","lastModified":"1301902290000","name":"Elisabeth Helander","type":"Person","_key":"26758"} +{"label":"Gunnar Ivarsson","version":19,"id":"45782","lastModified":"1301902290000","name":"Gunnar Ivarsson","type":"Person","_key":"26759"} +{"label":"Leif Larsson","version":19,"id":"45783","lastModified":"1301902290000","name":"Leif Larsson","type":"Person","_key":"26760"} +{"label":"Jessika Lundberg","version":18,"id":"45784","lastModified":"1301902351000","name":"Jessika Lundberg","type":"Person","_key":"26761"} +{"label":"Jessica Nilsson","version":20,"id":"45785","lastModified":"1301902290000","name":"Jessica Nilsson","type":"Person","_key":"26762"} +{"label":"J\u00f6rgen Nohall","version":19,"id":"45786","lastModified":"1301902104000","name":"J\u00f6rgen Nohall","type":"Person","_key":"26763"} +{"label":"Waldemar Nowak","version":19,"id":"45787","lastModified":"1301902104000","name":"Waldemar Nowak","type":"Person","_key":"26764"} +{"label":"Olle Olson","version":19,"id":"45788","lastModified":"1301902290000","name":"Olle Olson","type":"Person","_key":"26765"} +{"label":"Kemal Sener","version":19,"id":"45789","lastModified":"1301902290000","name":"Kemal Sener","type":"Person","_key":"26766"} +{"label":"Jan Wikbladh","version":19,"id":"45790","lastModified":"1301902290000","name":"Jan Wikbladh","type":"Person","_key":"26767"} +{"label":"Roy Andersson","version":26,"id":"45791","lastModified":"1301901431000","name":"Roy Andersson","type":"Person","_key":"26768"} +{"label":"De Stedeling","description":"A man from the city walks around the country side. He tries to find out what farmers are hiding below the plastic belts on their territory.","id":"5818","runtime":10,"version":359,"lastModified":"1301907282000","title":"De Stedeling","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"26769"} +{"label":"Schilderij","description":"The movie shows an ever changing painting of a woman surrounded by man. Or is a man looking out over the hills at sunset?","id":"5819","runtime":6,"version":16,"lastModified":"1301908610000","genre":"Animation","title":"Schilderij","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"26770"} +{"label":"The Sentinel","description":"A secret service agent is framed as the mole in an assassination attempt on the president. He must clear his name and foil another assassination attempt while on the run from a relentless FBI agent.","id":"5820","runtime":108,"imdbId":"tt0443632","version":250,"lastModified":"1302022008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4ca87d7d7b9aa17ace00049c\/the-sentinel-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"The Sentinel","releaseDate":1145577600000,"language":"en","type":"Movie","_key":"26771"} +{"label":"Eva Longoria Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/577\/4c021f9c017a3c702d001577\/eva-longoria-parker-profile.jpg","version":32,"id":"52605","lastModified":"1301901104000","name":"Eva Longoria Parker","type":"Person","_key":"26772"} +{"label":"Clark Johnson","version":31,"id":"47640","lastModified":"1301901377000","name":"Clark Johnson","type":"Person","_key":"26773"} +{"label":"Sweet Sweetback's Baadasssss Song","description":"No overview found.","id":"5822","runtime":97,"imdbId":"tt0067810","homepage":"http:\/\/www.sonyclassics.com\/badass\/","version":128,"lastModified":"1301905965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16f\/4c600be47b9aa172d900016f\/sweet-sweetback-s-baadasssss-song-mid.jpg","studio":"Yeah","genre":"Action","title":"Sweet Sweetback's Baadasssss Song","releaseDate":41212800000,"language":"en","type":"Movie","_key":"26774"} +{"label":"Simon Chuckster","version":20,"id":"45812","lastModified":"1301902025000","name":"Simon Chuckster","type":"Person","_key":"26775"} +{"label":"Hubert Scales","version":20,"id":"45813","lastModified":"1301902025000","name":"Hubert Scales","type":"Person","_key":"26776"} +{"label":"The Water Horse: Legend of the Deep","description":"An adaptation of Dick King-Smith's children's novel, The Water Horse stars Alex Etel as a young boy who discovers a mysterious egg and cares for what hatches out of it: a 'water horse' (loosely based on the Celtic water horse or kelpie) which later becomes the fabled Loch Ness Monster. ","id":"5823","runtime":111,"imdbId":"tt0760329","trailer":"http:\/\/www.youtube.com\/watch?v=368","homepage":"http:\/\/www.sonypictures.com\/movies\/thewaterhorse\/index.html","version":220,"lastModified":"1301901991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/510\/4bc91d0b017a3c57fe00b510\/the-water-horse-legend-of-the-deep-mid.jpg","studio":"Ecosse Films","genre":"Action","title":"The Water Horse: Legend of the Deep","releaseDate":1195948800000,"language":"en","tagline":"How Do You Keep A Secret This Big?","type":"Movie","_key":"26777"} +{"label":"Jay Russell","version":37,"id":"46297","lastModified":"1301901587000","name":"Jay Russell","type":"Person","_key":"26778"} +{"label":"Alex Etel","version":29,"id":"46300","lastModified":"1301901315000","name":"Alex Etel","type":"Person","_key":"26779"} +{"label":"Geraldine Brophy","version":24,"id":"46327","lastModified":"1301901476000","name":"Geraldine Brophy","type":"Person","_key":"26780"} +{"label":"National Lampoon's Christmas Vacation","description":"It's Christmas time and the Griswolds are preparing for a family seasonal celebration, but things never run smoothly for Clark, his wife Ellen and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going knowing that his Christmas bonus is due soon.","id":"5825","runtime":97,"imdbId":"tt0097958","trailer":"http:\/\/www.youtube.com\/watch?v=Orp0MoLkpSU","version":237,"lastModified":"1301902219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/533\/4bc91d10017a3c57fe00b533\/christmas-vacation-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"National Lampoon's Christmas Vacation","releaseDate":628473600000,"language":"en","tagline":"Yule crack up.","type":"Movie","_key":"26781"} +{"label":"Doris Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cbd\/4d27aefd7b9aa134cb001cbd\/doris-roberts-profile.jpg","version":62,"id":"45863","lastModified":"1301901214000","name":"Doris Roberts","type":"Person","_key":"26782"} +{"label":"Miriam Flynn","version":48,"id":"35109","lastModified":"1302062573000","name":"Miriam Flynn","type":"Person","_key":"26783"} +{"label":"Cody Burger","version":27,"id":"45864","lastModified":"1301901538000","name":"Cody Burger","type":"Person","_key":"26784"} +{"label":"Ellen Hamilton Latzen","version":29,"id":"45865","lastModified":"1301901382000","name":"Ellen Hamilton Latzen","type":"Person","_key":"26785"} +{"label":"Ausgerechnet Weihnachten","description":"No overview found.","id":"5826","runtime":90,"imdbId":"tt0492554","version":60,"lastModified":"1300978427000","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Ausgerechnet Weihnachten","releaseDate":1134518400000,"language":"en","type":"Movie","_key":"26786"} +{"label":"Gabriela Zerhau","version":23,"id":"45866","lastModified":"1301901656000","name":"Gabriela Zerhau","type":"Person","_key":"26787"} +{"label":"Moritz Basilico","version":21,"id":"45876","lastModified":"1301901582000","name":"Moritz Basilico","type":"Person","_key":"26788"} +{"label":"Alina Freund","version":19,"id":"45877","lastModified":"1301902351000","name":"Alina Freund","type":"Person","_key":"26789"} +{"label":"Dany Sigel","version":22,"id":"45879","lastModified":"1301902346000","name":"Dany Sigel","type":"Person","_key":"26790"} +{"label":"Julia Eggert","version":22,"id":"45880","lastModified":"1301902157000","name":"Julia Eggert","type":"Person","_key":"26791"} +{"label":"Tim Freudensprung","version":21,"id":"45881","lastModified":"1301902375000","name":"Tim Freudensprung","type":"Person","_key":"26792"} +{"label":"Florian David Fitz","version":23,"id":"104243","lastModified":"1301901845000","name":"Florian David Fitz","type":"Person","_key":"26793"} +{"label":"Sch\u00f6ne Bescherung","description":"No overview found.","id":"5827","runtime":90,"imdbId":"tt0274803","version":34,"lastModified":"1301421338000","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Sch\u00f6ne Bescherung","releaseDate":944006400000,"language":"en","type":"Movie","_key":"26794"} +{"label":"Bernhard Helfrich","version":23,"id":"45882","lastModified":"1301902346000","name":"Bernhard Helfrich","type":"Person","_key":"26795"} +{"label":"Mona Freiberg","version":20,"id":"45884","lastModified":"1301902184000","name":"Mona Freiberg","type":"Person","_key":"26796"} +{"label":"Christian Burghartswieser","version":20,"id":"45885","lastModified":"1301902006000","name":"Christian Burghartswieser","type":"Person","_key":"26797"} +{"label":"Angela Hundsdorfer","version":20,"id":"45886","lastModified":"1301902157000","name":"Angela Hundsdorfer","type":"Person","_key":"26798"} +{"label":"Andreas Kern","version":20,"id":"45887","lastModified":"1301902346000","name":"Andreas Kern","type":"Person","_key":"26799"} +{"label":"Bettis Bescherung","description":"No overview found.","id":"5828","runtime":90,"imdbId":"tt0920602","version":39,"lastModified":"1300978427000","studio":"Hessischer Rundfunk","genre":"Comedy","title":"Bettis Bescherung","releaseDate":1165968000000,"language":"en","type":"Movie","_key":"26800"} +{"label":"Thomas Freundner","version":21,"id":"45888","lastModified":"1301902346000","name":"Thomas Freundner","type":"Person","_key":"26801"} +{"label":"Stephan Ullrich","version":21,"id":"45892","lastModified":"1301902157000","name":"Stephan Ullrich","type":"Person","_key":"26802"} +{"label":"Kathrin Freundner","version":20,"id":"45893","lastModified":"1301901962000","name":"Kathrin Freundner","type":"Person","_key":"26803"} +{"label":"Sabine Wolf","version":20,"id":"45895","lastModified":"1301902157000","name":"Sabine Wolf","type":"Person","_key":"26804"} +{"label":"Henning Peker","version":21,"id":"50792","lastModified":"1301902157000","name":"Henning Peker","type":"Person","_key":"26805"} +{"label":"Eine seltsame Bescherung","description":"No overview found.","id":"5829","runtime":88,"imdbId":"tt0078225","version":35,"lastModified":"1301419522000","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Eine seltsame Bescherung","releaseDate":281318400000,"language":"en","type":"Movie","_key":"26806"} +{"label":"Christiane Kr\u00fcger","version":24,"id":"27611","lastModified":"1301902184000","name":"Christiane Kr\u00fcger","type":"Person","_key":"26807"} +{"label":"Irene Marhold","version":20,"id":"26834","lastModified":"1301902184000","name":"Irene Marhold","type":"Person","_key":"26808"} +{"label":"Edd Stavjanik","version":20,"id":"45897","lastModified":"1301902157000","name":"Edd Stavjanik","type":"Person","_key":"26809"} +{"label":"Eine st\u00fcrmische Bescherung","description":"No overview found.","id":"5830","runtime":90,"imdbId":"tt1147776","version":48,"lastModified":"1301907418000","studio":"Network Movie","genre":"Comedy","title":"Eine st\u00fcrmische Bescherung","releaseDate":1197849600000,"language":"en","type":"Movie","_key":"26810"} +{"label":"Ulrich Zrenner","version":21,"id":"45898","lastModified":"1301902347000","name":"Ulrich Zrenner","type":"Person","_key":"26811"} +{"label":"Nina Hoger","version":23,"id":"45903","lastModified":"1301901789000","name":"Nina Hoger","type":"Person","_key":"26812"} +{"label":"Susanne Sch\u00e4fer","version":22,"id":"45904","lastModified":"1301901817000","name":"Susanne Sch\u00e4fer","type":"Person","_key":"26813"} +{"label":"Lavinia Wilson","version":25,"id":"28420","lastModified":"1301901566000","name":"Lavinia Wilson","type":"Person","_key":"26814"} +{"label":"August Zirner","version":18,"id":"36459","lastModified":"1301901668000","name":"August Zirner","type":"Person","_key":"26815"} +{"label":"Matthias Schloo","version":20,"id":"45905","lastModified":"1301902025000","name":"Matthias Schloo","type":"Person","_key":"26816"} +{"label":"Zarah McKenzie","version":21,"id":"45906","lastModified":"1301901837000","name":"Zarah McKenzie","type":"Person","_key":"26817"} +{"label":"Eckhard Preu\u00df","version":24,"id":"45907","lastModified":"1301902187000","name":"Eckhard Preu\u00df","type":"Person","_key":"26818"} +{"label":"Vier Meerjungfrauen","description":"No overview found.","id":"5831","runtime":86,"imdbId":"tt0293972","version":43,"lastModified":"1301906175000","studio":"Network Movie","genre":"Comedy","title":"Vier Meerjungfrauen","releaseDate":999216000000,"language":"en","type":"Movie","_key":"26819"} +{"label":"Ren\u00e9 Heisig","version":18,"id":"36236","lastModified":"1301901816000","name":"Ren\u00e9 Heisig","type":"Person","_key":"26820"} +{"label":"Vier Meerjungfrauen II - Liebe \u00e0 la carte","description":"No overview found.","id":"5832","runtime":90,"imdbId":"tt0780177","version":44,"lastModified":"1301905714000","studio":"Network Movie","genre":"Comedy","title":"Vier Meerjungfrauen II - Liebe \u00e0 la carte","releaseDate":1144022400000,"language":"en","type":"Movie","_key":"26821"} +{"label":"Finja Beck","version":20,"id":"45914","lastModified":"1301902184000","name":"Finja Beck","type":"Person","_key":"26822"} +{"label":"Laura Beck","version":20,"id":"45915","lastModified":"1301902198000","name":"Laura Beck","type":"Person","_key":"26823"} +{"label":"Casper's Haunted Christmas","description":"Kibosh, supreme ruler of all ghosts, decrees that casper must scare at least one person before Christmas Day so Casper visits Kriss, Massachusetts where he meets the Jollimore family and sets out to complete his mission. As usual, kindhearted Casper has a ghastky time trying to scare anyone; so The Ghostly Trio, fed up with his goody-boo-shoes behavior, secretly hires Casper's look-alike cousin Spooky to do the job-with hilarious results.","id":"5833","runtime":84,"imdbId":"tt0284946","version":117,"lastModified":"1301908335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e2\/4d6b13785e73d66b270028e2\/casper-s-haunted-christmas-mid.jpg","studio":"Harvey Entertainmens","genre":"Animation","title":"Casper's Haunted Christmas","releaseDate":983404800000,"language":"en","type":"Movie","_key":"26824"} +{"label":"Owen Hurley","version":25,"id":"45916","lastModified":"1301901816000","name":"Owen Hurley","type":"Person","_key":"26825"} +{"label":"Brendon Ryan Barrett","version":23,"id":"45922","lastModified":"1301902157000","name":"Brendon Ryan Barrett","type":"Person","_key":"26826"} +{"label":"Kathleen Barr","version":49,"id":"45923","lastModified":"1301904097000","name":"Kathleen Barr","type":"Person","_key":"26827"} +{"label":"Ian James Corlett","version":23,"id":"45924","lastModified":"1301901656000","name":"Ian James Corlett","type":"Person","_key":"26828"} +{"label":"Graeme Kingston","version":20,"id":"45926","lastModified":"1301901963000","name":"Graeme Kingston","type":"Person","_key":"26829"} +{"label":"Terry Klassen","version":25,"id":"45927","lastModified":"1301901789000","name":"Terry Klassen","type":"Person","_key":"26830"} +{"label":"David Kaye","version":41,"id":"84490","lastModified":"1301904087000","name":"David Kaye","type":"Person","_key":"26831"} +{"label":"The L.A. Riot Spectacular","description":"No overview found.","id":"5834","runtime":80,"imdbId":"tt0388193","homepage":"http:\/\/www.lariotmovie.com\/","version":81,"lastModified":"1301907136000","genre":"Comedy","title":"The L.A. Riot Spectacular","releaseDate":1114387200000,"language":"en","type":"Movie","_key":"26832"} +{"label":"Marc Klasfeld","version":21,"id":"45928","lastModified":"1301902186000","name":"Marc Klasfeld","type":"Person","_key":"26833"} +{"label":"Die Weihnachtswette","description":"No overview found.","id":"5835","runtime":90,"imdbId":"tt1141246","version":45,"lastModified":"1301907418000","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"Die Weihnachtswette","releaseDate":1197244800000,"language":"en","type":"Movie","_key":"26834"} +{"label":"Christian von Castelberg","version":20,"id":"45943","lastModified":"1301902157000","name":"Christian von Castelberg","type":"Person","_key":"26835"} +{"label":"Ann-Kathrin Kramer","version":24,"id":"45947","lastModified":"1301901515000","name":"Ann-Kathrin Kramer","type":"Person","_key":"26836"} +{"label":"Kai-Peter Malina","version":21,"id":"45948","lastModified":"1301902157000","name":"Kai-Peter Malina","type":"Person","_key":"26837"} +{"label":"Willi Gerk","version":21,"id":"45949","lastModified":"1301901816000","name":"Willi Gerk","type":"Person","_key":"26838"} +{"label":"Harald Glitz","version":20,"id":"45950","lastModified":"1301902346000","name":"Harald Glitz","type":"Person","_key":"26839"} +{"label":"Lisa H\u00f6fling","version":20,"id":"45951","lastModified":"1301902346000","name":"Lisa H\u00f6fling","type":"Person","_key":"26840"} +{"label":"Mischa Knobloch","version":20,"id":"45952","lastModified":"1301902346000","name":"Mischa Knobloch","type":"Person","_key":"26841"} +{"label":"Michael Schenk","version":21,"id":"45953","lastModified":"1301901656000","name":"Michael Schenk","type":"Person","_key":"26842"} +{"label":"I Magliari","description":"No overview found.","id":"5839","runtime":119,"imdbId":"tt0053032","version":70,"lastModified":"1301908335000","studio":"S.G.C.","genre":"Drama","title":"I Magliari","releaseDate":-324259200000,"language":"en","type":"Movie","_key":"26843"} +{"label":"Francesco Rosi","version":27,"id":"87267","lastModified":"1301902668000","name":"Francesco Rosi","type":"Person","_key":"26844"} +{"label":"Alberto Sordi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1af\/4cd3e7065e73d673490001af\/alberto-sordi-profile.jpg","biography":"Attore e regista italiano. Comincia a recitare a met\u00e0 degli anni '30 \ndividendosi fra l'avanspettacolo, il teatro di rivista e piccole \ncomparse al cinema (d\u00e0 la voce a Ollio\/<a href=\"http:\/\/www.mymovies.it\/biografia\/?a=826\">O. Hardy<\/a>). Il primo film da coprotagonista \u00e8 <em><a href=\"http:\/\/www.mymovies.it\/dizionario\/recensione.asp?id=25592\" title=\"I tre aquilotti\">I tre aquilotti<\/a><\/em> (1942) di <a href=\"http:\/\/www.mymovies.it\/biografia\/?r=146\">M. Mattoli<\/a>,\n anche se negli anni '40 i ma","version":78,"id":"45982","lastModified":"1301901191000","name":"Alberto Sordi","type":"Person","_key":"26845"} +{"label":"Nino Vingelli","version":18,"id":"45983","lastModified":"1301901981000","name":"Nino Vingelli","type":"Person","_key":"26846"} +{"label":"Aldo Bufi Landi","version":20,"id":"45984","lastModified":"1301901734000","name":"Aldo Bufi Landi","type":"Person","_key":"26847"} +{"label":"Nino Di Napoli","version":19,"id":"45985","lastModified":"1301902290000","name":"Nino Di Napoli","type":"Person","_key":"26848"} +{"label":"Linda Vandal","version":19,"id":"45986","lastModified":"1301901891000","name":"Linda Vandal","type":"Person","_key":"26849"} +{"label":"St. Pauli Nacht","description":"No overview found.","id":"5840","runtime":95,"imdbId":"tt0143900","version":69,"lastModified":"1301908335000","studio":"Hager Moss Film KG","genre":"Drama","title":"St. Pauli Nacht","releaseDate":936230400000,"language":"en","type":"Movie","_key":"26850"} +{"label":"Ill-Young Kim","version":19,"id":"46021","lastModified":"1301902290000","name":"Ill-Young Kim","type":"Person","_key":"26851"} +{"label":"Timo Rathjens","version":19,"id":"46022","lastModified":"1301901891000","name":"Timo Rathjens","type":"Person","_key":"26852"} +{"label":"Matthias Laaser","version":17,"id":"46023","lastModified":"1301901891000","name":"Matthias Laaser","type":"Person","_key":"26853"} +{"label":"Doreen Jacobi","version":19,"id":"46024","lastModified":"1301901891000","name":"Doreen Jacobi","type":"Person","_key":"26854"} +{"label":"Kathleen Gallego Zapata","version":19,"id":"46025","lastModified":"1301902290000","name":"Kathleen Gallego Zapata","type":"Person","_key":"26855"} +{"label":"Jana Straulino","version":22,"id":"46026","lastModified":"1301901952000","name":"Jana Straulino","type":"Person","_key":"26856"} +{"label":"Silvan-Pierre Leirich","version":21,"id":"25927","lastModified":"1301901820000","name":"Silvan-Pierre Leirich","type":"Person","_key":"26857"} +{"label":"Judith Pinnow","version":19,"id":"46027","lastModified":"1301901891000","name":"Judith Pinnow","type":"Person","_key":"26858"} +{"label":"Mignon Rem\u00e9","version":17,"id":"46028","lastModified":"1301902290000","name":"Mignon Rem\u00e9","type":"Person","_key":"26859"} +{"label":"Otto Waalkes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82e\/4ce555765e73d60f6e00082e\/otto-waalkes-profile.jpg","version":52,"id":"46029","lastModified":"1301901496000","name":"Otto Waalkes","type":"Person","_key":"26860"} +{"label":"Roger Willemsen","version":19,"id":"46030","lastModified":"1301902290000","name":"Roger Willemsen","type":"Person","_key":"26861"} +{"label":"Versus","description":"Set in the present where a group of ruthless gangsters, an unknown woman and an escaped convict have met, unwittingly, in The Forest of Resurrection, the 444th portal to the other side. Their troubles start when those once killed and buried in the forest come back from the dead, with the assistance of the evil Sprit that has also come back, come back from ages past, to claim his prize. The final standoff between Light and Dark has never been so cunning, so brutal and so deadly. This is where old","id":"5842","runtime":119,"imdbId":"tt0275773","trailer":"http:\/\/www.youtube.com\/watch?v=fRfhuVlbM-4","version":203,"lastModified":"1301904149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/541\/4bc91d12017a3c57fe00b541\/versus-mid.jpg","studio":"KSS","genre":"Action","title":"Versus","releaseDate":972259200000,"language":"en","tagline":"Witness a battle no one has ever seen","type":"Movie","_key":"26862"} +{"label":"Tak Sakaguchi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e77\/4d2801357b9aa134d3001e77\/tak-sakaguchi-profile.jpg","version":42,"id":"45992","lastModified":"1301901286000","name":"Tak Sakaguchi","type":"Person","_key":"26863"} +{"label":"Hideo Sakaki","version":32,"id":"45993","lastModified":"1301901403000","name":"Hideo Sakaki","type":"Person","_key":"26864"} +{"label":"Chieko Misaka","version":20,"id":"45994","lastModified":"1301901676000","name":"Chieko Misaka","type":"Person","_key":"26865"} +{"label":"Minoru Matsumoto","version":27,"id":"45995","lastModified":"1301901826000","name":"Minoru Matsumoto","type":"Person","_key":"26866"} +{"label":"Ry\u00fbhei Kitamura","version":38,"birthday":"-18666000000","id":"45996","birthplace":"Osaka","lastModified":"1301901286000","name":"Ry\u00fbhei Kitamura","type":"Person","_key":"26867"} +{"label":"Heat After Dark","description":"No overview found.","id":"5843","runtime":50,"imdbId":"tt0384991","version":54,"lastModified":"1301907114000","genre":"Action","title":"Heat After Dark","releaseDate":820454400000,"language":"en","type":"Movie","_key":"26868"} +{"label":"Alive","description":"Tenshu is imprisoned and sentenced to death for murdering the men who raped his girlfriend. However, he manages to survive his execution and is presented with an option: face another execution attempt or subject himself to their bizarre and dangerous experiments.","id":"5844","runtime":119,"imdbId":"tt0331834","version":91,"lastModified":"1301907281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fae\/4be99a5e017a3c35bb000fae\/alive-mid.jpg","genre":"Action","title":"Alive","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"26869"} +{"label":"Aragami","description":"A raging god of battle and a master samurai duke it out in a series of sword fights in a remote temple.","id":"5845","runtime":76,"imdbId":"tt0362417","version":72,"lastModified":"1301904017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cd\/4c4651bf5e73d61efd0001cd\/5845-mid.jpg","genre":"Action","title":"Aragami","releaseDate":1048723200000,"language":"en","type":"Movie","_key":"26870"} +{"label":"Takao Osawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e7\/4d3fc88b5e73d622cf0050e7\/takao-sawa-profile.jpg","version":30,"id":"45999","lastModified":"1301901506000","name":"Takao Osawa","type":"Person","_key":"26871"} +{"label":"Kanae Uotani","version":23,"id":"46001","lastModified":"1301901446000","name":"Kanae Uotani","type":"Person","_key":"26872"} +{"label":"Sky High","description":"A serial-murderer is on the loose who just so happens to also be removing the hearts of his victims and taking them with him. His victims however, are not merely random humans as thought by the police. They are in fact, the past and present guardians of the gateway of the afterlife.On the day he is to be married, Detective Kanzaki, who happens to be on the case, discovers that his fianc\u00e9 Mina has been murdered with her heart also missing. He also learns that the killers are Kudo, a geneticist, a","id":"5846","runtime":122,"imdbId":"tt0398563","homepage":"http:\/\/www.tv-asahi.co.jp\/skyhigh-movie\/","version":135,"lastModified":"1301905122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/083\/4d1021827b9aa1147c000083\/sky-high-mid.jpg","genre":"Action","title":"Sky High","releaseDate":1070582400000,"language":"en","type":"Movie","_key":"26873"} +{"label":"Yumiko Shaku","version":23,"id":"46004","lastModified":"1301901566000","name":"Yumiko Shaku","type":"Person","_key":"26874"} +{"label":"Sh\u00f4suke Tanihara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/829\/4d273c367b9aa134cb001829\/sh-suke-tanihara-profile.jpg","version":35,"id":"46005","lastModified":"1301901299000","name":"Sh\u00f4suke Tanihara","type":"Person","_key":"26875"} +{"label":"Polizeirevier Davidswache","description":"No overview found.","id":"5848","runtime":97,"imdbId":"tt0058482","version":65,"lastModified":"1300978429000","studio":"UFA Filmproduktion GmbH","genre":"Crime","title":"Polizeirevier Davidswache","releaseDate":-167616000000,"language":"en","type":"Movie","_key":"26876"} +{"label":"Alexander von Richthofen","version":18,"id":"46038","lastModified":"1301902290000","name":"Alexander von Richthofen","type":"Person","_key":"26877"} +{"label":"Hannelore Schroth","version":21,"id":"46039","lastModified":"1301901953000","name":"Hannelore Schroth","type":"Person","_key":"26878"} +{"label":"G\u00fcnther Ungeheuer","version":19,"id":"26837","lastModified":"1301901616000","name":"G\u00fcnther Ungeheuer","type":"Person","_key":"26879"} +{"label":"G\u00fcnther Neutze","version":20,"id":"38173","lastModified":"1301901891000","name":"G\u00fcnther Neutze","type":"Person","_key":"26880"} +{"label":"Silvana Sansoni","version":19,"id":"46040","lastModified":"1301902290000","name":"Silvana Sansoni","type":"Person","_key":"26881"} +{"label":"G\u00fcnter L\u00fcdke","version":22,"id":"36369","lastModified":"1301901891000","name":"G\u00fcnter L\u00fcdke","type":"Person","_key":"26882"} +{"label":"Fred Berthold","version":19,"id":"36569","lastModified":"1301901538000","name":"Fred Berthold","type":"Person","_key":"26883"} +{"label":"Harald Heitmann","version":19,"id":"46041","lastModified":"1301902104000","name":"Harald Heitmann","type":"Person","_key":"26884"} +{"label":"Hans Irle","version":20,"id":"46042","lastModified":"1301902104000","name":"Hans Irle","type":"Person","_key":"26885"} +{"label":"Horst Michael Neutze","version":19,"id":"36532","lastModified":"1301901538000","name":"Horst Michael Neutze","type":"Person","_key":"26886"} +{"label":"Helmut Oeser","version":19,"id":"36539","lastModified":"1301901891000","name":"Helmut Oeser","type":"Person","_key":"26887"} +{"label":"Wolfgang Borchert","version":19,"id":"46043","lastModified":"1301902290000","name":"Wolfgang Borchert","type":"Person","_key":"26888"} +{"label":"Karl-Heinz Gerdesmann","version":19,"id":"26545","lastModified":"1301901538000","name":"Karl-Heinz Gerdesmann","type":"Person","_key":"26889"} +{"label":"Kurt Klopsch","version":22,"id":"26547","lastModified":"1301902157000","name":"Kurt Klopsch","type":"Person","_key":"26890"} +{"label":"Bruno Vahl-Berg","version":19,"id":"46044","lastModified":"1301902290000","name":"Bruno Vahl-Berg","type":"Person","_key":"26891"} +{"label":"Addi M\u00fcnster","version":20,"id":"46114","lastModified":"1301901734000","name":"Addi M\u00fcnster","type":"Person","_key":"26892"} +{"label":"Der Arzt von St. Pauli","description":"No overview found.","id":"5849","runtime":101,"imdbId":"tt0062680","version":55,"lastModified":"1301907281000","studio":"Terra-Filmkunst GmbH","genre":"Crime","title":"Der Arzt von St. Pauli","releaseDate":-40435200000,"language":"en","type":"Movie","_key":"26893"} +{"label":"Marianne Hoffmann","version":20,"id":"46048","lastModified":"1301902184000","name":"Marianne Hoffmann","type":"Person","_key":"26894"} +{"label":"Monika Zinnenberg","version":20,"id":"46049","lastModified":"1301902374000","name":"Monika Zinnenberg","type":"Person","_key":"26895"} +{"label":"Michael Conti","version":19,"id":"46050","lastModified":"1301902290000","name":"Michael Conti","type":"Person","_key":"26896"} +{"label":"Astrid Fournell","version":19,"id":"46051","lastModified":"1301902290000","name":"Astrid Fournell","type":"Person","_key":"26897"} +{"label":"Hans W. Hamacher","version":19,"id":"46052","lastModified":"1301902290000","name":"Hans W. Hamacher","type":"Person","_key":"26898"} +{"label":"Dieter Borsche","version":34,"id":"46053","lastModified":"1301901961000","name":"Dieter Borsche","type":"Person","_key":"26899"} +{"label":"Be\u015f Vakit","description":"No overview found.","id":"5850","runtime":110,"imdbId":"tt0855729","homepage":"http:\/\/www.timesandwinds.com\/index_eng.html","version":67,"lastModified":"1301906631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cff\/4cc3caaa7b9aa138d9001cff\/bes-vakit-mid.jpg","genre":"Drama","title":"Be\u015f Vakit","releaseDate":1159488000000,"language":"en","type":"Movie","_key":"26900"} +{"label":"Reha Erdem","version":30,"id":"46054","lastModified":"1301901380000","name":"Reha Erdem","type":"Person","_key":"26901"} +{"label":"Ozen Ozkan","version":20,"id":"46061","lastModified":"1301902167000","name":"Ozen Ozkan","type":"Person","_key":"26902"} +{"label":"Ali Bey Kayali","version":20,"id":"46062","lastModified":"1301901981000","name":"Ali Bey Kayali","type":"Person","_key":"26903"} +{"label":"Elit Iscan","version":20,"id":"46063","lastModified":"1301902351000","name":"Elit Iscan","type":"Person","_key":"26904"} +{"label":"Bulent Yarar","version":20,"id":"46064","lastModified":"1301901981000","name":"Bulent Yarar","type":"Person","_key":"26905"} +{"label":"Taner Birsel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d5\/4d1c535d5e73d6083400c6d5\/taner-birsel-profile.jpg","biography":"1959 y\u0131l\u0131nda Akhisar'da do\u011fdu. 1976 \u20131980 y\u0131llar\u0131nda Gazetecilik ve Halkla \u0130li\u015fkiler okudu. 1981 \u2013 1985 y\u0131llar\u0131 aras\u0131nda Mimar Sinan \u00dcniversitesi Devlet Konservatuvar\u0131 Tiyatro b\u00f6l\u00fcm\u00fcnde e\u011fitim g\u00f6rd\u00fc. 1985'den beri g\u00f6rev yapt\u0131\u011f\u0131 \u0130stanbul Devlet Tiyatrosu 'nda 30'dan fazla oyunda oynam\u0131\u015ft\u0131r.","version":28,"id":"46065","lastModified":"1301901527000","name":"Taner Birsel","type":"Person","_key":"26906"} +{"label":"Yigit \u00d6zsener","version":22,"id":"46066","lastModified":"1301902351000","name":"Yigit \u00d6zsener","type":"Person","_key":"26907"} +{"label":"Selma Erge\u00e7","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06d\/4d14a54f5e73d6083e00206d\/selma-erge-profile.jpg","biography":"<P>(d. 1978), oyuncu ve manken.<\/P>\r\n<P>Almanya\u2019n\u0131n Bochum adli kentinde Alman bir anneyle T\u00fcrk baban\u0131n k\u0131z\u0131 olarak do\u011fmu\u015ftur. Vestfalya Wilhems Universitesi M\u00fcnster t\u0131p fak\u00fcltesinde \u00fc\u00e7 y\u0131l okuduktan sonra Hagen Universitesi'nde psikoloji ve felsefe b\u00f6l\u00fcm\u00fcnden mezun oldu. 2000 y\u0131l\u0131nda profesyonel modellik kariyerine ba\u015flad\u0131. T\u00fcrk\u00e7e, Almanca, \u0130ngilizce ve Frans\u0131zca konu\u015fabildi\u011fi s\u00f6ylenmektedir.[kaynak belirtilmeli] Sis ve Gece sinema filminde Mine karakterini canland\u0131rd\u0131.<BR><\/P>","version":26,"id":"46067","lastModified":"1301901467000","name":"Selma Erge\u00e7","type":"Person","_key":"26908"} +{"label":"Tarik S\u00f6nmez","version":20,"id":"46068","lastModified":"1301902351000","name":"Tarik S\u00f6nmez","type":"Person","_key":"26909"} +{"label":"K\u00f6ksal Eng\u00fcr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f9d\/4d14f3087b9aa1147c001f9d\/k-ksal-eng-r-profile.jpg","biography":"<P>K\u00f6ksal Eng\u00fcr, T\u00fcrk tiyatro, sinema ve dizi oyuncusu, seslendirme sanat\u00e7\u0131s\u0131.<\/P>\r\n<P>K\u00f6ksal Eng\u00fcr, e\u011fitimini tamamlamadan \u00f6nce sanat ya\u015fam\u0131na ba\u015flayan oyunculardand\u0131r. 1956 y\u0131l\u0131nda TRT Ankara Radyosu, \u00c7ocuk Saati program\u0131nda k\u0131sa radyo tiyatrolar\u0131yla ba\u015flayan deneyimleri, Ankara \u00dcniversitesi, Dil ve Tarih co\u011frafya Fak\u00fcltesi Tiyatro B\u00f6l\u00fcm\u00fc'nden 1969 y\u0131l\u0131nda mezun olana kadar s\u00fcrd\u00fc. TRT'de programlara kat\u0131lman\u0131n yan\u0131nda, seslendirme \u00e7al\u0131\u015fmalar\u0131n\u0131n da temelini atan sanat\u00e7\u0131, Ankara Halkevi, Sahne ","version":27,"id":"46069","lastModified":"1301901701000","name":"K\u00f6ksal Eng\u00fcr","type":"Person","_key":"26910"} +{"label":"Tilbe Saran","version":21,"id":"46070","lastModified":"1301902290000","name":"Tilbe Saran","type":"Person","_key":"26911"} +{"label":"Sevin\u00e7 Erbulak","version":24,"id":"46071","lastModified":"1301901891000","name":"Sevin\u00e7 Erbulak","type":"Person","_key":"26912"} +{"label":"Nihan Asli Elmas","version":20,"id":"46072","lastModified":"1301901981000","name":"Nihan Asli Elmas","type":"Person","_key":"26913"} +{"label":"C\u00fcneyt T\u00fcrel","version":21,"id":"46073","lastModified":"1301901891000","name":"C\u00fcneyt T\u00fcrel","type":"Person","_key":"26914"} +{"label":"Showtime","description":"A spoof of buddy cop movies where two very different cops are forced to team up on a new reality based T.V. cop show.","id":"5851","runtime":95,"imdbId":"tt0284490","homepage":"http:\/\/www.warnerbros.de\/movies\/showtime\/","version":128,"lastModified":"1301901873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54e\/4bc91d15017a3c57fe00b54e\/showtime-mid.jpg","studio":"NPV Entertainment","genre":"Action","title":"Showtime","releaseDate":1015804800000,"language":"en","tagline":"Lights. Camera. Aggravation.","type":"Movie","_key":"26915"} +{"label":"Rachael Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ce\/4d5031327b9aa13aba00c1ce\/rachael-harris-profile.jpg","version":50,"id":"46074","lastModified":"1302059269000","name":"Rachael Harris","type":"Person","_key":"26916"} +{"label":"Zaid Farid","version":25,"id":"46075","lastModified":"1301901754000","name":"Zaid Farid","type":"Person","_key":"26917"} +{"label":"Tom Dey","version":37,"id":"46076","lastModified":"1301901452000","name":"Tom Dey","type":"Person","_key":"26918"} +{"label":"Angel Eyes","description":"A story about a seemingly unlikely couple who cross paths under life-threatening circumstances as though they are destined not only to meet but to save each other's lives. Not once, but twice.","id":"5852","runtime":102,"imdbId":"tt0225071","homepage":"http:\/\/angeleyesmovie.warnerbros.com\/index_noflash.html","version":170,"lastModified":"1301903888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a3\/4cb9a1075e73d677820006a3\/angel-eyes-mid.jpg","studio":"Franchise Pictures","genre":"Drama","title":"Angel Eyes","releaseDate":989884800000,"language":"en","type":"Movie","_key":"26919"} +{"label":"Luis Mandoki","version":54,"id":"46085","lastModified":"1301920453000","name":"Luis Mandoki","type":"Person","_key":"26920"} +{"label":"Deep Throat","description":"Linda's frustration with her inability to achieve orgasm causes a friend to recommend that she see a sex therapist about her problem. During the exam the therapist discovers that Linda's clitoris is located in her throat and recommends deep throating as a treatment to her ailment. Linda then goes on to experiment with this new technique as she searches for a husband.","id":"5853","runtime":61,"imdbId":"tt0068468","version":79,"lastModified":"1301902723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56d\/4bc91d17017a3c57fe00b56d\/deep-throat-mid.jpg","genre":"Erotic","title":"Deep Throat","releaseDate":77155200000,"language":"en","tagline":"How far does a girl have to go to untangle her tingle?","type":"Movie","_key":"26921"} +{"label":"Gerard Damiano","version":55,"id":"46092","lastModified":"1301901891000","name":"Gerard Damiano","type":"Person","_key":"26922"} +{"label":"Linda Lovelace","version":28,"id":"46095","lastModified":"1301901438000","name":"Linda Lovelace","type":"Person","_key":"26923"} +{"label":"Harry Reems","version":45,"id":"46096","lastModified":"1301901584000","name":"Harry Reems","type":"Person","_key":"26924"} +{"label":"Dolly Sharp","version":27,"id":"46097","lastModified":"1301901431000","name":"Dolly Sharp","type":"Person","_key":"26925"} +{"label":"Bill Harrison","version":27,"id":"46220","lastModified":"1301901999000","name":"Bill Harrison","type":"Person","_key":"26926"} +{"label":"William Love","version":27,"id":"46221","lastModified":"1301902104000","name":"William Love","type":"Person","_key":"26927"} +{"label":"Carol Connors","version":26,"id":"46222","lastModified":"1301902290000","name":"Carol Connors","type":"Person","_key":"26928"} +{"label":"Bob Phillips","version":28,"id":"46223","lastModified":"1301902290000","name":"Bob Phillips","type":"Person","_key":"26929"} +{"label":"Family Plot","description":"Lighthearted suspense film about a phony psychic\/con artist and her taxi driver\/private investigator boyfriend who encounter a pair of serial kidnappers while trailing a missing heir in California.","id":"5854","runtime":121,"imdbId":"tt0074512","version":145,"lastModified":"1301904191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/585\/4bc91d1c017a3c57fe00b585\/family-plot-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Family Plot","releaseDate":197856000000,"language":"en","tagline":"There\u2019s no body in the family plot.","type":"Movie","_key":"26930"} +{"label":"Cathleen Nesbitt","version":27,"id":"46098","lastModified":"1301901382000","name":"Cathleen Nesbitt","type":"Person","_key":"26931"} +{"label":"William Prince","version":38,"id":"46099","lastModified":"1301901318000","name":"William Prince","type":"Person","_key":"26932"} +{"label":"John Lehne","version":23,"id":"46100","lastModified":"1301901616000","name":"John Lehne","type":"Person","_key":"26933"} +{"label":"Heimweh nach St. Pauli","description":"No overview found.","id":"5855","runtime":102,"imdbId":"tt0057136","version":74,"lastModified":"1301906630000","studio":"Rapid-Film","genre":"Drama","title":"Heimweh nach St. Pauli","releaseDate":-178675200000,"language":"en","type":"Movie","_key":"26934"} +{"label":"Karl Vibach","version":20,"id":"46101","lastModified":"1301902184000","name":"Karl Vibach","type":"Person","_key":"26935"} +{"label":"Freddy Quinn","version":22,"id":"23371","lastModified":"1301901753000","name":"Freddy Quinn","type":"Person","_key":"26936"} +{"label":"Josef Albrecht","version":19,"id":"46108","lastModified":"1301902104000","name":"Josef Albrecht","type":"Person","_key":"26937"} +{"label":"Bill Ramsey","version":26,"id":"46109","lastModified":"1301901940000","name":"Bill Ramsey","type":"Person","_key":"26938"} +{"label":"Christa Schindler","version":19,"id":"46110","lastModified":"1301902290000","name":"Christa Schindler","type":"Person","_key":"26939"} +{"label":"Hein Riess","version":19,"id":"46111","lastModified":"1301902290000","name":"Hein Riess","type":"Person","_key":"26940"} +{"label":"Heiner Holl","version":19,"id":"46112","lastModified":"1301902290000","name":"Heiner Holl","type":"Person","_key":"26941"} +{"label":"Charles Palent","version":19,"id":"46113","lastModified":"1301902290000","name":"Charles Palent","type":"Person","_key":"26942"} +{"label":"Peter Mosbacher","version":19,"id":"46115","lastModified":"1301902290000","name":"Peter Mosbacher","type":"Person","_key":"26943"} +{"label":"Rudolf Platte","version":24,"id":"36506","lastModified":"1301901734000","name":"Rudolf Platte","type":"Person","_key":"26944"} +{"label":"Marisa Solinas","version":24,"id":"46116","lastModified":"1301901530000","name":"Marisa Solinas","type":"Person","_key":"26945"} +{"label":"Carl Voscherau","version":21,"id":"46117","lastModified":"1301901850000","name":"Carl Voscherau","type":"Person","_key":"26946"} +{"label":"Nelson Sardelli","version":19,"id":"46118","lastModified":"1301902290000","name":"Nelson Sardelli","type":"Person","_key":"26947"} +{"label":"Hotel St. Pauli","description":"No overview found.","id":"5856","runtime":121,"imdbId":"tt0091221","version":54,"lastModified":"1301907418000","studio":"Norsk Film AS","genre":"Drama","title":"Hotel St. Pauli","releaseDate":573350400000,"language":"en","type":"Movie","_key":"26948"} +{"label":"Svend Wam","version":24,"id":"46119","lastModified":"1301902157000","name":"Svend Wam","type":"Person","_key":"26949"} +{"label":"\u00d8yvin Bang Berven","version":20,"id":"46126","lastModified":"1301902346000","name":"\u00d8yvin Bang Berven","type":"Person","_key":"26950"} +{"label":"John Ege","version":20,"id":"46127","lastModified":"1301902184000","name":"John Ege","type":"Person","_key":"26951"} +{"label":"Amanda Ooms","version":20,"id":"46128","lastModified":"1301901999000","name":"Amanda Ooms","type":"Person","_key":"26952"} +{"label":"Sossen Krohg","version":24,"id":"46129","lastModified":"1301902157000","name":"Sossen Krohg","type":"Person","_key":"26953"} +{"label":"J\u00f6ns Andersson","version":20,"id":"46130","lastModified":"1301901962000","name":"J\u00f6ns Andersson","type":"Person","_key":"26954"} +{"label":"Jorunn Kjellsby","version":25,"id":"46131","lastModified":"1301901656000","name":"Jorunn Kjellsby","type":"Person","_key":"26955"} +{"label":"Lasse Lindtner","version":24,"id":"46132","lastModified":"1301901962000","name":"Lasse Lindtner","type":"Person","_key":"26956"} +{"label":"Petter Nome","version":20,"id":"46133","lastModified":"1301902157000","name":"Petter Nome","type":"Person","_key":"26957"} +{"label":"Linn Stokke","version":22,"id":"46134","lastModified":"1301902149000","name":"Linn Stokke","type":"Person","_key":"26958"} +{"label":"I Know Who Killed Me","description":"An idyllic small town is rocked when Aubrey Fleming (Lindsay Lohan), a bright and promising young woman, is abducted and tortured by a sadistic serial killer. When she manages to escape, the traumatized girl who regains consciousness in the hospital insists that she is not who they think she is and that the real Aubrey Fleming is still in mortal danger.","id":"5857","runtime":105,"imdbId":"tt0897361","trailer":"http:\/\/www.youtube.com\/watch?v=KSZ98kUVQFo","homepage":"http:\/\/sonypictures.com\/homevideo\/iknowwhokilledme\/","version":278,"lastModified":"1301906793000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/318\/4d0f5eed7b9aa11770003318\/i-know-who-killed-me-mid.jpg","studio":"Sony Pictures","genre":"Drama","title":"I Know Who Killed Me","releaseDate":1185494400000,"language":"en","type":"Movie","_key":"26959"} +{"label":"Lindsay Lohan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c5d\/4bfec32a017a3c702a000c5d\/lindsay-lohan-profile.jpg","version":80,"birthday":"520639200000","id":"49265","birthplace":"New York City, New York, USA","lastModified":"1302068324000","name":"Lindsay Lohan","type":"Person","_key":"26960"} +{"label":"Brian Geraghty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4bca4a9e017a3c0e8f00009f\/brian-geraghty-profile.jpg","version":60,"id":"49271","lastModified":"1301901294000","name":"Brian Geraghty","type":"Person","_key":"26961"} +{"label":"Spencer Garrett","version":30,"id":"49275","lastModified":"1301901182000","name":"Spencer Garrett","type":"Person","_key":"26962"} +{"label":"Kenya Moore","version":27,"id":"49276","lastModified":"1301902136000","name":"Kenya Moore","type":"Person","_key":"26963"} +{"label":"Chris Sivertson","version":32,"id":"49281","lastModified":"1301901452000","name":"Chris Sivertson","type":"Person","_key":"26964"} +{"label":"Die Engel von St. Pauli","description":"No overview found.","id":"5858","runtime":102,"imdbId":"tt0064287","version":64,"lastModified":"1301907281000","studio":"Studio Hamburg Filmproduktion","genre":"Drama","title":"Die Engel von St. Pauli","releaseDate":-5961600000,"language":"en","type":"Movie","_key":"26965"} +{"label":"Gernot Endemann","version":22,"id":"26499","lastModified":"1301901969000","name":"Gernot Endemann","type":"Person","_key":"26966"} +{"label":"Margot Mahler","version":19,"id":"39636","lastModified":"1301901616000","name":"Margot Mahler","type":"Person","_key":"26967"} +{"label":"Christa Siems","version":20,"id":"36295","lastModified":"1301901616000","name":"Christa Siems","type":"Person","_key":"26968"} +{"label":"Horst Hesslein","version":22,"id":"26334","lastModified":"1301901891000","name":"Horst Hesslein","type":"Person","_key":"26969"} +{"label":"Uwe Carstens","version":20,"id":"46136","lastModified":"1301901891000","name":"Uwe Carstens","type":"Person","_key":"26970"} +{"label":"Denes T\u00f6rzs","version":20,"id":"26310","lastModified":"1301902184000","name":"Denes T\u00f6rzs","type":"Person","_key":"26971"} +{"label":"Reinhold Timm","version":19,"id":"46137","lastModified":"1301901891000","name":"Reinhold Timm","type":"Person","_key":"26972"} +{"label":"J\u00fcrgen Lier","version":19,"id":"26429","lastModified":"1301902104000","name":"J\u00fcrgen Lier","type":"Person","_key":"26973"} +{"label":"Mike Henning","version":18,"id":"46138","lastModified":"1301901981000","name":"Mike Henning","type":"Person","_key":"26974"} +{"label":"Jochen Sehrndt","version":18,"id":"46139","lastModified":"1301902351000","name":"Jochen Sehrndt","type":"Person","_key":"26975"} +{"label":"J\u00fcrgen Janza","version":19,"id":"36568","lastModified":"1301901891000","name":"J\u00fcrgen Janza","type":"Person","_key":"26976"} +{"label":"Will van Deeg","version":19,"id":"46140","lastModified":"1301902290000","name":"Will van Deeg","type":"Person","_key":"26977"} +{"label":"Karl-Ulrich Meves","version":19,"id":"46141","lastModified":"1301901891000","name":"Karl-Ulrich Meves","type":"Person","_key":"26978"} +{"label":"Gabriele Scharon","version":19,"id":"46142","lastModified":"1301901891000","name":"Gabriele Scharon","type":"Person","_key":"26979"} +{"label":"Esther Daniels","version":19,"id":"46143","lastModified":"1301901891000","name":"Esther Daniels","type":"Person","_key":"26980"} +{"label":"Fluchtweg St. Pauli - Gro\u00dfalarm f\u00fcr die Davidswache","description":"No overview found.","id":"5859","runtime":83,"imdbId":"tt0067105","version":46,"lastModified":"1301906630000","studio":"Allianz","genre":"Thriller","title":"Fluchtweg St. Pauli - Gro\u00dfalarm f\u00fcr die Davidswache","releaseDate":56332800000,"language":"en","type":"Movie","_key":"26981"} +{"label":"Klaus Schwarzkopf","version":19,"id":"26836","lastModified":"1301901734000","name":"Klaus Schwarzkopf","type":"Person","_key":"26982"} +{"label":"Andrea Rau","version":24,"id":"39091","lastModified":"1301901708000","name":"Andrea Rau","type":"Person","_key":"26983"} +{"label":"Gerhard Bormann","version":19,"id":"46146","lastModified":"1301902290000","name":"Gerhard Bormann","type":"Person","_key":"26984"} +{"label":"Ingeburg Kanstein","version":19,"id":"46147","lastModified":"1301902290000","name":"Ingeburg Kanstein","type":"Person","_key":"26985"} +{"label":"Harry Wolff","version":19,"id":"46148","lastModified":"1301902290000","name":"Harry Wolff","type":"Person","_key":"26986"} +{"label":"Curt Timm","version":19,"id":"46149","lastModified":"1301902104000","name":"Curt Timm","type":"Person","_key":"26987"} +{"label":"Der Geist von St. Pauli","description":"No overview found.","id":"5868","runtime":8,"imdbId":"tt0777219","version":37,"lastModified":"1301907418000","studio":"Hamburg Media School-Filmwerkstatt","genre":"Comedy","title":"Der Geist von St. Pauli","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"26988"} +{"label":"Jochen Baumert","version":20,"id":"46171","lastModified":"1301901656000","name":"Jochen Baumert","type":"Person","_key":"26989"} +{"label":"Frank Wieczorek","version":20,"id":"46172","lastModified":"1301901962000","name":"Frank Wieczorek","type":"Person","_key":"26990"} +{"label":"Michael Sommer","version":20,"id":"46173","lastModified":"1301901962000","name":"Michael Sommer","type":"Person","_key":"26991"} +{"label":"Der Pfarrer von St. Pauli","description":"No overview found.","id":"5869","runtime":90,"imdbId":"tt0066219","version":57,"lastModified":"1301907281000","studio":"Allianz","genre":"Drama","title":"Der Pfarrer von St. Pauli","releaseDate":19785600000,"language":"en","type":"Movie","_key":"26992"} +{"label":"Jean-Pierre Bonnin","version":19,"id":"46178","lastModified":"1301902290000","name":"Jean-Pierre Bonnin","type":"Person","_key":"26993"} +{"label":"Walter Buschhoff","version":22,"id":"26900","lastModified":"1301901997000","name":"Walter Buschhoff","type":"Person","_key":"26994"} +{"label":"Wolfgang Condrus","version":20,"id":"36264","lastModified":"1301901616000","name":"Wolfgang Condrus","type":"Person","_key":"26995"} +{"label":"Christine Diersch","version":19,"id":"46179","lastModified":"1301901891000","name":"Christine Diersch","type":"Person","_key":"26996"} +{"label":"Christian Engelmann","version":19,"id":"46180","lastModified":"1301901891000","name":"Christian Engelmann","type":"Person","_key":"26997"} +{"label":"Klaus Hagen Latwesen","version":20,"id":"46181","lastModified":"1301902104000","name":"Klaus Hagen Latwesen","type":"Person","_key":"26998"} +{"label":"Ilse Peternell","version":22,"id":"46182","lastModified":"1301902290000","name":"Ilse Peternell","type":"Person","_key":"26999"} +{"label":"Karl Schurr","version":19,"id":"46183","lastModified":"1301902290000","name":"Karl Schurr","type":"Person","_key":"27000"} +{"label":"Dieter Wagner","version":19,"id":"26381","lastModified":"1301902104000","name":"Dieter Wagner","type":"Person","_key":"27001"} +{"label":"Das Herz von St. Pauli","description":"No overview found.","id":"5870","runtime":95,"imdbId":"tt0050505","version":62,"lastModified":"1301906079000","studio":"Real Fiction","genre":"Crime","title":"Das Herz von St. Pauli","releaseDate":-379987200000,"language":"en","type":"Movie","_key":"27002"} +{"label":"Eugen York","version":19,"id":"46184","lastModified":"1301902290000","name":"Eugen York","type":"Person","_key":"27003"} +{"label":"J\u00fcrgen Wilke","version":19,"id":"46191","lastModified":"1301901891000","name":"J\u00fcrgen Wilke","type":"Person","_key":"27004"} +{"label":"Josef Dahmen","version":19,"id":"46192","lastModified":"1301902290000","name":"Josef Dahmen","type":"Person","_key":"27005"} +{"label":"Georg Eilert","version":19,"id":"46193","lastModified":"1301902290000","name":"Georg Eilert","type":"Person","_key":"27006"} +{"label":"Karin Faber","version":19,"id":"46194","lastModified":"1301902290000","name":"Karin Faber","type":"Person","_key":"27007"} +{"label":"Kurt A. Jung","version":19,"id":"46195","lastModified":"1301902290000","name":"Kurt A. Jung","type":"Person","_key":"27008"} +{"label":"Gert Kollat","version":19,"id":"46196","lastModified":"1301902290000","name":"Gert Kollat","type":"Person","_key":"27009"} +{"label":"Ludwig Linkmann","version":22,"id":"46197","lastModified":"1301902290000","name":"Ludwig Linkmann","type":"Person","_key":"27010"} +{"label":"Hans Paetsch","version":21,"id":"46198","lastModified":"1301902290000","name":"Hans Paetsch","type":"Person","_key":"27011"} +{"label":"The World Is Big and Salvation Lurks around the Corner","description":"\"World\" centers on Alexander (played by Blagovest Mutafchiev as a child and Carlo Ljubek as an adult), who was born in 1975 in Bulgaria. During the oppressive communist era, he and his parents immigrate to Germany. But when an automobile accident takes the parents' lives, Alexander's beloved grandfather, Bai Dan (Miki Manojlovic), comes to tend to him. The young man is suffering from amnesia as a result of the accident, and Bai Dan decides to try to restore his memories by taking him on a bicycl","id":"5871","runtime":105,"imdbId":"tt1178197","version":37,"lastModified":"1301904413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ae\/4c8a542c7b9aa164990000ae\/svetat-e-golyam-i-spasenie-debne-otvsyakade-mid.jpg","genre":"Drama","title":"The World Is Big and Salvation Lurks around the Corner","releaseDate":1205452800000,"language":"en","tagline":"The story of Alex, who, with the help of his charismatic grandfather, embarks on a journey in search of his real self.","type":"Movie","_key":"27012"} +{"label":"Stephan Komandarev","version":23,"id":"46199","lastModified":"1301902175000","name":"Stephan Komandarev","type":"Person","_key":"27013"} +{"label":"M\u00e4nner wie wir","description":"No overview found.","id":"5873","runtime":106,"imdbId":"tt0375911","version":58,"lastModified":"1301416891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebe\/4d3333fb5e73d6334d001ebe\/m-nner-wie-wir-mid.jpg","studio":"RTL","genre":"Comedy","title":"M\u00e4nner wie wir","releaseDate":1097107200000,"language":"en","type":"Movie","_key":"27014"} +{"label":"Mariele Millowitsch","version":22,"id":"46202","lastModified":"1301902157000","name":"Mariele Millowitsch","type":"Person","_key":"27015"} +{"label":"Sherry Horman","version":21,"id":"46203","lastModified":"1301901403000","name":"Sherry Horman","type":"Person","_key":"27016"} +{"label":"Nurses For Sale","description":"No overview found.","id":"5874","runtime":78,"imdbId":"tt0067319","version":96,"lastModified":"1301906630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/597\/4bc91d1d017a3c57fe00b597\/kapt-n-rauhbein-aus-st-pauli-mid.jpg","studio":"Allianz","genre":"Adventure","title":"Nurses For Sale","releaseDate":52012800000,"language":"en","type":"Movie","_key":"27017"} +{"label":"Johanna von Koczian","version":22,"id":"46205","lastModified":"1301901628000","name":"Johanna von Koczian","type":"Person","_key":"27018"} +{"label":"Angelica Ott","version":23,"id":"46206","lastModified":"1301901891000","name":"Angelica Ott","type":"Person","_key":"27019"} +{"label":"Fritz Tillmann","version":23,"id":"46207","lastModified":"1301902152000","name":"Fritz Tillmann","type":"Person","_key":"27020"} +{"label":"Gerhart Lippert","version":19,"id":"46208","lastModified":"1301902351000","name":"Gerhart Lippert","type":"Person","_key":"27021"} +{"label":"Emilio Schuberth","version":21,"id":"46209","lastModified":"1301901999000","name":"Emilio Schuberth","type":"Person","_key":"27022"} +{"label":"Janine Reynaud","version":25,"id":"46212","lastModified":"1301901643000","name":"Janine Reynaud","type":"Person","_key":"27023"} +{"label":"James Graser","version":21,"id":"46210","lastModified":"1301901999000","name":"James Graser","type":"Person","_key":"27024"} +{"label":"Der Hurenstreik - Eine Liebe auf St. Pauli","description":"No overview found.","id":"5875","runtime":90,"imdbId":"tt0187163","version":41,"lastModified":"1301906748000","studio":"RTL","genre":"Comedy","title":"Der Hurenstreik - Eine Liebe auf St. Pauli","releaseDate":918604800000,"language":"en","type":"Movie","_key":"27025"} +{"label":"Sandra Speichert","version":22,"id":"46215","lastModified":"1301901656000","name":"Sandra Speichert","type":"Person","_key":"27026"} +{"label":"Niels-Bruno Schmidt","version":38,"id":"46216","lastModified":"1301901194000","name":"Niels-Bruno Schmidt","type":"Person","_key":"27027"} +{"label":"Dietmar K\u00f6nig","version":20,"id":"46217","lastModified":"1301901999000","name":"Dietmar K\u00f6nig","type":"Person","_key":"27028"} +{"label":"Domenica Niehoff","version":20,"id":"46218","lastModified":"1301901998000","name":"Domenica Niehoff","type":"Person","_key":"27029"} +{"label":"B\u00e4rbel Sch\u00e4fer","version":20,"id":"46219","lastModified":"1301902017000","name":"B\u00e4rbel Sch\u00e4fer","type":"Person","_key":"27030"} +{"label":"The Mist","description":"After a violent storm attacks a town in Maine, an approaching cloud of mist appears the next morning. As the mist quickly envelops the area, a group of people get trapped in a local grocery store -among them, artist David Drayton and his five-year-old son. The people soon discover that within the mist lives numerous species of horrific, creatures that entered through an inter-dimensional rift.","id":"5876","runtime":124,"imdbId":"tt0884328","trailer":"http:\/\/www.youtube.com\/watch?v=LhCKXJNGzN8?hd=1","homepage":"http:\/\/www.themist-movie.com\/","version":276,"lastModified":"1301901646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cb\/4cfaf3877b9aa15c970015cb\/the-mist-mid.jpg","studio":"Darkwoods Productions","genre":"Drama","title":"The Mist","releaseDate":1195603200000,"language":"en","tagline":"Belief divides them, mystery surrounds them, but fear changes everything.","type":"Movie","_key":"27031"} +{"label":"Sam Witwer","version":26,"id":"46362","lastModified":"1302062686000","name":"Sam Witwer","type":"Person","_key":"27032"} +{"label":"In the Realm of the Senses","description":"Based on a true story set in pre-war Japan, a man and one of his servants begin a torrid affair. Their desire becomes a sexual obsession so strong that to intensify their ardor, they forsake all, even life itself.","id":"5879","runtime":105,"imdbId":"tt0074102","version":117,"lastModified":"1301906531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b0\/4bf40d08017a3c320f0005b0\/ai-no-korida-mid.jpg","studio":"Argos","genre":"Documentary","title":"In the Realm of the Senses","releaseDate":200966400000,"language":"en","type":"Movie","_key":"27033"} +{"label":"Nagisa \u00d4shima","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4ca4aedf5e73d636fa000215\/nagisa-oshima-profile.jpg","version":37,"id":"46230","lastModified":"1301901286000","name":"Nagisa \u00d4shima","type":"Person","_key":"27034"} +{"label":"Eiko Matsuda","version":21,"id":"46239","lastModified":"1301902032000","name":"Eiko Matsuda","type":"Person","_key":"27035"} +{"label":"D\u00e9saccord Parfait","description":"No overview found.","id":"5881","runtime":92,"imdbId":"tt0774756","homepage":"http:\/\/www.desaccordparfait-lefilm.com ","version":73,"lastModified":"1301904957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/698\/4d63000e5e73d60c62004698\/d-saccord-parfait-mid.jpg","studio":"Loma Nasha Films","genre":"Comedy","title":"D\u00e9saccord Parfait","releaseDate":1162944000000,"language":"en","type":"Movie","_key":"27036"} +{"label":"James Thi\u00e9rr\u00e9e","version":24,"id":"46274","lastModified":"1301902320000","name":"James Thi\u00e9rr\u00e9e","type":"Person","_key":"27037"} +{"label":"Raymond Bouchard","version":19,"id":"46275","lastModified":"1301902104000","name":"Raymond Bouchard","type":"Person","_key":"27038"} +{"label":"Julie du Page","version":18,"id":"46277","lastModified":"1301902167000","name":"Julie du Page","type":"Person","_key":"27039"} +{"label":"Yvon Back","version":20,"id":"46278","lastModified":"1301902104000","name":"Yvon Back","type":"Person","_key":"27040"} +{"label":"Boy George","version":19,"id":"46279","lastModified":"1301902104000","name":"Boy George","type":"Person","_key":"27041"} +{"label":"Antoine de Caunes","version":25,"id":"46280","lastModified":"1301901948000","name":"Antoine de Caunes","type":"Person","_key":"27042"} +{"label":"Heidi und Erni: Wahnsinnig romantisch","description":"No overview found.","id":"5883","runtime":25,"imdbId":"tt1125218","version":36,"lastModified":"1301907417000","genre":"Comedy","title":"Heidi und Erni: Wahnsinnig romantisch","releaseDate":703814400000,"language":"en","type":"Movie","_key":"27043"} +{"label":"Michael F\u00fcting","version":20,"id":"46240","lastModified":"1301902201000","name":"Michael F\u00fcting","type":"Person","_key":"27044"} +{"label":"Heidi Kabel","version":22,"id":"46224","lastModified":"1301902389000","name":"Heidi Kabel","type":"Person","_key":"27045"} +{"label":"Viktoria Brams","version":20,"id":"46241","lastModified":"1301902186000","name":"Viktoria Brams","type":"Person","_key":"27046"} +{"label":"Mark Bellinghaus","version":21,"id":"46242","lastModified":"1301902346000","name":"Mark Bellinghaus","type":"Person","_key":"27047"} +{"label":"Petra Welteroth","version":20,"id":"46227","lastModified":"1301902367000","name":"Petra Welteroth","type":"Person","_key":"27048"} +{"label":"Nadzieja","description":"No overview found.","id":"5885","runtime":101,"imdbId":"tt0847750","homepage":"http:\/\/hope.pandorafilm.de\/","version":87,"lastModified":"1301904017000","studio":"Pandora Film","genre":"Comedy","title":"Nadzieja","releaseDate":1182643200000,"language":"en","type":"Movie","_key":"27049"} +{"label":"Rafal Fudalej","version":18,"id":"46243","lastModified":"1301901505000","name":"Rafal Fudalej","type":"Person","_key":"27050"} +{"label":"Kamilla Baar","version":19,"id":"46244","lastModified":"1301901734000","name":"Kamilla Baar","type":"Person","_key":"27051"} +{"label":"Grzegorz Artman","version":19,"id":"46245","lastModified":"1301901891000","name":"Grzegorz Artman","type":"Person","_key":"27052"} +{"label":"Jan Frycz","version":21,"id":"46246","lastModified":"1301901942000","name":"Jan Frycz","type":"Person","_key":"27053"} +{"label":"Lilith Mucha","version":19,"id":"46247","lastModified":"1301901891000","name":"Lilith Mucha","type":"Person","_key":"27054"} +{"label":"Dominika Ostalowska","version":19,"id":"46248","lastModified":"1301902289000","name":"Dominika Ostalowska","type":"Person","_key":"27055"} +{"label":"Kacper Michalak","version":19,"id":"46250","lastModified":"1301901891000","name":"Kacper Michalak","type":"Person","_key":"27056"} +{"label":"Jedrzej Cempura","version":19,"id":"46252","lastModified":"1301901891000","name":"Jedrzej Cempura","type":"Person","_key":"27057"} +{"label":"Irina Lastovyak","version":18,"id":"46257","lastModified":"1301901981000","name":"Irina Lastovyak","type":"Person","_key":"27058"} +{"label":"Stanislaw Mucha","version":19,"id":"46258","lastModified":"1301902289000","name":"Stanislaw Mucha","type":"Person","_key":"27059"} +{"label":"Andersrum","description":"No overview found.","id":"5886","runtime":90,"imdbId":"tt0494467","version":48,"lastModified":"1301908595000","studio":"Harder Beta GmbH","genre":"Comedy","title":"Andersrum","releaseDate":1135641600000,"language":"en","type":"Movie","_key":"27060"} +{"label":"G\u00fclcan Karahanci","version":20,"id":"46249","lastModified":"1301902346000","name":"G\u00fclcan Karahanci","type":"Person","_key":"27061"} +{"label":"Michael Roll","version":22,"id":"36492","lastModified":"1301901656000","name":"Michael Roll","type":"Person","_key":"27062"} +{"label":"Henry van Lyck","version":23,"id":"46251","lastModified":"1301902157000","name":"Henry van Lyck","type":"Person","_key":"27063"} +{"label":"Gundis Zambo","version":20,"id":"46253","lastModified":"1301902373000","name":"Gundis Zambo","type":"Person","_key":"27064"} +{"label":"Viktoria Lauterbach","version":20,"id":"46254","lastModified":"1301902373000","name":"Viktoria Lauterbach","type":"Person","_key":"27065"} +{"label":"Anthony Baffoe","version":20,"id":"46255","lastModified":"1301902346000","name":"Anthony Baffoe","type":"Person","_key":"27066"} +{"label":"Nicole Mark","version":20,"id":"46256","lastModified":"1301902346000","name":"Nicole Mark","type":"Person","_key":"27067"} +{"label":"Schatten \u00fcber St. Pauli","description":"No overview found.","id":"5887","runtime":81,"imdbId":"tt0030720","version":49,"lastModified":"1301905714000","studio":"Terra-Filmkunst GmbH","genre":"Crime","title":"Schatten \u00fcber St. Pauli","releaseDate":-1009843200000,"language":"en","type":"Movie","_key":"27068"} +{"label":"Fritz Kirchhoff","version":20,"id":"46333","lastModified":"1301901816000","name":"Fritz Kirchhoff","type":"Person","_key":"27069"} +{"label":"Marieluise Claudius","version":21,"id":"46340","lastModified":"1301901816000","name":"Marieluise Claudius","type":"Person","_key":"27070"} +{"label":"Hellmuth Bergmann","version":20,"id":"46341","lastModified":"1301902184000","name":"Hellmuth Bergmann","type":"Person","_key":"27071"} +{"label":"Klaus Detlef Sierck","version":18,"id":"46342","lastModified":"1301902351000","name":"Klaus Detlef Sierck","type":"Person","_key":"27072"} +{"label":"Maria Koppenh\u00f6fer","version":23,"id":"46343","lastModified":"1301902346000","name":"Maria Koppenh\u00f6fer","type":"Person","_key":"27073"} +{"label":"Walter Werner","version":20,"id":"46344","lastModified":"1301902346000","name":"Walter Werner","type":"Person","_key":"27074"} +{"label":"Margot Erbst","version":20,"id":"46345","lastModified":"1301902346000","name":"Margot Erbst","type":"Person","_key":"27075"} +{"label":"Razzia in St. Pauli","description":"No overview found.","id":"5888","runtime":74,"imdbId":"tt0023376","version":39,"lastModified":"1301908595000","studio":"Orbis-Produktion","genre":"Crime","title":"Razzia in St. Pauli","releaseDate":-1199232000000,"language":"en","type":"Movie","_key":"27076"} +{"label":"Werner Hochbaum","version":22,"id":"46367","lastModified":"1301901962000","name":"Werner Hochbaum","type":"Person","_key":"27077"} +{"label":"Gina Falckenberg","version":20,"id":"46371","lastModified":"1301902345000","name":"Gina Falckenberg","type":"Person","_key":"27078"} +{"label":"Charly Wittong","version":18,"id":"46372","lastModified":"1301902351000","name":"Charly Wittong","type":"Person","_key":"27079"} +{"label":"Azumi","description":"In war-torn Japan, the Tokugawa Shogun, desperate to restore peace to his people, orders the assassination of the hostile warlords. A beautiful young woman is raised from birth with nine other orphans, to become an assassin. Her name is AZUMI, the ultimate assassin.","id":"5889","runtime":123,"imdbId":"tt0384819","trailer":"http:\/\/www.youtube.com\/watch?v=ijSAe9u8Yvg","version":137,"lastModified":"1301903900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b6\/4c06097f017a3c35190003b6\/5889-mid.jpg","studio":"Amuse Pictures","genre":"Action","title":"Azumi","releaseDate":1052524800000,"language":"en","type":"Movie","_key":"27080"} +{"label":"Aya Ueto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15e\/4c954ef17b9aa10d5800015e\/aya-ueto-profile.jpg","version":32,"id":"46363","lastModified":"1301901446000","name":"Aya Ueto","type":"Person","_key":"27081"} +{"label":"Shun Oguri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24f\/4d905f2d7b9aa1675500324f\/shun-oguri-profile.jpg","version":42,"id":"46364","lastModified":"1301901351000","name":"Shun Oguri","type":"Person","_key":"27082"} +{"label":"Y\u00fbma Ishigaki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19d\/4d905d9c7b9aa1676100319d\/y-ma-ishigaki-profile.jpg","version":24,"id":"46365","lastModified":"1301901322000","name":"Y\u00fbma Ishigaki","type":"Person","_key":"27083"} +{"label":"Azumi 2: Death or Love","description":"Young assassins Azumi and Nagara continue their mission to prevent a civil war. In their hunt for Masayuki Sanada, who is protected by both an army and a dangerous clan, they meet Ginkaku, a person who shows a remarking resemblance with former friend Nachi.","id":"5890","runtime":112,"imdbId":"tt0431641","homepage":"http:\/\/web.archive.org\/web\/20080210100832\/http:\/\/www.azumi2.jp\/index.html","version":178,"lastModified":"1301903070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d7\/4bc91d27017a3c57fe00b5d7\/2-death-or-love-mid.jpg","genre":"Action","title":"Azumi 2: Death or Love","releaseDate":1110585600000,"language":"en","type":"Movie","_key":"27084"} +{"label":"Shusuke Kaneko","version":32,"id":"46366","lastModified":"1301901562000","name":"Shusuke Kaneko","type":"Person","_key":"27085"} +{"label":"M\u00e4dchenjagd in St. Pauli","description":"No overview found.","id":"5891","runtime":86,"imdbId":"tt0402387","version":36,"lastModified":"1301908595000","studio":"ABC Pictures","genre":"Crime","title":"M\u00e4dchenjagd in St. Pauli","releaseDate":-108172800000,"language":"en","type":"Movie","_key":"27086"} +{"label":"G\u00fcnter Schlesinger","version":24,"id":"46373","lastModified":"1301901962000","name":"G\u00fcnter Schlesinger","type":"Person","_key":"27087"} +{"label":"Margot Hildenbrand","version":18,"id":"46376","lastModified":"1301901981000","name":"Margot Hildenbrand","type":"Person","_key":"27088"} +{"label":"Tom Riedel","version":21,"id":"46377","lastModified":"1301902346000","name":"Tom Riedel","type":"Person","_key":"27089"} +{"label":"Dagmar Schneider","version":20,"id":"46378","lastModified":"1301902346000","name":"Dagmar Schneider","type":"Person","_key":"27090"} +{"label":"Livka Werner","version":20,"id":"46379","lastModified":"1301902346000","name":"Livka Werner","type":"Person","_key":"27091"} +{"label":"Peter Wienecke","version":20,"id":"46380","lastModified":"1301902157000","name":"Peter Wienecke","type":"Person","_key":"27092"} +{"label":"Kokain - Das Tagebuch der Inga L.","description":"No overview found.","id":"5892","runtime":79,"imdbId":"tt0364464","version":43,"lastModified":"1301907417000","genre":"Crime","title":"Kokain - Das Tagebuch der Inga L.","releaseDate":505612800000,"language":"en","type":"Movie","_key":"27093"} +{"label":"Rubin Sharon","version":20,"id":"46381","lastModified":"1301901813000","name":"Rubin Sharon","type":"Person","_key":"27094"} +{"label":"Renee Zalusky","version":20,"id":"46384","lastModified":"1301901566000","name":"Renee Zalusky","type":"Person","_key":"27095"} +{"label":"Marina Braun-Goedelt","version":18,"id":"46385","lastModified":"1301901981000","name":"Marina Braun-Goedelt","type":"Person","_key":"27096"} +{"label":"Hans-J\u00fcrgen Wolf","version":20,"id":"46386","lastModified":"1301901788000","name":"Hans-J\u00fcrgen Wolf","type":"Person","_key":"27097"} +{"label":"Bela Hoche","version":20,"id":"46387","lastModified":"1301902346000","name":"Bela Hoche","type":"Person","_key":"27098"} +{"label":"Toyo Tanaka","version":20,"id":"46388","lastModified":"1301901962000","name":"Toyo Tanaka","type":"Person","_key":"27099"} +{"label":"Charlotte Bremer-Wolff","version":20,"id":"46389","lastModified":"1301901962000","name":"Charlotte Bremer-Wolff","type":"Person","_key":"27100"} +{"label":"Heike Schroetter","version":20,"id":"46390","lastModified":"1301901962000","name":"Heike Schroetter","type":"Person","_key":"27101"} +{"label":"Heiligabend auf St. Pauli","description":"No overview found.","id":"5893","runtime":51,"imdbId":"tt0366561","version":44,"lastModified":"1301907418000","studio":"Norddeutscher Rundfunk","genre":"Documentary","title":"Heiligabend auf St. Pauli","releaseDate":-32572800000,"language":"en","type":"Movie","_key":"27102"} +{"label":"Klaus Wildenhahn","version":23,"id":"46479","lastModified":"1301901962000","name":"Klaus Wildenhahn","type":"Person","_key":"27103"} +{"label":"Ille die Wirtin","version":16,"id":"46484","lastModified":"1301902157000","name":"Ille die Wirtin","type":"Person","_key":"27104"} +{"label":"G\u00fcnter der Wirt","version":16,"id":"46485","lastModified":"1301902346000","name":"G\u00fcnter der Wirt","type":"Person","_key":"27105"} +{"label":"Anna die Nutte","version":16,"id":"46486","lastModified":"1301902346000","name":"Anna die Nutte","type":"Person","_key":"27106"} +{"label":"Jutta das M\u00e4dchen","version":16,"id":"46487","lastModified":"1301901962000","name":"Jutta das M\u00e4dchen","type":"Person","_key":"27107"} +{"label":"Peter der Seemann","version":16,"id":"46488","lastModified":"1301902157000","name":"Peter der Seemann","type":"Person","_key":"27108"} +{"label":"Bernie der Seemann","version":16,"id":"46489","lastModified":"1301902157000","name":"Bernie der Seemann","type":"Person","_key":"27109"} +{"label":"Horst der Seemann","version":16,"id":"46490","lastModified":"1301902157000","name":"Horst der Seemann","type":"Person","_key":"27110"} +{"label":"Gunthram der Seemann","version":16,"id":"46491","lastModified":"1301902157000","name":"Gunthram der Seemann","type":"Person","_key":"27111"} +{"label":"Tigerhans","version":16,"id":"46492","lastModified":"1301902157000","name":"Tigerhans","type":"Person","_key":"27112"} +{"label":"Blue in the Face","description":"Augie runs a small tobacco shop in Brooklyn, New York. The whole neighborhood comes to visit him to buy cigarettes and have some small talk. During the movie Lou Reed tries to explain why he has to have a cut on his health insurance bill if he keeps smoking and Madonna acts as a Singing Telegram.","id":"5894","runtime":83,"imdbId":"tt0112541","version":132,"lastModified":"1301903629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/262\/4cd2bbcc5e73d65020001262\/blue-in-the-face-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Blue in the Face","releaseDate":811123200000,"language":"en","type":"Movie","_key":"27113"} +{"label":"Paul Auster","version":31,"id":"46391","lastModified":"1301902150000","name":"Paul Auster","type":"Person","_key":"27114"} +{"label":"Lou Reed","version":29,"id":"46392","lastModified":"1301901570000","name":"Lou Reed","type":"Person","_key":"27115"} +{"label":"Roseanne","version":30,"id":"46393","lastModified":"1301901558000","name":"Roseanne","type":"Person","_key":"27116"} +{"label":"Mel Gorham","version":24,"id":"46394","lastModified":"1301901616000","name":"Mel Gorham","type":"Person","_key":"27117"} +{"label":"Stephen Gevedon","version":27,"id":"46395","lastModified":"1301901954000","name":"Stephen Gevedon","type":"Person","_key":"27118"} +{"label":"Sharif Rashed","version":22,"id":"46396","lastModified":"1301901773000","name":"Sharif Rashed","type":"Person","_key":"27119"} +{"label":"Peggy Gormley","version":21,"id":"46397","lastModified":"1301902104000","name":"Peggy Gormley","type":"Person","_key":"27120"} +{"label":"Bolero","description":"The movie follows the tale of a young woman's sexual awakening and subsequent journey around the world in pursuit of her ideal lover.","id":"5896","runtime":105,"imdbId":"tt0086987","version":97,"lastModified":"1301907309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4cacced05e73d64ffb000038\/bolero-mid.jpg","studio":"Golan-Globus","genre":"Drama","title":"Bolero","releaseDate":462758400000,"language":"en","tagline":"An adventure in ecstasy.","type":"Movie","_key":"27121"} +{"label":"John Derek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4c49c0467b9aa11600000089\/john-derek-profile.jpg","version":42,"id":"39608","lastModified":"1301901539000","name":"John Derek","type":"Person","_key":"27122"} +{"label":"Andrea Occhipinti","version":33,"id":"31011","lastModified":"1301901448000","name":"Andrea Occhipinti","type":"Person","_key":"27123"} +{"label":"Ana Obreg\u00f3n","version":22,"id":"46422","lastModified":"1301901981000","name":"Ana Obreg\u00f3n","type":"Person","_key":"27124"} +{"label":"Olivia d'Abo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19e\/4d95d82a5e73d6224800319e\/olivia-d-abo-profile.jpg","version":48,"id":"46423","lastModified":"1301901497000","name":"Olivia d'Abo","type":"Person","_key":"27125"} +{"label":"Greg Bensen","version":22,"id":"46424","lastModified":"1301902183000","name":"Greg Bensen","type":"Person","_key":"27126"} +{"label":"Ian Cochrane","version":22,"id":"46425","lastModified":"1301902183000","name":"Ian Cochrane","type":"Person","_key":"27127"} +{"label":"Mirta Miller","version":26,"id":"46426","lastModified":"1301902187000","name":"Mirta Miller","type":"Person","_key":"27128"} +{"label":"Mickey Knox","version":35,"id":"46418","lastModified":"1301901569000","name":"Mickey Knox","type":"Person","_key":"27129"} +{"label":"Paul Stacey","version":23,"id":"46427","lastModified":"1301902157000","name":"Paul Stacey","type":"Person","_key":"27130"} +{"label":"James Stacey","version":22,"id":"46428","lastModified":"1301902129000","name":"James Stacey","type":"Person","_key":"27131"} +{"label":"The Boy Who Saw the Iceberg","description":"A short animation about a boy who sees an iceberg coming. Will he be in time to warn the captain?","id":"5897","runtime":9,"imdbId":"tt0258465","version":59,"lastModified":"1301907432000","studio":"National Film Board of Canada","genre":"Animation","title":"The Boy Who Saw the Iceberg","releaseDate":946684800000,"language":"en","type":"Movie","_key":"27132"} +{"label":"Brain Dead","description":"No overview found.","id":"5898","runtime":85,"imdbId":"tt0099173","version":120,"lastModified":"1301905338000","studio":"New Horizons","genre":"Action","title":"Brain Dead","releaseDate":632707200000,"language":"en","type":"Movie","_key":"27133"} +{"label":"Adam Simon","version":30,"id":"46442","lastModified":"1301901841000","name":"Adam Simon","type":"Person","_key":"27134"} +{"label":"Brian Brophy","version":22,"id":"48587","lastModified":"1301902157000","name":"Brian Brophy","type":"Person","_key":"27135"} +{"label":"De Noorderlingen","description":"Life in a new neighborhood can't be stranger than in this movie. ","id":"5899","runtime":108,"imdbId":"tt0105019","version":71,"lastModified":"1301903358000","studio":"First Floor Features","genre":"Comedy","title":"De Noorderlingen","releaseDate":703468800000,"language":"en","type":"Movie","_key":"27136"} +{"label":"Rudolf Lucieer","version":20,"id":"46450","lastModified":"1301902104000","name":"Rudolf Lucieer","type":"Person","_key":"27137"} +{"label":"Loes Wouterson","version":22,"id":"46451","lastModified":"1301902008000","name":"Loes Wouterson","type":"Person","_key":"27138"} +{"label":"Leonard Lucieer","version":20,"id":"46452","lastModified":"1301901816000","name":"Leonard Lucieer","type":"Person","_key":"27139"} +{"label":"Veerle Dobbelaere","version":20,"id":"46453","lastModified":"1301902140000","name":"Veerle Dobbelaere","type":"Person","_key":"27140"} +{"label":"Dary Some","version":19,"id":"46454","lastModified":"1301902104000","name":"Dary Some","type":"Person","_key":"27141"} +{"label":"Jacques Commandeur","version":18,"id":"46455","lastModified":"1301902167000","name":"Jacques Commandeur","type":"Person","_key":"27142"} +{"label":"De jurk","description":"No overview found.","id":"5900","runtime":103,"imdbId":"tt0116729","version":80,"lastModified":"1300978434000","studio":"Graniet Film BV","genre":"Comedy","title":"De jurk","releaseDate":827366400000,"language":"en","type":"Movie","_key":"27143"} +{"label":"Ingeborg Elzevier","version":19,"id":"46456","lastModified":"1301902289000","name":"Ingeborg Elzevier","type":"Person","_key":"27144"} +{"label":"Khaldoun Elmecky","version":18,"id":"46457","lastModified":"1301902167000","name":"Khaldoun Elmecky","type":"Person","_key":"27145"} +{"label":"Margo Dames","version":19,"id":"46458","lastModified":"1301902104000","name":"Margo Dames","type":"Person","_key":"27146"} +{"label":"Frans Vorstman","version":19,"id":"46459","lastModified":"1301902289000","name":"Frans Vorstman","type":"Person","_key":"27147"} +{"label":"Peter Blok","version":21,"id":"46460","lastModified":"1301902323000","name":"Peter Blok","type":"Person","_key":"27148"} +{"label":"Jacob Derwig","version":25,"id":"46461","lastModified":"1301902234000","name":"Jacob Derwig","type":"Person","_key":"27149"} +{"label":"Maike Meijer","version":19,"id":"46462","lastModified":"1301902289000","name":"Maike Meijer","type":"Person","_key":"27150"} +{"label":"Carol van Herwijnen","version":25,"id":"46463","lastModified":"1301902146000","name":"Carol van Herwijnen","type":"Person","_key":"27151"} +{"label":"Elizabeth Hoytink","version":18,"id":"46464","lastModified":"1301902351000","name":"Elizabeth Hoytink","type":"Person","_key":"27152"} +{"label":"Kees Hulst","version":21,"id":"46465","lastModified":"1301902140000","name":"Kees Hulst","type":"Person","_key":"27153"} +{"label":"Pieter Verhoeff","version":23,"id":"46466","lastModified":"1301902104000","name":"Pieter Verhoeff","type":"Person","_key":"27154"} +{"label":"Jack Vecht","version":19,"id":"46467","lastModified":"1301902289000","name":"Jack Vecht","type":"Person","_key":"27155"} +{"label":"Ricky Koole","version":22,"id":"46468","lastModified":"1301901891000","name":"Ricky Koole","type":"Person","_key":"27156"} +{"label":"Bert Bunschoten","version":19,"id":"46469","lastModified":"1301902289000","name":"Bert Bunschoten","type":"Person","_key":"27157"} +{"label":"Le secret","description":"No overview found.","id":"5901","runtime":102,"imdbId":"tt0072131","version":84,"lastModified":"1301904476000","studio":"Pr\u00e9sident Films","genre":"Drama","title":"Le secret","releaseDate":150508800000,"language":"en","type":"Movie","_key":"27158"} +{"label":"Solange Pradel","version":22,"id":"46472","lastModified":"1301901566000","name":"Solange Pradel","type":"Person","_key":"27159"} +{"label":"Fr\u00e9d\u00e9ric Santaya","version":20,"id":"46473","lastModified":"1301901656000","name":"Fr\u00e9d\u00e9ric Santaya","type":"Person","_key":"27160"} +{"label":"Jean-Claude Fal","version":20,"id":"46474","lastModified":"1301901656000","name":"Jean-Claude Fal","type":"Person","_key":"27161"} +{"label":"Patrice Melennec","version":20,"id":"46475","lastModified":"1301901656000","name":"Patrice Melennec","type":"Person","_key":"27162"} +{"label":"Pierre Danny","version":20,"id":"46476","lastModified":"1301901656000","name":"Pierre Danny","type":"Person","_key":"27163"} +{"label":"A Bridge Too Far","description":"Tells the story of operation Market Garden. A failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.","id":"5902","runtime":175,"imdbId":"tt0075784","trailer":"http:\/\/www.youtube.com\/watch?v=b2mHE1Tnnzo","version":174,"lastModified":"1301902590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4c200e917b9aa131230000d2\/a-bridge-too-far-mid.jpg","studio":"Joseph E. Levine Productions","genre":"Action","title":"A Bridge Too Far","releaseDate":235180800000,"language":"en","type":"Movie","_key":"27164"} +{"label":"Das Geheimnis von St. Pauli","description":"No overview found.","id":"5904","runtime":0,"imdbId":"tt0475962","version":40,"lastModified":"1301908595000","studio":"Internationale Film AG","genre":"Crime","title":"Das Geheimnis von St. Pauli","releaseDate":-1388534400000,"language":"en","type":"Movie","_key":"27165"} +{"label":"Rolf Randolf","version":20,"id":"46493","lastModified":"1301902345000","name":"Rolf Randolf","type":"Person","_key":"27166"} +{"label":"Maria Matray","version":20,"id":"46497","lastModified":"1301902345000","name":"Maria Matray","type":"Person","_key":"27167"} +{"label":"Hanni Weisse","version":20,"id":"46498","lastModified":"1301902345000","name":"Hanni Weisse","type":"Person","_key":"27168"} +{"label":"Ernst R\u00fcckert","version":20,"id":"46499","lastModified":"1301902345000","name":"Ernst R\u00fcckert","type":"Person","_key":"27169"} +{"label":"Carl de Vogt","version":20,"id":"46500","lastModified":"1301902157000","name":"Carl de Vogt","type":"Person","_key":"27170"} +{"label":"Hertha von Walther","version":20,"id":"46501","lastModified":"1301901962000","name":"Hertha von Walther","type":"Person","_key":"27171"} +{"label":"Die fidelen Detektive","description":"No overview found.","id":"5905","runtime":99,"imdbId":"tt0050392","version":52,"lastModified":"1301908595000","studio":"K\u00f6nig Film","genre":"Comedy","title":"Die fidelen Detektive","releaseDate":-385171200000,"language":"en","type":"Movie","_key":"27172"} +{"label":"Hermann Kugelstadt","version":21,"id":"46502","lastModified":"1301901962000","name":"Hermann Kugelstadt","type":"Person","_key":"27173"} +{"label":"Joe St\u00f6ckel","version":29,"id":"46508","lastModified":"1301901497000","name":"Joe St\u00f6ckel","type":"Person","_key":"27174"} +{"label":"Lucie Englisch","version":24,"id":"46509","lastModified":"1301901403000","name":"Lucie Englisch","type":"Person","_key":"27175"} +{"label":"Ethel Reschke","version":18,"id":"46510","lastModified":"1301902351000","name":"Ethel Reschke","type":"Person","_key":"27176"} +{"label":"Vera H\u00f6sch","version":20,"id":"46511","lastModified":"1301901998000","name":"Vera H\u00f6sch","type":"Person","_key":"27177"} +{"label":"Peter Schwerdt","version":20,"id":"46512","lastModified":"1301902187000","name":"Peter Schwerdt","type":"Person","_key":"27178"} +{"label":"Wolfried Lier","version":20,"id":"46513","lastModified":"1301902187000","name":"Wolfried Lier","type":"Person","_key":"27179"} +{"label":"Ruth Lommel","version":21,"id":"46514","lastModified":"1301901998000","name":"Ruth Lommel","type":"Person","_key":"27180"} +{"label":"Viktor Afritsch","version":20,"id":"46515","lastModified":"1301902183000","name":"Viktor Afritsch","type":"Person","_key":"27181"} +{"label":"Rolf von Nauckhoff","version":20,"id":"46516","lastModified":"1301901962000","name":"Rolf von Nauckhoff","type":"Person","_key":"27182"} +{"label":"Beppo Schwaiger","version":21,"id":"46517","lastModified":"1301902157000","name":"Beppo Schwaiger","type":"Person","_key":"27183"} +{"label":"Die Carmen von St. Pauli","description":"No overview found.","id":"5906","runtime":114,"imdbId":"tt0439141","version":47,"lastModified":"1301419516000","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"Die Carmen von St. Pauli","releaseDate":-1301011200000,"language":"en","type":"Movie","_key":"27184"} +{"label":"Erich Waschneck","version":22,"id":"46518","lastModified":"1301902157000","name":"Erich Waschneck","type":"Person","_key":"27185"} +{"label":"Jenny Jugo","version":20,"id":"46522","lastModified":"1301901998000","name":"Jenny Jugo","type":"Person","_key":"27186"} +{"label":"Tonio Gennaro","version":20,"id":"46523","lastModified":"1301902346000","name":"Tonio Gennaro","type":"Person","_key":"27187"} +{"label":"Otto Kronburger","version":20,"id":"46524","lastModified":"1301901788000","name":"Otto Kronburger","type":"Person","_key":"27188"} +{"label":"Walter Seiler","version":20,"id":"46525","lastModified":"1301901962000","name":"Walter Seiler","type":"Person","_key":"27189"} +{"label":"Charly Berger","version":20,"id":"46526","lastModified":"1301902346000","name":"Charly Berger","type":"Person","_key":"27190"} +{"label":"Betty Astor","version":20,"id":"46527","lastModified":"1301901962000","name":"Betty Astor","type":"Person","_key":"27191"} +{"label":"Friedrich Benfer","version":18,"id":"46528","lastModified":"1301902000000","name":"Friedrich Benfer","type":"Person","_key":"27192"} +{"label":"Alfred Zeisler","version":28,"id":"46520","lastModified":"1301901352000","name":"Alfred Zeisler","type":"Person","_key":"27193"} +{"label":"The Ice Storm","description":"1973, suburban Connecticut: middle class families experimenting with casual sex, drink, etc., find their lives out of control.","id":"5908","runtime":112,"imdbId":"tt0119349","trailer":"http:\/\/www.youtube.com\/watch?v=-t2zWobwh0U","version":465,"lastModified":"1301904284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c1\/4d0f63bf7b9aa102540034c1\/the-ice-storm-mid.jpg","studio":"Canal Droits Audiovisuels","genre":"Comedy","title":"The Ice Storm","releaseDate":863395200000,"language":"en","type":"Movie","_key":"27194"} +{"label":"Adam Hann-Byrd","version":29,"id":"46530","lastModified":"1302063751000","name":"Adam Hann-Byrd","type":"Person","_key":"27195"} +{"label":"St. Pauli Report","description":"No overview found.","id":"5909","runtime":92,"imdbId":"tt0069306","version":56,"lastModified":"1301908334000","studio":"Rapid-Film","genre":"Comedy","title":"St. Pauli Report","releaseDate":59961600000,"language":"en","type":"Movie","_key":"27196"} +{"label":"Walter Boos","version":23,"id":"46533","lastModified":"1301902163000","name":"Walter Boos","type":"Person","_key":"27197"} +{"label":"Rena Bergen","version":19,"id":"46536","lastModified":"1301902104000","name":"Rena Bergen","type":"Person","_key":"27198"} +{"label":"Rene Durand","version":22,"id":"46537","lastModified":"1301902346000","name":"Rene Durand","type":"Person","_key":"27199"} +{"label":"Eva Gelb","version":20,"id":"46538","lastModified":"1301902373000","name":"Eva Gelb","type":"Person","_key":"27200"} +{"label":"Edgar Hoppe","version":19,"id":"25487","lastModified":"1301901734000","name":"Edgar Hoppe","type":"Person","_key":"27201"} +{"label":"Uschi Karnat","version":19,"id":"46539","lastModified":"1301902289000","name":"Uschi Karnat","type":"Person","_key":"27202"} +{"label":"Michael Korrontay","version":21,"id":"46540","lastModified":"1301901656000","name":"Michael Korrontay","type":"Person","_key":"27203"} +{"label":"Ulli Kinalzik","version":20,"id":"46541","lastModified":"1301902289000","name":"Ulli Kinalzik","type":"Person","_key":"27204"} +{"label":"Renate Schubert","version":19,"id":"46542","lastModified":"1301902104000","name":"Renate Schubert","type":"Person","_key":"27205"} +{"label":"Fireworks","description":"Kitano plays Nishi, a violent and unpredictable police detective who quits the force after a terrible incident that results in his partner, Horibe (Ren Osugi), becoming confined to a wheelchair. After his retirement he spends much of his time looking after his wife Miyuki (Kayoko Kishimoto), who has leukemia. The film moves at a deliberate pace and devotes much time to exploring their relationship. Nishi has also borrowed money from the Yakuza to pay for his wife's needs, and is having difficult","id":"5910","runtime":103,"imdbId":"tt0119250","version":157,"lastModified":"1301902928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62a\/4bc91d35017a3c57fe00b62a\/5910-mid.jpg","studio":"Bandai Visual Company (JAPAN)","genre":"Crime","title":"Fireworks","releaseDate":873244800000,"language":"en","type":"Movie","_key":"27206"} +{"label":"Hakuryu","version":27,"id":"46582","lastModified":"1301901838000","name":"Hakuryu","type":"Person","_key":"27207"} +{"label":"Taro Istumi","version":25,"id":"46583","lastModified":"1301901838000","name":"Taro Istumi","type":"Person","_key":"27208"} +{"label":"Makoto Ashikawa","version":29,"id":"20341","lastModified":"1301901505000","name":"Makoto Ashikawa","type":"Person","_key":"27209"} +{"label":"Zwischen Schanghai und St. Pauli","description":"No overview found.","id":"5911","runtime":86,"imdbId":"tt0056728","version":46,"lastModified":"1301907280000","studio":"Rapid-Film","genre":"Crime","title":"Zwischen Schanghai und St. Pauli","releaseDate":-228528000000,"language":"en","type":"Movie","_key":"27210"} +{"label":"Roberto Bianchi Montero","version":21,"id":"46543","lastModified":"1301902317000","name":"Roberto Bianchi Montero","type":"Person","_key":"27211"} +{"label":"Wolfgang Schleif","version":31,"id":"46544","lastModified":"1301901701000","name":"Wolfgang Schleif","type":"Person","_key":"27212"} +{"label":"Carlo Giustini","version":21,"id":"46545","lastModified":"1301901734000","name":"Carlo Giustini","type":"Person","_key":"27213"} +{"label":"Ugo Sasso","version":19,"id":"46546","lastModified":"1301901734000","name":"Ugo Sasso","type":"Person","_key":"27214"} +{"label":"Luisella Boni","version":21,"id":"46547","lastModified":"1301901961000","name":"Luisella Boni","type":"Person","_key":"27215"} +{"label":"Carmela Corren","version":17,"id":"46548","lastModified":"1301902289000","name":"Carmela Corren","type":"Person","_key":"27216"} +{"label":"Mario del Marius","version":19,"id":"46549","lastModified":"1301901891000","name":"Mario del Marius","type":"Person","_key":"27217"} +{"label":"Dorothee Parker","version":17,"id":"114438","lastModified":"1301902476000","name":"Dorothee Parker","type":"Person","_key":"27218"} +{"label":"Zwei Bayern in St. Pauli","description":"No overview found.","id":"5912","runtime":95,"imdbId":"tt0049983","version":63,"lastModified":"1301906668000","studio":"K\u00f6nig Film","genre":"Comedy","title":"Zwei Bayern in St. Pauli","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"27219"} +{"label":"Franz Muxeneder","version":26,"id":"46557","lastModified":"1301902174000","name":"Franz Muxeneder","type":"Person","_key":"27220"} +{"label":"Gaby Fehling","version":23,"id":"46559","lastModified":"1301902127000","name":"Gaby Fehling","type":"Person","_key":"27221"} +{"label":"Knut Ihne","version":19,"id":"46560","lastModified":"1301902304000","name":"Knut Ihne","type":"Person","_key":"27222"} +{"label":"Petra Unkel","version":20,"id":"46562","lastModified":"1301901934000","name":"Petra Unkel","type":"Person","_key":"27223"} +{"label":"Rudolf Carl","version":22,"id":"46563","lastModified":"1301902127000","name":"Rudolf Carl","type":"Person","_key":"27224"} +{"label":"Jean Pierre Faye","version":19,"id":"46564","lastModified":"1301902351000","name":"Jean Pierre Faye","type":"Person","_key":"27225"} +{"label":"Unter den D\u00e4chern von St. Pauli","description":"No overview found.","id":"5913","runtime":88,"imdbId":"tt0141939","version":62,"lastModified":"1301907280000","genre":"Crime","title":"Unter den D\u00e4chern von St. Pauli","releaseDate":38102400000,"language":"en","type":"Movie","_key":"27226"} +{"label":"Janie Murray","version":19,"id":"46569","lastModified":"1301902289000","name":"Janie Murray","type":"Person","_key":"27227"} +{"label":"Alfred Schieske","version":19,"id":"46570","lastModified":"1301902289000","name":"Alfred Schieske","type":"Person","_key":"27228"} +{"label":"Ralf Schermuly","version":20,"id":"46571","lastModified":"1301902289000","name":"Ralf Schermuly","type":"Person","_key":"27229"} +{"label":"Kathrin Ackermann","version":22,"id":"46572","lastModified":"1301901565000","name":"Kathrin Ackermann","type":"Person","_key":"27230"} +{"label":"Manfred Seipold","version":19,"id":"26331","lastModified":"1301902104000","name":"Manfred Seipold","type":"Person","_key":"27231"} +{"label":"Inger Zielke","version":19,"id":"46573","lastModified":"1301902289000","name":"Inger Zielke","type":"Person","_key":"27232"} +{"label":"Bernd Redecker","version":19,"id":"46574","lastModified":"1301901891000","name":"Bernd Redecker","type":"Person","_key":"27233"} +{"label":"Helge Grau","version":19,"id":"46575","lastModified":"1301902289000","name":"Helge Grau","type":"Person","_key":"27234"} +{"label":"Lova Moor","version":19,"id":"46576","lastModified":"1301902289000","name":"Lova Moor","type":"Person","_key":"27235"} +{"label":"Alena Penz","version":21,"id":"46577","lastModified":"1301901891000","name":"Alena Penz","type":"Person","_key":"27236"} +{"label":"Karin B\u00fcchel","version":20,"id":"46578","lastModified":"1301902183000","name":"Karin B\u00fcchel","type":"Person","_key":"27237"} +{"label":"Rolf Mamero","version":19,"id":"46579","lastModified":"1301902289000","name":"Rolf Mamero","type":"Person","_key":"27238"} +{"label":"Das Stundenhotel von St. Pauli","description":"No overview found.","id":"5914","runtime":95,"imdbId":"tt0066419","version":50,"lastModified":"1301908334000","studio":"Parnass-Film","genre":"Crime","title":"Das Stundenhotel von St. Pauli","releaseDate":52704000000,"language":"en","type":"Movie","_key":"27239"} +{"label":"Gine Magnol","version":18,"id":"46584","lastModified":"1301902351000","name":"Gine Magnol","type":"Person","_key":"27240"} +{"label":"Thomas Fischer","version":19,"id":"36773","lastModified":"1301901734000","name":"Thomas Fischer","type":"Person","_key":"27241"} +{"label":"Manfred Spies","version":18,"id":"46585","lastModified":"1301902351000","name":"Manfred Spies","type":"Person","_key":"27242"} +{"label":"Manfred T\u00fcmmler","version":19,"id":"46586","lastModified":"1301902289000","name":"Manfred T\u00fcmmler","type":"Person","_key":"27243"} +{"label":"Paul Albert Krumm","version":22,"id":"23482","lastModified":"1301901734000","name":"Paul Albert Krumm","type":"Person","_key":"27244"} +{"label":"Into the Wild","description":"Based on a true story. After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness. Along the way, Christopher encounters a series of characters who shape his life.","id":"5915","runtime":148,"imdbId":"tt0758758","trailer":"http:\/\/www.youtube.com\/watch?v=taFaFEuwHLQ","homepage":"http:\/\/www.intothewild.com\/","version":311,"lastModified":"1302059807000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/066\/4d101bad7b9aa11488000066\/into-the-wild-mid.jpg","studio":"River Road Entertainment","genre":"Action","title":"Into the Wild","releaseDate":1188604800000,"language":"en","tagline":"Your great adventure on Alaska.","type":"Movie","_key":"27245"} +{"label":"Emile Hirsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/744\/4d2c9c407b9aa11a6a000744\/emile-hirsch-profile.jpg","biography":"Hirsch begann seine Schauspielkarriere in den sp\u00e4ten 1990er-Jahren, als er in mehreren Fernseh-Produktionen, wie Sabrina \u2013 total verhext!, New York Cops \u2013 NYPD Blue und Emergency Room \u2013 Die Notaufnahme mitwirkte. Einem gr\u00f6\u00dferen Publikum wurde er mit seinen Rollen in den Filmen Club der C\u00e4saren (2002), Lost Heaven (2002) und The Girl Next Door (2004) bekannt.\n\n2005 \u00fcbernahm Hirsch in Lords of Dogtown die Rolle des Profi-Skateboarders und ehemaligen Mitglieds des Zephyr Teams, Jay Adams.\n\nAu\u00dferdem","version":70,"birthday":"479516400000","id":"46593","birthplace":"Topanga Canyon, Kalifornien","lastModified":"1302063844000","name":"Emile Hirsch","type":"Person","_key":"27246"} +{"label":"Brian H. Dierker","version":21,"id":"46594","lastModified":"1302063844000","name":"Brian H. Dierker","type":"Person","_key":"27247"} +{"label":"Signe Egholm Olsen","version":23,"id":"46595","lastModified":"1302063844000","name":"Signe Egholm Olsen","type":"Person","_key":"27248"} +{"label":"Cheryl Francis Harrington","version":22,"id":"46596","lastModified":"1302063844000","name":"Cheryl Francis Harrington","type":"Person","_key":"27249"} +{"label":"The Getaway","description":"A recently released ex-con and his loyal wife go on the run after a heist goes awry.","id":"5916","runtime":118,"imdbId":"tt0068638","trailer":"http:\/\/www.youtube.com\/watch?v=9FhkOy1inT8","version":388,"lastModified":"1301903897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/691\/4bc91d44017a3c57fe00b691\/the-getaway-mid.jpg","studio":"David Foster Productions","genre":"Action","title":"The Getaway","releaseDate":93052800000,"language":"en","type":"Movie","_key":"27250"} +{"label":"Ali MacGraw","version":27,"id":"46597","lastModified":"1301901451000","name":"Ali MacGraw","type":"Person","_key":"27251"} +{"label":"Sally Struthers","version":25,"id":"49352","lastModified":"1301902104000","name":"Sally Struthers","type":"Person","_key":"27252"} +{"label":"Jack Dodson","version":23,"id":"49353","lastModified":"1301902336000","name":"Jack Dodson","type":"Person","_key":"27253"} +{"label":"Tom Horn","description":"A renowned former army scout is hired by ranchers to hunt down rustlers but finds himself on trial for the murder of a boy when he carries out his job too well. Tom Horn finds that the simple skills he knows are of no help in dealing with the ambitions of ranchers and corrupt officials as progress marches over him and the old west. ","id":"5917","runtime":94,"imdbId":"tt0080031","trailer":"http:\/\/www.youtube.com\/watch?v=5RBx4IVwFlY","version":150,"lastModified":"1301904051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9c\/4d693ab45e73d66b23000c9c\/tom-horn-mid.jpg","studio":"Solar Productions","genre":"Action","title":"Tom Horn","releaseDate":323049600000,"language":"en","type":"Movie","_key":"27254"} +{"label":"William Wiard","version":22,"id":"46603","lastModified":"1301901962000","name":"William Wiard","type":"Person","_key":"27255"} +{"label":"The Towering Inferno","description":"At the opening party of a collosal, but poorly constructed, office building, a massive fire breaks out that threatens to destroy the tower and everyone in it.","id":"5919","runtime":159,"imdbId":"tt0072308","trailer":"http:\/\/www.youtube.com\/watch?v=zsRnQQpklPM","version":209,"lastModified":"1301905090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a3\/4bc91d45017a3c57fe00b6a3\/the-towering-inferno-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Towering Inferno","releaseDate":156211200000,"language":"en","type":"Movie","_key":"27256"} +{"label":"Le Mans","description":"No overview found.","id":"5920","runtime":104,"imdbId":"tt0067334","trailer":"http:\/\/www.youtube.com\/watch?v=Y_1q9DidmQ4","version":236,"lastModified":"1301905123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c3\/4bc91d4b017a3c57fe00b6c3\/le-mans-mid.jpg","studio":"Solar Productions","genre":"Action","title":"Le Mans","releaseDate":46483200000,"language":"en","type":"Movie","_key":"27257"} +{"label":"Nevada Smith","description":"Nevada Smith is the young son of an Indian mother and white father. When his father is killed by three men over gold, Nevada sets out to find them and kill them. The boy is taken in by a gun merchant. The gun merchant shows him how to shoot and to shoot on time and correct.","id":"5921","runtime":125,"imdbId":"tt0060748","trailer":"http:\/\/www.youtube.com\/watch?v=rYNOw7iiZLE","version":111,"lastModified":"1301903821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/576\/4be17637017a3c35bf000576\/nevada-smith-mid.jpg","studio":"Solar Productions","genre":"Action","title":"Nevada Smith","releaseDate":-112406400000,"language":"en","tagline":"Some called him savage- and some called him saint... some felt his hate- and one found his love... and three had to die...","type":"Movie","_key":"27258"} +{"label":"The Hunter","description":"He's not as fast as he used to be ... That's makes him human. He's a bounty hunter... And that's what makes him dangerous. ","id":"5922","runtime":93,"imdbId":"tt0080907","trailer":"http:\/\/www.youtube.com\/watch?v=_Vixy5d8phA","version":108,"lastModified":"1301904149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c8\/4bc91d4b017a3c57fe00b6c8\/the-hunter-mid.jpg","studio":"Rastar Films","genre":"Action","title":"The Hunter","releaseDate":333936000000,"language":"en","type":"Movie","_key":"27259"} +{"label":"The Sand Pebbles","description":"Engineer Jake Holman arrives aboard the gunboat U.S.S. San Pablo, assigned to patrol a tributary of the Yangtze in the middle of exploited and revolution-torn 1926 China. His iconoclasm and cynical nature soon clash with the \"rice-bowl\" system which runs the ship and the uneasy symbiosis between Chinese and foreigner on the river. Hostility towards the gunboat's presence reaches a climax when the boat must crash through a river-boom and rescue missionaries upriver at China Light Mission.","id":"5923","runtime":175,"imdbId":"tt0060934","trailer":"http:\/\/www.youtube.com\/watch?v=RNr_tndGK_0","version":722,"lastModified":"1301906488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/444\/4c4403e25e73d60f37000444\/the-sand-pebbles-mid.jpg","genre":"Action","title":"The Sand Pebbles","releaseDate":-95731200000,"language":"en","type":"Movie","_key":"27260"} +{"label":"Papillon","description":"A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.","id":"5924","runtime":145,"imdbId":"tt0070511","trailer":"http:\/\/www.youtube.com\/watch?v=P6MPWDeG3y0","version":129,"lastModified":"1301902228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4bc91d4d017a3c57fe00b6eb\/papillon-mid.jpg","studio":"Allied Artists","genre":"Action","title":"Papillon","releaseDate":124848000000,"language":"en","type":"Movie","_key":"27261"} +{"label":"Robert Deman","version":21,"id":"49356","lastModified":"1301901516000","name":"Robert Deman","type":"Person","_key":"27262"} +{"label":"Bill Mumy","version":29,"id":"49357","lastModified":"1301901846000","name":"Bill Mumy","type":"Person","_key":"27263"} +{"label":"The Great Escape","description":"The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocates them to a high-security \"escape-proof\" camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.","id":"5925","runtime":172,"imdbId":"tt0057115","trailer":"http:\/\/www.youtube.com\/watch?v=qCgQ3EHBEy0","version":195,"lastModified":"1301901692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e3\/4d6929197b9aa136360013e3\/the-great-escape-mid.jpg","studio":"The Mirisch Corporation","genre":"Action","title":"The Great Escape","releaseDate":-205027200000,"language":"en","tagline":"Put a fence in front of these men...and they'll climb it...","type":"Movie","_key":"27264"} +{"label":"John Leyton","version":23,"id":"93125","lastModified":"1301903042000","name":"John Leyton","type":"Person","_key":"27265"} +{"label":"Angus Lennie","version":21,"id":"78942","lastModified":"1301902030000","name":"Angus Lennie","type":"Person","_key":"27266"} +{"label":"Jud Taylor","version":21,"id":"117865","lastModified":"1301903063000","name":"Jud Taylor","type":"Person","_key":"27267"} +{"label":"Lawrence Montaigne","version":20,"id":"140145","lastModified":"1301902705000","name":"Lawrence Montaigne","type":"Person","_key":"27268"} +{"label":"Robert Desmond","version":19,"id":"140146","lastModified":"1301902641000","name":"Robert Desmond","type":"Person","_key":"27269"} +{"label":"Karl-Otto Alberty","version":32,"id":"78094","lastModified":"1301901854000","name":"Karl-Otto Alberty","type":"Person","_key":"27270"} +{"label":"The Great St. Louis Bank Robbery","description":"No overview found.","id":"5926","runtime":85,"imdbId":"tt0052862","version":304,"lastModified":"1301904269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4bc91d55017a3c57fe00b725\/the-great-st-louis-bank-robbery-mid.jpg","studio":"CBS Television","genre":"Crime","title":"The Great St. Louis Bank Robbery","releaseDate":-325382400000,"language":"en","type":"Movie","_key":"27271"} +{"label":"David Clarke","version":28,"id":"46612","lastModified":"1301995580000","name":"David Clarke","type":"Person","_key":"27272"} +{"label":"James Dukas","version":20,"id":"46613","lastModified":"1301902373000","name":"James Dukas","type":"Person","_key":"27273"} +{"label":"Charles Guggenheim","version":21,"id":"46614","lastModified":"1301902157000","name":"Charles Guggenheim","type":"Person","_key":"27274"} +{"label":"John Stix","version":20,"id":"46616","lastModified":"1301902187000","name":"John Stix","type":"Person","_key":"27275"} +{"label":"Junior Bonner","description":"McQueen is Junior Bonner, an aging rodeo champ who returns to his home town to participate in the annual rodeo. He finds his family estranged, does what he can to help, and then moves on...after some good rodeo riding and a few brawls.","id":"5927","runtime":100,"imdbId":"tt0068786","version":106,"lastModified":"1301905838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ad\/4c6bf8f27b9aa13ab60002ad\/junior-bonner-mid.jpg","studio":"ABC Pictures","genre":"Action","title":"Junior Bonner","releaseDate":81561600000,"language":"en","type":"Movie","_key":"27276"} +{"label":"Ida Lupino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/349\/4bd1f4fc017a3c63f5000349\/ida-lupino-profile.jpg","version":53,"id":"46617","lastModified":"1301901575000","name":"Ida Lupino","type":"Person","_key":"27277"} +{"label":"The Reivers","description":"No overview found.","id":"5928","runtime":106,"imdbId":"tt0064886","version":93,"lastModified":"1301906636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/442\/4d2b55aa5e73d626b0004442\/the-reivers-mid.jpg","studio":"Solar Productions","genre":"Action","title":"The Reivers","releaseDate":-604800000,"language":"en","type":"Movie","_key":"27278"} +{"label":"Mitch Vogel","version":20,"id":"49359","lastModified":"1301902384000","name":"Mitch Vogel","type":"Person","_key":"27279"} +{"label":"Koto","description":"No overview found.","id":"5929","runtime":141,"imdbId":"tt0756312","homepage":"http:\/\/www.tv-asahi.co.jp\/koto\/","version":79,"lastModified":"1301025578000","genre":"Drama","title":"Koto","releaseDate":1107561600000,"language":"en","type":"Movie","_key":"27280"} +{"label":"Isao Natsuyagi","version":27,"id":"46622","lastModified":"1301901714000","name":"Isao Natsuyagi","type":"Person","_key":"27281"} +{"label":"Keiko Takahashi","version":20,"id":"46623","lastModified":"1301902346000","name":"Keiko Takahashi","type":"Person","_key":"27282"} +{"label":"Atsuro Watabe","version":21,"id":"46624","lastModified":"1301902346000","name":"Atsuro Watabe","type":"Person","_key":"27283"} +{"label":"Wir fahren mit der U-Bahn nach St. Pauli","description":"No overview found.","id":"5930","runtime":91,"imdbId":"tt0393977","version":38,"lastModified":"1301906748000","studio":"Saturn Films","genre":"Comedy","title":"Wir fahren mit der U-Bahn nach St. Pauli","releaseDate":25401600000,"language":"en","type":"Movie","_key":"27284"} +{"label":"Claus Muras","version":22,"id":"46626","lastModified":"1301902346000","name":"Claus Muras","type":"Person","_key":"27285"} +{"label":"Otto L\u00fcthje","version":20,"id":"36379","lastModified":"1301901962000","name":"Otto L\u00fcthje","type":"Person","_key":"27286"} +{"label":"Stra\u00dfenbekanntschaften auf St. Pauli","description":"No overview found.","id":"5931","runtime":82,"imdbId":"tt0062312","version":46,"lastModified":"1301906748000","studio":"Tele-Cine","genre":"Crime","title":"Stra\u00dfenbekanntschaften auf St. Pauli","releaseDate":-58060800000,"language":"en","type":"Movie","_key":"27287"} +{"label":"Suse Wohl","version":20,"id":"46634","lastModified":"1301901962000","name":"Suse Wohl","type":"Person","_key":"27288"} +{"label":"Sibille Gilles","version":20,"id":"46635","lastModified":"1301902346000","name":"Sibille Gilles","type":"Person","_key":"27289"} +{"label":"Dagmar Lassander","version":28,"id":"46636","lastModified":"1301901984000","name":"Dagmar Lassander","type":"Person","_key":"27290"} +{"label":"J\u00fcrgen Feindt","version":20,"id":"46637","lastModified":"1301901677000","name":"J\u00fcrgen Feindt","type":"Person","_key":"27291"} +{"label":"Gabriele Gutkind","version":18,"id":"46638","lastModified":"1301902166000","name":"Gabriele Gutkind","type":"Person","_key":"27292"} +{"label":"Manuela Bock","version":20,"id":"46639","lastModified":"1301901788000","name":"Manuela Bock","type":"Person","_key":"27293"} +{"label":"Mathias Grimm","version":20,"id":"46640","lastModified":"1301902157000","name":"Mathias Grimm","type":"Person","_key":"27294"} +{"label":"Richard Haller","version":20,"id":"46641","lastModified":"1301902346000","name":"Richard Haller","type":"Person","_key":"27295"} +{"label":"Charles Huttin","version":20,"id":"46642","lastModified":"1301902346000","name":"Charles Huttin","type":"Person","_key":"27296"} +{"label":"St. Pauli zwischen Nacht und Morgen","description":"No overview found.","id":"5932","runtime":89,"imdbId":"tt0060856","version":43,"lastModified":"1301908595000","studio":"Avis Film","genre":"Erotic","title":"St. Pauli zwischen Nacht und Morgen","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"27297"} +{"label":"Jos\u00e9 B\u00e9naz\u00e9raf","version":21,"id":"38078","lastModified":"1301901966000","name":"Jos\u00e9 B\u00e9naz\u00e9raf","type":"Person","_key":"27298"} +{"label":"Bob Iller","version":18,"id":"46649","lastModified":"1301902351000","name":"Bob Iller","type":"Person","_key":"27299"} +{"label":"St. Pauli Nachrichten: Thema Nr. 1","description":"No overview found.","id":"5933","runtime":90,"imdbId":"tt0067784","version":49,"lastModified":"1301908596000","genre":"Erotic","title":"St. Pauli Nachrichten: Thema Nr. 1","releaseDate":63072000000,"language":"en","type":"Movie","_key":"27300"} +{"label":"Franz Marischka","version":24,"id":"46650","lastModified":"1301901788000","name":"Franz Marischka","type":"Person","_key":"27301"} +{"label":"Peter Ahrweiler","version":20,"id":"36419","lastModified":"1301901566000","name":"Peter Ahrweiler","type":"Person","_key":"27302"} +{"label":"Mario Amtmann","version":18,"id":"46653","lastModified":"1301902351000","name":"Mario Amtmann","type":"Person","_key":"27303"} +{"label":"Thomas Astan","version":18,"id":"46654","lastModified":"1301901358000","name":"Thomas Astan","type":"Person","_key":"27304"} +{"label":"Uli Bachman","version":18,"id":"46655","lastModified":"1301902166000","name":"Uli Bachman","type":"Person","_key":"27305"} +{"label":"Reiner Br\u00f6nneke","version":20,"id":"36292","lastModified":"1301901962000","name":"Reiner Br\u00f6nneke","type":"Person","_key":"27306"} +{"label":"Werner Cartano","version":20,"id":"46656","lastModified":"1301902346000","name":"Werner Cartano","type":"Person","_key":"27307"} +{"label":"Harald Eggers","version":20,"id":"46657","lastModified":"1301902373000","name":"Harald Eggers","type":"Person","_key":"27308"} +{"label":"Gerlach Fiedler","version":20,"id":"46658","lastModified":"1301902346000","name":"Gerlach Fiedler","type":"Person","_key":"27309"} +{"label":"Kurt Pratsch-Kaufmann","version":22,"id":"46659","lastModified":"1301902157000","name":"Kurt Pratsch-Kaufmann","type":"Person","_key":"27310"} +{"label":"St. Pauli in St. Peter","description":"No overview found.","id":"5934","runtime":90,"imdbId":"tt0175200","version":38,"lastModified":"1301906748000","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"St. Pauli in St. Peter","releaseDate":694224000000,"language":"en","type":"Movie","_key":"27311"} +{"label":"Georg Einerdinger","version":22,"id":"39264","lastModified":"1301901788000","name":"Georg Einerdinger","type":"Person","_key":"27312"} +{"label":"Hermann Giefer","version":20,"id":"46661","lastModified":"1301902345000","name":"Hermann Giefer","type":"Person","_key":"27313"} +{"label":"Kathi Leitner","version":22,"id":"38966","lastModified":"1301901447000","name":"Kathi Leitner","type":"Person","_key":"27314"} +{"label":"Edi Bierling","version":20,"id":"46662","lastModified":"1301902157000","name":"Edi Bierling","type":"Person","_key":"27315"} +{"label":"Sabine Oberhorner","version":20,"id":"46663","lastModified":"1301901962000","name":"Sabine Oberhorner","type":"Person","_key":"27316"} +{"label":"Ingrid Burmester","version":21,"id":"46664","lastModified":"1301902345000","name":"Ingrid Burmester","type":"Person","_key":"27317"} +{"label":"Rupert Pointvogl","version":20,"id":"46665","lastModified":"1301901962000","name":"Rupert Pointvogl","type":"Person","_key":"27318"} +{"label":"St. Pauli in St. Peter","description":"No overview found.","id":"5935","runtime":88,"imdbId":"tt0480851","version":48,"lastModified":"1301908595000","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"St. Pauli in St. Peter","releaseDate":243216000000,"language":"en","type":"Movie","_key":"27319"} +{"label":"Olf Fischer","version":20,"id":"46666","lastModified":"1301902157000","name":"Olf Fischer","type":"Person","_key":"27320"} +{"label":"Maxl Graf","version":20,"id":"46672","lastModified":"1301902345000","name":"Maxl Graf","type":"Person","_key":"27321"} +{"label":"Inez G\u00fcnther","version":20,"id":"46673","lastModified":"1301902157000","name":"Inez G\u00fcnther","type":"Person","_key":"27322"} +{"label":"Ossi Eckm\u00fcller","version":20,"id":"39421","lastModified":"1301901962000","name":"Ossi Eckm\u00fcller","type":"Person","_key":"27323"} +{"label":"Marianne Lindner","version":20,"id":"39071","lastModified":"1301901788000","name":"Marianne Lindner","type":"Person","_key":"27324"} +{"label":"Hans Kollmannsberger","version":18,"id":"46674","lastModified":"1301901667000","name":"Hans Kollmannsberger","type":"Person","_key":"27325"} +{"label":"St. Pauli Herbertstra\u00dfe","description":"No overview found.","id":"5936","runtime":89,"imdbId":"tt0059750","version":47,"lastModified":"1301906079000","studio":"Reinhardt-Film","genre":"Crime","title":"St. Pauli Herbertstra\u00dfe","releaseDate":-128390400000,"language":"en","type":"Movie","_key":"27326"} +{"label":"\u00c1kos R\u00e1thonyi","version":24,"id":"46675","lastModified":"1301901337000","name":"\u00c1kos R\u00e1thonyi","type":"Person","_key":"27327"} +{"label":"Eva Astor","version":22,"id":"26398","lastModified":"1301901655000","name":"Eva Astor","type":"Person","_key":"27328"} +{"label":"Ursula Barlen","version":17,"id":"46681","lastModified":"1301901616000","name":"Ursula Barlen","type":"Person","_key":"27329"} +{"label":"Michael Cramer","version":22,"id":"46682","lastModified":"1301901960000","name":"Michael Cramer","type":"Person","_key":"27330"} +{"label":"Karin Field","version":20,"id":"46683","lastModified":"1301901554000","name":"Karin Field","type":"Person","_key":"27331"} +{"label":"Wolfgang Hansen","version":19,"id":"46684","lastModified":"1301902289000","name":"Wolfgang Hansen","type":"Person","_key":"27332"} +{"label":"Marte Klose","version":19,"id":"46685","lastModified":"1301902289000","name":"Marte Klose","type":"Person","_key":"27333"} +{"label":"Klaus W. Krause","version":19,"id":"46686","lastModified":"1301902289000","name":"Klaus W. Krause","type":"Person","_key":"27334"} +{"label":"Sigrid von Richthofen","version":19,"id":"46687","lastModified":"1301902289000","name":"Sigrid von Richthofen","type":"Person","_key":"27335"} +{"label":"John Rabe","description":"A true-story account of a German businessman who saved more than 200,000 Chinese during the Nanjing massacre in 1937-38.","id":"5937","runtime":134,"imdbId":"tt1124377","trailer":"http:\/\/www.youtube.com\/watch?v=Eic4y6DI5Ec","version":162,"lastModified":"1301904194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72e\/4bc91d56017a3c57fe00b72e\/john-rabe-mid.jpg","studio":"Hofmann & Voges Entertainment","genre":"Drama","title":"John Rabe","releaseDate":1238630400000,"language":"en","tagline":"History Needs Extraordinary Heroes","type":"Movie","_key":"27336"} +{"label":"Florian Gallenberger","version":26,"id":"46680","lastModified":"1301901279000","name":"Florian Gallenberger","type":"Person","_key":"27337"} +{"label":"Teruyuki Kagawa","version":35,"id":"46691","lastModified":"1301901304000","name":"Teruyuki Kagawa","type":"Person","_key":"27338"} +{"label":"Der Sexbaron von St. Pauli","description":"No overview found.","id":"5938","runtime":89,"imdbId":"tt0200115","version":39,"lastModified":"1301907336000","studio":"Kora-Film","genre":"Crime","title":"Der Sexbaron von St. Pauli","releaseDate":331516800000,"language":"en","type":"Movie","_key":"27339"} +{"label":"J\u00fcrgen Enz","version":19,"id":"46688","lastModified":"1301902133000","name":"J\u00fcrgen Enz","type":"Person","_key":"27340"} +{"label":"Margit Rauthe","version":19,"id":"46692","lastModified":"1301902311000","name":"Margit Rauthe","type":"Person","_key":"27341"} +{"label":"Herbert Warnke","version":19,"id":"46693","lastModified":"1301902133000","name":"Herbert Warnke","type":"Person","_key":"27342"} +{"label":"Andrea Werdien","version":19,"id":"46694","lastModified":"1301902133000","name":"Andrea Werdien","type":"Person","_key":"27343"} +{"label":"Horst Sieger","version":19,"id":"46695","lastModified":"1301901939000","name":"Horst Sieger","type":"Person","_key":"27344"} +{"label":"J\u00fcrgen Bigalkes","version":19,"id":"46696","lastModified":"1301902133000","name":"J\u00fcrgen Bigalkes","type":"Person","_key":"27345"} +{"label":"Regula Mertens","version":18,"id":"46697","lastModified":"1301902357000","name":"Regula Mertens","type":"Person","_key":"27346"} +{"label":"Margit Ojetz","version":17,"id":"46698","lastModified":"1301902311000","name":"Margit Ojetz","type":"Person","_key":"27347"} +{"label":"Mario Pollak","version":19,"id":"46699","lastModified":"1301902311000","name":"Mario Pollak","type":"Person","_key":"27348"} +{"label":"Zwischen Hamburg und Haiti","description":"No overview found.","id":"5939","runtime":91,"imdbId":"tt0033297","version":56,"lastModified":"1301907280000","studio":"UFA Universum-Film AG","genre":"Adventure","title":"Zwischen Hamburg und Haiti","releaseDate":-918000000000,"language":"en","type":"Movie","_key":"27349"} +{"label":"Albert Florath","version":23,"id":"46704","lastModified":"1301901606000","name":"Albert Florath","type":"Person","_key":"27350"} +{"label":"Walter Franck","version":19,"id":"46705","lastModified":"1301902289000","name":"Walter Franck","type":"Person","_key":"27351"} +{"label":"Ruth Eweler","version":19,"id":"46706","lastModified":"1301901891000","name":"Ruth Eweler","type":"Person","_key":"27352"} +{"label":"Walter Lieck","version":19,"id":"46707","lastModified":"1301902289000","name":"Walter Lieck","type":"Person","_key":"27353"} +{"label":"Anneliese Kressel","version":18,"id":"46708","lastModified":"1301902351000","name":"Anneliese Kressel","type":"Person","_key":"27354"} +{"label":"Michael Simo","version":19,"id":"46709","lastModified":"1301902104000","name":"Michael Simo","type":"Person","_key":"27355"} +{"label":"Eduard Marks","version":19,"id":"46710","lastModified":"1301901891000","name":"Eduard Marks","type":"Person","_key":"27356"} +{"label":"Written on the Wind","description":"Alcoholic playboy Kyle Hadley marries the woman secretly loved by his poor but hard-working best friend, who in turn is pursued by Kyle's nymphomaniac sister.","id":"5940","runtime":99,"imdbId":"tt0049966","version":116,"lastModified":"1301902654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e65\/4bfed8dc017a3c7033000e65\/written-on-the-wind-mid.jpg","studio":"Universal International Pictures","genre":"Drama","title":"Written on the Wind","releaseDate":-411955200000,"language":"en","tagline":"This woman in his arms was now the wife of the man he called his best friend! ","type":"Movie","_key":"27357"} +{"label":"Robert Keith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4bd81704017a3c1bfb0000d4\/robert-keith-profile.jpg","version":34,"id":"46711","lastModified":"1301901511000","name":"Robert Keith","type":"Person","_key":"27358"} +{"label":"Douglas Sirk","version":40,"id":"46712","lastModified":"1301901444000","name":"Douglas Sirk","type":"Person","_key":"27359"} +{"label":"Rothenbaumchaussee","description":"No overview found.","id":"5941","runtime":90,"imdbId":"tt0102810","version":39,"lastModified":"1301905714000","studio":"Norddeutscher Rundfunk","genre":"Documentary","title":"Rothenbaumchaussee","releaseDate":662688000000,"language":"en","type":"Movie","_key":"27360"} +{"label":"Dietrich Haugk","version":19,"id":"25479","lastModified":"1301901656000","name":"Dietrich Haugk","type":"Person","_key":"27361"} +{"label":"Peter Sands","version":20,"id":"46716","lastModified":"1301902157000","name":"Peter Sands","type":"Person","_key":"27362"} +{"label":"Esther Francksen","version":20,"id":"46717","lastModified":"1301901962000","name":"Esther Francksen","type":"Person","_key":"27363"} +{"label":"Klaus H\u00f6hne","version":21,"id":"26344","lastModified":"1301901788000","name":"Klaus H\u00f6hne","type":"Person","_key":"27364"} +{"label":"Marie-Charlott Sch\u00fcler","version":20,"id":"39629","lastModified":"1301901962000","name":"Marie-Charlott Sch\u00fcler","type":"Person","_key":"27365"} +{"label":"Christine Wodetzky","version":20,"id":"46718","lastModified":"1301902367000","name":"Christine Wodetzky","type":"Person","_key":"27366"} +{"label":"Es geschah am hellichten Tag","description":"No overview found.","id":"5950","runtime":90,"imdbId":"tt0119073","version":78,"lastModified":"1301905659000","studio":"Constantin Film","genre":"Crime","title":"Es geschah am hellichten Tag","releaseDate":852336000000,"language":"en","type":"Movie","_key":"27367"} +{"label":"Judith Thayenthal","version":19,"id":"46770","lastModified":"1301902120000","name":"Judith Thayenthal","type":"Person","_key":"27368"} +{"label":"Arnd Klawitter","version":19,"id":"44329","lastModified":"1301902298000","name":"Arnd Klawitter","type":"Person","_key":"27369"} +{"label":"Martin L\u00fcttge","version":21,"id":"46771","lastModified":"1301901950000","name":"Martin L\u00fcttge","type":"Person","_key":"27370"} +{"label":"The Jane Austen Book Club","description":"Six Californians start a club to discuss the works of Jane Austen, only to find their relationships -- both old and new -- begin to resemble 21st century versions of her novels.","id":"5951","runtime":104,"imdbId":"tt0866437","trailer":"http:\/\/www.youtube.com\/watch?v=375","homepage":"http:\/\/www.sonyclassics.com\/thejaneaustenbookclub\/","version":210,"lastModified":"1301902357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73b\/4bc91d59017a3c57fe00b73b\/the-jane-austen-book-club-mid.jpg","studio":"Mockingbird Pictures","genre":"Comedy","title":"The Jane Austen Book Club","releaseDate":1189296000000,"language":"en","type":"Movie","_key":"27371"} +{"label":"Marc Blucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c13b7415e73d64a2100000c\/marc-blucas-profile.jpg","version":65,"id":"46772","lastModified":"1301901293000","name":"Marc Blucas","type":"Person","_key":"27372"} +{"label":"Parisa Fitz-Henley","version":21,"id":"46773","lastModified":"1301902033000","name":"Parisa Fitz-Henley","type":"Person","_key":"27373"} +{"label":"Gwendoline Yeo","version":25,"id":"46774","lastModified":"1301902328000","name":"Gwendoline Yeo","type":"Person","_key":"27374"} +{"label":"Robin Swicord","version":35,"id":"19852","lastModified":"1301903110000","name":"Robin Swicord","type":"Person","_key":"27375"} +{"label":"M\u00e4rzmelodie","description":"No overview found.","id":"5952","runtime":89,"imdbId":"tt1073669","version":53,"lastModified":"1301905646000","studio":"Seven Pictures","genre":"Comedy","title":"M\u00e4rzmelodie","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"27376"} +{"label":"Martin Walz","version":27,"id":"46981","lastModified":"1301901495000","name":"Martin Walz","type":"Person","_key":"27377"} +{"label":"Gode Benedix","version":19,"id":"46987","lastModified":"1301901734000","name":"Gode Benedix","type":"Person","_key":"27378"} +{"label":"Veronika Nowag-Jones","version":20,"id":"46988","lastModified":"1301902289000","name":"Veronika Nowag-Jones","type":"Person","_key":"27379"} +{"label":"Rolf Peter Kahl","version":21,"id":"46989","lastModified":"1301901734000","name":"Rolf Peter Kahl","type":"Person","_key":"27380"} +{"label":"Andreja Schneider","version":22,"id":"46990","lastModified":"1301901785000","name":"Andreja Schneider","type":"Person","_key":"27381"} +{"label":"Lina Hannah Bierhoff","version":20,"id":"46991","lastModified":"1301902373000","name":"Lina Hannah Bierhoff","type":"Person","_key":"27382"} +{"label":"The Lady in the Car with Glasses and a Gun","description":"Dany Longo is blonde, beautiful, disturbed, passionate--and nearsighted. As she speeds through the south of France in a purloined Thunderbird on an errand for her employer and his wife, no one, including Dany herself, knows where she is headed--or why she is going there.","id":"5953","runtime":105,"imdbId":"tt0065957","version":73,"lastModified":"1301906630000","studio":"Columbia Pictures Corporation","genre":"Drama","title":"The Lady in the Car with Glasses and a Gun","releaseDate":25401600000,"language":"en","type":"Movie","_key":"27383"} +{"label":"Samantha Eggar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ea\/4c62a4787b9aa1775a0002ea\/samantha-eggar-profile.jpg","version":35,"id":"46780","lastModified":"1301901817000","name":"Samantha Eggar","type":"Person","_key":"27384"} +{"label":"Billie Dixon","version":19,"id":"46782","lastModified":"1301902104000","name":"Billie Dixon","type":"Person","_key":"27385"} +{"label":"Philippe Nicaud","version":25,"id":"46783","lastModified":"1301901850000","name":"Philippe Nicaud","type":"Person","_key":"27386"} +{"label":"Louise Rioton","version":23,"id":"46786","lastModified":"1301902154000","name":"Louise Rioton","type":"Person","_key":"27387"} +{"label":"Jacques Fabbri","version":22,"id":"46787","lastModified":"1301902169000","name":"Jacques Fabbri","type":"Person","_key":"27388"} +{"label":"Jacques Legras","version":22,"id":"46788","lastModified":"1301902045000","name":"Jacques Legras","type":"Person","_key":"27389"} +{"label":"Lisa Jouvet","version":19,"id":"46789","lastModified":"1301902104000","name":"Lisa Jouvet","type":"Person","_key":"27390"} +{"label":"Yves Pignot","version":22,"id":"46790","lastModified":"1301901756000","name":"Yves Pignot","type":"Person","_key":"27391"} +{"label":"Also schlafwandle ich am hellichten Tage","description":"No overview found.","id":"5954","runtime":60,"imdbId":"tt0109088","version":44,"lastModified":"1301906747000","genre":"Documentary","title":"Also schlafwandle ich am hellichten Tage","releaseDate":757382400000,"language":"en","type":"Movie","_key":"27392"} +{"label":"Hubert Sauper","version":31,"id":"46791","lastModified":"1301902157000","name":"Hubert Sauper","type":"Person","_key":"27393"} +{"label":"Michael Mohapp","version":20,"id":"46794","lastModified":"1301902180000","name":"Michael Mohapp","type":"Person","_key":"27394"} +{"label":"Petra Maria","version":20,"id":"46795","lastModified":"1301902379000","name":"Petra Maria","type":"Person","_key":"27395"} +{"label":"Salomon Zilberger","version":20,"id":"46796","lastModified":"1301902183000","name":"Salomon Zilberger","type":"Person","_key":"27396"} +{"label":"Carlo B\u00f6hm","version":20,"id":"46797","lastModified":"1301902390000","name":"Carlo B\u00f6hm","type":"Person","_key":"27397"} +{"label":"Sylvia Venz","version":20,"id":"46798","lastModified":"1301902345000","name":"Sylvia Venz","type":"Person","_key":"27398"} +{"label":"Herbert Haider","version":20,"id":"46799","lastModified":"1301902345000","name":"Herbert Haider","type":"Person","_key":"27399"} +{"label":"The Pledge","description":"A retiring police chief pledges to catch the killer of a young child.","id":"5955","runtime":124,"imdbId":"tt0237572","homepage":"http:\/\/movies.warnerbros.com\/thepledge\/","version":196,"lastModified":"1301903888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/744\/4bc91d5a017a3c57fe00b744\/the-pledge-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Pledge","releaseDate":978998400000,"language":"en","type":"Movie","_key":"27400"} +{"label":"Dale Dickey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4c4ef08d7b9aa1326f0000e9\/dale-dickey-profile.jpg","version":38,"id":"46814","lastModified":"1301901276000","name":"Dale Dickey","type":"Person","_key":"27401"} +{"label":"Wendy Morrow Donaldson","version":22,"id":"46815","lastModified":"1301902289000","name":"Wendy Morrow Donaldson","type":"Person","_key":"27402"} +{"label":"Joshua The Devils Child","description":"The story of a perfect boy who had a perfect plan. The arrival of a newborn girl causes the gradual disintegration of the Cairn family; particularly for 9-year-old Joshua, an eccentric boy whose proper upbringing and refined tastes both take a sinister turn.","id":"5956","runtime":105,"imdbId":"tt0808331","trailer":"http:\/\/www.youtube.com\/watch?v=376","version":448,"lastModified":"1301905201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74d\/4bc91d5b017a3c57fe00b74d\/joshua-mid.jpg","studio":"ATO Pictures","genre":"Drama","title":"Joshua The Devils Child","releaseDate":1169337600000,"language":"en","type":"Movie","_key":"27403"} +{"label":"Jacob Kogan","version":23,"id":"46801","lastModified":"1301901461000","name":"Jacob Kogan","type":"Person","_key":"27404"} +{"label":"George Ratliff","version":28,"id":"46802","lastModified":"1301901468000","name":"George Ratliff","type":"Person","_key":"27405"} +{"label":"H\u00f6lle Hamburg","description":"No overview found.","id":"5957","runtime":88,"imdbId":"tt1105282","version":59,"lastModified":"1301908334000","studio":"Filmf\u00f6rderung Hamburg","genre":"Crime","title":"H\u00f6lle Hamburg","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"27406"} +{"label":"Ted Gaier","version":21,"id":"46817","lastModified":"1301901616000","name":"Ted Gaier","type":"Person","_key":"27407"} +{"label":"Peter Ott","version":21,"id":"46818","lastModified":"1301901891000","name":"Peter Ott","type":"Person","_key":"27408"} +{"label":"Jens Rachut","version":19,"id":"46825","lastModified":"1301901538000","name":"Jens Rachut","type":"Person","_key":"27409"} +{"label":"Ibrahima Sanogo","version":19,"id":"46826","lastModified":"1301901891000","name":"Ibrahima Sanogo","type":"Person","_key":"27410"} +{"label":"Martina Schie\u00dfer","version":19,"id":"46827","lastModified":"1301901891000","name":"Martina Schie\u00dfer","type":"Person","_key":"27411"} +{"label":"Martha R\u00fchsen","version":19,"id":"46828","lastModified":"1301901734000","name":"Martha R\u00fchsen","type":"Person","_key":"27412"} +{"label":"Myriam Schroeder","version":18,"id":"46829","lastModified":"1301902351000","name":"Myriam Schroeder","type":"Person","_key":"27413"} +{"label":"Olajide Akinyosoye","version":19,"id":"46830","lastModified":"1301901891000","name":"Olajide Akinyosoye","type":"Person","_key":"27414"} +{"label":"Laika","version":19,"id":"46831","lastModified":"1301902289000","name":"Laika","type":"Person","_key":"27415"} +{"label":"Melissa Logan","version":19,"id":"46832","lastModified":"1301902289000","name":"Melissa Logan","type":"Person","_key":"27416"} +{"label":"Sid Logan","version":19,"id":"46833","lastModified":"1301901891000","name":"Sid Logan","type":"Person","_key":"27417"} +{"label":"Vivian Mahler","version":19,"id":"46834","lastModified":"1301901891000","name":"Vivian Mahler","type":"Person","_key":"27418"} +{"label":"Andreas Matti","version":19,"id":"46835","lastModified":"1301901734000","name":"Andreas Matti","type":"Person","_key":"27419"} +{"label":"Bill Parton","version":19,"id":"46836","lastModified":"1301901891000","name":"Bill Parton","type":"Person","_key":"27420"} +{"label":"Dschingis Bowakow","version":22,"id":"33504","lastModified":"1301901651000","name":"Dschingis Bowakow","type":"Person","_key":"27421"} +{"label":"Matthias Breitenbach","version":19,"id":"46837","lastModified":"1301901890000","name":"Matthias Breitenbach","type":"Person","_key":"27422"} +{"label":"Deborah M. Chamoni","version":20,"id":"46822","lastModified":"1301902351000","name":"Deborah M. Chamoni","type":"Person","_key":"27423"} +{"label":"Moses Holl","version":19,"id":"46838","lastModified":"1301901890000","name":"Moses Holl","type":"Person","_key":"27424"} +{"label":"In Hamburg sind die N\u00e4chte lang","description":"No overview found.","id":"5958","runtime":100,"imdbId":"tt0048202","version":40,"lastModified":"1301908594000","studio":"Kronen-Film","genre":"Erotic","title":"In Hamburg sind die N\u00e4chte lang","releaseDate":-437184000000,"language":"en","type":"Movie","_key":"27425"} +{"label":"Max Michel","version":20,"id":"46839","lastModified":"1301902345000","name":"Max Michel","type":"Person","_key":"27426"} +{"label":"Werner Fuetterer","version":21,"id":"46842","lastModified":"1301902345000","name":"Werner Fuetterer","type":"Person","_key":"27427"} +{"label":"Ernst von Klipstein","version":21,"id":"46843","lastModified":"1301902376000","name":"Ernst von Klipstein","type":"Person","_key":"27428"} +{"label":"Dorit Kreysler","version":21,"id":"46844","lastModified":"1301902379000","name":"Dorit Kreysler","type":"Person","_key":"27429"} +{"label":"Vier Stunden von Elbe 1","description":"No overview found.","id":"5959","runtime":105,"imdbId":"tt0147668","version":42,"lastModified":"1301906630000","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Vier Stunden von Elbe 1","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"27430"} +{"label":"Eberhard Fechner","version":19,"id":"26338","lastModified":"1301901538000","name":"Eberhard Fechner","type":"Person","_key":"27431"} +{"label":"Carsta L\u00f6ck","version":21,"id":"46848","lastModified":"1301901734000","name":"Carsta L\u00f6ck","type":"Person","_key":"27432"} +{"label":"Elke Twiesselmann","version":20,"id":"46849","lastModified":"1301902183000","name":"Elke Twiesselmann","type":"Person","_key":"27433"} +{"label":"Rolf Schimpf","version":19,"id":"26350","lastModified":"1301902104000","name":"Rolf Schimpf","type":"Person","_key":"27434"} +{"label":"Jochen Schenck","version":19,"id":"46850","lastModified":"1301902289000","name":"Jochen Schenck","type":"Person","_key":"27435"} +{"label":"Seres queridos","description":"Leni takes Rafi to meet her family in Madrid. Leni's family is Jewish - mother, father, older sister and daughter, brother, and grandfather. Rafi is Palestinian, in Spain since age 12. Before her father returns from work, Leni reveals Rafi's origins. He accidentally drops a block of frozen soup out the flat window, probably killing a passerby. Leni initiates a cover-up and Rafi figures out the body is probably Leni's father. The body disappears and without telling the rest of the family what the","id":"5960","runtime":93,"imdbId":"tt0376177","version":70,"lastModified":"1301905646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c12\/4d45333b7b9aa15bb0006c12\/seres-queridos-mid.jpg","studio":"Canal+ Espa\u00f1a","genre":"Comedy","title":"Seres queridos","releaseDate":1089331200000,"language":"en","type":"Movie","_key":"27436"} +{"label":"Dominic Harari","version":25,"id":"46852","lastModified":"1301901890000","name":"Dominic Harari","type":"Person","_key":"27437"} +{"label":"Teresa Pelegri","version":25,"id":"46851","lastModified":"1301901734000","name":"Teresa Pelegri","type":"Person","_key":"27438"} +{"label":"Norma Aleandro","version":32,"id":"46853","lastModified":"1301901604000","name":"Norma Aleandro","type":"Person","_key":"27439"} +{"label":"Mari\u00e1n Aguilera","version":21,"id":"46854","lastModified":"1301901734000","name":"Mari\u00e1n Aguilera","type":"Person","_key":"27440"} +{"label":"Fernando Ramallo","version":27,"id":"46855","lastModified":"1301901985000","name":"Fernando Ramallo","type":"Person","_key":"27441"} +{"label":"Mar\u00eda Botto","version":50,"id":"46856","lastModified":"1301901549000","name":"Mar\u00eda Botto","type":"Person","_key":"27442"} +{"label":"Alba Molinero","version":21,"id":"46857","lastModified":"1301902289000","name":"Alba Molinero","type":"Person","_key":"27443"} +{"label":"Max Berliner","version":21,"id":"46858","lastModified":"1301902289000","name":"Max Berliner","type":"Person","_key":"27444"} +{"label":"Fanny and Alexander","description":"A widowed actress and her children suffer hardships when she marries a conservative church leader.","id":"5961","runtime":188,"imdbId":"tt0083922","version":159,"lastModified":"1302039360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/755\/4cfaeb087b9aa1514b002755\/fanny-och-alexander-mid.jpg","studio":"Gaumont","genre":"Drama","title":"Fanny and Alexander","releaseDate":424656000000,"language":"en","type":"Movie","_key":"27445"} +{"label":"Bertil Guve","version":24,"id":"46864","lastModified":"1301901463000","name":"Bertil Guve","type":"Person","_key":"27446"} +{"label":"Pernilla Allwin","version":24,"id":"46865","lastModified":"1301901675000","name":"Pernilla Allwin","type":"Person","_key":"27447"} +{"label":"Ewa Fr\u00f6ling","version":42,"id":"46866","lastModified":"1302031181000","name":"Ewa Fr\u00f6ling","type":"Person","_key":"27448"} +{"label":"Jan Malmsj\u00f6","version":31,"id":"46867","lastModified":"1301901594000","name":"Jan Malmsj\u00f6","type":"Person","_key":"27449"} +{"label":"Gunn W\u00e5llgren","version":27,"id":"46868","lastModified":"1301902006000","name":"Gunn W\u00e5llgren","type":"Person","_key":"27450"} +{"label":"Jarl Kulle","version":27,"id":"46869","lastModified":"1301901690000","name":"Jarl Kulle","type":"Person","_key":"27451"} +{"label":"Devil Winds","description":"No overview found.","id":"5964","runtime":90,"imdbId":"tt0382637","version":118,"lastModified":"1301908334000","studio":"Cinetel","genre":"Action","title":"Devil Winds","releaseDate":1067644800000,"language":"en","type":"Movie","_key":"27452"} +{"label":"Gilbert M. Shilton","version":19,"id":"46891","lastModified":"1301902289000","name":"Gilbert M. Shilton","type":"Person","_key":"27453"} +{"label":"Nicole Eggert","version":37,"id":"44711","lastModified":"1301901266000","name":"Nicole Eggert","type":"Person","_key":"27454"} +{"label":"Erica Durance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/027\/4bdc5c95017a3c20c2000027\/erica-durance-profile.jpg","version":34,"id":"46897","lastModified":"1302011793000","name":"Erica Durance","type":"Person","_key":"27455"} +{"label":"Peter Graham-Gaudreau","version":19,"id":"46898","lastModified":"1301902104000","name":"Peter Graham-Gaudreau","type":"Person","_key":"27456"} +{"label":"Garwin Sanford","version":28,"id":"46899","lastModified":"1301902135000","name":"Garwin Sanford","type":"Person","_key":"27457"} +{"label":"Brad Turner","version":31,"id":"25882","lastModified":"1301901565000","name":"Brad Turner","type":"Person","_key":"27458"} +{"label":"Adam Murphy","version":19,"id":"46900","lastModified":"1301901890000","name":"Adam Murphy","type":"Person","_key":"27459"} +{"label":"Peter Bryant","version":24,"id":"25389","lastModified":"1301901665000","name":"Peter Bryant","type":"Person","_key":"27460"} +{"label":"Jan D'Arcy","version":21,"id":"46901","lastModified":"1301901708000","name":"Jan D'Arcy","type":"Person","_key":"27461"} +{"label":"Kirsten Robek","version":23,"id":"46902","lastModified":"1301901845000","name":"Kirsten Robek","type":"Person","_key":"27462"} +{"label":"Genevieve Buechner","version":21,"id":"46903","lastModified":"1301901981000","name":"Genevieve Buechner","type":"Person","_key":"27463"} +{"label":"James Purcell","version":19,"id":"46904","lastModified":"1301901890000","name":"James Purcell","type":"Person","_key":"27464"} +{"label":"Reginald Hampton","version":19,"id":"46905","lastModified":"1301901890000","name":"Reginald Hampton","type":"Person","_key":"27465"} +{"label":"David Richmond-Peck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17b\/4ceeb25d5e73d6531800017b\/david-richmond-peck-profile.jpg","version":21,"id":"46906","lastModified":"1301901199000","name":"David Richmond-Peck","type":"Person","_key":"27466"} +{"label":"Jillian Marie","version":19,"id":"46907","lastModified":"1301901890000","name":"Jillian Marie","type":"Person","_key":"27467"} +{"label":"Carrie Ritchie","version":18,"id":"46908","lastModified":"1301901980000","name":"Carrie Ritchie","type":"Person","_key":"27468"} +{"label":"Owen Walstrom","version":19,"id":"46909","lastModified":"1301901890000","name":"Owen Walstrom","type":"Person","_key":"27469"} +{"label":"Kymberly Sheppard","version":18,"id":"46910","lastModified":"1301902351000","name":"Kymberly Sheppard","type":"Person","_key":"27470"} +{"label":"Alexander Mandra","version":19,"id":"46911","lastModified":"1301901890000","name":"Alexander Mandra","type":"Person","_key":"27471"} +{"label":"Scorcher","description":"No overview found.","id":"5965","runtime":91,"imdbId":"tt0303017","version":96,"lastModified":"1301907280000","genre":"Action","title":"Scorcher","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"27472"} +{"label":"Tamara Davies","version":22,"id":"46917","lastModified":"1301901734000","name":"Tamara Davies","type":"Person","_key":"27473"} +{"label":"Rayne Marcus","version":19,"id":"46918","lastModified":"1301902289000","name":"Rayne Marcus","type":"Person","_key":"27474"} +{"label":"Thomas F. Duffy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43d\/4d7bd8087b9aa11a1001743d\/thomas-f-duffy-profile.jpg","version":31,"id":"46919","lastModified":"1301902289000","name":"Thomas F. Duffy","type":"Person","_key":"27475"} +{"label":"Sam Lloyd","version":23,"id":"46920","lastModified":"1301901890000","name":"Sam Lloyd","type":"Person","_key":"27476"} +{"label":"Michael Jace","version":20,"id":"46921","lastModified":"1301902183000","name":"Michael Jace","type":"Person","_key":"27477"} +{"label":"Jeffrey Johnson","version":20,"id":"46922","lastModified":"1301901734000","name":"Jeffrey Johnson","type":"Person","_key":"27478"} +{"label":"Billy Maddox","version":24,"id":"46923","lastModified":"1301901677000","name":"Billy Maddox","type":"Person","_key":"27479"} +{"label":"Alex Datcher","version":24,"id":"46924","lastModified":"1301902289000","name":"Alex Datcher","type":"Person","_key":"27480"} +{"label":"Cathleen Kaelyn","version":20,"id":"46925","lastModified":"1301902373000","name":"Cathleen Kaelyn","type":"Person","_key":"27481"} +{"label":"Joel West","version":21,"id":"46926","lastModified":"1301902365000","name":"Joel West","type":"Person","_key":"27482"} +{"label":"Josh Hammond","version":20,"id":"46927","lastModified":"1301902104000","name":"Josh Hammond","type":"Person","_key":"27483"} +{"label":"Beth Riesgraf","version":20,"id":"46928","lastModified":"1301902183000","name":"Beth Riesgraf","type":"Person","_key":"27484"} +{"label":"Ivonne Coll","version":19,"id":"46929","lastModified":"1301902289000","name":"Ivonne Coll","type":"Person","_key":"27485"} +{"label":"Frank Novak","version":28,"id":"46930","lastModified":"1301901174000","name":"Frank Novak","type":"Person","_key":"27486"} +{"label":"Blair Hickey","version":19,"id":"46931","lastModified":"1301902289000","name":"Blair Hickey","type":"Person","_key":"27487"} +{"label":"Tom Billett","version":20,"id":"46932","lastModified":"1301902306000","name":"Tom Billett","type":"Person","_key":"27488"} +{"label":"Along Came Polly","description":"Reuben Feffer (Ben Stiller) is a guy who's spent his entire life playing it safe. Polly Prince (Jennifer Aniston) is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there!","id":"5966","runtime":90,"imdbId":"tt0343135","version":206,"lastModified":"1301901412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d7\/4c8ada6b5e73d6068d0000d7\/along-came-polly-mid.jpg","studio":"Jersey Films","genre":"Action","title":"Along Came Polly","releaseDate":1073865600000,"language":"en","tagline":"For the most cautious man on Earth, life is about to get interesting.","type":"Movie","_key":"27489"} +{"label":"John Hamburg","version":69,"id":"17871","lastModified":"1301901169000","name":"John Hamburg","type":"Person","_key":"27490"} +{"label":"Michele Lee","version":28,"id":"46944","lastModified":"1301901666000","name":"Michele Lee","type":"Person","_key":"27491"} +{"label":"The Umbrellas of Cherbourg","description":"Jacques Demy's 1964 masterpiece is a pop-art opera, or, to borrow the director's own description, a film in song. This simple romantic tragedy begins in 1957. Guy Foucher, a 20-year-old French auto mechanic, has fallen in love with 17-year-old Genevi\u00e8ve Emery, an employee in her widowed mother's chic but financially embattled umbrella shop. On the evening before Guy is to leave for a two-year tour of combat in Algeria, he and Genevi\u00e8ve make love. She becomes pregnant and must choose between wait","id":"5967","runtime":91,"imdbId":"tt0058450","version":120,"lastModified":"1301904216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4c62e9067b9aa172de000625\/les-parapluies-de-cherbourg-mid.jpg","studio":"Beta Film","genre":"Drama","title":"The Umbrellas of Cherbourg","releaseDate":-185155200000,"language":"en","type":"Movie","_key":"27492"} +{"label":"Mireille Perrey","version":21,"id":"46935","lastModified":"1301901641000","name":"Mireille Perrey","type":"Person","_key":"27493"} +{"label":"Marc Michel","version":22,"id":"46936","lastModified":"1301902310000","name":"Marc Michel","type":"Person","_key":"27494"} +{"label":"Ellen Farner","version":22,"id":"46937","lastModified":"1301902392000","name":"Ellen Farner","type":"Person","_key":"27495"} +{"label":"Pierre Caden","version":22,"id":"46938","lastModified":"1301902378000","name":"Pierre Caden","type":"Person","_key":"27496"} +{"label":"Jean-Pierre Dorat","version":22,"id":"46939","lastModified":"1301902377000","name":"Jean-Pierre Dorat","type":"Person","_key":"27497"} +{"label":"The Woman in Red","description":"Teddy Pierce, your normal everyday married man, becomes obsessed with a beautiful woman whose red dress whooshes over her head from a gust of wind as she crosses a grate.","id":"5968","runtime":87,"imdbId":"tt0088414","trailer":"http:\/\/www.youtube.com\/watch?v=JDHhDanYAcQ","version":119,"lastModified":"1302021724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a31\/4d7c2b9d7b9aa11a10017a31\/the-woman-in-red-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"The Woman in Red","releaseDate":461376000000,"language":"en","type":"Movie","_key":"27498"} +{"label":"Joseph Bologna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b4\/4cb5c5a17b9aa138d70002b4\/joseph-bologna-profile.jpg","version":39,"id":"46946","lastModified":"1301901409000","name":"Joseph Bologna","type":"Person","_key":"27499"} +{"label":"Michael Huddleston","version":21,"id":"46947","lastModified":"1301902053000","name":"Michael Huddleston","type":"Person","_key":"27500"} +{"label":"Kelly LeBrock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab5\/4cfd0c555e73d62999003ab5\/kelly-lebrock-profile.jpg","version":50,"id":"46948","lastModified":"1301901115000","name":"Kelly LeBrock","type":"Person","_key":"27501"} +{"label":"Gilda Radner","version":31,"id":"46949","lastModified":"1301902014000","name":"Gilda Radner","type":"Person","_key":"27502"} +{"label":"Schneemann sucht Schneefrau","description":"No overview found.","id":"5969","runtime":90,"imdbId":"tt0347945","version":47,"lastModified":"1301906747000","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Comedy","title":"Schneemann sucht Schneefrau","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"27503"} +{"label":"Marco Serafini","version":23,"id":"38306","lastModified":"1301901656000","name":"Marco Serafini","type":"Person","_key":"27504"} +{"label":"Katja Weitzenb\u00f6ck","version":22,"id":"38675","lastModified":"1301901497000","name":"Katja Weitzenb\u00f6ck","type":"Person","_key":"27505"} +{"label":"Roxanne Borski","version":20,"id":"46963","lastModified":"1301901667000","name":"Roxanne Borski","type":"Person","_key":"27506"} +{"label":"Constantin Gastmann","version":29,"id":"46964","lastModified":"1301901528000","name":"Constantin Gastmann","type":"Person","_key":"27507"} +{"label":"Ulrike Arnold","version":20,"id":"46965","lastModified":"1301902380000","name":"Ulrike Arnold","type":"Person","_key":"27508"} +{"label":"Beste Gegend","description":"No overview found.","id":"5970","runtime":90,"imdbId":"tt1132471","homepage":"http:\/\/www.bestegegend.film.de\/","version":60,"lastModified":"1301905659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4d13437a7b9aa11486001026\/beste-gegend-mid.jpg","studio":"Monaco Film","genre":"Drama","title":"Beste Gegend","releaseDate":1199318400000,"language":"en","type":"Movie","_key":"27509"} +{"label":"We're No Angels","description":"A couple of escaped convicts on the run find refuge with the Church when they are mistaken for two priests. The two are keen to flee but are unable to do so without the help of Molly.","id":"5971","runtime":106,"imdbId":"tt0098625","version":133,"lastModified":"1301903821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4cb4c6575e73d67786000063\/we-re-no-angels-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"We're No Angels","releaseDate":629683200000,"language":"en","type":"Movie","_key":"27510"} +{"label":"Richard Newman","version":29,"id":"46995","lastModified":"1301902152000","name":"Richard Newman","type":"Person","_key":"27511"} +{"label":"Bill Murdoch","version":20,"id":"46996","lastModified":"1301902289000","name":"Bill Murdoch","type":"Person","_key":"27512"} +{"label":"Witness for the Prosecution","description":"Sir Wilfred Robarts, a famed barrister is released from the hospital, where he stayed for two months following his heart attack. Returning to the practise of his lawyer skills, he takes the case of Leonard Vole, an unemployed man who is accused of murdering an elderly lady friend of his, Mrs. Emily French. While Leonard Vole claims he's innocent, although all evidence points to him as the killer, his alibi witness, his cold German wife Christine, instead of entering the court as a witness for th","id":"5972","runtime":97,"imdbId":"tt0084911","version":101,"lastModified":"1302021670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6b\/4d73e2df7b9aa16722000e6b\/witness-for-the-prosecution-mid.jpg","studio":"CBS Television","genre":"Drama","title":"Witness for the Prosecution","releaseDate":407808000000,"language":"en","type":"Movie","_key":"27513"} +{"label":"Alan Gibson","version":25,"id":"46997","lastModified":"1301901691000","name":"Alan Gibson","type":"Person","_key":"27514"} +{"label":"David Langton","version":19,"id":"46999","lastModified":"1301901734000","name":"David Langton","type":"Person","_key":"27515"} +{"label":"Richard Vernon","version":26,"id":"47000","lastModified":"1301901643000","name":"Richard Vernon","type":"Person","_key":"27516"} +{"label":"Frank Mills","version":20,"id":"47001","lastModified":"1301901890000","name":"Frank Mills","type":"Person","_key":"27517"} +{"label":"Witness for the Prosecution","description":"No overview found.","id":"5973","runtime":75,"imdbId":"tt0295036","version":101,"lastModified":"1301908399000","studio":"BBC Films","genre":"Drama","title":"Witness for the Prosecution","releaseDate":-648864000000,"language":"en","type":"Movie","_key":"27518"} +{"label":"John Glyn-Jones","version":21,"id":"47009","lastModified":"1301901656000","name":"John Glyn-Jones","type":"Person","_key":"27519"} +{"label":"Alban Blakelock","version":20,"id":"47012","lastModified":"1301901656000","name":"Alban Blakelock","type":"Person","_key":"27520"} +{"label":"Stafford Byrne","version":20,"id":"47013","lastModified":"1301901962000","name":"Stafford Byrne","type":"Person","_key":"27521"} +{"label":"Derek Elphinstone","version":20,"id":"47014","lastModified":"1301901788000","name":"Derek Elphinstone","type":"Person","_key":"27522"} +{"label":"Mary Kerridge","version":25,"id":"47015","lastModified":"1301901788000","name":"Mary Kerridge","type":"Person","_key":"27523"} +{"label":"Dale Rogers","version":20,"id":"47016","lastModified":"1301902157000","name":"Dale Rogers","type":"Person","_key":"27524"} +{"label":"John Salew","version":26,"id":"47017","birthplace":"Ireland","lastModified":"1301901405000","name":"John Salew","type":"Person","_key":"27525"} +{"label":"Hilda Terriss","version":20,"id":"47018","lastModified":"1301901962000","name":"Hilda Terriss","type":"Person","_key":"27526"} +{"label":"Zwei Weihnachtshunde","description":"No overview found.","id":"5990","runtime":90,"imdbId":"tt0764631","version":42,"lastModified":"1301907417000","studio":"Cult Film","genre":"Comedy","title":"Zwei Weihnachtshunde","releaseDate":1134950400000,"language":"en","type":"Movie","_key":"27527"} +{"label":"Lenard Fritz Krawinkel","version":23,"id":"47021","lastModified":"1301901497000","name":"Lenard Fritz Krawinkel","type":"Person","_key":"27528"} +{"label":"Gunther Gillian","version":23,"id":"47024","lastModified":"1301902345000","name":"Gunther Gillian","type":"Person","_key":"27529"} +{"label":"Ursula Strauss","version":30,"id":"47025","lastModified":"1301901859000","name":"Ursula Strauss","type":"Person","_key":"27530"} +{"label":"Adele Neuhauser","version":21,"id":"47026","lastModified":"1301902152000","name":"Adele Neuhauser","type":"Person","_key":"27531"} +{"label":"Fritz von Friedl","version":19,"id":"47027","lastModified":"1301902048000","name":"Fritz von Friedl","type":"Person","_key":"27532"} +{"label":"Markus Boysen","version":22,"id":"47028","lastModified":"1301901962000","name":"Markus Boysen","type":"Person","_key":"27533"} +{"label":"The Last Laugh","description":"An aging doorman, after being fired from his prestigious job at a luxurious Hotel is forced to face the scorn of his friends, neighbours and society.","id":"5991","runtime":77,"imdbId":"tt0015064","version":86,"lastModified":"1301905307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cd\/4c7ba37f7b9aa176c00002cd\/der-letzte-mann-mid.jpg","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"The Last Laugh","releaseDate":-1420848000000,"language":"en","type":"Movie","_key":"27534"} +{"label":"Max Hiller","version":22,"id":"47029","lastModified":"1301902187000","name":"Max Hiller","type":"Person","_key":"27535"} +{"label":"Hans Unterkircher","version":22,"id":"47030","lastModified":"1301902391000","name":"Hans Unterkircher","type":"Person","_key":"27536"} +{"label":"Hermann Vallentin","version":26,"id":"47031","lastModified":"1301901962000","name":"Hermann Vallentin","type":"Person","_key":"27537"} +{"label":"Emilie Kurz","version":23,"id":"47032","lastModified":"1301902157000","name":"Emilie Kurz","type":"Person","_key":"27538"} +{"label":"Das kann doch unsren Willi nicht ersch\u00fcttern","description":"No overview found.","id":"5992","runtime":83,"imdbId":"tt0065614","version":48,"lastModified":"1300978443000","studio":"Allianz","genre":"Comedy","title":"Das kann doch unsren Willi nicht ersch\u00fcttern","releaseDate":26265600000,"language":"en","type":"Movie","_key":"27539"} +{"label":"Heinz Erhardt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ab\/4cd6b1835e73d676cd0003ab\/heinz-erhardt-profile.jpg","version":35,"birthday":"-1920675600000","id":"47033","birthplace":"Riga","lastModified":"1301901499000","name":"Heinz Erhardt","type":"Person","_key":"27540"} +{"label":"Irina von Bentheim","version":19,"id":"47034","lastModified":"1301902104000","name":"Irina von Bentheim","type":"Person","_key":"27541"} +{"label":"Nicolai von Bentheim","version":19,"id":"47035","lastModified":"1301902104000","name":"Nicolai von Bentheim","type":"Person","_key":"27542"} +{"label":"Angelika Baumgart","version":19,"id":"47036","lastModified":"1301902289000","name":"Angelika Baumgart","type":"Person","_key":"27543"} +{"label":"Almut Berg","version":19,"id":"47037","lastModified":"1301902104000","name":"Almut Berg","type":"Person","_key":"27544"} +{"label":"Siegfried Munz","version":19,"id":"47038","lastModified":"1301902289000","name":"Siegfried Munz","type":"Person","_key":"27545"} +{"label":"Tot\u00f2 Mignone","version":18,"id":"47039","lastModified":"1301902166000","name":"Tot\u00f2 Mignone","type":"Person","_key":"27546"} +{"label":"The Family Man","description":"Cutthroat investment banker Jack Campbell, who eschews emotional ties, is transported into the prosaic life he might have had if he'd wed his college sweetheart. Instead of a Ferrari, Campbell drives a malfunctioning minivan in the suburbs and is saddled with two screaming kids -- but he learns to love every minute of it.","id":"5994","runtime":125,"imdbId":"tt0218967","trailer":"http:\/\/www.youtube.com\/watch?v=My7Fb0cI1Gc","version":346,"lastModified":"1301903388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/797\/4bc91d62017a3c57fe00b797\/the-family-man-mid.jpg","studio":"Beacon Pictures","genre":"Comedy","title":"The Family Man","releaseDate":976579200000,"language":"en","tagline":"What if...","type":"Movie","_key":"27547"} +{"label":"Ryan Milkovich","version":23,"id":"47057","lastModified":"1301902104000","name":"Ryan Milkovich","type":"Person","_key":"27548"} +{"label":"Jake Milkovich","version":23,"id":"47056","lastModified":"1301902104000","name":"Jake Milkovich","type":"Person","_key":"27549"} +{"label":"Lisa Thornhill","version":24,"id":"47058","lastModified":"1301902194000","name":"Lisa Thornhill","type":"Person","_key":"27550"} +{"label":"Miffo","description":"Tobias is the new, idealistic priest in a suburb but he soon learns that his flock is quite uninterested in Christianity. However, he befriends Carolina, a chain smoking woman his age, wheelchair-bound since birth. It is opposites attract although their backgrounds are different.","id":"5995","runtime":105,"imdbId":"tt0342771","version":242,"lastModified":"1302029939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/117\/4c4c6ce65e73d62a3f000117\/miffo-mid.jpg","studio":"Film I Vast","genre":"Comedy","title":"Miffo","releaseDate":1059696000000,"language":"en","type":"Movie","_key":"27551"} +{"label":"Daniel Lind Lagerl\u00f6f","version":28,"id":"47062","lastModified":"1301901644000","name":"Daniel Lind Lagerl\u00f6f","type":"Person","_key":"27552"} +{"label":"Jonas Karlsson","version":31,"id":"47068","lastModified":"1301904135000","name":"Jonas Karlsson","type":"Person","_key":"27553"} +{"label":"Livia Millhagen","version":18,"id":"47069","lastModified":"1301902351000","name":"Livia Millhagen","type":"Person","_key":"27554"} +{"label":"Ingvar Hirdwall","version":53,"id":"47070","lastModified":"1301901236000","name":"Ingvar Hirdwall","type":"Person","_key":"27555"} +{"label":"Kajsa Ernst","version":22,"id":"47071","lastModified":"1301902104000","name":"Kajsa Ernst","type":"Person","_key":"27556"} +{"label":"Liv Mj\u00f6nes","version":19,"id":"47072","lastModified":"1301902289000","name":"Liv Mj\u00f6nes","type":"Person","_key":"27557"} +{"label":"Fyr Thorvald Str\u00f6mberg","version":19,"id":"47073","lastModified":"1301902289000","name":"Fyr Thorvald Str\u00f6mberg","type":"Person","_key":"27558"} +{"label":"Isa Aouifia","version":19,"id":"47074","lastModified":"1301901890000","name":"Isa Aouifia","type":"Person","_key":"27559"} +{"label":"Carina Boberg","version":19,"id":"47075","lastModified":"1301902289000","name":"Carina Boberg","type":"Person","_key":"27560"} +{"label":"We're No Angels","description":"Three convicts escape from prison on Devil's Island just before Christmas and arrive at a nearby French colonial town. They go to the store of the Ducotels, the only store that gives supplies on credit. They initially intend to take advantage of them but have a change of heart after they find the family is in financial troubles.","id":"5996","runtime":106,"imdbId":"tt0048801","version":122,"lastModified":"1302029893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a0\/4bc91d63017a3c57fe00b7a0\/we-re-no-angels-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"We're No Angels","releaseDate":-457228800000,"language":"en","type":"Movie","_key":"27561"} +{"label":"John Baer","version":20,"id":"47079","lastModified":"1301902289000","name":"John Baer","type":"Person","_key":"27562"} +{"label":"Gloria Talbott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/744\/4bf44427017a3c320d000744\/gloria-talbott-profile.jpg","version":30,"id":"47080","lastModified":"1301901849000","name":"Gloria Talbott","type":"Person","_key":"27563"} +{"label":"Dr. Mabuse: The Gambler","description":"Arch-criminal Dr. Mabuse sets out to make a fortune and run Berlin. Detective Wenk sets out to stop him.","id":"5998","runtime":195,"imdbId":"tt0013086","version":78,"lastModified":"1301903338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15a\/4bcc9fdb017a3c0f3200015a\/dr-mabuse-der-spieler-mid.jpg","studio":"Decla Bioscop AG","genre":"Crime","title":"Dr. Mabuse: The Gambler","releaseDate":-1502236800000,"language":"en","type":"Movie","_key":"27564"} +{"label":"Gertrude Welcker","version":21,"id":"47169","lastModified":"1301901538000","name":"Gertrude Welcker","type":"Person","_key":"27565"} +{"label":"Paul Richter","version":24,"id":"47170","lastModified":"1301902123000","name":"Paul Richter","type":"Person","_key":"27566"} +{"label":"Robert Forster-Larrinaga","version":20,"id":"47171","lastModified":"1301901667000","name":"Robert Forster-Larrinaga","type":"Person","_key":"27567"} +{"label":"Hans Adalbert Schlettow","version":23,"id":"47172","lastModified":"1301902351000","name":"Hans Adalbert Schlettow","type":"Person","_key":"27568"} +{"label":"Grete Berger","version":25,"id":"47173","lastModified":"1301902318000","name":"Grete Berger","type":"Person","_key":"27569"} +{"label":"Charlys Tante","description":"No overview found.","id":"5999","runtime":90,"imdbId":"tt0047932","version":68,"lastModified":"1301906630000","studio":"Imperial Filmproduktion","genre":"Comedy","title":"Charlys Tante","releaseDate":-440294400000,"language":"en","type":"Movie","_key":"27570"} +{"label":"Hans Quest","version":23,"id":"26575","lastModified":"1301901798000","name":"Hans Quest","type":"Person","_key":"27571"} +{"label":"Bum Kr\u00fcger","version":21,"id":"47126","lastModified":"1301901998000","name":"Bum Kr\u00fcger","type":"Person","_key":"27572"} +{"label":"Hans Olden","version":20,"id":"47127","lastModified":"1301901890000","name":"Hans Olden","type":"Person","_key":"27573"} +{"label":"Ina Peters","version":20,"id":"47128","lastModified":"1301902297000","name":"Ina Peters","type":"Person","_key":"27574"} +{"label":"Elisa Loti","version":18,"id":"47129","lastModified":"1301902376000","name":"Elisa Loti","type":"Person","_key":"27575"} +{"label":"Helmuth Rudolph","version":19,"id":"47130","lastModified":"1301902103000","name":"Helmuth Rudolph","type":"Person","_key":"27576"} +{"label":"Hilde von Stolz","version":19,"id":"47131","lastModified":"1301902103000","name":"Hilde von Stolz","type":"Person","_key":"27577"} +{"label":"Ewald Wenck","version":23,"id":"47132","lastModified":"1301902350000","name":"Ewald Wenck","type":"Person","_key":"27578"} +{"label":"Wulf Rittscher","version":19,"id":"47133","lastModified":"1301902103000","name":"Wulf Rittscher","type":"Person","_key":"27579"} +{"label":"Wolfgang Neuss","version":22,"id":"47134","lastModified":"1301901980000","name":"Wolfgang Neuss","type":"Person","_key":"27580"} +{"label":"Oscar Sabo Jr.","version":18,"id":"47135","lastModified":"1301902166000","name":"Oscar Sabo Jr.","type":"Person","_key":"27581"} +{"label":"Egon Kaiser","version":19,"id":"47136","lastModified":"1301902103000","name":"Egon Kaiser","type":"Person","_key":"27582"} +{"label":"Kiss of Life","description":"No overview found.","id":"6000","runtime":100,"imdbId":"tt0365410","version":119,"lastModified":"1300058522000","studio":"BBC Films","genre":"Drama","title":"Kiss of Life","releaseDate":1073001600000,"language":"en","type":"Movie","_key":"27583"} +{"label":"Emily Young","version":20,"id":"47201","lastModified":"1299500982000","name":"Emily Young","type":"Person","_key":"27584"} +{"label":"Millie Findlay","version":14,"id":"47206","lastModified":"1299499118000","name":"Millie Findlay","type":"Person","_key":"27585"} +{"label":"James E. Martin","version":16,"id":"47207","lastModified":"1299501403000","name":"James E. Martin","type":"Person","_key":"27586"} +{"label":"Ivan Bijuk","version":16,"id":"47208","lastModified":"1299503712000","name":"Ivan Bijuk","type":"Person","_key":"27587"} +{"label":"Natalie Dew","version":16,"id":"47209","lastModified":"1299503736000","name":"Natalie Dew","type":"Person","_key":"27588"} +{"label":"Charles' Tante","description":"Charles og Peter har best\u00e5et deres juraeksamen, og har gl\u00e6der sig til at g\u00f8re kur til et par piger p\u00e5 landet. Til det form\u00e5l har de brug for en anstandsdame og overtaler deres studiekammerat Ditlev til at spille Charles Tante fra Brasilien. Ditlev har talent for skuespil og tager rollen meget seri\u00f8st, men da Charles rigtige tante melder sin ankomst, begynder forviklingerne at vokse vildt.","id":"6001","runtime":101,"imdbId":"tt0052687","version":70,"lastModified":"1302029771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f46\/4d1ba5535e73d66594000f46\/charles-tante-mid.jpg","studio":"Saga Film","genre":"Comedy","title":"Charles' Tante","releaseDate":-322617600000,"language":"en","type":"Movie","_key":"27589"} +{"label":"Poul Bang","version":21,"id":"47144","lastModified":"1301902373000","name":"Poul Bang","type":"Person","_key":"27590"} +{"label":"Dirch Passer","version":30,"id":"47150","lastModified":"1301901472000","name":"Dirch Passer","type":"Person","_key":"27591"} +{"label":"Ove Sprog\u00f8e","version":55,"birthday":"-1578877200000","id":"47151","birthplace":"Odense","lastModified":"1301901286000","name":"Ove Sprog\u00f8e","type":"Person","_key":"27592"} +{"label":"Ebbe Langberg","version":22,"id":"47152","lastModified":"1301902215000","name":"Ebbe Langberg","type":"Person","_key":"27593"} +{"label":"Ghita N\u00f8rby","version":25,"id":"47153","lastModified":"1301902054000","name":"Ghita N\u00f8rby","type":"Person","_key":"27594"} +{"label":"Annie Birgit Garde","version":21,"id":"47154","lastModified":"1301902373000","name":"Annie Birgit Garde","type":"Person","_key":"27595"} +{"label":"Birgitte Federspiel","version":21,"id":"47155","lastModified":"1301902197000","name":"Birgitte Federspiel","type":"Person","_key":"27596"} +{"label":"Susse Wold","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f1\/4c1897035e73d65ddf0000f1\/susse-wold-profile.jpg","version":21,"id":"47156","lastModified":"1301902360000","name":"Susse Wold","type":"Person","_key":"27597"} +{"label":"Charleys Tante","description":"No overview found.","id":"6002","runtime":91,"imdbId":"tt0024967","version":52,"lastModified":"1301904957000","studio":"Minerva Film SpA","genre":"Comedy","title":"Charleys Tante","releaseDate":-1116374400000,"language":"en","type":"Movie","_key":"27598"} +{"label":"Paul Kemp","version":19,"id":"47212","lastModified":"1301901890000","name":"Paul Kemp","type":"Person","_key":"27599"} +{"label":"Max G\u00fclstorff","version":19,"id":"47213","lastModified":"1301901734000","name":"Max G\u00fclstorff","type":"Person","_key":"27600"} +{"label":"Erik Ode","version":22,"id":"47214","lastModified":"1301901497000","name":"Erik Ode","type":"Person","_key":"27601"} +{"label":"Jessie Vihrog","version":19,"id":"47215","lastModified":"1301902103000","name":"Jessie Vihrog","type":"Person","_key":"27602"} +{"label":"Fita Benkhoff","version":21,"id":"47217","lastModified":"1301902343000","name":"Fita Benkhoff","type":"Person","_key":"27603"} +{"label":"Ernst Legal","version":19,"id":"47218","lastModified":"1301902289000","name":"Ernst Legal","type":"Person","_key":"27604"} +{"label":"Ernst Nessler","version":19,"id":"47219","lastModified":"1301901734000","name":"Ernst Nessler","type":"Person","_key":"27605"} +{"label":"Charlotte Berlow","version":19,"id":"47220","lastModified":"1301901890000","name":"Charlotte Berlow","type":"Person","_key":"27606"} +{"label":"Henry Pauly","version":19,"id":"47221","lastModified":"1301901890000","name":"Henry Pauly","type":"Person","_key":"27607"} +{"label":"Vilma Bekendorf","version":19,"id":"47216","lastModified":"1301902289000","name":"Vilma Bekendorf","type":"Person","_key":"27608"} +{"label":"Romeo and Juliet","description":"Director Franco Zeffirelli's beloved version of one of the most well-known love stories in the English language, Romeo Montague (Leonard Whiting) and Juliet Capulet (Olivia Hussey) fall in love against the wishes of their feuding families. Driven by their passion, the young lovers defy their destiny and elope, only to suffer the ultimate tragedy. The film won two Oscars, for cinematography and costume design.","id":"6003","runtime":138,"imdbId":"tt0063518","version":175,"lastModified":"1301902871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b2\/4d2fa1fd5e73d667ea0002b2\/romeo-and-juliet-mid.jpg","studio":"BHE Films","genre":"Drama","title":"Romeo and Juliet","releaseDate":-40003200000,"language":"en","type":"Movie","_key":"27609"} +{"label":"Pat Heywood","version":27,"id":"47138","lastModified":"1301902373000","name":"Pat Heywood","type":"Person","_key":"27610"} +{"label":"Paul Hardwick","version":23,"id":"47139","lastModified":"1301902379000","name":"Paul Hardwick","type":"Person","_key":"27611"} +{"label":"Natasha Parry","version":23,"id":"47140","lastModified":"1301902389000","name":"Natasha Parry","type":"Person","_key":"27612"} +{"label":"Antonio Pierfederici","version":23,"id":"47141","lastModified":"1301902332000","name":"Antonio Pierfederici","type":"Person","_key":"27613"} +{"label":"Gefangene","description":"No overview found.","id":"6004","runtime":90,"imdbId":"tt0490133","version":43,"lastModified":"1301419509000","studio":"Fischer Film","genre":"Drama","title":"Gefangene","releaseDate":1155168000000,"language":"en","type":"Movie","_key":"27614"} +{"label":"Iain Dilthey","version":24,"id":"47142","lastModified":"1301901656000","name":"Iain Dilthey","type":"Person","_key":"27615"} +{"label":"Theo Marteau","version":20,"id":"47143","lastModified":"1301902183000","name":"Theo Marteau","type":"Person","_key":"27616"} +{"label":"Nicholas Monu","version":20,"id":"38484","lastModified":"1301901962000","name":"Nicholas Monu","type":"Person","_key":"27617"} +{"label":"Charleys Tante","description":"No overview found.","id":"6005","runtime":90,"imdbId":"tt0056924","version":48,"lastModified":"1301906630000","studio":"Sascha-Verleih","genre":"Comedy","title":"Charleys Tante","releaseDate":-198288000000,"language":"en","type":"Movie","_key":"27618"} +{"label":"G\u00e9za von Cziffra","version":24,"id":"47157","lastModified":"1301901962000","name":"G\u00e9za von Cziffra","type":"Person","_key":"27619"} +{"label":"Peter Vogel","version":28,"id":"47163","lastModified":"1301901781000","name":"Peter Vogel","type":"Person","_key":"27620"} +{"label":"Eike Pulver","version":20,"id":"47164","lastModified":"1301902373000","name":"Eike Pulver","type":"Person","_key":"27621"} +{"label":"Marlene Rahn","version":20,"id":"47165","lastModified":"1301902373000","name":"Marlene Rahn","type":"Person","_key":"27622"} +{"label":"Alfred B\u00f6hm","version":21,"id":"47166","lastModified":"1301902321000","name":"Alfred B\u00f6hm","type":"Person","_key":"27623"} +{"label":"Helli Servi","version":19,"id":"47167","lastModified":"1301902103000","name":"Helli Servi","type":"Person","_key":"27624"} +{"label":"Fritz Eckhardt","version":21,"id":"26447","lastModified":"1301901603000","name":"Fritz Eckhardt","type":"Person","_key":"27625"} +{"label":"Rudolf Vogel","version":29,"id":"47168","lastModified":"1301901781000","name":"Rudolf Vogel","type":"Person","_key":"27626"} +{"label":"Charleys tant","description":"No overview found.","id":"6006","runtime":90,"imdbId":"tt0016718","version":53,"lastModified":"1301906630000","studio":"AB Svenska Ord","genre":"Comedy","title":"Charleys tant","releaseDate":-1381622400000,"language":"en","type":"Movie","_key":"27627"} +{"label":"Elis Ellis","version":22,"id":"47174","lastModified":"1301901890000","name":"Elis Ellis","type":"Person","_key":"27628"} +{"label":"Ralph Forbes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b5b\/4be609cf017a3c35c1000b5b\/ralph-forbes-profile.jpg","version":29,"id":"47178","lastModified":"1301996123000","name":"Ralph Forbes","type":"Person","_key":"27629"} +{"label":"Olav Ri\u00e9go","version":18,"id":"47179","lastModified":"1301902388000","name":"Olav Ri\u00e9go","type":"Person","_key":"27630"} +{"label":"Ren\u00e9e Bj\u00f6rling","version":18,"id":"47180","lastModified":"1301902351000","name":"Ren\u00e9e Bj\u00f6rling","type":"Person","_key":"27631"} +{"label":"Inga Sundblad-Ellis","version":19,"id":"47181","lastModified":"1301901890000","name":"Inga Sundblad-Ellis","type":"Person","_key":"27632"} +{"label":"Axel Hultman","version":19,"id":"47182","lastModified":"1301901890000","name":"Axel Hultman","type":"Person","_key":"27633"} +{"label":"Sven Bergvall","version":19,"id":"47183","lastModified":"1301901890000","name":"Sven Bergvall","type":"Person","_key":"27634"} +{"label":"Magda Holm","version":19,"id":"47184","lastModified":"1301901890000","name":"Magda Holm","type":"Person","_key":"27635"} +{"label":"Anna Bergvall","version":19,"id":"47185","lastModified":"1301901890000","name":"Anna Bergvall","type":"Person","_key":"27636"} +{"label":"Gustaf Hj\u00e4rne","version":18,"id":"47186","lastModified":"1301901998000","name":"Gustaf Hj\u00e4rne","type":"Person","_key":"27637"} +{"label":"Elling","description":"When his mother, who has sheltered him his entire 40 years, dies, Elling, a sensitive, would-be poet, is sent to live in a state institution. There he meets Kjell Bjarne, a gentle giant and female-obsessed virgin in his 40s. After two years, the men are released and provided with a state-funded apartment and stipend with the hope they will be able to live on their own.","id":"6007","runtime":89,"imdbId":"tt0279064","version":151,"lastModified":"1301905763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a9\/4bc91d66017a3c57fe00b7a9\/elling-mid.jpg","studio":"Maipo Film- og TV Produksjon","genre":"Comedy","title":"Elling","releaseDate":984700800000,"language":"en","type":"Movie","_key":"27638"} +{"label":"Per Christian Ellefsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ac\/4d08ebcb5e73d674500006ac\/per-christian-ellefsen-profile.jpg","biography":"<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: Arial, Helvetica, Verdana, sans-serif; font-size: 13px; \"><strong>Per Christian Ellefsen<\/strong><em>born February 14, 1954<\/em><\/p>\n<strong>Educated at the Norwegian Theater School from 1974-1977.<\/strong><\/p>Per Christian Ellefsen spent his first two years as an actor at Sogn og Fjordane Teater, before returning to Oslo as a freelance actor. He was soon engaged at the National Theater, where he, among ","version":32,"birthday":"-501123600000","id":"47175","birthplace":"Norway","lastModified":"1301901423000","name":"Per Christian Ellefsen","type":"Person","_key":"27639"} +{"label":"Sven Nordin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4d618e6f7b9aa154bf0051bb\/sven-nordin-profile.jpg","version":25,"id":"47176","lastModified":"1301901951000","name":"Sven Nordin","type":"Person","_key":"27640"} +{"label":"J\u00f8rgen Langhelle","version":24,"id":"47177","lastModified":"1301902288000","name":"J\u00f8rgen Langhelle","type":"Person","_key":"27641"} +{"label":"Marit Pia Jacobsen","version":19,"id":"49561","lastModified":"1301902166000","name":"Marit Pia Jacobsen","type":"Person","_key":"27642"} +{"label":"Per Christensen","version":21,"id":"49562","lastModified":"1301901816000","name":"Per Christensen","type":"Person","_key":"27643"} +{"label":"Hilde Olausson","version":22,"id":"49563","lastModified":"1301901538000","name":"Hilde Olausson","type":"Person","_key":"27644"} +{"label":"Ola Otnes","version":19,"id":"49564","lastModified":"1301901734000","name":"Ola Otnes","type":"Person","_key":"27645"} +{"label":"Petter N\u00e6ss","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/826\/4cba31d75e73d67786000826\/petter-nss-profile.jpg","version":26,"id":"49555","lastModified":"1301901856000","name":"Petter N\u00e6ss","type":"Person","_key":"27646"} +{"label":"Charleys Tante","description":"No overview found.","id":"6008","runtime":90,"imdbId":"tt0353286","version":43,"lastModified":"1301906747000","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Charleys Tante","releaseDate":189302400000,"language":"en","type":"Movie","_key":"27647"} +{"label":"Manfred Reddemann","version":20,"id":"26819","lastModified":"1301901962000","name":"Manfred Reddemann","type":"Person","_key":"27648"} +{"label":"Giulia Follina","version":22,"id":"26399","lastModified":"1301902157000","name":"Giulia Follina","type":"Person","_key":"27649"} +{"label":"Ursula Sieg","version":20,"id":"47191","lastModified":"1301902345000","name":"Ursula Sieg","type":"Person","_key":"27650"} +{"label":"Regina Schulte am H\u00fclse","version":20,"id":"47193","lastModified":"1301902345000","name":"Regina Schulte am H\u00fclse","type":"Person","_key":"27651"} +{"label":"Hans Timmermann","version":20,"id":"26432","lastModified":"1301902157000","name":"Hans Timmermann","type":"Person","_key":"27652"} +{"label":"Jeunes filles bien ... pour tous rapports","description":"No overview found.","id":"6009","runtime":90,"imdbId":"tt0064114","version":48,"lastModified":"1301906079000","studio":"Les Films Fernand Rivers","genre":"Comedy","title":"Jeunes filles bien ... pour tous rapports","releaseDate":-8985600000,"language":"en","type":"Movie","_key":"27653"} +{"label":"Norbert Terry","version":21,"id":"47222","lastModified":"1301901890000","name":"Norbert Terry","type":"Person","_key":"27654"} +{"label":"Barbro Hedstr\u00f6m","version":19,"id":"47225","lastModified":"1301902288000","name":"Barbro Hedstr\u00f6m","type":"Person","_key":"27655"} +{"label":"Vincent Gauthier","version":19,"id":"47226","lastModified":"1301902288000","name":"Vincent Gauthier","type":"Person","_key":"27656"} +{"label":"Ren\u00e9e Saint-Cyr","version":18,"id":"47227","lastModified":"1301902351000","name":"Ren\u00e9e Saint-Cyr","type":"Person","_key":"27657"} +{"label":"Maria Frost","version":19,"id":"47228","lastModified":"1301902288000","name":"Maria Frost","type":"Person","_key":"27658"} +{"label":"Julie Jordan","version":19,"id":"47229","lastModified":"1301902288000","name":"Julie Jordan","type":"Person","_key":"27659"} +{"label":"Bruno Kaspar","version":19,"id":"47230","lastModified":"1301902288000","name":"Bruno Kaspar","type":"Person","_key":"27660"} +{"label":"Lillemor Planck","version":19,"id":"47231","lastModified":"1301902288000","name":"Lillemor Planck","type":"Person","_key":"27661"} +{"label":"Marianik Revillon","version":19,"id":"47232","lastModified":"1301902288000","name":"Marianik Revillon","type":"Person","_key":"27662"} +{"label":"Inger Sundh","version":19,"id":"47233","lastModified":"1301902288000","name":"Inger Sundh","type":"Person","_key":"27663"} +{"label":"Charleys Tante","description":"No overview found.","id":"6010","runtime":84,"imdbId":"tt0115868","version":50,"lastModified":"1301907417000","studio":"Constantin Film","genre":"Comedy","title":"Charleys Tante","releaseDate":851731200000,"language":"en","type":"Movie","_key":"27664"} +{"label":"Max Raabe","version":20,"id":"47237","lastModified":"1301902017000","name":"Max Raabe","type":"Person","_key":"27665"} +{"label":"Dorkas Kiefer","version":23,"id":"47238","lastModified":"1301901788000","name":"Dorkas Kiefer","type":"Person","_key":"27666"} +{"label":"Kerstin Landsmann","version":20,"id":"47239","lastModified":"1301902373000","name":"Kerstin Landsmann","type":"Person","_key":"27667"} +{"label":"Heinrich Eyerund","version":20,"id":"47240","lastModified":"1301902345000","name":"Heinrich Eyerund","type":"Person","_key":"27668"} +{"label":"Niels Ruf","version":20,"id":"47241","lastModified":"1301902183000","name":"Niels Ruf","type":"Person","_key":"27669"} +{"label":"Der Haustyrann","description":"No overview found.","id":"6011","runtime":90,"imdbId":"tt0051707","version":54,"lastModified":"1301905646000","studio":"Deutsche Schmalfilm GmbH","genre":"Comedy","title":"Der Haustyrann","releaseDate":-344736000000,"language":"en","type":"Movie","_key":"27670"} +{"label":"Hans Deppe","version":24,"id":"47242","lastModified":"1301901801000","name":"Hans Deppe","type":"Person","_key":"27671"} +{"label":"Helga Martin","version":19,"id":"47250","lastModified":"1301901890000","name":"Helga Martin","type":"Person","_key":"27672"} +{"label":"Arnulf Schr\u00f6der","version":19,"id":"47252","lastModified":"1301902288000","name":"Arnulf Schr\u00f6der","type":"Person","_key":"27673"} +{"label":"Eduard Linkers","version":19,"id":"47253","lastModified":"1301902288000","name":"Eduard Linkers","type":"Person","_key":"27674"} +{"label":"Else Quecke","version":19,"id":"27604","lastModified":"1301902103000","name":"Else Quecke","type":"Person","_key":"27675"} +{"label":"Dietrich Thoms","version":20,"id":"47254","lastModified":"1301902288000","name":"Dietrich Thoms","type":"Person","_key":"27676"} +{"label":"Der Haustyrann","description":"No overview found.","id":"6012","runtime":25,"imdbId":"tt0458735","version":41,"lastModified":"1301908334000","studio":"Euphono-Film GmbH","genre":"Comedy","title":"Der Haustyrann","releaseDate":-1009843200000,"language":"en","type":"Movie","_key":"27677"} +{"label":"Phil Jutzi","version":22,"id":"47256","lastModified":"1301902288000","name":"Phil Jutzi","type":"Person","_key":"27678"} +{"label":"G\u00fcnther Brackmann","version":19,"id":"47261","lastModified":"1301902288000","name":"G\u00fcnther Brackmann","type":"Person","_key":"27679"} +{"label":"Paul Hildebrandt","version":19,"id":"47262","lastModified":"1301902288000","name":"Paul Hildebrandt","type":"Person","_key":"27680"} +{"label":"Rudolf Koch-Riehl","version":19,"id":"47263","lastModified":"1301902288000","name":"Rudolf Koch-Riehl","type":"Person","_key":"27681"} +{"label":"Ilse P\u00fctz","version":19,"id":"47264","lastModified":"1301902288000","name":"Ilse P\u00fctz","type":"Person","_key":"27682"} +{"label":"Lotte Rausch","version":20,"id":"47265","lastModified":"1301902103000","name":"Lotte Rausch","type":"Person","_key":"27683"} +{"label":"Ernst Albert Schaach","version":19,"id":"47266","lastModified":"1301902288000","name":"Ernst Albert Schaach","type":"Person","_key":"27684"} +{"label":"Eva Sommer","version":19,"id":"36309","lastModified":"1301901890000","name":"Eva Sommer","type":"Person","_key":"27685"} +{"label":"Das Ekel","description":"No overview found.","id":"6013","runtime":75,"imdbId":"tt0031266","version":43,"lastModified":"1301906079000","studio":"Tobis","genre":"Comedy","title":"Das Ekel","releaseDate":-959731200000,"language":"en","type":"Movie","_key":"27686"} +{"label":"Hans Moser","version":17,"birthday":"-2821309200000","id":"47301","lastModified":"1301901734000","name":"Hans Moser","type":"Person","_key":"27687"} +{"label":"Josefine Dora","version":20,"id":"47302","lastModified":"1301902103000","name":"Josefine Dora","type":"Person","_key":"27688"} +{"label":"Herma Relin","version":19,"id":"47303","lastModified":"1301902103000","name":"Herma Relin","type":"Person","_key":"27689"} +{"label":"Josi Kleinpeter","version":19,"id":"47304","lastModified":"1301901890000","name":"Josi Kleinpeter","type":"Person","_key":"27690"} +{"label":"Hans Junkermann","version":19,"id":"47305","lastModified":"1301901890000","name":"Hans Junkermann","type":"Person","_key":"27691"} +{"label":"Hans Holt","version":19,"id":"47306","lastModified":"1301902288000","name":"Hans Holt","type":"Person","_key":"27692"} +{"label":"Das Ekel","description":"No overview found.","id":"6014","runtime":82,"imdbId":"tt0021833","version":52,"lastModified":"1301906079000","studio":"Universal Film","genre":"Comedy","title":"Das Ekel","releaseDate":-1230768000000,"language":"en","type":"Movie","_key":"27693"} +{"label":"Eugen Sch\u00fcfftan","version":32,"id":"1758","lastModified":"1301901251000","name":"Eugen Sch\u00fcfftan","type":"Person","_key":"27694"} +{"label":"Franz Wenzler","version":19,"id":"47308","lastModified":"1301902288000","name":"Franz Wenzler","type":"Person","_key":"27695"} +{"label":"Emilia Unda","version":21,"id":"47313","lastModified":"1301901956000","name":"Emilia Unda","type":"Person","_key":"27696"} +{"label":"Evelyn Holt","version":20,"id":"47314","lastModified":"1301901816000","name":"Evelyn Holt","type":"Person","_key":"27697"} +{"label":"Heinz Wagner","version":19,"id":"47315","lastModified":"1301901890000","name":"Heinz Wagner","type":"Person","_key":"27698"} +{"label":"Heinz K\u00f6necke","version":20,"id":"47316","lastModified":"1301901998000","name":"Heinz K\u00f6necke","type":"Person","_key":"27699"} +{"label":"Viktor Franz","version":19,"id":"47317","lastModified":"1301902103000","name":"Viktor Franz","type":"Person","_key":"27700"} +{"label":"Ernst Pr\u00f6ckl","version":19,"id":"47318","lastModified":"1301902103000","name":"Ernst Pr\u00f6ckl","type":"Person","_key":"27701"} +{"label":"Hans Hermann Schaufuss","version":19,"id":"47319","lastModified":"1301902103000","name":"Hans Hermann Schaufuss","type":"Person","_key":"27702"} +{"label":"Wallander - Steget efter","description":"Shortly after police discovers the murder of three friends, police inspector Wallander finds his friend and colleague Svedberg dead. At first believing that Svedberg killed himself, Wallander soon discovers links between Svedberg, the three friends and a fourth person, a young woman at a mental institution.","id":"6015","runtime":100,"imdbId":"tt0431417","version":81,"lastModified":"1302012292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4d42d31e7b9aa15bbf0046be\/steget-efter-mid.jpg","studio":"Film I Vast","genre":"Thriller","title":"Wallander - Steget efter","releaseDate":1119744000000,"language":"en","type":"Movie","_key":"27703"} +{"label":"Birger Larsen","version":28,"id":"47320","lastModified":"1302012292000","name":"Birger Larsen","type":"Person","_key":"27704"} +{"label":"Christer Fant","version":23,"id":"47328","lastModified":"1302012292000","name":"Christer Fant","type":"Person","_key":"27705"} +{"label":"Lars Melin","version":26,"id":"47329","lastModified":"1302012292000","name":"Lars Melin","type":"Person","_key":"27706"} +{"label":"Kerstin Andersson","version":27,"id":"47330","lastModified":"1302012292000","name":"Kerstin Andersson","type":"Person","_key":"27707"} +{"label":"The Good Thief","description":"A compulsive gambler plans the heist of his life - a priceless collection of art from the world-class Casino Riviera in Monte Carlo.","id":"6016","runtime":108,"imdbId":"tt0281820","version":111,"lastModified":"1302038798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bb\/4bc91d67017a3c57fe00b7bb\/the-good-thief-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Crime","title":"The Good Thief","releaseDate":1031270400000,"language":"en","type":"Movie","_key":"27708"} +{"label":"Nutsa Kukhianidze","version":19,"id":"47334","lastModified":"1301902166000","name":"Nutsa Kukhianidze","type":"Person","_key":"27709"} +{"label":"Marc Lavoine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b9\/4d0e11095e73d6370e0013b9\/marc-lavoine-profile.jpg","version":40,"id":"47336","lastModified":"1301901374000","name":"Marc Lavoine","type":"Person","_key":"27710"} +{"label":"Patricia Kell","version":20,"id":"47339","lastModified":"1301902103000","name":"Patricia Kell","type":"Person","_key":"27711"} +{"label":"Das Weihnachts-Ekel","description":"No overview found.","id":"6017","runtime":90,"imdbId":"tt0920898","version":50,"lastModified":"1301905646000","studio":"Klaus Graf Filmproduktion GmbH","genre":"Comedy","title":"Das Weihnachts-Ekel","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"27712"} +{"label":"Kristina Sprenger","version":19,"id":"47344","lastModified":"1301901734000","name":"Kristina Sprenger","type":"Person","_key":"27713"} +{"label":"Gerd Silberbauer","version":20,"id":"47345","lastModified":"1301902288000","name":"Gerd Silberbauer","type":"Person","_key":"27714"} +{"label":"Julia Cencig","version":21,"id":"47346","lastModified":"1301901959000","name":"Julia Cencig","type":"Person","_key":"27715"} +{"label":"Oskar Weiskopf","version":19,"id":"47347","lastModified":"1301902288000","name":"Oskar Weiskopf","type":"Person","_key":"27716"} +{"label":"Hans Rainer","version":19,"id":"47348","lastModified":"1301902288000","name":"Hans Rainer","type":"Person","_key":"27717"} +{"label":"Herbert Strein","version":19,"id":"47349","lastModified":"1301902288000","name":"Herbert Strein","type":"Person","_key":"27718"} +{"label":"Johanna Lindinger","version":19,"id":"47350","lastModified":"1301902288000","name":"Johanna Lindinger","type":"Person","_key":"27719"} +{"label":"Junge Leute brauchen Liebe","description":"No overview found.","id":"6018","runtime":93,"imdbId":"tt0055033","version":46,"lastModified":"1301906079000","studio":"Dr. Herbert Gruber Produktion","genre":"Musical","title":"Junge Leute brauchen Liebe","releaseDate":-283996800000,"language":"en","type":"Movie","_key":"27720"} +{"label":"Johannes Heesters","version":21,"id":"47352","lastModified":"1301901733000","name":"Johannes Heesters","type":"Person","_key":"27721"} +{"label":"Waltraut Haas","version":25,"id":"47353","lastModified":"1301901449000","name":"Waltraut Haas","type":"Person","_key":"27722"} +{"label":"Katharina Mayberg","version":21,"id":"47354","lastModified":"1301902165000","name":"Katharina Mayberg","type":"Person","_key":"27723"} +{"label":"Boy Gobert","version":26,"id":"47355","lastModified":"1301901960000","name":"Boy Gobert","type":"Person","_key":"27724"} +{"label":"Sieglinde Thomas","version":20,"id":"47356","lastModified":"1301902288000","name":"Sieglinde Thomas","type":"Person","_key":"27725"} +{"label":"Frithjof Vierock","version":21,"id":"26619","lastModified":"1301902103000","name":"Frithjof Vierock","type":"Person","_key":"27726"} +{"label":"Charleys Onkel","description":"No overview found.","id":"6019","runtime":93,"imdbId":"tt0064154","version":58,"lastModified":"1301906630000","studio":"Allianz","genre":"Comedy","title":"Charleys Onkel","releaseDate":-22291200000,"language":"en","type":"Movie","_key":"27727"} +{"label":"J\u00fcrgen Barz","version":19,"id":"47357","lastModified":"1301902288000","name":"J\u00fcrgen Barz","type":"Person","_key":"27728"} +{"label":"Rudolf Beiswanger","version":20,"id":"47358","lastModified":"1301902288000","name":"Rudolf Beiswanger","type":"Person","_key":"27729"} +{"label":"Karel Gott","version":21,"id":"47359","lastModified":"1301902388000","name":"Karel Gott","type":"Person","_key":"27730"} +{"label":"Edith Hancke","version":21,"id":"47360","lastModified":"1301902134000","name":"Edith Hancke","type":"Person","_key":"27731"} +{"label":"Ingo Insterburg","version":19,"id":"47361","lastModified":"1301902288000","name":"Ingo Insterburg","type":"Person","_key":"27732"} +{"label":"Willy Millowitsch","version":22,"id":"46234","lastModified":"1301902156000","name":"Willy Millowitsch","type":"Person","_key":"27733"} +{"label":"Gunther Philipp","version":29,"id":"39935","lastModified":"1301901446000","name":"Gunther Philipp","type":"Person","_key":"27734"} +{"label":"Sorority Boys","description":"Three friends who head the Social Committee in a frat house, called KOK (Kappa Omicron Kappa), are charged with stealing money their fraternity has been saving for a cocktail cruise at the end of the semester, the one that guarantees them a spot at a very high paying company.","id":"6020","runtime":93,"imdbId":"tt0279781","version":150,"lastModified":"1301903629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c8\/4bc91d68017a3c57fe00b7c8\/sorority-boys-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Sorority Boys","releaseDate":1016755200000,"language":"en","type":"Movie","_key":"27735"} +{"label":"Barry Watson","version":22,"id":"47368","lastModified":"1301901581000","name":"Barry Watson","type":"Person","_key":"27736"} +{"label":"Kathryn Stockwood","version":19,"id":"47369","lastModified":"1301902103000","name":"Kathryn Stockwood","type":"Person","_key":"27737"} +{"label":"Tante Trude aus Buxtehude","description":"No overview found.","id":"6021","runtime":87,"imdbId":"tt0067825","version":60,"lastModified":"1301908334000","studio":"Divina-Film","genre":"Comedy","title":"Tante Trude aus Buxtehude","releaseDate":40521600000,"language":"en","type":"Movie","_key":"27738"} +{"label":"Ilja Richter","version":24,"id":"47268","lastModified":"1301901843000","name":"Ilja Richter","type":"Person","_key":"27739"} +{"label":"Elisabeth Krogh","version":19,"id":"47269","lastModified":"1301902288000","name":"Elisabeth Krogh","type":"Person","_key":"27740"} +{"label":"Alexander Grill","version":23,"id":"47270","lastModified":"1301902134000","name":"Alexander Grill","type":"Person","_key":"27741"} +{"label":"Doris Kirchner","version":21,"id":"47271","lastModified":"1301902156000","name":"Doris Kirchner","type":"Person","_key":"27742"} +{"label":"Raoul Retzer","version":25,"id":"47272","lastModified":"1301902134000","name":"Raoul Retzer","type":"Person","_key":"27743"} +{"label":"Edgar Wenzel","version":19,"id":"36420","lastModified":"1301901890000","name":"Edgar Wenzel","type":"Person","_key":"27744"} +{"label":"Toni Sailer","version":20,"id":"47273","lastModified":"1301902288000","name":"Toni Sailer","type":"Person","_key":"27745"} +{"label":"Dorothea Carrera","version":19,"id":"26322","lastModified":"1301902103000","name":"Dorothea Carrera","type":"Person","_key":"27746"} +{"label":"Ramona","version":19,"id":"47274","lastModified":"1301902288000","name":"Ramona","type":"Person","_key":"27747"} +{"label":"Chris Roberts","version":19,"id":"47282","lastModified":"1301902287000","name":"Chris Roberts","type":"Person","_key":"27748"} +{"label":"Evening","description":"As Constance (Natasha Richardson) and Nina (Toni Collette) gather at the deathbed of their mother, Ann (Vanessa Redgrave), they learn for the first time that their mother lived an entire other lifetime during one evening 50 years ago. In vivid flashbacks, the young Ann (Claire Daines) spends one night with a man named Harris (Patrick Wilson), who was the love of her life.","id":"6022","runtime":130,"imdbId":"tt0765447","trailer":"http:\/\/www.youtube.com\/watch?v=l_mrZiFbglI&","homepage":"http:\/\/www.focusfeatures.com\/evening\/","version":207,"lastModified":"1301902834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d1\/4bc91d69017a3c57fe00b7d1\/evening-mid.jpg","studio":"Hart-Sharp Entertainment","genre":"Drama","title":"Evening","releaseDate":1181347200000,"language":"en","type":"Movie","_key":"27749"} +{"label":"Lajos Koltai","version":32,"id":"47275","lastModified":"1301901596000","name":"Lajos Koltai","type":"Person","_key":"27750"} +{"label":"Mamie Gummer","version":27,"id":"47281","lastModified":"1301901476000","name":"Mamie Gummer","type":"Person","_key":"27751"} +{"label":"Timothy Kiefer","version":22,"id":"47661","lastModified":"1301901998000","name":"Timothy Kiefer","type":"Person","_key":"27752"} +{"label":"P.S. I Love You","description":"A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life. ","id":"6023","runtime":126,"imdbId":"tt0431308","trailer":"http:\/\/www.youtube.com\/watch?v=384","homepage":"http:\/\/www.psiloveyoumovie.co.uk\/","version":284,"lastModified":"1302029052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e6\/4bc91d6d017a3c57fe00b7e6\/p-s-i-love-you-mid.jpg","studio":"Alcon Entertainment","genre":"Comedy","title":"P.S. I Love You","releaseDate":1198108800000,"language":"en","type":"Movie","_key":"27753"} +{"label":"Jeffrey Dean Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4bd717fb017a3c21ec000105\/jeffrey-dean-morgan-profile.jpg","version":82,"id":"47296","lastModified":"1302070359000","name":"Jeffrey Dean Morgan","type":"Person","_key":"27754"} +{"label":"James Marsters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/141\/4d2066a15e73d66b2d002141\/james-marsters-profile.jpg","version":33,"id":"47297","lastModified":"1301901349000","name":"James Marsters","type":"Person","_key":"27755"} +{"label":"Nellie McKay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4d2067a55e73d66b2b0020f2\/nellie-mckay-profile.jpg","version":23,"id":"47298","lastModified":"1301901115000","name":"Nellie McKay","type":"Person","_key":"27756"} +{"label":"Anne Kent","version":21,"id":"47777","lastModified":"1301901101000","name":"Anne Kent","type":"Person","_key":"27757"} +{"label":"Brian McGrath","version":20,"id":"47778","lastModified":"1301901113000","name":"Brian McGrath","type":"Person","_key":"27758"} +{"label":"A Murder is Announced","description":"No overview found.","id":"6024","runtime":60,"imdbId":"tt0591121","version":57,"lastModified":"1301904268000","studio":"Show East","genre":"Crime","title":"A Murder is Announced","releaseDate":-410400000000,"language":"en","type":"Movie","_key":"27759"} +{"label":"Paul Stanley","version":21,"id":"47370","lastModified":"1301902157000","name":"Paul Stanley","type":"Person","_key":"27760"} +{"label":"Josephine Brown","version":20,"id":"47375","lastModified":"1301902345000","name":"Josephine Brown","type":"Person","_key":"27761"} +{"label":"Gracie Fields","version":20,"id":"47376","lastModified":"1301902157000","name":"Gracie Fields","type":"Person","_key":"27762"} +{"label":"Pat Nye","version":20,"id":"47378","lastModified":"1301902345000","name":"Pat Nye","type":"Person","_key":"27763"} +{"label":"Betty Sinclair","version":22,"id":"47379","lastModified":"1301902345000","name":"Betty Sinclair","type":"Person","_key":"27764"} +{"label":"The Alphabet Murders","description":"The Belgian detective Hercule Poirot investigates a series of murders in London in which the victims are killed according to their initials.","id":"6026","runtime":90,"imdbId":"tt0060094","version":73,"lastModified":"1301905646000","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"The Alphabet Murders","releaseDate":-139449600000,"language":"en","type":"Movie","_key":"27765"} +{"label":"Drewe Henley","version":22,"id":"47401","lastModified":"1301902193000","name":"Drewe Henley","type":"Person","_key":"27766"} +{"label":"Clive Morton","version":25,"id":"47403","lastModified":"1301902348000","name":"Clive Morton","type":"Person","_key":"27767"} +{"label":"Austin Trevor","version":26,"id":"47662","lastModified":"1301901962000","name":"Austin Trevor","type":"Person","_key":"27768"} +{"label":"Sheila Allen","version":26,"id":"6865","lastModified":"1301901383000","name":"Sheila Allen","type":"Person","_key":"27769"} +{"label":"Grazina Frame","version":20,"id":"47402","lastModified":"1301901998000","name":"Grazina Frame","type":"Person","_key":"27770"} +{"label":"Sally Douglas","version":20,"id":"47400","lastModified":"1301901998000","name":"Sally Douglas","type":"Person","_key":"27771"} +{"label":"Sheila Reid","version":28,"id":"47404","lastModified":"1301902137000","name":"Sheila Reid","type":"Person","_key":"27772"} +{"label":"Frank Tashlin","version":43,"id":"47399","lastModified":"1301901469000","name":"Frank Tashlin","type":"Person","_key":"27773"} +{"label":"Mord im Pfarrhaus","description":"No overview found.","id":"6027","runtime":90,"imdbId":"tt0340249","version":45,"lastModified":"1301908594000","studio":"ZDF","genre":"Crime","title":"Mord im Pfarrhaus","releaseDate":27993600000,"language":"en","type":"Movie","_key":"27774"} +{"label":"Herbert Mensching","version":20,"id":"26811","lastModified":"1301901998000","name":"Herbert Mensching","type":"Person","_key":"27775"} +{"label":"Edith Schneider","version":23,"id":"47407","lastModified":"1301902361000","name":"Edith Schneider","type":"Person","_key":"27776"} +{"label":"Paula Denk","version":18,"id":"47408","lastModified":"1301902204000","name":"Paula Denk","type":"Person","_key":"27777"} +{"label":"Paul Neuhaus","version":20,"id":"47409","lastModified":"1301902198000","name":"Paul Neuhaus","type":"Person","_key":"27778"} +{"label":"Fritz Haneke","version":20,"id":"47410","lastModified":"1301902157000","name":"Fritz Haneke","type":"Person","_key":"27779"} +{"label":"Christian Margulies","version":20,"id":"47411","lastModified":"1301902157000","name":"Christian Margulies","type":"Person","_key":"27780"} +{"label":"The Mirror Crack'd","description":"Jane Marple solves the mystery when a local woman is poisoned and a visiting movie star seems to have been the intended victim.","id":"6028","runtime":105,"imdbId":"tt0081163","version":128,"lastModified":"1302021229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a7\/4d74d0bf5e73d67abe0000a7\/the-mirror-crack-d-mid.jpg","studio":"EMI Films Ltd.","genre":"Crime","title":"The Mirror Crack'd","releaseDate":338169600000,"language":"en","tagline":"Mirror, mirror on the wall, who is the murderer among them all?","type":"Movie","_key":"27781"} +{"label":"Wendy Morgan","version":28,"id":"47417","lastModified":"1301902387000","name":"Wendy Morgan","type":"Person","_key":"27782"} +{"label":"Margaret Courtenay","version":23,"id":"47418","lastModified":"1301902208000","name":"Margaret Courtenay","type":"Person","_key":"27783"} +{"label":"Tayna chyornykh drozdov","description":"No overview found.","id":"6029","runtime":97,"imdbId":"tt0086407","version":68,"lastModified":"1301907280000","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Crime","title":"Tayna chyornykh drozdov","releaseDate":410227200000,"language":"en","type":"Movie","_key":"27784"} +{"label":"Ita Ever","version":23,"id":"47419","lastModified":"1301902183000","name":"Ita Ever","type":"Person","_key":"27785"} +{"label":"Vladimir Sedov","version":19,"id":"47420","lastModified":"1301902103000","name":"Vladimir Sedov","type":"Person","_key":"27786"} +{"label":"Lyubov Polishchuk","version":20,"id":"47422","lastModified":"1301902288000","name":"Lyubov Polishchuk","type":"Person","_key":"27787"} +{"label":"Yuri Belyayev","version":18,"id":"47423","lastModified":"1301902390000","name":"Yuri Belyayev","type":"Person","_key":"27788"} +{"label":"Yelena Sanayeva","version":18,"id":"47424","lastModified":"1301902390000","name":"Yelena Sanayeva","type":"Person","_key":"27789"} +{"label":"Andrei Kharitonov","version":20,"id":"47425","lastModified":"1301902390000","name":"Andrei Kharitonov","type":"Person","_key":"27790"} +{"label":"Natalya Danilova","version":31,"id":"47426","lastModified":"1301902287000","name":"Natalya Danilova","type":"Person","_key":"27791"} +{"label":"Yelena Ivochkina","version":19,"id":"47427","lastModified":"1301902287000","name":"Yelena Ivochkina","type":"Person","_key":"27792"} +{"label":"Elza Radzina","version":21,"id":"47428","lastModified":"1301901616000","name":"Elza Radzina","type":"Person","_key":"27793"} +{"label":"Boris Novikov","version":19,"id":"47430","lastModified":"1301902287000","name":"Boris Novikov","type":"Person","_key":"27794"} +{"label":"Mariya Barabanova","version":20,"id":"47431","lastModified":"1301902287000","name":"Mariya Barabanova","type":"Person","_key":"27795"} +{"label":"Lembit Ulfsak","version":24,"id":"47432","lastModified":"1301901790000","name":"Lembit Ulfsak","type":"Person","_key":"27796"} +{"label":"Irina Mazurkevich","version":19,"id":"47433","lastModified":"1301902287000","name":"Irina Mazurkevich","type":"Person","_key":"27797"} +{"label":"Aleksandr Pyatkov","version":23,"id":"47434","lastModified":"1301902287000","name":"Aleksandr Pyatkov","type":"Person","_key":"27798"} +{"label":"Nina Agapova","version":19,"id":"47435","lastModified":"1301902287000","name":"Nina Agapova","type":"Person","_key":"27799"} +{"label":"Veronika Izotova","version":19,"id":"47437","lastModified":"1301902103000","name":"Veronika Izotova","type":"Person","_key":"27800"} +{"label":"Yuriy Moroz","version":18,"id":"47438","lastModified":"1301902390000","name":"Yuriy Moroz","type":"Person","_key":"27801"} +{"label":"Tamara Nosova","version":25,"id":"86708","lastModified":"1301902450000","name":"Tamara Nosova","type":"Person","_key":"27802"} +{"label":"Vadim Derbenyov","version":22,"id":"47442","lastModified":"1301902181000","name":"Vadim Derbenyov","type":"Person","_key":"27803"} +{"label":"A Caribbean Mystery","description":"No overview found.","id":"6030","runtime":120,"imdbId":"tt0085296","version":94,"lastModified":"1301903854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f5\/4bc91d6e017a3c57fe00b7f5\/a-caribbean-mystery-mid.jpg","studio":"Warner Bros. Television","genre":"Crime","title":"A Caribbean Mystery","releaseDate":435628800000,"language":"en","type":"Movie","_key":"27804"} +{"label":"Helen Hayes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6cc\/4ca9eff67b9aa17aca0006cc\/helen-hayes-profile.jpg","version":38,"id":"47439","lastModified":"1301901286000","name":"Helen Hayes","type":"Person","_key":"27805"} +{"label":"Jameson Parker","version":22,"id":"47441","lastModified":"1301901945000","name":"Jameson Parker","type":"Person","_key":"27806"} +{"label":"Season Hubley","version":22,"id":"47456","lastModified":"1301901714000","name":"Season Hubley","type":"Person","_key":"27807"} +{"label":"Cassie Yates","version":22,"id":"47457","lastModified":"1301901858000","name":"Cassie Yates","type":"Person","_key":"27808"} +{"label":"Zakes Mokae","version":30,"id":"47458","lastModified":"1301901463000","name":"Zakes Mokae","type":"Person","_key":"27809"} +{"label":"Stephen Macht","version":27,"id":"41274","lastModified":"1302031337000","name":"Stephen Macht","type":"Person","_key":"27810"} +{"label":"Beth Howland","version":19,"id":"47459","lastModified":"1301902287000","name":"Beth Howland","type":"Person","_key":"27811"} +{"label":"Lynne Moody","version":20,"id":"47460","lastModified":"1301902287000","name":"Lynne Moody","type":"Person","_key":"27812"} +{"label":"George Innes","version":23,"id":"26131","lastModified":"1301901803000","name":"George Innes","type":"Person","_key":"27813"} +{"label":"Michael Preston","version":34,"id":"47461","lastModified":"1301901680000","name":"Michael Preston","type":"Person","_key":"27814"} +{"label":"Bernard McDonald","version":20,"id":"47462","lastModified":"1301902373000","name":"Bernard McDonald","type":"Person","_key":"27815"} +{"label":"Santos Morales","version":20,"id":"47463","lastModified":"1301902103000","name":"Santos Morales","type":"Person","_key":"27816"} +{"label":"Cecil Smith","version":20,"id":"47464","lastModified":"1301902373000","name":"Cecil Smith","type":"Person","_key":"27817"} +{"label":"Robert Michael Lewis","version":25,"id":"47449","lastModified":"1301902368000","name":"Robert Michael Lewis","type":"Person","_key":"27818"} +{"label":"Murder with Mirrors","description":"No overview found.","id":"6032","runtime":100,"imdbId":"tt0089640","version":94,"lastModified":"1301907109000","studio":"Warner Bros. Television","genre":"Crime","title":"Murder with Mirrors","releaseDate":477705600000,"language":"en","type":"Movie","_key":"27819"} +{"label":"Dick Lowry","version":40,"id":"33880","lastModified":"1301901497000","name":"Dick Lowry","type":"Person","_key":"27820"} +{"label":"Liane Langland","version":21,"id":"47467","lastModified":"1301902183000","name":"Liane Langland","type":"Person","_key":"27821"} +{"label":"Murder by Death","description":"Five famous literary detective characters and their sidekicks are invited to a bizarre mansion to solve an even stranger mystery.","id":"6037","runtime":94,"imdbId":"tt0074937","trailer":"http:\/\/www.youtube.com\/watch?v=T3tWVeZCFO8","version":182,"lastModified":"1301904891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4bc91d71017a3c57fe00b802\/murder-by-death-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Murder by Death","releaseDate":204336000000,"language":"en","type":"Movie","_key":"27822"} +{"label":"Robert Moore","version":21,"id":"47498","lastModified":"1301902287000","name":"Robert Moore","type":"Person","_key":"27823"} +{"label":"James Coco","version":31,"id":"41220","lastModified":"1301901530000","name":"James Coco","type":"Person","_key":"27824"} +{"label":"Nancy Walker","version":23,"id":"47503","lastModified":"1301902287000","name":"Nancy Walker","type":"Person","_key":"27825"} +{"label":"Estelle Winwood","version":29,"id":"47504","lastModified":"1301901644000","name":"Estelle Winwood","type":"Person","_key":"27826"} +{"label":"Richard Narita","version":21,"id":"47505","lastModified":"1301901890000","name":"Richard Narita","type":"Person","_key":"27827"} +{"label":"Shanghai Knights","description":"The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.","id":"6038","runtime":115,"imdbId":"tt0300471","trailer":"http:\/\/www.youtube.com\/watch?v=1784","homepage":"http:\/\/www.shanghaiknights.com\/","version":371,"lastModified":"1301901860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f89\/4d4451d57b9aa15bb0005f89\/shanghai-knights-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Shanghai Knights","releaseDate":1044576000000,"language":"en","tagline":"A Royal Kick In The Arse.","type":"Movie","_key":"27828"} +{"label":"Fann Wong","version":27,"id":"49734","lastModified":"1301901683000","name":"Fann Wong","type":"Person","_key":"27829"} +{"label":"Aidan Gillen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a7\/4d20b6f47b9aa1737b0022a7\/aidan-gillen-profile.jpg","version":36,"id":"49735","lastModified":"1301901090000","name":"Aidan Gillen","type":"Person","_key":"27830"} +{"label":"Lord Edgware Dies","description":"No overview found.","id":"6056","runtime":80,"imdbId":"tt0025419","version":51,"lastModified":"1301906175000","studio":"R\u00e9alisation d'Art Cin\u00e9matographique","genre":"Crime","title":"Lord Edgware Dies","releaseDate":-1117756800000,"language":"en","type":"Movie","_key":"27831"} +{"label":"Henry Edwards","version":22,"id":"47657","lastModified":"1301902373000","name":"Henry Edwards","type":"Person","_key":"27832"} +{"label":"Richard Cooper","version":23,"id":"47663","lastModified":"1301902010000","name":"Richard Cooper","type":"Person","_key":"27833"} +{"label":"John Turnbull","version":22,"id":"47664","lastModified":"1301901998000","name":"John Turnbull","type":"Person","_key":"27834"} +{"label":"Michael Shepley","version":22,"id":"47665","lastModified":"1301902392000","name":"Michael Shepley","type":"Person","_key":"27835"} +{"label":"Leslie Perrins","version":22,"id":"47666","lastModified":"1301902202000","name":"Leslie Perrins","type":"Person","_key":"27836"} +{"label":"C.V. France","version":23,"id":"47667","lastModified":"1301902130000","name":"C.V. France","type":"Person","_key":"27837"} +{"label":"Esme Percy","version":21,"id":"47668","lastModified":"1301902373000","name":"Esme Percy","type":"Person","_key":"27838"} +{"label":"Impact Earth","description":"No overview found.","id":"6057","runtime":90,"imdbId":"tt0968741","version":156,"lastModified":"1301908594000","studio":"Darlow Smithson Productions","genre":"Disaster","title":"Impact Earth","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"27839"} +{"label":"Rowena King","version":25,"id":"47669","lastModified":"1301901676000","name":"Rowena King","type":"Person","_key":"27840"} +{"label":"Cristian Solimeno","version":32,"id":"47670","lastModified":"1301954025000","name":"Cristian Solimeno","type":"Person","_key":"27841"} +{"label":"Teo-Wa Vuong","version":20,"id":"49811","lastModified":"1301901998000","name":"Teo-Wa Vuong","type":"Person","_key":"27842"} +{"label":"Kirsty Mitchell","version":25,"id":"49812","lastModified":"1301901592000","name":"Kirsty Mitchell","type":"Person","_key":"27843"} +{"label":"Don Warrington","version":20,"id":"49813","lastModified":"1301902388000","name":"Don Warrington","type":"Person","_key":"27844"} +{"label":"Keith Boak","version":20,"id":"47671","lastModified":"1301901998000","name":"Keith Boak","type":"Person","_key":"27845"} +{"label":"The Patriot","description":"Doctor Wesley McClaren is an immunologist in Ennis, Montana, and he has turned down an offer to join his friend Richard Bach, who lives in Atlanta, Georgia, and is the head of a unit called the Biological Response Team (BRT). Wesley and his daughter Holly live on a farm in Ennis, and a farmhand named Frank lives with them. Just over the hill from the farm, a 52 day standoff against militia leader Floyd Chisolm has ended. Floyd has decided to be his own attorney in court. Everyone is shocked when","id":"6058","runtime":90,"imdbId":"tt0120786","version":564,"lastModified":"1301904190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/815\/4bc91d72017a3c57fe00b815\/the-patriot-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The Patriot","releaseDate":900028800000,"language":"en","type":"Movie","_key":"27846"} +{"label":"Silas Weir Mitchell","version":24,"id":"49815","lastModified":"1301902192000","name":"Silas Weir Mitchell","type":"Person","_key":"27847"} +{"label":"Damon Collazo","version":20,"id":"49816","lastModified":"1301902373000","name":"Damon Collazo","type":"Person","_key":"27848"} +{"label":"Alibi","description":"No overview found.","id":"6059","runtime":75,"imdbId":"tt0021598","version":95,"lastModified":"1301906933000","studio":"Twickenham Film Studios","genre":"Crime","title":"Alibi","releaseDate":-1230768000000,"language":"en","type":"Movie","_key":"27849"} +{"label":"Leslie S. Hiscott","version":20,"id":"47672","lastModified":"1301902103000","name":"Leslie S. Hiscott","type":"Person","_key":"27850"} +{"label":"Franklin Dyall","version":21,"id":"47677","lastModified":"1301902135000","name":"Franklin Dyall","type":"Person","_key":"27851"} +{"label":"Elizabeth Allan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/98c\/4be453a3017a3c35b700098c\/elizabeth-allan-profile.jpg","version":29,"id":"47678","lastModified":"1301901816000","name":"Elizabeth Allan","type":"Person","_key":"27852"} +{"label":"John Deverell","version":20,"id":"47679","lastModified":"1301902373000","name":"John Deverell","type":"Person","_key":"27853"} +{"label":"Ronald Ward","version":20,"id":"47680","lastModified":"1301902103000","name":"Ronald Ward","type":"Person","_key":"27854"} +{"label":"Mary Jerrold","version":21,"id":"47681","lastModified":"1301902384000","name":"Mary Jerrold","type":"Person","_key":"27855"} +{"label":"Mercia Swinburne","version":19,"id":"47682","lastModified":"1301902287000","name":"Mercia Swinburne","type":"Person","_key":"27856"} +{"label":"Harvey Braban","version":19,"id":"47683","lastModified":"1301902287000","name":"Harvey Braban","type":"Person","_key":"27857"} +{"label":"Diana Beaumont","version":20,"id":"47684","lastModified":"1301902310000","name":"Diana Beaumont","type":"Person","_key":"27858"} +{"label":"Earl Grey","version":19,"id":"47685","lastModified":"1301902287000","name":"Earl Grey","type":"Person","_key":"27859"} +{"label":"Black Coffee","description":"No overview found.","id":"6060","runtime":78,"imdbId":"tt0021669","version":223,"lastModified":"1301905282000","studio":"Twickenham Film Studios","genre":"Crime","title":"Black Coffee","releaseDate":-1220400000000,"language":"en","type":"Movie","_key":"27860"} +{"label":"Adrianne Allen","version":19,"id":"47688","lastModified":"1301902287000","name":"Adrianne Allen","type":"Person","_key":"27861"} +{"label":"Philip Strange","version":19,"id":"47689","lastModified":"1301902287000","name":"Philip Strange","type":"Person","_key":"27862"} +{"label":"Dino Galvani","version":20,"id":"47690","lastModified":"1301902317000","name":"Dino Galvani","type":"Person","_key":"27863"} +{"label":"Marie Wright","version":20,"id":"47691","lastModified":"1301902373000","name":"Marie Wright","type":"Person","_key":"27864"} +{"label":"Leila Page","version":20,"id":"47692","lastModified":"1301902373000","name":"Leila Page","type":"Person","_key":"27865"} +{"label":"Six Days Seven Nights","description":"When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.","id":"6068","runtime":98,"imdbId":"tt0120828","version":495,"lastModified":"1301901850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81e\/4bc91d73017a3c57fe00b81e\/six-days-seven-nights-mid.jpg","studio":"Caravan Pictures","genre":"Action","title":"Six Days Seven Nights","releaseDate":897609600000,"language":"en","tagline":"After this week in paradise, they\u2019re going to need a vacation.","type":"Movie","_key":"27866"} +{"label":"Jacqueline Obradors","version":39,"id":"49818","lastModified":"1301901591000","name":"Jacqueline Obradors","type":"Person","_key":"27867"} +{"label":"The Witches of Eastwick","description":"Three single women in a picturesque village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.","id":"6069","runtime":118,"imdbId":"tt0094332","trailer":"http:\/\/www.youtube.com\/watch?v=ip1a-QEJY3Q","version":421,"lastModified":"1301902037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c8\/4d1d9c4b5e73d66b2d0003c8\/the-witches-of-eastwick-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"The Witches of Eastwick","releaseDate":536457600000,"language":"en","tagline":"Three Beautiful Women. One Lucky Devil.","type":"Movie","_key":"27868"} +{"label":"Keith Jochim","version":21,"id":"49820","lastModified":"1301902287000","name":"Keith Jochim","type":"Person","_key":"27869"} +{"label":"Helen Lloyd Breed","version":23,"id":"49821","lastModified":"1301902317000","name":"Helen Lloyd Breed","type":"Person","_key":"27870"} +{"label":"Caroline Struzik","version":21,"id":"49822","lastModified":"1301902287000","name":"Caroline Struzik","type":"Person","_key":"27871"} +{"label":"Kiss of Death","description":"No overview found.","id":"6071","runtime":101,"imdbId":"tt0113552","trailer":"http:\/\/www.youtube.com\/watch?v=gzF3Z9IObMU","version":504,"lastModified":"1301905121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4bd3c6d9017a3c5342000062\/kiss-of-death-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Kiss of Death","releaseDate":798422400000,"language":"en","type":"Movie","_key":"27872"} +{"label":"Kathryn Erbe","version":31,"id":"49824","lastModified":"1301901401000","name":"Kathryn Erbe","type":"Person","_key":"27873"} +{"label":"One Eight Seven","description":"After surviving a stabbing by a student, teacher Trevor Garfield moves from New York to Los Angeles. There, he resumes teaching as a substitute teacher. The education system, where violent bullies control the classrooms and the administration is afraid of lawsuits, slowly drives Garfield mad.","id":"6072","runtime":119,"imdbId":"tt0118531","version":325,"lastModified":"1301904136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2a\/4d704ddc5e73d66b2b004b2a\/one-eight-seven-mid.jpg","studio":"Icon Film","genre":"Drama","title":"One Eight Seven","releaseDate":870220800000,"language":"en","type":"Movie","_key":"27874"} +{"label":"Kelly Rowan","version":32,"id":"47757","lastModified":"1301901602000","name":"Kelly Rowan","type":"Person","_key":"27875"} +{"label":"Lobo Sebastian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/003\/4ca626b87b9aa17acc000003\/lobo-sebastian-profile.jpg","version":34,"id":"48071","lastModified":"1302065382000","name":"Lobo Sebastian","type":"Person","_key":"27876"} +{"label":"Jonah Rooney","version":21,"id":"48072","lastModified":"1301901890000","name":"Jonah Rooney","type":"Person","_key":"27877"} +{"label":"Kevin Reynolds","version":39,"id":"8300","lastModified":"1301901164000","name":"Kevin Reynolds","type":"Person","_key":"27878"} +{"label":"The Mexican","description":"A man tries to transport an ancient gun called The Mexican, believed to carry a curse, back across the border, while his girlfriend pressures him to give up his criminal ways.","id":"6073","runtime":123,"imdbId":"tt0236493","trailer":"http:\/\/www.youtube.com\/watch?v=jv75WGm_lyU","version":202,"lastModified":"1301903755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/849\/4bc91d78017a3c57fe00b849\/the-mexican-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"The Mexican","releaseDate":983491200000,"language":"en","type":"Movie","_key":"27879"} +{"label":"Michael Cerveris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/820\/4cf548a35e73d6299b000820\/michael-cerveris-profile.jpg","version":29,"id":"49827","lastModified":"1301901529000","name":"Michael Cerveris","type":"Person","_key":"27880"} +{"label":"Black Coffee","description":"No overview found.","id":"6074","runtime":70,"imdbId":"tt0948568","version":235,"lastModified":"1301908334000","studio":"ZDF","genre":"Crime","title":"Black Coffee","releaseDate":113184000000,"language":"en","type":"Movie","_key":"27881"} +{"label":"Claus Peter Witt","version":21,"id":"47761","lastModified":"1301902103000","name":"Claus Peter Witt","type":"Person","_key":"27882"} +{"label":"Horst Bollmann","version":19,"id":"47762","lastModified":"1301902103000","name":"Horst Bollmann","type":"Person","_key":"27883"} +{"label":"Heinz Fabian","version":19,"id":"47763","lastModified":"1301902287000","name":"Heinz Fabian","type":"Person","_key":"27884"} +{"label":"Otto Kurth","version":19,"id":"47764","lastModified":"1301902287000","name":"Otto Kurth","type":"Person","_key":"27885"} +{"label":"Anita Lochner","version":19,"id":"26817","lastModified":"1301902103000","name":"Anita Lochner","type":"Person","_key":"27886"} +{"label":"Ulli Philipp","version":19,"id":"47765","lastModified":"1301902287000","name":"Ulli Philipp","type":"Person","_key":"27887"} +{"label":"Jochen Schmidt","version":19,"id":"47766","lastModified":"1301902103000","name":"Jochen Schmidt","type":"Person","_key":"27888"} +{"label":"Jochen Sostmann","version":19,"id":"36310","lastModified":"1301901890000","name":"Jochen Sostmann","type":"Person","_key":"27889"} +{"label":"Herbert Weicker","version":20,"id":"47767","lastModified":"1301902287000","name":"Herbert Weicker","type":"Person","_key":"27890"} +{"label":"Carlito's Way","description":"A Puerto-Rican ex-con, just released from prison, pledges to stay away from drugs and violence despite the pressure around him and lead on to a better life outside of NYC.","id":"6075","runtime":114,"imdbId":"tt0106519","trailer":"http:\/\/www.youtube.com\/watch?v=3392","version":604,"lastModified":"1301901478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/856\/4bc91d79017a3c57fe00b856\/carlito-s-way-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Carlito's Way","releaseDate":752889600000,"language":"en","type":"Movie","_key":"27891"} +{"label":"Ingrid Rogers","version":24,"id":"47769","lastModified":"1301901848000","name":"Ingrid Rogers","type":"Person","_key":"27892"} +{"label":"Joseph Siravo","version":28,"id":"47770","lastModified":"1302066196000","name":"Joseph Siravo","type":"Person","_key":"27893"} +{"label":"Richard Foronjy","version":27,"id":"47771","lastModified":"1301902392000","name":"Richard Foronjy","type":"Person","_key":"27894"} +{"label":"Jorge Porcel","version":22,"id":"47772","lastModified":"1301902373000","name":"Jorge Porcel","type":"Person","_key":"27895"} +{"label":"Paul Mazursky","version":64,"id":"47773","lastModified":"1301901421000","name":"Paul Mazursky","type":"Person","_key":"27896"} +{"label":"Vincent Pastore","version":33,"id":"47774","lastModified":"1301901780000","name":"Vincent Pastore","type":"Person","_key":"27897"} +{"label":"Marc Anthony","version":37,"id":"47775","lastModified":"1301901228000","name":"Marc Anthony","type":"Person","_key":"27898"} +{"label":"Keinohrhasen","description":"Ludo Decker ist ein Berliner Boulevardreporter und t\u00e4glich mit Fotograf Moritz unterwegs, um Prominente f\u00fcr die Tageszeitung \u201eDas Blatt\u201c zu beobachten. Dies nutzt er h\u00e4ufig f\u00fcr fl\u00fcchtige Sexkontakte.Als Wladimir Klitschko Yvonne Catterfeld einen Heiratsantrag machen will, sind Ludo und Moritz vor Ort, um dar\u00fcber zu berichten. Ludo bricht dabei durch die Glaskuppel \u00fcber dem Restaurant, in dem sich die Verlobungsgesellschaft aufh\u00e4lt und f\u00e4llt in die Torte. Die Richterin verurteilt ihn zu 300 Sozia","id":"6076","runtime":115,"imdbId":"tt0960790","version":162,"lastModified":"1302028003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82d\/4d16c6ba5e73d6083800882d\/keinohrhasen-mid.jpg","studio":"barefoot films","genre":"Comedy","title":"Keinohrhasen","releaseDate":1197244800000,"language":"en","type":"Movie","_key":"27899"} +{"label":"Pasquale Aleardi","version":25,"id":"47779","lastModified":"1301901842000","name":"Pasquale Aleardi","type":"Person","_key":"27900"} +{"label":"Yvonne Catterfeld","version":30,"id":"45625","lastModified":"1301901492000","name":"Yvonne Catterfeld","type":"Person","_key":"27901"} +{"label":"Wladimir Klitschko","version":19,"id":"47780","lastModified":"1301901547000","name":"Wladimir Klitschko","type":"Person","_key":"27902"} +{"label":"Nina Proll","version":27,"id":"38720","lastModified":"1301901566000","name":"Nina Proll","type":"Person","_key":"27903"} +{"label":"Anne-Sophie Briest","version":27,"id":"47781","lastModified":"1301901526000","name":"Anne-Sophie Briest","type":"Person","_key":"27904"} +{"label":"Brigitte Zeh","version":21,"id":"47782","lastModified":"1301901482000","name":"Brigitte Zeh","type":"Person","_key":"27905"} +{"label":"Claudia Fritzsche","version":21,"id":"47783","lastModified":"1301901547000","name":"Claudia Fritzsche","type":"Person","_key":"27906"} +{"label":"Paul Maximilian Sch\u00fcller","version":21,"id":"47784","lastModified":"1301901547000","name":"Paul Maximilian Sch\u00fcller","type":"Person","_key":"27907"} +{"label":"Alwara H\u00f6fels","version":28,"id":"47785","lastModified":"1301901755000","name":"Alwara H\u00f6fels","type":"Person","_key":"27908"} +{"label":"13 Tzameti","description":"Sebastian, a young man, has decided to follow instructions intended for someone else, without knowing where they will take him. Something else he does not know is that Gerard Dorez, a cop on a knife-edge, is tailing him. When he reaches his destination, Sebastian falls into a degenerate, clandestine world of mental chaos behind closed doors in which men gamble on the lives of others men.","id":"6077","runtime":93,"imdbId":"tt0475169","trailer":"http:\/\/www.youtube.com\/watch?v=385","homepage":"http:\/\/www.13-tzameti.com\/","version":360,"lastModified":"1301902787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bb\/4ce4595a5e73d60f6f0006bb\/13-tzameti-mid.jpg","studio":"MK2 Productions","genre":"Thriller","title":"13 Tzameti","releaseDate":1125532800000,"language":"en","type":"Movie","_key":"27909"} +{"label":"G\u00e9la Babluani","version":28,"id":"47786","lastModified":"1301901382000","name":"G\u00e9la Babluani","type":"Person","_key":"27910"} +{"label":"George Babluani","version":21,"id":"47793","lastModified":"1301901574000","name":"George Babluani","type":"Person","_key":"27911"} +{"label":"Pascal Bongard","version":24,"id":"47796","lastModified":"1301901328000","name":"Pascal Bongard","type":"Person","_key":"27912"} +{"label":"Fred Ulysse","version":25,"id":"47797","lastModified":"1301901538000","name":"Fred Ulysse","type":"Person","_key":"27913"} +{"label":"Nicolas Pignon","version":21,"id":"47799","lastModified":"1301901616000","name":"Nicolas Pignon","type":"Person","_key":"27914"} +{"label":"Christophe Vandevelde","version":24,"id":"47801","lastModified":"1302054336000","name":"Christophe Vandevelde","type":"Person","_key":"27915"} +{"label":"Olga Legrand","version":21,"id":"47802","lastModified":"1301901616000","name":"Olga Legrand","type":"Person","_key":"27916"} +{"label":"Philippe Passon","version":21,"id":"47805","lastModified":"1301901616000","name":"Philippe Passon","type":"Person","_key":"27917"} +{"label":"Didier Ferrari","version":21,"id":"47812","lastModified":"1301901616000","name":"Didier Ferrari","type":"Person","_key":"27918"} +{"label":"Serge Chambon","version":21,"id":"47813","lastModified":"1301901733000","name":"Serge Chambon","type":"Person","_key":"27919"} +{"label":"The Strange Case of the End of Civilization as we know it","description":"No overview found.","id":"6078","runtime":56,"imdbId":"tt0076770","version":111,"lastModified":"1301901910000","genre":"Comedy","title":"The Strange Case of the End of Civilization as we know it","releaseDate":243388800000,"language":"en","type":"Movie","_key":"27920"} +{"label":"Joseph McGrath","version":24,"id":"47792","lastModified":"1301902176000","name":"Joseph McGrath","type":"Person","_key":"27921"} +{"label":"Val Pringle","version":19,"id":"47807","lastModified":"1301902103000","name":"Val Pringle","type":"Person","_key":"27922"} +{"label":"Christopher Malcolm","version":20,"id":"47808","lastModified":"1301902048000","name":"Christopher Malcolm","type":"Person","_key":"27923"} +{"label":"Dudley Jones","version":19,"id":"47809","lastModified":"1301902103000","name":"Dudley Jones","type":"Person","_key":"27924"} +{"label":"Luie Caballero","version":19,"id":"47810","lastModified":"1301902103000","name":"Luie Caballero","type":"Person","_key":"27925"} +{"label":"Kenneth Benda","version":19,"id":"47811","lastModified":"1301902103000","name":"Kenneth Benda","type":"Person","_key":"27926"} +{"label":"Vratn\u00e9 lahve","description":"Czech literature teacher Josef Tkaloun, who is past retirement age, realises one day that he no longer understands his pupils, and so he quits\u2026 dramatically. What he does not predict is that in doing this he will lose his sense of place in society.","id":"6079","runtime":103,"imdbId":"tt0809951","trailer":"http:\/\/www.youtube.com\/watch?v=388","homepage":"http:\/\/www.vratnelahve.cz\/","version":192,"lastModified":"1301905440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/406\/4cf39bd67b9aa149c6000406\/vratne-lahve-mid.jpg","studio":"Portobello Pictures","genre":"Comedy","title":"Vratn\u00e9 lahve","releaseDate":1173312000000,"language":"en","type":"Movie","_key":"27927"} +{"label":"Daniela Kol\u00e1\u0159ov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/162\/4d77f7e45e73d67eef001162\/daniela-kol-ov-profile.jpg","version":27,"id":"47833","lastModified":"1301901980000","name":"Daniela Kol\u00e1\u0159ov\u00e1","type":"Person","_key":"27928"} +{"label":"Tatiana Vilhelmov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/943\/4d0114a07b9aa15c97005943\/tatiana-vilhelmova-profile.jpg","biography":"<p><b>Tatiana \u010cech\u00e1kov\u00e1-Vilhelmov\u00e1<\/b> (born July 13, 1978 <a href=\"http:\/\/en.wikipedia.org\/wiki\/Prague\" title=\"Prague\">Prague<\/a>-<a href=\"http:\/\/en.wikipedia.org\/w\/index.php?title=Jarov&action=edit&redlink=1\" class=\"new\" title=\"Jarov (page does not exist)\">Jarov<\/a>) is a <a href=\"http:\/\/en.wikipedia.org\/wiki\/Czech_people\" title=\"Czech people\" class=\"mw-redirect\">Czech<\/a> actress frequently getting roles in Czech movies since the end of 1990's.<\/p>\n<p>She is 5 ft 3 in tall. As a kid s","version":31,"birthday":"269132400000","id":"47834","birthplace":"Prague","lastModified":"1301901375000","name":"Tatiana Vilhelmov\u00e1","type":"Person","_key":"27929"} +{"label":"Ji\u0159\u00ed Mach\u00e1\u010dek","version":30,"id":"47836","lastModified":"1301901803000","name":"Ji\u0159\u00ed Mach\u00e1\u010dek","type":"Person","_key":"27930"} +{"label":"Pavel Landovsk\u00fd","version":38,"id":"47837","lastModified":"1301901547000","name":"Pavel Landovsk\u00fd","type":"Person","_key":"27931"} +{"label":"Nella Boudov\u00e1","version":21,"id":"47839","lastModified":"1301901924000","name":"Nella Boudov\u00e1","type":"Person","_key":"27932"} +{"label":"Miroslav T\u00e1borsk\u00fd","version":25,"id":"47838","lastModified":"1301901924000","name":"Miroslav T\u00e1borsk\u00fd","type":"Person","_key":"27933"} +{"label":"Robin Soudek","version":23,"id":"47835","lastModified":"1301902121000","name":"Robin Soudek","type":"Person","_key":"27934"} +{"label":"Martin Pechl\u00e1t","version":23,"id":"47840","lastModified":"1301901924000","name":"Martin Pechl\u00e1t","type":"Person","_key":"27935"} +{"label":"Bo\u017eidara Turzonovov\u00e1","version":21,"id":"138514","lastModified":"1301902542000","name":"Bo\u017eidara Turzonovov\u00e1","type":"Person","_key":"27936"} +{"label":"V\u011bra Tich\u00e1nkov\u00e1","version":20,"id":"137021","lastModified":"1301902535000","name":"V\u011bra Tich\u00e1nkov\u00e1","type":"Person","_key":"27937"} +{"label":"Jana Plodkov\u00e1","version":20,"id":"136806","lastModified":"1301902989000","name":"Jana Plodkov\u00e1","type":"Person","_key":"27938"} +{"label":"Alena Vr\u00e1nov\u00e1","version":23,"id":"47842","lastModified":"1301901924000","name":"Alena Vr\u00e1nov\u00e1","type":"Person","_key":"27939"} +{"label":"Death on the Nile: Making of Featurette","description":"No overview found.","id":"6080","runtime":22,"imdbId":"tt0480371","version":51,"lastModified":"1301419503000","studio":"EMI Films Ltd.","genre":"Documentary","title":"Death on the Nile: Making of Featurette","releaseDate":252460800000,"language":"en","type":"Movie","_key":"27940"} +{"label":"Richard B. Goodwin","version":39,"id":"35851","lastModified":"1301901497000","name":"Richard B. Goodwin","type":"Person","_key":"27941"} +{"label":"Peter Murton","version":50,"id":"9918","lastModified":"1301901788000","name":"Peter Murton","type":"Person","_key":"27942"} +{"label":"Revenge of the Pink Panther","description":"Chief Inspector Jacques Clouseau is dead. At least that is what the world (and Charles Dreyfus) believe when a dead body is discovered in Clouseau's car after being shot off the road. Naturally, Jacques Clouseau knows differently, and taking advantage of not being alive, sets out to discover why an attempt was made on his life. ","id":"6081","runtime":104,"imdbId":"tt0078163","trailer":"http:\/\/www.youtube.com\/watch?v=q0lYj6h2eZE","version":570,"lastModified":"1302027833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/021\/4c34e1175e73d66def000021\/revenge-of-the-pink-panther-mid.jpg","studio":"United Artists","genre":"Action","title":"Revenge of the Pink Panther","releaseDate":269654400000,"language":"en","type":"Movie","_key":"27943"} +{"label":"Andrew Sachs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4c46a4b77b9aa15de10001bb\/andrew-sachs-profile.jpg","version":27,"id":"47851","lastModified":"1301901182000","name":"Andrew Sachs","type":"Person","_key":"27944"} +{"label":"Sue Lloyd","version":22,"id":"47849","lastModified":"1301901764000","name":"Sue Lloyd","type":"Person","_key":"27945"} +{"label":"Danny Schiller","version":20,"id":"47850","lastModified":"1301901925000","name":"Danny Schiller","type":"Person","_key":"27946"} +{"label":"The Making of Agatha Christie's 'Evil Under the Sun'","description":"No overview found.","id":"6083","runtime":140,"imdbId":"tt0480429","version":45,"lastModified":"1301417760000","studio":"EMI Films Ltd.","genre":"Documentary","title":"The Making of Agatha Christie's 'Evil Under the Sun'","releaseDate":378691200000,"language":"en","type":"Movie","_key":"27947"} +{"label":"Tornado - Der Zorn des Himmels","description":"No overview found.","id":"6102","runtime":119,"imdbId":"tt0478300","version":47,"lastModified":"1301904712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59d\/4d4148755e73d6571c00059d\/tornado-der-zorn-des-himmels-mid.jpg","studio":"Grundy UFA TV Produktions","genre":"Disaster","title":"Tornado - Der Zorn des Himmels","releaseDate":1157328000000,"language":"en","type":"Movie","_key":"27948"} +{"label":"Matthias Koeberlin","version":26,"id":"36730","lastModified":"1301901497000","name":"Matthias Koeberlin","type":"Person","_key":"27949"} +{"label":"Mina Tander","version":30,"id":"47852","lastModified":"1301901295000","name":"Mina Tander","type":"Person","_key":"27950"} +{"label":"Lisa Martinek","version":30,"id":"36450","lastModified":"1301901316000","name":"Lisa Martinek","type":"Person","_key":"27951"} +{"label":"Rudolf Kowalski","version":24,"id":"44430","lastModified":"1301901655000","name":"Rudolf Kowalski","type":"Person","_key":"27952"} +{"label":"Andreas Linke","version":22,"id":"47853","lastModified":"1301901949000","name":"Andreas Linke","type":"Person","_key":"27953"} +{"label":"Thirteen at Dinner","description":"Actress Jane Wilkinson wants a divorce, but her husband, Lord Edgware, refuses. She convinces Hercule Poirot to use his famed tact and logic to make her case. Lord Edgware turns up murdered, a well-placed knife wound at the base of his neck. It will take the precise Poirot to sort out the lies from the alibis - and find the criminal before another victim dies.","id":"6103","runtime":87,"imdbId":"tt0090156","version":89,"lastModified":"1301905282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecc\/4d12e9c17b9aa1147c000ecc\/thirteen-at-dinner-mid.jpg","studio":"CBS Television","genre":"Crime","title":"Thirteen at Dinner","releaseDate":495936000000,"language":"en","type":"Movie","_key":"27954"} +{"label":"Jonathan Cecil","version":30,"id":"47857","lastModified":"1301901538000","name":"Jonathan Cecil","type":"Person","_key":"27955"} +{"label":"Diane Keen","version":24,"id":"47858","lastModified":"1301902183000","name":"Diane Keen","type":"Person","_key":"27956"} +{"label":"Lee Horsley","version":25,"id":"47859","lastModified":"1301901616000","name":"Lee Horsley","type":"Person","_key":"27957"} +{"label":"Allan Cuthbertson","version":28,"id":"47860","lastModified":"1301902336000","name":"Allan Cuthbertson","type":"Person","_key":"27958"} +{"label":"Glyn Baker","version":21,"id":"47861","lastModified":"1301902183000","name":"Glyn Baker","type":"Person","_key":"27959"} +{"label":"John Barron","version":21,"id":"47862","lastModified":"1301902373000","name":"John Barron","type":"Person","_key":"27960"} +{"label":"Peter Clapham","version":20,"id":"47863","lastModified":"1301902287000","name":"Peter Clapham","type":"Person","_key":"27961"} +{"label":"Lesley Dunlop","version":20,"id":"47864","lastModified":"1301901890000","name":"Lesley Dunlop","type":"Person","_key":"27962"} +{"label":"Avril Elgar","version":20,"id":"47865","lastModified":"1301902103000","name":"Avril Elgar","type":"Person","_key":"27963"} +{"label":"Russell Keith Grant","version":20,"id":"47866","lastModified":"1301902287000","name":"Russell Keith Grant","type":"Person","_key":"27964"} +{"label":"Roger Milner","version":20,"id":"47867","lastModified":"1301902287000","name":"Roger Milner","type":"Person","_key":"27965"} +{"label":"David Neville","version":20,"id":"47868","lastModified":"1301902287000","name":"David Neville","type":"Person","_key":"27966"} +{"label":"Murder by the Book","description":"No overview found.","id":"6104","runtime":51,"imdbId":"tt0201788","version":263,"lastModified":"1301906557000","studio":"BBC Films","genre":"Crime","title":"Murder by the Book","releaseDate":504921600000,"language":"en","type":"Movie","_key":"27967"} +{"label":"Lawrence Gordon Clark","version":20,"id":"47869","lastModified":"1301902016000","name":"Lawrence Gordon Clark","type":"Person","_key":"27968"} +{"label":"Richard Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ff\/4d9a075c7b9aa15f400005ff\/richard-wilson-profile.jpg","version":34,"id":"47874","lastModified":"1301932861000","name":"Richard Wilson","type":"Person","_key":"27969"} +{"label":"John Atkinson","version":20,"id":"47875","lastModified":"1301902021000","name":"John Atkinson","type":"Person","_key":"27970"} +{"label":"Dawn Archibald","version":20,"id":"47876","lastModified":"1301901998000","name":"Dawn Archibald","type":"Person","_key":"27971"} +{"label":"Dead Man's Folly","description":"During a murder hunt game at a country house, to which Hercule Poirot is invited as an \"expert\", a real murder occurs.","id":"6105","runtime":90,"imdbId":"tt0090914","version":79,"lastModified":"1301906629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a6\/4bc91d84017a3c57fe00b8a6\/dead-man-s-folly-mid.jpg","studio":"Warner Bros. Television","genre":"Crime","title":"Dead Man's Folly","releaseDate":505526400000,"language":"en","type":"Movie","_key":"27972"} +{"label":"Jeff Yagher","version":21,"id":"47878","lastModified":"1301902307000","name":"Jeff Yagher","type":"Person","_key":"27973"} +{"label":"Salvador","description":"A second rated journalist from the US tries his luck in El Salvador during the military dictatorship in the 1980s.","id":"6106","runtime":123,"imdbId":"tt0091886","version":203,"lastModified":"1301905097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c3\/4bc91d88017a3c57fe00b8c3\/salvador-mid.jpg","studio":"Hemdale Film Corporation","genre":"Drama","title":"Salvador","releaseDate":514598400000,"language":"en","type":"Movie","_key":"27974"} +{"label":"Salvador S\u00e1nchez","version":18,"id":"47887","lastModified":"1301901667000","name":"Salvador S\u00e1nchez","type":"Person","_key":"27975"} +{"label":"John Savage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03b\/4c2357bf7b9aa13f6300003b\/john-savage-profile.jpg","version":66,"id":"47879","lastModified":"1301920453000","name":"John Savage","type":"Person","_key":"27976"} +{"label":"Colby Chester","version":21,"id":"47881","lastModified":"1301901925000","name":"Colby Chester","type":"Person","_key":"27977"} +{"label":"Cynthia Gibb","version":28,"id":"47882","lastModified":"1301901399000","name":"Cynthia Gibb","type":"Person","_key":"27978"} +{"label":"Will MacMillan","version":23,"id":"47883","lastModified":"1301902184000","name":"Will MacMillan","type":"Person","_key":"27979"} +{"label":"Valerie Wildman","version":22,"id":"47884","lastModified":"1301901955000","name":"Valerie Wildman","type":"Person","_key":"27980"} +{"label":"Jos\u00e9 Carlos Ruiz","version":18,"id":"47885","lastModified":"1301902027000","name":"Jos\u00e9 Carlos Ruiz","type":"Person","_key":"27981"} +{"label":"Jorge Luke","version":22,"id":"47886","lastModified":"1301902197000","name":"Jorge Luke","type":"Person","_key":"27982"} +{"label":"Rosario Z\u00fa\u00f1iga","version":18,"id":"47888","lastModified":"1301901980000","name":"Rosario Z\u00fa\u00f1iga","type":"Person","_key":"27983"} +{"label":"Murder in Three Acts","description":"In Acapulco, Hercule Poirot attends a dinner party in which one of the guests clutches his throat and suddenly dies. The causes seem to be natural until another party with most of the same guests produces another corpse.","id":"6107","runtime":94,"imdbId":"tt0091572","version":100,"lastModified":"1302027517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e00\/4d12e9417b9aa11486000e00\/murder-in-three-acts-mid.jpg","studio":"Warner Bros. Television","genre":"Crime","title":"Murder in Three Acts","releaseDate":528422400000,"language":"en","type":"Movie","_key":"27984"} +{"label":"Gary Nelson","version":35,"id":"47893","lastModified":"1301901445000","name":"Gary Nelson","type":"Person","_key":"27985"} +{"label":"Emma Samms","version":26,"id":"47901","lastModified":"1301901844000","name":"Emma Samms","type":"Person","_key":"27986"} +{"label":"Fernando Allende","version":22,"id":"41237","lastModified":"1301901890000","name":"Fernando Allende","type":"Person","_key":"27987"} +{"label":"Marian Mercer","version":20,"id":"47902","lastModified":"1301902287000","name":"Marian Mercer","type":"Person","_key":"27988"} +{"label":"Diana Muldaur","version":19,"id":"16014","lastModified":"1301901944000","name":"Diana Muldaur","type":"Person","_key":"27989"} +{"label":"Concetta Tomei","version":22,"id":"47903","lastModified":"1301902130000","name":"Concetta Tomei","type":"Person","_key":"27990"} +{"label":"Jacqueline Evans","version":19,"id":"47904","lastModified":"1301902287000","name":"Jacqueline Evans","type":"Person","_key":"27991"} +{"label":"\u00c1ngeles Gonz\u00e1lez","version":18,"id":"47905","lastModified":"1301902351000","name":"\u00c1ngeles Gonz\u00e1lez","type":"Person","_key":"27992"} +{"label":"Philip Guilmant","version":18,"id":"47906","lastModified":"1301902166000","name":"Philip Guilmant","type":"Person","_key":"27993"} +{"label":"Lackered Box","description":"No overview found.","id":"6108","runtime":75,"imdbId":"tt0185995","version":54,"lastModified":"1301906747000","studio":"Les \u00c9tablissements Jacques Ha\u00efk","genre":"Crime","title":"Lackered Box","releaseDate":-1198368000000,"language":"en","type":"Movie","_key":"27994"} +{"label":"Jean Kemm","version":21,"id":"47956","lastModified":"1301901829000","name":"Jean Kemm","type":"Person","_key":"27995"} +{"label":"Ren\u00e9 Alexandre","version":19,"id":"47961","lastModified":"1301901980000","name":"Ren\u00e9 Alexandre","type":"Person","_key":"27996"} +{"label":"Harry Arbell","version":21,"id":"47962","lastModified":"1301901962000","name":"Harry Arbell","type":"Person","_key":"27997"} +{"label":"Maxime Desjardins","version":22,"id":"47963","lastModified":"1301902345000","name":"Maxime Desjardins","type":"Person","_key":"27998"} +{"label":"Gaston Dupray","version":21,"id":"47964","lastModified":"1301902157000","name":"Gaston Dupray","type":"Person","_key":"27999"} +{"label":"Alice Field","version":29,"id":"47965","lastModified":"1301901655000","name":"Alice Field","type":"Person","_key":"28000"} +{"label":"Maurice Varny","version":21,"id":"47966","lastModified":"1301902345000","name":"Maurice Varny","type":"Person","_key":"28001"} +{"label":"Zagadka Endkhauza","description":"No overview found.","id":"6109","runtime":102,"imdbId":"tt0136618","version":47,"lastModified":"1301907417000","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Crime","title":"Zagadka Endkhauza","releaseDate":599616000000,"language":"en","type":"Movie","_key":"28002"} +{"label":"Anatoli Ravikovich","version":20,"id":"47918","lastModified":"1301901837000","name":"Anatoli Ravikovich","type":"Person","_key":"28003"} +{"label":"Ilona Ozola","version":20,"id":"47919","lastModified":"1301901837000","name":"Ilona Ozola","type":"Person","_key":"28004"} +{"label":"Virginija Kelmelyte","version":18,"id":"47920","lastModified":"1301901980000","name":"Virginija Kelmelyte","type":"Person","_key":"28005"} +{"label":"Dmitri Krylov","version":20,"id":"47921","lastModified":"1301902389000","name":"Dmitri Krylov","type":"Person","_key":"28006"} +{"label":"Inara Slucka","version":20,"id":"47922","lastModified":"1301902345000","name":"Inara Slucka","type":"Person","_key":"28007"} +{"label":"Murder on the Orient Express","description":"No overview found.","id":"6110","runtime":100,"imdbId":"tt0279250","version":160,"lastModified":"1302027420000","studio":"ZDF","genre":"Crime","title":"Murder on the Orient Express","releaseDate":987897600000,"language":"en","type":"Movie","_key":"28008"} +{"label":"Carl Schenkel","version":25,"id":"47924","lastModified":"1301901828000","name":"Carl Schenkel","type":"Person","_key":"28009"} +{"label":"Nicolas Chagrin","version":21,"id":"47930","lastModified":"1301902103000","name":"Nicolas Chagrin","type":"Person","_key":"28010"} +{"label":"Tasha de Vasconcelos","version":23,"id":"47931","lastModified":"1301901338000","name":"Tasha de Vasconcelos","type":"Person","_key":"28011"} +{"label":"David Hunt","version":29,"id":"47932","lastModified":"1301902103000","name":"David Hunt","type":"Person","_key":"28012"} +{"label":"Adam James","version":26,"id":"47933","lastModified":"1301901644000","name":"Adam James","type":"Person","_key":"28013"} +{"label":"Dylan Smith","version":22,"id":"47934","lastModified":"1301901338000","name":"Dylan Smith","type":"Person","_key":"28014"} +{"label":"Agatha Christie: A Life in Pictures","description":"No overview found.","id":"6112","runtime":90,"imdbId":"tt0426394","version":94,"lastModified":"1302027384000","studio":"BBC Films","genre":"Crime","title":"Agatha Christie: A Life in Pictures","releaseDate":1095811200000,"language":"en","type":"Movie","_key":"28015"} +{"label":"Richard Curson Smith","version":23,"id":"47935","lastModified":"1301901890000","name":"Richard Curson Smith","type":"Person","_key":"28016"} +{"label":"Stephen Boxer","version":22,"id":"47943","lastModified":"1301901452000","name":"Stephen Boxer","type":"Person","_key":"28017"} +{"label":"Anthony O'Donnell","version":24,"id":"47944","lastModified":"1301902351000","name":"Anthony O'Donnell","type":"Person","_key":"28018"} +{"label":"Celia Montague","version":19,"id":"47945","lastModified":"1301902103000","name":"Celia Montague","type":"Person","_key":"28019"} +{"label":"Neudacha Puaro","description":"No overview found.","id":"6113","runtime":90,"imdbId":"tt0340265","version":46,"lastModified":"1301906747000","studio":"\u041c\u043e\u0441\u0444\u0438\u043b\u044c\u043c","genre":"Crime","title":"Neudacha Puaro","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"28020"} +{"label":"Sergei Ursulyak","version":21,"id":"47946","lastModified":"1301901788000","name":"Sergei Ursulyak","type":"Person","_key":"28021"} +{"label":"Konstantin Rajkin","version":21,"id":"47948","lastModified":"1301901703000","name":"Konstantin Rajkin","type":"Person","_key":"28022"} +{"label":"Svetlana Nemolyaeva","version":22,"id":"47949","lastModified":"1301901667000","name":"Svetlana Nemolyaeva","type":"Person","_key":"28023"} +{"label":"Yuri Chursin","version":20,"id":"47951","lastModified":"1301902373000","name":"Yuri Chursin","type":"Person","_key":"28024"} +{"label":"Yelena Kozelkova","version":20,"id":"47952","lastModified":"1301901998000","name":"Yelena Kozelkova","type":"Person","_key":"28025"} +{"label":"Sergey Makovetskiy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4c4a25675e73d62714000155\/sergey-makovetskiy-profile.jpg","biography":"Sergei Vasilevich Makovetsky was born on June 13, 1958, in Darnitsa, a suburb of Kiev, Ukraine. Though he excelled at swimming and water polo and had aspirations to join the Soviet Olympic Team, his single mother encouraged him to pursue a more creative line of expression. When his application to study acting at Kiev Theatrical College was denied, Makovetsky moved behind the scenes working as a set decorator in Kiev before relocating to Moscow. Rejection from several Moscow theater schools and a","version":40,"birthday":"-364611600000","id":"125737","birthplace":"Kiev, Ukraine, Soviet Union (now Kyiv, Ukraine) ","lastModified":"1301901238000","name":"Sergey Makovetskiy","type":"Person","_key":"28026"} +{"label":"Bram Stoker's Dracula","description":"When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Harker -- the spitting image of Dracula's long-dead wife, Elisabeta -- obsessed vampire hunter Dr. Van Helsing sets out to end the madness.","id":"6114","runtime":128,"imdbId":"tt0103874","trailer":"http:\/\/www.youtube.com\/watch?v=1493","version":1422,"lastModified":"1302027322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e2\/4bc91d8e017a3c57fe00b8e2\/dracula-mid.jpg","studio":"American Zoetrope","genre":"Drama","title":"Bram Stoker's Dracula","releaseDate":721612800000,"language":"en","tagline":"The blood is the life\u2026 and it shall be mine!","type":"Movie","_key":"28027"} +{"label":"Jay Robinson","version":24,"id":"16097","lastModified":"1301901229000","name":"Jay Robinson","type":"Person","_key":"28028"} +{"label":"Michaela Bercu","version":23,"id":"47954","lastModified":"1301901456000","name":"Michaela Bercu","type":"Person","_key":"28029"} +{"label":"Florina Kendrick","version":23,"id":"47955","lastModified":"1301901510000","name":"Florina Kendrick","type":"Person","_key":"28030"} +{"label":"Promised Land","description":"A young, emigrated, South African man comes back to South Africa to sell his mothers farm.","id":"6115","runtime":100,"imdbId":"tt0295538","version":88,"lastModified":"1301905001000","studio":"Film Afrika","genre":"Drama","title":"Promised Land","releaseDate":1031616000000,"language":"en","type":"Movie","_key":"28031"} +{"label":"Jason Xenopoulos","version":19,"id":"47967","lastModified":"1301902157000","name":"Jason Xenopoulos","type":"Person","_key":"28032"} +{"label":"Nick Boraine","version":23,"id":"47969","lastModified":"1301901788000","name":"Nick Boraine","type":"Person","_key":"28033"} +{"label":"Lida Botha","version":20,"id":"47970","lastModified":"1301902025000","name":"Lida Botha","type":"Person","_key":"28034"} +{"label":"Daniel Browde","version":20,"id":"47971","lastModified":"1301901962000","name":"Daniel Browde","type":"Person","_key":"28035"} +{"label":"Tobie Cronje","version":20,"id":"47972","lastModified":"1301901566000","name":"Tobie Cronje","type":"Person","_key":"28036"} +{"label":"Dan Robbertse","version":22,"id":"47973","lastModified":"1301902345000","name":"Dan Robbertse","type":"Person","_key":"28037"} +{"label":"Spice World","description":"The film follows the Spice Girls and their entourage (mostly fictional characters) - manager Clifford, his assistant Deborah, filmmaker Piers (who is trying to shoot a documentary on \"the real Spice Girls\") and others in their everyday life.","id":"6116","runtime":93,"imdbId":"tt0120185","trailer":"http:\/\/www.youtube.com\/watch?v=XbG8d7CM0IQ","version":789,"lastModified":"1302026983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ef\/4bc91d8f017a3c57fe00b8ef\/spice-world-mid.jpg","studio":"Columbia Pictures","genre":"Adventure","title":"Spice World","releaseDate":882144000000,"language":"en","type":"Movie","_key":"28038"} +{"label":"Bob Spiers","version":23,"id":"47974","lastModified":"1301901946000","name":"Bob Spiers","type":"Person","_key":"28039"} +{"label":"Victoria Beckham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c47\/4d7e2ee95e73d65174002c47\/victoria-beckham-profile.jpg","version":20,"id":"47983","lastModified":"1301902286000","name":"Victoria Beckham","type":"Person","_key":"28040"} +{"label":"Melanie Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6f\/4d7e2f365e73d6282a002f6f\/melanie-brown-profile.jpg","version":21,"id":"47984","lastModified":"1301901890000","name":"Melanie Brown","type":"Person","_key":"28041"} +{"label":"Emma Bunton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f95\/4d7e2fac5e73d62828002f95\/emma-bunton-profile.jpg","version":22,"id":"47985","lastModified":"1301902360000","name":"Emma Bunton","type":"Person","_key":"28042"} +{"label":"Melanie Chisholm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c69\/4d7e303e5e73d65174002c69\/melanie-chisholm-profile.jpg","version":19,"id":"47986","lastModified":"1301901667000","name":"Melanie Chisholm","type":"Person","_key":"28043"} +{"label":"Geri Halliwell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f56\/4d7e2e805e73d62836002f56\/geri-halliwell-profile.jpg","version":23,"id":"47987","lastModified":"1301902136000","name":"Geri Halliwell","type":"Person","_key":"28044"} +{"label":"Devon Anderson","version":20,"id":"47988","lastModified":"1301902313000","name":"Devon Anderson","type":"Person","_key":"28045"} +{"label":"Michael Barrymore","version":19,"id":"47989","lastModified":"1301902287000","name":"Michael Barrymore","type":"Person","_key":"28046"} +{"label":"Elvis Costello","version":26,"id":"47990","lastModified":"1301901780000","name":"Elvis Costello","type":"Person","_key":"28047"} +{"label":"Bob Geldof","version":23,"id":"47991","lastModified":"1301901980000","name":"Bob Geldof","type":"Person","_key":"28048"} +{"label":"Elton John","version":37,"id":"11370","lastModified":"1301901408000","name":"Elton John","type":"Person","_key":"28049"} +{"label":"Liebe, Tanz und 1000 Schlager","description":"No overview found.","id":"6117","runtime":103,"imdbId":"tt0048300","version":82,"lastModified":"1300978454000","studio":"Central Cinema Company Film","genre":"Comedy","title":"Liebe, Tanz und 1000 Schlager","releaseDate":-448675200000,"language":"en","type":"Movie","_key":"28050"} +{"label":"Caterina Valente","version":18,"id":"48001","lastModified":"1301901980000","name":"Caterina Valente","type":"Person","_key":"28051"} +{"label":"John William Sublett","version":19,"id":"48002","lastModified":"1301902286000","name":"John William Sublett","type":"Person","_key":"28052"} +{"label":"Silvio Francesco","version":20,"id":"48003","lastModified":"1301902102000","name":"Silvio Francesco","type":"Person","_key":"28053"} +{"label":"Henry Lorenzen","version":19,"id":"48004","lastModified":"1301902286000","name":"Henry Lorenzen","type":"Person","_key":"28054"} +{"label":"Joachim Rake","version":19,"id":"36260","lastModified":"1301901890000","name":"Joachim Rake","type":"Person","_key":"28055"} +{"label":"Erik van Aro","version":19,"id":"48005","lastModified":"1301902286000","name":"Erik van Aro","type":"Person","_key":"28056"} +{"label":"Bruno W. Pantel","version":20,"id":"48006","lastModified":"1301902286000","name":"Bruno W. Pantel","type":"Person","_key":"28057"} +{"label":"Willy A. Kleinau","version":22,"id":"48007","lastModified":"1301901782000","name":"Willy A. Kleinau","type":"Person","_key":"28058"} +{"label":"Kurt Edelhagen","version":21,"id":"47999","lastModified":"1301902286000","name":"Kurt Edelhagen","type":"Person","_key":"28059"} +{"label":"Hazy Osterwald","version":22,"id":"48000","lastModified":"1301902286000","name":"Hazy Osterwald","type":"Person","_key":"28060"} +{"label":"Sunshine Quartett","version":17,"id":"48008","lastModified":"1301902286000","name":"Sunshine Quartett","type":"Person","_key":"28061"} +{"label":"Das Comedian Quartett","version":19,"id":"48009","lastModified":"1301902286000","name":"Das Comedian Quartett","type":"Person","_key":"28062"} +{"label":"James and Cornell Jackson","version":19,"id":"48010","lastModified":"1301902286000","name":"James and Cornell Jackson","type":"Person","_key":"28063"} +{"label":"Wandy Tworek","version":19,"id":"48011","lastModified":"1301902286000","name":"Wandy Tworek","type":"Person","_key":"28064"} +{"label":"Die Drei Hill Billys","version":19,"id":"47997","lastModified":"1301902287000","name":"Die Drei Hill Billys","type":"Person","_key":"28065"} +{"label":"Jonny Teupen","version":21,"id":"47998","lastModified":"1301902286000","name":"Jonny Teupen","type":"Person","_key":"28066"} +{"label":"Schlag auf Schlag","description":"No overview found.","id":"6118","runtime":97,"imdbId":"tt0052163","version":57,"lastModified":"1301905714000","studio":"Kurt Ulrich Filmproduktion","genre":"Comedy","title":"Schlag auf Schlag","releaseDate":-376272000000,"language":"en","type":"Movie","_key":"28067"} +{"label":"Mara Lane","version":21,"id":"48018","lastModified":"1301902313000","name":"Mara Lane","type":"Person","_key":"28068"} +{"label":"Erich Fiedler","version":22,"id":"48019","lastModified":"1301902156000","name":"Erich Fiedler","type":"Person","_key":"28069"} +{"label":"Werner Stock","version":20,"id":"48020","lastModified":"1301901998000","name":"Werner Stock","type":"Person","_key":"28070"} +{"label":"Joe Furtner","version":20,"id":"48021","lastModified":"1301902186000","name":"Joe Furtner","type":"Person","_key":"28071"} +{"label":"Fredy Rolf","version":20,"id":"48022","lastModified":"1301902002000","name":"Fredy Rolf","type":"Person","_key":"28072"} +{"label":"B\u00e4rbel Spanuth","version":20,"id":"48023","lastModified":"1301902002000","name":"B\u00e4rbel Spanuth","type":"Person","_key":"28073"} +{"label":"Kings Of South Beach","description":"Director Tim Hunter (The River's Edge) and screenwriter Nicholas Pileggi (Casino) join forces for this fact-based crime thriller detailing the downfall of Miami's hottest nightclub. Chris Troiano (Jason Gedrick) owns the trendiest nightclub in all of South Beach; a place where the line always winds down the block and only the most beautiful people make it past the velvet rope. ","id":"6122","runtime":90,"imdbId":"tt0780059","version":164,"lastModified":"1301907729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f8\/4bc91d90017a3c57fe00b8f8\/kings-of-south-beach-mid.jpg","studio":"Grosso-Jacobson Communications","genre":"Action","title":"Kings Of South Beach","releaseDate":1173657600000,"language":"en","type":"Movie","_key":"28074"} +{"label":"Jason Gedrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/051\/4d9a68335e73d6476a000051\/jason-gedrick-profile.jpg","version":36,"id":"48012","lastModified":"1301957652000","name":"Jason Gedrick","type":"Person","_key":"28075"} +{"label":"Nadine Velazquez","version":18,"id":"48013","lastModified":"1301902351000","name":"Nadine Velazquez","type":"Person","_key":"28076"} +{"label":"Tim Hunter","version":28,"id":"15858","lastModified":"1301901446000","name":"Tim Hunter","type":"Person","_key":"28077"} +{"label":"Desire","description":"Before plumbing the depths of horror and despair with such films as Faust and The Last Laugh, Friedrich Wilhelm Murnau tested the waters with this moody drama of a storm-bound manor and the grim mystery that lurks within. A hunting party is interrupted by the arrival of a notorious Count (Lothar Mehnert), who is believed to have murdered his brother. The uninvited guest sets in motion an elaborate plot to resurrect the ghosts of the past and bring to light the dark secret that lies at the cent","id":"6123","runtime":59,"imdbId":"tt0011676","version":101,"lastModified":"1301908333000","studio":"Mosch-Film","genre":"Drama","title":"Desire","releaseDate":-1543622400000,"language":"en","type":"Movie","_key":"28078"} +{"label":"Gussy Holl","version":21,"id":"48028","lastModified":"1301902156000","name":"Gussy Holl","type":"Person","_key":"28079"} +{"label":"Eugen Kl\u00f6pfer","version":24,"id":"48029","lastModified":"1301902156000","name":"Eugen Kl\u00f6pfer","type":"Person","_key":"28080"} +{"label":"Der Mann ohne Namen","description":"No overview found.","id":"6124","title":"Der Mann ohne Namen","language":"en","lastModified":"1301908505000","version":21,"type":"Movie","_key":"28081"} +{"label":"Der Millionendieb","description":"No overview found.","id":"6125","runtime":0,"imdbId":"tt0011436","version":69,"lastModified":"1301906078000","studio":"Projektions-AG Union","genre":"Comedy","title":"Der Millionendieb","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28082"} +{"label":"Bruno Lopinski","version":20,"id":"48037","lastModified":"1301902102000","name":"Bruno Lopinski","type":"Person","_key":"28083"} +{"label":"Georg Jacoby","version":32,"id":"48035","lastModified":"1301901655000","name":"Georg Jacoby","type":"Person","_key":"28084"} +{"label":"Harry Liedtke","version":32,"id":"48038","lastModified":"1302002936000","name":"Harry Liedtke","type":"Person","_key":"28085"} +{"label":"Paul Otto","version":24,"id":"48039","lastModified":"1301901962000","name":"Paul Otto","type":"Person","_key":"28086"} +{"label":"Erich Kaiser-Titz","version":23,"id":"48043","lastModified":"1301901980000","name":"Erich Kaiser-Titz","type":"Person","_key":"28087"} +{"label":"Karl Harbacher","version":25,"id":"48044","lastModified":"1301902183000","name":"Karl Harbacher","type":"Person","_key":"28088"} +{"label":"Edith Meller","version":25,"id":"48045","lastModified":"1301902345000","name":"Edith Meller","type":"Person","_key":"28089"} +{"label":"Tzwetta Tzatschewa","version":25,"id":"48046","lastModified":"1301902157000","name":"Tzwetta Tzatschewa","type":"Person","_key":"28090"} +{"label":"Lori Leux","version":25,"id":"48047","lastModified":"1301901962000","name":"Lori Leux","type":"Person","_key":"28091"} +{"label":"Der Kaiser der Sahara","description":"No overview found.","id":"6126","runtime":0,"imdbId":"tt0441364","version":52,"lastModified":"1301907280000","studio":"Projektions-AG Union","genre":"Comedy","title":"Der Kaiser der Sahara","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28092"} +{"label":"Gelbe Bestien","description":"No overview found.","id":"6127","runtime":0,"version":29,"lastModified":"1301908594000","studio":"Projektions-AG Union","genre":"Comedy","title":"Gelbe Bestien","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28093"} +{"label":"Die goldene Flut","description":"No overview found.","id":"6128","runtime":0,"imdbId":"tt0441365","version":47,"lastModified":"1301905714000","studio":"Projektions-AG Union","genre":"Comedy","title":"Die goldene Flut","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28094"} +{"label":"Paul Biensfeldt","version":18,"id":"48048","lastModified":"1301902166000","name":"Paul Biensfeldt","type":"Person","_key":"28095"} +{"label":"Der Mann mit den eisernen Nerven","description":"No overview found.","id":"6129","runtime":0,"imdbId":"tt0441366","version":48,"lastModified":"1301908593000","studio":"Projektions-AG Union","genre":"Comedy","title":"Der Mann mit den eisernen Nerven","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28096"} +{"label":"Der Sprung \u00fcber den Schatten","description":"No overview found.","id":"6130","runtime":0,"imdbId":"tt0441367","version":48,"lastModified":"1301906629000","studio":"Projektions-AG Union","genre":"Comedy","title":"Der Sprung \u00fcber den Schatten","releaseDate":-1546300800000,"language":"en","type":"Movie","_key":"28097"} +{"label":"Manon Lescaut","description":"No overview found.","id":"6131","runtime":0,"imdbId":"tt0017118","version":321,"lastModified":"1301906629000","studio":"UFA Universum-Film AG","genre":"Drama","title":"Manon Lescaut","releaseDate":-1384646400000,"language":"en","type":"Movie","_key":"28098"} +{"label":"Arthur Robison","version":21,"id":"48049","lastModified":"1301901890000","name":"Arthur Robison","type":"Person","_key":"28099"} +{"label":"Lya De Putti","version":21,"id":"48057","lastModified":"1301902102000","name":"Lya De Putti","type":"Person","_key":"28100"} +{"label":"Vladimir Gajdarov","version":20,"id":"48058","lastModified":"1301902102000","name":"Vladimir Gajdarov","type":"Person","_key":"28101"} +{"label":"Eduard Rothauser","version":19,"id":"48059","lastModified":"1301902102000","name":"Eduard Rothauser","type":"Person","_key":"28102"} +{"label":"Fritz Greiner","version":19,"id":"48060","lastModified":"1301902102000","name":"Fritz Greiner","type":"Person","_key":"28103"} +{"label":"Frida Richard","version":24,"id":"48062","lastModified":"1301902149000","name":"Frida Richard","type":"Person","_key":"28104"} +{"label":"Lydia Potechina","version":21,"id":"48063","lastModified":"1301902102000","name":"Lydia Potechina","type":"Person","_key":"28105"} +{"label":"Sig Arno","version":23,"id":"48064","lastModified":"1301902102000","name":"Sig Arno","type":"Person","_key":"28106"} +{"label":"Fracture","description":"A husband is on trial for the attempted murder of his wife, in what is seemingly an open\/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.","id":"6145","runtime":113,"imdbId":"tt0488120","trailer":"http:\/\/www.youtube.com\/watch?v=1859","version":563,"lastModified":"1302026528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0aa\/4d0aef0a7b9aa1098a0000aa\/fracture-mid.jpg","studio":"Castle Rock Entertainment","genre":"Action","title":"Fracture","releaseDate":1176249600000,"language":"en","tagline":"I shot my wife...prove it.","type":"Movie","_key":"28107"} +{"label":"Judith Scott","version":31,"id":"44185","lastModified":"1301901359000","name":"Judith Scott","type":"Person","_key":"28108"} +{"label":"Gary Cervantes","version":27,"id":"48136","lastModified":"1301901437000","name":"Gary Cervantes","type":"Person","_key":"28109"} +{"label":"Petrea Burchard","version":25,"id":"48138","lastModified":"1301901774000","name":"Petrea Burchard","type":"Person","_key":"28110"} +{"label":"Einmal Dieb, immer Dieb","description":"No overview found.","id":"6146","runtime":88,"imdbId":"tt1024727","version":61,"lastModified":"1301906629000","studio":"Ziegler Film","genre":"Comedy","title":"Einmal Dieb, immer Dieb","releaseDate":1179964800000,"language":"en","type":"Movie","_key":"28111"} +{"label":"Michael Kreindl","version":19,"id":"48139","lastModified":"1301902286000","name":"Michael Kreindl","type":"Person","_key":"28112"} +{"label":"Sascha Hehn","version":22,"id":"45819","lastModified":"1301901806000","name":"Sascha Hehn","type":"Person","_key":"28113"} +{"label":"Christina Plate","version":22,"id":"48148","lastModified":"1301902344000","name":"Christina Plate","type":"Person","_key":"28114"} +{"label":"Helene Grass","version":19,"id":"48149","lastModified":"1301901890000","name":"Helene Grass","type":"Person","_key":"28115"} +{"label":"Kristian Wanzl","version":19,"id":"48150","lastModified":"1301902286000","name":"Kristian Wanzl","type":"Person","_key":"28116"} +{"label":"Barbara Schnitzler","version":19,"id":"38391","lastModified":"1301901890000","name":"Barbara Schnitzler","type":"Person","_key":"28117"} +{"label":"Michael Pink","version":18,"id":"48151","lastModified":"1301902166000","name":"Michael Pink","type":"Person","_key":"28118"} +{"label":"Chantal Landgraf","version":19,"id":"48152","lastModified":"1301902286000","name":"Chantal Landgraf","type":"Person","_key":"28119"} +{"label":"Bali-Nijan Meewes","version":19,"id":"48153","lastModified":"1301902286000","name":"Bali-Nijan Meewes","type":"Person","_key":"28120"} +{"label":"Julius Lennert","version":19,"id":"48154","lastModified":"1301902286000","name":"Julius Lennert","type":"Person","_key":"28121"} +{"label":"Hans-Peter Burkhardt","version":19,"id":"48155","lastModified":"1301902102000","name":"Hans-Peter Burkhardt","type":"Person","_key":"28122"} +{"label":"Marcel Delft","version":19,"id":"48156","lastModified":"1301902286000","name":"Marcel Delft","type":"Person","_key":"28123"} +{"label":"Andreas Haslinger","version":19,"id":"48157","lastModified":"1301902286000","name":"Andreas Haslinger","type":"Person","_key":"28124"} +{"label":"Stanislav Kr\u00fcger","version":19,"id":"48158","lastModified":"1301902286000","name":"Stanislav Kr\u00fcger","type":"Person","_key":"28125"} +{"label":"Hans-Joachim Langer","version":19,"id":"48159","lastModified":"1301902286000","name":"Hans-Joachim Langer","type":"Person","_key":"28126"} +{"label":"Can I Be Your Bratwurst, Please?","description":"No overview found.","id":"6147","runtime":40,"imdbId":"tt0192153","version":55,"lastModified":"1301906747000","studio":"Regina Ziegler Filmproduktion","genre":"Comedy","title":"Can I Be Your Bratwurst, Please?","releaseDate":925689600000,"language":"en","type":"Movie","_key":"28127"} +{"label":"Selene Luna","version":24,"id":"48161","lastModified":"1301902373000","name":"Selene Luna","type":"Person","_key":"28128"} +{"label":"Karl-Heinz Teuber","version":22,"id":"48162","lastModified":"1301902345000","name":"Karl-Heinz Teuber","type":"Person","_key":"28129"} +{"label":"Sirena Irwin","version":21,"id":"48163","lastModified":"1301902345000","name":"Sirena Irwin","type":"Person","_key":"28130"} +{"label":"Cecilia Tijerina","version":20,"id":"48164","lastModified":"1301902345000","name":"Cecilia Tijerina","type":"Person","_key":"28131"} +{"label":"Liebestod","description":"No overview found.","id":"6148","runtime":85,"imdbId":"tt0253213","version":59,"lastModified":"1301906629000","studio":"WDR","genre":"Thriller","title":"Liebestod","releaseDate":967593600000,"language":"en","type":"Movie","_key":"28132"} +{"label":"Stephan Wagner","version":20,"id":"48165","lastModified":"1301902102000","name":"Stephan Wagner","type":"Person","_key":"28133"} +{"label":"Niki Greb","version":19,"id":"48175","lastModified":"1301902286000","name":"Niki Greb","type":"Person","_key":"28134"} +{"label":"Thomas Clemens","version":19,"id":"28440","lastModified":"1301902102000","name":"Thomas Clemens","type":"Person","_key":"28135"} +{"label":"Axel Gottschick","version":18,"id":"48176","lastModified":"1301902166000","name":"Axel Gottschick","type":"Person","_key":"28136"} +{"label":"Thomas Morris","version":21,"id":"40224","lastModified":"1301901891000","name":"Thomas Morris","type":"Person","_key":"28137"} +{"label":"Markus Hering","version":23,"id":"38738","lastModified":"1301901688000","name":"Markus Hering","type":"Person","_key":"28138"} +{"label":"Glatteis","description":"No overview found.","id":"6149","runtime":90,"imdbId":"tt0179827","version":54,"lastModified":"1301906078000","studio":"WDR","genre":"Crime","title":"Glatteis","releaseDate":883612800000,"language":"en","type":"Movie","_key":"28139"} +{"label":"Michael Gutmann","version":28,"id":"6095","lastModified":"1301901447000","name":"Michael Gutmann","type":"Person","_key":"28140"} +{"label":"Hilde Van Mieghem","version":20,"id":"48178","lastModified":"1301901505000","name":"Hilde Van Mieghem","type":"Person","_key":"28141"} +{"label":"Elfriede Irrall","version":19,"id":"48179","lastModified":"1301902286000","name":"Elfriede Irrall","type":"Person","_key":"28142"} +{"label":"Herma Koehn","version":19,"id":"48180","lastModified":"1301902286000","name":"Herma Koehn","type":"Person","_key":"28143"} +{"label":"Der tolle Bomberg","description":"No overview found.","id":"6153","runtime":95,"imdbId":"tt0051094","version":61,"lastModified":"1301908333000","studio":"Arca-Filmproduktion GmbH","genre":"Comedy","title":"Der tolle Bomberg","releaseDate":-390096000000,"language":"en","type":"Movie","_key":"28144"} +{"label":"Marion Michael","version":19,"id":"48198","lastModified":"1301901890000","name":"Marion Michael","type":"Person","_key":"28145"} +{"label":"Ingeborg Christiansen","version":19,"id":"48199","lastModified":"1301902286000","name":"Ingeborg Christiansen","type":"Person","_key":"28146"} +{"label":"Ilse K\u00fcnkele","version":19,"id":"48200","lastModified":"1301901890000","name":"Ilse K\u00fcnkele","type":"Person","_key":"28147"} +{"label":"Wanda Rotha","version":19,"id":"48201","lastModified":"1301902286000","name":"Wanda Rotha","type":"Person","_key":"28148"} +{"label":"Walter M. W\u00fclf","version":18,"id":"48202","lastModified":"1301902166000","name":"Walter M. W\u00fclf","type":"Person","_key":"28149"} +{"label":"Herbert H\u00fcbner","version":20,"id":"48203","lastModified":"1301902118000","name":"Herbert H\u00fcbner","type":"Person","_key":"28150"} +{"label":"Otto Stoeckel","version":19,"id":"48204","lastModified":"1301902286000","name":"Otto Stoeckel","type":"Person","_key":"28151"} +{"label":"Thea Grodtzinsky","version":19,"id":"48205","lastModified":"1301902286000","name":"Thea Grodtzinsky","type":"Person","_key":"28152"} +{"label":"Herbert Weissbach","version":24,"id":"36342","lastModified":"1301901801000","name":"Herbert Weissbach","type":"Person","_key":"28153"} +{"label":"Helga Warnecke","version":19,"id":"48206","lastModified":"1301902286000","name":"Helga Warnecke","type":"Person","_key":"28154"} +{"label":"Der tolle Blomberg","description":"No overview found.","id":"6154","runtime":85,"imdbId":"tt0240118","version":59,"lastModified":"1301907279000","studio":"UFA Universum-Film AG","genre":"Comedy","title":"Der tolle Blomberg","releaseDate":-1191628800000,"language":"en","type":"Movie","_key":"28155"} +{"label":"Georg Asagaroff","version":19,"id":"48207","lastModified":"1301902286000","name":"Georg Asagaroff","type":"Person","_key":"28156"} +{"label":"Hansi Arnstaedt","version":18,"id":"48211","lastModified":"1301901803000","name":"Hansi Arnstaedt","type":"Person","_key":"28157"} +{"label":"Arthur Bergen","version":19,"id":"48212","lastModified":"1301902286000","name":"Arthur Bergen","type":"Person","_key":"28158"} +{"label":"Georges Boulanger","version":19,"id":"48213","lastModified":"1301901890000","name":"Georges Boulanger","type":"Person","_key":"28159"} +{"label":"Vivian Gibson","version":19,"id":"48214","lastModified":"1301902286000","name":"Vivian Gibson","type":"Person","_key":"28160"} +{"label":"Hertha Guthmar","version":19,"id":"48215","lastModified":"1301902286000","name":"Hertha Guthmar","type":"Person","_key":"28161"} +{"label":"Lizzi Natzler","version":19,"id":"48216","lastModified":"1301902286000","name":"Lizzi Natzler","type":"Person","_key":"28162"} +{"label":"Wolf Roon","version":19,"id":"48217","lastModified":"1301902286000","name":"Wolf Roon","type":"Person","_key":"28163"} +{"label":"Helen Sch\u00f6ner","version":19,"id":"48219","lastModified":"1301902286000","name":"Helen Sch\u00f6ner","type":"Person","_key":"28164"} +{"label":"Hans Wassmann","version":19,"id":"48220","lastModified":"1301902286000","name":"Hans Wassmann","type":"Person","_key":"28165"} +{"label":"Hugo Werner-Kahle","version":18,"id":"48221","lastModified":"1301902351000","name":"Hugo Werner-Kahle","type":"Person","_key":"28166"} +{"label":"Emmy Wyda","version":19,"id":"48222","lastModified":"1301902286000","name":"Emmy Wyda","type":"Person","_key":"28167"} +{"label":"Der Mann, der Sherlock Holmes war","description":"No overview found.","id":"6155","runtime":112,"imdbId":"tt0029210","version":71,"lastModified":"1301904721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/917\/4bc91d94017a3c57fe00b917\/der-mann-der-sherlock-holmes-war-mid.jpg","studio":"UFA Universum-Film AG","genre":"Comedy","title":"Der Mann, der Sherlock Holmes war","releaseDate":-1024531200000,"language":"en","type":"Movie","_key":"28168"} +{"label":"Hansi Knoteck","version":20,"id":"48226","lastModified":"1301902345000","name":"Hansi Knoteck","type":"Person","_key":"28169"} +{"label":"G\u00fcnther Ballier","version":21,"id":"23020","lastModified":"1301901962000","name":"G\u00fcnther Ballier","type":"Person","_key":"28170"} +{"label":"Ernst Behmer","version":20,"id":"48227","lastModified":"1301902345000","name":"Ernst Behmer","type":"Person","_key":"28171"} +{"label":"Harry Hardt","version":20,"id":"48228","lastModified":"1301902345000","name":"Harry Hardt","type":"Person","_key":"28172"} +{"label":"Sehnsucht nach Rimini","description":"No overview found.","id":"6156","runtime":89,"imdbId":"tt1016235","version":55,"lastModified":"1301904681000","genre":"Comedy","title":"Sehnsucht nach Rimini","releaseDate":1178841600000,"language":"en","type":"Movie","_key":"28173"} +{"label":"Dietmar Klein","version":20,"id":"48229","lastModified":"1301901676000","name":"Dietmar Klein","type":"Person","_key":"28174"} +{"label":"Nicole Heesters","version":21,"id":"48239","lastModified":"1301902153000","name":"Nicole Heesters","type":"Person","_key":"28175"} +{"label":"Rebecca Immanuel","version":19,"id":"48240","lastModified":"1301902102000","name":"Rebecca Immanuel","type":"Person","_key":"28176"} +{"label":"Juraj Kukura","version":19,"id":"38677","lastModified":"1301901890000","name":"Juraj Kukura","type":"Person","_key":"28177"} +{"label":"Vanessa Berthold","version":18,"id":"48241","lastModified":"1301901803000","name":"Vanessa Berthold","type":"Person","_key":"28178"} +{"label":"Regine Vergeen","version":19,"id":"48242","lastModified":"1301901890000","name":"Regine Vergeen","type":"Person","_key":"28179"} +{"label":"Andreas Wellano","version":19,"id":"48243","lastModified":"1301901733000","name":"Andreas Wellano","type":"Person","_key":"28180"} +{"label":"Thomas Rudnick","version":18,"id":"48244","lastModified":"1301902351000","name":"Thomas Rudnick","type":"Person","_key":"28181"} +{"label":"Ron Williams","version":19,"id":"48245","lastModified":"1301901890000","name":"Ron Williams","type":"Person","_key":"28182"} +{"label":"Dieter Schaad","version":19,"id":"48246","lastModified":"1301901890000","name":"Dieter Schaad","type":"Person","_key":"28183"} +{"label":"Antonio Di Mauro","version":17,"id":"48247","lastModified":"1301901733000","name":"Antonio Di Mauro","type":"Person","_key":"28184"} +{"label":"L\u00fcgen haben h\u00fcbsche Beine","description":"No overview found.","id":"6158","runtime":93,"imdbId":"tt0049458","version":41,"lastModified":"1301907417000","studio":"Lux Film","genre":"Comedy","title":"L\u00fcgen haben h\u00fcbsche Beine","releaseDate":-428198400000,"language":"en","type":"Movie","_key":"28185"} +{"label":"Dr. Sommerfeld - Alte Tr\u00e4ume, neue Liebe","description":"No overview found.","id":"6159","runtime":90,"imdbId":"tt0472762","version":42,"lastModified":"1300978456000","studio":"Neue Filmproduktion TV","genre":"Drama","title":"Dr. Sommerfeld - Alte Tr\u00e4ume, neue Liebe","releaseDate":1106870400000,"language":"en","type":"Movie","_key":"28186"} +{"label":"Bettina Woernle","version":20,"id":"48262","lastModified":"1301902345000","name":"Bettina Woernle","type":"Person","_key":"28187"} +{"label":"Justine del Corte","version":18,"id":"48270","lastModified":"1301902166000","name":"Justine del Corte","type":"Person","_key":"28188"} +{"label":"Rainer Hunold","version":22,"id":"48271","lastModified":"1301901788000","name":"Rainer Hunold","type":"Person","_key":"28189"} +{"label":"Anja Kruse","version":23,"id":"48272","lastModified":"1301901788000","name":"Anja Kruse","type":"Person","_key":"28190"} +{"label":"Arnfried Lerche","version":21,"id":"48273","lastModified":"1301902183000","name":"Arnfried Lerche","type":"Person","_key":"28191"} +{"label":"Michele Oliveri","version":21,"id":"48274","lastModified":"1301902156000","name":"Michele Oliveri","type":"Person","_key":"28192"} +{"label":"Ra\u00fal Perales","version":18,"id":"48275","lastModified":"1301902166000","name":"Ra\u00fal Perales","type":"Person","_key":"28193"} +{"label":"Giulio Ricciarelli","version":20,"id":"48276","lastModified":"1301902183000","name":"Giulio Ricciarelli","type":"Person","_key":"28194"} +{"label":"Bernhard Schir","version":21,"id":"48277","lastModified":"1301901962000","name":"Bernhard Schir","type":"Person","_key":"28195"} +{"label":"Les Granges brul\u00e9es","description":"No overview found.","id":"6160","runtime":95,"imdbId":"tt0070133","version":46,"lastModified":"1300978457000","studio":"Lira Films","genre":"Drama","title":"Les Granges brul\u00e9es","releaseDate":107568000000,"language":"en","type":"Movie","_key":"28196"} +{"label":"Pierre Rousseau","version":19,"id":"48278","lastModified":"1301902102000","name":"Pierre Rousseau","type":"Person","_key":"28197"} +{"label":"Morgen, ihr Luschen! Der Ausbilder-Schmidt-Film","description":"No overview found.","id":"6162","runtime":94,"imdbId":"tt1087833","version":66,"lastModified":"1301907299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4c95369f7b9aa10d590001a4\/morgen-ihr-luschen-der-ausbilder-schmidt-film-mid.jpg","studio":"Universal International Pictures","genre":"Comedy","title":"Morgen, ihr Luschen! Der Ausbilder-Schmidt-Film","releaseDate":1219190400000,"language":"en","type":"Movie","_key":"28198"} +{"label":"Holger M\u00fcller","version":20,"id":"48289","lastModified":"1301901755000","name":"Holger M\u00fcller","type":"Person","_key":"28199"} +{"label":"Collien Fernandes","version":20,"id":"48290","lastModified":"1301901920000","name":"Collien Fernandes","type":"Person","_key":"28200"} +{"label":"Bernhard Ho\u00ebcker","version":20,"id":"48291","lastModified":"1301902297000","name":"Bernhard Ho\u00ebcker","type":"Person","_key":"28201"} +{"label":"Ingo Appelt","version":19,"id":"48292","lastModified":"1301902297000","name":"Ingo Appelt","type":"Person","_key":"28202"} +{"label":"Michael Schweitzer","version":29,"id":"48293","lastModified":"1301901556000","name":"Michael Schweitzer","type":"Person","_key":"28203"} +{"label":"Goran Rakonjac","version":27,"id":"48294","lastModified":"1301901772000","name":"Goran Rakonjac","type":"Person","_key":"28204"} +{"label":"Daniel Noack","version":23,"id":"48295","lastModified":"1301901960000","name":"Daniel Noack","type":"Person","_key":"28205"} +{"label":"Knacki Deuser","version":20,"id":"48296","lastModified":"1301902297000","name":"Knacki Deuser","type":"Person","_key":"28206"} +{"label":"Dennis Warther","version":20,"id":"48297","lastModified":"1301902375000","name":"Dennis Warther","type":"Person","_key":"28207"} +{"label":"Robert Keim","version":19,"id":"48298","lastModified":"1301902297000","name":"Robert Keim","type":"Person","_key":"28208"} +{"label":"Anastasios Avgeris","version":17,"id":"48299","lastModified":"1301902297000","name":"Anastasios Avgeris","type":"Person","_key":"28209"} +{"label":"Joachim Weinsberg","version":19,"id":"48300","lastModified":"1301902297000","name":"Joachim Weinsberg","type":"Person","_key":"28210"} +{"label":"Chris Wilpert","version":20,"id":"48301","lastModified":"1301902373000","name":"Chris Wilpert","type":"Person","_key":"28211"} +{"label":"Heinz W. Gr\u00f6ning","version":19,"id":"48302","lastModified":"1301902297000","name":"Heinz W. Gr\u00f6ning","type":"Person","_key":"28212"} +{"label":"Mike Eschmann","version":21,"id":"48303","lastModified":"1301901946000","name":"Mike Eschmann","type":"Person","_key":"28213"} +{"label":"The Hessen Affair","description":"In 1945 a group of victorious American officers discover a stash of German jewels and try to fence them in New York.","id":"6163","runtime":108,"imdbId":"tt1153106","version":86,"lastModified":"1301904002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/920\/4bc91d95017a3c57fe00b920\/the-hessen-affair-mid.jpg","studio":"Corsan Productions","genre":"Drama","title":"The Hessen Affair","releaseDate":1231891200000,"language":"en","tagline":"The Winner Takes All... And More.","type":"Movie","_key":"28214"} +{"label":"Paul Breuls","version":23,"id":"48309","lastModified":"1301902345000","name":"Paul Breuls","type":"Person","_key":"28215"} +{"label":"Noah Segan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f3\/4ca0eb967b9aa1578c0004f3\/noah-segan-profile.jpg","version":41,"id":"48312","lastModified":"1301902345000","name":"Noah Segan","type":"Person","_key":"28216"} +{"label":"Will Woytowich","version":21,"id":"48313","lastModified":"1301902373000","name":"Will Woytowich","type":"Person","_key":"28217"} +{"label":"Die sch\u00f6ne M\u00fcllerin","description":"No overview found.","id":"6165","runtime":99,"imdbId":"tt0047459","version":83,"lastModified":"1301907279000","studio":"Algefa Film","genre":"Comedy","title":"Die sch\u00f6ne M\u00fcllerin","releaseDate":-482025600000,"language":"en","type":"Movie","_key":"28218"} +{"label":"Wolfgang Liebeneiner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa9\/4d593c2c7b9aa15cf6004aa9\/wolfgang-liebeneiner-profile.jpg","version":26,"id":"48330","lastModified":"1301901690000","name":"Wolfgang Liebeneiner","type":"Person","_key":"28219"} +{"label":"Gerhard Riedmann","version":20,"id":"48334","lastModified":"1301902102000","name":"Gerhard Riedmann","type":"Person","_key":"28220"} +{"label":"Sepp Rist","version":20,"id":"48338","lastModified":"1301901733000","name":"Sepp Rist","type":"Person","_key":"28221"} +{"label":"Fritz Wagner","version":20,"id":"48339","lastModified":"1301902102000","name":"Fritz Wagner","type":"Person","_key":"28222"} +{"label":"Marina Ried","version":21,"id":"36378","lastModified":"1301901708000","name":"Marina Ried","type":"Person","_key":"28223"} +{"label":"K\u00e4the Itter","version":19,"id":"48340","lastModified":"1301902285000","name":"K\u00e4the Itter","type":"Person","_key":"28224"} +{"label":"Ursula Vo\u00df","version":19,"id":"48341","lastModified":"1301902285000","name":"Ursula Vo\u00df","type":"Person","_key":"28225"} +{"label":"Der 90. Geburtstag oder Dinner for One","description":"No overview found.","id":"6166","runtime":18,"imdbId":"tt0121210","version":72,"lastModified":"1301906106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32e\/4c9539975e73d63a7500032e\/der-90-geburtstag-oder-dinner-for-one-mid.jpg","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Der 90. Geburtstag oder Dinner for One","releaseDate":-189475200000,"language":"en","type":"Movie","_key":"28226"} +{"label":"Heinz Dunkhase","version":20,"id":"48325","lastModified":"1301902344000","name":"Heinz Dunkhase","type":"Person","_key":"28227"} +{"label":"Freddie Frinton","version":25,"id":"48327","lastModified":"1301902156000","name":"Freddie Frinton","type":"Person","_key":"28228"} +{"label":"May Warden","version":18,"id":"48328","lastModified":"1301902166000","name":"May Warden","type":"Person","_key":"28229"} +{"label":"Heinz Piper","version":20,"id":"48329","lastModified":"1301902344000","name":"Heinz Piper","type":"Person","_key":"28230"} +{"label":"Das Gl\u00fcck ist eine Insel","description":"No overview found.","id":"6167","runtime":88,"imdbId":"tt0274531","version":46,"lastModified":"1301907279000","studio":"Degeto Film","genre":"Drama","title":"Das Gl\u00fcck ist eine Insel","releaseDate":946684800000,"language":"en","type":"Movie","_key":"28231"} +{"label":"Gloria Behrens","version":22,"id":"24155","lastModified":"1301901973000","name":"Gloria Behrens","type":"Person","_key":"28232"} +{"label":"Maria Furtw\u00e4ngler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c9\/4ca48c0b5e73d636fa0001c9\/maria-furtwangler-profile.jpg","version":22,"id":"44328","lastModified":"1301901380000","name":"Maria Furtw\u00e4ngler","type":"Person","_key":"28233"} +{"label":"Ann-Sophie Dietrich","version":19,"id":"48346","lastModified":"1301902285000","name":"Ann-Sophie Dietrich","type":"Person","_key":"28234"} +{"label":"Ivo M\u00f6ller","version":18,"id":"48347","lastModified":"1301901803000","name":"Ivo M\u00f6ller","type":"Person","_key":"28235"} +{"label":"Ferdinand Dux","version":22,"id":"48185","lastModified":"1301901780000","name":"Ferdinand Dux","type":"Person","_key":"28236"} +{"label":"Ulrich Matschoss","version":19,"id":"26520","lastModified":"1301901890000","name":"Ulrich Matschoss","type":"Person","_key":"28237"} +{"label":"Stefan Reck","version":20,"id":"32955","lastModified":"1301901476000","name":"Stefan Reck","type":"Person","_key":"28238"} +{"label":"Was hei\u00dft hier Oma!","description":"No overview found.","id":"6168","runtime":90,"imdbId":"tt0472204","version":54,"lastModified":"1301418655000","studio":"Ziegler Film","genre":"Comedy","title":"Was hei\u00dft hier Oma!","releaseDate":1172188800000,"language":"en","type":"Movie","_key":"28239"} +{"label":"Gaby Dohm","version":23,"id":"38155","lastModified":"1301901566000","name":"Gaby Dohm","type":"Person","_key":"28240"} +{"label":"Emilie Kundrun","version":22,"id":"48357","lastModified":"1301902171000","name":"Emilie Kundrun","type":"Person","_key":"28241"} +{"label":"Benjamin Seidel","version":19,"id":"48358","lastModified":"1301902102000","name":"Benjamin Seidel","type":"Person","_key":"28242"} +{"label":"Oliver Clemens","version":20,"id":"48359","lastModified":"1301902102000","name":"Oliver Clemens","type":"Person","_key":"28243"} +{"label":"Irene Schiesser","version":19,"id":"48360","lastModified":"1301902285000","name":"Irene Schiesser","type":"Person","_key":"28244"} +{"label":"Irina Platon","version":19,"id":"48361","lastModified":"1301902102000","name":"Irina Platon","type":"Person","_key":"28245"} +{"label":"Claudia Mehnert","version":19,"id":"45701","lastModified":"1301902102000","name":"Claudia Mehnert","type":"Person","_key":"28246"} +{"label":"Angela Neumann","version":19,"id":"48362","lastModified":"1301902102000","name":"Angela Neumann","type":"Person","_key":"28247"} +{"label":"Ygal Gleim","version":21,"id":"48363","lastModified":"1301902336000","name":"Ygal Gleim","type":"Person","_key":"28248"} +{"label":"Mit deinen Augen","description":"No overview found.","id":"6169","runtime":90,"imdbId":"tt0389164","version":51,"lastModified":"1301908333000","studio":"ARD","genre":"Drama","title":"Mit deinen Augen","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"28249"} +{"label":"Karl Kases","version":21,"id":"42834","lastModified":"1301901993000","name":"Karl Kases","type":"Person","_key":"28250"} +{"label":"Barbara Wussow","version":20,"id":"48369","lastModified":"1301901616000","name":"Barbara Wussow","type":"Person","_key":"28251"} +{"label":"Pierre Besson","version":27,"id":"48370","lastModified":"1301901564000","name":"Pierre Besson","type":"Person","_key":"28252"} +{"label":"Buddy Elias","version":19,"id":"48371","lastModified":"1301901889000","name":"Buddy Elias","type":"Person","_key":"28253"} +{"label":"Anette Felber","version":22,"id":"48372","lastModified":"1301901998000","name":"Anette Felber","type":"Person","_key":"28254"} +{"label":"Josephin Kases","version":19,"id":"48373","lastModified":"1301901889000","name":"Josephin Kases","type":"Person","_key":"28255"} +{"label":"Peter Wolfsberger","version":19,"id":"48374","lastModified":"1301901889000","name":"Peter Wolfsberger","type":"Person","_key":"28256"} +{"label":"Maria Bachmann","version":21,"id":"38466","lastModified":"1301901996000","name":"Maria Bachmann","type":"Person","_key":"28257"} +{"label":"Mathias Noack","version":19,"id":"48375","lastModified":"1301901889000","name":"Mathias Noack","type":"Person","_key":"28258"} +{"label":"Andi Slawinski","version":19,"id":"48376","lastModified":"1301901889000","name":"Andi Slawinski","type":"Person","_key":"28259"} +{"label":"Alessandro Bressanello","version":19,"id":"48377","lastModified":"1301901889000","name":"Alessandro Bressanello","type":"Person","_key":"28260"} +{"label":"Dreamcatcher","description":"Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.","id":"6171","runtime":136,"imdbId":"tt0285531","trailer":"http:\/\/www.youtube.com\/watch?v=s-3c_wjXhr0","homepage":"http:\/\/dreamcatchermovie.warnerbros.com\/","version":855,"lastModified":"1302026063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb9\/4d4761d35e73d65ee4000fb9\/dreamcatcher-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"Dreamcatcher","releaseDate":1049932800000,"language":"en","tagline":"A circle of friendship. A web of mystery. A pattern of fear.","type":"Movie","_key":"28261"} +{"label":"Mikey Holekamp","version":22,"id":"48462","lastModified":"1301901755000","name":"Mikey Holekamp","type":"Person","_key":"28262"} +{"label":"Reece Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a0b\/4d6b372a5e73d66b27002a0b\/reece-thompson-profile.jpg","version":29,"id":"48463","lastModified":"1301901386000","name":"Reece Thompson","type":"Person","_key":"28263"} +{"label":"Joel Palmer","version":23,"id":"48464","lastModified":"1301901676000","name":"Joel Palmer","type":"Person","_key":"28264"} +{"label":"Andrew Robb","version":22,"id":"48465","lastModified":"1301901755000","name":"Andrew Robb","type":"Person","_key":"28265"} +{"label":"Rosemary Dunsmore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/993\/4cc179117b9aa138d9001993\/rosemary-dunsmore-profile.jpg","version":34,"id":"44275","lastModified":"1301901336000","name":"Rosemary Dunsmore","type":"Person","_key":"28266"} +{"label":"Mein F\u00fchrer - Die wirklich wahrste Wahrheit \u00fcber Adolf Hitler","description":"Hitler no longer believes in himself, and can barely see himself as an equal to even his sheep dog. But to seize the helm of the war he would have to create one of his famous fiery speeches to mobilize the masses. Goebbels therefore brings a Jewish acting teacher Gr\u00fcnbaum and his family from the camps in order to train the leader in rhetoric. Gr\u00fcnbaum is torn, but starts Hitler in his therapy ...","id":"6172","runtime":89,"imdbId":"tt0780568","homepage":"http:\/\/www.meinfuehrer-derfilm.de\/","version":80,"lastModified":"1301906629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4bc91d99017a3c57fe00b936\/mein-fuhrer-die-wirklich-wahrste-wahrheit-uber-adolf-hitler-mid.jpg","studio":"Bayerischer Rundfunk","genre":"Comedy","title":"Mein F\u00fchrer - Die wirklich wahrste Wahrheit \u00fcber Adolf Hitler","releaseDate":1168473600000,"language":"en","type":"Movie","_key":"28267"} +{"label":"Lambert Hamel","version":22,"id":"48391","lastModified":"1301901841000","name":"Lambert Hamel","type":"Person","_key":"28268"} +{"label":"Udo Kroschwald","version":22,"id":"48392","lastModified":"1301902102000","name":"Udo Kroschwald","type":"Person","_key":"28269"} +{"label":"Torsten Michaelis","version":22,"id":"38622","lastModified":"1301901476000","name":"Torsten Michaelis","type":"Person","_key":"28270"} +{"label":"Victor Schef\u00e9","version":22,"id":"48393","lastModified":"1301902102000","name":"Victor Schef\u00e9","type":"Person","_key":"28271"} +{"label":"Axel Werner","version":20,"id":"48394","lastModified":"1301902102000","name":"Axel Werner","type":"Person","_key":"28272"} +{"label":"Jana C. Schmidt","version":20,"id":"48395","lastModified":"1301901733000","name":"Jana C. Schmidt","type":"Person","_key":"28273"} +{"label":"Ren\u00e9 B\u00f6hnke","version":21,"id":"48396","lastModified":"1301901733000","name":"Ren\u00e9 B\u00f6hnke","type":"Person","_key":"28274"} +{"label":"Karsten B\u00e4hn","version":20,"id":"48397","lastModified":"1301902102000","name":"Karsten B\u00e4hn","type":"Person","_key":"28275"} +{"label":"Sebastian Fuhrmann","version":20,"id":"48398","lastModified":"1301902102000","name":"Sebastian Fuhrmann","type":"Person","_key":"28276"} +{"label":"Angelika Gersdorf","version":22,"id":"48399","lastModified":"1301901889000","name":"Angelika Gersdorf","type":"Person","_key":"28277"} +{"label":"Marion Kracht","version":21,"id":"48400","lastModified":"1301902183000","name":"Marion Kracht","type":"Person","_key":"28278"} +{"label":"R\u00fcdiger K\u00fchmstedt","version":22,"id":"48401","lastModified":"1301901787000","name":"R\u00fcdiger K\u00fchmstedt","type":"Person","_key":"28279"} +{"label":"Christian Schneider","version":21,"id":"48402","lastModified":"1301901774000","name":"Christian Schneider","type":"Person","_key":"28280"} +{"label":"Karin Meschkat","version":21,"id":"48403","lastModified":"1301902183000","name":"Karin Meschkat","type":"Person","_key":"28281"} +{"label":"Harald G\u00fcnther","version":21,"id":"48404","lastModified":"1301901938000","name":"Harald G\u00fcnther","type":"Person","_key":"28282"} +{"label":"Sur mes l\u00e8vres","description":"Carla Bhem, une jeune femme de 35 ans au physique plut\u00f4t moyen et qui porte des proth\u00e8ses auditives, est secr\u00e9taire \u00e0 la S\u00e9dim, une agence immobili\u00e8re, mais elle est pay\u00e9e une mis\u00e8re et souffre d'un manque de consid\u00e9ration de la part de ses employeurs. Son existence triste et solitaire va prendre une tournure diff\u00e9rente avec l'arriv\u00e9e dans la soci\u00e9t\u00e9 de Paul Ang\u00e9li, une nouvelle recrue de 25 ans, plut\u00f4t beau gosse, mais qui n'a aucune comp\u00e9tence dans la promotion immobili\u00e8re. Celui-ci cherche \u00e0 ","id":"6173","runtime":119,"imdbId":"tt0274117","version":76,"lastModified":"1301905436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/029\/4d1bc3225e73d66598001029\/sur-mes-l-vres-mid.jpg","studio":"Canal Plus","genre":"Crime","title":"Sur mes l\u00e8vres","releaseDate":1003276800000,"language":"en","type":"Movie","_key":"28283"} +{"label":"Olivier Perrier","version":23,"id":"48405","lastModified":"1302054335000","name":"Olivier Perrier","type":"Person","_key":"28284"} +{"label":"Olivia Bonamy","version":41,"id":"48406","lastModified":"1302054336000","name":"Olivia Bonamy","type":"Person","_key":"28285"} +{"label":"Fran\u00e7ois Loriquet","version":22,"id":"48407","lastModified":"1302054336000","name":"Fran\u00e7ois Loriquet","type":"Person","_key":"28286"} +{"label":"Serge Boutleroff","version":24,"id":"48408","lastModified":"1302054336000","name":"Serge Boutleroff","type":"Person","_key":"28287"} +{"label":"David Saracino","version":32,"id":"48409","lastModified":"1302054336000","name":"David Saracino","type":"Person","_key":"28288"} +{"label":"B\u00f4 Gaultier de Kermoal","version":22,"id":"48411","lastModified":"1302054336000","name":"B\u00f4 Gaultier de Kermoal","type":"Person","_key":"28289"} +{"label":"Lo\u00efc Le Page","version":22,"id":"48412","lastModified":"1302054336000","name":"Lo\u00efc Le Page","type":"Person","_key":"28290"} +{"label":"Nathalie Lacroix","version":22,"id":"48413","lastModified":"1302054336000","name":"Nathalie Lacroix","type":"Person","_key":"28291"} +{"label":"Isabelle Caub\u00e8re","version":23,"id":"48414","lastModified":"1302054336000","name":"Isabelle Caub\u00e8re","type":"Person","_key":"28292"} +{"label":"The Murders in the Rue Morgue","description":"No overview found.","id":"6174","runtime":100,"imdbId":"tt0091574","version":93,"lastModified":"1301903821000","studio":"International Film Productions","genre":"Crime","title":"The Murders in the Rue Morgue","releaseDate":534297600000,"language":"en","type":"Movie","_key":"28293"} +{"label":"Patrick Floersheim","version":19,"id":"48416","lastModified":"1301902102000","name":"Patrick Floersheim","type":"Person","_key":"28294"} +{"label":"Roger Lumont","version":20,"id":"48417","lastModified":"1301902041000","name":"Roger Lumont","type":"Person","_key":"28295"} +{"label":"Erick Desmarestz","version":19,"id":"48418","lastModified":"1301902285000","name":"Erick Desmarestz","type":"Person","_key":"28296"} +{"label":"Sommernachtstod","description":"No overview found.","id":"6175","runtime":91,"imdbId":"tt0268653","version":52,"lastModified":"1301907279000","studio":"Arbor","genre":"Crime","title":"Sommernachtstod","releaseDate":1061942400000,"language":"en","type":"Movie","_key":"28297"} +{"label":"Lars Montag","version":19,"id":"48419","lastModified":"1301901889000","name":"Lars Montag","type":"Person","_key":"28298"} +{"label":"Sonja Kirchberger","version":22,"id":"46163","lastModified":"1301901442000","name":"Sonja Kirchberger","type":"Person","_key":"28299"} +{"label":"Doris Kunstmann","version":27,"id":"45699","lastModified":"1301901495000","name":"Doris Kunstmann","type":"Person","_key":"28300"} +{"label":"Wolf-Dietrich Berg","version":19,"id":"48423","lastModified":"1301901733000","name":"Wolf-Dietrich Berg","type":"Person","_key":"28301"} +{"label":"Angelika Thomas","version":19,"id":"48424","lastModified":"1301901889000","name":"Angelika Thomas","type":"Person","_key":"28302"} +{"label":"Sylvia Haider","version":22,"id":"48420","lastModified":"1301902317000","name":"Sylvia Haider","type":"Person","_key":"28303"} +{"label":"Gunnar Solka","version":22,"id":"48425","lastModified":"1301901655000","name":"Gunnar Solka","type":"Person","_key":"28304"} +{"label":"Philipp Danne","version":20,"id":"48426","lastModified":"1301901889000","name":"Philipp Danne","type":"Person","_key":"28305"} +{"label":"Siggi Kautz","version":19,"id":"48427","lastModified":"1301901889000","name":"Siggi Kautz","type":"Person","_key":"28306"} +{"label":"Moritz Hegewald","version":19,"id":"48428","lastModified":"1301901889000","name":"Moritz Hegewald","type":"Person","_key":"28307"} +{"label":"Winfried K\u00fcppers","version":19,"id":"48429","lastModified":"1301901889000","name":"Winfried K\u00fcppers","type":"Person","_key":"28308"} +{"label":"Michaela Amler","version":19,"id":"48430","lastModified":"1301901889000","name":"Michaela Amler","type":"Person","_key":"28309"} +{"label":"Renate Muhri","version":20,"id":"39101","lastModified":"1301901616000","name":"Renate Muhri","type":"Person","_key":"28310"} +{"label":"Claus El\u00dfmann","version":19,"id":"48431","lastModified":"1301901889000","name":"Claus El\u00dfmann","type":"Person","_key":"28311"} +{"label":"Die Venusfalle","description":"No overview found.","id":"6176","runtime":107,"imdbId":"tt0096372","version":80,"lastModified":"1302025902000","studio":"ZDF","genre":"Drama","title":"Die Venusfalle","releaseDate":589680000000,"language":"en","type":"Movie","_key":"28312"} +{"label":"Robert van Ackeren","version":25,"id":"48432","lastModified":"1301902134000","name":"Robert van Ackeren","type":"Person","_key":"28313"} +{"label":"Myriem Roussel","version":21,"id":"48433","lastModified":"1301901845000","name":"Myriem Roussel","type":"Person","_key":"28314"} +{"label":"Walter Busch","version":19,"id":"48435","lastModified":"1301902285000","name":"Walter Busch","type":"Person","_key":"28315"} +{"label":"Sisi und der Kaiserku\u00df","description":"No overview found.","id":"6177","runtime":95,"imdbId":"tt0102936","version":46,"lastModified":"1301908333000","studio":"Maran Film","genre":"Drama","title":"Sisi und der Kaiserku\u00df","releaseDate":685238400000,"language":"en","type":"Movie","_key":"28316"} +{"label":"Christoph B\u00f6ll","version":21,"id":"48438","lastModified":"1301902102000","name":"Christoph B\u00f6ll","type":"Person","_key":"28317"} +{"label":"Vanessa Wagner","version":19,"id":"48439","lastModified":"1301902102000","name":"Vanessa Wagner","type":"Person","_key":"28318"} +{"label":"Nils Tavernier","version":22,"id":"48440","lastModified":"1301901850000","name":"Nils Tavernier","type":"Person","_key":"28319"} +{"label":"Kristina Walter","version":19,"id":"48441","lastModified":"1301901616000","name":"Kristina Walter","type":"Person","_key":"28320"} +{"label":"Wichard von Roell","version":19,"id":"48442","lastModified":"1301901889000","name":"Wichard von Roell","type":"Person","_key":"28321"} +{"label":"Dreamcatcher","description":"No overview found.","id":"6178","runtime":46,"imdbId":"tt0411327","version":88,"lastModified":"1301905661000","studio":"Ironhorse Film Company","genre":"Drama","title":"Dreamcatcher","releaseDate":915148800000,"language":"en","type":"Movie","_key":"28322"} +{"label":"Matt Trotter","version":25,"id":"48448","lastModified":"1301901788000","name":"Matt Trotter","type":"Person","_key":"28323"} +{"label":"Sean Acosta","version":22,"id":"48454","lastModified":"1301901566000","name":"Sean Acosta","type":"Person","_key":"28324"} +{"label":"Michael Meinecke","version":22,"id":"48455","lastModified":"1301901566000","name":"Michael Meinecke","type":"Person","_key":"28325"} +{"label":"Stephen Rhodes","version":22,"id":"48456","lastModified":"1301901655000","name":"Stephen Rhodes","type":"Person","_key":"28326"} +{"label":"Das Verlangen","description":"No overview found.","id":"6179","runtime":94,"imdbId":"tt0328727","version":48,"lastModified":"1301907416000","studio":"Artus Postproduktion","genre":"Drama","title":"Das Verlangen","releaseDate":1028764800000,"language":"en","type":"Movie","_key":"28327"} +{"label":"Susanne-Marie Wrage","version":18,"id":"48461","lastModified":"1301902166000","name":"Susanne-Marie Wrage","type":"Person","_key":"28328"} +{"label":"Klaus Gr\u00fcnberg","version":20,"id":"48467","lastModified":"1301902344000","name":"Klaus Gr\u00fcnberg","type":"Person","_key":"28329"} +{"label":"Heidemarie Rohwedder","version":20,"id":"48468","lastModified":"1301902156000","name":"Heidemarie Rohwedder","type":"Person","_key":"28330"} +{"label":"Manfred Kranich","version":21,"id":"48469","lastModified":"1301901788000","name":"Manfred Kranich","type":"Person","_key":"28331"} +{"label":"Sigrid Skoetz","version":21,"id":"48470","lastModified":"1301901403000","name":"Sigrid Skoetz","type":"Person","_key":"28332"} +{"label":"Wolfgang Packh\u00e4user","version":23,"id":"48471","lastModified":"1301902375000","name":"Wolfgang Packh\u00e4user","type":"Person","_key":"28333"} +{"label":"Brit Gdanietz","version":20,"id":"48472","lastModified":"1301902344000","name":"Brit Gdanietz","type":"Person","_key":"28334"} +{"label":"Ich werde dich auf H\u00e4nden tragen","description":"No overview found.","id":"6180","runtime":62,"imdbId":"tt0293272","version":47,"lastModified":"1301906175000","genre":"Drama","title":"Ich werde dich auf H\u00e4nden tragen","releaseDate":946684800000,"language":"en","type":"Movie","_key":"28335"} +{"label":"Dirk Waanders","version":20,"id":"48473","lastModified":"1301901593000","name":"Dirk Waanders","type":"Person","_key":"28336"} +{"label":"Feuerwerk","description":"No overview found.","id":"6181","runtime":97,"imdbId":"tt0045763","version":68,"lastModified":"1301418685000","studio":"Neue Deutsche Filmgesellschaft","genre":"Comedy","title":"Feuerwerk","releaseDate":-460771200000,"language":"en","type":"Movie","_key":"28337"} +{"label":"Liesl Karlstadt","version":20,"id":"48482","lastModified":"1301902118000","name":"Liesl Karlstadt","type":"Person","_key":"28338"} +{"label":"Charlotte Witthauer","version":19,"id":"48483","lastModified":"1301902297000","name":"Charlotte Witthauer","type":"Person","_key":"28339"} +{"label":"Tatjana Sais","version":20,"id":"48484","lastModified":"1301902118000","name":"Tatjana Sais","type":"Person","_key":"28340"} +{"label":"Willy Reichert","version":20,"id":"26891","lastModified":"1301902118000","name":"Willy Reichert","type":"Person","_key":"28341"} +{"label":"Peter R\u00fchmann","version":20,"id":"48485","lastModified":"1301902372000","name":"Peter R\u00fchmann","type":"Person","_key":"28342"} +{"label":"Pilade Cristiani","version":18,"id":"48486","lastModified":"1301902351000","name":"Pilade Cristiani","type":"Person","_key":"28343"} +{"label":"Isolde Br\u00e4uner","version":19,"id":"48487","lastModified":"1301902297000","name":"Isolde Br\u00e4uner","type":"Person","_key":"28344"} +{"label":"Heini G\u00f6bel","version":19,"id":"48488","lastModified":"1301902297000","name":"Heini G\u00f6bel","type":"Person","_key":"28345"} +{"label":"Oliver Hassencamp","version":18,"id":"48489","lastModified":"1301902297000","name":"Oliver Hassencamp","type":"Person","_key":"28346"} +{"label":"Erika Nein","version":19,"id":"48490","lastModified":"1301902297000","name":"Erika Nein","type":"Person","_key":"28347"} +{"label":"Karl Schaidler","version":19,"id":"48491","lastModified":"1301902297000","name":"Karl Schaidler","type":"Person","_key":"28348"} +{"label":"The Dream Catcher","description":"No overview found.","id":"6182","runtime":99,"imdbId":"tt0128170","version":95,"lastModified":"1301904625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93b\/4bc91d99017a3c57fe00b93b\/the-dream-catcher-mid.jpg","studio":"Sundance Channel","genre":"Drama","title":"The Dream Catcher","releaseDate":934070400000,"language":"en","type":"Movie","_key":"28349"} +{"label":"Ed Radtke","version":19,"id":"48502","lastModified":"1301901733000","name":"Ed Radtke","type":"Person","_key":"28350"} +{"label":"Maurice Compte","version":25,"id":"48530","lastModified":"1301901674000","name":"Maurice Compte","type":"Person","_key":"28351"} +{"label":"Paddy Connor","version":19,"id":"48531","lastModified":"1301901616000","name":"Paddy Connor","type":"Person","_key":"28352"} +{"label":"Jeanne Heaton","version":19,"id":"48532","lastModified":"1301901889000","name":"Jeanne Heaton","type":"Person","_key":"28353"} +{"label":"Joseph Arthur","version":19,"id":"48533","lastModified":"1301901616000","name":"Joseph Arthur","type":"Person","_key":"28354"} +{"label":"Patrick Shining Elk","version":20,"id":"48534","lastModified":"1301902102000","name":"Patrick Shining Elk","type":"Person","_key":"28355"} +{"label":"Larry John Meyers","version":19,"id":"48535","lastModified":"1301902102000","name":"Larry John Meyers","type":"Person","_key":"28356"} +{"label":"David Reece","version":19,"id":"48536","lastModified":"1301901889000","name":"David Reece","type":"Person","_key":"28357"} +{"label":"Barfuss","description":"No overview found.","id":"6183","runtime":118,"imdbId":"tt0405743","version":146,"lastModified":"1302025695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/948\/4bc91d9a017a3c57fe00b948\/barfuss-mid.jpg","studio":"Mr. Brown Entertainment Filmproduction GmbH (Potsdam)","genre":"Comedy","title":"Barfuss","releaseDate":1112227200000,"language":"en","type":"Movie","_key":"28358"} +{"label":"Torsten K\u00fcnstler","version":25,"id":"57758","lastModified":"1301901889000","name":"Torsten K\u00fcnstler","type":"Person","_key":"28359"} +{"label":"Janine Kunze","version":21,"id":"48509","lastModified":"1301901998000","name":"Janine Kunze","type":"Person","_key":"28360"} +{"label":"Erdal Yildiz","version":21,"id":"48510","lastModified":"1301901998000","name":"Erdal Yildiz","type":"Person","_key":"28361"} +{"label":"Fanny Staffa","version":20,"id":"48511","lastModified":"1301901889000","name":"Fanny Staffa","type":"Person","_key":"28362"} +{"label":"Tyron Ricketts","version":22,"id":"48512","lastModified":"1301901445000","name":"Tyron Ricketts","type":"Person","_key":"28363"} +{"label":"Gerit Kling","version":20,"id":"48513","lastModified":"1301901889000","name":"Gerit Kling","type":"Person","_key":"28364"} +{"label":"Eric Judor","version":31,"id":"48514","lastModified":"1301901456000","name":"Eric Judor","type":"Person","_key":"28365"} +{"label":"Gustav Adolph","version":20,"id":"48515","lastModified":"1301901889000","name":"Gustav Adolph","type":"Person","_key":"28366"} +{"label":"Hans-Peter Abts","version":20,"id":"48516","lastModified":"1301901889000","name":"Hans-Peter Abts","type":"Person","_key":"28367"} +{"label":"Micha Breidenstein","version":20,"id":"48517","lastModified":"1301901431000","name":"Micha Breidenstein","type":"Person","_key":"28368"} +{"label":"Metin Ilica","version":21,"id":"48518","lastModified":"1301901998000","name":"Metin Ilica","type":"Person","_key":"28369"} +{"label":"B\u00e9atrice Jean-Philippe","version":21,"id":"48519","lastModified":"1301901998000","name":"B\u00e9atrice Jean-Philippe","type":"Person","_key":"28370"} +{"label":"Mark Popp","version":21,"id":"48520","lastModified":"1301901889000","name":"Mark Popp","type":"Person","_key":"28371"} +{"label":"Dana Carlsen","version":20,"id":"48521","lastModified":"1301901889000","name":"Dana Carlsen","type":"Person","_key":"28372"} +{"label":"Erik Steingr\u00f6ver","version":20,"id":"48522","lastModified":"1301901889000","name":"Erik Steingr\u00f6ver","type":"Person","_key":"28373"} +{"label":"Martin Tillman","version":24,"id":"48523","lastModified":"1301901997000","name":"Martin Tillman","type":"Person","_key":"28374"} +{"label":"Liv Tullia","version":20,"id":"48524","lastModified":"1301901889000","name":"Liv Tullia","type":"Person","_key":"28375"} +{"label":"Herman Wirtz","version":20,"id":"48525","lastModified":"1301901889000","name":"Herman Wirtz","type":"Person","_key":"28376"} +{"label":"Markus Maria Profitlich","version":21,"id":"48526","lastModified":"1301901889000","name":"Markus Maria Profitlich","type":"Person","_key":"28377"} +{"label":"Christoph M\u00fcller","version":25,"id":"17012","lastModified":"1301901563000","name":"Christoph M\u00fcller","type":"Person","_key":"28378"} +{"label":"Evangelos Pananos","version":20,"id":"48527","lastModified":"1301901889000","name":"Evangelos Pananos","type":"Person","_key":"28379"} +{"label":"Lindenstra\u00dfe: Finstere Weihnacht","description":"No overview found.","id":"6184","runtime":30,"imdbId":"tt0935109","version":57,"lastModified":"1301419490000","studio":"WDR","genre":"Comedy","title":"Lindenstra\u00dfe: Finstere Weihnacht","releaseDate":1166745600000,"language":"en","type":"Movie","_key":"28380"} +{"label":"Marcus Bartos","version":20,"id":"48537","lastModified":"1301901961000","name":"Marcus Bartos","type":"Person","_key":"28381"} +{"label":"Irene Gr\u00e4f","version":20,"id":"48538","lastModified":"1301902156000","name":"Irene Gr\u00e4f","type":"Person","_key":"28382"} +{"label":"Martin Hasen\u00f6hrl","version":20,"id":"48539","lastModified":"1301901961000","name":"Martin Hasen\u00f6hrl","type":"Person","_key":"28383"} +{"label":"Jasmin Khatami","version":20,"id":"48540","lastModified":"1301902344000","name":"Jasmin Khatami","type":"Person","_key":"28384"} +{"label":"Corinna Liedtke","version":18,"id":"48541","lastModified":"1301902344000","name":"Corinna Liedtke","type":"Person","_key":"28385"} +{"label":"Carmen Losmann","version":20,"id":"48542","lastModified":"1301901961000","name":"Carmen Losmann","type":"Person","_key":"28386"} +{"label":"Karin Maigut","version":20,"id":"48543","lastModified":"1301902002000","name":"Karin Maigut","type":"Person","_key":"28387"} +{"label":"Henning Ricke","version":20,"id":"48544","lastModified":"1301901961000","name":"Henning Ricke","type":"Person","_key":"28388"} +{"label":"Joachim Hermann Luger","version":20,"id":"48545","lastModified":"1301902156000","name":"Joachim Hermann Luger","type":"Person","_key":"28389"} +{"label":"Moritz A. Sachs","version":20,"id":"48546","lastModified":"1301901815000","name":"Moritz A. Sachs","type":"Person","_key":"28390"} +{"label":"Jacqueline Svilarov","version":22,"id":"48547","lastModified":"1301901497000","name":"Jacqueline Svilarov","type":"Person","_key":"28391"} +{"label":"Susanna Capurso","version":20,"id":"48549","lastModified":"1301901961000","name":"Susanna Capurso","type":"Person","_key":"28392"} +{"label":"Erkan G\u00fcnd\u00fcz","version":20,"id":"48551","lastModified":"1301901961000","name":"Erkan G\u00fcnd\u00fcz","type":"Person","_key":"28393"} +{"label":"Georg Uecker","version":20,"id":"48552","lastModified":"1301901961000","name":"Georg Uecker","type":"Person","_key":"28394"} +{"label":"Franz Rampelmann","version":20,"id":"39631","lastModified":"1301901655000","name":"Franz Rampelmann","type":"Person","_key":"28395"} +{"label":"Susanne Evers","version":20,"id":"48553","lastModified":"1301901582000","name":"Susanne Evers","type":"Person","_key":"28396"} +{"label":"Bill Mockridge","version":20,"id":"48554","lastModified":"1301901961000","name":"Bill Mockridge","type":"Person","_key":"28397"} +{"label":"Giselle Vesco","version":22,"id":"48556","lastModified":"1301902157000","name":"Giselle Vesco","type":"Person","_key":"28398"} +{"label":"Anna Antonowicz","version":20,"id":"48557","lastModified":"1301901667000","name":"Anna Antonowicz","type":"Person","_key":"28399"} +{"label":"Heinz Marecek","version":22,"id":"39288","lastModified":"1301901788000","name":"Heinz Marecek","type":"Person","_key":"28400"} +{"label":"Christian Oettiger","version":18,"id":"48558","lastModified":"1301901667000","name":"Christian Oettiger","type":"Person","_key":"28401"} +{"label":"Dream Chasers","description":"No overview found.","id":"6185","runtime":48,"imdbId":"tt0285039","version":127,"lastModified":"1301907157000","studio":"Stanhaven Productions","genre":"Adventure","title":"Dream Chasers","releaseDate":1052438400000,"language":"en","type":"Movie","_key":"28402"} +{"label":"Lee Stanley","version":26,"id":"48548","lastModified":"1301901774000","name":"Lee Stanley","type":"Person","_key":"28403"} +{"label":"David Johnston","version":21,"id":"48559","lastModified":"1301902102000","name":"David Johnston","type":"Person","_key":"28404"} +{"label":"Shane Stanley","version":25,"id":"18697","lastModified":"1301901629000","name":"Shane Stanley","type":"Person","_key":"28405"} +{"label":"Shane St. Clair","version":19,"id":"48560","lastModified":"1301902285000","name":"Shane St. Clair","type":"Person","_key":"28406"} +{"label":"Tito Baldwin","version":19,"id":"48561","lastModified":"1301901889000","name":"Tito Baldwin","type":"Person","_key":"28407"} +{"label":"Bob Bitchin","version":19,"id":"48562","lastModified":"1301901889000","name":"Bob Bitchin","type":"Person","_key":"28408"} +{"label":"Bob Brokaugh","version":19,"id":"48563","lastModified":"1301902285000","name":"Bob Brokaugh","type":"Person","_key":"28409"} +{"label":"Tim Forterer","version":19,"id":"48564","lastModified":"1301902285000","name":"Tim Forterer","type":"Person","_key":"28410"} +{"label":"Fadern","description":"No overview found.","id":"6186","runtime":100,"imdbId":"tt0064311","version":41,"lastModified":"1301420352000","studio":"AB Svenska Ord","genre":"Drama","title":"Fadern","releaseDate":-7171200000,"language":"en","type":"Movie","_key":"28411"} +{"label":"Alf Sj\u00f6berg","version":22,"id":"48566","lastModified":"1301901788000","name":"Alf Sj\u00f6berg","type":"Person","_key":"28412"} +{"label":"Georg Rydeberg","version":20,"id":"48571","lastModified":"1301902344000","name":"Georg Rydeberg","type":"Person","_key":"28413"} +{"label":"Jan-Olof Strandberg","version":20,"id":"48572","lastModified":"1301902344000","name":"Jan-Olof Strandberg","type":"Person","_key":"28414"} +{"label":"Tord St\u00e5l","version":18,"id":"48573","lastModified":"1301902351000","name":"Tord St\u00e5l","type":"Person","_key":"28415"} +{"label":"Axel D\u00fcberg","version":20,"id":"48574","lastModified":"1301902166000","name":"Axel D\u00fcberg","type":"Person","_key":"28416"} +{"label":"Aino Taube","version":21,"id":"48575","lastModified":"1301902199000","name":"Aino Taube","type":"Person","_key":"28417"} +{"label":"Nettoyage \u00e0 sec","description":"No overview found.","id":"6187","runtime":97,"imdbId":"tt0119773","version":45,"lastModified":"1301905646000","studio":"Les Films Alain Sarde","genre":"Comedy","title":"Nettoyage \u00e0 sec","releaseDate":875059200000,"language":"en","type":"Movie","_key":"28418"} +{"label":"Charles Berling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a2\/4cd744af5e73d676cd0004a2\/charles-berling-profile.jpg","version":45,"id":"48576","lastModified":"1301901370000","name":"Charles Berling","type":"Person","_key":"28419"} +{"label":"Mathilde Seigner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/632\/4bfac098017a3c702f000632\/mathilde-seigner-profile.jpg","version":50,"id":"48577","lastModified":"1301952583000","name":"Mathilde Seigner","type":"Person","_key":"28420"} +{"label":"Nanou Meister","version":19,"id":"48578","lastModified":"1301902102000","name":"Nanou Meister","type":"Person","_key":"28421"} +{"label":"No\u00e9 Pflieger","version":19,"id":"48579","lastModified":"1301902102000","name":"No\u00e9 Pflieger","type":"Person","_key":"28422"} +{"label":"Christopher King","version":19,"id":"48580","lastModified":"1301901889000","name":"Christopher King","type":"Person","_key":"28423"} +{"label":"G\u00e9rard Blanc","version":19,"id":"48581","lastModified":"1301902102000","name":"G\u00e9rard Blanc","type":"Person","_key":"28424"} +{"label":"Betty Petristy","version":19,"id":"48582","lastModified":"1301902102000","name":"Betty Petristy","type":"Person","_key":"28425"} +{"label":"Anne Fontaine","version":37,"id":"48583","lastModified":"1301901398000","name":"Anne Fontaine","type":"Person","_key":"28426"} +{"label":"Utopia","description":"No overview found.","id":"6196","runtime":92,"imdbId":"tt0188266","version":77,"lastModified":"1301908333000","studio":"Utopia Productions","genre":"Drama","title":"Utopia","releaseDate":289008000000,"language":"en","type":"Movie","_key":"28427"} +{"label":"Catherine Gauvreau","version":20,"id":"48616","lastModified":"1301902391000","name":"Catherine Gauvreau","type":"Person","_key":"28428"} +{"label":"Die Eisblumen Farm","description":"No overview found.","id":"6200","runtime":24,"imdbId":"tt0345176","version":64,"lastModified":"1301907686000","genre":"Comedy","title":"Die Eisblumen Farm","releaseDate":1090800000000,"language":"en","type":"Movie","_key":"28429"} +{"label":"Dominik Betz","version":20,"id":"48640","lastModified":"1301902192000","name":"Dominik Betz","type":"Person","_key":"28430"} +{"label":"Sara Hilliger","version":21,"id":"48642","lastModified":"1301902344000","name":"Sara Hilliger","type":"Person","_key":"28431"} +{"label":"Philip Hellmann","version":21,"id":"48643","lastModified":"1301902344000","name":"Philip Hellmann","type":"Person","_key":"28432"} +{"label":"Alicia Braune","version":20,"id":"48644","lastModified":"1301902156000","name":"Alicia Braune","type":"Person","_key":"28433"} +{"label":"Jutta Franke","version":20,"id":"48645","lastModified":"1301901961000","name":"Jutta Franke","type":"Person","_key":"28434"} +{"label":"Thri3ller","description":"No overview found.","id":"6202","runtime":12,"version":19,"lastModified":"1301908593000","studio":"Bavaria Film","genre":"Thriller","title":"Thri3ller","releaseDate":1054512000000,"language":"en","type":"Movie","_key":"28435"} +{"label":"Andreas Marschall","version":24,"id":"48659","lastModified":"1301901788000","name":"Andreas Marschall","type":"Person","_key":"28436"} +{"label":"Annette Kreft","version":16,"id":"48662","lastModified":"1301901961000","name":"Annette Kreft","type":"Person","_key":"28437"} +{"label":"The Rainbowmaker","description":"No overview found.","id":"6203","runtime":90,"imdbId":"tt0414428","version":73,"lastModified":"1300978460000","studio":"Revolver Film","genre":"Drama","title":"The Rainbowmaker","releaseDate":1210550400000,"language":"en","type":"Movie","_key":"28438"} +{"label":"Nana Dzhordzhadze","version":23,"id":"48663","lastModified":"1301901848000","name":"Nana Dzhordzhadze","type":"Person","_key":"28439"} +{"label":"Nino Kirtadze","version":20,"id":"48664","lastModified":"1301902017000","name":"Nino Kirtadze","type":"Person","_key":"28440"} +{"label":"Ramaz Chkhikvadze","version":20,"id":"48665","lastModified":"1301901962000","name":"Ramaz Chkhikvadze","type":"Person","_key":"28441"} +{"label":"Thomas Urb","version":19,"id":"48666","lastModified":"1301901946000","name":"Thomas Urb","type":"Person","_key":"28442"} +{"label":"Bis dass dein Tod uns scheidet","description":"No overview found.","id":"6204","runtime":90,"imdbId":"tt0312488","version":53,"lastModified":"1301905646000","genre":"Comedy","title":"Bis dass dein Tod uns scheidet","releaseDate":1017014400000,"language":"en","type":"Movie","_key":"28443"} +{"label":"Manfred Stelzer","version":25,"id":"28369","lastModified":"1301901956000","name":"Manfred Stelzer","type":"Person","_key":"28444"} +{"label":"Hanna Burgwitz","version":19,"id":"48672","lastModified":"1301901889000","name":"Hanna Burgwitz","type":"Person","_key":"28445"} +{"label":"Roswitha Schreiner","version":19,"id":"48673","lastModified":"1301901889000","name":"Roswitha Schreiner","type":"Person","_key":"28446"} +{"label":"Loretta Pflaum","version":22,"id":"48674","lastModified":"1301902210000","name":"Loretta Pflaum","type":"Person","_key":"28447"} +{"label":"Kristina Van Eyck","version":19,"id":"36441","lastModified":"1301901616000","name":"Kristina Van Eyck","type":"Person","_key":"28448"} +{"label":"Enie van de Meiklokjes","version":19,"id":"48675","lastModified":"1301901889000","name":"Enie van de Meiklokjes","type":"Person","_key":"28449"} +{"label":"Karoline Guthke","version":19,"id":"48676","lastModified":"1301901889000","name":"Karoline Guthke","type":"Person","_key":"28450"} +{"label":"Wilhelm Beck","version":19,"id":"48677","lastModified":"1301902285000","name":"Wilhelm Beck","type":"Person","_key":"28451"} +{"label":"Edgar M. B\u00f6hlke","version":19,"id":"32932","lastModified":"1301901889000","name":"Edgar M. B\u00f6hlke","type":"Person","_key":"28452"} +{"label":"Gilbert von Sohlern","version":19,"id":"38206","lastModified":"1301901616000","name":"Gilbert von Sohlern","type":"Person","_key":"28453"} +{"label":"Johannes Habla","version":19,"id":"48678","lastModified":"1301901889000","name":"Johannes Habla","type":"Person","_key":"28454"} +{"label":"Duell in der Nacht","description":"No overview found.","id":"6205","runtime":90,"imdbId":"tt1070317","version":65,"lastModified":"1301908333000","studio":"Network Movie","genre":"Crime","title":"Duell in der Nacht","releaseDate":1199664000000,"language":"en","type":"Movie","_key":"28455"} +{"label":"Alexander H\u00f6rbe","version":22,"id":"28422","lastModified":"1301902102000","name":"Alexander H\u00f6rbe","type":"Person","_key":"28456"} +{"label":"Krieg der Frauen","description":"No overview found.","id":"6206","runtime":90,"imdbId":"tt0826095","version":57,"lastModified":"1301418655000","studio":"teamWorx Produktion f\u00fcr Kino und Fernsehen GmbH","genre":"Comedy","title":"Krieg der Frauen","releaseDate":1162166400000,"language":"en","type":"Movie","_key":"28457"} +{"label":"Anna B\u00f6ttcher","version":26,"id":"48683","lastModified":"1301901599000","name":"Anna B\u00f6ttcher","type":"Person","_key":"28458"} +{"label":"Voll korrekte Jungs","description":"No overview found.","id":"6207","runtime":90,"imdbId":"tt0338536","version":52,"lastModified":"1301908333000","studio":"U5 Filmproduktion GmbH","genre":"Comedy","title":"Voll korrekte Jungs","releaseDate":1037232000000,"language":"en","type":"Movie","_key":"28459"} +{"label":"Rolf Silber","version":24,"id":"48685","lastModified":"1301902156000","name":"Rolf Silber","type":"Person","_key":"28460"} +{"label":"Marc Niki Jondral","version":18,"id":"48686","lastModified":"1301901452000","name":"Marc Niki Jondral","type":"Person","_key":"28461"} +{"label":"Sebastian Kroehnert","version":21,"id":"48687","lastModified":"1301901889000","name":"Sebastian Kroehnert","type":"Person","_key":"28462"} +{"label":"Fatih Alas","version":19,"id":"48688","lastModified":"1301901733000","name":"Fatih Alas","type":"Person","_key":"28463"} +{"label":"Pilu Lydlow","version":19,"id":"48689","lastModified":"1301902102000","name":"Pilu Lydlow","type":"Person","_key":"28464"} +{"label":"Carin C. Tietze","version":22,"id":"48690","lastModified":"1301902202000","name":"Carin C. Tietze","type":"Person","_key":"28465"} +{"label":"Maren Gingeleit","version":19,"id":"48691","lastModified":"1301902285000","name":"Maren Gingeleit","type":"Person","_key":"28466"} +{"label":"Anna Bertheau","version":22,"id":"48692","lastModified":"1301901807000","name":"Anna Bertheau","type":"Person","_key":"28467"} +{"label":"Martha Marbo","version":19,"id":"48693","lastModified":"1301902285000","name":"Martha Marbo","type":"Person","_key":"28468"} +{"label":"Norbert Heisterkamp","version":21,"id":"48694","lastModified":"1301902102000","name":"Norbert Heisterkamp","type":"Person","_key":"28469"} +{"label":"Oliver Stern","version":20,"id":"48695","lastModified":"1301902183000","name":"Oliver Stern","type":"Person","_key":"28470"} +{"label":"Es muss Liebe sein","description":"No overview found.","id":"6208","runtime":90,"imdbId":"tt0279322","version":42,"lastModified":"1301908593000","studio":"U5 Filmproduktion GmbH","genre":"Comedy","title":"Es muss Liebe sein","releaseDate":991180800000,"language":"en","type":"Movie","_key":"28471"} +{"label":"Michael Fitz","version":20,"id":"39327","lastModified":"1301901677000","name":"Michael Fitz","type":"Person","_key":"28472"} +{"label":"Nils Kahnwald","version":20,"id":"48696","lastModified":"1301902344000","name":"Nils Kahnwald","type":"Person","_key":"28473"} +{"label":"Antonio Putignano","version":20,"id":"48697","lastModified":"1301901962000","name":"Antonio Putignano","type":"Person","_key":"28474"} +{"label":"Felix D\u00fcnnemann","version":21,"id":"48698","lastModified":"1301901998000","name":"Felix D\u00fcnnemann","type":"Person","_key":"28475"} +{"label":"Sp\u00e4te Aussicht","description":"No overview found.","id":"6209","runtime":90,"imdbId":"tt1122873","version":45,"lastModified":"1301907279000","studio":"Hessischer Rundfunk","genre":"Drama","title":"Sp\u00e4te Aussicht","releaseDate":1196812800000,"language":"en","type":"Movie","_key":"28476"} +{"label":"Sylvia Hoffmann","version":19,"id":"48700","lastModified":"1301902285000","name":"Sylvia Hoffmann","type":"Person","_key":"28477"} +{"label":"Ernst Stankovski","version":23,"id":"48701","lastModified":"1301902194000","name":"Ernst Stankovski","type":"Person","_key":"28478"} +{"label":"Veronika Fitz","version":21,"id":"26955","lastModified":"1301901628000","name":"Veronika Fitz","type":"Person","_key":"28479"} +{"label":"Franziska Walser","version":22,"id":"48702","lastModified":"1301902285000","name":"Franziska Walser","type":"Person","_key":"28480"} +{"label":"Sabine Orl\u00e9ans","version":19,"id":"48703","lastModified":"1301901889000","name":"Sabine Orl\u00e9ans","type":"Person","_key":"28481"} +{"label":"Sebastian Schindegger","version":19,"id":"48704","lastModified":"1301902285000","name":"Sebastian Schindegger","type":"Person","_key":"28482"} +{"label":"F\u00fcrchte dich nicht","description":"No overview found.","id":"6210","runtime":90,"imdbId":"tt0844452","version":49,"lastModified":"1301906100000","studio":"TV-60 Filmproduktion","genre":"Thriller","title":"F\u00fcrchte dich nicht","releaseDate":1169424000000,"language":"en","type":"Movie","_key":"28483"} +{"label":"Christiane Balthasar","version":19,"id":"44325","lastModified":"1301902122000","name":"Christiane Balthasar","type":"Person","_key":"28484"} +{"label":"Ute Willing","version":19,"id":"48705","lastModified":"1301901925000","name":"Ute Willing","type":"Person","_key":"28485"} +{"label":"Henning Baum","version":21,"id":"38300","lastModified":"1301901413000","name":"Henning Baum","type":"Person","_key":"28486"} +{"label":"Oona Malinowski","version":19,"id":"48706","lastModified":"1301902299000","name":"Oona Malinowski","type":"Person","_key":"28487"} +{"label":"Theodor Hemprich","version":19,"id":"48707","lastModified":"1301902299000","name":"Theodor Hemprich","type":"Person","_key":"28488"} +{"label":"Der Letzte macht das Licht aus","description":"No overview found.","id":"6213","runtime":86,"imdbId":"tt0943384","version":61,"lastModified":"1301905646000","studio":"Kaminski.Stiehm.Film GmbH","genre":"Comedy","title":"Der Letzte macht das Licht aus","releaseDate":1168905600000,"language":"en","type":"Movie","_key":"28489"} +{"label":"Clemens M. Sch\u00f6nborn","version":18,"id":"52221","lastModified":"1301902102000","name":"Clemens M. Sch\u00f6nborn","type":"Person","_key":"28490"} +{"label":"Mario Irrek","version":19,"id":"38641","lastModified":"1301901616000","name":"Mario Irrek","type":"Person","_key":"28491"} +{"label":"Wolfram Koch","version":20,"id":"38312","lastModified":"1301901733000","name":"Wolfram Koch","type":"Person","_key":"28492"} +{"label":"Mira Partecke","version":19,"id":"48748","lastModified":"1301901888000","name":"Mira Partecke","type":"Person","_key":"28493"} +{"label":"Jenny Schily","version":19,"id":"43358","lastModified":"1301901733000","name":"Jenny Schily","type":"Person","_key":"28494"} +{"label":"Iren Reppen","version":19,"id":"52233","lastModified":"1301902285000","name":"Iren Reppen","type":"Person","_key":"28495"} +{"label":"Einmal noch die Heimat seh'n","description":"No overview found.","id":"6214","runtime":99,"imdbId":"tt0051574","version":50,"lastModified":"1301906629000","studio":"Carr Hartley's Film Production","genre":"Drama","title":"Einmal noch die Heimat seh'n","releaseDate":-351993600000,"language":"en","type":"Movie","_key":"28496"} +{"label":"Otto Meyer","version":19,"id":"48751","lastModified":"1301902285000","name":"Otto Meyer","type":"Person","_key":"28497"} +{"label":"Anita Gutwell","version":21,"id":"48758","lastModified":"1301901952000","name":"Anita Gutwell","type":"Person","_key":"28498"} +{"label":"Brigitte Antonius","version":19,"id":"48759","lastModified":"1301902102000","name":"Brigitte Antonius","type":"Person","_key":"28499"} +{"label":"J\u00fcrg Holl","version":18,"id":"48760","lastModified":"1301901980000","name":"J\u00fcrg Holl","type":"Person","_key":"28500"} +{"label":"Vickie Henderson","version":19,"id":"48761","lastModified":"1301902285000","name":"Vickie Henderson","type":"Person","_key":"28501"} +{"label":"Walter Varndal","version":19,"id":"48762","lastModified":"1301902285000","name":"Walter Varndal","type":"Person","_key":"28502"} +{"label":"Willi Hufnagel","version":19,"id":"48763","lastModified":"1301902285000","name":"Willi Hufnagel","type":"Person","_key":"28503"} +{"label":"Josef Krastel","version":20,"id":"48764","lastModified":"1301901888000","name":"Josef Krastel","type":"Person","_key":"28504"} +{"label":"Rolf Karl Augustin","version":19,"id":"48765","lastModified":"1301902285000","name":"Rolf Karl Augustin","type":"Person","_key":"28505"} +{"label":"Horst Beck","version":19,"id":"26500","lastModified":"1301902102000","name":"Horst Beck","type":"Person","_key":"28506"} +{"label":"Viktoria Christen","version":19,"id":"48766","lastModified":"1301902285000","name":"Viktoria Christen","type":"Person","_key":"28507"} +{"label":"Walter Stummvoll","version":19,"id":"48767","lastModified":"1301902285000","name":"Walter Stummvoll","type":"Person","_key":"28508"} +{"label":"Niete zieht Hauptgewinn","description":"No overview found.","id":"6215","runtime":88,"imdbId":"tt1073224","version":48,"lastModified":"1301906629000","studio":"Ziegler Film","genre":"Comedy","title":"Niete zieht Hauptgewinn","releaseDate":1198800000000,"language":"en","type":"Movie","_key":"28509"} +{"label":"Helmut Metzger","version":19,"id":"48768","lastModified":"1301902102000","name":"Helmut Metzger","type":"Person","_key":"28510"} +{"label":"Christiane H\u00f6rbiger","version":25,"id":"48775","lastModified":"1301901497000","name":"Christiane H\u00f6rbiger","type":"Person","_key":"28511"} +{"label":"Alexandra Kalweit","version":19,"id":"48776","lastModified":"1301902285000","name":"Alexandra Kalweit","type":"Person","_key":"28512"} +{"label":"Eray Egilmez","version":19,"id":"48777","lastModified":"1301902285000","name":"Eray Egilmez","type":"Person","_key":"28513"} +{"label":"Bjarne M\u00e4del","version":19,"id":"48778","lastModified":"1301901888000","name":"Bjarne M\u00e4del","type":"Person","_key":"28514"} +{"label":"Beatrice Richter","version":19,"id":"48779","lastModified":"1301901888000","name":"Beatrice Richter","type":"Person","_key":"28515"} +{"label":"Hurensohn","description":"No overview found.","id":"6216","runtime":86,"imdbId":"tt0388118","version":90,"lastModified":"1301908333000","studio":"Aichholzer Film","genre":"Drama","title":"Hurensohn","releaseDate":1075161600000,"language":"en","type":"Movie","_key":"28516"} +{"label":"Michael Sturminger","version":21,"id":"48784","lastModified":"1301901733000","name":"Michael Sturminger","type":"Person","_key":"28517"} +{"label":"Stanislav Lisnic","version":19,"id":"48790","lastModified":"1301902102000","name":"Stanislav Lisnic","type":"Person","_key":"28518"} +{"label":"Ina Gog\u00e1lov\u00e1","version":18,"id":"48792","lastModified":"1301901803000","name":"Ina Gog\u00e1lov\u00e1","type":"Person","_key":"28519"} +{"label":"Gabriel Usein","version":19,"id":"48793","lastModified":"1301902285000","name":"Gabriel Usein","type":"Person","_key":"28520"} +{"label":"Emanuel Usein","version":19,"id":"48794","lastModified":"1301902285000","name":"Emanuel Usein","type":"Person","_key":"28521"} +{"label":"Stefan Sidlo","version":18,"id":"48795","lastModified":"1301901980000","name":"Stefan Sidlo","type":"Person","_key":"28522"} +{"label":"Tamara Metelka","version":18,"id":"48796","lastModified":"1301902351000","name":"Tamara Metelka","type":"Person","_key":"28523"} +{"label":"Robert Ritter","version":19,"id":"48797","lastModified":"1301901888000","name":"Robert Ritter","type":"Person","_key":"28524"} +{"label":"Susan Sozubek","version":19,"id":"48798","lastModified":"1301902285000","name":"Susan Sozubek","type":"Person","_key":"28525"} +{"label":"Natalya Baranova","version":19,"id":"48799","lastModified":"1301902285000","name":"Natalya Baranova","type":"Person","_key":"28526"} +{"label":"Pola Claricini","version":19,"id":"48800","lastModified":"1301901888000","name":"Pola Claricini","type":"Person","_key":"28527"} +{"label":"Helmut Hafner","version":19,"id":"48801","lastModified":"1301901888000","name":"Helmut Hafner","type":"Person","_key":"28528"} +{"label":"Dessislava Urumova","version":18,"id":"48802","lastModified":"1301901980000","name":"Dessislava Urumova","type":"Person","_key":"28529"} +{"label":"Bernadette Abendstein","version":17,"id":"48803","lastModified":"1301901733000","name":"Bernadette Abendstein","type":"Person","_key":"28530"} +{"label":"Cat People","description":"No overview found.","id":"6217","runtime":118,"imdbId":"tt0083722","trailer":"http:\/\/www.youtube.com\/watch?v=U-gku3bkFl0","version":241,"lastModified":"1301904628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/951\/4bc91d9b017a3c57fe00b951\/cat-people-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"Cat People","releaseDate":386553600000,"language":"en","type":"Movie","_key":"28531"} +{"label":"Scott Paulin","version":39,"id":"48810","lastModified":"1301901985000","name":"Scott Paulin","type":"Person","_key":"28532"} +{"label":"Die Kr\u00e4hen","description":"No overview found.","id":"6222","runtime":90,"imdbId":"tt0891519","version":98,"lastModified":"1301908333000","studio":"Sat.1","genre":"Horror","title":"Die Kr\u00e4hen","releaseDate":1163462400000,"language":"en","type":"Movie","_key":"28533"} +{"label":"Edzard Onneken","version":26,"id":"25506","lastModified":"1301901676000","name":"Edzard Onneken","type":"Person","_key":"28534"} +{"label":"Susanna Simon","version":19,"id":"41773","lastModified":"1301901803000","name":"Susanna Simon","type":"Person","_key":"28535"} +{"label":"Stefan J\u00fcrgens","version":21,"id":"48903","lastModified":"1301902152000","name":"Stefan J\u00fcrgens","type":"Person","_key":"28536"} +{"label":"Nike Fuhrmann","version":19,"id":"48904","lastModified":"1301902285000","name":"Nike Fuhrmann","type":"Person","_key":"28537"} +{"label":"Silke Matthias","version":19,"id":"48905","lastModified":"1301901888000","name":"Silke Matthias","type":"Person","_key":"28538"} +{"label":"Anton Rattinger","version":21,"id":"36691","lastModified":"1301901564000","name":"Anton Rattinger","type":"Person","_key":"28539"} +{"label":"Hans-Peter Burkhardt","version":17,"id":"48906","lastModified":"1301901888000","name":"Hans-Peter Burkhardt","type":"Person","_key":"28540"} +{"label":"Harald Grundschok","version":17,"id":"48907","lastModified":"1301901888000","name":"Harald Grundschok","type":"Person","_key":"28541"} +{"label":"B\u00fchne frei f\u00fcr Marika","description":"No overview found.","id":"6224","runtime":93,"imdbId":"tt0051440","version":59,"lastModified":"1301905646000","studio":"Real-Film GmbH","genre":"Comedy","title":"B\u00fchne frei f\u00fcr Marika","releaseDate":-359251200000,"language":"en","type":"Movie","_key":"28542"} +{"label":"Marika R\u00f6kk","version":20,"id":"48856","lastModified":"1301902223000","name":"Marika R\u00f6kk","type":"Person","_key":"28543"} +{"label":"Susanne von Almassy","version":19,"id":"48858","lastModified":"1301902285000","name":"Susanne von Almassy","type":"Person","_key":"28544"} +{"label":"Helmuth M. Backhaus","version":21,"id":"48851","lastModified":"1301902351000","name":"Helmuth M. Backhaus","type":"Person","_key":"28545"} +{"label":"Kurt Gro\u00dfkurth","version":24,"id":"48859","lastModified":"1301901497000","name":"Kurt Gro\u00dfkurth","type":"Person","_key":"28546"} +{"label":"Fred Raul","version":19,"id":"48860","lastModified":"1301902285000","name":"Fred Raul","type":"Person","_key":"28547"} +{"label":"\u00dcbermut im Salzkammergut","description":"No overview found.","id":"6225","runtime":99,"imdbId":"tt0057728","version":53,"lastModified":"1301416007000","studio":"Music House","genre":"Comedy","title":"\u00dcbermut im Salzkammergut","releaseDate":-200102400000,"language":"en","type":"Movie","_key":"28548"} +{"label":"Hans Billian","version":21,"id":"48862","lastModified":"1301901603000","name":"Hans Billian","type":"Person","_key":"28549"} +{"label":"Helga Sommerfeld","version":19,"id":"48867","lastModified":"1301901888000","name":"Helga Sommerfeld","type":"Person","_key":"28550"} +{"label":"Margitta Scherr","version":19,"id":"48868","lastModified":"1301902285000","name":"Margitta Scherr","type":"Person","_key":"28551"} +{"label":"Gus Backus","version":21,"id":"48869","lastModified":"1301902357000","name":"Gus Backus","type":"Person","_key":"28552"} +{"label":"Billy Mo","version":19,"id":"48870","lastModified":"1301901888000","name":"Billy Mo","type":"Person","_key":"28553"} +{"label":"Teddy Parker","version":19,"id":"48871","lastModified":"1301901888000","name":"Teddy Parker","type":"Person","_key":"28554"} +{"label":"Peppino Di Capri","version":19,"id":"48872","lastModified":"1301901888000","name":"Peppino Di Capri","type":"Person","_key":"28555"} +{"label":"Carlos Otero","version":21,"id":"48873","lastModified":"1301901888000","name":"Carlos Otero","type":"Person","_key":"28556"} +{"label":"Carmencita","version":21,"id":"48874","lastModified":"1301902013000","name":"Carmencita","type":"Person","_key":"28557"} +{"label":"Chris Barber","version":19,"id":"48875","lastModified":"1301901888000","name":"Chris Barber","type":"Person","_key":"28558"} +{"label":"Mein Weg zu dir hei\u00dft Liebe","description":"No overview found.","id":"6226","runtime":92,"imdbId":"tt0400922","version":51,"lastModified":"1301905713000","studio":"Sat.1","genre":"Drama","title":"Mein Weg zu dir hei\u00dft Liebe","releaseDate":1078185600000,"language":"en","type":"Movie","_key":"28559"} +{"label":"Thomas Berger","version":27,"id":"38439","lastModified":"1301901510000","name":"Thomas Berger","type":"Person","_key":"28560"} +{"label":"Sigi Terpoorten","version":20,"id":"48881","lastModified":"1301902183000","name":"Sigi Terpoorten","type":"Person","_key":"28561"} +{"label":"J\u00f6rg Witte","version":20,"id":"48882","lastModified":"1301902389000","name":"J\u00f6rg Witte","type":"Person","_key":"28562"} +{"label":"Neelesha BaVora","version":24,"id":"48883","lastModified":"1301901351000","name":"Neelesha BaVora","type":"Person","_key":"28563"} +{"label":"Pizza Colonia","description":"No overview found.","id":"6227","runtime":90,"imdbId":"tt0102675","version":49,"lastModified":"1301906175000","studio":"G\u00e9mini Films","genre":"Comedy","title":"Pizza Colonia","releaseDate":691891200000,"language":"en","type":"Movie","_key":"28564"} +{"label":"Klaus Emmerich","version":20,"id":"32951","lastModified":"1301901836000","name":"Klaus Emmerich","type":"Person","_key":"28565"} +{"label":"Eberhard Feik","version":21,"id":"36614","lastModified":"1301901402000","name":"Eberhard Feik","type":"Person","_key":"28566"} +{"label":"Boris Paterok","version":20,"id":"48887","lastModified":"1301901511000","name":"Boris Paterok","type":"Person","_key":"28567"} +{"label":"Adriana Reali","version":20,"id":"48888","lastModified":"1301902195000","name":"Adriana Reali","type":"Person","_key":"28568"} +{"label":"R\u00e4uber und Gendarm","description":"No overview found.","id":"6228","runtime":90,"imdbId":"tt0078188","version":37,"lastModified":"1301419488000","studio":"S\u00fcdwestrundfunk","genre":"Crime","title":"R\u00e4uber und Gendarm","releaseDate":252460800000,"language":"en","type":"Movie","_key":"28569"} +{"label":"Hans-J\u00fcrgen T\u00f6gel","version":20,"id":"48889","lastModified":"1301901788000","name":"Hans-J\u00fcrgen T\u00f6gel","type":"Person","_key":"28570"} +{"label":"Die Hochzeit meiner T\u00f6chter","description":"No overview found.","id":"6230","runtime":90,"imdbId":"tt0484849","version":58,"lastModified":"1301908333000","studio":"Ziegler Film","genre":"Comedy","title":"Die Hochzeit meiner T\u00f6chter","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"28571"} +{"label":"Thomas Jacob","version":19,"id":"36935","lastModified":"1301901476000","name":"Thomas Jacob","type":"Person","_key":"28572"} +{"label":"Oliver Bootz","version":19,"id":"48895","lastModified":"1301902102000","name":"Oliver Bootz","type":"Person","_key":"28573"} +{"label":"Ruth Gl\u00f6ss","version":18,"id":"48898","lastModified":"1301902166000","name":"Ruth Gl\u00f6ss","type":"Person","_key":"28574"} +{"label":"Miriam Muth","version":19,"id":"48899","lastModified":"1301902102000","name":"Miriam Muth","type":"Person","_key":"28575"} +{"label":"Detlef Schr\u00f6tter","version":17,"id":"48900","lastModified":"1301902102000","name":"Detlef Schr\u00f6tter","type":"Person","_key":"28576"} +{"label":"Ein Polterabend","description":"No overview found.","id":"6231","runtime":90,"imdbId":"tt0048503","version":46,"lastModified":"1301906629000","studio":"DEFA","genre":"Comedy","title":"Ein Polterabend","releaseDate":-453513600000,"language":"en","type":"Movie","_key":"28577"} +{"label":"Willi Endresser","version":21,"id":"48916","lastModified":"1301902285000","name":"Willi Endresser","type":"Person","_key":"28578"} +{"label":"Harry Gillmann","version":20,"id":"48917","lastModified":"1301902102000","name":"Harry Gillmann","type":"Person","_key":"28579"} +{"label":"Maximilian Larsen","version":19,"id":"48918","lastModified":"1301901888000","name":"Maximilian Larsen","type":"Person","_key":"28580"} +{"label":"Leo Sloma","version":19,"id":"48919","lastModified":"1301901888000","name":"Leo Sloma","type":"Person","_key":"28581"} +{"label":"Kurt Sperling","version":20,"id":"48920","lastModified":"1301902102000","name":"Kurt Sperling","type":"Person","_key":"28582"} +{"label":"Charles Hans Vogt","version":21,"id":"48921","lastModified":"1301902163000","name":"Charles Hans Vogt","type":"Person","_key":"28583"} +{"label":"Otto Zedler","version":19,"id":"48922","lastModified":"1301901888000","name":"Otto Zedler","type":"Person","_key":"28584"} +{"label":"Polterabend","description":"No overview found.","id":"6232","runtime":22,"imdbId":"tt0787503","version":50,"lastModified":"1301906746000","studio":"Internationale Filmschule K\u00f6ln","genre":"Comedy","title":"Polterabend","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"28585"} +{"label":"Marian Bruchholz","version":20,"id":"48925","lastModified":"1301901961000","name":"Marian Bruchholz","type":"Person","_key":"28586"} +{"label":"Kirstin Hesse","version":20,"id":"48928","lastModified":"1301901998000","name":"Kirstin Hesse","type":"Person","_key":"28587"} +{"label":"Axel Kraus","version":20,"id":"48929","lastModified":"1301902156000","name":"Axel Kraus","type":"Person","_key":"28588"} +{"label":"Jan Nissen","version":20,"id":"48930","lastModified":"1301902156000","name":"Jan Nissen","type":"Person","_key":"28589"} +{"label":"Karin Rasenack","version":20,"id":"48931","lastModified":"1301901961000","name":"Karin Rasenack","type":"Person","_key":"28590"} +{"label":"Polterabend","description":"No overview found.","id":"6233","runtime":90,"imdbId":"tt0032919","version":55,"lastModified":"1301421203000","studio":"Astra-Film","genre":"Comedy","title":"Polterabend","releaseDate":-939859200000,"language":"en","type":"Movie","_key":"28591"} +{"label":"Rudi Godden","version":18,"id":"48937","lastModified":"1301902166000","name":"Rudi Godden","type":"Person","_key":"28592"} +{"label":"Camilla Horn","version":21,"id":"48938","lastModified":"1301902364000","name":"Camilla Horn","type":"Person","_key":"28593"} +{"label":"Maria Andergast","version":21,"id":"48939","lastModified":"1301901960000","name":"Maria Andergast","type":"Person","_key":"28594"} +{"label":"Ralph Arthur Roberts","version":19,"id":"48940","lastModified":"1301901888000","name":"Ralph Arthur Roberts","type":"Person","_key":"28595"} +{"label":"Volker von Collande","version":21,"id":"48941","lastModified":"1301902146000","name":"Volker von Collande","type":"Person","_key":"28596"} +{"label":"Franz Zimmermann","version":19,"id":"48942","lastModified":"1301901888000","name":"Franz Zimmermann","type":"Person","_key":"28597"} +{"label":"Kurt Vespermann","version":20,"id":"48943","lastModified":"1301901888000","name":"Kurt Vespermann","type":"Person","_key":"28598"} +{"label":"Polterabend","description":"No overview found.","id":"6236","runtime":99,"imdbId":"tt0395248","version":55,"lastModified":"1301906175000","studio":"Teamfilm Wien","genre":"Crime","title":"Polterabend","releaseDate":1071360000000,"language":"en","type":"Movie","_key":"28599"} +{"label":"Julian P\u00f6lsler","version":20,"id":"48948","lastModified":"1301901961000","name":"Julian P\u00f6lsler","type":"Person","_key":"28600"} +{"label":"Ingrid Burkhard","version":23,"id":"48950","lastModified":"1301901825000","name":"Ingrid Burkhard","type":"Person","_key":"28601"} +{"label":"Sibylla Canonica","version":16,"id":"48951","lastModified":"1301902344000","name":"Sibylla Canonica","type":"Person","_key":"28602"} +{"label":"Otto Anton Eder","version":20,"id":"48952","lastModified":"1301902344000","name":"Otto Anton Eder","type":"Person","_key":"28603"} +{"label":"Fritz Egger","version":16,"id":"48953","lastModified":"1301902344000","name":"Fritz Egger","type":"Person","_key":"28604"} +{"label":"Ludwig Hirsch","version":16,"id":"48954","lastModified":"1301902344000","name":"Ludwig Hirsch","type":"Person","_key":"28605"} +{"label":"Erwin Steinhauer","version":26,"id":"48087","lastModified":"1301901655000","name":"Erwin Steinhauer","type":"Person","_key":"28606"} +{"label":"Nikolaus Paryla","version":25,"id":"39487","lastModified":"1301901655000","name":"Nikolaus Paryla","type":"Person","_key":"28607"} +{"label":"Prince Valiant","description":"A young Viking prince strives to become a knight in King Arthur's Court and restore his exiled father to his rightful throne.","id":"6261","runtime":100,"imdbId":"tt0047365","version":249,"lastModified":"1301906667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/885\/4c5d11a97b9aa151f6000885\/prince-valiant-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Prince Valiant","releaseDate":-496800000000,"language":"en","type":"Movie","_key":"28608"} +{"label":"Debra Paget","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bc\/4c2b54557b9aa15e9b0000bc\/debra-paget-profile.jpg","version":42,"id":"48958","lastModified":"1301901361000","name":"Debra Paget","type":"Person","_key":"28609"} +{"label":"Barry Jones","version":30,"id":"48959","lastModified":"1301901399000","name":"Barry Jones","type":"Person","_key":"28610"} +{"label":"Mary Philips","version":24,"id":"48960","lastModified":"1301901947000","name":"Mary Philips","type":"Person","_key":"28611"} +{"label":"Howard Wendell","version":20,"id":"48961","lastModified":"1301902212000","name":"Howard Wendell","type":"Person","_key":"28612"} +{"label":"Tom Conway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e4\/4bf186fd017a3c32170001e4\/tom-conway-profile.jpg","version":53,"birthday":"-2060557200000","id":"48962","birthplace":"St. Petersburg, Russian Empire","lastModified":"1301901379000","name":"Tom Conway","type":"Person","_key":"28613"} +{"label":"Lloyd Ahern II","version":38,"id":"43891","lastModified":"1301901816000","name":"Lloyd Ahern II","type":"Person","_key":"28614"} +{"label":"Jarma Lewis","version":20,"id":"48963","lastModified":"1301902378000","name":"Jarma Lewis","type":"Person","_key":"28615"} +{"label":"Prince Valiant","description":"Prince Valiant is a 1997 film directed by Anthony Hickox. The film was based on the long running comic strip of Hal Foster. It was the last film of actor Walter Gotell.","id":"6264","runtime":91,"imdbId":"tt0119947","version":105,"lastModified":"1301904890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00b\/4bcb845e017a3c754700000b\/prince-valiant-mid.jpg","studio":"Constantin Film","genre":"Adventure","title":"Prince Valiant","releaseDate":869702400000,"language":"en","type":"Movie","_key":"28616"} +{"label":"Anthony Hickox","version":51,"id":"48965","lastModified":"1301901665000","name":"Anthony Hickox","type":"Person","_key":"28617"} +{"label":"Ben Pullen","version":21,"id":"48968","lastModified":"1301902285000","name":"Ben Pullen","type":"Person","_key":"28618"} +{"label":"Hamish Campbell-Robertson","version":19,"id":"48969","lastModified":"1301902285000","name":"Hamish Campbell-Robertson","type":"Person","_key":"28619"} +{"label":"Marcus Schenkenberg","version":19,"id":"48970","lastModified":"1301902285000","name":"Marcus Schenkenberg","type":"Person","_key":"28620"} +{"label":"Crime Spree","description":"An out-of-town heist becomes a nightmare for a crew of French burglars when they mistakenly rob the head of the Chicago mafia. Unaccustomed to the ways of the American underworld, it is not long before they have the mafia, the FBI and a couple of street gangs on their backs as they attempt to make their way back to Paris.","id":"6277","runtime":98,"imdbId":"tt0310924","version":139,"lastModified":"1301903147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4bc91da1017a3c57fe00b971\/crime-spree-mid.jpg","genre":"Action","title":"Crime Spree","releaseDate":1050451200000,"language":"en","tagline":"It was supposed to be an easy job","type":"Movie","_key":"28621"} +{"label":"Renaud","version":18,"id":"2189","lastModified":"1299493510000","name":"Renaud","type":"Person","_key":"28622"} +{"label":"Brad Mirman","version":38,"id":"22007","lastModified":"1301901655000","name":"Brad Mirman","type":"Person","_key":"28623"} +{"label":"Reign of Fire","description":"A brood of fire-breathing dragons emerges from the earth and begins setting fire to everything, establishing dominance over the planet.","id":"6278","runtime":101,"imdbId":"tt0253556","version":715,"lastModified":"1301901616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/987\/4bc91da2017a3c57fe00b987\/reign-of-fire-mid.jpg","studio":"The Zanuck Company","genre":"Action","title":"Reign of Fire","releaseDate":1026172800000,"language":"en","tagline":"Fight Fire With Fire","type":"Movie","_key":"28624"} +{"label":"Scott Moutter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d7\/4d4eee177b9aa13aaf00a7d7\/scott-moutter-profile.jpg","version":26,"id":"56137","lastModified":"1301901338000","name":"Scott Moutter","type":"Person","_key":"28625"} +{"label":"Sister Act 2: Back in the Habit","description":"Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous local authority chief Mr. Crisp.","id":"6279","runtime":107,"imdbId":"tt0108147","trailer":"http:\/\/www.youtube.com\/watch?v=k80E5KTjvmA","version":329,"lastModified":"1301904142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/169\/4d5055077b9aa13ab400d169\/sister-act-2-back-in-the-habit-mid.jpg","genre":"Comedy","title":"Sister Act 2: Back in the Habit","releaseDate":755481600000,"language":"en","type":"Movie","_key":"28626"} +{"label":"Junior","description":"As part of a fertility research project, a male scientist agrees to carry a pregnancy in his own body.","id":"6280","runtime":109,"imdbId":"tt0110216","version":218,"lastModified":"1301902721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc91da6017a3c57fe00b99d\/junior-mid.jpg","genre":"Comedy","title":"Junior","releaseDate":785548800000,"language":"en","tagline":"Nothing is inconceivable","type":"Movie","_key":"28627"} +{"label":"Klein Erna auf dem Jungfernstieg","description":"No overview found.","id":"6281","runtime":87,"imdbId":"tt0064548","version":55,"lastModified":"1301907279000","studio":"Studio Hamburg Filmproduktion","genre":"Comedy","title":"Klein Erna auf dem Jungfernstieg","releaseDate":-5356800000,"language":"en","type":"Movie","_key":"28628"} +{"label":"Gitta Zeidler","version":19,"id":"48989","lastModified":"1301902284000","name":"Gitta Zeidler","type":"Person","_key":"28629"} +{"label":"Edgar Bessen","version":19,"id":"38176","lastModified":"1301901888000","name":"Edgar Bessen","type":"Person","_key":"28630"} +{"label":"Almut Eggert","version":19,"id":"48988","lastModified":"1301902284000","name":"Almut Eggert","type":"Person","_key":"28631"} +{"label":"Heidi Mahler","version":19,"id":"48990","lastModified":"1301902284000","name":"Heidi Mahler","type":"Person","_key":"28632"} +{"label":"Rodney Geiger","version":19,"id":"48991","lastModified":"1301902284000","name":"Rodney Geiger","type":"Person","_key":"28633"} +{"label":"Petra von der Linde","version":19,"id":"48992","lastModified":"1301902284000","name":"Petra von der Linde","type":"Person","_key":"28634"} +{"label":"Martin Holm","version":19,"id":"48993","lastModified":"1301902284000","name":"Martin Holm","type":"Person","_key":"28635"} +{"label":"Bernd Kranz","version":19,"id":"48994","lastModified":"1301902284000","name":"Bernd Kranz","type":"Person","_key":"28636"} +{"label":"Coyote Ugly","description":"When gorgeous, talented Violet Sanford lands in New York City with hopes of becoming a famous songwriter, she's forced to make ends meet by working at Coyote Ugly, a hot new club filled with beautiful bartenders and outrageous entertainment. Shaking her assets behind the bar certainly helps to boost the shy Violet's confidence. But it hasn't completely cured her crippling case of stage fright.","id":"6282","runtime":100,"imdbId":"tt0200550","trailer":"http:\/\/www.youtube.com\/watch?v=1474","version":494,"lastModified":"1301902292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03f\/4c24208a7b9aa1446d00003f\/coyote-ugly-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Coyote Ugly","releaseDate":965001600000,"language":"en","tagline":"The Party Never Ends.","type":"Movie","_key":"28637"} +{"label":"Izabella Miko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/254\/4d20881e5e73d66b30002254\/izabella-miko-profile.jpg","biography":"<div style=\"border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 3px; padding-right: 3px; padding-bottom: 3px; padding-left: 3px; height: 98%; cursor: text; background-image: url(http:\/\/hwcdn.themoviedb.org\/images\/gray-extend\/form\/text-bg.gif); background-attachment: fixed; background-repeat: repeat no-repeat; \"><div sty","version":65,"birthday":"348879600000","id":"59592","birthplace":"L\u00f3dz, L\u00f3dzkie, Poland","lastModified":"1301901128000","name":"Izabella Miko","type":"Person","_key":"28638"} +{"label":"Tyra Banks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16f\/4cf2ee705e73d6238500016f\/tyra-banks-profile.jpg","version":35,"id":"77897","lastModified":"1301901602000","name":"Tyra Banks","type":"Person","_key":"28639"} +{"label":"David McNally","version":29,"id":"48980","lastModified":"1301902010000","name":"David McNally","type":"Person","_key":"28640"} +{"label":"Mousehunt","description":"Down-on-their luck brothers Lars and Ernie Smuntz (nathan Lane and Lee Evans) don't think much of the crumbling old mansion they inherit... until they dicover the estate is worth millions.But before they can cash in, they've got to rid the house of its single, stubborn occupant: a tiny and tenacious mouse.","id":"6283","runtime":98,"imdbId":"tt0119715","version":95,"lastModified":"1301902653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50b\/4cea1bc85e73d6259000050b\/mousehunt-mid.jpg","genre":"Comedy","title":"Mousehunt","releaseDate":882489600000,"language":"en","type":"Movie","_key":"28641"} +{"label":"L'Assassinat du P\u00e8re No\u00ebl","description":"No overview found.","id":"6296","runtime":105,"imdbId":"tt0033357","version":45,"lastModified":"1301907279000","studio":"Continental Film","genre":"Comedy","title":"L'Assassinat du P\u00e8re No\u00ebl","releaseDate":-890265600000,"language":"en","type":"Movie","_key":"28642"} +{"label":"Christian-Jaque","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b0\/4d3efa4b5e73d622cf0047b0\/christian-jaque-profile.jpg","version":25,"id":"48995","lastModified":"1301901955000","name":"Christian-Jaque","type":"Person","_key":"28643"} +{"label":"Harry Baur","version":19,"id":"48997","lastModified":"1301902284000","name":"Harry Baur","type":"Person","_key":"28644"} +{"label":"Ren\u00e9e Faure","version":22,"id":"48998","lastModified":"1301902166000","name":"Ren\u00e9e Faure","type":"Person","_key":"28645"} +{"label":"Marie-H\u00e9l\u00e8ne Dast\u00e9","version":21,"id":"48999","lastModified":"1301901667000","name":"Marie-H\u00e9l\u00e8ne Dast\u00e9","type":"Person","_key":"28646"} +{"label":"Robert Le Vigan","version":22,"id":"49000","lastModified":"1301901708000","name":"Robert Le Vigan","type":"Person","_key":"28647"} +{"label":"Meine Tochter darf es nie erfahren","description":"No overview found.","id":"6304","runtime":93,"imdbId":"tt0266759","version":47,"lastModified":"1301908592000","studio":"Sat.1","genre":"Drama","title":"Meine Tochter darf es nie erfahren","releaseDate":974160000000,"language":"en","type":"Movie","_key":"28648"} +{"label":"Lutz Konermann","version":20,"id":"49003","lastModified":"1301901810000","name":"Lutz Konermann","type":"Person","_key":"28649"} +{"label":"Kai Scheve","version":20,"id":"38216","lastModified":"1301901676000","name":"Kai Scheve","type":"Person","_key":"28650"} +{"label":"Larisa Reihl","version":20,"id":"49008","lastModified":"1301901840000","name":"Larisa Reihl","type":"Person","_key":"28651"} +{"label":"Martin Umbach","version":25,"id":"38682","lastModified":"1301901497000","name":"Martin Umbach","type":"Person","_key":"28652"} +{"label":"Flood","description":"Timely yet terrifying, The Flood predicts the unthinkable. When a raging storm coincides with high seas it unleashes a colossal tidal surge, which travels mercilessly down England's East Coast and into the Thames Estuary. Overwhelming the Barrier, torrents of water pour into the city. The lives of millions of Londoners are at stake.","id":"6309","runtime":185,"imdbId":"tt0790665","version":317,"lastModified":"1302024362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4bc91da9017a3c57fe00b9c9\/flood-mid.jpg","studio":"Powercorp","genre":"Action","title":"Flood","releaseDate":1176076800000,"language":"en","type":"Movie","_key":"28653"} +{"label":"Tony Mitchell","version":23,"id":"49009","lastModified":"1301901538000","name":"Tony Mitchell","type":"Person","_key":"28654"} +{"label":"Der Boss aus dem Westen","description":"No overview found.","id":"6310","runtime":94,"imdbId":"tt0088841","version":47,"lastModified":"1301908332000","studio":"WDR","genre":"Comedy","title":"Der Boss aus dem Westen","releaseDate":594432000000,"language":"en","type":"Movie","_key":"28655"} +{"label":"Vivian Naefe","version":22,"id":"49010","lastModified":"1301901565000","name":"Vivian Naefe","type":"Person","_key":"28656"} +{"label":"Thomas Kretschmer","version":19,"id":"49013","lastModified":"1301902284000","name":"Thomas Kretschmer","type":"Person","_key":"28657"} +{"label":"Peter Zilles","version":19,"id":"49014","lastModified":"1301902284000","name":"Peter Zilles","type":"Person","_key":"28658"} +{"label":"Heinz G\u00fcnther Kilian","version":19,"id":"49015","lastModified":"1301902284000","name":"Heinz G\u00fcnther Kilian","type":"Person","_key":"28659"} +{"label":"Guntbert Warns","version":18,"id":"49016","lastModified":"1301902351000","name":"Guntbert Warns","type":"Person","_key":"28660"} +{"label":"Siegfried Kernen","version":20,"id":"49017","lastModified":"1301902284000","name":"Siegfried Kernen","type":"Person","_key":"28661"} +{"label":"Brotherhood of the Wolf","description":"In 18th century France, the Chevalier de Fronsac and his native American friend Mani are sent by the King to the Gevaudan province to investigate the killings of hundreds by a mysterious beast.","id":"6312","runtime":137,"imdbId":"tt0237534","homepage":"http:\/\/www.brotherhoodofthewolf.com\/","version":172,"lastModified":"1301906356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aec\/4c0b60cd017a3c33d9000aec\/le-pacte-des-loups-mid.jpg","studio":"Canal Plus","genre":"Action","title":"Brotherhood of the Wolf","releaseDate":980899200000,"language":"en","type":"Movie","_key":"28662"} +{"label":"Samuel Le Bihan","version":63,"id":"49025","lastModified":"1301901273000","name":"Samuel Le Bihan","type":"Person","_key":"28663"} +{"label":"J\u00e9r\u00e9mie Renier","version":63,"id":"51325","lastModified":"1301901198000","name":"J\u00e9r\u00e9mie Renier","type":"Person","_key":"28664"} +{"label":"Rosenstrasse","description":"No overview found.","id":"6317","runtime":136,"imdbId":"tt0298131","version":134,"lastModified":"1301905047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e5\/4bc91dad017a3c57fe00b9e5\/rosenstrasse-mid.jpg","studio":"Studio Hamburg International Production","genre":"Drama","title":"Rosenstrasse","releaseDate":1063843200000,"language":"en","type":"Movie","_key":"28665"} +{"label":"Jutta Lampe","version":21,"id":"49045","lastModified":"1301901476000","name":"Jutta Lampe","type":"Person","_key":"28666"} +{"label":"Romijn Conen","version":20,"id":"49046","lastModified":"1301901616000","name":"Romijn Conen","type":"Person","_key":"28667"} +{"label":"Jutta Wachowiak","version":21,"id":"49047","lastModified":"1301901888000","name":"Jutta Wachowiak","type":"Person","_key":"28668"} +{"label":"Carine Crutzen","version":26,"id":"49049","lastModified":"1301901373000","name":"Carine Crutzen","type":"Person","_key":"28669"} +{"label":"Lilian Schiffer","version":19,"id":"49050","lastModified":"1301901888000","name":"Lilian Schiffer","type":"Person","_key":"28670"} +{"label":"Sarah Nemitz","version":19,"id":"49051","lastModified":"1301901888000","name":"Sarah Nemitz","type":"Person","_key":"28671"} +{"label":"Rainer Strecker","version":21,"id":"49052","lastModified":"1301902175000","name":"Rainer Strecker","type":"Person","_key":"28672"} +{"label":"Roland Silbernagl","version":19,"id":"49053","lastModified":"1301901888000","name":"Roland Silbernagl","type":"Person","_key":"28673"} +{"label":"Katalin Zsigmondy","version":18,"id":"49054","lastModified":"1301901980000","name":"Katalin Zsigmondy","type":"Person","_key":"28674"} +{"label":"Fritz Lichtenhahn","version":21,"id":"26810","lastModified":"1301902102000","name":"Fritz Lichtenhahn","type":"Person","_key":"28675"} +{"label":"Nina Kunzendorf","version":21,"id":"49055","lastModified":"1301902314000","name":"Nina Kunzendorf","type":"Person","_key":"28676"} +{"label":"Martin Wuttke","version":25,"id":"49056","lastModified":"1301901446000","name":"Martin Wuttke","type":"Person","_key":"28677"} +{"label":"Hans Kremer","version":19,"id":"49057","lastModified":"1301901888000","name":"Hans Kremer","type":"Person","_key":"28678"} +{"label":"Edwin de Vries","version":17,"id":"16670","lastModified":"1301901855000","name":"Edwin de Vries","type":"Person","_key":"28679"} +{"label":"Vaya con Dios","description":"No overview found.","id":"6318","runtime":106,"imdbId":"tt0295001","version":61,"lastModified":"1302024137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b84\/4d0d20f35e73d63713000b84\/vaya-con-dios-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"Vaya con Dios","releaseDate":1017273600000,"language":"en","type":"Movie","_key":"28680"} +{"label":"Zoltan Spirandelli","version":21,"id":"38625","lastModified":"1301901961000","name":"Zoltan Spirandelli","type":"Person","_key":"28681"} +{"label":"Pamela Knaak","version":18,"id":"49061","lastModified":"1301902166000","name":"Pamela Knaak","type":"Person","_key":"28682"} +{"label":"Konstantin Graudus","version":22,"id":"49062","lastModified":"1301902156000","name":"Konstantin Graudus","type":"Person","_key":"28683"} +{"label":"Uwe Bohm","version":20,"id":"55897","lastModified":"1301902183000","name":"Uwe Bohm","type":"Person","_key":"28684"} +{"label":"The Karate Killers","description":"International spies Napoleon Solo (Robert Vaughn) and Illya Kuryakin (David McCallum) travel around the globe in an effort to track down a secret formula that was divided into four parts and left by a dying scientist with his four of five daughters, all of whom live in different countries. His widow, Amanda, is murdered at the beginning by the counter-spies of the organization THRUSH. Evil THRUSH agent Randolph also wants the formula, and is aided by his karate-chopping henchmen.","id":"6319","runtime":90,"imdbId":"tt0061858","trailer":"http:\/\/www.youtube.com\/watch?v=6hJ30yY5uAw","version":103,"lastModified":"1301904956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ee\/4bc91dae017a3c57fe00b9ee\/the-karate-killers-mid.jpg","studio":"Arena Films","genre":"Action","title":"The Karate Killers","releaseDate":-86400000000,"language":"en","type":"Movie","_key":"28685"} +{"label":"Barry Shear","version":19,"id":"49063","lastModified":"1301901733000","name":"Barry Shear","type":"Person","_key":"28686"} +{"label":"Police","description":"Un \"flic\" doux, mais quand il s'\u00e9nerve, dur, une fille qui ment tout le temps mais qui l'impressionne, un tueur et un voyou malades, un assassin de vieilles dames, une petite vieille qui conna\u00eet la combinaison du coffre, et pour couronner le tout, une affaire de drogue.","id":"6320","runtime":113,"imdbId":"tt0089821","trailer":"http:\/\/www.youtube.com\/watch?v=DInF4f5H4aE","version":123,"lastModified":"1301905446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4cac4d147b9aa1152f000136\/police-mid.jpg","studio":"Gaumont","genre":"Crime","title":"Police","releaseDate":494640000000,"language":"en","type":"Movie","_key":"28687"} +{"label":"Pascale Rocard","version":19,"id":"49070","lastModified":"1301902102000","name":"Pascale Rocard","type":"Person","_key":"28688"} +{"label":"Frank Karaoui","version":18,"id":"49072","lastModified":"1301902372000","name":"Frank Karaoui","type":"Person","_key":"28689"} +{"label":"Jonathan Le\u00efna","version":18,"id":"49073","lastModified":"1301902372000","name":"Jonathan Le\u00efna","type":"Person","_key":"28690"} +{"label":"Bernard Fuzellier","version":19,"id":"49074","lastModified":"1301902284000","name":"Bernard Fuzellier","type":"Person","_key":"28691"} +{"label":"Bentahar Meaachou","version":19,"id":"49075","lastModified":"1301902284000","name":"Bentahar Meaachou","type":"Person","_key":"28692"} +{"label":"Theo, Agnes, Bibi und die anderen","description":"No overview found.","id":"6322","runtime":89,"imdbId":"tt1080836","version":49,"lastModified":"1301908332000","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Theo, Agnes, Bibi und die anderen","releaseDate":1188345600000,"language":"en","type":"Movie","_key":"28693"} +{"label":"Kaspar Heidelbach","version":22,"id":"28352","lastModified":"1301901494000","name":"Kaspar Heidelbach","type":"Person","_key":"28694"} +{"label":"Ingar Sigvardsdotter","version":22,"id":"49085","lastModified":"1301983094000","name":"Ingar Sigvardsdotter","type":"Person","_key":"28695"} +{"label":"Tommy Andersson","version":20,"id":"49086","lastModified":"1301901603000","name":"Tommy Andersson","type":"Person","_key":"28696"} +{"label":"Bruno Apitz","version":18,"id":"22926","lastModified":"1301901938000","name":"Bruno Apitz","type":"Person","_key":"28697"} +{"label":"Hans Kahlert","version":19,"id":"49087","lastModified":"1301902284000","name":"Hans Kahlert","type":"Person","_key":"28698"} +{"label":"Soraya Richter","version":19,"id":"49088","lastModified":"1301902284000","name":"Soraya Richter","type":"Person","_key":"28699"} +{"label":"Senta Sommerfeld","version":19,"id":"49089","lastModified":"1301902284000","name":"Senta Sommerfeld","type":"Person","_key":"28700"} +{"label":"Erbin mit Herz","description":"No overview found.","id":"6334","runtime":89,"imdbId":"tt0433555","version":53,"lastModified":"1301908332000","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Comedy","title":"Erbin mit Herz","releaseDate":1098403200000,"language":"en","type":"Movie","_key":"28701"} +{"label":"Holger Barthel","version":19,"id":"49090","lastModified":"1301902284000","name":"Holger Barthel","type":"Person","_key":"28702"} +{"label":"Katja Weitzenb\u00f6ck","version":19,"id":"49095","lastModified":"1301901574000","name":"Katja Weitzenb\u00f6ck","type":"Person","_key":"28703"} +{"label":"Lili Hering","version":19,"id":"49096","lastModified":"1301902284000","name":"Lili Hering","type":"Person","_key":"28704"} +{"label":"Katharina Blaschke","version":19,"id":"49097","lastModified":"1301902284000","name":"Katharina Blaschke","type":"Person","_key":"28705"} +{"label":"Uli Br\u00e9e","version":19,"id":"49091","lastModified":"1301902284000","name":"Uli Br\u00e9e","type":"Person","_key":"28706"} +{"label":"Arnold Dammann","version":19,"id":"49098","lastModified":"1301902284000","name":"Arnold Dammann","type":"Person","_key":"28707"} +{"label":"Axel Olsson","version":20,"id":"49100","lastModified":"1301902284000","name":"Axel Olsson","type":"Person","_key":"28708"} +{"label":"Michael Niavarani","version":20,"id":"49099","lastModified":"1301901888000","name":"Michael Niavarani","type":"Person","_key":"28709"} +{"label":"Oh Tannenbaum","description":"No overview found.","id":"6335","runtime":90,"imdbId":"tt0969312","version":45,"lastModified":"1301906745000","studio":"Allmedia Pictures GmbH","genre":"Comedy","title":"Oh Tannenbaum","releaseDate":1196985600000,"language":"en","type":"Movie","_key":"28710"} +{"label":"Matthias Tiefenbacher","version":20,"id":"49101","lastModified":"1301902344000","name":"Matthias Tiefenbacher","type":"Person","_key":"28711"} +{"label":"Jutta Speidel","version":26,"id":"49104","lastModified":"1301901961000","name":"Jutta Speidel","type":"Person","_key":"28712"} +{"label":"Johanna-Christine Gehlen","version":20,"id":"49106","lastModified":"1301902183000","name":"Johanna-Christine Gehlen","type":"Person","_key":"28713"} +{"label":"Hyun Wanner","version":20,"id":"49108","lastModified":"1301902000000","name":"Hyun Wanner","type":"Person","_key":"28714"} +{"label":"Blue Thunder","description":"Officer Frank Murphy, an experienced LAPD helicopter pilot, is given command of the advanced new \"Blue Thunder\" chopper. But he begins to wonder why the LAPD would need a helicopter so powerful and why it is such a secret.","id":"6341","runtime":109,"imdbId":"tt0085255","trailer":"http:\/\/www.youtube.com\/watch?v=sd3lDhyM21M","version":393,"lastModified":"1301902467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10e\/4c200d137b9aa1300900010e\/blue-thunder-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Blue Thunder","releaseDate":413251200000,"language":"en","tagline":"He's out there...","type":"Movie","_key":"28715"} +{"label":"Paul Roebling","version":20,"id":"51347","lastModified":"1301902025000","name":"Paul Roebling","type":"Person","_key":"28716"} +{"label":"David Sheiner","version":23,"id":"51348","lastModified":"1301901998000","name":"David Sheiner","type":"Person","_key":"28717"} +{"label":"The Chamber","description":"Having survived the hatred and bigotry that was his Klansman grandfather's only legacy, young attorney Adam Hall seeks at the last minute to appeal the old man's death sentence for the murder of two small Jewish boys 30 years before. Only four weeks before Sam Cayhall is to be executed, Adam meets his grandfather for the first time in the Mississippi prison which has held him since the crime. The meeting is predictably tense when the educated, young Mr. \"Hall\" confronts his venom-spewing elder, ","id":"6346","runtime":113,"imdbId":"tt0115862","version":157,"lastModified":"1301416320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fc\/4bc91daf017a3c57fe00b9fc\/the-chamber-mid.jpg","studio":"Imagine Entertainment","genre":"Drama","title":"The Chamber","releaseDate":844992000000,"language":"en","type":"Movie","_key":"28718"} +{"label":"Lela Rochon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4bb\/4d81559f7b9aa12dac0014bb\/lela-rochon-profile.jpg","version":34,"birthday":"-180147600000","id":"51359","birthplace":"Los Angeles, California, USA","lastModified":"1301901888000","name":"Lela Rochon","type":"Person","_key":"28719"} +{"label":"James Foley","version":49,"id":"15890","lastModified":"1301901243000","name":"James Foley","type":"Person","_key":"28720"} +{"label":"Der Ruf der Berge","description":"No overview found.","id":"6359","runtime":90,"imdbId":"tt0492753","version":51,"lastModified":"1301908332000","studio":"Mecom Movie GmbH","genre":"Drama","title":"Der Ruf der Berge","releaseDate":1134691200000,"language":"en","type":"Movie","_key":"28721"} +{"label":"Franz Buchrieser","version":28,"id":"49175","lastModified":"1301902208000","name":"Franz Buchrieser","type":"Person","_key":"28722"} +{"label":"Marcus Gr\u00fcsser","version":18,"id":"49176","lastModified":"1301902351000","name":"Marcus Gr\u00fcsser","type":"Person","_key":"28723"} +{"label":"Markus Eberhard","version":19,"id":"49177","lastModified":"1301902166000","name":"Markus Eberhard","type":"Person","_key":"28724"} +{"label":"Barbara de Koy","version":19,"id":"49178","lastModified":"1301902166000","name":"Barbara de Koy","type":"Person","_key":"28725"} +{"label":"Annalena Duken","version":24,"id":"49179","lastModified":"1301902156000","name":"Annalena Duken","type":"Person","_key":"28726"} +{"label":"Birgit Melcher","version":19,"id":"49180","lastModified":"1301902284000","name":"Birgit Melcher","type":"Person","_key":"28727"} +{"label":"Helga Pulmer","version":19,"id":"49181","lastModified":"1301902284000","name":"Helga Pulmer","type":"Person","_key":"28728"} +{"label":"Erich R\u00f6der","version":19,"id":"49182","lastModified":"1301902284000","name":"Erich R\u00f6der","type":"Person","_key":"28729"} +{"label":"Actrices","description":"Com\u00e9dienne hant\u00e9e par son r\u00f4le de Nathalia Petrovna, l'h\u00e9ro\u00efne de la pi\u00e8ce de Tourgu\u00e9niev Un Mois \u00e0 la campagne qu'elle r\u00e9p\u00e8te difficilement, Marcelline tente de noyer ses angoisses dans une piscine sur un air de Glenn Miller. Mais rien n'y fait. Rien n'emp\u00eache le temps de courir et de lui imposer ses quarante ans et toujours pas d'enfant.","id":"6360","runtime":107,"imdbId":"tt0815092","version":148,"lastModified":"1301905281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a05\/4bc91db0017a3c57fe00ba05\/actrices-mid.jpg","studio":"Le Studio Canal+","genre":"Comedy","title":"Actrices","releaseDate":1179532800000,"language":"en","type":"Movie","_key":"28730"} +{"label":"No\u00e9mie Lvovsky","version":32,"id":"49168","lastModified":"1301901946000","name":"No\u00e9mie Lvovsky","type":"Person","_key":"28731"} +{"label":"Marisa Bruni Tedeschi","version":18,"id":"49169","lastModified":"1301902351000","name":"Marisa Bruni Tedeschi","type":"Person","_key":"28732"} +{"label":"Simona Marchini","version":19,"id":"49170","lastModified":"1301902284000","name":"Simona Marchini","type":"Person","_key":"28733"} +{"label":"Bernard Nissile","version":20,"id":"49277","lastModified":"1301902284000","name":"Bernard Nissile","type":"Person","_key":"28734"} +{"label":"Olivier Rabourdin","version":30,"id":"49278","lastModified":"1301902034000","name":"Olivier Rabourdin","type":"Person","_key":"28735"} +{"label":"Laetitia Spigarelli","version":20,"id":"49279","lastModified":"1301902284000","name":"Laetitia Spigarelli","type":"Person","_key":"28736"} +{"label":"Souzan Chirazi","version":18,"id":"49280","lastModified":"1301902351000","name":"Souzan Chirazi","type":"Person","_key":"28737"} +{"label":"Ruf der Berge - Schatten der Vergangenheit","description":"No overview found.","id":"6361","runtime":88,"imdbId":"tt1139397","version":50,"lastModified":"1301907416000","studio":"Bsmovie tv filmproduktion","genre":"Drama","title":"Ruf der Berge - Schatten der Vergangenheit","releaseDate":1196380800000,"language":"en","type":"Movie","_key":"28738"} +{"label":"Karsten Wichniarz","version":20,"id":"49185","lastModified":"1301901655000","name":"Karsten Wichniarz","type":"Person","_key":"28739"} +{"label":"Andrea L'Arronge","version":18,"id":"49193","lastModified":"1301901803000","name":"Andrea L'Arronge","type":"Person","_key":"28740"} +{"label":"Enzi Fuchs","version":20,"id":"38964","lastModified":"1301901998000","name":"Enzi Fuchs","type":"Person","_key":"28741"} +{"label":"Ronja Forcher","version":21,"id":"49195","lastModified":"1301902344000","name":"Ronja Forcher","type":"Person","_key":"28742"} +{"label":"Annika Bruhns","version":20,"id":"49196","lastModified":"1301902183000","name":"Annika Bruhns","type":"Person","_key":"28743"} +{"label":"Florian Eisner","version":20,"id":"49197","lastModified":"1301902204000","name":"Florian Eisner","type":"Person","_key":"28744"} +{"label":"Liebe, L\u00fcgen, Leidenschaft","description":"No overview found.","id":"6362","runtime":270,"imdbId":"tt0305058","version":57,"lastModified":"1301908332000","studio":"Lisa Film","genre":"Comedy","title":"Liebe, L\u00fcgen, Leidenschaft","releaseDate":1010016000000,"language":"en","type":"Movie","_key":"28745"} +{"label":"Marion Mitterhammer","version":22,"id":"28433","lastModified":"1301902146000","name":"Marion Mitterhammer","type":"Person","_key":"28746"} +{"label":"Denise Zich","version":22,"id":"49200","lastModified":"1301901655000","name":"Denise Zich","type":"Person","_key":"28747"} +{"label":"Philippe Brenninkmeyer","version":24,"id":"49201","lastModified":"1301902328000","name":"Philippe Brenninkmeyer","type":"Person","_key":"28748"} +{"label":"Julia Thurnau","version":19,"id":"38392","lastModified":"1301901888000","name":"Julia Thurnau","type":"Person","_key":"28749"} +{"label":"Dennenesch Zoud\u00e9","version":21,"id":"49202","lastModified":"1301902341000","name":"Dennenesch Zoud\u00e9","type":"Person","_key":"28750"} +{"label":"Susanne Wuest","version":20,"id":"49204","lastModified":"1301902284000","name":"Susanne Wuest","type":"Person","_key":"28751"} +{"label":"Sandra Cervik","version":19,"id":"49205","lastModified":"1301902284000","name":"Sandra Cervik","type":"Person","_key":"28752"} +{"label":"Stefanie Meier-Stauffer","version":19,"id":"49206","lastModified":"1301902284000","name":"Stefanie Meier-Stauffer","type":"Person","_key":"28753"} +{"label":"Rudy Ruggiero","version":19,"id":"49207","lastModified":"1301901888000","name":"Rudy Ruggiero","type":"Person","_key":"28754"} +{"label":"Die Geierwally","description":"No overview found.","id":"6363","runtime":120,"imdbId":"tt0012205","version":55,"lastModified":"1301904956000","studio":"Gloria-Film GmbH","genre":"Drama","title":"Die Geierwally","releaseDate":-1492905600000,"language":"en","type":"Movie","_key":"28755"} +{"label":"Ewald Andr\u00e9 Dupont","version":25,"id":"49208","lastModified":"1301901935000","name":"Ewald Andr\u00e9 Dupont","type":"Person","_key":"28756"} +{"label":"Henny Porten","version":22,"id":"49211","lastModified":"1301902102000","name":"Henny Porten","type":"Person","_key":"28757"} +{"label":"William Dieterle","version":37,"id":"49214","lastModified":"1301901200000","name":"William Dieterle","type":"Person","_key":"28758"} +{"label":"Elise Zachow-Vallentin","version":19,"id":"49215","lastModified":"1301901888000","name":"Elise Zachow-Vallentin","type":"Person","_key":"28759"} +{"label":"Marie Grimm-Ein\u00f6dshofer","version":18,"id":"49216","lastModified":"1301901980000","name":"Marie Grimm-Ein\u00f6dshofer","type":"Person","_key":"28760"} +{"label":"Julius Brandt","version":19,"id":"49217","lastModified":"1301901888000","name":"Julius Brandt","type":"Person","_key":"28761"} +{"label":"Gerd Fricke","version":19,"id":"49219","lastModified":"1301901888000","name":"Gerd Fricke","type":"Person","_key":"28762"} +{"label":"Grete Diercks","version":19,"id":"49220","lastModified":"1301901888000","name":"Grete Diercks","type":"Person","_key":"28763"} +{"label":"Die Geierwally","description":"No overview found.","id":"6364","runtime":104,"imdbId":"tt0032515","version":58,"lastModified":"1301904445000","studio":"Tobis","genre":"Drama","title":"Die Geierwally","releaseDate":-927417600000,"language":"en","type":"Movie","_key":"28764"} +{"label":"Hans Steinhoff","version":21,"id":"49221","lastModified":"1301902102000","name":"Hans Steinhoff","type":"Person","_key":"28765"} +{"label":"Eduard K\u00f6ck","version":20,"id":"49227","lastModified":"1301902102000","name":"Eduard K\u00f6ck","type":"Person","_key":"28766"} +{"label":"Winnie Markus","version":19,"id":"49228","lastModified":"1301902101000","name":"Winnie Markus","type":"Person","_key":"28767"} +{"label":"Leopold Esterle","version":20,"id":"49229","lastModified":"1301902284000","name":"Leopold Esterle","type":"Person","_key":"28768"} +{"label":"Mimi Gst\u00f6ttner-Auer","version":19,"id":"49230","lastModified":"1301902284000","name":"Mimi Gst\u00f6ttner-Auer","type":"Person","_key":"28769"} +{"label":"Ludwig Auer","version":19,"id":"49231","lastModified":"1301902284000","name":"Ludwig Auer","type":"Person","_key":"28770"} +{"label":"Georg Vogelsang","version":19,"id":"49232","lastModified":"1301902284000","name":"Georg Vogelsang","type":"Person","_key":"28771"} +{"label":"K\u00e4te Merk","version":19,"id":"49234","lastModified":"1301902284000","name":"K\u00e4te Merk","type":"Person","_key":"28772"} +{"label":"Marta Salm","version":19,"id":"49235","lastModified":"1301902284000","name":"Marta Salm","type":"Person","_key":"28773"} +{"label":"Anna Exl","version":20,"id":"49236","lastModified":"1301902284000","name":"Anna Exl","type":"Person","_key":"28774"} +{"label":"Hans Kratzer","version":19,"id":"49237","lastModified":"1301902284000","name":"Hans Kratzer","type":"Person","_key":"28775"} +{"label":"Gustav Waldau","version":19,"id":"49238","lastModified":"1301902284000","name":"Gustav Waldau","type":"Person","_key":"28776"} +{"label":"Franz Ludwig","version":19,"id":"49239","lastModified":"1301902284000","name":"Franz Ludwig","type":"Person","_key":"28777"} +{"label":"Rolf Pinegger","version":19,"id":"49240","lastModified":"1301902284000","name":"Rolf Pinegger","type":"Person","_key":"28778"} +{"label":"Hans Hanauer","version":19,"id":"49241","lastModified":"1301902284000","name":"Hans Hanauer","type":"Person","_key":"28779"} +{"label":"Franzl Gr\u00fcner","version":19,"id":"49242","lastModified":"1301902284000","name":"Franzl Gr\u00fcner","type":"Person","_key":"28780"} +{"label":"Die Geierwally","description":"No overview found.","id":"6365","runtime":90,"imdbId":"tt0049252","version":50,"lastModified":"1301907279000","studio":"Peter Ostermayr Produktion","genre":"Drama","title":"Die Geierwally","releaseDate":-420940800000,"language":"en","type":"Movie","_key":"28781"} +{"label":"Frantisek C\u00e1p","version":16,"id":"49243","lastModified":"1301902101000","name":"Frantisek C\u00e1p","type":"Person","_key":"28782"} +{"label":"Heinrich Hauser","version":20,"id":"49249","lastModified":"1301902183000","name":"Heinrich Hauser","type":"Person","_key":"28783"} +{"label":"Franz Pfaudler","version":19,"id":"49250","lastModified":"1301902284000","name":"Franz Pfaudler","type":"Person","_key":"28784"} +{"label":"Helga Neuner","version":17,"birthday":"-932868000000","id":"49251","birthplace":"Munich, Germany","lastModified":"1301902127000","name":"Helga Neuner","type":"Person","_key":"28785"} +{"label":"Walter Janssen","version":20,"id":"49252","lastModified":"1301902351000","name":"Walter Janssen","type":"Person","_key":"28786"} +{"label":"Elinor von Wallerstein","version":19,"id":"49253","lastModified":"1301902284000","name":"Elinor von Wallerstein","type":"Person","_key":"28787"} +{"label":"Ernst Reinhold","version":19,"id":"49254","lastModified":"1301902284000","name":"Ernst Reinhold","type":"Person","_key":"28788"} +{"label":"Anton F\u00e4rber","version":20,"id":"49255","lastModified":"1301901888000","name":"Anton F\u00e4rber","type":"Person","_key":"28789"} +{"label":"Geierwally","description":"No overview found.","id":"6366","runtime":105,"imdbId":"tt0095204","version":50,"lastModified":"1301908332000","genre":"Comedy","title":"Geierwally","releaseDate":567993600000,"language":"en","type":"Movie","_key":"28790"} +{"label":"Gottfried Lackmann","version":19,"id":"49260","lastModified":"1301901888000","name":"Gottfried Lackmann","type":"Person","_key":"28791"} +{"label":"Stephan Wald","version":19,"id":"49261","lastModified":"1301902284000","name":"Stephan Wald","type":"Person","_key":"28792"} +{"label":"Dave Cooke","version":19,"id":"49262","lastModified":"1301902284000","name":"Dave Cooke","type":"Person","_key":"28793"} +{"label":"Sonja Neudorfer","version":19,"id":"49263","lastModified":"1301902284000","name":"Sonja Neudorfer","type":"Person","_key":"28794"} +{"label":"Die Geierwally","description":"No overview found.","id":"6367","runtime":90,"imdbId":"tt0442240","version":63,"lastModified":"1301906953000","studio":"Ziegler Film","genre":"Drama","title":"Die Geierwally","releaseDate":1105056000000,"language":"en","type":"Movie","_key":"28795"} +{"label":"Peter S\u00e4mann","version":21,"id":"49264","lastModified":"1301901655000","name":"Peter S\u00e4mann","type":"Person","_key":"28796"} +{"label":"Christine Neubauer","version":22,"id":"49269","lastModified":"1301901446000","name":"Christine Neubauer","type":"Person","_key":"28797"} +{"label":"Petra Berndt","version":20,"id":"49270","lastModified":"1301902344000","name":"Petra Berndt","type":"Person","_key":"28798"} +{"label":"Martin Walch","version":20,"id":"38488","lastModified":"1301901788000","name":"Martin Walch","type":"Person","_key":"28799"} +{"label":"Reinhard Forcher","version":20,"id":"49273","lastModified":"1301902372000","name":"Reinhard Forcher","type":"Person","_key":"28800"} +{"label":"Z\u00e4rtliches Geheimnis","description":"No overview found.","id":"6368","runtime":100,"imdbId":"tt0049206","version":57,"lastModified":"1301418653000","studio":"Sokal-Film GmbH","genre":"Drama","title":"Z\u00e4rtliches Geheimnis","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"28801"} +{"label":"Michael Ande","version":21,"id":"39323","lastModified":"1301901733000","name":"Michael Ande","type":"Person","_key":"28802"} +{"label":"Irene von Meyendorff","version":18,"id":"49293","lastModified":"1301902214000","name":"Irene von Meyendorff","type":"Person","_key":"28803"} +{"label":"Wastl Witt","version":19,"id":"49294","lastModified":"1301902284000","name":"Wastl Witt","type":"Person","_key":"28804"} +{"label":"William Trenk","version":19,"id":"49295","lastModified":"1301902101000","name":"William Trenk","type":"Person","_key":"28805"} +{"label":"Marianne Brandt","version":19,"id":"49296","lastModified":"1301902284000","name":"Marianne Brandt","type":"Person","_key":"28806"} +{"label":"Bruno H\u00fcbner","version":20,"id":"49297","lastModified":"1301902101000","name":"Bruno H\u00fcbner","type":"Person","_key":"28807"} +{"label":"Erika von Thellmann","version":21,"id":"49298","lastModified":"1301902373000","name":"Erika von Thellmann","type":"Person","_key":"28808"} +{"label":"Erna Gro\u00dfmann","version":19,"id":"49299","lastModified":"1301902283000","name":"Erna Gro\u00dfmann","type":"Person","_key":"28809"} +{"label":"Maren Bielenberg","version":19,"id":"49300","lastModified":"1301902101000","name":"Maren Bielenberg","type":"Person","_key":"28810"} +{"label":"Der Weihnachtsm\u00f6rder","description":"No overview found.","id":"6369","runtime":90,"imdbId":"tt0136613","version":45,"lastModified":"1301908332000","studio":"Sat.1","genre":"Crime","title":"Der Weihnachtsm\u00f6rder","releaseDate":881971200000,"language":"en","type":"Movie","_key":"28811"} +{"label":"Frank Guthke","version":19,"id":"49329","lastModified":"1301902283000","name":"Frank Guthke","type":"Person","_key":"28812"} +{"label":"Konstanze Breitebner","version":19,"id":"38157","lastModified":"1301901888000","name":"Konstanze Breitebner","type":"Person","_key":"28813"} +{"label":"Alexander May","version":19,"id":"49331","lastModified":"1301902283000","name":"Alexander May","type":"Person","_key":"28814"} +{"label":"Ingeborg Lapsien","version":19,"id":"38178","lastModified":"1301901888000","name":"Ingeborg Lapsien","type":"Person","_key":"28815"} +{"label":"Horst Kotterba","version":20,"id":"49332","lastModified":"1301902283000","name":"Horst Kotterba","type":"Person","_key":"28816"} +{"label":"R\u00fcdiger Bahr","version":19,"id":"49334","lastModified":"1301902101000","name":"R\u00fcdiger Bahr","type":"Person","_key":"28817"} +{"label":"Patricia Lueger","version":19,"id":"46169","lastModified":"1301901888000","name":"Patricia Lueger","type":"Person","_key":"28818"} +{"label":"Hilfe, ich liebe Zwillinge","description":"No overview found.","id":"6372","runtime":84,"imdbId":"tt0064431","version":51,"lastModified":"1301908332000","studio":"Divina-Film","genre":"Comedy","title":"Hilfe, ich liebe Zwillinge","releaseDate":-3542400000,"language":"en","type":"Movie","_key":"28819"} +{"label":"Roy Black","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/827\/4cceb7317b9aa16ba0000827\/roy-black-profile.jpg","biography":"<b>oy Black<\/b> (January 25, 1943 \u2013 October 9, 1991) was a <a href=\"http:\/\/en.wikipedia.org\/wiki\/Germans\" title=\"Germans\">German<\/a> <a href=\"http:\/\/en.wikipedia.org\/wiki\/Schlager\" title=\"Schlager\">schlager<\/a> <a href=\"http:\/\/en.wikipedia.org\/wiki\/Singing\" title=\"Singing\">singer<\/a> and <a href=\"http:\/\/en.wikipedia.org\/wiki\/Actor\" title=\"Actor\">actor<\/a>, who appeared in several musical comedies and starred in the 1989 <a href=\"http:\/\/en.wikipedia.org\/wiki\/Television_program\" title=\"Television ","version":25,"birthday":"-850006800000","id":"39833","lastModified":"1301901378000","name":"Roy Black","type":"Person","_key":"28820"} +{"label":"Georg Thomalla","version":22,"id":"39844","lastModified":"1301901733000","name":"Georg Thomalla","type":"Person","_key":"28821"} +{"label":"Renate Heuer","version":19,"id":"49339","lastModified":"1301902283000","name":"Renate Heuer","type":"Person","_key":"28822"} +{"label":"Dieter Kaiser","version":19,"id":"49340","lastModified":"1301902283000","name":"Dieter Kaiser","type":"Person","_key":"28823"} +{"label":"Johann Sklenka","version":19,"id":"49341","lastModified":"1301902283000","name":"Johann Sklenka","type":"Person","_key":"28824"} +{"label":"Christian Anders","version":19,"id":"49342","lastModified":"1301902283000","name":"Christian Anders","type":"Person","_key":"28825"} +{"label":"The Very Thought of You","description":"Laurence recounts to his neighbour how his life long friendship with Frank and Daniel has been overturned in just three days by their each independently meeting, and falling for, Martha, who has no idea of their connection. Slowly the tale unfolds, the narrative moving backwards and forwards gradually filling in the gaps until we see the whole picture","id":"6373","runtime":88,"imdbId":"tt0120747","version":124,"lastModified":"1301905842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4c16a9c85e73d64a2400028f\/martha-meet-frank-daniel-and-laurence-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"The Very Thought of You","releaseDate":894585600000,"language":"en","type":"Movie","_key":"28826"} +{"label":"Debora Weston","version":29,"id":"49346","lastModified":"1301901460000","name":"Debora Weston","type":"Person","_key":"28827"} +{"label":"Jan Pearson","version":24,"id":"49347","lastModified":"1301902185000","name":"Jan Pearson","type":"Person","_key":"28828"} +{"label":"Rebecca Craig","version":24,"id":"49349","lastModified":"1301902374000","name":"Rebecca Craig","type":"Person","_key":"28829"} +{"label":"Paul Bigley","version":25,"id":"49350","lastModified":"1301902379000","name":"Paul Bigley","type":"Person","_key":"28830"} +{"label":"Steven O'Donnell","version":25,"id":"79885","lastModified":"1301902467000","name":"Steven O'Donnell","type":"Person","_key":"28831"} +{"label":"Fr\u00f6hlich Geschieden","description":"No overview found.","id":"6374","runtime":84,"imdbId":"tt0119162","version":44,"lastModified":"1301908592000","studio":"\u00d6sterreichischer Rundfunk","genre":"Comedy","title":"Fr\u00f6hlich Geschieden","releaseDate":852076800000,"language":"en","type":"Movie","_key":"28832"} +{"label":"Rainhard Fendrich","version":18,"id":"49397","lastModified":"1301901980000","name":"Rainhard Fendrich","type":"Person","_key":"28833"} +{"label":"Nicolin Kunz","version":18,"id":"49398","lastModified":"1301902166000","name":"Nicolin Kunz","type":"Person","_key":"28834"} +{"label":"Irene Budischowsky","version":20,"id":"49399","lastModified":"1301902373000","name":"Irene Budischowsky","type":"Person","_key":"28835"} +{"label":"Julia Lerch","version":20,"id":"49400","lastModified":"1301902344000","name":"Julia Lerch","type":"Person","_key":"28836"} +{"label":"Beatrice Frey","version":21,"id":"48088","lastModified":"1301902344000","name":"Beatrice Frey","type":"Person","_key":"28837"} +{"label":"Christoph F\u00e4lbl","version":20,"id":"49401","lastModified":"1301901998000","name":"Christoph F\u00e4lbl","type":"Person","_key":"28838"} +{"label":"Kurt Sobotka","version":20,"id":"49402","lastModified":"1301901961000","name":"Kurt Sobotka","type":"Person","_key":"28839"} +{"label":"The Nugget","description":"'The Nugget' looks at how instant wealth suddenly changes the lives of three working class men - not necessarily for the better, but always with hilarious consequences.","id":"6382","runtime":89,"imdbId":"tt0278597","version":130,"lastModified":"1301904016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a16\/4bc91db4017a3c57fe00ba16\/the-nugget-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"The Nugget","releaseDate":1034812800000,"language":"en","type":"Movie","_key":"28840"} +{"label":"Stephen Curry","version":28,"id":"49360","lastModified":"1301901497000","name":"Stephen Curry","type":"Person","_key":"28841"} +{"label":"Dave O'Neil","version":24,"id":"49362","lastModified":"1301902156000","name":"Dave O'Neil","type":"Person","_key":"28842"} +{"label":"Bill Bennett","version":27,"id":"49361","lastModified":"1301901961000","name":"Bill Bennett","type":"Person","_key":"28843"} +{"label":"Podium","description":"No overview found.","id":"6383","runtime":20,"version":55,"lastModified":"1301905338000","genre":"Documentary","title":"Podium","releaseDate":1172188800000,"language":"en","type":"Movie","_key":"28844"} +{"label":"Carlo Jelavic","version":18,"id":"49363","lastModified":"1301901413000","name":"Carlo Jelavic","type":"Person","_key":"28845"} +{"label":"Rounds","description":"No overview found.","id":"6384","runtime":29,"homepage":"www.rounds.de","version":159,"lastModified":"1301416545000","studio":"Filmakademie Baden-W\u00fcrttemberg","genre":"Drama","title":"Rounds","releaseDate":1196899200000,"language":"en","type":"Movie","_key":"28846"} +{"label":"Sabine Krause","version":15,"id":"49366","lastModified":"1301901538000","name":"Sabine Krause","type":"Person","_key":"28847"} +{"label":"Jan Pohl","version":15,"id":"49365","lastModified":"1301901733000","name":"Jan Pohl","type":"Person","_key":"28848"} +{"label":"Stefan B\u00fcnnig","version":15,"id":"49368","lastModified":"1301902283000","name":"Stefan B\u00fcnnig","type":"Person","_key":"28849"} +{"label":"Felicitas Winker","version":15,"id":"49372","lastModified":"1301901888000","name":"Felicitas Winker","type":"Person","_key":"28850"} +{"label":"Florian Cossen","version":15,"id":"49374","lastModified":"1301902283000","name":"Florian Cossen","type":"Person","_key":"28851"} +{"label":"Meine beste Feindin","description":"No overview found.","id":"6385","runtime":87,"imdbId":"tt0242671","version":49,"lastModified":"1301416737000","studio":"Norddeutscher Rundfunk","genre":"Drama","title":"Meine beste Feindin","releaseDate":938736000000,"language":"en","type":"Movie","_key":"28852"} +{"label":"Utz Weber","version":21,"id":"49403","lastModified":"1301902101000","name":"Utz Weber","type":"Person","_key":"28853"} +{"label":"Wolfgang K\u00fchne","version":19,"id":"49408","lastModified":"1301902101000","name":"Wolfgang K\u00fchne","type":"Person","_key":"28854"} +{"label":"Benjamin Utzerath","version":18,"id":"49409","lastModified":"1301902351000","name":"Benjamin Utzerath","type":"Person","_key":"28855"} +{"label":"Rainer Luxem","version":19,"id":"49410","lastModified":"1301902283000","name":"Rainer Luxem","type":"Person","_key":"28856"} +{"label":"Werner W\u00f6lbern","version":20,"id":"44362","lastModified":"1301902283000","name":"Werner W\u00f6lbern","type":"Person","_key":"28857"} +{"label":"Mark Zak","version":21,"id":"28345","lastModified":"1301901733000","name":"Mark Zak","type":"Person","_key":"28858"} +{"label":"Ninotschka","description":"No overview found.","id":"6386","runtime":90,"imdbId":"tt0352642","version":42,"lastModified":"1301908592000","studio":"ZDF","genre":"Musical","title":"Ninotschka","releaseDate":-151200000000,"language":"en","type":"Movie","_key":"28859"} +{"label":"Imo Moszkowicz","version":16,"id":"3746","lastModified":"1299493937000","name":"Imo Moszkowicz","type":"Person","_key":"28860"} +{"label":"Ruth Leuwerik","version":21,"id":"49413","lastModified":"1301902156000","name":"Ruth Leuwerik","type":"Person","_key":"28861"} +{"label":"Gisela Fackeldey","version":21,"id":"49414","lastModified":"1301902344000","name":"Gisela Fackeldey","type":"Person","_key":"28862"} +{"label":"Hans Hessling","version":21,"id":"36377","lastModified":"1301901961000","name":"Hans Hessling","type":"Person","_key":"28863"} +{"label":"Meduzot","description":"Meduzot (the Hebrew word for Jellyfish) tells the story of three very different Israeli women living in Tel Aviv whose intersecting stories weave an unlikely portrait of modern Israeli life. Batya, a catering waitress, takes in a young child apparently abandoned at a local beach. Batya is one of the servers at the wedding reception of Keren, a young bride who breaks her leg in trying to escape from a locked toilet stall, which ruins her chance at a romantic honeymoon in the Caribbean. One of the","id":"6391","runtime":82,"imdbId":"tt0807721","version":128,"lastModified":"1301952087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4c01a359017a3c70360011f4\/meduzot-mid.jpg","studio":"Les Films du Poisson","genre":"Comedy","title":"Meduzot","releaseDate":1179792000000,"language":"en","type":"Movie","_key":"28864"} +{"label":"Shira Geffen","version":21,"id":"55045","lastModified":"1301902025000","name":"Shira Geffen","type":"Person","_key":"28865"} +{"label":"Etgar Keret","version":22,"id":"55046","lastModified":"1301902009000","name":"Etgar Keret","type":"Person","_key":"28866"} +{"label":"Sarah Adler","version":21,"id":"55047","lastModified":"1301902202000","name":"Sarah Adler","type":"Person","_key":"28867"} +{"label":"Tsipor Aizen","version":20,"id":"55048","lastModified":"1301902202000","name":"Tsipor Aizen","type":"Person","_key":"28868"} +{"label":"Bruria Albeck","version":18,"id":"55049","lastModified":"1301902202000","name":"Bruria Albeck","type":"Person","_key":"28869"} +{"label":"Ilanit Ben-Yaakov","version":20,"id":"55050","lastModified":"1301902165000","name":"Ilanit Ben-Yaakov","type":"Person","_key":"28870"} +{"label":"Shosha Goren","version":20,"id":"55051","lastModified":"1301902186000","name":"Shosha Goren","type":"Person","_key":"28871"} +{"label":"Johnathan Gurfinkel","version":20,"id":"55052","lastModified":"1301902350000","name":"Johnathan Gurfinkel","type":"Person","_key":"28872"} +{"label":"Gera Sandler","version":20,"id":"55053","lastModified":"1301902350000","name":"Gera Sandler","type":"Person","_key":"28873"} +{"label":"Nikol Leidman","version":20,"id":"55055","lastModified":"1301902350000","name":"Nikol Leidman","type":"Person","_key":"28874"} +{"label":"Noa Knoller","version":20,"id":"55056","lastModified":"1301902383000","name":"Noa Knoller","type":"Person","_key":"28875"} +{"label":"Ma-nenita De Latorre","version":20,"id":"55057","lastModified":"1301902350000","name":"Ma-nenita De Latorre","type":"Person","_key":"28876"} +{"label":"Zaharira Harifai","version":20,"id":"55058","lastModified":"1301902350000","name":"Zaharira Harifai","type":"Person","_key":"28877"} +{"label":"Taking Care of Business","description":"No overview found.","id":"6393","runtime":105,"imdbId":"tt0103035","version":104,"lastModified":"1301902878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1f\/4bc91db5017a3c57fe00ba1f\/taking-care-of-business-mid.jpg","studio":"Hollywood Pictures","genre":"Comedy","title":"Taking Care of Business","releaseDate":650851200000,"language":"en","type":"Movie","_key":"28878"} +{"label":"Anne De Salvo","version":22,"id":"49422","lastModified":"1301901532000","name":"Anne De Salvo","type":"Person","_key":"28879"} +{"label":"Loryn Locklin","version":27,"id":"51641","lastModified":"1301901602000","name":"Loryn Locklin","type":"Person","_key":"28880"} +{"label":"SLC Punk","description":"Two punks live in Salt Lake City. The film covers their all-day routine. The realism of the character-narrated movie may be discussed. One of the punks gets ill, stays in hospital for three weeks, comes out again. Three parties are covered and one concert including a fight between punks, rednecks and others.","id":"6396","runtime":97,"imdbId":"tt0133189","version":160,"lastModified":"1301902972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a30\/4bc91db7017a3c57fe00ba30\/slc-punk-mid.jpg","studio":"Beyond Films","genre":"Drama","title":"SLC Punk","releaseDate":906595200000,"language":"en","type":"Movie","_key":"28881"} +{"label":"Michael A. Goorjian","version":24,"id":"49424","lastModified":"1301901647000","name":"Michael A. Goorjian","type":"Person","_key":"28882"} +{"label":"Annabeth Gish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e0\/4c083cb0017a3c7e860007e0\/annabeth-gish-profile.jpg","version":40,"id":"49425","lastModified":"1301901205000","name":"Annabeth Gish","type":"Person","_key":"28883"} +{"label":"Xaver und sein au\u00dferirdischer Freund","description":"No overview found.","id":"6397","runtime":90,"imdbId":"tt0092246","version":54,"lastModified":"1301907127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/264\/4d2873ab7b9aa134e0002264\/xaver-mid.jpg","studio":"ZDF","genre":"Horror","title":"Xaver und sein au\u00dferirdischer Freund","releaseDate":504921600000,"language":"en","type":"Movie","_key":"28884"} +{"label":"Werner Possardt","version":26,"id":"50536","lastModified":"1301901989000","name":"Werner Possardt","type":"Person","_key":"28885"} +{"label":"Carlos Pavlidis","version":21,"id":"51647","lastModified":"1301902345000","name":"Carlos Pavlidis","type":"Person","_key":"28886"} +{"label":"Gabi Fischer","version":21,"id":"39484","lastModified":"1301901999000","name":"Gabi Fischer","type":"Person","_key":"28887"} +{"label":"Marinus Brand","version":21,"id":"51649","lastModified":"1301902392000","name":"Marinus Brand","type":"Person","_key":"28888"} +{"label":"Josef Thalmeier","version":21,"id":"51650","lastModified":"1301902345000","name":"Josef Thalmeier","type":"Person","_key":"28889"} +{"label":"Nebenwirkungen","description":"No overview found.","id":"6398","runtime":89,"imdbId":"tt0929779","version":49,"lastModified":"1301908365000","studio":"Maximage GmbH","genre":"Thriller","title":"Nebenwirkungen","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"28890"} +{"label":"Manuel Siebenmann","version":20,"id":"49438","lastModified":"1301901922000","name":"Manuel Siebenmann","type":"Person","_key":"28891"} +{"label":"Michael Neuenschwander","version":19,"id":"49443","lastModified":"1301901922000","name":"Michael Neuenschwander","type":"Person","_key":"28892"} +{"label":"Hanspeter M\u00fcller","version":28,"id":"49444","lastModified":"1301901780000","name":"Hanspeter M\u00fcller","type":"Person","_key":"28893"} +{"label":"Hanspeter Bader","version":19,"id":"49445","lastModified":"1301901922000","name":"Hanspeter Bader","type":"Person","_key":"28894"} +{"label":"Daniel Buser","version":19,"id":"49446","lastModified":"1301902298000","name":"Daniel Buser","type":"Person","_key":"28895"} +{"label":"David Chrisman","version":19,"id":"49447","lastModified":"1301902298000","name":"David Chrisman","type":"Person","_key":"28896"} +{"label":"Lilian Fritz","version":19,"id":"49448","lastModified":"1301902298000","name":"Lilian Fritz","type":"Person","_key":"28897"} +{"label":"Mich\u00e8le M\u00fcller","version":17,"id":"49449","lastModified":"1301901757000","name":"Mich\u00e8le M\u00fcller","type":"Person","_key":"28898"} +{"label":"Chi Trova Un Amico... ...Trova Un Tesoro","description":"Alan et son ami Charlie partent \u00e0 la recherche d'un myst\u00e9rieux tr\u00e9sor situ\u00e9 sur une \u00eele de l'Oc\u00e9an Pacifique. Pour mettre la main sur ledit tr\u00e9sor, ils vont devoir se d\u00e9barasser de quelques concurrents...","id":"6399","runtime":108,"imdbId":"tt0085327","version":75,"lastModified":"1301902980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4c5d95137b9aa151f60009c9\/chi-trova-un-amico-trova-un-tesoro-mid.jpg","studio":"Take One","genre":"Action","title":"Chi Trova Un Amico... ...Trova Un Tesoro","releaseDate":376790400000,"language":"en","type":"Movie","_key":"28899"} +{"label":"Sergio Corbucci","version":72,"id":"49450","lastModified":"1301901243000","name":"Sergio Corbucci","type":"Person","_key":"28900"} +{"label":"Louise Bennett","version":20,"id":"49457","lastModified":"1301901980000","name":"Louise Bennett","type":"Person","_key":"28901"} +{"label":"Salvatore Borghese","version":20,"id":"49458","lastModified":"1301902054000","name":"Salvatore Borghese","type":"Person","_key":"28902"} +{"label":"Kainowa Lauritzen","version":20,"id":"49459","lastModified":"1301901803000","name":"Kainowa Lauritzen","type":"Person","_key":"28903"} +{"label":"Mirna Seya","version":21,"id":"49460","lastModified":"1301902101000","name":"Mirna Seya","type":"Person","_key":"28904"} +{"label":"Terry Moni Mapuana","version":21,"id":"49461","lastModified":"1301902283000","name":"Terry Moni Mapuana","type":"Person","_key":"28905"} +{"label":"Linda Prast","version":21,"id":"49462","lastModified":"1301902283000","name":"Linda Prast","type":"Person","_key":"28906"} +{"label":"Kathy Lun","version":21,"id":"49463","lastModified":"1301902101000","name":"Kathy Lun","type":"Person","_key":"28907"} +{"label":"Herb Goldstein","version":21,"id":"49464","lastModified":"1301902101000","name":"Herb Goldstein","type":"Person","_key":"28908"} +{"label":"Arnie Ross","version":21,"id":"49465","lastModified":"1301902283000","name":"Arnie Ross","type":"Person","_key":"28909"} +{"label":"Heute f\u00e4ngt mein Leben an","description":"No overview found.","id":"6400","runtime":90,"imdbId":"tt0496311","version":56,"lastModified":"1301906174000","studio":"Studio Hamburg Filmproduktion","genre":"Drama","title":"Heute f\u00e4ngt mein Leben an","releaseDate":1160092800000,"language":"en","type":"Movie","_key":"28910"} +{"label":"Christine Kabisch","version":20,"id":"49466","lastModified":"1301901686000","name":"Christine Kabisch","type":"Person","_key":"28911"} +{"label":"Elisabeth Scherer","version":21,"id":"49472","lastModified":"1301901816000","name":"Elisabeth Scherer","type":"Person","_key":"28912"} +{"label":"Joel Harmsen","version":20,"id":"49474","lastModified":"1301902372000","name":"Joel Harmsen","type":"Person","_key":"28913"} +{"label":"Rolf Nagel","version":22,"id":"38179","lastModified":"1301901961000","name":"Rolf Nagel","type":"Person","_key":"28914"} +{"label":"Marlies Engel","version":20,"id":"49475","lastModified":"1301902344000","name":"Marlies Engel","type":"Person","_key":"28915"} +{"label":"Annette Mayer","version":20,"id":"49476","lastModified":"1301902379000","name":"Annette Mayer","type":"Person","_key":"28916"} +{"label":"Das 100 Millionen Dollar Date","description":"No overview found.","id":"6401","runtime":90,"imdbId":"tt1087835","version":63,"lastModified":"1301906078000","studio":"Sperl + Schott","genre":"Drama","title":"Das 100 Millionen Dollar Date","releaseDate":1196726400000,"language":"en","type":"Movie","_key":"28917"} +{"label":"Josh Broecker","version":17,"id":"49477","lastModified":"1301901538000","name":"Josh Broecker","type":"Person","_key":"28918"} +{"label":"Joel Eisenbl\u00e4tter","version":19,"id":"49484","lastModified":"1301901733000","name":"Joel Eisenbl\u00e4tter","type":"Person","_key":"28919"} +{"label":"Dominique Chiout","version":19,"id":"49485","lastModified":"1301901538000","name":"Dominique Chiout","type":"Person","_key":"28920"} +{"label":"John Keogh","version":27,"id":"49486","lastModified":"1301901485000","name":"John Keogh","type":"Person","_key":"28921"} +{"label":"Richard Sammel","version":37,"id":"49487","lastModified":"1301901156000","name":"Richard Sammel","type":"Person","_key":"28922"} +{"label":"Peter Atanassow","version":17,"id":"49488","lastModified":"1301902101000","name":"Peter Atanassow","type":"Person","_key":"28923"} +{"label":"Buenaventura Braunstein","version":19,"id":"49489","lastModified":"1301902101000","name":"Buenaventura Braunstein","type":"Person","_key":"28924"} +{"label":"Scot Bastian","version":19,"id":"49490","lastModified":"1301902101000","name":"Scot Bastian","type":"Person","_key":"28925"} +{"label":"Jeff Burrell","version":21,"id":"49491","lastModified":"1301901538000","name":"Jeff Burrell","type":"Person","_key":"28926"} +{"label":"Jay Wesley Cochran","version":20,"id":"49492","lastModified":"1301901431000","name":"Jay Wesley Cochran","type":"Person","_key":"28927"} +{"label":"Rene David Ifrah","version":17,"id":"38445","lastModified":"1301901733000","name":"Rene David Ifrah","type":"Person","_key":"28928"} +{"label":"Anja Ressmer","version":19,"id":"49493","lastModified":"1301901888000","name":"Anja Ressmer","type":"Person","_key":"28929"} +{"label":"Benjamin Joon Richter","version":19,"id":"49494","lastModified":"1301901733000","name":"Benjamin Joon Richter","type":"Person","_key":"28930"} +{"label":"Chiem van Houweninge","version":19,"id":"48619","lastModified":"1301902101000","name":"Chiem van Houweninge","type":"Person","_key":"28931"} +{"label":"Wolfgang S. Zechmayer","version":17,"id":"49495","lastModified":"1301901733000","name":"Wolfgang S. Zechmayer","type":"Person","_key":"28932"} +{"label":"Nosferatu the Vampyre","description":"Jonathan Harker is sent away to Count Dracula's castle to sell him a house in Virna, where he lives. But Count Dracula is a vampire, an undead ghoul living of men's blood. Inspired by a photograph of Lucy Harker, Dracula moves to Virna, bringing with him death and plague. An unusually contemplative version of Dracula, in which the vampire bears the cross of not being able to get old and die.","id":"6404","runtime":107,"imdbId":"tt0079641","trailer":"http:\/\/www.youtube.com\/watch?v=Td_HUL1jV9w","version":119,"lastModified":"1301904798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a47\/4bc91db9017a3c57fe00ba47\/nosferatu-phantom-der-nacht-mid.jpg","studio":"Werner Herzog Filmproduktion","genre":"Drama","title":"Nosferatu the Vampyre","releaseDate":285379200000,"language":"en","type":"Movie","_key":"28933"} +{"label":"Roland Topor","version":27,"id":"49505","lastModified":"1301901633000","name":"Roland Topor","type":"Person","_key":"28934"} +{"label":"Walter Ladengast","version":27,"id":"49506","lastModified":"1301902386000","name":"Walter Ladengast","type":"Person","_key":"28935"} +{"label":"Jan Groth","version":22,"id":"24195","lastModified":"1301901633000","name":"Jan Groth","type":"Person","_key":"28936"} +{"label":"Carsten Bodinus","version":21,"id":"49507","lastModified":"1301902300000","name":"Carsten Bodinus","type":"Person","_key":"28937"} +{"label":"Martje Grohmann","version":22,"id":"49508","lastModified":"1301904134000","name":"Martje Grohmann","type":"Person","_key":"28938"} +{"label":"Clemens Scheitz","version":27,"id":"49509","lastModified":"1301901445000","name":"Clemens Scheitz","type":"Person","_key":"28939"} +{"label":"Lo van Hensbergen","version":20,"id":"49510","lastModified":"1301902351000","name":"Lo van Hensbergen","type":"Person","_key":"28940"} +{"label":"Bo van Hensbergen","version":17,"id":"49511","lastModified":"1301902300000","name":"Bo van Hensbergen","type":"Person","_key":"28941"} +{"label":"John Leddy","version":21,"id":"49512","lastModified":"1301902299000","name":"John Leddy","type":"Person","_key":"28942"} +{"label":"Margiet van Hartingsveld","version":20,"id":"49513","lastModified":"1301902351000","name":"Margiet van Hartingsveld","type":"Person","_key":"28943"} +{"label":"Tim Beekman","version":21,"id":"49514","lastModified":"1301902300000","name":"Tim Beekman","type":"Person","_key":"28944"} +{"label":"Beverly Walker","version":21,"id":"49516","lastModified":"1301902300000","name":"Beverly Walker","type":"Person","_key":"28945"} +{"label":"Rudolf Wolf","version":17,"id":"49517","lastModified":"1301902300000","name":"Rudolf Wolf","type":"Person","_key":"28946"} +{"label":"Johan te Slaa","version":19,"id":"49518","lastModified":"1301902299000","name":"Johan te Slaa","type":"Person","_key":"28947"} +{"label":"Claude Chiarini","version":17,"id":"49519","lastModified":"1301902299000","name":"Claude Chiarini","type":"Person","_key":"28948"} +{"label":"Stefan Husar","version":21,"id":"49520","lastModified":"1301902299000","name":"Stefan Husar","type":"Person","_key":"28949"} +{"label":"Roger Berry Losch","version":17,"id":"49521","lastModified":"1301902299000","name":"Roger Berry Losch","type":"Person","_key":"28950"} +{"label":"Beautiful Boxer","description":"Based on the true life story of a Thai who wishes to have a sex change operation to become a woman. to pay for this he enters the brutal world of Thai boxing, un-nerving his opponents by performing a makeup application ritual before each fight.","id":"6414","runtime":117,"imdbId":"tt0401248","trailer":"http:\/\/www.youtube.com\/watch?v=6orM84owB7M","homepage":"http:\/\/www.beautifulboxer-themovie.com\/","version":146,"lastModified":"1301905201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/202\/4c26f0325e73d61a95000202\/beautiful-boxer-mid.jpg","genre":"Drama","title":"Beautiful Boxer","releaseDate":1069977600000,"language":"en","type":"Movie","_key":"28951"} +{"label":"Ekachai Uekrongtham","version":26,"id":"49605","lastModified":"1301901647000","name":"Ekachai Uekrongtham","type":"Person","_key":"28952"} +{"label":"Asanee Suwan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55e\/4d0b72f65e73d646a400055e\/asanee-suwan-profile.jpg","version":21,"id":"49608","lastModified":"1301901374000","name":"Asanee Suwan","type":"Person","_key":"28953"} +{"label":"Sorapong Chatree","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cf\/4cdfa4665e73d60f6d0000cf\/sorapong-chatree-profile.jpg","version":36,"id":"49609","lastModified":"1301901199000","name":"Sorapong Chatree","type":"Person","_key":"28954"} +{"label":"Orn-Anong Panyawong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53b\/4d0b6ed05e73d646a400053b\/orn-anong-panyawong-profile.jpg","biography":"Orn-anong Panyawong was one of the seven kids from a poor family. Orn graduated from Chiang Mai\u2019s School of Dramatic Arts on the \nscholarship, and began to earn extra money for her family when she was \nin Grade 8. Orn also worked as a freelance dancer at Chiang Mai\u2019s Cultural Center \nhelped pay for her educational materials and some family expenses. The \nhelps from World Vision Thailand gave Orn somewhat like a ladder for her\n to steps into the position of Miss Thailand 1992 and have the \nopport","version":23,"birthday":"94258800000","id":"49610","birthplace":"Chiang Mai, Thailand","lastModified":"1301901252000","name":"Orn-Anong Panyawong","type":"Person","_key":"28955"} +{"label":"Nukkid Boonthong","version":20,"id":"49611","lastModified":"1301901444000","name":"Nukkid Boonthong","type":"Person","_key":"28956"} +{"label":"Sitiporn Niyom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/571\/4d0b75b45e73d646a4000571\/sitiporn-niyom-profile.jpg","version":21,"id":"49612","lastModified":"1301901528000","name":"Sitiporn Niyom","type":"Person","_key":"28957"} +{"label":"Ky\u00f4ko Inoue","version":18,"id":"49613","lastModified":"1301901505000","name":"Ky\u00f4ko Inoue","type":"Person","_key":"28958"} +{"label":"Keagan Kang","version":20,"id":"49614","lastModified":"1301901780000","name":"Keagan Kang","type":"Person","_key":"28959"} +{"label":"Sarawuth Tangchit","version":20,"id":"49615","lastModified":"1301901780000","name":"Sarawuth Tangchit","type":"Person","_key":"28960"} +{"label":"Natee Pongsopol","version":20,"id":"49616","lastModified":"1301901780000","name":"Natee Pongsopol","type":"Person","_key":"28961"} +{"label":"Yuka Hyodo","version":20,"id":"49617","lastModified":"1301901780000","name":"Yuka Hyodo","type":"Person","_key":"28962"} +{"label":"Three Kings","description":"A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.","id":"6415","runtime":114,"imdbId":"tt0120188","trailer":"http:\/\/www.youtube.com\/watch?v=3zzUY0FQP00","version":320,"lastModified":"1301902249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a60\/4d4630b17b9aa15bf5002a60\/three-kings-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Three Kings","releaseDate":938390400000,"language":"en","tagline":"It's good to be King.","type":"Movie","_key":"28963"} +{"label":"Ein fliehendes Pferd","description":"No overview found.","id":"6416","runtime":92,"imdbId":"tt0954933","version":43,"lastModified":"1301905555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21e\/4d0bd4b87b9aa1195e00021e\/ein-fliehendes-pferd-mid.jpg","studio":"ZDF","genre":"Comedy","title":"Ein fliehendes Pferd","releaseDate":1190246400000,"language":"en","type":"Movie","_key":"28964"} +{"label":"Rainer Kaufmann","version":25,"id":"49625","lastModified":"1301901666000","name":"Rainer Kaufmann","type":"Person","_key":"28965"} +{"label":"Petra Schmidt-Schaller","version":21,"id":"49628","lastModified":"1301901788000","name":"Petra Schmidt-Schaller","type":"Person","_key":"28966"} +{"label":"Dallas Pashamende","description":"No overview found.","id":"6417","runtime":90,"imdbId":"tt0382627","version":78,"lastModified":"1301906509000","studio":"Allegro-Film","genre":"Drama","title":"Dallas Pashamende","releaseDate":1107302400000,"language":"en","type":"Movie","_key":"28967"} +{"label":"Robert-Adrian Pejo","version":23,"id":"49667","lastModified":"1301901961000","name":"Robert-Adrian Pejo","type":"Person","_key":"28968"} +{"label":"Zsolt Bogd\u00e1n","version":18,"id":"49671","lastModified":"1301901803000","name":"Zsolt Bogd\u00e1n","type":"Person","_key":"28969"} +{"label":"Oszk\u00e1r Ny\u00e1ri","version":18,"id":"49672","lastModified":"1301901803000","name":"Oszk\u00e1r Ny\u00e1ri","type":"Person","_key":"28970"} +{"label":"Mikl\u00f3s Sz\u00e9kely B.","version":21,"id":"49673","lastModified":"1301901803000","name":"Mikl\u00f3s Sz\u00e9kely B.","type":"Person","_key":"28971"} +{"label":"Radu Amzulescu","version":20,"id":"49674","lastModified":"1301901961000","name":"Radu Amzulescu","type":"Person","_key":"28972"} +{"label":"Bence M\u00e1nyoki","version":18,"id":"49675","lastModified":"1301901980000","name":"Bence M\u00e1nyoki","type":"Person","_key":"28973"} +{"label":"K\u00e1lm\u00e1n Hollai","version":18,"id":"49676","lastModified":"1301901980000","name":"K\u00e1lm\u00e1n Hollai","type":"Person","_key":"28974"} +{"label":"Julianna Kovacs","version":20,"id":"49677","lastModified":"1301901961000","name":"Julianna Kovacs","type":"Person","_key":"28975"} +{"label":"Judit J\u00f3n\u00e1s","version":18,"id":"49678","lastModified":"1301901961000","name":"Judit J\u00f3n\u00e1s","type":"Person","_key":"28976"} +{"label":"Dorel Visan","version":20,"id":"49679","lastModified":"1301901961000","name":"Dorel Visan","type":"Person","_key":"28977"} +{"label":"Hotel Chevalier","description":"Grief? Depression? Ambiguity in a Paris hotel room. Jack Whitman lies on a bed, ordering a grilled cheese sandwich from room service. His phone rings; it's a woman on her way to see him, a surprise. He readies the room, moving without affect, drawing a bath, changing his clothes. She arrives, as does the food, and the complications of their relationship emerge in bits and pieces. He invites her out on the balcony to see his view. Will they make love? Is the relationship over?","id":"6418","runtime":13,"imdbId":"tt1094249","homepage":"http:\/\/www.hotelchevalier.com\/","version":178,"lastModified":"1302023108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4cd3e4f05e73d6734a0001a2\/hotel-chevalier-mid.jpg","studio":"American Empirical Pictures","genre":"Drama","title":"Hotel Chevalier","releaseDate":1188777600000,"language":"en","type":"Movie","_key":"28978"} +{"label":"Michel Castejon","version":20,"id":"130324","lastModified":"1301902056000","name":"Michel Castejon","type":"Person","_key":"28979"} +{"label":"Die Ratte","description":"No overview found.","id":"6420","runtime":80,"imdbId":"tt0140497","version":58,"lastModified":"1301908332000","studio":"Klaus Lemke Filmproduktion","genre":"Drama","title":"Die Ratte","releaseDate":728179200000,"language":"en","type":"Movie","_key":"28980"} +{"label":"Klaus Lemke","version":22,"id":"49687","lastModified":"1301902283000","name":"Klaus Lemke","type":"Person","_key":"28981"} +{"label":"Marco Heinz","version":19,"id":"49690","lastModified":"1301902101000","name":"Marco Heinz","type":"Person","_key":"28982"} +{"label":"Andrea Heuer","version":19,"id":"39937","lastModified":"1301901888000","name":"Andrea Heuer","type":"Person","_key":"28983"} +{"label":"Ernie Reinhardt","version":19,"id":"49691","lastModified":"1301902283000","name":"Ernie Reinhardt","type":"Person","_key":"28984"} +{"label":"Myriam Zschage","version":21,"id":"49692","lastModified":"1301902283000","name":"Myriam Zschage","type":"Person","_key":"28985"} +{"label":"Alberta Lojpur","version":19,"id":"49693","lastModified":"1301902101000","name":"Alberta Lojpur","type":"Person","_key":"28986"} +{"label":"Elke Dudaci","version":18,"id":"49694","lastModified":"1301902351000","name":"Elke Dudaci","type":"Person","_key":"28987"} +{"label":"Practical Magic","description":"Sally and Gillian Owens have always known they were different. Raised by their aunts after their parents' death, the sisters grew up in a household that was anything but typical--their aunts fed them chocolate cake for breakfast and taught them the uses of practical magic. But the invocation of the Owens' sorcery also carries a price--some call it a curse: the men they fall in love with are doomed to an untimely death. Now adult women with very different personalities, the quiet Sally and the fi","id":"6435","runtime":103,"imdbId":"tt0120791","version":195,"lastModified":"1301907551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/167\/4d38afd87b9aa16145000167\/practical-magic-mid.jpg","studio":"DiNovi Pictures","genre":"Comedy","title":"Practical Magic","releaseDate":908496000000,"language":"en","tagline":"For two sisters from a family of witches, falling in love is the trickiest spell of all.","type":"Movie","_key":"28988"} +{"label":"Alexandra Artrip","version":24,"id":"51681","lastModified":"1301902198000","name":"Alexandra Artrip","type":"Person","_key":"28989"} +{"label":"Star Command","description":"No overview found.","id":"6436","runtime":97,"imdbId":"tt0117729","version":71,"lastModified":"1301906079000","studio":"Paramount Network Television","genre":"Science Fiction","title":"Star Command","releaseDate":826502400000,"language":"en","type":"Movie","_key":"28990"} +{"label":"Jennifer Bransford","version":22,"id":"49728","lastModified":"1301902138000","name":"Jennifer Bransford","type":"Person","_key":"28991"} +{"label":"Chris Conrad","version":23,"id":"51698","lastModified":"1301902285000","name":"Chris Conrad","type":"Person","_key":"28992"} +{"label":"Tembi Locke","version":19,"id":"51699","lastModified":"1301901888000","name":"Tembi Locke","type":"Person","_key":"28993"} +{"label":"Kelly Hu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4bd3e2df017a3c7fa500003d\/kelly-hu-profile.jpg","version":76,"id":"11024","lastModified":"1301901077000","name":"Kelly Hu","type":"Person","_key":"28994"} +{"label":"Eva Habermann","version":33,"id":"50683","lastModified":"1301901351000","name":"Eva Habermann","type":"Person","_key":"28995"} +{"label":"Jim Johnston","version":20,"id":"51694","lastModified":"1301902283000","name":"Jim Johnston","type":"Person","_key":"28996"} +{"label":"Racing Stripes","description":"Shattered illusions are hard to repair -- especially for a good-hearted zebra named Stripes who's spent his life on a Kentucky farm amidst the sorely mistaken notion that he's a debonair thoroughbred. Once he faces the fact that his stark stripes mark him as different, he decides he'll race anyway. And with help from the young girl who raised him, he just might end up in the winner's circle.","id":"6439","runtime":102,"imdbId":"tt0376105","version":198,"lastModified":"1301903179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b46\/4cbb450d5e73d67785000b46\/racing-stripes-mid.jpg","studio":"Alcon Entertainment","genre":"Action","title":"Racing Stripes","releaseDate":1104969600000,"language":"en","tagline":"Cheer 'til you're horse!","type":"Movie","_key":"28997"} +{"label":"Frederik Du Chau","version":27,"id":"50582","lastModified":"1301901772000","name":"Frederik Du Chau","type":"Person","_key":"28998"} +{"label":"The Shipping News","description":"Based on the book by Annie Proulx. A man returns with his daughter to his ancestral home of Newfoundland for a new beginning. He obtains work as a reporter, and is asked to document the shipping news, arrivals and departures from the local port.","id":"6440","runtime":111,"imdbId":"tt0120824","version":138,"lastModified":"1301903652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a80\/4bc91dc0017a3c57fe00ba80\/the-shipping-news-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"The Shipping News","releaseDate":1008633600000,"language":"en","type":"Movie","_key":"28999"} +{"label":"Till the End of the Night","description":"No overview found.","id":"6441","runtime":90,"imdbId":"tt0111431","version":247,"lastModified":"1301904681000","studio":"Motion Picture Corporation of America","genre":"Thriller","title":"Till the End of the Night","releaseDate":757382400000,"language":"en","type":"Movie","_key":"29000"} +{"label":"Katherine Kelly Lang","version":19,"id":"49729","lastModified":"1301901733000","name":"Katherine Kelly Lang","type":"Person","_key":"29001"} +{"label":"Mary Fanaro","version":20,"id":"51706","lastModified":"1301901775000","name":"Mary Fanaro","type":"Person","_key":"29002"} +{"label":"Roger Clinton","version":20,"id":"51707","lastModified":"1301902319000","name":"Roger Clinton","type":"Person","_key":"29003"} +{"label":"Larry Brand","version":28,"id":"49730","lastModified":"1301901563000","name":"Larry Brand","type":"Person","_key":"29004"} +{"label":"Clubhouse Detectives in Big Trouble","description":"No overview found.","id":"6442","runtime":77,"imdbId":"tt0365066","version":47,"lastModified":"1301905006000","genre":"Adventure","title":"Clubhouse Detectives in Big Trouble","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"29005"} +{"label":"Brittany Armstrong","version":20,"id":"49731","lastModified":"1301901590000","name":"Brittany Armstrong","type":"Person","_key":"29006"} +{"label":"Jonathan Cronin","version":20,"id":"49732","lastModified":"1301901834000","name":"Jonathan Cronin","type":"Person","_key":"29007"} +{"label":"Michael Glauser","version":20,"id":"49733","lastModified":"1301901818000","name":"Michael Glauser","type":"Person","_key":"29008"} +{"label":"Eric Hendershot","version":24,"id":"51708","lastModified":"1301901457000","name":"Eric Hendershot","type":"Person","_key":"29009"} +{"label":"The Forest for the Trees","description":"No overview found.","id":"6443","runtime":81,"imdbId":"tt0386862","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/forest-for-the-trees","version":72,"lastModified":"1301903542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a89\/4bc91dc1017a3c57fe00ba89\/der-wald-vor-lauter-baumen-mid.jpg","studio":"Hochschule f\u00fcr Fernsehen und Film M\u00fcnchen","genre":"Comedy","title":"The Forest for the Trees","releaseDate":1066780800000,"language":"en","type":"Movie","_key":"29010"} +{"label":"Maren Ade","version":30,"id":"40476","lastModified":"1301901741000","name":"Maren Ade","type":"Person","_key":"29011"} +{"label":"Daniela Holtz","version":21,"id":"49740","lastModified":"1301901733000","name":"Daniela Holtz","type":"Person","_key":"29012"} +{"label":"Jan Neumann","version":21,"id":"49741","lastModified":"1301902101000","name":"Jan Neumann","type":"Person","_key":"29013"} +{"label":"Ilona Schulz","version":24,"id":"49742","lastModified":"1301901651000","name":"Ilona Schulz","type":"Person","_key":"29014"} +{"label":"Robert Schupp","version":21,"id":"49743","lastModified":"1301902283000","name":"Robert Schupp","type":"Person","_key":"29015"} +{"label":"Heinz R\u00f6ser-D\u00fcmmig","version":21,"id":"49744","lastModified":"1301902283000","name":"Heinz R\u00f6ser-D\u00fcmmig","type":"Person","_key":"29016"} +{"label":"Tatie Danielle","description":"No overview found.","id":"6444","runtime":111,"imdbId":"tt0100747","version":122,"lastModified":"1301906485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4bc91dc4017a3c57fe00ba96\/tatie-danielle-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Comedy","title":"Tatie Danielle","releaseDate":639187200000,"language":"en","type":"Movie","_key":"29017"} +{"label":"Eric Prat","version":26,"id":"49748","lastModified":"1301901511000","name":"Eric Prat","type":"Person","_key":"29018"} +{"label":"Laurence F\u00e9vrier","version":20,"id":"49749","lastModified":"1301901888000","name":"Laurence F\u00e9vrier","type":"Person","_key":"29019"} +{"label":"Mathieu Foulon","version":20,"id":"49750","lastModified":"1301901888000","name":"Mathieu Foulon","type":"Person","_key":"29020"} +{"label":"Gary Ledoux","version":20,"id":"49752","lastModified":"1301901888000","name":"Gary Ledoux","type":"Person","_key":"29021"} +{"label":"Virginie Pradal","version":20,"id":"49753","lastModified":"1301901888000","name":"Virginie Pradal","type":"Person","_key":"29022"} +{"label":"Evelyne Didi","version":28,"id":"49756","lastModified":"1301902009000","name":"Evelyne Didi","type":"Person","_key":"29023"} +{"label":"Madeleine Cheminat","version":23,"id":"71995","lastModified":"1301902146000","name":"Madeleine Cheminat","type":"Person","_key":"29024"} +{"label":"Nicole Chollet","version":20,"id":"72001","lastModified":"1301901888000","name":"Nicole Chollet","type":"Person","_key":"29025"} +{"label":"Die Datsche","description":"No overview found.","id":"6460","runtime":90,"imdbId":"tt0301157","version":63,"lastModified":"1300978472000","studio":"Equinoxe Films","genre":"Comedy","title":"Die Datsche","releaseDate":1043280000000,"language":"en","type":"Movie","_key":"29026"} +{"label":"Carsten Fiebeler","version":22,"id":"49798","lastModified":"1301901733000","name":"Carsten Fiebeler","type":"Person","_key":"29027"} +{"label":"Michael Kind","version":21,"id":"43738","lastModified":"1301902151000","name":"Michael Kind","type":"Person","_key":"29028"} +{"label":"Nils Nelle\u00dfen","version":19,"id":"36440","lastModified":"1301901888000","name":"Nils Nelle\u00dfen","type":"Person","_key":"29029"} +{"label":"Olaf H\u00f6rbe","version":20,"id":"49805","lastModified":"1301902372000","name":"Olaf H\u00f6rbe","type":"Person","_key":"29030"} +{"label":"Cherry Blossoms","description":"After finding out that her husband, Rudi (Elmar Wepper), has a fatal illness, Trudi Angermeier (Hannelore Elsner) arranges a trip to Berlin so they can see their children (Maximilian Br\u00fcckner and Nadja Uhl). Of course, the kids don't know the real reason they're visiting -- and the catch is, neither does Rudi. Complications ensue after a tragic, unexpected turn of events that leads Rudi to learn unsettling secrets about his wife.","id":"6461","runtime":127,"imdbId":"tt0910559","homepage":"http:\/\/www.kirschblueten-film.de\/","version":92,"lastModified":"1301904324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9f\/4bc91dc5017a3c57fe00ba9f\/kirschbluten-hanami-mid.jpg","studio":"Majestic Filmproduktion","genre":"Drama","title":"Cherry Blossoms","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"29031"} +{"label":"Aya Irizuki","version":20,"id":"49775","lastModified":"1301902101000","name":"Aya Irizuki","type":"Person","_key":"29032"} +{"label":"Celine Tanneberger","version":19,"id":"49776","lastModified":"1301902166000","name":"Celine Tanneberger","type":"Person","_key":"29033"} +{"label":"Robert D\u00f6hlert","version":20,"id":"49777","lastModified":"1301902101000","name":"Robert D\u00f6hlert","type":"Person","_key":"29034"} +{"label":"Tadashi Endo","version":20,"id":"49778","lastModified":"1301902101000","name":"Tadashi Endo","type":"Person","_key":"29035"} +{"label":"Der falsche Tod","description":"No overview found.","id":"6462","runtime":90,"imdbId":"tt0780513","version":43,"lastModified":"1301908592000","studio":"teamWorx Produktion f\u00fcr Kino und Fernsehen GmbH","genre":"Crime","title":"Der falsche Tod","releaseDate":1176681600000,"language":"en","type":"Movie","_key":"29036"} +{"label":"Martin Eigler","version":21,"id":"44525","lastModified":"1301901961000","name":"Martin Eigler","type":"Person","_key":"29037"} +{"label":"Other People's Money","description":"A corporate raider threatens a hostile take-over of a \"mom and pop\" company. The patriarch of the company enlists the help of his wife's daughter, who is a lawyer, to try and protect the company. The raider is enamoured of her, and enjoys the thrust and parry of legal manoeuvring as he tries to win her heart. Written by Ed Sutton.","id":"6463","runtime":103,"imdbId":"tt0102609","trailer":"http:\/\/www.youtube.com\/watch?v=ED95_S5-of4","version":127,"lastModified":"1301904505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4bc91dc6017a3c57fe00baa8\/other-people-s-money-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Other People's Money","releaseDate":687744000000,"language":"en","type":"Movie","_key":"29038"} +{"label":"R.D. Call","version":27,"id":"49832","lastModified":"1301901803000","name":"R.D. Call","type":"Person","_key":"29039"} +{"label":"Mo Gaffney","version":20,"id":"49833","lastModified":"1301901980000","name":"Mo Gaffney","type":"Person","_key":"29040"} +{"label":"Bette Henritze","version":20,"id":"49834","lastModified":"1301902283000","name":"Bette Henritze","type":"Person","_key":"29041"} +{"label":"Tom Aldredge","version":33,"id":"49835","lastModified":"1301901401000","name":"Tom Aldredge","type":"Person","_key":"29042"} +{"label":"Cullen O. Johnson","version":20,"id":"49836","lastModified":"1301902283000","name":"Cullen O. Johnson","type":"Person","_key":"29043"} +{"label":"Ohne einander","description":"No overview found.","id":"6464","runtime":90,"imdbId":"tt0972863","version":50,"lastModified":"1301905645000","studio":"Bavaria Film","genre":"Drama","title":"Ohne einander","releaseDate":1174262400000,"language":"en","type":"Movie","_key":"29044"} +{"label":"Diethard Klante","version":21,"id":"49837","lastModified":"1301901888000","name":"Diethard Klante","type":"Person","_key":"29045"} +{"label":"Wolfgang Pregler","version":19,"id":"49705","lastModified":"1301901733000","name":"Wolfgang Pregler","type":"Person","_key":"29046"} +{"label":"Vijessna Ferkic","version":19,"id":"45811","lastModified":"1301902283000","name":"Vijessna Ferkic","type":"Person","_key":"29047"} +{"label":"Maximilian Simonischek","version":22,"id":"49842","lastModified":"1301901787000","name":"Maximilian Simonischek","type":"Person","_key":"29048"} +{"label":"Annette Paulmann","version":21,"id":"49843","lastModified":"1301902017000","name":"Annette Paulmann","type":"Person","_key":"29049"} +{"label":"Mickey Fleddermann","version":19,"id":"49844","lastModified":"1301902283000","name":"Mickey Fleddermann","type":"Person","_key":"29050"} +{"label":"Ulrike Willenbacher","version":19,"id":"49845","lastModified":"1301901888000","name":"Ulrike Willenbacher","type":"Person","_key":"29051"} +{"label":"Noch einmal lieben","description":"No overview found.","id":"6465","runtime":90,"imdbId":"tt0461693","version":60,"lastModified":"1301907416000","studio":"SamFilm Produktion","genre":"Drama","title":"Noch einmal lieben","releaseDate":1127779200000,"language":"en","type":"Movie","_key":"29052"} +{"label":"Anna Justice","version":20,"id":"49846","lastModified":"1301901961000","name":"Anna Justice","type":"Person","_key":"29053"} +{"label":"Steffen Schroeder","version":23,"id":"49851","lastModified":"1301901683000","name":"Steffen Schroeder","type":"Person","_key":"29054"} +{"label":"Lisa Karlstr\u00f6m","version":20,"id":"49852","lastModified":"1301901961000","name":"Lisa Karlstr\u00f6m","type":"Person","_key":"29055"} +{"label":"Dagmar Leesch","version":20,"id":"49853","lastModified":"1301901961000","name":"Dagmar Leesch","type":"Person","_key":"29056"} +{"label":"Hilmar Eichhorn","version":20,"id":"48828","lastModified":"1301902344000","name":"Hilmar Eichhorn","type":"Person","_key":"29057"} +{"label":"Richard Barenberg","version":20,"id":"49854","lastModified":"1301901961000","name":"Richard Barenberg","type":"Person","_key":"29058"} +{"label":"Freddy vs. Jason","description":"Freddy has been forgotten by the kids on Elm Street. Their parents have fed them anti-dreaming pills, making Freddy a thing in the past. So Freddy resurrects Jason and sends him to Elm Street to create havoc, making people think Kreuger did it. When Jason steals some kills from Freddy, the latter begins to fight the infamous hockey mask-wearing killer, leading to a climatic finale at Crystal Lake.","id":"6466","runtime":97,"imdbId":"tt0329101","trailer":"http:\/\/www.youtube.com\/watch?v=pdv1BXAAmJ4","version":318,"lastModified":"1301901772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4c1e561a5e73d60ce2000024\/freddy-vs-jason-mid.jpg","studio":"Avery Pix","genre":"Horror","title":"Freddy vs. Jason","releaseDate":1060732800000,"language":"en","tagline":"Evil Will Battle Evil","type":"Movie","_key":"29059"} +{"label":"Ken Kirzinger","version":25,"id":"50094","lastModified":"1301901486000","name":"Ken Kirzinger","type":"Person","_key":"29060"} +{"label":"Jason Ritter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e9\/4cd9be537b9aa11b260006e9\/jason-ritter-profile.jpg","version":45,"id":"50095","lastModified":"1301901490000","name":"Jason Ritter","type":"Person","_key":"29061"} +{"label":"Trip to Asia - Die Suche nach dem Einklang","description":"No overview found.","id":"6467","runtime":108,"imdbId":"tt0497990","homepage":"http:\/\/www.triptoasia.de\/","version":86,"lastModified":"1301904237000","studio":"ZDF","genre":"Documentary","title":"Trip to Asia - Die Suche nach dem Einklang","releaseDate":1204156800000,"language":"en","type":"Movie","_key":"29062"} +{"label":"Thomas Grube","version":25,"id":"50105","lastModified":"1301904134000","name":"Thomas Grube","type":"Person","_key":"29063"} +{"label":"Simon Rattle","version":19,"id":"50123","lastModified":"1301904134000","name":"Simon Rattle","type":"Person","_key":"29064"} +{"label":"Berliner Philharmoniker","version":20,"id":"50124","lastModified":"1301904130000","name":"Berliner Philharmoniker","type":"Person","_key":"29065"} +{"label":"Premi\u00e8res neiges","description":"No overview found.","id":"6468","runtime":63,"imdbId":"tt0213174","version":62,"lastModified":"1301908331000","studio":"Gaumont","genre":"Drama","title":"Premi\u00e8res neiges","releaseDate":944784000000,"language":"en","type":"Movie","_key":"29066"} +{"label":"Ga\u00ebl Morel","version":27,"id":"49855","lastModified":"1301901616000","name":"Ga\u00ebl Morel","type":"Person","_key":"29067"} +{"label":"St\u00e9phane Rideau","version":26,"id":"49859","lastModified":"1301902166000","name":"St\u00e9phane Rideau","type":"Person","_key":"29068"} +{"label":"Tony Baillargeat","version":19,"id":"49860","lastModified":"1301902101000","name":"Tony Baillargeat","type":"Person","_key":"29069"} +{"label":"Jean-Pascal Hattu","version":20,"id":"49861","lastModified":"1301902283000","name":"Jean-Pascal Hattu","type":"Person","_key":"29070"} +{"label":"V\u00e9ra Briole","version":18,"id":"49862","lastModified":"1301902371000","name":"V\u00e9ra Briole","type":"Person","_key":"29071"} +{"label":"Jean-Fran\u00e7ois Gallotte","version":19,"id":"49863","lastModified":"1301901980000","name":"Jean-Fran\u00e7ois Gallotte","type":"Person","_key":"29072"} +{"label":"Malika Amarti","version":19,"id":"49864","lastModified":"1301902283000","name":"Malika Amarti","type":"Person","_key":"29073"} +{"label":"Popa","version":19,"id":"49865","lastModified":"1301902283000","name":"Popa","type":"Person","_key":"29074"} +{"label":"Nabil Tahar","version":19,"id":"49866","lastModified":"1301902283000","name":"Nabil Tahar","type":"Person","_key":"29075"} +{"label":"\u00c9lodie Bouchez","version":32,"id":"59807","lastModified":"1301901445000","name":"\u00c9lodie Bouchez","type":"Person","_key":"29076"} +{"label":"The Takeover","description":"No overview found.","id":"6469","runtime":91,"imdbId":"tt0114606","version":259,"lastModified":"1301906628000","studio":"Artist View Entertainment","genre":"Action","title":"The Takeover","releaseDate":788918400000,"language":"en","type":"Movie","_key":"29077"} +{"label":"Troy Cook","version":22,"id":"49875","lastModified":"1301901733000","name":"Troy Cook","type":"Person","_key":"29078"} +{"label":"Nick Mancuso","version":30,"id":"49877","lastModified":"1301901338000","name":"Nick Mancuso","type":"Person","_key":"29079"} +{"label":"Eric DaRe","version":18,"id":"9323","lastModified":"1301901551000","name":"Eric DaRe","type":"Person","_key":"29080"} +{"label":"Cali Timmins","version":20,"id":"44245","lastModified":"1301901816000","name":"Cali Timmins","type":"Person","_key":"29081"} +{"label":"David Amos","version":19,"id":"49878","lastModified":"1301901888000","name":"David Amos","type":"Person","_key":"29082"} +{"label":"Gene Mitchell","version":20,"id":"49876","lastModified":"1301901980000","name":"Gene Mitchell","type":"Person","_key":"29083"} +{"label":"Anita Barone","version":23,"id":"49880","lastModified":"1301901997000","name":"Anita Barone","type":"Person","_key":"29084"} +{"label":"Manu Tupou","version":19,"id":"49882","lastModified":"1301901888000","name":"Manu Tupou","type":"Person","_key":"29085"} +{"label":"James A. Donzell","version":19,"id":"49883","lastModified":"1301901888000","name":"James A. Donzell","type":"Person","_key":"29086"} +{"label":"Arlene Rodriguez","version":18,"id":"49884","lastModified":"1301901980000","name":"Arlene Rodriguez","type":"Person","_key":"29087"} +{"label":"Lou Cass","version":19,"id":"49885","lastModified":"1301902101000","name":"Lou Cass","type":"Person","_key":"29088"} +{"label":"Freddy Waff","version":19,"id":"49886","lastModified":"1301901888000","name":"Freddy Waff","type":"Person","_key":"29089"} +{"label":"Fire Birds","description":"The U.S. Government is willing to help any country that requires help in ridding themselves of drugs with support from the Army. Unfortunately, the drug cartels have countered that offer by hiring one of the best air-combat mercenaries and have armed him with a Scorpion attack helicopter. The army decides to send in it's best people from it's Apache Air Combat school. But first they have to be tau","id":"6470","runtime":85,"imdbId":"tt0099575","version":258,"lastModified":"1301906335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acd\/4bc91dc9017a3c57fe00bacd\/fire-birds-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Fire Birds","releaseDate":631152000000,"language":"en","type":"Movie","_key":"29090"} +{"label":"Bryan Kestner","version":19,"id":"51916","lastModified":"1301902283000","name":"Bryan Kestner","type":"Person","_key":"29091"} +{"label":"David Green","version":19,"id":"51910","lastModified":"1301901476000","name":"David Green","type":"Person","_key":"29092"} +{"label":"The Jerk","description":"After discovering he's not really black like the rest of his family, likable dimwit Navin Johnson runs off on a hilarious misadventure in this comedy classic that takes him from rags to riches and back to rags again. The slaphappy jerk strikes it rich, but life in the fast lane isn't all it's cracked up to be and, in the end, all that really matters to Johnson is his true love.","id":"6471","runtime":94,"imdbId":"tt0079367","trailer":"http:\/\/www.youtube.com\/watch?v=ANph32LoXR4","version":721,"lastModified":"1302022428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aec\/4bc91dd1017a3c57fe00baec\/the-jerk-mid.jpg","studio":"Aspen Film Society","genre":"Comedy","title":"The Jerk","releaseDate":283996800000,"language":"en","tagline":"A rags to riches to rags story.","type":"Movie","_key":"29093"} +{"label":"Catlin Adams","version":20,"id":"52030","lastModified":"1301901476000","name":"Catlin Adams","type":"Person","_key":"29094"} +{"label":"Mabel King","version":20,"id":"52031","lastModified":"1301901887000","name":"Mabel King","type":"Person","_key":"29095"} +{"label":"Richard Ward","version":21,"id":"52032","lastModified":"1301901939000","name":"Richard Ward","type":"Person","_key":"29096"} +{"label":"Guarding Tess","description":"A former First Lady of the US wants a particular Secret Service agent to head her bodyguard detail, even though he can't stand her.","id":"6472","runtime":96,"imdbId":"tt0109951","trailer":"http:\/\/www.youtube.com\/watch?v=mdE9FXCUIbc","version":353,"lastModified":"1301903980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afa\/4bc91dd2017a3c57fe00bafa\/guarding-tess-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"Guarding Tess","releaseDate":763344000000,"language":"en","type":"Movie","_key":"29097"} +{"label":"Edward Albert","version":34,"id":"41218","lastModified":"1301901363000","name":"Edward Albert","type":"Person","_key":"29098"} +{"label":"The Marksman","description":"Chechen rebels take over a Russian nuclear plant and it's up to a mysterious agent(Snipes) to stop them. ","id":"6473","runtime":95,"imdbId":"tt0457090","version":209,"lastModified":"1302070239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0c\/4bc91dd3017a3c57fe00bb0c\/the-marksman-mid.jpg","studio":"Castel Film Romania","genre":"Action","title":"The Marksman","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"29099"} +{"label":"Marcus Adams","version":21,"id":"50757","lastModified":"1301902344000","name":"Marcus Adams","type":"Person","_key":"29100"} +{"label":"Navajo Joe","description":"No overview found.","id":"6474","runtime":93,"imdbId":"tt0061587","version":353,"lastModified":"1301905224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4c93e8077b9aa10d59000039\/navajo-joe-mid.jpg","studio":"Dino de Laurentiis Cinematografica","genre":"Western","title":"Navajo Joe","releaseDate":-65404800000,"language":"en","type":"Movie","_key":"29101"} +{"label":"Aldo Sambrell","version":28,"id":"49895","lastModified":"1301901984000","name":"Aldo Sambrell","type":"Person","_key":"29102"} +{"label":"Franca Polesello","version":20,"id":"49896","lastModified":"1301902182000","name":"Franca Polesello","type":"Person","_key":"29103"} +{"label":"Lucia Modugno","version":22,"id":"49897","lastModified":"1301902183000","name":"Lucia Modugno","type":"Person","_key":"29104"} +{"label":"Pierre Cressoy","version":20,"id":"49898","lastModified":"1301902183000","name":"Pierre Cressoy","type":"Person","_key":"29105"} +{"label":"From Noon Till Three","description":"Western romance about a bank robber whose brief liaison with a beautiful widow leads to his romanticized and posthumous reputation as an outlaw legend even though he's not dead. When Graham Dorsey is supposedly killed after a heist, Amanda Starbuck embellishes her afternoon affair with him, creating a popular dime novel and novelty business -- until Dorsey returns.","id":"6476","runtime":99,"imdbId":"tt0074553","version":96,"lastModified":"1300978474000","studio":"Frankovich Productions","genre":"Action","title":"From Noon Till Three","releaseDate":208742400000,"language":"en","type":"Movie","_key":"29106"} +{"label":"Frank D. Gilroy","version":22,"id":"49923","lastModified":"1301901733000","name":"Frank D. Gilroy","type":"Person","_key":"29107"} +{"label":"Stan Haze","version":19,"id":"49935","lastModified":"1301902283000","name":"Stan Haze","type":"Person","_key":"29108"} +{"label":"Damon Douglas","version":19,"id":"49936","lastModified":"1301902283000","name":"Damon Douglas","type":"Person","_key":"29109"} +{"label":"Hector Morales","version":19,"id":"49937","lastModified":"1301902283000","name":"Hector Morales","type":"Person","_key":"29110"} +{"label":"Bert Williams","version":22,"id":"49938","lastModified":"1301902296000","name":"Bert Williams","type":"Person","_key":"29111"} +{"label":"Davis Roberts","version":28,"id":"49939","lastModified":"1301902221000","name":"Davis Roberts","type":"Person","_key":"29112"} +{"label":"Betty Cole","version":19,"id":"49940","lastModified":"1301902283000","name":"Betty Cole","type":"Person","_key":"29113"} +{"label":"William Lanteau","version":20,"id":"49941","lastModified":"1301902283000","name":"William Lanteau","type":"Person","_key":"29114"} +{"label":"Larry French","version":19,"id":"49942","lastModified":"1301902283000","name":"Larry French","type":"Person","_key":"29115"} +{"label":"Michael LeClair","version":21,"id":"49943","lastModified":"1301902384000","name":"Michael LeClair","type":"Person","_key":"29116"} +{"label":"Anne Ramsey","version":26,"id":"49944","lastModified":"1301901511000","name":"Anne Ramsey","type":"Person","_key":"29117"} +{"label":"Howard Brunner","version":19,"id":"49945","lastModified":"1301902283000","name":"Howard Brunner","type":"Person","_key":"29118"} +{"label":"Alvin and the Chipmunks","description":"A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.","id":"6477","runtime":90,"imdbId":"tt0952640","trailer":"http:\/\/www.youtube.com\/watch?v=TL-9QAZN_zM","homepage":"http:\/\/www.chipmunks.com","version":384,"lastModified":"1301903191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4ca566545e73d636f70002f9\/alvin-and-the-chipmunks-mid.jpg","studio":"Fox 2000 Pictures","genre":"Animation","title":"Alvin and the Chipmunks","releaseDate":1197590400000,"language":"en","tagline":"Get your squeak on!","type":"Movie","_key":"29119"} +{"label":"Tim Hill","version":42,"id":"49903","lastModified":"1301982411000","name":"Tim Hill","type":"Person","_key":"29120"} +{"label":"Jesse McCartney","version":64,"id":"49915","lastModified":"1301901492000","name":"Jesse McCartney","type":"Person","_key":"29121"} +{"label":"Veronica Alicino","version":27,"id":"49916","lastModified":"1301901553000","name":"Veronica Alicino","type":"Person","_key":"29122"} +{"label":"Beyond the Sea","description":"A swooning study of \"Mack the Knife\" singer Bobby Darin specifically, and his relationship with his wife Sandra Dee. ","id":"6478","runtime":118,"imdbId":"tt0363473","version":622,"lastModified":"1302069323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b40\/4bc91ddb017a3c57fe00bb40\/beyond-the-sea-mid.jpg","studio":"Trigger Street Productions","genre":"Drama","title":"Beyond the Sea","releaseDate":1099958400000,"language":"en","type":"Movie","_key":"29123"} +{"label":"I Am Legend","description":"Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.","id":"6479","runtime":101,"imdbId":"tt0480249","trailer":"http:\/\/www.youtube.com\/watch?v=A7KHQCwkflk","homepage":"http:\/\/iamlegend.warnerbros.com\/","version":862,"lastModified":"1302022054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7a\/4bc91de5017a3c57fe00bb7a\/i-am-legend-mid.jpg","studio":"Village Roadshow Pictures","genre":"Action","title":"I Am Legend","releaseDate":1196812800000,"language":"en","tagline":"The last man on Earth is not alone","type":"Movie","_key":"29124"} +{"label":"Charlie Tahan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/057\/4ca39abb7b9aa16ed7000057\/charlie-tahan-profile.jpg","version":46,"id":"49918","lastModified":"1301901259000","name":"Charlie Tahan","type":"Person","_key":"29125"} +{"label":"Willow Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/497\/4d1991527b9aa11486004497\/willow-smith-profile.jpg","version":33,"id":"49920","lastModified":"1301901180000","name":"Willow Smith","type":"Person","_key":"29126"} +{"label":"Darrell Foster","version":38,"id":"49921","lastModified":"1301901156000","name":"Darrell Foster","type":"Person","_key":"29127"} +{"label":"Joanna Numata","version":32,"id":"49922","lastModified":"1301901234000","name":"Joanna Numata","type":"Person","_key":"29128"} +{"label":"Salli Richardson-Whitfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f8\/4d814c7e7b9aa12db00014f8\/salli-richardson-whitfield-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Salli Elise Richardson-Whitfield<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born on November 23, 1967 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Chicago<\/st1:City>, <st1:State w:st=\"on\">Illinois<\/st1:State><\/st1:place>. Salli Richardson played tennis in high school, and launched her ","version":45,"id":"53918","lastModified":"1301901156000","name":"Salli Richardson-Whitfield","type":"Person","_key":"29129"} +{"label":"Melissa","description":"No overview found.","id":"6480","runtime":81,"imdbId":"tt0156788","version":70,"lastModified":"1302021975000","studio":"AIM Group","genre":"Drama","title":"Melissa","releaseDate":788918400000,"language":"en","type":"Movie","_key":"29130"} +{"label":"Steve Binder","version":20,"id":"49949","lastModified":"1301901733000","name":"Steve Binder","type":"Person","_key":"29131"} +{"label":"Rosemary Forsyth","version":31,"id":"49958","lastModified":"1301901426000","name":"Rosemary Forsyth","type":"Person","_key":"29132"} +{"label":"Johnny La Spada","version":19,"id":"49959","lastModified":"1301902282000","name":"Johnny La Spada","type":"Person","_key":"29133"} +{"label":"Brette Taylor","version":19,"id":"49960","lastModified":"1301901887000","name":"Brette Taylor","type":"Person","_key":"29134"} +{"label":"Melissa","description":"No overview found.","id":"6481","runtime":200,"imdbId":"tt0060006","version":93,"lastModified":"1301905645000","studio":"WDR","genre":"Adventure","title":"Melissa","releaseDate":-125452800000,"language":"en","type":"Movie","_key":"29135"} +{"label":"Katinka Hoffmann","version":19,"id":"49978","lastModified":"1301902282000","name":"Katinka Hoffmann","type":"Person","_key":"29136"} +{"label":"Albert Bessler","version":19,"id":"49977","lastModified":"1301902282000","name":"Albert Bessler","type":"Person","_key":"29137"} +{"label":"Claudia Gerst\u00e4cker","version":19,"id":"49979","lastModified":"1301902282000","name":"Claudia Gerst\u00e4cker","type":"Person","_key":"29138"} +{"label":"Christine Uhde","version":15,"id":"49980","lastModified":"1301902282000","name":"Christine Uhde","type":"Person","_key":"29139"} +{"label":"E.O. Fuhrmann","version":19,"id":"49981","lastModified":"1301902282000","name":"E.O. Fuhrmann","type":"Person","_key":"29140"} +{"label":"Heinz Balk","version":19,"id":"49982","lastModified":"1301902282000","name":"Heinz Balk","type":"Person","_key":"29141"} +{"label":"Rudolf Kleinfeld-Keller","version":19,"id":"49983","lastModified":"1301902282000","name":"Rudolf Kleinfeld-Keller","type":"Person","_key":"29142"} +{"label":"Wolff Lindner","version":19,"id":"49984","lastModified":"1301902282000","name":"Wolff Lindner","type":"Person","_key":"29143"} +{"label":"Harald Meister","version":15,"id":"49985","lastModified":"1301902282000","name":"Harald Meister","type":"Person","_key":"29144"} +{"label":"Wolfgang Peau","version":19,"id":"49986","lastModified":"1301902282000","name":"Wolfgang Peau","type":"Person","_key":"29145"} +{"label":"Rena Reta","version":15,"id":"49987","lastModified":"1301902282000","name":"Rena Reta","type":"Person","_key":"29146"} +{"label":"Hans Schellbach","version":15,"id":"49988","lastModified":"1301902282000","name":"Hans Schellbach","type":"Person","_key":"29147"} +{"label":"Franz Schneider","version":15,"id":"49989","lastModified":"1301902282000","name":"Franz Schneider","type":"Person","_key":"29148"} +{"label":"Doris Seidel-Svoboda","version":15,"id":"49990","lastModified":"1301902282000","name":"Doris Seidel-Svoboda","type":"Person","_key":"29149"} +{"label":"Walter Sticken","version":15,"id":"49991","lastModified":"1301902282000","name":"Walter Sticken","type":"Person","_key":"29150"} +{"label":"Melissa","description":"No overview found.","id":"6482","runtime":300,"imdbId":"tt0118398","version":69,"lastModified":"1301905338000","studio":"Channel Four Films","genre":"Crime","title":"Melissa","releaseDate":863395200000,"language":"en","type":"Movie","_key":"29151"} +{"label":"Bill Anderson","version":24,"id":"49962","lastModified":"1301902022000","name":"Bill Anderson","type":"Person","_key":"29152"} +{"label":"Tim Dutton","version":21,"id":"49965","lastModified":"1301902344000","name":"Tim Dutton","type":"Person","_key":"29153"} +{"label":"Faith Edwards","version":20,"id":"49966","lastModified":"1301901961000","name":"Faith Edwards","type":"Person","_key":"29154"} +{"label":"Nigel Pegram","version":20,"id":"49967","lastModified":"1301902344000","name":"Nigel Pegram","type":"Person","_key":"29155"} +{"label":"Neville Phillips","version":21,"id":"49968","lastModified":"1301902344000","name":"Neville Phillips","type":"Person","_key":"29156"} +{"label":"Alice Brighton","version":20,"id":"49969","lastModified":"1301902381000","name":"Alice Brighton","type":"Person","_key":"29157"} +{"label":"Joan Hooley","version":20,"id":"49970","lastModified":"1301902181000","name":"Joan Hooley","type":"Person","_key":"29158"} +{"label":"Jennifer Ehle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4cdaf7b95e73d6056a00004f\/jennifer-ehle-profile.jpg","version":57,"id":"49971","lastModified":"1301901174000","name":"Jennifer Ehle","type":"Person","_key":"29159"} +{"label":"Adrian Dunbar","version":35,"id":"42566","lastModified":"1301901402000","name":"Adrian Dunbar","type":"Person","_key":"29160"} +{"label":"Melissa","description":"No overview found.","id":"6484","runtime":360,"imdbId":"tt0390741","version":76,"lastModified":"1301419479000","studio":"RAI","genre":"Drama","title":"Melissa","releaseDate":-98064000000,"language":"en","type":"Movie","_key":"29161"} +{"label":"Daniele D'Anza","version":19,"id":"50002","lastModified":"1301902344000","name":"Daniele D'Anza","type":"Person","_key":"29162"} +{"label":"Turi Ferro","version":21,"id":"50003","lastModified":"1301902000000","name":"Turi Ferro","type":"Person","_key":"29163"} +{"label":"Aroldo Tieri","version":23,"id":"50004","lastModified":"1301902185000","name":"Aroldo Tieri","type":"Person","_key":"29164"} +{"label":"Laura Adani","version":22,"id":"50005","lastModified":"1301902156000","name":"Laura Adani","type":"Person","_key":"29165"} +{"label":"Antonella Della Porta","version":20,"id":"50006","lastModified":"1301902344000","name":"Antonella Della Porta","type":"Person","_key":"29166"} +{"label":"Dina Sassoli","version":20,"id":"50007","lastModified":"1301901961000","name":"Dina Sassoli","type":"Person","_key":"29167"} +{"label":"Franco Volpi","version":22,"id":"50008","lastModified":"1301901961000","name":"Franco Volpi","type":"Person","_key":"29168"} +{"label":"Melissa","description":"No overview found.","id":"6485","runtime":7,"imdbId":"tt0389155","version":78,"lastModified":"1301908591000","genre":"Drama","title":"Melissa","releaseDate":946684800000,"language":"en","type":"Movie","_key":"29169"} +{"label":"Andr\u00e9s Aros","version":18,"id":"50009","lastModified":"1301901961000","name":"Andr\u00e9s Aros","type":"Person","_key":"29170"} +{"label":"Melissa Avenda\u00f1o","version":18,"id":"50012","lastModified":"1301901980000","name":"Melissa Avenda\u00f1o","type":"Person","_key":"29171"} +{"label":"Melissa","description":"No overview found.","id":"6486","runtime":15,"imdbId":"tt0989682","version":133,"lastModified":"1301905281000","genre":"Drama","title":"Melissa","releaseDate":1122854400000,"language":"en","type":"Movie","_key":"29172"} +{"label":"Figen \u00dcnsal","version":21,"id":"50013","lastModified":"1301901961000","name":"Figen \u00dcnsal","type":"Person","_key":"29173"} +{"label":"Ludmilla Heilig","version":20,"id":"50017","lastModified":"1301902344000","name":"Ludmilla Heilig","type":"Person","_key":"29174"} +{"label":"Ulas Kilic","version":20,"id":"50018","lastModified":"1301901997000","name":"Ulas Kilic","type":"Person","_key":"29175"} +{"label":"Franziska Machens","version":20,"id":"50019","lastModified":"1301901961000","name":"Franziska Machens","type":"Person","_key":"29176"} +{"label":"La pluie des prunes","description":"No overview found.","id":"6487","runtime":85,"imdbId":"tt1075009","version":54,"lastModified":"1301908331000","studio":"ARTE France Cin\u00e9ma","genre":"Comedy","title":"La pluie des prunes","releaseDate":1188691200000,"language":"en","type":"Movie","_key":"29177"} +{"label":"Fr\u00e9d\u00e9ric Fisbach","version":18,"id":"50021","lastModified":"1301901616000","name":"Fr\u00e9d\u00e9ric Fisbach","type":"Person","_key":"29178"} +{"label":"Marie Riva","version":19,"id":"50030","lastModified":"1301901887000","name":"Marie Riva","type":"Person","_key":"29179"} +{"label":"Toshi Fujiwara","version":18,"id":"50031","lastModified":"1301902351000","name":"Toshi Fujiwara","type":"Person","_key":"29180"} +{"label":"Mai Yoshino","version":19,"id":"50032","lastModified":"1301902282000","name":"Mai Yoshino","type":"Person","_key":"29181"} +{"label":"Yutaka Oda","version":18,"id":"50033","lastModified":"1301902351000","name":"Yutaka Oda","type":"Person","_key":"29182"} +{"label":"Arachnophobia","description":"A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.","id":"6488","runtime":103,"imdbId":"tt0099052","trailer":"http:\/\/www.youtube.com\/watch?v=4aQ6vg3JB2U","version":145,"lastModified":"1301904646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d0\/4c88ff2c7b9aa1545b0003d0\/arachnophobia-mid.jpg","studio":"Hollywood Pictures","genre":"Action","title":"Arachnophobia","releaseDate":648259200000,"language":"en","tagline":"Eight legs, two fangs, and an attitude.","type":"Movie","_key":"29183"} +{"label":"Stuart Pankin","version":27,"id":"52043","lastModified":"1301901616000","name":"Stuart Pankin","type":"Person","_key":"29184"} +{"label":"Frank Marshall","version":213,"id":"664","lastModified":"1299669822000","name":"Frank Marshall","type":"Person","_key":"29185"} +{"label":"Die Lawine","description":"No overview found.","id":"6489","runtime":89,"imdbId":"tt1151358","version":60,"lastModified":"1301908331000","studio":"Bayerischer Rundfunk","genre":"Drama","title":"Die Lawine","releaseDate":1195948800000,"language":"en","type":"Movie","_key":"29186"} +{"label":"Thomas Kronthaler","version":24,"id":"50034","lastModified":"1301901796000","name":"Thomas Kronthaler","type":"Person","_key":"29187"} +{"label":"Wolfgang B\u00f6ck","version":22,"id":"48081","lastModified":"1301901616000","name":"Wolfgang B\u00f6ck","type":"Person","_key":"29188"} +{"label":"Josef Griesser","version":19,"id":"50038","lastModified":"1301901733000","name":"Josef Griesser","type":"Person","_key":"29189"} +{"label":"Rafael Haider","version":19,"id":"50039","lastModified":"1301901887000","name":"Rafael Haider","type":"Person","_key":"29190"} +{"label":"Ute Heidorn","version":19,"id":"50040","lastModified":"1301901733000","name":"Ute Heidorn","type":"Person","_key":"29191"} +{"label":"Leopold Hornung","version":19,"id":"50041","lastModified":"1301901887000","name":"Leopold Hornung","type":"Person","_key":"29192"} +{"label":"Daniel Keberle","version":21,"id":"50043","lastModified":"1301901887000","name":"Daniel Keberle","type":"Person","_key":"29193"} +{"label":"Nina Keplinger","version":19,"id":"50044","lastModified":"1301901887000","name":"Nina Keplinger","type":"Person","_key":"29194"} +{"label":"Matthias Kinzl","version":19,"id":"50045","lastModified":"1301901538000","name":"Matthias Kinzl","type":"Person","_key":"29195"} +{"label":"Claudia L\u00f6ssl","version":19,"id":"50046","lastModified":"1301901887000","name":"Claudia L\u00f6ssl","type":"Person","_key":"29196"} +{"label":"Michael Moser","version":19,"id":"50047","lastModified":"1301901887000","name":"Michael Moser","type":"Person","_key":"29197"} +{"label":"Nikolaus Neureiter","version":19,"id":"50048","lastModified":"1301901616000","name":"Nikolaus Neureiter","type":"Person","_key":"29198"} +{"label":"Max, der Taschendieb","description":"No overview found.","id":"6497","runtime":91,"imdbId":"tt0056230","version":65,"lastModified":"1301908331000","studio":"Bavaria Film International","genre":"Comedy","title":"Max, der Taschendieb","releaseDate":-247363200000,"language":"en","type":"Movie","_key":"29199"} +{"label":"Elfie Pertramer","version":21,"id":"50087","lastModified":"1301902375000","name":"Elfie Pertramer","type":"Person","_key":"29200"} +{"label":"Benno Sterzenbach","version":27,"id":"50089","lastModified":"1301901887000","name":"Benno Sterzenbach","type":"Person","_key":"29201"} +{"label":"Harald Maresch","version":17,"birthday":"-1690250400000","id":"50090","birthplace":"Vienna, Austria-Hungary","lastModified":"1301902303000","name":"Harald Maresch","type":"Person","_key":"29202"} +{"label":"Hans J\u00fcrgen Diedrich","version":18,"id":"50103","lastModified":"1301902351000","name":"Hans J\u00fcrgen Diedrich","type":"Person","_key":"29203"} +{"label":"Gernot Duda","version":19,"id":"26333","lastModified":"1301902101000","name":"Gernot Duda","type":"Person","_key":"29204"} +{"label":"Arno Assmann","version":19,"id":"50104","lastModified":"1301902282000","name":"Arno Assmann","type":"Person","_key":"29205"} +{"label":"Nattevagten","description":"No overview found.","id":"6498","runtime":107,"imdbId":"tt0110631","version":124,"lastModified":"1302021175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c4\/4d0968577b9aa101e60009c4\/nattevagten-mid.jpg","studio":"Thura Film","genre":"Horror","title":"Nattevagten","releaseDate":757382400000,"language":"en","type":"Movie","_key":"29206"} +{"label":"Lotte Andersen","version":21,"id":"50093","lastModified":"1301902019000","name":"Lotte Andersen","type":"Person","_key":"29207"} +{"label":"Turbo: A Power Rangers Movie","description":"The legendary Power Rangers must stop the evil space pirate Divatox from releasing the powerful Maligore from his volcanic imprisonment on the island of Muranthias, where only the kindly wizard Lerigot has the key to release him. The hope of victory lies in the Ranger's incredible new Turbo powers and powerful Turbo Zords.","id":"6499","runtime":99,"imdbId":"tt0120389","trailer":"http:\/\/www.youtube.com\/watch?v=1029","version":258,"lastModified":"1301905964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/412\/4c05ce61017a3c7e92000412\/turbo-a-power-rangers-movie-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Turbo: A Power Rangers Movie","releaseDate":852076800000,"language":"en","tagline":"The Power Is Back!","type":"Movie","_key":"29208"} +{"label":"Johnny Yong Bosch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d9\/4d2cf9c15e73d63a5200a4d9\/johnny-yong-bosch-profile.jpg","version":31,"id":"50096","lastModified":"1301901699000","name":"Johnny Yong Bosch","type":"Person","_key":"29209"} +{"label":"Nakia Burrise","version":23,"id":"50097","lastModified":"1301902357000","name":"Nakia Burrise","type":"Person","_key":"29210"} +{"label":"Jason David Frank","version":25,"id":"50098","lastModified":"1301901785000","name":"Jason David Frank","type":"Person","_key":"29211"} +{"label":"Blake Foster","version":22,"id":"52048","lastModified":"1301902197000","name":"Blake Foster","type":"Person","_key":"29212"} +{"label":"Shuki Levy","version":27,"id":"50099","lastModified":"1301902318000","name":"Shuki Levy","type":"Person","_key":"29213"} +{"label":"David Winning","version":25,"id":"52044","lastModified":"1301902371000","name":"David Winning","type":"Person","_key":"29214"} +{"label":"Mein Freund der Scheich","description":"No overview found.","id":"6500","runtime":90,"imdbId":"tt0082730","version":50,"lastModified":"1301908591000","studio":"Pentagramma","genre":"Comedy","title":"Mein Freund der Scheich","releaseDate":372470400000,"language":"en","type":"Movie","_key":"29215"} +{"label":"Rainer Erler","version":25,"id":"50125","lastModified":"1301901961000","name":"Rainer Erler","type":"Person","_key":"29216"} +{"label":"Gustl Bayrhammer","version":21,"id":"26507","lastModified":"1301901788000","name":"Gustl Bayrhammer","type":"Person","_key":"29217"} +{"label":"Josef Glas","version":20,"id":"50127","lastModified":"1301902156000","name":"Josef Glas","type":"Person","_key":"29218"} +{"label":"Peter Kuhnert","version":20,"id":"23102","lastModified":"1301902048000","name":"Peter Kuhnert","type":"Person","_key":"29219"} +{"label":"Fritz Strassner","version":20,"id":"39420","lastModified":"1301901733000","name":"Fritz Strassner","type":"Person","_key":"29220"} +{"label":"Gru\u00df und Kuss vom Tegernsee","description":"No overview found.","id":"6501","runtime":90,"imdbId":"tt0050461","version":50,"lastModified":"1301907278000","studio":"Hans Deppe Film","genre":"Comedy","title":"Gru\u00df und Kuss vom Tegernsee","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"29221"} +{"label":"Bert Fortell","version":20,"id":"49635","lastModified":"1301902282000","name":"Bert Fortell","type":"Person","_key":"29222"} +{"label":"Lale Andersen","version":17,"id":"3772","lastModified":"1301901546000","name":"Lale Andersen","type":"Person","_key":"29223"} +{"label":"Monika Dahlberg","version":19,"id":"39412","lastModified":"1301901887000","name":"Monika Dahlberg","type":"Person","_key":"29224"} +{"label":"Ingrid Dittmar","version":19,"id":"50133","lastModified":"1301902282000","name":"Ingrid Dittmar","type":"Person","_key":"29225"} +{"label":"Das Hansen-Quartett","version":17,"id":"50134","lastModified":"1301902282000","name":"Das Hansen-Quartett","type":"Person","_key":"29226"} +{"label":"Harald Martens","version":19,"id":"50135","lastModified":"1301902282000","name":"Harald Martens","type":"Person","_key":"29227"} +{"label":"Kenneth Spencer","version":19,"id":"50136","lastModified":"1301901887000","name":"Kenneth Spencer","type":"Person","_key":"29228"} +{"label":"Jan Troeger","version":19,"id":"50137","lastModified":"1301902282000","name":"Jan Troeger","type":"Person","_key":"29229"} +{"label":"Paul W\u00fcrges","version":19,"id":"50138","lastModified":"1301902282000","name":"Paul W\u00fcrges","type":"Person","_key":"29230"} +{"label":"Der lange Weg ans Licht","description":"No overview found.","id":"6502","runtime":100,"imdbId":"tt1141725","homepage":"http:\/\/www.der-lange-weg.de","version":42,"lastModified":"1301906174000","studio":"Douglas Wolfsberger Filmproduktion","genre":"Documentary","title":"Der lange Weg ans Licht","releaseDate":1204156800000,"language":"en","type":"Movie","_key":"29231"} +{"label":"Douglas Wolfsperger","version":21,"id":"52518","lastModified":"1301901788000","name":"Douglas Wolfsperger","type":"Person","_key":"29232"} +{"label":"Edeltraut Hertel","version":20,"id":"52527","lastModified":"1301901566000","name":"Edeltraut Hertel","type":"Person","_key":"29233"} +{"label":"Wenn die Heide bl\u00fcht","description":"No overview found.","id":"6509","runtime":93,"imdbId":"tt0054466","version":63,"lastModified":"1301907278000","studio":"Kurt Ulrich Filmproduktion","genre":"Drama","title":"Wenn die Heide bl\u00fcht","releaseDate":-290217600000,"language":"en","type":"Movie","_key":"29234"} +{"label":"Peter Carsten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4ce00c115e73d60f6c00019f\/peter-carsten-profile.jpg","version":27,"id":"39854","lastModified":"1301901713000","name":"Peter Carsten","type":"Person","_key":"29235"} +{"label":"Heinz Engelmann","version":21,"id":"36351","lastModified":"1301901887000","name":"Heinz Engelmann","type":"Person","_key":"29236"} +{"label":"Rita Paul","version":19,"id":"50189","lastModified":"1301902282000","name":"Rita Paul","type":"Person","_key":"29237"} +{"label":"Gardy Granass","version":19,"id":"50190","lastModified":"1301902282000","name":"Gardy Granass","type":"Person","_key":"29238"} +{"label":"Josef Sieber","version":20,"id":"36306","lastModified":"1301901980000","name":"Josef Sieber","type":"Person","_key":"29239"} +{"label":"Veronika Bayer","version":22,"id":"51435","lastModified":"1301902340000","name":"Veronika Bayer","type":"Person","_key":"29240"} +{"label":"Die Kandidatin","description":"No overview found.","id":"6510","runtime":90,"imdbId":"tt0198594","version":35,"lastModified":"1301908591000","studio":"Hessischer Rundfunk","genre":"Comedy","title":"Die Kandidatin","releaseDate":157766400000,"language":"en","type":"Movie","_key":"29241"} +{"label":"Danielo Devaux","version":20,"id":"50195","lastModified":"1301902344000","name":"Danielo Devaux","type":"Person","_key":"29242"} +{"label":"Liesel Christ","version":20,"id":"50196","lastModified":"1301901788000","name":"Liesel Christ","type":"Person","_key":"29243"} +{"label":"Erich Walther","version":20,"id":"50197","lastModified":"1301902344000","name":"Erich Walther","type":"Person","_key":"29244"} +{"label":"Hans-J. Reinert","version":20,"id":"50198","lastModified":"1301902371000","name":"Hans-J. Reinert","type":"Person","_key":"29245"} +{"label":"Bodo Griebenow","version":20,"id":"50199","lastModified":"1301902344000","name":"Bodo Griebenow","type":"Person","_key":"29246"} +{"label":"Dieter Schmiedel","version":20,"id":"50200","lastModified":"1301902344000","name":"Dieter Schmiedel","type":"Person","_key":"29247"} +{"label":"Irene Rohde","version":20,"id":"50201","lastModified":"1301902344000","name":"Irene Rohde","type":"Person","_key":"29248"} +{"label":"Heinz-Werner Kraehkamp","version":20,"id":"50202","lastModified":"1301902344000","name":"Heinz-Werner Kraehkamp","type":"Person","_key":"29249"} +{"label":"Die Konsequenz","description":"No overview found.","id":"6511","runtime":100,"imdbId":"tt0076280","version":65,"lastModified":"1301907278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b99\/4bc91de7017a3c57fe00bb99\/die-konsequenz-mid.jpg","studio":"Solaris Film","genre":"Drama","title":"Die Konsequenz","releaseDate":249868800000,"language":"en","type":"Movie","_key":"29250"} +{"label":"Ernst Hannawald","version":19,"id":"38977","lastModified":"1301901538000","name":"Ernst Hannawald","type":"Person","_key":"29251"} +{"label":"Elisabeth Fricker","version":19,"id":"50204","lastModified":"1301902101000","name":"Elisabeth Fricker","type":"Person","_key":"29252"} +{"label":"Walo L\u00fc\u00f6nd","version":22,"id":"50205","lastModified":"1301902135000","name":"Walo L\u00fc\u00f6nd","type":"Person","_key":"29253"} +{"label":"Edith Volkmann","version":19,"id":"50206","lastModified":"1301902101000","name":"Edith Volkmann","type":"Person","_key":"29254"} +{"label":"Erwin Kohlund","version":19,"id":"50207","lastModified":"1301902101000","name":"Erwin Kohlund","type":"Person","_key":"29255"} +{"label":"Alexis von Hagemeister","version":18,"id":"50208","lastModified":"1301902166000","name":"Alexis von Hagemeister","type":"Person","_key":"29256"} +{"label":"Gerold Noelli","version":19,"id":"50209","lastModified":"1301902101000","name":"Gerold Noelli","type":"Person","_key":"29257"} +{"label":"Erwin Parker","version":19,"id":"50210","lastModified":"1301902101000","name":"Erwin Parker","type":"Person","_key":"29258"} +{"label":"Alexander Ziegler","version":22,"id":"50203","lastModified":"1301902101000","name":"Alexander Ziegler","type":"Person","_key":"29259"} +{"label":"Wolf Gaudlitz","version":18,"id":"50211","lastModified":"1301902166000","name":"Wolf Gaudlitz","type":"Person","_key":"29260"} +{"label":"Thomas Haerin","version":19,"id":"50212","lastModified":"1301902101000","name":"Thomas Haerin","type":"Person","_key":"29261"} +{"label":"Franz Kollasch","version":19,"id":"50213","lastModified":"1301902101000","name":"Franz Kollasch","type":"Person","_key":"29262"} +{"label":"Carsten Naumann","version":19,"id":"50214","lastModified":"1301902101000","name":"Carsten Naumann","type":"Person","_key":"29263"} +{"label":"Franz Stiefel","version":19,"id":"50215","lastModified":"1301902101000","name":"Franz Stiefel","type":"Person","_key":"29264"} +{"label":"Lebensl\u00fcgen","description":"No overview found.","id":"6512","runtime":90,"imdbId":"tt0245227","version":48,"lastModified":"1301906745000","studio":"ZDF","genre":"Drama","title":"Lebensl\u00fcgen","releaseDate":957657600000,"language":"en","type":"Movie","_key":"29265"} +{"label":"Julia Palmer-Stoll","version":20,"id":"50220","lastModified":"1301902372000","name":"Julia Palmer-Stoll","type":"Person","_key":"29266"} +{"label":"Claudia Rieschel","version":20,"id":"50221","lastModified":"1301902374000","name":"Claudia Rieschel","type":"Person","_key":"29267"} +{"label":"He's Not Your Son","description":"No overview found.","id":"6513","runtime":90,"imdbId":"tt0087394","version":47,"lastModified":"1301907278000","studio":"CBS Television","genre":"Drama","title":"He's Not Your Son","releaseDate":465609600000,"language":"en","type":"Movie","_key":"29268"} +{"label":"Donna Mills","version":22,"id":"50234","lastModified":"1301901857000","name":"Donna Mills","type":"Person","_key":"29269"} +{"label":"Michael C. Gwynne","version":20,"id":"50235","lastModified":"1301901815000","name":"Michael C. Gwynne","type":"Person","_key":"29270"} +{"label":"John James","version":20,"id":"50236","lastModified":"1301902318000","name":"John James","type":"Person","_key":"29271"} +{"label":"Die Todesautomatik","description":"No overview found.","id":"6514","runtime":90,"imdbId":"tt1024877","version":67,"lastModified":"1301906628000","studio":"ZDF","genre":"Drama","title":"Die Todesautomatik","releaseDate":1196035200000,"language":"en","type":"Movie","_key":"29272"} +{"label":"Nikolaus Stein von Kamienski","version":23,"id":"28445","lastModified":"1301902101000","name":"Nikolaus Stein von Kamienski","type":"Person","_key":"29273"} +{"label":"Misel Maticevic","version":29,"id":"45972","lastModified":"1301902207000","name":"Misel Maticevic","type":"Person","_key":"29274"} +{"label":"Katrin B\u00fchring","version":19,"id":"50243","lastModified":"1301902282000","name":"Katrin B\u00fchring","type":"Person","_key":"29275"} +{"label":"Robert Gwisdek","version":22,"id":"50244","lastModified":"1301901856000","name":"Robert Gwisdek","type":"Person","_key":"29276"} +{"label":"Max Mauff","version":24,"id":"28432","lastModified":"1301901582000","name":"Max Mauff","type":"Person","_key":"29277"} +{"label":"Jannik B\u00fcddig","version":19,"id":"50245","lastModified":"1301902282000","name":"Jannik B\u00fcddig","type":"Person","_key":"29278"} +{"label":"Harald Baumgartner","version":20,"id":"50247","lastModified":"1301902371000","name":"Harald Baumgartner","type":"Person","_key":"29279"} +{"label":"Dieter Brandecker","version":19,"id":"49167","lastModified":"1301902101000","name":"Dieter Brandecker","type":"Person","_key":"29280"} +{"label":"Paula Dombrowski","version":19,"id":"50248","lastModified":"1301902282000","name":"Paula Dombrowski","type":"Person","_key":"29281"} +{"label":"Katja Geist","version":19,"id":"50249","lastModified":"1301902282000","name":"Katja Geist","type":"Person","_key":"29282"} +{"label":"Joachim Kappl","version":19,"id":"50250","lastModified":"1301902282000","name":"Joachim Kappl","type":"Person","_key":"29283"} +{"label":"Corinna Kirchhoff","version":19,"id":"44374","lastModified":"1301902282000","name":"Corinna Kirchhoff","type":"Person","_key":"29284"} +{"label":"Harald Koch","version":19,"id":"50251","lastModified":"1301902282000","name":"Harald Koch","type":"Person","_key":"29285"} +{"label":"Silvia Rachor","version":19,"id":"50252","lastModified":"1301902282000","name":"Silvia Rachor","type":"Person","_key":"29286"} +{"label":"Burkhard Schmeer","version":19,"id":"50253","lastModified":"1301902282000","name":"Burkhard Schmeer","type":"Person","_key":"29287"} +{"label":"Rainer Will","version":21,"id":"50254","lastModified":"1301901782000","name":"Rainer Will","type":"Person","_key":"29288"} +{"label":"Matthias Klimsa","version":20,"id":"39989","lastModified":"1301901886000","name":"Matthias Klimsa","type":"Person","_key":"29289"} +{"label":"The Dukes of Hazzard","description":"In Hazzard County, Bo and Luke help their Uncle Jesse and their sexy cousin Daisy run the Moonshine business and always getting into trouble with Sherriff Roscoe P. Coltrane and recklessly driving in their red car \"General Lee\". When Boss Hogg evicts the Duke's from their farm, Bo and Luke set out to save their farm and foil Boss Hogg's scheme.","id":"6519","runtime":106,"imdbId":"tt0377818","trailer":"http:\/\/www.youtube.com\/watch?v=3sh8fAYwRlc","version":207,"lastModified":"1301906803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baa\/4bc91dec017a3c57fe00bbaa\/the-dukes-of-hazzard-mid.jpg","studio":"Gerber Pictures","genre":"Action","title":"The Dukes of Hazzard","releaseDate":1104537600000,"language":"en","tagline":"Cousins. Outlaws. Thrillbillies.","type":"Movie","_key":"29290"} +{"label":"Alice Greczyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abe\/4d90ede07b9aa1675e003abe\/alice-greczyn-profile.jpg","version":32,"id":"52050","lastModified":"1301901368000","name":"Alice Greczyn","type":"Person","_key":"29291"} +{"label":"Steve Lemme","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4ce019ca7b9aa168b10000bf\/steve-lemme-profile.jpg","version":41,"id":"52051","lastModified":"1301901280000","name":"Steve Lemme","type":"Person","_key":"29292"} +{"label":"Jessica Simpson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/890\/4cfa9a105e73d6299b002890\/jessica-simpson-profile.jpg","version":42,"id":"52052","lastModified":"1301901112000","name":"Jessica Simpson","type":"Person","_key":"29293"} +{"label":"Jay Chandrasekhar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4ce019a57b9aa168b40000d0\/jay-chandrasekhar-profile.jpg","version":52,"id":"52049","lastModified":"1301901232000","name":"Jay Chandrasekhar","type":"Person","_key":"29294"} +{"label":"First Knight","description":"The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.","id":"6520","runtime":134,"imdbId":"tt0113071","version":427,"lastModified":"1302062333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03d\/4c7dee7c7b9aa10d9400003d\/first-knight-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"First Knight","releaseDate":788918400000,"language":"en","tagline":"Their greatest battle would be for her love.","type":"Movie","_key":"29295"} +{"label":"The Contender","description":"Political thriller about Laine Hanson's nomination and confirmation as Vice President. An allegation that she was involved in a sexual orgy at the age of 19 is leaked to the press. As pressure mounts on Laine, she's torn between fighting back or sticking to her principles and refusing to comment on the allegations.","id":"6521","runtime":126,"imdbId":"tt0208874","version":233,"lastModified":"1301904393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc5\/4bc91def017a3c57fe00bbc5\/the-contender-mid.jpg","studio":"Battleplan Productions","genre":"Drama","title":"The Contender","releaseDate":946684800000,"language":"en","type":"Movie","_key":"29296"} +{"label":"Life","description":"In the mid-1990s, two inmates bury the burned bodies of two lifers at Mississippi's infamous Parchman Farm; a third old-timer relates their story. They'd served 65 years for a murder they didn't commit, framed by a local sheriff while buying moonshine whiskey for a Manhattan club owner to whom they owed money.","id":"6522","runtime":108,"imdbId":"tt0123964","version":315,"lastModified":"1301903939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd6\/4bc91df0017a3c57fe00bbd6\/life-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Life","releaseDate":924220800000,"language":"en","type":"Movie","_key":"29297"} +{"label":"Michael Taliferro","version":27,"id":"87360","lastModified":"1301901945000","name":"Michael Taliferro","type":"Person","_key":"29298"} +{"label":"Miguel A. N\u00fa\u00f1ez Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11f\/4ceec7a55e73d654f500011f\/miguel-a-nunez-jr-profile.jpg","version":29,"id":"74354","lastModified":"1301901707000","name":"Miguel A. N\u00fa\u00f1ez Jr.","type":"Person","_key":"29299"} +{"label":"Bokeem Woodbine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e2\/4cf713255e73d629990015e2\/bokeem-woodbine-profile.jpg","version":58,"id":"71913","lastModified":"1301901199000","name":"Bokeem Woodbine","type":"Person","_key":"29300"} +{"label":"Lisa Nicole Carson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/510\/4d814db17b9aa12db0001510\/lisa-nicole-carson-profile.jpg","version":26,"id":"55274","lastModified":"1301902371000","name":"Lisa Nicole Carson","type":"Person","_key":"29301"} +{"label":"North to Alaska","description":"Sam and George strike gold in Alaska. George sends Sam to Seattle to bring George's fianc\u00e9 back to Alaska. Sam finds she is already married, and returns instead with Angel. Sam, after trying to get George and Angel together, finally romances Angel, who, in the meantime, is busy fighting off the advances of George's younger brother, Billy. Frankie is a con man trying to steal the partner's gold cla","id":"6523","runtime":122,"imdbId":"tt0054127","version":146,"lastModified":"1301904190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4d11e3b47b9aa1148e000844\/north-to-alaska-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"North to Alaska","releaseDate":-288748800000,"language":"en","type":"Movie","_key":"29302"} +{"label":"Stewart Granger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/294\/4c87b36b7b9aa1545d000294\/stewart-granger-profile.jpg","version":46,"id":"41235","lastModified":"1301901325000","name":"Stewart Granger","type":"Person","_key":"29303"} +{"label":"Life Stinks","description":"A rich businessman makes a bet he can survive on the streets of a rough Los Angeles neighborhood for 30 days completely penniless. During his stay he discovers another side of life and falls in love with with a homeless woman.","id":"6524","runtime":92,"imdbId":"tt0102303","version":172,"lastModified":"1301903058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22d\/4c79a7f65e73d613d700022d\/life-stinks-mid.jpg","studio":"Brooksfilms Ltd.","genre":"Comedy","title":"Life Stinks","releaseDate":662688000000,"language":"en","type":"Movie","_key":"29304"} +{"label":"Kriminaltango","description":"No overview found.","id":"6525","runtime":87,"imdbId":"tt0054002","version":53,"lastModified":"1301908331000","studio":"Sascha-Verleih","genre":"Comedy","title":"Kriminaltango","releaseDate":-296006400000,"language":"en","type":"Movie","_key":"29305"} +{"label":"Vivi Bach","version":19,"id":"50275","lastModified":"1301902282000","name":"Vivi Bach","type":"Person","_key":"29306"} +{"label":"Frauke Sinjen","version":19,"id":"50277","lastModified":"1301902282000","name":"Frauke Sinjen","type":"Person","_key":"29307"} +{"label":"Sylvia Lydi","version":19,"id":"50278","lastModified":"1301902282000","name":"Sylvia Lydi","type":"Person","_key":"29308"} +{"label":"C.W. Fernbach","version":18,"id":"49577","lastModified":"1301902371000","name":"C.W. Fernbach","type":"Person","_key":"29309"} +{"label":"Emanuel Schmied","version":19,"id":"50279","lastModified":"1301902282000","name":"Emanuel Schmied","type":"Person","_key":"29310"} +{"label":"Otto ist auf Frauen scharf","description":"No overview found.","id":"6526","runtime":85,"imdbId":"tt0062087","version":56,"lastModified":"1301907278000","studio":"Neue Delta Filmproduktion","genre":"Comedy","title":"Otto ist auf Frauen scharf","releaseDate":-47692800000,"language":"en","type":"Movie","_key":"29311"} +{"label":"Rex Gildo","version":20,"id":"50281","lastModified":"1301902282000","name":"Rex Gildo","type":"Person","_key":"29312"} +{"label":"Teri Tordai","version":19,"id":"50282","lastModified":"1301902101000","name":"Teri Tordai","type":"Person","_key":"29313"} +{"label":"J\u00e1nos Cs\u00e1nyi","version":17,"id":"50283","lastModified":"1301902101000","name":"J\u00e1nos Cs\u00e1nyi","type":"Person","_key":"29314"} +{"label":"Marte Harell","version":20,"id":"50284","lastModified":"1301902101000","name":"Marte Harell","type":"Person","_key":"29315"} +{"label":"Uschi Mood","version":19,"id":"50285","lastModified":"1301902101000","name":"Uschi Mood","type":"Person","_key":"29316"} +{"label":"Der Novembermann","description":"No overview found.","id":"6528","runtime":90,"imdbId":"tt0943243","version":43,"lastModified":"1301906174000","studio":"ARD","genre":"Drama","title":"Der Novembermann","releaseDate":1183680000000,"language":"en","type":"Movie","_key":"29317"} +{"label":"Jobst Oetzmann","version":22,"id":"50291","lastModified":"1301902390000","name":"Jobst Oetzmann","type":"Person","_key":"29318"} +{"label":"Henriette Confurius","version":21,"id":"50293","lastModified":"1301902156000","name":"Henriette Confurius","type":"Person","_key":"29319"} +{"label":"Hondo","description":"Army despatch rider Hondo Lane discovers a woman and her son living in the midst of warring Apaches, and he becomes their protector.","id":"6529","runtime":83,"imdbId":"tt0045883","version":211,"lastModified":"1301904628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf1\/4bc91df5017a3c57fe00bbf1\/hondo-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Hondo","releaseDate":-507772800000,"language":"en","type":"Movie","_key":"29320"} +{"label":"John Farrow","version":36,"id":"50300","lastModified":"1301901445000","name":"John Farrow","type":"Person","_key":"29321"} +{"label":"Michael Pate","version":31,"id":"50303","lastModified":"1301901703000","name":"Michael Pate","type":"Person","_key":"29322"} +{"label":"James Arness","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4bcf278c017a3c63f500000c\/james-arness-profile.jpg","version":34,"id":"50304","lastModified":"1301901590000","name":"James Arness","type":"Person","_key":"29323"} +{"label":"Leon Gordon","version":24,"id":"1504","lastModified":"1299492555000","name":"Leon Gordon","type":"Person","_key":"29324"} +{"label":"Tom Irish","version":19,"id":"50305","lastModified":"1301902282000","name":"Tom Irish","type":"Person","_key":"29325"} +{"label":"Lee Aaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49e\/4c533ce37b9aa13d4a00049e\/lee-aaker-profile.jpg","version":22,"id":"50306","lastModified":"1301901429000","name":"Lee Aaker","type":"Person","_key":"29326"} +{"label":"Frank McGrath","version":21,"id":"50308","lastModified":"1301901733000","name":"Frank McGrath","type":"Person","_key":"29327"} +{"label":"Morry Ogden","version":19,"id":"50309","lastModified":"1301901733000","name":"Morry Ogden","type":"Person","_key":"29328"} +{"label":"Chuck Roberson","version":21,"id":"50310","lastModified":"1301902315000","name":"Chuck Roberson","type":"Person","_key":"29329"} +{"label":"Talk to Me","description":"The story of Washington D.C. radio personality Ralph \"Petey\" Greene, an ex-con who became a popular talk show host and community activist in the 1960s.","id":"6535","runtime":118,"imdbId":"tt0796368","trailer":"http:\/\/www.youtube.com\/watch?v=435","version":269,"lastModified":"1301903180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfa\/4bc91df6017a3c57fe00bbfa\/talk-to-me-mid.jpg","studio":"The Mark Gordon Company","genre":"Drama","title":"Talk to Me","releaseDate":1184284800000,"language":"en","type":"Movie","_key":"29330"} +{"label":"Mike Epps","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4ce57b6b7b9aa179bb00003f\/mike-epps-profile.jpg","version":94,"id":"51944","lastModified":"1302059269000","name":"Mike Epps","type":"Person","_key":"29331"} +{"label":"Sean MacMahon","version":20,"id":"51945","lastModified":"1301902127000","name":"Sean MacMahon","type":"Person","_key":"29332"} +{"label":"J. Miles Dale","version":25,"id":"44138","lastModified":"1301901643000","name":"J. Miles Dale","type":"Person","_key":"29333"} +{"label":"Herbert Rawlins","version":19,"id":"51946","lastModified":"1301902166000","name":"Herbert Rawlins","type":"Person","_key":"29334"} +{"label":"Donald James Malmberg","version":19,"id":"51947","lastModified":"1301902166000","name":"Donald James Malmberg","type":"Person","_key":"29335"} +{"label":"Streets of Rio","description":"No overview found.","id":"6536","runtime":97,"imdbId":"tt0470087","trailer":"http:\/\/www.youtube.com\/watch?v=408","version":115,"lastModified":"1301904237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c08\/4bc91df7017a3c57fe00bc08\/streets-of-rio-mid.jpg","studio":"Orange Pictures","genre":"Drama","title":"Streets of Rio","releaseDate":1186531200000,"language":"en","type":"Movie","_key":"29336"} +{"label":"Alexander Pickl","version":20,"id":"50348","lastModified":"1301902182000","name":"Alexander Pickl","type":"Person","_key":"29337"} +{"label":"Thiago Martins","version":19,"id":"50362","lastModified":"1301901887000","name":"Thiago Martins","type":"Person","_key":"29338"} +{"label":"Lui Mendes","version":19,"id":"50363","lastModified":"1301901887000","name":"Lui Mendes","type":"Person","_key":"29339"} +{"label":"Lu\u00eds Ot\u00e1vio Fernandes","version":19,"id":"50364","lastModified":"1301901733000","name":"Lu\u00eds Ot\u00e1vio Fernandes","type":"Person","_key":"29340"} +{"label":"Naima Santos","version":19,"id":"50365","lastModified":"1301901887000","name":"Naima Santos","type":"Person","_key":"29341"} +{"label":"Gabriel Mattar","version":19,"id":"50366","lastModified":"1301902282000","name":"Gabriel Mattar","type":"Person","_key":"29342"} +{"label":"Arthur Bispo Coutinho","version":18,"id":"50367","lastModified":"1301902351000","name":"Arthur Bispo Coutinho","type":"Person","_key":"29343"} +{"label":"Patukinha","version":19,"id":"50368","lastModified":"1301902282000","name":"Patukinha","type":"Person","_key":"29344"} +{"label":"Sandra P\u00eara","version":18,"id":"50369","lastModified":"1301902351000","name":"Sandra P\u00eara","type":"Person","_key":"29345"} +{"label":"The Orphanage","description":"A woman brings her family back to her childhood home, where she opens an orphanage for handicapped children. Before long, her son starts to communicate with an invisible new friend.","id":"6537","runtime":102,"imdbId":"tt0464141","homepage":"http:\/\/www.clubcultura.com\/clubcine\/clubcineastas\/guillermodeltoro\/elorfanato\/","version":258,"lastModified":"1302028024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecc\/4d84fda75e73d653a6002ecc\/el-orfanato-mid.jpg","studio":"Telecinco","genre":"Drama","title":"The Orphanage","releaseDate":1204675200000,"language":"en","tagline":"A tale of love. A story of horror.","type":"Movie","_key":"29346"} +{"label":"Juan Antonio Bayona","version":25,"id":"51894","lastModified":"1301901770000","name":"Juan Antonio Bayona","type":"Person","_key":"29347"} +{"label":"Fernando Cayo","version":30,"id":"51902","lastModified":"1301901466000","name":"Fernando Cayo","type":"Person","_key":"29348"} +{"label":"Roger Pr\u00edncep","version":28,"id":"51903","lastModified":"1301901335000","name":"Roger Pr\u00edncep","type":"Person","_key":"29349"} +{"label":"Montserrat Carulla","version":25,"id":"51904","lastModified":"1301901770000","name":"Montserrat Carulla","type":"Person","_key":"29350"} +{"label":"Andr\u00e9s Gertr\u00fadix","version":25,"id":"51905","lastModified":"1301901937000","name":"Andr\u00e9s Gertr\u00fadix","type":"Person","_key":"29351"} +{"label":"Edgar Vivar","version":25,"id":"51906","lastModified":"1301901937000","name":"Edgar Vivar","type":"Person","_key":"29352"} +{"label":"\u00d3scar Casas","version":26,"id":"51943","lastModified":"1301901840000","name":"\u00d3scar Casas","type":"Person","_key":"29353"} +{"label":"Charlie Wilson's War","description":"A drama based on a Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets have some unforeseen and long-reaching effects.","id":"6538","runtime":97,"imdbId":"tt0472062","trailer":"http:\/\/www.youtube.com\/watch?v=410","homepage":"http:\/\/www.charliewilsonswar.net\/","version":320,"lastModified":"1301901834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/375\/4d5a2b785e73d65e85000375\/charlie-wilson-s-war-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Charlie Wilson's War","releaseDate":1198195200000,"language":"en","tagline":"Based on a true story. You think we could make all this up?","type":"Movie","_key":"29354"} +{"label":"Shiri Appleby","version":33,"id":"50346","lastModified":"1301901232000","name":"Shiri Appleby","type":"Person","_key":"29355"} +{"label":"Rachel Nichols","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/553\/4cfa05e35e73d6299b002553\/rachel-nichols-profile.jpg","version":62,"id":"50347","lastModified":"1301904082000","name":"Rachel Nichols","type":"Person","_key":"29356"} +{"label":"Schtonk!","description":"No overview found.","id":"6547","runtime":115,"imdbId":"tt0105328","version":90,"lastModified":"1301904956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c35\/4bc91dfd017a3c57fe00bc35\/schtonk-mid.jpg","studio":"WDR","genre":"Comedy","title":"Schtonk!","releaseDate":700358400000,"language":"en","type":"Movie","_key":"29357"} +{"label":"Fahrschule","description":"No overview found.","id":"6548","runtime":85,"imdbId":"tt0091028","version":42,"lastModified":"1301906745000","studio":"DEFA","genre":"Comedy","title":"Fahrschule","releaseDate":532828800000,"language":"en","type":"Movie","_key":"29358"} +{"label":"Bernhard Stephan","version":23,"id":"27481","lastModified":"1301902156000","name":"Bernhard Stephan","type":"Person","_key":"29359"} +{"label":"Detlef Heintze","version":21,"id":"50373","lastModified":"1301902343000","name":"Detlef Heintze","type":"Person","_key":"29360"} +{"label":"Daniela Hoffmann","version":22,"id":"50374","lastModified":"1301902343000","name":"Daniela Hoffmann","type":"Person","_key":"29361"} +{"label":"Kata K\u00e1nya","version":21,"id":"50375","lastModified":"1301901961000","name":"Kata K\u00e1nya","type":"Person","_key":"29362"} +{"label":"Idle Hands","description":"Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old clich\u00e9 about idle hands being the devil's playground has a kernel of truth after all.","id":"6552","runtime":92,"imdbId":"tt0138510","trailer":"http:\/\/www.youtube.com\/watch?v=l7Uh5L8zDVA","version":454,"lastModified":"1301902674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd7\/4d4bbeed7b9aa13aba006fd7\/idle-hands-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Idle Hands","releaseDate":935625600000,"language":"en","tagline":"The touching story of a boy and his right hand.","type":"Movie","_key":"29363"} +{"label":"Devon Sawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c28\/4d52d3327b9aa13aba011c28\/devon-sawa-profile.jpg","version":49,"id":"50398","lastModified":"1301901202000","name":"Devon Sawa","type":"Person","_key":"29364"} +{"label":"Katie Wright","version":21,"id":"50401","lastModified":"1301902101000","name":"Katie Wright","type":"Person","_key":"29365"} +{"label":"Nicholas Sadler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11d\/4d43eb5b7b9aa103c800011d\/nicholas-sadler-profile.jpg","version":58,"id":"50402","lastModified":"1301901228000","name":"Nicholas Sadler","type":"Person","_key":"29366"} +{"label":"Rodman Flender","version":30,"id":"50719","lastModified":"1301901649000","name":"Rodman Flender","type":"Person","_key":"29367"} +{"label":"Christian P. Della Penna","version":21,"id":"50725","lastModified":"1301901887000","name":"Christian P. Della Penna","type":"Person","_key":"29368"} +{"label":"Wir k\u00f6nnen auch anders ...","description":"Die Br\u00fcder Kipp (Joachim Kr\u00f3l) und Most (Horst Krause) machen sich auf den Weg, um das Gut ihrer Oma zu erben. Auf diesem Weg begegnen sie Viktor (Konstantin Kotljarov), einem desertierten russischen Soldaten, der die beiden kidnappt und Nadine (Sophie Rois), die sich ihnen freiwillig anschlie\u00dft. Zwischendurch gibt es noch einen Zusammensto\u00df mit Stra\u00dfenrowdies, was diesen allerdings nicht gerade gut bekommt. Auf ihrem Weg zum Erbe (oder was davon \u00fcbrig bleibt) geraten die Protagonisten in manche","id":"6553","runtime":92,"imdbId":"tt0108574","version":45,"lastModified":"1301903601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/043\/4c3cb8167b9aa1263f000043\/wir-konnen-auch-anders-mid.jpg","genre":"Comedy","title":"Wir k\u00f6nnen auch anders ...","releaseDate":733622400000,"language":"en","type":"Movie","_key":"29369"} +{"label":"Konstantin Kotljarov","version":20,"id":"50403","lastModified":"1301902340000","name":"Konstantin Kotljarov","type":"Person","_key":"29370"} +{"label":"Die Architekten","description":"No overview found.","id":"6554","runtime":102,"imdbId":"tt0305242","version":86,"lastModified":"1301907278000","studio":"DEFA","genre":"Drama","title":"Die Architekten","releaseDate":643766400000,"language":"en","type":"Movie","_key":"29371"} +{"label":"Kurt Naumann","version":19,"id":"50406","lastModified":"1301901733000","name":"Kurt Naumann","type":"Person","_key":"29372"} +{"label":"Rita Feldmeier","version":19,"id":"38218","lastModified":"1301901733000","name":"Rita Feldmeier","type":"Person","_key":"29373"} +{"label":"Uta Eisold","version":19,"id":"50407","lastModified":"1301902101000","name":"Uta Eisold","type":"Person","_key":"29374"} +{"label":"Christoph Engel","version":21,"id":"50408","lastModified":"1301902348000","name":"Christoph Engel","type":"Person","_key":"29375"} +{"label":"Hans-Joachim Hegewald","version":19,"id":"50409","lastModified":"1301902282000","name":"Hans-Joachim Hegewald","type":"Person","_key":"29376"} +{"label":"Karl-Ernst Horbol","version":18,"id":"50410","lastModified":"1301902371000","name":"Karl-Ernst Horbol","type":"Person","_key":"29377"} +{"label":"Thomas Just","version":19,"id":"50411","lastModified":"1301902282000","name":"Thomas Just","type":"Person","_key":"29378"} +{"label":"Markus Kissling","version":19,"id":"50412","lastModified":"1301902282000","name":"Markus Kissling","type":"Person","_key":"29379"} +{"label":"Roland Kuchenbuch","version":19,"id":"50413","lastModified":"1301902282000","name":"Roland Kuchenbuch","type":"Person","_key":"29380"} +{"label":"Ute Lubosch","version":27,"id":"3703","lastModified":"1301901328000","name":"Ute Lubosch","type":"Person","_key":"29381"} +{"label":"Andrea Meissner","version":19,"id":"50414","lastModified":"1301902282000","name":"Andrea Meissner","type":"Person","_key":"29382"} +{"label":"Joachim Tomaschewsky","version":19,"id":"48750","lastModified":"1301902282000","name":"Joachim Tomaschewsky","type":"Person","_key":"29383"} +{"label":"Judith Richter","version":19,"id":"49782","lastModified":"1301902282000","name":"Judith Richter","type":"Person","_key":"29384"} +{"label":"Ren\u00e9 W\u00fcnsch","version":19,"id":"50416","lastModified":"1301902282000","name":"Ren\u00e9 W\u00fcnsch","type":"Person","_key":"29385"} +{"label":"The Black Abbot","description":"Several employees on a nobleman's estate show up at a former abbey, reputed to be haunted, to search for a hidden treasure. Howver, a mysterious hooded figure begins killing off those who may have figured out where the treasure is hidden.","id":"6556","runtime":89,"imdbId":"tt0057476","version":71,"lastModified":"1301907278000","studio":"Rialto Film","genre":"Comedy","title":"The Black Abbot","releaseDate":-204940800000,"language":"en","type":"Movie","_key":"29386"} +{"label":"Alice Treff","version":21,"id":"50452","lastModified":"1301902376000","name":"Alice Treff","type":"Person","_key":"29387"} +{"label":"27 Dresses","description":"After serving as a bridesmaid 27 times, a young woman wrestles with the idea of standing by her sister's side as her sibling marries the man she's secretly in love with.","id":"6557","runtime":115,"imdbId":"tt0988595","trailer":"http:\/\/www.youtube.com\/watch?v=t2rf6ekfEFM","homepage":"http:\/\/www.27dressesthemovie.com\/","version":395,"lastModified":"1301901646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4c7df3f37b9aa10d98000035\/27-dresses-mid.jpg","studio":"Fox 2000 Pictures","genre":"Comedy","title":"27 Dresses","releaseDate":1199923200000,"language":"en","tagline":"She's about to find the perfect fit.","type":"Movie","_key":"29388"} +{"label":"Malin \u00c5kerman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4bf9a51f017a3c702a00022c\/malin-akerman-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u00c5kerman was born in Stockholm, Sweden to a model mother, Pia, and an insurance broker father, Magnus. Her family emigrated from Sweden to Canada when she was two years old. After her parents' divorce, her father returned to Sweden, and \u00c5kerman stayed in Canada with her mother. She lived in Niagara-on-the-Lake, Ontario for a short while, attending Parliament Oak Primary School, then Niagara District Secondary School ","version":82,"birthday":"263775600000","id":"50463","birthplace":"Stockholm, Sweden","lastModified":"1302070359000","name":"Malin \u00c5kerman","type":"Person","_key":"29389"} +{"label":"Brian Kerwin","version":35,"id":"50464","lastModified":"1301901099000","name":"Brian Kerwin","type":"Person","_key":"29390"} +{"label":"Michael Ziegfeld","version":26,"id":"50465","lastModified":"1301901111000","name":"Michael Ziegfeld","type":"Person","_key":"29391"} +{"label":"David Castro","version":33,"id":"50466","lastModified":"1302060400000","name":"David Castro","type":"Person","_key":"29392"} +{"label":"Mail To The Chief","description":"No overview found.","id":"6558","runtime":85,"imdbId":"tt0197655","version":98,"lastModified":"1301905938000","studio":"Walt Disney Television","genre":"Comedy","title":"Mail To The Chief","releaseDate":954633600000,"language":"en","type":"Movie","_key":"29393"} +{"label":"Bill Switzer","version":20,"id":"50467","lastModified":"1301902156000","name":"Bill Switzer","type":"Person","_key":"29394"} +{"label":"Ashley Gorrell","version":20,"id":"52082","lastModified":"1301901836000","name":"Ashley Gorrell","type":"Person","_key":"29395"} +{"label":"Martin Doyle","version":20,"id":"52083","lastModified":"1301902156000","name":"Martin Doyle","type":"Person","_key":"29396"} +{"label":"Elisha Cuthbert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/efc\/4bfeb1b9017a3c702d000efc\/elisha-cuthbert-profile.jpg","biography":"First daughter of Kevin and Patricia Cuthbert, after his birth his parents moved to Longueuil, Quebec. Elisha grew up in Greenfield Park, near Montreal, a fact with which he began to master the French language, besides his native English. \n\nHe started very young to the stage in 1989 model-girl several lines of products for young people. His first television appearance dates back to an episode of the television series Are You Afraid of the Dark?, Which earned the call to shoot a part in the film ","version":62,"birthday":"407458800000","id":"25837","birthplace":"Calgary, Alberta, Canada","lastModified":"1301904080000","name":"Elisha Cuthbert","type":"Person","_key":"29397"} +{"label":"Eric Champnella","version":25,"id":"52080","lastModified":"1301901655000","name":"Eric Champnella","type":"Person","_key":"29398"} +{"label":"Walk Hard - The Dewey Cox Story","description":"Singer Dewey Cox overcomes adversity to become a musical legend.","id":"6575","runtime":96,"imdbId":"tt0841046","trailer":"http:\/\/www.youtube.com\/watch?v=432","homepage":"http:\/\/www.walkhard-movie.com\/","version":299,"lastModified":"1302019537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02e\/4d88fc5f5e73d649f600002e\/walk-hard-the-dewey-cox-story-mid.jpg","studio":"Sony Pictures","genre":"Comedy","title":"Walk Hard - The Dewey Cox Story","releaseDate":1198195200000,"language":"en","type":"Movie","_key":"29399"} +{"label":"Jake Kasdan","version":36,"id":"51851","lastModified":"1301901552000","name":"Jake Kasdan","type":"Person","_key":"29400"} +{"label":"Jenna Fischer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4ce0630c7b9aa168b200013f\/jenna-fischer-profile.jpg","version":53,"id":"51856","lastModified":"1301901147000","name":"Jenna Fischer","type":"Person","_key":"29401"} +{"label":"Tim Meadows","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4cdc5ec07b9aa137ff0000b2\/tim-meadows-profile.jpg","version":51,"id":"51857","lastModified":"1301901333000","name":"Tim Meadows","type":"Person","_key":"29402"} +{"label":"Der Tag des Jorun","description":"No overview found.","id":"6578","runtime":75,"version":18,"lastModified":"1301419475000","genre":"Science Fiction","title":"Der Tag des Jorun","releaseDate":879724800000,"language":"en","type":"Movie","_key":"29403"} +{"label":"Markus K\u00f6ller","version":17,"id":"50490","lastModified":"1301902013000","name":"Markus K\u00f6ller","type":"Person","_key":"29404"} +{"label":"Der Butler und die Prinzessin","description":"No overview found.","id":"6580","runtime":90,"imdbId":"tt0874254","version":31,"lastModified":"1301904476000","genre":"Comedy","title":"Der Butler und die Prinzessin","releaseDate":1170115200000,"language":"en","type":"Movie","_key":"29405"} +{"label":"Esther Schweins","version":26,"id":"45820","lastModified":"1301901266000","name":"Esther Schweins","type":"Person","_key":"29406"} +{"label":"Sibylle Tafel","version":20,"id":"50507","lastModified":"1301901961000","name":"Sibylle Tafel","type":"Person","_key":"29407"} +{"label":"Am n\u00e4chsten Morgen kehrte der Minister nicht an seinen Arbeitsplatz zur\u00fcck","description":"No overview found.","id":"6581","runtime":70,"imdbId":"tt0090622","version":38,"lastModified":"1301908591000","studio":"ZDF","genre":"Science Fiction","title":"Am n\u00e4chsten Morgen kehrte der Minister nicht an seinen Arbeitsplatz zur\u00fcck","releaseDate":514598400000,"language":"en","type":"Movie","_key":"29408"} +{"label":"Ric Schachtebeck","version":20,"id":"50511","lastModified":"1301902372000","name":"Ric Schachtebeck","type":"Person","_key":"29409"} +{"label":"Ciliane Dahlen","version":20,"id":"50513","lastModified":"1301902182000","name":"Ciliane Dahlen","type":"Person","_key":"29410"} +{"label":"G\u00fcnter Nolden","version":20,"id":"50514","lastModified":"1301902379000","name":"G\u00fcnter Nolden","type":"Person","_key":"29411"} +{"label":"Monika Funke-Stern","version":22,"id":"50512","lastModified":"1301902343000","name":"Monika Funke-Stern","type":"Person","_key":"29412"} +{"label":"Ein Teufel f\u00fcr Familie Engel","description":"No overview found.","id":"6582","runtime":91,"imdbId":"tt1068293","version":35,"lastModified":"1301908591000","genre":"Comedy","title":"Ein Teufel f\u00fcr Familie Engel","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"29413"} +{"label":"J\u00f6rg Zick","version":20,"id":"50515","lastModified":"1301902372000","name":"J\u00f6rg Zick","type":"Person","_key":"29414"} +{"label":"Die goldene G\u00f6ttin vom Rio Beni","description":"No overview found.","id":"6584","runtime":91,"imdbId":"tt0058149","version":53,"lastModified":"1301904720000","studio":"Atl\u00e1ntida Films","genre":"Adventure","title":"Die goldene G\u00f6ttin vom Rio Beni","releaseDate":-168048000000,"language":"en","type":"Movie","_key":"29415"} +{"label":"Eugenio Mart\u00edn","version":26,"id":"50542","lastModified":"1301986415000","name":"Eugenio Mart\u00edn","type":"Person","_key":"29416"} +{"label":"Franz Eichhorn","version":21,"id":"50546","lastModified":"1301902343000","name":"Franz Eichhorn","type":"Person","_key":"29417"} +{"label":"Ren\u00e9 Deltgen","version":18,"id":"50544","lastModified":"1301902166000","name":"Ren\u00e9 Deltgen","type":"Person","_key":"29418"} +{"label":"Gil Delamare","version":25,"id":"19650","lastModified":"1301901753000","name":"Gil Delamare","type":"Person","_key":"29419"} +{"label":"The Inn on the River","description":"A serial killer named The Shark is terrorizing London by killing his victims with a speargun and then, dressed in a scruba-diver's wetsuit, using the city's sewer tunnels to make his getaway.","id":"6585","runtime":92,"imdbId":"tt0056012","trailer":"http:\/\/www.youtube.com\/watch?v=lnpWHmlQFsA","version":119,"lastModified":"1301905652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d7\/4d8548f27b9aa12ed00020d7\/das-gasthaus-an-der-themse-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"The Inn on the River","releaseDate":-229132800000,"language":"en","type":"Movie","_key":"29420"} +{"label":"Rudolf Fenner","version":20,"id":"50563","lastModified":"1301902281000","name":"Rudolf Fenner","type":"Person","_key":"29421"} +{"label":"Manfred Greve","version":20,"id":"36382","lastModified":"1301901887000","name":"Manfred Greve","type":"Person","_key":"29422"} +{"label":"Gertrud Prey","version":20,"id":"50564","lastModified":"1301901887000","name":"Gertrud Prey","type":"Person","_key":"29423"} +{"label":"Friedrich G. Beckhaus","version":19,"id":"36433","lastModified":"1301901616000","name":"Friedrich G. Beckhaus","type":"Person","_key":"29424"} +{"label":"Frank Straass","version":20,"id":"26442","lastModified":"1301901733000","name":"Frank Straass","type":"Person","_key":"29425"} +{"label":"Werner Van Deeg","version":20,"id":"50565","lastModified":"1301902281000","name":"Werner Van Deeg","type":"Person","_key":"29426"} +{"label":"Joachim Wolff","version":20,"id":"50566","lastModified":"1301901887000","name":"Joachim Wolff","type":"Person","_key":"29427"} +{"label":"The Jayhawkers!","description":"No overview found.","id":"6587","runtime":100,"imdbId":"tt0052941","version":251,"lastModified":"1301904016000","studio":"Paramount Pictures","genre":"Western","title":"The Jayhawkers!","releaseDate":-322358400000,"language":"en","type":"Movie","_key":"29428"} +{"label":"Daniel McCauley","version":19,"id":"50581","lastModified":"1301902101000","name":"Daniel McCauley","type":"Person","_key":"29429"} +{"label":"Melvin Frank","version":36,"id":"50567","lastModified":"1301901642000","name":"Melvin Frank","type":"Person","_key":"29430"} +{"label":"Jeff Chandler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4bd5cb07017a3c657e000077\/jeff-chandler-profile.jpg","version":35,"id":"50570","lastModified":"1301901359000","name":"Jeff Chandler","type":"Person","_key":"29431"} +{"label":"Fess Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17e\/4c518d217b9aa13d4d00017e\/fess-parker-profile.jpg","version":29,"id":"50571","lastModified":"1301901220000","name":"Fess Parker","type":"Person","_key":"29432"} +{"label":"Nicole Maurey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4c3dd61f7b9aa13cd400000d\/nicole-maurey-profile.jpg","version":28,"id":"50572","lastModified":"1301901805000","name":"Nicole Maurey","type":"Person","_key":"29433"} +{"label":"Herbert Rudley","version":23,"id":"50573","lastModified":"1301902131000","name":"Herbert Rudley","type":"Person","_key":"29434"} +{"label":"Shari Lee Bernath","version":20,"id":"50575","lastModified":"1301901997000","name":"Shari Lee Bernath","type":"Person","_key":"29435"} +{"label":"Jimmy Carter","version":23,"id":"50576","lastModified":"1301901641000","name":"Jimmy Carter","type":"Person","_key":"29436"} +{"label":"Der Eiserne Gustav","description":"No overview found.","id":"6588","runtime":102,"imdbId":"tt0051575","version":73,"lastModified":"1301908331000","studio":"Berolina","genre":"Comedy","title":"Der Eiserne Gustav","releaseDate":-349488000000,"language":"en","type":"Movie","_key":"29437"} +{"label":"George Hurdalek","version":31,"id":"37970","lastModified":"1301901666000","name":"George Hurdalek","type":"Person","_key":"29438"} +{"label":"Manfred Grothe","version":19,"id":"50592","lastModified":"1301901887000","name":"Manfred Grothe","type":"Person","_key":"29439"} +{"label":"Lutz Moik","version":18,"id":"50593","lastModified":"1301902214000","name":"Lutz Moik","type":"Person","_key":"29440"} +{"label":"Willi Rose","version":19,"id":"50594","lastModified":"1301901887000","name":"Willi Rose","type":"Person","_key":"29441"} +{"label":"Bruno Fritz","version":19,"id":"50595","lastModified":"1301901887000","name":"Bruno Fritz","type":"Person","_key":"29442"} +{"label":"Georg G\u00fctlich","version":19,"id":"50596","lastModified":"1301901887000","name":"Georg G\u00fctlich","type":"Person","_key":"29443"} +{"label":"Wolf Martini","version":19,"id":"50597","lastModified":"1301901887000","name":"Wolf Martini","type":"Person","_key":"29444"} +{"label":"Franz Nicklisch","version":19,"id":"50598","lastModified":"1301901887000","name":"Franz Nicklisch","type":"Person","_key":"29445"} +{"label":"Andr\u00e9 Saint-Germain","version":18,"id":"50599","lastModified":"1301901980000","name":"Andr\u00e9 Saint-Germain","type":"Person","_key":"29446"} +{"label":"Konrad Wagner","version":19,"id":"50600","lastModified":"1301901887000","name":"Konrad Wagner","type":"Person","_key":"29447"} +{"label":"Arthur Wiesner","version":19,"id":"50601","lastModified":"1301901887000","name":"Arthur Wiesner","type":"Person","_key":"29448"} +{"label":"Kunibert Gensichen","version":19,"id":"50602","lastModified":"1301901887000","name":"Kunibert Gensichen","type":"Person","_key":"29449"} +{"label":"Helga Allg\u00e4uer","version":19,"id":"50603","lastModified":"1301901887000","name":"Helga Allg\u00e4uer","type":"Person","_key":"29450"} +{"label":"Elfie Dugal","version":19,"id":"50604","lastModified":"1301902281000","name":"Elfie Dugal","type":"Person","_key":"29451"} +{"label":"Heinz Ohlsen","version":19,"id":"50605","lastModified":"1301901887000","name":"Heinz Ohlsen","type":"Person","_key":"29452"} +{"label":"Heinz Kammer","version":20,"id":"50606","lastModified":"1301902281000","name":"Heinz Kammer","type":"Person","_key":"29453"} +{"label":"Egon Vogel","version":24,"id":"50607","lastModified":"1301902163000","name":"Egon Vogel","type":"Person","_key":"29454"} +{"label":"Underdog","description":"A lab accident gives a hound named Shoeshine some serious superpowers -- a secret that the dog eventually shares with the young boy who becomes his owner and friend","id":"6589","runtime":84,"imdbId":"tt0467110","trailer":"http:\/\/www.youtube.com\/watch?v=414","homepage":"http:\/\/disney.go.com\/disneyvideos\/liveaction\/underdog\/","version":178,"lastModified":"1301903389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c92\/4bc91e0a017a3c57fe00bc92\/underdog-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Underdog","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"29455"} +{"label":"Alex Neuberger","version":24,"id":"50586","lastModified":"1301901681000","name":"Alex Neuberger","type":"Person","_key":"29456"} +{"label":"Larry Vigus","version":21,"id":"50587","lastModified":"1301901461000","name":"Larry Vigus","type":"Person","_key":"29457"} +{"label":"Bates Wilder","version":21,"id":"50588","lastModified":"1301901457000","name":"Bates Wilder","type":"Person","_key":"29458"} +{"label":"Frank Ridley","version":20,"id":"50589","lastModified":"1301901396000","name":"Frank Ridley","type":"Person","_key":"29459"} +{"label":"Alexander 'Alex' Garde","version":19,"id":"50590","lastModified":"1301901505000","name":"Alexander 'Alex' Garde","type":"Person","_key":"29460"} +{"label":"Die Halbstarken","description":"No overview found.","id":"6590","runtime":97,"imdbId":"tt0049288","version":59,"lastModified":"1301906078000","studio":"Interwest","genre":"Drama","title":"Die Halbstarken","releaseDate":-418521600000,"language":"en","type":"Movie","_key":"29461"} +{"label":"Georg Tressler","version":21,"id":"26611","lastModified":"1301901887000","name":"Georg Tressler","type":"Person","_key":"29462"} +{"label":"Viktoria von Ballasko","version":19,"id":"50615","lastModified":"1301902101000","name":"Viktoria von Ballasko","type":"Person","_key":"29463"} +{"label":"Mario Ahrens","version":19,"id":"36265","lastModified":"1301901887000","name":"Mario Ahrens","type":"Person","_key":"29464"} +{"label":"Manfred Hoffmann","version":19,"id":"50616","lastModified":"1301902281000","name":"Manfred Hoffmann","type":"Person","_key":"29465"} +{"label":"Hans-Joachim Ketzlin","version":19,"id":"50617","lastModified":"1301902281000","name":"Hans-Joachim Ketzlin","type":"Person","_key":"29466"} +{"label":"Kalle Gaffkus","version":19,"id":"50618","lastModified":"1301902281000","name":"Kalle Gaffkus","type":"Person","_key":"29467"} +{"label":"Wolfgang Heyer","version":19,"id":"50619","lastModified":"1301902281000","name":"Wolfgang Heyer","type":"Person","_key":"29468"} +{"label":"Ruth Mueller","version":19,"id":"50620","lastModified":"1301902281000","name":"Ruth Mueller","type":"Person","_key":"29469"} +{"label":"What Have You Done to Solange?","description":"No overview found.","id":"6591","runtime":103,"imdbId":"tt0068416","trailer":"http:\/\/www.youtube.com\/watch?v=pqD52rWhSRw","version":125,"lastModified":"1302019081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4c2af6cd7b9aa15e9900008d\/cosa-avete-fatto-a-solange-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"What Have You Done to Solange?","releaseDate":68947200000,"language":"en","type":"Movie","_key":"29470"} +{"label":"Massimo Dallamano","version":38,"id":"14268","lastModified":"1301901463000","name":"Massimo Dallamano","type":"Person","_key":"29471"} +{"label":"Cristina Galb\u00f3","version":19,"id":"50625","lastModified":"1301902351000","name":"Cristina Galb\u00f3","type":"Person","_key":"29472"} +{"label":"Claudia Butenuth","version":24,"id":"50626","lastModified":"1301902018000","name":"Claudia Butenuth","type":"Person","_key":"29473"} +{"label":"Pilar Castel","version":21,"id":"50627","lastModified":"1301902389000","name":"Pilar Castel","type":"Person","_key":"29474"} +{"label":"Giovanna Di Bernardo","version":19,"id":"50628","lastModified":"1301902166000","name":"Giovanna Di Bernardo","type":"Person","_key":"29475"} +{"label":"Im singenden R\u00f6ssel am K\u00f6nigssee","description":"No overview found.","id":"6592","runtime":85,"imdbId":"tt0057174","version":50,"lastModified":"1301907416000","studio":"Wiener Stadthalle-Station Betriebs-und Produktionsgesellschaft","genre":"Comedy","title":"Im singenden R\u00f6ssel am K\u00f6nigssee","releaseDate":-220924800000,"language":"en","type":"Movie","_key":"29476"} +{"label":"Trude Herr","version":21,"id":"50644","lastModified":"1301902156000","name":"Trude Herr","type":"Person","_key":"29477"} +{"label":"Peter Hinnen","version":20,"id":"50645","lastModified":"1301901817000","name":"Peter Hinnen","type":"Person","_key":"29478"} +{"label":"Paul L\u00f6winger","version":20,"id":"50646","lastModified":"1301902026000","name":"Paul L\u00f6winger","type":"Person","_key":"29479"} +{"label":"Manuela","version":18,"id":"50647","lastModified":"1301901961000","name":"Manuela","type":"Person","_key":"29480"} +{"label":"Ingeborg Sch\u00f6ner","version":20,"id":"26516","lastModified":"1301902183000","name":"Ingeborg Sch\u00f6ner","type":"Person","_key":"29481"} +{"label":"Adeline Wagner","version":20,"id":"50648","lastModified":"1301901998000","name":"Adeline Wagner","type":"Person","_key":"29482"} +{"label":"Godzilla vs. Mechagodzilla II","description":"No overview found.","id":"6593","runtime":108,"imdbId":"tt0107027","version":186,"lastModified":"1301904391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9b\/4bc91e0a017a3c57fe00bc9b\/gojira-vs-mekagojira-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Godzilla vs. Mechagodzilla II","releaseDate":755568000000,"language":"en","type":"Movie","_key":"29483"} +{"label":"Takao Okawara","version":23,"id":"50651","lastModified":"1301902202000","name":"Takao Okawara","type":"Person","_key":"29484"} +{"label":"Masahiro Takashima","version":22,"id":"50653","lastModified":"1301902186000","name":"Masahiro Takashima","type":"Person","_key":"29485"} +{"label":"Ryoko Sano","version":20,"id":"50654","lastModified":"1301902002000","name":"Ryoko Sano","type":"Person","_key":"29486"} +{"label":"Megumi Odaka","version":23,"id":"50655","lastModified":"1301902010000","name":"Megumi Odaka","type":"Person","_key":"29487"} +{"label":"Y\u00fbsuke Kawazu","version":18,"id":"50656","lastModified":"1301902194000","name":"Y\u00fbsuke Kawazu","type":"Person","_key":"29488"} +{"label":"Akira Nakao","version":21,"id":"50658","lastModified":"1301902387000","name":"Akira Nakao","type":"Person","_key":"29489"} +{"label":"K\u00f4ichi Ueda","version":19,"id":"50659","lastModified":"1301902382000","name":"K\u00f4ichi Ueda","type":"Person","_key":"29490"} +{"label":"Leo Meneghetti","version":20,"id":"50660","lastModified":"1301902375000","name":"Leo Meneghetti","type":"Person","_key":"29491"} +{"label":"Dancing with Danger","description":"No overview found.","id":"6603","runtime":100,"imdbId":"tt0109530","version":72,"lastModified":"1301906174000","studio":"Wilshire Court Productions","genre":"Thriller","title":"Dancing with Danger","releaseDate":766972800000,"language":"en","type":"Movie","_key":"29492"} +{"label":"Ed Marinaro","version":29,"id":"50707","lastModified":"1301901566000","name":"Ed Marinaro","type":"Person","_key":"29493"} +{"label":"Stanley Kamel","version":21,"id":"50708","lastModified":"1301902370000","name":"Stanley Kamel","type":"Person","_key":"29494"} +{"label":"Ellen Dolan","version":20,"id":"50709","lastModified":"1301902373000","name":"Ellen Dolan","type":"Person","_key":"29495"} +{"label":"Katherine Olsen","version":20,"id":"50710","lastModified":"1301902388000","name":"Katherine Olsen","type":"Person","_key":"29496"} +{"label":"Wally Dalton","version":20,"id":"50711","lastModified":"1301902343000","name":"Wally Dalton","type":"Person","_key":"29497"} +{"label":"Evan MacKenzie","version":18,"id":"50712","lastModified":"1301902382000","name":"Evan MacKenzie","type":"Person","_key":"29498"} +{"label":"Marianne Doherty","version":20,"id":"50713","lastModified":"1301902343000","name":"Marianne Doherty","type":"Person","_key":"29499"} +{"label":"Lynn Tulaine","version":20,"id":"50714","lastModified":"1301902343000","name":"Lynn Tulaine","type":"Person","_key":"29500"} +{"label":"Rotlicht!","description":"No overview found.","id":"6608","runtime":90,"imdbId":"tt0091872","version":47,"lastModified":"1301419470000","studio":"Cin\u00e9film AG","genre":"Comedy","title":"Rotlicht!","releaseDate":504921600000,"language":"en","type":"Movie","_key":"29501"} +{"label":"Urs Odermatt","version":21,"id":"50729","lastModified":"1301901992000","name":"Urs Odermatt","type":"Person","_key":"29502"} +{"label":"Anouschka Renzi","version":20,"id":"46170","lastModified":"1301902182000","name":"Anouschka Renzi","type":"Person","_key":"29503"} +{"label":"Michaela Galli","version":20,"id":"50731","lastModified":"1301901833000","name":"Michaela Galli","type":"Person","_key":"29504"} +{"label":"Yvonne Kupper","version":18,"id":"50732","lastModified":"1301901828000","name":"Yvonne Kupper","type":"Person","_key":"29505"} +{"label":"Thomas Hostettler","version":20,"id":"50733","lastModified":"1301902181000","name":"Thomas Hostettler","type":"Person","_key":"29506"} +{"label":"L\u00e9on Huber","version":18,"id":"50734","lastModified":"1301902194000","name":"L\u00e9on Huber","type":"Person","_key":"29507"} +{"label":"Ariane Pestalozzi","version":20,"id":"50735","lastModified":"1301902196000","name":"Ariane Pestalozzi","type":"Person","_key":"29508"} +{"label":"Keoma","description":"No overview found.","id":"6609","runtime":105,"imdbId":"tt0074740","version":97,"lastModified":"1301907127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4c93e46c7b9aa10d5b000026\/keoma-mid.jpg","studio":"Uranos Cinematografica","genre":"Western","title":"Keoma","releaseDate":223171200000,"language":"en","type":"Movie","_key":"29509"} +{"label":"Enzo G. Castellari","version":35,"id":"50739","lastModified":"1301901507000","name":"Enzo G. Castellari","type":"Person","_key":"29510"} +{"label":"Olga Karlatos","version":22,"id":"50744","lastModified":"1301901788000","name":"Olga Karlatos","type":"Person","_key":"29511"} +{"label":"Giovanni Cianfriglia","version":20,"id":"50745","lastModified":"1301902343000","name":"Giovanni Cianfriglia","type":"Person","_key":"29512"} +{"label":"Gabriella Giacobbe","version":20,"id":"50746","lastModified":"1301902343000","name":"Gabriella Giacobbe","type":"Person","_key":"29513"} +{"label":"Antonio Marsina","version":21,"id":"50747","lastModified":"1301902379000","name":"Antonio Marsina","type":"Person","_key":"29514"} +{"label":"Joshua Sinclair","version":30,"id":"3774","lastModified":"1301901324000","name":"Joshua Sinclair","type":"Person","_key":"29515"} +{"label":"Leonardo Scavino","version":20,"id":"50748","lastModified":"1301902370000","name":"Leonardo Scavino","type":"Person","_key":"29516"} +{"label":"The Wonderful Country","description":"No overview found.","id":"6610","runtime":98,"imdbId":"tt0053453","version":75,"lastModified":"1301903586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca4\/4bc91e0c017a3c57fe00bca4\/the-wonderful-country-mid.jpg","studio":"D.R.M. Productions","genre":"Western","title":"The Wonderful Country","releaseDate":-321840000000,"language":"en","type":"Movie","_key":"29517"} +{"label":"Robert Parrish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bc\/4c28ab3c7b9aa144700003bc\/robert-parrish-profile.jpg","biography":"Robert R. Parrish (born 4 January 1916, Columbus, Georgia \u2013 4 December 1995, Southampton, New York) was an American actor, film editor, film director, and writer. He received an Academy Award for Film Editing for the 1947 film, Body and Soul.\n\nParrish was the son of factory cashier Gordon R. Parrish and Laura R. Parrish. In the mid-1920s, the family moved from Georgia to Los Angeles and Parrish and his sisters Beverly and Helen began obtaining work as actors soon thereafter. Parrish made his fil","version":30,"birthday":"-1703898000000","id":"8514","birthplace":"Columbus, Georgia","lastModified":"1301901111000","name":"Robert Parrish","type":"Person","_key":"29518"} +{"label":"Julie London","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4bd1eecc017a3c63f300031e\/julie-london-profile.jpg","version":32,"id":"50760","lastModified":"1301901409000","name":"Julie London","type":"Person","_key":"29519"} +{"label":"Leroy 'Satchel' Paige","version":18,"id":"50761","lastModified":"1301902166000","name":"Leroy 'Satchel' Paige","type":"Person","_key":"29520"} +{"label":"Anthony Caruso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/260\/4c51b48c7b9aa13d4c000260\/anthony-caruso-profile.jpg","version":29,"id":"16004","lastModified":"1301901442000","name":"Anthony Caruso","type":"Person","_key":"29521"} +{"label":"Mike Kellin","version":24,"id":"50762","lastModified":"1301901644000","name":"Mike Kellin","type":"Person","_key":"29522"} +{"label":"V\u00edctor Manuel Mendoza","version":19,"id":"50763","lastModified":"1301902351000","name":"V\u00edctor Manuel Mendoza","type":"Person","_key":"29523"} +{"label":"John Banner","version":21,"id":"50764","lastModified":"1301901733000","name":"John Banner","type":"Person","_key":"29524"} +{"label":"Attack of the Normans","description":"No overview found.","id":"6614","runtime":79,"imdbId":"tt0056288","version":87,"lastModified":"1301906628000","studio":"Galatea Film","genre":"Adventure","title":"Attack of the Normans","releaseDate":-227318400000,"language":"en","type":"Movie","_key":"29525"} +{"label":"Giuseppe Vari","version":20,"id":"50778","lastModified":"1301902281000","name":"Giuseppe Vari","type":"Person","_key":"29526"} +{"label":"Philippe Hersent","version":23,"id":"50780","lastModified":"1301902367000","name":"Philippe Hersent","type":"Person","_key":"29527"} +{"label":"Franca Bettoia","version":24,"id":"50781","lastModified":"1301901538000","name":"Franca Bettoia","type":"Person","_key":"29528"} +{"label":"Raf Baldassarre","version":30,"id":"50782","lastModified":"1301901810000","name":"Raf Baldassarre","type":"Person","_key":"29529"} +{"label":"Livia Contardi","version":20,"id":"50783","lastModified":"1301902281000","name":"Livia Contardi","type":"Person","_key":"29530"} +{"label":"Tony Di Mitri","version":20,"id":"50784","lastModified":"1301902281000","name":"Tony Di Mitri","type":"Person","_key":"29531"} +{"label":"Gilberto Galimberti","version":21,"id":"50785","lastModified":"1301902281000","name":"Gilberto Galimberti","type":"Person","_key":"29532"} +{"label":"Gianni Solaro","version":20,"id":"50786","lastModified":"1301902281000","name":"Gianni Solaro","type":"Person","_key":"29533"} +{"label":"Rinaldo Zamperla","version":20,"id":"50787","lastModified":"1301902281000","name":"Rinaldo Zamperla","type":"Person","_key":"29534"} +{"label":"Lars and the Real Girl","description":"Sometimes you find love where you'd least expect it. Just ask Lars (Academy Award Nominee* Ryan Gosling), a sweet but quirky guy who thinks he's found the girl of his dreams in a life-sized doll named Bianca. Lars is completely content with his artificial girlfriend, but when he develops feelings for Margo, an attractive co-worker, Lars finds himself lost in a hilariously unique love triangle, hoping to somehow discover the real meaning of true love. You'll be swept off your feet by Lars And ","id":"6615","runtime":106,"imdbId":"tt0805564","trailer":"http:\/\/www.youtube.com\/watch?v=416","homepage":"http:\/\/www.larsandtherealgirl-themovie.com\/","version":230,"lastModified":"1301907555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e16\/4d65f2b35e73d66a5c000e16\/lars-and-the-real-girl-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Lars and the Real Girl","releaseDate":1189382400000,"language":"en","tagline":"The search for true love begins outside the box.","type":"Movie","_key":"29535"} +{"label":"Craig Gillespie","version":28,"id":"50767","lastModified":"1301901995000","name":"Craig Gillespie","type":"Person","_key":"29536"} +{"label":"Lauren Ash","version":23,"id":"50773","lastModified":"1301901887000","name":"Lauren Ash","type":"Person","_key":"29537"} +{"label":"R.D. Reid","version":23,"id":"44183","lastModified":"1301901538000","name":"R.D. Reid","type":"Person","_key":"29538"} +{"label":"Nancy Beatty","version":29,"id":"50774","lastModified":"1301902032000","name":"Nancy Beatty","type":"Person","_key":"29539"} +{"label":"Doug Lennox","version":23,"id":"50775","lastModified":"1301901538000","name":"Doug Lennox","type":"Person","_key":"29540"} +{"label":"Joe Bostick","version":25,"id":"50776","lastModified":"1301901669000","name":"Joe Bostick","type":"Person","_key":"29541"} +{"label":"Liz Gordon","version":23,"id":"50777","lastModified":"1301901616000","name":"Liz Gordon","type":"Person","_key":"29542"} +{"label":"Il Giustiziere dei mari","description":"No overview found.","id":"6618","runtime":90,"imdbId":"tt0054932","version":65,"lastModified":"1301905645000","studio":"Documento Film","genre":"Adventure","title":"Il Giustiziere dei mari","releaseDate":-283996800000,"language":"en","type":"Movie","_key":"29543"} +{"label":"Marisa Belli","version":21,"id":"50827","lastModified":"1301901554000","name":"Marisa Belli","type":"Person","_key":"29544"} +{"label":"Carlo Hinterman","version":19,"id":"50829","lastModified":"1301902101000","name":"Carlo Hinterman","type":"Person","_key":"29545"} +{"label":"Lilia Nguyen","version":19,"id":"50830","lastModified":"1301902101000","name":"Lilia Nguyen","type":"Person","_key":"29546"} +{"label":"Italo Sain","version":17,"id":"50831","lastModified":"1301902281000","name":"Italo Sain","type":"Person","_key":"29547"} +{"label":"Romano Giomini","version":19,"id":"50832","lastModified":"1301902281000","name":"Romano Giomini","type":"Person","_key":"29548"} +{"label":"Death in Venice","description":"In this adaptation of the Thomas Mann novel, avant-garde composer Gustave Aschenbach (loosely based on Gustav Mahler) travels to a Venetian seaside resort in search of repose after a period of artistic and personal stress","id":"6619","runtime":130,"imdbId":"tt0067445","version":210,"lastModified":"1301908038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cba\/4bc91e10017a3c57fe00bcba\/morte-a-venezia-mid.jpg","studio":"Alfa Film","genre":"Drama","title":"Death in Venice","releaseDate":36633600000,"language":"en","type":"Movie","_key":"29549"} +{"label":"Bj\u00f6rn Andr\u00e9sen","version":20,"id":"50935","lastModified":"1301902351000","name":"Bj\u00f6rn Andr\u00e9sen","type":"Person","_key":"29550"} +{"label":"Sabrina","description":"Linus and David Larrabee are the two sons of a very wealthy family. Linus is all work -- busily running the family corporate empire, he has no time for a wife and family. David is all play -- technically he is employed by the family business, but never shows up for work, spends all his time entertaining, and has been married and divorced three times. Meanwhile, Sabrina Fairchild is the young, shy, and awkward daughter of the household chauffeur, who has been infatuated with David all her life, b","id":"6620","runtime":113,"imdbId":"tt0047437","trailer":"http:\/\/www.youtube.com\/watch?v=cpPQh5DM9Vk","version":216,"lastModified":"1301902639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc7\/4bc91e11017a3c57fe00bcc7\/sabrina-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Sabrina","releaseDate":-483235200000,"language":"en","tagline":"...the chauffeur's daughter who learned her stuff in Paris","type":"Movie","_key":"29551"} +{"label":"Walter Hampden","version":25,"id":"50833","lastModified":"1301901712000","name":"Walter Hampden","type":"Person","_key":"29552"} +{"label":"Joan Vohs","version":28,"id":"50834","lastModified":"1301901689000","name":"Joan Vohs","type":"Person","_key":"29553"} +{"label":"Marcel Hillaire","version":29,"id":"50835","lastModified":"1301901762000","name":"Marcel Hillaire","type":"Person","_key":"29554"} +{"label":"Francis X. Bushman","version":26,"id":"50837","lastModified":"1301901762000","name":"Francis X. Bushman","type":"Person","_key":"29555"} +{"label":"Nella Walker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ae\/4bf705e1017a3c772c0002ae\/nella-walker-profile.jpg","version":30,"id":"50836","lastModified":"1301901346000","name":"Nella Walker","type":"Person","_key":"29556"} +{"label":"Letztes Kapitel","description":"No overview found.","id":"6621","runtime":107,"imdbId":"tt0439672","version":44,"lastModified":"1301906078000","studio":"CineCentrum Deutsche Gesellschaft f\u00fcr Film- und Fernsehproduktion mbH","genre":"Crime","title":"Letztes Kapitel","releaseDate":1115424000000,"language":"en","type":"Movie","_key":"29557"} +{"label":"Markus Rosenm\u00fcller","version":21,"id":"50838","lastModified":"1301902281000","name":"Markus Rosenm\u00fcller","type":"Person","_key":"29558"} +{"label":"Nadja Auermann","version":19,"id":"50841","lastModified":"1301902281000","name":"Nadja Auermann","type":"Person","_key":"29559"} +{"label":"Hans Klima","version":19,"id":"50842","lastModified":"1301902281000","name":"Hans Klima","type":"Person","_key":"29560"} +{"label":"Nicole Nagel","version":19,"id":"50843","lastModified":"1301902281000","name":"Nicole Nagel","type":"Person","_key":"29561"} +{"label":"Peggy Lukac","version":20,"id":"50844","lastModified":"1301901772000","name":"Peggy Lukac","type":"Person","_key":"29562"} +{"label":"Andreas Wenzel","version":19,"id":"50845","lastModified":"1301902281000","name":"Andreas Wenzel","type":"Person","_key":"29563"} +{"label":"The Peacemaker","description":"When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.","id":"6623","runtime":124,"imdbId":"tt0119874","trailer":"http:\/\/www.youtube.com\/watch?v=0b4SuEj_Gb0","version":189,"lastModified":"1301903738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd0\/4bc91e11017a3c57fe00bcd0\/the-peacemaker-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"The Peacemaker","releaseDate":875232000000,"language":"en","type":"Movie","_key":"29564"} +{"label":"Mimi Leder","version":38,"id":"51984","lastModified":"1301901361000","name":"Mimi Leder","type":"Person","_key":"29565"} +{"label":"Alex Nikolic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/376\/4ce2885f7b9aa168b4000376\/alex-nikolic-profile.jpg","version":33,"id":"80510","lastModified":"1301901399000","name":"Alex Nikolic","type":"Person","_key":"29566"} +{"label":"Mord am Meer","description":"No overview found.","id":"6624","runtime":90,"imdbId":"tt0451129","version":49,"lastModified":"1301906628000","studio":"Network Movie","genre":"Crime","title":"Mord am Meer","releaseDate":1110758400000,"language":"en","type":"Movie","_key":"29567"} +{"label":"Manfred Zapatka","version":20,"id":"18051","lastModified":"1301901733000","name":"Manfred Zapatka","type":"Person","_key":"29568"} +{"label":"Thomas Sarbacher","version":26,"id":"38609","lastModified":"1301901616000","name":"Thomas Sarbacher","type":"Person","_key":"29569"} +{"label":"Leonhard Carow","version":20,"id":"49768","lastModified":"1301902194000","name":"Leonhard Carow","type":"Person","_key":"29570"} +{"label":"J\u00fcrgen Stahnke","version":19,"id":"50854","lastModified":"1301901887000","name":"J\u00fcrgen Stahnke","type":"Person","_key":"29571"} +{"label":"Gegenschuss","description":"No overview found.","id":"6628","runtime":120,"imdbId":"tt1158864","homepage":"http:\/\/gegenschuss.kinowelt.de\/kurzinhalt.php","version":84,"lastModified":"1301908331000","studio":"Kinowelt Filmproduktion","genre":"Documentary","title":"Gegenschuss","releaseDate":1202688000000,"language":"en","type":"Movie","_key":"29572"} +{"label":"Dominik Wessely","version":22,"id":"50862","lastModified":"1301902145000","name":"Dominik Wessely","type":"Person","_key":"29573"} +{"label":"Dominik Wessely","version":21,"id":"50863","lastModified":"1301902101000","name":"Dominik Wessely","type":"Person","_key":"29574"} +{"label":"Rudolf Augstein","version":19,"id":"50868","lastModified":"1301901887000","name":"Rudolf Augstein","type":"Person","_key":"29575"} +{"label":"Uwe Brandner","version":20,"id":"50869","lastModified":"1301904130000","name":"Uwe Brandner","type":"Person","_key":"29576"} +{"label":"Michael Fengler","version":30,"id":"9935","lastModified":"1301901564000","name":"Michael Fengler","type":"Person","_key":"29577"} +{"label":"Peter Handke","version":28,"id":"2305","lastModified":"1299492724000","name":"Peter Handke","type":"Person","_key":"29578"} +{"label":"Alexander Kluge","version":26,"id":"50870","lastModified":"1301902281000","name":"Alexander Kluge","type":"Person","_key":"29579"} +{"label":"Peter Lilienthal","version":25,"id":"26969","lastModified":"1301902030000","name":"Peter Lilienthal","type":"Person","_key":"29580"} +{"label":"Tom Luddy","version":26,"id":"50871","lastModified":"1301904130000","name":"Tom Luddy","type":"Person","_key":"29581"} +{"label":"Margaret M\u00e9n\u00e9goz","version":38,"id":"6100","lastModified":"1301901451000","name":"Margaret M\u00e9n\u00e9goz","type":"Person","_key":"29582"} +{"label":"Lynda Myles","version":25,"id":"50872","lastModified":"1301901838000","name":"Lynda Myles","type":"Person","_key":"29583"} +{"label":"Hans Noever","version":20,"id":"50873","lastModified":"1301902370000","name":"Hans Noever","type":"Person","_key":"29584"} +{"label":"Thomas Schamoni","version":20,"id":"50874","lastModified":"1301902134000","name":"Thomas Schamoni","type":"Person","_key":"29585"} +{"label":"Peter Sickert","version":20,"id":"50875","lastModified":"1301902370000","name":"Peter Sickert","type":"Person","_key":"29586"} +{"label":"Dan Talbot","version":19,"id":"50876","lastModified":"1301902281000","name":"Dan Talbot","type":"Person","_key":"29587"} +{"label":"Luggi Waldleitner","version":32,"id":"4527","lastModified":"1301901287000","name":"Luggi Waldleitner","type":"Person","_key":"29588"} +{"label":"Veith von F\u00fcrstenberg","version":21,"id":"22607","lastModified":"1301902119000","name":"Veith von F\u00fcrstenberg","type":"Person","_key":"29589"} +{"label":"Sohn ohne Heimat","description":"No overview found.","id":"6630","runtime":90,"imdbId":"tt0048635","version":49,"lastModified":"1301302610000","genre":"Drama","title":"Sohn ohne Heimat","releaseDate":-473385600000,"language":"en","type":"Movie","_key":"29590"} +{"label":"Elise Aulinger","version":20,"id":"50885","lastModified":"1301902173000","name":"Elise Aulinger","type":"Person","_key":"29591"} +{"label":"Paul B\u00f6siger","version":21,"id":"50886","lastModified":"1301904136000","name":"Paul B\u00f6siger","type":"Person","_key":"29592"} +{"label":"Paul Esser","version":31,"id":"26528","lastModified":"1301901801000","name":"Paul Esser","type":"Person","_key":"29593"} +{"label":"Wolfgang Gruner","version":21,"id":"50887","lastModified":"1301902384000","name":"Wolfgang Gruner","type":"Person","_key":"29594"} +{"label":"Josefin Kipper","version":22,"id":"50888","lastModified":"1301902384000","name":"Josefin Kipper","type":"Person","_key":"29595"} +{"label":"Gunnar M\u00f6ller","version":26,"id":"26419","lastModified":"1301901979000","name":"Gunnar M\u00f6ller","type":"Person","_key":"29596"} +{"label":"Eva Probst","version":20,"id":"50889","lastModified":"1301902364000","name":"Eva Probst","type":"Person","_key":"29597"} +{"label":"Die blonde Christl","description":"No overview found.","id":"6632","runtime":90,"imdbId":"tt0181982","version":47,"lastModified":"1301908591000","genre":"Drama","title":"Die blonde Christl","releaseDate":-1164153600000,"language":"en","type":"Movie","_key":"29598"} +{"label":"Franz Seitz","version":23,"id":"10250","lastModified":"1301901960000","name":"Franz Seitz","type":"Person","_key":"29599"} +{"label":"Karin Hardt","version":20,"id":"50892","lastModified":"1301901817000","name":"Karin Hardt","type":"Person","_key":"29600"} +{"label":"Rolf von Goth","version":20,"id":"50893","lastModified":"1301901815000","name":"Rolf von Goth","type":"Person","_key":"29601"} +{"label":"Gertrud de Lalsky","version":20,"id":"50894","lastModified":"1301902385000","name":"Gertrud de Lalsky","type":"Person","_key":"29602"} +{"label":"Vera Complojer","version":21,"id":"48253","lastModified":"1301902372000","name":"Vera Complojer","type":"Person","_key":"29603"} +{"label":"Emil Matousek","version":20,"id":"50895","lastModified":"1301902343000","name":"Emil Matousek","type":"Person","_key":"29604"} +{"label":"Rosa Kirchner-Lang","version":20,"id":"50896","lastModified":"1301902343000","name":"Rosa Kirchner-Lang","type":"Person","_key":"29605"} +{"label":"Der k\u00fchne Schwimmer","description":"No overview found.","id":"6633","runtime":89,"imdbId":"tt0050618","version":55,"lastModified":"1301907416000","studio":"Roxy Film","genre":"Comedy","title":"Der k\u00fchne Schwimmer","releaseDate":-387676800000,"language":"en","type":"Movie","_key":"29606"} +{"label":"Karl Anton","version":21,"id":"50899","lastModified":"1301901788000","name":"Karl Anton","type":"Person","_key":"29607"} +{"label":"Susanne Cramer","version":23,"id":"50901","lastModified":"1301902155000","name":"Susanne Cramer","type":"Person","_key":"29608"} +{"label":"Ursula Herwig","version":20,"id":"50902","lastModified":"1301902182000","name":"Ursula Herwig","type":"Person","_key":"29609"} +{"label":"Hanita Hallan","version":21,"id":"50903","lastModified":"1301902183000","name":"Hanita Hallan","type":"Person","_key":"29610"} +{"label":"Hilde Berndt","version":20,"id":"50904","lastModified":"1301902156000","name":"Hilde Berndt","type":"Person","_key":"29611"} +{"label":"Franz Fr\u00f6hlich","version":22,"id":"50905","lastModified":"1301902343000","name":"Franz Fr\u00f6hlich","type":"Person","_key":"29612"} +{"label":"Elsie Attenhofer","version":22,"id":"50906","lastModified":"1301902182000","name":"Elsie Attenhofer","type":"Person","_key":"29613"} +{"label":"Samira Soliaman","version":20,"id":"50907","lastModified":"1301902369000","name":"Samira Soliaman","type":"Person","_key":"29614"} +{"label":"Georg Bl\u00e4del","version":18,"id":"50908","lastModified":"1301902155000","name":"Georg Bl\u00e4del","type":"Person","_key":"29615"} +{"label":"Stan Oliver","version":20,"id":"50909","lastModified":"1301902343000","name":"Stan Oliver","type":"Person","_key":"29616"} +{"label":"Der Etappenhase","description":"No overview found.","id":"6634","runtime":80,"imdbId":"tt0233667","version":48,"lastModified":"1301904237000","studio":"Astra-Film","genre":"Comedy","title":"Der Etappenhase","releaseDate":-1034985600000,"language":"en","type":"Movie","_key":"29617"} +{"label":"Leny Marenbach","version":19,"id":"50913","lastModified":"1301902101000","name":"Leny Marenbach","type":"Person","_key":"29618"} +{"label":"Charlott Daudert","version":19,"id":"50914","lastModified":"1301902101000","name":"Charlott Daudert","type":"Person","_key":"29619"} +{"label":"Aribert Mog","version":19,"id":"50915","lastModified":"1301902101000","name":"Aribert Mog","type":"Person","_key":"29620"} +{"label":"Hermann Erhardt","version":21,"id":"50916","lastModified":"1301902332000","name":"Hermann Erhardt","type":"Person","_key":"29621"} +{"label":"Alfred Maack","version":20,"id":"50917","lastModified":"1301902281000","name":"Alfred Maack","type":"Person","_key":"29622"} +{"label":"Adolf Fischer","version":18,"id":"11639","lastModified":"1301901977000","name":"Adolf Fischer","type":"Person","_key":"29623"} +{"label":"Arthur Schr\u00f6der","version":19,"id":"50918","lastModified":"1301901887000","name":"Arthur Schr\u00f6der","type":"Person","_key":"29624"} +{"label":"Adolf Wagner","version":19,"id":"50919","lastModified":"1301901887000","name":"Adolf Wagner","type":"Person","_key":"29625"} +{"label":"Zwei Bayern im Harem","description":"No overview found.","id":"6635","runtime":82,"imdbId":"tt0140711","version":45,"lastModified":"1301906174000","studio":"Regina Films","genre":"Comedy","title":"Zwei Bayern im Harem","releaseDate":-387072000000,"language":"en","type":"Movie","_key":"29626"} +{"label":"Arnim Dahl","version":20,"id":"50938","lastModified":"1301902373000","name":"Arnim Dahl","type":"Person","_key":"29627"} +{"label":"Helga Franck","version":18,"id":"50939","birthplace":"L\u00fcbeck, Germany","lastModified":"1301902156000","name":"Helga Franck","type":"Person","_key":"29628"} +{"label":"Albert Hehn","version":22,"id":"50941","lastModified":"1301902375000","name":"Albert Hehn","type":"Person","_key":"29629"} +{"label":"Bally Prell","version":20,"id":"50943","lastModified":"1301902343000","name":"Bally Prell","type":"Person","_key":"29630"} +{"label":"Johannes Riemann","version":20,"id":"50944","lastModified":"1301902343000","name":"Johannes Riemann","type":"Person","_key":"29631"} +{"label":"Toxy","version":20,"id":"50945","lastModified":"1301902343000","name":"Toxy","type":"Person","_key":"29632"} +{"label":"El Asaltante","description":"A man visits a school to enroll his son, but then he pulls out a gun and robs the school from their money. The movie follows the man and is shot with an unsteady handycam.","id":"6636","runtime":67,"imdbId":"tt1006823","version":122,"lastModified":"1302018102000","genre":"Drama","title":"El Asaltante","releaseDate":1175385600000,"language":"en","type":"Movie","_key":"29633"} +{"label":"Pablo Fendrik","version":21,"id":"50922","lastModified":"1301902343000","name":"Pablo Fendrik","type":"Person","_key":"29634"} +{"label":"Guillermo Arengo","version":23,"id":"50927","lastModified":"1301901960000","name":"Guillermo Arengo","type":"Person","_key":"29635"} +{"label":"Germ\u00e1n de Silva","version":18,"id":"50928","lastModified":"1301902351000","name":"Germ\u00e1n de Silva","type":"Person","_key":"29636"} +{"label":"Arturo Goetz","version":26,"id":"50929","lastModified":"1301902370000","name":"Arturo Goetz","type":"Person","_key":"29637"} +{"label":"Maya Lesca","version":20,"id":"50930","lastModified":"1301902155000","name":"Maya Lesca","type":"Person","_key":"29638"} +{"label":"B\u00e1rbara Lombardo","version":20,"id":"50931","lastModified":"1301902166000","name":"B\u00e1rbara Lombardo","type":"Person","_key":"29639"} +{"label":"Ver\u00f3nica Piaggio","version":18,"id":"50932","lastModified":"1301902351000","name":"Ver\u00f3nica Piaggio","type":"Person","_key":"29640"} +{"label":"National Treasure: Book of Secrets","description":"Benjamin Franklin Gates and Dr. Abigail Chase -- who found riches and romance at the end of their first hunt for national treasure -- reteam with their wisecracking partner in crime, Riley Poole, for another romp through U.S. history. Now, armed with a stack of long-lost pages from John Wilkes Booth's diary, Ben is obsessed with finding the truth behind President Abraham Lincoln's assassination.","id":"6637","runtime":124,"imdbId":"tt0465234","trailer":"http:\/\/www.youtube.com\/watch?v=nO4j6y9D3A4","homepage":"http:\/\/disney.go.com\/disneypictures\/nationaltreasure\/","version":322,"lastModified":"1301901270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf1\/4bc91e17017a3c57fe00bcf1\/national-treasure-book-of-secrets-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"National Treasure: Book of Secrets","releaseDate":1197504000000,"language":"en","type":"Movie","_key":"29641"} +{"label":"Love in the Time of Cholera","description":"In Colombia just after the Great War, an old man falls from a ladder; dying, he professes great love for his wife. After the funeral, a man calls on the widow - she dismisses him angrily. Flash back more than 50 years to the day Florentino Ariza, a telegraph boy, falls in love with Fermina Daza, the daughter of a mule trader.","id":"6639","runtime":138,"imdbId":"tt0484740","trailer":"http:\/\/www.youtube.com\/watch?v=421","homepage":"http:\/\/www.loveinthetime.com\/","version":290,"lastModified":"1302043994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/113\/4c33325e5e73d64965000113\/love-in-the-time-of-cholera-mid.jpg","studio":"Stone Village Pictures","genre":"Drama","title":"Love in the Time of Cholera","releaseDate":1191456000000,"language":"en","type":"Movie","_key":"29642"} +{"label":"Unax Ugalde","version":24,"id":"50994","lastModified":"1301901564000","name":"Unax Ugalde","type":"Person","_key":"29643"} +{"label":"Marcela Mar","version":22,"id":"51006","lastModified":"1301901676000","name":"Marcela Mar","type":"Person","_key":"29644"} +{"label":"Angie Cepeda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e96\/4c000b80017a3c702a000e96\/angie-cepeda-profile.jpg","version":26,"id":"120557","lastModified":"1301902730000","name":"Angie Cepeda","type":"Person","_key":"29645"} +{"label":"Love and Other Disasters","description":"An American intern at U.K. Vogue helps her friends find love. ","id":"6641","runtime":90,"imdbId":"tt0452643","trailer":"http:\/\/www.youtube.com\/watch?v=419","homepage":"http:\/\/www.love-and-other-disasters.de\/","version":216,"lastModified":"1301945156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d38\/4bc91e22017a3c57fe00bd38\/love-and-other-disasters-mid.jpg","studio":"Europa Corp.","genre":"Comedy","title":"Love and Other Disasters","releaseDate":1157760000000,"language":"en","type":"Movie","_key":"29646"} +{"label":"Santiago Cabrera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4cd44ef77b9aa11b26000010\/santiago-cabrera-profile.jpg","version":26,"id":"34065","lastModified":"1301901493000","name":"Santiago Cabrera","type":"Person","_key":"29647"} +{"label":"Catherine Tate","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81b\/4be31652017a3c35b500081b\/catherine-tate-profile.jpg","version":33,"id":"47646","lastModified":"1301901323000","name":"Catherine Tate","type":"Person","_key":"29648"} +{"label":"Stephanie Beacham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b7\/4d27640c7b9aa134cf0018b7\/stephanie-beacham-profile.jpg","version":31,"id":"50948","lastModified":"1301901605000","name":"Stephanie Beacham","type":"Person","_key":"29649"} +{"label":"Will Keen","version":22,"id":"51119","lastModified":"1301901777000","name":"Will Keen","type":"Person","_key":"29650"} +{"label":"Elliot Cowan","version":23,"id":"51120","lastModified":"1301902166000","name":"Elliot Cowan","type":"Person","_key":"29651"} +{"label":"Alek Keshishian","version":35,"id":"50949","lastModified":"1301901585000","name":"Alek Keshishian","type":"Person","_key":"29652"} +{"label":"The Unforgiven","description":"The neighbors of a frontier family turn on them when it is suspected that their adopted daughter was stolen from the local Kiawa tribe.","id":"6643","runtime":125,"imdbId":"tt0054428","version":189,"lastModified":"1302043299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/307\/4ce851c27b9aa17c8b000307\/the-unforgiven-mid.jpg","studio":"Sarah James Productions","genre":"Action","title":"The Unforgiven","releaseDate":-307324800000,"language":"en","type":"Movie","_key":"29653"} +{"label":"Audie Murphy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4cb37de07b9aa1345600002a\/audie-murphy-profile.jpg","version":32,"id":"50962","lastModified":"1301901532000","name":"Audie Murphy","type":"Person","_key":"29654"} +{"label":"June Walker","version":21,"id":"50965","lastModified":"1301902370000","name":"June Walker","type":"Person","_key":"29655"} +{"label":"Arnold Merritt","version":20,"id":"50966","lastModified":"1301902101000","name":"Arnold Merritt","type":"Person","_key":"29656"} +{"label":"Doug McClure","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4cb383887b9aa13458000049\/doug-mcclure-profile.jpg","version":35,"id":"50967","lastModified":"1301901577000","name":"Doug McClure","type":"Person","_key":"29657"} +{"label":"Carlos Rivas","version":24,"id":"50968","lastModified":"1301902101000","name":"Carlos Rivas","type":"Person","_key":"29658"} +{"label":"El Dorado","description":"Cole Thornton, a gunfighter for hire, joins forces with an old friend, Sheriff J.P. Hara. Together with an old indian fighter and a gambler, they help a rancher and his family fight a rival rancher that is trying to steal their water.","id":"6644","runtime":120,"imdbId":"tt0061619","version":238,"lastModified":"1302064693000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4f\/4bc91e27017a3c57fe00bd4f\/el-dorado-mid.jpg","studio":"Paramount Pictures","genre":"Western","title":"El Dorado","releaseDate":-95990400000,"language":"en","type":"Movie","_key":"29659"} +{"label":"Charlene Holt","version":19,"id":"50970","lastModified":"1301901733000","name":"Charlene Holt","type":"Person","_key":"29660"} +{"label":"Arthur Hunnicutt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd1\/4d949c5b7b9aa11994001fd1\/arthur-hunnicutt-profile.jpg","version":27,"id":"50971","lastModified":"1301902312000","name":"Arthur Hunnicutt","type":"Person","_key":"29661"} +{"label":"Michele Carey","version":24,"id":"50972","lastModified":"1301901781000","name":"Michele Carey","type":"Person","_key":"29662"} +{"label":"Marina Ghane","version":18,"id":"50973","lastModified":"1301902351000","name":"Marina Ghane","type":"Person","_key":"29663"} +{"label":"John Gabriel","version":21,"id":"50974","lastModified":"1301902212000","name":"John Gabriel","type":"Person","_key":"29664"} +{"label":"Johnny Crawford","version":19,"id":"50975","lastModified":"1301902281000","name":"Johnny Crawford","type":"Person","_key":"29665"} +{"label":"Eine Frau, die wei\u00df was sie will","description":"No overview found.","id":"6645","runtime":101,"imdbId":"tt0050411","version":61,"lastModified":"1301906628000","studio":"Bavaria Film","genre":"Comedy","title":"Eine Frau, die wei\u00df was sie will","releaseDate":-373939200000,"language":"en","type":"Movie","_key":"29666"} +{"label":"Peter Sch\u00fctte","version":19,"id":"50980","lastModified":"1301901733000","name":"Peter Sch\u00fctte","type":"Person","_key":"29667"} +{"label":"Karl-Heinz Peters","version":19,"id":"50981","lastModified":"1301902281000","name":"Karl-Heinz Peters","type":"Person","_key":"29668"} +{"label":"Alfons Teuber","version":19,"id":"50982","lastModified":"1301902281000","name":"Alfons Teuber","type":"Person","_key":"29669"} +{"label":"Toni Treutler","version":19,"id":"50985","lastModified":"1301902281000","name":"Toni Treutler","type":"Person","_key":"29670"} +{"label":"Treasure Island","description":"A classic retelling of Robert Louis Stevenson's tale of piracy and swashbuckling adventure. Young Jim Hawkins discovers a map revealing the location of buried treasure, but he is not the only one trying to get his hands on it.","id":"6646","runtime":96,"imdbId":"tt0043067","trailer":"http:\/\/www.youtube.com\/watch?v=JVX5ZfTcGNU","version":111,"lastModified":"1301904993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/822\/4d8ae2065e73d653ce000822\/treasure-island-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"Treasure Island","releaseDate":-613958400000,"language":"en","type":"Movie","_key":"29671"} +{"label":"Bobby Driscoll","version":26,"id":"50997","lastModified":"1302062361000","name":"Bobby Driscoll","type":"Person","_key":"29672"} +{"label":"Basil Sydney","version":24,"id":"50998","lastModified":"1301986210000","name":"Basil Sydney","type":"Person","_key":"29673"} +{"label":"Walter Fitzgerald","version":21,"id":"52220","lastModified":"1301902392000","name":"Walter Fitzgerald","type":"Person","_key":"29674"} +{"label":"Byron Haskin","version":31,"id":"51000","lastModified":"1301901574000","name":"Byron Haskin","type":"Person","_key":"29675"} +{"label":"Mikosch im Geheimdienst","description":"No overview found.","id":"6647","runtime":87,"imdbId":"tt0053066","version":52,"lastModified":"1301906628000","studio":"Lux Film","genre":"Comedy","title":"Mikosch im Geheimdienst","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"29676"} +{"label":"Renate Ewert","version":19,"id":"51002","lastModified":"1301902101000","name":"Renate Ewert","type":"Person","_key":"29677"} +{"label":"Harry Friedauer","version":19,"id":"51004","lastModified":"1301902101000","name":"Harry Friedauer","type":"Person","_key":"29678"} +{"label":"Elfie von Kalckreuth","version":20,"id":"51007","lastModified":"1301901921000","name":"Elfie von Kalckreuth","type":"Person","_key":"29679"} +{"label":"Wenn am Sonntagabend die Dorfmusik spielt","description":"No overview found.","id":"6656","runtime":87,"imdbId":"tt0046540","version":55,"lastModified":"1301905645000","studio":"Berolina","genre":"Drama","title":"Wenn am Sonntagabend die Dorfmusik spielt","releaseDate":-513475200000,"language":"en","type":"Movie","_key":"29680"} +{"label":"Rudolf Prack","version":20,"id":"51009","lastModified":"1301901997000","name":"Rudolf Prack","type":"Person","_key":"29681"} +{"label":"Walter M\u00fcller","version":19,"id":"51010","lastModified":"1301901733000","name":"Walter M\u00fcller","type":"Person","_key":"29682"} +{"label":"Erwin Biegel","version":19,"id":"51011","lastModified":"1301902101000","name":"Erwin Biegel","type":"Person","_key":"29683"} +{"label":"Erna Haffner","version":36,"id":"51012","lastModified":"1301901496000","name":"Erna Haffner","type":"Person","_key":"29684"} +{"label":"Ingeborg K\u00f6rner","version":19,"id":"51013","lastModified":"1301902281000","name":"Ingeborg K\u00f6rner","type":"Person","_key":"29685"} +{"label":"Bruce Low","version":19,"id":"51014","lastModified":"1301902281000","name":"Bruce Low","type":"Person","_key":"29686"} +{"label":"Kurt Reimann","version":19,"id":"51015","lastModified":"1301902281000","name":"Kurt Reimann","type":"Person","_key":"29687"} +{"label":"Ludwig Schmitz","version":19,"id":"51017","lastModified":"1301902281000","name":"Ludwig Schmitz","type":"Person","_key":"29688"} +{"label":"Hans St\u00fcwe","version":19,"id":"51018","lastModified":"1301902281000","name":"Hans St\u00fcwe","type":"Person","_key":"29689"} +{"label":"Trude Wilke-Ro\u00dfwog","version":21,"id":"51019","lastModified":"1301902342000","name":"Trude Wilke-Ro\u00dfwog","type":"Person","_key":"29690"} +{"label":"Auf der Alm, da gibt's koa S\u00fcnd'","description":"No overview found.","id":"6658","runtime":81,"imdbId":"tt0071171","version":52,"lastModified":"1301906628000","studio":"Lisa Film","genre":"Erotic","title":"Auf der Alm, da gibt's koa S\u00fcnd'","releaseDate":150681600000,"language":"en","type":"Movie","_key":"29691"} +{"label":"Rinaldo Talamonti","version":19,"id":"51044","lastModified":"1301902101000","name":"Rinaldo Talamonti","type":"Person","_key":"29692"} +{"label":"Alexander Miller","version":19,"id":"51045","lastModified":"1301902281000","name":"Alexander Miller","type":"Person","_key":"29693"} +{"label":"Gerd Eichen","version":19,"id":"51046","lastModified":"1301902281000","name":"Gerd Eichen","type":"Person","_key":"29694"} +{"label":"Erhard 'Bimbo' Weller","version":18,"id":"51047","lastModified":"1301902351000","name":"Erhard 'Bimbo' Weller","type":"Person","_key":"29695"} +{"label":"J\u00fcrgen Schilling","version":19,"id":"51048","lastModified":"1301902281000","name":"J\u00fcrgen Schilling","type":"Person","_key":"29696"} +{"label":"Walter Feuchtenberg","version":19,"id":"51049","lastModified":"1301902281000","name":"Walter Feuchtenberg","type":"Person","_key":"29697"} +{"label":"Joanna Jung","version":19,"id":"51050","lastModified":"1301902281000","name":"Joanna Jung","type":"Person","_key":"29698"} +{"label":"Elisabeth Felchner","version":19,"id":"51051","lastModified":"1301902281000","name":"Elisabeth Felchner","type":"Person","_key":"29699"} +{"label":"Walter Klinger","version":19,"id":"39940","lastModified":"1301901887000","name":"Walter Klinger","type":"Person","_key":"29700"} +{"label":"Auf Wiedersehen, Franziska!","description":"No overview found.","id":"6663","runtime":105,"imdbId":"tt0050148","version":75,"lastModified":"1301903875000","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Auf Wiedersehen, Franziska!","releaseDate":-388886400000,"language":"en","type":"Movie","_key":"29701"} +{"label":"Friedrich Domin","version":21,"id":"51055","lastModified":"1301901961000","name":"Friedrich Domin","type":"Person","_key":"29702"} +{"label":"Jochen Brockmann","version":21,"id":"51056","lastModified":"1301901961000","name":"Jochen Brockmann","type":"Person","_key":"29703"} +{"label":"Peter Elsholtz","version":20,"id":"51057","lastModified":"1301902370000","name":"Peter Elsholtz","type":"Person","_key":"29704"} +{"label":"Else Ehser","version":20,"id":"51058","lastModified":"1301902373000","name":"Else Ehser","type":"Person","_key":"29705"} +{"label":"Transsiberian","description":"A Trans-Siberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.","id":"6687","runtime":111,"imdbId":"tt0800241","trailer":"http:\/\/www.youtube.com\/watch?v=386HCnvhQ2A","version":219,"lastModified":"1301908467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7c\/4bc91e2e017a3c57fe00bd7c\/transsiberian-mid.jpg","studio":"Filmax Group","genre":"Crime","title":"Transsiberian","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"29706"} +{"label":"Der Edelwei\u00dfk\u00f6nig","description":"No overview found.","id":"6688","runtime":83,"imdbId":"tt0228253","version":67,"lastModified":"1301904956000","studio":"Peter Ostermayr Produktion","genre":"Drama","title":"Der Edelwei\u00dfk\u00f6nig","releaseDate":-388800000000,"language":"en","type":"Movie","_key":"29707"} +{"label":"Gustav Ucicky","version":19,"id":"51073","lastModified":"1301901616000","name":"Gustav Ucicky","type":"Person","_key":"29708"} +{"label":"Olga von Togni","version":19,"id":"51075","lastModified":"1301901887000","name":"Olga von Togni","type":"Person","_key":"29709"} +{"label":"Pepperl Auer","version":19,"id":"51076","lastModified":"1301902101000","name":"Pepperl Auer","type":"Person","_key":"29710"} +{"label":"Walter Koch","version":19,"id":"51077","lastModified":"1301901887000","name":"Walter Koch","type":"Person","_key":"29711"} +{"label":"Willy Friedrichs","version":19,"id":"51078","lastModified":"1301902101000","name":"Willy Friedrichs","type":"Person","_key":"29712"} +{"label":"Hans Hunkele","version":19,"id":"51079","lastModified":"1301902281000","name":"Hans Hunkele","type":"Person","_key":"29713"} +{"label":"Erwin Faber","version":19,"id":"51080","lastModified":"1301902281000","name":"Erwin Faber","type":"Person","_key":"29714"} +{"label":"Alwin Emmert","version":19,"id":"51081","lastModified":"1301902281000","name":"Alwin Emmert","type":"Person","_key":"29715"} +{"label":"Im Prater bl\u00fch'n wieder die B\u00e4ume","description":"No overview found.","id":"6689","runtime":95,"imdbId":"tt0051765","version":53,"lastModified":"1301907278000","studio":"Paula Wessely Filmproduktion GmbH","genre":"Comedy","title":"Im Prater bl\u00fch'n wieder die B\u00e4ume","releaseDate":-360374400000,"language":"en","type":"Movie","_key":"29716"} +{"label":"Hans Wolff","version":19,"id":"51121","lastModified":"1301902281000","name":"Hans Wolff","type":"Person","_key":"29717"} +{"label":"Johanna Matz","version":19,"id":"51126","lastModified":"1301902281000","name":"Johanna Matz","type":"Person","_key":"29718"} +{"label":"Nina Sandt","version":19,"id":"51127","lastModified":"1301902281000","name":"Nina Sandt","type":"Person","_key":"29719"} +{"label":"Albert Rueprecht","version":21,"id":"51128","lastModified":"1301901952000","name":"Albert Rueprecht","type":"Person","_key":"29720"} +{"label":"Elisabeth Stiepl","version":21,"id":"49590","lastModified":"1301902373000","name":"Elisabeth Stiepl","type":"Person","_key":"29721"} +{"label":"Fred Liewehr","version":19,"id":"51130","lastModified":"1301902281000","name":"Fred Liewehr","type":"Person","_key":"29722"} +{"label":"Erik Frey","version":22,"id":"49647","lastModified":"1301902332000","name":"Erik Frey","type":"Person","_key":"29723"} +{"label":"Ernst Waldbrunn","version":20,"id":"51131","lastModified":"1301902281000","name":"Ernst Waldbrunn","type":"Person","_key":"29724"} +{"label":"Karl Hruschka","version":19,"id":"51132","lastModified":"1301902281000","name":"Karl Hruschka","type":"Person","_key":"29725"} +{"label":"Ve'Lakhta Lehe Isha","description":"No overview found.","id":"6690","runtime":97,"imdbId":"tt0426279","version":81,"lastModified":"1301905281000","studio":"Zanagar Films","genre":"Drama","title":"Ve'Lakhta Lehe Isha","releaseDate":1094342400000,"language":"en","type":"Movie","_key":"29726"} +{"label":"Shlomi Elkabetz","version":28,"id":"51084","lastModified":"1301901950000","name":"Shlomi Elkabetz","type":"Person","_key":"29727"} +{"label":"Sulika Kadosh","version":20,"id":"51094","lastModified":"1301901887000","name":"Sulika Kadosh","type":"Person","_key":"29728"} +{"label":"Dalia Beger","version":19,"id":"51095","lastModified":"1301902009000","name":"Dalia Beger","type":"Person","_key":"29729"} +{"label":"Kobi Regev","version":20,"id":"51096","lastModified":"1301901887000","name":"Kobi Regev","type":"Person","_key":"29730"} +{"label":"Omer Moshkovitz","version":19,"id":"51097","lastModified":"1301901980000","name":"Omer Moshkovitz","type":"Person","_key":"29731"} +{"label":"Yam Eitan","version":20,"id":"51098","lastModified":"1301901887000","name":"Yam Eitan","type":"Person","_key":"29732"} +{"label":"Val\u00e9rie Zarrouk","version":19,"id":"51099","lastModified":"1301901980000","name":"Val\u00e9rie Zarrouk","type":"Person","_key":"29733"} +{"label":"Priceless","description":"A beautiful young gold-digger mistakes a lowly hotel clerk as a rich and therefore worthwhile catch.","id":"6691","runtime":104,"imdbId":"tt0482088","homepage":"http:\/\/www.tfmdistribution.com\/horsdeprix\/","version":385,"lastModified":"1301902730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d96\/4bc91e31017a3c57fe00bd96\/hors-de-prix-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Priceless","releaseDate":1165968000000,"language":"en","type":"Movie","_key":"29734"} +{"label":"Gad Elmaleh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/75f\/4d0025e77b9aa1514a00675f\/gad-elmaleh-profile.jpg","biography":"Gad Elmaleh is a French Moroccan stand up comedian and actor.\u00a0","version":67,"birthday":"40863600000","id":"51100","lastModified":"1302019810000","name":"Gad Elmaleh","type":"Person","_key":"29735"} +{"label":"Marie-Christine Adam","version":25,"id":"51101","lastModified":"1301901791000","name":"Marie-Christine Adam","type":"Person","_key":"29736"} +{"label":"Annelise Hesme","version":32,"id":"51102","lastModified":"1301950076000","name":"Annelise Hesme","type":"Person","_key":"29737"} +{"label":"Charlotte Vermeil","version":25,"id":"51103","lastModified":"1301901616000","name":"Charlotte Vermeil","type":"Person","_key":"29738"} +{"label":"Claudine Baschet","version":24,"id":"51104","lastModified":"1301902182000","name":"Claudine Baschet","type":"Person","_key":"29739"} +{"label":"Laurent Claret","version":23,"id":"51105","lastModified":"1301902100000","name":"Laurent Claret","type":"Person","_key":"29740"} +{"label":"Blandine P\u00e9lissier","version":23,"id":"51106","lastModified":"1301901616000","name":"Blandine P\u00e9lissier","type":"Person","_key":"29741"} +{"label":"Philippe Vendan-Borin","version":23,"id":"51107","lastModified":"1301902100000","name":"Philippe Vendan-Borin","type":"Person","_key":"29742"} +{"label":"Bernard Bourdeau","version":23,"id":"51108","lastModified":"1301902101000","name":"Bernard Bourdeau","type":"Person","_key":"29743"} +{"label":"Didier Brice","version":23,"id":"51109","lastModified":"1301902100000","name":"Didier Brice","type":"Person","_key":"29744"} +{"label":"Fr\u00e9d\u00e9ric Bocquet","version":22,"id":"51110","lastModified":"1301901980000","name":"Fr\u00e9d\u00e9ric Bocquet","type":"Person","_key":"29745"} +{"label":"Jean-Michel Lahmi","version":25,"id":"51111","lastModified":"1301902151000","name":"Jean-Michel Lahmi","type":"Person","_key":"29746"} +{"label":"Guillaume Verdier","version":23,"id":"51112","lastModified":"1301902100000","name":"Guillaume Verdier","type":"Person","_key":"29747"} +{"label":"Pierre Salvadori","version":33,"id":"51116","lastModified":"1301901887000","name":"Pierre Salvadori","type":"Person","_key":"29748"} +{"label":"Der Schandfleck","description":"No overview found.","id":"6692","runtime":90,"imdbId":"tt0049720","version":52,"lastModified":"1301903712000","studio":"Sch\u00f6nbrunn-Film","genre":"Drama","title":"Der Schandfleck","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"29749"} +{"label":"Herbert B. Fredersdorf","version":21,"id":"51170","lastModified":"1301902281000","name":"Herbert B. Fredersdorf","type":"Person","_key":"29750"} +{"label":"Armin Dahlen","version":21,"id":"51173","lastModified":"1301901887000","name":"Armin Dahlen","type":"Person","_key":"29751"} +{"label":"Dagny Servaes","version":19,"id":"51174","lastModified":"1301902281000","name":"Dagny Servaes","type":"Person","_key":"29752"} +{"label":"Harry Fu\u00df","version":19,"id":"26794","lastModified":"1301902101000","name":"Harry Fu\u00df","type":"Person","_key":"29753"} +{"label":"Evi Servaes","version":19,"id":"51175","lastModified":"1301902281000","name":"Evi Servaes","type":"Person","_key":"29754"} +{"label":"Ferry Wondra","version":19,"id":"51176","lastModified":"1301902280000","name":"Ferry Wondra","type":"Person","_key":"29755"} +{"label":"Dina Pospesch","version":19,"id":"51177","lastModified":"1301902280000","name":"Dina Pospesch","type":"Person","_key":"29756"} +{"label":"Gerti Bens","version":19,"id":"51178","lastModified":"1301902280000","name":"Gerti Bens","type":"Person","_key":"29757"} +{"label":"Gerhard Hofer","version":19,"id":"51179","lastModified":"1301902280000","name":"Gerhard Hofer","type":"Person","_key":"29758"} +{"label":"Heinz Grohmann","version":19,"id":"51180","lastModified":"1301902280000","name":"Heinz Grohmann","type":"Person","_key":"29759"} +{"label":"Die Deutschmeister","description":"No overview found.","id":"6693","runtime":106,"imdbId":"tt0047989","version":73,"lastModified":"1301908331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da5\/4bc91e31017a3c57fe00bda5\/die-deutschmeister-mid.jpg","studio":"Erma-Film","genre":"Drama","title":"Die Deutschmeister","releaseDate":-454204800000,"language":"en","type":"Movie","_key":"29760"} +{"label":"Karl Ehrlich","version":25,"id":"6242","lastModified":"1301901518000","name":"Karl Ehrlich","type":"Person","_key":"29761"} +{"label":"Gretl Sch\u00f6rg","version":19,"id":"51135","lastModified":"1301901887000","name":"Gretl Sch\u00f6rg","type":"Person","_key":"29762"} +{"label":"Adrienne Gessner","version":18,"id":"51136","lastModified":"1301901667000","name":"Adrienne Gessner","type":"Person","_key":"29763"} +{"label":"Siegfried Breuer Jr.","version":19,"id":"51137","lastModified":"1301901887000","name":"Siegfried Breuer Jr.","type":"Person","_key":"29764"} +{"label":"Fritz Imhoff","version":19,"id":"51138","lastModified":"1301902100000","name":"Fritz Imhoff","type":"Person","_key":"29765"} +{"label":"Heinz Conrads","version":19,"id":"51139","lastModified":"1301902280000","name":"Heinz Conrads","type":"Person","_key":"29766"} +{"label":"Karl Schwetter","version":20,"id":"47351","lastModified":"1301902103000","name":"Karl Schwetter","type":"Person","_key":"29767"} +{"label":"Wolfgang Jansen","version":20,"id":"51140","lastModified":"1301902280000","name":"Wolfgang Jansen","type":"Person","_key":"29768"} +{"label":"Sag ja, Mutti","description":"No overview found.","id":"6694","runtime":84,"imdbId":"tt0052200","version":57,"lastModified":"1301906077000","studio":"Zenith Productions","genre":"Comedy","title":"Sag ja, Mutti","releaseDate":-343440000000,"language":"en","type":"Movie","_key":"29769"} +{"label":"Alfred Lehner","version":19,"id":"51141","lastModified":"1301902280000","name":"Alfred Lehner","type":"Person","_key":"29770"} +{"label":"Angela Cenery","version":19,"id":"51145","lastModified":"1301902280000","name":"Angela Cenery","type":"Person","_key":"29771"} +{"label":"Oskar Willner","version":20,"id":"51146","lastModified":"1301902370000","name":"Oskar Willner","type":"Person","_key":"29772"} +{"label":"Helene Arcon","version":19,"id":"51147","lastModified":"1301902280000","name":"Helene Arcon","type":"Person","_key":"29773"} +{"label":"Herta Risavy","version":19,"id":"51148","lastModified":"1301902100000","name":"Herta Risavy","type":"Person","_key":"29774"} +{"label":"Kurt Labatt","version":19,"id":"51149","lastModified":"1301902100000","name":"Kurt Labatt","type":"Person","_key":"29775"} +{"label":"Anni Sch\u00f6nhuber","version":19,"id":"51150","lastModified":"1301902280000","name":"Anni Sch\u00f6nhuber","type":"Person","_key":"29776"} +{"label":"Peter Schmidt","version":20,"id":"51151","lastModified":"1301902351000","name":"Peter Schmidt","type":"Person","_key":"29777"} +{"label":"Die Winzerin von Langenlois","description":"No overview found.","id":"6695","runtime":82,"imdbId":"tt0051199","version":59,"lastModified":"1301905645000","studio":"Helios-Filmproduktion","genre":"Comedy","title":"Die Winzerin von Langenlois","releaseDate":-402796800000,"language":"en","type":"Movie","_key":"29778"} +{"label":"Hans H. K\u00f6nig","version":23,"id":"46503","lastModified":"1301902157000","name":"Hans H. K\u00f6nig","type":"Person","_key":"29779"} +{"label":"Herta Staal","version":21,"id":"51158","lastModified":"1301901787000","name":"Herta Staal","type":"Person","_key":"29780"} +{"label":"Karl Skraup","version":21,"id":"51159","lastModified":"1301901901000","name":"Karl Skraup","type":"Person","_key":"29781"} +{"label":"Hertha Martin","version":19,"id":"51160","lastModified":"1301902280000","name":"Hertha Martin","type":"Person","_key":"29782"} +{"label":"Ingeborg H\u00fcttinger","version":19,"id":"51161","lastModified":"1301901887000","name":"Ingeborg H\u00fcttinger","type":"Person","_key":"29783"} +{"label":"Thomas H\u00f6rbiger","version":20,"id":"48255","lastModified":"1301901887000","name":"Thomas H\u00f6rbiger","type":"Person","_key":"29784"} +{"label":"Oskar Wegrostek","version":19,"id":"26453","lastModified":"1301902100000","name":"Oskar Wegrostek","type":"Person","_key":"29785"} +{"label":"Helen Brix","version":19,"id":"51162","lastModified":"1301902280000","name":"Helen Brix","type":"Person","_key":"29786"} +{"label":"Peter Horst","version":19,"id":"51163","lastModified":"1301901887000","name":"Peter Horst","type":"Person","_key":"29787"} +{"label":"Brigitte Krechler","version":19,"id":"51164","lastModified":"1301902280000","name":"Brigitte Krechler","type":"Person","_key":"29788"} +{"label":"G\u00fcnther Pregler","version":19,"id":"51165","lastModified":"1301901887000","name":"G\u00fcnther Pregler","type":"Person","_key":"29789"} +{"label":"UFOria","description":"Sheldon Bart (Fred Ward) is a drifter, and a small-time con man. He meets his old friend, Brother Bud (Harry Dean Stanton), a big-time con man into faith healing and fencing stolen cars, at his revival tent outside a small town. While he's helping Brother Bud, he falls in love with Arlene (Cindy Williams), a local supermarket clerk who believes in UFOs and is deeply religious and deeply lonely. When Arlene has a vision of a coming UFO, everyone deals with it in their own way.","id":"6696","runtime":93,"imdbId":"tt0081674","version":61,"lastModified":"1301908590000","studio":"Melvin Simon Productions","genre":"Comedy","title":"UFOria","releaseDate":496972800000,"language":"en","type":"Movie","_key":"29790"} +{"label":"John Binder","version":21,"id":"51183","lastModified":"1301902343000","name":"John Binder","type":"Person","_key":"29791"} +{"label":"Beverly Hope Atkinson","version":18,"id":"51184","lastModified":"1301902351000","name":"Beverly Hope Atkinson","type":"Person","_key":"29792"} +{"label":"Diane Adair","version":20,"id":"51185","lastModified":"1301901991000","name":"Diane Adair","type":"Person","_key":"29793"} +{"label":"Robert Gray","version":20,"id":"51186","lastModified":"1301902175000","name":"Robert Gray","type":"Person","_key":"29794"} +{"label":"Ted Harris","version":20,"id":"51187","lastModified":"1301902361000","name":"Ted Harris","type":"Person","_key":"29795"} +{"label":"Darrell Larson","version":21,"id":"51188","lastModified":"1301902216000","name":"Darrell Larson","type":"Person","_key":"29796"} +{"label":"Peggy McCay","version":23,"id":"51189","lastModified":"1301901855000","name":"Peggy McCay","type":"Person","_key":"29797"} +{"label":"Gordon Wolf","version":22,"id":"51190","lastModified":"1301902343000","name":"Gordon Wolf","type":"Person","_key":"29798"} +{"label":"Frei nach Plan","description":"No overview found.","id":"6697","runtime":90,"imdbId":"tt1037061","version":110,"lastModified":"1301903477000","studio":"credofilm","genre":"Drama","title":"Frei nach Plan","releaseDate":1182038400000,"language":"en","type":"Movie","_key":"29799"} +{"label":"Franziska Meletzky","version":20,"id":"51193","lastModified":"1301902182000","name":"Franziska Meletzky","type":"Person","_key":"29800"} +{"label":"Kirsten Block","version":26,"id":"49766","lastModified":"1301902155000","name":"Kirsten Block","type":"Person","_key":"29801"} +{"label":"Robert Gallinowski","version":20,"id":"45708","lastModified":"1301902370000","name":"Robert Gallinowski","type":"Person","_key":"29802"} +{"label":"Simone Kabst","version":20,"id":"51199","lastModified":"1301901960000","name":"Simone Kabst","type":"Person","_key":"29803"} +{"label":"Der Frosch mit der Maske","description":"No overview found.","id":"6699","runtime":89,"imdbId":"tt0052829","trailer":"http:\/\/www.youtube.com\/watch?v=MOzrdZ2KKWA","version":80,"lastModified":"1301905122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/893\/4cab03d17b9aa17acb000893\/der-frosch-mit-der-maske-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Der Frosch mit der Maske","releaseDate":-325900800000,"language":"en","type":"Movie","_key":"29804"} +{"label":"Walter Wilz","version":18,"id":"51201","lastModified":"1301902351000","name":"Walter Wilz","type":"Person","_key":"29805"} +{"label":"Michel Hildesheim","version":20,"id":"51202","lastModified":"1301902376000","name":"Michel Hildesheim","type":"Person","_key":"29806"} +{"label":"Charlotte Scheier-Herold","version":19,"id":"51203","lastModified":"1301902298000","name":"Charlotte Scheier-Herold","type":"Person","_key":"29807"} +{"label":"Benno Gellenbeck","version":19,"id":"36297","lastModified":"1301901756000","name":"Benno Gellenbeck","type":"Person","_key":"29808"} +{"label":"Werner Hedman","version":19,"id":"51204","lastModified":"1301902298000","name":"Werner Hedman","type":"Person","_key":"29809"} +{"label":"Holger Munk","version":19,"id":"51205","lastModified":"1301902298000","name":"Holger Munk","type":"Person","_key":"29810"} +{"label":"Olaf Ussing","version":19,"id":"51208","lastModified":"1301902120000","name":"Olaf Ussing","type":"Person","_key":"29811"} +{"label":"Carl Ottosen","version":20,"id":"91519","lastModified":"1301902506000","name":"Carl Ottosen","type":"Person","_key":"29812"} +{"label":"K\u00fcss mich, Genosse!","description":"No overview found.","id":"6703","runtime":92,"imdbId":"tt0933062","version":56,"lastModified":"1301907277000","studio":"Phoenix Film","genre":"Comedy","title":"K\u00fcss mich, Genosse!","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"29813"} +{"label":"Mira Bartuschek","version":22,"id":"51207","lastModified":"1301901951000","name":"Mira Bartuschek","type":"Person","_key":"29814"} +{"label":"Ren\u00e9 Steinke","version":21,"id":"51209","lastModified":"1301902340000","name":"Ren\u00e9 Steinke","type":"Person","_key":"29815"} +{"label":"Josefine Preu\u00df","version":19,"id":"25401","lastModified":"1301901538000","name":"Josefine Preu\u00df","type":"Person","_key":"29816"} +{"label":"Florian Martens","version":19,"id":"38217","lastModified":"1301901476000","name":"Florian Martens","type":"Person","_key":"29817"} +{"label":"Anja Kling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/787\/4cf2241b5e73d61e3e000787\/anja-kling-profile.jpg","version":34,"id":"50446","lastModified":"1301901126000","name":"Anja Kling","type":"Person","_key":"29818"} +{"label":"Renate Kr\u00f6\u00dfner","version":21,"id":"48613","lastModified":"1301902380000","name":"Renate Kr\u00f6\u00dfner","type":"Person","_key":"29819"} +{"label":"Philipp Sonntag","version":21,"id":"48737","lastModified":"1301902100000","name":"Philipp Sonntag","type":"Person","_key":"29820"} +{"label":"Ren\u00e9 Compagnini","version":27,"id":"51654","lastModified":"1301901556000","name":"Ren\u00e9 Compagnini","type":"Person","_key":"29821"} +{"label":"Marc Bennert","version":19,"id":"59907","lastModified":"1301902280000","name":"Marc Bennert","type":"Person","_key":"29822"} +{"label":"Tobias Hoesl","version":22,"id":"59908","lastModified":"1301902306000","name":"Tobias Hoesl","type":"Person","_key":"29823"} +{"label":"Moritz Mack","version":19,"id":"59909","lastModified":"1301902280000","name":"Moritz Mack","type":"Person","_key":"29824"} +{"label":"Reinhard Scheunemann","version":19,"id":"59910","lastModified":"1301902100000","name":"Reinhard Scheunemann","type":"Person","_key":"29825"} +{"label":"The Cure","description":"Dexter, age 11, who has AIDS, and his next door neighbor Eric, a little older and much bigger, become best friends. Eric also becomes closer to Dexter's mother than to his own, who is neglectful and bigoted and violently forbids their friendship upon learning of it. Dexter and Erik start the journey to find \"The Cure\" they had read about in the local newspaper.","id":"6715","runtime":97,"imdbId":"tt0112757","version":90,"lastModified":"1301903854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dae\/4bc91e32017a3c57fe00bdae\/the-cure-mid.jpg","studio":"Island World","genre":"Drama","title":"The Cure","releaseDate":798422400000,"language":"en","type":"Movie","_key":"29826"} +{"label":"Brad Renfro","version":46,"id":"51214","lastModified":"1301901666000","name":"Brad Renfro","type":"Person","_key":"29827"} +{"label":"Aeryk Egan","version":25,"id":"51215","lastModified":"1301902280000","name":"Aeryk Egan","type":"Person","_key":"29828"} +{"label":"Verdammt die jungen S\u00fcnder nicht","description":"No overview found.","id":"6720","runtime":90,"imdbId":"tt0171885","version":56,"lastModified":"1301906627000","genre":"Drama","title":"Verdammt die jungen S\u00fcnder nicht","releaseDate":-283996800000,"language":"en","type":"Movie","_key":"29829"} +{"label":"Hermann Leitner","version":28,"id":"37902","lastModified":"1301901664000","name":"Hermann Leitner","type":"Person","_key":"29830"} +{"label":"Gaby Banschenbach","version":19,"id":"26790","lastModified":"1301901538000","name":"Gaby Banschenbach","type":"Person","_key":"29831"} +{"label":"Gretl Elb","version":19,"id":"51240","lastModified":"1301901886000","name":"Gretl Elb","type":"Person","_key":"29832"} +{"label":"Michael Heltau","version":21,"id":"51241","lastModified":"1301902342000","name":"Michael Heltau","type":"Person","_key":"29833"} +{"label":"Kurt Schossmann","version":19,"id":"51243","lastModified":"1301902280000","name":"Kurt Schossmann","type":"Person","_key":"29834"} +{"label":"Chris Van Loosen","version":19,"id":"51244","lastModified":"1301902280000","name":"Chris Van Loosen","type":"Person","_key":"29835"} +{"label":"Walter Wilz","version":19,"id":"51245","lastModified":"1301902280000","name":"Walter Wilz","type":"Person","_key":"29836"} +{"label":"Das Siegel Gottes","description":"No overview found.","id":"6722","runtime":87,"imdbId":"tt0041872","version":54,"lastModified":"1301907277000","studio":"Wiener Mundus-Film","genre":"Drama","title":"Das Siegel Gottes","releaseDate":-662688000000,"language":"en","type":"Movie","_key":"29837"} +{"label":"Alfred St\u00f6ger","version":20,"id":"51246","lastModified":"1301902280000","name":"Alfred St\u00f6ger","type":"Person","_key":"29838"} +{"label":"Hilde Mikulicz","version":19,"id":"51248","lastModified":"1301901616000","name":"Hilde Mikulicz","type":"Person","_key":"29839"} +{"label":"Robert Lindner","version":18,"id":"51249","lastModified":"1301903110000","name":"Robert Lindner","type":"Person","_key":"29840"} +{"label":"Elisabeth Markus","version":19,"id":"51250","lastModified":"1301902100000","name":"Elisabeth Markus","type":"Person","_key":"29841"} +{"label":"Hugo Gottschlich","version":19,"id":"51251","lastModified":"1301902100000","name":"Hugo Gottschlich","type":"Person","_key":"29842"} +{"label":"Alexander Trojan","version":18,"id":"51252","lastModified":"1301902351000","name":"Alexander Trojan","type":"Person","_key":"29843"} +{"label":"Elfriede Ott","version":19,"id":"51253","lastModified":"1301902280000","name":"Elfriede Ott","type":"Person","_key":"29844"} +{"label":"Karl G\u00fcnther","version":19,"id":"51254","lastModified":"1301902280000","name":"Karl G\u00fcnther","type":"Person","_key":"29845"} +{"label":"Alfred Neugebauer","version":23,"id":"51255","lastModified":"1301901977000","name":"Alfred Neugebauer","type":"Person","_key":"29846"} +{"label":"Susanne Engelhart","version":19,"id":"51256","lastModified":"1301902280000","name":"Susanne Engelhart","type":"Person","_key":"29847"} +{"label":"Ludmilla Hell","version":19,"id":"51257","lastModified":"1301902280000","name":"Ludmilla Hell","type":"Person","_key":"29848"} +{"label":"Pepi Gl\u00f6ckner-Kramer","version":19,"id":"51258","lastModified":"1301902280000","name":"Pepi Gl\u00f6ckner-Kramer","type":"Person","_key":"29849"} +{"label":"Gandolf Buschbeck","version":19,"id":"51259","lastModified":"1301902280000","name":"Gandolf Buschbeck","type":"Person","_key":"29850"} +{"label":"Karl Hauser","version":19,"id":"51260","lastModified":"1301902280000","name":"Karl Hauser","type":"Person","_key":"29851"} +{"label":"Oskar Hugelmann","version":19,"id":"51261","lastModified":"1301902280000","name":"Oskar Hugelmann","type":"Person","_key":"29852"} +{"label":"Hanns Kurth","version":19,"id":"51262","lastModified":"1301901886000","name":"Hanns Kurth","type":"Person","_key":"29853"} +{"label":"The Rookie","description":"Veteran cop Nick Pulovski (Clint Eastwood) is used to playing musical partners; many of the partners he's had in the past have died on the job, and often as a result of Nick's risky tactics. But the rookie (Charlie Sheen) who's been assigned to help Nick bust a carjacking ring is almost as hotheaded as he is \u2026 and when Nick gets kidnapped, his newbie partner is his only hope.","id":"6723","runtime":121,"imdbId":"tt0100514","trailer":"http:\/\/www.youtube.com\/watch?v=m_lF4QJAM0w","version":164,"lastModified":"1301904681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbc\/4bc91e35017a3c57fe00bdbc\/the-rookie-mid.jpg","studio":"Malpaso Productions","genre":"Action","title":"The Rookie","releaseDate":660528000000,"language":"en","type":"Movie","_key":"29854"} +{"label":"Wo ist Fred?","description":"No overview found.","id":"6733","runtime":107,"imdbId":"tt0487271","version":168,"lastModified":"1301907991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc9\/4bc91e36017a3c57fe00bdc9\/wo-ist-fred-mid.jpg","studio":"Bioskop-Film GmbH","genre":"Comedy","title":"Wo ist Fred?","releaseDate":1163635200000,"language":"en","type":"Movie","_key":"29855"} +{"label":"Tanja Wenzel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ddf\/4cfd17007b9aa1514a003ddf\/tanja-wenzel-profile.jpg","version":23,"id":"51265","lastModified":"1301901334000","name":"Tanja Wenzel","type":"Person","_key":"29856"} +{"label":"Im wei\u00dfen R\u00f6\u00dfl","description":"No overview found.","id":"6792","runtime":103,"imdbId":"tt0053941","version":67,"lastModified":"1301905644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dce\/4bc91e36017a3c57fe00bdce\/im-weien-rol-mid.jpg","studio":"Carlton Film Export","genre":"Comedy","title":"Im wei\u00dfen R\u00f6\u00dfl","releaseDate":-285033600000,"language":"en","type":"Movie","_key":"29857"} +{"label":"Estella Blain","version":22,"id":"51268","lastModified":"1301902319000","name":"Estella Blain","type":"Person","_key":"29858"} +{"label":"Erik Jelde","version":19,"id":"51269","lastModified":"1301902280000","name":"Erik Jelde","type":"Person","_key":"29859"} +{"label":"Hugo Lindinger","version":22,"id":"51270","lastModified":"1301901950000","name":"Hugo Lindinger","type":"Person","_key":"29860"} +{"label":"Ruth Winter","version":19,"id":"51271","lastModified":"1301902280000","name":"Ruth Winter","type":"Person","_key":"29861"} +{"label":"Fritz Heller","version":19,"id":"51272","lastModified":"1301902280000","name":"Fritz Heller","type":"Person","_key":"29862"} +{"label":"Rut Rex","version":19,"id":"51273","lastModified":"1301902280000","name":"Rut Rex","type":"Person","_key":"29863"} +{"label":"Fritz Lafontaine","version":18,"id":"51274","lastModified":"1301902351000","name":"Fritz Lafontaine","type":"Person","_key":"29864"} +{"label":"Sepp L\u00f6winger","version":19,"id":"51275","lastModified":"1301902280000","name":"Sepp L\u00f6winger","type":"Person","_key":"29865"} +{"label":"The Haunted Castle","description":"The sinister Count Oetsch scandalizes the aristocratic social gathering at Castle Vogelod as he announces his intention to \"crash\" the festivities. Baroness Safferst\u00e4tt is expected shortly, and the guests are well-aware of the rumors that Count Oetsch murdered the baroness' late husband. Oetsch refuses to leave, vowing that he will reveal the identity of the real killer. Before the weekend is through, the Count and Baroness will reveal secrets too shocking to be believed!","id":"6793","runtime":75,"imdbId":"tt0012651","version":108,"lastModified":"1302020874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd3\/4bc91e37017a3c57fe00bdd3\/schlo-vogeloed-mid.jpg","studio":"Uco-Film GmbH","genre":"Crime","title":"The Haunted Castle","releaseDate":-1538006400000,"language":"en","type":"Movie","_key":"29866"} +{"label":"Arnold Korff","version":25,"id":"51279","lastModified":"1301902280000","name":"Arnold Korff","type":"Person","_key":"29867"} +{"label":"Lulu Kyser-Korff","version":21,"id":"51280","lastModified":"1301902100000","name":"Lulu Kyser-Korff","type":"Person","_key":"29868"} +{"label":"Lothar Mehnert","version":21,"id":"51281","lastModified":"1301902100000","name":"Lothar Mehnert","type":"Person","_key":"29869"} +{"label":"Georg Zawatzky","version":21,"id":"51282","lastModified":"1301902100000","name":"Georg Zawatzky","type":"Person","_key":"29870"} +{"label":"Robert Leffler","version":21,"id":"51283","lastModified":"1301902280000","name":"Robert Leffler","type":"Person","_key":"29871"} +{"label":"Victor Bluetner","version":21,"id":"51284","lastModified":"1301902280000","name":"Victor Bluetner","type":"Person","_key":"29872"} +{"label":"Walter Kurt Kuhle","version":21,"id":"51285","lastModified":"1301901886000","name":"Walter Kurt Kuhle","type":"Person","_key":"29873"} +{"label":"Rosen aus dem S\u00fcden","description":"No overview found.","id":"6794","runtime":102,"imdbId":"tt0047430","version":65,"lastModified":"1301906627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd8\/4bc91e37017a3c57fe00bdd8\/rosen-aus-dem-suden-mid.jpg","studio":"Victor von Struve Filmproduktion GmbH","genre":"Comedy","title":"Rosen aus dem S\u00fcden","releaseDate":-504921600000,"language":"en","type":"Movie","_key":"29874"} +{"label":"Maria Holst","version":19,"id":"51290","lastModified":"1301902280000","name":"Maria Holst","type":"Person","_key":"29875"} +{"label":"Hannelore Bollmann","version":19,"id":"51291","lastModified":"1301902280000","name":"Hannelore Bollmann","type":"Person","_key":"29876"} +{"label":"Malte J\u00e4ger","version":19,"id":"51293","lastModified":"1301901886000","name":"Malte J\u00e4ger","type":"Person","_key":"29877"} +{"label":"Jutta Bornemann","version":19,"id":"49575","lastModified":"1301902100000","name":"Jutta Bornemann","type":"Person","_key":"29878"} +{"label":"Zathura: A Space Adventure","description":"Two squabbling brothers are propelled into deepest, darkest space while playing a mysterious game they discovered in the basement of their old house. On their fantastic journey, they are joined by a stranded astronaut and must survive several outer space challenges. Unless they finish the game and reach the planet Zathura, they could be trapped in outer space forever.","id":"6795","runtime":113,"imdbId":"tt0406375","trailer":"http:\/\/www.youtube.com\/watch?v=-7FsKEFXwgE","version":156,"lastModified":"1301901891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81f\/4d4ef7ee7b9aa13ab800a81f\/zathura-a-space-adventure-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Zathura: A Space Adventure","releaseDate":1131235200000,"language":"en","tagline":"Adventure Is Waiting.","type":"Movie","_key":"29879"} +{"label":"Jonah Bobo","version":29,"id":"51297","lastModified":"1301901255000","name":"Jonah Bobo","type":"Person","_key":"29880"} +{"label":"Dax Shepard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4ce064b07b9aa168b400012d\/dax-shepard-profile.jpg","version":62,"id":"51298","lastModified":"1302070576000","name":"Dax Shepard","type":"Person","_key":"29881"} +{"label":"Derek Mears","version":32,"id":"51300","lastModified":"1301901444000","name":"Derek Mears","type":"Person","_key":"29882"} +{"label":"Douglas Tait","version":25,"id":"51301","lastModified":"1301901511000","name":"Douglas Tait","type":"Person","_key":"29883"} +{"label":"Joe Bucaro III","version":26,"id":"51302","lastModified":"1301901409000","name":"Joe Bucaro III","type":"Person","_key":"29884"} +{"label":"Jeff Wolfe","version":29,"id":"51303","lastModified":"1301901255000","name":"Jeff Wolfe","type":"Person","_key":"29885"} +{"label":"The Ten Commandments","description":"Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.","id":"6844","runtime":220,"imdbId":"tt0049833","trailer":"http:\/\/www.youtube.com\/watch?v=hKEp7WYrMmY","version":200,"lastModified":"1301901427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e2\/4c7e8c615e73d648e20000e2\/the-ten-commandments-mid.jpg","studio":"United Motion Pictures","genre":"Drama","title":"The Ten Commandments","releaseDate":-417830400000,"language":"en","tagline":"The Greatest Event in Motion Picture History","type":"Movie","_key":"29886"} +{"label":"Henry Wilcoxon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/80e\/4ccc440c5e73d6502100080e\/henry-wilcoxon-profile.jpg","version":32,"id":"51310","lastModified":"1301901855000","name":"Henry Wilcoxon","type":"Person","_key":"29887"} +{"label":"Olive Deering","version":20,"id":"100788","lastModified":"1301902280000","name":"Olive Deering","type":"Person","_key":"29888"} +{"label":"Eduard Franz","version":29,"id":"94070","lastModified":"1301902152000","name":"Eduard Franz","type":"Person","_key":"29889"} +{"label":"Lawrence Dobkin","version":28,"id":"15625","lastModified":"1301901443000","name":"Lawrence Dobkin","type":"Person","_key":"29890"} +{"label":"Joan Woodbury","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4c754da57b9aa16a08000019\/joan-woodbury-profile.jpg","version":28,"id":"89746","lastModified":"1301902322000","name":"Joan Woodbury","type":"Person","_key":"29891"} +{"label":"Terence de Marney","version":19,"id":"100790","lastModified":"1301902100000","name":"Terence de Marney","type":"Person","_key":"29892"} +{"label":"George Robotham","version":22,"id":"34131","lastModified":"1301901431000","name":"George Robotham","type":"Person","_key":"29893"} +{"label":"Carl 'Alfalfa' Switzer","version":26,"id":"105509","lastModified":"1301901691000","name":"Carl 'Alfalfa' Switzer","type":"Person","_key":"29894"} +{"label":"Cry of the Innocent","description":"No overview found.","id":"6845","runtime":93,"imdbId":"tt0080573","version":90,"lastModified":"1301904720000","studio":"NBC","genre":"Action","title":"Cry of the Innocent","releaseDate":330220800000,"language":"en","type":"Movie","_key":"29895"} +{"label":"Michael O'Herlihy","version":20,"id":"51313","lastModified":"1301901668000","name":"Michael O'Herlihy","type":"Person","_key":"29896"} +{"label":"Joanna Pettet","version":24,"id":"51315","lastModified":"1301901657000","name":"Joanna Pettet","type":"Person","_key":"29897"} +{"label":"Joe Cahill","version":20,"id":"51316","lastModified":"1301902384000","name":"Joe Cahill","type":"Person","_key":"29898"} +{"label":"May Ollis","version":20,"id":"51317","lastModified":"1301902384000","name":"May Ollis","type":"Person","_key":"29899"} +{"label":"Bairbre Dowling","version":20,"id":"51318","lastModified":"1301902388000","name":"Bairbre Dowling","type":"Person","_key":"29900"} +{"label":"Failure to Launch","description":"Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.","id":"6877","runtime":97,"imdbId":"tt0427229","version":208,"lastModified":"1301902500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e18\/4bc91e41017a3c57fe00be18\/failure-to-launch-mid.jpg","studio":"Paramount-Orion Filmproduktion","genre":"Comedy","title":"Failure to Launch","releaseDate":1141948800000,"language":"en","type":"Movie","_key":"29901"} +{"label":"Bradley Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/190\/4bd5a00a017a3c2e71000190\/bradley-cooper-profile.jpg","version":120,"id":"51329","lastModified":"1302059268000","name":"Bradley Cooper","type":"Person","_key":"29902"} +{"label":"Terry Bradshaw","version":24,"id":"51330","lastModified":"1301901639000","name":"Terry Bradshaw","type":"Person","_key":"29903"} +{"label":"Tyrel Jackson Williams","version":20,"id":"51331","lastModified":"1301901768000","name":"Tyrel Jackson Williams","type":"Person","_key":"29904"} +{"label":"Rob Corddry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4bdcc8ca017a3c20ca00009a\/robert-corddry-profile.jpg","version":51,"id":"52997","lastModified":"1301904078000","name":"Rob Corddry","type":"Person","_key":"29905"} +{"label":"Homeward Bound: The Incredible Journey","description":"Remake of the popular Disney classic, this time featuring some well known voices as two dogs and a cat trek across America encountering all sorts of adventures in the quest to be reunited with their owners.","id":"6878","runtime":84,"imdbId":"tt0107131","version":457,"lastModified":"1301902585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2b\/4bc91e42017a3c57fe00be2b\/homeward-bound-the-incredible-journey-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"Homeward Bound: The Incredible Journey","releaseDate":728697600000,"language":"en","type":"Movie","_key":"29906"} +{"label":"Duwayne Dunham","version":31,"id":"6592","lastModified":"1301901258000","name":"Duwayne Dunham","type":"Person","_key":"29907"} +{"label":"Ed Bernard","version":21,"id":"51336","lastModified":"1301901733000","name":"Ed Bernard","type":"Person","_key":"29908"} +{"label":"Kevin Chevalia","version":21,"id":"51337","lastModified":"1301901476000","name":"Kevin Chevalia","type":"Person","_key":"29909"} +{"label":"Anne Christianson","version":21,"id":"51338","lastModified":"1301901616000","name":"Anne Christianson","type":"Person","_key":"29910"} +{"label":"Ted D'Arms","version":20,"id":"51339","lastModified":"1301901803000","name":"Ted D'Arms","type":"Person","_key":"29911"} +{"label":"Don Alder","version":20,"id":"120990","lastModified":"1301903001000","name":"Don Alder","type":"Person","_key":"29912"} +{"label":"Zwei Bayern im Urwald","description":"No overview found.","id":"6881","runtime":87,"imdbId":"tt0051230","version":55,"lastModified":"1301906627000","genre":"Comedy","title":"Zwei Bayern im Urwald","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"29913"} +{"label":"Ludwig Bender","version":19,"id":"51360","lastModified":"1301901616000","name":"Ludwig Bender","type":"Person","_key":"29914"} +{"label":"Georg Bauer","version":19,"id":"51362","lastModified":"1301901733000","name":"Georg Bauer","type":"Person","_key":"29915"} +{"label":"Maria Hellwig","version":19,"id":"51364","lastModified":"1301901886000","name":"Maria Hellwig","type":"Person","_key":"29916"} +{"label":"Anne-Marie Kolb","version":19,"id":"51365","lastModified":"1301901886000","name":"Anne-Marie Kolb","type":"Person","_key":"29917"} +{"label":"Bertl Schultes","version":19,"id":"51366","lastModified":"1301901886000","name":"Bertl Schultes","type":"Person","_key":"29918"} +{"label":"Maria Stadler","version":19,"id":"26942","lastModified":"1301902100000","name":"Maria Stadler","type":"Person","_key":"29919"} +{"label":"Zwei Herzen voller Seligkeit","description":"No overview found.","id":"6882","runtime":94,"imdbId":"tt0051231","version":54,"lastModified":"1301906744000","studio":"B\u00fchne und Film","genre":"Drama","title":"Zwei Herzen voller Seligkeit","releaseDate":-403315200000,"language":"en","type":"Movie","_key":"29920"} +{"label":"J.A. Holman","version":19,"id":"51368","lastModified":"1301901497000","name":"J.A. Holman","type":"Person","_key":"29921"} +{"label":"Two-Minute Warning","description":"A psychotic sniper plans a massive killing spree in a Los Angeles football stadium during a major championship game. The police, led by Captain Peter Holly (Charlton Heston) and SWAT commander Sergeant Button (John Cassavetes), learn of the plot and rush to the scene. Still, they may be too late, as an all-star cast finds itself lined up in the sights of a gun-toting madman.","id":"6883","runtime":115,"imdbId":"tt0075359","trailer":"http:\/\/www.youtube.com\/watch?v=Xbne4i1Wo1c","version":261,"lastModified":"1301905964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b37\/4d603ba17b9aa154c3003b37\/two-minute-warning-mid.jpg","studio":"Filmways Pictures","genre":"Action","title":"Two-Minute Warning","releaseDate":216604800000,"language":"en","type":"Movie","_key":"29922"} +{"label":"Larry Peerce","version":20,"id":"51373","lastModified":"1301901644000","name":"Larry Peerce","type":"Person","_key":"29923"} +{"label":"Marilyn Hassett","version":21,"id":"51376","lastModified":"1301902100000","name":"Marilyn Hassett","type":"Person","_key":"29924"} +{"label":"David Janssen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/714\/4be1c37a017a3c35bd000714\/david-janssen-profile.jpg","version":30,"id":"51377","lastModified":"1301902018000","name":"David Janssen","type":"Person","_key":"29925"} +{"label":"Evil Alien Conquerors","description":"No overview found.","id":"6884","runtime":89,"imdbId":"tt0305556","version":136,"lastModified":"1301905896000","studio":"Radar Pictures Inc.","genre":"Comedy","title":"Evil Alien Conquerors","releaseDate":1070409600000,"language":"en","type":"Movie","_key":"29926"} +{"label":"Chris Matheson","version":34,"id":"18382","lastModified":"1301901561000","name":"Chris Matheson","type":"Person","_key":"29927"} +{"label":"Michael Weston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/137\/4c1cc7da7b9aa117c0000137\/michael-weston-profile.jpg","version":39,"id":"51381","lastModified":"1301901293000","name":"Michael Weston","type":"Person","_key":"29928"} +{"label":"Wir Wunderkinder","description":"No overview found.","id":"6905","runtime":108,"imdbId":"tt0052400","version":101,"lastModified":"1301906645000","studio":"Filmaufbau","genre":"Comedy","title":"Wir Wunderkinder","releaseDate":-352771200000,"language":"en","type":"Movie","_key":"29929"} +{"label":"Wera Frydtberg","version":21,"id":"51395","lastModified":"1301902332000","name":"Wera Frydtberg","type":"Person","_key":"29930"} +{"label":"Ingrid Pan","version":20,"id":"51396","lastModified":"1301902373000","name":"Ingrid Pan","type":"Person","_key":"29931"} +{"label":"J\u00fcrgen Goslar","version":19,"id":"51397","lastModified":"1301902297000","name":"J\u00fcrgen Goslar","type":"Person","_key":"29932"} +{"label":"Peter L\u00fchr","version":20,"id":"51398","lastModified":"1301902374000","name":"Peter L\u00fchr","type":"Person","_key":"29933"} +{"label":"Ernst Schlott","version":20,"id":"51399","lastModified":"1301902373000","name":"Ernst Schlott","type":"Person","_key":"29934"} +{"label":"Ludwig Schmid-Wildy","version":20,"id":"51400","lastModified":"1301902384000","name":"Ludwig Schmid-Wildy","type":"Person","_key":"29935"} +{"label":"Witwer mit 5 T\u00f6chtern","description":"No overview found.","id":"6913","runtime":96,"imdbId":"tt0051202","version":58,"lastModified":"1301906077000","studio":"G\u00f6ttinger-Film-Atelier GmbH","genre":"Comedy","title":"Witwer mit 5 T\u00f6chtern","releaseDate":-388800000000,"language":"en","type":"Movie","_key":"29936"} +{"label":"Erich Engels","version":21,"id":"51402","lastModified":"1301902280000","name":"Erich Engels","type":"Person","_key":"29937"} +{"label":"Angelika Meissner","version":23,"id":"51405","lastModified":"1301902023000","name":"Angelika Meissner","type":"Person","_key":"29938"} +{"label":"Vera Tschechowa","version":19,"id":"51406","lastModified":"1301902280000","name":"Vera Tschechowa","type":"Person","_key":"29939"} +{"label":"Elke Aberle","version":19,"id":"26565","lastModified":"1301902100000","name":"Elke Aberle","type":"Person","_key":"29940"} +{"label":"Lotte Brackebusch","version":19,"id":"51408","lastModified":"1301902280000","name":"Lotte Brackebusch","type":"Person","_key":"29941"} +{"label":"Nora Minor","version":19,"id":"51409","lastModified":"1301902280000","name":"Nora Minor","type":"Person","_key":"29942"} +{"label":"Das Wirtshaus im Spessart","description":"No overview found.","id":"6914","runtime":99,"imdbId":"tt0051200","version":71,"lastModified":"1301903858000","studio":"Witt\/Thomas Productions","genre":"Adventure","title":"Das Wirtshaus im Spessart","releaseDate":-377481600000,"language":"en","type":"Movie","_key":"29943"} +{"label":"Zwei unter Millionen","description":"No overview found.","id":"6915","runtime":96,"imdbId":"tt0055643","version":54,"lastModified":"1301904955000","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"Zwei unter Millionen","releaseDate":-259459200000,"language":"en","type":"Movie","_key":"29944"} +{"label":"Wieland Liebske","version":19,"id":"51416","lastModified":"1301901616000","name":"Wieland Liebske","type":"Person","_key":"29945"} +{"label":"Victor Vicas","version":19,"id":"51417","lastModified":"1301902100000","name":"Victor Vicas","type":"Person","_key":"29946"} +{"label":"Lore Hartling","version":19,"id":"51420","lastModified":"1301902280000","name":"Lore Hartling","type":"Person","_key":"29947"} +{"label":"...Altrimenti Ci Arrabbiamo!","description":"No overview found.","id":"6916","runtime":97,"imdbId":"tt0069697","version":108,"lastModified":"1301904274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c4\/4c5d1ff85e73d63a710006c4\/altrimenti-ci-arrabbiamo-mid.jpg","studio":"CJ Capital Investment","genre":"Action","title":"...Altrimenti Ci Arrabbiamo!","releaseDate":135561600000,"language":"en","type":"Movie","_key":"29948"} +{"label":"Marcello Fondato","version":39,"id":"51421","lastModified":"1301901573000","name":"Marcello Fondato","type":"Person","_key":"29949"} +{"label":"Deogratias Huerta","version":23,"id":"51426","lastModified":"1301902383000","name":"Deogratias Huerta","type":"Person","_key":"29950"} +{"label":"Luis Barbero","version":23,"id":"51427","lastModified":"1301902387000","name":"Luis Barbero","type":"Person","_key":"29951"} +{"label":"Emilio Laguna","version":23,"id":"51428","lastModified":"1301902383000","name":"Emilio Laguna","type":"Person","_key":"29952"} +{"label":"Rafael Albaic\u00edn","version":22,"id":"51429","lastModified":"1301902351000","name":"Rafael Albaic\u00edn","type":"Person","_key":"29953"} +{"label":"Giancarlo Bastianoni","version":23,"id":"51430","lastModified":"1301902364000","name":"Giancarlo Bastianoni","type":"Person","_key":"29954"} +{"label":"The Gate","description":"Three young children accidentally release a horde of nasty, pint-sized demons from a hole in a suburban backyard. What follows is a classic battle between good and evil as the three kids struggle to overcome a nightmarish hell that is literally taking over the Earth.","id":"6917","runtime":85,"imdbId":"tt0093075","version":127,"lastModified":"1301906487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e38\/4bc91e42017a3c57fe00be38\/the-gate-mid.jpg","studio":"Alliance Entertainment","genre":"Horror","title":"The Gate","releaseDate":536457600000,"language":"en","type":"Movie","_key":"29955"} +{"label":"Christa Denton","version":22,"id":"51424","lastModified":"1301901886000","name":"Christa Denton","type":"Person","_key":"29956"} +{"label":"Louis Tripp","version":21,"id":"51425","lastModified":"1301901425000","name":"Louis Tripp","type":"Person","_key":"29957"} +{"label":"Jennifer Irwin","version":20,"id":"52956","lastModified":"1301902100000","name":"Jennifer Irwin","type":"Person","_key":"29958"} +{"label":"12 M\u00e4dchen und 1 Mann","description":"No overview found.","id":"6932","runtime":88,"imdbId":"tt0053471","version":65,"lastModified":"1301907277000","studio":"Sascha-Verleih","genre":"Crime","title":"12 M\u00e4dchen und 1 Mann","releaseDate":-322358400000,"language":"en","type":"Movie","_key":"29959"} +{"label":"Margit N\u00fcnke","version":19,"id":"51434","lastModified":"1301901733000","name":"Margit N\u00fcnke","type":"Person","_key":"29960"} +{"label":"Monika Berger","version":19,"id":"51436","lastModified":"1301902280000","name":"Monika Berger","type":"Person","_key":"29961"} +{"label":"Susanne Cronau","version":19,"id":"51437","lastModified":"1301902280000","name":"Susanne Cronau","type":"Person","_key":"29962"} +{"label":"Franz Eichberger","version":19,"id":"51438","lastModified":"1301902388000","name":"Franz Eichberger","type":"Person","_key":"29963"} +{"label":"Lisbeth Gemzell","version":19,"id":"51439","lastModified":"1301901886000","name":"Lisbeth Gemzell","type":"Person","_key":"29964"} +{"label":"Martha Hauser","version":19,"id":"51440","lastModified":"1301902280000","name":"Martha Hauser","type":"Person","_key":"29965"} +{"label":"Ursula Heyer","version":19,"id":"51441","lastModified":"1301902280000","name":"Ursula Heyer","type":"Person","_key":"29966"} +{"label":"Eva Iro","version":19,"id":"51442","lastModified":"1301902280000","name":"Eva Iro","type":"Person","_key":"29967"} +{"label":"Wolf Neuber","version":20,"id":"49600","lastModified":"1301902280000","name":"Wolf Neuber","type":"Person","_key":"29968"} +{"label":"Rudolf Strobl","version":19,"id":"51443","lastModified":"1301902280000","name":"Rudolf Strobl","type":"Person","_key":"29969"} +{"label":"Ingemarie Tramm","version":19,"id":"51444","lastModified":"1301901886000","name":"Ingemarie Tramm","type":"Person","_key":"29970"} +{"label":"One Missed Call","description":"In this remake of the Japanese horror film \"Chakushin Ari\" (2003), several people start receiving voice-mails from their future selves -- messages which include the date, time, and some of the details of their deaths.","id":"6933","runtime":87,"imdbId":"tt0479968","trailer":"http:\/\/www.youtube.com\/watch?v=427","homepage":"http:\/\/onemissedcallmovie.warnerbros.com\/","version":332,"lastModified":"1301902231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4a\/4bc91e46017a3c57fe00be4a\/one-missed-call-mid.jpg","studio":"Alcon Entertainment","genre":"Horror","title":"One Missed Call","releaseDate":1199404800000,"language":"en","type":"Movie","_key":"29971"} +{"label":"Eric Valette","version":22,"id":"51445","lastModified":"1302041699000","name":"Eric Valette","type":"Person","_key":"29972"} +{"label":"Johnny Lewis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16f\/4d8e78ce5e73d65ed600116f\/johnny-lewis-profile.jpg","version":32,"id":"51455","lastModified":"1301901631000","name":"Johnny Lewis","type":"Person","_key":"29973"} +{"label":"Rhoda Griffis","version":21,"id":"51456","lastModified":"1301901886000","name":"Rhoda Griffis","type":"Person","_key":"29974"} +{"label":"Dawn Dininger","version":19,"id":"51457","lastModified":"1301902100000","name":"Dawn Dininger","type":"Person","_key":"29975"} +{"label":"Sarah Jean Kubik","version":18,"id":"51458","lastModified":"1301902166000","name":"Sarah Jean Kubik","type":"Person","_key":"29976"} +{"label":"Raegan Lamb","version":18,"id":"51459","lastModified":"1301902351000","name":"Raegan Lamb","type":"Person","_key":"29977"} +{"label":"Karen Beyer","version":20,"id":"51460","lastModified":"1301902280000","name":"Karen Beyer","type":"Person","_key":"29978"} +{"label":"Alana Locke","version":19,"id":"51461","lastModified":"1301902100000","name":"Alana Locke","type":"Person","_key":"29979"} +{"label":"Dave Spector","version":19,"id":"51462","lastModified":"1301902100000","name":"Dave Spector","type":"Person","_key":"29980"} +{"label":"Mary Lynn Owen","version":19,"id":"51463","lastModified":"1301902280000","name":"Mary Lynn Owen","type":"Person","_key":"29981"} +{"label":"Roy McCrerey","version":19,"id":"51464","lastModified":"1301902280000","name":"Roy McCrerey","type":"Person","_key":"29982"} +{"label":"Yesterday","description":"No overview found.","id":"6934","runtime":96,"imdbId":"tt0419279","version":264,"lastModified":"1301907193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5d\/4d6abff67b9aa13636002c5d\/yesterday-mid.jpg","studio":"Distant Horizons","genre":"Drama","title":"Yesterday","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"29983"} +{"label":"Darrell Roodt","version":35,"id":"16730","lastModified":"1301901331000","name":"Darrell Roodt","type":"Person","_key":"29984"} +{"label":"Kenneth Khambula","version":20,"id":"51465","lastModified":"1301901839000","name":"Kenneth Khambula","type":"Person","_key":"29985"} +{"label":"Lihle Mvelase","version":20,"id":"51466","lastModified":"1301902010000","name":"Lihle Mvelase","type":"Person","_key":"29986"} +{"label":"Camilla Walker","version":20,"id":"51467","lastModified":"1301902011000","name":"Camilla Walker","type":"Person","_key":"29987"} +{"label":"Yamakasi - Les samourais des temps modernes","description":"Une bande de jeunes athl\u00e8tes banlieusards a cr\u00e9\u00e9 sa propre discipline : l'art du d\u00e9placement. Ils bravent tous les dangers, escaladent les immeubles, effectuent des sauts vertigineux. Chaque membre a sa sp\u00e9cialit\u00e9 : Baseball est lanceur d'\u00e9lite, L'Araign\u00e9e se prend pour Spiderman, La Belette est une v\u00e9ritable anguille, Zicmu est un fou de musique, Rocket est plus rapide que l'\u00e9clair. Ils sont adoub\u00e9s nouveaux mod\u00e8les pour les plus jeunes et se livrent au jeu du chat et de la souris avec les auto","id":"6935","runtime":90,"imdbId":"tt0267129","version":133,"lastModified":"1301907155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e60\/4bc91e48017a3c57fe00be60\/yamakasi-les-samourais-des-temps-modernes-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Yamakasi - Les samourais des temps modernes","releaseDate":986342400000,"language":"en","type":"Movie","_key":"29988"} +{"label":"Ariel Zeitoun","version":23,"id":"23728","lastModified":"1301901753000","name":"Ariel Zeitoun","type":"Person","_key":"29989"} +{"label":"Julien Seri","version":23,"id":"51483","lastModified":"1301902100000","name":"Julien Seri","type":"Person","_key":"29990"} +{"label":"Ch\u00e2u Belle Dinh","version":21,"id":"51493","lastModified":"1301901667000","name":"Ch\u00e2u Belle Dinh","type":"Person","_key":"29991"} +{"label":"Williams Belle","version":22,"id":"51494","lastModified":"1301901560000","name":"Williams Belle","type":"Person","_key":"29992"} +{"label":"Malik Diouf","version":22,"id":"51495","lastModified":"1301901644000","name":"Malik Diouf","type":"Person","_key":"29993"} +{"label":"Yann Hnautra","version":22,"id":"51496","lastModified":"1301901776000","name":"Yann Hnautra","type":"Person","_key":"29994"} +{"label":"Guylain N'Guba-Boyeke","version":21,"id":"51497","lastModified":"1301901574000","name":"Guylain N'Guba-Boyeke","type":"Person","_key":"29995"} +{"label":"Charles Perri\u00e8re","version":24,"id":"51490","lastModified":"1301901574000","name":"Charles Perri\u00e8re","type":"Person","_key":"29996"} +{"label":"Laurent Piemontesi","version":22,"id":"51498","lastModified":"1301901491000","name":"Laurent Piemontesi","type":"Person","_key":"29997"} +{"label":"Maher Kamoun","version":25,"id":"51499","lastModified":"1301901566000","name":"Maher Kamoun","type":"Person","_key":"29998"} +{"label":"Bruno Flender","version":21,"id":"51500","lastModified":"1301902100000","name":"Bruno Flender","type":"Person","_key":"29999"} +{"label":"Amel Djemel","version":20,"id":"51501","lastModified":"1301902100000","name":"Amel Djemel","type":"Person","_key":"30000"} +{"label":"Afida Tahri","version":20,"id":"51502","lastModified":"1301902100000","name":"Afida Tahri","type":"Person","_key":"30001"} +{"label":"Abdelkrim Bahloul","version":22,"id":"51503","lastModified":"1301902100000","name":"Abdelkrim Bahloul","type":"Person","_key":"30002"} +{"label":"Nassim Faid","version":19,"id":"51504","lastModified":"1301902166000","name":"Nassim Faid","type":"Person","_key":"30003"} +{"label":"Pascal L\u00e9ger","version":19,"id":"51505","lastModified":"1301902166000","name":"Pascal L\u00e9ger","type":"Person","_key":"30004"} +{"label":"Fr\u00e9d\u00e9ric Pellegeay","version":20,"id":"51506","lastModified":"1301902166000","name":"Fr\u00e9d\u00e9ric Pellegeay","type":"Person","_key":"30005"} +{"label":"Ben X","description":"As an alternative to getting bullied at school, an autistic teenager retreats into the world of online role-playing games.","id":"6936","runtime":90,"imdbId":"tt0953318","trailer":"http:\/\/www.youtube.com\/watch?v=428","homepage":"http:\/\/www.benx.be\/","version":141,"lastModified":"1301902369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e69\/4bc91e48017a3c57fe00be69\/ben-x-mid.jpg","studio":"MMG Film & TV Production","genre":"Drama","title":"Ben X","releaseDate":1188086400000,"language":"en","type":"Movie","_key":"30006"} +{"label":"Nic Balthazar","version":22,"id":"51470","lastModified":"1301902370000","name":"Nic Balthazar","type":"Person","_key":"30007"} +{"label":"Greg Timmermans","version":19,"id":"51484","lastModified":"1301901803000","name":"Greg Timmermans","type":"Person","_key":"30008"} +{"label":"Laura Verlinden","version":21,"id":"51485","lastModified":"1301901581000","name":"Laura Verlinden","type":"Person","_key":"30009"} +{"label":"Marijke Pinoy","version":21,"id":"51487","lastModified":"1301901655000","name":"Marijke Pinoy","type":"Person","_key":"30010"} +{"label":"Pol Goossen","version":21,"id":"51488","lastModified":"1301901655000","name":"Pol Goossen","type":"Person","_key":"30011"} +{"label":"Titus De Voogdt","version":21,"id":"51489","lastModified":"1301901655000","name":"Titus De Voogdt","type":"Person","_key":"30012"} +{"label":"Maarten Claeyssens","version":21,"id":"51491","lastModified":"1301901960000","name":"Maarten Claeyssens","type":"Person","_key":"30013"} +{"label":"Tania Van der Sanden","version":21,"id":"51492","lastModified":"1301901655000","name":"Tania Van der Sanden","type":"Person","_key":"30014"} +{"label":"Miracle on Ice","description":"No overview found.","id":"6945","runtime":150,"imdbId":"tt0082754","version":242,"lastModified":"1301905645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2aa\/4d4899835e73d654b40002aa\/miracle-on-ice-mid.jpg","studio":"Filmways Pictures","genre":"Drama","title":"Miracle on Ice","releaseDate":352252800000,"language":"en","type":"Movie","_key":"30015"} +{"label":"Steven Hilliard Stern","version":23,"id":"51516","lastModified":"1301902357000","name":"Steven Hilliard Stern","type":"Person","_key":"30016"} +{"label":"Andrew Stevens","version":74,"id":"21479","lastModified":"1301901567000","name":"Andrew Stevens","type":"Person","_key":"30017"} +{"label":"Jerry Houser","version":25,"id":"51517","lastModified":"1301902190000","name":"Jerry Houser","type":"Person","_key":"30018"} +{"label":"Allan Miller","version":20,"id":"51518","lastModified":"1301902191000","name":"Allan Miller","type":"Person","_key":"30019"} +{"label":"Robert F. Lyons","version":27,"id":"51519","lastModified":"1301902190000","name":"Robert F. Lyons","type":"Person","_key":"30020"} +{"label":"Robert Pierce","version":20,"id":"51520","lastModified":"1301902370000","name":"Robert Pierce","type":"Person","_key":"30021"} +{"label":"For Those who hunt the Wounded down","description":"No overview found.","id":"6946","runtime":90,"imdbId":"tt0116337","version":61,"lastModified":"1301904044000","studio":"credofilm","genre":"Thriller","title":"For Those who hunt the Wounded down","releaseDate":820454400000,"language":"en","type":"Movie","_key":"30022"} +{"label":"Norma Bailey","version":21,"id":"51524","lastModified":"1301901655000","name":"Norma Bailey","type":"Person","_key":"30023"} +{"label":"Brooke Johnson","version":20,"id":"51526","lastModified":"1301902204000","name":"Brooke Johnson","type":"Person","_key":"30024"} +{"label":"Niklas Konowal","version":21,"id":"51527","lastModified":"1301902393000","name":"Niklas Konowal","type":"Person","_key":"30025"} +{"label":"Michael Hogan","version":39,"id":"47278","lastModified":"1301901803000","name":"Michael Hogan","type":"Person","_key":"30026"} +{"label":"Kelli Fox","version":20,"id":"51528","lastModified":"1301902381000","name":"Kelli Fox","type":"Person","_key":"30027"} +{"label":"The Village","description":"The population of a small, isolated countryside village believe that their alliance with the mythical creatures that inhabit the forest around them is coming to an end.","id":"6947","runtime":108,"imdbId":"tt0368447","trailer":"http:\/\/www.youtube.com\/watch?v=700","version":304,"lastModified":"1301902613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e76\/4bc91e4c017a3c57fe00be76\/the-village-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"The Village","releaseDate":1090800000000,"language":"en","type":"Movie","_key":"30028"} +{"label":"John Christopher Jones","version":21,"id":"51532","lastModified":"1301901636000","name":"John Christopher Jones","type":"Person","_key":"30029"} +{"label":"Fran Kranz","version":24,"id":"51533","lastModified":"1301901636000","name":"Fran Kranz","type":"Person","_key":"30030"} +{"label":"The Woods","description":"Set in 1965 New England, a troubled girl encounters mysterious happenings in the woods surrounding an isolated girls school that she was sent to by her estranged parents.","id":"6948","runtime":91,"imdbId":"tt0380066","version":205,"lastModified":"1301907109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e84\/4bc91e4d017a3c57fe00be84\/the-woods-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Horror","title":"The Woods","releaseDate":1136073600000,"language":"en","tagline":"Every high school has its secrets...","type":"Movie","_key":"30031"} +{"label":"Lucky McKee","version":29,"id":"51534","lastModified":"1301901655000","name":"Lucky McKee","type":"Person","_key":"30032"} +{"label":"Agnes Bruckner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4bcc8c07017a3c0f2600013f\/agnes-bruckner-profile.jpg","version":42,"id":"51536","lastModified":"1301901290000","name":"Agnes Bruckner","type":"Person","_key":"30033"} +{"label":"Lauren Birkell","version":22,"id":"51537","lastModified":"1301901815000","name":"Lauren Birkell","type":"Person","_key":"30034"} +{"label":"Emma Campbell","version":26,"id":"51538","lastModified":"1301901497000","name":"Emma Campbell","type":"Person","_key":"30035"} +{"label":"Gordon Currie","version":31,"id":"51539","lastModified":"1301902342000","name":"Gordon Currie","type":"Person","_key":"30036"} +{"label":"What's Up, Doc?","description":"A strange woman and a man competing for a research grant get mixed up in a jewel robbery and a chase for top secret papers.","id":"6949","runtime":94,"imdbId":"tt0069495","version":593,"lastModified":"1302039320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e95\/4bc91e4e017a3c57fe00be95\/what-s-up-doc-mid.jpg","studio":"Saticoy Productions","genre":"Comedy","title":"What's Up, Doc?","releaseDate":68947200000,"language":"en","type":"Movie","_key":"30037"} +{"label":"Outbreak","description":"A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House. ","id":"6950","runtime":127,"imdbId":"tt0114069","trailer":"http:\/\/www.youtube.com\/watch?v=1119","version":458,"lastModified":"1301908037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eac\/4bc91e51017a3c57fe00beac\/outbreak-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Outbreak","releaseDate":794448000000,"language":"en","type":"Movie","_key":"30038"} +{"label":"Bruce Jarchow","version":25,"id":"53005","lastModified":"1301902203000","name":"Bruce Jarchow","type":"Person","_key":"30039"} +{"label":"Turner & Hooch","description":"Scott Turner has 3 days left in the local police department before he moves to a bigger city to get some \"real\" cases, not just misdemeanors. Then Amos Reed is murdered, and Scott Turner sets himself on the case. The closest thing to a witness in the case is Amos Reed's dog, Hooch, which Scott Turner has to take care of if it's going to avoid being \"put to sleep\".","id":"6951","runtime":97,"imdbId":"tt0098536","trailer":"http:\/\/www.youtube.com\/watch?v=gHc_eaKhKlo","version":378,"lastModified":"1301904352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb9\/4bc91e52017a3c57fe00beb9\/turner-hooch-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Turner & Hooch","releaseDate":599616000000,"language":"en","type":"Movie","_key":"30040"} +{"label":"Mare Winningham","version":46,"id":"51544","lastModified":"1302036242000","name":"Mare Winningham","type":"Person","_key":"30041"} +{"label":"David Knell","version":25,"id":"41253","lastModified":"1301901813000","name":"David Knell","type":"Person","_key":"30042"} +{"label":"Mary McCusker","version":20,"id":"53011","lastModified":"1301902100000","name":"Mary McCusker","type":"Person","_key":"30043"} +{"label":"Samaritan: The Mitch Snyder Story","description":"No overview found.","id":"6955","runtime":90,"imdbId":"tt0091888","version":87,"lastModified":"1301906627000","genre":"Drama","title":"Samaritan: The Mitch Snyder Story","releaseDate":516844800000,"language":"en","type":"Movie","_key":"30044"} +{"label":"Joe Seneca","version":22,"id":"51546","lastModified":"1301901562000","name":"Joe Seneca","type":"Person","_key":"30045"} +{"label":"James Avery","version":24,"id":"51547","lastModified":"1301902190000","name":"James Avery","type":"Person","_key":"30046"} +{"label":"Jordan Charney","version":19,"id":"51549","lastModified":"1301902100000","name":"Jordan Charney","type":"Person","_key":"30047"} +{"label":"Dorothy Fielding","version":19,"id":"51550","lastModified":"1301901886000","name":"Dorothy Fielding","type":"Person","_key":"30048"} +{"label":"James Handy","version":21,"id":"51551","lastModified":"1301902100000","name":"James Handy","type":"Person","_key":"30049"} +{"label":"Waldrausch","description":"No overview found.","id":"6956","runtime":90,"imdbId":"tt0076903","version":70,"lastModified":"1301906627000","genre":"Drama","title":"Waldrausch","releaseDate":242438400000,"language":"en","type":"Movie","_key":"30050"} +{"label":"Horst H\u00e4chler","version":22,"id":"51559","lastModified":"1301901886000","name":"Horst H\u00e4chler","type":"Person","_key":"30051"} +{"label":"Alexander Stephan","version":18,"id":"51560","lastModified":"1301901667000","name":"Alexander Stephan","type":"Person","_key":"30052"} +{"label":"Rose Ren\u00e9e Roth","version":18,"id":"51562","lastModified":"1301902351000","name":"Rose Ren\u00e9e Roth","type":"Person","_key":"30053"} +{"label":"Paula Braend","version":20,"id":"51563","lastModified":"1301902370000","name":"Paula Braend","type":"Person","_key":"30054"} +{"label":"Helmuth Silbergasser","version":18,"id":"51564","lastModified":"1301902351000","name":"Helmuth Silbergasser","type":"Person","_key":"30055"} +{"label":"Hans Vonderthann","version":20,"id":"51565","lastModified":"1301902370000","name":"Hans Vonderthann","type":"Person","_key":"30056"} +{"label":"The 40 Year Old Virgin","description":"Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.","id":"6957","runtime":116,"imdbId":"tt0405422","trailer":"http:\/\/www.youtube.com\/watch?v=hysIlCVLejk","homepage":"http:\/\/www.universalstudiosentertainment.com\/the-40-year-old-virgin\/","version":572,"lastModified":"1302061908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfb\/4cd0f5385e73d65025000dfb\/the-40-year-old-virgin-mid.jpg","studio":"Apatow Productions","genre":"Comedy","title":"The 40 Year Old Virgin","releaseDate":1123718400000,"language":"en","tagline":"The longer you wait, the harder it gets.","type":"Movie","_key":"30057"} +{"label":"Romany Malco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d5\/4ce19ad55e73d60f6c0003d5\/romany-malco-profile.jpg","version":33,"id":"71530","lastModified":"1301901377000","name":"Romany Malco","type":"Person","_key":"30058"} +{"label":"Walker, Texas Ranger: Trial by Fire","description":"No overview found.","id":"6958","runtime":120,"imdbId":"tt0480273","version":101,"lastModified":"1301906613000","studio":"Norris Brothers Entertainment","genre":"Action","title":"Walker, Texas Ranger: Trial by Fire","releaseDate":1129420800000,"language":"en","type":"Movie","_key":"30059"} +{"label":"Aaron Norris","version":35,"id":"51572","lastModified":"1301901531000","name":"Aaron Norris","type":"Person","_key":"30060"} +{"label":"Chuck Norris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03a\/4bcf3257017a3c63f500003a\/chuck-norris-profile.jpg","version":83,"birthday":"-940813200000","id":"51576","birthplace":"Ryan, Oklahoma","lastModified":"1301901108000","name":"Chuck Norris","type":"Person","_key":"30061"} +{"label":"Sheree J. Wilson","version":25,"id":"51577","lastModified":"1301901599000","name":"Sheree J. Wilson","type":"Person","_key":"30062"} +{"label":"Andre Kristoff","version":20,"id":"51578","lastModified":"1301902370000","name":"Andre Kristoff","type":"Person","_key":"30063"} +{"label":"Steven Williams","version":30,"id":"51579","lastModified":"1301901782000","name":"Steven Williams","type":"Person","_key":"30064"} +{"label":"Bruce Locke","version":23,"id":"35244","lastModified":"1301901777000","name":"Bruce Locke","type":"Person","_key":"30065"} +{"label":"Janine Turner","version":27,"id":"51580","lastModified":"1301901886000","name":"Janine Turner","type":"Person","_key":"30066"} +{"label":"Clarence Gilyard Jr.","version":19,"id":"51581","lastModified":"1301902279000","name":"Clarence Gilyard Jr.","type":"Person","_key":"30067"} +{"label":"Ned Vaughn","version":20,"id":"51582","lastModified":"1301902138000","name":"Ned Vaughn","type":"Person","_key":"30068"} +{"label":"Mitchel Musso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d79\/4d1ccac65e73d6084200cd79\/mitchel-musso-profile.jpg","version":31,"id":"51583","lastModified":"1301901374000","name":"Mitchel Musso","type":"Person","_key":"30069"} +{"label":"Danilee Kelly Norris","version":19,"id":"51584","lastModified":"1301902279000","name":"Danilee Kelly Norris","type":"Person","_key":"30070"} +{"label":"Meagan Norris","version":19,"id":"51585","lastModified":"1301902279000","name":"Meagan Norris","type":"Person","_key":"30071"} +{"label":"Mike Norris","version":23,"id":"51586","lastModified":"1301902187000","name":"Mike Norris","type":"Person","_key":"30072"} +{"label":"Was Frauen tr\u00e4umen","description":"In this pre-WWII German mystery-comedy, a lovely kleptomaniac with a taste for fine jewelry is unable to resist temptation. Strangely, every time she steals something, a mysterious man pays for it. A clumsy detective begins investigating and finds a crucial clue: a strongly scented woman's glove. The perfume is an expensive scent and the detective's pal realizes that it belongs to a popular nightclub singer. The friend quickly becomes enamored of the girl, but then so does her mystery man, a not","id":"6959","runtime":81,"imdbId":"tt0024754","version":54,"lastModified":"1301906744000","studio":"Super-Film GmbH","genre":"Mystery","title":"Was Frauen tr\u00e4umen","releaseDate":-1167609600000,"language":"en","type":"Movie","_key":"30073"} +{"label":"G\u00e9za von Bolv\u00e1ry","version":17,"id":"51590","lastModified":"1301902342000","name":"G\u00e9za von Bolv\u00e1ry","type":"Person","_key":"30074"} +{"label":"Otto Wallburg","version":20,"id":"51591","lastModified":"1301902019000","name":"Otto Wallburg","type":"Person","_key":"30075"} +{"label":"Kurt Horwitz","version":20,"id":"51592","lastModified":"1301902342000","name":"Kurt Horwitz","type":"Person","_key":"30076"} +{"label":"Lya Christy","version":20,"id":"51593","lastModified":"1301902342000","name":"Lya Christy","type":"Person","_key":"30077"} +{"label":"Carl Auen","version":20,"id":"51594","lastModified":"1301902342000","name":"Carl Auen","type":"Person","_key":"30078"} +{"label":"Eric Steinbeck","version":20,"id":"51595","lastModified":"1301902342000","name":"Eric Steinbeck","type":"Person","_key":"30079"} +{"label":"Hilde Maroff","version":20,"id":"51596","lastModified":"1301902342000","name":"Hilde Maroff","type":"Person","_key":"30080"} +{"label":"Eric Helgar","version":18,"id":"51597","lastModified":"1301901980000","name":"Eric Helgar","type":"Person","_key":"30081"} +{"label":"Was ist denn blo\u00df mit Willi los?","description":"No overview found.","id":"6960","runtime":87,"imdbId":"tt0066548","version":59,"lastModified":"1301906077000","studio":"Rialto Film","genre":"Comedy","title":"Was ist denn blo\u00df mit Willi los?","releaseDate":17020800000,"language":"en","type":"Movie","_key":"30082"} +{"label":"Stella Mooney","version":19,"id":"51604","lastModified":"1301902279000","name":"Stella Mooney","type":"Person","_key":"30083"} +{"label":"Fred Howe","version":19,"id":"51606","lastModified":"1301902279000","name":"Fred Howe","type":"Person","_key":"30084"} +{"label":"Max Nosseck","version":24,"id":"51607","lastModified":"1301901854000","name":"Max Nosseck","type":"Person","_key":"30085"} +{"label":"The Wedding Date","description":"Kat Ellis is a single New Yorker who returns to her parents' house in London to be the maid of honor at her younger half sister's wedding. She is dismayed to discover that the best man is none other than her former fianc\u00e9, who unceremoniously dumped her two years ago. Anxious about confronting him and eager to impress him, she hires debonair male escort Nick Mercer to pose as her boyfriend.","id":"6961","runtime":90,"imdbId":"tt0372532","version":480,"lastModified":"1301902306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4d71c2067b9aa11493000094\/the-wedding-date-mid.jpg","studio":"Gold Circle Films","genre":"Comedy","title":"The Wedding Date","releaseDate":1107475200000,"language":"en","tagline":"Love doesn't come cheap.","type":"Movie","_key":"30086"} +{"label":"Jeremy Sheffield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/baf\/4d7ab6295e73d62836000baf\/jeremy-sheffield-profile.jpg","version":29,"id":"53013","lastModified":"1301901680000","name":"Jeremy Sheffield","type":"Person","_key":"30087"} +{"label":"Sarah Parish","version":25,"id":"17693","lastModified":"1301901997000","name":"Sarah Parish","type":"Person","_key":"30088"} +{"label":"Clare Kilner","version":23,"id":"51600","lastModified":"1301901886000","name":"Clare Kilner","type":"Person","_key":"30089"} +{"label":"Das Jesus Video","description":"An adventure that started 2000 years ago... ","id":"6962","runtime":182,"imdbId":"tt0314226","version":64,"lastModified":"1301904044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc91e5b017a3c57fe00bf05\/das-jesus-video-mid.jpg","genre":"Adventure","title":"Das Jesus Video","releaseDate":1039046400000,"language":"en","type":"Movie","_key":"30090"} +{"label":"Sebastian Niemann","version":27,"id":"51601","lastModified":"1301902155000","name":"Sebastian Niemann","type":"Person","_key":"30091"} +{"label":"The Weather Man","description":"A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.","id":"6963","runtime":101,"imdbId":"tt0384680","trailer":"http:\/\/www.youtube.com\/watch?v=i3_KgbI0PKY","version":498,"lastModified":"1301903019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f20\/4bc91e5d017a3c57fe00bf20\/the-weather-man-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Weather Man","releaseDate":1129766400000,"language":"en","type":"Movie","_key":"30092"} +{"label":"Gemmenne de la Pe\u00f1a","version":21,"id":"51609","lastModified":"1301901504000","name":"Gemmenne de la Pe\u00f1a","type":"Person","_key":"30093"} +{"label":"Michael Rispoli","version":35,"id":"18313","lastModified":"1301901201000","name":"Michael Rispoli","type":"Person","_key":"30094"} +{"label":"Judith McConnell","version":21,"id":"51610","lastModified":"1301902100000","name":"Judith McConnell","type":"Person","_key":"30095"} +{"label":"Chris Marrs","version":21,"id":"51611","lastModified":"1301901616000","name":"Chris Marrs","type":"Person","_key":"30096"} +{"label":"Something's Gotta Give","description":"Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape. ","id":"6964","runtime":128,"imdbId":"tt0337741","version":736,"lastModified":"1301903501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43f\/4d50605f7b9aa13aab00d43f\/something-s-gotta-give-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Something's Gotta Give","releaseDate":1071187200000,"language":"en","tagline":"Schmucks are people too.","type":"Movie","_key":"30097"} +{"label":"Das wei\u00dfe Abenteuer","description":"No overview found.","id":"6965","runtime":90,"imdbId":"tt0044201","version":64,"lastModified":"1301908330000","studio":"Carlton Film Export","genre":"Comedy","title":"Das wei\u00dfe Abenteuer","releaseDate":-564796800000,"language":"en","type":"Movie","_key":"30098"} +{"label":"Margot Rupp","version":18,"id":"51617","lastModified":"1301901803000","name":"Margot Rupp","type":"Person","_key":"30099"} +{"label":"Marianne Wischmann","version":19,"id":"51618","lastModified":"1301902279000","name":"Marianne Wischmann","type":"Person","_key":"30100"} +{"label":"Fee von Reichlin","version":19,"id":"51619","lastModified":"1301902279000","name":"Fee von Reichlin","type":"Person","_key":"30101"} +{"label":"Curt A. Tichy","version":19,"id":"49660","lastModified":"1301902279000","name":"Curt A. Tichy","type":"Person","_key":"30102"} +{"label":"The White Dawn","description":"No overview found.","id":"6966","runtime":110,"imdbId":"tt0072403","version":91,"lastModified":"1301906933000","studio":"American International Pictures","genre":"Action","title":"The White Dawn","releaseDate":126230400000,"language":"en","type":"Movie","_key":"30103"} +{"label":"Joanasie Salamonie","version":20,"id":"51628","lastModified":"1301901511000","name":"Joanasie Salamonie","type":"Person","_key":"30104"} +{"label":"Simonie Kopapik","version":20,"id":"51629","lastModified":"1301902360000","name":"Simonie Kopapik","type":"Person","_key":"30105"} +{"label":"Pilitak","version":20,"id":"51630","lastModified":"1301902381000","name":"Pilitak","type":"Person","_key":"30106"} +{"label":"Sagiaktok","version":20,"id":"51631","lastModified":"1301902381000","name":"Sagiaktok","type":"Person","_key":"30107"} +{"label":"Munamee Sako","version":20,"id":"51632","lastModified":"1301902381000","name":"Munamee Sako","type":"Person","_key":"30108"} +{"label":"Pitseolai Kili","version":20,"id":"51633","lastModified":"1301902193000","name":"Pitseolai Kili","type":"Person","_key":"30109"} +{"label":"Die wei\u00dfe Massai","description":"A girl, Carola, whose vacation in Kenya takes an interesting turn when she becomes infatuated with a Masai. Carola decides to leave her boyfriend to stay with her lover. There, she has to adapt to the Masai's way of life and get used to their food which includes milk mixed with blood. She also has to face her husband's attitude towards women and what he expects from a wife. Nonetheless, Carola is welcomed warmly into the tribe she has chosen to join.","id":"6967","runtime":131,"imdbId":"tt0436889","version":60,"lastModified":"1301906664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f43\/4bc91e61017a3c57fe00bf43\/die-weie-massai-mid.jpg","studio":"Constantin Film","genre":"Drama","title":"Die wei\u00dfe Massai","releaseDate":1126742400000,"language":"en","type":"Movie","_key":"30110"} +{"label":"Hermine Huntgeburth","version":24,"id":"51634","lastModified":"1301902152000","name":"Hermine Huntgeburth","type":"Person","_key":"30111"} +{"label":"Jacky Ido","version":35,"id":"51636","lastModified":"1301901107000","name":"Jacky Ido","type":"Person","_key":"30112"} +{"label":"Antonio Prester","version":19,"id":"51637","lastModified":"1301902126000","name":"Antonio Prester","type":"Person","_key":"30113"} +{"label":"Helen Namaso Lenamarken","version":19,"id":"51638","lastModified":"1301901765000","name":"Helen Namaso Lenamarken","type":"Person","_key":"30114"} +{"label":"The Baader Meinhof Complex","description":"Der Baader Meinhof Komplex depicts the political turmoil in the period from 1967 to the bloody \"Deutschen Herbst\" in 1977. The movie approaches the events based on Stefan Aust's standard work on Die Rote Armee Fraktion (RAF). The story centers on the leadership of the self named anti-fascist resistance to state violence: Andreas Baader, Ulrike Meinhof and Gudrun Ensslin.","id":"6968","runtime":150,"imdbId":"tt0765432","homepage":"http:\/\/www.bmk.film.de\/","version":329,"lastModified":"1301902740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63c\/4d1f62b85e73d66b3000163c\/der-baader-meinhof-komplex-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Action","title":"The Baader Meinhof Complex","releaseDate":1222300800000,"language":"en","type":"Movie","_key":"30115"} +{"label":"Joachim Paul Assb\u00f6ck","version":27,"id":"51651","lastModified":"1301901841000","name":"Joachim Paul Assb\u00f6ck","type":"Person","_key":"30116"} +{"label":"Ben Braun","version":27,"id":"51652","lastModified":"1301901826000","name":"Ben Braun","type":"Person","_key":"30117"} +{"label":"Jana Honczek","version":27,"id":"51653","lastModified":"1301901826000","name":"Jana Honczek","type":"Person","_key":"30118"} +{"label":"Karol Unterharnscheidt","version":27,"id":"51655","lastModified":"1301901826000","name":"Karol Unterharnscheidt","type":"Person","_key":"30119"} +{"label":"Jesus, Mary and Joey","description":"No overview found.","id":"6969","runtime":105,"imdbId":"tt0325651","homepage":"http:\/\/www.jesusmaryandjoey.com\/","version":229,"lastModified":"1302050520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/888\/4d9bd2f77b9aa16d0d000888\/jesus-mary-and-joey-mid.jpg","studio":"Federal Hill Pictures","genre":"Comedy","title":"Jesus, Mary and Joey","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"30120"} +{"label":"James Quattrochi","version":22,"id":"51656","lastModified":"1301901615000","name":"James Quattrochi","type":"Person","_key":"30121"} +{"label":"Vincent Pagano","version":22,"id":"51657","lastModified":"1301901733000","name":"Vincent Pagano","type":"Person","_key":"30122"} +{"label":"Tess Harper","version":52,"id":"41249","lastModified":"1302062429000","name":"Tess Harper","type":"Person","_key":"30123"} +{"label":"Judith Scarpone","version":20,"id":"51658","lastModified":"1301902370000","name":"Judith Scarpone","type":"Person","_key":"30124"} +{"label":"Mike Pagano","version":19,"id":"51659","lastModified":"1301902279000","name":"Mike Pagano","type":"Person","_key":"30125"} +{"label":"John Mariano","version":19,"id":"35158","lastModified":"1301901886000","name":"John Mariano","type":"Person","_key":"30126"} +{"label":"Ken Lerner","version":26,"id":"51662","lastModified":"1301902185000","name":"Ken Lerner","type":"Person","_key":"30127"} +{"label":"Sean Gunn","version":24,"id":"51663","lastModified":"1301902318000","name":"Sean Gunn","type":"Person","_key":"30128"} +{"label":"Daniel Margotta","version":18,"id":"51664","lastModified":"1301902351000","name":"Daniel Margotta","type":"Person","_key":"30129"} +{"label":"Angelo Spizzirri","version":23,"id":"77119","lastModified":"1301901442000","name":"Angelo Spizzirri","type":"Person","_key":"30130"} +{"label":"Welcome to Woop Woop","description":"A con artist escapes a deal gone wrong in New York and winds up in the Aussie outback in a strange town whose inhabitants are an oddball collection of misfits.","id":"6970","runtime":106,"imdbId":"tt0120491","version":121,"lastModified":"1301904188000","studio":"Australian Film Commission","genre":"Comedy","title":"Welcome to Woop Woop","releaseDate":863481600000,"language":"en","type":"Movie","_key":"30131"} +{"label":"Johnathon Schaech","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4c9c7b937b9aa1430b000099\/johnathon-schaech-profile.jpg","version":67,"birthday":"-9766800000","id":"51670","lastModified":"1301901136000","name":"Johnathon Schaech","type":"Person","_key":"30132"} +{"label":"Susie Porter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/544\/4cbcdac15e73d63506000544\/susie-porter-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Susie Porter<\/b> is a <a href=\"http:\/\/en.wikipedia.org\/wiki\/Logie_Award\" title=\"Logie Award\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Logie Award<\/a> winning <a href=\"http:\/\/e","version":32,"id":"51671","lastModified":"1301901605000","name":"Susie Porter","type":"Person","_key":"30133"} +{"label":"Richard Moir","version":26,"id":"51672","lastModified":"1301901652000","name":"Richard Moir","type":"Person","_key":"30134"} +{"label":"Maggie Kirkpatrick","version":18,"id":"94289","lastModified":"1301902975000","name":"Maggie Kirkpatrick","type":"Person","_key":"30135"} +{"label":"Harlow","description":"No overview found.","id":"6971","runtime":125,"imdbId":"tt0059252","version":689,"lastModified":"1301904824000","studio":"Paramount Pictures","genre":"Drama","title":"Harlow","releaseDate":-142819200000,"language":"en","type":"Movie","_key":"30136"} +{"label":"Gordon Douglas","version":49,"id":"51677","lastModified":"1301901376000","name":"Gordon Douglas","type":"Person","_key":"30137"} +{"label":"Mary Murphy","version":25,"id":"51678","lastModified":"1301901997000","name":"Mary Murphy","type":"Person","_key":"30138"} +{"label":"Australia","description":"Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.","id":"6972","runtime":165,"imdbId":"tt0455824","trailer":"http:\/\/www.youtube.com\/watch?v=ZPitcQ5mZEk","version":517,"lastModified":"1301907737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8d\/4bc91e6b017a3c57fe00bf8d\/australia-mid.jpg","studio":"Bazmark Films","genre":"Action","title":"Australia","releaseDate":1227657600000,"language":"en","type":"Movie","_key":"30139"} +{"label":"David Gulpilil","version":38,"id":"53023","lastModified":"1301901260000","name":"David Gulpilil","type":"Person","_key":"30140"} +{"label":"In the Valley of Elah","description":"A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq. ","id":"6973","runtime":124,"imdbId":"tt0478134","homepage":"http:\/\/wip.warnerbros.com\/inthevalleyofelah\/","version":380,"lastModified":"1301905898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f96\/4bc91e6c017a3c57fe00bf96\/in-the-valley-of-elah-mid.jpg","studio":"Blackfriars Bridge Films","genre":"Action","title":"In the Valley of Elah","releaseDate":1188604800000,"language":"en","tagline":"Sometimes finding the truth is easier than facing it.","type":"Movie","_key":"30141"} +{"label":"Wes Chatham","version":23,"id":"51682","lastModified":"1301901538000","name":"Wes Chatham","type":"Person","_key":"30142"} +{"label":"Jake McLaughlin","version":22,"id":"51683","lastModified":"1301901476000","name":"Jake McLaughlin","type":"Person","_key":"30143"} +{"label":"Mehcad Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/63c\/4d87ed557b9aa137c000063c\/mehcad-brooks-profile.jpg","version":35,"id":"51684","lastModified":"1301901558000","name":"Mehcad Brooks","type":"Person","_key":"30144"} +{"label":"Victor Wolf","version":22,"id":"51685","lastModified":"1301901538000","name":"Victor Wolf","type":"Person","_key":"30145"} +{"label":"The Angry Red Planet","description":"The first manned flight to Mars returns after having been out of communications since it had arrived on Mars. What would it reveal?","id":"6974","runtime":83,"imdbId":"tt0052564","trailer":"http:\/\/www.youtube.com\/watch?v=sKTUFg-QLRk","version":279,"lastModified":"1301903981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa7\/4bc91e70017a3c57fe00bfa7\/the-angry-red-planet-mid.jpg","studio":"American International Pictures","genre":"Science Fiction","title":"The Angry Red Planet","releaseDate":-312940800000,"language":"en","type":"Movie","_key":"30146"} +{"label":"Ib Melchior","version":29,"id":"51715","lastModified":"1301902155000","name":"Ib Melchior","type":"Person","_key":"30147"} +{"label":"Naura Hayden","version":20,"id":"51718","lastModified":"1301901511000","name":"Naura Hayden","type":"Person","_key":"30148"} +{"label":"J. Edward McKinley","version":20,"id":"51719","lastModified":"1301901997000","name":"J. Edward McKinley","type":"Person","_key":"30149"} +{"label":"Tom Daly","version":22,"id":"51720","lastModified":"1301902378000","name":"Tom Daly","type":"Person","_key":"30150"} +{"label":"Wenn der wei\u00dfe Flieder wieder bl\u00fcht","description":"No overview found.","id":"6975","runtime":97,"imdbId":"tt0046541","version":51,"lastModified":"1301908590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e11\/4d44d58e5e73d602b2000e11\/wenn-der-wei-e-flieder-wieder-bl-ht-mid.jpg","studio":"Berolina","genre":"Comedy","title":"Wenn der wei\u00dfe Flieder wieder bl\u00fcht","releaseDate":-508204800000,"language":"en","type":"Movie","_key":"30151"} +{"label":"Nina von Porembsky","version":20,"id":"51724","lastModified":"1301902374000","name":"Nina von Porembsky","type":"Person","_key":"30152"} +{"label":"Erika Block","version":20,"id":"51725","lastModified":"1301902182000","name":"Erika Block","type":"Person","_key":"30153"} +{"label":"Whoever Slew Auntie Roo?","description":"A demented widow lures unsuspecting children into her mansion in a bizarre \"Hansel and Gretel\" twist.","id":"6976","runtime":91,"imdbId":"tt0067983","version":77,"lastModified":"1302020135000","studio":"American International Pictures","genre":"Horror","title":"Whoever Slew Auntie Roo?","releaseDate":31536000000,"language":"en","type":"Movie","_key":"30154"} +{"label":"Chloe Franks","version":23,"id":"51729","lastModified":"1301902308000","name":"Chloe Franks","type":"Person","_key":"30155"} +{"label":"No Country for Old Men","description":"Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as violent pursuits of money and justice collide.","id":"6977","runtime":122,"imdbId":"tt0477348","trailer":"http:\/\/www.youtube.com\/watch?v=qnwNuG1ayno","homepage":"http:\/\/www.nocountryforoldmen.com\/","version":1798,"lastModified":"1302057346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e37\/4d4f5e1f7b9aa13aab00ae37\/no-country-for-old-men-mid.jpg","studio":"Paramount Vantage","genre":"Crime","title":"No Country for Old Men","releaseDate":1194566400000,"language":"en","tagline":"There are no clean getaways.","type":"Movie","_key":"30156"} +{"label":"Rodger Boyce","version":35,"id":"51732","lastModified":"1302062429000","name":"Rodger Boyce","type":"Person","_key":"30157"} +{"label":"Ana Reeder","version":35,"id":"51733","lastModified":"1302062429000","name":"Ana Reeder","type":"Person","_key":"30158"} +{"label":"Kit Gwin","version":35,"id":"51734","lastModified":"1302062429000","name":"Kit Gwin","type":"Person","_key":"30159"} +{"label":"Zach Hopkins","version":35,"id":"51735","lastModified":"1302062429000","name":"Zach Hopkins","type":"Person","_key":"30160"} +{"label":"Big Trouble in Little China","description":"When trucker Jack Burton agreed to take his friend Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for an immortal sorcerer named Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.","id":"6978","runtime":99,"imdbId":"tt0090728","trailer":"http:\/\/www.youtube.com\/watch?v=2yM3-YO7qHs","version":631,"lastModified":"1301901341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/020\/4bc91e84017a3c57fe00c020\/big-trouble-in-little-china-mid.jpg","studio":"TAFT Entertainment Pictures","genre":"Action","title":"Big Trouble in Little China","releaseDate":520646400000,"language":"en","tagline":"Adventure doesn't come any bigger!","type":"Movie","_key":"30161"} +{"label":"James Pax","version":22,"id":"53024","lastModified":"1301902307000","name":"James Pax","type":"Person","_key":"30162"} +{"label":"A tu per tu","description":"No overview found.","id":"6979","runtime":102,"imdbId":"tt0086841","version":84,"lastModified":"1301907277000","genre":"Comedy","title":"A tu per tu","releaseDate":441763200000,"language":"en","type":"Movie","_key":"30163"} +{"label":"Adriano Pappalardo","version":20,"id":"51739","lastModified":"1301901615000","name":"Adriano Pappalardo","type":"Person","_key":"30164"} +{"label":"Marisa Laurito","version":27,"id":"51740","lastModified":"1301901739000","name":"Marisa Laurito","type":"Person","_key":"30165"} +{"label":"Franco Ressel","version":25,"id":"51741","lastModified":"1301901980000","name":"Franco Ressel","type":"Person","_key":"30166"} +{"label":"Marilda Don\u00e0","version":18,"id":"51742","lastModified":"1301902370000","name":"Marilda Don\u00e0","type":"Person","_key":"30167"} +{"label":"Lucio Rosato","version":19,"id":"51743","lastModified":"1301901886000","name":"Lucio Rosato","type":"Person","_key":"30168"} +{"label":"Tracy Freeman","version":19,"id":"51745","lastModified":"1301902100000","name":"Tracy Freeman","type":"Person","_key":"30169"} +{"label":"Horse Sense","description":"No overview found.","id":"6980","runtime":92,"imdbId":"tt0219813","version":104,"lastModified":"1301908031000","studio":"Hal Roach Studios","genre":"Drama","title":"Horse Sense","releaseDate":943056000000,"language":"en","type":"Movie","_key":"30170"} +{"label":"Greg Beeman","version":33,"id":"17309","lastModified":"1301901431000","name":"Greg Beeman","type":"Person","_key":"30171"} +{"label":"Joseph Lawrence","version":34,"id":"51750","lastModified":"1301901500000","name":"Joseph Lawrence","type":"Person","_key":"30172"} +{"label":"Susan Walters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/137\/4ceea15d5e73d65318000137\/susan-walters-profile.jpg","version":21,"id":"51751","lastModified":"1301901849000","name":"Susan Walters","type":"Person","_key":"30173"} +{"label":"Leann Hunley","version":20,"id":"51752","lastModified":"1301902182000","name":"Leann Hunley","type":"Person","_key":"30174"} +{"label":"Robin Thomas","version":27,"id":"41465","lastModified":"1301901495000","name":"Robin Thomas","type":"Person","_key":"30175"} +{"label":"Jolie Jenkins","version":19,"id":"51753","lastModified":"1301902279000","name":"Jolie Jenkins","type":"Person","_key":"30176"} +{"label":"Freda Foh Shen","version":24,"id":"51754","lastModified":"1301901946000","name":"Freda Foh Shen","type":"Person","_key":"30177"} +{"label":"Ian Ogilvy","version":51,"id":"51755","lastModified":"1301901387000","name":"Ian Ogilvy","type":"Person","_key":"30178"} +{"label":"Nancy Renee","version":19,"id":"51756","lastModified":"1301902100000","name":"Nancy Renee","type":"Person","_key":"30179"} +{"label":"Mitte 30","description":"No overview found.","id":"6981","runtime":90,"imdbId":"tt1137465","version":40,"lastModified":"1301904857000","genre":"Drama","title":"Mitte 30","releaseDate":1202860800000,"language":"en","type":"Movie","_key":"30180"} +{"label":"Robert D\u00f6lle","version":21,"id":"51749","lastModified":"1301902154000","name":"Robert D\u00f6lle","type":"Person","_key":"30181"} +{"label":"The Crooked Hearts","description":"A charming but somewhat larcenous widow attempts to snare a rich bachelor through a lonely hearts club, but her scheme boomerangs into a deadly cat-and-mouse game. This marked the TV-movie debut of both Rosalind Russell and Douglas Fairbanks Jr., and was sadly also Russell's last film role.","id":"6982","runtime":74,"imdbId":"tt0068427","version":78,"lastModified":"1301906627000","studio":"Lorimar Television","genre":"Comedy","title":"The Crooked Hearts","releaseDate":90028800000,"language":"en","type":"Movie","_key":"30182"} +{"label":"Jay Sandrich","version":28,"id":"51760","lastModified":"1301901616000","name":"Jay Sandrich","type":"Person","_key":"30183"} +{"label":"Douglas Fairbanks Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33d\/4c475b367b9aa15ddf00033d\/douglas-fairbanks-jr-profile.jpg","version":35,"id":"51762","lastModified":"1301901377000","name":"Douglas Fairbanks Jr.","type":"Person","_key":"30184"} +{"label":"Ross Martin","version":20,"id":"51763","lastModified":"1301902279000","name":"Ross Martin","type":"Person","_key":"30185"} +{"label":"Kent Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4bf18326017a3c320b0002cb\/kent-smith-profile.jpg","version":39,"id":"51764","lastModified":"1301901575000","name":"Kent Smith","type":"Person","_key":"30186"} +{"label":"Patrick Campbell","version":19,"id":"51765","lastModified":"1301902100000","name":"Patrick Campbell","type":"Person","_key":"30187"} +{"label":"De Bende van Hiernaast","description":"No overview found.","id":"6983","runtime":102,"imdbId":"tt0080428","version":48,"lastModified":"1301907415000","studio":"Castor Films","genre":"Drama","title":"De Bende van Hiernaast","releaseDate":377481600000,"language":"en","type":"Movie","_key":"30188"} +{"label":"Karst van der Meulen","version":21,"id":"51768","lastModified":"1301902197000","name":"Karst van der Meulen","type":"Person","_key":"30189"} +{"label":"Harro Coppens","version":20,"id":"51770","lastModified":"1301902188000","name":"Harro Coppens","type":"Person","_key":"30190"} +{"label":"Patrick van Doorn","version":18,"id":"51771","lastModified":"1301902166000","name":"Patrick van Doorn","type":"Person","_key":"30191"} +{"label":"Liesbeth Hovius","version":20,"id":"51772","lastModified":"1301902155000","name":"Liesbeth Hovius","type":"Person","_key":"30192"} +{"label":"Ingrid Mulder","version":20,"id":"51773","lastModified":"1301902155000","name":"Ingrid Mulder","type":"Person","_key":"30193"} +{"label":"Robert Rook","version":18,"id":"51774","lastModified":"1301902350000","name":"Robert Rook","type":"Person","_key":"30194"} +{"label":"Norbert van der Zwaan","version":20,"id":"51775","lastModified":"1301902342000","name":"Norbert van der Zwaan","type":"Person","_key":"30195"} +{"label":"Femke van der Linden","version":20,"id":"51776","lastModified":"1301902155000","name":"Femke van der Linden","type":"Person","_key":"30196"} +{"label":"Joyce Oomes","version":18,"id":"51777","lastModified":"1301902166000","name":"Joyce Oomes","type":"Person","_key":"30197"} +{"label":"Home Movies","description":"No overview found.","id":"6984","runtime":90,"imdbId":"tt0079302","version":111,"lastModified":"1301906627000","genre":"Comedy","title":"Home Movies","releaseDate":349660800000,"language":"en","type":"Movie","_key":"30198"} +{"label":"Mary Davenport","version":19,"id":"51791","lastModified":"1301902100000","name":"Mary Davenport","type":"Person","_key":"30199"} +{"label":"White Noise 2: The Light","description":"A man's family brought back from the verge of death, he then discovers he can identify people who are about to die.","id":"7006","runtime":99,"imdbId":"tt0496436","version":417,"lastModified":"1301903161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4bc91e86017a3c57fe00c033\/white-noise-2-the-light-mid.jpg","studio":"Brightlight Pictures","genre":"Drama","title":"White Noise 2: The Light","releaseDate":1167955200000,"language":"en","type":"Movie","_key":"30200"} +{"label":"Patrick Lussier","version":80,"id":"27226","lastModified":"1302061539000","name":"Patrick Lussier","type":"Person","_key":"30201"} +{"label":"Nathan Fillion","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b8\/4bdf2836017a3c35b40002b8\/nathan-fillion-profile.jpg","biography":"<span style=\"font-size: 13px; line-height: 19px; font-family: sans-serif; \"><h3 style=\"color: black; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; font-weight: bold; margin-top: 0px; margin-right: 0px; margin-bottom: 0.3em; margin-left: 0px; overflow-x: hidden; overflow-y: hidden; padding-top: 0.5em; padding-bottom: 0.17em; border-bottom-width: initial; border-bottom-style: none; border-bottom-color: initi","version":69,"birthday":"38876400000","id":"51797","birthplace":"\u042d\u0434\u043c\u043e\u043d\u0442\u043e\u043d","lastModified":"1302071626000","name":"Nathan Fillion","type":"Person","_key":"30202"} +{"label":"Katee Sackhoff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4cf1a4987b9aa1449a000061\/katee-sackhoff-profile.jpg","version":34,"id":"51798","lastModified":"1301901253000","name":"Katee Sackhoff","type":"Person","_key":"30203"} +{"label":"Craig Fairbrass","version":41,"id":"51799","lastModified":"1301901208000","name":"Craig Fairbrass","type":"Person","_key":"30204"} +{"label":"Adrian Holmes","version":25,"id":"33348","lastModified":"1301901615000","name":"Adrian Holmes","type":"Person","_key":"30205"} +{"label":"Teryl Rothery","version":29,"id":"51800","lastModified":"1301901776000","name":"Teryl Rothery","type":"Person","_key":"30206"} +{"label":"William MacDonald","version":26,"id":"51801","lastModified":"1301901691000","name":"William MacDonald","type":"Person","_key":"30207"} +{"label":"Joshua Ballard","version":20,"id":"51802","lastModified":"1301901582000","name":"Joshua Ballard","type":"Person","_key":"30208"} +{"label":"David Milchard","version":19,"id":"51803","lastModified":"1301901886000","name":"David Milchard","type":"Person","_key":"30209"} +{"label":"Rising Sun","description":"A Los Angeles special liaison officer (Snipes) is called in to investigate the murder of a call-girl in the boardroom of a Japanese corporation. Accompanied by a detective with unusual knowledge of the Japanese culture (Connery), the two men must unravel the mystery behind the murder by entering an underground \"shadow world\" of futuristic technology, ancient ways and confusing loyalties.","id":"7007","runtime":129,"imdbId":"tt0107969","trailer":"http:\/\/www.youtube.com\/watch?v=iWkiVxeNJf0","version":899,"lastModified":"1301902537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4c5719725e73d63a6d000176\/rising-sun-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Rising Sun","releaseDate":743990400000,"language":"en","type":"Movie","_key":"30210"} +{"label":"Kevin Anderson","version":33,"id":"51805","lastModified":"1301902143000","name":"Kevin Anderson","type":"Person","_key":"30211"} +{"label":"Stan Egi","version":22,"id":"51806","lastModified":"1301901886000","name":"Stan Egi","type":"Person","_key":"30212"} +{"label":"Tia Carrere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4c766b717b9aa16a0900010a\/tia-carrere-profile.jpg","version":71,"id":"13445","lastModified":"1302063493000","name":"Tia Carrere","type":"Person","_key":"30213"} +{"label":"The Wilby Conspiracy","description":"Having spent 10 years in prison for nationalist activities, Shack Twala is finally ordered released by the South African Supreme Court but he finds himself almost immediately on the run after a run-in with the police. Assisted by his lawyer Rina Van Niekirk and visiting British engineer Jim Keogh, he heads for Capetown where he hopes to recover a stash of diamonds, meant to finance revolutionary activities, that he had entrusted to a dentist before his incarceration. Along the way, they are foll","id":"7008","runtime":105,"imdbId":"tt0073901","version":346,"lastModified":"1301905464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/029\/4c1d8a857b9aa126b9000029\/the-wilby-conspiracy-mid.jpg","studio":"Baum\/Dantine Productions","genre":"Drama","title":"The Wilby Conspiracy","releaseDate":160444800000,"language":"en","type":"Movie","_key":"30214"} +{"label":"Nicol Williamson","version":37,"id":"51812","lastModified":"1301901573000","name":"Nicol Williamson","type":"Person","_key":"30215"} +{"label":"Prunella Gee","version":21,"id":"51813","lastModified":"1301901676000","name":"Prunella Gee","type":"Person","_key":"30216"} +{"label":"Patrick Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/432\/4c893ee07b9aa1545f000432\/patrick-allen-profile.jpg","version":33,"id":"73980","lastModified":"1301901472000","name":"Patrick Allen","type":"Person","_key":"30217"} +{"label":"Die wilden H\u00fchner","description":"No overview found.","id":"7009","runtime":95,"imdbId":"tt0466195","version":103,"lastModified":"1301906077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7db\/4bfc1545017a3c70330007db\/die-wilden-huhner-mid.jpg","studio":"Bavaria Film","genre":"Adventure","title":"Die wilden H\u00fchner","releaseDate":1139443200000,"language":"en","type":"Movie","_key":"30218"} +{"label":"Michelle von Treuberg","version":19,"id":"51818","lastModified":"1301901538000","name":"Michelle von Treuberg","type":"Person","_key":"30219"} +{"label":"Lucie Hollmann","version":21,"id":"51819","lastModified":"1301901646000","name":"Lucie Hollmann","type":"Person","_key":"30220"} +{"label":"Paula Riemann","version":19,"id":"51820","lastModified":"1301901733000","name":"Paula Riemann","type":"Person","_key":"30221"} +{"label":"Zsa Zsa Inci B\u00fcrkle","version":19,"id":"51821","lastModified":"1301901733000","name":"Zsa Zsa Inci B\u00fcrkle","type":"Person","_key":"30222"} +{"label":"Jette Hering","version":18,"id":"51822","lastModified":"1301901803000","name":"Jette Hering","type":"Person","_key":"30223"} +{"label":"Jeremy Mockridge","version":19,"id":"51823","lastModified":"1301901886000","name":"Jeremy Mockridge","type":"Person","_key":"30224"} +{"label":"Martin Kurz","version":20,"id":"51824","lastModified":"1301902181000","name":"Martin Kurz","type":"Person","_key":"30225"} +{"label":"Lukas Steimel","version":18,"id":"51825","lastModified":"1301902166000","name":"Lukas Steimel","type":"Person","_key":"30226"} +{"label":"Lukas Engel","version":19,"id":"51826","lastModified":"1301902100000","name":"Lukas Engel","type":"Person","_key":"30227"} +{"label":"Piet Klocke","version":24,"id":"51827","lastModified":"1301901785000","name":"Piet Klocke","type":"Person","_key":"30228"} +{"label":"The Wild Geese","description":"A British multinational seeks to overthrow a vicious dictator in central Africa. It hires a band of (largely aged) mercenaries in London and sends them in to save the virtuous but imprisoned opposition leader who is also critically ill and due for execution. Just when the team has performed a perfect rescue, the multinational does a deal with the vicious dictator leaving the mercenary band to escape under their own steam and exact revenge.","id":"7010","runtime":134,"imdbId":"tt0078492","trailer":"http:\/\/www.youtube.com\/watch?v=XdplVG2fcH4","version":175,"lastModified":"1301904189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a3\/4cf3490d5e73d623850004a3\/the-wild-geese-mid.jpg","studio":"Richmond Productions","genre":"Action","title":"The Wild Geese","releaseDate":262828800000,"language":"en","type":"Movie","_key":"30229"} +{"label":"Andrew V. McLaglen","version":43,"id":"51875","lastModified":"1301901352000","name":"Andrew V. McLaglen","type":"Person","_key":"30230"} +{"label":"John Kani","version":26,"id":"51878","lastModified":"1301901582000","name":"John Kani","type":"Person","_key":"30231"} +{"label":"Jack Watson","version":33,"id":"47549","lastModified":"1301902371000","name":"Jack Watson","type":"Person","_key":"30232"} +{"label":"Kenneth Griffith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aca\/4cf92d1f7b9aa1514b001aca\/kenneth-griffith-profile.jpg","version":37,"id":"51879","lastModified":"1302011464000","name":"Kenneth Griffith","type":"Person","_key":"30233"} +{"label":"Ronald Fraser","version":26,"birthday":"-1253667600000","id":"51881","lastModified":"1301902023000","name":"Ronald Fraser","type":"Person","_key":"30234"} +{"label":"Winston Ntshona","version":26,"id":"75790","lastModified":"1301902389000","name":"Winston Ntshona","type":"Person","_key":"30235"} +{"label":"Joey","description":"No overview found.","id":"7011","runtime":94,"imdbId":"tt0089378","version":91,"lastModified":"1301906937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d9\/4d67a1e05e73d66a700018d9\/joey-mid.jpg","studio":"Balcor Film Investors","genre":"Horror","title":"Joey","releaseDate":501379200000,"language":"en","type":"Movie","_key":"30236"} +{"label":"Joshua Morrell","version":22,"id":"53027","lastModified":"1301901819000","name":"Joshua Morrell","type":"Person","_key":"30237"} +{"label":"Eva Kryll","version":22,"id":"53028","lastModified":"1301902376000","name":"Eva Kryll","type":"Person","_key":"30238"} +{"label":"Tammy Shields","version":22,"id":"53029","lastModified":"1301902342000","name":"Tammy Shields","type":"Person","_key":"30239"} +{"label":"Jan Zierold","version":22,"id":"53030","lastModified":"1301902342000","name":"Jan Zierold","type":"Person","_key":"30240"} +{"label":"Barbara Klein","version":24,"id":"26552","lastModified":"1301902155000","name":"Barbara Klein","type":"Person","_key":"30241"} +{"label":"Sean Johnson","version":22,"id":"53031","lastModified":"1301902183000","name":"Sean Johnson","type":"Person","_key":"30242"} +{"label":"Matthias Kraus","version":22,"id":"53032","lastModified":"1301902370000","name":"Matthias Kraus","type":"Person","_key":"30243"} +{"label":"Ray Kaselonis","version":22,"id":"53033","lastModified":"1301902342000","name":"Ray Kaselonis","type":"Person","_key":"30244"} +{"label":"Christine Goebbels","version":22,"id":"53034","lastModified":"1301902155000","name":"Christine Goebbels","type":"Person","_key":"30245"} +{"label":"Axel Berg","version":22,"id":"53036","lastModified":"1301902342000","name":"Axel Berg","type":"Person","_key":"30246"} +{"label":"The Day After","description":"The film portrays a fictional nuclear war between NATO forces and the Warsaw Pact that rapidly escalates into a full scale exchange between the United States and the Soviet Union, focusing on the residents of Lawrence, Kansas, and Kansas City, Missouri, as well as several family farms situated next to nearby nuclear missile silos. ","id":"7012","runtime":127,"imdbId":"tt0085404","version":338,"lastModified":"1301904444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a7\/4cde14b65e73d60e0c0000a7\/the-day-after-mid.jpg","studio":"ABC Circle Films","genre":"Action","title":"The Day After","releaseDate":438134400000,"language":"en","type":"Movie","_key":"30247"} +{"label":"John Cullum","version":23,"id":"53085","lastModified":"1301901490000","name":"John Cullum","type":"Person","_key":"30248"} +{"label":"Lori Lethin","version":21,"id":"53086","lastModified":"1301902387000","name":"Lori Lethin","type":"Person","_key":"30249"} +{"label":"William Allen Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14f\/4d24e8ca5e73d626b000014f\/william-allen-young-profile.jpg","version":34,"id":"53087","lastModified":"1301904088000","name":"William Allen Young","type":"Person","_key":"30250"} +{"label":"Lin McCarthy","version":21,"id":"53089","lastModified":"1301902363000","name":"Lin McCarthy","type":"Person","_key":"30251"} +{"label":"Themroc","description":"THEMROC revolves around a laborer (Michel Piccoli) who goes berserk after getting the sack from work: he sleeps with his sister and destroys his apartment and, after the initial astonishment, his neighbors get the same anarchic bug. This streak of non-conformism also extends to sex, as Piccoli contrives to elicit uninhibited behavior from many of the females (be they nubile or frustrated) around him \u2013 including the secretary, Marilu' Tolo, he had been caught unwittingly peeping on and subsequent","id":"7014","runtime":104,"imdbId":"tt0069369","version":77,"lastModified":"1301905713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/863\/4cfca4a55e73d6299d003863\/themroc-mid.jpg","studio":"Filmanthrope","genre":"Comedy","title":"Themroc","releaseDate":99792000000,"language":"en","type":"Movie","_key":"30252"} +{"label":"Maril\u00f9 Tolo","version":20,"id":"51839","lastModified":"1301902351000","name":"Maril\u00f9 Tolo","type":"Person","_key":"30253"} +{"label":"Francesca Romana Coluzzi","version":20,"id":"51840","lastModified":"1301902342000","name":"Francesca Romana Coluzzi","type":"Person","_key":"30254"} +{"label":"Claude Faraldo","version":21,"id":"51833","lastModified":"1301902384000","name":"Claude Faraldo","type":"Person","_key":"30255"} +{"label":"American Heart","description":"No overview found.","id":"7015","runtime":110,"imdbId":"tt0103670","version":302,"lastModified":"1301904617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb4\/4d7e31285e73d62828002fb4\/american-heart-mid.jpg","studio":"World Films Company","genre":"Crime","title":"American Heart","releaseDate":700790400000,"language":"en","type":"Movie","_key":"30256"} +{"label":"John Boylan","version":19,"id":"15904","lastModified":"1301901114000","name":"John Boylan","type":"Person","_key":"30257"} +{"label":"Jayne Entwistle","version":20,"id":"53112","lastModified":"1301901960000","name":"Jayne Entwistle","type":"Person","_key":"30258"} +{"label":"Richard Joffray","version":20,"id":"116228","lastModified":"1301902993000","name":"Richard Joffray","type":"Person","_key":"30259"} +{"label":"Martin Bell","version":23,"id":"51845","lastModified":"1301901960000","name":"Martin Bell","type":"Person","_key":"30260"} +{"label":"Feuer unter Deck","description":"No overview found.","id":"7057","runtime":93,"imdbId":"tt0076022","version":48,"lastModified":"1301908620000","studio":"DEFA","title":"Feuer unter Deck","releaseDate":297475200000,"language":"en","type":"Movie","_key":"30261"} +{"label":"Arnim M\u00fchlst\u00e4dt","version":20,"id":"27091","lastModified":"1301901570000","name":"Arnim M\u00fchlst\u00e4dt","type":"Person","_key":"30262"} +{"label":"Thomas Neumann","version":20,"id":"51862","lastModified":"1301902380000","name":"Thomas Neumann","type":"Person","_key":"30263"} +{"label":"Willi wird das Kind schon schaukeln","description":"No overview found.","id":"7070","runtime":84,"imdbId":"tt0069504","version":50,"lastModified":"1301908608000","studio":"Bavaria Film","genre":"Comedy","title":"Willi wird das Kind schon schaukeln","releaseDate":67737600000,"language":"en","type":"Movie","_key":"30264"} +{"label":"Barbara Sch\u00f6ne","version":20,"id":"51886","lastModified":"1301902376000","name":"Barbara Sch\u00f6ne","type":"Person","_key":"30265"} +{"label":"Stefan Behrens","version":20,"id":"51887","lastModified":"1301902376000","name":"Stefan Behrens","type":"Person","_key":"30266"} +{"label":"Balduin Baas","version":22,"id":"26426","lastModified":"1301901793000","name":"Balduin Baas","type":"Person","_key":"30267"} +{"label":"Uwe Seeler","version":20,"id":"51888","lastModified":"1301902374000","name":"Uwe Seeler","type":"Person","_key":"30268"} +{"label":"Winnetou III","description":"No overview found.","id":"7085","runtime":93,"imdbId":"tt0059915","version":53,"lastModified":"1301908330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b9\/4caa5af95e73d643ef0006b9\/winnetou-iii-mid.jpg","studio":"Rialto Film","genre":"Adventure","title":"Winnetou III","releaseDate":-132969600000,"language":"en","type":"Movie","_key":"30269"} +{"label":"Dusan Antonijevic","version":19,"id":"51889","lastModified":"1301902279000","name":"Dusan Antonijevic","type":"Person","_key":"30270"} +{"label":"Aleksandar Gavric","version":19,"id":"51890","lastModified":"1301902100000","name":"Aleksandar Gavric","type":"Person","_key":"30271"} +{"label":"Ilija Ivezic","version":19,"id":"51891","lastModified":"1301902279000","name":"Ilija Ivezic","type":"Person","_key":"30272"} +{"label":"Christmas in Boston","description":"Gina and Seth have been pen pals for 13 years and now will have the chance to meet. Both used their best friends pictures to send to each other and now will let their friends meet. True love is found in the end for all.","id":"7088","runtime":136,"imdbId":"tt0497025","version":386,"lastModified":"1302066099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4bc91e8c017a3c57fe00c065\/christmas-in-boston-mid.jpg","studio":"ABC Pictures","genre":"Comedy","title":"Christmas in Boston","releaseDate":1134518400000,"language":"en","type":"Movie","_key":"30273"} +{"label":"Neill Fearnley","version":22,"id":"51932","lastModified":"1301902174000","name":"Neill Fearnley","type":"Person","_key":"30274"} +{"label":"Patrick J. Adams","version":25,"id":"51935","lastModified":"1301901229000","name":"Patrick J. Adams","type":"Person","_key":"30275"} +{"label":"Jonathan Cherry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f55\/4d4d05c35e73d617c1001f55\/jonathan-cherry-profile.jpg","version":24,"id":"51937","lastModified":"1301902163000","name":"Jonathan Cherry","type":"Person","_key":"30276"} +{"label":"Shawn Lawrence","version":20,"id":"51938","lastModified":"1301901815000","name":"Shawn Lawrence","type":"Person","_key":"30277"} +{"label":"Art Hindle","version":33,"id":"41256","lastModified":"1301901366000","name":"Art Hindle","type":"Person","_key":"30278"} +{"label":"Marla Sokoloff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ef\/4be0f0f5017a3c35b50004ef\/marla-sokoloff-profile.jpg","version":46,"id":"80109","lastModified":"1301901515000","name":"Marla Sokoloff","type":"Person","_key":"30279"} +{"label":"Ken Park","description":"Ken Park focuses on several teenagers and their tormented home lives. Shawn seems to be the most conventional. Tate is brimming with psychotic rage; Claude is habitually harassed by his brutish father and coddled, rather uncomfortably, by his enormously pregnant mother. Peaches looks after her devoutly religious father, but yearns for freedom. They're all rather tight, or so they claim. ","id":"7090","runtime":97,"imdbId":"tt0209077","homepage":"http:\/\/www.kenpark.de","version":179,"lastModified":"1301903925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4bc91e8c017a3c57fe00c06e\/ken-park-mid.jpg","studio":"Busy Bee Productions","genre":"Drama","title":"Ken Park","releaseDate":1030752000000,"language":"en","type":"Movie","_key":"30280"} +{"label":"Larry Clark","version":37,"id":"51917","lastModified":"1301901260000","name":"Larry Clark","type":"Person","_key":"30281"} +{"label":"Edward Lachman","version":49,"id":"6345","lastModified":"1301901283000","name":"Edward Lachman","type":"Person","_key":"30282"} +{"label":"Stephen Jasso","version":21,"id":"51926","lastModified":"1301901400000","name":"Stephen Jasso","type":"Person","_key":"30283"} +{"label":"James Bullard","version":19,"id":"51927","lastModified":"1301901306000","name":"James Bullard","type":"Person","_key":"30284"} +{"label":"Mike Apaletegui","version":19,"id":"51928","lastModified":"1301901615000","name":"Mike Apaletegui","type":"Person","_key":"30285"} +{"label":"Adam Chubbuck","version":19,"id":"51929","lastModified":"1301901732000","name":"Adam Chubbuck","type":"Person","_key":"30286"} +{"label":"Wade Williams","version":18,"id":"51930","lastModified":"1301902370000","name":"Wade Williams","type":"Person","_key":"30287"} +{"label":"Harrison Young","version":21,"id":"51931","lastModified":"1301901733000","name":"Harrison Young","type":"Person","_key":"30288"} +{"label":"Vampire's Kiss","description":"A publishing executive is visited and bitten by a vampire and starts exhibiting erratic behavior. He pushes his secretary to extremes as he tries to come to terms with his affliction. The vampire continues to visit and drink his blood, and as his madness deepens, it begins to look as if some of the events he's experiencing may be hallucinations.","id":"7091","runtime":103,"imdbId":"tt0098577","version":154,"lastModified":"1301905080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/073\/4bc91e8f017a3c57fe00c073\/vampire-s-kiss-mid.jpg","genre":"Comedy","title":"Vampire's Kiss","releaseDate":590457600000,"language":"en","tagline":"Seduction. Romance. Murder. The things one does for love.","type":"Movie","_key":"30289"} +{"label":"Bob Lujan","version":20,"id":"51949","lastModified":"1301901733000","name":"Bob Lujan","type":"Person","_key":"30290"} +{"label":"Amy Stiller","version":26,"id":"26046","lastModified":"1301901476000","name":"Amy Stiller","type":"Person","_key":"30291"} +{"label":"Jessica Lundy","version":26,"id":"83196","lastModified":"1301902143000","name":"Jessica Lundy","type":"Person","_key":"30292"} +{"label":"Johnny Walker","version":17,"id":"103852","lastModified":"1301902637000","name":"Johnny Walker","type":"Person","_key":"30293"} +{"label":"Marc Coppola","version":17,"id":"103853","lastModified":"1301902637000","name":"Marc Coppola","type":"Person","_key":"30294"} +{"label":"David Holbrook","version":18,"id":"103855","lastModified":"1301902129000","name":"David Holbrook","type":"Person","_key":"30295"} +{"label":"Jill Gatsby","version":21,"id":"102648","lastModified":"1301903008000","name":"Jill Gatsby","type":"Person","_key":"30296"} +{"label":"Robert Bierman","version":21,"id":"51950","lastModified":"1301902100000","name":"Robert Bierman","type":"Person","_key":"30297"} +{"label":"Van Helsing: The London Assignment","description":"No overview found.","id":"7092","runtime":30,"imdbId":"tt0406310","version":124,"lastModified":"1301904236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4bcb2953017a3c4223000001\/van-helsing-the-london-assignment-mid.jpg","studio":"Universal Pictures","genre":"Animation","title":"Van Helsing: The London Assignment","releaseDate":1084233600000,"language":"en","type":"Movie","_key":"30298"} +{"label":"Sharon Bridgeman","version":21,"id":"51955","lastModified":"1301901732000","name":"Sharon Bridgeman","type":"Person","_key":"30299"} +{"label":"Scott Mosenson","version":21,"id":"51956","lastModified":"1301902100000","name":"Scott Mosenson","type":"Person","_key":"30300"} +{"label":"Julia Fletcher","version":23,"id":"51958","lastModified":"1301902149000","name":"Julia Fletcher","type":"Person","_key":"30301"} +{"label":"Vatel","description":"No overview found.","id":"7093","runtime":125,"imdbId":"tt0190861","version":571,"lastModified":"1301903113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4bc91e90017a3c57fe00c07c\/vatel-mid.jpg","studio":"Canal Plus","genre":"Drama","title":"Vatel","releaseDate":957139200000,"language":"en","type":"Movie","_key":"30302"} +{"label":"Murray Lachlan Young","version":19,"id":"51968","lastModified":"1301901886000","name":"Murray Lachlan Young","type":"Person","_key":"30303"} +{"label":"Hywel Bennett","version":26,"id":"51969","lastModified":"1301901841000","name":"Hywel Bennett","type":"Person","_key":"30304"} +{"label":"Nathalie Cerda","version":20,"id":"51971","lastModified":"1301902370000","name":"Nathalie Cerda","type":"Person","_key":"30305"} +{"label":"Jack","description":"Jack Powell suffers from an affliction that makes him grow four times faster than normal, so the 10-year-old looks like a 40-year-old man. After years of being tutored at home, Jack convinces his overprotective parents to send him to public school. The children don't know what to make of Jack, but with the help of his fifth-grade teacher, he makes an effort to win them over.","id":"7095","runtime":113,"imdbId":"tt0116669","version":107,"lastModified":"1301905964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc8\/4c7258ed7b9aa13ab8000bc8\/jack-mid.jpg","studio":"American Zoetrope","genre":"Comedy","title":"Jack","releaseDate":839548800000,"language":"en","tagline":"Jack Powell is about to tackle his biggest adventure ever... the fifth grade!","type":"Movie","_key":"30306"} +{"label":"Bill Cosby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/193\/4bf96263017a3c702a000193\/bill-cosby-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>William Henry \"Bill\" Cosby, Jr.<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> (born July 12, 1937) is an American comedian, actor, author, television producer, educator, musician and activist. A veteran stand-up performer, he got his start at various clubs; then landed a starring role in the 1960s action show, <I>I Spy<","version":42,"birthday":"-1024794000000","id":"51962","birthplace":"Philadelphia, PA, USA","lastModified":"1301901841000","name":"Bill Cosby","type":"Person","_key":"30307"} +{"label":"Fran Drescher","version":36,"id":"53122","lastModified":"1302067449000","name":"Fran Drescher","type":"Person","_key":"30308"} +{"label":"Adam Zolotin","version":21,"id":"53123","lastModified":"1301901997000","name":"Adam Zolotin","type":"Person","_key":"30309"} +{"label":"Merlin","description":"The legendary wizard tells his story of his war against Queen Mab of the Sidhe and his creation of Camelot.","id":"7096","runtime":182,"imdbId":"tt0130414","version":384,"lastModified":"1301905295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08e\/4bc91e93017a3c57fe00c08e\/merlin-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Adventure","title":"Merlin","releaseDate":893548800000,"language":"en","type":"Movie","_key":"30310"} +{"label":"Van Helsing","description":"Vampire hunter extraordinaire Dr. Van Helsing travels to a mysterious region of Eastern Europe on a quest to vanquish the big three -- Count Dracula, the Wolf Man and Frankenstein's Monster. On hand is Van Helsing's intrepid assistant, Anna, the heir to a family committed to hunting down and destroying the Count.","id":"7131","runtime":132,"imdbId":"tt0338526","trailer":"http:\/\/www.youtube.com\/watch?v=MgEbcDuFANY","version":1202,"lastModified":"1301903483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c1\/4bc91e9c017a3c57fe00c0c1\/van-helsing-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Van Helsing","releaseDate":1083542400000,"language":"en","tagline":"The One Name They All Fear.","type":"Movie","_key":"30311"} +{"label":"Josie Maran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/473\/4be09ee8017a3c35b5000473\/josie-maran-profile.jpg","version":32,"id":"74651","lastModified":"1302068741000","name":"Josie Maran","type":"Person","_key":"30312"} +{"label":"Shuler Hensley","version":37,"id":"96892","lastModified":"1302068742000","name":"Shuler Hensley","type":"Person","_key":"30313"} +{"label":"Will Kemp","version":46,"id":"54500","lastModified":"1302068742000","name":"Will Kemp","type":"Person","_key":"30314"} +{"label":"Silvia Colloca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d16\/4d27b4327b9aa134dc001d16\/silvia-colloca-profile.jpg","version":28,"id":"141492","lastModified":"1302068742000","name":"Silvia Colloca","type":"Person","_key":"30315"} +{"label":"Samuel West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bb\/4cf1d3d15e73d61e3f0003bb\/samuel-west-profile.jpg","version":49,"id":"54447","lastModified":"1302068742000","name":"Samuel West","type":"Person","_key":"30316"} +{"label":"Stephen Fisher","version":24,"id":"141493","lastModified":"1302068742000","name":"Stephen Fisher","type":"Person","_key":"30317"} +{"label":"Fire From Below","description":"Digging at a nearby cave, a careless industrialist unearths a vein of pure base Lithium and inadvertently brings it to the surface, where the Lithium combusts when coming into contact with water and begins to wreak havoc on the country side.","id":"7177","runtime":0,"imdbId":"tt1137455","version":376,"lastModified":"1301908330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ca\/4bc91e9c017a3c57fe00c0ca\/fire-from-below-mid.jpg","studio":"Andrew Stevens Entertainment","genre":"Action","title":"Fire From Below","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"30318"} +{"label":"Kevin Sorbo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d2\/4bd099b3017a3c63e80001d2\/kevin-sorbo-profile.jpg","version":63,"id":"51965","lastModified":"1301948633000","name":"Kevin Sorbo","type":"Person","_key":"30319"} +{"label":"Jim Wynorski","version":114,"id":"98132","lastModified":"1301901670000","name":"Jim Wynorski","type":"Person","_key":"30320"} +{"label":"Deadly Obsession","description":"No overview found.","id":"7178","runtime":0,"version":887,"lastModified":"1301903202000","studio":"Popcorn Productions","genre":"Horror","title":"Deadly Obsession","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"30321"} +{"label":"Shannon Richardson","version":16,"id":"53126","lastModified":"1301902342000","name":"Shannon Richardson","type":"Person","_key":"30322"} +{"label":"Zoe Simpson","version":17,"id":"53130","lastModified":"1301901960000","name":"Zoe Simpson","type":"Person","_key":"30323"} +{"label":"Heath Allyn","version":17,"id":"53131","lastModified":"1301902154000","name":"Heath Allyn","type":"Person","_key":"30324"} +{"label":"Maurice Ripke","version":17,"id":"53132","lastModified":"1301902342000","name":"Maurice Ripke","type":"Person","_key":"30325"} +{"label":"RISEN","description":"No overview found.","id":"7180","runtime":90,"imdbId":"tt0454539","homepage":"http:\/\/www.risenthemovie.com\/","version":112,"lastModified":"1301418414000","studio":"AdHoc Film Co-Op","genre":"Horror","title":"RISEN","releaseDate":1227225600000,"language":"en","type":"Movie","_key":"30326"} +{"label":"Joe Thackery","version":20,"id":"53135","lastModified":"1301902197000","name":"Joe Thackery","type":"Person","_key":"30327"} +{"label":"Jason Harper","version":20,"id":"53136","lastModified":"1301902197000","name":"Jason Harper","type":"Person","_key":"30328"} +{"label":"Mohammad Ahmed","version":21,"id":"53137","lastModified":"1301902200000","name":"Mohammad Ahmed","type":"Person","_key":"30329"} +{"label":"Stephen Lee","version":22,"id":"53138","lastModified":"1301901667000","name":"Stephen Lee","type":"Person","_key":"30330"} +{"label":"Karim Irteimeh","version":20,"id":"53139","lastModified":"1301902154000","name":"Karim Irteimeh","type":"Person","_key":"30331"} +{"label":"Audrey Davis","version":20,"id":"53140","lastModified":"1301902154000","name":"Audrey Davis","type":"Person","_key":"30332"} +{"label":"Oliver Luke","version":20,"id":"53141","lastModified":"1301902154000","name":"Oliver Luke","type":"Person","_key":"30333"} +{"label":"Lucy Glockzin","version":20,"id":"53142","lastModified":"1301902154000","name":"Lucy Glockzin","type":"Person","_key":"30334"} +{"label":"Robert Works","version":20,"id":"53144","lastModified":"1301902154000","name":"Robert Works","type":"Person","_key":"30335"} +{"label":"Robby Allen","version":20,"id":"53145","lastModified":"1301902154000","name":"Robby Allen","type":"Person","_key":"30336"} +{"label":"Damon Crump","version":20,"id":"53133","lastModified":"1301902370000","name":"Damon Crump","type":"Person","_key":"30337"} +{"label":"Dusk","description":"No overview found.","id":"7181","runtime":0,"homepage":"http:\/\/www.duskthemovie.com\/Home.html","version":74,"lastModified":"1301906111000","studio":"Foggy Notions Unlimited","genre":"Horror","title":"Dusk","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"30338"} +{"label":"Raquel Lovern","version":16,"id":"73426","lastModified":"1301901566000","name":"Raquel Lovern","type":"Person","_key":"30339"} +{"label":"Kyle Hodgkinson","version":17,"id":"53146","lastModified":"1301902155000","name":"Kyle Hodgkinson","type":"Person","_key":"30340"} +{"label":"Venom","description":"No overview found.","id":"7182","runtime":85,"imdbId":"tt0428251","version":142,"lastModified":"1301902948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4bc91e9d017a3c57fe00c0d3\/venom-mid.jpg","studio":"Collision Entertainment","genre":"Horror","title":"Venom","releaseDate":1126828800000,"language":"en","type":"Movie","_key":"30341"} +{"label":"Laura Ramsey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/500\/4be0f56d017a3c35b5000500\/laura-ramsey-profile.jpg","version":31,"id":"51975","lastModified":"1301901119000","name":"Laura Ramsey","type":"Person","_key":"30342"} +{"label":"D.J. Cotrona","version":23,"id":"51976","lastModified":"1301901634000","name":"D.J. Cotrona","type":"Person","_key":"30343"} +{"label":"Rick Cramer","version":24,"id":"51977","lastModified":"1301927020000","name":"Rick Cramer","type":"Person","_key":"30344"} +{"label":"Perfect Stranger","description":"A journalist goes undercover to ferret out businessman Harrison Hill as her best friend's killer. Posing as one of his temps, she enters into a game of online cat-and-mouse.","id":"7183","runtime":109,"imdbId":"tt0457433","version":277,"lastModified":"1301902172000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f97\/4d7a68db7b9aa11a08000f97\/perfect-stranger-mid.jpg","studio":"Revolution Films","genre":"Crime","title":"Perfect Stranger","releaseDate":1176940800000,"language":"en","type":"Movie","_key":"30345"} +{"label":"Florencia Lozano","version":27,"id":"52002","lastModified":"1301901555000","name":"Florencia Lozano","type":"Person","_key":"30346"} +{"label":"Kathleen Chalfant","version":29,"id":"52003","lastModified":"1301901948000","name":"Kathleen Chalfant","type":"Person","_key":"30347"} +{"label":"Cloverfield","description":"Cloverfield revolves around a monster attack in New York and follows the adventure of five people from the perspective of a hand-held video camera, while they try to save a friend and escape. The movie is exactly the length of a DV Tape and a sub-plot is established by showing bits and pieces of video previously recorded on the tape that is being recorded over. ","id":"7191","runtime":85,"imdbId":"tt1060277","trailer":"http:\/\/www.youtube.com\/watch?v=hMPhFVVV-Gw","homepage":"http:\/\/www.cloverfieldmovie.com\/","version":477,"lastModified":"1301902631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/110\/4bc91ea6017a3c57fe00c110\/cloverfield-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Cloverfield","releaseDate":1200441600000,"language":"en","tagline":"Some Thing Has Found Us","type":"Movie","_key":"30348"} +{"label":"Matt Reeves","version":35,"id":"32278","lastModified":"1301901314000","name":"Matt Reeves","type":"Person","_key":"30349"} +{"label":"Lizzy Caplan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a1\/4bd07d7b017a3c63e80001a1\/lizzy-caplan-profile.jpg","biography":"Elizabeth Caplan better known as Lizzy Caplan was born on June 30, 1982 in Los Angeles, CA. She is an American actress, best known for her roles in the CBS show The Class, in the 2004 film Mean Girls, and the 2008 film Cloverfield.\n\nCaplan began her television acting career in 1999, when she played the minor role of Sara on the short-lived series Freaks and Geeks. She had a series of guest appearances on other shows, and has been a guest on Sharon Osbourne's talk show. Another of her major telev","version":65,"birthday":"457394400000","id":"51988","birthplace":"Los Angeles","lastModified":"1301921699000","name":"Lizzy Caplan","type":"Person","_key":"30350"} +{"label":"Jessica Lucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46b\/4bfa6ea4017a3c702f00046b\/jessica-lucas-profile.jpg","version":33,"id":"51989","lastModified":"1301901183000","name":"Jessica Lucas","type":"Person","_key":"30351"} +{"label":"Odette Yustman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b2\/4bfa6ebc017a3c702d0004b2\/odette-yustman-profile.jpg","version":51,"id":"51992","lastModified":"1302066133000","name":"Odette Yustman","type":"Person","_key":"30352"} +{"label":"Michael Stahl-David","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b7\/4bfa6edb017a3c702d0004b7\/michael-stahl-david-profile.jpg","version":26,"id":"51991","lastModified":"1301901439000","name":"Michael Stahl-David","type":"Person","_key":"30353"} +{"label":"T.J. Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/708\/4cd9d35b7b9aa11b25000708\/t-j-miller-profile.jpg","version":80,"id":"51990","lastModified":"1301901109000","name":"T.J. Miller","type":"Person","_key":"30354"} +{"label":"Anjul Nigam","version":29,"id":"51993","lastModified":"1301901555000","name":"Anjul Nigam","type":"Person","_key":"30355"} +{"label":"Margot Farley","version":27,"id":"51994","lastModified":"1301901413000","name":"Margot Farley","type":"Person","_key":"30356"} +{"label":"Theo Rossi","version":38,"id":"51995","lastModified":"1301901510000","name":"Theo Rossi","type":"Person","_key":"30357"} +{"label":"Brian Klugman","version":29,"id":"51996","lastModified":"1301901362000","name":"Brian Klugman","type":"Person","_key":"30358"} +{"label":"Kelvin Yu","version":31,"id":"51997","lastModified":"1301901343000","name":"Kelvin Yu","type":"Person","_key":"30359"} +{"label":"Liza Lapira","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df6\/4cf5d7e05e73d6299a000df6\/liza-lapira-profile.jpg","version":51,"id":"51998","lastModified":"1301901083000","name":"Liza Lapira","type":"Person","_key":"30360"} +{"label":"Lili Mirojnick","version":27,"id":"51999","lastModified":"1301901581000","name":"Lili Mirojnick","type":"Person","_key":"30361"} +{"label":"The Forgotten","description":"No overview found.","id":"7193","runtime":91,"imdbId":"tt0097379","version":91,"lastModified":"1301908037000","genre":"Action","title":"The Forgotten","releaseDate":609552000000,"language":"en","type":"Movie","_key":"30362"} +{"label":"James Keach","version":32,"id":"408","lastModified":"1299754043000","name":"James Keach","type":"Person","_key":"30363"} +{"label":"Hardcover","description":"No overview found.","id":"7210","runtime":90,"imdbId":"tt1010313","homepage":"http:\/\/www.hardcover-derfilm.de\/","version":68,"lastModified":"1301904971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4bc91ea8017a3c57fe00c11e\/hardcover-mid.jpg","studio":"Little Shark Entertainment GmbH","genre":"Comedy","title":"Hardcover","releaseDate":1206576000000,"language":"en","type":"Movie","_key":"30364"} +{"label":"Anna Dereszowska","version":20,"id":"52007","lastModified":"1301901471000","name":"Anna Dereszowska","type":"Person","_key":"30365"} +{"label":"Thea Schnering","version":19,"id":"52008","lastModified":"1301902299000","name":"Thea Schnering","type":"Person","_key":"30366"} +{"label":"Sybille J. Schedwill","version":19,"id":"50958","lastModified":"1301901925000","name":"Sybille J. Schedwill","type":"Person","_key":"30367"} +{"label":"Jan Sosniok","version":20,"id":"52011","lastModified":"1301902299000","name":"Jan Sosniok","type":"Person","_key":"30368"} +{"label":"Filip Peeters","version":32,"id":"44366","lastModified":"1301901772000","name":"Filip Peeters","type":"Person","_key":"30369"} +{"label":"Dan in Real Life","description":"Advice columnist Dan Burns (Carell) is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent to three precocious daughters. Things get even more complicated when Dan finds out that the woman he falls in love with is actually his brother's new girlfriend. ","id":"7211","runtime":98,"imdbId":"tt0480242","trailer":"http:\/\/www.youtube.com\/watch?v=441","homepage":"http:\/\/daninreallife.movies.go.com\/","version":453,"lastModified":"1301906222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4c9c51eb5e73d66d1e00006f\/dan-in-real-life-mid.jpg","studio":"Focus Features","genre":"Comedy","title":"Dan in Real Life","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"30370"} +{"label":"Brittany Robertson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/669\/4cbdc0477b9aa138d8001669\/brittany-robertson-profile.jpg","version":30,"id":"52018","lastModified":"1301901578000","name":"Brittany Robertson","type":"Person","_key":"30371"} +{"label":"Marlene Lawston","version":21,"id":"52019","lastModified":"1301901732000","name":"Marlene Lawston","type":"Person","_key":"30372"} +{"label":"Norbert Leo Butz","version":32,"id":"52020","lastModified":"1301901530000","name":"Norbert Leo Butz","type":"Person","_key":"30373"} +{"label":"Jessica Hecht","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a52\/4c70e30b7b9aa13ab4000a52\/jessica-hecht-profile.jpg","version":35,"id":"14984","lastModified":"1301901298000","name":"Jessica Hecht","type":"Person","_key":"30374"} +{"label":"Frank Wood","version":22,"id":"52021","lastModified":"1301901941000","name":"Frank Wood","type":"Person","_key":"30375"} +{"label":"Verlobung am Wolfgangsee","description":"No overview found.","id":"7213","runtime":90,"imdbId":"tt0049915","version":43,"lastModified":"1301906172000","studio":"\u00d6sterreichische Film GmbH","genre":"Comedy","title":"Verlobung am Wolfgangsee","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"30376"} +{"label":"Wolf Albach-Retty","version":20,"id":"52067","lastModified":"1301901837000","name":"Wolf Albach-Retty","type":"Person","_key":"30377"} +{"label":"Sylvia Lund","version":20,"id":"52068","lastModified":"1301902342000","name":"Sylvia Lund","type":"Person","_key":"30378"} +{"label":"Melanie Horeschowsky","version":20,"id":"48256","lastModified":"1301902342000","name":"Melanie Horeschowsky","type":"Person","_key":"30379"} +{"label":"Coach Carter","description":"Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.","id":"7214","runtime":136,"imdbId":"tt0393162","version":577,"lastModified":"1301902763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4bc91eb0017a3c57fe00c14d\/coach-carter-mid.jpg","studio":"Coach Carter","genre":"Drama","title":"Coach Carter","releaseDate":1105574400000,"language":"en","type":"Movie","_key":"30380"} +{"label":"Robert Ri'chard","version":30,"id":"52037","lastModified":"1301901640000","name":"Robert Ri'chard","type":"Person","_key":"30381"} +{"label":"Rick Gonzalez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a29\/4cf57ff75e73d6299d000a29\/rick-gonzalez-profile.jpg","version":35,"id":"53184","lastModified":"1301901252000","name":"Rick Gonzalez","type":"Person","_key":"30382"} +{"label":"Texas Battle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a27\/4d2766de7b9aa134dc001a27\/texas-battle-profile.jpg","version":39,"id":"53185","lastModified":"1301901213000","name":"Texas Battle","type":"Person","_key":"30383"} +{"label":"Thomas Carter","version":37,"id":"52038","lastModified":"1301901401000","name":"Thomas Carter","type":"Person","_key":"30384"} +{"label":"Das Wunder von Loch Ness","description":"No overview found.","id":"7215","runtime":88,"imdbId":"tt0893522","version":62,"lastModified":"1301904236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35c\/4d29ce645e73d626be00335c\/das-wunder-von-loch-ness-mid.jpg","studio":"Rat Pack Filmproduktion GmbH","genre":"Adventure","title":"Das Wunder von Loch Ness","releaseDate":1202169600000,"language":"en","type":"Movie","_key":"30385"} +{"label":"Lukas Schust","version":23,"id":"52039","lastModified":"1301901652000","name":"Lukas Schust","type":"Person","_key":"30386"} +{"label":"Michael Rowitz","version":26,"id":"52041","lastModified":"1301901787000","name":"Michael Rowitz","type":"Person","_key":"30387"} +{"label":"Zombi Holocaust","description":"The members of an expedition in search for the last faithful of Kito, the cannibal god, land on a small island in the Moluccas (East Indies). They are soon hunted by cannibals and zombies created by the sinister Doctor O'Brien, who is experimenting with both corpses and living humans. Susan, a sexy lady in the expedition team, eventually gets the upper hand. She gains acceptance with the natives as queen of the cannibals and directs them against the mad scientist with his army of zombies.","id":"7216","runtime":90,"imdbId":"tt0079788","trailer":"http:\/\/www.youtube.com\/watch?v=VVUWevQi16w","version":180,"lastModified":"1301904913000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dc\/4c2c40c25e73d6399b0000dc\/zombi-holocaust-mid.jpg","studio":"Dania Film","genre":"Horror","title":"Zombi Holocaust","releaseDate":324864000000,"language":"en","tagline":"Not for the faint-hearted...","type":"Movie","_key":"30388"} +{"label":"Alexandra Delli Colli","version":22,"id":"52060","lastModified":"1301901578000","name":"Alexandra Delli Colli","type":"Person","_key":"30389"} +{"label":"Sherry Buchanan","version":20,"id":"52061","lastModified":"1301901268000","name":"Sherry Buchanan","type":"Person","_key":"30390"} +{"label":"Peter O'Neal","version":20,"id":"52062","lastModified":"1301901673000","name":"Peter O'Neal","type":"Person","_key":"30391"} +{"label":"Das verlorene Gesicht","description":"No overview found.","id":"7217","runtime":98,"imdbId":"tt0040938","version":51,"lastModified":"1301906626000","studio":"Neue Deutsche Filmgesellschaft","genre":"Thriller","title":"Das verlorene Gesicht","releaseDate":-666403200000,"language":"en","type":"Movie","_key":"30392"} +{"label":"Hermine K\u00f6rner","version":19,"id":"52071","lastModified":"1301901886000","name":"Hermine K\u00f6rner","type":"Person","_key":"30393"} +{"label":"Harald Mannl","version":19,"id":"52072","lastModified":"1301902100000","name":"Harald Mannl","type":"Person","_key":"30394"} +{"label":"Walter Kiaulehn","version":19,"id":"52073","lastModified":"1301902279000","name":"Walter Kiaulehn","type":"Person","_key":"30395"} +{"label":"Ruth Killer","version":19,"id":"52074","lastModified":"1301902100000","name":"Ruth Killer","type":"Person","_key":"30396"} +{"label":"Helmuth Renar","version":19,"id":"52075","lastModified":"1301902100000","name":"Helmuth Renar","type":"Person","_key":"30397"} +{"label":"Vendetta II: The New Mafia","description":"No overview found.","id":"7218","runtime":460,"imdbId":"tt0108479","version":60,"lastModified":"1301906077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/007\/4d839af77b9aa12ee1000007\/vendetta-ii-the-new-mafia-mid.jpg","studio":"Filmline International Inc.","genre":"Crime","title":"Vendetta II: The New Mafia","releaseDate":754444800000,"language":"en","type":"Movie","_key":"30398"} +{"label":"Ralph L. Thomas","version":21,"id":"52084","lastModified":"1301902279000","name":"Ralph L. Thomas","type":"Person","_key":"30399"} +{"label":"Carol Alt","version":27,"id":"52087","lastModified":"1301902147000","name":"Carol Alt","type":"Person","_key":"30400"} +{"label":"Zombi 2","description":"Strangers looking for a woman's father arrive at a tropical island where a doctor desperately searches for the cause and cure of a recent epidemic of the undead.","id":"7219","runtime":91,"imdbId":"tt0080057","trailer":"http:\/\/www.youtube.com\/watch?v=2147","version":163,"lastModified":"1301902902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4c3830ad7b9aa10edd000065\/zombi-2-mid.jpg","studio":"Variety Film Production","genre":"Horror","title":"Zombi 2","releaseDate":312768000000,"language":"en","type":"Movie","_key":"30401"} +{"label":"Al Cliver","version":36,"id":"52063","lastModified":"1301901415000","name":"Al Cliver","type":"Person","_key":"30402"} +{"label":"Auretta Gay","version":20,"id":"52064","lastModified":"1301902198000","name":"Auretta Gay","type":"Person","_key":"30403"} +{"label":"Stefania D'Amario","version":18,"id":"100411","lastModified":"1301902681000","name":"Stefania D'Amario","type":"Person","_key":"30404"} +{"label":"Omero Capanna","version":20,"id":"119370","lastModified":"1301902530000","name":"Omero Capanna","type":"Person","_key":"30405"} +{"label":"The Punisher","description":"FBI agent Frank Castle had it all: a loving family, a great life, and an adventurous job. But when all he held dear is taken away by a ruthless crime lord, Castle returns from the dead as \"The Punisher,\" serving as judge, jury and executioner.","id":"7220","runtime":124,"imdbId":"tt0330793","trailer":"http:\/\/www.youtube.com\/watch?v=jNT92z4NGSQ","version":372,"lastModified":"1301901851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/170\/4bc91eb7017a3c57fe00c170\/the-punisher-mid.jpg","studio":"Artisan Entertainment","genre":"Action","title":"The Punisher","releaseDate":1082073600000,"language":"en","tagline":"The punishment has begun","type":"Movie","_key":"30406"} +{"label":"Rebecca Romijn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49c\/4be094a6017a3c35b700049c\/rebecca-romijn-profile.jpg","version":74,"id":"11008","lastModified":"1301901122000","name":"Rebecca Romijn","type":"Person","_key":"30407"} +{"label":"James Carpinello","version":25,"id":"53198","lastModified":"1301901562000","name":"James Carpinello","type":"Person","_key":"30408"} +{"label":"Mark Collie","version":24,"id":"53199","lastModified":"1301901732000","name":"Mark Collie","type":"Person","_key":"30409"} +{"label":"Marcus Johns","version":24,"id":"53200","lastModified":"1301901676000","name":"Marcus Johns","type":"Person","_key":"30410"} +{"label":"Jonathan Hensleigh","version":76,"id":"876","lastModified":"1299542841000","name":"Jonathan Hensleigh","type":"Person","_key":"30411"} +{"label":"Airport '77","description":"Flight 23 has crashed in the Bermuda Triangle while taking VIPs and valuable art to Philip Stevens new museum. But when hijackers take off the plane and knock everyone out with sleeping gas the plane crashes in the sea. The passengers survive but a small hole at the front is flooding the plane and 2 daring rescues must be put into action because everyone is trapped 200 feet underwater.","id":"7227","runtime":114,"imdbId":"tt0075648","trailer":"http:\/\/www.youtube.com\/watch?v=6c2iMvKavN4","version":178,"lastModified":"1301903594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4bc91eb9017a3c57fe00c17e\/airport-77-mid.jpg","studio":"UFA Universum-Film AG","genre":"Action","title":"Airport '77","releaseDate":226886400000,"language":"en","type":"Movie","_key":"30412"} +{"label":"Jerry Jameson","version":23,"id":"52094","lastModified":"1301901952000","name":"Jerry Jameson","type":"Person","_key":"30413"} +{"label":"Vienna","description":"No overview found.","id":"7228","runtime":104,"imdbId":"tt0253895","version":82,"lastModified":"1301906077000","studio":"DoRo Fiction Film","genre":"Comedy","title":"Vienna","releaseDate":1031788800000,"language":"en","type":"Movie","_key":"30414"} +{"label":"Peter Gersina","version":24,"id":"52102","lastModified":"1301901787000","name":"Peter Gersina","type":"Person","_key":"30415"} +{"label":"Max Tidof","version":26,"id":"52103","lastModified":"1301901652000","name":"Max Tidof","type":"Person","_key":"30416"} +{"label":"Viola von der Burg","version":20,"id":"52104","lastModified":"1301901997000","name":"Viola von der Burg","type":"Person","_key":"30417"} +{"label":"Heio von Stetten","version":25,"id":"52105","lastModified":"1301902154000","name":"Heio von Stetten","type":"Person","_key":"30418"} +{"label":"Tais-toi !","description":"After hiding his loot and getting thrown in jail, Ruby, a brooding outlaw encounters Quentin, a dim-witted and garrulous giant who befriends him. After Quentin botches a solo escape attempt, they make a break together. Unable to shake the clumsy Quentin Ruby is forced to take him along as he pursues his former partners in crime to avenge the death of the woman he loved and get to the money.","id":"7229","runtime":85,"imdbId":"tt0310203","version":137,"lastModified":"1301902588000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18c\/4bc91eba017a3c57fe00c18c\/tais-toi-mid.jpg","studio":"UGC Images","genre":"Comedy","title":"Tais-toi !","releaseDate":1066780800000,"language":"en","type":"Movie","_key":"30419"} +{"label":"Edgar Givry","version":28,"id":"53201","lastModified":"1301901732000","name":"Edgar Givry","type":"Person","_key":"30420"} +{"label":"Jean-Pierre Malo","version":26,"id":"53202","lastModified":"1301901615000","name":"Jean-Pierre Malo","type":"Person","_key":"30421"} +{"label":"Laurent Gamelon","version":40,"id":"53203","lastModified":"1301901519000","name":"Laurent Gamelon","type":"Person","_key":"30422"} +{"label":"Vincent Moscato","version":28,"id":"53204","lastModified":"1301901599000","name":"Vincent Moscato","type":"Person","_key":"30423"} +{"label":"Francis Veber","version":120,"id":"38507","lastModified":"1301901285000","name":"Francis Veber","type":"Person","_key":"30424"} +{"label":"Viktor und Viktoria","description":"No overview found.","id":"7230","runtime":84,"imdbId":"tt0051165","version":83,"lastModified":"1301904236000","studio":"Central-Europa Film","genre":"Drama","title":"Viktor und Viktoria","releaseDate":-401155200000,"language":"en","type":"Movie","_key":"30425"} +{"label":"Franz-Otto Kr\u00fcger","version":22,"id":"52109","lastModified":"1301901959000","name":"Franz-Otto Kr\u00fcger","type":"Person","_key":"30426"} +{"label":"Rebound","description":"No overview found.","id":"7233","runtime":103,"imdbId":"tt0376108","version":244,"lastModified":"1301904762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/195\/4bc91ebe017a3c57fe00c195\/rebound-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Rebound","releaseDate":1120176000000,"language":"en","type":"Movie","_key":"30427"} +{"label":"Steve Carr","version":36,"id":"52112","lastModified":"1301901445000","name":"Steve Carr","type":"Person","_key":"30428"} +{"label":"Horatio Sanz","version":33,"id":"52117","lastModified":"1301901594000","name":"Horatio Sanz","type":"Person","_key":"30429"} +{"label":"Oren Williams","version":22,"id":"52118","lastModified":"1301901538000","name":"Oren Williams","type":"Person","_key":"30430"} +{"label":"Wizards of the Lost Kingdom","description":"No overview found.","id":"7234","runtime":79,"imdbId":"tt0090333","version":79,"lastModified":"1301417546000","studio":"Trinity Productions","genre":"Action","title":"Wizards of the Lost Kingdom","releaseDate":496972800000,"language":"en","type":"Movie","_key":"30431"} +{"label":"H\u00e9ctor Olivera","version":22,"id":"52121","lastModified":"1301901968000","name":"H\u00e9ctor Olivera","type":"Person","_key":"30432"} +{"label":"Vidal Peterson","version":22,"id":"52123","lastModified":"1301901732000","name":"Vidal Peterson","type":"Person","_key":"30433"} +{"label":"Thom Christopher","version":21,"id":"33942","lastModified":"1301901538000","name":"Thom Christopher","type":"Person","_key":"30434"} +{"label":"Barbara Stock","version":19,"id":"52124","lastModified":"1301902099000","name":"Barbara Stock","type":"Person","_key":"30435"} +{"label":"Maria Socas","version":20,"id":"52125","lastModified":"1301902137000","name":"Maria Socas","type":"Person","_key":"30436"} +{"label":"Dolores Michaels","version":22,"id":"52126","lastModified":"1301901811000","name":"Dolores Michaels","type":"Person","_key":"30437"} +{"label":"Edward Morrow","version":22,"id":"52127","lastModified":"1301902279000","name":"Edward Morrow","type":"Person","_key":"30438"} +{"label":"Augusto Larreta","version":18,"id":"52129","lastModified":"1301902370000","name":"Augusto Larreta","type":"Person","_key":"30439"} +{"label":"Michael Fontaine","version":19,"id":"52130","lastModified":"1301901886000","name":"Michael Fontaine","type":"Person","_key":"30440"} +{"label":"Marcos Woinsky","version":21,"id":"52131","lastModified":"1301901505000","name":"Marcos Woinsky","type":"Person","_key":"30441"} +{"label":"Mary Gale","version":19,"id":"52132","lastModified":"1301901886000","name":"Mary Gale","type":"Person","_key":"30442"} +{"label":"Norton Freeman","version":19,"id":"52133","lastModified":"1301902279000","name":"Norton Freeman","type":"Person","_key":"30443"} +{"label":"Wizards of the Lost Kingdom II","description":"No overview found.","id":"7237","runtime":79,"imdbId":"tt0090334","version":70,"lastModified":"1301905713000","studio":"New Classics","genre":"Action","title":"Wizards of the Lost Kingdom II","releaseDate":604713600000,"language":"en","type":"Movie","_key":"30444"} +{"label":"Charles B. Griffith","version":50,"id":"52140","lastModified":"1301902350000","name":"Charles B. Griffith","type":"Person","_key":"30445"} +{"label":"Robert Jayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36e\/4d804abf5e73d6724b00036e\/robert-jayne-profile.jpg","version":22,"id":"52141","lastModified":"1301902341000","name":"Robert Jayne","type":"Person","_key":"30446"} +{"label":"Susan Lee Hoffman","version":20,"id":"52142","lastModified":"1301902154000","name":"Susan Lee Hoffman","type":"Person","_key":"30447"} +{"label":"Blake Bahner","version":21,"id":"52143","lastModified":"1301901787000","name":"Blake Bahner","type":"Person","_key":"30448"} +{"label":"Lana Clarkson","version":26,"id":"52144","lastModified":"1301901968000","name":"Lana Clarkson","type":"Person","_key":"30449"} +{"label":"Wayne Grace","version":23,"id":"52145","lastModified":"1301901807000","name":"Wayne Grace","type":"Person","_key":"30450"} +{"label":"Edward Blackoff","version":20,"id":"52146","lastModified":"1301902378000","name":"Edward Blackoff","type":"Person","_key":"30451"} +{"label":"Diana Barton","version":20,"id":"52147","lastModified":"1301902341000","name":"Diana Barton","type":"Person","_key":"30452"} +{"label":"Family Guy Presents Stewie Griffin: The Untold Story","description":"Stewie, meets his future self and discovers that his future image is not what he has anticipated because of a near death experience.","id":"7248","runtime":88,"imdbId":"tt0385690","trailer":"http:\/\/www.youtube.com\/watch?v=1856","version":148,"lastModified":"1301903116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4cad67e15e73d6507200009a\/family-guy-presents-stewie-griffin-the-untold-story-mid.jpg","studio":"20th Century Fox","genre":"Animation","title":"Family Guy Presents Stewie Griffin: The Untold Story","releaseDate":1129507200000,"language":"en","type":"Movie","_key":"30453"} +{"label":"Seth MacFarlane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4c6b539a7b9aa13ab40001c2\/seth-macfarlane-profile.jpg","version":120,"birthday":"120438000000","id":"52139","birthplace":"Kent, Connecticut, USA","lastModified":"1301901169000","name":"Seth MacFarlane","type":"Person","_key":"30454"} +{"label":"Mila Kunis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/409\/4bfa7879017a3c7036000409\/mila-kunis-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Milena \"Mila\" Kunis,<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> <\/SPAN><SPAN class=ipa1><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN><A title=\"Wikipedia:IPA for English\" href=\"http:\/\/en.wikipedia.org\/wiki\/Wikipedia:IPA_for_English#Key\"><\/A>was born <\/SPAN><\/SPAN><I><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Mil","version":123,"birthday":"429660000000","id":"18973","birthplace":"Kiev, Ukraine, Soviet Union (now Kyiv, Ukraine) ","lastModified":"1301904036000","name":"Mila Kunis","type":"Person","_key":"30455"} +{"label":"Pete Michels","version":21,"id":"53215","lastModified":"1301901997000","name":"Pete Michels","type":"Person","_key":"30456"} +{"label":"Peter Shin","version":33,"id":"24345","lastModified":"1301901581000","name":"Peter Shin","type":"Person","_key":"30457"} +{"label":"Futurama: Bender's Big Score","description":"Futurama: Bender's Big Score is an Annie Award-winning direct-to-video film based on the animated series Futurama. It was released in the United States on November 27, 2007. Bender's Big Score, along with the three follow-up films, comprise season five of Futurama, with each film being separated into four episodes of the broadcast season. Bender's Big Score made its broadcast premiere on Comedy Central on March 23, 2008.[1] The movie was written by Ken Keeler, based on a story by Keeler and Davi","id":"7249","runtime":88,"imdbId":"tt0471711","version":189,"lastModified":"1301901635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/242\/4d40d10a5e73d65729000242\/futurama-bender-s-big-score-mid.jpg","studio":"20th Century Fox Television","genre":"Animation","title":"Futurama: Bender's Big Score","releaseDate":1196121600000,"language":"en","tagline":"Just when you thought it was safe to watch something else!","type":"Movie","_key":"30458"} +{"label":"Katey Sagal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61c\/4d7a42005e73d6282a00061c\/katey-sagal-profile.jpg","biography":"Katey Sagal (born January 19, 1954) is a multiple Golden Globe nominated American actress and singer-songwriter, best known for portraying Peggy Bundy on Married... with Children. She is known for her roles as Cate S. Hennessy on 8 Simple Rules, Turanga Leela on Futurama, Gemma Teller Morrow on Sons of Anarchy, and Helen Norwood on LOST.","version":58,"id":"18980","lastModified":"1301901179000","name":"Katey Sagal","type":"Person","_key":"30459"} +{"label":"Dwayne Carey-Hill","version":35,"id":"53216","lastModified":"1301901683000","name":"Dwayne Carey-Hill","type":"Person","_key":"30460"} +{"label":"Chin fe de yi zi shen chun zi dao","description":"Critical portrait of a director trying to make a movie.","id":"7266","runtime":96,"version":30,"lastModified":"1301906172000","studio":"Honto production","genre":"Drama","title":"Chin fe de yi zi shen chun zi dao","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"30461"} +{"label":"Niu Chengze","version":19,"id":"52166","lastModified":"1301901787000","name":"Niu Chengze","type":"Person","_key":"30462"} +{"label":"Chang Chun-ning","version":16,"id":"53221","lastModified":"1301902342000","name":"Chang Chun-ning","type":"Person","_key":"30463"} +{"label":"Ke Huan-ru","version":16,"id":"53222","lastModified":"1301902342000","name":"Ke Huan-ru","type":"Person","_key":"30464"} +{"label":"Chen His-sheng","version":16,"id":"53223","lastModified":"1301902342000","name":"Chen His-sheng","type":"Person","_key":"30465"} +{"label":"Wu Kuei-chun","version":16,"id":"53224","lastModified":"1301902342000","name":"Wu Kuei-chun","type":"Person","_key":"30466"} +{"label":"Tsai Hsin-hung","version":16,"id":"53225","lastModified":"1301902342000","name":"Tsai Hsin-hung","type":"Person","_key":"30467"} +{"label":"Tsai Hsin-hung","version":16,"id":"53226","lastModified":"1301902342000","name":"Tsai Hsin-hung","type":"Person","_key":"30468"} +{"label":"TBS","description":"Johan has been locked up - wrongly in his opinion - for the murder of his father and little sister. His mother is the only one who can prove his innocence, but he hasn't been able to contact her for years. When he is transferred within the psychiatric prison to the long-stay department, it's the last straw. He decides to escape and to go looking for his mother.","id":"7267","runtime":90,"imdbId":"tt1092019","trailer":"http:\/\/www.youtube.com\/watch?v=wstgZwdTw2g","homepage":"http:\/\/www.tbsdefilm.nl\/","version":78,"lastModified":"1301906744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bc91ec3017a3c57fe00c1ce\/tbs-mid.jpg","studio":"BNN TV","genre":"Thriller","title":"TBS","releaseDate":1201737600000,"language":"en","tagline":"Not everything is love","type":"Movie","_key":"30469"} +{"label":"Theo Maassen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/72d\/4be29d63017a3c35b700072d\/theo-maassen-profile.jpg","version":48,"id":"52167","lastModified":"1301901413000","name":"Theo Maassen","type":"Person","_key":"30470"} +{"label":"Lisa Smit","version":20,"id":"52168","lastModified":"1301901652000","name":"Lisa Smit","type":"Person","_key":"30471"} +{"label":"Pieter Kuijpers","version":21,"id":"52169","lastModified":"1301901566000","name":"Pieter Kuijpers","type":"Person","_key":"30472"} +{"label":"Nabonga","description":"No overview found.","id":"7268","runtime":75,"imdbId":"tt0037115","version":76,"lastModified":"1301906734000","studio":"Production I.G Inc.","genre":"Adventure","title":"Nabonga","releaseDate":-818467200000,"language":"en","type":"Movie","_key":"30473"} +{"label":"Sam Newfield","version":33,"id":"52172","lastModified":"1301901469000","name":"Sam Newfield","type":"Person","_key":"30474"} +{"label":"Fifi D'Orsay","version":20,"id":"52174","lastModified":"1301902214000","name":"Fifi D'Orsay","type":"Person","_key":"30475"} +{"label":"Bryant Washburn","version":20,"id":"52175","lastModified":"1301901861000","name":"Bryant Washburn","type":"Person","_key":"30476"} +{"label":"Herbert Rawlinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/232\/4c6049e57b9aa172d9000232\/herbert-rawlinson-profile.jpg","version":26,"id":"52176","lastModified":"1301901209000","name":"Herbert Rawlinson","type":"Person","_key":"30477"} +{"label":"Jackie Newfield","version":19,"id":"52177","lastModified":"1301902279000","name":"Jackie Newfield","type":"Person","_key":"30478"} +{"label":"Ray Corrigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79f\/4be2e011017a3c35b700079f\/ray-crash-corrigan-profile.jpg","version":33,"birthday":"-2142118800000","id":"52178","birthplace":"Milwaukee, Wisconsin, USA","lastModified":"1301901453000","name":"Ray Corrigan","type":"Person","_key":"30479"} +{"label":"Space Raiders","description":"No overview found.","id":"7269","runtime":84,"imdbId":"tt0086345","version":60,"lastModified":"1301905281000","studio":"Millenium Films","genre":"Action","title":"Space Raiders","releaseDate":425865600000,"language":"en","type":"Movie","_key":"30480"} +{"label":"Howard R. Cohen","version":29,"id":"52187","lastModified":"1301901793000","name":"Howard R. Cohen","type":"Person","_key":"30481"} +{"label":"Drew Snyder","version":19,"id":"52188","lastModified":"1301901886000","name":"Drew Snyder","type":"Person","_key":"30482"} +{"label":"Patsy Pease","version":19,"id":"52189","lastModified":"1301901538000","name":"Patsy Pease","type":"Person","_key":"30483"} +{"label":"Ray Stewart","version":19,"id":"52190","lastModified":"1301901886000","name":"Ray Stewart","type":"Person","_key":"30484"} +{"label":"Michael Miller","version":19,"id":"52191","lastModified":"1301901886000","name":"Michael Miller","type":"Person","_key":"30485"} +{"label":"Matchstick Men","description":"A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.","id":"7270","runtime":116,"imdbId":"tt0325805","trailer":"http:\/\/www.youtube.com\/watch?v=24JoNlaOqps","version":729,"lastModified":"1301901894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e0\/4bc91ec6017a3c57fe00c1e0\/matchstick-men-mid.jpg","studio":"Horsepower Films","genre":"Comedy","title":"Matchstick Men","releaseDate":1062460800000,"language":"en","tagline":"lie cheat steal rinse repeat","type":"Movie","_key":"30486"} +{"label":"Die Letzte Droge","description":"No overview found.","id":"7271","runtime":80,"imdbId":"tt0768206","homepage":"http:\/\/www.vebfilm.net\/","version":90,"lastModified":"1301903712000","studio":"VEB Film Leipzig","genre":"Science Fiction","title":"Die Letzte Droge","releaseDate":1154390400000,"language":"en","type":"Movie","_key":"30487"} +{"label":"Stefan Kluge","version":25,"id":"40195","lastModified":"1301901447000","name":"Stefan Kluge","type":"Person","_key":"30488"} +{"label":"Mathias Eimann","version":24,"id":"40196","lastModified":"1301901447000","name":"Mathias Eimann","type":"Person","_key":"30489"} +{"label":"Martin Gebhardt","version":20,"id":"52183","lastModified":"1301901815000","name":"Martin Gebhardt","type":"Person","_key":"30490"} +{"label":"Bettina Prokert","version":20,"id":"52184","lastModified":"1301902154000","name":"Bettina Prokert","type":"Person","_key":"30491"} +{"label":"Tobias Sorgatz","version":20,"id":"52185","lastModified":"1301901960000","name":"Tobias Sorgatz","type":"Person","_key":"30492"} +{"label":"Space Riders","description":"No overview found.","id":"7272","runtime":10,"imdbId":"tt0822028","version":99,"lastModified":"1301906108000","genre":"Drama","title":"Space Riders","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"30493"} +{"label":"Ann Marie Brennan","version":20,"id":"52195","lastModified":"1301902154000","name":"Ann Marie Brennan","type":"Person","_key":"30494"} +{"label":"Bernie Fitzgerald","version":20,"id":"52197","lastModified":"1301901960000","name":"Bernie Fitzgerald","type":"Person","_key":"30495"} +{"label":"Ciara Hogan","version":20,"id":"52198","lastModified":"1301901652000","name":"Ciara Hogan","type":"Person","_key":"30496"} +{"label":"Joe McKinney","version":20,"id":"52199","lastModified":"1301901787000","name":"Joe McKinney","type":"Person","_key":"30497"} +{"label":"Isobel Moynihan","version":20,"id":"52200","lastModified":"1301902154000","name":"Isobel Moynihan","type":"Person","_key":"30498"} +{"label":"Cian Porteus","version":20,"id":"52201","lastModified":"1301902341000","name":"Cian Porteus","type":"Person","_key":"30499"} +{"label":"Sean Paul Scally","version":18,"id":"52202","lastModified":"1301902166000","name":"Sean Paul Scally","type":"Person","_key":"30500"} +{"label":"Space Riders","description":"No overview found.","id":"7273","runtime":99,"imdbId":"tt0316649","version":67,"lastModified":"1301906626000","studio":"Condor Film Productions","genre":"Road Movie","title":"Space Riders","releaseDate":441763200000,"language":"en","type":"Movie","_key":"30501"} +{"label":"Joe Massot","version":21,"id":"52208","lastModified":"1301902099000","name":"Joe Massot","type":"Person","_key":"30502"} +{"label":"Barry Sheene","version":21,"id":"52210","lastModified":"1301902002000","name":"Barry Sheene","type":"Person","_key":"30503"} +{"label":"Toshiya Ito","version":19,"id":"52211","lastModified":"1301902279000","name":"Toshiya Ito","type":"Person","_key":"30504"} +{"label":"Stephanie McLean","version":19,"id":"52212","lastModified":"1301901886000","name":"Stephanie McLean","type":"Person","_key":"30505"} +{"label":"Sayo Inaba","version":19,"id":"52213","lastModified":"1301902279000","name":"Sayo Inaba","type":"Person","_key":"30506"} +{"label":"Caroline Evans","version":19,"id":"52214","lastModified":"1301902279000","name":"Caroline Evans","type":"Person","_key":"30507"} +{"label":"Hiroshi Kato","version":47,"id":"52215","lastModified":"1301902010000","name":"Hiroshi Kato","type":"Person","_key":"30508"} +{"label":"La Le\u00f3n","description":"No overview found.","id":"7274","runtime":85,"imdbId":"tt0971170","version":156,"lastModified":"1301907304000","studio":"Onyx Films","genre":"Drama","title":"La Le\u00f3n","releaseDate":1194220800000,"language":"en","type":"Movie","_key":"30509"} +{"label":"Jorge Rom\u00e1n","version":21,"id":"52234","lastModified":"1301902375000","name":"Jorge Rom\u00e1n","type":"Person","_key":"30510"} +{"label":"Daniel Valenzuela","version":21,"id":"52235","lastModified":"1301902355000","name":"Daniel Valenzuela","type":"Person","_key":"30511"} +{"label":"Jos\u00e9 Mu\u00f1oz","version":20,"id":"52236","lastModified":"1301902341000","name":"Jos\u00e9 Mu\u00f1oz","type":"Person","_key":"30512"} +{"label":"Diego Quiroz","version":20,"id":"52237","lastModified":"1301901960000","name":"Diego Quiroz","type":"Person","_key":"30513"} +{"label":"Daniel Sosa","version":20,"id":"52238","lastModified":"1301902154000","name":"Daniel Sosa","type":"Person","_key":"30514"} +{"label":"La Rampe","description":"No overview found.","id":"7275","runtime":7,"version":30,"lastModified":"1301904720000","studio":"Arte","genre":"Drama","title":"La Rampe","releaseDate":948326400000,"language":"en","type":"Movie","_key":"30515"} +{"label":"Jean Allain","version":16,"id":"52240","lastModified":"1301901960000","name":"Jean Allain","type":"Person","_key":"30516"} +{"label":"C\u00e9line Bodis","version":16,"id":"52241","lastModified":"1301901960000","name":"C\u00e9line Bodis","type":"Person","_key":"30517"} +{"label":"Marianne Liechty","version":16,"id":"52242","lastModified":"1301902154000","name":"Marianne Liechty","type":"Person","_key":"30518"} +{"label":"Hugo Mayer","version":16,"id":"52243","lastModified":"1301901960000","name":"Hugo Mayer","type":"Person","_key":"30519"} +{"label":"Nordeste","description":"No overview found.","id":"7276","runtime":104,"imdbId":"tt0398664","version":67,"lastModified":"1301904016000","studio":"Onyx Films","genre":"Drama","title":"Nordeste","releaseDate":1115942400000,"language":"en","type":"Movie","_key":"30520"} +{"label":"Juan Diego Solanas","version":25,"id":"52244","lastModified":"1301901732000","name":"Juan Diego Solanas","type":"Person","_key":"30521"} +{"label":"Aymar\u00e1 Rovera","version":20,"id":"52246","lastModified":"1301902181000","name":"Aymar\u00e1 Rovera","type":"Person","_key":"30522"} +{"label":"Ignacio Jim\u00e9nez","version":19,"id":"52247","lastModified":"1301901886000","name":"Ignacio Jim\u00e9nez","type":"Person","_key":"30523"} +{"label":"Il Gigante di Metropolis","description":"No overview found.","id":"7277","runtime":92,"imdbId":"tt0054924","version":53,"lastModified":"1301906077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e9\/4bc91ec7017a3c57fe00c1e9\/il-gigante-di-metropolis-mid.jpg","studio":"Centroproduzione SpA","genre":"Adventure","title":"Il Gigante di Metropolis","releaseDate":-199929600000,"language":"en","type":"Movie","_key":"30524"} +{"label":"Umberto Scarpelli","version":21,"id":"52248","lastModified":"1301902279000","name":"Umberto Scarpelli","type":"Person","_key":"30525"} +{"label":"Bella Cortez","version":19,"id":"52254","lastModified":"1301902279000","name":"Bella Cortez","type":"Person","_key":"30526"} +{"label":"Furio Meniconi","version":18,"id":"52255","lastModified":"1301901851000","name":"Furio Meniconi","type":"Person","_key":"30527"} +{"label":"Marietto","version":21,"id":"52256","lastModified":"1301902308000","name":"Marietto","type":"Person","_key":"30528"} +{"label":"Meet the Spartans","description":"From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies, ","id":"7278","runtime":84,"imdbId":"tt1073498","trailer":"http:\/\/www.youtube.com\/watch?v=447","homepage":"http:\/\/www.meetthespartans.com\/","version":593,"lastModified":"1301902178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f2\/4bc91ec7017a3c57fe00c1f2\/meet-the-spartans-mid.jpg","studio":"Regency Enterprises","genre":"Comedy","title":"Meet the Spartans","releaseDate":1201132800000,"language":"en","tagline":"The Bigger the Hit, The Harder They Fall","type":"Movie","_key":"30529"} +{"label":"Jason Friedberg","version":83,"id":"35694","lastModified":"1301901247000","name":"Jason Friedberg","type":"Person","_key":"30530"} +{"label":"Aaron Seltzer","version":76,"id":"35734","lastModified":"1301901324000","name":"Aaron Seltzer","type":"Person","_key":"30531"} +{"label":"Sean Maguire","version":27,"id":"52262","lastModified":"1301901430000","name":"Sean Maguire","type":"Person","_key":"30532"} +{"label":"Search for the Jewel of Polaris: Mysterious Museum","description":"No overview found.","id":"7279","runtime":91,"imdbId":"tt0228620","version":60,"lastModified":"1301904723000","studio":"Kushner-Locke Productions","genre":"Fantasy","title":"Search for the Jewel of Polaris: Mysterious Museum","releaseDate":915148800000,"language":"en","type":"Movie","_key":"30533"} +{"label":"David Schmoeller","version":40,"id":"52268","lastModified":"1301902159000","name":"David Schmoeller","type":"Person","_key":"30534"} +{"label":"A.J. Trauth","version":20,"id":"52270","lastModified":"1301901969000","name":"A.J. Trauth","type":"Person","_key":"30535"} +{"label":"Brianna Brown","version":25,"id":"52271","lastModified":"1301901793000","name":"Brianna Brown","type":"Person","_key":"30536"} +{"label":"Megan Lusk","version":20,"id":"52272","lastModified":"1301902370000","name":"Megan Lusk","type":"Person","_key":"30537"} +{"label":"Michael Lee Gogin","version":20,"id":"52273","lastModified":"1301902347000","name":"Michael Lee Gogin","type":"Person","_key":"30538"} +{"label":"John Duerler","version":23,"id":"52274","lastModified":"1301901569000","name":"John Duerler","type":"Person","_key":"30539"} +{"label":"Adrian Neil","version":21,"id":"52275","lastModified":"1301901997000","name":"Adrian Neil","type":"Person","_key":"30540"} +{"label":"The Last Lear","description":"The film starts with the veteran thespian Harish Mishra, he is gravely ill. The punishments of a film shoot have left the old man in a coma. His co-star, Shabnam, is wracked with worry, but their director, Siddharth, keeps strangely distant and refuses to visit his ailing star. In flashbacks, their story emerges.","id":"7280","runtime":120,"imdbId":"tt1039969","version":367,"lastModified":"1301905308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a3\/4bf46718017a3c320f0006a3\/the-last-lear-mid.jpg","studio":"Planman Motion Pictures","genre":"Drama","title":"The Last Lear","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"30541"} +{"label":"Arjun Rampal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4c4f258b5e73d62ec6000125\/arjun-rampal-profile.jpg","version":47,"id":"52263","lastModified":"1301901419000","name":"Arjun Rampal","type":"Person","_key":"30542"} +{"label":"Rituparno Ghosh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4c4a52d45e73d6270f000188\/rituparno-ghosh-profile.jpg","version":25,"id":"52264","lastModified":"1301901497000","name":"Rituparno Ghosh","type":"Person","_key":"30543"} +{"label":"Der WiXXer","description":"No overview found.","id":"7281","runtime":85,"imdbId":"tt0313021","version":78,"lastModified":"1301906662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc91ec8017a3c57fe00c1fb\/der-wixxer-mid.jpg","studio":"Rat Pack Filmproduktion GmbH","genre":"Comedy","title":"Der WiXXer","releaseDate":1084147200000,"language":"en","type":"Movie","_key":"30544"} +{"label":"Olli Dittrich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d5d\/4cfd168e7b9aa15149003d5d\/olli-dittrich-profile.jpg","version":25,"id":"52266","lastModified":"1301901577000","name":"Olli Dittrich","type":"Person","_key":"30545"} +{"label":"Password","description":"No overview found.","id":"7282","runtime":90,"version":48,"lastModified":"1300978518000","genre":"Horror","title":"Password","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"30546"} +{"label":"Gianni Petrizzo","version":16,"id":"52277","lastModified":"1301902005000","name":"Gianni Petrizzo","type":"Person","_key":"30547"} +{"label":"Alfonso Rubini","version":16,"id":"52278","lastModified":"1301901960000","name":"Alfonso Rubini","type":"Person","_key":"30548"} +{"label":"Dalana Rizzo","version":16,"id":"52279","lastModified":"1301901960000","name":"Dalana Rizzo","type":"Person","_key":"30549"} +{"label":"Ennio Grattacaso","version":16,"id":"52280","lastModified":"1301901960000","name":"Ennio Grattacaso","type":"Person","_key":"30550"} +{"label":"Duplex","description":"When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!","id":"7288","runtime":89,"imdbId":"tt0266489","version":178,"lastModified":"1301902973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/204\/4bc91ec9017a3c57fe00c204\/duplex-mid.jpg","studio":"Red Hour Films","genre":"Action","title":"Duplex","releaseDate":1064534400000,"language":"en","type":"Movie","_key":"30551"} +{"label":"Eileen Essell","version":22,"id":"52313","lastModified":"1301901446000","name":"Eileen Essell","type":"Person","_key":"30552"} +{"label":"Undici giorni, undici notti 2","description":"No overview found.","id":"7289","runtime":90,"imdbId":"tt0297447","version":48,"lastModified":"1301904016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20e\/4bc91eca017a3c57fe00c20e\/undici-giorni-undici-notti-2-mid.jpg","studio":"Filmirage S.r.l.","genre":"Drama","title":"Undici giorni, undici notti 2","releaseDate":631152000000,"language":"en","type":"Movie","_key":"30553"} +{"label":"Kristine Rose","version":20,"id":"52315","lastModified":"1301902127000","name":"Kristine Rose","type":"Person","_key":"30554"} +{"label":"Ruth Collins","version":24,"id":"52316","lastModified":"1301901638000","name":"Ruth Collins","type":"Person","_key":"30555"} +{"label":"Frederick Lewis","version":19,"id":"52317","lastModified":"1301901886000","name":"Frederick Lewis","type":"Person","_key":"30556"} +{"label":"Maurice Dupr\u00e9","version":18,"id":"52318","lastModified":"1301901980000","name":"Maurice Dupr\u00e9","type":"Person","_key":"30557"} +{"label":"Kristin Cuadraro","version":19,"id":"52319","lastModified":"1301901886000","name":"Kristin Cuadraro","type":"Person","_key":"30558"} +{"label":"Alex Dexter","version":19,"id":"52320","lastModified":"1301901886000","name":"Alex Dexter","type":"Person","_key":"30559"} +{"label":"Fred Woodruff","version":19,"id":"52321","lastModified":"1301902279000","name":"Fred Woodruff","type":"Person","_key":"30560"} +{"label":"James Jackson","version":19,"id":"52322","lastModified":"1301902099000","name":"James Jackson","type":"Person","_key":"30561"} +{"label":"Garyn Charlet","version":19,"id":"52323","lastModified":"1301902279000","name":"Garyn Charlet","type":"Person","_key":"30562"} +{"label":"Russell Pottharst","version":19,"id":"52324","lastModified":"1301901732000","name":"Russell Pottharst","type":"Person","_key":"30563"} +{"label":"2001: A Space Travesty","description":"Leslie Nielsen once again plays a bumbling detective in the vein of the 'Naked Gun' movies, but this time as Marshall Richard 'Dick' Dix. When odd reports are received through official channels stating that the President of the United States is being held captive on a secret international moon base called Vegan and that he has been replaced on Earth by a clone, the US Marshall Service immediately sends their 'best' man, Dix, on the mission. Dix travels to Vegan to rescue the president, but is qu","id":"7290","runtime":99,"imdbId":"tt0157262","trailer":"http:\/\/www.youtube.com\/watch?v=12iTQ7k265o","version":278,"lastModified":"1301953158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/217\/4bc91eca017a3c57fe00c217\/2001-a-space-travesty-mid.jpg","studio":"Cinevent","genre":"Comedy","title":"2001: A Space Travesty","releaseDate":972950400000,"language":"en","tagline":"The Most Outer Spaced-Out Comedy Ever!","type":"Movie","_key":"30564"} +{"label":"Allan A. Goldstein","version":24,"id":"52325","lastModified":"1301901886000","name":"Allan A. Goldstein","type":"Person","_key":"30565"} +{"label":"Oph\u00e9lie Winter","version":32,"id":"52328","lastModified":"1301901980000","name":"Oph\u00e9lie Winter","type":"Person","_key":"30566"} +{"label":"Ezio Greggio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d2\/4bfc3096017a3c70370007d2\/ezio-greggio-profile.jpg","biography":"Ezio Greggio (Cossato, 7 aprile 1954) \u00e8 un attore, regista e conduttore televisivo italiano. \u00c8 anche iscritto all'ordine dei giornalisti","version":35,"birthday":"-496630800000","id":"52329","birthplace":"Cossato, Biella, italy","lastModified":"1301901346000","name":"Ezio Greggio","type":"Person","_key":"30567"} +{"label":"Alexandra Kamp-Groeneveld","version":28,"id":"52330","lastModified":"1301902034000","name":"Alexandra Kamp-Groeneveld","type":"Person","_key":"30568"} +{"label":"Damien Masson","version":24,"id":"52331","lastModified":"1301902099000","name":"Damien Masson","type":"Person","_key":"30569"} +{"label":"Pierre Edwards","version":25,"id":"52332","lastModified":"1301902099000","name":"Pierre Edwards","type":"Person","_key":"30570"} +{"label":"Sam Stone","version":25,"id":"52333","lastModified":"1301901669000","name":"Sam Stone","type":"Person","_key":"30571"} +{"label":"Verona Pooth","version":24,"id":"52334","lastModified":"1301902166000","name":"Verona Pooth","type":"Person","_key":"30572"} +{"label":"Tommy Schnurmacher","version":24,"id":"52335","lastModified":"1301901886000","name":"Tommy Schnurmacher","type":"Person","_key":"30573"} +{"label":"Teresa Barnwell","version":24,"id":"52336","lastModified":"1301902099000","name":"Teresa Barnwell","type":"Person","_key":"30574"} +{"label":"36","description":"The Film takes place in Paris,where two cops are competing for the vacant seat of chief of police while in the middle of a search for a gang of violent thieves. The movie is directed by Olivier Marchal,a former police officer who spent 12 years with the french police before creating this story,which in part is taken from real facts that happened during the 1980's in France. ","id":"7291","runtime":110,"imdbId":"tt0390808","version":133,"lastModified":"1301903245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/220\/4bc91ecd017a3c57fe00c220\/36-quai-des-orfevres-mid.jpg","studio":"Gaumont","genre":"Crime","title":"36","releaseDate":1101254400000,"language":"en","type":"Movie","_key":"30575"} +{"label":"Olivier Marchal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dee\/4d1260025e73d6082e000dee\/olivier-marchal-profile.jpg","version":66,"id":"52342","lastModified":"1301901294000","name":"Olivier Marchal","type":"Person","_key":"30576"} +{"label":"Francis Renaud","version":45,"id":"52346","lastModified":"1301901255000","name":"Francis Renaud","type":"Person","_key":"30577"} +{"label":"Catherine Marchal","version":28,"id":"52347","lastModified":"1301901210000","name":"Catherine Marchal","type":"Person","_key":"30578"} +{"label":"Guy Lecluyse","version":43,"id":"52348","lastModified":"1301901151000","name":"Guy Lecluyse","type":"Person","_key":"30579"} +{"label":"Seven Mummies","description":"No overview found.","id":"7292","runtime":90,"imdbId":"tt0415345","version":112,"lastModified":"1301904016000","studio":"Pretty Dangerous Films","genre":"Action","title":"Seven Mummies","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"30580"} +{"label":"Nick Quested","version":17,"id":"52363","lastModified":"1301901732000","name":"Nick Quested","type":"Person","_key":"30581"} +{"label":"Cerina Vincent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4bcc8383017a3c0f32000134\/cerina-vincent-profile.jpg","version":39,"id":"52365","lastModified":"1301901465000","name":"Cerina Vincent","type":"Person","_key":"30582"} +{"label":"James Intveld","version":22,"id":"52367","lastModified":"1301902279000","name":"James Intveld","type":"Person","_key":"30583"} +{"label":"Noel Gugliemi","version":32,"id":"53252","lastModified":"1301901948000","name":"Noel Gugliemi","type":"Person","_key":"30584"} +{"label":"The Man Without a Past","description":"The second part of Aki Kaurism\u00e4ki's \"Finland\" trilogy, the film follows a man who arrives in Helsinki and gets beaten up so severely he develops amnesia. Unable to remember his name or anything from his past life, he cannot get a job or an apartment, so he starts living on the outskirts of the city and slowly starts putting his life back on track.","id":"7294","runtime":97,"imdbId":"tt0311519","version":167,"lastModified":"1301905388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/632\/4d1370a85e73d6083e001632\/mies-vailla-menneisyytt-mid.jpg","studio":"Pandora Filmproduktion","genre":"Comedy","title":"The Man Without a Past","releaseDate":1014940800000,"language":"en","type":"Movie","_key":"30585"} +{"label":"Markku Peltola","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81e\/4d28c4715e73d626bc00281e\/markku-peltola-profile.jpg","version":29,"id":"52355","lastModified":"1301901658000","name":"Markku Peltola","type":"Person","_key":"30586"} +{"label":"Juhani Niemel\u00e4","version":25,"id":"52356","lastModified":"1301901842000","name":"Juhani Niemel\u00e4","type":"Person","_key":"30587"} +{"label":"Kaija Pakarinen","version":22,"id":"52357","lastModified":"1301901842000","name":"Kaija Pakarinen","type":"Person","_key":"30588"} +{"label":"8MM 2","description":"An American diplomat and his fianc\u00e9e venture into the sordid underworld of sex and pornography in Budapest, Hungary to find out who is blackmailing them with a porno video taken of them with a prostitute.","id":"7295","runtime":106,"imdbId":"tt0448172","version":182,"lastModified":"1301905681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/232\/4bc91ece017a3c57fe00c232\/8mm-2-mid.jpg","studio":"Screen Gems, Inc.","genre":"Crime","title":"8MM 2","releaseDate":1132617600000,"language":"en","type":"Movie","_key":"30589"} +{"label":"J.S. Cardone","version":52,"id":"52371","lastModified":"1301901560000","name":"J.S. Cardone","type":"Person","_key":"30590"} +{"label":"Valentine Pelka","version":26,"id":"52375","lastModified":"1301901602000","name":"Valentine Pelka","type":"Person","_key":"30591"} +{"label":"Alex Scarlis","version":20,"id":"52376","lastModified":"1301901803000","name":"Alex Scarlis","type":"Person","_key":"30592"} +{"label":"Germanikus","description":"No overview found.","id":"7296","runtime":86,"imdbId":"tt0291943","version":59,"lastModified":"1301908051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ba\/4d5018ee5e73d617ba0037ba\/germanikus-mid.jpg","studio":"Vision","genre":"Comedy","title":"Germanikus","releaseDate":1080172800000,"language":"en","type":"Movie","_key":"30593"} +{"label":"Gerhard Polt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9d\/4d5033aa5e73d617c1003a9d\/gerhard-polt-profile.jpg","version":39,"id":"52381","lastModified":"1301901732000","name":"Gerhard Polt","type":"Person","_key":"30594"} +{"label":"Thiam A\u00efssatou","version":24,"id":"52382","lastModified":"1301901815000","name":"Thiam A\u00efssatou","type":"Person","_key":"30595"} +{"label":"Viktor Giacobbo","version":23,"id":"52383","lastModified":"1301902279000","name":"Viktor Giacobbo","type":"Person","_key":"30596"} +{"label":"Manfred Lehmann","version":20,"id":"26617","lastModified":"1301901854000","name":"Manfred Lehmann","type":"Person","_key":"30597"} +{"label":"Nadia Rinaldi","version":25,"id":"52384","lastModified":"1301901992000","name":"Nadia Rinaldi","type":"Person","_key":"30598"} +{"label":"Claudia Wipplinger","version":20,"id":"52385","lastModified":"1301902370000","name":"Claudia Wipplinger","type":"Person","_key":"30599"} +{"label":"Martin Schneider","version":22,"id":"52386","lastModified":"1301901886000","name":"Martin Schneider","type":"Person","_key":"30600"} +{"label":"Hanns Christian M\u00fcller","version":32,"id":"52388","lastModified":"1301901476000","name":"Hanns Christian M\u00fcller","type":"Person","_key":"30601"} +{"label":"Fleisch ist mein Gem\u00fcse","description":"No overview found.","id":"7297","runtime":90,"imdbId":"tt1112828","version":64,"lastModified":"1301908329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fe\/4c5fe9957b9aa172db0000fe\/fleisch-ist-mein-gemuse-mid.jpg","studio":"Norddeutscher Rundfunk","genre":"Comedy","title":"Fleisch ist mein Gem\u00fcse","releaseDate":1208131200000,"language":"en","type":"Movie","_key":"30602"} +{"label":"Christian G\u00f6rlitz","version":21,"id":"48589","lastModified":"1301901431000","name":"Christian G\u00f6rlitz","type":"Person","_key":"30603"} +{"label":"Anna Fischer","version":25,"id":"54533","lastModified":"1301901845000","name":"Anna Fischer","type":"Person","_key":"30604"} +{"label":"Livia S. Reinhard","version":19,"id":"52390","lastModified":"1301902099000","name":"Livia S. Reinhard","type":"Person","_key":"30605"} +{"label":"Jona Mues","version":20,"id":"44364","lastModified":"1301902181000","name":"Jona Mues","type":"Person","_key":"30606"} +{"label":"Martin Brauer","version":19,"id":"54535","lastModified":"1301902099000","name":"Martin Brauer","type":"Person","_key":"30607"} +{"label":"Rocko Schamoni","version":19,"id":"52392","lastModified":"1301902279000","name":"Rocko Schamoni","type":"Person","_key":"30608"} +{"label":"Heiner Ebber","version":18,"id":"54536","lastModified":"1301902166000","name":"Heiner Ebber","type":"Person","_key":"30609"} +{"label":"One Way","description":"No overview found.","id":"7298","runtime":116,"imdbId":"tt0484382","version":417,"lastModified":"1302018943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4bc91ecf017a3c57fe00c23b\/one-way-mid.jpg","studio":"barefoot films","genre":"Crime","title":"One Way","releaseDate":1161388800000,"language":"en","type":"Movie","_key":"30610"} +{"label":"Reto Salimbeni","version":22,"id":"52393","lastModified":"1301902279000","name":"Reto Salimbeni","type":"Person","_key":"30611"} +{"label":"Sebastien Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db3\/4d2805467b9aa134cf001db3\/sebastien-roberts-profile.jpg","version":21,"id":"52395","lastModified":"1301901699000","name":"Sebastien Roberts","type":"Person","_key":"30612"} +{"label":"Stefanie von Pfetten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db9\/4d2805887b9aa134cf001db9\/stefanie-von-pfetten-profile.jpg","version":29,"id":"52396","lastModified":"1301901422000","name":"Stefanie von Pfetten","type":"Person","_key":"30613"} +{"label":"Jim Boeven","version":22,"id":"52397","lastModified":"1301901470000","name":"Jim Boeven","type":"Person","_key":"30614"} +{"label":"Steve Byers","version":26,"id":"43292","lastModified":"1301901787000","name":"Steve Byers","type":"Person","_key":"30615"} +{"label":"J\u00f6rg Vincent Malotki","version":19,"id":"35431","lastModified":"1301901886000","name":"J\u00f6rg Vincent Malotki","type":"Person","_key":"30616"} +{"label":"Mikael Persbrandt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/820\/4d0a8dc35e73d613dd000820\/mikael-persbrandt-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Mikael \u00c5ke Persbrandt<\/b> is a Swedish actor. In Swedish films he usually has lead roles and \u201ctough guy\u201d parts. He is perhaps most famous for his recurring role as the no-nonsense police officer Gunvald Larsson in the latest installment of the Martin Beck movies. He is frequently the subject of much press gossip in evening newspapers such as Aftonbladet ","version":79,"birthday":"-197859600000","id":"52398","birthplace":"Jakobsberg, Sweden","lastModified":"1301901575000","name":"Mikael Persbrandt","type":"Person","_key":"30617"} +{"label":"Equilibrium","description":"In a facist future where all forms of feeling are illegal, a man in charge of enforcing the law rises to overthrow the system.","id":"7299","runtime":107,"imdbId":"tt0238380","trailer":"http:\/\/www.youtube.com\/watch?v=6IBNACePYk4","version":383,"lastModified":"1301901208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fa\/4bdd7f29017a3c20c60001fa\/equilibrium-mid.jpg","studio":"Blue Tulip Productions","genre":"Action","title":"Equilibrium","releaseDate":1039132800000,"language":"en","tagline":"Two men. One battle. No compromise.","type":"Movie","_key":"30618"} +{"label":"David Barrash","version":23,"id":"52399","lastModified":"1301901551000","name":"David Barrash","type":"Person","_key":"30619"} +{"label":"Dirk Martens","version":24,"id":"52400","lastModified":"1301901585000","name":"Dirk Martens","type":"Person","_key":"30620"} +{"label":"Matthew Harbour","version":31,"id":"52401","lastModified":"1301901241000","name":"Matthew Harbour","type":"Person","_key":"30621"} +{"label":"Maria Pia Calzone","version":29,"id":"52402","lastModified":"1301901495000","name":"Maria Pia Calzone","type":"Person","_key":"30622"} +{"label":"Emily Siewert","version":24,"id":"52403","lastModified":"1301901582000","name":"Emily Siewert","type":"Person","_key":"30623"} +{"label":"Kurt Wimmer","version":77,"id":"13927","lastModified":"1301901168000","name":"Kurt Wimmer","type":"Person","_key":"30624"} +{"label":"One Fine Day","description":"Melanie Parker, an architect and mother of Sammy, and Jack Taylor, a newspaper columnist and father of Maggie, are both divorced. They meet one morning when overwhelmed Jack is left unexpectedly with Maggie and forgets that Melanie was to take her to school. As a result, both children miss their school field trip and are stuck with the parents. The two adults project their negative stereotypes of ex-spouses on each other, but end up needing to rely on each other to watch the children as each mus","id":"7300","runtime":108,"imdbId":"tt0117247","trailer":"http:\/\/www.youtube.com\/watch?v=PUV9tNchhxg","version":251,"lastModified":"1301902761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/287\/4bc91eda017a3c57fe00c287\/one-fine-day-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"One Fine Day","releaseDate":851040000000,"language":"en","type":"Movie","_key":"30625"} +{"label":"Mae Whitman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/75d\/4d406cc95e73d622cf00575d\/mae-whitman-profile.jpg","version":86,"id":"52404","lastModified":"1301901118000","name":"Mae Whitman","type":"Person","_key":"30626"} +{"label":"Alex D. Linz","version":32,"id":"15789","lastModified":"1302061111000","name":"Alex D. Linz","type":"Person","_key":"30627"} +{"label":"Jon Robin Baitz","version":23,"id":"69697","lastModified":"1301901992000","name":"Jon Robin Baitz","type":"Person","_key":"30628"} +{"label":"Ellen Greene","version":29,"id":"13420","lastModified":"1301902010000","name":"Ellen Greene","type":"Person","_key":"30629"} +{"label":"Pete Hamill","version":19,"id":"138243","lastModified":"1301903074000","name":"Pete Hamill","type":"Person","_key":"30630"} +{"label":"Anna Maria Horsford","version":31,"id":"54800","lastModified":"1301975038000","name":"Anna Maria Horsford","type":"Person","_key":"30631"} +{"label":"Gregory Jbara","version":23,"id":"24360","lastModified":"1301902060000","name":"Gregory Jbara","type":"Person","_key":"30632"} +{"label":"Sheila Kelley","version":23,"id":"68109","lastModified":"1301901724000","name":"Sheila Kelley","type":"Person","_key":"30633"} +{"label":"Rachel York","version":17,"id":"138246","lastModified":"1301902755000","name":"Rachel York","type":"Person","_key":"30634"} +{"label":"Bitty Schram","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5fc\/4cb735f27b9aa138d50005fc\/bitty-schram-profile.jpg","version":26,"id":"138240","lastModified":"1301902901000","name":"Bitty Schram","type":"Person","_key":"30635"} +{"label":"Michael Hoffman","version":38,"id":"52405","lastModified":"1301901445000","name":"Michael Hoffman","type":"Person","_key":"30636"} +{"label":"Lonesome Jim","description":"Failing to make it on his own, 27-year-old Jim moves back in with his parents and deals with crippling family obligations.","id":"7301","runtime":91,"imdbId":"tt0385056","version":183,"lastModified":"1302011470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/609\/4d9a420c5e73d63da4000609\/lonesome-jim-mid.jpg","studio":"Plum Pictures","genre":"Comedy","title":"Lonesome Jim","releaseDate":1132099200000,"language":"en","type":"Movie","_key":"30637"} +{"label":"Rachel Strouse","version":20,"id":"52406","lastModified":"1301902377000","name":"Rachel Strouse","type":"Person","_key":"30638"} +{"label":"Sarah Strouse","version":20,"id":"52407","lastModified":"1301902368000","name":"Sarah Strouse","type":"Person","_key":"30639"} +{"label":"Rick Duplissie","version":20,"id":"52408","lastModified":"1301901988000","name":"Rick Duplissie","type":"Person","_key":"30640"} +{"label":"Jake La Botz","version":34,"id":"52409","lastModified":"1301901349000","name":"Jake La Botz","type":"Person","_key":"30641"} +{"label":"Don Strouse","version":20,"id":"52410","lastModified":"1301901951000","name":"Don Strouse","type":"Person","_key":"30642"} +{"label":"Doug Liechty Caskey","version":20,"id":"52411","lastModified":"1301902331000","name":"Doug Liechty Caskey","type":"Person","_key":"30643"} +{"label":"Pam Angell","version":20,"id":"52412","lastModified":"1301901951000","name":"Pam Angell","type":"Person","_key":"30644"} +{"label":"Toma de Razon","description":"No overview found.","id":"7302","runtime":53,"trailer":"http:\/\/www.youtube.com\/watch?v=472","version":49,"lastModified":"1300978521000","genre":"Documentary","title":"Toma de Razon","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"30645"} +{"label":"Maid in Manhattan","description":"A senatorial candidate falls for a hotel maid, thinking she is a socialite when he sees her trying on a wealthy woman's dress.","id":"7303","runtime":105,"imdbId":"tt0252076","version":229,"lastModified":"1301902084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/299\/4bc91ede017a3c57fe00c299\/maid-in-manhattan-mid.jpg","studio":"Hughes Entertainment","genre":"Comedy","title":"Maid in Manhattan","releaseDate":1039737600000,"language":"en","type":"Movie","_key":"30646"} +{"label":"Tyler Posey","version":21,"id":"53280","lastModified":"1301901886000","name":"Tyler Posey","type":"Person","_key":"30647"} +{"label":"Di Quon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a6\/4cdc5e317b9aa138030000a6\/di-quon-profile.jpg","version":28,"id":"53281","lastModified":"1301901377000","name":"Di Quon","type":"Person","_key":"30648"} +{"label":"Lisa Roberts Gillan","version":19,"id":"15109","lastModified":"1301901732000","name":"Lisa Roberts Gillan","type":"Person","_key":"30649"} +{"label":"Running Scared","description":"After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first. ","id":"7304","runtime":122,"imdbId":"tt0404390","trailer":"http:\/\/www.youtube.com\/watch?v=U6XgFh8yRwk","version":265,"lastModified":"1301948758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc91edf017a3c57fe00c2a7\/running-scared-mid.jpg","studio":"Media 8 Entertainment","genre":"Action","title":"Running Scared","releaseDate":1140739200000,"language":"en","type":"Movie","_key":"30650"} +{"label":"Cameron Bright","version":49,"id":"52414","lastModified":"1301901105000","name":"Cameron Bright","type":"Person","_key":"30651"} +{"label":"Michael Cudlitz","version":27,"id":"52415","lastModified":"1301901636000","name":"Michael Cudlitz","type":"Person","_key":"30652"} +{"label":"Elizabeth Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a5\/4d10c7b25e73d608340004a5\/elizabeth-mitchell-profile.jpg","version":43,"id":"31167","lastModified":"1301901176000","name":"Elizabeth Mitchell","type":"Person","_key":"30653"} +{"label":"Idalis DeLeon","version":22,"id":"52416","lastModified":"1301901765000","name":"Idalis DeLeon","type":"Person","_key":"30654"} +{"label":"Wayne Kramer","version":41,"id":"19000","lastModified":"1301901298000","name":"Wayne Kramer","type":"Person","_key":"30655"} +{"label":"Alive","description":"The amazing, true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold. ","id":"7305","runtime":127,"imdbId":"tt0106246","trailer":"http:\/\/www.youtube.com\/watch?v=1837","version":227,"lastModified":"1301905200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b9\/4bc91ee1017a3c57fe00c2b9\/alive-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Alive","releaseDate":725846400000,"language":"en","type":"Movie","_key":"30656"} +{"label":"David Kriegel","version":24,"id":"52418","lastModified":"1301901992000","name":"David Kriegel","type":"Person","_key":"30657"} +{"label":"Josh Hamilton","version":38,"id":"52419","lastModified":"1301901459000","name":"Josh Hamilton","type":"Person","_key":"30658"} +{"label":"John Newton","version":32,"id":"52420","lastModified":"1301901443000","name":"John Newton","type":"Person","_key":"30659"} +{"label":"Christian J. Meoli","version":22,"id":"52421","lastModified":"1301902099000","name":"Christian J. Meoli","type":"Person","_key":"30660"} +{"label":"Bi\u00f9tiful cauntri","description":"No overview found.","id":"7325","runtime":73,"imdbId":"tt1313097","homepage":"http:\/\/www.kinoweb.it\/in_uscita\/biutiful_cauntri\/scheda.htm","version":55,"lastModified":"1301905280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbd\/4d5acb327b9aa122cb000fbd\/bi-tiful-cauntri-mid.jpg","genre":"Documentary","title":"Bi\u00f9tiful cauntri","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"30661"} +{"label":"Esmeralda Calabria","version":26,"id":"52424","lastModified":"1301901959000","name":"Esmeralda Calabria","type":"Person","_key":"30662"} +{"label":"Andrea D'Ambrosio","version":21,"id":"52425","lastModified":"1301901886000","name":"Andrea D'Ambrosio","type":"Person","_key":"30663"} +{"label":"Peppe Ruggiero","version":21,"id":"52426","lastModified":"1301901615000","name":"Peppe Ruggiero","type":"Person","_key":"30664"} +{"label":"Raffaele Del Giudice","version":15,"id":"52431","lastModified":"1301901886000","name":"Raffaele Del Giudice","type":"Person","_key":"30665"} +{"label":"Patrizia Gerlando","version":15,"id":"52432","lastModified":"1301901615000","name":"Patrizia Gerlando","type":"Person","_key":"30666"} +{"label":"Sabatino Cannavacciuolo","version":15,"id":"52433","lastModified":"1301901886000","name":"Sabatino Cannavacciuolo","type":"Person","_key":"30667"} +{"label":"Mario Cannavacciuolo","version":15,"id":"52434","lastModified":"1301901615000","name":"Mario Cannavacciuolo","type":"Person","_key":"30668"} +{"label":"Espedito Marletta","version":15,"id":"52435","lastModified":"1301901886000","name":"Espedito Marletta","type":"Person","_key":"30669"} +{"label":"Antonio Montesarchio","version":15,"id":"52436","lastModified":"1301901886000","name":"Antonio Montesarchio","type":"Person","_key":"30670"} +{"label":"Donato Ceglie","version":15,"id":"52437","lastModified":"1301901886000","name":"Donato Ceglie","type":"Person","_key":"30671"} +{"label":"Giulio Treccagnoli","version":15,"id":"52438","lastModified":"1301901886000","name":"Giulio Treccagnoli","type":"Person","_key":"30672"} +{"label":"Stefano Treccagnoli","version":15,"id":"52439","lastModified":"1301901886000","name":"Stefano Treccagnoli","type":"Person","_key":"30673"} +{"label":"Umberto Arena","version":15,"id":"52440","lastModified":"1301901885000","name":"Umberto Arena","type":"Person","_key":"30674"} +{"label":"Salvatore Picone","version":15,"id":"52441","lastModified":"1301901885000","name":"Salvatore Picone","type":"Person","_key":"30675"} +{"label":"Juno","description":"A young girl named Juno gets herself pregnant and tries to stand on her own. She soon learns a few lessons about being grown up.","id":"7326","runtime":96,"imdbId":"tt0467406","trailer":"http:\/\/www.youtube.com\/watch?v=K0SKf0K3bxg","homepage":"http:\/\/www.foxsearchlight.com\/juno\/","version":362,"lastModified":"1301946788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/632\/4c8dc5a95e73d60690000632\/juno-mid.jpg","studio":"Mandate Pictures","genre":"Comedy","title":"Juno","releaseDate":1188604800000,"language":"en","tagline":"A comedy about growing up... and the bumps along the way.","type":"Movie","_key":"30676"} +{"label":"Jason Reitman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/50d\/4ccb40f07b9aa16b9f00050d\/jason-reitman-profile.jpg","version":64,"id":"52443","lastModified":"1302063712000","name":"Jason Reitman","type":"Person","_key":"30677"} +{"label":"Olivia Thirlby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/440\/4d03e32a7b9aa11bc0001440\/olivia-thirlby-profile.jpg","version":51,"id":"52442","lastModified":"1302063712000","name":"Olivia Thirlby","type":"Person","_key":"30678"} +{"label":"Eileen Pedde","version":23,"id":"52457","lastModified":"1302063712000","name":"Eileen Pedde","type":"Person","_key":"30679"} +{"label":"Daniel Clark","version":24,"id":"52458","lastModified":"1302063712000","name":"Daniel Clark","type":"Person","_key":"30680"} +{"label":"K\u00fcss mich, wenn es Liebe ist","description":"No overview found.","id":"7327","runtime":90,"imdbId":"tt1185658","version":43,"lastModified":"1301906743000","studio":"Sat.1","genre":"Comedy","title":"K\u00fcss mich, wenn es Liebe ist","releaseDate":1204588800000,"language":"en","type":"Movie","_key":"30681"} +{"label":"Anja Jacobs","version":20,"id":"52459","lastModified":"1301902370000","name":"Anja Jacobs","type":"Person","_key":"30682"} +{"label":"Rike Schmid","version":20,"id":"52460","lastModified":"1301902393000","name":"Rike Schmid","type":"Person","_key":"30683"} +{"label":"Thorsten Kasper","version":18,"id":"52461","lastModified":"1301902185000","name":"Thorsten Kasper","type":"Person","_key":"30684"} +{"label":"Carrie","description":"Carrie may be ostracized, but the shy teen has the ability to move objects with her mind. So when the high school \"in crowd\" torments her with a sick joke at the prom, she lashes out with devastating -- and deadly -- power.","id":"7340","runtime":98,"imdbId":"tt0074285","trailer":"http:\/\/www.youtube.com\/watch?v=yJe0iVo8y3A","version":221,"lastModified":"1301903043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ed\/4bc91eea017a3c57fe00c2ed\/carrie-mid.jpg","studio":"Redbank Films","genre":"Drama","title":"Carrie","releaseDate":215827200000,"language":"en","tagline":"If you\u2019ve got a taste for terror, take Carrie to the prom.","type":"Movie","_key":"30685"} +{"label":"Betty Buckley","version":39,"id":"52462","lastModified":"1301901283000","name":"Betty Buckley","type":"Person","_key":"30686"} +{"label":"Stefan Gierasch","version":31,"id":"52463","lastModified":"1301902027000","name":"Stefan Gierasch","type":"Person","_key":"30687"} +{"label":"Doug Cox","version":24,"id":"52464","lastModified":"1301901684000","name":"Doug Cox","type":"Person","_key":"30688"} +{"label":"Harry Gold","version":23,"id":"52465","lastModified":"1301901762000","name":"Harry Gold","type":"Person","_key":"30689"} +{"label":"Noelle North","version":23,"id":"52466","lastModified":"1301902124000","name":"Noelle North","type":"Person","_key":"30690"} +{"label":"Cindy Daly","version":23,"id":"52467","lastModified":"1301901762000","name":"Cindy Daly","type":"Person","_key":"30691"} +{"label":"Deirdre Berthrong","version":23,"id":"52468","lastModified":"1301901633000","name":"Deirdre Berthrong","type":"Person","_key":"30692"} +{"label":"Anson Downes","version":26,"id":"52469","lastModified":"1301902124000","name":"Anson Downes","type":"Person","_key":"30693"} +{"label":"Rory Stevens","version":23,"id":"52470","lastModified":"1301901762000","name":"Rory Stevens","type":"Person","_key":"30694"} +{"label":"Cameron De Palma","version":23,"id":"52471","lastModified":"1301901762000","name":"Cameron De Palma","type":"Person","_key":"30695"} +{"label":"Mike Towers","version":21,"id":"52472","lastModified":"1301901633000","name":"Mike Towers","type":"Person","_key":"30696"} +{"label":"Glen Vance","version":23,"id":"52473","lastModified":"1301901926000","name":"Glen Vance","type":"Person","_key":"30697"} +{"label":"The Rage: Carrie 2","description":"set in a small town high school, where the members of the football team set the social order. Emulating the \"Spur Posse\" from Lakewood, California, the boys on the team compete to see who can seduce the most girls, rating them on a point system, and then discarding them as pathetic losers. The story opens with Lisa (Mena Suvari), a victim of this game who responds by jumping off the school to her ","id":"7341","runtime":104,"imdbId":"tt0144814","trailer":"http:\/\/www.youtube.com\/watch?v=452","version":131,"lastModified":"1301902905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fb\/4bc91eec017a3c57fe00c2fb\/the-rage-carrie-2-mid.jpg","studio":"Red Bank Films","genre":"Horror","title":"The Rage: Carrie 2","releaseDate":921196800000,"language":"en","type":"Movie","_key":"30698"} +{"label":"Emily Bergl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22d\/4bf1955a017a3c321300022d\/emily-bergl-profile.jpg","version":19,"id":"51390","lastModified":"1301902279000","name":"Emily Bergl","type":"Person","_key":"30699"} +{"label":"Jason London","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd5\/4cff3aee7b9aa16b2f002bd5\/jason-london-profile.jpg","version":53,"id":"52474","lastModified":"1301901198000","name":"Jason London","type":"Person","_key":"30700"} +{"label":"J. Smith-Cameron","version":19,"id":"52475","lastModified":"1301902099000","name":"J. Smith-Cameron","type":"Person","_key":"30701"} +{"label":"Dylan Bruno","version":30,"id":"52476","lastModified":"1301902022000","name":"Dylan Bruno","type":"Person","_key":"30702"} +{"label":"Zachery Ty Bryan","version":22,"id":"52477","lastModified":"1301901763000","name":"Zachery Ty Bryan","type":"Person","_key":"30703"} +{"label":"Rachel Blanchard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4c2d26ec5e73d63ccd000019\/rachel-blanchard-profile.jpg","version":34,"id":"52478","lastModified":"1301901577000","name":"Rachel Blanchard","type":"Person","_key":"30704"} +{"label":"Eli Craig","version":28,"id":"52479","lastModified":"1301901996000","name":"Eli Craig","type":"Person","_key":"30705"} +{"label":"Gordon Clapp","version":32,"id":"26008","lastModified":"1301902022000","name":"Gordon Clapp","type":"Person","_key":"30706"} +{"label":"Clint Jordan","version":22,"id":"52481","lastModified":"1301901688000","name":"Clint Jordan","type":"Person","_key":"30707"} +{"label":"Kate Skinner","version":19,"id":"52482","lastModified":"1301902279000","name":"Kate Skinner","type":"Person","_key":"30708"} +{"label":"Rus Blackwell","version":22,"id":"52483","lastModified":"1301902214000","name":"Rus Blackwell","type":"Person","_key":"30709"} +{"label":"Harold Surratt","version":19,"id":"52484","lastModified":"1301902279000","name":"Harold Surratt","type":"Person","_key":"30710"} +{"label":"David Lenthall","version":26,"id":"52485","lastModified":"1301901615000","name":"David Lenthall","type":"Person","_key":"30711"} +{"label":"Kayla Campbell","version":19,"id":"52486","lastModified":"1301902279000","name":"Kayla Campbell","type":"Person","_key":"30712"} +{"label":"Robert D. Raiford","version":19,"id":"52487","lastModified":"1301902279000","name":"Robert D. Raiford","type":"Person","_key":"30713"} +{"label":"Deborah Knox","version":17,"id":"52489","lastModified":"1301902296000","name":"Deborah Knox","type":"Person","_key":"30714"} +{"label":"Robert C. Treveiler","version":19,"id":"52490","lastModified":"1301902279000","name":"Robert C. Treveiler","type":"Person","_key":"30715"} +{"label":"Gina Stewart","version":20,"id":"52491","lastModified":"1301902369000","name":"Gina Stewart","type":"Person","_key":"30716"} +{"label":"Claire Hurst","version":19,"id":"52492","lastModified":"1301902278000","name":"Claire Hurst","type":"Person","_key":"30717"} +{"label":"Albert E. Hayes","version":19,"id":"52493","lastModified":"1301902278000","name":"Albert E. Hayes","type":"Person","_key":"30718"} +{"label":"Colin Fickes","version":20,"id":"52494","lastModified":"1301902279000","name":"Colin Fickes","type":"Person","_key":"30719"} +{"label":"Eric Hill","version":19,"id":"52495","lastModified":"1301902278000","name":"Eric Hill","type":"Person","_key":"30720"} +{"label":"Jennifer Nicole Parillo","version":19,"id":"52496","lastModified":"1301901885000","name":"Jennifer Nicole Parillo","type":"Person","_key":"30721"} +{"label":"Jessica Cowart","version":19,"id":"52497","lastModified":"1301902278000","name":"Jessica Cowart","type":"Person","_key":"30722"} +{"label":"Tiffany LeShai McMinn","version":19,"id":"52498","lastModified":"1301902278000","name":"Tiffany LeShai McMinn","type":"Person","_key":"30723"} +{"label":"Steven Culbertson","version":19,"id":"52499","lastModified":"1301902278000","name":"Steven Culbertson","type":"Person","_key":"30724"} +{"label":"Jamie Hall","version":17,"id":"52500","lastModified":"1301902278000","name":"Jamie Hall","type":"Person","_key":"30725"} +{"label":"Steven Frederick Cook","version":19,"id":"52501","lastModified":"1301902278000","name":"Steven Frederick Cook","type":"Person","_key":"30726"} +{"label":"Chris Daniels","version":19,"id":"52502","lastModified":"1301902278000","name":"Chris Daniels","type":"Person","_key":"30727"} +{"label":"Hank Fields","version":19,"id":"52503","lastModified":"1301902278000","name":"Hank Fields","type":"Person","_key":"30728"} +{"label":"Wofford Jones","version":19,"id":"52504","lastModified":"1301902278000","name":"Wofford Jones","type":"Person","_key":"30729"} +{"label":"Tara Killian","version":21,"id":"52505","lastModified":"1301902099000","name":"Tara Killian","type":"Person","_key":"30730"} +{"label":"Mark Freiburger","version":20,"id":"52506","lastModified":"1301902369000","name":"Mark Freiburger","type":"Person","_key":"30731"} +{"label":"Katt Shea","version":28,"id":"102634","lastModified":"1301902164000","name":"Katt Shea","type":"Person","_key":"30732"} +{"label":"Carrie","description":"No overview found.","id":"7342","runtime":132,"imdbId":"tt0319970","version":152,"lastModified":"1301904554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/304\/4bc91eed017a3c57fe00c304\/carrie-mid.jpg","studio":"MGM Television","genre":"Drama","title":"Carrie","releaseDate":1036368000000,"language":"en","type":"Movie","_key":"30733"} +{"label":"Kandyse McClure","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f01\/4d8bc9497b9aa13ae7001f01\/kandyse-mcclure-profile.jpg","version":33,"birthday":"322527600000","id":"52507","birthplace":"South Africa","lastModified":"1301902204000","name":"Kandyse McClure","type":"Person","_key":"30734"} +{"label":"Emilie de Ravin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30d\/4cb1b5737b9aa1264100030d\/emilie-de-ravin-profile.jpg","version":54,"id":"28660","lastModified":"1302060787000","name":"Emilie de Ravin","type":"Person","_key":"30735"} +{"label":"Tobias Mehler","version":23,"id":"52508","lastModified":"1301901787000","name":"Tobias Mehler","type":"Person","_key":"30736"} +{"label":"Jesse Cadotte","version":20,"id":"52509","lastModified":"1301902006000","name":"Jesse Cadotte","type":"Person","_key":"30737"} +{"label":"Meghan Black","version":20,"id":"52510","lastModified":"1301902369000","name":"Meghan Black","type":"Person","_key":"30738"} +{"label":"Miles Meadows","version":21,"id":"52511","lastModified":"1301901960000","name":"Miles Meadows","type":"Person","_key":"30739"} +{"label":"Laurie Murdoch","version":20,"id":"52512","lastModified":"1301902190000","name":"Laurie Murdoch","type":"Person","_key":"30740"} +{"label":"Deborah DeMille","version":20,"id":"52513","lastModified":"1301902006000","name":"Deborah DeMille","type":"Person","_key":"30741"} +{"label":"Malcolm Scott","version":23,"id":"52514","lastModified":"1301901960000","name":"Malcolm Scott","type":"Person","_key":"30742"} +{"label":"City of Men","description":"Best buddies Acerola and Laranjinha, about to turn 18, discover things about their missing fathers' pasts which will shatter their solid friendship, in the middle of a war between rival drug gangs from Rio's favelas.","id":"7343","runtime":110,"imdbId":"tt0870090","trailer":"http:\/\/www.youtube.com\/watch?v=454","homepage":"http:\/\/www.cidadedoshomens.com.br\/","version":246,"lastModified":"1301907728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/319\/4bc91ef1017a3c57fe00c319\/cidade-dos-homens-mid.jpg","studio":"O2 Filmes","genre":"Drama","title":"City of Men","releaseDate":1188518400000,"language":"en","type":"Movie","_key":"30743"} +{"label":"Paulo Morelli","version":23,"id":"52528","lastModified":"1301901885000","name":"Paulo Morelli","type":"Person","_key":"30744"} +{"label":"Rodrigo dos Santos","version":22,"id":"52534","lastModified":"1301901901000","name":"Rodrigo dos Santos","type":"Person","_key":"30745"} +{"label":"Camila Monteiro","version":20,"id":"52535","lastModified":"1301902099000","name":"Camila Monteiro","type":"Person","_key":"30746"} +{"label":"Naima Silva","version":20,"id":"52536","lastModified":"1301902099000","name":"Naima Silva","type":"Person","_key":"30747"} +{"label":"Eduardo 'BR' Piranha","version":18,"id":"52537","lastModified":"1301901620000","name":"Eduardo 'BR' Piranha","type":"Person","_key":"30748"} +{"label":"Luciano Vidigal","version":20,"id":"52538","lastModified":"1301902099000","name":"Luciano Vidigal","type":"Person","_key":"30749"} +{"label":"Pedro Henrique","version":20,"id":"52539","lastModified":"1301902278000","name":"Pedro Henrique","type":"Person","_key":"30750"} +{"label":"V\u00edtor Oliveira","version":18,"id":"52540","lastModified":"1301902099000","name":"V\u00edtor Oliveira","type":"Person","_key":"30751"} +{"label":"Vin\u00edcius Oliveira","version":18,"id":"52541","lastModified":"1301901885000","name":"Vin\u00edcius Oliveira","type":"Person","_key":"30752"} +{"label":"Absurdistan","description":"An allegorical comedy centered on two childhood sweethearts who seem destined for one another until the women of their isolated village, angered by male indifference toward the water shortage, go on a sex strike that threatens the young couple's first night of love.","id":"7344","runtime":87,"imdbId":"tt1027658","homepage":"http:\/\/www.absudistan-derfilm.de","version":146,"lastModified":"1301988803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/322\/4bc91ef1017a3c57fe00c322\/absurdistan-mid.jpg","studio":"Veit Helmer-Filmproduktion","genre":"Comedy","title":"Absurdistan","releaseDate":1200787200000,"language":"en","type":"Movie","_key":"30753"} +{"label":"Veit Helmer","version":26,"id":"52542","lastModified":"1301901787000","name":"Veit Helmer","type":"Person","_key":"30754"} +{"label":"Kristyna Mal\u00e9rov\u00e1","version":17,"id":"52561","lastModified":"1301901477000","name":"Kristyna Mal\u00e9rov\u00e1","type":"Person","_key":"30755"} +{"label":"Nino Chkheidze","version":19,"id":"52562","lastModified":"1301902278000","name":"Nino Chkheidze","type":"Person","_key":"30756"} +{"label":"There Will Be Blood","description":"When Daniel Plainview - a ruthless oil prospector - learns of oil-rich land in California that can be bought cheaply, he moves his operation there and begins manipulating and exploiting the local landowners into selling him their property. Using his young adopted son H.W. to project the image of a caring family man, Plainview gains the cooperation of almost all the locals with lofty promises to build schools and cultivate the land to make their community flourish. Over time, Plainview's gradual ","id":"7345","runtime":158,"imdbId":"tt0469494","trailer":"http:\/\/www.youtube.com\/watch?v=f3THVbr4hlY","homepage":"http:\/\/www.therewillbeblood.com\/","version":338,"lastModified":"1301901400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/349\/4bc91ef7017a3c57fe00c349\/there-will-be-blood-mid.jpg","studio":"Paramount Vantage","genre":"Drama","title":"There Will Be Blood","releaseDate":1190851200000,"language":"en","tagline":"There Will Be Greed. There Will Be Vengeance.","type":"Movie","_key":"30757"} +{"label":"Dillon Freasier","version":25,"id":"52564","lastModified":"1301901111000","name":"Dillon Freasier","type":"Person","_key":"30758"} +{"label":"Hope Elizabeth Reeves","version":24,"id":"52565","lastModified":"1301901117000","name":"Hope Elizabeth Reeves","type":"Person","_key":"30759"} +{"label":"Colleen Foy","version":24,"id":"52566","lastModified":"1301901116000","name":"Colleen Foy","type":"Person","_key":"30760"} +{"label":"David Willis","version":24,"id":"53668","lastModified":"1301901120000","name":"David Willis","type":"Person","_key":"30761"} +{"label":"Hans Howes","version":24,"id":"53669","lastModified":"1301901124000","name":"Hans Howes","type":"Person","_key":"30762"} +{"label":"Sydney McCallister","version":24,"id":"53670","lastModified":"1301901124000","name":"Sydney McCallister","type":"Person","_key":"30763"} +{"label":"Sparrow","description":"Kei (Simon Yam) is the experienced leader of a team of pickpockets \u2014 also known as \"Sparrows\" in HK slang. He enjoys a carefree lifestyle taking photos. One day a dashing beauty, Chun-Lei (Kelly Lin), suddenly appears in Kei's viewfinder. Kei is mesmerized. But behind Chun-Lei's attractive facade lies a mysterious past and a mission to set herself free.","id":"7346","runtime":87,"imdbId":"tt0491044","version":125,"lastModified":"1301904977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/363\/4bc91efa017a3c57fe00c363\/7346-mid.jpg","studio":"Milkyway Image (Hong Kong) Ltd.","genre":"Drama","title":"Sparrow","releaseDate":1213833600000,"language":"en","type":"Movie","_key":"30764"} +{"label":"Kelly Lin","version":39,"id":"52575","lastModified":"1302052496000","name":"Kelly Lin","type":"Person","_key":"30765"} +{"label":"Ka Tung Lam","version":31,"id":"83820","lastModified":"1301902212000","name":"Ka Tung Lam","type":"Person","_key":"30766"} +{"label":"Hoi-Pang Lo","version":22,"id":"142647","lastModified":"1301902571000","name":"Hoi-Pang Lo","type":"Person","_key":"30767"} +{"label":"Wing-cheong Law","version":22,"id":"137143","lastModified":"1301903047000","name":"Wing-cheong Law","type":"Person","_key":"30768"} +{"label":"Kenneth Cheung","version":11,"id":"223914","lastModified":"1301903984000","name":"Kenneth Cheung","type":"Person","_key":"30769"} +{"label":"Elite Squad","description":"In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operation Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.","id":"7347","runtime":118,"imdbId":"tt0861739","trailer":"http:\/\/www.youtube.com\/watch?v=WNrC-vLpTGI","homepage":"http:\/\/www.tropadeeliteofilme.com.br\/","version":242,"lastModified":"1301908036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/375\/4bc91efc017a3c57fe00c375\/tropa-de-elite-mid.jpg","studio":"The Weinstein Company","genre":"Action","title":"Elite Squad","releaseDate":1192147200000,"language":"en","tagline":"On the streets of Rio only the elite survive.","type":"Movie","_key":"30770"} +{"label":"Jos\u00e9 Padilha","version":64,"id":"52576","lastModified":"1301901399000","name":"Jos\u00e9 Padilha","type":"Person","_key":"30771"} +{"label":"Wagner Moura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae8\/4d47702c7b9aa15bb000bae8\/wagner-moura-profile.jpg","version":39,"id":"52583","lastModified":"1301901398000","name":"Wagner Moura","type":"Person","_key":"30772"} +{"label":"Caio Junqueira","version":28,"id":"52584","lastModified":"1301901461000","name":"Caio Junqueira","type":"Person","_key":"30773"} +{"label":"Andr\u00e9 Ramiro","version":30,"id":"52585","lastModified":"1301901581000","name":"Andr\u00e9 Ramiro","type":"Person","_key":"30774"} +{"label":"Milhem Cortaz","version":36,"id":"52586","lastModified":"1301901443000","name":"Milhem Cortaz","type":"Person","_key":"30775"} +{"label":"Robinson Crusoe on Mars","description":"Stranded on Mars with only a monkey as a companion, an astronaut must figure out how to find oxygen, water, and food on the lifeless planet.","id":"7348","runtime":110,"imdbId":"tt0058530","version":160,"lastModified":"1301906116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37e\/4bc91efd017a3c57fe00c37e\/robinson-crusoe-on-mars-mid.jpg","studio":"Aubrey Schenck Productions","genre":"Drama","title":"Robinson Crusoe on Mars","releaseDate":-176256000000,"language":"en","type":"Movie","_key":"30776"} +{"label":"Paul Mantee","version":23,"id":"52590","lastModified":"1301901676000","name":"Paul Mantee","type":"Person","_key":"30777"} +{"label":"Victor Lundin","version":22,"id":"52591","lastModified":"1301901582000","name":"Victor Lundin","type":"Person","_key":"30778"} +{"label":"The Wooley Monkey","version":18,"id":"52592","lastModified":"1301901960000","name":"The Wooley Monkey","type":"Person","_key":"30779"} +{"label":"Freddy und der Million\u00e4r","description":"No overview found.","id":"7349","runtime":88,"imdbId":"tt0054896","version":55,"lastModified":"1301908329000","studio":"Divina-Film","genre":"Comedy","title":"Freddy und der Million\u00e4r","releaseDate":-253843200000,"language":"en","type":"Movie","_key":"30780"} +{"label":"Vittoria Prada","version":19,"id":"52595","lastModified":"1301902278000","name":"Vittoria Prada","type":"Person","_key":"30781"} +{"label":"The Bucket List","description":"Corporate billionaire Edward and working class mechanic Carter have nothing in common except for their terminal illnesses. While sharing a hospital room together, they decide to escape and do all the things they have ever wanted to do before they die according to their \"bucket list\". In the process, both of them heal each other, become unlikely friends, and ultimately find the joy in life.","id":"7350","runtime":97,"imdbId":"tt0825232","trailer":"http:\/\/www.youtube.com\/watch?v=PX8XEXmhHss","homepage":"http:\/\/thebucketlist.warnerbros.com\/","version":476,"lastModified":"1301901172000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/061\/4d73c5035e73d60882000061\/the-bucket-list-mid.jpg","studio":"Zadan\/Meron","genre":"Action","title":"The Bucket List","releaseDate":1197763200000,"language":"en","tagline":"When he closed his eyes, his heart was opened","type":"Movie","_key":"30782"} +{"label":"Sean Hayes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aff\/4cf3cbf55e73d62387000aff\/sean-hayes-profile.jpg","version":42,"id":"52601","lastModified":"1301901252000","name":"Sean Hayes","type":"Person","_key":"30783"} +{"label":"Rob Morrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/315\/4cc0ae425e73d67786001315\/rob-morrow-profile.jpg","version":37,"id":"52602","lastModified":"1301901314000","name":"Rob Morrow","type":"Person","_key":"30784"} +{"label":"Alfonso Freeman","version":23,"id":"52603","lastModified":"1301901476000","name":"Alfonso Freeman","type":"Person","_key":"30785"} +{"label":"Julia","description":"Tilda Swinton stars in this intense drama as Julia, an aging alcoholic who spends her nights drinking in the company of strangers, and her days making excuses for herself. At an AA meeting Julia meets her neighbour Elena (Kate del Castillo) who has a highly flawed plan to kidnap her own son, Tommy (Aidan Gould), from the wealthy grandfather he is living with. ","id":"7351","runtime":138,"imdbId":"tt0903627","trailer":"http:\/\/www.youtube.com\/watch?v=2403","version":170,"lastModified":"1301905386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39c\/4bc91f02017a3c57fe00c39c\/julia-mid.jpg","studio":"Les Productions Bagheera","genre":"Drama","title":"Julia","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"30786"} +{"label":"Erick Zonca","version":28,"id":"19377","lastModified":"1301901663000","name":"Erick Zonca","type":"Person","_key":"30787"} +{"label":"Aidan Gould","version":19,"id":"52743","lastModified":"1301901885000","name":"Aidan Gould","type":"Person","_key":"30788"} +{"label":"Bruno Bichir","version":34,"id":"52745","lastModified":"1301902199000","name":"Bruno Bichir","type":"Person","_key":"30789"} +{"label":"Horacio Garcia Rojas","version":19,"id":"52746","lastModified":"1301902278000","name":"Horacio Garcia Rojas","type":"Person","_key":"30790"} +{"label":"Gast\u00f3n Manuel Peterson","version":17,"id":"52747","lastModified":"1301902110000","name":"Gast\u00f3n Manuel Peterson","type":"Person","_key":"30791"} +{"label":"Fireflies in the Garden","description":"The semi-autobiographical story centers on the complexities of love and commitment in a family torn apart when faced by an unexpected tragedy.","id":"7353","runtime":108,"imdbId":"tt0961108","version":104,"lastModified":"1301902986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3db\/4bc91f07017a3c57fe00c3db\/fireflies-in-the-garden-mid.jpg","studio":"Senator International","genre":"Drama","title":"Fireflies in the Garden","releaseDate":1202601600000,"language":"en","type":"Movie","_key":"30792"} +{"label":"Dennis Lee","version":24,"id":"52606","lastModified":"1301901367000","name":"Dennis Lee","type":"Person","_key":"30793"} +{"label":"Sahara","description":"Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.","id":"7364","runtime":124,"imdbId":"tt0318649","trailer":"http:\/\/www.youtube.com\/watch?v=jPV7kVGluKo","version":323,"lastModified":"1301902178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/484\/4d5d98b05e73d60c65001484\/sahara-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Sahara","releaseDate":1112572800000,"language":"en","tagline":"Dirk Pitt. Adventure has a new name.","type":"Movie","_key":"30794"} +{"label":"Glynn Turman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/856\/4d8a7ddd7b9aa13ae7000856\/glynn-turman-profile.jpg","version":30,"id":"114674","lastModified":"1301903072000","name":"Glynn Turman","type":"Person","_key":"30795"} +{"label":"Breck Eisner","version":46,"id":"52609","lastModified":"1301901284000","name":"Breck Eisner","type":"Person","_key":"30796"} +{"label":"Ilsa, Harem Keeper of the Oil Sheiks","description":"Ilsa works for an Arab sheik who enjoys importing females to use as sex slaves.","id":"7392","runtime":94,"imdbId":"tt0074670","version":97,"lastModified":"1301414923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fe\/4bc91f0d017a3c57fe00c3fe\/ilsa-harem-keeper-of-the-oil-sheiks-mid.jpg","genre":"Erotic","title":"Ilsa, Harem Keeper of the Oil Sheiks","releaseDate":157766400000,"language":"en","tagline":"Ilsa's back! ...More fierce than ever! With brutal fury she enslaved an empire and shocked the world!","type":"Movie","_key":"30797"} +{"label":"Dyanne Thorne","version":32,"id":"52611","lastModified":"1301901507000","name":"Dyanne Thorne","type":"Person","_key":"30798"} +{"label":"Max Thayer","version":21,"id":"52612","lastModified":"1301902186000","name":"Max Thayer","type":"Person","_key":"30799"} +{"label":"Jerry Delony","version":20,"id":"52613","lastModified":"1301902378000","name":"Jerry Delony","type":"Person","_key":"30800"} +{"label":"Tanya Boyd","version":22,"id":"52614","lastModified":"1301902354000","name":"Tanya Boyd","type":"Person","_key":"30801"} +{"label":"Marilyn Joi","version":24,"id":"52615","lastModified":"1301901411000","name":"Marilyn Joi","type":"Person","_key":"30802"} +{"label":"Richard Kennedy","version":21,"id":"52616","lastModified":"1301901984000","name":"Richard Kennedy","type":"Person","_key":"30803"} +{"label":"Dea Martensen","version":20,"id":"52618","lastModified":"1301902369000","name":"Dea Martensen","type":"Person","_key":"30804"} +{"label":"Ivan Roars","version":20,"id":"52619","lastModified":"1301902375000","name":"Ivan Roars","type":"Person","_key":"30805"} +{"label":"Speed Stearns","version":18,"id":"52620","lastModified":"1301902361000","name":"Speed Stearns","type":"Person","_key":"30806"} +{"label":"Bobby Woods","version":20,"id":"52621","lastModified":"1301902354000","name":"Bobby Woods","type":"Person","_key":"30807"} +{"label":"John F. Goff","version":31,"id":"52622","lastModified":"1301901984000","name":"John F. Goff","type":"Person","_key":"30808"} +{"label":"Joyce Mandel","version":20,"id":"52623","lastModified":"1301902369000","name":"Joyce Mandel","type":"Person","_key":"30809"} +{"label":"Howard Maurer","version":21,"id":"52624","lastModified":"1301902369000","name":"Howard Maurer","type":"Person","_key":"30810"} +{"label":"George 'Buck' Flower","version":47,"id":"54564","lastModified":"1301901507000","name":"George 'Buck' Flower","type":"Person","_key":"30811"} +{"label":"Don Edmonds","version":24,"id":"4695","lastModified":"1301901291000","name":"Don Edmonds","type":"Person","_key":"30812"} +{"label":"Sleeping with the Enemy","description":"Laura and Martin have been married for four years. They seem to be the perfect, happiest and most successful couple. The reality of their house- hold, however, is very different. Martin is an abusive and brutally obsessed husband. Laura is living her life in constant fear and waits for a chance to escape. She finally stages her own death, and flees to a new town and new identity.","id":"7442","runtime":99,"imdbId":"tt0102945","version":156,"lastModified":"1301903445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/407\/4bc91f0e017a3c57fe00c407\/sleeping-with-the-enemy-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Sleeping with the Enemy","releaseDate":665971200000,"language":"en","type":"Movie","_key":"30813"} +{"label":"Elizabeth Lawrence","version":21,"id":"53302","lastModified":"1301902375000","name":"Elizabeth Lawrence","type":"Person","_key":"30814"} +{"label":"Tony Abatemarco","version":22,"id":"53303","lastModified":"1301902214000","name":"Tony Abatemarco","type":"Person","_key":"30815"} +{"label":"Joseph Ruben","version":39,"id":"52629","lastModified":"1301901670000","name":"Joseph Ruben","type":"Person","_key":"30816"} +{"label":"Chicken Run","description":"Having been hopelessly repressed and facing eventual certain death at the chicken farm where they are held, Rocky the rooster and Ginger the chicken decide to rebel against the evil Mr. and Mrs. Tweedy, the farm's owners. Rocky and Ginger lead their fellow chickens in a great escape from the murderous farmers and their farm of doom.","id":"7443","runtime":84,"imdbId":"tt0120630","trailer":"http:\/\/www.youtube.com\/watch?v=jVdlxwX6A7g","version":167,"lastModified":"1301901509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/503\/4c1aa7305e73d64a24000503\/chicken-run-mid.jpg","studio":"Aardman Animations","genre":"Animation","title":"Chicken Run","releaseDate":961718400000,"language":"en","tagline":"This ain't no chick flick.","type":"Movie","_key":"30817"} +{"label":"Peter Lord","version":37,"id":"53304","lastModified":"1301901565000","name":"Peter Lord","type":"Person","_key":"30818"} +{"label":"Julia Sawalha","version":25,"id":"53328","lastModified":"1301901696000","name":"Julia Sawalha","type":"Person","_key":"30819"} +{"label":"If You Could See Me Now","description":"No overview found.","id":"7444","runtime":0,"imdbId":"tt0483646","version":109,"lastModified":"1301417757000","studio":"Gold Circle Films","genre":"Fantasy","title":"If You Could See Me Now","language":"en","type":"Movie","_key":"30820"} +{"label":"Brothers","description":"When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill (Tobey Maguire) is presumed dead. Back home, brother Tommy (Jake Gyllenhaal) steps in to look over Sam\u2019s wife, Grace (Natalie Portman), and two children. Sam\u2019s surprise homecoming triggers domestic mayhem.","id":"7445","runtime":104,"imdbId":"tt0765010","trailer":"http:\/\/www.youtube.com\/watch?v=kJtEUfSAfOk","version":509,"lastModified":"1302036242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d4\/4d0b34c15e73d6469c0001d4\/brothers-mid.jpg","studio":"Relativity Media","genre":"Drama","title":"Brothers","releaseDate":1259798400000,"language":"en","tagline":"There are two sides to every family.","type":"Movie","_key":"30821"} +{"label":"Jim Sheridan","version":52,"id":"53334","lastModified":"1302036242000","name":"Jim Sheridan","type":"Person","_key":"30822"} +{"label":"Tropic Thunder","description":"A film crew is in Southeast Asia filming a Vietnam-war memoir. It's early in the shooting, but they're already behind schedule and over budget. Tthe cast and crew are attacked by a gang of poppy-growing local drug dealers, except the cast and crew don't realize these aren't actors who are stalking them. The thugs kidnap Tugg Speedman, an actor whose star seems on the decline, and it's up to the rest of the ragtag team to band together long enough to attempt his rescue.","id":"7446","runtime":107,"imdbId":"tt0942385","trailer":"http:\/\/www.youtube.com\/watch?v=VsEdmjAudSI","homepage":"http:\/\/www.tropicthunder.com\/","version":597,"lastModified":"1301901307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4bc91f1d017a3c57fe00c465\/tropic-thunder-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"Tropic Thunder","releaseDate":1218585600000,"language":"en","tagline":"The movie they think they're making... isn't a movie anymore.","type":"Movie","_key":"30823"} +{"label":"Tokyo Suckerpunch","description":"No overview found.","id":"7447","runtime":70,"imdbId":"tt0455814","version":79,"lastModified":"1301904628000","studio":"Maguire Entertainment","genre":"Drama","title":"Tokyo Suckerpunch","language":"en","type":"Movie","_key":"30824"} +{"label":"Quiet Type","description":"No overview found.","id":"7448","runtime":90,"imdbId":"tt0465581","version":84,"lastModified":"1301906322000","studio":"New Line Cinema","genre":"Comedy","title":"Quiet Type","language":"en","type":"Movie","_key":"30825"} +{"label":"Fr\u00fchst\u00fcck mit einer Unbekannten","description":"No overview found.","id":"7449","runtime":95,"imdbId":"tt0977226","version":41,"lastModified":"1301905337000","studio":"Sat.1","genre":"Comedy","title":"Fr\u00fchst\u00fcck mit einer Unbekannten","releaseDate":1180396800000,"language":"en","type":"Movie","_key":"30826"} +{"label":"Maria von Heland","version":27,"id":"53339","lastModified":"1301901960000","name":"Maria von Heland","type":"Person","_key":"30827"} +{"label":"Titan A.E.","description":"A young man finds out that he holds the key to restoring hope and insuring survival for the human race, while an alien species called the Dredge are bent on mankind's destruction.","id":"7450","runtime":92,"imdbId":"tt0120913","trailer":"http:\/\/www.youtube.com\/watch?v=inGUZEDJllY","version":260,"lastModified":"1301902843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc91f25017a3c57fe00c49c\/titan-a-e-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Titan A.E.","releaseDate":961113600000,"language":"en","type":"Movie","_key":"30828"} +{"label":"xXx","description":"Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.","id":"7451","runtime":123,"imdbId":"tt0295701","trailer":"http:\/\/www.youtube.com\/watch?v=1553","version":1403,"lastModified":"1301937207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bcb974a017a3c753d000026\/xxx-mid.jpg","studio":"Original Film","genre":"Action","title":"xXx","releaseDate":1028851200000,"language":"en","tagline":"A New Breed Of Secret Agent.","type":"Movie","_key":"30829"} +{"label":"Michael Roof","version":22,"id":"53347","lastModified":"1302071827000","name":"Michael Roof","type":"Person","_key":"30830"} +{"label":"Petr J\u00e1kl","version":24,"id":"53348","lastModified":"1302071827000","name":"Petr J\u00e1kl","type":"Person","_key":"30831"} +{"label":"Eve Jeffers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f20\/4d8bcae17b9aa13ae7001f20\/eve-jeffers-profile.jpg","version":15,"birthday":"279500400000","id":"230176","birthplace":"Philadelphia, PA, USA","lastModified":"1302071827000","name":"Eve Jeffers","type":"Person","_key":"30832"} +{"label":"The Cook the Thief His Wife & Her Lover","description":"The wife of a barbaric crime boss engages in a secretive romance with a gentle bookseller between meals at her husband's restaurant. Food, colour coding, sex, murder, torture and cannibalism are the exotic fare in this beautifully filmed but brutally uncompromising modern fable which has been interpreted as an allegory for Thatcherism.","id":"7452","runtime":125,"imdbId":"tt0097108","version":187,"lastModified":"1301902478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b7\/4bc91f2d017a3c57fe00c4b7\/the-cook-the-thief-his-wife-and-her-lover-mid.jpg","studio":"Allarts Cook","genre":"Comedy","title":"The Cook the Thief His Wife & Her Lover","releaseDate":621388800000,"language":"en","type":"Movie","_key":"30833"} +{"label":"Gary Olsen","version":26,"id":"53349","lastModified":"1301901885000","name":"Gary Olsen","type":"Person","_key":"30834"} +{"label":"Emer Gillespie","version":23,"id":"53350","lastModified":"1301902278000","name":"Emer Gillespie","type":"Person","_key":"30835"} +{"label":"Janet Henfrey","version":24,"id":"53351","lastModified":"1301902278000","name":"Janet Henfrey","type":"Person","_key":"30836"} +{"label":"The Hitchhiker's Guide to the Galaxy","description":"Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\"","id":"7453","runtime":109,"imdbId":"tt0371724","trailer":"http:\/\/www.youtube.com\/watch?v=MbGNcoB2Y4I","version":235,"lastModified":"1301901407000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e1\/4bc91f31017a3c57fe00c4e1\/the-hitchhiker-s-guide-to-the-galaxy-mid.jpg","studio":"Touchstone Pictures","genre":"Adventure","title":"The Hitchhiker's Guide to the Galaxy","releaseDate":1113955200000,"language":"en","type":"Movie","_key":"30837"} +{"label":"Dominique Jackson","version":26,"id":"53352","lastModified":"1301901825000","name":"Dominique Jackson","type":"Person","_key":"30838"} +{"label":"Albie Woodington","version":26,"id":"53353","lastModified":"1301901778000","name":"Albie Woodington","type":"Person","_key":"30839"} +{"label":"Garth Jennings","version":34,"id":"52842","lastModified":"1301901314000","name":"Garth Jennings","type":"Person","_key":"30840"} +{"label":"The Bunker","description":"In 1944, in the Belgian - German border, seven German soldiers survive an American attack in the front and lock themselves in a bunker to protect the position. Under siege by the enemy and with little ammunition, they decide to explore underground tunnels to seek supplies and find an escape route. While in the tunnel, weird things happen with the group.","id":"7454","runtime":95,"imdbId":"tt0252963","version":110,"lastModified":"1301904279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ef\/4bc91f35017a3c57fe00c4ef\/the-bunker-mid.jpg","studio":"Millennium Pictures","genre":"Action","title":"The Bunker","releaseDate":1000425600000,"language":"en","type":"Movie","_key":"30841"} +{"label":"Rob Green","version":20,"id":"53357","lastModified":"1301901960000","name":"Rob Green","type":"Person","_key":"30842"} +{"label":"Andrew Lee Potts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16b\/4cf1aeab5e73d61e3d00016b\/andrew-lee-potts-profile.jpg","version":31,"id":"35863","lastModified":"1301901446000","name":"Andrew Lee Potts","type":"Person","_key":"30843"} +{"label":"Die Wolke","description":"Hannah und Elmar erleben in diesem Sommer gerade ihre erste gro\u00dfe Liebe. Just in dem Moment, als sie sich ihre Gef\u00fchle eingestehen, schrillt die Alarmglocke: bei einem St\u00f6rfall im nahe gelegenen Kernkraftwerk wurde eine erhebliche Menge an Radioaktivit\u00e4t freigesetzt \u2013 Panik, Chaos und Anarchie breiten sich aus, die Menschen versuchen vor der radioaktiven Wolke zu fliehen. ","id":"7456","runtime":105,"imdbId":"tt0480083","trailer":"http:\/\/www.youtube.com\/watch?v=2935","homepage":"http:\/\/www.die-wolke.com\/","version":132,"lastModified":"1302068826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fc\/4bc91f36017a3c57fe00c4fc\/die-wolke-mid.jpg","studio":"Clasart Film","genre":"Disaster","title":"Die Wolke","releaseDate":1142467200000,"language":"en","type":"Movie","_key":"30844"} +{"label":"Hans-Laurin Beyerling","version":20,"id":"52636","lastModified":"1301901783000","name":"Hans-Laurin Beyerling","type":"Person","_key":"30845"} +{"label":"Carina N. Wiese","version":19,"id":"52637","lastModified":"1301901564000","name":"Carina N. Wiese","type":"Person","_key":"30846"} +{"label":"Claire Oelkers","version":20,"id":"52638","lastModified":"1301902392000","name":"Claire Oelkers","type":"Person","_key":"30847"} +{"label":"Tom Wlaschiha","version":29,"id":"52639","lastModified":"1301901495000","name":"Tom Wlaschiha","type":"Person","_key":"30848"} +{"label":"Josefine Merkatz","version":20,"id":"52640","lastModified":"1301902369000","name":"Josefine Merkatz","type":"Person","_key":"30849"} +{"label":"Emanuela von Frankenberg","version":20,"id":"52641","lastModified":"1301902151000","name":"Emanuela von Frankenberg","type":"Person","_key":"30850"} +{"label":"Elisabeth Niederer","version":20,"id":"52642","lastModified":"1301901954000","name":"Elisabeth Niederer","type":"Person","_key":"30851"} +{"label":"Alpha Dog","description":"Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'","id":"7457","runtime":118,"imdbId":"tt0426883","trailer":"http:\/\/www.youtube.com\/watch?v=SPbwocBe_tQ","version":374,"lastModified":"1301901789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/509\/4bc91f38017a3c57fe00c509\/alpha-dog-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Crime","title":"Alpha Dog","releaseDate":1138320000000,"language":"en","tagline":"One crime. 38 witnesses. No way back.","type":"Movie","_key":"30852"} +{"label":"Matthew Barry","version":54,"id":"545","lastModified":"1300030853000","name":"Matthew Barry","type":"Person","_key":"30853"} +{"label":"Fernando Vargas","version":24,"id":"52645","lastModified":"1301901419000","name":"Fernando Vargas","type":"Person","_key":"30854"} +{"label":"Vincent Kartheiser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fe1\/4cf926025e73d62999001fe1\/vincent-kartheiser-profile.jpg","version":36,"id":"52646","lastModified":"1301901468000","name":"Vincent Kartheiser","type":"Person","_key":"30855"} +{"label":"Shawn Hatosy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c81\/4c72a8ec5e73d65f7d000c81\/shawn-hatosy-profile.jpg","version":74,"birthday":"189039600000","id":"52647","birthplace":"Frederick, Maryland, USA","lastModified":"1301901275000","name":"Shawn Hatosy","type":"Person","_key":"30856"} +{"label":"Alex Solowitz","version":24,"id":"52648","lastModified":"1301901436000","name":"Alex Solowitz","type":"Person","_key":"30857"} +{"label":"Alec Vigil","version":24,"id":"52649","lastModified":"1301901996000","name":"Alec Vigil","type":"Person","_key":"30858"} +{"label":"Frank Cassavetes","version":23,"id":"52650","lastModified":"1301902123000","name":"Frank Cassavetes","type":"Person","_key":"30859"} +{"label":"Nicole Dubos","version":23,"id":"52651","lastModified":"1301902123000","name":"Nicole Dubos","type":"Person","_key":"30860"} +{"label":"Regina Rice","version":23,"id":"52652","lastModified":"1301901926000","name":"Regina Rice","type":"Person","_key":"30861"} +{"label":"Laura Nativo","version":26,"id":"52653","lastModified":"1301902135000","name":"Laura Nativo","type":"Person","_key":"30862"} +{"label":"Amber Heard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4bcc1223017a3c0f2700009f\/amber-heard-profile.jpg","biography":"Amber Laura Heard (born April 22, 1986) is an American actress. Heard's first starring role came in 2007 on the CW television show Hidden Palms, and her breakthrough came in 2008 with roles in Never Back Down, Pineapple Express and as the lead and title character in All The Boys Love Mandy Lane, which debuted at the Toronto International Film Festival in 2006. In 2009 Heard starred in The Stepfather and also had a small role in the horror-comedy Zombieland. She has also starred in The Joneses (2","version":89,"birthday":"514504800000","id":"55085","birthplace":"Austin, Texas, USA","lastModified":"1301904066000","name":"Amber Heard","type":"Person","_key":"30863"} +{"label":"David Thornton","version":28,"id":"76526","lastModified":"1301902143000","name":"David Thornton","type":"Person","_key":"30864"} +{"label":"Heather Wahlquist","version":32,"id":"55317","lastModified":"1301901456000","name":"Heather Wahlquist","type":"Person","_key":"30865"} +{"label":"Man spricht deutsh","description":"No overview found.","id":"7458","runtime":84,"imdbId":"tt0095579","version":54,"lastModified":"1301905280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/518\/4bc91f38017a3c57fe00c518\/man-spricht-deutsh-mid.jpg","studio":"Vision","genre":"Comedy","title":"Man spricht deutsh","releaseDate":572140800000,"language":"en","type":"Movie","_key":"30866"} +{"label":"Dieter Hildebrandt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6bc\/4d5038337b9aa13aaf00c6bc\/dieter-hildebrandt-profile.jpg","version":27,"id":"52655","lastModified":"1301902379000","name":"Dieter Hildebrandt","type":"Person","_key":"30867"} +{"label":"Werner Schneyder","version":20,"id":"52656","lastModified":"1301902369000","name":"Werner Schneyder","type":"Person","_key":"30868"} +{"label":"Enzo Cannavale","version":34,"id":"52657","lastModified":"1301901642000","name":"Enzo Cannavale","type":"Person","_key":"30869"} +{"label":"Siegfried Mahler","version":19,"id":"52658","lastModified":"1301902278000","name":"Siegfried Mahler","type":"Person","_key":"30870"} +{"label":"Elisabeth Welz","version":23,"id":"52659","lastModified":"1301901885000","name":"Elisabeth Welz","type":"Person","_key":"30871"} +{"label":"Isa Haller","version":19,"id":"46166","lastModified":"1301902278000","name":"Isa Haller","type":"Person","_key":"30872"} +{"label":"Thomas Geier","version":19,"id":"52660","lastModified":"1301901885000","name":"Thomas Geier","type":"Person","_key":"30873"} +{"label":"Pamela Prati","version":28,"id":"52661","lastModified":"1301901955000","name":"Pamela Prati","type":"Person","_key":"30874"} +{"label":"Ambrogio Chirico","version":19,"id":"52662","lastModified":"1301901885000","name":"Ambrogio Chirico","type":"Person","_key":"30875"} +{"label":"Giulio Marchetti","version":21,"id":"52663","lastModified":"1301901885000","name":"Giulio Marchetti","type":"Person","_key":"30876"} +{"label":"Luigi Tortora","version":19,"id":"52664","lastModified":"1301901885000","name":"Luigi Tortora","type":"Person","_key":"30877"} +{"label":"Gottfried Drexler","version":19,"id":"52665","lastModified":"1301901885000","name":"Gottfried Drexler","type":"Person","_key":"30878"} +{"label":"Speed Racer","description":"Speed racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring and end to the corruption and criminal activities. Inspired by the cartoon series.","id":"7459","runtime":135,"imdbId":"tt0811080","trailer":"http:\/\/www.youtube.com\/watch?v=FCxpdDhPwwc","homepage":"http:\/\/www.speedracerthemovie.warnerbros.com\/","version":320,"lastModified":"1301902741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/200\/4c17eb8e7b9aa108d7000200\/speed-racer-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Speed Racer","releaseDate":1210118400000,"language":"en","tagline":"Go","type":"Movie","_key":"30879"} +{"label":"Matthew Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54b\/4c626a327b9aa172d900054b\/matthew-fox-profile.jpg","biography":"Sebbene sia conosciuto soprattutto per il ruolo di Jack Shephard in Lost, questa non \u00e8 stata la prima comparsa televisiva di Fox. Ha infatti recitato la parte di uno dei 5 fratelli nella serie Party of Five, vincitrice di un Golden Globe.\nNato in Pennsylvania, \u00e8 cresciuto in un ranch a Crowheart, nel Wyoming, e successivamente si \u00e8 trasferito alla Columbia University per dedicarsi agli studi. Durante il periodo accademico si \u00e8 anche distinto come degno giocatore di football americano. Tali preme","version":40,"birthday":"-109299600000","id":"28657","birthplace":"Abington, Pennsylvania, U.S.","lastModified":"1301901210000","name":"Matthew Fox","type":"Person","_key":"30880"} +{"label":"Scott Porter","version":41,"id":"53368","lastModified":"1301901097000","name":"Scott Porter","type":"Person","_key":"30881"} +{"label":"Die Anruferin","description":"No overview found.","id":"7460","runtime":84,"imdbId":"tt0825682","homepage":"http:\/\/www.dieanruferin-derfilm.de\/","version":64,"lastModified":"1301903210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b91\/4d2ef7c65e73d63a5d00eb91\/die-anruferin-mid.jpg","studio":"W\u00fcste Filmproduktion","genre":"Drama","title":"Die Anruferin","releaseDate":1190246400000,"language":"en","type":"Movie","_key":"30882"} +{"label":"Valerie Koch","version":22,"id":"52666","lastModified":"1301901850000","name":"Valerie Koch","type":"Person","_key":"30883"} +{"label":"Franziska Ponitz","version":20,"id":"52667","lastModified":"1301901885000","name":"Franziska Ponitz","type":"Person","_key":"30884"} +{"label":"Stefanie M\u00fchlhan","version":20,"id":"52668","lastModified":"1301902099000","name":"Stefanie M\u00fchlhan","type":"Person","_key":"30885"} +{"label":"Marita Breuer","version":22,"id":"28453","lastModified":"1301901959000","name":"Marita Breuer","type":"Person","_key":"30886"} +{"label":"Felix Randau","version":20,"id":"52670","lastModified":"1301902099000","name":"Felix Randau","type":"Person","_key":"30887"} +{"label":"Vantage Point","description":"8 Strangers, 8 points of view. The attempted assassination of the American President is told and re-told from several different perspectives.","id":"7461","runtime":90,"imdbId":"tt0443274","trailer":"http:\/\/www.youtube.com\/watch?v=vPVIja8ATHU","homepage":"http:\/\/www.vantagepoint-movie.com\/index.php","version":413,"lastModified":"1302066671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/553\/4bc91f40017a3c57fe00c553\/vantage-point-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Vantage Point","releaseDate":1203552000000,"language":"en","type":"Movie","_key":"30888"} +{"label":"Einfach nur Liebe","description":"No overview found.","id":"7462","runtime":94,"imdbId":"tt0109713","version":57,"lastModified":"1301906743000","studio":"Avista Film","genre":"Drama","title":"Einfach nur Liebe","releaseDate":757382400000,"language":"en","type":"Movie","_key":"30889"} +{"label":"Eva Ha\u00dfmann","version":26,"id":"53371","lastModified":"1301901652000","name":"Eva Ha\u00dfmann","type":"Person","_key":"30890"} +{"label":"Peter Roggisch","version":24,"id":"26440","lastModified":"1301901787000","name":"Peter Roggisch","type":"Person","_key":"30891"} +{"label":"Free Zone","description":"Rebecca, an American who has been living in Jerusalem for a few months now, has just broken off her engagement. She gets into a cab driven by Hanna, an Israeli. But Hanna is on her way to Jordan, to the Free Zone, to pick up a large of sum of money.","id":"7483","runtime":90,"imdbId":"tt0441761","version":146,"lastModified":"1301904057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bd\/4ca8828d7b9aa17acd0004bd\/free-zone-mid.jpg","studio":"Agat Films","genre":"Drama","title":"Free Zone","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"30892"} +{"label":"Hana Laszlo","version":22,"id":"52684","lastModified":"1301901837000","name":"Hana Laszlo","type":"Person","_key":"30893"} +{"label":"Makram Khoury","version":23,"id":"52685","lastModified":"1301902041000","name":"Makram Khoury","type":"Person","_key":"30894"} +{"label":"Aki Avni","version":21,"id":"52686","lastModified":"1301902393000","name":"Aki Avni","type":"Person","_key":"30895"} +{"label":"Uri Klauzner","version":21,"id":"52687","lastModified":"1301902369000","name":"Uri Klauzner","type":"Person","_key":"30896"} +{"label":"Liron Levo","version":24,"id":"52688","lastModified":"1301901402000","name":"Liron Levo","type":"Person","_key":"30897"} +{"label":"Adnan Tarabshi","version":20,"id":"52689","lastModified":"1301902381000","name":"Adnan Tarabshi","type":"Person","_key":"30898"} +{"label":"Shredi Jabarin","version":18,"id":"52690","lastModified":"1301902369000","name":"Shredi Jabarin","type":"Person","_key":"30899"} +{"label":"Open Season","description":"Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.","id":"7484","runtime":86,"imdbId":"tt0400717","homepage":"http:\/\/www.sonypictures.com\/movies\/openseason\/","version":298,"lastModified":"1301901149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4cbab7f85e73d63506000055\/open-season-mid.jpg","studio":"Sony Pictures Animation","genre":"Action","title":"Open Season","releaseDate":1159488000000,"language":"en","tagline":"One Fur All & All Fur One","type":"Movie","_key":"30900"} +{"label":"Roger Allers","version":42,"id":"15812","lastModified":"1302063458000","name":"Roger Allers","type":"Person","_key":"30901"} +{"label":"Jill Culton","version":74,"id":"7881","lastModified":"1301901395000","name":"Jill Culton","type":"Person","_key":"30902"} +{"label":"Anthony Stacchi","version":24,"id":"52691","lastModified":"1301901832000","name":"Anthony Stacchi","type":"Person","_key":"30903"} +{"label":"Georgia Engel","version":25,"id":"52697","lastModified":"1301901639000","name":"Georgia Engel","type":"Person","_key":"30904"} +{"label":"Nika Futterman","version":34,"id":"52698","lastModified":"1301901362000","name":"Nika Futterman","type":"Person","_key":"30905"} +{"label":"Danny Mann","version":62,"id":"52699","lastModified":"1301966272000","name":"Danny Mann","type":"Person","_key":"30906"} +{"label":"Michelle Murdocca","version":24,"id":"52700","lastModified":"1301901439000","name":"Michelle Murdocca","type":"Person","_key":"30907"} +{"label":"Fergal Reilly","version":24,"id":"52701","lastModified":"1301901581000","name":"Fergal Reilly","type":"Person","_key":"30908"} +{"label":"Shooter","description":"A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why.","id":"7485","runtime":124,"imdbId":"tt0822854","trailer":"http:\/\/www.youtube.com\/watch?v=-6jgkXHdNi4","homepage":"http:\/\/www.shootermovie.com\/","version":497,"lastModified":"1301992991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/590\/4bc91f4d017a3c57fe00c590\/shooter-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Shooter","releaseDate":1174608000000,"language":"en","tagline":"Yesterday was about honor. Today is about justice.","type":"Movie","_key":"30909"} +{"label":"Jonathan Walker","version":37,"id":"52702","lastModified":"1301901164000","name":"Jonathan Walker","type":"Person","_key":"30910"} +{"label":"Alan C. Peterson","version":33,"id":"52703","lastModified":"1301901242000","name":"Alan C. Peterson","type":"Person","_key":"30911"} +{"label":"Lane Garrison","version":28,"id":"52704","lastModified":"1301901555000","name":"Lane Garrison","type":"Person","_key":"30912"} +{"label":"Zak Santiago","version":39,"id":"52705","lastModified":"1301901292000","name":"Zak Santiago","type":"Person","_key":"30913"} +{"label":"Michael-Ann Connor","version":28,"id":"52706","lastModified":"1301901394000","name":"Michael-Ann Connor","type":"Person","_key":"30914"} +{"label":"Sonatine","description":"Kitano plays Murakawa, a Tokyo yakuza tiring of gangster life. Along with a few of his henchmen, he is sent by his boss to Okinawa to help end a gang war, supposedly to mediate between two warring clans. He finds that the dispute between the clans is insignificant and whilst wondering why he was sent to Okinawa at all, Murakawa's headquarters are bombed and he and his gang are ambushed in a bar.","id":"7500","runtime":94,"imdbId":"tt0108188","version":70,"lastModified":"1301996362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/599\/4bc91f4e017a3c57fe00c599\/sonatine-mid.jpg","studio":"Right Vision Corporation","genre":"Action","title":"Sonatine","releaseDate":747619200000,"language":"en","type":"Movie","_key":"30915"} +{"label":"Aya Kokumai","version":20,"id":"52709","lastModified":"1301901827000","name":"Aya Kokumai","type":"Person","_key":"30916"} +{"label":"Masanobu Katsumura","version":21,"id":"52710","lastModified":"1301902026000","name":"Masanobu Katsumura","type":"Person","_key":"30917"} +{"label":"Tonbo Zushi","version":20,"id":"52712","lastModified":"1301901993000","name":"Tonbo Zushi","type":"Person","_key":"30918"} +{"label":"Ken'ichi Yajima","version":18,"id":"52713","lastModified":"1301902026000","name":"Ken'ichi Yajima","type":"Person","_key":"30919"} +{"label":"Eiji Minakata","version":20,"id":"52714","lastModified":"1301902199000","name":"Eiji Minakata","type":"Person","_key":"30920"} +{"label":"Rome Kanda","version":20,"id":"52715","lastModified":"1301902371000","name":"Rome Kanda","type":"Person","_key":"30921"} +{"label":"Houka Kinoshita","version":28,"id":"52716","lastModified":"1301901603000","name":"Houka Kinoshita","type":"Person","_key":"30922"} +{"label":"Yuuki Natsusaka","version":20,"id":"52717","lastModified":"1301902183000","name":"Yuuki Natsusaka","type":"Person","_key":"30923"} +{"label":"Kanta Yamazaki","version":20,"id":"52720","lastModified":"1301902186000","name":"Kanta Yamazaki","type":"Person","_key":"30924"} +{"label":"Knockaround Guys","description":"The four sons of major Brooklyn mobsters have to team up to retrieve a bag of cash in a small Montana town ruled by a corrupt sheriff. Specifically, the story gets started when Matt Demaret goes on a job to deliver the money for his mob father on the advice of his uncle. Things don't go as planned though...","id":"7501","runtime":91,"imdbId":"tt0211465","version":198,"lastModified":"1301903389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e45\/4d40f4587b9aa15bab002e45\/knockaround-guys-mid.jpg","studio":"Lawrence Bender Productions","genre":"Action","title":"Knockaround Guys","releaseDate":1019174400000,"language":"en","tagline":"How many friends can you trust with your life?","type":"Movie","_key":"30925"} +{"label":"Andy Davoli","version":21,"id":"52708","lastModified":"1301901928000","name":"Andy Davoli","type":"Person","_key":"30926"} +{"label":"Nicholas Pasco","version":23,"id":"52711","lastModified":"1301902356000","name":"Nicholas Pasco","type":"Person","_key":"30927"} +{"label":"Shawn Doyle","version":35,"id":"25878","lastModified":"1301901472000","name":"Shawn Doyle","type":"Person","_key":"30928"} +{"label":"Andrew Francis","version":34,"id":"52718","lastModified":"1301901121000","name":"Andrew Francis","type":"Person","_key":"30929"} +{"label":"John Liddle","version":23,"id":"52719","lastModified":"1301902356000","name":"John Liddle","type":"Person","_key":"30930"} +{"label":"Dov Tiefenbach","version":28,"id":"44176","lastModified":"1301902054000","name":"Dov Tiefenbach","type":"Person","_key":"30931"} +{"label":"Brian Koppelman","version":62,"id":"16304","lastModified":"1301901243000","name":"Brian Koppelman","type":"Person","_key":"30932"} +{"label":"David Levien","version":55,"id":"16305","lastModified":"1301901125000","name":"David Levien","type":"Person","_key":"30933"} +{"label":"Mutanten","description":"No overview found.","id":"7502","runtime":95,"imdbId":"tt0316290","version":58,"lastModified":"1301904444000","studio":"Egoli Tossell Film AG","genre":"Drama","title":"Mutanten","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"30934"} +{"label":"Karoline Teska","version":20,"id":"52721","lastModified":"1301901761000","name":"Karoline Teska","type":"Person","_key":"30935"} +{"label":"Jacob Matschenz","version":40,"id":"52722","lastModified":"1301901403000","name":"Jacob Matschenz","type":"Person","_key":"30936"} +{"label":"Dominique Sghair","version":19,"id":"52723","lastModified":"1301902278000","name":"Dominique Sghair","type":"Person","_key":"30937"} +{"label":"Ludmilla Lenc\u00e9s","version":19,"id":"52724","lastModified":"1301902278000","name":"Ludmilla Lenc\u00e9s","type":"Person","_key":"30938"} +{"label":"Otto Edelmann","version":19,"id":"52725","lastModified":"1301902278000","name":"Otto Edelmann","type":"Person","_key":"30939"} +{"label":"Rebecca Scheurle","version":19,"id":"52726","lastModified":"1301902278000","name":"Rebecca Scheurle","type":"Person","_key":"30940"} +{"label":"L\u00e9a Kuhn","version":19,"id":"52727","lastModified":"1301902278000","name":"L\u00e9a Kuhn","type":"Person","_key":"30941"} +{"label":"Katalin G\u00f6dr\u00f6s","version":21,"id":"52728","lastModified":"1301901732000","name":"Katalin G\u00f6dr\u00f6s","type":"Person","_key":"30942"} +{"label":"Earth","description":"No overview found.","id":"7504","runtime":101,"imdbId":"tt0150433","version":106,"lastModified":"1301904194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ac\/4bc91f50017a3c57fe00c5ac\/earth-mid.jpg","studio":"Cracking the Earth Films","genre":"Drama","title":"Earth","releaseDate":905904000000,"language":"en","type":"Movie","_key":"30943"} +{"label":"Aamir Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4bc992d2017a3c182400002a\/aamir-khan-profile.jpg","version":77,"id":"52763","lastModified":"1301901173000","name":"Aamir Khan","type":"Person","_key":"30944"} +{"label":"Nandita Das","version":20,"id":"53372","lastModified":"1301902154000","name":"Nandita Das","type":"Person","_key":"30945"} +{"label":"Maia Sethna","version":20,"id":"53373","lastModified":"1301901787000","name":"Maia Sethna","type":"Person","_key":"30946"} +{"label":"Kitu Gidwani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/56b\/4d32be657b9aa177db00556b\/kitu-gidwani-profile.jpg","version":22,"id":"53374","lastModified":"1301901597000","name":"Kitu Gidwani","type":"Person","_key":"30947"} +{"label":"Arif Zakaria","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/28e\/4d34a9b95e73d6335200928e\/arif-zakaria-profile.jpg","version":22,"id":"53375","lastModified":"1301902154000","name":"Arif Zakaria","type":"Person","_key":"30948"} +{"label":"Eric Peterson","version":20,"id":"53376","lastModified":"1301901960000","name":"Eric Peterson","type":"Person","_key":"30949"} +{"label":"Pavan Malhotra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b59\/4d215ad85e73d66b30002b59\/pavan-malhotra-profile.jpg","version":30,"id":"53379","lastModified":"1301901578000","name":"Pavan Malhotra","type":"Person","_key":"30950"} +{"label":"Sunil Mehra","version":20,"id":"53380","lastModified":"1301901996000","name":"Sunil Mehra","type":"Person","_key":"30951"} +{"label":"Navtej Singh Johar","version":20,"id":"53381","lastModified":"1301902341000","name":"Navtej Singh Johar","type":"Person","_key":"30952"} +{"label":"Fire, Earth, Water","description":"No overview found.","id":"7505","title":"Fire, Earth, Water","language":"en","lastModified":"1301905337000","version":165,"type":"Movie","_key":"30953"} +{"label":"Harum Scarum","description":"Johnny Tyronne, action movie star and ladies man, is travelling through the Middle East on a goodwill tour to promote his latest movie, \"Sands of the Desert\". Once he arrives, however, he is kidnapped by a gang of assassins who were so impressed with his on-screen adventures that they want to hire him to carry out an assassination for them.","id":"7506","runtime":95,"imdbId":"tt0059255","trailer":"http:\/\/www.youtube.com\/watch?v=8Z-x6z4m1HU","version":148,"lastModified":"1301929893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b5\/4bc91f50017a3c57fe00c5b5\/harum-scarum-mid.jpg","studio":"Four-Leaf Productions","genre":"Comedy","title":"Harum Scarum","releaseDate":-129513600000,"language":"en","type":"Movie","_key":"30954"} +{"label":"Gene Nelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/302\/4c475de67b9aa15de1000302\/gene-nelson-profile.jpg","version":22,"id":"16002","lastModified":"1301901777000","name":"Gene Nelson","type":"Person","_key":"30955"} +{"label":"Mary Ann Mobley","version":22,"id":"52754","lastModified":"1301902034000","name":"Mary Ann Mobley","type":"Person","_key":"30956"} +{"label":"Fran Jeffries","version":22,"id":"52755","lastModified":"1301901943000","name":"Fran Jeffries","type":"Person","_key":"30957"} +{"label":"Phillip Reed","version":22,"id":"52756","lastModified":"1301901732000","name":"Phillip Reed","type":"Person","_key":"30958"} +{"label":"Dirk Harvey","version":20,"id":"52757","lastModified":"1301902099000","name":"Dirk Harvey","type":"Person","_key":"30959"} +{"label":"Jack Costanzo","version":20,"id":"52758","lastModified":"1301902099000","name":"Jack Costanzo","type":"Person","_key":"30960"} +{"label":"Gli Specialisti","description":"No overview found.","id":"7507","runtime":104,"imdbId":"tt0065026","version":65,"lastModified":"1301904720000","studio":"Adelphia Compagnia Cinematografica","genre":"Western","title":"Gli Specialisti","releaseDate":-3110400000,"language":"en","type":"Movie","_key":"30961"} +{"label":"Sylvie Fennec","version":21,"id":"52998","lastModified":"1301901997000","name":"Sylvie Fennec","type":"Person","_key":"30962"} +{"label":"Remo De Angelis","version":18,"id":"52999","lastModified":"1301902341000","name":"Remo De Angelis","type":"Person","_key":"30963"} +{"label":"Angela Luce","version":24,"id":"53000","lastModified":"1301902224000","name":"Angela Luce","type":"Person","_key":"30964"} +{"label":"Taare Zameen Par","description":"Ishaan Awasthi is an eight-year-old whose world is filled with wonders that no one else seems to appreciate; colours, fish, dogs and kites are just not important in the world of adults, who are much more interested in things like homework, marks and neatness. Ishaan just cannot seem to get anything right in class. He is then sent off to boarding school, where his life is about to change forever.","id":"7508","runtime":165,"imdbId":"tt0986264","trailer":"http:\/\/www.youtube.com\/watch?v=uCm4dEG2Phg","version":192,"lastModified":"1302061988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c6\/4bc91f52017a3c57fe00c5c6\/7508-mid.jpg","studio":"Aamir Khan Productions","genre":"Drama","title":"Taare Zameen Par","releaseDate":1198195200000,"language":"en","tagline":"Every child is special","type":"Movie","_key":"30965"} +{"label":"Darsheel Safary","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f3\/4d2240447b9aa1736b0033f3\/darsheel-safary-profile.jpg","version":25,"id":"52764","lastModified":"1301901599000","name":"Darsheel Safary","type":"Person","_key":"30966"} +{"label":"Tisca Chopra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc7\/4d22405b7b9aa12823000dc7\/tisca-chopra-profile.jpg","version":27,"id":"52766","lastModified":"1301901526000","name":"Tisca Chopra","type":"Person","_key":"30967"} +{"label":"Vipin Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d91\/4d2240867b9aa12886000d91\/vipin-sharma-profile.jpg","version":29,"id":"52768","lastModified":"1301901455000","name":"Vipin Sharma","type":"Person","_key":"30968"} +{"label":"Sachet Engineer","version":23,"id":"52770","lastModified":"1301902099000","name":"Sachet Engineer","type":"Person","_key":"30969"} +{"label":"Tanay Chheda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/da4\/4d22406d7b9aa1289f000da4\/tanay-chheda-profile.jpg","version":24,"id":"52772","lastModified":"1301901700000","name":"Tanay Chheda","type":"Person","_key":"30970"} +{"label":"Water","description":"The film examines the plight of a group of widows forced into poverty at a temple in the holy city of Varanasi. It focuses on a relationship between one of the widows, who wants to escape the social restrictions imposed on widows, and a man who is from the highest caste and a follower of Mahatma Gandhi.","id":"7509","runtime":115,"imdbId":"tt0240200","version":215,"lastModified":"1301904295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4c0354ec017a3c7e92000131\/7509-mid.jpg","studio":"David Hamilton Productions","genre":"Drama","title":"Water","releaseDate":1126137600000,"language":"en","type":"Movie","_key":"30971"} +{"label":"Sarala","version":20,"id":"52970","lastModified":"1301901885000","name":"Sarala","type":"Person","_key":"30972"} +{"label":"John Abraham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e8\/4c4f153d5e73d62ec60000e8\/john-abraham-profile.jpg","version":48,"id":"52971","lastModified":"1301901224000","name":"John Abraham","type":"Person","_key":"30973"} +{"label":"Waheeda Rehman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bde\/4d2155405e73d66b2b002bde\/waheeda-rehman-profile.jpg","version":29,"id":"52973","lastModified":"1301901465000","name":"Waheeda Rehman","type":"Person","_key":"30974"} +{"label":"Seema Biswas","version":24,"id":"52972","lastModified":"1301902326000","name":"Seema Biswas","type":"Person","_key":"30975"} +{"label":"Raghuvir Yadav","version":20,"id":"52974","lastModified":"1301902278000","name":"Raghuvir Yadav","type":"Person","_key":"30976"} +{"label":"Running with Scissors","description":"Young Augusten Burroughs absorbs experiences that could make for a shocking memoir: the son of an alcoholic father and an unstable mother (Bening), he's handed off to his mother's therapist, Dr. Finch, and spends his adolescent years as a member of Finch's bizarre extended family.","id":"7510","runtime":116,"imdbId":"tt0439289","version":319,"lastModified":"1301903176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dc\/4bc91f55017a3c57fe00c5dc\/running-with-scissors-mid.jpg","studio":"Plan B Productions","genre":"Comedy","title":"Running with Scissors","releaseDate":1161907200000,"language":"en","type":"Movie","_key":"30977"} +{"label":"Kristin Chenoweth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26a\/4c9edd425e73d6704a00026a\/kristin-chenoweth-profile.jpg","version":72,"birthday":"-45450000000","id":"52775","lastModified":"1301901099000","name":"Kristin Chenoweth","type":"Person","_key":"30978"} +{"label":"Dagmara Dominczyk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ad\/4d9baa817b9aa16d130006ad\/dagmara-dominczyk-profile.jpg","version":39,"id":"52776","lastModified":"1302040466000","name":"Dagmara Dominczyk","type":"Person","_key":"30979"} +{"label":"Jack Kaeding","version":20,"id":"52777","lastModified":"1301902278000","name":"Jack Kaeding","type":"Person","_key":"30980"} +{"label":"Gabriel Guedj","version":20,"id":"52778","lastModified":"1301902278000","name":"Gabriel Guedj","type":"Person","_key":"30981"} +{"label":"Ryan Murphy","version":48,"id":"52779","lastModified":"1301901147000","name":"Ryan Murphy","type":"Person","_key":"30982"} +{"label":"The Last Kiss","description":"Revolves around a young couple and their friends struggling with adulthood and issues of relationships and commitment. Based on the 2001 Italian film L'ultimo bacio, directed by Gabriele Muccino.","id":"7511","runtime":115,"imdbId":"tt0434139","trailer":"http:\/\/www.youtube.com\/watch?v=IJB_Ccoh-Ro","version":150,"lastModified":"1301902611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d86\/4d03103c7b9aa11bc1000d86\/the-last-kiss-mid.jpg","studio":"Lakeshore Entertainment","genre":"Comedy","title":"The Last Kiss","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"30983"} +{"label":"Rachel Bilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a4\/4c1cc5b67b9aa118260000a4\/rachel-bilson-profile.jpg","version":27,"id":"52783","lastModified":"1301901330000","name":"Rachel Bilson","type":"Person","_key":"30984"} +{"label":"David Jones","version":21,"id":"52784","lastModified":"1301902026000","name":"David Jones","type":"Person","_key":"30985"} +{"label":"Cindy Sampson","version":28,"id":"52785","lastModified":"1301901766000","name":"Cindy Sampson","type":"Person","_key":"30986"} +{"label":"Lisa MacKay","version":20,"id":"52786","lastModified":"1301901934000","name":"Lisa MacKay","type":"Person","_key":"30987"} +{"label":"Patricia Stasiak","version":21,"id":"52787","lastModified":"1301901934000","name":"Patricia Stasiak","type":"Person","_key":"30988"} +{"label":"Idiocracy","description":"To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.","id":"7512","runtime":84,"imdbId":"tt0387808","trailer":"http:\/\/www.youtube.com\/watch?v=L0yQunhOaU0","version":257,"lastModified":"1301901745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/817\/4d4df0545e73d617b7002817\/idiocracy-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Idiocracy","releaseDate":1157068800000,"language":"en","tagline":"In the future, intelligence is extinct.","type":"Movie","_key":"30989"} +{"label":"Maya Rudolph","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/082\/4cdc5cf57b9aa13802000082\/maya-rudolph-profile.jpg","version":50,"id":"52792","lastModified":"1301901177000","name":"Maya Rudolph","type":"Person","_key":"30990"} +{"label":"Anthony 'Citric' Campos","version":23,"id":"52793","lastModified":"1301901382000","name":"Anthony 'Citric' Campos","type":"Person","_key":"30991"} +{"label":"Sonny Castillo","version":23,"id":"52795","lastModified":"1301901430000","name":"Sonny Castillo","type":"Person","_key":"30992"} +{"label":"Kevin McAfee","version":23,"id":"52796","lastModified":"1301901476000","name":"Kevin McAfee","type":"Person","_key":"30993"} +{"label":"Robert Musgrave","version":25,"id":"52797","lastModified":"1301901476000","name":"Robert Musgrave","type":"Person","_key":"30994"} +{"label":"Christopher Ryan","version":21,"id":"52798","lastModified":"1301901431000","name":"Christopher Ryan","type":"Person","_key":"30995"} +{"label":"Heath Jones","version":23,"id":"52799","lastModified":"1301901476000","name":"Heath Jones","type":"Person","_key":"30996"} +{"label":"Eli Mu\u00f1oz","version":23,"id":"52800","lastModified":"1301901382000","name":"Eli Mu\u00f1oz","type":"Person","_key":"30997"} +{"label":"Patrick Fischler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d74\/4cf5cbd15e73d6299a000d74\/patrick-fischler-profile.jpg","version":43,"id":"52801","lastModified":"1301901468000","name":"Patrick Fischler","type":"Person","_key":"30998"} +{"label":"Ryan Ransdell","version":24,"id":"52802","lastModified":"1301901362000","name":"Ryan Ransdell","type":"Person","_key":"30999"} +{"label":"Terry Crews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c2\/4ca600177b9aa16ed80004c2\/terry-crews-profile.jpg","version":74,"birthday":"-44931600000","id":"53256","birthplace":"Flint, Michigan, USA ","lastModified":"1302065382000","name":"Terry Crews","type":"Person","_key":"31000"} +{"label":"Otoshimono","description":"On her way to school, high school girl Nana sees a train accident. Then Nana and her friend Kanae start to come across various bizarre phenomena, including red fingerprints and a female spirit who 'lives' on the station platform. One day, Nana's younger sister is lost, and the only possibility seems to be that she had been taken by these spirits. The missing tracks. The predictions that a mysterious woman makes.","id":"7513","runtime":92,"imdbId":"tt0819839","version":96,"lastModified":"1301926783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62c\/4bc91f5f017a3c57fe00c62c\/otoshimono-mid.jpg","genre":"Horror","title":"Otoshimono","releaseDate":1153958400000,"language":"en","type":"Movie","_key":"31001"} +{"label":"Erika Sawajiri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e5\/4d3e79c15e73d622d10043e5\/erika-sawajiri-profile.jpg","version":26,"id":"52806","lastModified":"1301901676000","name":"Erika Sawajiri","type":"Person","_key":"31002"} +{"label":"Chinatsu Wakatsuki","version":20,"id":"52807","lastModified":"1301902341000","name":"Chinatsu Wakatsuki","type":"Person","_key":"31003"} +{"label":"Aya Sugimoto","version":28,"id":"52808","lastModified":"1301902225000","name":"Aya Sugimoto","type":"Person","_key":"31004"} +{"label":"Itsuji Itao","version":26,"id":"52809","lastModified":"1301901424000","name":"Itsuji Itao","type":"Person","_key":"31005"} +{"label":"Miyoko Asada","version":20,"id":"52810","lastModified":"1301902373000","name":"Miyoko Asada","type":"Person","_key":"31006"} +{"label":"Takeshi Furusawa","version":22,"id":"52811","lastModified":"1301902341000","name":"Takeshi Furusawa","type":"Person","_key":"31007"} +{"label":"The Harder They Come","description":"The Harder They Come is a 1972 Jamaican crime film starring reggae singer Jimmy Cliff, who plays Ivanhoe Martin, a character based on Rhyging, a real-life Jamaican criminal who achieved fame in the 1940s. ","id":"7514","runtime":120,"imdbId":"tt0070155","trailer":"http:\/\/www.youtube.com\/watch?v=QvIEfPxLjcY","version":469,"lastModified":"1302056788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4bc91f60017a3c57fe00c635\/the-harder-they-come-mid.jpg","studio":"International Films","genre":"Action","title":"The Harder They Come","releaseDate":63072000000,"language":"en","type":"Movie","_key":"31008"} +{"label":"Jimmy Cliff","version":23,"id":"52813","lastModified":"1301901885000","name":"Jimmy Cliff","type":"Person","_key":"31009"} +{"label":"Janet Bartley","version":20,"id":"52814","lastModified":"1301901815000","name":"Janet Bartley","type":"Person","_key":"31010"} +{"label":"Carl Bradshaw","version":25,"id":"52815","lastModified":"1301901472000","name":"Carl Bradshaw","type":"Person","_key":"31011"} +{"label":"Ras Daniel Hartman","version":18,"id":"52816","lastModified":"1301903109000","name":"Ras Daniel Hartman","type":"Person","_key":"31012"} +{"label":"Basil Keane","version":19,"id":"52817","lastModified":"1301901885000","name":"Basil Keane","type":"Person","_key":"31013"} +{"label":"Bob Charlton","version":19,"id":"52818","lastModified":"1301902278000","name":"Bob Charlton","type":"Person","_key":"31014"} +{"label":"Winston Stona","version":19,"id":"52819","lastModified":"1301902278000","name":"Winston Stona","type":"Person","_key":"31015"} +{"label":"Lucia White","version":19,"id":"52820","lastModified":"1301901885000","name":"Lucia White","type":"Person","_key":"31016"} +{"label":"Volair Johnson","version":19,"id":"52821","lastModified":"1301902278000","name":"Volair Johnson","type":"Person","_key":"31017"} +{"label":"Beverly Anderson","version":19,"id":"52822","lastModified":"1301902278000","name":"Beverly Anderson","type":"Person","_key":"31018"} +{"label":"Clover Lewis","version":19,"id":"52823","lastModified":"1301902278000","name":"Clover Lewis","type":"Person","_key":"31019"} +{"label":"Elijah Chambers","version":19,"id":"52824","lastModified":"1301902099000","name":"Elijah Chambers","type":"Person","_key":"31020"} +{"label":"Prince Buster","version":19,"id":"52825","lastModified":"1301902278000","name":"Prince Buster","type":"Person","_key":"31021"} +{"label":"Ed 'Bim' Lewis","version":19,"id":"52826","lastModified":"1301902278000","name":"Ed 'Bim' Lewis","type":"Person","_key":"31022"} +{"label":"Bobby Loban","version":19,"id":"52827","lastModified":"1301901885000","name":"Bobby Loban","type":"Person","_key":"31023"} +{"label":"Joanne Dunn","version":19,"id":"52828","lastModified":"1301902278000","name":"Joanne Dunn","type":"Person","_key":"31024"} +{"label":"Adrian Robinson","version":19,"id":"52829","lastModified":"1301902278000","name":"Adrian Robinson","type":"Person","_key":"31025"} +{"label":"Don Topping","version":19,"id":"52830","lastModified":"1301902099000","name":"Don Topping","type":"Person","_key":"31026"} +{"label":"Karl Leslie","version":19,"id":"52831","lastModified":"1301902278000","name":"Karl Leslie","type":"Person","_key":"31027"} +{"label":"Sandra Redwood","version":19,"id":"52832","lastModified":"1301902278000","name":"Sandra Redwood","type":"Person","_key":"31028"} +{"label":"Ula Fraser","version":19,"id":"52833","lastModified":"1301902278000","name":"Ula Fraser","type":"Person","_key":"31029"} +{"label":"Carol Lawes","version":19,"id":"52834","lastModified":"1301902278000","name":"Carol Lawes","type":"Person","_key":"31030"} +{"label":"Aston 'Bam' Winter","version":19,"id":"52835","lastModified":"1301902099000","name":"Aston 'Bam' Winter","type":"Person","_key":"31031"} +{"label":"Toots Hibbert","version":19,"id":"52836","lastModified":"1301902278000","name":"Toots Hibbert","type":"Person","_key":"31032"} +{"label":"Perry Henzell","version":22,"id":"52837","lastModified":"1301901885000","name":"Perry Henzell","type":"Person","_key":"31033"} +{"label":"London","description":"London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend. ","id":"7515","runtime":92,"imdbId":"tt0449061","version":161,"lastModified":"1301904296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63e\/4bc91f64017a3c57fe00c63e\/london-mid.jpg","studio":"Destination Films","genre":"Action","title":"London","releaseDate":1107993600000,"language":"en","tagline":"One young man's incredible journey of self-discovery","type":"Movie","_key":"31034"} +{"label":"Joy Bryant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/563\/4d6a58bb7b9aa13636002563\/joy-bryant-profile.jpg","version":46,"id":"52847","lastModified":"1301901494000","name":"Joy Bryant","type":"Person","_key":"31035"} +{"label":"Isla Fisher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18d\/4bd07c7e017a3c63f100018d\/isla-fisher-profile.jpg","biography":"Isla Lang Fisher (born February 3, 1976) is an actress and author. She began acting on Australian television, on the short-lived soap opera Paradise Beach before playing Shannon Reed on the soap opera Home and Away. She has since been known for her comedic roles in Wedding Crashers (2005), Hot Rod (2007), Definitely, Maybe (2008), and Confessions of a Shopaholic (2009). Fisher was born in Muscat, Oman, to Scottish parents from Bathgate and Stranraer, and was raised in Perth, Western Australia. T","version":72,"birthday":"192150000000","id":"52848","birthplace":"Muscat, Oman","lastModified":"1301904092000","name":"Isla Fisher","type":"Person","_key":"31036"} +{"label":"Louis C.K.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4cee829c5e73d6531700008d\/louis-c-k-profile.jpg","version":48,"birthday":"-72752400000","id":"52849","birthplace":"Washington, D.C., U.S.","lastModified":"1301901244000","name":"Louis C.K.","type":"Person","_key":"31037"} +{"label":"Lina Esco","version":22,"id":"52850","lastModified":"1301902181000","name":"Lina Esco","type":"Person","_key":"31038"} +{"label":"Paula Patton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4c9bdb515e73d66d1f000021\/paula-patton-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Paula Maxine Patton Thicke <\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">was born December 5, 1975 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Los Angeles<\/st1:City>, <st1:State w:st=\"on\">California. <\/st1:State><\/st1:place>She started college at UC Berkeley, transferred to <st1:place w:st=\"","version":88,"birthday":"186966000000","id":"52851","birthplace":"Los Angeles, California, USA","lastModified":"1301904079000","name":"Paula Patton","type":"Person","_key":"31039"} +{"label":"Kat Dennings","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4bf057d5017a3c2d36000054\/kat-dennings-profile.jpg","version":47,"id":"52852","lastModified":"1301901192000","name":"Kat Dennings","type":"Person","_key":"31040"} +{"label":"Juliette Marquis","version":27,"id":"52853","lastModified":"1301901476000","name":"Juliette Marquis","type":"Person","_key":"31041"} +{"label":"Hunter Richards","version":22,"id":"52856","lastModified":"1301901996000","name":"Hunter Richards","type":"Person","_key":"31042"} +{"label":"Smokin' Aces","description":"When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.","id":"7516","runtime":109,"imdbId":"tt0475394","trailer":"http:\/\/www.youtube.com\/watch?v=202uOuNsgow","version":279,"lastModified":"1301993395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4d00204b5e73d6299e005f3c\/smokin-aces-mid.jpg","studio":"Working Title Films","genre":"Action","title":"Smokin' Aces","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"31043"} +{"label":"Joseph Ruskin","version":27,"id":"15998","lastModified":"1301901250000","name":"Joseph Ruskin","type":"Person","_key":"31044"} +{"label":"Christopher Michael Holley","version":24,"id":"52855","lastModified":"1301901416000","name":"Christopher Michael Holley","type":"Person","_key":"31045"} +{"label":"Mike Falkow","version":26,"id":"52857","lastModified":"1301901313000","name":"Mike Falkow","type":"Person","_key":"31046"} +{"label":"Joe Drago","version":23,"id":"52859","lastModified":"1301901313000","name":"Joe Drago","type":"Person","_key":"31047"} +{"label":"Jeff Habberstad","version":30,"id":"9624","lastModified":"1302062775000","name":"Jeff Habberstad","type":"Person","_key":"31048"} +{"label":"Live Free or Die","description":"It's not the crime, it's the cover-up. In small-town, hard-scrabble New Hampshire, foul-mouthed all-talk slacker John \"Rugged\" Rudgate fancies himself a criminal. When a local plumber stares him down at a pub, Rugged vows revenge, pouring brake fluid in the man's water supply. When the man dies from unrelated causes, Rugged and his side-kick, the even dimmer Jeff, try to cover up what they think i","id":"7517","runtime":89,"imdbId":"tt0432318","version":232,"lastModified":"1301905383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/666\/4bc91f68017a3c57fe00c666\/live-free-or-die-mid.jpg","studio":"Full Content Productions","genre":"Comedy","title":"Live Free or Die","releaseDate":1142035200000,"language":"en","type":"Movie","_key":"31049"} +{"label":"Aaron Stanford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/143\/4bd5ed88017a3c657d000143\/aaron-stanford-profile.jpg","version":67,"id":"11022","lastModified":"1301901206000","name":"Aaron Stanford","type":"Person","_key":"31050"} +{"label":"Judah Friedlander","version":35,"id":"52860","lastModified":"1302066308000","name":"Judah Friedlander","type":"Person","_key":"31051"} +{"label":"Peter Anthony Tambakis","version":20,"id":"52861","lastModified":"1301901885000","name":"Peter Anthony Tambakis","type":"Person","_key":"31052"} +{"label":"R.E. Rodgers","version":19,"id":"52862","lastModified":"1301901732000","name":"R.E. Rodgers","type":"Person","_key":"31053"} +{"label":"Carlo Alban","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fe3\/4d8bca325e73d653cb000fe3\/carlo-alban-profile.jpg","version":21,"id":"52863","lastModified":"1301902099000","name":"Carlo Alban","type":"Person","_key":"31054"} +{"label":"Gregg Kavet","version":21,"id":"52864","lastModified":"1301901885000","name":"Gregg Kavet","type":"Person","_key":"31055"} +{"label":"Andy Robin","version":30,"id":"44117","lastModified":"1301901552000","name":"Andy Robin","type":"Person","_key":"31056"} +{"label":"Over the Hedge","description":"A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating...and learns a lesson about family himself.","id":"7518","runtime":83,"imdbId":"tt0327084","trailer":"http:\/\/www.youtube.com\/watch?v=BE77igZczlI","version":193,"lastModified":"1301901347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd3\/4cbb81d05e73d67784000bd3\/over-the-hedge-mid.jpg","studio":"DreamWorks SKG","genre":"Adventure","title":"Over the Hedge","releaseDate":1147996800000,"language":"en","tagline":"Taking back the neighborhood... One snack at a time.","type":"Movie","_key":"31057"} +{"label":"Garry Shandling","version":39,"birthday":"-635043600000","id":"52865","birthplace":"Chicago, Illinois, USA","lastModified":"1301901193000","name":"Garry Shandling","type":"Person","_key":"31058"} +{"label":"Avril Lavigne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/441\/4cf23d107b9aa14499000441\/avril-lavigne-profile.jpg","version":37,"id":"52866","lastModified":"1301916409000","name":"Avril Lavigne","type":"Person","_key":"31059"} +{"label":"Sami Kirkpatrick","version":28,"id":"52867","lastModified":"1301901268000","name":"Sami Kirkpatrick","type":"Person","_key":"31060"} +{"label":"Shane Baumel","version":36,"id":"52868","lastModified":"1301997896000","name":"Shane Baumel","type":"Person","_key":"31061"} +{"label":"Madison Davenport","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36f\/4bf20fc6017a3c320d00036f\/madison-davenport-profile.jpg","version":32,"id":"52869","lastModified":"1301901214000","name":"Madison Davenport","type":"Person","_key":"31062"} +{"label":"Tim Johnson","version":56,"id":"52870","lastModified":"1301901199000","name":"Tim Johnson","type":"Person","_key":"31063"} +{"label":"Karey Kirkpatrick","version":85,"id":"52845","lastModified":"1302066064000","name":"Karey Kirkpatrick","type":"Person","_key":"31064"} +{"label":"Wilsberg \u2013 Die Wiedert\u00e4ufer","description":"No overview found.","id":"7519","runtime":0,"homepage":"http:\/\/wilsberg.zdf.de\/ZDFde\/inhalt\/6\/0,1872,1020646,00.html?dr=1","version":22,"lastModified":"1301906743000","studio":"ZDF","genre":"Crime","title":"Wilsberg \u2013 Die Wiedert\u00e4ufer","releaseDate":1175904000000,"language":"en","type":"Movie","_key":"31065"} +{"label":"Martin Gies","version":16,"id":"49030","lastModified":"1301901960000","name":"Martin Gies","type":"Person","_key":"31066"} +{"label":"Cocktail","description":"A talented New York bartender takes a job at a bar in Jamaica and falls in love.","id":"7520","runtime":104,"imdbId":"tt0094889","trailer":"http:\/\/www.youtube.com\/watch?v=9L2sog6VEdw","version":124,"lastModified":"1301903487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/690\/4bc91f6e017a3c57fe00c690\/cocktail-mid.jpg","studio":"Interscope Communications","genre":"Drama","title":"Cocktail","releaseDate":586137600000,"language":"en","tagline":"When he pours, he reigns.","type":"Movie","_key":"31067"} +{"label":"Lisa Banes","version":27,"id":"52878","lastModified":"1301901970000","name":"Lisa Banes","type":"Person","_key":"31068"} +{"label":"Come Early Morning","description":"Lucy wakes up in bed with a stranger and obviously from a night of drinking. She checks out and pays for the motel room on her account. Through her grandmother, she finds out her father is in town and pays him a visit. She agrees to go to his new church.\r\n","id":"7547","runtime":97,"imdbId":"tt0457308","version":134,"lastModified":"1301904295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4cf2b82c7b9aa14906000039\/come-early-morning-mid.jpg","studio":"Bold Films","genre":"Drama","title":"Come Early Morning","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"31069"} +{"label":"Jason T. Davis","version":20,"id":"52879","lastModified":"1301901652000","name":"Jason T. Davis","type":"Person","_key":"31070"} +{"label":"Richard Lee Crow","version":20,"id":"52880","lastModified":"1301901960000","name":"Richard Lee Crow","type":"Person","_key":"31071"} +{"label":"Laura Prepon","version":22,"id":"18974","lastModified":"1301901652000","name":"Laura Prepon","type":"Person","_key":"31072"} +{"label":"Christine Renee Ward","version":20,"id":"52881","lastModified":"1301902369000","name":"Christine Renee Ward","type":"Person","_key":"31073"} +{"label":"Candyce Hinkle","version":20,"id":"52882","lastModified":"1301902341000","name":"Candyce Hinkle","type":"Person","_key":"31074"} +{"label":"Pat Corley","version":23,"id":"52883","lastModified":"1301902353000","name":"Pat Corley","type":"Person","_key":"31075"} +{"label":"Wally Welch","version":21,"id":"52884","lastModified":"1301901960000","name":"Wally Welch","type":"Person","_key":"31076"} +{"label":"Ritchie Montgomery","version":23,"id":"52885","lastModified":"1301901652000","name":"Ritchie Montgomery","type":"Person","_key":"31077"} +{"label":"Nancy Ellen Mills","version":20,"id":"52887","lastModified":"1301902376000","name":"Nancy Ellen Mills","type":"Person","_key":"31078"} +{"label":"Chuck Borden","version":21,"id":"24529","lastModified":"1301902154000","name":"Chuck Borden","type":"Person","_key":"31079"} +{"label":"The Libertine","description":"The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.","id":"7548","runtime":114,"imdbId":"tt0375920","trailer":"http:\/\/www.youtube.com\/watch?v=Lr3mbMnesoo","version":220,"lastModified":"1302041072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69d\/4bc91f6f017a3c57fe00c69d\/the-libertine-mid.jpg","studio":"First Choice Films","genre":"Drama","title":"The Libertine","releaseDate":1095292800000,"language":"en","tagline":"He didn't resist temptation. He pursued it.","type":"Movie","_key":"31080"} +{"label":"Paul Ritter","version":25,"id":"52888","lastModified":"1301979595000","name":"Paul Ritter","type":"Person","_key":"31081"} +{"label":"Johnny Vegas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d59\/4cf5cec95e73d6299c000d59\/johnny-vegas-profile.jpg","version":30,"id":"52889","lastModified":"1301979595000","name":"Johnny Vegas","type":"Person","_key":"31082"} +{"label":"Richard Coyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/217\/4c46a1987b9aa15ddf000217\/richard-coyle-profile.jpg","version":50,"birthday":"67993200000","id":"52890","birthplace":"Sheffield, England","lastModified":"1301979595000","name":"Richard Coyle","type":"Person","_key":"31083"} +{"label":"Tom Burke","version":25,"id":"52891","lastModified":"1301979595000","name":"Tom Burke","type":"Person","_key":"31084"} +{"label":"Hugh Sachs","version":22,"id":"52892","lastModified":"1301979595000","name":"Hugh Sachs","type":"Person","_key":"31085"} +{"label":"Trudi Jackson","version":21,"id":"52893","lastModified":"1301979595000","name":"Trudi Jackson","type":"Person","_key":"31086"} +{"label":"Laurence Dunmore","version":20,"id":"52894","lastModified":"1301979595000","name":"Laurence Dunmore","type":"Person","_key":"31087"} +{"label":"Jet Li's Fearless","description":"Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.","id":"7549","runtime":103,"imdbId":"tt0446059","version":984,"lastModified":"1302065662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ae\/4bc91f73017a3c57fe00c6ae\/huo-yuan-jia-mid.jpg","studio":"Beijing Film Studio","genre":"Action","title":"Jet Li's Fearless","releaseDate":1138233600000,"language":"en","tagline":"Mastering others is strength. Mastering yourself makes you fearless.","type":"Movie","_key":"31088"} +{"label":"Betty Sun","version":25,"id":"52898","lastModified":"1301901430000","name":"Betty Sun","type":"Person","_key":"31089"} +{"label":"Yong Dong","version":28,"id":"52899","lastModified":"1301901380000","name":"Yong Dong","type":"Person","_key":"31090"} +{"label":"Hee Ching Paw","version":31,"id":"52900","lastModified":"1301901472000","name":"Hee Ching Paw","type":"Person","_key":"31091"} +{"label":"Yun Qu","version":26,"id":"52901","lastModified":"1301901476000","name":"Yun Qu","type":"Person","_key":"31092"} +{"label":"Nathan Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/178\/4cdd44935e73d606e6000178\/nathan-jones-profile.jpg","biography":"Nathan Jones rose upon the world strongman scene in 1995 and showed \npromise to become perhaps the top competitor in the world. At 6' 11\" and\n 360 lbs., the giant Australian known as Megaman was an imposing sight \nand used his great size and strength to place high in the World \nMusclepower Championships.\n\nUnfortunately, tragedy struck Megaman \nin a qualifying heat for the 1995 World's Strongest Man Competition when\n he suffered a spiral fracture in his arm while arm wrestling European \nChampion ","version":37,"birthday":"-11494800000","id":"24898","birthplace":"Gold Coast, Queensland, Australia ","lastModified":"1301901303000","name":"Nathan Jones","type":"Person","_key":"31093"} +{"label":"Brandon Rhea","version":36,"id":"52902","lastModified":"1301901430000","name":"Brandon Rhea","type":"Person","_key":"31094"} +{"label":"Anthony De Longis","version":37,"id":"52903","lastModified":"1301901327000","name":"Anthony De Longis","type":"Person","_key":"31095"} +{"label":"Jean Claude Leuyer","version":26,"id":"52904","lastModified":"1301901538000","name":"Jean Claude Leuyer","type":"Person","_key":"31096"} +{"label":"Mike Leeder","version":26,"id":"52905","lastModified":"1301901615000","name":"Mike Leeder","type":"Person","_key":"31097"} +{"label":"Jon T. Benn","version":26,"id":"52906","lastModified":"1301901538000","name":"Jon T. Benn","type":"Person","_key":"31098"} +{"label":"John Paisley","version":30,"id":"52907","lastModified":"1301901486000","name":"John Paisley","type":"Person","_key":"31099"} +{"label":"Masato Harada","version":38,"id":"52909","lastModified":"1301901834000","name":"Masato Harada","type":"Person","_key":"31100"} +{"label":"Blueprint","description":"No overview found.","id":"7550","runtime":108,"imdbId":"tt0321473","version":72,"lastModified":"1302038810000","studio":"Relevant Film GmbH","genre":"Drama","title":"Blueprint","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"31101"} +{"label":"Ole Puppe","version":20,"id":"52914","lastModified":"1301902369000","name":"Ole Puppe","type":"Person","_key":"31102"} +{"label":"Rita Leska","version":19,"id":"52915","lastModified":"1301902299000","name":"Rita Leska","type":"Person","_key":"31103"} +{"label":"Nina Gummich","version":19,"id":"52916","lastModified":"1301902299000","name":"Nina Gummich","type":"Person","_key":"31104"} +{"label":"Hendrik Duryn","version":20,"id":"50180","lastModified":"1301902136000","name":"Hendrik Duryn","type":"Person","_key":"31105"} +{"label":"D\u00e9j\u00e0 Vu","description":"Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime. But can it help Carlin change the past? Hold on to your seat for an explosive and intriguing thrill ride you'll want to experience again and again.","id":"7551","runtime":126,"imdbId":"tt0453467","trailer":"http:\/\/www.youtube.com\/watch?v=uxdS8TP37I4","version":229,"lastModified":"1301901137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63c\/4d4d4be47b9aa13b4800863c\/d-j-vu-mid.jpg","studio":"Jerry Bruckheimer Films","genre":"Action","title":"D\u00e9j\u00e0 Vu","releaseDate":1164153600000,"language":"en","tagline":"If you think it's just a feeling, go back... and look again.","type":"Movie","_key":"31106"} +{"label":"Rich Hutchman","version":29,"id":"52924","lastModified":"1301901772000","name":"Rich Hutchman","type":"Person","_key":"31107"} +{"label":"Donna W. Scott","version":29,"id":"52925","lastModified":"1301901641000","name":"Donna W. Scott","type":"Person","_key":"31108"} +{"label":"Mark Phinney","version":30,"id":"52926","lastModified":"1301901829000","name":"Mark Phinney","type":"Person","_key":"31109"} +{"label":"Fun with Dick and Jane","description":"After losing their high-paying corporate jobs, Jane and Dick Harper (Jim Carrey and T\u00e9a Leoni) turn to robbing banks to maintain their upwardly mobile standard of living in this action-comedy based on the 1977 film of the same name. The couple's hold-up act begins as a desperate measure. But before long, they're actually enjoying it -- and now it's getting to be a habit.","id":"7552","runtime":90,"imdbId":"tt0369441","version":231,"lastModified":"1302064073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20a\/4d40cff05e73d6570400020a\/fun-with-dick-and-jane-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Fun with Dick and Jane","releaseDate":1135123200000,"language":"en","type":"Movie","_key":"31110"} +{"label":"Angie Harmon","version":37,"id":"52929","lastModified":"1301901503000","name":"Angie Harmon","type":"Person","_key":"31111"} +{"label":"Carlos Jacott","version":24,"id":"52930","lastModified":"1301901943000","name":"Carlos Jacott","type":"Person","_key":"31112"} +{"label":"Aaron Michael Drozin","version":22,"id":"52931","lastModified":"1301901924000","name":"Aaron Michael Drozin","type":"Person","_key":"31113"} +{"label":"Gloria Garayua","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/673\/4cbdc1d17b9aa138d8001673\/gloria-garayua-profile.jpg","version":26,"id":"52932","lastModified":"1301901484000","name":"Gloria Garayua","type":"Person","_key":"31114"} +{"label":"Michelle Arthur","version":22,"id":"29054","lastModified":"1301901924000","name":"Michelle Arthur","type":"Person","_key":"31115"} +{"label":"Timm Sharp","version":32,"id":"52933","lastModified":"1301901778000","name":"Timm Sharp","type":"Person","_key":"31116"} +{"label":"Waiting...","description":"Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.","id":"7553","runtime":94,"imdbId":"tt0348333","trailer":"http:\/\/www.youtube.com\/watch?v=HJEsNjH3JT8","version":325,"lastModified":"1302036311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/517\/4d5316c27b9aa13ab4012517\/waiting-mid.jpg","studio":"Eden Rock Media","genre":"Comedy","title":"Waiting...","releaseDate":1128643200000,"language":"en","tagline":"What happens in the kitchen ends up on the plate.","type":"Movie","_key":"31117"} +{"label":"John Francis Daley","version":22,"id":"52935","lastModified":"1301901786000","name":"John Francis Daley","type":"Person","_key":"31118"} +{"label":"Kaitlin Doubleday","version":26,"id":"52936","lastModified":"1301901675000","name":"Kaitlin Doubleday","type":"Person","_key":"31119"} +{"label":"Rob Benedict","version":31,"id":"52937","lastModified":"1301901668000","name":"Rob Benedict","type":"Person","_key":"31120"} +{"label":"Vanessa Lengies","version":23,"id":"52938","lastModified":"1301901485000","name":"Vanessa Lengies","type":"Person","_key":"31121"} +{"label":"Max Kasch","version":23,"id":"52939","lastModified":"1301901310000","name":"Max Kasch","type":"Person","_key":"31122"} +{"label":"Andy Milonakis","version":25,"id":"52940","lastModified":"1301901986000","name":"Andy Milonakis","type":"Person","_key":"31123"} +{"label":"Rob McKittrick","version":20,"id":"52941","lastModified":"1301902126000","name":"Rob McKittrick","type":"Person","_key":"31124"} +{"label":"The Cats of Mirikitani","description":"No overview found.","id":"7554","runtime":74,"imdbId":"tt0799976","homepage":"http:\/\/www.thecatsofmirikitani.com\/","version":93,"lastModified":"1301907109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73e\/4bc91f86017a3c57fe00c73e\/the-cats-of-mirikitani-mid.jpg","studio":"Lucid Dreaming","genre":"Documentary","title":"The Cats of Mirikitani","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"31125"} +{"label":"Linda Hattendorf","version":21,"id":"53404","lastModified":"1301902341000","name":"Linda Hattendorf","type":"Person","_key":"31126"} +{"label":"Jimmy Mirikitani","version":20,"id":"53407","lastModified":"1301902154000","name":"Jimmy Mirikitani","type":"Person","_key":"31127"} +{"label":"Rambo","description":"When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.","id":"7555","runtime":90,"imdbId":"tt0462499","trailer":"http:\/\/www.youtube.com\/watch?v=zC9AARSHuCU","homepage":"http:\/\/movies.break.com\/rambo\/","version":398,"lastModified":"1302041232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/777\/4bc91f91017a3c57fe00c777\/rambo-mid.jpg","studio":"Millenium Films","genre":"Action","title":"Rambo","releaseDate":1201046400000,"language":"en","tagline":"Heroes never die.... They just reload.","type":"Movie","_key":"31128"} +{"label":"Reynaldo Gallegos","version":29,"id":"52946","lastModified":"1301901255000","name":"Reynaldo Gallegos","type":"Person","_key":"31129"} +{"label":"Tim Kang","version":32,"id":"52947","lastModified":"1301901522000","name":"Tim Kang","type":"Person","_key":"31130"} +{"label":"Maung Maung Khin","version":31,"id":"52948","lastModified":"1301901548000","name":"Maung Maung Khin","type":"Person","_key":"31131"} +{"label":"Graham McTavish","version":33,"id":"95047","lastModified":"1301901412000","name":"Graham McTavish","type":"Person","_key":"31132"} +{"label":"Nacht Vor Augen","description":"No overview found.","id":"7734","runtime":91,"imdbId":"tt1135943","version":62,"lastModified":"1301903602000","studio":"Noirfilm","genre":"Drama","title":"Nacht Vor Augen","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"31133"} +{"label":"Christina Gro\u00dfe","version":21,"id":"45734","lastModified":"1301902152000","name":"Christina Gro\u00dfe","type":"Person","_key":"31134"} +{"label":"Brigitte Bertele","version":18,"id":"52959","lastModified":"1301901996000","name":"Brigitte Bertele","type":"Person","_key":"31135"} +{"label":"The Wave","description":"A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.","id":"7735","runtime":107,"imdbId":"tt1063669","trailer":"http:\/\/www.youtube.com\/watch?v=2175","homepage":"http:\/\/www.welle.film.de\/","version":224,"lastModified":"1301902021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc91f9a017a3c57fe00c7b7\/die-welle-mid.jpg","studio":"Rat Pack Filmproduktion GmbH","genre":"Drama","title":"The Wave","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"31136"} +{"label":"Dennis Gansel","version":39,"id":"52961","lastModified":"1301901785000","name":"Dennis Gansel","type":"Person","_key":"31137"} +{"label":"Frederick Lau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e17\/4d4e6fb87b9aa13aab009e17\/frederick-lau-profile.jpg","version":31,"id":"49767","lastModified":"1301901402000","name":"Frederick Lau","type":"Person","_key":"31138"} +{"label":"Elyas M'Barek","version":27,"id":"25409","lastModified":"1301901684000","name":"Elyas M'Barek","type":"Person","_key":"31139"} +{"label":"Cristina do Rego","version":23,"id":"52964","lastModified":"1301901885000","name":"Cristina do Rego","type":"Person","_key":"31140"} +{"label":"Maximilian Vollmar","version":23,"id":"52965","lastModified":"1301901732000","name":"Maximilian Vollmar","type":"Person","_key":"31141"} +{"label":"Tim Oliver Schultz","version":24,"id":"52966","lastModified":"1301901732000","name":"Tim Oliver Schultz","type":"Person","_key":"31142"} +{"label":"Amelie Kiefer","version":23,"id":"52967","lastModified":"1301901615000","name":"Amelie Kiefer","type":"Person","_key":"31143"} +{"label":"Fabian Preger","version":23,"id":"55042","lastModified":"1301901732000","name":"Fabian Preger","type":"Person","_key":"31144"} +{"label":"Katzelmacher","description":"No overview found.","id":"7736","runtime":88,"imdbId":"tt0064536","version":74,"lastModified":"1301906743000","studio":"Antiteater-X-Film","genre":"Drama","title":"Katzelmacher","releaseDate":-3456000000,"language":"en","type":"Movie","_key":"31145"} +{"label":"Hans Hirschm\u00fcller","version":21,"id":"48187","lastModified":"1301901838000","name":"Hans Hirschm\u00fcller","type":"Person","_key":"31146"} +{"label":"Lilith Ungerer","version":23,"id":"53418","lastModified":"1301901695000","name":"Lilith Ungerer","type":"Person","_key":"31147"} +{"label":"Elga Sorbas","version":22,"id":"53419","lastModified":"1301901844000","name":"Elga Sorbas","type":"Person","_key":"31148"} +{"label":"Peter Moland","version":20,"id":"53420","lastModified":"1301901996000","name":"Peter Moland","type":"Person","_key":"31149"} +{"label":"Resident Evil: Extinction","description":"Years after the Raccoon City disaster, Alice is on her own; aware that she has become a liability and could endanger those around her, she is struggling to survive and bring down the Umbrella Corporation led by the sinister Albert Wesker and head researcher Dr. Isaacs. Meanwhile, traveling through the Nevada Desert and the ruins of Las Vegas, Carlos Olivera, L.J., and new survivors K-Mart, Claire Redfield, and Nurse Betty must fight to survive extinction against hordes of zombies, killer crows a","id":"7737","runtime":95,"imdbId":"tt0432021","trailer":"http:\/\/www.youtube.com\/watch?v=mfvrgD6d9N0","homepage":"http:\/\/www.sonypictures.com\/movies\/residentevilextinction\/index.html","version":345,"lastModified":"1301901052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d2\/4bc91f9d017a3c57fe00c7d2\/resident-evil-extinction-mid.jpg","studio":"Davis-Films","genre":"Action","title":"Resident Evil: Extinction","releaseDate":1190332800000,"language":"en","tagline":"The Extinction Is Coming...","type":"Movie","_key":"31150"} +{"label":"Kronprinz Rudolf","description":"No overview found.","id":"7738","runtime":180,"imdbId":"tt0484210","version":57,"lastModified":"1301904720000","studio":"EOS Entertainment","genre":"Drama","title":"Kronprinz Rudolf","releaseDate":1146355200000,"language":"en","type":"Movie","_key":"31151"} +{"label":"Vittoria Puccini","version":27,"id":"53422","lastModified":"1301902018000","name":"Vittoria Puccini","type":"Person","_key":"31152"} +{"label":"Sandra Ceccarelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4ca619f45e73d643ed000002\/sandra-ceccarelli-profile.jpg","version":28,"id":"53423","lastModified":"1301901304000","name":"Sandra Ceccarelli","type":"Person","_key":"31153"} +{"label":"Stefan Puntigam","version":22,"id":"53424","lastModified":"1301901517000","name":"Stefan Puntigam","type":"Person","_key":"31154"} +{"label":"Daniela Golpashin","version":20,"id":"48133","lastModified":"1301902341000","name":"Daniela Golpashin","type":"Person","_key":"31155"} +{"label":"Alexandra Vandernoot","version":28,"id":"53425","lastModified":"1301901959000","name":"Alexandra Vandernoot","type":"Person","_key":"31156"} +{"label":"Youth without Youth","description":"A love story wrapped in a mystery. Set in Europe before WWII, a timid professor is changed by a cataclysmic event and explores the mysteries of life.","id":"7797","runtime":125,"imdbId":"tt0481797","trailer":"http:\/\/www.youtube.com\/watch?v=467","homepage":"http:\/\/www.ywyfilm.com\/","version":192,"lastModified":"1301902738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71f\/4d7bea965e73d65ec600171f\/youth-without-youth-mid.jpg","studio":"Sony Pictures","genre":"Drama","title":"Youth without Youth","releaseDate":1197590400000,"language":"en","type":"Movie","_key":"31157"} +{"label":"Adrian Pintea","version":27,"id":"52977","lastModified":"1301901400000","name":"Adrian Pintea","type":"Person","_key":"31158"} +{"label":"Florin Piersic Jr.","version":23,"id":"52978","lastModified":"1301901951000","name":"Florin Piersic Jr.","type":"Person","_key":"31159"} +{"label":"Roxana Guttman","version":23,"id":"52984","lastModified":"1301901698000","name":"Roxana Guttman","type":"Person","_key":"31160"} +{"label":"The Time Shifters","description":"No overview found.","id":"7837","runtime":88,"imdbId":"tt0204686","version":72,"lastModified":"1301905301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ed\/4bc91fa1017a3c57fe00c7ed\/the-time-shifters-mid.jpg","studio":"Abandon Pictures","genre":"Science Fiction","title":"The Time Shifters","releaseDate":940118400000,"language":"en","type":"Movie","_key":"31161"} +{"label":"Mario Azzopardi","version":25,"id":"44132","lastModified":"1301901444000","name":"Mario Azzopardi","type":"Person","_key":"31162"} +{"label":"Wedding Daze","description":"After losing the woman of his dreams, Anderson is convinced he'll never fall in love again. But at the urging of his best friend, he spontaneously proposes to a dissatisfied waitress named Katie and an innocent dare evolves into the kind of love that both have been looking for all along.","id":"7839","runtime":90,"imdbId":"tt0484877","trailer":"http:\/\/www.youtube.com\/watch?v=n3n0fNSeLzs","homepage":"http:\/\/www.weddingdazemoviedvd.com\/","version":296,"lastModified":"1301904189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fa\/4bc91fa2017a3c57fe00c7fa\/wedding-daze-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Wedding Daze","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"31163"} +{"label":"Heather Goldenhersh","version":20,"id":"52996","lastModified":"1301901476000","name":"Heather Goldenhersh","type":"Person","_key":"31164"} +{"label":"10,000 BC","description":"A prehistoric epic that follows a young mammoth hunter's journey through uncharted territory to secure the future of his tribe.","id":"7840","runtime":109,"imdbId":"tt0443649","trailer":"http:\/\/www.youtube.com\/watch?v=25kMKl1oI_c","version":449,"lastModified":"1301925125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4cb0c8207b9aa1263d00017e\/10-000-bc-mid.jpg","studio":"Centropolis Entertainment","genre":"Adventure","title":"10,000 BC","releaseDate":1204761600000,"language":"en","type":"Movie","_key":"31165"} +{"label":"Steven Strait","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/091\/4c38813d7b9aa10edd000091\/steven-strait-profile.jpg","version":29,"id":"54815","lastModified":"1301901099000","name":"Steven Strait","type":"Person","_key":"31166"} +{"label":"Nathanael Baring","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b0\/4c3883777b9aa10edc0000b0\/nathanael-baring-profile.jpg","version":27,"id":"54805","lastModified":"1301901127000","name":"Nathanael Baring","type":"Person","_key":"31167"} +{"label":"Mo Zinal","version":27,"id":"54806","lastModified":"1301901087000","name":"Mo Zinal","type":"Person","_key":"31168"} +{"label":"Affif Ben Badra","version":26,"id":"54807","lastModified":"1301901087000","name":"Affif Ben Badra","type":"Person","_key":"31169"} +{"label":"Mona Hammond","version":29,"id":"54808","lastModified":"1301901075000","name":"Mona Hammond","type":"Person","_key":"31170"} +{"label":"Marco Khan","version":26,"id":"54809","lastModified":"1301901094000","name":"Marco Khan","type":"Person","_key":"31171"} +{"label":"Reece Ritchie","version":26,"id":"54810","lastModified":"1301901087000","name":"Reece Ritchie","type":"Person","_key":"31172"} +{"label":"Joel Fry","version":26,"id":"54811","lastModified":"1301901088000","name":"Joel Fry","type":"Person","_key":"31173"} +{"label":"Amarcord","description":"A year in the life of a small Italian coastal town in the nineteen-thirties, as is recalled by a director with a superstar's access to the resources of the Italian film industry and a piper's command over our imaginations.","id":"7857","runtime":127,"imdbId":"tt0071129","version":188,"lastModified":"1301902446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83f\/4bc91fad017a3c57fe00c83f\/amarcord-mid.jpg","studio":"PECF","genre":"Comedy","title":"Amarcord","releaseDate":125020800000,"language":"en","type":"Movie","_key":"31174"} +{"label":"Armando Brancia","version":23,"id":"53461","lastModified":"1301902392000","name":"Armando Brancia","type":"Person","_key":"31175"} +{"label":"Ciccio Ingrassia","version":30,"id":"53462","lastModified":"1301901533000","name":"Ciccio Ingrassia","type":"Person","_key":"31176"} +{"label":"Nando Orfei","version":23,"id":"53463","lastModified":"1301901652000","name":"Nando Orfei","type":"Person","_key":"31177"} +{"label":"Bruno Zanin","version":23,"id":"53464","lastModified":"1301902154000","name":"Bruno Zanin","type":"Person","_key":"31178"} +{"label":"Gianfilippo Carcano","version":23,"id":"53465","lastModified":"1301901959000","name":"Gianfilippo Carcano","type":"Person","_key":"31179"} +{"label":"Luigi Rossi","version":23,"id":"53466","lastModified":"1301901959000","name":"Luigi Rossi","type":"Person","_key":"31180"} +{"label":"Heute hau'n wir auf die Pauke","description":"No overview found.","id":"7858","runtime":100,"imdbId":"tt0295305","version":51,"lastModified":"1300978543000","studio":"City Film","genre":"Comedy","title":"Heute hau'n wir auf die Pauke","releaseDate":94176000000,"language":"en","type":"Movie","_key":"31181"} +{"label":"Tanja Berg","version":19,"id":"53038","lastModified":"1301902278000","name":"Tanja Berg","type":"Person","_key":"31182"} +{"label":"Nero Brandenburg","version":19,"id":"53039","lastModified":"1301902278000","name":"Nero Brandenburg","type":"Person","_key":"31183"} +{"label":"Liane Covi","version":17,"id":"53040","lastModified":"1301902296000","name":"Liane Covi","type":"Person","_key":"31184"} +{"label":"Josiane Grizeau","version":19,"id":"53041","lastModified":"1301902278000","name":"Josiane Grizeau","type":"Person","_key":"31185"} +{"label":"Gabriele Heine","version":19,"id":"53042","lastModified":"1301902099000","name":"Gabriele Heine","type":"Person","_key":"31186"} +{"label":"Renate Leismann","version":19,"id":"53043","lastModified":"1301902099000","name":"Renate Leismann","type":"Person","_key":"31187"} +{"label":"Werner Leismann","version":19,"id":"53044","lastModified":"1301902099000","name":"Werner Leismann","type":"Person","_key":"31188"} +{"label":"Peggy March","version":19,"id":"53045","lastModified":"1301902099000","name":"Peggy March","type":"Person","_key":"31189"} +{"label":"J\u00fcrgen Marcus","version":19,"id":"53046","lastModified":"1301902099000","name":"J\u00fcrgen Marcus","type":"Person","_key":"31190"} +{"label":"Tony Marshall","version":19,"id":"53047","lastModified":"1301902099000","name":"Tony Marshall","type":"Person","_key":"31191"} +{"label":"Lothar Sch\u00e4hfer","version":19,"id":"53048","lastModified":"1301902099000","name":"Lothar Sch\u00e4hfer","type":"Person","_key":"31192"} +{"label":"Manuela Sch\u00e4hfer","version":19,"id":"53049","lastModified":"1301902099000","name":"Manuela Sch\u00e4hfer","type":"Person","_key":"31193"} +{"label":"Peter Schiff","version":21,"id":"26569","lastModified":"1301901955000","name":"Peter Schiff","type":"Person","_key":"31194"} +{"label":"Lena Valaitis","version":19,"id":"53050","lastModified":"1301902099000","name":"Lena Valaitis","type":"Person","_key":"31195"} +{"label":"Half Nelson","description":"Despite his dedication to the junior-high students who fill his classroom, idealistic teacher Dan Dunne leads a secret life of addiction that the majority of his students will never know. But things change when a troubled student Drey makes a startling discovery of his secret life, causing a tenuous bond between the two that could either end disastrously or provide a catalyst of hope.","id":"7859","runtime":107,"imdbId":"tt0468489","trailer":"http:\/\/www.youtube.com\/watch?v=483","homepage":"http:\/\/www.halfnelsonthefilm.co.uk\/","version":223,"lastModified":"1301902738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84c\/4bc91fae017a3c57fe00c84c\/half-nelson-mid.jpg","studio":"Hunting Lane Films","genre":"Drama","title":"Half Nelson","releaseDate":1142985600000,"language":"en","type":"Movie","_key":"31196"} +{"label":"Jeff Lima","version":20,"id":"53055","lastModified":"1301901430000","name":"Jeff Lima","type":"Person","_key":"31197"} +{"label":"Shareeka Epps","version":23,"id":"53056","lastModified":"1301901762000","name":"Shareeka Epps","type":"Person","_key":"31198"} +{"label":"Nathan Corbett","version":20,"id":"53057","lastModified":"1301901538000","name":"Nathan Corbett","type":"Person","_key":"31199"} +{"label":"Tyra Kwao-Vovo","version":20,"id":"53058","lastModified":"1301901538000","name":"Tyra Kwao-Vovo","type":"Person","_key":"31200"} +{"label":"Rosemary Ledee","version":20,"id":"53059","lastModified":"1301901476000","name":"Rosemary Ledee","type":"Person","_key":"31201"} +{"label":"Tristan Wilds","version":23,"id":"53060","lastModified":"1301901732000","name":"Tristan Wilds","type":"Person","_key":"31202"} +{"label":"Bryce Silver","version":20,"id":"53061","lastModified":"1301901538000","name":"Bryce Silver","type":"Person","_key":"31203"} +{"label":"Kaela C. Pabon","version":20,"id":"53062","lastModified":"1301901382000","name":"Kaela C. Pabon","type":"Person","_key":"31204"} +{"label":"Erica Rivera","version":20,"id":"53063","lastModified":"1301901615000","name":"Erica Rivera","type":"Person","_key":"31205"} +{"label":"Stephanie Bast","version":20,"id":"53064","lastModified":"1301901615000","name":"Stephanie Bast","type":"Person","_key":"31206"} +{"label":"Eleanor Hutchins","version":20,"id":"53065","lastModified":"1301901476000","name":"Eleanor Hutchins","type":"Person","_key":"31207"} +{"label":"Sebastian Sozzi","version":20,"id":"53066","lastModified":"1301901885000","name":"Sebastian Sozzi","type":"Person","_key":"31208"} +{"label":"Karen Chilton","version":20,"id":"53067","lastModified":"1301901732000","name":"Karen Chilton","type":"Person","_key":"31209"} +{"label":"Anthony Mackie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/088\/4bca4a6a017a3c0e96000088\/anthony-mackie-profile.jpg","version":93,"id":"53650","lastModified":"1302041524000","name":"Anthony Mackie","type":"Person","_key":"31210"} +{"label":"Collins Pennie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fec\/4cf926a35e73d62999001fec\/collins-pennie-profile.jpg","version":31,"id":"53652","lastModified":"1301901529000","name":"Collins Pennie","type":"Person","_key":"31211"} +{"label":"Ryan Fleck","version":28,"id":"53068","lastModified":"1301901399000","name":"Ryan Fleck","type":"Person","_key":"31212"} +{"label":"Lemon Tree","description":"Salma Zidane, a widow, lives simply from her grove of lemon trees in the West Bank's occupied territory. The Israeli defense minister and his wife move next door; the Secret Service orders the trees removed for security. The stoic Salma seeks assistance from the Palestinian Authority (useless), Israeli army (dismissive), and a young attorney, Ziad Daud, who takes the case; this older client attracts him. While the courts deliberate, the Israelis fence her trees and prohibit her from entering the","id":"7860","runtime":106,"imdbId":"tt1172963","trailer":"http:\/\/www.youtube.com\/watch?v=e_j1llK3Fco","version":114,"lastModified":"1301904492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/855\/4bc91faf017a3c57fe00c855\/les-citronniers-mid.jpg","studio":"Eran Riklis Productions Ltd.","genre":"Drama","title":"Lemon Tree","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"31213"} +{"label":"Eran Riklis","version":28,"id":"53090","lastModified":"1301901770000","name":"Eran Riklis","type":"Person","_key":"31214"} +{"label":"Tarik Kopty","version":20,"id":"53099","lastModified":"1301902307000","name":"Tarik Kopty","type":"Person","_key":"31215"} +{"label":"Doron Tavory","version":21,"id":"53100","lastModified":"1301902393000","name":"Doron Tavory","type":"Person","_key":"31216"} +{"label":"Rona Lipaz-Michael","version":20,"id":"53101","lastModified":"1301902307000","name":"Rona Lipaz-Michael","type":"Person","_key":"31217"} +{"label":"Outsourced","description":"After his entire department is outsourced, an American novelty products salesman heads to India to train his replacement.","id":"7861","runtime":102,"imdbId":"tt0425326","trailer":"http:\/\/www.youtube.com\/watch?v=476","homepage":"http:\/\/www.outsourcedthemovie.com\/about-synopsis.php","version":105,"lastModified":"1301903739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/867\/4bc91fb2017a3c57fe00c867\/outsourced-mid.jpg","studio":"Cinemavault Releasing","genre":"Comedy","title":"Outsourced","releaseDate":1158019200000,"language":"en","type":"Movie","_key":"31218"} +{"label":"John Jeffcoat","version":21,"id":"53102","lastModified":"1301901885000","name":"John Jeffcoat","type":"Person","_key":"31219"} +{"label":"Arjun Mathur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e4\/4d34a9975e73d633560091e4\/arjun-mathur-profile.jpg","version":22,"id":"53105","lastModified":"1301901615000","name":"Arjun Mathur","type":"Person","_key":"31220"} +{"label":"Matt Smith","version":23,"id":"53106","lastModified":"1301901885000","name":"Matt Smith","type":"Person","_key":"31221"} +{"label":"Asif Basra","version":21,"id":"53107","lastModified":"1301901578000","name":"Asif Basra","type":"Person","_key":"31222"} +{"label":"The Counterfeiters","description":"The film centers on a Jewish counterfeiter, Salomon Sorowitsch, who is coerced into assisting the Nazi operation at the Sachsenhausen concentration camp. The film won the Best Foreign Language Film Oscar at the 80th Academy Awards in 2008.","id":"7862","runtime":98,"imdbId":"tt0813547","trailer":"http:\/\/www.youtube.com\/watch?v=qwr9nCurEEQ","homepage":"http:\/\/www.diefaelscher.at\/","version":236,"lastModified":"1301907108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8eb\/4d39c9a47b9aa161450018eb\/die-f-lscher-mid.jpg","studio":"Babelsberg Film GmbH","genre":"Crime","title":"The Counterfeiters","releaseDate":1172102400000,"language":"en","type":"Movie","_key":"31223"} +{"label":"Karl Markovics","version":27,"id":"38459","lastModified":"1301901412000","name":"Karl Markovics","type":"Person","_key":"31224"} +{"label":"Martin Brambach","version":24,"id":"44393","lastModified":"1301901582000","name":"Martin Brambach","type":"Person","_key":"31225"} +{"label":"Veit St\u00fcbner","version":23,"id":"41776","lastModified":"1301901592000","name":"Veit St\u00fcbner","type":"Person","_key":"31226"} +{"label":"Marie B\u00e4umer","version":30,"id":"53109","lastModified":"1301901287000","name":"Marie B\u00e4umer","type":"Person","_key":"31227"} +{"label":"Dolores Chaplin","version":24,"id":"53111","lastModified":"1301901220000","name":"Dolores Chaplin","type":"Person","_key":"31228"} +{"label":"Shine","description":"Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.","id":"7863","runtime":105,"imdbId":"tt0117631","version":205,"lastModified":"1301903571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88f\/4bc91fb5017a3c57fe00c88f\/shine-mid.jpg","genre":"Drama","title":"Shine","releaseDate":820454400000,"language":"en","type":"Movie","_key":"31229"} +{"label":"Wiedersehen in Verona","description":"No overview found.","id":"7864","runtime":87,"imdbId":"tt1024802","version":36,"lastModified":"1300978544000","title":"Wiedersehen in Verona","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"31230"} +{"label":"Schlaflos","description":"No overview found.","id":"7865","runtime":40,"imdbId":"tt0892888","homepage":"http:\/\/www.schlaflos-derfilm.de","version":46,"lastModified":"1301907414000","studio":"ghost light","genre":"Comedy","title":"Schlaflos","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"31231"} +{"label":"Jean-Luc Julien","version":22,"id":"53152","lastModified":"1301902341000","name":"Jean-Luc Julien","type":"Person","_key":"31232"} +{"label":"Anika Julien","version":20,"id":"53153","lastModified":"1301902369000","name":"Anika Julien","type":"Person","_key":"31233"} +{"label":"Anna Fin","version":20,"id":"53154","lastModified":"1301902381000","name":"Anna Fin","type":"Person","_key":"31234"} +{"label":"Sandra Jozipovic","version":20,"id":"53155","lastModified":"1301901997000","name":"Sandra Jozipovic","type":"Person","_key":"31235"} +{"label":"Birgit Salkin","version":20,"id":"53156","lastModified":"1301902341000","name":"Birgit Salkin","type":"Person","_key":"31236"} +{"label":"Christoph Schwarz","version":21,"id":"53159","lastModified":"1301902341000","name":"Christoph Schwarz","type":"Person","_key":"31237"} +{"label":"Otto Neumaier","version":21,"id":"53165","lastModified":"1301902154000","name":"Otto Neumaier","type":"Person","_key":"31238"} +{"label":"Christian Genzel","version":31,"id":"53157","lastModified":"1301901652000","name":"Christian Genzel","type":"Person","_key":"31239"} +{"label":"Faustrecht","description":"No overview found.","id":"7866","runtime":0,"imdbId":"tt0493126","version":62,"lastModified":"1301905713000","studio":"h-pix Film und Video Produktion","genre":"Action","title":"Faustrecht","releaseDate":1131753600000,"language":"en","type":"Movie","_key":"31240"} +{"label":"Alexander Maaz","version":20,"id":"48630","lastModified":"1301902031000","name":"Alexander Maaz","type":"Person","_key":"31241"} +{"label":"Erol Nowak","version":20,"id":"53162","lastModified":"1301902359000","name":"Erol Nowak","type":"Person","_key":"31242"} +{"label":"Daniel Bucher","version":20,"id":"53163","lastModified":"1301902359000","name":"Daniel Bucher","type":"Person","_key":"31243"} +{"label":"Volker Wahl","version":20,"id":"53164","lastModified":"1301902367000","name":"Volker Wahl","type":"Person","_key":"31244"} +{"label":"Christian Haslecker","version":27,"id":"53158","lastModified":"1301901960000","name":"Christian Haslecker","type":"Person","_key":"31245"} +{"label":"Rundweltm\u00e4dchen gesucht!","description":"No overview found.","id":"7867","runtime":23,"imdbId":"tt0800187","version":34,"lastModified":"1300978544000","genre":"Comedy","title":"Rundweltm\u00e4dchen gesucht!","releaseDate":1144454400000,"language":"en","type":"Movie","_key":"31246"} +{"label":"Manuel Klein","version":20,"id":"53166","lastModified":"1301902034000","name":"Manuel Klein","type":"Person","_key":"31247"} +{"label":"Lesley Jennifer Higl","version":20,"id":"53167","lastModified":"1301902364000","name":"Lesley Jennifer Higl","type":"Person","_key":"31248"} +{"label":"Ina Meling","version":18,"id":"53168","lastModified":"1301901812000","name":"Ina Meling","type":"Person","_key":"31249"} +{"label":"Alexander Sobolla","version":22,"id":"53169","lastModified":"1301901815000","name":"Alexander Sobolla","type":"Person","_key":"31250"} +{"label":"Nur ein Kuss","description":"No overview found.","id":"7868","runtime":0,"version":19,"lastModified":"1300978544000","genre":"Drama","title":"Nur ein Kuss","releaseDate":1138406400000,"language":"en","type":"Movie","_key":"31251"} +{"label":"Dominik Klingberg","version":16,"id":"53171","lastModified":"1301902180000","name":"Dominik Klingberg","type":"Person","_key":"31252"} +{"label":"Rabea Wyrwich","version":16,"id":"53172","lastModified":"1301902194000","name":"Rabea Wyrwich","type":"Person","_key":"31253"} +{"label":"The Fest","description":"No overview found.","id":"7869","runtime":14,"imdbId":"tt0475953","version":83,"lastModified":"1300978544000","title":"The Fest","releaseDate":1124841600000,"language":"en","type":"Movie","_key":"31254"} +{"label":"Douglas Williamson","version":21,"id":"53173","lastModified":"1301902367000","name":"Douglas Williamson","type":"Person","_key":"31255"} +{"label":"Yuki Iwamoto","version":25,"id":"53174","lastModified":"1301901684000","name":"Yuki Iwamoto","type":"Person","_key":"31256"} +{"label":"Down in the Valley","description":"Set in the present-day San Fernando Valley, the project revolves around a delusional man who believes he's a cowboy and the relationship that he starts with a rebellious young woman.","id":"7870","runtime":114,"imdbId":"tt0398027","homepage":"http:\/\/www.downinthevalleyfilm.com\/main.htm","version":208,"lastModified":"1301902499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/898\/4bc91fb6017a3c57fe00c898\/down-in-the-valley-mid.jpg","studio":"Class 5 Films","genre":"Drama","title":"Down in the Valley","releaseDate":1115942400000,"language":"en","type":"Movie","_key":"31257"} +{"label":"Aviva","version":29,"id":"53208","lastModified":"1301976643000","name":"Aviva","type":"Person","_key":"31258"} +{"label":"Aaron Fors","version":26,"id":"53209","lastModified":"1301901732000","name":"Aaron Fors","type":"Person","_key":"31259"} +{"label":"Heather Ashleigh","version":22,"id":"53210","lastModified":"1301902278000","name":"Heather Ashleigh","type":"Person","_key":"31260"} +{"label":"Cesar Flores","version":30,"id":"53211","lastModified":"1301901752000","name":"Cesar Flores","type":"Person","_key":"31261"} +{"label":"David Jacobson","version":31,"id":"53212","lastModified":"1301902099000","name":"David Jacobson","type":"Person","_key":"31262"} +{"label":"Side Effects","description":"Karly Hert has spent the last ten years selling drugs...legally, that is. Although conflicted on a daily basis by the values within the pharmaceutical industry, and industry driven by profits at the expense of patients; Karly has been seduced by the golden handcuffs of corporate America. Enter Zach Danner, who convinces Karly to be true to her values and walk away from her lucrative but empty job.","id":"7871","runtime":90,"imdbId":"tt0438427","version":108,"lastModified":"1301906218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89d\/4bc91fb9017a3c57fe00c89d\/side-effects-mid.jpg","studio":"Mo Productions","genre":"Comedy","title":"Side Effects","releaseDate":1126224000000,"language":"en","type":"Movie","_key":"31263"} +{"label":"Lucian McAfee","version":21,"id":"53232","lastModified":"1301902204000","name":"Lucian McAfee","type":"Person","_key":"31264"} +{"label":"David Durbin","version":21,"id":"53233","lastModified":"1301902393000","name":"David Durbin","type":"Person","_key":"31265"} +{"label":"Dorian DeMichele","version":21,"id":"53234","lastModified":"1301902377000","name":"Dorian DeMichele","type":"Person","_key":"31266"} +{"label":"Temeceka Harris","version":21,"id":"53235","lastModified":"1301902377000","name":"Temeceka Harris","type":"Person","_key":"31267"} +{"label":"Beth Hebert","version":21,"id":"53236","lastModified":"1301902377000","name":"Beth Hebert","type":"Person","_key":"31268"} +{"label":"Mimi Sagadin","version":21,"id":"53237","lastModified":"1301902377000","name":"Mimi Sagadin","type":"Person","_key":"31269"} +{"label":"Kathleen Slattery-Moschkau","version":25,"id":"53238","lastModified":"1301901959000","name":"Kathleen Slattery-Moschkau","type":"Person","_key":"31270"} +{"label":"The Road to Guantanamo","description":"Part drama, part documentary, The Road to Guant\u00e1namo focuses on the Tipton Three, a trio of British Muslims who were held in Guantanamo Bay for two years until they were released without charge.","id":"7872","runtime":95,"imdbId":"tt0468094","homepage":"http:\/\/www.roadtoguantanamomovie.com\/","version":184,"lastModified":"1301903756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ae\/4bc91fba017a3c57fe00c8ae\/the-road-to-guantanamo-mid.jpg","studio":"Film4","genre":"Documentary","title":"The Road to Guantanamo","releaseDate":1141862400000,"language":"en","tagline":"How far will we go in the name of security?","type":"Movie","_key":"31271"} +{"label":"Riz Ahmed","version":40,"id":"53240","lastModified":"1301901146000","name":"Riz Ahmed","type":"Person","_key":"31272"} +{"label":"Farhad Harun","version":20,"id":"53241","lastModified":"1301902278000","name":"Farhad Harun","type":"Person","_key":"31273"} +{"label":"Waqar Siddiqui","version":20,"id":"53242","lastModified":"1301901732000","name":"Waqar Siddiqui","type":"Person","_key":"31274"} +{"label":"Afran Usman","version":20,"id":"53243","lastModified":"1301902278000","name":"Afran Usman","type":"Person","_key":"31275"} +{"label":"Shahid Iqbal","version":20,"id":"53244","lastModified":"1301902278000","name":"Shahid Iqbal","type":"Person","_key":"31276"} +{"label":"Sher Khan","version":20,"id":"53245","lastModified":"1301902278000","name":"Sher Khan","type":"Person","_key":"31277"} +{"label":"Jason Salkey","version":30,"id":"53246","lastModified":"1301902205000","name":"Jason Salkey","type":"Person","_key":"31278"} +{"label":"Mat Whitecross","version":21,"id":"182","lastModified":"1299492225000","name":"Mat Whitecross","type":"Person","_key":"31279"} +{"label":"Harsh Times","description":"Jim Davis is an ex-Army Ranger who finds himself slipping back into his old life of petty crime after a job offer from the LAPD evaporates. His best friend is pressured by his girlfriend Sylvia to find a job, but Jim is more interested in hanging out and making cash from small heists, while trying to get a law enforcement job so he can marry his Mexican girlfriend.","id":"7873","runtime":120,"imdbId":"tt0433387","homepage":"http:\/\/www.harshtimes.com\/","version":191,"lastModified":"1301906820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/011\/4c13ac6b7b9aa10456000011\/harsh-times-mid.jpg","studio":"Andrea Sperling Productions","genre":"Crime","title":"Harsh Times","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"31280"} +{"label":"Chaka Forman","version":22,"id":"53247","lastModified":"1301901938000","name":"Chaka Forman","type":"Person","_key":"31281"} +{"label":"Tammy Trull","version":23,"id":"53248","lastModified":"1301901643000","name":"Tammy Trull","type":"Person","_key":"31282"} +{"label":"Samantha Esteban","version":23,"id":"53250","lastModified":"1301902195000","name":"Samantha Esteban","type":"Person","_key":"31283"} +{"label":"Tania Verafield","version":25,"id":"53251","lastModified":"1301902047000","name":"Tania Verafield","type":"Person","_key":"31284"} +{"label":"Adriana Millan","version":22,"id":"53253","lastModified":"1301902309000","name":"Adriana Millan","type":"Person","_key":"31285"} +{"label":"Geovanny Corvera","version":22,"id":"53254","lastModified":"1301902309000","name":"Geovanny Corvera","type":"Person","_key":"31286"} +{"label":"Cesar Garcia","version":24,"id":"53255","lastModified":"1301901556000","name":"Cesar Garcia","type":"Person","_key":"31287"} +{"label":"Emilio Rivera","version":24,"id":"53257","lastModified":"1301901345000","name":"Emilio Rivera","type":"Person","_key":"31288"} +{"label":"Black Snake Moan","description":"A God-fearing bluesman (Jackson) takes to a wild young woman (Ricci) who, as a victim of childhood sexual abuse, looks everywhere for love, never quite finding it.","id":"7874","runtime":116,"imdbId":"tt0462200","trailer":"http:\/\/www.youtube.com\/watch?v=nLxqg42tvLs","homepage":"http:\/\/www.moanmovie.com\/","version":243,"lastModified":"1301906218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a9\/4c708eb45e73d65f790008a9\/black-snake-moan-mid.jpg","studio":"New Deal Productions","genre":"Drama","title":"Black Snake Moan","releaseDate":1165622400000,"language":"en","tagline":"To save his soul he must save hers.","type":"Movie","_key":"31289"} +{"label":"David Banner","version":24,"id":"53258","lastModified":"1301901377000","name":"David Banner","type":"Person","_key":"31290"} +{"label":"Michael Raymond-James","version":21,"id":"53259","lastModified":"1301901615000","name":"Michael Raymond-James","type":"Person","_key":"31291"} +{"label":"Adriane Lenox","version":36,"id":"53260","lastModified":"1302060400000","name":"Adriane Lenox","type":"Person","_key":"31292"} +{"label":"Kim Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f94\/4d280fd47b9aa134cb001f94\/kim-richards-profile.jpg","version":36,"id":"53261","lastModified":"1301901283000","name":"Kim Richards","type":"Person","_key":"31293"} +{"label":"Neimus K. Williams","version":21,"id":"53262","lastModified":"1301901476000","name":"Neimus K. Williams","type":"Person","_key":"31294"} +{"label":"Ruby Wilson","version":21,"id":"53263","lastModified":"1301901538000","name":"Ruby Wilson","type":"Person","_key":"31295"} +{"label":"Claude Phillips","version":21,"id":"53264","lastModified":"1301901538000","name":"Claude Phillips","type":"Person","_key":"31296"} +{"label":"Amy Lavere","version":21,"id":"53265","lastModified":"1301901476000","name":"Amy Lavere","type":"Person","_key":"31297"} +{"label":"Clare Grant","version":22,"id":"53266","lastModified":"1301901255000","name":"Clare Grant","type":"Person","_key":"31298"} +{"label":"Craig Brewer","version":27,"id":"53267","lastModified":"1301901732000","name":"Craig Brewer","type":"Person","_key":"31299"} +{"label":"Rang De Basanti","description":"A young woman from England comes to India to make a documentary about her\r\ngrandfather's diary which was written in the 1920s about the Indian Independence with five young men.","id":"7913","runtime":157,"imdbId":"tt0405508","version":203,"lastModified":"1301903712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e7\/4bc91fc0017a3c57fe00c8e7\/7913-mid.jpg","studio":"Flicks Motion Pictures","genre":"Drama","title":"Rang De Basanti","releaseDate":1138233600000,"language":"en","tagline":"A Generation Awakens","type":"Movie","_key":"31300"} +{"label":"Rakeysh Omprakash Mehra","version":29,"id":"53671","lastModified":"1301901961000","name":"Rakeysh Omprakash Mehra","type":"Person","_key":"31301"} +{"label":"Soha Ali Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4d0adf1c7b9aa1098e000049\/soha-ali-khan-profile.jpg","biography":"<b>Sex: <\/b>Female\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n<b>Date of Birth: <\/b>04 Oct 1978\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n<b>Place of Birth: <\/b>New Delhi\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\nKhan was born into the family of nawabs of Pataudi. Her father, \nMansoor Ali Khan Pataudi, the current nawab, is a former captain of the \nIndian cricket team.\n\nHer mother, Sharmila Tagore, is a noted film\n actress, and a distant relative of the nobel laureate Rabindranath \nTagore. Her brother, Saif Ali Khan is also a Bollywood actor and s","version":35,"id":"53672","lastModified":"1301901600000","name":"Soha Ali Khan","type":"Person","_key":"31302"} +{"label":"Alice Patten","version":22,"id":"53673","lastModified":"1301901996000","name":"Alice Patten","type":"Person","_key":"31303"} +{"label":"Sharman Joshi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/117\/4c4f240f5e73d62ec5000117\/sharman-joshi-profile.jpg","version":37,"id":"53674","lastModified":"1301901509000","name":"Sharman Joshi","type":"Person","_key":"31304"} +{"label":"Kunal Kapoor","version":24,"id":"53675","lastModified":"1301901715000","name":"Kunal Kapoor","type":"Person","_key":"31305"} +{"label":"Atul Kulkarni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bb5\/4d215bcc5e73d66b34002bb5\/atul-kulkarni-profile.jpg","version":28,"id":"53676","lastModified":"1301901990000","name":"Atul Kulkarni","type":"Person","_key":"31306"} +{"label":"Madhavan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/118\/4c4f23c95e73d62ec6000118\/r-madhavan-profile.jpg","version":41,"id":"85519","lastModified":"1301901466000","name":"Madhavan","type":"Person","_key":"31307"} +{"label":"Blackfire","description":"This action thriller is both a feature and an early piece of interactive entertainment to be transmitted through fiber cable tv.","id":"7914","runtime":90,"version":51,"lastModified":"1301908588000","genre":"Action","title":"Blackfire","releaseDate":931305600000,"language":"en","type":"Movie","_key":"31308"} +{"label":"Renato Longi","version":19,"id":"53311","lastModified":"1301901351000","name":"Renato Longi","type":"Person","_key":"31309"} +{"label":"Mike Hollomon","version":16,"id":"53313","lastModified":"1301902367000","name":"Mike Hollomon","type":"Person","_key":"31310"} +{"label":"Wolfgang Shatriya","version":16,"id":"53314","lastModified":"1301901993000","name":"Wolfgang Shatriya","type":"Person","_key":"31311"} +{"label":"Julia Hiebaum","version":16,"id":"53315","lastModified":"1301902391000","name":"Julia Hiebaum","type":"Person","_key":"31312"} +{"label":"Davide Israel","version":16,"id":"53316","lastModified":"1301902364000","name":"Davide Israel","type":"Person","_key":"31313"} +{"label":"Lisa Smidt","version":16,"id":"53317","lastModified":"1301901996000","name":"Lisa Smidt","type":"Person","_key":"31314"} +{"label":"Semi Thiai","version":16,"id":"53320","lastModified":"1301901959000","name":"Semi Thiai","type":"Person","_key":"31315"} +{"label":"Wolf","version":16,"id":"53957","lastModified":"1301901787000","name":"Wolf","type":"Person","_key":"31316"} +{"label":"Ruiz Cesar","version":16,"id":"53958","lastModified":"1301901959000","name":"Ruiz Cesar","type":"Person","_key":"31317"} +{"label":"Salisbury Brett","version":16,"id":"53959","lastModified":"1301901959000","name":"Salisbury Brett","type":"Person","_key":"31318"} +{"label":"Return 1993","description":"A still camera acts as a time \"window\". Through it, the reality become both a Return to the past and the present.","id":"7915","runtime":5,"version":110,"lastModified":"1301421335000","genre":"History","title":"Return 1993","releaseDate":734140800000,"language":"en","type":"Movie","_key":"31319"} +{"label":"Heidi McNeil","version":16,"id":"53321","lastModified":"1301902369000","name":"Heidi McNeil","type":"Person","_key":"31320"} +{"label":"Dante Bogani","version":16,"id":"53322","lastModified":"1301902180000","name":"Dante Bogani","type":"Person","_key":"31321"} +{"label":"Far Cry","description":"Jack Carver, a former member of the Special Forces takes the journalist Valerie Cardinal to an Island to visit her uncle Max who is working in a Military complex on the Island. As they arrive Valerie gets captured by the minions of Doctor Kr\u00fcger. After the destruction of his boat Jack finds out about the true purpose of the Facilities on the Island, which is the creation of genetic soldiers.","id":"7916","runtime":95,"imdbId":"tt0400426","version":216,"lastModified":"1301902425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b3\/4d8c45397b9aa13aea0026b3\/far-cry-mid.jpg","studio":"Brightlight Pictures Inc.","genre":"Action","title":"Far Cry","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"31322"} +{"label":"Don S. Davis","version":40,"id":"15863","lastModified":"1301901164000","name":"Don S. Davis","type":"Person","_key":"31323"} +{"label":"Run Fatboy Run","description":"Five years after jilting his pregnant fianc\u00e9e on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.","id":"7942","runtime":97,"imdbId":"tt0425413","homepage":"http:\/\/www.runfatboyrunmovie.com\/","version":298,"lastModified":"1301907554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f22\/4d8bb2cc5e73d653ce000f22\/run-fatboy-run-mid.jpg","studio":"Entertainment Films","genre":"Comedy","title":"Run Fatboy Run","releaseDate":1206662400000,"language":"en","type":"Movie","_key":"31324"} +{"label":"Harish Patel","version":24,"id":"53362","lastModified":"1301901943000","name":"Harish Patel","type":"Person","_key":"31325"} +{"label":"India de Beaufort","version":22,"id":"53364","lastModified":"1301902130000","name":"India de Beaufort","type":"Person","_key":"31326"} +{"label":"Matthew Fenton","version":22,"id":"53365","lastModified":"1301902130000","name":"Matthew Fenton","type":"Person","_key":"31327"} +{"label":"Simon Day","version":23,"id":"53366","lastModified":"1301902181000","name":"Simon Day","type":"Person","_key":"31328"} +{"label":"Ruth Sheen","version":31,"id":"53367","lastModified":"1301901558000","name":"Ruth Sheen","type":"Person","_key":"31329"} +{"label":"Nevan Finegan","version":22,"id":"53388","lastModified":"1301902130000","name":"Nevan Finegan","type":"Person","_key":"31330"} +{"label":"Tyrone Huggins","version":22,"id":"53389","lastModified":"1301902130000","name":"Tyrone Huggins","type":"Person","_key":"31331"} +{"label":"Shine a Light","description":"Martin Scorsese and the Rolling Stones unite in \"Shine A Light,\" a look at The Rolling Stones.\" Scorsese filmed the Stones over a two-day period at the intimate Beacon Theater in New York City in fall 2006. Cinematographers capture the raw energy of the legendary band. ","id":"7944","runtime":120,"imdbId":"tt0893382","trailer":"http:\/\/www.youtube.com\/watch?v=473","homepage":"http:\/\/www.shinealightmovie.com\/","version":266,"lastModified":"1301902750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/925\/4bc91fc9017a3c57fe00c925\/shine-a-light-mid.jpg","studio":"Concert Promotion International","genre":"Documentary","title":"Shine a Light","releaseDate":1202342400000,"language":"en","type":"Movie","_key":"31332"} +{"label":"Ron Wood","version":22,"id":"53396","lastModified":"1301901430000","name":"Ron Wood","type":"Person","_key":"31333"} +{"label":"Christina Aguilera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8eb\/4cb8dec07b9aa138d90008eb\/christina-aguilera-profile.jpg","biography":"<P style=\"MARGIN: 0in 0in 10pt\" class=MsoNormal><SPAN style=\"LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt\">Christina Mar\u00eda Aguilera, born on 18<SUP>th<\/SUP> December 1980, is an American pop singer and songwriter. Aguilera first appeared on national television in 1990 as a contestant on the Star Search program, and went on to star in Disney Channel's television series The Mickey Mouse Club from 1993\u20131994. Aguilera signed to RCA Records after recording \"Reflection\" f","version":52,"birthday":"345942000000","id":"53397","lastModified":"1301904058000","name":"Christina Aguilera","type":"Person","_key":"31334"} +{"label":"Jack White","version":18,"id":"53398","lastModified":"1301901901000","name":"Jack White","type":"Person","_key":"31335"} +{"label":"Buddy Guy","version":27,"id":"53399","lastModified":"1301901473000","name":"Buddy Guy","type":"Person","_key":"31336"} +{"label":"Resident Evil","description":"Located in Raccoon City, the lone survivor of a scientific experiment conducted by the Umbrella Corporation fights back against her captors.","id":"7970","version":345,"lastModified":"1301905370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92e\/4bc91fc9017a3c57fe00c92e\/resident-evil-mid.jpg","genre":"Action","title":"Resident Evil","language":"en","type":"Movie","_key":"31337"} +{"label":"Before the Devil Knows You're Dead","description":"Two brothers organize the robbery of a jewelry store. The job goes horribly wrong, triggering off a series of events that send them and their family hurtling towards a shattering climax.","id":"7972","runtime":117,"imdbId":"tt0292963","trailer":"http:\/\/www.youtube.com\/watch?v=8Jhrxn7QVDc","version":276,"lastModified":"1301901881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/951\/4bc91fcf017a3c57fe00c951\/before-the-devil-knows-you-re-dead-mid.jpg","studio":"Linsefilm","genre":"Crime","title":"Before the Devil Knows You're Dead","releaseDate":1189036800000,"language":"en","type":"Movie","_key":"31338"} +{"label":"Aleksa Palladino","version":31,"id":"53441","lastModified":"1301901552000","name":"Aleksa Palladino","type":"Person","_key":"31339"} +{"label":"Sarah Livingston","version":24,"id":"53448","lastModified":"1301901695000","name":"Sarah Livingston","type":"Person","_key":"31340"} +{"label":"Blaine Horton","version":26,"id":"53453","lastModified":"1301901675000","name":"Blaine Horton","type":"Person","_key":"31341"} +{"label":"Damon Gupton","version":26,"id":"53454","lastModified":"1301902022000","name":"Damon Gupton","type":"Person","_key":"31342"} +{"label":"Caramel","description":"In a beauty salon in Beirut the lives of five women cross paths. The beauty salon is a colorful and sensual microcosm where they share and entrust their hopes, fears and expectations.","id":"7973","runtime":96,"imdbId":"tt0825236","trailer":"http:\/\/www.youtube.com\/watch?v=kx9HnXJHD9s","homepage":"http:\/\/www.bacfilms.com\/site\/caramel\/","version":243,"lastModified":"1301904762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95e\/4bc91fd0017a3c57fe00c95e\/caramel-mid.jpg","studio":"Les Films des Tournelles","genre":"Comedy","title":"Caramel","releaseDate":1179619200000,"language":"en","type":"Movie","_key":"31343"} +{"label":"Nadine Labaki","version":28,"id":"53431","lastModified":"1301901477000","name":"Nadine Labaki","type":"Person","_key":"31344"} +{"label":"Yasmine Elmasri","version":20,"id":"53442","lastModified":"1301901540000","name":"Yasmine Elmasri","type":"Person","_key":"31345"} +{"label":"Joanna Moukarzel","version":20,"id":"53443","lastModified":"1301901477000","name":"Joanna Moukarzel","type":"Person","_key":"31346"} +{"label":"Gis\u00e8le Aouad","version":20,"id":"53444","lastModified":"1301901477000","name":"Gis\u00e8le Aouad","type":"Person","_key":"31347"} +{"label":"Adel Karam","version":23,"id":"53445","lastModified":"1301901676000","name":"Adel Karam","type":"Person","_key":"31348"} +{"label":"Sihame Haddad","version":20,"id":"53446","lastModified":"1301901901000","name":"Sihame Haddad","type":"Person","_key":"31349"} +{"label":"Aziza Semaan","version":22,"id":"53447","lastModified":"1301901900000","name":"Aziza Semaan","type":"Person","_key":"31350"} +{"label":"Fatmeh Safa","version":20,"id":"53449","lastModified":"1301901901000","name":"Fatmeh Safa","type":"Person","_key":"31351"} +{"label":"Dimitri Staneofski","version":21,"id":"53450","lastModified":"1301901575000","name":"Dimitri Staneofski","type":"Person","_key":"31352"} +{"label":"Fadia Stella","version":22,"id":"53451","lastModified":"1301901739000","name":"Fadia Stella","type":"Person","_key":"31353"} +{"label":"Isma\u00efl Antar","version":20,"id":"53452","lastModified":"1301901740000","name":"Isma\u00efl Antar","type":"Person","_key":"31354"} +{"label":"The Match Factory Girl","description":"The film is about a match factory worker who lives a dull and uneventful life. She is picked up by a man at a nightclub and she sleeps with him. He gets her pregnant then wants nothing to do with her. She decides to take revenge against him and anyone who crosses her.","id":"7974","runtime":66,"imdbId":"tt0098532","version":70,"lastModified":"1301905458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/206\/4c6075dc5e73d63463000206\/tulitikkutehtaan-tytto-mid.jpg","studio":"Svenska Filminstitutet","genre":"Comedy","title":"The Match Factory Girl","releaseDate":632102400000,"language":"en","type":"Movie","_key":"31355"} +{"label":"Elina Salo","version":24,"id":"53507","lastModified":"1301902099000","name":"Elina Salo","type":"Person","_key":"31356"} +{"label":"Esko Nikkari","version":27,"id":"53508","lastModified":"1301902099000","name":"Esko Nikkari","type":"Person","_key":"31357"} +{"label":"Silu Sepp\u00e4l\u00e4","version":22,"id":"53510","lastModified":"1301901675000","name":"Silu Sepp\u00e4l\u00e4","type":"Person","_key":"31358"} +{"label":"Reijo Taipale","version":21,"id":"53511","lastModified":"1301902278000","name":"Reijo Taipale","type":"Person","_key":"31359"} +{"label":"Marja Packal\u00e9n","version":22,"id":"53512","lastModified":"1301901849000","name":"Marja Packal\u00e9n","type":"Person","_key":"31360"} +{"label":"Richard Reitinger","version":33,"id":"2306","lastModified":"1299492856000","name":"Richard Reitinger","type":"Person","_key":"31361"} +{"label":"Kurt Siilas","version":21,"id":"53513","lastModified":"1301902278000","name":"Kurt Siilas","type":"Person","_key":"31362"} +{"label":"Ismo Kein\u00e4nen","version":21,"id":"53514","lastModified":"1301902278000","name":"Ismo Kein\u00e4nen","type":"Person","_key":"31363"} +{"label":"Vesa Vierikko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/920\/4d28ccd45e73d626be002920\/vesa-vierikko-profile.jpg","version":33,"id":"53509","lastModified":"1301901986000","name":"Vesa Vierikko","type":"Person","_key":"31364"} +{"label":"I Hired a Contract Killer","description":"No overview found.","id":"7975","runtime":79,"imdbId":"tt0099818","version":83,"lastModified":"1301904720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc91fd1017a3c57fe00c96b\/i-hired-a-contract-killer-mid.jpg","studio":"Pandora Filmproduktion","genre":"Comedy","title":"I Hired a Contract Killer","releaseDate":653184000000,"language":"en","type":"Movie","_key":"31365"} +{"label":"Margi Clarke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9f\/4d911dd55e73d65f0e002e9f\/margi-clarke-profile.jpg","version":25,"id":"53487","lastModified":"1301902177000","name":"Margi Clarke","type":"Person","_key":"31366"} +{"label":"Imogen Claire","version":21,"id":"53488","lastModified":"1301901987000","name":"Imogen Claire","type":"Person","_key":"31367"} +{"label":"Nicky Tesco","version":21,"id":"53489","lastModified":"1301902179000","name":"Nicky Tesco","type":"Person","_key":"31368"} +{"label":"Michael O'Hagan","version":25,"id":"53490","lastModified":"1301901995000","name":"Michael O'Hagan","type":"Person","_key":"31369"} +{"label":"The Wolfman","description":"This werewolf-themed horror film set in Victorian England centers on Lawrence Talbot, an American man who, upon a visit to London, gets bitten by a werewolf. Talbot had come to England to make amends with his estranged father, but after a moonlight transformation leaves him with a savage hunger for flesh, family harmony is the least of his worries.","id":"7978","runtime":102,"imdbId":"tt0780653","trailer":"http:\/\/www.youtube.com\/watch?v=NS3nTkvvHi8","homepage":"http:\/\/www.thewolfmanmovie.com\/","version":550,"lastModified":"1301901023000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4c\/4cf890075e73d6299e001e4c\/the-wolfman-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Wolfman","releaseDate":1265760000000,"language":"en","tagline":"When the moon is full the legend comes to life","type":"Movie","_key":"31370"} +{"label":"Cristina Contes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32b\/4bf72e36017a3c773000032b\/cristina-contes-profile.jpg","version":21,"id":"119684","birthplace":"Switzerland","lastModified":"1301901551000","name":"Cristina Contes","type":"Person","_key":"31371"} +{"label":"David Sterne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32f\/4bf72f47017a3c773000032f\/david-sterne-profile.jpg","version":22,"id":"117654","lastModified":"1301901443000","name":"David Sterne","type":"Person","_key":"31372"} +{"label":"Elizabeth Croft","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36f\/4bf73150017a3c772b00036f\/elizabeth-croft-profile.jpg","version":24,"id":"119685","lastModified":"1301901551000","name":"Elizabeth Croft","type":"Person","_key":"31373"} +{"label":"Jessica Manley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/396\/4bf7320a017a3c772a000396\/jessica-manley-profile.jpg","biography":"Jessica's first performance was as a 5 year old in the regional theatre where her father was Artistic Director and her mother was an actress and writer. Jessica - who goes by the name Jess - moved into a variety of roles in TV series before playing the part of Margot in the TV mini-series, Anne Frank - The Whole Story, a part that had particular resonance for her since her Jewish grandparents emigrated to England a few years before World War Two started. Jess returned to the UK to study classica","version":25,"id":"119686","lastModified":"1301901928000","name":"Jessica Manley","type":"Person","_key":"31374"} +{"label":"Simon Merrells","version":25,"id":"119687","lastModified":"1301901232000","name":"Simon Merrells","type":"Person","_key":"31375"} +{"label":"The Kite Runner","description":"The Kite Runner is the story of strained family relationships between a father and a son, and between two brothers, how they deal with guilt and forgiveness, and how they weather the political and social transformations of Afghanistan from the 1970s to 2001. ","id":"7979","runtime":128,"imdbId":"tt0419887","homepage":"http:\/\/www.kiterunnermovie.com\/","version":361,"lastModified":"1301902341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f30\/4bffc4a2017a3c7031000f30\/the-kite-runner-mid.jpg","studio":"DreamWorks SKG","genre":"Drama","title":"The Kite Runner","releaseDate":1192320000000,"language":"en","tagline":"There is a way to be good again.","type":"Movie","_key":"31376"} +{"label":"Khalid Abdalla","version":48,"id":"53480","lastModified":"1301901180000","name":"Khalid Abdalla","type":"Person","_key":"31377"} +{"label":"Atossa Leoni","version":23,"id":"53481","lastModified":"1301901615000","name":"Atossa Leoni","type":"Person","_key":"31378"} +{"label":"Zekeria Ebrahimi","version":23,"id":"53482","lastModified":"1301901538000","name":"Zekeria Ebrahimi","type":"Person","_key":"31379"} +{"label":"Ahmad Khan Mahmoodzada","version":21,"id":"53483","lastModified":"1301901620000","name":"Ahmad Khan Mahmoodzada","type":"Person","_key":"31380"} +{"label":"Sayed Jafar Masihullah Gharibzada","version":23,"id":"53484","lastModified":"1301901615000","name":"Sayed Jafar Masihullah Gharibzada","type":"Person","_key":"31381"} +{"label":"The Lovely Bones","description":"Centers on a young girl who has been murdered and watches over her family - and her killer - from heaven. She must weigh her desire for vengeance against her desire for her family to heal.","id":"7980","runtime":135,"imdbId":"tt0380510","trailer":"http:\/\/www.youtube.com\/watch?v=ikUWKi0W5_g","homepage":"http:\/\/www.lovelybones.com","version":403,"lastModified":"1301901337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d54\/4be713e5017a3c35b5000d54\/the-lovely-bones-mid.jpg","studio":"Film4","genre":"Drama","title":"The Lovely Bones","releaseDate":1259020800000,"language":"en","tagline":"The story of a life and everything that came after...","type":"Movie","_key":"31382"} +{"label":"Rose McIver","version":27,"id":"53485","lastModified":"1301901482000","name":"Rose McIver","type":"Person","_key":"31383"} +{"label":"Carolyn Dando","version":27,"id":"53486","lastModified":"1301901482000","name":"Carolyn Dando","type":"Person","_key":"31384"} +{"label":"herzw\u00e4rts","description":"No overview found.","id":"7981","runtime":5,"version":27,"lastModified":"1300978550000","studio":"Viv\u00e0svan Pictures","genre":"Musical","title":"herzw\u00e4rts","releaseDate":1218412800000,"language":"en","type":"Movie","_key":"31385"} +{"label":"Stefan Rosenthal","version":16,"id":"53496","lastModified":"1301902160000","name":"Stefan Rosenthal","type":"Person","_key":"31386"} +{"label":"Nina Bernards","version":16,"id":"53497","lastModified":"1301901661000","name":"Nina Bernards","type":"Person","_key":"31387"} +{"label":"Zackes Brustik","version":16,"id":"53498","lastModified":"1301901970000","name":"Zackes Brustik","type":"Person","_key":"31388"} +{"label":"Osina Jung","version":16,"id":"53499","lastModified":"1301902160000","name":"Osina Jung","type":"Person","_key":"31389"} +{"label":"Steffi Sattler","version":16,"id":"53500","lastModified":"1301902160000","name":"Steffi Sattler","type":"Person","_key":"31390"} +{"label":"Udo Lutz","version":16,"id":"53501","lastModified":"1301902160000","name":"Udo Lutz","type":"Person","_key":"31391"} +{"label":"Sabine Ro\u00dfberg","version":16,"id":"53502","lastModified":"1301902160000","name":"Sabine Ro\u00dfberg","type":"Person","_key":"31392"} +{"label":"Lowlands","description":"afdsafdsafdsaf","id":"7983","runtime":98,"imdbId":"tt0046431","version":106,"lastModified":"1301906626000","studio":"Leni Riefenstahl-Produktion","genre":"Drama","title":"Lowlands","releaseDate":-501379200000,"language":"en","type":"Movie","_key":"31393"} +{"label":"Bernhard Minetti","version":21,"id":"53503","lastModified":"1301901993000","name":"Bernhard Minetti","type":"Person","_key":"31394"} +{"label":"Luis Rainer","version":21,"id":"53505","lastModified":"1301902352000","name":"Luis Rainer","type":"Person","_key":"31395"} +{"label":"Max Holzboer","version":21,"id":"53886","lastModified":"1301902185000","name":"Max Holzboer","type":"Person","_key":"31396"} +{"label":"In the Name of the Father","description":"A small time thief from Belfast, Gerry Conlon, is falsely implicated in the IRA bombing of a pub that kills several people while he is in London. He and his four friends are coerced by British police into confessing their guilt. Gerry's father and other relatives in London are also implicated in the crime. He spends fifteen years in prison with his father trying to prove his innocence.","id":"7984","runtime":128,"imdbId":"tt0107207","version":157,"lastModified":"1301907552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4bc91fe0017a3c57fe00c9e8\/in-the-name-of-the-father-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"In the Name of the Father","releaseDate":755654400000,"language":"en","type":"Movie","_key":"31397"} +{"label":"Beatie Edney","version":30,"id":"53515","lastModified":"1301902221000","name":"Beatie Edney","type":"Person","_key":"31398"} +{"label":"Mark Sheppard","version":29,"id":"53516","lastModified":"1301902171000","name":"Mark Sheppard","type":"Person","_key":"31399"} +{"label":"Penelope","description":"Forlorn heiress Penelope Wilhern is cursed, and the only way out is to fall in love with someone of suitable stock. But how can she find her soul mate when she's sequestered inside her family's estate with only her parents to keep her company. This untraditional fairy tale about a girl who bucks convention to create her own happy ending.","id":"7985","runtime":103,"imdbId":"tt0472160","trailer":"http:\/\/www.youtube.com\/watch?v=480","homepage":"http:\/\/www.penelopethemovie.com\/","version":317,"lastModified":"1301903314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f5\/4bc91fe1017a3c57fe00c9f5\/penelope-mid.jpg","studio":"Type A Films","genre":"Comedy","title":"Penelope","releaseDate":1157673600000,"language":"en","tagline":"A fairytale like no other.","type":"Movie","_key":"31400"} +{"label":"Nigel Havers","version":35,"id":"53517","lastModified":"1301901350000","name":"Nigel Havers","type":"Person","_key":"31401"} +{"label":"Christina Greatrex","version":20,"id":"53518","lastModified":"1301901885000","name":"Christina Greatrex","type":"Person","_key":"31402"} +{"label":"Ronni Ancona","version":21,"id":"47723","lastModified":"1301901978000","name":"Ronni Ancona","type":"Person","_key":"31403"} +{"label":"Lenny Henry","version":20,"id":"53519","lastModified":"1301901732000","name":"Lenny Henry","type":"Person","_key":"31404"} +{"label":"Mark Palansky","version":20,"id":"53525","lastModified":"1301901476000","name":"Mark Palansky","type":"Person","_key":"31405"} +{"label":"Sean Guest","version":20,"id":"53530","lastModified":"1301901885000","name":"Sean Guest","type":"Person","_key":"31406"} +{"label":"Jump","description":"This movie has been shot on a new digital media format.","id":"7986","runtime":115,"version":72,"lastModified":"1301907276000","genre":"Documentary","title":"Jump","releaseDate":1170806400000,"language":"en","type":"Movie","_key":"31407"} +{"label":"Mark Stanton","version":16,"id":"53531","lastModified":"1301902369000","name":"Mark Stanton","type":"Person","_key":"31408"} +{"label":"Cristina Tamara","version":16,"id":"53532","lastModified":"1301902358000","name":"Cristina Tamara","type":"Person","_key":"31409"} +{"label":"Antony Garcia","version":16,"id":"53533","lastModified":"1301901582000","name":"Antony Garcia","type":"Person","_key":"31410"} +{"label":"Helen Britt","version":16,"id":"53534","lastModified":"1301902375000","name":"Helen Britt","type":"Person","_key":"31411"} +{"label":"Davide Isarel","version":16,"id":"53535","lastModified":"1301902375000","name":"Davide Isarel","type":"Person","_key":"31412"} +{"label":"Freischwimmer","description":"No overview found.","id":"7987","runtime":110,"imdbId":"tt0881916","homepage":"http:\/\/www.novapoolpictures.de\/index.php?p=freischwimmer_derfilm","version":86,"lastModified":"1301904820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4d72687e7b9aa1776e000306\/freischwimmer-mid.jpg","studio":"Typhoon Film","genre":"Comedy","title":"Freischwimmer","releaseDate":1188950400000,"language":"en","type":"Movie","_key":"31413"} +{"label":"Andreas Kleinert","version":21,"id":"49785","lastModified":"1301902364000","name":"Andreas Kleinert","type":"Person","_key":"31414"} +{"label":"The Island","description":"David Warner leads a band of modern day pirates who raid yachts and sail boats of people on vacation out in the Caribbean. Michael Caine is a reporter who goes out there with his son to investigate the mystery of the disappearing boats. He runs across Warner and his band of raiders and they decide to induct them into their tribe.","id":"7988","runtime":114,"imdbId":"tt0080934","version":120,"lastModified":"1302021456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a03\/4bc91fe5017a3c57fe00ca03\/the-island-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"The Island","releaseDate":329702400000,"language":"en","type":"Movie","_key":"31415"} +{"label":"Angela Punch McGregor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a1\/4c463be47b9aa15de00001a1\/angela-punch-mcgregor-profile.jpg","version":24,"id":"53548","lastModified":"1301901619000","name":"Angela Punch McGregor","type":"Person","_key":"31416"} +{"label":"Don Henderson","version":19,"id":"42570","lastModified":"1301901615000","name":"Don Henderson","type":"Person","_key":"31417"} +{"label":"Colin Jeavons","version":19,"id":"53549","lastModified":"1301936858000","name":"Colin Jeavons","type":"Person","_key":"31418"} +{"label":"Jeffrey Frank","version":19,"id":"53551","lastModified":"1301902278000","name":"Jeffrey Frank","type":"Person","_key":"31419"} +{"label":"John O'Leary","version":28,"id":"53552","lastModified":"1301901885000","name":"John O'Leary","type":"Person","_key":"31420"} +{"label":"Bruce McLaughlin","version":20,"id":"53553","lastModified":"1301902369000","name":"Bruce McLaughlin","type":"Person","_key":"31421"} +{"label":"Jimmy Casino","version":19,"id":"53554","lastModified":"1301902098000","name":"Jimmy Casino","type":"Person","_key":"31422"} +{"label":"Suzanne Astor","version":19,"id":"53555","lastModified":"1301902278000","name":"Suzanne Astor","type":"Person","_key":"31423"} +{"label":"Susan Bredhoff","version":19,"id":"53556","lastModified":"1301902278000","name":"Susan Bredhoff","type":"Person","_key":"31424"} +{"label":"It's A Free World...","description":"The film focuses on Angie (Kierston Wareing), a working class woman who, after being fired by the agency that she works for, decides to set up a recruitment agency of her own, running it from her kitchen with her friend Rose (Juliet Ellis). Taking advantage of the desperation of immigrants, Angie is able to build a successful business extremely quickly.","id":"7992","runtime":96,"imdbId":"tt0807054","homepage":"http:\/\/www.sixteenfilms.co.uk\/films\/production_notes\/its_a_free_world\/","version":168,"lastModified":"1301903882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bdda0eb017a3c20c3000243\/it-s-a-free-world-mid.jpg","studio":"Sixteen Films Ltd.","genre":"Drama","title":"It's A Free World...","releaseDate":1188604800000,"language":"en","type":"Movie","_key":"31425"} +{"label":"Kierston Wareing","version":22,"id":"8309","lastModified":"1301901303000","name":"Kierston Wareing","type":"Person","_key":"31426"} +{"label":"Juliet Ellis","version":17,"id":"8325","lastModified":"1301901280000","name":"Juliet Ellis","type":"Person","_key":"31427"} +{"label":"Leslaw Zurek","version":19,"id":"8324","lastModified":"1301901362000","name":"Leslaw Zurek","type":"Person","_key":"31428"} +{"label":"Colin Caughlin","version":17,"id":"8716","lastModified":"1301901338000","name":"Colin Caughlin","type":"Person","_key":"31429"} +{"label":"Joe Siffleet","version":17,"id":"8732","lastModified":"1301901476000","name":"Joe Siffleet","type":"Person","_key":"31430"} +{"label":"Robin Hood: Men in Tights","description":"Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.","id":"8005","runtime":104,"imdbId":"tt0107977","trailer":"http:\/\/www.youtube.com\/watch?v=dX4Ik-cyp-I","version":366,"lastModified":"1301901804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2c\/4bc91fea017a3c57fe00ca2c\/robin-hood-men-in-tights-mid.jpg","studio":"Brooksfilms Ltd.","genre":"Comedy","title":"Robin Hood: Men in Tights","releaseDate":743817600000,"language":"en","tagline":"The legend had it coming... Find out where Robin Hood put his Little John, what made Will Scarlet, and what did Friar Tuck into his tights that Maid Marion all of a quiver?","type":"Movie","_key":"31431"} +{"label":"Megan Cavanagh","version":37,"id":"53570","lastModified":"1301901261000","name":"Megan Cavanagh","type":"Person","_key":"31432"} +{"label":"Matthew Porretta","version":22,"id":"53571","lastModified":"1301902278000","name":"Matthew Porretta","type":"Person","_key":"31433"} +{"label":"Behind Enemy Lines","description":"While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.","id":"8007","runtime":106,"imdbId":"tt0159273","trailer":"http:\/\/www.youtube.com\/watch?v=pidKTNCGbkk","version":450,"lastModified":"1301901930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4a\/4bc91fed017a3c57fe00ca4a\/behind-enemy-lines-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Behind Enemy Lines","releaseDate":1005955200000,"language":"en","tagline":"His only weapon is his will to survive.","type":"Movie","_key":"31434"} +{"label":"Charles Malik Whitfield","version":24,"id":"53572","lastModified":"1301901438000","name":"Charles Malik Whitfield","type":"Person","_key":"31435"} +{"label":"Olek Krupa","version":42,"id":"53573","lastModified":"1301901367000","name":"Olek Krupa","type":"Person","_key":"31436"} +{"label":"Mouth to Mouth","description":"Mouth to Mouth unfolds as Sherry meets the radical street collective SPARK \u2013 Street People Armed with Radical Knowledge \u2013 while she is living on the streets of Europe. They introduce her to an amazing and radical life as they travel towards the vineyard compound that will be their home. Manipulation abounds and Sherry comes of age realizing that individuality has its costs.","id":"8008","runtime":101,"imdbId":"tt0383518","homepage":"http:\/\/mouthtomouthmovie.com\/","version":132,"lastModified":"1301904059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4f\/4bc91fee017a3c57fe00ca4f\/mouth-to-mouth-mid.jpg","studio":"MJW Productions","genre":"Drama","title":"Mouth to Mouth","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"31437"} +{"label":"Eric Thal","version":26,"id":"53574","lastModified":"1301901732000","name":"Eric Thal","type":"Person","_key":"31438"} +{"label":"Diana Greenwood","version":19,"id":"53575","lastModified":"1301902099000","name":"Diana Greenwood","type":"Person","_key":"31439"} +{"label":"Beatrice Brown","version":19,"id":"53576","lastModified":"1301902278000","name":"Beatrice Brown","type":"Person","_key":"31440"} +{"label":"Maxwell McCabe-Lokos","version":19,"id":"53577","lastModified":"1301902098000","name":"Maxwell McCabe-Lokos","type":"Person","_key":"31441"} +{"label":"Elliot McCabe-Lokos","version":19,"id":"53578","lastModified":"1301902098000","name":"Elliot McCabe-Lokos","type":"Person","_key":"31442"} +{"label":"Jefferson Guzman","version":19,"id":"53579","lastModified":"1301902098000","name":"Jefferson Guzman","type":"Person","_key":"31443"} +{"label":"Willy Rachow","version":20,"id":"53580","lastModified":"1301902181000","name":"Willy Rachow","type":"Person","_key":"31444"} +{"label":"Patr\u00edcia Guerreiro","version":19,"id":"53581","lastModified":"1301902098000","name":"Patr\u00edcia Guerreiro","type":"Person","_key":"31445"} +{"label":"Joaquim Horta","version":19,"id":"53582","lastModified":"1301902098000","name":"Joaquim Horta","type":"Person","_key":"31446"} +{"label":"Alison Murray","version":21,"id":"53583","lastModified":"1301901538000","name":"Alison Murray","type":"Person","_key":"31447"} +{"label":"Highlander","description":"He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.","id":"8009","runtime":116,"imdbId":"tt0091203","trailer":"http:\/\/www.youtube.com\/watch?v=kq4SqgxIKM0","version":364,"lastModified":"1301906486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d04\/4d7a54267b9aa11a14000d04\/highlander-mid.jpg","studio":"EMI Films Ltd.","genre":"Action","title":"Highlander","releaseDate":510537600000,"language":"en","type":"Movie","_key":"31448"} +{"label":"Alan North","version":30,"id":"53584","lastModified":"1301902124000","name":"Alan North","type":"Person","_key":"31449"} +{"label":"Sheila Gish","version":25,"id":"53585","lastModified":"1301902188000","name":"Sheila Gish","type":"Person","_key":"31450"} +{"label":"Peter Diamond","version":22,"id":"53587","lastModified":"1301902277000","name":"Peter Diamond","type":"Person","_key":"31451"} +{"label":"Billy Hartman","version":22,"id":"53588","lastModified":"1301902277000","name":"Billy Hartman","type":"Person","_key":"31452"} +{"label":"Highlander II: The Quickening","description":"In the year 2025, the ozone layer is believed to have been destroyed. It is up to MacLeod and Rameriz to set things right. Opposition comes from both the planet Ziest (MacLeod and Ramirez's homeworld) and a corporation profiting from the supposed lack of ozone. Also, flashbacks show the story behind MacLeod and Ramirez's exile from Ziest.","id":"8010","runtime":91,"imdbId":"tt0102034","trailer":"http:\/\/www.youtube.com\/watch?v=YbTATwUxiSI","version":150,"lastModified":"1301902494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4cec81177b9aa12f6b00004a\/highlander-ii-the-quickening-mid.jpg","studio":"Lamb Bear Entertainment","genre":"Action","title":"Highlander II: The Quickening","releaseDate":688953600000,"language":"en","tagline":"It's a kind of magic.","type":"Movie","_key":"31453"} +{"label":"Phillip Brock","version":22,"id":"53589","lastModified":"1301901741000","name":"Phillip Brock","type":"Person","_key":"31454"} +{"label":"Rusty Schwimmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/562\/4d4c2ccd5e73d617bd001562\/rusty-schwimmer-profile.jpg","version":34,"id":"34407","lastModified":"1301901347000","name":"Rusty Schwimmer","type":"Person","_key":"31455"} +{"label":"Ed Trucco","version":24,"id":"53590","lastModified":"1301901732000","name":"Ed Trucco","type":"Person","_key":"31456"} +{"label":"Steven Grives","version":29,"id":"53591","lastModified":"1301901615000","name":"Steven Grives","type":"Person","_key":"31457"} +{"label":"Jimmy Murray","version":24,"id":"53592","lastModified":"1301901732000","name":"Jimmy Murray","type":"Person","_key":"31458"} +{"label":"Pete Antico","version":24,"id":"53593","lastModified":"1301901538000","name":"Pete Antico","type":"Person","_key":"31459"} +{"label":"Peter Bucossi","version":27,"id":"34540","lastModified":"1301901499000","name":"Peter Bucossi","type":"Person","_key":"31460"} +{"label":"Peter Bromilow","version":24,"id":"53594","lastModified":"1301901538000","name":"Peter Bromilow","type":"Person","_key":"31461"} +{"label":"Jeff Altman","version":28,"id":"53595","lastModified":"1301901732000","name":"Jeff Altman","type":"Person","_key":"31462"} +{"label":"Highlander III: The Sorcerer","description":"Starts off in the 15th century, with Connor McLeod (Christopher Lambert) training with another immortal swordsman, the Japanese sorcerer Nakano (Mako). When an evil immortal named Kane (Mario Van Peebles) kills the old wizard, the resulting battle leaves him buried in an underground cave. When Kane resurfaces in the 20th century to create havoc, it's up to McLeod to stop him.","id":"8011","runtime":99,"imdbId":"tt0110027","version":104,"lastModified":"1301903324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e08\/4d7a5d4a7b9aa11a18000e08\/highlander-iii-the-final-dimension-mid.jpg","studio":"Fallingcloud","genre":"Action","title":"Highlander III: The Sorcerer","releaseDate":786931200000,"language":"en","type":"Movie","_key":"31463"} +{"label":"Martin Neufeld","version":23,"id":"53596","lastModified":"1301901787000","name":"Martin Neufeld","type":"Person","_key":"31464"} +{"label":"Daniel Do","version":22,"id":"53597","lastModified":"1301901959000","name":"Daniel Do","type":"Person","_key":"31465"} +{"label":"Louis Bertignac","version":22,"id":"53598","lastModified":"1301901959000","name":"Louis Bertignac","type":"Person","_key":"31466"} +{"label":"Andrew Morahan","version":23,"id":"53599","lastModified":"1301901446000","name":"Andrew Morahan","type":"Person","_key":"31467"} +{"label":"Get Shorty","description":"Chili Palmer (Travolta) is a Miami loan shark who's sent to Los Angeles to collect on a gambling debt from film producer Harry Zimm (Hackman). Chili soon discovers that loansharking was the perfect training ground for making movies...though you have to be ruthless to make it in Hollywood","id":"8012","runtime":105,"imdbId":"tt0113161","version":309,"lastModified":"1301903177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4d40d02d5e73d6572d00020f\/get-shorty-mid.jpg","studio":"Jersey Films","genre":"Action","title":"Get Shorty","releaseDate":814147200000,"language":"en","tagline":"The mob is tough, but it\u2019s nothing like show business.","type":"Movie","_key":"31468"} +{"label":"Renee Props","version":20,"id":"53600","lastModified":"1301901615000","name":"Renee Props","type":"Person","_key":"31469"} +{"label":"Bobby Slayton","version":22,"id":"53601","lastModified":"1301902098000","name":"Bobby Slayton","type":"Person","_key":"31470"} +{"label":"Linda Hart","version":25,"id":"53602","lastModified":"1301902098000","name":"Linda Hart","type":"Person","_key":"31471"} +{"label":"Valley Of Flowers","description":"A Himalayan legend of a love struggling against the inevitability of death, an astonishing tale spanning from the early 19th century mountain existence, to hectic, bustling modern day Tokyo.","id":"8014","runtime":120,"imdbId":"tt0392883","trailer":"http:\/\/www.youtube.com\/watch?v=482","homepage":"http:\/\/user1208715.sf2000.registeredsite.com\/","version":87,"lastModified":"1301903877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c7\/4c4641c37b9aa15ddf0001c7\/valley-of-flowers-mid.jpg","studio":"Elz\u00e9vir Films","genre":"Drama","title":"Valley Of Flowers","releaseDate":1152921600000,"language":"en","type":"Movie","_key":"31472"} +{"label":"Pan Nalin","version":20,"id":"7324","lastModified":"1301901446000","name":"Pan Nalin","type":"Person","_key":"31473"} +{"label":"Milind Soman","version":20,"id":"53620","lastModified":"1301902154000","name":"Milind Soman","type":"Person","_key":"31474"} +{"label":"Jampa Kalsang Tamang","version":21,"id":"53621","lastModified":"1301902154000","name":"Jampa Kalsang Tamang","type":"Person","_key":"31475"} +{"label":"Anil Yadav","version":20,"id":"53622","lastModified":"1301902341000","name":"Anil Yadav","type":"Person","_key":"31476"} +{"label":"Anil Yadav","version":20,"id":"53623","lastModified":"1301902341000","name":"Anil Yadav","type":"Person","_key":"31477"} +{"label":"Ich bin meine eigene Frau","description":"No overview found.","id":"8015","runtime":90,"imdbId":"tt0104475","version":38,"lastModified":"1301904475000","genre":"Documentary","title":"Ich bin meine eigene Frau","releaseDate":702086400000,"language":"en","type":"Movie","_key":"31478"} +{"label":"Charlotte von Mahlsdorf","version":20,"id":"53608","lastModified":"1301901959000","name":"Charlotte von Mahlsdorf","type":"Person","_key":"31479"} +{"label":"Jens Taschner","version":20,"id":"53609","lastModified":"1301902341000","name":"Jens Taschner","type":"Person","_key":"31480"} +{"label":"Germany Year Zero","description":"The final film in Rossellini's war film trilogy (the first two being Rome, Open City and Pais\u00e0). Germany Year Zero takes place in post-war Germany, unlike the others, which take place in German-occupied Rome and post-war Italy, respectively. The story follows a twelve-year-old boy, Edmund Kohler, who is mainly left to his own devices in order to survive and to help his family do the same.","id":"8016","runtime":70,"imdbId":"tt0039417","version":96,"lastModified":"1301905659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab8\/4bc91fff017a3c57fe00cab8\/germania-anno-zero-mid.jpg","studio":"Produzione Salvo D'Angelo","genre":"Drama","title":"Germany Year Zero","releaseDate":-665366400000,"language":"en","type":"Movie","_key":"31481"} +{"label":"Edmund Moeschke","version":19,"id":"53627","lastModified":"1301902192000","name":"Edmund Moeschke","type":"Person","_key":"31482"} +{"label":"Ernst Pittschau","version":21,"id":"53628","lastModified":"1301902187000","name":"Ernst Pittschau","type":"Person","_key":"31483"} +{"label":"Ingetraud Hinze","version":19,"id":"53629","lastModified":"1301902154000","name":"Ingetraud Hinze","type":"Person","_key":"31484"} +{"label":"Erich G\u00fchne","version":21,"id":"53630","lastModified":"1301902341000","name":"Erich G\u00fchne","type":"Person","_key":"31485"} +{"label":"Mohini Bhasmasur","description":"No overview found.","id":"8017","runtime":0,"imdbId":"tt0253250","version":29,"lastModified":"1300978554000","genre":"Drama","title":"Mohini Bhasmasur","releaseDate":-1798761600000,"language":"en","type":"Movie","_key":"31486"} +{"label":"Dhundiraj Govind Phalke","version":20,"id":"53631","lastModified":"1301901959000","name":"Dhundiraj Govind Phalke","type":"Person","_key":"31487"} +{"label":"Durgabai","version":17,"id":"8302","lastModified":"1301901497000","name":"Durgabai","type":"Person","_key":"31488"} +{"label":"Kamala","version":18,"id":"53632","lastModified":"1301902154000","name":"Kamala","type":"Person","_key":"31489"} +{"label":"Breakheart Pass","description":"At the height of the frontier era, a train races through the Rocky Mountains on a classified mission to a remote army post. But one by one the passengers are being murdered! Their only hope is John Deakin (Bronson) a mysterious man, who is being transported unexpectedly to face trial for murder. Can Deakin uncover the truth before only the murderer remains, or the train reaches it's secret destination? Based on the novel by Alistair MacLean.","id":"8043","runtime":95,"imdbId":"tt0072735","trailer":"http:\/\/www.youtube.com\/watch?v=yvDrSCTUtAs","version":271,"lastModified":"1301904555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/547\/4bfaf239017a3c7037000547\/breakheart-pass-mid.jpg","studio":"United Artists","genre":"Action","title":"Breakheart Pass","releaseDate":188697600000,"language":"en","type":"Movie","_key":"31490"} +{"label":"The last night of Pompeii","description":"No overview found.","id":"8044","runtime":0,"version":321,"lastModified":"1301414581000","genre":"History","title":"The last night of Pompeii","releaseDate":1291680000000,"language":"en","type":"Movie","_key":"31491"} +{"label":"Manddrake","description":"No overview found.","id":"8045","runtime":0,"version":13,"lastModified":"1301908607000","title":"Manddrake","releaseDate":1322524800000,"language":"en","type":"Movie","_key":"31492"} +{"label":"Gigli","description":"Larry Gigli is a low-ranking mobster who is commanded to kidnap the mentally challenged, Baywatch-obsessed younger brother of a powerful federal prosecutor to save his mobster boss from prison. Gigli successfully convinces the young man, Brian, to go off with him by promising to take him \"to the Baywatch.\" However, Gigli's boss, Louis, does not trust him; he hires a woman calling herself Ricki (Lopez) to take over the job.","id":"8046","runtime":121,"imdbId":"tt0299930","homepage":"http:\/\/www.sonypictures.com\/homevideo\/catalog\/catalogDetail_DVD043396087576.html","version":152,"lastModified":"1301903614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad1\/4bc92005017a3c57fe00cad1\/gigli-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"Gigli","releaseDate":1059264000000,"language":"en","type":"Movie","_key":"31493"} +{"label":"Missy Crider","version":22,"id":"53646","lastModified":"1301902145000","name":"Missy Crider","type":"Person","_key":"31494"} +{"label":"Lainie Kazan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fd\/4cb5c31c7b9aa138d50001fd\/lainie-kazan-profile.jpg","version":42,"id":"53647","lastModified":"1301999068000","name":"Lainie Kazan","type":"Person","_key":"31495"} +{"label":"Matador","description":"Ex-bullfighter who is getting turned on by killing, lady lawyer with same problem and young man driven insane by over-religious upbringing - these are the main characters in this stylish black comedy about dark sides of human nature.","id":"8047","runtime":110,"imdbId":"tt0091495","version":88,"lastModified":"1301903217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f2\/4cf6a2d15e73d629990011f2\/matador-mid.jpg","studio":"Televisi\u00f3n Espa\u00f1ola","genre":"Drama","title":"Matador","releaseDate":510537600000,"language":"en","type":"Movie","_key":"31496"} +{"label":"Eva Cobo","version":24,"id":"53655","lastModified":"1301901787000","name":"Eva Cobo","type":"Person","_key":"31497"} +{"label":"Quando le donne persero la coda","description":"No overview found.","id":"8048","runtime":94,"imdbId":"tt0067639","version":49,"lastModified":"1301905712000","studio":"Clesi Cinematografica","genre":"Comedy","title":"Quando le donne persero la coda","releaseDate":67737600000,"language":"en","type":"Movie","_key":"31498"} +{"label":"Pasquale Festa Campanile","version":27,"id":"53657","lastModified":"1301901603000","name":"Pasquale Festa Campanile","type":"Person","_key":"31499"} +{"label":"Lando Buzzanca","version":29,"id":"53660","lastModified":"1301901959000","name":"Lando Buzzanca","type":"Person","_key":"31500"} +{"label":"Francesco Mul\u00e9","version":19,"id":"55134","lastModified":"1301902369000","name":"Francesco Mul\u00e9","type":"Person","_key":"31501"} +{"label":"Aldo Puglisi","version":20,"id":"55135","lastModified":"1301902341000","name":"Aldo Puglisi","type":"Person","_key":"31502"} +{"label":"Le Fils de l'\u00e9picier","description":"Antoine Sforza, a thirty-year-old young man, left his village ten years before in order to start a new life in the big city, but now that his father, a traveling grocer, is in hospital after a stroke, he more or less reluctantly accepts to come back to replace him in his daily rounds. ","id":"8049","runtime":96,"imdbId":"tt0864770","trailer":"http:\/\/www.youtube.com\/watch?v=512","homepage":"http:\/\/www.lefilsdelepicier-lefilm.com\/","version":78,"lastModified":"1301904955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ada\/4bc92007017a3c57fe00cada\/le-fils-de-lepicier-mid.jpg","studio":"TS Productions","genre":"Comedy","title":"Le Fils de l'\u00e9picier","releaseDate":1181865600000,"language":"en","type":"Movie","_key":"31503"} +{"label":"Eric Guirado","version":23,"id":"53427","lastModified":"1301901732000","name":"Eric Guirado","type":"Person","_key":"31504"} +{"label":"Clotilde Hesme","version":36,"id":"53429","lastModified":"1301901284000","name":"Clotilde Hesme","type":"Person","_key":"31505"} +{"label":"Jeanne Goupil","version":24,"id":"53430","lastModified":"1301902146000","name":"Jeanne Goupil","type":"Person","_key":"31506"} +{"label":"Chad Chenouga","version":20,"id":"53666","lastModified":"1301902098000","name":"Chad Chenouga","type":"Person","_key":"31507"} +{"label":"Ludmila Ruoso","version":20,"id":"53667","lastModified":"1301901885000","name":"Ludmila Ruoso","type":"Person","_key":"31508"} +{"label":"Highlander Collection","description":"Following the exploits of two immortal Scottish highlanders Conner and Duncan Macleod. Born of different times and fighting throughout the centuries to gain the mystical prize. Spanning history friendship, devastating relationships and legendary battles each immortal learns that there seemingly never ending life is more of a curse than a gift. But for the sake of mankind they must go on fighting to survive until only one remains","id":"8050","version":68,"lastModified":"1301904625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/268\/4bd99e7d017a3c1c05000268\/highlander-mid.jpg","title":"Highlander Collection","language":"en","type":"Movie","_key":"31509"} +{"label":"Punch-Drunk Love","description":"A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.","id":"8051","runtime":95,"imdbId":"tt0272338","version":214,"lastModified":"1301902997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aeb\/4bc92009017a3c57fe00caeb\/punch-drunk-love-mid.jpg","studio":"Ghoulardi Film Company","genre":"Comedy","title":"Punch-Drunk Love","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"31510"} +{"label":"Mary Lynn Rajskub","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/802\/4d3e401d5e73d622d1003802\/mary-lynn-rajskub-profile.jpg","version":37,"id":"25884","lastModified":"1302062195000","name":"Mary Lynn Rajskub","type":"Person","_key":"31511"} +{"label":"Robert Smigel","version":34,"id":"53684","lastModified":"1302062195000","name":"Robert Smigel","type":"Person","_key":"31512"} +{"label":"Hard Eight","description":"John has lost all his money. He sits outside a diner in the desert when Sydney happens along, buys him coffee, then takes him to Reno and shows him how to get a free room without losing much money. Under Sydney's fatherly tutelage, John becomes a successful small-time professional gambler, and all is well, until he falls for Clementine, a cocktail waitress and sometimes hooker. Paul Thomas Anderson's directorial debut.","id":"8052","runtime":102,"imdbId":"tt0119256","trailer":"http:\/\/www.youtube.com\/watch?v=rggtzgTDx1Q","version":153,"lastModified":"1301903897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc92009017a3c57fe00caf9\/hard-eight-mid.jpg","studio":"Green Parrot","genre":"Drama","title":"Hard Eight","releaseDate":845769600000,"language":"en","type":"Movie","_key":"31513"} +{"label":"The Three Burials of Melquiades Estrada","description":"In Texas nearby the border of Mexico, border patrolman Mike Norton mistakenly kills the Mexican cowboy Melquiades Estrada and buries him in the desert. When Melquiades's body is found one week later, his best friend, the ranch foreman Pete Perkins, claims the body to fulfill his promise to bury Melquiades in his hometown Jimenez and presses the local sheriff Belmont to find the killer.","id":"8053","runtime":116,"imdbId":"tt0419294","version":254,"lastModified":"1301902675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c3d13215e73d60362000008\/the-three-burials-of-melquiades-estrada-mid.jpg","studio":"The Javelina Film Company","genre":"Action","title":"The Three Burials of Melquiades Estrada","releaseDate":1105574400000,"language":"en","type":"Movie","_key":"31514"} +{"label":"The Imaginarium of Doctor Parnassus","description":"A traveling theater company gives its audience much more than they were expecting.","id":"8054","runtime":122,"imdbId":"tt1054606","trailer":"http:\/\/www.youtube.com\/watch?v=OFxqw0jbC2Y","homepage":"http:\/\/doctorparnassus.com\/","version":368,"lastModified":"1301901278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4c2060377b9aa13123000145\/the-imaginarium-of-doctor-parnassus-mid.jpg","studio":"Davis-Films","genre":"Fantasy","title":"The Imaginarium of Doctor Parnassus","releaseDate":1255219200000,"language":"en","type":"Movie","_key":"31515"} +{"label":"Lily Cole","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19d\/4c398aa57b9aa10edd00019d\/lily-cole-profile.jpg","version":28,"birthday":"579996000000","id":"53688","lastModified":"1301901118000","name":"Lily Cole","type":"Person","_key":"31516"} +{"label":"The Reader","description":"Tells the story of Michael Berg, a German lawyer who as a teenager in the late 1950s had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that at the expense of her freedom.","id":"8055","runtime":124,"imdbId":"tt0976051","trailer":"http:\/\/www.youtube.com\/watch?v=sFd488Dg0KU","version":265,"lastModified":"1301998170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4c\/4d6f8c447b9aa12fe9000d4c\/the-reader-mid.jpg","studio":"Mirage Enterprises","genre":"Drama","title":"The Reader","releaseDate":1228867200000,"language":"en","type":"Movie","_key":"31517"} +{"label":"Jeanette Hain","version":33,"id":"49018","lastModified":"1301901455000","name":"Jeanette Hain","type":"Person","_key":"31518"} +{"label":"Train de vie","description":"In 1941, the inhabitants of a small Jewish village in Central Europe organize a fake deportation train so that they can escape the Nazis and flee to Palestine.","id":"8056","runtime":103,"imdbId":"tt0170705","version":119,"lastModified":"1301904639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5a\/4bc92018017a3c57fe00cb5a\/train-de-vie-mid.jpg","studio":"Canal Plus","genre":"Comedy","title":"Train de vie","releaseDate":905904000000,"language":"en","type":"Movie","_key":"31519"} +{"label":"Agathe de La Fontaine","version":22,"id":"53903","lastModified":"1301901842000","name":"Agathe de La Fontaine","type":"Person","_key":"31520"} +{"label":"Johan Leysen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fb\/4c1bfc2b5e73d6793b0001fb\/johan-leysen-profile.jpg","version":27,"id":"53904","lastModified":"1301901465000","name":"Johan Leysen","type":"Person","_key":"31521"} +{"label":"Bruno Abraham-Kremer","version":21,"id":"53906","lastModified":"1301902098000","name":"Bruno Abraham-Kremer","type":"Person","_key":"31522"} +{"label":"Marie-Jos\u00e9 Nat","version":21,"id":"53907","lastModified":"1301902369000","name":"Marie-Jos\u00e9 Nat","type":"Person","_key":"31523"} +{"label":"Love Kills","description":"No overview found.","id":"8057","runtime":0,"version":756,"lastModified":"1302020567000","genre":"Comedy","title":"Love Kills","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"31524"} +{"label":"Tor Iben","version":20,"id":"53689","lastModified":"1301901959000","name":"Tor Iben","type":"Person","_key":"31525"} +{"label":"Felix Isenb\u00fcgel","version":16,"id":"53690","lastModified":"1301901996000","name":"Felix Isenb\u00fcgel","type":"Person","_key":"31526"} +{"label":"Pedro Stirner","version":16,"id":"53691","lastModified":"1301902375000","name":"Pedro Stirner","type":"Person","_key":"31527"} +{"label":"Christiane Mudra","version":16,"id":"53692","lastModified":"1301901959000","name":"Christiane Mudra","type":"Person","_key":"31528"} +{"label":"Elvira M\u00f6ller","version":17,"id":"53693","lastModified":"1301901652000","name":"Elvira M\u00f6ller","type":"Person","_key":"31529"} +{"label":"Angelika Warning","version":16,"id":"53694","lastModified":"1301901959000","name":"Angelika Warning","type":"Person","_key":"31530"} +{"label":"Zwei, Drei Leben","description":"No overview found.","id":"8058","runtime":0,"version":30,"lastModified":"1300978557000","title":"Zwei, Drei Leben","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"31531"} +{"label":"Yarin Bylinca","version":15,"id":"53696","lastModified":"1301902098000","name":"Yarin Bylinca","type":"Person","_key":"31532"} +{"label":"Carsten Bauhaus","version":15,"id":"53697","lastModified":"1301901538000","name":"Carsten Bauhaus","type":"Person","_key":"31533"} +{"label":"Robert Hagedorn","version":15,"id":"53698","lastModified":"1301902098000","name":"Robert Hagedorn","type":"Person","_key":"31534"} +{"label":"Paula Melina M\u00f6ller","version":15,"id":"53699","lastModified":"1301901885000","name":"Paula Melina M\u00f6ller","type":"Person","_key":"31535"} +{"label":"Alexandra von Maravic","version":15,"id":"53700","lastModified":"1301901885000","name":"Alexandra von Maravic","type":"Person","_key":"31536"} +{"label":"Daniel Cilento","version":15,"id":"53701","lastModified":"1301901885000","name":"Daniel Cilento","type":"Person","_key":"31537"} +{"label":"Frank C. M\u00fcller","version":21,"id":"5640","lastModified":"1301901400000","name":"Frank C. M\u00fcller","type":"Person","_key":"31538"} +{"label":"Libero Ingala","version":15,"id":"53702","lastModified":"1301901885000","name":"Libero Ingala","type":"Person","_key":"31539"} +{"label":"Oscar Pag\u00e9s","version":15,"id":"53703","lastModified":"1301901732000","name":"Oscar Pag\u00e9s","type":"Person","_key":"31540"} +{"label":"Marc Brandenburg","version":15,"id":"53704","lastModified":"1301901885000","name":"Marc Brandenburg","type":"Person","_key":"31541"} +{"label":"Andreas Lang","version":15,"id":"53705","lastModified":"1301901885000","name":"Andreas Lang","type":"Person","_key":"31542"} +{"label":"Paula Lenz","version":15,"id":"53706","lastModified":"1301901732000","name":"Paula Lenz","type":"Person","_key":"31543"} +{"label":"J\u00f6rg Burdorf","version":15,"id":"53707","lastModified":"1301901885000","name":"J\u00f6rg Burdorf","type":"Person","_key":"31544"} +{"label":"Zeit der Fische","description":"No overview found.","id":"8059","runtime":86,"imdbId":"tt1138174","homepage":"http:\/\/www.zeit-der-fische.de\/","version":59,"lastModified":"1301903854000","studio":"Luna Filmproduktion","genre":"Drama","title":"Zeit der Fische","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"31545"} +{"label":"Janusz Kocaj","version":20,"id":"53721","lastModified":"1301901615000","name":"Janusz Kocaj","type":"Person","_key":"31546"} +{"label":"Christian Bl\u00fcmel","version":22,"id":"44332","lastModified":"1301901460000","name":"Christian Bl\u00fcmel","type":"Person","_key":"31547"} +{"label":"Joachim L\u00e4tsch","version":19,"id":"53722","lastModified":"1301902278000","name":"Joachim L\u00e4tsch","type":"Person","_key":"31548"} +{"label":"Klaus R\u00e4tsch","version":19,"id":"53723","lastModified":"1301902277000","name":"Klaus R\u00e4tsch","type":"Person","_key":"31549"} +{"label":"Heiko Aufdermauer","version":21,"id":"53724","lastModified":"1301901476000","name":"Heiko Aufdermauer","type":"Person","_key":"31550"} +{"label":"Married Life","description":"The late 1940s. Richard Langley, a bachelor playboy, narrates a story that starts when his best friend, Harry Allen, invites him to lunch to tell Richard he's in love. Trouble is, Harry's already married to Pat; he worries Pat would be hurt too deeply by a divorce. Then, Harry's new love, Kay, joins them. Richard is smitten, so when he finds out that Pat may be in love with someone else.","id":"8060","runtime":90,"imdbId":"tt0804505","trailer":"http:\/\/www.youtube.com\/watch?v=486","homepage":"http:\/\/www.sonyclassics.com\/marriedlife\/","version":238,"lastModified":"1301903490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/769\/4c6efe595e73d65f7c000769\/married-life-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Married Life","releaseDate":1189555200000,"language":"en","type":"Movie","_key":"31551"} +{"label":"Ira Sachs","version":32,"id":"53708","lastModified":"1301901643000","name":"Ira Sachs","type":"Person","_key":"31552"} +{"label":"Rachel McAdams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4bc9f370017a3c0e8b000014\/rachel-mcadams-profile.jpg","biography":"Canadian actress Rachel McAdams was born on November 17,\n1978 in London, Ontario. Rachel\u2019s parents Lance and Sandra encouraged her\ntalent in performing arts at an early age when she started figure skating at 4, and later acting at 12.<span style=\"mso-spacerun:yes\">  <\/span>Throughout her\neducation Rachel starred in numerous student productions before ultimately earning\nher BFA in Theater at York University in 2001.<o:p><\/o:p><\/p>\n\nAlthough Rachel\u2019s first major casting was her lead role in\nt","version":89,"id":"53714","lastModified":"1301904046000","name":"Rachel McAdams","type":"Person","_key":"31553"} +{"label":"Annabel Kershaw","version":23,"id":"53715","lastModified":"1301902277000","name":"Annabel Kershaw","type":"Person","_key":"31554"} +{"label":"Sheila Paterson","version":24,"id":"53716","lastModified":"1301901814000","name":"Sheila Paterson","type":"Person","_key":"31555"} +{"label":"Erin Boyes","version":21,"id":"53718","lastModified":"1301902098000","name":"Erin Boyes","type":"Person","_key":"31556"} +{"label":"Elijah St. Germain","version":21,"id":"53719","lastModified":"1301902098000","name":"Elijah St. Germain","type":"Person","_key":"31557"} +{"label":"Timothy Webber","version":37,"id":"53720","lastModified":"1301901564000","name":"Timothy Webber","type":"Person","_key":"31558"} +{"label":"Iceberg","description":"This film is in pre-production","id":"8061","runtime":0,"version":198,"lastModified":"1300978557000","genre":"Action","title":"Iceberg","releaseDate":1228608000000,"language":"en","type":"Movie","_key":"31559"} +{"label":"Sieben Mulden und eine Leiche","description":"No overview found.","id":"8062","runtime":84,"imdbId":"tt1027744","homepage":"http:\/\/www.messiemother.com\/","version":46,"lastModified":"1301904475000","studio":"Schweizer Fernsehen","genre":"Documentary","title":"Sieben Mulden und eine Leiche","releaseDate":1175731200000,"language":"en","type":"Movie","_key":"31560"} +{"label":"Thomas Haemmerli","version":24,"id":"53741","lastModified":"1301901651000","name":"Thomas Haemmerli","type":"Person","_key":"31561"} +{"label":"Erik Haemmerli","version":21,"id":"53742","lastModified":"1301901996000","name":"Erik Haemmerli","type":"Person","_key":"31562"} +{"label":"Bruna Haemmerli","version":16,"id":"53743","lastModified":"1301901959000","name":"Bruna Haemmerli","type":"Person","_key":"31563"} +{"label":"J\u00f6rg Haemmerli","version":16,"id":"53744","lastModified":"1301902154000","name":"J\u00f6rg Haemmerli","type":"Person","_key":"31564"} +{"label":"Isolde Meurer von Infeld","version":16,"id":"53745","lastModified":"1301902341000","name":"Isolde Meurer von Infeld","type":"Person","_key":"31565"} +{"label":"Mark Divo","version":20,"id":"53746","lastModified":"1301902341000","name":"Mark Divo","type":"Person","_key":"31566"} +{"label":"The Red Tent","description":"The commander of a failed 1928 Arctic airship expedition is remembering the events of the \"Italia\" airship flight...","id":"8063","runtime":158,"imdbId":"tt0067315","version":88,"lastModified":"1301417340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad3\/4cfafc505e73d6299d002ad3\/krasnaya-palatka-mid.jpg","genre":"Action","title":"The Red Tent","releaseDate":-777600000,"language":"en","type":"Movie","_key":"31567"} +{"label":"Chiko","description":"This is the story of Isa, who grows up in a Hamburg suburb.\nIt might be one of the world's richest cities but every beast\nhas its belly and here, in the very underbelly, Chiko lives in\na world where violence, staking and keeping a claim, and drug\ntaking are the norm. Where down is not an option, Chiko is\ndetermined to rise to the top, whatever and whomever it costs.","id":"8064","runtime":92,"imdbId":"tt1132474","trailer":"http:\/\/www.youtube.com\/watch?v=2755","homepage":"http:\/\/www.chiko-derfilm.de\/","version":78,"lastModified":"1301903450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc9201f017a3c57fe00cb78\/chiko-mid.jpg","studio":"Coraz\u00f3n International","genre":"Drama","title":"Chiko","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"31568"} +{"label":"Volkan \u00d6zcan","version":20,"id":"53842","lastModified":"1301901482000","name":"Volkan \u00d6zcan","type":"Person","_key":"31569"} +{"label":"Reyhan Sahin","version":18,"id":"53843","lastModified":"1301901922000","name":"Reyhan Sahin","type":"Person","_key":"31570"} +{"label":"Lilay Huser","version":20,"id":"53844","lastModified":"1301901922000","name":"Lilay Huser","type":"Person","_key":"31571"} +{"label":"Philipp Baltus","version":23,"id":"53845","lastModified":"1301901922000","name":"Philipp Baltus","type":"Person","_key":"31572"} +{"label":"Pheline Roggan","version":17,"id":"53846","lastModified":"1301901757000","name":"Pheline Roggan","type":"Person","_key":"31573"} +{"label":"\u00d6zg\u00fcr Yildirim","version":24,"id":"53847","lastModified":"1301901482000","name":"\u00d6zg\u00fcr Yildirim","type":"Person","_key":"31574"} +{"label":"21","description":"Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who a","id":"8065","runtime":123,"imdbId":"tt0478087","trailer":"http:\/\/www.youtube.com\/watch?v=2v9z9EACSnU","homepage":"http:\/\/www.sonypictures.com\/movies\/21\/","version":354,"lastModified":"1301901228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09e\/4cef15bb7b9aa13b9d00009e\/21-mid.jpg","studio":"Michael De Luca Productions","genre":"Crime","title":"21","releaseDate":1204848000000,"language":"en","tagline":"They proved the Vegas Blackjack System was beatable...by beating the hell out of it.","type":"Movie","_key":"31575"} +{"label":"Aaron Yoo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/424\/4cf3a19e7b9aa149c9000424\/aaron-yoo-profile.jpg","version":56,"id":"54247","lastModified":"1301904080000","name":"Aaron Yoo","type":"Person","_key":"31576"} +{"label":"Jacob Pitts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ae\/4bf805f4017a3c77320004ae\/jacob-pitts-profile.jpg","version":42,"id":"54414","lastModified":"1301901098000","name":"Jacob Pitts","type":"Person","_key":"31577"} +{"label":"Josh Gad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ab\/4d7205b57b9aa1295f0005ab\/josh-gad-profile.jpg","version":31,"id":"54415","lastModified":"1301901101000","name":"Josh Gad","type":"Person","_key":"31578"} +{"label":"Sam Golzari","version":25,"id":"54416","lastModified":"1301901109000","name":"Sam Golzari","type":"Person","_key":"31579"} +{"label":"Ben Campbell","version":24,"id":"54477","lastModified":"1301901268000","name":"Ben Campbell","type":"Person","_key":"31580"} +{"label":"Stay","description":"After a car accident on a bridge, psychiatrist Sam Foster assumes the case of the survivor Henry Letham, who apparently torched the car and promises to commit suicide three days later. Sam decides to investigate what happened with Henry, and feels he is losing his grip on reality with his findings. He asks his girlfriend Lila to help himself to stay lucid, while trying to solve Henry's case.","id":"8066","runtime":99,"imdbId":"tt0371257","version":280,"lastModified":"1301904073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc0\/4bc92029017a3c57fe00cbc0\/stay-mid.jpg","studio":"New Regency Pictures","genre":"Thriller","title":"Stay","releaseDate":1127520000000,"language":"en","type":"Movie","_key":"31581"} +{"label":"Elizabeth Reaser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d6d\/4cbb2d747b9aa138da000d6d\/elizabeth-reaser-profile.jpg","version":89,"birthday":"172018800000","id":"53755","birthplace":"Bloomfield, Michigan, USA","lastModified":"1301901197000","name":"Elizabeth Reaser","type":"Person","_key":"31582"} +{"label":"A Life Less Ordinary","description":"Ewan McGregor stars as a cleaning man in L.A. who takes his boss's daughter hostage after being fired and replaced by a robot. Two \"angels\" who are in charge of human relationships on earth, offer some unsolicited help to bring this unlikely couple together.","id":"8067","runtime":103,"imdbId":"tt0119535","trailer":"http:\/\/www.youtube.com\/watch?v=tYJGZ4LMv5Y","version":258,"lastModified":"1301903178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcd\/4bc9202c017a3c57fe00cbcd\/a-life-less-ordinary-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"A Life Less Ordinary","releaseDate":877651200000,"language":"en","type":"Movie","_key":"31583"} +{"label":"Christopher Gorham","version":25,"id":"53761","lastModified":"1301901559000","name":"Christopher Gorham","type":"Person","_key":"31584"} +{"label":"Anne Cullimore Decker","version":23,"id":"53762","lastModified":"1301902151000","name":"Anne Cullimore Decker","type":"Person","_key":"31585"} +{"label":"Desperado","description":"We pick up the story as a continuation of \"El Mariachi,\" where an itinerant musician, looking for work, gets mistaken for a hitman and thereby entangled in a web of love, corruption, and death. This time, he is out to avenge the murder of his lover and the maiming of his fretting hand, which occurred at the end of the earlier movie. ","id":"8068","runtime":106,"imdbId":"tt0112851","trailer":"http:\/\/www.youtube.com\/watch?v=xZdZv3kT9xk","version":747,"lastModified":"1301901492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4d3f98d85e73d622cb005215\/desperado-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Desperado","releaseDate":799286400000,"language":"en","type":"Movie","_key":"31586"} +{"label":"Tito Larriva","version":33,"id":"53763","lastModified":"1301901254000","name":"Tito Larriva","type":"Person","_key":"31587"} +{"label":"Angel Aviles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/311\/4d53396e7b9aa13aba012311\/angel-aviles-profile.jpg","version":33,"id":"53764","lastModified":"1302062741000","name":"Angel Aviles","type":"Person","_key":"31588"} +{"label":"Abraham Verduzco","version":27,"id":"53765","lastModified":"1301901538000","name":"Abraham Verduzco","type":"Person","_key":"31589"} +{"label":"Albert Michel Jr.","version":24,"id":"53766","lastModified":"1301901477000","name":"Albert Michel Jr.","type":"Person","_key":"31590"} +{"label":"David Alvarado","version":30,"id":"6897","lastModified":"1301901339000","name":"David Alvarado","type":"Person","_key":"31591"} +{"label":"Barbarella","description":"\"Barbarella\" tells the story of a female mercenary who roams across the universe in a distant future, undertaking missions that require her physical fearlessness, ingenuity and sensuality. In travels that span galaxies known and unknown, \"Barbarella\" will challenge tradition, startle the senses and take audiences on an epic adventure of discovery and wonder. ","id":"8069","runtime":98,"imdbId":"tt0062711","trailer":"http:\/\/www.youtube.com\/watch?v=SsPkQt2H4YQ","version":203,"lastModified":"1301903140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08c\/4c13fd9d7b9aa1045900008c\/barbarella-mid.jpg","studio":"Dino de Laurentiis Cinematografica","genre":"Action","title":"Barbarella","releaseDate":-38707200000,"language":"en","tagline":"See Barbarella do her thing!","type":"Movie","_key":"31592"} +{"label":"Roger Vadim","version":34,"id":"53767","lastModified":"1301901556000","name":"Roger Vadim","type":"Person","_key":"31593"} +{"label":"Anita Pallenberg","version":26,"id":"53768","lastModified":"1301901988000","name":"Anita Pallenberg","type":"Person","_key":"31594"} +{"label":"Catherine Chevallier","version":25,"id":"53769","lastModified":"1301902391000","name":"Catherine Chevallier","type":"Person","_key":"31595"} +{"label":"Marie Therese Chevallier","version":22,"id":"53770","lastModified":"1301902030000","name":"Marie Therese Chevallier","type":"Person","_key":"31596"} +{"label":"The Green Room","description":"Based on the Henry James short story \"The Altar of the Dead\", in which a man becomes obsessed with the many dead people in his life and builds a memorial to honor them. This film is also based on other short story by Henry James, \"The Beast of the Jungle\". It would be the last film Truffaut would act in.","id":"8070","runtime":94,"imdbId":"tt0077315","version":534,"lastModified":"1301903927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/632\/4d78c1cd7b9aa157b4000632\/la-chambre-verte-mid.jpg","studio":"Les Films du Carrosse","genre":"Drama","title":"The Green Room","releaseDate":260582400000,"language":"en","type":"Movie","_key":"31597"} +{"label":"Patrick Mal\u00e9on","version":22,"id":"53772","lastModified":"1301902201000","name":"Patrick Mal\u00e9on","type":"Person","_key":"31598"} +{"label":"Tout va bien","description":"Godard examines the structure of movies, relationships and revolutions through the life of a couple in Paris.","id":"8071","runtime":95,"imdbId":"tt0069398","version":131,"lastModified":"1301906674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c30\/4bc92039017a3c57fe00cc30\/tout-va-bien-mid.jpg","studio":"Anouchka Films","genre":"Drama","title":"Tout va bien","releaseDate":73267200000,"language":"en","type":"Movie","_key":"31599"} +{"label":"Elizabeth Chauvin","version":15,"id":"146532","lastModified":"1301902547000","name":"Elizabeth Chauvin","type":"Person","_key":"31600"} +{"label":"Castel Casti","version":15,"id":"149007","lastModified":"1301903107000","name":"Castel Casti","type":"Person","_key":"31601"} +{"label":"\u00c9ric Chartier","version":15,"id":"149008","lastModified":"1301903107000","name":"\u00c9ric Chartier","type":"Person","_key":"31602"} +{"label":"Yves Gabrielli","version":15,"id":"149009","lastModified":"1301903107000","name":"Yves Gabrielli","type":"Person","_key":"31603"} +{"label":"Alphaville","description":"A cockeyed fusion of science fiction, pulp characters, and surrealist poetry, Godard\u2019s irreverent journey to the mysterious Alphaville remains one of the least conventional films of all time. Eddie Constantine stars as intergalactic hero Lemmy Caution, on a mission to kill the inventor of fascist computer Alpha 60.","id":"8072","runtime":100,"imdbId":"tt0058898","version":153,"lastModified":"1301903630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c39\/4bc9203c017a3c57fe00cc39\/alphaville-mid.jpg","studio":"Athos Films","genre":"Indie","title":"Alphaville","releaseDate":-147052800000,"language":"en","type":"Movie","_key":"31604"} +{"label":"Band Of Outsiders","description":"Two crooks with a fondness for old Hollywood B-movies convince a languages student to help them commit a robbery. ","id":"8073","runtime":97,"imdbId":"tt0057869","version":75,"lastModified":"1301904680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c46\/4bc9203e017a3c57fe00cc46\/bande-a-part-mid.jpg","studio":"Anouchka Films","genre":"Drama","title":"Band Of Outsiders","releaseDate":-170640000000,"language":"en","type":"Movie","_key":"31605"} +{"label":"2 or 3 Things I Know About Her","description":"The story of a housewife who must work the streets to earn an extra living - and who becomes the starting point for a larger socio-political essay.","id":"8074","runtime":100,"imdbId":"tt0060304","version":173,"lastModified":"1301905163000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1c\/4d1cf1545e73d66598001d1c\/2-ou-3-choses-que-je-sais-d-elle-mid.jpg","studio":"Argos Films S.A.","genre":"Comedy","title":"2 or 3 Things I Know About Her","releaseDate":-88214400000,"language":"en","type":"Movie","_key":"31606"} +{"label":"Joseph Gehrard","version":22,"id":"53911","lastModified":"1301902192000","name":"Joseph Gehrard","type":"Person","_key":"31607"} +{"label":"Roger Montsoret","version":22,"id":"53912","lastModified":"1301902197000","name":"Roger Montsoret","type":"Person","_key":"31608"} +{"label":"Jean Narboni","version":22,"id":"53913","lastModified":"1301902376000","name":"Jean Narboni","type":"Person","_key":"31609"} +{"label":"Week End","description":"A supposedly idyllic weekend trip to the countryside turns into a\nnever-ending nightmare of traffic jams, revolution, cannibalism\nand murder as French bourgeois society starts to collapse under\nthe weight of its own consumer preoccupations.\n","id":"8075","runtime":105,"imdbId":"tt0062480","version":80,"lastModified":"1301904679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4b\/4bc9203e017a3c57fe00cc4b\/le-week-end-mid.jpg","studio":"Cinecidi","genre":"Drama","title":"Week End","releaseDate":-63417600000,"language":"en","type":"Movie","_key":"31610"} +{"label":"Jean Eustache","version":22,"id":"53914","lastModified":"1301902181000","name":"Jean Eustache","type":"Person","_key":"31611"} +{"label":"Michel Cournot","version":21,"id":"53915","lastModified":"1301902098000","name":"Michel Cournot","type":"Person","_key":"31612"} +{"label":"Tuvalu","description":"No overview found.","id":"8076","runtime":92,"imdbId":"tt0162023","version":136,"lastModified":"1301904700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29e\/4c6103727b9aa172dc00029e\/tuvalu-mid.jpg","studio":"Veit Helmer-Filmproduktion","genre":"Comedy","title":"Tuvalu","releaseDate":942969600000,"language":"en","type":"Movie","_key":"31613"} +{"label":"Philippe Clay","version":23,"id":"53776","lastModified":"1301902207000","name":"Philippe Clay","type":"Person","_key":"31614"} +{"label":"Terrence Gillespie","version":21,"id":"53777","lastModified":"1301902341000","name":"Terrence Gillespie","type":"Person","_key":"31615"} +{"label":"E.J. Callahan","version":21,"id":"53778","lastModified":"1301902341000","name":"E.J. Callahan","type":"Person","_key":"31616"} +{"label":"Djoko Rosic","version":26,"id":"53779","lastModified":"1301902218000","name":"Djoko Rosic","type":"Person","_key":"31617"} +{"label":"Catalina Murgea","version":21,"id":"53780","lastModified":"1301902341000","name":"Catalina Murgea","type":"Person","_key":"31618"} +{"label":"Todor Georgiev","version":21,"id":"53781","lastModified":"1301902341000","name":"Todor Georgiev","type":"Person","_key":"31619"} +{"label":"Alien 3","description":"After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.","id":"8077","runtime":138,"imdbId":"tt0103644","trailer":"http:\/\/www.youtube.com\/watch?v=l1v70QdYCUs","version":610,"lastModified":"1301901008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c65\/4bc92041017a3c57fe00cc65\/alien-3-mid.jpg","studio":"20th Century Fox","genre":"Science Fiction","title":"Alien 3","releaseDate":706492800000,"language":"en","tagline":"The bitch is back","type":"Movie","_key":"31620"} +{"label":"Ralph Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f7\/4cf1c3da5e73d61e3f0002f7\/ralph-brown-profile.jpg","version":50,"id":"53916","lastModified":"1301901424000","name":"Ralph Brown","type":"Person","_key":"31621"} +{"label":"Paul McGann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/101\/4bee497a017a3c458a000101\/paul-mcgann-profile.jpg","version":41,"birthday":"-319770000000","id":"47654","birthplace":"Liverpool, England","lastModified":"1301901801000","name":"Paul McGann","type":"Person","_key":"31622"} +{"label":"Tom Woodruff Jr.","version":28,"id":"109870","lastModified":"1301901496000","name":"Tom Woodruff Jr.","type":"Person","_key":"31623"} +{"label":"Carl Chase","version":40,"id":"127166","lastModified":"1301901577000","name":"Carl Chase","type":"Person","_key":"31624"} +{"label":"Christopher John Fields","version":23,"id":"145531","lastModified":"1301902313000","name":"Christopher John Fields","type":"Person","_key":"31625"} +{"label":"Deobia Oparei","version":32,"id":"58758","lastModified":"1301901373000","name":"Deobia Oparei","type":"Person","_key":"31626"} +{"label":"Paul Brennen","version":23,"id":"145532","lastModified":"1301902369000","name":"Paul Brennen","type":"Person","_key":"31627"} +{"label":"Clive Mantle","version":23,"id":"145533","lastModified":"1301902272000","name":"Clive Mantle","type":"Person","_key":"31628"} +{"label":"Hi Ching","version":23,"id":"145534","lastModified":"1301902313000","name":"Hi Ching","type":"Person","_key":"31629"} +{"label":"Leon Herbert","version":23,"id":"145536","lastModified":"1301902209000","name":"Leon Herbert","type":"Person","_key":"31630"} +{"label":"Danielle Edmond","version":23,"id":"145537","lastModified":"1301902209000","name":"Danielle Edmond","type":"Person","_key":"31631"} +{"label":"Alien Resurrection","description":"Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises \u2026 as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.","id":"8078","runtime":109,"imdbId":"tt0118583","trailer":"http:\/\/www.youtube.com\/watch?v=S1myB44Tjiw","version":396,"lastModified":"1301901027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4c9526777b9aa10d5800013f\/alien-resurrection-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Alien Resurrection","releaseDate":880502400000,"language":"en","tagline":"It's already too late.","type":"Movie","_key":"31632"} +{"label":"Raymond Cruz","version":38,"id":"58650","lastModified":"1302036098000","name":"Raymond Cruz","type":"Person","_key":"31633"} +{"label":"Om Shanti Om","description":"In the 1970s, Om, an aspiring actor, is murdered, but is immediately reincarnated into the present day. He attempts to discover the mystery of his demise and find Shanti, the love of his previous life.","id":"8079","runtime":170,"imdbId":"tt1024943","trailer":"http:\/\/www.youtube.com\/watch?v=1157","version":277,"lastModified":"1301902601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc92048017a3c57fe00cca1\/om-shanti-om-mid.jpg","studio":"Red Chillies Entertainment","genre":"Comedy","title":"Om Shanti Om","releaseDate":1194393600000,"language":"en","tagline":"For some dreams, one lifetime is not enough","type":"Movie","_key":"31634"} +{"label":"Farah Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/109\/4c4f011e7b9aa1326b000109\/farah-khan-profile.jpg","version":28,"id":"8311","lastModified":"1301901396000","name":"Farah Khan","type":"Person","_key":"31635"} +{"label":"Deepika Padukone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11e\/4bd0bbd4017a3c63ea00011e\/deepika-padukone-profile.jpg","biography":"Deepika Padukone (Konkani:\u0ca6\u0cc0\u0caa\u0cbf\u0c95\u0cbe \u0caa\u0ca1\u0cc1\u0c95\u0ccb\u0ca3\u0cc6)) is an Indian actress and a former model. Padukone made her acting debut with the 2006 Kannada film Aishwarya. The following year, she made her Hindi film debut with the blockbuster Om Shanti Om which earned her the Filmfare Best Female Debut Award.\n\nPadukone was born in Copenhagen, Denmark. Her family moved to Bangalore, India, when she was eleven months old. Padukone is of Mangalorean origin, and her mother tongue is Konkani. Her lineage hails from Pad","version":34,"birthday":"505263600000","id":"53975","birthplace":"Copenhagen, Denmark","lastModified":"1301901325000","name":"Deepika Padukone","type":"Person","_key":"31636"} +{"label":"Shreyas Talpade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4c4f01bb7b9aa1326e000128\/shreyas-talpade-profile.jpg","version":38,"id":"53974","lastModified":"1301901458000","name":"Shreyas Talpade","type":"Person","_key":"31637"} +{"label":"Nitish Pandey","version":21,"id":"53976","lastModified":"1301902388000","name":"Nitish Pandey","type":"Person","_key":"31638"} +{"label":"Vishal Dadlani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03e\/4c50b1b85e73d632bf00003e\/vishal-dadlani-profile.jpg","version":28,"id":"53977","lastModified":"1301902057000","name":"Vishal Dadlani","type":"Person","_key":"31639"} +{"label":"Subhash Ghai","version":23,"id":"53978","lastModified":"1301902322000","name":"Subhash Ghai","type":"Person","_key":"31640"} +{"label":"Shawar Ali","version":19,"id":"53979","lastModified":"1301902390000","name":"Shawar Ali","type":"Person","_key":"31641"} +{"label":"Yuvika Chaudhry","version":18,"id":"53980","lastModified":"1301901938000","name":"Yuvika Chaudhry","type":"Person","_key":"31642"} +{"label":"Juhi Chawla","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4c4f9d125e73d63038000071\/juhi-chawla-profile.jpg","version":46,"id":"35810","lastModified":"1301901420000","name":"Juhi Chawla","type":"Person","_key":"31643"} +{"label":"Suspect Zero","description":"FBI Agent Thomas Mackelway and Agent Fran Kulok are put on the trail of Ben O'Ryan, a serial killer who targets other serial killers. As the investigation proceeds, the agents begin to become aware of the possible existence of \"Suspect Zero\", a mythical \"super serial killer\" responsible for hundreds of deaths across all 50 states who leaves no evidence behind to link his crimes together.","id":"8080","runtime":96,"imdbId":"tt0324127","version":241,"lastModified":"1302039385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/299\/4ce841825e73d6258b000299\/suspect-zero-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Suspect Zero","releaseDate":1093564800000,"language":"en","type":"Movie","_key":"31644"} +{"label":"The Blade Itself","description":"No overview found.","id":"8085","runtime":0,"imdbId":"tt1201137","version":68,"lastModified":"1301905418000","genre":"Drama","title":"The Blade Itself","language":"en","type":"Movie","_key":"31645"} +{"label":"Justice League of America","description":"No overview found.","id":"8086","runtime":0,"version":53,"lastModified":"1301905712000","studio":"Warner Bros. Pictures","genre":"Action","title":"Justice League of America","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"31646"} +{"label":"Armie Hammer","version":51,"id":"53807","lastModified":"1302061274000","name":"Armie Hammer","type":"Person","_key":"31647"} +{"label":"Megan Gale","version":17,"id":"53808","lastModified":"1301901511000","name":"Megan Gale","type":"Person","_key":"31648"} +{"label":"Broken Embraces","description":"A man writes, lives and loves in darkness. Fourteen years before, he was in a brutal car crash on the island of Lanzarote. In the accident, he not only lost his sight, he also lost Lena, the love of his life. Broken Embraces is shot in the style of a hard-boiled 40s and 50s American film noir.","id":"8088","runtime":128,"imdbId":"tt0913425","homepage":"http:\/\/www.losabrazosrotos.com\/","version":340,"lastModified":"1302039352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ced\/4bc92053017a3c57fe00cced\/los-abrazos-rotos-mid.jpg","genre":"Drama","title":"Broken Embraces","releaseDate":1235865600000,"language":"en","type":"Movie","_key":"31649"} +{"label":"Jos\u00e9 Luis G\u00f3mez","version":25,"id":"72631","lastModified":"1301901455000","name":"Jos\u00e9 Luis G\u00f3mez","type":"Person","_key":"31650"} +{"label":"Rub\u00e9n Ochandiano","version":19,"id":"102221","lastModified":"1301902191000","name":"Rub\u00e9n Ochandiano","type":"Person","_key":"31651"} +{"label":"Carmen Machi","version":25,"id":"102222","lastModified":"1301902216000","name":"Carmen Machi","type":"Person","_key":"31652"} +{"label":"Kira Mir\u00f3","version":23,"id":"102223","lastModified":"1301902047000","name":"Kira Mir\u00f3","type":"Person","_key":"31653"} +{"label":"Carlos Sampedro","version":18,"id":"102224","lastModified":"1301902308000","name":"Carlos Sampedro","type":"Person","_key":"31654"} +{"label":"Ram\u00f3n Pons","version":20,"id":"102225","lastModified":"1301902712000","name":"Ram\u00f3n Pons","type":"Person","_key":"31655"} +{"label":"Carlos Leal","version":27,"id":"64014","lastModified":"1301901699000","name":"Carlos Leal","type":"Person","_key":"31656"} +{"label":"Chema Ruiz","version":18,"id":"102226","lastModified":"1301902651000","name":"Chema Ruiz","type":"Person","_key":"31657"} +{"label":"Dani Mart\u00edn","version":19,"id":"102227","lastModified":"1301902528000","name":"Dani Mart\u00edn","type":"Person","_key":"31658"} +{"label":"Asier Etxeandia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a99\/4d036ce05e73d621a2001a99\/asier-etxeandia-profile.jpg","version":24,"id":"102228","lastModified":"1301902352000","name":"Asier Etxeandia","type":"Person","_key":"31659"} +{"label":"Jons Pappila","version":18,"id":"102229","lastModified":"1301901937000","name":"Jons Pappila","type":"Person","_key":"31660"} +{"label":"Decidme c\u00f3mo es un \u00e1rbol","description":"No overview found.","id":"8089","runtime":0,"imdbId":"tt1189315","version":28,"lastModified":"1301907418000","genre":"Drama","title":"Decidme c\u00f3mo es un \u00e1rbol","language":"en","type":"Movie","_key":"31661"} +{"label":"Untraceable","description":"FBI agent Jennifer Marsh is tasked with hunting down a seemingly untraceable serial killer who posts live videos of his victims on the Internet. As time runs out, the cat and mouse chase becomes more personal","id":"8090","runtime":100,"imdbId":"tt0880578","trailer":"http:\/\/www.youtube.com\/watch?v=oIqnESZW0qc","homepage":"http:\/\/www.sonypictures.com\/movies\/untraceable\/","version":384,"lastModified":"1301901640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/003\/4bcd472d017a3c6047000003\/untraceable-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Untraceable","releaseDate":1200960000000,"language":"en","type":"Movie","_key":"31662"} +{"label":"Colin Hanks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b3\/4c8cefda5e73d6068e0004b3\/colin-hanks-profile.jpg","version":57,"id":"3492","lastModified":"1301901161000","name":"Colin Hanks","type":"Person","_key":"31663"} +{"label":"Mary Beth Hurt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c5\/4c7975c35e73d613d70001c5\/mary-beth-hurt-profile.jpg","version":45,"id":"54782","lastModified":"1301901569000","name":"Mary Beth Hurt","type":"Person","_key":"31664"} +{"label":"Peter Lewis","version":22,"id":"54783","lastModified":"1301901476000","name":"Peter Lewis","type":"Person","_key":"31665"} +{"label":"Alien Quadrilogy","description":"A science fiction horror film franchise, focusing on Lieutenant Ellen Ripley (Sigourney Weaver) and her battle with an extraterrestrial lifeform, commonly referred to as \"the Alien\". Produced by 20th Century Fox, the series started with the 1979 film Alien, which led to three movie sequels, plus numerous books, comics and video game spinoffs.","id":"8091","version":298,"lastModified":"1301901633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8f\/4bc9206f017a3c57fe00cd8f\/alien-mid.jpg","title":"Alien Quadrilogy","language":"en","type":"Movie","_key":"31666"} +{"label":"This Boy's Life","description":"In 1957, a son and mother flee the East and an abusive boyfriend to find a new life, and end up in Seattle, where the mother meets a polite garage mechanic. The boy continually gets into trouble by hanging out with the wrong crowd. The mom marries the mechanic, but they soon find out that he's an abusive and unreasoning alcoholic, and they struggle to maintain hope in an impossible situation as the boy grows up with plans to escape the small town by any means possible. Based on a true story by T","id":"8092","runtime":115,"imdbId":"tt0108330","trailer":"http:\/\/www.youtube.com\/watch?v=yNzquJsDLOE","version":151,"lastModified":"1301902248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9c\/4bc92070017a3c57fe00cd9c\/this-boy-s-life-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"This Boy's Life","releaseDate":734313600000,"language":"en","type":"Movie","_key":"31667"} +{"label":"Jonah Blechman","version":26,"id":"53814","lastModified":"1301901651000","name":"Jonah Blechman","type":"Person","_key":"31668"} +{"label":"Khadak","description":"No overview found.","id":"8093","runtime":104,"imdbId":"tt0475241","homepage":"http:\/\/www.khadak.com\/","version":86,"lastModified":"1301903653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da5\/4bc92071017a3c57fe00cda5\/khadak-mid.jpg","studio":"MA.JA.DE Fiction","genre":"Drama","title":"Khadak","releaseDate":1156982400000,"language":"en","type":"Movie","_key":"31669"} +{"label":"Jessica Hope Woodworth","version":17,"id":"53996","lastModified":"1301901615000","name":"Jessica Hope Woodworth","type":"Person","_key":"31670"} +{"label":"Peter Brosens","version":21,"id":"53995","lastModified":"1301901885000","name":"Peter Brosens","type":"Person","_key":"31671"} +{"label":"Batzul Khayankhyarvaa","version":19,"id":"54262","lastModified":"1301901732000","name":"Batzul Khayankhyarvaa","type":"Person","_key":"31672"} +{"label":"Tsetsegee Byamba","version":19,"id":"54263","lastModified":"1301901732000","name":"Tsetsegee Byamba","type":"Person","_key":"31673"} +{"label":"Banzar Damchaa","version":17,"id":"54264","lastModified":"1301902277000","name":"Banzar Damchaa","type":"Person","_key":"31674"} +{"label":"Tserendarizav Dashnyam","version":19,"id":"54265","lastModified":"1301902098000","name":"Tserendarizav Dashnyam","type":"Person","_key":"31675"} +{"label":"Dugarsuren Dagvadorj","version":19,"id":"54266","lastModified":"1301902098000","name":"Dugarsuren Dagvadorj","type":"Person","_key":"31676"} +{"label":"The Magdalene Sisters","description":"Four women are given into the custody of the Madgalene sisterhood asylum to correct their sinful behavior: Crispina and Rose have given birth to a premarital child, Margaret got raped by her cousin and the orphan Bernadette had been repeatedly caught flirting with the boys. All have to work in a laundry under the strict supervision of the nuns, who break their wills through sadistic punishment.","id":"8094","runtime":119,"imdbId":"tt0318411","version":184,"lastModified":"1301905386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db2\/4bc92072017a3c57fe00cdb2\/the-magdalene-sisters-mid.jpg","studio":"B\u00f3rd Scann\u00e1n na h\u00c9ireann","genre":"Drama","title":"The Magdalene Sisters","releaseDate":1030665600000,"language":"en","type":"Movie","_key":"31677"} +{"label":"Nora-Jane Noone","version":32,"id":"53998","lastModified":"1301901703000","name":"Nora-Jane Noone","type":"Person","_key":"31678"} +{"label":"Eileen Walsh","version":24,"id":"53999","lastModified":"1301902098000","name":"Eileen Walsh","type":"Person","_key":"31679"} +{"label":"Mary Murray","version":19,"id":"54000","lastModified":"1301902098000","name":"Mary Murray","type":"Person","_key":"31680"} +{"label":"Dorothy Duffy","version":19,"id":"54001","lastModified":"1301902277000","name":"Dorothy Duffy","type":"Person","_key":"31681"} +{"label":"Cleopatra","description":"Historical epic. The triumphs and tragedy of the Egyptian queen, Cleopatra.The winner of four Oscars, this epic saga of love, greed and betrayal stars Elizabeth Taylor as the passionate and ambitious Egyptian queen who's determined to hold on to the throne and seduces the Roman emperor Julius Caesar (Rex Harrison). When Caesar is murdered, she redirects her attentions to his general, Marc Antony (Richard Burton), who vows to take power -- but Caesar's successor (Roddy McDowall) has other plans.","id":"8095","runtime":243,"imdbId":"tt0056937","trailer":"http:\/\/www.youtube.com\/watch?v=NGDyZHlHklo","version":219,"lastModified":"1301902600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e5\/4c636f675e73d6345f0006e5\/cleopatra-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"Cleopatra","releaseDate":-206928000000,"language":"en","type":"Movie","_key":"31682"} +{"label":"Hume Cronyn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d72\/4bfe979e017a3c7036000d72\/hume-cronyn-profile.jpg","version":57,"id":"7668","lastModified":"1301901202000","name":"Hume Cronyn","type":"Person","_key":"31683"} +{"label":"Andrew Keir","version":31,"id":"53815","lastModified":"1301901828000","name":"Andrew Keir","type":"Person","_key":"31684"} +{"label":"Kenneth Haigh","version":25,"id":"53817","lastModified":"1301901849000","name":"Kenneth Haigh","type":"Person","_key":"31685"} +{"label":"George Cole","version":47,"id":"47722","lastModified":"1301902192000","name":"George Cole","type":"Person","_key":"31686"} +{"label":"Pamela Brown","version":24,"id":"53818","lastModified":"1301901848000","name":"Pamela Brown","type":"Person","_key":"31687"} +{"label":"Gr\u00e9goire Aslan","version":26,"id":"53819","lastModified":"1301902224000","name":"Gr\u00e9goire Aslan","type":"Person","_key":"31688"} +{"label":"Peter Grant","version":24,"id":"6796","lastModified":"1299494033000","name":"Peter Grant","type":"Person","_key":"31689"} +{"label":"\u010carod\u011bj\u016fv u\u010de\u0148","description":"Kouzeln\u00fd p\u0159\u00edb\u011bh o Krabatovi, poch\u00e1zej\u00edc\u00ed p\u016fvodn\u011b z Indie a objevuj\u00edc\u00ed se pozd\u011bji v r\u016fzn\u00fdch obm\u011bn\u00e1ch souboje \u010darod\u011bjova u\u010dn\u011b a mistra v mnoha zem\u00edch sv\u011bta, je p\u0159\u00edb\u011bhem chlapce, kter\u00fd se na prahu dosp\u011blosti p\u0159ibl\u00ed\u017eil temn\u00fdm sil\u00e1m a je jimi fascinov\u00e1n, dokud nepozn\u00e1, \u017ee jej mohou zahubit.","id":"8128","runtime":82,"imdbId":"tt0075811","version":51,"lastModified":"1301905948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b92\/4d6f55dd7b9aa12fe9000b92\/arod-j-v-u-e-mid.jpg","studio":"Bavaria Atelier","genre":"Animation","title":"\u010carod\u011bj\u016fv u\u010de\u0148","releaseDate":220924800000,"language":"en","type":"Movie","_key":"31690"} +{"label":"Karel Zeman","biography":"<P>\u200bNarodil se 3.11. 1910 v Ostrom\u011b\u0159i u Nov\u00e9 Paky. Absolvoval dvouletou obchodn\u00ed \u0161kolu a kurs reklamn\u00edho kreslen\u00ed a aran\u017eov\u00e1n\u00ed. Pozd\u011bji pracoval jako kresl\u00ed\u0159 a n\u00e1vrh\u00e1\u0159 v reklamn\u00edch ateli\u00e9rech, n\u011bkolik let (1930-1936) tak\u00e9 ve Francii a tak\u00e9 u Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b. Aktivn\u00ed z\u00e1jem, kter\u00fd projevil o loutkov\u00e9 divadlo ji\u017e jako student, ho p\u0159ivedl v roce 1943 do zl\u00ednsk\u00e9ho trikov\u00e9ho ateli\u00e9ru.<\/P>\r\n<P>Prvn\u00ed film, kter\u00fd zde realizoval, byl poetick\u00fd sn\u00edmek V\u00c1NO\u010cN\u00cd SEN, kter\u00fd v roce 1946 z\u00edskal na MFF v Cann","version":40,"birthday":"-1867021200000","id":"53859","birthplace":"Ostrom\u011b\u0159 u Nov\u00e9 Paky","lastModified":"1302021029000","name":"Karel Zeman","type":"Person","_key":"31691"} +{"label":"Lud\u011bk Munzar","version":8,"id":"227399","lastModified":"1301904022000","name":"Lud\u011bk Munzar","type":"Person","_key":"31692"} +{"label":"Jaroslav Mou\u010dka","version":8,"id":"227400","lastModified":"1301904022000","name":"Jaroslav Mou\u010dka","type":"Person","_key":"31693"} +{"label":"My Name Is Joe","description":"No overview found.","id":"8129","runtime":105,"imdbId":"tt0151691","version":137,"lastModified":"1301904824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4bf696b9017a3c77260001d7\/my-name-is-joe-mid.jpg","studio":"Alta Films S.A.","genre":"Drama","title":"My Name Is Joe","releaseDate":895190400000,"language":"en","type":"Movie","_key":"31694"} +{"label":"Anne-Marie Kennedy","version":19,"id":"54013","lastModified":"1301902098000","name":"Anne-Marie Kennedy","type":"Person","_key":"31695"} +{"label":"David Hayman","version":48,"id":"54014","lastModified":"1301901336000","name":"David Hayman","type":"Person","_key":"31696"} +{"label":"Scott Hannah","version":19,"id":"54015","lastModified":"1301902277000","name":"Scott Hannah","type":"Person","_key":"31697"} +{"label":"David Peacock","version":19,"id":"54016","lastModified":"1301902277000","name":"David Peacock","type":"Person","_key":"31698"} +{"label":"Gordon McMurray","version":19,"id":"54017","lastModified":"1301902277000","name":"Gordon McMurray","type":"Person","_key":"31699"} +{"label":"James McHendry","version":19,"id":"54019","lastModified":"1301902277000","name":"James McHendry","type":"Person","_key":"31700"} +{"label":"Paul Clark","version":19,"id":"54020","lastModified":"1301902277000","name":"Paul Clark","type":"Person","_key":"31701"} +{"label":"Desperately Seeking Susan","description":"Roberta is a bored suburban housewife who is fascinated with a woman, Susan, she only knows about by reading messages to and from her in the personals section of the newspaper. This fascination reaches a peak when an ad with the headline \"Desperately Seeking Susan\" proposes a rendezvous. Roberta goes too, and in a series of events involving amnesia and mistaken identity, steps into Susan's life.","id":"8130","runtime":104,"imdbId":"tt0089017","version":322,"lastModified":"1301904232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/171\/4bf9511e017a3c7037000171\/desperately-seeking-susan-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Desperately Seeking Susan","releaseDate":480902400000,"language":"en","tagline":"Roberta is desperate to be Susan. Susan is wanted by the mob. The mob finds Roberta instead...","type":"Movie","_key":"31702"} +{"label":"Susan Seidelman","version":28,"id":"53861","lastModified":"1301901496000","name":"Susan Seidelman","type":"Person","_key":"31703"} +{"label":"You Kill Me","description":"While drying out on the West Coast, an alcoholic hit man befriends a tart-tongued woman who might just come in handy when it's time for him to return to Buffalo and settle some old scores.","id":"8141","runtime":90,"imdbId":"tt0796375","homepage":"http:\/\/www.youkillmethefilm.com\/","version":217,"lastModified":"1301902148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dda\/4bc92078017a3c57fe00cdda\/you-kill-me-mid.jpg","studio":"Bi-polar Pictures","genre":"Action","title":"You Kill Me","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"31704"} +{"label":"Marcus Thomas","version":30,"id":"55174","lastModified":"1301901688000","name":"Marcus Thomas","type":"Person","_key":"31705"} +{"label":"Shantaram","description":"No overview found.","id":"8142","runtime":0,"imdbId":"tt0429087","version":45,"lastModified":"1301906742000","studio":"Warner Bros. Pictures","genre":"Crime","title":"Shantaram","language":"en","type":"Movie","_key":"31706"} +{"label":"Up! Up! To the sky","description":"No overview found.","id":"8143","runtime":93,"imdbId":"tt1054515","version":106,"lastModified":"1301906170000","studio":"schneider groos filmproduktion","genre":"Comedy","title":"Up! Up! To the sky","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"31707"} +{"label":"Hardi Sturm","version":21,"id":"54021","lastModified":"1301901815000","name":"Hardi Sturm","type":"Person","_key":"31708"} +{"label":"Abre tu fosa, amigo, llega S\u00e1bata...","description":"No overview found.","id":"8144","runtime":88,"imdbId":"tt0065367","version":45,"lastModified":"1301907414000","studio":"Devon","genre":"Western","title":"Abre tu fosa, amigo, llega S\u00e1bata...","releaseDate":39398400000,"language":"en","type":"Movie","_key":"31709"} +{"label":"Juan Bosch","version":27,"id":"54022","lastModified":"1301995535000","name":"Juan Bosch","type":"Person","_key":"31710"} +{"label":"Fernando Sancho","version":27,"id":"53950","lastModified":"1301902350000","name":"Fernando Sancho","type":"Person","_key":"31711"} +{"label":"Alejandro Ulloa","version":18,"id":"53951","lastModified":"1301902006000","name":"Alejandro Ulloa","type":"Person","_key":"31712"} +{"label":"Tania Alvarado","version":20,"id":"53952","lastModified":"1301902341000","name":"Tania Alvarado","type":"Person","_key":"31713"} +{"label":"Gaspar 'Indio' Gonz\u00e1lez","version":18,"id":"53953","lastModified":"1301902154000","name":"Gaspar 'Indio' Gonz\u00e1lez","type":"Person","_key":"31714"} +{"label":"Napoleon Dynamite","description":"A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.","id":"8193","runtime":82,"imdbId":"tt0374900","version":725,"lastModified":"1301906828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d1\/4c5a5a3c5e73d63a6f0004d1\/napoleon-dynamite-mid.jpg","studio":"Access Films","genre":"Action","title":"Napoleon Dynamite","releaseDate":1086912000000,"language":"en","tagline":"He's out to prove he's got nothing to prove.","type":"Movie","_key":"31715"} +{"label":"Jared Hess","version":31,"id":"53925","lastModified":"1301901263000","name":"Jared Hess","type":"Person","_key":"31716"} +{"label":"Jon Heder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/132\/4ce0629d7b9aa168b1000132\/jon-heder-profile.jpg","version":50,"birthday":"246668400000","id":"53926","birthplace":"Fort Collins, Colorado","lastModified":"1301901166000","name":"Jon Heder","type":"Person","_key":"31717"} +{"label":"Aaron Ruell","version":23,"birthday":"204332400000","id":"53927","birthplace":"Fresno, California, USA","lastModified":"1301901675000","name":"Aaron Ruell","type":"Person","_key":"31718"} +{"label":"Shondrella Avery","version":26,"id":"53928","lastModified":"1301901800000","name":"Shondrella Avery","type":"Person","_key":"31719"} +{"label":"Haylie Duff","version":32,"id":"53929","lastModified":"1301901977000","name":"Haylie Duff","type":"Person","_key":"31720"} +{"label":"Tina Majorino","version":33,"id":"53930","lastModified":"1301901668000","name":"Tina Majorino","type":"Person","_key":"31721"} +{"label":"Sandy Martin","version":22,"id":"53931","lastModified":"1301902198000","name":"Sandy Martin","type":"Person","_key":"31722"} +{"label":"Trevor Snarr","version":22,"id":"53932","lastModified":"1301902193000","name":"Trevor Snarr","type":"Person","_key":"31723"} +{"label":"Emily Dunn","version":20,"id":"53933","lastModified":"1301902181000","name":"Emily Dunn","type":"Person","_key":"31724"} +{"label":"Ellen Dubin","version":23,"id":"53934","lastModified":"1301902199000","name":"Ellen Dubin","type":"Person","_key":"31725"} +{"label":"A Guide to Recognizing Your Saints","description":"The movie is a coming-of-age drama about a boy growing up in Astoria, N.Y., during the 1980s. As his friends end up dead, on drugs or in prison, he comes to believe he has been saved from their fate by various so-called saints.The Movie starsRobert Downey Jr. ,(Shia LaBeouf as his younger self), Rosario Dawson (Melonie Diaz), and Eric Roberts (Channing Tatum). It is based on a 2001 memoir of the same name by author Dito Montiel, which describes his youth in Astoria, New York during the 1980s. T","id":"8194","runtime":97,"imdbId":"tt0473488","trailer":"http:\/\/www.youtube.com\/watch?v=0ZDXDvlpu6I","version":227,"lastModified":"1302036134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0e\/4bc9207e017a3c57fe00ce0e\/a-guide-to-recognizing-your-saints-mid.jpg","studio":"Madman Films","genre":"Crime","title":"A Guide to Recognizing Your Saints","releaseDate":1137715200000,"language":"en","tagline":"Sometimes the only way to move forward is to go back.","type":"Movie","_key":"31726"} +{"label":"Dito Montiel","version":47,"id":"53935","lastModified":"1302036133000","name":"Dito Montiel","type":"Person","_key":"31727"} +{"label":"Melonie Diaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c9\/4d9b95cf7b9aa16d070004c9\/melonie-diaz-profile.jpg","version":47,"id":"53936","lastModified":"1302036133000","name":"Melonie Diaz","type":"Person","_key":"31728"} +{"label":"Olga Merediz","version":26,"id":"53937","lastModified":"1302036133000","name":"Olga Merediz","type":"Person","_key":"31729"} +{"label":"Eleonore Hendricks","version":30,"id":"53938","lastModified":"1302036133000","name":"Eleonore Hendricks","type":"Person","_key":"31730"} +{"label":"Adam Scarimbolo","version":28,"id":"53939","lastModified":"1302036133000","name":"Adam Scarimbolo","type":"Person","_key":"31731"} +{"label":"Federico Castelluccio","version":27,"id":"53940","lastModified":"1302036133000","name":"Federico Castelluccio","type":"Person","_key":"31732"} +{"label":"Ronin","description":"A briefcase with undisclosed contents -- sought by Irish terrorists and the Russian mob -- makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or ronin, charged with the thorny task of recovering the case. But the team, led by an ex-CIA agent, mistrusts one another. Can they accomplish their mission?","id":"8195","runtime":117,"imdbId":"tt0122690","version":201,"lastModified":"1301901701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1f\/4bc92080017a3c57fe00ce1f\/ronin-mid.jpg","studio":"FGM Entertainment","genre":"Action","title":"Ronin","releaseDate":912643200000,"language":"en","tagline":"Your ally could become your enemy.","type":"Movie","_key":"31733"} +{"label":"Katarina Witt","version":24,"id":"53955","lastModified":"1301901942000","name":"Katarina Witt","type":"Person","_key":"31734"} +{"label":"Midnight in the Garden of Good and Evil","description":"A visiting city reporter's assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.","id":"8197","runtime":149,"imdbId":"tt0119668","version":179,"lastModified":"1301903890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e37\/4bc92085017a3c57fe00ce37\/midnight-in-the-garden-of-good-and-evil-mid.jpg","studio":"Malpaso Productions","genre":"Crime","title":"Midnight in the Garden of Good and Evil","releaseDate":880070400000,"language":"en","type":"Movie","_key":"31735"} +{"label":"Paul Hipp","version":24,"id":"54041","lastModified":"1301902098000","name":"Paul Hipp","type":"Person","_key":"31736"} +{"label":"Lady Chablis","version":21,"id":"54042","lastModified":"1301902098000","name":"Lady Chablis","type":"Person","_key":"31737"} +{"label":"Gary Anthony Williams","version":23,"id":"54043","lastModified":"1301902098000","name":"Gary Anthony Williams","type":"Person","_key":"31738"} +{"label":"Patrika Darbo","version":29,"id":"54044","lastModified":"1301901280000","name":"Patrika Darbo","type":"Person","_key":"31739"} +{"label":"The Quiet American","description":"A stylish political thriller where love and war collide in Southeast Asia. Set in early 1950s Vietnam, a young American becomes entangled in a dangerous love triangle when he falls for the beautiful mistress of a British journalist. As war is waged around them, these three only sink deeper into a world of drugs, passion, and betrayal where nothing is as it seems.","id":"8198","runtime":101,"imdbId":"tt0258068","trailer":"http:\/\/www.youtube.com\/watch?v=qyjmKeL0ER0","version":171,"lastModified":"1301903615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea5\/4d2c812a5e73d63a4e001ea5\/the-quiet-american-mid.jpg","studio":"IMF Pictures","genre":"Drama","title":"The Quiet American","releaseDate":1031529600000,"language":"en","type":"Movie","_key":"31740"} +{"label":"Do Thi Hai Yen","version":19,"id":"53962","lastModified":"1301901885000","name":"Do Thi Hai Yen","type":"Person","_key":"31741"} +{"label":"Robert Stanton","version":35,"id":"53963","lastModified":"1301901394000","name":"Robert Stanton","type":"Person","_key":"31742"} +{"label":"Dreamland","description":"A young woman who lives in a desert trailer park must choose between caring for her hapless father and sick friend or fulfilling her own destiny.","id":"8199","runtime":88,"imdbId":"tt0417614","version":129,"lastModified":"1301903563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4e\/4bc92087017a3c57fe00ce4e\/dreamland-mid.jpg","studio":"Echo Lake Productions","genre":"Drama","title":"Dreamland","releaseDate":1137974400000,"language":"en","type":"Movie","_key":"31743"} +{"label":"Luce Rains","version":25,"id":"53969","lastModified":"1301901364000","name":"Luce Rains","type":"Person","_key":"31744"} +{"label":"Olive Bureker","version":20,"id":"53970","lastModified":"1301902181000","name":"Olive Bureker","type":"Person","_key":"31745"} +{"label":"Jenny Gabrielle","version":23,"id":"53971","lastModified":"1301902049000","name":"Jenny Gabrielle","type":"Person","_key":"31746"} +{"label":"Jason Matzner","version":20,"id":"53964","lastModified":"1301901597000","name":"Jason Matzner","type":"Person","_key":"31747"} +{"label":"Neandertal","description":"No overview found.","id":"8200","runtime":103,"imdbId":"tt0495932","homepage":"http:\/\/www.farbfilm-verleih.de\/filme\/neandertal.html","version":74,"lastModified":"1301904016000","studio":"Rommel Film","genre":"Drama","title":"Neandertal","releaseDate":1153180800000,"language":"en","type":"Movie","_key":"31748"} +{"label":"Jan-Christoph Glaser","version":24,"id":"53982","lastModified":"1301901570000","name":"Jan-Christoph Glaser","type":"Person","_key":"31749"} +{"label":"Tim Egloff","version":19,"id":"53988","lastModified":"1301902277000","name":"Tim Egloff","type":"Person","_key":"31750"} +{"label":"Luana Bellinghausen","version":19,"id":"53989","lastModified":"1301902277000","name":"Luana Bellinghausen","type":"Person","_key":"31751"} +{"label":"Philippe Mode\u00df","version":19,"id":"53990","lastModified":"1301902277000","name":"Philippe Mode\u00df","type":"Person","_key":"31752"} +{"label":"Hanna J\u00fcrgens","version":19,"id":"53991","lastModified":"1301902277000","name":"Hanna J\u00fcrgens","type":"Person","_key":"31753"} +{"label":"Marc Zwinz","version":24,"id":"53992","lastModified":"1301902378000","name":"Marc Zwinz","type":"Person","_key":"31754"} +{"label":"Ronnie Mkwanazi","version":17,"id":"53993","lastModified":"1301902296000","name":"Ronnie Mkwanazi","type":"Person","_key":"31755"} +{"label":"Gunnar Helm","version":19,"id":"53994","lastModified":"1301902098000","name":"Gunnar Helm","type":"Person","_key":"31756"} +{"label":"Football Undercover","description":"No overview found.","id":"8201","runtime":86,"imdbId":"tt1160008","trailer":"http:\/\/www.youtube.com\/watch?v=514","version":44,"lastModified":"1301906745000","studio":"MBB Medienboard Berlin-Brandenburg","genre":"Documentary","title":"Football Undercover","releaseDate":1202601600000,"language":"en","type":"Movie","_key":"31757"} +{"label":"Ayat Najafi","version":21,"id":"54002","lastModified":"1301902154000","name":"Ayat Najafi","type":"Person","_key":"31758"} +{"label":"David Assmann","version":20,"id":"54003","lastModified":"1301901959000","name":"David Assmann","type":"Person","_key":"31759"} +{"label":"Aeon Flux","description":"400 Years in the future, disease has wiped out the majority of the worlds population, except one walled city, Bregna, ruled by a Congress of Scientists. When \u00c6on Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a Government Leader, she uncoveres a world of secrets.","id":"8202","runtime":89,"imdbId":"tt0402022","trailer":"http:\/\/www.youtube.com\/watch?v=1195","version":313,"lastModified":"1301901244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03f\/4bcd716b017a3c604d00003f\/on-flux-mid.jpg","studio":"MTV Films","genre":"Action","title":"Aeon Flux","releaseDate":1133395200000,"language":"en","tagline":"The Perfect World Meets The Perfect Assassin","type":"Movie","_key":"31760"} +{"label":"Yangzom Brauen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dc\/4c3969d35e73d671d00000dc\/yangzom-brauen-profile.jpg","version":31,"id":"54023","lastModified":"1301901410000","name":"Yangzom Brauen","type":"Person","_key":"31761"} +{"label":"Nikolai Kinski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e3\/4c396e375e73d671d00000e3\/nikolai-kinski-profile.jpg","version":28,"id":"54024","lastModified":"1301902353000","name":"Nikolai Kinski","type":"Person","_key":"31762"} +{"label":"Karyn Kusama","version":30,"id":"54025","lastModified":"1301901311000","name":"Karyn Kusama","type":"Person","_key":"31763"} +{"label":"The Spiderwick Chronicles","description":"Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.","id":"8204","runtime":96,"imdbId":"tt0416236","trailer":"http:\/\/www.youtube.com\/watch?v=1876","version":344,"lastModified":"1301902179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50a\/4d5067457b9aa13aba00d50a\/the-spiderwick-chronicles-mid.jpg","studio":"Nickelodeon Movies","genre":"Action","title":"The Spiderwick Chronicles","releaseDate":1201737600000,"language":"en","tagline":"Their World Is Closer Than You Think.","type":"Movie","_key":"31764"} +{"label":"Mark Waters","version":57,"id":"54050","lastModified":"1302066064000","name":"Mark Waters","type":"Person","_key":"31765"} +{"label":"Jordy Benattar","version":24,"id":"8712","lastModified":"1302066065000","name":"Jordy Benattar","type":"Person","_key":"31766"} +{"label":"Tod Fennell","version":25,"id":"8321","lastModified":"1302066065000","name":"Tod Fennell","type":"Person","_key":"31767"} +{"label":"Die \u00d6sterreichische Methode","description":"No overview found.","id":"8205","runtime":93,"imdbId":"tt0436013","homepage":"http:\/\/doem.shadowslave.de\/index.php?seite=home&PHPSESSID=f405c31c0a2017fd9cb4b291e7947c6d","version":94,"lastModified":"1301907413000","studio":"Claussen W\u00f6bke Putz","genre":"Drama","title":"Die \u00d6sterreichische Methode","releaseDate":1161820800000,"language":"en","type":"Movie","_key":"31768"} +{"label":"Alexander Tavakoli","version":18,"id":"8711","lastModified":"1301901413000","name":"Alexander Tavakoli","type":"Person","_key":"31769"} +{"label":"Erica von Moeller","version":18,"id":"17054","lastModified":"1301901814000","name":"Erica von Moeller","type":"Person","_key":"31770"} +{"label":"Gerrit Lucas","version":21,"id":"26394","lastModified":"1301901959000","name":"Gerrit Lucas","type":"Person","_key":"31771"} +{"label":"Florian Mischa B\u00f6der","version":23,"id":"54053","lastModified":"1301901787000","name":"Florian Mischa B\u00f6der","type":"Person","_key":"31772"} +{"label":"Peter B\u00f6senberg","version":18,"id":"8710","lastModified":"1301901674000","name":"Peter B\u00f6senberg","type":"Person","_key":"31773"} +{"label":"Maja Beckmann","version":20,"id":"35435","lastModified":"1301901815000","name":"Maja Beckmann","type":"Person","_key":"31774"} +{"label":"Laurens Walter","version":20,"id":"24060","lastModified":"1301902029000","name":"Laurens Walter","type":"Person","_key":"31775"} +{"label":"Karl Walter Sprungala","version":18,"id":"26918","lastModified":"1301902154000","name":"Karl Walter Sprungala","type":"Person","_key":"31776"} +{"label":"Catherine Seifert","version":18,"id":"24901","lastModified":"1301902154000","name":"Catherine Seifert","type":"Person","_key":"31777"} +{"label":"Juan Carlos Lopez","version":17,"id":"8709","lastModified":"1301901651000","name":"Juan Carlos Lopez","type":"Person","_key":"31778"} +{"label":"The Man Who Knew Too Much","description":"A man and his wife receive a clue to an imminent assassination attempt, only to learn that their daughter has been kidnapped to keep them quiet.","id":"8208","runtime":75,"imdbId":"tt0025452","version":88,"lastModified":"1301905548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb0\/4bc92096017a3c57fe00ceb0\/the-man-who-knew-too-much-mid.jpg","studio":"Gaumont British Production","genre":"Thriller","title":"The Man Who Knew Too Much","releaseDate":-1107216000000,"language":"en","type":"Movie","_key":"31779"} +{"label":"Hugh Wakefield","version":22,"id":"54035","lastModified":"1301902187000","name":"Hugh Wakefield","type":"Person","_key":"31780"} +{"label":"Frank Vosper","version":20,"id":"54036","lastModified":"1301902277000","name":"Frank Vosper","type":"Person","_key":"31781"} +{"label":"Cicely Oates","version":20,"id":"54037","lastModified":"1301902098000","name":"Cicely Oates","type":"Person","_key":"31782"} +{"label":"D.A. Clarke-Smith","version":20,"id":"54038","lastModified":"1301902098000","name":"D.A. Clarke-Smith","type":"Person","_key":"31783"} +{"label":"Edna Best","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0d\/4be5e55f017a3c35bb000c0d\/edna-best-profile.jpg","version":25,"id":"88569","lastModified":"1301902324000","name":"Edna Best","type":"Person","_key":"31784"} +{"label":"1. Mai","description":"An eleven-year-old Turkish boy, two young men from a small town, and a cuckolded policeman from the sticks all find their way to Berlin on May Day, where, in the district of Kreuzberg, emotions come to the boil every year. ","id":"8209","runtime":90,"imdbId":"tt1020932","version":130,"lastModified":"1301904955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb9\/4bc92098017a3c57fe00ceb9\/1-mai-mid.jpg","studio":"Jetfilm","genre":"Drama","title":"1. Mai","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"31785"} +{"label":"Carsten Ludwig","version":23,"id":"54059","lastModified":"1301901595000","name":"Carsten Ludwig","type":"Person","_key":"31786"} +{"label":"Jakob Ziemnicki","version":21,"id":"54060","lastModified":"1301902098000","name":"Jakob Ziemnicki","type":"Person","_key":"31787"} +{"label":"Cemal Subasi","version":17,"id":"54078","lastModified":"1301901620000","name":"Cemal Subasi","type":"Person","_key":"31788"} +{"label":"Benjamin H\u00f6ppner","version":19,"id":"54079","lastModified":"1301901732000","name":"Benjamin H\u00f6ppner","type":"Person","_key":"31789"} +{"label":"Ludwig Trepte","version":22,"id":"44533","lastModified":"1301901952000","name":"Ludwig Trepte","type":"Person","_key":"31790"} +{"label":"Leonie Brandis","version":19,"id":"54080","lastModified":"1301902277000","name":"Leonie Brandis","type":"Person","_key":"31791"} +{"label":"Sami swoi","description":"Polish comedy made in 1967, movie tells the story of two neighbor families.","id":"8211","runtime":81,"imdbId":"tt0062228","version":100,"lastModified":"1301903701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d1\/4bcc6ef3017a3c0f2a0000d1\/sami-swoi-mid.jpg","studio":"Zespol Filmowy \"Iluzjon\"","genre":"Comedy","title":"Sami swoi","releaseDate":-72489600000,"language":"en","type":"Movie","_key":"31792"} +{"label":"Waclaw Kowalski","version":17,"id":"54070","lastModified":"1301901546000","name":"Waclaw Kowalski","type":"Person","_key":"31793"} +{"label":"Wladyslaw Hancza","version":17,"id":"54071","lastModified":"1301901754000","name":"Wladyslaw Hancza","type":"Person","_key":"31794"} +{"label":"Zdzislaw Karczewski","version":17,"id":"54072","lastModified":"1301901754000","name":"Zdzislaw Karczewski","type":"Person","_key":"31795"} +{"label":"Eliasz Kuziemski","version":17,"id":"54073","lastModified":"1301901629000","name":"Eliasz Kuziemski","type":"Person","_key":"31796"} +{"label":"Ilona Kusmierska","version":17,"id":"8718","lastModified":"1301901546000","name":"Ilona Kusmierska","type":"Person","_key":"31797"} +{"label":"Jerzy Janeczek","version":16,"id":"20723","lastModified":"1301901918000","name":"Jerzy Janeczek","type":"Person","_key":"31798"} +{"label":"Aleksander Fogiel","version":19,"id":"26923","lastModified":"1301901918000","name":"Aleksander Fogiel","type":"Person","_key":"31799"} +{"label":"Witold Pyrkosz","version":22,"id":"54074","lastModified":"1301902163000","name":"Witold Pyrkosz","type":"Person","_key":"31800"} +{"label":"Halina Buyno-Loza","version":17,"id":"54075","lastModified":"1301902118000","name":"Halina Buyno-Loza","type":"Person","_key":"31801"} +{"label":"Ryszard Kotys","version":16,"id":"8719","lastModified":"1301901546000","name":"Ryszard Kotys","type":"Person","_key":"31802"} +{"label":"Andrzej Mrozek","version":19,"id":"23343","lastModified":"1301901754000","name":"Andrzej Mrozek","type":"Person","_key":"31803"} +{"label":"Elzbieta Jagielska","version":17,"id":"26931","lastModified":"1301902118000","name":"Elzbieta Jagielska","type":"Person","_key":"31804"} +{"label":"Zygmunt Bielawski","version":20,"id":"54076","lastModified":"1301902192000","name":"Zygmunt Bielawski","type":"Person","_key":"31805"} +{"label":"Sylwester Checinski","version":17,"id":"8721","lastModified":"1301901341000","name":"Sylwester Checinski","type":"Person","_key":"31806"} +{"label":"Gerard Zalewski","version":16,"id":"16323","lastModified":"1301901385000","name":"Gerard Zalewski","type":"Person","_key":"31807"} +{"label":"Andrzej Herman","version":18,"id":"8723","lastModified":"1301901385000","name":"Andrzej Herman","type":"Person","_key":"31808"} +{"label":"Swing con Son","description":"Music documentary by director Rafael Marziano Tinoco from Venezuela","id":"8212","runtime":133,"imdbId":"tt1500903","trailer":"http:\/\/www.youtube.com\/watch?v=488","version":86,"lastModified":"1301906946000","studio":"Makatoa Media Producciones","genre":"Documentary","title":"Swing con Son","releaseDate":1238544000000,"language":"en","type":"Movie","_key":"31809"} +{"label":"Caridad Canel\u00f3n","version":19,"id":"54082","lastModified":"1301902277000","name":"Caridad Canel\u00f3n","type":"Person","_key":"31810"} +{"label":"Rafa Galindo","version":17,"id":"54083","lastModified":"1301901901000","name":"Rafa Galindo","type":"Person","_key":"31811"} +{"label":"Arturo Guaramato","version":19,"id":"54084","lastModified":"1301902098000","name":"Arturo Guaramato","type":"Person","_key":"31812"} +{"label":"Alberto Naranjo","version":18,"id":"54085","lastModified":"1301902277000","name":"Alberto Naranjo","type":"Person","_key":"31813"} +{"label":"H\u00e9ctor Monteverde","version":15,"id":"54086","lastModified":"1301902277000","name":"H\u00e9ctor Monteverde","type":"Person","_key":"31814"} +{"label":"Luis Mar\u00eda \"Billo\" Fr\u00f3meta","version":17,"id":"54087","lastModified":"1301901885000","name":"Luis Mar\u00eda \"Billo\" Fr\u00f3meta","type":"Person","_key":"31815"} +{"label":"Renato Capriles","version":15,"id":"54088","lastModified":"1301902277000","name":"Renato Capriles","type":"Person","_key":"31816"} +{"label":"Estelita Del Llano","version":17,"id":"54089","lastModified":"1301902110000","name":"Estelita Del Llano","type":"Person","_key":"31817"} +{"label":"Crisp\u00edn Fernandez","version":17,"id":"54090","lastModified":"1301901901000","name":"Crisp\u00edn Fernandez","type":"Person","_key":"31818"} +{"label":"Gr\u00e9gory Antonetti","version":17,"id":"54091","lastModified":"1301902277000","name":"Gr\u00e9gory Antonetti","type":"Person","_key":"31819"} +{"label":"Joe Urdaneta","version":15,"id":"54092","lastModified":"1301901885000","name":"Joe Urdaneta","type":"Person","_key":"31820"} +{"label":"Porfi Jim\u00e9nez","version":15,"id":"54120","lastModified":"1301902277000","name":"Porfi Jim\u00e9nez","type":"Person","_key":"31821"} +{"label":"Mitte Ende August","description":"No overview found.","id":"8213","runtime":92,"imdbId":"tt1091666","version":61,"lastModified":"1301904475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acb\/4d90c60a5e73d65f17002acb\/mitte-ende-august-mid.jpg","studio":"Film 1","genre":"Drama","title":"Mitte Ende August","releaseDate":1234051200000,"language":"en","type":"Movie","_key":"31822"} +{"label":"Gert Voss","version":20,"id":"54115","lastModified":"1301902193000","name":"Gert Voss","type":"Person","_key":"31823"} +{"label":"Kauas pilvet karkaavat","description":"Tram driver Lauri looses his job. Shortly later, the restaurant where his wife Ilona works as a headwaitress is closed. Too proud, to receive money from the social welfare system, they hardly try to find new jobs. But they are completely unlucky and clumsy, one disaster is followed by the next. Finally, their courage, confidence, and their unbreakable love triumph over the fate.","id":"8214","runtime":96,"imdbId":"tt0116752","version":59,"lastModified":"1301906742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec6\/4bc9209b017a3c57fe00cec6\/kauas-pilvet-karkaavat-mid.jpg","studio":"Sputnik","genre":"Drama","title":"Kauas pilvet karkaavat","releaseDate":831254400000,"language":"en","type":"Movie","_key":"31824"} +{"label":"Meet the Feebles","description":"Heidi, the star of the \"Meet The Feebles Variety Hour\" discovers her lover Bletch, The Walrus, is cheating on her. And with all the world waiting for the show, the assorted co-stars must contend with drug addiction, extortion, robbery, disease, drug dealing, and murder. Meanwhile the love between two of the stars is threatened by Trevor the Rat, who wishes to exploit the young starlet for use in his porno movie.","id":"8216","runtime":94,"imdbId":"tt0097858","version":153,"lastModified":"1301905005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6c\/4d6627b55e73d66a6b000f6c\/meet-the-feebles-mid.jpg","studio":"WingNut Films","genre":"Comedy","title":"Meet the Feebles","releaseDate":793411200000,"language":"en","type":"Movie","_key":"31825"} +{"label":"Donna Akersten","version":22,"id":"81875","lastModified":"1301902154000","name":"Donna Akersten","type":"Person","_key":"31826"} +{"label":"Mark Hadlow","version":21,"id":"81877","lastModified":"1301901787000","name":"Mark Hadlow","type":"Person","_key":"31827"} +{"label":"Brian Sergent","version":21,"id":"81878","lastModified":"1301902154000","name":"Brian Sergent","type":"Person","_key":"31828"} +{"label":"Ross Jolly","version":21,"id":"81879","lastModified":"1301902508000","name":"Ross Jolly","type":"Person","_key":"31829"} +{"label":"Peter Vere-Jones","version":22,"id":"81880","lastModified":"1301901959000","name":"Peter Vere-Jones","type":"Person","_key":"31830"} +{"label":"Mark Wright","version":21,"id":"81881","lastModified":"1301902508000","name":"Mark Wright","type":"Person","_key":"31831"} +{"label":"Danny Mulheron","version":23,"id":"81882","lastModified":"1301902508000","name":"Danny Mulheron","type":"Person","_key":"31832"} +{"label":"Jay Snowfield","version":21,"id":"81883","lastModified":"1301902508000","name":"Jay Snowfield","type":"Person","_key":"31833"} +{"label":"Doug Wren","version":21,"id":"81884","lastModified":"1301902508000","name":"Doug Wren","type":"Person","_key":"31834"} +{"label":"Alice","description":"Alice Tate, mother of two, with a marriage of 16 years, finds herself falling for the handsome sax player, Joe. Stricken with a backache, she consults Dr. Yang, an oriental herbalist who realizes that her problems are not related to her back, but in her mind and heart. Dr. Yang's magical herbs give Alice wondrous powers, taking her out of well-established rut.","id":"8217","runtime":102,"imdbId":"tt0099012","version":282,"lastModified":"1301904702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed8\/4bc9209c017a3c57fe00ced8\/alice-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Alice","releaseDate":662083200000,"language":"en","type":"Movie","_key":"31835"} +{"label":"Gwen Verdon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4c9cce1a7b9aa1430f000116\/gwen-verdon-profile.jpg","version":21,"id":"54122","lastModified":"1301902357000","name":"Gwen Verdon","type":"Person","_key":"31836"} +{"label":"Patrick O'Neal","version":38,"id":"54123","lastModified":"1301901512000","name":"Patrick O'Neal","type":"Person","_key":"31837"} +{"label":"Marceline Hugot","version":21,"id":"54124","lastModified":"1301901615000","name":"Marceline Hugot","type":"Person","_key":"31838"} +{"label":"Dylan O'Sullivan Farrow","version":19,"id":"54125","lastModified":"1301902277000","name":"Dylan O'Sullivan Farrow","type":"Person","_key":"31839"} +{"label":"Rachel Miner","version":37,"id":"54126","lastModified":"1301919972000","name":"Rachel Miner","type":"Person","_key":"31840"} +{"label":"David Spielberg","version":23,"id":"54127","lastModified":"1301901833000","name":"David Spielberg","type":"Person","_key":"31841"} +{"label":"Labyrinth of Passion","description":"A camp melodrama\/comedy about Sexilia (a nymphomaniac), Sadec (a gay Islamic terrorist), Riza Niro (the son of the emperor of Tiran), and Queti (the daughter of a dry-cleaner).","id":"8219","runtime":100,"imdbId":"tt0084228","version":76,"lastModified":"1301904245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cf\/4cf6a29b5e73d6299a0013cf\/laberinto-de-pasiones-mid.jpg","studio":"Alphaville Films","genre":"Comedy","title":"Labyrinth of Passion","releaseDate":402105600000,"language":"en","type":"Movie","_key":"31842"} +{"label":"Ofelia Ang\u00e9lica","version":23,"id":"54128","lastModified":"1301902186000","name":"Ofelia Ang\u00e9lica","type":"Person","_key":"31843"} +{"label":"Fernando Vivanco","version":23,"id":"54129","lastModified":"1301902154000","name":"Fernando Vivanco","type":"Person","_key":"31844"} +{"label":"\u00c1ngel Alc\u00e1zar","version":23,"id":"54130","lastModified":"1301902341000","name":"\u00c1ngel Alc\u00e1zar","type":"Person","_key":"31845"} +{"label":"Dark Habits","description":"A nightclub singer seeks refuge with gay nuns on dope in a Madrid convent.","id":"8220","runtime":114,"imdbId":"tt0085496","version":103,"lastModified":"1301907331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4d6e60ca5e73d65a22000366\/entre-tinieblas-mid.jpg","studio":"Tesauro","genre":"Comedy","title":"Dark Habits","releaseDate":578880000000,"language":"en","type":"Movie","_key":"31846"} +{"label":"Lina Canalejas","version":23,"id":"54137","lastModified":"1301902034000","name":"Lina Canalejas","type":"Person","_key":"31847"} +{"label":"Laura Cepeda","version":21,"id":"19812","lastModified":"1301903114000","name":"Laura Cepeda","type":"Person","_key":"31848"} +{"label":"Miguel Z\u00fa\u00f1iga","version":21,"id":"54135","lastModified":"1301902277000","name":"Miguel Z\u00fa\u00f1iga","type":"Person","_key":"31849"} +{"label":"Mary Carrillo","version":21,"id":"54136","lastModified":"1301902098000","name":"Mary Carrillo","type":"Person","_key":"31850"} +{"label":"Manuel Zarzo","version":30,"id":"54138","lastModified":"1301997010000","name":"Manuel Zarzo","type":"Person","_key":"31851"} +{"label":"Marisa Tejada","version":21,"id":"54139","lastModified":"1301902277000","name":"Marisa Tejada","type":"Person","_key":"31852"} +{"label":"\u00c1ngel S\u00e1nchez Harguindey","version":21,"id":"54140","lastModified":"1301902098000","name":"\u00c1ngel S\u00e1nchez Harguindey","type":"Person","_key":"31853"} +{"label":"Rub\u00e9n Tob\u00edas","version":21,"id":"54141","lastModified":"1301902098000","name":"Rub\u00e9n Tob\u00edas","type":"Person","_key":"31854"} +{"label":"Mariela Serrano","version":21,"id":"54142","lastModified":"1301902098000","name":"Mariela Serrano","type":"Person","_key":"31855"} +{"label":"Flavia Zarzo","version":23,"id":"54145","lastModified":"1301901840000","name":"Flavia Zarzo","type":"Person","_key":"31856"} +{"label":"What Have I Done to Deserve This?","description":"Almod\u00f3var has described his fourth film as a homage to Italian Neorealism, although this tribute also involves jokes about paedophilia, prostitution, and a telekenetic child. The film, set in the towerblocks around Madrid, depicts female frustration and family breakdown.","id":"8221","runtime":102,"imdbId":"tt0088461","version":90,"lastModified":"1301904119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4c34a7607b9aa17a370000b2\/que-he-hecho-yo-para-merecer-esto-mid.jpg","studio":"Kaktus Producciones Cinematogr\u00e1ficas","genre":"Comedy","title":"What Have I Done to Deserve This?","releaseDate":467510400000,"language":"en","type":"Movie","_key":"31857"} +{"label":"Ver\u00f3nica Forqu\u00e9","version":23,"id":"54146","lastModified":"1301901819000","name":"Ver\u00f3nica Forqu\u00e9","type":"Person","_key":"31858"} +{"label":"Juan Mart\u00ednez","version":21,"id":"54147","lastModified":"1301902033000","name":"Juan Mart\u00ednez","type":"Person","_key":"31859"} +{"label":"Gonzalo Su\u00e1rez","version":22,"id":"54148","lastModified":"1301902393000","name":"Gonzalo Su\u00e1rez","type":"Person","_key":"31860"} +{"label":"Amparo Soler Leal","version":21,"id":"54149","lastModified":"1301902052000","name":"Amparo Soler Leal","type":"Person","_key":"31861"} +{"label":"Katia Loritz","version":21,"id":"54150","lastModified":"1301902376000","name":"Katia Loritz","type":"Person","_key":"31862"} +{"label":"Javier Gurruchaga","version":21,"id":"54151","lastModified":"1301902391000","name":"Javier Gurruchaga","type":"Person","_key":"31863"} +{"label":"Miguel \u00c1ngel Herranz","version":21,"id":"54152","lastModified":"1301902353000","name":"Miguel \u00c1ngel Herranz","type":"Person","_key":"31864"} +{"label":"Kika","description":"Kika, a young cosmetologist, is called to the mansion of Nicolas, an American writer to make-up the corpse of his stepson, Ramon. Ramon, who is not dead, is revived by Kika's attentions and she then moves in with him. They might live happily ever after but first they have to cope with Kika's affair with Nicolas, the suspicious death of Ramon's mother and the intrusive gaze of tabloid-TV star and Ramon's ex-psychologist Andrea Scarface.","id":"8223","runtime":117,"imdbId":"tt0107315","trailer":"http:\/\/www.youtube.com\/watch?v=0JxnVf1w2Bc","version":85,"lastModified":"1301904463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12f\/4ce43cf85e73d61c0400012f\/kika-mid.jpg","studio":"El Deseo","genre":"Comedy","title":"Kika","releaseDate":751852800000,"language":"en","type":"Movie","_key":"31865"} +{"label":"\u00c0lex Casanovas","version":19,"id":"26661","lastModified":"1301902136000","name":"\u00c0lex Casanovas","type":"Person","_key":"31866"} +{"label":"Santiago Lajusticia","version":20,"id":"26928","lastModified":"1301902098000","name":"Santiago Lajusticia","type":"Person","_key":"31867"} +{"label":"Anabel Alonso","version":21,"id":"24894","lastModified":"1301902098000","name":"Anabel Alonso","type":"Person","_key":"31868"} +{"label":"Jes\u00fas Bonilla","version":24,"id":"24900","lastModified":"1301901444000","name":"Jes\u00fas Bonilla","type":"Person","_key":"31869"} +{"label":"M\u00f3nica Bardem","version":17,"id":"22372","lastModified":"1301902098000","name":"M\u00f3nica Bardem","type":"Person","_key":"31870"} +{"label":"Blanca Li","version":20,"id":"26927","lastModified":"1301902098000","name":"Blanca Li","type":"Person","_key":"31871"} +{"label":"Claudia Aros","version":27,"id":"27003","lastModified":"1301901419000","name":"Claudia Aros","type":"Person","_key":"31872"} +{"label":"8MM","description":"A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.","id":"8224","runtime":123,"imdbId":"tt0134273","trailer":"http:\/\/www.youtube.com\/watch?v=lBk3n-kz4EU","version":209,"lastModified":"1301902837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4cabc2317b9aa1152d000084\/8mm-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"8MM","releaseDate":919987200000,"language":"en","type":"Movie","_key":"31873"} +{"label":"Amy Morton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4cdc69517b9aa138030000d3\/amy-morton-profile.jpg","version":35,"id":"26930","lastModified":"1301901131000","name":"Amy Morton","type":"Person","_key":"31874"} +{"label":"Jenny Powell","version":25,"id":"26919","lastModified":"1301901523000","name":"Jenny Powell","type":"Person","_key":"31875"} +{"label":"Suzy Nakamura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7a\/4d7ed4ed7b9aa11a0c01aa7a\/suzy-nakamura-profile.jpg","version":28,"id":"26998","lastModified":"1301901415000","name":"Suzy Nakamura","type":"Person","_key":"31876"} +{"label":"William Lawrence Mack","version":25,"id":"26972","lastModified":"1301901418000","name":"William Lawrence Mack","type":"Person","_key":"31877"} +{"label":"Myra Carter","version":25,"id":"54159","lastModified":"1301901519000","name":"Myra Carter","type":"Person","_key":"31878"} +{"label":"Jumper","description":"A genetic anomaly allows a young man to teleport himself anywhere. He discovers this gift has existed for centuries and finds himself in a war that has been raging for thousands of years between \"Jumpers\" and those who have sworn to kill them.","id":"8247","runtime":88,"imdbId":"tt0489099","trailer":"http:\/\/www.youtube.com\/watch?v=EnGad4MhYMk","homepage":"http:\/\/www.jumperthemovie.com\/","version":355,"lastModified":"1301901007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1e\/4bc920a8017a3c57fe00cf1e\/jumper-mid.jpg","studio":"New Regency Pictures","genre":"Action","title":"Jumper","releaseDate":1202256000000,"language":"en","type":"Movie","_key":"31879"} +{"label":"Bienvenue chez les ch'tis","description":"Philippe Abrams gets transferred from the south of France to the north in his job at the post office. But it doen't turn out as he had imagined.","id":"8265","runtime":106,"imdbId":"tt1064932","homepage":"http:\/\/www.bienvenuechezleschtis-lefilm.com\/","version":108,"lastModified":"1301901766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f46\/4bc920ae017a3c57fe00cf46\/bienvenue-chez-les-ch-tis-mid.jpg","studio":"Path\u00e9 Renn Productions","genre":"Comedy","title":"Bienvenue chez les ch'tis","releaseDate":1204070400000,"language":"en","type":"Movie","_key":"31880"} +{"label":"Nicolas Guy","version":23,"id":"54176","lastModified":"1301901897000","name":"Nicolas Guy","type":"Person","_key":"31881"} +{"label":"Zo\u00e9 F\u00e9lix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/579\/4d5172825e73d617b3004579\/zo-f-lix-profile.jpg","biography":"Zo\u00e9 F\u00e9lix est une actrice fran\u00e7aise n\u00e9e le 7 mai 1976 \u00e0 Paris d'une m\u00e8re attach\u00e9e de presse dans la mode et d'un p\u00e8re organisateur de concerts.","version":33,"birthday":"200271600000","id":"54165","birthplace":"Paris, France","lastModified":"1301901239000","name":"Zo\u00e9 F\u00e9lix","type":"Person","_key":"31882"} +{"label":"Line Renaud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/94b\/4d9642207b9aa12efa00094b\/line-renaud-profile.jpg","version":29,"id":"54167","lastModified":"1301901382000","name":"Line Renaud","type":"Person","_key":"31883"} +{"label":"Anne Marivin","version":49,"id":"54168","lastModified":"1301901297000","name":"Anne Marivin","type":"Person","_key":"31884"} +{"label":"Patrick Bosso","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b5e\/4d1b66385e73d665a6000b5e\/patrick-bosso-profile.jpg","version":29,"id":"54169","lastModified":"1301901377000","name":"Patrick Bosso","type":"Person","_key":"31885"} +{"label":"J\u00e9r\u00f4me Commandeur","version":25,"id":"54170","lastModified":"1301901338000","name":"J\u00e9r\u00f4me Commandeur","type":"Person","_key":"31886"} +{"label":"Philippe Duquesne","version":32,"id":"66032","lastModified":"1301901465000","name":"Philippe Duquesne","type":"Person","_key":"31887"} +{"label":"Female Agents","description":" May 1944, a group of French servicewomen and resistance fighters are enlisted into the British Special Operations Executive commando group under the command of Louise Desfontaines and her brother Pierre. Their mission, to rescue a British army geologist caught reconnoitering the beaches at Normandy.","id":"8266","runtime":118,"imdbId":"tt0824330","version":84,"lastModified":"1302039397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4bc920b0017a3c57fe00cf57\/les-femmes-de-l-ombre-mid.jpg","studio":"TF1 Films Productions","genre":"Action","title":"Female Agents","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"31888"} +{"label":"Jean-Paul Salom\u00e9","version":31,"id":"54222","lastModified":"1302060787000","name":"Jean-Paul Salom\u00e9","type":"Person","_key":"31889"} +{"label":"Marie Gillain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f5e\/4d1b9d3f5e73d6083400bf5e\/marie-gillain-profile.jpg","version":37,"birthday":"172278000000","id":"54227","birthplace":"Li\u00e8ge, Belgium","lastModified":"1301901224000","name":"Marie Gillain","type":"Person","_key":"31890"} +{"label":"D\u00e9borah Fran\u00e7ois","version":33,"id":"54228","lastModified":"1301901280000","name":"D\u00e9borah Fran\u00e7ois","type":"Person","_key":"31891"} +{"label":"Maya Sansa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a1\/4d79d4987b9aa11a140001a1\/maya-sansa-profile.jpg","version":28,"id":"54230","lastModified":"1301902277000","name":"Maya Sansa","type":"Person","_key":"31892"} +{"label":"Vincent Rottiers","version":28,"id":"54233","lastModified":"1301901675000","name":"Vincent Rottiers","type":"Person","_key":"31893"} +{"label":"David Capelle","version":21,"id":"54236","lastModified":"1301902369000","name":"David Capelle","type":"Person","_key":"31894"} +{"label":"El Ba\u00f1o del Papa","description":"No overview found.","id":"8267","runtime":90,"imdbId":"tt0482901","version":63,"lastModified":"1301904588000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6a\/4bc920b5017a3c57fe00cf6a\/el-bano-del-papa-mid.jpg","studio":"Chaya Films","genre":"Comedy","title":"El Ba\u00f1o del Papa","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"31895"} +{"label":"C\u00e9sar Charlone","version":55,"id":"8577","lastModified":"1302036388000","name":"C\u00e9sar Charlone","type":"Person","_key":"31896"} +{"label":"C\u00e9sar Troncoso","version":25,"id":"54190","lastModified":"1301906388000","name":"C\u00e9sar Troncoso","type":"Person","_key":"31897"} +{"label":"Virginia M\u00e9ndez","version":21,"id":"54191","lastModified":"1301902340000","name":"Virginia M\u00e9ndez","type":"Person","_key":"31898"} +{"label":"Virginia Ruiz","version":19,"id":"54573","lastModified":"1301902340000","name":"Virginia Ruiz","type":"Person","_key":"31899"} +{"label":"Mario Silva","version":21,"id":"54574","lastModified":"1301902340000","name":"Mario Silva","type":"Person","_key":"31900"} +{"label":"Jose Arce","version":19,"id":"54575","lastModified":"1301902340000","name":"Jose Arce","type":"Person","_key":"31901"} +{"label":"Henry De Leon","version":21,"id":"54576","lastModified":"1301902340000","name":"Henry De Leon","type":"Person","_key":"31902"} +{"label":"Rosario Dos Santos","version":21,"id":"54577","lastModified":"1301902340000","name":"Rosario Dos Santos","type":"Person","_key":"31903"} +{"label":"Nelson Lence","version":21,"id":"54578","lastModified":"1301902375000","name":"Nelson Lence","type":"Person","_key":"31904"} +{"label":"Hugo Blandamuro","version":21,"id":"54579","lastModified":"1301902369000","name":"Hugo Blandamuro","type":"Person","_key":"31905"} +{"label":"Survivre avec les loups","description":"No overview found.","id":"8268","runtime":118,"imdbId":"tt0962782","homepage":"http:\/\/www.bacfilms.com\/site\/survivre\/","version":81,"lastModified":"1301903601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/200\/4ca763565e73d643ee000200\/survivre-avec-les-loups-mid.jpg","studio":"St\u00e9phan Films","genre":"Drama","title":"Survivre avec les loups","releaseDate":1195603200000,"language":"en","type":"Movie","_key":"31906"} +{"label":"Mathilde Goffart","version":20,"id":"54192","lastModified":"1301901509000","name":"Mathilde Goffart","type":"Person","_key":"31907"} +{"label":"Anne-Marie Philipe","version":20,"id":"54209","lastModified":"1301901959000","name":"Anne-Marie Philipe","type":"Person","_key":"31908"} +{"label":"Promise Me This","description":"Set in a rural area of Belgrade. Tsane, a young boy, has to complete his dying grandfathers wish: to sell the cow and bring back the wife. ","id":"8269","runtime":137,"imdbId":"tt0479519","version":172,"lastModified":"1301905699000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bd\/4bf41656017a3c320f0005bd\/8269-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Comedy","title":"Promise Me This","releaseDate":1180137600000,"language":"en","type":"Movie","_key":"31909"} +{"label":"Marija Petronijevic","version":22,"id":"54185","lastModified":"1301901399000","name":"Marija Petronijevic","type":"Person","_key":"31910"} +{"label":"Uros Milovanovic","version":25,"id":"54186","lastModified":"1301902143000","name":"Uros Milovanovic","type":"Person","_key":"31911"} +{"label":"Aleksandar Ber\u010dek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/413\/4d6434837b9aa12975000413\/aleksandar-ber-ek-profile.jpg","version":31,"id":"54187","lastModified":"1302003042000","name":"Aleksandar Ber\u010dek","type":"Person","_key":"31912"} +{"label":"Ljiljana Blagojevic","version":26,"id":"54188","lastModified":"1301902325000","name":"Ljiljana Blagojevic","type":"Person","_key":"31913"} +{"label":"Vladan Milojevic","version":29,"id":"54189","lastModified":"1301902325000","name":"Vladan Milojevic","type":"Person","_key":"31914"} +{"label":"Stribor Kusturica","version":32,"id":"54183","lastModified":"1301902143000","name":"Stribor Kusturica","type":"Person","_key":"31915"} +{"label":"The Lookout","description":"Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist.","id":"8270","runtime":99,"imdbId":"tt0427470","trailer":"http:\/\/www.youtube.com\/watch?v=490","homepage":"http:\/\/video.movies.go.com\/thelookout\/","version":215,"lastModified":"1301902510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f92\/4bc920b8017a3c57fe00cf92\/the-lookout-mid.jpg","studio":"Laurence Mark Productions","genre":"Action","title":"The Lookout","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"31916"} +{"label":"Sergio Di Zio","version":23,"id":"54193","lastModified":"1301901538000","name":"Sergio Di Zio","type":"Person","_key":"31917"} +{"label":"Greg Dunham","version":22,"id":"54195","lastModified":"1301901476000","name":"Greg Dunham","type":"Person","_key":"31918"} +{"label":"Morgan Kelly","version":26,"id":"54198","lastModified":"1301901538000","name":"Morgan Kelly","type":"Person","_key":"31919"} +{"label":"Aaron Berg","version":22,"id":"54200","lastModified":"1301901476000","name":"Aaron Berg","type":"Person","_key":"31920"} +{"label":"Tinsel Korey","version":38,"id":"54203","lastModified":"1301901234000","name":"Tinsel Korey","type":"Person","_key":"31921"} +{"label":"Suzanne Kelly","version":22,"id":"54207","lastModified":"1301901615000","name":"Suzanne Kelly","type":"Person","_key":"31922"} +{"label":"Brian Edward Roach","version":25,"id":"54210","lastModified":"1301901476000","name":"Brian Edward Roach","type":"Person","_key":"31923"} +{"label":"Ofield Williams","version":24,"id":"54213","lastModified":"1301901476000","name":"Ofield Williams","type":"Person","_key":"31924"} +{"label":"Julie Pederson","version":22,"id":"54214","lastModified":"1301901476000","name":"Julie Pederson","type":"Person","_key":"31925"} +{"label":"Stephen Eric McIntyre","version":25,"id":"54216","lastModified":"1301901476000","name":"Stephen Eric McIntyre","type":"Person","_key":"31926"} +{"label":"Janaya Stephens","version":25,"id":"54217","lastModified":"1301901686000","name":"Janaya Stephens","type":"Person","_key":"31927"} +{"label":"Marc Devigne","version":25,"id":"54218","lastModified":"1301901430000","name":"Marc Devigne","type":"Person","_key":"31928"} +{"label":"Courtney-Jane White","version":24,"id":"54219","lastModified":"1301901476000","name":"Courtney-Jane White","type":"Person","_key":"31929"} +{"label":"Thanya Romero","version":22,"id":"54220","lastModified":"1301901615000","name":"Thanya Romero","type":"Person","_key":"31930"} +{"label":"Paul Christie","version":28,"id":"54221","lastModified":"1301901546000","name":"Paul Christie","type":"Person","_key":"31931"} +{"label":"Tracy McMahon","version":24,"id":"54223","lastModified":"1301901476000","name":"Tracy McMahon","type":"Person","_key":"31932"} +{"label":"Gordie Farrell","version":22,"id":"54224","lastModified":"1301901476000","name":"Gordie Farrell","type":"Person","_key":"31933"} +{"label":"Toni Reimer","version":22,"id":"54225","lastModified":"1301901476000","name":"Toni Reimer","type":"Person","_key":"31934"} +{"label":"Ted Felbel","version":22,"id":"54226","lastModified":"1301901476000","name":"Ted Felbel","type":"Person","_key":"31935"} +{"label":"Charles Crossin","version":24,"id":"54229","lastModified":"1301901476000","name":"Charles Crossin","type":"Person","_key":"31936"} +{"label":"Chuck Robinson","version":24,"id":"54232","lastModified":"1301901538000","name":"Chuck Robinson","type":"Person","_key":"31937"} +{"label":"Kalyn Bomback","version":23,"id":"54234","lastModified":"1301901511000","name":"Kalyn Bomback","type":"Person","_key":"31938"} +{"label":"John Bluethner","version":22,"id":"54235","lastModified":"1301901476000","name":"John Bluethner","type":"Person","_key":"31939"} +{"label":"Leslie Bais","version":23,"id":"54237","lastModified":"1301901469000","name":"Leslie Bais","type":"Person","_key":"31940"} +{"label":"Harry Nelken","version":24,"id":"54238","lastModified":"1301901489000","name":"Harry Nelken","type":"Person","_key":"31941"} +{"label":"Laura Vandervoort","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/604\/4cfa86ff5e73d62999002604\/laura-vandervoort-profile.jpg","version":29,"id":"43286","lastModified":"1301901252000","name":"Laura Vandervoort","type":"Person","_key":"31942"} +{"label":"Disturbia","description":"Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.","id":"8271","runtime":105,"imdbId":"tt0486822","homepage":"http:\/\/www.disturbia.com\/","version":236,"lastModified":"1301901689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6b\/4d4caf297b9aa13aaf007f6b\/disturbia-mid.jpg","studio":"DreamWorks SKG","genre":"Horror","title":"Disturbia","releaseDate":1176422400000,"language":"en","tagline":"The quieter the street, the darker the secrets....","type":"Movie","_key":"31943"} +{"label":"D.J. Caruso","version":55,"id":"40256","lastModified":"1301901121000","name":"D.J. Caruso","type":"Person","_key":"31944"} +{"label":"The Savages","description":"A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.","id":"8272","runtime":114,"imdbId":"tt0775529","trailer":"http:\/\/www.youtube.com\/watch?v=494","homepage":"http:\/\/www.foxsearchlight.com\/thesavages","version":220,"lastModified":"1301903213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe9\/4bc920c6017a3c57fe00cfe9\/the-savages-mid.jpg","studio":"Lone Star Corporation","genre":"Drama","title":"The Savages","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"31945"} +{"label":"Tamara Jenkins","version":24,"id":"54240","lastModified":"1301901538000","name":"Tamara Jenkins","type":"Person","_key":"31946"} +{"label":"Peter Friedman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4ce5a80a7b9aa179bc0000d4\/peter-friedman-profile.jpg","version":49,"id":"54246","lastModified":"1301901241000","name":"Peter Friedman","type":"Person","_key":"31947"} +{"label":"American Wedding","description":"With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.","id":"8273","runtime":96,"imdbId":"tt0328828","trailer":"http:\/\/www.youtube.com\/watch?v=YmIIHsPa2F8","version":259,"lastModified":"1301902749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68e\/4c5cbdbb5e73d63a6f00068e\/american-wedding-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"American Wedding","releaseDate":1059004800000,"language":"en","tagline":"Forever hold your piece.","type":"Movie","_key":"31948"} +{"label":"Jesse Dylan","version":32,"id":"54584","lastModified":"1301901615000","name":"Jesse Dylan","type":"Person","_key":"31949"} +{"label":"Amanda Swisten","version":37,"id":"54587","lastModified":"1301901487000","name":"Amanda Swisten","type":"Person","_key":"31950"} +{"label":"Nikki Schieler Ziering","version":27,"id":"54588","lastModified":"1301901732000","name":"Nikki Schieler Ziering","type":"Person","_key":"31951"} +{"label":"Alexis Thorpe","version":32,"id":"41504","lastModified":"1301904093000","name":"Alexis Thorpe","type":"Person","_key":"31952"} +{"label":"Reynaldo Gallegos","version":24,"id":"54589","lastModified":"1301901740000","name":"Reynaldo Gallegos","type":"Person","_key":"31953"} +{"label":"American Pie Presents: Band Camp","description":"The original American Pie characters have moved on, except for Sherman and Jim Levenstein's still understanding dad. Steve Stifler's little brother Matt wants to join his brother's business (the hit it big Girls Gone Wild) and after everything Matt has heard from Jim's band-geek wife Michelle, he plans to go back to band camp and make a video of his own: Bandies Gone Wild!","id":"8274","runtime":97,"imdbId":"tt0436058","trailer":"http:\/\/www.youtube.com\/watch?v=UynpzQXSOI8","version":215,"lastModified":"1301901859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cde\/4d4cd2d05e73d617ba001cde\/american-pie-presents-band-camp-mid.jpg","studio":"Rogue Pictures","genre":"Comedy","title":"American Pie Presents: Band Camp","releaseDate":1130716800000,"language":"en","type":"Movie","_key":"31954"} +{"label":"Steve Rash","version":59,"id":"54590","lastModified":"1302012203000","name":"Steve Rash","type":"Person","_key":"31955"} +{"label":"Tad Hilgenbrink","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4da\/4d8f20005e73d663620014da\/tad-hilgenbrink-profile.jpg","version":39,"id":"54593","lastModified":"1302012203000","name":"Tad Hilgenbrink","type":"Person","_key":"31956"} +{"label":"Jason Earles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/74e\/4d8f203f5e73d65ed600174e\/jason-earles-profile.jpg","version":37,"id":"54594","lastModified":"1302012203000","name":"Jason Earles","type":"Person","_key":"31957"} +{"label":"Crystle Lightning","version":28,"id":"26929","lastModified":"1301901362000","name":"Crystle Lightning","type":"Person","_key":"31958"} +{"label":"Matt Barr","version":26,"id":"26970","lastModified":"1301901413000","name":"Matt Barr","type":"Person","_key":"31959"} +{"label":"Jun Hee Lee","version":34,"id":"26997","lastModified":"1301901293000","name":"Jun Hee Lee","type":"Person","_key":"31960"} +{"label":"Lauren C. Mayhew","version":26,"id":"27016","lastModified":"1301901459000","name":"Lauren C. Mayhew","type":"Person","_key":"31961"} +{"label":"Angela Little","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/855\/4d8f22905e73d65f11001855\/angela-little-profile.jpg","version":41,"id":"54595","lastModified":"1301901413000","name":"Angela Little","type":"Person","_key":"31962"} +{"label":"Jennifer Walcott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4da\/4be0a06f017a3c35bf0004da\/jennifer-walcott-profile.jpg","version":25,"id":"116300","lastModified":"1301903010000","name":"Jennifer Walcott","type":"Person","_key":"31963"} +{"label":"American Pie Presents: The Naked Mile","description":"The movie will shift its focus on Erik Stifler, the cousin of Matt and Steve, a youngster who is nothing like his wild relations. Peer pressure starts to turn him to live up to the legacy of the other Stiflers when he attends the Naked Mile, a naked run across the college campus. Things get worse when he finds that his cousin Dwight is the life of the party down at the campus","id":"8275","runtime":90,"imdbId":"tt0808146","version":207,"lastModified":"1301902093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4bc920d1017a3c57fe00d023\/american-pie-presents-the-naked-mile-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"American Pie Presents: The Naked Mile","releaseDate":1165968000000,"language":"en","type":"Movie","_key":"31964"} +{"label":"Joe Nussbaum","version":49,"id":"54597","lastModified":"1301901715000","name":"Joe Nussbaum","type":"Person","_key":"31965"} +{"label":"John White","version":33,"id":"26973","lastModified":"1301901196000","name":"John White","type":"Person","_key":"31966"} +{"label":"Jessy Schram","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/71a\/4cd9d21e7b9aa11b2600071a\/jessy-schram-profile.jpg","version":51,"id":"26974","lastModified":"1301901120000","name":"Jessy Schram","type":"Person","_key":"31967"} +{"label":"Steve Talley","version":39,"id":"26975","lastModified":"1301901178000","name":"Steve Talley","type":"Person","_key":"31968"} +{"label":"Jordan Prentice","version":38,"id":"54476","lastModified":"1301901360000","name":"Jordan Prentice","type":"Person","_key":"31969"} +{"label":"Jake Siegel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/91a\/4d8f2d615e73d65f1100191a\/jake-siegel-profile.jpg","version":40,"id":"54598","lastModified":"1301901324000","name":"Jake Siegel","type":"Person","_key":"31970"} +{"label":"I've Loved You So Long","description":"A woman struggles to interact with her family and find her place in society after spending fifteen years in prison.","id":"8276","runtime":115,"imdbId":"tt1068649","trailer":"http:\/\/www.youtube.com\/watch?v=AlMPS_qcRaM","homepage":"http:\/\/www.ilyalongtempsquejetaime-lefilm.com\/","version":186,"lastModified":"1301905970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/034\/4bc920d2017a3c57fe00d034\/il-y-a-longtemps-que-je-t-aime-mid.jpg","studio":"UGC Images","genre":"Drama","title":"I've Loved You So Long","releaseDate":1205884800000,"language":"en","type":"Movie","_key":"31971"} +{"label":"Philippe Claudel","version":23,"id":"54273","lastModified":"1301902381000","name":"Philippe Claudel","type":"Person","_key":"31972"} +{"label":"Serge Hazanavicius","version":25,"id":"54274","lastModified":"1301901566000","name":"Serge Hazanavicius","type":"Person","_key":"31973"} +{"label":"Claire Johnston","version":24,"id":"54275","lastModified":"1301902154000","name":"Claire Johnston","type":"Person","_key":"31974"} +{"label":"Lise S\u00e9gur","version":22,"id":"54276","lastModified":"1301902015000","name":"Lise S\u00e9gur","type":"Person","_key":"31975"} +{"label":"Jean-Claude Arnaud","version":22,"id":"54277","lastModified":"1301901959000","name":"Jean-Claude Arnaud","type":"Person","_key":"31976"} +{"label":"Mouss","version":20,"id":"54278","lastModified":"1301901787000","name":"Mouss","type":"Person","_key":"31977"} +{"label":"Souad Mouchrik","version":22,"id":"54279","lastModified":"1301902154000","name":"Souad Mouchrik","type":"Person","_key":"31978"} +{"label":"Catherine Hosmalin","version":32,"id":"54280","lastModified":"1301901565000","name":"Catherine Hosmalin","type":"Person","_key":"31979"} +{"label":"Olivier Cruveiller","version":22,"id":"54281","lastModified":"1301902181000","name":"Olivier Cruveiller","type":"Person","_key":"31980"} +{"label":"Lily-Rose","version":22,"id":"54282","lastModified":"1301902154000","name":"Lily-Rose","type":"Person","_key":"31981"} +{"label":"American Pie Presents: Beta House","description":"Erik, Ryan, and Cooze start college and pledge the Beta House fraternity, presided over by none other than legendary Dwight Stifler. But chaos ensues when a fraternity of geeks threatens to stop the debauchery and the Betas have to make a stand for their right to party.","id":"8277","runtime":85,"imdbId":"tt0974959","trailer":"http:\/\/www.youtube.com\/watch?v=pIs3HLPvOKk","version":781,"lastModified":"1301902782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d0\/4c014125017a3c70310011d0\/american-pie-presents-beta-house-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"American Pie Presents: Beta House","releaseDate":1197244800000,"language":"en","type":"Movie","_key":"31982"} +{"label":"Andrew Waller","version":23,"id":"26971","lastModified":"1301901670000","name":"Andrew Waller","type":"Person","_key":"31983"} +{"label":"Nic Nac","version":31,"id":"27019","lastModified":"1301901178000","name":"Nic Nac","type":"Person","_key":"31984"} +{"label":"Meghan Heffern","version":38,"id":"27004","lastModified":"1301901204000","name":"Meghan Heffern","type":"Person","_key":"31985"} +{"label":"Paris","description":"Pierre, a professional dancer, suffers from a serious heart disease. While he is waiting for a transplant which may (or may not) save his life, he has nothing better to do than look at the people around him, from the balcony of his Paris apartment. When Elise, his sister with three kids and no husband, moves in to his place to care for him, Pierre does not change his new habits. And instead of dan","id":"8279","runtime":130,"imdbId":"tt0869994","trailer":"http:\/\/www.youtube.com\/watch?v=Zo3JpFGmrbo","version":250,"lastModified":"1301902511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04f\/4bc920d5017a3c57fe00d04f\/paris-mid.jpg","studio":"Studio Canal","genre":"Drama","title":"Paris","releaseDate":1203465600000,"language":"en","type":"Movie","_key":"31986"} +{"label":"Gilles Lellouche","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07a\/4cef09b85e73d66b0700007a\/gilles-lellouche-profile.jpg","version":79,"id":"54291","lastModified":"1301901137000","name":"Gilles Lellouche","type":"Person","_key":"31987"} +{"label":"Julie Ferrier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abd\/4d1ba2d45e73d6082e00babd\/julie-ferrier-profile.jpg","version":44,"id":"54292","lastModified":"1301901134000","name":"Julie Ferrier","type":"Person","_key":"31988"} +{"label":"Xavier Robic","version":22,"id":"54293","lastModified":"1301902277000","name":"Xavier Robic","type":"Person","_key":"31989"} +{"label":"Farida Khelfa","version":31,"id":"54294","lastModified":"1301902334000","name":"Farida Khelfa","type":"Person","_key":"31990"} +{"label":"Suzanne Von Aichinger","version":22,"id":"54295","lastModified":"1301902277000","name":"Suzanne Von Aichinger","type":"Person","_key":"31991"} +{"label":"The Secret of the Grain","description":"At the port of S\u00e8te, Mr. Slimani, a tired 60-year-old, drags himself toward a shipyard job that has become more and more difficult to cope with as the years go by. He is a divorced father who forces himself to stay close to his family despite the schisms and tensions that are easily sparked off and that financial difficulties make even more intense. He is going through a delicate period in his life and, recently, everything seems to make him feel useless: a failure. He wants to escape from it al","id":"8280","runtime":151,"imdbId":"tt0487419","trailer":"http:\/\/www.youtube.com\/watch?v=RrZmflGG8-U","homepage":"http:\/\/www.lagraineetlemulet-lefilm.com\/","version":157,"lastModified":"1301907509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/060\/4bc920d9017a3c57fe00d060\/la-graine-et-le-mulet-mid.jpg","studio":"Path\u00e9 Renn Productions","genre":"Drama","title":"The Secret of the Grain","releaseDate":1197417600000,"language":"en","type":"Movie","_key":"31992"} +{"label":"Carlo Da Fonseca Parsotam","version":19,"id":"54334","lastModified":"1301901885000","name":"Carlo Da Fonseca Parsotam","type":"Person","_key":"31993"} +{"label":"Habib Boufares","version":21,"id":"54337","lastModified":"1301901732000","name":"Habib Boufares","type":"Person","_key":"31994"} +{"label":"Hafsia Herzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ad\/4d7b5de75e73d628280011ad\/hafsia-herzi-profile.jpg","version":35,"birthday":"538527600000","id":"54338","lastModified":"1301901564000","name":"Hafsia Herzi","type":"Person","_key":"31995"} +{"label":"Farida Benkhetache","version":19,"id":"54339","lastModified":"1301901901000","name":"Farida Benkhetache","type":"Person","_key":"31996"} +{"label":"Abdelhamid Aktouche","version":21,"id":"54340","lastModified":"1301902098000","name":"Abdelhamid Aktouche","type":"Person","_key":"31997"} +{"label":"Bouraou\u00efa Marzouk","version":19,"id":"54341","lastModified":"1301902110000","name":"Bouraou\u00efa Marzouk","type":"Person","_key":"31998"} +{"label":"Alice Houri","version":24,"id":"54342","lastModified":"1301902098000","name":"Alice Houri","type":"Person","_key":"31999"} +{"label":"Leila D'Issernio","version":21,"id":"54343","lastModified":"1301902277000","name":"Leila D'Issernio","type":"Person","_key":"32000"} +{"label":"Abelkader Djeloulli","version":21,"id":"54344","lastModified":"1301902277000","name":"Abelkader Djeloulli","type":"Person","_key":"32001"} +{"label":"Sami Zitouni","version":21,"id":"71376","lastModified":"1301902277000","name":"Sami Zitouni","type":"Person","_key":"32002"} +{"label":"Bruno Lochet","version":34,"id":"71377","lastModified":"1301901574000","name":"Bruno Lochet","type":"Person","_key":"32003"} +{"label":"Olivier Loustau","version":23,"id":"71378","lastModified":"1301902277000","name":"Olivier Loustau","type":"Person","_key":"32004"} +{"label":"Mohamed Karaoui","version":19,"id":"71379","lastModified":"1301902296000","name":"Mohamed Karaoui","type":"Person","_key":"32005"} +{"label":"Cyril Favre","version":21,"id":"71382","lastModified":"1301902277000","name":"Cyril Favre","type":"Person","_key":"32006"} +{"label":"J'ai toujours r\u00eav\u00e9 d'\u00eatre un gangster","description":"No overview found.","id":"8281","runtime":108,"imdbId":"tt0827713","version":47,"lastModified":"1301903078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4bc920da017a3c57fe00d06d\/j-ai-toujours-reve-d-etre-un-gangster-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Crime","title":"J'ai toujours r\u00eav\u00e9 d'\u00eatre un gangster","releaseDate":1206489600000,"language":"en","type":"Movie","_key":"32007"} +{"label":"Samuel Benchetrit","version":21,"id":"54296","lastModified":"1301901959000","name":"Samuel Benchetrit","type":"Person","_key":"32008"} +{"label":"Eric Pujol","version":20,"id":"54330","lastModified":"1301901959000","name":"Eric Pujol","type":"Person","_key":"32009"} +{"label":"Anna Mouglalis","version":37,"id":"54327","lastModified":"1301901402000","name":"Anna Mouglalis","type":"Person","_key":"32010"} +{"label":"Summer Hours","description":"Two brothers and a sister witness the disappearance of their childhood memories when they must relinquish the family belongings to ensure their deceased mother's succession.","id":"8282","runtime":100,"imdbId":"tt0836700","trailer":"http:\/\/www.youtube.com\/watch?v=w3sXf4aEygs","homepage":"http:\/\/www.lheuredete-film.mk2.com\/","version":197,"lastModified":"1301904627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4bc920db017a3c57fe00d07e\/l-heure-d-ete-mid.jpg","studio":"MK2 Productions","genre":"Comedy","title":"Summer Hours","releaseDate":1204675200000,"language":"en","type":"Movie","_key":"32011"} +{"label":"Matthew Gledhill","version":20,"id":"54323","lastModified":"1301901937000","name":"Matthew Gledhill","type":"Person","_key":"32012"} +{"label":"Val\u00e9rie Bonneton","version":30,"id":"54324","lastModified":"1301941496000","name":"Val\u00e9rie Bonneton","type":"Person","_key":"32013"} +{"label":"Kyle Eastwood","version":28,"id":"33525","lastModified":"1301901690000","name":"Kyle Eastwood","type":"Person","_key":"32014"} +{"label":"Alice de Lencquesaing","version":21,"id":"54325","lastModified":"1301902308000","name":"Alice de Lencquesaing","type":"Person","_key":"32015"} +{"label":"Emile Berling","version":33,"id":"54326","lastModified":"1301901488000","name":"Emile Berling","type":"Person","_key":"32016"} +{"label":"Diameter of the Bomb","description":"No overview found.","id":"8283","runtime":86,"imdbId":"tt0441754","version":125,"lastModified":"1301904720000","studio":"Rainmaker Films","genre":"Documentary","title":"Diameter of the Bomb","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"32017"} +{"label":"Andrew Quigley","version":21,"id":"31733","lastModified":"1301901665000","name":"Andrew Quigley","type":"Person","_key":"32018"} +{"label":"Steven Silver","version":20,"id":"54297","lastModified":"1301901994000","name":"Steven Silver","type":"Person","_key":"32019"} +{"label":"The Limits of Control","description":"The Limits of Control is the story of a mysterious loner (played by Mr. De Bankol\u00e9), a stranger, whose activities remain meticulously outside the law. He is in the process of completing a job, yet he trusts no one, and his objectives are not initially divulged.\n\nHis journey, paradoxically both intently focused and dreamlike, takes him not only across Spain but also through his own consciousness.","id":"8284","runtime":116,"imdbId":"tt1135092","trailer":"http:\/\/www.youtube.com\/watch?v=hvRS4ivLIJo","version":313,"lastModified":"1302052857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc920df017a3c57fe00d093\/the-limits-of-control-mid.jpg","studio":"PointBlank Films","genre":"Drama","title":"The Limits of Control","releaseDate":1241136000000,"language":"en","type":"Movie","_key":"32020"} +{"label":"Paz de la Huerta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b74\/4d41fbf45e73d65725000b74\/paz-de-la-huerta-profile.jpg","version":42,"id":"59882","lastModified":"1301901172000","name":"Paz de la Huerta","type":"Person","_key":"32021"} +{"label":"The Spirit","description":"Down these mean streets a man must come. A hero born, murdered, and born again. When a Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City. The Octopus who kills anyone unfortunate enough to see his face who has other plans. He's going to wipe out the entire city.","id":"8285","runtime":108,"imdbId":"tt0831887","trailer":"http:\/\/www.youtube.com\/watch?v=817","version":286,"lastModified":"1301906802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e3\/4bc920ed017a3c57fe00d0e3\/the-spirit-mid.jpg","studio":"Lionsgate","genre":"Action","title":"The Spirit","releaseDate":1230163200000,"language":"en","tagline":"I'm gonna kill you all kinds of dead.","type":"Movie","_key":"32022"} +{"label":"The Unfaithful Wife","description":"Insurance executive Charles suspects his wife H\u00e9l\u00e8ne of playing the field, so he has a private detective locate his wife's lover, author Victor Pegala. Confronting Victor, Charles tries to adopt an air of indifference, but the conversation ends with the husband bludgeoning the author to death and then calmly disposing of the evidence. When H\u00e9l\u00e8ne is questioned about Victor's murder, she discovers on her own that her husband is guilty. Instead of turning him in, H\u00e9l\u00e8ne is so thrilled that Charles","id":"8286","runtime":98,"imdbId":"tt0064323","version":133,"lastModified":"1301905680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/837\/4be37c13017a3c35c1000837\/la-femme-infidele-mid.jpg","studio":"Les Films de la Bo\u00e9tie","genre":"Drama","title":"The Unfaithful Wife","releaseDate":-29721600000,"language":"en","type":"Movie","_key":"32023"} +{"label":"Fran\u00e7ois Moro-Giafferi","version":22,"id":"55991","lastModified":"1301902340000","name":"Fran\u00e7ois Moro-Giafferi","type":"Person","_key":"32024"} +{"label":"Draussen bleiben","description":"No overview found.","id":"8287","runtime":84,"imdbId":"tt1161734","homepage":"http:\/\/www.draussenbleiben.de\/","version":52,"lastModified":"1301904475000","studio":"pellefilm","genre":"Documentary","title":"Draussen bleiben","releaseDate":1193184000000,"language":"en","type":"Movie","_key":"32025"} +{"label":"Alexander Riedel","version":21,"id":"54298","lastModified":"1301901522000","name":"Alexander Riedel","type":"Person","_key":"32026"} +{"label":"Valentina Llazicani","version":20,"id":"54304","lastModified":"1301901496000","name":"Valentina Llazicani","type":"Person","_key":"32027"} +{"label":"Suli Kurban","version":20,"id":"54305","lastModified":"1301901787000","name":"Suli Kurban","type":"Person","_key":"32028"} +{"label":"Diana Cisse","version":20,"id":"54306","lastModified":"1301901496000","name":"Diana Cisse","type":"Person","_key":"32029"} +{"label":"Zulpi Kurban","version":20,"id":"54307","lastModified":"1301901566000","name":"Zulpi Kurban","type":"Person","_key":"32030"} +{"label":"Burkibar Cisse","version":20,"id":"54308","lastModified":"1301902153000","name":"Burkibar Cisse","type":"Person","_key":"32031"} +{"label":"Anthony Fazzini","version":16,"id":"54309","lastModified":"1301902340000","name":"Anthony Fazzini","type":"Person","_key":"32032"} +{"label":"Ajmane Llazicani","version":16,"id":"54310","lastModified":"1301902153000","name":"Ajmane Llazicani","type":"Person","_key":"32033"} +{"label":"Murat Llazicani","version":16,"id":"54311","lastModified":"1301902153000","name":"Murat Llazicani","type":"Person","_key":"32034"} +{"label":"Marvan Gobitaka","version":16,"id":"54312","lastModified":"1301902153000","name":"Marvan Gobitaka","type":"Person","_key":"32035"} +{"label":"Yasmin Karabza","version":16,"id":"54313","lastModified":"1301902340000","name":"Yasmin Karabza","type":"Person","_key":"32036"} +{"label":"Layla Karabaza","version":16,"id":"54314","lastModified":"1301902153000","name":"Layla Karabaza","type":"Person","_key":"32037"} +{"label":"Manusha Kadrijaj","version":16,"id":"54315","lastModified":"1301902340000","name":"Manusha Kadrijaj","type":"Person","_key":"32038"} +{"label":"Danja Huysen","version":16,"id":"54316","lastModified":"1301902153000","name":"Danja Huysen","type":"Person","_key":"32039"} +{"label":"Leila Faburi","version":16,"id":"54317","lastModified":"1301902153000","name":"Leila Faburi","type":"Person","_key":"32040"} +{"label":"A Midsummer Night's Sex Comedy","description":"Centred around a weekend party at the home of inventor Andrew Hobbs and his wife Adrian, attended by randy doctor Maxwell Jordan, his nurse Dulcy, renowned philosopher Dr.Leopold Sturgis and his fianc\u00e9e, this is a light comedy concerning their various emotional, intellectual and sexual entanglements, loosely based on Ingmar Bergman's 'Smiles of a Summer Night' .","id":"8288","runtime":88,"imdbId":"tt0084329","version":370,"lastModified":"1301904754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01e\/4c034331017a3c351900001e\/a-midsummer-night-s-sex-comedy-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"A Midsummer Night's Sex Comedy","releaseDate":395625600000,"language":"en","type":"Movie","_key":"32041"} +{"label":"Moishe Rosenfeld","version":22,"id":"54345","lastModified":"1301901687000","name":"Moishe Rosenfeld","type":"Person","_key":"32042"} +{"label":"Adam Redfield","version":22,"id":"54346","lastModified":"1301901687000","name":"Adam Redfield","type":"Person","_key":"32043"} +{"label":"Timothy Jenkins","version":22,"id":"54347","lastModified":"1301901651000","name":"Timothy Jenkins","type":"Person","_key":"32044"} +{"label":"Kate McGregor-Stewart","version":22,"id":"54348","lastModified":"1301901695000","name":"Kate McGregor-Stewart","type":"Person","_key":"32045"} +{"label":"Gorky Park","description":"No overview found.","id":"8289","runtime":128,"imdbId":"tt0085615","trailer":"http:\/\/www.youtube.com\/watch?v=oFHA1lTx3Mk","version":128,"lastModified":"1301905856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/104\/4bc920f2017a3c57fe00d104\/gorky-park-mid.jpg","studio":"Eagle Associates","genre":"Drama","title":"Gorky Park","releaseDate":439430400000,"language":"en","type":"Movie","_key":"32046"} +{"label":"Don't Look Now: We're Being Shot At","description":"During World War II, two French civilians and a downed English Bomber Crew set out from Paris to cross the demarcation line between Nazi-occupied Northern France and the South. From there they will be able to to escape to England. First, they must avoid German troops - and the consequences of their own blunders.","id":"8290","runtime":132,"imdbId":"tt0060474","version":205,"lastModified":"1301902066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4ce3fc565e73d60f7100062e\/la-grande-vadrouille-mid.jpg","studio":"Les Films Corona","genre":"Comedy","title":"Don't Look Now: We're Being Shot At","releaseDate":-96768000000,"language":"en","type":"Movie","_key":"32047"} +{"label":"Henri G\u00e9n\u00e8s","version":29,"id":"54376","lastModified":"1301901430000","name":"Henri G\u00e9n\u00e8s","type":"Person","_key":"32048"} +{"label":"Colette Brosset","version":26,"id":"54377","lastModified":"1301901885000","name":"Colette Brosset","type":"Person","_key":"32049"} +{"label":"Catherine Marshall","version":26,"id":"54378","lastModified":"1301901732000","name":"Catherine Marshall","type":"Person","_key":"32050"} +{"label":"Rudy Lenoir","version":26,"id":"54379","lastModified":"1301901885000","name":"Rudy Lenoir","type":"Person","_key":"32051"} +{"label":"Jacques Bodoin","version":26,"id":"54380","lastModified":"1301901885000","name":"Jacques Bodoin","type":"Person","_key":"32052"} +{"label":"Cl\u00e9ment Michu","version":26,"id":"24783","lastModified":"1301901731000","name":"Cl\u00e9ment Michu","type":"Person","_key":"32053"} +{"label":"Jean Droze","version":29,"id":"54381","lastModified":"1301901615000","name":"Jean Droze","type":"Person","_key":"32054"} +{"label":"Paul Mercey","version":32,"id":"54382","lastModified":"1301901496000","name":"Paul Mercey","type":"Person","_key":"32055"} +{"label":"Jean Minisini","version":26,"id":"54383","lastModified":"1301901885000","name":"Jean Minisini","type":"Person","_key":"32056"} +{"label":"Georges Atlas","version":27,"id":"54384","lastModified":"1301901885000","name":"Georges Atlas","type":"Person","_key":"32057"} +{"label":"Dani\u00e8le Thompson","version":68,"id":"1963","lastModified":"1300026984000","name":"Dani\u00e8le Thompson","type":"Person","_key":"32058"} +{"label":"Andr\u00e9 B\u00e9zu","version":22,"id":"54385","lastModified":"1301901430000","name":"Andr\u00e9 B\u00e9zu","type":"Person","_key":"32059"} +{"label":"Edouard Pignon","version":26,"id":"54386","lastModified":"1301901885000","name":"Edouard Pignon","type":"Person","_key":"32060"} +{"label":"R\u00e9my Julienne","version":26,"id":"54387","lastModified":"1301901885000","name":"R\u00e9my Julienne","type":"Person","_key":"32061"} +{"label":"Mag-Avril","version":24,"id":"54388","lastModified":"1301901431000","name":"Mag-Avril","type":"Person","_key":"32062"} +{"label":"Pierre Roussel","version":26,"id":"54389","lastModified":"1301901885000","name":"Pierre Roussel","type":"Person","_key":"32063"} +{"label":"Helmuth Schneider","version":28,"id":"26439","lastModified":"1301901672000","name":"Helmuth Schneider","type":"Person","_key":"32064"} +{"label":"Christian Brocard","version":26,"id":"54391","lastModified":"1301901885000","name":"Christian Brocard","type":"Person","_key":"32065"} +{"label":"Claude Salez","version":26,"id":"54392","lastModified":"1301901884000","name":"Claude Salez","type":"Person","_key":"32066"} +{"label":"Percival Russel","version":26,"id":"54393","lastModified":"1301901884000","name":"Percival Russel","type":"Person","_key":"32067"} +{"label":"Raymond Pierson","version":26,"id":"54394","lastModified":"1301901884000","name":"Raymond Pierson","type":"Person","_key":"32068"} +{"label":"Guy Bonnafoux","version":26,"id":"54395","lastModified":"1301901884000","name":"Guy Bonnafoux","type":"Person","_key":"32069"} +{"label":"Tony R\u00f6del","version":24,"id":"54396","lastModified":"1301901884000","name":"Tony R\u00f6del","type":"Person","_key":"32070"} +{"label":"Pierre Bastien","version":26,"id":"54397","lastModified":"1301901884000","name":"Pierre Bastien","type":"Person","_key":"32071"} +{"label":"Peter Jacob","version":26,"id":"54398","lastModified":"1301901430000","name":"Peter Jacob","type":"Person","_key":"32072"} +{"label":"No\u00ebl Darzal","version":26,"id":"54399","lastModified":"1301901884000","name":"No\u00ebl Darzal","type":"Person","_key":"32073"} +{"label":"Jacques Sablon","version":26,"id":"54400","lastModified":"1301901430000","name":"Jacques Sablon","type":"Person","_key":"32074"} +{"label":"Conrad Von Bork","version":22,"id":"54401","lastModified":"1301901430000","name":"Conrad Von Bork","type":"Person","_key":"32075"} +{"label":"Jerry Brouer","version":26,"id":"54402","lastModified":"1301901884000","name":"Jerry Brouer","type":"Person","_key":"32076"} +{"label":"Jean-Pierre Posier","version":26,"id":"54403","lastModified":"1301901884000","name":"Jean-Pierre Posier","type":"Person","_key":"32077"} +{"label":"G. Birt","version":22,"id":"54405","lastModified":"1301901430000","name":"G. Birt","type":"Person","_key":"32078"} +{"label":"Nicolas Bang","version":26,"id":"54406","lastModified":"1301901884000","name":"Nicolas Bang","type":"Person","_key":"32079"} +{"label":"P. Stutz","version":22,"id":"54407","lastModified":"1301901430000","name":"P. Stutz","type":"Person","_key":"32080"} +{"label":"H. Faupel","version":22,"id":"54408","lastModified":"1301901430000","name":"H. Faupel","type":"Person","_key":"32081"} +{"label":"Charly Constant","version":22,"id":"54409","lastModified":"1301901430000","name":"Charly Constant","type":"Person","_key":"32082"} +{"label":"Sacha Tarride","version":26,"id":"54410","lastModified":"1301901884000","name":"Sacha Tarride","type":"Person","_key":"32083"} +{"label":"Joachim Westhoff","version":24,"id":"54411","lastModified":"1301901615000","name":"Joachim Westhoff","type":"Person","_key":"32084"} +{"label":"Anne Berger","version":26,"id":"54412","lastModified":"1301901884000","name":"Anne Berger","type":"Person","_key":"32085"} +{"label":"Horst Miessner","version":22,"id":"54413","lastModified":"1301901430000","name":"Horst Miessner","type":"Person","_key":"32086"} +{"label":"Poetic Justice","description":"No overview found.","id":"8291","runtime":109,"imdbId":"tt0107840","homepage":"www.janetjackson.com","version":437,"lastModified":"1301905764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11f\/4bc920f8017a3c57fe00d11f\/poetic-justice-mid.jpg","studio":"New Deal Productions","genre":"Drama","title":"Poetic Justice","releaseDate":743385600000,"language":"en","type":"Movie","_key":"32087"} +{"label":"Janet Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/791\/4d7d2f007b9aa13f87001791\/janet-jackson-profile.jpg","biography":"<FONT size=3><FONT face=Calibri><SPAN style=\"mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin\">Janet Damita Jo Jackson was born on <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:date w:st=\"on\" ls=\"trans\" Month=\"5\" Day=\"16\" Year=\"19\">May 16, 19<\/st1:date>66 in Gary, Indiana. She is the youngest of several brothers and sisters who were all talented musicians. Her brothers went on to form the highly successful band, The Jackson 5 and later, Jane","version":49,"birthday":"-114570000000","id":"54421","birthplace":"Gary, Indiana, USA","lastModified":"1301901172000","name":"Janet Jackson","type":"Person","_key":"32088"} +{"label":"Tupac Shakur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4c14f5dc5e73d64a240000e6\/tupac-shakur-profile.jpg","biography":"Born in New York City and grew up primarily in Harlem. One of the most successful Hip Hop MCs of all time.","version":35,"id":"54422","lastModified":"1302059132000","name":"Tupac Shakur","type":"Person","_key":"32089"} +{"label":"Joe Torry","version":23,"id":"54423","lastModified":"1301902153000","name":"Joe Torry","type":"Person","_key":"32090"} +{"label":"Maya Angelou","version":22,"id":"54424","lastModified":"1301902153000","name":"Maya Angelou","type":"Person","_key":"32091"} +{"label":"Ch\u00e9 J. Avery","version":18,"id":"54425","lastModified":"1301902376000","name":"Ch\u00e9 J. Avery","type":"Person","_key":"32092"} +{"label":"Lloyd Avery II","version":20,"id":"54426","lastModified":"1301902381000","name":"Lloyd Avery II","type":"Person","_key":"32093"} +{"label":"Kimberly Brooks","version":24,"id":"54427","lastModified":"1301902153000","name":"Kimberly Brooks","type":"Person","_key":"32094"} +{"label":"Rico Bueno","version":20,"id":"54428","lastModified":"1301902369000","name":"Rico Bueno","type":"Person","_key":"32095"} +{"label":"Maia Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d5\/4d8be8f17b9aa13aea0020d5\/maia-campbell-profile.jpg","version":23,"id":"54429","lastModified":"1301902375000","name":"Maia Campbell","type":"Person","_key":"32096"} +{"label":"Michael Colyar","version":22,"id":"54430","lastModified":"1301902153000","name":"Michael Colyar","type":"Person","_key":"32097"} +{"label":"Kina Cosper","version":20,"id":"54431","lastModified":"1301902153000","name":"Kina Cosper","type":"Person","_key":"32098"} +{"label":"Dina D.","version":20,"id":"54432","lastModified":"1301902387000","name":"Dina D.","type":"Person","_key":"32099"} +{"label":"James Deeth","version":20,"id":"54433","lastModified":"1301902340000","name":"James Deeth","type":"Person","_key":"32100"} +{"label":"Norma Donaldson","version":20,"id":"54434","lastModified":"1301902340000","name":"Norma Donaldson","type":"Person","_key":"32101"} +{"label":"Kelly Joe Dugan","version":20,"id":"54435","lastModified":"1301902340000","name":"Kelly Joe Dugan","type":"Person","_key":"32102"} +{"label":"Suliamen El Hadi","version":20,"id":"54436","lastModified":"1301902340000","name":"Suliamen El Hadi","type":"Person","_key":"32103"} +{"label":"Omar Ben Hassan","version":20,"id":"54437","lastModified":"1301902340000","name":"Omar Ben Hassan","type":"Person","_key":"32104"} +{"label":"Jalal Nuriddin","version":20,"id":"54438","lastModified":"1301902340000","name":"Jalal Nuriddin","type":"Person","_key":"32105"} +{"label":"Daoud Spencer","version":20,"id":"54439","lastModified":"1301902340000","name":"Daoud Spencer","type":"Person","_key":"32106"} +{"label":"Rene Elizondo","version":20,"id":"54440","lastModified":"1301902369000","name":"Rene Elizondo","type":"Person","_key":"32107"} +{"label":"Four Brothers","description":"Four brothers look to avenge their mother's death.","id":"8292","runtime":109,"imdbId":"tt0430105","trailer":"http:\/\/www.youtube.com\/watch?v=nLbEGkjmTxg","version":381,"lastModified":"1301902054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4bc920fa017a3c57fe00d131\/four-brothers-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Four Brothers","releaseDate":1123804800000,"language":"en","tagline":"They came home to bury mom... and her killer","type":"Movie","_key":"32108"} +{"label":"Sof\u00eda Vergara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c44\/4d830b285e73d676b6000c44\/sof-a-vergara-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bSofia Vergara is the only Hispanic actress who started her career in a U.S. Hispanic Network and successfully crossed over to the general market.<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">This Emmy nominated actress can currently be seen as one of the leads in ABC's si","version":47,"birthday":"79570800000","id":"63522","birthplace":"Barranquilla, Colombia","lastModified":"1301901474000","name":"Sof\u00eda Vergara","type":"Person","_key":"32109"} +{"label":"Jernard Burks","version":36,"id":"55275","lastModified":"1302059269000","name":"Jernard Burks","type":"Person","_key":"32110"} +{"label":"Howards End","description":"A businessman thwarts his wife's bequest of an estate to another woman.","id":"8293","runtime":140,"imdbId":"tt0104454","version":174,"lastModified":"1301904293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/144\/4bc920fb017a3c57fe00d144\/howards-end-mid.jpg","studio":"Merchant Ivory Productions","genre":"Drama","title":"Howards End","releaseDate":700444800000,"language":"en","type":"Movie","_key":"32111"} +{"label":"Joseph Bennett","version":22,"id":"54444","lastModified":"1301902369000","name":"Joseph Bennett","type":"Person","_key":"32112"} +{"label":"Adrian Ross Magenty","version":23,"id":"54445","lastModified":"1301902198000","name":"Adrian Ross Magenty","type":"Person","_key":"32113"} +{"label":"Jo Kendall","version":22,"id":"54446","lastModified":"1301902388000","name":"Jo Kendall","type":"Person","_key":"32114"} +{"label":"The Countess","description":"A 17th century Hungarian countess embarks on a murderous undertaking, with the belief that bathing in the blood of virgins will preserve her beauty.","id":"8316","runtime":98,"imdbId":"tt0496634","version":100,"lastModified":"1301904189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4bc920ff017a3c57fe00d14d\/the-countess-mid.jpg","studio":"X Filme International","genre":"Drama","title":"The Countess","releaseDate":1234137600000,"language":"en","type":"Movie","_key":"32115"} +{"label":"Tonight at Noon","description":"No overview found.","id":"8317","runtime":0,"imdbId":"tt0483823","version":64,"lastModified":"1301906742000","studio":"Unison Films","genre":"Drama","title":"Tonight at Noon","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"32116"} +{"label":"Michael Almereyda","version":29,"id":"54469","lastModified":"1301901787000","name":"Michael Almereyda","type":"Person","_key":"32117"} +{"label":"Lauren Ambrose","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/154\/4ceea7f25e73d65318000154\/lauren-ambrose-profile.jpg","version":40,"id":"54470","lastModified":"1302062929000","name":"Lauren Ambrose","type":"Person","_key":"32118"} +{"label":"Chapter 27","description":"The movie takes place in the three days leading up to Lennon's murder and is intended to be an exploration of Chapman's psyche, without putting substantial emphasis on the murder. The title \"Chapter 27\" suggests a continuation of J.D. Salinger's novel The Catcher in the Rye, which has 26 chapters, and which Chapman was carrying when he shot Lennon. Chapman was obsessed with the book, to the point","id":"8319","runtime":84,"imdbId":"tt0488988","trailer":"http:\/\/www.youtube.com\/watch?v=943","version":158,"lastModified":"1301903697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15a\/4bc92100017a3c57fe00d15a\/chapter-27-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Drama","title":"Chapter 27","releaseDate":1169683200000,"language":"en","type":"Movie","_key":"32119"} +{"label":"Mark Lindsay Chapman","version":24,"id":"41266","lastModified":"1301901430000","name":"Mark Lindsay Chapman","type":"Person","_key":"32120"} +{"label":"Lauren Milberger","version":15,"id":"54757","lastModified":"1301901615000","name":"Lauren Milberger","type":"Person","_key":"32121"} +{"label":"Ye Old Times","description":"No overview found.","id":"8320","runtime":0,"version":133,"lastModified":"1301907414000","studio":"Patriot Pictures","genre":"Comedy","title":"Ye Old Times","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"32122"} +{"label":"Robert A. White","version":16,"id":"54471","lastModified":"1301902374000","name":"Robert A. White","type":"Person","_key":"32123"} +{"label":"In Bruges","description":"Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.","id":"8321","runtime":107,"imdbId":"tt0780536","trailer":"http:\/\/www.youtube.com\/watch?v=0RBIY7Uts6s","homepage":"http:\/\/www.filminfocus.com\/focus-movies\/in-bruges\/movie-splash.php","version":403,"lastModified":"1301901394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/453\/4d0f67e57b9aa1025c003453\/in-bruges-mid.jpg","studio":"Blueprint Pictures","genre":"Action","title":"In Bruges","releaseDate":1200528000000,"language":"en","tagline":"Shoot first. Sightsee later.","type":"Movie","_key":"32124"} +{"label":"Martin McDonagh","version":40,"id":"54472","lastModified":"1301901492000","name":"Martin McDonagh","type":"Person","_key":"32125"} +{"label":"Fast Food Nation","description":"Inspired by author Eric Schlosser's New York Times best-seller of the same name, director Richard Linklater's ensemble drama examines the health issues and social consequences of America's love affair with fast food and features an all-star cast that includes Greg Kinnear, Ethan Hawke, Kris Kristofferson, Patricia Arquette, and Luis Guzman.","id":"8324","runtime":113,"imdbId":"tt0460792","trailer":"http:\/\/www.youtube.com\/watch?v=SAhfGQlDgiw","version":252,"lastModified":"1301916595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/199\/4bc9210b017a3c57fe00d199\/fast-food-nation-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"Fast Food Nation","releaseDate":1147737600000,"language":"en","tagline":"Do you want lies with that?","type":"Movie","_key":"32126"} +{"label":"Juan Carlos Serr\u00e1n","version":21,"id":"54762","lastModified":"1301916409000","name":"Juan Carlos Serr\u00e1n","type":"Person","_key":"32127"} +{"label":"Aaron Himelstein","version":25,"id":"43373","lastModified":"1301916409000","name":"Aaron Himelstein","type":"Person","_key":"32128"} +{"label":"Helen Merino","version":21,"id":"54763","lastModified":"1301916409000","name":"Helen Merino","type":"Person","_key":"32129"} +{"label":"Raquel Gavia","version":21,"id":"54764","lastModified":"1301916409000","name":"Raquel Gavia","type":"Person","_key":"32130"} +{"label":"Hugo Perez","version":21,"id":"54765","lastModified":"1301916409000","name":"Hugo Perez","type":"Person","_key":"32131"} +{"label":"Tiptoes","description":"Carol is an artist, Steven trains firefighters. They've lived together for months and plan to marry soon, except that Steve's left out an important detail about himself and his chromosomes: his parents, twin brother, and many of his relatives are dwarfs. Carol learns this when Steve's brother Rolfe drops by, the day after she discovers she's pregnant. Why hasn't he told her about his family? She calls on them, and they take her to their hearts. But tensions mount between the lovers as she believ","id":"8325","runtime":90,"imdbId":"tt0316768","version":153,"lastModified":"1301905548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4c4b62ed7b9aa1237d0000b2\/tiptoes-mid.jpg","studio":"Langley Productions","genre":"Comedy","title":"Tiptoes","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"32132"} +{"label":"Matthew Bright","version":33,"id":"55117","lastModified":"1301901496000","name":"Matthew Bright","type":"Person","_key":"32133"} +{"label":"Holes","description":"\u2018Holes\u2019 is a 2003 film based on the novel of the same title by Louis Sachar. The story is based on a wrongfully convicted boy who is sent to a brutal desert detention camp where he joins the job of digging holes for some mysterious reason.The film was produced by Walden Media and released by Walt Disney Pictures. The movie made US$ 71 million at the box office against a $20 million budget, making the film a moderate financial success. The film garnered much critical praise, receiving a 77% Certi","id":"8326","runtime":117,"imdbId":"tt0311289","version":154,"lastModified":"1302021244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4bc9210e017a3c57fe00d1ab\/holes-mid.jpg","studio":"Chicago Pacific Entertainment","genre":"Comedy","title":"Holes","releaseDate":1050019200000,"language":"en","tagline":"Some secrets are too big to keep hidden.","type":"Movie","_key":"32134"} +{"label":"Khleo Thomas","version":24,"id":"54495","lastModified":"1301902007000","name":"Khleo Thomas","type":"Person","_key":"32135"} +{"label":"Jake M. Smith","version":22,"id":"54496","lastModified":"1301901884000","name":"Jake M. Smith","type":"Person","_key":"32136"} +{"label":"Byron Cotton","version":22,"id":"54497","lastModified":"1301904120000","name":"Byron Cotton","type":"Person","_key":"32137"} +{"label":"Brenden Jefferson","version":21,"id":"54498","lastModified":"1301902098000","name":"Brenden Jefferson","type":"Person","_key":"32138"} +{"label":"The Holy Mountain","description":"A Christlike figure wanders through bizarre, grotesque scenarios filled with religious and sacrilegious imagery. He meets a mystical guide who introduces him to seven wealthy and powerful individuals, each representing a planet in the solar system. These seven, along with the protagonist, the guide and the guide's assistant, divest themselves of their worldly goods and form a group of nine.","id":"8327","runtime":114,"imdbId":"tt0071615","version":179,"lastModified":"1301903149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b4\/4bc92111017a3c57fe00d1b4\/montana-sacra-mid.jpg","studio":"Allen & Betty Klein and Company","genre":"Drama","title":"The Holy Mountain","releaseDate":105062400000,"language":"en","type":"Movie","_key":"32139"} +{"label":"Alejandro Jodorowsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/da2\/4be741f6017a3c35b5000da2\/alejandro-jodorowsky-profile.jpg","version":51,"id":"55119","lastModified":"1301901505000","name":"Alejandro Jodorowsky","type":"Person","_key":"32140"} +{"label":"Horacio Salinas","version":19,"id":"55123","lastModified":"1301902110000","name":"Horacio Salinas","type":"Person","_key":"32141"} +{"label":"Zamira Saunders","version":21,"id":"55124","lastModified":"1301902098000","name":"Zamira Saunders","type":"Person","_key":"32142"} +{"label":"Juan Ferrara","version":21,"id":"55125","lastModified":"1301902276000","name":"Juan Ferrara","type":"Person","_key":"32143"} +{"label":"Adriana Page","version":21,"id":"55126","lastModified":"1301902276000","name":"Adriana Page","type":"Person","_key":"32144"} +{"label":"Burt Kleiner","version":21,"id":"55127","lastModified":"1301902276000","name":"Burt Kleiner","type":"Person","_key":"32145"} +{"label":"Valerie Jodorowsky","version":21,"id":"55129","lastModified":"1301902276000","name":"Valerie Jodorowsky","type":"Person","_key":"32146"} +{"label":"Nicky Nichols","version":21,"id":"55130","lastModified":"1301902276000","name":"Nicky Nichols","type":"Person","_key":"32147"} +{"label":"Richard Rutowski","version":23,"id":"3181","lastModified":"1299612243000","name":"Richard Rutowski","type":"Person","_key":"32148"} +{"label":"Luis Lomeli","version":21,"id":"55131","lastModified":"1301902276000","name":"Luis Lomeli","type":"Person","_key":"32149"} +{"label":"Ana De Sade","version":21,"id":"55132","lastModified":"1301902276000","name":"Ana De Sade","type":"Person","_key":"32150"} +{"label":"Jacqueline Voltaire","version":21,"id":"55133","lastModified":"1301902276000","name":"Jacqueline Voltaire","type":"Person","_key":"32151"} +{"label":"Step Up 2: The Streets","description":"When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.","id":"8328","runtime":98,"imdbId":"tt1023481","trailer":"http:\/\/www.youtube.com\/watch?v=505","version":285,"lastModified":"1301901161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bc92112017a3c57fe00d1ce\/step-up-2-the-streets-mid.jpg","studio":"Summit Entertainment","genre":"Musical","title":"Step Up 2: The Streets","releaseDate":1202947200000,"language":"en","tagline":"It's not where you're from. It's where you're at.","type":"Movie","_key":"32152"} +{"label":"Briana Evigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/003\/4c2d1e135e73d63cce000003\/briana-evigan-profile.jpg","version":32,"id":"54499","lastModified":"1301901159000","name":"Briana Evigan","type":"Person","_key":"32153"} +{"label":"Cassie Ventura","version":25,"id":"54502","lastModified":"1301901388000","name":"Cassie Ventura","type":"Person","_key":"32154"} +{"label":"Adam G. Sevani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/194\/4d2bf54e7b9aa11a70000194\/adam-g-sevani-profile.jpg","version":39,"id":"54503","lastModified":"1301901189000","name":"Adam G. Sevani","type":"Person","_key":"32155"} +{"label":"Danielle Polanco","version":24,"id":"54504","lastModified":"1301901926000","name":"Danielle Polanco","type":"Person","_key":"32156"} +{"label":"Telisha Shaw","version":24,"id":"54505","lastModified":"1301901926000","name":"Telisha Shaw","type":"Person","_key":"32157"} +{"label":"Black Thomas","version":24,"id":"54506","lastModified":"1301902124000","name":"Black Thomas","type":"Person","_key":"32158"} +{"label":"Jon Chu","version":38,"id":"54507","lastModified":"1301901427000","name":"Jon Chu","type":"Person","_key":"32159"} +{"label":"[Rec]","description":"\"REC\" turns on a young TV reporter and her cameraman who cover the night shift at the local fire station. Receiving a call from an old lady trapped in her house, they reach her building to hear horrifying screams -- which begin a long nightmare and a uniquely dramatic TV report.","id":"8329","runtime":78,"imdbId":"tt1038988","trailer":"http:\/\/www.youtube.com\/watch?v=YQUkX_XowqI","homepage":"http:\/\/www.3l-filmverleih.de\/rec","version":268,"lastModified":"1301901820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e7\/4bc92117017a3c57fe00d1e7\/rec-mid.jpg","studio":"Filmax Group","genre":"Horror","title":"[Rec]","releaseDate":1188345600000,"language":"en","tagline":"One Witness. One Camera","type":"Movie","_key":"32160"} +{"label":"Carlos Lasarte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ba6\/4d27aa297b9aa134d3001ba6\/carlos-lasarte-profile.jpg","version":25,"id":"54519","lastModified":"1301901372000","name":"Carlos Lasarte","type":"Person","_key":"32161"} +{"label":"Pablo Rosso","version":36,"id":"54520","lastModified":"1301901363000","name":"Pablo Rosso","type":"Person","_key":"32162"} +{"label":"David Vert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c7e\/4d27aad57b9aa134cb001c7e\/david-vert-profile.jpg","version":29,"id":"54521","lastModified":"1301901332000","name":"David Vert","type":"Person","_key":"32163"} +{"label":"Vicente Gil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c86\/4d27ab237b9aa134cb001c86\/vicente-gil-profile.jpg","version":24,"id":"54522","lastModified":"1301901333000","name":"Vicente Gil","type":"Person","_key":"32164"} +{"label":"Martha Carbonell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c90\/4d27ab777b9aa134cb001c90\/martha-carbonell-profile.jpg","version":30,"id":"54523","lastModified":"1301901458000","name":"Martha Carbonell","type":"Person","_key":"32165"} +{"label":"Carlos Vicente","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b0f\/4d27abcc7b9aa134cf001b0f\/carlos-vicente-profile.jpg","version":25,"id":"54524","lastModified":"1301901466000","name":"Carlos Vicente","type":"Person","_key":"32166"} +{"label":"Ferran Terraza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/129\/4c4bfbab7b9aa1237f000129\/ferran-terraza-profile.jpg","version":31,"id":"54532","lastModified":"1301901451000","name":"Ferran Terraza","type":"Person","_key":"32167"} +{"label":"Jorge Yamam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cbb\/4d27ac677b9aa134dc001cbb\/jorge-yamam-profile.jpg","version":17,"id":"147878","lastModified":"1301902551000","name":"Jorge Yamam","type":"Person","_key":"32168"} +{"label":"Jaume Balaguer\u00f3","version":52,"id":"54525","lastModified":"1301901405000","name":"Jaume Balaguer\u00f3","type":"Person","_key":"32169"} +{"label":"Paco Plaza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0d\/4d7abf555e73d6282a000c0d\/paco-plaza-profile.jpg","version":44,"id":"54526","lastModified":"1301901510000","name":"Paco Plaza","type":"Person","_key":"32170"} +{"label":"11 Uhr 20","description":"No overview found.","id":"8330","runtime":200,"imdbId":"tt0065268","version":52,"lastModified":"1301906625000","studio":"ZDF","genre":"Crime","title":"11 Uhr 20","releaseDate":864000000,"language":"en","type":"Movie","_key":"32171"} +{"label":"Paul Hoffmann","version":15,"id":"54548","lastModified":"1301902276000","name":"Paul Hoffmann","type":"Person","_key":"32172"} +{"label":"Sema \u00d6zcan","version":15,"id":"54549","lastModified":"1301902098000","name":"Sema \u00d6zcan","type":"Person","_key":"32173"} +{"label":"Esther Ofarim","version":19,"id":"54550","lastModified":"1301902276000","name":"Esther Ofarim","type":"Person","_key":"32174"} +{"label":"Muzaffer Tema","version":19,"id":"54551","lastModified":"1301902098000","name":"Muzaffer Tema","type":"Person","_key":"32175"} +{"label":"Bilal Inci","version":19,"id":"54552","lastModified":"1301902276000","name":"Bilal Inci","type":"Person","_key":"32176"} +{"label":"Antibodies","description":"When a notorious German serial killer is captured after committing some of the most heinous acts against humanity ever imaginable, a farmer and police officer from a sleepy rural community on the outskirts of Berlin is drawn into the case as he searches for the answers to a murder that has shaken his tight-knit community.","id":"8332","runtime":127,"imdbId":"tt0337573","version":79,"lastModified":"1301903726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ff\/4bc92119017a3c57fe00d1ff\/antikorper-mid.jpg","studio":"Kinowelt Filmproduktion","genre":"Thriller","title":"Antibodies","releaseDate":1114300800000,"language":"en","type":"Movie","_key":"32177"} +{"label":"Christian Alvart","version":35,"id":"54559","lastModified":"1301901496000","name":"Christian Alvart","type":"Person","_key":"32178"} +{"label":"Christian von Aster","version":21,"id":"55166","lastModified":"1301901993000","name":"Christian von Aster","type":"Person","_key":"32179"} +{"label":"Waltraud Witte","version":21,"id":"55167","lastModified":"1301902021000","name":"Waltraud Witte","type":"Person","_key":"32180"} +{"label":"Hauke Diekamp","version":22,"id":"55172","lastModified":"1301902363000","name":"Hauke Diekamp","type":"Person","_key":"32181"} +{"label":"The Taking of Pelham One, Two, Three","description":"In New York, armed men hijack a subway car and demand a ransom for the passengers. Even if it's paid, how could they get away?","id":"8333","runtime":104,"imdbId":"tt0072251","trailer":"http:\/\/www.youtube.com\/watch?v=N8TtjRlX_3E","version":151,"lastModified":"1301903188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad1\/4d0959765e73d67458000ad1\/the-taking-of-pelham-one-two-three-mid.jpg","studio":"Palladium Productions","genre":"Action","title":"The Taking of Pelham One, Two, Three","releaseDate":149904000000,"language":"en","type":"Movie","_key":"32182"} +{"label":"Earl Hindman","version":19,"id":"53285","lastModified":"1301901997000","name":"Earl Hindman","type":"Person","_key":"32183"} +{"label":"The Naked Man","description":"No overview found.","id":"8336","runtime":98,"imdbId":"tt0120767","version":67,"lastModified":"1301904955000","studio":"October Films","genre":"Comedy","title":"The Naked Man","releaseDate":902016000000,"language":"en","type":"Movie","_key":"32184"} +{"label":"J. Todd Anderson","version":21,"id":"54563","lastModified":"1301902340000","name":"J. Todd Anderson","type":"Person","_key":"32185"} +{"label":"They Live","description":"A drifter discovers a pair of sunglasses that allow him to wake up to the fact that aliens have taken over the Earth.","id":"8337","runtime":93,"imdbId":"tt0096256","version":154,"lastModified":"1301903009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4bc9211e017a3c57fe00d21f\/they-live-mid.jpg","studio":"Alive Films","genre":"Action","title":"They Live","releaseDate":594604800000,"language":"en","type":"Movie","_key":"32186"} +{"label":"Roddy Piper","version":36,"id":"44240","lastModified":"1301901446000","name":"Roddy Piper","type":"Person","_key":"32187"} +{"label":"Meg Foster","version":41,"id":"41229","lastModified":"1301901244000","name":"Meg Foster","type":"Person","_key":"32188"} +{"label":"Raymond St. Jacques","version":23,"id":"54565","lastModified":"1301902186000","name":"Raymond St. Jacques","type":"Person","_key":"32189"} +{"label":"Blindness","description":"When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine. ","id":"8338","runtime":120,"imdbId":"tt0861689","trailer":"http:\/\/www.youtube.com\/watch?v=03T09FAWaIQ","homepage":"http:\/\/www.blindness-themovie.com\/","version":252,"lastModified":"1302030937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/235\/4bc92120017a3c57fe00d235\/blindness-mid.jpg","studio":"O2 Filmes","genre":"Science Fiction","title":"Blindness","releaseDate":1210723200000,"language":"en","type":"Movie","_key":"32190"} +{"label":"Y\u00fbsuke Iseya","version":35,"id":"70209","lastModified":"1301901193000","name":"Y\u00fbsuke Iseya","type":"Person","_key":"32191"} +{"label":"Yoshino Kimura","version":28,"id":"72764","lastModified":"1301901476000","name":"Yoshino Kimura","type":"Person","_key":"32192"} +{"label":"Mitchell Nye","version":21,"id":"72765","lastModified":"1301902098000","name":"Mitchell Nye","type":"Person","_key":"32193"} +{"label":"Turtles can fly","description":"Turtles can fly tells the story of a group of young children near the Turkey-Iran border. They clean up mines and wait for the Saddam regime to fall.","id":"8340","runtime":98,"imdbId":"tt0424227","version":92,"lastModified":"1301904066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf2\/4d93225d7b9aa119a0000bf2\/lakposhtha-parvaz-mikonand-mid.jpg","studio":"Bac Films","genre":"Drama","title":"Turtles can fly","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"32194"} +{"label":"Bahman Ghobadi","version":30,"id":"54607","lastModified":"1301901509000","name":"Bahman Ghobadi","type":"Person","_key":"32195"} +{"label":"Soran Ebrahim","version":21,"id":"54608","lastModified":"1301901814000","name":"Soran Ebrahim","type":"Person","_key":"32196"} +{"label":"Avaz Latif","version":21,"id":"54609","lastModified":"1301901815000","name":"Avaz Latif","type":"Person","_key":"32197"} +{"label":"Saddam Hossein Feysal","version":21,"id":"54610","lastModified":"1301901815000","name":"Saddam Hossein Feysal","type":"Person","_key":"32198"} +{"label":"Hiresh Feysal Rahman","version":21,"id":"54611","lastModified":"1301901995000","name":"Hiresh Feysal Rahman","type":"Person","_key":"32199"} +{"label":"Abdol Rahman Karim","version":21,"id":"54612","lastModified":"1301902368000","name":"Abdol Rahman Karim","type":"Person","_key":"32200"} +{"label":"Ajil Zibari","version":21,"id":"54613","lastModified":"1301902368000","name":"Ajil Zibari","type":"Person","_key":"32201"} +{"label":"Samsara","description":"A love story situated in the Himalayas. A Buddhist monk can't choose between life and the way of the Buddha.","id":"8341","runtime":138,"imdbId":"tt0196069","version":90,"lastModified":"1301907413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4bc92124017a3c57fe00d248\/samsara-mid.jpg","studio":"Pandora Film","genre":"Drama","title":"Samsara","releaseDate":978307200000,"language":"en","type":"Movie","_key":"32202"} +{"label":"Shawn Ku","version":21,"id":"54614","lastModified":"1301901837000","name":"Shawn Ku","type":"Person","_key":"32203"} +{"label":"Christy Chung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/634\/4d3ff3fb5e73d622d5005634\/christy-chung-profile.jpg","version":23,"id":"54615","lastModified":"1301901700000","name":"Christy Chung","type":"Person","_key":"32204"} +{"label":"Lhakpa Tsering","version":20,"id":"54616","lastModified":"1301902176000","name":"Lhakpa Tsering","type":"Person","_key":"32205"} +{"label":"Tenzin Tashi","version":20,"id":"54617","lastModified":"1301902362000","name":"Tenzin Tashi","type":"Person","_key":"32206"} +{"label":"Jamayang Jinpa","version":20,"id":"54618","lastModified":"1301902340000","name":"Jamayang Jinpa","type":"Person","_key":"32207"} +{"label":"No Man's Land","description":"Two soldiers from opposite sites get stuck between the frontlines in the same trenche. The UN is asked to free them and both sides agree on a seizefire, but will they stick to it?","id":"8342","runtime":98,"imdbId":"tt0283509","version":165,"lastModified":"1301905045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4c8605d55e73d66b5e0000ab\/no-man-s-land-mid.jpg","studio":"No\u00e9 Productions","genre":"Action","title":"No Man's Land","releaseDate":978307200000,"language":"en","type":"Movie","_key":"32208"} +{"label":"Branko Djuric","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ec\/4d61306f5e73d60c5c0031ec\/branko-djuric-profile.jpg","version":25,"id":"54620","lastModified":"1301901682000","name":"Branko Djuric","type":"Person","_key":"32209"} +{"label":"Rene Bitorajac","version":24,"id":"54621","lastModified":"1301901514000","name":"Rene Bitorajac","type":"Person","_key":"32210"} +{"label":"Filip Sovagovic","version":19,"id":"54622","lastModified":"1301902192000","name":"Filip Sovagovic","type":"Person","_key":"32211"} +{"label":"Georges Siatidis","version":21,"id":"54623","lastModified":"1301902194000","name":"Georges Siatidis","type":"Person","_key":"32212"} +{"label":"Sacha Kremer","version":22,"id":"54625","lastModified":"1301902024000","name":"Sacha Kremer","type":"Person","_key":"32213"} +{"label":"Alain Eloy","version":21,"id":"54626","lastModified":"1301902013000","name":"Alain Eloy","type":"Person","_key":"32214"} +{"label":"Badland","description":"No overview found.","id":"8343","runtime":160,"imdbId":"tt0493395","trailer":"http:\/\/www.youtube.com\/watch?v=509","version":122,"lastModified":"1301416340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19b\/4bf65af8017a3c772600019b\/badland-mid.jpg","studio":"Badland Corporation","genre":"Drama","title":"Badland","releaseDate":1196380800000,"language":"en","type":"Movie","_key":"32215"} +{"label":"Francesco Lucente","version":26,"id":"54638","lastModified":"1301901803000","name":"Francesco Lucente","type":"Person","_key":"32216"} +{"label":"Grace Fulton","version":20,"id":"54633","lastModified":"1301901579000","name":"Grace Fulton","type":"Person","_key":"32217"} +{"label":"Chandra West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4c4e51e57b9aa1326e000059\/chandra-west-profile.jpg","version":36,"id":"54634","lastModified":"1301901253000","name":"Chandra West","type":"Person","_key":"32218"} +{"label":"Tom Carey","version":23,"id":"54635","lastModified":"1301901980000","name":"Tom Carey","type":"Person","_key":"32219"} +{"label":"Pete Seadon","version":20,"id":"54636","lastModified":"1301902181000","name":"Pete Seadon","type":"Person","_key":"32220"} +{"label":"Keith White","version":20,"id":"54637","lastModified":"1301902369000","name":"Keith White","type":"Person","_key":"32221"} +{"label":"Die wilden Kerle 2","description":"No overview found.","id":"8344","runtime":89,"imdbId":"tt0418325","version":87,"lastModified":"1301905004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/949\/4d0cef2a5e73d6370a000949\/die-wilden-kerle-2-mid.jpg","studio":"Sam Film GmbH","genre":"Comedy","title":"Die wilden Kerle 2","releaseDate":1108598400000,"language":"en","type":"Movie","_key":"32222"} +{"label":"Deniz Sarsilmaz","version":21,"id":"55182","lastModified":"1301902184000","name":"Deniz Sarsilmaz","type":"Person","_key":"32223"} +{"label":"Konrad Baumann","version":22,"id":"55184","lastModified":"1301902389000","name":"Konrad Baumann","type":"Person","_key":"32224"} +{"label":"Kevin Iannotta","version":21,"id":"55185","lastModified":"1301902379000","name":"Kevin Iannotta","type":"Person","_key":"32225"} +{"label":"Leon Wessel-Masannek","version":21,"id":"55187","lastModified":"1301902375000","name":"Leon Wessel-Masannek","type":"Person","_key":"32226"} +{"label":"Leon Wessel-Masannek","version":25,"id":"55186","lastModified":"1301901604000","name":"Leon Wessel-Masannek","type":"Person","_key":"32227"} +{"label":"Es geht um alles","description":"No overview found.","id":"8345","runtime":94,"imdbId":"tt1213049","homepage":"http:\/\/www.es-geht-um-alles-der-film.de","version":38,"lastModified":"1301904475000","studio":"LittleBigMovies","genre":"Documentary","title":"Es geht um alles","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"32228"} +{"label":"Nina Pourlak","version":21,"id":"54639","lastModified":"1301901840000","name":"Nina Pourlak","type":"Person","_key":"32229"} +{"label":"Ulli Wegner","version":20,"id":"54642","lastModified":"1301902019000","name":"Ulli Wegner","type":"Person","_key":"32230"} +{"label":"Arthur Abraham","version":20,"id":"54643","lastModified":"1301902007000","name":"Arthur Abraham","type":"Person","_key":"32231"} +{"label":"My Big Fat Greek Wedding","description":"A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.","id":"8346","runtime":95,"imdbId":"tt0259446","version":184,"lastModified":"1301906832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc5\/4d4ccd1c5e73d617ba001cc5\/my-big-fat-greek-wedding-mid.jpg","studio":"Gold Circle Films","genre":"Comedy","title":"My Big Fat Greek Wedding","releaseDate":1014336000000,"language":"en","tagline":"Love is here to stay... so is her family.","type":"Movie","_key":"32232"} +{"label":"Joel Zwick","version":25,"id":"54644","lastModified":"1301901306000","name":"Joel Zwick","type":"Person","_key":"32233"} +{"label":"Nia Vardalos","version":67,"id":"54645","lastModified":"1301901228000","name":"Nia Vardalos","type":"Person","_key":"32234"} +{"label":"Joey Fatone","version":25,"id":"54651","lastModified":"1301901949000","name":"Joey Fatone","type":"Person","_key":"32235"} +{"label":"Louis Mandylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b77\/4d4b6b837b9aa13ab8006b77\/louis-mandylor-profile.jpg","version":33,"id":"54649","lastModified":"1302044063000","name":"Louis Mandylor","type":"Person","_key":"32236"} +{"label":"Christina Eleusiniotis","version":20,"id":"54646","lastModified":"1301902276000","name":"Christina Eleusiniotis","type":"Person","_key":"32237"} +{"label":"Marita Zouravlioff","version":20,"id":"54647","lastModified":"1301902276000","name":"Marita Zouravlioff","type":"Person","_key":"32238"} +{"label":"Gerry Mendicino","version":20,"id":"54650","lastModified":"1301902276000","name":"Gerry Mendicino","type":"Person","_key":"32239"} +{"label":"Bess Meisler","version":20,"id":"54648","lastModified":"1301902276000","name":"Bess Meisler","type":"Person","_key":"32240"} +{"label":"Fiona Reid","version":23,"id":"54652","lastModified":"1301902098000","name":"Fiona Reid","type":"Person","_key":"32241"} +{"label":"Der Lebensversicherer","description":"No overview found.","id":"8347","runtime":100,"imdbId":"tt0757248","version":53,"lastModified":"1301905642000","studio":"Razor Film Produktion GmbH","genre":"Drama","title":"Der Lebensversicherer","releaseDate":1139875200000,"language":"en","type":"Movie","_key":"32242"} +{"label":"Susanne Menner","version":19,"id":"54662","lastModified":"1301901615000","name":"Susanne Menner","type":"Person","_key":"32243"} +{"label":"Marina Galic","version":19,"id":"54663","lastModified":"1301901615000","name":"Marina Galic","type":"Person","_key":"32244"} +{"label":"Patrizia Moresco","version":19,"id":"54664","lastModified":"1301902098000","name":"Patrizia Moresco","type":"Person","_key":"32245"} +{"label":"Birgit Funke","version":19,"id":"54665","lastModified":"1301902098000","name":"Birgit Funke","type":"Person","_key":"32246"} +{"label":"Irina Potapenko","version":22,"id":"54666","lastModified":"1301901538000","name":"Irina Potapenko","type":"Person","_key":"32247"} +{"label":"B\u00fclent Akinci","version":21,"id":"54667","lastModified":"1301901615000","name":"B\u00fclent Akinci","type":"Person","_key":"32248"} +{"label":"Thunderbolt And Lightfoot","description":"Thunderbolt and Lightfoot tells the tale of two outlaws, their friendship, and a robbery that goes awry. Eastwood's character, an ex-con and present-day cowtown preacher is hiding from his old partners who believe they were conned out of their share. So Eastwood finds himself reluctantly teaming up with Jeff Bridges's character, a young drifter who can help him escape.","id":"8348","runtime":115,"imdbId":"tt0072288","version":132,"lastModified":"1301902768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26e\/4bc92127017a3c57fe00d26e\/thunderbold-und-lightfoot-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"Thunderbolt And Lightfoot","releaseDate":138499200000,"language":"en","type":"Movie","_key":"32249"} +{"label":"Michael Cimino","version":58,"id":"12114","lastModified":"1302031948000","name":"Michael Cimino","type":"Person","_key":"32250"} +{"label":"The Red Baron","description":"Richthofen goes off to war like thousands of other men. As fighter pilots, they become cult heroes for the soldiers on the battlefields. Marked by sportsmanlike conduct, technical exactitude and knightly propriety, they have their own code of honour. Before long he begins to understand that his hero status is deceptive. His love for Kate, a nurse, opens his eyes to the brutality of war.","id":"8349","runtime":120,"imdbId":"tt0365675","trailer":"http:\/\/www.youtube.com\/watch?v=937","homepage":"http:\/\/www.redbaron-themovie.com\/index_en.html","version":206,"lastModified":"1301902192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4d5b21685e73d60c5a000094\/der-rote-baron-mid.jpg","studio":"Niama Film","genre":"Action","title":"The Red Baron","releaseDate":1206921600000,"language":"en","type":"Movie","_key":"32251"} +{"label":"Nikolai M\u00fcllersch\u00f6n","version":28,"id":"55322","lastModified":"1301901731000","name":"Nikolai M\u00fcllersch\u00f6n","type":"Person","_key":"32252"} +{"label":"The Hobbit","description":"No overview found.","id":"8350","runtime":0,"imdbId":"tt0903624","version":82,"lastModified":"1301908589000","studio":"New Line Cinema","title":"The Hobbit","releaseDate":1355875200000,"language":"en","type":"Movie","_key":"32253"} +{"label":"Se souvenir des belles choses","description":"No overview found.","id":"8351","runtime":110,"imdbId":"tt0259440","version":110,"lastModified":"1301907285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62f\/4d110d905e73d6082e00062f\/se-souvenir-des-belles-choses-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Comedy","title":"Se souvenir des belles choses","releaseDate":1010534400000,"language":"en","type":"Movie","_key":"32254"} +{"label":"Julien Courbey","version":29,"id":"55327","lastModified":"1301902153000","name":"Julien Courbey","type":"Person","_key":"32255"} +{"label":"Aude Briant","version":21,"id":"55328","lastModified":"1301902181000","name":"Aude Briant","type":"Person","_key":"32256"} +{"label":"Denys Granier-Deferre","version":22,"id":"55329","lastModified":"1301902369000","name":"Denys Granier-Deferre","type":"Person","_key":"32257"} +{"label":"Sommer","description":"Weil er seinen Vater, einem Bundeswehroffizier, bei seinem n\u00e4chsten Einsatz in Somalia nicht begleiten kann, muss der 15-j\u00e4hrige Tim zu seiner Oma auf die Nordseeinsel Amrum umziehen. Dort hat der coole Skater aus Berlin, der Probleme magisch anzuziehen scheint, gleich seinen Ruf als Freak und schwieriger Au\u00dfenseiter weg. Nur der dicke Eric, der unter den H\u00e4nseleien und Angriffen der Surferclique um den reichen Lars zu leiden hat, h\u00e4lt zu ihm. Als Tim sich auch noch in die h\u00fcbsche Vic, Lars Freu","id":"8352","runtime":104,"imdbId":"tt1209359","homepage":"http:\/\/www.jetzt-ist-sommer.de\/","version":72,"lastModified":"1301905712000","genre":"Comedy","title":"Sommer","releaseDate":1208390400000,"language":"en","type":"Movie","_key":"32258"} +{"label":"Jannis Niew\u00f6hner","version":22,"id":"54676","lastModified":"1301901996000","name":"Jannis Niew\u00f6hner","type":"Person","_key":"32259"} +{"label":"Julian Kr\u00fcger","version":20,"id":"54677","lastModified":"1301901566000","name":"Julian Kr\u00fcger","type":"Person","_key":"32260"} +{"label":"Sonja Gerhardt","version":22,"id":"54678","lastModified":"1301902153000","name":"Sonja Gerhardt","type":"Person","_key":"32261"} +{"label":"Laura Vietzen","version":20,"id":"55523","lastModified":"1301902181000","name":"Laura Vietzen","type":"Person","_key":"32262"} +{"label":"Limite","description":"No overview found.","id":"8353","runtime":120,"imdbId":"tt0022080","version":135,"lastModified":"1301415341000","studio":"Cin\u00e9dia","genre":"Drama","title":"Limite","releaseDate":-1219017600000,"language":"en","type":"Movie","_key":"32263"} +{"label":"Mario Peixoto","version":18,"id":"55335","lastModified":"1301901996000","name":"Mario Peixoto","type":"Person","_key":"32264"} +{"label":"Olga Breno","version":20,"id":"55336","lastModified":"1301902194000","name":"Olga Breno","type":"Person","_key":"32265"} +{"label":"Tatiana Rey","version":20,"id":"55337","lastModified":"1301902153000","name":"Tatiana Rey","type":"Person","_key":"32266"} +{"label":"Raul Schnoor","version":20,"id":"55338","lastModified":"1301902153000","name":"Raul Schnoor","type":"Person","_key":"32267"} +{"label":"Brutus Pedreira","version":20,"id":"55339","lastModified":"1301902153000","name":"Brutus Pedreira","type":"Person","_key":"32268"} +{"label":"Ice Age Collection","description":"No overview found.","id":"8354","version":78,"lastModified":"1301902637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/036\/4c0f7b1d017a3c3519001036\/ice-age-collection-mid.jpg","title":"Ice Age Collection","language":"en","type":"Movie","_key":"32269"} +{"label":"Ice Age 3: Dawn of the Dinosaurs","description":"Times are changing for moody mammoth Manny, motor mouthed sloth Sid and crafty saber-toothed tiger Diego in this third installment of the beloved computer-animated children's franchise. Life heats up for our heroes when they meet some new and none-too-friendly neighbors: the mighty dinosaurs.","id":"8355","runtime":94,"imdbId":"tt1080016","trailer":"http:\/\/www.youtube.com\/watch?v=dP-xFvTIdNk","homepage":"http:\/\/www.iceagemovie.com\/us\/","version":263,"lastModified":"1301900845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4c6a31345e73d65f7b000062\/ice-age-3-dawn-of-the-dinosaurs-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Ice Age 3: Dawn of the Dinosaurs","releaseDate":1246406400000,"language":"en","tagline":"The sub-zero heroes are back, on an incredible adventure... for the ages.","type":"Movie","_key":"32270"} +{"label":"An Affair to Remember","description":"Nicky Ferrante is an international, European playboy setting forth on a cruise ship headed for New York to meet his wealthy fianc\u00e9e. Terry McKay, a former night-club singer, is sailing to New York to be with her long-time boyfriend, who flew on ahead to close a business deal. Nicky and Terry meet on the long cruise, and romance, replete with complications, ensues.","id":"8356","runtime":111,"imdbId":"tt0050105","version":772,"lastModified":"1301903283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/126\/4d6658235e73d66a6b001126\/an-affair-to-remember-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"An Affair to Remember","releaseDate":-394502400000,"language":"en","type":"Movie","_key":"32271"} +{"label":"Richard Denning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f3\/4be495fa017a3c35b90009f3\/richard-denning-profile.jpg","version":43,"id":"54681","lastModified":"1301901409000","name":"Richard Denning","type":"Person","_key":"32272"} +{"label":"Neva Patterson","version":21,"id":"54682","lastModified":"1301901884000","name":"Neva Patterson","type":"Person","_key":"32273"} +{"label":"Charles Watts","version":29,"id":"54683","lastModified":"1301901981000","name":"Charles Watts","type":"Person","_key":"32274"} +{"label":"What the Bleep Do We Know!?","description":"\"WHAT THE #$*! DO WE KNOW?!\" is a radical departure from convention. It demands a freedom of view and greatness of thought so far unknown...","id":"8357","runtime":109,"imdbId":"tt0399877","version":155,"lastModified":"1301905671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d3\/4bc92135017a3c57fe00d2d3\/what-the-bleep-do-we-k-now-mid.jpg","studio":"Lord of the Wind","genre":"Comedy","title":"What the Bleep Do We Know!?","releaseDate":1082678400000,"language":"en","type":"Movie","_key":"32275"} +{"label":"William Arntz","version":24,"id":"55420","lastModified":"1301901939000","name":"William Arntz","type":"Person","_key":"32276"} +{"label":"Betsy Chasse","version":23,"id":"55421","lastModified":"1301901958000","name":"Betsy Chasse","type":"Person","_key":"32277"} +{"label":"Elaine Hendrix","version":41,"id":"55422","lastModified":"1301958059000","name":"Elaine Hendrix","type":"Person","_key":"32278"} +{"label":"John Ross Bowie","version":23,"id":"55425","lastModified":"1301902340000","name":"John Ross Bowie","type":"Person","_key":"32279"} +{"label":"Robert Bailey Jr.","version":26,"id":"55426","lastModified":"1301902153000","name":"Robert Bailey Jr.","type":"Person","_key":"32280"} +{"label":"Cast Away","description":"Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo. Can he survive in this tropical wasteland? Will he ever return to woman he loves?","id":"8358","runtime":143,"imdbId":"tt0162222","trailer":"http:\/\/www.youtube.com\/watch?v=-2-NJ2HJEkQ","version":288,"lastModified":"1301901343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/232\/4c79b5ce5e73d613d8000232\/cast-away-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Cast Away","releaseDate":976147200000,"language":"en","type":"Movie","_key":"32281"} +{"label":"Lari White","version":21,"id":"55433","lastModified":"1301901768000","name":"Lari White","type":"Person","_key":"32282"} +{"label":"Leonid Citer","version":22,"id":"55434","lastModified":"1301902005000","name":"Leonid Citer","type":"Person","_key":"32283"} +{"label":"David Allen Brooks","version":25,"id":"55435","lastModified":"1301902053000","name":"David Allen Brooks","type":"Person","_key":"32284"} +{"label":"Semion Sudarikov","version":21,"id":"55436","lastModified":"1301901639000","name":"Semion Sudarikov","type":"Person","_key":"32285"} +{"label":"Peter von Berg","version":21,"id":"55437","lastModified":"1301902129000","name":"Peter von Berg","type":"Person","_key":"32286"} +{"label":"Dmitri S. Boudrine","version":22,"id":"55438","lastModified":"1301901935000","name":"Dmitri S. Boudrine","type":"Person","_key":"32287"} +{"label":"Kit Kittredge: An American Girl","description":"Set in Cincinnati at the height of the Great Depression, Kit Kittredge, a resourceful young girl, helps her mother run a boardinghouse after her father loses his job.","id":"8359","runtime":101,"imdbId":"tt0846308","homepage":"http:\/\/www.americangirl.com\/movie\/","version":249,"lastModified":"1301905387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4d4bdfe37b9aa13aaf0071f7\/kit-kittredge-an-american-girl-mid.jpg","studio":"Goldsmith-Thomas Productions","genre":"Comedy","title":"Kit Kittredge: An American Girl","releaseDate":1214956800000,"language":"en","type":"Movie","_key":"32288"} +{"label":"Patricia Rozema","version":24,"id":"55439","lastModified":"1301901566000","name":"Patricia Rozema","type":"Person","_key":"32289"} +{"label":"Superbad","description":"High school best buddies are facing separation anxiety as they prepare to go off to college. While attempting to score alcohol for a party with help from their fake ID-toting friend, \"McLovin\", the guys' evening takes a turn into chaotic territory.","id":"8363","runtime":118,"imdbId":"tt0829482","trailer":"http:\/\/www.youtube.com\/watch?v=0CsLlNz7Mmw","homepage":"http:\/\/www.areyousuperbad.com\/","version":334,"lastModified":"1302061128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/462\/4c8ce3a55e73d6068f000462\/superbad-mid.jpg","studio":"Apatow Productions","genre":"Comedy","title":"Superbad","releaseDate":1187308800000,"language":"en","tagline":"Come and Get Some.","type":"Movie","_key":"32290"} +{"label":"Christopher Mintz-Plasse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4bcbfce6017a3c0f2c000041\/christopher-mintz-plasse-profile.jpg","version":77,"birthday":"614296800000","id":"54691","birthplace":"Los Angeles","lastModified":"1301976643000","name":"Christopher Mintz-Plasse","type":"Person","_key":"32291"} +{"label":"Martha MacIsaac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4d281f957b9aa134d800200f\/martha-macisaac-profile.jpg","version":34,"id":"54692","lastModified":"1301976643000","name":"Martha MacIsaac","type":"Person","_key":"32292"} +{"label":"Clement Blake","version":25,"id":"54694","lastModified":"1301976643000","name":"Clement Blake","type":"Person","_key":"32293"} +{"label":"Erica Vittina Phillips","version":25,"id":"54695","lastModified":"1301976643000","name":"Erica Vittina Phillips","type":"Person","_key":"32294"} +{"label":"Joe Nunez","version":32,"id":"54696","lastModified":"1301976643000","name":"Joe Nunez","type":"Person","_key":"32295"} +{"label":"Dave Franco","version":40,"id":"54697","lastModified":"1301976644000","name":"Dave Franco","type":"Person","_key":"32296"} +{"label":"Marcella Lentz-Pope","version":25,"id":"54698","lastModified":"1301976644000","name":"Marcella Lentz-Pope","type":"Person","_key":"32297"} +{"label":"Scott Gerbacia","version":25,"id":"54699","lastModified":"1301976644000","name":"Scott Gerbacia","type":"Person","_key":"32298"} +{"label":"Laura Seay","version":25,"id":"54700","lastModified":"1301976644000","name":"Laura Seay","type":"Person","_key":"32299"} +{"label":"Roger Iwami","version":25,"id":"54701","lastModified":"1301976644000","name":"Roger Iwami","type":"Person","_key":"32300"} +{"label":"Clint Mabry","version":25,"id":"54702","lastModified":"1301976644000","name":"Clint Mabry","type":"Person","_key":"32301"} +{"label":"Stacy Edwards","version":29,"id":"43372","lastModified":"1301976644000","name":"Stacy Edwards","type":"Person","_key":"32302"} +{"label":"Mark Rogen","version":25,"id":"54703","lastModified":"1301976644000","name":"Mark Rogen","type":"Person","_key":"32303"} +{"label":"Charlie Hartsock","version":25,"id":"54704","lastModified":"1301976644000","name":"Charlie Hartsock","type":"Person","_key":"32304"} +{"label":"Donna Hardy","version":25,"id":"54705","lastModified":"1301976644000","name":"Donna Hardy","type":"Person","_key":"32305"} +{"label":"Charley Rossman","version":26,"id":"54706","lastModified":"1301976644000","name":"Charley Rossman","type":"Person","_key":"32306"} +{"label":"Carla Gallo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/539\/4cbdbf377b9aa138d9001539\/carla-gallo-profile.jpg","version":43,"id":"54708","lastModified":"1301976644000","name":"Carla Gallo","type":"Person","_key":"32307"} +{"label":"Ben Best","version":34,"id":"54709","lastModified":"1301976644000","name":"Ben Best","type":"Person","_key":"32308"} +{"label":"Jody Hill","version":38,"id":"54710","lastModified":"1301976644000","name":"Jody Hill","type":"Person","_key":"32309"} +{"label":"Kevin Breznahan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ed\/4c4ef04b7b9aa1326b0000ed\/kevin-breznahan-profile.jpg","version":39,"id":"54711","lastModified":"1301976644000","name":"Kevin Breznahan","type":"Person","_key":"32310"} +{"label":"Mousa Kraish","version":44,"id":"54712","lastModified":"1301976644000","name":"Mousa Kraish","type":"Person","_key":"32311"} +{"label":"Nicholas Jasenovec","version":34,"id":"54713","lastModified":"1301976644000","name":"Nicholas Jasenovec","type":"Person","_key":"32312"} +{"label":"Matt McKane","version":23,"id":"54715","lastModified":"1301976644000","name":"Matt McKane","type":"Person","_key":"32313"} +{"label":"Lauren Miller","version":25,"id":"54716","lastModified":"1301976644000","name":"Lauren Miller","type":"Person","_key":"32314"} +{"label":"Peter Salett","version":29,"id":"53607","lastModified":"1301976644000","name":"Peter Salett","type":"Person","_key":"32315"} +{"label":"Rakefet Abergel","version":25,"id":"54717","lastModified":"1301976644000","name":"Rakefet Abergel","type":"Person","_key":"32316"} +{"label":"Brooke Dillman","version":25,"id":"54718","lastModified":"1301976644000","name":"Brooke Dillman","type":"Person","_key":"32317"} +{"label":"Michael Naughton","version":25,"id":"54719","lastModified":"1301976644000","name":"Michael Naughton","type":"Person","_key":"32318"} +{"label":"Steve Bannos","version":27,"id":"54720","lastModified":"1301976644000","name":"Steve Bannos","type":"Person","_key":"32319"} +{"label":"Casey Margolis","version":25,"id":"54721","lastModified":"1301976644000","name":"Casey Margolis","type":"Person","_key":"32320"} +{"label":"Laura Marano","version":25,"id":"54722","lastModified":"1301976644000","name":"Laura Marano","type":"Person","_key":"32321"} +{"label":"Matthew Bass","version":25,"id":"54723","lastModified":"1301976644000","name":"Matthew Bass","type":"Person","_key":"32322"} +{"label":"Aurora Snow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a4\/4c481c6d5e73d61efb0003a4\/aurora-snow-profile.jpg","version":33,"id":"54724","lastModified":"1301976644000","name":"Aurora Snow","type":"Person","_key":"32323"} +{"label":"Jenna Haze","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d3\/4c337eb65e73d649680001d3\/jenna-haze-profile.jpg","version":74,"birthday":"383180400000","id":"54725","birthplace":"Fullerton, California","lastModified":"1302035794000","name":"Jenna Haze","type":"Person","_key":"32324"} +{"label":"Ted Haigh","version":25,"id":"54726","lastModified":"1301976644000","name":"Ted Haigh","type":"Person","_key":"32325"} +{"label":"Michael Fennessey","version":25,"id":"54727","lastModified":"1301976644000","name":"Michael Fennessey","type":"Person","_key":"32326"} +{"label":"Brian Huskey","version":27,"id":"54728","lastModified":"1301976644000","name":"Brian Huskey","type":"Person","_key":"32327"} +{"label":"Clark Duke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/056\/4c248dc95e73d61a96000056\/clark-duke-profile.jpg","version":59,"id":"54729","lastModified":"1301976644000","name":"Clark Duke","type":"Person","_key":"32328"} +{"label":"Stephen Borrello IV","version":25,"id":"54730","lastModified":"1301976644000","name":"Stephen Borrello IV","type":"Person","_key":"32329"} +{"label":"Naathan Phan","version":25,"id":"54731","lastModified":"1301976644000","name":"Naathan Phan","type":"Person","_key":"32330"} +{"label":"Pamella D'Pella","version":25,"id":"54732","lastModified":"1301976644000","name":"Pamella D'Pella","type":"Person","_key":"32331"} +{"label":"Greg Mottola","version":41,"id":"54733","lastModified":"1301976645000","name":"Greg Mottola","type":"Person","_key":"32332"} +{"label":"Der Schuh des Manitu","description":"No overview found.","id":"8366","runtime":87,"imdbId":"tt0248408","version":105,"lastModified":"1301902727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/339\/4bc92146017a3c57fe00d339\/der-schuh-des-manitu-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Comedy","title":"Der Schuh des Manitu","releaseDate":994982400000,"language":"en","type":"Movie","_key":"32333"} +{"label":"Robin Hood: Prince Of Thieves","description":"When Robin and his Moorish companion come to England and the tyranny of the Sheriff of Nottingham, he decides to fight back as an outlaw.","id":"8367","runtime":143,"imdbId":"tt0102798","trailer":"http:\/\/www.youtube.com\/watch?v=cpyKQbrtOC4 ","version":214,"lastModified":"1301906819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/346\/4bc92147017a3c57fe00d346\/robin-hood-prince-of-thieves-mid.jpg","studio":"Warner Bros. Pictures","genre":"Adventure","title":"Robin Hood: Prince Of Thieves","releaseDate":676857600000,"language":"en","tagline":"For the good of all men, and the love of one woman, he fought to uphold justice by breaking the law.","type":"Movie","_key":"32334"} +{"label":"The Garden of Eden","description":"No overview found.","id":"8368","runtime":0,"imdbId":"tt1031243","version":156,"lastModified":"1301904188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4d96c1c25e73d622480046ec\/the-garden-of-eden-mid.jpg","studio":"Devonshire Productions","genre":"Drama","title":"The Garden of Eden","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"32335"} +{"label":"Jack Huston","version":30,"id":"54738","lastModified":"1301901330000","name":"Jack Huston","type":"Person","_key":"32336"} +{"label":"Caterina Murino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e08\/4d70fb515e73d65a22000e08\/caterina-murino-profile.jpg","version":40,"id":"10916","lastModified":"1301901183000","name":"Caterina Murino","type":"Person","_key":"32337"} +{"label":"Isabella Orlowska","version":20,"id":"54739","lastModified":"1301902181000","name":"Isabella Orlowska","type":"Person","_key":"32338"} +{"label":"Entf\u00fchrt - Ich hol dich da raus","description":"No overview found.","id":"8370","runtime":91,"imdbId":"tt1204895","version":36,"lastModified":"1301908587000","studio":"20:15 Film","genre":"Thriller","title":"Entf\u00fchrt - Ich hol dich da raus","releaseDate":1207612800000,"language":"en","type":"Movie","_key":"32339"} +{"label":"Victoria Scherer","version":20,"id":"54746","lastModified":"1301902340000","name":"Victoria Scherer","type":"Person","_key":"32340"} +{"label":"Guter Junge","description":"No overview found.","id":"8371","runtime":90,"imdbId":"tt1205492","version":37,"lastModified":"1301906741000","studio":"Colonia Media","genre":"Drama","title":"Guter Junge","releaseDate":1207699200000,"language":"en","type":"Movie","_key":"32341"} +{"label":"Sandro Lohmann","version":20,"id":"54750","lastModified":"1301902368000","name":"Sandro Lohmann","type":"Person","_key":"32342"} +{"label":"Torsten C. Fischer","version":18,"id":"54751","lastModified":"1301902153000","name":"Torsten C. Fischer","type":"Person","_key":"32343"} +{"label":"Lonesome Cowboys","description":"No overview found.","id":"8372","runtime":109,"imdbId":"tt0063236","version":75,"lastModified":"1301905712000","studio":"Andy Warhol Enterprises","genre":"Western","title":"Lonesome Cowboys","releaseDate":-32572800000,"language":"en","type":"Movie","_key":"32344"} +{"label":"Julian Burrough","version":20,"id":"54752","lastModified":"1301901996000","name":"Julian Burrough","type":"Person","_key":"32345"} +{"label":"Tom Hompertz","version":20,"id":"54753","lastModified":"1301902340000","name":"Tom Hompertz","type":"Person","_key":"32346"} +{"label":"Viva","version":19,"id":"54754","lastModified":"1301901900000","name":"Viva","type":"Person","_key":"32347"} +{"label":"Allen Midgette","version":21,"id":"54755","lastModified":"1301901959000","name":"Allen Midgette","type":"Person","_key":"32348"} +{"label":"Frankie Francine","version":20,"id":"54756","lastModified":"1301902340000","name":"Frankie Francine","type":"Person","_key":"32349"} +{"label":"Transformers: Revenge of the Fallen","description":"Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.","id":"8373","runtime":147,"imdbId":"tt1055369","trailer":"http:\/\/www.youtube.com\/watch?v=zuz9PFtdgVw","homepage":"http:\/\/www.transformersmovie.com\/","version":681,"lastModified":"1302018889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4c9fa2365e73d6704b000511\/transformers-revenge-of-the-fallen-mid.jpg","genre":"Action","title":"Transformers: Revenge of the Fallen","releaseDate":1245801600000,"language":"en","tagline":"Revenge is coming.","type":"Movie","_key":"32350"} +{"label":"Ramon Rodriguez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f41\/4d503d1c7b9aa1193e000f41\/ramon-rodriguez-profile.jpg","version":57,"id":"72985","lastModified":"1301904076000","name":"Ramon Rodriguez","type":"Person","_key":"32351"} +{"label":"Isabel Lucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/490\/4bf2e983017a3c320a000490\/isabel-lucas-profile.jpg","biography":"<FONT size=3 face=Calibri>Isabel Lucas, born on 29<SUP>th<\/SUP> January 1985, is an Australian actress perhaps best known for her role as Tasha Andrews on the Australian television soap opera Home and Away (2003\u20132006). Lucas won a Logie Award (for new popular talent) for her performance on the program. Lucas was born in Melbourne, Victoria, Australia. As a child, Lucas lived in Cairns, Queensland. She also lived in Switzerland, Kakadu, and Northern Territory. She has a Swiss mother and an Austra","version":56,"birthday":"475801200000","id":"103554","birthplace":"Melbourne, Australia","lastModified":"1301904091000","name":"Isabel Lucas","type":"Person","_key":"32352"} +{"label":"The Boondock Saints","description":"Sensing a God-given mission to cleanse the earth of all evil, twin brothers Conner and Murphy set out to rid Boston of crime. But instead of joining the police force, these Irish Americans decide to kick criminal butt their own way.","id":"8374","runtime":110,"imdbId":"tt0144117","trailer":"http:\/\/www.youtube.com\/watch?v=q8Mt5yDqngM","homepage":"http:\/\/www.theboondocksaints.com","version":307,"lastModified":"1301901700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/336\/4ca56a565e73d636f9000336\/the-boondock-saints-mid.jpg","studio":"B.D.S. Productions","genre":"Action","title":"The Boondock Saints","releaseDate":933724800000,"language":"en","tagline":"Thy Kingdom Come. Thy Will Be Done.","type":"Movie","_key":"32353"} +{"label":"Sean Patrick Flanery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/993\/4d65512a5e73d66a70000993\/sean-patrick-flanery-profile.jpg","version":71,"id":"54789","lastModified":"1301901104000","name":"Sean Patrick Flanery","type":"Person","_key":"32354"} +{"label":"David Della Rocco","version":35,"id":"54790","lastModified":"1301901240000","name":"David Della Rocco","type":"Person","_key":"32355"} +{"label":"David Ferry","version":38,"id":"54791","lastModified":"1301901310000","name":"David Ferry","type":"Person","_key":"32356"} +{"label":"Brian Mahoney","version":35,"id":"54792","lastModified":"1301901255000","name":"Brian Mahoney","type":"Person","_key":"32357"} +{"label":"Carlo Rota","version":27,"id":"54793","lastModified":"1301902180000","name":"Carlo Rota","type":"Person","_key":"32358"} +{"label":"Troy Duffy","version":44,"id":"54795","lastModified":"1301901255000","name":"Troy Duffy","type":"Person","_key":"32359"} +{"label":"Trahir","description":"No overview found.","id":"8379","runtime":103,"imdbId":"tt0108376","version":39,"lastModified":"1301904475000","studio":"Cactus Films","genre":"Drama","title":"Trahir","releaseDate":754099200000,"language":"en","type":"Movie","_key":"32360"} +{"label":"Alexandru Repan","version":20,"id":"55506","lastModified":"1301902153000","name":"Alexandru Repan","type":"Person","_key":"32361"} +{"label":"Mireille Perrier","version":25,"id":"53905","lastModified":"1301901701000","name":"Mireille Perrier","type":"Person","_key":"32362"} +{"label":"Razvan Vasilescu","version":25,"id":"55507","lastModified":"1301901651000","name":"Razvan Vasilescu","type":"Person","_key":"32363"} +{"label":"Radu Beligan","version":20,"id":"55508","lastModified":"1301902025000","name":"Radu Beligan","type":"Person","_key":"32364"} +{"label":"Asfalt Tango","description":"No overview found.","id":"8380","runtime":100,"imdbId":"tt0115577","version":43,"lastModified":"1301906170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bec\/4d539fd17b9aa13aab012bec\/asfalt-tango-mid.jpg","studio":"Domino Film","genre":"Comedy","title":"Asfalt Tango","releaseDate":820454400000,"language":"en","type":"Movie","_key":"32365"} +{"label":"Nae Caranfil","version":24,"id":"55520","lastModified":"1301901959000","name":"Nae Caranfil","type":"Person","_key":"32366"} +{"label":"Mircea Diaconu","version":20,"id":"55527","lastModified":"1301902180000","name":"Mircea Diaconu","type":"Person","_key":"32367"} +{"label":"Florin Calinescu","version":20,"id":"55528","lastModified":"1301902340000","name":"Florin Calinescu","type":"Person","_key":"32368"} +{"label":"Catalina Rahaianu","version":20,"id":"55529","lastModified":"1301901996000","name":"Catalina Rahaianu","type":"Person","_key":"32369"} +{"label":"Marthe Felten","version":20,"id":"55530","lastModified":"1301902340000","name":"Marthe Felten","type":"Person","_key":"32370"} +{"label":"Adina Cartianu","version":22,"id":"55531","lastModified":"1301902041000","name":"Adina Cartianu","type":"Person","_key":"32371"} +{"label":"Delia Nartea","version":20,"id":"55532","lastModified":"1301902340000","name":"Delia Nartea","type":"Person","_key":"32372"} +{"label":"Today you die","description":"A former thief who is trying to go straight seeks vengeance on those who framed him.","id":"8382","runtime":92,"imdbId":"tt0431114","version":158,"lastModified":"1301903729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ed\/4bc92165017a3c57fe00d3ed\/today-you-die-mid.jpg","studio":"Millennium Films","genre":"Action","title":"Today you die","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"32373"} +{"label":"Anthony 'Treach' Criss","version":32,"id":"62817","lastModified":"1301902023000","name":"Anthony 'Treach' Criss","type":"Person","_key":"32374"} +{"label":"Don E. FauntLeRoy","version":25,"id":"56353","lastModified":"1301901602000","name":"Don E. FauntLeRoy","type":"Person","_key":"32375"} +{"label":"Rote Sonne","description":"No overview found.","id":"8383","runtime":85,"imdbId":"tt0064905","version":55,"lastModified":"1301416893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/325\/4c7bd9897b9aa176c1000325\/rote-sonne-mid.jpg","genre":"Crime","title":"Rote Sonne","releaseDate":20995200000,"language":"en","type":"Movie","_key":"32376"} +{"label":"Rudolf Thome","version":20,"id":"54794","lastModified":"1301902368000","name":"Rudolf Thome","type":"Person","_key":"32377"} +{"label":"Uschi Obermaier","version":21,"id":"130912","lastModified":"1301903078000","name":"Uschi Obermaier","type":"Person","_key":"32378"} +{"label":"Marquard Bohm","version":17,"id":"130913","lastModified":"1301902783000","name":"Marquard Bohm","type":"Person","_key":"32379"} +{"label":"Sylvia Kekul\u00e9","version":17,"id":"130914","lastModified":"1301902749000","name":"Sylvia Kekul\u00e9","type":"Person","_key":"32380"} +{"label":"Gaby Go","version":17,"id":"130915","lastModified":"1301902749000","name":"Gaby Go","type":"Person","_key":"32381"} +{"label":"Proletariat Trilogy","description":"No overview found.","id":"8384","title":"Proletariat Trilogy","language":"en","lastModified":"1301908587000","version":95,"type":"Movie","_key":"32382"} +{"label":"Loser Trilogy","description":"No overview found.","id":"8385","title":"Loser Trilogy","language":"en","lastModified":"1301906640000","version":35,"type":"Movie","_key":"32383"} +{"label":"How High","description":"Two guys by the name of Silas and Jamal decided to one day smoke something magical, which eventually helps them to ace their college entrance exam.","id":"8386","runtime":91,"imdbId":"tt0278488","version":148,"lastModified":"1301903088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e08\/4cf9c27d7b9aa1514b001e08\/how-high-mid.jpg","genre":"Comedy","title":"How High","releaseDate":1008892800000,"language":"en","type":"Movie","_key":"32384"} +{"label":"Redman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d01\/4cf974bd7b9aa15149001d01\/redman-profile.jpg","version":23,"id":"54799","lastModified":"1301901274000","name":"Redman","type":"Person","_key":"32385"} +{"label":"Cypress Hill","version":21,"id":"54801","lastModified":"1301901615000","name":"Cypress Hill","type":"Person","_key":"32386"} +{"label":"Essence Atkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/149\/4d8be9617b9aa13ae7002149\/essence-atkins-profile.jpg","version":18,"id":"154000","lastModified":"1301903428000","name":"Essence Atkins","type":"Person","_key":"32387"} +{"label":"Airboss","description":"No overview found.","id":"8387","runtime":110,"imdbId":"tt0192962","version":91,"lastModified":"1301906741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/403\/4bc92167017a3c57fe00d403\/airboss-mid.jpg","genre":"Action","title":"Airboss","releaseDate":852076800000,"language":"en","type":"Movie","_key":"32388"} +{"label":"Kayle Watson","version":20,"id":"54802","lastModified":"1301901824000","name":"Kayle Watson","type":"Person","_key":"32389"} +{"label":"Vlad Kotchev","version":16,"id":"54803","lastModified":"1301902153000","name":"Vlad Kotchev","type":"Person","_key":"32390"} +{"label":"Kelly Gleeson","version":16,"id":"56222","lastModified":"1301901675000","name":"Kelly Gleeson","type":"Person","_key":"32391"} +{"label":"J. Christian Ingvordsen","version":35,"id":"54804","lastModified":"1301901809000","name":"J. Christian Ingvordsen","type":"Person","_key":"32392"} +{"label":"\u00a1Three Amigos!","description":"Three unemployed actors accept an invitation to a Mexican village to replay their bandit fighter roles, unaware that it is the real thing.","id":"8388","runtime":104,"imdbId":"tt0092086","trailer":"http:\/\/www.youtube.com\/watch?v=WUTl8DSYUQA","version":76,"lastModified":"1301902605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc9216d017a3c57fe00d41e\/ithree-amigos-mid.jpg","studio":"HBO Films","genre":"Comedy","title":"\u00a1Three Amigos!","releaseDate":534556800000,"language":"en","type":"Movie","_key":"32393"} +{"label":"Patrice Martinez","version":21,"id":"54813","lastModified":"1301902098000","name":"Patrice Martinez","type":"Person","_key":"32394"} +{"label":"Philip Gordon","version":20,"id":"54814","lastModified":"1301902276000","name":"Philip Gordon","type":"Person","_key":"32395"} +{"label":"Dyana Ortelli","version":17,"id":"104382","lastModified":"1301902896000","name":"Dyana Ortelli","type":"Person","_key":"32396"} +{"label":"Brinke Stevens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/378\/4bfa0a84017a3c702d000378\/brinke-stevens-profile.jpg","version":135,"id":"97621","lastModified":"1302066403000","name":"Brinke Stevens","type":"Person","_key":"32397"} +{"label":"Definitely, Maybe","description":"When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.","id":"8390","runtime":112,"imdbId":"tt0832266","trailer":"http:\/\/www.youtube.com\/watch?v=LMpLWf5tv30","homepage":"http:\/\/www.definitelymaybemovie.com\/","version":251,"lastModified":"1301901555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d63\/4cf621e87b9aa1514a000d63\/definitely-maybe-mid.jpg","studio":"Working Title Films","genre":"Comedy","title":"Definitely, Maybe","releaseDate":1201132800000,"language":"en","type":"Movie","_key":"32398"} +{"label":"Liane Balaban","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2af\/4cc87a945e73d650220002af\/liane-balaban-profile.jpg","version":36,"id":"54817","lastModified":"1301902004000","name":"Liane Balaban","type":"Person","_key":"32399"} +{"label":"Adam Brooks","version":48,"id":"16328","lastModified":"1301901329000","name":"Adam Brooks","type":"Person","_key":"32400"} +{"label":"When night is falling","description":"A prudish woman, working on tenure as a literacy professor at a large urban university, finds herself strangely attracted to a free-spirited, liberal woman whom works at a local carnival which comes to town.","id":"8391","runtime":96,"imdbId":"tt0114916","version":118,"lastModified":"1301907413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/441\/4bc92170017a3c57fe00d441\/when-night-is-falling-mid.jpg","studio":"Alliance Communications Corporation","genre":"Drama","title":"When night is falling","releaseDate":799632000000,"language":"en","type":"Movie","_key":"32401"} +{"label":"Pascale Bussi\u00e8res","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/135\/4c2cab455e73d63997000135\/pascale-bussieres-profile.jpg","version":28,"id":"54818","lastModified":"1301901468000","name":"Pascale Bussi\u00e8res","type":"Person","_key":"32402"} +{"label":"Rachael Crawford","version":20,"id":"54819","lastModified":"1301901582000","name":"Rachael Crawford","type":"Person","_key":"32403"} +{"label":"My Neighbor Totoro","description":"Two young girls, Mei and Satsuki, move into a new home close to the hospital that their mother is in. In their yard is a large tree which is home to three Totoros, gods of the forest. Soon after, news from the hospital comes up that their mother can't come home as promised, so Mei (the younger) runs away from home to visit her mom. Satsuki then needs to turn to Totoro for help to find her.","id":"8392","runtime":86,"imdbId":"tt0096283","trailer":"http:\/\/www.youtube.com\/watch?v=pp9PDj_zb1k","version":178,"lastModified":"1301992715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4bd8d992017a3c1bff0001d1\/8392-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"My Neighbor Totoro","releaseDate":577152000000,"language":"en","type":"Movie","_key":"32404"} +{"label":"Noriko Hidaka","version":28,"id":"55662","lastModified":"1301901669000","name":"Noriko Hidaka","type":"Person","_key":"32405"} +{"label":"Hitoshi Takagi","version":27,"id":"55663","lastModified":"1301901579000","name":"Hitoshi Takagi","type":"Person","_key":"32406"} +{"label":"Chika Sakamoto","version":27,"id":"55664","lastModified":"1301901853000","name":"Chika Sakamoto","type":"Person","_key":"32407"} +{"label":"Shigesato Itoi","version":29,"id":"55665","lastModified":"1301901576000","name":"Shigesato Itoi","type":"Person","_key":"32408"} +{"label":"Tanie Kitabayashi","version":29,"id":"55666","lastModified":"1301901814000","name":"Tanie Kitabayashi","type":"Person","_key":"32409"} +{"label":"The Gods Must Be Crazy","description":"Misery is brought to a small group of Sho in the Kalahari desert in the form of a cola bottle. In his quest to throw the evil object over the edge of the earth, Xixo encounters Western \"civilization,\" a haphazard doctor and a tyranical despot. ","id":"8393","runtime":109,"imdbId":"tt0080801","trailer":"http:\/\/www.youtube.com\/watch?v=GorHLQ-jLRQ","version":101,"lastModified":"1301903470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45b\/4d0cb3cd7b9aa1025c00145b\/the-gods-must-be-crazy-mid.jpg","studio":"Catalyst Films International","genre":"Comedy","title":"The Gods Must Be Crazy","releaseDate":367200000000,"language":"en","type":"Movie","_key":"32410"} +{"label":"Jamie Uys","version":35,"id":"55668","lastModified":"1301901958000","name":"Jamie Uys","type":"Person","_key":"32411"} +{"label":"N!xau","version":24,"id":"55674","lastModified":"1301901939000","name":"N!xau","type":"Person","_key":"32412"} +{"label":"Michael Thys","version":21,"id":"55675","lastModified":"1301902204000","name":"Michael Thys","type":"Person","_key":"32413"} +{"label":"Sandra Prinsloo","version":21,"id":"55676","lastModified":"1301901678000","name":"Sandra Prinsloo","type":"Person","_key":"32414"} +{"label":"Louw Verwey","version":21,"id":"55677","lastModified":"1301902368000","name":"Louw Verwey","type":"Person","_key":"32415"} +{"label":"Brigadistas","description":"No overview found.","id":"8394","runtime":45,"version":20,"lastModified":"1301906178000","studio":"Roadside-Dokumentarfilm","genre":"Documentary","title":"Brigadistas","releaseDate":1184457600000,"language":"en","type":"Movie","_key":"32416"} +{"label":"Daniel Burkholz","version":17,"id":"54820","lastModified":"1301901786000","name":"Daniel Burkholz","type":"Person","_key":"32417"} +{"label":"The Hitcher","description":"While driving through the New Mexico Desert during a rainy night, the college students Jim Halsey and his girlfriend Grace Andrews give a ride to the hitchhiker John Ryder. While in their car, the stranger proves to be a psychopath threatening the young couple with a knife, but Jim succeeds to throw him out of the car on the road. On the next morning, the young couple sees John in another car.","id":"8398","runtime":84,"imdbId":"tt0455960","version":185,"lastModified":"1301902395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4d95b7867b9aa12e9300021f\/the-hitcher-mid.jpg","studio":"Focus Films","genre":"Horror","title":"The Hitcher","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"32418"} +{"label":"Dave Meyers","version":20,"id":"54827","lastModified":"1301901766000","name":"Dave Meyers","type":"Person","_key":"32419"} +{"label":"Sophia Bush","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4cf19d9b7b9aa1449600002d\/sophia-bush-profile.jpg","version":34,"id":"54830","lastModified":"1301901204000","name":"Sophia Bush","type":"Person","_key":"32420"} +{"label":"Zachary Knighton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12c\/4ceeb18d5e73d6531500012c\/zachary-knighton-profile.jpg","version":26,"id":"54834","lastModified":"1301901707000","name":"Zachary Knighton","type":"Person","_key":"32421"} +{"label":"Kyle Davis","version":20,"id":"54850","lastModified":"1301901884000","name":"Kyle Davis","type":"Person","_key":"32422"} +{"label":"Danny Bolero","version":19,"id":"54852","lastModified":"1301901884000","name":"Danny Bolero","type":"Person","_key":"32423"} +{"label":"Memory Books","description":"No overview found.","id":"8400","runtime":90,"imdbId":"tt1223963","version":124,"lastModified":"1301904475000","studio":"Kick Film Produktion","genre":"Documentary","title":"Memory Books","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"32424"} +{"label":"Christa Graf","version":20,"id":"54829","lastModified":"1301902196000","name":"Christa Graf","type":"Person","_key":"32425"} +{"label":"Day of the Dead","description":"The final chapter of George A. Romero's \"Dead Trilogy\". In an underground government installation they are searching for a cure to overcome this strange transformation into zombies. Unfortunately, the zombies from above ground have made their way into the bunker.","id":"8408","runtime":102,"imdbId":"tt0088993","trailer":"http:\/\/www.youtube.com\/watch?v=1394","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/day-of-the-dead","version":180,"lastModified":"1301906952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/481\/4bc92179017a3c57fe00d481\/day-of-the-dead-mid.jpg","studio":"Dead Films","genre":"Horror","title":"Day of the Dead","releaseDate":489196800000,"language":"en","type":"Movie","_key":"32426"} +{"label":"Lori Cardille","version":23,"id":"54853","lastModified":"1301902164000","name":"Lori Cardille","type":"Person","_key":"32427"} +{"label":"Terry Alexander","version":28,"id":"54854","lastModified":"1301901893000","name":"Terry Alexander","type":"Person","_key":"32428"} +{"label":"Joseph Pilato","version":26,"id":"54855","lastModified":"1301901572000","name":"Joseph Pilato","type":"Person","_key":"32429"} +{"label":"Jarlath Conroy","version":23,"id":"54856","lastModified":"1301901675000","name":"Jarlath Conroy","type":"Person","_key":"32430"} +{"label":"Anthony Dileo Jr.","version":25,"id":"54857","lastModified":"1301901976000","name":"Anthony Dileo Jr.","type":"Person","_key":"32431"} +{"label":"Richard Liberty","version":26,"id":"54858","lastModified":"1301901685000","name":"Richard Liberty","type":"Person","_key":"32432"} +{"label":"Sherman Howard","version":27,"id":"54859","lastModified":"1301901572000","name":"Sherman Howard","type":"Person","_key":"32433"} +{"label":"A Man Apart","description":"When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.","id":"8409","runtime":109,"imdbId":"tt0266465","version":161,"lastModified":"1301901788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49b\/4bc9217d017a3c57fe00d49b\/a-man-apart-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"A Man Apart","releaseDate":1049414400000,"language":"en","type":"Movie","_key":"32434"} +{"label":"Geno Silva","version":24,"id":"54864","lastModified":"1301901776000","name":"Geno Silva","type":"Person","_key":"32435"} +{"label":"Jeff Kober","version":28,"id":"54865","lastModified":"1301901595000","name":"Jeff Kober","type":"Person","_key":"32436"} +{"label":"The Wild Blue Yonder","description":"An alien narrates the story of his dying planet, his and his people's visitations to Earth and Earth's self-made demise, while human astronauts in space are attempting to find an alternate planet for surviving humans to live on.","id":"8410","runtime":81,"imdbId":"tt0443693","homepage":"http:\/\/www.wildblueyonder.wernerherzog.com\/","version":154,"lastModified":"1301904296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91a\/4d3e4e3f7b9aa15bb000091a\/the-wild-blue-yonder-mid.jpg","studio":"Werner Herzog Filmproduktion","genre":"Drama","title":"The Wild Blue Yonder","releaseDate":1125878400000,"language":"en","type":"Movie","_key":"32437"} +{"label":"Donald Williams","version":19,"id":"55743","lastModified":"1301902203000","name":"Donald Williams","type":"Person","_key":"32438"} +{"label":"Ellen Baker","version":19,"id":"55744","lastModified":"1301902032000","name":"Ellen Baker","type":"Person","_key":"32439"} +{"label":"Franklin Chang-Diaz","version":21,"id":"55745","lastModified":"1301902153000","name":"Franklin Chang-Diaz","type":"Person","_key":"32440"} +{"label":"Shannon Lucid","version":21,"id":"55746","lastModified":"1301902340000","name":"Shannon Lucid","type":"Person","_key":"32441"} +{"label":"Michael McCulley","version":21,"id":"55747","lastModified":"1301902340000","name":"Michael McCulley","type":"Person","_key":"32442"} +{"label":"Roger Diehl","version":21,"id":"55748","lastModified":"1301902340000","name":"Roger Diehl","type":"Person","_key":"32443"} +{"label":"Martin Lo","version":21,"id":"55749","lastModified":"1301902340000","name":"Martin Lo","type":"Person","_key":"32444"} +{"label":"Ted Sweetser","version":21,"id":"55750","lastModified":"1301902153000","name":"Ted Sweetser","type":"Person","_key":"32445"} +{"label":"Anatomie","description":"No overview found.","id":"8412","title":"Anatomie","language":"en","lastModified":"1301905992000","version":62,"type":"Movie","_key":"32446"} +{"label":"Event Horizon","description":"In the year 2047 a group of astronauts are sent to investigate and salvage the long lost starship \"Event Horizon\". The ship disappeared mysteriously 7 years before on its maiden voyage and with its return comes even more mystery as the crew of the \"Lewis and Clark\" discover the real truth behind its disappearance and something even more terrifying.","id":"8413","runtime":96,"imdbId":"tt0119081","trailer":"http:\/\/www.youtube.com\/watch?v=gd0nQUF00Sg","version":338,"lastModified":"1301901363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4bc92185017a3c57fe00d4c8\/event-horizon-mid.jpg","studio":"Golar Productions","genre":"Horror","title":"Event Horizon","releaseDate":871603200000,"language":"en","tagline":"Infinite Space - Infinite Terror","type":"Movie","_key":"32447"} +{"label":"Richard T. Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/193\/4ca478e27b9aa16ed6000193\/richard-t-jones-profile.jpg","version":38,"id":"55755","lastModified":"1301901562000","name":"Richard T. Jones","type":"Person","_key":"32448"} +{"label":"Interview","description":"Everyone wants a piece of a celebrity. Pierre is a political reporter, assigned to write a fluff piece on Katya, a blond who acts in slasher movies and a Fox show about single girls in the city. The interview, at a restaurant, goes badly: she's late, he's unprepared and rude. After leaving, he bangs his head in a fender bender and she takes him to her loft to clean the wound. ","id":"8414","runtime":100,"imdbId":"tt0480269","trailer":"http:\/\/www.youtube.com\/watch?v=522","homepage":"http:\/\/www.sonyclassics.com\/interview\/","version":195,"lastModified":"1301904072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/524\/4bc92193017a3c57fe00d524\/interview-mid.jpg","studio":"Cinemavault Releasing","genre":"Drama","title":"Interview","releaseDate":1169251200000,"language":"en","type":"Movie","_key":"32449"} +{"label":"Michael Buscemi","version":27,"id":"54883","lastModified":"1301901566000","name":"Michael Buscemi","type":"Person","_key":"32450"} +{"label":"Tara Elders","version":24,"id":"54884","lastModified":"1301901651000","name":"Tara Elders","type":"Person","_key":"32451"} +{"label":"David Schecter","version":21,"id":"54885","lastModified":"1301901996000","name":"David Schecter","type":"Person","_key":"32452"} +{"label":"Molly Griffith","version":21,"id":"54886","lastModified":"1301901787000","name":"Molly Griffith","type":"Person","_key":"32453"} +{"label":"Elizabeth Bracco","version":23,"id":"54887","lastModified":"1301901958000","name":"Elizabeth Bracco","type":"Person","_key":"32454"} +{"label":"James Villemaire","version":25,"id":"54888","lastModified":"1301901651000","name":"James Villemaire","type":"Person","_key":"32455"} +{"label":"Ganheddo","description":"No overview found.","id":"8415","runtime":92,"imdbId":"tt0097410","version":65,"lastModified":"1301906598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00a\/4cdb676c5e73d605cf00000a\/ganheddo-mid.jpg","studio":"Bandai Visual Company (JAPAN)","genre":"Science Fiction","title":"Ganheddo","releaseDate":599616000000,"language":"en","type":"Movie","_key":"32456"} +{"label":"The Conformist","description":"A killer leaves his Italian homeland to arrange the assassination of his former teacher.","id":"8416","runtime":107,"imdbId":"tt0065571","version":91,"lastModified":"1302013925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/484\/4cdd5c7e7b9aa13803000484\/il-conformista-mid.jpg","studio":"Mars Films","genre":"Drama","title":"The Conformist","releaseDate":25401600000,"language":"en","type":"Movie","_key":"32457"} +{"label":"Enzo Tarascio","version":29,"id":"55757","lastModified":"1301940154000","name":"Enzo Tarascio","type":"Person","_key":"32458"} +{"label":"Yvonne Sanson","version":21,"id":"55758","lastModified":"1301940154000","name":"Yvonne Sanson","type":"Person","_key":"32459"} +{"label":"Jud S\u00fc\u00df","description":"No overview found.","id":"8417","runtime":98,"imdbId":"tt0032653","version":45,"lastModified":"1301906170000","studio":"Terra-Filmkunst GmbH","genre":"Drama","title":"Jud S\u00fc\u00df","releaseDate":-925344000000,"language":"en","type":"Movie","_key":"32460"} +{"label":"Veit Harlan","version":22,"id":"55761","lastModified":"1301901566000","name":"Veit Harlan","type":"Person","_key":"32461"} +{"label":"Kristina S\u00f6derbaum","version":21,"id":"55762","lastModified":"1301901787000","name":"Kristina S\u00f6derbaum","type":"Person","_key":"32462"} +{"label":"Kolberg","description":"During Napoleon's victorious campaign in Germany, the city of Kolberg gets isolated from the retreating Prussian forces. The population of Kolberg refuses to capitulate and organizes the resistance against the French army, which immediately submits the city to massive bombardmentsKolberg\" is a unique document showing a well-oiled propaganda machine collapsing in the face of its immanent demise. It achieves the opposite of its intent. The stolid face at the end of the film with the proto-Nazi fla","id":"8418","runtime":110,"imdbId":"tt0036989","version":70,"lastModified":"1301905280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/696\/4cb27bdc5e73d65b84000696\/kolberg-mid.jpg","studio":"UFA Filmproduktion GmbH","genre":"History","title":"Kolberg","releaseDate":-786412800000,"language":"en","type":"Movie","_key":"32463"} +{"label":"Horst Caspar","version":20,"id":"55764","lastModified":"1301901698000","name":"Horst Caspar","type":"Person","_key":"32464"} +{"label":"Claus Clausen","version":21,"id":"55765","lastModified":"1301901786000","name":"Claus Clausen","type":"Person","_key":"32465"} +{"label":"Die M\u00e4dels vom Immenhof","description":"No overview found.","id":"8419","runtime":91,"imdbId":"tt0048404","version":50,"lastModified":"1301905336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4d1a6b305e73d6084200b25e\/die-m-dels-vom-immenhof-mid.jpg","studio":"Arca-Filmproduktion GmbH","genre":"Drama","title":"Die M\u00e4dels vom Immenhof","releaseDate":-454464000000,"language":"en","type":"Movie","_key":"32466"} +{"label":"Christiane K\u00f6nig","version":20,"id":"55770","lastModified":"1301901787000","name":"Christiane K\u00f6nig","type":"Person","_key":"32467"} +{"label":"Peter Tost","version":21,"id":"55771","lastModified":"1301902153000","name":"Peter Tost","type":"Person","_key":"32468"} +{"label":"And God Created Woman","description":"In sunny St. Tropez, a young sexpot loves one brother but marries the other.","id":"8420","runtime":95,"imdbId":"tt0049189","version":115,"lastModified":"1301903456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b01\/4d2cf65f7b9aa11a62000b01\/et-dieu-cr-a-la-femme-mid.jpg","studio":"I\u00e9na Productions","genre":"Drama","title":"And God Created Woman","releaseDate":-413164800000,"language":"en","type":"Movie","_key":"32469"} +{"label":"Jacqueline Ventura","version":21,"id":"55777","lastModified":"1301902098000","name":"Jacqueline Ventura","type":"Person","_key":"32470"} +{"label":"Isabelle Corey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ae\/4bd6fba2017a3c21f60000ae\/isabelle-corey-profile.jpg","version":25,"id":"55778","lastModified":"1301902179000","name":"Isabelle Corey","type":"Person","_key":"32471"} +{"label":"Zidane, un portrait du 21e si\u00e8cle","description":"Halfway between a sports documentary and an conceptual art installation, \"Zidane\" consists in a full-length soccer game (Real Madrid vs. Villareal, April 23, 2005) entirely filmed from the perspective of soccer superstar Zinedine Zidane.","id":"8421","runtime":90,"imdbId":"tt0478337","version":36,"lastModified":"1301905004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19e\/4c4634db5e73d61ef800019e\/zidane-un-portrait-du-21e-siecle-mid.jpg","studio":"Canal Plus","genre":"Documentary","title":"Zidane, un portrait du 21e si\u00e8cle","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"32472"} +{"label":"Douglas Gordon","version":20,"id":"55403","lastModified":"1301901786000","name":"Douglas Gordon","type":"Person","_key":"32473"} +{"label":"Philippe Parreno","version":20,"id":"55404","lastModified":"1301902339000","name":"Philippe Parreno","type":"Person","_key":"32474"} +{"label":"Rocco and His Brothers","description":"Set in Milan, it tells the story of an immigrant family from the South and its disintegration in the society of the industrial North.","id":"8422","runtime":177,"imdbId":"tt0054248","version":79,"lastModified":"1301903941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/501\/4c5aac8d7b9aa151f6000501\/rocco-e-i-suoi-fratelli-mid.jpg","studio":"Titanus","genre":"Crime","title":"Rocco and His Brothers","releaseDate":-294105600000,"language":"en","type":"Movie","_key":"32475"} +{"label":"Katina Paxinou","version":23,"id":"54905","lastModified":"1301902097000","name":"Katina Paxinou","type":"Person","_key":"32476"} +{"label":"Rocco Vidolazzi","version":20,"id":"54906","lastModified":"1301902097000","name":"Rocco Vidolazzi","type":"Person","_key":"32477"} +{"label":"Das j\u00fcngste Gericht","description":"No overview found.","id":"8423","runtime":180,"imdbId":"tt1056481","version":50,"lastModified":"1301907413000","studio":"Lisa Film","genre":"Thriller","title":"Das j\u00fcngste Gericht","releaseDate":1208044800000,"language":"en","type":"Movie","_key":"32478"} +{"label":"Petra Morz\u00e9","version":25,"id":"50667","lastModified":"1301901566000","name":"Petra Morz\u00e9","type":"Person","_key":"32479"} +{"label":"Wolfgang Michael","version":20,"id":"54903","lastModified":"1301902368000","name":"Wolfgang Michael","type":"Person","_key":"32480"} +{"label":"Jeux d'enfants","description":"As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another","id":"8424","runtime":93,"imdbId":"tt0364517","trailer":"http:\/\/www.youtube.com\/watch?v=1232","version":105,"lastModified":"1301903157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/547\/4bc92195017a3c57fe00d547\/jeux-d-enfants-mid.jpg","studio":"Nord Ouest Production","genre":"Comedy","title":"Jeux d'enfants","releaseDate":1063756800000,"language":"en","type":"Movie","_key":"32481"} +{"label":"Yann Samuell","version":29,"id":"55379","lastModified":"1301901731000","name":"Yann Samuell","type":"Person","_key":"32482"} +{"label":"Fr\u00e9d\u00e9ric Geerts","version":22,"id":"55380","lastModified":"1301901581000","name":"Fr\u00e9d\u00e9ric Geerts","type":"Person","_key":"32483"} +{"label":"Isabelle Delval","version":21,"id":"55381","lastModified":"1301901538000","name":"Isabelle Delval","type":"Person","_key":"32484"} +{"label":"Jean-Michel Flagothier","version":21,"id":"55382","lastModified":"1301902097000","name":"Jean-Michel Flagothier","type":"Person","_key":"32485"} +{"label":"Emmanuelle Gr\u00f6nvold","version":21,"id":"55383","lastModified":"1301901615000","name":"Emmanuelle Gr\u00f6nvold","type":"Person","_key":"32486"} +{"label":"Thibault Verhaeghe","version":21,"id":"55384","lastModified":"1301901731000","name":"Thibault Verhaeghe","type":"Person","_key":"32487"} +{"label":"The Clockmaker of St. Paul","description":"Lyons, France. Michel Descombes is a watchmaker who lives alone with his teenage son Bernard. When the police visits and informs him that Bernard killed a man and is on the run with a girl, Michel realizes that he knew far less about his son than he thought .","id":"8425","runtime":105,"imdbId":"tt0071622","version":53,"lastModified":"1301904235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f04\/4bfeb89f017a3c702d000f04\/l-horloger-de-saint-paul-mid.jpg","studio":"Lira Films","genre":"Drama","title":"The Clockmaker of St. Paul","releaseDate":127526400000,"language":"en","type":"Movie","_key":"32488"} +{"label":"Jacques Hilling","version":19,"id":"55620","lastModified":"1301902276000","name":"Jacques Hilling","type":"Person","_key":"32489"} +{"label":"Clotilde Joano","version":19,"id":"55621","lastModified":"1301902276000","name":"Clotilde Joano","type":"Person","_key":"32490"} +{"label":"Tiffany Tavernier","version":19,"id":"55622","lastModified":"1301901884000","name":"Tiffany Tavernier","type":"Person","_key":"32491"} +{"label":"Swallowtail Butterfly","description":"Swallowtail Butterfly takes place in an alternate Japan, in a ghetto where immigrants from all over the world have come to live and make their fortune. The city is called Yentown, and it is much like Tokyo. Sixteen-year-old Ageha (Ito), a young girl whose mother has just died, is passed on from person to person until a prostitute named Glico (Chara) finally takes pity on her.Under Glico's care, Ageha has many experiences with the other poverty-stricken immigrants in Yentown. Eventually, due to a","id":"8426","runtime":146,"imdbId":"tt0117797","version":120,"lastModified":"1301905359000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/551\/4bc92198017a3c57fe00d551\/8426-mid.jpg","studio":"Rockwell Eyes","genre":"Drama","title":"Swallowtail Butterfly","releaseDate":820454400000,"language":"en","type":"Movie","_key":"32492"} +{"label":"Chara","version":24,"id":"55782","lastModified":"1301902029000","name":"Chara","type":"Person","_key":"32493"} +{"label":"Hiroshi Mikami","version":22,"id":"55783","lastModified":"1301901787000","name":"Hiroshi Mikami","type":"Person","_key":"32494"} +{"label":"Yosuke Eguchi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a7\/4d3e72ff5e73d622d10043a7\/y-suke-eguchi-profile.jpg","version":25,"id":"55784","lastModified":"1301902339000","name":"Yosuke Eguchi","type":"Person","_key":"32495"} +{"label":"Shunji Iwai","version":34,"id":"55785","lastModified":"1301901505000","name":"Shunji Iwai","type":"Person","_key":"32496"} +{"label":"I Spy","description":"Based on the 1960's television series I Spy. A professional athlete (boxer - Eddie Murphy) has to help a U.S. government agent recover a missing jet.","id":"8427","runtime":97,"imdbId":"tt0297181","trailer":"http:\/\/www.youtube.com\/watch?v=8ePVWDcEWo0","version":189,"lastModified":"1301903608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55a\/4bc92199017a3c57fe00d55a\/i-spy-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"I Spy","releaseDate":1035331200000,"language":"en","type":"Movie","_key":"32497"} +{"label":"Keith Dallas","version":24,"id":"55788","lastModified":"1301901524000","name":"Keith Dallas","type":"Person","_key":"32498"} +{"label":"Tate Taylor","version":25,"id":"55789","lastModified":"1301902380000","name":"Tate Taylor","type":"Person","_key":"32499"} +{"label":"Pump up the Volume","description":"Mark is an intelligent but shy teenager who has just moved to Arizona from the East Coast. His parents give him a short-wave radio so he can talk to his pals, but instead he sets up shop as pirate deejay Hard Harry, who becomes a hero to his peers while inspiring the wrath of the local high school principal.","id":"8428","runtime":105,"imdbId":"tt0100436","version":116,"lastModified":"1301908328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/568\/4bc9219a017a3c57fe00d568\/pump-up-the-volume-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Pump up the Volume","releaseDate":651283200000,"language":"en","tagline":"Talk hard. Steal the air.","type":"Movie","_key":"32500"} +{"label":"Allan Moyle","version":33,"id":"55790","lastModified":"1301901798000","name":"Allan Moyle","type":"Person","_key":"32501"} +{"label":"Keith Stuart Thayer","version":20,"id":"55791","lastModified":"1301902127000","name":"Keith Stuart Thayer","type":"Person","_key":"32502"} +{"label":"Cheryl Pollak","version":21,"id":"55792","lastModified":"1301902138000","name":"Cheryl Pollak","type":"Person","_key":"32503"} +{"label":"Jeff Chamberlain","version":20,"id":"55793","lastModified":"1301902127000","name":"Jeff Chamberlain","type":"Person","_key":"32504"} +{"label":"Robert Schenkkan","version":23,"id":"53972","lastModified":"1301901766000","name":"Robert Schenkkan","type":"Person","_key":"32505"} +{"label":"Paisan","description":"Six vignettes follow the Allied invasion from July 1943 to winter 1944, from Sicily north to Venice.","id":"8429","runtime":125,"imdbId":"tt0038823","version":140,"lastModified":"1301904679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/576\/4bc9219b017a3c57fe00d576\/paisa-mid.jpg","studio":"Organizzazione Film Internazionali","genre":"Drama","title":"Paisan","releaseDate":-727747200000,"language":"en","type":"Movie","_key":"32506"} +{"label":"Carmela Sazio","version":20,"id":"54929","lastModified":"1301902276000","name":"Carmela Sazio","type":"Person","_key":"32507"} +{"label":"Robert Van Loon","version":20,"id":"54930","lastModified":"1301902276000","name":"Robert Van Loon","type":"Person","_key":"32508"} +{"label":"Benjamin Emanuel","version":20,"id":"54931","lastModified":"1301902097000","name":"Benjamin Emanuel","type":"Person","_key":"32509"} +{"label":"Raymond Campbell","version":20,"id":"54932","lastModified":"1301902276000","name":"Raymond Campbell","type":"Person","_key":"32510"} +{"label":"Harold Wagner","version":20,"id":"54933","lastModified":"1301902097000","name":"Harold Wagner","type":"Person","_key":"32511"} +{"label":"Albert Heinze","version":20,"id":"54934","lastModified":"1301902097000","name":"Albert Heinze","type":"Person","_key":"32512"} +{"label":"Merlin Berth","version":20,"id":"54935","lastModified":"1301902276000","name":"Merlin Berth","type":"Person","_key":"32513"} +{"label":"Mats Carlson","version":20,"id":"54936","lastModified":"1301902097000","name":"Mats Carlson","type":"Person","_key":"32514"} +{"label":"Leonard Parrish","version":20,"id":"54937","lastModified":"1301902097000","name":"Leonard Parrish","type":"Person","_key":"32515"} +{"label":"Dots Johnson","version":21,"id":"54938","lastModified":"1301902144000","name":"Dots Johnson","type":"Person","_key":"32516"} +{"label":"Alfonsino Pasca","version":20,"id":"54939","lastModified":"1301902097000","name":"Alfonsino Pasca","type":"Person","_key":"32517"} +{"label":"Gar Moore","version":24,"id":"54940","lastModified":"1301902026000","name":"Gar Moore","type":"Person","_key":"32518"} +{"label":"Harriet Medin","version":34,"id":"54941","lastModified":"1301901647000","name":"Harriet Medin","type":"Person","_key":"32519"} +{"label":"Renzo Avanzo","version":20,"id":"54942","lastModified":"1301902097000","name":"Renzo Avanzo","type":"Person","_key":"32520"} +{"label":"Dale Edmonds","version":20,"id":"54943","lastModified":"1301902097000","name":"Dale Edmonds","type":"Person","_key":"32521"} +{"label":"Roberto Van Loel","version":20,"id":"54944","lastModified":"1301902097000","name":"Roberto Van Loel","type":"Person","_key":"32522"} +{"label":"Il Messia","description":"Virtually unknown outside of Italy, Messiah (Il Messia) is historically important as the last directorial effort of Roberto Rossellini. In retelling the life of Christ, Rosselini harks back to the humanistic style he'd utilized on his many Italian TV projects of the 1960s. The director has no intention of depicting Jesus as being the vessel of divine providence. The Man from Galilee is shown simply as one who is unusually moral and of spotless character -- the sort of person who'd be a natural l","id":"8430","runtime":140,"imdbId":"tt0077925","version":41,"lastModified":"1301906741000","studio":"France 3 Cin\u00e9ma","genre":"History","title":"Il Messia","releaseDate":193449600000,"language":"en","type":"Movie","_key":"32523"} +{"label":"Pier Maria Rossi","version":20,"id":"55795","lastModified":"1301901958000","name":"Pier Maria Rossi","type":"Person","_key":"32524"} +{"label":"Mita Ungaro","version":20,"id":"55796","lastModified":"1301901786000","name":"Mita Ungaro","type":"Person","_key":"32525"} +{"label":"Carlos de Carvalho","version":20,"id":"55797","lastModified":"1301901958000","name":"Carlos de Carvalho","type":"Person","_key":"32526"} +{"label":"Yatsugi Khelil","version":20,"id":"55798","lastModified":"1301902339000","name":"Yatsugi Khelil","type":"Person","_key":"32527"} +{"label":"Fausto Di Bella","version":20,"id":"55799","lastModified":"1301902153000","name":"Fausto Di Bella","type":"Person","_key":"32528"} +{"label":"Antonella Fasano","version":20,"id":"55800","lastModified":"1301902339000","name":"Antonella Fasano","type":"Person","_key":"32529"} +{"label":"Embrassez qui vous voudrez","description":"Two couple of friends, one very rich the other almost homeless, decides to go on Holiday. Julie, a single mother, joins them too. Once at seaside, it starts a complicate love cross among them that will involve also a transsexual, a jealous brother,a Latin Lover and another nervous stressed couple. Not to mention about the daughter of one of them that is secretly in Chicago with one of his father's employee... More, at the end of the summer all of them will join the same party...","id":"8434","runtime":103,"imdbId":"tt0290916","version":89,"lastModified":"1301904720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57f\/4bc9219c017a3c57fe00d57f\/embrassez-qui-vous-voudrez-mid.jpg","studio":"Mercury","genre":"Comedy","title":"Embrassez qui vous voudrez","releaseDate":1034121600000,"language":"en","type":"Movie","_key":"32530"} +{"label":"Vincent Elbaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19d\/4c166be27b9aa105ce00019d\/vincent-elbaz-profile.jpg","version":50,"id":"54918","lastModified":"1301901303000","name":"Vincent Elbaz","type":"Person","_key":"32531"} +{"label":"Micka\u00ebl Dolmen","version":19,"id":"54919","lastModified":"1301902186000","name":"Micka\u00ebl Dolmen","type":"Person","_key":"32532"} +{"label":"Dominic Gould","version":24,"id":"54920","lastModified":"1301902021000","name":"Dominic Gould","type":"Person","_key":"32533"} +{"label":"Barbara Kelsch","version":25,"id":"54921","lastModified":"1301901468000","name":"Barbara Kelsch","type":"Person","_key":"32534"} +{"label":"Nicolas Brian\u00e7on","version":24,"id":"54922","lastModified":"1301901826000","name":"Nicolas Brian\u00e7on","type":"Person","_key":"32535"} +{"label":"Jade Phan-Gia","version":21,"id":"54923","lastModified":"1301902180000","name":"Jade Phan-Gia","type":"Person","_key":"32536"} +{"label":"Serge Brincat","version":21,"id":"54924","lastModified":"1301902197000","name":"Serge Brincat","type":"Person","_key":"32537"} +{"label":"A Cock and Bull Story","description":"Two actors, as their make up is applied, talk about the size of their parts. Then into the film: Laurence Sterne's unfilmable novel, Tristram Shandy, a fictive autobiography wherein the narrator, interrupted constantly, takes the entire story to be born. The film tracks between \"Shandy\" and behind the scenes. Size matters: parts, egos, shoes, noses. The lead's girlfriend, with their infant son, is up from London for the night, wanting sex; interruptions are constant. Scenes are shot, re-shot, an","id":"8435","runtime":94,"imdbId":"tt0423409","homepage":"http:\/\/www.tristramshandymovie.com\/","version":147,"lastModified":"1301906780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58c\/4bc921a0017a3c57fe00d58c\/a-cock-and-bull-story-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"A Cock and Bull Story","releaseDate":1121558400000,"language":"en","type":"Movie","_key":"32538"} +{"label":"Rob Brydon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79e\/4d3688835e73d6335200c79e\/rob-brydon-profile.jpg","version":31,"id":"47632","lastModified":"1301901314000","name":"Rob Brydon","type":"Person","_key":"32539"} +{"label":"Conal Murphy","version":19,"id":"55400","lastModified":"1301902097000","name":"Conal Murphy","type":"Person","_key":"32540"} +{"label":"Joe Williams","version":19,"id":"55401","lastModified":"1301901731000","name":"Joe Williams","type":"Person","_key":"32541"} +{"label":"Ashley Jensen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/287\/4cf682635e73d6299a001287\/ashley-jensen-profile.jpg","version":52,"id":"55398","lastModified":"1301901424000","name":"Ashley Jensen","type":"Person","_key":"32542"} +{"label":"La Tourneuse de Pages","description":"No overview found.","id":"8436","runtime":85,"imdbId":"tt0487503","trailer":"http:\/\/www.youtube.com\/watch?v=KBbaTOIKlPY","version":108,"lastModified":"1301905677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/595\/4bc921a1017a3c57fe00d595\/la-tourneuse-de-pages-mid.jpg","studio":"Angoa-Agicoa","genre":"Drama","title":"La Tourneuse de Pages","releaseDate":1147996800000,"language":"en","type":"Movie","_key":"32543"} +{"label":"Xavier De Guillebon","version":21,"id":"55802","lastModified":"1301901675000","name":"Xavier De Guillebon","type":"Person","_key":"32544"} +{"label":"Christine Citti","version":28,"id":"55803","lastModified":"1301901423000","name":"Christine Citti","type":"Person","_key":"32545"} +{"label":"Antoine Martynciow","version":20,"id":"55804","lastModified":"1301902276000","name":"Antoine Martynciow","type":"Person","_key":"32546"} +{"label":"Andr\u00e9 Marcon","version":23,"id":"55805","lastModified":"1301902305000","name":"Andr\u00e9 Marcon","type":"Person","_key":"32547"} +{"label":"Denis Dercourt","version":23,"id":"55806","lastModified":"1301901884000","name":"Denis Dercourt","type":"Person","_key":"32548"} +{"label":"Rafaele Ravinet-Virbel","version":18,"id":"55811","lastModified":"1301901884000","name":"Rafaele Ravinet-Virbel","type":"Person","_key":"32549"} +{"label":"KussKuss - Dein Gl\u00fcck geh\u00f6rt mir","description":"No overview found.","id":"8437","runtime":95,"imdbId":"tt0462391","version":59,"lastModified":"1301905279000","studio":"novapool production","genre":"Comedy","title":"KussKuss - Dein Gl\u00fcck geh\u00f6rt mir","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"32550"} +{"label":"Axel Schrick","version":19,"id":"54945","lastModified":"1301901615000","name":"Axel Schrick","type":"Person","_key":"32551"} +{"label":"Sa\u00efda Jawad","version":19,"id":"54946","lastModified":"1301901538000","name":"Sa\u00efda Jawad","type":"Person","_key":"32552"} +{"label":"Daniel Stock","version":19,"id":"54947","lastModified":"1301902097000","name":"Daniel Stock","type":"Person","_key":"32553"} +{"label":"Ursina Lardi","version":31,"id":"54948","lastModified":"1301902097000","name":"Ursina Lardi","type":"Person","_key":"32554"} +{"label":"Samir Osman","version":19,"id":"54949","lastModified":"1301902276000","name":"Samir Osman","type":"Person","_key":"32555"} +{"label":"Konstantin Achmed B\u00fcrger","version":17,"id":"54950","lastModified":"1301902276000","name":"Konstantin Achmed B\u00fcrger","type":"Person","_key":"32556"} +{"label":"Torsten Lensing","version":19,"id":"54951","lastModified":"1301902276000","name":"Torsten Lensing","type":"Person","_key":"32557"} +{"label":"Ennio Cacciato","version":19,"id":"54953","lastModified":"1301902276000","name":"Ennio Cacciato","type":"Person","_key":"32558"} +{"label":"Anna Stieblich","version":19,"id":"25402","lastModified":"1301901884000","name":"Anna Stieblich","type":"Person","_key":"32559"} +{"label":"Abel Lindner","version":19,"id":"54954","lastModified":"1301902097000","name":"Abel Lindner","type":"Person","_key":"32560"} +{"label":"S\u00f6ren Senn","version":22,"id":"54957","lastModified":"1301901884000","name":"S\u00f6ren Senn","type":"Person","_key":"32561"} +{"label":"David M\u00f6hring","version":15,"id":"54964","lastModified":"1301901884000","name":"David M\u00f6hring","type":"Person","_key":"32562"} +{"label":"Murder in the First","description":"Inspired by a true story. A petty criminal sent to Alcatraz in the 1930s is caught attempting to make an escape. As punishment he is put in solitary confinement. The maximum stay is supposed to be 19 days, but Henri spends years alone, cold and in complete darkness, only to emerge a madman and soon to be a murderer. The story follows a rookie lawyer attempting to prove that Alcatraz was to blame.","id":"8438","runtime":122,"imdbId":"tt0113870","version":231,"lastModified":"1301903592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc921a1017a3c57fe00d59e\/murder-in-the-first-mid.jpg","studio":"Le Studio Canal+","genre":"Crime","title":"Murder in the First","releaseDate":790560000000,"language":"en","tagline":"The trial that brought down Alcatraz","type":"Movie","_key":"32563"} +{"label":"Marc Rocco","version":32,"id":"54971","lastModified":"1301901848000","name":"Marc Rocco","type":"Person","_key":"32564"} +{"label":"Bus 174","description":"Documentary depicts what happened in Rio de Janeiro on June 12th 2000, when bus 174 was taken by an armed young man, threatening to shoot all the passengers. Transmitted live on all Brazilian TV networks, this shocking and tragic-ending event became one of violence's most shocking portraits, and one of the scariest examples of police incompetence and abuse in recent years.","id":"8439","runtime":150,"imdbId":"tt0340468","version":140,"lastModified":"1301905979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ab\/4bc921a2017a3c57fe00d5ab\/onibus-174-mid.jpg","studio":"Zazen Produ\u00e7\u00f5es","genre":"Documentary","title":"Bus 174","releaseDate":1035244800000,"language":"en","type":"Movie","_key":"32565"} +{"label":"Felipe Lacerda","version":20,"id":"10040","lastModified":"1301901544000","name":"Felipe Lacerda","type":"Person","_key":"32566"} +{"label":"Yvonne Bezerra de Mello","version":22,"id":"55082","lastModified":"1301902295000","name":"Yvonne Bezerra de Mello","type":"Person","_key":"32567"} +{"label":"Sandro do Nascimento","version":23,"id":"55083","lastModified":"1301901678000","name":"Sandro do Nascimento","type":"Person","_key":"32568"} +{"label":"Rodrigo Pimentel","version":28,"id":"52579","lastModified":"1301902141000","name":"Rodrigo Pimentel","type":"Person","_key":"32569"} +{"label":"Luiz Eduardo Soares","version":28,"id":"52578","lastModified":"1301901947000","name":"Luiz Eduardo Soares","type":"Person","_key":"32570"} +{"label":"Carandiru","description":"Film based on real life experiences of doctor Drauzio Varella inside dreadful State penitentiary Carandiru, in S\u00e3o Paulo, Brazil, while he was doing a social work of Aids prevention. There he found hundreds of convicts living under degrading conditions. The situation came to a climax in 1992, when in order to smother a rebellion, police force killed 111 men.","id":"8440","runtime":148,"imdbId":"tt0293007","version":152,"lastModified":"1301905738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b4\/4bc921a3017a3c57fe00d5b4\/carandiru-mid.jpg","studio":"BR Petrobr\u00e1s","genre":"Drama","title":"Carandiru","releaseDate":1048204800000,"language":"en","type":"Movie","_key":"32571"} +{"label":"Luiz Carlos Vasconcelos","version":19,"id":"55101","lastModified":"1301901731000","name":"Luiz Carlos Vasconcelos","type":"Person","_key":"32572"} +{"label":"Ivan de Almeida","version":19,"id":"55102","lastModified":"1301901476000","name":"Ivan de Almeida","type":"Person","_key":"32573"} +{"label":"Ailton Gra\u00e7a","version":27,"id":"55103","lastModified":"1301901538000","name":"Ailton Gra\u00e7a","type":"Person","_key":"32574"} +{"label":"Maria Lu\u00edsa Mendon\u00e7a","version":19,"id":"55029","lastModified":"1301901740000","name":"Maria Lu\u00edsa Mendon\u00e7a","type":"Person","_key":"32575"} +{"label":"Aida Leiner","version":19,"id":"55104","lastModified":"1301901731000","name":"Aida Leiner","type":"Person","_key":"32576"} +{"label":"Gero Camilo","version":19,"id":"55105","lastModified":"1301902097000","name":"Gero Camilo","type":"Person","_key":"32577"} +{"label":"L\u00e1zaro Ramos","version":26,"id":"55009","lastModified":"1301901731000","name":"L\u00e1zaro Ramos","type":"Person","_key":"32578"} +{"label":"Caio Blat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82b\/4d4766df7b9aa15bf500682b\/caio-blat-profile.jpg","version":25,"id":"55106","lastModified":"1301901850000","name":"Caio Blat","type":"Person","_key":"32579"} +{"label":"Sabrina Greve","version":20,"id":"55107","lastModified":"1301902097000","name":"Sabrina Greve","type":"Person","_key":"32580"} +{"label":"J\u00falia Ianina","version":19,"id":"55108","lastModified":"1301901731000","name":"J\u00falia Ianina","type":"Person","_key":"32581"} +{"label":"Floriano Peixoto","version":19,"id":"55109","lastModified":"1301902097000","name":"Floriano Peixoto","type":"Person","_key":"32582"} +{"label":"Ricardo Blat","version":20,"id":"55110","lastModified":"1301902180000","name":"Ricardo Blat","type":"Person","_key":"32583"} +{"label":"Vanessa Gerbelli","version":22,"id":"55111","lastModified":"1301901884000","name":"Vanessa Gerbelli","type":"Person","_key":"32584"} +{"label":"Leona Cavalli","version":19,"id":"55112","lastModified":"1301901731000","name":"Leona Cavalli","type":"Person","_key":"32585"} +{"label":"Dion\u00edsio Neto","version":19,"id":"55113","lastModified":"1301901731000","name":"Dion\u00edsio Neto","type":"Person","_key":"32586"} +{"label":"Sabotage","version":21,"id":"55114","lastModified":"1301901996000","name":"Sabotage","type":"Person","_key":"32587"} +{"label":"O Homem do Ano","description":"No overview found.","id":"8441","runtime":104,"imdbId":"tt0312773","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-man-of-the-year","version":73,"lastModified":"1301904015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ef\/4d4a9ecd5e73d617b30005ef\/o-homem-do-ano-mid.jpg","studio":"Conspira\u00e7\u00e3o Filmes","genre":"Drama","title":"O Homem do Ano","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"32588"} +{"label":"Jos\u00e9 Henrique Fonseca","version":22,"id":"54974","lastModified":"1301901884000","name":"Jos\u00e9 Henrique Fonseca","type":"Person","_key":"32589"} +{"label":"Murilo Ben\u00edcio","version":23,"id":"55824","lastModified":"1301901615000","name":"Murilo Ben\u00edcio","type":"Person","_key":"32590"} +{"label":"Cl\u00e1udia Abreu","version":26,"id":"55825","lastModified":"1301901884000","name":"Cl\u00e1udia Abreu","type":"Person","_key":"32591"} +{"label":"Nat\u00e1lia Lage","version":21,"id":"55826","lastModified":"1301902097000","name":"Nat\u00e1lia Lage","type":"Person","_key":"32592"} +{"label":"Jorge D\u00f3ria","version":21,"id":"55827","lastModified":"1301901884000","name":"Jorge D\u00f3ria","type":"Person","_key":"32593"} +{"label":"Andr\u00e9 Gon\u00e7alves","version":21,"id":"55828","lastModified":"1301901884000","name":"Andr\u00e9 Gon\u00e7alves","type":"Person","_key":"32594"} +{"label":"Perfeito Fortuna","version":21,"id":"55829","lastModified":"1301901884000","name":"Perfeito Fortuna","type":"Person","_key":"32595"} +{"label":"Paulo Moska","version":19,"id":"55830","lastModified":"1301902296000","name":"Paulo Moska","type":"Person","_key":"32596"} +{"label":"Andr\u00e9 Barros","version":21,"id":"55831","lastModified":"1301902276000","name":"Andr\u00e9 Barros","type":"Person","_key":"32597"} +{"label":"Carlo Mossy","version":21,"id":"55832","lastModified":"1301902276000","name":"Carlo Mossy","type":"Person","_key":"32598"} +{"label":"Mariana Ximenes","version":23,"id":"55833","lastModified":"1301902205000","name":"Mariana Ximenes","type":"Person","_key":"32599"} +{"label":"Mariana Ximenes","version":21,"id":"55834","lastModified":"1301901884000","name":"Mariana Ximenes","type":"Person","_key":"32600"} +{"label":"Amir Haddad","version":21,"id":"55835","lastModified":"1301902276000","name":"Amir Haddad","type":"Person","_key":"32601"} +{"label":"Jos\u00e9 Wilker","version":26,"id":"55836","lastModified":"1301901927000","name":"Jos\u00e9 Wilker","type":"Person","_key":"32602"} +{"label":"Agildo Ribeiro","version":21,"id":"55837","lastModified":"1301902276000","name":"Agildo Ribeiro","type":"Person","_key":"32603"} +{"label":"Quem matou Pixote?","description":"No overview found.","id":"8442","runtime":120,"imdbId":"tt0117418","homepage":"http:\/\/www.whokilledpixote.com\/","version":83,"lastModified":"1301645982000","studio":"Coevos Filmes","genre":"Drama","title":"Quem matou Pixote?","releaseDate":820454400000,"language":"en","type":"Movie","_key":"32604"} +{"label":"Jos\u00e9 Joffily","version":19,"id":"55022","lastModified":"1301902275000","name":"Jos\u00e9 Joffily","type":"Person","_key":"32605"} +{"label":"Cassiano Carneiro","version":19,"id":"55023","lastModified":"1301901731000","name":"Cassiano Carneiro","type":"Person","_key":"32606"} +{"label":"Luciana Rigueira","version":19,"id":"55024","lastModified":"1301902275000","name":"Luciana Rigueira","type":"Person","_key":"32607"} +{"label":"Joana Fomm","version":19,"id":"55025","lastModified":"1301902275000","name":"Joana Fomm","type":"Person","_key":"32608"} +{"label":"Tuca Andrada","version":19,"id":"55026","lastModified":"1301902275000","name":"Tuca Andrada","type":"Person","_key":"32609"} +{"label":"Roberto Bomtempo","version":24,"id":"55027","lastModified":"1301902353000","name":"Roberto Bomtempo","type":"Person","_key":"32610"} +{"label":"Carol Machado","version":19,"id":"55028","lastModified":"1301902275000","name":"Carol Machado","type":"Person","_key":"32611"} +{"label":"Antonio Abujamra","version":17,"id":"55031","lastModified":"1301902275000","name":"Antonio Abujamra","type":"Person","_key":"32612"} +{"label":"Maria L\u00facia Dahl","version":19,"id":"55033","lastModified":"1301902275000","name":"Maria L\u00facia Dahl","type":"Person","_key":"32613"} +{"label":"Ant\u00f4nio Petrin","version":20,"id":"55034","lastModified":"1301901884000","name":"Ant\u00f4nio Petrin","type":"Person","_key":"32614"} +{"label":"Anselmo Vasconcelos","version":19,"id":"55035","lastModified":"1301902275000","name":"Anselmo Vasconcelos","type":"Person","_key":"32615"} +{"label":"Paulo Betti","version":19,"id":"55036","lastModified":"1301901884000","name":"Paulo Betti","type":"Person","_key":"32616"} +{"label":"Lower City","description":"No overview found.","id":"8443","runtime":100,"imdbId":"tt0456899","version":155,"lastModified":"1301905198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b9\/4bc921a4017a3c57fe00d5b9\/cidade-baixa-mid.jpg","studio":"VideoFilmes","genre":"Drama","title":"Lower City","releaseDate":1116201600000,"language":"en","type":"Movie","_key":"32617"} +{"label":"Harildo Deda","version":21,"id":"55010","lastModified":"1301901615000","name":"Harildo Deda","type":"Person","_key":"32618"} +{"label":"Maria Menezes","version":21,"id":"55011","lastModified":"1301901884000","name":"Maria Menezes","type":"Person","_key":"32619"} +{"label":"Jo\u00e3o Miguel","version":21,"id":"55012","lastModified":"1301901884000","name":"Jo\u00e3o Miguel","type":"Person","_key":"32620"} +{"label":"D\u00e9bora Santiago","version":21,"id":"55013","lastModified":"1301901884000","name":"D\u00e9bora Santiago","type":"Person","_key":"32621"} +{"label":"Divina Val\u00e9ria","version":21,"id":"55014","lastModified":"1301901884000","name":"Divina Val\u00e9ria","type":"Person","_key":"32622"} +{"label":"Jos\u00e9 Dumont","version":19,"id":"55015","lastModified":"1301901901000","name":"Jos\u00e9 Dumont","type":"Person","_key":"32623"} +{"label":"Dois Mundos","version":21,"id":"55016","lastModified":"1301901884000","name":"Dois Mundos","type":"Person","_key":"32624"} +{"label":"S\u00e9rgio Machado","version":19,"id":"10042","lastModified":"1301901708000","name":"S\u00e9rgio Machado","type":"Person","_key":"32625"} +{"label":"Dom\u00e9sticas","description":"No overview found.","id":"8444","runtime":90,"imdbId":"tt0279783","homepage":"http:\/\/www.domesticasofilme.com\/","version":68,"lastModified":"1301417543000","studio":"O2 Filmes","genre":"Comedy","title":"Dom\u00e9sticas","releaseDate":980380800000,"language":"en","type":"Movie","_key":"32626"} +{"label":"Nando Olival","version":21,"id":"54976","lastModified":"1301902097000","name":"Nando Olival","type":"Person","_key":"32627"} +{"label":"Cl\u00e1udia Missura","version":19,"id":"54995","lastModified":"1301902097000","name":"Cl\u00e1udia Missura","type":"Person","_key":"32628"} +{"label":"Graziela Moretto","version":19,"id":"54996","lastModified":"1301902097000","name":"Graziela Moretto","type":"Person","_key":"32629"} +{"label":"Lena Roque","version":17,"id":"54997","lastModified":"1301902110000","name":"Lena Roque","type":"Person","_key":"32630"} +{"label":"Olivia Ara\u00fajo","version":19,"id":"54998","lastModified":"1301902097000","name":"Olivia Ara\u00fajo","type":"Person","_key":"32631"} +{"label":"Renata Melo","version":21,"id":"54978","lastModified":"1301902275000","name":"Renata Melo","type":"Person","_key":"32632"} +{"label":"Robson Nunes","version":19,"id":"54999","lastModified":"1301902275000","name":"Robson Nunes","type":"Person","_key":"32633"} +{"label":"Tiago Moraes","version":19,"id":"55000","lastModified":"1301902275000","name":"Tiago Moraes","type":"Person","_key":"32634"} +{"label":"Madicken p\u00e5 Junibacken","description":"Madicken bor i en liten stad i mellan-Sverige under 1910-talet. Hon bor med sin mamma, pappa, lillasyster Lisabet och tj\u00e4nsteflickan Alva i ett hus som heter Junibacken. I Junibackens grannhus, Lugnet, bor Abbe Nilsson som Madicken tycker mycket om. Men hennes skolkamrat Mia tycker hon inte om. Hon \u00e4r ju den dummaste ungen i hela skolan!","id":"8445","runtime":82,"imdbId":"tt0081099","version":45,"lastModified":"1301904974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c7\/4bc921a7017a3c57fe00d5c7\/madicken-pa-junibacken-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Comedy","title":"Madicken p\u00e5 Junibacken","releaseDate":340675200000,"language":"en","type":"Movie","_key":"32635"} +{"label":"G\u00f6ran Graffman","version":25,"id":"54991","lastModified":"1301902157000","name":"G\u00f6ran Graffman","type":"Person","_key":"32636"} +{"label":"Jonna Liljendahl","version":25,"id":"54992","lastModified":"1301901566000","name":"Jonna Liljendahl","type":"Person","_key":"32637"} +{"label":"Liv Alsterlund","version":25,"id":"54993","lastModified":"1301901788000","name":"Liv Alsterlund","type":"Person","_key":"32638"} +{"label":"Monica Nordquist","version":21,"id":"55001","lastModified":"1301902378000","name":"Monica Nordquist","type":"Person","_key":"32639"} +{"label":"Bj\u00f6rn Granath","version":35,"id":"55002","lastModified":"1301901157000","name":"Bj\u00f6rn Granath","type":"Person","_key":"32640"} +{"label":"Lis Nilheim","version":22,"id":"55003","lastModified":"1301902375000","name":"Lis Nilheim","type":"Person","_key":"32641"} +{"label":"Birgitta Andersson","version":22,"id":"55004","lastModified":"1301902324000","name":"Birgitta Andersson","type":"Person","_key":"32642"} +{"label":"Yvonne Lombard","version":21,"id":"55005","lastModified":"1301902050000","name":"Yvonne Lombard","type":"Person","_key":"32643"} +{"label":"Bugsy Malone","description":"A pint-sized cast illuminates this musical that is unlike any other ever made. Set in 1929 New York City, Bugsy Malone captures a flashy world of would-be hoodlums, showgirls, and dreamers - all played by child actors! As Tallulah, the sassy girlfriend of the owner of Fat Sam's Grand Slam Speakeasy, future superstar Jodie Foster dances and sings her way into our hearts.","id":"8446","runtime":93,"imdbId":"tt0074256","version":250,"lastModified":"1301904257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d4\/4bc921a8017a3c57fe00d5d4\/bugsy-malone-mid.jpg","studio":"National Film Trustee Company","genre":"Action","title":"Bugsy Malone","releaseDate":211334400000,"language":"en","type":"Movie","_key":"32644"} +{"label":"Scott Baio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9cc\/4c67ed5e7b9aa1775a0009cc\/scott-baio-profile.jpg","biography":"Scott Vincent James Baio is an American actor, best known for his roles as Chachi Arcola on the sitcom Happy Days and its spin-off Joanie Loves Chachi, and as the title character on the sitcom Charles in Charge.","version":36,"birthday":"-261190800000","id":"55093","birthplace":"Brooklyn, New York, USA","lastModified":"1301901858000","name":"Scott Baio","type":"Person","_key":"32645"} +{"label":"Martin Lev","version":21,"id":"55094","lastModified":"1301901996000","name":"Martin Lev","type":"Person","_key":"32646"} +{"label":"John Cassisi","version":21,"id":"55095","lastModified":"1301901675000","name":"John Cassisi","type":"Person","_key":"32647"} +{"label":"Angels and Insects","description":"In the 1800s a naturalist marries into a family of British aristocrats.","id":"8447","runtime":116,"imdbId":"tt0112365","version":108,"lastModified":"1301691329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4ce990827b9aa17c8e00055c\/angels-and-insects-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Drama","title":"Angels and Insects","releaseDate":810691200000,"language":"en","type":"Movie","_key":"32648"} +{"label":"Philip Haas","version":24,"id":"55038","lastModified":"1301901651000","name":"Philip Haas","type":"Person","_key":"32649"} +{"label":"The 6th Day","description":"Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.","id":"8452","runtime":123,"imdbId":"tt0216216","trailer":"http:\/\/www.youtube.com\/watch?v=gXdru_rLBfw","version":255,"lastModified":"1301901750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e1\/4bc921a9017a3c57fe00d5e1\/the-6th-day-mid.jpg","studio":"Phoenix Pictures","genre":"Action","title":"The 6th Day","releaseDate":972691200000,"language":"en","tagline":"Are You Who You Think You Are","type":"Movie","_key":"32650"} +{"label":"Sarah Wynter","version":39,"id":"41819","lastModified":"1301901496000","name":"Sarah Wynter","type":"Person","_key":"32651"} +{"label":"Fanaa","description":"Zooni Ali Beg (Kajol) is a blind Kashmiri girl who travels without her parents for the first time with a dance troupe to Delhi to perform in a ceremony for independence day. On her journey, she meets Rehan Khan (Aamir Khan), a casanova and tour guide who flirts with her. Although her friends warn Zooni about him, she cannot resist falling in love with him and he takes her on a private tour of New Delhi. But there is more to Rehan than meets the eye and Zooni will have to make a heartbreaking dec","id":"8453","runtime":168,"imdbId":"tt0439662","version":215,"lastModified":"1301905970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/855\/4d2741245e73d626c4001855\/fanaa-mid.jpg","studio":"Yash Raj Films","genre":"Action","title":"Fanaa","releaseDate":1148601600000,"language":"en","tagline":"Destroyed in love...","type":"Movie","_key":"32652"} +{"label":"Kajol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4bc990c9017a3c181e000026\/kajol-profile.jpg","version":42,"id":"55061","lastModified":"1301901265000","name":"Kajol","type":"Person","_key":"32653"} +{"label":"Tabu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b7\/4d32bbb97b9aa17af80055b7\/tabu-profile.jpg","version":35,"id":"55062","lastModified":"1301901597000","name":"Tabu","type":"Person","_key":"32654"} +{"label":"Lara Dutta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4c4f16e35e73d62ec10000f5\/lara-dutta-profile.jpg","version":36,"id":"55063","lastModified":"1301901473000","name":"Lara Dutta","type":"Person","_key":"32655"} +{"label":"Shiney Ahuja","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/217\/4d32bbd07b9aa178ab005217\/shiney-ahuja-profile.jpg","version":28,"id":"55064","lastModified":"1301901445000","name":"Shiney Ahuja","type":"Person","_key":"32656"} +{"label":"Gautami Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/460\/4d32bbde7b9aa178a7005460\/gautami-kapoor-profile.jpg","version":23,"id":"55065","lastModified":"1301901812000","name":"Gautami Kapoor","type":"Person","_key":"32657"} +{"label":"Sharat Saxena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fdb\/4d32bb967b9aa17a45004fdb\/sharat-saxena-profile.jpg","version":29,"id":"55066","lastModified":"1301901605000","name":"Sharat Saxena","type":"Person","_key":"32658"} +{"label":"Shruti Seth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47b\/4d32bba07b9aa177db00547b\/shruti-seth-profile.jpg","version":21,"id":"55068","lastModified":"1301901762000","name":"Shruti Seth","type":"Person","_key":"32659"} +{"label":"Jaspal Bhatti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4d32bba77b9aa178a7005448\/jaspal-bhatti-profile.jpg","version":23,"id":"55069","lastModified":"1301901698000","name":"Jaspal Bhatti","type":"Person","_key":"32660"} +{"label":"Vrajesh Hirjee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e70\/4d2251fb7b9aa1289f000e70\/vrajesh-hirjee-profile.jpg","version":32,"id":"55070","lastModified":"1301901599000","name":"Vrajesh Hirjee","type":"Person","_key":"32661"} +{"label":"Ali Haji","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29e\/4d6c411d5e73d66b2300329e\/ali-haji-profile.jpg","version":23,"id":"55071","lastModified":"1301901763000","name":"Ali Haji","type":"Person","_key":"32662"} +{"label":"Sanaya Irani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/158\/4d32bb857b9aa17b37005158\/sanaya-irani-profile.jpg","version":21,"id":"55072","lastModified":"1301901698000","name":"Sanaya Irani","type":"Person","_key":"32663"} +{"label":"Never Back Down","description":"At his new high school, a rebellious teen is lured into an underground fight club, where he finds a mentor in a mixed martial arts veteran.","id":"8456","runtime":110,"imdbId":"tt1023111","trailer":"http:\/\/www.youtube.com\/watch?v=Zzb7um_40Zk","homepage":"http:\/\/www.neverbackdownthemovie.com\/","version":295,"lastModified":"1301900967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/624\/4bc921b2017a3c57fe00d624\/never-back-down-mid.jpg","studio":"Summit Entertainment","genre":"Action","title":"Never Back Down","releaseDate":1204588800000,"language":"en","tagline":"Win or lose... Everyone has their fight.","type":"Movie","_key":"32664"} +{"label":"Jeff Wadlow","version":33,"id":"55075","lastModified":"1301901779000","name":"Jeff Wadlow","type":"Person","_key":"32665"} +{"label":"Sean Faris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57b\/4d5234777b9aa13ab801157b\/sean-faris-profile.jpg","version":41,"id":"55084","lastModified":"1301901183000","name":"Sean Faris","type":"Person","_key":"32666"} +{"label":"Cam Gigandet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2af\/4bd2e50e017a3c63eb0002af\/cam-gigandet-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bCam Joslin Gigandet is an American actor, whose roles have included Twilight, The O.C., Never Back Down and Burlesque. In 2003, Gigandet made his acting debut making a guest appearance in the Crime television series CSI: Crime Scene Investigation. In 2004 and 2005 Gigandet continued his television career making noticeable recurring roles in television shows such as The Young and The Restless and Jack and Bobby.<\/sp","version":74,"birthday":"399160800000","id":"55086","birthplace":"Tacoma, Washington, USA","lastModified":"1302066133000","name":"Cam Gigandet","type":"Person","_key":"32667"} +{"label":"Leslie Hope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aac\/4c70e2277b9aa13ab9000aac\/leslie-hope-profile.jpg","version":50,"id":"25834","lastModified":"1301901327000","name":"Leslie Hope","type":"Person","_key":"32668"} +{"label":"Evan Peters","version":44,"id":"55089","lastModified":"1301901119000","name":"Evan Peters","type":"Person","_key":"32669"} +{"label":"Wyatt Smith","version":25,"id":"55090","lastModified":"1301901615000","name":"Wyatt Smith","type":"Person","_key":"32670"} +{"label":"Neil Brown Jr.","version":23,"id":"55091","lastModified":"1301901615000","name":"Neil Brown Jr.","type":"Person","_key":"32671"} +{"label":"Lauren Leech","version":26,"id":"55092","lastModified":"1301901538000","name":"Lauren Leech","type":"Person","_key":"32672"} +{"label":"Drillbit Taylor","description":"Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash. ","id":"8457","runtime":102,"imdbId":"tt0817538","trailer":"http:\/\/www.youtube.com\/watch?v=6hdW_b6M6bM","homepage":"http:\/\/www.drillbittaylor.com\/","version":319,"lastModified":"1301902670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ef\/4d7cf4685e73d628360025ef\/drillbit-taylor-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Drillbit Taylor","releaseDate":1205971200000,"language":"en","type":"Movie","_key":"32673"} +{"label":"Danny McBride","version":54,"id":"3951","lastModified":"1301901233000","name":"Danny McBride","type":"Person","_key":"32674"} +{"label":"Nate Hartley","version":20,"id":"55097","lastModified":"1301901615000","name":"Nate Hartley","type":"Person","_key":"32675"} +{"label":"Troy Gentile","version":21,"id":"55673","lastModified":"1301902180000","name":"Troy Gentile","type":"Person","_key":"32676"} +{"label":"Danny McBride","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4c3f3e0f7b9aa1419500002f\/danny-r-mcbride-profile.jpg","version":94,"id":"62862","lastModified":"1302068008000","name":"Danny McBride","type":"Person","_key":"32677"} +{"label":"The Skulls II","description":"After joining the Skulls, Ryan Sommers (Robin Dunne) is warned not to betray any secrets about the organization or its high-powered members. However, when Ryan witnesses a murder within the Skulls' private chambers, he finds that the closer he gets to revealing the truth - the more dangerous life becomes.","id":"8460","runtime":99,"imdbId":"tt0278723","version":279,"lastModified":"1301903219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/636\/4bc921b4017a3c57fe00d636\/the-skulls-ii-mid.jpg","studio":"Newmarket Capital Group","genre":"Comedy","title":"The Skulls II","releaseDate":1018310400000,"language":"en","type":"Movie","_key":"32678"} +{"label":"Nathan West","version":21,"id":"55115","lastModified":"1301902368000","name":"Nathan West","type":"Person","_key":"32679"} +{"label":"Ashley Tesoro","version":17,"id":"55875","lastModified":"1301902296000","name":"Ashley Tesoro","type":"Person","_key":"32680"} +{"label":"James Gallanders","version":23,"id":"55876","lastModified":"1301902097000","name":"James Gallanders","type":"Person","_key":"32681"} +{"label":"Andrew Gillies","version":21,"id":"55877","lastModified":"1301901884000","name":"Andrew Gillies","type":"Person","_key":"32682"} +{"label":"Joe Chappelle","version":34,"id":"55116","lastModified":"1301901798000","name":"Joe Chappelle","type":"Person","_key":"32683"} +{"label":"Funny Games U.S.","description":"In this English-language remake of a deconstruction in the way violence is portrayed in the media, a family settles into its vacation home, which happens to be the next stop for a pair of young, articulate, white-gloved serial killers on an excursion through the neighborhood. ","id":"8461","runtime":112,"imdbId":"tt0808279","trailer":"http:\/\/www.youtube.com\/watch?v=539","homepage":"http:\/\/wip.warnerbros.com\/funnygames\/","version":183,"lastModified":"1301902247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/114\/4bf5e73a017a3c7726000114\/funny-games-us-mid.jpg","studio":"X Filme International","genre":"Horror","title":"Funny Games U.S.","releaseDate":1192838400000,"language":"en","type":"Movie","_key":"32684"} +{"label":"Brady Corbet","version":29,"id":"55493","lastModified":"1301901400000","name":"Brady Corbet","type":"Person","_key":"32685"} +{"label":"Devon Gearhart","version":21,"id":"55494","lastModified":"1301901884000","name":"Devon Gearhart","type":"Person","_key":"32686"} +{"label":"Robert LuPone","version":22,"id":"55496","lastModified":"1301902302000","name":"Robert LuPone","type":"Person","_key":"32687"} +{"label":"Susanne C. Hanke","version":19,"id":"55497","lastModified":"1301901901000","name":"Susanne C. Hanke","type":"Person","_key":"32688"} +{"label":"Linda Moran","version":19,"id":"7433","lastModified":"1301901548000","name":"Linda Moran","type":"Person","_key":"32689"} +{"label":"The Joyless Street","description":"In 1921 in the poor part of an Austrian town called Melchiorgasse there are only two wealthy people: the butcher Josef Geiringer and his wife. Mrs. Greifer runs a fashion boutique and a nightclub patronized by wealthy Viennese. Annexed to the nightclub is Merkl Hotel, a brothel to which the women of the nightclub bring their clients. The film follows the lives of two women from the same poor neighborhood as they try to better themselves during the period of Austrian postwar hyperinflation. They ","id":"8462","runtime":150,"imdbId":"tt0015842","version":70,"lastModified":"1301906624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a28\/4d1fbf3a5e73d66b3b001a28\/die-freudlose-gasse-mid.jpg","studio":"Sofar-Film","genre":"Drama","title":"The Joyless Street","releaseDate":-1408233600000,"language":"en","type":"Movie","_key":"32690"} +{"label":"Asta Nielsen","version":21,"id":"55143","lastModified":"1301902153000","name":"Asta Nielsen","type":"Person","_key":"32691"} +{"label":"Agnes Esterhazy","version":22,"id":"55144","lastModified":"1301901958000","name":"Agnes Esterhazy","type":"Person","_key":"32692"} +{"label":"Torch Song Trilogy","description":"A very personal story that is both funny and poignant, TORCH SONG TRILOGY chronicles a New Yorker's search for love, respect and tradition in a world that seems not especially made for him.","id":"8463","runtime":120,"imdbId":"tt0096289","trailer":"http:\/\/www.youtube.com\/watch?v=530","version":213,"lastModified":"1301905215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4c1527777b9aa105860000d3\/torch-song-trilogy-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Torch Song Trilogy","releaseDate":567993600000,"language":"en","type":"Movie","_key":"32693"} +{"label":"Eddie Castrodad","version":20,"id":"55145","lastModified":"1301902387000","name":"Eddie Castrodad","type":"Person","_key":"32694"} +{"label":"Top of the Food Chain","description":"No overview found.","id":"8464","runtime":99,"imdbId":"tt0159797","version":90,"lastModified":"1301905336000","studio":"The Ontario Film Development Corporation","genre":"Comedy","title":"Top of the Food Chain","releaseDate":937008000000,"language":"en","type":"Movie","_key":"32695"} +{"label":"John Paizs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f64\/4d4d07c05e73d617b3001f64\/john-paizs-profile.jpg","version":23,"id":"55149","lastModified":"1301902153000","name":"John Paizs","type":"Person","_key":"32696"} +{"label":"Fiona Loewi","version":21,"id":"55153","lastModified":"1301901565000","name":"Fiona Loewi","type":"Person","_key":"32697"} +{"label":"Nigel Bennett","version":35,"id":"44208","lastModified":"1301901810000","name":"Nigel Bennett","type":"Person","_key":"32698"} +{"label":"Hardee T. Lineham","version":23,"id":"55154","lastModified":"1301902339000","name":"Hardee T. Lineham","type":"Person","_key":"32699"} +{"label":"Bernard Behrens","version":23,"id":"55155","lastModified":"1301902381000","name":"Bernard Behrens","type":"Person","_key":"32700"} +{"label":"Vier Tage Toskana","description":"No overview found.","id":"8465","runtime":180,"imdbId":"tt1198094","version":45,"lastModified":"1301905004000","studio":"ZDF","genre":"Drama","title":"Vier Tage Toskana","releaseDate":1208044800000,"language":"en","type":"Movie","_key":"32701"} +{"label":"Michael Keusch","version":39,"id":"55161","lastModified":"1301901359000","name":"Michael Keusch","type":"Person","_key":"32702"} +{"label":"Stefano Bernardin","version":20,"id":"55881","lastModified":"1301901457000","name":"Stefano Bernardin","type":"Person","_key":"32703"} +{"label":"Jytte-Merle B\u00f6hrnsen","version":20,"id":"55882","lastModified":"1301902028000","name":"Jytte-Merle B\u00f6hrnsen","type":"Person","_key":"32704"} +{"label":"Gerd Wameling","version":20,"id":"55883","lastModified":"1301902339000","name":"Gerd Wameling","type":"Person","_key":"32705"} +{"label":"Dumb & Dumber","description":"Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.","id":"8467","runtime":107,"imdbId":"tt0109686","trailer":"http:\/\/www.youtube.com\/watch?v=TRE7gINaS5o","version":202,"lastModified":"1301901319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a05\/4d4a4f0e7b9aa13ab8000a05\/dumb-dumber-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Dumb & Dumber","releaseDate":786672000000,"language":"en","tagline":"What the one doesn\u2019t have, the other is missing.","type":"Movie","_key":"32706"} +{"label":"Highway 61","description":"No overview found.","id":"8468","runtime":102,"imdbId":"tt0102035","version":92,"lastModified":"1301905279000","studio":"Shadow Stars","genre":"Comedy","title":"Highway 61","releaseDate":704073600000,"language":"en","type":"Movie","_key":"32707"} +{"label":"Valerie Buhagiar","version":20,"id":"55188","lastModified":"1301901651000","name":"Valerie Buhagiar","type":"Person","_key":"32708"} +{"label":"Earl Pastko","version":22,"id":"26093","lastModified":"1301901316000","name":"Earl Pastko","type":"Person","_key":"32709"} +{"label":"Peter Breck","version":25,"id":"35189","lastModified":"1301901446000","name":"Peter Breck","type":"Person","_key":"32710"} +{"label":"Bruce McDonald","version":29,"id":"55189","lastModified":"1301901402000","name":"Bruce McDonald","type":"Person","_key":"32711"} +{"label":"National Lampoon's Animal House","description":"Knowledge is good, but swilling kegs of beer is more fun! Just ask the guys at the Delta House fraternity. Dean Wormer puts the titular frat on double-secret probation, and it's up to Bluto, Flounder, Pinto and the rest of the brothers to get even.","id":"8469","runtime":104,"imdbId":"tt0077975","trailer":"http:\/\/www.youtube.com\/watch?v=m8psQi7ScQQ","version":347,"lastModified":"1301902361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ec\/4ce59ad95e73d60f700007ec\/national-lampoon-s-animal-house-mid.jpg","studio":"Universal Film","genre":"Comedy","title":"National Lampoon's Animal House","releaseDate":270432000000,"language":"en","tagline":"We got to do something...You know what we are gonna do ? Toga party !","type":"Movie","_key":"32712"} +{"label":"Verna Bloom","version":28,"id":"55192","lastModified":"1301901430000","name":"Verna Bloom","type":"Person","_key":"32713"} +{"label":"Mark Metcalf","version":23,"id":"55194","lastModified":"1301901884000","name":"Mark Metcalf","type":"Person","_key":"32714"} +{"label":"James Widdoes","version":22,"id":"55195","lastModified":"1301901884000","name":"James Widdoes","type":"Person","_key":"32715"} +{"label":"Stephen Furst","version":43,"id":"52304","lastModified":"1301901658000","name":"Stephen Furst","type":"Person","_key":"32716"} +{"label":"Mary Louise Weller","version":22,"id":"55196","lastModified":"1301901884000","name":"Mary Louise Weller","type":"Person","_key":"32717"} +{"label":"Martha Smith","version":23,"id":"55197","lastModified":"1301902097000","name":"Martha Smith","type":"Person","_key":"32718"} +{"label":"James Daughton","version":22,"id":"55198","lastModified":"1301901901000","name":"James Daughton","type":"Person","_key":"32719"} +{"label":"Douglas Kenney","version":30,"id":"55199","lastModified":"1301901634000","name":"Douglas Kenney","type":"Person","_key":"32720"} +{"label":"Chris Miller","version":22,"id":"55200","lastModified":"1301901901000","name":"Chris Miller","type":"Person","_key":"32721"} +{"label":"Bruce Bonnheim","version":22,"id":"55201","lastModified":"1301902275000","name":"Bruce Bonnheim","type":"Person","_key":"32722"} +{"label":"Joshua Daniel","version":22,"id":"55202","lastModified":"1301901884000","name":"Joshua Daniel","type":"Person","_key":"32723"} +{"label":"Sarah Holcomb","version":22,"id":"55203","lastModified":"1301902275000","name":"Sarah Holcomb","type":"Person","_key":"32724"} +{"label":"Stacy Grooman","version":23,"id":"55204","lastModified":"1301901996000","name":"Stacy Grooman","type":"Person","_key":"32725"} +{"label":"Otis Day","version":23,"id":"55206","lastModified":"1301901620000","name":"Otis Day","type":"Person","_key":"32726"} +{"label":"Eliza Roberts","version":21,"id":"55207","lastModified":"1301901901000","name":"Eliza Roberts","type":"Person","_key":"32727"} +{"label":"Lisa Baur","version":22,"id":"55208","lastModified":"1301901731000","name":"Lisa Baur","type":"Person","_key":"32728"} +{"label":"Aseneth Jurgenson","version":22,"id":"55209","lastModified":"1301902097000","name":"Aseneth Jurgenson","type":"Person","_key":"32729"} +{"label":"Katherine Denning","version":22,"id":"55210","lastModified":"1301901884000","name":"Katherine Denning","type":"Person","_key":"32730"} +{"label":"Raymone Robinson","version":22,"id":"55211","lastModified":"1301902275000","name":"Raymone Robinson","type":"Person","_key":"32731"} +{"label":"Robert Elliott","version":24,"id":"55212","lastModified":"1301902275000","name":"Robert Elliott","type":"Person","_key":"32732"} +{"label":"Reginald Farmer","version":20,"id":"55213","lastModified":"1301902296000","name":"Reginald Farmer","type":"Person","_key":"32733"} +{"label":"Jebidiah R. Dumas","version":23,"id":"55214","lastModified":"1301902368000","name":"Jebidiah R. Dumas","type":"Person","_key":"32734"} +{"label":"Priscilla Lauris","version":22,"id":"55215","lastModified":"1301902275000","name":"Priscilla Lauris","type":"Person","_key":"32735"} +{"label":"Rick Eby","version":22,"id":"55216","lastModified":"1301901884000","name":"Rick Eby","type":"Person","_key":"32736"} +{"label":"John Freeman","version":22,"id":"55217","lastModified":"1301901884000","name":"John Freeman","type":"Person","_key":"32737"} +{"label":"Sean McCartin","version":22,"id":"55218","lastModified":"1301901884000","name":"Sean McCartin","type":"Person","_key":"32738"} +{"label":"Helen Vick","version":22,"id":"55219","lastModified":"1301901884000","name":"Helen Vick","type":"Person","_key":"32739"} +{"label":"Rick Greenough","version":22,"id":"55220","lastModified":"1301901884000","name":"Rick Greenough","type":"Person","_key":"32740"} +{"label":"Clifford C. Coleman","version":22,"id":"55224","lastModified":"1301901995000","name":"Clifford C. Coleman","type":"Person","_key":"32741"} +{"label":"Ed Milkovich","version":22,"id":"55225","lastModified":"1301902097000","name":"Ed Milkovich","type":"Person","_key":"32742"} +{"label":"John Q","description":"John Q is a 2002 film by Nick Cassavetes; starring Denzel Washington as John Quincy Archibald, a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.","id":"8470","runtime":116,"imdbId":"tt0251160","version":222,"lastModified":"1301907333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68a\/4bc921c4017a3c57fe00d68a\/john-q-mid.jpg","genre":"Drama","title":"John Q","releaseDate":1013731200000,"language":"en","tagline":"Give a father no options and you leave him no choice.","type":"Movie","_key":"32743"} +{"label":"Kimberly Elise","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4cd9b8437b9aa12e7c00009a\/kimberly-elise-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-ansi-language: EN\" lang=EN>Kimberly Elise<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-ansi-language: EN\" lang=EN> was born on April 17, 1967 in <\/SPAN><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'\">Minneapolis, Minnesota, USA. <\/SPAN><SPAN style=\"FONT-FAMILY: 'Arial','sans-serif'; mso-ansi-language: EN\" lang=EN>Elise studied film and acting at the University of Minnesota and earned a BA in Mass Communications.","version":51,"birthday":"-85539600000","id":"55314","birthplace":"Minneapolis, Minnesota, United States","lastModified":"1301901157000","name":"Kimberly Elise","type":"Person","_key":"32744"} +{"label":"Daniel E. Smith","version":22,"id":"55315","lastModified":"1301901678000","name":"Daniel E. Smith","type":"Person","_key":"32745"} +{"label":"Larissa Laskin","version":23,"id":"55316","lastModified":"1301901522000","name":"Larissa Laskin","type":"Person","_key":"32746"} +{"label":"Eddie Griffin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a1\/4ca1da1e5e73d612f80002a1\/eddie-griffin-profile.jpg","version":61,"id":"62842","lastModified":"1301901301000","name":"Eddie Griffin","type":"Person","_key":"32747"} +{"label":"Far North","description":"A soldier's unexpected arrival affects two women's simple existence.","id":"8471","runtime":89,"imdbId":"tt0860866","version":176,"lastModified":"1301904679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/693\/4bc921c4017a3c57fe00d693\/far-north-mid.jpg","studio":"The Bureau","genre":"Drama","title":"Far North","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"32748"} +{"label":"Asif Kapadia","version":29,"id":"55251","lastModified":"1301901298000","name":"Asif Kapadia","type":"Person","_key":"32749"} +{"label":"Michelle Krusiec","version":27,"id":"55253","lastModified":"1301902339000","name":"Michelle Krusiec","type":"Person","_key":"32750"} +{"label":"Wild Wild West","description":"Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.","id":"8487","runtime":107,"imdbId":"tt0120891","trailer":"http:\/\/www.youtube.com\/watch?v=vsV671pcbR4","version":248,"lastModified":"1301901844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5f\/4d6cf74b7b9aa13631004b5f\/wild-wild-west-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Wild Wild West","releaseDate":933206400000,"language":"en","tagline":"It's a whole new west.","type":"Movie","_key":"32751"} +{"label":"Frederique Van Der Wal","version":24,"id":"55254","lastModified":"1301901928000","name":"Frederique Van Der Wal","type":"Person","_key":"32752"} +{"label":"Sofia Eng","version":22,"id":"55255","lastModified":"1301901928000","name":"Sofia Eng","type":"Person","_key":"32753"} +{"label":"Mike H. McGaughy","version":34,"id":"16163","lastModified":"1302059075000","name":"Mike H. McGaughy","type":"Person","_key":"32754"} +{"label":"Hitch","description":"Alex Hitchens, better known as Hitch, is the date doctor. His latest project, Albert Brenneman, is a nerdy financial consultant who fell in love with the famous Allegra Cole. While Hitch helps Albert with his love life, he struggles with is own. He starts falling for work-a-holic, Sarah Melas. After boyfriend problems with her best friend, Sarah labels Hitch with a reputation that he didn't deserve. Hitch proves his love & goes to great lengths to win a love of his own.","id":"8488","runtime":118,"imdbId":"tt0386588","trailer":"http:\/\/www.youtube.com\/watch?v=C9yBwqumFtI","version":363,"lastModified":"1302044988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4d45f9355e73d66f59002092\/hitch-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Hitch","releaseDate":1109808000000,"language":"en","tagline":"The cure for the common man.","type":"Movie","_key":"32755"} +{"label":"Julie Ann Emery","version":26,"id":"55256","lastModified":"1301901761000","name":"Julie Ann Emery","type":"Person","_key":"32756"} +{"label":"Adam Arkin","version":32,"id":"55257","lastModified":"1301901851000","name":"Adam Arkin","type":"Person","_key":"32757"} +{"label":"Robinne Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c56\/4d27ba9d7b9aa134e0001c56\/robinne-lee-profile.jpg","version":29,"id":"55258","lastModified":"1301901421000","name":"Robinne Lee","type":"Person","_key":"32758"} +{"label":"Ali","description":"In 1964, a brash new pro boxer, fresh from his olympic gold medal victory, explodes on to the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African American's in sport with his proud public self confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.","id":"8489","runtime":157,"imdbId":"tt0248667","trailer":"http:\/\/www.youtube.com\/watch?v=71HpLz-smn0","version":662,"lastModified":"1302044651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/114\/4bd5a1d2017a3c2e7d000114\/ali-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Ali","releaseDate":1008115200000,"language":"en","type":"Movie","_key":"32759"} +{"label":"Paul Rodriguez","version":40,"id":"55259","lastModified":"1301901373000","name":"Paul Rodriguez","type":"Person","_key":"32760"} +{"label":"Borderline","description":"Jeb Maynard is a patrolman guarding the U.S.-Mexican border, whose partner and buddy Scooter has just been murdered. Maynard knows that a smuggler of illegal aliens is responsible for Scooter's death, but the feds insist that drug dealers committed the crime.","id":"8490","runtime":97,"imdbId":"tt0080465","version":108,"lastModified":"1301905293000","studio":"Incorporated Television Company","genre":"Crime","title":"Borderline","releaseDate":341798400000,"language":"en","type":"Movie","_key":"32761"} +{"label":"Karmin Murcelo","version":25,"id":"55261","lastModified":"1302036099000","name":"Karmin Murcelo","type":"Person","_key":"32762"} +{"label":"James Victor","version":19,"id":"55262","lastModified":"1301902297000","name":"James Victor","type":"Person","_key":"32763"} +{"label":"Lawrence P. Casey","version":20,"id":"55263","lastModified":"1301902224000","name":"Lawrence P. Casey","type":"Person","_key":"32764"} +{"label":"Jerrold Freedman","version":20,"id":"55264","lastModified":"1301902297000","name":"Jerrold Freedman","type":"Person","_key":"32765"} +{"label":"Weekend at Bernie's","description":"Two friends are invited for a weekend to a luxury island with their boss. The boss gets shot and nobody seems to notice, except for the two friends. In order not to become suspects of murder they treat the body as a puppet and make people believe he's still alive. The killer wants to do his job so when he is informed that the stiff is still alive he's got to shoot him again, and again, and again.","id":"8491","runtime":97,"imdbId":"tt0098627","trailer":"http:\/\/www.youtube.com\/watch?v=YCTgcZ6ImsQ","version":290,"lastModified":"1302044093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e9\/4bc921d0017a3c57fe00d6e9\/weekend-at-bernie-s-mid.jpg","studio":"Gladden Entertainment","genre":"Comedy","title":"Weekend at Bernie's","releaseDate":615600000000,"language":"en","tagline":"He may be dead...but he's the life of the party!","type":"Movie","_key":"32766"} +{"label":"Jonathan Silverman","version":55,"id":"55265","lastModified":"1301901218000","name":"Jonathan Silverman","type":"Person","_key":"32767"} +{"label":"Catherine Mary Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24c\/4c87cc507b9aa1545b00024c\/catherine-mary-stewart-profile.jpg","version":34,"id":"55266","lastModified":"1301901293000","name":"Catherine Mary Stewart","type":"Person","_key":"32768"} +{"label":"Terry Kiser","version":33,"id":"55267","lastModified":"1301901587000","name":"Terry Kiser","type":"Person","_key":"32769"} +{"label":"Don Calfa","version":36,"id":"41262","lastModified":"1301901505000","name":"Don Calfa","type":"Person","_key":"32770"} +{"label":"Catherine Parks","version":24,"id":"55268","lastModified":"1301901812000","name":"Catherine Parks","type":"Person","_key":"32771"} +{"label":"Eloise DeJoria","version":25,"id":"55269","lastModified":"1301901992000","name":"Eloise DeJoria","type":"Person","_key":"32772"} +{"label":"Weekend at Bernie's II","description":"Everybody's favorite stiff is back! Working fools Larry Wilson (Andrew McCarthy) and Richard Parker (Jonathan Silverman) have uncovered a dirty, little secret: Their former boss, Bernie Lomax (Terry Kiser), embezzled $2 million and placed it in a safe deposit box in the Caribbean. Now, the boys are ready to go after the loot, but they can't do it alone -- they need poor Bernie's help. Can the buddies give their ex-boss new life?","id":"8494","runtime":97,"imdbId":"tt0108539","version":283,"lastModified":"1302043750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f7\/4bc921d2017a3c57fe00d6f7\/weekend-at-bernie-s-ii-mid.jpg","studio":"Artimm","genre":"Comedy","title":"Weekend at Bernie's II","releaseDate":741657600000,"language":"en","type":"Movie","_key":"32773"} +{"label":"Troy Beyer","version":29,"id":"42974","lastModified":"1301901651000","name":"Troy Beyer","type":"Person","_key":"32774"} +{"label":"Barry Bostwick","version":39,"id":"13473","lastModified":"1301901151000","name":"Barry Bostwick","type":"Person","_key":"32775"} +{"label":"Tom Wright","version":30,"id":"55270","lastModified":"1301901787000","name":"Tom Wright","type":"Person","_key":"32776"} +{"label":"Steve James","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16f\/4bd88ac6017a3c1c0600016f\/steve-james-profile.jpg","version":34,"id":"55271","lastModified":"1301901807000","name":"Steve James","type":"Person","_key":"32777"} +{"label":"Novella Nelson","version":21,"id":"55272","lastModified":"1301902383000","name":"Novella Nelson","type":"Person","_key":"32778"} +{"label":"Robert Klane","version":30,"id":"55273","lastModified":"1301901995000","name":"Robert Klane","type":"Person","_key":"32779"} +{"label":"Devil in a Blue Dress","description":"It is 1948 in LA. Ezikeal \"Easy\" Rawlins is an African-American World War II veteran that is hired to find a woman and gets mixed up in a murderous political scandal.","id":"8512","runtime":102,"imdbId":"tt0112857","version":178,"lastModified":"1302021137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/704\/4bc921d3017a3c57fe00d704\/devil-in-a-blue-dress-mid.jpg","studio":"Clinica Estetico","genre":"Drama","title":"Devil in a Blue Dress","releaseDate":811209600000,"language":"en","type":"Movie","_key":"32780"} +{"label":"Mel Winkler","version":23,"id":"35038","lastModified":"1301901731000","name":"Mel Winkler","type":"Person","_key":"32781"} +{"label":"David Wolos-Fonteno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4ce590567b9aa179ba000071\/david-wolos-fonteno-profile.jpg","version":35,"id":"55276","lastModified":"1301901278000","name":"David Wolos-Fonteno","type":"Person","_key":"32782"} +{"label":"Superman II","description":"Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by Gen. Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.","id":"8536","runtime":127,"imdbId":"tt0081573","trailer":"http:\/\/www.youtube.com\/watch?v=x6LmLlcD0EU","version":307,"lastModified":"1302020885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/200\/4bccf37b017a3c0f30000200\/superman-ii-mid.jpg","studio":"Alexander Salkind","genre":"Action","title":"Superman II","releaseDate":344736000000,"language":"en","tagline":"The Man of Steel meets his match!","type":"Movie","_key":"32783"} +{"label":"Superman Collection","description":"Superman was born on the planet Krypton, before being rocketed to Earth as an infant by his scientist father, moments before Krypton's destruction. Discovered and adopted by a Kansas farmer and his wife, the child is raised as Clark Kent and imbued with a strong moral compass. Very early he started to display superhuman abilities, which he resolved to use for the benefit of humanity.","id":"8537","version":454,"lastModified":"1301905548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/730\/4bc921d9017a3c57fe00d730\/superman-collection-mid.jpg","title":"Superman Collection","language":"en","type":"Movie","_key":"32784"} +{"label":"Little Voice","description":"After the death of her father, Little Voice or LV becomes a virtual recluse, never going out and hardly ever saying a word. She just sits in her bedroom listening to her father's collection of old records of Shirley Bassey, Marilyn Monroe and various other famous female singers. But at night time, LV sings, imitating these great singers with surprising accuracy. One night she is overheard by one of her mother's boyfriends, who happens to be a talent agent. He manages to convince her that her tal","id":"8545","runtime":97,"imdbId":"tt0147004","version":192,"lastModified":"1302042549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/739\/4bc921da017a3c57fe00d739\/little-voice-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Little Voice","releaseDate":910224000000,"language":"en","type":"Movie","_key":"32785"} +{"label":"Mark Herman","version":38,"id":"55299","lastModified":"1301901351000","name":"Mark Herman","type":"Person","_key":"32786"} +{"label":"Philip Jackson","version":33,"id":"25532","lastModified":"1301901714000","name":"Philip Jackson","type":"Person","_key":"32787"} +{"label":"Nichts geht mehr","description":"No overview found.","id":"8546","runtime":87,"imdbId":"tt1116806","version":50,"lastModified":"1301903601000","studio":"Aquafilm","genre":"Drama","title":"Nichts geht mehr","releaseDate":1193270400000,"language":"en","type":"Movie","_key":"32788"} +{"label":"J\u00f6rg Pohl","version":18,"id":"55310","lastModified":"1301902339000","name":"J\u00f6rg Pohl","type":"Person","_key":"32789"} +{"label":"Jean-Luc Bubert","version":18,"id":"55311","lastModified":"1301902339000","name":"Jean-Luc Bubert","type":"Person","_key":"32790"} +{"label":"Tanja Bi\u00dfling","version":20,"id":"55312","lastModified":"1301902377000","name":"Tanja Bi\u00dfling","type":"Person","_key":"32791"} +{"label":"Heike Thiem-Schneider","version":20,"id":"50699","lastModified":"1301902390000","name":"Heike Thiem-Schneider","type":"Person","_key":"32792"} +{"label":"Creep","description":"Trapped in a London subway station, a woman who's being pursued by a potential attacker heads into the unknown labyrinth of tunnels beneath the city's streets","id":"8555","runtime":85,"imdbId":"tt0381966","version":168,"lastModified":"1302042040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4bc921db017a3c57fe00d742\/creep-mid.jpg","studio":"UK Film Council","genre":"Horror","title":"Creep","releaseDate":1092096000000,"language":"en","type":"Movie","_key":"32793"} +{"label":"Paul Rattray","version":21,"id":"55340","lastModified":"1301901584000","name":"Paul Rattray","type":"Person","_key":"32794"} +{"label":"Kelly Scott","version":21,"id":"55341","lastModified":"1301901513000","name":"Kelly Scott","type":"Person","_key":"32795"} +{"label":"Kathryn Gilfeather","version":21,"id":"55342","lastModified":"1301901570000","name":"Kathryn Gilfeather","type":"Person","_key":"32796"} +{"label":"Grant Ibbs","version":21,"id":"55343","lastModified":"1301901509000","name":"Grant Ibbs","type":"Person","_key":"32797"} +{"label":"Sean De Vrind","version":21,"id":"55344","lastModified":"1301901500000","name":"Sean De Vrind","type":"Person","_key":"32798"} +{"label":"Emily Gilchrist","version":21,"id":"55345","lastModified":"1301901681000","name":"Emily Gilchrist","type":"Person","_key":"32799"} +{"label":"\u00bfBin ich sch\u00f6n?","description":"No overview found.","id":"8556","runtime":117,"imdbId":"tt0144106","version":51,"lastModified":"1301908586000","studio":"Constantin Film Produktion GmbH","genre":"Comedy","title":"\u00bfBin ich sch\u00f6n?","releaseDate":905990400000,"language":"en","type":"Movie","_key":"32800"} +{"label":"Carla Weindler","version":20,"id":"55346","lastModified":"1301901678000","name":"Carla Weindler","type":"Person","_key":"32801"} +{"label":"Julian Messner","version":20,"id":"55347","lastModified":"1301902187000","name":"Julian Messner","type":"Person","_key":"32802"} +{"label":"Beatriz Castill\u00f3n Mateo","version":20,"id":"55348","lastModified":"1301902376000","name":"Beatriz Castill\u00f3n Mateo","type":"Person","_key":"32803"} +{"label":"Lorenza Sophia Zorer","version":20,"id":"55349","lastModified":"1301902376000","name":"Lorenza Sophia Zorer","type":"Person","_key":"32804"} +{"label":"True North","description":"No overview found.","id":"8557","runtime":96,"imdbId":"tt0497365","trailer":"http:\/\/www.youtube.com\/watch?v=535","homepage":"http:\/\/www.truenorth-film.com","version":111,"lastModified":"1301903749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74b\/4bc921db017a3c57fe00d74b\/true-north-mid.jpg","studio":"Ariel Films","genre":"Drama","title":"True North","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"32805"} +{"label":"Steve Hudson","version":22,"id":"55352","lastModified":"1301901731000","name":"Steve Hudson","type":"Person","_key":"32806"} +{"label":"Steven Robertson","version":23,"id":"55364","lastModified":"1301901489000","name":"Steven Robertson","type":"Person","_key":"32807"} +{"label":"Angel Li","version":19,"id":"55365","lastModified":"1301902097000","name":"Angel Li","type":"Person","_key":"32808"} +{"label":"Schlaraffenland","description":"No overview found.","id":"8558","runtime":114,"imdbId":"tt0173171","version":69,"lastModified":"1301906740000","studio":"Hager Moss Film KG","genre":"Action","title":"Schlaraffenland","releaseDate":942278400000,"language":"en","type":"Movie","_key":"32809"} +{"label":"Camilla Renschke","version":20,"id":"49716","lastModified":"1301902025000","name":"Camilla Renschke","type":"Person","_key":"32810"} +{"label":"Joe Bausch","version":20,"id":"28367","lastModified":"1301901815000","name":"Joe Bausch","type":"Person","_key":"32811"} +{"label":"Kalle Palzer","version":20,"id":"55350","lastModified":"1301902368000","name":"Kalle Palzer","type":"Person","_key":"32812"} +{"label":"Friedemann Fromm","version":21,"id":"46719","lastModified":"1301902200000","name":"Friedemann Fromm","type":"Person","_key":"32813"} +{"label":"Bis dass der Tod uns scheidet","description":"No overview found.","id":"8579","runtime":90,"imdbId":"tt1148778","version":34,"lastModified":"1301906740000","studio":"Constantin Film Produktion GmbH","genre":"Drama","title":"Bis dass der Tod uns scheidet","releaseDate":1208217600000,"language":"en","type":"Movie","_key":"32814"} +{"label":"The Karate Kid Collection","description":"No overview found.","id":"8580","version":187,"lastModified":"1301902332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/521\/4c6dcc2a5e73d65f79000521\/karate-kid-collection-mid.jpg","title":"The Karate Kid Collection","language":"en","type":"Movie","_key":"32815"} +{"label":"A Nightmare On Elm Street Collection","description":"No overview found.","id":"8581","version":204,"lastModified":"1301902546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/057\/4c1223765e73d63925000057\/a-nightmare-on-elm-street-mid.jpg","title":"A Nightmare On Elm Street Collection","language":"en","type":"Movie","_key":"32816"} +{"label":"Halloween","description":"No overview found.","id":"8582","version":556,"lastModified":"1301903756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/758\/4bc921e0017a3c57fe00d758\/halloween-mid.jpg","genre":"Horror","title":"Halloween","language":"en","type":"Movie","_key":"32817"} +{"label":"Dangerous Beauty","description":"Prevented from marrying her nobleman lover because of her commoner status, Veronica Franco is left with two choices: join a convent or become a courtesan. Following in mother's footsteps, she chooses the latter. Sn 16th-century Venice, follow Franco as she rises to power and fearlessly fights off accusations of witchcraft.","id":"8583","runtime":111,"imdbId":"tt0118892","version":147,"lastModified":"1301903256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/761\/4bc921e1017a3c57fe00d761\/dangerous-beauty-mid.jpg","studio":"Bedford Falls Productions","genre":"Drama","title":"Dangerous Beauty","releaseDate":887932800000,"language":"en","type":"Movie","_key":"32818"} +{"label":"Marshall Herskovitz","version":52,"id":"9182","lastModified":"1301901460000","name":"Marshall Herskovitz","type":"Person","_key":"32819"} +{"label":"Shanghai Noon","description":"Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.","id":"8584","runtime":110,"imdbId":"tt0184894","trailer":"http:\/\/www.youtube.com\/watch?v=yE9VSEgV90Y","version":204,"lastModified":"1302063471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdd\/4d4451167b9aa15bf5000cdd\/shanghai-noon-mid.jpg","studio":"Jackie Chan Films Limited","genre":"Action","title":"Shanghai Noon","releaseDate":958694400000,"language":"en","tagline":"The old west meets the far east.","type":"Movie","_key":"32820"} +{"label":"My Beautiful Jinjiimaa","description":"My Beautiful Jinjiimaa is an emotional romantic drama in a setting few in the U.S. have ever seen. A deaf woman, Jinjiimaa, is raped by the local party Chairman, and shoots her attacker. Her lifelong friend, lame farmer Sukhee, goes to prison for six years for Jinjimaa\u2019s crime. The film begins with his return, where Sukhee and Jinjiimaa meet\u2014each with a secret.","id":"8585","runtime":80,"trailer":"http:\/\/www.youtube.com\/watch?v=536","version":139,"lastModified":"1302063073000","studio":"Cinema Epoch","genre":"Drama","title":"My Beautiful Jinjiimaa","releaseDate":1204588800000,"language":"en","type":"Movie","_key":"32821"} +{"label":"Natsagdorj Battsetseg","version":16,"id":"55405","lastModified":"1301901999000","name":"Natsagdorj Battsetseg","type":"Person","_key":"32822"} +{"label":"Purevdorj Tserendagva","version":16,"id":"55406","lastModified":"1301902194000","name":"Purevdorj Tserendagva","type":"Person","_key":"32823"} +{"label":"Dorjgotov Gantsetseg","version":16,"id":"55407","lastModified":"1301901651000","name":"Dorjgotov Gantsetseg","type":"Person","_key":"32824"} +{"label":"Ochir Mashbat","version":16,"id":"55501","lastModified":"1301901957000","name":"Ochir Mashbat","type":"Person","_key":"32825"} +{"label":"The Lion King","description":"A young lion cub named Simba can't wait to be king. But his uncle craves the title for himself and will stop at nothing -- even killing his own brother -- to get it.","id":"8587","runtime":89,"imdbId":"tt0110357","trailer":"http:\/\/www.youtube.com\/watch?v=4sj1MT05lAA","version":437,"lastModified":"1301901327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b9\/4c46829c7b9aa15dde0001b9\/the-lion-king-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Lion King","releaseDate":771638400000,"language":"en","tagline":"Life's greatest adventure is finding your place in the Circle of Life.","type":"Movie","_key":"32826"} +{"label":"Jonathan Taylor Thomas","version":41,"id":"53283","lastModified":"1302062970000","name":"Jonathan Taylor Thomas","type":"Person","_key":"32827"} +{"label":"Niketa Calame","version":27,"id":"56043","lastModified":"1302062970000","name":"Niketa Calame","type":"Person","_key":"32828"} +{"label":"Shooting Dogs","description":"Two westerners, a priest and a teacher find themselves in the middle of the Rwandan genocide and face a moral dilemna. Do they place themselves in danger and protect the refugees, or escape the country with their lives? Based on a true story.","id":"8588","runtime":115,"imdbId":"tt0420901","version":95,"lastModified":"1301903148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78d\/4bc921e7017a3c57fe00d78d\/shooting-dogs-mid.jpg","studio":"Egoli Tossell Film AG","genre":"Drama","title":"Shooting Dogs","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"32829"} +{"label":"David Gyasi","version":20,"id":"55411","lastModified":"1301901996000","name":"David Gyasi","type":"Person","_key":"32830"} +{"label":"Steve Toussaint","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eca\/4d280c597b9aa134d3001eca\/steve-toussaint-profile.jpg","version":42,"birthday":"-150858000000","id":"55412","lastModified":"1301901102000","name":"Steve Toussaint","type":"Person","_key":"32831"} +{"label":"Clare-Hope Ashitey","version":18,"id":"55413","lastModified":"1301901996000","name":"Clare-Hope Ashitey","type":"Person","_key":"32832"} +{"label":"Dick Tracy","description":"All Tess Trueheart wants is to settle down to a quiet life with her boyfriend, detective Dick Tracy. But there's something pretty rotten going on in town, with someone pretty rotten behind it, and Tracy has his hands full with the likes of villain Big Boy Caprice and with the almost irresistible Breathless Mahoney.","id":"8592","runtime":103,"imdbId":"tt0099422","version":175,"lastModified":"1301907682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79e\/4bc921eb017a3c57fe00d79e\/dick-tracy-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Dick Tracy","releaseDate":654393600000,"language":"en","tagline":"I'm on my way.","type":"Movie","_key":"32833"} +{"label":"Robbi, Tobbi und das Fliewat\u00fc\u00fct","description":"No overview found.","id":"8602","runtime":280,"imdbId":"tt0358872","version":31,"lastModified":"1301904270000","studio":"WDR","genre":"Adventure","title":"Robbi, Tobbi und das Fliewat\u00fc\u00fct","releaseDate":84326400000,"language":"en","type":"Movie","_key":"32834"} +{"label":"Armin Maiwald","version":21,"id":"55453","lastModified":"1301902153000","name":"Armin Maiwald","type":"Person","_key":"32835"} +{"label":"Prom Night","description":"Donna's senior prom is supposed to be the best night of her life, though a sadistic killer from her past has different plans for her and her friends.","id":"8617","runtime":88,"imdbId":"tt0926129","trailer":"http:\/\/www.youtube.com\/watch?v=572","homepage":"http:\/\/www.sonypictures.com\/movies\/promnight\/","version":296,"lastModified":"1301902930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b9\/4bc921ee017a3c57fe00d7b9\/prom-night-mid.jpg","studio":"Newmarket Films","genre":"Crime","title":"Prom Night","releaseDate":1207872000000,"language":"en","type":"Movie","_key":"32836"} +{"label":"Nelson McCormick","version":25,"id":"45627","lastModified":"1301901601000","name":"Nelson McCormick","type":"Person","_key":"32837"} +{"label":"Jessica Stroup","version":29,"id":"55463","lastModified":"1301901491000","name":"Jessica Stroup","type":"Person","_key":"32838"} +{"label":"Dana Davis","version":20,"id":"39556","lastModified":"1301901538000","name":"Dana Davis","type":"Person","_key":"32839"} +{"label":"Kelly Blatz","version":25,"id":"55464","lastModified":"1301901348000","name":"Kelly Blatz","type":"Person","_key":"32840"} +{"label":"The History Boys","description":"The story of an unruly class of bright, funny history students in pursuit of an undergraduate place at Oxford or Cambridge. Bounced between their maverick English master, a young and shrewd teacher hired to up their test scores, a grossly out-numbered history teacher, and a headmaster obsessed with results, the boys attempt to pass.","id":"8618","runtime":109,"imdbId":"tt0464049","trailer":"http:\/\/www.youtube.com\/watch?v=537","homepage":"http:\/\/www.foxsearchlight.com\/site\/thehistoryboys\/","version":267,"lastModified":"1301903502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ca\/4bc921f2017a3c57fe00d7ca\/the-history-boys-mid.jpg","studio":"Free Range Films","genre":"Comedy","title":"The History Boys","releaseDate":1159747200000,"language":"en","tagline":"History. It's just one bloody thing after another.","type":"Movie","_key":"32841"} +{"label":"Samuel Anderson","version":26,"id":"55465","lastModified":"1301902150000","name":"Samuel Anderson","type":"Person","_key":"32842"} +{"label":"James Corden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9a\/4d282d367b9aa134cf001e9a\/james-corden-profile.jpg","version":33,"id":"55466","lastModified":"1301901451000","name":"James Corden","type":"Person","_key":"32843"} +{"label":"Stephen Campbell Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/138\/4ceec95c5e73d654f5000138\/stephen-campbell-moore-profile.jpg","version":54,"id":"55467","lastModified":"1301901161000","name":"Stephen Campbell Moore","type":"Person","_key":"32844"} +{"label":"Andrew Knott","version":25,"id":"55468","lastModified":"1301901932000","name":"Andrew Knott","type":"Person","_key":"32845"} +{"label":"Russell Tovey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4ceec99b5e73d654f600012f\/russell-tovey-profile.jpg","version":24,"id":"55469","lastModified":"1301901644000","name":"Russell Tovey","type":"Person","_key":"32846"} +{"label":"Samuel Barnett","version":24,"id":"55471","lastModified":"1301902021000","name":"Samuel Barnett","type":"Person","_key":"32847"} +{"label":"Sacha Dhawan","version":26,"id":"55472","lastModified":"1301902127000","name":"Sacha Dhawan","type":"Person","_key":"32848"} +{"label":"Georgia Taylor","version":34,"id":"55473","lastModified":"1301901552000","name":"Georgia Taylor","type":"Person","_key":"32849"} +{"label":"Nicholas Hytner","version":40,"id":"55476","lastModified":"1301901782000","name":"Nicholas Hytner","type":"Person","_key":"32850"} +{"label":"Master and Commander: The Far Side of the World","description":"During the Napoleonic Wars, a brash British captain pushes his ship and crew to their limits in pursuit of a formidable French war vessel around South America.","id":"8619","runtime":138,"imdbId":"tt0311113","trailer":"http:\/\/www.youtube.com\/watch?v=4wDVf5Tkc88","homepage":"http:\/\/www.masterandcommanderthefarsideoftheworld.com\/","version":365,"lastModified":"1301951643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48a\/4d46010e5e73d6570400348a\/master-and-commander-the-far-side-of-the-world-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Master and Commander: The Far Side of the World","releaseDate":1068768000000,"language":"en","tagline":"The Courage To Do The Impossible Lies In The Hearts of Men.","type":"Movie","_key":"32851"} +{"label":"The Exorcism of Emily Rose","description":"When a younger girl called Emily Rose (Carpenter) dies, everyone puts blame on the exorcism which was performed on her by Father Moore (Wilkinson) prior to her death. The priest is arrested on suspicion of murder. The trail begins with lawyer Erin Bruner (Linney) representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.","id":"8643","runtime":116,"imdbId":"tt0404032","trailer":"http:\/\/www.youtube.com\/watch?v=lSy7DldFdUI","version":304,"lastModified":"1301907553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2da\/4cfc3f967b9aa151460032da\/the-exorcism-of-emily-rose-mid.jpg","studio":"Screen Gems, Inc.","genre":"Drama","title":"The Exorcism of Emily Rose","releaseDate":1125532800000,"language":"en","type":"Movie","_key":"32852"} +{"label":"Jennifer Carpenter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/615\/4be1c9ca017a3c35b5000615\/jennifer-carpenter-profile.jpg","version":37,"id":"53828","lastModified":"1301901268000","name":"Jennifer Carpenter","type":"Person","_key":"32853"} +{"label":"Scott Derrickson","version":66,"id":"55499","lastModified":"1301901366000","name":"Scott Derrickson","type":"Person","_key":"32854"} +{"label":"Die Menschenfischer","description":"No overview found.","id":"8644","runtime":33,"imdbId":"tt0768211","version":53,"lastModified":"1301905712000","studio":"Oval-Film","genre":"Documentary","title":"Die Menschenfischer","releaseDate":1098144000000,"language":"en","type":"Movie","_key":"32855"} +{"label":"Michaela Kirst","version":20,"id":"56061","lastModified":"1301902180000","name":"Michaela Kirst","type":"Person","_key":"32856"} +{"label":"Sabine El Chamaa","version":20,"id":"26446","lastModified":"1301901838000","name":"Sabine El Chamaa","type":"Person","_key":"32857"} +{"label":"The Happening","description":"A strange, horrible and unprecedented crisis begins in Central Park. A high school science teacher, his wife and a young girl do what they can to survive it.","id":"8645","runtime":90,"imdbId":"tt0949731","homepage":"http:\/\/www.thehappeningmovie.com","version":323,"lastModified":"1301901729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/816\/4bc921fc017a3c57fe00d816\/the-happening-mid.jpg","studio":"Blinding Edge Pictures","genre":"Action","title":"The Happening","releaseDate":1213315200000,"language":"en","tagline":"We've Sensed It. We've Seen The Signs. Now... It's Happening","type":"Movie","_key":"32858"} +{"label":"Der blinde Fleck","description":"No overview found.","id":"8646","runtime":89,"imdbId":"tt0879224","version":39,"lastModified":"1301905712000","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Drama","title":"Der blinde Fleck","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"32859"} +{"label":"Tom Zenker","version":21,"id":"55509","lastModified":"1301901958000","name":"Tom Zenker","type":"Person","_key":"32860"} +{"label":"Jakob Diehl","version":20,"id":"56062","lastModified":"1301901996000","name":"Jakob Diehl","type":"Person","_key":"32861"} +{"label":"Henriette Schmidt","version":20,"id":"56063","lastModified":"1301901825000","name":"Henriette Schmidt","type":"Person","_key":"32862"} +{"label":"The Skulls","description":"No overview found.","id":"8647","version":280,"lastModified":"1301908035000","genre":"Crime","title":"The Skulls","language":"en","type":"Movie","_key":"32863"} +{"label":"Les Liens du sang","description":"The story of two rival brothers, one a pimp and the other a cop, and how the former manages to be the family favourite.","id":"8648","runtime":106,"imdbId":"tt0942379","version":65,"lastModified":"1301903585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/824\/4bc921ff017a3c57fe00d824\/les-liens-du-sang-mid.jpg","studio":"France 3 Cin\u00e9ma","genre":"Action","title":"Les Liens du sang","releaseDate":1202256000000,"language":"en","type":"Movie","_key":"32864"} +{"label":"Jacques Maillot","version":23,"id":"55813","lastModified":"1301902097000","name":"Jacques Maillot","type":"Person","_key":"32865"} +{"label":"Marie Denarnaud","version":20,"id":"55814","lastModified":"1301901476000","name":"Marie Denarnaud","type":"Person","_key":"32866"} +{"label":"Bringing Out The Dead","description":"48 hours in the life of a burnt-out paramedic. Once called Father Frank for his efforts to rescue lives, Frank sees the ghosts of those he failed to save around every turn. He has tried everything he can to get fired, calling in sick, delaying taking calls where he might have to face one more victim he couldn't help, yet cannot quit the job on his own.","id":"8649","runtime":121,"imdbId":"tt0163988","trailer":"http:\/\/www.youtube.com\/watch?v=sfUwvmRmMtw","version":217,"lastModified":"1301902566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/831\/4bc921ff017a3c57fe00d831\/bringing-out-the-dead-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"Bringing Out The Dead","releaseDate":940550400000,"language":"en","type":"Movie","_key":"32867"} +{"label":"Transformers Collection","description":"The Transformers series follows the continuing battle between the Autobots and the Decepticons and ultimately, the triumph of good over evil.","id":"8650","version":186,"lastModified":"1301902833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/310\/4d0892127b9aa101d4000310\/transformers-collection-mid.jpg","studio":"Paramount Pictures","title":"Transformers Collection","language":"en","type":"Movie","_key":"32868"} +{"label":"Unterwegs","description":"No overview found.","id":"8651","runtime":89,"imdbId":"tt0404532","version":55,"lastModified":"1301907413000","genre":"Road Movie","title":"Unterwegs","releaseDate":1076371200000,"language":"en","type":"Movie","_key":"32869"} +{"label":"Jan Kr\u00fcger","version":24,"id":"32836","lastModified":"1301901786000","name":"Jan Kr\u00fcger","type":"Person","_key":"32870"} +{"label":"Dream","description":"A man dream she caused a car crash, then discovers a real hit-and-run accident. The driver is arrested by police as the prime suspect, though she claims she was not responsible.","id":"8652","runtime":95,"imdbId":"tt1165253","version":219,"lastModified":"1301904072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4c175b067b9aa108b40001a4\/bi-mong-mid.jpg","studio":"Kim Ki-Duk Film","genre":"Drama","title":"Dream","releaseDate":1199145600000,"language":"en","tagline":"A dream is a dream is a dream.","type":"Movie","_key":"32871"} +{"label":"Na-yeong Lee","version":19,"id":"55522","lastModified":"1301901561000","name":"Na-yeong Lee","type":"Person","_key":"32872"} +{"label":"J\u00f4 Odagiri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/403\/4d3e7af95e73d622d1004403\/j-odagiri-profile.jpg","version":37,"id":"63694","lastModified":"1301901826000","name":"J\u00f4 Odagiri","type":"Person","_key":"32873"} +{"label":"The Isle","description":"A beautiful, angry, and sad movie, set on a lake where fishermen rent tiny floating cottages and escape from the outside world. However the idyllic setting hides a world of savagery and suffering. Caution: this movie contains scenes of self-mutilation and animal mistreatment.","id":"8653","runtime":90,"imdbId":"tt0255589","version":74,"lastModified":"1301903162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/850\/4bc92206017a3c57fe00d850\/8653-mid.jpg","studio":"Myung Film Company","genre":"Drama","title":"The Isle","releaseDate":967766400000,"language":"en","type":"Movie","_key":"32874"} +{"label":"Jung Suh","version":25,"id":"69698","lastModified":"1301901958000","name":"Jung Suh","type":"Person","_key":"32875"} +{"label":"Yoosuk Kim","version":21,"id":"69699","lastModified":"1301902180000","name":"Yoosuk Kim","type":"Person","_key":"32876"} +{"label":"Sung-hee Park","version":21,"id":"69700","lastModified":"1301902368000","name":"Sung-hee Park","type":"Person","_key":"32877"} +{"label":"Jae-hyeon Jo","version":30,"id":"64453","lastModified":"1301901577000","name":"Jae-hyeon Jo","type":"Person","_key":"32878"} +{"label":"Nefertiti","description":"No overview found.","id":"8654","runtime":0,"version":242,"lastModified":"1301419412000","genre":"History","title":"Nefertiti","language":"en","type":"Movie","_key":"32879"} +{"label":"Deep Impact","description":"A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut (Robert Duvall) to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.","id":"8656","runtime":120,"imdbId":"tt0120647","trailer":"http:\/\/www.youtube.com\/watch?v=fLgSKv2P-ow","version":358,"lastModified":"1301902005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f5\/4d680d4f7b9aa1362c0001f5\/deep-impact-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Deep Impact","releaseDate":894499200000,"language":"en","tagline":"Heaven and Earth are about to collide.","type":"Movie","_key":"32880"} +{"label":"Rough Air: Danger on Flight 534","description":"Having taken the blame for an accident beyond his control, pilot Mike Hogan has been on administrative leave indefinitely; however when the airline is desperately short of staff, he is offered to be first officer and accepts, without enthusiasm, received with disdain by the well-connected commander. Surprisingly his come-back proves less then routine, as the captain gets knocked out and a collision as well as a murderer being transported by police require courageous action from Mike, his crew an","id":"8664","runtime":87,"imdbId":"tt0268586","version":81,"lastModified":"1301904979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/487\/4ca948ce5e73d643ed000487\/rough-air-danger-on-flight-534-mid.jpg","studio":"Carlton America","genre":"Disaster","title":"Rough Air: Danger on Flight 534","releaseDate":978307200000,"language":"en","type":"Movie","_key":"32881"} +{"label":"Jon Cassar","version":31,"id":"25873","lastModified":"1301901646000","name":"Jon Cassar","type":"Person","_key":"32882"} +{"label":"Alexandra Paul","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59a\/4d10f5655e73d6083e00059a\/alexandra-paul-profile.jpg","version":46,"id":"55567","lastModified":"1301901199000","name":"Alexandra Paul","type":"Person","_key":"32883"} +{"label":"Mark Lutz","version":21,"id":"55568","lastModified":"1301901731000","name":"Mark Lutz","type":"Person","_key":"32884"} +{"label":"Alexis Cassar","version":20,"id":"55570","lastModified":"1301901996000","name":"Alexis Cassar","type":"Person","_key":"32885"} +{"label":"John Furey","version":23,"id":"55571","lastModified":"1301902376000","name":"John Furey","type":"Person","_key":"32886"} +{"label":"Larissa Gomes","version":19,"id":"55572","lastModified":"1301901884000","name":"Larissa Gomes","type":"Person","_key":"32887"} +{"label":"Kelly Ivey","version":19,"id":"55573","lastModified":"1301901884000","name":"Kelly Ivey","type":"Person","_key":"32888"} +{"label":"Daryn Jones","version":19,"id":"55574","lastModified":"1301901884000","name":"Daryn Jones","type":"Person","_key":"32889"} +{"label":"Kevin Jubinville","version":21,"id":"44100","lastModified":"1301901491000","name":"Kevin Jubinville","type":"Person","_key":"32890"} +{"label":"Anne Openshaw","version":19,"id":"55569","lastModified":"1301901884000","name":"Anne Openshaw","type":"Person","_key":"32891"} +{"label":"Leah Pinsent","version":20,"id":"55575","lastModified":"1301901884000","name":"Leah Pinsent","type":"Person","_key":"32892"} +{"label":"Ryan Scott","version":19,"id":"55577","lastModified":"1301901884000","name":"Ryan Scott","type":"Person","_key":"32893"} +{"label":"K-19: The Widowmaker","description":"When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.","id":"8665","runtime":133,"imdbId":"tt0267626","trailer":"http:\/\/www.youtube.com\/watch?v=gOYwZs5RqII","version":310,"lastModified":"1301902478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c5\/4c27370f7b9aa1446c0002c5\/k-19-the-widowmaker-mid.jpg","studio":"New Regency Productions","genre":"Action","title":"K-19: The Widowmaker","releaseDate":1031184000000,"language":"en","type":"Movie","_key":"32894"} +{"label":"Steve Nicolson","version":28,"id":"55578","lastModified":"1301901411000","name":"Steve Nicolson","type":"Person","_key":"32895"} +{"label":"George Anton","version":29,"id":"55581","lastModified":"1301901466000","name":"George Anton","type":"Person","_key":"32896"} +{"label":"James Francis Ginty","version":21,"id":"55582","lastModified":"1301902368000","name":"James Francis Ginty","type":"Person","_key":"32897"} +{"label":"Lex Shrapnel","version":24,"id":"55583","lastModified":"1301902047000","name":"Lex Shrapnel","type":"Person","_key":"32898"} +{"label":"Sam Spruell","version":24,"id":"55585","lastModified":"1301902307000","name":"Sam Spruell","type":"Person","_key":"32899"} +{"label":"Sam Redford","version":23,"id":"55586","lastModified":"1301901936000","name":"Sam Redford","type":"Person","_key":"32900"} +{"label":"Peter Stebbings","version":34,"id":"55587","lastModified":"1301948633000","name":"Peter Stebbings","type":"Person","_key":"32901"} +{"label":"Roman Podhora","version":23,"id":"55588","lastModified":"1301901936000","name":"Roman Podhora","type":"Person","_key":"32902"} +{"label":"Shaun Benson","version":22,"id":"55589","lastModified":"1301902307000","name":"Shaun Benson","type":"Person","_key":"32903"} +{"label":"Kristen Holden-Reid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4cf2f1385e73d623860001d1\/kristen-holden-reid-profile.jpg","version":29,"id":"55590","lastModified":"1301901277000","name":"Kristen Holden-Reid","type":"Person","_key":"32904"} +{"label":"Dmitry Chepovetsky","version":31,"id":"29878","lastModified":"1301901936000","name":"Dmitry Chepovetsky","type":"Person","_key":"32905"} +{"label":"Tygh Runyan","version":34,"id":"55591","lastModified":"1301901369000","name":"Tygh Runyan","type":"Person","_key":"32906"} +{"label":"Peter Graham","version":22,"id":"55592","lastModified":"1301902307000","name":"Peter Graham","type":"Person","_key":"32907"} +{"label":"Shawn Mathieson","version":22,"id":"55593","lastModified":"1301902307000","name":"Shawn Mathieson","type":"Person","_key":"32908"} +{"label":"Christopher Routh","version":23,"id":"55594","lastModified":"1301902369000","name":"Christopher Routh","type":"Person","_key":"32909"} +{"label":"Lubomir Mykytiuk","version":24,"id":"55595","lastModified":"1301902388000","name":"Lubomir Mykytiuk","type":"Person","_key":"32910"} +{"label":"Michael Gladis","version":20,"id":"55596","lastModified":"1301902307000","name":"Michael Gladis","type":"Person","_key":"32911"} +{"label":"Christian Camargo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/386\/4c6170b25e73d63463000386\/christian-camargo-profile.jpg","version":53,"id":"122029","lastModified":"1301901859000","name":"Christian Camargo","type":"Person","_key":"32912"} +{"label":"Ravil Isyanov","version":30,"id":"41742","lastModified":"1302064821000","name":"Ravil Isyanov","type":"Person","_key":"32913"} +{"label":"Wir werden uns wiederseh'n","description":"No overview found.","id":"8668","runtime":90,"imdbId":"tt1016042","homepage":"http:\/\/www.wir-werden-uns-wiedersehen.com\/","version":60,"lastModified":"1301905711000","studio":"Frischfilm","genre":"Comedy","title":"Wir werden uns wiederseh'n","releaseDate":1174521600000,"language":"en","type":"Movie","_key":"32914"} +{"label":"Pola Kinski","version":20,"id":"55601","lastModified":"1301902359000","name":"Pola Kinski","type":"Person","_key":"32915"} +{"label":"Isolde Fischer","version":20,"id":"55602","lastModified":"1301902153000","name":"Isolde Fischer","type":"Person","_key":"32916"} +{"label":"Lieselotte Langer","version":20,"id":"55603","lastModified":"1301902339000","name":"Lieselotte Langer","type":"Person","_key":"32917"} +{"label":"Sabine Strobach","version":20,"id":"55604","lastModified":"1301902339000","name":"Sabine Strobach","type":"Person","_key":"32918"} +{"label":"Ralf Kaufmann","version":20,"id":"55605","lastModified":"1301902339000","name":"Ralf Kaufmann","type":"Person","_key":"32919"} +{"label":"Einhardt Klucke","version":20,"id":"55606","lastModified":"1301902339000","name":"Einhardt Klucke","type":"Person","_key":"32920"} +{"label":"Sonja Hondralis","version":20,"id":"55607","lastModified":"1301902339000","name":"Sonja Hondralis","type":"Person","_key":"32921"} +{"label":"Alice Huber","version":20,"id":"55608","lastModified":"1301902339000","name":"Alice Huber","type":"Person","_key":"32922"} +{"label":"Stefan Hillebrand","version":23,"id":"55609","lastModified":"1301902153000","name":"Stefan Hillebrand","type":"Person","_key":"32923"} +{"label":"Oliver Paulus","version":25,"id":"55610","lastModified":"1301902339000","name":"Oliver Paulus","type":"Person","_key":"32924"} +{"label":"Charlie Bartlett","description":"A rich kid becomes the self-appointed psychiatrist to the student body of his new high school.","id":"8669","runtime":97,"imdbId":"tt0423977","trailer":"http:\/\/www.youtube.com\/watch?v=K86p21Th4qs","homepage":"http:\/\/www.charliebartlett-themovie.com\/","version":238,"lastModified":"1301903375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/874\/4bc92208017a3c57fe00d874\/charlie-bartlett-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Charlie Bartlett","releaseDate":1177977600000,"language":"en","tagline":"When Charlie Bartlett listens everyone talks.","type":"Movie","_key":"32925"} +{"label":"Jon Poll","version":65,"id":"10395","lastModified":"1301901461000","name":"Jon Poll","type":"Person","_key":"32926"} +{"label":"Mark Rendall","version":26,"id":"34918","lastModified":"1301901338000","name":"Mark Rendall","type":"Person","_key":"32927"} +{"label":"Dylan Taylor","version":25,"id":"55614","lastModified":"1301902097000","name":"Dylan Taylor","type":"Person","_key":"32928"} +{"label":"Megan Park","version":23,"id":"55615","lastModified":"1301901883000","name":"Megan Park","type":"Person","_key":"32929"} +{"label":"David Brown","version":20,"id":"55616","lastModified":"1301902204000","name":"David Brown","type":"Person","_key":"32930"} +{"label":"My Best Fiend","description":"A look at the tumultuous yet productive relationship between German director Werner Herzog and actor Klaus Kinski.","id":"8672","runtime":95,"imdbId":"tt0200849","version":116,"lastModified":"1301904819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/879\/4bc9220c017a3c57fe00d879\/mein-liebster-feind-mid.jpg","studio":"Arte","genre":"Documentary","title":"My Best Fiend","releaseDate":926899200000,"language":"en","type":"Movie","_key":"32931"} +{"label":"Orgazmo","description":"Naive young Mormon Joe Young is recruited to act in porn movies.","id":"8675","runtime":94,"imdbId":"tt0124819","trailer":"http:\/\/www.youtube.com\/watch?v=1727","homepage":"http:\/\/www.orgazmodvd.com\/","version":154,"lastModified":"1301903562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89a\/4bc9220f017a3c57fe00d89a\/orgazmo-mid.jpg","studio":"Kuzui Enterprises","genre":"Comedy","title":"Orgazmo","releaseDate":873504000000,"language":"en","type":"Movie","_key":"32932"} +{"label":"Dian Bachar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4bd3ead2017a3c7fae000059\/dian-bachar-profile.jpg","version":27,"id":"55624","lastModified":"1301901291000","name":"Dian Bachar","type":"Person","_key":"32933"} +{"label":"Michael Dean Jacobs","version":20,"id":"55623","lastModified":"1301901430000","name":"Michael Dean Jacobs","type":"Person","_key":"32934"} +{"label":"Robyn Lynne Raab","version":18,"id":"55625","lastModified":"1301901540000","name":"Robyn Lynne Raab","type":"Person","_key":"32935"} +{"label":"Andrew Kemler","version":20,"id":"55626","lastModified":"1301901476000","name":"Andrew Kemler","type":"Person","_key":"32936"} +{"label":"David Dunn","version":20,"id":"55627","lastModified":"1301901538000","name":"David Dunn","type":"Person","_key":"32937"} +{"label":"Joseph Arsenault","version":20,"id":"55628","lastModified":"1301901476000","name":"Joseph Arsenault","type":"Person","_key":"32938"} +{"label":"Marcus Vaughn","version":20,"id":"55629","lastModified":"1301901615000","name":"Marcus Vaughn","type":"Person","_key":"32939"} +{"label":"Joseph Moore","version":20,"id":"55630","lastModified":"1301901382000","name":"Joseph Moore","type":"Person","_key":"32940"} +{"label":"Jeffery Bowman","version":20,"id":"55631","lastModified":"1301901476000","name":"Jeffery Bowman","type":"Person","_key":"32941"} +{"label":"John Marlo","version":22,"id":"55632","lastModified":"1301901524000","name":"John Marlo","type":"Person","_key":"32942"} +{"label":"Fool's Gold","description":"Charming but luckless treasure hunter Ben Finnegan has sacrificed his relationship with his wife to search for the Queen's Dowry, a legendary treasure lost at sea. But the discovery of a new clue rekindles his hope for riches -- and his marriage.","id":"8676","runtime":113,"imdbId":"tt0770752","trailer":"http:\/\/www.youtube.com\/watch?v=Al3TgOUfSaQ","version":361,"lastModified":"1301901846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/330\/4d0a258e7b9aa162bf000330\/fool-s-gold-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Fool's Gold","releaseDate":1202428800000,"language":"en","tagline":"This February True Love Takes a Dive.","type":"Movie","_key":"32943"} +{"label":"Brian Hooks","version":31,"id":"55637","lastModified":"1301901676000","name":"Brian Hooks","type":"Person","_key":"32944"} +{"label":"Kevin Hart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/897\/4d6023397b9aa154bf003897\/kevin-hart-profile.jpg","version":57,"id":"55638","lastModified":"1301901348000","name":"Kevin Hart","type":"Person","_key":"32945"} +{"label":"The Bourne Identity","description":"Richard Chamberlain stars as Jason Bourne, a barely alive amnesiac with a pair of bullet wounds in his back, pulled from the Mediterranean by Italian fishermen. Bourne's only clue to his own identity is a bank account number etched on a capsule implanted in his body. He quickly finds the Zurich bank where money, a gun, and a few identification documents await, but after he's pursued by security goons at the American consulate, Bourne realizes he can trust no one and offers a German gypsy named M","id":"8677","runtime":180,"imdbId":"tt0094791","version":142,"lastModified":"1301904568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8be\/4bc92216017a3c57fe00d8be\/the-bourne-identity-mid.jpg","studio":"Warner Bros. Television","genre":"Action","title":"The Bourne Identity","releaseDate":579052800000,"language":"en","type":"Movie","_key":"32946"} +{"label":"Jaclyn Smith","version":25,"id":"55635","lastModified":"1301901517000","name":"Jaclyn Smith","type":"Person","_key":"32947"} +{"label":"The Shell Seekers","description":"No overview found.","id":"8680","runtime":174,"imdbId":"tt0758720","version":66,"lastModified":"1301908327000","studio":"Neue Tonfilm","genre":"Drama","title":"The Shell Seekers","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"32948"} +{"label":"Prunella Scales","version":21,"id":"55643","lastModified":"1301901815000","name":"Prunella Scales","type":"Person","_key":"32949"} +{"label":"Victoria Hamilton","version":33,"id":"55645","lastModified":"1301901532000","name":"Victoria Hamilton","type":"Person","_key":"32950"} +{"label":"Stephanie Stumph","version":19,"id":"55646","lastModified":"1301902275000","name":"Stephanie Stumph","type":"Person","_key":"32951"} +{"label":"Taken","description":"While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.","id":"8681","runtime":93,"imdbId":"tt0936501","trailer":"http:\/\/www.youtube.com\/watch?v=CvUxdQ4q-Lg","version":507,"lastModified":"1302011405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b55\/4d1723d65e73d60838008b55\/taken-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Taken","releaseDate":1204070400000,"language":"en","tagline":"They took his daughter. He'll take their lives.","type":"Movie","_key":"32952"} +{"label":"Katie Cassidy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/103\/4bebe250017a3c37a7000103\/katie-cassidy-profile.jpg","version":54,"id":"55775","lastModified":"1301901075000","name":"Katie Cassidy","type":"Person","_key":"32953"} +{"label":"Holly Valance","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dc\/4bcc3f93017a3c0f340000dc\/holly-valance-profile.jpg","version":35,"id":"55776","lastModified":"1301901205000","name":"Holly Valance","type":"Person","_key":"32954"} +{"label":"Pierre Morel","version":71,"id":"35453","lastModified":"1301901163000","name":"Pierre Morel","type":"Person","_key":"32955"} +{"label":"Snake Eyes","description":"All bets are off when corrupt homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend and naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.","id":"8688","runtime":94,"imdbId":"tt0120832","trailer":"http:\/\/www.youtube.com\/watch?v=v=LBpP__jRGXQ","version":173,"lastModified":"1301902436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/934\/4bc92229017a3c57fe00d934\/snake-eyes-mid.jpg","studio":"Touchstone Pictures","genre":"Crime","title":"Snake Eyes","releaseDate":883612800000,"language":"en","tagline":"Believe everything except your eyes.","type":"Movie","_key":"32956"} +{"label":"Cannibal Holocaust","description":"An anthropologist heads a rescue party into the South American jungle to find a missing film team making a documentary on cannibal tribes but can only return with their footage, which reveals their crueler intentions.","id":"8689","runtime":95,"imdbId":"tt0078935","version":112,"lastModified":"1301901291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90b\/4d0959d97b9aa101dc00090b\/cannibal-holocaust-mid.jpg","studio":"F.D. Cinematografica","genre":"Horror","title":"Cannibal Holocaust","releaseDate":487987200000,"language":"en","tagline":"The most controversial movie of all-time.","type":"Movie","_key":"32957"} +{"label":"Perry Pirkanen","version":22,"id":"55649","lastModified":"1301902026000","name":"Perry Pirkanen","type":"Person","_key":"32958"} +{"label":"Luca Barbareschi","version":28,"id":"55650","lastModified":"1301901689000","name":"Luca Barbareschi","type":"Person","_key":"32959"} +{"label":"Salvatore Basile","version":27,"id":"55651","lastModified":"1299499100000","name":"Salvatore Basile","type":"Person","_key":"32960"} +{"label":"Francesca Ciardi","version":21,"id":"55652","lastModified":"1301902025000","name":"Francesca Ciardi","type":"Person","_key":"32961"} +{"label":"Carl Gabriel Yorke","version":21,"id":"55653","lastModified":"1301901580000","name":"Carl Gabriel Yorke","type":"Person","_key":"32962"} +{"label":"Mangiati vivi!","description":"No overview found.","id":"8690","runtime":85,"imdbId":"tt0081112","version":77,"lastModified":"1301903719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/953\/4bc9222f017a3c57fe00d953\/mangiati-vivi-mid.jpg","genre":"Horror","title":"Mangiati vivi!","releaseDate":324172800000,"language":"en","type":"Movie","_key":"32963"} +{"label":"Janet Agren","version":24,"id":"55654","lastModified":"1301902224000","name":"Janet Agren","type":"Person","_key":"32964"} +{"label":"Me Me Lai","version":25,"id":"56876","lastModified":"1301901565000","name":"Me Me Lai","type":"Person","_key":"32965"} +{"label":"Fiamma Maglione","version":23,"id":"55658","lastModified":"1301902197000","name":"Fiamma Maglione","type":"Person","_key":"32966"} +{"label":"Franco Coduti","version":19,"id":"55655","lastModified":"1301902304000","name":"Franco Coduti","type":"Person","_key":"32967"} +{"label":"Jake Teague","version":18,"id":"100399","lastModified":"1301902917000","name":"Jake Teague","type":"Person","_key":"32968"} +{"label":"Gerald Grant","version":16,"id":"100400","lastModified":"1301902477000","name":"Gerald Grant","type":"Person","_key":"32969"} +{"label":"Carlo Longhi","version":16,"id":"100401","lastModified":"1301902477000","name":"Carlo Longhi","type":"Person","_key":"32970"} +{"label":"Cannibal ferox","description":"Three friends out to disprove cannibalism meet two men on the run who tortured and enslaved a cannibal tribe to find emeralds, and now the tribe is out for revenge.","id":"8691","runtime":86,"imdbId":"tt0082700","trailer":"http:\/\/www.youtube.com\/watch?v=vetqIIVVB0w","version":94,"lastModified":"1301904697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ad\/4c1935bd7b9aa108d80002ad\/cannibal-ferox-mid.jpg","studio":"Dania Film","genre":"Horror","title":"Cannibal ferox","releaseDate":365385600000,"language":"en","type":"Movie","_key":"32971"} +{"label":"Danilo Mattei","version":22,"id":"55656","lastModified":"1301902007000","name":"Danilo Mattei","type":"Person","_key":"32972"} +{"label":"Zora Kerova","version":29,"id":"55659","lastModified":"1301901503000","name":"Zora Kerova","type":"Person","_key":"32973"} +{"label":"Lorraine De Selle","version":23,"id":"101577","lastModified":"1301902536000","name":"Lorraine De Selle","type":"Person","_key":"32974"} +{"label":"Apocalypse domani","description":"No overview found.","id":"8692","runtime":96,"imdbId":"tt0080379","version":100,"lastModified":"1301908586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/961\/4bc92230017a3c57fe00d961\/apocalypse-domani-mid.jpg","genre":"Horror","title":"Apocalypse domani","releaseDate":343008000000,"language":"en","type":"Movie","_key":"32975"} +{"label":"Elizabeth Turner","version":22,"id":"101327","lastModified":"1301902508000","name":"Elizabeth Turner","type":"Person","_key":"32976"} +{"label":"Cinzia De Carolis","version":22,"id":"55670","lastModified":"1301902389000","name":"Cinzia De Carolis","type":"Person","_key":"32977"} +{"label":"Tony King","version":25,"id":"55672","lastModified":"1301901593000","name":"Tony King","type":"Person","_key":"32978"} +{"label":"Wallace Wilkinson","version":19,"id":"101328","lastModified":"1301903074000","name":"Wallace Wilkinson","type":"Person","_key":"32979"} +{"label":"Ramiro Oliveros","version":20,"id":"101329","lastModified":"1301902993000","name":"Ramiro Oliveros","type":"Person","_key":"32980"} +{"label":"May Heatherly","version":24,"id":"100816","lastModified":"1301903066000","name":"May Heatherly","type":"Person","_key":"32981"} +{"label":"Goffredo Unger","version":29,"id":"100956","lastModified":"1301902993000","name":"Goffredo Unger","type":"Person","_key":"32982"} +{"label":"Sam Whiskey","description":"Sam Whiskey is an all-round talent, but when the attractive widow Laura offers him a job, he hesitates: he shall salvage gold bars, which Laura's dead husband stole recently, from a sunken ship and secretly bring them back to the mint before they are missed. But how shall he manage to get several hundred pounds of gold into the mint without anyone noticing?","id":"8693","runtime":96,"imdbId":"tt0064923","version":217,"lastModified":"1301908034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/253\/4ce7e1795e73d62590000253\/sam-whiskey-mid.jpg","studio":"United Artists","genre":"Comedy","title":"Sam Whiskey","releaseDate":-23760000000,"language":"en","type":"Movie","_key":"32983"} +{"label":"Arnold Laven","version":26,"id":"55692","lastModified":"1301902320000","name":"Arnold Laven","type":"Person","_key":"32984"} +{"label":"William Schallert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4bd81480017a3c1bff0000ad\/william-schallert-profile.jpg","version":28,"id":"15992","lastModified":"1301901832000","name":"William Schallert","type":"Person","_key":"32985"} +{"label":"Rick Davis","version":20,"id":"55697","lastModified":"1301902274000","name":"Rick Davis","type":"Person","_key":"32986"} +{"label":"Del Reeves","version":19,"id":"55698","lastModified":"1301902274000","name":"Del Reeves","type":"Person","_key":"32987"} +{"label":"John Damler","version":21,"id":"55699","lastModified":"1301901989000","name":"John Damler","type":"Person","_key":"32988"} +{"label":"Robert Adler","version":20,"id":"55700","lastModified":"1301902274000","name":"Robert Adler","type":"Person","_key":"32989"} +{"label":"Chubby Johnson","version":25,"id":"55701","lastModified":"1301901983000","name":"Chubby Johnson","type":"Person","_key":"32990"} +{"label":"Ayllene Gibbons","version":19,"id":"55702","lastModified":"1301901850000","name":"Ayllene Gibbons","type":"Person","_key":"32991"} +{"label":"Wallace Earl","version":17,"id":"55703","lastModified":"1301902296000","name":"Wallace Earl","type":"Person","_key":"32992"} +{"label":"Virgil Warner","version":19,"id":"55704","lastModified":"1301902097000","name":"Virgil Warner","type":"Person","_key":"32993"} +{"label":"Fashionistas","description":"No overview found.","id":"8694","runtime":280,"version":27,"lastModified":"1301904903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec2\/4d503c397b9aa1193e000ec2\/fashionistas-mid.jpg","genre":"Thriller","title":"Fashionistas","releaseDate":1034035200000,"language":"en","type":"Movie","_key":"32994"} +{"label":"John Stagliano","version":16,"id":"55679","lastModified":"1301902369000","name":"John Stagliano","type":"Person","_key":"32995"} +{"label":"Manuel Ferrara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23c\/4ca780c35e73d643ed00023c\/manuel-ferrara-profile.jpg","version":111,"birthday":"184028400000","id":"55680","birthplace":"Gagny, France","lastModified":"1301943049000","name":"Manuel Ferrara","type":"Person","_key":"32996"} +{"label":"Michelle Anne Sinclair","version":18,"id":"55681","lastModified":"1301904085000","name":"Michelle Anne Sinclair","type":"Person","_key":"32997"} +{"label":"Mark Ashley","version":19,"id":"55682","lastModified":"1301902015000","name":"Mark Ashley","type":"Person","_key":"32998"} +{"label":"Billy Glyde","version":28,"id":"55683","lastModified":"1301902220000","name":"Billy Glyde","type":"Person","_key":"32999"} +{"label":"Calendar Girls","description":"A Women's Institute chapter's fundraising effort for a local hospital by posing nude for a calendar becomes a media sensation. ","id":"8696","runtime":104,"imdbId":"tt0337909","homepage":"http:\/\/www.calendargirls.tv\/home.html","version":225,"lastModified":"1301902671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96e\/4bc92231017a3c57fe00d96e\/calendar-girls-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Calendar Girls","releaseDate":1062460800000,"language":"en","tagline":"Some ladies will do anything for a good cause.","type":"Movie","_key":"33000"} +{"label":"Annette Crosbie","version":24,"id":"55688","lastModified":"1301902274000","name":"Annette Crosbie","type":"Person","_key":"33001"} +{"label":"Philip Glenister","version":29,"id":"55689","lastModified":"1301902393000","name":"Philip Glenister","type":"Person","_key":"33002"} +{"label":"Who Am I?","description":"Martial-arts megastar Jackie Chan wrote, directed and stars in this action-comedy. Secret agent Jackie (Chan) leads a commando group to Africa to kidnap scientists who are working to unleash a powerful -- and lethal -- new energy source. When Jackie develops amnesia after a plane crash, he fights to regain his memory and continue his assignment. Who Am I is packed with excitement and, of course, Jackie's unique brand of gymnastic martial arts.","id":"8697","runtime":108,"imdbId":"tt0127357","version":109,"lastModified":"1301902128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/977\/4bc92231017a3c57fe00d977\/who-am-i-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Who Am I?","releaseDate":905472000000,"language":"en","tagline":"Fight now. Ask questions later.","type":"Movie","_key":"33003"} +{"label":"Michelle Ferre","version":24,"id":"55706","lastModified":"1301901456000","name":"Michelle Ferre","type":"Person","_key":"33004"} +{"label":"Mirai Yamamoto","version":24,"id":"55707","lastModified":"1301901995000","name":"Mirai Yamamoto","type":"Person","_key":"33005"} +{"label":"Ron Smerczak","version":33,"id":"55708","lastModified":"1301901816000","name":"Ron Smerczak","type":"Person","_key":"33006"} +{"label":"The League of Extraordinary Gentlemen","description":"In an alternate turn of the 20th century, an attack on the Bank of England by men who appear to be German soldiers followed by an attack on a German Zeppelin factory by the same men this time dressed as British soldiers, leads Europe to the brink of war. An emissary of the British government, arrives in Africa, hoping to recruit the legendary hunter Allan Quatermain to investigate the situation.","id":"8698","runtime":110,"imdbId":"tt0311429","trailer":"http:\/\/www.youtube.com\/watch?v=JADCxdroMz8","version":435,"lastModified":"1301901346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46f\/4d4609ce5e73d6108f00046f\/the-league-of-extraordinary-gentlemen-mid.jpg","studio":"International Production Company","genre":"Action","title":"The League of Extraordinary Gentlemen","releaseDate":1065052800000,"language":"en","tagline":"The power of seven become a league of one.","type":"Movie","_key":"33007"} +{"label":"Stuart Townsend","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd9\/4cf146835e73d61927000cd9\/stuart-townsend-profile.jpg","version":61,"id":"56778","lastModified":"1301901404000","name":"Stuart Townsend","type":"Person","_key":"33008"} +{"label":"Shane West","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d7\/4cf9f5fc5e73d6299c0024d7\/shane-west-profile.jpg","biography":"Shane West was born in Baton Rouge, Louisiana, the son of Leah Catherine (n\u00e9e Launey) and Don Snaith, both of whom were musicians. He has a younger sister, Simone, and a much younger half-sister, Marli Ann. His parents divorced and at the age of 10, West moved to California with his mother. He is of Cajun French descent through his mother. West has had regular roles in the television series ER as Dr. Ray Barnett and Once and Again as Eli Sammler and had a small appearance in the television serie","version":62,"birthday":"266281200000","id":"81295","birthplace":"Baton Rouge, Louisiana, USA","lastModified":"1301941876000","name":"Shane West","type":"Person","_key":"33009"} +{"label":"Anchorman: The Legend of Ron Burgundy","description":"It's the 1970's as San Diego anchorman Ron Burgundy is the top dog in network TV, which gives way to his freewheeling sexism with his fraternal-like crew. But all that's about to change (or be jeopardized) when ambitious reporter Veronica Corningstone has just arrived as a new employee at his TV station.","id":"8699","runtime":94,"imdbId":"tt0357413","trailer":"http:\/\/www.youtube.com\/watch?v=0AUvtLZQyDE","version":353,"lastModified":"1301901683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ad\/4c94ce027b9aa10d590000ad\/anchorman-the-legend-of-ron-burgundy-mid.jpg","studio":"DreamWorks","genre":"Comedy","title":"Anchorman: The Legend of Ron Burgundy","releaseDate":1089331200000,"language":"en","tagline":"They bring you the news so you don't have to get it yourself.","type":"Movie","_key":"33010"} +{"label":"Steel Chariots","description":"No overview found.","id":"8701","runtime":96,"imdbId":"tt0126078","version":44,"lastModified":"1301903726000","genre":"Drama","title":"Steel Chariots","releaseDate":874972800000,"language":"en","type":"Movie","_key":"33011"} +{"label":"Ben Browder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f0\/4bfa6df2017a3c70310003f0\/ben-browder-profile.jpg","version":37,"id":"26048","lastModified":"1301901351000","name":"Ben Browder","type":"Person","_key":"33012"} +{"label":"Scott Gurney","version":22,"id":"55714","lastModified":"1301901832000","name":"Scott Gurney","type":"Person","_key":"33013"} +{"label":"John Beck","version":32,"id":"41269","lastModified":"1301901316000","name":"John Beck","type":"Person","_key":"33014"} +{"label":"Kathleen Nolan","version":20,"id":"55724","lastModified":"1301901856000","name":"Kathleen Nolan","type":"Person","_key":"33015"} +{"label":"Randy Travis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/229\/4ca4ac3b7b9aa16eda000229\/randy-travis-profile.jpg","version":30,"id":"55725","lastModified":"1301901689000","name":"Randy Travis","type":"Person","_key":"33016"} +{"label":"Three Wishes for Cinderella","description":"The film stars Libuse Safrankova as the title character, a young woman who is put upon by her stepmother and stepsisters. The film employs a twist, though, when a handsome prince comes knocking. Cinderella does not simply fall into the prince's arms. In this version, he must actively pursue the young woman who is a skilled sharpshooter prone to wearing hunting outfits. Cinderella also has three wishes at her disposal, gained from three magic nuts.","id":"8703","runtime":82,"imdbId":"tt0070832","version":337,"lastModified":"1301903586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/674\/4ccd1dc07b9aa16b9d000674\/tri-orisky-pro-popelku-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Three Wishes for Cinderella","releaseDate":120960000000,"language":"en","type":"Movie","_key":"33017"} +{"label":"V\u00e1clav Vorl\u00ed\u010dek","version":29,"id":"55728","lastModified":"1301902030000","name":"V\u00e1clav Vorl\u00ed\u010dek","type":"Person","_key":"33018"} +{"label":"Pavel Tr\u00e1vn\u00ed\u010dek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fc\/4ccd28267b9aa16b9b0006fc\/pavel-travnicek-profile.jpg","version":25,"id":"55729","lastModified":"1301901281000","name":"Pavel Tr\u00e1vn\u00ed\u010dek","type":"Person","_key":"33019"} +{"label":"Karin Lesch","version":24,"id":"55731","lastModified":"1301901924000","name":"Karin Lesch","type":"Person","_key":"33020"} +{"label":"Dana Hlav\u00e1\u010dov\u00e1","version":22,"id":"55730","lastModified":"1301902013000","name":"Dana Hlav\u00e1\u010dov\u00e1","type":"Person","_key":"33021"} +{"label":"Vladim\u00edr Men\u0161\u00edk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/686\/4ccd29197b9aa16ba0000686\/vladimir-mensik-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200b\"Humor je v\u00e1\u017en\u00e1 v\u011bc. Jak\u00e1koliv tvo\u0159iv\u00e1 pr\u00e1ce se neobejde bez vnit\u0159n\u00ed pohody tv\u016frce. Radost a utrpen\u00ed je mo\u017en\u00e9 v um\u011bn\u00ed z\u00faro\u010dit jenom tehdy, kdy\u017e je do hloubky za\u017eit\u00e9. Jsou sice v \u017eivot\u011b \u010dlov\u011bka ud\u00e1losti a situace nad jeho s\u00edly, ale \u010dast\u011bji n\u00e1s tr\u00e1p\u00ed a rozdrobuj\u00ed rozli\u010dn\u00e9 malichernosti, kter\u00fdm p\u0159ipisujeme v\u011bt\u0161\u00ed v\u00fdznam, ne\u017e ve skute\u010dnosti maj\u00ed. Schopnost uchovat si vnit\u0159n\u00ed pohodu spo\u010d\u00edv\u00e1 v tom, naj\u00edt v\u011bcem prav\u00e9 m\u00edsto","version":40,"birthday":"-1269565200000","id":"55732","birthplace":"Ivan\u010dice","lastModified":"1302021029000","name":"Vladim\u00edr Men\u0161\u00edk","type":"Person","_key":"33022"} +{"label":"Jan Lib\u00ed\u010dek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be3\/4cfb91485e73d6299e002be3\/jan-libicek-profile.jpg","biography":"<P>\u200b\u010cesk\u00fd komik s tv\u00e1\u0159\u00ed dobrosrde\u010dn\u00e9ho herce a podobnosti dodnes velmi zn\u00e1m\u00e9ho a slavn\u011bj\u0161\u00ed kolegy z bran\u017ee americk\u00e9ho komika a herce Hardyho. Narodil se v Han\u00e9 ve Zl\u00edn\u011b 28. 9. 1931, zde se tak\u00e9 vyu\u010dil z\u00e1me\u010dn\u00edkem. Vrozen\u00e9 vlohy k herectv\u00ed za\u010dal realizovat ji\u017e b\u011bhem doby u\u010den\u00ed. Po absolvov\u00e1n\u00ed u\u010d\u0148ovsk\u00e9 \u0161koly pracoval cca jeden rok v Ostravsk\u00e9m stroj\u00edrensk\u00e9m podniku. Pot\u00e9 ode\u0161el do Prahy, kde si doplnil vzd\u011bl\u00e1n\u00ed a ud\u011blal maturitu na ve\u010dern\u00ed \u0161kole.<\/P>\r\n<P>Na z\u00e1klad\u011b po\u017eadovan\u00e9ho vzd\u011bl\u00e1n\u00ed, si mohl po","version":28,"birthday":"-1207443600000","id":"77375","birthplace":"Zl\u00edn","lastModified":"1301901237000","name":"Jan Lib\u00ed\u010dek","type":"Person","_key":"33023"} +{"label":"V\u00edt\u011bzslav Jand\u00e1k","version":21,"id":"77376","lastModified":"1301901759000","name":"V\u00edt\u011bzslav Jand\u00e1k","type":"Person","_key":"33024"} +{"label":"Jaroslav Drbohlav","version":22,"id":"77377","lastModified":"1301902121000","name":"Jaroslav Drbohlav","type":"Person","_key":"33025"} +{"label":"M\u00edla Mysl\u00edkov\u00e1","version":23,"id":"77378","lastModified":"1301902141000","name":"M\u00edla Mysl\u00edkov\u00e1","type":"Person","_key":"33026"} +{"label":"Ji\u0159\u00ed R\u016f\u017ei\u010dka","version":21,"id":"77379","lastModified":"1301902121000","name":"Ji\u0159\u00ed R\u016f\u017ei\u010dka","type":"Person","_key":"33027"} +{"label":"Jan S\u016fs","version":21,"id":"77380","lastModified":"1301902121000","name":"Jan S\u016fs","type":"Person","_key":"33028"} +{"label":"Milo\u0161 Vavru\u0161ka","version":21,"id":"77381","lastModified":"1301901759000","name":"Milo\u0161 Vavru\u0161ka","type":"Person","_key":"33029"} +{"label":"Holger Eckert","version":22,"id":"77382","lastModified":"1301902121000","name":"Holger Eckert","type":"Person","_key":"33030"} +{"label":"Ji\u0159\u00ed Krytin\u00e1\u0159","version":21,"id":"77383","lastModified":"1301901759000","name":"Ji\u0159\u00ed Krytin\u00e1\u0159","type":"Person","_key":"33031"} +{"label":"Helena R\u016f\u017ei\u010dkov\u00e1","version":22,"id":"77384","lastModified":"1301901631000","name":"Helena R\u016f\u017ei\u010dkov\u00e1","type":"Person","_key":"33032"} +{"label":"Ostara K\u00f6rner","version":24,"id":"77385","lastModified":"1301901759000","name":"Ostara K\u00f6rner","type":"Person","_key":"33033"} +{"label":"Erika Stiska","version":22,"id":"77386","lastModified":"1301901759000","name":"Erika Stiska","type":"Person","_key":"33034"} +{"label":"How to Drown Dr. Mracek, the Lawyer","description":"No overview found.","id":"8704","runtime":120,"imdbId":"tt0071687","version":58,"lastModified":"1301908168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/964\/4ca30b945e73d67b5f000964\/jak-utopit-doktora-mracka-aneb-konec-vodniku-v-cechach-mid.jpg","title":"How to Drown Dr. Mracek, the Lawyer","releaseDate":143683200000,"language":"en","type":"Movie","_key":"33035"} +{"label":"Jarom\u00edr Hanzl\u00edk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34a\/4ca301025e73d6142900034a\/jaromir-hanzlik-profile.jpg","version":37,"id":"55733","lastModified":"1301901380000","name":"Jarom\u00edr Hanzl\u00edk","type":"Person","_key":"33036"} +{"label":"Franti\u0161ek Filipovsk\u00fd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d3\/4cdd02697b9aa137ff0001d3\/frantisek-filipovsky-profile.jpg","biography":"<P>\u200bVynikaj\u00edc\u00ed dab\u00e9r a herec Franti\u0161ek Filipovsk\u00fd se narodil 23. z\u00e1\u0159\u00ed 1907 v P\u0159elou\u010di do rodiny fl\u00e9tnisty orchestru Prozat\u00edmn\u00edho divadla, skladatele a kapeln\u00edka Franti\u0161ka Filipovsk\u00e9ho st. Po otci zd\u011bdil um\u011bleck\u00e9 nad\u00e1n\u00ed, u\u017e od d\u011btstv\u00ed hr\u00e1l na r\u016fzn\u00e9 hudebn\u00ed n\u00e1stroje a v kostele zp\u00edval na k\u016fru. V Chrudimi vystudoval kurz p\u0159i obchodn\u00ed akademii. P\u0159i tom p\u016fsobil ve studentsk\u00fdch p\u0159edstaven\u00ed a o pr\u00e1zdnin\u00e1ch u venkovsk\u00fdch spole\u010dnost\u00ed. Ode\u0161el do Prahy na filozofickou fakultu Univerzity Karlovy, kde studov","version":33,"birthday":"-1965258000000","id":"55734","birthplace":"P\u0159elou\u010d","lastModified":"1302021029000","name":"Franti\u0161ek Filipovsk\u00fd","type":"Person","_key":"33037"} +{"label":"Romance pro k\u0159\u00eddlovku","description":"No overview found.","id":"8705","runtime":86,"imdbId":"tt0060910","version":37,"lastModified":"1301906740000","genre":"Drama","title":"Romance pro k\u0159\u00eddlovku","releaseDate":-89424000000,"language":"en","type":"Movie","_key":"33038"} +{"label":"Otakar V\u00e1vra","version":24,"id":"55735","lastModified":"1301902153000","name":"Otakar V\u00e1vra","type":"Person","_key":"33039"} +{"label":"Zuzana Cig\u00e1nov\u00e1","version":21,"id":"55737","lastModified":"1301902180000","name":"Zuzana Cig\u00e1nov\u00e1","type":"Person","_key":"33040"} +{"label":"Stefan Kvietik","version":20,"id":"55738","lastModified":"1301902179000","name":"Stefan Kvietik","type":"Person","_key":"33041"} +{"label":"Miriam Kantorkov\u00e1","version":23,"id":"55739","lastModified":"1301901714000","name":"Miriam Kantorkov\u00e1","type":"Person","_key":"33042"} +{"label":"Dikkenek","description":"JC et Stef sont des amis d'enfance. Ins\u00e9parables.JC est LE dikkenek belge, un donneur de le\u00e7on \u00e0 cinq balles, un moralisateur, un tombeur de minettes, bref une grande gueule int\u00e9grale, coiff\u00e9 comme un peigne.Stef est tout le contraire. Il cherche le Grand Amour, mais vu qu'il ne bouge pas de son lit, il va avoir du mal \u00e0 trouver.JC lui explique donc la m\u00e9thode : faire un sans-faute du point A jusqu'au point G.Entre ces deux points, JC et Stef vont croiser : Claudy, le directeur des abattoirs d'A","id":"8736","runtime":84,"imdbId":"tt0456123","homepage":"http:\/\/www.dikkenek.com\/","version":110,"lastModified":"1301905546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d2\/4bc92241017a3c57fe00d9d2\/dikkenek-mid.jpg","studio":"Avalanche Productions","genre":"Comedy","title":"Dikkenek","releaseDate":1150848000000,"language":"en","type":"Movie","_key":"33043"} +{"label":"Olivier Van Hoofstadt","version":27,"id":"56225","lastModified":"1301901775000","name":"Olivier Van Hoofstadt","type":"Person","_key":"33044"} +{"label":"Florence Foresti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf9\/4d18b8ff7b9aa1147a003bf9\/florence-foresti-profile.jpg","version":39,"id":"56226","lastModified":"1301901190000","name":"Florence Foresti","type":"Person","_key":"33045"} +{"label":"Cast a Giant Shadow","description":"No overview found.","id":"8737","runtime":146,"imdbId":"tt0060218","version":184,"lastModified":"1301905641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e1\/4bc92242017a3c57fe00d9e1\/cast-a-giant-shadow-mid.jpg","studio":"Batjac Productions","genre":"Action","title":"Cast a Giant Shadow","releaseDate":-118627200000,"language":"en","type":"Movie","_key":"33046"} +{"label":"Stathis Giallelis","version":21,"id":"55820","lastModified":"1301902368000","name":"Stathis Giallelis","type":"Person","_key":"33047"} +{"label":"Luther Adler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fb\/4bd8467f017a3c1c090000fb\/luther-adler-profile.jpg","version":32,"id":"55821","lastModified":"1301901982000","name":"Luther Adler","type":"Person","_key":"33048"} +{"label":"The Final Countdown","description":"In 1980, the US Navy's most powerful warship, the USS Nimitz, is caught in a storm during routine manoeuvres in the Pacific. Enveloped by a strange green light, the ship passes through a vortex and when they emerge, their communications have been cut off. The ship's Captain (Kirk Douglas) sends out a patrol and the F-14 pilots are shocked to encounter vintage Japanese warplanes.","id":"8738","runtime":103,"imdbId":"tt0080736","version":486,"lastModified":"1301980277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/656\/4d9a461b5e73d63d9f000656\/the-final-countdown-mid.jpg","genre":"Action","title":"The Final Countdown","releaseDate":331948800000,"language":"en","type":"Movie","_key":"33049"} +{"label":"Ron O'Neal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/83c\/4d8a7cc27b9aa13ae700083c\/ron-o-neal-profile.jpg","version":28,"id":"55841","lastModified":"1301948776000","name":"Ron O'Neal","type":"Person","_key":"33050"} +{"label":"Victor Mohica","version":23,"id":"55842","lastModified":"1301948777000","name":"Victor Mohica","type":"Person","_key":"33051"} +{"label":"James Coleman","version":20,"id":"55843","lastModified":"1301948777000","name":"James Coleman","type":"Person","_key":"33052"} +{"label":"Noch ein Wort und ich heirate dich!","description":"Die 16j\u00e4hrigen Zwillinge Luisa und Lukas erfahren durch Zufall, dass ihre Mutter Katrin sie durch eine Samenspende bekommen hatte. Katrin mu\u00df den Erzeuger suchen und findet ihn auch. Das hat Folgen...","id":"8739","runtime":90,"imdbId":"tt0880574","version":35,"lastModified":"1301904267000","studio":"Janus Films","genre":"Comedy","title":"Noch ein Wort und ich heirate dich!","releaseDate":1176163200000,"language":"en","type":"Movie","_key":"33053"} +{"label":"Wilhelm Engelhardt","version":20,"id":"55846","lastModified":"1301902197000","name":"Wilhelm Engelhardt","type":"Person","_key":"33054"} +{"label":"Katharina Ursinus","version":20,"id":"55847","lastModified":"1301901446000","name":"Katharina Ursinus","type":"Person","_key":"33055"} +{"label":"The Vanishing","description":"Rex and Saskia, a young couple in love, are on vacation. They stop at a busy service station and Saskia is abducted. After three years and no sign of Saskia, Rex begins receiving letters from the abductor.","id":"8740","runtime":107,"imdbId":"tt0096163","trailer":"http:\/\/www.youtube.com\/watch?v=KlO2oIieI44","version":153,"lastModified":"1301904444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a03\/4bc92247017a3c57fe00da03\/spoorloos-mid.jpg","studio":"Argos Films S.A.","genre":"Horror","title":"The Vanishing","releaseDate":593913600000,"language":"en","type":"Movie","_key":"33056"} +{"label":"Gene Bervoets","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bf\/4ca1f7ab7b9aa168e00000bf\/gene-bervoets-profile.jpg","version":25,"id":"55850","lastModified":"1301901381000","name":"Gene Bervoets","type":"Person","_key":"33057"} +{"label":"Johanna ter Steege","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4ca1f7127b9aa168d00000b5\/johanna-ter-steege-profile.jpg","version":26,"id":"55851","lastModified":"1301901431000","name":"Johanna ter Steege","type":"Person","_key":"33058"} +{"label":"Gwen Eckhaus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d4\/4ca1f7ff7b9aa1578a0005d4\/gwen-eckhaus-profile.jpg","version":21,"id":"55852","lastModified":"1301901494000","name":"Gwen Eckhaus","type":"Person","_key":"33059"} +{"label":"Bernadette Le Sach\u00e9","version":17,"id":"55853","lastModified":"1301903111000","name":"Bernadette Le Sach\u00e9","type":"Person","_key":"33060"} +{"label":"Tania Latarjet","version":20,"id":"55854","lastModified":"1301902097000","name":"Tania Latarjet","type":"Person","_key":"33061"} +{"label":"Lucille Glenn","version":20,"id":"55855","lastModified":"1301902097000","name":"Lucille Glenn","type":"Person","_key":"33062"} +{"label":"Roger Souza","version":20,"id":"55856","lastModified":"1301902097000","name":"Roger Souza","type":"Person","_key":"33063"} +{"label":"Caroline App\u00e9r\u00e9","version":18,"id":"55857","lastModified":"1301902110000","name":"Caroline App\u00e9r\u00e9","type":"Person","_key":"33064"} +{"label":"Didier Rousset","version":20,"id":"55858","lastModified":"1301902097000","name":"Didier Rousset","type":"Person","_key":"33065"} +{"label":"The Thin Red Line","description":"In World War II, the outcome of the battle of Guadalcanal will strongly influence the Japanese's advance into the pacific. A group of young soldiers is brought in as a relief for the battle-weary Marine units. The exhausting fight for a key-positioned airfield that allows control over a 1000-mile radius puts the men of the Army Rifle company C-for-Charlie through hell.","id":"8741","runtime":170,"imdbId":"tt0120863","trailer":"http:\/\/www.youtube.com\/watch?v=kbKhi3iYvms","version":237,"lastModified":"1301901751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a15\/4bc92248017a3c57fe00da15\/the-thin-red-line-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"The Thin Red Line","releaseDate":914371200000,"language":"en","tagline":"Every man fights his own war.","type":"Movie","_key":"33066"} +{"label":"Kirk Acevedo","version":31,"id":"55861","lastModified":"1301902199000","name":"Kirk Acevedo","type":"Person","_key":"33067"} +{"label":"Simon Billig","version":26,"id":"55863","lastModified":"1301902097000","name":"Simon Billig","type":"Person","_key":"33068"} +{"label":"Norman Patrick Brown","version":26,"id":"55864","lastModified":"1301902097000","name":"Norman Patrick Brown","type":"Person","_key":"33069"} +{"label":"Jarrod Dean","version":26,"id":"55865","lastModified":"1301901883000","name":"Jarrod Dean","type":"Person","_key":"33070"} +{"label":"Paul Gleeson","version":26,"id":"55866","lastModified":"1301902097000","name":"Paul Gleeson","type":"Person","_key":"33071"} +{"label":"David Harrod","version":26,"id":"55867","lastModified":"1301902097000","name":"David Harrod","type":"Person","_key":"33072"} +{"label":"Benjamin Green","version":26,"id":"55862","lastModified":"1301902097000","name":"Benjamin Green","type":"Person","_key":"33073"} +{"label":"Arie Verveen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/641\/4cb735807b9aa138d8000641\/arie-verveen-profile.jpg","version":26,"id":"91612","lastModified":"1301902772000","name":"Arie Verveen","type":"Person","_key":"33074"} +{"label":"R\u00e5narna","description":"No overview found.","id":"8743","runtime":100,"imdbId":"tt0353962","version":40,"lastModified":"1301905004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1f\/4bc9224b017a3c57fe00da1f\/ranarna-mid.jpg","studio":"Lefwander Kapitalf\u00f6rvaltning AB","genre":"Action","title":"R\u00e5narna","releaseDate":1063411200000,"language":"en","type":"Movie","_key":"33075"} +{"label":"Peter Lindmark","version":29,"id":"55884","lastModified":"1301901565000","name":"Peter Lindmark","type":"Person","_key":"33076"} +{"label":"Sofia Helin","version":37,"id":"55885","lastModified":"1301901215000","name":"Sofia Helin","type":"Person","_key":"33077"} +{"label":"Stefan Sauk","version":33,"id":"55886","lastModified":"1301901232000","name":"Stefan Sauk","type":"Person","_key":"33078"} +{"label":"Stina Ekblad","version":35,"id":"55887","lastModified":"1301901974000","name":"Stina Ekblad","type":"Person","_key":"33079"} +{"label":"Albino Alligator","description":"Three petty thieves who the police believe to be major criminals are chased into a basement bar where they take five hostages including all the bar employees. The rest of the movie deals with the cops lurking outside the bar while the trio try to get hold of the situation inside.","id":"8744","runtime":97,"imdbId":"tt0115495","version":111,"lastModified":"1301906643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/130\/4bd887eb017a3c1bfc000130\/albino-alligator-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Albino Alligator","releaseDate":853459200000,"language":"en","type":"Movie","_key":"33080"} +{"label":"It Happened at the World's Fair","description":"Mike and Danny fly a cropduster, but because of Danny's gambling debts, a local sheriff takes custody of it. Trying to earn money, they hitch-hike to the World's Fair in Seattle. While Danny tries to earn money playing poker, Mike takes care of a small girl, Sue-Lin, whose father has disappeared. Being a ladies' man, he also finds the time to court a young nurse, Diane. ","id":"8745","runtime":105,"imdbId":"tt0057191","version":120,"lastModified":"1301904149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a28\/4bc9224c017a3c57fe00da28\/it-happened-at-the-world-s-fair-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"It Happened at the World's Fair","releaseDate":-212976000000,"language":"en","type":"Movie","_key":"33081"} +{"label":"Joan O'Brien","version":23,"id":"55890","lastModified":"1301901565000","name":"Joan O'Brien","type":"Person","_key":"33082"} +{"label":"Vicky Tiu","version":21,"id":"55891","lastModified":"1301902009000","name":"Vicky Tiu","type":"Person","_key":"33083"} +{"label":"Guy Raymond","version":21,"id":"55892","lastModified":"1301902204000","name":"Guy Raymond","type":"Person","_key":"33084"} +{"label":"Dorothy Green","version":22,"id":"55893","lastModified":"1301902196000","name":"Dorothy Green","type":"Person","_key":"33085"} +{"label":"Kam Tong","version":21,"id":"55894","lastModified":"1301902153000","name":"Kam Tong","type":"Person","_key":"33086"} +{"label":"Yvonne Craig","version":24,"id":"16102","lastModified":"1301901786000","name":"Yvonne Craig","type":"Person","_key":"33087"} +{"label":"The Black Balloon","description":"All Thomas wants is a normal adolescence but his autistic brother, Charlie, thwarts his every opportunity. Will Thomas, with the help of his girlfriend, Jackie, accept his brother?","id":"8747","runtime":97,"imdbId":"tt0865297","trailer":"http:\/\/www.youtube.com\/watch?v=IiyAfaXmbrk","version":268,"lastModified":"1301903502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3e\/4bc9224d017a3c57fe00da3e\/the-black-balloon-mid.jpg","studio":"Black Balloon Productions","genre":"Drama","title":"The Black Balloon","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"33088"} +{"label":"Elissa Down","version":21,"id":"55898","lastModified":"1301902028000","name":"Elissa Down","type":"Person","_key":"33089"} +{"label":"Rhys Wakefield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b2d\/4d07e65a7b9aa11bc0003b2d\/rhys-wakefield-profile.jpg","version":26,"id":"55899","lastModified":"1301901373000","name":"Rhys Wakefield","type":"Person","_key":"33090"} +{"label":"Lisa Kowalski","version":20,"id":"55902","lastModified":"1301902180000","name":"Lisa Kowalski","type":"Person","_key":"33091"} +{"label":"Nathin Butler","version":20,"id":"55903","lastModified":"1301902180000","name":"Nathin Butler","type":"Person","_key":"33092"} +{"label":"Eagle vs. Shark","description":"The tale of two socially awkward misfits and the strange ways they try to find love; through revenge on high-school bullies, burgers, and video games.","id":"8748","runtime":93,"imdbId":"tt0494222","version":193,"lastModified":"1302038904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/512\/4c61de717b9aa172da000512\/eagle-vs-shark-mid.jpg","studio":"New Zealand Film Commission","genre":"Comedy","title":"Eagle vs. Shark","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"33093"} +{"label":"Taika Waititi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c17\/4cf3f2f95e73d62383000c17\/taika-waititi-profile.jpg","version":33,"id":"55934","lastModified":"1301901373000","name":"Taika Waititi","type":"Person","_key":"33094"} +{"label":"Loren Horsley","version":22,"id":"55935","lastModified":"1301901702000","name":"Loren Horsley","type":"Person","_key":"33095"} +{"label":"Jemaine Clement","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16e\/4c1fa4575e73d60cbe00016e\/jemaine-clement-profile.jpg","version":60,"birthday":"127004400000","id":"55936","birthplace":"New Zealand","lastModified":"1301901101000","name":"Jemaine Clement","type":"Person","_key":"33096"} +{"label":"David Fane","version":23,"id":"55937","lastModified":"1301902149000","name":"David Fane","type":"Person","_key":"33097"} +{"label":"Hamlet Goes Business","description":"A bizarre black-and-white film noir reworking of Shakespeare's 'Hamlet'.","id":"8749","runtime":86,"imdbId":"tt0093139","version":74,"lastModified":"1301905279000","studio":"Villealfa Filmproduction Oy","genre":"Comedy","title":"Hamlet Goes Business","releaseDate":556502400000,"language":"en","type":"Movie","_key":"33098"} +{"label":"Esko Salminen","version":25,"id":"56273","lastModified":"1301902387000","name":"Esko Salminen","type":"Person","_key":"33099"} +{"label":"Puntti Valtonen","version":23,"id":"56274","lastModified":"1301902097000","name":"Puntti Valtonen","type":"Person","_key":"33100"} +{"label":"Pirkka-Pekka Petelius","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/056\/4c499cde7b9aa115ff000056\/pirkka-pekka-petelius-profile.jpg","version":28,"id":"125799","lastModified":"1301902169000","name":"Pirkka-Pekka Petelius","type":"Person","_key":"33101"} +{"label":"Top Secret!","description":"Parody of WWII spy movies in which an American rock and roll singer becomes involved in a Resistance plot to rescue a scientist imprisoned in East Germany.","id":"8764","runtime":90,"imdbId":"tt0088286","trailer":"http:\/\/www.youtube.com\/watch?v=y-YHw1sqjL8","version":133,"lastModified":"1301902373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6c\/4bc92254017a3c57fe00da6c\/top-secret-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Top Secret!","releaseDate":455500800000,"language":"en","type":"Movie","_key":"33102"} +{"label":"Lucy Gutteridge","version":19,"id":"55907","lastModified":"1301901476000","name":"Lucy Gutteridge","type":"Person","_key":"33103"} +{"label":"Harry Ditson","version":19,"id":"55908","lastModified":"1301901615000","name":"Harry Ditson","type":"Person","_key":"33104"} +{"label":"Eddie Tagoe","version":19,"id":"55909","lastModified":"1301901615000","name":"Eddie Tagoe","type":"Person","_key":"33105"} +{"label":"Tristram Jellinek","version":22,"id":"55910","lastModified":"1301901606000","name":"Tristram Jellinek","type":"Person","_key":"33106"} +{"label":"Billy J. Mitchell","version":19,"id":"55911","lastModified":"1301901731000","name":"Billy J. Mitchell","type":"Person","_key":"33107"} +{"label":"Nirvana","description":"Jimi, a computer game designer, finds that his latest product has been infected by a virus which has given consciousness to the main character of the game, Solo. Tormented by the memory of his fled girlfriend Lisa and begged by Solo to end its useless \"life\", Jimi begins a search for people who can help him both to discover what happened to Lisa and to delete his game before it is released.","id":"8765","runtime":113,"imdbId":"tt0119794","version":133,"lastModified":"1301905666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4bc92255017a3c57fe00da7a\/nirvana-mid.jpg","studio":"Davis-Films","genre":"Fantasy","title":"Nirvana","releaseDate":854064000000,"language":"en","type":"Movie","_key":"33108"} +{"label":"Diego Abatantuono","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b5\/4bfa88e1017a3c702a0003b5\/diego-abatantuono-profile.jpg","biography":"Diego Abatantuono \u00e8 un attore, comico, sceneggiatore, e conduttore televisivo italiano.","version":60,"birthday":"-461379600000","id":"55912","birthplace":"Milano, Italy","lastModified":"1301902056000","name":"Diego Abatantuono","type":"Person","_key":"33109"} +{"label":"Amanda Sandrelli","version":25,"id":"55913","lastModified":"1301902180000","name":"Amanda Sandrelli","type":"Person","_key":"33110"} +{"label":"Claudio Bisio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d50\/4d4e64797b9aa13aaf009d50\/claudio-bisio-profile.jpg","version":45,"id":"55914","lastModified":"1301901651000","name":"Claudio Bisio","type":"Person","_key":"33111"} +{"label":"Gigio Alberti","version":33,"id":"55915","lastModified":"1301901715000","name":"Gigio Alberti","type":"Person","_key":"33112"} +{"label":"Gabriele Salvatores","version":44,"id":"55916","lastModified":"1301901707000","name":"Gabriele Salvatores","type":"Person","_key":"33113"} +{"label":"Hellraiser: Bloodline","description":"In the 22nd century, a scientist attempts to right the wrong his ancestor created: the puzzle box that opens the gates of Hell and unleashes Pinhead and his Cenobite legions","id":"8766","runtime":86,"imdbId":"tt0116514","version":148,"lastModified":"1301902013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a83\/4bc92256017a3c57fe00da83\/hellraiser-bloodline-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Hellraiser: Bloodline","releaseDate":826243200000,"language":"en","type":"Movie","_key":"33114"} +{"label":"Alan Smithee","version":27,"id":"55948","lastModified":"1301901516000","name":"Alan Smithee","type":"Person","_key":"33115"} +{"label":"Charlotte Chatton","version":21,"id":"55957","lastModified":"1301901999000","name":"Charlotte Chatton","type":"Person","_key":"33116"} +{"label":"Mickey Cottrell","version":21,"id":"55959","lastModified":"1301902303000","name":"Mickey Cottrell","type":"Person","_key":"33117"} +{"label":"Louis Turenne","version":20,"id":"55960","lastModified":"1301902303000","name":"Louis Turenne","type":"Person","_key":"33118"} +{"label":"Courtland Mead","version":25,"id":"55961","lastModified":"1301902303000","name":"Courtland Mead","type":"Person","_key":"33119"} +{"label":"Louis Mustillo","version":21,"id":"55962","lastModified":"1301902303000","name":"Louis Mustillo","type":"Person","_key":"33120"} +{"label":"Jody St. Michael","version":20,"id":"55963","lastModified":"1301902304000","name":"Jody St. Michael","type":"Person","_key":"33121"} +{"label":"Christine Harnos","version":21,"id":"55964","lastModified":"1301902382000","name":"Christine Harnos","type":"Person","_key":"33122"} +{"label":"Wren T. Brown","version":20,"id":"55965","lastModified":"1301902303000","name":"Wren T. Brown","type":"Person","_key":"33123"} +{"label":"Doug Bradley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/891\/4d6a96ad7b9aa13629002891\/doug-bradley-profile.jpg","version":45,"id":"73040","lastModified":"1301901572000","name":"Doug Bradley","type":"Person","_key":"33124"} +{"label":"L'Animal","description":"Mike (Jean-Paul Belmondo) is a stuntman who works with his girlfriend Jane (Raquel Welch). On their wedding day Mike and Jane are forced by producers to do a stunt for a film they are working on. Mike, annoyed doesn't look on the road and crashes the car causing them to end up in a hospital. After they come out Jane doesn't want to talk to Mike so he decides to get her a job in a film in which he is a stunt double for his double who is a star in action pictures but is in fact a wimp.","id":"8767","runtime":100,"imdbId":"tt0075683","version":84,"lastModified":"1301903462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4d879a7e5e73d67518000028\/l-animal-mid.jpg","studio":"Cerito Films","genre":"Action","title":"L'Animal","releaseDate":244857600000,"language":"en","type":"Movie","_key":"33125"} +{"label":"Yves Mourousi","version":19,"id":"55919","lastModified":"1301902097000","name":"Yves Mourousi","type":"Person","_key":"33126"} +{"label":"Charles G\u00e9rard","version":27,"id":"55920","lastModified":"1301902320000","name":"Charles G\u00e9rard","type":"Person","_key":"33127"} +{"label":"La petite voleuse","description":"No overview found.","id":"8768","runtime":110,"imdbId":"tt0098087","version":77,"lastModified":"1301904015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4d867c5a5e73d6539b00555d\/la-petite-voleuse-mid.jpg","studio":"Les Films du Carrosse","genre":"Comedy","title":"La petite voleuse","releaseDate":598665600000,"language":"en","type":"Movie","_key":"33128"} +{"label":"Didier Bezace","version":25,"id":"55922","lastModified":"1301901713000","name":"Didier Bezace","type":"Person","_key":"33129"} +{"label":"Simon de La Brosse","version":25,"id":"55923","lastModified":"1301901514000","name":"Simon de La Brosse","type":"Person","_key":"33130"} +{"label":"Clotilde de Bayser","version":20,"id":"55924","lastModified":"1301901731000","name":"Clotilde de Bayser","type":"Person","_key":"33131"} +{"label":"Nathalie Cardone","version":21,"id":"55926","lastModified":"1301902274000","name":"Nathalie Cardone","type":"Person","_key":"33132"} +{"label":"Catherine Arditi","version":22,"id":"55927","lastModified":"1301902011000","name":"Catherine Arditi","type":"Person","_key":"33133"} +{"label":"Christine","description":"Geeky student Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.","id":"8769","runtime":110,"imdbId":"tt0085333","trailer":"http:\/\/www.youtube.com\/watch?v=aJ5M11m9vI0","version":165,"lastModified":"1301903286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a90\/4bc9225a017a3c57fe00da90\/christine-mid.jpg","genre":"Drama","title":"Christine","releaseDate":439776000000,"language":"en","tagline":"How do you kill something that can't possibly be alive?","type":"Movie","_key":"33134"} +{"label":"Christine Belford","version":24,"id":"41219","lastModified":"1301901687000","name":"Christine Belford","type":"Person","_key":"33135"} +{"label":"William Ostrander","version":23,"id":"55929","lastModified":"1301901833000","name":"William Ostrander","type":"Person","_key":"33136"} +{"label":"Steven Tash","version":22,"id":"55930","lastModified":"1301901687000","name":"Steven Tash","type":"Person","_key":"33137"} +{"label":"Stuart Charno","version":27,"id":"55931","lastModified":"1301902197000","name":"Stuart Charno","type":"Person","_key":"33138"} +{"label":"Marc Poppel","version":22,"id":"55932","lastModified":"1301901687000","name":"Marc Poppel","type":"Person","_key":"33139"} +{"label":"Robert Darnell","version":22,"id":"55933","lastModified":"1301901832000","name":"Robert Darnell","type":"Person","_key":"33140"} +{"label":"Uncounted","description":"No overview found.","id":"8770","runtime":81,"homepage":"http:\/\/uncountedthemovie.com\/","version":30,"lastModified":"1301907359000","genre":"Documentary","title":"Uncounted","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33141"} +{"label":"David Earnhardt","version":18,"id":"55942","lastModified":"1301901957000","name":"David Earnhardt","type":"Person","_key":"33142"} +{"label":"The Outpost","description":"A scientific experiment to create a super soldier goes wrong leaving Lance Henriksen stranded in a remote desert outpost.","id":"8771","runtime":94,"imdbId":"tt0114070","version":65,"lastModified":"1301907412000","studio":"The Kushner-Locke Company","genre":"Horror","title":"The Outpost","releaseDate":813110400000,"language":"en","tagline":"Live in horror. Die in fear.","type":"Movie","_key":"33143"} +{"label":"Joe Gayton","version":34,"id":"56281","lastModified":"1301901261000","name":"Joe Gayton","type":"Person","_key":"33144"} +{"label":"Le dernier jour","description":"A boy (Simon) travel visits his parents seaside home bringing with him a stranger he met on the train (Louise). His parents assume they are boyfriend and girlfriend, however, there are long-kept family secrets to be resolved...","id":"8772","runtime":105,"imdbId":"tt0402130","version":76,"lastModified":"1301904678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa6\/4bc9225d017a3c57fe00daa6\/le-dernier-jour-mid.jpg","studio":"G\u00e9mini Films","genre":"Drama","title":"Le dernier jour","releaseDate":1080950400000,"language":"en","type":"Movie","_key":"33145"} +{"label":"Rodolphe Marconi","version":24,"id":"55968","lastModified":"1301901883000","name":"Rodolphe Marconi","type":"Person","_key":"33146"} +{"label":"Bruno Todeschini","version":24,"id":"56285","lastModified":"1301902097000","name":"Bruno Todeschini","type":"Person","_key":"33147"} +{"label":"Thibault Vin\u00e7on","version":24,"id":"56286","lastModified":"1301901731000","name":"Thibault Vin\u00e7on","type":"Person","_key":"33148"} +{"label":"Daniel Berlioux","version":22,"id":"56287","lastModified":"1301901731000","name":"Daniel Berlioux","type":"Person","_key":"33149"} +{"label":"Alysson Paradis","version":27,"id":"56288","lastModified":"1301901406000","name":"Alysson Paradis","type":"Person","_key":"33150"} +{"label":"L'amour \u00e0 vingt ans","description":"No overview found.","id":"8773","imdbId":"tt0055747","version":33,"lastModified":"1301908525000","title":"L'amour \u00e0 vingt ans","language":"en","type":"Movie","_key":"33151"} +{"label":"Warsaw","description":"No overview found.","id":"8774","runtime":0,"version":115,"lastModified":"1301905712000","genre":"Drama","title":"Warsaw","releaseDate":-237600000000,"language":"en","type":"Movie","_key":"33152"} +{"label":"Isten hozta \u00f6rnagy \u00far","description":"No overview found.","id":"8776","runtime":106,"imdbId":"tt0064498","version":37,"lastModified":"1301906169000","studio":"MAFILM St\u00fadi\u00f3 1","genre":"Drama","title":"Isten hozta \u00f6rnagy \u00far","releaseDate":-2851200000,"language":"en","type":"Movie","_key":"33153"} +{"label":"Zolt\u00e1n F\u00e1bri","version":30,"id":"55969","lastModified":"1301901337000","name":"Zolt\u00e1n F\u00e1bri","type":"Person","_key":"33154"} +{"label":"Zolt\u00e1n Latinovits","version":20,"id":"56292","lastModified":"1301902109000","name":"Zolt\u00e1n Latinovits","type":"Person","_key":"33155"} +{"label":"Istv\u00e1n D\u00e9gi","version":20,"id":"56293","lastModified":"1301902339000","name":"Istv\u00e1n D\u00e9gi","type":"Person","_key":"33156"} +{"label":"Vera Venczel","version":20,"id":"56294","lastModified":"1301901859000","name":"Vera Venczel","type":"Person","_key":"33157"} +{"label":"Imre Sinkovits","version":21,"id":"56295","lastModified":"1301902339000","name":"Imre Sinkovits","type":"Person","_key":"33158"} +{"label":"M\u00e1rta F\u00f3nay","version":20,"id":"56296","lastModified":"1301902153000","name":"M\u00e1rta F\u00f3nay","type":"Person","_key":"33159"} +{"label":"Requiem","description":"No overview found.","id":"8777","runtime":103,"imdbId":"tt0082988","version":90,"lastModified":"1301905306000","studio":"MAFILM St\u00fadi\u00f3 1","genre":"Drama","title":"Requiem","releaseDate":347155200000,"language":"en","type":"Movie","_key":"33160"} +{"label":"Edit Frajt","version":20,"id":"56298","lastModified":"1301901957000","name":"Edit Frajt","type":"Person","_key":"33161"} +{"label":"Lajos Bal\u00e1zsovits","version":21,"id":"56299","lastModified":"1301901614000","name":"Lajos Bal\u00e1zsovits","type":"Person","_key":"33162"} +{"label":"L\u00e1szl\u00f3 G\u00e1lffi","version":20,"id":"56300","lastModified":"1301902153000","name":"L\u00e1szl\u00f3 G\u00e1lffi","type":"Person","_key":"33163"} +{"label":"Gy\u00f6rgy K\u00e1lm\u00e1n","version":21,"id":"56301","lastModified":"1301901786000","name":"Gy\u00f6rgy K\u00e1lm\u00e1n","type":"Person","_key":"33164"} +{"label":"L\u00e1szl\u00f3 Gy\u00f6rgy","version":20,"id":"56302","lastModified":"1301901957000","name":"L\u00e1szl\u00f3 Gy\u00f6rgy","type":"Person","_key":"33165"} +{"label":"Antal Konr\u00e1d","version":23,"id":"56303","lastModified":"1301901957000","name":"Antal Konr\u00e1d","type":"Person","_key":"33166"} +{"label":"N\u00e1rcisz \u00e9s Psych\u00e9","description":"No overview found.","id":"8778","runtime":302,"imdbId":"tt0081254","version":40,"lastModified":"1301906169000","studio":"Hunnia Filmgy\u00e1r","genre":"Drama","title":"N\u00e1rcisz \u00e9s Psych\u00e9","releaseDate":346291200000,"language":"en","type":"Movie","_key":"33167"} +{"label":"G\u00e1bor B\u00f3dy","version":21,"id":"27000","lastModified":"1301901565000","name":"G\u00e1bor B\u00f3dy","type":"Person","_key":"33168"} +{"label":"Patricia Adriani","version":20,"id":"56308","lastModified":"1301901786000","name":"Patricia Adriani","type":"Person","_key":"33169"} +{"label":"Agnes Horvath","version":20,"id":"56309","lastModified":"1301901565000","name":"Agnes Horvath","type":"Person","_key":"33170"} +{"label":"\u00c9va T\u00f3th","version":20,"id":"56310","lastModified":"1301902339000","name":"\u00c9va T\u00f3th","type":"Person","_key":"33171"} +{"label":"D\u00e9nes Ujlaky","version":20,"id":"56311","lastModified":"1301902339000","name":"D\u00e9nes Ujlaky","type":"Person","_key":"33172"} +{"label":"Cesta do prav\u011bku","description":"Most classical sci-fi from K. Zeman. Four young boys visit a dinosaur exhibit at the New York city Museum of Natural History. They then row out onto Central Park Lake where they find a secret cave and paddle into, and go back-in-time into a wondrous prehistoric world filled with the very dinosaurs they had just seen.","id":"8779","runtime":93,"imdbId":"tt0047930","version":101,"lastModified":"1301905578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46c\/4ca2cfe15e73d612f800046c\/cesta-do-praveku-mid.jpg","studio":"Studio d\u011btsk\u00e9ho filmu Gottwaldov","genre":"Animation","title":"Cesta do prav\u011bku","releaseDate":-91152000000,"language":"en","type":"Movie","_key":"33173"} +{"label":"Vladim\u00edr Bejval","version":22,"id":"56315","lastModified":"1301901651000","name":"Vladim\u00edr Bejval","type":"Person","_key":"33174"} +{"label":"Petr Herrmann","version":23,"id":"56317","lastModified":"1301901786000","name":"Petr Herrmann","type":"Person","_key":"33175"} +{"label":"Josef Luk\u00e1\u0161","version":22,"id":"56319","lastModified":"1301901786000","name":"Josef Luk\u00e1\u0161","type":"Person","_key":"33176"} +{"label":"Zden\u011bk Hust\u00e1k","version":22,"id":"56318","lastModified":"1301901651000","name":"Zden\u011bk Hust\u00e1k","type":"Person","_key":"33177"} +{"label":"Bed\u0159ich \u0160etena","version":16,"id":"139726","lastModified":"1301901608000","name":"Bed\u0159ich \u0160etena","type":"Person","_key":"33178"} +{"label":"Baby Mama","description":"Would you put your eggs...in this basket? A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.","id":"8780","runtime":96,"imdbId":"tt0871426","trailer":"http:\/\/www.youtube.com\/watch?v=stc7RUABPaU","homepage":"http:\/\/www.babymamamovie.net\/","version":372,"lastModified":"1301902443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34f\/4cb1d3a97b9aa1263f00034f\/baby-mama-mid.jpg","studio":"Broadway Video","genre":"Comedy","title":"Baby Mama","releaseDate":1208908800000,"language":"en","type":"Movie","_key":"33179"} +{"label":"Michael McCullers","version":30,"id":"14172","lastModified":"1301901356000","name":"Michael McCullers","type":"Person","_key":"33180"} +{"label":"Tina Fey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a4\/4bd2da17017a3c63f10003a4\/tina-fey-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">American comedian Tina Fey is most noted for her work on the NBC programs 30 Rock and Saturday Night Live. Tina got her start in comedy through a Chicago based improv group.  She then moved on to Saturday Night Live and eventually became a head writer and performer. Tina's most famous role on the show was her 2008 impersonation of  Republican Vice President candidate Sarah Palin.  Fey has also starred","version":49,"birthday":"11833200000","id":"56323","lastModified":"1301904055000","name":"Tina Fey","type":"Person","_key":"33181"} +{"label":"Amy Poehler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/137\/4cd5c3be7b9aa11b25000137\/amy-poehler-profile.jpg","version":53,"id":"56322","lastModified":"1301901125000","name":"Amy Poehler","type":"Person","_key":"33182"} +{"label":"Will Forte","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/192\/4c015b4f017a3c7036001192\/will-forte-profile.jpg","version":42,"birthday":"14425200000","id":"62831","birthplace":"Alameda County, California","lastModified":"1301901213000","name":"Will Forte","type":"Person","_key":"33183"} +{"label":"Fred Armisen","version":32,"id":"61110","lastModified":"1301901477000","name":"Fred Armisen","type":"Person","_key":"33184"} +{"label":"Tiny Town","description":"No overview found.","id":"8781","runtime":90,"version":177,"lastModified":"1301905336000","studio":"Aruna Films","genre":"Crime","title":"Tiny Town","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33185"} +{"label":"Anabelle Munro","version":16,"id":"55970","lastModified":"1301901995000","name":"Anabelle Munro","type":"Person","_key":"33186"} +{"label":"Julien Guyonnet","version":16,"id":"56329","lastModified":"1301902339000","name":"Julien Guyonnet","type":"Person","_key":"33187"} +{"label":"Alexei Akinfiev","version":16,"id":"56330","lastModified":"1301902153000","name":"Alexei Akinfiev","type":"Person","_key":"33188"} +{"label":"Harry Summers","version":16,"id":"56331","lastModified":"1301902153000","name":"Harry Summers","type":"Person","_key":"33189"} +{"label":"Marysia Kay","version":22,"id":"56332","lastModified":"1301902339000","name":"Marysia Kay","type":"Person","_key":"33190"} +{"label":"Mathi Alagan","version":16,"id":"56328","lastModified":"1301902379000","name":"Mathi Alagan","type":"Person","_key":"33191"} +{"label":"Feivel","description":"No overview found.","id":"8783","title":"Feivel","language":"en","lastModified":"1301906715000","version":15,"type":"Movie","_key":"33192"} +{"label":"Everything's Jake","description":"No overview found.","id":"8784","runtime":92,"imdbId":"tt0180683","homepage":"http:\/\/www.everythingsjakefilm.com\/main.html","version":95,"lastModified":"1301907436000","studio":"Quixotic Endeavors","genre":"Drama","title":"Everything's Jake","releaseDate":1190678400000,"language":"en","type":"Movie","_key":"33193"} +{"label":"Randi Pannell","version":20,"id":"56335","lastModified":"1301901683000","name":"Randi Pannell","type":"Person","_key":"33194"} +{"label":"Graeme Malcolm","version":21,"id":"56386","lastModified":"1301901957000","name":"Graeme Malcolm","type":"Person","_key":"33195"} +{"label":"Matthew Miele","version":20,"id":"56334","lastModified":"1301902180000","name":"Matthew Miele","type":"Person","_key":"33196"} +{"label":"The Saragossa Manuscript","description":"In the Napoleonic wars, an officer finds an old book that relates his grandfather's story, Alfons van Worden, captain in the Walloon guard. A man of honor and courage, he seeks the shortest route through the Sierra Morena. At an inn, the Venta Quemada, he sups with two Islamic princesses. They call him their cousin and seduce him; he wakes beside corpses under a gallows. He meets a hermit priest and a goatherd; each tells his story; he wakes again by the gallows. He's rescued from the Inquisitio","id":"8785","runtime":182,"imdbId":"tt0059643","homepage":"http:\/\/www.thesaragossamanuscript.info\/","version":88,"lastModified":"1301905996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1af\/4c9a7eab5e73d656150001af\/rekopis-znaleziony-w-saragossie-mid.jpg","studio":"Kamera Film Unit","genre":"Drama","title":"The Saragossa Manuscript","releaseDate":-154396800000,"language":"en","type":"Movie","_key":"33197"} +{"label":"Wojciech Has","version":27,"id":"27002","lastModified":"1301901606000","name":"Wojciech Has","type":"Person","_key":"33198"} +{"label":"Iga Cembrzynska","version":19,"id":"55979","lastModified":"1301901797000","name":"Iga Cembrzynska","type":"Person","_key":"33199"} +{"label":"Elzbieta Czyzewska","version":25,"id":"55980","lastModified":"1301902163000","name":"Elzbieta Czyzewska","type":"Person","_key":"33200"} +{"label":"Gustaw Holoubek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/070\/4c7de5085e73d648e1000070\/gustaw-holoubek-profile.jpg","version":23,"birthday":"-1473728400000","id":"55981","birthplace":"Krak\u00f3w, Poland","lastModified":"1301950698000","name":"Gustaw Holoubek","type":"Person","_key":"33201"} +{"label":"Jan Machulski","version":23,"id":"55971","lastModified":"1301902349000","name":"Jan Machulski","type":"Person","_key":"33202"} +{"label":"Beata Tyszkiewicz","version":21,"id":"55972","lastModified":"1301902180000","name":"Beata Tyszkiewicz","type":"Person","_key":"33203"} +{"label":"Wieslaw Golas","version":19,"id":"55973","lastModified":"1301902052000","name":"Wieslaw Golas","type":"Person","_key":"33204"} +{"label":"Freiwild - Ein W\u00fcrzburg-Krimi","description":"No overview found.","id":"8809","runtime":90,"imdbId":"tt1207664","version":47,"lastModified":"1301906624000","studio":"Bayerischer Rundfunk","genre":"Crime","title":"Freiwild - Ein W\u00fcrzburg-Krimi","releaseDate":1207958400000,"language":"en","type":"Movie","_key":"33205"} +{"label":"Tino Hillebrand","version":17,"id":"55989","lastModified":"1301902296000","name":"Tino Hillebrand","type":"Person","_key":"33206"} +{"label":"Janna Striebeck","version":19,"id":"55990","lastModified":"1301902274000","name":"Janna Striebeck","type":"Person","_key":"33207"} +{"label":"Reinhard Mahlberg","version":19,"id":"50378","lastModified":"1301902274000","name":"Reinhard Mahlberg","type":"Person","_key":"33208"} +{"label":"Mad Max 2: The Road Warrior","description":"Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.","id":"8810","runtime":91,"imdbId":"tt0082694","trailer":"http:\/\/www.youtube.com\/watch?v=EIH7w0jx8NE","version":184,"lastModified":"1301901193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad2\/4bc92263017a3c57fe00dad2\/mad-max-2-the-road-warrior-mid.jpg","studio":"Kennedy Miller Productions","genre":"Science Fiction","title":"Mad Max 2: The Road Warrior","releaseDate":378000000000,"language":"en","tagline":"When all that's left is one last chance, pray that he's still out there ... somewhere!","type":"Movie","_key":"33209"} +{"label":"Max Phipps","version":30,"birthday":"-950576400000","id":"121417","lastModified":"1301902388000","name":"Max Phipps","type":"Person","_key":"33210"} +{"label":"Macht","description":"No overview found.","id":"8813","runtime":95,"imdbId":"tt0156756","version":69,"lastModified":"1301907412000","studio":"Studio Hamburg Letterbox Filmproduktion","genre":"Thriller","title":"Macht","releaseDate":905644800000,"language":"en","type":"Movie","_key":"33211"} +{"label":"Louisa Herfert","version":20,"id":"51221","lastModified":"1301902339000","name":"Louisa Herfert","type":"Person","_key":"33212"} +{"label":"Miguel Alexandre","version":22,"id":"50325","lastModified":"1301901957000","name":"Miguel Alexandre","type":"Person","_key":"33213"} +{"label":"Doom","description":"Space Marines are sent to investigate strange events at a research facility on a distant planet but find themselves at the mercy of genetically enhanced killing machines.","id":"8814","runtime":100,"imdbId":"tt0419706","trailer":"http:\/\/www.youtube.com\/watch?v=sEFPRz4-HHY","version":245,"lastModified":"1301907553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae4\/4bc92265017a3c57fe00dae4\/doom-mid.jpg","studio":"John Wells Productions","genre":"Action","title":"Doom","releaseDate":1129766400000,"language":"en","type":"Movie","_key":"33214"} +{"label":"Mitt liv som hund","description":"A boy and his brother don't get along well. In order to let her ill mother rest, they're separated and sent each one with their relatives.","id":"8816","runtime":101,"imdbId":"tt0089606","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=2sn-zvvDWKM","version":95,"lastModified":"1301903832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc92267017a3c57fe00daf7\/mitt-liv-som-hund-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Drama","title":"Mitt liv som hund","releaseDate":503193600000,"language":"en","type":"Movie","_key":"33215"} +{"label":"Anton Glanzelius","version":20,"id":"56391","lastModified":"1301901883000","name":"Anton Glanzelius","type":"Person","_key":"33216"} +{"label":"Tomas von Br\u00f6mssen","version":28,"id":"56392","lastModified":"1301901700000","name":"Tomas von Br\u00f6mssen","type":"Person","_key":"33217"} +{"label":"Anki Lid\u00e9n","version":24,"id":"56393","lastModified":"1301902031000","name":"Anki Lid\u00e9n","type":"Person","_key":"33218"} +{"label":"Kicki Rundgren","version":20,"id":"56394","lastModified":"1301901615000","name":"Kicki Rundgren","type":"Person","_key":"33219"} +{"label":"Evita","description":"The hit musical based on the life of Evita Duarte, a B-movie Argentinian actress who eventually became the wife of Argentinian president and dictator Juan Per\u00f3n, and the most beloved and hated woman in Argentina.","id":"8818","runtime":134,"imdbId":"tt0116250","homepage":"http:\/\/en.wikipedia.org\/wiki\/Evita_(film)","version":132,"lastModified":"1301905094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d5\/4d8dee5d5e73d65f0e0008d5\/evita-mid.jpg","studio":"Cinergi Pictures Entertainment","genre":"Drama","title":"Evita","releaseDate":850521600000,"language":"en","type":"Movie","_key":"33220"} +{"label":"Casper","description":"No overview found.","id":"8819","version":177,"lastModified":"1301908326000","genre":"Family","title":"Casper","language":"en","type":"Movie","_key":"33221"} +{"label":"Miss Texas","description":"Die deutsche Fotojournalistin Katharina macht eine Reportage auf einer texanischen Ranch. Dabei verliebt sie sich - trotz aller Gegens\u00e4tze - in den Chef-Cowboy. Und er sich in sie. Aber hat die Liebe eine Chance? ","id":"8820","runtime":184,"imdbId":"tt0429401","version":118,"lastModified":"1301905897000","studio":"True West Films","genre":"Western","title":"Miss Texas","releaseDate":1125878400000,"language":"en","type":"Movie","_key":"33222"} +{"label":"Susanna Simon","version":16,"id":"56013","lastModified":"1301902339000","name":"Susanna Simon","type":"Person","_key":"33223"} +{"label":"Martin Lindow","version":16,"id":"45857","lastModified":"1301901958000","name":"Martin Lindow","type":"Person","_key":"33224"} +{"label":"Georgia Tornow","version":16,"id":"56014","lastModified":"1301902153000","name":"Georgia Tornow","type":"Person","_key":"33225"} +{"label":"Carol Campbell","version":21,"id":"53802","lastModified":"1301901958000","name":"Carol Campbell","type":"Person","_key":"33226"} +{"label":"Tom Heaton","version":27,"id":"56015","lastModified":"1301902194000","name":"Tom Heaton","type":"Person","_key":"33227"} +{"label":"Didi - Der Doppelg\u00e4nger","description":"Der millionenschwere Baul\u00f6we Hans Immer ist ein rabiater und sexistischer Zeitgenosse, der f\u00fcr ein neues Bauvorhaben etliche H\u00e4user abrei\u00dfen will \u2013 darunter die Mietskaserne, in der Bruno Koob seine Kneipe betreibt. Eine Verwechslung f\u00fchrt dazu, dass Immer und Koob feststellen, dass sie sich t\u00e4uschend \u00e4hnlich sehen. Da Immer seine Entf\u00fchrung bef\u00fcrchtet, spannt er seinen eigentlichen Gegner f\u00fcr seine Zwecke ein. Koob soll f\u00fcr einige Tage als Doppelg\u00e4nger die berufliche wie private Rolle des Baul\u00f6","id":"8821","runtime":96,"imdbId":"tt0087147","trailer":"http:\/\/www.youtube.com\/watch?v=kj94_HZwup0","version":63,"lastModified":"1301903071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4ca4d2e47b9aa16ed60002b8\/didi-der-doppelganger-mid.jpg","genre":"Comedy","title":"Didi - Der Doppelg\u00e4nger","releaseDate":445824000000,"language":"en","type":"Movie","_key":"33228"} +{"label":"Gert Burkard","version":20,"id":"39279","lastModified":"1301901816000","name":"Gert Burkard","type":"Person","_key":"33229"} +{"label":"G\u00f6tz Kauffmann","version":21,"id":"71470","lastModified":"1301902185000","name":"G\u00f6tz Kauffmann","type":"Person","_key":"33230"} +{"label":"Reinhard Schwabenitzky","version":22,"id":"71468","lastModified":"1301901957000","name":"Reinhard Schwabenitzky","type":"Person","_key":"33231"} +{"label":"99 francs","description":"Octave is the master of the universe.\nOctave exercises the profession of copywriter. Today he decides what you will want tomorrow. For him, \u201cman is a product like everything else.\u201d Octave works for the world\u2019s largest advertising agency, Ross & Witchcraft, nicknamed \u201cThe Ross.\u201d","id":"8827","runtime":100,"imdbId":"tt0875113","trailer":"http:\/\/www.youtube.com\/watch?v=544","version":142,"lastModified":"1301901823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1e\/4bc9226d017a3c57fe00db1e\/99-f-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"99 francs","releaseDate":1190764800000,"language":"en","type":"Movie","_key":"33232"} +{"label":"Jean Dujardin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a9\/4c53a0ce5e73d632bb0001a9\/jean-dujardin-profile.jpg","version":60,"id":"56024","lastModified":"1301901190000","name":"Jean Dujardin","type":"Person","_key":"33233"} +{"label":"Vahina Giocante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/741\/4d28c4417b9aa134d3002741\/vahina-giocante-profile.jpg","version":48,"id":"56402","lastModified":"1301901208000","name":"Vahina Giocante","type":"Person","_key":"33234"} +{"label":"Patrick Mille","version":28,"id":"56404","lastModified":"1301901347000","name":"Patrick Mille","type":"Person","_key":"33235"} +{"label":"Jan Kounen","version":35,"id":"56401","lastModified":"1301901261000","name":"Jan Kounen","type":"Person","_key":"33236"} +{"label":"Timecop","description":"An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.","id":"8831","runtime":98,"imdbId":"tt0111438","version":120,"lastModified":"1301901974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f9\/4caa05b55e73d643ef0005f9\/timecop-mid.jpg","studio":"Dark Horse Entertainment","genre":"Action","title":"Timecop","releaseDate":779673600000,"language":"en","type":"Movie","_key":"33237"} +{"label":"Il Divo","description":"The narration spans the period since the seventh election of Andreotti as Prime Minister of Italy in 1992, until the trial in which he was accused of collusion with the Mafia.","id":"8832","runtime":110,"imdbId":"tt1023490","version":217,"lastModified":"1301905762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b41\/4bc9226f017a3c57fe00db41\/il-divo-mid.jpg","genre":"Drama","title":"Il Divo","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"33238"} +{"label":"Paolo Sorrentino","version":29,"id":"56194","lastModified":"1301901328000","name":"Paolo Sorrentino","type":"Person","_key":"33239"} +{"label":"Toni Servillo","version":38,"id":"72782","lastModified":"1301901466000","name":"Toni Servillo","type":"Person","_key":"33240"} +{"label":"Non C'E' Due Senza Quattro","description":"No overview found.","id":"8833","runtime":99,"imdbId":"tt0087481","version":139,"lastModified":"1301906653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4c4b1efa5e73d62a3e000028\/non-c-e-due-senza-quattro-mid.jpg","studio":"Trans-Cinema TV","genre":"Action","title":"Non C'E' Due Senza Quattro","releaseDate":466992000000,"language":"en","type":"Movie","_key":"33241"} +{"label":"Enzo Barboni","version":60,"birthday":"-1498266000000","id":"56033","birthplace":"Roma, Italy","lastModified":"1301901316000","name":"Enzo Barboni","type":"Person","_key":"33242"} +{"label":"April Clough","version":20,"id":"56038","lastModified":"1301901773000","name":"April Clough","type":"Person","_key":"33243"} +{"label":"Harold Bergman","version":20,"id":"56039","lastModified":"1301901773000","name":"Harold Bergman","type":"Person","_key":"33244"} +{"label":"Conspiracy Theory","description":"New York City cab driver Jerry Fletcher, who moonlights as a conspiracy theorist, puts his own life in danger when crooked government officials set out to silence him. An attorney named Alice Sutton might be able to help him. But first she'll have to unravel a mysterious murder that could be connected to Fletcher's theory.","id":"8834","runtime":135,"imdbId":"tt0118883","version":143,"lastModified":"1301902261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20e\/4bf18fe9017a3c321700020e\/conspiracy-theory-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Conspiracy Theory","releaseDate":870912000000,"language":"en","tagline":"What you know could kill you.","type":"Movie","_key":"33245"} +{"label":"Cylk Cozart","version":24,"id":"56040","lastModified":"1301901614000","name":"Cylk Cozart","type":"Person","_key":"33246"} +{"label":"Legally Blonde","description":"Elle Woods has it all. She's the president of her sorority, a Hawaiian Tropic girl, Miss June in her campus calendar, and, above all, a natural blonde. She dates the cutest fraternity boy on campus and wants nothing more than to be Mrs. Warner Huntington III. But, there's just one thing stopping Warner from popping the question: Elle is too blonde.","id":"8835","runtime":96,"imdbId":"tt0250494","trailer":"http:\/\/www.youtube.com\/watch?v=NQmjvnf8At8","version":180,"lastModified":"1301902394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/517\/4d418e637b9aa15bbf003517\/legally-blonde-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Legally Blonde","releaseDate":993513600000,"language":"en","tagline":"Don't judge a book by its hair color!","type":"Movie","_key":"33247"} +{"label":"Matthew Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/465\/4cf339525e73d62384000465\/matthew-davis-profile.jpg","version":44,"id":"56045","lastModified":"1301901193000","name":"Matthew Davis","type":"Person","_key":"33248"} +{"label":"The X-Files: I Want to Believe","description":"Mulder and Scully are called back to duty by the FBI when a former priest claims to be receiving psychic visions pertaining to a kidnapped agent.","id":"8836","runtime":104,"imdbId":"tt0443701","trailer":"http:\/\/www.youtube.com\/watch?v=679","homepage":"http:\/\/www.xfiles.com\/","version":499,"lastModified":"1301902244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b93\/4bc92285017a3c57fe00db93\/the-x-files-i-want-to-believe-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The X-Files: I Want to Believe","releaseDate":1216857600000,"language":"en","tagline":"To find the truth, you must believe.","type":"Movie","_key":"33249"} +{"label":"Adam Godley","version":42,"id":"23429","lastModified":"1301901412000","name":"Adam Godley","type":"Person","_key":"33250"} +{"label":"Fagin Woodcock","version":31,"id":"112633","lastModified":"1301902472000","name":"Fagin Woodcock","type":"Person","_key":"33251"} +{"label":"Marco Niccoli","version":31,"id":"112634","lastModified":"1301902472000","name":"Marco Niccoli","type":"Person","_key":"33252"} +{"label":"Carrie Ruscheinsky","version":33,"id":"112635","lastModified":"1301902541000","name":"Carrie Ruscheinsky","type":"Person","_key":"33253"} +{"label":"Spencer Maybee","version":31,"id":"112636","lastModified":"1301902472000","name":"Spencer Maybee","type":"Person","_key":"33254"} +{"label":"Veronika Hadrava","version":31,"id":"112637","lastModified":"1301902472000","name":"Veronika Hadrava","type":"Person","_key":"33255"} +{"label":"Denis Krasnogolov","version":31,"id":"112638","lastModified":"1301902472000","name":"Denis Krasnogolov","type":"Person","_key":"33256"} +{"label":"Patrick Keating","version":31,"id":"112639","lastModified":"1301902472000","name":"Patrick Keating","type":"Person","_key":"33257"} +{"label":"Roger Horchow","version":31,"id":"112640","lastModified":"1301902472000","name":"Roger Horchow","type":"Person","_key":"33258"} +{"label":"Stephen E. Miller","version":46,"id":"75467","lastModified":"1301901598000","name":"Stephen E. Miller","type":"Person","_key":"33259"} +{"label":"Xantha Radley","version":39,"id":"56750","lastModified":"1301901368000","name":"Xantha Radley","type":"Person","_key":"33260"} +{"label":"Lorena Gale","version":35,"id":"80348","lastModified":"1301902120000","name":"Lorena Gale","type":"Person","_key":"33261"} +{"label":"Donavon Stinson","version":38,"id":"72045","lastModified":"1301901920000","name":"Donavon Stinson","type":"Person","_key":"33262"} +{"label":"Dion Johnstone","version":31,"id":"112641","lastModified":"1301902472000","name":"Dion Johnstone","type":"Person","_key":"33263"} +{"label":"Sarah-Jane Redmond","version":46,"id":"59183","lastModified":"1301901460000","name":"Sarah-Jane Redmond","type":"Person","_key":"33264"} +{"label":"Christina D'Alimonte","version":31,"id":"112642","lastModified":"1301902472000","name":"Christina D'Alimonte","type":"Person","_key":"33265"} +{"label":"Vanesa Tomasino","version":31,"id":"112643","lastModified":"1301902472000","name":"Vanesa Tomasino","type":"Person","_key":"33266"} +{"label":"Luvia Petersen","version":31,"id":"112644","lastModified":"1301902472000","name":"Luvia Petersen","type":"Person","_key":"33267"} +{"label":"Babs Chula","version":33,"id":"106532","lastModified":"1301901754000","name":"Babs Chula","type":"Person","_key":"33268"} +{"label":"Marci T. House","version":31,"id":"112645","lastModified":"1301902472000","name":"Marci T. House","type":"Person","_key":"33269"} +{"label":"Joseph Patrick Finn","version":34,"id":"72069","lastModified":"1301901629000","name":"Joseph Patrick Finn","type":"Person","_key":"33270"} +{"label":"Beth Siegler","version":31,"id":"112646","lastModified":"1301902472000","name":"Beth Siegler","type":"Person","_key":"33271"} +{"label":"Stacee Copeland","version":32,"id":"112647","lastModified":"1301902533000","name":"Stacee Copeland","type":"Person","_key":"33272"} +{"label":"Tom Charron","version":31,"id":"112648","lastModified":"1301902472000","name":"Tom Charron","type":"Person","_key":"33273"} +{"label":"Brent O'Connor","version":31,"id":"112649","lastModified":"1301902472000","name":"Brent O'Connor","type":"Person","_key":"33274"} +{"label":"Dave Cote","version":35,"id":"91328","lastModified":"1301901920000","name":"Dave Cote","type":"Person","_key":"33275"} +{"label":"Chris Carter","version":88,"id":"12524","lastModified":"1301901385000","name":"Chris Carter","type":"Person","_key":"33276"} +{"label":"Paul Mitton","version":31,"id":"112650","lastModified":"1301902119000","name":"Paul Mitton","type":"Person","_key":"33277"} +{"label":"Vanessa Morley","version":31,"id":"112651","lastModified":"1301902297000","name":"Vanessa Morley","type":"Person","_key":"33278"} +{"label":"Michael Stevens","version":31,"id":"112652","lastModified":"1301902297000","name":"Michael Stevens","type":"Person","_key":"33279"} +{"label":"Amanda Bartley","version":31,"id":"113015","lastModified":"1301902472000","name":"Amanda Bartley","type":"Person","_key":"33280"} +{"label":"Jack Hardy","version":31,"id":"113020","lastModified":"1301902297000","name":"Jack Hardy","type":"Person","_key":"33281"} +{"label":"Dan Miller","version":31,"id":"113021","lastModified":"1301902120000","name":"Dan Miller","type":"Person","_key":"33282"} +{"label":"Roger Scott Russell","version":31,"id":"113022","lastModified":"1301902297000","name":"Roger Scott Russell","type":"Person","_key":"33283"} +{"label":"Hannah","description":"No overview found.","id":"8837","runtime":0,"version":431,"lastModified":"1301907491000","title":"Hannah","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"33284"} +{"label":"Damian Schipporeit","version":16,"id":"56048","lastModified":"1301902363000","name":"Damian Schipporeit","type":"Person","_key":"33285"} +{"label":"Tatjana Bartel","version":16,"id":"56049","lastModified":"1301902367000","name":"Tatjana Bartel","type":"Person","_key":"33286"} +{"label":"Mercury Rising","description":"Simon is a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code. This skill renders the new billion-dollar secret code vulnerable, especially if enemies of the United States should learn of Simon's abilities and capture him. Program chief Nick Kudrow orders the \"security threat\" eliminated, but Kudrow hasn't counted on renegade FBI agent Art Jeffries (Bruce Willis).","id":"8838","runtime":108,"imdbId":"tt0120749","version":280,"lastModified":"1301902928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/088\/4cc76ee35e73d65020000088\/mercury-rising-mid.jpg","studio":"United International Pictures ","genre":"Action","title":"Mercury Rising","releaseDate":891561600000,"language":"en","type":"Movie","_key":"33287"} +{"label":"Casper","description":"James Harvey is a ghost doctor hired by Carrigan Crittendon to rid Whipstaff Manor of spirits so she can find a treasure trove rumored to be hidden there. But her plan backfires when James's daughter Kat befriends Casper, the friendly phantom who inhabits the place along with The Ghostly Trio, who disdain humans.","id":"8839","runtime":100,"imdbId":"tt0112642","trailer":"http:\/\/www.youtube.com\/watch?v=kppS6cJE02M","version":210,"lastModified":"1301907703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb8\/4bc92290017a3c57fe00dbb8\/casper-mid.jpg","genre":"Comedy","title":"Casper","releaseDate":801446400000,"language":"en","tagline":"Get an afterlife","type":"Movie","_key":"33288"} +{"label":"Malachi Pearson","version":22,"id":"56057","lastModified":"1301901419000","name":"Malachi Pearson","type":"Person","_key":"33289"} +{"label":"DragonHeart","description":"In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.","id":"8840","runtime":103,"imdbId":"tt0116136","trailer":"http:\/\/www.youtube.com\/watch?v=Ln0GZcLG_Nc","version":131,"lastModified":"1301902243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dd\/4d55e9747b9aa15d010016dd\/dragonheart-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"DragonHeart","releaseDate":833500800000,"language":"en","tagline":"You will believe.","type":"Movie","_key":"33290"} +{"label":"Lee Oakes","version":33,"id":"59075","lastModified":"1301901601000","name":"Lee Oakes","type":"Person","_key":"33291"} +{"label":"Entre les Murs","description":"Teacher and novelist Fran\u00e7ois B\u00e9gaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.","id":"8841","runtime":128,"imdbId":"tt1068646","version":129,"lastModified":"1301904391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bca\/4bc92291017a3c57fe00dbca\/entre-les-murs-mid.jpg","studio":"Haut et Court","genre":"Drama","title":"Entre les Murs","releaseDate":1211587200000,"language":"en","type":"Movie","_key":"33292"} +{"label":"Fran\u00e7ois B\u00e9gaudeau","version":25,"id":"64155","lastModified":"1301901731000","name":"Fran\u00e7ois B\u00e9gaudeau","type":"Person","_key":"33293"} +{"label":"Franck Ke\u00efta","version":21,"id":"69188","lastModified":"1301901675000","name":"Franck Ke\u00efta","type":"Person","_key":"33294"} +{"label":"Esmeralda Ouertani","version":20,"id":"69189","lastModified":"1301901731000","name":"Esmeralda Ouertani","type":"Person","_key":"33295"} +{"label":"Rachel Regulier","version":18,"id":"69190","lastModified":"1301901619000","name":"Rachel Regulier","type":"Person","_key":"33296"} +{"label":"Wei Huang","version":21,"id":"69191","lastModified":"1301901996000","name":"Wei Huang","type":"Person","_key":"33297"} +{"label":"Cherif Bouna\u00efdja Rachedi","version":20,"id":"69194","lastModified":"1301901538000","name":"Cherif Bouna\u00efdja Rachedi","type":"Person","_key":"33298"} +{"label":"Louise Grinberg","version":20,"id":"69196","lastModified":"1301902274000","name":"Louise Grinberg","type":"Person","_key":"33299"} +{"label":"Rabah Nait Oufella","version":18,"id":"69197","lastModified":"1301901739000","name":"Rabah Nait Oufella","type":"Person","_key":"33300"} +{"label":"Carl Nanor","version":20,"id":"69198","lastModified":"1301901883000","name":"Carl Nanor","type":"Person","_key":"33301"} +{"label":"Jean-Michel Simonet","version":20,"id":"69199","lastModified":"1301902274000","name":"Jean-Michel Simonet","type":"Person","_key":"33302"} +{"label":"Henriette Kasaruhanda","version":20,"id":"69200","lastModified":"1301902274000","name":"Henriette Kasaruhanda","type":"Person","_key":"33303"} +{"label":"Laura Baquela","version":20,"id":"69201","lastModified":"1301901883000","name":"Laura Baquela","type":"Person","_key":"33304"} +{"label":"Against the Ropes","description":"No overview found.","id":"8842","runtime":106,"imdbId":"tt0312329","version":168,"lastModified":"1301905547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd4\/4bc92292017a3c57fe00dbd4\/against-the-ropes-mid.jpg","genre":"Drama","title":"Against the Ropes","releaseDate":1077235200000,"language":"en","type":"Movie","_key":"33305"} +{"label":"The Cell","description":"A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.","id":"8843","runtime":109,"imdbId":"tt0209958","trailer":"http:\/\/www.youtube.com\/watch?v=814","version":200,"lastModified":"1301907156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bee\/4bc92294017a3c57fe00dbee\/the-cell-mid.jpg","studio":"Avery Pix","genre":"Crime","title":"The Cell","releaseDate":946684800000,"language":"en","type":"Movie","_key":"33306"} +{"label":"Catherine Sutherland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4d5a34215e73d65e91000402\/catherine-sutherland-profile.jpg","version":23,"id":"56513","lastModified":"1301902384000","name":"Catherine Sutherland","type":"Person","_key":"33307"} +{"label":"Tarsem Singh","version":24,"id":"56512","lastModified":"1301901310000","name":"Tarsem Singh","type":"Person","_key":"33308"} +{"label":"Jumanji","description":"When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.","id":"8844","runtime":101,"imdbId":"tt0113497","trailer":"http:\/\/www.youtube.com\/watch?v=yLyXEQPuLJo","version":247,"lastModified":"1302063752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01b\/4c1b868d7b9aa117b200001b\/jumanji-mid.jpg","studio":"Interscope Communications","genre":"Comedy","title":"Jumanji","releaseDate":788918400000,"language":"en","tagline":"Roll the dice and unleash the excitement!","type":"Movie","_key":"33309"} +{"label":"Gillian Barber","version":30,"id":"56522","lastModified":"1302063751000","name":"Gillian Barber","type":"Person","_key":"33310"} +{"label":"Laura Bell Bundy","version":24,"id":"56523","lastModified":"1302063751000","name":"Laura Bell Bundy","type":"Person","_key":"33311"} +{"label":"Under Siege","description":"This action-packed thriller takes place on the soon-to-be-decommissioned USS Missouri. Disgruntled ex-CIA operative Strannix, his assistant Krill and their group of terrorists seize the battleship with nuclear blackmail in mind. They've planned for every contingency but ignore the ship's cook, former Navy SEAL Casey Ryback -- an error that could be fatal.","id":"8845","runtime":98,"imdbId":"tt0105690","trailer":"http:\/\/www.youtube.com\/watch?v=piihlLx3LvM","version":214,"lastModified":"1301902039000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/694\/4d4703837b9aa15bbb00a694\/under-siege-mid.jpg","studio":"Regency Enterprises","genre":"Action","title":"Under Siege","releaseDate":718588800000,"language":"en","tagline":"It's not just a job... It's an Adventure!","type":"Movie","_key":"33312"} +{"label":"Damian Chapa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/327\/4c580b877b9aa151f6000327\/damian-chapa-profile.jpg","version":36,"id":"58646","lastModified":"1302036098000","name":"Damian Chapa","type":"Person","_key":"33313"} +{"label":"Michael Des Barres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dc2\/4d5f5d1a7b9aa154cf002dc2\/michael-des-barres-profile.jpg","version":27,"id":"65334","lastModified":"1301901495000","name":"Michael Des Barres","type":"Person","_key":"33314"} +{"label":"Allein","description":"No overview found.","id":"8846","runtime":88,"imdbId":"tt0433770","version":62,"lastModified":"1301906739000","genre":"Drama","title":"Allein","releaseDate":1098921600000,"language":"en","type":"Movie","_key":"33315"} +{"label":"Thomas Durchschlag","version":21,"id":"56069","lastModified":"1301901651000","name":"Thomas Durchschlag","type":"Person","_key":"33316"} +{"label":"Victoria Mayer","version":20,"id":"28439","lastModified":"1301901651000","name":"Victoria Mayer","type":"Person","_key":"33317"} +{"label":"Tobias van Dieken","version":20,"id":"67918","lastModified":"1301902153000","name":"Tobias van Dieken","type":"Person","_key":"33318"} +{"label":"Holger Kunkel","version":22,"id":"67920","lastModified":"1301902153000","name":"Holger Kunkel","type":"Person","_key":"33319"} +{"label":"Daniel Drewes","version":21,"id":"67921","lastModified":"1301902192000","name":"Daniel Drewes","type":"Person","_key":"33320"} +{"label":"Standard Operating Procedure","description":"Errol Morris examines the incidents of abuse and torture of suspected terrorists at the hands of U.S. forces at the Abu Ghraib prison.","id":"8847","runtime":117,"imdbId":"tt0896866","trailer":"http:\/\/www.youtube.com\/watch?v=545","homepage":"http:\/\/www.sonyclassics.com\/standardoperatingprocedure\/","version":222,"lastModified":"1301904508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c16\/4bc9229a017a3c57fe00dc16\/standard-operating-procedure-mid.jpg","studio":"Participant Productions","genre":"Documentary","title":"Standard Operating Procedure","releaseDate":1202774400000,"language":"en","type":"Movie","_key":"33321"} +{"label":"Javal Davis","version":16,"id":"56080","lastModified":"1301901731000","name":"Javal Davis","type":"Person","_key":"33322"} +{"label":"Ken Davis","version":16,"id":"56081","lastModified":"1301901731000","name":"Ken Davis","type":"Person","_key":"33323"} +{"label":"Tony Diaz","version":16,"id":"56082","lastModified":"1301901615000","name":"Tony Diaz","type":"Person","_key":"33324"} +{"label":"Tim Dugan","version":16,"id":"56083","lastModified":"1301901731000","name":"Tim Dugan","type":"Person","_key":"33325"} +{"label":"Lynndie England","version":16,"id":"56084","lastModified":"1301902096000","name":"Lynndie England","type":"Person","_key":"33326"} +{"label":"Jefferey Frost","version":16,"id":"56085","lastModified":"1301902096000","name":"Jefferey Frost","type":"Person","_key":"33327"} +{"label":"Megan Ambuhl Graner","version":16,"id":"56086","lastModified":"1301902096000","name":"Megan Ambuhl Graner","type":"Person","_key":"33328"} +{"label":"Sabrina Harman","version":16,"id":"56087","lastModified":"1301902096000","name":"Sabrina Harman","type":"Person","_key":"33329"} +{"label":"Janis Karpinski","version":16,"id":"56088","lastModified":"1301902096000","name":"Janis Karpinski","type":"Person","_key":"33330"} +{"label":"Roman Krol","version":16,"id":"56089","lastModified":"1301902096000","name":"Roman Krol","type":"Person","_key":"33331"} +{"label":"Brent Pack","version":17,"id":"56090","lastModified":"1301901995000","name":"Brent Pack","type":"Person","_key":"33332"} +{"label":"Jeremy Sivits","version":16,"id":"56091","lastModified":"1301902096000","name":"Jeremy Sivits","type":"Person","_key":"33333"} +{"label":"The Bank Job","description":"Martine offers Terry a lead on a foolproof bank hit on London's Baker Street. She targets a roomful of safe deposit boxes worth millions in cash and jewelry. But Terry and his crew don't realize the boxes also contain a treasure trove of dirty secrets - secrets that will thrust them into a deadly web of corruption and illicit scandal. ","id":"8848","runtime":110,"imdbId":"tt0200465","trailer":"http:\/\/www.youtube.com\/watch?v=twnd6onh5ec","homepage":"http:\/\/thebankjobmovie.com\/","version":328,"lastModified":"1301901477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6f\/4bc922a8017a3c57fe00dc6f\/the-bank-job-mid.jpg","studio":"Arclight Films","genre":"Action","title":"The Bank Job","releaseDate":1203379200000,"language":"en","type":"Movie","_key":"33334"} +{"label":"Alki David","version":36,"id":"56097","lastModified":"1301901576000","name":"Alki David","type":"Person","_key":"33335"} +{"label":"Michael Jibson","version":33,"id":"56098","lastModified":"1301901388000","name":"Michael Jibson","type":"Person","_key":"33336"} +{"label":"Don Gallagher","version":30,"id":"56099","lastModified":"1301901538000","name":"Don Gallagher","type":"Person","_key":"33337"} +{"label":"Alistair Petrie","version":34,"id":"56100","lastModified":"1301901227000","name":"Alistair Petrie","type":"Person","_key":"33338"} +{"label":"Gerard Horan","version":37,"id":"56101","lastModified":"1301901276000","name":"Gerard Horan","type":"Person","_key":"33339"} +{"label":"Peter De Jersey","version":28,"id":"56102","lastModified":"1301901539000","name":"Peter De Jersey","type":"Person","_key":"33340"} +{"label":"Hattie Morahan","version":32,"id":"56103","lastModified":"1301901524000","name":"Hattie Morahan","type":"Person","_key":"33341"} +{"label":"Sharon Maughan","version":30,"id":"56104","lastModified":"1301901538000","name":"Sharon Maughan","type":"Person","_key":"33342"} +{"label":"Alfie","description":"In Manhattan, the British limousine driver Alfie is surrounded by beautiful women, having one night stands with all of them and without any sort of commitment. His best friends are his colleague Marlon and his girl-friend Lonette. Alfie has a brief affair with Lonette, and the consequences of his act forces Alfie to reflect over his lifestyle.","id":"8849","runtime":103,"imdbId":"tt0375173","version":166,"lastModified":"1301902833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cd\/4cb64bbe7b9aa138d60003cd\/alfie-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Alfie","releaseDate":1099612800000,"language":"en","type":"Movie","_key":"33343"} +{"label":"Ren\u00e9e Taylor","version":27,"id":"56105","lastModified":"1301901767000","name":"Ren\u00e9e Taylor","type":"Person","_key":"33344"} +{"label":"Charles Shyer","version":57,"id":"56106","lastModified":"1301958059000","name":"Charles Shyer","type":"Person","_key":"33345"} +{"label":"The Shadow","description":"Based on the 1930's comic strip, puts the hero up against his arch enemy, Shiwan Khan, who plans to take over the world by holding a city to ransom using an atom bomb. Using his powers of invisibility and \"The power to cloud men's minds\", the Shadow comes blazing to the city's rescue with explosive results.","id":"8850","runtime":108,"imdbId":"tt0111143","version":157,"lastModified":"1301902481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c99\/4bc922ac017a3c57fe00dc99\/the-shadow-mid.jpg","genre":"Action","title":"The Shadow","releaseDate":757900800000,"language":"en","type":"Movie","_key":"33346"} +{"label":"The Blob","description":"The Blob melds '50s schlock sci-fi and teen delinquency pics even as it transcends these genres with strong performances and ingenious special effects. Made outside of Hollywood by a maverick film distributor, a crew experienced in religious and educational shorts, and a collection of theatrical talent from Philadelphia and New York, The Blob helped launch the career of Steve McQueen","id":"8851","runtime":86,"imdbId":"tt0051418","trailer":"http:\/\/www.youtube.com\/watch?v=vyrKNwhRFi4","version":177,"lastModified":"1301902893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca2\/4bc922ad017a3c57fe00dca2\/the-blob-mid.jpg","studio":"Fairview Production","genre":"Horror","title":"The Blob","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"33347"} +{"label":"Aneta Corsaut","version":23,"id":"56138","lastModified":"1301901459000","name":"Aneta Corsaut","type":"Person","_key":"33348"} +{"label":"Earl Rowe","version":23,"id":"56139","lastModified":"1301901326000","name":"Earl Rowe","type":"Person","_key":"33349"} +{"label":"Alden 'Stephen' Chase","version":22,"id":"56140","lastModified":"1301902179000","name":"Alden 'Stephen' Chase","type":"Person","_key":"33350"} +{"label":"Irvin S. Yeaworth Jr.","version":26,"id":"56141","lastModified":"1301901502000","name":"Irvin S. Yeaworth Jr.","type":"Person","_key":"33351"} +{"label":"Prince of Darkness","description":"A research team finds a mysterious cylinder in a deserted church. If opened, it could mean the end of the world.","id":"8852","runtime":101,"imdbId":"tt0093777","version":156,"lastModified":"1301903785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc922ae017a3c57fe00dcaf\/prince-of-darkness-mid.jpg","genre":"Drama","title":"Prince of Darkness","releaseDate":561945600000,"language":"en","type":"Movie","_key":"33352"} +{"label":"Kalt ist der Abendhauch","description":"No overview found.","id":"8853","runtime":124,"imdbId":"tt0222096","version":42,"lastModified":"1301904265000","studio":"Senator Film Produktion","genre":"Drama","title":"Kalt ist der Abendhauch","releaseDate":967420800000,"language":"en","type":"Movie","_key":"33353"} +{"label":"Steel","description":"Justice. Safe streets. Payback. Metallurgist John Henry Irons (O'Neal) vows to claim them all when a renegade military reject (Judd Nelson) puts new superweapons in dangerous hands. Helped by an electronics wiz (Annabeth Gish) and an imaginative scrap metal worker (Richard Roundtree), Irons becomes Steel. Wearing body armor, wielding a fearsome electrohammer and riding a gadget-packed motorcycle, he's ready to wage war...if he can fix the untimely glitches in his untested gear. \"You all be cool ","id":"8854","runtime":97,"imdbId":"tt0120207","version":85,"lastModified":"1301905987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4c3ba67e5e73d67fd3000005\/steel-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Steel","releaseDate":871603200000,"language":"en","tagline":"Heroes don't come any bigger.","type":"Movie","_key":"33354"} +{"label":"Johanna Ray","version":53,"id":"3686","lastModified":"1299612170000","name":"Johanna Ray","type":"Person","_key":"33355"} +{"label":"Harvey Silver","version":20,"id":"124520","lastModified":"1301903022000","name":"Harvey Silver","type":"Person","_key":"33356"} +{"label":"Kenneth Johnson","version":37,"id":"19142","lastModified":"1301901364000","name":"Kenneth Johnson","type":"Person","_key":"33357"} +{"label":"Otto Collection","description":"No overview found.","id":"8855","version":77,"lastModified":"1301908585000","title":"Otto Collection","language":"en","type":"Movie","_key":"33358"} +{"label":"The Karate Kid, Part II","description":"Mr. Miyagi and Daniel take a trip to Okinawa to visit Mr. Miyagi's dying father. After arriving Mr. Miyagi finds he still has feelings for an old love. This stirs up trouble with an old rival who he originally left Okinawa to avoid. In the mean time, Daniel encounters a new love and also makes some enemies.","id":"8856","runtime":113,"imdbId":"tt0091326","version":140,"lastModified":"1301902020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc5\/4bc922b2017a3c57fe00dcc5\/the-karate-kid-part-ii-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Karate Kid, Part II","releaseDate":519523200000,"language":"en","type":"Movie","_key":"33359"} +{"label":"Charlie Tanimoto","version":21,"id":"56118","lastModified":"1301901762000","name":"Charlie Tanimoto","type":"Person","_key":"33360"} +{"label":"Yuji Okumoto","version":32,"id":"56120","lastModified":"1301901984000","name":"Yuji Okumoto","type":"Person","_key":"33361"} +{"label":"Joey Miyashima","version":22,"id":"56121","lastModified":"1301902040000","name":"Joey Miyashima","type":"Person","_key":"33362"} +{"label":"Marc Hayashi","version":23,"id":"56122","lastModified":"1301901690000","name":"Marc Hayashi","type":"Person","_key":"33363"} +{"label":"Danny Kamekona","version":21,"id":"56123","lastModified":"1301901927000","name":"Danny Kamekona","type":"Person","_key":"33364"} +{"label":"Monty Python Collection","description":"A collection of movies created by the comedic genius of the Monty Python team: Graham Chapman, John Cleese, Terry Gilliam, Eric Idle, Terry Jones, and Michael Palin.","id":"8857","version":53,"lastModified":"1301903538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd8\/4bc922b4017a3c57fe00dcd8\/monty-python-collection-mid.jpg","title":"Monty Python Collection","language":"en","type":"Movie","_key":"33365"} +{"label":"Rennschwein Rudi R\u00fcssel","description":"No overview found.","id":"8858","title":"Rennschwein Rudi R\u00fcssel","language":"en","lastModified":"1301906771000","version":14,"type":"Movie","_key":"33366"} +{"label":"Dude, Where\u2019s My Car?","description":"Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.","id":"8859","runtime":83,"imdbId":"tt0242423","trailer":"http:\/\/www.youtube.com\/watch?v=d1wuijgeaaY","version":127,"lastModified":"1301901435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/984\/4d7d3b4c5e73d6282a002984\/dude-where-s-my-car-mid.jpg","studio":"Alcon Entertainment","genre":"Comedy","title":"Dude, Where\u2019s My Car?","releaseDate":946684800000,"language":"en","tagline":"After a night they can't remember, comes a day they'll never forget.","type":"Movie","_key":"33367"} +{"label":"Kristy Swanson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f4\/4be0f10c017a3c35b50004f4\/kristy-swanson-profile.jpg","version":50,"id":"56128","lastModified":"1301901142000","name":"Kristy Swanson","type":"Person","_key":"33368"} +{"label":"Danny Leiner","version":37,"id":"56591","lastModified":"1301901258000","name":"Danny Leiner","type":"Person","_key":"33369"} +{"label":"Metro","description":"Roper, a hostage negotiator catches a murderous bank robber after a blown heist. The bank robber escapes and immediately goes after the man who put him behind bars. The ending is played out with Roper and his partner McCall attempting to rescue Roper's kidnapped girlfriend. A major element in the plot is the relationship between Roper and his girlfriend.","id":"8860","runtime":112,"imdbId":"tt0119664","version":145,"lastModified":"1301904346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4bc922b5017a3c57fe00dcea\/metro-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Metro","releaseDate":853459200000,"language":"en","type":"Movie","_key":"33370"} +{"label":"Kim Miyori","version":21,"id":"56182","lastModified":"1301901926000","name":"Kim Miyori","type":"Person","_key":"33371"} +{"label":"Art Evans","version":31,"id":"56183","lastModified":"1301901644000","name":"Art Evans","type":"Person","_key":"33372"} +{"label":"James Carpenter","version":21,"id":"56184","lastModified":"1301901633000","name":"James Carpenter","type":"Person","_key":"33373"} +{"label":"Jeni Chua","version":21,"id":"56185","lastModified":"1301902123000","name":"Jeni Chua","type":"Person","_key":"33374"} +{"label":"Someday My Prince Will Come","description":"No overview found.","id":"8863","runtime":48,"imdbId":"tt1216508","version":34,"lastModified":"1301907433000","studio":"Maverick Television","genre":"Documentary","title":"Someday My Prince Will Come","releaseDate":1132444800000,"language":"en","type":"Movie","_key":"33375"} +{"label":"Marc Isaacs","version":20,"id":"56144","lastModified":"1301902153000","name":"Marc Isaacs","type":"Person","_key":"33376"} +{"label":"Final Destination Collection","description":"No overview found.","id":"8864","version":227,"lastModified":"1301903417000","title":"Final Destination Collection","language":"en","type":"Movie","_key":"33377"} +{"label":"The Truth About Cats & Dogs","description":"A successful veternarian & radio show host with low self-esteem asks her model friend to impersonate her when a handsome man wants to see her.","id":"8866","runtime":93,"imdbId":"tt0117979","version":102,"lastModified":"1301904188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfb\/4bc922b9017a3c57fe00dcfb\/the-truth-about-cats-dogs-mid.jpg","genre":"Comedy","title":"The Truth About Cats & Dogs","releaseDate":830476800000,"language":"en","type":"Movie","_key":"33378"} +{"label":"The Punisher","description":"The avenging angel of Marvel Comics fame comes brilliantly to life in this searing action-adventure thriller! Dolph Lundgren stars as Frank Castle, a veteran cop who loses his entire family to a mafia car bomb. \n\nOnly his ex-partner believes Castle survived the blast to become THE PUNISHER ... a shadowy, invincible fighter against evil who lives for total revenge on his mob enemies.","id":"8867","runtime":89,"imdbId":"tt0098141","trailer":"http:\/\/www.youtube.com\/watch?v=6je37OVNeIk","version":83,"lastModified":"1301902957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0d\/4bc922ba017a3c57fe00dd0d\/the-punisher-mid.jpg","studio":"New World Pictures","genre":"Action","title":"The Punisher","releaseDate":623548800000,"language":"en","type":"Movie","_key":"33379"} +{"label":"Mark Goldblatt","version":123,"id":"898","lastModified":"1300031271000","name":"Mark Goldblatt","type":"Person","_key":"33380"} +{"label":"Ast\u00e9rix et la surprise de C\u00e9sar","description":"Obelix falls for a new arrival in his home village in Gaul, but is heartbroken when her true love arrives to visit her. However, the lovers are kidnapped by Romans; Asterix and Obelix set out to rescue them on a dangerous journey that will involve gladiators, slavers and beauracracy - and a personal encounter with the Emperor himself, Julius Caesar...","id":"8868","runtime":79,"imdbId":"tt0088748","version":111,"lastModified":"1301903572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d27\/4bc922bc017a3c57fe00dd27\/asterix-et-la-surprise-de-cesar-mid.jpg","genre":"Adventure","title":"Ast\u00e9rix et la surprise de C\u00e9sar","releaseDate":478915200000,"language":"en","type":"Movie","_key":"33381"} +{"label":"Ga\u00ebtan Brizzi","version":28,"id":"56146","lastModified":"1302037081000","name":"Ga\u00ebtan Brizzi","type":"Person","_key":"33382"} +{"label":"Paul Brizzi","version":24,"id":"56147","lastModified":"1301901640000","name":"Paul Brizzi","type":"Person","_key":"33383"} +{"label":"Eight Legged Freaks","description":"The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.","id":"8869","runtime":99,"imdbId":"tt0271367","version":249,"lastModified":"1301902920000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4b\/4bc922c0017a3c57fe00dd4b\/eight-legged-freaks-mid.jpg","genre":"Action","title":"Eight Legged Freaks","releaseDate":1022716800000,"language":"en","tagline":"Do you hate spiders? Do you really hate spiders? Well they don't like you either.","type":"Movie","_key":"33384"} +{"label":"Ellory Elkayem","version":34,"id":"56150","lastModified":"1301901648000","name":"Ellory Elkayem","type":"Person","_key":"33385"} +{"label":"Kari Wuhrer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4c1305b45e73d646dc00003c\/kari-wuhrer-profile.jpg","version":49,"id":"56152","lastModified":"1301901219000","name":"Kari Wuhrer","type":"Person","_key":"33386"} +{"label":"Scott Terra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/317\/4d8a34797b9aa13ae1000317\/scott-terra-profile.jpg","version":30,"id":"56153","lastModified":"1301901689000","name":"Scott Terra","type":"Person","_key":"33387"} +{"label":"Red Planet","description":"Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry. ","id":"8870","runtime":106,"imdbId":"tt0199753","trailer":"http:\/\/www.youtube.com\/watch?v=RKUc1sY43eE","version":196,"lastModified":"1301903486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d54\/4bc922c1017a3c57fe00dd54\/red-planet-mid.jpg","genre":"Action","title":"Red Planet","releaseDate":973468800000,"language":"en","type":"Movie","_key":"33388"} +{"label":"Antony Hoffman","version":23,"id":"56154","lastModified":"1301901496000","name":"Antony Hoffman","type":"Person","_key":"33389"} +{"label":"The Grinch","description":"Inside a snowflake exists the magical land of Whoville. In Whoville, live the Who's, an almost mutated sort of munchkinlike people. All the Who's love Christmas, yet just outside of their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from the Whos which he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriend the Grinch.","id":"8871","runtime":104,"imdbId":"tt0170016","trailer":"http:\/\/www.youtube.com\/watch?v=1544","homepage":"http:\/\/www.grinched.com\/","version":436,"lastModified":"1301902147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4bcc2bbe017a3c0f2c0000bc\/how-the-grinch-stole-christmas-mid.jpg","studio":"Imagine Entertainment","genre":"Comedy","title":"The Grinch","releaseDate":973641600000,"language":"en","tagline":"He puts the mean in green.","type":"Movie","_key":"33390"} +{"label":"Wayne's World","description":"When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.","id":"8872","runtime":95,"imdbId":"tt0105793","trailer":"http:\/\/www.youtube.com\/watch?v=LheVhO5_HEE","version":151,"lastModified":"1301906833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a25\/4d779d187b9aa15c77000a25\/wayne-s-world-mid.jpg","genre":"Comedy","title":"Wayne's World","releaseDate":698025600000,"language":"en","tagline":"You'll laugh. You'll cry. You'll hurl.","type":"Movie","_key":"33391"} +{"label":"Dana Carvey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f7\/4c9f953f5e73d6704b0004f7\/dana-carvey-profile.jpg","version":51,"id":"56159","lastModified":"1302066402000","name":"Dana Carvey","type":"Person","_key":"33392"} +{"label":"Penelope Spheeris","version":47,"id":"58448","lastModified":"1301901494000","name":"Penelope Spheeris","type":"Person","_key":"33393"} +{"label":"Wayne's World 2","description":"A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, \"Waynestock,\" with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornee.","id":"8873","runtime":95,"imdbId":"tt0108525","trailer":"http:\/\/www.youtube.com\/watch?v=1t_L5fL2K1M","version":185,"lastModified":"1301902085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9db\/4d779e517b9aa15c740009db\/wayne-s-world-2-mid.jpg","genre":"Comedy","title":"Wayne's World 2","releaseDate":755481600000,"language":"en","tagline":"You'll laugh again! You'll cry again!! You'll hurl again!!!","type":"Movie","_key":"33394"} +{"label":"Stephen Surjik","version":24,"id":"56155","lastModified":"1301901445000","name":"Stephen Surjik","type":"Person","_key":"33395"} +{"label":"My Best Friend's Wedding","description":"When a woman's long-time friend says he's engaged, she\nrealizes she loves him herself... and sets out to get\nhim, with only days before the wedding.","id":"8874","runtime":105,"imdbId":"tt0119738","version":147,"lastModified":"1301903261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c04\/4d1a5e657b9aa1147a004c04\/my-best-friend-s-wedding-mid.jpg","studio":"Predawn Productions","genre":"Comedy","title":"My Best Friend's Wedding","releaseDate":866764800000,"language":"en","tagline":"It's about finding the love of your life. And deciding what to do about it.","type":"Movie","_key":"33396"} +{"label":"Timber Falls","description":"A weekend of camping in the mountains becomes an excursion into hell for a young couple, who become pawns in a grotesque plot hatched by deranged locals.","id":"8875","runtime":97,"imdbId":"tt0857295","trailer":"http:\/\/www.youtube.com\/watch?v=547","version":149,"lastModified":"1301904390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db1\/4bc922cc017a3c57fe00ddb1\/timber-falls-mid.jpg","studio":"A-Mark Entertainment","genre":"Horror","title":"Timber Falls","releaseDate":1196985600000,"language":"en","type":"Movie","_key":"33397"} +{"label":"Josh Randall","version":19,"id":"56162","lastModified":"1301901883000","name":"Josh Randall","type":"Person","_key":"33398"} +{"label":"Sascha Rosemann","version":20,"id":"56163","lastModified":"1301902274000","name":"Sascha Rosemann","type":"Person","_key":"33399"} +{"label":"T.W. Leshner","version":17,"id":"56164","lastModified":"1301902296000","name":"T.W. Leshner","type":"Person","_key":"33400"} +{"label":"Branden R. Morgan","version":19,"id":"56165","lastModified":"1301902274000","name":"Branden R. Morgan","type":"Person","_key":"33401"} +{"label":"Carl Bressler","version":22,"id":"56166","lastModified":"1301901538000","name":"Carl Bressler","type":"Person","_key":"33402"} +{"label":"Ryan McGee","version":19,"id":"56167","lastModified":"1301902274000","name":"Ryan McGee","type":"Person","_key":"33403"} +{"label":"Suzanna Urszuly","version":21,"id":"56168","lastModified":"1301902274000","name":"Suzanna Urszuly","type":"Person","_key":"33404"} +{"label":"Debbie Jaffe","version":17,"id":"56169","lastModified":"1301902296000","name":"Debbie Jaffe","type":"Person","_key":"33405"} +{"label":"The Blacklist","description":"No overview found.","id":"8876","runtime":22,"version":66,"lastModified":"1301907369000","studio":"WR Films","genre":"Thriller","title":"The Blacklist","releaseDate":1104105600000,"language":"en","type":"Movie","_key":"33406"} +{"label":"Christoffer Lunde","version":18,"id":"56174","lastModified":"1301902189000","name":"Christoffer Lunde","type":"Person","_key":"33407"} +{"label":"Steinar Larsen","version":16,"id":"56175","lastModified":"1301902362000","name":"Steinar Larsen","type":"Person","_key":"33408"} +{"label":"Karianne Svalunde","version":16,"id":"56176","lastModified":"1301902153000","name":"Karianne Svalunde","type":"Person","_key":"33409"} +{"label":"Lasse Lunde","version":16,"id":"56177","lastModified":"1301902338000","name":"Lasse Lunde","type":"Person","_key":"33410"} +{"label":"Life in a Flash","description":"No overview found.","id":"8877","runtime":0,"version":35,"lastModified":"1301419402000","studio":"MCM Productions","genre":"Drama","title":"Life in a Flash","releaseDate":1115510400000,"language":"en","type":"Movie","_key":"33411"} +{"label":"Knut Steen Rakner","version":23,"id":"24222","lastModified":"1301901786000","name":"Knut Steen Rakner","type":"Person","_key":"33412"} +{"label":"Kane McLean","version":16,"id":"56178","lastModified":"1301902374000","name":"Kane McLean","type":"Person","_key":"33413"} +{"label":"Midge Tyler","version":16,"id":"56179","lastModified":"1301902374000","name":"Midge Tyler","type":"Person","_key":"33414"} +{"label":"Maria Mendoza","version":16,"id":"56181","lastModified":"1301901999000","name":"Maria Mendoza","type":"Person","_key":"33415"} +{"label":"Budbilsj\u00e5f\u00f8ren","description":"When the duties of a deliveryman becomes to overwhelming.","id":"8878","runtime":0,"trailer":"http:\/\/www.youtube.com\/watch?v=583","version":17,"lastModified":"1301908585000","studio":"MCM Productions","genre":"Comedy","title":"Budbilsj\u00e5f\u00f8ren","releaseDate":1123632000000,"language":"en","type":"Movie","_key":"33416"} +{"label":"Pale Rider","description":"A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.","id":"8879","runtime":113,"imdbId":"tt0089767","trailer":"http:\/\/www.youtube.com\/watch?v=38Q-N4ccBUE","version":336,"lastModified":"1301907753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dca\/4bc922d1017a3c57fe00ddca\/pale-rider-mid.jpg","studio":"Malpaso Productions","genre":"Action","title":"Pale Rider","releaseDate":488764800000,"language":"en","type":"Movie","_key":"33417"} +{"label":"Sydney Penny","version":22,"id":"56190","lastModified":"1301902184000","name":"Sydney Penny","type":"Person","_key":"33418"} +{"label":"Che: Part Two","description":"After the Cuban Revolution, Che is at the height of his fame and power. Then he disappears, re-emerging incognito in Bolivia, where he organizes a small group of Cuban comrades and Bolivian recruits to start the great Latin American Revolution. Through this story, we come to understand how Che remains a symbol of idealism and heroism that lives in the hearts of people around the world.","id":"8880","runtime":131,"imdbId":"tt0374569","homepage":"http:\/\/www.ifcfilms.com\/films\/che","version":182,"lastModified":"1301906900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f91\/4cfc0bee5e73d6299c002f91\/guerilla-mid.jpg","studio":"Wild Bunch","genre":"Drama","title":"Che: Part Two","releaseDate":1211328000000,"language":"en","type":"Movie","_key":"33419"} +{"label":"Che: Part One","description":"The Argentine, begins as Che and a band of Cuban exiles (led by Fidel Castro) reach the Cuban shore from Mexico in 1956. Within two years, they mobilized popular support and an army and toppled the U.S.-friendly regime of dictator Fulgencio Batista.Cuba, 1952 : le g\u00e9n\u00e9ral Fulgencio Batista fomente un putsch, s'empare du pouvoir et annule les \u00e9lections g\u00e9n\u00e9rales. Bravant ce dictateur corrompu, un jeune avocat, Fidel Castro, candidat \u00e0 la d\u00e9putation sous la banni\u00e8re du Parti du Peuple, passe \u00e0 l'a","id":"8881","runtime":126,"imdbId":"tt0892255","trailer":"http:\/\/www.youtube.com\/watch?v=fqTw2dtVQzw","homepage":"http:\/\/www.che-movie.co.uk\/","version":180,"lastModified":"1301902846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4cfc0d355e73d6299d003052\/the-argentine-mid.jpg","studio":"Estudios Picasso","genre":"Drama","title":"Che: Part One","releaseDate":1211328000000,"language":"en","type":"Movie","_key":"33420"} +{"label":"Demi\u00e1n Bichir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/966\/4d3498157b9aa17b37008966\/demi-n-bichir-profile.jpg","version":38,"birthday":"-202611600000","id":"76961","birthplace":"Mexico City, Mexico","lastModified":"1301901701000","name":"Demi\u00e1n Bichir","type":"Person","_key":"33421"} +{"label":"Ramon Fernandez","version":26,"id":"76962","lastModified":"1301901837000","name":"Ramon Fernandez","type":"Person","_key":"33422"} +{"label":"Yul Vazquez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57b\/4d2885b05e73d626c400257b\/yul-vazquez-profile.jpg","version":37,"id":"75604","lastModified":"1301901598000","name":"Yul Vazquez","type":"Person","_key":"33423"} +{"label":"Jose Caro","version":26,"id":"76963","lastModified":"1301902023000","name":"Jose Caro","type":"Person","_key":"33424"} +{"label":"Pedro Adorno","version":26,"id":"76964","lastModified":"1301901695000","name":"Pedro Adorno","type":"Person","_key":"33425"} +{"label":"Gomorrah","description":"An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the \"values\" that the residents of the Province of Naples and Caserta, have to face every day. They hardly ever have a choice, and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal live.","id":"8882","runtime":135,"imdbId":"tt0929425","trailer":"http:\/\/www.youtube.com\/watch?v=MN7-tepnIfY","homepage":"http:\/\/www.mymovies.it\/gomorra\/","version":196,"lastModified":"1301907556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/801\/4c63fba27b9aa172d9000801\/gomorra-mid.jpg","studio":"Fandango","genre":"Crime","title":"Gomorrah","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"33426"} +{"label":"Matteo Garrone","version":28,"id":"63973","lastModified":"1301901774000","name":"Matteo Garrone","type":"Person","_key":"33427"} +{"label":"Salvatore Abruzzese","version":21,"id":"72775","lastModified":"1301901619000","name":"Salvatore Abruzzese","type":"Person","_key":"33428"} +{"label":"Simone Sacchettino","version":21,"id":"72776","lastModified":"1301901306000","name":"Simone Sacchettino","type":"Person","_key":"33429"} +{"label":"Salvatore Ruocco","version":22,"id":"72777","lastModified":"1301901619000","name":"Salvatore Ruocco","type":"Person","_key":"33430"} +{"label":"Vincenzo Fabricino","version":21,"id":"72778","lastModified":"1301901739000","name":"Vincenzo Fabricino","type":"Person","_key":"33431"} +{"label":"Gianfelice Imparato","version":22,"id":"72779","lastModified":"1301901900000","name":"Gianfelice Imparato","type":"Person","_key":"33432"} +{"label":"Maria Nazionale","version":21,"id":"72780","lastModified":"1301901739000","name":"Maria Nazionale","type":"Person","_key":"33433"} +{"label":"Salvatore Striano","version":22,"id":"72781","lastModified":"1301901619000","name":"Salvatore Striano","type":"Person","_key":"33434"} +{"label":"Carmine Paternoster","version":21,"id":"72783","lastModified":"1301901900000","name":"Carmine Paternoster","type":"Person","_key":"33435"} +{"label":"Alfonso Santagata","version":24,"id":"72784","lastModified":"1301901900000","name":"Alfonso Santagata","type":"Person","_key":"33436"} +{"label":"Salvatore Cantalupo","version":28,"id":"72785","lastModified":"1301901848000","name":"Salvatore Cantalupo","type":"Person","_key":"33437"} +{"label":"Gigio Morra","version":24,"id":"72786","lastModified":"1301902139000","name":"Gigio Morra","type":"Person","_key":"33438"} +{"label":"Ronghua Zhang","version":19,"id":"72787","lastModified":"1301901739000","name":"Ronghua Zhang","type":"Person","_key":"33439"} +{"label":"Marco Macor","version":21,"id":"72788","lastModified":"1301901900000","name":"Marco Macor","type":"Person","_key":"33440"} +{"label":"Ciro Petrone","version":21,"id":"72789","lastModified":"1301902109000","name":"Ciro Petrone","type":"Person","_key":"33441"} +{"label":"Giovanni Venosa","version":21,"id":"72790","lastModified":"1301901900000","name":"Giovanni Venosa","type":"Person","_key":"33442"} +{"label":"Flame & Citron","description":"During Nazi occupation, red-headed Bent Faurschou-Hviid (\"Flame\") and J\u00f8rgen Haagen Schmith (\"Citron\"), assassins in the Danish resistance, take orders from Winther, who's in direct contact with Allied leaders. One shoots, the other drives. Until 1944, they kill only Danes; then Winther gives orders to kill Germans. When a target tells Bent that Winther's using them to settle private scores, doubt sets in, complicated by Bent's relationship with the mysterious Kitty Selmer, who may be a double a","id":"8883","runtime":120,"imdbId":"tt0920458","trailer":"http:\/\/www.youtube.com\/watch?v=608","homepage":"http:\/\/www.flammenogcitronen.dk\/","version":143,"lastModified":"1301907496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3a\/4bc922e4017a3c57fe00de3a\/flammen-citronen-mid.jpg","studio":"Nimbus Film ApS","genre":"Drama","title":"Flame & Citron","releaseDate":1206403200000,"language":"en","type":"Movie","_key":"33443"} +{"label":"Ole Christian Madsen","version":29,"id":"56195","lastModified":"1301901524000","name":"Ole Christian Madsen","type":"Person","_key":"33444"} +{"label":"Peter Mygind","version":21,"id":"71154","lastModified":"1301901698000","name":"Peter Mygind","type":"Person","_key":"33445"} +{"label":"Stine Stengade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ea\/4c18949f5e73d65ddf0000ea\/stine-stengade-profile.jpg","version":24,"id":"71155","lastModified":"1301901581000","name":"Stine Stengade","type":"Person","_key":"33446"} +{"label":"Flemming Enevold","version":21,"id":"71156","lastModified":"1301902204000","name":"Flemming Enevold","type":"Person","_key":"33447"} +{"label":"Mille Lehfeldt","version":20,"id":"71157","lastModified":"1301902204000","name":"Mille Lehfeldt","type":"Person","_key":"33448"} +{"label":"Lars Mikkelsen","version":27,"id":"71158","lastModified":"1301904136000","name":"Lars Mikkelsen","type":"Person","_key":"33449"} +{"label":"Franklyn","description":"Set between the parallel worlds of contemporary London and the futuristic faith dominated metropolis of Meanwhile City, Franklyn weaves a tale of four souls, whose lives are intertwined by fate, romance and tragedy. As these worlds collide, a single bullet determines the destiny of these four characters.","id":"8884","runtime":98,"imdbId":"tt0893402","version":186,"lastModified":"1301907556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e47\/4bc922e6017a3c57fe00de47\/franklyn-mid.jpg","studio":"Recorded Picture Company","genre":"Drama","title":"Franklyn","releaseDate":1224115200000,"language":"en","type":"Movie","_key":"33450"} +{"label":"Gerald McMorrow","version":21,"id":"56197","lastModified":"1301902028000","name":"Gerald McMorrow","type":"Person","_key":"33451"} +{"label":"Chris Wilson","version":26,"id":"59103","lastModified":"1301902152000","name":"Chris Wilson","type":"Person","_key":"33452"} +{"label":"Kika Markham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c60\/4cf147a55e73d61928000c60\/kika-markham-profile.jpg","version":25,"id":"42567","lastModified":"1301901781000","name":"Kika Markham","type":"Person","_key":"33453"} +{"label":"Mark Wingett","version":21,"id":"65303","lastModified":"1301901651000","name":"Mark Wingett","type":"Person","_key":"33454"} +{"label":"Gary Pillai","version":20,"id":"81483","lastModified":"1301902533000","name":"Gary Pillai","type":"Person","_key":"33455"} +{"label":"Jeanie Gold","version":20,"id":"81484","lastModified":"1301902362000","name":"Jeanie Gold","type":"Person","_key":"33456"} +{"label":"Jay Fuller","version":20,"id":"81485","lastModified":"1301902173000","name":"Jay Fuller","type":"Person","_key":"33457"} +{"label":"Waltz with Bashir","description":"One night at a bar, an old friend tells director Ari Folman about a recurring nightmare in which he is chased by 26 vicious dogs. Every night, the same number of beasts. The two men conclude that there\u2019s a connection to their Israeli Army mission in the first Lebanon War of the early eighties. Ari is surprised that he can\u2019t remember a thing anymore about that period of his life.","id":"8885","runtime":90,"imdbId":"tt1185616","trailer":"http:\/\/www.youtube.com\/watch?v=2171","homepage":"http:\/\/waltzwithbashir.com","version":317,"lastModified":"1301996542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5d\/4bc922e8017a3c57fe00de5d\/waltz-with-bashir-mid.jpg","studio":"Arte France","genre":"Animation","title":"Waltz with Bashir","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"33458"} +{"label":"Ari Folman","version":71,"id":"56198","lastModified":"1302012409000","name":"Ari Folman","type":"Person","_key":"33459"} +{"label":"Ron Ben-Yishai","version":35,"id":"72567","lastModified":"1302012410000","name":"Ron Ben-Yishai","type":"Person","_key":"33460"} +{"label":"Dror Harazi","version":35,"id":"72573","lastModified":"1302012410000","name":"Dror Harazi","type":"Person","_key":"33461"} +{"label":"Ronny Dayag","version":35,"id":"72569","lastModified":"1302012410000","name":"Ronny Dayag","type":"Person","_key":"33462"} +{"label":"Palermo Shooting","description":"After the wild life-style of a famous young German photographer almost gets him killed, he goes to Palermo, Sicily to take a brake. Can the beautiful city and a beautiful local woman help him calm himself down?","id":"8886","runtime":108,"imdbId":"tt1008017","version":85,"lastModified":"1301906675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6e\/4bc922ec017a3c57fe00de6e\/the-palermo-shooting-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Drama","title":"Palermo Shooting","releaseDate":1211068800000,"language":"en","type":"Movie","_key":"33463"} +{"label":"Campino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/498\/4d1c85e97b9aa17a54000498\/campino-profile.jpg","version":19,"birthday":"-237603600000","id":"146462","birthplace":"D\u00fcsseldorf, Germany","lastModified":"1301901527000","name":"Campino","type":"Person","_key":"33464"} +{"label":"Patti Smith","version":31,"id":"56200","lastModified":"1301901824000","name":"Patti Smith","type":"Person","_key":"33465"} +{"label":"Lulu and Jimi","description":"A drama about the relationship between a young black man and a rich German girl.","id":"8887","runtime":94,"imdbId":"tt0763844","trailer":"http:\/\/www.youtube.com\/watch?v=949","version":74,"lastModified":"1301905279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e77\/4bc922ec017a3c57fe00de77\/lulu-and-jimi-mid.jpg","studio":"Sperl + Schott","genre":"Comedy","title":"Lulu and Jimi","releaseDate":1232582400000,"language":"en","type":"Movie","_key":"33466"} +{"label":"Jennifer Decker","version":24,"id":"56649","lastModified":"1301902146000","name":"Jennifer Decker","type":"Person","_key":"33467"} +{"label":"Ray Fearon","version":19,"id":"56650","lastModified":"1301901883000","name":"Ray Fearon","type":"Person","_key":"33468"} +{"label":"Im Winter ein Jahr","description":"No overview found.","id":"8888","runtime":0,"imdbId":"tt0452580","version":77,"lastModified":"1301907412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cd\/4c3abe767b9aa10edc0002cd\/im-winter-ein-jahr-mid.jpg","studio":"Constantin Film Produktion GmbH","genre":"Drama","title":"Im Winter ein Jahr","releaseDate":1226534400000,"language":"en","type":"Movie","_key":"33469"} +{"label":"Cyril Sj\u00f6str\u00f6m","version":20,"id":"56652","lastModified":"1301902028000","name":"Cyril Sj\u00f6str\u00f6m","type":"Person","_key":"33470"} +{"label":"The Anarchist's Wife","description":"No overview found.","id":"8889","runtime":112,"imdbId":"tt0962709","version":152,"lastModified":"1301905091000","studio":"P'Artisan Filmproduktion","genre":"Drama","title":"The Anarchist's Wife","releaseDate":1214438400000,"language":"en","type":"Movie","_key":"33471"} +{"label":"Marie Noelle","version":20,"id":"56202","lastModified":"1301901817000","name":"Marie Noelle","type":"Person","_key":"33472"} +{"label":"Peter Sehr","version":25,"id":"56201","lastModified":"1301901787000","name":"Peter Sehr","type":"Person","_key":"33473"} +{"label":"Laura Morante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e56\/4d27e2f27b9aa134cb001e56\/laura-morante-profile.jpg","version":53,"id":"56654","lastModified":"1301901236000","name":"Laura Morante","type":"Person","_key":"33474"} +{"label":"Natja Jamaan","version":18,"id":"56655","lastModified":"1301901510000","name":"Natja Jamaan","type":"Person","_key":"33475"} +{"label":"Geliebte Clara","description":"No overview found.","id":"8890","runtime":107,"imdbId":"tt0177636","version":53,"lastModified":"1301418646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cb\/4c482ce05e73d61efb0003cb\/geliebte-clara-mid.jpg","title":"Geliebte Clara","releaseDate":1222819200000,"language":"en","type":"Movie","_key":"33476"} +{"label":"Helma Sanders-Brahms","version":20,"id":"56203","lastModified":"1301902013000","name":"Helma Sanders-Brahms","type":"Person","_key":"33477"} +{"label":"10 Sekunden","description":"No overview found.","id":"8891","runtime":90,"imdbId":"tt1284971","version":73,"lastModified":"1301903705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7c\/4bc922ed017a3c57fe00de7c\/10-sekunden-mid.jpg","studio":"moneypenny Filmproduktion","genre":"Drama","title":"10 Sekunden","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"33478"} +{"label":"Nicolai Rohde","version":20,"id":"73849","lastModified":"1301901615000","name":"Nicolai Rohde","type":"Person","_key":"33479"} +{"label":"A Christmas Tale","description":"The Vuillard's shared history of physical and mental illness, estrangement, self harm, and loss doesn't lead itself to the idea of a cheerful holiday season. But can a Christmastime reunion, a scheme concocted by three of the youngest family members, finally bring peace their clan?","id":"8892","runtime":150,"imdbId":"tt0993789","trailer":"http:\/\/www.youtube.com\/watch?v=E1yPhab421Q","version":303,"lastModified":"1301904888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8d\/4bc922ef017a3c57fe00de8d\/un-conte-de-noel-mid.jpg","studio":"Bac Films","genre":"Comedy","title":"A Christmas Tale","releaseDate":1211328000000,"language":"en","type":"Movie","_key":"33480"} +{"label":"H\u00e9l\u00e8ne Darras","version":23,"id":"56588","lastModified":"1301901731000","name":"H\u00e9l\u00e8ne Darras","type":"Person","_key":"33481"} +{"label":"C'est dur d'\u00eatre aim\u00e9 par des cons","description":"No overview found.","id":"8893","runtime":118,"imdbId":"tt1289783","version":33,"lastModified":"1301908561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e9\/4d5fd85b5e73d60c620024e9\/c-est-dur-d-tre-aim-par-des-cons-mid.jpg","title":"C'est dur d'\u00eatre aim\u00e9 par des cons","releaseDate":1221609600000,"language":"en","type":"Movie","_key":"33482"} +{"label":"Daniel Leconte","version":21,"id":"56204","lastModified":"1301902338000","name":"Daniel Leconte","type":"Person","_key":"33483"} +{"label":"Adoration","description":"Director Atom Egoyan explores the concept of cyberspace as a place for redemption in this drama about an adolescent boy named Simon who reinvents his life on the internet. Before long, Simon's deeply personal journey provokes strong reactions from around the globe. ","id":"8895","runtime":100,"imdbId":"tt1074929","version":218,"lastModified":"1301905764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea5\/4bc922f1017a3c57fe00dea5\/adoration-mid.jpg","genre":"Drama","title":"Adoration","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33484"} +{"label":"Atom Egoyan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4d6a99bf5e73d66b2700206c\/atom-egoyan-profile.jpg","version":57,"id":"56205","lastModified":"1301901411000","name":"Atom Egoyan","type":"Person","_key":"33485"} +{"label":"Devon Bostick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f6\/4d4879637b9aa13da10002f6\/devon-bostick-profile.jpg","version":41,"id":"90498","lastModified":"1301901836000","name":"Devon Bostick","type":"Person","_key":"33486"} +{"label":"Louca Tassone","version":13,"id":"213389","lastModified":"1301903140000","name":"Louca Tassone","type":"Person","_key":"33487"} +{"label":"Yuval Daniel","version":12,"id":"201071","lastModified":"1301903974000","name":"Yuval Daniel","type":"Person","_key":"33488"} +{"label":"Jeremy Wright","version":12,"id":"213390","lastModified":"1301903737000","name":"Jeremy Wright","type":"Person","_key":"33489"} +{"label":"Delta","description":"No overview found.","id":"8896","runtime":96,"imdbId":"tt0910860","version":165,"lastModified":"1301908155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4c9c9e675e73d66d1c000065\/delta-mid.jpg","genre":"Drama","title":"Delta","releaseDate":1201910400000,"language":"en","type":"Movie","_key":"33490"} +{"label":"Korn\u00e9l Mundrucz\u00f3","version":17,"id":"56206","lastModified":"1301902338000","name":"Korn\u00e9l Mundrucz\u00f3","type":"Person","_key":"33491"} +{"label":"La fronti\u00e8re de l'aube","description":"A celebrity is caught by her husband with a young lover. She ends the relationship, but slowly goes insane and kills herself.","id":"8897","runtime":106,"imdbId":"tt1073535","version":41,"lastModified":"1301908427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/850\/4d091d545e73d67458000850\/la-fronti-re-de-l-aube-mid.jpg","genre":"Drama","title":"La fronti\u00e8re de l'aube","releaseDate":1211414400000,"language":"en","type":"Movie","_key":"33492"} +{"label":"Philippe Garrel","version":23,"id":"56207","lastModified":"1301901651000","name":"Philippe Garrel","type":"Person","_key":"33493"} +{"label":"The Headless Woman","description":"After running into something with her car, Vero experiences a particular psychological state. She realizes she might have killed someone.","id":"8898","runtime":87,"imdbId":"tt1221141","version":94,"lastModified":"1300978644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eaa\/4bc922f1017a3c57fe00deaa\/la-mujer-sin-cabeza-mid.jpg","studio":"El Deseo","genre":"Drama","title":"The Headless Woman","releaseDate":1219276800000,"language":"en","type":"Movie","_key":"33494"} +{"label":"Lucrecia Martel","version":23,"id":"56208","lastModified":"1301901883000","name":"Lucrecia Martel","type":"Person","_key":"33495"} +{"label":"Mar\u00eda Onetto","version":22,"id":"27050","lastModified":"1301901619000","name":"Mar\u00eda Onetto","type":"Person","_key":"33496"} +{"label":"Claudia Cantero","version":20,"id":"27059","lastModified":"1301901883000","name":"Claudia Cantero","type":"Person","_key":"33497"} +{"label":"C\u00e9sar Bord\u00f3n","version":16,"id":"116362","lastModified":"1301902896000","name":"C\u00e9sar Bord\u00f3n","type":"Person","_key":"33498"} +{"label":"In\u00e9s Efron","version":23,"id":"27058","lastModified":"1301901648000","name":"In\u00e9s Efron","type":"Person","_key":"33499"} +{"label":"Mar\u00eda Vaner","version":20,"id":"27020","lastModified":"1301902096000","name":"Mar\u00eda Vaner","type":"Person","_key":"33500"} +{"label":"Lorna's Silence","description":"In order to become the owner of a snack bar with her boyfriend, Lorna, a young Albanian woman living in Belgium, becomes an accomplice to a diabolical plan devised by mobster Fabio. ","id":"8899","runtime":105,"imdbId":"tt1186369","version":166,"lastModified":"1301904491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb7\/4bc922f4017a3c57fe00deb7\/le-silence-de-lorna-mid.jpg","studio":"Les Films Du Fleuve","genre":"Crime","title":"Lorna's Silence","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33501"} +{"label":"Luc Dardenne","version":46,"id":"45138","lastModified":"1301901651000","name":"Luc Dardenne","type":"Person","_key":"33502"} +{"label":"Jean-Pierre Dardenne","version":45,"id":"56209","lastModified":"1301901496000","name":"Jean-Pierre Dardenne","type":"Person","_key":"33503"} +{"label":"Arta Dobroshi","version":23,"id":"73328","lastModified":"1301902367000","name":"Arta Dobroshi","type":"Person","_key":"33504"} +{"label":"Fabrizio Rongione","version":26,"id":"70312","lastModified":"1301901995000","name":"Fabrizio Rongione","type":"Person","_key":"33505"} +{"label":"Alban Ukaj","version":23,"id":"73331","lastModified":"1301902190000","name":"Alban Ukaj","type":"Person","_key":"33506"} +{"label":"Leonera","description":"No overview found.","id":"8900","runtime":113,"imdbId":"tt1022606","trailer":"http:\/\/www.youtube.com\/watch?v=1278","homepage":"http:\/\/www.leoneralapelicula.com\/","version":92,"lastModified":"1301904402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec8\/4bc922f6017a3c57fe00dec8\/leonera-mid.jpg","studio":"Patagonik","genre":"Drama","title":"Leonera","releaseDate":1212019200000,"language":"en","type":"Movie","_key":"33507"} +{"label":"Pablo Trapero","version":29,"id":"56210","lastModified":"1301902274000","name":"Pablo Trapero","type":"Person","_key":"33508"} +{"label":"Martina Gusman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b4\/4cb9f1365e73d677830007b4\/martina-gusman-profile.jpg","version":31,"id":"84667","lastModified":"1301902415000","name":"Martina Gusman","type":"Person","_key":"33509"} +{"label":"Elli Medeiros","version":19,"id":"84668","lastModified":"1301902637000","name":"Elli Medeiros","type":"Person","_key":"33510"} +{"label":"Tom\u00e1s Plotinsky","version":17,"id":"84670","lastModified":"1301902640000","name":"Tom\u00e1s Plotinsky","type":"Person","_key":"33511"} +{"label":"Laura Garc\u00eda","version":19,"id":"84669","lastModified":"1301902637000","name":"Laura Garc\u00eda","type":"Person","_key":"33512"} +{"label":"Leonardo Sauma","version":19,"id":"84671","lastModified":"1301902637000","name":"Leonardo Sauma","type":"Person","_key":"33513"} +{"label":"Walter Cignoli","version":19,"id":"84672","lastModified":"1301902637000","name":"Walter Cignoli","type":"Person","_key":"33514"} +{"label":"Roberto Maciel","version":19,"id":"84673","lastModified":"1301902637000","name":"Roberto Maciel","type":"Person","_key":"33515"} +{"label":"Clara Sajnovetzky","version":19,"id":"84674","lastModified":"1301902637000","name":"Clara Sajnovetzky","type":"Person","_key":"33516"} +{"label":"Les bureaux de Dieu","description":"No overview found.","id":"8901","runtime":122,"imdbId":"tt1182257","version":85,"lastModified":"1301907275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edb\/4bc922f9017a3c57fe00dedb\/les-bureaux-de-dieu-mid.jpg","studio":"Les Films d'Ici","genre":"Comedy","title":"Les bureaux de Dieu","releaseDate":1225843200000,"language":"en","type":"Movie","_key":"33517"} +{"label":"Claire Simon","version":23,"id":"56211","lastModified":"1301902274000","name":"Claire Simon","type":"Person","_key":"33518"} +{"label":"Rachida Brakni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bce\/4d9641c67b9aa12e93000bce\/rachida-brakni-profile.jpg","version":32,"id":"56241","lastModified":"1301901495000","name":"Rachida Brakni","type":"Person","_key":"33519"} +{"label":"Lolita Chammah","version":22,"id":"56242","lastModified":"1301902274000","name":"Lolita Chammah","type":"Person","_key":"33520"} +{"label":"Linha De Passe","description":"In the periphery of S\u00e3o Paulo, the pregnant single mother Cleuza works as maid in the apartment of a middle-class family. Each of her sons has a different unknown father: the oldest, D\u00eanis, has a baby son that lives with his mother and he works as motorcycle courier;","id":"8902","runtime":108,"imdbId":"tt0803029","version":83,"lastModified":"1301903501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee4\/4bc922f9017a3c57fe00dee4\/linha-de-passe-mid.jpg","studio":"Videofilmes Produ\u00e7oes Artisticas Ltda.","genre":"Drama","title":"Linha De Passe","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33521"} +{"label":"Ana Luiza Garritano","version":17,"id":"24245","lastModified":"1301901739000","name":"Ana Luiza Garritano","type":"Person","_key":"33522"} +{"label":"Jos\u00e9 Geraldo Rodrigues","version":19,"id":"27018","lastModified":"1301901731000","name":"Jos\u00e9 Geraldo Rodrigues","type":"Person","_key":"33523"} +{"label":"Kaique Jesus Santos","version":17,"id":"27026","lastModified":"1301901900000","name":"Kaique Jesus Santos","type":"Person","_key":"33524"} +{"label":"Jo\u00e3o Baldasserini","version":19,"id":"27029","lastModified":"1301902096000","name":"Jo\u00e3o Baldasserini","type":"Person","_key":"33525"} +{"label":"My Magic","description":"A single dad looks to give up drinking and his bartender job in order to impress his son and find work as a magician.","id":"8903","runtime":75,"imdbId":"tt1233329","homepage":"http:\/\/www.zhaowei.com\/mymagic\/mymagic_synopsis.htm","version":106,"lastModified":"1301904895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef9\/4bc922fb017a3c57fe00def9\/my-magic-mid.jpg","genre":"Drama","title":"My Magic","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33526"} +{"label":"Eric Khoo","version":22,"id":"56212","lastModified":"1301902033000","name":"Eric Khoo","type":"Person","_key":"33527"} +{"label":"Serbis","description":"No overview found.","id":"8904","runtime":90,"imdbId":"tt1225296","version":83,"lastModified":"1301907107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b0\/4d2f007b5e73d63a5600f8b0\/serbis-mid.jpg","title":"Serbis","releaseDate":1211068800000,"language":"en","type":"Movie","_key":"33528"} +{"label":"Brillante Mendoza","version":20,"id":"56213","lastModified":"1301901837000","name":"Brillante Mendoza","type":"Person","_key":"33529"} +{"label":"Gina Pare\u00f1o","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46b\/4ce2017f5e73d60f6d00046b\/gina-pareno-profile.jpg","biography":"<p>Geraldine Acthley was born in 1950 to Patricia Dory Ocura of Bacolod,\n a ticket taker at the Mayfair Theater in Avenida, Manila, and to \nBouffard Acthley, a German-American who didn't stay long after \nGeraldine's birth. Geraldine grew up in the rough neighborhood of \nGagalangin, Tondo, accompanying her mother to work. Already the love for\n acting was very strong in the young girl. A fire burned down their \nhouse and at age eleven, Geraldine had to help her mother make ends \nmeet. She actually","version":29,"birthday":"-632451600000","id":"56255","birthplace":"Manila, Philippines","lastModified":"1301901604000","name":"Gina Pare\u00f1o","type":"Person","_key":"33530"} +{"label":"Coco Martin","version":24,"id":"56256","lastModified":"1301901837000","name":"Coco Martin","type":"Person","_key":"33531"} +{"label":"Three Monkeys","description":"A family dislocated when small failings blow up into extravagant lies battles against the odds to stay together by covering up the truth... In order to avoid hardship and responsibilities that would otherwise be impossible to endure, the family chooses to ignore the truth, not to see, hear or talk about it. But does playing \u201cThree Monkeys\u201d invalidate the truth of its existence? ","id":"8905","runtime":109,"imdbId":"tt1233381","homepage":"http:\/\/www.nbcfilm.com\/3maymun\/3maymun.php?mid=1","version":85,"lastModified":"1301908034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f06\/4bc92301017a3c57fe00df06\/uc-maymun-mid.jpg","studio":"Zeynofilm","genre":"Drama","title":"Three Monkeys","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"33532"} +{"label":"Nuri Bilge Ceylan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4d1495a05e73d6083800209f\/nuri-bilge-ceylan-profile.jpg","biography":"<P>\u200bNuri Bilge Ceylan (d. 1959, \u0130stanbul) T\u00fcrk y\u00f6netmen, senarist ve foto\u011fraf sanat\u00e7\u0131s\u0131.<\/P>\r\n<P>Bo\u011fazi\u00e7i \u00dcniversitesi Elektrik-Elektronik M\u00fchendisli\u011fi b\u00f6l\u00fcm\u00fcnden mezun olduktan sonra Mimar Sinan \u00dcniversitesi\u2019nde iki y\u0131l sinema e\u011fitimi g\u00f6rd\u00fc. Bo\u011fazi\u00e7i \u00dcniversitesi'ndeki e\u011fitimi s\u0131ras\u0131nda \u00fcniversitenin da\u011fc\u0131l\u0131k ve ma\u011farac\u0131l\u0131k kul\u00fcplerine kat\u0131larak, do\u011fa aktiviteleri ile ilgilendi. 1980'lerde kimi portfolyolar\u0131 Gergedan gibi d\u00f6nemin nitelikli k\u00fclt\u00fcr ve sanat dergilerinde yay\u0131nlanan Ceylan, yapt\u0131\u011f\u0131","version":40,"id":"56214","lastModified":"1301901300000","name":"Nuri Bilge Ceylan","type":"Person","_key":"33533"} +{"label":"Yavuz Bingol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f69\/4d14f6367b9aa11488001f69\/yavuz-bingol-profile.jpg","biography":"<P>\u200bYavuz Bing\u00f6l (d. 7 Ekim 1964, \u0130stanbul), Aslen Kars, Sar\u0131kam\u0131\u015f'l\u0131d\u0131r. M\u00fczisyen, t\u00fcrk\u00fcc\u00fc, sinema ve dizi oyuncusu.<\/P>\r\n<P>Edebiyat \u00f6\u011fretmeni olan Y\u0131lmaz Bing\u00f6l [1] ve \u015eahsenem Bac\u0131 olarak bilinen m\u00fczisyen bir annenin \u00e7ocu\u011fu olan Yavuz Bing\u00f6l, 1968'de Konya Karap\u0131nar Kayal\u0131 \u0130lkokulu'nda devam eden sanat\u00e7\u0131, arkas\u0131ndan \u0130stanbul Halkal\u0131'da ayn\u0131 s\u0131n\u0131f\u0131n ikinci d\u00f6nemini okudu. 1974 y\u0131l\u0131nda Ankara Malazgirt \u0130lkokulu'na ge\u00e7ti. 1975'te buray\u0131 bitirerek, Mehmet Akif ortaokulu'nda e\u011fitimine devam etti.","version":27,"id":"87221","lastModified":"1301901467000","name":"Yavuz Bingol","type":"Person","_key":"33534"} +{"label":"Hatice Aslan","version":22,"id":"87222","lastModified":"1301901883000","name":"Hatice Aslan","type":"Person","_key":"33535"} +{"label":"Rifat Sungar","version":22,"id":"87223","lastModified":"1301901614000","name":"Rifat Sungar","type":"Person","_key":"33536"} +{"label":"Ercan Kesal","version":22,"id":"87224","lastModified":"1301902274000","name":"Ercan Kesal","type":"Person","_key":"33537"} +{"label":"Cafer K\u00f6se","version":22,"id":"87225","lastModified":"1301902468000","name":"Cafer K\u00f6se","type":"Person","_key":"33538"} +{"label":"G\u00fcrkan Aydin","version":22,"id":"87226","lastModified":"1301901883000","name":"G\u00fcrkan Aydin","type":"Person","_key":"33539"} +{"label":"Wolke 9","description":"No overview found.","id":"8906","runtime":98,"imdbId":"tt1037228","version":115,"lastModified":"1301905555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1e\/4bc92309017a3c57fe00df1e\/wolke-9-mid.jpg","studio":"Peter Rommel Productions","genre":"Drama","title":"Wolke 9","releaseDate":1210982400000,"language":"en","type":"Movie","_key":"33540"} +{"label":"Horst Rehberg","version":20,"id":"48721","lastModified":"1301901842000","name":"Horst Rehberg","type":"Person","_key":"33541"} +{"label":"Horst Westphal","version":20,"id":"56833","lastModified":"1301901510000","name":"Horst Westphal","type":"Person","_key":"33542"} +{"label":"Gestern in Eden","description":"No overview found.","id":"8907","runtime":31,"imdbId":"tt1210063","version":45,"lastModified":"1300978646000","title":"Gestern in Eden","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"33543"} +{"label":"Jan Speckenbach","version":20,"id":"56215","lastModified":"1301902379000","name":"Jan Speckenbach","type":"Person","_key":"33544"} +{"label":"Maradona","description":"A documentary on Argentinean soccer star Diego Maradona, regarded by many as the world's greatest modern player.","id":"8908","runtime":90,"imdbId":"tt0454976","version":77,"lastModified":"1301906623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f27\/4bc92309017a3c57fe00df27\/maradona-mid.jpg","genre":"Documentary","title":"Maradona","releaseDate":1211241600000,"language":"en","type":"Movie","_key":"33545"} +{"label":"Diego Armando Maradona","version":20,"id":"56218","lastModified":"1301901814000","name":"Diego Armando Maradona","type":"Person","_key":"33546"} +{"label":"Manu Chao","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed9\/4d4003977b9aa15bb5001ed9\/manu-chao-profile.jpg","version":27,"id":"15605","lastModified":"1301901316000","name":"Manu Chao","type":"Person","_key":"33547"} +{"label":"Wanted","description":"Doormat Wesley Gibson discovers that his recently murdered father -- who Wesley never knew -- belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.","id":"8909","runtime":106,"imdbId":"tt0493464","trailer":"http:\/\/www.youtube.com\/watch?v=q9Mr-iYZRZk","homepage":"http:\/\/www.wantedmovie.com\/","version":497,"lastModified":"1301900934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f51\/4bc9230f017a3c57fe00df51\/wanted-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Wanted","releaseDate":1214524800000,"language":"en","tagline":"Choose your destiny.","type":"Movie","_key":"33548"} +{"label":"Marc Warren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be1\/4cf13d3c5e73d61924000be1\/marc-warren-profile.jpg","version":39,"id":"70903","lastModified":"1302070067000","name":"Marc Warren","type":"Person","_key":"33549"} +{"label":"Kristen Hager","version":32,"id":"73454","lastModified":"1302070067000","name":"Kristen Hager","type":"Person","_key":"33550"} +{"label":"Brad Calcaterra","version":37,"id":"73455","lastModified":"1302070067000","name":"Brad Calcaterra","type":"Person","_key":"33551"} +{"label":"Lorna Scott","version":31,"id":"73456","lastModified":"1302070067000","name":"Lorna Scott","type":"Person","_key":"33552"} +{"label":"Chris Pratt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57c\/4d4144e75e73d6572900057c\/chris-pratt-profile.jpg","version":53,"id":"73457","lastModified":"1302070067000","name":"Chris Pratt","type":"Person","_key":"33553"} +{"label":"Sophiya Haque","version":30,"id":"73458","lastModified":"1302070067000","name":"Sophiya Haque","type":"Person","_key":"33554"} +{"label":"Silberdisteln","description":"No overview found.","id":"8910","runtime":90,"imdbId":"tt0186546","version":40,"lastModified":"1301908594000","studio":"Bayrischer Rundfunk","genre":"Crime","title":"Silberdisteln","releaseDate":907286400000,"language":"en","type":"Movie","_key":"33555"} +{"label":"Eva-Maria H\u00f6fling","version":20,"id":"56239","lastModified":"1301902376000","name":"Eva-Maria H\u00f6fling","type":"Person","_key":"33556"} +{"label":"Pet Sematary","description":"Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.","id":"8913","runtime":103,"imdbId":"tt0098084","trailer":"http:\/\/www.youtube.com\/watch?v=v4DESmvKdvw","version":273,"lastModified":"1301902549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4d5f26355e73d60c5a00206e\/pet-sematary-mid.jpg","genre":"Drama","title":"Pet Sematary","releaseDate":609120000000,"language":"en","tagline":"A Pet Isn't Just For Life.","type":"Movie","_key":"33557"} +{"label":"Mary Lambert","version":32,"id":"56263","lastModified":"1301901976000","name":"Mary Lambert","type":"Person","_key":"33558"} +{"label":"Dale Midkiff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dec\/4d9598f65e73d62251002dec\/dale-midkiff-profile.jpg","version":33,"id":"56265","lastModified":"1301901469000","name":"Dale Midkiff","type":"Person","_key":"33559"} +{"label":"Fred Gwynne","version":29,"id":"56266","lastModified":"1301901696000","name":"Fred Gwynne","type":"Person","_key":"33560"} +{"label":"Brad Greenquist","version":27,"id":"56267","lastModified":"1301901789000","name":"Brad Greenquist","type":"Person","_key":"33561"} +{"label":"Deep Blue Sea","description":"With a voracious trio of mako sharks wreaking havoc, Deep Blue Sea dares to up the ante on Jaws, but director Renny Harlin trades the nuanced suspense of Spielberg's 1975 blockbuster for the trickery of the digital age. In other words, why build genuine terror when you can show ill-fated humans getting torn into bloody chunks? The aforementioned makos have been lab rats in an effort to harvest a m","id":"8914","runtime":105,"imdbId":"tt0149261","trailer":"http:\/\/www.youtube.com\/watch?v=qssMAI8xtLE","version":218,"lastModified":"1301902316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c12\/4c66fcad5e73d63462000c12\/deep-blue-sea-mid.jpg","studio":"PolyGram Audiovisuel","genre":"Action","title":"Deep Blue Sea","releaseDate":932947200000,"language":"en","tagline":"Bigger. Smarter. Faster. Meaner.","type":"Movie","_key":"33562"} +{"label":"Aida Turturro","version":21,"id":"106791","lastModified":"1301901861000","name":"Aida Turturro","type":"Person","_key":"33563"} +{"label":"Cristos","version":20,"id":"139997","lastModified":"1301902414000","name":"Cristos","type":"Person","_key":"33564"} +{"label":"Daniel Rey","version":19,"id":"141808","lastModified":"1301902214000","name":"Daniel Rey","type":"Person","_key":"33565"} +{"label":"Brent Roam","version":26,"id":"67351","lastModified":"1301901604000","name":"Brent Roam","type":"Person","_key":"33566"} +{"label":"Eyal Podell","version":26,"id":"61855","lastModified":"1301901580000","name":"Eyal Podell","type":"Person","_key":"33567"} +{"label":"Erinn Bartlett","version":25,"id":"60953","lastModified":"1301901467000","name":"Erinn Bartlett","type":"Person","_key":"33568"} +{"label":"Dan Thiel","version":19,"id":"141809","lastModified":"1301902402000","name":"Dan Thiel","type":"Person","_key":"33569"} +{"label":"Sabrina Geerinckx","version":19,"id":"141810","lastModified":"1301901851000","name":"Sabrina Geerinckx","type":"Person","_key":"33570"} +{"label":"Tajsha Thomas","version":20,"id":"141811","lastModified":"1301902170000","name":"Tajsha Thomas","type":"Person","_key":"33571"} +{"label":"Amelia","description":"A look at the life of legendary American pilot Amelia Earhart, who disappeared while flying over the Pacific Ocean in 1937 in an attempt to make a flight around the world.","id":"8915","runtime":111,"imdbId":"tt1129445","trailer":"http:\/\/www.youtube.com\/watch?v=ioZCEpRLpxo","homepage":"http:\/\/www.foxsearchlight.com\/amelia\/","version":301,"lastModified":"1301902170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/108\/4d8e6ec95e73d65f14001108\/amelia-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Action","title":"Amelia","releaseDate":1256256000000,"language":"en","type":"Movie","_key":"33572"} +{"label":"Aaron Abrams","version":35,"id":"56262","lastModified":"1301901400000","name":"Aaron Abrams","type":"Person","_key":"33573"} +{"label":"Antz","description":"In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.","id":"8916","runtime":83,"imdbId":"tt0120587","trailer":"http:\/\/www.youtube.com\/watch?v=1414","version":203,"lastModified":"1301901968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f3\/4c1e75045e73d60bb20000f3\/antz-mid.jpg","genre":"Adventure","title":"Antz","releaseDate":906163200000,"language":"en","tagline":"Every ant has his day.","type":"Movie","_key":"33574"} +{"label":"Jane Curtin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4caf01797b9aa1213900015a\/jane-curtin-profile.jpg","version":49,"id":"58184","lastModified":"1301901107000","name":"Jane Curtin","type":"Person","_key":"33575"} +{"label":"Grant Shaud","version":22,"id":"96595","lastModified":"1301942178000","name":"Grant Shaud","type":"Person","_key":"33576"} +{"label":"Hellraiser","description":"No overview found.","id":"8917","version":201,"lastModified":"1301904890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26f\/4c1deaa47b9aa117b200026f\/hellraiser-mid.jpg","genre":"Horror","title":"Hellraiser","language":"en","type":"Movie","_key":"33577"} +{"label":"The Hills Have Eyes Collection","description":"Mutants and monsters attack people who are \"unfortunate enough\" to be stranded near the desert...","id":"8918","version":55,"lastModified":"1301904954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4bc92329017a3c57fe00dff9\/the-hills-have-eyes-collection-mid.jpg","title":"The Hills Have Eyes Collection","language":"en","type":"Movie","_key":"33578"} +{"label":"Garfield","description":"Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.","id":"8920","runtime":80,"imdbId":"tt0356634","trailer":"http:\/\/www.youtube.com\/watch?v=HLG0Nqtiu2o","version":266,"lastModified":"1301901836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e4\/4d4d4d667b9aa13aba0086e4\/garfield-mid.jpg","genre":"Animation","title":"Garfield","releaseDate":1086912000000,"language":"en","tagline":"Get ready for frisky business.","type":"Movie","_key":"33579"} +{"label":"The Animatrix","description":"The Animatrix is a collection of several animated short films, detailing the backstory of the \"Matrix\" universe, and the original war between man and machines which led to the creation of the Matrix.","id":"8921","runtime":102,"imdbId":"tt0328832","trailer":"http:\/\/www.youtube.com\/watch?v=dqi_v6vhRE4","version":190,"lastModified":"1301902954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bfecc5e017a3c702f000e82\/the-animatrix-mid.jpg","studio":"Silver Pictures","genre":"Action","title":"The Animatrix","releaseDate":1050537600000,"language":"en","type":"Movie","_key":"33580"} +{"label":"Andy Jones","version":26,"id":"56338","lastModified":"1301901962000","name":"Andy Jones","type":"Person","_key":"33581"} +{"label":"Yoshiaki Kawajiri","version":38,"id":"56339","lastModified":"1301901460000","name":"Yoshiaki Kawajiri","type":"Person","_key":"33582"} +{"label":"Takeshi Koike","version":25,"id":"56340","lastModified":"1301901955000","name":"Takeshi Koike","type":"Person","_key":"33583"} +{"label":"Mahiro Maeda","version":26,"id":"56341","lastModified":"1301901777000","name":"Mahiro Maeda","type":"Person","_key":"33584"} +{"label":"Shinichir\u00f4 Watanabe","version":33,"id":"56342","lastModified":"1301901777000","name":"Shinichir\u00f4 Watanabe","type":"Person","_key":"33585"} +{"label":"Clayton Watson","version":23,"id":"56347","lastModified":"1301901675000","name":"Clayton Watson","type":"Person","_key":"33586"} +{"label":"John DeMita","version":26,"id":"56348","lastModified":"1301901370000","name":"John DeMita","type":"Person","_key":"33587"} +{"label":"Jeepers Creepers","description":"A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.","id":"8922","runtime":90,"imdbId":"tt0263488","version":159,"lastModified":"1301902396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2b\/4d40e27b7b9aa15bb5002e2b\/jeepers-creepers-mid.jpg","genre":"Horror","title":"Jeepers Creepers","releaseDate":996451200000,"language":"en","tagline":"What\u2019s eating you?","type":"Movie","_key":"33588"} +{"label":"Victor Salva","version":48,"id":"56349","lastModified":"1301901645000","name":"Victor Salva","type":"Person","_key":"33589"} +{"label":"Gina Philips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b6\/4be0a175017a3c35b70004b6\/gina-philips-profile.jpg","version":29,"id":"56356","lastModified":"1301901456000","name":"Gina Philips","type":"Person","_key":"33590"} +{"label":"Jonathan Breck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/656\/4d4486dc7b9aa15bbb006656\/jonathan-breck-profile.jpg","version":31,"id":"56357","lastModified":"1301901598000","name":"Jonathan Breck","type":"Person","_key":"33591"} +{"label":"Patricia Belcher","version":25,"id":"56358","lastModified":"1301901883000","name":"Patricia Belcher","type":"Person","_key":"33592"} +{"label":"Green Street Hooligans","description":"After being wrongfully expelled from Harvard University, American Matt Buckner flees to his sister's home in England. Once there, he is befriended by her charming and dangerous brother-in-law, Pete Dunham, and introduced to the underworld of British football hooliganism. Matt learns to stand his ground through a friendship that develops against the backdrop of this secret and often violent world. 'Green Street Hooligans' is a story of loyalty, trust and the sometimes brutal consequences of livin","id":"8923","runtime":109,"imdbId":"tt0385002","trailer":"http:\/\/www.youtube.com\/watch?v=1288","homepage":"http:\/\/www.warnervideo.com\/greenstreethooligans\/","version":160,"lastModified":"1301906834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4bc92332017a3c57fe00e038\/green-street-hooligans-mid.jpg","genre":"Action","title":"Green Street Hooligans","releaseDate":1110585600000,"language":"en","type":"Movie","_key":"33593"} +{"label":"Lexi Alexander","version":37,"id":"56359","lastModified":"1301901484000","name":"Lexi Alexander","type":"Person","_key":"33594"} +{"label":"Charlie Hunnam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b5\/4c967e645e73d63a740005b5\/charlie-hunnam-profile.jpg","version":35,"birthday":"324165600000","id":"56365","birthplace":"Newcastle, UK","lastModified":"1301901210000","name":"Charlie Hunnam","type":"Person","_key":"33595"} +{"label":"Bad Love","description":"No overview found.","id":"8924","runtime":0,"version":966,"lastModified":"1302042852000","genre":"Drama","title":"Bad Love","language":"en","type":"Movie","_key":"33596"} +{"label":"Naomi Campbell","version":33,"id":"56367","lastModified":"1301901651000","name":"Naomi Campbell","type":"Person","_key":"33597"} +{"label":"Christophe Rocancourt","version":16,"id":"56368","lastModified":"1301901814000","name":"Christophe Rocancourt","type":"Person","_key":"33598"} +{"label":"A Festa Da Menina Morta","description":"No overview found.","id":"8925","runtime":0,"imdbId":"tt1136609","version":60,"lastModified":"1301908134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4cdbfd437b9aa132750000bf\/a-festa-da-menina-morta-mid.jpg","studio":"Bananeira Filmes","title":"A Festa Da Menina Morta","releaseDate":1244764800000,"language":"en","type":"Movie","_key":"33599"} +{"label":"Afterschool","description":"A Internet-addicted prep-school student captures the drug overdose of two girls.","id":"8926","runtime":122,"imdbId":"tt1224366","trailer":"http:\/\/www.youtube.com\/watch?v=67a3wTljduM","version":146,"lastModified":"1301907144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4bc92333017a3c57fe00e041\/afterschool-mid.jpg","genre":"Drama","title":"Afterschool","releaseDate":1211068800000,"language":"en","type":"Movie","_key":"33600"} +{"label":"Antonio Campos","version":20,"id":"56369","lastModified":"1301901509000","name":"Antonio Campos","type":"Person","_key":"33601"} +{"label":"De ofrivilliga","description":"It's almost summer in Sweden and minor indiscretions and misbehavior abound. Leffe likes to show off for his friends and play salacious pranks, especially when he's drinking. Meanwhile, a righteous grade-school teacher doesn't know where to draw the line: she insists her fellow educators need a bit of instruction. Then there are two young teenage girls who like to pose for sexy photos and to party, but one night in a park, one of them is found passed out drunk by a complete stranger.","id":"8927","runtime":98,"imdbId":"tt1232826","trailer":"http:\/\/www.youtube.com\/watch?v=1899","version":82,"lastModified":"1301908326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4bc92333017a3c57fe00e04a\/de-ofrivilliga-mid.jpg","genre":"Drama","title":"De ofrivilliga","releaseDate":1227830400000,"language":"en","type":"Movie","_key":"33602"} +{"label":"Ruben \u00d6stlund","version":22,"id":"56370","lastModified":"1301902274000","name":"Ruben \u00d6stlund","type":"Person","_key":"33603"} +{"label":"Villmar Bj\u00f6rkman","version":19,"id":"115918","lastModified":"1301902896000","name":"Villmar Bj\u00f6rkman","type":"Person","_key":"33604"} +{"label":"Linnea Cart-Lamy","version":23,"id":"76894","lastModified":"1301901949000","name":"Linnea Cart-Lamy","type":"Person","_key":"33605"} +{"label":"Leif Edlund","version":19,"id":"115919","lastModified":"1301902896000","name":"Leif Edlund","type":"Person","_key":"33606"} +{"label":"Sara Eriksson","version":19,"id":"115920","lastModified":"1301902896000","name":"Sara Eriksson","type":"Person","_key":"33607"} +{"label":"Lola Ewerlund","version":19,"id":"115921","lastModified":"1301902896000","name":"Lola Ewerlund","type":"Person","_key":"33608"} +{"label":"Olle Liljas","version":19,"id":"115922","lastModified":"1301902896000","name":"Olle Liljas","type":"Person","_key":"33609"} +{"label":"Cecilia Milocco","version":19,"id":"115923","lastModified":"1301902896000","name":"Cecilia Milocco","type":"Person","_key":"33610"} +{"label":"Simeon Nordius","version":19,"id":"115924","lastModified":"1301902896000","name":"Simeon Nordius","type":"Person","_key":"33611"} +{"label":"Henrik Vikman","version":19,"id":"115925","lastModified":"1301902896000","name":"Henrik Vikman","type":"Person","_key":"33612"} +{"label":"Vera Vitali","version":19,"id":"115926","lastModified":"1301902896000","name":"Vera Vitali","type":"Person","_key":"33613"} +{"label":"Je veux voir","description":"No overview found.","id":"8928","runtime":75,"imdbId":"tt1068652","version":59,"lastModified":"1301905862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/053\/4bc92334017a3c57fe00e053\/je-veux-voir-mid.jpg","studio":"Mille et Une Productions","genre":"Documentary","title":"Je veux voir","releaseDate":1210982400000,"language":"en","type":"Movie","_key":"33614"} +{"label":"Joana Hadjithomas","version":20,"id":"56371","lastModified":"1301902173000","name":"Joana Hadjithomas","type":"Person","_key":"33615"} +{"label":"Khalil Joreige","version":20,"id":"56372","lastModified":"1301902172000","name":"Khalil Joreige","type":"Person","_key":"33616"} +{"label":"Rabih Mroue","version":18,"id":"56834","lastModified":"1301902373000","name":"Rabih Mroue","type":"Person","_key":"33617"} +{"label":"Johnny Mad Dog","description":"A cast of unknown performers are used in this drama about child soldiers fighting a war in an unnamed African country.","id":"8929","runtime":97,"imdbId":"tt1042424","homepage":"http:\/\/www.tfmdistribution.com\/johnnymaddog\/","version":169,"lastModified":"1301904508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/061\/4bc92339017a3c57fe00e061\/johnny-mad-dog-mid.jpg","studio":"TF1 Films Productions","genre":"Drama","title":"Johnny Mad Dog","releaseDate":1211241600000,"language":"en","type":"Movie","_key":"33618"} +{"label":"Jean-St\u00e9phane Sauvaire","version":19,"id":"56373","lastModified":"1301902225000","name":"Jean-St\u00e9phane Sauvaire","type":"Person","_key":"33619"} +{"label":"La vie moderne","description":"No overview found.","id":"8930","runtime":88,"imdbId":"tt0881310","version":94,"lastModified":"1301905858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38c\/4d06fc717b9aa11bc200338c\/la-vie-moderne-mid.jpg","title":"La vie moderne","releaseDate":1211068800000,"language":"en","type":"Movie","_key":"33620"} +{"label":"Raymond Depardon","version":23,"id":"56836","lastModified":"1301902381000","name":"Raymond Depardon","type":"Person","_key":"33621"} +{"label":"Los Bastardos","description":"A 24 hour period in the lives of Fausto and Jesus, two undocumented Mexican day-laborers in L.A. Each day another task, each day the same pressure to find money. They go about their daily routine, standing on the corner at the Home Improvement Store waiting for work to come. Today, the job they are given is well paid compared to their poor usual wages. ","id":"8931","runtime":90,"imdbId":"tt0841922","version":84,"lastModified":"1301907040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4bc9233a017a3c57fe00e06f\/los-bastardos-mid.jpg","genre":"Drama","title":"Los Bastardos","releaseDate":1211241600000,"language":"en","type":"Movie","_key":"33622"} +{"label":"Amat Escalante","version":20,"id":"56375","lastModified":"1301902392000","name":"Amat Escalante","type":"Person","_key":"33623"} +{"label":"Jesus Moises Rodriguez","version":20,"id":"84104","lastModified":"1301902357000","name":"Jesus Moises Rodriguez","type":"Person","_key":"33624"} +{"label":"Rub\u00e9n Sosa","version":20,"id":"84105","lastModified":"1301902369000","name":"Rub\u00e9n Sosa","type":"Person","_key":"33625"} +{"label":"Nina Zavarin","version":20,"id":"84106","lastModified":"1301902378000","name":"Nina Zavarin","type":"Person","_key":"33626"} +{"label":"Milh Hadha al-Bahr","description":"No overview found.","id":"8932","runtime":109,"imdbId":"tt1090680","version":50,"lastModified":"1301908498000","title":"Milh Hadha al-Bahr","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"33627"} +{"label":"Annemarie Jacir","version":20,"id":"56376","lastModified":"1301902180000","name":"Annemarie Jacir","type":"Person","_key":"33628"} +{"label":"O' Horten","description":"A drama focused on a life-changing moment in 67-year-old train engineer Odd Horten's existence: the evening of his retirement.","id":"8933","runtime":90,"imdbId":"tt0962774","homepage":"http:\/\/www.ohorten.pandorafilm.de","version":125,"lastModified":"1301906347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/078\/4bc9233b017a3c57fe00e078\/o-horten-mid.jpg","studio":"Pandora Film","genre":"Comedy","title":"O' Horten","releaseDate":1211328000000,"language":"en","type":"Movie","_key":"33629"} +{"label":"Bent Hamer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05b\/4cc47b725e73d6350600105b\/bent-hamer-profile.jpg","version":39,"id":"56377","lastModified":"1301901454000","name":"Bent Hamer","type":"Person","_key":"33630"} +{"label":"Soi Cowboy","description":"This film concerns a Scandinavian gentleman who works in film, perhaps as a sort of financier\/director\/producer. He lives in Thailand with his Thai girlfriend, and most of the film is an exploration of that relationship. We also see her brother, and a gangster that he works for.","id":"8934","runtime":117,"imdbId":"tt1224455","version":92,"lastModified":"1301908113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c3\/4c024f83017a3c702f0014c3\/soi-cowboy-mid.jpg","genre":"Drama","title":"Soi Cowboy","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"33631"} +{"label":"Thomas Clay","version":20,"id":"56378","lastModified":"1301902368000","name":"Thomas Clay","type":"Person","_key":"33632"} +{"label":"Parking","description":"No overview found.","id":"8935","runtime":112,"imdbId":"tt1232827","version":61,"lastModified":"1301908585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4bf56990017a3c772a000041\/ting-che-mid.jpg","genre":"Drama","title":"Parking","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"33633"} +{"label":"Mong-Hong Chung","version":18,"id":"56379","lastModified":"1301901957000","name":"Mong-Hong Chung","type":"Person","_key":"33634"} +{"label":"Bridget Jones Collection","description":"Bridget Jones is a franchise based on the fictional columnist with the same name. English writer Helen Fielding started her Bridget Jones's Diary column in The Independent in 1995, chronicling the life of Bridget Jones as a thirtysomething single woman in London as she tries to make sense of life and love with the help of a surrogate \"urban family\" of friends in the 1990s. ","id":"8936","version":44,"lastModified":"1301903471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/081\/4bc9233c017a3c57fe00e081\/bridget-jones-collection-mid.jpg","title":"Bridget Jones Collection","language":"en","type":"Movie","_key":"33635"} +{"label":"Tokyo Sonata","description":"This Cannes festival winner chronicles the implosion of an ordinary Japanese family in contemporary Tokyo. The father Ryuhei Sasaki is devoted to his work. His wife, Megumi, left on her own to manage the house, struggles to retain a bond with her son Takashi in college, and the younger Kenji, a sensitive boy in elementary school. Though seemingly normal, the schisms begin to tear the family apart.","id":"8937","runtime":120,"imdbId":"tt0938341","version":152,"lastModified":"1301905032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bc9233d017a3c57fe00e092\/8937-mid.jpg","studio":"Django Film","genre":"Drama","title":"Tokyo Sonata","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"33636"} +{"label":"Kiyoshi Kurosawa","version":38,"id":"26882","lastModified":"1301901427000","name":"Kiyoshi Kurosawa","type":"Person","_key":"33637"} +{"label":"Ky\u00f4ko Koizumi","version":25,"id":"79456","lastModified":"1301901784000","name":"Ky\u00f4ko Koizumi","type":"Person","_key":"33638"} +{"label":"Y\u00fb Koyanagi","version":19,"id":"85004","lastModified":"1301902507000","name":"Y\u00fb Koyanagi","type":"Person","_key":"33639"} +{"label":"Inowaki Kai","version":21,"id":"85005","lastModified":"1301902507000","name":"Inowaki Kai","type":"Person","_key":"33640"} +{"label":"T\u00f4ky\u00f4!","description":"T\u00f4ky\u00f4! is an anthology of three short films by directors Michel Gondry (France), Leos Carax (France) and Joon-ho Bong (Korea), each of whom offers an imaginative and transnatural\/supernatural glimpse into the Tokyo Megapolis.","id":"8938","runtime":112,"imdbId":"tt0976060","version":70,"lastModified":"1301904256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a7\/4bc9233f017a3c57fe00e0a7\/tokyo-mid.jpg","genre":"Drama","title":"T\u00f4ky\u00f4!","releaseDate":1210723200000,"language":"en","type":"Movie","_key":"33641"} +{"label":"Y\u00fb Aoi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bd\/4d0709937b9aa11bbf0033bd\/yu-aoi-profile.jpg","version":36,"id":"84028","lastModified":"1301901496000","name":"Y\u00fb Aoi","type":"Person","_key":"33642"} +{"label":"Ayako Fujitani","version":24,"id":"84029","lastModified":"1301902175000","name":"Ayako Fujitani","type":"Person","_key":"33643"} +{"label":"Tulpan","description":"Asa, a young and cheerful dreamer, returns from his Russian naval service to his sister\u2019s nomadic family on the desolate Hunger Steppe of central Asia, so that he can begin his own life as a shepherd. But before he can tend a flock of his own, Asa must first win the hand of the only eligible girl for miles, his mysterious neighbor - Tulpan.","id":"8939","runtime":100,"imdbId":"tt0436854","version":119,"lastModified":"1301905212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b5\/4bc92340017a3c57fe00e0b5\/tulpan-mid.jpg","genre":"Comedy","title":"Tulpan","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"33644"} +{"label":"Sergei Dvortsevoy","version":19,"id":"56380","lastModified":"1301902357000","name":"Sergei Dvortsevoy","type":"Person","_key":"33645"} +{"label":"Tyson","description":"Director James Toback takes an unflinching, uncompromising look at the life of Mike Tyson--almost solely from the perspective of the man himself. TYSON alternates between the controversial boxer addressing the camera and shots of the champion's fights to create an arresting picture of the man.","id":"8940","runtime":90,"imdbId":"tt1032821","version":173,"lastModified":"1301906515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72a\/4d6b231c5e73d6072900072a\/tyson-mid.jpg","genre":"Documentary","title":"Tyson","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"33646"} +{"label":"James Toback","version":38,"id":"56381","lastModified":"1301901702000","name":"James Toback","type":"Person","_key":"33647"} +{"label":"Mike Tyson","version":34,"id":"80757","lastModified":"1302059269000","name":"Mike Tyson","type":"Person","_key":"33648"} +{"label":"Versailles","description":"No overview found.","id":"8941","runtime":113,"imdbId":"tt1132607","version":84,"lastModified":"1301906075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4bc92345017a3c57fe00e0cb\/versailles-mid.jpg","studio":"Les Films Pell\u00e9as","genre":"Drama","title":"Versailles","releaseDate":1211155200000,"language":"en","type":"Movie","_key":"33649"} +{"label":"Pierre Sch\u00f6ller","version":18,"id":"56382","lastModified":"1301901883000","name":"Pierre Sch\u00f6ller","type":"Person","_key":"33650"} +{"label":"Max Baissette de Malglaive","version":26,"id":"72945","lastModified":"1301901411000","name":"Max Baissette de Malglaive","type":"Person","_key":"33651"} +{"label":"Judith Chemla","version":22,"id":"72946","lastModified":"1301901883000","name":"Judith Chemla","type":"Person","_key":"33652"} +{"label":"Patrick Descamps","version":25,"id":"71491","lastModified":"1301901648000","name":"Patrick Descamps","type":"Person","_key":"33653"} +{"label":"Matteo Giovannetti","version":20,"id":"72948","lastModified":"1301902274000","name":"Matteo Giovannetti","type":"Person","_key":"33654"} +{"label":"Brigitte Sy","version":22,"id":"72949","lastModified":"1301901731000","name":"Brigitte Sy","type":"Person","_key":"33655"} +{"label":"Franc Bruneau","version":20,"id":"72950","lastModified":"1301901883000","name":"Franc Bruneau","type":"Person","_key":"33656"} +{"label":"Philippe Dupagne","version":21,"id":"72951","lastModified":"1301901995000","name":"Philippe Dupagne","type":"Person","_key":"33657"} +{"label":"Wendy And Lucy","description":"A woman's life is derailed en route to a potentially lucrative summer job. When her car breaks down, and her dog is taken to the pound, the thin fabric of her financial situation comes apart, and she is led through a series of increasingly dire economic decisions. ","id":"8942","runtime":80,"imdbId":"tt1152850","version":167,"lastModified":"1301906833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dc\/4bc92349017a3c57fe00e0dc\/wendy-and-lucy-mid.jpg","genre":"Drama","title":"Wendy And Lucy","releaseDate":1211414400000,"language":"en","type":"Movie","_key":"33658"} +{"label":"Kelly Reichardt","version":24,"id":"56383","lastModified":"1301902200000","name":"Kelly Reichardt","type":"Person","_key":"33659"} +{"label":"Will Oldham","version":24,"id":"77080","lastModified":"1301901402000","name":"Will Oldham","type":"Person","_key":"33660"} +{"label":"Yi ban hai shui, yi ban huo yan","description":"Wong Yiu was a very shameless person and a blackmailer until one day he met a waitress named Ni Chen. He thought Ni Chen was like any other girls that could be controlled by him, but her stubbornness was way beyond his imagination. As time goes by, they both lost their ways and losing themselves in the process. He was not as free as he once was. Insanity causes him to end her life. Eight years later, Wong Yiu stepped out from the jail. He carried a gun and went to look for Ni Chen's mother at he","id":"8943","runtime":98,"imdbId":"tt1232825","version":57,"lastModified":"1301415924000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09f\/4c78fd475e73d613d800009f\/yi-ban-hai-shui-yi-ban-huo-yan-mid.jpg","genre":"Drama","title":"Yi ban hai shui, yi ban huo yan","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"33661"} +{"label":"Fendou Liu","version":21,"id":"15159","lastModified":"1301901716000","name":"Fendou Liu","type":"Person","_key":"33662"} +{"label":"Fan Liao","version":23,"id":"99692","lastModified":"1301901981000","name":"Fan Liao","type":"Person","_key":"33663"} +{"label":"Monica Mok","version":21,"id":"130570","lastModified":"1301902785000","name":"Monica Mok","type":"Person","_key":"33664"} +{"label":"What Just Happened","description":"Two weeks in the life of a fading Hollywood producer who's having a rough time trying to get his new picture made.","id":"8944","runtime":107,"imdbId":"tt0486674","trailer":"http:\/\/www.youtube.com\/watch?v=1039","homepage":"http:\/\/whatjusthappenedfilm.com\/","version":185,"lastModified":"1302070513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4bc9234c017a3c57fe00e0f9\/what-just-happened-mid.jpg","studio":"2929 Productions","genre":"Comedy","title":"What Just Happened","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"33665"} +{"label":"Mad Max Trilogy","description":"No overview found.","id":"8945","version":63,"lastModified":"1301903995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52b\/4c6df6425e73d65f7d00052b\/mad-max-trilogy-mid.jpg","title":"Mad Max Trilogy","language":"en","type":"Movie","_key":"33666"} +{"label":"Didi","description":"No overview found.","id":"8946","title":"Didi","language":"en","lastModified":"1301907412000","version":43,"type":"Movie","_key":"33667"} +{"label":"Dirty Tricks","description":"No overview found.","id":"8947","runtime":0,"version":63,"lastModified":"1301905003000","studio":"Paramount Pictures","genre":"Thriller","title":"Dirty Tricks","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"33668"} +{"label":"Mart\u00edn Hern\u00e1ndez","version":17,"id":"56400","lastModified":"1301901995000","name":"Mart\u00edn Hern\u00e1ndez","type":"Person","_key":"33669"} +{"label":"Die Perlmutterfarbe","description":"No overview found.","id":"8948","runtime":103,"imdbId":"tt1206486","version":61,"lastModified":"1301908584000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4bc9234e017a3c57fe00e10c\/die-perlmutterfarbe-mid.jpg","studio":"d.i.e.film","genre":"Drama","title":"Die Perlmutterfarbe","releaseDate":1231372800000,"language":"en","type":"Movie","_key":"33670"} +{"label":"Don't Think About It","description":"No overview found.","id":"8951","runtime":104,"imdbId":"tt1093382","version":93,"lastModified":"1301908326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/115\/4c7cebd17b9aa10976000115\/non-pensarci-mid.jpg","studio":"Pupkin Film","genre":"Drama","title":"Don't Think About It","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"33671"} +{"label":"Gianni Zanasi","version":23,"id":"56842","lastModified":"1301902152000","name":"Gianni Zanasi","type":"Person","_key":"33672"} +{"label":"Valerio Mastandrea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d1d\/4cd1c74a7b9aa16b9c000d1d\/valerio-mastandrea-profile.jpg","version":49,"id":"56843","lastModified":"1301902207000","name":"Valerio Mastandrea","type":"Person","_key":"33673"} +{"label":"Anita Caprioli","version":36,"id":"56844","lastModified":"1301902218000","name":"Anita Caprioli","type":"Person","_key":"33674"} +{"label":"I Love You Phillip Morris","description":"Bad Santa co-screenwriters Glenn Ficara and John Requa re-team for this fact-based black comedy starring Jim Carrey as a Virginia police officer-turned-con man who makes the leap to white-collar criminal after being sent to prison and falling in love with his sensitive cellmate. Steve Russell (Carrey) is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters ","id":"8952","runtime":102,"imdbId":"tt1045772","trailer":"http:\/\/www.youtube.com\/watch?v=yhjNNI4rs4s","version":213,"lastModified":"1302022448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/044\/4c1a29777b9aa1156c000044\/i-love-you-phillip-morris-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"I Love You Phillip Morris","releaseDate":1232236800000,"language":"en","tagline":"The Conman who wouldn't go straight.","type":"Movie","_key":"33675"} +{"label":"Glenn Ficarra","version":39,"id":"56411","lastModified":"1301901398000","name":"Glenn Ficarra","type":"Person","_key":"33676"} +{"label":"John Requa","version":50,"id":"56412","lastModified":"1301901398000","name":"John Requa","type":"Person","_key":"33677"} +{"label":"Nicholas Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/771\/4ce5b2f87b9aa168b4000771\/nicholas-alexander-profile.jpg","version":18,"id":"143260","lastModified":"1301901712000","name":"Nicholas Alexander","type":"Person","_key":"33678"} +{"label":"Michael Beasley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c0\/4ce5b3967b9aa168b00007c0\/michael-beasley-profile.jpg","version":18,"id":"143261","lastModified":"1301901853000","name":"Michael Beasley","type":"Person","_key":"33679"} +{"label":"Tony Bentley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0da\/4ce5b3ce7b9aa179ba0000da\/tony-bentley-profile.jpg","version":32,"id":"120253","lastModified":"1301901470000","name":"Tony Bentley","type":"Person","_key":"33680"} +{"label":"Allen Boudreaux","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ed\/4ce5b4037b9aa179bc0000ed\/allen-boudreaux-profile.jpg","version":31,"id":"120252","lastModified":"1301901335000","name":"Allen Boudreaux","type":"Person","_key":"33681"} +{"label":"Sean Boyd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4ce5b5767b9aa179bc0000fe\/sean-boyd-profile.jpg","version":27,"id":"86276","lastModified":"1301901334000","name":"Sean Boyd","type":"Person","_key":"33682"} +{"label":"Brennan Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/782\/4ce5b5aa7b9aa168b4000782\/brennan-brown-profile.jpg","version":18,"id":"143262","lastModified":"1301901851000","name":"Brennan Brown","type":"Person","_key":"33683"} +{"label":"Markus Lyle Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79a\/4ce5b5eb7b9aa168b300079a\/markus-lyle-brown-profile.jpg","version":18,"id":"143263","lastModified":"1301901604000","name":"Markus Lyle Brown","type":"Person","_key":"33684"} +{"label":"Trey Burvant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ca\/4ce5b6407b9aa168b00007ca\/trey-burvant-profile.jpg","version":18,"id":"143264","lastModified":"1301901852000","name":"Trey Burvant","type":"Person","_key":"33685"} +{"label":"Steamboy","description":"After receiving a package from his Grandfather, Rei, a young inventor living in England during the mid-19th century, has his life thrown into disarray. The package contains a \"Steam Ball\", a device of incredible power, and a letter asking him to guard it. Rei must evade capture from the nefarious \"O'Hara Foundation\" who will do anything to steal the device and use it for their own nefarious means.","id":"8953","runtime":126,"imdbId":"tt0348121","trailer":"http:\/\/www.youtube.com\/watch?v=0eAk6oNBSMU","version":200,"lastModified":"1301903277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc92353017a3c57fe00e123\/steamboy-mid.jpg","studio":"Sunrise","genre":"Animation","title":"Steamboy","releaseDate":1090022400000,"language":"en","type":"Movie","_key":"33686"} +{"label":"Masane Tsukayama","version":25,"id":"70120","lastModified":"1301901927000","name":"Masane Tsukayama","type":"Person","_key":"33687"} +{"label":"Katsuo Nakamura","version":25,"id":"70121","lastModified":"1301901930000","name":"Katsuo Nakamura","type":"Person","_key":"33688"} +{"label":"Manami Konishi","version":25,"id":"70122","lastModified":"1301902041000","name":"Manami Konishi","type":"Person","_key":"33689"} +{"label":"Kiyoshi Kodama","version":21,"id":"70123","lastModified":"1301901883000","name":"Kiyoshi Kodama","type":"Person","_key":"33690"} +{"label":"Ikki Sawamura","version":21,"id":"70124","lastModified":"1301901883000","name":"Ikki Sawamura","type":"Person","_key":"33691"} +{"label":"Reservation Road","description":"Two fathers' lives intersect when one of them is involved in a terrible and sudden hit-and-run car accident that leaves the other's son dead. In response, the two men (Joaquin Phoenix and Mark Ruffalo) react in unexpected ways as a reckoning looms in the near future. ","id":"8954","runtime":102,"imdbId":"tt0831884","trailer":"http:\/\/www.youtube.com\/watch?v=550","version":241,"lastModified":"1301902738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13c\/4bc92356017a3c57fe00e13c\/reservation-road-mid.jpg","studio":"Focus Features","genre":"Drama","title":"Reservation Road","releaseDate":1189641600000,"language":"en","type":"Movie","_key":"33692"} +{"label":"Sean Curley","version":20,"id":"56418","lastModified":"1301901614000","name":"Sean Curley","type":"Person","_key":"33693"} +{"label":"Eddie Alderson","version":20,"id":"56419","lastModified":"1301901581000","name":"Eddie Alderson","type":"Person","_key":"33694"} +{"label":"Cordell Clyde","version":17,"id":"56420","lastModified":"1301901619000","name":"Cordell Clyde","type":"Person","_key":"33695"} +{"label":"Nora Ferrari","version":19,"id":"56421","lastModified":"1301901614000","name":"Nora Ferrari","type":"Person","_key":"33696"} +{"label":"Linda Dano","version":22,"id":"56422","lastModified":"1301901937000","name":"Linda Dano","type":"Person","_key":"33697"} +{"label":"Der Wei\u00dfe mit dem Schwarzbrot","description":"No overview found.","id":"8959","runtime":73,"imdbId":"tt1003074","homepage":"http:\/\/www.der-weisse-mit-dem-schwarzbrot.de","version":38,"lastModified":"1301906739000","studio":"Doni Doni Film","genre":"Documentary","title":"Der Wei\u00dfe mit dem Schwarzbrot","releaseDate":1200182400000,"language":"en","type":"Movie","_key":"33698"} +{"label":"Jonas Grosch","version":21,"id":"56423","lastModified":"1301901671000","name":"Jonas Grosch","type":"Person","_key":"33699"} +{"label":"Madou Coulibaly","version":21,"id":"56427","lastModified":"1301902152000","name":"Madou Coulibaly","type":"Person","_key":"33700"} +{"label":"Hancock","description":"Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?","id":"8960","runtime":92,"imdbId":"tt0448157","trailer":"http:\/\/www.youtube.com\/watch?v=7E_Sg27AXC8","homepage":"http:\/\/www.sonypictures.com\/movies\/hancock\/","version":313,"lastModified":"1301901034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4bc92363017a3c57fe00e176\/hancock-mid.jpg","studio":"Forward Pass","genre":"Action","title":"Hancock","releaseDate":1214956800000,"language":"en","tagline":"Bad Behaviour. Bad Attitude. Real Hero.","type":"Movie","_key":"33701"} +{"label":"Hayley Marie Norman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36a\/4d8a38687b9aa13ade00036a\/hayley-marie-norman-profile.jpg","version":27,"id":"66623","lastModified":"1301901413000","name":"Hayley Marie Norman","type":"Person","_key":"33702"} +{"label":"Alexa Havins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/385\/4d8a390d7b9aa13ae7000385\/alexa-havins-profile.jpg","version":27,"id":"66630","lastModified":"1301901362000","name":"Alexa Havins","type":"Person","_key":"33703"} +{"label":"David Mattey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/387\/4d8a39587b9aa13ae4000387\/david-mattey-profile.jpg","version":29,"id":"66634","lastModified":"1301901213000","name":"David Mattey","type":"Person","_key":"33704"} +{"label":"Kate Clarke","version":25,"id":"66635","lastModified":"1301901382000","name":"Kate Clarke","type":"Person","_key":"33705"} +{"label":"Valerie Azlynn","version":26,"id":"66636","lastModified":"1301901475000","name":"Valerie Azlynn","type":"Person","_key":"33706"} +{"label":"Lily Mariye","version":25,"id":"66637","lastModified":"1301901338000","name":"Lily Mariye","type":"Person","_key":"33707"} +{"label":"Liz Wicker","version":25,"id":"66640","lastModified":"1301901382000","name":"Liz Wicker","type":"Person","_key":"33708"} +{"label":"Rosemary Garris","version":26,"id":"66643","lastModified":"1301901381000","name":"Rosemary Garris","type":"Person","_key":"33709"} +{"label":"Atticus Shaffer","version":25,"id":"66646","lastModified":"1301901382000","name":"Atticus Shaffer","type":"Person","_key":"33710"} +{"label":"Shea Curry","version":25,"id":"66647","lastModified":"1301901381000","name":"Shea Curry","type":"Person","_key":"33711"} +{"label":"Kyla Dang","version":25,"id":"66648","lastModified":"1301901338000","name":"Kyla Dang","type":"Person","_key":"33712"} +{"label":"Alexandra Nowak","version":25,"id":"66649","lastModified":"1301901381000","name":"Alexandra Nowak","type":"Person","_key":"33713"} +{"label":"Rio Ahn","version":25,"id":"66650","lastModified":"1301901306000","name":"Rio Ahn","type":"Person","_key":"33714"} +{"label":"Mary-Jessica Pitts","version":25,"id":"66651","lastModified":"1301901430000","name":"Mary-Jessica Pitts","type":"Person","_key":"33715"} +{"label":"Adam Del Rio","version":25,"id":"66652","lastModified":"1301901338000","name":"Adam Del Rio","type":"Person","_key":"33716"} +{"label":"Gregg Daniel","version":25,"id":"66653","lastModified":"1301901338000","name":"Gregg Daniel","type":"Person","_key":"33717"} +{"label":"Sumalee Montano","version":25,"id":"66655","lastModified":"1301901280000","name":"Sumalee Montano","type":"Person","_key":"33718"} +{"label":"Darren Dowler","version":25,"id":"66656","lastModified":"1301901254000","name":"Darren Dowler","type":"Person","_key":"33719"} +{"label":"Allan Havey","version":26,"id":"66657","lastModified":"1301901338000","name":"Allan Havey","type":"Person","_key":"33720"} +{"label":"Jae Head","version":45,"id":"66658","lastModified":"1301901267000","name":"Jae Head","type":"Person","_key":"33721"} +{"label":"Ryan Radis","version":25,"id":"66659","lastModified":"1301901306000","name":"Ryan Radis","type":"Person","_key":"33722"} +{"label":"Trieu Tran","version":27,"id":"61835","lastModified":"1301901238000","name":"Trieu Tran","type":"Person","_key":"33723"} +{"label":"Mark Simich","version":32,"id":"66660","lastModified":"1301901295000","name":"Mark Simich","type":"Person","_key":"33724"} +{"label":"Ron Fassler","version":32,"id":"66661","lastModified":"1302070360000","name":"Ron Fassler","type":"Person","_key":"33725"} +{"label":"Bryan Keith Ponton","version":23,"id":"66663","lastModified":"1301901306000","name":"Bryan Keith Ponton","type":"Person","_key":"33726"} +{"label":"Algerita Wynn Lewis","version":25,"id":"66664","lastModified":"1301901381000","name":"Algerita Wynn Lewis","type":"Person","_key":"33727"} +{"label":"Samantha Cannon","version":25,"id":"66666","lastModified":"1301901306000","name":"Samantha Cannon","type":"Person","_key":"33728"} +{"label":"Scott Michael Morgan","version":26,"id":"66667","lastModified":"1301901337000","name":"Scott Michael Morgan","type":"Person","_key":"33729"} +{"label":"Steve DeCastro","version":25,"id":"66668","lastModified":"1301901306000","name":"Steve DeCastro","type":"Person","_key":"33730"} +{"label":"Brandon Ford Green","version":25,"id":"66669","lastModified":"1301901381000","name":"Brandon Ford Green","type":"Person","_key":"33731"} +{"label":"Chris Mitchell","version":25,"id":"66671","lastModified":"1301901381000","name":"Chris Mitchell","type":"Person","_key":"33732"} +{"label":"Carson Aune","version":25,"id":"66678","lastModified":"1301901279000","name":"Carson Aune","type":"Person","_key":"33733"} +{"label":"Adam Van Conant","version":25,"id":"66679","lastModified":"1301901337000","name":"Adam Van Conant","type":"Person","_key":"33734"} +{"label":"Rick Mali","version":25,"id":"66680","lastModified":"1301901306000","name":"Rick Mali","type":"Person","_key":"33735"} +{"label":"Matt Bettinelli-Olpin","version":25,"id":"66681","lastModified":"1301901279000","name":"Matt Bettinelli-Olpin","type":"Person","_key":"33736"} +{"label":"Marlene Artov","version":25,"id":"66682","lastModified":"1301901305000","name":"Marlene Artov","type":"Person","_key":"33737"} +{"label":"Rico Devereaux","version":25,"id":"66683","lastModified":"1301901305000","name":"Rico Devereaux","type":"Person","_key":"33738"} +{"label":"Johnathan Hallgrey","version":25,"id":"66684","lastModified":"1301901279000","name":"Johnathan Hallgrey","type":"Person","_key":"33739"} +{"label":"Edward M. Kelahan","version":25,"id":"66685","lastModified":"1301901254000","name":"Edward M. Kelahan","type":"Person","_key":"33740"} +{"label":"Dawn Ressy","version":25,"id":"66686","lastModified":"1301901279000","name":"Dawn Ressy","type":"Person","_key":"33741"} +{"label":"Nicholas Rich","version":25,"id":"66687","lastModified":"1301901279000","name":"Nicholas Rich","type":"Person","_key":"33742"} +{"label":"Bad Boys II","description":"Martin Lawrence and Will Smith reunite as out-of-control trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force. Bullets fly, cars crash, and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Lawrence discovers that playboy Smith is secretly romancing his sexy sister Syd.","id":"8961","runtime":141,"imdbId":"tt0172156","trailer":"http:\/\/www.youtube.com\/watch?v=uPMGHTQfcBs","version":185,"lastModified":"1301901228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4bc92372017a3c57fe00e1c4\/bad-boys-ii-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Bad Boys II","releaseDate":1057708800000,"language":"en","tagline":"If you can't stand the heat, get out of Miami.","type":"Movie","_key":"33743"} +{"label":"Oleg Taktarov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/933\/4cb923347b9aa138d5000933\/oleg-taktarov-profile.jpg","version":54,"id":"77351","lastModified":"1301901203000","name":"Oleg Taktarov","type":"Person","_key":"33744"} +{"label":"Otto Sanchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/467\/4d28845c5e73d626b0002467\/otto-sanchez-profile.jpg","version":23,"id":"59739","lastModified":"1301901466000","name":"Otto Sanchez","type":"Person","_key":"33745"} +{"label":"Jason Manuel Olazabal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46c\/4d2883915e73d626ac00246c\/jason-manuel-olazabal-profile.jpg","version":16,"id":"147960","lastModified":"1301902207000","name":"Jason Manuel Olazabal","type":"Person","_key":"33746"} +{"label":"Crimson Tide","description":"Instability in Russia results in the deployment of the the nuclear submarine \"Alabama\". Russian rebels have taken over a nuclear missile site and are refueling them for a possible strike against the USA. Tensions run high undersea, when the launch message is received, followed by an incomplete followup. Could the followup message have been to cancel the earlier orders?","id":"8963","runtime":116,"imdbId":"tt0112740","version":128,"lastModified":"1301901826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1da\/4bc92374017a3c57fe00e1da\/crimson-tide-mid.jpg","studio":"Jerry Bruckheimer Films","genre":"Action","title":"Crimson Tide","releaseDate":800236800000,"language":"en","tagline":"Danger runs deep","type":"Movie","_key":"33747"} +{"label":"Aan ons den arbeid","description":"Documentary that shows the changing attitude towards immigrant labor in The Netherlands. The documentary follows three immigrants that arrived in Holland 30 years ago to work in a bakery. ","id":"8964","runtime":65,"trailer":"http:\/\/www.youtube.com\/watch?v=551","version":21,"lastModified":"1301906168000","genre":"Documentary","title":"Aan ons den arbeid","releaseDate":1196208000000,"language":"en","type":"Movie","_key":"33748"} +{"label":"Jeroen van Bergeijk","version":16,"id":"56429","lastModified":"1301902338000","name":"Jeroen van Bergeijk","type":"Person","_key":"33749"} +{"label":"Mohammed Fendhroussi","version":16,"id":"56430","lastModified":"1301902338000","name":"Mohammed Fendhroussi","type":"Person","_key":"33750"} +{"label":"Benaissa Boudich","version":16,"id":"56431","lastModified":"1301902338000","name":"Benaissa Boudich","type":"Person","_key":"33751"} +{"label":"Mohammed El Ghazi","version":16,"id":"56432","lastModified":"1301901957000","name":"Mohammed El Ghazi","type":"Person","_key":"33752"} +{"label":"Gert van Bergeijk","version":16,"id":"56433","lastModified":"1301902338000","name":"Gert van Bergeijk","type":"Person","_key":"33753"} +{"label":"Atlantis: Milo's Return","description":"Three different stories come to life in this sequel to the hit animated Disney adventure. Explorer Milo Thatch, his new sweetheart, Queen Kida, and the rest of the team are preparing to rebuild the underwater city. But trouble crops up. Harnessing the power of the crystal of Atlantis, the adventurers set out to defend their kingdom against dark forces that threaten from sand, sea and snow.","id":"8965","runtime":70,"imdbId":"tt0344864","version":137,"lastModified":"1301902329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f1\/4bc92378017a3c57fe00e1f1\/atlantis-milo-s-return-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Atlantis: Milo's Return","releaseDate":1051056000000,"language":"en","type":"Movie","_key":"33754"} +{"label":"Toby Shelton","version":23,"id":"56850","lastModified":"1301901786000","name":"Toby Shelton","type":"Person","_key":"33755"} +{"label":"Victor Cook","version":30,"id":"56851","lastModified":"1301901786000","name":"Victor Cook","type":"Person","_key":"33756"} +{"label":"Tad Stones","version":43,"id":"56852","lastModified":"1301901658000","name":"Tad Stones","type":"Person","_key":"33757"} +{"label":"Cree Summer","version":32,"id":"34985","lastModified":"1301901496000","name":"Cree Summer","type":"Person","_key":"33758"} +{"label":"Corey Burton","version":44,"id":"35219","lastModified":"1301901112000","name":"Corey Burton","type":"Person","_key":"33759"} +{"label":"Phil Morris","version":25,"id":"56853","lastModified":"1301902052000","name":"Phil Morris","type":"Person","_key":"33760"} +{"label":"Twilight","description":"When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she starts school and meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.","id":"8966","runtime":122,"imdbId":"tt1099212","trailer":"http:\/\/www.youtube.com\/watch?v=S2T7d8j6I5I","version":316,"lastModified":"1301901073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22c\/4bc9237f017a3c57fe00e22c\/twilight-mid.jpg","studio":"Summit Entertainment","genre":"Action","title":"Twilight","releaseDate":1227225600000,"language":"en","tagline":"When you can live forever, what do you live for?","type":"Movie","_key":"33761"} +{"label":"Peter Facinelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4d95dc045e73d62274003116\/peter-facinelli-profile.jpg","version":89,"id":"56857","lastModified":"1301901097000","name":"Peter Facinelli","type":"Person","_key":"33762"} +{"label":"Taylor Lautner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d6\/4c49b11e5e73d627100000d6\/taylor-lautner-profile.jpg","biography":"Born on February 11th, 1992 in Grand Rapids, Michigan, Taylor Daniel Lautner has shown he was destined for a successful life from a very young age. He began studying karate at the age of six, training at Fabiano's Karate School and, by the following year, he was already winning tournaments. He was soon invited to train with seven-time world karate champion Michael Chaturantabut (aka Mike Chat) and, when he was eight, he was asked to represent his country in the twelve years and under division i","version":98,"birthday":"697762800000","id":"84214","birthplace":"Grand Rapids, Michigan, USA ","lastModified":"1301904058000","name":"Taylor Lautner","type":"Person","_key":"33763"} +{"label":"Nikki Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f9\/4c8cb1bb5e73d6068f0003f9\/nikki-reed-profile.jpg","biography":"Reed was born in West Los Angeles, California, the daughter of Cheryl Houston, a beautician, and Seth Reed, a set designer. She has an older brother, Nathan August Reed. Reed's father is Jewish and her mother is of Cherokee and Italian descent; Reed was raised without religion, though she has described herself as \"Jewish\" and grew up around Judaism (her brother had a Bar Mitzvah).Reed has stated that her early home life was \"complicated.\" Her parents divorced when she was two, and she grew up wi","version":106,"birthday":"579823200000","id":"59252","birthplace":"Los Angeles, CA","lastModified":"1301901162000","name":"Nikki Reed","type":"Person","_key":"33764"} +{"label":"The Tree of Life","description":"The story centers around a family with three boys in the 1950s. The eldest son witnesses the loss of innocence.","id":"8967","runtime":0,"imdbId":"tt0478304","version":102,"lastModified":"1301939313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e1\/4d090e5a7b9aa101dc0006e1\/the-tree-of-life-mid.jpg","studio":"Plan B Entertainment","genre":"Drama","title":"The Tree of Life","releaseDate":1306454400000,"language":"en","type":"Movie","_key":"33765"} +{"label":"Jessica Chastain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ac\/4cc855ae5e73d650250002ac\/jessica-chastain-profile.jpg","version":29,"id":"83002","lastModified":"1301901199000","name":"Jessica Chastain","type":"Person","_key":"33766"} +{"label":"Joanna Going","version":28,"id":"59662","lastModified":"1301901365000","name":"Joanna Going","type":"Person","_key":"33767"} +{"label":"Boogeyman","description":"Every culture has one - the horrible monster fueling young children's nightmares. But for Tim, the Boogeyman still lives in his memories as a creature that devoured his father 16 years earlier. Is the Boogeyman real? Or did Tim make him up to explain why his father abandoned his family?","id":"8968","runtime":89,"imdbId":"tt0357507","homepage":"www.uip.de\/lo\/goodies\/posters\/pl_boogeyman.html","version":146,"lastModified":"1301904073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23f\/4bc92381017a3c57fe00e23f\/boogeyman-mid.jpg","studio":"Screen Gems","genre":"Drama","title":"Boogeyman","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"33768"} +{"label":"Stephen T. Kay","version":36,"id":"56435","lastModified":"1301901957000","name":"Stephen T. Kay","type":"Person","_key":"33769"} +{"label":"Emily Deschanel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/275\/4ca2fa5e7b9aa168b4000275\/emily-deschanel-profile.jpg","biography":"Emily Erin Deschanel is an American actress and television producer, best known for playing Dr. Temperance \"Bones\" Brennan in the comedy-crime drama Bones.","version":31,"id":"25933","lastModified":"1301901304000","name":"Emily Deschanel","type":"Person","_key":"33770"} +{"label":"Tory Mussett","version":21,"id":"56436","lastModified":"1301901510000","name":"Tory Mussett","type":"Person","_key":"33771"} +{"label":"Die andere Dimension - 22:22","description":"No overview found.","id":"8969","runtime":60,"version":22,"lastModified":"1301906739000","genre":"Horror","title":"Die andere Dimension - 22:22","releaseDate":1211155200000,"language":"en","type":"Movie","_key":"33772"} +{"label":"Helene Dworak","version":18,"id":"56434","lastModified":"1301901957000","name":"Helene Dworak","type":"Person","_key":"33773"} +{"label":"The Out-of-Towners","description":"The remake of the 1970 Neil Simon comedy follows the adventures of a couple, Henry and Nancy Clark, vexed by misfortune while in New York City for a job interview.","id":"8970","runtime":90,"imdbId":"tt0129280","version":143,"lastModified":"1301904889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4d1d3bd67b9aa1736b000071\/the-out-of-towners-mid.jpg","studio":"Cherry Alley Productions","genre":"Comedy","title":"The Out-of-Towners","releaseDate":923011200000,"language":"en","type":"Movie","_key":"33774"} +{"label":"Mark McKinney","version":24,"id":"56867","lastModified":"1301902159000","name":"Mark McKinney","type":"Person","_key":"33775"} +{"label":"Sam Weisman","version":33,"id":"54967","lastModified":"1301901565000","name":"Sam Weisman","type":"Person","_key":"33776"} +{"label":"Neger, Neger, Schornsteinfeger","description":"No overview found.","id":"8972","runtime":180,"imdbId":"tt0464129","version":41,"lastModified":"1301906168000","genre":"Drama","title":"Neger, Neger, Schornsteinfeger","releaseDate":1159660800000,"language":"en","type":"Movie","_key":"33777"} +{"label":"Thando Walbaum","version":20,"id":"58322","lastModified":"1301901829000","name":"Thando Walbaum","type":"Person","_key":"33778"} +{"label":"G\u00f6tz Schubert","version":22,"id":"36709","lastModified":"1301901470000","name":"G\u00f6tz Schubert","type":"Person","_key":"33779"} +{"label":"J\u00f6rg Gr\u00fcnler","version":20,"id":"38600","lastModified":"1301901496000","name":"J\u00f6rg Gr\u00fcnler","type":"Person","_key":"33780"} +{"label":"Lord of Illusions","description":"Private investigator Harry D'Amour stumbles over members of a fanatic cult, who are waiting for the resurrection of their leader Nix. 13 years ago Nix was calmed down by his best trainee Swann. In the meantime Swann is advanced to a populary illusionist like David Copperfield and is married to the charming Dorothea. She hires D'Amour to protect Swann against the evil cult members.","id":"8973","runtime":119,"imdbId":"tt0113690","version":270,"lastModified":"1301905296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4bc92384017a3c57fe00e248\/lord-of-illusions-mid.jpg","studio":"Seraphim Films","genre":"Crime","title":"Lord of Illusions","releaseDate":788918400000,"language":"en","type":"Movie","_key":"33781"} +{"label":"J. Trevor Edmond","version":23,"id":"56439","lastModified":"1301901682000","name":"J. Trevor Edmond","type":"Person","_key":"33782"} +{"label":"Joseph Latimore","version":20,"id":"56440","lastModified":"1301902192000","name":"Joseph Latimore","type":"Person","_key":"33783"} +{"label":"Sheila Tousey","version":23,"id":"56441","lastModified":"1301901814000","name":"Sheila Tousey","type":"Person","_key":"33784"} +{"label":"The War of the Worlds","description":"H.G. Well's classic novel is brought to life is this tale of alien invasion. The resisdents of a small town are excited when a flaming meteor lands in the hills. Thier joy is tempered some what when they discover it has passengers who are not very friendly. The movie itself is understood better when you consider it was made at the height of the Cold War - just replace Martian with Russian.","id":"8974","runtime":85,"imdbId":"tt0046534","trailer":"http:\/\/www.youtube.com\/watch?v=K_4B9qa_iM0","version":155,"lastModified":"1301902181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e37\/4d31c14f5e73d6334f000e37\/the-war-of-the-worlds-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"The War of the Worlds","releaseDate":-536457600000,"language":"en","type":"Movie","_key":"33785"} +{"label":"Gene Barry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4bdadb3f017a3c5d8500008b\/gene-barry-profile.jpg","version":32,"id":"56442","lastModified":"1301901510000","name":"Gene Barry","type":"Person","_key":"33786"} +{"label":"Ann Robinson","version":27,"id":"103079","lastModified":"1301901803000","name":"Ann Robinson","type":"Person","_key":"33787"} +{"label":"Robert Cornthwaite","version":33,"id":"56444","lastModified":"1301901504000","name":"Robert Cornthwaite","type":"Person","_key":"33788"} +{"label":"Sandro Giglio","version":24,"id":"56445","lastModified":"1301902165000","name":"Sandro Giglio","type":"Person","_key":"33789"} +{"label":"The Marine","description":"A group of diamond thieves on the run kidnap the wife of a recently discharged marine who goes on a chase through the South Carolinian wilderness to retrieve her.","id":"8975","runtime":92,"imdbId":"tt0419946","version":245,"lastModified":"1301902304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26b\/4bc9238a017a3c57fe00e26b\/the-marine-mid.jpg","genre":"Action","title":"The Marine","releaseDate":1160697600000,"language":"en","type":"Movie","_key":"33790"} +{"label":"John Cena","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b2\/4ca481357b9aa16ed60001b2\/john-cena-profile.jpg","version":43,"id":"56446","lastModified":"1301904077000","name":"John Cena","type":"Person","_key":"33791"} +{"label":"Kelly Carlson","version":36,"id":"56447","lastModified":"1301901475000","name":"Kelly Carlson","type":"Person","_key":"33792"} +{"label":"Jeff Chase","version":25,"id":"56448","lastModified":"1301901476000","name":"Jeff Chase","type":"Person","_key":"33793"} +{"label":"Jerome Ehlers","version":24,"id":"56449","lastModified":"1301902368000","name":"Jerome Ehlers","type":"Person","_key":"33794"} +{"label":"Firass Dirani","version":23,"id":"56450","lastModified":"1301901731000","name":"Firass Dirani","type":"Person","_key":"33795"} +{"label":"John Bonito","version":22,"id":"56453","lastModified":"1301901731000","name":"John Bonito","type":"Person","_key":"33796"} +{"label":"A Lot Like Love","description":"On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?","id":"8976","runtime":107,"imdbId":"tt0391304","version":208,"lastModified":"1301903156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b00\/4d5f2bb87b9aa154cb002b00\/a-lot-like-love-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"A Lot Like Love","releaseDate":1114128000000,"language":"en","type":"Movie","_key":"33797"} +{"label":"James Read","version":25,"id":"56456","lastModified":"1301902384000","name":"James Read","type":"Person","_key":"33798"} +{"label":"Aimee Garcia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4d26817a7b9aa134dc0010c6\/aimee-garcia-profile.jpg","version":38,"id":"56457","lastModified":"1301901448000","name":"Aimee Garcia","type":"Person","_key":"33799"} +{"label":"La Soci\u00e9t\u00e9 du spectacle","description":"No overview found.","id":"8977","runtime":90,"imdbId":"tt0070712","version":32,"lastModified":"1301907361000","genre":"Documentary","title":"La Soci\u00e9t\u00e9 du spectacle","releaseDate":94694400000,"language":"en","type":"Movie","_key":"33800"} +{"label":"Guy Debord","version":22,"id":"56458","lastModified":"1301901651000","name":"Guy Debord","type":"Person","_key":"33801"} +{"label":"Assault on Precinct 13","description":"On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.","id":"8978","runtime":91,"imdbId":"tt0398712","trailer":"http:\/\/www.youtube.com\/watch?v=bvBVGeNY1W4","version":212,"lastModified":"1301902305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4bed9299017a3c458a000028\/assault-on-precinct-13-mid.jpg","studio":"Rogue Pictures","genre":"Action","title":"Assault on Precinct 13","releaseDate":1106092800000,"language":"en","tagline":"Unite and fight.","type":"Movie","_key":"33802"} +{"label":"Jean-Fran\u00e7ois Richet","version":36,"id":"58324","lastModified":"1301901365000","name":"Jean-Fran\u00e7ois Richet","type":"Person","_key":"33803"} +{"label":"Drea de Matteo","version":32,"id":"70767","lastModified":"1301902152000","name":"Drea de Matteo","type":"Person","_key":"33804"} +{"label":"Ja Rule","version":32,"id":"61658","lastModified":"1301901565000","name":"Ja Rule","type":"Person","_key":"33805"} +{"label":"Wayne's World Collection","description":"Wayne Campbell and Garth Algar are the hosts of Wayne's World, a local Friday late-night cable access program based in Aurora, Illinois, where they ogle pictures of beautiful celebrity women, play air guitar and drums, and interview local people, indirectly making fun of them over the course of the interview.","id":"8979","version":210,"lastModified":"1301905528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2be\/4bc92392017a3c57fe00e2be\/wayne-s-world-collection-mid.jpg","title":"Wayne's World Collection","language":"en","type":"Movie","_key":"33806"} +{"label":"Mortadelo & Filemon: The Big Adventure","description":"Al Profesor Bacterio le han robado el m\u00e1s peligroso de sus inventos, un artefacto que termina en manos de un dictador bajito, chalado criminal. El Super lo tiene claro: si quiere recuperarlo, no debe contar con sus agentes Mortadelo y Filem\u00f3n. Cuando \u00e9stos se enteran de que la TIA ha contratado a un detective para resolver el caso, deciden actuar por su cuenta \u00bfSalvar\u00e1n al mundo o acabar\u00e1n con \u00e9l?","id":"8980","runtime":88,"imdbId":"tt0314121","trailer":"http:\/\/www.youtube.com\/watch?v=3340","version":381,"lastModified":"1301903931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d3\/4bc92396017a3c57fe00e2d3\/la-gran-aventura-de-mortadelo-y-filemon-mid.jpg","genre":"Action","title":"Mortadelo & Filemon: The Big Adventure","language":"en","type":"Movie","_key":"33807"} +{"label":"Benito Pocino","version":21,"id":"56465","lastModified":"1301902274000","name":"Benito Pocino","type":"Person","_key":"33808"} +{"label":"Paco Sag\u00e1rzazu","version":21,"id":"56467","lastModified":"1301902386000","name":"Paco Sag\u00e1rzazu","type":"Person","_key":"33809"} +{"label":"Mariano Venancio","version":22,"id":"56468","lastModified":"1301901777000","name":"Mariano Venancio","type":"Person","_key":"33810"} +{"label":"Janfri Topera","version":21,"id":"56469","lastModified":"1301902274000","name":"Janfri Topera","type":"Person","_key":"33811"} +{"label":"Javier Fesser","version":32,"id":"56470","lastModified":"1301901777000","name":"Javier Fesser","type":"Person","_key":"33812"} +{"label":"Dear Frankie","description":"Lizzie Morrison, her opinionated, chain-smoking mother Nell, and nine-year-old deaf son Frankie frequently move to keep one step ahead of her abusive ex-husband and his family. Newly relocated in the Scottish seaside town of Greenock, she accepts a job at the local fish and chips shop owned by Marie and enrolls the boy in school.","id":"8981","runtime":105,"imdbId":"tt0377752","version":206,"lastModified":"1301903191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ec\/4bc92398017a3c57fe00e2ec\/dear-frankie-mid.jpg","genre":"Drama","title":"Dear Frankie","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"33813"} +{"label":"Katy Murphy","version":20,"id":"56471","lastModified":"1301901614000","name":"Katy Murphy","type":"Person","_key":"33814"} +{"label":"Sophie Main","version":20,"id":"56472","lastModified":"1301901731000","name":"Sophie Main","type":"Person","_key":"33815"} +{"label":"Mary Riggans","version":20,"id":"56473","lastModified":"1301901538000","name":"Mary Riggans","type":"Person","_key":"33816"} +{"label":"Shona Auerbach","version":25,"id":"56474","lastModified":"1301901537000","name":"Shona Auerbach","type":"Person","_key":"33817"} +{"label":"The Protector","description":"A young fighter named Kham must go to Australia to retrieve his stolen elephant. With the help of a Thai-born Australian detective, Kham must take on all comers, including a gang led by an evil woman and her two deadly bodyguards.","id":"8982","runtime":108,"imdbId":"tt0427954","trailer":"http:\/\/www.youtube.com\/watch?v=8-XZf1a6_R4","version":183,"lastModified":"1301903168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4bc92398017a3c57fe00e2f9\/tom-yum-goong-mid.jpg","genre":"Action","title":"The Protector","releaseDate":1123718400000,"language":"en","type":"Movie","_key":"33818"} +{"label":"Tony Jaa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c55\/4cd11d0e7b9aa16b9d000c55\/tony-jaa-profile.jpg","biography":"Panom Yeerum was born on February 5, 1976, in the northeastern province of Surin, Thailand. His parents were elephant herders. Panom watched martial arts films as a young kid and began to emulate some of his idols, from Bruce Lee to Jackie Chan to Jet Li. After seeing the Thai action film Kerd ma lui (2004) (\"Born to Fight\"), Panom met and studied martial arts and stunt work as a teen under the director of that film, Panna Rittikrai. Panom went to university where he studied a variety of martial","version":70,"birthday":"192322800000","id":"57207","birthplace":"Thailand","lastModified":"1301901102000","name":"Tony Jaa","type":"Person","_key":"33819"} +{"label":"Petchtai Wongkamlao","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16a\/4cdcfdf17b9aa1380100016a\/petchtai-wongkamlao-profile.jpg","version":41,"id":"57208","lastModified":"1301901200000","name":"Petchtai Wongkamlao","type":"Person","_key":"33820"} +{"label":"Bongkoj Khongmalai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4cdcac917b9aa13803000115\/bongkoj-khongmalai-profile.jpg","version":31,"id":"57209","lastModified":"1301901531000","name":"Bongkoj Khongmalai","type":"Person","_key":"33821"} +{"label":"Xing Jing","version":26,"id":"57210","lastModified":"1301901565000","name":"Xing Jing","type":"Person","_key":"33822"} +{"label":"Prachya Pinkaew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f7\/4cdf9d1b5e73d60f6e0000f7\/prachya-pinkaew-profile.jpg","version":57,"id":"57214","lastModified":"1301901807000","name":"Prachya Pinkaew","type":"Person","_key":"33823"} +{"label":"Felidae","description":"No overview found.","id":"8983","runtime":82,"imdbId":"tt0109791","version":83,"lastModified":"1301903856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/302\/4bc92399017a3c57fe00e302\/felidae-mid.jpg","genre":"Animation","title":"Felidae","releaseDate":783820800000,"language":"en","type":"Movie","_key":"33824"} +{"label":"Michael Schaack","version":34,"id":"56477","lastModified":"1301901504000","name":"Michael Schaack","type":"Person","_key":"33825"} +{"label":"Disclosure","description":"A computer specialist is sued for sexual harassment by a former lover turned boss who initiated the act forcefully, which threatens both his career and his personal life.","id":"8984","runtime":123,"imdbId":"tt0109635","version":220,"lastModified":"1301902968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f58\/4d4cad617b9aa13aaf007f58\/disclosure-mid.jpg","genre":"Crime","title":"Disclosure","releaseDate":783820800000,"language":"en","tagline":"Sex Is Power","type":"Movie","_key":"33826"} +{"label":"Jacqueline Kim","version":26,"id":"56485","lastModified":"1301902203000","name":"Jacqueline Kim","type":"Person","_key":"33827"} +{"label":"Visions of Europe","description":"No overview found.","id":"8985","runtime":140,"imdbId":"tt0425624","homepage":"http:\/\/www.visionsofeurope.dk\/","version":35,"lastModified":"1301907232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4d5d9dee5e73d60c5c001542\/visions-of-europe-mid.jpg","studio":"Zentropa Productions","genre":"Drama","title":"Visions of Europe","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"33828"} +{"label":"Jan Troell","version":29,"id":"27014","lastModified":"1301901651000","name":"Jan Troell","type":"Person","_key":"33829"} +{"label":"Milk Money","description":"Young Frank and his pals get an idea for the ultimate in excitement. They decide to pool their savings, bicycle to the nearby Big City, and hire some woman of the streets to strip for them. Things do not work out that simply, but they do meet V, a Hooker With A Heart Of Gold, who ends up giving them a ride home","id":"8986","runtime":104,"imdbId":"tt0110516","version":173,"lastModified":"1301904462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/314\/4bc9239d017a3c57fe00e314\/milk-money-mid.jpg","genre":"Action","title":"Milk Money","releaseDate":778291200000,"language":"en","type":"Movie","_key":"33830"} +{"label":"Michael Patrick Carter","version":20,"id":"56486","lastModified":"1301901883000","name":"Michael Patrick Carter","type":"Person","_key":"33831"} +{"label":"Adam LaVorgna","version":20,"id":"56487","lastModified":"1301901900000","name":"Adam LaVorgna","type":"Person","_key":"33832"} +{"label":"The River Wild","description":"While on a family vacation, Meryl Streep takes on a pair of armed killers (led by Kevin Bacn) while navigating a spectacularly violent river.","id":"8987","runtime":108,"imdbId":"tt0110997","version":147,"lastModified":"1301903711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc9239d017a3c57fe00e31d\/the-river-wild-mid.jpg","genre":"Action","title":"The River Wild","releaseDate":844041600000,"language":"en","tagline":"The vacation is over.","type":"Movie","_key":"33833"} +{"label":"Stephanie Sawyer","version":25,"id":"56490","lastModified":"1301902274000","name":"Stephanie Sawyer","type":"Person","_key":"33834"} +{"label":"Stop-Loss","description":"A veteran soldier returns from his completed tour of duty in Iraq, only to find his life turned upside down when he is arbitrarily ordered to return to field duty by the Army.","id":"8988","runtime":113,"imdbId":"tt0489281","trailer":"http:\/\/www.youtube.com\/watch?v=1803","homepage":"http:\/\/www.stoplossmovie.com\/","version":172,"lastModified":"1301902727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32f\/4bc9239f017a3c57fe00e32f\/stop-loss-mid.jpg","studio":"MTV Films","genre":"Drama","title":"Stop-Loss","releaseDate":1205366400000,"language":"en","type":"Movie","_key":"33835"} +{"label":"Harry and the Hendersons","description":"Returning from a hunting trip in the forest, the Henderson family's car hits an animal in the road. At first they fear it was a man, but when they examine the \"body\" they find it's a \"bigfoot\". They think it's dead so they decide to take it home (there could be some money in this). As you guessed, it isn't dead. Far from being the ferocious monster they fear \"Harry\" to be, he's a friendly giant.","id":"8989","runtime":111,"imdbId":"tt0093148","trailer":"http:\/\/www.youtube.com\/watch?v=RLHg_71ZBro","version":129,"lastModified":"1301902955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33c\/4bc923a1017a3c57fe00e33c\/harry-and-the-hendersons-mid.jpg","genre":"Comedy","title":"Harry and the Hendersons","releaseDate":566697600000,"language":"en","type":"Movie","_key":"33836"} +{"label":"William Dear","version":53,"id":"56506","lastModified":"1301901370000","name":"William Dear","type":"Person","_key":"33837"} +{"label":"Margaret Langrick","version":24,"id":"56509","lastModified":"1301901676000","name":"Margaret Langrick","type":"Person","_key":"33838"} +{"label":"Joshua Rudoy","version":23,"id":"56510","lastModified":"1301901994000","name":"Joshua Rudoy","type":"Person","_key":"33839"} +{"label":"Das kleine Arschloch und der alte Sack - Sterben ist Schei\u00dfe","description":"No overview found.","id":"8990","runtime":79,"imdbId":"tt0483706","homepage":" www.kleinesarschloch2.de","version":39,"lastModified":"1301906168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34f\/4bc923a4017a3c57fe00e34f\/das-kleine-arschloch-und-der-alte-sack-sterben-ist-scheie-mid.jpg","genre":"Animation","title":"Das kleine Arschloch und der alte Sack - Sterben ist Schei\u00dfe","releaseDate":1165708800000,"language":"en","type":"Movie","_key":"33840"} +{"label":"Undead","description":"A quaint Australian fishing village is overcome by meteorites that turn its residents into the ravenous undead, leaving a small group of those unharmed to find a way out.","id":"8991","runtime":97,"imdbId":"tt0339840","version":145,"lastModified":"1301903057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/358\/4bc923a8017a3c57fe00e358\/undead-mid.jpg","genre":"Action","title":"Undead","releaseDate":1062633600000,"language":"en","type":"Movie","_key":"33841"} +{"label":"Felicity Mason","version":21,"id":"56495","lastModified":"1301902022000","name":"Felicity Mason","type":"Person","_key":"33842"} +{"label":"Mungo McKay","version":24,"id":"56496","lastModified":"1301901953000","name":"Mungo McKay","type":"Person","_key":"33843"} +{"label":"Rob Jenkins","version":21,"id":"56497","lastModified":"1301901988000","name":"Rob Jenkins","type":"Person","_key":"33844"} +{"label":"Lisa Cunningham","version":21,"id":"56498","lastModified":"1301902031000","name":"Lisa Cunningham","type":"Person","_key":"33845"} +{"label":"Dirk Hunter","version":21,"id":"56499","lastModified":"1301902203000","name":"Dirk Hunter","type":"Person","_key":"33846"} +{"label":"Emma Randall","version":21,"id":"56500","lastModified":"1301902203000","name":"Emma Randall","type":"Person","_key":"33847"} +{"label":"Michael Spierig","version":53,"id":"56501","lastModified":"1301901360000","name":"Michael Spierig","type":"Person","_key":"33848"} +{"label":"Peter Spierig","version":53,"id":"56502","lastModified":"1301901360000","name":"Peter Spierig","type":"Person","_key":"33849"} +{"label":"The Sure Thing","description":"Gib, a beer-guzzling slob, and Alison, an uptight Ivy-Leaguer, are an unlikely duo stuck together on a cross-country trip during Christmas break. At first they get on each other's nerves but, as time passes, they find their divergent natures complement each other. Now they need to realize what they've already found before it's too late.","id":"8992","runtime":100,"imdbId":"tt0090103","version":137,"lastModified":"1301903065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36d\/4bc923a9017a3c57fe00e36d\/the-sure-thing-mid.jpg","genre":"Adventure","title":"The Sure Thing","releaseDate":489369600000,"language":"en","tagline":"A sure thing comes once in a lifetime... but the real thing lasts forever.","type":"Movie","_key":"33850"} +{"label":"C(r)ook","description":"A killer for the Russian Mafia in Vienna wants to retire and write a book about his passion - cooking. The mafia godfather suspects treason.","id":"8995","runtime":108,"imdbId":"tt0407617","version":89,"lastModified":"1301904044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4bc923aa017a3c57fe00e376\/c-r-ook-mid.jpg","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Comedy","title":"C(r)ook","releaseDate":1100131200000,"language":"en","type":"Movie","_key":"33851"} +{"label":"Karlheinz Hackl","version":20,"id":"38740","lastModified":"1301901675000","name":"Karlheinz Hackl","type":"Person","_key":"33852"} +{"label":"Vincent Klink","version":20,"id":"56524","lastModified":"1301902368000","name":"Vincent Klink","type":"Person","_key":"33853"} +{"label":"Europa Europa","description":"No overview found.","id":"8996","runtime":108,"imdbId":"tt0099776","version":99,"lastModified":"1301903480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38c\/4bc923ab017a3c57fe00e38c\/europa-europa-mid.jpg","studio":"CCC Filmkunst GmbH","genre":"Drama","title":"Europa Europa","releaseDate":631152000000,"language":"en","type":"Movie","_key":"33854"} +{"label":"Piotr Kozlowski","version":19,"id":"56529","lastModified":"1301902274000","name":"Piotr Kozlowski","type":"Person","_key":"33855"} +{"label":"Andrzej Mastalerz","version":20,"id":"56530","lastModified":"1301902274000","name":"Andrzej Mastalerz","type":"Person","_key":"33856"} +{"label":"Hollow Man 2","description":"In Seattle, after the mysterious death of the scientist Dr. Devin Villiers, Detective Frank Turner and his partner Det. Lisa Martinez are assigned to protect Devin's colleague Dr. Maggie Dalton. Lisa is killed while protecting Maggie, and Frank presses her to tell what is happening. She discloses that a veteran soldier called Michael Griffin was submitted to an experiment with the objective of creating the ultimate national security weapon, an undetectable soldier. However, the experiment failed","id":"8997","runtime":91,"imdbId":"tt0469916","version":214,"lastModified":"1301902782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39a\/4bc923ae017a3c57fe00e39a\/hollow-man-2-mid.jpg","genre":"Action","title":"Hollow Man 2","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"33857"} +{"label":"Claudio F\u00e4h","version":26,"id":"56533","lastModified":"1301901565000","name":"Claudio F\u00e4h","type":"Person","_key":"33858"} +{"label":"Laura Regan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf7\/4cf5a53f5e73d6299e000bf7\/laura-regan-profile.jpg","version":36,"id":"73836","lastModified":"1301901237000","name":"Laura Regan","type":"Person","_key":"33859"} +{"label":"Sarah Deakins","version":24,"id":"87147","lastModified":"1301902400000","name":"Sarah Deakins","type":"Person","_key":"33860"} +{"label":"Jessica Harmon","version":21,"id":"58398","lastModified":"1301902048000","name":"Jessica Harmon","type":"Person","_key":"33861"} +{"label":"Sonya Salomaa","version":22,"id":"103286","lastModified":"1301902040000","name":"Sonya Salomaa","type":"Person","_key":"33862"} +{"label":"Terri Anne Welyki","version":22,"id":"127809","lastModified":"1301903032000","name":"Terri Anne Welyki","type":"Person","_key":"33863"} +{"label":"John Shaw","version":30,"id":"79346","lastModified":"1302070360000","name":"John Shaw","type":"Person","_key":"33864"} +{"label":"David Abbott","version":21,"id":"127810","lastModified":"1301902435000","name":"David Abbott","type":"Person","_key":"33865"} +{"label":"Hamish Cameron","version":21,"id":"127811","lastModified":"1301902833000","name":"Hamish Cameron","type":"Person","_key":"33866"} +{"label":"Zara Taylor","version":21,"id":"127812","lastModified":"1301902472000","name":"Zara Taylor","type":"Person","_key":"33867"} +{"label":"Nolan Gerard Funk","version":24,"id":"82819","lastModified":"1301902324000","name":"Nolan Gerard Funk","type":"Person","_key":"33868"} +{"label":"Friends With Money","description":"The story of four best friends whose comfortable lives are thrown off balance as the realities of early middle age set in. It paints a painfully hillarious portrait of modern life in the class sensitive west side of Los Angeles.","id":"8998","runtime":88,"imdbId":"tt0436331","version":166,"lastModified":"1301904296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a3\/4bc923af017a3c57fe00e3a3\/friends-with-money-mid.jpg","genre":"Drama","title":"Friends With Money","releaseDate":1157587200000,"language":"en","type":"Movie","_key":"33869"} +{"label":"Hailey Noelle Johnson","version":28,"id":"56538","lastModified":"1301997896000","name":"Hailey Noelle Johnson","type":"Person","_key":"33870"} +{"label":"Nicole Holofcener","version":27,"id":"56539","lastModified":"1301963681000","name":"Nicole Holofcener","type":"Person","_key":"33871"} +{"label":"Derailed","description":"When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.","id":"8999","runtime":108,"imdbId":"tt0398017","version":176,"lastModified":"1301997513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a06\/4d4a50487b9aa13ab4000a06\/derailed-mid.jpg","studio":"Miramax Films","genre":"Drama","title":"Derailed","releaseDate":1131667200000,"language":"en","type":"Movie","_key":"33872"} +{"label":"Addison Timlin","version":23,"id":"56542","lastModified":"1301901763000","name":"Addison Timlin","type":"Person","_key":"33873"} +{"label":"Sandra Bee","version":23,"id":"56543","lastModified":"1301902125000","name":"Sandra Bee","type":"Person","_key":"33874"} +{"label":"Hellraiser","description":"An unfaithful wife encounters the zombie of her dead lover, who's being chased by demons after he escaped from their sado-masochistic Hell.","id":"9003","runtime":94,"imdbId":"tt0093177","trailer":"http:\/\/www.youtube.com\/watch?v=P7TWm3Akw-s","version":157,"lastModified":"1301906918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a8\/4c47b2bc5e73d61ef90002a8\/hellraiser-mid.jpg","genre":"Horror","title":"Hellraiser","releaseDate":558316800000,"language":"en","type":"Movie","_key":"33875"} +{"label":"Ashley Laurence","version":28,"id":"56551","lastModified":"1301901845000","name":"Ashley Laurence","type":"Person","_key":"33876"} +{"label":"Sean Chapman","version":25,"id":"56552","lastModified":"1301901978000","name":"Sean Chapman","type":"Person","_key":"33877"} +{"label":"Robert Hines","version":20,"id":"56553","lastModified":"1301902196000","name":"Robert Hines","type":"Person","_key":"33878"} +{"label":"Anthony Allen","version":20,"id":"56554","lastModified":"1301902053000","name":"Anthony Allen","type":"Person","_key":"33879"} +{"label":"Leon Davis","version":20,"id":"56555","lastModified":"1301902191000","name":"Leon Davis","type":"Person","_key":"33880"} +{"label":"Michael Cassidy","version":23,"id":"56556","lastModified":"1301902000000","name":"Michael Cassidy","type":"Person","_key":"33881"} +{"label":"Kenneth Nelson","version":20,"id":"56557","lastModified":"1301902180000","name":"Kenneth Nelson","type":"Person","_key":"33882"} +{"label":"Gay Baynes","version":20,"id":"56558","lastModified":"1301902185000","name":"Gay Baynes","type":"Person","_key":"33883"} +{"label":"Nicholas Vince","version":20,"id":"56559","lastModified":"1301902198000","name":"Nicholas Vince","type":"Person","_key":"33884"} +{"label":"Simon Bamford","version":20,"id":"56560","lastModified":"1301902180000","name":"Simon Bamford","type":"Person","_key":"33885"} +{"label":"Grace Kirby","version":20,"id":"56561","lastModified":"1301902165000","name":"Grace Kirby","type":"Person","_key":"33886"} +{"label":"Raul Newney","version":20,"id":"56562","lastModified":"1301902165000","name":"Raul Newney","type":"Person","_key":"33887"} +{"label":"BioShock","description":"No overview found.","id":"9004","runtime":0,"version":46,"lastModified":"1301907426000","genre":"Action","title":"BioShock","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"33888"} +{"label":"The Ice Harvest","description":"A shady lawyer attempts a Christmas Eve crime, hoping to swindle the local mob out of some money. But his partner, a strip club owner, might have different plans for the cash.","id":"9005","runtime":88,"imdbId":"tt0400525","version":178,"lastModified":"1301903046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f6\/4bc923ba017a3c57fe00e3f6\/the-ice-harvest-mid.jpg","studio":"Focus Features","genre":"Action","title":"The Ice Harvest","releaseDate":1125705600000,"language":"en","type":"Movie","_key":"33889"} +{"label":"Lara Phillips","version":26,"id":"56563","lastModified":"1301901553000","name":"Lara Phillips","type":"Person","_key":"33890"} +{"label":"Bill Noble","version":19,"id":"56564","lastModified":"1301902096000","name":"Bill Noble","type":"Person","_key":"33891"} +{"label":"Brad Smith","version":19,"id":"56565","lastModified":"1301902274000","name":"Brad Smith","type":"Person","_key":"33892"} +{"label":"Just Like Heaven","description":"Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.","id":"9007","runtime":95,"imdbId":"tt0425123","trailer":"http:\/\/www.youtube.com\/watch?v=1122","version":169,"lastModified":"1301902396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a75\/4d4f17bc7b9aa13aab00aa75\/just-like-heaven-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"Just Like Heaven","releaseDate":1104537600000,"language":"en","tagline":"It's a wonderful afterlife.","type":"Movie","_key":"33893"} +{"label":"Dina Waters","version":26,"id":"56567","lastModified":"1301901597000","name":"Dina Waters","type":"Person","_key":"33894"} +{"label":"The Insider","description":"Tells the true story of a 60 Minutes television series expos\u00e9 of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand","id":"9008","runtime":157,"imdbId":"tt0140352","trailer":"http:\/\/www.youtube.com\/watch?v=1861","version":138,"lastModified":"1301901933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4bc923c0017a3c57fe00e415\/the-insider-mid.jpg","genre":"Drama","title":"The Insider","releaseDate":941068800000,"language":"en","type":"Movie","_key":"33895"} +{"label":"Dark Water","description":"Dahlia Williams and her daughter Cecelia move into a rundown apartment on New York's Roosevelt Island. She is currently in midst of divorce proceedings and the apartment, though near an excellent school for her daughter, is all she can afford. From the time she arrives, there are mysterious occurrences and there is a constant drip from the ceiling in her daughter's bedroom.","id":"9009","runtime":108,"imdbId":"tt0382628","version":339,"lastModified":"1301903102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8dc\/4c5f19825e73d63a6f0008dc\/dark-water-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"Dark Water","releaseDate":1120780800000,"language":"en","type":"Movie","_key":"33896"} +{"label":"Silentium","description":"No overview found.","id":"9010","runtime":110,"imdbId":"tt0386038","version":72,"lastModified":"1301904234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/458\/4bc923ca017a3c57fe00e458\/silentium-mid.jpg","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Crime","title":"Silentium","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"33897"} +{"label":"Maria K\u00f6stlinger","version":18,"id":"56572","lastModified":"1301902109000","name":"Maria K\u00f6stlinger","type":"Person","_key":"33898"} +{"label":"Christoph Schlingensief","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7bb\/4d3087735e73d667ed0007bb\/christoph-schlingensief-profile.jpg","version":21,"birthday":"-289962000000","id":"18415","birthplace":"Oberhausen, Germany","lastModified":"1301901421000","name":"Christoph Schlingensief","type":"Person","_key":"33899"} +{"label":"The Prophecy 3: The Ascent","description":"The conclusion to The Prophecy Trilogy. Once again, Christopher Walken returns as the Arch-Angel Gabriel. As the War in Heaven and on Earth rages on, Pyriel, the Angel of Genocide, rises to power, intending to destroy all of mankind. The only one who stands in his way is Danyael, who was born of an Angel and a woman.","id":"9011","runtime":103,"imdbId":"tt0183678","version":111,"lastModified":"1301904390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/461\/4bc923cc017a3c57fe00e461\/the-prophecy-3-the-ascent-mid.jpg","genre":"Horror","title":"The Prophecy 3: The Ascent","releaseDate":952992000000,"language":"en","type":"Movie","_key":"33900"} +{"label":"Dave Buzzotta","version":22,"id":"56574","lastModified":"1301901587000","name":"Dave Buzzotta","type":"Person","_key":"33901"} +{"label":"Kayren Butler","version":22,"id":"56575","lastModified":"1301901587000","name":"Kayren Butler","type":"Person","_key":"33902"} +{"label":"Steve Hytner","version":22,"id":"56576","lastModified":"1301901835000","name":"Steve Hytner","type":"Person","_key":"33903"} +{"label":"Jackass: The Movie","description":"Johnny Knoxville and his crazy friends appear on the big screen for the very first time in Jackass: The Movie. They wander around Japan in panda outfits, wreak havoc on a once civilized golf course, they even do stunts involving LIVE alligators, and so on. While Johnny Knoxvile and his pals put their life at risk, they are entertaining people at the same time. Get ready for Jackass: The Movie!! ","id":"9012","runtime":87,"imdbId":"tt0322802","version":139,"lastModified":"1301901985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46a\/4bc923cc017a3c57fe00e46a\/jackass-the-movie-mid.jpg","genre":"Comedy","title":"Jackass: The Movie","releaseDate":1035158400000,"language":"en","type":"Movie","_key":"33904"} +{"label":"Jeff Tremaine","version":35,"id":"56578","lastModified":"1301901642000","name":"Jeff Tremaine","type":"Person","_key":"33905"} +{"label":"Bam Margera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ad\/4bdd518a017a3c20c20001ad\/bam-margera-profile.jpg","version":42,"birthday":"307321200000","id":"56584","birthplace":"West Chester, PA","lastModified":"1301901325000","name":"Bam Margera","type":"Person","_key":"33906"} +{"label":"Steve-O","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a3f\/4cf581825e73d6299e000a3f\/steve-o-profile.jpg","version":36,"id":"56585","lastModified":"1301901223000","name":"Steve-O","type":"Person","_key":"33907"} +{"label":"Chris Pontius","version":32,"id":"56586","lastModified":"1301901348000","name":"Chris Pontius","type":"Person","_key":"33908"} +{"label":"Midnight Run","description":"An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.","id":"9013","runtime":126,"imdbId":"tt0095631","trailer":"http:\/\/www.youtube.com\/watch?v=B1_N28DA3gY","version":373,"lastModified":"1301901841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/481\/4bc923ce017a3c57fe00e481\/midnight-run-mid.jpg","genre":"Action","title":"Midnight Run","releaseDate":584582400000,"language":"en","type":"Movie","_key":"33909"} +{"label":"ProSieben Funny Movie","description":"No overview found.","id":"9014","title":"ProSieben Funny Movie","language":"en","lastModified":"1301907708000","version":510,"type":"Movie","_key":"33910"} +{"label":"H3: Halloween Horror Hostel","description":"No overview found.","id":"9015","runtime":80,"imdbId":"tt1143145","version":53,"lastModified":"1301908325000","studio":"Rat Pack Filmproduktion GmbH","genre":"Comedy","title":"H3: Halloween Horror Hostel","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"33911"} +{"label":"Max Giermann","version":20,"id":"56600","lastModified":"1301901731000","name":"Max Giermann","type":"Person","_key":"33912"} +{"label":"Holger Gotha","version":19,"id":"56601","lastModified":"1301902096000","name":"Holger Gotha","type":"Person","_key":"33913"} +{"label":"Alfonso Losa","version":19,"id":"56602","lastModified":"1301901883000","name":"Alfonso Losa","type":"Person","_key":"33914"} +{"label":"Ivonne Sch\u00f6nherr","version":20,"id":"56603","lastModified":"1301902096000","name":"Ivonne Sch\u00f6nherr","type":"Person","_key":"33915"} +{"label":"Hendrik von B\u00fcltzingsl\u00f6wen","version":20,"id":"56604","lastModified":"1301901731000","name":"Hendrik von B\u00fcltzingsl\u00f6wen","type":"Person","_key":"33916"} +{"label":"Mirjam Weichselbraun","version":19,"id":"56605","lastModified":"1301902274000","name":"Mirjam Weichselbraun","type":"Person","_key":"33917"} +{"label":"Anni Wendler","version":19,"id":"56606","lastModified":"1301902274000","name":"Anni Wendler","type":"Person","_key":"33918"} +{"label":"Santiago Ziesmer","version":19,"id":"56607","lastModified":"1301902274000","name":"Santiago Ziesmer","type":"Person","_key":"33919"} +{"label":"Treasure Planet","description":"When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!","id":"9016","runtime":91,"imdbId":"tt0133240","trailer":"http:\/\/www.youtube.com\/watch?v=yRc83yZY1oc","version":171,"lastModified":"1301907505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4bc923cf017a3c57fe00e48f\/treasure-planet-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Adventure","title":"Treasure Planet","releaseDate":1036454400000,"language":"en","tagline":"Find your place in the universe.","type":"Movie","_key":"33920"} +{"label":"Brian Murray","version":25,"id":"56618","lastModified":"1301901916000","name":"Brian Murray","type":"Person","_key":"33921"} +{"label":"Outpost","description":"Outpost follows a crack team of battle-hardened mercenaries on a routine mission to protect a mysterious businessman through the no-man's land of war-torn Eastern Europe. However, after he leads them to a long forgotten, underground outpost, they unwittingly reawaken a lurking terror that soon changes their mission from one of safe-guarding, to one of survival, as they desperately battle an enemy.","id":"9017","runtime":90,"imdbId":"tt0892899","version":229,"lastModified":"1301902597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a1\/4bc923d2017a3c57fe00e4a1\/outpost-mid.jpg","genre":"Horror","title":"Outpost","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"33922"} +{"label":"Ray Stevenson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/351\/4bf738db017a3c7732000351\/ray-stevenson-profile.jpg","biography":"Ray Stevenson was born in Lisburn, Northern Ireland on 25 May 1964. He is a film, TV and stage actor. He moved with his family to Lemington, Newcastle-Upon-Tyne, England in 1972 at the age of eight, and later to Cramlington, Northumberland, where he was raised. The second of three sons of a Royal Air Force pilot father and an Irish mother, As a child he dreamed to become an actor, but he also thought that dream was impossible. So he pursued his other love, art, and went to art school instead. He","version":56,"birthday":"-176864400000","id":"56614","birthplace":"Lisburn, Northern Ireland, UK","lastModified":"1301904090000","name":"Ray Stevenson","type":"Person","_key":"33923"} +{"label":"Paul Blair","version":22,"id":"56615","lastModified":"1301901614000","name":"Paul Blair","type":"Person","_key":"33924"} +{"label":"Brett Fancy","version":20,"id":"56616","lastModified":"1301902096000","name":"Brett Fancy","type":"Person","_key":"33925"} +{"label":"Enoch Frost","version":20,"id":"56617","lastModified":"1301901883000","name":"Enoch Frost","type":"Person","_key":"33926"} +{"label":"Julian Rivett","version":21,"id":"56619","lastModified":"1301902096000","name":"Julian Rivett","type":"Person","_key":"33927"} +{"label":"Johnny Meres","version":20,"id":"56620","lastModified":"1301901883000","name":"Johnny Meres","type":"Person","_key":"33928"} +{"label":"Xuki Robeli","version":20,"id":"56621","lastModified":"1301901883000","name":"Xuki Robeli","type":"Person","_key":"33929"} +{"label":"Charlie Jeffrey","version":20,"id":"56623","lastModified":"1301901883000","name":"Charlie Jeffrey","type":"Person","_key":"33930"} +{"label":"Graeme Temple","version":20,"id":"56624","lastModified":"1301902096000","name":"Graeme Temple","type":"Person","_key":"33931"} +{"label":"Steve Barker","version":21,"id":"56635","lastModified":"1301901814000","name":"Steve Barker","type":"Person","_key":"33932"} +{"label":"Eine wie keiner","description":"No overview found.","id":"9019","runtime":80,"imdbId":"tt1146292","version":27,"lastModified":"1301908582000","studio":"Rat Pack Filmproduktion GmbH","genre":"Comedy","title":"Eine wie keiner","releaseDate":1206403200000,"language":"en","type":"Movie","_key":"33933"} +{"label":"Spiel mir das Lied und du bist tot","description":"No overview found.","id":"9020","runtime":72,"imdbId":"tt1146293","version":26,"lastModified":"1301908545000","studio":"Rat Pack Filmproduktion GmbH","genre":"Comedy","title":"Spiel mir das Lied und du bist tot","releaseDate":1207008000000,"language":"en","type":"Movie","_key":"33934"} +{"label":"The Santa Clause 2","description":"Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.","id":"9021","runtime":105,"imdbId":"tt0304669","version":175,"lastModified":"1301902912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4aa\/4bc923d3017a3c57fe00e4aa\/the-mrs-clause-santa-clause-2-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"The Santa Clause 2","releaseDate":1035676800000,"language":"en","tagline":"What's Christmas Fun without some Reindeer Games?","type":"Movie","_key":"33935"} +{"label":"Michael Lembeck","version":36,"id":"15045","lastModified":"1301901650000","name":"Michael Lembeck","type":"Person","_key":"33936"} +{"label":"All The Boys Love Mandy Lane","description":"The orphan Mandy Lane is a beautiful, virgin and pure teenager raised by her aunt, desired by her schoolmates and a close friend of the outcast Emmet. After the death of their high school mate in a pool party, Mandy befriends Chloe, Marlin, Red, Bird and Jake. Red invites the group for a weekend party in the isolated ranch of his family.","id":"9022","runtime":90,"imdbId":"tt0490076","trailer":"http:\/\/www.youtube.com\/watch?v=s2mvnu74Tfw","homepage":"www.mandylane.co.uk","version":187,"lastModified":"1301964076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25d\/4d9a81057b9aa164c300025d\/all-the-boys-love-mandy-lane-mid.jpg","studio":"Occupant Films","genre":"Horror","title":"All The Boys Love Mandy Lane","releaseDate":1157760000000,"language":"en","type":"Movie","_key":"33937"} +{"label":"Jonathan Levine","version":29,"id":"56661","lastModified":"1301901412000","name":"Jonathan Levine","type":"Person","_key":"33938"} +{"label":"Anson Mount","version":28,"id":"56675","lastModified":"1301901645000","name":"Anson Mount","type":"Person","_key":"33939"} +{"label":"Michael Welch","version":71,"id":"56676","lastModified":"1301901114000","name":"Michael Welch","type":"Person","_key":"33940"} +{"label":"Whitney Able","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15b\/4cd5b9397b9aa11b2600015b\/whitney-able-profile.jpg","version":40,"birthday":"-90000000","id":"56677","lastModified":"1301901162000","name":"Whitney Able","type":"Person","_key":"33941"} +{"label":"Edwin Hodge","version":21,"id":"56679","lastModified":"1301902274000","name":"Edwin Hodge","type":"Person","_key":"33942"} +{"label":"Luke Grimes","version":22,"id":"56680","lastModified":"1301901883000","name":"Luke Grimes","type":"Person","_key":"33943"} +{"label":"Melissa Price","version":21,"id":"56681","lastModified":"1301902274000","name":"Melissa Price","type":"Person","_key":"33944"} +{"label":"Adam Powell","version":21,"id":"56682","lastModified":"1301902274000","name":"Adam Powell","type":"Person","_key":"33945"} +{"label":"Peyton Hayslip","version":22,"id":"56684","lastModified":"1301901731000","name":"Peyton Hayslip","type":"Person","_key":"33946"} +{"label":"Brooke Bloom","version":25,"id":"56685","lastModified":"1301901883000","name":"Brooke Bloom","type":"Person","_key":"33947"} +{"label":"Robert Earl Keen","version":21,"id":"56686","lastModified":"1301902274000","name":"Robert Earl Keen","type":"Person","_key":"33948"} +{"label":"Spirit: Stallion of the Cimarron","description":"As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.","id":"9023","runtime":80,"imdbId":"tt0166813","version":168,"lastModified":"1301902012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2a\/4ccf8df65e73d65024000d2a\/spirit-stallion-of-the-cimarron-mid.jpg","studio":"DreamWorks Animation","genre":"Adventure","title":"Spirit: Stallion of the Cimarron","releaseDate":1021680000000,"language":"en","tagline":"Leader. Hero. Legend.","type":"Movie","_key":"33949"} +{"label":"Daniel Studi","version":25,"id":"56658","lastModified":"1301901681000","name":"Daniel Studi","type":"Person","_key":"33950"} +{"label":"Jeff LeBeau","version":25,"id":"56659","lastModified":"1301902013000","name":"Jeff LeBeau","type":"Person","_key":"33951"} +{"label":"John Rubano","version":25,"id":"35095","lastModified":"1301901414000","name":"John Rubano","type":"Person","_key":"33952"} +{"label":"Lorna Cook","version":26,"id":"56660","lastModified":"1301902022000","name":"Lorna Cook","type":"Person","_key":"33953"} +{"label":"For Love or Money","description":"In this sparkling romantic comedy, a hotel concierge (Fox) falls for the mistress of a shady investor and must choose between his lifelong dream and the love of his life.","id":"9024","runtime":92,"imdbId":"tt0106941","version":122,"lastModified":"1301903071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4de\/4bc923da017a3c57fe00e4de\/for-love-or-money-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"For Love or Money","releaseDate":752371200000,"language":"en","type":"Movie","_key":"33954"} +{"label":"Fyvush Finkel","version":20,"id":"56687","lastModified":"1301901731000","name":"Fyvush Finkel","type":"Person","_key":"33955"} +{"label":"Sandra Reaves-Phillips","version":20,"id":"56688","lastModified":"1301902096000","name":"Sandra Reaves-Phillips","type":"Person","_key":"33956"} +{"label":"La Chanze","version":20,"id":"56689","lastModified":"1301902096000","name":"La Chanze","type":"Person","_key":"33957"} +{"label":"Mike Moyer","version":20,"id":"56690","lastModified":"1301902274000","name":"Mike Moyer","type":"Person","_key":"33958"} +{"label":"Saverio Guerra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fe\/4d2887535e73d626a80024fe\/saverio-guerra-profile.jpg","version":31,"id":"56691","lastModified":"1301901769000","name":"Saverio Guerra","type":"Person","_key":"33959"} +{"label":"Daniel Hagen","version":20,"id":"56692","lastModified":"1301902274000","name":"Daniel Hagen","type":"Person","_key":"33960"} +{"label":"Paula Laurence","version":20,"id":"56693","lastModified":"1301902274000","name":"Paula Laurence","type":"Person","_key":"33961"} +{"label":"Donna Mitchell","version":26,"id":"56694","lastModified":"1301901526000","name":"Donna Mitchell","type":"Person","_key":"33962"} +{"label":"Michael Tucker","version":32,"id":"56695","lastModified":"1301901837000","name":"Michael Tucker","type":"Person","_key":"33963"} +{"label":"Isaac Mizrahi","version":20,"id":"56696","lastModified":"1301902274000","name":"Isaac Mizrahi","type":"Person","_key":"33964"} +{"label":"Hundstage","description":"In a suburb of Vienna during some hot summer days: A teacher who is in bondage to a sleazy pimp, a very importunate hitchhiker, a private detective on the run for some car vandals, a couple with a serious marriage problem and an old man, whose wife died long before on the search for some sexual entertainment live their lives while their lifelines cross from time to time.","id":"9025","runtime":121,"imdbId":"tt0290661","version":85,"lastModified":"1301903337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4eb\/4bc923db017a3c57fe00e4eb\/hundstage-mid.jpg","genre":"Drama","title":"Hundstage","releaseDate":999475200000,"language":"en","type":"Movie","_key":"33965"} +{"label":"Alfred Mrva","version":22,"id":"56698","lastModified":"1301901883000","name":"Alfred Mrva","type":"Person","_key":"33966"} +{"label":"Franziska Weisz","version":27,"id":"56699","lastModified":"1301902053000","name":"Franziska Weisz","type":"Person","_key":"33967"} +{"label":"Christine Jirku","version":22,"id":"56700","lastModified":"1301901883000","name":"Christine Jirku","type":"Person","_key":"33968"} +{"label":"Viktor Hennemann","version":22,"id":"56701","lastModified":"1301902274000","name":"Viktor Hennemann","type":"Person","_key":"33969"} +{"label":"Claudia Martini","version":22,"id":"56702","lastModified":"1301902096000","name":"Claudia Martini","type":"Person","_key":"33970"} +{"label":"Victor Rathbone","version":22,"id":"56703","lastModified":"1301902274000","name":"Victor Rathbone","type":"Person","_key":"33971"} +{"label":"Erich Finsches","version":22,"id":"56704","lastModified":"1301902274000","name":"Erich Finsches","type":"Person","_key":"33972"} +{"label":"Gerti Lehner","version":22,"id":"56705","lastModified":"1301902274000","name":"Gerti Lehner","type":"Person","_key":"33973"} +{"label":"The Importance of Being Earnest","description":"Two young gentlemen living in 1890s England use the same pseudonym (\"Ernest\") on the sly, which is fine until they both fall in love with women using that name, which leads to a comedy of mistaken identities...","id":"9026","runtime":94,"imdbId":"tt0278500","version":187,"lastModified":"1301902452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4cec77e25e73d63ee4000023\/the-importance-of-being-earnest-mid.jpg","genre":"Comedy","title":"The Importance of Being Earnest","releaseDate":1021593600000,"language":"en","type":"Movie","_key":"33974"} +{"label":"Oliver Parker","version":43,"id":"56710","lastModified":"1301901379000","name":"Oliver Parker","type":"Person","_key":"33975"} +{"label":"The Guru","description":"Bored with Bollywood movies but fascinated with their Hollywood counterparts from his youth, Ram dreams to become a singer and actor in America, the country where dreams are made. He is encouraged when his American-based close friend, Vijay Rao, comes for visit, and brags about driving a Mercedes and living in a penthouse.","id":"9027","runtime":91,"imdbId":"tt0280720","version":159,"lastModified":"1301904508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc923e0017a3c57fe00e51a\/the-guru-mid.jpg","genre":"Comedy","title":"The Guru","releaseDate":1029888000000,"language":"en","type":"Movie","_key":"33976"} +{"label":"Ronald Guttman","version":22,"id":"47085","lastModified":"1301902274000","name":"Ronald Guttman","type":"Person","_key":"33977"} +{"label":"Daisy von Scherler Mayer","version":27,"id":"56714","lastModified":"1301901775000","name":"Daisy von Scherler Mayer","type":"Person","_key":"33978"} +{"label":"The Great Silence","description":"A mute gunslinger faces off against a gang of bounty hunters in the great blizzard of 1899, and a grim, tense struggle unfolds.","id":"9028","runtime":100,"imdbId":"tt0063032","version":139,"lastModified":"1301902591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc923e2017a3c57fe00e527\/il-grande-silenzio-mid.jpg","genre":"Action","title":"The Great Silence","releaseDate":-35251200000,"language":"en","type":"Movie","_key":"33979"} +{"label":"Carlo D'Angelo","version":24,"id":"56729","lastModified":"1301901775000","name":"Carlo D'Angelo","type":"Person","_key":"33980"} +{"label":"What Happens in Vegas...","description":"Set in Sin City, story revolves around two people who discover they've gotten married following a night of debauchery, with one of them winning a huge jackpot after playing the other's quarter. Unhappy pair try to undermine each other and get their hands on the money -- falling in love along the way.","id":"9029","runtime":99,"imdbId":"tt1033643","trailer":"http:\/\/www.youtube.com\/watch?v=YJGAsbcfuRs","version":349,"lastModified":"1301901518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/989\/4d60221f7b9aa154cf003989\/what-happens-in-vegas-mid.jpg","studio":"21 Laps Entertainment","genre":"Comedy","title":"What Happens in Vegas...","releaseDate":1208822400000,"language":"en","type":"Movie","_key":"33981"} +{"label":"Tom Vaughan","version":32,"id":"56717","lastModified":"1301901589000","name":"Tom Vaughan","type":"Person","_key":"33982"} +{"label":"Lake Bell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f7\/4c8724427b9aa1545c0001f7\/lake-bell-profile.jpg","version":80,"id":"25703","lastModified":"1302050481000","name":"Lake Bell","type":"Person","_key":"33983"} +{"label":"Jason Sudeikis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6dd\/4ce57c6f7b9aa168b40006dd\/jason-sudeikis-profile.jpg","version":30,"id":"58224","lastModified":"1301901604000","name":"Jason Sudeikis","type":"Person","_key":"33984"} +{"label":"Zach Galifianakis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/728\/4c54b2507b9aa13d4a000728\/zach-galifianakis-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bZacharias \"Zach\" Galifianakis is an American actor and stand-up comedian.  He is most widely known for his role as Alan in 2009's The Hangover, the highest grossing R rated comedy ever.  Prior to his explosion to the main stage Galifianakis was known mainly for his stand up act, which features a large amount of absurdist and self deprecating humor.\nZach had worked for several years in film and t","version":116,"birthday":"-7952400000","id":"58225","birthplace":"Wilkesboro, North Carolina, USA","lastModified":"1302059268000","name":"Zach Galifianakis","type":"Person","_key":"33985"} +{"label":"The Eye","description":"Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.","id":"9030","runtime":98,"imdbId":"tt0406759","trailer":"http:\/\/www.youtube.com\/watch?v=eoA6dxLeWFo","homepage":"http:\/\/www.theeyethefilm.com","version":295,"lastModified":"1301902115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57a\/4bc923ef017a3c57fe00e57a\/the-eye-mid.jpg","studio":"VN Productions","genre":"Horror","title":"The Eye","releaseDate":1201737600000,"language":"en","tagline":"How can you believe your eyes when they're not yours?","type":"Movie","_key":"33986"} +{"label":"Fernanda Romero","version":27,"id":"56732","lastModified":"1301901937000","name":"Fernanda Romero","type":"Person","_key":"33987"} +{"label":"Danny Mora","version":23,"id":"56733","lastModified":"1301901675000","name":"Danny Mora","type":"Person","_key":"33988"} +{"label":"Chloe Moretz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/088\/4bd42e26017a3c7fac000088\/chloe-moretz-profile.jpg","biography":"Moretz was born on the 10th of February, 1997 in Atlanta, Georgia. Her father, McCoy, is a plastic surgeon, and her mother, Teri, is a nurse practitioner. She has four brothers ranging from 5 to 15 years older than she is. She became interested in acting when the second eldest brother, Trevor, was accepted to the Professional Performing Arts School in New York. Her Hollywood career began when the Moretz family moved to Los Angeles in 2003. Her first role in Hollywood was in two episodes of the s","version":101,"birthday":"855529200000","id":"56734","birthplace":"Atlanta, Georgia","lastModified":"1301904040000","name":"Chloe Moretz","type":"Person","_key":"33989"} +{"label":"Xavier Palud","version":27,"id":"56736","lastModified":"1301901771000","name":"Xavier Palud","type":"Person","_key":"33990"} +{"label":"David Moreau","version":28,"id":"56735","lastModified":"1301901691000","name":"David Moreau","type":"Person","_key":"33991"} +{"label":"I'm for the Hipotamus","description":"In Africa, many years ago, Slim and Tom don't like it when a German tyrant, starts selling all of the African wildlife to Canadian Zoo's! Slim and Tom must teach this guy a lesson by beating the hell out of him and his gang, left and right! Written by Mark MacIntyre {page13@fastmail.ca}","id":"9031","runtime":95,"imdbId":"tt0079351","version":47,"lastModified":"1301904723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10b\/4c20512e7b9aa130a600010b\/io-sto-con-gli-ippopotami-mid.jpg","genre":"Action","title":"I'm for the Hipotamus","releaseDate":313891200000,"language":"en","type":"Movie","_key":"33992"} +{"label":"Italo Zingarelli","version":34,"id":"56721","lastModified":"1301902347000","name":"Italo Zingarelli","type":"Person","_key":"33993"} +{"label":"May Dlamini","version":21,"id":"56726","lastModified":"1301902182000","name":"May Dlamini","type":"Person","_key":"33994"} +{"label":"Big Daddy","description":"Layla Maloney is fed up with boyfriend Sonny Koufax's perpetual loafing, so when 5-year-old Julian is left on Sonny's doorstep, he assumes a fatherly role to prove he's responsible and to win Layla's love. Trouble is, Sonny has grown attached to the kid, who's really the son of his out-of-town roommate.","id":"9032","runtime":93,"imdbId":"tt0142342","trailer":"http:\/\/www.youtube.com\/watch?v=leEo3cXOyko","version":213,"lastModified":"1301902170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4c60f6965e73d634630002a6\/big-daddy-mid.jpg","studio":"Jack Giarraputo Productions","genre":"Comedy","title":"Big Daddy","releaseDate":929577600000,"language":"en","tagline":"Nature called. Look who answered.","type":"Movie","_key":"33995"} +{"label":"Cole Sprouse","version":27,"id":"56730","lastModified":"1301901516000","name":"Cole Sprouse","type":"Person","_key":"33996"} +{"label":"The Prophecy 2","description":"Gabriel returns to try to destroy the human race he despises so much, with the help of a suicidal teen and the opposition of the angel Daniel.","id":"9033","runtime":87,"imdbId":"tt0118643","version":74,"lastModified":"1302022763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/638\/4bc92412017a3c57fe00e638\/the-prophecy-2-mid.jpg","genre":"Horror","title":"The Prophecy 2","releaseDate":883612800000,"language":"en","type":"Movie","_key":"33997"} +{"label":"Glenn Danzig","version":20,"id":"56745","lastModified":"1301901883000","name":"Glenn Danzig","type":"Person","_key":"33998"} +{"label":"Greg Spence","version":30,"id":"56746","lastModified":"1301901731000","name":"Greg Spence","type":"Person","_key":"33999"} +{"label":"The Banger Sisters","description":"When fiftysomething Suzette loses her job as a bartender she decides to make a road trip to visit her old friend Vinnie who she hasn't seen since their days as groupies back in the day. On the way she meets Harry, a nervous writer who says he is going home to confront his father, then shows her his gun. Once they reach their destination Suzette finds that Vinnie is now Lavinia, a housewife.","id":"9034","runtime":98,"imdbId":"tt0280460","version":128,"lastModified":"1301904641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/641\/4bc92413017a3c57fe00e641\/the-banger-sisters-mid.jpg","genre":"Comedy","title":"The Banger Sisters","releaseDate":1031443200000,"language":"en","type":"Movie","_key":"34000"} +{"label":"Eva Amurri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4c13b7b45e73d64a24000015\/eva-amurri-profile.jpg","version":28,"id":"56757","lastModified":"1301901220000","name":"Eva Amurri","type":"Person","_key":"34001"} +{"label":"Andre Ware","version":27,"id":"56758","lastModified":"1301902129000","name":"Andre Ware","type":"Person","_key":"34002"} +{"label":"Bob Dolman","version":29,"id":"12648","lastModified":"1301901665000","name":"Bob Dolman","type":"Person","_key":"34003"} +{"label":"Slither","description":"A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters. ","id":"9035","runtime":95,"imdbId":"tt0439815","trailer":"http:\/\/www.youtube.com\/watch?v=1793","version":170,"lastModified":"1301902342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64e\/4bc92414017a3c57fe00e64e\/slither-mid.jpg","genre":"Comedy","title":"Slither","releaseDate":1150934400000,"language":"en","type":"Movie","_key":"34004"} +{"label":"Don Thompson","version":41,"id":"56749","lastModified":"1302070360000","name":"Don Thompson","type":"Person","_key":"34005"} +{"label":"James Gunn","version":49,"id":"15218","lastModified":"1301901507000","name":"James Gunn","type":"Person","_key":"34006"} +{"label":"Eight Below","description":"In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.","id":"9036","runtime":120,"imdbId":"tt0397313","trailer":"http:\/\/www.youtube.com\/watch?v=NXkoGlxVbLY","version":146,"lastModified":"1301901531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a60\/4c65769c7b9aa172d9000a60\/eight-below-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Eight Below","releaseDate":1143072000000,"language":"en","type":"Movie","_key":"34007"} +{"label":"Grease 2","description":"It's 1961, two years after the original Grease gang graduated, and there's a new crop of seniors and new members of the coolest cliques on campus, the Pink Ladies and T-Birds. Michael Carrington is the new kid in school - but he's been branded a brainiac. Can he fix up an old motorcycle, don a leather jacket, avoid a rumble with the leader of the T-Birds, and win the heart of Pink Lady Stephanie?","id":"9037","runtime":115,"imdbId":"tt0084021","trailer":"http:\/\/www.youtube.com\/watch?v=qKqc9ycSbso","version":143,"lastModified":"1302022700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/675\/4bc92419017a3c57fe00e675\/grease-2-mid.jpg","genre":"Comedy","title":"Grease 2","releaseDate":392601600000,"language":"en","type":"Movie","_key":"34008"} +{"label":"Maxwell Caulfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4c2b3eb57b9aa15e980000be\/maxwell-caulfield-profile.jpg","version":35,"id":"101908","lastModified":"1301901807000","name":"Maxwell Caulfield","type":"Person","_key":"34009"} +{"label":"Lorna Luft","version":25,"id":"56752","lastModified":"1301901503000","name":"Lorna Luft","type":"Person","_key":"34010"} +{"label":"Maureen Teefy","version":22,"id":"56753","lastModified":"1301942132000","name":"Maureen Teefy","type":"Person","_key":"34011"} +{"label":"Alison Price","version":21,"id":"56754","lastModified":"1301901977000","name":"Alison Price","type":"Person","_key":"34012"} +{"label":"Patricia Birch","version":21,"id":"56755","lastModified":"1301901572000","name":"Patricia Birch","type":"Person","_key":"34013"} +{"label":"The Heartbreak Kid","description":"The story centers on a man who is convinced that he has finally met the right girl and marries too quickly. While on his honeymoon and in the process of discovering that his new bride is a nightmare, he meets the girl of his dreams","id":"9038","runtime":116,"imdbId":"tt0408839","trailer":"http:\/\/www.youtube.com\/watch?v=dmz7nNb8Xw4","version":385,"lastModified":"1301901809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cf\/4d95004c7b9aa119a00024cf\/the-heartbreak-kid-mid.jpg","genre":"Comedy","title":"The Heartbreak Kid","releaseDate":1168214400000,"language":"en","type":"Movie","_key":"34014"} +{"label":"Trapped","description":"When their daughter is kidnapped by experienced nappers (Bacon and Love), the Jennings' (Theron and Townsend) turn the tables on this seemingly foolproof plan.","id":"9039","runtime":106,"imdbId":"tt0280380","version":271,"lastModified":"1301903020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c4\/4bc92422017a3c57fe00e6c4\/trapped-mid.jpg","genre":"Action","title":"Trapped","releaseDate":1032480000000,"language":"en","type":"Movie","_key":"34015"} +{"label":"Serpico","description":"The true story about an honest New York cop who blew the whistle on rampant corruption in the force only to have his comrades turn against him.","id":"9040","runtime":129,"imdbId":"tt0070666","version":123,"lastModified":"1301902161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eff\/4be953ba017a3c35b7000eff\/serpico-mid.jpg","studio":"Kasteel-Constantia Film","genre":"Crime","title":"Serpico","releaseDate":123897600000,"language":"en","type":"Movie","_key":"34016"} +{"label":"Barbara Eda-Young","version":20,"id":"56779","lastModified":"1301901731000","name":"Barbara Eda-Young","type":"Person","_key":"34017"} +{"label":"Cornelia Sharpe","version":21,"id":"56780","lastModified":"1301902273000","name":"Cornelia Sharpe","type":"Person","_key":"34018"} +{"label":"L'\u00c9t\u00e9 meurtrier","description":"No overview found.","id":"9041","runtime":130,"imdbId":"tt0086655","version":40,"lastModified":"1301905336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4bc92428017a3c57fe00e6eb\/l-ete-meurtrier-mid.jpg","genre":"Crime","title":"L'\u00c9t\u00e9 meurtrier","releaseDate":419040000000,"language":"en","type":"Movie","_key":"34019"} +{"label":"Alain Souchon","version":26,"id":"56783","lastModified":"1301901666000","name":"Alain Souchon","type":"Person","_key":"34020"} +{"label":"The Cave","description":"Bloodthirsty creatures await a pack of divers who become trapped in an underwater cave network.","id":"9042","runtime":97,"imdbId":"tt0402901","trailer":"http:\/\/www.youtube.com\/watch?v=1644","version":222,"lastModified":"1301907507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97b\/4d21f3cb7b9aa1282300097b\/the-cave-mid.jpg","genre":"Action","title":"The Cave","releaseDate":1125014400000,"language":"en","type":"Movie","_key":"34021"} +{"label":"Eddie Cibrian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be5\/4d7f4a525e73d62828003be5\/eddie-cibrian-profile.jpg","version":29,"id":"55541","lastModified":"1301901995000","name":"Eddie Cibrian","type":"Person","_key":"34022"} +{"label":"Bruce Hunt","version":20,"id":"44179","lastModified":"1301902152000","name":"Bruce Hunt","type":"Person","_key":"34023"} +{"label":"The Family Stone","description":"An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.","id":"9043","runtime":103,"imdbId":"tt0356680","version":255,"lastModified":"1302022607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4d0846787b9aa101e4000134\/the-family-stone-mid.jpg","genre":"Comedy","title":"The Family Stone","releaseDate":1134604800000,"language":"en","tagline":"Feel The Love.","type":"Movie","_key":"34024"} +{"label":"Thomas Bezucha","version":29,"id":"56789","lastModified":"1301901838000","name":"Thomas Bezucha","type":"Person","_key":"34025"} +{"label":"Tristan & Isolde","description":"An affair between the second in line to Britain's throne (Franco) and the princess of the feuding Irish (Myles) spells doom for the young lovers.","id":"9044","runtime":125,"imdbId":"tt0375154","version":348,"lastModified":"1302010267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/718\/4bc9242f017a3c57fe00e718\/tristan-and-isolde-mid.jpg","genre":"Action","title":"Tristan & Isolde","releaseDate":1147910400000,"language":"en","type":"Movie","_key":"34026"} +{"label":"Amen.","description":"The film \"Amen.\" examines the links between the Vatican and Nazi Germany. The central character is Kurt Gerstein, a member of the Institute for Hygiene of the Waffen-SS who is horrified by what he sees in the death camps. Moreover, he is shocked to learn that the process he used to purify water for his troops, by using zyklon, served as a basis to kill people in gas chambers. ","id":"9045","runtime":132,"imdbId":"tt0280653","version":145,"lastModified":"1301903614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/721\/4bc92430017a3c57fe00e721\/amen-mid.jpg","genre":"Drama","title":"Amen.","releaseDate":1013558400000,"language":"en","type":"Movie","_key":"34027"} +{"label":"Antje Schmidt","version":21,"id":"38299","lastModified":"1301901761000","name":"Antje Schmidt","type":"Person","_key":"34028"} +{"label":"A Chinese Ghost Story","description":"No overview found.","id":"9046","version":98,"lastModified":"1301904267000","genre":"Romance","title":"A Chinese Ghost Story","language":"en","type":"Movie","_key":"34029"} +{"label":"One Day in Europe","description":"No overview found.","id":"9047","runtime":95,"imdbId":"tt0411427","version":150,"lastModified":"1301906179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72a\/4bc92430017a3c57fe00e72a\/one-day-in-europe-mid.jpg","genre":"Comedy","title":"One Day in Europe","releaseDate":1112832000000,"language":"en","type":"Movie","_key":"34030"} +{"label":"Luidmila Tsvetkova","version":20,"id":"56799","lastModified":"1301901995000","name":"Luidmila Tsvetkova","type":"Person","_key":"34031"} +{"label":"Andrei Sokolov","version":20,"id":"56800","lastModified":"1301902194000","name":"Andrei Sokolov","type":"Person","_key":"34032"} +{"label":"Oleg Assadulin","version":20,"id":"56801","lastModified":"1301901995000","name":"Oleg Assadulin","type":"Person","_key":"34033"} +{"label":"A Chinese Ghost Story III","description":"Having slept for a century, the monstrous Tree Devil is now awaken and starts finding lost souls again. One stormy night, a wise High Priest and his student Fong pass by the Orchid Temple and realize that it is haunted. Fong encounters two evil spirits, the seductive Lotus and her hated sister Butterfly in the temple. Although Fong knows his master wants to capture them, he finds himself being attracted by them so he sets them free. The monks stay at the temple has to be prolonged since Fong car","id":"9048","runtime":104,"imdbId":"tt0102932","version":93,"lastModified":"1301905301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41c\/4d2542ff5e73d626b000041c\/sien-nui-yau-wan-iii-do-do-do-mid.jpg","studio":"Cinema City Film Productions","genre":"Eastern","title":"A Chinese Ghost Story III","releaseDate":679795200000,"language":"en","type":"Movie","_key":"34034"} +{"label":"Joey Wong Cho-Yin","version":37,"id":"56803","lastModified":"1301901250000","name":"Joey Wong Cho-Yin","type":"Person","_key":"34035"} +{"label":"Siu-Ming Lau","version":30,"id":"56804","lastModified":"1302033986000","name":"Siu-Ming Lau","type":"Person","_key":"34036"} +{"label":"Ching Siu-Tung","version":69,"id":"67259","lastModified":"1301901237000","name":"Ching Siu-Tung","type":"Person","_key":"34037"} +{"label":"A Chinese Ghost Story II","description":"Several years after his beloved Nieh has gone, Ning is innocently put into jail. Luckily, he meets a scholar, Elder Chu Kot, in the prison who finally helps him escape. Ning then meets a young witty monk Autumn. They become friends and live in an abandoned villa together. The villa is horrific, yet they choose to stay for a while. Later that night, some ghosts suddenly appear and attack; two parties fight heavily. But after clarifications, Ning and Autumn find that \"the ghosts\" are humans in dis","id":"9050","runtime":104,"imdbId":"tt0100625","version":99,"lastModified":"1301903057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/422\/4d25427d5e73d626be000422\/sien-nui-yau-wan-ii-yan-gaan-do-mid.jpg","studio":"Film Workshop","genre":"Action","title":"A Chinese Ghost Story II","releaseDate":631152000000,"language":"en","type":"Movie","_key":"34038"} +{"label":"Michelle Reis","version":33,"id":"56816","lastModified":"1301901575000","name":"Michelle Reis","type":"Person","_key":"34039"} +{"label":"Jacky Cheung","version":48,"id":"25245","lastModified":"1301901199000","name":"Jacky Cheung","type":"Person","_key":"34040"} +{"label":"10","description":"A Hollywood songwriter goes through a mid-life crisis and becomes infatuated with a sexy blonde newlywed.","id":"9051","runtime":122,"imdbId":"tt0078721","version":178,"lastModified":"1301902450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4bd4f1ca017a3c2e7100007f\/10-mid.jpg","genre":"Comedy","title":"10","releaseDate":307929600000,"language":"en","type":"Movie","_key":"34041"} +{"label":"Dudley Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dcb\/4cf9b0917b9aa1514b001dcb\/dudley-moore-profile.jpg","version":52,"id":"56819","lastModified":"1301901248000","name":"Dudley Moore","type":"Person","_key":"34042"} +{"label":"Netto","description":"No overview found.","id":"9052","runtime":87,"imdbId":"tt0443139","version":60,"lastModified":"1301903875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cb\/4d0f854a5e73d6370e0021cb\/netto-mid.jpg","studio":"HFF Konrad Wolf","genre":"Comedy","title":"Netto","releaseDate":1115251200000,"language":"en","type":"Movie","_key":"34043"} +{"label":"Stephanie Charlotta Koetz","version":21,"id":"56820","lastModified":"1301901785000","name":"Stephanie Charlotta Koetz","type":"Person","_key":"34044"} +{"label":"Bernd Lambrecht","version":21,"id":"56821","lastModified":"1301902338000","name":"Bernd Lambrecht","type":"Person","_key":"34045"} +{"label":"DOA: Dead or Alive","description":"A number of fighters are invited to DOA \"Dead or Alive\", an invitational martial arts contest. The four female fighters begin as rivals, but work together to uncover the secret Donovan the organizer of the tournament is trying to hide.","id":"9053","runtime":87,"imdbId":"tt0398913","trailer":"http:\/\/www.youtube.com\/watch?v=SHQFZV_dgsU","version":375,"lastModified":"1302018083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78d\/4bc92439017a3c57fe00e78d\/doa-dead-or-alive-mid.jpg","genre":"Action","title":"DOA: Dead or Alive","releaseDate":1161216000000,"language":"en","type":"Movie","_key":"34046"} +{"label":"Jaime Pressly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f8\/4bcc3f76017a3c0f2c0000f8\/jaime-pressly-profile.jpg","version":53,"id":"56824","lastModified":"1301901178000","name":"Jaime Pressly","type":"Person","_key":"34047"} +{"label":"Sarah Carter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4bcc3fa8017a3c0f2c0000ff\/sarah-carter-profile.jpg","version":37,"id":"56825","lastModified":"1301901218000","name":"Sarah Carter","type":"Person","_key":"34048"} +{"label":"Kane Kosugi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/97e\/4d276a777b9aa134e000197e\/kane-kosugi-profile.jpg","version":36,"id":"65198","lastModified":"1301901337000","name":"Kane Kosugi","type":"Person","_key":"34049"} +{"label":"Steve Howey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a33\/4d276ac87b9aa134d8001a33\/steve-howey-profile.jpg","version":30,"id":"81388","lastModified":"1301901670000","name":"Steve Howey","type":"Person","_key":"34050"} +{"label":"Gone Fishin'","description":"Two fishing fanatics get in trouble when their fishing boat gets stolen while on a trip.","id":"9054","runtime":94,"imdbId":"tt0119214","version":245,"lastModified":"1301903357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/796\/4bc9243a017a3c57fe00e796\/gone-fishin-mid.jpg","genre":"Comedy","title":"Gone Fishin'","releaseDate":864950400000,"language":"en","type":"Movie","_key":"34051"} +{"label":"Christopher Cain","version":39,"id":"56828","lastModified":"1301901446000","name":"Christopher Cain","type":"Person","_key":"34052"} +{"label":"Police Story","description":"No overview found.","id":"9055","version":434,"lastModified":"1302022436000","genre":"Action","title":"Police Story","language":"en","type":"Movie","_key":"34053"} +{"label":"Police Story","description":"Chan Ka Kui is a Hong-Kong policeman, who single handedly captures and arrests a big drug lord. The drug-lord then frames Kevin with the murder of a corrupt cop. Now a fugitive cop killer, Chan Ka Kui must try to catch the drug lord and clear his name.","id":"9056","runtime":101,"imdbId":"tt0089374","version":98,"lastModified":"1301904152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b4\/4bc9243f017a3c57fe00e7b4\/ging-chat-goo-si-mid.jpg","studio":"Golden Way Films Ltd.","genre":"Action","title":"Police Story","releaseDate":503366400000,"language":"en","type":"Movie","_key":"34054"} +{"label":"Brigitte Lin","version":43,"birthday":"-498963600000","id":"56830","lastModified":"1301901347000","name":"Brigitte Lin","type":"Person","_key":"34055"} +{"label":"Kwok-Hung Lam","version":23,"id":"56831","lastModified":"1301902096000","name":"Kwok-Hung Lam","type":"Person","_key":"34056"} +{"label":"Terminal Velocity","description":"A maverick skydiver and a former KGB agent team up to stop the Russian mafia from stealing gold.","id":"9057","runtime":102,"imdbId":"tt0111400","version":191,"lastModified":"1301903820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b9\/4bc92440017a3c57fe00e7b9\/terminal-velocity-mid.jpg","genre":"Action","title":"Terminal Velocity","releaseDate":779068800000,"language":"en","tagline":"If you don't find trouble, trouble will find you.","type":"Movie","_key":"34057"} +{"label":"Gary Bullock","version":22,"id":"56848","lastModified":"1301902273000","name":"Gary Bullock","type":"Person","_key":"34058"} +{"label":"Deran Sarafian","version":30,"id":"45645","lastModified":"1301901537000","name":"Deran Sarafian","type":"Person","_key":"34059"} +{"label":"Only You","description":"Destiny. Faith (Marisa Tomei) believes that two soul-mates can be united if they find each other, from the Ouija board.","id":"9058","runtime":104,"imdbId":"tt0110737","version":252,"lastModified":"1301904559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/602\/4d61a8755e73d60c6d003602\/only-you-mid.jpg","genre":"Comedy","title":"Only You","releaseDate":779760000000,"language":"en","type":"Movie","_key":"34060"} +{"label":"Demon Knight","description":"Brayker is a man who carries the last of seven keys, special containers which held the blood of Christ and were scattered across the universe to prevent the forces of evil from taking over. If The Collector gets the last key, the universe will fall into Chaos, and he has been tracking Brayker all the way to a small inn in a nowhere town. And now the final battle for the universe begins","id":"9059","runtime":92,"imdbId":"tt0114608","version":124,"lastModified":"1301903596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/759\/4d2f26d07b9aa125f7000759\/demon-knight-mid.jpg","genre":"Fantasy","title":"Demon Knight","releaseDate":789955200000,"language":"en","type":"Movie","_key":"34061"} +{"label":"Ernest R. Dickerson","version":34,"id":"15521","lastModified":"1301901296000","name":"Ernest R. Dickerson","type":"Person","_key":"34062"} +{"label":"Dumplings","description":"A rich woman, Mrs. Li, is losing her attractiveness and longs for passion with her husband, who is having an affair with his younger and more attractive masseuse. In order to boost her image, she seeks out the help of Aunt Mei, a local chef. Mei cooks her some special dumplings which she claims to be effective for rejuvenation, but these dumplings hide a terrible secret.","id":"9060","runtime":91,"imdbId":"tt0472458","version":254,"lastModified":"1301904635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63f\/4be1ca90017a3c35c100063f\/gaau-ji-mid.jpg","genre":"Horror","title":"Dumplings","releaseDate":1092960000000,"language":"en","type":"Movie","_key":"34063"} +{"label":"Pauline Lau","version":23,"id":"56858","lastModified":"1301901677000","name":"Pauline Lau","type":"Person","_key":"34064"} +{"label":"Tony Leung Ka-Fai","version":68,"id":"56861","lastModified":"1301901182000","name":"Tony Leung Ka-Fai","type":"Person","_key":"34065"} +{"label":"Meme Tian","version":26,"id":"56862","lastModified":"1301901593000","name":"Meme Tian","type":"Person","_key":"34066"} +{"label":"Miriam Yeung Chin Wah","version":22,"id":"56863","lastModified":"1301901782000","name":"Miriam Yeung Chin Wah","type":"Person","_key":"34067"} +{"label":"Miki Yeung","version":22,"id":"56864","lastModified":"1301901816000","name":"Miki Yeung","type":"Person","_key":"34068"} +{"label":"Fruit Chan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c6\/4c7824d97b9aa16a0b0003c6\/fruit-chan-profile.jpg","version":36,"id":"56865","lastModified":"1301901807000","name":"Fruit Chan","type":"Person","_key":"34069"} +{"label":"Just Cause","description":"Bobby Earl is facing the electric chair for the murder of a young girl. Eight years after the crime he calls in Paul Armstrong, a professor of law, to help prove his innocence. Armstrong quickly uncovers some overlooked evidence to present to the local police, but they aren't interested - Bobby was their killer.","id":"9061","runtime":98,"imdbId":"tt0113501","trailer":"http:\/\/www.youtube.com\/watch?v=ptgIsF-QA80","version":359,"lastModified":"1301903688000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7dc\/4bc92446017a3c57fe00e7dc\/just-cause-mid.jpg","genre":"Action","title":"Just Cause","releaseDate":792979200000,"language":"en","type":"Movie","_key":"34070"} +{"label":"Blair Underwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4d75354f5e73d6651800001b\/blair-underwood-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Blair Underwood<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> (born August 25, 1964) is an American television and film actor. He is perhaps best known as headstrong attorney Jonathan Rollins from the NBC legal drama <I>L.A. Law<\/I>, a role he portrayed for seven years. He has gained critical acclaim throughout his career, receiving numerous Golden Globe Award nomination","version":45,"birthday":"-168915600000","id":"56871","lastModified":"1301901565000","name":"Blair Underwood","type":"Person","_key":"34071"} +{"label":"Christopher Murray","version":21,"id":"122491","lastModified":"1301903075000","name":"Christopher Murray","type":"Person","_key":"34072"} +{"label":"Liz Torres","version":23,"id":"55549","lastModified":"1301901833000","name":"Liz Torres","type":"Person","_key":"34073"} +{"label":"Arne Glimcher","version":25,"id":"56872","lastModified":"1301901783000","name":"Arne Glimcher","type":"Person","_key":"34074"} +{"label":"Love Story","description":"Harvard Law student Oliver Barrett IV and music student Jennifer Cavilleri share a chemistry they cannot deny - and a love they cannot ignore. Despite their opposite backgrounds, the young couple put their hearts on the line for each other. When they marry, Oliver's wealthy father threatens to disown him. Jenny tries to reconcile the Barrett men, but to no avail. ","id":"9062","runtime":99,"imdbId":"tt0066011","version":301,"lastModified":"1301903041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4bc92447017a3c57fe00e7e5\/love-story-mid.jpg","genre":"Drama","title":"Love Story","releaseDate":30153600000,"language":"en","type":"Movie","_key":"34075"} +{"label":"The Element of Crime","description":"A cop in a dystopian Europe investigates a serial killings suspect using controversial methods written by his now disgraced former mentor. The film is the first in the director's Europa trilogy. The other two films in the trilogy are Epidemic (1987) and Europa (1991).","id":"9063","runtime":104,"imdbId":"tt0087280","version":111,"lastModified":"1301904339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4bc92449017a3c57fe00e7fc\/forbrydelsens-element-mid.jpg","genre":"Crime","title":"The Element of Crime","releaseDate":453686400000,"language":"en","type":"Movie","_key":"34076"} +{"label":"Esmond Knight","version":31,"id":"56875","lastModified":"1301901650000","name":"Esmond Knight","type":"Person","_key":"34077"} +{"label":"Jerold Wells","version":21,"id":"13465","lastModified":"1301901995000","name":"Jerold Wells","type":"Person","_key":"34078"} +{"label":"Hellraiser II: Hellbound","description":"Kirsty is brought to an institution after the death of her family, where the occult-obsessive head resurrects Julia and unleashes the Cenobites once again.","id":"9064","runtime":97,"imdbId":"tt0095294","version":274,"lastModified":"1301903121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/805\/4bc9244a017a3c57fe00e805\/hellbound-hellraiser-ii-mid.jpg","genre":"Horror","title":"Hellraiser II: Hellbound","releaseDate":589766400000,"language":"en","tagline":"Time to play.","type":"Movie","_key":"34079"} +{"label":"Imogen Boorman","version":23,"id":"56918","lastModified":"1301902180000","name":"Imogen Boorman","type":"Person","_key":"34080"} +{"label":"Tony Randel","version":34,"id":"52194","lastModified":"1301901666000","name":"Tony Randel","type":"Person","_key":"34081"} +{"label":"Europa","description":"An American, Leopold Kessler (Jean-Marc Barr) goes to post-war Germany in 1945 to work as a railroad conductor for the Zentropa Rail Line instead of going into the Army because he feels its a more valuable thing to do for the state of the world. He meets Katharina Hartmann (Barbara Sukowa), the daughter of the railroad owner and they fall in love. ","id":"9065","runtime":112,"imdbId":"tt0101829","version":150,"lastModified":"1301903258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80e\/4bc9244b017a3c57fe00e80e\/europa-mid.jpg","genre":"Drama","title":"Europa","releaseDate":677980800000,"language":"en","type":"Movie","_key":"34082"} +{"label":"Ernst-Hugo J\u00e4reg\u00e5rd","version":28,"id":"56882","lastModified":"1302031181000","name":"Ernst-Hugo J\u00e4reg\u00e5rd","type":"Person","_key":"34083"} +{"label":"The Brady Bunch Movie","description":"The original 70's TV family is now placed in the 1990's, where they're even more square and out of place than ever.","id":"9066","runtime":84,"imdbId":"tt0112572","version":155,"lastModified":"1301904399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/817\/4bc9244b017a3c57fe00e817\/the-brady-bunch-movie-mid.jpg","genre":"Comedy","title":"The Brady Bunch Movie","releaseDate":792979200000,"language":"en","type":"Movie","_key":"34084"} +{"label":"Shelley Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/343\/4d05ae9b5e73d621a4003343\/shelley-long-profile.jpg","version":35,"id":"56881","lastModified":"1301901285000","name":"Shelley Long","type":"Person","_key":"34085"} +{"label":"RuPaul","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f4\/4d9516d57b9aa1199a0026f4\/rupaul-profile.jpg","biography":"<B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"FONT-SIZE: 11pt; LINE-HEIGHT: 130%; FONT-FAMILY: 'Gill Sans MT'\">Rupaul,<\/SPAN><\/B><SPAN style=\"FONT-SIZE: 11pt; LINE-HEIGHT: 130%; FONT-FAMILY: 'Gill Sans MT'\"> born Andre Charles on November 17 1960, grew up in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">San Diego<\/st1:City>, <st1:State w:st=\"on\">California<\/st1:State><\/st1:place> and learned fashion tips from his ","version":29,"birthday":"-287888400000","id":"78589","birthplace":"San Diego, California, USA","lastModified":"1301901718000","name":"RuPaul","type":"Person","_key":"34086"} +{"label":"Tank Girl","description":"Based on the British cult comic-strip, our tank-riding anti-heroine fights a mega-corporation, which controls the world's water supply.","id":"9067","runtime":98,"imdbId":"tt0114614","version":303,"lastModified":"1301903288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/820\/4bc9244c017a3c57fe00e820\/tank-girl-mid.jpg","genre":"Action","title":"Tank Girl","releaseDate":796608000000,"language":"en","type":"Movie","_key":"34087"} +{"label":"Rachel Talalay","version":34,"id":"56891","lastModified":"1301901445000","name":"Rachel Talalay","type":"Person","_key":"34088"} +{"label":"The Prophecy","description":"No overview found.","id":"9068","version":490,"lastModified":"1301907557000","genre":"Horror","title":"The Prophecy","language":"en","type":"Movie","_key":"34089"} +{"label":"Die verschiedenen Gesichter des Sergej Eisenstein","description":"No overview found.","id":"9069","runtime":59,"imdbId":"tt0923976","version":29,"lastModified":"1301420354000","studio":"SelbstFilm","genre":"Documentary","title":"Die verschiedenen Gesichter des Sergej Eisenstein","releaseDate":887760000000,"language":"en","type":"Movie","_key":"34090"} +{"label":"Dietmar Hochmuth","version":20,"id":"56893","lastModified":"1301902376000","name":"Dietmar Hochmuth","type":"Person","_key":"34091"} +{"label":"Mighty Morphin Power Rangers: The Movie","description":"Six teenagers have discovered the power to fight the forces of evil. Now the fate of the universe is in their hands.","id":"9070","runtime":92,"imdbId":"tt0113820","trailer":"http:\/\/www.youtube.com\/watch?v=1001","version":178,"lastModified":"1301905961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82a\/4bc92450017a3c57fe00e82a\/mighty-morphin-power-rangers-the-movie-mid.jpg","genre":"Family","title":"Mighty Morphin Power Rangers: The Movie","releaseDate":804470400000,"language":"en","tagline":"The Power Is On!","type":"Movie","_key":"34092"} +{"label":"Amy Jo Johnson","version":23,"id":"56895","lastModified":"1301901650000","name":"Amy Jo Johnson","type":"Person","_key":"34093"} +{"label":"David Yost","version":22,"id":"56896","lastModified":"1301901831000","name":"David Yost","type":"Person","_key":"34094"} +{"label":"Steve Cardenas","version":22,"id":"56897","lastModified":"1301902383000","name":"Steve Cardenas","type":"Person","_key":"34095"} +{"label":"Bryan Spicer","version":30,"id":"42111","lastModified":"1301901689000","name":"Bryan Spicer","type":"Person","_key":"34096"} +{"label":"Living In Oblivion","description":"Film about filmmaking. It takes place during one day on set of non-budget movie. Ultimate tribute to all independent filmmakers.","id":"9071","runtime":89,"imdbId":"tt0113677","version":299,"lastModified":"1301908035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/066\/4c8ed88d7b9aa1768a000066\/living-in-oblivion-mid.jpg","genre":"Comedy","title":"Living In Oblivion","releaseDate":790560000000,"language":"en","type":"Movie","_key":"34097"} +{"label":"Little Man","description":"A wannabe dad mistakes a vertically challenged criminal on the lam as his newly adopted son.","id":"9072","runtime":98,"imdbId":"tt0430304","version":234,"lastModified":"1301905049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4bc92453017a3c57fe00e844\/little-man-mid.jpg","genre":"Comedy","title":"Little Man","releaseDate":1156982400000,"language":"en","type":"Movie","_key":"34098"} +{"label":"John Witherspoon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/774\/4d757b377b9aa17045000774\/john-witherspoon-profile.jpg","biography":"<FONT size=3><FONT face=\"Times New Roman\"><B><SPAN style=\"mso-ansi-language: EN\" lang=EN>John Witherspoon<\/SPAN><\/B><SPAN style=\"mso-ansi-language: EN\" lang=EN> is an African-American comedian and actor who has roles in over 20 movies and television shows. He has been acting for over three decades and starred in films such as <I>Hollywood Shuffle<\/I> (1987), <I>Boomerang<\/I> (1992)<I>, <\/I><SPAN style=\"mso-bidi-font-style: italic\">and the<\/SPAN> Friday <SPAN style=\"mso-bidi-font-style: italic\">f","version":39,"birthday":"-881373600000","id":"56902","lastModified":"1301975038000","name":"John Witherspoon","type":"Person","_key":"34099"} +{"label":"Tracy Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/402\/4ca86b657b9aa17aca000402\/tracy-morgan-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bAmerican actor, comedian and author Tracy Jamal Morgan is best known for his eight seasons as a cast member on Saturday Night Live and currently known for playing the role of Tracy Jordan on the NBC series 30 Rock.<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">Morgan began","version":57,"birthday":"-36032400000","id":"56903","birthplace":"The Bronx, New York, U.S","lastModified":"1302065383000","name":"Tracy Morgan","type":"Person","_key":"34100"} +{"label":"Free Willy 2 - The Adventure Home","description":"No overview found.","id":"9073","runtime":95,"imdbId":"tt0113114","version":219,"lastModified":"1301902596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/852\/4bc92454017a3c57fe00e852\/free-willy-2-the-adventure-home-mid.jpg","genre":"Adventure","title":"Free Willy 2 - The Adventure Home","releaseDate":806112000000,"language":"en","type":"Movie","_key":"34101"} +{"label":"The Man","description":"Special Agent Derrick Vann is a man out to get the man who killed his partner but a case of mistaken identity leads him to Andy Fidler, a salesman with too many questions and a knack of getting in Vanns way","id":"9074","runtime":83,"imdbId":"tt0399327","version":197,"lastModified":"1301902931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85f\/4bc92455017a3c57fe00e85f\/the-man-mid.jpg","genre":"Action","title":"The Man","releaseDate":1126224000000,"language":"en","type":"Movie","_key":"34102"} +{"label":"Susie Essman","version":37,"id":"56910","lastModified":"1301901186000","name":"Susie Essman","type":"Person","_key":"34103"} +{"label":"Les Mayfield","version":41,"id":"56911","lastModified":"1301901496000","name":"Les Mayfield","type":"Person","_key":"34104"} +{"label":"Black Book","description":"In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.","id":"9075","runtime":145,"imdbId":"tt0389557","trailer":"http:\/\/www.youtube.com\/watch?v=Lyj56gsrBJk&NR","version":250,"lastModified":"1301901692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4d93331f5e73d623b0000271\/zwartboek-mid.jpg","studio":"Fu Works","genre":"Drama","title":"Black Book","releaseDate":1157068800000,"language":"en","tagline":"To fight the enemy, she must become one of them.","type":"Movie","_key":"34105"} +{"label":"Nur \u00fcber meine Leiche","description":"No overview found.","id":"9076","runtime":104,"imdbId":"tt0114019","version":40,"lastModified":"1301906168000","genre":"Comedy","title":"Nur \u00fcber meine Leiche","releaseDate":809827200000,"language":"en","type":"Movie","_key":"34106"} +{"label":"Julia Brendler","version":20,"id":"44385","lastModified":"1301902368000","name":"Julia Brendler","type":"Person","_key":"34107"} +{"label":"Tarantula","description":"No overview found.","id":"9077","runtime":80,"imdbId":"tt0048696","trailer":"http:\/\/www.youtube.com\/watch?v=NU5Ohipxhak","version":91,"lastModified":"1301906653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a3\/4bc92460017a3c57fe00e8a3\/tarantula-mid.jpg","genre":"Fantasy","title":"Tarantula","releaseDate":-443404800000,"language":"en","type":"Movie","_key":"34108"} +{"label":"John Agar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4bd814f7017a3c1bfb0000ca\/john-agar-profile.jpg","version":43,"id":"103071","lastModified":"1301987197000","name":"John Agar","type":"Person","_key":"34109"} +{"label":"Ross Elliott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e3\/4bcc6b11017a3c0f260000e3\/ross-elliott-profile.jpg","version":22,"id":"112722","lastModified":"1301902369000","name":"Ross Elliott","type":"Person","_key":"34110"} +{"label":"Nestor Paiva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20f\/4c7d5b257b9aa1097600020f\/nestor-paiva-profile.jpg","version":50,"id":"56924","lastModified":"1301901532000","name":"Nestor Paiva","type":"Person","_key":"34111"} +{"label":"Mara Corday","version":22,"id":"56923","lastModified":"1301902056000","name":"Mara Corday","type":"Person","_key":"34112"} +{"label":"Jack C. Arnold","version":22,"id":"24214","lastModified":"1301901680000","name":"Jack C. Arnold","type":"Person","_key":"34113"} +{"label":"The Sword in the Stone","description":"Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.","id":"9078","runtime":79,"imdbId":"tt0057546","trailer":"http:\/\/www.youtube.com\/watch?v=750","version":167,"lastModified":"1301412390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/365\/4c6c79e85e73d65f7b000365\/the-sword-in-the-stone-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Sword in the Stone","releaseDate":-189993600000,"language":"en","tagline":"Tired of living in a Medieval mess...Merlin uses all his magic powers to change a scrawny little boy into a legendary hero!","type":"Movie","_key":"34114"} +{"label":"Junius Matthews","version":29,"id":"57313","lastModified":"1301901916000","name":"Junius Matthews","type":"Person","_key":"34115"} +{"label":"Wolfgang Reitherman","version":125,"id":"57314","lastModified":"1302034612000","name":"Wolfgang Reitherman","type":"Person","_key":"34116"} +{"label":"Dying Young","description":"After she discovers that her boyfriend has betrayed her, Hilary O'Neil is looking for a new start and a new job. She begins to work as a private nurse for a young man suffering from blood cancer. Slowly, they fall in love, but they always know their love cannot last because he is destined to die.","id":"9079","runtime":111,"imdbId":"tt0101787","version":166,"lastModified":"1301904396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4c3bcbd47b9aa1224e000028\/dying-young-mid.jpg","genre":"Drama","title":"Dying Young","releaseDate":677462400000,"language":"en","type":"Movie","_key":"34117"} +{"label":"David Selby","version":38,"id":"56930","lastModified":"1301901820000","name":"David Selby","type":"Person","_key":"34118"} +{"label":"Spies Like Us","description":"Two totally incompetent applicants, Emmett Fitzhume and Austin Millbarge, are chosen from a CIA recruitment program. They are parachuted into Pakistan and eventually end up in Afghanistan, chased by the Russians, where they learn they are being used as decoys to draw out the Sovet defenses.","id":"9080","runtime":102,"imdbId":"tt0090056","trailer":"http:\/\/www.youtube.com\/watch?v=vFkdJj3c4Lk","version":323,"lastModified":"1301902750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b12\/4be5797b017a3c35b9000b12\/spies-like-us-mid.jpg","genre":"Action","title":"Spies Like Us","releaseDate":502675200000,"language":"en","tagline":"With spies like these who needs enemies?","type":"Movie","_key":"34119"} +{"label":"Donna Dixon","version":24,"id":"56933","lastModified":"1301901538000","name":"Donna Dixon","type":"Person","_key":"34120"} +{"label":"Waking Life","description":"Waking Life is about a young man in a persistent lucid dream-like state. The film follows its protagonist as he initially observes and later participates in philosophical discussions that weave together issues like reality, free will, our relationships with others, and the meaning of life.","id":"9081","runtime":99,"imdbId":"tt0243017","trailer":"http:\/\/www.youtube.com\/watch?v=uecHd_qW1es","version":162,"lastModified":"1301903984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e1\/4bc92469017a3c57fe00e8e1\/waking-life-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Animation","title":"Waking Life","releaseDate":980208000000,"language":"en","type":"Movie","_key":"34121"} +{"label":"Wiley Wiggins","version":24,"id":"56934","lastModified":"1301901419000","name":"Wiley Wiggins","type":"Person","_key":"34122"} +{"label":"Ken Webster","version":20,"id":"56935","lastModified":"1301901688000","name":"Ken Webster","type":"Person","_key":"34123"} +{"label":"Bill Wise","version":20,"id":"71658","lastModified":"1301901834000","name":"Bill Wise","type":"Person","_key":"34124"} +{"label":"Charles Gunning","version":20,"id":"71659","lastModified":"1301901834000","name":"Charles Gunning","type":"Person","_key":"34125"} +{"label":"Caveh Zahedi","version":24,"id":"71660","lastModified":"1301901566000","name":"Caveh Zahedi","type":"Person","_key":"34126"} +{"label":"Im toten Winkel - Hitlers Sekret\u00e4rin","description":"No overview found.","id":"9082","runtime":90,"imdbId":"tt0311320","version":49,"lastModified":"1301903726000","genre":"Documentary","title":"Im toten Winkel - Hitlers Sekret\u00e4rin","releaseDate":1013299200000,"language":"en","type":"Movie","_key":"34127"} +{"label":"Traudl Junge","version":31,"id":"8809","lastModified":"1301901402000","name":"Traudl Junge","type":"Person","_key":"34128"} +{"label":"Andr\u00e9 Heller","version":21,"id":"56937","lastModified":"1301902152000","name":"Andr\u00e9 Heller","type":"Person","_key":"34129"} +{"label":"Othmar Schmiderer","version":26,"id":"56938","lastModified":"1301902152000","name":"Othmar Schmiderer","type":"Person","_key":"34130"} +{"label":"Jennifer Government","description":"No overview found.","id":"9083","runtime":0,"imdbId":"tt0760314","version":33,"lastModified":"1301908440000","genre":"Science Fiction","title":"Jennifer Government","releaseDate":1262304000000,"language":"en","type":"Movie","_key":"34131"} +{"label":"Der kleine Eisb\u00e4r","description":"This charming animated adventure follows a young polar bear, Lars, as he befriends Robbie, a seal. Together, these two form a friendship that proves different breeds of animals can get along perfectly well.","id":"9084","runtime":78,"imdbId":"tt0293849","version":51,"lastModified":"1301907390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01c\/4c13d6787b9aa1045a00001c\/der-kleine-eisbar-mid.jpg","studio":"WDR","genre":"Animation","title":"Der kleine Eisb\u00e4r","releaseDate":1002153600000,"language":"en","type":"Movie","_key":"34132"} +{"label":"Mijail Verona","version":21,"id":"57320","lastModified":"1301901780000","name":"Mijail Verona","type":"Person","_key":"34133"} +{"label":"Jeanette Biedermann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c07\/4cc1fcb67b9aa138d8001c07\/jeanette-biedermann-profile.jpg","version":23,"id":"57321","lastModified":"1301901605000","name":"Jeanette Biedermann","type":"Person","_key":"34134"} +{"label":"Vanessa Petruo","version":22,"id":"57322","lastModified":"1301901781000","name":"Vanessa Petruo","type":"Person","_key":"34135"} +{"label":"Piet De Rycker","version":21,"id":"57323","lastModified":"1301901708000","name":"Piet De Rycker","type":"Person","_key":"34136"} +{"label":"Thilo Rothkirch","version":28,"id":"57324","lastModified":"1301901647000","name":"Thilo Rothkirch","type":"Person","_key":"34137"} +{"label":"Harlem Nights","description":"\"Sugar\" Ray is the owner of an illegal casino, who contend with the pressures of vicious gangster and corrupt policemen who want to see him go out of business. In the world of organized crime and police corruption in the 1920s, any dastardly trick is fair!","id":"9085","runtime":116,"imdbId":"tt0097481","version":505,"lastModified":"1301902709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ef\/4bc9246b017a3c57fe00e8ef\/harlem-nights-mid.jpg","genre":"Action","title":"Harlem Nights","releaseDate":627264000000,"language":"en","type":"Movie","_key":"34138"} +{"label":"Redd Foxx","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/978\/4d8a8e127b9aa13ae7000978\/redd-foxx-profile.jpg","version":23,"id":"56949","lastModified":"1301902023000","name":"Redd Foxx","type":"Person","_key":"34139"} +{"label":"Della Reese","version":25,"id":"56950","lastModified":"1301902383000","name":"Della Reese","type":"Person","_key":"34140"} +{"label":"Berlinda Tolbert","version":21,"id":"56951","lastModified":"1301901995000","name":"Berlinda Tolbert","type":"Person","_key":"34141"} +{"label":"Jasmine Guy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b8\/4d82b2017b9aa144540000b8\/jasmine-guy-profile.jpg","version":28,"birthday":"-246589200000","id":"77353","birthplace":"Boston, Massachusetts, USA","lastModified":"1301901306000","name":"Jasmine Guy","type":"Person","_key":"34142"} +{"label":"Young Guns II","description":"Only three of the original five \"young guns\" -- Billy the Kid (Emilio Estevez), Jose Chavez y Chavez (Lou Diamond Phillips), and Doc Scurlock (Kiefer Sutherland) -- return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett","id":"9086","runtime":132,"imdbId":"tt0100994","version":383,"lastModified":"1301902526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2df\/4d1d7b115e73d66b2d0002df\/young-guns-ii-mid.jpg","genre":"Action","title":"Young Guns II","releaseDate":649296000000,"language":"en","type":"Movie","_key":"34143"} +{"label":"The American President","description":"Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.","id":"9087","runtime":106,"imdbId":"tt0112346","trailer":"http:\/\/www.youtube.com\/watch?v=2269","version":220,"lastModified":"1301904746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bf\/4d6923147b9aa136310013bf\/the-american-president-mid.jpg","genre":"Comedy","title":"The American President","releaseDate":808099200000,"language":"en","tagline":"Why can't the most powerful man in the world have the one thing he wants most?","type":"Movie","_key":"34144"} +{"label":"Der kleine Eisb\u00e4r","description":"No overview found.","id":"9088","title":"Der kleine Eisb\u00e4r","language":"en","lastModified":"1301416132000","version":14,"type":"Movie","_key":"34145"} +{"label":"Home for the Holidays","description":"After losing her job, making out with her soon to be ex-boss, and finding out that her daughter plans to spend Thanksgiving with her boyfriend, Claudia Larson has to face spending the holiday with her family. She wonders if she can survive their crazy antics.","id":"9089","runtime":103,"imdbId":"tt0113321","version":202,"lastModified":"1301903742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0af\/4cf2e5c17b9aa149c80000af\/home-for-the-holidays-mid.jpg","genre":"Comedy","title":"Home for the Holidays","releaseDate":794880000000,"language":"en","type":"Movie","_key":"34146"} +{"label":"To Wong Foo, Thanks for Everything, Julie Newmar","description":"Three New York drag queens on their way to Hollywood for a beauty pageant get stranded in a small Midwestern town for the entire weekend when their car breaks down. While waiting for parts for their Cadillac convertible, the flamboyant trio shows the local homophobic rednecks that appearing different doesn't mean they don't have humanity in common.","id":"9090","runtime":105,"imdbId":"tt0114682","version":138,"lastModified":"1301904888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c25\/4d50804f7b9aa13aba00dc25\/to-wong-foo-thanks-for-everything-julie-newmar-mid.jpg","genre":"Comedy","title":"To Wong Foo, Thanks for Everything, Julie Newmar","releaseDate":810518400000,"language":"en","tagline":"Attitude is everything","type":"Movie","_key":"34147"} +{"label":"Sudden Death","description":"International action superstar Jean Claude Van Damme teams with Powers Boothe in a Tension-packed, suspense thriller, set against the back-drop of a Stanley Cup game.Van Damme portrays a father whose daughter is suddenly taken during a championship hockey game. With the captors demanding a billion dollars by game's end, Van Damme frantically sets a plan in motion to rescue his daughter and abort an impending explosion before the final buzzer...","id":"9091","runtime":106,"imdbId":"tt0114576","trailer":"http:\/\/www.youtube.com\/watch?v=WhXommpVOjU","version":234,"lastModified":"1301902225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/926\/4bc92473017a3c57fe00e926\/sudden-death-mid.jpg","genre":"Action","title":"Sudden Death","releaseDate":814665600000,"language":"en","type":"Movie","_key":"34148"} +{"label":"Snow White: A Tale of Terror","description":"Based somewhat more authentically on the Grimm Brothers' story of a young woman who is unliked by her stepmother, the film includes the talking mirror, a poisoned apple, and some ruffian gold (not diamond) miners (and they aren't dwarfs or cute). It takes place at the time of the Crusades, and depicts the attitudes of the wealthy and the peasant classes toward one another. Written by BOB STEBBINS","id":"9092","runtime":100,"imdbId":"tt0119227","version":232,"lastModified":"1301903926000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/399\/4ce186735e73d60f71000399\/snow-white-a-tale-of-terror-mid.jpg","genre":"Fantasy","title":"Snow White: A Tale of Terror","releaseDate":869184000000,"language":"en","tagline":"The fairy tale is over.","type":"Movie","_key":"34149"} +{"label":"Taryn Davis","version":20,"id":"56955","lastModified":"1301901614000","name":"Taryn Davis","type":"Person","_key":"34150"} +{"label":"Michael Cohn","version":21,"id":"56956","lastModified":"1301901883000","name":"Michael Cohn","type":"Person","_key":"34151"} +{"label":"The Four Feathers","description":"A British officer resigns his post just before battle and subsequently receives four white feathers from his friends and fiancee as symbols of what they believe to be his cowardice.","id":"9093","runtime":131,"imdbId":"tt0240510","trailer":"http:\/\/www.youtube.com\/watch?v=tQ_MrNPOzG4","version":281,"lastModified":"1301902836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26d\/4d6aac095e73d66b2300226d\/the-four-feathers-mid.jpg","genre":"Action","title":"The Four Feathers","releaseDate":1031443200000,"language":"en","tagline":"Freedom. Country. Honor. Passion. To save his best friend, one man must risk everything he loves. ","type":"Movie","_key":"34152"} +{"label":"Mary Reilly","description":"A housemaid falls in love with Dr. Jekyll and his darkly mysterious counterpart, Mr. Hyde.","id":"9095","runtime":104,"imdbId":"tt0117002","version":199,"lastModified":"1301904763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93c\/4bc92474017a3c57fe00e93c\/mary-reilly-mid.jpg","genre":"Drama","title":"Mary Reilly","releaseDate":825033600000,"language":"en","type":"Movie","_key":"34153"} +{"label":"Medicine Man","description":"An eccentric scientist working for a large drug company is working on a research project in the Amazon jungle. He sends for a research assistant and a gas chromatograph because he's close to a cure for cancer. When the assistant turns out to be a \"mere woman,\" he rejects her help. Meanwhile the bulldozers get closer to the area in which they are conducting research, and they eventually learn to work together, and begin falling in love.","id":"9096","runtime":106,"imdbId":"tt0104839","version":109,"lastModified":"1301903630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4c31c16a7b9aa170f2000095\/medicine-man-mid.jpg","genre":"Action","title":"Medicine Man","releaseDate":697420800000,"language":"en","type":"Movie","_key":"34154"} +{"label":"Rodolfo De Alexandre","version":22,"id":"56962","lastModified":"1301901633000","name":"Rodolfo De Alexandre","type":"Person","_key":"34155"} +{"label":"Angelo Barra Moreira","version":22,"id":"56963","lastModified":"1301902300000","name":"Angelo Barra Moreira","type":"Person","_key":"34156"} +{"label":"Francisco Tsiren Tsere Rereme","version":22,"id":"56964","lastModified":"1301902300000","name":"Francisco Tsiren Tsere Rereme","type":"Person","_key":"34157"} +{"label":"Baader","description":"No overview found.","id":"9097","runtime":115,"imdbId":"tt0309320","version":68,"lastModified":"1301908324000","genre":"Action","title":"Baader","releaseDate":1013731200000,"language":"en","type":"Movie","_key":"34158"} +{"label":"Christopher Roth","version":39,"id":"56989","lastModified":"1301903112000","name":"Christopher Roth","type":"Person","_key":"34159"} +{"label":"Echte Kerle","description":"Macho cop finds himself in a relationship with a gay man and questions his life. German.","id":"9098","runtime":100,"imdbId":"tt0116164","version":42,"lastModified":"1301905279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f7\/4c53ae1c7b9aa13d4b0004f7\/echte-kerle-mid.jpg","studio":"Cobra Film","genre":"Comedy","title":"Echte Kerle","releaseDate":833414400000,"language":"en","type":"Movie","_key":"34160"} +{"label":"Tim Bergmann","version":22,"id":"56970","lastModified":"1301901957000","name":"Tim Bergmann","type":"Person","_key":"34161"} +{"label":"Sgt. Bilko","description":"The army is known for churning out lean mean fighting machines intent on protecting our great nation. Martin is the inexplicable the incorrigible the invicible sgt. Ernie bilko leader of a ragtag group of the sorriest soldiers ever to enlist in the armed forces.","id":"9099","runtime":90,"imdbId":"tt0117608","trailer":"http:\/\/www.youtube.com\/watch?v=lnymWvGgVUw","version":150,"lastModified":"1301903624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94e\/4bc92476017a3c57fe00e94e\/sgt-bilko-mid.jpg","genre":"Comedy","title":"Sgt. Bilko","releaseDate":828057600000,"language":"en","type":"Movie","_key":"34162"} +{"label":"The Craft","description":"A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.","id":"9100","runtime":101,"imdbId":"tt0115963","trailer":"http:\/\/www.youtube.com\/watch?v=DoM4OXQVCcE","version":412,"lastModified":"1301903578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/960\/4bc92477017a3c57fe00e960\/the-craft-mid.jpg","genre":"Drama","title":"The Craft","releaseDate":831081600000,"language":"en","tagline":"Welcome to the witching hour.","type":"Movie","_key":"34163"} +{"label":"Down Periscope","description":"Bumbling Navy lieutenant Tom Dodge has been given one last chance to clean up his record. But Admiral Graham, his nemesis, assigns Dodge to the Stingray, a submarine that can barely keep afloat. To add insult to injury, the Stingray is to be the enemy flagship in the upcoming war games \u2026 and to make matters even worse, Dodge's crew is a band of idiots even more incompetent that he is!","id":"9101","runtime":92,"imdbId":"tt0116130","trailer":"http:\/\/www.youtube.com\/watch?v=1131","version":206,"lastModified":"1301901962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3b\/4d4cb04f7b9aa13aba007f3b\/down-periscope-mid.jpg","genre":"Action","title":"Down Periscope","releaseDate":825638400000,"language":"en","tagline":"A rusty sub. A rebel commander. A renegade crew. When destiny called, they should have hung up.","type":"Movie","_key":"34164"} +{"label":"David S. Ward","version":56,"id":"12920","lastModified":"1301901405000","name":"David S. Ward","type":"Person","_key":"34165"} +{"label":"Screamers","description":"(SIRIUS 6B, Year 2078) On a distant mining planet ravaged by a decade of war, scientists have created the perfect weapon: a blade-wielding, self-replicating race of killing devices known as Screamers designed for one purpose only -- to hunt down and destroy all enemy life forms. ","id":"9102","runtime":104,"imdbId":"tt0114367","trailer":"http:\/\/www.youtube.com\/watch?v=50rO2ICyc2A","version":259,"lastModified":"1301902463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bd\/4c7bbfa25e73d613d40005bd\/screamers-mid.jpg","genre":"Science Fiction","title":"Screamers","releaseDate":810518400000,"language":"en","type":"Movie","_key":"34166"} +{"label":"Roy Dupuis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4c03f4df017a3c7e8700015a\/roy-dupuis-profile.jpg","version":30,"id":"56977","lastModified":"1301902310000","name":"Roy Dupuis","type":"Person","_key":"34167"} +{"label":"Jennifer Rubin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4c03f49a017a3c7e920001df\/jennifer-rubin-profile.jpg","version":35,"id":"56978","lastModified":"1301901946000","name":"Jennifer Rubin","type":"Person","_key":"34168"} +{"label":"Andrew Lauer","version":26,"id":"56979","lastModified":"1301901859000","name":"Andrew Lauer","type":"Person","_key":"34169"} +{"label":"The Quest","description":"Ghang-gheng, the ancient winner-take-all competition in which the deadliest fighters from around the world employ the most spectacular feats of martial arts skills ever displayed in order to win the prized Golden Dragon. But fighting prowess alone will not be enough for Chris to triumph over such daunting foes.","id":"9103","runtime":94,"imdbId":"tt0117420","trailer":"http:\/\/www.youtube.com\/watch?v=C-8WuCEYL74","version":125,"lastModified":"1301902956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99b\/4bc9247e017a3c57fe00e99b\/the-quest-mid.jpg","genre":"Action","title":"The Quest","releaseDate":838857600000,"language":"en","type":"Movie","_key":"34170"} +{"label":"Janet Gunn","version":23,"id":"56984","lastModified":"1301901614000","name":"Janet Gunn","type":"Person","_key":"34171"} +{"label":"Buffalo Soldiers","description":"Set just before the fall of the Berlin Wall in 1989, Sgt. Ray Elwood is an American soldier stationed at a German army camp. A soldier because a judge gave him a choice between the army and jail, Ray spends much of his free time cooking cocaine for the MPs. When a soldier dies and a toxicology screen shows an alarming level of illegal narcotics, someone is sent in to investigate.","id":"9104","runtime":98,"imdbId":"tt0252299","trailer":"http:\/\/www.youtube.com\/watch?v=_rT7QhC8qVs","version":154,"lastModified":"1301903839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ac\/4bc92482017a3c57fe00e9ac\/buffalo-soldiers-mid.jpg","studio":"FilmFour","genre":"Comedy","title":"Buffalo Soldiers","releaseDate":999907200000,"language":"en","tagline":"Steal all that you can steal","type":"Movie","_key":"34172"} +{"label":"Gregor Jordan","version":42,"id":"57030","lastModified":"1301901194000","name":"Gregor Jordan","type":"Person","_key":"34173"} +{"label":"Haluk Bilginer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/398\/4ce153f45e73d60f70000398\/haluk-bilginer-profile.jpg","biography":"5 Haziran 1954 g\u00fcn\u00fc sigortac\u0131 Tahsin Bey ile ev han\u0131m\u0131 Bedriye Han\u0131m'\u0131n \u00fc\u00e7 \u00e7ocu\u011fundan ortancas\u0131 olarak d\u00fcnyaya geldi. Lise son s\u0131n\u0131fta okulunun tiyatro koluna girdi ve Demokrat \u0130zmir Gazetesi'nin a\u00e7t\u0131\u011f\u0131 liseleraras\u0131 tiyatro yar\u0131\u015fmas\u0131nda ilk \u00f6d\u00fcl\u00fcn\u00fc ald\u0131. J\u00fcrideki tiyatro m\u00fcd\u00fcr\u00fc Rag\u0131p Hayk\u0131r'\u0131n davetiyle \u0130zmir Devlet Tiyatrosu'nda konuk oyuncu olarak \u00e7al\u0131\u015ft\u0131. 1971 y\u0131l\u0131nda Ankara Devlet Konservatuvar\u0131 Tiyatro B\u00f6l\u00fcm\u00fc'ne girdi.Devlet Konservatuvar\u0131'ndaki e\u011fitimini bitirdikten sonra Devlet Tiyatrosun","version":38,"birthday":"-491533200000","id":"117640","birthplace":"\u0130zmir","lastModified":"1301901712000","name":"Haluk Bilginer","type":"Person","_key":"34174"} +{"label":"Broken Arrow","description":"When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.","id":"9208","runtime":108,"imdbId":"tt0115759","trailer":"http:\/\/www.youtube.com\/watch?v=k4Rkn_3HwzI","version":279,"lastModified":"1301902076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b9\/4bc92484017a3c57fe00e9b9\/broken-arrow-mid.jpg","genre":"Action","title":"Broken Arrow","releaseDate":823824000000,"language":"en","tagline":"Prepare to Go Ballistic.","type":"Movie","_key":"34175"} +{"label":"Howie Long","version":26,"id":"126418","lastModified":"1301902413000","name":"Howie Long","type":"Person","_key":"34176"} +{"label":"Vyto Ruginis","version":35,"id":"61216","lastModified":"1301901848000","name":"Vyto Ruginis","type":"Person","_key":"34177"} +{"label":"Casey Biggs","version":25,"id":"62548","lastModified":"1301901713000","name":"Casey Biggs","type":"Person","_key":"34178"} +{"label":"Jeffrey J. Stephen","version":19,"id":"141582","lastModified":"1301902100000","name":"Jeffrey J. Stephen","type":"Person","_key":"34179"} +{"label":"Joey Box","version":22,"id":"9558","lastModified":"1301901590000","name":"Joey Box","type":"Person","_key":"34180"} +{"label":"Otto - Der Neue Film","description":"No overview found.","id":"9252","runtime":82,"imdbId":"tt0095799","version":63,"lastModified":"1301908324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c3\/4bc92485017a3c57fe00e9c3\/otto-der-neue-film-mid.jpg","genre":"Comedy","title":"Otto - Der Neue Film","releaseDate":553392000000,"language":"en","type":"Movie","_key":"34181"} +{"label":"Anja Jaenicke","version":19,"id":"57000","lastModified":"1301901731000","name":"Anja Jaenicke","type":"Person","_key":"34182"} +{"label":"Ute Sander","version":19,"id":"57001","lastModified":"1301902096000","name":"Ute Sander","type":"Person","_key":"34183"} +{"label":"Xaver Schwarzenberger","version":32,"id":"3768","lastModified":"1301901450000","name":"Xaver Schwarzenberger","type":"Person","_key":"34184"} +{"label":"Was nicht passt, wird passend gemacht","description":"No overview found.","id":"9254","runtime":101,"imdbId":"tt0278815","version":64,"lastModified":"1301905640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c8\/4bc92485017a3c57fe00e9c8\/was-nicht-passt-wird-passend-gemacht-mid.jpg","genre":"Comedy","title":"Was nicht passt, wird passend gemacht","releaseDate":1015459200000,"language":"en","type":"Movie","_key":"34185"} +{"label":"Hot Shots! Part Deux","description":"Topper Harley is found to be working as an odd-job-man in a monastery. The CIA want him to lead a rescue mission into Iraq, to rescue the last rescue team, who went in to rescue the last rescue team who... who went in to rescue hostages left behind after Desert Storm.","id":"9255","runtime":86,"imdbId":"tt0107144","trailer":"http:\/\/www.youtube.com\/watch?v=hEc-9hIdK0E","version":216,"lastModified":"1301901695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e33\/4d7a5efa7b9aa11a18000e33\/hot-shots-part-deux-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Hot Shots! Part Deux","releaseDate":737942400000,"language":"en","tagline":"Just deux it.","type":"Movie","_key":"34186"} +{"label":"Kopps","description":"The film concerns the police force of a small fictional Swedish village, H\u00f6gbotr\u00e4sk. The village is so peaceful that crime has become nonexistent. The police spend their shifts drinking coffee, eating hot dogs and chasing down runaway cows. This is all well and good for the village's own police, but the police management board wants to discontinue the local police force for lack of crime.","id":"9256","runtime":90,"imdbId":"tt0339230","trailer":"http:\/\/www.youtube.com\/watch?v=836","version":118,"lastModified":"1301904954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/140\/4c4c6d795e73d62a3e000140\/kopps-mid.jpg","genre":"Action","title":"Kopps","releaseDate":1043366400000,"language":"en","type":"Movie","_key":"34187"} +{"label":"Fares Fares","version":22,"id":"57012","lastModified":"1301901606000","name":"Fares Fares","type":"Person","_key":"34188"} +{"label":"Torkel Petersson","version":32,"id":"57013","lastModified":"1301901314000","name":"Torkel Petersson","type":"Person","_key":"34189"} +{"label":"G\u00f6ran Ragnerstam","version":26,"id":"57014","lastModified":"1301902141000","name":"G\u00f6ran Ragnerstam","type":"Person","_key":"34190"} +{"label":"Sissela Kyle","version":27,"id":"57015","lastModified":"1301902046000","name":"Sissela Kyle","type":"Person","_key":"34191"} +{"label":"Josef Fares","version":26,"id":"57022","lastModified":"1301901490000","name":"Josef Fares","type":"Person","_key":"34192"} +{"label":"S.W.A.T.","description":"An imprisoned drug kingpin offers a huge cash reward to anyone that can break him out of police custody and only the LAPD's Special Weapons and Tactics team can prevent it.","id":"9257","runtime":117,"imdbId":"tt0257076","trailer":"http:\/\/www.youtube.com\/watch?v=tLhMJFw5HVQ","homepage":"http:\/\/www.sonypictures.com\/homevideo\/swat\/","version":695,"lastModified":"1301901932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37b\/4c584f6a7b9aa151f600037b\/s-w-a-t-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"S.W.A.T.","releaseDate":1060300800000,"language":"en","tagline":"Even cops dial 911","type":"Movie","_key":"34193"} +{"label":"Wie die Karnickel","description":"No overview found.","id":"9258","runtime":84,"imdbId":"tt0289623","version":65,"lastModified":"1301906168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4c013505017a3c702f001240\/wie-die-karnickel-mid.jpg","genre":"Comedy","title":"Wie die Karnickel","releaseDate":1031788800000,"language":"en","type":"Movie","_key":"34194"} +{"label":"Sven Unterwaldt Jr.","version":29,"id":"59338","lastModified":"1301901511000","name":"Sven Unterwaldt Jr.","type":"Person","_key":"34195"} +{"label":"Sven Walser","version":20,"id":"57041","lastModified":"1301901995000","name":"Sven Walser","type":"Person","_key":"34196"} +{"label":"Bibi Blocksberg","description":"No overview found.","id":"9259","runtime":102,"imdbId":"tt0321436","version":77,"lastModified":"1301904234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e1\/4ca5e25d7b9aa16ed50003e1\/bibi-blocksberg-mid.jpg","genre":"Comedy","title":"Bibi Blocksberg","releaseDate":1033084800000,"language":"en","type":"Movie","_key":"34197"} +{"label":"Sidonie von Krosigk","version":22,"id":"57045","lastModified":"1301901696000","name":"Sidonie von Krosigk","type":"Person","_key":"34198"} +{"label":"Mareike Lindenmeyer","version":22,"id":"57046","lastModified":"1301901785000","name":"Mareike Lindenmeyer","type":"Person","_key":"34199"} +{"label":"Welcome to Collinwood","description":"Five hapless inner-city low-lifes unsuccessfully attempt to burgle a pawnbroker's safe, but wind up gaining more than they lose.","id":"9260","runtime":86,"imdbId":"tt0271259","version":148,"lastModified":"1301903895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a25\/4bc92492017a3c57fe00ea25\/welcome-to-collinwood-mid.jpg","genre":"Comedy","title":"Welcome to Collinwood","releaseDate":1022198400000,"language":"en","type":"Movie","_key":"34200"} +{"label":"The Wedding Banquet","description":"A Taiwanese-American man is happily settled in New York with his American boyfriend. He plans a marriage of convenience to a Chinese woman in order to keep his parents off his back and to get the woman a green card. Chaos follows when his parents arrive in New York for the wedding.","id":"9261","runtime":106,"imdbId":"tt0107156","trailer":"http:\/\/www.youtube.com\/watch?v=e-Ca-SPeJw4","version":258,"lastModified":"1301906109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2a\/4bc92493017a3c57fe00ea2a\/xi-yan-mid.jpg","genre":"Comedy","title":"The Wedding Banquet","releaseDate":744422400000,"language":"en","type":"Movie","_key":"34201"} +{"label":"Winston Chao","version":22,"id":"57054","lastModified":"1301901883000","name":"Winston Chao","type":"Person","_key":"34202"} +{"label":"Mitchell Lichtenstein","version":29,"id":"57055","lastModified":"1301901538000","name":"Mitchell Lichtenstein","type":"Person","_key":"34203"} +{"label":"May Chin","version":21,"id":"57056","lastModified":"1301901995000","name":"May Chin","type":"Person","_key":"34204"} +{"label":"Ya-lei Kuei","version":19,"id":"57057","lastModified":"1301902297000","name":"Ya-lei Kuei","type":"Person","_key":"34205"} +{"label":"My Mom's New Boyfriend","description":"Henry Durand is a young federal agent who is given a difficult assignment: spy on his mother and her boyfriend who is suspected of leading a gang of art thieves.","id":"9262","runtime":97,"imdbId":"tt0780534","version":192,"lastModified":"1301902283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a37\/4bc92494017a3c57fe00ea37\/my-mom-s-new-boyfriend-mid.jpg","genre":"Action","title":"My Mom's New Boyfriend","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"34206"} +{"label":"Now and Then","description":"Waxing nostalgic about the bittersweet passage from childhood to puberty in this tender coming-of-age tale, four childhood girlfriends -- Teeny, Chrissy, Samantha and Roberta -- recall the magical summer of 1970. During their walk down memory lane, they reconcile experiences with boys, secrets, bullies and more.","id":"9263","runtime":100,"imdbId":"tt0114011","trailer":"http:\/\/www.youtube.com\/watch?v=OxhiuNQPuj0","version":144,"lastModified":"1301907118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5e\/4d4f6c797b9aa13ab800ae5e\/now-and-then-mid.jpg","studio":"Nina Film","genre":"Comedy","title":"Now and Then","releaseDate":814147200000,"language":"en","tagline":"In every woman there is the girl she left behind.","type":"Movie","_key":"34207"} +{"label":"Lesli Linka Glatter","version":20,"id":"15798","lastModified":"1301901690000","name":"Lesli Linka Glatter","type":"Person","_key":"34208"} +{"label":"Ashleigh Aston Moore","version":24,"id":"114471","lastModified":"1301902810000","name":"Ashleigh Aston Moore","type":"Person","_key":"34209"} +{"label":"Walter Sparrow","version":19,"id":"141521","lastModified":"1301902740000","name":"Walter Sparrow","type":"Person","_key":"34210"} +{"label":"Poison Ivy","description":"A seductive teen befriends an introverted high school student and schemes her way into the lives of her wealthy family.","id":"9264","runtime":93,"imdbId":"tt0105156","trailer":"http:\/\/www.youtube.com\/watch?v=fYoQXPHGlWI","version":123,"lastModified":"1301903533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a49\/4bc92495017a3c57fe00ea49\/poison-ivy-mid.jpg","genre":"Suspense","title":"Poison Ivy","releaseDate":705283200000,"language":"en","type":"Movie","_key":"34211"} +{"label":"Die dunkle Seite","description":"No overview found.","id":"9265","runtime":90,"imdbId":"tt1110627","version":37,"lastModified":"1301904719000","genre":"Thriller","title":"Die dunkle Seite","releaseDate":1211068800000,"language":"en","type":"Movie","_key":"34212"} +{"label":"Peter Keglevic","version":32,"id":"50799","lastModified":"1301901842000","name":"Peter Keglevic","type":"Person","_key":"34213"} +{"label":"Melika Foroutan","version":23,"id":"57064","lastModified":"1301901826000","name":"Melika Foroutan","type":"Person","_key":"34214"} +{"label":"Charly H\u00fcbner","version":18,"id":"57067","lastModified":"1301902377000","name":"Charly H\u00fcbner","type":"Person","_key":"34215"} +{"label":"Blue Crush","description":"Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along...","id":"9266","runtime":104,"imdbId":"tt0300532","trailer":"http:\/\/www.youtube.com\/watch?v=ljN7SEEwhmM","version":158,"lastModified":"1301902749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d51\/4d44c06b5e73d602b2000d51\/blue-crush-mid.jpg","genre":"Action","title":"Blue Crush","releaseDate":1028764800000,"language":"en","tagline":"Three Friends, One Passion, No Limits.","type":"Movie","_key":"34216"} +{"label":"Sanoe Lake","version":22,"id":"57088","lastModified":"1301901928000","name":"Sanoe Lake","type":"Person","_key":"34217"} +{"label":"Chris Taloa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/289\/4d20b4f67b9aa1737b002289\/chris-taloa-profile.jpg","version":24,"id":"57089","lastModified":"1301901426000","name":"Chris Taloa","type":"Person","_key":"34218"} +{"label":"Monty Python's And Now for Something Completely Different","description":"And Now for Something Completely Different is a film spin-off from the television comedy series Monty Python's Flying Circus featuring favourite sketches from the first two seasons.","id":"9267","runtime":88,"imdbId":"tt0066765","version":109,"lastModified":"1301906240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a69\/4bc9249a017a3c57fe00ea69\/and-now-for-something-completely-different-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Monty Python's And Now for Something Completely Different","releaseDate":54864000000,"language":"en","type":"Movie","_key":"34219"} +{"label":"Ian MacNaughton","version":24,"id":"57073","lastModified":"1301904134000","name":"Ian MacNaughton","type":"Person","_key":"34220"} +{"label":"Eraser","description":"U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.","id":"9268","runtime":115,"imdbId":"tt0116213","trailer":"http:\/\/www.youtube.com\/watch?v=YYfiV8rb3fA","version":215,"lastModified":"1301902863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4d8b58675e73d653ce000b82\/eraser-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Eraser","releaseDate":834451200000,"language":"en","tagline":"He will erase your past to protect your future.","type":"Movie","_key":"34221"} +{"label":"Joe Viterelli","version":38,"id":"60023","lastModified":"1301901326000","name":"Joe Viterelli","type":"Person","_key":"34222"} +{"label":"M\u00e4nnerpension","description":"Ein F\u00f6rderprogramm bringt die beiden Kanckis Gerd und Steinbock in die Obhut von Frauen. Dort sollen sie beweisen, dass sie in der Lage sind sich in die Gesellschaft zu integrieren. Nun bringt Gerd dummerweise einen Barbesitzer um. Damit hat der Ausflug in die Freiheit vorlaeufig ein Ende.","id":"9269","runtime":96,"imdbId":"tt0117135","version":48,"lastModified":"1301904978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/575\/4d4135b15e73d65721000575\/m-nnerpension-mid.jpg","genre":"Comedy","title":"M\u00e4nnerpension","releaseDate":823132800000,"language":"en","type":"Movie","_key":"34223"} +{"label":"Brick","description":"A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.","id":"9270","runtime":110,"imdbId":"tt0393109","trailer":"http:\/\/www.youtube.com\/watch?v=3cVzHeJ0Z3I","homepage":"http:\/\/www.brickmovie.net\/","version":220,"lastModified":"1301902173000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a90\/4bc924a2017a3c57fe00ea90\/brick-mid.jpg","studio":"Focus Features","genre":"Crime","title":"Brick","releaseDate":1107129600000,"language":"en","tagline":"A detective story.","type":"Movie","_key":"34224"} +{"label":"Nora Zehetner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bf\/4cb1b50a7b9aa12cf70001bf\/nora-zehetner-profile.jpg","version":33,"id":"34070","lastModified":"1301901400000","name":"Nora Zehetner","type":"Person","_key":"34225"} +{"label":"Noah Fleiss","version":27,"id":"57286","lastModified":"1301901765000","name":"Noah Fleiss","type":"Person","_key":"34226"} +{"label":"Matt O'Leary","version":32,"id":"71467","lastModified":"1301901611000","name":"Matt O'Leary","type":"Person","_key":"34227"} +{"label":"Rian Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d45\/4d5ec9425e73d60c6d001d45\/rian-johnson-profile.jpg","version":47,"birthday":"124930800000","id":"67367","birthplace":"Maryland, USA","lastModified":"1301901635000","name":"Rian Johnson","type":"Person","_key":"34228"} +{"label":"Virtuosity","description":"The Law Enforcement Technology Advancement Centre (LETAC) has developed SID version 6.7: a Sadistic, Intelligent, and Dangerous virtual reality entity which is synthesized from the personalities of more than 150 serial killers, and only one man can stop him.","id":"9271","runtime":106,"imdbId":"tt0114857","trailer":"http:\/\/www.youtube.com\/watch?v=pC3ry8ww_Ds","version":182,"lastModified":"1301903139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4bc924a4017a3c57fe00eaa8\/virtuosity-mid.jpg","genre":"Action","title":"Virtuosity","releaseDate":807494400000,"language":"en","tagline":"Justice needs a new program.","type":"Movie","_key":"34229"} +{"label":"Brett Leonard","version":38,"id":"57090","lastModified":"1301901572000","name":"Brett Leonard","type":"Person","_key":"34230"} +{"label":"Stephen Spinella","version":28,"id":"57093","lastModified":"1301902000000","name":"Stephen Spinella","type":"Person","_key":"34231"} +{"label":"The Good Son","description":"A young boy stays with his aunt and uncle, and befriends his cousin who's the same age. But his cousin begins showing increasing signs of psychotic behavior.","id":"9272","runtime":87,"imdbId":"tt0107034","version":168,"lastModified":"1301903819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab5\/4bc924a5017a3c57fe00eab5\/the-good-son-mid.jpg","genre":"Drama","title":"The Good Son","releaseDate":748828800000,"language":"en","type":"Movie","_key":"34232"} +{"label":"Quinn Culkin","version":21,"id":"57099","lastModified":"1301902273000","name":"Quinn Culkin","type":"Person","_key":"34233"} +{"label":"Ace Ventura: When Nature Calls","description":"Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.","id":"9273","runtime":90,"imdbId":"tt0112281","trailer":"http:\/\/www.youtube.com\/watch?v=n1ZVImkf_TQ","version":140,"lastModified":"1301901944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/046\/4bed9a60017a3c458a000046\/ace-ventura-when-nature-calls-mid.jpg","genre":"Comedy","title":"Ace Ventura: When Nature Calls","releaseDate":815961600000,"language":"en","type":"Movie","_key":"34234"} +{"label":"Maynard Eziashi","version":25,"id":"57096","lastModified":"1301901839000","name":"Maynard Eziashi","type":"Person","_key":"34235"} +{"label":"Steve Oedekerk","version":120,"id":"4489","lastModified":"1301901285000","name":"Steve Oedekerk","type":"Person","_key":"34236"} +{"label":"Feuer, Eis und Dosenbier","description":"No overview found.","id":"9274","runtime":83,"imdbId":"tt0277703","version":52,"lastModified":"1301908324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/320\/4d81740d5e73d6724f001320\/feuer-eis-und-dosenbier-mid.jpg","genre":"Comedy","title":"Feuer, Eis und Dosenbier","releaseDate":1014249600000,"language":"en","type":"Movie","_key":"34237"} +{"label":"Jonas Gruber","version":19,"id":"57100","lastModified":"1301901883000","name":"Jonas Gruber","type":"Person","_key":"34238"} +{"label":"Andreas Elsholz","version":19,"id":"57101","lastModified":"1301901883000","name":"Andreas Elsholz","type":"Person","_key":"34239"} +{"label":"Mathias Dinter","version":27,"id":"18037","lastModified":"1301901648000","name":"Mathias Dinter","type":"Person","_key":"34240"} +{"label":"Death to Smoochy","description":"When he is fired for taking payola, the host for a children's television show plots revenge against his replacement, a rhino named Smoochy.","id":"9275","runtime":109,"imdbId":"tt0266452","version":169,"lastModified":"1302039568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae1\/4bc924ab017a3c57fe00eae1\/death-to-smoochy-mid.jpg","genre":"Comedy","title":"Death to Smoochy","releaseDate":1014854400000,"language":"en","type":"Movie","_key":"34241"} +{"label":"The Faculty","description":"When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions; their teachers really are from another planet! As mind-controlling parasites rapidly begin spreading from the faculty to the students' bodies it's ultimately up to the few who are left - an unlikely collection of loners, leaders, nerds and jocks - to save the world from alien domination!","id":"9276","runtime":104,"imdbId":"tt0133751","trailer":"http:\/\/www.youtube.com\/watch?v=ig9HztI9-nY","version":182,"lastModified":"1301902751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f9\/4d42e5577b9aa15bab0048f9\/the-faculty-mid.jpg","genre":"Horror","title":"The Faculty","releaseDate":910828800000,"language":"en","tagline":"Take me to your teacher.","type":"Movie","_key":"34242"} +{"label":"Usher Raymond","version":25,"id":"57108","lastModified":"1301901647000","name":"Usher Raymond","type":"Person","_key":"34243"} +{"label":"The Sting","description":"Set in the 1930's this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.","id":"9277","runtime":129,"imdbId":"tt0070735","version":204,"lastModified":"1301901927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5b\/4be718b8017a3c35b9000c5b\/the-sting-mid.jpg","genre":"Action","title":"The Sting","releaseDate":125625600000,"language":"en","type":"Movie","_key":"34244"} +{"label":"Freejack","description":"Time-traveling bounty hunters find a doomed race-car driver in the past and bring him to 2009 New York, where his mind will be replaced with that of a terminally ill billionaire.","id":"9278","runtime":110,"imdbId":"tt0104299","trailer":"http:\/\/www.youtube.com\/watch?v=2jlaE_8zcMU","version":189,"lastModified":"1301903289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/126\/4c2f0a2c7b9aa16660000126\/freejack-mid.jpg","genre":"Action","title":"Freejack","releaseDate":695606400000,"language":"en","type":"Movie","_key":"34245"} +{"label":"David Johansen","version":28,"id":"57116","lastModified":"1301901854000","name":"David Johansen","type":"Person","_key":"34246"} +{"label":"Jingle All the Way","description":"Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, he tries hard to come up with a way to make it up to him, this is when his son tells Howard that he wants for Christmas is an action figure of his son's television hero, Turbo Man. Unfotunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man figures, now Howard must travel all over town and compet","id":"9279","runtime":89,"imdbId":"tt0116705","trailer":"http:\/\/www.youtube.com\/watch?v=zyEr8YX1cnY","version":311,"lastModified":"1302045404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/098\/4d5c1b3b7b9aa1122f001098\/jingle-all-the-way-mid.jpg","genre":"Comedy","title":"Jingle All the Way","releaseDate":848102400000,"language":"en","tagline":"Two Dads, One Toy, No Prisoners.","type":"Movie","_key":"34247"} +{"label":"Sinbad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/775\/4d9aad4c7b9aa164c3000775\/sinbad-profile.jpg","version":42,"id":"57119","lastModified":"1301975340000","name":"Sinbad","type":"Person","_key":"34248"} +{"label":"Femme Fatale","description":"A woman tries to straighten out her life, even as her past as a con-woman comes back to haunt her.","id":"9280","runtime":114,"imdbId":"tt0280665","version":198,"lastModified":"1301902302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b45\/4bc924bb017a3c57fe00eb45\/femme-fatale-mid.jpg","studio":"Epsilon Motion Pictures","genre":"Crime","title":"Femme Fatale","releaseDate":1020124800000,"language":"en","type":"Movie","_key":"34249"} +{"label":"Rie Rasmussen","version":27,"id":"57121","lastModified":"1301901277000","name":"Rie Rasmussen","type":"Person","_key":"34250"} +{"label":"Witness","description":"A young Amish boy is sole witness to a murder; policeman John Book goes into hiding in Amish country to protect him until the trial.","id":"9281","runtime":112,"imdbId":"tt0090329","version":181,"lastModified":"1301903894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b53\/4bc924bc017a3c57fe00eb53\/witness-mid.jpg","genre":"Crime","title":"Witness","releaseDate":476668800000,"language":"en","type":"Movie","_key":"34251"} +{"label":"11:14","description":"Even though they're strangers, Buzzy (Academy Award winner Hilary Swank), Mark (Colin Hanks), Cheri (Rachael Leigh Cook), Jack (Henry Thomas) and Eddie (Ben Foster) will become part of each other's lives -- even if it kills them -- in this innovative drama composed of five seemingly random story lines that intersect at precisely 11:14 p.m. Patrick Swayze and Barbara Hershey co-star in indie writer-director Greg Marcks's sophomore feature.","id":"9282","runtime":86,"imdbId":"tt0331811","trailer":"http:\/\/www.youtube.com\/watch?v=wlFlI3phalE","version":239,"lastModified":"1301901864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4d2b9b077b9aa16466000038\/11-14-mid.jpg","studio":"MDP Worldwide","genre":"Comedy","title":"11:14","releaseDate":1053043200000,"language":"en","tagline":"Fate can change in seconds","type":"Movie","_key":"34252"} +{"label":"Greg Marcks","version":31,"id":"57125","lastModified":"1301901362000","name":"Greg Marcks","type":"Person","_key":"34253"} +{"label":"Blake Heron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cf\/4c8cee985e73d609ed0001cf\/blake-heron-profile.jpg","version":32,"id":"57127","lastModified":"1301901380000","name":"Blake Heron","type":"Person","_key":"34254"} +{"label":"Rick Gomez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a0\/4c8cf4e65e73d6068f0004a0\/rick-gomez-profile.jpg","version":25,"id":"123532","lastModified":"1301902779000","name":"Rick Gomez","type":"Person","_key":"34255"} +{"label":"Beautiful Girls","description":"A piano player (played by Timothy Hutton), at a crossroads in his life, returns to his hometown for a high school reunion, where he finds that his classmates are not very successful in life either, especially not in love. His heart, however, is captured by a young girl who is only thirteen but an \"old soul\" (played by Natalie Portman).\n","id":"9283","runtime":112,"imdbId":"tt0115639","version":144,"lastModified":"1301903556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7d\/4bc924c0017a3c57fe00eb7d\/beautiful-girls-mid.jpg","genre":"Comedy","title":"Beautiful Girls","releaseDate":823824000000,"language":"en","type":"Movie","_key":"34256"} +{"label":"Rennschwein Rudi R\u00fcssel","description":"Flat-dwelling urban family win a pig in a raffle, and decide to keep it. They lose their flat (no pets allowed) but eventually Rudi the pig makes good.","id":"9284","runtime":101,"imdbId":"tt0114267","version":45,"lastModified":"1301907410000","genre":"Comedy","title":"Rennschwein Rudi R\u00fcssel","releaseDate":795312000000,"language":"en","type":"Movie","_key":"34257"} +{"label":"Cora Sabrina Grimm","version":20,"id":"57128","lastModified":"1301902389000","name":"Cora Sabrina Grimm","type":"Person","_key":"34258"} +{"label":"Kristina Pauls","version":20,"id":"57129","lastModified":"1301902373000","name":"Kristina Pauls","type":"Person","_key":"34259"} +{"label":"Road Trip","description":"Josh and Tiffany have been together since they were kids. Enter Beth, a sexy blonde going to college with Josh. One night, Josh and Beth hook up and make a videotape the same day that Josh plans to mail a video to Tiffany of him talking about college life. The wrong tape gets sent, forcing Josh, along with a few pals, to go to Austin, where Tiffany is, and stop her from seeing the tape. ","id":"9285","runtime":93,"imdbId":"tt0215129","version":147,"lastModified":"1301903444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8f\/4bc924c4017a3c57fe00eb8f\/road-trip-mid.jpg","genre":"Comedy","title":"Road Trip","releaseDate":958003200000,"language":"en","type":"Movie","_key":"34260"} +{"label":"Todd Phillips","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4cdc5aa27b9aa1380100006a\/todd-phillips-profile.jpg","biography":"American screenwriter and film director Todd Phillips made his first while a junior at NYU and it went on to become one of the biggest grossing student films at the time, even getting a limited theatrical release.; the feature-length documentary \u201cHated: GG Allin and the Murder Junkies\u201d He is best known for directing the comedy films Road Trip, Old School, The Hangover, and Due Date.\n\nPhillips directed and produced the highest grossing R-Rated Comedy of all time \u201cThe Hangover\u201d (2009), Its worldwi","version":118,"birthday":"30495600000","id":"57130","birthplace":"Brooklyn, New York, USA","lastModified":"1302059269000","name":"Todd Phillips","type":"Person","_key":"34261"} +{"label":"DJ Qualls","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ed\/4c8c8fc65e73d6068e0003ed\/donald-joseph-qualls-profile.jpg","biography":"<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">DJ Qualls grew up in the small city of Manchester in the Middle Tennessee, one of five children. After studying at The University of London, he returned to Tennessee where he began acting in a local theatre. During that time, he was discovered by photographers David La Chappelle and Steve Klein, which led to modeling work for Prada, as w","version":38,"birthday":"266454000000","id":"132078","birthplace":"Nashville, Tennessee, USA","lastModified":"1301901305000","name":"DJ Qualls","type":"Person","_key":"34262"} +{"label":"Final Destination 3","description":"In this third installment of the Final Destination series, a student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself which seeks out those who escaped their fate","id":"9286","runtime":93,"imdbId":"tt0414982","trailer":"http:\/\/www.youtube.com\/watch?v=Nek7VJQtsuE","version":337,"lastModified":"1301901405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/239\/4d6836e75e73d66b27000239\/final-destination-3-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Final Destination 3","releaseDate":1139443200000,"language":"en","tagline":"This Ride Will Be The Death Of You.","type":"Movie","_key":"34263"} +{"label":"James Wong","version":72,"id":"57134","lastModified":"1301901263000","name":"James Wong","type":"Person","_key":"34264"} +{"label":"Ryan Merriman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d69\/4d52d5347b9aa13aab011d69\/ryan-merriman-profile.jpg","version":36,"id":"57136","lastModified":"1301901359000","name":"Ryan Merriman","type":"Person","_key":"34265"} +{"label":"Alexz Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/423\/4cf23a197b9aa14497000423\/alexz-johnson-profile.jpg","version":25,"id":"57137","lastModified":"1301901424000","name":"Alexz Johnson","type":"Person","_key":"34266"} +{"label":"Jesse Moss","version":42,"id":"59926","lastModified":"1302017474000","name":"Jesse Moss","type":"Person","_key":"34267"} +{"label":"Gina Holden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ada\/4d2614cd7b9aa134cb000ada\/gina-holden-profile.jpg","version":49,"id":"33336","lastModified":"1301901106000","name":"Gina Holden","type":"Person","_key":"34268"} +{"label":"Crystal Lowe","version":38,"id":"58393","lastModified":"1301901395000","name":"Crystal Lowe","type":"Person","_key":"34269"} +{"label":"Amanda Crew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/38d\/4c4838a47b9aa15ddf00038d\/amanda-crew-profile.jpg","biography":"Amanda Crew wurde in Hip-Hop-Tanz und Jazztanz ausgebildet. Sie bekam ihre erste Rolle in dem Musical Dragon Tails, gefolgt von weiteren Rollen des Genres. 2003 begann sie eine Schauspielausbildung an der American Academy of Dramatic Arts (AADA) in New York City und lernte nebenbei auch an der Carousal Theatre School. Ihren Durchbruch als Darstellerin hatte Crew in der kanadischen Fernsehserie Matchball f\u00fcr die Liebe, spielte aber auch kleinere Rollen in Serien wie Smallville und Life As We Know","version":69,"birthday":"518306400000","id":"58370","birthplace":"Langley, British Columbia, Canada","lastModified":"1301901182000","name":"Amanda Crew","type":"Person","_key":"34270"} +{"label":"Maggie Ma","version":24,"id":"77051","lastModified":"1301901486000","name":"Maggie Ma","type":"Person","_key":"34271"} +{"label":"Ecstasia Sanders","version":28,"id":"77052","lastModified":"1301901282000","name":"Ecstasia Sanders","type":"Person","_key":"34272"} +{"label":"Jody Racicot","version":31,"id":"33339","lastModified":"1301901282000","name":"Jody Racicot","type":"Person","_key":"34273"} +{"label":"Botte Di Natale","description":"No overview found.","id":"9287","runtime":107,"imdbId":"tt0109321","version":61,"lastModified":"1301906623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/471\/4c59e7755e73d63a6f000471\/botte-di-natale-mid.jpg","genre":"Comedy","title":"Botte Di Natale","releaseDate":785721600000,"language":"en","type":"Movie","_key":"34274"} +{"label":"Boots Southerland","version":22,"id":"57155","lastModified":"1301902273000","name":"Boots Southerland","type":"Person","_key":"34275"} +{"label":"Dungeons & Dragons: Wrath of the Dragon God","description":"Due to a curse from his former master Profion, Damodar survived his death by Ridley Freeborn as an undead entity in pursuit of an evil artifact for some hundred years, so that he might be capable of unleashing unstoppable destruction on Izmir and the descendants of those who caused his demise.","id":"9288","runtime":105,"imdbId":"tt0406728","version":130,"lastModified":"1301903125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb2\/4bc924c6017a3c57fe00ebb2\/dungeons-dragons-wrath-of-the-dragon-god-mid.jpg","genre":"Action","title":"Dungeons & Dragons: Wrath of the Dragon God","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"34276"} +{"label":"Mark Dymond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9b\/4d27c1987b9aa134dc001d9b\/mark-dymond-profile.jpg","version":29,"id":"57143","lastModified":"1301901280000","name":"Mark Dymond","type":"Person","_key":"34277"} +{"label":"Clemency Burton-Hill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d8f\/4d27c0d67b9aa134dc001d8f\/clemency-burton-hill-profile.jpg","version":26,"id":"57144","lastModified":"1301901361000","name":"Clemency Burton-Hill","type":"Person","_key":"34278"} +{"label":"Ellie Chidzey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d70\/4d27c11f7b9aa134cb001d70\/ellie-chidzey-profile.jpg","version":21,"id":"57145","lastModified":"1301901412000","name":"Ellie Chidzey","type":"Person","_key":"34279"} +{"label":"Tim Stern","version":21,"id":"57146","lastModified":"1301901644000","name":"Tim Stern","type":"Person","_key":"34280"} +{"label":"Lucy Gaskell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9b\/4d27e6967b9aa134d8001e9b\/lucy-gaskell-profile.jpg","version":19,"id":"141533","lastModified":"1301902206000","name":"Lucy Gaskell","type":"Person","_key":"34281"} +{"label":"Gerry Lively","version":36,"id":"21394","lastModified":"1301901572000","name":"Gerry Lively","type":"Person","_key":"34282"} +{"label":"Brian Rudnick","version":20,"id":"57150","lastModified":"1301902096000","name":"Brian Rudnick","type":"Person","_key":"34283"} +{"label":"Steve Richards","version":53,"id":"39726","lastModified":"1301901635000","name":"Steve Richards","type":"Person","_key":"34284"} +{"label":"The Longest Day","description":"The retelling of June 6, 1944, from the perspectives of the Germans, the US, Britain, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\"","id":"9289","runtime":178,"imdbId":"tt0056197","trailer":"http:\/\/www.youtube.com\/watch?v=nqFn_pM5QxU","version":171,"lastModified":"1301902642000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4c66addc5e73d6345f000b81\/the-longest-day-mid.jpg","genre":"Action","title":"The Longest Day","releaseDate":-229392000000,"language":"en","type":"Movie","_key":"34285"} +{"label":"Andrew Marton","version":26,"id":"57142","lastModified":"1301901714000","name":"Andrew Marton","type":"Person","_key":"34286"} +{"label":"Crocodile Dundee in Los Angeles","description":"After settling in the tiny Australian town of Walkabout Creek with his significant other and his young son, Mick \"Crocodile\" Dundee is thrown for a loop when a prestigious Los Angeles newspaper offers his honey a job. The family migrates back to the United States, and Croc and son soon find themselves learning some lessons about American life -- many of them inadvertent","id":"9290","runtime":92,"imdbId":"tt0231402","version":184,"lastModified":"1301903184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59b\/4d3e068e7b9aa15bb000059b\/crocodile-dundee-in-los-angeles-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Crocodile Dundee in Los Angeles","releaseDate":987033600000,"language":"en","tagline":"He heard there was wildlife in L.A. He didn't know how wild.","type":"Movie","_key":"34287"} +{"label":"Paul Hogan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b8\/4c0977f4017a3c29a60007b8\/paul-hogan-profile.jpg","biography":"Hogan's first film, Crocodile Dundee (1986), featuring a similarly down-to-earth hunter travelling from the Australian Outback to New York City, was privately funded by Hogan and a group of private investors including much of its cast, entrepreneur Kerry Packer, and cricketers Greg Chappell, Dennis Lillee and Rod Marsh. Hogan also wrote the screenplay.\n\nCrocodile Dundee became the most successful Australian film ever, and launched Hogan's international film career. It won him a Golden Globe Awar","version":64,"id":"57147","lastModified":"1301901291000","name":"Paul Hogan","type":"Person","_key":"34288"} +{"label":"Linda Kozlowski","version":34,"id":"57166","lastModified":"1301901233000","name":"Linda Kozlowski","type":"Person","_key":"34289"} +{"label":"Jere Burns","version":26,"id":"57167","lastModified":"1301902135000","name":"Jere Burns","type":"Person","_key":"34290"} +{"label":"The Longest Yard","description":"Pro quarter-back Paul Crewe (Sandler) and former college champion and coach Nate Scarboro (Reynolds) are doing in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quiet another way. ","id":"9291","runtime":113,"imdbId":"tt0398165","trailer":"http:\/\/www.youtube.com\/watch?v=tcjvASbT9eM","version":212,"lastModified":"1302065383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bde\/4bc924cc017a3c57fe00ebde\/the-longest-yard-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Longest Yard","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"34291"} +{"label":"Michael Irvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/486\/4ca5f12f7b9aa16ed7000486\/michael-irvin-profile.jpg","version":25,"birthday":"-120790800000","id":"69127","birthplace":"Fort Lauderdale, Florida, USA","lastModified":"1302065382000","name":"Michael Irvin","type":"Person","_key":"34292"} +{"label":"Nelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b6\/4ca5f5bb7b9aa16eda0004b6\/nelly-profile.jpg","version":29,"birthday":"152578800000","id":"69128","birthplace":"St. Louis, Missouri, United States","lastModified":"1302065382000","name":"Nelly","type":"Person","_key":"34293"} +{"label":"Bill Goldberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46d\/4ca5ff6a7b9aa16ed500046d\/bill-goldberg-profile.jpg","version":35,"birthday":"-95130000000","id":"65236","birthplace":"Tulsa, Oklahoma, U.S.","lastModified":"1302065382000","name":"Bill Goldberg","type":"Person","_key":"34294"} +{"label":"Bob Sapp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d9\/4ca603fc7b9aa16eda0004d9\/bob-sapp-profile.jpg","version":29,"birthday":"149036400000","id":"60716","birthplace":"Colorado Springs, Colorado, United States","lastModified":"1302065382000","name":"Bob Sapp","type":"Person","_key":"34295"} +{"label":"Dalip Singh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e3\/4ca607d67b9aa16eda0004e3\/dalip-singh-profile.jpg","version":33,"birthday":"83718000000","id":"119154","birthplace":"Dhirana, Himachal Pradesh, Indie","lastModified":"1302065382000","name":"Dalip Singh","type":"Person","_key":"34296"} +{"label":"Bill Romanowski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/45f\/4ca8640f7b9aa17acc00045f\/bill-romanowski-profile.jpg","version":24,"birthday":"-118371600000","id":"60954","birthplace":"Vernon, Connecticut","lastModified":"1302065383000","name":"Bill Romanowski","type":"Person","_key":"34297"} +{"label":"Kevin Nash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f9\/4ca867927b9aa17aca0003f9\/kevin-nash-profile.jpg","version":24,"birthday":"-330829200000","id":"135352","birthplace":"Detroit, Michigan USA","lastModified":"1302065383000","name":"Kevin Nash","type":"Person","_key":"34298"} +{"label":"Steve Austin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e6\/4ca5da5e5e73d636fc0003e6\/steve-austin-profile.jpg","version":56,"birthday":"-158979600000","id":"77120","birthplace":"Victoria, Texas, U.S.","lastModified":"1302065383000","name":"Steve Austin","type":"Person","_key":"34299"} +{"label":"Brian Bosworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/463\/4ca868ae7b9aa17acc000463\/brian-bosworth-profile.jpg","version":30,"birthday":"-151981200000","id":"87400","birthplace":"Oklahoma City, Oklahoma, USA","lastModified":"1302065383000","name":"Brian Bosworth","type":"Person","_key":"34300"} +{"label":"Conrad Goode","version":22,"id":"135353","lastModified":"1302065383000","name":"Conrad Goode","type":"Person","_key":"34301"} +{"label":"Brandon Molale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14e\/4d97b2437b9aa13b8900014e\/brandon-molale-profile.jpg","version":40,"id":"63238","lastModified":"1302065383000","name":"Brandon Molale","type":"Person","_key":"34302"} +{"label":"Hudson Hawk","description":"Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.","id":"9292","runtime":100,"imdbId":"tt0102070","trailer":"http:\/\/www.youtube.com\/watch?v=ZKbZlcWzwGQ","version":559,"lastModified":"1302042595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be7\/4bc924cd017a3c57fe00ebe7\/hudson-hawk-mid.jpg","studio":"PolyGram Audiovisuel","genre":"Action","title":"Hudson Hawk","releaseDate":675043200000,"language":"en","type":"Movie","_key":"34303"} +{"label":"John Tucker Must Die","description":"Three ex-girlfriends of a serial cheater set up their former lover to fall for the new girl in town so they can watch him get his heart broken.","id":"9293","runtime":89,"imdbId":"tt0455967","version":223,"lastModified":"1301901937000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf8\/4bc924d1017a3c57fe00ebf8\/john-tucker-must-die-mid.jpg","genre":"Comedy","title":"John Tucker Must Die","releaseDate":1153958400000,"language":"en","type":"Movie","_key":"34304"} +{"label":"Jesse Metcalfe","version":35,"id":"57171","lastModified":"1301901236000","name":"Jesse Metcalfe","type":"Person","_key":"34305"} +{"label":"Ashanti","version":28,"id":"57172","lastModified":"1301901362000","name":"Ashanti","type":"Person","_key":"34306"} +{"label":"Phenomenon","description":"An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.","id":"9294","runtime":123,"imdbId":"tt0117333","trailer":"http:\/\/www.youtube.com\/watch?v=2257","version":133,"lastModified":"1301903002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c06\/4bc924d4017a3c57fe00ec06\/phenomenon-mid.jpg","genre":"Drama","title":"Phenomenon","releaseDate":836352000000,"language":"en","type":"Movie","_key":"34307"} +{"label":"Soloalbum","description":"No overview found.","id":"9295","runtime":87,"imdbId":"tt0324015","version":79,"lastModified":"1301906074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0f\/4bc924d4017a3c57fe00ec0f\/soloalbum-mid.jpg","genre":"Comedy","title":"Soloalbum","releaseDate":1048723200000,"language":"en","tagline":"Love, Sex and Cough Syrup","type":"Movie","_key":"34308"} +{"label":"Thomas D","version":23,"id":"57181","lastModified":"1301902194000","name":"Thomas D","type":"Person","_key":"34309"} +{"label":"Sandy M\u00f6lling","version":22,"id":"57182","lastModified":"1301902367000","name":"Sandy M\u00f6lling","type":"Person","_key":"34310"} +{"label":"S1m0ne","description":"The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress \"Simone\" to sub for the star--the first totally believable synthetic actress.","id":"9296","runtime":117,"imdbId":"tt0258153","version":103,"lastModified":"1301903660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ce\/4bf33421017a3c32150004ce\/s1m0ne-mid.jpg","genre":"Comedy","title":"S1m0ne","releaseDate":1030060800000,"language":"en","type":"Movie","_key":"34311"} +{"label":"Rachel Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4c8e818c7b9aa174f400002f\/rachel-roberts-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Rachel Roberts began her career at age sixteen in her hometown of Vancouver, British Columbia, Canada. The stunning model-turned-actress did layouts for Elle UK and Canada magazine, and was on the cover of the July 10, 2000 Elle France magazine; Glamour (US) for the February 2002 issue (Love Is In The Hair, Photography by Patric Shaw); Marie Claire; Sports Illustrated Swimsuit 2000; Nylon; The New York ","version":37,"birthday":"260838000000","id":"35198","birthplace":"Vancouver, British Columbia, Canada","lastModified":"1301901279000","name":"Rachel Roberts","type":"Person","_key":"34312"} +{"label":"Monster House","description":"Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.","id":"9297","runtime":91,"imdbId":"tt0385880","trailer":"http:\/\/www.youtube.com\/watch?v=1702","version":254,"lastModified":"1301901794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/117\/4d1031505e73d6082e000117\/monster-house-mid.jpg","studio":"Columbia Pictures","genre":"Animation","title":"Monster House","releaseDate":1156377600000,"language":"en","tagline":"The House is . . . ALIVE!","type":"Movie","_key":"34313"} +{"label":"Ryan Newman","version":28,"id":"57189","lastModified":"1301901418000","name":"Ryan Newman","type":"Person","_key":"34314"} +{"label":"Sam Lerner","version":25,"id":"57191","lastModified":"1301901456000","name":"Sam Lerner","type":"Person","_key":"34315"} +{"label":"Spencer Locke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02c\/4c913d4a7b9aa1021000002c\/spencer-locke-profile.jpg","biography":"Spencer Locke was born in 1991 in Winter Park, Florida, she's always been known as \"the Sunshine Girl\" for her joyful personality that lights up every room and currently the screens too. <BR><BR>Miss Locke recalls knowing she wanted to be an actress since age 6, and she started taking classes right away. Soon after she landed several commercials in the Orlando area, and by age 11 she decided to take it to next level and went to Los Angeles with her Miami coach\/manager. It was a hard year for Spe","version":44,"birthday":"685317600000","id":"57192","birthplace":"Winter Park, Florida, USA","lastModified":"1301901130000","name":"Spencer Locke","type":"Person","_key":"34316"} +{"label":"Gil Kenan","version":30,"id":"57193","lastModified":"1301901504000","name":"Gil Kenan","type":"Person","_key":"34317"} +{"label":"Ali G Indahouse","description":"Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.","id":"9298","runtime":88,"imdbId":"tt0284837","trailer":"http:\/\/www.youtube.com\/watch?v=NldsVFWagqs","version":167,"lastModified":"1301906802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c45\/4bc924db017a3c57fe00ec45\/ali-g-indahouse-mid.jpg","studio":"Film Four","genre":"Comedy","title":"Ali G Indahouse","releaseDate":1016755200000,"language":"en","tagline":"Me iz introducin a white paper.","type":"Movie","_key":"34318"} +{"label":"Gina La Piana","version":20,"id":"57197","lastModified":"1301901382000","name":"Gina La Piana","type":"Person","_key":"34319"} +{"label":"Dana de Celis","version":18,"id":"57198","lastModified":"1301901226000","name":"Dana de Celis","type":"Person","_key":"34320"} +{"label":"Mark Mylod","version":23,"id":"57199","lastModified":"1301902273000","name":"Mark Mylod","type":"Person","_key":"34321"} +{"label":"Tesis","description":"No overview found.","id":"9299","runtime":125,"imdbId":"tt0117883","trailer":"http:\/\/www.youtube.com\/watch?v=DIrrXbhIuzI","version":74,"lastModified":"1301905640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c68\/4bc924de017a3c57fe00ec68\/tesis-mid.jpg","genre":"Horror","title":"Tesis","releaseDate":829267200000,"language":"en","type":"Movie","_key":"34322"} +{"label":"Orlando","description":"Young nobleman Orlando is commanded by Queen Elizabeth I to stay forever young. Miraculously, he does just that...","id":"9300","runtime":93,"imdbId":"tt0107756","version":122,"lastModified":"1301908061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4ca494aa5e73d636f900020f\/orlando-mid.jpg","genre":"Drama","title":"Orlando","releaseDate":694224000000,"language":"en","type":"Movie","_key":"34323"} +{"label":"Quentin Crisp","version":20,"id":"57459","lastModified":"1301901998000","name":"Quentin Crisp","type":"Person","_key":"34324"} +{"label":"Jimmy Somerville","version":20,"id":"57460","lastModified":"1301902002000","name":"Jimmy Somerville","type":"Person","_key":"34325"} +{"label":"Simon Russell Beale","version":27,"id":"57461","lastModified":"1301902211000","name":"Simon Russell Beale","type":"Person","_key":"34326"} +{"label":"Sally Potter","version":47,"id":"57206","lastModified":"1301901350000","name":"Sally Potter","type":"Person","_key":"34327"} +{"label":"The Princess and The Warrior","description":"Young nurse Sissi lives a secluded life entirely devoted to her patients at Birkenhof asylum. Her first encounter with ex-soldier and drifter Bodo has a lasting impact. He causes an accident in which he provides first aid, Sissi wonders if he may be the man of her dreams. But when she finds him weeks later she is rejected, as Bodo is stuck somewhere between a traumatic past and a criminal future.","id":"9301","runtime":135,"imdbId":"tt0203632","version":100,"lastModified":"1301903981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c75\/4bc924e1017a3c57fe00ec75\/der-krieger-und-die-kaiserin-mid.jpg","genre":"Drama","title":"The Princess and The Warrior","releaseDate":967852800000,"language":"en","type":"Movie","_key":"34328"} +{"label":"Up Close & Personal","description":"Tally Atwater (Michelle Pfeiffer) has a dream: to be a prime-time network newscaster. She pursues this dream with nothing but ambition, raw talent and a homemade demo tape. Warren Justice (Robert Redford) is a brilliant, hard edged, veteran newsman. He sees Tally has talent and becomes her mentor. Tally\u2019s career takes a meteoric rise and she and Warren fall in love. The romance that results is as intense and revealing as television news itself. Yet, each breaking story, every videotaped crisis t","id":"9302","runtime":119,"imdbId":"tt0118055","trailer":"http:\/\/www.youtube.com\/watch?v=N-Frk1so4Wg","version":159,"lastModified":"1301904204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7e\/4bc924e2017a3c57fe00ec7e\/up-close-personal-mid.jpg","genre":"Drama","title":"Up Close & Personal","releaseDate":825638400000,"language":"en","type":"Movie","_key":"34329"} +{"label":"Bound","description":"Corky, a tough female ex con and her lover Violet concoct a scheme to steal millions of stashed mob money and pin the blame on Violet's crooked boyfriend Caeser. ","id":"9303","runtime":108,"imdbId":"tt0115736","trailer":"http:\/\/www.youtube.com\/watch?v=gzAtuprN3tg","version":194,"lastModified":"1301906310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c90\/4bc924e3017a3c57fe00ec90\/bound-mid.jpg","genre":"Crime","title":"Bound","releaseDate":841449600000,"language":"en","tagline":"In their world, you can't buy freedom, but you can steal it.","type":"Movie","_key":"34330"} +{"label":"Multiplicity","description":"Construction worker Doug Kinney finds that the pressures of his working life, combined with his duties to his wife Laura and daughter Jennifer leaves him with little time for himself. However, he is approached by geneticist Dr. Owen Leeds who offers him a rather unusual solution to his problems - cloning.","id":"9304","runtime":113,"imdbId":"tt0117108","trailer":"http:\/\/www.youtube.com\/watch?v=IRqMLNrZtg4","version":222,"lastModified":"1301905049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b3\/4c210dd47b9aa135f90000b3\/multiplicity-mid.jpg","genre":"Comedy","title":"Multiplicity","releaseDate":835833600000,"language":"en","type":"Movie","_key":"34331"} +{"label":"Microcosmos","description":"A documentary of insect life in meadows and ponds, using incredible close-ups, slow motion, and time-lapse photography. It includes bees collecting nectar, ladybugs eating mites, snails mating, spiders wrapping their catch, a scarab beetle relentlessly pushing its ball of dung uphill, endless lines of caterpillars, an underwater spider creating an air bubble to live in, and a mosquito hatching.","id":"9305","runtime":80,"imdbId":"tt0117040","trailer":"http:\/\/www.youtube.com\/watch?v=76R2EKEnoJQ","version":144,"lastModified":"1301902966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cab\/4bc924e6017a3c57fe00ecab\/microcosmos-le-peuple-de-l-herbe-mid.jpg","studio":"Galat\u00e9e Films","genre":"Documentary","title":"Microcosmos","releaseDate":841968000000,"language":"en","type":"Movie","_key":"34332"} +{"label":"Claude Nuridsany","version":29,"id":"57226","lastModified":"1301902123000","name":"Claude Nuridsany","type":"Person","_key":"34333"} +{"label":"Marie P\u00e9rennou","version":29,"id":"57227","lastModified":"1301902123000","name":"Marie P\u00e9rennou","type":"Person","_key":"34334"} +{"label":"The Island of Dr. Moreau","description":"A big-budget remake of the H.G. Wells story (previously filmed in 1977), The Island of Dr. Moreau follows a shipwrecked sailor (David Thewlis) who stumbles upon a mysterious island. He's shocked to discover that a brilliant scientist (Marlon Brando) and his lab assistant (Val Kilmer) have found a way to combine human and animal DNA -- with horrific results.","id":"9306","runtime":96,"imdbId":"tt0116654","version":177,"lastModified":"1301903123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb4\/4bc924e6017a3c57fe00ecb4\/the-island-of-dr-moreau-mid.jpg","genre":"Fantasy","title":"The Island of Dr. Moreau","releaseDate":840758400000,"language":"en","type":"Movie","_key":"34335"} +{"label":"High School High","description":"No overview found.","id":"9308","runtime":82,"imdbId":"tt0116531","version":132,"lastModified":"1301903661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb9\/4bc924e7017a3c57fe00ecb9\/high-school-high-mid.jpg","genre":"Comedy","title":"High School High","releaseDate":846201600000,"language":"en","type":"Movie","_key":"34336"} +{"label":"Winnetou","description":"No overview found.","id":"9309","title":"Winnetou","language":"en","lastModified":"1301907413000","version":35,"type":"Movie","_key":"34337"} +{"label":"American Dreamz","description":"The new season of \"American Dreamz,\" the wildly popular television singing contest, has captured the country's attention, as the competition looks to be between a young Midwestern gal (Moore) and a showtunes-loving young man from Orange County (Golzari). Recently awakened President Staton (Quaid) even wants in on the craze, as he signs up for the potential explosive season finale.","id":"9310","runtime":107,"imdbId":"tt0465142","version":188,"lastModified":"1301905764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc2\/4bc924ea017a3c57fe00ecc2\/american-dreamz-mid.jpg","studio":"NBC Universal Television","genre":"Comedy","title":"American Dreamz","releaseDate":1141430400000,"language":"en","type":"Movie","_key":"34338"} +{"label":"Smilla's Sense of Snow","description":"No overview found.","id":"9311","runtime":121,"imdbId":"tt0120152","version":110,"lastModified":"1301903748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccb\/4bc924eb017a3c57fe00eccb\/smilla-s-sense-of-snow-mid.jpg","genre":"Action","title":"Smilla's Sense of Snow","releaseDate":855792000000,"language":"en","type":"Movie","_key":"34339"} +{"label":"Ona Fletcher","version":20,"id":"57248","lastModified":"1301901730000","name":"Ona Fletcher","type":"Person","_key":"34340"} +{"label":"Agga Olsen","version":20,"id":"57249","lastModified":"1301902096000","name":"Agga Olsen","type":"Person","_key":"34341"} +{"label":"Mortal Kombat","description":"Based on the popular video game of the same name \"Mortal Kombat\" tells the story of an ancient tournament where the best of the best of different Realms fight each other. The goal, 10 wins to be able to legally invade the losing Realm. Outworld has so far collected 9 wins against Earthrealm, so it's up to Lord Rayden and his fighters to stop Outworld from reaching the final victory...","id":"9312","runtime":101,"imdbId":"tt0113855","trailer":"http:\/\/www.youtube.com\/watch?v=1705","version":242,"lastModified":"1301967692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/178\/4c8531035e73d664d7000178\/mortal-kombat-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Mortal Kombat","releaseDate":808704000000,"language":"en","type":"Movie","_key":"34342"} +{"label":"Robin Shou","version":53,"id":"57250","lastModified":"1301901086000","name":"Robin Shou","type":"Person","_key":"34343"} +{"label":"Linden Ashby","version":50,"id":"57251","lastModified":"1301901295000","name":"Linden Ashby","type":"Person","_key":"34344"} +{"label":"Trevor Goddard","version":23,"id":"57252","lastModified":"1301901633000","name":"Trevor Goddard","type":"Person","_key":"34345"} +{"label":"Chris Casamassa","version":24,"id":"57253","lastModified":"1301901597000","name":"Chris Casamassa","type":"Person","_key":"34346"} +{"label":"Fran\u00e7ois Petit","version":23,"id":"57254","lastModified":"1301901762000","name":"Fran\u00e7ois Petit","type":"Person","_key":"34347"} +{"label":"Keith Cooke","version":23,"id":"57255","lastModified":"1301901633000","name":"Keith Cooke","type":"Person","_key":"34348"} +{"label":"The Man in the Iron Mask","description":"Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.","id":"9313","runtime":132,"imdbId":"tt0120744","trailer":"http:\/\/www.youtube.com\/watch?v=eRal_feCStc","version":189,"lastModified":"1301901678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4bf0fce1017a3c32150000f7\/the-man-in-the-iron-mask-mid.jpg","genre":"Action","title":"The Man in the Iron Mask","releaseDate":889747200000,"language":"en","tagline":"For the honor of a king. And the destiny of a country. All for one.","type":"Movie","_key":"34349"} +{"label":"Randall Wallace","version":72,"id":"2460","lastModified":"1299492007000","name":"Randall Wallace","type":"Person","_key":"34350"} +{"label":"Nineteen Eighty-Four","description":"After The Atomic War the world is divided into three states. Oceania is ruled by a party who has total control over all its citizens. Winston Smith is one of the bureaucrats, rewriting history in one of the departments. One day he commits the crime of falling in love with Julia. They try to escape Big Brother's listening and viewing devices, but, of course, nobody can really escape.","id":"9314","runtime":113,"imdbId":"tt0087803","trailer":"http:\/\/www.youtube.com\/watch?v=LSTSif47WOI","version":128,"lastModified":"1301902889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4bd4f82a017a3c2e7500008f\/nineteen-eighty-four-mid.jpg","genre":"Drama","title":"Nineteen Eighty-Four","releaseDate":466214400000,"language":"en","type":"Movie","_key":"34351"} +{"label":"Flightplan","description":"A claustrophobic, Hitchcockian thriller. A bereaved woman and her daughter are flying home from Berlin to America. At 30,000 feet the child vanishes and nobody admits she was ever on that plane.","id":"9315","runtime":98,"imdbId":"tt0408790","version":221,"lastModified":"1301901889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d14\/4bc924f5017a3c57fe00ed14\/flightplan-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Flightplan","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"34352"} +{"label":"Robert Schwentke","version":45,"id":"57270","lastModified":"1301901143000","name":"Robert Schwentke","type":"Person","_key":"34353"} +{"label":"Kate Beahan","version":25,"id":"57278","lastModified":"1301901316000","name":"Kate Beahan","type":"Person","_key":"34354"} +{"label":"Ong Bak","description":"When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.","id":"9316","runtime":105,"imdbId":"tt0368909","trailer":"http:\/\/www.youtube.com\/watch?v=Mf42Nr5u6Ig","version":177,"lastModified":"1301901969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2d\/4bc924f8017a3c57fe00ed2d\/ong-bak-mid.jpg","studio":"Baa-Ram-Ewe","genre":"Action","title":"Ong Bak","releaseDate":1043107200000,"language":"en","tagline":"No computer graphics. No stunt doubles. No wires.","type":"Movie","_key":"34355"} +{"label":"Pumwaree Yodkamol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4cdf9ed65e73d60f6c0000b1\/pumwaree-yodkamol-profile.jpg","version":26,"id":"57272","lastModified":"1301901224000","name":"Pumwaree Yodkamol","type":"Person","_key":"34356"} +{"label":"Suchao Pongwilai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4cdfa0795e73d60f6d0000c6\/suchao-pongwilai-profile.jpg","version":29,"id":"57273","birthplace":"Lopburi, Thailand","lastModified":"1301901378000","name":"Suchao Pongwilai","type":"Person","_key":"34357"} +{"label":"Chumphorn Thepphithak","version":21,"id":"149862","lastModified":"1301903102000","name":"Chumphorn Thepphithak","type":"Person","_key":"34358"} +{"label":"La soupe aux choux","description":"2 buddy farmers are visited by aliens who like their domestic cabbage soup.","id":"9317","runtime":98,"imdbId":"tt0083109","version":101,"lastModified":"1301906996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d36\/4bc924fb017a3c57fe00ed36\/la-soupe-aux-choux-mid.jpg","genre":"Comedy","title":"La soupe aux choux","releaseDate":376099200000,"language":"en","type":"Movie","_key":"34359"} +{"label":"Ast\u00e9rix chez les Bretons","description":"One little ancient British village still holds out against the Roman invaders. Asterix and Obelix are invited to help. They must face fog, rain, warm beer and boiled boar with mint sauce, but they soon have Governor Encyclopaedius Britannicus's Romans declining and falling. Until a wild race for a barrel of magic potion lands them in the drink.","id":"9318","runtime":79,"imdbId":"tt0090667","version":69,"lastModified":"1301903833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d47\/4bc924fd017a3c57fe00ed47\/asterix-chez-les-bretons-mid.jpg","genre":"Adventure","title":"Ast\u00e9rix chez les Bretons","releaseDate":533952000000,"language":"en","type":"Movie","_key":"34360"} +{"label":"Graham Bushnell","version":24,"id":"57289","lastModified":"1301901586000","name":"Graham Bushnell","type":"Person","_key":"34361"} +{"label":"Pino Van Lamsweerde","version":24,"id":"57290","lastModified":"1301902384000","name":"Pino Van Lamsweerde","type":"Person","_key":"34362"} +{"label":"The Last Boy Scout","description":"Joe Hallenbeck is a burned-out detective. Jimmy Dix is an ex-LA Stallions player. Hallenbeck was hired to protect a stripper named Cory. Dix is Cory's boyfriend. When Cory is executed during a drive-by shooting, both Hallenbeck and Dix try to get to the bottom of the case.","id":"9319","runtime":105,"imdbId":"tt0102266","trailer":"http:\/\/www.youtube.com\/watch?v=UbASN5yCgAI","version":173,"lastModified":"1302065075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5e\/4bc924ff017a3c57fe00ed5e\/last-boy-scout-mid.jpg","studio":"Geffen Pictures","genre":"Action","title":"The Last Boy Scout","releaseDate":692582400000,"language":"en","type":"Movie","_key":"34363"} +{"label":"The Avengers","description":"British Ministry agent John Steed, under direction from \"Mother\", investigates a diabolical plot by arch-villain Sir August de Wynter to rule the world with his weather control machine. Steed investigates the beautiful Doctor Mrs. Emma Peel, the only suspect, but simultaneously falls for her and joins forces with her to combat Sir August.","id":"9320","runtime":87,"imdbId":"tt0118661","trailer":"http:\/\/www.youtube.com\/watch?v=oKNmPh_MGOA","version":166,"lastModified":"1301904498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d67\/4bc92500017a3c57fe00ed67\/the-avengers-mid.jpg","genre":"Action","title":"The Avengers","releaseDate":902966400000,"language":"en","type":"Movie","_key":"34364"} +{"label":"Shaun Ryder","version":20,"id":"141549","lastModified":"1301902767000","name":"Shaun Ryder","type":"Person","_key":"34365"} +{"label":"Nicholas Woodeson","version":23,"id":"118617","lastModified":"1301902743000","name":"Nicholas Woodeson","type":"Person","_key":"34366"} +{"label":"Michael Godley","version":18,"id":"141550","lastModified":"1301902767000","name":"Michael Godley","type":"Person","_key":"34367"} +{"label":"Richard Lumsden","version":18,"id":"141551","lastModified":"1301902767000","name":"Richard Lumsden","type":"Person","_key":"34368"} +{"label":"Der Eisb\u00e4r","description":"Four characters become involved in one dramatic story: Nico has a mission to drive a car containing a live bomb to a specified destination, park the car and escape as quickly as she can. Leo has become his client's target, having carried out a \"contract\" that unfortunately had already been cancelled. Fabian and Reza want to enjoy themselves without any money, bringing themselves into contact sooner or later with the police. Sooner or later all four will meet up in dramatic circumstances....","id":"9321","runtime":90,"imdbId":"tt0167132","version":54,"lastModified":"1301904677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6c\/4bc92500017a3c57fe00ed6c\/der-eisbar-mid.jpg","genre":"Action","title":"Der Eisb\u00e4r","releaseDate":911433600000,"language":"en","type":"Movie","_key":"34369"} +{"label":"Karina Krawczyk","version":19,"id":"57296","lastModified":"1301901614000","name":"Karina Krawczyk","type":"Person","_key":"34370"} +{"label":"La Femme Nikita","description":"A beautiful felon condemned to death for the murder of a policeman is given a second chance - as a secret political assassin controlled by the government.","id":"9322","runtime":115,"imdbId":"tt0100263","trailer":"http:\/\/www.youtube.com\/watch?v=167URLa-On0","version":289,"lastModified":"1301903421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7e\/4bc92505017a3c57fe00ed7e\/nikita-mid.jpg","studio":"Gaumont","genre":"Action","title":"La Femme Nikita","releaseDate":635558400000,"language":"en","tagline":"Sie t\u00f6tet. Um zu leben. (She murders. So she can live.)","type":"Movie","_key":"34371"} +{"label":"Anne Parillaud","version":46,"id":"57298","lastModified":"1301901332000","name":"Anne Parillaud","type":"Person","_key":"34372"} +{"label":"Patrick Fontana","version":26,"id":"57299","lastModified":"1301901430000","name":"Patrick Fontana","type":"Person","_key":"34373"} +{"label":"Alain Lathi\u00e8re","version":26,"id":"57300","lastModified":"1301901430000","name":"Alain Lathi\u00e8re","type":"Person","_key":"34374"} +{"label":"Ghost in the Shell","description":"In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.","id":"9323","runtime":82,"imdbId":"tt0113568","trailer":"http:\/\/www.youtube.com\/watch?v=oP2Pt6m3yKU","version":681,"lastModified":"1301906728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/050\/4c1883297b9aa10d2c000050\/kokaku-kidotai-mid.jpg","studio":"Production I.G.","genre":"Animation","title":"Ghost in the Shell","releaseDate":816652800000,"language":"en","tagline":"It Found A Voice... Now It Needs A Body","type":"Movie","_key":"34375"} +{"label":"Mamoru Oshii","version":56,"id":"12180","lastModified":"1301901214000","name":"Mamoru Oshii","type":"Person","_key":"34376"} +{"label":"Atsuko Tanaka","version":38,"id":"34923","lastModified":"1302069086000","name":"Atsuko Tanaka","type":"Person","_key":"34377"} +{"label":"Tamio \u00d4ki","version":21,"id":"57306","lastModified":"1301901510000","name":"Tamio \u00d4ki","type":"Person","_key":"34378"} +{"label":"The Jungle Book","description":"The Jungle Book follows the ups and downs of the man-cub Mowgli as he makes his way back to the human village with wise panther Bagheera to escape ruthless tiger Shere Khan. Along the way, he meets unforgettable friends and foes including mad King Louie of the Apes, the hypnotic snake Kaa and the loveable, happy-go-lucky bear Baloo, who teaches Mowgli about true friendship.","id":"9325","runtime":78,"imdbId":"tt0061852","trailer":"http:\/\/www.youtube.com\/watch?v=1618","version":156,"lastModified":"1301901799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/280\/4bd16d42017a3c63f5000280\/the-jungle-book-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Jungle Book","releaseDate":-69638400000,"language":"en","tagline":"The Jungle is JUMPIN'!","type":"Movie","_key":"34379"} +{"label":"Phil Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4cb37c215e73d6613c000030\/phil-harris-profile.jpg","version":45,"id":"57329","lastModified":"1301901251000","name":"Phil Harris","type":"Person","_key":"34380"} +{"label":"Louis Prima","version":25,"id":"57330","lastModified":"1301901338000","name":"Louis Prima","type":"Person","_key":"34381"} +{"label":"Bruce Reitherman","version":25,"id":"57331","lastModified":"1301901475000","name":"Bruce Reitherman","type":"Person","_key":"34382"} +{"label":"Romancing the Stone","description":"Though she can spin wild tales of passionate romance, novelist Joan Wilder has no life of her own. Then one day adventure comes her way in the form of a mysterious package. It turns out that the parcel is the ransom she'll need to free her abducted sister, so Joan flies to South America to hand it over. But she gets on the wrong bus and winds up hopelessly stranded in the jungle...","id":"9326","runtime":105,"imdbId":"tt0088011","trailer":"http:\/\/www.youtube.com\/watch?v=G2qWVhUJD1E","version":703,"lastModified":"1301906614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd9\/4bc9250f017a3c57fe00edd9\/romancing-the-stone-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Romancing the Stone","releaseDate":449452800000,"language":"en","type":"Movie","_key":"34383"} +{"label":"Zack Norman","version":24,"id":"57312","lastModified":"1301901830000","name":"Zack Norman","type":"Person","_key":"34384"} +{"label":"The Nutty Professor","description":"Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.","id":"9327","runtime":95,"imdbId":"tt0117218","version":159,"lastModified":"1301901509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de7\/4bc92514017a3c57fe00ede7\/the-nutty-professor-mid.jpg","genre":"Comedy","title":"The Nutty Professor","releaseDate":835833600000,"language":"en","tagline":"Inside Sherman Klump, a party animal is about to break out.","type":"Movie","_key":"34385"} +{"label":"Free Willy","description":"No overview found.","id":"9328","version":633,"lastModified":"1302020699000","genre":"Action","title":"Free Willy","language":"en","type":"Movie","_key":"34386"} +{"label":"Young Guns","description":"No overview found.","id":"9329","version":996,"lastModified":"1302020677000","genre":"Action","title":"Young Guns","language":"en","type":"Movie","_key":"34387"} +{"label":"Karma","description":"No overview found.","id":"9330","runtime":0,"version":97,"lastModified":"1301474347000","title":"Karma","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"34388"} +{"label":"M R Shahjahan","version":16,"id":"57780","lastModified":"1301902197000","name":"M R Shahjahan","type":"Person","_key":"34389"} +{"label":"Carlucci Weyant","version":16,"id":"57785","lastModified":"1301901957000","name":"Carlucci Weyant","type":"Person","_key":"34390"} +{"label":"Alma Saraci","version":22,"id":"57786","lastModified":"1301901957000","name":"Alma Saraci","type":"Person","_key":"34391"} +{"label":"Claudia Ciesla","version":16,"id":"57787","lastModified":"1301902152000","name":"Claudia Ciesla","type":"Person","_key":"34392"} +{"label":"DJ Perry","version":23,"id":"57788","lastModified":"1301901670000","name":"DJ Perry","type":"Person","_key":"34393"} +{"label":"Vijayendra Ghatge","version":20,"id":"57789","lastModified":"1301902338000","name":"Vijayendra Ghatge","type":"Person","_key":"34394"} +{"label":"Shanda Renee","version":16,"id":"57790","lastModified":"1301901995000","name":"Shanda Renee","type":"Person","_key":"34395"} +{"label":"Clear and Present Danger","description":"When his mentor Admiral James Greer falls ill, Ryan is appointed acting CIA Deputy Director of Intelligence. His first assignment: investigate the murder of the president's friends, with secret ties to Columbian drug cartels. Unknown to Ryan, the CIA has already dispatched a deadly field operative to lead a paramilitary force against the Columbian drug lords.","id":"9331","runtime":136,"imdbId":"tt0109444","trailer":"http:\/\/www.youtube.com\/watch?v=MNzWYVWfRIc","version":206,"lastModified":"1301901711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df8\/4bc92517017a3c57fe00edf8\/clear-and-present-danger-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Clear and Present Danger","releaseDate":775872000000,"language":"en","tagline":"Truth needs a soldier","type":"Movie","_key":"34396"} +{"label":"Crocodile Dundee","description":"No overview found.","id":"9332","version":196,"lastModified":"1301905471000","genre":"Action","title":"Crocodile Dundee","language":"en","type":"Movie","_key":"34397"} +{"label":"Last Man Standing","description":"John Smith is a mysterious stranger who is drawn into a vicious war between two Prohibition-era gangs. In a dangerous game, he switches allegiances from one to another, offering his services to the highest bidder. As the death toll mounts, Smith takes the law into his own hands in a deadly race to stay alive.","id":"9333","runtime":101,"imdbId":"tt0116830","version":172,"lastModified":"1301901654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b4\/4d418b547b9aa15bb00034b4\/last-man-standing-mid.jpg","studio":"Metropolitan Filmexport","genre":"Action","title":"Last Man Standing","releaseDate":843177600000,"language":"en","tagline":"In a town with no justice, there is only one law... Every man for himself.","type":"Movie","_key":"34398"} +{"label":"The Scorpion King","description":"In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.","id":"9334","runtime":92,"imdbId":"tt0277296","trailer":"http:\/\/www.youtube.com\/watch?v=5c_6HUA9FAY","homepage":"http:\/\/www.the-scorpion-king.com\/","version":235,"lastModified":"1301901668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fd\/4d38ff227b9aa1614e0005fd\/the-scorpion-king-mid.jpg","studio":"Stone Productions","genre":"Action","title":"The Scorpion King","releaseDate":1018828800000,"language":"en","tagline":"Warrior. Legend. King.","type":"Movie","_key":"34399"} +{"label":"Steven Brand","version":26,"id":"57340","lastModified":"1301904134000","name":"Steven Brand","type":"Person","_key":"34400"} +{"label":"Transporter 2","description":"Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.","id":"9335","runtime":87,"imdbId":"tt0388482","trailer":"http:\/\/www.youtube.com\/watch?v=HjdsH5ewB_w","version":289,"lastModified":"1301901379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4d8143f35e73d67259000f93\/transporter-2-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Transporter 2","releaseDate":1123027200000,"language":"en","type":"Movie","_key":"34401"} +{"label":"Kate Nauta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/676\/4be17fa2017a3c35bd000676\/kate-nauta-profile.jpg","version":29,"id":"57346","lastModified":"1301901132000","name":"Kate Nauta","type":"Person","_key":"34402"} +{"label":"Alessandro Gassman","version":49,"id":"57345","lastModified":"1301954555000","name":"Alessandro Gassman","type":"Person","_key":"34403"} +{"label":"Police Academy","description":"New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney","id":"9336","runtime":96,"imdbId":"tt0087928","trailer":"http:\/\/www.youtube.com\/watch?v=3Y6rC2pQy6g","version":162,"lastModified":"1301902026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b08\/4d866a377b9aa10d34001b08\/police-academy-mid.jpg","studio":"Ladd Company","genre":"Comedy","title":"Police Academy","releaseDate":448848000000,"language":"en","tagline":"What an Institution!","type":"Movie","_key":"34404"} +{"label":"Bubba Smith","version":52,"id":"57349","lastModified":"1301901666000","name":"Bubba Smith","type":"Person","_key":"34405"} +{"label":"Donovan Scott","version":29,"id":"57350","lastModified":"1301983806000","name":"Donovan Scott","type":"Person","_key":"34406"} +{"label":"George Gaynes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a8\/4cadae8a7b9aa11b3b0000a8\/george-gaynes-profile.jpg","version":35,"birthday":"-1660874400000","id":"57351","lastModified":"1301901514000","name":"George Gaynes","type":"Person","_key":"34407"} +{"label":"Andrew Rubin","version":26,"id":"57352","lastModified":"1301901933000","name":"Andrew Rubin","type":"Person","_key":"34408"} +{"label":"David Graf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4cadb0de7b9aa11b390000c2\/david-graf-profile.jpg","version":49,"birthday":"-622083600000","id":"57353","lastModified":"1301901357000","name":"David Graf","type":"Person","_key":"34409"} +{"label":"Debralee Scott","version":23,"id":"57354","lastModified":"1301901553000","name":"Debralee Scott","type":"Person","_key":"34410"} +{"label":"Bruce Mahler","version":23,"id":"57356","lastModified":"1301901933000","name":"Bruce Mahler","type":"Person","_key":"34411"} +{"label":"Ted Ross","version":31,"id":"57357","lastModified":"1301901840000","name":"Ted Ross","type":"Person","_key":"34412"} +{"label":"Brant von Hoffman","version":23,"id":"57358","lastModified":"1301901933000","name":"Brant von Hoffman","type":"Person","_key":"34413"} +{"label":"M\u00e4dchen, M\u00e4dchen","description":"No overview found.","id":"9337","runtime":90,"imdbId":"tt0258827","version":61,"lastModified":"1301906167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/068\/4cc811d07b9aa16b9b000068\/madchen-madchen-mid.jpg","genre":"Comedy","title":"M\u00e4dchen, M\u00e4dchen","releaseDate":985824000000,"language":"en","type":"Movie","_key":"34414"} +{"label":"Diana Amft","version":29,"id":"57361","lastModified":"1301901402000","name":"Diana Amft","type":"Person","_key":"34415"} +{"label":"Andreas Christ","version":20,"id":"36436","lastModified":"1301901459000","name":"Andreas Christ","type":"Person","_key":"34416"} +{"label":"Police Academy","description":"No overview found.","id":"9338","version":191,"lastModified":"1302020535000","genre":"Comedy","title":"Police Academy","language":"en","type":"Movie","_key":"34417"} +{"label":"Click","description":"A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.","id":"9339","runtime":107,"imdbId":"tt0389860","trailer":"http:\/\/www.youtube.com\/watch?v=1462","version":334,"lastModified":"1301901734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26a\/4c7f522b7b9aa10d9400026a\/click-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Click","releaseDate":1150934400000,"language":"en","tagline":"What If You Had A Remote... That Controlled Your Universe?","type":"Movie","_key":"34418"} +{"label":"Frank Coraci","version":43,"id":"57370","lastModified":"1302060440000","name":"Frank Coraci","type":"Person","_key":"34419"} +{"label":"The Goonies","description":"A young teenager named Mikey Walsh finds an old treasure map in his father's attic. Hoping to save their homes from demolition, Mikey and his friends Data Wang, Chunk Cohen, and Mouth Devereaux runs off on a big quest to find the secret stash of the pirate One-Eyed Willie.","id":"9340","runtime":114,"imdbId":"tt0089218","trailer":"http:\/\/www.youtube.com\/watch?v=pPZ229husSM","version":894,"lastModified":"1302034620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76b\/4d406d767b9aa15bb500276b\/the-goonies-mid.jpg","studio":"Amblin Entertainment","genre":"Adventure","title":"The Goonies","releaseDate":486950400000,"language":"en","tagline":"The pirates map, The villainous crooks, The underground caverns, The booby traps, the skeletons, The monster, the lost treasure, and the magic that is... THE GOONIES.","type":"Movie","_key":"34420"} +{"label":"Jeff Cohen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ec\/4d159b6c7b9aa1147a0023ec\/jeff-cohen-profile.jpg","version":26,"id":"57371","lastModified":"1301901189000","name":"Jeff Cohen","type":"Person","_key":"34421"} +{"label":"Kerri Green","version":28,"id":"57372","lastModified":"1301901439000","name":"Kerri Green","type":"Person","_key":"34422"} +{"label":"The Core","description":"The Earth's core has stopped spinning and disasters are appearing all over the world; Birds are acting crazy, magnetic fields are causing huge electrical thunderstorms and people dying every second.Dr. Josh Keyes (Aaron Eckhart) and his crew have to travel down to the centre of the Earth and drop a nuclear bomb in an attempt to make the Earth's core spin once again. Or Mankind will perish...","id":"9341","runtime":135,"imdbId":"tt0298814","trailer":"http:\/\/www.youtube.com\/watch?v=foAyvN6mVwQ","version":179,"lastModified":"1301907555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/100\/4ca6a1945e73d643f0000100\/the-core-mid.jpg","genre":"Action","title":"The Core","releaseDate":1048550400000,"language":"en","tagline":"The core of the earth has stopped spinning","type":"Movie","_key":"34423"} +{"label":"The Mask of Zorro","description":"It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife, and his precious daughter Elena all those years ago.","id":"9342","runtime":136,"imdbId":"tt0120746","trailer":"http:\/\/www.youtube.com\/watch?v=uczLtpWF_cY","version":212,"lastModified":"1301901399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f01\/4bc9253d017a3c57fe00ef01\/the-mask-of-zorro-mid.jpg","genre":"Action","title":"The Mask of Zorro","releaseDate":900633600000,"language":"en","type":"Movie","_key":"34424"} +{"label":"Diego Sieres","version":22,"id":"57374","lastModified":"1301902196000","name":"Diego Sieres","type":"Person","_key":"34425"} +{"label":"Fitzcarraldo","description":"The story of Brian Sweeney Fitzgerald, an extremely determined man who intends to build an opera house in the middle of a jungle.","id":"9343","runtime":158,"imdbId":"tt0083946","version":154,"lastModified":"1301903939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0a\/4bc9253e017a3c57fe00ef0a\/fitzcarraldo-mid.jpg","genre":"Action","title":"Fitzcarraldo","releaseDate":384048000000,"language":"en","type":"Movie","_key":"34426"} +{"label":"Jos\u00e9 Lewgoy","version":25,"id":"57379","lastModified":"1301901785000","name":"Jos\u00e9 Lewgoy","type":"Person","_key":"34427"} +{"label":"Miguel \u00c1ngel Fuentes","version":23,"id":"57380","lastModified":"1301901957000","name":"Miguel \u00c1ngel Fuentes","type":"Person","_key":"34428"} +{"label":"Paul Hittscher","version":21,"id":"57381","lastModified":"1301902152000","name":"Paul Hittscher","type":"Person","_key":"34429"} +{"label":"Kids","description":"A controversial portrayal of teens in New York City which exposes a world which is deeply disturbing. The film focuses on a freckled boy Telly, whose idea of safe sex is to have sex with only virgins. But one girl from one of his past unprotected passion test positive for HIV, and soon finds him making love yet to another unsuspecting girl ","id":"9344","runtime":91,"imdbId":"tt0113540","version":124,"lastModified":"1301902968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1b\/4bc9253f017a3c57fe00ef1b\/kids-mid.jpg","genre":"Drama","title":"Kids","releaseDate":806889600000,"language":"en","type":"Movie","_key":"34430"} +{"label":"Leo Fitzpatrick","version":26,"id":"57387","lastModified":"1301901537000","name":"Leo Fitzpatrick","type":"Person","_key":"34431"} +{"label":"Sarah Henderson","version":21,"id":"57388","lastModified":"1301902096000","name":"Sarah Henderson","type":"Person","_key":"34432"} +{"label":"Justin Pierce","version":22,"id":"57389","lastModified":"1301901730000","name":"Justin Pierce","type":"Person","_key":"34433"} +{"label":"Joseph Chan","version":21,"id":"57390","lastModified":"1301901883000","name":"Joseph Chan","type":"Person","_key":"34434"} +{"label":"Exit","description":"No overview found.","id":"9345","runtime":100,"imdbId":"tt0482957","version":396,"lastModified":"1301904390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c559f5a7b9aa15180000008\/exit-mid.jpg","genre":"Drama","title":"Exit","releaseDate":1160092800000,"language":"en","type":"Movie","_key":"34435"} +{"label":"Samuel Fr\u00f6ler","version":24,"id":"64971","lastModified":"1301902140000","name":"Samuel Fr\u00f6ler","type":"Person","_key":"34436"} +{"label":"Kirsti Eline Torhaug","version":24,"id":"64972","lastModified":"1301902146000","name":"Kirsti Eline Torhaug","type":"Person","_key":"34437"} +{"label":"Maria Langhammer","version":22,"id":"64974","lastModified":"1301902379000","name":"Maria Langhammer","type":"Person","_key":"34438"} +{"label":"Kristina T\u00f6rnqvist","version":22,"id":"64973","lastModified":"1301902148000","name":"Kristina T\u00f6rnqvist","type":"Person","_key":"34439"} +{"label":"Vladimir Dikanski","version":20,"id":"64979","lastModified":"1301902273000","name":"Vladimir Dikanski","type":"Person","_key":"34440"} +{"label":"Johanna Dickson","version":20,"id":"64976","lastModified":"1301902273000","name":"Johanna Dickson","type":"Person","_key":"34441"} +{"label":"Henrik Norl\u00e9n","version":22,"id":"64975","lastModified":"1301902273000","name":"Henrik Norl\u00e9n","type":"Person","_key":"34442"} +{"label":"Henrik No\u00e9l Olesen","version":26,"id":"64977","lastModified":"1301902380000","name":"Henrik No\u00e9l Olesen","type":"Person","_key":"34443"} +{"label":"Hassan Brijany","version":20,"id":"64978","lastModified":"1301902273000","name":"Hassan Brijany","type":"Person","_key":"34444"} +{"label":"Ulf Friberg","version":20,"id":"64980","lastModified":"1301902273000","name":"Ulf Friberg","type":"Person","_key":"34445"} +{"label":"Matilda M\u00f6rk","version":21,"id":"64983","lastModified":"1301902367000","name":"Matilda M\u00f6rk","type":"Person","_key":"34446"} +{"label":"Stig Engstr\u00f6m","version":20,"id":"64981","lastModified":"1301902273000","name":"Stig Engstr\u00f6m","type":"Person","_key":"34447"} +{"label":"Helena Collert","version":20,"id":"64984","lastModified":"1301902273000","name":"Helena Collert","type":"Person","_key":"34448"} +{"label":"Kola Krauze","version":20,"id":"64985","lastModified":"1301902273000","name":"Kola Krauze","type":"Person","_key":"34449"} +{"label":"Mats Qviberg","version":20,"id":"64982","lastModified":"1301902273000","name":"Mats Qviberg","type":"Person","_key":"34450"} +{"label":"Risky Business","description":"Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.","id":"9346","runtime":98,"imdbId":"tt0086200","trailer":"http:\/\/www.youtube.com\/watch?v=RdndXAlu8dM","version":187,"lastModified":"1301903742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f45\/4bc92546017a3c57fe00ef45\/risky-business-mid.jpg","genre":"Comedy","title":"Risky Business","releaseDate":428889600000,"language":"en","type":"Movie","_key":"34451"} +{"label":"Paul Brickman","version":25,"id":"57383","lastModified":"1301901555000","name":"Paul Brickman","type":"Person","_key":"34452"} +{"label":"Unter Geiern","description":"No overview found.","id":"9347","runtime":98,"imdbId":"tt0058709","version":45,"lastModified":"1301906738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c4\/4caa5bf85e73d643ef0006c4\/unter-geiern-mid.jpg","genre":"Adventure","title":"Unter Geiern","releaseDate":-159840000000,"language":"en","type":"Movie","_key":"34453"} +{"label":"Species","description":"In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.","id":"9348","runtime":108,"imdbId":"tt0114508","trailer":"http:\/\/www.youtube.com\/watch?v=I8mWmRSVrbM","version":383,"lastModified":"1301902451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4bc92549017a3c57fe00ef57\/species-mid.jpg","genre":"Horror","title":"Species","releaseDate":805075200000,"language":"en","type":"Movie","_key":"34454"} +{"label":"Universal Soldier","description":"An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.","id":"9349","runtime":102,"imdbId":"tt0105698","trailer":"http:\/\/www.youtube.com\/watch?v=1568","version":184,"lastModified":"1301907457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bd\/4c6786a95e73d63c860009bd\/universal-soldier-mid.jpg","genre":"Action","title":"Universal Soldier","releaseDate":710726400000,"language":"en","tagline":"The future has a bad attitude.","type":"Movie","_key":"34455"} +{"label":"Ally Walker","version":22,"id":"18316","lastModified":"1301901634000","name":"Ally Walker","type":"Person","_key":"34456"} +{"label":"Cliffhanger","description":"A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers. Highlighted by jaw-dropping stunt set pieces, the high-altitude action adventure scored Oscar nominations for Best Sound, Visual Effects and Sound Effects Editing.","id":"9350","runtime":113,"imdbId":"tt0106582","trailer":"http:\/\/www.youtube.com\/watch?v=IydM8H49MuA","version":259,"lastModified":"1301905010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8e\/4bc92552017a3c57fe00ef8e\/cliffhanger-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Cliffhanger","releaseDate":737856000000,"language":"en","tagline":"The height of adventure.","type":"Movie","_key":"34457"} +{"label":"EuroTrip","description":"Scott Thomas is reluctant when his longtime cyber-buddy from Berlin, Mieke, suggests they meet face-to-face. But when he discovers his pen pal is a gorgeous young woman, Scott embarks with his friends on a trip across Europe. On their wild journey toward Berlin, the buddies meet zealous football hooligans, an overly affectionate Italian and travelogue maven Arthur Frommer.","id":"9352","runtime":90,"imdbId":"tt0356150","trailer":"http:\/\/www.youtube.com\/watch?v=SeoX8MZd81E","homepage":"http:\/\/www.eurotrip-themovie.com\/official_index.html","version":180,"lastModified":"1301906834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd1\/4bc9255d017a3c57fe00efd1\/eurotrip-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"EuroTrip","releaseDate":1077235200000,"language":"en","tagline":"No actual Europeans were harmed in the making of this film.","type":"Movie","_key":"34458"} +{"label":"Scott Mechlowicz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d0\/4bf78b3e017a3c772a0003d0\/scott-mechlowicz-profile.jpg","version":33,"id":"41464","lastModified":"1302040011000","name":"Scott Mechlowicz","type":"Person","_key":"34459"} +{"label":"Kristin Kreuk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4bdc5c67017a3c20c2000023\/kristin-kreuk-profile.jpg","version":44,"birthday":"410050800000","id":"55751","lastModified":"1301901143000","name":"Kristin Kreuk","type":"Person","_key":"34460"} +{"label":"Cathy Meils","version":24,"id":"57402","lastModified":"1301901382000","name":"Cathy Meils","type":"Person","_key":"34461"} +{"label":"Nial Iskhakov","version":24,"id":"57403","lastModified":"1301901614000","name":"Nial Iskhakov","type":"Person","_key":"34462"} +{"label":"Travis Wester","version":24,"id":"57404","lastModified":"1301901382000","name":"Travis Wester","type":"Person","_key":"34463"} +{"label":"Jeff Schaffer","version":35,"id":"57405","lastModified":"1301901614000","name":"Jeff Schaffer","type":"Person","_key":"34464"} +{"label":"Nacho Libre","description":"Nacho Libre is loosely based on the story of Fray Tormenta (\"Friar Storm\"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed. The producers are Jack Black, David Klawans, Julia Pistor, and Mike White.","id":"9353","runtime":92,"imdbId":"tt0457510","trailer":"http:\/\/www.youtube.com\/watch?v=btfjTl7sEIg","version":177,"lastModified":"1301901920000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/006\/4bc92564017a3c57fe00f006\/nacho-libre-mid.jpg","genre":"Comedy","title":"Nacho Libre","releaseDate":1150416000000,"language":"en","type":"Movie","_key":"34465"} +{"label":"Honey, I Shrunk the Kids","description":"Wayne Szalinski is a crazy scientist who invents a miniaturizing machine that is so powerful it only blows things up. When the kid next door hits a baseball through the window and it lands in the path of the machine's laser, it begins working. Wayne's two kids plus the two kids next door end up becoming tiny. Wayne accidentally sweeps them up and puts them out with the garbage, so the kids then have to travel through the thick grass back to the house, while braving giant bugs, sprinklers and a l","id":"9354","runtime":93,"imdbId":"tt0097523","trailer":"http:\/\/www.youtube.com\/watch?v=PVF9Wz3LBgs","version":132,"lastModified":"1301902621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9df\/4d096cfe7b9aa101e60009df\/honey-i-shrunk-the-kids-mid.jpg","studio":"Buena Vista","genre":"Comedy","title":"Honey, I Shrunk the Kids","releaseDate":614563200000,"language":"en","type":"Movie","_key":"34466"} +{"label":"Marcia Strassman","version":40,"id":"57418","lastModified":"1301901688000","name":"Marcia Strassman","type":"Person","_key":"34467"} +{"label":"Kristine Sutherland","version":32,"id":"57419","lastModified":"1301901832000","name":"Kristine Sutherland","type":"Person","_key":"34468"} +{"label":"Amy O'Neill","version":32,"id":"57420","lastModified":"1301901995000","name":"Amy O'Neill","type":"Person","_key":"34469"} +{"label":"Thomas Wilson Brown","version":32,"id":"57421","lastModified":"1301901995000","name":"Thomas Wilson Brown","type":"Person","_key":"34470"} +{"label":"Jared Rushton","version":33,"id":"57422","lastModified":"1301902202000","name":"Jared Rushton","type":"Person","_key":"34471"} +{"label":"Mad Max Beyond Thunderdome","description":"Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.","id":"9355","runtime":107,"imdbId":"tt0089530","trailer":"http:\/\/www.youtube.com\/watch?v=kFxpdn5iq8Q","version":158,"lastModified":"1301901563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e6\/4d4ef99b7b9aa13ab400a9e6\/mad-max-beyond-thunderdome-mid.jpg","genre":"Action","title":"Mad Max Beyond Thunderdome","releaseDate":489801600000,"language":"en","type":"Movie","_key":"34472"} +{"label":"Helen Buday","version":28,"id":"57424","lastModified":"1301901115000","name":"Helen Buday","type":"Person","_key":"34473"} +{"label":"Angelo Rossitto","version":27,"id":"97985","lastModified":"1301901163000","name":"Angelo Rossitto","type":"Person","_key":"34474"} +{"label":"George Ogilvie","version":25,"id":"57433","lastModified":"1301901762000","name":"George Ogilvie","type":"Person","_key":"34475"} +{"label":"Look Who's Talking Too","description":"Mollie and James are together and raising a family, which now consists of an older Mikey and his baby sister, Julie. Tension between the siblings arises, and as well with Mollie and James when Mollie's brother Stuart moves in. Mikey is also learning how to use the toilet for the first time.","id":"9356","runtime":81,"imdbId":"tt0100050","version":146,"lastModified":"1301902885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/068\/4d5b0c9d7b9aa11235000068\/look-who-s-talking-too-mid.jpg","genre":"Comedy","title":"Look Who's Talking Too","releaseDate":661132800000,"language":"en","type":"Movie","_key":"34476"} +{"label":"Amy Heckerling","version":75,"id":"57434","lastModified":"1302036442000","name":"Amy Heckerling","type":"Person","_key":"34477"} +{"label":"One Hour Photo","description":"Sy \"the photo guy\" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When \"Uncle\" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next \"has the spine-tingling elements of the best psychological thrillers!\"","id":"9357","runtime":96,"imdbId":"tt0265459","version":173,"lastModified":"1301901881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4bc92574017a3c57fe00f051\/one-hour-photo-mid.jpg","genre":"Drama","title":"One Hour Photo","releaseDate":1010880000000,"language":"en","type":"Movie","_key":"34478"} +{"label":"Mark Romanek","version":32,"id":"57446","lastModified":"1301901121000","name":"Mark Romanek","type":"Person","_key":"34479"} +{"label":"Final Destination 2","description":"When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.","id":"9358","runtime":90,"imdbId":"tt0309593","trailer":"http:\/\/www.youtube.com\/watch?v=EEUYk2xU4R0","version":209,"lastModified":"1301901528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ad\/4c30b54a5e73d63ccd0001ad\/final-destination-2-mid.jpg","genre":"Horror","title":"Final Destination 2","releaseDate":1043884800000,"language":"en","tagline":"Death is like a boomerang. it keeps coming back","type":"Movie","_key":"34480"} +{"label":"Michael Landes","version":38,"id":"57428","lastModified":"1301901220000","name":"Michael Landes","type":"Person","_key":"34481"} +{"label":"Maverick","description":"Maverick is a gambler who would rather con someone than fight them. He needs an additional three thousand dollars in order to enter a Winner Take All poker game that begins in a few days. He tries to win some, tries to collect a few debts, and recover a little loot for the reward. He joins forces with a woman gambler with a marvelous southern accent as the two both try and enter the game.","id":"9359","runtime":127,"imdbId":"tt0110478","trailer":"http:\/\/www.youtube.com\/watch?v=1692","version":154,"lastModified":"1301905387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/421\/4d8261717b9aa17f70000421\/maverick-mid.jpg","genre":"Action","title":"Maverick","releaseDate":769392000000,"language":"en","type":"Movie","_key":"34482"} +{"label":"Anaconda","description":"A \"National Geographic\" film crew is taken hostage by an insane hunter, who takes them along on his quest to capture the world's largest - and deadliest - snake.","id":"9360","runtime":89,"imdbId":"tt0118615","trailer":"http:\/\/www.youtube.com\/watch?v=n71z_WdEUo8","version":207,"lastModified":"1301902115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f3\/4c88fd647b9aa1545c0003f3\/anaconda-mid.jpg","genre":"Action","title":"Anaconda","releaseDate":860716800000,"language":"en","type":"Movie","_key":"34483"} +{"label":"The Last of the Mohicans","description":"As the English and French soldiers battle for control of the North American colonies in the 18th century, the settlers and native Americans are forced to take sides. Cora and her sister Alice unwittingly walk into trouble but are saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans. ","id":"9361","runtime":108,"imdbId":"tt0104691","trailer":"http:\/\/www.youtube.com\/watch?v=aMZtQhhS14w","version":195,"lastModified":"1301901768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bb\/4cac894b7b9aa1152b0001bb\/the-last-of-the-mohicans-mid.jpg","studio":"Morgan Creek Productions","genre":"Adventure","title":"The Last of the Mohicans","releaseDate":714787200000,"language":"en","tagline":"The first American hero.","type":"Movie","_key":"34484"} +{"label":"Eric Schweig","version":33,"id":"57448","lastModified":"1301901169000","name":"Eric Schweig","type":"Person","_key":"34485"} +{"label":"Jodhi May","version":37,"id":"57449","lastModified":"1301901707000","name":"Jodhi May","type":"Person","_key":"34486"} +{"label":"Tremors","description":"Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite am admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.","id":"9362","runtime":96,"imdbId":"tt0100814","trailer":"http:\/\/www.youtube.com\/watch?v=-2XlKqCTXFg","version":174,"lastModified":"1301902968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00a\/4cdd9e875e73d60e0b00000a\/tremors-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Tremors","releaseDate":632707200000,"language":"en","tagline":"The monster movie that breaks new ground.","type":"Movie","_key":"34487"} +{"label":"Finn Carter","version":21,"id":"57453","lastModified":"1301901537000","name":"Finn Carter","type":"Person","_key":"34488"} +{"label":"Hail Caesar","description":"No overview found.","id":"9363","runtime":0,"version":121,"lastModified":"1301906739000","studio":"Mike Zoss Productions","genre":"Comedy","title":"Hail Caesar","releaseDate":1262649600000,"language":"en","type":"Movie","_key":"34489"} +{"label":"Wuthering Heights","description":"No overview found.","id":"9364","runtime":0,"version":285,"lastModified":"1301863280000","title":"Wuthering Heights","releaseDate":1262304000000,"language":"en","type":"Movie","_key":"34490"} +{"label":"Queen of the South","description":"No overview found.","id":"9365","runtime":0,"version":48,"lastModified":"1301905002000","genre":"Crime","title":"Queen of the South","releaseDate":1293840000000,"language":"en","type":"Movie","_key":"34491"} +{"label":"Donnie Brasco","description":"An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.","id":"9366","runtime":127,"imdbId":"tt0119008","version":256,"lastModified":"1301901453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4c6c9af27b9aa13ab60003df\/donnie-brasco-mid.jpg","studio":"TriStar Pictures","genre":"Action","title":"Donnie Brasco","releaseDate":857088000000,"language":"en","type":"Movie","_key":"34492"} +{"label":"El Mariachi","description":"El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor...a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake El Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case. ","id":"9367","runtime":81,"imdbId":"tt0104815","version":200,"lastModified":"1301902174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/502\/4d3e86735e73d622d8004502\/el-mariachi-mid.jpg","genre":"Action","title":"El Mariachi","releaseDate":716515200000,"language":"en","type":"Movie","_key":"34493"} +{"label":"Consuelo G\u00f3mez","version":19,"id":"57469","lastModified":"1301901938000","name":"Consuelo G\u00f3mez","type":"Person","_key":"34494"} +{"label":"Jaime de Hoyos","version":20,"id":"57470","lastModified":"1301901812000","name":"Jaime de Hoyos","type":"Person","_key":"34495"} +{"label":"Peter Marquardt","version":19,"id":"57471","lastModified":"1301902132000","name":"Peter Marquardt","type":"Person","_key":"34496"} +{"label":"La m\u00e1scara de Scaramouche","description":"No overview found.","id":"9368","runtime":98,"imdbId":"tt0057343","version":41,"lastModified":"1301908601000","genre":"Adventure","title":"La m\u00e1scara de Scaramouche","releaseDate":-198028800000,"language":"en","type":"Movie","_key":"34497"} +{"label":"Gianna Maria Canale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4c23641d7b9aa13f6000004e\/gianna-maria-canale-profile.jpg","version":21,"id":"57472","lastModified":"1301902365000","name":"Gianna Maria Canale","type":"Person","_key":"34498"} +{"label":"Yvette Lebon","version":23,"id":"57476","lastModified":"1301902209000","name":"Yvette Lebon","type":"Person","_key":"34499"} +{"label":"Asterix in Amerika","description":"During one of the customary brawls in the Gaulish village, the supply of magic potion is spilled, and the Romans capture Getafix the druid before any more can be brewed. Taking him to their galley at the edge of the world, they catapault him into space, however he lands in America. Asterix and Obelix set off on an adventure to rescue him.","id":"9369","runtime":85,"imdbId":"tt0109162","version":66,"lastModified":"1301902667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fb\/4bc9258d017a3c57fe00f0fb\/asterix-in-amerika-mid.jpg","genre":"Adventure","title":"Asterix in Amerika","releaseDate":780796800000,"language":"en","type":"Movie","_key":"34500"} +{"label":"J\u00fcrgen Scheller","version":22,"id":"26843","lastModified":"1301901583000","name":"J\u00fcrgen Scheller","type":"Person","_key":"34501"} +{"label":"Kristiane Backer","version":22,"id":"57480","lastModified":"1301901689000","name":"Kristiane Backer","type":"Person","_key":"34502"} +{"label":"Tommi Piper","version":20,"id":"57481","lastModified":"1301901677000","name":"Tommi Piper","type":"Person","_key":"34503"} +{"label":"Gerhard Hahn","version":26,"id":"22164","lastModified":"1301901503000","name":"Gerhard Hahn","type":"Person","_key":"34504"} +{"label":"Gibraltar","description":"No overview found.","id":"9370","runtime":100,"imdbId":"tt0058357","version":88,"lastModified":"1301906167000","genre":"Action","title":"Gibraltar","releaseDate":-166233600000,"language":"en","type":"Movie","_key":"34505"} +{"label":"Fausto Tozzi","version":23,"id":"57490","lastModified":"1301902222000","name":"Fausto Tozzi","type":"Person","_key":"34506"} +{"label":"Madeleine Clervanne","version":22,"id":"57491","lastModified":"1301901846000","name":"Madeleine Clervanne","type":"Person","_key":"34507"} +{"label":"Z\u00e4rtliche Haie","description":"No overview found.","id":"9371","runtime":87,"imdbId":"tt0062530","version":51,"lastModified":"1301906738000","studio":"Corona Filmproduktion","genre":"Action","title":"Z\u00e4rtliche Haie","releaseDate":-88819200000,"language":"en","type":"Movie","_key":"34508"} +{"label":"Scilla Gabel","version":23,"id":"57497","lastModified":"1301902350000","name":"Scilla Gabel","type":"Person","_key":"34509"} +{"label":"Rainer von Artenfels","version":20,"id":"57501","lastModified":"1301902002000","name":"Rainer von Artenfels","type":"Person","_key":"34510"} +{"label":"Franco Giacobini","version":23,"id":"66753","lastModified":"1301902338000","name":"Franco Giacobini","type":"Person","_key":"34511"} +{"label":"Super Size Me","description":"Morgan Spurlock subjects himself to a diet based only on McDonald's fast food three times a day for thirty days without exercising to try to prove why so many Americans are fat or obese. He submits himself to a complete check-up by three doctors, comparing his weight along the way, resulting in a scary conclusion.","id":"9372","runtime":100,"imdbId":"tt0390521","trailer":"http:\/\/www.youtube.com\/watch?v=1807","version":179,"lastModified":"1301903480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45f\/4c4e0ea37b9aa1238000045f\/super-size-me-mid.jpg","genre":"Comedy","title":"Super Size Me","releaseDate":1074297600000,"language":"en","tagline":"The first ever reality-based movie ... everything begins and ends in 30 days!","type":"Movie","_key":"34512"} +{"label":"Morgan Spurlock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/62d\/4ca99c4d7b9aa17acb00062d\/morgan-spurlock-profile.jpg","biography":"<!--StartFragment-->\n\n<span lang=\"EN-US\" style=\"mso-bidi-font-family:Helvetica-Bold;\nmso-bidi-language:EN-US\">Oscar\u00ae nominated Morgan Spurlock became a household\nname after the runaway success of 2004<\/span><span lang=\"EN-US\" style=\"font-family:\nArial;mso-bidi-language:EN-US\">\u2019<\/span><span lang=\"EN-US\" style=\"mso-bidi-font-family:\nHelvetica-Bold;mso-bidi-language:EN-US\">s <span style=\"mso-bidi-font-style:\nitalic\">SUPER SIZE ME<\/span>. <\/span><span lang=\"EN-US\" style=\"mso-bidi-font-family:\nArialM","version":43,"id":"57492","lastModified":"1301901605000","name":"Morgan Spurlock","type":"Person","_key":"34513"} +{"label":"Daryl Isaacs","version":22,"id":"57493","lastModified":"1301902095000","name":"Daryl Isaacs","type":"Person","_key":"34514"} +{"label":"Lisa Ganjhu","version":22,"id":"57494","lastModified":"1301902095000","name":"Lisa Ganjhu","type":"Person","_key":"34515"} +{"label":"Stephen Siegel","version":20,"id":"57495","lastModified":"1301901739000","name":"Stephen Siegel","type":"Person","_key":"34516"} +{"label":"Bridget Bennett","version":23,"id":"57496","lastModified":"1301902179000","name":"Bridget Bennett","type":"Person","_key":"34517"} +{"label":"Eric Rowley","version":22,"id":"57498","lastModified":"1301902095000","name":"Eric Rowley","type":"Person","_key":"34518"} +{"label":"Mark Fenton","version":22,"id":"57499","lastModified":"1301901731000","name":"Mark Fenton","type":"Person","_key":"34519"} +{"label":"Alexandra Jamieson","version":22,"id":"57500","lastModified":"1301902095000","name":"Alexandra Jamieson","type":"Person","_key":"34520"} +{"label":"John Banzhaf","version":22,"id":"57502","lastModified":"1301902095000","name":"John Banzhaf","type":"Person","_key":"34521"} +{"label":"David Satcher","version":23,"id":"57503","lastModified":"1301902179000","name":"David Satcher","type":"Person","_key":"34522"} +{"label":"Lisa Young","version":23,"id":"57504","lastModified":"1301902095000","name":"Lisa Young","type":"Person","_key":"34523"} +{"label":"Kelly Brownell","version":22,"id":"57505","lastModified":"1301902095000","name":"Kelly Brownell","type":"Person","_key":"34524"} +{"label":"Jacob Sullum","version":22,"id":"57506","lastModified":"1301901730000","name":"Jacob Sullum","type":"Person","_key":"34525"} +{"label":"Tommy Thompson","version":22,"id":"57507","lastModified":"1301902095000","name":"Tommy Thompson","type":"Person","_key":"34526"} +{"label":"William J. Klish","version":22,"id":"57508","lastModified":"1301902095000","name":"William J. Klish","type":"Person","_key":"34527"} +{"label":"The Texas Chainsaw Massacre","description":"The only known survivor of a 1973 killing spree, dubbed The Texas Chainsaw Massacre, breaks her silence and comes forward to tell the real story of what happened on that bloody day. She recounts the grisly events that led her and her four teenage friends to a deserted rural Texas highway and straight into the clutches of a chainsaw-wielding madman who left a trail of blood and terror.","id":"9373","runtime":98,"imdbId":"tt0324216","version":254,"lastModified":"1301902444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d9\/4c469b367b9aa15dde0001d9\/the-texas-chainsaw-massacre-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"The Texas Chainsaw Massacre","releaseDate":1066348800000,"language":"en","tagline":"What you know about fear... doesn't even come close.","type":"Movie","_key":"34528"} +{"label":"Erica Leerhsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/175\/4bcc8860017a3c0f2c000175\/erica-leerhsen-profile.jpg","version":37,"id":"57514","lastModified":"1301901322000","name":"Erica Leerhsen","type":"Person","_key":"34529"} +{"label":"Death Becomes Her","description":"Helen, a writer, and Madeline, an actress, have hated each other for years. Madeline is married to Ernest, who was once Helen's fiance. After she recovers from a mental breakdown, Helen vows revenge by stealing back Ernest and plotting to kill Madeline. Both rivals have secretly drunk a miracle cure for aging; they accidentally discover, when each tries to eliminate the other, that they have become immortal and that \"life\" will never be the same again.","id":"9374","runtime":104,"imdbId":"tt0104070","version":182,"lastModified":"1301902233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1b\/4cf61d197b9aa15146000d1b\/death-becomes-her-mid.jpg","genre":"Comedy","title":"Death Becomes Her","releaseDate":712540800000,"language":"en","tagline":"In one small bottle... The fountain of youth. The secret of eternal life. The power of an ancient potion. Sometimes it works... sometimes it doesn't.","type":"Movie","_key":"34530"} +{"label":"Crazy","description":"No overview found.","id":"9375","runtime":97,"imdbId":"tt0215681","version":393,"lastModified":"1301905458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/025\/4c93cd7c7b9aa10d5c000025\/crazy-mid.jpg","genre":"Comedy","title":"Crazy","releaseDate":960422400000,"language":"en","type":"Movie","_key":"34531"} +{"label":"Ferris Bueller's Day Off","description":"High-schooler Ferris Bueller knows everyone -- and every trick to faking an illness. So with the entire school convinced he's at death's door, Bueller grabs his girlfriend and best friend and hits the streets of Chicago for a well-deserved day off. Fed-up principal Ed Rooney is determined to catch Bueller and put a premature end to his field trip. But it's tough to outfox Ferris.","id":"9377","runtime":102,"imdbId":"tt0091042","trailer":"http:\/\/www.youtube.com\/watch?v=R-P6p86px6U","version":321,"lastModified":"1301901560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71d\/4d2e2cd25e73d63a5200e71d\/ferris-bueller-s-day-off-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Ferris Bueller's Day Off","releaseDate":518832000000,"language":"en","tagline":"One man's struggle to take it easy.","type":"Movie","_key":"34532"} +{"label":"Thir13en Ghosts","description":"Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine.","id":"9378","runtime":91,"imdbId":"tt0245674","trailer":"http:\/\/www.youtube.com\/watch?v=hS6EyJQA53Y","version":162,"lastModified":"1301901562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/165\/4bc9259b017a3c57fe00f165\/thir13en-ghosts-mid.jpg","genre":"Horror","title":"Thir13en Ghosts","releaseDate":1002931200000,"language":"en","tagline":"Misery loves company","type":"Movie","_key":"34533"} +{"label":"Steve Beck","version":26,"id":"57521","lastModified":"1301901485000","name":"Steve Beck","type":"Person","_key":"34534"} +{"label":"Otto - Der Au\u00dferfriesische","description":"No overview found.","id":"9379","runtime":92,"imdbId":"tt0098040","version":66,"lastModified":"1301905335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16a\/4bc9259b017a3c57fe00f16a\/otto-der-auerfriesische-mid.jpg","genre":"Comedy","title":"Otto - Der Au\u00dferfriesische","releaseDate":616291200000,"language":"en","type":"Movie","_key":"34535"} +{"label":"Barbara May","version":20,"id":"57528","lastModified":"1301901997000","name":"Barbara May","type":"Person","_key":"34536"} +{"label":"Arnold Marquis","version":21,"id":"57529","lastModified":"1301901149000","name":"Arnold Marquis","type":"Person","_key":"34537"} +{"label":"Marijan David Vajda","version":20,"id":"57530","lastModified":"1301901683000","name":"Marijan David Vajda","type":"Person","_key":"34538"} +{"label":"American Werewolf","description":"No overview found.","id":"9380","title":"American Werewolf","language":"en","lastModified":"1302042852000","version":1477,"type":"Movie","_key":"34539"} +{"label":"Babylon A.D.","description":"In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The \"package\" is a mysterious young woman with a secret.","id":"9381","runtime":90,"imdbId":"tt0364970","trailer":"http:\/\/www.youtube.com\/watch?v=JyhEHKB6cmY","homepage":"http:\/\/www.babylonadmovie.com\/","version":341,"lastModified":"1301901267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a8\/4bc925a9017a3c57fe00f1a8\/babylon-a-d-mid.jpg","studio":"Canal Plus","genre":"Action","title":"Babylon A.D.","releaseDate":1220054400000,"language":"en","type":"Movie","_key":"34540"} +{"label":"M\u00e9lanie Thierry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/662\/4d5a60e15e73d65e95000662\/m-lanie-thierry-profile.jpg","version":58,"id":"59373","lastModified":"1301901169000","name":"M\u00e9lanie Thierry","type":"Person","_key":"34541"} +{"label":"Souleymane Dicko","version":31,"id":"72270","lastModified":"1301901513000","name":"Souleymane Dicko","type":"Person","_key":"34542"} +{"label":"David Belle","version":41,"id":"62439","lastModified":"1301901239000","name":"David Belle","type":"Person","_key":"34543"} +{"label":"Radek Bruna","version":31,"id":"59374","lastModified":"1301901468000","name":"Radek Bruna","type":"Person","_key":"34544"} +{"label":"Boys on the Side","description":"Jane is a night club singer, out of work. Robin is a quirky real estate agent looking for a ride-share to accompany her to California. Her advertisement is answered by Jane, who at first was uncertain about her. A stop in Pittsburgh picks up a third, Holly, escaping a violent and drug-dealing partner.","id":"9382","runtime":115,"imdbId":"tt0112571","version":149,"lastModified":"1301902323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ad\/4bc925a9017a3c57fe00f1ad\/boys-on-the-side-mid.jpg","genre":"Comedy","title":"Boys on the Side","releaseDate":791769600000,"language":"en","tagline":"A motion picture that celebrates the art of survival, the gift of laughter and the miracle of friendship.","type":"Movie","_key":"34545"} +{"label":"Hollow Man","description":"Cocky researcher Sebastian Caine is a working on a project to make living creatures invisible. He's so confident he's found the right formula that he tests it on himself and begins to vanish. Problem is, no one can figure out how to make him visible again. Soon his invisibility drives Caine mad -- with terrifying results.","id":"9383","runtime":112,"imdbId":"tt0164052","version":227,"lastModified":"1301902205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cb\/4bc925ac017a3c57fe00f1cb\/hollow-man-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Hollow Man","releaseDate":965174400000,"language":"en","tagline":"What would you do if you knew you couldn't be seen?","type":"Movie","_key":"34546"} +{"label":"Starsky & Hutch","description":"Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.","id":"9384","runtime":101,"imdbId":"tt0335438","trailer":"http:\/\/www.youtube.com\/watch?v=l05DweeR6W0","version":221,"lastModified":"1302044290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bc925b0017a3c57fe00f1dd\/starsky-hutch-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Starsky & Hutch","releaseDate":1077753600000,"language":"en","tagline":"They're the man.","type":"Movie","_key":"34547"} +{"label":"Les Douze travaux d'Ast\u00e9rix","description":"\nAsterix and Obelix depart on an adventure to complete twelve impossible tasks to prove to Caesar that they are as strong as the Gods. You'll roar with laughter as they outwit, outrun, and generally outrage the very people who are trying to prove them \"only human\".","id":"9385","runtime":82,"imdbId":"tt0072901","version":73,"lastModified":"1301903307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4d13ce987b9aa1147c00162e\/les-douze-travaux-d-ast-rix-mid.jpg","genre":"Animation","title":"Les Douze travaux d'Ast\u00e9rix","releaseDate":195436800000,"language":"en","type":"Movie","_key":"34548"} +{"label":"Jacques Morel","version":34,"id":"57540","lastModified":"1301901599000","name":"Jacques Morel","type":"Person","_key":"34549"} +{"label":"Henri Labussi\u00e8re","version":28,"id":"57541","lastModified":"1301901583000","name":"Henri Labussi\u00e8re","type":"Person","_key":"34550"} +{"label":"Ren\u00e9 Goscinny","version":96,"id":"24530","lastModified":"1301901450000","name":"Ren\u00e9 Goscinny","type":"Person","_key":"34551"} +{"label":"Henri Gruel","version":27,"id":"57542","lastModified":"1301902362000","name":"Henri Gruel","type":"Person","_key":"34552"} +{"label":"Albert Uderzo","version":79,"id":"24531","lastModified":"1301901406000","name":"Albert Uderzo","type":"Person","_key":"34553"} +{"label":"Pierre Watrin","version":26,"id":"57543","lastModified":"1301902041000","name":"Pierre Watrin","type":"Person","_key":"34554"} +{"label":"In the Line of Fire","description":"Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself \"Booth\" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.","id":"9386","runtime":128,"imdbId":"tt0107206","trailer":"http:\/\/www.youtube.com\/watch?v=c-kA2h9lj0k","version":223,"lastModified":"1301902678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc925b3017a3c57fe00f1fb\/in-the-line-of-fire-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"In the Line of Fire","releaseDate":742176000000,"language":"en","type":"Movie","_key":"34555"} +{"label":"Conan the Barbarian","description":"The epic tale of child sold into slavery who grows into a man who seeks revenge against the warlord who massacred his tribe.","id":"9387","runtime":129,"imdbId":"tt0082198","trailer":"http:\/\/www.youtube.com\/watch?v=M0Vn4wQqt_8","version":201,"lastModified":"1301901411000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/deb\/4d9875875e73d6225d005deb\/conan-the-barbarian-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"Conan the Barbarian","releaseDate":384998400000,"language":"en","tagline":"Thief Warrior Gladiator King","type":"Movie","_key":"34556"} +{"label":"Cassandra Gava","version":24,"id":"98473","lastModified":"1301902137000","name":"Cassandra Gava","type":"Person","_key":"34557"} +{"label":"Ben Davidson","version":23,"id":"100563","lastModified":"1301902374000","name":"Ben Davidson","type":"Person","_key":"34558"} +{"label":"Val\u00e9rie Quennessen","version":24,"id":"100564","lastModified":"1301901928000","name":"Val\u00e9rie Quennessen","type":"Person","_key":"34559"} +{"label":"Nadiuska","version":25,"id":"100565","lastModified":"1301901928000","name":"Nadiuska","type":"Person","_key":"34560"} +{"label":"Pilar Alc\u00f3n","version":27,"id":"100566","lastModified":"1301901800000","name":"Pilar Alc\u00f3n","type":"Person","_key":"34561"} +{"label":"Thank You for Smoking","description":"The chief spokesperson and lobbyist Nick Naylor is the Vice-President of the Academy of Tobacco Studies. He is talented in speaking and spins argument to defend the cigarette industry in the most difficult situations. His best friends are Polly Bailey that works in the Moderation Council in alcohol business, and Bobby Jay Bliss of the gun business own advisory group SAFETY. They frequently meet each other in a bar and they self-entitle the Mod Squad a.k.a. Merchants of Death, disputing which ind","id":"9388","runtime":92,"imdbId":"tt0427944","version":282,"lastModified":"1301902560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/230\/4bc925ba017a3c57fe00f230\/thank-you-for-smoking-mid.jpg","studio":"Room 9 Entertainment","genre":"Comedy","title":"Thank You for Smoking","releaseDate":1126224000000,"language":"en","tagline":"Tobacco lobbyist Nick Naylor is trying to SAVE YOUR ASH!","type":"Movie","_key":"34562"} +{"label":"Joan Lunden","version":21,"id":"57554","lastModified":"1301901382000","name":"Joan Lunden","type":"Person","_key":"34563"} +{"label":"Eric Haberman","version":21,"id":"57555","lastModified":"1301901730000","name":"Eric Haberman","type":"Person","_key":"34564"} +{"label":"Renaissance","description":"To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price.\n","id":"9389","runtime":105,"imdbId":"tt0386741","version":160,"lastModified":"1301904507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4bc925be017a3c57fe00f241\/renaissance-mid.jpg","genre":"Action","title":"Renaissance","releaseDate":1142380800000,"language":"en","type":"Movie","_key":"34565"} +{"label":"Christian Volckman","version":20,"id":"57557","lastModified":"1301902372000","name":"Christian Volckman","type":"Person","_key":"34566"} +{"label":"Jerry Maguire","description":"Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.","id":"9390","runtime":139,"imdbId":"tt0116695","trailer":"http:\/\/www.youtube.com\/watch?v=OKoKYk4jC84","version":158,"lastModified":"1301903289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4cdf064f7b9aa168b0000005\/jerry-maguire-mid.jpg","genre":"Comedy","title":"Jerry Maguire","releaseDate":849830400000,"language":"en","type":"Movie","_key":"34567"} +{"label":"Alison Armitage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46b\/4ce1c65f5e73d60f7000046b\/alison-armitage-profile.jpg","biography":"<p>Ravishing brunette beauty Alison Armitage was born on February 26, \n1965 in High Wycombe, London, England. She's of mixed French, English, \nand German descent. Alison has two brothers and grew up in Hong Kong, \nwhere she lived for twenty years. Armitage became a competitive swimmer \nat age four and qualified for the Olympic team representing Hong Kong. \nAlison studied computer science at the University of San Diego in \nCalifornia. Following graduation from college she moved to Denver, \nColora","version":23,"birthday":"-152931600000","id":"142955","birthplace":"London, England, UK","lastModified":"1301902355000","name":"Alison Armitage","type":"Person","_key":"34568"} +{"label":"Enduring Love","description":"Two strangers become dangerously close after witnessing a deadly accident.","id":"9391","runtime":100,"imdbId":"tt0375735","homepage":"http:\/\/www.paramountclassics.com\/enduringlove\/","version":162,"lastModified":"1301903991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/276\/4bc925c6017a3c57fe00f276\/enduring-love-mid.jpg","genre":"Drama","title":"Enduring Love","releaseDate":1101427200000,"language":"en","tagline":"Some people never let go.","type":"Movie","_key":"34569"} +{"label":"Jeremy McCurdie","version":22,"id":"57568","lastModified":"1301901676000","name":"Jeremy McCurdie","type":"Person","_key":"34570"} +{"label":"Lee Sheward","version":22,"id":"57569","lastModified":"1301902199000","name":"Lee Sheward","type":"Person","_key":"34571"} +{"label":"Nick Wilkinson","version":22,"id":"57571","lastModified":"1301902003000","name":"Nick Wilkinson","type":"Person","_key":"34572"} +{"label":"The Descent","description":"After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.","id":"9392","runtime":99,"imdbId":"tt0435625","version":218,"lastModified":"1301901776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4bc925c9017a3c57fe00f28f\/the-descent-mid.jpg","studio":"Celador Films","genre":"Adventure","title":"The Descent","releaseDate":1110499200000,"language":"en","tagline":"Scream your last breath.","type":"Movie","_key":"34573"} +{"label":"Shauna Macdonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/990\/4d90d7817b9aa1675b003990\/shauna-macdonald-profile.jpg","version":35,"id":"57574","lastModified":"1301901363000","name":"Shauna Macdonald","type":"Person","_key":"34574"} +{"label":"Alex Reid","version":28,"id":"57576","lastModified":"1301901513000","name":"Alex Reid","type":"Person","_key":"34575"} +{"label":"Saskia Mulder","version":25,"id":"57577","lastModified":"1301901459000","name":"Saskia Mulder","type":"Person","_key":"34576"} +{"label":"MyAnna Buring","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4d282b2c7b9aa134dc002013\/myanna-buring-profile.jpg","version":27,"id":"57578","lastModified":"1301901251000","name":"MyAnna Buring","type":"Person","_key":"34577"} +{"label":"Neil Marshall","version":63,"id":"57581","lastModified":"1301901170000","name":"Neil Marshall","type":"Person","_key":"34578"} +{"label":"Napola - Elite f\u00fcr den F\u00fchrer","description":"In 1942, Friedrich Weimer's boxing skills get him an appointment to a National Political Academy (NaPolA) - high schools that produce Nazi elite. Over his father's objections, Friedrich enrolls. During his year in seventh column,Friedrich encounters hazing, cruelty, death, and the Nazi code. His friendship with Albrecht, the ascetic son of the area's governor, is central to this education.","id":"9393","runtime":117,"imdbId":"tt0384369","version":50,"lastModified":"1301902245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4bc925ca017a3c57fe00f29d\/napola-elite-fur-den-fuhrer-mid.jpg","genre":"Drama","title":"Napola - Elite f\u00fcr den F\u00fchrer","releaseDate":1088899200000,"language":"en","type":"Movie","_key":"34579"} +{"label":"Jonas J\u00e4germeyr","version":20,"id":"57586","lastModified":"1301902199000","name":"Jonas J\u00e4germeyr","type":"Person","_key":"34580"} +{"label":"Leon A. Kersten","version":20,"id":"57587","lastModified":"1301902379000","name":"Leon A. Kersten","type":"Person","_key":"34581"} +{"label":"Lo Chiamavano Trinit\u00e0...","description":"Trinit\u00e0, pistolero indolente e smilzo, ha un fratello grosso che fa lo sceriffo ma, nel tempo libero, ruba il bestiame. S'innamora di una mormone e convince il fratellone ad aiutare la sua gente contro un malvagio prepotente. Prototipo del filone comico del western all'italiana la cui violenza congenita \u00e8 esorcizzata in cadenze ridanciane e agresti con la coppia Trinit\u00e0-Bambino inventata dall'ex operatore Enzo Barboni con lo pseudonimo di E.B. Clucher.","id":"9394","runtime":109,"imdbId":"tt0067355","version":160,"lastModified":"1301908323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cb\/4c5b31ac5e73d63a700005cb\/lo-chiamavano-trinita-mid.jpg","genre":"Comedy","title":"Lo Chiamavano Trinit\u00e0...","releaseDate":30672000000,"language":"en","tagline":"Trinit\u00e0\u2026 la mano destra del Diavolo.","type":"Movie","_key":"34582"} +{"label":"Elena Pedemonte","version":23,"id":"57588","lastModified":"1301901730000","name":"Elena Pedemonte","type":"Person","_key":"34583"} +{"label":"Above the Law","description":"Seagal is Nico Toscani, an Italian immigrant, American patriot, ex-CIA agent, aikido specialist, and unorthodox Chicago policeman. He is as committed to his job as he is to his personalized brand of justice: expert and thorough bone-crushing.","id":"9395","runtime":99,"imdbId":"tt0094602","version":157,"lastModified":"1301902720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b3\/4bc925ce017a3c57fe00f2b3\/above-the-law-mid.jpg","genre":"Action","title":"Above the Law","releaseDate":576460800000,"language":"en","tagline":"He's a cop who believes no one is above the law.","type":"Movie","_key":"34584"} +{"label":"Daniel Faraldo","version":22,"id":"57598","lastModified":"1301902375000","name":"Daniel Faraldo","type":"Person","_key":"34585"} +{"label":"Crocodile Dundee II","description":"Australian outback expert protects his New York love from gangsters who've followed her down under.","id":"9396","runtime":110,"imdbId":"tt0092493","version":159,"lastModified":"1301902531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c5\/4bc925d0017a3c57fe00f2c5\/crocodile-dundee-ii-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Crocodile Dundee II","releaseDate":580003200000,"language":"en","tagline":"The world's favourite adventurer is back for more! much more!","type":"Movie","_key":"34586"} +{"label":"Ernie Dingo","version":26,"id":"57593","lastModified":"1301902176000","name":"Ernie Dingo","type":"Person","_key":"34587"} +{"label":"John Cornell","version":36,"id":"57594","lastModified":"1301901953000","name":"John Cornell","type":"Person","_key":"34588"} +{"label":"Evolution","description":"College professor Ira Kane is invited by geology teacher\/girls' volleyball coach Harry Block to investigate a meteorite that has crashed through the surface rock into a network of underground caverns under the sleepy town of Glen Canyon, Arizona. They collect a sample and find that it consists extraterrestrial, single-celled, nitrogen-based organisms, which evolve rapidly. ","id":"9397","runtime":101,"imdbId":"tt0251075","version":150,"lastModified":"1301901897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4bc925d1017a3c57fe00f2d7\/evolution-mid.jpg","studio":"Montecito Picture Company, The","genre":"Action","title":"Evolution","releaseDate":991958400000,"language":"en","tagline":"Coming to wipe that silly smile off your planet.","type":"Movie","_key":"34589"} +{"label":"Zoolander","description":"Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.","id":"9398","runtime":89,"imdbId":"tt0196229","trailer":"http:\/\/www.youtube.com\/watch?v=aWpcfA8vY-c","version":248,"lastModified":"1301902055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b4\/4d471d087b9aa15bbb00b3b4\/zoolander-mid.jpg","studio":"NPV Entertainment","genre":"Comedy","title":"Zoolander","releaseDate":1001635200000,"language":"en","tagline":"3% Body Fat. 1% Brain Activity. ","type":"Movie","_key":"34590"} +{"label":"Tom Ford","version":21,"id":"77066","lastModified":"1301902095000","name":"Tom Ford","type":"Person","_key":"34591"} +{"label":"Steve Kmetko","version":21,"id":"77067","lastModified":"1301901882000","name":"Steve Kmetko","type":"Person","_key":"34592"} +{"label":"Tommy Hilfiger","version":21,"id":"77068","lastModified":"1301901883000","name":"Tommy Hilfiger","type":"Person","_key":"34593"} +{"label":"Lenny Kravitz","version":36,"id":"77069","lastModified":"1301901240000","name":"Lenny Kravitz","type":"Person","_key":"34594"} +{"label":"Gwen Stefani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d91\/4c6917ea7b9aa172dd000d91\/gwen-stefani-profile.jpg","version":26,"id":"77070","lastModified":"1301901715000","name":"Gwen Stefani","type":"Person","_key":"34595"} +{"label":"Mark Ronson","version":21,"id":"77071","lastModified":"1301901882000","name":"Mark Ronson","type":"Person","_key":"34596"} +{"label":"Tyson Beckford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d4\/4d20b5817b9aa173670021d4\/tyson-beckford-profile.jpg","version":25,"id":"77072","lastModified":"1301901422000","name":"Tyson Beckford","type":"Person","_key":"34597"} +{"label":"Lance Bass","version":25,"id":"77073","lastModified":"1301901650000","name":"Lance Bass","type":"Person","_key":"34598"} +{"label":"Veronica Webb","version":22,"id":"77074","lastModified":"1301901940000","name":"Veronica Webb","type":"Person","_key":"34599"} +{"label":"Lionheart","description":"Lyon Gaultier is a deserter in the Foreign Legion arriving in the USA entirely hard up. He finds his brother between life and death and his sister-in-law without the money needed to heal her husband and to maintain her child. To earn the money needed, Gaultier decides to take part in some very dangerous clandestine fights.","id":"9399","runtime":105,"imdbId":"tt0100029","trailer":"http:\/\/www.youtube.com\/watch?v=1682","version":144,"lastModified":"1301902607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de3\/4d57b0737b9aa16bca001de3\/lionheart-mid.jpg","genre":"Action","title":"Lionheart","releaseDate":636249600000,"language":"en","type":"Movie","_key":"34600"} +{"label":"Deborah Rennard","version":27,"id":"57663","lastModified":"1301901649000","name":"Deborah Rennard","type":"Person","_key":"34601"} +{"label":"Lisa Pelikan","version":30,"id":"115888","lastModified":"1301902541000","name":"Lisa Pelikan","type":"Person","_key":"34602"} +{"label":"Sheldon Lettich","version":75,"id":"16590","lastModified":"1301901495000","name":"Sheldon Lettich","type":"Person","_key":"34603"} +{"label":"Set It Off","description":"Four Black women, all of whom have suffered for lack of money and at the hands of the majority, undertake to rob banks. While initially successful, a policeman who was involved in shooting one of the women's brothers is on their trail. As the women add to the loot, their tastes and interests begin to change and their suspicions of each other increase on the way to a climactic robbery.","id":"9400","runtime":118,"imdbId":"tt0117603","trailer":"http:\/\/www.youtube.com\/watch?v=0LZKJx-otso","version":103,"lastModified":"1301904250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4bc925dc017a3c57fe00f317\/set-it-off-mid.jpg","genre":"Action","title":"Set It Off","releaseDate":847238400000,"language":"en","type":"Movie","_key":"34604"} +{"label":"2 Days in the Valley","description":"John Herzfeld deftly welds together a multitude of subplots-- a loser hitman and a cool assassin involved in an insurance scam; a washed-up director, turned suicidal, if only he had someone to care for his beloved dog; a snooty art dealer, wracked by kidney stones, cared for by his devoted assistant; a grungy deranged vice cop, now partnered with a fresh-faced rookie; and two beautiful and jealous","id":"9401","runtime":104,"imdbId":"tt0115438","version":135,"lastModified":"1301904249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/320\/4bc925dc017a3c57fe00f320\/2-days-in-the-valley-mid.jpg","genre":"Action","title":"2 Days in the Valley","releaseDate":842486400000,"language":"en","type":"Movie","_key":"34605"} +{"label":"Greg Cruttwell","version":22,"id":"58090","lastModified":"1301902367000","name":"Greg Cruttwell","type":"Person","_key":"34606"} +{"label":"Die Drei M\u00e4dels von der Tankstelle","description":"No overview found.","id":"9402","runtime":82,"imdbId":"tt0119020","version":35,"lastModified":"1301907409000","genre":"Comedy","title":"Die Drei M\u00e4dels von der Tankstelle","releaseDate":866073600000,"language":"en","type":"Movie","_key":"34607"} +{"label":"Wigald Boning","version":23,"id":"58091","lastModified":"1301901956000","name":"Wigald Boning","type":"Person","_key":"34608"} +{"label":"Peter F. Bringmann","version":21,"id":"28193","lastModified":"1301901460000","name":"Peter F. Bringmann","type":"Person","_key":"34609"} +{"label":"Private Parts","description":"The auto-biographical story of Howard Stern, the radio-rebel who is now also a TV-personality, an author and a movie star.","id":"9403","runtime":109,"imdbId":"tt0119951","version":214,"lastModified":"1301903493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4c5cc4577b9aa151f2000923\/private-parts-mid.jpg","genre":"Comedy","title":"Private Parts","releaseDate":857692800000,"language":"en","type":"Movie","_key":"34610"} +{"label":"Howard Stern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/827\/4d6b0d895e73d66b23002827\/howard-stern-profile.jpg","version":24,"id":"58098","lastModified":"1301901882000","name":"Howard Stern","type":"Person","_key":"34611"} +{"label":"Police Story 4 - First Strike","description":"Jackie Chan reprises his role as Chan Ka-Kui (also known in some versions as Jackie) yet again as a Hong Kong cop who works with Interpol to track down and arrest an illegal weapons dealer. Later Jackie realizes that things are not as simple as they appear and soon find himself a pawn of an organisation posing as Russian intelligence.","id":"9404","runtime":88,"imdbId":"tt0116704","version":105,"lastModified":"1301902709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/336\/4bc925de017a3c57fe00f336\/iv-first-strike-mid.jpg","genre":"Action","title":"Police Story 4 - First Strike","releaseDate":823910400000,"language":"en","type":"Movie","_key":"34612"} +{"label":"Jackson Liu","version":25,"id":"120418","lastModified":"1301902527000","name":"Jackson Liu","type":"Person","_key":"34613"} +{"label":"Annie Wu","version":25,"id":"120419","lastModified":"1301902688000","name":"Annie Wu","type":"Person","_key":"34614"} +{"label":"Bill Tung","version":36,"id":"44922","lastModified":"1301901530000","name":"Bill Tung","type":"Person","_key":"34615"} +{"label":"Yuri Petrov","version":23,"id":"90358","lastModified":"1301903049000","name":"Yuri Petrov","type":"Person","_key":"34616"} +{"label":"Nonna Grishaeva","version":26,"id":"86866","lastModified":"1301903078000","name":"Nonna Grishaeva","type":"Person","_key":"34617"} +{"label":"Stanley Tong","version":52,"id":"44916","lastModified":"1301943858000","name":"Stanley Tong","type":"Person","_key":"34618"} +{"label":"Double Team","description":"He's a one-man arsenal... with enough voltage to rock the free world.\r\nThey Don't Play by the Rules.\r\nYou're either on their side...or in their way.\r\nAmerica's top counter-terrorist usually works alone...this time he's got company.","id":"9405","runtime":97,"imdbId":"tt0119013","trailer":"http:\/\/www.youtube.com\/watch?v=1492","version":114,"lastModified":"1301902620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/348\/4bc925df017a3c57fe00f348\/double-team-mid.jpg","genre":"Action","title":"Double Team","releaseDate":860112000000,"language":"en","type":"Movie","_key":"34619"} +{"label":"An American Werewolf in Paris","description":"An American man unwittingly gets involved with werewolves who have developed a serum allowing them to transform at will.","id":"9406","runtime":105,"imdbId":"tt0118604","version":95,"lastModified":"1301903113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/355\/4bc925e2017a3c57fe00f355\/an-american-werewolf-in-paris-mid.jpg","genre":"Comedy","title":"An American Werewolf in Paris","releaseDate":878256000000,"language":"en","tagline":"Things are about to get a little hairy.","type":"Movie","_key":"34620"} +{"label":"Vince Vieluf","version":25,"id":"58381","lastModified":"1301901959000","name":"Vince Vieluf","type":"Person","_key":"34621"} +{"label":"Julie Bowen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ab\/4be099c3017a3c35bd0005ab\/julie-bowen-profile.jpg","version":35,"id":"31171","lastModified":"1301901165000","name":"Julie Bowen","type":"Person","_key":"34622"} +{"label":"Anthony Waller","version":21,"id":"58383","lastModified":"1301902367000","name":"Anthony Waller","type":"Person","_key":"34623"} +{"label":"Anthony Waller","version":32,"id":"58384","lastModified":"1301901787000","name":"Anthony Waller","type":"Person","_key":"34624"} +{"label":"Red Corner","description":"An American attorney on business in China, ends up wrongfully on trial for murder and his only key to innocence is a female defense lawyer from the country.","id":"9407","runtime":122,"imdbId":"tt0119994","version":140,"lastModified":"1301902652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35a\/4bc925e2017a3c57fe00f35a\/red-corner-mid.jpg","genre":"Crime","title":"Red Corner","releaseDate":878256000000,"language":"en","type":"Movie","_key":"34625"} +{"label":"Bradley Whitford","version":34,"id":"11367","lastModified":"1301901417000","name":"Bradley Whitford","type":"Person","_key":"34626"} +{"label":"Surf's Up","description":"Surf's Up is a 2007 American computer-animated mockumentary film produced by Sony Pictures Animation and distributed by Columbia Pictures and ImageWorks Studios. It stars the voices of Shia LaBeouf, Jeff Bridges, Zooey Deschanel, Jon Heder among others.Cody is a surfing penguin from Shiverpool who dreams of making it big and being like his idol Big Z. On his journey he discovers his talents are not all he thinks they are and he must learn to accept that their is more to surfing than fame and for","id":"9408","runtime":85,"imdbId":"tt0423294","version":239,"lastModified":"1302038734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36f\/4bc925e4017a3c57fe00f36f\/surf-s-up-mid.jpg","studio":"Sony Pictures Animation","genre":"Action","title":"Surf's Up","releaseDate":1180742400000,"language":"en","tagline":"In the coldest place on Earth, he's the hottest thing around.","type":"Movie","_key":"34627"} +{"label":"Ash Brannon","version":28,"id":"12905","lastModified":"1301901592000","name":"Ash Brannon","type":"Person","_key":"34628"} +{"label":"Chris Buck","version":25,"id":"15774","lastModified":"1302061112000","name":"Chris Buck","type":"Person","_key":"34629"} +{"label":"Another Stakeout","description":"Chris and Bill are called upon for their excellent surveillance record to stakeout a lakeside home where a Mafia trial witness is believed to be heading or already hiding. Unlike their earlier _Stakeout_, this time they are accompanied by Gina Garret from the DA's office and her pet rottweiler 'Archie'; their cover, husband and wife with son Bill.","id":"9409","runtime":105,"imdbId":"tt0106292","version":144,"lastModified":"1301903935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/058\/4cfc0d3b5e73d6299d003058\/another-stakeout-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Another Stakeout","releaseDate":743385600000,"language":"en","tagline":"They're on the look out for thrills, action and adventure.","type":"Movie","_key":"34630"} +{"label":"Great Expectations","description":"Based on Charles Dickens' timeless tale, this is a story of the love of a man for an unreachable woman. Updated to modern day New York City, the story concerns a man of modest background who falls in love with a rich girl. But when a mysterious benefactor greenlights the man to make his dreams come true, everything done has the ultimate goal of making Estella fall in love with him.","id":"9410","runtime":111,"imdbId":"tt0119223","version":137,"lastModified":"1301947679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4bc925e5017a3c57fe00f381\/great-expectations-mid.jpg","genre":"Comedy","title":"Great Expectations","releaseDate":886118400000,"language":"en","type":"Movie","_key":"34631"} +{"label":"Fallen","description":"Assigned to nab a killer before he or she strikes again, tough homicide detective John Hobbes knows he's on a dangerous assignment -- and one for which he's uniquely suited. But there's more to it than he realizes. Turns out he's not just up against a killer: He must face an evil spirit that can morph from one innocent bystander to the next","id":"9411","runtime":124,"imdbId":"tt0119099","version":159,"lastModified":"1301902906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4d68164a7b9aa1363100028f\/fallen-mid.jpg","studio":"Turner Pictures","genre":"Crime","title":"Fallen","releaseDate":884908800000,"language":"en","tagline":"Don't trust a soul.","type":"Movie","_key":"34632"} +{"label":"Sieben Monde","description":"No overview found.","id":"9412","runtime":96,"imdbId":"tt0130892","version":51,"lastModified":"1301905335000","genre":"Horror","title":"Sieben Monde","releaseDate":895708800000,"language":"en","type":"Movie","_key":"34633"} +{"label":"Peter Fratzscher","version":18,"id":"21892","lastModified":"1301901403000","name":"Peter Fratzscher","type":"Person","_key":"34634"} +{"label":"Picture Perfect","description":"No overview found.","id":"9413","runtime":105,"imdbId":"tt0119896","version":136,"lastModified":"1301903940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39c\/4bc925ea017a3c57fe00f39c\/picture-perfect-mid.jpg","genre":"Comedy","title":"Picture Perfect","releaseDate":861235200000,"language":"en","type":"Movie","_key":"34635"} +{"label":"Glenn Gordon Caron","version":24,"id":"58463","lastModified":"1301902196000","name":"Glenn Gordon Caron","type":"Person","_key":"34636"} +{"label":"The Man Who Knew Too Little","description":"An American gets a ticket for an audience participation game in London, then gets involved in a case of mistaken identity. As an international plot unravels around him, he thinks it's all part of the act.","id":"9414","runtime":97,"imdbId":"tt0120483","trailer":"http:\/\/www.youtube.com\/watch?v=1309","version":95,"lastModified":"1301902287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a5\/4bc925ea017a3c57fe00f3a5\/the-man-who-knew-too-little-mid.jpg","studio":"Regency Enterprises","genre":"Comedy","title":"The Man Who Knew Too Little","releaseDate":879465600000,"language":"en","type":"Movie","_key":"34637"} +{"label":"Murder at 1600","description":"D.C. detective Harlan Regis is called to the White House after a young woman is murdered in the White House. Regis realizes this won't be a typical investigation as he keeps running into a brick wall with the Secret Service. He is only able to get the help of Agent Chance. All of this is occurring while a hostage scandal in Korea threatens to destroy the President's term. ","id":"9415","runtime":102,"imdbId":"tt0119731","version":146,"lastModified":"1301903146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ae\/4bc925eb017a3c57fe00f3ae\/murder-at-1600-mid.jpg","genre":"Action","title":"Murder at 1600","releaseDate":861321600000,"language":"en","type":"Movie","_key":"34638"} +{"label":"Daniel Benzali","version":32,"id":"58663","lastModified":"1301901664000","name":"Daniel Benzali","type":"Person","_key":"34639"} +{"label":"Dwight H. Little","version":39,"id":"56998","lastModified":"1301901415000","name":"Dwight H. Little","type":"Person","_key":"34640"} +{"label":"Money Talks","description":"Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.","id":"9416","runtime":97,"imdbId":"tt0119695","version":93,"lastModified":"1301904234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4bc925eb017a3c57fe00f3b7\/money-talks-mid.jpg","genre":"Action","title":"Money Talks","releaseDate":872208000000,"language":"en","type":"Movie","_key":"34641"} +{"label":"Heather Locklear","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d8\/4d6850707b9aa136310005d8\/heather-locklear-profile.jpg","version":38,"id":"58691","lastModified":"1301901948000","name":"Heather Locklear","type":"Person","_key":"34642"} +{"label":"Wrongfully Accused","description":"Ryan Harrison, a violin god, superstar and sex symbol does not want to cheat on sexy Lauren Goodhue's husband with her. Mr. Goodhue is found murdered and Ryan suddenly finds himself being the main suspect. After being sentenced to death he manages to flee while being transferred to his execution site. Now, all the world is after him as he stumbles from one unfortunate incident to the next in order to prove himself innocent - by finding a mysterious one-eyed, one-armed, one-legged man...","id":"9417","runtime":87,"imdbId":"tt0120901","version":155,"lastModified":"1301902720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c5\/4bc925ec017a3c57fe00f3c5\/wrongfully-accused-mid.jpg","genre":"Action","title":"Wrongfully Accused","releaseDate":903657600000,"language":"en","type":"Movie","_key":"34643"} +{"label":"Melinda McGraw","version":33,"id":"58692","lastModified":"1301902095000","name":"Melinda McGraw","type":"Person","_key":"34644"} +{"label":"Pat Proft","version":121,"id":"12991","lastModified":"1301943858000","name":"Pat Proft","type":"Person","_key":"34645"} +{"label":"Cascadeur - Die Jagd nach dem Bernsteinzimmer","description":"No overview found.","id":"9418","runtime":106,"imdbId":"tt0135831","version":43,"lastModified":"1301905334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4aa\/4cc9db965e73d650210004aa\/cascadeur-mid.jpg","genre":"Action","title":"Cascadeur - Die Jagd nach dem Bernsteinzimmer","releaseDate":901756800000,"language":"en","type":"Movie","_key":"34646"} +{"label":"Hardy Martins","version":24,"id":"58701","lastModified":"1301901785000","name":"Hardy Martins","type":"Person","_key":"34647"} +{"label":"Andreas Hoppe","version":26,"id":"44428","lastModified":"1301901956000","name":"Andreas Hoppe","type":"Person","_key":"34648"} +{"label":"Kai Rabe gegen die Vatikankiller","description":"No overview found.","id":"9419","runtime":92,"imdbId":"tt0168023","version":33,"lastModified":"1301907410000","genre":"Comedy","title":"Kai Rabe gegen die Vatikankiller","releaseDate":912038400000,"language":"en","type":"Movie","_key":"34649"} +{"label":"Liebe Deine N\u00e4chste!","description":"No overview found.","id":"9420","runtime":94,"imdbId":"tt0140329","version":40,"lastModified":"1301906737000","genre":"Comedy","title":"Liebe Deine N\u00e4chste!","releaseDate":914457600000,"language":"en","type":"Movie","_key":"34650"} +{"label":"Lea Mornar","version":22,"id":"58377","lastModified":"1301902010000","name":"Lea Mornar","type":"Person","_key":"34651"} +{"label":"The Dinner Game","description":"Each week, Pierre and his friends organize what is called as \"un d\u00eener de cons\". Everyone brings the dumbest guy he could find as a guest. Pierre thinks his champ -Fran\u00e7ois Pignon- will steal the show.","id":"9421","runtime":80,"imdbId":"tt0119038","version":185,"lastModified":"1301907748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ce\/4bc925ed017a3c57fe00f3ce\/le-diner-de-cons-mid.jpg","genre":"Comedy","title":"The Dinner Game","releaseDate":892598400000,"language":"en","type":"Movie","_key":"34652"} +{"label":"A Civil Action","description":"Jan Schlickmann is a cynical lawyer who goes out to \"get rid of\" a case, only to find out it is potentially worth millions. The case becomes his obsession, to the extent that he is willing to give up everything - including his career and his clients' goals, in order to continue the case against all odds.","id":"9422","runtime":110,"imdbId":"tt0120633","version":141,"lastModified":"1301902797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dc\/4bc925ed017a3c57fe00f3dc\/a-civil-action-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"A Civil Action","releaseDate":914544000000,"language":"en","tagline":"Justice has its price.","type":"Movie","_key":"34653"} +{"label":"Virus","description":"When the crew of an American tugboat boards an abandoned Russian research vessel, the alien life form aboard regards them as a virus which must be destroyed.","id":"9423","runtime":99,"imdbId":"tt0120458","version":201,"lastModified":"1301902679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e5\/4bc925f0017a3c57fe00f3e5\/virus-mid.jpg","genre":"Horror","title":"Virus","releaseDate":916358400000,"language":"en","type":"Movie","_key":"34654"} +{"label":"John Bruno","version":23,"id":"58338","lastModified":"1301901827000","name":"John Bruno","type":"Person","_key":"34655"} +{"label":"Disturbing Behaviour","description":"3 Teens rebel against a dis-functional educator, who is implanting their classmates, with a mind altering chip.","id":"9424","runtime":82,"imdbId":"tt0134619","version":65,"lastModified":"1301902979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fe\/4bc925f2017a3c57fe00f3fe\/disturbing-behaviour-mid.jpg","genre":"Horror","title":"Disturbing Behaviour","releaseDate":901238400000,"language":"en","type":"Movie","_key":"34656"} +{"label":"Soldier","description":"Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.","id":"9425","runtime":88,"imdbId":"tt0120157","version":145,"lastModified":"1301903335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40f\/4bc925f3017a3c57fe00f40f\/soldier-mid.jpg","genre":"Action","title":"Soldier","releaseDate":909100800000,"language":"en","type":"Movie","_key":"34657"} +{"label":"Jason Scott Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4c933a525e73d636970000c2\/jason-scott-lee-profile.jpg","version":50,"id":"58319","lastModified":"1301901135000","name":"Jason Scott Lee","type":"Person","_key":"34658"} +{"label":"The Fly","description":"When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.","id":"9426","runtime":95,"imdbId":"tt0091064","trailer":"http:\/\/www.youtube.com\/watch?v=IidHjCm3xGI","version":294,"lastModified":"1301902101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/436\/4bc925fa017a3c57fe00f436\/the-fly-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Drama","title":"The Fly","releaseDate":524448000000,"language":"en","tagline":"Be afraid. Be very afraid.","type":"Movie","_key":"34659"} +{"label":"Joy Boushel","version":30,"id":"57626","lastModified":"1301901459000","name":"Joy Boushel","type":"Person","_key":"34660"} +{"label":"The Full Monty","description":"Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.","id":"9427","runtime":91,"imdbId":"tt0119164","version":171,"lastModified":"1301902782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/444\/4bc925fb017a3c57fe00f444\/the-full-monty-mid.jpg","genre":"Comedy","title":"The Full Monty","releaseDate":871430400000,"language":"en","tagline":"The year's most revealing comedy.","type":"Movie","_key":"34661"} +{"label":"William Snape","version":20,"id":"57628","lastModified":"1301901730000","name":"William Snape","type":"Person","_key":"34662"} +{"label":"Steve Huison","version":20,"id":"57629","lastModified":"1301901883000","name":"Steve Huison","type":"Person","_key":"34663"} +{"label":"Peter Cattaneo","version":26,"id":"57630","lastModified":"1301901537000","name":"Peter Cattaneo","type":"Person","_key":"34664"} +{"label":"The Royal Tenenbaums","description":"An estranged family of former child prodigies reunites when their father announces he has a terminal illness. ","id":"9428","runtime":110,"imdbId":"tt0265666","trailer":"http:\/\/www.youtube.com\/watch?v=HaMfV72q40U","version":172,"lastModified":"1302034598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afe\/4d2cf9787b9aa11a70000afe\/the-royal-tenenbaums-mid.jpg","genre":"Comedy","title":"The Royal Tenenbaums","releaseDate":1002240000000,"language":"en","tagline":"Family isn\u2019t a word, it\u2019s a sentence.","type":"Movie","_key":"34665"} +{"label":"A Night at the Roxbury","description":"The story of two wealthy brothers, Steve and Doug Butabi who are trying to get into the hottest club in town, The Roxbury. Unfortunately, the boys are complete and utter losers and have no chance of getting in. However, after the boys get into a little fender bender with Richard Grieco (played by himself), their luck starts to turn around. Based on the popular Saturday Night Live skit ","id":"9429","runtime":81,"imdbId":"tt0120770","trailer":"http:\/\/www.youtube.com\/watch?v=1390","version":422,"lastModified":"1301941718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/485\/4bc92604017a3c57fe00f485\/a-night-at-the-roxbury-mid.jpg","studio":"paramount pictures","genre":"Comedy","title":"A Night at the Roxbury","releaseDate":907200000000,"language":"en","tagline":"SCORE!","type":"Movie","_key":"34666"} +{"label":"John Fortenberry","version":29,"id":"58316","lastModified":"1301901602000","name":"John Fortenberry","type":"Person","_key":"34667"} +{"label":"Chris Kattan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/162\/4c3a2d765e73d671cf000162\/chris-kattan-profile.jpg","version":37,"id":"58317","lastModified":"1301901832000","name":"Chris Kattan","type":"Person","_key":"34668"} +{"label":"Go","description":"Told from three perspectives, a story of a bunch of young Californians trying to get some cash, do and deal some drugs, score money and sex in Las Vegas, and generally experience the rush of life. ","id":"9430","runtime":98,"imdbId":"tt0139239","trailer":"http:\/\/www.youtube.com\/watch?v=0KTWEFpDOis","version":264,"lastModified":"1301903687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48e\/4bc92604017a3c57fe00f48e\/go-mid.jpg","genre":"Action","title":"Go","releaseDate":923443200000,"language":"en","tagline":"A weekend wasted is never a wasted weekend.","type":"Movie","_key":"34669"} +{"label":"Desmond Askew","version":36,"id":"59284","lastModified":"1301901261000","name":"Desmond Askew","type":"Person","_key":"34670"} +{"label":"Robert Peters","version":13,"id":"155946","lastModified":"1301903522000","name":"Robert Peters","type":"Person","_key":"34671"} +{"label":"Bordello of Blood","description":"Private eye Rafe Guttman (Dennis Miller) is hired by repressed, born-again Katherine (Erika Eleniak) to find her missing bad-boy brother. The trail leads him to a whorehouse run by a thousand-year-old vampire (Angie Everhart) and secretly backed by Katherine's boss, televangelist Jimmy Current (Chris Sarandon).","id":"9431","runtime":83,"imdbId":"tt0117826","version":180,"lastModified":"1301903269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/783\/4d2f2a937b9aa125fa000783\/bordello-of-blood-mid.jpg","genre":"Horror","title":"Bordello of Blood","releaseDate":840153600000,"language":"en","type":"Movie","_key":"34672"} +{"label":"Angie Everhart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40d\/4c95be625e73d63a7600040d\/angie-everhart-profile.jpg","version":27,"id":"58312","lastModified":"1301902198000","name":"Angie Everhart","type":"Person","_key":"34673"} +{"label":"Gilbert Adler","version":50,"id":"10953","lastModified":"1301901577000","name":"Gilbert Adler","type":"Person","_key":"34674"} +{"label":"Der Campus","description":"No overview found.","id":"9432","runtime":126,"imdbId":"tt0120625","version":39,"lastModified":"1301905710000","genre":"Comedy","title":"Der Campus","releaseDate":886636800000,"language":"en","type":"Movie","_key":"34675"} +{"label":"The Edge","description":"A plane crash in the freezing Alaskan wilderness pits intellectual billionaire Charles Morse against self-satisfied fashion photographer Robert Green in a brutal struggle for survival. Each soon discovers that the greatest danger resides not in nature, but from human fear, treachery, and quite possibly murder.","id":"9433","runtime":113,"imdbId":"tt0119051","trailer":"http:\/\/www.youtube.com\/watch?v=ZDTtUSI_CGg","version":180,"lastModified":"1301902068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4c56a01a5e73d63a6e000136\/the-edge-mid.jpg","genre":"Action","title":"The Edge","releaseDate":873504000000,"language":"en","tagline":"They were fighting over a woman when the plane went down. Now, their only chance for survival is each other.","type":"Movie","_key":"34676"} +{"label":"Grosse Pointe Blank","description":"Martin Blank is a freelance hitman who starts to develop a conscience, which causes him to muff a couple of routine assignments. On the advice of his secretary and his psychiatrist, he attends his 10th year High School reunion in Grosse Pointe, Michigan.","id":"9434","runtime":107,"imdbId":"tt0119229","trailer":"http:\/\/www.youtube.com\/watch?v=IJ7AXKWmWOg","version":158,"lastModified":"1301902251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ae\/4bc92608017a3c57fe00f4ae\/grosse-pointe-blank-mid.jpg","studio":"Hollywood Pictures","genre":"Comedy","title":"Grosse Pointe Blank","releaseDate":860716800000,"language":"en","tagline":"Even a hit man deserves a second shot.","type":"Movie","_key":"34677"} +{"label":"George Armitage","version":33,"id":"58294","lastModified":"1301901646000","name":"George Armitage","type":"Person","_key":"34678"} +{"label":"Schweinchen Babe","description":"No overview found.","id":"9435","title":"Schweinchen Babe","language":"en","lastModified":"1301907182000","version":26,"type":"Movie","_key":"34679"} +{"label":"The Crow Collection","description":"A series of movies where the lead character is murdered and then brought back to life to avenge their death. Their return to the world of the living is heralded by a crow.","id":"9436","version":32,"lastModified":"1301903256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bc\/4bc9260b017a3c57fe00f4bc\/the-crow-collection-mid.jpg","title":"The Crow Collection","language":"en","type":"Movie","_key":"34680"} +{"label":"Kiss the Girls","description":"Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down \"Casanova,\" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.","id":"9437","runtime":111,"imdbId":"tt0119468","trailer":"http:\/\/www.youtube.com\/watch?v=2tJ7aqGU5G0","version":157,"lastModified":"1301902307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc9260c017a3c57fe00f4d9\/kiss-the-girls-mid.jpg","genre":"Drama","title":"Kiss the Girls","releaseDate":873849600000,"language":"en","tagline":"Smart Girls. Pretty Girls. Missing Girls.","type":"Movie","_key":"34681"} +{"label":"Alex McArthur","version":29,"id":"58293","lastModified":"1301902138000","name":"Alex McArthur","type":"Person","_key":"34682"} +{"label":"Mr. Magoo","description":"Mr.Magoo (Leslie Nielsen) a man with terrible eyesight gets caught up in a museum robbery.","id":"9438","runtime":84,"imdbId":"tt0119718","trailer":"http:\/\/www.youtube.com\/watch?v=tkMCh-vPZfE","version":179,"lastModified":"1301943859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4de\/4bc9260d017a3c57fe00f4de\/mr-magoo-mid.jpg","genre":"Comedy","title":"Mr. Magoo","releaseDate":883008000000,"language":"en","type":"Movie","_key":"34683"} +{"label":"Emie Hudson","version":6,"id":"230765","lastModified":"1301943859000","name":"Emie Hudson","type":"Person","_key":"34684"} +{"label":"Los Sin Nombre","description":"No overview found.","id":"9439","runtime":102,"imdbId":"tt0222368","version":76,"lastModified":"1301903357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e7\/4bc9260d017a3c57fe00f4e7\/los-sin-nombre-mid.jpg","genre":"Horror","title":"Los Sin Nombre","releaseDate":939340800000,"language":"en","type":"Movie","_key":"34685"} +{"label":"Emma Vilarasau","version":20,"id":"58285","lastModified":"1301901882000","name":"Emma Vilarasau","type":"Person","_key":"34686"} +{"label":"Toni Sevilla","version":20,"id":"58286","lastModified":"1301902273000","name":"Toni Sevilla","type":"Person","_key":"34687"} +{"label":"Brendan Price","version":25,"id":"58287","lastModified":"1301901848000","name":"Brendan Price","type":"Person","_key":"34688"} +{"label":"Primary Colors","description":"A man joins the political campaign of a smooth-operator candidate for president of the USA","id":"9440","runtime":143,"imdbId":"tt0119942","version":218,"lastModified":"1301903288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4c3ebc4c7b9aa13dc700008d\/primary-colors-mid.jpg","genre":"Comedy","title":"Primary Colors","releaseDate":890352000000,"language":"en","tagline":"What went down on the way to the top.","type":"Movie","_key":"34689"} +{"label":"Stepmom","description":"Jackie (Susan Sarandon) is a divorced mother of two. \r\nIsabel (Julia Roberts) is the career minded girlfriend of Jackie\u2019s ex-husband Luke (Ed Harris), forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance","id":"9441","runtime":124,"imdbId":"tt0120686","version":149,"lastModified":"1301902831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b58\/4d50435a5e73d617b7003b58\/stepmom-mid.jpg","genre":"Drama","title":"Stepmom","releaseDate":913680000000,"language":"en","tagline":"Be there for the joy. Be there for the tears. Be there for each other.","type":"Movie","_key":"34690"} +{"label":"Dead Men Don't Wear Plaid","description":"Juliet Forrest is convinced that the reported death of her father in a mountain car crash was no accident. Her father was a prominent cheese scientist working on a secret recipe. To prove it was murder, she enlists the services of private eye Rigby Reardon. He finds a slip of paper containing a list of people who are \"The Friends and Enemies of Carlotta.\"","id":"9442","runtime":85,"imdbId":"tt0083798","trailer":"http:\/\/www.youtube.com\/watch?v=ixAyGhUgr0E","version":241,"lastModified":"1301902160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4bc92612017a3c57fe00f507\/dead-men-don-t-wear-plaid-mid.jpg","genre":"Action","title":"Dead Men Don't Wear Plaid","releaseDate":390787200000,"language":"en","tagline":"Laugh...or I\u2019ll blow your lips off!","type":"Movie","_key":"34691"} +{"label":"Veronica Lake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4bd5b887017a3c658a000023\/veronica-lake-profile.jpg","version":38,"id":"79245","lastModified":"1301901358000","name":"Veronica Lake","type":"Person","_key":"34692"} +{"label":"Francis X. McCarthy","version":34,"id":"100650","lastModified":"1301902218000","name":"Francis X. McCarthy","type":"Person","_key":"34693"} +{"label":"John Miljan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a87\/4ca2c8c55e73d67049000a87\/john-miljan-profile.jpg","version":32,"id":"90000","lastModified":"1301902136000","name":"John Miljan","type":"Person","_key":"34694"} +{"label":"Chariots of Fire","description":"Based on the true story of British athletes preparing for and competing in the 1924 Summer Olympics. The film was nominated for seven Academy Awards and won four, including Best Picture.","id":"9443","runtime":123,"imdbId":"tt0082158","version":253,"lastModified":"1301901947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4cf2d3067b9aa149c4000005\/chariots-of-fire-mid.jpg","genre":"Drama","title":"Chariots of Fire","releaseDate":359164800000,"language":"en","type":"Movie","_key":"34695"} +{"label":"Hugh Hudson","version":29,"id":"58220","lastModified":"1301901485000","name":"Hugh Hudson","type":"Person","_key":"34696"} +{"label":"Cheryl Campbell","version":31,"id":"47536","lastModified":"1301902020000","name":"Cheryl Campbell","type":"Person","_key":"34697"} +{"label":"Anastasia","description":"This animated adventure retells the story of the lost daughter of Russia's last czar. The evil Rasputin places a curse on the Romanov family, and Anastasia and her grandmother, Empress Maria, get separated. After growing up in an orphanage, Anastasia encounters two Russian men seeking a reward offered by Empress Maria for the return of her granddaughter. The trio travels to Paris, where they find that the empress has grown skeptical of imposters.","id":"9444","runtime":94,"imdbId":"tt0118617","version":494,"lastModified":"1301938381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e95\/4d50aa455e73d617c1003e95\/anastasia-mid.jpg","genre":"Animation","title":"Anastasia","releaseDate":879465600000,"language":"en","tagline":"Discover the Adventure Behind the Greatest Mystery of Our Time","type":"Movie","_key":"34698"} +{"label":"Gary Goldman","version":92,"id":"12881","lastModified":"1301901351000","name":"Gary Goldman","type":"Person","_key":"34699"} +{"label":"Apt Pupil","description":"Neighborhood boy Todd Bowden (Renfro) discovers that an old man living on his block named Arthur Denker (Mackellan) is nazi war criminal. Bowden confronts Denker and offers him a deal: Bowden will not go to the authorities if Denker tells him stories of the concentration camps in WWII. Denker agrees and Bowden starts visiting him regularly. The more stories Bowden hears, the more it affects him.","id":"9445","runtime":107,"imdbId":"tt0118636","version":226,"lastModified":"1301902840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/543\/4bc9261a017a3c57fe00f543\/apt-pupil-mid.jpg","genre":"Drama","title":"Apt Pupil","releaseDate":905299200000,"language":"en","type":"Movie","_key":"34700"} +{"label":"Jungle 2 Jungle","description":"Uptight New York City executive, Michael Cromwell, pursues his soon-to-be ex-wife to South America and returns home with the son he never knew he had -- a boy raised in a tribal village in Brazil. Armed with only his blowgun, the 13-year-old Mimi-Siku discovers that the world outside his jungle home is indeed a strange place.","id":"9446","runtime":97,"imdbId":"tt0119432","version":97,"lastModified":"1301902967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/551\/4bc9261c017a3c57fe00f551\/jungle-2-jungle-mid.jpg","genre":"Adventure","title":"Jungle 2 Jungle","releaseDate":854928000000,"language":"en","tagline":"The big city is about to get a little savage.","type":"Movie","_key":"34701"} +{"label":"John Pasquin","version":31,"id":"58072","lastModified":"1301901565000","name":"John Pasquin","type":"Person","_key":"34702"} +{"label":"Babe: Pig in the City","description":"Babe, fresh from his victory in the sheepherding contest, returns to Farmer Hoggett's farm, but after Farmer Hoggett is injured and unable to work, Babe has to go to the big city to save the farm.","id":"9447","runtime":92,"imdbId":"tt0120595","version":150,"lastModified":"1301901843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55a\/4bc9261c017a3c57fe00f55a\/babe-pig-in-the-city-mid.jpg","genre":"Action","title":"Babe: Pig in the City","releaseDate":911952000000,"language":"en","type":"Movie","_key":"34703"} +{"label":"The Big Hit","description":"Melvin Smiley, a successful young hitman, is living a normal all-day life for his jewish fianc\u00e9 Pam, but kills for money in Paris' organization. In addition, he has a relationship with a beauty from the neighbourhood and gets bothered by a pimply video store guy, because he did not return \"King Kong Lives\" for two weeks.","id":"9448","runtime":91,"imdbId":"tt0120609","trailer":"http:\/\/www.youtube.com\/watch?v=n8ymxShEpUI","version":741,"lastModified":"1301937275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/343\/4d40e3955e73d65721000343\/the-big-hit-mid.jpg","studio":"Tristar Pictures","genre":"Action","title":"The Big Hit","releaseDate":893376000000,"language":"en","type":"Movie","_key":"34704"} +{"label":"Kirk Wong","version":27,"id":"58036","lastModified":"1301902055000","name":"Kirk Wong","type":"Person","_key":"34705"} +{"label":"The Borrowers","description":"The four-inch-tall Clock family secretly share a house with the normal-sized Lender family, \"borrowing\" such items as thread, safety pins, batteries and scraps of food. However, their peaceful co-existence is disturbed when evil lawyer Ocious P. Potter steals the will granting title to the house, which he plans to demolish in order to build apartments. The Lenders are forced to move, and the Clocks face the risk of being exposed to the normal-sized world.","id":"9449","runtime":86,"imdbId":"tt0118755","trailer":"http:\/\/www.youtube.com\/watch?v=xuuaRlqjlKg","version":308,"lastModified":"1301936899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b53\/4d45987d5e73d66f59001b53\/the-borrowers-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Comedy","title":"The Borrowers","releaseDate":881280000000,"language":"en","tagline":"Little People. Big Trouble. Lots of fun.","type":"Movie","_key":"34706"} +{"label":"Bradley Pierce","version":27,"id":"145151","lastModified":"1301902054000","name":"Bradley Pierce","type":"Person","_key":"34707"} +{"label":"Mark Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eeb\/4cf179da5e73d61924000eeb\/mark-williams-profile.jpg","version":48,"id":"20999","lastModified":"1301901181000","name":"Mark Williams","type":"Person","_key":"34708"} +{"label":"Brassed Off","description":"A small Yorkshire mining town is threatened with being shut down and the only hope is for the men to enter their Grimley Colliery Brass Band into a national competition. They believe they have no hope until Gloria appears carrying her Flugelhorn. At first mocked for being a woman, she soon becomes the only chance for the band to win.","id":"9450","runtime":107,"imdbId":"tt0115744","trailer":"http:\/\/www.youtube.com\/watch?v=FxU9qEltkYk","version":191,"lastModified":"1301904644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/575\/4bc9261e017a3c57fe00f575\/brassed-off-mid.jpg","genre":"Comedy","title":"Brassed Off","releaseDate":846806400000,"language":"en","type":"Movie","_key":"34709"} +{"label":"Tara Fitzgerald","version":32,"id":"47615","lastModified":"1301901444000","name":"Tara Fitzgerald","type":"Person","_key":"34710"} +{"label":"Stephen Tompkinson","version":21,"id":"47629","lastModified":"1301902006000","name":"Stephen Tompkinson","type":"Person","_key":"34711"} +{"label":"Election","description":"A high school teacher's personal life becomes complicated as he works with students during the school elections.","id":"9451","runtime":99,"imdbId":"tt0126886","trailer":"http:\/\/www.youtube.com\/watch?v=VXynyyDNz-4","version":116,"lastModified":"1301903756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/583\/4bc92622017a3c57fe00f583\/election-mid.jpg","genre":"Comedy","title":"Election","releaseDate":924825600000,"language":"en","type":"Movie","_key":"34712"} +{"label":"Jessica Campbell","version":23,"id":"58032","lastModified":"1301901681000","name":"Jessica Campbell","type":"Person","_key":"34713"} +{"label":"Bulworth","description":"A suicidally disillusioned liberal politician puts a contract out on himself and takes the opportunity to be bluntly honest with his voters by affecting the rhythms and speech of hip-hop music and culture.","id":"9452","runtime":108,"imdbId":"tt0118798","version":205,"lastModified":"1301904288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e4\/4bf11517017a3c32170000e4\/bulworth-mid.jpg","genre":"Comedy","title":"Bulworth","releaseDate":895190400000,"language":"en","type":"Movie","_key":"34714"} +{"label":"Caligula","description":"The perversion behind imperial Rome, the epic story of Rome's mad Emporer. All the details of his cruel, bizarre reign are revealed right here: His unholy sexual passion for his sister, his marriage to Rome's most infamous prostitute, his fiendishly inventive means of disposing those who would oppose him, and more.","id":"9453","runtime":210,"imdbId":"tt0080491","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/caligula","version":182,"lastModified":"1301902157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc92628017a3c57fe00f5af\/caligula-mid.jpg","genre":"Drama","title":"Caligula","releaseDate":303436800000,"language":"en","type":"Movie","_key":"34715"} +{"label":"Tinto Brass","version":53,"id":"58021","lastModified":"1301901115000","name":"Tinto Brass","type":"Person","_key":"34716"} +{"label":"Teresa Ann Savoy","version":22,"id":"58026","lastModified":"1301901280000","name":"Teresa Ann Savoy","type":"Person","_key":"34717"} +{"label":"Ever After: A Cinderella Story","description":"A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas More\u2019s Utopia. An intriguing mix of tomboyish athleticism and physical beauty, she has more than enough charm to capture the heart of a prince ... after beaning him with an apple.\n","id":"9454","runtime":121,"imdbId":"tt0120631","trailer":"http:\/\/www.youtube.com\/watch?v=1502","version":350,"lastModified":"1301901974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ce\/4bc9262e017a3c57fe00f5ce\/ever-after-mid.jpg","studio":"Specialty Films","genre":"Drama","title":"Ever After: A Cinderella Story","releaseDate":901670400000,"language":"en","tagline":"Desire. Defy. Escape.","type":"Movie","_key":"34718"} +{"label":"The Corruptor","description":"Danny is a young cop partnered with Nick, a seasoned but ethically tainted veteran. As the two try to stop a gang war in Chinatown, Danny relies on Nick but grows increasingly uncomfortable with the way Nick gets things done.","id":"9455","runtime":110,"imdbId":"tt0142192","version":115,"lastModified":"1301905196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d7\/4bc9262f017a3c57fe00f5d7\/the-corruptor-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"The Corruptor","releaseDate":918691200000,"language":"en","type":"Movie","_key":"34719"} +{"label":"The Crow: Salvation","description":"Alex Corvis returns to the world of the living to solve the murder of a young woman that he was wrongly accused of killing. Alex follows the crow into the police department's evidence room, where he discovers that Lauren was killed by a group of corrupt cops.","id":"9456","runtime":102,"imdbId":"tt0132910","version":84,"lastModified":"1301903347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4bcc2c56017a3c0f2c0000c4\/the-crow-salvation-mid.jpg","genre":"Action","title":"The Crow: Salvation","releaseDate":948585600000,"language":"en","type":"Movie","_key":"34720"} +{"label":"Bharat Nalluri","version":23,"id":"58005","lastModified":"1301901362000","name":"Bharat Nalluri","type":"Person","_key":"34721"} +{"label":"Jodi Lyn O'Keefe","version":29,"id":"58006","lastModified":"1301901956000","name":"Jodi Lyn O'Keefe","type":"Person","_key":"34722"} +{"label":"Deep Rising","description":"A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.","id":"9457","runtime":106,"imdbId":"tt0118956","version":165,"lastModified":"1301903040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ed\/4bc92630017a3c57fe00f5ed\/deep-rising-mid.jpg","studio":"Calimari Productions","genre":"Action","title":"Deep Rising","releaseDate":886118400000,"language":"en","type":"Movie","_key":"34723"} +{"label":"Desperate Measures","description":"San Francisco police officer Frank Connor is in a frantic search for a compatible bone marrow donor for his gravely ill son. There's only one catch the potential donor is convicted multiple murderer Peter McCabe who sees a trip to the hospital as the perfect opportunity to get what he wants most freedom. With McCabe's escape, the entire hospital becomes a battleground and Connor must pursue and, ironically, protect the deadly fugitive who is his son's only hope for survival.","id":"9458","runtime":100,"imdbId":"tt0118966","trailer":"http:\/\/www.youtube.com\/watch?v=d1j4oZVfQfM","version":147,"lastModified":"1301903447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2de\/4c017e40017a3c70330012de\/desperate-measures-mid.jpg","genre":"Action","title":"Desperate Measures","releaseDate":886118400000,"language":"en","type":"Movie","_key":"34724"} +{"label":"Woodstock: 3 Days of Peace & Music","description":"An intimate look at the Woodstock Music & Art Festival held in Bethel, NY in 1969, from preparation through cleanup, with historic access to insiders, blistering concert footage, and portraits of the concertgoers; negative and positive aspects are shown, from drug use by performers to naked fans sliding in the mud, from the collapse of the fences by the unexpected hordes to the surreal arrival of National Guard helicopters with food and medical assistance for the impromptu city of 500,000.","id":"9459","runtime":184,"imdbId":"tt0066580","version":167,"lastModified":"1301904573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60d\/4bc92634017a3c57fe00f60d\/woodstock-three-days-of-peace-and-love-mid.jpg","studio":"Wadleigh-Maurice","genre":"Documentary","title":"Woodstock: 3 Days of Peace & Music","releaseDate":7257600000,"language":"en","type":"Movie","_key":"34725"} +{"label":"Michael Wadleigh","version":30,"id":"57885","lastModified":"1301902194000","name":"Michael Wadleigh","type":"Person","_key":"34726"} +{"label":"Santana","version":23,"id":"57889","lastModified":"1301901814000","name":"Santana","type":"Person","_key":"34727"} +{"label":"The Who","version":22,"id":"57890","lastModified":"1301901686000","name":"The Who","type":"Person","_key":"34728"} +{"label":"Joe Cocker","version":23,"id":"57891","lastModified":"1301901832000","name":"Joe Cocker","type":"Person","_key":"34729"} +{"label":"Richie Havens","version":23,"id":"86385","lastModified":"1301902203000","name":"Richie Havens","type":"Person","_key":"34730"} +{"label":"Sha-Na-Na","version":21,"id":"86386","lastModified":"1301903072000","name":"Sha-Na-Na","type":"Person","_key":"34731"} +{"label":"Country Joe and the Fish","version":23,"id":"86387","lastModified":"1301903040000","name":"Country Joe and the Fish","type":"Person","_key":"34732"} +{"label":"Crosby Stills & Nash","version":24,"id":"86388","lastModified":"1301903070000","name":"Crosby Stills & Nash","type":"Person","_key":"34733"} +{"label":"Ten Years After","version":23,"id":"86389","lastModified":"1301902709000","name":"Ten Years After","type":"Person","_key":"34734"} +{"label":"John Sebastian","version":29,"id":"86390","lastModified":"1301902726000","name":"John Sebastian","type":"Person","_key":"34735"} +{"label":"Sly and the Family Stone","version":23,"id":"86391","lastModified":"1301903068000","name":"Sly and the Family Stone","type":"Person","_key":"34736"} +{"label":"Jimi Hendrix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aad\/4ccfb8da7b9aa16b9d000aad\/jimi-hendrix-profile.jpg","version":34,"id":"86392","lastModified":"1301901427000","name":"Jimi Hendrix","type":"Person","_key":"34737"} +{"label":"Canned Heat","version":23,"id":"86393","lastModified":"1301903044000","name":"Canned Heat","type":"Person","_key":"34738"} +{"label":"Jefferson Airplane","version":23,"id":"86394","lastModified":"1301903079000","name":"Jefferson Airplane","type":"Person","_key":"34739"} +{"label":"Janis Joplin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42d\/4c7404915e73d66ff800042d\/janis-joplin-profile.jpg","version":26,"id":"86395","lastModified":"1301902583000","name":"Janis Joplin","type":"Person","_key":"34740"} +{"label":"Black Mask","description":"A survivor of a supersoldier project must fight his former comrades as a masked hero. ","id":"9460","runtime":89,"imdbId":"tt0115693","version":147,"lastModified":"1301903056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61a\/4bc92635017a3c57fe00f61a\/hei-xia-mid.jpg","studio":"Distant Horizons","genre":"Action","title":"Black Mask","releaseDate":847497600000,"language":"en","type":"Movie","_key":"34741"} +{"label":"Karen Mok Man-Wai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/135\/4c83a4667b9aa1428e000135\/karen-mok-man-wai-profile.jpg","version":39,"id":"57831","lastModified":"1301901292000","name":"Karen Mok Man-Wai","type":"Person","_key":"34742"} +{"label":"Fran\u00e7oise Yip","version":30,"id":"10875","lastModified":"1301903108000","name":"Fran\u00e7oise Yip","type":"Person","_key":"34743"} +{"label":"Kong Lung","version":24,"id":"66011","lastModified":"1301901813000","name":"Kong Lung","type":"Person","_key":"34744"} +{"label":"Anthony Wong Chau-Sang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/250\/4d0f31597b9aa1025f003250\/anthony-wong-chau-sang-profile.jpg","version":88,"id":"66717","lastModified":"1301904099000","name":"Anthony Wong Chau-Sang","type":"Person","_key":"34745"} +{"label":"Xin Xin Xiong","version":34,"id":"65988","lastModified":"1301901324000","name":"Xin Xin Xiong","type":"Person","_key":"34746"} +{"label":"Daniel Lee","version":35,"id":"57832","lastModified":"1301901354000","name":"Daniel Lee","type":"Person","_key":"34747"} +{"label":"Enter the Dragon","description":"A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.","id":"9461","runtime":98,"imdbId":"tt0070034","version":332,"lastModified":"1301901423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bc\/4c61dfa97b9aa172dc0004bc\/enter-the-dragon-mid.jpg","genre":"Action","title":"Enter the Dragon","releaseDate":112492800000,"language":"en","tagline":"Their deadly mission: to crack the forbidden island of Han!","type":"Movie","_key":"34748"} +{"label":"Robert Clouse","version":35,"id":"57727","lastModified":"1301901470000","name":"Robert Clouse","type":"Person","_key":"34749"} +{"label":"Jim Kelly","version":30,"id":"82832","lastModified":"1301901446000","name":"Jim Kelly","type":"Person","_key":"34750"} +{"label":"Bolo Yeung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd6\/4d51aeb27b9aa13ab8010bd6\/bolo-yeung-profile.jpg","version":51,"id":"58123","lastModified":"1301901396000","name":"Bolo Yeung","type":"Person","_key":"34751"} +{"label":"Way of the Dragon","description":"Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.","id":"9462","runtime":100,"imdbId":"tt0068935","version":120,"lastModified":"1301901496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4bc9263f017a3c57fe00f657\/way-of-the-dragon-mid.jpg","genre":"Action","title":"Way of the Dragon","releaseDate":145065600000,"language":"en","type":"Movie","_key":"34752"} +{"label":"Nora Miao","version":43,"id":"57723","lastModified":"1301901198000","name":"Nora Miao","type":"Person","_key":"34753"} +{"label":"Vampire Hunter D","description":"In a far-future time ruled by the supernatural, a young girl requests the help of a vampire hunter to kill the vampire who has bitten her and thus prevent her from becoming a vampire herself.","id":"9463","runtime":80,"imdbId":"tt0090248","version":67,"lastModified":"1301903585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66e\/4bc92642017a3c57fe00f66e\/vampire-hunter-d-mid.jpg","studio":"Movic","genre":"Animation","title":"Vampire Hunter D","releaseDate":473385600000,"language":"en","type":"Movie","_key":"34754"} +{"label":"Toyoo Ashida","version":26,"id":"57730","lastModified":"1301901555000","name":"Toyoo Ashida","type":"Person","_key":"34755"} +{"label":"Carl Macek","version":25,"id":"57731","lastModified":"1301901882000","name":"Carl Macek","type":"Person","_key":"34756"} +{"label":"Kaneto Shiozawa","version":29,"id":"57733","lastModified":"1301902047000","name":"Kaneto Shiozawa","type":"Person","_key":"34757"} +{"label":"Michie Tomizawa","version":21,"id":"57734","lastModified":"1301902095000","name":"Michie Tomizawa","type":"Person","_key":"34758"} +{"label":"Seiz\u00f4 Kat\u00f4","version":18,"id":"57735","lastModified":"1301901614000","name":"Seiz\u00f4 Kat\u00f4","type":"Person","_key":"34759"} +{"label":"Keiko Toda","version":24,"id":"57736","lastModified":"1301901882000","name":"Keiko Toda","type":"Person","_key":"34760"} +{"label":"Buffalo '66","description":"Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.","id":"9464","runtime":110,"imdbId":"tt0118789","version":156,"lastModified":"1301903988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/680\/4bc92643017a3c57fe00f680\/buffalo-66-mid.jpg","genre":"Comedy","title":"Buffalo '66","releaseDate":885340800000,"language":"en","type":"Movie","_key":"34761"} +{"label":"Cookies Fortune","description":"No overview found.","id":"9465","runtime":118,"imdbId":"tt0126250","version":123,"lastModified":"1301903342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4c2fa2225e73d63cd000014c\/cookies-fortune-mid.jpg","genre":"Drama","title":"Cookies Fortune","releaseDate":916963200000,"language":"en","type":"Movie","_key":"34762"} +{"label":"Celebrity","description":"Lee Simon, unsuccessful journalist and wanna-be novelist, tries to get a foot into the door with celebrities. After divorcing his wife Robin, Lee gets to meet a lot folks of the rich and \/ or beautiful, partly through journalism, partly because he has a script to offer. But life among those from out-of-this-world is hard, and his putative success always results in defeat. Meanwhile Robin meets a very desirable TV-producer and takes the first steps in the world of celebrities herself.","id":"9466","runtime":113,"imdbId":"tt0120533","version":130,"lastModified":"1301904062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69c\/4bc92648017a3c57fe00f69c\/celebrity-mid.jpg","genre":"Comedy","title":"Celebrity","releaseDate":905126400000,"language":"en","type":"Movie","_key":"34763"} +{"label":"Margarete Steiff","description":"No overview found.","id":"9468","runtime":89,"imdbId":"tt0443432","version":43,"lastModified":"1301905334000","genre":"Drama","title":"Margarete Steiff","releaseDate":1135296000000,"language":"en","type":"Movie","_key":"34764"} +{"label":"Donald Arthur","version":20,"id":"57687","lastModified":"1301902367000","name":"Donald Arthur","type":"Person","_key":"34765"} +{"label":"He Got Game","description":"A basketball player's father must try to convince him to go to a college so he can get a shorter sentence.","id":"9469","runtime":136,"imdbId":"tt0124718","version":125,"lastModified":"1301975486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b2\/4bc92649017a3c57fe00f6b2\/he-got-game-mid.jpg","genre":"Drama","title":"He Got Game","releaseDate":893980800000,"language":"en","tagline":"The father, the son and the holy game.","type":"Movie","_key":"34766"} +{"label":"Ray Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7dd\/4d9aae307b9aa164cf0007dd\/ray-allen-profile.jpg","version":23,"id":"57685","lastModified":"1302059296000","name":"Ray Allen","type":"Person","_key":"34767"} +{"label":"Hill Harper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a2\/4cd9bad87b9aa12e7c0000a2\/hill-harper-profile.jpg","version":49,"id":"57686","lastModified":"1302059296000","name":"Hill Harper","type":"Person","_key":"34768"} +{"label":"Kung Fu Hustle","description":"In Shanghai, China in the 1940s, a wannabe gangster aspires to join the notorious \"Axe Gang\" while residents of a housing complex exhibit extraordinary powers in defending their turf.","id":"9470","runtime":95,"imdbId":"tt0373074","trailer":"http:\/\/www.youtube.com\/watch?v=PRbPXbgsKyE","version":248,"lastModified":"1302034884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4c0d4de2017a3c29a6000ca1\/9470-mid.jpg","studio":"Columbia Pictures Film Production Asia","genre":"Action","title":"Kung Fu Hustle","releaseDate":1095120000000,"language":"en","tagline":"From walking disaster to kung fu master.","type":"Movie","_key":"34769"} +{"label":"Stephen Chow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/082\/4bd3f867017a3c7fa5000082\/stephen-chow-profile.jpg","version":145,"id":"57607","lastModified":"1301904077000","name":"Stephen Chow","type":"Person","_key":"34770"} +{"label":"Xiaogang Feng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4bdddb8c017a3c35b7000030\/xiaogang-feng-profile.jpg","version":50,"id":"57608","lastModified":"1301901160000","name":"Xiaogang Feng","type":"Person","_key":"34771"} +{"label":"Shengyi Huang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4d4202665e73d653850003d1\/shengyi-huang-profile.jpg","version":30,"birthday":"413766000000","id":"83635","birthplace":"Shanghai, China","lastModified":"1301902629000","name":"Shengyi Huang","type":"Person","_key":"34772"} +{"label":"Yuen Wah","version":62,"birthday":"-610074000000","id":"57609","lastModified":"1301901131000","name":"Yuen Wah","type":"Person","_key":"34773"} +{"label":"Zhi Hua Dong","version":27,"id":"57610","lastModified":"1301901189000","name":"Zhi Hua Dong","type":"Person","_key":"34774"} +{"label":"Charlie's Angels: Full Throttle","description":"The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.","id":"9471","runtime":106,"imdbId":"tt0305357","trailer":"http:\/\/www.youtube.com\/watch?v=RA3Yw7NxKcY","version":191,"lastModified":"1301902025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f6\/4bc92654017a3c57fe00f6f6\/charlie-s-angels-full-throttle-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Charlie's Angels: Full Throttle","releaseDate":1056672000000,"language":"en","tagline":"This summer the Angels are back.","type":"Movie","_key":"34775"} +{"label":"DodgeBall: A True Underdog Story","description":"When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.","id":"9472","runtime":92,"imdbId":"tt0364725","trailer":"http:\/\/www.youtube.com\/watch?v=vzBCBcLH_Lc","version":416,"lastModified":"1301901501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/117\/4ce7176b5e73d6258f000117\/dodgeball-a-true-underdog-story-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"DodgeBall: A True Underdog Story","releaseDate":1087516800000,"language":"en","tagline":"Grab Life By The Ball","type":"Movie","_key":"34776"} +{"label":"Rawson Marshall Thurber","version":39,"id":"57633","lastModified":"1301901680000","name":"Rawson Marshall Thurber","type":"Person","_key":"34777"} +{"label":"South Park: Bigger, Longer & Uncut","description":"When the four boys see an R-rated movie featuring Canadians Terrance & Philip, they are pronounced \"corrupted\", and their parents pressure the United States to wage war against Canada.","id":"9473","runtime":81,"imdbId":"tt0158983","trailer":"http:\/\/www.youtube.com\/watch?v=JO0RArEENuY","version":288,"lastModified":"1301994348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/731\/4bc9265e017a3c57fe00f731\/south-park-bigger-longer-and-uncut-mid.jpg","studio":"Comedy Central","genre":"Animation","title":"South Park: Bigger, Longer & Uncut","releaseDate":930700800000,"language":"en","tagline":"UH-OH.","type":"Movie","_key":"34778"} +{"label":"My name is Nobody","description":"No overview found.","id":"9474","runtime":117,"imdbId":"tt0070215","version":167,"lastModified":"1301903037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4c97f7a45e73d6554a000064\/il-mio-nome-e-nessuno-mid.jpg","genre":"Action","title":"My name is Nobody","releaseDate":124588800000,"language":"en","type":"Movie","_key":"34779"} +{"label":"Tonino Valerii","version":23,"id":"57639","lastModified":"1301902382000","name":"Tonino Valerii","type":"Person","_key":"34780"} +{"label":"Scent of a Woman","description":"Charlie Simms (Chris O'Donnell) is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade (Al Pacino), a cantankerous middle-aged man who lives with his niece and her family.","id":"9475","runtime":157,"imdbId":"tt0105323","version":258,"lastModified":"1302039346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/751\/4bc92665017a3c57fe00f751\/scent-of-a-woman-mid.jpg","genre":"Comedy","title":"Scent of a Woman","releaseDate":725068800000,"language":"en","type":"Movie","_key":"34781"} +{"label":"A Knight's Tale","description":"William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.","id":"9476","runtime":132,"imdbId":"tt0183790","trailer":"http:\/\/www.youtube.com\/watch?v=zH6U5y086hw","version":483,"lastModified":"1301929285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/091\/4d1517847b9aa1147a002091\/a-knight-s-tale-mid.jpg","studio":" Columbia Pictures Corporation","genre":"Action","title":"A Knight's Tale","releaseDate":984009600000,"language":"en","tagline":"He Will Rock You","type":"Movie","_key":"34782"} +{"label":"King Arthur","description":"Historians have thought for centuries that King Arthur was only a myth, but the legend was based on a real hero, torn between his private ambitions and his public sense of duty. A reluctant leader, Arthur wishes only to leave Britain and return to the peace and stability of Rome.","id":"9477","runtime":126,"imdbId":"tt0349683","trailer":"http:\/\/www.youtube.com\/watch?v=fqZh1tg_bF4","version":206,"lastModified":"1301901571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2c\/4d90eeb45e73d65f11002d2c\/king-arthur-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"King Arthur","releaseDate":1088380800000,"language":"en","tagline":"Rule Your Fate.","type":"Movie","_key":"34783"} +{"label":"Harte Jungs","description":"No overview found.","id":"9478","runtime":95,"imdbId":"tt0239450","version":67,"lastModified":"1301904266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a4\/4bc92671017a3c57fe00f7a4\/harte-jungs-mid.jpg","genre":"Comedy","title":"Harte Jungs","releaseDate":954374400000,"language":"en","type":"Movie","_key":"34784"} +{"label":"Luise Helm","version":23,"id":"38220","lastModified":"1301901456000","name":"Luise Helm","type":"Person","_key":"34785"} +{"label":"The Nightmare Before Christmas","description":"Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.","id":"9479","runtime":76,"imdbId":"tt0107688","trailer":"http:\/\/www.youtube.com\/watch?v=1604","version":216,"lastModified":"1301901203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4bc92675017a3c57fe00f7b5\/the-nightmare-before-christmas-mid.jpg","studio":"Tim Burton Animation Company","genre":"Animation","title":"The Nightmare Before Christmas","releaseDate":750124800000,"language":"en","tagline":"A ghoulish tale with wicked humour & stunning animation.","type":"Movie","_key":"34786"} +{"label":"Henry Selick","version":41,"id":"57646","lastModified":"1301901393000","name":"Henry Selick","type":"Person","_key":"34787"} +{"label":"Daredevil","description":"He dwells in a world of external night, but the blackness is filled with sounds and scents, tastes and textures that most cannot perceive. Although attorney Matt Murdock is blind, his other four senses function with superhuman sharpness. By day, Murdock represents the downtrodden. At night he is Daredevil, a masked vigilante stalking the dark streets of the city, a relentless avenger of justice.","id":"9480","runtime":103,"imdbId":"tt0287978","trailer":"http:\/\/www.youtube.com\/watch?v=1478","version":492,"lastModified":"1301927976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09b\/4c5fe09c7b9aa172dc00009b\/daredevil-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Daredevil","releaseDate":1045180800000,"language":"en","tagline":"A Guardian Devil","type":"Movie","_key":"34788"} +{"label":"The Bone Collector","description":"Rookie cop Amelia Donaghy reluctantly teams with Lincoln Rhyme -- formerly the department's top homicide detective but now paralyzed as a result of a spinal injury -- to catch a grisly serial killer dubbed The Bone Collector. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.","id":"9481","runtime":118,"imdbId":"tt0145681","version":188,"lastModified":"1302038922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e9\/4bc9267c017a3c57fe00f7e9\/the-bone-collector-mid.jpg","genre":"Action","title":"The Bone Collector","releaseDate":935884800000,"language":"en","tagline":"Serial killer vs. forensic genius","type":"Movie","_key":"34789"} +{"label":"Mike McGlone","version":26,"id":"69298","lastModified":"1301901314000","name":"Mike McGlone","type":"Person","_key":"34790"} +{"label":"Ed O'Neill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5da\/4d5946be7b9aa16bc60035da\/ed-o-neill-profile.jpg","version":44,"id":"18977","lastModified":"1301901261000","name":"Ed O'Neill","type":"Person","_key":"34791"} +{"label":"Richard Zeman","version":25,"id":"129419","lastModified":"1301902056000","name":"Richard Zeman","type":"Person","_key":"34792"} +{"label":"Olivia Birkelund","version":25,"id":"129420","lastModified":"1301902204000","name":"Olivia Birkelund","type":"Person","_key":"34793"} +{"label":"Gary Swanson","version":24,"id":"129421","lastModified":"1301902056000","name":"Gary Swanson","type":"Person","_key":"34794"} +{"label":"James Bulleit","version":24,"id":"63342","lastModified":"1301901537000","name":"James Bulleit","type":"Person","_key":"34795"} +{"label":"Frank Fontaine","version":37,"id":"60910","lastModified":"1301901344000","name":"Frank Fontaine","type":"Person","_key":"34796"} +{"label":"Judge Dredd","description":"In a dystopian future, Dredd, the most famous judge (a cop with instant field judiciary powers) is convicted for a crime he did not commit while his murderous counterpart escapes.","id":"9482","runtime":96,"imdbId":"tt0113492","trailer":"http:\/\/www.youtube.com\/watch?v=43-BefmjMFg","version":183,"lastModified":"1301926985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09b\/4cf2e3397b9aa149c800009b\/judge-dredd-mid.jpg","studio":"Cinergi Pictures Entertainment","genre":"Action","title":"Judge Dredd","releaseDate":804470400000,"language":"en","type":"Movie","_key":"34797"} +{"label":"Schultze gets the blues","description":"No overview found.","id":"9483","runtime":114,"imdbId":"tt0388395","version":126,"lastModified":"1301905635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4d62cd447b9aa15de900014b\/schultze-gets-the-blues-mid.jpg","studio":"filmkombinat Nordost GmbH & Co. KG","genre":"Comedy","title":"Schultze gets the blues","releaseDate":1062460800000,"language":"en","type":"Movie","_key":"34798"} +{"label":"Ursula Schucht","version":21,"id":"57656","lastModified":"1301902152000","name":"Ursula Schucht","type":"Person","_key":"34799"} +{"label":"Hannelore Schubert","version":21,"id":"57657","lastModified":"1301902338000","name":"Hannelore Schubert","type":"Person","_key":"34800"} +{"label":"Ilse Holtmann","version":9,"id":"225965","lastModified":"1301904020000","name":"Ilse Holtmann","type":"Person","_key":"34801"} +{"label":"Eva Bodnar","version":9,"id":"225966","lastModified":"1301904019000","name":"Eva Bodnar","type":"Person","_key":"34802"} +{"label":"Rebellion","description":"No overview found.","id":"9484","runtime":0,"version":44,"lastModified":"1300978759000","studio":"UGC","genre":"Action","title":"Rebellion","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"34803"} +{"label":"The Fast and the Furious Collection","description":"Racing movies involving hotted up cars and girls.","id":"9485","version":49,"lastModified":"1302018315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4bc92680017a3c57fe00f81d\/the-fast-and-the-furious-collection-mid.jpg","title":"The Fast and the Furious Collection","language":"en","type":"Movie","_key":"34804"} +{"label":"Johnny English","description":"Rowan plays the eponymous lead character in a spoof spy thriller. During the course of the story we follow our hero as he attempts to single-handedly save the country from falling into the hands of a despot.","id":"9486","runtime":88,"imdbId":"tt0274166","trailer":"http:\/\/www.youtube.com\/watch?v=JSg2tgnvtgY","version":183,"lastModified":"1301902503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82a\/4bc92684017a3c57fe00f82a\/johnny-english-mid.jpg","genre":"Action","title":"Johnny English","releaseDate":1049587200000,"language":"en","tagline":"He knows no fear, he knows no danger, he knows nothing.","type":"Movie","_key":"34805"} +{"label":"Natalie Imbruglia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34e\/4d4407ef7b9aa103c800034e\/natalie-imbruglia-profile.jpg","version":26,"birthday":"160700400000","id":"57669","birthplace":"Central Coast, New South Wales, Australia","lastModified":"1301901347000","name":"Natalie Imbruglia","type":"Person","_key":"34806"} +{"label":"Douglas McFerran","version":30,"id":"61540","lastModified":"1301901489000","name":"Douglas McFerran","type":"Person","_key":"34807"} +{"label":"Nina Young","version":23,"id":"58778","lastModified":"1301901688000","name":"Nina Young","type":"Person","_key":"34808"} +{"label":"Rowland Davies","version":20,"id":"131767","lastModified":"1301902056000","name":"Rowland Davies","type":"Person","_key":"34809"} +{"label":"Philippa Fordham","version":20,"id":"131768","lastModified":"1301902056000","name":"Philippa Fordham","type":"Person","_key":"34810"} +{"label":"Simon Bernstein","version":21,"id":"131769","lastModified":"1301902170000","name":"Simon Bernstein","type":"Person","_key":"34811"} +{"label":"Peter Howitt","version":74,"id":"7791","lastModified":"1301901194000","name":"Peter Howitt","type":"Person","_key":"34812"} +{"label":"A Bug's Life","description":"Every year, a bunch of grasshoppers come to the anthill and eat what the ants have gathered for them. The \"offering\", as the ants call the ritual, is a part of their fate. One day in spring, when the offering's preparation has just been finished, Flik, unliked inventor ant, accidentally drops the whole offered seeds into the river. The grasshoppers come and give the ants a second chance to collect food until fall. Flik sets off to find bugs that are willing to fight the grasshoppers (nobody expe","id":"9487","runtime":96,"imdbId":"tt0120623","trailer":"http:\/\/www.youtube.com\/watch?v=aIS9U6zYvUo","version":231,"lastModified":"1301951118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/339\/4c284c157b9aa1446e000339\/a-bug-s-life-mid.jpg","studio":"Pixar Animation Studios","genre":"Adventure","title":"A Bug's Life","releaseDate":905731200000,"language":"en","tagline":"An epic of miniature proportions.","type":"Movie","_key":"34813"} +{"label":"Phyllis Diller","version":43,"id":"89784","lastModified":"1301901464000","name":"Phyllis Diller","type":"Person","_key":"34814"} +{"label":"Joe Ranft","version":43,"id":"7911","lastModified":"1301901296000","name":"Joe Ranft","type":"Person","_key":"34815"} +{"label":"Jonathan Harris","version":36,"id":"123037","lastModified":"1301901990000","name":"Jonathan Harris","type":"Person","_key":"34816"} +{"label":"Spy Kids 2: The Island of Lost Dreams","description":"Exploring the further adventures of Carmen and Juni Cortez, who have now joined the family spy business as Level 2 OSS agents. Their new mission is to save the world from a mad scientist living on a volcanic island populated by an imaginative menagerie of creatures. On this bizarre island, none of the Cortez's gadgets work and they must rely on their wits--and each other--to survive and save the day.","id":"9488","runtime":100,"imdbId":"tt0287717","trailer":"http:\/\/www.youtube.com\/watch?v=GBWbm7GCl7c","version":132,"lastModified":"1301902225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69a\/4d506d177b9aa13aba00d69a\/spy-kids-2-the-island-of-lost-dreams-mid.jpg","genre":"Action","title":"Spy Kids 2: The Island of Lost Dreams","releaseDate":1028678400000,"language":"en","tagline":"Little Spies. Big Attitudes","type":"Movie","_key":"34817"} +{"label":"Alexa Vega","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa2\/4d07d85e7b9aa11bc0003aa2\/alexa-vega-profile.jpg","version":44,"id":"57674","lastModified":"1301901220000","name":"Alexa Vega","type":"Person","_key":"34818"} +{"label":"Daryl Sabara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4c91dfc45e73d626f10000c2\/daryl-sabara-profile.jpg","version":50,"id":"57675","lastModified":"1301976989000","name":"Daryl Sabara","type":"Person","_key":"34819"} +{"label":"You've Got Mail","description":"In this valentine to modern romance, book superstore magnate Joe Fox and independent book shop owner Kathleen Kelly fall in love in the anonymity of the Internet -- both blissfully unaware that he's trying to put her out of business.","id":"9489","runtime":119,"imdbId":"tt0128853","trailer":"http:\/\/www.youtube.com\/watch?v=jCetfaS7GAo","version":284,"lastModified":"1301970051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a07\/4d55b2da5e73d617c7006a07\/you-ve-got-mail-mid.jpg","genre":"Comedy","title":"You've Got Mail","releaseDate":913939200000,"language":"en","tagline":"Someone you pass on the street may already be the love of your life.","type":"Movie","_key":"34820"} +{"label":"Katie Sagona","version":26,"id":"57676","lastModified":"1301901325000","name":"Katie Sagona","type":"Person","_key":"34821"} +{"label":"Half Baked","description":"Thurgood and his friends Brian and Scarface are forced into selling medical marijuana stolen from the lab where Thurgood works as a \"custodian\" (janitor) in order to bail their friend Kenny out of jail, after he accidentally killed a diabetic police horse by feeding it junk food.","id":"9490","runtime":82,"imdbId":"tt0120693","trailer":"http:\/\/www.youtube.com\/watch?v=jArRkXmGZJo","version":198,"lastModified":"1301902320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/892\/4bc92691017a3c57fe00f892\/half-baked-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Half Baked","releaseDate":884908800000,"language":"en","tagline":"They'll do anything to save their best bud.","type":"Movie","_key":"34822"} +{"label":"Tommy Chong","version":79,"id":"63208","lastModified":"1301901196000","name":"Tommy Chong","type":"Person","_key":"34823"} +{"label":"Jim Breuer","version":25,"id":"57690","lastModified":"1301901643000","name":"Jim Breuer","type":"Person","_key":"34824"} +{"label":"Clarence Williams III","version":28,"id":"15864","lastModified":"1301901559000","name":"Clarence Williams III","type":"Person","_key":"34825"} +{"label":"Laura Silverman","version":19,"id":"99007","lastModified":"1301902095000","name":"Laura Silverman","type":"Person","_key":"34826"} +{"label":"Tamra Davis","version":29,"id":"57691","lastModified":"1301901400000","name":"Tamra Davis","type":"Person","_key":"34827"} +{"label":"Blue Steel","description":"A female rookie in the police force engages in a cat and mouse game with a pistol wielding psychopath who becomes obsessed with her. ","id":"9491","runtime":102,"imdbId":"tt0099160","version":176,"lastModified":"1302001443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8aa\/4bc92693017a3c57fe00f8aa\/blue-steel-mid.jpg","genre":"Action","title":"Blue Steel","releaseDate":606009600000,"language":"en","type":"Movie","_key":"34828"} +{"label":"Twins","description":"Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.","id":"9493","runtime":105,"imdbId":"tt0096320","version":146,"lastModified":"1301903687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00d\/4bcbce1c017a3c0f3200000d\/twins-mid.jpg","genre":"Comedy","title":"Twins","releaseDate":597542400000,"language":"en","tagline":"Only their mother can tell them apart.","type":"Movie","_key":"34829"} +{"label":"Chloe Webb","version":37,"id":"43476","lastModified":"1301901604000","name":"Chloe Webb","type":"Person","_key":"34830"} +{"label":"Look Who's Talking","description":"Mollie is a single working mother who's out to find the perfect father for her child. Her baby, Mikey, prefers James, a cab driver turned babysitter who has what it takes to make them both happy. But Mollie won't even consider James. It's going to take all the tricks a baby can think of to bring them together before it's too late","id":"9494","runtime":93,"imdbId":"tt0097778","trailer":"http:\/\/www.youtube.com\/watch?v=yOB_MqcaZHw","version":161,"lastModified":"1301903493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d23\/4d47824b7b9aa15bbf00bd23\/look-who-s-talking-mid.jpg","genre":"Comedy","title":"Look Who's Talking","releaseDate":624240000000,"language":"en","tagline":"He's hip, he's cool, and he's only 3 months old.","type":"Movie","_key":"34831"} +{"label":"The Crow","description":"Exactly one year after young rock guitarist Eric Draven and his fianc\u00e9e are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.","id":"9495","runtime":102,"imdbId":"tt0109506","version":149,"lastModified":"1301949358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8de\/4bc9269a017a3c57fe00f8de\/the-crow-mid.jpg","studio":"Edward R. Pressman Film Corporation","genre":"Action","title":"The Crow","releaseDate":768614400000,"language":"en","tagline":"Real love is forever.","type":"Movie","_key":"34832"} +{"label":"Brandon Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/320\/4c57ff037b9aa151f6000320\/brandon-lee-profile.jpg","version":29,"id":"57700","lastModified":"1301901175000","name":"Brandon Lee","type":"Person","_key":"34833"} +{"label":"Rochelle Davis","version":23,"id":"57701","lastModified":"1301901514000","name":"Rochelle Davis","type":"Person","_key":"34834"} +{"label":"Laurence Mason","version":25,"id":"65141","lastModified":"1301901841000","name":"Laurence Mason","type":"Person","_key":"34835"} +{"label":"Marco Rodr\u00edguez","version":25,"id":"73132","lastModified":"1301901488000","name":"Marco Rodr\u00edguez","type":"Person","_key":"34836"} +{"label":"Werner - Volles Roo\u00e4\u00e4\u00e4","description":"No overview found.","id":"9496","runtime":77,"imdbId":"tt0184005","version":56,"lastModified":"1301906622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e8\/4bc9269b017a3c57fe00f8e8\/werner-volles-rooaaa-fakalstau-in-knollerup-mid.jpg","genre":"Animation","title":"Werner - Volles Roo\u00e4\u00e4\u00e4","releaseDate":937440000000,"language":"en","type":"Movie","_key":"34837"} +{"label":"Klaus B\u00fcchner","version":27,"id":"57711","lastModified":"1301901803000","name":"Klaus B\u00fcchner","type":"Person","_key":"34838"} +{"label":"Thomas Struck","version":20,"id":"57713","lastModified":"1301901730000","name":"Thomas Struck","type":"Person","_key":"34839"} +{"label":"Andi Feldmann","version":30,"id":"57714","lastModified":"1301901667000","name":"Andi Feldmann","type":"Person","_key":"34840"} +{"label":"Kulle Westphal","version":20,"id":"57715","lastModified":"1301901882000","name":"Kulle Westphal","type":"Person","_key":"34841"} +{"label":"R\u00f6tger Feldmann","version":27,"id":"57800","lastModified":"1301901814000","name":"R\u00f6tger Feldmann","type":"Person","_key":"34842"} +{"label":"Kleines Arschloch - Der Film","description":"No overview found.","id":"9497","runtime":82,"imdbId":"tt0119471","version":45,"lastModified":"1301905710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4bc9269e017a3c57fe00f8f1\/kleines-arschloch-der-film-mid.jpg","genre":"Animation","title":"Kleines Arschloch - Der Film","releaseDate":857606400000,"language":"en","type":"Movie","_key":"34843"} +{"label":"Arne Elsholtz","version":20,"id":"57720","lastModified":"1301901650000","name":"Arne Elsholtz","type":"Person","_key":"34844"} +{"label":"Veit Vollmer","version":21,"id":"56494","lastModified":"1301901818000","name":"Veit Vollmer","type":"Person","_key":"34845"} +{"label":"Le Divorce","description":"French vs. American social customs and behaviors are observed in a story about an American visiting her Frenchman-wed sister in Paris.","id":"9499","runtime":117,"imdbId":"tt0306734","homepage":"http:\/\/www.le-divorce.com\/","version":202,"lastModified":"1301948592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fa\/4bc9269f017a3c57fe00f8fa\/le-divorce-mid.jpg","studio":"Radar Pictures Inc.","genre":"Comedy","title":"Le Divorce","releaseDate":1060300800000,"language":"en","type":"Movie","_key":"34846"} +{"label":"Esm\u00e9e Buchet-De\u00e0k","version":20,"id":"57737","lastModified":"1301901882000","name":"Esm\u00e9e Buchet-De\u00e0k","type":"Person","_key":"34847"} +{"label":"Samuel Labarthe","version":22,"id":"57738","lastModified":"1301902312000","name":"Samuel Labarthe","type":"Person","_key":"34848"} +{"label":"Marianne Borgo","version":20,"id":"57739","lastModified":"1301901882000","name":"Marianne Borgo","type":"Person","_key":"34849"} +{"label":"Werner","description":"No overview found.","id":"9500","title":"Werner","language":"en","lastModified":"1301905822000","version":60,"type":"Movie","_key":"34850"} +{"label":"Crying Freeman","description":"A lethal assassin for a secret Chinese organisation, who sheds tears of regret each time he kills, is seen swiftly and mercilessly executing three Yakuza gangsters by a beautiful artist. She is captivated by the grace of his kill and later falls in love with him. An intense power struggle for the leadership of the Yakuza Clans ensues as they seek vengeance for the death of their leader.","id":"9501","runtime":102,"imdbId":"tt0112750","trailer":"http:\/\/www.youtube.com\/watch?v=p48T1DwvB-Y","version":133,"lastModified":"1301906662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/903\/4bc9269f017a3c57fe00f903\/crying-freeman-mid.jpg","genre":"Action","title":"Crying Freeman","releaseDate":811036800000,"language":"en","type":"Movie","_key":"34851"} +{"label":"Julie Condra","version":22,"id":"57745","lastModified":"1301901471000","name":"Julie Condra","type":"Person","_key":"34852"} +{"label":"Kung Fu Panda","description":"When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.","id":"9502","runtime":95,"imdbId":"tt0441773","trailer":"http:\/\/www.youtube.com\/watch?v=LoY2HLvOPGQ","homepage":"http:\/\/www.kungfupanda.com\/","version":322,"lastModified":"1301947898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/931\/4bc926a5017a3c57fe00f931\/kung-fu-panda-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Kung Fu Panda","releaseDate":1210809600000,"language":"en","tagline":"Prepare for awesomeness.","type":"Movie","_key":"34853"} +{"label":"Mark Osborne","version":40,"id":"57741","lastModified":"1301902115000","name":"Mark Osborne","type":"Person","_key":"34854"} +{"label":"John Stevenson","version":28,"id":"57742","lastModified":"1301901752000","name":"John Stevenson","type":"Person","_key":"34855"} +{"label":"Die P\u00e4pstin","description":"A 9th century woman of English extraction born in the German city of Ingelheim disguises herself as a man and rises through the Vatican ranks.","id":"9503","runtime":149,"imdbId":"tt0458455","homepage":"http:\/\/www.die-paepstin.de\/","version":109,"lastModified":"1301902376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4d095c0d7b9aa101d40009a6\/die-p-pstin-mid.jpg","studio":"Constantin Film","genre":"Drama","title":"Die P\u00e4pstin","releaseDate":1256169600000,"language":"en","type":"Movie","_key":"34856"} +{"label":"Glengarry Glen Ross","description":"Glengarry Glen Ross, follows the lives of four unethical Chicago real estate agents who are prepared to go to any lengths (legal or illegal) to unload undesirable real estate on unwilling prospective buyers.","id":"9504","runtime":100,"imdbId":"tt0104348","trailer":"http:\/\/www.youtube.com\/watch?v=QgAU2RJHfvE","version":172,"lastModified":"1301902344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/993\/4bc926b0017a3c57fe00f993\/glengarry-glen-ross-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Glengarry Glen Ross","releaseDate":716601600000,"language":"en","tagline":"Lie. Cheat. Steal. All in a day\u2019s work.","type":"Movie","_key":"34857"} +{"label":"Satisfaction","description":"No overview found.","id":"9505","runtime":0,"version":75,"lastModified":"1301875576000","title":"Satisfaction","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"34858"} +{"label":"Anger Management","description":"After a misunderstanding aboard an airplane that escalates out of control, the mild-mannered Dave Buznik is ordered by Judge Daniels to attend anger management sessions run by Doctor Buddy Rydell, which are filled with highly eccentric and volatile men and women. Buddy's unorthodox approach to therapy is confrontational and abrasive and Dave is bewildered by it. Then, after yet another mishap, Judge Daniels orders Dave to step up his therapy or wind up in jail. So, Buddy moves in with Dave to he","id":"9506","runtime":106,"imdbId":"tt0305224","trailer":"http:\/\/www.youtube.com\/watch?v=79uuJdcC8wQ","version":203,"lastModified":"1301906804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4bc926b2017a3c57fe00f9a1\/anger-management-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"Anger Management","releaseDate":1046822400000,"language":"en","tagline":"Feel the Love.","type":"Movie","_key":"34859"} +{"label":"Kevin Nealon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/544\/4d82caa35e73d67f83000544\/kevin-nealon-profile.jpg","version":51,"id":"58478","lastModified":"1301901312000","name":"Kevin Nealon","type":"Person","_key":"34860"} +{"label":"Derek Jeter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78a\/4d2f2aef7b9aa125f500078a\/derek-jeter-profile.jpg","version":22,"birthday":"141433200000","id":"147445","birthplace":"New Jersey","lastModified":"1301901299000","name":"Derek Jeter","type":"Person","_key":"34861"} +{"label":"Runaway","description":"In the near future, a police officer specializes in malfunctioning robots. When a robot turns out to have been programmed to kill, he begins to uncover a homicidal plot to create killer robots... and his son becomes a target.","id":"9507","runtime":100,"imdbId":"tt0088024","version":136,"lastModified":"1301904459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ae\/4bc926b4017a3c57fe00f9ae\/runaway-mid.jpg","studio":"Tristar Pictures","genre":"Drama","title":"Runaway","releaseDate":471830400000,"language":"en","type":"Movie","_key":"34862"} +{"label":"Gene Simmons","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/38b\/4c28bae67b9aa1446900038b\/gene-simmons-profile.jpg","version":34,"id":"57756","lastModified":"1301901264000","name":"Gene Simmons","type":"Person","_key":"34863"} +{"label":"Whisky mit Wodka","description":"No overview found.","id":"9508","runtime":108,"imdbId":"tt1037227","version":71,"lastModified":"1301907212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/115\/4d56adef7b9aa15cf3002115\/whisky-mit-wodka-mid.jpg","studio":"Peter Rommel Productions","title":"Whisky mit Wodka","releaseDate":1246320000000,"language":"en","type":"Movie","_key":"34864"} +{"label":"Man on Fire","description":"Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.","id":"9509","runtime":146,"imdbId":"tt0328107","trailer":"http:\/\/www.youtube.com\/watch?v=6s_-O4HglGI","version":238,"lastModified":"1301956226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4d9a628e7b9aa164c3000076\/man-on-fire-mid.jpg","studio":"Scott Free Productions","genre":"Action","title":"Man on Fire","releaseDate":1082505600000,"language":"en","tagline":"Creasy's art is death, and he is about to paint his masterpiece.","type":"Movie","_key":"34865"} +{"label":"1 1\/2 Ritter - Auf der Suche nach der hinrei\u00dfenden Herzelinde","description":"No overview found.","id":"9510","runtime":0,"imdbId":"tt1187047","version":60,"lastModified":"1301908322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c8\/4bc926bb017a3c57fe00f9c8\/1-1-2-ritter-auf-der-suche-nach-der-hinreienden-herzelinde-mid.jpg","genre":"Adventure","title":"1 1\/2 Ritter - Auf der Suche nach der hinrei\u00dfenden Herzelinde","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"34866"} +{"label":"Christof Wahl","version":22,"id":"49828","lastModified":"1301901920000","name":"Christof Wahl","type":"Person","_key":"34867"} +{"label":"Helmut Markwort","version":19,"id":"57762","lastModified":"1301901882000","name":"Helmut Markwort","type":"Person","_key":"34868"} +{"label":"Zweiohrk\u00fcken","description":"Nach zwei Jahren sind Ludo und Anna immer noch ein Paar. Allerdings nicht unbedingt ein gl\u00fcckliches, denn der Alltag hat schon l\u00e4ngst Einzug gehalten. Dieser wird j\u00e4h gest\u00f6rt, als Marie, die h\u00fcbsche Exfreundin von Ludo, auftaucht und sich daran macht, ihm erneut den Kopf zu verdrehen. Als Anna davon erf\u00e4hrt, f\u00e4ngt sie an in Ludos Privatsph\u00e4re zu schn\u00fcffeln, was sich dieser verbietet. Vehement spricht sich Ludo f\u00fcr gegenseitiges Vertrauen als Basis der Beziehung aus. Bis Ralf, Annas Ex, pl\u00f6tzlich","id":"9511","runtime":124,"imdbId":"tt1343755","version":104,"lastModified":"1301902979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e5\/4bc926bd017a3c57fe00f9e5\/zweiohrkuken-mid.jpg","studio":"barefoot films","title":"Zweiohrk\u00fcken","releaseDate":1259798400000,"language":"en","type":"Movie","_key":"34869"} +{"label":"Am Tag als Bobby Ewing starb","description":"No overview found.","id":"9512","runtime":92,"imdbId":"tt0442903","homepage":"http:\/\/www.bobbyewing.de\/index2.php","version":59,"lastModified":"1302045243000","genre":"Comedy","title":"Am Tag als Bobby Ewing starb","releaseDate":1106092800000,"language":"en","type":"Movie","_key":"34870"} +{"label":"Lars Jessen","version":23,"id":"57763","lastModified":"1301902152000","name":"Lars Jessen","type":"Person","_key":"34871"} +{"label":"Garfield 2: A Tail of Two Kitties","description":"Garfield is back and this time Garfield and his canine sidekick Odie follows their owner, Jon Arbuckle, to England, the U.K. may never recover, as Garfield is mistaken for a look-alike, regal cat who has inherited a castle.","id":"9513","runtime":78,"imdbId":"tt0455499","trailer":"http:\/\/www.youtube.com\/watch?v=BePKNUd9jvY","version":362,"lastModified":"1302044912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f2\/4bc926be017a3c57fe00f9f2\/garfield-a-tail-of-two-kitties-mid.jpg","genre":"Animation","title":"Garfield 2: A Tail of Two Kitties","releaseDate":1150329600000,"language":"en","type":"Movie","_key":"34872"} +{"label":"Werner - Das mu\u00df kesseln!!!","description":"No overview found.","id":"9514","runtime":85,"imdbId":"tt0118138","version":44,"lastModified":"1301905726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f7\/4bc926bf017a3c57fe00f9f7\/werner-das-mu-kesseln-mid.jpg","genre":"Animation","title":"Werner - Das mu\u00df kesseln!!!","releaseDate":835833600000,"language":"en","type":"Movie","_key":"34873"} +{"label":"Kulle Westphal","version":20,"id":"57793","lastModified":"1301902203000","name":"Kulle Westphal","type":"Person","_key":"34874"} +{"label":"Udo Beissel","version":20,"id":"57796","lastModified":"1301901814000","name":"Udo Beissel","type":"Person","_key":"34875"} +{"label":"The Matador","description":"The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well \u2026 once he gets acclimated to it.","id":"9515","runtime":96,"imdbId":"tt0365485","version":239,"lastModified":"1302043845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78f\/4d5606087b9aa15cf300178f\/the-matador-mid.jpg","genre":"Action","title":"The Matador","releaseDate":1115856000000,"language":"en","tagline":"A hitman and a salesman walk into a bar...","type":"Movie","_key":"34876"} +{"label":"Arlin Miller","version":20,"id":"57770","lastModified":"1301902095000","name":"Arlin Miller","type":"Person","_key":"34877"} +{"label":"Azucena Medina","version":20,"id":"57771","lastModified":"1301902095000","name":"Azucena Medina","type":"Person","_key":"34878"} +{"label":"Jonah Meyerson","version":20,"id":"57772","lastModified":"1301901882000","name":"Jonah Meyerson","type":"Person","_key":"34879"} +{"label":"Wiveca Bonerais","version":20,"id":"61057","lastModified":"1301901882000","name":"Wiveca Bonerais","type":"Person","_key":"34880"} +{"label":"Roberto Sosa","version":24,"id":"61059","lastModified":"1301901845000","name":"Roberto Sosa","type":"Person","_key":"34881"} +{"label":"Portia Dawson","version":22,"id":"61058","lastModified":"1301901763000","name":"Portia Dawson","type":"Person","_key":"34882"} +{"label":"Antonio Zavala","version":20,"id":"61060","lastModified":"1301901882000","name":"Antonio Zavala","type":"Person","_key":"34883"} +{"label":"Ramon Alvarez","version":20,"id":"61061","lastModified":"1301901882000","name":"Ramon Alvarez","type":"Person","_key":"34884"} +{"label":"Luz Maria Molina","version":20,"id":"61062","lastModified":"1301901882000","name":"Luz Maria Molina","type":"Person","_key":"34885"} +{"label":"Trio Los Rivera","version":20,"id":"61066","lastModified":"1301901882000","name":"Trio Los Rivera","type":"Person","_key":"34886"} +{"label":"Rachel Schwartz","version":20,"id":"61064","lastModified":"1301902095000","name":"Rachel Schwartz","type":"Person","_key":"34887"} +{"label":"Carolyn Horwitz","version":20,"id":"61063","lastModified":"1301901882000","name":"Carolyn Horwitz","type":"Person","_key":"34888"} +{"label":"Jorge Robles","version":20,"id":"61065","lastModified":"1301901882000","name":"Jorge Robles","type":"Person","_key":"34889"} +{"label":"Guillermo Ruiz","version":20,"id":"61068","lastModified":"1301901882000","name":"Guillermo Ruiz","type":"Person","_key":"34890"} +{"label":"Israel Tellez","version":20,"id":"61067","lastModified":"1301901882000","name":"Israel Tellez","type":"Person","_key":"34891"} +{"label":"Menace II Society","description":"Menace II Society is a coming of age tale detailing the summer after its protagonist Caine (Tyrin Turner) graduates from high school. This is Caine's story, which details real life in today's tough inner city.","id":"9516","runtime":97,"imdbId":"tt0107554","trailer":"http:\/\/www.youtube.com\/watch?v=714","version":127,"lastModified":"1302042982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4c816a005e73d65af5000018\/menace-ii-society-mid.jpg","genre":"Crime","title":"Menace II Society","releaseDate":738374400000,"language":"en","type":"Movie","_key":"34892"} +{"label":"Tyrin Turner","version":22,"id":"57773","lastModified":"1301901452000","name":"Tyrin Turner","type":"Person","_key":"34893"} +{"label":"Bully","description":"After finding himself at the constant abuse of his best friend Bobby, Marty has become fed up with his friend's twisted ways. His girlfriend, a victim of Bobby's often cruel ways, couldn't agree more and they strategize murdering Bobby. ","id":"9517","runtime":113,"imdbId":"tt0242193","version":145,"lastModified":"1301943463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a20\/4bc926c6017a3c57fe00fa20\/bully-mid.jpg","genre":"Crime","title":"Bully","releaseDate":992563200000,"language":"en","type":"Movie","_key":"34894"} +{"label":"The Transporter Collection","description":"Follows the expolits of Frank Martin, a professional \"transporter\" who delivers packages without questions.","id":"9518","version":126,"lastModified":"1302041210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/578\/4c6df77f5e73d65f7a000578\/the-transporter-collection-mid.jpg","title":"The Transporter Collection","language":"en","type":"Movie","_key":"34895"} +{"label":"Chopper","description":"Chopper tells the intense story of Mark \"Chopper\" Read, a legendary criminal who wrote his autobiography while serving a jail sentence in prison. His book, \"From the Inside\", upon which the film is based, was a best-seller.","id":"9519","runtime":94,"imdbId":"tt0221073","version":150,"lastModified":"1301942692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3b\/4bc926cc017a3c57fe00fa3b\/chopper-mid.jpg","genre":"Crime","title":"Chopper","releaseDate":965260800000,"language":"en","tagline":"Never let the truth get in the way of a good yarn!","type":"Movie","_key":"34896"} +{"label":"Simon Lyndon","version":20,"id":"57794","lastModified":"1301902187000","name":"Simon Lyndon","type":"Person","_key":"34897"} +{"label":"David Field","version":29,"id":"57795","lastModified":"1301901651000","name":"David Field","type":"Person","_key":"34898"} +{"label":"Dan Wyllie","version":18,"id":"57798","lastModified":"1301901993000","name":"Dan Wyllie","type":"Person","_key":"34899"} +{"label":"Bill Young","version":21,"id":"57799","lastModified":"1301902003000","name":"Bill Young","type":"Person","_key":"34900"} +{"label":"The Thief Lord","description":"Magic is just around the corner.","id":"9520","runtime":98,"imdbId":"tt0430674","version":130,"lastModified":"1301903510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/976\/4c5d743a7b9aa151f4000976\/the-thief-lord-mid.jpg","genre":"Adventure","title":"The Thief Lord","releaseDate":1136419200000,"language":"en","type":"Movie","_key":"34901"} +{"label":"Jasper Harris","version":23,"id":"57808","lastModified":"1301902199000","name":"Jasper Harris","type":"Person","_key":"34902"} +{"label":"Alice Connor","version":24,"id":"57809","lastModified":"1301902152000","name":"Alice Connor","type":"Person","_key":"34903"} +{"label":"George MacKay","version":15,"id":"146750","lastModified":"1301903086000","name":"George MacKay","type":"Person","_key":"34904"} +{"label":"Richard Claus","version":34,"id":"57810","lastModified":"1301901957000","name":"Richard Claus","type":"Person","_key":"34905"} +{"label":"Look Who's Talking","description":"No overview found.","id":"9521","version":127,"lastModified":"1301906773000","genre":"Comedy","title":"Look Who's Talking","language":"en","type":"Movie","_key":"34906"} +{"label":"Wedding Crashers","description":"John and his buddy Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. And their modus operandi? Crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love -- and heartache -- feels like.","id":"9522","runtime":119,"imdbId":"tt0396269","trailer":"http:\/\/www.youtube.com\/watch?v=ZeUSo8voIXM","homepage":"http:\/\/www.weddingcrashersmovie.com\/","version":270,"lastModified":"1302038486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acb\/4c71704a5e73d65f7e000acb\/wedding-crashers-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Wedding Crashers","releaseDate":1121212800000,"language":"en","tagline":"Life's A Party. Crash It.","type":"Movie","_key":"34907"} +{"label":"Keir O'Donnell","version":28,"id":"39213","lastModified":"1301901494000","name":"Keir O'Donnell","type":"Person","_key":"34908"} +{"label":"David Conrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4ceec7835e73d654f60000ff\/david-conrad-profile.jpg","version":25,"id":"43479","lastModified":"1301901487000","name":"David Conrad","type":"Person","_key":"34909"} +{"label":"Ron Canada","version":31,"id":"85170","lastModified":"1301901935000","name":"Ron Canada","type":"Person","_key":"34910"} +{"label":"Lantana","description":"The lives of strangers become intertwined when a woman is found dead, and all their secrets are exposed","id":"9523","runtime":121,"imdbId":"tt0259393","trailer":"http:\/\/www.youtube.com\/watch?v=ORI-Gx1UoAw","version":133,"lastModified":"1302067786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4bc926d5017a3c57fe00fa7a\/lantana-mid.jpg","genre":"Drama","title":"Lantana","releaseDate":991958400000,"language":"en","type":"Movie","_key":"34911"} +{"label":"Anthony LaPaglia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4c1790947b9aa109130000b2\/anthony-lapaglia-profile.jpg","version":81,"id":"57829","lastModified":"1301901520000","name":"Anthony LaPaglia","type":"Person","_key":"34912"} +{"label":"Rachael Blake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4c4a75c07b9aa11600000188\/rachael-blake-profile.jpg","version":32,"id":"57830","lastModified":"1301901427000","name":"Rachael Blake","type":"Person","_key":"34913"} +{"label":"Comedian Harmonists","description":"No overview found.","id":"9524","runtime":126,"imdbId":"tt0128133","version":75,"lastModified":"1301903439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4cdf00035e73d60f71000018\/comedian-harmonists-mid.jpg","genre":"Drama","title":"Comedian Harmonists","releaseDate":883008000000,"language":"en","type":"Movie","_key":"34914"} +{"label":"Suburbicon","description":"No overview found.","id":"9525","runtime":0,"imdbId":"tt0491175","version":64,"lastModified":"1301908440000","genre":"Comedy","title":"Suburbicon","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"34915"} +{"label":"A Prairie Home Companion","description":"A look at what goes on backstage during the last broadcast of America's most celebrated radio show, where singing cowboys Dusty and Lefty, a country music siren, and a host of others hold court","id":"9526","runtime":105,"imdbId":"tt0420087","version":182,"lastModified":"1302035561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4c3eb7147b9aa13dc900005f\/a-prairie-home-companion-mid.jpg","genre":"Comedy","title":"A Prairie Home Companion","releaseDate":1138838400000,"language":"en","type":"Movie","_key":"34916"} +{"label":"Marylouise Burke","version":23,"id":"57823","lastModified":"1301901882000","name":"Marylouise Burke","type":"Person","_key":"34917"} +{"label":"Garrison Keillor","version":27,"id":"57824","lastModified":"1301901730000","name":"Garrison Keillor","type":"Person","_key":"34918"} +{"label":"John C. Reilly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e6\/4d7222f35e73d674d50000e6\/john-c-reilly-profile.jpg","version":10,"birthday":"-145414800000","id":"227594","birthplace":"Chicago, Illinois, USA","lastModified":"1301904019000","name":"John C. Reilly","type":"Person","_key":"34919"} +{"label":"Ballermann 6","description":"No overview found.","id":"9527","runtime":95,"imdbId":"tt0118678","version":53,"lastModified":"1301904627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8c\/4bc926d9017a3c57fe00fa8c\/ballermann-6-mid.jpg","genre":"Comedy","title":"Ballermann 6","releaseDate":876960000000,"language":"en","type":"Movie","_key":"34920"} +{"label":"Tom Gerhardt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ec2\/4d1715a07b9aa1147a002ec2\/tom-gerhardt-profile.jpg","version":37,"id":"57852","lastModified":"1301901316000","name":"Tom Gerhardt","type":"Person","_key":"34921"} +{"label":"Diana Frank","version":21,"id":"57853","lastModified":"1301902367000","name":"Diana Frank","type":"Person","_key":"34922"} +{"label":"Gernot Roll","version":38,"id":"1870","lastModified":"1299930280000","name":"Gernot Roll","type":"Person","_key":"34923"} +{"label":"Ladies in Lavender","description":"Ladies in Lavender is a 2004 British drama film written and directed by Charles Dance, who based his screenplay on a short story by William J. Locke. Set in picturesque coastal Cornwall, in a tight-knit fishing village in the 1930s, Ladies in Lavender stars Judi Dench and Maggie Smith playing the leading roles of sisters Ursula (Dench) and Janet Widdington (Smith). Andrea is played by Daniel Br\u00fchl. A gifted young Polish violinist from Krakow, Andrea is bound for America when he is swept overboar","id":"9528","runtime":104,"imdbId":"tt0377084","version":144,"lastModified":"1302033394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4bc926da017a3c57fe00fa96\/ladies-lavender-mid.jpg","genre":"Drama","title":"Ladies in Lavender","releaseDate":1087171200000,"language":"en","type":"Movie","_key":"34924"} +{"label":"Candyman","description":"A children's ghost story comes to terrifying life in this gut-wrenching thriller about a graduate student whose research into modern folklore summons the spirit of the dead. Helen Lyle (Virginia Madsen) laughs when she interviews college freshmen about their superstitions. But when she hears about Candyman, a slave spirit with a hook hand who is said to haunt Chicago's notorious Cabrini-Green housing project, she thinks she has a new twist for her thesis.Braving the gang-ridden territory to visi","id":"9529","runtime":99,"imdbId":"tt0103919","version":121,"lastModified":"1302032340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fc\/4bf12913017a3c32120000fc\/candyman-mid.jpg","genre":"Horror","title":"Candyman","releaseDate":726364800000,"language":"en","tagline":"You don't have to believe... just beware.","type":"Movie","_key":"34925"} +{"label":"Bernard Rose","version":48,"id":"57851","lastModified":"1302002386000","name":"Bernard Rose","type":"Person","_key":"34926"} +{"label":"RV","description":"Climbing aboard their mammoth recreational vehicle for a cross-country road trip to the Colorado Rockies, the McNeive family -- led by dysfunctional patriarch Bob -- prepares for the adventure of a lifetime. But spending two weeks together in one seriously small space has a way of cramping their style.","id":"9530","runtime":98,"imdbId":"tt0449089","version":208,"lastModified":"1301906484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adc\/4bc926e5017a3c57fe00fadc\/rv-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"RV","releaseDate":1146182400000,"language":"en","tagline":"One Family. Eight Wheels. No brakes.","type":"Movie","_key":"34927"} +{"label":"Cheryl Hines","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4cf6c15a7b9aa1514b00108b\/cheryl-hines-profile.jpg","version":51,"id":"57854","lastModified":"1301901180000","name":"Cheryl Hines","type":"Person","_key":"34928"} +{"label":"Joanna 'JoJo' Levesque","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26e\/4d87dfa45e73d6751000026e\/joanna-jojo-levesque-profile.jpg","version":25,"id":"57855","lastModified":"1301901655000","name":"Joanna 'JoJo' Levesque","type":"Person","_key":"34929"} +{"label":"Superman III","description":"Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.","id":"9531","runtime":125,"imdbId":"tt0086393","trailer":"http:\/\/www.youtube.com\/watch?v=l58gMx3tnAw","version":213,"lastModified":"1301901969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20c\/4bccf3b2017a3c0f3200020c\/superman-iii-mid.jpg","genre":"Action","title":"Superman III","releaseDate":424569600000,"language":"en","tagline":"If the world's most powerful computer can control even Superman...no one on earth is safe.","type":"Movie","_key":"34930"} +{"label":"Final Destination","description":"As teen Alex, five classmates and their teacher board a plane for a school trip to Paris, Alex has a vision of doom and convinces his friends to deboard, saving their lives. But now, it seems Death feels cheated and is out to claim each survivor. Alex attempts to figure out Death's grand design as, one by one, the others suffer horrific fates.","id":"9532","runtime":98,"imdbId":"tt0195714","trailer":"http:\/\/www.youtube.com\/watch?v=lP4Psj7d1ZI","version":203,"lastModified":"1301901548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cf\/4d4c07b75e73d617c70013cf\/final-destination-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Final Destination","releaseDate":953164800000,"language":"en","tagline":"No accidents. No coincidences. No escapes. You can't cheat death.","type":"Movie","_key":"34931"} +{"label":"Red Dragon","description":"Former FBI agent Will Graham, who was once nearly killed by the savage Hannibal \"The Cannibal\" Lecter now has no choice but to face him again. It seems Lecter is the only one who can help Graham track down a new serial killer, Francis Dolarhyde -- but can he be trusted?","id":"9533","runtime":124,"imdbId":"tt0289765","version":273,"lastModified":"1301901880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b12\/4bc926ea017a3c57fe00fb12\/red-dragon-mid.jpg","genre":"Drama","title":"Red Dragon","releaseDate":1033344000000,"language":"en","tagline":"Before the Silence","type":"Movie","_key":"34932"} +{"label":"Crimen ferpecto","description":"A playboy has the tables turned on him when he finds himself being used as a plaything by an undesirable woman in this black comedy from Spain.","id":"9534","runtime":105,"imdbId":"tt0395125","version":81,"lastModified":"1301905674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b17\/4bc926ed017a3c57fe00fb17\/crimen-ferpecto-mid.jpg","genre":"Comedy","title":"Crimen ferpecto","releaseDate":1094774400000,"language":"en","type":"Movie","_key":"34933"} +{"label":"M\u00f3nica Cervera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/961\/4d067c005e73d621a5003961\/monica-cervera-profile.jpg","version":27,"birthday":"171241200000","id":"57860","birthplace":"M\u00e1laga, Andaluc\u00eda, Spain ","lastModified":"1301901375000","name":"M\u00f3nica Cervera","type":"Person","_key":"34934"} +{"label":"Luis Varela","version":25,"id":"57861","lastModified":"1301902193000","name":"Luis Varela","type":"Person","_key":"34935"} +{"label":"\u00c1lex de la Iglesia","version":71,"id":"57865","lastModified":"1301901164000","name":"\u00c1lex de la Iglesia","type":"Person","_key":"34936"} +{"label":"Analyze This","description":"Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the \"family,\" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.","id":"9535","runtime":103,"imdbId":"tt0122933","trailer":"http:\/\/www.youtube.com\/watch?v=UjhOHSGbId4","version":180,"lastModified":"1302035867000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b29\/4bc926ee017a3c57fe00fb29\/analyze-this-mid.jpg","studio":"Village Roadshow Pictures","genre":"Comedy","title":"Analyze This","releaseDate":920592000000,"language":"en","tagline":"New York's most powerful gangster is about to get in touch with his feelings. YOU try telling him his 50 minutes are up.","type":"Movie","_key":"34937"} +{"label":"Bio-Dome","description":"Bud and Doyle are two losers who are doing nothing with their lives. Both of their girlfriends are actively involved in saving the environment, but the two friends couldn't care less about saving the Earth. One day, when a group of scientists begin a mission to live inside a \"Bio-Dome\" for a year without outside contact, Bud and Doyle mistakenly become part of the project themselves.","id":"9536","runtime":88,"imdbId":"tt0115683","trailer":"http:\/\/www.youtube.com\/watch?v=1129","version":121,"lastModified":"1302064100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4d4a0b787b9aa13ab4000607\/bio-dome-mid.jpg","genre":"Comedy","title":"Bio-Dome","releaseDate":821404800000,"language":"en","tagline":"Bud and Doyle are here to save the world. But who's gonna save the world from Bud and Doyle?","type":"Movie","_key":"34938"} +{"label":"Pauly Shore","version":36,"id":"64998","lastModified":"1301901502000","name":"Pauly Shore","type":"Person","_key":"34939"} +{"label":"Dara Tomanovich","version":20,"id":"57868","lastModified":"1301901882000","name":"Dara Tomanovich","type":"Person","_key":"34940"} +{"label":"Kevin West","version":21,"id":"57869","lastModified":"1301901730000","name":"Kevin West","type":"Person","_key":"34941"} +{"label":"Jason Bloom","version":20,"id":"57870","lastModified":"1301901882000","name":"Jason Bloom","type":"Person","_key":"34942"} +{"label":"The Call","description":"Pirelli Film's first promotional short, starring John Malcovich and Naomi Campbell.","id":"9537","runtime":11,"imdbId":"tt0814040","version":178,"lastModified":"1301905673000","genre":"Short","title":"The Call","releaseDate":1141171200000,"language":"en","type":"Movie","_key":"34943"} +{"label":"Riccardo Francia","version":23,"id":"57876","lastModified":"1301901981000","name":"Riccardo Francia","type":"Person","_key":"34944"} +{"label":"Stefano Abbati","version":23,"id":"57877","lastModified":"1301902178000","name":"Stefano Abbati","type":"Person","_key":"34945"} +{"label":"David Johnston","version":21,"id":"141204","lastModified":"1301902219000","name":"David Johnston","type":"Person","_key":"34946"} +{"label":"Lorenzo Renzi","version":21,"id":"141205","lastModified":"1301902406000","name":"Lorenzo Renzi","type":"Person","_key":"34947"} +{"label":"Ettore D'Alessandro","version":25,"id":"141206","lastModified":"1301902406000","name":"Ettore D'Alessandro","type":"Person","_key":"34948"} +{"label":"Stefano Ambrogi","version":25,"id":"120640","lastModified":"1301902482000","name":"Stefano Ambrogi","type":"Person","_key":"34949"} +{"label":"Scanners","description":"A scientist sends a man with extraordinary psychic powers to hunt others like him.","id":"9538","runtime":103,"imdbId":"tt0081455","trailer":"http:\/\/www.youtube.com\/watch?v=PmJC3ZaXBEc","version":147,"lastModified":"1302063455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b44\/4bc926f1017a3c57fe00fb44\/scanners-mid.jpg","genre":"Horror","title":"Scanners","releaseDate":348278400000,"language":"en","type":"Movie","_key":"34950"} +{"label":"Stephen Lack","version":22,"id":"57880","lastModified":"1301902176000","name":"Stephen Lack","type":"Person","_key":"34951"} +{"label":"Martyrs","description":"A young woman's quest for revenge against the people who kidnapped and tormented her as a child leads her and a friend, who is also a victim of child abuse, on a terrifying journey into a living hell of depravity.","id":"9539","runtime":93,"imdbId":"tt1029234","trailer":"http:\/\/www.youtube.com\/watch?v=ZNM9kKo4JNU","homepage":"http:\/\/www.finelinefeatures.com\/passion\/","version":147,"lastModified":"1302063061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5a\/4bc926f8017a3c57fe00fb5a\/martyrs-mid.jpg","studio":"Eskwad","genre":"Horror","title":"Martyrs","releaseDate":1224028800000,"language":"en","tagline":"They did not finish to be alive...","type":"Movie","_key":"34952"} +{"label":"Pascal Laugier","version":29,"id":"59611","lastModified":"1301902122000","name":"Pascal Laugier","type":"Person","_key":"34953"} +{"label":"Morjana Alaoui","version":26,"id":"59612","lastModified":"1301901456000","name":"Morjana Alaoui","type":"Person","_key":"34954"} +{"label":"Mike Chute","version":24,"id":"59613","lastModified":"1301901435000","name":"Mike Chute","type":"Person","_key":"34955"} +{"label":"Catherine B\u00e9gin","version":22,"id":"59614","lastModified":"1301901548000","name":"Catherine B\u00e9gin","type":"Person","_key":"34956"} +{"label":"Robert Toupin","version":22,"id":"59615","lastModified":"1301901760000","name":"Robert Toupin","type":"Person","_key":"34957"} +{"label":"Patricia Tulasne","version":22,"id":"59616","lastModified":"1301901760000","name":"Patricia Tulasne","type":"Person","_key":"34958"} +{"label":"Juliette Gosselin","version":25,"id":"59617","lastModified":"1301901760000","name":"Juliette Gosselin","type":"Person","_key":"34959"} +{"label":"Anie Pascale","version":22,"id":"59618","lastModified":"1301901760000","name":"Anie Pascale","type":"Person","_key":"34960"} +{"label":"Dead Ringers","description":"Twin gynecologists take full advantage of the fact that nobody can tell them apart, until their relationship begins to deteriorate over a woman.","id":"9540","runtime":115,"imdbId":"tt0094964","version":152,"lastModified":"1301904498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/446\/4bf7c6ca017a3c7733000446\/dead-ringers-mid.jpg","genre":"Drama","title":"Dead Ringers","releaseDate":589680000000,"language":"en","type":"Movie","_key":"34961"} +{"label":"Heidi von Palleske","version":21,"id":"57881","lastModified":"1301902095000","name":"Heidi von Palleske","type":"Person","_key":"34962"} +{"label":"Jersey Girl","description":"Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.","id":"9541","runtime":102,"imdbId":"tt0300051","trailer":"http:\/\/www.youtube.com\/watch?v=mKKMGajqnms","version":187,"lastModified":"1301903502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17c\/4d4e985e7b9aa13aaf00a17c\/jersey-girl-mid.jpg","genre":"Comedy","title":"Jersey Girl","releaseDate":1080259200000,"language":"en","tagline":"He wanted it all...but he got more than he bargained for.","type":"Movie","_key":"34963"} +{"label":"Raquel Castro","version":29,"id":"57893","lastModified":"1301901934000","name":"Raquel Castro","type":"Person","_key":"34964"} +{"label":"The Hitcher","description":"A young man who escaped the clutches of a murderous hitch-hiker is subsequently stalked, framed for the hitcher's crimes, and has his life made into hell by the same man he escaped.","id":"9542","runtime":97,"imdbId":"tt0091209","version":87,"lastModified":"1301902478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4c193d087b9aa10d2b0000bb\/the-hitcher-mid.jpg","genre":"Horror","title":"The Hitcher","releaseDate":509328000000,"language":"en","type":"Movie","_key":"34965"} +{"label":"Robert Harmon","version":62,"id":"57895","lastModified":"1301901361000","name":"Robert Harmon","type":"Person","_key":"34966"} +{"label":"Prince of Persia: The Sands of Time","description":"A rogue prince (Jake Gyllenhaal) reluctantly joins forces with a mysterious princess (Gemma Arterton) and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time\u2014a gift from the gods that can reverse time and allow its possessor to rule the world. Based on the action-adventure video game of the same name.","id":"9543","runtime":116,"imdbId":"tt0473075","trailer":"http:\/\/www.youtube.com\/watch?v=bZ7Li5w2I-k","homepage":"http:\/\/disney.go.com\/disneypictures\/princeofpersia","version":538,"lastModified":"1301900795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/172\/4d0b165c5e73d6469a000172\/prince-of-persia-the-sands-of-time-mid.jpg","studio":"Jerry Bruckheimer Films","genre":"Action","title":"Prince of Persia: The Sands of Time","releaseDate":1274832000000,"language":"en","tagline":"Defy the Future","type":"Movie","_key":"34967"} +{"label":"Gemma Arterton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/038\/4c7c12c75e73d6474b000038\/gemma-arterton-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">English actress Gemma Arterton won her first professional role while she was still at drama school, in the BBC television drama Capturing Mary written and directed by Stephen Poliakoff. Arterton made her stage debut as Rosaline in Shakespeare's Globe Theatre's production of Love's Labour's Lost in July 2007 before graduating later that year.  Also, Gemma made her big screen debut in the 2007 film St Trinian's a","version":92,"birthday":"505868400000","id":"59620","birthplace":"Gravesend, Kent, England","lastModified":"1301906362000","name":"Gemma Arterton","type":"Person","_key":"34968"} +{"label":"FearDotCom","description":"With four corpses on his hands, New York City gumshoe Mike Reilly (Stephen Dorff) teams with Department of Health worker Terry Huston (Natascha McElhone) to track down a homicidal sadist who telecasts shocking acts of torture on the Internet. But they have their work cut out: It seems the victims' only link is that they all went toes up 48 hours after logging on a site known as feardotcom.com. Stephen Rea also stars in this gruesome thriller.","id":"9544","runtime":101,"imdbId":"tt0295254","version":104,"lastModified":"1301903841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc6\/4bc92707017a3c57fe00fbc6\/feardotcom-mid.jpg","genre":"Horror","title":"FearDotCom","releaseDate":1028851200000,"language":"en","type":"Movie","_key":"34969"} +{"label":"Amelia Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0a\/4cf142045e73d61928000c0a\/amelia-curtis-profile.jpg","version":23,"id":"57897","lastModified":"1301901691000","name":"Amelia Curtis","type":"Person","_key":"34970"} +{"label":"William Malone","version":36,"id":"57898","lastModified":"1301901402000","name":"William Malone","type":"Person","_key":"34971"} +{"label":"Sniper","description":"Tough guy Thomas Beckett is an US soldier working in the Panamanian jungle. His job is to seek out rebels and remove them using his sniper skills. Beckett is notorious for losing his partners on such missions. This time he's accompanied by crack marksman Richard Miller.","id":"9545","runtime":98,"imdbId":"tt0108171","version":235,"lastModified":"1301993560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be5\/4bc9270e017a3c57fe00fbe5\/sniper-mid.jpg","studio":"Baltimore Pictures","genre":"Action","title":"Sniper","releaseDate":728265600000,"language":"en","type":"Movie","_key":"34972"} +{"label":"Aden Young","version":23,"id":"57903","lastModified":"1301901882000","name":"Aden Young","type":"Person","_key":"34973"} +{"label":"Ken Radley","version":22,"id":"57904","lastModified":"1301902133000","name":"Ken Radley","type":"Person","_key":"34974"} +{"label":"Ricochet","description":"An attorney is terrorized by the criminal he put away years ago when he was a cop.","id":"9546","runtime":109,"imdbId":"tt0102789","trailer":"http:\/\/www.youtube.com\/watch?v=2634","version":121,"lastModified":"1301903336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf8\/4bc9270f017a3c57fe00fbf8\/ricochet-mid.jpg","studio":"Cinema Plus","genre":"Action","title":"Ricochet","releaseDate":686534400000,"language":"en","type":"Movie","_key":"34975"} +{"label":"Lindsay Wagner","version":27,"id":"57905","lastModified":"1301902095000","name":"Lindsay Wagner","type":"Person","_key":"34976"} +{"label":"Old Shatterhand","description":"No overview found.","id":"9547","runtime":122,"imdbId":"tt0057380","version":53,"lastModified":"1301903875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f5\/4cabb6225e73d64dd10000f5\/old-shatterhand-mid.jpg","genre":"Adventure","title":"Old Shatterhand","releaseDate":-179020800000,"language":"en","type":"Movie","_key":"34977"} +{"label":"The Adventures of Ford Fairlane","description":"Ford \"Mr. Rock n' Roll Detective\" Fairlane is experiencing problems, and it's not with the opposite sex. One of them is that all the rock stars pay him with drum sticks, koala bears, food processors and bicycle shorts. Another one of them is that all his employers that want him to find a girl named Zuzu Petals get killed. Why didn't he become a fisherman's detective instead?","id":"9548","runtime":104,"imdbId":"tt0098987","trailer":"http:\/\/www.youtube.com\/watch?v=j-vUpXEWpUs","version":121,"lastModified":"1301902918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c05\/4bc92710017a3c57fe00fc05\/the-adventures-of-ford-fairlane-mid.jpg","studio":"Silver Pictures","genre":"Action","title":"The Adventures of Ford Fairlane","releaseDate":647654400000,"language":"en","type":"Movie","_key":"34978"} +{"label":"Andrew Dice Clay","version":26,"id":"57906","lastModified":"1301901776000","name":"Andrew Dice Clay","type":"Person","_key":"34979"} +{"label":"Priscilla Presley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4c3f27425e73d606d40000d3\/priscilla-presley-profile.jpg","version":49,"birthday":"-776570400000","id":"12949","lastModified":"1301901290000","name":"Priscilla Presley","type":"Person","_key":"34980"} +{"label":"Morris Day","version":19,"id":"57907","lastModified":"1301901882000","name":"Morris Day","type":"Person","_key":"34981"} +{"label":"The Right Stuff","description":"Tom Wolfe's book on the history of the U.S. Space program reads like a novel, and the film has that same fictional quality. It covers the breaking of the sound barrier by Chuck Yeager to the Mercury 7 astronauts, showing that no one had a clue how to run a space program or how to select people to be in it. Thrilling, funny, charming and electrifying all at once.","id":"9549","runtime":193,"imdbId":"tt0086197","version":297,"lastModified":"1301903532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0e\/4bc92710017a3c57fe00fc0e\/the-right-stuff-mid.jpg","genre":"Drama","title":"The Right Stuff","releaseDate":435542400000,"language":"en","type":"Movie","_key":"34982"} +{"label":"House of Flying Daggers","description":"In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.","id":"9550","runtime":119,"imdbId":"tt0385004","version":197,"lastModified":"1301901661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23a\/4bf69a8c017a3c773000023a\/shi-mian-mai-fu-mid.jpg","studio":"Beijing New Picture Film Co. Ltd.","genre":"Action","title":"House of Flying Daggers","releaseDate":1084924800000,"language":"en","type":"Movie","_key":"34983"} +{"label":"Dandan Song","version":29,"id":"57912","lastModified":"1301901482000","name":"Dandan Song","type":"Person","_key":"34984"} +{"label":"Dieter - Der Film","description":"No overview found.","id":"9551","runtime":80,"imdbId":"tt0433985","version":51,"lastModified":"1301906737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3f\/4bc92718017a3c57fe00fc3f\/dieter-der-film-mid.jpg","genre":"Animation","title":"Dieter - Der Film","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"34985"} +{"label":"Dieter Bohlen","version":21,"id":"57915","lastModified":"1301901676000","name":"Dieter Bohlen","type":"Person","_key":"34986"} +{"label":"Bertram Hiese","version":20,"id":"57916","lastModified":"1301901816000","name":"Bertram Hiese","type":"Person","_key":"34987"} +{"label":"Toby Genkel","version":21,"id":"57917","lastModified":"1301901821000","name":"Toby Genkel","type":"Person","_key":"34988"} +{"label":"The Exorcist","description":"Something beyond comprehension is happening to a little girl on this street, in this house. A man has been called for as a last resort to try and save her. That man is The Exorcist.","id":"9552","runtime":132,"imdbId":"tt0070047","trailer":"http:\/\/www.youtube.com\/watch?v=Tlu2w9lX2CA","version":392,"lastModified":"1302043808000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4cec763e7b9aa12f69000038\/the-exorcist-mid.jpg","studio":"Warner Bros. Pictures","genre":"Horror","title":"The Exorcist","releaseDate":125712000000,"language":"en","tagline":"Somewhere between science and superstition, there is another world. The world of darkness.","type":"Movie","_key":"34989"} +{"label":"Kitty Winn","version":27,"id":"57921","lastModified":"1301901226000","name":"Kitty Winn","type":"Person","_key":"34990"} +{"label":"William O'Malley","version":22,"id":"65433","lastModified":"1301901431000","name":"William O'Malley","type":"Person","_key":"34991"} +{"label":"Barton Heyman","version":29,"id":"79732","lastModified":"1301901429000","name":"Barton Heyman","type":"Person","_key":"34992"} +{"label":"Peter Masterson","version":28,"id":"71732","lastModified":"1301901363000","name":"Peter Masterson","type":"Person","_key":"34993"} +{"label":"Robert Symonds","version":27,"id":"119716","lastModified":"1301901877000","name":"Robert Symonds","type":"Person","_key":"34994"} +{"label":"Titos Vandis","version":24,"id":"140177","lastModified":"1301901706000","name":"Titos Vandis","type":"Person","_key":"34995"} +{"label":"Robert Gerringer","version":28,"id":"129664","lastModified":"1301901688000","name":"Robert Gerringer","type":"Person","_key":"34996"} +{"label":"Lenin kam nur bis L\u00fcdenscheid - Meine kleine deutsche Revolution","description":"No overview found.","id":"9553","runtime":88,"imdbId":"tt1229790","homepage":"http:\/\/www.lenin-film.de","version":53,"lastModified":"1301905245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5c\/4bc9271d017a3c57fe00fc5c\/lenin-kam-nur-bis-ludenscheid-mid.jpg","studio":"WDR","genre":"Documentary","title":"Lenin kam nur bis L\u00fcdenscheid - Meine kleine deutsche Revolution","releaseDate":1202688000000,"language":"en","type":"Movie","_key":"34997"} +{"label":"Andr\u00e9 Sch\u00e4fer","version":20,"id":"57927","lastModified":"1301901785000","name":"Andr\u00e9 Sch\u00e4fer","type":"Person","_key":"34998"} +{"label":"King Lear","description":"No overview found.","id":"9554","runtime":0,"version":267,"lastModified":"1302027172000","genre":"Drama","title":"King Lear","language":"en","type":"Movie","_key":"34999"} +{"label":"Rabbit-Proof Fence","description":"In 1931, three aboriginal girls escape after being plucked from their homes to be trained as domestic staff and set off on a trek across the Outback.","id":"9555","runtime":94,"imdbId":"tt0252444","version":165,"lastModified":"1301907512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c71\/4bc92721017a3c57fe00fc71\/rabbit-proof-fence-mid.jpg","genre":"Adventure","title":"Rabbit-Proof Fence","releaseDate":1012780800000,"language":"en","tagline":"Follow Your Heart, Follow The Fence","type":"Movie","_key":"35000"} +{"label":"Everlyn Sampi","version":21,"id":"57951","lastModified":"1301902095000","name":"Everlyn Sampi","type":"Person","_key":"35001"} +{"label":"Tianna Sansbury","version":21,"id":"57952","lastModified":"1301902273000","name":"Tianna Sansbury","type":"Person","_key":"35002"} +{"label":"Laura Monaghan","version":21,"id":"57953","lastModified":"1301902273000","name":"Laura Monaghan","type":"Person","_key":"35003"} +{"label":"Darkman","description":"Dr. Peyton Westlake is on the verge of realizing a major breakthrough in synthetic skin when his laboratory is destroyed by gangsters. Having been burned beyond recognition and forever altered by an experimental medical procedure, Westlake becomes known as Darkmn, assuming alternate identities in his quest for revenge and a new life with a former love.","id":"9556","runtime":96,"imdbId":"tt0099365","trailer":"http:\/\/www.youtube.com\/watch?v=L58rdhCfDIU","version":194,"lastModified":"1301902086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7a\/4bc92721017a3c57fe00fc7a\/darkman-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Darkman","releaseDate":651456000000,"language":"en","tagline":"They destroyed eveything he had, everything he was. Now, crime has a new enemy and justice has a new face.","type":"Movie","_key":"35004"} +{"label":"Nelson Mashita","version":20,"id":"57959","lastModified":"1301902307000","name":"Nelson Mashita","type":"Person","_key":"35005"} +{"label":"Boat Trip","description":"Two straight men mistakenly end up on a \"gays only\" cruise.","id":"9557","runtime":94,"imdbId":"tt0285462","trailer":"http:\/\/www.youtube.com\/watch?v=KyOAP2UIgz4","version":164,"lastModified":"1301902513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b42\/4d44cd935e73d65c84000b42\/boat-trip-mid.jpg","genre":"Comedy","title":"Boat Trip","releaseDate":1033689600000,"language":"en","tagline":"... once you're on, you'll want to get off...","type":"Movie","_key":"35006"} +{"label":"Maurice Godin","version":23,"id":"44243","lastModified":"1301901900000","name":"Maurice Godin","type":"Person","_key":"35007"} +{"label":"Mort Nathan","version":38,"id":"57962","lastModified":"1301901511000","name":"Mort Nathan","type":"Person","_key":"35008"} +{"label":"King of New York","description":"A former drug lord returns from prison determined to wipe out all his competition and distribute the profits of his operations to New York's poor and lower classes in this stylish and ultra violent modern twist on Robin Hood.","id":"9558","runtime":103,"imdbId":"tt0099939","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/king-of-new-york","version":197,"lastModified":"1301903287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc92729017a3c57fe00fca1\/king-of-new-york-mid.jpg","genre":"Action","title":"King of New York","releaseDate":654480000000,"language":"en","type":"Movie","_key":"35009"} +{"label":"Janet Julian","version":24,"id":"59109","lastModified":"1301901614000","name":"Janet Julian","type":"Person","_key":"35010"} +{"label":"Joey Chin","version":25,"id":"59110","lastModified":"1302031948000","name":"Joey Chin","type":"Person","_key":"35011"} +{"label":"Carrie Nygren","version":23,"id":"59111","lastModified":"1301901994000","name":"Carrie Nygren","type":"Person","_key":"35012"} +{"label":"Ernest Abuba","version":22,"id":"59112","lastModified":"1301901882000","name":"Ernest Abuba","type":"Person","_key":"35013"} +{"label":"A Perfect World","description":"A kidnapped boy strikes up a friendship with his captor: an escaped convict on the run from the law, headed by an honorable U.S. Marshal. ","id":"9559","runtime":138,"imdbId":"tt0107808","trailer":"http:\/\/www.youtube.com\/watch?v=_Qm-UhA3b4g","version":158,"lastModified":"1301903536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc9272a017a3c57fe00fcaf\/a-perfect-world-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"A Perfect World","releaseDate":725846400000,"language":"en","type":"Movie","_key":"35014"} +{"label":"T.J. Lowther","version":19,"id":"64025","lastModified":"1301901882000","name":"T.J. Lowther","type":"Person","_key":"35015"} +{"label":"A Walk in the Clouds","description":"After returning from the war, Paul and a young woman meet on a bus as she's headed home from college to help with the harvest and face her \"Old World\" dad. The woman has not married but is pregnant and she thinks her father is going to kill her. Paul proposes to pose as her husband to help her face her father.","id":"9560","runtime":102,"imdbId":"tt0114887","version":223,"lastModified":"1301906240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb8\/4bc9272a017a3c57fe00fcb8\/a-walk-in-the-clouds-mid.jpg","genre":"Drama","title":"A Walk in the Clouds","releaseDate":801532800000,"language":"en","type":"Movie","_key":"35016"} +{"label":"TerrorStorm: A History of Government-Sponsored Terrorism","description":"Jones covers what he believes are terrorist attacks induced by governments throughout history, most particularly the 7 July 2005 London bombings.","id":"9561","runtime":113,"imdbId":"tt0863037","version":117,"lastModified":"1301904906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/610\/4bf3e170017a3c320d000610\/terrorstorm-a-history-of-government-sponsored-terrorism-mid.jpg","genre":"Documentary","title":"TerrorStorm: A History of Government-Sponsored Terrorism","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"35017"} +{"label":"Alex Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/143\/4bd00acf017a3c63ed000143\/alex-jones-profile.jpg","version":87,"id":"57970","lastModified":"1302034145000","name":"Alex Jones","type":"Person","_key":"35018"} +{"label":"Ray McGovern","version":20,"id":"57971","lastModified":"1301902204000","name":"Ray McGovern","type":"Person","_key":"35019"} +{"label":"Cindy Sheehan","version":20,"id":"57972","lastModified":"1301901785000","name":"Cindy Sheehan","type":"Person","_key":"35020"} +{"label":"Steven Jones","version":18,"id":"57973","lastModified":"1301902338000","name":"Steven Jones","type":"Person","_key":"35021"} +{"label":"Michael Meacher","version":20,"id":"57974","lastModified":"1301901956000","name":"Michael Meacher","type":"Person","_key":"35022"} +{"label":"Annie Machon","version":20,"id":"57975","lastModified":"1301901956000","name":"Annie Machon","type":"Person","_key":"35023"} +{"label":"Morgan Reynolds","version":20,"id":"57976","lastModified":"1301902338000","name":"Morgan Reynolds","type":"Person","_key":"35024"} +{"label":"Timeline","description":"A group of archaeological students become trapped in the past when they go there to retrieve their professor. The group must survive in 14th century France long enough to be rescued.","id":"9562","runtime":116,"imdbId":"tt0300556","version":190,"lastModified":"1301902742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc6\/4bc9272f017a3c57fe00fcc6\/timeline-mid.jpg","genre":"Action","title":"Timeline","releaseDate":1069804800000,"language":"en","type":"Movie","_key":"35025"} +{"label":"Anna Friel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a8\/4d6e3f995e73d66b2b0041a8\/anna-friel-profile.jpg","version":86,"birthday":"205974000000","id":"58016","birthplace":"Rochdale, Lancashire, England, UK","lastModified":"1301916267000","name":"Anna Friel","type":"Person","_key":"35026"} +{"label":"Ethan Embry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/676\/4d5947dc7b9aa16bca003676\/ethan-embry-profile.jpg","version":49,"id":"58019","lastModified":"1301901288000","name":"Ethan Embry","type":"Person","_key":"35027"} +{"label":"Rossif Sutherland","version":24,"id":"58014","lastModified":"1301902302000","name":"Rossif Sutherland","type":"Person","_key":"35028"} +{"label":"David La Haye","version":27,"id":"58012","lastModified":"1301902190000","name":"David La Haye","type":"Person","_key":"35029"} +{"label":"Any Given Sunday","description":"A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner\/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.","id":"9563","runtime":150,"imdbId":"tt0146838","trailer":"http:\/\/www.youtube.com\/watch?v=i7nk2Uz85Uo","version":218,"lastModified":"1301902082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/365\/4bed5d6d017a3c37a9000365\/any-given-sunday-mid.jpg","genre":"Drama","title":"Any Given Sunday","releaseDate":945302400000,"language":"en","type":"Movie","_key":"35030"} +{"label":"Asterix & Obelix take on Caesar","description":"No overview found.","id":"9564","runtime":109,"imdbId":"tt0133385","version":70,"lastModified":"1301901727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf8\/4bc92735017a3c57fe00fcf8\/asterix-et-obelix-contre-cesar-mid.jpg","genre":"Adventure","title":"Asterix & Obelix take on Caesar","releaseDate":918000000000,"language":"en","type":"Movie","_key":"35031"} +{"label":"Schule","description":"No overview found.","id":"9565","runtime":99,"imdbId":"tt0248409","version":124,"lastModified":"1301903369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03f\/4c38d0715e73d671d400003f\/schule-mid.jpg","genre":"Comedy","title":"Schule","releaseDate":976147200000,"language":"en","type":"Movie","_key":"35032"} +{"label":"Marco Petry","version":25,"id":"57982","lastModified":"1301901984000","name":"Marco Petry","type":"Person","_key":"35033"} +{"label":"Jasmin Schwiers","version":25,"id":"38458","lastModified":"1301901261000","name":"Jasmin Schwiers","type":"Person","_key":"35034"} +{"label":"The Fan","description":"He is the one they look for when the Klieg lights blaze, the one whose picture hangs on the wall. His presence hits them like a drug. He is the light and the glory, a reason to live... even die. They are the untold millions whose adoration translates into magazine covers and multi-million contracts. They are the sea of faces rendered invisible by distance, blurred together by their sheer mass, kno","id":"9566","runtime":116,"imdbId":"tt0116277","version":127,"lastModified":"1301904141000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d05\/4bc92736017a3c57fe00fd05\/the-fan-mid.jpg","genre":"Drama","title":"The Fan","releaseDate":840153600000,"language":"en","type":"Movie","_key":"35035"} +{"label":"Tears of the Sun","description":"Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission t","id":"9567","runtime":121,"imdbId":"tt0314353","trailer":"http:\/\/www.youtube.com\/watch?v=1664","version":450,"lastModified":"1301901354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfc\/4d507b597b9aa13aab00dbfc\/tears-of-the-sun-mid.jpg","genre":"Action","title":"Tears of the Sun","releaseDate":1046649600000,"language":"en","tagline":"He was trained to follow orders. He became a hero by defying them.","type":"Movie","_key":"35036"} +{"label":"The Dentist","description":"No overview found.","id":"9568","runtime":92,"imdbId":"tt0116075","version":273,"lastModified":"1301906949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d32\/4bc9273a017a3c57fe00fd32\/the-dentist-mid.jpg","genre":"Horror","title":"The Dentist","releaseDate":837648000000,"language":"en","type":"Movie","_key":"35037"} +{"label":"Linda Hoffman","version":25,"id":"58042","lastModified":"1301902391000","name":"Linda Hoffman","type":"Person","_key":"35038"} +{"label":"Michael Stadvec","version":20,"id":"58043","lastModified":"1301901994000","name":"Michael Stadvec","type":"Person","_key":"35039"} +{"label":"Tony Noakes","version":20,"id":"58044","lastModified":"1301902380000","name":"Tony Noakes","type":"Person","_key":"35040"} +{"label":"Molly Hagan","version":20,"id":"58045","lastModified":"1301902380000","name":"Molly Hagan","type":"Person","_key":"35041"} +{"label":"Brian Yuzna","version":56,"id":"27992","lastModified":"1301958739000","name":"Brian Yuzna","type":"Person","_key":"35042"} +{"label":"Hard to Kill","description":"Mason Storm, a 'go it alone' cop, is gunned down at home. The intruders kill his wife, and think they've killed both Mason and his son too. Mason is secretly taken to a hospital where he spends several years in a coma. His son meanwhile is growing up thinking his father is dead. When Mason wakes up, everyone is in danger - himself, his son, his best friend, his nurse - but most of all those who arranged for his death","id":"9569","runtime":96,"imdbId":"tt0099739","version":132,"lastModified":"1301902160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d40\/4bc9273e017a3c57fe00fd40\/hard-to-kill-mid.jpg","genre":"Action","title":"Hard to Kill","releaseDate":634521600000,"language":"en","type":"Movie","_key":"35043"} +{"label":"Bonnie Burroughs","version":22,"id":"58039","lastModified":"1301902025000","name":"Bonnie Burroughs","type":"Person","_key":"35044"} +{"label":"Bruce Malmuth","version":27,"id":"58040","lastModified":"1301901785000","name":"Bruce Malmuth","type":"Person","_key":"35045"} +{"label":"The Black Hole","description":"The explorer craft U.S.S. Palomino is returning to Earth after a fruitless 18-month search for extra-terrestrial life when the crew comes upon a supposedly lost ship, the magnificent U.S.S. Cygnus, hovering near a black hole. The ship is controlled by Dr. Hans Reinhardt and his monstrous robot companion, Maximillian. But the initial wonderment and awe the Palomino crew feel for the ship and its resistance to the power of the black hole turn to horror as they uncover Reinhardt's plans, which invo","id":"9570","runtime":98,"imdbId":"tt0078869","trailer":"http:\/\/www.youtube.com\/watch?v=qEcKHuEn1xg","version":301,"lastModified":"1301902128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d49\/4bc9273e017a3c57fe00fd49\/the-black-hole-mid.jpg","genre":"Family","title":"The Black Hole","releaseDate":314323200000,"language":"en","tagline":"A journey that begins where everything ends!","type":"Movie","_key":"35046"} +{"label":"Joseph Bottoms","version":21,"id":"58003","lastModified":"1301901442000","name":"Joseph Bottoms","type":"Person","_key":"35047"} +{"label":"Dazed and Confused","description":"A look at some Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.","id":"9571","runtime":103,"imdbId":"tt0106677","trailer":"http:\/\/www.youtube.com\/watch?v=f_eTV4lRJYU","version":315,"lastModified":"1301901952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc92740017a3c57fe00fd61\/dazed-and-confused-mid.jpg","genre":"Comedy","title":"Dazed and Confused","releaseDate":747619200000,"language":"en","tagline":"See it with a bud.","type":"Movie","_key":"35048"} +{"label":"Rory Cochrane","version":27,"id":"51792","lastModified":"1301901510000","name":"Rory Cochrane","type":"Person","_key":"35049"} +{"label":"Sasha Jenson","version":24,"id":"58000","lastModified":"1301901587000","name":"Sasha Jenson","type":"Person","_key":"35050"} +{"label":"Michelle Burke","version":27,"id":"58001","lastModified":"1301901597000","name":"Michelle Burke","type":"Person","_key":"35051"} +{"label":"Knallharte Jungs","description":"No overview found.","id":"9572","runtime":83,"imdbId":"tt0295375","version":71,"lastModified":"1301904236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6b\/4bc92742017a3c57fe00fd6b\/knallharte-jungs-mid.jpg","genre":"Comedy","title":"Knallharte Jungs","releaseDate":1016064000000,"language":"en","type":"Movie","_key":"35052"} +{"label":"Rebecca Mosselman","version":21,"id":"57998","lastModified":"1301901697000","name":"Rebecca Mosselman","type":"Person","_key":"35053"} +{"label":"Nicky Kantor","version":22,"id":"57999","lastModified":"1301901956000","name":"Nicky Kantor","type":"Person","_key":"35054"} +{"label":"Blood Work","description":"Still recovering from a heart transplant, a retired FBI profiler returns to service when his own blood analysis offers clues to the identity of a serial killer.","id":"9573","runtime":110,"imdbId":"tt0309377","version":206,"lastModified":"1301902614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17f\/4ce078cd7b9aa168af00017f\/blood-work-mid.jpg","genre":"Crime","title":"Blood Work","releaseDate":1028592000000,"language":"en","type":"Movie","_key":"35055"} +{"label":"Wanda De Jesus","version":32,"id":"57991","lastModified":"1301901445000","name":"Wanda De Jesus","type":"Person","_key":"35056"} +{"label":"Tina Lifford","version":29,"id":"57992","lastModified":"1301901650000","name":"Tina Lifford","type":"Person","_key":"35057"} +{"label":"Flubber","description":"Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air. ","id":"9574","runtime":90,"imdbId":"tt0119137","version":104,"lastModified":"1301904396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4d2b401a5e73d626a800431c\/flubber-mid.jpg","genre":"Comedy","title":"Flubber","releaseDate":879638400000,"language":"en","tagline":"Catch it if you can!","type":"Movie","_key":"35058"} +{"label":"Tootsie","description":"Desperate, he took a female role and became a star. If only he could tell the woman he loves.","id":"9576","runtime":112,"imdbId":"tt0084805","trailer":"http:\/\/www.youtube.com\/watch?v=FlXE1Yq0AnQ","version":163,"lastModified":"1301902477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb4\/4d504edc5e73d617c1003bb4\/tootsie-mid.jpg","genre":"Comedy","title":"Tootsie","releaseDate":407548800000,"language":"en","type":"Movie","_key":"35059"} +{"label":"Am Limit","description":"No overview found.","id":"9577","runtime":95,"imdbId":"tt0959282","version":95,"lastModified":"1301905641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d98\/4bc92748017a3c57fe00fd98\/am-limit-mid.jpg","genre":"Documentary","title":"Am Limit","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"35060"} +{"label":"Alexander Huber","version":20,"id":"59436","lastModified":"1301902152000","name":"Alexander Huber","type":"Person","_key":"35061"} +{"label":"Thomas Huber","version":20,"id":"59437","lastModified":"1301902152000","name":"Thomas Huber","type":"Person","_key":"35062"} +{"label":"Die wilden H\u00fchner","description":"No overview found.","id":"9578","version":34,"lastModified":"1301907368000","title":"Die wilden H\u00fchner","language":"en","type":"Movie","_key":"35063"} +{"label":"Die wilden H\u00fchner und das Leben","description":"No overview found.","id":"9579","runtime":0,"imdbId":"tt1213660","version":29,"lastModified":"1301908581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9d\/4bc92748017a3c57fe00fd9d\/die-wilden-huhner-und-das-leben-mid.jpg","studio":"Bavaria Film","genre":"Adventure","title":"Die wilden H\u00fchner und das Leben","releaseDate":1233187200000,"language":"en","type":"Movie","_key":"35064"} +{"label":"Charly","description":"No overview found.","id":"9580","runtime":95,"imdbId":"tt0494045","version":60,"lastModified":"1301908578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da6\/4bc92749017a3c57fe00fda6\/charly-mid.jpg","studio":"Sangsho Film","genre":"Drama","title":"Charly","releaseDate":1189555200000,"language":"en","type":"Movie","_key":"35065"} +{"label":"Kolia Litscher","version":20,"id":"59626","lastModified":"1301901823000","name":"Kolia Litscher","type":"Person","_key":"35066"} +{"label":"Julie-Marie Parmentier","version":25,"id":"59627","lastModified":"1301901973000","name":"Julie-Marie Parmentier","type":"Person","_key":"35067"} +{"label":"Jeanne Mauborgne","version":20,"id":"59628","lastModified":"1301901816000","name":"Jeanne Mauborgne","type":"Person","_key":"35068"} +{"label":"Abdelkader Belkhodja","version":18,"id":"59629","lastModified":"1301902185000","name":"Abdelkader Belkhodja","type":"Person","_key":"35069"} +{"label":"Philippe Chevassu","version":20,"id":"59630","lastModified":"1301901785000","name":"Philippe Chevassu","type":"Person","_key":"35070"} +{"label":"Jean-Max Causse","version":20,"id":"59631","lastModified":"1301902152000","name":"Jean-Max Causse","type":"Person","_key":"35071"} +{"label":"Camille Grynko","version":20,"id":"59632","lastModified":"1301901785000","name":"Camille Grynko","type":"Person","_key":"35072"} +{"label":"Fulltime Killer","description":"Professional assassin O has resided in an isolated world of killing and loneliness. But his life begins to change once he meets the innocent Chin; hired to clean O's apartment. However, soon the flamboyent and reckless Tok enters Chin's life with a mission--to unveil O's identity and usurp his place as the number one sharp-shooting assassin in the game.","id":"9581","runtime":102,"imdbId":"tt0286635","version":276,"lastModified":"1301906247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daf\/4bc9274a017a3c57fe00fdaf\/chuen-jik-sat-sau-mid.jpg","genre":"Action","title":"Fulltime Killer","releaseDate":996796800000,"language":"en","type":"Movie","_key":"35073"} +{"label":"Takashi Sorimachi","version":28,"id":"58050","lastModified":"1301901840000","name":"Takashi Sorimachi","type":"Person","_key":"35074"} +{"label":"Cherrie Ying","version":27,"id":"58051","lastModified":"1302052496000","name":"Cherrie Ying","type":"Person","_key":"35075"} +{"label":"Ka-Fai Wai","version":55,"id":"58052","lastModified":"1302052496000","name":"Ka-Fai Wai","type":"Person","_key":"35076"} +{"label":"A Guy Thing","description":"The morning after his bachelor party, prospective groom Paul Morse wakes up next to a beautiful girl who's not his fianc\u00e9e. Though his memory is unclear, Paul assumes he cheated on fianc\u00e9e Karen, and now must scramble to keep her from finding out. He starts with a couple of small fibs, which morph into bigger lies. Soon, it all spirals out of control, and his life becomes a series of comical misunderstandings.","id":"9582","runtime":101,"imdbId":"tt0295289","version":176,"lastModified":"1301906804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db8\/4bc9274b017a3c57fe00fdb8\/a-guy-thing-mid.jpg","genre":"Comedy","title":"A Guy Thing","releaseDate":1042761600000,"language":"en","tagline":"Boy meets girl. Boy meets girl's cousin.","type":"Movie","_key":"35077"} +{"label":"Lochlyn Munro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c15\/4d7f4f4d5e73d62828003c15\/lochlyn-munro-profile.jpg","version":50,"id":"58058","lastModified":"1301901445000","name":"Lochlyn Munro","type":"Person","_key":"35078"} +{"label":"Chris Koch","version":25,"id":"58059","lastModified":"1301901614000","name":"Chris Koch","type":"Person","_key":"35079"} +{"label":"Divine Secrets of the Ya-Ya Sisterhood","description":"A mother and daughter dispute is resolved by the \"Yaya sisterhood\" - long time friends of the mother.","id":"9583","runtime":116,"imdbId":"tt0279778","version":175,"lastModified":"1301907106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc1\/4bc9274b017a3c57fe00fdc1\/divine-secrets-of-the-ya-ya-sisterhood-mid.jpg","genre":"Comedy","title":"Divine Secrets of the Ya-Ya Sisterhood","releaseDate":1023062400000,"language":"en","tagline":"The Secret Is Out.","type":"Movie","_key":"35080"} +{"label":"Callie Khouri","version":31,"id":"17397","lastModified":"1301901444000","name":"Callie Khouri","type":"Person","_key":"35081"} +{"label":"Convoy","description":"Truckers form a mile long \"convoy\" in support of a trucker's vendetta with an abusive sheriff...Based on the country song of same title by C.W. McCall.","id":"9584","runtime":110,"imdbId":"tt0077369","version":132,"lastModified":"1301901927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcf\/4bc9274f017a3c57fe00fdcf\/convoy-mid.jpg","studio":"EMI Films Ltd.","genre":"Action","title":"Convoy","releaseDate":267840000000,"language":"en","type":"Movie","_key":"35082"} +{"label":"Madge Sinclair","version":23,"id":"58074","lastModified":"1301902357000","name":"Madge Sinclair","type":"Person","_key":"35083"} +{"label":"Not Without My Daughter","description":"No overview found.","id":"9585","runtime":116,"imdbId":"tt0102555","version":144,"lastModified":"1301950591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4d9a4be35e73d647000002a6\/not-without-my-daughter-mid.jpg","genre":"Drama","title":"Not Without My Daughter","releaseDate":663552000000,"language":"en","type":"Movie","_key":"35084"} +{"label":"Sheila Rosenthal","version":21,"id":"58078","lastModified":"1301950331000","name":"Sheila Rosenthal","type":"Person","_key":"35085"} +{"label":"Sarah Badel","version":25,"id":"58079","lastModified":"1301950331000","name":"Sarah Badel","type":"Person","_key":"35086"} +{"label":"Brian Gilbert","version":26,"id":"58080","lastModified":"1301950331000","name":"Brian Gilbert","type":"Person","_key":"35087"} +{"label":"The Bonfire of the Vanities","description":"Take one Wall Street tycoon, his Fifth Avenue mistress, a reporter hungry for fame, and make the wrong turn in The Bronx...then sit back and watch the sparks fly.","id":"9586","runtime":125,"imdbId":"tt0099165","version":188,"lastModified":"1301903336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/201\/4c6088755e73d63462000201\/the-bonfire-of-the-vanities-mid.jpg","genre":"Comedy","title":"The Bonfire of the Vanities","releaseDate":661737600000,"language":"en","type":"Movie","_key":"35088"} +{"label":"Little Women","description":"With their father away fighting in the Civil War, Joe, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household. ","id":"9587","runtime":115,"imdbId":"tt0110367","trailer":"http:\/\/www.youtube.com\/watch?v=nrRJbN17H8Y","version":122,"lastModified":"1301904499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de2\/4bc92750017a3c57fe00fde2\/little-women-mid.jpg","genre":"Drama","title":"Little Women","releaseDate":787968000000,"language":"en","tagline":"The story that has lived in our hearts for generations, now comes to the screen for the holidays.","type":"Movie","_key":"35089"} +{"label":"Gillian Armstrong","version":31,"id":"58094","lastModified":"1301901327000","name":"Gillian Armstrong","type":"Person","_key":"35090"} +{"label":"Quigley Down Under","description":"American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston.","id":"9588","runtime":119,"imdbId":"tt0102744","trailer":"http:\/\/www.youtube.com\/watch?v=xebFl_liB1E","version":161,"lastModified":"1301902951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfb\/4bc92752017a3c57fe00fdfb\/quigley-down-under-mid.jpg","genre":"Action","title":"Quigley Down Under","releaseDate":656121600000,"language":"en","type":"Movie","_key":"35091"} +{"label":"Ron Haddrick","version":25,"id":"58100","lastModified":"1301902327000","name":"Ron Haddrick","type":"Person","_key":"35092"} +{"label":"Zoo","description":"This movie portrays the drug scene in Berlin in the 70s, following tape recordings of Christiane F. 14 years old Christiane lives with her mother and little sister in a typical multi-storey apartment building in Berlin. She's fascinated by the 'Sound', a new disco with most modern equipment. Although she's legally too young, she asks a friend to take her. There she meets Detlef, who's in a clique where everybody's on drugs. Step by step she gets drawn deeper into the scene.","id":"9589","runtime":138,"imdbId":"tt0082176","version":130,"lastModified":"1301999215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e7\/4d9b0a755e73d647670007e7\/christiane-f-wir-kinder-vom-bahnhof-zoo-mid.jpg","genre":"Drama","title":"Zoo","releaseDate":355017600000,"language":"en","type":"Movie","_key":"35093"} +{"label":"Natja Brunckhorst","version":23,"id":"58105","lastModified":"1301901495000","name":"Natja Brunckhorst","type":"Person","_key":"35094"} +{"label":"Thomas Haustein","version":21,"id":"58106","lastModified":"1301901537000","name":"Thomas Haustein","type":"Person","_key":"35095"} +{"label":"Jens Kuphal","version":21,"id":"58107","lastModified":"1301901476000","name":"Jens Kuphal","type":"Person","_key":"35096"} +{"label":"Rainer Woelk","version":21,"id":"58108","lastModified":"1301901537000","name":"Rainer Woelk","type":"Person","_key":"35097"} +{"label":"The Belmont Boys","description":"No overview found.","id":"9590","runtime":0,"version":55,"lastModified":"1300978783000","studio":"Jerry Weintraub Productions","title":"The Belmont Boys","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"35098"} +{"label":"That Thing You Do!","description":"A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.","id":"9591","runtime":108,"imdbId":"tt0117887","version":148,"lastModified":"1301902975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0e\/4bc92755017a3c57fe00fe0e\/that-thing-you-do-mid.jpg","genre":"Comedy","title":"That Thing You Do!","releaseDate":842659200000,"language":"en","type":"Movie","_key":"35099"} +{"label":"Open Water 2: Adrift","description":"A weekend cruise on a luxurious party yacht goes horribly wrong for a group of old high-school friends. They forget to let the ladder down before they jump into the ocean for a swim. The boat proves impossible to climb. They are stuck in the water many miles from shore, with baby Sara left alone on board. Sara's mother Amy must contend with her aqua-phobia as well as the group's increasing desperation, as the friends begin to turn on each other. Soon the exhaustion of keeping afloat and the stru","id":"9592","runtime":94,"imdbId":"tt0470055","version":133,"lastModified":"1301902133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a8\/4d97949d5e73d623b00044a8\/open-water-2-adrift-mid.jpg","genre":"Horror","title":"Open Water 2: Adrift","releaseDate":1152489600000,"language":"en","type":"Movie","_key":"35100"} +{"label":"Richard Speight Jr.","version":21,"id":"58112","lastModified":"1301902095000","name":"Richard Speight Jr.","type":"Person","_key":"35101"} +{"label":"Niklaus Lange","version":23,"id":"58113","lastModified":"1301901941000","name":"Niklaus Lange","type":"Person","_key":"35102"} +{"label":"Ali Hillis","version":24,"id":"58114","lastModified":"1301901823000","name":"Ali Hillis","type":"Person","_key":"35103"} +{"label":"Eric Dane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/730\/4ce5957c7b9aa168b4000730\/eric-dane-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bEric Dane is an American actor; After appearing in television roles throughout the 1990s and 2000s, he became known for playing Dr. Mark \"McSteamy\" Sloan on the series Grey's Anatomy, and has recently branched into film, co-starring in Marley & Me, Valentine's Day, and Burlesque.<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=\"arial, taho","version":67,"birthday":"90111600000","id":"58115","birthplace":"San Francisco, California, USA","lastModified":"1301904069000","name":"Eric Dane","type":"Person","_key":"35104"} +{"label":"Hans Horn","version":22,"id":"58116","lastModified":"1301901730000","name":"Hans Horn","type":"Person","_key":"35105"} +{"label":"Last Action Hero","description":"Danny is obsessed with a fictional movie character action hero Jack Slater.. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.","id":"9593","runtime":130,"imdbId":"tt0107362","trailer":"http:\/\/www.youtube.com\/watch?v=hSTVmYyk5ro","version":208,"lastModified":"1301901573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2d\/4bc92758017a3c57fe00fe2d\/last-action-hero-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Last Action Hero","releaseDate":740361600000,"language":"en","tagline":"This isn't the movies anymore.","type":"Movie","_key":"35106"} +{"label":"Austin O'Brien","version":30,"id":"58119","lastModified":"1301901484000","name":"Austin O'Brien","type":"Person","_key":"35107"} +{"label":"Double Impact","description":"Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.","id":"9594","runtime":109,"imdbId":"tt0101764","trailer":"http:\/\/www.youtube.com\/watch?v=1490","version":121,"lastModified":"1301975315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3b\/4bc9275b017a3c57fe00fe3b\/double-impact-mid.jpg","studio":"stone group pictures","genre":"Action","title":"Double Impact","releaseDate":680918400000,"language":"en","type":"Movie","_key":"35108"} +{"label":"Alonna Shaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4d7230837b9aa1776200001d\/alonna-shaw-profile.jpg","version":20,"id":"106836","lastModified":"1301902636000","name":"Alonna Shaw","type":"Person","_key":"35109"} +{"label":"Corinna Everson","version":18,"id":"106837","lastModified":"1301902636000","name":"Corinna Everson","type":"Person","_key":"35110"} +{"label":"Philip Chan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/071\/4d72a0a07b9aa15b5e000071\/philip-chan-profile.jpg","version":30,"id":"70591","lastModified":"1301901804000","name":"Philip Chan","type":"Person","_key":"35111"} +{"label":"Andy Armstrong","version":25,"id":"15024","lastModified":"1301901488000","name":"Andy Armstrong","type":"Person","_key":"35112"} +{"label":"Julie Strain","version":84,"id":"80116","lastModified":"1301901809000","name":"Julie Strain","type":"Person","_key":"35113"} +{"label":"Evan Lurie","version":27,"id":"53279","lastModified":"1301901958000","name":"Evan Lurie","type":"Person","_key":"35114"} +{"label":"Alicia Stevenson","version":21,"id":"58121","lastModified":"1301901882000","name":"Alicia Stevenson","type":"Person","_key":"35115"} +{"label":"Paul Aylett","version":21,"id":"58122","lastModified":"1301901882000","name":"Paul Aylett","type":"Person","_key":"35116"} +{"label":"Hot Shots!","description":"Charlie Sheen, Lloyd Bridges, Cary Elwes, Valeria Golino and Jon Cryer co-star in director Jim Abrahams' (Airplane, Naked Gun) truly hilarious spoof of Top Gun. Recruited to join a top-secret mission for the Air Force, a renegade pilot (Sheen) finds himself coping with an incompetent admiral (Bridges) and a carefully selected squadron of flyers who are either inept or half-blind.","id":"9595","runtime":84,"imdbId":"tt0102059","trailer":"http:\/\/www.youtube.com\/watch?v=ih78dz2XyLc","version":155,"lastModified":"1301902218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e62\/4bc92762017a3c57fe00fe62\/hot-shots-mid.jpg","studio":"PolyGram Audiovisuel","genre":"Action","title":"Hot Shots!","releaseDate":680918400000,"language":"en","tagline":"The mother of all movies.","type":"Movie","_key":"35117"} +{"label":"Daniel the Wizard","description":"Evil assassins want to kill Daniel Kublbock, the third runner up for the German Idols.","id":"9596","runtime":81,"imdbId":"tt0421051","version":70,"lastModified":"1301904718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/220\/4d26b1217b9aa134d3001220\/daniel-der-zauberer-mid.jpg","studio":"Lommel Entertainment","genre":"Comedy","title":"Daniel the Wizard","releaseDate":1092268800000,"language":"en","type":"Movie","_key":"35118"} +{"label":"Daniel K\u00fcblb\u00f6ck","version":21,"id":"58125","lastModified":"1301901586000","name":"Daniel K\u00fcblb\u00f6ck","type":"Person","_key":"35119"} +{"label":"Rainer Amasreiter","version":21,"id":"58126","lastModified":"1301901998000","name":"Rainer Amasreiter","type":"Person","_key":"35120"} +{"label":"Frank Bazelt","version":21,"id":"58127","lastModified":"1301901681000","name":"Frank Bazelt","type":"Person","_key":"35121"} +{"label":"Vidocq","description":"Paris. 1830. In the heart of the town, Vidocq, a famous detective, disappeared as he fights the Alchemist, an assassin that he has been pursuing for a few months. His young biographer, Etienne Boisset, decides to have revenge on Vidocq's death and takes the investigation on...","id":"9597","runtime":100,"imdbId":"tt0164961","version":95,"lastModified":"1301902059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4bc92763017a3c57fe00fe74\/vidocq-mid.jpg","studio":"Lions Gate","genre":"Action","title":"Vidocq","releaseDate":1000857600000,"language":"en","type":"Movie","_key":"35122"} +{"label":"Babe","description":"Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be. ","id":"9598","runtime":89,"imdbId":"tt0112431","trailer":"http:\/\/www.youtube.com\/watch?v=tVxeoUtVF0o","version":194,"lastModified":"1301966273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30d\/4cb1d2287b9aa1263d00030d\/babe-mid.jpg","genre":"Action","title":"Babe","releaseDate":807494400000,"language":"en","tagline":"A little pig goes a long way.","type":"Movie","_key":"35123"} +{"label":"Christine Cavanaugh","version":23,"id":"58136","lastModified":"1301966272000","name":"Christine Cavanaugh","type":"Person","_key":"35124"} +{"label":"Chris Noonan","version":29,"id":"58137","lastModified":"1301966272000","name":"Chris Noonan","type":"Person","_key":"35125"} +{"label":"The Blob","description":"Remake of the 1958 horror sci-fi about a deadly blob which is the spawn of a secret government germ warfare project which consumes everyone in its path. Teenagers try in vain to warn the townsfolk, who refuse to take them seriously, while government agents try to cover up the evidence and confine the creature.","id":"9599","runtime":95,"imdbId":"tt0094761","trailer":"http:\/\/www.youtube.com\/watch?v=On3UO5VG5OY","version":149,"lastModified":"1301906658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e86\/4bc92767017a3c57fe00fe86\/the-blob-mid.jpg","studio":"Tri Star","genre":"Horror","title":"The Blob","releaseDate":586742400000,"language":"en","tagline":"Scream now, while there's still room to breathe.","type":"Movie","_key":"35126"} +{"label":"Donovan Leitch","version":23,"id":"58141","lastModified":"1301902125000","name":"Donovan Leitch","type":"Person","_key":"35127"} +{"label":"Big Momma's House","description":"When a street-smart FBI agent is sent to Georgia to protect a beautiful single mother and her son from an escaped convict, he is forced to impersonate a crass Southern granny known as Big Momma in order to remain incognito. ","id":"9600","runtime":98,"imdbId":"tt0208003","trailer":"http:\/\/www.youtube.com\/watch?v=r8tYbSE8fA4","version":168,"lastModified":"1301907535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd8\/4d3f628f5e73d622cf004cd8\/big-momma-s-house-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Big Momma's House","releaseDate":959731200000,"language":"en","type":"Movie","_key":"35128"} +{"label":"Raja Gosnell","version":84,"id":"1215","lastModified":"1300041847000","name":"Raja Gosnell","type":"Person","_key":"35129"} +{"label":"Jascha Washington","version":25,"id":"58147","lastModified":"1301903109000","name":"Jascha Washington","type":"Person","_key":"35130"} +{"label":"Erkan & Stefan","description":"No overview found.","id":"9601","runtime":83,"imdbId":"tt0216741","version":36,"lastModified":"1301905724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea3\/4bc92769017a3c57fe00fea3\/erkan-und-stefan-mid.jpg","genre":"Comedy","title":"Erkan & Stefan","releaseDate":946684800000,"language":"en","type":"Movie","_key":"35131"} +{"label":"Coming to America","description":"Heir to the throne of Zamunda, the prince leaves the tropical paradise of Zamunda and goes in search of his queen. What better place than the city of Queens, New York to find a bride. Joined with his loyal servant and friend Akeem and Semmi attempt to blend in as ordinary Americans and begin the dating.","id":"9602","runtime":116,"imdbId":"tt0094898","trailer":"http:\/\/www.youtube.com\/watch?v=vPE4OCeKt2k","version":235,"lastModified":"1301927996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a8\/4d5fd4b97b9aa154bf0033a8\/coming-to-america-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Coming to America","releaseDate":583545600000,"language":"en","tagline":"The Four Funniest Men in America are Eddie Murphy.","type":"Movie","_key":"35132"} +{"label":"Shari Headley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36a\/4d8d43867b9aa1675b00036a\/shari-headley-profile.jpg","version":18,"birthday":"-172458000000","id":"155783","birthplace":"Queens, New York USA","lastModified":"1301903514000","name":"Shari Headley","type":"Person","_key":"35133"} +{"label":"Clueless","description":"Clueless follows the misadventures of meddlesome Beverly Hills high schooler Cher, who gets more than she bargained for when she gives a fashion-challenged student a makeover.","id":"9603","runtime":93,"imdbId":"tt0112697","trailer":"http:\/\/www.youtube.com\/watch?v=yHDcD_xhwAo","version":169,"lastModified":"1302036442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed2\/4bc92770017a3c57fe00fed2\/clueless-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Clueless","releaseDate":806112000000,"language":"en","tagline":"Sex. Clothes. Popularity. Is there a problem here?","type":"Movie","_key":"35134"} +{"label":"Stacey Dash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4de\/4d856edd7b9aa12edd0024de\/stacey-dash-profile.jpg","version":40,"birthday":"-124592400000","id":"58150","birthplace":"Bronx, New York, USA","lastModified":"1302036442000","name":"Stacey Dash","type":"Person","_key":"35135"} +{"label":"Donald Faison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84e\/4cd9d77e7b9aa113ac00084e\/donald-faison-profile.jpg","version":55,"birthday":"141087600000","id":"49002","birthplace":"New York City, New York, USA","lastModified":"1302036442000","name":"Donald Faison","type":"Person","_key":"35136"} +{"label":"Elisa Donovan","version":24,"id":"58151","lastModified":"1302036442000","name":"Elisa Donovan","type":"Person","_key":"35137"} +{"label":"Red Heat","description":"Arnold Schwarzenegger plays a Russian policeman sent after a Russian drug dealer who has escaped to the United States and is awaiting extradition in Chicago. Jim Belushi plays his temporary partner on the Chicago police. When the drug dealer escapes, the two police must overcome their differences in order to recapture him.","id":"9604","runtime":106,"imdbId":"tt0095963","trailer":"http:\/\/www.youtube.com\/watch?v=CZp4zHYrCDA","version":162,"lastModified":"1301902144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef1\/4bc92773017a3c57fe00fef1\/red-heat-mid.jpg","studio":"Carolco Pictures Inc","genre":"Action","title":"Red Heat","releaseDate":582249600000,"language":"en","type":"Movie","_key":"35138"} +{"label":"Single White Female","description":"When a 'Single White Female' places an ad in the press for a similar woman to rent a room (to replace the boyfriend she's just left), all the applicants seem weird. Then along comes a level headed woman who seems to be just right. The new lodger has a secret past which haunts her.","id":"9605","runtime":107,"imdbId":"tt0105414","version":124,"lastModified":"1301904568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eff\/4bc92777017a3c57fe00feff\/single-white-female-mid.jpg","genre":"Drama","title":"Single White Female","releaseDate":713750400000,"language":"en","type":"Movie","_key":"35139"} +{"label":"Metropolis","description":"Metropolis is a story of how important emotions are and how they separate humans from everything else. The movie follows a young boy and his uncle. The story is set in the far future where humans and robots live together, unfortunately not in harmony. The plot starts to unfold when the boy meets a robot named Tima and they get in all kinds of trouble. ","id":"9606","runtime":108,"imdbId":"tt0293416","version":120,"lastModified":"1301904287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/429\/4cb23c4c7b9aa1263c000429\/metropolis-mid.jpg","studio":"Bandai Visual Company","genre":"Animation","title":"Metropolis","releaseDate":1011916800000,"language":"en","type":"Movie","_key":"35140"} +{"label":"Yuka Imoto","version":21,"id":"58155","lastModified":"1301901730000","name":"Yuka Imoto","type":"Person","_key":"35141"} +{"label":"Kei Kobayashi","version":21,"id":"58156","lastModified":"1301901882000","name":"Kei Kobayashi","type":"Person","_key":"35142"} +{"label":"Kouki Okada","version":21,"id":"58157","lastModified":"1301902095000","name":"Kouki Okada","type":"Person","_key":"35143"} +{"label":"Tar\u00f4 Ishida","version":23,"id":"58158","lastModified":"1301901882000","name":"Tar\u00f4 Ishida","type":"Person","_key":"35144"} +{"label":"Rintaro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/079\/4bedb1b4017a3c458d000079\/rintaro-profile.jpg","version":28,"birthday":"-913341600000","id":"58159","birthplace":"Tokyo","lastModified":"1301901688000","name":"Rintaro","type":"Person","_key":"35145"} +{"label":"Super Mario Bros.","description":"Mario and Luigi, two hard working plumbers find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They find themselves the only hope to save the Earth from invasion.","id":"9607","runtime":104,"imdbId":"tt0108255","version":86,"lastModified":"1301903216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2c\/4bc9277a017a3c57fe00ff2c\/super-mario-bros-mid.jpg","genre":"Family","title":"Super Mario Bros.","releaseDate":738547200000,"language":"en","type":"Movie","_key":"35146"} +{"label":"Annabel Jankel","version":29,"id":"58164","lastModified":"1301902095000","name":"Annabel Jankel","type":"Person","_key":"35147"} +{"label":"Rocky Morton","version":22,"id":"58165","lastModified":"1301901730000","name":"Rocky Morton","type":"Person","_key":"35148"} +{"label":"The Legend of Sleepy Hollow","description":"No overview found.","id":"9608","runtime":105,"imdbId":"tt0214874","version":150,"lastModified":"1301903851000","genre":"Drama","title":"The Legend of Sleepy Hollow","releaseDate":940636800000,"language":"en","type":"Movie","_key":"35149"} +{"label":"Rachelle Lefevre","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d7\/4c978c197b9aa10d5b0004d7\/rachelle-lefevre-profile.jpg","version":57,"id":"58168","lastModified":"1301901146000","name":"Rachelle Lefevre","type":"Person","_key":"35150"} +{"label":"Vlasta Vrana","version":38,"id":"58169","lastModified":"1301901461000","name":"Vlasta Vrana","type":"Person","_key":"35151"} +{"label":"Kathleen Fee","version":21,"id":"58170","lastModified":"1301902179000","name":"Kathleen Fee","type":"Person","_key":"35152"} +{"label":"Paul Lemelin","version":20,"id":"58171","lastModified":"1301902197000","name":"Paul Lemelin","type":"Person","_key":"35153"} +{"label":"Pierre Gang","version":20,"id":"58172","lastModified":"1301902152000","name":"Pierre Gang","type":"Person","_key":"35154"} +{"label":"Of Mice and Men","description":"Two drifters, one a gentle but slow giant, try to make money working the fields during the Depression so they can fulfill their dreams. ","id":"9609","runtime":115,"imdbId":"tt0105046","version":113,"lastModified":"1301903193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3a\/4bc9277b017a3c57fe00ff3a\/of-mice-and-men-mid.jpg","genre":"Drama","title":"Of Mice and Men","releaseDate":716601600000,"language":"en","type":"Movie","_key":"35155"} +{"label":"Conan the Destroyer","description":"Another evil threatens to conquer the world, as Conan journeys on a search to find a magic crystal before the sorceror Toth Amon can use it. He is also required to rescue the Princess Jehnna for the treacherous Queen Taramis who plans to betray Conan and rule the world.","id":"9610","runtime":103,"imdbId":"tt0087078","trailer":"http:\/\/www.youtube.com\/watch?v=B5bjIJ6JqaE","version":168,"lastModified":"1301901721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/613\/4d97e6875e73d6225d005613\/conan-the-destroyer-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"Conan the Destroyer","releaseDate":457315200000,"language":"en","tagline":"The most powerful legend of all is back in a new adventure.","type":"Movie","_key":"35156"} +{"label":"Wilt Chamberlain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b3c\/4d9308aa7b9aa11991000b3c\/wilt-chamberlain-profile.jpg","biography":"Wilton Norman Chamberlain, born in Philadelphia, didn't come from a race\n of giants as many thought. Both his parents were no bigger than 5-9, \nbut as a young boy he began a growth spurt which would eventually stop \nwhen he reached 7-1. That height made him legendary in sports history as\n arguably the greatest basketball player ever. Chamberlain played at \nOverbrook High School in Philadelphia, and collegiately at Kansas \nUniversity, where he led the Jayhawks to the NCAA finals. Kansas lost in\n ","version":30,"birthday":"-1052874000000","id":"58181","birthplace":"Philadelphia, Pennsylvania, USA ","lastModified":"1301901475000","name":"Wilt Chamberlain","type":"Person","_key":"35157"} +{"label":"Romy and Michele's High School Reunion","description":"Two not-too-bright party girls reinvent themselves for their high school reunion. Armed with a borrowed Jaguar, new clothes and the story of their success as the inventors of Post-it notes, Romy and Michele descend on their alma mater, but their fa\u00e7ade crumbles quickly.","id":"9611","runtime":92,"imdbId":"tt0120032","version":124,"lastModified":"1302039330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/327\/4d502dca7b9aa13ab400c327\/romy-and-michele-s-high-school-reunion-mid.jpg","genre":"Comedy","title":"Romy and Michele's High School Reunion","releaseDate":861926400000,"language":"en","tagline":"The Blonde Leading The Blonde.","type":"Movie","_key":"35158"} +{"label":"David Mirkin","version":23,"id":"58178","lastModified":"1301901614000","name":"David Mirkin","type":"Person","_key":"35159"} +{"label":"Coneheads","description":"With enormous cone-shaped heads, robotlike walks and an appetite for toilet paper, aliens Beldar and Prymatt don't exactly blend in with the population of Paramus, N.J. But for some reason, everyone believes them when they say they're from France! As the odd \"Saturday Night Live\" characters settle into middle-class life in this feature-length comedy, a neighbor admires their daughter.","id":"9612","runtime":88,"imdbId":"tt0106598","trailer":"http:\/\/www.youtube.com\/watch?v=1471","version":146,"lastModified":"1301906833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f79\/4bc92785017a3c57fe00ff79\/coneheads-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Coneheads","releaseDate":743385600000,"language":"en","tagline":"Young ones! Parental units! We summon you!","type":"Movie","_key":"35160"} +{"label":"Chris Farley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/86b\/4d24c12e7b9aa13f8500086b\/chris-farley-profile.jpg","version":36,"id":"58198","lastModified":"1301901197000","name":"Chris Farley","type":"Person","_key":"35161"} +{"label":"Michael Richards","version":35,"id":"50807","lastModified":"1301901359000","name":"Michael Richards","type":"Person","_key":"35162"} +{"label":"David Spade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/086\/4cdc5d9e7b9aa137fe000086\/david-spade-profile.jpg","version":59,"id":"60950","lastModified":"1302036944000","name":"David Spade","type":"Person","_key":"35163"} +{"label":"Drew Carey","version":23,"id":"83349","lastModified":"1301901943000","name":"Drew Carey","type":"Person","_key":"35164"} +{"label":"Shishir Kurup","version":19,"id":"111454","lastModified":"1301902623000","name":"Shishir Kurup","type":"Person","_key":"35165"} +{"label":"McNally Sagal","version":16,"id":"148632","lastModified":"1301903094000","name":"McNally Sagal","type":"Person","_key":"35166"} +{"label":"Walter Robles","version":22,"id":"74787","lastModified":"1301902206000","name":"Walter Robles","type":"Person","_key":"35167"} +{"label":"Peter Aykroyd","version":16,"id":"148634","lastModified":"1301903090000","name":"Peter Aykroyd","type":"Person","_key":"35168"} +{"label":"Todd Susman","version":16,"id":"148635","lastModified":"1301903095000","name":"Todd Susman","type":"Person","_key":"35169"} +{"label":"Spider","description":"A brilliant and powerful psychological thriller about a deeply disturbed boy, Spider, who \u2018sees\u2019 his father brutally murder his mother and replace her with a prostitute. Convinced they plan to murder him next, Spider hatches an insane plan, which he carries through to tragic effect. Years later, his delusional account of his past begins to unravel and Spider spirals into fresh madness.","id":"9613","runtime":98,"imdbId":"tt0278731","version":184,"lastModified":"1301903744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8c\/4bc9278a017a3c57fe00ff8c\/spider-mid.jpg","genre":"Drama","title":"Spider","releaseDate":1021939200000,"language":"en","tagline":"The only thing worse than losing your mind... is finding it again.","type":"Movie","_key":"35170"} +{"label":"Happy Gilmore","description":"Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.","id":"9614","runtime":92,"imdbId":"tt0116483","trailer":"http:\/\/www.youtube.com\/watch?v=1531","version":186,"lastModified":"1301901451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fc\/4d8133d67b9aa12db70012fc\/happy-gilmore-mid.jpg","genre":"Comedy","title":"Happy Gilmore","releaseDate":824428800000,"language":"en","tagline":"He doesn't play golf... he destroys it.","type":"Movie","_key":"35171"} +{"label":"The Fast and the Furious: Tokyo Drift","description":"In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing","id":"9615","runtime":104,"imdbId":"tt0463985","trailer":"http:\/\/www.youtube.com\/watch?v=1977","version":281,"lastModified":"1301901051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b0\/4d8646987b9aa12ed40034b0\/the-fast-and-the-furious-tokyo-drift-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Fast and the Furious: Tokyo Drift","releaseDate":1149379200000,"language":"en","tagline":"On the streets of Tokyo, speed needs no translation...","type":"Movie","_key":"35172"} +{"label":"Justin Lin","version":45,"id":"58189","lastModified":"1301901281000","name":"Justin Lin","type":"Person","_key":"35173"} +{"label":"Bow Wow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd5\/4cf3eb1a5e73d62384000bd5\/bow-wow-profile.jpg","version":37,"id":"58197","lastModified":"1301901214000","name":"Bow Wow","type":"Person","_key":"35174"} +{"label":"Nathalie Kelley","version":25,"id":"116277","lastModified":"1301901310000","name":"Nathalie Kelley","type":"Person","_key":"35175"} +{"label":"Brian Tee","version":24,"id":"116278","lastModified":"1301901634000","name":"Brian Tee","type":"Person","_key":"35176"} +{"label":"Sung Kang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/78e\/4d0906c65e73d6745c00078e\/sung-kang-profile.jpg","version":64,"birthday":"71535600000","id":"61697","birthplace":"Gainesville, Georgia, USA","lastModified":"1301904087000","name":"Sung Kang","type":"Person","_key":"35177"} +{"label":"The Order","description":"For centuries, a secret Order of priests has existed within the Church. A renegade priest, Father Alex Bernier, is sent to Rome to investigate the mysterious death of one of the Order's most revered members. Following a series of strangely similar killings, Bernier launches an investigation that forces him to confront unimaginable evil.","id":"9616","runtime":102,"imdbId":"tt0304711","version":232,"lastModified":"1301904765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db4\/4d58a4537b9aa16bca002db4\/the-order-mid.jpg","genre":"Drama","title":"The Order","releaseDate":1062720000000,"language":"en","tagline":"Every soul has its price.","type":"Movie","_key":"35178"} +{"label":"Kleine Haie","description":"No overview found.","id":"9617","runtime":87,"imdbId":"tt0107330","version":59,"lastModified":"1301907408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4bc9279e017a3c57fe010024\/kleine-haie-mid.jpg","genre":"Comedy","title":"Kleine Haie","releaseDate":715478400000,"language":"en","type":"Movie","_key":"35179"} +{"label":"Tango & Cash","description":"Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perr","id":"9618","runtime":98,"imdbId":"tt0098439","trailer":"http:\/\/www.youtube.com\/watch?v=833","version":167,"lastModified":"1301901397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4bc927a1017a3c57fe010035\/tango-cash-mid.jpg","genre":"Action","title":"Tango & Cash","releaseDate":630288000000,"language":"en","tagline":"Two of L.A.'s top rival cops are going to have to work together... Even if it kills them.","type":"Movie","_key":"35180"} +{"label":"Andrey Konchalovskiy","version":43,"id":"58728","lastModified":"1301901472000","name":"Andrey Konchalovskiy","type":"Person","_key":"35181"} +{"label":"Albert Magnoli","version":27,"id":"58729","lastModified":"1301901949000","name":"Albert Magnoli","type":"Person","_key":"35182"} +{"label":"Robert Z'Dar","version":49,"id":"80579","lastModified":"1301901574000","name":"Robert Z'Dar","type":"Person","_key":"35183"} +{"label":"Dante's Peak","description":"Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.","id":"9619","runtime":109,"imdbId":"tt0118928","trailer":"http:\/\/www.youtube.com\/watch?v=1477","version":170,"lastModified":"1301902144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a0\/4bd0526f017a3c63f50001a0\/dante-s-peak-mid.jpg","genre":"Action","title":"Dante's Peak","releaseDate":855273600000,"language":"en","tagline":"Whatever you do, don't look back.","type":"Movie","_key":"35184"} +{"label":"Jamie Ren\u00e9e Smith","version":24,"id":"58727","lastModified":"1301902272000","name":"Jamie Ren\u00e9e Smith","type":"Person","_key":"35185"} +{"label":"Paycheck","description":"What seemed like a breezy idea for an engineer to net him millions of dollars, leaves him on the run for his life and piecing together why he's being chased.","id":"9620","runtime":119,"imdbId":"tt0338337","trailer":"http:\/\/www.youtube.com\/watch?v=284kahCx42s","version":187,"lastModified":"1301901794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4bc927a5017a3c57fe010062\/paycheck-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Paycheck","releaseDate":1072310400000,"language":"en","tagline":"Remember the future.","type":"Movie","_key":"35186"} +{"label":"Elizabethtown","description":"Drew Baylor (Orlando Bloom) is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant (Kirsten Dunst) with whom he falls in love.","id":"9621","runtime":123,"imdbId":"tt0368709","version":150,"lastModified":"1301902512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4bc927ac017a3c57fe010087\/elizabethtown-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Elizabethtown","releaseDate":1125792000000,"language":"en","tagline":"It's a heck of a place to find yourself","type":"Movie","_key":"35187"} +{"label":"Beverly Hills Ninja","description":"Haru, an orphaned American who washes ashore in Japan and is mistaken for the great White Ninja of legend. Raised among the finest Ninjas, Haru grows strong and big - very big. With the grace of all Three Stooges rolled into one body, Haru is an embarrassment to his clan. But when a beautiful blonde pleads for his help, Haru is given one dangerous, disastrously funny chance to prove himself.","id":"9622","runtime":88,"imdbId":"tt0118708","trailer":"http:\/\/www.youtube.com\/watch?v=L7wjZZDmyhY","version":150,"lastModified":"1301907512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4bc927ad017a3c57fe01009a\/beverly-hills-ninja-mid.jpg","genre":"Action","title":"Beverly Hills Ninja","releaseDate":853459200000,"language":"en","tagline":"He put's the Mortal back in Kombat.","type":"Movie","_key":"35188"} +{"label":"The Juror","description":"When Annie Laird is selected as a juror in a big Mafia trial, she is forced by someone known as \"The Teacher\" to persuade the other jurors to vote \"not guilty\". He threatens to kill her son if she doesn't commit. When the trial is over, he can't let her go...","id":"9623","runtime":118,"imdbId":"tt0116731","version":151,"lastModified":"1301903247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e67\/4cc3478f7b9aa138d7001e67\/the-juror-mid.jpg","genre":"Drama","title":"The Juror","releaseDate":823219200000,"language":"en","tagline":"There is no defense.","type":"Movie","_key":"35189"} +{"label":"On Deadly Ground","description":"Forrest Taft is an environmental agent who works for the Aegis Oil Company in Alaska. Aegis Oil's corrupt CEO, Michael Jennings, is the kind of person who doesn't care whether or not oil spills into the ocean or onto the land, just as long as it's making money for him.","id":"9624","runtime":102,"imdbId":"tt0110725","trailer":"http:\/\/www.youtube.com\/watch?v=2yVoHp1dUvg","version":113,"lastModified":"1301902780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4bc927b1017a3c57fe0100ab\/on-deadly-ground-mid.jpg","genre":"Action","title":"On Deadly Ground","releaseDate":761529600000,"language":"en","type":"Movie","_key":"35190"} +{"label":"The Glimmer Man","description":"Homicide detectives Jack Cole and Jim Campbell pair up to hunt down a vicious killer in this psychological thriller. Although the two men couldn't be more different -- Cole adheres to Eastern philosophies, while Campbell relies on street smarts -- they must work together to prevent the murderer from striking again. When Cole's ex-wife becomes the latest victim, the detective suspects his past may be haunting him.","id":"9625","runtime":92,"imdbId":"tt0116421","trailer":"http:\/\/www.youtube.com\/watch?v=LWit1iH5NaM","version":159,"lastModified":"1301902992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baa\/4d8b59a75e73d653d4000baa\/the-glimmer-man-mid.jpg","genre":"Action","title":"The Glimmer Man","releaseDate":844387200000,"language":"en","tagline":"Two good cops. One bad situation.","type":"Movie","_key":"35191"} +{"label":"Michelle Johnson","version":29,"id":"17225","lastModified":"1301903108000","name":"Michelle Johnson","type":"Person","_key":"35192"} +{"label":"John Gray","version":31,"id":"35155","lastModified":"1301901785000","name":"John Gray","type":"Person","_key":"35193"} +{"label":"Red Sonja","description":"The tyrant Gedren seeks the total power in a world of barbarism. She raids the city Hablac and kills the keeper of a talisman that gives her great power. Red Sonja, sister of the keeper, sets out with her magic sword to overthrow Gedren.","id":"9626","runtime":89,"imdbId":"tt0089893","version":154,"lastModified":"1301902180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c9\/4bc927b4017a3c57fe0100c9\/red-sonja-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"Red Sonja","releaseDate":489196800000,"language":"en","tagline":"A woman and a warrior that became a legend.","type":"Movie","_key":"35194"} +{"label":"Old Surehand","description":"No overview found.","id":"9627","runtime":90,"imdbId":"tt0059538","version":50,"lastModified":"1301906166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d6\/4cabb64d5e73d64dce0000d6\/old-surehand-mid.jpg","genre":"Adventure","title":"Old Surehand","releaseDate":-127785600000,"language":"en","type":"Movie","_key":"35195"} +{"label":"Larry Pennell","version":20,"id":"58214","lastModified":"1301902361000","name":"Larry Pennell","type":"Person","_key":"35196"} +{"label":"Half-Breed","description":"No overview found.","id":"9628","runtime":90,"imdbId":"tt0061197","version":66,"lastModified":"1301905334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/715\/4caa5b045e73d643eb000715\/winnetou-und-das-halbblut-apanatschi-mid.jpg","genre":"Adventure","title":"Half-Breed","releaseDate":-106531200000,"language":"en","type":"Movie","_key":"35197"} +{"label":"Winnetou und sein Freund Old Firehand","description":"No overview found.","id":"9629","runtime":98,"imdbId":"tt0061198","version":44,"lastModified":"1301904445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a8\/4caa5bce5e73d643ee0006a8\/winnetou-und-sein-freund-old-firehand-mid.jpg","genre":"Adventure","title":"Winnetou und sein Freund Old Firehand","releaseDate":-96336000000,"language":"en","type":"Movie","_key":"35198"} +{"label":"Rod Cameron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f1b\/4cd2d96b7b9aa16b9b000f1b\/rod-cameron-profile.jpg","version":23,"id":"58217","lastModified":"1301904129000","name":"Rod Cameron","type":"Person","_key":"35199"} +{"label":"Der Hexer","description":"No overview found.","id":"9630","runtime":82,"imdbId":"tt0058191","version":67,"lastModified":"1301903478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/899\/4cab04d07b9aa17acb000899\/der-hexer-mid.jpg","genre":"Crime","title":"Der Hexer","releaseDate":-169257600000,"language":"en","type":"Movie","_key":"35200"} +{"label":"The Negotiator","description":"Lieutenant Danny Roman (Samuel L. Jackson), a top hostage negotiator, is framed for the murder of his partner Nathan 'Nate' Roenick (Paul Guilfoyle) and embezzling funds from the Chicago Police Department's disability fund.\n\nThe Negotiator starts when Roman shows his skills by risking his life in a hostage-taking situation. The central theme of the movie is already revealed in the first scene when","id":"9631","runtime":134,"imdbId":"tt0120768","trailer":"http:\/\/www.youtube.com\/watch?v=2728","version":161,"lastModified":"1301902221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abc\/4d42e9e17b9aa15bb5004abc\/the-negotiator-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Action","title":"The Negotiator","releaseDate":901670400000,"language":"en","tagline":"He frees hostages for a living. Now he's taking hostages to survive.","type":"Movie","_key":"35201"} +{"label":"Der M\u00f6nch mit der Peitsche","description":"No overview found.","id":"9632","runtime":88,"imdbId":"tt0062022","version":43,"lastModified":"1301904718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e0\/4bc927b6017a3c57fe0100e0\/der-monch-mit-der-peitsche-mid.jpg","genre":"Crime","title":"Der M\u00f6nch mit der Peitsche","releaseDate":-75513600000,"language":"en","type":"Movie","_key":"35202"} +{"label":"Die toten Augen von London","description":"No overview found.","id":"9633","runtime":98,"imdbId":"tt0054395","version":54,"lastModified":"1301904718000","genre":"Crime","title":"Die toten Augen von London","releaseDate":-276566400000,"language":"en","type":"Movie","_key":"35203"} +{"label":"The Indian Scarf","description":"When a wealthy man dies, his avaricious relatives look forward to inheriting all his money. However, he leaves a provision in his will that they all must spend a week together in his castle before they will be able to inherit anything. At the castle (which is cut off from the outside world), the relatives soon begin to be killed off one by one, each strangled with an Indian scarf.","id":"9634","runtime":86,"imdbId":"tt0057183","version":64,"lastModified":"1301905278000","studio":"Rialto Film","genre":"Thriller","title":"The Indian Scarf","releaseDate":-198892800000,"language":"en","type":"Movie","_key":"35204"} +{"label":"Neues vom Hexer","description":"No overview found.","id":"9635","runtime":95,"imdbId":"tt0059501","version":64,"lastModified":"1301905281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4bc927b6017a3c57fe0100e5\/neues-vom-hexer-mid.jpg","studio":"Rialto Film","genre":"Crime","title":"Neues vom Hexer","releaseDate":-144460800000,"language":"en","type":"Movie","_key":"35205"} +{"label":"Brigitte Horney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/721\/4cb9b6535e73d67786000721\/brigitte-horney-profile.jpg","version":22,"id":"58235","lastModified":"1301901950000","name":"Brigitte Horney","type":"Person","_key":"35206"} +{"label":"Margot Trooger","version":20,"id":"58236","lastModified":"1301902163000","name":"Margot Trooger","type":"Person","_key":"35207"} +{"label":"Control","description":"No overview found.","id":"9636","runtime":101,"imdbId":"tt0374584","version":100,"lastModified":"1301903082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4bc927b9017a3c57fe0100ea\/control-mid.jpg","genre":"Action","title":"Control","releaseDate":1102377600000,"language":"en","type":"Movie","_key":"35208"} +{"label":"Scooby-Doo","description":"The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.","id":"9637","runtime":83,"imdbId":"tt0267913","trailer":"http:\/\/www.youtube.com\/watch?v=80xWiJ-0j94","version":120,"lastModified":"1301907105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f1\/4d38f7e87b9aa161410005f1\/scooby-doo-mid.jpg","genre":"Adventure","title":"Scooby-Doo","releaseDate":1023494400000,"language":"en","tagline":"Throughout The Ages, One Hero Has Cowered Above The Rest.","type":"Movie","_key":"35209"} +{"label":"Neil Fanning","version":21,"id":"58271","lastModified":"1301902017000","name":"Neil Fanning","type":"Person","_key":"35210"} +{"label":"Scott Innes","version":28,"id":"58272","lastModified":"1301901686000","name":"Scott Innes","type":"Person","_key":"35211"} +{"label":"Phantasm","description":"A young boy and his friends face off against a mysterious grave robber known only as the Tall Man, who keeps a mysterious arsenal of terrible weapons with him.","id":"9638","runtime":88,"imdbId":"tt0079714","version":147,"lastModified":"1301904887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/104\/4bc927bc017a3c57fe010104\/phantasm-mid.jpg","genre":"Horror","title":"Phantasm","releaseDate":291427200000,"language":"en","tagline":"If this one doesn\u2019t scare you, you\u2019re already dead.","type":"Movie","_key":"35212"} +{"label":"A. Michael Baldwin","version":29,"id":"58240","lastModified":"1301901483000","name":"A. Michael Baldwin","type":"Person","_key":"35213"} +{"label":"Bill Thornbury","version":23,"id":"58241","lastModified":"1301901548000","name":"Bill Thornbury","type":"Person","_key":"35214"} +{"label":"Reggie Bannister","version":36,"id":"97939","lastModified":"1301902495000","name":"Reggie Bannister","type":"Person","_key":"35215"} +{"label":"Kathy Lester","version":22,"id":"58243","lastModified":"1301902367000","name":"Kathy Lester","type":"Person","_key":"35216"} +{"label":"Terrie Kalbus","version":21,"id":"58244","lastModified":"1301901760000","name":"Terrie Kalbus","type":"Person","_key":"35217"} +{"label":"Lynn Eastman-Rossi","version":19,"id":"97940","lastModified":"1301902644000","name":"Lynn Eastman-Rossi","type":"Person","_key":"35218"} +{"label":"Angus Scrimm","version":35,"id":"79584","lastModified":"1301902138000","name":"Angus Scrimm","type":"Person","_key":"35219"} +{"label":"Don Coscarelli","version":44,"id":"58245","lastModified":"1301901425000","name":"Don Coscarelli","type":"Person","_key":"35220"} +{"label":"Rohtenburg","description":"In Germany, as graduate student Katie Armstrong researches cannibal killer Oliver Hagen for her thesis, she becomes obsessed with her subject and ultimately plunges into a lifestyle similar to Hagen's and the thousands of people like him.","id":"9639","runtime":88,"imdbId":"tt0448400","version":105,"lastModified":"1301905226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/621\/4c9b6f6c7b9aa122e1000621\/rohtenburg-mid.jpg","genre":"Drama","title":"Rohtenburg","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"35221"} +{"label":"Rainier Meissner","version":21,"id":"58259","lastModified":"1301902007000","name":"Rainier Meissner","type":"Person","_key":"35222"} +{"label":"Martin Weisz","version":24,"id":"58260","lastModified":"1301901511000","name":"Martin Weisz","type":"Person","_key":"35223"} +{"label":"Martin Weisz","version":21,"id":"58261","lastModified":"1301902015000","name":"Martin Weisz","type":"Person","_key":"35224"} +{"label":"Mission Galactica: The Cylon Attack","description":"No overview found.","id":"9640","runtime":108,"imdbId":"tt0077937","version":58,"lastModified":"1301903266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/112\/4bc927bf017a3c57fe010112\/mission-galactica-the-cylon-attack-mid.jpg","genre":"Horror","title":"Mission Galactica: The Cylon Attack","releaseDate":252460800000,"language":"en","type":"Movie","_key":"35225"} +{"label":"Dirk Benedict","version":47,"id":"58264","lastModified":"1301901103000","name":"Dirk Benedict","type":"Person","_key":"35226"} +{"label":"Herbert Jefferson Jr.","version":22,"id":"58265","lastModified":"1301901413000","name":"Herbert Jefferson Jr.","type":"Person","_key":"35227"} +{"label":"Christian I. Nyby II","version":21,"id":"68359","lastModified":"1301901402000","name":"Christian I. Nyby II","type":"Person","_key":"35228"} +{"label":"Cheaper by the Dozen 2","description":"Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,","id":"9641","runtime":105,"imdbId":"tt0452598","version":183,"lastModified":"1301902572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc927c1017a3c57fe010123\/cheaper-by-the-dozen-2-mid.jpg","genre":"Adventure","title":"Cheaper by the Dozen 2","releaseDate":1135123200000,"language":"en","type":"Movie","_key":"35229"} +{"label":"Jonathan Bennett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/184\/4bf95232017a3c702a000184\/jonathan-bennett-profile.jpg","version":31,"id":"76996","lastModified":"1301901215000","name":"Jonathan Bennett","type":"Person","_key":"35230"} +{"label":"Ast\u00e9rix et les Vikings","description":"Chief Vitalstatistix's brother leaves his son, Justforkix, in Asterix's village, but even the hero and Obelix can't turn the sensitive, artistic scared teenager into a Gallic warrior. Ironically under Asterix and Obelix's care, Justforkix gets kidnapped by the Vikings.","id":"9642","runtime":79,"imdbId":"tt0371552","trailer":"http:\/\/www.youtube.com\/watch?v=1417","version":72,"lastModified":"1301901976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13e\/4bc927c6017a3c57fe01013e\/asterix-et-les-vikings-mid.jpg","studio":"M6 Studio","genre":"Adventure","title":"Ast\u00e9rix et les Vikings","releaseDate":1144195200000,"language":"en","type":"Movie","_key":"35231"} +{"label":"Stefan Fjeldmark","version":32,"id":"58268","lastModified":"1301901597000","name":"Stefan Fjeldmark","type":"Person","_key":"35232"} +{"label":"Jesper M\u00f8ller","version":29,"id":"58269","lastModified":"1301902194000","name":"Jesper M\u00f8ller","type":"Person","_key":"35233"} +{"label":"Rossini, oder die m\u00f6rderische Frage, wer mit wem schlief","description":"No overview found.","id":"9643","runtime":118,"imdbId":"tt0120037","version":48,"lastModified":"1301417730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f1\/4c9ecea57b9aa15e3c0000f1\/rossini-oder-die-morderische-frage-wer-mit-wem-schlief-mid.jpg","genre":"Comedy","title":"Rossini, oder die m\u00f6rderische Frage, wer mit wem schlief","releaseDate":853977600000,"language":"en","type":"Movie","_key":"35234"} +{"label":"Loaded Weapon 1","description":"An LA detective is murdered because she has microfilm with the recipe to make cocaine cookies. A \"Lethal Weapon\" style cop team tries to find and stop the fiends before they can dope the nation by distributing their wares via the \"Wilderness Girls\" cookie drive.","id":"9644","runtime":84,"imdbId":"tt0107659","version":104,"lastModified":"1301902351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/086\/4c3479487b9aa17a35000086\/loaded-weapon-1-mid.jpg","genre":"Comedy","title":"Loaded Weapon 1","releaseDate":728870400000,"language":"en","type":"Movie","_key":"35235"} +{"label":"Gene Quintano","version":45,"id":"56953","lastModified":"1301902024000","name":"Gene Quintano","type":"Person","_key":"35236"} +{"label":"Kathy Ireland","version":28,"id":"58277","lastModified":"1301902197000","name":"Kathy Ireland","type":"Person","_key":"35237"} +{"label":"Ghost Ship","description":"After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.","id":"9645","runtime":87,"imdbId":"tt0288477","trailer":"http:\/\/www.youtube.com\/watch?v=BKz3MLLo2HA","version":173,"lastModified":"1301902451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/177\/4bc927ce017a3c57fe010177\/ghost-ship-mid.jpg","genre":"Horror","title":"Ghost Ship","releaseDate":1035244800000,"language":"en","tagline":"Sea Evil","type":"Movie","_key":"35238"} +{"label":"H\u00e4r har du ditt liv","description":"No overview found.","id":"9646","runtime":169,"imdbId":"tt0060529","version":42,"lastModified":"1301904718000","studio":"Svenska Filminstitutet","genre":"Drama","title":"H\u00e4r har du ditt liv","releaseDate":-95212800000,"language":"en","type":"Movie","_key":"35239"} +{"label":"Eddie Axberg","version":20,"id":"58304","lastModified":"1301902368000","name":"Eddie Axberg","type":"Person","_key":"35240"} +{"label":"Gudrun Brost","version":20,"id":"58305","lastModified":"1301902152000","name":"Gudrun Brost","type":"Person","_key":"35241"} +{"label":"Ulla Akselson","version":20,"id":"58306","lastModified":"1301902187000","name":"Ulla Akselson","type":"Person","_key":"35242"} +{"label":"Bo Wahlstr\u00f6m","version":20,"id":"58307","lastModified":"1301902381000","name":"Bo Wahlstr\u00f6m","type":"Person","_key":"35243"} +{"label":"Rick Axberg","version":20,"id":"58308","lastModified":"1301902338000","name":"Rick Axberg","type":"Person","_key":"35244"} +{"label":"Scrooged","description":"Frank Cross runs a US TV station which is planning a live adaptation of Dickens' Christmas Carol. Frank's childhood wasn't a particularly pleasant one, and so he doesn't really appreciate the Christmas spirit. With the help of the ghosts of Christmas past, present and future, Frank realizes he must change.","id":"9647","runtime":102,"imdbId":"tt0096061","trailer":"http:\/\/www.youtube.com\/watch?v=1123","version":139,"lastModified":"1301902850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c89\/4d5045757b9aa13ab400cc89\/scrooged-mid.jpg","genre":"Comedy","title":"Scrooged","releaseDate":596246400000,"language":"en","tagline":"The spirits will move you in odd and hysterical ways.","type":"Movie","_key":"35245"} +{"label":"The Man Who Sued God","description":"Billy Connolly plays Steve Myers, a lawyer who became a fisherman from frustration. When his one piece of property, his boat, is struck by lightning and destroyed he is denied insurance money because it was 'an act of God'. He re-registers as a lawyer and sues the insurance company and the church under the geise of God, defending himself.","id":"9648","runtime":97,"imdbId":"tt0268437","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=9ZfJywXiRyw","version":114,"lastModified":"1301905651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/193\/4bc927d1017a3c57fe010193\/the-man-who-sued-god-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"The Man Who Sued God","releaseDate":1003968000000,"language":"en","type":"Movie","_key":"35246"} +{"label":"Mark Joffe","version":22,"id":"59438","lastModified":"1301901946000","name":"Mark Joffe","type":"Person","_key":"35247"} +{"label":"Mexico Trilogy","description":"The Mexico Trilogy is a series of films: El Mariachi, Desperado and Once Upon a Time in Mexico, all written, produced and directed by Robert Rodriguez, beginning in 1992 and ending in 2003 and distributed by Columbia Tristar which tell the continuing story of the movies' main character, \"El Mariachi\".","id":"9649","version":105,"lastModified":"1301904456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19c\/4bc927d1017a3c57fe01019c\/mexico-trilogy-mid.jpg","title":"Mexico Trilogy","language":"en","type":"Movie","_key":"35248"} +{"label":"Hard Luck","description":"Three converging story lines involving bootleggers, a serial killer and drug dealers are followed. A former drug dealer tries to go straight, but comes across a stash of stolen drugs. Meanwhile, a middle-aged suburban housewife hides a sadistic and vicious streak. ","id":"9650","runtime":101,"imdbId":"tt0489070","version":168,"lastModified":"1301903687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1aa\/4bc927d5017a3c57fe0101aa\/hard-luck-mid.jpg","genre":"Action","title":"Hard Luck","releaseDate":1156204800000,"language":"en","type":"Movie","_key":"35249"} +{"label":"Jackie Quinones","version":19,"id":"58329","lastModified":"1301901614000","name":"Jackie Quinones","type":"Person","_key":"35250"} +{"label":"James Hiroyuki Liao","version":22,"id":"58330","lastModified":"1301902109000","name":"James Hiroyuki Liao","type":"Person","_key":"35251"} +{"label":"Aubrey Dollar","version":21,"id":"58331","lastModified":"1301901784000","name":"Aubrey Dollar","type":"Person","_key":"35252"} +{"label":"Kevin Thoms","version":19,"id":"58332","lastModified":"1301902095000","name":"Kevin Thoms","type":"Person","_key":"35253"} +{"label":"Tom Kemp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4cd34b307b9aa113ab000023\/tom-kemp-profile.jpg","version":34,"id":"58333","lastModified":"1302068254000","name":"Tom Kemp","type":"Person","_key":"35254"} +{"label":"Mike Messier","version":19,"id":"58334","lastModified":"1301902095000","name":"Mike Messier","type":"Person","_key":"35255"} +{"label":"Tony Hua","version":19,"id":"58335","lastModified":"1301902095000","name":"Tony Hua","type":"Person","_key":"35256"} +{"label":"DJ Clue","version":19,"id":"58336","lastModified":"1301902095000","name":"DJ Clue","type":"Person","_key":"35257"} +{"label":"Supergirl","description":"After losing a powerful orb, Kara, Superman's cousin, comes to Earth to retrieve it and instead finds herself up against a wicked witch","id":"9651","runtime":89,"imdbId":"tt0088206","version":81,"lastModified":"1301903853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bc927d7017a3c57fe0101c0\/supergirl-mid.jpg","genre":"Action","title":"Supergirl","releaseDate":459043200000,"language":"en","type":"Movie","_key":"35258"} +{"label":"The Passenger","description":"David Locke is a television reporter on location in Africa's Sahara Desert. It's hot, humid, and everything seems to be dirty. Returning to his hotel after getting lost and bogged in the desert, he discovers that the man in the room next to his has died. After deciding that his own life wasn't worth living anymore, he switches identities with the dead man, taking the man's passport (with his own photo swapped in), his luggage, and his appointment schedule. Leaving Africa, he heads off to keep th","id":"9652","runtime":121,"imdbId":"tt0073580","version":115,"lastModified":"1301902899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c9\/4bc927d7017a3c57fe0101c9\/professione-reporter-mid.jpg","genre":"Comedy","title":"The Passenger","releaseDate":162777600000,"language":"en","type":"Movie","_key":"35259"} +{"label":"M\u00e4dchen in Uniform","description":"No overview found.","id":"9653","runtime":88,"imdbId":"tt0022183","version":70,"lastModified":"1301904043000","genre":"Drama","title":"M\u00e4dchen in Uniform","releaseDate":-1202256000000,"language":"en","type":"Movie","_key":"35260"} +{"label":"Erika Biebrach","version":20,"id":"58342","lastModified":"1301901992000","name":"Erika Biebrach","type":"Person","_key":"35261"} +{"label":"Carl Froelich","version":22,"id":"29110","lastModified":"1301901794000","name":"Carl Froelich","type":"Person","_key":"35262"} +{"label":"Leontine Sagan","version":20,"id":"58343","lastModified":"1301902194000","name":"Leontine Sagan","type":"Person","_key":"35263"} +{"label":"The Italian Job","description":"After Charlie and his crew pull off a picture perfect heist of tens of millions of dollars worth of gold in Venice, Italy they must overcome the betrayal of one of their own who in turn kills another teammate to reclaim their ill-gotten gains in yet another high tech heist.","id":"9654","runtime":111,"imdbId":"tt0317740","trailer":"http:\/\/www.youtube.com\/watch?v=EdZcM9hQVps","version":307,"lastModified":"1301901285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d36\/4d4ce21a5e73d617ba001d36\/the-italian-job-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Italian Job","releaseDate":1054252800000,"language":"en","tagline":"Get in. Get out. Get even.","type":"Movie","_key":"35264"} +{"label":"Fausto Callegarini","version":23,"id":"58347","lastModified":"1301901437000","name":"Fausto Callegarini","type":"Person","_key":"35265"} +{"label":"Stefano Petronelli","version":24,"id":"58348","lastModified":"1301901508000","name":"Stefano Petronelli","type":"Person","_key":"35266"} +{"label":"Fabio Scarpa","version":23,"id":"58349","lastModified":"1301901484000","name":"Fabio Scarpa","type":"Person","_key":"35267"} +{"label":"Cristiano Bonora","version":23,"id":"58350","lastModified":"1301901484000","name":"Cristiano Bonora","type":"Person","_key":"35268"} +{"label":"Tiberio Greco","version":23,"id":"58351","lastModified":"1301901484000","name":"Tiberio Greco","type":"Person","_key":"35269"} +{"label":"Jimmy Shubert","version":24,"id":"58352","lastModified":"1301901484000","name":"Jimmy Shubert","type":"Person","_key":"35270"} +{"label":"Tammi Cubilette","version":23,"id":"58353","lastModified":"1301901484000","name":"Tammi Cubilette","type":"Person","_key":"35271"} +{"label":"Mary Portser","version":23,"id":"58354","lastModified":"1301901484000","name":"Mary Portser","type":"Person","_key":"35272"} +{"label":"She's the Man","description":"When her brother decides to ditch for a couple weeks in London, Viola heads over to his elite boarding school, disguises herself as him, and proceeds to fall for one of her soccer teammates. Little does she realize she's not the only one with romantic troubles, as she, as he, gets in the middle of a series of intermingled love affairs.","id":"9655","runtime":105,"imdbId":"tt0454945","version":113,"lastModified":"1301902691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/201\/4bc927e1017a3c57fe010201\/she-s-the-man-mid.jpg","genre":"Comedy","title":"She's the Man","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"35273"} +{"label":"Robert Hoffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aaf\/4d9852ca7b9aa13c72000aaf\/robert-hoffman-profile.jpg","version":29,"id":"58368","lastModified":"1301901614000","name":"Robert Hoffman","type":"Person","_key":"35274"} +{"label":"Alexandra Breckenridge","version":26,"id":"58369","lastModified":"1301902095000","name":"Alexandra Breckenridge","type":"Person","_key":"35275"} +{"label":"Jonathan Sadowski","version":24,"id":"21047","lastModified":"1301902003000","name":"Jonathan Sadowski","type":"Person","_key":"35276"} +{"label":"Clifton MaCabe Murray","version":20,"id":"58372","lastModified":"1301901882000","name":"Clifton MaCabe Murray","type":"Person","_key":"35277"} +{"label":"James Snyder","version":21,"id":"58373","lastModified":"1301901730000","name":"James Snyder","type":"Person","_key":"35278"} +{"label":"James Kirk","version":23,"id":"58374","lastModified":"1301902095000","name":"James Kirk","type":"Person","_key":"35279"} +{"label":"Andy Fickman","version":49,"id":"58375","lastModified":"1301901319000","name":"Andy Fickman","type":"Person","_key":"35280"} +{"label":"Black Christmas","description":"An escaped maniac returns to his childhood home on Christmas Eve, which is now a sorority house, and begins to murder the sorority sisters one by one. A remake of the 1974 horror movie, Black Christmas (1974).","id":"9656","runtime":84,"imdbId":"tt0454082","trailer":"http:\/\/www.youtube.com\/watch?v=-SODLknaAHs","version":138,"lastModified":"1301903101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/688\/4d45bbc87b9aa15bb0007688\/black-christmas-mid.jpg","genre":"Horror","title":"Black Christmas","releaseDate":1167004800000,"language":"en","type":"Movie","_key":"35281"} +{"label":"Kristen Cloke","version":20,"id":"58392","lastModified":"1301901510000","name":"Kristen Cloke","type":"Person","_key":"35282"} +{"label":"Karin Konoval","version":23,"id":"58395","lastModified":"1301901939000","name":"Karin Konoval","type":"Person","_key":"35283"} +{"label":"Dean Friss","version":19,"id":"58396","lastModified":"1301901759000","name":"Dean Friss","type":"Person","_key":"35284"} +{"label":"Robert Mann","version":19,"id":"58397","lastModified":"1301902298000","name":"Robert Mann","type":"Person","_key":"35285"} +{"label":"Leela Savasta","version":21,"id":"58399","lastModified":"1301901759000","name":"Leela Savasta","type":"Person","_key":"35286"} +{"label":"Kathleen Kole","version":19,"id":"58400","lastModified":"1301902121000","name":"Kathleen Kole","type":"Person","_key":"35287"} +{"label":"Cainan Wiebe","version":23,"id":"58402","lastModified":"1301902121000","name":"Cainan Wiebe","type":"Person","_key":"35288"} +{"label":"Alycia Purrott","version":18,"birthday":"435798000000","id":"77866","lastModified":"1301901779000","name":"Alycia Purrott","type":"Person","_key":"35289"} +{"label":"Oliver Hudson","version":27,"id":"62692","lastModified":"1301901532000","name":"Oliver Hudson","type":"Person","_key":"35290"} +{"label":"Glen Morgan","version":24,"id":"58403","lastModified":"1301901631000","name":"Glen Morgan","type":"Person","_key":"35291"} +{"label":"Otto - Der Film","description":"No overview found.","id":"9657","runtime":85,"imdbId":"tt0089753","version":48,"lastModified":"1301907408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/213\/4bc927e5017a3c57fe010213\/otto-der-film-mid.jpg","genre":"Comedy","title":"Otto - Der Film","releaseDate":490492800000,"language":"en","type":"Movie","_key":"35292"} +{"label":"Jessika Cardinahl","version":21,"id":"58382","lastModified":"1301902152000","name":"Jessika Cardinahl","type":"Person","_key":"35293"} +{"label":"Die Luftbr\u00fccke - Nur der Himmel war frei","description":"No overview found.","id":"9658","runtime":186,"imdbId":"tt0447728","version":54,"lastModified":"1301905334000","studio":"Sat.1","genre":"Drama","title":"Die Luftbr\u00fccke - Nur der Himmel war frei","releaseDate":1133049600000,"language":"en","type":"Movie","_key":"35294"} +{"label":"Dror Zahavi","version":20,"id":"58385","lastModified":"1301901995000","name":"Dror Zahavi","type":"Person","_key":"35295"} +{"label":"Mad Max","description":"In a dystopic future Australia, a vicious biker gang murder a cop's family and make his fight with them personal.","id":"9659","runtime":93,"imdbId":"tt0079501","trailer":"http:\/\/www.youtube.com\/watch?v=1685","version":151,"lastModified":"1301901415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/229\/4bc927e7017a3c57fe010229\/mad-max-mid.jpg","genre":"Action","title":"Mad Max","releaseDate":292723200000,"language":"en","tagline":"The Maximum Force Of The Future","type":"Movie","_key":"35296"} +{"label":"Joanne Samuel","version":25,"id":"58401","lastModified":"1301901438000","name":"Joanne Samuel","type":"Person","_key":"35297"} +{"label":"Hugh Keays-Byrne","version":29,"id":"26060","lastModified":"1301901399000","name":"Hugh Keays-Byrne","type":"Person","_key":"35298"} +{"label":"Operation Petticoat","description":"A World War II submarine commander finds himself stuck with a decrepit sub, a con-man executive officer, and a group of army nurses.","id":"9660","runtime":124,"imdbId":"tt0053143","trailer":"http:\/\/www.youtube.com\/watch?v=nYoNubDZfnU","version":140,"lastModified":"1301903589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16f\/4d7019fb7b9aa1300000116f\/operation-petticoat-mid.jpg","genre":"Action","title":"Operation Petticoat","releaseDate":-317952000000,"language":"en","type":"Movie","_key":"35299"} +{"label":"Dina Merrill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4c24f48a7b9aa1447000017f\/dina-merrill-profile.jpg","version":33,"id":"58414","lastModified":"1301901421000","name":"Dina Merrill","type":"Person","_key":"35300"} +{"label":"Gene Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4bf3f6f6017a3c6d92000142\/gene-evans-profile.jpg","version":48,"id":"89582","lastModified":"1301901442000","name":"Gene Evans","type":"Person","_key":"35301"} +{"label":"Dick Sargent","version":27,"id":"41250","lastModified":"1301901496000","name":"Dick Sargent","type":"Person","_key":"35302"} +{"label":"Gavin MacLeod","version":29,"id":"54450","lastModified":"1301901845000","name":"Gavin MacLeod","type":"Person","_key":"35303"} +{"label":"The Triplets of Belleville","description":"When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters--an aged song-and-dance team from the days of Fred Astaire--to rescue him.","id":"9662","runtime":80,"imdbId":"tt0286244","version":177,"lastModified":"1301906223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ee\/4cd1f7bd5e73d650220010ee\/les-triplettes-de-belleville-mid.jpg","genre":"Adventure","title":"The Triplets of Belleville","releaseDate":1055289600000,"language":"en","type":"Movie","_key":"35304"} +{"label":"B\u00e9atrice Bonifassi","version":29,"id":"58416","lastModified":"1301901475000","name":"B\u00e9atrice Bonifassi","type":"Person","_key":"35305"} +{"label":"Lina Boudreault","version":23,"id":"70138","lastModified":"1301902095000","name":"Lina Boudreault","type":"Person","_key":"35306"} +{"label":"Mich\u00e8le Caucheteux","version":29,"id":"58418","lastModified":"1301901475000","name":"Mich\u00e8le Caucheteux","type":"Person","_key":"35307"} +{"label":"Starman","description":"An alien crashes to earth and takes the form of a grieving young widow's late husband.","id":"9663","runtime":115,"imdbId":"tt0088172","trailer":"http:\/\/www.youtube.com\/watch?v=KLn5864A5Do","version":192,"lastModified":"1301901973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/256\/4bc927ee017a3c57fe010256\/starman-mid.jpg","genre":"Action","title":"Starman","releaseDate":471830400000,"language":"en","type":"Movie","_key":"35308"} +{"label":"Raynold Gideon","version":37,"id":"3029","lastModified":"1299669453000","name":"Raynold Gideon","type":"Person","_key":"35309"} +{"label":"Flyboys","description":"The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.","id":"9664","runtime":140,"imdbId":"tt0454824","trailer":"http:\/\/www.youtube.com\/watch?v=1511","version":228,"lastModified":"1301907513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/268\/4bc927ef017a3c57fe010268\/flyboys-mid.jpg","studio":"Flyboys Films","genre":"Action","title":"Flyboys","releaseDate":1158883200000,"language":"en","type":"Movie","_key":"35310"} +{"label":"Scott Hazell","version":23,"id":"58427","lastModified":"1301901559000","name":"Scott Hazell","type":"Person","_key":"35311"} +{"label":"Philip Winchester","version":28,"id":"58428","lastModified":"1301902026000","name":"Philip Winchester","type":"Person","_key":"35312"} +{"label":"Karen Ford","version":22,"id":"58429","lastModified":"1301902272000","name":"Karen Ford","type":"Person","_key":"35313"} +{"label":"Ruth Bradley","version":22,"id":"58430","lastModified":"1301901882000","name":"Ruth Bradley","type":"Person","_key":"35314"} +{"label":"Abdul Salis","version":22,"id":"58431","lastModified":"1301902272000","name":"Abdul Salis","type":"Person","_key":"35315"} +{"label":"Tyler Labine","version":35,"id":"51383","lastModified":"1301901377000","name":"Tyler Labine","type":"Person","_key":"35316"} +{"label":"Gail Downey","version":22,"id":"58432","lastModified":"1301902272000","name":"Gail Downey","type":"Person","_key":"35317"} +{"label":"David Ellison","version":29,"id":"58433","lastModified":"1301902121000","name":"David Ellison","type":"Person","_key":"35318"} +{"label":"Keith McErlean","version":23,"id":"58435","lastModified":"1301901730000","name":"Keith McErlean","type":"Person","_key":"35319"} +{"label":"Tony Bill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f3e\/4d4267205e73d65721000f3e\/tony-bill-profile.jpg","version":41,"id":"57138","lastModified":"1301901949000","name":"Tony Bill","type":"Person","_key":"35320"} +{"label":"Glory","description":"1863 - La guerre de S\u00e9cession ravage les Etats-Unis. Le jeune Robert Gould Shaw est promu colonel du premier r\u00e9giments de soldats noirs, engag\u00e9s volontaires dans une guerre qu'ils ne croient pas la leur. Ils se trompent.","id":"9665","runtime":122,"imdbId":"tt0097441","trailer":"http:\/\/www.youtube.com\/watch?v=9r72aGkShD4","version":147,"lastModified":"1301902421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98d\/4d810b5d5e73d6725500098d\/glory-mid.jpg","studio":"TriStar Pictures","genre":"Action","title":"Glory","releaseDate":629683200000,"language":"en","tagline":"Their innocence. Their heritage. Their lives.","type":"Movie","_key":"35321"} +{"label":"Jihmi Kennedy","version":25,"id":"58426","lastModified":"1301901857000","name":"Jihmi Kennedy","type":"Person","_key":"35322"} +{"label":"Ju-on: The Grudge 2","description":"While driving , the pregnant horror-movie actress Ky\u00f4ko Harase and her fianc\u00e9 are in a car crash caused by the Toshio's friend. Ky\u00f4ko loses her baby and her fianc\u00e9 winds up in a coma. Ky\u00f4ko was cursed together with a television crew when they shot a show in the haunted house where Kayako was brutally murdered by her husband years ago. ","id":"9666","runtime":95,"imdbId":"tt0367913","version":227,"lastModified":"1302026966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a17\/4d0279a67b9aa11bc0000a17\/ju-on-the-grudge-2-mid.jpg","genre":"Horror","title":"Ju-on: The Grudge 2","releaseDate":1053043200000,"language":"en","type":"Movie","_key":"35323"} +{"label":"Noriko Sakai","version":20,"id":"58441","lastModified":"1301902152000","name":"Noriko Sakai","type":"Person","_key":"35324"} +{"label":"Chiharu Niiyama","version":18,"id":"58442","lastModified":"1301902152000","name":"Chiharu Niiyama","type":"Person","_key":"35325"} +{"label":"Kei Horie","version":20,"id":"58443","lastModified":"1301901785000","name":"Kei Horie","type":"Person","_key":"35326"} +{"label":"Yui Ichikawa","version":24,"id":"58444","lastModified":"1301902152000","name":"Yui Ichikawa","type":"Person","_key":"35327"} +{"label":"The Jacket","description":"A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves. ","id":"9667","runtime":103,"imdbId":"tt0366627","trailer":"http:\/\/www.youtube.com\/watch?v=rCxQ83Pg1Ko","version":156,"lastModified":"1301902301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4bc927f7017a3c57fe0102a1\/the-jacket-mid.jpg","genre":"Drama","title":"The Jacket","releaseDate":1109894400000,"language":"en","type":"Movie","_key":"35328"} +{"label":"Ring 2","description":"While investigating the horrifying death of her boyfriend, Mai Takano (Miki Nakatani) learns about a videotape haunted by the spirit of a disturbing girl named Sadako, which kills anyone who watches it exactly one week later. When her boyfriend\u2019s son, Yoichi, starts to develop the same psychic abilities as Sadako, Takano must find a way to keep the boy and herself from becoming the next victims. ","id":"9669","runtime":92,"imdbId":"tt0218553","version":113,"lastModified":"1301906492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b4\/4bc927f9017a3c57fe0102b4\/ringu-2-mid.jpg","genre":"Horror","title":"Ring 2","releaseDate":928972800000,"language":"en","type":"Movie","_key":"35329"} +{"label":"Fumiyo Kohinata","version":34,"id":"58449","lastModified":"1301901650000","name":"Fumiyo Kohinata","type":"Person","_key":"35330"} +{"label":"Kenjir\u00f4 Ishimaru","version":19,"id":"58450","lastModified":"1301902384000","name":"Kenjir\u00f4 Ishimaru","type":"Person","_key":"35331"} +{"label":"Crocodile Dundee","description":"When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as na\u00efve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.","id":"9671","runtime":98,"imdbId":"tt0090555","trailer":"http:\/\/www.youtube.com\/watch?v=8X1726pwQIE","version":155,"lastModified":"1301943792000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ce\/4d3e06437b9aa15bad0005ce\/crocodile-dundee-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Crocodile Dundee","releaseDate":515203200000,"language":"en","tagline":"There's a little of him in all of us.","type":"Movie","_key":"35332"} +{"label":"Peter Faiman","version":26,"id":"58453","lastModified":"1301901815000","name":"Peter Faiman","type":"Person","_key":"35333"} +{"label":"Infamous","description":"While researching his book In Cold Blood, writer Truman Capote develops a close relationship with convicted murderers Dick Hickock and Perry Smith.","id":"9672","runtime":110,"imdbId":"tt0420609","version":214,"lastModified":"1301906224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d6\/4bc927fe017a3c57fe0102d6\/infamous-mid.jpg","genre":"Drama","title":"Infamous","releaseDate":1163635200000,"language":"en","type":"Movie","_key":"35334"} +{"label":"Mark Rubin","version":20,"id":"58455","lastModified":"1301901730000","name":"Mark Rubin","type":"Person","_key":"35335"} +{"label":"Steve Schwelling","version":20,"id":"58456","lastModified":"1301901730000","name":"Steve Schwelling","type":"Person","_key":"35336"} +{"label":"Glover Johns Gill","version":20,"id":"58457","lastModified":"1301901730000","name":"Glover Johns Gill","type":"Person","_key":"35337"} +{"label":"Rey Arteaga","version":20,"id":"58458","lastModified":"1301901730000","name":"Rey Arteaga","type":"Person","_key":"35338"} +{"label":"Justin Sherburn","version":20,"id":"58459","lastModified":"1301901730000","name":"Justin Sherburn","type":"Person","_key":"35339"} +{"label":"Andrew Halbreich","version":20,"id":"58460","lastModified":"1301901730000","name":"Andrew Halbreich","type":"Person","_key":"35340"} +{"label":"Michael Panes","version":20,"id":"58461","lastModified":"1301901730000","name":"Michael Panes","type":"Person","_key":"35341"} +{"label":"Voll Normaaal","description":"No overview found.","id":"9673","runtime":91,"imdbId":"tt0111640","version":66,"lastModified":"1301906736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/001\/4bcbc805017a3c0f27000001\/voll-normaaal-mid.jpg","genre":"Comedy","title":"Voll Normaaal","releaseDate":784425600000,"language":"en","type":"Movie","_key":"35342"} +{"label":"Gruschenka Stevens","version":22,"id":"58462","lastModified":"1301902006000","name":"Gruschenka Stevens","type":"Person","_key":"35343"} +{"label":"Dolly Buster","version":21,"id":"58464","lastModified":"1301902203000","name":"Dolly Buster","type":"Person","_key":"35344"} +{"label":"Ring 0: Birthday","description":"Taking place thirty years before the events of Ringu, Ringu 0 provides the shocking background story of how the girl on the video became a deadly, vengeful spirit.","id":"9674","runtime":99,"imdbId":"tt0235712","version":50,"lastModified":"1301904043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e4\/4bc92800017a3c57fe0102e4\/ringu-0-basudei-mid.jpg","genre":"Drama","title":"Ring 0: Birthday","releaseDate":948499200000,"language":"en","type":"Movie","_key":"35345"} +{"label":"Yukie Nakama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c46\/4d36cc3a5e73d6334900cc46\/yukie-nakama-profile.jpg","version":26,"id":"58674","lastModified":"1301901650000","name":"Yukie Nakama","type":"Person","_key":"35346"} +{"label":"Seiichi Tanabe","version":25,"id":"58675","lastModified":"1301902152000","name":"Seiichi Tanabe","type":"Person","_key":"35347"} +{"label":"Kumiko As\u00f4","version":27,"id":"27788","lastModified":"1301901650000","name":"Kumiko As\u00f4","type":"Person","_key":"35348"} +{"label":"Yoshiko Tanaka","version":23,"id":"58676","lastModified":"1301901956000","name":"Yoshiko Tanaka","type":"Person","_key":"35349"} +{"label":"Norio Tsuruta","version":21,"id":"58677","lastModified":"1301901785000","name":"Norio Tsuruta","type":"Person","_key":"35350"} +{"label":"Sideways","description":"Sideways follows two forty-something men, portrayed by Paul Giamatti and Thomas Haden Church, who take a week-long road trip to the wine country of Santa Barbara. Supporting actresses Virginia Madsen and Sandra Oh, who play two local women who become romantically involved with the men, all received accolades for their performances in the film.","id":"9675","runtime":126,"imdbId":"tt0375063","version":195,"lastModified":"1301901938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f5\/4bc92802017a3c57fe0102f5\/sideways-mid.jpg","genre":"Comedy","title":"Sideways","releaseDate":1095033600000,"language":"en","type":"Movie","_key":"35351"} +{"label":"The Black Dahlia","description":"Two policemen see their personal and professional lives fall apart in the wake of the \"Black Dahlia\" murder investigation.","id":"9676","runtime":121,"imdbId":"tt0387877","version":207,"lastModified":"1302062678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4bf019b1017a3c3e8e0000bc\/the-black-dahlia-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"The Black Dahlia","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"35352"} +{"label":"James Otis","version":21,"id":"58473","lastModified":"1301902272000","name":"James Otis","type":"Person","_key":"35353"} +{"label":"Anthony Russell","version":22,"id":"58474","lastModified":"1301902095000","name":"Anthony Russell","type":"Person","_key":"35354"} +{"label":"Angus MacInnes","version":28,"id":"58475","lastModified":"1301902352000","name":"Angus MacInnes","type":"Person","_key":"35355"} +{"label":"Staplerfahrer Klaus - Der erste Arbeitstag","description":"No overview found.","id":"9677","runtime":9,"imdbId":"tt0289477","homepage":"http:\/\/www.staplerfahrerklaus.de\/","version":69,"lastModified":"1301903601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/310\/4bc92807017a3c57fe010310\/staplerfahrer-klaus-der-erste-arbeitstag-mid.jpg","studio":"Trigon Film","genre":"Comedy","title":"Staplerfahrer Klaus - Der erste Arbeitstag","releaseDate":946684800000,"language":"en","type":"Movie","_key":"35356"} +{"label":"Gustav Adolph Artz","version":20,"id":"58480","lastModified":"1301902179000","name":"Gustav Adolph Artz","type":"Person","_key":"35357"} +{"label":"J\u00fcrgen Kittel","version":20,"id":"58481","lastModified":"1301902028000","name":"J\u00fcrgen Kittel","type":"Person","_key":"35358"} +{"label":"Soncke M. Korries","version":20,"id":"58482","lastModified":"1301902190000","name":"Soncke M. Korries","type":"Person","_key":"35359"} +{"label":"Stefan Prehn","version":21,"id":"58483","lastModified":"1301901785000","name":"Stefan Prehn","type":"Person","_key":"35360"} +{"label":"J\u00f6rg Wagner","version":21,"id":"25509","lastModified":"1301901785000","name":"J\u00f6rg Wagner","type":"Person","_key":"35361"} +{"label":"Little Nicky","description":"After the lord of darkness decides he will not cede his thrown to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.","id":"9678","runtime":90,"imdbId":"tt0185431","version":143,"lastModified":"1301903003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/319\/4bc92808017a3c57fe010319\/little-nicky-mid.jpg","genre":"Comedy","title":"Little Nicky","releaseDate":973814400000,"language":"en","tagline":"He's Never Been To Earth. He's Never Even Slept Over Some Other Dude's House.","type":"Movie","_key":"35362"} +{"label":"Jonathan Loughran","version":33,"id":"58477","lastModified":"1301901826000","name":"Jonathan Loughran","type":"Person","_key":"35363"} +{"label":"Gone in Sixty Seconds","description":"Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.","id":"9679","runtime":117,"imdbId":"tt0187078","trailer":"http:\/\/www.youtube.com\/watch?v=FEjylGwkX8o","version":181,"lastModified":"1301901357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/081\/4c7867815e73d613d3000081\/gone-in-sixty-seconds-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Gone in Sixty Seconds","releaseDate":960163200000,"language":"en","tagline":"Ice Cold, Hot Wired.","type":"Movie","_key":"35364"} +{"label":"T.J. Cross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e3\/4d1904835e73d6083400a0e3\/t-j-cross-profile.jpg","version":29,"id":"58497","lastModified":"1301901458000","name":"T.J. Cross","type":"Person","_key":"35365"} +{"label":"Dominic Sena","version":60,"id":"58498","lastModified":"1301901175000","name":"Dominic Sena","type":"Person","_key":"35366"} +{"label":"Uncle Sam","description":"No overview found.","id":"9680","runtime":89,"imdbId":"tt0118025","version":101,"lastModified":"1301903717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33c\/4bc9280e017a3c57fe01033c\/uncle-sam-mid.jpg","genre":"Horror","title":"Uncle Sam","releaseDate":867974400000,"language":"en","type":"Movie","_key":"35367"} +{"label":"David 'Shark' Fralick","version":26,"id":"58488","lastModified":"1301901650000","name":"David 'Shark' Fralick","type":"Person","_key":"35368"} +{"label":"Christopher Ogden","version":20,"id":"58489","lastModified":"1301902004000","name":"Christopher Ogden","type":"Person","_key":"35369"} +{"label":"Leslie Neale","version":20,"id":"58490","lastModified":"1301901994000","name":"Leslie Neale","type":"Person","_key":"35370"} +{"label":"Matthew Flint","version":20,"id":"58491","lastModified":"1301902338000","name":"Matthew Flint","type":"Person","_key":"35371"} +{"label":"Anne Tremko","version":20,"id":"58492","lastModified":"1301901956000","name":"Anne Tremko","type":"Person","_key":"35372"} +{"label":"Tim Grimm","version":21,"id":"58493","lastModified":"1301902177000","name":"Tim Grimm","type":"Person","_key":"35373"} +{"label":"Tom McFadden","version":23,"id":"58494","lastModified":"1301901830000","name":"Tom McFadden","type":"Person","_key":"35374"} +{"label":"Morgan Paull","version":21,"id":"58495","lastModified":"1301902338000","name":"Morgan Paull","type":"Person","_key":"35375"} +{"label":"Richard Cummings Jr.","version":20,"id":"58496","lastModified":"1301902363000","name":"Richard Cummings Jr.","type":"Person","_key":"35376"} +{"label":"Casanova","description":"Heath Ledger plays the fabled romantic as a man who, after failing to win the affection of a particular Venetian woman, strives to discover the real meaning of love.","id":"9681","runtime":111,"imdbId":"tt0402894","version":317,"lastModified":"1301902679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/345\/4bc9280f017a3c57fe010345\/casanova-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Casanova","releaseDate":1135468800000,"language":"en","type":"Movie","_key":"35377"} +{"label":"Stephen Greif","version":22,"id":"58501","lastModified":"1301901730000","name":"Stephen Greif","type":"Person","_key":"35378"} +{"label":"Natalie Dormer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/551\/4bf3b46f017a3c3212000551\/natalie-dormer-profile.jpg","biography":"Natalie Dormer (born 11 February 1982 in Reading, Berkshire, England, UK) is an English actress. She is best known for her roles in Casanova as Victoria and as the ill-fated Tudor queen, Anne Boleyn in the Showtime series The Tudors. She is also a descendant of the family of Jane Dormer.","version":18,"birthday":"382230000000","id":"58502","birthplace":"Reading, UK","lastModified":"1301901475000","name":"Natalie Dormer","type":"Person","_key":"35379"} +{"label":"Paddy Ward","version":21,"id":"58503","lastModified":"1301901814000","name":"Paddy Ward","type":"Person","_key":"35380"} +{"label":"Pulse","description":"When their computer hacker friend accidentally channels a mysterious wireless signal, a group of co-eds rally to stop a terrifying evil from taking over the world.","id":"9682","runtime":90,"imdbId":"tt0454919","homepage":"http:\/\/www.pulsethemovie.net\/","version":194,"lastModified":"1301902614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35d\/4bc92810017a3c57fe01035d\/pulse-mid.jpg","studio":"The Weinstein Company","genre":"Horror","title":"Pulse","releaseDate":1155254400000,"language":"en","tagline":"You are now infected.","type":"Movie","_key":"35381"} +{"label":"Kristen Bell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4bc98e2f017a3c181c000024\/kristen-bell-profile.jpg","biography":"<FONT size=3><FONT face=Calibri><B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>Kristen Anne Bell <\/SPAN><\/B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>(born July 18, 1980 in Huntington Woods, Michigan) is an American actress. Although her first film role was an uncredited appearance in Polish Wedding, Bell p","version":92,"birthday":"332719200000","id":"40462","birthplace":"Huntington Woods, Michigan, USA ","lastModified":"1301904061000","name":"Kristen Bell","type":"Person","_key":"35382"} +{"label":"Samm Levine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06b\/4c8eb34f5e73d6149300006b\/samm-levine-profile.jpg","version":44,"id":"58507","lastModified":"1301901225000","name":"Samm Levine","type":"Person","_key":"35383"} +{"label":"Joseph Gatt","version":22,"id":"58508","lastModified":"1301902382000","name":"Joseph Gatt","type":"Person","_key":"35384"} +{"label":"Kel O'Neill","version":26,"id":"58509","lastModified":"1301901553000","name":"Kel O'Neill","type":"Person","_key":"35385"} +{"label":"John Burke","version":24,"id":"58510","lastModified":"1301902211000","name":"John Burke","type":"Person","_key":"35386"} +{"label":"Mike J. Regan","version":36,"id":"23493","lastModified":"1302065848000","name":"Mike J. Regan","type":"Person","_key":"35387"} +{"label":"Steve Tom","version":22,"id":"58512","lastModified":"1301902392000","name":"Steve Tom","type":"Person","_key":"35388"} +{"label":"Jim Sonzero","version":22,"id":"58514","lastModified":"1301901587000","name":"Jim Sonzero","type":"Person","_key":"35389"} +{"label":"Bubble Boy","description":"\"Bubble Boy\" is a comedy about a young man who was born without an immune system and has lived his life within a plastic bubble in his bedroom...","id":"9683","runtime":84,"imdbId":"tt0258470","version":109,"lastModified":"1301903336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4bc92813017a3c57fe010366\/bubble-boy-mid.jpg","genre":"Adventure","title":"Bubble Boy","releaseDate":998611200000,"language":"en","type":"Movie","_key":"35390"} +{"label":"Brian George","version":26,"id":"58511","lastModified":"1301901129000","name":"Brian George","type":"Person","_key":"35391"} +{"label":"Patrick Cranshaw","version":26,"id":"58513","lastModified":"1301901971000","name":"Patrick Cranshaw","type":"Person","_key":"35392"} +{"label":"Ever Carradine","version":21,"id":"41557","lastModified":"1301901848000","name":"Ever Carradine","type":"Person","_key":"35393"} +{"label":"Beetlejuice","version":19,"id":"58516","lastModified":"1301901882000","name":"Beetlejuice","type":"Person","_key":"35394"} +{"label":"Bonnie Morgan","version":19,"id":"58517","lastModified":"1301902272000","name":"Bonnie Morgan","type":"Person","_key":"35395"} +{"label":"Blair Hayes","version":20,"id":"58518","lastModified":"1301901581000","name":"Blair Hayes","type":"Person","_key":"35396"} +{"label":"Sweet and Lowdown","description":"A comedic biopic focused on the life of fictional jazz guitarist Emmett Ray. Ray was an irresponsible, free-spending, arrogant, obnoxious, alcohol-abusing, miserable human being, who was also arguably the best guitarist in the world. ","id":"9684","runtime":95,"imdbId":"tt0158371","version":175,"lastModified":"1301903103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36f\/4bc92814017a3c57fe01036f\/sweet-and-lowdown-mid.jpg","genre":"Comedy","title":"Sweet and Lowdown","releaseDate":944179200000,"language":"en","type":"Movie","_key":"35397"} +{"label":"Ben Duncan","version":19,"id":"58519","lastModified":"1301901382000","name":"Ben Duncan","type":"Person","_key":"35398"} +{"label":"Daniel Okrent","version":19,"id":"58520","lastModified":"1301901382000","name":"Daniel Okrent","type":"Person","_key":"35399"} +{"label":"Constance Shulman","version":19,"id":"58521","lastModified":"1301901730000","name":"Constance Shulman","type":"Person","_key":"35400"} +{"label":"Kellie Overbey","version":20,"id":"58522","lastModified":"1301901537000","name":"Kellie Overbey","type":"Person","_key":"35401"} +{"label":"Darryl Alan Reed","version":19,"id":"58523","lastModified":"1301901730000","name":"Darryl Alan Reed","type":"Person","_key":"35402"} +{"label":"Marc Damon Johnson","version":19,"id":"58524","lastModified":"1301901730000","name":"Marc Damon Johnson","type":"Person","_key":"35403"} +{"label":"Ron C. Jones","version":19,"id":"58525","lastModified":"1301901730000","name":"Ron C. Jones","type":"Person","_key":"35404"} +{"label":"Steve Bargonetti","version":19,"id":"58526","lastModified":"1301901730000","name":"Steve Bargonetti","type":"Person","_key":"35405"} +{"label":"Benjamin Franklin Brown","version":19,"id":"58527","lastModified":"1301901730000","name":"Benjamin Franklin Brown","type":"Person","_key":"35406"} +{"label":"James Urbaniak","version":26,"id":"58528","lastModified":"1301901475000","name":"James Urbaniak","type":"Person","_key":"35407"} +{"label":"Igby Goes Down","description":"A young man's peculiar upbringing renders him unable to competently cope with the struggle of growing up.","id":"9685","runtime":97,"imdbId":"tt0280760","version":135,"lastModified":"1301902613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/378\/4bc92815017a3c57fe010378\/igby-goes-down-mid.jpg","genre":"Comedy","title":"Igby Goes Down","releaseDate":1051747200000,"language":"en","type":"Movie","_key":"35408"} +{"label":"Bill Irwin","version":35,"id":"58549","lastModified":"1301901715000","name":"Bill Irwin","type":"Person","_key":"35409"} +{"label":"Gannon Forrester","version":19,"id":"58550","lastModified":"1301901730000","name":"Gannon Forrester","type":"Person","_key":"35410"} +{"label":"Elizabeth Jagger","version":19,"id":"58551","lastModified":"1301901730000","name":"Elizabeth Jagger","type":"Person","_key":"35411"} +{"label":"Burr Steers","version":43,"id":"58552","lastModified":"1301901418000","name":"Burr Steers","type":"Person","_key":"35412"} +{"label":"New York Stories","description":"Three stories happening in New York. The first, by Scorsese, is about a painter who creates his works helped by high volume music and an attractive assistant; second, by Coppola, is about a rich and bold 12 years old who helps her separated parents to reconciliate; third, by Allen, is a witty piece of comedy about the impossibility of getting rid of the son's role.","id":"9686","runtime":124,"imdbId":"tt0097965","version":115,"lastModified":"1301904800000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c7\/4d00fd1a5e73d6299a0069c7\/new-york-stories-mid.jpg","genre":"Comedy","title":"New York Stories","releaseDate":605491200000,"language":"en","tagline":"One city, three stories tall.","type":"Movie","_key":"35413"} +{"label":"Marvin Chatinover","version":23,"id":"58529","lastModified":"1301901475000","name":"Marvin Chatinover","type":"Person","_key":"35414"} +{"label":"Mae Questel","version":21,"id":"58530","lastModified":"1301901661000","name":"Mae Questel","type":"Person","_key":"35415"} +{"label":"Molly Regan","version":20,"id":"58531","lastModified":"1301901730000","name":"Molly Regan","type":"Person","_key":"35416"} +{"label":"Joan Bud","version":20,"id":"58532","lastModified":"1301901730000","name":"Joan Bud","type":"Person","_key":"35417"} +{"label":"Jessie Keosian","version":20,"id":"58533","lastModified":"1301901730000","name":"Jessie Keosian","type":"Person","_key":"35418"} +{"label":"Michael Rizzo","version":18,"id":"22009","lastModified":"1301901930000","name":"Michael Rizzo","type":"Person","_key":"35419"} +{"label":"George Schindler","version":20,"id":"58534","lastModified":"1301902095000","name":"George Schindler","type":"Person","_key":"35420"} +{"label":"Larry David","biography":"Producer, writer, actor. Born July 2, 1947 in Brooklyn, New York. David attended the University of Maryland and started doing stand-up comedy in New York night clubs in 1974. In 1979, he was hired to write and perform for the comedy variety show Fridays, which was modelled after Saturday Night Live. He stayed with the show until 1982 when he was hired as a writer for Saturday Night Live, where he worked for a year.\n\nIn 1989, David received a call from fellow New York comedian Jerry Seinfeld who ","version":44,"birthday":"-710128800000","id":"16376","birthplace":"Brooklyn, NY","lastModified":"1301901225000","name":"Larry David","type":"Person","_key":"35421"} +{"label":"Paul Herman","version":23,"id":"58535","lastModified":"1301901730000","name":"Paul Herman","type":"Person","_key":"35422"} +{"label":"Herschel Rosen","version":20,"id":"58536","lastModified":"1301901730000","name":"Herschel Rosen","type":"Person","_key":"35423"} +{"label":"Lola Andr\u00e9","version":20,"id":"58537","lastModified":"1301901730000","name":"Lola Andr\u00e9","type":"Person","_key":"35424"} +{"label":"Keeping Mum","description":"A pastor preoccupied with writing the perfect sermon fails to realize that his wife is having an affair and his children are up to no good.","id":"9687","runtime":103,"imdbId":"tt0444653","version":169,"lastModified":"1301902917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/398\/4bc92819017a3c57fe010398\/keeping-mum-mid.jpg","genre":"Comedy","title":"Keeping Mum","releaseDate":1133481600000,"language":"en","type":"Movie","_key":"35425"} +{"label":"Terry Alderton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e8\/4cd8761b5e73d676ce0005e8\/terry-alderton-profile.jpg","version":26,"birthday":"26175600000","id":"115137","birthplace":"Rochford, Essex, England, UK","lastModified":"1301902765000","name":"Terry Alderton","type":"Person","_key":"35426"} +{"label":"Niall Johnson","version":29,"id":"58547","lastModified":"1301902157000","name":"Niall Johnson","type":"Person","_key":"35427"} +{"label":"Melinda and Melinda","description":"No overview found.","id":"9688","runtime":100,"imdbId":"tt0378947","trailer":"http:\/\/www.youtube.com\/watch?v=BanSFjrqBEo","version":209,"lastModified":"1301904509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a6\/4c6468ab5e73d634620008a6\/melinda-and-melinda-mid.jpg","genre":"Comedy","title":"Melinda and Melinda","releaseDate":1099008000000,"language":"en","type":"Movie","_key":"35428"} +{"label":"Neil Pepe","version":20,"id":"58538","lastModified":"1301901730000","name":"Neil Pepe","type":"Person","_key":"35429"} +{"label":"Stephanie Roth Haberle","version":28,"id":"58539","lastModified":"1301901360000","name":"Stephanie Roth Haberle","type":"Person","_key":"35430"} +{"label":"Michael J. Farina","version":20,"id":"58540","lastModified":"1301902272000","name":"Michael J. Farina","type":"Person","_key":"35431"} +{"label":"Matt Servitto","version":22,"id":"58541","lastModified":"1301902324000","name":"Matt Servitto","type":"Person","_key":"35432"} +{"label":"Andy Borowitz","version":22,"id":"58542","lastModified":"1301902095000","name":"Andy Borowitz","type":"Person","_key":"35433"} +{"label":"Hollywood Ending","description":"Val Waxman is a film director who was once big in the 1970's and 1980's, but has now has been reduced to directing TV commercials. Finally, he gets an offer to make a big film. But, disaster strikes, when Val goes temporarily blind, due to paranoia. So, he and a few friends, try to cover up his disability, without the studio executives or the producers knowing that he is directing the film blind.","id":"9689","runtime":112,"imdbId":"tt0278823","version":142,"lastModified":"1301904754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3aa\/4bc9281d017a3c57fe0103aa\/hollywood-ending-mid.jpg","genre":"Comedy","title":"Hollywood Ending","releaseDate":1020384000000,"language":"en","type":"Movie","_key":"35434"} +{"label":"Ivan Martin","version":22,"id":"58543","lastModified":"1301901814000","name":"Ivan Martin","type":"Person","_key":"35435"} +{"label":"Neal Huff","version":22,"id":"58544","lastModified":"1301901680000","name":"Neal Huff","type":"Person","_key":"35436"} +{"label":"Bill Gerber","version":49,"id":"41551","lastModified":"1302068432000","name":"Bill Gerber","type":"Person","_key":"35437"} +{"label":"Roxanne Perry","version":20,"id":"58545","lastModified":"1301901814000","name":"Roxanne Perry","type":"Person","_key":"35438"} +{"label":"Barbara Carroll","version":20,"id":"58546","lastModified":"1301901822000","name":"Barbara Carroll","type":"Person","_key":"35439"} +{"label":"Verschwende deine Jugend","description":"No overview found.","id":"9690","runtime":97,"imdbId":"tt0327227","version":98,"lastModified":"1301904953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4c6573ac5e73d63c86000742\/verschwende-deine-jugend-mid.jpg","genre":"Comedy","title":"Verschwende deine Jugend","releaseDate":1057104000000,"language":"en","type":"Movie","_key":"35440"} +{"label":"Nina Asseng","version":19,"id":"58554","lastModified":"1301902095000","name":"Nina Asseng","type":"Person","_key":"35441"} +{"label":"Steffen J\u00fcrgens","version":24,"id":"58555","lastModified":"1301902213000","name":"Steffen J\u00fcrgens","type":"Person","_key":"35442"} +{"label":"Assassins","description":"Robert Rath (Sylvester Stallone) is a seasoned hitman who just wants out of the business with no back talk...","id":"9691","runtime":132,"imdbId":"tt0112401","trailer":"http:\/\/www.youtube.com\/watch?v=93EJrlTDMQc","version":162,"lastModified":"1302042895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bed924e017a3c458e00001d\/assassins-mid.jpg","genre":"Action","title":"Assassins","releaseDate":812937600000,"language":"en","type":"Movie","_key":"35443"} +{"label":"Anatoli Davydov","version":23,"id":"58556","lastModified":"1301901614000","name":"Anatoli Davydov","type":"Person","_key":"35444"} +{"label":"Kerry Skalsky","version":22,"id":"58557","lastModified":"1301902095000","name":"Kerry Skalsky","type":"Person","_key":"35445"} +{"label":"James Douglas Haskins","version":25,"id":"58558","lastModified":"1301902203000","name":"James Douglas Haskins","type":"Person","_key":"35446"} +{"label":"Stephen Liska","version":26,"id":"58559","lastModified":"1301901993000","name":"Stephen Liska","type":"Person","_key":"35447"} +{"label":"John Harms","version":22,"id":"58560","lastModified":"1301902272000","name":"John Harms","type":"Person","_key":"35448"} +{"label":"Edward J. Rosen","version":22,"id":"58561","lastModified":"1301902095000","name":"Edward J. Rosen","type":"Person","_key":"35449"} +{"label":"Christina Orchid","version":22,"id":"58562","lastModified":"1301902095000","name":"Christina Orchid","type":"Person","_key":"35450"} +{"label":"The Woodsman","description":"A pedophile returns to his hometown after 12 years in prison and attempts to start a new life. ","id":"9692","runtime":87,"imdbId":"tt0361127","version":186,"lastModified":"1301903901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c1\/4bc9281e017a3c57fe0103c1\/the-woodsman-mid.jpg","studio":"Dash Films","genre":"Drama","title":"The Woodsman","releaseDate":1103846400000,"language":"en","type":"Movie","_key":"35451"} +{"label":"David Alan Grier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57e\/4d81572d7b9aa12db000157e\/david-alan-grier-profile.jpg","version":46,"id":"58563","lastModified":"1301901586000","name":"David Alan Grier","type":"Person","_key":"35452"} +{"label":"Carlos Leon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36a\/4c61714a5e73d6345f00036a\/carlos-leon-profile.jpg","version":29,"id":"58565","lastModified":"1301901533000","name":"Carlos Leon","type":"Person","_key":"35453"} +{"label":"Kevin Rice","version":21,"id":"58566","lastModified":"1301902095000","name":"Kevin Rice","type":"Person","_key":"35454"} +{"label":"Hannah Pilkes","version":21,"id":"58567","lastModified":"1301902095000","name":"Hannah Pilkes","type":"Person","_key":"35455"} +{"label":"Jessica Nagle","version":21,"id":"58568","lastModified":"1301902095000","name":"Jessica Nagle","type":"Person","_key":"35456"} +{"label":"Liam Daniels","version":21,"id":"58569","lastModified":"1301902095000","name":"Liam Daniels","type":"Person","_key":"35457"} +{"label":"Joey Hazinsky","version":21,"id":"58570","lastModified":"1301902095000","name":"Joey Hazinsky","type":"Person","_key":"35458"} +{"label":"Clara Hopkins Daniels","version":21,"id":"58571","lastModified":"1301902095000","name":"Clara Hopkins Daniels","type":"Person","_key":"35459"} +{"label":"Ashley C. Coombs","version":21,"id":"58572","lastModified":"1301902095000","name":"Ashley C. Coombs","type":"Person","_key":"35460"} +{"label":"Nicole Kassell","version":27,"id":"58573","lastModified":"1301902095000","name":"Nicole Kassell","type":"Person","_key":"35461"} +{"label":"Children of Men","description":"In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.","id":"9693","runtime":109,"imdbId":"tt0206634","trailer":"http:\/\/www.youtube.com\/watch?v=HsX-RkRCAPI","version":377,"lastModified":"1301901327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d6\/4bc92823017a3c57fe0103d6\/children-of-men-mid.jpg","studio":"Universal Pictures","genre":"Adventure","title":"Children of Men","releaseDate":1157241600000,"language":"en","tagline":"The future's a thing of the past.","type":"Movie","_key":"35462"} +{"label":"Juan Gabriel Yacuzzi","version":27,"id":"58575","lastModified":"1301901342000","name":"Juan Gabriel Yacuzzi","type":"Person","_key":"35463"} +{"label":"Mishal Husain","version":27,"id":"58576","lastModified":"1301901342000","name":"Mishal Husain","type":"Person","_key":"35464"} +{"label":"Rob Curling","version":27,"id":"58577","lastModified":"1301901387000","name":"Rob Curling","type":"Person","_key":"35465"} +{"label":"Jon Chevalier","version":27,"id":"58578","lastModified":"1301901436000","name":"Jon Chevalier","type":"Person","_key":"35466"} +{"label":"Rita Davies","version":30,"id":"58579","lastModified":"1301901424000","name":"Rita Davies","type":"Person","_key":"35467"} +{"label":"Kim Fenton","version":27,"id":"58580","lastModified":"1301901436000","name":"Kim Fenton","type":"Person","_key":"35468"} +{"label":"Chris Gilbert","version":27,"id":"58581","lastModified":"1301901483000","name":"Chris Gilbert","type":"Person","_key":"35469"} +{"label":"Phoebe Hawthorne","version":27,"id":"58582","lastModified":"1301901483000","name":"Phoebe Hawthorne","type":"Person","_key":"35470"} +{"label":"Rebecca Howard","version":27,"id":"58583","lastModified":"1301901483000","name":"Rebecca Howard","type":"Person","_key":"35471"} +{"label":"Atalanta White","version":27,"id":"58584","lastModified":"1301901483000","name":"Atalanta White","type":"Person","_key":"35472"} +{"label":"Laurence Woodbridge","version":27,"id":"58585","lastModified":"1301901483000","name":"Laurence Woodbridge","type":"Person","_key":"35473"} +{"label":"Maria McErlane","version":27,"id":"58586","lastModified":"1301901436000","name":"Maria McErlane","type":"Person","_key":"35474"} +{"label":"Paul Sharma","version":27,"id":"58587","lastModified":"1301901761000","name":"Paul Sharma","type":"Person","_key":"35475"} +{"label":"Clare-Hope Ashitey","version":28,"id":"64986","lastModified":"1301901387000","name":"Clare-Hope Ashitey","type":"Person","_key":"35476"} +{"label":"Dhaffer L'Abidine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f65\/4d8bd46d7b9aa13aed001f65\/dhaffer-l-abidine-profile.jpg","biography":"Bri\u00e8vement joueur de football professionnel, il entame des \u00e9tudes en informatique, tout en devenant mannequin pour l'agence parisienne Metropolitan. Devenu assistant du r\u00e9alisateur Moncef Dhouib, il entre \u00e0 la Birmingham School of Speech and Drama.\n\nD\u00e8s 2002, il se lance dans une carri\u00e8re d'acteur au Royaume-Uni. Il joue dans des s\u00e9ries britanniques comme Dream Team diffus\u00e9e sur Sky , Spooks sur la BBC et The Bill sur ITV. Au cin\u00e9ma, il joue le r\u00f4le dans le t\u00e9l\u00e9film controvers\u00e9 The Mark of Cain.","version":43,"birthday":"68166000000","id":"129014","birthplace":"tunis, Tunisie","lastModified":"1301902584000","name":"Dhaffer L'Abidine","type":"Person","_key":"35477"} +{"label":"One Missed Call","description":"People mysteriously start receiving voicemail messages from their future selves, in the form of the sound of them reacting to their own violent deaths, along with the exact date and time of their future death, listed on the message log. The plot thickens as the surviving characters persue the answers to this mystery which could save their live","id":"9694","runtime":112,"imdbId":"tt0366292","version":108,"lastModified":"1301905117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/405\/4bc9282a017a3c57fe010405\/chakushin-ari-mid.jpg","genre":"Horror","title":"One Missed Call","releaseDate":1074297600000,"language":"en","type":"Movie","_key":"35478"} +{"label":"K\u00f4 Shibasaki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e0\/4d90bcef7b9aa167610036e0\/k-shibasaki-profile.jpg","version":36,"id":"58593","lastModified":"1301901238000","name":"K\u00f4 Shibasaki","type":"Person","_key":"35479"} +{"label":"Shin'ichi Tsutsumi","version":25,"id":"58596","lastModified":"1301901473000","name":"Shin'ichi Tsutsumi","type":"Person","_key":"35480"} +{"label":"Kazue Fukiishi","version":26,"id":"58601","lastModified":"1301901581000","name":"Kazue Fukiishi","type":"Person","_key":"35481"} +{"label":"Anna Nagata","version":22,"id":"58607","lastModified":"1301901686000","name":"Anna Nagata","type":"Person","_key":"35482"} +{"label":"Karla","description":"Based on real events, Paul Bernardo (Collins) and his wife, Karla Homolka (Prepon), kidnap, sexually abuse, and murder three young girls.","id":"9695","runtime":99,"imdbId":"tt0424938","trailer":"http:\/\/www.youtube.com\/watch?v=1670","version":147,"lastModified":"1301907104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40e\/4bc9282a017a3c57fe01040e\/karla-mid.jpg","genre":"Crime","title":"Karla","releaseDate":1137715200000,"language":"en","type":"Movie","_key":"35483"} +{"label":"Misha Collins","version":21,"id":"42747","lastModified":"1301901882000","name":"Misha Collins","type":"Person","_key":"35484"} +{"label":"Emilie Jacobs","version":20,"id":"58589","lastModified":"1301901994000","name":"Emilie Jacobs","type":"Person","_key":"35485"} +{"label":"Alex Boyd","version":19,"id":"58590","lastModified":"1301902272000","name":"Alex Boyd","type":"Person","_key":"35486"} +{"label":"Fiona Manners","version":19,"id":"58591","lastModified":"1301902272000","name":"Fiona Manners","type":"Person","_key":"35487"} +{"label":"Shawn Hoffman","version":21,"id":"58592","lastModified":"1301902194000","name":"Shawn Hoffman","type":"Person","_key":"35488"} +{"label":"Adam Lieberman","version":19,"id":"58594","lastModified":"1301902272000","name":"Adam Lieberman","type":"Person","_key":"35489"} +{"label":"Cherilyn Hayres","version":21,"id":"58595","lastModified":"1301902124000","name":"Cherilyn Hayres","type":"Person","_key":"35490"} +{"label":"William Duffy","version":22,"id":"58597","lastModified":"1301901882000","name":"William Duffy","type":"Person","_key":"35491"} +{"label":"Tanya Lemelle","version":19,"id":"58598","lastModified":"1301902272000","name":"Tanya Lemelle","type":"Person","_key":"35492"} +{"label":"Tony Shawkat","version":19,"id":"58599","lastModified":"1301902272000","name":"Tony Shawkat","type":"Person","_key":"35493"} +{"label":"Kristen Honey","version":19,"id":"58600","lastModified":"1301902272000","name":"Kristen Honey","type":"Person","_key":"35494"} +{"label":"Cole James","version":19,"id":"58602","lastModified":"1301902272000","name":"Cole James","type":"Person","_key":"35495"} +{"label":"Joel Bender","version":23,"id":"58603","lastModified":"1301901730000","name":"Joel Bender","type":"Person","_key":"35496"} +{"label":"Ichi the Killer","description":"Yakuza boss Anjo disappears with three hundred million yen. His loyal gang members, lead by the masochist Kakihara, start a search, but their aggressive and gory methods worry the other yakuza gangs. Kakiharas most frightening counterpart is the mysterious Ichi, a psychopathic killer with a dark childhood secret, who is controlled by a retired cop.","id":"9696","runtime":129,"imdbId":"tt0296042","version":133,"lastModified":"1301902589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a4\/4c204eeb7b9aa1317c0000a4\/koroshiya-1-mid.jpg","studio":"Omega Project","genre":"Action","title":"Ichi the Killer","releaseDate":1027555200000,"language":"en","tagline":"Love really hurts.","type":"Movie","_key":"35497"} +{"label":"Nao Omori","version":32,"id":"58604","lastModified":"1301901592000","name":"Nao Omori","type":"Person","_key":"35498"} +{"label":"Shinya Tsukamoto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8af\/4d2763707b9aa134cf0018af\/shinya-tsukamoto-profile.jpg","version":66,"id":"58608","lastModified":"1301901222000","name":"Shinya Tsukamoto","type":"Person","_key":"35499"} +{"label":"Toru Tezuka","version":24,"id":"58609","lastModified":"1301901998000","name":"Toru Tezuka","type":"Person","_key":"35500"} +{"label":"Yoshiki Arizono","version":25,"id":"58610","lastModified":"1301901778000","name":"Yoshiki Arizono","type":"Person","_key":"35501"} +{"label":"Kiyohiko Shibukawa","version":25,"id":"58611","lastModified":"1301901573000","name":"Kiyohiko Shibukawa","type":"Person","_key":"35502"} +{"label":"Satoshi Niizuma","version":24,"id":"58612","lastModified":"1301902025000","name":"Satoshi Niizuma","type":"Person","_key":"35503"} +{"label":"Suzuki Matsuo","version":34,"id":"58613","lastModified":"1301901380000","name":"Suzuki Matsuo","type":"Person","_key":"35504"} +{"label":"Hiroyuki Tanaka","version":24,"id":"58614","lastModified":"1301902019000","name":"Hiroyuki Tanaka","type":"Person","_key":"35505"} +{"label":"Moro Morooka","version":28,"id":"58615","lastModified":"1301902133000","name":"Moro Morooka","type":"Person","_key":"35506"} +{"label":"Lady in the Water","description":"Apartment building superintendent Cleveland Heep rescues what he thinks is a young woman from the pool he maintains. When he discovers that she is actually a character from a bedtime story who is trying to make the journey back to her home, he works with his tenants to protect his new friend from the creatures that are determined to keep her in our world.","id":"9697","runtime":110,"imdbId":"tt0452637","version":299,"lastModified":"1301901882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4d\/4d4f59077b9aa13aba00ad4d\/lady-in-the-water-mid.jpg","genre":"Comedy","title":"Lady in the Water","releaseDate":1153440000000,"language":"en","tagline":"Time is running out for a happy ending.","type":"Movie","_key":"35507"} +{"label":"Cindy Cheung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e84\/4d27ea827b9aa134cb001e84\/cindy-cheung-profile.jpg","version":24,"id":"58619","lastModified":"1301901843000","name":"Cindy Cheung","type":"Person","_key":"35508"} +{"label":"Noah Gray-Cabey","version":20,"id":"17302","lastModified":"1301901994000","name":"Noah Gray-Cabey","type":"Person","_key":"35509"} +{"label":"Joseph D. Reitman","version":24,"id":"58620","lastModified":"1301901637000","name":"Joseph D. Reitman","type":"Person","_key":"35510"} +{"label":"John Boyd","version":24,"id":"58621","lastModified":"1301902056000","name":"John Boyd","type":"Person","_key":"35511"} +{"label":"Straight to Hell","description":"A gang of bank robbers with a suitcase full of money go to the desert to hide out. After burying the loot, they find their way to a surreal town full of cowboys who drink an awful lot of coffee.","id":"9698","runtime":86,"imdbId":"tt0094048","version":142,"lastModified":"1301905278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43e\/4bc92832017a3c57fe01043e\/straight-to-hell-mid.png","studio":"Commies From Mars Corporation","genre":"Action","title":"Straight to Hell","releaseDate":551664000000,"language":"en","type":"Movie","_key":"35512"} +{"label":"Dick Rude","version":27,"id":"58622","lastModified":"1301901315000","name":"Dick Rude","type":"Person","_key":"35513"} +{"label":"Sy Richardson","version":28,"id":"58623","lastModified":"1301902176000","name":"Sy Richardson","type":"Person","_key":"35514"} +{"label":"Joe Strummer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b56\/4d41f7db5e73d65725000b56\/joe-strummer-profile.jpg","version":32,"id":"58296","lastModified":"1301901547000","name":"Joe Strummer","type":"Person","_key":"35515"} +{"label":"Gloria Miralles Ruiz","version":20,"id":"58624","lastModified":"1301902272000","name":"Gloria Miralles Ruiz","type":"Person","_key":"35516"} +{"label":"Juan Uribe","version":20,"id":"58625","lastModified":"1301902272000","name":"Juan Uribe","type":"Person","_key":"35517"} +{"label":"Joe Cashman","version":20,"id":"58626","lastModified":"1301902272000","name":"Joe Cashman","type":"Person","_key":"35518"} +{"label":"Jose Pomedio Monedero","version":20,"id":"58627","lastModified":"1301902272000","name":"Jose Pomedio Monedero","type":"Person","_key":"35519"} +{"label":"Sara Sugarman","version":30,"id":"58628","lastModified":"1301901614000","name":"Sara Sugarman","type":"Person","_key":"35520"} +{"label":"Jennifer Balgobin","version":20,"id":"58629","lastModified":"1301902272000","name":"Jennifer Balgobin","type":"Person","_key":"35521"} +{"label":"Shane MacGowan","version":21,"id":"58630","lastModified":"1301902272000","name":"Shane MacGowan","type":"Person","_key":"35522"} +{"label":"Spider Stacy","version":20,"id":"58631","lastModified":"1301902272000","name":"Spider Stacy","type":"Person","_key":"35523"} +{"label":"Frank Murray","version":21,"id":"58632","lastModified":"1301902367000","name":"Frank Murray","type":"Person","_key":"35524"} +{"label":"Zander Schloss","version":18,"id":"99404","lastModified":"1301902911000","name":"Zander Schloss","type":"Person","_key":"35525"} +{"label":"Alex Cox","version":53,"id":"31493","lastModified":"1301901400000","name":"Alex Cox","type":"Person","_key":"35526"} +{"label":"Trail of the Pink Panther","description":"The Pink Panther diamond is stolen once again from Lugash and the authorities call in Chief Inspector Clouseau from France. His plane disappears en-route. This time, famous French TV reporter Marie Jouvet sets out to solve the mystery and starts to interview everybody connected to Clouseau.","id":"9699","runtime":96,"imdbId":"tt0084814","trailer":"http:\/\/www.youtube.com\/watch?v=WrIyo9bVlDY","version":162,"lastModified":"1301903439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/447\/4bc92833017a3c57fe010447\/trail-of-the-pink-panther-mid.png","studio":"Titan Productions","genre":"Comedy","title":"Trail of the Pink Panther","releaseDate":408931200000,"language":"en","type":"Movie","_key":"35527"} +{"label":"Richard Mulligan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/068\/4d9a68425e73d64764000068\/richard-mulligan-profile.jpg","version":43,"id":"58661","lastModified":"1301957667000","name":"Richard Mulligan","type":"Person","_key":"35528"} +{"label":"The Lost City","description":"In Havana, Cuba in the late 1950's, a wealthy family, one of whose sons is a prominent nightclub owner, is caught in the violent transition from the oppressive regime of Batista to the Marxist government of Fidel Castro. Castro's regime ultimately leads the nightclub owner to flee to New York.","id":"9700","runtime":144,"imdbId":"tt0343996","version":200,"lastModified":"1301906804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/450\/4bc92835017a3c57fe010450\/the-lost-city-mid.jpg","studio":"Lions Gate Films","genre":"Drama","title":"The Lost City","releaseDate":1150416000000,"language":"en","type":"Movie","_key":"35529"} +{"label":"Dominik Garc\u00eda-Lorido","version":31,"id":"58635","lastModified":"1301901509000","name":"Dominik Garc\u00eda-Lorido","type":"Person","_key":"35530"} +{"label":"Lorena Feij\u00f3o","version":22,"id":"58636","lastModified":"1301901614000","name":"Lorena Feij\u00f3o","type":"Person","_key":"35531"} +{"label":"William Marquez","version":23,"id":"58637","lastModified":"1301901770000","name":"William Marquez","type":"Person","_key":"35532"} +{"label":"North Country","description":"A fictionalized account of the first major successful sexual harassment case in the United States -- Jenson vs. Eveleth Mines, where a woman who endured a range of abuse while working as a miner filed and won the landmark 1984 lawsuit.","id":"9701","runtime":126,"imdbId":"tt0395972","homepage":"http:\/\/northcountrymovie.warnerbros.com\/","version":223,"lastModified":"1301903743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45d\/4bc92838017a3c57fe01045d\/north-country-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"North Country","releaseDate":1126483200000,"language":"en","type":"Movie","_key":"35533"} +{"label":"Elle Peterson","version":20,"id":"58640","lastModified":"1301901730000","name":"Elle Peterson","type":"Person","_key":"35534"} +{"label":"Thomas Curtis","version":21,"id":"58641","lastModified":"1301901630000","name":"Thomas Curtis","type":"Person","_key":"35535"} +{"label":"Linda Emond","version":21,"id":"58643","lastModified":"1301901774000","name":"Linda Emond","type":"Person","_key":"35536"} +{"label":"Blood In Blood Out","description":"Blood In Blood Out (also known as Bound by Honor) is a 1993 crime drama film directed by Taylor Hackford. It follows the intertwining lives of the three Chicano relatives, Miklo (Damian Chapa), Cruz (Jesse Borrego) and Paco (Benjamin Bratt) from 1972 through to the mid 1980s.","id":"9702","runtime":180,"imdbId":"tt0106469","trailer":"http:\/\/www.youtube.com\/watch?v=EgXh-jXG-Vk","version":115,"lastModified":"1302036099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46f\/4bc9283c017a3c57fe01046f\/bound-by-honor-mid.jpg","studio":"Hollywood Pictures","genre":"Action","title":"Blood In Blood Out","releaseDate":734918400000,"language":"en","tagline":"An epic story of three brothers. Bound by blood. Divided by fate. Driven by destiny.","type":"Movie","_key":"35537"} +{"label":"Jesse Borrego","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d7\/4d533ca17b9aa1193e0069d7\/jesse-borrego-profile.jpg","version":27,"id":"58647","lastModified":"1302036098000","name":"Jesse Borrego","type":"Person","_key":"35538"} +{"label":"Victor Rivers","version":32,"id":"58648","lastModified":"1302036098000","name":"Victor Rivers","type":"Person","_key":"35539"} +{"label":"Teddy Wilson","version":27,"id":"58649","lastModified":"1302036098000","name":"Teddy Wilson","type":"Person","_key":"35540"} +{"label":"Geoffrey Rivas","version":28,"id":"58651","lastModified":"1302036099000","name":"Geoffrey Rivas","type":"Person","_key":"35541"} +{"label":"The Last Legion","description":"As the Roman empire crumbles, young Romulus Augustus flees the city and embarks on a perilous voyage to Britain to track down a legion of supporters.","id":"9703","runtime":102,"imdbId":"tt0462396","version":387,"lastModified":"1301902137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0be\/4d1524757b9aa114860020be\/the-last-legion-mid.jpg","studio":"Quinta Communications","genre":"Action","title":"The Last Legion","releaseDate":1187308800000,"language":"en","type":"Movie","_key":"35542"} +{"label":"Nonso Anozie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cd\/4ce0213f7b9aa168b10000cd\/nonso-anozie-profile.jpg","version":36,"id":"43547","lastModified":"1301901142000","name":"Nonso Anozie","type":"Person","_key":"35543"} +{"label":"Owen Teale","version":24,"id":"58654","lastModified":"1301901634000","name":"Owen Teale","type":"Person","_key":"35544"} +{"label":"Robert Pugh","version":36,"id":"47643","lastModified":"1301901469000","name":"Robert Pugh","type":"Person","_key":"35545"} +{"label":"Doug Lefler","version":28,"id":"58656","lastModified":"1301901350000","name":"Doug Lefler","type":"Person","_key":"35546"} +{"label":"T\u00edmam\u00f3t","description":"No overview found.","id":"9704","runtime":72,"imdbId":"tt1035433","trailer":"http:\/\/www.youtube.com\/watch?v=565","homepage":"http:\/\/www.timamot.com","version":41,"lastModified":"1301904718000","genre":"Documentary","title":"T\u00edmam\u00f3t","releaseDate":1177200000000,"language":"en","type":"Movie","_key":"35547"} +{"label":"Gu\u00f0mundur Erlingsson","version":21,"id":"59990","lastModified":"1301902151000","name":"Gu\u00f0mundur Erlingsson","type":"Person","_key":"35548"} +{"label":"Herbert Sveinbj\u00f6rnsson","version":21,"id":"59991","lastModified":"1301902151000","name":"Herbert Sveinbj\u00f6rnsson","type":"Person","_key":"35549"} +{"label":"Gudjon Arnasson","version":20,"id":"59992","lastModified":"1301902151000","name":"Gudjon Arnasson","type":"Person","_key":"35550"} +{"label":"Gu\u00f0j\u00f3n \u00c1rnasson","version":20,"id":"59993","lastModified":"1301902151000","name":"Gu\u00f0j\u00f3n \u00c1rnasson","type":"Person","_key":"35551"} +{"label":"Steinthor Edvardsson","version":20,"id":"59994","lastModified":"1301902151000","name":"Steinthor Edvardsson","type":"Person","_key":"35552"} +{"label":"Stein\u00fe\u00f3r Edvardsson","version":20,"id":"59995","lastModified":"1301902151000","name":"Stein\u00fe\u00f3r Edvardsson","type":"Person","_key":"35553"} +{"label":"Swordfish","description":"Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.","id":"9705","runtime":99,"imdbId":"tt0244244","trailer":"http:\/\/www.youtube.com\/watch?v=9_8Z7MLDwHM","version":238,"lastModified":"1301901338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49f\/4bc92844017a3c57fe01049f\/swordfish-mid.jpg","genre":"Action","title":"Swordfish","releaseDate":991958400000,"language":"en","tagline":"Log On. Hack In. Go Anywhere. Get Everything.","type":"Movie","_key":"35554"} +{"label":"Rasen","description":"This sequel to Ringu finds a doctor linking the horrifying death of his former medical school classmate with four teens who died after watching a cursed videotape.","id":"9706","runtime":97,"imdbId":"tt0134928","version":87,"lastModified":"1301906187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ad\/4bc92845017a3c57fe0104ad\/rasen-mid.jpg","genre":"Horror","title":"Rasen","releaseDate":886204800000,"language":"en","type":"Movie","_key":"35555"} +{"label":"K\u00f4ichi Sat\u00f4","version":28,"id":"58662","lastModified":"1302052174000","name":"K\u00f4ichi Sat\u00f4","type":"Person","_key":"35556"} +{"label":"Hinako Saeki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad7\/4d7aa63b5e73d6282a000ad7\/hinako-saeki-profile.jpg","version":24,"id":"58664","lastModified":"1301902179000","name":"Hinako Saeki","type":"Person","_key":"35557"} +{"label":"Shingo Tsurumi","version":24,"id":"58665","lastModified":"1301902337000","name":"Shingo Tsurumi","type":"Person","_key":"35558"} +{"label":"J\u00f4ji Iida","version":20,"id":"58666","lastModified":"1301902151000","name":"J\u00f4ji Iida","type":"Person","_key":"35559"} +{"label":"Bubba Ho-tep","description":"Bubba Ho-tep tells the \"true\" story of what really did become of Elvis Presley. We find Elvis (Bruce Campbell) as an elderly resident in an East Texas rest home, who switched identities with an Elvis impersonator years before his \"death\", then missed his chance to switch back.","id":"9707","runtime":92,"imdbId":"tt0281686","trailer":"http:\/\/www.youtube.com\/watch?v=1943","version":140,"lastModified":"1301903892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b6\/4bc92846017a3c57fe0104b6\/bubba-ho-tep-mid.jpg","studio":"Silver Sphere Corporation","genre":"Comedy","title":"Bubba Ho-tep","releaseDate":1023580800000,"language":"en","type":"Movie","_key":"35560"} +{"label":"Ella Joyce","version":25,"id":"58681","lastModified":"1301901365000","name":"Ella Joyce","type":"Person","_key":"35561"} +{"label":"Heidi Marnhout","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4bebd47e017a3c37a50000ee\/heidi-marnhout-profile.jpg","version":22,"id":"58682","lastModified":"1301901203000","name":"Heidi Marnhout","type":"Person","_key":"35562"} +{"label":"The Wicker Man","description":"A sheriff investigating the disappearance of a young girl from a small island discovers there's a larger mystery to solve among the island's secretive, neo-pagan community.","id":"9708","runtime":102,"imdbId":"tt0450345","trailer":"http:\/\/www.youtube.com\/watch?v=p-_2LmkY7kk","version":230,"lastModified":"1301902751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cc\/4bc92849017a3c57fe0104cc\/the-wicker-man-mid.jpg","genre":"Action","title":"The Wicker Man","releaseDate":1156982400000,"language":"en","type":"Movie","_key":"35563"} +{"label":"Neil LaBute","biography":"LaBute is of French Canadian, English and Irish ancestry, and was raised in Spokane, Washington. He studied theater at Brigham Young University (BYU), where he joined The Church of Jesus Christ of Latter-day Saints. At BYU he also met actor Aaron Eckhart, who would later play leading roles in several of his films. He produced a number of plays that pushed the envelope of what was acceptable at the conservative religious university, some of which were shut down after their premieres. However, he ","version":49,"birthday":"-214275600000","id":"58689","birthplace":"Detroit, Michigan, USA","lastModified":"1301901284000","name":"Neil LaBute","type":"Person","_key":"35564"} +{"label":"My Summer of Love","description":"In the Yorkshire countryside, working-class tomboy Mona meets the exotic, pampered Tasmin. Over the summer season, the two young women discover they have much to teach one another, and much to explore together.","id":"9709","runtime":86,"imdbId":"tt0382189","version":195,"lastModified":"1301903630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d5\/4bc9284c017a3c57fe0104d5\/my-summer-of-love-mid.jpg","genre":"Drama","title":"My Summer of Love","releaseDate":1093046400000,"language":"en","type":"Movie","_key":"35565"} +{"label":"Dean Andrews","version":22,"id":"58693","lastModified":"1301902128000","name":"Dean Andrews","type":"Person","_key":"35566"} +{"label":"Pawel Pawlikowski","version":27,"id":"64194","lastModified":"1301902021000","name":"Pawel Pawlikowski","type":"Person","_key":"35567"} +{"label":"Allan Quatermain and the Lost City of Gold","description":"After his brother Robeson disappears without a trace while exploring Africa in search of a legendary 'white tribe', Alan Quatermain decides to follow in his footsteps to learn what became of him. Soon after arriving, he discovers the los City of Gold, controlled by the evil lord Agon, and mined by his legions of white slaves.","id":"9710","runtime":99,"imdbId":"tt0092534","version":126,"lastModified":"1302039324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4da\/4bc9284d017a3c57fe0104da\/allan-quatermain-and-the-lost-city-of-gold-mid.jpg","genre":"Action","title":"Allan Quatermain and the Lost City of Gold","releaseDate":535248000000,"language":"en","type":"Movie","_key":"35568"} +{"label":"Species III","description":"No overview found.","id":"9711","runtime":111,"imdbId":"tt0410650","version":147,"lastModified":"1301904136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ed\/4bc9284e017a3c57fe0104ed\/species-iii-mid.jpg","studio":"MGM Television","genre":"Science Fiction","title":"Species III","releaseDate":1101513600000,"language":"en","type":"Movie","_key":"35569"} +{"label":"Sunny Mabrey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4c9df5e75e73d6704e000115\/sunny-mabrey-profile.jpg","version":27,"birthday":"186361200000","id":"58707","birthplace":"Gadsden, Alabama, USA ","lastModified":"1301901532000","name":"Sunny Mabrey","type":"Person","_key":"35570"} +{"label":"Amelia Cooke","version":26,"id":"58708","lastModified":"1301901401000","name":"Amelia Cooke","type":"Person","_key":"35571"} +{"label":"Holy Man","description":"Eddie Murphy stars as an over-the-top television evangelist who finds a way to turn television home shopping into a religious experience, and takes America by storm.","id":"9713","runtime":109,"imdbId":"tt0120701","version":101,"lastModified":"1301903380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4bc9284f017a3c57fe0104fa\/holy-man-mid.jpg","genre":"Comedy","title":"Holy Man","releaseDate":907891200000,"language":"en","type":"Movie","_key":"35572"} +{"label":"Home Alone 3","description":"Young Alex Pruitt is home alone with the chicken pox and a stolen microchip. Turns out, that due to a mix-up among spies, Alex was given the toy car containing the computer chip. Now the spies must find a way to get the chip back. When Alex tries to tell his parents he's in trouble, they don't believe him, leaving the boy to defend himself.","id":"9714","runtime":102,"imdbId":"tt0119303","trailer":"http:\/\/www.youtube.com\/watch?v=9HfkMrAFs1g","version":155,"lastModified":"1301903901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4d34637e5e73d63356007241\/home-alone-3-mid.jpg","genre":"Action","title":"Home Alone 3","releaseDate":881884800000,"language":"en","tagline":"Ready for more. Much more.","type":"Movie","_key":"35573"} +{"label":"Rya Kihlstedt","version":31,"id":"58724","lastModified":"1301901691000","name":"Rya Kihlstedt","type":"Person","_key":"35574"} +{"label":"Hope Floats","description":"A woman who comes back to her home town in Smithville, Texas, with her daughter after a very sloppy and painful divorce has to deal with the people in her town. ","id":"9715","runtime":114,"imdbId":"tt0119313","trailer":"http:\/\/www.youtube.com\/watch?v=2326","version":192,"lastModified":"1301903390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/516\/4bc92854017a3c57fe010516\/hope-floats-mid.jpg","genre":"Drama","title":"Hope Floats","releaseDate":896400000000,"language":"en","type":"Movie","_key":"35575"} +{"label":"Everyone Says I Love You","description":"Holden and Skylar are in love with each other. Skylar lives with a large and extended family on Manhattan. Her parents, Bob and Steffi have been married to each other for many years. Joe, a friend of theirs, who has a daughter, DJ, with Steffi. After yet another relationship, Joe is alone again. He flees to Venice, and meets Von, and makes her believe that he is the man of her dreams. However, their happiness is fake all the way, and she returns to her previous husband. Steffi spends her time wi","id":"9716","runtime":101,"imdbId":"tt0116242","version":183,"lastModified":"1301903574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51f\/4bc92855017a3c57fe01051f\/everyone-says-i-love-you-mid.jpg","genre":"Comedy","title":"Everyone Says I Love You","releaseDate":849830400000,"language":"en","type":"Movie","_key":"35576"} +{"label":"Diva Gray","version":21,"id":"58731","lastModified":"1301902181000","name":"Diva Gray","type":"Person","_key":"35577"} +{"label":"Shoot to Kill","description":"Sidney Poitier makes his long-overdue return to films in this 1988 thriller, playing an FBI agent on the trail of an elusive killer. Reluctantly teamed with tracker Tom Berenger, the city-dwelling Poitier braves the wilds of the Pacific Northwest in search of his quarry.","id":"9717","runtime":109,"imdbId":"tt0096098","version":119,"lastModified":"1301904334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/528\/4bc92857017a3c57fe010528\/shoot-to-kill-mid.jpg","genre":"Action","title":"Shoot to Kill","releaseDate":571622400000,"language":"en","type":"Movie","_key":"35578"} +{"label":"Talladega Nights: The Ballad of Ricky Bobby","description":"Lifelong friends and national idols Ricky Bobby and Cal Naughton Jr. have earned their NASCAR stripes with their uncanny knack of finishing races in the first and second slots, respectively, and slinging catchphrases like \"Shake and bake!\" But when a rival French driver coasts onto the track to challenge their records, they'll have to floor it to retain their top-dog status.","id":"9718","runtime":108,"imdbId":"tt0415306","trailer":"http:\/\/www.youtube.com\/watch?v=W__z4hJA4XU","homepage":"http:\/\/www.sonypictures.com\/homevideo\/talladeganights\/","version":851,"lastModified":"1301901803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4bc9285a017a3c57fe01053f\/talladega-nights-the-ballad-of-ricky-bobby-mid.jpg","studio":"Apatow Productions","genre":"Action","title":"Talladega Nights: The Ballad of Ricky Bobby","releaseDate":1154649600000,"language":"en","tagline":"The story of a man who could only count to #1","type":"Movie","_key":"35579"} +{"label":"Jake Johnson","version":24,"id":"125168","lastModified":"1301903002000","name":"Jake Johnson","type":"Person","_key":"35580"} +{"label":"Austin Crim","version":21,"id":"58736","lastModified":"1301902304000","name":"Austin Crim","type":"Person","_key":"35581"} +{"label":"Adam McKay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/851\/4d875fb25e73d6539d006851\/adam-mckay-profile.jpg","version":81,"id":"55710","lastModified":"1301906993000","name":"Adam McKay","type":"Person","_key":"35582"} +{"label":"Lorrie Bess Crumley","version":22,"id":"58734","lastModified":"1301902031000","name":"Lorrie Bess Crumley","type":"Person","_key":"35583"} +{"label":"Jack McBrayer","version":68,"birthday":"107305200000","id":"58737","birthplace":"Macon, Georgia, USA","lastModified":"1301904096000","name":"Jack McBrayer","type":"Person","_key":"35584"} +{"label":"Jason Davis","version":22,"id":"58733","lastModified":"1301902203000","name":"Jason Davis","type":"Person","_key":"35585"} +{"label":"John D. King","version":21,"id":"58738","lastModified":"1301902304000","name":"John D. King","type":"Person","_key":"35586"} +{"label":"Luke Bigham","version":21,"id":"58735","lastModified":"1301901934000","name":"Luke Bigham","type":"Person","_key":"35587"} +{"label":"Pumpkin","description":"When perfect, perky Carolyn (Christina Ricci) and her Alpha Omega Pi sisters decide to coach mentally challenged athletes for the regional Challenged Games, Carolyn's assigned to coach Pumpkin (Hank Harris), a young disabled man who touches her heart. She's terrified at first, but to the horror of her friends -- and Pumpkin's overprotective mother (Brenda Blethyn) -- Carolyn starts to falls in love.","id":"9719","runtime":113,"imdbId":"tt0265591","trailer":"http:\/\/www.youtube.com\/watch?v=NvhzaFRYO2w","version":179,"lastModified":"1301905765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4be1e90a017a3c35bd000784\/pumpkin-mid.jpg","genre":"Comedy","title":"Pumpkin","releaseDate":1010966400000,"language":"en","type":"Movie","_key":"35588"} +{"label":"Hank Harris","version":22,"id":"58739","lastModified":"1301901970000","name":"Hank Harris","type":"Person","_key":"35589"} +{"label":"Marisa Coughlan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4d0ad2765e73d6469a00000a\/marisa-coughlan-profile.jpg","version":33,"id":"56595","lastModified":"1301901463000","name":"Marisa Coughlan","type":"Person","_key":"35590"} +{"label":"Phil Reeves","version":22,"id":"58741","lastModified":"1301902125000","name":"Phil Reeves","type":"Person","_key":"35591"} +{"label":"Marisa Petroro","version":22,"id":"58742","lastModified":"1301901815000","name":"Marisa Petroro","type":"Person","_key":"35592"} +{"label":"Tait Smith","version":21,"id":"58743","lastModified":"1301901814000","name":"Tait Smith","type":"Person","_key":"35593"} +{"label":"Michael Bacall","version":55,"id":"58744","lastModified":"1301901110000","name":"Michael Bacall","type":"Person","_key":"35594"} +{"label":"Adam Larson Broder","version":25,"id":"58746","lastModified":"1301901971000","name":"Adam Larson Broder","type":"Person","_key":"35595"} +{"label":"Anthony Abrams","version":23,"id":"58745","lastModified":"1301901994000","name":"Anthony Abrams","type":"Person","_key":"35596"} +{"label":"7 Seconds","description":"When an experienced thief accidentally makes off with a Van Gogh, his partner is kidnapped by gangsters in pursuit of the painting, forcing the criminal to hatch a rescue plan.","id":"9721","runtime":96,"imdbId":"tt0417395","version":197,"lastModified":"1301907750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bc92860017a3c57fe01055c\/7-seconds-mid.jpg","genre":"Action","title":"7 Seconds","releaseDate":1124150400000,"language":"en","type":"Movie","_key":"35597"} +{"label":"Tamzin Outhwaite","version":22,"id":"58757","lastModified":"1301901730000","name":"Tamzin Outhwaite","type":"Person","_key":"35598"} +{"label":"Georgina Rylance","version":32,"id":"58759","lastModified":"1301901641000","name":"Georgina Rylance","type":"Person","_key":"35599"} +{"label":"Serge Soric","version":22,"id":"58760","lastModified":"1301901882000","name":"Serge Soric","type":"Person","_key":"35600"} +{"label":"Andrei Ionescu","version":22,"id":"58761","lastModified":"1301901430000","name":"Andrei Ionescu","type":"Person","_key":"35601"} +{"label":"Elias Ferkin","version":23,"id":"58762","lastModified":"1301901386000","name":"Elias Ferkin","type":"Person","_key":"35602"} +{"label":"Bogdan Farkas","version":22,"id":"58763","lastModified":"1301901475000","name":"Bogdan Farkas","type":"Person","_key":"35603"} +{"label":"Tomi Cristin","version":24,"id":"58764","lastModified":"1301901537000","name":"Tomi Cristin","type":"Person","_key":"35604"} +{"label":"Simon Fellows","version":31,"id":"58766","lastModified":"1301901537000","name":"Simon Fellows","type":"Person","_key":"35605"} +{"label":"Bewitched","description":"Thinking he can overshadow an unknown actress in the part, an egocentric actor unknowingly gets a witch cast in an upcoming television remake of the classic show \"Bewitched\".","id":"9722","runtime":102,"imdbId":"tt0374536","trailer":"http:\/\/www.youtube.com\/watch?v=1TELISbfJ_w","version":198,"lastModified":"1301901755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56e\/4bc92861017a3c57fe01056e\/bewitched-mid.jpg","genre":"Comedy","title":"Bewitched","releaseDate":1119571200000,"language":"en","type":"Movie","_key":"35606"} +{"label":"Jim Turner","version":29,"id":"58768","lastModified":"1301901926000","name":"Jim Turner","type":"Person","_key":"35607"} +{"label":"Stephen Colbert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81c\/4cf18a8c7b9aa13ef200081c\/stephen-colbert-profile.jpg","version":37,"id":"58769","lastModified":"1301901529000","name":"Stephen Colbert","type":"Person","_key":"35608"} +{"label":"Carole Shelley","version":26,"id":"58770","lastModified":"1301901614000","name":"Carole Shelley","type":"Person","_key":"35609"} +{"label":"Katie Finneran","version":29,"id":"58771","lastModified":"1301901777000","name":"Katie Finneran","type":"Person","_key":"35610"} +{"label":"James Lipton","version":33,"id":"58772","lastModified":"1301901308000","name":"James Lipton","type":"Person","_key":"35611"} +{"label":"The Mistress of Spices","description":"Tilo, the titular \"Mistresses of Spices\" is a shopkeeper and an immigrant from India who helps customers satisfy their needs and desires with spices. Her life changes when she falls in love with an American man.","id":"9724","runtime":92,"imdbId":"tt0407998","version":213,"lastModified":"1301903316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57b\/4bc92862017a3c57fe01057b\/the-mistress-of-spices-mid.jpg","genre":"Drama","title":"The Mistress of Spices","releaseDate":1145577600000,"language":"en","type":"Movie","_key":"35612"} +{"label":"Nitin Ganatra","version":21,"id":"58776","lastModified":"1301902367000","name":"Nitin Ganatra","type":"Person","_key":"35613"} +{"label":"Sonny Gill Dulay","version":19,"id":"58777","lastModified":"1301902094000","name":"Sonny Gill Dulay","type":"Person","_key":"35614"} +{"label":"Toby Marlow","version":20,"id":"58779","lastModified":"1301902272000","name":"Toby Marlow","type":"Person","_key":"35615"} +{"label":"Padma Lakshmi","version":22,"id":"58780","lastModified":"1301902094000","name":"Padma Lakshmi","type":"Person","_key":"35616"} +{"label":"Paul Bhattacharjee","version":19,"id":"58781","lastModified":"1301902094000","name":"Paul Bhattacharjee","type":"Person","_key":"35617"} +{"label":"Rebecca Bowden","version":20,"id":"58782","lastModified":"1301902179000","name":"Rebecca Bowden","type":"Person","_key":"35618"} +{"label":"Paul Mayeda Berges","version":31,"id":"6222","lastModified":"1301901389000","name":"Paul Mayeda Berges","type":"Person","_key":"35619"} +{"label":"Friday the 13th Part 2","description":"Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.","id":"9725","runtime":83,"imdbId":"tt0082418","version":316,"lastModified":"1301902930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/641\/4d8f976d7b9aa16755002641\/friday-the-13th-part-2-mid.jpg","genre":"Horror","title":"Friday the 13th Part 2","releaseDate":357523200000,"language":"en","tagline":"Just when you thought it was safe to go back to camp...","type":"Movie","_key":"35620"} +{"label":"Amy Steel","version":27,"id":"58710","lastModified":"1301901519000","name":"Amy Steel","type":"Person","_key":"35621"} +{"label":"Kirsten Baker","version":21,"id":"58711","lastModified":"1301902003000","name":"Kirsten Baker","type":"Person","_key":"35622"} +{"label":"Steve Miner","version":57,"id":"58712","lastModified":"1301901358000","name":"Steve Miner","type":"Person","_key":"35623"} +{"label":"A Good Year","description":"A British investment broker inherits his uncle's chateau and vineyard in Provence, where he spent much of his childhood. He discovers a new laid-back lifestyle as he tries to renovate the estate to be sold.","id":"9726","runtime":118,"imdbId":"tt0401445","trailer":"http:\/\/www.youtube.com\/watch?v=1061","version":254,"lastModified":"1301901724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b0\/4bc9286d017a3c57fe0105b0\/a-good-year-mid.jpg","genre":"Comedy","title":"A Good Year","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"35624"} +{"label":"Ben Righton","version":31,"id":"58783","lastModified":"1301901582000","name":"Ben Righton","type":"Person","_key":"35625"} +{"label":"Patrick Kennedy","version":42,"id":"14432","lastModified":"1301901231000","name":"Patrick Kennedy","type":"Person","_key":"35626"} +{"label":"Ali Rhodes","version":26,"id":"59029","lastModified":"1301901575000","name":"Ali Rhodes","type":"Person","_key":"35627"} +{"label":"Nila Aalia","version":26,"id":"58785","lastModified":"1301901514000","name":"Nila Aalia","type":"Person","_key":"35628"} +{"label":"Stephen Hudson","version":26,"id":"58786","lastModified":"1301901509000","name":"Stephen Hudson","type":"Person","_key":"35629"} +{"label":"Giannina Facio","version":26,"id":"58787","lastModified":"1301901513000","name":"Giannina Facio","type":"Person","_key":"35630"} +{"label":"Lionel Briand","version":26,"id":"58788","lastModified":"1301901579000","name":"Lionel Briand","type":"Person","_key":"35631"} +{"label":"Maria Papas","version":26,"id":"59030","lastModified":"1301901812000","name":"Maria Papas","type":"Person","_key":"35632"} +{"label":"Didier Bourdon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9a\/4be57519017a3c35b4000d9a\/didier-bourdon-profile.jpg","version":73,"id":"59031","lastModified":"1301901468000","name":"Didier Bourdon","type":"Person","_key":"35633"} +{"label":"Isabelle Candelier","version":27,"id":"59032","lastModified":"1301901514000","name":"Isabelle Candelier","type":"Person","_key":"35634"} +{"label":"Igor Panich","version":26,"id":"59033","lastModified":"1301901514000","name":"Igor Panich","type":"Person","_key":"35635"} +{"label":"Oleg Sosnovikov","version":26,"id":"59034","lastModified":"1301901581000","name":"Oleg Sosnovikov","type":"Person","_key":"35636"} +{"label":"Magali Woch","version":30,"id":"59035","lastModified":"1301901675000","name":"Magali Woch","type":"Person","_key":"35637"} +{"label":"Patrick Payet","version":26,"id":"59037","lastModified":"1301901592000","name":"Patrick Payet","type":"Person","_key":"35638"} +{"label":"F\u00e9licit\u00e9 Du Jeu","version":26,"id":"59038","lastModified":"1301901589000","name":"F\u00e9licit\u00e9 Du Jeu","type":"Person","_key":"35639"} +{"label":"Mitchell Mullen","version":33,"id":"59039","lastModified":"1301901575000","name":"Mitchell Mullen","type":"Person","_key":"35640"} +{"label":"Judy Dickerson","version":26,"id":"59040","lastModified":"1301901581000","name":"Judy Dickerson","type":"Person","_key":"35641"} +{"label":"Philippe M\u00e9ry","version":26,"id":"59041","lastModified":"1301901589000","name":"Philippe M\u00e9ry","type":"Person","_key":"35642"} +{"label":"Dominique Laurent","version":26,"id":"59042","lastModified":"1301901583000","name":"Dominique Laurent","type":"Person","_key":"35643"} +{"label":"Stewart Wright","version":26,"id":"59043","lastModified":"1301901678000","name":"Stewart Wright","type":"Person","_key":"35644"} +{"label":"Tom Stuart","version":27,"id":"59044","lastModified":"1301901824000","name":"Tom Stuart","type":"Person","_key":"35645"} +{"label":"Catherine Vinatier","version":26,"id":"59045","lastModified":"1301901596000","name":"Catherine Vinatier","type":"Person","_key":"35646"} +{"label":"Marine Casto","version":26,"id":"59046","lastModified":"1301901596000","name":"Marine Casto","type":"Person","_key":"35647"} +{"label":"Gregg Chillin","version":26,"id":"59047","lastModified":"1301901505000","name":"Gregg Chillin","type":"Person","_key":"35648"} +{"label":"Toney Tutini","version":26,"id":"59048","lastModified":"1301901575000","name":"Toney Tutini","type":"Person","_key":"35649"} +{"label":"Edita Brychta","version":27,"id":"59049","lastModified":"1301901515000","name":"Edita Brychta","type":"Person","_key":"35650"} +{"label":"Jean-Louis Darville","version":26,"id":"59050","lastModified":"1301901575000","name":"Jean-Louis Darville","type":"Person","_key":"35651"} +{"label":"Jean Gilpin","version":26,"id":"59051","lastModified":"1301901586000","name":"Jean Gilpin","type":"Person","_key":"35652"} +{"label":"Patrick Hillan","version":26,"id":"59052","lastModified":"1301901586000","name":"Patrick Hillan","type":"Person","_key":"35653"} +{"label":"Frank Isles","version":26,"id":"59053","lastModified":"1301901583000","name":"Frank Isles","type":"Person","_key":"35654"} +{"label":"Peter Lavin","version":26,"id":"59054","lastModified":"1301901575000","name":"Peter Lavin","type":"Person","_key":"35655"} +{"label":"Caitlin McKenna-Wilkinson","version":27,"id":"59055","lastModified":"1301901575000","name":"Caitlin McKenna-Wilkinson","type":"Person","_key":"35656"} +{"label":"Paula J. Newman","version":26,"id":"59056","lastModified":"1301901575000","name":"Paula J. Newman","type":"Person","_key":"35657"} +{"label":"Moira Quirk","version":26,"id":"59057","lastModified":"1301901505000","name":"Moira Quirk","type":"Person","_key":"35658"} +{"label":"Valeria Milenka Repnau","version":26,"id":"59058","lastModified":"1301901505000","name":"Valeria Milenka Repnau","type":"Person","_key":"35659"} +{"label":"Darren Richardson","version":26,"id":"59059","lastModified":"1301901575000","name":"Darren Richardson","type":"Person","_key":"35660"} +{"label":"Jean-Michel Richaud","version":36,"id":"59060","lastModified":"1301901246000","name":"Jean-Michel Richaud","type":"Person","_key":"35661"} +{"label":"Samantha Robson","version":28,"id":"59061","lastModified":"1301901575000","name":"Samantha Robson","type":"Person","_key":"35662"} +{"label":"Ian Ruskin","version":26,"id":"59062","lastModified":"1301901575000","name":"Ian Ruskin","type":"Person","_key":"35663"} +{"label":"Linda Sans","version":26,"id":"59063","lastModified":"1301901574000","name":"Linda Sans","type":"Person","_key":"35664"} +{"label":"Bruno Stephane","version":26,"id":"59064","lastModified":"1301901574000","name":"Bruno Stephane","type":"Person","_key":"35665"} +{"label":"Karen Strassman","version":26,"id":"59065","lastModified":"1301901574000","name":"Karen Strassman","type":"Person","_key":"35666"} +{"label":"Jean-Paul Vignon","version":26,"id":"59066","lastModified":"1301901505000","name":"Jean-Paul Vignon","type":"Person","_key":"35667"} +{"label":"Craig Robert Young","version":26,"id":"59067","lastModified":"1301901574000","name":"Craig Robert Young","type":"Person","_key":"35668"} +{"label":"Catriona MacColl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/234\/4bf198eb017a3c3217000234\/catriona-maccoll-profile.jpg","version":30,"id":"101330","lastModified":"1301902024000","name":"Catriona MacColl","type":"Person","_key":"35669"} +{"label":"End Game","description":"A secret Service agent and a news reporter investigate the conspiracy behind the assassination of the President.","id":"9727","runtime":93,"imdbId":"tt0415778","version":162,"lastModified":"1301905847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a71\/4d061b827b9aa11bc3002a71\/end-game-mid.jpg","genre":"Thriller","title":"End Game","releaseDate":1151884800000,"language":"en","type":"Movie","_key":"35670"} +{"label":"Patrick Fabian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55b\/4d1155857b9aa1148600055b\/patrick-fabian-profile.jpg","version":32,"id":"58791","lastModified":"1301901351000","name":"Patrick Fabian","type":"Person","_key":"35671"} +{"label":"Jack Scalia","version":23,"id":"58792","lastModified":"1301902141000","name":"Jack Scalia","type":"Person","_key":"35672"} +{"label":"Sarah Ann Schultz","version":24,"id":"58793","lastModified":"1301902353000","name":"Sarah Ann Schultz","type":"Person","_key":"35673"} +{"label":"Todd Jensen","version":37,"id":"58794","lastModified":"1301901228000","name":"Todd Jensen","type":"Person","_key":"35674"} +{"label":"Brian Presley","version":27,"id":"58795","lastModified":"1301901647000","name":"Brian Presley","type":"Person","_key":"35675"} +{"label":"Patrick Treadway","version":19,"id":"58796","lastModified":"1301901882000","name":"Patrick Treadway","type":"Person","_key":"35676"} +{"label":"Andy Cheng","version":22,"id":"58797","lastModified":"1301902094000","name":"Andy Cheng","type":"Person","_key":"35677"} +{"label":"Friday the 13th Part 3: 3D","description":"Even taking an axe to the head, Jason Voorhees is still donning a hockey mask and stalking targets. This time, he hits up \"Higgin's Haven\" to terrorize Chili, Chuck, Chris, Shelly, Debbie, Vera and Andy. The friends' idyllic summer in the woods, which was supposed to be all about sex, is about to take a bad turn.","id":"9728","runtime":95,"imdbId":"tt0083972","version":313,"lastModified":"1301903532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/817\/4d8f9bb07b9aa1674f002817\/friday-the-13th-part-3-3d-mid.jpg","genre":"Horror","title":"Friday the 13th Part 3: 3D","releaseDate":398044800000,"language":"en","tagline":"There's nowhere to hide. We dare you to try.","type":"Movie","_key":"35678"} +{"label":"Dana Kimmell","version":21,"id":"58799","lastModified":"1301901774000","name":"Dana Kimmell","type":"Person","_key":"35679"} +{"label":"Paul Kratka","version":21,"id":"58802","lastModified":"1301901774000","name":"Paul Kratka","type":"Person","_key":"35680"} +{"label":"Richard Brooker","version":25,"id":"58807","lastModified":"1301902136000","name":"Richard Brooker","type":"Person","_key":"35681"} +{"label":"Anne Gaybis","version":23,"id":"58808","lastModified":"1301901559000","name":"Anne Gaybis","type":"Person","_key":"35682"} +{"label":"Where the Truth Lies","description":"K. O'Connor, a young journalist known for her celebrity profiles, is consumed with discovering the truth behind a long-buried incident that affected the lives and careers of showbiz team Vince Collins and Lanny Morris.","id":"9729","runtime":107,"imdbId":"tt0373450","version":213,"lastModified":"1301903751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ec\/4bc92874017a3c57fe0105ec\/where-the-truth-lies-mid.jpg","genre":"Drama","title":"Where the Truth Lies","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"35683"} +{"label":"Sonja Bennett","version":31,"id":"58800","lastModified":"1301901416000","name":"Sonja Bennett","type":"Person","_key":"35684"} +{"label":"Kristin Adams","version":26,"id":"58801","lastModified":"1301902369000","name":"Kristin Adams","type":"Person","_key":"35685"} +{"label":"Deborah Grover","version":30,"id":"58803","lastModified":"1301901851000","name":"Deborah Grover","type":"Person","_key":"35686"} +{"label":"Gabrielle Rose","version":31,"id":"58804","lastModified":"1301901984000","name":"Gabrielle Rose","type":"Person","_key":"35687"} +{"label":"David Hemblen","version":29,"id":"58805","lastModified":"1301902033000","name":"David Hemblen","type":"Person","_key":"35688"} +{"label":"John Moraitis","version":21,"id":"58806","lastModified":"1301902300000","name":"John Moraitis","type":"Person","_key":"35689"} +{"label":"Friday the 13th: The Final Chapter","description":"Hockey-masked psychopath Jason Vorhees is back in business at Camp Crystal Lake in the fourth (but far from final) installment of the popular horror franchise. As randy teens are slain one by one, Tommy Jarvis concocts a plan to distract the killer.","id":"9730","runtime":90,"imdbId":"tt0087298","version":311,"lastModified":"1301978476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60c\/4bc92879017a3c57fe01060c\/friday-the-13th-the-final-chapter-mid.jpg","genre":"Horror","title":"Friday the 13th: The Final Chapter","releaseDate":450662400000,"language":"en","tagline":"Jason's Back, and this is the one you've been screaming for.","type":"Movie","_key":"35690"} +{"label":"Erich Anderson","version":23,"id":"58813","lastModified":"1301901927000","name":"Erich Anderson","type":"Person","_key":"35691"} +{"label":"Barbara Howard","version":25,"id":"58814","lastModified":"1301902154000","name":"Barbara Howard","type":"Person","_key":"35692"} +{"label":"Joseph Zito","version":30,"id":"64195","lastModified":"1301902151000","name":"Joseph Zito","type":"Person","_key":"35693"} +{"label":"Friday the 13th: A New Beginning","description":"Having landed in a mental hospital after \"killing\" Jason in The Final Chapter, an older Tommy is released to a halfway house populated by the usual maladjusted teens. Then, surprise, the grisly murders begin anew. Has the homicidal hockey goalie returned from the dead, or is Tommy turning into Jason himself?","id":"9731","runtime":92,"imdbId":"tt0089173","version":297,"lastModified":"1301978379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62d\/4bc9287c017a3c57fe01062d\/friday-the-13th-a-new-beginning-mid.jpg","genre":"Horror","title":"Friday the 13th: A New Beginning","releaseDate":480297600000,"language":"en","tagline":"A New Beginning to the first step in terror.","type":"Movie","_key":"35694"} +{"label":"Anthony Barrile","version":26,"id":"58819","lastModified":"1301901953000","name":"Anthony Barrile","type":"Person","_key":"35695"} +{"label":"Suzanne Bateman","version":21,"id":"58820","lastModified":"1301902094000","name":"Suzanne Bateman","type":"Person","_key":"35696"} +{"label":"Dominick Brascia","version":21,"id":"58821","lastModified":"1301902094000","name":"Dominick Brascia","type":"Person","_key":"35697"} +{"label":"Danny Steinmann","version":27,"id":"58822","lastModified":"1301902220000","name":"Danny Steinmann","type":"Person","_key":"35698"} +{"label":"The Lion King II: Simba's Pride","description":"The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?","id":"9732","runtime":81,"imdbId":"tt0120131","version":121,"lastModified":"1301908368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/739\/4d41954a7b9aa15bb5003739\/the-lion-king-ii-simba-s-pride-mid.jpg","genre":"Adventure","title":"The Lion King II: Simba's Pride","releaseDate":909446400000,"language":"en","tagline":"The Circle of Life Continues...","type":"Movie","_key":"35699"} +{"label":"Liz Callaway","version":26,"id":"58828","lastModified":"1301901588000","name":"Liz Callaway","type":"Person","_key":"35700"} +{"label":"Darrell Rooney","version":32,"id":"58829","lastModified":"1301901530000","name":"Darrell Rooney","type":"Person","_key":"35701"} +{"label":"Scenes from a Marriage","description":"Follows the relationship of Marianne and Johan as they separate, engage in extramarital affairs, bond, re-bond and eventually divorce.","id":"9733","runtime":167,"imdbId":"tt0070644","version":78,"lastModified":"1301905276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4cfae7dd7b9aa1514b002725\/scener-ur-ett-aktenskap-mid.jpg","genre":"Drama","title":"Scenes from a Marriage","releaseDate":103334400000,"language":"en","type":"Movie","_key":"35702"} +{"label":"The Lion King","description":"No overview found.","id":"9734","title":"The Lion King","language":"en","lastModified":"1301908286000","version":523,"type":"Movie","_key":"35703"} +{"label":"Friday the 13th","description":"No overview found.","id":"9735","version":427,"lastModified":"1301903901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64a\/4bc92882017a3c57fe01064a\/friday-the-13th-mid.jpg","genre":"Horror","title":"Friday the 13th","language":"en","type":"Movie","_key":"35704"} +{"label":"Deux jours \u00e0 tuer","description":"Antoine M\u00e9liot, la quarantaine, a tout pour \u00eatre heureux : une belle \u00e9pouse, deux enfants adorables, des amis sur lesquels il peut compter \u00e0 tout instant, une jolie demeure dans les Yvelines et de l'argent. Mais un jour, il d\u00e9cide de tout saboter en un week-end : son bonheur, sa famille, ses amis. Que s'est-il pass\u00e9 chez cet homme pour qu'il change si \u00e9trangement de comportement ?","id":"9736","runtime":85,"imdbId":"tt0996930","trailer":"http:\/\/www.youtube.com\/watch?v=2929","homepage":"http:\/\/www.deuxjoursatuer-lefilm.com\/","version":47,"lastModified":"1301904233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4bc92883017a3c57fe010657\/deux-jours-a-tuer-mid.jpg","studio":"ICE3","genre":"Thriller","title":"Deux jours \u00e0 tuer","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"35705"} +{"label":"Alessandra Martines","version":28,"id":"63895","lastModified":"1301902034000","name":"Alessandra Martines","type":"Person","_key":"35706"} +{"label":"Bad Boys","description":"Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.","id":"9737","runtime":118,"imdbId":"tt0112442","trailer":"http:\/\/www.youtube.com\/watch?v=mPQ_uErLwFE","version":423,"lastModified":"1301901128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4bc92885017a3c57fe010670\/bad-boys-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Bad Boys","releaseDate":797212800000,"language":"en","tagline":"Whatcha gonna do?","type":"Movie","_key":"35707"} +{"label":"Vic Manni","version":18,"id":"147782","lastModified":"1301902637000","name":"Vic Manni","type":"Person","_key":"35708"} +{"label":"Mike Kirton","version":20,"id":"146406","lastModified":"1301902739000","name":"Mike Kirton","type":"Person","_key":"35709"} +{"label":"Emmanuel Xuereb","version":20,"id":"137416","lastModified":"1301902395000","name":"Emmanuel Xuereb","type":"Person","_key":"35710"} +{"label":"Ralph Gonzalez","version":18,"id":"147783","lastModified":"1301902991000","name":"Ralph Gonzalez","type":"Person","_key":"35711"} +{"label":"Joey Romano","version":18,"id":"147784","lastModified":"1301902898000","name":"Joey Romano","type":"Person","_key":"35712"} +{"label":"Sam Ayers","version":18,"id":"147785","lastModified":"1301902555000","name":"Sam Ayers","type":"Person","_key":"35713"} +{"label":"Karen Alexander","version":18,"id":"147786","lastModified":"1301902991000","name":"Karen Alexander","type":"Person","_key":"35714"} +{"label":"Heather Davis","version":18,"id":"147787","lastModified":"1301903071000","name":"Heather Davis","type":"Person","_key":"35715"} +{"label":"Fawn Reed","version":18,"id":"147788","lastModified":"1301902676000","name":"Fawn Reed","type":"Person","_key":"35716"} +{"label":"Buddy Bolton","version":18,"id":"147789","lastModified":"1301902731000","name":"Buddy Bolton","type":"Person","_key":"35717"} +{"label":"Will Knickerbocker","version":24,"id":"139360","lastModified":"1301902468000","name":"Will Knickerbocker","type":"Person","_key":"35718"} +{"label":"Tiffany Samuels","version":18,"id":"147790","lastModified":"1301902551000","name":"Tiffany Samuels","type":"Person","_key":"35719"} +{"label":"Cory Hodges","version":26,"id":"77079","lastModified":"1301901438000","name":"Cory Hodges","type":"Person","_key":"35720"} +{"label":"Scott Cumberbatch","version":18,"id":"147791","lastModified":"1301902682000","name":"Scott Cumberbatch","type":"Person","_key":"35721"} +{"label":"Fantastic Four","description":"During a space voyage, four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong \u2026 thing. Together, these \"Fantastic Four\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.","id":"9738","runtime":106,"imdbId":"tt0120667","trailer":"http:\/\/www.youtube.com\/watch?v=sRSphEIfejA","version":262,"lastModified":"1301901207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bb\/4bc92890017a3c57fe0106bb\/fantastic-four-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Fantastic Four","releaseDate":1120003200000,"language":"en","tagline":"4 times the action. 4 times the adventure. 4 times the fantastic.","type":"Movie","_key":"35722"} +{"label":"Demolition Man","description":"Simon Phoenix, a violent criminal cryogenically frozen in 1996, has escaped during a parole hearing in 2032 in the utopia of San Angeles. Police are incapable of dealing with his violent ways and turn to his captor, John Spartan, who had also been cryogenically frozen when wrongfully accused of killing 30 innocent people while apprehending Phoenix.","id":"9739","runtime":115,"imdbId":"tt0106697","trailer":"http:\/\/www.youtube.com\/watch?v=GTrELyA8prM","version":274,"lastModified":"1301901251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/898\/4c092e46017a3c3519000898\/demolition-man-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Demolition Man","releaseDate":749952000000,"language":"en","tagline":"The 21st Century's most dangerous cop. The 21st Century's most ruthless criminal.","type":"Movie","_key":"35723"} +{"label":"Nigel Hawthorne","version":55,"id":"15788","lastModified":"1302061112000","name":"Nigel Hawthorne","type":"Person","_key":"35724"} +{"label":"Marco Brambilla","version":30,"id":"58838","lastModified":"1301901596000","name":"Marco Brambilla","type":"Person","_key":"35725"} +{"label":"Hannibal","description":"After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he is discovered leaving a deserving few dead in the process. He returns back to America to once again make contact with now disgraced Agent Clarice Starling who is suffering the wrath of a malicious FBI official\/rival as well as the media.","id":"9740","runtime":131,"imdbId":"tt0212985","trailer":"http:\/\/www.youtube.com\/watch?v=1529","version":150,"lastModified":"1301901774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/212\/4c1e795f5e73d607ba000212\/hannibal-mid.jpg","genre":"Action","title":"Hannibal","releaseDate":981676800000,"language":"en","tagline":"His genius undeniable. His evil, unspeakable.","type":"Movie","_key":"35726"} +{"label":"Unbreakable","description":"An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead -- and him unscathed. Is he truly unbreakable? The answer could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.","id":"9741","runtime":106,"imdbId":"tt0217869","version":193,"lastModified":"1301902189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/729\/4bc9289f017a3c57fe010729\/unbreakable-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Unbreakable","releaseDate":974160000000,"language":"en","tagline":"Shattering cinemas soon.","type":"Movie","_key":"35727"} +{"label":"Werner - Beinhart!","description":"No overview found.","id":"9742","runtime":93,"imdbId":"tt0100912","version":48,"lastModified":"1301905638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73c\/4bc928a0017a3c57fe01073c\/werner-beinhart-mid.jpg","genre":"Animation","title":"Werner - Beinhart!","releaseDate":659836800000,"language":"en","type":"Movie","_key":"35728"} +{"label":"Hannibal Lecter Collection","description":"No overview found.","id":"9743","version":97,"lastModified":"1301903565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fb\/4d0890117b9aa101d40002fb\/hannibal-lecter-mid.jpg","title":"Hannibal Lecter Collection","language":"en","type":"Movie","_key":"35729"} +{"label":"Fantastic Four Collection","description":"American superhero films that are based on the Fantastic Four comic book and were directed by Tim Story","id":"9744","version":281,"lastModified":"1301902891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d5\/4d088f637b9aa101d70002d5\/fantastic-four-collection-mid.jpg","title":"Fantastic Four Collection","language":"en","type":"Movie","_key":"35730"} +{"label":"Jack Frost","description":"A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.","id":"9745","runtime":101,"imdbId":"tt0141109","version":110,"lastModified":"1301903858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/757\/4bc928a5017a3c57fe010757\/jack-frost-mid.jpg","genre":"Comedy","title":"Jack Frost","releaseDate":913334400000,"language":"en","type":"Movie","_key":"35731"} +{"label":"Troy Miller","version":40,"id":"58868","lastModified":"1301901785000","name":"Troy Miller","type":"Person","_key":"35732"} +{"label":"Kundun","description":"The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation of Tibet. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since. ","id":"9746","runtime":134,"imdbId":"tt0119485","version":135,"lastModified":"1301903568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/760\/4bc928a5017a3c57fe010760\/kundun-mid.jpg","genre":"Drama","title":"Kundun","releaseDate":883008000000,"language":"en","type":"Movie","_key":"35733"} +{"label":"Tenzin Thuthob Tsarong","version":21,"id":"58856","lastModified":"1301901830000","name":"Tenzin Thuthob Tsarong","type":"Person","_key":"35734"} +{"label":"Tencho Gyalpo","version":21,"id":"58857","lastModified":"1301901590000","name":"Tencho Gyalpo","type":"Person","_key":"35735"} +{"label":"Tsewang Migyur Khangsar","version":21,"id":"58858","lastModified":"1301901831000","name":"Tsewang Migyur Khangsar","type":"Person","_key":"35736"} +{"label":"Gyurme Tethong","version":21,"id":"58859","lastModified":"1301901674000","name":"Gyurme Tethong","type":"Person","_key":"35737"} +{"label":"D.O.A.","description":"No overview found.","id":"9748","runtime":96,"imdbId":"tt0094933","version":94,"lastModified":"1301903415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76e\/4bc928a6017a3c57fe01076e\/d-o-a-mid.jpg","genre":"Mystery","title":"D.O.A.","releaseDate":574646400000,"language":"en","type":"Movie","_key":"35738"} +{"label":"Christopher Neame","version":25,"id":"58860","lastModified":"1301902170000","name":"Christopher Neame","type":"Person","_key":"35739"} +{"label":"Fletch","description":"Fletch is an ace reporter. While working on a story on Drug sales, he is approached by Alan Stanwyck who wants Fletch to murder him to save him from a lingering cancer death. Fletch begins to nose around and finds irregularities in Stanwyck's past and Underhill's Visa Number.","id":"9749","runtime":98,"imdbId":"tt0089155","version":208,"lastModified":"1301902155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d9\/4d0a21357b9aa162b30002d9\/fletch-mid.jpg","genre":"Comedy","title":"Fletch","releaseDate":486345600000,"language":"en","type":"Movie","_key":"35740"} +{"label":"Dana Wheeler-Nicholson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4c3dbac07b9aa13a4100008d\/dana-wheeler-nicholson-profile.jpg","version":21,"id":"58866","lastModified":"1301901982000","name":"Dana Wheeler-Nicholson","type":"Person","_key":"35741"} +{"label":"George Wendt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42e\/4ca0b0257b9aa1578a00042e\/george-wendt-profile.jpg","version":45,"id":"66606","lastModified":"1301901246000","name":"George Wendt","type":"Person","_key":"35742"} +{"label":"Bill Henderson","version":28,"id":"80746","lastModified":"1301902387000","name":"Bill Henderson","type":"Person","_key":"35743"} +{"label":"William Traylor","version":20,"id":"124602","lastModified":"1301903034000","name":"William Traylor","type":"Person","_key":"35744"} +{"label":"Larry Flash Jenkins","version":24,"id":"124603","lastModified":"1301903069000","name":"Larry Flash Jenkins","type":"Person","_key":"35745"} +{"label":"Balls of Fury","description":"Randy Daytona was a child ping pong prodigy who lost his chance at Olympic gold when his father is murdered by the mysterious Feng over a gambling debt. 15yrs later he's down on his luck and scraping a living doing seedy back room shows in Vegas; when the FBI turn up and ask for his help to take down Feng... who just happens to love Ping Pong.","id":"9750","runtime":90,"imdbId":"tt0424823","trailer":"http:\/\/www.youtube.com\/watch?v=Iv6zDtHPDvc","homepage":"http:\/\/www.ballsoffury.com\/","version":246,"lastModified":"1301903290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61d\/4ccc59767b9aa16b9c00061d\/balls-of-fury-mid.jpg","studio":"Rogue Pictures","genre":"Comedy","title":"Balls of Fury","releaseDate":1188345600000,"language":"en","tagline":"A huge comedy with tiny balls.","type":"Movie","_key":"35746"} +{"label":"Robert Ben Garant","version":50,"id":"59413","lastModified":"1301901564000","name":"Robert Ben Garant","type":"Person","_key":"35747"} +{"label":"Dan Fogler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64e\/4cf89c8a7b9aa15c8e00064e\/dan-fogler-profile.jpg","version":66,"birthday":"214614000000","id":"58873","birthplace":"Brooklyn, New York, USA","lastModified":"1301901193000","name":"Dan Fogler","type":"Person","_key":"35748"} +{"label":"Brett DelBuono","version":20,"id":"64213","lastModified":"1301902109000","name":"Brett DelBuono","type":"Person","_key":"35749"} +{"label":"Dance for All","description":"No overview found.","id":"9751","runtime":92,"imdbId":"tt1278328","version":126,"lastModified":"1301906621000","studio":"FFA Filmf\u00f6rderungsanstalt","genre":"Documentary","title":"Dance for All","releaseDate":1190419200000,"language":"en","type":"Movie","_key":"35750"} +{"label":"Elena Bromund","version":23,"id":"6277","lastModified":"1301901434000","name":"Elena Bromund","type":"Person","_key":"35751"} +{"label":"Viviane Blumenschein","version":20,"id":"58874","lastModified":"1301902272000","name":"Viviane Blumenschein","type":"Person","_key":"35752"} +{"label":"Philip Boyd","version":20,"id":"58881","lastModified":"1301901882000","name":"Philip Boyd","type":"Person","_key":"35753"} +{"label":"Phyllis Spira","version":20,"id":"58882","lastModified":"1301902272000","name":"Phyllis Spira","type":"Person","_key":"35754"} +{"label":"Zandile Constable","version":20,"id":"58883","lastModified":"1301901882000","name":"Zandile Constable","type":"Person","_key":"35755"} +{"label":"Nqaba Mafilika","version":20,"id":"58884","lastModified":"1301901882000","name":"Nqaba Mafilika","type":"Person","_key":"35756"} +{"label":"Theo Ndindwa","version":20,"id":"58885","lastModified":"1301902094000","name":"Theo Ndindwa","type":"Person","_key":"35757"} +{"label":"Noluyanda Mquiwana","version":18,"id":"58886","lastModified":"1301902094000","name":"Noluyanda Mquiwana","type":"Person","_key":"35758"} +{"label":"Xola Putye","version":20,"id":"58887","lastModified":"1301902094000","name":"Xola Putye","type":"Person","_key":"35759"} +{"label":"Mbulelo Jonas","version":20,"id":"58888","lastModified":"1301902094000","name":"Mbulelo Jonas","type":"Person","_key":"35760"} +{"label":"Survival Island","description":"A millionaire and his wife are shipwrecked after a yachting accident with their former servant, Manuel.","id":"9753","runtime":95,"imdbId":"tt0377309","trailer":"http:\/\/www.youtube.com\/watch?v=YnlZ-N2WUAY","version":239,"lastModified":"1302022022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/190\/4d4d43af5e73d617c7002190\/three-mid.jpg","genre":"Action","title":"Survival Island","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"35761"} +{"label":"Juan Pablo Di Pace","version":21,"id":"58970","lastModified":"1301901769000","name":"Juan Pablo Di Pace","type":"Person","_key":"35762"} +{"label":"Todd Collins","version":21,"id":"58971","lastModified":"1301901936000","name":"Todd Collins","type":"Person","_key":"35763"} +{"label":"Gabrielle Jourdan","version":21,"id":"58972","lastModified":"1301902307000","name":"Gabrielle Jourdan","type":"Person","_key":"35764"} +{"label":"Gary Brockette","version":28,"id":"58973","lastModified":"1301902130000","name":"Gary Brockette","type":"Person","_key":"35765"} +{"label":"Isabelle Constantini","version":22,"id":"58974","lastModified":"1301902179000","name":"Isabelle Constantini","type":"Person","_key":"35766"} +{"label":"Roy Rivera","version":22,"id":"58975","lastModified":"1301902173000","name":"Roy Rivera","type":"Person","_key":"35767"} +{"label":"Maria Victoria Di Pace","version":21,"id":"59387","lastModified":"1301902307000","name":"Maria Victoria Di Pace","type":"Person","_key":"35768"} +{"label":"Summer Davis","version":21,"id":"59388","lastModified":"1301902130000","name":"Summer Davis","type":"Person","_key":"35769"} +{"label":"Keera Ann Davis","version":21,"id":"58978","lastModified":"1301902130000","name":"Keera Ann Davis","type":"Person","_key":"35770"} +{"label":"Kennedy Rolle","version":21,"id":"59389","lastModified":"1301902130000","name":"Kennedy Rolle","type":"Person","_key":"35771"} +{"label":"Myesha Pinder","version":21,"id":"58980","lastModified":"1301902130000","name":"Myesha Pinder","type":"Person","_key":"35772"} +{"label":"Lashandra Burrows","version":21,"id":"58981","lastModified":"1301902130000","name":"Lashandra Burrows","type":"Person","_key":"35773"} +{"label":"Steve LiGambi","version":21,"id":"58983","lastModified":"1301902130000","name":"Steve LiGambi","type":"Person","_key":"35774"} +{"label":"Stewart Raffill","version":45,"id":"59023","lastModified":"1301901650000","name":"Stewart Raffill","type":"Person","_key":"35775"} +{"label":"Firewall","description":"State-of-the-art security system creator Jack Stanfield has cemented his reputation as a man who's thought of everything. But when a criminal finds a way into Jack's personal life, everything Jack holds dear is suddenly at stake.","id":"9754","runtime":105,"imdbId":"tt0408345","trailer":"http:\/\/www.youtube.com\/watch?v=1857","version":236,"lastModified":"1301901798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cc\/4bc928b3017a3c57fe0107cc\/firewall-mid.jpg","genre":"Action","title":"Firewall","releaseDate":1139529600000,"language":"en","tagline":"Nothing Is More Dangerous Than A Man With Everything To Lose.","type":"Movie","_key":"35776"} +{"label":"Carly Schroeder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33e\/4cb201337b9aa1263d00033e\/carly-schroeder-profile.jpg","biography":"Carly's tag-along trip to her cousin\u2019s audition in 1993 turned out\nto be her lucky day and the start of her career as an actress.\n\nWhile there, the cute three-year-old was spotted by the casting\ndirector and asked if she would consider working for them. While\nCarly\u2019s mom, Kelli, was hesitant at first, the prospects of tucking\naway money for a college education appealed to her.\n\n\u201cCarly going to Chicago once a month for a job would be fine as\nlong as it didn\u2019t interfere with our family time,\u201d Kell","version":37,"birthday":"656204400000","id":"58899","birthplace":"Valparaiso, Indiana, USA","lastModified":"1301901427000","name":"Carly Schroeder","type":"Person","_key":"35777"} +{"label":"Gail Ann Lewis","version":25,"id":"58900","lastModified":"1301901673000","name":"Gail Ann Lewis","type":"Person","_key":"35778"} +{"label":"Matthew Currie Holmes","version":28,"id":"58901","lastModified":"1301901643000","name":"Matthew Currie Holmes","type":"Person","_key":"35779"} +{"label":"Candus Churchill","version":25,"id":"41432","lastModified":"1301901586000","name":"Candus Churchill","type":"Person","_key":"35780"} +{"label":"David Lewis","version":57,"id":"4095","lastModified":"1301901221000","name":"David Lewis","type":"Person","_key":"35781"} +{"label":"Zahf Paroo","version":30,"id":"58902","lastModified":"1301901489000","name":"Zahf Paroo","type":"Person","_key":"35782"} +{"label":"Pat Jenkinson","version":25,"id":"58903","lastModified":"1301901457000","name":"Pat Jenkinson","type":"Person","_key":"35783"} +{"label":"Bloodsuckers","description":"Man has been to the farthest reaches of the earth and now he is traveling to new worlds. But with new worlds come ancient evils... the vampires of space. And not just a handful but entire tribes.","id":"9755","runtime":99,"imdbId":"tt0430926","version":77,"lastModified":"1301903711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7da\/4bc928b4017a3c57fe0107da\/bloodsuckers-mid.jpg","genre":"Horror","title":"Bloodsuckers","releaseDate":1122681600000,"language":"en","type":"Movie","_key":"35784"} +{"label":"Dominic Zamprogna","version":21,"id":"58905","lastModified":"1301901430000","name":"Dominic Zamprogna","type":"Person","_key":"35785"} +{"label":"Michael DeLuise","version":25,"id":"55557","lastModified":"1301901559000","name":"Michael DeLuise","type":"Person","_key":"35786"} +{"label":"David Palffy","version":20,"id":"58906","lastModified":"1301901730000","name":"David Palffy","type":"Person","_key":"35787"} +{"label":"Elias Toufexis","version":24,"id":"58907","lastModified":"1301901637000","name":"Elias Toufexis","type":"Person","_key":"35788"} +{"label":"Carrie Fleming","version":32,"id":"58908","lastModified":"1301901399000","name":"Carrie Fleming","type":"Person","_key":"35789"} +{"label":"Charisse Baker","version":19,"id":"58909","lastModified":"1301901882000","name":"Charisse Baker","type":"Person","_key":"35790"} +{"label":"John DeSantis","version":19,"id":"43299","lastModified":"1301901730000","name":"John DeSantis","type":"Person","_key":"35791"} +{"label":"Geoff Redknap","version":19,"id":"58910","lastModified":"1301901882000","name":"Geoff Redknap","type":"Person","_key":"35792"} +{"label":"Krista Bell","version":19,"id":"58911","lastModified":"1301901882000","name":"Krista Bell","type":"Person","_key":"35793"} +{"label":"Leanne Adachi","version":20,"id":"25388","lastModified":"1301901762000","name":"Leanne Adachi","type":"Person","_key":"35794"} +{"label":"Matthew Hastings","version":25,"id":"58912","lastModified":"1301901438000","name":"Matthew Hastings","type":"Person","_key":"35795"} +{"label":"Half Light","description":"After the tragic drowning of her 5 year old son, best selling thriller novelist Rachel Carlson (Demi Moore) moves to a remote cottage on the Scottish coast to begin writing again. But Rachel's demons have followed her as loneliness and paranoia leave her not knowing what's real and what is just imagination in the fight to save her life.","id":"9756","runtime":110,"imdbId":"tt0412798","version":214,"lastModified":"1301902651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f3\/4bc928b6017a3c57fe0107f3\/half-light-mid.jpg","studio":"Lakeshore Entertainment","genre":"Thriller","title":"Half Light","releaseDate":1137456000000,"language":"en","type":"Movie","_key":"35796"} +{"label":"Beans El-Balawi","version":19,"id":"58913","lastModified":"1301902094000","name":"Beans El-Balawi","type":"Person","_key":"35797"} +{"label":"Kate Isitt","version":20,"id":"58914","lastModified":"1301901882000","name":"Kate Isitt","type":"Person","_key":"35798"} +{"label":"Nicholas Gleaves","version":19,"id":"58915","lastModified":"1301901881000","name":"Nicholas Gleaves","type":"Person","_key":"35799"} +{"label":"Joanna Hole","version":19,"id":"47570","lastModified":"1301901614000","name":"Joanna Hole","type":"Person","_key":"35800"} +{"label":"Mickey Wilson","version":19,"id":"58916","lastModified":"1301902094000","name":"Mickey Wilson","type":"Person","_key":"35801"} +{"label":"Polly Frame","version":19,"id":"58917","lastModified":"1301902094000","name":"Polly Frame","type":"Person","_key":"35802"} +{"label":"Ceit Kearney","version":19,"id":"58918","lastModified":"1301902094000","name":"Ceit Kearney","type":"Person","_key":"35803"} +{"label":"Nichola Bee","version":19,"id":"58919","lastModified":"1301902272000","name":"Nichola Bee","type":"Person","_key":"35804"} +{"label":"Jamie Edgell","version":19,"id":"58920","lastModified":"1301902094000","name":"Jamie Edgell","type":"Person","_key":"35805"} +{"label":"Anne Smith","version":19,"id":"58921","lastModified":"1301901881000","name":"Anne Smith","type":"Person","_key":"35806"} +{"label":"Craig Rosenberg","version":43,"id":"58922","lastModified":"1301901588000","name":"Craig Rosenberg","type":"Person","_key":"35807"} +{"label":"Norbit","description":"A mild-mannered guy who is engaged to a monstrous woman meets the woman of his dreams, and schemes to find a way to be with her.","id":"9757","runtime":101,"imdbId":"tt0477051","version":196,"lastModified":"1301902254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4bc928ba017a3c57fe0107fc\/norbit-mid.jpg","genre":"Comedy","title":"Norbit","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"35808"} +{"label":"Clifton Powell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f1\/4d0ba8f05e73d6383e0000f1\/clifton-powell-profile.jpg","version":42,"id":"58924","lastModified":"1301904098000","name":"Clifton Powell","type":"Person","_key":"35809"} +{"label":"Lester Speight","version":18,"id":"58925","lastModified":"1301901739000","name":"Lester Speight","type":"Person","_key":"35810"} +{"label":"Katt Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4bd1a544017a3c63f1000222\/katt-williams-profile.jpg","version":48,"id":"58926","lastModified":"1301901804000","name":"Katt Williams","type":"Person","_key":"35811"} +{"label":"Floyd Levine","version":22,"id":"58927","lastModified":"1301901939000","name":"Floyd Levine","type":"Person","_key":"35812"} +{"label":"Pat Crawford Brown","version":22,"id":"58928","lastModified":"1301901940000","name":"Pat Crawford Brown","type":"Person","_key":"35813"} +{"label":"Jeanette Miller","version":20,"id":"58929","lastModified":"1301902094000","name":"Jeanette Miller","type":"Person","_key":"35814"} +{"label":"Alexis Rhee","version":20,"id":"58930","lastModified":"1301902094000","name":"Alexis Rhee","type":"Person","_key":"35815"} +{"label":"Brian Robbins","version":50,"id":"53177","lastModified":"1301975116000","name":"Brian Robbins","type":"Person","_key":"35816"} +{"label":"Cellular","description":"A young man receives an emergency phone call on his cell phone from an older woman. The catch? The woman claims to have been kidnapped; and the kidnappers have targeted her husband and child next.","id":"9759","runtime":94,"imdbId":"tt0337921","version":175,"lastModified":"1301902214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4bc928c0017a3c57fe01081d\/cellular-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Cellular","releaseDate":1094774400000,"language":"en","type":"Movie","_key":"35817"} +{"label":"Brenda Ballard","version":21,"id":"58941","lastModified":"1301901675000","name":"Brenda Ballard","type":"Person","_key":"35818"} +{"label":"Will Beinbrink","version":21,"id":"58942","lastModified":"1301901559000","name":"Will Beinbrink","type":"Person","_key":"35819"} +{"label":"Chase Bloch","version":20,"id":"58943","lastModified":"1301901551000","name":"Chase Bloch","type":"Person","_key":"35820"} +{"label":"Chelsea Bloch","version":20,"id":"58944","lastModified":"1301901634000","name":"Chelsea Bloch","type":"Person","_key":"35821"} +{"label":"Chantille Boudousque","version":20,"id":"58945","lastModified":"1301901764000","name":"Chantille Boudousque","type":"Person","_key":"35822"} +{"label":"Robin Brenner","version":20,"id":"58946","lastModified":"1301901764000","name":"Robin Brenner","type":"Person","_key":"35823"} +{"label":"Paige Cannon","version":20,"id":"58947","lastModified":"1301901485000","name":"Paige Cannon","type":"Person","_key":"35824"} +{"label":"Nikki Christian","version":20,"id":"58948","lastModified":"1301901437000","name":"Nikki Christian","type":"Person","_key":"35825"} +{"label":"John Churchill","version":20,"id":"58949","lastModified":"1301901634000","name":"John Churchill","type":"Person","_key":"35826"} +{"label":"Greg Collins","version":29,"id":"58950","lastModified":"1301901311000","name":"Greg Collins","type":"Person","_key":"35827"} +{"label":"Valerie Cruz","version":41,"id":"43232","lastModified":"1301901359000","name":"Valerie Cruz","type":"Person","_key":"35828"} +{"label":"Epic Movie","description":"When Edward, Peter, Lucy and Susan each follow their own path, they end up finding themselves at Willy's Chocolate factory. Walking through a wardrobe, they discover the world of Gnarnia, which is ruled by the White Bitch. Meeting up with characters such as Harry Potter and Captain Jack Swallows, the newly reunited family must team up with Aslo, a wise-but-horny lion to stop the white bitch's army","id":"9760","runtime":86,"imdbId":"tt0799949","version":193,"lastModified":"1301902695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82a\/4bc928c2017a3c57fe01082a\/epic-movie-mid.jpg","studio":"New Regency Pictures","genre":"Action","title":"Epic Movie","releaseDate":1169769600000,"language":"en","tagline":"We know it's big. We measured it.","type":"Movie","_key":"35829"} +{"label":"Adam Campbell","version":23,"id":"58952","lastModified":"1301901311000","name":"Adam Campbell","type":"Person","_key":"35830"} +{"label":"Jayma Mays","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b7\/4d3faa635e73d622cb0052b7\/jayma-mays-profile.jpg","version":38,"id":"34195","lastModified":"1301901259000","name":"Jayma Mays","type":"Person","_key":"35831"} +{"label":"Faune A. Chambers","version":25,"id":"58953","lastModified":"1301901338000","name":"Faune A. Chambers","type":"Person","_key":"35832"} +{"label":"H\u00e9ctor Jim\u00e9nez","version":26,"id":"57410","lastModified":"1301901257000","name":"H\u00e9ctor Jim\u00e9nez","type":"Person","_key":"35833"} +{"label":"Darrell Hammond","version":24,"id":"58954","lastModified":"1301902136000","name":"Darrell Hammond","type":"Person","_key":"35834"} +{"label":"Kevin McDonald","version":32,"id":"58955","lastModified":"1301901467000","name":"Kevin McDonald","type":"Person","_key":"35835"} +{"label":"George Alvarez","version":20,"id":"58956","lastModified":"1301901881000","name":"George Alvarez","type":"Person","_key":"35836"} +{"label":"Crista Flanagan","version":23,"id":"58957","lastModified":"1301901841000","name":"Crista Flanagan","type":"Person","_key":"35837"} +{"label":"Elephants Dream","description":"Emo and Proog are on a journey in the folds of a giant Machine, exploring the twisted and dark complex of wires, gears and cogs. Until one moment a conflict arises that throws out all their assumptions. This is the world's first open source movie, created using the FOSS program Blender.","id":"9761","runtime":11,"imdbId":"tt0807840","homepage":"http:\/\/www.elephantsdream.org\/","version":86,"lastModified":"1301903711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85d\/4bc928cb017a3c57fe01085d\/elephants-dream-mid.jpg","studio":"Blender Foundation","genre":"Animation","title":"Elephants Dream","releaseDate":1143158400000,"language":"en","type":"Movie","_key":"35838"} +{"label":"Bassam Kurdali","version":24,"id":"23499","lastModified":"1301904130000","name":"Bassam Kurdali","type":"Person","_key":"35839"} +{"label":"Step Up","description":"Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore\u00b9s tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore\u00b9s ultra-elite Maryland School of the Arts","id":"9762","runtime":104,"imdbId":"tt0462590","version":206,"lastModified":"1301907531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86f\/4bc928cc017a3c57fe01086f\/step-up-mid.jpg","genre":"Drama","title":"Step Up","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"35840"} +{"label":"Damaine Radcliff","version":26,"id":"58959","lastModified":"1301901730000","name":"Damaine Radcliff","type":"Person","_key":"35841"} +{"label":"De'Shawn Washington","version":22,"id":"58960","lastModified":"1301901730000","name":"De'Shawn Washington","type":"Person","_key":"35842"} +{"label":"Mario","version":24,"id":"58961","lastModified":"1301901730000","name":"Mario","type":"Person","_key":"35843"} +{"label":"Drew Sidora","version":26,"id":"58962","lastModified":"1301901943000","name":"Drew Sidora","type":"Person","_key":"35844"} +{"label":"Josh Henderson","version":26,"id":"58963","lastModified":"1301901944000","name":"Josh Henderson","type":"Person","_key":"35845"} +{"label":"Tim Lacatena","version":22,"id":"58964","lastModified":"1301901881000","name":"Tim Lacatena","type":"Person","_key":"35846"} +{"label":"Alyson Stoner","version":47,"id":"58965","lastModified":"1301901180000","name":"Alyson Stoner","type":"Person","_key":"35847"} +{"label":"Deirdre Lovejoy","version":24,"id":"58966","lastModified":"1301901635000","name":"Deirdre Lovejoy","type":"Person","_key":"35848"} +{"label":"Jane Beard","version":26,"id":"58967","lastModified":"1301901881000","name":"Jane Beard","type":"Person","_key":"35849"} +{"label":"Richard Pelzman","version":22,"id":"58968","lastModified":"1301901881000","name":"Richard Pelzman","type":"Person","_key":"35850"} +{"label":"Carlyncia S. Peck","version":22,"id":"58969","lastModified":"1301901881000","name":"Carlyncia S. Peck","type":"Person","_key":"35851"} +{"label":"Goal!","description":"Like millions of kids around the world, Santiago harbors the dream of being a professional footballer...However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.","id":"9763","runtime":118,"imdbId":"tt0380389","version":196,"lastModified":"1301903566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fb\/4d4ae8d55e73d617ba0008fb\/goal-mid.jpg","genre":"Drama","title":"Goal!","releaseDate":1147392000000,"language":"en","tagline":"Every Dream Has A Beginning","type":"Movie","_key":"35852"} +{"label":"Kuno Becker","version":29,"id":"58982","lastModified":"1301901946000","name":"Kuno Becker","type":"Person","_key":"35853"} +{"label":"Kate Tomlinson","version":21,"id":"58984","lastModified":"1301901990000","name":"Kate Tomlinson","type":"Person","_key":"35854"} +{"label":"Zachary Johnson","version":20,"id":"58985","lastModified":"1301901619000","name":"Zachary Johnson","type":"Person","_key":"35855"} +{"label":"Kevin Knapman","version":21,"id":"58986","lastModified":"1301901739000","name":"Kevin Knapman","type":"Person","_key":"35856"} +{"label":"Dersu Uzala","description":"A military explorer meets and befriends a Goldi man in Russia\u2019s unmapped forests. A deep and abiding bond evolves between the two men, one civilized in the usual sense, the other at home in the glacial Siberian woods.","id":"9764","runtime":144,"imdbId":"tt0071411","version":163,"lastModified":"1301904551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a8\/4bf7fb6c017a3c772c0004a8\/9764-mid.jpg","studio":"Atelier 41","genre":"Adventure","title":"Dersu Uzala","releaseDate":213321600000,"language":"en","type":"Movie","_key":"35857"} +{"label":"Maksim Munzuk","version":23,"id":"58989","lastModified":"1301904130000","name":"Maksim Munzuk","type":"Person","_key":"35858"} +{"label":"Yuri Solomin","version":22,"id":"58990","lastModified":"1301902094000","name":"Yuri Solomin","type":"Person","_key":"35859"} +{"label":"Svetlana Danilchenko","version":22,"id":"58991","lastModified":"1301902272000","name":"Svetlana Danilchenko","type":"Person","_key":"35860"} +{"label":"Dmitri Korshikov","version":22,"id":"58992","lastModified":"1301901730000","name":"Dmitri Korshikov","type":"Person","_key":"35861"} +{"label":"Suimenkul Chokmorov","version":22,"id":"58993","lastModified":"1301902272000","name":"Suimenkul Chokmorov","type":"Person","_key":"35862"} +{"label":"Vladimir Kremena","version":22,"id":"58994","lastModified":"1301902272000","name":"Vladimir Kremena","type":"Person","_key":"35863"} +{"label":"Mikhail Bychkov","version":22,"id":"58995","lastModified":"1301902272000","name":"Mikhail Bychkov","type":"Person","_key":"35864"} +{"label":"Sovetbek Dzhumadylov","version":22,"id":"58996","lastModified":"1301902272000","name":"Sovetbek Dzhumadylov","type":"Person","_key":"35865"} +{"label":"B. Khorulev","version":22,"id":"58997","lastModified":"1301902272000","name":"B. Khorulev","type":"Person","_key":"35866"} +{"label":"Nikolai Volkov","version":22,"id":"58998","lastModified":"1301902272000","name":"Nikolai Volkov","type":"Person","_key":"35867"} +{"label":"Der Grosse Bagarozy","description":"No overview found.","id":"9765","runtime":96,"imdbId":"tt0172515","version":38,"lastModified":"1301907406000","genre":"Drama","title":"Der Grosse Bagarozy","releaseDate":939254400000,"language":"en","type":"Movie","_key":"35868"} +{"label":"Sonja Kerskes","version":20,"id":"59020","lastModified":"1301902193000","name":"Sonja Kerskes","type":"Person","_key":"35869"} +{"label":"Gridiron Gang","description":"Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.","id":"9766","runtime":125,"imdbId":"tt0421206","version":257,"lastModified":"1301904067000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88e\/4bc928d1017a3c57fe01088e\/gridiron-gang-mid.jpg","genre":"Action","title":"Gridiron Gang","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"35870"} +{"label":"Jade Yorker","version":21,"id":"59011","lastModified":"1301901773000","name":"Jade Yorker","type":"Person","_key":"35871"} +{"label":"David V. Thomas","version":19,"id":"59012","lastModified":"1301901730000","name":"David V. Thomas","type":"Person","_key":"35872"} +{"label":"Setu Taase","version":19,"id":"59013","lastModified":"1301901537000","name":"Setu Taase","type":"Person","_key":"35873"} +{"label":"Mo","version":19,"id":"59014","lastModified":"1301901537000","name":"Mo","type":"Person","_key":"35874"} +{"label":"James Earl","version":19,"id":"59015","lastModified":"1301901537000","name":"James Earl","type":"Person","_key":"35875"} +{"label":"Trever O'Brien","version":19,"id":"59016","lastModified":"1301901537000","name":"Trever O'Brien","type":"Person","_key":"35876"} +{"label":"Jurnee Smollett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4d7681985e73d605ac000448\/jurnee-smollett-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Jurnee Diana Smollett <\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>was born on October 1, 1986 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:City w:st=\"on\"><st1:place w:st=\"on\">New York City<\/st1:place><\/st1:City>. She co-starred in the ABC television comedy <I>On Our Own<\/I> (1994\u20131995) and guest appeared in numerous televisio","version":29,"birthday":"528505200000","id":"59017","birthplace":"New York City, New York, USA","lastModified":"1301901367000","name":"Jurnee Smollett","type":"Person","_key":"35877"} +{"label":"Michael J. Pagan","version":27,"id":"59018","lastModified":"1301901649000","name":"Michael J. Pagan","type":"Person","_key":"35878"} +{"label":"Jamal Mixon","version":19,"id":"59019","lastModified":"1301901614000","name":"Jamal Mixon","type":"Person","_key":"35879"} +{"label":"The Break-Up","description":"Cohabitating couple Gary and Brooke find their once-blissful romance on the rocks when petty spats about lemons and dirty dishes mushroom into an all-out battle for custody of their upscale Chicago condo. An escalating argument ensues as Gary and Brooke continue to live under the same roof, all while cooking up schemes to drive each other off the premises.","id":"9767","runtime":105,"imdbId":"tt0452594","trailer":"http:\/\/www.youtube.com\/watch?v=15hw8D9w4s8","version":233,"lastModified":"1302038813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41f\/4d3a09067b9aa1614e00341f\/the-break-up-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Break-Up","releaseDate":1149206400000,"language":"en","tagline":". . . pick a side.","type":"Movie","_key":"35880"} +{"label":"Vernon Vaughn","version":25,"id":"59024","lastModified":"1301901829000","name":"Vernon Vaughn","type":"Person","_key":"35881"} +{"label":"Elaine Robinson","version":25,"id":"59025","lastModified":"1301901825000","name":"Elaine Robinson","type":"Person","_key":"35882"} +{"label":"Jane Alderman","version":26,"id":"5630","lastModified":"1301901328000","name":"Jane Alderman","type":"Person","_key":"35883"} +{"label":"Cry-Baby","description":"Allison is a \"square\" good girl who has decided she wants to be bad and falls hard for Cry-Baby Walker, a Greaser (or \"Drape\" in John Waters parlance). Spoofing Elvis movies and Juvenile Delinquency scare films of the '50s, this movie follows the adventures of Cry-Baby who, though he is sent to juvie, is determined to cross class (and taste) boundaries to get Allison back","id":"9768","runtime":91,"imdbId":"tt0099329","version":111,"lastModified":"1301902491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b2\/4bc928d7017a3c57fe0108b2\/cry-baby-mid.jpg","genre":"Comedy","title":"Cry-Baby","releaseDate":639360000000,"language":"en","tagline":"Good girls want him bad. Bad girls want him worse.","type":"Movie","_key":"35884"} +{"label":"Traci Lords","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/51b\/4ce400357b9aa168b100051b\/traci-lords-profile.jpg","version":54,"id":"10826","lastModified":"1302071964000","name":"Traci Lords","type":"Person","_key":"35885"} +{"label":"Ricki Lake","version":35,"id":"70233","lastModified":"1301901461000","name":"Ricki Lake","type":"Person","_key":"35886"} +{"label":"Lolita","description":"A man marries his landlady so he can take advantage of her daughter.","id":"9769","runtime":137,"imdbId":"tt0119558","trailer":"http:\/\/www.youtube.com\/watch?v=1868","version":134,"lastModified":"1302051104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c4\/4bc928d9017a3c57fe0108c4\/lolita-mid.jpg","genre":"Drama","title":"Lolita","releaseDate":875318400000,"language":"en","type":"Movie","_key":"35887"} +{"label":"Mad City","description":"A misguided museum guard who loses his job and then tries to get it back at gunpoint is thrown into the fierce world of ratings-driven TV gone mad.","id":"9770","runtime":114,"imdbId":"tt0119592","version":125,"lastModified":"1301903743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cd\/4bc928da017a3c57fe0108cd\/mad-city-mid.png","genre":"Action","title":"Mad City","releaseDate":878860800000,"language":"en","type":"Movie","_key":"35888"} +{"label":"Major League: Back to the Minors","description":"At the behest of Roger Dorn -- the Minnesota Twins' silver-tongued new owner -- washed-up minor league hurler Gus Cantrell steps up to the plate to take over as skipper of the club's hapless farm team. But little does he know that Dorn has an ulterior motive to generate publicity with a grudge match between the big leaguers and their ragtag Triple A affiliate.","id":"9771","runtime":107,"imdbId":"tt0120742","trailer":"http:\/\/www.youtube.com\/watch?v=-qXKdhE_E60","version":135,"lastModified":"1301904146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4d55fec07b9aa15cf300171a\/major-league-back-to-the-minors-mid.jpg","genre":"Comedy","title":"Major League: Back to the Minors","releaseDate":895536000000,"language":"en","tagline":"They're Just Nine Players Short of a Dream Team","type":"Movie","_key":"35889"} +{"label":"John Warren","version":54,"id":"8108","lastModified":"1301901402000","name":"John Warren","type":"Person","_key":"35890"} +{"label":"Air Force One","description":"Hijackers seize the plane carrying the President of the United States and his family, but he (an ex-soldier) works from hiding to defeat them.","id":"9772","runtime":124,"imdbId":"tt0118571","trailer":"http:\/\/www.youtube.com\/watch?v=Y0Mer1pAQ84","version":203,"lastModified":"1301901737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e8\/4bc928e0017a3c57fe0108e8\/air-force-one-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Air Force One","releaseDate":868924800000,"language":"en","type":"Movie","_key":"35891"} +{"label":"Alien Autopsy","description":"Humouristic reconstruction of the 1995 scandal when two British lads were accused of having faked a documentary from the Roswell incident in 1947.","id":"9773","runtime":95,"imdbId":"tt0466664","version":277,"lastModified":"1301905277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f6\/4bc928e1017a3c57fe0108f6\/alien-autopsy-mid.jpg","genre":"Comedy","title":"Alien Autopsy","releaseDate":1144368000000,"language":"en","type":"Movie","_key":"35892"} +{"label":"Declan Donnelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ec0\/4cf17e3a5e73d61929000ec0\/declan-donnelly-profile.jpg","version":20,"id":"59068","lastModified":"1301901634000","name":"Declan Donnelly","type":"Person","_key":"35893"} +{"label":"Anthony McPartlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f90\/4cf17e8e5e73d61925000f90\/anthony-mcpartlin-profile.jpg","version":18,"id":"59069","lastModified":"1301901606000","name":"Anthony McPartlin","type":"Person","_key":"35894"} +{"label":"Morwenna Banks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f9e\/4cf17f9e5e73d61925000f9e\/morwenna-banks-profile.jpg","version":23,"id":"59070","lastModified":"1301901469000","name":"Morwenna Banks","type":"Person","_key":"35895"} +{"label":"Mike Blakeley","version":19,"id":"59071","lastModified":"1301902094000","name":"Mike Blakeley","type":"Person","_key":"35896"} +{"label":"Matthew Blakeley","version":19,"id":"59072","lastModified":"1301902094000","name":"Matthew Blakeley","type":"Person","_key":"35897"} +{"label":"Madeleine Moffat","version":19,"id":"59073","lastModified":"1301902094000","name":"Madeleine Moffat","type":"Person","_key":"35898"} +{"label":"John Cater","version":24,"id":"59074","lastModified":"1301902325000","name":"John Cater","type":"Person","_key":"35899"} +{"label":"Perry Benson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f33\/4cf1804c5e73d61924000f33\/perry-benson-profile.jpg","version":26,"id":"59076","lastModified":"1301902018000","name":"Perry Benson","type":"Person","_key":"35900"} +{"label":"Jimmy Carr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f7c\/4cf17d465e73d61925000f7c\/jimmy-carr-profile.jpg","version":39,"id":"59077","lastModified":"1301901495000","name":"Jimmy Carr","type":"Person","_key":"35901"} +{"label":"Winston Thomas","version":19,"id":"59078","lastModified":"1301902094000","name":"Winston Thomas","type":"Person","_key":"35902"} +{"label":"Michael Rouse","version":19,"id":"59079","lastModified":"1301902272000","name":"Michael Rouse","type":"Person","_key":"35903"} +{"label":"Pam Shaw","version":19,"id":"59080","lastModified":"1301902094000","name":"Pam Shaw","type":"Person","_key":"35904"} +{"label":"David Threlfall","version":21,"id":"59081","lastModified":"1301902094000","name":"David Threlfall","type":"Person","_key":"35905"} +{"label":"Andrew Greenough","version":19,"id":"59082","lastModified":"1301902094000","name":"Andrew Greenough","type":"Person","_key":"35906"} +{"label":"Stephanie Metcalfe","version":19,"id":"59083","lastModified":"1301902094000","name":"Stephanie Metcalfe","type":"Person","_key":"35907"} +{"label":"Jonathan Coy","version":24,"id":"59084","lastModified":"1301901979000","name":"Jonathan Coy","type":"Person","_key":"35908"} +{"label":"Ian Porter","version":19,"id":"59085","lastModified":"1301902094000","name":"Ian Porter","type":"Person","_key":"35909"} +{"label":"Naima Belkhiati","version":19,"id":"59086","lastModified":"1301902094000","name":"Naima Belkhiati","type":"Person","_key":"35910"} +{"label":"Miguel Angel Plaza","version":19,"id":"59087","lastModified":"1301902094000","name":"Miguel Angel Plaza","type":"Person","_key":"35911"} +{"label":"Lachele Carl","version":21,"id":"59088","lastModified":"1301902272000","name":"Lachele Carl","type":"Person","_key":"35912"} +{"label":"Adriana Yanez","version":19,"id":"59089","lastModified":"1301902272000","name":"Adriana Yanez","type":"Person","_key":"35913"} +{"label":"Nichole Hiltz","version":23,"id":"59090","lastModified":"1301901644000","name":"Nichole Hiltz","type":"Person","_key":"35914"} +{"label":"Luis Soto","version":19,"id":"59091","lastModified":"1301902094000","name":"Luis Soto","type":"Person","_key":"35915"} +{"label":"Cristina Piaget","version":19,"id":"59092","lastModified":"1301902094000","name":"Cristina Piaget","type":"Person","_key":"35916"} +{"label":"Christina Souza","version":25,"id":"59093","lastModified":"1301902388000","name":"Christina Souza","type":"Person","_key":"35917"} +{"label":"Bradley Lavelle","version":19,"id":"25530","lastModified":"1301902094000","name":"Bradley Lavelle","type":"Person","_key":"35918"} +{"label":"Ray Santilli","version":20,"id":"59094","lastModified":"1301902094000","name":"Ray Santilli","type":"Person","_key":"35919"} +{"label":"Gary Shoefield","version":19,"id":"59095","lastModified":"1301902094000","name":"Gary Shoefield","type":"Person","_key":"35920"} +{"label":"Luke Brandon Field","version":17,"id":"59096","lastModified":"1301902094000","name":"Luke Brandon Field","type":"Person","_key":"35921"} +{"label":"Julia Bridgeman","version":19,"id":"59097","lastModified":"1301902094000","name":"Julia Bridgeman","type":"Person","_key":"35922"} +{"label":"Sophia Ellis","version":19,"id":"59098","lastModified":"1301902094000","name":"Sophia Ellis","type":"Person","_key":"35923"} +{"label":"Gillian Goodman","version":19,"id":"59099","lastModified":"1301902094000","name":"Gillian Goodman","type":"Person","_key":"35924"} +{"label":"Flor Kent","version":19,"id":"59100","lastModified":"1301902094000","name":"Flor Kent","type":"Person","_key":"35925"} +{"label":"Todd Sherry","version":19,"id":"59101","lastModified":"1301902094000","name":"Todd Sherry","type":"Person","_key":"35926"} +{"label":"Peter Willcock","version":19,"id":"59102","lastModified":"1301902094000","name":"Peter Willcock","type":"Person","_key":"35927"} +{"label":"Jonny Campbell","version":23,"id":"59104","lastModified":"1301902094000","name":"Jonny Campbell","type":"Person","_key":"35928"} +{"label":"Kokoda: 39th Battalion","description":"A bitter battle is fought between Australian and Japanese soldiers along the Kokoda trail in New Guinea during World War II.","id":"9774","runtime":92,"imdbId":"tt0481390","version":146,"lastModified":"1301904233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ff\/4bc928e2017a3c57fe0108ff\/kokoda-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Action","title":"Kokoda: 39th Battalion","releaseDate":1145923200000,"language":"en","type":"Movie","_key":"35929"} +{"label":"Jack Finsterer","version":24,"id":"59114","lastModified":"1301901955000","name":"Jack Finsterer","type":"Person","_key":"35930"} +{"label":"Travis McMahon","version":26,"id":"59115","lastModified":"1301901445000","name":"Travis McMahon","type":"Person","_key":"35931"} +{"label":"Steve Le Marquand","version":27,"id":"59116","lastModified":"1301901603000","name":"Steve Le Marquand","type":"Person","_key":"35932"} +{"label":"Angus Sampson","version":28,"id":"59117","lastModified":"1301902035000","name":"Angus Sampson","type":"Person","_key":"35933"} +{"label":"Christopher Baker","version":29,"id":"59118","lastModified":"1301902349000","name":"Christopher Baker","type":"Person","_key":"35934"} +{"label":"Ewen Leslie","version":24,"id":"59119","lastModified":"1301902337000","name":"Ewen Leslie","type":"Person","_key":"35935"} +{"label":"Ben Barrack","version":24,"id":"59120","lastModified":"1301902337000","name":"Ben Barrack","type":"Person","_key":"35936"} +{"label":"Shane Bourne","version":24,"id":"59121","lastModified":"1301902337000","name":"Shane Bourne","type":"Person","_key":"35937"} +{"label":"William McInnes","version":28,"id":"59122","lastModified":"1301901855000","name":"William McInnes","type":"Person","_key":"35938"} +{"label":"Darren Taylor","version":24,"id":"59123","lastModified":"1301902366000","name":"Darren Taylor","type":"Person","_key":"35939"} +{"label":"Lucas Stibbard","version":24,"id":"59124","lastModified":"1301902337000","name":"Lucas Stibbard","type":"Person","_key":"35940"} +{"label":"Jeffey Gunn","version":24,"id":"59125","lastModified":"1301902151000","name":"Jeffey Gunn","type":"Person","_key":"35941"} +{"label":"Alister Grierson","version":35,"id":"59126","lastModified":"1301901582000","name":"Alister Grierson","type":"Person","_key":"35942"} +{"label":"Noviembre","description":"Impelled by a spirit which still preserves a patina of idealism, Alfredo arrives in Madrid intent on creating \"a performance which is freer...","id":"9775","runtime":104,"imdbId":"tt0376800","version":59,"lastModified":"1301906621000","genre":"Comedy","title":"Noviembre","releaseDate":1064534400000,"language":"en","type":"Movie","_key":"35943"} +{"label":"\u00d3scar Jaenada","version":30,"id":"59129","lastModified":"1301901201000","name":"\u00d3scar Jaenada","type":"Person","_key":"35944"} +{"label":"Javier R\u00edos","version":19,"id":"59130","lastModified":"1301902094000","name":"Javier R\u00edos","type":"Person","_key":"35945"} +{"label":"Juan D\u00edaz","version":19,"id":"59131","lastModified":"1301901881000","name":"Juan D\u00edaz","type":"Person","_key":"35946"} +{"label":"Adriana Dom\u00ednguez","version":19,"id":"59132","lastModified":"1301901881000","name":"Adriana Dom\u00ednguez","type":"Person","_key":"35947"} +{"label":"Jordi Padrosa","version":19,"id":"59133","lastModified":"1301902272000","name":"Jordi Padrosa","type":"Person","_key":"35948"} +{"label":"N\u00faria Gago","version":20,"id":"59134","lastModified":"1301902271000","name":"N\u00faria Gago","type":"Person","_key":"35949"} +{"label":"Juanma Rodr\u00edguez","version":19,"id":"59135","lastModified":"1301902271000","name":"Juanma Rodr\u00edguez","type":"Person","_key":"35950"} +{"label":"H\u00e9ctor Alterio","version":23,"id":"59136","lastModified":"1301902323000","name":"H\u00e9ctor Alterio","type":"Person","_key":"35951"} +{"label":"Paloma Lorena","version":19,"id":"59137","lastModified":"1301902271000","name":"Paloma Lorena","type":"Person","_key":"35952"} +{"label":"Angel Facio","version":19,"id":"59138","lastModified":"1301902271000","name":"Angel Facio","type":"Person","_key":"35953"} +{"label":"Amparo Valle","version":19,"id":"59139","lastModified":"1301902271000","name":"Amparo Valle","type":"Person","_key":"35954"} +{"label":"Fernando Conde","version":20,"id":"59140","lastModified":"1301902271000","name":"Fernando Conde","type":"Person","_key":"35955"} +{"label":"Amparo Bar\u00f3","version":19,"id":"59141","lastModified":"1301902271000","name":"Amparo Bar\u00f3","type":"Person","_key":"35956"} +{"label":"Achero Ma\u00f1as","version":21,"id":"59142","lastModified":"1301902136000","name":"Achero Ma\u00f1as","type":"Person","_key":"35957"} +{"label":"Head of State","description":"When a presidential candidate dies unexpectedly in the middle of the campaign, the Democratic party unexpectedly picks a Washington, D.C. alderman, Mays Gilliam (Rock) as his replacement .","id":"9776","runtime":95,"imdbId":"tt0325537","version":134,"lastModified":"1301903516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/908\/4bc928e2017a3c57fe010908\/head-of-state-mid.jpg","genre":"Comedy","title":"Head of State","releaseDate":1048809600000,"language":"en","type":"Movie","_key":"35958"} +{"label":"Robin Givens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55b\/4d8154957b9aa12db000155b\/robin-givens-profile.jpg","version":40,"id":"59153","lastModified":"1301901696000","name":"Robin Givens","type":"Person","_key":"35959"} +{"label":"Tamala Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a3\/4d7ff37c7b9aa12db70000a3\/tamala-jones-profile.jpg","biography":"<P style=\"MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify\"><FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Tamala R. Jones<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was born in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Pasadena<\/st1:City>, <st1:State w:st=\"on\">California<\/st1:State><\/st1:place> on November 12, 1974. She is best known for her ","version":52,"birthday":"153442800000","id":"59154","birthplace":"Pasadena, California, USA","lastModified":"1301901274000","name":"Tamala Jones","type":"Person","_key":"35960"} +{"label":"Stephanie March","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9df\/4c70e0a37b9aa13ab50009df\/stephanie-march-profile.jpg","version":35,"id":"59156","lastModified":"1301901532000","name":"Stephanie March","type":"Person","_key":"35961"} +{"label":"Nate Dogg","version":21,"id":"59157","lastModified":"1301902181000","name":"Nate Dogg","type":"Person","_key":"35962"} +{"label":"Angie Mattson","version":19,"id":"59158","lastModified":"1301901614000","name":"Angie Mattson","type":"Person","_key":"35963"} +{"label":"Elizabeth J. Carlisle","version":17,"id":"59159","lastModified":"1301901619000","name":"Elizabeth J. Carlisle","type":"Person","_key":"35964"} +{"label":"Kirk Penberthy","version":19,"id":"59160","lastModified":"1301901881000","name":"Kirk Penberthy","type":"Person","_key":"35965"} +{"label":"John Badila","version":21,"id":"59161","lastModified":"1301902132000","name":"John Badila","type":"Person","_key":"35966"} +{"label":"Ed Wheeler","version":19,"id":"59162","lastModified":"1301902094000","name":"Ed Wheeler","type":"Person","_key":"35967"} +{"label":"Jamil Shaw","version":19,"id":"59163","lastModified":"1301901881000","name":"Jamil Shaw","type":"Person","_key":"35968"} +{"label":"Proof","description":"The daughter of a brilliant but mentally disturbed mathematician, recently deceased, tries to come to grips with her possible inheritance: his insanity. Complicating matters are one of her father's ex-students who wants to search through his papers and her estranged sister who shows up to help settle his affairs.","id":"9777","runtime":99,"imdbId":"tt0377107","trailer":"http:\/\/www.youtube.com\/watch?v=DI1vRch4omw","version":204,"lastModified":"1301904504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/915\/4bc928e6017a3c57fe010915\/proof-mid.jpg","genre":"Drama","title":"Proof","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"35969"} +{"label":"Danny McCarthy","version":32,"id":"59145","lastModified":"1301901730000","name":"Danny McCarthy","type":"Person","_key":"35970"} +{"label":"Tobiasz Daszkiewicz","version":25,"id":"59146","lastModified":"1301902094000","name":"Tobiasz Daszkiewicz","type":"Person","_key":"35971"} +{"label":"Anne Wittman","version":25,"id":"59147","lastModified":"1301902094000","name":"Anne Wittman","type":"Person","_key":"35972"} +{"label":"Leigh Zimmerman","version":25,"id":"59148","lastModified":"1301902094000","name":"Leigh Zimmerman","type":"Person","_key":"35973"} +{"label":"Leland Burnett","version":25,"id":"59149","lastModified":"1301901730000","name":"Leland Burnett","type":"Person","_key":"35974"} +{"label":"John Keefe","version":30,"id":"59150","lastModified":"1301901782000","name":"John Keefe","type":"Person","_key":"35975"} +{"label":"C. Gerod Harris","version":28,"id":"59152","lastModified":"1301901730000","name":"C. Gerod Harris","type":"Person","_key":"35976"} +{"label":"Serendipity","description":"Though strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter -- but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another first!","id":"9778","runtime":90,"imdbId":"tt0240890","version":247,"lastModified":"1301902621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8f\/4d5046917b9aa13aab00cb8f\/serendipity-mid.jpg","genre":"Comedy","title":"Serendipity","releaseDate":1002240000000,"language":"en","tagline":"Sometimes True Love Can Have More Than One Face.","type":"Movie","_key":"35977"} +{"label":"Lilli Lavine","version":25,"id":"59165","lastModified":"1301902123000","name":"Lilli Lavine","type":"Person","_key":"35978"} +{"label":"Michael Guarino Jr.","version":25,"id":"59166","lastModified":"1301901761000","name":"Michael Guarino Jr.","type":"Person","_key":"35979"} +{"label":"Abdul Alshawish","version":25,"id":"59167","lastModified":"1301902123000","name":"Abdul Alshawish","type":"Person","_key":"35980"} +{"label":"Ann Talman","version":25,"id":"59168","lastModified":"1301902123000","name":"Ann Talman","type":"Person","_key":"35981"} +{"label":"Crystal Bock","version":25,"id":"59169","lastModified":"1301902123000","name":"Crystal Bock","type":"Person","_key":"35982"} +{"label":"Stephen Bruce","version":25,"id":"59170","lastModified":"1301902123000","name":"Stephen Bruce","type":"Person","_key":"35983"} +{"label":"Gary Gerbrandt","version":25,"id":"59171","lastModified":"1301902123000","name":"Gary Gerbrandt","type":"Person","_key":"35984"} +{"label":"Kate Blumberg","version":37,"id":"59172","lastModified":"1301902123000","name":"Kate Blumberg","type":"Person","_key":"35985"} +{"label":"Ron Payne","version":26,"id":"59173","lastModified":"1301902132000","name":"Ron Payne","type":"Person","_key":"35986"} +{"label":"The Sisterhood of the Traveling Pants","description":"Four best girlfriends hatch a plan to stay connected with one another as their lives start off in different directions: they pass around a pair of secondhand jeans that fits each of their bodies perfectly.","id":"9779","runtime":119,"imdbId":"tt0403508","version":173,"lastModified":"1301902918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/927\/4bc928e7017a3c57fe010927\/the-sisterhood-of-the-traveling-pants-mid.jpg","genre":"Adventure","title":"The Sisterhood of the Traveling Pants","releaseDate":1117584000000,"language":"en","tagline":"Laugh. Cry. Share the pants.","type":"Movie","_key":"35987"} +{"label":"America Ferrera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/494\/4c0227fd017a3c702f001494\/america-ferrera-profile.jpg","version":57,"id":"59174","lastModified":"1301901123000","name":"America Ferrera","type":"Person","_key":"35988"} +{"label":"Blake Lively","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ea1\/4bfe9f17017a3c702d000ea1\/blake-lively-profile.jpg","version":68,"id":"59175","lastModified":"1301901097000","name":"Blake Lively","type":"Person","_key":"35989"} +{"label":"Jenna Boyd","version":28,"id":"59176","lastModified":"1301901995000","name":"Jenna Boyd","type":"Person","_key":"35990"} +{"label":"Michael Rady","version":22,"id":"59177","lastModified":"1301901809000","name":"Michael Rady","type":"Person","_key":"35991"} +{"label":"Maria Konstadarou","version":22,"id":"59178","lastModified":"1301902011000","name":"Maria Konstadarou","type":"Person","_key":"35992"} +{"label":"George Touliatos","version":23,"id":"59179","lastModified":"1301901991000","name":"George Touliatos","type":"Person","_key":"35993"} +{"label":"Erica Hubbard","version":24,"id":"59180","lastModified":"1301901841000","name":"Erica Hubbard","type":"Person","_key":"35994"} +{"label":"Emily Tennant","version":24,"id":"59181","lastModified":"1301901510000","name":"Emily Tennant","type":"Person","_key":"35995"} +{"label":"Jacqueline Ann Steuart","version":22,"id":"59182","lastModified":"1301902026000","name":"Jacqueline Ann Steuart","type":"Person","_key":"35996"} +{"label":"Ernie Lively","version":27,"id":"59184","lastModified":"1301901988000","name":"Ernie Lively","type":"Person","_key":"35997"} +{"label":"Kendall Cross","version":25,"id":"59185","lastModified":"1301901820000","name":"Kendall Cross","type":"Person","_key":"35998"} +{"label":"Detroit Rock City","description":"In 1978, a Kiss concert was an epoch-making event. For the three teen fans in Detroit Rock City getting tickets to the sold-out show becomes the focal point of their existence. They'll do anything for tickets -- compete in a strip club's amateur-night contest, take on religious protesters, even rob a convenience store!","id":"9781","runtime":95,"imdbId":"tt0165710","trailer":"http:\/\/www.youtube.com\/watch?v=1484","version":251,"lastModified":"1301904074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92c\/4bc928e8017a3c57fe01092c\/detroit-rock-city-mid.jpg","genre":"Action","title":"Detroit Rock City","releaseDate":934502400000,"language":"en","tagline":"Disco sucks!","type":"Movie","_key":"35999"} +{"label":"Miles Dougal","version":21,"id":"59190","lastModified":"1301902094000","name":"Miles Dougal","type":"Person","_key":"36000"} +{"label":"Nick Scotti","version":21,"id":"59191","lastModified":"1301902178000","name":"Nick Scotti","type":"Person","_key":"36001"} +{"label":"Emmanuelle Chriqui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a1\/4c02214f017a3c702b0014a1\/emmanuelle-chriqui-profile.jpg","version":68,"id":"59192","lastModified":"1301901113000","name":"Emmanuelle Chriqui","type":"Person","_key":"36002"} +{"label":"David Quane","version":20,"id":"59193","lastModified":"1301902271000","name":"David Quane","type":"Person","_key":"36003"} +{"label":"Rodger Barton","version":20,"id":"59194","lastModified":"1301902271000","name":"Rodger Barton","type":"Person","_key":"36004"} +{"label":"Kathryn Haggis","version":27,"id":"59195","lastModified":"1301901537000","name":"Kathryn Haggis","type":"Person","_key":"36005"} +{"label":"David Gardner","version":23,"id":"44153","lastModified":"1301902138000","name":"David Gardner","type":"Person","_key":"36006"} +{"label":"Kristin Booth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/550\/4cd8b8cb7b9aa11b25000550\/kristin-booth-profile.jpg","version":32,"id":"34915","lastModified":"1301901253000","name":"Kristin Booth","type":"Person","_key":"36007"} +{"label":"Joe Flaherty","version":34,"id":"59196","lastModified":"1301901555000","name":"Joe Flaherty","type":"Person","_key":"36008"} +{"label":"Cody Jones","version":21,"id":"59197","lastModified":"1301902366000","name":"Cody Jones","type":"Person","_key":"36009"} +{"label":"Matthew G. Taylor","version":21,"id":"59198","lastModified":"1301901945000","name":"Matthew G. Taylor","type":"Person","_key":"36010"} +{"label":"Joan Heney","version":32,"id":"59199","lastModified":"1301902094000","name":"Joan Heney","type":"Person","_key":"36011"} +{"label":"Adam Rifkin","version":50,"id":"50583","lastModified":"1301901562000","name":"Adam Rifkin","type":"Person","_key":"36012"} +{"label":"The Night Listener","description":"In the midst of his crumbling relationship, a radio show host begins speaking to his biggest fan, a young boy, via the telephone. But when questions about the boy's identity come up, the host's life is thrown into chaos.","id":"9782","runtime":91,"imdbId":"tt0448075","version":228,"lastModified":"1301903102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/935\/4bc928e9017a3c57fe010935\/the-night-listener-mid.jpg","genre":"Drama","title":"The Night Listener","releaseDate":1154649600000,"language":"en","type":"Movie","_key":"36013"} +{"label":"Rodrigo Lopresti","version":20,"id":"18510","lastModified":"1301901749000","name":"Rodrigo Lopresti","type":"Person","_key":"36014"} +{"label":"Lisa Emery","version":21,"id":"59201","lastModified":"1301902094000","name":"Lisa Emery","type":"Person","_key":"36015"} +{"label":"Guenia Lemos","version":21,"id":"59202","lastModified":"1301902094000","name":"Guenia Lemos","type":"Person","_key":"36016"} +{"label":"Marcia Haufrecht","version":21,"id":"59203","lastModified":"1301902094000","name":"Marcia Haufrecht","type":"Person","_key":"36017"} +{"label":"Nick Gregory","version":22,"id":"59204","lastModified":"1301902137000","name":"Nick Gregory","type":"Person","_key":"36018"} +{"label":"Ed Jewett","version":21,"id":"59205","lastModified":"1301901881000","name":"Ed Jewett","type":"Person","_key":"36019"} +{"label":"E.J. Carroll","version":21,"id":"59207","lastModified":"1301902094000","name":"E.J. Carroll","type":"Person","_key":"36020"} +{"label":"Patrick Stettner","version":24,"id":"59210","lastModified":"1301902094000","name":"Patrick Stettner","type":"Person","_key":"36021"} +{"label":"Sublime","description":"Admitted to Mt. Abaddon Hospital for a routine procedure, George Grieves discovers that his condition is much more serious and complicated than originally expected; and as his own fears begin to manifest around him, he learns that Mt. Abaddon is not a place where people come to get better... it is a place where people come to die.","id":"9783","runtime":113,"imdbId":"tt0822858","version":122,"lastModified":"1301903289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/942\/4bc928ec017a3c57fe010942\/sublime-mid.jpg","genre":"Horror","title":"Sublime","releaseDate":1181865600000,"language":"en","type":"Movie","_key":"36022"} +{"label":"Jeffrey Anderson-Gunter","version":20,"id":"59213","lastModified":"1301902046000","name":"Jeffrey Anderson-Gunter","type":"Person","_key":"36023"} +{"label":"Cas Anvar","version":22,"id":"59214","lastModified":"1301901774000","name":"Cas Anvar","type":"Person","_key":"36024"} +{"label":"Paget Brewster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3af\/4ce18e495e73d60f710003af\/paget-brewster-profile.jpg","version":24,"id":"15423","lastModified":"1301901530000","name":"Paget Brewster","type":"Person","_key":"36025"} +{"label":"Jordi Caballero","version":20,"id":"59215","lastModified":"1301901881000","name":"Jordi Caballero","type":"Person","_key":"36026"} +{"label":"Tom Cavanagh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16e\/4d10514d7b9aa1148600016e\/tom-cavanagh-profile.jpg","version":39,"id":"59216","lastModified":"1301901222000","name":"Tom Cavanagh","type":"Person","_key":"36027"} +{"label":"Shanna Collins","version":25,"id":"59217","lastModified":"1301901777000","name":"Shanna Collins","type":"Person","_key":"36028"} +{"label":"Katherine Cunningham-Eves","version":19,"id":"59218","lastModified":"1301902271000","name":"Katherine Cunningham-Eves","type":"Person","_key":"36029"} +{"label":"Kyle Gallner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f19\/4be88d23017a3c35bd000f19\/kyle-gallner-profile.jpg","version":61,"id":"59219","lastModified":"1301901273000","name":"Kyle Gallner","type":"Person","_key":"36030"} +{"label":"Dan Gerrity","version":19,"id":"59220","lastModified":"1301902271000","name":"Dan Gerrity","type":"Person","_key":"36031"} +{"label":"Michael Gregory","version":20,"id":"59221","lastModified":"1301902207000","name":"Michael Gregory","type":"Person","_key":"36032"} +{"label":"George Newbern","version":45,"id":"59222","lastModified":"1301901110000","name":"George Newbern","type":"Person","_key":"36033"} +{"label":"Bruce Nozick","version":21,"id":"59223","lastModified":"1301902322000","name":"Bruce Nozick","type":"Person","_key":"36034"} +{"label":"Michelle Page","version":20,"id":"59224","lastModified":"1301901881000","name":"Michelle Page","type":"Person","_key":"36035"} +{"label":"Sujata Day","version":19,"id":"59225","lastModified":"1301902271000","name":"Sujata Day","type":"Person","_key":"36036"} +{"label":"David Clayton Rogers","version":21,"id":"59226","lastModified":"1301901475000","name":"David Clayton Rogers","type":"Person","_key":"36037"} +{"label":"John Rubinstein","version":26,"id":"44261","lastModified":"1301902052000","name":"John Rubinstein","type":"Person","_key":"36038"} +{"label":"Susan Santiago","version":19,"id":"59227","lastModified":"1301902271000","name":"Susan Santiago","type":"Person","_key":"36039"} +{"label":"Tony Krantz","version":26,"id":"41621","lastModified":"1301901937000","name":"Tony Krantz","type":"Person","_key":"36040"} +{"label":"Man About Town","description":"A top Hollywood talent agent finds his cushy existence threatened when he discovers that his wife is cheating on him and that his journal has been swiped by a reporter out to bring him down.","id":"9784","runtime":96,"imdbId":"tt0420757","version":184,"lastModified":"1301903784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94b\/4bc928ed017a3c57fe01094b\/man-about-town-mid.jpg","genre":"Action","title":"Man About Town","releaseDate":1149724800000,"language":"en","type":"Movie","_key":"36041"} +{"label":"Erica Cerra","version":22,"id":"53921","lastModified":"1301901773000","name":"Erica Cerra","type":"Person","_key":"36042"} +{"label":"Damien Dante Wayans","version":19,"id":"59229","lastModified":"1301902124000","name":"Damien Dante Wayans","type":"Person","_key":"36043"} +{"label":"Laura Soltis","version":19,"id":"59230","lastModified":"1301901484000","name":"Laura Soltis","type":"Person","_key":"36044"} +{"label":"The Invisible","description":"After an attack leaves him in limbo -- invisible to the living and also near death -- a teenager discovers the only person who might be able help him is his attacker.","id":"9785","runtime":97,"imdbId":"tt0435670","trailer":"http:\/\/www.youtube.com\/watch?v=yDB3Ha3vxyc","version":190,"lastModified":"1301902760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/960\/4bc928ef017a3c57fe010960\/the-invisible-mid.jpg","genre":"Action","title":"The Invisible","releaseDate":1177632000000,"language":"en","tagline":"Life, death and something in between.","type":"Movie","_key":"36045"} +{"label":"Margarita Levieva","version":34,"id":"59237","lastModified":"1301904096000","name":"Margarita Levieva","type":"Person","_key":"36046"} +{"label":"Chris Marquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f8e\/4d280f4e7b9aa134cb001f8e\/chris-marquette-profile.jpg","version":49,"id":"59238","lastModified":"1301901208000","name":"Chris Marquette","type":"Person","_key":"36047"} +{"label":"Alex O'Loughlin","version":25,"id":"59239","lastModified":"1301901487000","name":"Alex O'Loughlin","type":"Person","_key":"36048"} +{"label":"Michelle Harrison","version":28,"id":"59240","lastModified":"1301901649000","name":"Michelle Harrison","type":"Person","_key":"36049"} +{"label":"P. Lynn Johnson","version":21,"id":"59241","lastModified":"1301901730000","name":"P. Lynn Johnson","type":"Person","_key":"36050"} +{"label":"Serge Houde","version":34,"id":"41746","lastModified":"1302064821000","name":"Serge Houde","type":"Person","_key":"36051"} +{"label":"Desiree Zurowski","version":25,"id":"59242","lastModified":"1301901382000","name":"Desiree Zurowski","type":"Person","_key":"36052"} +{"label":"Alex Ferris","version":28,"id":"59243","lastModified":"1301901475000","name":"Alex Ferris","type":"Person","_key":"36053"} +{"label":"Tania Saulnier","version":20,"id":"59244","lastModified":"1301901730000","name":"Tania Saulnier","type":"Person","_key":"36054"} +{"label":"Laara Sadiq","version":20,"id":"59245","lastModified":"1301901730000","name":"Laara Sadiq","type":"Person","_key":"36055"} +{"label":"Aleks Holtz","version":20,"id":"59246","lastModified":"1301901614000","name":"Aleks Holtz","type":"Person","_key":"36056"} +{"label":"Cory Monteith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/080\/4c50a65d7b9aa13d4d000080\/cory-monteith-profile.jpg","version":26,"id":"33352","lastModified":"1301901381000","name":"Cory Monteith","type":"Person","_key":"36057"} +{"label":"Maggie Ma","version":20,"id":"59247","lastModified":"1301901730000","name":"Maggie Ma","type":"Person","_key":"36058"} +{"label":"David S. Goyer","version":112,"id":"3893","lastModified":"1299823739000","name":"David S. Goyer","type":"Person","_key":"36059"} +{"label":"Art School Confidential","description":"Starting from childhood attempts at illustration, the protagonist pursues his true obsession to art school. But as he learns how the art world really works, he finds that he must adapt his vision to the reality that confronts him.","id":"9786","runtime":102,"imdbId":"tt0364955","version":209,"lastModified":"1301903494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/972\/4bc928f3017a3c57fe010972\/art-school-confidential-mid.jpg","genre":"Action","title":"Art School Confidential","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"36060"} +{"label":"Jack Ong","version":21,"id":"59232","lastModified":"1301902202000","name":"Jack Ong","type":"Person","_key":"36061"} +{"label":"Jeremy Guskin","version":20,"id":"59234","lastModified":"1301902196000","name":"Jeremy Guskin","type":"Person","_key":"36062"} +{"label":"Monika Ramnath","version":20,"id":"59235","lastModified":"1301902187000","name":"Monika Ramnath","type":"Person","_key":"36063"} +{"label":"Isaac Laskin","version":20,"id":"59236","lastModified":"1301902187000","name":"Isaac Laskin","type":"Person","_key":"36064"} +{"label":"Lords of Dogtown","description":"The film follows the surf and skateboarding trends that originated in Venice, California during the 1970's.","id":"9787","runtime":107,"imdbId":"tt0355702","trailer":"http:\/\/www.youtube.com\/watch?v=1684","version":230,"lastModified":"1301902907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97f\/4bc928f5017a3c57fe01097f\/lords-of-dogtown-mid.jpg","genre":"Action","title":"Lords of Dogtown","releaseDate":1117756800000,"language":"en","tagline":"They never thought they'd be famous, but they always thought they'd be friends.","type":"Movie","_key":"36065"} +{"label":"Victor Rasuk","version":33,"id":"59251","lastModified":"1301901459000","name":"Victor Rasuk","type":"Person","_key":"36066"} +{"label":"Brian Zarate","version":25,"id":"59253","lastModified":"1301901881000","name":"Brian Zarate","type":"Person","_key":"36067"} +{"label":"Pablo Schreiber","version":24,"id":"59254","lastModified":"1301901560000","name":"Pablo Schreiber","type":"Person","_key":"36068"} +{"label":"Mitch Hedberg","version":22,"id":"59255","lastModified":"1301901518000","name":"Mitch Hedberg","type":"Person","_key":"36069"} +{"label":"Accepted","description":"After receiving rejection letters from eight colleges, Bartleby Gaines and his slacker friends fool their parents into thinking they've been accepted at the South Harmon Institute of Technology, a university of their own invention. The only problem is, the boys have somehow managed to attract a freshman class of rejects just like them. Can the South Harmon coeds compete in a battle of wits with students from a neighboring college?","id":"9788","runtime":90,"imdbId":"tt0384793","trailer":"http:\/\/www.youtube.com\/watch?v=MZkurgJOP4c","version":226,"lastModified":"1301902621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98c\/4bc928f6017a3c57fe01098c\/accepted-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Accepted","releaseDate":1155859200000,"language":"en","tagline":"When every college turned them down. . . they made one up.","type":"Movie","_key":"36070"} +{"label":"Adam Herschman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a89\/4cf3cbaa5e73d62383000a89\/adam-herschman-profile.jpg","version":24,"id":"59256","lastModified":"1301901424000","name":"Adam Herschman","type":"Person","_key":"36071"} +{"label":"Maria Thayer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fea\/4d8bca675e73d653cb000fea\/maria-thayer-profile.jpg","version":27,"id":"59257","lastModified":"1301902121000","name":"Maria Thayer","type":"Person","_key":"36072"} +{"label":"Lewis Black","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4c1d112f5e73d60bb1000004\/lewis-black-profile.jpg","version":45,"id":"59258","lastModified":"1301901468000","name":"Lewis Black","type":"Person","_key":"36073"} +{"label":"Mark Derwin","version":22,"id":"59259","lastModified":"1301902121000","name":"Mark Derwin","type":"Person","_key":"36074"} +{"label":"Ann Cusack","version":29,"id":"59260","lastModified":"1301901532000","name":"Ann Cusack","type":"Person","_key":"36075"} +{"label":"Hannah Marks","version":28,"id":"59261","lastModified":"1301901487000","name":"Hannah Marks","type":"Person","_key":"36076"} +{"label":"Robin Taylor","version":27,"id":"59262","lastModified":"1301901435000","name":"Robin Taylor","type":"Person","_key":"36077"} +{"label":"Diora Baird","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e9\/4ca090e67b9aa1578f0003e9\/diora-baird-profile.jpg","version":42,"id":"59263","lastModified":"1301901192000","name":"Diora Baird","type":"Person","_key":"36078"} +{"label":"Joe Hursley","version":23,"id":"59264","lastModified":"1301901483000","name":"Joe Hursley","type":"Person","_key":"36079"} +{"label":"Steve Pink","version":33,"id":"3227","lastModified":"1301901131000","name":"Steve Pink","type":"Person","_key":"36080"} +{"label":"Mio Fratello \u00e8 Figlio Unico","description":"No overview found.","id":"9789","runtime":104,"imdbId":"tt0846040","version":67,"lastModified":"1301904014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ab\/4bc928fc017a3c57fe0109ab\/mio-fratello-e-figlio-unico-mid.jpg","studio":"Cattleya","genre":"Comedy","title":"Mio Fratello \u00e8 Figlio Unico","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"36081"} +{"label":"Elio Germano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7bd\/4bfc0b74017a3c70330007bd\/elio-germano-profile.jpg","biography":"Attore italiano","version":43,"birthday":"338680800000","id":"59269","birthplace":"Roma, Italy","lastModified":"1301901854000","name":"Elio Germano","type":"Person","_key":"36082"} +{"label":"Riccardo Scamarcio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/95e\/4bfc2aff017a3c702f00095e\/riccardo-scamarcio-profile.jpg","biography":"Riccardo Scamarcio (Andria, 13 novembre 1979) \u00e8 un attore italiano.","version":44,"birthday":"311295600000","id":"59270","birthplace":"Andria, Italy","lastModified":"1301901452000","name":"Riccardo Scamarcio","type":"Person","_key":"36083"} +{"label":"Diane Fleri","version":21,"id":"59638","lastModified":"1301902094000","name":"Diane Fleri","type":"Person","_key":"36084"} +{"label":"Alba Rohrwacher","version":27,"id":"59639","lastModified":"1301902171000","name":"Alba Rohrwacher","type":"Person","_key":"36085"} +{"label":"Angela Finocchiaro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/843\/4d13a93a5e73d6082e001843\/angela-finocchiaro-profile.jpg","version":38,"id":"59640","lastModified":"1301901533000","name":"Angela Finocchiaro","type":"Person","_key":"36086"} +{"label":"Daniele Luchetti","version":38,"id":"59911","lastModified":"1301901513000","name":"Daniele Luchetti","type":"Person","_key":"36087"} +{"label":"Animal Factory","description":"A young man goes to prison and a tough, older convict takes him under his wing as a mentor.","id":"9791","runtime":94,"imdbId":"tt0204137","version":141,"lastModified":"1301906243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b4\/4bc928fc017a3c57fe0109b4\/animal-factory-mid.jpg","genre":"Crime","title":"Animal Factory","releaseDate":965088000000,"language":"en","type":"Movie","_key":"36088"} +{"label":"Mark Engelhardt","version":19,"id":"59279","lastModified":"1301901614000","name":"Mark Engelhardt","type":"Person","_key":"36089"} +{"label":"Victor Pagan","version":20,"id":"59280","lastModified":"1301902094000","name":"Victor Pagan","type":"Person","_key":"36090"} +{"label":"Steven Randazzo","version":21,"id":"59281","lastModified":"1301901881000","name":"Steven Randazzo","type":"Person","_key":"36091"} +{"label":"The Hills Have Eyes","description":"A suburban American family is being stalked by a group of psychotic people who live in the desert, far away from civilization.","id":"9792","runtime":107,"imdbId":"tt0454841","version":226,"lastModified":"1302042131000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c1\/4bc928fe017a3c57fe0109c1\/the-hills-have-eyes-mid.jpg","genre":"Horror","title":"The Hills Have Eyes","releaseDate":1141948800000,"language":"en","type":"Movie","_key":"36092"} +{"label":"Dan Byrd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c09\/4cf3f1d65e73d62383000c09\/dan-byrd-profile.jpg","version":46,"id":"59283","lastModified":"1301901180000","name":"Dan Byrd","type":"Person","_key":"36093"} +{"label":"Ezra Buzzington","biography":"Ezra Buzzington is \"that guy\" from \"Oh, that guy!\". He's been in dozens of popular films but isn't one you'd recognize on the street. He's worked twice with David Fincher, Terry Zwigoff, Rob Zombie and Alexandre Aja. Other directors include George Clooney, the Farrelly Brothers, Paul Thomas Anderson and Chris Nolan. You know him. You just don't know you know him.","version":25,"id":"59285","birthplace":"Muncie, Indiana","lastModified":"1301901475000","name":"Ezra Buzzington","type":"Person","_key":"36094"} +{"label":"Laura Ortiz","version":25,"id":"59286","lastModified":"1301901675000","name":"Laura Ortiz","type":"Person","_key":"36095"} +{"label":"Gregory Nicotero","version":61,"id":"59287","lastModified":"1302062686000","name":"Gregory Nicotero","type":"Person","_key":"36096"} +{"label":"Maisie Camilleri Preziosi","version":24,"id":"59288","lastModified":"1301901614000","name":"Maisie Camilleri Preziosi","type":"Person","_key":"36097"} +{"label":"Alexandre Aja","version":75,"id":"59291","lastModified":"1301901226000","name":"Alexandre Aja","type":"Person","_key":"36098"} +{"label":"The Hills Have Eyes II","description":"A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.","id":"9793","runtime":89,"imdbId":"tt0800069","version":173,"lastModified":"1302042176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4bc92903017a3c57fe0109e8\/the-hills-have-eyes-ii-mid.jpg","genre":"Action","title":"The Hills Have Eyes II","releaseDate":1174003200000,"language":"en","type":"Movie","_key":"36099"} +{"label":"C\u00e9cile Breccia","version":22,"id":"59292","lastModified":"1301901581000","name":"C\u00e9cile Breccia","type":"Person","_key":"36100"} +{"label":"Archie Kao","version":22,"id":"59293","lastModified":"1301901730000","name":"Archie Kao","type":"Person","_key":"36101"} +{"label":"David Reynolds","version":39,"id":"11","lastModified":"1299601653000","name":"David Reynolds","type":"Person","_key":"36102"} +{"label":"Tyrell Kemlo","version":21,"id":"59294","lastModified":"1301901614000","name":"Tyrell Kemlo","type":"Person","_key":"36103"} +{"label":"Lee Thompson Young","version":28,"id":"59295","lastModified":"1301901808000","name":"Lee Thompson Young","type":"Person","_key":"36104"} +{"label":"Daniella Alonso","version":30,"id":"59296","lastModified":"1301901438000","name":"Daniella Alonso","type":"Person","_key":"36105"} +{"label":"Eric Edelstein","version":22,"id":"59297","lastModified":"1301901730000","name":"Eric Edelstein","type":"Person","_key":"36106"} +{"label":"Joseph Beddelem","version":22,"id":"59298","lastModified":"1301901730000","name":"Joseph Beddelem","type":"Person","_key":"36107"} +{"label":"Ben Crowley","version":23,"id":"59299","lastModified":"1301901729000","name":"Ben Crowley","type":"Person","_key":"36108"} +{"label":"Employee of the Month","description":"When he hears that the new female employee digs ambitious men who are the store employee of the month, a slacker gets his act together but finds himself in competition with his rival, an ambitious co-worker.","id":"9794","runtime":103,"imdbId":"tt0424993","version":229,"lastModified":"1301903089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a05\/4bc92908017a3c57fe010a05\/employee-of-the-month-mid.jpg","genre":"Comedy","title":"Employee of the Month","releaseDate":1160092800000,"language":"en","type":"Movie","_key":"36109"} +{"label":"Marcello Thedford","version":21,"id":"59300","lastModified":"1301901537000","name":"Marcello Thedford","type":"Person","_key":"36110"} +{"label":"Barbara Dodd","version":20,"id":"59301","lastModified":"1301901730000","name":"Barbara Dodd","type":"Person","_key":"36111"} +{"label":"Victor Izay","version":23,"id":"59302","lastModified":"1301901607000","name":"Victor Izay","type":"Person","_key":"36112"} +{"label":"Marc Mouchet","version":20,"id":"59303","lastModified":"1301902094000","name":"Marc Mouchet","type":"Person","_key":"36113"} +{"label":"Kathleen Arc","version":20,"id":"59304","lastModified":"1301901475000","name":"Kathleen Arc","type":"Person","_key":"36114"} +{"label":"Greg Coolidge","version":24,"id":"47364","lastModified":"1301902103000","name":"Greg Coolidge","type":"Person","_key":"36115"} +{"label":"Earthsea","description":"A reckless youth is destined to become the greatest sorcerer that the mystical land of Earthsea has ever known...","id":"9795","runtime":90,"imdbId":"tt0407384","version":156,"lastModified":"1301904703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0e\/4bc92909017a3c57fe010a0e\/earthsea-mid.jpg","genre":"Adventure","title":"Earthsea","releaseDate":1102896000000,"language":"en","type":"Movie","_key":"36116"} +{"label":"Shawn Ashmore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/152\/4d24e9705e73d626bc000152\/shawn-ashmore-profile.jpg","version":80,"id":"11023","lastModified":"1301901120000","name":"Shawn Ashmore","type":"Person","_key":"36117"} +{"label":"Chris Gauthier","version":26,"id":"53119","lastModified":"1301901335000","name":"Chris Gauthier","type":"Person","_key":"36118"} +{"label":"Jennifer Calvert","version":23,"id":"59310","lastModified":"1301902202000","name":"Jennifer Calvert","type":"Person","_key":"36119"} +{"label":"Mark Hildreth","version":29,"id":"59311","lastModified":"1301901438000","name":"Mark Hildreth","type":"Person","_key":"36120"} +{"label":"Alessandro Juliani","version":38,"id":"59312","lastModified":"1301901504000","name":"Alessandro Juliani","type":"Person","_key":"36121"} +{"label":"Erin Karpluk","version":23,"id":"59313","lastModified":"1301901674000","name":"Erin Karpluk","type":"Person","_key":"36122"} +{"label":"Dave 'Squatch' Ward","version":21,"id":"59314","lastModified":"1301901838000","name":"Dave 'Squatch' Ward","type":"Person","_key":"36123"} +{"label":"Turistas","description":"While traveling on vacation through the country of Northeastern of Brazil by bus, the American Alex Trubituan, his sister Bea Tribituan and their friend Amy Harrington meet the also foreigners Pru Stagler, Finn Davies and Liam Kuller after an accident with their bus. They follow a track through the woods and find a hidden paradisiacal beach. They decide to stay in the place drinking beer and dancing funk and parting with the locals and they meet the amicable Brazilian teenager Kiko. They are dru","id":"9796","runtime":93,"imdbId":"tt0454970","version":280,"lastModified":"1301903192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/413\/4d7ae74e7b9aa11a08005413\/turistas-mid.jpg","genre":"Action","title":"Turistas","releaseDate":1164931200000,"language":"en","tagline":"There are some places tourists should never go","type":"Movie","_key":"36124"} +{"label":"Max Brown","version":26,"id":"59316","lastModified":"1301901814000","name":"Max Brown","type":"Person","_key":"36125"} +{"label":"Agles Steib","version":26,"id":"59317","lastModified":"1301901826000","name":"Agles Steib","type":"Person","_key":"36126"} +{"label":"Miguel Lunardi","version":24,"id":"59318","lastModified":"1301901837000","name":"Miguel Lunardi","type":"Person","_key":"36127"} +{"label":"Jorge S\u00f3","version":24,"id":"59319","lastModified":"1301901814000","name":"Jorge S\u00f3","type":"Person","_key":"36128"} +{"label":"Cristiani Aparecida","version":24,"id":"59320","lastModified":"1301901688000","name":"Cristiani Aparecida","type":"Person","_key":"36129"} +{"label":"Lucy Ramos","version":24,"id":"59321","lastModified":"1301901785000","name":"Lucy Ramos","type":"Person","_key":"36130"} +{"label":"Andr\u00e9a Leal","version":24,"id":"59322","lastModified":"1301901785000","name":"Andr\u00e9a Leal","type":"Person","_key":"36131"} +{"label":"Diego Santiago","version":24,"id":"59323","lastModified":"1301901785000","name":"Diego Santiago","type":"Person","_key":"36132"} +{"label":"Marc\u00e3o","version":24,"id":"59324","lastModified":"1301901784000","name":"Marc\u00e3o","type":"Person","_key":"36133"} +{"label":"Miguelito Acosta","version":24,"id":"59325","lastModified":"1301901784000","name":"Miguelito Acosta","type":"Person","_key":"36134"} +{"label":"Ivan the Terrible, Part One","description":"During the early part of his reign, Ivan the Terrible faces betrayal from the aristocracy and even his closest friends as he seeks to unite the Russian people.","id":"9797","runtime":103,"imdbId":"tt0037824","version":73,"lastModified":"1301421345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4d20eea55e73d659b700001d\/ivan-groznyy-i-mid.jpg","studio":"Alma Ata Studio","genre":"Drama","title":"Ivan the Terrible, Part One","releaseDate":-789091200000,"language":"en","type":"Movie","_key":"36135"} +{"label":"Nikolai Cherkasov","version":23,"id":"67502","lastModified":"1301902185000","name":"Nikolai Cherkasov","type":"Person","_key":"36136"} +{"label":"Lyudmila Tselikovskaya","version":17,"id":"146916","lastModified":"1301903086000","name":"Lyudmila Tselikovskaya","type":"Person","_key":"36137"} +{"label":"Serafima Birman","version":17,"id":"146917","lastModified":"1301902876000","name":"Serafima Birman","type":"Person","_key":"36138"} +{"label":"Sergei Eisenstein","version":19,"id":"146918","lastModified":"1301902897000","name":"Sergei Eisenstein","type":"Person","_key":"36139"} +{"label":"Enemy of the State","description":"Hotshot Washington lawyer Robert Dean becomes a victim of high-tech identity theft when a hacker slips an incriminating video into his pocket. Soon, a rogue National Security agent sets out to recover the tape -- and destroy Dean.","id":"9798","runtime":132,"imdbId":"tt0120660","trailer":"http:\/\/www.youtube.com\/watch?v=1499","version":263,"lastModified":"1301901344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef9\/4d6d53367b9aa13633004ef9\/enemy-of-the-state-mid.jpg","studio":"Scott Free Productions","genre":"Action","title":"Enemy of the State","releaseDate":911174400000,"language":"en","tagline":"It's not paranoia if they're really after you","type":"Movie","_key":"36140"} +{"label":"The Fast and the Furious","description":"Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian Spindler infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.","id":"9799","runtime":106,"imdbId":"tt0232500","trailer":"http:\/\/www.youtube.com\/watch?v=ar00z32bXNQ","version":405,"lastModified":"1301901049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aad\/4bc9291f017a3c57fe010aad\/the-fast-and-the-furious-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Fast and the Furious","releaseDate":992822400000,"language":"en","tagline":"Live life 1\/4 mile at a time.","type":"Movie","_key":"36141"} +{"label":"Bridget Jones: The Edge of Reason","description":"The story picks up four weeks after the first film, and already Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, strange contractor, and the worst vacation of her life.","id":"9801","runtime":108,"imdbId":"tt0317198","version":203,"lastModified":"1301905197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4bc92928017a3c57fe010ae5\/bridget-jones-the-edge-of-reason-mid.jpg","genre":"Comedy","title":"Bridget Jones: The Edge of Reason","releaseDate":1099872000000,"language":"en","type":"Movie","_key":"36142"} +{"label":"The Rock","description":"A group of renegade marine commandos seizes a stockpile of chemical weapons and takes over Alcatraz, with 81 tourists as hostages. Their leader demands $100 million to be paid, as restitution to families of Marines who died in covert ops. Otherwise, he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.","id":"9802","runtime":136,"imdbId":"tt0117500","trailer":"http:\/\/www.youtube.com\/watch?v=vapdvjBcQzs","version":222,"lastModified":"1301901403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afb\/4bc9292a017a3c57fe010afb\/the-rock-mid.jpg","genre":"Action","title":"The Rock","releaseDate":834105600000,"language":"en","type":"Movie","_key":"36143"} +{"label":"7 Zwerge - M\u00e4nner allein im Wald","description":"No overview found.","id":"9803","runtime":95,"imdbId":"tt0382295","version":83,"lastModified":"1302011171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba8\/4d1714f55e73d60834008ba8\/7-zwerge-m-nner-allein-im-wald-mid.jpg","genre":"Comedy","title":"7 Zwerge - M\u00e4nner allein im Wald","releaseDate":1098921600000,"language":"en","type":"Movie","_key":"36144"} +{"label":"Mirco Nontschew","version":24,"id":"59333","lastModified":"1301901382000","name":"Mirco Nontschew","type":"Person","_key":"36145"} +{"label":"Boris Aljinovic","version":23,"id":"50314","lastModified":"1301901365000","name":"Boris Aljinovic","type":"Person","_key":"36146"} +{"label":"Markus Majowski","version":20,"id":"59334","lastModified":"1301902178000","name":"Markus Majowski","type":"Person","_key":"36147"} +{"label":"Ralf Schmitz","version":21,"id":"59335","lastModified":"1301901729000","name":"Ralf Schmitz","type":"Person","_key":"36148"} +{"label":"Atze Schr\u00f6der","version":23,"id":"59336","lastModified":"1301902053000","name":"Atze Schr\u00f6der","type":"Person","_key":"36149"} +{"label":"R\u00fcdiger Hoffmann","version":20,"id":"59337","lastModified":"1301901881000","name":"R\u00fcdiger Hoffmann","type":"Person","_key":"36150"} +{"label":"Waterworld","description":"In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to \"Dryland\" -- which is tattooed on Enola's back.","id":"9804","runtime":136,"imdbId":"tt0114898","trailer":"http:\/\/www.youtube.com\/watch?v=657","version":251,"lastModified":"1301901348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05d\/4bf8e584017a3c702a00005d\/waterworld-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Waterworld","releaseDate":806889600000,"language":"en","tagline":"Beyond the horizon lies the secret to a new beginning.","type":"Movie","_key":"36151"} +{"label":"Chaim Girafi","version":24,"id":"59350","lastModified":"1301901278000","name":"Chaim Girafi","type":"Person","_key":"36152"} +{"label":"Zitto Kazann","version":26,"id":"59352","lastModified":"1301901641000","name":"Zitto Kazann","type":"Person","_key":"36153"} +{"label":"(T)raumschiff Surprise - Periode 1","description":"Hundreds of years after humans have settled on Mars, Regulator Rogul and Lord Jens Maul, lead a force of Martians to Earth in order to conquer the planet. Queen Metaphor looks to the gay heroes aboard the spaceship Surprise -- Captain Kork, Mr. Spuck, and first engineer Schrotty","id":"9805","runtime":87,"imdbId":"tt0349047","trailer":"http:\/\/www.youtube.com\/watch?v=1260","version":124,"lastModified":"1301902649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc92935017a3c57fe010b38\/t-raumschiff-surprise-periode-1-mid.jpg","genre":"Comedy","title":"(T)raumschiff Surprise - Periode 1","releaseDate":1090454400000,"language":"en","type":"Movie","_key":"36154"} +{"label":"Reiner Sch\u00f6ne","version":28,"id":"38624","lastModified":"1301901495000","name":"Reiner Sch\u00f6ne","type":"Person","_key":"36155"} +{"label":"The Incredibles","description":"Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.","id":"9806","runtime":115,"imdbId":"tt0317705","trailer":"http:\/\/www.youtube.com\/watch?v=eZbzbC9285I","version":286,"lastModified":"1301929087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/245\/4d9657ad5e73d62274004245\/the-incredibles-mid.jpg","studio":"Pixar Animation Studios","genre":"Action","title":"The Incredibles","releaseDate":1098835200000,"language":"en","tagline":"No gut, no glory","type":"Movie","_key":"36156"} +{"label":"Dominique Louis","version":56,"id":"7891","lastModified":"1301901287000","name":"Dominique Louis","type":"Person","_key":"36157"} +{"label":"Teddy Newton","version":32,"id":"59357","lastModified":"1301901812000","name":"Teddy Newton","type":"Person","_key":"36158"} +{"label":"Eli Fucile","version":31,"id":"59358","lastModified":"1301901580000","name":"Eli Fucile","type":"Person","_key":"36159"} +{"label":"Maeve Andrews","version":30,"id":"59359","lastModified":"1301902031000","name":"Maeve Andrews","type":"Person","_key":"36160"} +{"label":"Spencer Fox","version":33,"id":"59360","lastModified":"1301901696000","name":"Spencer Fox","type":"Person","_key":"36161"} +{"label":"Sarah Vowell","version":30,"id":"59361","lastModified":"1301902031000","name":"Sarah Vowell","type":"Person","_key":"36162"} +{"label":"Superfantagenio","description":"Updating of the old \"Aladdin\" Arabian Nights tale, as a teenager in modern-day Miami finds a magic lantern and out pops a genie, who's been asleep for 200 years and in his gratitude grants the boy several wishes.","id":"9807","runtime":95,"imdbId":"tt0090601","version":70,"lastModified":"1301906072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02b\/4c13e5057b9aa1045500002b\/superfantagenio-mid.jpg","genre":"Action","title":"Superfantagenio","releaseDate":504921600000,"language":"en","type":"Movie","_key":"36163"} +{"label":"Julian Voloshin","version":20,"id":"59364","lastModified":"1301901810000","name":"Julian Voloshin","type":"Person","_key":"36164"} +{"label":"Diamy Spencer","version":19,"id":"59365","lastModified":"1301901945000","name":"Diamy Spencer","type":"Person","_key":"36165"} +{"label":"Bruno Corbucci","version":51,"id":"56742","lastModified":"1301901514000","name":"Bruno Corbucci","type":"Person","_key":"36166"} +{"label":"Let's Go to Prison","description":"When a career criminal's plan for revenge is thwarted by unlikely circumstances, he puts his intended victim's son in his place by putting him in prison...and then joining him.","id":"9809","runtime":84,"imdbId":"tt0454987","version":281,"lastModified":"1302039199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b71\/4bc9293d017a3c57fe010b71\/let-s-go-to-prison-mid.jpg","genre":"Comedy","title":"Let's Go to Prison","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"36167"} +{"label":"Miguel Nino","version":20,"id":"59399","lastModified":"1301901881000","name":"Miguel Nino","type":"Person","_key":"36168"} +{"label":"Jay Whittaker","version":20,"id":"59400","lastModified":"1301901881000","name":"Jay Whittaker","type":"Person","_key":"36169"} +{"label":"Amy Hill","version":27,"id":"59401","lastModified":"1301901775000","name":"Amy Hill","type":"Person","_key":"36170"} +{"label":"Joseph Marcus","version":20,"id":"59402","lastModified":"1301901881000","name":"Joseph Marcus","type":"Person","_key":"36171"} +{"label":"Nick Phalen","version":20,"id":"59403","lastModified":"1301902094000","name":"Nick Phalen","type":"Person","_key":"36172"} +{"label":"A.J. Balance","version":20,"id":"59404","lastModified":"1301901537000","name":"A.J. Balance","type":"Person","_key":"36173"} +{"label":"Jerry Minor","version":21,"id":"59405","lastModified":"1301902271000","name":"Jerry Minor","type":"Person","_key":"36174"} +{"label":"Mary Seibel","version":20,"id":"59406","lastModified":"1301902094000","name":"Mary Seibel","type":"Person","_key":"36175"} +{"label":"Susan Messing","version":20,"id":"59407","lastModified":"1301901881000","name":"Susan Messing","type":"Person","_key":"36176"} +{"label":"Jim Zulevic","version":21,"id":"59408","lastModified":"1301901775000","name":"Jim Zulevic","type":"Person","_key":"36177"} +{"label":"Bill McGough","version":20,"id":"59409","lastModified":"1301902094000","name":"Bill McGough","type":"Person","_key":"36178"} +{"label":"Bob Odenkirk","version":34,"id":"59410","lastModified":"1301901695000","name":"Bob Odenkirk","type":"Person","_key":"36179"} +{"label":"Bert Matias","version":20,"id":"59411","lastModified":"1301902094000","name":"Bert Matias","type":"Person","_key":"36180"} +{"label":"The New Swiss Family Robinson","description":"No overview found.","id":"9810","runtime":90,"imdbId":"tt0130142","version":109,"lastModified":"1301904473000","studio":"Walt Disney Television","genre":"Adventure","title":"The New Swiss Family Robinson","releaseDate":916704000000,"language":"en","type":"Movie","_key":"36181"} +{"label":"Thursday","description":"Casey has given up drug dealing for a suburban idyll in Houston, a job as an architect and a new wife. They are even planning to a adopt a child. But Casey's past arrives on the doorstep in the shape of Nick, an old business partner.","id":"9812","runtime":84,"imdbId":"tt0124901","version":86,"lastModified":"1301901950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7b\/4bc9293e017a3c57fe010b7b\/thursday-mid.jpg","genre":"Action","title":"Thursday","releaseDate":905990400000,"language":"en","type":"Movie","_key":"36182"} +{"label":"Paula Marshall","version":30,"id":"59449","lastModified":"1301901445000","name":"Paula Marshall","type":"Person","_key":"36183"} +{"label":"Skip Woods","version":46,"id":"18185","lastModified":"1301901316000","name":"Skip Woods","type":"Person","_key":"36184"} +{"label":"The Quiet","description":"Dot (Belle), a young deaf and mute woman, is sent to live with her godparents (Falco and Donovan) and their daughter (Cuthbert). The new addition to the household realizes that everything is not copacetic in the home, and the family's dark come to light.","id":"9813","runtime":96,"imdbId":"tt0414951","version":218,"lastModified":"1301903280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b84\/4bc92942017a3c57fe010b84\/the-quiet-mid.jpg","genre":"Drama","title":"The Quiet","releaseDate":1156464000000,"language":"en","type":"Movie","_key":"36185"} +{"label":"Katy Mixon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ea\/4d59d7767b9aa122b70002ea\/katy-mixon-profile.jpg","version":31,"id":"59450","lastModified":"1301902093000","name":"Katy Mixon","type":"Person","_key":"36186"} +{"label":"David Gallagher","version":24,"id":"59451","lastModified":"1301901881000","name":"David Gallagher","type":"Person","_key":"36187"} +{"label":"Maria Cash","version":20,"id":"59453","lastModified":"1301902093000","name":"Maria Cash","type":"Person","_key":"36188"} +{"label":"Jo Baker","version":22,"id":"59454","lastModified":"1301902178000","name":"Jo Baker","type":"Person","_key":"36189"} +{"label":"Steve Uzzell","version":23,"id":"59455","lastModified":"1301901881000","name":"Steve Uzzell","type":"Person","_key":"36190"} +{"label":"Rudy Costa","version":20,"id":"59457","lastModified":"1301901881000","name":"Rudy Costa","type":"Person","_key":"36191"} +{"label":"Myrna Cabello","version":20,"id":"59458","lastModified":"1301902093000","name":"Myrna Cabello","type":"Person","_key":"36192"} +{"label":"Diane Quest","version":20,"id":"59459","lastModified":"1301902093000","name":"Diane Quest","type":"Person","_key":"36193"} +{"label":"Quita Culpepper","version":20,"id":"59460","lastModified":"1301902093000","name":"Quita Culpepper","type":"Person","_key":"36194"} +{"label":"Sharon Ploeger","version":20,"id":"59461","lastModified":"1301901881000","name":"Sharon Ploeger","type":"Person","_key":"36195"} +{"label":"Jamie Levels","version":20,"id":"59462","lastModified":"1301901881000","name":"Jamie Levels","type":"Person","_key":"36196"} +{"label":"Laura E. Johnston","version":20,"id":"59463","lastModified":"1301902093000","name":"Laura E. Johnston","type":"Person","_key":"36197"} +{"label":"Michelle Brew","version":20,"id":"59464","lastModified":"1301902093000","name":"Michelle Brew","type":"Person","_key":"36198"} +{"label":"Shannon Woodward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ea\/4ce191175e73d60f6d0003ea\/shannon-woodward-profile.jpg","version":35,"id":"82663","lastModified":"1301902050000","name":"Shannon Woodward","type":"Person","_key":"36199"} +{"label":"Jamie Babbit","version":24,"id":"59466","lastModified":"1301901492000","name":"Jamie Babbit","type":"Person","_key":"36200"} +{"label":"Death Tunnel","description":"For an initiation stunt, five college women are locked in a Kentucky hospital built in 1910 where 63,000 people died from a disease known as the \"white plague\". Deep under the hospital is the \"Death Tunnel\" which once were used to secretly remove the dead from the grounds.","id":"9814","runtime":97,"imdbId":"tt0418627","version":219,"lastModified":"1301903316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8d\/4bc92942017a3c57fe010b8d\/death-tunnel-mid.jpg","genre":"Comedy","title":"Death Tunnel","releaseDate":1136937600000,"language":"en","type":"Movie","_key":"36201"} +{"label":"Philip Adrian Booth","version":23,"id":"59509","lastModified":"1301902271000","name":"Philip Adrian Booth","type":"Person","_key":"36202"} +{"label":"Steffany Huckaby","version":20,"id":"59543","lastModified":"1301901581000","name":"Steffany Huckaby","type":"Person","_key":"36203"} +{"label":"Melanie Lewis","version":19,"id":"59544","lastModified":"1301901881000","name":"Melanie Lewis","type":"Person","_key":"36204"} +{"label":"Yolanda Pecoraro","version":19,"id":"59545","lastModified":"1301901881000","name":"Yolanda Pecoraro","type":"Person","_key":"36205"} +{"label":"Kristin Novak","version":20,"id":"59546","lastModified":"1301901729000","name":"Kristin Novak","type":"Person","_key":"36206"} +{"label":"Annie Burgstede","version":20,"id":"59547","lastModified":"1301901813000","name":"Annie Burgstede","type":"Person","_key":"36207"} +{"label":"Jason Lasater","version":20,"id":"59548","lastModified":"1301901994000","name":"Jason Lasater","type":"Person","_key":"36208"} +{"label":"Gary Wolf","version":20,"id":"59549","lastModified":"1301902178000","name":"Gary Wolf","type":"Person","_key":"36209"} +{"label":"Robyn Corum","version":20,"id":"59550","lastModified":"1301901994000","name":"Robyn Corum","type":"Person","_key":"36210"} +{"label":"Gill Gayle","version":21,"id":"59551","lastModified":"1301901729000","name":"Gill Gayle","type":"Person","_key":"36211"} +{"label":"Brian Dyer","version":20,"id":"59552","lastModified":"1301901814000","name":"Brian Dyer","type":"Person","_key":"36212"} +{"label":"Reenie Varga","version":19,"id":"59490","lastModified":"1301901881000","name":"Reenie Varga","type":"Person","_key":"36213"} +{"label":"Jilon Ghai","version":20,"id":"59553","lastModified":"1301901777000","name":"Jilon Ghai","type":"Person","_key":"36214"} +{"label":"Jesse Bernstein","version":19,"id":"59554","lastModified":"1301901729000","name":"Jesse Bernstein","type":"Person","_key":"36215"} +{"label":"George W. Harr Jr.","version":19,"id":"59555","lastModified":"1301901881000","name":"George W. Harr Jr.","type":"Person","_key":"36216"} +{"label":"B.J. Winslow","version":19,"id":"59494","lastModified":"1301901729000","name":"B.J. Winslow","type":"Person","_key":"36217"} +{"label":"Joan Farrell","version":19,"id":"59556","lastModified":"1301901881000","name":"Joan Farrell","type":"Person","_key":"36218"} +{"label":"Laura Corum","version":19,"id":"59557","lastModified":"1301901729000","name":"Laura Corum","type":"Person","_key":"36219"} +{"label":"Sarah Tilford","version":19,"id":"59558","lastModified":"1301902093000","name":"Sarah Tilford","type":"Person","_key":"36220"} +{"label":"Lucy Cabrera","version":19,"id":"59559","lastModified":"1301901614000","name":"Lucy Cabrera","type":"Person","_key":"36221"} +{"label":"Annika Klein","version":19,"id":"59560","lastModified":"1301902093000","name":"Annika Klein","type":"Person","_key":"36222"} +{"label":"Goal II: Living the Dream","description":"After gaining experience with the football club Newcastle United, Santiago Munez (Becker) gets a huge break when he's transferred to Real Madrid.","id":"9815","runtime":115,"imdbId":"tt0473360","version":190,"lastModified":"1301903901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/569\/4d54b24d7b9aa15cf6000569\/goal-ii-living-the-dream-mid.jpg","genre":"Drama","title":"Goal II: Living the Dream","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"36223"} +{"label":"Jaume Collet-Serra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f5\/4d51971a5e73d617b70046f5\/jaume-collet-serra-profile.jpg","biography":"Collet-Serra, der schon als Kind ein Kinofan war, zog mit 18 aus seiner katalonischen Heimat nach Los Angeles und besuchte die Filmschule Columbia College Hollywood. Nebenbei arbeitete er als Cutter. Als filmische Einfl\u00fcsse nennt er Regisseure wie David Fincher, Spike Jonze und Mark Romanek. Sein Abschlussfilm an der Filmschule war ein Musikvideo, das ihm eine Verpflichtung als Musikvideo-Regisseur einbrachte. In der Folge konnte er sich als Werbefilm-Regisseur f\u00fcr gro\u00dfe Agenturen und bekannte M","version":44,"birthday":"133225200000","id":"59521","birthplace":"Sant Iscle de Vallalta, Provinz Barcelona","lastModified":"1301901475000","name":"Jaume Collet-Serra","type":"Person","_key":"36224"} +{"label":"Iker Casillas","version":19,"id":"59534","lastModified":"1301901537000","name":"Iker Casillas","type":"Person","_key":"36225"} +{"label":"Iv\u00e1n Helguera","version":19,"id":"59535","lastModified":"1301901881000","name":"Iv\u00e1n Helguera","type":"Person","_key":"36226"} +{"label":"Sergio Ramos","version":19,"id":"59536","lastModified":"1301902093000","name":"Sergio Ramos","type":"Person","_key":"36227"} +{"label":"Roberto Carlos","version":19,"id":"59537","lastModified":"1301901729000","name":"Roberto Carlos","type":"Person","_key":"36228"} +{"label":"David Beckham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/269\/4cf3512e7b9aa149c6000269\/david-beckham-profile.jpg","version":20,"id":"59538","lastModified":"1301901237000","name":"David Beckham","type":"Person","_key":"36229"} +{"label":"Ra\u00fal Gonz\u00e1lez","version":19,"id":"59539","lastModified":"1301901881000","name":"Ra\u00fal Gonz\u00e1lez","type":"Person","_key":"36230"} +{"label":"Jos\u00e9 Mar\u00eda Guti\u00e9rrez","version":19,"id":"59540","lastModified":"1301902093000","name":"Jos\u00e9 Mar\u00eda Guti\u00e9rrez","type":"Person","_key":"36231"} +{"label":"Save the Last Dance","description":"A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.","id":"9816","runtime":112,"imdbId":"tt0206275","version":147,"lastModified":"1301902839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba8\/4bc92946017a3c57fe010ba8\/save-the-last-dance-mid.jpg","genre":"Drama","title":"Save the Last Dance","releaseDate":979257600000,"language":"en","type":"Movie","_key":"36232"} +{"label":"Fredro Starr","version":23,"id":"59568","lastModified":"1301901924000","name":"Fredro Starr","type":"Person","_key":"36233"} +{"label":"Vince Green","version":22,"id":"59569","lastModified":"1301902178000","name":"Vince Green","type":"Person","_key":"36234"} +{"label":"Garland Whitt","version":20,"id":"59570","lastModified":"1301902197000","name":"Garland Whitt","type":"Person","_key":"36235"} +{"label":"Elisabeth Oas","version":21,"id":"59571","lastModified":"1301902121000","name":"Elisabeth Oas","type":"Person","_key":"36236"} +{"label":"Artel Great","version":17,"id":"59572","lastModified":"1301902121000","name":"Artel Great","type":"Person","_key":"36237"} +{"label":"Cory Stewart","version":19,"id":"59573","lastModified":"1301902122000","name":"Cory Stewart","type":"Person","_key":"36238"} +{"label":"Jennifer Anglin","version":19,"id":"59574","lastModified":"1301902121000","name":"Jennifer Anglin","type":"Person","_key":"36239"} +{"label":"Dorothy Martin","version":19,"id":"59575","lastModified":"1301902121000","name":"Dorothy Martin","type":"Person","_key":"36240"} +{"label":"Kim Tlusty","version":19,"id":"59576","lastModified":"1301901924000","name":"Kim Tlusty","type":"Person","_key":"36241"} +{"label":"Felicia Fields","version":19,"id":"59577","lastModified":"1301901924000","name":"Felicia Fields","type":"Person","_key":"36242"} +{"label":"Ora Jones","version":19,"id":"59578","lastModified":"1301901924000","name":"Ora Jones","type":"Person","_key":"36243"} +{"label":"Tab Baker","version":19,"id":"59579","lastModified":"1301901924000","name":"Tab Baker","type":"Person","_key":"36244"} +{"label":"Kevin Reid","version":20,"id":"59580","lastModified":"1301902181000","name":"Kevin Reid","type":"Person","_key":"36245"} +{"label":"Andrew Rothenberg","version":19,"id":"59581","lastModified":"1301901924000","name":"Andrew Rothenberg","type":"Person","_key":"36246"} +{"label":"Mekdes Bruk","version":19,"id":"59582","lastModified":"1301902121000","name":"Mekdes Bruk","type":"Person","_key":"36247"} +{"label":"Jerod Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/087\/4cad41285e73d65074000087\/jerod-howard-profile.jpg","version":25,"id":"97802","birthplace":"Chicago, IL","lastModified":"1301901566000","name":"Jerod Howard","type":"Person","_key":"36248"} +{"label":"Save the Last Dance 2","description":"The best move... is following your heart.","id":"9817","runtime":90,"imdbId":"tt0486656","version":112,"lastModified":"1301904473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb6\/4bc92948017a3c57fe010bb6\/save-the-last-dance-2-mid.jpg","genre":"Drama","title":"Save the Last Dance 2","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"36249"} +{"label":"David Petrarca","version":20,"id":"59584","lastModified":"1301901784000","name":"David Petrarca","type":"Person","_key":"36250"} +{"label":"Maria Brooks","version":20,"id":"59594","lastModified":"1301901784000","name":"Maria Brooks","type":"Person","_key":"36251"} +{"label":"Ian Brennan","version":20,"id":"59595","lastModified":"1301901813000","name":"Ian Brennan","type":"Person","_key":"36252"} +{"label":"Tre Armstrong","version":20,"id":"59596","lastModified":"1301901784000","name":"Tre Armstrong","type":"Person","_key":"36253"} +{"label":"Seana McKenna","version":20,"id":"59597","lastModified":"1301901784000","name":"Seana McKenna","type":"Person","_key":"36254"} +{"label":"Diane Fabian","version":20,"id":"59598","lastModified":"1301901955000","name":"Diane Fabian","type":"Person","_key":"36255"} +{"label":"Robert Allan","version":20,"id":"59599","lastModified":"1301901784000","name":"Robert Allan","type":"Person","_key":"36256"} +{"label":"Matt Watling","version":18,"id":"59601","lastModified":"1301901784000","name":"Matt Watling","type":"Person","_key":"36257"} +{"label":"Evan Williams","version":21,"id":"59600","lastModified":"1301901955000","name":"Evan Williams","type":"Person","_key":"36258"} +{"label":"Brendan Wall","version":28,"id":"59602","lastModified":"1301901784000","name":"Brendan Wall","type":"Person","_key":"36259"} +{"label":"Michael Hanrahan","version":20,"id":"59603","lastModified":"1301901784000","name":"Michael Hanrahan","type":"Person","_key":"36260"} +{"label":"Azama Bashir","version":20,"id":"59605","lastModified":"1301901650000","name":"Azama Bashir","type":"Person","_key":"36261"} +{"label":"Mike Spendlove","version":20,"id":"59604","lastModified":"1301901784000","name":"Mike Spendlove","type":"Person","_key":"36262"} +{"label":"Katherine Clarke","version":20,"id":"59606","lastModified":"1301901784000","name":"Katherine Clarke","type":"Person","_key":"36263"} +{"label":"Caitlin Cullimore","version":20,"id":"59607","lastModified":"1301901784000","name":"Caitlin Cullimore","type":"Person","_key":"36264"} +{"label":"Melody Ichimura","version":20,"id":"59610","lastModified":"1301901955000","name":"Melody Ichimura","type":"Person","_key":"36265"} +{"label":"Mortal Kombat","description":"No overview found.","id":"9818","version":273,"lastModified":"1301906247000","genre":"Action","title":"Mortal Kombat","language":"en","type":"Movie","_key":"36266"} +{"label":"Marvin's Room","description":"A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.","id":"9819","runtime":98,"imdbId":"tt0116999","trailer":"http:\/\/www.youtube.com\/watch?v=ju2AN7N2_J","version":149,"lastModified":"1301902495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbb\/4bc92948017a3c57fe010bbb\/marvin-s-room-mid.jpg","genre":"Drama","title":"Marvin's Room","releaseDate":850867200000,"language":"en","type":"Movie","_key":"36267"} +{"label":"Jerry Zaks","version":23,"id":"59635","lastModified":"1301902337000","name":"Jerry Zaks","type":"Person","_key":"36268"} +{"label":"The Parent Trap","description":"Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places. Hallie meets her mother, and Annie meets her father for the first time in years.","id":"9820","runtime":127,"imdbId":"tt0120783","version":156,"lastModified":"1301958269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/102\/4d9a6a8b7b9aa164c3000102\/the-parent-trap-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"The Parent Trap","releaseDate":901670400000,"language":"en","tagline":"Twice the Fun, Double the Trouble.","type":"Movie","_key":"36269"} +{"label":"The Mighty","description":"No overview found.","id":"9821","runtime":100,"imdbId":"tt0119670","version":101,"lastModified":"1301907105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/242\/4cb6157b5e73d67783000242\/the-mighty-mid.jpg","genre":"Comedy","title":"The Mighty","releaseDate":907891200000,"language":"en","type":"Movie","_key":"36270"} +{"label":"Mighty Joe Young","description":"After Mighty Joe Young is brought to America for safety reasons, he escapes and rampages through Hollywood, spurred by tormentors out for revenge.","id":"9822","runtime":114,"imdbId":"tt0120751","version":107,"lastModified":"1301902851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd1\/4bc9294a017a3c57fe010bd1\/mighty-joe-young-mid.jpg","genre":"Action","title":"Mighty Joe Young","releaseDate":913420800000,"language":"en","type":"Movie","_key":"36271"} +{"label":"Geoffrey Blake","version":15,"id":"148122","lastModified":"1301902691000","name":"Geoffrey Blake","type":"Person","_key":"36272"} +{"label":"Ray Harryhausen","version":33,"id":"66758","lastModified":"1301902352000","name":"Ray Harryhausen","type":"Person","_key":"36273"} +{"label":"Mortal Kombat: Annihilation","description":"A band of fearless fighters have defeated the evil warlords from Outworld in the life-or-death tournament called Mortal Kombat, saving Earth from destruction for another generation.","id":"9823","runtime":95,"imdbId":"tt0119707","trailer":"http:\/\/www.youtube.com\/watch?v=InrQBpj__Vc","version":126,"lastModified":"1301901978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdf\/4d84ef295e73d653a6002cdf\/mortal-kombat-annihilation-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Mortal Kombat: Annihilation","releaseDate":880070400000,"language":"en","type":"Movie","_key":"36274"} +{"label":"Sandra Hess","version":24,"id":"59642","lastModified":"1301901633000","name":"Sandra Hess","type":"Person","_key":"36275"} +{"label":"Lynn 'Red' Williams","version":21,"id":"59643","lastModified":"1301902178000","name":"Lynn 'Red' Williams","type":"Person","_key":"36276"} +{"label":"John R. Leonetti","version":78,"id":"26714","lastModified":"1302062807000","name":"John R. Leonetti","type":"Person","_key":"36277"} +{"label":"Mystery Men","description":"When Captain Amazing (Kinnear) is kidnapped by Casanova Frankenstein (Rush) a group of superheroes combine together to create a plan. But these aren't normal superheroes. Now, the group who include such heroes as Mr. Furious (Stiller), The Shoveller (Macy) and The Blue Raja (Azaria) must put all the powers together to save everyone they know and love. ","id":"9824","runtime":121,"imdbId":"tt0132347","version":316,"lastModified":"1302039363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfe\/4bc92950017a3c57fe010bfe\/mystery-men-mid.jpg","genre":"Action","title":"Mystery Men","releaseDate":936576000000,"language":"en","type":"Movie","_key":"36278"} +{"label":"Kel Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73b\/4d9aad247b9aa164c900073b\/kel-mitchell-profile.jpg","version":33,"id":"59645","lastModified":"1301975300000","name":"Kel Mitchell","type":"Person","_key":"36279"} +{"label":"Kinka Usher","version":20,"id":"59646","lastModified":"1301902194000","name":"Kinka Usher","type":"Person","_key":"36280"} +{"label":"Lake Placid","description":"When a man is eaten alive by an unknown creature, the local Game Warden (Pullman) teams up with a paleontologist (Fonda) from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for \"Crocs\" (Platt), and here we go! This quiet, remote lake is suddenly the focus of an intense search for a crocodile with a taste for live animals...and people!","id":"9825","runtime":82,"imdbId":"tt0139414","trailer":"http:\/\/www.youtube.com\/watch?v=qqK07DFav8k","version":156,"lastModified":"1301903493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/540\/4bf3a524017a3c3212000540\/lake-placid-mid.jpg","genre":"Horror","title":"Lake Placid","releaseDate":932083200000,"language":"en","tagline":"You'll never know what bit you.","type":"Movie","_key":"36281"} +{"label":"Betty White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/335\/4c57ffd77b9aa151f3000335\/betty-white-profile.jpg","version":52,"id":"71727","lastModified":"1301901208000","name":"Betty White","type":"Person","_key":"36282"} +{"label":"Tim Dixon","version":21,"id":"87740","lastModified":"1301902756000","name":"Tim Dixon","type":"Person","_key":"36283"} +{"label":"Richard Leacock","version":14,"id":"21110","lastModified":"1299515567000","name":"Richard Leacock","type":"Person","_key":"36284"} +{"label":"Jake T. Roberts","version":17,"id":"140257","lastModified":"1301902658000","name":"Jake T. Roberts","type":"Person","_key":"36285"} +{"label":"Warren Takeuchi","version":17,"id":"140258","lastModified":"1301902651000","name":"Warren Takeuchi","type":"Person","_key":"36286"} +{"label":"The Phantom","description":"The 21st successor to the role of Bengalla's resident superhero must travel to New York to prevent a rich madman from obtaining three magic skulls that would give him the secret to ultimate power.","id":"9826","runtime":100,"imdbId":"tt0117331","trailer":"http:\/\/www.youtube.com\/watch?v=1599","version":105,"lastModified":"1301903593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c26\/4bc92954017a3c57fe010c26\/the-phantom-mid.jpg","genre":"Action","title":"The Phantom","releaseDate":834105600000,"language":"en","type":"Movie","_key":"36287"} +{"label":"Phantoms","description":"In the peaceful town of Snowfield, Colorado something evil has wiped out the community. And now, its up to a group of people to stop it, or at least get out of Snowfield alive.","id":"9827","runtime":91,"imdbId":"tt0119891","version":150,"lastModified":"1301908031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c33\/4bc92957017a3c57fe010c33\/phantoms-mid.jpg","genre":"Drama","title":"Phantoms","releaseDate":885513600000,"language":"en","type":"Movie","_key":"36288"} +{"label":"Unknown","description":"Five men wake up in a locked-down warehouse with no memory of who they are. They are forced to figure out who is good and who is bad to stay alive.","id":"9828","runtime":98,"imdbId":"tt0450340","version":255,"lastModified":"1301903288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c40\/4bc92958017a3c57fe010c40\/unknown-mid.jpg","studio":"Rick Lashbrook Films","genre":"Crime","title":"Unknown","releaseDate":1162512000000,"language":"en","type":"Movie","_key":"36289"} +{"label":"Simon Brand","version":22,"id":"59651","lastModified":"1301902271000","name":"Simon Brand","type":"Person","_key":"36290"} +{"label":"Clayne Crawford","version":33,"id":"59671","lastModified":"1301901562000","name":"Clayne Crawford","type":"Person","_key":"36291"} +{"label":"Adam Rodriguez","version":31,"id":"49706","lastModified":"1301901667000","name":"Adam Rodriguez","type":"Person","_key":"36292"} +{"label":"Thomas Rosales Jr.","version":24,"id":"43010","lastModified":"1301902182000","name":"Thomas Rosales Jr.","type":"Person","_key":"36293"} +{"label":"Jeffrey Daniel Phillips","version":23,"id":"59673","lastModified":"1301901935000","name":"Jeffrey Daniel Phillips","type":"Person","_key":"36294"} +{"label":"Wilmer Calderon","version":23,"id":"59672","lastModified":"1301901813000","name":"Wilmer Calderon","type":"Person","_key":"36295"} +{"label":"Ben Bray","version":22,"id":"59674","lastModified":"1301902271000","name":"Ben Bray","type":"Person","_key":"36296"} +{"label":"Mel Rodriguez","version":22,"id":"59675","lastModified":"1301901881000","name":"Mel Rodriguez","type":"Person","_key":"36297"} +{"label":"Paul E. Short","version":22,"id":"59676","lastModified":"1301902093000","name":"Paul E. Short","type":"Person","_key":"36298"} +{"label":"United 93","description":"A real time account of the events on United Flight 93, one of the planes hijacked on 9\/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.","id":"9829","runtime":111,"imdbId":"tt0475276","trailer":"http:\/\/www.youtube.com\/watch?v=Cz9BTKO_plI","version":244,"lastModified":"1301903217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4d\/4bc92959017a3c57fe010c4d\/united-93-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"United 93","releaseDate":1146182400000,"language":"en","type":"Movie","_key":"36299"} +{"label":"J.J. Johnson","version":22,"id":"6569","lastModified":"1301901234000","name":"J.J. Johnson","type":"Person","_key":"36300"} +{"label":"Polly Adams","version":20,"id":"47538","lastModified":"1301901475000","name":"Polly Adams","type":"Person","_key":"36301"} +{"label":"Trish Gates","version":20,"id":"59688","lastModified":"1301901430000","name":"Trish Gates","type":"Person","_key":"36302"} +{"label":"Nancy McDoniel","version":20,"id":"59689","lastModified":"1301901430000","name":"Nancy McDoniel","type":"Person","_key":"36303"} +{"label":"Opal Alladin","version":23,"id":"59686","lastModified":"1301901614000","name":"Opal Alladin","type":"Person","_key":"36304"} +{"label":"Gary Commock","version":20,"id":"59685","lastModified":"1301901614000","name":"Gary Commock","type":"Person","_key":"36305"} +{"label":"Starla Benford","version":20,"id":"59687","lastModified":"1301901729000","name":"Starla Benford","type":"Person","_key":"36306"} +{"label":"David Alan Basche","version":22,"id":"59690","lastModified":"1301901831000","name":"David Alan Basche","type":"Person","_key":"36307"} +{"label":"Richard Bekins","version":24,"id":"59691","lastModified":"1301916267000","name":"Richard Bekins","type":"Person","_key":"36308"} +{"label":"Liza Col\u00f3n-Zayas","version":20,"id":"59693","lastModified":"1301901537000","name":"Liza Col\u00f3n-Zayas","type":"Person","_key":"36309"} +{"label":"Ray Charleson","version":23,"id":"59692","lastModified":"1301901430000","name":"Ray Charleson","type":"Person","_key":"36310"} +{"label":"Denny Dillon","version":20,"id":"59695","lastModified":"1301901537000","name":"Denny Dillon","type":"Person","_key":"36311"} +{"label":"Peter Hermann","version":26,"id":"50117","lastModified":"1301901227000","name":"Peter Hermann","type":"Person","_key":"36312"} +{"label":"Lorna Dallas","version":20,"id":"59694","lastModified":"1301901537000","name":"Lorna Dallas","type":"Person","_key":"36313"} +{"label":"Kate Jennings Grant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77d\/4ce5a7417b9aa168b300077d\/kate-jennings-grant-profile.jpg","version":36,"id":"59697","lastModified":"1301901253000","name":"Kate Jennings Grant","type":"Person","_key":"36314"} +{"label":"Trieste Kelly Dunn","version":20,"id":"59696","lastModified":"1301901475000","name":"Trieste Kelly Dunn","type":"Person","_key":"36315"} +{"label":"Tara Hugo","version":20,"id":"59698","lastModified":"1301901537000","name":"Tara Hugo","type":"Person","_key":"36316"} +{"label":"Haven","description":"During a weekend, two shady businessmen (Paxton and Dillane) flee to the Cayman Islands to avoid federal prosecution. But their escape ignites a chain reaction that leads a British native (Bloom) to commit a crime that changes the nation.","id":"9830","runtime":115,"imdbId":"tt0386504","version":170,"lastModified":"1301903662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c56\/4bc9295c017a3c57fe010c56\/haven-mid.jpg","genre":"Action","title":"Haven","releaseDate":1094860800000,"language":"en","type":"Movie","_key":"36317"} +{"label":"Frank E. Flowers","version":20,"id":"59703","lastModified":"1301901881000","name":"Frank E. Flowers","type":"Person","_key":"36318"} +{"label":"Lee Ingleby","version":25,"id":"59712","lastModified":"1301901475000","name":"Lee Ingleby","type":"Person","_key":"36319"} +{"label":"Mpho Koaho","version":27,"id":"59713","lastModified":"1301901430000","name":"Mpho Koaho","type":"Person","_key":"36320"} +{"label":"Peter O'Meara","version":20,"id":"59715","lastModified":"1301902093000","name":"Peter O'Meara","type":"Person","_key":"36321"} +{"label":"Ky-Mani Marley","version":21,"id":"59714","lastModified":"1301901636000","name":"Ky-Mani Marley","type":"Person","_key":"36322"} +{"label":"Kill the Poor","description":"No overview found.","id":"9832","runtime":85,"imdbId":"tt0365407","version":141,"lastModified":"1301906478000","genre":"Comedy","title":"Kill the Poor","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"36323"} +{"label":"Alan Taylor","version":22,"id":"47005","lastModified":"1301902125000","name":"Alan Taylor","type":"Person","_key":"36324"} +{"label":"Jon Budinoff","version":20,"id":"59733","lastModified":"1301902271000","name":"Jon Budinoff","type":"Person","_key":"36325"} +{"label":"Maryfrances Careccia","version":19,"id":"59734","lastModified":"1301902093000","name":"Maryfrances Careccia","type":"Person","_key":"36326"} +{"label":"Chris Hutchison","version":17,"id":"59737","lastModified":"1301902110000","name":"Chris Hutchison","type":"Person","_key":"36327"} +{"label":"Julianna DeDonno","version":19,"id":"59736","lastModified":"1301902093000","name":"Julianna DeDonno","type":"Person","_key":"36328"} +{"label":"Annie Crean","version":19,"id":"59735","lastModified":"1301902093000","name":"Annie Crean","type":"Person","_key":"36329"} +{"label":"Jaime Tirelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4c2a43d37b9aa15e9d00001b\/jaime-tirelli-profile.jpg","version":25,"id":"59743","lastModified":"1301901464000","name":"Jaime Tirelli","type":"Person","_key":"36330"} +{"label":"Ginger Taylor","version":19,"id":"59741","lastModified":"1301902093000","name":"Ginger Taylor","type":"Person","_key":"36331"} +{"label":"Angel Santiago","version":19,"id":"59742","lastModified":"1301902093000","name":"Angel Santiago","type":"Person","_key":"36332"} +{"label":"Millie Tirelli","version":20,"id":"59744","lastModified":"1301902326000","name":"Millie Tirelli","type":"Person","_key":"36333"} +{"label":"The Phantom of the Opera","description":"Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love","id":"9833","runtime":143,"imdbId":"tt0293508","trailer":"http:\/\/www.youtube.com\/watch?v=1334","version":207,"lastModified":"1301901835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/882\/4d7cd2007b9aa11a0c018882\/the-phantom-of-the-opera-mid.jpg","genre":"Drama","title":"The Phantom of the Opera","releaseDate":1103673600000,"language":"en","type":"Movie","_key":"36334"} +{"label":"The Net 2.0","description":"The life of a young computer systems analyst is thrown into turmoil when, after arriving in Istanbul to start a new job, she finds her credit cards useless, her bank account empty, and her identity stolen.","id":"9834","runtime":95,"imdbId":"tt0449077","version":208,"lastModified":"1301905446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6d\/4bc9295e017a3c57fe010c6d\/the-net-2-0-mid.jpg","genre":"Action","title":"The Net 2.0","releaseDate":1139961600000,"language":"en","type":"Movie","_key":"36335"} +{"label":"Charles Winkler","version":35,"id":"16487","lastModified":"1302062026000","name":"Charles Winkler","type":"Person","_key":"36336"} +{"label":"Nikki Deloach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/783\/4ce5a8437b9aa168b3000783\/nikki-deloach-profile.jpg","version":34,"id":"59750","lastModified":"1301901181000","name":"Nikki Deloach","type":"Person","_key":"36337"} +{"label":"Cengiz Bozkurt","version":19,"id":"59752","lastModified":"1301901537000","name":"Cengiz Bozkurt","type":"Person","_key":"36338"} +{"label":"\u015eebnem D\u00f6nmez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ded\/4d21992b5e73d66b34002ded\/ebnem-d-nmez-profile.jpg","biography":"<P>\u015eebnem D\u00f6nmez, (d. 17 May\u0131s 1974, Salzgitter), T\u00fcrk oyuncu.<\/P>\r\n<P>1996'da Murat Ba\u015fo\u011flu ile sundu\u011fu Sabah \u015eekerleri ile \u00e7\u0131k\u0131\u015f yakalad\u0131. Program, bir d\u00f6nem sabahlar\u0131 yap\u0131lan m\u00fczik-e\u011flence programlar\u0131 furyas\u0131n\u0131n \u00f6nc\u00fcs\u00fc oldu. Murat Ba\u015fo\u011flu ile iyi bir ikili olunca 1997'de Star TV'de G\u00f6revimiz Tehlike isimli bir yar\u0131\u015fma program\u0131 sundular. 1998'de ise D\u00f6nmez Star TV'de bir showgirl olarak t\u00fcm h\u00fcnerlerini sergiledi\u011fi Cumartesi Gecesi Ate\u015fi'ni sundu.<\/P>\r\n<P>2000'lerde ise dizi ve sinema d\u00fcnyas\u0131nd","version":27,"id":"59753","lastModified":"1301901373000","name":"\u015eebnem D\u00f6nmez","type":"Person","_key":"36339"} +{"label":"Demet Akbag","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e4e\/4d1452135e73d60834001e4e\/demet-akbag-profile.jpg","biography":"<P>Demet Akba\u011f, T\u00fcrk,sinema, tiyatro g\u00fcld\u00fcr\u00fc ve dizi oyuncusu.23 Aral\u0131k 1959 y\u0131l\u0131nda \u0130zmir'de do\u011fmu\u015ftur.Aslen Denizli'lidir.Tiyatro kariyerine \u0130zmir Atat\u00fcrk Lisesi'nde okurken ba\u015flam\u0131\u015ft\u0131r \u00fcnl\u00fc olmas\u0131 ise Y\u0131lmaz Erdo\u011fan ile ba\u015frol\u00fc payla\u015ft\u0131\u011f\u0131 \"Bir Demet Tiyatro\" y\u0131llar\u0131na isabet eder.<\/P>\r\n<P>Ayr\u0131ca \"pi\u015fti\" program\u0131nda H\u00fclya Av\u015far ve Beyaz\u0131t \u00d6zt\u00fcrk'le beraber yorumculuk yapm\u0131\u015ft\u0131r. BKM'nin en \u00f6nemli y\u0131ld\u0131zlar\u0131ndan biridir. 2008 y\u0131l\u0131 itibariyle Kanal 1'de yay\u0131nlanan \"S\u00fcper Aile\" adl\u0131 yar\u0131\u015fma progra","version":30,"id":"59754","lastModified":"1301904129000","name":"Demet Akbag","type":"Person","_key":"36340"} +{"label":"Courtney Vye","version":19,"id":"59756","lastModified":"1301902093000","name":"Courtney Vye","type":"Person","_key":"36341"} +{"label":"Neil Hopkins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32b\/4d3711375e73d6335b00d32b\/neil-hopkins-profile.jpg","version":30,"id":"59755","lastModified":"1301901182000","name":"Neil Hopkins","type":"Person","_key":"36342"} +{"label":"Ertan Saban","version":20,"id":"59757","lastModified":"1301902093000","name":"Ertan Saban","type":"Person","_key":"36343"} +{"label":"Ezel Akay","version":20,"id":"59758","lastModified":"1301902093000","name":"Ezel Akay","type":"Person","_key":"36344"} +{"label":"Michael Halphie","version":19,"id":"59759","lastModified":"1301902093000","name":"Michael Halphie","type":"Person","_key":"36345"} +{"label":"Mehmet Ergen","version":19,"id":"59761","lastModified":"1301902093000","name":"Mehmet Ergen","type":"Person","_key":"36346"} +{"label":"Ali Ipin","version":19,"id":"59763","lastModified":"1301902093000","name":"Ali Ipin","type":"Person","_key":"36347"} +{"label":"Veysel Diker","version":19,"id":"59760","lastModified":"1301902093000","name":"Veysel Diker","type":"Person","_key":"36348"} +{"label":"Cem Karakaya","version":19,"id":"59762","lastModified":"1301902093000","name":"Cem Karakaya","type":"Person","_key":"36349"} +{"label":"Soner Helvacioglu","version":19,"id":"59766","lastModified":"1301902093000","name":"Soner Helvacioglu","type":"Person","_key":"36350"} +{"label":"Didem Ugurlu","version":19,"id":"59765","lastModified":"1301902093000","name":"Didem Ugurlu","type":"Person","_key":"36351"} +{"label":"Halit Ergen\u00e7","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/329\/4d0892c45e73d67448000329\/halit-ergen-profile.jpg","version":26,"id":"59764","lastModified":"1301901251000","name":"Halit Ergen\u00e7","type":"Person","_key":"36352"} +{"label":"Jane Austen's Mafia!","description":"No overview found.","id":"9835","runtime":84,"imdbId":"tt0120741","version":62,"lastModified":"1301902987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c72\/4bc9295e017a3c57fe010c72\/jane-austen-s-mafia-mid.jpg","genre":"Comedy","title":"Jane Austen's Mafia!","releaseDate":901238400000,"language":"en","type":"Movie","_key":"36353"} +{"label":"Pamela Gidley","version":29,"id":"59789","lastModified":"1301901530000","name":"Pamela Gidley","type":"Person","_key":"36354"} +{"label":"Happy Feet","description":"Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!","id":"9836","runtime":109,"imdbId":"tt0366548","trailer":"http:\/\/www.youtube.com\/watch?v=hQEUSZm-OjM","version":309,"lastModified":"1301901218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cf\/4cb7d90f5e73d677850003cf\/happy-feet-mid.jpg","studio":"Warner Bros. Pictures","genre":"Adventure","title":"Happy Feet","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"36355"} +{"label":"Warren Coleman","version":40,"id":"59767","lastModified":"1301901939000","name":"Warren Coleman","type":"Person","_key":"36356"} +{"label":"Judy Morris","version":49,"id":"58063","lastModified":"1301901690000","name":"Judy Morris","type":"Person","_key":"36357"} +{"label":"Johnny A. Sanchez","version":26,"id":"59783","lastModified":"1301901546000","name":"Johnny A. Sanchez","type":"Person","_key":"36358"} +{"label":"Carlos Alazraqui","version":28,"id":"59784","lastModified":"1301901491000","name":"Carlos Alazraqui","type":"Person","_key":"36359"} +{"label":"Jeffrey Garcia","version":40,"id":"59782","lastModified":"1301901315000","name":"Jeffrey Garcia","type":"Person","_key":"36360"} +{"label":"Fat Joe","version":37,"id":"59785","lastModified":"1301901696000","name":"Fat Joe","type":"Person","_key":"36361"} +{"label":"Alyssa Shafer","version":26,"id":"59786","lastModified":"1301901752000","name":"Alyssa Shafer","type":"Person","_key":"36362"} +{"label":"Mark Klastorin","version":26,"id":"59787","lastModified":"1301901916000","name":"Mark Klastorin","type":"Person","_key":"36363"} +{"label":"Michael Cornacchia","version":27,"id":"59788","lastModified":"1301901941000","name":"Michael Cornacchia","type":"Person","_key":"36364"} +{"label":"The Prince of Egypt","description":"Born into slavery and cast adrift on the Nile to escape mass genocide, Moses is reared as the son of Pharaoh Seti and stepbrother of Ramses. When Moses learns of his true ancestry, he retreats to the desert, where he answers God's call and accepts his destiny: to lead the Hebrews out of slavery and into freedom.","id":"9837","runtime":100,"imdbId":"tt0120794","trailer":"http:\/\/www.youtube.com\/watch?v=QC2RX3JEo7M","version":127,"lastModified":"1301901784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce1\/4bc92970017a3c57fe010ce1\/the-prince-of-egypt-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"The Prince of Egypt","releaseDate":913766400000,"language":"en","type":"Movie","_key":"36365"} +{"label":"Brenda Chapman","version":22,"id":"59803","lastModified":"1301902132000","name":"Brenda Chapman","type":"Person","_key":"36366"} +{"label":"King Solomon's Mines","description":"Fortune hunter Allan Quatermain teams up with a resourceful woman to help her find her missing father lost in the wilds of 1900s Africa while being pursued by hostile tribes and a rival German explorer.","id":"9838","runtime":100,"imdbId":"tt0089421","trailer":"http:\/\/www.youtube.com\/watch?v=2643","version":94,"lastModified":"1301904724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf3\/4bc92974017a3c57fe010cf3\/king-solomon-s-mines-mid.jpg","genre":"Action","title":"King Solomon's Mines","releaseDate":501465600000,"language":"en","type":"Movie","_key":"36367"} +{"label":"Ken Gampu","version":26,"id":"59804","lastModified":"1301901822000","name":"Ken Gampu","type":"Person","_key":"36368"} +{"label":"Beyond Borders","description":"Beyond Borders is an epic tale of the turbulent romance between two star-crossed lovers set against...","id":"9839","runtime":127,"imdbId":"tt0294357","version":225,"lastModified":"1301902832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d04\/4bc92976017a3c57fe010d04\/beyond-borders-mid.jpg","genre":"Action","title":"Beyond Borders","releaseDate":1066953600000,"language":"en","type":"Movie","_key":"36369"} +{"label":"Iain Lee","version":24,"id":"59797","lastModified":"1301901900000","name":"Iain Lee","type":"Person","_key":"36370"} +{"label":"Kate Trotter","version":24,"id":"59794","lastModified":"1301902109000","name":"Kate Trotter","type":"Person","_key":"36371"} +{"label":"John Gausden","version":24,"id":"59795","lastModified":"1301901900000","name":"John Gausden","type":"Person","_key":"36372"} +{"label":"Isabelle Horler","version":24,"id":"59796","lastModified":"1301901900000","name":"Isabelle Horler","type":"Person","_key":"36373"} +{"label":"Keelan Anthony","version":24,"id":"59798","lastModified":"1301901900000","name":"Keelan Anthony","type":"Person","_key":"36374"} +{"label":"John Bourgeois","version":31,"id":"55378","lastModified":"1301901739000","name":"John Bourgeois","type":"Person","_key":"36375"} +{"label":"Norman Mikeal Berketa","version":28,"id":"59801","lastModified":"1301901775000","name":"Norman Mikeal Berketa","type":"Person","_key":"36376"} +{"label":"Fikile Nyandeni","version":24,"id":"59802","lastModified":"1301901739000","name":"Fikile Nyandeni","type":"Person","_key":"36377"} +{"label":"Kalyane Tea","version":24,"id":"59799","lastModified":"1301901900000","name":"Kalyane Tea","type":"Person","_key":"36378"} +{"label":"Aidan Pickering","version":24,"id":"59800","lastModified":"1301901738000","name":"Aidan Pickering","type":"Person","_key":"36379"} +{"label":"The Dreamlife of Angels","description":"In Lille, two penniless young women with few prospects become friends. Isa moves in with Marie, who's flat-sitting for a mother and child in hospital in comas following a car crash. Isa is out-going, unskilled, with hopes of moving south to warmer climes. Marie usually is either angry or detached. Then, while Isa begins to visit the child in whose flat they live, going to hospital to read to her, Marie slowly falls for a rich youth. At first Marie keeps him at bay, then she not only pursues him,","id":"9840","runtime":113,"imdbId":"tt0120449","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-dream-life-of-angels","version":61,"lastModified":"1301906936000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86e\/4d16bc765e73d6084200886e\/la-vie-r-v-e-des-anges-mid.jpg","genre":"Drama","title":"The Dreamlife of Angels","releaseDate":905904000000,"language":"en","type":"Movie","_key":"36380"} +{"label":"Natacha R\u00e9gnier","version":27,"id":"59826","lastModified":"1301902034000","name":"Natacha R\u00e9gnier","type":"Person","_key":"36381"} +{"label":"Gr\u00e9goire Colin","version":28,"id":"59829","lastModified":"1301901496000","name":"Gr\u00e9goire Colin","type":"Person","_key":"36382"} +{"label":"Patrick Mercado","version":23,"id":"59830","lastModified":"1301902151000","name":"Patrick Mercado","type":"Person","_key":"36383"} +{"label":"Rest Stop","description":"The film follows Nicole Carrow, a young woman who is threatened by a maniac serial killer, after her boyfriend Jess, is abducted in a rest stop.","id":"9841","runtime":80,"imdbId":"tt0787505","version":192,"lastModified":"1301903654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0d\/4bc92976017a3c57fe010d0d\/rest-stop-mid.jpg","genre":"Horror","title":"Rest Stop","releaseDate":1160179200000,"language":"en","type":"Movie","_key":"36384"} +{"label":"John Shiban","version":24,"id":"29924","lastModified":"1301901573000","name":"John Shiban","type":"Person","_key":"36385"} +{"label":"Deanna Russo","version":24,"id":"59819","lastModified":"1301901537000","name":"Deanna Russo","type":"Person","_key":"36386"} +{"label":"Jaimie Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41c\/4cb2bce37b9aa1263d00041c\/jaimie-alexander-profile.jpg","version":32,"id":"59817","lastModified":"1301901379000","name":"Jaimie Alexander","type":"Person","_key":"36387"} +{"label":"Joey Mendicino","version":19,"id":"59818","lastModified":"1301902271000","name":"Joey Mendicino","type":"Person","_key":"36388"} +{"label":"Michael Childers","version":19,"id":"59820","lastModified":"1301901881000","name":"Michael Childers","type":"Person","_key":"36389"} +{"label":"Curtis Taylor","version":19,"id":"59822","lastModified":"1301902271000","name":"Curtis Taylor","type":"Person","_key":"36390"} +{"label":"Jennifer Cormack","version":19,"id":"59823","lastModified":"1301902271000","name":"Jennifer Cormack","type":"Person","_key":"36391"} +{"label":"Edmund Entin","version":21,"id":"59821","lastModified":"1301901773000","name":"Edmund Entin","type":"Person","_key":"36392"} +{"label":"Mikey Post","version":20,"id":"59825","lastModified":"1301902366000","name":"Mikey Post","type":"Person","_key":"36393"} +{"label":"Gary Entin","version":24,"id":"59824","lastModified":"1301902134000","name":"Gary Entin","type":"Person","_key":"36394"} +{"label":"Nick Orefice","version":20,"id":"59827","lastModified":"1301901994000","name":"Nick Orefice","type":"Person","_key":"36395"} +{"label":"School for Scoundrels","description":"A young guy short on luck, enrolls in a class to build confidence to help win over the girl of his dreams, which becomes complicated when his teacher has the same agenda.","id":"9842","runtime":100,"imdbId":"tt0462519","trailer":"http:\/\/www.youtube.com\/watch?v=Jh-nQKB8fwg","version":218,"lastModified":"1301907458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d23\/4bc9297b017a3c57fe010d23\/school-for-scoundrels-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"School for Scoundrels","releaseDate":1159488000000,"language":"en","type":"Movie","_key":"36396"} +{"label":"Matt Walsh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4cdc5a3d7b9aa13801000066\/matt-walsh-profile.jpg","version":38,"id":"59841","lastModified":"1301901151000","name":"Matt Walsh","type":"Person","_key":"36397"} +{"label":"Jon Glaser","version":22,"id":"59842","lastModified":"1301902271000","name":"Jon Glaser","type":"Person","_key":"36398"} +{"label":"Paul Scheer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/892\/4cc481e35e73d67784001892\/paul-scheer-profile.jpg","version":35,"id":"59843","lastModified":"1301902165000","name":"Paul Scheer","type":"Person","_key":"36399"} +{"label":"Joanne Baron","version":34,"id":"59846","lastModified":"1301901856000","name":"Joanne Baron","type":"Person","_key":"36400"} +{"label":"Omar J. Dorsey","version":22,"id":"59844","lastModified":"1301902093000","name":"Omar J. Dorsey","type":"Person","_key":"36401"} +{"label":"Marcella Lowery","version":22,"id":"59845","lastModified":"1301902271000","name":"Marcella Lowery","type":"Person","_key":"36402"} +{"label":"Leonard Earl Howze","version":23,"id":"59847","lastModified":"1301901925000","name":"Leonard Earl Howze","type":"Person","_key":"36403"} +{"label":"Big Nothing","description":"A frustrated, unemployed teacher joins forces with a scammer and his girlfriend in a blackmailing scheme.","id":"9843","runtime":86,"imdbId":"tt0488085","trailer":"http:\/\/www.youtube.com\/watch?v=uwLruD9jDtU","version":207,"lastModified":"1301902367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d30\/4bc9297c017a3c57fe010d30\/big-nothing-mid.jpg","genre":"Action","title":"Big Nothing","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"36404"} +{"label":"Jean-Baptiste Andrea","version":21,"id":"59850","lastModified":"1301901881000","name":"Jean-Baptiste Andrea","type":"Person","_key":"36405"} +{"label":"Billy Asher","version":23,"id":"59861","lastModified":"1301901537000","name":"Billy Asher","type":"Person","_key":"36406"} +{"label":"Alice Eve","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ab\/4c1bf9d35e73d64a240005ab\/alice-eve-profile.jpg","biography":"Eve was born in London, England, the daughter of actors Trevor Eve and Sharon Maughan. She has two younger brothers, Jack and George, and was raised in the United Kingdom and Los Angeles, United States. She attended Bedales School and then took her A-Levels at Westminster School in London. During her gap year, she studied at the Beverly Hills Playhouse and then read English at St Catherine's College, Oxford. While at Oxford she appeared in student productions of An Ideal Husband, Animal Crackers","version":53,"birthday":"381798000000","id":"59860","birthplace":"London, England, UK","lastModified":"1301901150000","name":"Alice Eve","type":"Person","_key":"36407"} +{"label":"Sarah Edmondson","version":21,"id":"59863","lastModified":"1301902271000","name":"Sarah Edmondson","type":"Person","_key":"36408"} +{"label":"Amber Sealey","version":19,"id":"59864","lastModified":"1301901540000","name":"Amber Sealey","type":"Person","_key":"36409"} +{"label":"Laurence Bouvard","version":21,"id":"59865","lastModified":"1301902093000","name":"Laurence Bouvard","type":"Person","_key":"36410"} +{"label":"Olivia Peterson","version":21,"id":"59862","lastModified":"1301901881000","name":"Olivia Peterson","type":"Person","_key":"36411"} +{"label":"Mindy Lee Raskin","version":21,"id":"59866","lastModified":"1301902093000","name":"Mindy Lee Raskin","type":"Person","_key":"36412"} +{"label":"Paul Preston","version":21,"id":"59868","lastModified":"1301901881000","name":"Paul Preston","type":"Person","_key":"36413"} +{"label":"Clair Elsmore","version":21,"id":"59869","lastModified":"1301901881000","name":"Clair Elsmore","type":"Person","_key":"36414"} +{"label":"Kenneth Jay","version":21,"id":"59867","lastModified":"1301901881000","name":"Kenneth Jay","type":"Person","_key":"36415"} +{"label":"The Opposite of Sex","description":"A selfish 16 year girl becomes pregnant when she seduces her homosexual half-brother's partner. ","id":"9844","runtime":105,"imdbId":"tt0120777","trailer":"http:\/\/www.youtube.com\/watch?v=R4ZzqLPvagc","version":188,"lastModified":"1301902086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4d0230bf5e73d621a3000ca1\/the-opposite-of-sex-mid.jpg","genre":"Comedy","title":"The Opposite of Sex","releaseDate":895795200000,"language":"en","type":"Movie","_key":"36416"} +{"label":"Don Roos","version":39,"id":"57579","lastModified":"1301901968000","name":"Don Roos","type":"Person","_key":"36417"} +{"label":"Perdita Durango","description":"Perdita Durango meets Romeo Dolorosa, a similar free spirit who does what he likes, when he likes. Together they kidnap a young couple as a lark that slowly gets out of their control. The young couple, who were supposedly to be a sacrifice to Romeo's gods, complicate his business plans and his relationship with Perdita. Meanwhile, Romeo is being pursued by an unlucky and unstoppable DEA agent...","id":"9845","runtime":126,"imdbId":"tt0119879","version":79,"lastModified":"1301903477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d42\/4bc9297f017a3c57fe010d42\/perdita-durango-mid.jpg","genre":"Road Movie","title":"Perdita Durango","releaseDate":878256000000,"language":"en","type":"Movie","_key":"36418"} +{"label":"To Live and Die in L.A.","description":"A Secret Service agent becomes obsessed with tracking down a notorious and dangerous Los Angeles counterfeitor.","id":"9846","runtime":116,"imdbId":"tt0090180","trailer":"http:\/\/www.youtube.com\/watch?v=zGBe8mltpkA","version":145,"lastModified":"1301903243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4b\/4bc92980017a3c57fe010d4b\/to-live-and-die-in-l-a-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"To Live and Die in L.A.","releaseDate":499651200000,"language":"en","type":"Movie","_key":"36419"} +{"label":"William Petersen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4c5f4ff55e73d63464000002\/william-petersen-profile.jpg","biography":"William Louis Petersen (born February 21, 1953) is an American actor and producer, best known for playing Dr. Gilbert \"Gil\" Grissom on the hit CBS series CSI: Crime Scene Investigation.\nHe has also portrayed President John F Kennedy in the 1998 TV film The Rat Pack. Petersen is notoriously selective about the film roles he chooses, and has turned down roles in several films that went on to become modern classics.\n\nPetersen, the youngest of six children, was born in Evanston, Illinois, to parents","version":44,"id":"52267","birthplace":"Evanston, Illinois, USA","lastModified":"1301901101000","name":"William Petersen","type":"Person","_key":"36420"} +{"label":"John Pankow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/152\/4c6003a17b9aa172dd000152\/john-pankow-profile.jpg","version":42,"id":"59872","lastModified":"1301901109000","name":"John Pankow","type":"Person","_key":"36421"} +{"label":"Debra Feuer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19a\/4c6009377b9aa172da00019a\/debra-feuer-profile.jpg","version":27,"id":"59873","lastModified":"1301901577000","name":"Debra Feuer","type":"Person","_key":"36422"} +{"label":"Robert Downey Sr.","version":24,"id":"59874","lastModified":"1301902005000","name":"Robert Downey Sr.","type":"Person","_key":"36423"} +{"label":"The Tripper","description":"A Ronald Reagan-obsessed serial killer targets a bunch of hippies who are heading to a weekend-long concert.","id":"9847","runtime":93,"imdbId":"tt0760187","version":194,"lastModified":"1301903263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d54\/4bc92980017a3c57fe010d54\/the-tripper-mid.jpg","studio":"Coquette Productions","genre":"Horror","title":"The Tripper","releaseDate":1145491200000,"language":"en","type":"Movie","_key":"36424"} +{"label":"My Favorite Martian","description":"News producer Tim O'Hara gets himself fired for unwillingly compromising his bosses' daughter Brace Channing during a live transmission. A little later, he witnesses the crashing of a small martian spacecraft, realizing his one-time chance of delivering a story that will rock the earth. Since Tim took the original, but scaled down spaceship with him, the martian follows him to retrieve it.","id":"9849","runtime":94,"imdbId":"tt0120764","version":150,"lastModified":"1301904460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f0\/4d991ca07b9aa158460010f0\/my-favorite-martian-mid.jpg","genre":"Comedy","title":"My Favorite Martian","releaseDate":918777600000,"language":"en","type":"Movie","_key":"36425"} +{"label":"The Go-Getter","description":"When his mother dies, a teenager takes a road-trip in a stolen car to find his long-lost brother. Along the way he discovers a profound connection with the car-owner and with himself as well.","id":"9867","runtime":93,"imdbId":"tt0479289","version":183,"lastModified":"1301903361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27a\/4bf42ba3017a3c6d9200027a\/the-go-getter-mid.jpg","studio":"Et Cetera Films","genre":"Drama","title":"The Go-Getter","releaseDate":1169424000000,"language":"en","type":"Movie","_key":"36426"} +{"label":"Martin Hynes","version":23,"id":"59891","lastModified":"1301901784000","name":"Martin Hynes","type":"Person","_key":"36427"} +{"label":"Kathleen M. Darcy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f25\/4d47d4645e73d66f59002f25\/kathleen-m-darcy-profile.jpg","version":22,"id":"25555","lastModified":"1301901955000","name":"Kathleen M. Darcy","type":"Person","_key":"36428"} +{"label":"Franz + Polina","description":"No overview found.","id":"9868","runtime":119,"imdbId":"tt0899242","version":47,"lastModified":"1301905001000","genre":"History","title":"Franz + Polina","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"36429"} +{"label":"Mikhail Segal","version":20,"id":"59898","lastModified":"1301901827000","name":"Mikhail Segal","type":"Person","_key":"36430"} +{"label":"Svetlana Ivanova","version":30,"id":"59900","lastModified":"1301901569000","name":"Svetlana Ivanova","type":"Person","_key":"36431"} +{"label":"Andrey Merzlikin","version":18,"id":"59899","lastModified":"1301901495000","name":"Andrey Merzlikin","type":"Person","_key":"36432"} +{"label":"Tamara Mironova","version":18,"id":"59901","lastModified":"1301901650000","name":"Tamara Mironova","type":"Person","_key":"36433"} +{"label":"Uwe Jellinek","version":20,"id":"59902","lastModified":"1301902337000","name":"Uwe Jellinek","type":"Person","_key":"36434"} +{"label":"Patriot Games","description":"Jack Ryan is on vacation in England when he spoils an assassination attempt on an important member of the Royal Family. Ryan gets drawn back into the CIA when the same splinter faction of the IRA targets him and his family.","id":"9869","runtime":117,"imdbId":"tt0105112","trailer":"http:\/\/www.youtube.com\/watch?v=1821","version":180,"lastModified":"1301420797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6a\/4d4321007b9aa15bbb004e6a\/patriot-games-mid.jpg","genre":"Action","title":"Patriot Games","releaseDate":707702400000,"language":"en","tagline":"Not for honor. Not for country. For his wife and child.","type":"Movie","_key":"36435"} +{"label":"Forgetting Sarah Marshall","description":"When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.","id":"9870","runtime":112,"imdbId":"tt0800039","trailer":"http:\/\/www.youtube.com\/watch?v=f6r18_N28Dg&hd=1","homepage":"http:\/\/www.forgettingsarahmarshall.com\/","version":362,"lastModified":"1301982534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4c82dbe05e73d664d800001d\/forgetting-sarah-marshall-mid.jpg","studio":"Apatow Productions","genre":"Comedy","title":"Forgetting Sarah Marshall","releaseDate":1208476800000,"language":"en","tagline":"You lose some, you get some.","type":"Movie","_key":"36436"} +{"label":"Nicholas Stoller","version":67,"id":"52934","lastModified":"1301901171000","name":"Nicholas Stoller","type":"Person","_key":"36437"} +{"label":"Russell Brand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/144\/4bf61c78017a3c7733000144\/russell-brand-profile.jpg","biography":"Russell Edward Brand (born 4 June 1975) is an English comedian, actor, columnist, author and presenter of radio and television.\n\nBrand achieved mainstream fame in the UK for presenting a Big Brother spin-off, Big Brother's Big Mouth, and for his radio show, among other television series and award ceremonies. He has also appeared in a number of films, including the romantic comedy Forgetting Sarah Marshall, St Trinian's, and Bedtime Stories. He is noted for various controversies that have surroun","version":97,"birthday":"171068400000","id":"59919","birthplace":"Grays, Essex, England, UK","lastModified":"1301982411000","name":"Russell Brand","type":"Person","_key":"36438"} +{"label":"Ginger Snaps","description":"This film uses the werewolf curse as a metaphor for puberty. One of the Fitzgerald sisters, both suburban goth girl outcasts, gets bitten by something in the woods.","id":"9871","runtime":108,"imdbId":"tt0210070","version":147,"lastModified":"1301950616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4d9a4c8b5e73d63daa0006be\/ginger-snaps-mid.jpg","studio":"Copperheart Entertainment","genre":"Comedy","title":"Ginger Snaps","releaseDate":965088000000,"language":"en","type":"Movie","_key":"36439"} +{"label":"Danielle Hampton","version":21,"id":"59928","lastModified":"1301901826000","name":"Danielle Hampton","type":"Person","_key":"36440"} +{"label":"Emily Perkins","version":26,"id":"64914","lastModified":"1301901522000","name":"Emily Perkins","type":"Person","_key":"36441"} +{"label":"Explorers","description":"The visionary dreams of three curious and adventuresome young boys become an exciting reality in Explorers, the action-fantasy from director Joe Dante, who combines keen humour, warmth and fantasy with unexpected twists. In their makeshift laboratory, the boys use an amazing discovery and their ingenuity to build there own spaceship and launch themselves on a fantastic interplanetary journey. ","id":"9872","runtime":109,"imdbId":"tt0089114","version":121,"lastModified":"1301902972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e07\/4bc9299e017a3c57fe010e07\/explorers-mid.jpg","studio":"Paramount Pictures","genre":"Adventure","title":"Explorers","releaseDate":489974400000,"language":"en","type":"Movie","_key":"36442"} +{"label":"Bobby Fite","version":19,"id":"59941","lastModified":"1301901281000","name":"Bobby Fite","type":"Person","_key":"36443"} +{"label":"Amanda Peterson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f5\/4d4793db5e73d653850039f5\/amanda-peterson-profile.jpg","version":23,"id":"59942","lastModified":"1301901631000","name":"Amanda Peterson","type":"Person","_key":"36444"} +{"label":"FX","description":"A movies special effects man is hired by a government agency to help stage the assassination of a well known gangster. When the agency double cross him, he uses his special effects to trap the gangster and the corrupt agents.","id":"9873","runtime":109,"imdbId":"tt0089118","version":89,"lastModified":"1301903369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e10\/4bc9299f017a3c57fe010e10\/f-x-murder-by-illusion-mid.jpg","genre":"Action","title":"FX","releaseDate":508118400000,"language":"en","type":"Movie","_key":"36445"} +{"label":"Cliff De Young","version":43,"id":"44301","lastModified":"1301901100000","name":"Cliff De Young","type":"Person","_key":"36446"} +{"label":"Mason Adams","version":25,"id":"59945","lastModified":"1301901646000","name":"Mason Adams","type":"Person","_key":"36447"} +{"label":"Robert Mandel","version":27,"id":"43786","lastModified":"1301901592000","name":"Robert Mandel","type":"Person","_key":"36448"} +{"label":"Cobra","description":"Ruthless cop Marion Cobretti is on the hunt for a serial killer known as the Night Slasher while protecting a witness.","id":"9874","runtime":87,"imdbId":"tt0090859","trailer":"http:\/\/www.youtube.com\/watch?v=ObUuFsYgyGE","version":169,"lastModified":"1301901520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1d\/4bc929a1017a3c57fe010e1d\/cobra-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Cobra","releaseDate":517190400000,"language":"en","type":"Movie","_key":"36449"} +{"label":"K\u00f6nigskinder","description":"No overview found.","id":"9875","runtime":84,"imdbId":"tt0382787","version":54,"lastModified":"1301905709000","studio":"Studio Hamburg Filmproduktion","genre":"Drama","title":"K\u00f6nigskinder","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"36450"} +{"label":"Enno Hesse","version":20,"id":"50752","lastModified":"1301901676000","name":"Enno Hesse","type":"Person","_key":"36451"} +{"label":"Natascha Hockwin","version":20,"id":"59950","lastModified":"1301901676000","name":"Natascha Hockwin","type":"Person","_key":"36452"} +{"label":"Stop! Or My Mom Will Shoot","description":"No overview found.","id":"9876","runtime":87,"imdbId":"tt0105477","version":147,"lastModified":"1301903128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b0\/4caa5d8d5e73d643ec0006b0\/stop-or-my-mom-will-shoot-mid.jpg","genre":"Action","title":"Stop! Or My Mom Will Shoot","releaseDate":698630400000,"language":"en","type":"Movie","_key":"36453"} +{"label":"Estelle Getty","version":25,"id":"59956","lastModified":"1301901495000","name":"Estelle Getty","type":"Person","_key":"36454"} +{"label":"Urban Legend","description":"There's a campus killer on the loose who's making urban legends, like the one about eating pop rocks and soda at the same time will make your stomach explode and the one about a psycho with an axe stepping into the backseat of your car at the gas station when not looking, into reality.","id":"9877","runtime":99,"imdbId":"tt0146336","version":144,"lastModified":"1301903734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3e\/4bc929a9017a3c57fe010e3e\/urban-legend-mid.jpg","genre":"Horror","title":"Urban Legend","releaseDate":906681600000,"language":"en","type":"Movie","_key":"36455"} +{"label":"Jamie Blanks","version":30,"id":"59958","lastModified":"1301901595000","name":"Jamie Blanks","type":"Person","_key":"36456"} +{"label":"Rebecca Gayheart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d8\/4ce16e605e73d60f700003d8\/rebecca-gayheart-profile.jpg","version":34,"id":"59967","lastModified":"1301902051000","name":"Rebecca Gayheart","type":"Person","_key":"36457"} +{"label":"The Boy in the Plastic Bubble","description":"Based on a true story, Tod Lubitch is born with a deficient immune system (which is unlike being born with AIDS). As such, he must spend the rest of his life in a completely sterile environment. His room is completely hermetically sealed against bacteria and virus, his food is specially prepared, and his only human contact comes in the form of gloved hands. The movie follows his life into a teenager","id":"9878","runtime":96,"imdbId":"tt0074236","version":79,"lastModified":"1301904207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32a\/4c297cc15e73d61d0a00032a\/the-boy-in-the-plastic-bubble-mid.jpg","genre":"Drama","title":"The Boy in the Plastic Bubble","releaseDate":216604800000,"language":"en","type":"Movie","_key":"36458"} +{"label":"Glynnis O'Connor","version":24,"id":"59962","lastModified":"1301901496000","name":"Glynnis O'Connor","type":"Person","_key":"36459"} +{"label":"Robert Reed","version":22,"id":"59964","lastModified":"1301902135000","name":"Robert Reed","type":"Person","_key":"36460"} +{"label":"Diana Hyland","version":22,"id":"59965","lastModified":"1301902031000","name":"Diana Hyland","type":"Person","_key":"36461"} +{"label":"Striptease","description":"Bounced from her job, Erin Grant needs money if she's to have any chance of winning back custody of her child. But, eventually, she must confront the naked truth: to take on the system, she'll have to take it all off. Erin strips to conquer, but she faces unintended circumstances when a hound dog of a Congressman zeroes in on her and sharpens the shady tools at his fingertips, including blackmail and murder.","id":"9879","runtime":113,"imdbId":"tt0117765","version":119,"lastModified":"1301902587000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed3\/4d3627a97b9aa17a4500aed3\/striptease-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Striptease","releaseDate":835488000000,"language":"en","tagline":"Some People Get Into Trouble No Matter What They WEAR.","type":"Movie","_key":"36462"} +{"label":"Andrew Bergman","version":52,"id":"41550","lastModified":"1302002585000","name":"Andrew Bergman","type":"Person","_key":"36463"} +{"label":"Jerry Grayson","version":23,"id":"60796","lastModified":"1301902093000","name":"Jerry Grayson","type":"Person","_key":"36464"} +{"label":"Kimberly Flynn","version":17,"id":"106714","lastModified":"1301902636000","name":"Kimberly Flynn","type":"Person","_key":"36465"} +{"label":"Rena Riffel","version":25,"id":"66877","lastModified":"1301901595000","name":"Rena Riffel","type":"Person","_key":"36466"} +{"label":"The Princess Diaries","description":"A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.","id":"9880","runtime":115,"imdbId":"tt0247638","version":130,"lastModified":"1301901681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e61\/4bc929af017a3c57fe010e61\/the-princess-diaries-mid.jpg","genre":"Comedy","title":"The Princess Diaries","releaseDate":996364800000,"language":"en","tagline":"She rocks. She rules. She reigns.","type":"Movie","_key":"36467"} +{"label":"Die Apothekerin","description":"No overview found.","id":"9881","runtime":107,"imdbId":"tt0118633","version":81,"lastModified":"1301905348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4c192ca95e73d64a2100031c\/die-apothekerin-mid.jpg","studio":"Senator Film Produktion","genre":"Comedy","title":"Die Apothekerin","releaseDate":875750400000,"language":"en","type":"Movie","_key":"36468"} +{"label":"Isabella Parkinson","version":22,"id":"50315","lastModified":"1301901997000","name":"Isabella Parkinson","type":"Person","_key":"36469"} +{"label":"The Siege","description":"The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.","id":"9882","runtime":111,"imdbId":"tt0133952","version":195,"lastModified":"1301902485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6a\/4bc929af017a3c57fe010e6a\/the-siege-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"The Siege","releaseDate":910310400000,"language":"en","tagline":"On November 6th our freedom is history","type":"Movie","_key":"36470"} +{"label":"Otto - Der Katastrofenfilm","description":"No overview found.","id":"9883","runtime":87,"imdbId":"tt0192407","version":62,"lastModified":"1301421328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a7\/4d159aa67b9aa114860023a7\/otto-der-katastrofenfilm-mid.jpg","genre":"Comedy","title":"Otto - Der Katastrofenfilm","releaseDate":953769600000,"language":"en","type":"Movie","_key":"36471"} +{"label":"Michael Schweigh\u00f6fer","version":22,"id":"59989","lastModified":"1301902337000","name":"Michael Schweigh\u00f6fer","type":"Person","_key":"36472"} +{"label":"Collateral Damage","description":"Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio \"The Wolf\" Perrini.","id":"9884","runtime":104,"imdbId":"tt0233469","trailer":"http:\/\/www.youtube.com\/watch?v=Se-0IPX2e5k","version":184,"lastModified":"1301906210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e92\/4bc929b3017a3c57fe010e92\/collateral-damage-mid.jpg","genre":"Action","title":"Collateral Damage","releaseDate":1012780800000,"language":"en","tagline":"What would you do if you lost everything?","type":"Movie","_key":"36473"} +{"label":"Wolf Creek","description":"Stranded backpackers in remote Australia fall prey to a murderous bushman who offers to fix their car, then takes them captive","id":"9885","runtime":99,"imdbId":"tt0416315","version":167,"lastModified":"1301902849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ead\/4bc929b8017a3c57fe010ead\/wolf-creek-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Horror","title":"Wolf Creek","releaseDate":1104537600000,"language":"en","tagline":"The Thrill Is In The Hunt.","type":"Movie","_key":"36474"} +{"label":"Greg Mclean","version":29,"id":"59998","lastModified":"1301901668000","name":"Greg Mclean","type":"Person","_key":"36475"} +{"label":"Cassandra Magrath","version":21,"id":"60003","lastModified":"1301901813000","name":"Cassandra Magrath","type":"Person","_key":"36476"} +{"label":"Kestie Morassi","version":25,"id":"60004","lastModified":"1301902166000","name":"Kestie Morassi","type":"Person","_key":"36477"} +{"label":"Nathan Phillips","version":29,"id":"60005","lastModified":"1301901955000","name":"Nathan Phillips","type":"Person","_key":"36478"} +{"label":"Johnny Mnemonic","description":"The year is 2021, and half of the Earth's population is suffering from the disease known as Nerve Attenuation Syndrome (NAS). Johnny, a mnemonic data courier, is hired to carry 320 gigabytes of crucial information to safety from the Pharmacom corporation. Pursued by Yakuza agents and a crazed cyborg, Johnny must deliver the data or die in twenty-four hours.","id":"9886","runtime":92,"imdbId":"tt0113481","version":204,"lastModified":"1301908025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebe\/4bc929b9017a3c57fe010ebe\/johnny-mnemonic-mid.jpg","genre":"Action","title":"Johnny Mnemonic","releaseDate":797904000000,"language":"en","type":"Movie","_key":"36479"} +{"label":"Robert Longo","version":21,"id":"59997","lastModified":"1301902303000","name":"Robert Longo","type":"Person","_key":"36480"} +{"label":"Species","description":"No overview found.","id":"9887","version":291,"lastModified":"1301905637000","genre":"Horror","title":"Species","language":"en","type":"Movie","_key":"36481"} +{"label":"Home Alone","description":"No overview found.","id":"9888","version":364,"lastModified":"1302025412000","genre":"Comedy","title":"Home Alone","language":"en","type":"Movie","_key":"36482"} +{"label":"Shallow Hal","description":"A shallow man falls in love with a 300 pound woman because of her \"inner beauty\". ","id":"9889","runtime":108,"imdbId":"tt0256380","trailer":"http:\/\/www.youtube.com\/watch?v=NMLZnY2nLcw","version":153,"lastModified":"1301902736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed3\/4bc929bd017a3c57fe010ed3\/shallow-hal-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"Shallow Hal","releaseDate":1004572800000,"language":"en","type":"Movie","_key":"36483"} +{"label":"The Stepford Wives","description":"What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech terrifying little town, in a very modern comedy-thriller.","id":"9890","runtime":93,"imdbId":"tt0327162","version":201,"lastModified":"1301902711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee1\/4bc929be017a3c57fe010ee1\/the-stepford-wives-mid.png","studio":"Paramount Pictures","genre":"Action","title":"The Stepford Wives","releaseDate":1086912000000,"language":"en","type":"Movie","_key":"36484"} +{"label":"Fallon Brooking","version":22,"id":"60016","lastModified":"1301902384000","name":"Fallon Brooking","type":"Person","_key":"36485"} +{"label":"Faith Hill","version":23,"id":"60017","lastModified":"1301902382000","name":"Faith Hill","type":"Person","_key":"36486"} +{"label":"Dylan Hartigan","version":23,"id":"60015","lastModified":"1301902312000","name":"Dylan Hartigan","type":"Person","_key":"36487"} +{"label":"Tom Riis Farrell","version":23,"id":"60018","lastModified":"1301901946000","name":"Tom Riis Farrell","type":"Person","_key":"36488"} +{"label":"Christopher Evan Welch","version":31,"id":"60021","lastModified":"1301901555000","name":"Christopher Evan Welch","type":"Person","_key":"36489"} +{"label":"Lorri Bagley","version":22,"id":"60019","lastModified":"1301902369000","name":"Lorri Bagley","type":"Person","_key":"36490"} +{"label":"Lisa Masters","version":22,"id":"60020","lastModified":"1301902366000","name":"Lisa Masters","type":"Person","_key":"36491"} +{"label":"Colleen Dunn","version":21,"id":"60022","lastModified":"1301902308000","name":"Colleen Dunn","type":"Person","_key":"36492"} +{"label":"Stranger Than Fiction","description":"No overview found.","id":"9892","runtime":90,"imdbId":"tt0178043","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/stranger-than-fiction","version":172,"lastModified":"1301906072000","genre":"Comedy","title":"Stranger Than Fiction","releaseDate":990230400000,"language":"en","type":"Movie","_key":"36493"} +{"label":"Eric Bross","version":23,"id":"60045","lastModified":"1302019276000","name":"Eric Bross","type":"Person","_key":"36494"} +{"label":"Mackenzie Astin","version":25,"id":"60060","lastModified":"1301901645000","name":"Mackenzie Astin","type":"Person","_key":"36495"} +{"label":"Steve O'Neill","version":20,"id":"60061","lastModified":"1301902093000","name":"Steve O'Neill","type":"Person","_key":"36496"} +{"label":"Robert Lewis","version":24,"id":"60063","lastModified":"1301902093000","name":"Robert Lewis","type":"Person","_key":"36497"} +{"label":"Sharron Prince","version":20,"id":"60064","lastModified":"1301902093000","name":"Sharron Prince","type":"Person","_key":"36498"} +{"label":"Scott Subiono","version":20,"id":"60062","lastModified":"1301902093000","name":"Scott Subiono","type":"Person","_key":"36499"} +{"label":"Sleepover","description":"As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!","id":"9893","runtime":89,"imdbId":"tt0368975","version":201,"lastModified":"1301903927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fe\/4d4480657b9aa15bbb0065fe\/sleepover-mid.jpg","genre":"Comedy","title":"Sleepover","releaseDate":1089331200000,"language":"en","tagline":"The rules are set. The game is on.","type":"Movie","_key":"36500"} +{"label":"Kallie Flynn Childress","version":21,"id":"60071","lastModified":"1301902271000","name":"Kallie Flynn Childress","type":"Person","_key":"36501"} +{"label":"Sara Paxton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc4\/4d281f1c7b9aa134dc001fc4\/sara-paxton-profile.jpg","version":41,"id":"60072","lastModified":"1301901229000","name":"Sara Paxton","type":"Person","_key":"36502"} +{"label":"Brie Larson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c07\/4cf5a6555e73d6299e000c07\/brie-larson-profile.jpg","version":50,"id":"60073","lastModified":"1301901197000","name":"Brie Larson","type":"Person","_key":"36503"} +{"label":"Shane Hunter","version":21,"id":"60075","lastModified":"1301902093000","name":"Shane Hunter","type":"Person","_key":"36504"} +{"label":"Jeff Garlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c1\/4d273e415e73d626b00017c1\/jeff-garlin-profile.jpg","version":77,"id":"60074","lastModified":"1301904079000","name":"Jeff Garlin","type":"Person","_key":"36505"} +{"label":"Douglas Smith","version":22,"id":"60077","lastModified":"1301901475000","name":"Douglas Smith","type":"Person","_key":"36506"} +{"label":"Katija Pevec","version":21,"id":"60078","lastModified":"1301902271000","name":"Katija Pevec","type":"Person","_key":"36507"} +{"label":"Thad Luckinbill","version":21,"id":"60076","lastModified":"1301902271000","name":"Thad Luckinbill","type":"Person","_key":"36508"} +{"label":"Eileen April Boylan","version":22,"id":"60079","lastModified":"1301902271000","name":"Eileen April Boylan","type":"Person","_key":"36509"} +{"label":"Brett Wagner","version":25,"id":"60081","lastModified":"1301902271000","name":"Brett Wagner","type":"Person","_key":"36510"} +{"label":"Ryan Slattery","version":21,"id":"60080","lastModified":"1301902271000","name":"Ryan Slattery","type":"Person","_key":"36511"} +{"label":"The Cable Guy","description":"When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the \"friendship,\" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.","id":"9894","runtime":91,"imdbId":"tt0115798","trailer":"http:\/\/www.youtube.com\/watch?v=1646","version":238,"lastModified":"1301902264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4d868a4a5e73d6539b005670\/the-cable-guy-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Cable Guy","releaseDate":834364800000,"language":"en","tagline":"There's no such thing as free cable.","type":"Movie","_key":"36512"} +{"label":"Man of the Year","description":"A comedian who hosts a news satire program decides to run for president, and a computerized voting machine malfunction gets him elected.","id":"9895","runtime":115,"imdbId":"tt0483726","trailer":"http:\/\/www.youtube.com\/watch?v=tX4tvZnnmt8","version":252,"lastModified":"1301903172000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f15\/4bc929c7017a3c57fe010f15\/man-of-the-year-mid.jpg","genre":"Comedy","title":"Man of the Year","releaseDate":1160697600000,"language":"en","type":"Movie","_key":"36513"} +{"label":"Faith Daniels","version":21,"id":"60090","lastModified":"1301901762000","name":"Faith Daniels","type":"Person","_key":"36514"} +{"label":"David Alpay","version":23,"id":"60089","lastModified":"1301901947000","name":"David Alpay","type":"Person","_key":"36515"} +{"label":"Chris Matthews","version":21,"id":"60092","lastModified":"1301901762000","name":"Chris Matthews","type":"Person","_key":"36516"} +{"label":"James Carville","version":23,"id":"60093","lastModified":"1301901926000","name":"James Carville","type":"Person","_key":"36517"} +{"label":"Doug Murray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/52e\/4cd8b9b97b9aa11b2600052e\/doug-murray-profile.jpg","version":24,"id":"60091","lastModified":"1301901531000","name":"Doug Murray","type":"Person","_key":"36518"} +{"label":"Rick Roberts","version":31,"id":"3720","lastModified":"1299493685000","name":"Rick Roberts","type":"Person","_key":"36519"} +{"label":"Karen Hines","version":22,"id":"60095","lastModified":"1301901813000","name":"Karen Hines","type":"Person","_key":"36520"} +{"label":"Cathleen Crier","version":21,"id":"60094","lastModified":"1301901762000","name":"Cathleen Crier","type":"Person","_key":"36521"} +{"label":"David Nichols","version":25,"id":"1529","lastModified":"1299493718000","name":"David Nichols","type":"Person","_key":"36522"} +{"label":"Brandon Firla","version":21,"id":"60096","lastModified":"1301901926000","name":"Brandon Firla","type":"Person","_key":"36523"} +{"label":"Rat Race","description":"A Las Vegas casino magnate, determined to find a new avenue for wagering, sets up a race for money.","id":"9896","runtime":112,"imdbId":"tt0250687","trailer":"http:\/\/www.youtube.com\/watch?v=xip4QyzO1FQ","version":183,"lastModified":"1301906835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f23\/4bc929ca017a3c57fe010f23\/rat-race-mid.jpg","genre":"Action","title":"Rat Race","releaseDate":996451200000,"language":"en","type":"Movie","_key":"36524"} +{"label":"Otto - Der Liebesfilm","description":"No overview found.","id":"9897","runtime":87,"imdbId":"tt0105073","version":50,"lastModified":"1301908574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f28\/4bc929ca017a3c57fe010f28\/otto-der-liebesfilm-mid.jpg","genre":"Comedy","title":"Otto - Der Liebesfilm","releaseDate":712454400000,"language":"en","type":"Movie","_key":"36525"} +{"label":"Lonny Kellner","version":20,"id":"60167","lastModified":"1301902151000","name":"Lonny Kellner","type":"Person","_key":"36526"} +{"label":"The Killing Floor","description":"A literary agent moves into a penthouse apartment. Soon after the move, he receives crime scene photographs that seem to have taken place in his new apartment. Next he receives a series of stalker videotapes that document his every move.","id":"9898","runtime":94,"imdbId":"tt0756672","version":157,"lastModified":"1301904026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f31\/4bc929cd017a3c57fe010f31\/the-killing-floor-mid.jpg","genre":"Crime","title":"The Killing Floor","releaseDate":1178755200000,"language":"en","type":"Movie","_key":"36527"} +{"label":"Gideon Raff","version":24,"id":"60100","lastModified":"1301901952000","name":"Gideon Raff","type":"Person","_key":"36528"} +{"label":"Joel Leffert","version":19,"id":"60112","lastModified":"1301902299000","name":"Joel Leffert","type":"Person","_key":"36529"} +{"label":"Jeffrey Carlson","version":19,"id":"60113","lastModified":"1301902122000","name":"Jeffrey Carlson","type":"Person","_key":"36530"} +{"label":"Bethany Butler","version":19,"id":"60114","lastModified":"1301901761000","name":"Bethany Butler","type":"Person","_key":"36531"} +{"label":"Andrew Weems","version":19,"id":"60115","lastModified":"1301902122000","name":"Andrew Weems","type":"Person","_key":"36532"} +{"label":"Allison McAtee","version":17,"id":"60116","lastModified":"1301902122000","name":"Allison McAtee","type":"Person","_key":"36533"} +{"label":"Tina Benko","version":19,"id":"60120","lastModified":"1301902122000","name":"Tina Benko","type":"Person","_key":"36534"} +{"label":"John Di Benedetto","version":20,"id":"60121","lastModified":"1301902299000","name":"John Di Benedetto","type":"Person","_key":"36535"} +{"label":"Rick Borgia","version":19,"id":"60122","lastModified":"1301902122000","name":"Rick Borgia","type":"Person","_key":"36536"} +{"label":"Derek Cecil","version":21,"id":"60117","lastModified":"1301902122000","name":"Derek Cecil","type":"Person","_key":"36537"} +{"label":"Paul Urcioli","version":19,"id":"60119","lastModified":"1301902122000","name":"Paul Urcioli","type":"Person","_key":"36538"} +{"label":"Jason Bushman","version":20,"id":"60123","lastModified":"1301902122000","name":"Jason Bushman","type":"Person","_key":"36539"} +{"label":"Joe Pontillo","version":20,"id":"60126","lastModified":"1301902197000","name":"Joe Pontillo","type":"Person","_key":"36540"} +{"label":"Lou D'Amato","version":19,"id":"60124","lastModified":"1301902122000","name":"Lou D'Amato","type":"Person","_key":"36541"} +{"label":"Bria Roberts","version":19,"id":"60127","lastModified":"1301902122000","name":"Bria Roberts","type":"Person","_key":"36542"} +{"label":"The Producers","description":"After putting together another Broadway flop, down-on-his-luck producer Max Bialystock teams up with timid accountant Leo Bloom in a get-rich-quick scheme to put on the world's worst show.","id":"9899","runtime":134,"imdbId":"tt0395251","version":198,"lastModified":"1301903186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f43\/4bc929cf017a3c57fe010f43\/the-producers-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Producers","releaseDate":1135468800000,"language":"en","type":"Movie","_key":"36543"} +{"label":"Susan Stroman","version":19,"id":"60129","lastModified":"1301901537000","name":"Susan Stroman","type":"Person","_key":"36544"} +{"label":"Gary Beach","version":19,"id":"60136","lastModified":"1301902093000","name":"Gary Beach","type":"Person","_key":"36545"} +{"label":"Meg Gillentine","version":19,"id":"60139","lastModified":"1301902271000","name":"Meg Gillentine","type":"Person","_key":"36546"} +{"label":"Bryn Dowling","version":19,"id":"60138","lastModified":"1301902093000","name":"Bryn Dowling","type":"Person","_key":"36547"} +{"label":"Kevin Ligon","version":19,"id":"60140","lastModified":"1301902271000","name":"Kevin Ligon","type":"Person","_key":"36548"} +{"label":"Ray Wills","version":19,"id":"60141","lastModified":"1301902271000","name":"Ray Wills","type":"Person","_key":"36549"} +{"label":"Marilyn Sokol","version":23,"id":"60142","lastModified":"1301901729000","name":"Marilyn Sokol","type":"Person","_key":"36550"} +{"label":"Brent Barrett","version":19,"id":"60144","lastModified":"1301902271000","name":"Brent Barrett","type":"Person","_key":"36551"} +{"label":"Tory Ross","version":19,"id":"60145","lastModified":"1301902271000","name":"Tory Ross","type":"Person","_key":"36552"} +{"label":"Brad Oscar","version":23,"id":"60143","lastModified":"1301901760000","name":"Brad Oscar","type":"Person","_key":"36553"} +{"label":"Grandma's Boy","description":"Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.","id":"9900","runtime":94,"imdbId":"tt0456554","version":470,"lastModified":"1301902554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f55\/4bc929d4017a3c57fe010f55\/grandma-s-boy-mid.jpg","genre":"Comedy","title":"Grandma's Boy","releaseDate":1136505600000,"language":"en","tagline":"A movie that proves your never to old to come of age.","type":"Movie","_key":"36554"} +{"label":"Nicholaus Goossen","version":26,"id":"60149","lastModified":"1301901775000","name":"Nicholaus Goossen","type":"Person","_key":"36555"} +{"label":"Shirley Jones","version":37,"id":"60158","lastModified":"1301901423000","name":"Shirley Jones","type":"Person","_key":"36556"} +{"label":"Chuck Church","version":23,"id":"60159","lastModified":"1301901729000","name":"Chuck Church","type":"Person","_key":"36557"} +{"label":"Scott Halberstadt","version":23,"id":"60160","lastModified":"1301901880000","name":"Scott Halberstadt","type":"Person","_key":"36558"} +{"label":"Shana Hiatt","version":23,"id":"60162","lastModified":"1301901880000","name":"Shana Hiatt","type":"Person","_key":"36559"} +{"label":"Heidi Hawking","version":23,"id":"60161","lastModified":"1301902092000","name":"Heidi Hawking","type":"Person","_key":"36560"} +{"label":"John Kirk","version":25,"id":"60163","lastModified":"1301902092000","name":"John Kirk","type":"Person","_key":"36561"} +{"label":"Joe Koons","version":23,"id":"60165","lastModified":"1301902092000","name":"Joe Koons","type":"Person","_key":"36562"} +{"label":"Bryan Ling","version":23,"id":"60166","lastModified":"1301901729000","name":"Bryan Ling","type":"Person","_key":"36563"} +{"label":"Geno Kirkland","version":23,"id":"60164","lastModified":"1301901729000","name":"Geno Kirkland","type":"Person","_key":"36564"} +{"label":"Freedom Downtime","description":"A feature length documentary about the Free Kevin movement and the hacker world.","id":"9901","runtime":121,"imdbId":"tt0309614","homepage":"http:\/\/www.freedomdowntime.com\/","version":94,"lastModified":"1301905709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a78\/4c0a0b30017a3c7e86000a78\/freedom-downtime-mid.jpg","genre":"Documentary","title":"Freedom Downtime","releaseDate":978307200000,"language":"en","type":"Movie","_key":"36565"} +{"label":"Emmanuel Goldstein","version":21,"id":"60168","lastModified":"1301902317000","name":"Emmanuel Goldstein","type":"Person","_key":"36566"} +{"label":"Mark Abene","version":20,"id":"60174","lastModified":"1301902337000","name":"Mark Abene","type":"Person","_key":"36567"} +{"label":"Ed Cummings","version":20,"id":"60175","lastModified":"1301902337000","name":"Ed Cummings","type":"Person","_key":"36568"} +{"label":"Jeffrey Stanton","version":20,"id":"60180","lastModified":"1301902337000","name":"Jeffrey Stanton","type":"Person","_key":"36569"} +{"label":"Alexis Kasperavicius","version":20,"id":"60178","lastModified":"1301902337000","name":"Alexis Kasperavicius","type":"Person","_key":"36570"} +{"label":"Lazlow Jones","version":20,"id":"60177","lastModified":"1301901955000","name":"Lazlow Jones","type":"Person","_key":"36571"} +{"label":"Kevin Mitnick","version":20,"id":"60181","lastModified":"1301902151000","name":"Kevin Mitnick","type":"Person","_key":"36572"} +{"label":"John Markoff","version":27,"id":"60179","lastModified":"1301902337000","name":"John Markoff","type":"Person","_key":"36573"} +{"label":"Bruce Sterling","version":20,"id":"60182","lastModified":"1301902151000","name":"Bruce Sterling","type":"Person","_key":"36574"} +{"label":"Deth Veggie","version":20,"id":"60183","lastModified":"1301902337000","name":"Deth Veggie","type":"Person","_key":"36575"} +{"label":"Wrong Turn","description":"Six people find themselves trapped in the woods of West Virginia, hunted down by \"cannibalistic mountain men grossly disfigured through generations of in-breeding.","id":"9902","runtime":84,"imdbId":"tt0295700","trailer":"http:\/\/www.youtube.com\/watch?v=naUUyD-_oPc","version":208,"lastModified":"1301901938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b96\/4d6ab0007b9aa13631002b96\/wrong-turn-mid.jpg","studio":"Summit Entertainment","genre":"Horror","title":"Wrong Turn","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"36576"} +{"label":"Rob Schmidt","version":29,"id":"60243","lastModified":"1301901960000","name":"Rob Schmidt","type":"Person","_key":"36577"} +{"label":"The Hoax","description":"In what would cause a fantastic media frenzy, Clifford Irving (Gere) sells his bogus biography of Howard Hughes to a premiere publishing house in the early 1970s.","id":"9903","runtime":116,"imdbId":"tt0462338","version":346,"lastModified":"1301903376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7c\/4bc929da017a3c57fe010f7c\/the-hoax-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"The Hoax","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"36578"} +{"label":"John Carter","version":28,"id":"60196","lastModified":"1301901294000","name":"John Carter","type":"Person","_key":"36579"} +{"label":"David Aaron Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e4\/4cf548e15e73d6299e0007e4\/david-aaron-baker-profile.jpg","version":28,"id":"60195","lastModified":"1301901253000","name":"David Aaron Baker","type":"Person","_key":"36580"} +{"label":"Raul Julia Jr.","version":21,"id":"60198","lastModified":"1301901729000","name":"Raul Julia Jr.","type":"Person","_key":"36581"} +{"label":"Judi Barton","version":21,"id":"60197","lastModified":"1301901729000","name":"Judi Barton","type":"Person","_key":"36582"} +{"label":"Okwui Okpokwasili","version":21,"id":"60199","lastModified":"1301901729000","name":"Okwui Okpokwasili","type":"Person","_key":"36583"} +{"label":"Bob Wiltfong","version":21,"id":"60200","lastModified":"1301901729000","name":"Bob Wiltfong","type":"Person","_key":"36584"} +{"label":"William Fowle","version":21,"id":"60201","lastModified":"1301901729000","name":"William Fowle","type":"Person","_key":"36585"} +{"label":"Carlton Wilborn","version":22,"id":"60203","lastModified":"1301901475000","name":"Carlton Wilborn","type":"Person","_key":"36586"} +{"label":"Antonie Knoppers","version":21,"id":"60202","lastModified":"1301901729000","name":"Antonie Knoppers","type":"Person","_key":"36587"} +{"label":"Steve Buck","version":21,"id":"60204","lastModified":"1301901729000","name":"Steve Buck","type":"Person","_key":"36588"} +{"label":"Eric Yellin","version":23,"id":"60206","lastModified":"1301901729000","name":"Eric Yellin","type":"Person","_key":"36589"} +{"label":"John Rothman","version":28,"id":"60205","lastModified":"1301901492000","name":"John Rothman","type":"Person","_key":"36590"} +{"label":"The Wild","description":"An adolescent lion is accidentally shipped from the New York Zoo to Africa. Now running free, his zoo pals must put aside their differences to help bring him back.","id":"9904","runtime":82,"imdbId":"tt0405469","trailer":"http:\/\/www.youtube.com\/watch?v=931","homepage":"http:\/\/www.disney.com\/thewild","version":234,"lastModified":"1301902294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ef\/4cbe7a3f5e73d635060006ef\/the-wild-mid.jpg","genre":"Action","title":"The Wild","releaseDate":1144972800000,"language":"en","type":"Movie","_key":"36591"} +{"label":"Steve 'Spaz' Williams","version":23,"id":"60207","lastModified":"1302066195000","name":"Steve 'Spaz' Williams","type":"Person","_key":"36592"} +{"label":"Greg Cipes","version":26,"id":"60227","lastModified":"1302066196000","name":"Greg Cipes","type":"Person","_key":"36593"} +{"label":"Don Cherry","version":27,"id":"18594","lastModified":"1302066196000","name":"Don Cherry","type":"Person","_key":"36594"} +{"label":"Miles Marsico","version":23,"id":"60229","lastModified":"1302066196000","name":"Miles Marsico","type":"Person","_key":"36595"} +{"label":"Colin Hay","version":30,"id":"60228","lastModified":"1302066196000","name":"Colin Hay","type":"Person","_key":"36596"} +{"label":"Jack De Sena","version":24,"id":"60230","lastModified":"1302066196000","name":"Jack De Sena","type":"Person","_key":"36597"} +{"label":"Christian Argueta","version":23,"id":"60231","lastModified":"1302066196000","name":"Christian Argueta","type":"Person","_key":"36598"} +{"label":"David Cowgill","version":24,"id":"60232","lastModified":"1302066196000","name":"David Cowgill","type":"Person","_key":"36599"} +{"label":"Jonathan Kimmel","version":23,"id":"60234","lastModified":"1302066196000","name":"Jonathan Kimmel","type":"Person","_key":"36600"} +{"label":"Clinton Leupp","version":24,"id":"60235","lastModified":"1302066196000","name":"Clinton Leupp","type":"Person","_key":"36601"} +{"label":"Colin Cunningham","version":34,"id":"60233","lastModified":"1302066196000","name":"Colin Cunningham","type":"Person","_key":"36602"} +{"label":"Eddie Gossling","version":23,"id":"60236","lastModified":"1302066196000","name":"Eddie Gossling","type":"Person","_key":"36603"} +{"label":"Shallow Grave","description":"Three friends discover their new flatmate dead but loaded with cash.","id":"9905","runtime":89,"imdbId":"tt0111149","version":316,"lastModified":"1301903021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd5\/4bc929e9017a3c57fe010fd5\/shallow-grave-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"Shallow Grave","releaseDate":769046400000,"language":"en","type":"Movie","_key":"36604"} +{"label":"Colin McCredie","version":16,"id":"149359","lastModified":"1301903105000","name":"Colin McCredie","type":"Person","_key":"36605"} +{"label":"The Ant Bully","description":"Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of \"crimes against the colony,\" Lucas can only regain his freedom by living with the ants and learning their ways.","id":"9906","runtime":88,"imdbId":"tt0429589","trailer":"http:\/\/www.youtube.com\/watch?v=ehABKjhVbG0","homepage":"http:\/\/www.theantbully.com","version":322,"lastModified":"1301906787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4bc92a0e017a3c57fe011071\/the-ant-bully-mid.jpg","studio":"Warner Bros. Pictures","genre":"Adventure","title":"The Ant Bully","releaseDate":1154044800000,"language":"en","tagline":"The battle for the lawn is on.","type":"Movie","_key":"36606"} +{"label":"John A. Davis","version":57,"id":"60237","lastModified":"1301901361000","name":"John A. Davis","type":"Person","_key":"36607"} +{"label":"Zach Tyler","version":28,"id":"60251","lastModified":"1301902190000","name":"Zach Tyler","type":"Person","_key":"36608"} +{"label":"Creagen Dow","version":26,"id":"60254","lastModified":"1301902198000","name":"Creagen Dow","type":"Person","_key":"36609"} +{"label":"Jake T. Austin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c7\/4d89a93f5e73d6504f0003c7\/jake-t-austin-profile.jpg","version":40,"id":"60255","lastModified":"1301901321000","name":"Jake T. Austin","type":"Person","_key":"36610"} +{"label":"Allison Mack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01b\/4bdc5bf3017a3c20c200001b\/allison-mack-profile.jpg","version":33,"id":"60253","lastModified":"1301902049000","name":"Allison Mack","type":"Person","_key":"36611"} +{"label":"S. Scott Bullock","version":32,"id":"60257","lastModified":"1301902366000","name":"S. Scott Bullock","type":"Person","_key":"36612"} +{"label":"Paul Greenberg","version":28,"id":"60259","lastModified":"1301902023000","name":"Paul Greenberg","type":"Person","_key":"36613"} +{"label":"Barnyard","description":"When things get crazy at the farm, it's up to a boisterous bovine named Otis (voiced by Kevin James) to save the day in this computer-animated tale. The animals in this barnyard sing, dance and party, but Otis's stern dad (Sam Elliott) warns the crew to keep their cool around humans. Troublemaker Otis rarely listens to his pop, but when the farmer disappears and the animals go nutty, the young cow realizes he must stop the madness.","id":"9907","runtime":90,"imdbId":"tt0414853","version":384,"lastModified":"1301901909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34d\/4ca57d635e73d636f900034d\/barnyard-mid.jpg","genre":"Animation","title":"Barnyard","releaseDate":1154649600000,"language":"en","type":"Movie","_key":"36614"} +{"label":"Cam Clarke","version":32,"id":"60272","lastModified":"1301901708000","name":"Cam Clarke","type":"Person","_key":"36615"} +{"label":"Dom Irrera","version":28,"id":"60275","lastModified":"1301902391000","name":"Dom Irrera","type":"Person","_key":"36616"} +{"label":"Tino Insana","version":29,"id":"60274","lastModified":"1301902244000","name":"Tino Insana","type":"Person","_key":"36617"} +{"label":"Madeline Lovejoy","version":23,"id":"60276","lastModified":"1301901937000","name":"Madeline Lovejoy","type":"Person","_key":"36618"} +{"label":"Earthquake","version":23,"id":"60277","lastModified":"1301902131000","name":"Earthquake","type":"Person","_key":"36619"} +{"label":"Fred Tatasciore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08c\/4c387f7b7b9aa10edd00008c\/fred-tatasciore-profile.jpg","version":48,"id":"60279","lastModified":"1301901278000","name":"Fred Tatasciore","type":"Person","_key":"36620"} +{"label":"Maria Bamford","version":34,"id":"60278","lastModified":"1301902005000","name":"Maria Bamford","type":"Person","_key":"36621"} +{"label":"Tattoo","description":"No overview found.","id":"9908","runtime":108,"imdbId":"tt0286204","version":104,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b87\/4cd0783a7b9aa16ba0000b87\/tattoo-mid.jpg","studio":"B.A. Produktion","genre":"Thriller","title":"Tattoo","releaseDate":1017878400000,"language":"en","type":"Movie","_key":"36622"} +{"label":"Dangerous Minds","description":"LouAnne Johnson is a Marine turned teacher who squares off against a classroom of impudent, inner-city teens, whose bullying tactics nearly drive her out the first day. But Johnson radically changes her lesson plan to include bribery and browbeating (despite objections from the school's prissy principal) in an effort to teach the class that learning is its own reward.","id":"9909","runtime":94,"imdbId":"tt0112792","trailer":"http:\/\/www.youtube.com\/watch?v=gIjLUKO7bRY","version":120,"lastModified":"1301903777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/091\/4bc92a15017a3c57fe011091\/dangerous-minds-mid.jpg","genre":"Drama","title":"Dangerous Minds","releaseDate":808099200000,"language":"en","tagline":"She Broke The Rules... And Changed Their Lives.","type":"Movie","_key":"36623"} +{"label":"John N. Smith","version":23,"id":"60295","lastModified":"1301901449000","name":"John N. Smith","type":"Person","_key":"36624"} +{"label":"Two for the Money","description":"After suffering a career-ending injury, a former college football star aligns himself with one of the most renowned touts in the sports-gambling business.","id":"9910","runtime":122,"imdbId":"tt0417217","trailer":"http:\/\/www.youtube.com\/watch?v=1572","version":234,"lastModified":"1301901952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4bc92a16017a3c57fe01109a\/two-for-the-money-mid.jpg","genre":"Comedy","title":"Two for the Money","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"36625"} +{"label":"Charles Carroll","version":25,"id":"60287","lastModified":"1301902300000","name":"Charles Carroll","type":"Person","_key":"36626"} +{"label":"Ralph Garman","version":25,"id":"60286","lastModified":"1301902123000","name":"Ralph Garman","type":"Person","_key":"36627"} +{"label":"Chrislyn Austin","version":21,"id":"60290","lastModified":"1301902300000","name":"Chrislyn Austin","type":"Person","_key":"36628"} +{"label":"Craig Veroni","version":24,"id":"60288","lastModified":"1301902123000","name":"Craig Veroni","type":"Person","_key":"36629"} +{"label":"Denise Galik","version":27,"id":"60291","lastModified":"1301901776000","name":"Denise Galik","type":"Person","_key":"36630"} +{"label":"Steve Makaj","version":21,"id":"60294","lastModified":"1301902300000","name":"Steve Makaj","type":"Person","_key":"36631"} +{"label":"Gary Hudson","version":27,"id":"60292","lastModified":"1301901945000","name":"Gary Hudson","type":"Person","_key":"36632"} +{"label":"Jeremy Guilbaut","version":23,"id":"60293","lastModified":"1301902154000","name":"Jeremy Guilbaut","type":"Person","_key":"36633"} +{"label":"Outlaw","description":"A group of people who feel betrayed by their government and let down by their police force form a modern-day outlaw posse in order to right what they see as the wrongs of society.","id":"9911","runtime":103,"imdbId":"tt0758771","version":198,"lastModified":"1301903193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4bc92a19017a3c57fe0110a8\/outlaw-mid.jpg","genre":"Action","title":"Outlaw","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"36634"} +{"label":"James Farbell","version":19,"id":"60341","lastModified":"1301902270000","name":"James Farbell","type":"Person","_key":"36635"} +{"label":"Sally Bretton","version":19,"id":"60339","lastModified":"1301902270000","name":"Sally Bretton","type":"Person","_key":"36636"} +{"label":"Igor Smiljevic","version":19,"id":"60340","lastModified":"1301902270000","name":"Igor Smiljevic","type":"Person","_key":"36637"} +{"label":"Emily Maitlis","version":19,"id":"60342","lastModified":"1301902270000","name":"Emily Maitlis","type":"Person","_key":"36638"} +{"label":"Ethan Wilson","version":19,"id":"60344","lastModified":"1301902270000","name":"Ethan Wilson","type":"Person","_key":"36639"} +{"label":"Shane Reese","version":19,"id":"60343","lastModified":"1301902270000","name":"Shane Reese","type":"Person","_key":"36640"} +{"label":"Kate Lewington","version":19,"id":"60346","lastModified":"1301902270000","name":"Kate Lewington","type":"Person","_key":"36641"} +{"label":"Georgina Bowman","version":19,"id":"60347","lastModified":"1301902270000","name":"Georgina Bowman","type":"Person","_key":"36642"} +{"label":"Rory Pettyjohns","version":19,"id":"60345","lastModified":"1301902270000","name":"Rory Pettyjohns","type":"Person","_key":"36643"} +{"label":"Rob Fry","version":19,"id":"60350","lastModified":"1301902270000","name":"Rob Fry","type":"Person","_key":"36644"} +{"label":"Dave Legeno","version":31,"id":"60348","lastModified":"1301901145000","name":"Dave Legeno","type":"Person","_key":"36645"} +{"label":"Ryan Gage","version":19,"id":"60349","lastModified":"1301902270000","name":"Ryan Gage","type":"Person","_key":"36646"} +{"label":"The World's Fastest Indian","description":"The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle -- a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.","id":"9912","runtime":127,"imdbId":"tt0412080","homepage":"http:\/\/www.worldsfastestindian.com\/","version":270,"lastModified":"1302039155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bd\/4bc92a1b017a3c57fe0110bd\/the-world-s-fastest-indian-mid.jpg","studio":"2929 Productions","genre":"Drama","title":"The World's Fastest Indian","releaseDate":1129161600000,"language":"en","type":"Movie","_key":"36647"} +{"label":"Iain Rea","version":23,"id":"60368","lastModified":"1301901537000","name":"Iain Rea","type":"Person","_key":"36648"} +{"label":"Tessa Mitchell","version":23,"id":"60370","lastModified":"1301901614000","name":"Tessa Mitchell","type":"Person","_key":"36649"} +{"label":"Aaron Murphy","version":24,"id":"60369","lastModified":"1301901537000","name":"Aaron Murphy","type":"Person","_key":"36650"} +{"label":"Tim Shadbolt","version":23,"id":"60371","lastModified":"1301902093000","name":"Tim Shadbolt","type":"Person","_key":"36651"} +{"label":"Annie Whittle","version":23,"id":"60372","lastModified":"1301902270000","name":"Annie Whittle","type":"Person","_key":"36652"} +{"label":"Greg Johnson","version":40,"id":"46398","lastModified":"1301901564000","name":"Greg Johnson","type":"Person","_key":"36653"} +{"label":"Kate Sullivan","version":23,"id":"60374","lastModified":"1301902093000","name":"Kate Sullivan","type":"Person","_key":"36654"} +{"label":"Antony Starr","version":30,"id":"60373","lastModified":"1302070575000","name":"Antony Starr","type":"Person","_key":"36655"} +{"label":"Jim Bowman","version":23,"id":"60375","lastModified":"1301902092000","name":"Jim Bowman","type":"Person","_key":"36656"} +{"label":"Phoebe Falconer","version":23,"id":"60377","lastModified":"1301902092000","name":"Phoebe Falconer","type":"Person","_key":"36657"} +{"label":"Charles Pierard","version":23,"id":"60378","lastModified":"1301902092000","name":"Charles Pierard","type":"Person","_key":"36658"} +{"label":"Barry Ryan","version":23,"id":"60379","lastModified":"1301902092000","name":"Barry Ryan","type":"Person","_key":"36659"} +{"label":"Alison Bruce","version":24,"id":"60376","lastModified":"1301901880000","name":"Alison Bruce","type":"Person","_key":"36660"} +{"label":"Bill Richardson","version":23,"id":"60380","lastModified":"1301902092000","name":"Bill Richardson","type":"Person","_key":"36661"} +{"label":"Wesley Dowdell","version":23,"id":"60382","lastModified":"1301902092000","name":"Wesley Dowdell","type":"Person","_key":"36662"} +{"label":"Todd Emerson","version":23,"id":"60383","lastModified":"1301902092000","name":"Todd Emerson","type":"Person","_key":"36663"} +{"label":"Tony Wilson","version":23,"id":"60381","lastModified":"1301901880000","name":"Tony Wilson","type":"Person","_key":"36664"} +{"label":"The Skeleton Key","description":"Sent to New Orleans to care for an aging stroke victim who lies bedridden and speechless in a rambling antebellum mansion, 25-year-old hospice worker Caroline discovers a key that unlocks ancient secrets. Alone in the house with no company aside from the man's unfriendly wife, Caroline eventually comes across a hidden room. But what she finds inside is a Pandora's box of voodoo, danger and lies.","id":"9913","runtime":104,"imdbId":"tt0397101","version":234,"lastModified":"1301901902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1a\/4d4459377b9aa103c8000a1a\/the-skeleton-key-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"The Skeleton Key","releaseDate":1123804800000,"language":"en","tagline":"It can open any door.","type":"Movie","_key":"36665"} +{"label":"Marion Zinser","version":23,"id":"60388","lastModified":"1301901764000","name":"Marion Zinser","type":"Person","_key":"36666"} +{"label":"Maxine Barnett","version":23,"id":"60386","lastModified":"1301901764000","name":"Maxine Barnett","type":"Person","_key":"36667"} +{"label":"Fahnlohnee R. Harris","version":24,"id":"60387","lastModified":"1301901834000","name":"Fahnlohnee R. Harris","type":"Person","_key":"36668"} +{"label":"Ann Dalrymple","version":23,"id":"60389","lastModified":"1301901931000","name":"Ann Dalrymple","type":"Person","_key":"36669"} +{"label":"Trula M. Marcus","version":23,"id":"60390","lastModified":"1301901635000","name":"Trula M. Marcus","type":"Person","_key":"36670"} +{"label":"Jen Apgar","version":23,"id":"60394","lastModified":"1301901764000","name":"Jen Apgar","type":"Person","_key":"36671"} +{"label":"Thomas Uskali","version":23,"id":"60391","lastModified":"1301901635000","name":"Thomas Uskali","type":"Person","_key":"36672"} +{"label":"Jamie Lee Redmon","version":23,"id":"60395","lastModified":"1301901764000","name":"Jamie Lee Redmon","type":"Person","_key":"36673"} +{"label":"Forrest Landis","version":26,"id":"60393","lastModified":"1301901635000","name":"Forrest Landis","type":"Person","_key":"36674"} +{"label":"Tonya Staten","version":23,"id":"60392","lastModified":"1301901764000","name":"Tonya Staten","type":"Person","_key":"36675"} +{"label":"Christa Thorne","version":23,"id":"60398","lastModified":"1301901635000","name":"Christa Thorne","type":"Person","_key":"36676"} +{"label":"Ronald McCall","version":23,"id":"60396","lastModified":"1301901635000","name":"Ronald McCall","type":"Person","_key":"36677"} +{"label":"Jeryl Prescott","version":23,"id":"60397","lastModified":"1301901764000","name":"Jeryl Prescott","type":"Person","_key":"36678"} +{"label":"Shadow Man","description":"An intelligence operative discovers that no one is what they seem in the shadowy world of espionage.","id":"9914","runtime":95,"imdbId":"tt0448114","version":210,"lastModified":"1301904624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d7\/4bc92a1f017a3c57fe0110d7\/shadow-man-mid.jpg","genre":"Action","title":"Shadow Man","releaseDate":1157500800000,"language":"en","type":"Movie","_key":"36679"} +{"label":"Skye Bennett","version":30,"id":"60415","lastModified":"1301901107000","name":"Skye Bennett","type":"Person","_key":"36680"} +{"label":"Eva Pope","version":19,"id":"60412","lastModified":"1301901756000","name":"Eva Pope","type":"Person","_key":"36681"} +{"label":"Michael Elwyn","version":19,"id":"60414","lastModified":"1301901921000","name":"Michael Elwyn","type":"Person","_key":"36682"} +{"label":"Zoltan Butuc","version":22,"id":"54627","lastModified":"1301901921000","name":"Zoltan Butuc","type":"Person","_key":"36683"} +{"label":"Alex Ferns","version":19,"id":"60416","lastModified":"1301901921000","name":"Alex Ferns","type":"Person","_key":"36684"} +{"label":"Michael Fitzpatrick","version":19,"id":"60417","lastModified":"1301901921000","name":"Michael Fitzpatrick","type":"Person","_key":"36685"} +{"label":"Emanuel Parvu","version":21,"id":"60418","lastModified":"1301901921000","name":"Emanuel Parvu","type":"Person","_key":"36686"} +{"label":"Laura Grigoriu","version":19,"id":"60420","lastModified":"1301901921000","name":"Laura Grigoriu","type":"Person","_key":"36687"} +{"label":"Vince Leigh","version":20,"id":"60419","lastModified":"1301901994000","name":"Vince Leigh","type":"Person","_key":"36688"} +{"label":"Gabriel Spahiu","version":23,"id":"60422","lastModified":"1301901756000","name":"Gabriel Spahiu","type":"Person","_key":"36689"} +{"label":"Corina Toader","version":19,"id":"60421","lastModified":"1301901756000","name":"Corina Toader","type":"Person","_key":"36690"} +{"label":"Titus-Gabriel Patrascu","version":19,"id":"60423","lastModified":"1301901756000","name":"Titus-Gabriel Patrascu","type":"Person","_key":"36691"} +{"label":"Luminita Filimon","version":20,"id":"60424","lastModified":"1301901994000","name":"Luminita Filimon","type":"Person","_key":"36692"} +{"label":"Deepwater","description":"A drifter comes to the town of Deepwater and is seduced into a twisted game of deceit and murder.","id":"9915","runtime":93,"imdbId":"tt0383304","version":136,"lastModified":"1301904323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dc\/4bc92a1f017a3c57fe0110dc\/deepwater-mid.png","genre":"Mystery","title":"Deepwater","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"36693"} +{"label":"David S. Marfield","version":20,"id":"60425","lastModified":"1301902337000","name":"David S. Marfield","type":"Person","_key":"36694"} +{"label":"Jason Cerbone","version":21,"id":"60432","lastModified":"1301902388000","name":"Jason Cerbone","type":"Person","_key":"36695"} +{"label":"Valerie Murphy","version":20,"id":"60436","lastModified":"1301901840000","name":"Valerie Murphy","type":"Person","_key":"36696"} +{"label":"Ben Cardinal","version":22,"id":"60433","lastModified":"1301902202000","name":"Ben Cardinal","type":"Person","_key":"36697"} +{"label":"Pete Sepenuk","version":20,"id":"60437","lastModified":"1301901955000","name":"Pete Sepenuk","type":"Person","_key":"36698"} +{"label":"John Boncore","version":20,"id":"60435","lastModified":"1301902337000","name":"John Boncore","type":"Person","_key":"36699"} +{"label":"The Last Sin Eater","description":"In seeking her own redemption from the one man of whom she is most afraid, 10-year-old Cadi Forbes discovers a secret sin haunting her community of Welsh immigrants in 1850s Appalachia.","id":"9916","runtime":117,"imdbId":"tt0810928","version":168,"lastModified":"1301904763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e1\/4bc92a22017a3c57fe0110e1\/the-last-sin-eater-mid.jpg","genre":"Drama","title":"The Last Sin Eater","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"36700"} +{"label":"Michael Landon Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/031\/4bdaa455017a3c5d89000031\/michael-landon-jr-profile.jpg","version":28,"id":"60438","lastModified":"1301901456000","name":"Michael Landon Jr.","type":"Person","_key":"36701"} +{"label":"Soren Fulton","version":27,"id":"60459","lastModified":"1301901784000","name":"Soren Fulton","type":"Person","_key":"36702"} +{"label":"A.J. Buckley","version":29,"id":"60460","lastModified":"1301902337000","name":"A.J. Buckley","type":"Person","_key":"36703"} +{"label":"Stewart Finlay-McLennan","version":20,"id":"60461","lastModified":"1301902337000","name":"Stewart Finlay-McLennan","type":"Person","_key":"36704"} +{"label":"Liana Liberato","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/394\/4ce1844b5e73d60f71000394\/liana-liberato-profile.jpg","version":27,"birthday":"808869600000","id":"60458","birthplace":"Galveston, Texas, USA","lastModified":"1301901712000","name":"Liana Liberato","type":"Person","_key":"36705"} +{"label":"Elizabeth Lackey","version":21,"id":"34274","lastModified":"1301901955000","name":"Elizabeth Lackey","type":"Person","_key":"36706"} +{"label":"Thea Rose","version":20,"id":"60463","lastModified":"1301902180000","name":"Thea Rose","type":"Person","_key":"36707"} +{"label":"Gabrielle Fitzpatrick","version":29,"id":"60464","lastModified":"1301901412000","name":"Gabrielle Fitzpatrick","type":"Person","_key":"36708"} +{"label":"Molly Jepson","version":20,"id":"60465","lastModified":"1301902199000","name":"Molly Jepson","type":"Person","_key":"36709"} +{"label":"Stefania Barr","version":21,"id":"60468","lastModified":"1301901836000","name":"Stefania Barr","type":"Person","_key":"36710"} +{"label":"Parker Hadley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7cb\/4cd9acea7b9aa113ac0007cb\/parker-hadley-profile.jpg","version":41,"id":"60467","lastModified":"1301921699000","name":"Parker Hadley","type":"Person","_key":"36711"} +{"label":"Nick Praggastis","version":20,"id":"60466","lastModified":"1301902151000","name":"Nick Praggastis","type":"Person","_key":"36712"} +{"label":"Dee Macaluso","version":20,"id":"60469","lastModified":"1301902151000","name":"Dee Macaluso","type":"Person","_key":"36713"} +{"label":"Waist Deep","description":"An ex-convict (Tyrese) gets tangled up with a gang after his car is hijacked with his son inside.","id":"9917","runtime":97,"imdbId":"tt0456020","version":235,"lastModified":"1301904332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4bc92a25017a3c57fe0110ea\/waist-deep-mid.jpg","studio":"Rogue Pictures","genre":"Action","title":"Waist Deep","releaseDate":1151020800000,"language":"en","type":"Movie","_key":"36714"} +{"label":"Henry Hunter Hall","version":19,"id":"60482","lastModified":"1301902092000","name":"Henry Hunter Hall","type":"Person","_key":"36715"} +{"label":"Shawn Parr","version":19,"id":"60484","lastModified":"1301902092000","name":"Shawn Parr","type":"Person","_key":"36716"} +{"label":"Kimora Lee","version":19,"id":"60483","lastModified":"1301901729000","name":"Kimora Lee","type":"Person","_key":"36717"} +{"label":"Johnny C. Pruitt","version":19,"id":"60485","lastModified":"1301902092000","name":"Johnny C. Pruitt","type":"Person","_key":"36718"} +{"label":"Darris Love","version":22,"id":"60486","lastModified":"1301901880000","name":"Darris Love","type":"Person","_key":"36719"} +{"label":"Wil E. Young","version":20,"id":"60487","lastModified":"1301901813000","name":"Wil E. Young","type":"Person","_key":"36720"} +{"label":"Wade Allain-Marcus","version":19,"id":"60488","lastModified":"1301901880000","name":"Wade Allain-Marcus","type":"Person","_key":"36721"} +{"label":"Ray Bengston","version":19,"id":"60491","lastModified":"1301901729000","name":"Ray Bengston","type":"Person","_key":"36722"} +{"label":"Paul Terrell Clayton","version":20,"id":"60490","lastModified":"1301901880000","name":"Paul Terrell Clayton","type":"Person","_key":"36723"} +{"label":"Earl Minfield","version":19,"id":"60492","lastModified":"1301901729000","name":"Earl Minfield","type":"Person","_key":"36724"} +{"label":"DeWayne Turrentine Jr.","version":19,"id":"60489","lastModified":"1301901729000","name":"DeWayne Turrentine Jr.","type":"Person","_key":"36725"} +{"label":"Dagmar Stansova","version":19,"id":"60493","lastModified":"1301901880000","name":"Dagmar Stansova","type":"Person","_key":"36726"} +{"label":"Laura Miro","version":19,"id":"60494","lastModified":"1301901880000","name":"Laura Miro","type":"Person","_key":"36727"} +{"label":"Thommy Abate","version":17,"id":"60495","lastModified":"1301901900000","name":"Thommy Abate","type":"Person","_key":"36728"} +{"label":"Glory Road","description":"In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.","id":"9918","runtime":118,"imdbId":"tt0385726","trailer":"http:\/\/www.youtube.com\/watch?v=2323","version":201,"lastModified":"1301902291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c2\/4d952dec7b9aa119940027c2\/glory-road-mid.jpg","studio":"Walt Disney Studios Motion Pictures France","genre":"Drama","title":"Glory Road","releaseDate":1137110400000,"language":"en","type":"Movie","_key":"36729"} +{"label":"James Gartner","version":22,"id":"60496","lastModified":"1301901537000","name":"James Gartner","type":"Person","_key":"36730"} +{"label":"Sam Jones III","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b25\/4cf3d1d05e73d62387000b25\/sam-jones-iii-profile.jpg","version":29,"id":"55780","lastModified":"1301901707000","name":"Sam Jones III","type":"Person","_key":"36731"} +{"label":"Schin A.S. Kerr","version":22,"id":"60505","lastModified":"1301902092000","name":"Schin A.S. Kerr","type":"Person","_key":"36732"} +{"label":"Alphonso McAuley","version":23,"id":"60506","lastModified":"1301901614000","name":"Alphonso McAuley","type":"Person","_key":"36733"} +{"label":"Red West","version":27,"id":"60508","lastModified":"1301901848000","name":"Red West","type":"Person","_key":"36734"} +{"label":"Al Shearer","version":22,"id":"60507","lastModified":"1301902092000","name":"Al Shearer","type":"Person","_key":"36735"} +{"label":"Kip Weeks","version":22,"id":"60509","lastModified":"1301902092000","name":"Kip Weeks","type":"Person","_key":"36736"} +{"label":"James Olivard","version":22,"id":"60512","lastModified":"1301901729000","name":"James Olivard","type":"Person","_key":"36737"} +{"label":"Mitch Eakins","version":24,"id":"60510","lastModified":"1301901946000","name":"Mitch Eakins","type":"Person","_key":"36738"} +{"label":"Alejandro D. Hernandez","version":22,"id":"60511","lastModified":"1301902092000","name":"Alejandro D. Hernandez","type":"Person","_key":"36739"} +{"label":"How to Lose a Guy in 10 Days","description":"Benjamin Barry is an advertising executive and ladies' man who, to win a big campaign, bets that he can make a woman fall in love with him in 10 days. Andie Anderson covers the \"How To\" beat for \"Composure\" magazine and is assigned to write an article on \"How to Lose a Guy in 10 days.\" They meet in a bar shortly after the bet is made.","id":"9919","runtime":111,"imdbId":"tt0251127","version":322,"lastModified":"1301901848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daf\/4d40d4657b9aa15bbb002daf\/how-to-lose-a-guy-in-10-days-mid.jpg","genre":"Comedy","title":"How to Lose a Guy in 10 Days","releaseDate":1043625600000,"language":"en","tagline":"One of them is lying. So is the other.","type":"Movie","_key":"36740"} +{"label":"Ultraviolet","description":"A beautiful hemophage infected with a virus that gives her superhuman powers has to protect a boy in a futuristic world, who is thought to be carrying antigens that would destroy all hemophages.","id":"9920","runtime":88,"imdbId":"tt0370032","trailer":"http:\/\/www.youtube.com\/watch?v=1312","version":414,"lastModified":"1301901668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4bc92a30017a3c57fe011131\/ultraviolet-mid.jpg","genre":"Action","title":"Ultraviolet","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"36741"} +{"label":"Ida Martin","version":22,"id":"60527","lastModified":"1301901555000","name":"Ida Martin","type":"Person","_key":"36742"} +{"label":"Sebastien Andrieu","version":22,"id":"60526","lastModified":"1301901639000","name":"Sebastien Andrieu","type":"Person","_key":"36743"} +{"label":"Digger Mesch","version":22,"id":"60530","lastModified":"1301901555000","name":"Digger Mesch","type":"Person","_key":"36744"} +{"label":"David Collier","version":22,"id":"60528","lastModified":"1301901639000","name":"David Collier","type":"Person","_key":"36745"} +{"label":"Ricardo Mamood-Vega","version":22,"id":"60533","lastModified":"1301901487000","name":"Ricardo Mamood-Vega","type":"Person","_key":"36746"} +{"label":"Ryan Martin","version":22,"id":"60531","lastModified":"1301901639000","name":"Ryan Martin","type":"Person","_key":"36747"} +{"label":"Kieran O'Rorke","version":22,"id":"60529","lastModified":"1301901639000","name":"Kieran O'Rorke","type":"Person","_key":"36748"} +{"label":"Steven Calcote","version":22,"id":"60532","lastModified":"1301901639000","name":"Steven Calcote","type":"Person","_key":"36749"} +{"label":"Jennifer Caputo","version":22,"id":"60537","lastModified":"1301901639000","name":"Jennifer Caputo","type":"Person","_key":"36750"} +{"label":"Clay Cullen","version":22,"id":"60536","lastModified":"1301901487000","name":"Clay Cullen","type":"Person","_key":"36751"} +{"label":"Jack Murphy","version":22,"id":"60538","lastModified":"1301901639000","name":"Jack Murphy","type":"Person","_key":"36752"} +{"label":"Diego Swing","version":23,"id":"60539","lastModified":"1301901579000","name":"Diego Swing","type":"Person","_key":"36753"} +{"label":"Mike Smith","version":32,"id":"60535","lastModified":"1301901409000","name":"Mike Smith","type":"Person","_key":"36754"} +{"label":"Theodore Thomas","version":22,"id":"60540","lastModified":"1301901487000","name":"Theodore Thomas","type":"Person","_key":"36755"} +{"label":"Abraham Boyd","version":22,"id":"60541","lastModified":"1301901439000","name":"Abraham Boyd","type":"Person","_key":"36756"} +{"label":"Matthew Sturgess","version":22,"id":"60542","lastModified":"1301901555000","name":"Matthew Sturgess","type":"Person","_key":"36757"} +{"label":"Shadowboxer","description":"Mikey and Rose are professional assassins. They are also lovers, and once upon a time Rose also knew Mikey's father. During an elaborate hit job for a malicious gangster, Rose fails to kill the main target, the gangster's pregnant girlfriend. Instead, she delivers her baby and convinces Mikey to help her protect them both. As Rose weakens from cancer, Mikey becomes breadwinner for this unusual family. But tranquility will not last.","id":"9921","runtime":93,"imdbId":"tt0396857","version":204,"lastModified":"1301903611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/149\/4bc92a32017a3c57fe011149\/shadowboxer-mid.jpg","genre":"Crime","title":"Shadowboxer","releaseDate":1152835200000,"language":"en","tagline":"Feeling Protected Is Very Seductive","type":"Movie","_key":"36758"} +{"label":"Macy Gray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4c9c77897b9aa1430e000098\/macy-gray-profile.jpg","version":36,"birthday":"-73270800000","id":"60560","lastModified":"1301901129000","name":"Macy Gray","type":"Person","_key":"36759"} +{"label":"Tom Pasch","version":22,"id":"60562","lastModified":"1301902270000","name":"Tom Pasch","type":"Person","_key":"36760"} +{"label":"Mo'Nique","version":52,"birthday":"-64976400000","id":"60561","birthplace":"Woodlawn","lastModified":"1301901169000","name":"Mo'Nique","type":"Person","_key":"36761"} +{"label":"Ryan Eric Speise","version":22,"id":"60563","lastModified":"1301902270000","name":"Ryan Eric Speise","type":"Person","_key":"36762"} +{"label":"Matt Higgins","version":22,"id":"60564","lastModified":"1301902270000","name":"Matt Higgins","type":"Person","_key":"36763"} +{"label":"John Panzarella","version":22,"id":"60569","lastModified":"1301902270000","name":"John Panzarella","type":"Person","_key":"36764"} +{"label":"Marvina Vinique","version":22,"id":"60567","lastModified":"1301902270000","name":"Marvina Vinique","type":"Person","_key":"36765"} +{"label":"Marilyn Yoblick","version":22,"id":"60566","lastModified":"1301902270000","name":"Marilyn Yoblick","type":"Person","_key":"36766"} +{"label":"Cullen Flynn Clancy","version":22,"id":"60565","lastModified":"1301902270000","name":"Cullen Flynn Clancy","type":"Person","_key":"36767"} +{"label":"Shaun Brewington","version":22,"id":"60570","lastModified":"1301902270000","name":"Shaun Brewington","type":"Person","_key":"36768"} +{"label":"Darnell Williams","version":22,"id":"60568","lastModified":"1301902270000","name":"Darnell Williams","type":"Person","_key":"36769"} +{"label":"Noel Murano","version":22,"id":"60571","lastModified":"1301902270000","name":"Noel Murano","type":"Person","_key":"36770"} +{"label":"Angel Oquendo","version":22,"id":"60573","lastModified":"1301902270000","name":"Angel Oquendo","type":"Person","_key":"36771"} +{"label":"Tomy Dunster","version":22,"id":"60572","lastModified":"1301902270000","name":"Tomy Dunster","type":"Person","_key":"36772"} +{"label":"Jack Krizmanich","version":22,"id":"60574","lastModified":"1301902270000","name":"Jack Krizmanich","type":"Person","_key":"36773"} +{"label":"The Postman","description":"It is 2013. War has crippled the Earth. Technology has been erased. Our only hope is an unlikely hero. What begins as a con game becomes one man's quest to rebuild civilization by resuming postal service.","id":"9922","runtime":177,"imdbId":"tt0119925","trailer":"http:\/\/www.youtube.com\/watch?v=1AiKOhAEbAU","version":185,"lastModified":"1301902573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d69\/4be71894017a3c35bb000d69\/the-postman-mid.jpg","genre":"Action","title":"The Postman","releaseDate":881884800000,"language":"en","tagline":"The year is 2013. One man walked in off the horizon and hope came with him.","type":"Movie","_key":"36774"} +{"label":"Tom Petty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4bdd74bd017a3c20cf0001df\/tom-petty-profile.jpg","version":31,"id":"60642","lastModified":"1301904129000","name":"Tom Petty","type":"Person","_key":"36775"} +{"label":"Domino","description":"A recounting of Domino Harvey's life story. The daughter of actor Laurence Harvey turned away from her career as a Ford model to become a bounty hunter.","id":"9923","runtime":127,"imdbId":"tt0421054","trailer":"http:\/\/www.youtube.com\/watch?v=1486","version":198,"lastModified":"1301907491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/170\/4bc92a38017a3c57fe011170\/domino-mid.jpg","genre":"Action","title":"Domino","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"36776"} +{"label":"Riz Abbasi","version":22,"id":"60581","lastModified":"1301901765000","name":"Riz Abbasi","type":"Person","_key":"36777"} +{"label":"Brian Austin Green","version":30,"id":"19148","lastModified":"1301901272000","name":"Brian Austin Green","type":"Person","_key":"36778"} +{"label":"Ian Ziering","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29a\/4d059e2c5e73d621a400329a\/ian-ziering-profile.jpg","version":25,"id":"19146","lastModified":"1301901207000","name":"Ian Ziering","type":"Person","_key":"36779"} +{"label":"The Hard Corps","description":"Jean-Claude will be playing a Combat Vet who's just spent the last 3 years fighting in Afghanistan and Iraq...","id":"9924","runtime":110,"imdbId":"tt0462329","version":172,"lastModified":"1301903462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/181\/4bc92a3c017a3c57fe011181\/the-hard-corps-mid.jpg","studio":"Motion Picture Corporation of America","genre":"Action","title":"The Hard Corps","releaseDate":1155600000000,"language":"en","type":"Movie","_key":"36780"} +{"label":"Ron Bottitta","version":21,"id":"60602","lastModified":"1301902269000","name":"Ron Bottitta","type":"Person","_key":"36781"} +{"label":"Viv Leacock","version":23,"id":"60601","lastModified":"1301901537000","name":"Viv Leacock","type":"Person","_key":"36782"} +{"label":"Dexter Bell","version":22,"id":"60605","lastModified":"1301901880000","name":"Dexter Bell","type":"Person","_key":"36783"} +{"label":"Mark Griffin","version":25,"id":"60603","lastModified":"1301902325000","name":"Mark Griffin","type":"Person","_key":"36784"} +{"label":"Julian Christopher","version":22,"id":"60606","lastModified":"1301902300000","name":"Julian Christopher","type":"Person","_key":"36785"} +{"label":"Aaron Au","version":25,"id":"60604","lastModified":"1301902125000","name":"Aaron Au","type":"Person","_key":"36786"} +{"label":"Sharon Amos","version":21,"id":"60608","lastModified":"1301901880000","name":"Sharon Amos","type":"Person","_key":"36787"} +{"label":"Nneka Croal","version":21,"id":"60607","lastModified":"1301902269000","name":"Nneka Croal","type":"Person","_key":"36788"} +{"label":"Brandi Alexander","version":21,"id":"60611","lastModified":"1301902269000","name":"Brandi Alexander","type":"Person","_key":"36789"} +{"label":"Sean Allan","version":29,"id":"60612","lastModified":"1302070360000","name":"Sean Allan","type":"Person","_key":"36790"} +{"label":"Doron Bell","version":24,"id":"60609","lastModified":"1301902092000","name":"Doron Bell","type":"Person","_key":"36791"} +{"label":"Jonathan Mubanda","version":21,"id":"60610","lastModified":"1301902092000","name":"Jonathan Mubanda","type":"Person","_key":"36792"} +{"label":"Brenda Crichlow","version":21,"id":"60613","lastModified":"1301902092000","name":"Brenda Crichlow","type":"Person","_key":"36793"} +{"label":"Chad Riley","version":21,"id":"60614","lastModified":"1301902269000","name":"Chad Riley","type":"Person","_key":"36794"} +{"label":"Funny Money","description":"Henry Perkins, a mild-mannered accountant, accidentally trades briefcases with another man, to find out that there's five million dollars inside...","id":"9925","runtime":98,"imdbId":"tt0244521","version":166,"lastModified":"1301906072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18e\/4bc92a3d017a3c57fe01118e\/funny-money-mid.jpg","genre":"Comedy","title":"Funny Money","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"36795"} +{"label":"Leslie Greif","version":23,"id":"51575","lastModified":"1301901733000","name":"Leslie Greif","type":"Person","_key":"36796"} +{"label":"Kevin Sussman","version":49,"id":"60633","lastModified":"1302011632000","name":"Kevin Sussman","type":"Person","_key":"36797"} +{"label":"Rebecca Wisocky","version":19,"id":"60632","lastModified":"1301901880000","name":"Rebecca Wisocky","type":"Person","_key":"36798"} +{"label":"Marty Belafsky","version":21,"id":"60634","lastModified":"1301901984000","name":"Marty Belafsky","type":"Person","_key":"36799"} +{"label":"Marco Assante","version":19,"id":"60635","lastModified":"1301901880000","name":"Marco Assante","type":"Person","_key":"36800"} +{"label":"Matt De Matt","version":19,"id":"60638","lastModified":"1301902269000","name":"Matt De Matt","type":"Person","_key":"36801"} +{"label":"Sorin Misiriantu","version":19,"id":"60637","lastModified":"1301901880000","name":"Sorin Misiriantu","type":"Person","_key":"36802"} +{"label":"Joanne Rubino","version":19,"id":"60639","lastModified":"1301901880000","name":"Joanne Rubino","type":"Person","_key":"36803"} +{"label":"Harry Basil","version":23,"id":"60616","lastModified":"1301901943000","name":"Harry Basil","type":"Person","_key":"36804"} +{"label":"BloodRayne","description":"In eighteenth century Romania, Rayne, a dhampir (half-human, half-vampire), prone to fits of blind blood rage but saddled with a compunction for humans, strives to avenge her mother's rape by her father, Kagan, King of Vampires. Two vampire hunters, Sebastian and Vladimir, from the Brimstone Society persuade her to join their cause.","id":"9926","runtime":95,"imdbId":"tt0383222","trailer":"http:\/\/www.youtube.com\/watch?v=F_dmvG9QM8U","version":234,"lastModified":"1301902323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4cd492275e73d676d3000071\/bloodrayne-mid.jpg","genre":"Action","title":"BloodRayne","releaseDate":1130025600000,"language":"en","type":"Movie","_key":"36805"} +{"label":"Will Sanderson","version":31,"id":"60649","lastModified":"1301901572000","name":"Will Sanderson","type":"Person","_key":"36806"} +{"label":"Darren Shahlavi","version":25,"id":"60652","lastModified":"1301901880000","name":"Darren Shahlavi","type":"Person","_key":"36807"} +{"label":"Esteban Cueto","version":24,"id":"60653","lastModified":"1301901699000","name":"Esteban Cueto","type":"Person","_key":"36808"} +{"label":"Madalina Constantin","version":21,"id":"60654","lastModified":"1301902092000","name":"Madalina Constantin","type":"Person","_key":"36809"} +{"label":"Teona Galgotiu","version":21,"id":"60658","lastModified":"1301901880000","name":"Teona Galgotiu","type":"Person","_key":"36810"} +{"label":"Daniela Nane","version":21,"id":"60655","lastModified":"1301902269000","name":"Daniela Nane","type":"Person","_key":"36811"} +{"label":"T.J. Storm","version":22,"id":"60656","lastModified":"1301901537000","name":"T.J. Storm","type":"Person","_key":"36812"} +{"label":"Constantin Barbulescu","version":22,"id":"60657","lastModified":"1301902092000","name":"Constantin Barbulescu","type":"Person","_key":"36813"} +{"label":"Razvan Popa","version":21,"id":"60659","lastModified":"1301901614000","name":"Razvan Popa","type":"Person","_key":"36814"} +{"label":"Laura Burlarda","version":21,"id":"60660","lastModified":"1301902092000","name":"Laura Burlarda","type":"Person","_key":"36815"} +{"label":"The Ringer","description":"A young guy's only option to erase a really bad debt is to rig the Special Olympics by posing as a contestant.","id":"9927","runtime":94,"imdbId":"tt0267891","version":214,"lastModified":"1301903887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4c34e2475e73d66df1000024\/the-ringer-mid.jpg","genre":"Comedy","title":"The Ringer","releaseDate":1135296000000,"language":"en","type":"Movie","_key":"36816"} +{"label":"Barry W. Blaustein","version":44,"id":"57328","lastModified":"1301901956000","name":"Barry W. Blaustein","type":"Person","_key":"36817"} +{"label":"Luis Avalos","version":19,"id":"60671","lastModified":"1301901925000","name":"Luis Avalos","type":"Person","_key":"36818"} +{"label":"Edward Barbanell","version":20,"id":"60669","lastModified":"1301902182000","name":"Edward Barbanell","type":"Person","_key":"36819"} +{"label":"Bill Chott","version":19,"id":"60668","lastModified":"1301901925000","name":"Bill Chott","type":"Person","_key":"36820"} +{"label":"Mike Cerrone","version":24,"id":"21800","lastModified":"1301901927000","name":"Mike Cerrone","type":"Person","_key":"36821"} +{"label":"Leonard Flowers","version":20,"id":"60670","lastModified":"1301901994000","name":"Leonard Flowers","type":"Person","_key":"36822"} +{"label":"Janna Ambort","version":19,"id":"60675","lastModified":"1301902122000","name":"Janna Ambort","type":"Person","_key":"36823"} +{"label":"Steve Levy","version":19,"id":"60673","lastModified":"1301902122000","name":"Steve Levy","type":"Person","_key":"36824"} +{"label":"Zen Gesner","version":20,"id":"60672","lastModified":"1301901997000","name":"Zen Gesner","type":"Person","_key":"36825"} +{"label":"Alcides Dias","version":19,"id":"60674","lastModified":"1301902122000","name":"Alcides Dias","type":"Person","_key":"36826"} +{"label":"Bo Kane","version":19,"id":"60676","lastModified":"1301901925000","name":"Bo Kane","type":"Person","_key":"36827"} +{"label":"Brad Leland","version":20,"id":"60677","lastModified":"1301901761000","name":"Brad Leland","type":"Person","_key":"36828"} +{"label":"Robots","description":"Rodney Copperbottom is a young robot inventor who dreams of making the world a better place \u2026 until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams -- like those of his friends, including motor-mouthed Fender -- are in danger of becoming obsolete.","id":"9928","runtime":91,"imdbId":"tt0358082","trailer":"http:\/\/www.youtube.com\/watch?v=5gbt9BLrOIQ","version":354,"lastModified":"1301901664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bc92a43017a3c57fe0111c0\/robots-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Robots","releaseDate":1111363200000,"language":"en","tagline":"You can shine no matter what you're made of.","type":"Movie","_key":"36829"} +{"label":"Ast\u00e9rix et Cl\u00e9op\u00e2tre","description":"Popular animated hero Asterix and his faithful sidekick Obelix travel to ancient Egypt to help Cleopatra build a new summer home. Cleopatra and Julius Caesar have made a bet, with Caesar wagering the project cannot be completed in a few weeks time. With the help of a magic potion, Asterix comes to the rescue of the Queen of the Nile as Caesar and an angry architect plot against them.","id":"9929","runtime":69,"imdbId":"tt0062687","version":69,"lastModified":"1301904134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4bc92a47017a3c57fe0111d7\/asterix-et-cleopatre-mid.jpg","genre":"Animation","title":"Ast\u00e9rix et Cl\u00e9op\u00e2tre","releaseDate":-32659200000,"language":"en","type":"Movie","_key":"36830"} +{"label":"Lee Payant","version":23,"id":"60680","lastModified":"1301902387000","name":"Lee Payant","type":"Person","_key":"36831"} +{"label":"Micheline Dax","version":30,"id":"60688","lastModified":"1301902153000","name":"Micheline Dax","type":"Person","_key":"36832"} +{"label":"Legal Eagles","description":"No overview found.","id":"9930","runtime":116,"imdbId":"tt0091396","version":143,"lastModified":"1301904764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/211\/4bc92a4f017a3c57fe011211\/legal-eagles-mid.jpg","genre":"Comedy","title":"Legal Eagles","releaseDate":519436800000,"language":"en","type":"Movie","_key":"36833"} +{"label":"Analyze That","description":"The mafia's Paul Vitti is back in prison and will need some serious counseling when he gets out. Naturally, he returns to his analyst Dr. Ben Sobel for help and finds that Sobel needs some serious help himself as he has inherited the family practice, as well as an excess stock of stress.","id":"9932","runtime":96,"imdbId":"tt0289848","version":227,"lastModified":"1301906213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/227\/4bc92a51017a3c57fe011227\/analyze-that-mid.jpg","genre":"Comedy","title":"Analyze That","releaseDate":1039132800000,"language":"en","type":"Movie","_key":"36834"} +{"label":"Deadly Obsession","description":"No overview found.","id":"9933","runtime":0,"version":42,"lastModified":"1300978906000","title":"Deadly Obsession","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"36835"} +{"label":"Shannon Richardson","version":16,"id":"60689","lastModified":"1301902181000","name":"Shannon Richardson","type":"Person","_key":"36836"} +{"label":"Hallettsville","description":"Something awaits Tyler Jensen and his friends in the Hallettsville house. When Tyler's lifelong friends start dying, he must figure out a way to save himself, his girlfriend and the rest of the crew before the demons come.","id":"9935","runtime":0,"imdbId":"tt0760169","version":90,"lastModified":"1301906758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4c3c06f87b9aa1224d000054\/hallettsville-mid.jpg","genre":"Thriller","title":"Hallettsville","releaseDate":1236211200000,"language":"en","type":"Movie","_key":"36837"} +{"label":"Andrew Pozza","version":20,"id":"60693","lastModified":"1301902381000","name":"Andrew Pozza","type":"Person","_key":"36838"} +{"label":"El Chupacabra","description":"After his capture in the wilderness, the legendary, bloodthirsty creature 'Chupacabra' escapes into the city creating mayhem and panic. As they pursue the deadly beast, an animal control officer and scientist realize that a vigilante with his own suspicious motive is also tracking the elusive killer for a mysterious research facility run by Dr. Goodspeed...","id":"9937","runtime":89,"imdbId":"tt0375731","version":84,"lastModified":"1301018881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4c3f05ad5e73d606d70000a8\/el-chupacabra-mid.jpg","title":"El Chupacabra","releaseDate":1066608000000,"language":"en","tagline":"Real terror is here!!","type":"Movie","_key":"36839"} +{"label":"Eric Alegria","version":20,"id":"124789","lastModified":"1301902532000","name":"Eric Alegria","type":"Person","_key":"36840"} +{"label":"Layton Matthews","version":18,"id":"91683","lastModified":"1301901993000","name":"Layton Matthews","type":"Person","_key":"36841"} +{"label":"Jerry Rodriguez","version":20,"id":"124790","lastModified":"1301902202000","name":"Jerry Rodriguez","type":"Person","_key":"36842"} +{"label":"Calvi Pabon","version":20,"id":"124791","lastModified":"1301902544000","name":"Calvi Pabon","type":"Person","_key":"36843"} +{"label":"Michael Aranda","version":18,"id":"100143","lastModified":"1301902546000","name":"Michael Aranda","type":"Person","_key":"36844"} +{"label":"Victor L\u00f3pez","version":18,"id":"124792","lastModified":"1301902532000","name":"Victor L\u00f3pez","type":"Person","_key":"36845"} +{"label":"Paul Wynne","version":22,"id":"124787","lastModified":"1301902535000","name":"Paul Wynne","type":"Person","_key":"36846"} +{"label":"Brennon Jones","version":22,"id":"60695","lastModified":"1301902186000","name":"Brennon Jones","type":"Person","_key":"36847"} +{"label":"Raptor","description":"No overview found.","id":"9938","runtime":81,"imdbId":"tt0292634","version":93,"lastModified":"1301416878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22c\/4bc92a54017a3c57fe01122c\/raptor-mid.jpg","genre":"Horror","title":"Raptor","releaseDate":1005004800000,"language":"en","type":"Movie","_key":"36848"} +{"label":"Tim Abell","version":30,"id":"99235","lastModified":"1301901350000","name":"Tim Abell","type":"Person","_key":"36849"} +{"label":"Lorissa McComas","version":24,"id":"98130","lastModified":"1301902151000","name":"Lorissa McComas","type":"Person","_key":"36850"} +{"label":"Grant Cramer","version":29,"id":"80245","lastModified":"1301901581000","name":"Grant Cramer","type":"Person","_key":"36851"} +{"label":"Teresa DePriest","version":17,"id":"102677","lastModified":"1301901674000","name":"Teresa DePriest","type":"Person","_key":"36852"} +{"label":"Rod McCary","version":25,"id":"101032","lastModified":"1301902018000","name":"Rod McCary","type":"Person","_key":"36853"} +{"label":"Richard Gabai","version":51,"id":"97864","lastModified":"1301901649000","name":"Richard Gabai","type":"Person","_key":"36854"} +{"label":"Lenny Juliano","version":30,"id":"98137","lastModified":"1301901510000","name":"Lenny Juliano","type":"Person","_key":"36855"} +{"label":"The Chatroom","description":"No overview found.","id":"9939","runtime":0,"imdbId":"tt0306877","version":50,"lastModified":"1300978907000","title":"The Chatroom","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"36856"} +{"label":"Cheerleader Massacre","description":"Five high school cheerleaders, their coach and a couple of adolescent sex-crazed guys travel to a cabin in the woods for a weekend getaway only to be killed off one by one by an unseen maniac.","id":"9940","runtime":85,"imdbId":"tt0328945","version":261,"lastModified":"1301907307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4bc92a54017a3c57fe011231\/cheerleader-massacre-mid.jpg","genre":"Horror","title":"Cheerleader Massacre","releaseDate":1048550400000,"language":"en","type":"Movie","_key":"36857"} +{"label":"Tamie Sheffield","version":19,"id":"98158","lastModified":"1301902366000","name":"Tamie Sheffield","type":"Person","_key":"36858"} +{"label":"Charity Rahmer","version":18,"id":"99733","lastModified":"1301902366000","name":"Charity Rahmer","type":"Person","_key":"36859"} +{"label":"Erin Byron","version":17,"id":"101177","lastModified":"1301903043000","name":"Erin Byron","type":"Person","_key":"36860"} +{"label":"April Flowers","version":18,"id":"101178","lastModified":"1301903050000","name":"April Flowers","type":"Person","_key":"36861"} +{"label":"Julie Corgill","version":18,"id":"101179","lastModified":"1301902374000","name":"Julie Corgill","type":"Person","_key":"36862"} +{"label":"Julie K. Smith","version":27,"id":"98133","lastModified":"1301902366000","name":"Julie K. Smith","type":"Person","_key":"36863"} +{"label":"Toni Naples","version":27,"id":"98149","lastModified":"1301902366000","name":"Toni Naples","type":"Person","_key":"36864"} +{"label":"Down and Out in Beverly Hills","description":"Beverly Hills couple Barbara and Dave Whiteman are very rich but not happy Dave is a hard working business man, his wife is only interested in yoga, aerobics and other meditation classes, and he sleeps with the house maid. Their teenage son is confused about his sexuality and their daughter is suffering from eating disorders. While they are celebrating thanksgiving having plenty of food, street tramp Jerry is hungry, homeless, sleeping rough and has lost his dog. Jerry decides to end his life by","id":"9941","runtime":103,"imdbId":"tt0090966","version":113,"lastModified":"1301903066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23a\/4bc92a55017a3c57fe01123a\/down-and-out-in-beverly-hills-mid.jpg","genre":"Comedy","title":"Down and Out in Beverly Hills","releaseDate":507513600000,"language":"en","type":"Movie","_key":"36865"} +{"label":"Tracy Nelson","version":23,"id":"60698","lastModified":"1301901991000","name":"Tracy Nelson","type":"Person","_key":"36866"} +{"label":"Major League","description":"When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate -- but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed!","id":"9942","runtime":107,"imdbId":"tt0097815","trailer":"http:\/\/www.youtube.com\/watch?v=K_ILz9bC-VU","version":182,"lastModified":"1301901698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4c1bfadb5e73d6793b0001f4\/major-league-mid.jpg","genre":"Comedy","title":"Major League","releaseDate":607910400000,"language":"en","tagline":"A comedy with bats and balls.","type":"Movie","_key":"36867"} +{"label":"Margaret Whitton","version":37,"id":"60700","lastModified":"1301901574000","name":"Margaret Whitton","type":"Person","_key":"36868"} +{"label":"Stacy Carroll","version":17,"id":"147485","lastModified":"1301903091000","name":"Stacy Carroll","type":"Person","_key":"36869"} +{"label":"Bob Uecker","version":18,"id":"147486","lastModified":"1301902722000","name":"Bob Uecker","type":"Person","_key":"36870"} +{"label":"Peter Vuckovich","version":17,"id":"147487","lastModified":"1301903092000","name":"Peter Vuckovich","type":"Person","_key":"36871"} +{"label":"Das merkw\u00fcrdige Verhalten geschlechtsreifer Gro\u00dfst\u00e4dter zur Paarungszeit","description":"No overview found.","id":"9943","runtime":89,"imdbId":"tt0157990","version":57,"lastModified":"1301903726000","genre":"Comedy","title":"Das merkw\u00fcrdige Verhalten geschlechtsreifer Gro\u00dfst\u00e4dter zur Paarungszeit","releaseDate":904176000000,"language":"en","type":"Movie","_key":"36872"} +{"label":"The Pelican Brief","description":"Two Supreme Court Justices have been killed. Now a college professor, who clerked for one of the two men, who's also having an affair with one of his students, is given a brief by her, that states who probably, wanted to see these two men dead. He then gives it to one of his friends, who works for the FBI...","id":"9944","runtime":137,"imdbId":"tt0107798","version":190,"lastModified":"1301902555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe7\/4d4335f57b9aa15bbb004fe7\/the-pelican-brief-mid.jpg","genre":"Drama","title":"The Pelican Brief","releaseDate":756086400000,"language":"en","tagline":"Two Supreme Court Justices have been assassinated. One lone law student has stumbled upon the truth. An investigative journalist wants her story. Everybody else wants her dead.","type":"Movie","_key":"36873"} +{"label":"Vampires","description":"The church has long known that vampires exist. However, it is discovered that a group of vampires are searching for a powerful doom for mankind. The Vatican then secretly enlists a team of vampire-hunters, led by Jack Crow, to hunt down and destroy the vampires before they find the crucifix","id":"9945","runtime":108,"imdbId":"tt0120877","version":215,"lastModified":"1301902850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04d\/4c1877907b9aa10d2b00004d\/john-carpenter-s-vampires-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Vampires","releaseDate":892598400000,"language":"en","type":"Movie","_key":"36874"} +{"label":"Thomas Ian Griffith","version":27,"id":"60705","lastModified":"1301901347000","name":"Thomas Ian Griffith","type":"Person","_key":"36875"} +{"label":"End of Days","description":"On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an athiest called Jericho Cane.","id":"9946","runtime":121,"imdbId":"tt0146675","trailer":"http:\/\/www.youtube.com\/watch?v=SzkwtbyiaME","version":209,"lastModified":"1301901732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1db\/4c7715a45e73d604140001db\/end-of-days-mid.jpg","studio":"Beacon Communications","genre":"Action","title":"End of Days","releaseDate":942710400000,"language":"en","tagline":"Prepare for the end.","type":"Movie","_key":"36876"} +{"label":"Elektra","description":"Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.","id":"9947","runtime":97,"imdbId":"tt0357277","trailer":"http:\/\/www.youtube.com\/watch?v=Zz1yQ_i4M5c","homepage":"http:\/\/marvel.com\/movies\/daredevil.elektra","version":260,"lastModified":"1301966673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28b\/4bc92a5f017a3c57fe01128b\/elektra-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Elektra","releaseDate":1105660800000,"language":"en","tagline":"Looks can kill","type":"Movie","_key":"36877"} +{"label":"Will Yun Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32c\/4d8a34fd7b9aa13ae700032c\/will-yun-lee-profile.jpg","version":31,"id":"10884","lastModified":"1301901176000","name":"Will Yun Lee","type":"Person","_key":"36878"} +{"label":"Kirsten Prout","version":53,"id":"60715","lastModified":"1301901132000","name":"Kirsten Prout","type":"Person","_key":"36879"} +{"label":"Edson T. Ribeiro","version":22,"id":"60718","lastModified":"1301901551000","name":"Edson T. Ribeiro","type":"Person","_key":"36880"} +{"label":"Chris Ackerman","version":22,"id":"60717","lastModified":"1301902303000","name":"Chris Ackerman","type":"Person","_key":"36881"} +{"label":"Hiro Kanagawa","version":29,"id":"60719","lastModified":"1301901764000","name":"Hiro Kanagawa","type":"Person","_key":"36882"} +{"label":"Laura Ward","version":22,"id":"60720","lastModified":"1301902303000","name":"Laura Ward","type":"Person","_key":"36883"} +{"label":"Ian Tracey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16f\/4ceeaeb75e73d6531800016f\/ian-tracey-profile.jpg","version":30,"id":"25386","lastModified":"1301902047000","name":"Ian Tracey","type":"Person","_key":"36884"} +{"label":"Kevan Ohtsji","version":27,"id":"60723","lastModified":"1301901764000","name":"Kevan Ohtsji","type":"Person","_key":"36885"} +{"label":"Kurt Max Runte","version":26,"id":"60721","lastModified":"1301904112000","name":"Kurt Max Runte","type":"Person","_key":"36886"} +{"label":"Jana Mitsoula","version":22,"id":"60724","lastModified":"1301902303000","name":"Jana Mitsoula","type":"Person","_key":"36887"} +{"label":"The Fox and the Hound 2","description":"Best friends Tod, a fox kit, (Jonah Bobo) and Copper, a hound puppy, (Harrison Fahn) visit a country fair when they see a band of dogs called \"The Singin' Strays\". The band has five members: Dixie (Reba McEntire), Cash (Patrick Swayze), Granny Rose (Vicki Lawrence), and twin brothers Waylon and Floyd (both Jim Cummings). It is important that they perform well because a talent scout is visiting.","id":"9948","runtime":69,"imdbId":"tt0465997","version":230,"lastModified":"1301902979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc92a64017a3c57fe0112a2\/the-fox-and-the-hound-2-mid.jpg","genre":"Animation","title":"The Fox and the Hound 2","releaseDate":1162857600000,"language":"en","type":"Movie","_key":"36888"} +{"label":"Jim Kammerud","version":28,"id":"60725","lastModified":"1301901376000","name":"Jim Kammerud","type":"Person","_key":"36889"} +{"label":"Vicki Lawrence","version":23,"id":"60737","lastModified":"1301901880000","name":"Vicki Lawrence","type":"Person","_key":"36890"} +{"label":"Hannah Farr","version":21,"id":"60735","lastModified":"1301901729000","name":"Hannah Farr","type":"Person","_key":"36891"} +{"label":"Harrison Fahn","version":21,"id":"60734","lastModified":"1301901729000","name":"Harrison Fahn","type":"Person","_key":"36892"} +{"label":"Jeff Foxworthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d8f\/4c0f2805017a3c7e8f000d8f\/jeff-foxworthy-profile.jpg","version":40,"id":"60736","lastModified":"1301901671000","name":"Jeff Foxworthy","type":"Person","_key":"36893"} +{"label":"Krista Swan","version":25,"id":"60740","lastModified":"1301901537000","name":"Krista Swan","type":"Person","_key":"36894"} +{"label":"April Winchell","version":24,"id":"60741","lastModified":"1301901880000","name":"April Winchell","type":"Person","_key":"36895"} +{"label":"Haunted Highway","description":"An American photographer (Gamble) has an affair with a mysterious woman (Yoshikawa), which leads him into a confrontation with the occult.","id":"9949","runtime":84,"imdbId":"tt0451033","version":307,"lastModified":"1301904443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/574\/4be15ec1017a3c35b9000574\/haunted-highway-mid.jpg","genre":"Horror","title":"Haunted Highway","releaseDate":1165017600000,"language":"en","type":"Movie","_key":"36896"} +{"label":"Junichi Suzuki","version":21,"id":"60744","lastModified":"1301901856000","name":"Junichi Suzuki","type":"Person","_key":"36897"} +{"label":"Rand Gamble","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55b\/4be15f78017a3c35bf00055b\/rand-gamble-profile.jpg","version":21,"id":"60762","lastModified":"1301902178000","name":"Rand Gamble","type":"Person","_key":"36898"} +{"label":"Hinano Yoshikawa","version":19,"id":"60763","lastModified":"1301902092000","name":"Hinano Yoshikawa","type":"Person","_key":"36899"} +{"label":"Laura Putney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/556\/4be15fd8017a3c35b7000556\/laura-putney-profile.jpg","version":21,"id":"60764","lastModified":"1301902184000","name":"Laura Putney","type":"Person","_key":"36900"} +{"label":"Charles Emmett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/560\/4be16072017a3c35bf000560\/charles-emmett-profile.jpg","version":21,"id":"60767","lastModified":"1301902182000","name":"Charles Emmett","type":"Person","_key":"36901"} +{"label":"Adrian N. Roberts","version":19,"id":"60766","lastModified":"1301902269000","name":"Adrian N. Roberts","type":"Person","_key":"36902"} +{"label":"Adrian Roberts","version":20,"id":"60765","lastModified":"1301901597000","name":"Adrian Roberts","type":"Person","_key":"36903"} +{"label":"Tiffany Goltz","version":19,"id":"60769","lastModified":"1301901614000","name":"Tiffany Goltz","type":"Person","_key":"36904"} +{"label":"Dan Holmes","version":19,"id":"60768","lastModified":"1301902269000","name":"Dan Holmes","type":"Person","_key":"36905"} +{"label":"Shawn Forry","version":19,"id":"60772","lastModified":"1301902269000","name":"Shawn Forry","type":"Person","_key":"36906"} +{"label":"Peter Andre","version":19,"id":"60770","lastModified":"1301902269000","name":"Peter Andre","type":"Person","_key":"36907"} +{"label":"Alison Ward","version":19,"id":"60771","lastModified":"1301902269000","name":"Alison Ward","type":"Person","_key":"36908"} +{"label":"Ko Mori","version":19,"id":"60773","lastModified":"1301902092000","name":"Ko Mori","type":"Person","_key":"36909"} +{"label":"Kenneth Ibrahim","version":19,"id":"60774","lastModified":"1301901614000","name":"Kenneth Ibrahim","type":"Person","_key":"36910"} +{"label":"John Hartnell","version":19,"id":"60776","lastModified":"1301901614000","name":"John Hartnell","type":"Person","_key":"36911"} +{"label":"Naoko Ihara Witmer","version":19,"id":"60778","lastModified":"1301901614000","name":"Naoko Ihara Witmer","type":"Person","_key":"36912"} +{"label":"Bruce Elkind","version":19,"id":"60777","lastModified":"1301902269000","name":"Bruce Elkind","type":"Person","_key":"36913"} +{"label":"Elaine Loh","version":24,"id":"60779","lastModified":"1301901765000","name":"Elaine Loh","type":"Person","_key":"36914"} +{"label":"Rumi Sakakibara","version":20,"id":"60749","lastModified":"1301901614000","name":"Rumi Sakakibara","type":"Person","_key":"36915"} +{"label":"Find Me Guilty","description":"Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.","id":"9950","runtime":125,"imdbId":"tt0419749","trailer":"http:\/\/www.youtube.com\/watch?v=1506","version":216,"lastModified":"1301903084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ab\/4bc92a65017a3c57fe0112ab\/find-me-guilty-mid.jpg","genre":"Comedy","title":"Find Me Guilty","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"36916"} +{"label":"Richard DeDomenico","version":20,"id":"60795","lastModified":"1301901729000","name":"Richard DeDomenico","type":"Person","_key":"36917"} +{"label":"Tony Ray Rossi","version":20,"id":"60797","lastModified":"1301901614000","name":"Tony Ray Rossi","type":"Person","_key":"36918"} +{"label":"Salvatore Paul Piro","version":20,"id":"60799","lastModified":"1301901729000","name":"Salvatore Paul Piro","type":"Person","_key":"36919"} +{"label":"Frankie Perrone","version":20,"id":"60800","lastModified":"1301902092000","name":"Frankie Perrone","type":"Person","_key":"36920"} +{"label":"Nicholas A. Puccio","version":20,"id":"60798","lastModified":"1301901729000","name":"Nicholas A. Puccio","type":"Person","_key":"36921"} +{"label":"Oscar A. Colon","version":20,"id":"60801","lastModified":"1301901729000","name":"Oscar A. Colon","type":"Person","_key":"36922"} +{"label":"Ben Lipitz","version":20,"id":"60802","lastModified":"1301901729000","name":"Ben Lipitz","type":"Person","_key":"36923"} +{"label":"The Dudesons Movie","description":"\"The Dudesons Movie\" is an extreme stunts comedy that features the wild antics of four hilarious, lifelong friends and their crazy lives in the Arctic Circle.","id":"9951","runtime":76,"imdbId":"tt0774095","version":168,"lastModified":"1302062479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b4\/4bc92a66017a3c57fe0112b4\/the-dudesons-movie-mid.jpg","genre":"Action","title":"The Dudesons Movie","releaseDate":1143763200000,"language":"en","type":"Movie","_key":"36924"} +{"label":"Jarno Laasala","version":20,"id":"60804","lastModified":"1301902389000","name":"Jarno Laasala","type":"Person","_key":"36925"} +{"label":"Jukka Hilden","version":20,"id":"60828","lastModified":"1301902336000","name":"Jukka Hilden","type":"Person","_key":"36926"} +{"label":"Jarno Lepp\u00e4l\u00e4","version":20,"id":"60827","lastModified":"1301901955000","name":"Jarno Lepp\u00e4l\u00e4","type":"Person","_key":"36927"} +{"label":"Jared 'Evil' Hasselhoff","version":20,"id":"60832","lastModified":"1301901955000","name":"Jared 'Evil' Hasselhoff","type":"Person","_key":"36928"} +{"label":"Jimmy Pop","version":20,"id":"60833","lastModified":"1301902151000","name":"Jimmy Pop","type":"Person","_key":"36929"} +{"label":"Hannu-Pekka Parviainen","version":20,"id":"60830","lastModified":"1301901955000","name":"Hannu-Pekka Parviainen","type":"Person","_key":"36930"} +{"label":"Jarno Laasala","version":20,"id":"60831","lastModified":"1301901954000","name":"Jarno Laasala","type":"Person","_key":"36931"} +{"label":"Rescue Dawn","description":"A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.","id":"9952","runtime":126,"imdbId":"tt0462504","trailer":"http:\/\/www.youtube.com\/watch?v=B2jIKkxSsBg","version":223,"lastModified":"1301903275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cd\/4bc92a6b017a3c57fe0112cd\/rescue-dawn-mid.jpg","studio":"Gibraltar Films","genre":"Action","title":"Rescue Dawn","releaseDate":1161475200000,"language":"en","tagline":"A true story of survival... declassified.","type":"Movie","_key":"36932"} +{"label":"Pat Healy","version":32,"id":"60846","lastModified":"1301901606000","name":"Pat Healy","type":"Person","_key":"36933"} +{"label":"Fran\u00e7ois Chau","version":29,"id":"60851","lastModified":"1301901683000","name":"Fran\u00e7ois Chau","type":"Person","_key":"36934"} +{"label":"James Oliver","version":27,"id":"60848","lastModified":"1301901585000","name":"James Oliver","type":"Person","_key":"36935"} +{"label":"GQ","version":28,"id":"60847","lastModified":"1301901250000","name":"GQ","type":"Person","_key":"36936"} +{"label":"Saichia Wongwiroj","version":26,"id":"60850","lastModified":"1301901514000","name":"Saichia Wongwiroj","type":"Person","_key":"36937"} +{"label":"Brad Carr","version":26,"id":"60849","lastModified":"1301901596000","name":"Brad Carr","type":"Person","_key":"36938"} +{"label":"Teerawat Mulvilai","version":26,"id":"60852","lastModified":"1301901698000","name":"Teerawat Mulvilai","type":"Person","_key":"36939"} +{"label":"Kriangsak Ming-olo","version":26,"id":"60856","lastModified":"1301901842000","name":"Kriangsak Ming-olo","type":"Person","_key":"36940"} +{"label":"Somkuan 'Kuan' Siroon","version":26,"id":"60854","lastModified":"1301901842000","name":"Somkuan 'Kuan' Siroon","type":"Person","_key":"36941"} +{"label":"Mr. Yuttana Muenwaja","version":26,"id":"60853","lastModified":"1301901593000","name":"Mr. Yuttana Muenwaja","type":"Person","_key":"36942"} +{"label":"Chorn Solyda","version":26,"id":"60855","lastModified":"1301901593000","name":"Chorn Solyda","type":"Person","_key":"36943"} +{"label":"Galen Yuen","version":26,"id":"60857","lastModified":"1301901579000","name":"Galen Yuen","type":"Person","_key":"36944"} +{"label":"Abhijati 'Meuk' Jusakul","version":26,"id":"60858","lastModified":"1301901596000","name":"Abhijati 'Meuk' Jusakul","type":"Person","_key":"36945"} +{"label":"Lek Chaiyan Chunsuttiwat","version":26,"id":"60859","lastModified":"1301901838000","name":"Lek Chaiyan Chunsuttiwat","type":"Person","_key":"36946"} +{"label":"A Love Song for Bobby Long","description":"A headstrong young woman returns to New Orleans after the death of her estranged mother.","id":"9953","runtime":119,"imdbId":"tt0369672","version":234,"lastModified":"1301902395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e7\/4bc92a71017a3c57fe0112e7\/a-love-song-for-bobby-long-mid.jpg","genre":"Drama","title":"A Love Song for Bobby Long","releaseDate":1094083200000,"language":"en","tagline":"The heart is a lonely hunter.","type":"Movie","_key":"36947"} +{"label":"Shainee Gabel","version":26,"id":"60860","lastModified":"1301901823000","name":"Shainee Gabel","type":"Person","_key":"36948"} +{"label":"Dane Rhodes","version":30,"id":"60874","lastModified":"1301901927000","name":"Dane Rhodes","type":"Person","_key":"36949"} +{"label":"Patrick McCullough","version":21,"id":"60886","lastModified":"1301901927000","name":"Patrick McCullough","type":"Person","_key":"36950"} +{"label":"David Jensen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4cd5b6087b9aa11b2200012b\/david-jensen-profile.jpg","version":34,"id":"60875","lastModified":"1301901200000","name":"David Jensen","type":"Person","_key":"36951"} +{"label":"Walter Breaux","version":21,"id":"60876","lastModified":"1301901762000","name":"Walter Breaux","type":"Person","_key":"36952"} +{"label":"Bernard Johnson","version":21,"id":"60879","lastModified":"1301901927000","name":"Bernard Johnson","type":"Person","_key":"36953"} +{"label":"Carol Sutton","version":21,"id":"60877","lastModified":"1301902124000","name":"Carol Sutton","type":"Person","_key":"36954"} +{"label":"Warren Kole","version":21,"id":"60878","lastModified":"1301901762000","name":"Warren Kole","type":"Person","_key":"36955"} +{"label":"Gina 'Ginger' Bernal","version":21,"id":"60880","lastModified":"1301901762000","name":"Gina 'Ginger' Bernal","type":"Person","_key":"36956"} +{"label":"Don Brady","version":23,"id":"60883","lastModified":"1301901484000","name":"Don Brady","type":"Person","_key":"36957"} +{"label":"Steve Maye","version":21,"id":"60882","lastModified":"1301901927000","name":"Steve Maye","type":"Person","_key":"36958"} +{"label":"Douglas M. Griffin","version":22,"id":"60881","lastModified":"1301902124000","name":"Douglas M. Griffin","type":"Person","_key":"36959"} +{"label":"Earl Maddox","version":21,"id":"60884","lastModified":"1301902124000","name":"Earl Maddox","type":"Person","_key":"36960"} +{"label":"Will Barnett","version":21,"id":"60885","lastModified":"1301901927000","name":"Will Barnett","type":"Person","_key":"36961"} +{"label":"Leanne Cochran","version":26,"id":"60887","lastModified":"1301901927000","name":"Leanne Cochran","type":"Person","_key":"36962"} +{"label":"The Covenant","description":"Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.","id":"9954","runtime":97,"imdbId":"tt0475944","version":258,"lastModified":"1301902108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ae\/4bccea2d017a3c0f2f0001ae\/the-covenant-mid.jpg","genre":"Action","title":"The Covenant","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"36963"} +{"label":"Chace Crawford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25a\/4c3a04737b9aa10ed900025a\/chace-crawford-profile.jpg","version":33,"id":"60899","lastModified":"1301901468000","name":"Chace Crawford","type":"Person","_key":"36964"} +{"label":"Toby Hemingway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22d\/4cf926505e73d6299b00222d\/toby-hemingway-profile.jpg","version":48,"id":"60901","lastModified":"1301901170000","name":"Toby Hemingway","type":"Person","_key":"36965"} +{"label":"Basia Jasinski","version":20,"id":"60903","lastModified":"1301902092000","name":"Basia Jasinski","type":"Person","_key":"36966"} +{"label":"Christian Baril","version":20,"id":"60902","lastModified":"1301902269000","name":"Christian Baril","type":"Person","_key":"36967"} +{"label":"Larry Day","version":23,"id":"60907","lastModified":"1301901475000","name":"Larry Day","type":"Person","_key":"36968"} +{"label":"Steven Crowder","version":21,"id":"60905","lastModified":"1301901163000","name":"Steven Crowder","type":"Person","_key":"36969"} +{"label":"Robert Crooks","version":20,"id":"60906","lastModified":"1301902269000","name":"Robert Crooks","type":"Person","_key":"36970"} +{"label":"Rob Burns","version":20,"id":"60904","lastModified":"1301902269000","name":"Rob Burns","type":"Person","_key":"36971"} +{"label":"Jonathan Deveau","version":20,"id":"60909","lastModified":"1301902269000","name":"Jonathan Deveau","type":"Person","_key":"36972"} +{"label":"Vito DeFilippo","version":20,"id":"60908","lastModified":"1301902269000","name":"Vito DeFilippo","type":"Person","_key":"36973"} +{"label":"Blades of Glory","description":"When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together -- as a pairs team.","id":"9955","runtime":93,"imdbId":"tt0445934","trailer":"http:\/\/www.youtube.com\/watch?v=bCg1HO4UbTA","version":263,"lastModified":"1301901542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30a\/4bc92a77017a3c57fe01130a\/blades-of-glory-mid.jpg","studio":"DreamWorks SKG","genre":"Action","title":"Blades of Glory","releaseDate":1175212800000,"language":"en","tagline":"Kick Some Ice.","type":"Movie","_key":"36974"} +{"label":"Josh Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/403\/4ce1a1c85e73d60f6f000403\/josh-gordon-profile.jpg","version":37,"id":"60922","lastModified":"1301901183000","name":"Josh Gordon","type":"Person","_key":"36975"} +{"label":"Will Speck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/427\/4ce1a24c5e73d60f70000427\/will-speck-profile.jpg","version":37,"id":"60923","lastModified":"1301901238000","name":"Will Speck","type":"Person","_key":"36976"} +{"label":"Greg Lindsay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/45a\/4ce19c1d5e73d60f6e00045a\/greg-lindsay-profile.jpg","version":21,"id":"60940","lastModified":"1301901742000","name":"Greg Lindsay","type":"Person","_key":"36977"} +{"label":"Scott Hamilton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c4\/4ce19c6e5e73d60f710003c4\/scott-hamilton-profile.jpg","version":22,"id":"60939","lastModified":"1301901712000","name":"Scott Hamilton","type":"Person","_key":"36978"} +{"label":"Zachary Ferren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3da\/4ce19dc75e73d60f6c0003da\/zachary-ferren-profile.jpg","version":21,"id":"60943","lastModified":"1301901712000","name":"Zachary Ferren","type":"Person","_key":"36979"} +{"label":"Ben Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4ce19e405e73d60f710003d1\/ben-wilson-profile.jpg","version":21,"id":"60941","lastModified":"1301901712000","name":"Ben Wilson","type":"Person","_key":"36980"} +{"label":"Steven M. Gagnon","version":20,"id":"60944","lastModified":"1301902129000","name":"Steven M. Gagnon","type":"Person","_key":"36981"} +{"label":"The Brave","description":"A down-on-his-luck American Indian recently released from jail is offered the chance to \"star\" as the victim of a snuff film, the resulting pay of which could greatly help his poverty stricken family.","id":"9956","runtime":123,"imdbId":"tt0118768","version":116,"lastModified":"1301902794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4bc92a7c017a3c57fe01131c\/the-brave-mid.jpg","genre":"Drama","title":"The Brave","releaseDate":870220800000,"language":"en","type":"Movie","_key":"36982"} +{"label":"Nicole Mancera","version":20,"id":"60919","lastModified":"1301901729000","name":"Nicole Mancera","type":"Person","_key":"36983"} +{"label":"Cody Lightning","version":22,"id":"60918","lastModified":"1301901682000","name":"Cody Lightning","type":"Person","_key":"36984"} +{"label":"Chuck E. Weiss","version":21,"id":"60920","lastModified":"1301902178000","name":"Chuck E. Weiss","type":"Person","_key":"36985"} +{"label":"Tricia Peters","version":20,"id":"60925","lastModified":"1301901880000","name":"Tricia Peters","type":"Person","_key":"36986"} +{"label":"Jack Polick","version":20,"id":"60930","lastModified":"1301901880000","name":"Jack Polick","type":"Person","_key":"36987"} +{"label":"Buck Holland","version":22,"id":"60916","lastModified":"1301902048000","name":"Buck Holland","type":"Person","_key":"36988"} +{"label":"The Benchwarmers","description":"A trio of guys try and make up for missed opportunities in childhood by forming a three-player baseball team to compete against standard little league squads.","id":"9957","runtime":80,"imdbId":"tt0437863","version":238,"lastModified":"1301902316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/325\/4bc92a7c017a3c57fe011325\/the-benchwarmers-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"The Benchwarmers","releaseDate":1144368000000,"language":"en","type":"Movie","_key":"36989"} +{"label":"Molly Sims","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10d\/4bcc8571017a3c0f2f00010d\/molly-sims-profile.jpg","version":32,"id":"60952","lastModified":"1302071892000","name":"Molly Sims","type":"Person","_key":"36990"} +{"label":"Craig Kilborn","version":24,"id":"60951","lastModified":"1301901942000","name":"Craig Kilborn","type":"Person","_key":"36991"} +{"label":"Matt Weinberg","version":21,"id":"60956","lastModified":"1301902114000","name":"Matt Weinberg","type":"Person","_key":"36992"} +{"label":"Reggie Jackson","version":19,"id":"60957","lastModified":"1301902092000","name":"Reggie Jackson","type":"Person","_key":"36993"} +{"label":"Sean Salisbury","version":19,"id":"60955","lastModified":"1301902092000","name":"Sean Salisbury","type":"Person","_key":"36994"} +{"label":"Joe Gnoffo","version":20,"id":"60958","lastModified":"1301902125000","name":"Joe Gnoffo","type":"Person","_key":"36995"} +{"label":"Jackie Sandler","version":21,"id":"60959","lastModified":"1301901430000","name":"Jackie Sandler","type":"Person","_key":"36996"} +{"label":"Jared Sandler","version":19,"id":"60961","lastModified":"1301902092000","name":"Jared Sandler","type":"Person","_key":"36997"} +{"label":"Ray Nicholson","version":19,"id":"60960","lastModified":"1301902092000","name":"Ray Nicholson","type":"Person","_key":"36998"} +{"label":"Trailer Park Boys: The Movie","description":"Set in a separate storyline not related to the \"Trailer Park Boys\" Television show, but with the same lovable characters. The boys get arrested for robbing an ATM machine and spend 18 months in jail. When the get out, they decide to pull off \"The Big Dirty\" which is to steal a large amount of coins because they are untraceable and quit their life of crime forever","id":"9958","runtime":95,"imdbId":"tt0425601","version":156,"lastModified":"1301901840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/332\/4bc92a7e017a3c57fe011332\/trailer-park-boys-the-movie-mid.jpg","genre":"Comedy","title":"Trailer Park Boys: The Movie","releaseDate":1201219200000,"language":"en","tagline":"You'll never guess who just got out of jail...","type":"Movie","_key":"36999"} +{"label":"Mike Clattenburg","version":38,"id":"60962","lastModified":"1301901714000","name":"Mike Clattenburg","type":"Person","_key":"37000"} +{"label":"John Paul Tremblay","version":35,"id":"60971","lastModified":"1301901595000","name":"John Paul Tremblay","type":"Person","_key":"37001"} +{"label":"Jeanna Harrison","version":27,"id":"60972","lastModified":"1301902203000","name":"Jeanna Harrison","type":"Person","_key":"37002"} +{"label":"Patrick Roach","version":27,"id":"60973","lastModified":"1301902203000","name":"Patrick Roach","type":"Person","_key":"37003"} +{"label":"Lucy Decoutere","version":27,"id":"60970","lastModified":"1301902203000","name":"Lucy Decoutere","type":"Person","_key":"37004"} +{"label":"Cory Bowles","version":23,"id":"60974","lastModified":"1301902143000","name":"Cory Bowles","type":"Person","_key":"37005"} +{"label":"Val McDow","version":19,"id":"60975","lastModified":"1301902049000","name":"Val McDow","type":"Person","_key":"37006"} +{"label":"Sam Tarasco","version":19,"id":"60977","lastModified":"1301902049000","name":"Sam Tarasco","type":"Person","_key":"37007"} +{"label":"Clint Clarke","version":19,"id":"60978","lastModified":"1301901851000","name":"Clint Clarke","type":"Person","_key":"37008"} +{"label":"Gerry Shano","version":19,"id":"60980","lastModified":"1301902049000","name":"Gerry Shano","type":"Person","_key":"37009"} +{"label":"Michael Jackson","version":22,"id":"107555","lastModified":"1301902419000","name":"Michael Jackson","type":"Person","_key":"37010"} +{"label":"Freedomland","description":"A black police detective must solve a strange case of a kidnapped boy and deal with a big racial protest.","id":"9959","runtime":113,"imdbId":"tt0349467","trailer":"http:\/\/www.youtube.com\/watch?v=1514","homepage":"http:\/\/www.sonypictures.com\/homevideo\/freedomland\/","version":201,"lastModified":"1301903103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/343\/4bc92a80017a3c57fe011343\/freedomland-mid.jpg","studio":"Revolution Studios","genre":"Crime","title":"Freedomland","releaseDate":1140134400000,"language":"en","type":"Movie","_key":"37011"} +{"label":"Joe Roth","version":71,"id":"18311","lastModified":"1301901517000","name":"Joe Roth","type":"Person","_key":"37012"} +{"label":"Aunjanue Ellis","version":35,"id":"53923","lastModified":"1301901460000","name":"Aunjanue Ellis","type":"Person","_key":"37013"} +{"label":"Clarke Peters","version":23,"id":"61011","lastModified":"1301902201000","name":"Clarke Peters","type":"Person","_key":"37014"} +{"label":"LaTanya Richardson","version":24,"id":"61010","lastModified":"1301902301000","name":"LaTanya Richardson","type":"Person","_key":"37015"} +{"label":"Portia","version":21,"id":"61013","lastModified":"1301901880000","name":"Portia","type":"Person","_key":"37016"} +{"label":"Fly Williams III","version":21,"id":"61012","lastModified":"1301901879000","name":"Fly Williams III","type":"Person","_key":"37017"} +{"label":"Haneefah Wood","version":21,"id":"61014","lastModified":"1301901879000","name":"Haneefah Wood","type":"Person","_key":"37018"} +{"label":"Donna Cutugno","version":21,"id":"61017","lastModified":"1301901879000","name":"Donna Cutugno","type":"Person","_key":"37019"} +{"label":"Genevieve Hudson-Price","version":21,"id":"61018","lastModified":"1301901879000","name":"Genevieve Hudson-Price","type":"Person","_key":"37020"} +{"label":"Joe Forbrich","version":21,"id":"61016","lastModified":"1301901879000","name":"Joe Forbrich","type":"Person","_key":"37021"} +{"label":"Lord Of The Flies","description":"A group of boys are marooned on an island after their plane crashes. With no adult survivors, they create their own \"micro-society\". Ralph is elected \"chief\", and he organises shelter and fire. Jack, the head of the choir takes his boys hunting for food (wild pigs). A bitter rivalry develops between Jack and Ralph as both want to be in charge. The \"hunters\" become savage and primal, under Jack's rule, while Ralph tries to keep his group civilised. The growing hostility between them leads to a bl","id":"9960","runtime":92,"imdbId":"tt0057261","version":175,"lastModified":"1301903369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/359\/4bc92a83017a3c57fe011359\/lord-of-the-flies-mid.jpg","genre":"Adventure","title":"Lord Of The Flies","releaseDate":-201571200000,"language":"en","tagline":"Evil is inherent in the human mind, whatever innocence may cloak it...","type":"Movie","_key":"37022"} +{"label":"Peter Brook","version":27,"id":"60981","lastModified":"1301901739000","name":"Peter Brook","type":"Person","_key":"37023"} +{"label":"James Aubrey","version":23,"id":"60990","lastModified":"1301902337000","name":"James Aubrey","type":"Person","_key":"37024"} +{"label":"The Good Girl","description":"The plot revolves around a young married woman whose mundane life takes a turn for the worse when she strikes up a passionate and illicit affair with an oddball discount-store stock boy who thinks he's Holden Caulfield.","id":"9962","runtime":93,"imdbId":"tt0279113","trailer":"http:\/\/www.youtube.com\/watch?v=ORt3QvUmig0","version":189,"lastModified":"1301902673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/367\/4bc92a84017a3c57fe011367\/the-good-girl-mid.jpg","genre":"Comedy","title":"The Good Girl","releaseDate":1030233600000,"language":"en","type":"Movie","_key":"37025"} +{"label":"Miguel Arteta","version":27,"id":"61069","lastModified":"1301901437000","name":"Miguel Arteta","type":"Person","_key":"37026"} +{"label":"Mike White","version":37,"id":"17735","lastModified":"1301903108000","name":"Mike White","type":"Person","_key":"37027"} +{"label":"Annie O'Donnell","version":21,"id":"61079","lastModified":"1301902091000","name":"Annie O'Donnell","type":"Person","_key":"37028"} +{"label":"Jon Shere","version":21,"id":"61080","lastModified":"1301902091000","name":"Jon Shere","type":"Person","_key":"37029"} +{"label":"Alice Amter","version":22,"id":"61081","lastModified":"1301902091000","name":"Alice Amter","type":"Person","_key":"37030"} +{"label":"Jean Rhodes","version":21,"id":"61082","lastModified":"1301902091000","name":"Jean Rhodes","type":"Person","_key":"37031"} +{"label":"Lalo Guerrero","version":21,"id":"61083","lastModified":"1301902091000","name":"Lalo Guerrero","type":"Person","_key":"37032"} +{"label":"Michael Hyatt","version":21,"id":"61084","lastModified":"1301902269000","name":"Michael Hyatt","type":"Person","_key":"37033"} +{"label":"Enzo","version":21,"id":"61086","lastModified":"1301902091000","name":"Enzo","type":"Person","_key":"37034"} +{"label":"Ken Rudulph","version":21,"id":"61085","lastModified":"1301902091000","name":"Ken Rudulph","type":"Person","_key":"37035"} +{"label":"Premonition","description":"Depressed housewife learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the next day after to a world in which he is still dead.","id":"9963","runtime":110,"imdbId":"tt0477071","version":238,"lastModified":"1301902070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/374\/4bc92a89017a3c57fe011374\/premonition-mid.jpg","genre":"Horror","title":"Premonition","releaseDate":1174003200000,"language":"en","type":"Movie","_key":"37036"} +{"label":"Mennan Yapo","version":25,"id":"61087","lastModified":"1301901549000","name":"Mennan Yapo","type":"Person","_key":"37037"} +{"label":"Courtney Taylor Burness","version":23,"id":"58412","lastModified":"1301901549000","name":"Courtney Taylor Burness","type":"Person","_key":"37038"} +{"label":"Shyann McClure","version":21,"id":"61098","lastModified":"1301901633000","name":"Shyann McClure","type":"Person","_key":"37039"} +{"label":"Irene Ziegler","version":21,"id":"61099","lastModified":"1301901926000","name":"Irene Ziegler","type":"Person","_key":"37040"} +{"label":"Phillip DeVona","version":21,"id":"61100","lastModified":"1301901926000","name":"Phillip DeVona","type":"Person","_key":"37041"} +{"label":"Matt Moore","version":20,"birthday":"-2587078800000","id":"61101","birthplace":"County Meath, Ireland","lastModified":"1301901643000","name":"Matt Moore","type":"Person","_key":"37042"} +{"label":"Laurel Whitsett","version":22,"id":"61102","lastModified":"1301901549000","name":"Laurel Whitsett","type":"Person","_key":"37043"} +{"label":"Kristin Ketterer","version":21,"id":"61103","lastModified":"1301901483000","name":"Kristin Ketterer","type":"Person","_key":"37044"} +{"label":"Floriana Tullio","version":21,"id":"61105","lastModified":"1301901633000","name":"Floriana Tullio","type":"Person","_key":"37045"} +{"label":"David A. Shaffer","version":21,"id":"61106","lastModified":"1301901761000","name":"David A. Shaffer","type":"Person","_key":"37046"} +{"label":"Bad Taste","description":"The population of a small town disappears and is replaced by aliens that chase human flesh for their intergalactic fast-food chain.","id":"9964","runtime":91,"imdbId":"tt0092610","version":130,"lastModified":"1301902431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4bc92a8b017a3c57fe011381\/bad-taste-mid.jpg","studio":"New Zealand Film Commission","genre":"Action","title":"Bad Taste","releaseDate":565315200000,"language":"en","type":"Movie","_key":"37047"} +{"label":"Terry Potter","version":22,"id":"61590","lastModified":"1301901215000","name":"Terry Potter","type":"Person","_key":"37048"} +{"label":"Pete O'Herne","version":22,"id":"61591","lastModified":"1301901243000","name":"Pete O'Herne","type":"Person","_key":"37049"} +{"label":"Craig Smith","version":23,"id":"61592","lastModified":"1301901215000","name":"Craig Smith","type":"Person","_key":"37050"} +{"label":"Mike Minett","version":22,"id":"61593","lastModified":"1301901243000","name":"Mike Minett","type":"Person","_key":"37051"} +{"label":"Wake Up, Ron Burgundy: The Lost Movie","description":"While Ron Burgundy's rivalry with Veronica Corningstone continues, a group of unprofessional thieves better known as 'The Alarm Clock' try to make the truth known, whatever that may be.","id":"9965","runtime":93,"imdbId":"tt0423505","version":172,"lastModified":"1301903462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/003\/4c9d1deb5e73d6704d000003\/wake-up-ron-burgundy-the-lost-movie-mid.jpg","genre":"Comedy","title":"Wake Up, Ron Burgundy: The Lost Movie","releaseDate":1104192000000,"language":"en","tagline":"the Adventure Continues...","type":"Movie","_key":"37052"} +{"label":"The Messengers","description":"An ominous darkness invades a seemingly serene sunflower farm in North Dakota, and the Solomon family is torn apart by suspicion, mayhem and murder.","id":"9966","runtime":90,"imdbId":"tt0425430","version":249,"lastModified":"1301902556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7b\/4d1a46c37b9aa11488004c7b\/the-messengers-mid.jpg","genre":"Drama","title":"The Messengers","releaseDate":1170374400000,"language":"en","type":"Movie","_key":"37053"} +{"label":"Evan Turner","version":19,"id":"61131","lastModified":"1301902269000","name":"Evan Turner","type":"Person","_key":"37054"} +{"label":"Theodore Turner","version":19,"id":"61132","lastModified":"1301902269000","name":"Theodore Turner","type":"Person","_key":"37055"} +{"label":"Dustin Milligan","version":29,"id":"53117","lastModified":"1301901428000","name":"Dustin Milligan","type":"Person","_key":"37056"} +{"label":"Michael Daingerfield","version":19,"id":"61133","lastModified":"1301902269000","name":"Michael Daingerfield","type":"Person","_key":"37057"} +{"label":"Tatiana Maslany","version":34,"id":"61134","lastModified":"1301901589000","name":"Tatiana Maslany","type":"Person","_key":"37058"} +{"label":"Shirley McQueen","version":19,"id":"61135","lastModified":"1301902269000","name":"Shirley McQueen","type":"Person","_key":"37059"} +{"label":"Blaine Hart","version":19,"id":"61136","lastModified":"1301902269000","name":"Blaine Hart","type":"Person","_key":"37060"} +{"label":"Graham Bell","version":19,"id":"61137","lastModified":"1301902269000","name":"Graham Bell","type":"Person","_key":"37061"} +{"label":"Peter Scoular","version":19,"id":"61139","lastModified":"1301902269000","name":"Peter Scoular","type":"Person","_key":"37062"} +{"label":"Kaitlyn McMillan","version":19,"id":"61138","lastModified":"1301902269000","name":"Kaitlyn McMillan","type":"Person","_key":"37063"} +{"label":"Uncommon Valor","description":"A group of Vietnam War veterans re-unite to rescue one of their own left behind and taken prisoner by the Vietnamese...","id":"9967","runtime":105,"imdbId":"tt0086508","version":179,"lastModified":"1301903085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a2\/4bc92a92017a3c57fe0113a2\/uncommon-valor-mid.jpg","genre":"Action","title":"Uncommon Valor","releaseDate":440380800000,"language":"en","type":"Movie","_key":"37064"} +{"label":"Reb Brown","version":26,"id":"61144","lastModified":"1301902138000","name":"Reb Brown","type":"Person","_key":"37065"} +{"label":"Alice Lau","version":20,"id":"61145","lastModified":"1301902109000","name":"Alice Lau","type":"Person","_key":"37066"} +{"label":"Kwan Hi Lim","version":21,"id":"61146","lastModified":"1301902269000","name":"Kwan Hi Lim","type":"Person","_key":"37067"} +{"label":"Kelly Junkerman","version":21,"id":"61147","lastModified":"1301901879000","name":"Kelly Junkerman","type":"Person","_key":"37068"} +{"label":"Gloria Stroock","version":21,"id":"61148","lastModified":"1301902269000","name":"Gloria Stroock","type":"Person","_key":"37069"} +{"label":"Debi Parker","version":21,"id":"61152","lastModified":"1301902269000","name":"Debi Parker","type":"Person","_key":"37070"} +{"label":"Charles Aidman","version":25,"id":"61150","lastModified":"1301901940000","name":"Charles Aidman","type":"Person","_key":"37071"} +{"label":"Constance Forslund","version":21,"id":"61149","lastModified":"1301901879000","name":"Constance Forslund","type":"Person","_key":"37072"} +{"label":"Jan Triska","version":31,"id":"61151","lastModified":"1301901562000","name":"Jan Triska","type":"Person","_key":"37073"} +{"label":"The Big White","description":"To remedy his financial problems, a travel agent has his eye on a frozen corpse, which just happens to be sought after by two hitmen.","id":"9968","runtime":100,"imdbId":"tt0402850","version":200,"lastModified":"1301903290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bd\/4bef036c017a3c45980001bd\/the-big-white-mid.jpg","genre":"Comedy","title":"The Big White","releaseDate":1130371200000,"language":"en","tagline":"When you need somebody, anybody will do.","type":"Movie","_key":"37074"} +{"label":"Marina Stephenson Kerr","version":21,"id":"61160","lastModified":"1301901729000","name":"Marina Stephenson Kerr","type":"Person","_key":"37075"} +{"label":"Billy Merasty","version":25,"id":"61159","lastModified":"1301901459000","name":"Billy Merasty","type":"Person","_key":"37076"} +{"label":"Ralph J. Alderman","version":22,"id":"61161","lastModified":"1301901729000","name":"Ralph J. Alderman","type":"Person","_key":"37077"} +{"label":"Andrea Shawcross","version":21,"id":"61165","lastModified":"1301901729000","name":"Andrea Shawcross","type":"Person","_key":"37078"} +{"label":"Craig March","version":21,"id":"61164","lastModified":"1301901729000","name":"Craig March","type":"Person","_key":"37079"} +{"label":"Frank Adamson","version":25,"id":"61162","lastModified":"1301901596000","name":"Frank Adamson","type":"Person","_key":"37080"} +{"label":"Ryan Miranda","version":21,"id":"61163","lastModified":"1301901729000","name":"Ryan Miranda","type":"Person","_key":"37081"} +{"label":"Ty Wood","version":29,"id":"61166","lastModified":"1301901347000","name":"Ty Wood","type":"Person","_key":"37082"} +{"label":"Frank C. Turner","version":32,"id":"61167","lastModified":"1301901350000","name":"Frank C. Turner","type":"Person","_key":"37083"} +{"label":"Joanne Rodriguez","version":21,"id":"61170","lastModified":"1301901729000","name":"Joanne Rodriguez","type":"Person","_key":"37084"} +{"label":"Eric Epstein","version":21,"id":"61171","lastModified":"1301901729000","name":"Eric Epstein","type":"Person","_key":"37085"} +{"label":"Brenda McDonald","version":21,"id":"61168","lastModified":"1301901614000","name":"Brenda McDonald","type":"Person","_key":"37086"} +{"label":"Deena Fontaine","version":21,"id":"61169","lastModified":"1301901729000","name":"Deena Fontaine","type":"Person","_key":"37087"} +{"label":"Deck the Halls","description":"Two neighbors have it out after one of them decorates his house for the holidays so brightly that it can be seen from space.","id":"9969","runtime":93,"imdbId":"tt0790604","version":244,"lastModified":"1301902438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c4\/4bc92a97017a3c57fe0113c4\/deck-the-halls-mid.jpg","genre":"Comedy","title":"Deck the Halls","releaseDate":1164153600000,"language":"en","type":"Movie","_key":"37088"} +{"label":"John Whitesell","version":37,"id":"61175","lastModified":"1301901939000","name":"John Whitesell","type":"Person","_key":"37089"} +{"label":"Jorge Garcia","version":22,"id":"28659","lastModified":"1301901613000","name":"Jorge Garcia","type":"Person","_key":"37090"} +{"label":"Dylan Blue","version":20,"id":"61179","lastModified":"1301901729000","name":"Dylan Blue","type":"Person","_key":"37091"} +{"label":"Kelly Aldridge","version":20,"id":"61180","lastModified":"1301901613000","name":"Kelly Aldridge","type":"Person","_key":"37092"} +{"label":"Alia Shawkat","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">American actress Alia Martine Shawkat made her acting debut in both film and television in 1999. She landed her first starring role in 2001, playing Hannah Rayburn in the television sitcom State of Grace. She is best known for her role as Maeby F\u00fcnke in the Fox series Arrested Development. <\/span><\/font>\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font>\n<font face=","version":32,"birthday":"608853600000","id":"61178","birthplace":"Riverside, California, USA","lastModified":"1301901774000","name":"Alia Shawkat","type":"Person","_key":"37093"} +{"label":"Sabrina Aldridge","version":20,"id":"61181","lastModified":"1301901729000","name":"Sabrina Aldridge","type":"Person","_key":"37094"} +{"label":"Gary Chalk","version":31,"id":"26089","lastModified":"1301901582000","name":"Gary Chalk","type":"Person","_key":"37095"} +{"label":"Ryan Devlin","version":23,"id":"61183","lastModified":"1301902269000","name":"Ryan Devlin","type":"Person","_key":"37096"} +{"label":"Gillian Vigman","version":20,"id":"61182","lastModified":"1301901729000","name":"Gillian Vigman","type":"Person","_key":"37097"} +{"label":"Jackie Burroughs","version":32,"id":"61185","lastModified":"1301901555000","name":"Jackie Burroughs","type":"Person","_key":"37098"} +{"label":"Nicola Peltz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e5\/4ce4666e7b9aa168b40005e5\/nicola-peltz-profile.jpg","version":34,"birthday":"786668400000","id":"61186","birthplace":"Westchester County","lastModified":"1301904076000","name":"Nicola Peltz","type":"Person","_key":"37099"} +{"label":"Daniel Bacon","version":20,"id":"61187","lastModified":"1301901729000","name":"Daniel Bacon","type":"Person","_key":"37100"} +{"label":"SuChin Pak","version":20,"id":"61184","lastModified":"1301901475000","name":"SuChin Pak","type":"Person","_key":"37101"} +{"label":"The Last Run","description":"When a young accountant is devastated after discovering his inspiringly beautiful girlfriend is cheating on him...","id":"9971","runtime":97,"imdbId":"tt0376720","version":255,"lastModified":"1301903056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ce\/4bc92a98017a3c57fe0113ce\/the-last-run-mid.jpg","genre":"Comedy","title":"The Last Run","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"37102"} +{"label":"Jonathan Segal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf0\/4cf3f2e15e73d62387000cf0\/jonathan-segal-profile.jpg","version":23,"id":"61204","lastModified":"1301901277000","name":"Jonathan Segal","type":"Person","_key":"37103"} +{"label":"Robert Romanus","version":28,"id":"61217","lastModified":"1301902136000","name":"Robert Romanus","type":"Person","_key":"37104"} +{"label":"Abby Brammell","version":19,"id":"61218","lastModified":"1301902091000","name":"Abby Brammell","type":"Person","_key":"37105"} +{"label":"Judith Benezra","version":19,"id":"61221","lastModified":"1301902269000","name":"Judith Benezra","type":"Person","_key":"37106"} +{"label":"Sharon Brathwaite-Sanders","version":17,"id":"61223","lastModified":"1301902296000","name":"Sharon Brathwaite-Sanders","type":"Person","_key":"37107"} +{"label":"Nahtasha Budhi","version":24,"id":"61224","lastModified":"1301902347000","name":"Nahtasha Budhi","type":"Person","_key":"37108"} +{"label":"Jillian Bach","version":19,"id":"61219","lastModified":"1301902269000","name":"Jillian Bach","type":"Person","_key":"37109"} +{"label":"Art Bonilla","version":19,"id":"61222","lastModified":"1301902269000","name":"Art Bonilla","type":"Person","_key":"37110"} +{"label":"Ina Barron","version":19,"id":"61220","lastModified":"1301902269000","name":"Ina Barron","type":"Person","_key":"37111"} +{"label":"Jorge Dallinger","version":19,"id":"61227","lastModified":"1301902269000","name":"Jorge Dallinger","type":"Person","_key":"37112"} +{"label":"Todd M. Camhe","version":19,"id":"61225","lastModified":"1301902269000","name":"Todd M. Camhe","type":"Person","_key":"37113"} +{"label":"Keri Claussen","version":19,"id":"61226","lastModified":"1301902269000","name":"Keri Claussen","type":"Person","_key":"37114"} +{"label":"Lock Up","description":"Frank Leone is nearing the end of his prison term for a relatively minor crime. Just before he is paroled, however, Warden Drumgoole takes charge. Drumgoole was assigned to a hell-hole prison after his administration was publicly humiliated by Leone, and has now arrived on the scene to ensure that Leone never sees the light of day. ","id":"9972","runtime":115,"imdbId":"tt0097770","version":249,"lastModified":"1301907680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e5\/4bc92a9d017a3c57fe0113e5\/lock-up-mid.jpg","genre":"Action","title":"Lock Up","releaseDate":618192000000,"language":"en","type":"Movie","_key":"37115"} +{"label":"Larry Romano","version":20,"id":"61233","lastModified":"1301902091000","name":"Larry Romano","type":"Person","_key":"37116"} +{"label":"John Lilla","version":20,"id":"61234","lastModified":"1301902091000","name":"John Lilla","type":"Person","_key":"37117"} +{"label":"Dean Rader-Duval","version":18,"id":"61235","lastModified":"1301902109000","name":"Dean Rader-Duval","type":"Person","_key":"37118"} +{"label":"Kurek Ashley","version":20,"id":"61238","lastModified":"1301902091000","name":"Kurek Ashley","type":"Person","_key":"37119"} +{"label":"Jerry Strivelli","version":20,"id":"61236","lastModified":"1301902091000","name":"Jerry Strivelli","type":"Person","_key":"37120"} +{"label":"David Anthony Marshall","version":24,"id":"61237","lastModified":"1301901916000","name":"David Anthony Marshall","type":"Person","_key":"37121"} +{"label":"Michael Petroni","version":28,"id":"61239","lastModified":"1301902146000","name":"Michael Petroni","type":"Person","_key":"37122"} +{"label":"Frank D'Annibale","version":20,"id":"61240","lastModified":"1301902268000","name":"Frank D'Annibale","type":"Person","_key":"37123"} +{"label":"Clarence Moore","version":20,"id":"61242","lastModified":"1301902091000","name":"Clarence Moore","type":"Person","_key":"37124"} +{"label":"Tony Lip","version":22,"id":"61241","lastModified":"1301902141000","name":"Tony Lip","type":"Person","_key":"37125"} +{"label":"Air Buddies","description":"When dad BUDDY and mom MOLLY are dognapped, their five adorable pups, the AIR BUDDIES, must save the day...","id":"9973","runtime":80,"imdbId":"tt0470982","version":182,"lastModified":"1301904066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ee\/4bc92a9e017a3c57fe0113ee\/air-buddies-mid.jpg","genre":"Comedy","title":"Air Buddies","releaseDate":1165881600000,"language":"en","type":"Movie","_key":"37126"} +{"label":"Robert Vince","version":62,"id":"61244","lastModified":"1301901646000","name":"Robert Vince","type":"Person","_key":"37127"} +{"label":"Trevor Wright","version":52,"id":"61256","lastModified":"1302061274000","name":"Trevor Wright","type":"Person","_key":"37128"} +{"label":"Slade Pearce","version":21,"id":"61257","lastModified":"1301902091000","name":"Slade Pearce","type":"Person","_key":"37129"} +{"label":"Dominic Scott Kay","version":29,"id":"61259","lastModified":"1301901641000","name":"Dominic Scott Kay","type":"Person","_key":"37130"} +{"label":"Christian Pikes","version":22,"id":"61258","lastModified":"1301901947000","name":"Christian Pikes","type":"Person","_key":"37131"} +{"label":"Cascy Beddow","version":18,"id":"10861","lastModified":"1301901475000","name":"Cascy Beddow","type":"Person","_key":"37132"} +{"label":"Paul Rae","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/993\/4d43eab07b9aa15bb5005993\/paul-rae-profile.jpg","version":51,"id":"61260","lastModified":"1301901219000","name":"Paul Rae","type":"Person","_key":"37133"} +{"label":"Jarvis Dashkewytch","version":19,"id":"61261","lastModified":"1301901619000","name":"Jarvis Dashkewytch","type":"Person","_key":"37134"} +{"label":"Tyler Foden","version":21,"id":"61262","lastModified":"1301901613000","name":"Tyler Foden","type":"Person","_key":"37135"} +{"label":"Richard Karn","version":21,"id":"53286","lastModified":"1301901537000","name":"Richard Karn","type":"Person","_key":"37136"} +{"label":"Dan Joffre","version":24,"id":"61264","lastModified":"1301901613000","name":"Dan Joffre","type":"Person","_key":"37137"} +{"label":"Gig Morton","version":21,"id":"61266","lastModified":"1301901879000","name":"Gig Morton","type":"Person","_key":"37138"} +{"label":"Irene Karas","version":24,"id":"61265","lastModified":"1301901900000","name":"Irene Karas","type":"Person","_key":"37139"} +{"label":"Kill Your Darlings","description":"No overview found.","id":"9974","runtime":94,"imdbId":"tt0472118","homepage":"http:\/\/www.killyourdarlingsmovie.com\/","version":215,"lastModified":"1301905836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/312\/4cbb4c175e73d63506000312\/kill-your-darlings-mid.jpg","genre":"Comedy","title":"Kill Your Darlings","releaseDate":1144800000000,"language":"en","type":"Movie","_key":"37140"} +{"label":"Bj\u00f6rne Larson","version":19,"id":"61267","lastModified":"1301901729000","name":"Bj\u00f6rne Larson","type":"Person","_key":"37141"} +{"label":"Andreas Wilson","version":23,"id":"61283","lastModified":"1301901613000","name":"Andreas Wilson","type":"Person","_key":"37142"} +{"label":"Scott Williamson","version":20,"id":"61286","lastModified":"1301902207000","name":"Scott Williamson","type":"Person","_key":"37143"} +{"label":"Michelle Bonilla","version":19,"id":"61285","lastModified":"1301902268000","name":"Michelle Bonilla","type":"Person","_key":"37144"} +{"label":"Cheryl Hawker","version":19,"id":"61288","lastModified":"1301902268000","name":"Cheryl Hawker","type":"Person","_key":"37145"} +{"label":"Michael Cutt","version":19,"id":"61287","lastModified":"1301902268000","name":"Michael Cutt","type":"Person","_key":"37146"} +{"label":"Hal Havins","version":21,"id":"61289","lastModified":"1301902128000","name":"Hal Havins","type":"Person","_key":"37147"} +{"label":"Curious George","description":"Will Ferrell stars as The Man in the Yellow Hat, a gentleman who looks after his pet monkey - an inquisitive and wonderful creature whose enthusiasm often gets the best of him.","id":"9975","runtime":86,"imdbId":"tt0381971","version":329,"lastModified":"1301997897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fb\/4bc92aa0017a3c57fe0113fb\/curious-george-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"Curious George","releaseDate":1139529600000,"language":"en","tagline":"Get Carried Away With The Cutest Little Monkey Around!","type":"Movie","_key":"37148"} +{"label":"Matthew O'Callaghan","version":38,"id":"61290","lastModified":"1301997896000","name":"Matthew O'Callaghan","type":"Person","_key":"37149"} +{"label":"Timyra-Joi Beatty","version":24,"id":"61301","lastModified":"1301997896000","name":"Timyra-Joi Beatty","type":"Person","_key":"37150"} +{"label":"Christopher Chen","version":24,"id":"61302","lastModified":"1301997896000","name":"Christopher Chen","type":"Person","_key":"37151"} +{"label":"Terrence Hardy Jr.","version":31,"id":"61305","lastModified":"1301997896000","name":"Terrence Hardy Jr.","type":"Person","_key":"37152"} +{"label":"Jessie Flower","version":29,"id":"61304","lastModified":"1301997896000","name":"Jessie Flower","type":"Person","_key":"37153"} +{"label":"Kelsey Lansdowne","version":24,"id":"61306","lastModified":"1301997896000","name":"Kelsey Lansdowne","type":"Person","_key":"37154"} +{"label":"Michael Chinyamurindi","version":24,"id":"61307","lastModified":"1301997897000","name":"Michael Chinyamurindi","type":"Person","_key":"37155"} +{"label":"Michael Sorich","version":37,"id":"61308","lastModified":"1301997897000","name":"Michael Sorich","type":"Person","_key":"37156"} +{"label":"Satan's Little Helper","description":"A na\u00efve young boy uknowingly becomes the pawn of a serial killer.","id":"9976","runtime":100,"imdbId":"tt0380687","trailer":"http:\/\/www.youtube.com\/watch?v=yOJCrV_vCiY","version":199,"lastModified":"1301903276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/416\/4bc92aa5017a3c57fe011416\/satan-s-little-helper-mid.jpg","genre":"Comedy","title":"Satan's Little Helper","releaseDate":1072915200000,"language":"en","tagline":"You'll laugh 'til you die","type":"Movie","_key":"37157"} +{"label":"Jeff Lieberman","version":35,"id":"57239","lastModified":"1301902091000","name":"Jeff Lieberman","type":"Person","_key":"37158"} +{"label":"Alexander Brickel","version":20,"id":"61319","lastModified":"1301901879000","name":"Alexander Brickel","type":"Person","_key":"37159"} +{"label":"Joyce R. Korbin","version":20,"id":"61322","lastModified":"1301902091000","name":"Joyce R. Korbin","type":"Person","_key":"37160"} +{"label":"Melisa McGregor","version":20,"id":"61320","lastModified":"1301902268000","name":"Melisa McGregor","type":"Person","_key":"37161"} +{"label":"Dan Ziskie","version":20,"id":"61323","lastModified":"1301902268000","name":"Dan Ziskie","type":"Person","_key":"37162"} +{"label":"Joshua Annex","version":20,"id":"61321","lastModified":"1301902268000","name":"Joshua Annex","type":"Person","_key":"37163"} +{"label":"Mary Kay Adams","version":20,"id":"52307","lastModified":"1301902091000","name":"Mary Kay Adams","type":"Person","_key":"37164"} +{"label":"Anthony Ardolino","version":20,"id":"61325","lastModified":"1301902268000","name":"Anthony Ardolino","type":"Person","_key":"37165"} +{"label":"JoAnna Beckson","version":20,"id":"61326","lastModified":"1301902268000","name":"JoAnna Beckson","type":"Person","_key":"37166"} +{"label":"Lisa Barnes","version":20,"id":"61328","lastModified":"1301902091000","name":"Lisa Barnes","type":"Person","_key":"37167"} +{"label":"Larry 'Ratso' Sloman","version":20,"id":"61327","lastModified":"1301902268000","name":"Larry 'Ratso' Sloman","type":"Person","_key":"37168"} +{"label":"Christian Robert Varley","version":20,"id":"61324","lastModified":"1301902268000","name":"Christian Robert Varley","type":"Person","_key":"37169"} +{"label":"Jim Fitzpatrick","version":21,"id":"61331","lastModified":"1301902316000","name":"Jim Fitzpatrick","type":"Person","_key":"37170"} +{"label":"Adel L. Morales","version":20,"id":"61330","lastModified":"1301902268000","name":"Adel L. Morales","type":"Person","_key":"37171"} +{"label":"Declan Mulvey","version":20,"id":"61329","lastModified":"1301902268000","name":"Declan Mulvey","type":"Person","_key":"37172"} +{"label":"Dana Smith Croll","version":20,"id":"61332","lastModified":"1301902091000","name":"Dana Smith Croll","type":"Person","_key":"37173"} +{"label":"Lisa G.","version":20,"id":"61333","lastModified":"1301902091000","name":"Lisa G.","type":"Person","_key":"37174"} +{"label":"Children of the Revolution","description":"No overview found.","id":"9977","runtime":101,"imdbId":"tt0115886","version":158,"lastModified":"1301904075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4c124d997b9aa17ec5000062\/children-of-the-revolution-mid.jpg","genre":"Comedy","title":"Children of the Revolution","releaseDate":862358400000,"language":"en","type":"Movie","_key":"37175"} +{"label":"Peter Duncan","version":24,"id":"61335","lastModified":"1301901941000","name":"Peter Duncan","type":"Person","_key":"37176"} +{"label":"Russell Kiefel","version":22,"id":"61340","lastModified":"1301902199000","name":"Russell Kiefel","type":"Person","_key":"37177"} +{"label":"John Gaden","version":21,"id":"61341","lastModified":"1301901938000","name":"John Gaden","type":"Person","_key":"37178"} +{"label":"Ben McIvor","version":20,"id":"61342","lastModified":"1301902133000","name":"Ben McIvor","type":"Person","_key":"37179"} +{"label":"Marshall Napier","version":21,"id":"61343","lastModified":"1301902133000","name":"Marshall Napier","type":"Person","_key":"37180"} +{"label":"Fiona Press","version":22,"id":"61344","lastModified":"1301901949000","name":"Fiona Press","type":"Person","_key":"37181"} +{"label":"Rowan Woods","version":31,"id":"61346","lastModified":"1301901938000","name":"Rowan Woods","type":"Person","_key":"37182"} +{"label":"Alex Menglet","version":27,"id":"61345","lastModified":"1301901558000","name":"Alex Menglet","type":"Person","_key":"37183"} +{"label":"Barry Langrishe","version":21,"id":"61347","lastModified":"1301902178000","name":"Barry Langrishe","type":"Person","_key":"37184"} +{"label":"Graham Ware Jr.","version":21,"id":"61348","lastModified":"1301902178000","name":"Graham Ware Jr.","type":"Person","_key":"37185"} +{"label":"Heather Mitchell","version":26,"id":"61350","lastModified":"1301902137000","name":"Heather Mitchell","type":"Person","_key":"37186"} +{"label":"Robbie McGregor","version":20,"id":"61349","lastModified":"1301902310000","name":"Robbie McGregor","type":"Person","_key":"37187"} +{"label":"Paul Livingston","version":20,"id":"61351","lastModified":"1301902133000","name":"Paul Livingston","type":"Person","_key":"37188"} +{"label":"Alex Rider: Operation Stormbreaker","description":"Alex Rider thinks he is a normal school boy, until his uncle is killed. He discovers that his uncle was actually spy on a mission...","id":"9978","runtime":93,"imdbId":"tt0457495","trailer":"http:\/\/www.youtube.com\/watch?v=tZgepEziqwI","version":191,"lastModified":"1301901923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56e\/4bfa8dc6017a3c702f00056e\/alex-rider-operation-stormbreaker-mid.jpg","genre":"Action","title":"Alex Rider: Operation Stormbreaker","releaseDate":1153440000000,"language":"en","type":"Movie","_key":"37189"} +{"label":"Geoffrey Sax","version":35,"id":"61357","lastModified":"1301901728000","name":"Geoffrey Sax","type":"Person","_key":"37190"} +{"label":"Alex Pettyfer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/383\/4bf7989c017a3c7730000383\/alex-pettyfer-profile.jpg","version":44,"id":"61363","lastModified":"1301901446000","name":"Alex Pettyfer","type":"Person","_key":"37191"} +{"label":"Ashley Walters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/449\/4d324bea5e73d63352001449\/ashley-walters-profile.jpg","version":32,"id":"61364","lastModified":"1301901490000","name":"Ashley Walters","type":"Person","_key":"37192"} +{"label":"Richard Huw","version":24,"id":"61366","lastModified":"1301901879000","name":"Richard Huw","type":"Person","_key":"37193"} +{"label":"Richard James","version":21,"id":"61367","lastModified":"1301901879000","name":"Richard James","type":"Person","_key":"37194"} +{"label":"Alex Barrett","version":21,"id":"61365","lastModified":"1301901879000","name":"Alex Barrett","type":"Person","_key":"37195"} +{"label":"Julian Bucknall","version":21,"id":"61368","lastModified":"1301902091000","name":"Julian Bucknall","type":"Person","_key":"37196"} +{"label":"Morgan Walters","version":21,"id":"61370","lastModified":"1301901879000","name":"Morgan Walters","type":"Person","_key":"37197"} +{"label":"Martin Herdman","version":21,"id":"61369","lastModified":"1301902091000","name":"Martin Herdman","type":"Person","_key":"37198"} +{"label":"Maximum Overdrive","description":"When a comet passes close to the earth, machines all over the world come alive and go on homicidal rampages. A group of people at a desolate truck stop are held hostage by a gang of homicidal 18-wheelers. The frightened people set out to defeat the killer machines ... or be killed by them.","id":"9980","runtime":97,"imdbId":"tt0091499","trailer":"http:\/\/www.youtube.com\/watch?v=sgUWCcXl89A","version":380,"lastModified":"1301903407000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42c\/4bc92aa8017a3c57fe01142c\/maximum-overdrive-mid.jpg","genre":"Action","title":"Maximum Overdrive","releaseDate":522633600000,"language":"en","type":"Movie","_key":"37199"} +{"label":"John Short","version":20,"id":"61410","lastModified":"1301902300000","name":"John Short","type":"Person","_key":"37200"} +{"label":"Kicking & Screaming","description":"Phil Weston has been unathletic his entire life. In college he failed at every sport that he tried out for. It looks like his 10-year old son, Sam, is following in his footsteps. But with becoming the coach of The Soccers, an already successful soccer team, everything changes.","id":"9981","runtime":95,"imdbId":"tt0384642","trailer":"http:\/\/www.youtube.com\/watch?v=JQANbc7nPjY","version":203,"lastModified":"1301904075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6df\/4c54a4fb7b9aa13d4a0006df\/kicking-screaming-mid.jpg","genre":"Comedy","title":"Kicking & Screaming","releaseDate":1115942400000,"language":"en","type":"Movie","_key":"37201"} +{"label":"Kate Walsh","version":36,"id":"61114","lastModified":"1301901170000","name":"Kate Walsh","type":"Person","_key":"37202"} +{"label":"Mike Ditka","version":20,"id":"61399","lastModified":"1301901879000","name":"Mike Ditka","type":"Person","_key":"37203"} +{"label":"Dylan McLaughlin","version":20,"id":"61400","lastModified":"1301901729000","name":"Dylan McLaughlin","type":"Person","_key":"37204"} +{"label":"Jeremy Bergman","version":20,"id":"61401","lastModified":"1301901728000","name":"Jeremy Bergman","type":"Person","_key":"37205"} +{"label":"Elliott Cho","version":20,"id":"61402","lastModified":"1301901729000","name":"Elliott Cho","type":"Person","_key":"37206"} +{"label":"Erik Walker","version":20,"id":"61403","lastModified":"1301902091000","name":"Erik Walker","type":"Person","_key":"37207"} +{"label":"Alessandro Ruggiero","version":20,"id":"61406","lastModified":"1301901537000","name":"Alessandro Ruggiero","type":"Person","_key":"37208"} +{"label":"Dallas McKinney","version":20,"id":"61404","lastModified":"1301902091000","name":"Dallas McKinney","type":"Person","_key":"37209"} +{"label":"Francesco Liotti","version":20,"id":"61405","lastModified":"1301901879000","name":"Francesco Liotti","type":"Person","_key":"37210"} +{"label":"Sammy Fine","version":20,"id":"61407","lastModified":"1301901879000","name":"Sammy Fine","type":"Person","_key":"37211"} +{"label":"Laura Kightlinger","version":23,"id":"61409","lastModified":"1301902268000","name":"Laura Kightlinger","type":"Person","_key":"37212"} +{"label":"Timmy Deters","version":21,"id":"61408","lastModified":"1301902091000","name":"Timmy Deters","type":"Person","_key":"37213"} +{"label":"Chicken Little","description":"After ruining his reputation with the town, a courageous chicken must come to the rescue of his fellow citizens when aliens start an invasion.","id":"9982","runtime":81,"imdbId":"tt0371606","version":303,"lastModified":"1301901236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c9\/4bc92ac7017a3c57fe0114c9\/chicken-little-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Chicken Little","releaseDate":1131062400000,"language":"en","tagline":"When it comes to saving the world, it helps to be a little chicken.","type":"Movie","_key":"37214"} +{"label":"Mark Dindal","version":57,"id":"61411","lastModified":"1302036944000","name":"Mark Dindal","type":"Person","_key":"37215"} +{"label":"Dan Molina","version":40,"id":"40347","lastModified":"1301901565000","name":"Dan Molina","type":"Person","_key":"37216"} +{"label":"Joe Whyte","version":26,"id":"61425","lastModified":"1301901675000","name":"Joe Whyte","type":"Person","_key":"37217"} +{"label":"Mark Walton","version":38,"id":"61423","lastModified":"1301901144000","name":"Mark Walton","type":"Person","_key":"37218"} +{"label":"Sean Elmore","version":25,"id":"61426","lastModified":"1301901640000","name":"Sean Elmore","type":"Person","_key":"37219"} +{"label":"Matthew Josten","version":27,"id":"61428","lastModified":"1301901546000","name":"Matthew Josten","type":"Person","_key":"37220"} +{"label":"Evan Dunn","version":25,"id":"61427","lastModified":"1301901640000","name":"Evan Dunn","type":"Person","_key":"37221"} +{"label":"City of Rott","description":"Desperately losing his mind while searching for a new pair of shoes, an old man and his trusty Walker wander the City of Rott, saturated with thousands of rotting zombies, driven to feed the blood-hungry worms residing in their skulls.","id":"9984","runtime":77,"imdbId":"tt0839762","version":143,"lastModified":"1301908573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcc\/4cff413d7b9aa15149005fcc\/city-of-rott-mid.jpg","genre":"Animation","title":"City of Rott","releaseDate":1154995200000,"language":"en","type":"Movie","_key":"37222"} +{"label":"Frank Sudol","version":20,"id":"61463","lastModified":"1301901995000","name":"Frank Sudol","type":"Person","_key":"37223"} +{"label":"Frank Sudol","version":20,"id":"61461","lastModified":"1301901993000","name":"Frank Sudol","type":"Person","_key":"37224"} +{"label":"Herr Ober!","description":"No overview found.","id":"9985","runtime":93,"imdbId":"tt0102028","version":66,"lastModified":"1301905637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87d\/4d5012b77b9aa13aba00b87d\/herr-ober-mid.jpg","genre":"Comedy","title":"Herr Ober!","releaseDate":696816000000,"language":"en","type":"Movie","_key":"37225"} +{"label":"Fred Unger","version":20,"id":"61466","lastModified":"1301902268000","name":"Fred Unger","type":"Person","_key":"37226"} +{"label":"Robert Meyer","version":20,"id":"38737","lastModified":"1301901613000","name":"Robert Meyer","type":"Person","_key":"37227"} +{"label":"Natalya Lapina","version":20,"id":"61470","lastModified":"1301901879000","name":"Natalya Lapina","type":"Person","_key":"37228"} +{"label":"Lutz Herkenrath","version":20,"id":"25434","lastModified":"1301902091000","name":"Lutz Herkenrath","type":"Person","_key":"37229"} +{"label":"August Schm\u00f6lzer","version":22,"id":"45694","lastModified":"1301902091000","name":"August Schm\u00f6lzer","type":"Person","_key":"37230"} +{"label":"Gerd Lohmeyer","version":20,"id":"38481","lastModified":"1301901879000","name":"Gerd Lohmeyer","type":"Person","_key":"37231"} +{"label":"Martin Zauner","version":20,"id":"61472","lastModified":"1301901879000","name":"Martin Zauner","type":"Person","_key":"37232"} +{"label":"Otto Gr\u00fcnmandl","version":23,"id":"61471","lastModified":"1301902268000","name":"Otto Gr\u00fcnmandl","type":"Person","_key":"37233"} +{"label":"Ellen Frank","version":20,"id":"26249","lastModified":"1301902091000","name":"Ellen Frank","type":"Person","_key":"37234"} +{"label":"J\u00fcrgen Polzin","version":20,"id":"61475","lastModified":"1301901879000","name":"J\u00fcrgen Polzin","type":"Person","_key":"37235"} +{"label":"Manon Strach\u00e9","version":20,"id":"61473","lastModified":"1301902268000","name":"Manon Strach\u00e9","type":"Person","_key":"37236"} +{"label":"Maria Peschek","version":20,"id":"61474","lastModified":"1301901879000","name":"Maria Peschek","type":"Person","_key":"37237"} +{"label":"Jutta Hildebrandt","version":20,"id":"61476","lastModified":"1301901879000","name":"Jutta Hildebrandt","type":"Person","_key":"37238"} +{"label":"Krzysztof Machowski","version":20,"id":"61477","lastModified":"1301902268000","name":"Krzysztof Machowski","type":"Person","_key":"37239"} +{"label":"Charlotte's Web","description":"Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.","id":"9986","runtime":97,"imdbId":"tt0413895","trailer":"http:\/\/www.youtube.com\/watch?v=ORMcpzpmLTU","version":273,"lastModified":"1301906794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/558\/4bc92af1017a3c57fe011558\/charlotte-s-web-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Charlotte's Web","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"37240"} +{"label":"Gary Winick","version":49,"id":"17046","lastModified":"1301901263000","name":"Gary Winick","type":"Person","_key":"37241"} +{"label":"Louis Corbett","version":25,"id":"61487","lastModified":"1301901615000","name":"Louis Corbett","type":"Person","_key":"37242"} +{"label":"Robyn Arthur","version":22,"id":"61489","lastModified":"1301901732000","name":"Robyn Arthur","type":"Person","_key":"37243"} +{"label":"Julian O'Donnell","version":22,"id":"61488","lastModified":"1301901732000","name":"Julian O'Donnell","type":"Person","_key":"37244"} +{"label":"Headspace","description":"A man (Christopher Denham) must use his newfound intellect to stop a brutal series of murders. ","id":"9987","runtime":89,"imdbId":"tt0417745","version":323,"lastModified":"1301904296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/565\/4bc92af3017a3c57fe011565\/headspace-mid.jpg","genre":"Horror","title":"Headspace","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"37245"} +{"label":"Andrew van den Houten","version":22,"id":"61490","lastModified":"1301901934000","name":"Andrew van den Houten","type":"Person","_key":"37246"} +{"label":"Dee Wallace","version":22,"id":"61509","lastModified":"1301901283000","name":"Dee Wallace","type":"Person","_key":"37247"} +{"label":"Christopher Denham","version":29,"id":"61510","lastModified":"1301901146000","name":"Christopher Denham","type":"Person","_key":"37248"} +{"label":"Erick Kastel","version":23,"id":"61508","lastModified":"1301902311000","name":"Erick Kastel","type":"Person","_key":"37249"} +{"label":"Karen Anderson","version":19,"id":"61511","lastModified":"1301902268000","name":"Karen Anderson","type":"Person","_key":"37250"} +{"label":"Jeanette Arnone","version":19,"id":"61512","lastModified":"1301902268000","name":"Jeanette Arnone","type":"Person","_key":"37251"} +{"label":"David Austin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d6\/4c8bf4795e73d609ed0000d6\/david-austin-profile.jpg","version":23,"id":"61515","lastModified":"1301901473000","name":"David Austin","type":"Person","_key":"37252"} +{"label":"Matthew Biancaniello","version":19,"id":"61514","lastModified":"1301902268000","name":"Matthew Biancaniello","type":"Person","_key":"37253"} +{"label":"Teodorina Bello","version":19,"id":"61516","lastModified":"1301902268000","name":"Teodorina Bello","type":"Person","_key":"37254"} +{"label":"Richard Blauvelt","version":19,"id":"61517","lastModified":"1301902268000","name":"Richard Blauvelt","type":"Person","_key":"37255"} +{"label":"Stephen Benson","version":19,"id":"61518","lastModified":"1301902268000","name":"Stephen Benson","type":"Person","_key":"37256"} +{"label":"Dr. R.D. Bowers","version":19,"id":"61519","lastModified":"1301902268000","name":"Dr. R.D. Bowers","type":"Person","_key":"37257"} +{"label":"Paul Boritzer","version":19,"id":"61520","lastModified":"1301902268000","name":"Paul Boritzer","type":"Person","_key":"37258"} +{"label":"Agata Bowman","version":19,"id":"61521","lastModified":"1301902268000","name":"Agata Bowman","type":"Person","_key":"37259"} +{"label":"Elwaldo Baptiste","version":21,"id":"61494","lastModified":"1301902213000","name":"Elwaldo Baptiste","type":"Person","_key":"37260"} +{"label":"Beerfest","description":"During a trip to Germany to scatter their grandfather's ashes, German-American brothers Todd and Jan discover Beerfest, the secret Olympics of downing stout, and want to enter the contest to defend their family's beer-guzzling honor. Their Old Country cousins sneer at the Yanks' chances, prompting the siblings to return to America to prepare for a showdown the following year.","id":"9988","runtime":110,"imdbId":"tt0486551","trailer":"http:\/\/www.youtube.com\/watch?v=4ZBJxhjqUgs","version":456,"lastModified":"1301902208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fb\/4cdec3617b9aa13c780000fb\/beerfest-mid.jpg","studio":"Broken Lizard Industries","genre":"Comedy","title":"Beerfest","releaseDate":1156464000000,"language":"en","tagline":"Prepare for the ultimate chug of war.","type":"Movie","_key":"37261"} +{"label":"Erik Stolhanske","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4ce019e07b9aa168b20000d4\/erik-stolhanske-profile.jpg","version":40,"id":"56252","lastModified":"1301901537000","name":"Erik Stolhanske","type":"Person","_key":"37262"} +{"label":"Kevin Heffernan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4ce019be7b9aa168b30000d3\/kevin-heffernan-profile.jpg","version":48,"id":"56251","lastModified":"1301901507000","name":"Kevin Heffernan","type":"Person","_key":"37263"} +{"label":"Paul Soter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d0\/4ce019d47b9aa168b20000d0\/paul-soter-profile.jpg","version":49,"id":"56253","lastModified":"1301901577000","name":"Paul Soter","type":"Person","_key":"37264"} +{"label":"Cameron Scher","version":22,"id":"61526","lastModified":"1301901728000","name":"Cameron Scher","type":"Person","_key":"37265"} +{"label":"Owain Yeoman","version":22,"id":"61527","lastModified":"1301901879000","name":"Owain Yeoman","type":"Person","_key":"37266"} +{"label":"Chris Moss","version":22,"id":"61529","lastModified":"1301901613000","name":"Chris Moss","type":"Person","_key":"37267"} +{"label":"Bjorn Johnson","version":22,"id":"61530","lastModified":"1301901613000","name":"Bjorn Johnson","type":"Person","_key":"37268"} +{"label":"Tom Tate","version":23,"id":"61528","lastModified":"1301901613000","name":"Tom Tate","type":"Person","_key":"37269"} +{"label":"Pab Schwendimann","version":22,"id":"61532","lastModified":"1301901613000","name":"Pab Schwendimann","type":"Person","_key":"37270"} +{"label":"Collin Thornton","version":22,"id":"61531","lastModified":"1301901613000","name":"Collin Thornton","type":"Person","_key":"37271"} +{"label":"Jessica Williams","version":26,"id":"61534","lastModified":"1301901613000","name":"Jessica Williams","type":"Person","_key":"37272"} +{"label":"Steven Michael Quezada","version":25,"id":"61535","lastModified":"1301902305000","name":"Steven Michael Quezada","type":"Person","_key":"37273"} +{"label":"Aaron Hendry","version":22,"id":"61536","lastModified":"1301901728000","name":"Aaron Hendry","type":"Person","_key":"37274"} +{"label":"Antitrust","description":"A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.","id":"9989","runtime":108,"imdbId":"tt0218817","trailer":"http:\/\/www.youtube.com\/watch?v=eS1EOjO9sgw","homepage":"http:\/\/www.antitrustthemovie.com\/","version":184,"lastModified":"1301903189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc92aff017a3c57fe01159e\/antitrust-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Crime","title":"Antitrust","releaseDate":979257600000,"language":"en","tagline":"Truth can be dangerous...Trust can be deadly.","type":"Movie","_key":"37275"} +{"label":"Yee Jee Tso","version":27,"id":"61541","lastModified":"1301901388000","name":"Yee Jee Tso","type":"Person","_key":"37276"} +{"label":"Nate Dushku","version":28,"id":"61542","lastModified":"1301901809000","name":"Nate Dushku","type":"Person","_key":"37277"} +{"label":"Scott Bellis","version":24,"id":"61543","lastModified":"1301901763000","name":"Scott Bellis","type":"Person","_key":"37278"} +{"label":"Rick Worthy","version":24,"id":"61545","lastModified":"1301901763000","name":"Rick Worthy","type":"Person","_key":"37279"} +{"label":"Ian Robison","version":33,"id":"61546","lastModified":"1301901770000","name":"Ian Robison","type":"Person","_key":"37280"} +{"label":"David Lovgren","version":24,"id":"61544","lastModified":"1301901763000","name":"David Lovgren","type":"Person","_key":"37281"} +{"label":"Ed Beechner","version":24,"id":"61548","lastModified":"1301901763000","name":"Ed Beechner","type":"Person","_key":"37282"} +{"label":"Linda Ko","version":24,"id":"61547","lastModified":"1301901763000","name":"Linda Ko","type":"Person","_key":"37283"} +{"label":"Walking Tall: Lone Justice","description":"In Dallas, witnesses against a drug-lord are murdered in a safe-house.The testimony of FBI agents becomes the only chance to keep him in prison. They are lodged in another safe-house, but the place is invaded and the agents are executed. However, Kate is only wounded, and her boyfriend Nick believes there is a traitor in the agency and takes her to his ranch to protect her life.","id":"9990","runtime":95,"imdbId":"tt0804551","version":220,"lastModified":"1301903927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a7\/4bc92aff017a3c57fe0115a7\/walking-tall-lone-justice-mid.jpg","genre":"Action","title":"Walking Tall: Lone Justice","releaseDate":1190678400000,"language":"en","type":"Movie","_key":"37284"} +{"label":"Tripp Reed","version":24,"id":"61549","lastModified":"1301901995000","name":"Tripp Reed","type":"Person","_key":"37285"} +{"label":"Elizabeth Barondes","version":24,"id":"61556","lastModified":"1301901700000","name":"Elizabeth Barondes","type":"Person","_key":"37286"} +{"label":"Rodrigo De la Rosa","version":23,"id":"61557","lastModified":"1301902091000","name":"Rodrigo De la Rosa","type":"Person","_key":"37287"} +{"label":"Haley Ramm","version":27,"id":"61555","lastModified":"1301901879000","name":"Haley Ramm","type":"Person","_key":"37288"} +{"label":"Jonny Cruz","version":23,"id":"61559","lastModified":"1301902268000","name":"Jonny Cruz","type":"Person","_key":"37289"} +{"label":"Jennifer Sipes","version":28,"id":"61562","lastModified":"1301901475000","name":"Jennifer Sipes","type":"Person","_key":"37290"} +{"label":"Christina Hearn","version":23,"id":"61558","lastModified":"1301902268000","name":"Christina Hearn","type":"Person","_key":"37291"} +{"label":"Benjamin Burdick","version":24,"id":"61561","lastModified":"1301901835000","name":"Benjamin Burdick","type":"Person","_key":"37292"} +{"label":"Mark W. Johnson","version":23,"id":"61560","lastModified":"1301901879000","name":"Mark W. Johnson","type":"Person","_key":"37293"} +{"label":"Jackson Hurst","version":21,"id":"61563","lastModified":"1301902296000","name":"Jackson Hurst","type":"Person","_key":"37294"} +{"label":"Merk Harbour","version":23,"id":"61564","lastModified":"1301902091000","name":"Merk Harbour","type":"Person","_key":"37295"} +{"label":"Timothy Vahle","version":24,"id":"61565","lastModified":"1301901645000","name":"Timothy Vahle","type":"Person","_key":"37296"} +{"label":"Lawrence Varnado","version":23,"id":"61566","lastModified":"1301902268000","name":"Lawrence Varnado","type":"Person","_key":"37297"} +{"label":"V\u00edctor Quintero","version":23,"id":"61569","lastModified":"1301902268000","name":"V\u00edctor Quintero","type":"Person","_key":"37298"} +{"label":"Edgar Arreola","version":23,"id":"61568","lastModified":"1301901879000","name":"Edgar Arreola","type":"Person","_key":"37299"} +{"label":"Michael Crabtree","version":23,"id":"61567","lastModified":"1301901879000","name":"Michael Crabtree","type":"Person","_key":"37300"} +{"label":"Russell Towery","version":23,"id":"61570","lastModified":"1301901728000","name":"Russell Towery","type":"Person","_key":"37301"} +{"label":"Mean Machine","description":"Disgraced ex-England captain (Danny 'Mean Machine' Meehan) is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. These prisoners have the chance to put one over the evil guards. The prisoners are lead by Danny and the whole of the prison, guards aside, are behind them. ","id":"9991","runtime":99,"imdbId":"tt0291341","version":182,"lastModified":"1301902996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b0\/4bc92b03017a3c57fe0115b0\/mean-machine-mid.jpg","genre":"Comedy","title":"Mean Machine","releaseDate":1009324800000,"language":"en","type":"Movie","_key":"37302"} +{"label":"Barry Skolnick","version":20,"id":"61571","lastModified":"1301902091000","name":"Barry Skolnick","type":"Person","_key":"37303"} +{"label":"John Forgeham","version":23,"id":"61584","lastModified":"1301983806000","name":"John Forgeham","type":"Person","_key":"37304"} +{"label":"Martin Wimbush","version":20,"id":"61585","lastModified":"1301902091000","name":"Martin Wimbush","type":"Person","_key":"37305"} +{"label":"David Reid","version":25,"id":"53678","lastModified":"1301901961000","name":"David Reid","type":"Person","_key":"37306"} +{"label":"Nicholas Moss","version":20,"id":"61589","lastModified":"1301902091000","name":"Nicholas Moss","type":"Person","_key":"37307"} +{"label":"David Cropman","version":20,"id":"61586","lastModified":"1301902091000","name":"David Cropman","type":"Person","_key":"37308"} +{"label":"Tim Perrin","version":20,"id":"61587","lastModified":"1301902091000","name":"Tim Perrin","type":"Person","_key":"37309"} +{"label":"Paul Mari","version":20,"id":"61588","lastModified":"1301902091000","name":"Paul Mari","type":"Person","_key":"37310"} +{"label":"Arthur and the Invisibles","description":"Ten-year-old Arthur, in a bid to save his grandfather's house from being demolished, goes looking for some much-fabled hidden treasure in the land of the Minimoys, a tiny people living in harmony with nature.","id":"9992","runtime":103,"imdbId":"tt0344854","trailer":"http:\/\/www.youtube.com\/watch?v=4jIF7IVddqA","version":334,"lastModified":"1301901472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4d28bf015e73d626c4002844\/arthur-et-les-minimoys-mid.jpg","studio":"Europa Corp.","genre":"Adventure","title":"Arthur and the Invisibles","releaseDate":1168560000000,"language":"en","type":"Movie","_key":"37311"} +{"label":"Ron Crawford","version":26,"id":"61605","lastModified":"1301901555000","name":"Ron Crawford","type":"Person","_key":"37312"} +{"label":"Penny Balfour","version":26,"id":"61604","lastModified":"1301901344000","name":"Penny Balfour","type":"Person","_key":"37313"} +{"label":"Saul Jephcott","version":25,"id":"61608","lastModified":"1301901555000","name":"Saul Jephcott","type":"Person","_key":"37314"} +{"label":"Adam LeFevre","version":36,"id":"61607","lastModified":"1301901528000","name":"Adam LeFevre","type":"Person","_key":"37315"} +{"label":"Lee Delong","version":23,"id":"61610","lastModified":"1301901256000","name":"Lee Delong","type":"Person","_key":"37316"} +{"label":"Doug Rand","version":25,"id":"61609","lastModified":"1301901555000","name":"Doug Rand","type":"Person","_key":"37317"} +{"label":"Jean Bejote Njamba","version":25,"id":"61606","lastModified":"1301901555000","name":"Jean Bejote Njamba","type":"Person","_key":"37318"} +{"label":"Robert William Bradford","version":28,"id":"61613","lastModified":"1301901554000","name":"Robert William Bradford","type":"Person","_key":"37319"} +{"label":"Oxmo Puccino","version":25,"id":"61612","lastModified":"1301901554000","name":"Oxmo Puccino","type":"Person","_key":"37320"} +{"label":"Eric Balliet","version":25,"id":"61611","lastModified":"1301901554000","name":"Eric Balliet","type":"Person","_key":"37321"} +{"label":"Bienvenue Kindoki","version":25,"id":"61615","lastModified":"1301901256000","name":"Bienvenue Kindoki","type":"Person","_key":"37322"} +{"label":"Jerry Di Giacomo","version":25,"id":"61614","lastModified":"1301901554000","name":"Jerry Di Giacomo","type":"Person","_key":"37323"} +{"label":"Val\u00e9ry Koko Kingue","version":25,"id":"61616","lastModified":"1301901256000","name":"Val\u00e9ry Koko Kingue","type":"Person","_key":"37324"} +{"label":"Aba Ko\u00efta","version":25,"id":"61622","lastModified":"1301901256000","name":"Aba Ko\u00efta","type":"Person","_key":"37325"} +{"label":"Mathar Licka Gueye","version":25,"id":"61618","lastModified":"1301901256000","name":"Mathar Licka Gueye","type":"Person","_key":"37326"} +{"label":"Tonio Descanvelle","version":26,"id":"61623","lastModified":"1301901248000","name":"Tonio Descanvelle","type":"Person","_key":"37327"} +{"label":"Vincent Mendy","version":26,"id":"61621","lastModified":"1301901268000","name":"Vincent Mendy","type":"Person","_key":"37328"} +{"label":"Little Fish","description":"Set in the Little Saigon district outside of Sydney, a woman trying to escape her past becomes embroiled in a drug deal.","id":"9993","runtime":114,"imdbId":"tt0382810","version":208,"lastModified":"1301905810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c6\/4bc92b05017a3c57fe0115c6\/little-fish-mid.jpg","genre":"Crime","title":"Little Fish","releaseDate":1126137600000,"language":"en","type":"Movie","_key":"37329"} +{"label":"Dustin Nguyen","version":23,"id":"61632","lastModified":"1301901699000","name":"Dustin Nguyen","type":"Person","_key":"37330"} +{"label":"Lisa McCune","version":21,"id":"61633","lastModified":"1301902178000","name":"Lisa McCune","type":"Person","_key":"37331"} +{"label":"Nina Liu","version":21,"id":"61634","lastModified":"1301902178000","name":"Nina Liu","type":"Person","_key":"37332"} +{"label":"Daniella Farinacci","version":21,"id":"61636","lastModified":"1301902091000","name":"Daniella Farinacci","type":"Person","_key":"37333"} +{"label":"Linda Cropper","version":20,"id":"61635","lastModified":"1301902091000","name":"Linda Cropper","type":"Person","_key":"37334"} +{"label":"Ferdinand Hoang","version":20,"id":"61637","lastModified":"1301902091000","name":"Ferdinand Hoang","type":"Person","_key":"37335"} +{"label":"Anh Do","version":20,"id":"61638","lastModified":"1301902268000","name":"Anh Do","type":"Person","_key":"37336"} +{"label":"Anthony Wong","version":26,"id":"61640","lastModified":"1301901527000","name":"Anthony Wong","type":"Person","_key":"37337"} +{"label":"Jason Chong","version":24,"id":"61639","lastModified":"1301902121000","name":"Jason Chong","type":"Person","_key":"37338"} +{"label":"Natasha Beaumont","version":20,"id":"61642","lastModified":"1301901879000","name":"Natasha Beaumont","type":"Person","_key":"37339"} +{"label":"Bic Runga","version":20,"id":"61641","lastModified":"1301902091000","name":"Bic Runga","type":"Person","_key":"37340"} +{"label":"Lisa Bailey","version":20,"id":"61643","lastModified":"1301902091000","name":"Lisa Bailey","type":"Person","_key":"37341"} +{"label":"Lan Tran","version":20,"id":"61644","lastModified":"1301902268000","name":"Lan Tran","type":"Person","_key":"37342"} +{"label":"The Great Mouse Detective","description":"In Victorian London, England, a little mouse girl's toymaker father is abducted by a peg-legged bat. She enlists the aid of Basil of Baker Street, the rodent world's answer to Sherlock Holmes. The case expands as Basil uncovers the crime's link to a plot against the Crown itself.","id":"9994","runtime":74,"imdbId":"tt0091149","trailer":"http:\/\/www.youtube.com\/watch?v=1626","version":130,"lastModified":"1301902533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e1\/4bc92b09017a3c57fe0115e1\/the-great-mouse-detective-mid.jpg","studio":"Walt Disney","genre":"Animation","title":"The Great Mouse Detective","releaseDate":520646400000,"language":"en","tagline":"London's crime-fighting ace on his most baffling case!","type":"Movie","_key":"37343"} +{"label":"Val Bettin","version":23,"id":"61674","lastModified":"1301901932000","name":"Val Bettin","type":"Person","_key":"37344"} +{"label":"Susanne Pollatschek","version":23,"id":"61675","lastModified":"1301901932000","name":"Susanne Pollatschek","type":"Person","_key":"37345"} +{"label":"Candy Candido","version":23,"id":"61676","lastModified":"1301902303000","name":"Candy Candido","type":"Person","_key":"37346"} +{"label":"Burny Mattinson","version":60,"id":"61677","lastModified":"1301901703000","name":"Burny Mattinson","type":"Person","_key":"37347"} +{"label":"David Michener","version":46,"id":"61678","lastModified":"1301901690000","name":"David Michener","type":"Person","_key":"37348"} +{"label":"Turn It Up","description":"No overview found.","id":"9995","runtime":86,"imdbId":"tt0216772","version":153,"lastModified":"1302022753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/378\/4d3e5c0a5e73d622d8004378\/turn-it-up-mid.jpg","genre":"Action","title":"Turn It Up","releaseDate":968198400000,"language":"en","type":"Movie","_key":"37349"} +{"label":"Robert Adetuyi","version":28,"id":"31120","lastModified":"1301901573000","name":"Robert Adetuyi","type":"Person","_key":"37350"} +{"label":"John Ralston","version":21,"id":"33343","lastModified":"1301901613000","name":"John Ralston","type":"Person","_key":"37351"} +{"label":"Eugene Clark","version":26,"id":"61660","lastModified":"1301902302000","name":"Eugene Clark","type":"Person","_key":"37352"} +{"label":"Derwin Jordan","version":20,"id":"61662","lastModified":"1301902268000","name":"Derwin Jordan","type":"Person","_key":"37353"} +{"label":"Patrice Goodman","version":20,"id":"61661","lastModified":"1301902091000","name":"Patrice Goodman","type":"Person","_key":"37354"} +{"label":"Harry-O","version":20,"id":"61665","lastModified":"1301902090000","name":"Harry-O","type":"Person","_key":"37355"} +{"label":"Elain R. Graham","version":20,"id":"61664","lastModified":"1301902267000","name":"Elain R. Graham","type":"Person","_key":"37356"} +{"label":"Faith Evans","version":21,"id":"61663","lastModified":"1301902090000","name":"Faith Evans","type":"Person","_key":"37357"} +{"label":"Melyssa Ford","version":20,"id":"61667","lastModified":"1301902267000","name":"Melyssa Ford","type":"Person","_key":"37358"} +{"label":"Jeff Jones","version":20,"id":"61666","lastModified":"1301902267000","name":"Jeff Jones","type":"Person","_key":"37359"} +{"label":"LeRoy Allen","version":20,"id":"61668","lastModified":"1301902090000","name":"LeRoy Allen","type":"Person","_key":"37360"} +{"label":"Shinehead","version":20,"id":"61669","lastModified":"1301902267000","name":"Shinehead","type":"Person","_key":"37361"} +{"label":"DJ Skribble","version":20,"id":"61670","lastModified":"1301902267000","name":"DJ Skribble","type":"Person","_key":"37362"} +{"label":"Conrad Dunn","version":26,"id":"61671","lastModified":"1301901950000","name":"Conrad Dunn","type":"Person","_key":"37363"} +{"label":"Pras","version":22,"id":"61649","lastModified":"1301902268000","name":"Pras","type":"Person","_key":"37364"} +{"label":"Gabriel","description":"Gabriel tells the story of an archangel who fights to bring light back to purgatory - a place where darkness rules - and save the souls of the city's inhabitants.","id":"9997","runtime":109,"imdbId":"tt0857376","version":269,"lastModified":"1301903561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ea\/4bc92b0a017a3c57fe0115ea\/gabriel-mid.jpg","genre":"Action","title":"Gabriel","releaseDate":1195084800000,"language":"en","type":"Movie","_key":"37365"} +{"label":"Shane Abbess","version":21,"id":"61760","lastModified":"1301902090000","name":"Shane Abbess","type":"Person","_key":"37366"} +{"label":"Dwaine Stevenson","version":21,"id":"61776","lastModified":"1301901728000","name":"Dwaine Stevenson","type":"Person","_key":"37367"} +{"label":"Jack Campbell","version":32,"id":"5693","lastModified":"1301901341000","name":"Jack Campbell","type":"Person","_key":"37368"} +{"label":"Erika Heynatz","version":21,"id":"61779","lastModified":"1301902267000","name":"Erika Heynatz","type":"Person","_key":"37369"} +{"label":"Andy Whitfield","version":36,"id":"61777","lastModified":"1301901703000","name":"Andy Whitfield","type":"Person","_key":"37370"} +{"label":"Samantha Noble","version":25,"id":"61778","lastModified":"1301902121000","name":"Samantha Noble","type":"Person","_key":"37371"} +{"label":"Michael Piccirilli","version":21,"id":"61780","lastModified":"1301902090000","name":"Michael Piccirilli","type":"Person","_key":"37372"} +{"label":"Harry Pavlidis","version":21,"id":"61781","lastModified":"1301902090000","name":"Harry Pavlidis","type":"Person","_key":"37373"} +{"label":"Kevin Copeland","version":22,"id":"61782","lastModified":"1301902090000","name":"Kevin Copeland","type":"Person","_key":"37374"} +{"label":"Matt Hylton Todd","version":21,"id":"61786","lastModified":"1301902267000","name":"Matt Hylton Todd","type":"Person","_key":"37375"} +{"label":"Amy Mathews","version":21,"id":"61787","lastModified":"1301901879000","name":"Amy Mathews","type":"Person","_key":"37376"} +{"label":"Valentino del Toro","version":21,"id":"61785","lastModified":"1301902090000","name":"Valentino del Toro","type":"Person","_key":"37377"} +{"label":"Goran D. Kleut","version":21,"id":"61784","lastModified":"1301902090000","name":"Goran D. Kleut","type":"Person","_key":"37378"} +{"label":"Brendan Clearkin","version":21,"id":"61783","lastModified":"1301902090000","name":"Brendan Clearkin","type":"Person","_key":"37379"} +{"label":"Christian Clark","version":21,"id":"61788","lastModified":"1301902267000","name":"Christian Clark","type":"Person","_key":"37380"} +{"label":"Amber Gokken","version":21,"id":"61790","lastModified":"1301902090000","name":"Amber Gokken","type":"Person","_key":"37381"} +{"label":"Az Jackson","version":21,"id":"61793","lastModified":"1301902090000","name":"Az Jackson","type":"Person","_key":"37382"} +{"label":"Johan Earl","version":21,"id":"61789","lastModified":"1301902267000","name":"Johan Earl","type":"Person","_key":"37383"} +{"label":"Denai Gracie","version":21,"id":"61791","lastModified":"1301902267000","name":"Denai Gracie","type":"Person","_key":"37384"} +{"label":"Richard Huggett","version":22,"id":"61792","lastModified":"1301902267000","name":"Richard Huggett","type":"Person","_key":"37385"} +{"label":"Aaron Scully","version":21,"id":"61794","lastModified":"1301902267000","name":"Aaron Scully","type":"Person","_key":"37386"} +{"label":"Forbidden Warrior","description":"No overview found.","id":"9998","runtime":91,"imdbId":"tt0371675","version":167,"lastModified":"1301906195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4c1c9e247b9aa117c80000d4\/forbidden-warrior-mid.jpg","genre":"Adventure","title":"Forbidden Warrior","releaseDate":1072915200000,"language":"en","tagline":"In The Soul Of A Woman Beats The Heart Of A Hero.","type":"Movie","_key":"37387"} +{"label":"Jimmy Nickerson","version":38,"id":"16522","lastModified":"1302061977000","name":"Jimmy Nickerson","type":"Person","_key":"37388"} +{"label":"Marie Matiko","version":22,"id":"61696","lastModified":"1301901766000","name":"Marie Matiko","type":"Person","_key":"37389"} +{"label":"Homie Doroodian","version":20,"id":"61699","lastModified":"1301902376000","name":"Homie Doroodian","type":"Person","_key":"37390"} +{"label":"Vladimir Cuk","version":20,"id":"61700","lastModified":"1301902387000","name":"Vladimir Cuk","type":"Person","_key":"37391"} +{"label":"Maximo Morrone","version":20,"id":"42929","lastModified":"1301902197000","name":"Maximo Morrone","type":"Person","_key":"37392"} +{"label":"Kay E. Kuter","version":19,"id":"61702","lastModified":"1301902304000","name":"Kay E. Kuter","type":"Person","_key":"37393"} +{"label":"Ron Yuan","version":30,"id":"61703","lastModified":"1301902164000","name":"Ron Yuan","type":"Person","_key":"37394"} +{"label":"Woon Young Park","version":22,"id":"61705","lastModified":"1301902304000","name":"Woon Young Park","type":"Person","_key":"37395"} +{"label":"Al Leong","version":19,"id":"61704","lastModified":"1301902304000","name":"Al Leong","type":"Person","_key":"37396"} +{"label":"Christine Chow","version":19,"id":"61707","lastModified":"1301902304000","name":"Christine Chow","type":"Person","_key":"37397"} +{"label":"Minglie Chen","version":19,"id":"61706","lastModified":"1301902304000","name":"Minglie Chen","type":"Person","_key":"37398"} +{"label":"The Free Will","description":"After nine years in psychiatric detention Theo, who has brutally assaulted and raped three women, is released. Living in a supervised community, he connects well with his social worker Sascha, finds a job at a print shop and even a girlfriend, Nettie, his principal's brittle and estranged daughter. But even though superficially everything seems to work out Theo's seething rage remains ready to erupt.","id":"9999","runtime":163,"imdbId":"tt0499101","homepage":"http:\/\/www.derfreiewille.com\/","version":115,"lastModified":"1301906620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/600\/4bc92b0e017a3c57fe011600\/der-freie-wille-mid.jpg","studio":"Colonia Media","genre":"Drama","title":"The Free Will","releaseDate":1156377600000,"language":"en","type":"Movie","_key":"37399"} +{"label":"Matthias Glasner","version":33,"id":"61750","lastModified":"1301901537000","name":"Matthias Glasner","type":"Person","_key":"37400"} +{"label":"Maya Bothe","version":20,"id":"50956","lastModified":"1301901879000","name":"Maya Bothe","type":"Person","_key":"37401"} +{"label":"Anne-Kathrin Golinsky","version":20,"id":"61814","lastModified":"1301902090000","name":"Anne-Kathrin Golinsky","type":"Person","_key":"37402"} +{"label":"Anna De Carlo","version":20,"id":"61816","lastModified":"1301902090000","name":"Anna De Carlo","type":"Person","_key":"37403"} +{"label":"Frank Wickermann","version":20,"id":"61815","lastModified":"1301901879000","name":"Frank Wickermann","type":"Person","_key":"37404"} +{"label":"Bernadette B\u00fcllmann","version":20,"id":"61817","lastModified":"1301901879000","name":"Bernadette B\u00fcllmann","type":"Person","_key":"37405"} +{"label":"Marcel Batangtaris","version":20,"id":"61818","lastModified":"1301902090000","name":"Marcel Batangtaris","type":"Person","_key":"37406"} +{"label":"Andreas Laurenz Maier","version":20,"id":"61819","lastModified":"1301902090000","name":"Andreas Laurenz Maier","type":"Person","_key":"37407"} +{"label":"La estrategia del caracol","description":"A group of tenants living in an old house are confronted with having to move out due to a renovation project the city has undertaken. The tenants decide to unite and come up with a strategy, but in the process\u2014while the landlord and his aggressive attorney are chasing them\u2014the tenants transform into the opposite of who they once were. ","id":"10000","runtime":116,"imdbId":"tt0109747","version":93,"lastModified":"1299532854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/609\/4bc92b0f017a3c57fe011609\/la-estrategia-del-caracol-mid.jpg","studio":"Caracol Televisi\u00f3n","genre":"Comedy","title":"La estrategia del caracol","releaseDate":756777600000,"language":"en","type":"Movie","_key":"37408"} +{"label":"Sergio Cabrera","version":21,"id":"61710","lastModified":"1299503402000","name":"Sergio Cabrera","type":"Person","_key":"37409"} +{"label":"Gustavo Angarita","version":16,"id":"61724","lastModified":"1299504713000","name":"Gustavo Angarita","type":"Person","_key":"37410"} +{"label":"Eduardo Arias","version":16,"id":"61726","lastModified":"1299504713000","name":"Eduardo Arias","type":"Person","_key":"37411"} +{"label":"Rosa Virginia Bonilla","version":16,"id":"61728","lastModified":"1299502443000","name":"Rosa Virginia Bonilla","type":"Person","_key":"37412"} +{"label":"Fausto Cabrera","version":16,"id":"61729","lastModified":"1299502442000","name":"Fausto Cabrera","type":"Person","_key":"37413"} +{"label":"Jaime Azc\u00e1rate","version":16,"id":"61727","lastModified":"1299504713000","name":"Jaime Azc\u00e1rate","type":"Person","_key":"37414"} +{"label":"Jairo Camargo","version":16,"id":"61730","lastModified":"1299502442000","name":"Jairo Camargo","type":"Person","_key":"37415"} +{"label":"Ivan Castano","version":16,"id":"61731","lastModified":"1299502442000","name":"Ivan Castano","type":"Person","_key":"37416"} +{"label":"Mauricio Castano","version":16,"id":"61732","lastModified":"1299504713000","name":"Mauricio Castano","type":"Person","_key":"37417"} +{"label":"Yesid Ferrara","version":16,"id":"61736","lastModified":"1299504713000","name":"Yesid Ferrara","type":"Person","_key":"37418"} +{"label":"Sain Castro","version":16,"id":"61733","lastModified":"1299504713000","name":"Sain Castro","type":"Person","_key":"37419"} +{"label":"Luis Chiape","version":16,"id":"61734","lastModified":"1299502442000","name":"Luis Chiape","type":"Person","_key":"37420"} +{"label":"Jos\u00e9 Garz\u00f3n","version":16,"id":"61738","lastModified":"1299502442000","name":"Jos\u00e9 Garz\u00f3n","type":"Person","_key":"37421"} +{"label":"Armando Floyd","version":16,"id":"61737","lastModified":"1299502442000","name":"Armando Floyd","type":"Person","_key":"37422"} +{"label":"Edilberto G\u00f3mez","version":16,"id":"61740","lastModified":"1299502441000","name":"Edilberto G\u00f3mez","type":"Person","_key":"37423"} +{"label":"Clemencia Gregory","version":16,"id":"61741","lastModified":"1299502441000","name":"Clemencia Gregory","type":"Person","_key":"37424"} +{"label":"Vicky Hern\u00e1ndez","version":16,"id":"61743","lastModified":"1299502441000","name":"Vicky Hern\u00e1ndez","type":"Person","_key":"37425"} +{"label":"Delfina Guido","version":16,"id":"61742","lastModified":"1299502441000","name":"Delfina Guido","type":"Person","_key":"37426"} +{"label":"Jorge Herrera","version":16,"id":"61745","lastModified":"1299502441000","name":"Jorge Herrera","type":"Person","_key":"37427"} +{"label":"Humberto Dorado","version":18,"id":"61712","lastModified":"1299502837000","name":"Humberto Dorado","type":"Person","_key":"37428"} +{"label":"Young Einstein","description":"Albert Einstein is the son of a Tasmanian apple farmer, who discovers the secret of splitting the beer atom to put the bubbles back into beer. When Albert travels to Sydney to patent his invention he meets beatuiful French scientist Marie Curie, as well as several unscrupulous types who try to take advantage of the naive genius and his invention. ","id":"10001","runtime":91,"imdbId":"tt0096486","trailer":"http:\/\/www.youtube.com\/watch?v=dEL_BT_Z6Yg","version":204,"lastModified":"1301902447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/616\/4bc92b11017a3c57fe011616\/young-einstein-mid.jpg","genre":"Comedy","title":"Young Einstein","releaseDate":598147200000,"language":"en","tagline":"E=mc\u00b2","type":"Movie","_key":"37429"} +{"label":"Yahoo Serious","version":36,"id":"61797","lastModified":"1301902216000","name":"Yahoo Serious","type":"Person","_key":"37430"} +{"label":"Odile Le Clezio","version":22,"id":"61808","lastModified":"1301901649000","name":"Odile Le Clezio","type":"Person","_key":"37431"} +{"label":"Peewee Wilson","version":22,"id":"61809","lastModified":"1301902336000","name":"Peewee Wilson","type":"Person","_key":"37432"} +{"label":"Su Cruickshank","version":23,"id":"61810","lastModified":"1301901954000","name":"Su Cruickshank","type":"Person","_key":"37433"} +{"label":"Mona Lisa","description":"George has just been released from prison, and manages to get a job driving an expensive call girl from customer to customer. Initially they don't get on - he doesn't fit in with the high class customers Simone services. Will they ever get on ?","id":"10002","runtime":104,"imdbId":"tt0091538","trailer":"http:\/\/www.youtube.com\/watch?v=F8CAdm_1gZA","version":226,"lastModified":"1301902931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61f\/4bc92b11017a3c57fe01161f\/mona-lisa-mid.jpg","genre":"Crime","title":"Mona Lisa","releaseDate":519004800000,"language":"en","type":"Movie","_key":"37434"} +{"label":"Cathy Tyson","version":24,"id":"61840","lastModified":"1301901813000","name":"Cathy Tyson","type":"Person","_key":"37435"} +{"label":"The Saint","description":"Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow","id":"10003","runtime":111,"imdbId":"tt0120053","trailer":"http:\/\/www.youtube.com\/watch?v=7NmLNNgK-sE","version":160,"lastModified":"1301902779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/628\/4bc92b15017a3c57fe011628\/the-saint-mid.jpg","genre":"Action","title":"The Saint","releaseDate":860025600000,"language":"en","tagline":"Never reveal your name. Never turn your back. Never surrender your heart.","type":"Movie","_key":"37436"} +{"label":"Desperation","description":"When a sheriff arrests a writer, a family, a couple, and a hitchiker and throws them in a jail cell in the deserted town of Desperation, they must fight for their lives.","id":"10004","runtime":131,"imdbId":"tt0129871","version":175,"lastModified":"1301902093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/636\/4bc92b16017a3c57fe011636\/desperation-mid.jpg","genre":"Fantasy","title":"Desperation","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"37437"} +{"label":"Mick Garris","version":54,"id":"61824","lastModified":"1301901564000","name":"Mick Garris","type":"Person","_key":"37438"} +{"label":"Sammi Hanratty","version":25,"id":"61831","lastModified":"1301901493000","name":"Sammi Hanratty","type":"Person","_key":"37439"} +{"label":"Shane Haboucha","version":20,"id":"61828","lastModified":"1301902267000","name":"Shane Haboucha","type":"Person","_key":"37440"} +{"label":"Kelly Overton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed9\/4d2815c07b9aa134e0001ed9\/kelly-overton-profile.jpg","version":29,"id":"61829","lastModified":"1301901594000","name":"Kelly Overton","type":"Person","_key":"37441"} +{"label":"Sylva Kelegian","version":20,"id":"61830","lastModified":"1301902267000","name":"Sylva Kelegian","type":"Person","_key":"37442"} +{"label":"Ewan Chung","version":20,"id":"61833","lastModified":"1301901879000","name":"Ewan Chung","type":"Person","_key":"37443"} +{"label":"Darren Victoria","version":20,"id":"61837","lastModified":"1301902267000","name":"Darren Victoria","type":"Person","_key":"37444"} +{"label":"Alain Uy","version":20,"id":"61834","lastModified":"1301902267000","name":"Alain Uy","type":"Person","_key":"37445"} +{"label":"Tom Parker","version":20,"id":"61836","lastModified":"1301902267000","name":"Tom Parker","type":"Person","_key":"37446"} +{"label":"Glenn R. Wilder","version":18,"id":"61838","lastModified":"1301901728000","name":"Glenn R. Wilder","type":"Person","_key":"37447"} +{"label":"Clint James","version":20,"id":"61839","lastModified":"1301902267000","name":"Clint James","type":"Person","_key":"37448"} +{"label":"Behind Enemy Lines II: Axis of Evil","description":"Navy SEALS, headed by Lt. Bobby James, are dispatched to North Korea on a covert mission, all in an effort to take out a missile site...","id":"10005","runtime":96,"imdbId":"tt0497329","homepage":"http:\/\/www.foxhome.com\/behindenemylinesiiaxisofevil","version":214,"lastModified":"1301903357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63f\/4bc92b17017a3c57fe01163f\/behind-enemy-lines-ii-axis-of-evil-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Behind Enemy Lines II: Axis of Evil","releaseDate":1161043200000,"language":"en","type":"Movie","_key":"37449"} +{"label":"James Dodson","version":30,"id":"61848","lastModified":"1301902209000","name":"James Dodson","type":"Person","_key":"37450"} +{"label":"Nicholas Gonzalez","version":35,"id":"61852","lastModified":"1301901728000","name":"Nicholas Gonzalez","type":"Person","_key":"37451"} +{"label":"Shane Edelman","version":23,"id":"61854","lastModified":"1301902267000","name":"Shane Edelman","type":"Person","_key":"37452"} +{"label":"Michael Simpson","version":42,"id":"7478","lastModified":"1301901260000","name":"Michael Simpson","type":"Person","_key":"37453"} +{"label":"Kenneth Choi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ad\/4ca332037b9aa168d00002ad\/kenneth-choi-profile.jpg","biography":"Attended Purdue University as an accounting major and left to pursue an acting career.\n\nBorn and raised in Chicago.\u00a0","version":41,"birthday":"56761200000","id":"41561","birthplace":"Chicago, Illinois, USA","lastModified":"1301901606000","name":"Kenneth Choi","type":"Person","_key":"37454"} +{"label":"Mykel Shannon Jenkins","version":23,"id":"61856","lastModified":"1301901459000","name":"Mykel Shannon Jenkins","type":"Person","_key":"37455"} +{"label":"Joseph Steven Yang","version":21,"id":"61857","lastModified":"1301901879000","name":"Joseph Steven Yang","type":"Person","_key":"37456"} +{"label":"Dennis James Lee","version":19,"id":"61858","lastModified":"1301902267000","name":"Dennis James Lee","type":"Person","_key":"37457"} +{"label":"Hyun Joo Shin","version":21,"id":"61859","lastModified":"1301902267000","name":"Hyun Joo Shin","type":"Person","_key":"37458"} +{"label":"Marianne Stanicheva","version":26,"id":"61860","lastModified":"1301902303000","name":"Marianne Stanicheva","type":"Person","_key":"37459"} +{"label":"Vlado Mihailov","version":21,"id":"61861","lastModified":"1301901728000","name":"Vlado Mihailov","type":"Person","_key":"37460"} +{"label":"Michael McCoy","version":24,"id":"61862","lastModified":"1301902090000","name":"Michael McCoy","type":"Person","_key":"37461"} +{"label":"Wild Seven","description":"In this darkly karmic vision of Arizona, a man who breathes nothing but ill will begins a noxious domino...","id":"10006","runtime":78,"imdbId":"tt0464320","version":188,"lastModified":"1301902978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64d\/4bc92b18017a3c57fe01164d\/wild-seven-mid.jpg","studio":"Beat Pirate Films","genre":"Action","title":"Wild Seven","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"37462"} +{"label":"James M. Hausler","version":27,"id":"61877","lastModified":"1301901879000","name":"James M. Hausler","type":"Person","_key":"37463"} +{"label":"Meghan Ashley","version":19,"id":"61878","lastModified":"1301902267000","name":"Meghan Ashley","type":"Person","_key":"37464"} +{"label":"Timothy Avent","version":19,"id":"61879","lastModified":"1301902090000","name":"Timothy Avent","type":"Person","_key":"37465"} +{"label":"Lucie Arnaz","version":20,"id":"61880","lastModified":"1301902223000","name":"Lucie Arnaz","type":"Person","_key":"37466"} +{"label":"Steve Gresser","version":20,"id":"61882","lastModified":"1301902366000","name":"Steve Gresser","type":"Person","_key":"37467"} +{"label":"Sean Galdo","version":21,"id":"61884","lastModified":"1301902090000","name":"Sean Galdo","type":"Person","_key":"37468"} +{"label":"Christopher M. Clark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d2\/4d7e32bc7b9aa11a0801a3d2\/christopher-m-clark-profile.jpg","version":21,"id":"61881","lastModified":"1301902267000","name":"Christopher M. Clark","type":"Person","_key":"37469"} +{"label":"Larry 'Tank' Jones","version":19,"id":"61883","lastModified":"1301902090000","name":"Larry 'Tank' Jones","type":"Person","_key":"37470"} +{"label":"Heather Kole","version":19,"id":"61886","lastModified":"1301902267000","name":"Heather Kole","type":"Person","_key":"37471"} +{"label":"Deuandra T. Brown","version":19,"id":"61885","lastModified":"1301902267000","name":"Deuandra T. Brown","type":"Person","_key":"37472"} +{"label":"Christina Jo'Leigh","version":17,"id":"61888","lastModified":"1301902267000","name":"Christina Jo'Leigh","type":"Person","_key":"37473"} +{"label":"Aldred Montoya","version":19,"id":"61890","lastModified":"1301902090000","name":"Aldred Montoya","type":"Person","_key":"37474"} +{"label":"Michael Mandell","version":21,"id":"61887","lastModified":"1301902267000","name":"Michael Mandell","type":"Person","_key":"37475"} +{"label":"Robert James Raymond","version":19,"id":"61891","lastModified":"1301902267000","name":"Robert James Raymond","type":"Person","_key":"37476"} +{"label":"Tyler Parkinson","version":19,"id":"61889","lastModified":"1301902267000","name":"Tyler Parkinson","type":"Person","_key":"37477"} +{"label":"Cathy Rankin","version":20,"id":"61892","lastModified":"1301902267000","name":"Cathy Rankin","type":"Person","_key":"37478"} +{"label":"David Sotelo","version":19,"id":"61893","lastModified":"1301902267000","name":"David Sotelo","type":"Person","_key":"37479"} +{"label":"Il collezionista di occhi","description":"A group of delinquents are sent to clean the Blackwell Hotel. Little do they know reclusive psychopath Jacob Goodnight (Jacobs) has holed away in the rotting hotel. When one of the teens is captured, those who remain -- a group that includes the cop who put a bullet in Goodnight's head four years ago -- band together to survive against the brutal killer.","id":"10007","runtime":84,"imdbId":"tt0437179","version":252,"lastModified":"1301902967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43d\/4d460da95e73d65ee400043d\/see-no-evil-mid.jpg","genre":"Action","title":"Il collezionista di occhi","releaseDate":1147996800000,"language":"en","tagline":"This summer. Evil gets raw.","type":"Movie","_key":"37480"} +{"label":"Gregory Dark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f7\/4ce1b9f45e73d60f710003f7\/gregory-dark-profile.jpg","version":35,"id":"61894","lastModified":"1301970819000","name":"Gregory Dark","type":"Person","_key":"37481"} +{"label":"Glenn Jacobs","version":23,"id":"61903","lastModified":"1301902121000","name":"Glenn Jacobs","type":"Person","_key":"37482"} +{"label":"Christina Vidal","version":26,"id":"61904","lastModified":"1301901547000","name":"Christina Vidal","type":"Person","_key":"37483"} +{"label":"Steven Vidler","version":25,"id":"61905","lastModified":"1301902298000","name":"Steven Vidler","type":"Person","_key":"37484"} +{"label":"Cecily Polson","version":23,"id":"61906","lastModified":"1301902121000","name":"Cecily Polson","type":"Person","_key":"37485"} +{"label":"Luke Pegler","version":22,"id":"61907","lastModified":"1301902121000","name":"Luke Pegler","type":"Person","_key":"37486"} +{"label":"Penny McNamee","version":22,"id":"61908","lastModified":"1301902121000","name":"Penny McNamee","type":"Person","_key":"37487"} +{"label":"Mikhael Wilder","version":22,"id":"61909","lastModified":"1301902298000","name":"Mikhael Wilder","type":"Person","_key":"37488"} +{"label":"Craig Horner","version":22,"id":"61910","lastModified":"1301902298000","name":"Craig Horner","type":"Person","_key":"37489"} +{"label":"Tiffany Lamb","version":22,"id":"61911","lastModified":"1301902121000","name":"Tiffany Lamb","type":"Person","_key":"37490"} +{"label":"Sam Cotton","version":22,"id":"61912","lastModified":"1301902298000","name":"Sam Cotton","type":"Person","_key":"37491"} +{"label":"Zoe Ventoura","version":22,"id":"61914","lastModified":"1301902121000","name":"Zoe Ventoura","type":"Person","_key":"37492"} +{"label":"Cory Robinson","version":22,"id":"61913","lastModified":"1301902298000","name":"Cory Robinson","type":"Person","_key":"37493"} +{"label":"Trent Huen","version":22,"id":"61917","lastModified":"1301902121000","name":"Trent Huen","type":"Person","_key":"37494"} +{"label":"Tim McDonald","version":22,"id":"61916","lastModified":"1301902298000","name":"Tim McDonald","type":"Person","_key":"37495"} +{"label":"Annalise Woods","version":22,"id":"61915","lastModified":"1301902121000","name":"Annalise Woods","type":"Person","_key":"37496"} +{"label":"Matthew Okine","version":22,"id":"61918","lastModified":"1301902121000","name":"Matthew Okine","type":"Person","_key":"37497"} +{"label":"An American Haunting","description":"Based on the true events of the only case in US History where a spirit caused the death of a man.","id":"10008","runtime":91,"imdbId":"tt0429573","version":239,"lastModified":"1301902910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4c74f5d85e73d65f7b000dd7\/an-american-haunting-mid.jpg","studio":"Allan Zeman Productions","genre":"Horror","title":"An American Haunting","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"37498"} +{"label":"Courtney Solomon","version":32,"id":"61921","lastModified":"1301901856000","name":"Courtney Solomon","type":"Person","_key":"37499"} +{"label":"Thom Fell","version":23,"id":"61937","lastModified":"1301901879000","name":"Thom Fell","type":"Person","_key":"37500"} +{"label":"Zoe Thorne","version":21,"id":"61938","lastModified":"1301902267000","name":"Zoe Thorne","type":"Person","_key":"37501"} +{"label":"Sam Alexander","version":21,"id":"61939","lastModified":"1301901879000","name":"Sam Alexander","type":"Person","_key":"37502"} +{"label":"Miquel Brown","version":21,"id":"61940","lastModified":"1301902267000","name":"Miquel Brown","type":"Person","_key":"37503"} +{"label":"Madalina Stan","version":21,"id":"61941","lastModified":"1301902090000","name":"Madalina Stan","type":"Person","_key":"37504"} +{"label":"Vlad Cruceru","version":21,"id":"61943","lastModified":"1301902090000","name":"Vlad Cruceru","type":"Person","_key":"37505"} +{"label":"Alin Rosca","version":21,"id":"61944","lastModified":"1301902090000","name":"Alin Rosca","type":"Person","_key":"37506"} +{"label":"Andrei Serban","version":21,"id":"61945","lastModified":"1301902090000","name":"Andrei Serban","type":"Person","_key":"37507"} +{"label":"Isabelle Almgren-Dor\u00e9","version":21,"id":"61946","lastModified":"1301902090000","name":"Isabelle Almgren-Dor\u00e9","type":"Person","_key":"37508"} +{"label":"Susan Almgren","version":22,"id":"61947","lastModified":"1301901941000","name":"Susan Almgren","type":"Person","_key":"37509"} +{"label":"Howard Rosenstein","version":23,"id":"61948","lastModified":"1301901613000","name":"Howard Rosenstein","type":"Person","_key":"37510"} +{"label":"Brother Bear","description":"The son of an Indian chief killed by a bear vows vengeance, but is transformed by spirits into the very thing he sought to slay. Seeing the world through a bear's eyes, the young man learns valuable lessons about the cycle of life.","id":"10009","runtime":82,"imdbId":"tt0328880","trailer":"http:\/\/www.youtube.com\/watch?v=s_f2tEN2UuI","version":186,"lastModified":"1301901535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/393\/4d05b4b45e73d621a4003393\/brother-bear-mid.jpg","genre":"Adventure","title":"Brother Bear","releaseDate":1067644800000,"language":"en","tagline":"The story of a boy who became a man by becoming a bear.","type":"Movie","_key":"37511"} +{"label":"Aaron Blaise","version":24,"id":"61952","lastModified":"1301902296000","name":"Aaron Blaise","type":"Person","_key":"37512"} +{"label":"Robert Walker","version":24,"id":"61949","lastModified":"1301902296000","name":"Robert Walker","type":"Person","_key":"37513"} +{"label":"Jeremy Suarez","version":28,"id":"61959","lastModified":"1301901481000","name":"Jeremy Suarez","type":"Person","_key":"37514"} +{"label":"Jason Raize","version":24,"id":"61960","lastModified":"1301902115000","name":"Jason Raize","type":"Person","_key":"37515"} +{"label":"Danny Mastrogiorgio","version":22,"id":"61963","lastModified":"1301901916000","name":"Danny Mastrogiorgio","type":"Person","_key":"37516"} +{"label":"Dave Thomas","version":37,"id":"61961","lastModified":"1301901458000","name":"Dave Thomas","type":"Person","_key":"37517"} +{"label":"Estelle Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5a\/4d8b750c7b9aa13ae4001a5a\/estelle-harris-profile.jpg","version":44,"id":"61964","lastModified":"1301901176000","name":"Estelle Harris","type":"Person","_key":"37518"} +{"label":"D.B. Sweeney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4c2a48a07b9aa15e9d00001f\/d-b-sweeney-profile.jpg","version":55,"id":"61962","lastModified":"1301974899000","name":"D.B. Sweeney","type":"Person","_key":"37519"} +{"label":"Bumper Robinson","version":25,"id":"35111","lastModified":"1301901643000","name":"Bumper Robinson","type":"Person","_key":"37520"} +{"label":"Greg Proops","version":24,"id":"61965","lastModified":"1301901916000","name":"Greg Proops","type":"Person","_key":"37521"} +{"label":"Angayuqaq Oscar Kawagley","version":24,"id":"61967","lastModified":"1301901752000","name":"Angayuqaq Oscar Kawagley","type":"Person","_key":"37522"} +{"label":"Patrick Pinney","version":24,"id":"61968","lastModified":"1301901916000","name":"Patrick Pinney","type":"Person","_key":"37523"} +{"label":"Darko Cesar","version":24,"id":"61966","lastModified":"1301901916000","name":"Darko Cesar","type":"Person","_key":"37524"} +{"label":"Brother Bear 2","description":"An old female friend of Kenai needs his help on a quest, much to Koda's growing consternation.","id":"10010","runtime":70,"imdbId":"tt0465925","version":174,"lastModified":"1301901384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68d\/4bc92b23017a3c57fe01168d\/brother-bear-2-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Brother Bear 2","releaseDate":1156809600000,"language":"en","type":"Movie","_key":"37525"} +{"label":"Ben Gluck","version":30,"id":"61970","lastModified":"1301901805000","name":"Ben Gluck","type":"Person","_key":"37526"} +{"label":"Wendie Malick","version":36,"id":"61980","lastModified":"1301901443000","name":"Wendie Malick","type":"Person","_key":"37527"} +{"label":"Jack Weber","version":22,"id":"61982","lastModified":"1301901537000","name":"Jack Weber","type":"Person","_key":"37528"} +{"label":"Jason Marsden","version":34,"id":"61983","lastModified":"1302061112000","name":"Jason Marsden","type":"Person","_key":"37529"} +{"label":"Benjamin Bryan","version":22,"id":"61984","lastModified":"1301901537000","name":"Benjamin Bryan","type":"Person","_key":"37530"} +{"label":"Olivier Baroux","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58f\/4d0e26a55e73d6371000158f\/olivier-baroux-profile.jpg","version":39,"id":"61985","lastModified":"1301901398000","name":"Olivier Baroux","type":"Person","_key":"37531"} +{"label":"Abominable","description":"A man, crippled in an accident, returns to the woods after rehabilitation, certain that he'll not see Bigfoot again.","id":"10011","runtime":94,"imdbId":"tt0402743","version":154,"lastModified":"1301903903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69a\/4bc92b26017a3c57fe01169a\/abominable-mid.jpg","genre":"Comedy","title":"Abominable","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"37532"} +{"label":"Ryan Schifrin","version":20,"id":"61986","lastModified":"1301901728000","name":"Ryan Schifrin","type":"Person","_key":"37533"} +{"label":"Haley Joel","version":19,"id":"61995","lastModified":"1301901728000","name":"Haley Joel","type":"Person","_key":"37534"} +{"label":"Christien Tinsley","version":19,"id":"61996","lastModified":"1301902090000","name":"Christien Tinsley","type":"Person","_key":"37535"} +{"label":"Karin Anna Cheung","version":20,"id":"61997","lastModified":"1301902090000","name":"Karin Anna Cheung","type":"Person","_key":"37536"} +{"label":"Natalie Compagno","version":19,"id":"61998","lastModified":"1301902090000","name":"Natalie Compagno","type":"Person","_key":"37537"} +{"label":"Ashley Hartman","version":19,"id":"61999","lastModified":"1301902090000","name":"Ashley Hartman","type":"Person","_key":"37538"} +{"label":"Chad Smith","version":21,"id":"62005","lastModified":"1301901943000","name":"Chad Smith","type":"Person","_key":"37539"} +{"label":"James Morrison","version":23,"id":"62003","lastModified":"1301902052000","name":"James Morrison","type":"Person","_key":"37540"} +{"label":"Tiffany Shepis","version":53,"id":"62000","lastModified":"1301901404000","name":"Tiffany Shepis","type":"Person","_key":"37541"} +{"label":"Ruby","version":21,"id":"62007","lastModified":"1301902201000","name":"Ruby","type":"Person","_key":"37542"} +{"label":"Jim Giggans","version":19,"id":"62006","lastModified":"1301902090000","name":"Jim Giggans","type":"Person","_key":"37543"} +{"label":"Josh Wolfe","version":19,"id":"62009","lastModified":"1301902089000","name":"Josh Wolfe","type":"Person","_key":"37544"} +{"label":"Paul Spadone","version":19,"id":"62008","lastModified":"1301902089000","name":"Paul Spadone","type":"Person","_key":"37545"} +{"label":"Michael Deak","version":21,"id":"80884","lastModified":"1301902065000","name":"Michael Deak","type":"Person","_key":"37546"} +{"label":"Cursed","description":"A werewolf loose in Los Angeles changes the lives of three young adults, who, after being mauled by the beast, learn they must kill their attacker if they hope to change their fate to avoid becoming werewolves too.","id":"10012","runtime":97,"imdbId":"tt0257516","version":152,"lastModified":"1301902696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a7\/4bc92b28017a3c57fe0116a7\/cursed-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Cursed","releaseDate":1109289600000,"language":"en","tagline":"What doesn't kill you makes you stronger.","type":"Movie","_key":"37547"} +{"label":"Portia de Rossi","version":35,"id":"62010","lastModified":"1301901315000","name":"Portia de Rossi","type":"Person","_key":"37548"} +{"label":"Peggy Sue Got Married","description":"Peggy Sue faints at a Highschool reunion. When she wakes up she finds herself in her own past, just before she finished school.","id":"10013","runtime":103,"imdbId":"tt0091738","trailer":"http:\/\/www.youtube.com\/watch?v=Aj9hDe8VhpU","version":136,"lastModified":"1301902607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/211\/4d211c547b9aa1289f000211\/peggy-sue-got-married-mid.jpg","genre":"Comedy","title":"Peggy Sue Got Married","releaseDate":528854400000,"language":"en","type":"Movie","_key":"37549"} +{"label":"Barry Miller","version":33,"id":"62014","lastModified":"1301901413000","name":"Barry Miller","type":"Person","_key":"37550"} +{"label":"A Nightmare on Elm Street 2: Freddy's Revenge","description":"A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.","id":"10014","runtime":87,"imdbId":"tt0089686","trailer":"http:\/\/www.youtube.com\/watch?v=997","version":122,"lastModified":"1301901820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11a\/4c1d38b85e73d607d100011a\/a-nightmare-on-elm-street-2-freddy-s-revenge-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"A Nightmare on Elm Street 2: Freddy's Revenge","releaseDate":499651200000,"language":"en","tagline":"Someone is coming back to Elm Street!","type":"Movie","_key":"37551"} +{"label":"Mark Patton","version":22,"id":"62018","lastModified":"1301901766000","name":"Mark Patton","type":"Person","_key":"37552"} +{"label":"Robert Rusler","version":41,"id":"52306","lastModified":"1301901566000","name":"Robert Rusler","type":"Person","_key":"37553"} +{"label":"Clu Gulager","version":36,"id":"62019","lastModified":"1301901284000","name":"Clu Gulager","type":"Person","_key":"37554"} +{"label":"Jack Sholder","version":40,"id":"62020","lastModified":"1301901563000","name":"Jack Sholder","type":"Person","_key":"37555"} +{"label":"Heartbreak Ridge","description":"Heartbreak Ridge is a 1986 war film, starring Clint Eastwood (who also produced and directed) and Mario Van Peebles, about the 1983 U.S. invasion of Grenada, West Indies. A portion of the movie was filmed on the island itself.","id":"10015","runtime":130,"imdbId":"tt0091187","trailer":"http:\/\/www.youtube.com\/watch?v=k7AZt-IUIhs","version":256,"lastModified":"1301902445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e4\/4bc92b32017a3c57fe0116e4\/heartbreak-ridge-mid.jpg","genre":"Action","title":"Heartbreak Ridge","releaseDate":534988800000,"language":"en","type":"Movie","_key":"37556"} +{"label":"Ghosts of Mars","description":"200 years in the future a Martian police unit is dispatched to transport a dangerous prisoner from a mining outpost back to justice. But when the team arrives they find the town deserted and some of the inhabitants possessed by the former inhabitants of the planet.","id":"10016","runtime":98,"imdbId":"tt0228333","trailer":"http:\/\/www.youtube.com\/watch?v=3V_dFw4mxeI","version":265,"lastModified":"1301902673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f1\/4bc92b32017a3c57fe0116f1\/ghosts-of-mars-mid.jpg","genre":"Action","title":"Ghosts of Mars","releaseDate":998611200000,"language":"en","tagline":"Terror is the same on any planet.","type":"Movie","_key":"37557"} +{"label":"Liam Waite","version":23,"id":"62031","lastModified":"1301901676000","name":"Liam Waite","type":"Person","_key":"37558"} +{"label":"Duane Davis","version":27,"id":"62032","lastModified":"1301901487000","name":"Duane Davis","type":"Person","_key":"37559"} +{"label":"Doug McGrath","version":26,"id":"62033","lastModified":"1301901636000","name":"Doug McGrath","type":"Person","_key":"37560"} +{"label":"Rick Edelstein","version":23,"id":"62034","lastModified":"1301901581000","name":"Rick Edelstein","type":"Person","_key":"37561"} +{"label":"Michael Krawic","version":23,"id":"62035","lastModified":"1301901674000","name":"Michael Krawic","type":"Person","_key":"37562"} +{"label":"Robert Carradine","version":60,"id":"62036","lastModified":"1301901320000","name":"Robert Carradine","type":"Person","_key":"37563"} +{"label":"Eileen Weisinger","version":23,"id":"62037","lastModified":"1301901511000","name":"Eileen Weisinger","type":"Person","_key":"37564"} +{"label":"The Wraith","description":"No overview found.","id":"10017","runtime":93,"imdbId":"tt0092240","version":114,"lastModified":"1301902159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/706\/4bc92b37017a3c57fe011706\/the-wraith-mid.jpg","genre":"Action","title":"The Wraith","releaseDate":532915200000,"language":"en","type":"Movie","_key":"37565"} +{"label":"Mike Marvin","version":27,"id":"56173","lastModified":"1301901968000","name":"Mike Marvin","type":"Person","_key":"37566"} +{"label":"Das Leben ist eine Baustelle","description":"No overview found.","id":"10018","runtime":115,"imdbId":"tt0119510","version":65,"lastModified":"1301904042000","genre":"Comedy","title":"Das Leben ist eine Baustelle","releaseDate":858816000000,"language":"en","type":"Movie","_key":"37567"} +{"label":"Christina Papamichou","version":20,"id":"62041","lastModified":"1301902187000","name":"Christina Papamichou","type":"Person","_key":"37568"} +{"label":"Mannequin","description":"A charming romantic comedy starring Andrew McCarthy (Pretty in Pink), Kim Cattrall (\"Sex and the City\"), Meshach Taylor (\"Designing Women\"), Estelle Getty (\"The Golden Girls\") and James Spader (Stargate), Mannequin is more than the sum of its fiberglass body parts\u2026 it's all heart!","id":"10019","runtime":90,"imdbId":"tt0093493","trailer":"http:\/\/www.youtube.com\/watch?v=N6gpndlepiM","version":107,"lastModified":"1301908370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/714\/4bc92b38017a3c57fe011714\/mannequin-mid.jpg","genre":"Comedy","title":"Mannequin","releaseDate":540172800000,"language":"en","type":"Movie","_key":"37569"} +{"label":"Carole Davis","version":28,"id":"62042","lastModified":"1301902336000","name":"Carole Davis","type":"Person","_key":"37570"} +{"label":"Michael Gottlieb","version":26,"id":"62043","lastModified":"1301901954000","name":"Michael Gottlieb","type":"Person","_key":"37571"} +{"label":"Beauty and the Beast","description":"Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.","id":"10020","runtime":84,"imdbId":"tt0101414","trailer":"http:\/\/www.youtube.com\/watch?v=tRlzmyveDHE","version":296,"lastModified":"1301900955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00a\/4cacb4d37b9aa1193200000a\/beauty-and-the-beast-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Beauty and the Beast","releaseDate":689990400000,"language":"en","tagline":"The most beautiful love story ever told.","type":"Movie","_key":"37572"} +{"label":"Gary Trousdale","version":90,"id":"62047","lastModified":"1302059556000","name":"Gary Trousdale","type":"Person","_key":"37573"} +{"label":"Kirk Wise","version":44,"id":"62048","lastModified":"1302059556000","name":"Kirk Wise","type":"Person","_key":"37574"} +{"label":"Paige O'Hara","version":32,"id":"62050","lastModified":"1301901247000","name":"Paige O'Hara","type":"Person","_key":"37575"} +{"label":"Robby Benson","version":49,"id":"15048","lastModified":"1301901199000","name":"Robby Benson","type":"Person","_key":"37576"} +{"label":"Richard White","version":31,"id":"108055","lastModified":"1301901373000","name":"Richard White","type":"Person","_key":"37577"} +{"label":"Secret of My Succe$s","description":"Brantley Foster, a well-educated kid from Kansas, has always dreamed of making it big in New York, but once in New York, he learns that jobs - and girls - are hard to get. When Brantley visits his uncle, Howard Prescott, who runs a multi-million-dollar company, he is given a job in the company's mail room.","id":"10021","runtime":111,"imdbId":"tt0093936","version":91,"lastModified":"1301902328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/749\/4bc92b3f017a3c57fe011749\/the-secret-of-my-succe-s-mid.jpg","genre":"Comedy","title":"Secret of My Succe$s","releaseDate":544752000000,"language":"en","type":"Movie","_key":"37578"} +{"label":"The Pacifier","description":"Disgraced Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.","id":"10022","runtime":95,"imdbId":"tt0395699","trailer":"http:\/\/www.youtube.com\/watch?v=q6hl7UFOAy0","version":145,"lastModified":"1301901982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75b\/4bc92b42017a3c57fe01175b\/the-pacifier-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"The Pacifier","releaseDate":1109635200000,"language":"en","type":"Movie","_key":"37579"} +{"label":"Faith Ford","version":28,"id":"62054","lastModified":"1301902178000","name":"Faith Ford","type":"Person","_key":"37580"} +{"label":"Dragnet","description":"They're so bad at being bad... but so much worse at being good!","id":"10023","runtime":106,"imdbId":"tt0092925","trailer":"http:\/\/www.youtube.com\/watch?v=D3AmdKuFYSM","version":124,"lastModified":"1301902665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4bf57f80017a3c772c000051\/dragnet-mid.jpg","genre":"Action","title":"Dragnet","releaseDate":551404800000,"language":"en","type":"Movie","_key":"37581"} +{"label":"Tom Mankiewicz","version":61,"id":"7190","lastModified":"1301901358000","name":"Tom Mankiewicz","type":"Person","_key":"37582"} +{"label":"My Sister's Keeper","description":"Anna Fitzgerald looks to earn medical emancipation from her parents who until now have relied on their youngest child to help their leukemia-stricken daughter Kate remain alive.","id":"10024","runtime":109,"imdbId":"tt1078588","trailer":"http:\/\/www.youtube.com\/watch?v=HP4NxUFgFrs","homepage":"http:\/\/www.mysisterskeepermovie.com\/","version":187,"lastModified":"1301901681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/358\/4d2dfe667b9aa11a70001358\/my-sister-s-keeper-mid.jpg","studio":"Mark Johnson Productions","genre":"Drama","title":"My Sister's Keeper","releaseDate":1245974400000,"language":"en","type":"Movie","_key":"37583"} +{"label":"Just My Luck","description":"Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.","id":"10025","runtime":103,"imdbId":"tt0397078","trailer":"http:\/\/www.youtube.com\/watch?v=ZnR2KrXcovM","version":219,"lastModified":"1301907499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/787\/4bc92b4b017a3c57fe011787\/just-my-luck-mid.jpg","studio":"Unstoppable Entertainment","genre":"Comedy","title":"Just My Luck","releaseDate":1147392000000,"language":"en","type":"Movie","_key":"37584"} +{"label":"Chris Pine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ba\/4bd74be1017a3c21ea0001ba\/chris-pine-profile.jpg","biography":"Christopher Pine is an film and stage actor best known for his role as Captain James Tiberias Kirk in J.J. Abrams' Star Trek Reboot.  Pine comes from a acting lineage that includes both of his parents as well as some grandparents.  After graduating UC Berkley, Pine furthered his education for a year in Leeds, England before moving to San Francisco to study stage acting.  \nChris got his start with minor parts in television before playing Anne Hathaways love interest in Princess Dia","version":74,"birthday":"336088800000","id":"62064","birthplace":"Los Angeles, California, USA","lastModified":"1301904043000","name":"Chris Pine","type":"Person","_key":"37585"} +{"label":"Bree Turner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4cd33ed17b9aa113a8000002\/bree-turner-profile.jpg","version":38,"id":"62065","lastModified":"1301901381000","name":"Bree Turner","type":"Person","_key":"37586"} +{"label":"Faizon Love","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55e\/4cf201145e73d61e3c00055e\/faizon-love-profile.jpg","biography":"<FONT face=Calibri><B><SPAN style=\"FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin\" lang=EN>Faizon Andre Love <\/SPAN><\/B><SPAN style=\"FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-weight: bold; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin\" lang=EN>was<B> <\/B><\/SPAN><SPAN style=\"FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin\" lang=EN>born June 14, 1968. An ac","version":63,"birthday":"-48906000000","id":"62066","lastModified":"1301975038000","name":"Faizon Love","type":"Person","_key":"37587"} +{"label":"Danny Jones","version":25,"id":"62069","lastModified":"1301901813000","name":"Danny Jones","type":"Person","_key":"37588"} +{"label":"Tom Fletcher","version":24,"id":"62068","lastModified":"1301901728000","name":"Tom Fletcher","type":"Person","_key":"37589"} +{"label":"Carlos Ponce","version":27,"id":"62067","lastModified":"1301901345000","name":"Carlos Ponce","type":"Person","_key":"37590"} +{"label":"Harry Judd","version":24,"id":"62070","lastModified":"1301901728000","name":"Harry Judd","type":"Person","_key":"37591"} +{"label":"Dougie Poynter","version":24,"id":"62071","lastModified":"1301901728000","name":"Dougie Poynter","type":"Person","_key":"37592"} +{"label":"Jaqueline Fleming","version":21,"id":"62072","lastModified":"1301901728000","name":"Jaqueline Fleming","type":"Person","_key":"37593"} +{"label":"Ira Hawkins","version":26,"id":"62074","lastModified":"1301901941000","name":"Ira Hawkins","type":"Person","_key":"37594"} +{"label":"J.C. Sealy","version":21,"id":"62075","lastModified":"1301901728000","name":"J.C. Sealy","type":"Person","_key":"37595"} +{"label":"Mikki Val","version":21,"id":"62073","lastModified":"1301901728000","name":"Mikki Val","type":"Person","_key":"37596"} +{"label":"Marcus Hester","version":23,"id":"62076","lastModified":"1301901728000","name":"Marcus Hester","type":"Person","_key":"37597"} +{"label":"Ameer Baraka","version":21,"id":"62077","lastModified":"1301902090000","name":"Ameer Baraka","type":"Person","_key":"37598"} +{"label":"Hannah Tointon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bbf\/4d7ab5025e73d62828000bbf\/hannah-tointon-profile.jpg","version":10,"id":"228431","lastModified":"1301904025000","name":"Hannah Tointon","type":"Person","_key":"37599"} +{"label":"Hot Tamale","description":"A road trip to Los Angeles inadvertently leads a young man from Wyoming into a wild maze of psychotic hit-men, racy women, jewel thieves and a salsa band.","id":"10026","runtime":102,"imdbId":"tt0447999","version":142,"lastModified":"1301904058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4bc92b4d017a3c57fe01179a\/hot-tamale-mid.jpg","genre":"Action","title":"Hot Tamale","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"37600"} +{"label":"Michael Damian","version":22,"id":"62081","lastModified":"1301901559000","name":"Michael Damian","type":"Person","_key":"37601"} +{"label":"Jason Priestley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/841\/4d4ae0bb5e73d617b7000841\/jason-priestley-profile.jpg","version":36,"id":"19143","lastModified":"1301901333000","name":"Jason Priestley","type":"Person","_key":"37602"} +{"label":"Randy Spelling","version":19,"id":"62091","lastModified":"1301902267000","name":"Randy Spelling","type":"Person","_key":"37603"} +{"label":"Matt Cede\u00f1o","version":21,"id":"62092","lastModified":"1301902173000","name":"Matt Cede\u00f1o","type":"Person","_key":"37604"} +{"label":"Sean Blakemore","version":20,"id":"62093","lastModified":"1301901728000","name":"Sean Blakemore","type":"Person","_key":"37605"} +{"label":"Nick Rey Angelus","version":19,"id":"62096","lastModified":"1301902089000","name":"Nick Rey Angelus","type":"Person","_key":"37606"} +{"label":"Christopher Goodman","version":19,"id":"62094","lastModified":"1301902266000","name":"Christopher Goodman","type":"Person","_key":"37607"} +{"label":"Kirsten Berman","version":19,"id":"62097","lastModified":"1301902266000","name":"Kirsten Berman","type":"Person","_key":"37608"} +{"label":"Kristen Caldwell","version":20,"id":"62099","lastModified":"1301902089000","name":"Kristen Caldwell","type":"Person","_key":"37609"} +{"label":"Jon Huertas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24d\/4ca2ef577b9aa168e000024d\/jon-huertas-profile.jpg","version":30,"id":"62095","lastModified":"1301901708000","name":"Jon Huertas","type":"Person","_key":"37610"} +{"label":"Richard Dyer","version":19,"id":"62098","lastModified":"1301902089000","name":"Richard Dyer","type":"Person","_key":"37611"} +{"label":"Robert Harvey","version":25,"id":"62100","lastModified":"1301901566000","name":"Robert Harvey","type":"Person","_key":"37612"} +{"label":"Kevin Glikmann","version":19,"id":"62101","lastModified":"1301902266000","name":"Kevin Glikmann","type":"Person","_key":"37613"} +{"label":"Unleashed","description":"Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.","id":"10027","runtime":102,"imdbId":"tt0342258","homepage":"http:\/\/www.dannythedog-lefilm.com\/","version":297,"lastModified":"1301901568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b0\/4bc92b53017a3c57fe0117b0\/danny-the-dog-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Unleashed","releaseDate":1115942400000,"language":"en","tagline":"Serve No Master","type":"Movie","_key":"37614"} +{"label":"Dylan Brown","version":47,"id":"8032","lastModified":"1301901312000","name":"Dylan Brown","type":"Person","_key":"37615"} +{"label":"Michael Jenn","version":25,"id":"62106","lastModified":"1301901860000","name":"Michael Jenn","type":"Person","_key":"37616"} +{"label":"Carole Ann Wilson","version":22,"id":"62107","lastModified":"1301901716000","name":"Carole Ann Wilson","type":"Person","_key":"37617"} +{"label":"Kerry Condon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/235\/4c7997de5e73d613d6000235\/kerry-condon-profile.jpg","version":29,"id":"62105","lastModified":"1301901577000","name":"Kerry Condon","type":"Person","_key":"37618"} +{"label":"Mike Lambert","version":22,"id":"62108","lastModified":"1301901859000","name":"Mike Lambert","type":"Person","_key":"37619"} +{"label":"Puthirith Chou","version":22,"id":"62110","lastModified":"1301901859000","name":"Puthirith Chou","type":"Person","_key":"37620"} +{"label":"Jaclyn Tze Wey","version":22,"id":"62109","lastModified":"1301901859000","name":"Jaclyn Tze Wey","type":"Person","_key":"37621"} +{"label":"Tony Theng","version":22,"id":"62111","lastModified":"1301901473000","name":"Tony Theng","type":"Person","_key":"37622"} +{"label":"Owen Lay","version":22,"id":"62112","lastModified":"1301901533000","name":"Owen Lay","type":"Person","_key":"37623"} +{"label":"Franck Xie Cheng","version":22,"id":"62113","lastModified":"1301901859000","name":"Franck Xie Cheng","type":"Person","_key":"37624"} +{"label":"Michael Webber","version":23,"id":"62115","lastModified":"1301901533000","name":"Michael Webber","type":"Person","_key":"37625"} +{"label":"Danielle Louise Harley","version":22,"id":"62114","lastModified":"1301901607000","name":"Danielle Louise Harley","type":"Person","_key":"37626"} +{"label":"Honey","description":"Honey (Alba) is a sexy, tough music video choreographer who shakes up her life after her mentor gives her an ultimatum: sleep with him or be blacklisted within their industry.","id":"10028","runtime":94,"imdbId":"tt0322589","version":182,"lastModified":"1301902997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c2\/4bc92b55017a3c57fe0117c2\/honey-mid.jpg","genre":"Drama","title":"Honey","releaseDate":1070582400000,"language":"en","type":"Movie","_key":"37627"} +{"label":"Bille Woodruff","version":23,"id":"62116","lastModified":"1301901728000","name":"Bille Woodruff","type":"Person","_key":"37628"} +{"label":"Lil' Romeo","version":20,"id":"62122","lastModified":"1301901613000","name":"Lil' Romeo","type":"Person","_key":"37629"} +{"label":"David Moscow","version":27,"id":"62123","lastModified":"1301901313000","name":"David Moscow","type":"Person","_key":"37630"} +{"label":"Zachary Williams","version":20,"id":"62124","lastModified":"1301901879000","name":"Zachary Williams","type":"Person","_key":"37631"} +{"label":"Missy 'Misdemeanor' Elliott","version":20,"id":"62125","lastModified":"1301901879000","name":"Missy 'Misdemeanor' Elliott","type":"Person","_key":"37632"} +{"label":"Anthony Sherwood","version":21,"id":"62126","lastModified":"1301901613000","name":"Anthony Sherwood","type":"Person","_key":"37633"} +{"label":"Wes Williams","version":21,"id":"62128","lastModified":"1301901700000","name":"Wes Williams","type":"Person","_key":"37634"} +{"label":"Judi Embden","version":20,"id":"62129","lastModified":"1301901728000","name":"Judi Embden","type":"Person","_key":"37635"} +{"label":"Laurie Ann Gibson","version":20,"id":"62130","lastModified":"1301901728000","name":"Laurie Ann Gibson","type":"Person","_key":"37636"} +{"label":"Alison Sealy-Smith","version":22,"id":"60042","lastModified":"1301901937000","name":"Alison Sealy-Smith","type":"Person","_key":"37637"} +{"label":"Scott Neil","version":20,"id":"62131","lastModified":"1301901728000","name":"Scott Neil","type":"Person","_key":"37638"} +{"label":"Sarah Francis","version":20,"id":"62133","lastModified":"1301901728000","name":"Sarah Francis","type":"Person","_key":"37639"} +{"label":"Jull Weber","version":20,"id":"62132","lastModified":"1301901613000","name":"Jull Weber","type":"Person","_key":"37640"} +{"label":"Kevin Duhaney","version":21,"id":"62134","lastModified":"1301901613000","name":"Kevin Duhaney","type":"Person","_key":"37641"} +{"label":"Brandi Ward","version":25,"id":"62135","lastModified":"1301901774000","name":"Brandi Ward","type":"Person","_key":"37642"} +{"label":"Farnsworth Bentley","version":20,"id":"62136","lastModified":"1301902089000","name":"Farnsworth Bentley","type":"Person","_key":"37643"} +{"label":"Tracy Dawson","version":20,"id":"62137","lastModified":"1301901613000","name":"Tracy Dawson","type":"Person","_key":"37644"} +{"label":"Very Bad Things","description":"A prostitute is killed during a bachelor party and the attendees turn on each other as the wedding approaches.","id":"10029","runtime":100,"imdbId":"tt0124198","version":208,"lastModified":"1301902181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cb\/4bc92b58017a3c57fe0117cb\/very-bad-things-mid.jpg","genre":"Comedy","title":"Very Bad Things","releaseDate":911952000000,"language":"en","type":"Movie","_key":"37645"} +{"label":"Rob Brownstein","version":22,"id":"62146","lastModified":"1301901879000","name":"Rob Brownstein","type":"Person","_key":"37646"} +{"label":"Blake Gibbons","version":23,"id":"41275","lastModified":"1301901639000","name":"Blake Gibbons","type":"Person","_key":"37647"} +{"label":"Tyler Cole Malinger","version":21,"id":"62148","lastModified":"1301901728000","name":"Tyler Cole Malinger","type":"Person","_key":"37648"} +{"label":"Joey Zimmerman","version":23,"id":"62147","lastModified":"1301901943000","name":"Joey Zimmerman","type":"Person","_key":"37649"} +{"label":"Russell B. McKenzie","version":21,"id":"62151","lastModified":"1301901879000","name":"Russell B. McKenzie","type":"Person","_key":"37650"} +{"label":"Kob\u00e9 Tai","version":21,"id":"62149","lastModified":"1301901613000","name":"Kob\u00e9 Tai","type":"Person","_key":"37651"} +{"label":"Pancho Demmings","version":21,"id":"62150","lastModified":"1301901879000","name":"Pancho Demmings","type":"Person","_key":"37652"} +{"label":"Brian Grandison","version":21,"id":"62154","lastModified":"1301901728000","name":"Brian Grandison","type":"Person","_key":"37653"} +{"label":"John Cappon","version":21,"id":"62155","lastModified":"1301901879000","name":"John Cappon","type":"Person","_key":"37654"} +{"label":"Steve Fitchpatrick","version":21,"id":"62153","lastModified":"1301902089000","name":"Steve Fitchpatrick","type":"Person","_key":"37655"} +{"label":"Angelo Di Mascio Jr.","version":21,"id":"62152","lastModified":"1301901728000","name":"Angelo Di Mascio Jr.","type":"Person","_key":"37656"} +{"label":"Linda Klein","version":21,"id":"62156","lastModified":"1301901728000","name":"Linda Klein","type":"Person","_key":"37657"} +{"label":"Good Luck Chuck","description":"In order to keep the woman of his dreams from falling for another guy, Charlie Logan has to break the curse that has made him wildly popular with single women: Sleep with Charlie once, and the next man you meet will be your true love.","id":"10030","runtime":101,"imdbId":"tt0452625","trailer":"http:\/\/www.youtube.com\/watch?v=1287","version":305,"lastModified":"1301901632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/808\/4bc92b63017a3c57fe011808\/good-luck-chuck-mid.jpg","studio":"Lionsgate","genre":"Comedy","title":"Good Luck Chuck","releaseDate":1190332800000,"language":"en","tagline":"He has to break his curse before she breaks his heart.","type":"Movie","_key":"37658"} +{"label":"Mark Helfrich","version":96,"id":"1098","lastModified":"1299575924000","name":"Mark Helfrich","type":"Person","_key":"37659"} +{"label":"Troy Gentile","version":28,"id":"62166","lastModified":"1301901283000","name":"Troy Gentile","type":"Person","_key":"37660"} +{"label":"Sasha Pieterse","version":29,"id":"62168","lastModified":"1301901282000","name":"Sasha Pieterse","type":"Person","_key":"37661"} +{"label":"Mackenzie Mowat","version":28,"id":"62167","lastModified":"1301901488000","name":"Mackenzie Mowat","type":"Person","_key":"37662"} +{"label":"Caroline Ford","version":28,"id":"62169","lastModified":"1301901488000","name":"Caroline Ford","type":"Person","_key":"37663"} +{"label":"Natalie Morris","version":28,"id":"62170","lastModified":"1301901395000","name":"Natalie Morris","type":"Person","_key":"37664"} +{"label":"Ellia English","version":30,"id":"62171","lastModified":"1301901312000","name":"Ellia English","type":"Person","_key":"37665"} +{"label":"Benjamin Ayres","version":26,"id":"62172","lastModified":"1301901345000","name":"Benjamin Ayres","type":"Person","_key":"37666"} +{"label":"Agam Darshi","version":33,"id":"62173","lastModified":"1301901103000","name":"Agam Darshi","type":"Person","_key":"37667"} +{"label":"Steve Glenn","version":38,"id":"62158","lastModified":"1301901345000","name":"Steve Glenn","type":"Person","_key":"37668"} +{"label":"T\u00e9a Helfrich","version":29,"id":"62175","lastModified":"1301901413000","name":"T\u00e9a Helfrich","type":"Person","_key":"37669"} +{"label":"Devil's Harvest","description":"It seems innocent enough. Struggling young artist Daniel King is invited by his childhood friend Natasha...","id":"10031","runtime":92,"imdbId":"tt0354502","version":135,"lastModified":"1301904676000","genre":"Drama","title":"Devil's Harvest","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"37670"} +{"label":"James Shanks","version":19,"id":"62178","lastModified":"1301902266000","name":"James Shanks","type":"Person","_key":"37671"} +{"label":"Lara Clancy","version":19,"id":"62191","lastModified":"1301902266000","name":"Lara Clancy","type":"Person","_key":"37672"} +{"label":"Ralph Collis","version":19,"id":"62193","lastModified":"1301902089000","name":"Ralph Collis","type":"Person","_key":"37673"} +{"label":"Chris John","version":19,"id":"62190","lastModified":"1301901728000","name":"Chris John","type":"Person","_key":"37674"} +{"label":"Irina Dikareva","version":19,"id":"62194","lastModified":"1301901879000","name":"Irina Dikareva","type":"Person","_key":"37675"} +{"label":"Daniel Johnson","version":19,"id":"62195","lastModified":"1301901879000","name":"Daniel Johnson","type":"Person","_key":"37676"} +{"label":"David Snow","version":19,"id":"62192","lastModified":"1301901879000","name":"David Snow","type":"Person","_key":"37677"} +{"label":"Brian Smith","version":19,"id":"62197","lastModified":"1301901879000","name":"Brian Smith","type":"Person","_key":"37678"} +{"label":"Liam Montague","version":19,"id":"62196","lastModified":"1301901879000","name":"Liam Montague","type":"Person","_key":"37679"} +{"label":"Lara Montague","version":19,"id":"62198","lastModified":"1301901879000","name":"Lara Montague","type":"Person","_key":"37680"} +{"label":"Kevin Tomlinson","version":19,"id":"62200","lastModified":"1301901613000","name":"Kevin Tomlinson","type":"Person","_key":"37681"} +{"label":"Carol Kentish","version":19,"id":"62201","lastModified":"1301901878000","name":"Carol Kentish","type":"Person","_key":"37682"} +{"label":"Tacye Nichols","version":19,"id":"62199","lastModified":"1301901879000","name":"Tacye Nichols","type":"Person","_key":"37683"} +{"label":"Jacqueline Worth","version":19,"id":"62202","lastModified":"1301901878000","name":"Jacqueline Worth","type":"Person","_key":"37684"} +{"label":"Van Wilder 2: The Rise of Taj","description":"Taj Mahal Badalandabad leaves Coolidge College behind for the halls of Camford University in England, where he looks to continue his education, and teach an uptight student how to make the most out of her academic career.","id":"10032","runtime":97,"imdbId":"tt0480271","homepage":"http:\/\/www.riseoftaj.com\/","version":158,"lastModified":"1301901779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/816\/4bc92b64017a3c57fe011816\/van-wilder-2-the-rise-of-taj-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Van Wilder 2: The Rise of Taj","releaseDate":1164931200000,"language":"en","tagline":"The Legend is Growing.","type":"Movie","_key":"37685"} +{"label":"Daniel Percival","version":29,"id":"62221","lastModified":"1301901613000","name":"Daniel Percival","type":"Person","_key":"37686"} +{"label":"Lauren Cohan","version":24,"id":"62220","lastModified":"1301901993000","name":"Lauren Cohan","type":"Person","_key":"37687"} +{"label":"Glen Barry","version":23,"id":"62222","lastModified":"1301901537000","name":"Glen Barry","type":"Person","_key":"37688"} +{"label":"Anthony Cozens","version":23,"id":"62223","lastModified":"1301901728000","name":"Anthony Cozens","type":"Person","_key":"37689"} +{"label":"Steven Rathman","version":21,"id":"62224","lastModified":"1301901878000","name":"Steven Rathman","type":"Person","_key":"37690"} +{"label":"Holly Davidson","version":24,"id":"62225","lastModified":"1301901849000","name":"Holly Davidson","type":"Person","_key":"37691"} +{"label":"Kulvinder Ghir","version":24,"id":"62229","lastModified":"1301901878000","name":"Kulvinder Ghir","type":"Person","_key":"37692"} +{"label":"Beth Steel","version":23,"id":"62227","lastModified":"1301901728000","name":"Beth Steel","type":"Person","_key":"37693"} +{"label":"William de Coverly","version":23,"id":"62226","lastModified":"1301901728000","name":"William de Coverly","type":"Person","_key":"37694"} +{"label":"Tom Davey","version":23,"id":"62228","lastModified":"1301901728000","name":"Tom Davey","type":"Person","_key":"37695"} +{"label":"Shobu Kapoor","version":24,"id":"62230","lastModified":"1301901728000","name":"Shobu Kapoor","type":"Person","_key":"37696"} +{"label":"Trevor Baxter","version":23,"id":"62233","lastModified":"1301901878000","name":"Trevor Baxter","type":"Person","_key":"37697"} +{"label":"Christopher Robbie","version":23,"id":"62234","lastModified":"1301901728000","name":"Christopher Robbie","type":"Person","_key":"37698"} +{"label":"Cornelia Pavlovici","version":23,"id":"62232","lastModified":"1301901728000","name":"Cornelia Pavlovici","type":"Person","_key":"37699"} +{"label":"Rupert Frazer","version":37,"id":"62231","lastModified":"1301901629000","name":"Rupert Frazer","type":"Person","_key":"37700"} +{"label":"Ashly Margaret Rae","version":24,"id":"62235","lastModified":"1301902132000","name":"Ashly Margaret Rae","type":"Person","_key":"37701"} +{"label":"Just Friends","description":"While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with -- a woman whose rejection of him turned him into a ferocious womanizer.","id":"10033","runtime":96,"imdbId":"tt0433400","version":230,"lastModified":"1301901883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f6\/4c28f8cb7b9aa1446b0003f6\/just-friends-mid.jpg","studio":"Inferno Distribution","genre":"Comedy","title":"Just Friends","releaseDate":1132704000000,"language":"en","tagline":"He loves her. She loves him not.","type":"Movie","_key":"37702"} +{"label":"Giacomo Beltrami","version":22,"id":"62244","lastModified":"1301901389000","name":"Giacomo Beltrami","type":"Person","_key":"37703"} +{"label":"Amy Matysio","version":24,"id":"62246","lastModified":"1301901348000","name":"Amy Matysio","type":"Person","_key":"37704"} +{"label":"Fred Ewanuick","version":24,"id":"62245","lastModified":"1301901603000","name":"Fred Ewanuick","type":"Person","_key":"37705"} +{"label":"Wendy Anderson","version":36,"id":"62247","lastModified":"1301901260000","name":"Wendy Anderson","type":"Person","_key":"37706"} +{"label":"Devyn Burant","version":22,"id":"62248","lastModified":"1301901763000","name":"Devyn Burant","type":"Person","_key":"37707"} +{"label":"Mike O'Brien","version":20,"id":"62250","lastModified":"1301901763000","name":"Mike O'Brien","type":"Person","_key":"37708"} +{"label":"Jaden Ryan","version":22,"id":"62249","lastModified":"1301901763000","name":"Jaden Ryan","type":"Person","_key":"37709"} +{"label":"Todd Lewis","version":22,"id":"62252","lastModified":"1301901634000","name":"Todd Lewis","type":"Person","_key":"37710"} +{"label":"Annie Brebner","version":22,"id":"62251","lastModified":"1301901763000","name":"Annie Brebner","type":"Person","_key":"37711"} +{"label":"Justin Kirby","version":22,"id":"62253","lastModified":"1301901551000","name":"Justin Kirby","type":"Person","_key":"37712"} +{"label":"Jackie Mitchell","version":22,"id":"62254","lastModified":"1301901551000","name":"Jackie Mitchell","type":"Person","_key":"37713"} +{"label":"High Heels and Low Lifes","description":"A nurse eavesdrops with a friend on a cell phone conversation that describes a bank heist. She and the friend then conspire to blackmail the robbers for $2 million.","id":"10034","runtime":86,"imdbId":"tt0253126","version":176,"lastModified":"1301902454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00b\/4bcbcbb3017a3c0f2700000b\/high-heels-and-low-lifes-mid.jpg","genre":"Action","title":"High Heels and Low Lifes","releaseDate":995587200000,"language":"en","type":"Movie","_key":"37714"} +{"label":"Simon Scardifield","version":19,"id":"62258","lastModified":"1301902089000","name":"Simon Scardifield","type":"Person","_key":"37715"} +{"label":"Len Collin","version":19,"id":"62259","lastModified":"1301902089000","name":"Len Collin","type":"Person","_key":"37716"} +{"label":"Jane Partridge","version":19,"id":"62260","lastModified":"1301901878000","name":"Jane Partridge","type":"Person","_key":"37717"} +{"label":"Ranjit Krishnamma","version":19,"id":"62262","lastModified":"1301902089000","name":"Ranjit Krishnamma","type":"Person","_key":"37718"} +{"label":"Ben Walden","version":19,"id":"62264","lastModified":"1301902089000","name":"Ben Walden","type":"Person","_key":"37719"} +{"label":"Mark Meadows","version":19,"id":"62263","lastModified":"1301902266000","name":"Mark Meadows","type":"Person","_key":"37720"} +{"label":"Danny Babington","version":19,"id":"62266","lastModified":"1301902089000","name":"Danny Babington","type":"Person","_key":"37721"} +{"label":"Paul Brown","version":19,"id":"62267","lastModified":"1301902266000","name":"Paul Brown","type":"Person","_key":"37722"} +{"label":"100 Girls","description":"A College Freshman meets his dream girl in a dorm elevator during a blackout. They make love, and he falls for her without ever seeing her face. Now he has one goal in life, to find his mystery girl amongst the 100 female suspects.","id":"10035","runtime":94,"imdbId":"tt0214388","version":369,"lastModified":"1301901786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/836\/4bc92b69017a3c57fe011836\/100-girls-mid.jpg","studio":"Dream Entertainment","genre":"Comedy","title":"100 Girls","releaseDate":967766400000,"language":"en","type":"Movie","_key":"37723"} +{"label":"Ange Billman","version":23,"id":"62280","lastModified":"1301901616000","name":"Ange Billman","type":"Person","_key":"37724"} +{"label":"Reilly McLaren","version":22,"id":"62283","lastModified":"1301901728000","name":"Reilly McLaren","type":"Person","_key":"37725"} +{"label":"M\u00f3nica Huarte","version":22,"id":"62282","lastModified":"1301901613000","name":"M\u00f3nica Huarte","type":"Person","_key":"37726"} +{"label":"Kristin Herold","version":22,"id":"62284","lastModified":"1301901728000","name":"Kristin Herold","type":"Person","_key":"37727"} +{"label":"Rainbeau Mars","version":22,"id":"62281","lastModified":"1301901613000","name":"Rainbeau Mars","type":"Person","_key":"37728"} +{"label":"Anya Marina","version":22,"id":"62285","lastModified":"1301901728000","name":"Anya Marina","type":"Person","_key":"37729"} +{"label":"Josephine Angelini","version":22,"id":"62286","lastModified":"1301901537000","name":"Josephine Angelini","type":"Person","_key":"37730"} +{"label":"Julieanne Steger","version":25,"id":"62288","lastModified":"1301901613000","name":"Julieanne Steger","type":"Person","_key":"37731"} +{"label":"Ivana Bozilovic","version":22,"id":"62287","lastModified":"1301901878000","name":"Ivana Bozilovic","type":"Person","_key":"37732"} +{"label":"Danielle Hoover","version":22,"id":"62289","lastModified":"1301901613000","name":"Danielle Hoover","type":"Person","_key":"37733"} +{"label":"7 Zwerge - Der Wald ist nicht genug","description":"No overview found.","id":"10036","runtime":95,"imdbId":"tt0461642","version":91,"lastModified":"1301902332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/851\/4bc92b6c017a3c57fe011851\/7-zwerge-der-wald-ist-nicht-genug-mid.jpg","genre":"Comedy","title":"7 Zwerge - Der Wald ist nicht genug","releaseDate":1161648000000,"language":"en","type":"Movie","_key":"37734"} +{"label":"Axel Neumann","version":21,"id":"62296","lastModified":"1301902376000","name":"Axel Neumann","type":"Person","_key":"37735"} +{"label":"Dirk Bielefeldt","version":19,"id":"62299","lastModified":"1301902089000","name":"Dirk Bielefeldt","type":"Person","_key":"37736"} +{"label":"Mario Barth","version":26,"id":"62298","lastModified":"1301901728000","name":"Mario Barth","type":"Person","_key":"37737"} +{"label":"The Hunt for Eagle One: Crash Point","description":"The Strike Force team is back in this action-packed sequel to \"The Hunt For Eagle One\"! Terrorists have stolen a Ground Control Encoder...","id":"10037","runtime":86,"imdbId":"tt0816527","version":131,"lastModified":"1301903364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/862\/4bc92b6e017a3c57fe011862\/the-hunt-for-eagle-one-crash-point-mid.jpg","genre":"Action","title":"The Hunt for Eagle One: Crash Point","releaseDate":1151366400000,"language":"en","type":"Movie","_key":"37738"} +{"label":"Henry Crum","version":20,"id":"62303","lastModified":"1301901783000","name":"Henry Crum","type":"Person","_key":"37739"} +{"label":"Steve Cryin","version":20,"id":"62308","lastModified":"1301902150000","name":"Steve Cryin","type":"Person","_key":"37740"} +{"label":"Joe Suba","version":23,"id":"62306","lastModified":"1302004419000","name":"Joe Suba","type":"Person","_key":"37741"} +{"label":"Zach McGowan","version":25,"id":"62307","lastModified":"1301901401000","name":"Zach McGowan","type":"Person","_key":"37742"} +{"label":"Dick Israel","version":20,"id":"62309","lastModified":"1301902150000","name":"Dick Israel","type":"Person","_key":"37743"} +{"label":"Joe Mari Avellana","version":25,"id":"62311","lastModified":"1301902150000","name":"Joe Mari Avellana","type":"Person","_key":"37744"} +{"label":"Jerry Corpuz","version":20,"id":"62310","lastModified":"1301902178000","name":"Jerry Corpuz","type":"Person","_key":"37745"} +{"label":"Renee Rogoff","version":20,"id":"62313","lastModified":"1301902150000","name":"Renee Rogoff","type":"Person","_key":"37746"} +{"label":"Gary Kasper","version":20,"id":"62312","lastModified":"1301902185000","name":"Gary Kasper","type":"Person","_key":"37747"} +{"label":"Boy Roque","version":20,"id":"62314","lastModified":"1301902150000","name":"Boy Roque","type":"Person","_key":"37748"} +{"label":"Noel Trinidad","version":20,"id":"62315","lastModified":"1301902150000","name":"Noel Trinidad","type":"Person","_key":"37749"} +{"label":"Yeolliji","description":"No overview found.","id":"10039","runtime":105,"imdbId":"tt0788252","version":61,"lastModified":"1301903368000","genre":"Drama","title":"Yeolliji","releaseDate":1144886400000,"language":"en","type":"Movie","_key":"37750"} +{"label":"Ji-Woo Choi","version":23,"id":"62333","lastModified":"1301902381000","name":"Ji-Woo Choi","type":"Person","_key":"37751"} +{"label":"Seong-guk Choi","version":24,"id":"62332","lastModified":"1301902150000","name":"Seong-guk Choi","type":"Person","_key":"37752"} +{"label":"Han-seon Jo","version":21,"id":"62337","lastModified":"1301901954000","name":"Han-seon Jo","type":"Person","_key":"37753"} +{"label":"Hee-kyung Jin","version":21,"id":"62336","lastModified":"1301902150000","name":"Hee-kyung Jin","type":"Person","_key":"37754"} +{"label":"Yeong Hyeon","version":21,"id":"62334","lastModified":"1301902150000","name":"Yeong Hyeon","type":"Person","_key":"37755"} +{"label":"Yun-Hee Kim","version":21,"id":"62338","lastModified":"1301902363000","name":"Yun-Hee Kim","type":"Person","_key":"37756"} +{"label":"Hyeon-kyeong Oh","version":24,"id":"62339","lastModified":"1301902150000","name":"Hyeon-kyeong Oh","type":"Person","_key":"37757"} +{"label":"Yeong-hie Seo","version":21,"id":"62340","lastModified":"1301902336000","name":"Yeong-hie Seo","type":"Person","_key":"37758"} +{"label":"Seong-jung Kim","version":23,"id":"62335","lastModified":"1301902150000","name":"Seong-jung Kim","type":"Person","_key":"37759"} +{"label":"Miss Congeniality 2 - Armed and Fabulous","description":"After her triumph at the Miss United States pageant, FBI agent Gracie Hart becomes an overnight sensation -- and the new \"face of the FBI.\" But it's time to spring into action again when the pageant's winner, Cheryl, and emcee, Stan, are abducted.","id":"10040","runtime":115,"imdbId":"tt0385307","trailer":"http:\/\/www.youtube.com\/watch?v=iv4SzMPlwp4","version":200,"lastModified":"1301902307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/873\/4bc92b72017a3c57fe011873\/miss-congeniality-2-armed-and-fabulous-mid.jpg","genre":"Action","title":"Miss Congeniality 2 - Armed and Fabulous","releaseDate":1110499200000,"language":"en","type":"Movie","_key":"37760"} +{"label":"Broken","description":"After dating a wonderful man, Hope comes back home, sees her daughter Jennifer and goes to sleep. She wakes-up in the woods with a psychopath...","id":"10041","runtime":110,"imdbId":"tt0454839","version":225,"lastModified":"1301903044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/887\/4bc92b74017a3c57fe011887\/broken-mid.jpg","genre":"Horror","title":"Broken","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"37761"} +{"label":"Simon Boyes","version":21,"id":"62341","lastModified":"1301902364000","name":"Simon Boyes","type":"Person","_key":"37762"} +{"label":"Adam Mason","version":28,"id":"62342","lastModified":"1301902150000","name":"Adam Mason","type":"Person","_key":"37763"} +{"label":"Eric Colvin","version":20,"id":"62358","lastModified":"1301901783000","name":"Eric Colvin","type":"Person","_key":"37764"} +{"label":"Chesse Daves","version":20,"id":"62359","lastModified":"1301901954000","name":"Chesse Daves","type":"Person","_key":"37765"} +{"label":"Olivia Hill","version":21,"id":"62360","lastModified":"1301901954000","name":"Olivia Hill","type":"Person","_key":"37766"} +{"label":"Nadja Brand","version":22,"id":"62357","lastModified":"1301902151000","name":"Nadja Brand","type":"Person","_key":"37767"} +{"label":"Abbey Stirling","version":20,"id":"62356","lastModified":"1301902150000","name":"Abbey Stirling","type":"Person","_key":"37768"} +{"label":"Rachel Townend","version":20,"id":"62362","lastModified":"1301902150000","name":"Rachel Townend","type":"Person","_key":"37769"} +{"label":"Atesh Salih","version":20,"id":"62361","lastModified":"1301901954000","name":"Atesh Salih","type":"Person","_key":"37770"} +{"label":"Megan Van Kerro","version":20,"id":"62363","lastModified":"1301902150000","name":"Megan Van Kerro","type":"Person","_key":"37771"} +{"label":"The Cavern","description":"8 explorers trapped in a Russian cave system are hunted by an unknown presence.","id":"10042","runtime":95,"imdbId":"tt0451262","version":149,"lastModified":"1301904277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/982\/4d8b778d7b9aa13ae7001982\/the-cavern-mid.jpg","genre":"Drama","title":"The Cavern","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"37772"} +{"label":"Olatunde Osunsanmi","version":22,"id":"62368","lastModified":"1301902378000","name":"Olatunde Osunsanmi","type":"Person","_key":"37773"} +{"label":"Sybil Temtchine","version":20,"id":"62384","lastModified":"1301901783000","name":"Sybil Temtchine","type":"Person","_key":"37774"} +{"label":"Ogy Durham","version":20,"id":"62387","lastModified":"1301901954000","name":"Ogy Durham","type":"Person","_key":"37775"} +{"label":"Mustafa Shakir","version":20,"id":"62385","lastModified":"1301901649000","name":"Mustafa Shakir","type":"Person","_key":"37776"} +{"label":"Andres Hudson","version":18,"id":"62390","lastModified":"1301901954000","name":"Andres Hudson","type":"Person","_key":"37777"} +{"label":"Danny Jacobs","version":30,"id":"62389","lastModified":"1301901329000","name":"Danny Jacobs","type":"Person","_key":"37778"} +{"label":"Andrew Caple-Shaw","version":20,"id":"62388","lastModified":"1301901649000","name":"Andrew Caple-Shaw","type":"Person","_key":"37779"} +{"label":"Cassandra Duarden","version":20,"id":"62394","lastModified":"1301901783000","name":"Cassandra Duarden","type":"Person","_key":"37780"} +{"label":"Neno Pervan","version":20,"id":"62392","lastModified":"1301901783000","name":"Neno Pervan","type":"Person","_key":"37781"} +{"label":"Johnnie Colter","version":20,"id":"62391","lastModified":"1301901783000","name":"Johnnie Colter","type":"Person","_key":"37782"} +{"label":"Kamen Gabriel","version":20,"id":"62393","lastModified":"1301901783000","name":"Kamen Gabriel","type":"Person","_key":"37783"} +{"label":"True Tamplin","version":20,"id":"62395","lastModified":"1301901954000","name":"True Tamplin","type":"Person","_key":"37784"} +{"label":"Winners & Sinners 2: My Lucky Stars","description":"Two Hong-Kong cops are sent to Tokyo to catch an ex-cop who stole a large amount of money in diamonds. After one is captured by the Ninja-gang protecting the rogue cop, the other one gets his old Orphanage gang, dubbed the \"Five Lucky Stars,\" to help him. They don't like this much, but they do it.","id":"10044","runtime":96,"imdbId":"tt0089177","version":105,"lastModified":"1301902332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/890\/4bc92b74017a3c57fe011890\/fuk-sing-go-jiu-mid.jpg","genre":"Action","title":"Winners & Sinners 2: My Lucky Stars","releaseDate":476841600000,"language":"en","type":"Movie","_key":"37785"} +{"label":"Sammo Hung Kam-Bo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0da\/4bca7f14017a3c0e8d0000da\/sammo-hung-kam-bo-profile.jpg","version":163,"id":"62410","lastModified":"1302055063000","name":"Sammo Hung Kam-Bo","type":"Person","_key":"37786"} +{"label":"Biao Yuen","version":55,"id":"62414","lastModified":"1301901177000","name":"Biao Yuen","type":"Person","_key":"37787"} +{"label":"Sibelle Hu","version":32,"id":"62420","lastModified":"1301901843000","name":"Sibelle Hu","type":"Person","_key":"37788"} +{"label":"Chia Yung Liu","version":34,"id":"62421","lastModified":"1301901807000","name":"Chia Yung Liu","type":"Person","_key":"37789"} +{"label":"Richard Ng","version":39,"id":"62417","lastModified":"1301901575000","name":"Richard Ng","type":"Person","_key":"37790"} +{"label":"Charlie Chin","version":30,"id":"62418","lastModified":"1301902391000","name":"Charlie Chin","type":"Person","_key":"37791"} +{"label":"Shui-Fan Fung","version":28,"id":"62419","lastModified":"1301901804000","name":"Shui-Fan Fung","type":"Person","_key":"37792"} +{"label":"Paul Chang","version":24,"id":"62422","lastModified":"1301902266000","name":"Paul Chang","type":"Person","_key":"37793"} +{"label":"Wu Ma","version":37,"id":"62425","lastModified":"1301901409000","name":"Wu Ma","type":"Person","_key":"37794"} +{"label":"Dick Wei","version":27,"id":"62424","lastModified":"1301901981000","name":"Dick Wei","type":"Person","_key":"37795"} +{"label":"Lam Ching-Ying","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/000\/4cfbc8977b9aa15c97002000\/lam-ching-ying-profile.jpg","biography":"Lam Ching-ying was a Hong Kong actor, action director and director. A physically talented and graceful martial artist, Lam was best known for playing the stoic Taoist priest in Mr. Vampire (1985). Lam died in 1997 of liver cancer.","version":38,"birthday":"-536893200000","id":"62423","lastModified":"1301901468000","name":"Lam Ching-Ying","type":"Person","_key":"37796"} +{"label":"James Tien","version":55,"id":"62427","lastModified":"1301901452000","name":"James Tien","type":"Person","_key":"37797"} +{"label":"Michiko Nishiwaki","version":23,"id":"62426","lastModified":"1301902266000","name":"Michiko Nishiwaki","type":"Person","_key":"37798"} +{"label":"District 13","description":"Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.","id":"10045","runtime":85,"imdbId":"tt0414852","version":175,"lastModified":"1301901672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3f\/4d95c6ec7b9aa11997002f3f\/banlieue-13-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"District 13","releaseDate":1100044800000,"language":"en","tagline":"Welcome to District B13. Welcome to the future","type":"Movie","_key":"37799"} +{"label":"Tony D'Amario","version":27,"id":"62441","lastModified":"1301901338000","name":"Tony D'Amario","type":"Person","_key":"37800"} +{"label":"Bibi Naceri","version":28,"id":"62442","lastModified":"1301901445000","name":"Bibi Naceri","type":"Person","_key":"37801"} +{"label":"Dany Verissimo","version":27,"id":"62443","lastModified":"1301901430000","name":"Dany Verissimo","type":"Person","_key":"37802"} +{"label":"Nicolas Woirion","version":27,"id":"62445","lastModified":"1301901613000","name":"Nicolas Woirion","type":"Person","_key":"37803"} +{"label":"Fran\u00e7ois Chattot","version":29,"id":"62444","lastModified":"1301901467000","name":"Fran\u00e7ois Chattot","type":"Person","_key":"37804"} +{"label":"Patrick Olivier","version":27,"id":"62446","lastModified":"1301901613000","name":"Patrick Olivier","type":"Person","_key":"37805"} +{"label":"Tarik Boucekhine","version":27,"id":"62449","lastModified":"1301901537000","name":"Tarik Boucekhine","type":"Person","_key":"37806"} +{"label":"J\u00e9r\u00f4me Gadner","version":27,"id":"62448","lastModified":"1301901338000","name":"J\u00e9r\u00f4me Gadner","type":"Person","_key":"37807"} +{"label":"Samir Guesmi","version":31,"id":"62447","lastModified":"1301901430000","name":"Samir Guesmi","type":"Person","_key":"37808"} +{"label":"Warren Zavatta","version":29,"id":"62451","lastModified":"1301901674000","name":"Warren Zavatta","type":"Person","_key":"37809"} +{"label":"Turan Bagci","version":27,"id":"62455","lastModified":"1301901430000","name":"Turan Bagci","type":"Person","_key":"37810"} +{"label":"Gr\u00e9gory Jean","version":27,"id":"62450","lastModified":"1301901430000","name":"Gr\u00e9gory Jean","type":"Person","_key":"37811"} +{"label":"Dominique Dorol","version":27,"id":"62454","lastModified":"1301901430000","name":"Dominique Dorol","type":"Person","_key":"37812"} +{"label":"Azad","version":27,"id":"62453","lastModified":"1301901382000","name":"Azad","type":"Person","_key":"37813"} +{"label":"Ludovic Berthillot","version":33,"id":"62452","lastModified":"1301901406000","name":"Ludovic Berthillot","type":"Person","_key":"37814"} +{"label":"Chamsi Charlesia","version":27,"id":"62456","lastModified":"1301901381000","name":"Chamsi Charlesia","type":"Person","_key":"37815"} +{"label":"Nicolas Wan Park","version":27,"id":"62458","lastModified":"1301901613000","name":"Nicolas Wan Park","type":"Person","_key":"37816"} +{"label":"Gilles Gambino","version":27,"id":"62457","lastModified":"1301901381000","name":"Gilles Gambino","type":"Person","_key":"37817"} +{"label":"Blueberry","description":"In the 1870's, U.S Marshal Mike S. Blueberry tries to stop Wally Blount, the man who killed his girlfriend...","id":"10046","runtime":124,"imdbId":"tt0276830","version":136,"lastModified":"1301901976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8aa\/4bc92b79017a3c57fe0118aa\/blueberry-mid.jpg","studio":"Columbia TriStar","genre":"Adventure","title":"Blueberry","releaseDate":1076457600000,"language":"en","type":"Movie","_key":"37818"} +{"label":"Kateri Walker","version":19,"id":"62475","lastModified":"1301901613000","name":"Kateri Walker","type":"Person","_key":"37819"} +{"label":"Kestenbetsa","version":19,"id":"62476","lastModified":"1301901878000","name":"Kestenbetsa","type":"Person","_key":"37820"} +{"label":"William Lightning","version":19,"id":"62478","lastModified":"1301901613000","name":"William Lightning","type":"Person","_key":"37821"} +{"label":"Antonio Monroy","version":19,"id":"62477","lastModified":"1301901728000","name":"Antonio Monroy","type":"Person","_key":"37822"} +{"label":"The Messenger: The Story of Joan of Arc","description":"In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.","id":"10047","runtime":160,"imdbId":"tt0151137","version":222,"lastModified":"1301908111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b3\/4bc92b7a017a3c57fe0118b3\/the-messenger-the-story-of-joan-of-arc-mid.jpg","genre":"Action","title":"The Messenger: The Story of Joan of Arc","releaseDate":940204800000,"language":"en","type":"Movie","_key":"37823"} +{"label":"Stealth","description":"Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.","id":"10048","runtime":121,"imdbId":"tt0382992","trailer":"http:\/\/www.youtube.com\/watch?v=1878","version":253,"lastModified":"1302060229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4c81a2a45e73d65af6000033\/stealth-mid.jpg","genre":"Action","title":"Stealth","releaseDate":1122595200000,"language":"en","type":"Movie","_key":"37824"} +{"label":"Michael Denkha","version":22,"id":"62487","lastModified":"1301901878000","name":"Michael Denkha","type":"Person","_key":"37825"} +{"label":"Clayton Adams","version":21,"id":"62489","lastModified":"1301901878000","name":"Clayton Adams","type":"Person","_key":"37826"} +{"label":"Rocky Helton","version":21,"id":"62488","lastModified":"1301901878000","name":"Rocky Helton","type":"Person","_key":"37827"} +{"label":"Ian Bliss","version":23,"id":"62486","lastModified":"1301901878000","name":"Ian Bliss","type":"Person","_key":"37828"} +{"label":"Maurice Morgan","version":21,"id":"62490","lastModified":"1301901878000","name":"Maurice Morgan","type":"Person","_key":"37829"} +{"label":"Woody Naismith","version":19,"id":"62491","lastModified":"1301901878000","name":"Woody Naismith","type":"Person","_key":"37830"} +{"label":"Charles Ndibe","version":21,"id":"62492","lastModified":"1301901878000","name":"Charles Ndibe","type":"Person","_key":"37831"} +{"label":"Michael McCabe","version":22,"id":"62493","lastModified":"1301902178000","name":"Michael McCabe","type":"Person","_key":"37832"} +{"label":"Jim Diamond","version":21,"id":"62495","lastModified":"1301901878000","name":"Jim Diamond","type":"Person","_key":"37833"} +{"label":"Sara Saliba","version":21,"id":"62494","lastModified":"1301901878000","name":"Sara Saliba","type":"Person","_key":"37834"} +{"label":"Attack Force","description":"Marshall Lawson is the commander of an elite military unit. Marshall Lawson loses his strike-team in a cold-blooded and seemingly random attack, and he takes it upon himself to investigate the attack, with the help of his girlfriend Tia and his friend Dwayne.","id":"10049","runtime":94,"imdbId":"tt0493424","version":194,"lastModified":"1301902596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc92b80017a3c57fe0118da\/attack-force-mid.jpg","genre":"Action","title":"Attack Force","releaseDate":1165276800000,"language":"en","type":"Movie","_key":"37835"} +{"label":"Andrew Bicknell","version":20,"id":"47525","lastModified":"1301902088000","name":"Andrew Bicknell","type":"Person","_key":"37836"} +{"label":"David Kennedy","version":20,"id":"62498","lastModified":"1301902266000","name":"David Kennedy","type":"Person","_key":"37837"} +{"label":"Matthew Chambers","version":20,"id":"62499","lastModified":"1301902266000","name":"Matthew Chambers","type":"Person","_key":"37838"} +{"label":"Cheryl Ko","version":20,"id":"62502","lastModified":"1301902266000","name":"Cheryl Ko","type":"Person","_key":"37839"} +{"label":"Lisa Lovbrand","version":20,"id":"62497","lastModified":"1301902266000","name":"Lisa Lovbrand","type":"Person","_key":"37840"} +{"label":"Del Synnott","version":21,"id":"62501","lastModified":"1301902088000","name":"Del Synnott","type":"Person","_key":"37841"} +{"label":"Adam Croasdell","version":21,"id":"62500","lastModified":"1301901475000","name":"Adam Croasdell","type":"Person","_key":"37842"} +{"label":"Ioan Ionescu","version":24,"id":"62503","lastModified":"1301902266000","name":"Ioan Ionescu","type":"Person","_key":"37843"} +{"label":"Florian Ghimpu","version":20,"id":"62504","lastModified":"1301902266000","name":"Florian Ghimpu","type":"Person","_key":"37844"} +{"label":"Serban Celea","version":25,"id":"62506","lastModified":"1301902266000","name":"Serban Celea","type":"Person","_key":"37845"} +{"label":"Evelyne Armela O'Bami","version":20,"id":"62505","lastModified":"1301902266000","name":"Evelyne Armela O'Bami","type":"Person","_key":"37846"} +{"label":"Bogdan Uritescu","version":22,"id":"62508","lastModified":"1301902317000","name":"Bogdan Uritescu","type":"Person","_key":"37847"} +{"label":"Mihai Stanescu","version":24,"id":"62507","lastModified":"1301902364000","name":"Mihai Stanescu","type":"Person","_key":"37848"} +{"label":"Ileana Lazariuc","version":20,"id":"62509","lastModified":"1301902266000","name":"Ileana Lazariuc","type":"Person","_key":"37849"} +{"label":"Coca Bloos","version":20,"id":"62510","lastModified":"1301902266000","name":"Coca Bloos","type":"Person","_key":"37850"} +{"label":"Get Over It","description":"When Berke Landers, a popular high school basketball star, gets dumped by his life-long girlfriend, Allison...","id":"10050","runtime":87,"imdbId":"tt0192071","version":153,"lastModified":"1301923847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8eb\/4bc92b84017a3c57fe0118eb\/get-over-it-mid.jpg","genre":"Comedy","title":"Get Over It","releaseDate":984096000000,"language":"en","tagline":"get dumped. get pumped. get even.","type":"Movie","_key":"37851"} +{"label":"Tommy O'Haver","version":34,"id":"62514","lastModified":"1301901306000","name":"Tommy O'Haver","type":"Person","_key":"37852"} +{"label":"Sisq\u00f3","version":26,"id":"62520","lastModified":"1301901942000","name":"Sisq\u00f3","type":"Person","_key":"37853"} +{"label":"Christopher Jacot","version":34,"id":"62522","lastModified":"1301901695000","name":"Christopher Jacot","type":"Person","_key":"37854"} +{"label":"Colleen Fitzpatrick","version":23,"id":"62521","lastModified":"1301901537000","name":"Colleen Fitzpatrick","type":"Person","_key":"37855"} +{"label":"Kylie Bax","version":21,"id":"62523","lastModified":"1301901537000","name":"Kylie Bax","type":"Person","_key":"37856"} +{"label":"Jeanie Calleja","version":21,"id":"62525","lastModified":"1301902088000","name":"Jeanie Calleja","type":"Person","_key":"37857"} +{"label":"Park Bench","version":21,"id":"62527","lastModified":"1301901613000","name":"Park Bench","type":"Person","_key":"37858"} +{"label":"Daniel Enright","version":22,"id":"62526","lastModified":"1301901878000","name":"Daniel Enright","type":"Person","_key":"37859"} +{"label":"Fauteuils d'orchestre","description":"A young woman arrives in Paris where she finds a job as a waitress in bar next on Avenue Montaigne that caters to the surrounding theaters and the wealthy inhabitants of the area. She will meet a pianist, a famous actress and a great art collector, and become acquainted with the \"luxurious\" world her grandmother has told her about since her childhood.","id":"10051","runtime":106,"imdbId":"tt0444112","version":98,"lastModified":"1301904232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f8\/4bc92b85017a3c57fe0118f8\/fauteuils-d-orchestre-mid.jpg","studio":"StudioCanal","genre":"Comedy","title":"Fauteuils d'orchestre","releaseDate":1139961600000,"language":"en","type":"Movie","_key":"37860"} +{"label":"Val\u00e9rie Lemercier","version":42,"id":"62531","lastModified":"1301952583000","name":"Val\u00e9rie Lemercier","type":"Person","_key":"37861"} +{"label":"Daniel Benoin","version":19,"id":"62533","lastModified":"1301901613000","name":"Daniel Benoin","type":"Person","_key":"37862"} +{"label":"Fran\u00e7oise L\u00e9pine","version":19,"id":"62534","lastModified":"1301901728000","name":"Fran\u00e7oise L\u00e9pine","type":"Person","_key":"37863"} +{"label":"Christian Hecq","version":25,"id":"62535","lastModified":"1301901537000","name":"Christian Hecq","type":"Person","_key":"37864"} +{"label":"Julia Molkhou","version":19,"id":"62536","lastModified":"1301901613000","name":"Julia Molkhou","type":"Person","_key":"37865"} +{"label":"Laurent Mouton","version":19,"id":"62537","lastModified":"1301901537000","name":"Laurent Mouton","type":"Person","_key":"37866"} +{"label":"Werner K\u00f6chler","version":17,"id":"62538","lastModified":"1301901613000","name":"Werner K\u00f6chler","type":"Person","_key":"37867"} +{"label":"Dragonfly","description":"A grieving doctor is being contacted by his late wife through his patients near death experiences.","id":"10052","runtime":104,"imdbId":"tt0259288","version":140,"lastModified":"1301902452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0b\/4d1d00345e73d665a6001e0b\/dragonfly-mid.jpg","genre":"Drama","title":"Dragonfly","releaseDate":1014336000000,"language":"en","type":"Movie","_key":"37868"} +{"label":"Susanna Thompson","version":22,"id":"62547","lastModified":"1301901413000","name":"Susanna Thompson","type":"Person","_key":"37869"} +{"label":"Liza Weil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fe\/4ce1b8835e73d60f6c0003fe\/liza-weil-profile.jpg","version":27,"id":"55546","lastModified":"1301902354000","name":"Liza Weil","type":"Person","_key":"37870"} +{"label":"Heidi Swedberg","version":21,"id":"62551","lastModified":"1301902088000","name":"Heidi Swedberg","type":"Person","_key":"37871"} +{"label":"Marybeth Fisher","version":21,"id":"62550","lastModified":"1301901728000","name":"Marybeth Fisher","type":"Person","_key":"37872"} +{"label":"Jamie Sue Sherrill","version":21,"id":"62552","lastModified":"1301901728000","name":"Jamie Sue Sherrill","type":"Person","_key":"37873"} +{"label":"Samantha Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4d97b2a57b9aa13b8900015a\/samantha-smith-profile.jpg","version":32,"id":"62553","lastModified":"1301901940000","name":"Samantha Smith","type":"Person","_key":"37874"} +{"label":"Peter Hansen","version":25,"id":"62549","lastModified":"1301901475000","name":"Peter Hansen","type":"Person","_key":"37875"} +{"label":"When a Stranger Calls","description":"During an otherwise routine babysitting gig, a high-school student is harassed by an increasingly threatening prank caller.","id":"10053","runtime":87,"imdbId":"tt0455857","homepage":"http:\/\/www.sonypictures.com\/movies\/whenastrangercalls\/site\/","version":190,"lastModified":"1301902911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9d\/4d4733dd5e73d6108f000e9d\/when-a-stranger-calls-mid.jpg","genre":"Drama","title":"When a Stranger Calls","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"37876"} +{"label":"Tessa Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/692\/4cd9b8977b9aa11b22000692\/tessa-thompson-profile.jpg","version":33,"id":"62561","lastModified":"1301901531000","name":"Tessa Thompson","type":"Person","_key":"37877"} +{"label":"David Denman","version":27,"id":"62562","lastModified":"1301901582000","name":"David Denman","type":"Person","_key":"37878"} +{"label":"Arthur Young","version":22,"id":"62563","lastModified":"1301902024000","name":"Arthur Young","type":"Person","_key":"37879"} +{"label":"Madeline Carroll","version":25,"id":"62564","lastModified":"1301901325000","name":"Madeline Carroll","type":"Person","_key":"37880"} +{"label":"Escher Holloway","version":22,"id":"62569","lastModified":"1301902178000","name":"Escher Holloway","type":"Person","_key":"37881"} +{"label":"Rosine 'Ace' Hatem","version":22,"id":"62568","lastModified":"1301902367000","name":"Rosine 'Ace' Hatem","type":"Person","_key":"37882"} +{"label":"Molly Bryant","version":27,"id":"62570","lastModified":"1301902368000","name":"Molly Bryant","type":"Person","_key":"37883"} +{"label":"John Bobek","version":22,"id":"62565","lastModified":"1301902186000","name":"John Bobek","type":"Person","_key":"37884"} +{"label":"Brad Surosky","version":22,"id":"62566","lastModified":"1301902362000","name":"Brad Surosky","type":"Person","_key":"37885"} +{"label":"Karina Logue","version":22,"id":"62567","lastModified":"1301902365000","name":"Karina Logue","type":"Person","_key":"37886"} +{"label":"Owen Smith","version":24,"id":"62572","lastModified":"1301902037000","name":"Owen Smith","type":"Person","_key":"37887"} +{"label":"John Waugh","version":22,"id":"62571","lastModified":"1301902164000","name":"John Waugh","type":"Person","_key":"37888"} +{"label":"Spy Kids","description":"Carmen and Juni think their parents are boring. Little do they know that in their day, Gregorio and Ingrid Cortez were the top secret agents from their respective countries. They gave up that life to raise their children. Now, the disappearances of several of their old colleagues forces the Cortez' return from retirement. What they didn't count on was Carmen and Juni joining the \"family business.\"","id":"10054","runtime":84,"imdbId":"tt0227538","trailer":"http:\/\/www.youtube.com\/watch?v=xWpsgXT5_XE","version":125,"lastModified":"1301901827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/922\/4bc92b8a017a3c57fe011922\/spy-kids-mid.jpg","genre":"Action","title":"Spy Kids","releaseDate":984873600000,"language":"en","tagline":"Real spies...Only smaller","type":"Movie","_key":"37889"} +{"label":"Room 6","description":"The school teacher Amy has been proposed by her boyfriend Nick early in the morning and she promises her answer later in the afternoon...","id":"10055","runtime":94,"imdbId":"tt0451187","trailer":"http:\/\/www.youtube.com\/watch?v=wRyJgBrt8B8","version":137,"lastModified":"1301903379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49f\/4bf801b8017a3c773200049f\/room-6-mid.jpg","genre":"Horror","title":"Room 6","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"37890"} +{"label":"Michael Hurst","version":36,"id":"62573","lastModified":"1301901445000","name":"Michael Hurst","type":"Person","_key":"37891"} +{"label":"Ellie Cornell","version":29,"id":"62589","lastModified":"1301901498000","name":"Ellie Cornell","type":"Person","_key":"37892"} +{"label":"Marissa N. Blanchard","version":19,"id":"62591","lastModified":"1301902266000","name":"Marissa N. Blanchard","type":"Person","_key":"37893"} +{"label":"Stacy Fuson","version":20,"id":"62592","lastModified":"1301902366000","name":"Stacy Fuson","type":"Person","_key":"37894"} +{"label":"Jack Riley","version":24,"id":"62590","lastModified":"1301902088000","name":"Jack Riley","type":"Person","_key":"37895"} +{"label":"Katie Lohmann","version":22,"id":"62593","lastModified":"1301902128000","name":"Katie Lohmann","type":"Person","_key":"37896"} +{"label":"Cheryl Tsai","version":20,"id":"62594","lastModified":"1301902365000","name":"Cheryl Tsai","type":"Person","_key":"37897"} +{"label":"Mary Pat Gleason","version":19,"id":"62595","lastModified":"1301902266000","name":"Mary Pat Gleason","type":"Person","_key":"37898"} +{"label":"Peter Mackenzie","version":19,"id":"62597","lastModified":"1301902266000","name":"Peter Mackenzie","type":"Person","_key":"37899"} +{"label":"Jill Montgomery","version":19,"id":"62599","lastModified":"1301902266000","name":"Jill Montgomery","type":"Person","_key":"37900"} +{"label":"Killer's Kiss","description":"The film revolves around Davey Gordon (Jamie Smith), a 29 year old welterweight New York boxer in the end of his career, and his relationship with a dancer and her violent employer.","id":"10056","runtime":67,"imdbId":"tt0048254","version":275,"lastModified":"1301903853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/937\/4bc92b8b017a3c57fe011937\/killer-s-kiss-mid.jpg","studio":"Minotaur Productions","genre":"Drama","title":"Killer's Kiss","releaseDate":-450662400000,"language":"en","type":"Movie","_key":"37901"} +{"label":"Jamie Smith","version":20,"id":"62601","lastModified":"1301901827000","name":"Jamie Smith","type":"Person","_key":"37902"} +{"label":"Irene Kane","version":20,"id":"62602","lastModified":"1301901649000","name":"Irene Kane","type":"Person","_key":"37903"} +{"label":"The Three Musketeers","description":"The three best of the disbanded Musketeers - Athos, Porthos, and Aramis - join a young hotheaded would-be-Musketeer, D'Artagnan, to stop the Cardinal Richelieu's evil plot: to form an alliance with enemy England by way of the mysterious Milady.","id":"10057","runtime":105,"imdbId":"tt0108333","version":126,"lastModified":"1301902636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ec\/4d8ae0f95e73d653d40007ec\/the-three-musketeers-mid.jpg","genre":"Action","title":"The Three Musketeers","releaseDate":753062400000,"language":"en","tagline":"They're Scoundrels, Playboys, Outlaws . . . The Greatest Heroes Who Ever Lived.","type":"Movie","_key":"37904"} +{"label":"Get Rich or Die Tryin'","description":"A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.","id":"10060","runtime":117,"imdbId":"tt0430308","version":200,"lastModified":"1301901992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/962\/4bc92b91017a3c57fe011962\/get-rich-or-die-tryin-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Get Rich or Die Tryin'","releaseDate":1131494400000,"language":"en","type":"Movie","_key":"37905"} +{"label":"50 Cent","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f9\/4c43aa185e73d60f360003f9\/50-cent-profile.jpg","version":83,"id":"62644","lastModified":"1301904089000","name":"50 Cent","type":"Person","_key":"37906"} +{"label":"Marc John Jefferies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e0\/4cf203215e73d61e3f0005e0\/marc-john-jefferies-profile.jpg","version":34,"id":"62646","lastModified":"1301901939000","name":"Marc John Jefferies","type":"Person","_key":"37907"} +{"label":"Sullivan Walker","version":19,"id":"62647","lastModified":"1301902266000","name":"Sullivan Walker","type":"Person","_key":"37908"} +{"label":"Serena Reeder","version":20,"id":"62648","lastModified":"1301901878000","name":"Serena Reeder","type":"Person","_key":"37909"} +{"label":"Russell Hornsby","version":26,"id":"62649","lastModified":"1301901585000","name":"Russell Hornsby","type":"Person","_key":"37910"} +{"label":"Vanessa Madden","version":19,"id":"62652","lastModified":"1301901728000","name":"Vanessa Madden","type":"Person","_key":"37911"} +{"label":"Joseph Pierre","version":19,"id":"62650","lastModified":"1301902088000","name":"Joseph Pierre","type":"Person","_key":"37912"} +{"label":"Ryan Allen","version":19,"id":"62651","lastModified":"1301902088000","name":"Ryan Allen","type":"Person","_key":"37913"} +{"label":"Brendan Jeffers","version":19,"id":"62654","lastModified":"1301902088000","name":"Brendan Jeffers","type":"Person","_key":"37914"} +{"label":"Anastasia Hill","version":19,"id":"62655","lastModified":"1301901878000","name":"Anastasia Hill","type":"Person","_key":"37915"} +{"label":"Zainab Musa","version":19,"id":"62653","lastModified":"1301901728000","name":"Zainab Musa","type":"Person","_key":"37916"} +{"label":"Escape from L.A.","description":"This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.","id":"10061","runtime":97,"imdbId":"tt0116225","trailer":"http:\/\/www.youtube.com\/watch?v=drOdRwD1JF0","version":191,"lastModified":"1301902059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4d76b0267b9aa15c740001df\/escape-from-l-a-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Escape from L.A.","releaseDate":839548800000,"language":"en","tagline":"Snake Is Back.","type":"Movie","_key":"37917"} +{"label":"UKM: The Ultimate Killing Machine","description":"Waylon and Buddy decide to join the army as it appears to be their best option. But when they realize...","id":"10062","runtime":90,"imdbId":"tt0843878","version":138,"lastModified":"1301902863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/979\/4bc92b98017a3c57fe011979\/ukm-the-ultimate-killing-machine-mid.jpg","genre":"Horror","title":"UKM: The Ultimate Killing Machine","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"37918"} +{"label":"David Mitchell","version":23,"id":"139075","lastModified":"1301902143000","name":"David Mitchell","type":"Person","_key":"37919"} +{"label":"Mac Fyfe","version":21,"id":"62671","lastModified":"1301901832000","name":"Mac Fyfe","type":"Person","_key":"37920"} +{"label":"Erin Mackinnon","version":20,"id":"62672","lastModified":"1301902178000","name":"Erin Mackinnon","type":"Person","_key":"37921"} +{"label":"Victoria Nestorowicz","version":20,"id":"62670","lastModified":"1301901783000","name":"Victoria Nestorowicz","type":"Person","_key":"37922"} +{"label":"Steve Arbuckle","version":20,"id":"62669","lastModified":"1301901993000","name":"Steve Arbuckle","type":"Person","_key":"37923"} +{"label":"Simon Northwood","version":20,"id":"43284","lastModified":"1301901783000","name":"Simon Northwood","type":"Person","_key":"37924"} +{"label":"John Evans","version":22,"id":"40122","lastModified":"1301901564000","name":"John Evans","type":"Person","_key":"37925"} +{"label":"Billy Parrott","version":22,"id":"62674","lastModified":"1301901649000","name":"Billy Parrott","type":"Person","_key":"37926"} +{"label":"Erin Berry","version":20,"id":"62675","lastModified":"1301902002000","name":"Erin Berry","type":"Person","_key":"37927"} +{"label":"John-Philip Vazquez","version":20,"id":"62678","lastModified":"1301901954000","name":"John-Philip Vazquez","type":"Person","_key":"37928"} +{"label":"Glen Cross","version":20,"id":"62673","lastModified":"1301901954000","name":"Glen Cross","type":"Person","_key":"37929"} +{"label":"Michael Scratch","version":20,"id":"62679","lastModified":"1301901954000","name":"Michael Scratch","type":"Person","_key":"37930"} +{"label":"Lincoln Russel","version":20,"id":"62676","lastModified":"1301901954000","name":"Lincoln Russel","type":"Person","_key":"37931"} +{"label":"Chris Loane","version":20,"id":"62677","lastModified":"1301901783000","name":"Chris Loane","type":"Person","_key":"37932"} +{"label":"The Breed","description":"A group of five college kids are forced to match wits with unwelcoming residents when they fly to a \"deserted\" island for a party weekend.","id":"10063","runtime":87,"imdbId":"tt0455362","version":218,"lastModified":"1301903335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/986\/4bc92b99017a3c57fe011986\/the-breed-mid.jpg","genre":"Horror","title":"The Breed","releaseDate":1149120000000,"language":"en","type":"Movie","_key":"37933"} +{"label":"Nicholas Mastandrea","version":25,"id":"35582","lastModified":"1302061539000","name":"Nicholas Mastandrea","type":"Person","_key":"37934"} +{"label":"Lisa-Marie Schneider","version":23,"id":"62694","lastModified":"1301901649000","name":"Lisa-Marie Schneider","type":"Person","_key":"37935"} +{"label":"Eric Lively","version":35,"id":"53116","lastModified":"1301901565000","name":"Eric Lively","type":"Person","_key":"37936"} +{"label":"Edison","description":"Upon discovering a den of corrupt policemen, a fresh-faced journalist makes a shaky allies in a jaded reporter and investigator for a powerful district attorney.","id":"10064","runtime":92,"imdbId":"tt0389957","version":165,"lastModified":"1301902794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98f\/4bc92b9a017a3c57fe01198f\/edison-mid.jpg","genre":"Crime","title":"Edison","releaseDate":1131667200000,"language":"en","type":"Movie","_key":"37937"} +{"label":"David J. Burke","version":24,"id":"62696","lastModified":"1301901430000","name":"David J. Burke","type":"Person","_key":"37938"} +{"label":"Marco Sanchez","version":22,"id":"62710","lastModified":"1301902266000","name":"Marco Sanchez","type":"Person","_key":"37939"} +{"label":"Darryl Quon","version":20,"id":"62711","lastModified":"1301902266000","name":"Darryl Quon","type":"Person","_key":"37940"} +{"label":"Andrew Jackson","version":33,"id":"62712","lastModified":"1301902009000","name":"Andrew Jackson","type":"Person","_key":"37941"} +{"label":"Timothy Paul Perez","version":25,"id":"62713","lastModified":"1301901728000","name":"Timothy Paul Perez","type":"Person","_key":"37942"} +{"label":"Garfield Wilson","version":20,"id":"62709","lastModified":"1301902266000","name":"Garfield Wilson","type":"Person","_key":"37943"} +{"label":"B.J. Harrison","version":20,"id":"62716","lastModified":"1301902088000","name":"B.J. Harrison","type":"Person","_key":"37944"} +{"label":"Bryan Genesse","version":26,"id":"62714","lastModified":"1301902340000","name":"Bryan Genesse","type":"Person","_key":"37945"} +{"label":"Robert Miano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b18\/4d146b6e7b9aa1148e001b18\/robert-miano-profile.jpg","version":53,"id":"62715","lastModified":"1301901237000","name":"Robert Miano","type":"Person","_key":"37946"} +{"label":"Rekha Sharma","version":25,"id":"62717","lastModified":"1301902187000","name":"Rekha Sharma","type":"Person","_key":"37947"} +{"label":"The Amityville Horror","description":"Hapless home buyers George and Kathy Lutz discover their dream home is possessed by evil spirits in this terrifying remake of the 1979 horror classic, based on Jay Anson's popular book -- and a reportedly real-life haunting. As it turns out, the Lutzes home has a bloody history (a former occupant killed his entire family there just a year earlier), so it doesn't take long for terror to come knocking.","id":"10065","runtime":90,"imdbId":"tt0384806","homepage":"http:\/\/www.amityvillehorrormovie.com","version":232,"lastModified":"1301901549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e27\/4d4cb88b5e73d617bd001e27\/the-amityville-horror-mid.jpg","studio":"Dimension Films","genre":"Drama","title":"The Amityville Horror","releaseDate":1113523200000,"language":"en","tagline":"Katch 'em, kill 'em","type":"Movie","_key":"37948"} +{"label":"Andrew Douglas","version":26,"id":"62721","lastModified":"1301901943000","name":"Andrew Douglas","type":"Person","_key":"37949"} +{"label":"Isabel Conner","version":25,"id":"62728","lastModified":"1301902266000","name":"Isabel Conner","type":"Person","_key":"37950"} +{"label":"Brendan Donaldson","version":25,"id":"62729","lastModified":"1301902088000","name":"Brendan Donaldson","type":"Person","_key":"37951"} +{"label":"David Gee","version":25,"id":"62732","lastModified":"1301902266000","name":"David Gee","type":"Person","_key":"37952"} +{"label":"Rich Komenich","version":26,"id":"62731","lastModified":"1301902265000","name":"Rich Komenich","type":"Person","_key":"37953"} +{"label":"Annabel Armour","version":25,"id":"62730","lastModified":"1301902265000","name":"Annabel Armour","type":"Person","_key":"37954"} +{"label":"Nancy Lollar","version":25,"id":"62733","lastModified":"1301902265000","name":"Nancy Lollar","type":"Person","_key":"37955"} +{"label":"Jos\u00e9 Taitano","version":25,"id":"62734","lastModified":"1301902265000","name":"Jos\u00e9 Taitano","type":"Person","_key":"37956"} +{"label":"Lenore Thomas","version":25,"id":"62737","lastModified":"1301902265000","name":"Lenore Thomas","type":"Person","_key":"37957"} +{"label":"Jenny Strubin","version":25,"id":"62736","lastModified":"1301902265000","name":"Jenny Strubin","type":"Person","_key":"37958"} +{"label":"Dorian Kingi","version":25,"id":"62735","lastModified":"1301902265000","name":"Dorian Kingi","type":"Person","_key":"37959"} +{"label":"House of Wax","description":"Six friends are stranded in a ghost town where a towering wax museum looms ahead. And inside are two brothers who have a special way of making the wax figures look real...","id":"10066","runtime":113,"imdbId":"tt0397065","version":272,"lastModified":"1301902117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46b\/4d1c815b7b9aa17a8b00046b\/house-of-wax-mid.jpg","genre":"Horror","title":"House of Wax","releaseDate":1115337600000,"language":"en","type":"Movie","_key":"37960"} +{"label":"Jared Padalecki","version":42,"id":"49623","lastModified":"1301901201000","name":"Jared Padalecki","type":"Person","_key":"37961"} +{"label":"Chad Michael Murray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ada\/4cf3d1a25e73d62385000ada\/chad-michael-murray-profile.jpg","version":34,"id":"62747","lastModified":"1301901376000","name":"Chad Michael Murray","type":"Person","_key":"37962"} +{"label":"Thomas Adamson","version":23,"id":"62749","lastModified":"1301902088000","name":"Thomas Adamson","type":"Person","_key":"37963"} +{"label":"Dragicia Debert","version":23,"id":"62748","lastModified":"1301901728000","name":"Dragicia Debert","type":"Person","_key":"37964"} +{"label":"Murray Smith","version":23,"id":"62750","lastModified":"1301902088000","name":"Murray Smith","type":"Person","_key":"37965"} +{"label":"Sam Harkess","version":23,"id":"62751","lastModified":"1301902088000","name":"Sam Harkess","type":"Person","_key":"37966"} +{"label":"Damon Herriman","version":23,"id":"62752","lastModified":"1301902088000","name":"Damon Herriman","type":"Person","_key":"37967"} +{"label":"Emma Lung","version":35,"id":"62754","lastModified":"1301901242000","name":"Emma Lung","type":"Person","_key":"37968"} +{"label":"Andy Anderson","version":25,"id":"62753","lastModified":"1301901728000","name":"Andy Anderson","type":"Person","_key":"37969"} +{"label":"The Shaggy Dog","description":"A man tries to live a normal life despite the fact that he sometimes turns into a sheepdog.","id":"10067","runtime":98,"imdbId":"tt0393735","version":178,"lastModified":"1301902381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b3\/4bc92b9f017a3c57fe0119b3\/the-shaggy-dog-mid.jpg","genre":"Comedy","title":"The Shaggy Dog","releaseDate":1141948800000,"language":"en","type":"Movie","_key":"37970"} +{"label":"Zena Grey","version":26,"id":"62760","lastModified":"1301901430000","name":"Zena Grey","type":"Person","_key":"37971"} +{"label":"Jarrad Paul","version":19,"id":"62763","lastModified":"1301902265000","name":"Jarrad Paul","type":"Person","_key":"37972"} +{"label":"Bess Wohl","version":19,"id":"62762","lastModified":"1301902265000","name":"Bess Wohl","type":"Person","_key":"37973"} +{"label":"Shawn Pyfrom","version":21,"id":"62761","lastModified":"1301902360000","name":"Shawn Pyfrom","type":"Person","_key":"37974"} +{"label":"Kevin Cooney","version":36,"id":"25711","lastModified":"1301901415000","name":"Kevin Cooney","type":"Person","_key":"37975"} +{"label":"Jeanette Brox","version":23,"id":"62764","lastModified":"1301902265000","name":"Jeanette Brox","type":"Person","_key":"37976"} +{"label":"Rhea Seehorn","version":19,"id":"62765","lastModified":"1301902088000","name":"Rhea Seehorn","type":"Person","_key":"37977"} +{"label":"Koji Kataoka","version":19,"id":"62766","lastModified":"1301902265000","name":"Koji Kataoka","type":"Person","_key":"37978"} +{"label":"Nine Half Weeks","description":"An erotic story about a woman, the assistant of an art gallery, who gets involved in an impersonal affair with a man. She barely knows about his life, only about the sex games they play, so the relationship begins to get complicated. ","id":"10068","runtime":112,"imdbId":"tt0091635","version":105,"lastModified":"1301902412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c4\/4bc92ba3017a3c57fe0119c4\/nine-12-weeks-mid.jpg","genre":"Erotic","title":"Nine Half Weeks","releaseDate":508723200000,"language":"en","type":"Movie","_key":"37979"} +{"label":"Stay Alive","description":"After the brutal death of a friend, a group of friends find themselves in possession of a video-game called \"Stay Alive,\" a blood-curdling true story of a 17th century noblewoman known as the Blood Countess. After playing the game when they know they shouldn't, however, the friends realize that once they die in the game - they die for real.","id":"10069","runtime":100,"imdbId":"tt0441796","version":164,"lastModified":"1301902348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d6\/4bc92ba6017a3c57fe0119d6\/stay-alive-mid.jpg","studio":"Buena Vista Pictures","genre":"Horror","title":"Stay Alive","releaseDate":1143158400000,"language":"en","type":"Movie","_key":"37980"} +{"label":"William Brent Bell","version":20,"id":"62768","lastModified":"1301902088000","name":"William Brent Bell","type":"Person","_key":"37981"} +{"label":"Frankie Muniz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/167\/4c7ec05a5e73d648df000167\/frankie-muniz-profile.jpg","version":32,"birthday":"502585200000","id":"51391","birthplace":"Ridgewood, New Jersey, USA","lastModified":"1301901203000","name":"Frankie Muniz","type":"Person","_key":"37982"} +{"label":"Billy Slaughter","version":20,"id":"62784","lastModified":"1301901993000","name":"Billy Slaughter","type":"Person","_key":"37983"} +{"label":"Nicole Oppermann","version":19,"id":"62783","lastModified":"1301902088000","name":"Nicole Oppermann","type":"Person","_key":"37984"} +{"label":"April Wood","version":19,"id":"62785","lastModified":"1301901878000","name":"April Wood","type":"Person","_key":"37985"} +{"label":"Rio Hackford","version":19,"id":"62787","lastModified":"1301901878000","name":"Rio Hackford","type":"Person","_key":"37986"} +{"label":"Billy Louviere","version":19,"id":"62788","lastModified":"1301901878000","name":"Billy Louviere","type":"Person","_key":"37987"} +{"label":"Monica Monica","version":19,"id":"62786","lastModified":"1301901878000","name":"Monica Monica","type":"Person","_key":"37988"} +{"label":"Maria Kalinina","version":19,"id":"62790","lastModified":"1301902088000","name":"Maria Kalinina","type":"Person","_key":"37989"} +{"label":"Rick Green","version":19,"id":"62793","lastModified":"1301902088000","name":"Rick Green","type":"Person","_key":"37990"} +{"label":"J. Richey Nash","version":19,"id":"62789","lastModified":"1301901878000","name":"J. Richey Nash","type":"Person","_key":"37991"} +{"label":"Lauren Lorbeck","version":19,"id":"62791","lastModified":"1301901878000","name":"Lauren Lorbeck","type":"Person","_key":"37992"} +{"label":"Veronica Mosgrove","version":19,"id":"62792","lastModified":"1301901878000","name":"Veronica Mosgrove","type":"Person","_key":"37993"} +{"label":"Feast","description":"Patrons locked inside of a bar are forced to fight monsters.","id":"10070","runtime":95,"imdbId":"tt0426459","trailer":"http:\/\/www.youtube.com\/watch?v=Xgys3pi2eN0","homepage":"http:\/\/www.feast-movie.com\/","version":238,"lastModified":"1301902752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e7\/4bc92ba9017a3c57fe0119e7\/feast-mid.jpg","genre":"Action","title":"Feast","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"37994"} +{"label":"John Gulager","version":24,"id":"62797","lastModified":"1301902144000","name":"John Gulager","type":"Person","_key":"37995"} +{"label":"Navi Rawat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/474\/4bfa708a017a3c702f000474\/navi-rawat-profile.jpg","version":22,"id":"43778","lastModified":"1301901444000","name":"Navi Rawat","type":"Person","_key":"37996"} +{"label":"Josh Zuckerman","version":31,"id":"62816","lastModified":"1301901839000","name":"Josh Zuckerman","type":"Person","_key":"37997"} +{"label":"Chauntae Davies","version":19,"id":"62818","lastModified":"1301902088000","name":"Chauntae Davies","type":"Person","_key":"37998"} +{"label":"Diane Ayala Goldner","version":27,"id":"62819","lastModified":"1301901336000","name":"Diane Ayala Goldner","type":"Person","_key":"37999"} +{"label":"Somah Haaland","version":19,"id":"62820","lastModified":"1301902265000","name":"Somah Haaland","type":"Person","_key":"38000"} +{"label":"Tyler Patrick Jones","version":28,"id":"62821","lastModified":"1301901343000","name":"Tyler Patrick Jones","type":"Person","_key":"38001"} +{"label":"Hannah Schick","version":19,"id":"62823","lastModified":"1301902088000","name":"Hannah Schick","type":"Person","_key":"38002"} +{"label":"Gary J. Tunnicliffe","version":34,"id":"62824","lastModified":"1302065849000","name":"Gary J. Tunnicliffe","type":"Person","_key":"38003"} +{"label":"The Brothers Solomon","description":"A pair of well-meaning, but socially inept brothers try to find their perfect mates in order to provide their dying father with a grandchild.","id":"10071","runtime":93,"imdbId":"tt0784972","version":280,"lastModified":"1301902739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a01\/4bc92bae017a3c57fe011a01\/the-brothers-solomon-mid.jpg","genre":"Comedy","title":"The Brothers Solomon","releaseDate":1189123200000,"language":"en","tagline":"They want to put a baby in you.","type":"Movie","_key":"38004"} +{"label":"Michael Ormsby","version":20,"id":"62832","lastModified":"1301902088000","name":"Michael Ormsby","type":"Person","_key":"38005"} +{"label":"Ryun Yu","version":20,"id":"62834","lastModified":"1301902088000","name":"Ryun Yu","type":"Person","_key":"38006"} +{"label":"Chandler Hill","version":20,"id":"62837","lastModified":"1301902088000","name":"Chandler Hill","type":"Person","_key":"38007"} +{"label":"Charles Rahi Chun","version":18,"id":"62833","lastModified":"1301902088000","name":"Charles Rahi Chun","type":"Person","_key":"38008"} +{"label":"Derek Waters","version":20,"id":"62836","lastModified":"1301902088000","name":"Derek Waters","type":"Person","_key":"38009"} +{"label":"Susanne Wright","version":20,"id":"62835","lastModified":"1301902088000","name":"Susanne Wright","type":"Person","_key":"38010"} +{"label":"Anna Becker","version":20,"id":"62838","lastModified":"1301902088000","name":"Anna Becker","type":"Person","_key":"38011"} +{"label":"Brian Scolaro","version":20,"id":"62840","lastModified":"1301902265000","name":"Brian Scolaro","type":"Person","_key":"38012"} +{"label":"A Nightmare on Elm Street 3: Dream Warriors","description":"It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.","id":"10072","runtime":96,"imdbId":"tt0093629","trailer":"http:\/\/www.youtube.com\/watch?v=998","version":170,"lastModified":"1301901778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/121\/4c1d3c735e73d607d1000121\/a-nightmare-on-elm-street-3-dream-warriors-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"A Nightmare on Elm Street 3: Dream Warriors","releaseDate":541382400000,"language":"en","tagline":"If You Think You're Ready For Freddy, Think Again!","type":"Movie","_key":"38013"} +{"label":"Craig Wasson","version":34,"id":"62893","lastModified":"1301901667000","name":"Craig Wasson","type":"Person","_key":"38014"} +{"label":"Date Movie","description":"Spoof of romantic comedies which focuses on a man (Campbell), his crush (Hannigan), his parents (Coolidge, Willard), and her father (Griffin).","id":"10073","runtime":83,"imdbId":"tt0466342","version":240,"lastModified":"1301901849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0f\/4c7348565e73d65f7e000d0f\/date-movie-mid.jpg","studio":"New Regency Pictures","genre":"Comedy","title":"Date Movie","releaseDate":1140134400000,"language":"en","tagline":"An Unprotected Comedy","type":"Movie","_key":"38015"} +{"label":"Meera Simhan","version":22,"id":"62843","lastModified":"1301902200000","name":"Meera Simhan","type":"Person","_key":"38016"} +{"label":"Mauricio Sanchez","version":22,"id":"62844","lastModified":"1301902181000","name":"Mauricio Sanchez","type":"Person","_key":"38017"} +{"label":"Charlie Dell","version":26,"id":"62846","lastModified":"1301901568000","name":"Charlie Dell","type":"Person","_key":"38018"} +{"label":"Beverly Polcyn","version":22,"id":"62845","lastModified":"1301902126000","name":"Beverly Polcyn","type":"Person","_key":"38019"} +{"label":"Scott Bridges","version":22,"id":"62850","lastModified":"1301902190000","name":"Scott Bridges","type":"Person","_key":"38020"} +{"label":"Dana Seltzer","version":22,"id":"62847","lastModified":"1301901997000","name":"Dana Seltzer","type":"Person","_key":"38021"} +{"label":"Tom Lenk","version":22,"id":"62849","lastModified":"1301902195000","name":"Tom Lenk","type":"Person","_key":"38022"} +{"label":"Valery M. Ortiz","version":22,"id":"62848","lastModified":"1301901765000","name":"Valery M. Ortiz","type":"Person","_key":"38023"} +{"label":"Tom Fitzpatrick","version":24,"id":"62851","lastModified":"1301902126000","name":"Tom Fitzpatrick","type":"Person","_key":"38024"} +{"label":"Susse Budde","version":21,"id":"62852","lastModified":"1301901635000","name":"Susse Budde","type":"Person","_key":"38025"} +{"label":"Hot Rod","description":"Self-proclaimed stuntman Rod Kimble is preparing for the jump of his life - to clear fifteen buses to raise money for his abusive stepfather Frank's life-saving heart operation.","id":"10074","runtime":88,"imdbId":"tt0787475","version":262,"lastModified":"1301902382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4c\/4bc92bb9017a3c57fe011a4c\/hot-rod-mid.jpg","genre":"Action","title":"Hot Rod","releaseDate":1186099200000,"language":"en","tagline":"Smack destiny in the face","type":"Movie","_key":"38026"} +{"label":"Akiva Schaffer","version":19,"id":"62854","lastModified":"1301901878000","name":"Akiva Schaffer","type":"Person","_key":"38027"} +{"label":"Andy Samberg","version":30,"id":"62861","lastModified":"1301901103000","name":"Andy Samberg","type":"Person","_key":"38028"} +{"label":"Jorma Taccone","version":29,"id":"62863","lastModified":"1301901101000","name":"Jorma Taccone","type":"Person","_key":"38029"} +{"label":"Blood and Chocolate","description":"A young teenage werewolf (Bruckner) is torn between honoring her family's secret and her love for a man (Dancy).","id":"10075","runtime":98,"imdbId":"tt0397044","trailer":"http:\/\/www.youtube.com\/watch?v=kZ8IEzI86Ro","version":249,"lastModified":"1301902574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d56\/4c7366ed7b9aa13ab5000d56\/blood-and-chocolate-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"Blood and Chocolate","releaseDate":1169769600000,"language":"en","type":"Movie","_key":"38030"} +{"label":"Katja von Garnier","version":34,"id":"62872","lastModified":"1301901649000","name":"Katja von Garnier","type":"Person","_key":"38031"} +{"label":"Bryan Dick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e4c\/4d264ab97b9aa134d8000e4c\/bryan-dick-profile.jpg","version":26,"id":"47703","lastModified":"1301901598000","name":"Bryan Dick","type":"Person","_key":"38032"} +{"label":"Chris Geere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e59\/4d264b977b9aa134d8000e59\/chris-geere-profile.jpg","version":27,"id":"62879","lastModified":"1301901372000","name":"Chris Geere","type":"Person","_key":"38033"} +{"label":"Jack Wilson","version":22,"id":"62882","lastModified":"1301901613000","name":"Jack Wilson","type":"Person","_key":"38034"} +{"label":"Vitalie Ursu","version":22,"id":"62883","lastModified":"1301901613000","name":"Vitalie Ursu","type":"Person","_key":"38035"} +{"label":"Tom Harper","version":24,"id":"62880","lastModified":"1301901668000","name":"Tom Harper","type":"Person","_key":"38036"} +{"label":"Bogdan Voda","version":22,"id":"62884","lastModified":"1301901613000","name":"Bogdan Voda","type":"Person","_key":"38037"} +{"label":"Rodica Mandache","version":22,"id":"62885","lastModified":"1301901613000","name":"Rodica Mandache","type":"Person","_key":"38038"} +{"label":"Sandu Mihai Gruia","version":22,"id":"62886","lastModified":"1301901613000","name":"Sandu Mihai Gruia","type":"Person","_key":"38039"} +{"label":"Helga Racz","version":22,"id":"62887","lastModified":"1301901537000","name":"Helga Racz","type":"Person","_key":"38040"} +{"label":"Lia Bugnar","version":22,"id":"62888","lastModified":"1301901728000","name":"Lia Bugnar","type":"Person","_key":"38041"} +{"label":"Sofia Vladu","version":22,"id":"62890","lastModified":"1301901537000","name":"Sofia Vladu","type":"Person","_key":"38042"} +{"label":"Mihai Calin","version":22,"id":"62889","lastModified":"1301901728000","name":"Mihai Calin","type":"Person","_key":"38043"} +{"label":"David Finti","version":22,"id":"62891","lastModified":"1301901537000","name":"David Finti","type":"Person","_key":"38044"} +{"label":"John Kerr","version":19,"id":"100995","lastModified":"1301902467000","name":"John Kerr","type":"Person","_key":"38045"} +{"label":"Severed","description":"A multi-national forestry company engages in genetic experimentation to increase logging yield in a remote section of forest...","id":"10076","runtime":93,"imdbId":"tt0428390","version":108,"lastModified":"1301902765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/203\/4c311c8f5e73d63ccd000203\/severed-mid.jpg","genre":"Drama","title":"Severed","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"38046"} +{"label":"Carl Bessai","version":21,"id":"62897","lastModified":"1301902019000","name":"Carl Bessai","type":"Person","_key":"38047"} +{"label":"Paul Campbell","version":36,"id":"62909","lastModified":"1301901578000","name":"Paul Campbell","type":"Person","_key":"38048"} +{"label":"Sarah Lind","version":25,"id":"62910","lastModified":"1301901762000","name":"Sarah Lind","type":"Person","_key":"38049"} +{"label":"Jerry Wasserman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bf\/4d8a3b6a7b9aa13aea0003bf\/jerry-wasserman-profile.jpg","version":39,"id":"21091","lastModified":"1302070360000","name":"Jerry Wasserman","type":"Person","_key":"38050"} +{"label":"JR Bourne","version":31,"id":"62911","lastModified":"1301901352000","name":"JR Bourne","type":"Person","_key":"38051"} +{"label":"Hrothgar Mathews","version":24,"id":"62912","lastModified":"1301901927000","name":"Hrothgar Mathews","type":"Person","_key":"38052"} +{"label":"Sage Brocklebank","version":19,"id":"62913","lastModified":"1301902301000","name":"Sage Brocklebank","type":"Person","_key":"38053"} +{"label":"Amber Rothwell","version":28,"id":"62914","lastModified":"1301902391000","name":"Amber Rothwell","type":"Person","_key":"38054"} +{"label":"Kyle Cassie","version":24,"id":"62915","lastModified":"1301901373000","name":"Kyle Cassie","type":"Person","_key":"38055"} +{"label":"Alex Zahara","version":30,"id":"62919","lastModified":"1301902152000","name":"Alex Zahara","type":"Person","_key":"38056"} +{"label":"Benjamin Ratner","version":19,"id":"62918","lastModified":"1301902301000","name":"Benjamin Ratner","type":"Person","_key":"38057"} +{"label":"John Callander","version":21,"id":"62917","lastModified":"1301902124000","name":"John Callander","type":"Person","_key":"38058"} +{"label":"Brad Sihvon","version":19,"id":"62916","lastModified":"1301902301000","name":"Brad Sihvon","type":"Person","_key":"38059"} +{"label":"John Reardon","version":26,"id":"62920","lastModified":"1301901562000","name":"John Reardon","type":"Person","_key":"38060"} +{"label":"Denis Corbett","version":19,"id":"62921","lastModified":"1301902300000","name":"Denis Corbett","type":"Person","_key":"38061"} +{"label":"A Sound of Thunder","description":"When a hunter sent back to the prehistoric era runs off the path he must not leave, he causes a chain reaction that alters history in disastrous ways.","id":"10077","runtime":110,"imdbId":"tt0318081","homepage":"http:\/\/asoundofthunder.warnerbros.com\/","version":252,"lastModified":"1301906947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a75\/4bc92bc3017a3c57fe011a75\/a-sound-of-thunder-mid.jpg","studio":"Franchise Pictures","genre":"Action","title":"A Sound of Thunder","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"38062"} +{"label":"Jemima Rooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d7\/4cf1d4c95e73d61e3d0003d7\/jemima-rooper-profile.jpg","biography":"From 12 she attended Godolphin & Latymer School in London where she \npassed her 9 GCSEs with A* and A grades in between working for several \nterms away from school on the Famous Five. From there she went to 6th \nform college where she got 3 grade A levels. Her parents are both \nfreelance broadcasters and she has two cousins who are young film \ndirectors - one of them the promising Serbian director <a href=\"http:\/\/www.imdb.com\/name\/nm1194496\/\">Stevan Filipovic<\/a>.","version":32,"birthday":"372726000000","id":"62932","birthplace":"Hammersmith, London, UK","lastModified":"1301901375000","name":"Jemima Rooper","type":"Person","_key":"38063"} +{"label":"Alvin Van Der Kuech","version":22,"id":"62933","lastModified":"1301901580000","name":"Alvin Van Der Kuech","type":"Person","_key":"38064"} +{"label":"Andrew Blanchard","version":21,"id":"62934","lastModified":"1301901475000","name":"Andrew Blanchard","type":"Person","_key":"38065"} +{"label":"Scott Bellefeville","version":21,"id":"62936","lastModified":"1301901613000","name":"Scott Bellefeville","type":"Person","_key":"38066"} +{"label":"Nikita Lespinasse","version":21,"id":"62935","lastModified":"1301901537000","name":"Nikita Lespinasse","type":"Person","_key":"38067"} +{"label":"Sai-Kit Yung","version":22,"id":"62937","lastModified":"1301901531000","name":"Sai-Kit Yung","type":"Person","_key":"38068"} +{"label":"Ho Hon Chou","version":21,"id":"62938","lastModified":"1301901475000","name":"Ho Hon Chou","type":"Person","_key":"38069"} +{"label":"Anezka Novak","version":21,"id":"62940","lastModified":"1301901475000","name":"Anezka Novak","type":"Person","_key":"38070"} +{"label":"Antonin Hausknecht","version":21,"id":"62939","lastModified":"1301901613000","name":"Antonin Hausknecht","type":"Person","_key":"38071"} +{"label":"John Hyams","version":27,"id":"62941","lastModified":"1301901442000","name":"John Hyams","type":"Person","_key":"38072"} +{"label":"Magicians","description":"A pair of rivaling stage magicians are forced to confront their falling out over a guillotine mishap when they compete in a magic competition.","id":"10078","runtime":90,"imdbId":"tt0841027","version":98,"lastModified":"1301907553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a88\/4bc92bc4017a3c57fe011a88\/magicians-mid.jpg","genre":"Comedy","title":"Magicians","releaseDate":1179446400000,"language":"en","type":"Movie","_key":"38073"} +{"label":"Andrew O'Connor","version":20,"id":"62942","lastModified":"1301901613000","name":"Andrew O'Connor","type":"Person","_key":"38074"} +{"label":"David Mitchell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4cef543c5e73d66b0700023e\/david-mitchell-profile.jpg","version":46,"id":"58118","lastModified":"1301901132000","name":"David Mitchell","type":"Person","_key":"38075"} +{"label":"Robert Webb","version":22,"id":"62960","lastModified":"1301901562000","name":"Robert Webb","type":"Person","_key":"38076"} +{"label":"Paul Mark Elliott","version":19,"id":"62962","lastModified":"1301901537000","name":"Paul Mark Elliott","type":"Person","_key":"38077"} +{"label":"Sarah Hadland","version":20,"id":"62961","lastModified":"1301901537000","name":"Sarah Hadland","type":"Person","_key":"38078"} +{"label":"Karen Seacombe","version":19,"id":"62963","lastModified":"1301901727000","name":"Karen Seacombe","type":"Person","_key":"38079"} +{"label":"Phil Nice","version":22,"id":"62964","lastModified":"1301901727000","name":"Phil Nice","type":"Person","_key":"38080"} +{"label":"Angel Coulby","version":19,"id":"62966","lastModified":"1301901727000","name":"Angel Coulby","type":"Person","_key":"38081"} +{"label":"Miranda Hart","version":20,"id":"62965","lastModified":"1301901674000","name":"Miranda Hart","type":"Person","_key":"38082"} +{"label":"Priyanga Burford","version":19,"id":"62968","lastModified":"1301901613000","name":"Priyanga Burford","type":"Person","_key":"38083"} +{"label":"Geoffrey McGivern","version":20,"id":"62970","lastModified":"1301901613000","name":"Geoffrey McGivern","type":"Person","_key":"38084"} +{"label":"Robin Weaver","version":20,"id":"62967","lastModified":"1301901493000","name":"Robin Weaver","type":"Person","_key":"38085"} +{"label":"Andrea Riseborough","version":24,"id":"62969","lastModified":"1301901772000","name":"Andrea Riseborough","type":"Person","_key":"38086"} +{"label":"Tim Plester","version":20,"id":"62972","lastModified":"1301901727000","name":"Tim Plester","type":"Person","_key":"38087"} +{"label":"Katy Wix","version":19,"id":"62975","lastModified":"1301901613000","name":"Katy Wix","type":"Person","_key":"38088"} +{"label":"Steve Edge","version":19,"id":"62973","lastModified":"1301901878000","name":"Steve Edge","type":"Person","_key":"38089"} +{"label":"Marek Larwood","version":19,"id":"62971","lastModified":"1301901727000","name":"Marek Larwood","type":"Person","_key":"38090"} +{"label":"Eleanor Matsuura","version":19,"id":"62976","lastModified":"1301901727000","name":"Eleanor Matsuura","type":"Person","_key":"38091"} +{"label":"Lucy Rhodes","version":19,"id":"62974","lastModified":"1301901537000","name":"Lucy Rhodes","type":"Person","_key":"38092"} +{"label":"Joy Division","description":"A teenage orphan fights against the Red Army at the end of WWII and in the aftermath is 'adopted' by a Commissar. Years later he is sent to London during the Cold war to work for the KGB, where he questions his life.","id":"10079","runtime":105,"imdbId":"tt0462373","version":325,"lastModified":"1301903176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/699\/4d3f430e7b9aa15bbb001699\/joy-division-mid.jpg","genre":"Drama","title":"Joy Division","releaseDate":1151884800000,"language":"en","type":"Movie","_key":"38093"} +{"label":"Reg Traviss","version":27,"id":"63008","lastModified":"1301901642000","name":"Reg Traviss","type":"Person","_key":"38094"} +{"label":"Levente T\u00f6rk\u00f6ly","version":19,"id":"63001","lastModified":"1301902265000","name":"Levente T\u00f6rk\u00f6ly","type":"Person","_key":"38095"} +{"label":"Sybille Gebhardt","version":19,"id":"63002","lastModified":"1301902265000","name":"Sybille Gebhardt","type":"Person","_key":"38096"} +{"label":"Bernard Kay","version":24,"id":"63000","lastModified":"1301901878000","name":"Bernard Kay","type":"Person","_key":"38097"} +{"label":"Michelle Gayle","version":19,"id":"62999","lastModified":"1301902265000","name":"Michelle Gayle","type":"Person","_key":"38098"} +{"label":"Dietrich Hollinderb\u00e4umer","version":19,"id":"38608","lastModified":"1301901878000","name":"Dietrich Hollinderb\u00e4umer","type":"Person","_key":"38099"} +{"label":"Gary Jones","version":56,"id":"5494","lastModified":"1302061404000","name":"Gary Jones","type":"Person","_key":"38100"} +{"label":"Ricci Harnett","version":28,"id":"63003","lastModified":"1301901715000","name":"Ricci Harnett","type":"Person","_key":"38101"} +{"label":"Ram John Holder","version":20,"id":"63006","lastModified":"1301902265000","name":"Ram John Holder","type":"Person","_key":"38102"} +{"label":"Teri F\u00f6ldi","version":22,"id":"63005","lastModified":"1301902191000","name":"Teri F\u00f6ldi","type":"Person","_key":"38103"} +{"label":"Robert Sidaway","version":20,"id":"63004","lastModified":"1301902365000","name":"Robert Sidaway","type":"Person","_key":"38104"} +{"label":"Kincs\u00f5 Peth\u00f5","version":19,"id":"63007","lastModified":"1301902265000","name":"Kincs\u00f5 Peth\u00f5","type":"Person","_key":"38105"} +{"label":"Slip","description":"\"Slip\" is the story of Sarah, a young woman who witnessed her mother's murder as a child. Now grown, Sarah is haunted by her mother's memory, her restless soul, opening a gateway for the spirits of the recently departed. Sarah is compelled to do their bidding so their souls may rest in peace. One of these souls leads her to Cal, a young car thief who is one car away from going legit. Unfortunately, Cal is wrongfully accused of stealing from his partners and now they want him dead.Sarah, drawn by","id":"10080","runtime":96,"imdbId":"tt0827786","version":170,"lastModified":"1301904676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a8\/4cb29a867b9aa1263c0004a8\/slip-mid.jpg","genre":"Thriller","title":"Slip","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"38106"} +{"label":"Brian Maris","version":23,"id":"63015","lastModified":"1301902310000","name":"Brian Maris","type":"Person","_key":"38107"} +{"label":"Donald Turner","version":22,"id":"63026","lastModified":"1301902220000","name":"Donald Turner","type":"Person","_key":"38108"} +{"label":"Hosea L. Simmons","version":19,"id":"63027","lastModified":"1301902265000","name":"Hosea L. Simmons","type":"Person","_key":"38109"} +{"label":"Stacey Paige","version":19,"id":"63031","lastModified":"1301902265000","name":"Stacey Paige","type":"Person","_key":"38110"} +{"label":"Hajji Golightly","version":19,"id":"63030","lastModified":"1301902265000","name":"Hajji Golightly","type":"Person","_key":"38111"} +{"label":"Sky Soleil","version":19,"id":"63029","lastModified":"1301902088000","name":"Sky Soleil","type":"Person","_key":"38112"} +{"label":"Alex Castillo","version":20,"id":"63034","lastModified":"1301902088000","name":"Alex Castillo","type":"Person","_key":"38113"} +{"label":"Michael Balin","version":19,"id":"63033","lastModified":"1301902265000","name":"Michael Balin","type":"Person","_key":"38114"} +{"label":"Rob Flowers","version":19,"id":"63032","lastModified":"1301902088000","name":"Rob Flowers","type":"Person","_key":"38115"} +{"label":"Phillip Jeanmarie","version":19,"id":"63035","lastModified":"1301902088000","name":"Phillip Jeanmarie","type":"Person","_key":"38116"} +{"label":"Allie Carieri","version":19,"id":"63036","lastModified":"1301902088000","name":"Allie Carieri","type":"Person","_key":"38117"} +{"label":"James Ellis Lane","version":19,"id":"63037","lastModified":"1301902088000","name":"James Ellis Lane","type":"Person","_key":"38118"} +{"label":"Lilas Lane","version":20,"id":"43379","lastModified":"1301902178000","name":"Lilas Lane","type":"Person","_key":"38119"} +{"label":"Erik Meinerth","version":19,"id":"63038","lastModified":"1301901727000","name":"Erik Meinerth","type":"Person","_key":"38120"} +{"label":"Jackeline Olivier","version":19,"id":"63039","lastModified":"1301902088000","name":"Jackeline Olivier","type":"Person","_key":"38121"} +{"label":"Jill Small","version":21,"id":"63040","lastModified":"1301902318000","name":"Jill Small","type":"Person","_key":"38122"} +{"label":"Chad Vincent","version":19,"id":"63042","lastModified":"1301902265000","name":"Chad Vincent","type":"Person","_key":"38123"} +{"label":"Johnny Palermo","version":19,"id":"63041","lastModified":"1301902265000","name":"Johnny Palermo","type":"Person","_key":"38124"} +{"label":"Osman Soykut","version":19,"id":"63043","lastModified":"1301902088000","name":"Osman Soykut","type":"Person","_key":"38125"} +{"label":"The Principal","description":"Rick Latimer is a teacher who gets a job as the principal of a school with a very bad reputation. In fact, his transfer there is a kind of punishment because he beat his wife's boyfriend. So, Rick finds himself in a school where drugs, knives and guns are very usual things...","id":"10081","runtime":109,"imdbId":"tt0093780","trailer":"http:\/\/www.youtube.com\/watch?v=8760ji7Ax1k","version":131,"lastModified":"1301903663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/154\/4c03acbd017a3c7e8f000154\/the-principal-mid.jpg","genre":"Action","title":"The Principal","releaseDate":558921600000,"language":"en","type":"Movie","_key":"38126"} +{"label":"Kelly Jo Minter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c8f7fad7b9aa17687000106\/kelly-jo-minter-profile.jpg","version":26,"id":"63046","lastModified":"1301901426000","name":"Kelly Jo Minter","type":"Person","_key":"38127"} +{"label":"No Way Out","description":"A naval officer, put in charge of a murder investigation by a devious politician, must race to find evidence implicating the real murderer before a computer identifies him as the culprit.","id":"10083","runtime":114,"imdbId":"tt0093640","trailer":"http:\/\/www.youtube.com\/watch?v=3405","version":345,"lastModified":"1301903056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a91\/4bc92bc8017a3c57fe011a91\/no-way-out-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"No Way Out","releaseDate":555897600000,"language":"en","type":"Movie","_key":"38128"} +{"label":"Rollin' with the Nines","description":"Too Fine and his friends Finny, Pushy and Rage hope to set up a successful urban underground garage...","id":"10084","runtime":96,"imdbId":"tt0437459","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/rollin-with-the-nines","version":129,"lastModified":"1301903166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9a\/4bc92bca017a3c57fe011a9a\/rollin-with-the-nines-mid.jpg","genre":"Action","title":"Rollin' with the Nines","releaseDate":1145577600000,"language":"en","type":"Movie","_key":"38129"} +{"label":"Julian Gilbey","version":29,"id":"63052","lastModified":"1301901785000","name":"Julian Gilbey","type":"Person","_key":"38130"} +{"label":"Terry Stone","version":37,"id":"63071","lastModified":"1301901495000","name":"Terry Stone","type":"Person","_key":"38131"} +{"label":"Naomi Taylor","version":21,"id":"63072","lastModified":"1301902336000","name":"Naomi Taylor","type":"Person","_key":"38132"} +{"label":"Billy Murray","version":29,"id":"63073","lastModified":"1301901599000","name":"Billy Murray","type":"Person","_key":"38133"} +{"label":"Dominic Alan-Smith","version":21,"id":"63075","lastModified":"1301902336000","name":"Dominic Alan-Smith","type":"Person","_key":"38134"} +{"label":"Simon Webbe","version":21,"id":"63074","lastModified":"1301902336000","name":"Simon Webbe","type":"Person","_key":"38135"} +{"label":"George Calil","version":22,"id":"63077","lastModified":"1301902336000","name":"George Calil","type":"Person","_key":"38136"} +{"label":"Ian Virgo","version":25,"id":"63078","lastModified":"1301901604000","name":"Ian Virgo","type":"Person","_key":"38137"} +{"label":"Roffem Morgan","version":21,"id":"63076","lastModified":"1301902336000","name":"Roffem Morgan","type":"Person","_key":"38138"} +{"label":"Will Gilbey","version":21,"id":"63083","lastModified":"1301902336000","name":"Will Gilbey","type":"Person","_key":"38139"} +{"label":"Spencer Fearon","version":21,"id":"63082","lastModified":"1301902336000","name":"Spencer Fearon","type":"Person","_key":"38140"} +{"label":"Paul Davis","version":21,"id":"63081","lastModified":"1301902336000","name":"Paul Davis","type":"Person","_key":"38141"} +{"label":"Daniel Bayle","version":21,"id":"63079","lastModified":"1301902336000","name":"Daniel Bayle","type":"Person","_key":"38142"} +{"label":"Marvin Campbell","version":21,"id":"63080","lastModified":"1301902336000","name":"Marvin Campbell","type":"Person","_key":"38143"} +{"label":"Aisleyne Horgan-Wallace","version":21,"id":"63084","lastModified":"1301902335000","name":"Aisleyne Horgan-Wallace","type":"Person","_key":"38144"} +{"label":"James Hutchins","version":21,"id":"63085","lastModified":"1301902335000","name":"James Hutchins","type":"Person","_key":"38145"} +{"label":"Jacqui","version":21,"id":"63086","lastModified":"1301902335000","name":"Jacqui","type":"Person","_key":"38146"} +{"label":"Unrest","description":"A young pathology med student suspects that the spirit of a dead cadaver in the hospital morgue where she works is killing off all those who handle or desecrate the body.","id":"10085","runtime":88,"imdbId":"tt0453533","version":180,"lastModified":"1301903155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aab\/4bc92bcb017a3c57fe011aab\/unrest-mid.jpg","genre":"Horror","title":"Unrest","releaseDate":1193184000000,"language":"en","type":"Movie","_key":"38147"} +{"label":"Jason Todd Ipson","version":26,"id":"63088","lastModified":"1301902145000","name":"Jason Todd Ipson","type":"Person","_key":"38148"} +{"label":"Joshua Alba","version":22,"id":"63109","lastModified":"1301901430000","name":"Joshua Alba","type":"Person","_key":"38149"} +{"label":"Scot Davis","version":19,"id":"63108","lastModified":"1301901613000","name":"Scot Davis","type":"Person","_key":"38150"} +{"label":"Corri English","version":20,"id":"63107","lastModified":"1301901878000","name":"Corri English","type":"Person","_key":"38151"} +{"label":"Jay Jablonski","version":22,"id":"63110","lastModified":"1301901813000","name":"Jay Jablonski","type":"Person","_key":"38152"} +{"label":"Ben Livingston","version":19,"id":"63111","lastModified":"1301901727000","name":"Ben Livingston","type":"Person","_key":"38153"} +{"label":"Abner Genece","version":19,"id":"63112","lastModified":"1301901727000","name":"Abner Genece","type":"Person","_key":"38154"} +{"label":"Anna Johnson","version":19,"id":"63114","lastModified":"1301901878000","name":"Anna Johnson","type":"Person","_key":"38155"} +{"label":"J.C. Cunningham","version":19,"id":"63115","lastModified":"1301901878000","name":"J.C. Cunningham","type":"Person","_key":"38156"} +{"label":"Reb Fleming","version":19,"id":"63113","lastModified":"1301902088000","name":"Reb Fleming","type":"Person","_key":"38157"} +{"label":"Terence Goodman","version":19,"id":"63116","lastModified":"1301901727000","name":"Terence Goodman","type":"Person","_key":"38158"} +{"label":"Rhett Willman","version":19,"id":"63117","lastModified":"1301901613000","name":"Rhett Willman","type":"Person","_key":"38159"} +{"label":"Susan Duerden","version":22,"id":"58893","lastModified":"1301901994000","name":"Susan Duerden","type":"Person","_key":"38160"} +{"label":"Julio Bove","version":19,"id":"63118","lastModified":"1301901727000","name":"Julio Bove","type":"Person","_key":"38161"} +{"label":"Christopher J. Stephenson","version":19,"id":"63119","lastModified":"1301901613000","name":"Christopher J. Stephenson","type":"Person","_key":"38162"} +{"label":"Man Bites Dog","description":"A camera crew follows a serial killer\/thief around as he exercises his craft. He expounds on art, music, nature, society, and life as he offs mailmen, pensioners, and random people. Slowly he begins involving the camera crew in his activities, and they begin wondering if what they're doing is such a good idea, particularly when the killer kills a rival and the rival's brother sends a threatening letter.","id":"10086","runtime":95,"imdbId":"tt0103905","version":141,"lastModified":"1301902420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/097\/4c8370387b9aa1428e000097\/c-est-arrive-pres-de-chez-vous-mid.jpg","studio":"Les Artistes Anonymes","genre":"Action","title":"Man Bites Dog","releaseDate":706492800000,"language":"en","type":"Movie","_key":"38163"} +{"label":"Andr\u00e9 Bonzel","version":30,"id":"63175","lastModified":"1301901972000","name":"Andr\u00e9 Bonzel","type":"Person","_key":"38164"} +{"label":"R\u00e9my Belvaux","version":31,"id":"63174","lastModified":"1301902162000","name":"R\u00e9my Belvaux","type":"Person","_key":"38165"} +{"label":"Jacqueline Poelvoorde-Pappaert","version":22,"id":"63242","lastModified":"1301901509000","name":"Jacqueline Poelvoorde-Pappaert","type":"Person","_key":"38166"} +{"label":"Jenny Drye","version":22,"id":"63243","lastModified":"1301902162000","name":"Jenny Drye","type":"Person","_key":"38167"} +{"label":"Malou Madou","version":22,"id":"63248","lastModified":"1301901972000","name":"Malou Madou","type":"Person","_key":"38168"} +{"label":"Willy Vandenbroeck","version":22,"id":"63262","lastModified":"1301902162000","name":"Willy Vandenbroeck","type":"Person","_key":"38169"} +{"label":"Man to Man","description":"An epic about anthropologists who hunt and capture pygmies for study back in Europe, in an attempt to illustrate the link between man and ape.","id":"10087","runtime":122,"imdbId":"tt0397530","version":291,"lastModified":"1301903390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4c187a077b9aa108d8000243\/man-to-man-mid.jpg","genre":"Drama","title":"Man to Man","releaseDate":1113350400000,"language":"en","type":"Movie","_key":"38170"} +{"label":"Lomama Boseki","version":19,"id":"63134","lastModified":"1301901394000","name":"Lomama Boseki","type":"Person","_key":"38171"} +{"label":"C\u00e9cile Bayiha","version":19,"id":"63135","lastModified":"1301901769000","name":"C\u00e9cile Bayiha","type":"Person","_key":"38172"} +{"label":"William McBain","version":19,"id":"63138","lastModified":"1301901769000","name":"William McBain","type":"Person","_key":"38173"} +{"label":"Robin Smith","version":34,"id":"63139","lastModified":"1301901769000","name":"Robin Smith","type":"Person","_key":"38174"} +{"label":"Patrick Mofokeng","version":25,"id":"63136","lastModified":"1301901439000","name":"Patrick Mofokeng","type":"Person","_key":"38175"} +{"label":"Mathew Zajac","version":25,"id":"63137","lastModified":"1301901489000","name":"Mathew Zajac","type":"Person","_key":"38176"} +{"label":"Solomon Fietse","version":20,"id":"63142","lastModified":"1301901684000","name":"Solomon Fietse","type":"Person","_key":"38177"} +{"label":"Ron Donachie","version":24,"id":"63141","lastModified":"1301922148000","name":"Ron Donachie","type":"Person","_key":"38178"} +{"label":"James Ngcobo","version":19,"id":"63143","lastModified":"1301901769000","name":"James Ngcobo","type":"Person","_key":"38179"} +{"label":"Theo Landey","version":19,"id":"63140","lastModified":"1301901769000","name":"Theo Landey","type":"Person","_key":"38180"} +{"label":"Sello Motloung","version":19,"id":"63144","lastModified":"1301901769000","name":"Sello Motloung","type":"Person","_key":"38181"} +{"label":"Sweet Insanity","description":"High school senior Stacey has a frightening nightmare that just might come true. Christina, the new girl in school...","id":"10088","runtime":81,"imdbId":"tt0439834","version":132,"lastModified":"1301904285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab9\/4bc92bce017a3c57fe011ab9\/sweet-insanity-mid.jpg","genre":"Horror","title":"Sweet Insanity","releaseDate":1137369600000,"language":"en","type":"Movie","_key":"38182"} +{"label":"Daniel Hess","version":20,"id":"63148","lastModified":"1301902378000","name":"Daniel Hess","type":"Person","_key":"38183"} +{"label":"Josh McRae","version":20,"id":"63157","lastModified":"1301902178000","name":"Josh McRae","type":"Person","_key":"38184"} +{"label":"Rebekah Hoyle","version":21,"id":"63156","lastModified":"1301901783000","name":"Rebekah Hoyle","type":"Person","_key":"38185"} +{"label":"Mackenzie Firgens","version":21,"id":"63155","lastModified":"1301901783000","name":"Mackenzie Firgens","type":"Person","_key":"38186"} +{"label":"Shawn Bohigian","version":20,"id":"63160","lastModified":"1301902150000","name":"Shawn Bohigian","type":"Person","_key":"38187"} +{"label":"Jeff Bell","version":20,"id":"63159","lastModified":"1301902193000","name":"Jeff Bell","type":"Person","_key":"38188"} +{"label":"Larry Beck","version":20,"id":"63158","lastModified":"1301902150000","name":"Larry Beck","type":"Person","_key":"38189"} +{"label":"Helena Charbila","version":20,"id":"63161","lastModified":"1301902150000","name":"Helena Charbila","type":"Person","_key":"38190"} +{"label":"Talia Rianne Asher","version":20,"id":"63162","lastModified":"1301902150000","name":"Talia Rianne Asher","type":"Person","_key":"38191"} +{"label":"Vic Chiapetta","version":20,"id":"63163","lastModified":"1301902336000","name":"Vic Chiapetta","type":"Person","_key":"38192"} +{"label":"Kate Dykstra","version":20,"id":"63165","lastModified":"1301902336000","name":"Kate Dykstra","type":"Person","_key":"38193"} +{"label":"Nadia Gillespie","version":20,"id":"63166","lastModified":"1301902150000","name":"Nadia Gillespie","type":"Person","_key":"38194"} +{"label":"Cory Knauf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a9\/4c50a5c97b9aa13d4c0000a9\/cory-knauf-profile.jpg","version":26,"id":"63169","lastModified":"1301901783000","name":"Cory Knauf","type":"Person","_key":"38195"} +{"label":"Zak Kilberg","version":20,"id":"63168","lastModified":"1301902336000","name":"Zak Kilberg","type":"Person","_key":"38196"} +{"label":"Evan Clinton","version":20,"id":"63164","lastModified":"1301902150000","name":"Evan Clinton","type":"Person","_key":"38197"} +{"label":"Melanie Giovannini","version":20,"id":"63167","lastModified":"1301902150000","name":"Melanie Giovannini","type":"Person","_key":"38198"} +{"label":"Robert Kraus","version":20,"id":"63170","lastModified":"1301902150000","name":"Robert Kraus","type":"Person","_key":"38199"} +{"label":"Ed McCloud","version":20,"id":"63172","lastModified":"1301902336000","name":"Ed McCloud","type":"Person","_key":"38200"} +{"label":"Steve McMoy","version":20,"id":"63173","lastModified":"1301902336000","name":"Steve McMoy","type":"Person","_key":"38201"} +{"label":"Sam Kraus","version":20,"id":"63171","lastModified":"1301902150000","name":"Sam Kraus","type":"Person","_key":"38202"} +{"label":"Evil Bong","description":"A group of stoners inhale more than they bargained for when they smoke from an evil bong in this campy comedy. The guys buy a vintage bong named EeBee from an ad in High Times magazine, but they have no idea the possessed pipe will gradually suck them into a horrifying surreal world. As they fight for their lives, EeBee's former owner (none other than Tommy Chong) -- the only one who understands the power of the bong -- tries to rescue them.","id":"10089","runtime":86,"imdbId":"tt0829424","version":209,"lastModified":"1301907504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abe\/4bc92bce017a3c57fe011abe\/evil-bong-mid.jpg","genre":"Comedy","title":"Evil Bong","releaseDate":1162252800000,"language":"en","type":"Movie","_key":"38203"} +{"label":"David Weidoff","version":20,"id":"63203","lastModified":"1301904130000","name":"David Weidoff","type":"Person","_key":"38204"} +{"label":"John Patrick Jordan","version":20,"id":"63204","lastModified":"1301901777000","name":"John Patrick Jordan","type":"Person","_key":"38205"} +{"label":"Brian Lloyd","version":21,"id":"63205","lastModified":"1301901777000","name":"Brian Lloyd","type":"Person","_key":"38206"} +{"label":"Kristyn Green","version":21,"id":"63207","lastModified":"1301901554000","name":"Kristyn Green","type":"Person","_key":"38207"} +{"label":"Robin Sydney","version":22,"id":"63206","lastModified":"1301901645000","name":"Robin Sydney","type":"Person","_key":"38208"} +{"label":"Michelle Mais","version":20,"id":"63209","lastModified":"1301901727000","name":"Michelle Mais","type":"Person","_key":"38209"} +{"label":"Jacob Witkin","version":23,"id":"63210","lastModified":"1301901727000","name":"Jacob Witkin","type":"Person","_key":"38210"} +{"label":"Brandi Cunningham","version":20,"id":"63211","lastModified":"1301902178000","name":"Brandi Cunningham","type":"Person","_key":"38211"} +{"label":"Dana Danes","version":19,"id":"63212","lastModified":"1301901727000","name":"Dana Danes","type":"Person","_key":"38212"} +{"label":"Gina-Raye Carter","version":21,"id":"63213","lastModified":"1301901922000","name":"Gina-Raye Carter","type":"Person","_key":"38213"} +{"label":"Sonny Carl Davis","version":20,"id":"63214","lastModified":"1301901878000","name":"Sonny Carl Davis","type":"Person","_key":"38214"} +{"label":"Mae LaBorde","version":19,"id":"63217","lastModified":"1301902088000","name":"Mae LaBorde","type":"Person","_key":"38215"} +{"label":"Sylvester 'Bear' Terkay","version":19,"id":"63216","lastModified":"1301902088000","name":"Sylvester 'Bear' Terkay","type":"Person","_key":"38216"} +{"label":"Dale Dymkoski","version":20,"id":"63215","lastModified":"1301901941000","name":"Dale Dymkoski","type":"Person","_key":"38217"} +{"label":"Reno 911!: Miami","description":"A rag-tag team of Reno cops are called in to save the day after a terrorist attack disrupts a national police convention in Miami Beach during spring break. Based on the Comedy Central series.","id":"10090","runtime":84,"imdbId":"tt0499554","version":416,"lastModified":"1301902202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4c7ded285e73d648dd000084\/reno-911-miami-mid.jpg","genre":"Action","title":"Reno 911!: Miami","releaseDate":1172188800000,"language":"en","type":"Movie","_key":"38218"} +{"label":"Mary Birdsong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ff\/4ce30ca27b9aa168b30003ff\/mary-birdsong-profile.jpg","version":30,"id":"63232","lastModified":"1301901556000","name":"Mary Birdsong","type":"Person","_key":"38219"} +{"label":"Niecy Nash","version":24,"id":"63231","lastModified":"1301901552000","name":"Niecy Nash","type":"Person","_key":"38220"} +{"label":"Wendi McLendon-Covey","version":22,"id":"63234","lastModified":"1301901877000","name":"Wendi McLendon-Covey","type":"Person","_key":"38221"} +{"label":"Cedric Yarbrough","version":19,"id":"63235","lastModified":"1301901877000","name":"Cedric Yarbrough","type":"Person","_key":"38222"} +{"label":"Michael H. Clark","version":19,"id":"63237","lastModified":"1301901727000","name":"Michael H. Clark","type":"Person","_key":"38223"} +{"label":"Kathryn Fiore","version":23,"id":"63239","lastModified":"1301901613000","name":"Kathryn Fiore","type":"Person","_key":"38224"} +{"label":"Alejandra Gutierrez","version":19,"id":"63236","lastModified":"1301901727000","name":"Alejandra Gutierrez","type":"Person","_key":"38225"} +{"label":"Dave Holmes","version":19,"id":"63240","lastModified":"1301901727000","name":"Dave Holmes","type":"Person","_key":"38226"} +{"label":"Cathy Shim","version":20,"id":"63241","lastModified":"1301901727000","name":"Cathy Shim","type":"Person","_key":"38227"} +{"label":"Kerri Kenney","version":23,"id":"63220","lastModified":"1301901606000","name":"Kerri Kenney","type":"Person","_key":"38228"} +{"label":"The Most Unromantic Man in the World","description":"In the year 2000AD, a world-wide search was conducted to find The Most Unromantic Man in the World....","id":"10091","runtime":81,"imdbId":"tt0804506","version":114,"lastModified":"1300978944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adf\/4bc92bd6017a3c57fe011adf\/the-most-unromantic-man-in-the-world-mid.jpg","genre":"Comedy","title":"The Most Unromantic Man in the World","releaseDate":1145836800000,"language":"en","type":"Movie","_key":"38229"} +{"label":"Gratian Dimech","version":23,"id":"63245","lastModified":"1301901971000","name":"Gratian Dimech","type":"Person","_key":"38230"} +{"label":"James Heath","version":20,"id":"63244","lastModified":"1301902150000","name":"James Heath","type":"Person","_key":"38231"} +{"label":"James Heath","version":20,"id":"63256","lastModified":"1301902335000","name":"James Heath","type":"Person","_key":"38232"} +{"label":"David Lumby","version":20,"id":"63257","lastModified":"1301902335000","name":"David Lumby","type":"Person","_key":"38233"} +{"label":"Chizzy Akudolu","version":20,"id":"63255","lastModified":"1301902150000","name":"Chizzy Akudolu","type":"Person","_key":"38234"} +{"label":"Gordon Round","version":20,"id":"63259","lastModified":"1301902150000","name":"Gordon Round","type":"Person","_key":"38235"} +{"label":"Yvonne Tansley","version":20,"id":"63260","lastModified":"1301902335000","name":"Yvonne Tansley","type":"Person","_key":"38236"} +{"label":"Cry_Wolf","description":"Eight unsuspecting high school seniors at a posh boarding school, who delight themselves on playing games of lies, come face-to-face with terror and learn that nobody believes a liar - even when they're telling the truth.","id":"10092","runtime":90,"imdbId":"tt0384286","trailer":"http:\/\/www.youtube.com\/watch?v=wdhFdRHD7tc","version":219,"lastModified":"1301902766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af5\/4bc92bd9017a3c57fe011af5\/cry_wolf-mid.jpg","genre":"Horror","title":"Cry_Wolf","releaseDate":1126828800000,"language":"en","type":"Movie","_key":"38237"} +{"label":"Julian Morris","version":28,"id":"47628","lastModified":"1301901949000","name":"Julian Morris","type":"Person","_key":"38238"} +{"label":"Kristy Wu","version":22,"id":"63276","lastModified":"1301902265000","name":"Kristy Wu","type":"Person","_key":"38239"} +{"label":"Sandra McCoy","version":26,"id":"63275","lastModified":"1301901338000","name":"Sandra McCoy","type":"Person","_key":"38240"} +{"label":"Paul James","version":22,"id":"63277","lastModified":"1301902088000","name":"Paul James","type":"Person","_key":"38241"} +{"label":"Jesse Janzen","version":23,"id":"63278","lastModified":"1301902265000","name":"Jesse Janzen","type":"Person","_key":"38242"} +{"label":"Ethan Cohn","version":25,"id":"63280","lastModified":"1301901302000","name":"Ethan Cohn","type":"Person","_key":"38243"} +{"label":"Anna Deavere Smith","version":27,"id":"63279","lastModified":"1301901849000","name":"Anna Deavere Smith","type":"Person","_key":"38244"} +{"label":"Erica Yates","version":22,"id":"63281","lastModified":"1301901877000","name":"Erica Yates","type":"Person","_key":"38245"} +{"label":"Ranel Johnson","version":22,"id":"63285","lastModified":"1301902088000","name":"Ranel Johnson","type":"Person","_key":"38246"} +{"label":"Ashleigh Pixley","version":22,"id":"63283","lastModified":"1301901877000","name":"Ashleigh Pixley","type":"Person","_key":"38247"} +{"label":"Michael Kennedy","version":22,"id":"63286","lastModified":"1301902265000","name":"Michael Kennedy","type":"Person","_key":"38248"} +{"label":"Jarvis W. George","version":22,"id":"63287","lastModified":"1301902088000","name":"Jarvis W. George","type":"Person","_key":"38249"} +{"label":"Shauna Sauls","version":22,"id":"63284","lastModified":"1301901877000","name":"Shauna Sauls","type":"Person","_key":"38250"} +{"label":"Sabrina Gilbert","version":22,"id":"63282","lastModified":"1301902088000","name":"Sabrina Gilbert","type":"Person","_key":"38251"} +{"label":"Shannon Cusack","version":22,"id":"63288","lastModified":"1301902088000","name":"Shannon Cusack","type":"Person","_key":"38252"} +{"label":"The Return","description":"Joanna Mills (Gellar), a traveling business woman, begins having nightmares of a murder that occurred 15 years ago. Soon she is drawn to an old farmhouse, where the murder took place.","id":"10093","runtime":85,"imdbId":"tt0433442","version":202,"lastModified":"1301902675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4c8f31007b9aa176890000a0\/the-return-mid.jpg","genre":"Drama","title":"The Return","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"38253"} +{"label":"Peter O'Brien","version":34,"id":"63295","lastModified":"1301901560000","name":"Peter O'Brien","type":"Person","_key":"38254"} +{"label":"Darrian McClanahan","version":19,"id":"63298","lastModified":"1301901877000","name":"Darrian McClanahan","type":"Person","_key":"38255"} +{"label":"Erinn Allison","version":19,"id":"63297","lastModified":"1301901727000","name":"Erinn Allison","type":"Person","_key":"38256"} +{"label":"Robert Wilson","version":22,"id":"62660","lastModified":"1301901564000","name":"Robert Wilson","type":"Person","_key":"38257"} +{"label":"Frank Ertl","version":19,"id":"63299","lastModified":"1301901727000","name":"Frank Ertl","type":"Person","_key":"38258"} +{"label":"Brent Smiga","version":19,"id":"63301","lastModified":"1301901727000","name":"Brent Smiga","type":"Person","_key":"38259"} +{"label":"Bonnie Gallup","version":19,"id":"63300","lastModified":"1301901727000","name":"Bonnie Gallup","type":"Person","_key":"38260"} +{"label":"Ben Hamby","version":19,"id":"25775","lastModified":"1301901613000","name":"Ben Hamby","type":"Person","_key":"38261"} +{"label":"Erica Jones","version":19,"id":"63302","lastModified":"1301901727000","name":"Erica Jones","type":"Person","_key":"38262"} +{"label":"Glori Renee Euwer","version":19,"id":"63304","lastModified":"1301901877000","name":"Glori Renee Euwer","type":"Person","_key":"38263"} +{"label":"Peter Cornwell","version":25,"id":"63303","lastModified":"1301901817000","name":"Peter Cornwell","type":"Person","_key":"38264"} +{"label":"Gone","description":"A contemporary psychological thriller in which a young British couple travelling through the Australian outback become involved with a mysterious and charismatic American whose motive for imposing his friendship upon them becomes increasingly suspect and sinister. ","id":"10094","runtime":88,"imdbId":"tt0482374","version":181,"lastModified":"1301903614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b11\/4bc92be0017a3c57fe011b11\/gone-mid.jpg","genre":"Crime","title":"Gone","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"38265"} +{"label":"Ringan Ledwidge","version":20,"id":"63305","lastModified":"1301901993000","name":"Ringan Ledwidge","type":"Person","_key":"38266"} +{"label":"Shaun Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ba2\/4d40af6e7b9aa15bbb002ba2\/shaun-evans-profile.jpg","version":31,"id":"63311","lastModified":"1301901495000","name":"Shaun Evans","type":"Person","_key":"38267"} +{"label":"Yvonne Strahovski","version":20,"id":"63312","lastModified":"1301902388000","name":"Yvonne Strahovski","type":"Person","_key":"38268"} +{"label":"Jessica Lemon","version":20,"id":"63314","lastModified":"1301902367000","name":"Jessica Lemon","type":"Person","_key":"38269"} +{"label":"Victoria Thaine","version":23,"id":"63313","lastModified":"1301901783000","name":"Victoria Thaine","type":"Person","_key":"38270"} +{"label":"Zoe Tuckwell-Smith","version":24,"id":"63315","lastModified":"1301901649000","name":"Zoe Tuckwell-Smith","type":"Person","_key":"38271"} +{"label":"Evil's City","description":"Reporters uncover the dark secret behind Acheron, a shadowy town whose inhabitants have mysteriously died.","id":"10095","runtime":83,"imdbId":"tt0400329","version":139,"lastModified":"1301903488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e8\/4cb2971f7b9aa1263d0003e8\/evil-s-city-mid.jpg","genre":"Action","title":"Evil's City","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"38272"} +{"label":"Tom Lewis","version":60,"id":"21223","lastModified":"1302060441000","name":"Tom Lewis","type":"Person","_key":"38273"} +{"label":"Brandon Largent","version":19,"id":"63331","lastModified":"1301902265000","name":"Brandon Largent","type":"Person","_key":"38274"} +{"label":"America Young","version":26,"id":"63333","lastModified":"1301901997000","name":"America Young","type":"Person","_key":"38275"} +{"label":"Karl Champley","version":19,"id":"63336","lastModified":"1301902265000","name":"Karl Champley","type":"Person","_key":"38276"} +{"label":"Kathryn Carner","version":19,"id":"63334","lastModified":"1301901727000","name":"Kathryn Carner","type":"Person","_key":"38277"} +{"label":"Laura Mazur","version":19,"id":"63332","lastModified":"1301902264000","name":"Laura Mazur","type":"Person","_key":"38278"} +{"label":"Tyler Lassiter","version":19,"id":"63335","lastModified":"1301902087000","name":"Tyler Lassiter","type":"Person","_key":"38279"} +{"label":"Eric Dean","version":17,"id":"63337","lastModified":"1301902264000","name":"Eric Dean","type":"Person","_key":"38280"} +{"label":"Bill Ross","version":19,"id":"63340","lastModified":"1301902087000","name":"Bill Ross","type":"Person","_key":"38281"} +{"label":"Cris Rath","version":20,"id":"63341","lastModified":"1301902178000","name":"Cris Rath","type":"Person","_key":"38282"} +{"label":"Hegs Laughlin","version":19,"id":"63339","lastModified":"1301902087000","name":"Hegs Laughlin","type":"Person","_key":"38283"} +{"label":"Richard Kinsey","version":19,"id":"63338","lastModified":"1301902087000","name":"Richard Kinsey","type":"Person","_key":"38284"} +{"label":"Keylee Sanders","version":19,"id":"63345","lastModified":"1301902087000","name":"Keylee Sanders","type":"Person","_key":"38285"} +{"label":"Brandon Ellison","version":28,"id":"63344","lastModified":"1301901943000","name":"Brandon Ellison","type":"Person","_key":"38286"} +{"label":"Danielle Glave","version":19,"id":"63346","lastModified":"1301902087000","name":"Danielle Glave","type":"Person","_key":"38287"} +{"label":"Jamie Lou Moniz","version":17,"id":"63348","lastModified":"1301902087000","name":"Jamie Lou Moniz","type":"Person","_key":"38288"} +{"label":"Justin Bowles","version":19,"id":"63343","lastModified":"1301902087000","name":"Justin Bowles","type":"Person","_key":"38289"} +{"label":"Eva Derrek","version":23,"id":"63347","lastModified":"1301902317000","name":"Eva Derrek","type":"Person","_key":"38290"} +{"label":"Paul Hasenyager","version":19,"id":"63349","lastModified":"1301902087000","name":"Paul Hasenyager","type":"Person","_key":"38291"} +{"label":"Mike Dolan","version":19,"id":"63351","lastModified":"1301902087000","name":"Mike Dolan","type":"Person","_key":"38292"} +{"label":"13 Going On 30","description":"After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. Thanks to some wishing dust, Jenna's prayer has been answered. With a knockout body, a dream apartment, a fabulous wardrobe, an athlete boyfriend, a dream job, and superstar friends, this can't be a better life. Unfortunetly, Jenna realizes that this is not what she wanted. The only one that she needs is her childhood best friend, Matt, a boy that she thought destroyed her party. But when ","id":"10096","runtime":94,"imdbId":"tt0337563","version":244,"lastModified":"1301902011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a92\/4d77a81a7b9aa15c72000a92\/13-going-on-30-mid.jpg","studio":"Enigma Pictures","genre":"Comedy","title":"13 Going On 30","releaseDate":1081900800000,"language":"en","tagline":"For some, 13 feels like it was just yesterday. For Jenna, it was.","type":"Movie","_key":"38293"} +{"label":"Christa B. Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/492\/4d4c20185e73d617bd001492\/christa-b-allen-profile.jpg","version":28,"id":"63372","lastModified":"1301901841000","name":"Christa B. Allen","type":"Person","_key":"38294"} +{"label":"Sean Marquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fc\/4d4c20d45e73d617b70013fc\/sean-marquette-profile.jpg","version":31,"id":"63373","lastModified":"1301902022000","name":"Sean Marquette","type":"Person","_key":"38295"} +{"label":"The Tiger's Tail","description":"After a chance encounter, a Dubliner (Gleeson) is stalked by a murderous facsimile of himself.","id":"10097","runtime":107,"imdbId":"tt0490499","version":296,"lastModified":"1301907557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b36\/4bc92be5017a3c57fe011b36\/the-tiger-s-tail-mid.jpg","studio":"Fern Gully Tales","genre":"Drama","title":"The Tiger's Tail","releaseDate":1181260800000,"language":"en","type":"Movie","_key":"38296"} +{"label":"Angeline Ball","version":22,"id":"63358","lastModified":"1301902202000","name":"Angeline Ball","type":"Person","_key":"38297"} +{"label":"Cathy Belton","version":20,"id":"63359","lastModified":"1301902023000","name":"Cathy Belton","type":"Person","_key":"38298"} +{"label":"Denis Conway","version":20,"id":"63360","lastModified":"1301902202000","name":"Denis Conway","type":"Person","_key":"38299"} +{"label":"Ned Dennehy","version":20,"id":"63362","lastModified":"1301902178000","name":"Ned Dennehy","type":"Person","_key":"38300"} +{"label":"Moira Deady","version":20,"id":"63361","lastModified":"1301902336000","name":"Moira Deady","type":"Person","_key":"38301"} +{"label":"Michael FitzGerald","version":20,"id":"63363","lastModified":"1301902150000","name":"Michael FitzGerald","type":"Person","_key":"38302"} +{"label":"Brian Gleeson","version":19,"id":"63364","lastModified":"1301902150000","name":"Brian Gleeson","type":"Person","_key":"38303"} +{"label":"David Herlihy","version":21,"id":"63365","lastModified":"1301901783000","name":"David Herlihy","type":"Person","_key":"38304"} +{"label":"Mark Lambert","version":20,"id":"42600","lastModified":"1301902193000","name":"Mark Lambert","type":"Person","_key":"38305"} +{"label":"Ruth Lawlor","version":20,"id":"63366","lastModified":"1301902336000","name":"Ruth Lawlor","type":"Person","_key":"38306"} +{"label":"Eanna MacLiam","version":27,"id":"63367","lastModified":"1301901463000","name":"Eanna MacLiam","type":"Person","_key":"38307"} +{"label":"Aonghus Og McAnally","version":20,"id":"63370","lastModified":"1301902393000","name":"Aonghus Og McAnally","type":"Person","_key":"38308"} +{"label":"Sean Markey","version":20,"id":"63368","lastModified":"1301902336000","name":"Sean Markey","type":"Person","_key":"38309"} +{"label":"Nigel Linden","version":20,"id":"63369","lastModified":"1301902336000","name":"Nigel Linden","type":"Person","_key":"38310"} +{"label":"The Kid","description":"Considered one of Charlie Chaplin's best films, The Kid also made a star of little Jackie Coogan, who plays a boy cared for by The Tramp when he's abandoned by his mother, Edna. Later, Edna has a change of heart and aches to be reunited with her son. When she finds him and wrests him from The Tramp, it makes for what turns out be one of the most heart-wrenching scenes ever included in a comedy.","id":"10098","runtime":68,"imdbId":"tt0012349","version":187,"lastModified":"1301902024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15b\/4d38b0f17b9aa1614900015b\/the-kid-mid.jpg","genre":"Comedy","title":"The Kid","releaseDate":-1543190400000,"language":"en","tagline":"6 reels of Joy.","type":"Movie","_key":"38311"} +{"label":"Beulah Bains","version":24,"id":"63380","lastModified":"1301902014000","name":"Beulah Bains","type":"Person","_key":"38312"} +{"label":"Carl Miller","version":26,"id":"63378","lastModified":"1301902172000","name":"Carl Miller","type":"Person","_key":"38313"} +{"label":"Nellie Bly Baker","version":24,"id":"63381","lastModified":"1301902004000","name":"Nellie Bly Baker","type":"Person","_key":"38314"} +{"label":"F. Blinn","version":24,"id":"63382","lastModified":"1301902004000","name":"F. Blinn","type":"Person","_key":"38315"} +{"label":"Frances Cochran","version":24,"id":"63386","lastModified":"1301902014000","name":"Frances Cochran","type":"Person","_key":"38316"} +{"label":"Frank Campeau","version":26,"id":"63383","lastModified":"1301901783000","name":"Frank Campeau","type":"Person","_key":"38317"} +{"label":"Bliss Chevalier","version":24,"id":"63384","lastModified":"1301901783000","name":"Bliss Chevalier","type":"Person","_key":"38318"} +{"label":"Elsie Codd","version":24,"id":"63385","lastModified":"1301901954000","name":"Elsie Codd","type":"Person","_key":"38319"} +{"label":"Jack Coogan Sr.","version":25,"id":"63387","lastModified":"1301901947000","name":"Jack Coogan Sr.","type":"Person","_key":"38320"} +{"label":"Estelle Cook","version":24,"id":"63388","lastModified":"1301902150000","name":"Estelle Cook","type":"Person","_key":"38321"} +{"label":"Dan Dillon","version":24,"id":"63390","lastModified":"1301902172000","name":"Dan Dillon","type":"Person","_key":"38322"} +{"label":"Philip D'Oench","version":24,"id":"63391","lastModified":"1301901954000","name":"Philip D'Oench","type":"Person","_key":"38323"} +{"label":"Lillian Crane","version":24,"id":"63389","lastModified":"1301901954000","name":"Lillian Crane","type":"Person","_key":"38324"} +{"label":"Robert Dunbar","version":25,"id":"63392","lastModified":"1301902056000","name":"Robert Dunbar","type":"Person","_key":"38325"} +{"label":"Fragile","description":"No overview found.","id":"10099","runtime":87,"imdbId":"tt0814111","version":99,"lastModified":"1301903368000","genre":"Drama","title":"Fragile","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"38326"} +{"label":"Laurent N\u00e8gre","version":20,"id":"63394","lastModified":"1301902335000","name":"Laurent N\u00e8gre","type":"Person","_key":"38327"} +{"label":"Jacques Bonvin","version":20,"id":"63406","lastModified":"1301902335000","name":"Jacques Bonvin","type":"Person","_key":"38328"} +{"label":"Jean-Marie Daunas","version":20,"id":"63407","lastModified":"1301902335000","name":"Jean-Marie Daunas","type":"Person","_key":"38329"} +{"label":"Julien Conod","version":20,"id":"63405","lastModified":"1301902335000","name":"Julien Conod","type":"Person","_key":"38330"} +{"label":"Stefanie Gunther","version":20,"id":"63403","lastModified":"1301902335000","name":"Stefanie Gunther","type":"Person","_key":"38331"} +{"label":"Felipe Castro","version":20,"id":"63404","lastModified":"1301901954000","name":"Felipe Castro","type":"Person","_key":"38332"} +{"label":"Jo\u00ebl Demarty","version":20,"id":"63408","lastModified":"1301902335000","name":"Jo\u00ebl Demarty","type":"Person","_key":"38333"} +{"label":"Louis-Charles Finger","version":21,"id":"63409","lastModified":"1301902150000","name":"Louis-Charles Finger","type":"Person","_key":"38334"} +{"label":"Sandra Korol","version":20,"id":"63410","lastModified":"1301902178000","name":"Sandra Korol","type":"Person","_key":"38335"} +{"label":"Xavier Loira","version":20,"id":"63411","lastModified":"1301902335000","name":"Xavier Loira","type":"Person","_key":"38336"} +{"label":"Tenet Yannick","version":20,"id":"63413","lastModified":"1301902335000","name":"Tenet Yannick","type":"Person","_key":"38337"} +{"label":"Sarkis Ohanessian","version":20,"id":"63412","lastModified":"1301902335000","name":"Sarkis Ohanessian","type":"Person","_key":"38338"} +{"label":"Hai-Alarm auf Mallorca","description":"No overview found.","id":"10100","runtime":109,"imdbId":"tt0376753","version":44,"lastModified":"1301904472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b48\/4bc92be7017a3c57fe011b48\/hai-alarm-auf-mallorca-mid.jpg","genre":"Horror","title":"Hai-Alarm auf Mallorca","releaseDate":1097971200000,"language":"en","type":"Movie","_key":"38339"} +{"label":"Jorgo Papavassiliou","version":21,"id":"63418","lastModified":"1301901783000","name":"Jorgo Papavassiliou","type":"Person","_key":"38340"} +{"label":"Katy Karrenbauer","version":24,"id":"63420","lastModified":"1301901954000","name":"Katy Karrenbauer","type":"Person","_key":"38341"} +{"label":"La Grande bouffe","description":"A group of men hire some prostitutes and go to a villa in the countryside. There, they engage in group sex and resolve to eat themselves to death.","id":"10102","runtime":135,"imdbId":"tt0070130","version":119,"lastModified":"1301902899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b51\/4bc92be7017a3c57fe011b51\/la-grande-bouffe-mid.jpg","genre":"Comedy","title":"La Grande bouffe","releaseDate":106444800000,"language":"en","type":"Movie","_key":"38342"} +{"label":"Windstruck","description":"When police officer Kyungjin met with Myungwoo accidentally in a crime, she found that this responsible teacher was a really nice guy. At that night, Kyungjin got into a fight with a bunch of high school kids and got trouble in a big gun fight between rival drug dealers. Myungwoo tried to help her but then something happened that forces them stayed together all day long. They got closer to each other and Myungwoo was not able to repulse the strange but pure nature. He fell in love with her. One ","id":"10103","runtime":123,"imdbId":"tt0409072","version":89,"lastModified":"1301902892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fb\/4c4bea9a5e73d62a3e0000fb\/10103-mid.jpg","genre":"Comedy","title":"Windstruck","releaseDate":1086220800000,"language":"en","tagline":"If only I can feel you... even as the wind","type":"Movie","_key":"38343"} +{"label":"Jae-young Kwak","version":48,"id":"63429","lastModified":"1301901401000","name":"Jae-young Kwak","type":"Person","_key":"38344"} +{"label":"Hyuk Jang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6aa\/4d390d9d7b9aa1614b0006aa\/hyuk-jang-profile.jpg","version":27,"id":"63438","lastModified":"1301901783000","name":"Hyuk Jang","type":"Person","_key":"38345"} +{"label":"Ki-woo Lee","version":25,"id":"63439","lastModified":"1301901954000","name":"Ki-woo Lee","type":"Person","_key":"38346"} +{"label":"Su-ro Kim","version":25,"id":"63437","lastModified":"1301902178000","name":"Su-ro Kim","type":"Person","_key":"38347"} +{"label":"Tae-hyun Cha","version":40,"id":"63442","lastModified":"1301901243000","name":"Tae-hyun Cha","type":"Person","_key":"38348"} +{"label":"Chang-wan Kim","version":25,"id":"63441","lastModified":"1301901954000","name":"Chang-wan Kim","type":"Person","_key":"38349"} +{"label":"Dae-Hoon Jeong","version":25,"id":"63443","lastModified":"1301901851000","name":"Dae-Hoon Jeong","type":"Person","_key":"38350"} +{"label":"Ho-bin Jeong","version":25,"id":"63444","lastModified":"1301901993000","name":"Ho-bin Jeong","type":"Person","_key":"38351"} +{"label":"Ye-jin Im","version":25,"id":"63440","lastModified":"1301901954000","name":"Ye-jin Im","type":"Person","_key":"38352"} +{"label":"Jae-hyeong Jeon","version":25,"id":"63445","lastModified":"1301901954000","name":"Jae-hyeong Jeon","type":"Person","_key":"38353"} +{"label":"Jeong-tae Kim","version":25,"id":"63446","lastModified":"1301901649000","name":"Jeong-tae Kim","type":"Person","_key":"38354"} +{"label":"Dorm Daze 2","description":"Sequal to Dorm Daze has most of the original group of college students on a cruise ship in the Pacific, putting on a school play which takes a turn involving the theft of a priceless diamond.","id":"10104","runtime":100,"imdbId":"tt0458438","version":269,"lastModified":"1301902661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5e\/4bc92be8017a3c57fe011b5e\/dorm-daze-2-mid.jpg","genre":"Comedy","title":"Dorm Daze 2","releaseDate":1166054400000,"language":"en","type":"Movie","_key":"38355"} +{"label":"David Hillenbrand","version":24,"id":"63447","lastModified":"1301901374000","name":"David Hillenbrand","type":"Person","_key":"38356"} +{"label":"Scott Hillenbrand","version":25,"id":"63452","lastModified":"1301901532000","name":"Scott Hillenbrand","type":"Person","_key":"38357"} +{"label":"Gable Carr","version":21,"id":"63463","lastModified":"1301901381000","name":"Gable Carr","type":"Person","_key":"38358"} +{"label":"Patrick Cavanaugh","version":24,"id":"63464","lastModified":"1301901727000","name":"Patrick Cavanaugh","type":"Person","_key":"38359"} +{"label":"Patrick Casey","version":20,"id":"63466","lastModified":"1301901993000","name":"Patrick Casey","type":"Person","_key":"38360"} +{"label":"Marieh Delfino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10b\/4d4487d37b9aa15bf500110b\/marieh-delfino-profile.jpg","version":30,"id":"63465","lastModified":"1301901613000","name":"Marieh Delfino","type":"Person","_key":"38361"} +{"label":"Danielle Fishel","version":21,"id":"63467","lastModified":"1301901813000","name":"Danielle Fishel","type":"Person","_key":"38362"} +{"label":"Vida Guerra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c31\/4bfeadf7017a3c7037000c31\/vida-guerra-profile.jpg","version":19,"id":"63468","lastModified":"1301901430000","name":"Vida Guerra","type":"Person","_key":"38363"} +{"label":"Paul H. Kim","version":20,"id":"63469","lastModified":"1301901993000","name":"Paul H. Kim","type":"Person","_key":"38364"} +{"label":"Worm Miller","version":19,"id":"63472","lastModified":"1301901727000","name":"Worm Miller","type":"Person","_key":"38365"} +{"label":"Nicolas Shake","version":19,"id":"63473","lastModified":"1301901727000","name":"Nicolas Shake","type":"Person","_key":"38366"} +{"label":"Jennifer Lyons","version":23,"id":"63470","lastModified":"1301902165000","name":"Jennifer Lyons","type":"Person","_key":"38367"} +{"label":"Kip Martin","version":20,"id":"63471","lastModified":"1301901537000","name":"Kip Martin","type":"Person","_key":"38368"} +{"label":"Oren Skoog","version":19,"id":"63476","lastModified":"1301901877000","name":"Oren Skoog","type":"Person","_key":"38369"} +{"label":"Charles Shaughnessy","version":21,"id":"63474","lastModified":"1301902087000","name":"Charles Shaughnessy","type":"Person","_key":"38370"} +{"label":"Catherine Watson","version":19,"id":"63475","lastModified":"1301901613000","name":"Catherine Watson","type":"Person","_key":"38371"} +{"label":"Saints and Soldiers","description":"Five American soldiers fighting in Europe during World War II struggle to return to Allied territory after being separated from U.S. forces during the historic Malmedy Massacre.","id":"10105","runtime":90,"imdbId":"tt0373283","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/saints-and-soldiers","version":232,"lastModified":"1301902913000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6b\/4bc92bec017a3c57fe011b6b\/saints-and-soldiers-mid.jpg","studio":"Excel Entertainment","genre":"Action","title":"Saints and Soldiers","releaseDate":1063238400000,"language":"en","type":"Movie","_key":"38372"} +{"label":"Ryan Little","version":30,"id":"63477","lastModified":"1301901648000","name":"Ryan Little","type":"Person","_key":"38373"} +{"label":"Alexander Polinsky","version":22,"id":"63493","lastModified":"1301901124000","name":"Alexander Polinsky","type":"Person","_key":"38374"} +{"label":"Kirby Heyborne","version":25,"id":"63494","lastModified":"1301901156000","name":"Kirby Heyborne","type":"Person","_key":"38375"} +{"label":"Corbin Allred","version":22,"id":"63492","lastModified":"1301901146000","name":"Corbin Allred","type":"Person","_key":"38376"} +{"label":"Ethan Vincent","version":21,"id":"63498","lastModified":"1301901162000","name":"Ethan Vincent","type":"Person","_key":"38377"} +{"label":"Melinda Renee","version":21,"id":"63499","lastModified":"1301901168000","name":"Melinda Renee","type":"Person","_key":"38378"} +{"label":"Peter Holden","version":21,"id":"63497","lastModified":"1301901172000","name":"Peter Holden","type":"Person","_key":"38379"} +{"label":"Ruby Chase O'Neil","version":21,"id":"63500","lastModified":"1301901168000","name":"Ruby Chase O'Neil","type":"Person","_key":"38380"} +{"label":"Jeff Birk","version":21,"id":"63501","lastModified":"1301901175000","name":"Jeff Birk","type":"Person","_key":"38381"} +{"label":"Ben Gourley","version":26,"id":"63502","lastModified":"1301901146000","name":"Ben Gourley","type":"Person","_key":"38382"} +{"label":"Chris Clark","version":21,"id":"63508","lastModified":"1301901152000","name":"Chris Clark","type":"Person","_key":"38383"} +{"label":"M. Casey Reeves","version":21,"id":"63507","lastModified":"1301901182000","name":"M. Casey Reeves","type":"Person","_key":"38384"} +{"label":"Curt Dousett","version":21,"id":"63505","lastModified":"1301901162000","name":"Curt Dousett","type":"Person","_key":"38385"} +{"label":"Randy Beard","version":21,"id":"63504","lastModified":"1301901168000","name":"Randy Beard","type":"Person","_key":"38386"} +{"label":"Michael Buster","version":21,"id":"63506","lastModified":"1301902264000","name":"Michael Buster","type":"Person","_key":"38387"} +{"label":"Tane Williams","version":21,"id":"63503","lastModified":"1301901162000","name":"Tane Williams","type":"Person","_key":"38388"} +{"label":"Christian Lee","version":21,"id":"63509","lastModified":"1301901162000","name":"Christian Lee","type":"Person","_key":"38389"} +{"label":"Philip Malzl","version":21,"id":"63511","lastModified":"1301901168000","name":"Philip Malzl","type":"Person","_key":"38390"} +{"label":"Christian Malzl","version":21,"id":"63510","lastModified":"1301901168000","name":"Christian Malzl","type":"Person","_key":"38391"} +{"label":"Dawn Graham","version":21,"id":"63512","lastModified":"1301901162000","name":"Dawn Graham","type":"Person","_key":"38392"} +{"label":"Firehouse Dog","description":"Rexxx, Hollywood's top canine star, gets lost and is adopted into a shabby firehouse. He teams up with a young kid (Hutcherson) to get the station back on its feet.","id":"10107","runtime":111,"imdbId":"tt0476995","version":240,"lastModified":"1301903902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b79\/4bc92bed017a3c57fe011b79\/firehouse-dog-mid.jpg","genre":"Action","title":"Firehouse Dog","releaseDate":1175644800000,"language":"en","type":"Movie","_key":"38393"} +{"label":"Scotch Ellis Loring","version":20,"id":"63537","lastModified":"1301902087000","name":"Scotch Ellis Loring","type":"Person","_key":"38394"} +{"label":"Teddy Sears","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4cdc65c07b9aa13802000094\/teddy-sears-profile.jpg","version":24,"id":"63540","lastModified":"1301902217000","name":"Teddy Sears","type":"Person","_key":"38395"} +{"label":"Arwen","version":19,"id":"63539","lastModified":"1301902087000","name":"Arwen","type":"Person","_key":"38396"} +{"label":"Mayte Garcia","version":22,"id":"63538","lastModified":"1301901785000","name":"Mayte Garcia","type":"Person","_key":"38397"} +{"label":"Steven Culp","version":32,"birthday":"-444358800000","id":"63544","birthplace":"La Jolla, San Diego, California, U.S.","lastModified":"1301901495000","name":"Steven Culp","type":"Person","_key":"38398"} +{"label":"Rohan","version":19,"id":"63542","lastModified":"1301901727000","name":"Rohan","type":"Person","_key":"38399"} +{"label":"Stryder","version":19,"id":"63543","lastModified":"1301902264000","name":"Stryder","type":"Person","_key":"38400"} +{"label":"Frodo","version":19,"id":"63541","lastModified":"1301902264000","name":"Frodo","type":"Person","_key":"38401"} +{"label":"Hannah Lochner","version":22,"id":"63545","lastModified":"1301902140000","name":"Hannah Lochner","type":"Person","_key":"38402"} +{"label":"Matt Cooke","version":20,"id":"44237","lastModified":"1301901727000","name":"Matt Cooke","type":"Person","_key":"38403"} +{"label":"Shane Daly","version":19,"id":"63546","lastModified":"1301902264000","name":"Shane Daly","type":"Person","_key":"38404"} +{"label":"Claudette Mink","version":30,"id":"63547","lastModified":"1301901643000","name":"Claudette Mink","type":"Person","_key":"38405"} +{"label":"Joseph Zita","version":19,"id":"63549","lastModified":"1301902264000","name":"Joseph Zita","type":"Person","_key":"38406"} +{"label":"Brandon Craggs","version":19,"id":"63548","lastModified":"1301902264000","name":"Brandon Craggs","type":"Person","_key":"38407"} +{"label":"D.C. Sniper: 23 Days of Fear","description":"No overview found.","id":"10108","runtime":120,"imdbId":"tt0381116","version":102,"lastModified":"1301904676000","genre":"Drama","title":"D.C. Sniper: 23 Days of Fear","releaseDate":1066348800000,"language":"en","type":"Movie","_key":"38408"} +{"label":"Tom McLoughlin","version":33,"id":"63550","lastModified":"1301901560000","name":"Tom McLoughlin","type":"Person","_key":"38409"} +{"label":"Trent Cameron","version":21,"id":"63561","lastModified":"1301901996000","name":"Trent Cameron","type":"Person","_key":"38410"} +{"label":"David Neale","version":20,"id":"63562","lastModified":"1301902087000","name":"David Neale","type":"Person","_key":"38411"} +{"label":"Veena Sood","version":21,"id":"63563","lastModified":"1301902146000","name":"Veena Sood","type":"Person","_key":"38412"} +{"label":"Nels Lennarson","version":22,"id":"63564","lastModified":"1301901430000","name":"Nels Lennarson","type":"Person","_key":"38413"} +{"label":"Michael Adamthwaite","version":27,"id":"63566","lastModified":"1301902017000","name":"Michael Adamthwaite","type":"Person","_key":"38414"} +{"label":"Raul Aguilar","version":19,"id":"63567","lastModified":"1301901877000","name":"Raul Aguilar","type":"Person","_key":"38415"} +{"label":"Patti Allan","version":19,"id":"63568","lastModified":"1301901727000","name":"Patti Allan","type":"Person","_key":"38416"} +{"label":"Sean Allen","version":19,"id":"63569","lastModified":"1301901877000","name":"Sean Allen","type":"Person","_key":"38417"} +{"label":"Bianca Blake","version":19,"id":"63570","lastModified":"1301901727000","name":"Bianca Blake","type":"Person","_key":"38418"} +{"label":"The White Dragon","description":"In this swordfighting comedy, a young noblewoman falls in love with a prince of the Imperial House. By accident, she acquires the martial arts skills of the White Dragon. New in her power, she learns that there are definite advantages in performing \"good deeds\" as the Little White Dragon.","id":"10109","runtime":93,"imdbId":"tt0441263","version":252,"lastModified":"1301904827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4c2e36e67b9aa1666300007c\/fei-hap-siu-baak-lung-mid.jpg","studio":"China Film Co-Production Corporation","genre":"Action","title":"The White Dragon","releaseDate":1098921600000,"language":"en","type":"Movie","_key":"38419"} +{"label":"Wilson Yip","version":42,"id":"63571","lastModified":"1301975713000","name":"Wilson Yip","type":"Person","_key":"38420"} +{"label":"Avi K. Garg","version":22,"id":"63579","lastModified":"1301902170000","name":"Avi K. Garg","type":"Person","_key":"38421"} +{"label":"Lei Liu","version":21,"id":"63583","lastModified":"1301902381000","name":"Lei Liu","type":"Person","_key":"38422"} +{"label":"Andy On","version":31,"id":"63585","lastModified":"1301901454000","name":"Andy On","type":"Person","_key":"38423"} +{"label":"Francis Ng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4c8268e17b9aa13b67000147\/francis-ng-profile.jpg","version":61,"id":"63584","lastModified":"1301901472000","name":"Francis Ng","type":"Person","_key":"38424"} +{"label":"Xiao Lung Ding","version":21,"id":"63581","lastModified":"1301902178000","name":"Xiao Lung Ding","type":"Person","_key":"38425"} +{"label":"Nay Suet","version":21,"id":"63586","lastModified":"1301902382000","name":"Nay Suet","type":"Person","_key":"38426"} +{"label":"Patrick Tang","version":22,"id":"63588","lastModified":"1301901980000","name":"Patrick Tang","type":"Person","_key":"38427"} +{"label":"Kitty Yuen","version":22,"id":"63587","lastModified":"1301902172000","name":"Kitty Yuen","type":"Person","_key":"38428"} +{"label":"Empire of the Sun","description":"The novel recounts the story of a young English boy, Jim Graham, who lives with his parents in Shanghai. After the Pearl Harbour attack, the Japanese occupy the Shanghai International Settlement, and in the following chaos Jim becomes separated from his parents.","id":"10110","runtime":154,"imdbId":"tt0092965","version":166,"lastModified":"1301902150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc92bed017a3c57fe011b82\/empire-of-the-sun-mid.jpg","studio":"Amblin Entertainment","genre":"Action","title":"Empire of the Sun","releaseDate":566870400000,"language":"en","tagline":"To survive in a world at war, he must find a strength greater than all the events that surround him.","type":"Movie","_key":"38429"} +{"label":"Confetti","description":"A mockumentary that follows three couples as they battle it out to win the coveted title of 'Most Original Wedding of the Year'.","id":"10111","runtime":100,"imdbId":"tt0427089","trailer":"http:\/\/www.youtube.com\/watch?v=1133","version":432,"lastModified":"1301903489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9c\/4bc92bf2017a3c57fe011b9c\/confetti-mid.jpg","genre":"Comedy","title":"Confetti","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"38430"} +{"label":"Debbie Isitt","version":24,"id":"63589","lastModified":"1301902051000","name":"Debbie Isitt","type":"Person","_key":"38431"} +{"label":"Vincent Franklin","version":19,"id":"43024","lastModified":"1301902087000","name":"Vincent Franklin","type":"Person","_key":"38432"} +{"label":"Robert Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f9\/4cef511d5e73d662500002f9\/robert-webb-profile.jpg","version":20,"id":"63607","lastModified":"1301901849000","name":"Robert Webb","type":"Person","_key":"38433"} +{"label":"Meredith MacNeill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dcf\/4cf5d15d5e73d6299b000dcf\/meredith-macneill-profile.jpg","version":23,"id":"63606","lastModified":"1301901302000","name":"Meredith MacNeill","type":"Person","_key":"38434"} +{"label":"Marc Wootton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d8d\/4cf5ccf35e73d6299a000d8d\/marc-wootton-profile.jpg","version":21,"id":"92574","lastModified":"1301901375000","name":"Marc Wootton","type":"Person","_key":"38435"} +{"label":"Jason Watkins","version":27,"id":"63608","lastModified":"1301902046000","name":"Jason Watkins","type":"Person","_key":"38436"} +{"label":"Alison Steadman","version":38,"id":"47699","lastModified":"1301901980000","name":"Alison Steadman","type":"Person","_key":"38437"} +{"label":"Phil Nichol","version":19,"id":"63612","lastModified":"1301902264000","name":"Phil Nichol","type":"Person","_key":"38438"} +{"label":"Nickolas Grace","version":25,"id":"63611","lastModified":"1301902380000","name":"Nickolas Grace","type":"Person","_key":"38439"} +{"label":"Caroline Reid","version":19,"id":"63610","lastModified":"1301902087000","name":"Caroline Reid","type":"Person","_key":"38440"} +{"label":"Mark Heap","version":19,"id":"47712","lastModified":"1301902264000","name":"Mark Heap","type":"Person","_key":"38441"} +{"label":"The Aristocats","description":"When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children -- Bonfamille's prize family of domesticated house cats -- the butler plots to steal the money and kidnaps the heirs, leaving them out on a country road. All seems lost until the wily Thomas O'Malley Cat and his jazz-playing alley cats come to the Aristocats's rescue.","id":"10112","runtime":78,"imdbId":"tt0065421","trailer":"http:\/\/www.youtube.com\/watch?v=223bYlLJSnU","version":146,"lastModified":"1301901630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a92\/4d77ae3b7b9aa15c85000a92\/the-aristocats-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Aristocats","releaseDate":29721600000,"language":"en","tagline":"A tune-filled animated extravaganza.","type":"Movie","_key":"38442"} +{"label":"Eva Gabor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/110\/4c24eee57b9aa1446e000110\/eva-gabor-profile.jpg","version":51,"id":"44714","lastModified":"1301901580000","name":"Eva Gabor","type":"Person","_key":"38443"} +{"label":"Fear of Clowns","description":"An artist with coulrophobia (\"fear of clowns\") is stalked by a murderous clown resembling one of the ones she paints.","id":"10113","runtime":106,"imdbId":"tt0362636","version":102,"lastModified":"1301904442000","genre":"Horror","title":"Fear of Clowns","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"38444"} +{"label":"Kevin Kangas","version":19,"id":"63618","lastModified":"1301902264000","name":"Kevin Kangas","type":"Person","_key":"38445"} +{"label":"Darla Albornoz","version":19,"id":"63628","lastModified":"1301902087000","name":"Darla Albornoz","type":"Person","_key":"38446"} +{"label":"Mark Lassise","version":19,"id":"63626","lastModified":"1301902087000","name":"Mark Lassise","type":"Person","_key":"38447"} +{"label":"Jacky Reres","version":19,"id":"63625","lastModified":"1301901877000","name":"Jacky Reres","type":"Person","_key":"38448"} +{"label":"John Patrick Barry","version":19,"id":"63629","lastModified":"1301902087000","name":"John Patrick Barry","type":"Person","_key":"38449"} +{"label":"Steve Carson","version":19,"id":"63630","lastModified":"1301901877000","name":"Steve Carson","type":"Person","_key":"38450"} +{"label":"Jed Duvall","version":19,"id":"63631","lastModified":"1301902264000","name":"Jed Duvall","type":"Person","_key":"38451"} +{"label":"Judith Furlow","version":19,"id":"63632","lastModified":"1301902264000","name":"Judith Furlow","type":"Person","_key":"38452"} +{"label":"Rich Henn","version":19,"id":"63634","lastModified":"1301902264000","name":"Rich Henn","type":"Person","_key":"38453"} +{"label":"Frank Lama","version":21,"id":"63636","lastModified":"1301901859000","name":"Frank Lama","type":"Person","_key":"38454"} +{"label":"Steven Gleich","version":19,"id":"63633","lastModified":"1301902087000","name":"Steven Gleich","type":"Person","_key":"38455"} +{"label":"Paul C. Kangas","version":19,"id":"63635","lastModified":"1301901877000","name":"Paul C. Kangas","type":"Person","_key":"38456"} +{"label":"Patrick T. McGowan","version":19,"id":"63637","lastModified":"1301902087000","name":"Patrick T. McGowan","type":"Person","_key":"38457"} +{"label":"Lauren Pellegrino","version":19,"id":"63638","lastModified":"1301901877000","name":"Lauren Pellegrino","type":"Person","_key":"38458"} +{"label":"Christopher Lee Philips","version":19,"id":"63640","lastModified":"1301901877000","name":"Christopher Lee Philips","type":"Person","_key":"38459"} +{"label":"Jack Porter","version":19,"id":"63639","lastModified":"1301902264000","name":"Jack Porter","type":"Person","_key":"38460"} +{"label":"Andrew Schneider","version":19,"id":"63644","lastModified":"1301902264000","name":"Andrew Schneider","type":"Person","_key":"38461"} +{"label":"Bill Stull","version":19,"id":"63642","lastModified":"1301901877000","name":"Bill Stull","type":"Person","_key":"38462"} +{"label":"Ted Taylor","version":19,"id":"63643","lastModified":"1301901877000","name":"Ted Taylor","type":"Person","_key":"38463"} +{"label":"Carl Randolph","version":19,"id":"63641","lastModified":"1301902087000","name":"Carl Randolph","type":"Person","_key":"38464"} +{"label":"Rick Ganz","version":20,"id":"63619","lastModified":"1301902264000","name":"Rick Ganz","type":"Person","_key":"38465"} +{"label":"Ring Around the Rosie","description":"While spending time at her grandparent's secluded summerhouse to clean up the place after her grandmother's death, a young woman is plagued by horrible visions and dreams of tragic past events.","id":"10114","runtime":87,"imdbId":"tt0331488","version":171,"lastModified":"1301903340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb4\/4bc92bf6017a3c57fe011bb4\/ring-around-the-rosie-mid.jpg","genre":"Horror","title":"Ring Around the Rosie","releaseDate":1149033600000,"language":"en","type":"Movie","_key":"38466"} +{"label":"Rubi Zack","version":22,"id":"43064","lastModified":"1301902087000","name":"Rubi Zack","type":"Person","_key":"38467"} +{"label":"Jenny Mollen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d9f\/4cf5d8e65e73d6299c000d9f\/jenny-mollen-profile.jpg","version":23,"id":"63661","lastModified":"1301901376000","name":"Jenny Mollen","type":"Person","_key":"38468"} +{"label":"Krystal Rohrer","version":19,"id":"63664","lastModified":"1301902264000","name":"Krystal Rohrer","type":"Person","_key":"38469"} +{"label":"Marc Lynn","version":20,"id":"63662","lastModified":"1301901877000","name":"Marc Lynn","type":"Person","_key":"38470"} +{"label":"Hayley McFarland","version":27,"id":"63663","lastModified":"1301901486000","name":"Hayley McFarland","type":"Person","_key":"38471"} +{"label":"Martin Joswick","version":19,"id":"63665","lastModified":"1301902264000","name":"Martin Joswick","type":"Person","_key":"38472"} +{"label":"Carlene Moore","version":19,"id":"63666","lastModified":"1301902264000","name":"Carlene Moore","type":"Person","_key":"38473"} +{"label":"Cynthia Alvarado","version":19,"id":"63667","lastModified":"1301902264000","name":"Cynthia Alvarado","type":"Person","_key":"38474"} +{"label":"Stick It","description":"After a run-in with the law, Haley Graham (Missy Peregrym) is forced to return to the world from which she fled some years ago. Enrolled in an elite gymnastics program run by the legendary Burt Vickerman (Jeff Bridges), Haley's rebellious attitude gives way to something that just might be called team spirit.","id":"10115","runtime":103,"imdbId":"tt0430634","version":214,"lastModified":"1301902383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbd\/4bc92bfa017a3c57fe011bbd\/stick-it-mid.jpg","studio":"Younggu-Art Movies","genre":"Comedy","title":"Stick It","releaseDate":1146182400000,"language":"en","type":"Movie","_key":"38475"} +{"label":"Jessica Bendinger","version":31,"id":"53014","lastModified":"1301901949000","name":"Jessica Bendinger","type":"Person","_key":"38476"} +{"label":"Missy Peregrym","version":20,"id":"34434","lastModified":"1301901475000","name":"Missy Peregrym","type":"Person","_key":"38477"} +{"label":"Maddy Curley","version":20,"id":"63677","lastModified":"1301902087000","name":"Maddy Curley","type":"Person","_key":"38478"} +{"label":"Nikki SooHoo","version":25,"id":"63676","lastModified":"1301901110000","name":"Nikki SooHoo","type":"Person","_key":"38479"} +{"label":"Kellan Lutz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fc\/4cf5455b5e73d6299b0007fc\/kellan-lutz-profile.jpg","version":99,"id":"34502","lastModified":"1301901167000","name":"Kellan Lutz","type":"Person","_key":"38480"} +{"label":"Mio Dzakula","version":20,"id":"63678","lastModified":"1301901877000","name":"Mio Dzakula","type":"Person","_key":"38481"} +{"label":"Svetlana Efremova","version":20,"id":"63679","lastModified":"1301901877000","name":"Svetlana Efremova","type":"Person","_key":"38482"} +{"label":"Tim Daggett","version":20,"id":"63683","lastModified":"1301902087000","name":"Tim Daggett","type":"Person","_key":"38483"} +{"label":"Bart Conner","version":23,"id":"63682","lastModified":"1301901779000","name":"Bart Conner","type":"Person","_key":"38484"} +{"label":"Julie Warner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/670\/4d15f2dd5e73d60832004670\/julie-warner-profile.jpg","version":28,"id":"63681","lastModified":"1301901467000","name":"Julie Warner","type":"Person","_key":"38485"} +{"label":"Tarah Paige","version":25,"id":"63680","lastModified":"1301902131000","name":"Tarah Paige","type":"Person","_key":"38486"} +{"label":"Elfi Schlegel","version":21,"id":"63684","lastModified":"1301901993000","name":"Elfi Schlegel","type":"Person","_key":"38487"} +{"label":"Brian Gattas","version":20,"id":"63686","lastModified":"1301901877000","name":"Brian Gattas","type":"Person","_key":"38488"} +{"label":"Harrison Wills","version":20,"id":"63685","lastModified":"1301901877000","name":"Harrison Wills","type":"Person","_key":"38489"} +{"label":"Shinobi: Heart Under Blade","description":"Even though Gennosuke and Oboro are from rival ninja villages, they are secretly in love. At an annual conference with the Lord, it is dictated that a competition--a fight to the death--will take place between the five best shinobi from each village. Gennosuke and Oboro's love is made even more impossible when they each got picked as the leader of the five to represent their respective villages.","id":"10116","runtime":107,"imdbId":"tt0475723","version":166,"lastModified":"1301902779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c6\/4d018ec15e73d621a50004c6\/shinobi-heart-under-blade-mid.jpg","genre":"Action","title":"Shinobi: Heart Under Blade","releaseDate":1126915200000,"language":"en","type":"Movie","_key":"38490"} +{"label":"Ten Shimoyama","version":23,"id":"63689","lastModified":"1301901649000","name":"Ten Shimoyama","type":"Person","_key":"38491"} +{"label":"Tomoka Kurotani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ef\/4d3e7a2e5e73d622d10043ef\/tomoka-kurotani-profile.jpg","version":25,"id":"63695","lastModified":"1301901844000","name":"Tomoka Kurotani","type":"Person","_key":"38492"} +{"label":"Kippei Shiina","version":24,"id":"63696","lastModified":"1301901954000","name":"Kippei Shiina","type":"Person","_key":"38493"} +{"label":"Takeshi Masu","version":25,"id":"63697","lastModified":"1301902352000","name":"Takeshi Masu","type":"Person","_key":"38494"} +{"label":"Shun It\u00f4","version":21,"id":"63700","lastModified":"1301902150000","name":"Shun It\u00f4","type":"Person","_key":"38495"} +{"label":"Mitsuki Koga","version":22,"id":"63698","lastModified":"1301902335000","name":"Mitsuki Koga","type":"Person","_key":"38496"} +{"label":"Ririi","version":20,"id":"63701","lastModified":"1301902150000","name":"Ririi","type":"Person","_key":"38497"} +{"label":"Masaki Nishina","version":22,"id":"63703","lastModified":"1301902335000","name":"Masaki Nishina","type":"Person","_key":"38498"} +{"label":"Toshiya Nagasawa","version":23,"id":"63704","lastModified":"1301902041000","name":"Toshiya Nagasawa","type":"Person","_key":"38499"} +{"label":"Minoru Terada","version":23,"id":"63702","lastModified":"1301902335000","name":"Minoru Terada","type":"Person","_key":"38500"} +{"label":"Renji Ishibashi","version":38,"id":"63706","lastModified":"1301901955000","name":"Renji Ishibashi","type":"Person","_key":"38501"} +{"label":"Hiroko Yashiki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a9\/4d2742c67b9aa134e00017a9\/hiroko-yashiki-profile.jpg","version":27,"id":"63708","lastModified":"1301901699000","name":"Hiroko Yashiki","type":"Person","_key":"38502"} +{"label":"Kazuo Kitamura","version":31,"id":"63707","lastModified":"1301902212000","name":"Kazuo Kitamura","type":"Person","_key":"38503"} +{"label":"Action Jackson","description":"Jericho \"Action\" Jackson is a Detroit police sergeant who was demoted from lieutenant for almost tearing the arm off of sexually violent sociopath Sean Dellaplane, whose father is Peter Dellaplane, a major car manufacturer. But Dellaplane himself is violent as well. Dellaplane kills his wife Patrice by shooting her. And then he plants her body in Jackson's apartment, framing Jackson. Dellaplane w","id":"10117","runtime":96,"imdbId":"tt0094612","version":133,"lastModified":"1301902136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4bd4fd23017a3c2e7c000094\/action-jackson-mid.jpg","genre":"Action","title":"Action Jackson","releaseDate":571622400000,"language":"en","type":"Movie","_key":"38504"} +{"label":"Craig R. Baxley","version":40,"id":"63709","lastModified":"1301901412000","name":"Craig R. Baxley","type":"Person","_key":"38505"} +{"label":"Material Girls","description":"Two wealthy sisters, both heiresses to their family's cosmetics fortune, are given a wake-up call when a scandal and ensuing investigation strip them of their wealth.","id":"10118","runtime":97,"imdbId":"tt0433412","version":193,"lastModified":"1301902851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bed\/4bc92c02017a3c57fe011bed\/material-girls-mid.jpg","genre":"Comedy","title":"Material Girls","releaseDate":1155859200000,"language":"en","type":"Movie","_key":"38506"} +{"label":"Martha Coolidge","version":33,"id":"63713","lastModified":"1301901947000","name":"Martha Coolidge","type":"Person","_key":"38507"} +{"label":"Marcus Coloma","version":19,"id":"63731","lastModified":"1301901877000","name":"Marcus Coloma","type":"Person","_key":"38508"} +{"label":"Henry Cho","version":19,"id":"63733","lastModified":"1301901877000","name":"Henry Cho","type":"Person","_key":"38509"} +{"label":"Ty Hodges","version":19,"id":"63732","lastModified":"1301902087000","name":"Ty Hodges","type":"Person","_key":"38510"} +{"label":"Misti Traya","version":20,"id":"63735","lastModified":"1301902048000","name":"Misti Traya","type":"Person","_key":"38511"} +{"label":"Reagan Dale Neis","version":19,"id":"63734","lastModified":"1301902087000","name":"Reagan Dale Neis","type":"Person","_key":"38512"} +{"label":"Christina R. Copeland","version":19,"id":"63736","lastModified":"1301901877000","name":"Christina R. Copeland","type":"Person","_key":"38513"} +{"label":"Dennis Lee Kelly","version":19,"id":"63737","lastModified":"1301901877000","name":"Dennis Lee Kelly","type":"Person","_key":"38514"} +{"label":"Judy Tenuta","version":21,"id":"63739","lastModified":"1301901934000","name":"Judy Tenuta","type":"Person","_key":"38515"} +{"label":"Brandon Beemer","version":19,"id":"63738","lastModified":"1301901727000","name":"Brandon Beemer","type":"Person","_key":"38516"} +{"label":"Faith Prince","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/247\/4d8bf8947b9aa13ade002247\/faith-prince-profile.jpg","version":31,"id":"41505","lastModified":"1301902014000","name":"Faith Prince","type":"Person","_key":"38517"} +{"label":"Damian d'Entremont","version":19,"id":"63741","lastModified":"1301901877000","name":"Damian d'Entremont","type":"Person","_key":"38518"} +{"label":"Ikke naken","description":"Selma's mother died giving birth to her, and Selma's step aunt is living proof that men only cause trouble...","id":"10119","runtime":94,"imdbId":"tt0425125","version":75,"lastModified":"1301904472000","genre":"Comedy","title":"Ikke naken","releaseDate":1093564800000,"language":"en","type":"Movie","_key":"38519"} +{"label":"Torun Lian","version":24,"id":"63744","lastModified":"1301901954000","name":"Torun Lian","type":"Person","_key":"38520"} +{"label":"Tobias B\u00f8ksle","version":20,"id":"63753","lastModified":"1301902365000","name":"Tobias B\u00f8ksle","type":"Person","_key":"38521"} +{"label":"Lars Brunborg","version":20,"id":"63754","lastModified":"1301902150000","name":"Lars Brunborg","type":"Person","_key":"38522"} +{"label":"Celine Engebrigtsen","version":21,"id":"63755","lastModified":"1301901954000","name":"Celine Engebrigtsen","type":"Person","_key":"38523"} +{"label":"Maria Elisabeth A. Hansen","version":20,"id":"63756","lastModified":"1301901783000","name":"Maria Elisabeth A. Hansen","type":"Person","_key":"38524"} +{"label":"Gitte Julsrud","version":20,"id":"63758","lastModified":"1301902335000","name":"Gitte Julsrud","type":"Person","_key":"38525"} +{"label":"Elias Holmen","version":20,"id":"63757","lastModified":"1301902150000","name":"Elias Holmen","type":"Person","_key":"38526"} +{"label":"August Karlseng","version":20,"id":"63759","lastModified":"1301902335000","name":"August Karlseng","type":"Person","_key":"38527"} +{"label":"Andrine S\u00e6ther","version":25,"id":"63763","lastModified":"1301902339000","name":"Andrine S\u00e6ther","type":"Person","_key":"38528"} +{"label":"Gustaf Skarsg\u00e5rd","version":50,"id":"63764","lastModified":"1301901495000","name":"Gustaf Skarsg\u00e5rd","type":"Person","_key":"38529"} +{"label":"Bernhard Naglestad","version":20,"id":"63762","lastModified":"1301902365000","name":"Bernhard Naglestad","type":"Person","_key":"38530"} +{"label":"Julia Krohn","version":20,"id":"63761","lastModified":"1301902365000","name":"Julia Krohn","type":"Person","_key":"38531"} +{"label":"Marie Kinge","version":20,"id":"63760","lastModified":"1301902365000","name":"Marie Kinge","type":"Person","_key":"38532"} +{"label":"Robert Skj\u00e6rstad","version":22,"id":"63765","lastModified":"1301902335000","name":"Robert Skj\u00e6rstad","type":"Person","_key":"38533"} +{"label":"Reidar S\u00f8rensen","version":27,"id":"63767","lastModified":"1301901845000","name":"Reidar S\u00f8rensen","type":"Person","_key":"38534"} +{"label":"Kim S\u00f8rensen","version":20,"id":"63766","lastModified":"1301902335000","name":"Kim S\u00f8rensen","type":"Person","_key":"38535"} +{"label":"Ane Dahl Torp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c67\/4d27bc0c7b9aa134e0001c67\/ane-dahl-torp-profile.jpg","version":31,"id":"63769","lastModified":"1301901495000","name":"Ane Dahl Torp","type":"Person","_key":"38536"} +{"label":"Silje Storstein","version":20,"id":"63768","lastModified":"1301902365000","name":"Silje Storstein","type":"Person","_key":"38537"} +{"label":"Blonde and Blonder","description":"Comic mayhem ensues when two lovely blondes, Dee and Dawn, are mistaken as international mob killers.","id":"10120","runtime":95,"imdbId":"tt0893509","version":192,"lastModified":"1301903535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfa\/4bc92c03017a3c57fe011bfa\/blonde-and-blonder-mid.jpg","genre":"Comedy","title":"Blonde and Blonder","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"38538"} +{"label":"Dean Hamilton","version":21,"id":"63771","lastModified":"1301901857000","name":"Dean Hamilton","type":"Person","_key":"38539"} +{"label":"Woody Jeffreys","version":23,"id":"63792","lastModified":"1301901765000","name":"Woody Jeffreys","type":"Person","_key":"38540"} +{"label":"Joey Aresco","version":19,"id":"63790","lastModified":"1301902264000","name":"Joey Aresco","type":"Person","_key":"38541"} +{"label":"Jay Brazeau","version":31,"id":"63791","lastModified":"1301901667000","name":"Jay Brazeau","type":"Person","_key":"38542"} +{"label":"Phoenix Ly","version":19,"id":"63796","lastModified":"1301902264000","name":"Phoenix Ly","type":"Person","_key":"38543"} +{"label":"Patrick Pon","version":20,"id":"63793","lastModified":"1301902317000","name":"Patrick Pon","type":"Person","_key":"38544"} +{"label":"Douglas Newell","version":19,"id":"63794","lastModified":"1301902264000","name":"Douglas Newell","type":"Person","_key":"38545"} +{"label":"Anna Williams","version":19,"id":"63795","lastModified":"1301902264000","name":"Anna Williams","type":"Person","_key":"38546"} +{"label":"Alistair Abell","version":29,"id":"63797","lastModified":"1301901117000","name":"Alistair Abell","type":"Person","_key":"38547"} +{"label":"Warriors of Terra","description":"A headstrong animal-rights activist group plans a raid on a bio-tech company to stop the cruelty. They...","id":"10121","runtime":90,"imdbId":"tt0490240","version":110,"lastModified":"1301903461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dd\/4c9b22b85e73d6554a0002dd\/warriors-of-terra-mid.jpg","genre":"Horror","title":"Warriors of Terra","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"38548"} +{"label":"Ellen Furey","version":19,"id":"63807","lastModified":"1301902087000","name":"Ellen Furey","type":"Person","_key":"38549"} +{"label":"Andrew Hachey","version":19,"id":"63809","lastModified":"1301902264000","name":"Andrew Hachey","type":"Person","_key":"38550"} +{"label":"Krystin Pellerin","version":19,"id":"63810","lastModified":"1301902264000","name":"Krystin Pellerin","type":"Person","_key":"38551"} +{"label":"James McGowan","version":29,"id":"59669","lastModified":"1301902046000","name":"James McGowan","type":"Person","_key":"38552"} +{"label":"Andrea Lui","version":19,"id":"63808","lastModified":"1301902087000","name":"Andrea Lui","type":"Person","_key":"38553"} +{"label":"Marc Hickox","version":21,"id":"63812","lastModified":"1301902264000","name":"Marc Hickox","type":"Person","_key":"38554"} +{"label":"Trina Brink","version":19,"id":"63811","lastModified":"1301902087000","name":"Trina Brink","type":"Person","_key":"38555"} +{"label":"Rothaford Gray","version":25,"id":"63813","lastModified":"1301901491000","name":"Rothaford Gray","type":"Person","_key":"38556"} +{"label":"Erin Berry","version":28,"id":"62661","lastModified":"1301901997000","name":"Erin Berry","type":"Person","_key":"38557"} +{"label":"Billy MacLellan","version":19,"id":"63814","lastModified":"1301902264000","name":"Billy MacLellan","type":"Person","_key":"38558"} +{"label":"Jason Stutz","version":19,"id":"63815","lastModified":"1301902087000","name":"Jason Stutz","type":"Person","_key":"38559"} +{"label":"Tim Hamaguchi","version":19,"id":"63816","lastModified":"1301902264000","name":"Tim Hamaguchi","type":"Person","_key":"38560"} +{"label":"Flight of the Navigator","description":"In Flight of the Navigator, 12-year old David Freeman (Joey Cramer) goes missing in 1978, only to reappear in 1986. In the eight years that have passed, David hasn't aged. It's no coincadence that at the time David comes back, a flying saucer is found. David also now possesses vast knowledge about the farthest reaches of the universe and is able to take the fantastic flying machine anywhere he desires...","id":"10122","runtime":86,"imdbId":"tt0091059","trailer":"http:\/\/www.youtube.com\/watch?v=2104","version":106,"lastModified":"1301901341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef5\/4d1282f85e73d6082e000ef5\/flight-of-the-navigator-mid.jpg","studio":"Walt Disney Pictures","genre":"Family","title":"Flight of the Navigator","releaseDate":523065600000,"language":"en","tagline":"Come along on the greatest adventure of the summer!","type":"Movie","_key":"38561"} +{"label":"Joey Cramer","version":23,"id":"63871","lastModified":"1301901112000","name":"Joey Cramer","type":"Person","_key":"38562"} +{"label":"Matt Adler","version":24,"id":"92623","lastModified":"1301901129000","name":"Matt Adler","type":"Person","_key":"38563"} +{"label":"Franz\u00f6sisch f\u00fcr Anf\u00e4nger","description":"\"French for Beginners\" tells the story of HENRIK, who takes part in a student exchange program with France. The only...","id":"10123","runtime":98,"imdbId":"tt0469233","homepage":"http:\/\/www.franzoesisch.film.de\/","version":81,"lastModified":"1301903473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/539\/4c5377607b9aa13d4c000539\/franzosisch-fur-anfanger-mid.jpg","genre":"Comedy","title":"Franz\u00f6sisch f\u00fcr Anf\u00e4nger","releaseDate":1149724800000,"language":"en","type":"Movie","_key":"38564"} +{"label":"Christian Ditter","version":25,"id":"63820","lastModified":"1301901681000","name":"Christian Ditter","type":"Person","_key":"38565"} +{"label":"Paula Schramm","version":19,"id":"39988","lastModified":"1301901770000","name":"Paula Schramm","type":"Person","_key":"38566"} +{"label":"Lennard Bertzbach","version":19,"id":"63835","lastModified":"1301901770000","name":"Lennard Bertzbach","type":"Person","_key":"38567"} +{"label":"Andreas Borcherding","version":19,"id":"38477","lastModified":"1301901937000","name":"Andreas Borcherding","type":"Person","_key":"38568"} +{"label":"\u00c9lodie Boll\u00e9e","version":19,"id":"63836","lastModified":"1301902308000","name":"\u00c9lodie Boll\u00e9e","type":"Person","_key":"38569"} +{"label":"Charlotte Baglan","version":19,"id":"63837","lastModified":"1301902308000","name":"Charlotte Baglan","type":"Person","_key":"38570"} +{"label":"Melina Borcherding","version":19,"id":"63840","lastModified":"1301902308000","name":"Melina Borcherding","type":"Person","_key":"38571"} +{"label":"Virginie Bonnier","version":19,"id":"63838","lastModified":"1301902308000","name":"Virginie Bonnier","type":"Person","_key":"38572"} +{"label":"Thadd\u00e4us Meilinger","version":20,"id":"63839","lastModified":"1301902308000","name":"Thadd\u00e4us Meilinger","type":"Person","_key":"38573"} +{"label":"Isabelle Cote","version":19,"id":"63841","lastModified":"1301902308000","name":"Isabelle Cote","type":"Person","_key":"38574"} +{"label":"Tom Bracquart","version":19,"id":"63843","lastModified":"1301902131000","name":"Tom Bracquart","type":"Person","_key":"38575"} +{"label":"Aur\u00e9lien Devers","version":19,"id":"63845","lastModified":"1301902308000","name":"Aur\u00e9lien Devers","type":"Person","_key":"38576"} +{"label":"Camille Brunet","version":19,"id":"63842","lastModified":"1301902308000","name":"Camille Brunet","type":"Person","_key":"38577"} +{"label":"Vanessa Kr\u00fcger","version":18,"id":"63848","lastModified":"1301902308000","name":"Vanessa Kr\u00fcger","type":"Person","_key":"38578"} +{"label":"Iason Konstantinou","version":19,"id":"63847","lastModified":"1301902308000","name":"Iason Konstantinou","type":"Person","_key":"38579"} +{"label":"Matila Malliarakis","version":19,"id":"63849","lastModified":"1301902308000","name":"Matila Malliarakis","type":"Person","_key":"38580"} +{"label":"\u00c9l\u00e9onore du Page","version":19,"id":"63846","lastModified":"1301902308000","name":"\u00c9l\u00e9onore du Page","type":"Person","_key":"38581"} +{"label":"G\u00e9rard Despouy","version":20,"id":"63821","lastModified":"1301902216000","name":"G\u00e9rard Despouy","type":"Person","_key":"38582"} +{"label":"Heartstopper","description":"Two hospitalized young people discover that things can get even worse when the dilapidated institution is stranded by a severe storm and a maniac stalks the corridors butchering the patients and staff.","id":"10124","runtime":92,"imdbId":"tt0485774","version":170,"lastModified":"1301903710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6e\/4d0642ea7b9aa11bc4002c6e\/heartstopper-mid.jpg","genre":"Horror","title":"Heartstopper","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"38583"} +{"label":"Nathan Stephenson","version":20,"id":"43296","lastModified":"1301901727000","name":"Nathan Stephenson","type":"Person","_key":"38584"} +{"label":"James Binkley","version":21,"id":"43279","lastModified":"1301901669000","name":"James Binkley","type":"Person","_key":"38585"} +{"label":"Meredith Henderson","version":20,"id":"43264","lastModified":"1301901776000","name":"Meredith Henderson","type":"Person","_key":"38586"} +{"label":"Michael Cram","version":20,"id":"63857","lastModified":"1301902135000","name":"Michael Cram","type":"Person","_key":"38587"} +{"label":"Lori Hallier","version":24,"id":"44203","lastModified":"1301902168000","name":"Lori Hallier","type":"Person","_key":"38588"} +{"label":"Laura DeCarteret","version":28,"id":"63858","lastModified":"1301901307000","name":"Laura DeCarteret","type":"Person","_key":"38589"} +{"label":"Wayne Flemming","version":19,"id":"63861","lastModified":"1301902264000","name":"Wayne Flemming","type":"Person","_key":"38590"} +{"label":"Scott Gibson","version":22,"id":"63859","lastModified":"1301902225000","name":"Scott Gibson","type":"Person","_key":"38591"} +{"label":"John Bayliss","version":20,"id":"63860","lastModified":"1301902308000","name":"John Bayliss","type":"Person","_key":"38592"} +{"label":"Christopher Cordell","version":19,"id":"43281","lastModified":"1301902087000","name":"Christopher Cordell","type":"Person","_key":"38593"} +{"label":"Drew Carnwath","version":20,"id":"63863","lastModified":"1301902264000","name":"Drew Carnwath","type":"Person","_key":"38594"} +{"label":"David Roche","version":19,"id":"63865","lastModified":"1301902264000","name":"David Roche","type":"Person","_key":"38595"} +{"label":"Amy Ciupak Lalonde","version":29,"id":"63864","lastModified":"1301901696000","name":"Amy Ciupak Lalonde","type":"Person","_key":"38596"} +{"label":"Celine Lepage","version":19,"id":"63862","lastModified":"1301902264000","name":"Celine Lepage","type":"Person","_key":"38597"} +{"label":"Geoff Scovell","version":19,"id":"63866","lastModified":"1301902264000","name":"Geoff Scovell","type":"Person","_key":"38598"} +{"label":"Kaleigh Nevin","version":19,"id":"43253","lastModified":"1301902087000","name":"Kaleigh Nevin","type":"Person","_key":"38599"} +{"label":"Kris Ryan","version":19,"id":"63867","lastModified":"1301902264000","name":"Kris Ryan","type":"Person","_key":"38600"} +{"label":"Fine mrtve djevojke","description":"Iva and Maria, a young lesbian pair, rent a favorable, nice dwelling in a less good area of Zagreb, Croatia. But unfortunately, included in the rent are the neighbors, the neighbors from hell. The curious landlady, foreigners flogging nationalists, an old man, who live with his dead wife and a man, who beat his wife regularly, are just one part of this neighbourhood. When one of the neighbors falls in love with Iva, the situation escalates - with the result of three dead people at the end.","id":"10125","runtime":77,"imdbId":"tt0329083","version":72,"lastModified":"1301904717000","genre":"Drama","title":"Fine mrtve djevojke","releaseDate":1086825600000,"language":"en","type":"Movie","_key":"38601"} +{"label":"Dalibor Matanic","version":23,"id":"63868","lastModified":"1301902003000","name":"Dalibor Matanic","type":"Person","_key":"38602"} +{"label":"Kresimir Mikic","version":21,"id":"63881","lastModified":"1301902150000","name":"Kresimir Mikic","type":"Person","_key":"38603"} +{"label":"Nina Violic","version":21,"id":"63879","lastModified":"1301902335000","name":"Nina Violic","type":"Person","_key":"38604"} +{"label":"Olga Pakalovic","version":21,"id":"63878","lastModified":"1301902335000","name":"Olga Pakalovic","type":"Person","_key":"38605"} +{"label":"Inge Apelt","version":21,"id":"63880","lastModified":"1301902335000","name":"Inge Apelt","type":"Person","_key":"38606"} +{"label":"Milan Strljic","version":21,"id":"63883","lastModified":"1301902335000","name":"Milan Strljic","type":"Person","_key":"38607"} +{"label":"Ivica Vidovic","version":22,"id":"63882","lastModified":"1301902335000","name":"Ivica Vidovic","type":"Person","_key":"38608"} +{"label":"Marina Poklepovic","version":21,"id":"63887","lastModified":"1301902335000","name":"Marina Poklepovic","type":"Person","_key":"38609"} +{"label":"Ilija Zovko","version":21,"id":"63889","lastModified":"1301902335000","name":"Ilija Zovko","type":"Person","_key":"38610"} +{"label":"Jadranka Djokic","version":23,"id":"63885","lastModified":"1301902335000","name":"Jadranka Djokic","type":"Person","_key":"38611"} +{"label":"Boris Miholjevic","version":21,"id":"63886","lastModified":"1301902335000","name":"Boris Miholjevic","type":"Person","_key":"38612"} +{"label":"Janko Rakos","version":21,"id":"63888","lastModified":"1301902335000","name":"Janko Rakos","type":"Person","_key":"38613"} +{"label":"Mirko Boman","version":21,"id":"63884","lastModified":"1301902335000","name":"Mirko Boman","type":"Person","_key":"38614"} +{"label":"Colors","description":"A confident young cop is shown the ropes by a veteran partner in the dangerous gang-controlled barrios of Los Angeles, where the gang culture is enforced by the colors the members wear. ","id":"10126","runtime":120,"imdbId":"tt0094894","version":154,"lastModified":"1301902297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c26\/4bc92c09017a3c57fe011c26\/colors-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"Colors","releaseDate":577065600000,"language":"en","tagline":"70,000 gang members. One million guns. Two cops.","type":"Movie","_key":"38615"} +{"label":"Critters 2: The Main Course","description":"A batch of unhatched critter eggs are mistaken for Easter eggs by the country-folk inhabitants of Grover's Bend and, before long, the ferocious furballs are on the rampage again.","id":"10127","runtime":93,"imdbId":"tt0094919","version":124,"lastModified":"1301902605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c34\/4bc92c0b017a3c57fe011c34\/critters-2-the-main-course-mid.jpg","genre":"Comedy","title":"Critters 2: The Main Course","releaseDate":578275200000,"language":"en","type":"Movie","_key":"38616"} +{"label":"Roxanne Kernohan","version":26,"id":"63902","lastModified":"1301901954000","name":"Roxanne Kernohan","type":"Person","_key":"38617"} +{"label":"Alien Nation","description":"A few years from now, Earth will have the first contact with an alien civilisation. These aliens, known as Newcomers...","id":"10128","runtime":91,"imdbId":"tt0094631","version":122,"lastModified":"1301903334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c45\/4bc92c0f017a3c57fe011c45\/alien-nation-mid.jpg","genre":"Crime","title":"Alien Nation","releaseDate":592185600000,"language":"en","type":"Movie","_key":"38618"} +{"label":"Leslie Bevis","version":20,"id":"63903","lastModified":"1301902365000","name":"Leslie Bevis","type":"Person","_key":"38619"} +{"label":"Herbstmilch","description":"No overview found.","id":"10129","runtime":111,"imdbId":"tt0095295","version":55,"lastModified":"1301904478000","genre":"Drama","title":"Herbstmilch","releaseDate":601171200000,"language":"en","type":"Movie","_key":"38620"} +{"label":"Ilona Mayer","version":20,"id":"63907","lastModified":"1301902200000","name":"Ilona Mayer","type":"Person","_key":"38621"} +{"label":"Gorillas in the Mist: The Story of Dian Fossey","description":"The story of Dian Fossey, a scientist who came to Africa to study the vanishing mountain gorillas, and later fought to protect them.","id":"10130","runtime":129,"imdbId":"tt0095243","version":94,"lastModified":"1301901823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4bc92c10017a3c57fe011c52\/gorillas-in-the-mist-the-story-of-dian-fossey-mid.jpg","genre":"Drama","title":"Gorillas in the Mist: The Story of Dian Fossey","releaseDate":590976000000,"language":"en","type":"Movie","_key":"38622"} +{"label":"John Omirah Miluwi","version":21,"id":"63910","lastModified":"1301902202000","name":"John Omirah Miluwi","type":"Person","_key":"38623"} +{"label":"Iain Cuthbertson","version":22,"id":"63911","lastModified":"1301901836000","name":"Iain Cuthbertson","type":"Person","_key":"38624"} +{"label":"A Nightmare on Elm Street 4: The Dream Master","description":"Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.","id":"10131","runtime":99,"imdbId":"tt0095742","trailer":"http:\/\/www.youtube.com\/watch?v=999","version":147,"lastModified":"1301901722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/015\/4c1d3a945e73d60bb2000015\/a-nightmare-on-elm-street-4-the-dream-master-mid.jpg","studio":"Heron Communications","genre":"Horror","title":"A Nightmare on Elm Street 4: The Dream Master","releaseDate":587952000000,"language":"en","tagline":"Terror Beyond Your Wildest Dreams.","type":"Movie","_key":"38625"} +{"label":"Tuesday Knight","version":22,"id":"63914","lastModified":"1301901766000","name":"Tuesday Knight","type":"Person","_key":"38626"} +{"label":"Ken Sagoes","version":23,"id":"63915","lastModified":"1301901638000","name":"Ken Sagoes","type":"Person","_key":"38627"} +{"label":"Rodney Eastman","version":22,"id":"63916","lastModified":"1301901933000","name":"Rodney Eastman","type":"Person","_key":"38628"} +{"label":"Lisa Wilcox","version":29,"id":"63917","lastModified":"1301942193000","name":"Lisa Wilcox","type":"Person","_key":"38629"} +{"label":"Andras Jones","version":24,"id":"63918","lastModified":"1301901934000","name":"Andras Jones","type":"Person","_key":"38630"} +{"label":"Danny Hassel","version":19,"id":"104275","lastModified":"1301902646000","name":"Danny Hassel","type":"Person","_key":"38631"} +{"label":"Brooke Theiss","version":19,"id":"104276","lastModified":"1301902646000","name":"Brooke Theiss","type":"Person","_key":"38632"} +{"label":"Toy Newkirk","version":19,"id":"104277","lastModified":"1301902646000","name":"Toy Newkirk","type":"Person","_key":"38633"} +{"label":"Nicholas Mele","version":24,"id":"87112","lastModified":"1301902917000","name":"Nicholas Mele","type":"Person","_key":"38634"} +{"label":"Brooke Bundy","version":22,"id":"72157","lastModified":"1301902127000","name":"Brooke Bundy","type":"Person","_key":"38635"} +{"label":"Hope Marie Carlton","version":23,"id":"98944","lastModified":"1301902707000","name":"Hope Marie Carlton","type":"Person","_key":"38636"} +{"label":"Linnea Quigley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4c8642067b9aa1545e000094\/linnea-quigley-profile.jpg","version":115,"id":"97619","lastModified":"1301901360000","name":"Linnea Quigley","type":"Person","_key":"38637"} +{"label":"Talk Radio","description":"A rude, contemptuous talk show host becomes overwhelmed by the hatred that surrounds his program just before it goes national.","id":"10132","runtime":110,"imdbId":"tt0096219","trailer":"http:\/\/www.youtube.com\/watch?v=M5E9RV9TyEo","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/talk-radio","version":146,"lastModified":"1301903163000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df9\/4be7c3b6017a3c35bb000df9\/talk-radio-mid.jpg","genre":"Drama","title":"Talk Radio","releaseDate":598665600000,"language":"en","tagline":"The last neighborhood in America.","type":"Movie","_key":"38638"} +{"label":"Cypher","description":"An unsuspecting, disenchanted man finds himself working as a spy in the dangerous, high-stakes world of corporate espionage. Quickly getting way over-his-head, he teams up with a mysterious femme fatale.","id":"10133","runtime":95,"imdbId":"tt0284978","trailer":"http:\/\/www.youtube.com\/watch?v=4td2af6Eqig","homepage":"http:\/\/www.miramax.com\/cypher\/","version":101,"lastModified":"1301902286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4d47776f5e73d65ee400104a\/cypher-mid.jpg","studio":"Pandora Cinema","genre":"Action","title":"Cypher","releaseDate":1034812800000,"language":"en","tagline":"Never forget who you are","type":"Movie","_key":"38639"} +{"label":"Cyborg","description":"A martial artist hunts a killer in a plague-infested urban dump of the future.","id":"10134","runtime":86,"imdbId":"tt0097138","trailer":"http:\/\/www.youtube.com\/watch?v=1476","version":160,"lastModified":"1301902238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c87\/4bc92c18017a3c57fe011c87\/cyborg-mid.jpg","studio":"Cannon Group","genre":"Action","title":"Cyborg","releaseDate":608774400000,"language":"en","type":"Movie","_key":"38640"} +{"label":"Deborah Richter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4c36ad307b9aa105f9000049\/deborah-richter-profile.jpg","version":22,"id":"63933","lastModified":"1301901410000","name":"Deborah Richter","type":"Person","_key":"38641"} +{"label":"Vincent Klyn","version":25,"id":"63934","lastModified":"1301901637000","name":"Vincent Klyn","type":"Person","_key":"38642"} +{"label":"Alex Daniels","version":20,"id":"63935","lastModified":"1301901393000","name":"Alex Daniels","type":"Person","_key":"38643"} +{"label":"Dayle Haddon","version":23,"id":"63936","lastModified":"1301901685000","name":"Dayle Haddon","type":"Person","_key":"38644"} +{"label":"Albert Pyun","version":51,"id":"63937","lastModified":"1301901348000","name":"Albert Pyun","type":"Person","_key":"38645"} +{"label":"Road House","description":"When it becomes too violent at the Double Deuce road house, the club owner hires Dalton, a professional \"cooler\" (head bouncer) to clean it up. But Dalton's early successes and budding romance with the local doctor enrages Wesley, the town crime boss. When Dalton continues to defy him, the stage is set for a dramatic confrontation that will test Dalton's limits and decide the fate of the town.","id":"10135","runtime":114,"imdbId":"tt0098206","trailer":"http:\/\/www.youtube.com\/watch?v=7Ikfz-S6Tjo","version":354,"lastModified":"1301902083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c94\/4bc92c19017a3c57fe011c94\/road-house-mid.jpg","genre":"Action","title":"Road House","releaseDate":611539200000,"language":"en","tagline":"Dalton lives like a loner, fights like a professional. And loves like there's no tomorrow.","type":"Movie","_key":"38646"} +{"label":"Marshall R. Teague","version":31,"id":"63941","lastModified":"1301901833000","name":"Marshall R. Teague","type":"Person","_key":"38647"} +{"label":"Julie Michaels","version":22,"id":"63942","lastModified":"1301901998000","name":"Julie Michaels","type":"Person","_key":"38648"} +{"label":"Sunshine Parker","version":23,"id":"79744","lastModified":"1301902067000","name":"Sunshine Parker","type":"Person","_key":"38649"} +{"label":"Travis McKenna","version":19,"id":"106359","lastModified":"1301902434000","name":"Travis McKenna","type":"Person","_key":"38650"} +{"label":"Roger Hewlett","version":23,"id":"129013","lastModified":"1301902401000","name":"Roger Hewlett","type":"Person","_key":"38651"} +{"label":"Rowdy Herrington","version":33,"id":"63943","lastModified":"1301901443000","name":"Rowdy Herrington","type":"Person","_key":"38652"} +{"label":"The Golden Child","description":"Eddie Murphy is a detective who lost children. He is told he is the 'Chosen one' who will find and protect the Golden Child, a Buddhist mystic who was kidnapped by a sorcerer.","id":"10136","runtime":89,"imdbId":"tt0091129","trailer":"http:\/\/www.youtube.com\/watch?v=nGumUFmmVBI","version":131,"lastModified":"1301901723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cac\/4bc92c1c017a3c57fe011cac\/the-golden-child-mid.jpg","genre":"Action","title":"The Golden Child","releaseDate":534729600000,"language":"en","type":"Movie","_key":"38653"} +{"label":"J.L. Reate","version":22,"id":"63951","lastModified":"1301901996000","name":"J.L. Reate","type":"Person","_key":"38654"} +{"label":"Stuart Little","description":"The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.","id":"10137","runtime":84,"imdbId":"tt0164912","trailer":"http:\/\/www.youtube.com\/watch?v=SOgtIi3qCJ0","version":172,"lastModified":"1301901724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cba\/4bc92c1f017a3c57fe011cba\/stuart-little-mid.jpg","studio":"Franklin%2FWaterman Productions","genre":"Action","title":"Stuart Little","releaseDate":944352000000,"language":"en","type":"Movie","_key":"38655"} +{"label":"Iron Man 2","description":"Wealthy inventor Tony Stark (Robert Downey Jr.) -- aka Iron Man -- resists calls by the American government to hand over his technology. Meanwhile, Ivan Vanko (Mickey Rourke) has constructed his own miniaturized arc reactor, causing all kinds of problems for our superhero. Sam Rockwell, Gwyneth Paltrow, Scarlett Johansson, Don Cheadle and Samuel L. Jackson co-star in director Jon Favreau's sequel based on Marvel comic book characters.","id":"10138","runtime":117,"imdbId":"tt1228705","trailer":"http:\/\/www.youtube.com\/watch?v=siQgD9qOhRs","homepage":"http:\/\/www.ironmanmovie.com\/","version":1099,"lastModified":"1301900757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf4\/4cf5e5325e73d62999000cf4\/iron-man-2-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Iron Man 2","releaseDate":1273190400000,"language":"en","tagline":"It's not the armor that make the hero, but the man inside.","type":"Movie","_key":"38656"} +{"label":"Olivia Munn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/101\/4bd5e7a2017a3c657e000101\/olivia-munn-profile.jpg","version":38,"id":"81364","lastModified":"1301901187000","name":"Olivia Munn","type":"Person","_key":"38657"} +{"label":"Helena Mattsson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4beb4117017a3c37a7000075\/helena-mattsson-profile.jpg","version":40,"birthday":"449445600000","id":"113676","birthplace":"Stockholm, Sweden","lastModified":"1301901146000","name":"Helena Mattsson","type":"Person","_key":"38658"} +{"label":"Milk","description":"The story of California's first openly gay elected official, Harvey Milk, a San Francisco supervisor.","id":"10139","runtime":128,"imdbId":"tt1013753","trailer":"http:\/\/www.youtube.com\/watch?v=1053","version":359,"lastModified":"1301907558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ee\/4c31e41a7b9aa166600002ee\/milk-mid.jpg","studio":"Focus Features","genre":"Drama","title":"Milk","releaseDate":1227657600000,"language":"en","tagline":"Never Blend In.","type":"Movie","_key":"38659"} +{"label":"The Chronicles of Narnia: The Voyage of the Dawn Treader","description":"This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.","id":"10140","runtime":115,"imdbId":"tt0980970","trailer":"http:\/\/www.youtube.com\/watch?v=wxfb1L-hMxU","version":552,"lastModified":"1302059735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/990\/4d7b41cc7b9aa11a0800c990\/the-chronicles-of-narnia-the-voyage-of-the-dawn-treader-mid.jpg","studio":"Fox 2000 Pictures","genre":"Adventure","title":"The Chronicles of Narnia: The Voyage of the Dawn Treader","releaseDate":1291939200000,"language":"en","tagline":"Return to magic. Return to hope. Return to Narnia.","type":"Movie","_key":"38660"} +{"label":"Will Poulter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b4\/4ce5b91d7b9aa168b30007b4\/will-poulter-profile.jpg","version":36,"id":"93491","lastModified":"1301904065000","name":"Will Poulter","type":"Person","_key":"38661"} +{"label":"Gary Sweet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/79f\/4ce5b93d7b9aa168b400079f\/gary-sweet-profile.jpg","version":41,"id":"75170","lastModified":"1301901425000","name":"Gary Sweet","type":"Person","_key":"38662"} +{"label":"Arthur Angel","version":31,"id":"107474","lastModified":"1301901349000","name":"Arthur Angel","type":"Person","_key":"38663"} +{"label":"Tony Nixon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4ce5b9c17b9aa179bc000120\/tony-nixon-profile.jpg","version":31,"id":"143270","lastModified":"1301901278000","name":"Tony Nixon","type":"Person","_key":"38664"} +{"label":"Colin Moody","version":31,"id":"143271","lastModified":"1301901285000","name":"Colin Moody","type":"Person","_key":"38665"} +{"label":"Dirty Rotten Scoundrels","description":"Lawrence and Freddie are con-men; big-time and small time respectively. They unsuccessfully attempt to work together only to find that this town (on the French Mediterranean coast) aint big enough for the two of them. They agree to a \"loser leaves\" bet. The bet brings out the best\/worse in the two.","id":"10141","runtime":110,"imdbId":"tt0095031","trailer":"http:\/\/www.youtube.com\/watch?v=lSC2U2yYESw","version":296,"lastModified":"1301902013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d68\/4bc92c40017a3c57fe011d68\/dirty-rotten-scoundrels-mid.jpg","genre":"Comedy","title":"Dirty Rotten Scoundrels","releaseDate":598060800000,"language":"en","tagline":"Nice guys finish last. Meet the winners.","type":"Movie","_key":"38666"} +{"label":"Casualties of War","description":"During the Vietnam War, a soldier finds himself the outsider of his own squad when they unnecessarily kidnap a female villager.","id":"10142","runtime":113,"imdbId":"tt0097027","version":412,"lastModified":"1301902753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d71\/4bc92c41017a3c57fe011d71\/casualties-of-war-mid.jpg","genre":"Action","title":"Casualties of War","releaseDate":619401600000,"language":"en","type":"Movie","_key":"38667"} +{"label":"Iron Man Collection","description":"After escaping from kidnappers using makeshift power armor, billionaire inventor and weapons maker turns his creation into a force for good by fighting crime.","id":"10143","version":306,"lastModified":"1301902872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b44\/4cc1e7927b9aa138da001b44\/iron-man-collection-mid.jpg","title":"Iron Man Collection","language":"en","type":"Movie","_key":"38668"} +{"label":"The Little Mermaid","description":"This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.","id":"10144","runtime":83,"imdbId":"tt0097757","trailer":"http:\/\/www.youtube.com\/watch?v=fUTpYsXKJHI","version":161,"lastModified":"1302063459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bc\/4d476a217b9aa103c80065bc\/the-little-mermaid-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Animation","title":"The Little Mermaid","releaseDate":627091200000,"language":"en","tagline":"Somewhere under the sea and beyond your imagination is an adventure in fantasy.","type":"Movie","_key":"38669"} +{"label":"Jodi Benson","version":43,"id":"63978","lastModified":"1302063458000","name":"Jodi Benson","type":"Person","_key":"38670"} +{"label":"The Forgotten","description":"Nine-year-old Sam Paretta is dead, killed in a plane crash. Even though it's been fourteen months since the accident, his mother Telly (Julianne Moore) still grieves over the loss. Suddenly her husband (Anthony Edwards) swears they never had a child and her psychiatrist (Gary Sinise) insists she's delusional. But worst of all, there is absolutely no evidence to prove Sam ever existed.","id":"10145","runtime":91,"imdbId":"tt0356618","version":168,"lastModified":"1301903615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfb\/4be717ff017a3c35c1000cfb\/the-forgotten-mid.jpg","genre":"Crime","title":"The Forgotten","releaseDate":1095984000000,"language":"en","type":"Movie","_key":"38671"} +{"label":"Christopher Kovaleski","version":24,"id":"63982","lastModified":"1301902034000","name":"Christopher Kovaleski","type":"Person","_key":"38672"} +{"label":"M\u00e4nner","description":"No overview found.","id":"10146","runtime":95,"imdbId":"tt0089656","version":64,"lastModified":"1301904702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4d73ff2e7b9aa16ad800128f\/m-nner-mid.jpg","genre":"Comedy","title":"M\u00e4nner","releaseDate":503798400000,"language":"en","type":"Movie","_key":"38673"} +{"label":"Bad Santa","description":"A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid, and the security boss discovers the plot.","id":"10147","runtime":91,"imdbId":"tt0307987","trailer":"http:\/\/www.youtube.com\/watch?v=jyurNrqSebk","version":163,"lastModified":"1301901625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db2\/4bc92c48017a3c57fe011db2\/bad-santa-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Bad Santa","releaseDate":1069804800000,"language":"en","tagline":"He doesn't care if you're naughty or nice.","type":"Movie","_key":"38674"} +{"label":"Brett Kelly","version":23,"id":"63992","lastModified":"1301901419000","name":"Brett Kelly","type":"Person","_key":"38675"} +{"label":"Keep Coming Back","description":"No overview found.","id":"10148","runtime":0,"imdbId":"tt0835802","version":53,"lastModified":"1301904472000","genre":"Drama","title":"Keep Coming Back","releaseDate":1309478400000,"language":"en","type":"Movie","_key":"38676"} +{"label":"Smoke","description":"A Brooklyn smoke shop is the center of neighborhood activity, and the stories of its customers. ","id":"10149","runtime":112,"imdbId":"tt0114478","version":148,"lastModified":"1301903442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd9\/4bc92c4d017a3c57fe011dd9\/smoke-mid.jpg","genre":"Comedy","title":"Smoke","releaseDate":802656000000,"language":"en","type":"Movie","_key":"38677"} +{"label":"The Last Unicorn","description":"A brave unicorn and a magician fight an evil king who is obsessed with attempting to capture the world's unicorns.","id":"10150","runtime":92,"imdbId":"tt0084237","version":160,"lastModified":"1301902233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dee\/4bc92c51017a3c57fe011dee\/the-last-unicorn-mid.jpg","studio":"HBO Sports","genre":"Animation","title":"The Last Unicorn","releaseDate":406512000000,"language":"en","type":"Movie","_key":"38678"} +{"label":"Tammy Grimes","version":23,"id":"63998","lastModified":"1301901585000","name":"Tammy Grimes","type":"Person","_key":"38679"} +{"label":"Snow White","description":"Die 21-j\u00e4hrige Nico (Julie Fournier), M\u00e4dchen aus reichem Haus, lebt in den Tag hiein und vertreibt sich ihre Freizeit mit Parties. Vordergr\u00fcndig frech und rotzig, ist Nico aber im Geheimen auf der Suche nach dem Sinn des Lebens. Bis zu dem Tag, als sie auf den Rapper Paco (Carlos Leal) trifft. Nico hasst es, alleine zu sein und liebt es, mit ihrer besten Freundin Wanda (Zo\u00e9 Miku) auszugehen. Um ihren ausschweifenden Lebensstil \u00fcberhaupt finanzieren zu k\u00f6nnen, findet es Nico gerade passend, mit ","id":"10151","runtime":113,"imdbId":"tt0434345","homepage":"http:\/\/www.snowwhite.ch","version":124,"lastModified":"1302042061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/891\/4d2752667b9aa134d3001891\/snow-white-mid.jpg","genre":"Drama","title":"Snow White","releaseDate":1123372800000,"language":"en","type":"Movie","_key":"38680"} +{"label":"Samir","version":23,"id":"64004","lastModified":"1301901532000","name":"Samir","type":"Person","_key":"38681"} +{"label":"Stefan Gubser","version":20,"id":"44460","lastModified":"1301902150000","name":"Stefan Gubser","type":"Person","_key":"38682"} +{"label":"Julie Fournier","version":23,"id":"64012","lastModified":"1301901649000","name":"Julie Fournier","type":"Person","_key":"38683"} +{"label":"Xaver Hutter","version":32,"id":"64015","lastModified":"1301901783000","name":"Xaver Hutter","type":"Person","_key":"38684"} +{"label":"Zo\u00e9 Mikuleczky","version":20,"id":"64013","lastModified":"1301902177000","name":"Zo\u00e9 Mikuleczky","type":"Person","_key":"38685"} +{"label":"Benedict Freitag","version":20,"id":"44446","lastModified":"1301901783000","name":"Benedict Freitag","type":"Person","_key":"38686"} +{"label":"Patrick Rapold","version":20,"id":"50175","lastModified":"1301902150000","name":"Patrick Rapold","type":"Person","_key":"38687"} +{"label":"Liliana Heimberg","version":20,"id":"64019","lastModified":"1301902150000","name":"Liliana Heimberg","type":"Person","_key":"38688"} +{"label":"Martin Rapold","version":23,"id":"64017","lastModified":"1301901564000","name":"Martin Rapold","type":"Person","_key":"38689"} +{"label":"Pascal Ulli","version":20,"id":"64016","lastModified":"1301902150000","name":"Pascal Ulli","type":"Person","_key":"38690"} +{"label":"Karin Pfammatter","version":20,"id":"64018","lastModified":"1301902150000","name":"Karin Pfammatter","type":"Person","_key":"38691"} +{"label":"Beatrice Kessler","version":23,"id":"64020","lastModified":"1301901954000","name":"Beatrice Kessler","type":"Person","_key":"38692"} +{"label":"Mathis K\u00fcnzler","version":20,"id":"64021","lastModified":"1301902150000","name":"Mathis K\u00fcnzler","type":"Person","_key":"38693"} +{"label":"Max Loong","version":20,"id":"64022","lastModified":"1301902150000","name":"Max Loong","type":"Person","_key":"38694"} +{"label":"Mike M\u00fcller","version":23,"id":"64023","lastModified":"1301902198000","name":"Mike M\u00fcller","type":"Person","_key":"38695"} +{"label":"Dumb and Dumberer: When Harry Met Lloyd","description":"This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.","id":"10152","runtime":85,"imdbId":"tt0329028","version":146,"lastModified":"1301903020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e00\/4bc92c52017a3c57fe011e00\/dumb-and-dumberer-when-harry-met-lloyd-mid.jpg","genre":"Comedy","title":"Dumb and Dumberer: When Harry Met Lloyd","releaseDate":1055462400000,"language":"en","tagline":"The evolution of dumb...","type":"Movie","_key":"38696"} +{"label":"Sphere","description":"The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft.They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.","id":"10153","runtime":134,"imdbId":"tt0120184","trailer":"http:\/\/www.youtube.com\/watch?v=OgGPsgj1qxo","version":217,"lastModified":"1302056047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ea\/4d1d860e5e73d66b300002ea\/sphere-mid.jpg","studio":"Baltimore Pictures","genre":"Drama","title":"Sphere","releaseDate":887328000000,"language":"en","tagline":"A thousand feet beneath the sea, the blackest holes are in the mind...","type":"Movie","_key":"38697"} +{"label":"Mickey Blue Eyes","description":"An English auctioneer proposes to the daughter of a mafia kingpin, only to realize that certain \"favors\" would be asked of him.","id":"10154","runtime":102,"imdbId":"tt0130121","version":154,"lastModified":"1301902195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1f\/4bc92c55017a3c57fe011e1f\/mickey-blue-eyes-mid.jpg","genre":"Comedy","title":"Mickey Blue Eyes","releaseDate":934848000000,"language":"en","type":"Movie","_key":"38698"} +{"label":"Kelly Makin","version":24,"id":"64030","lastModified":"1301901789000","name":"Kelly Makin","type":"Person","_key":"38699"} +{"label":"U-Turn","description":"When Bobby's car breaks down in the desert while on the run from some of the bookies who have already taken two of his fingers, he becomes trapped in the nearby small town where the people are stranger than anyone he's encountered. After becoming involved with a young married woman, her husband hires Bobby to kill her. Later, she hires Bobby to kill the husband.","id":"10155","runtime":125,"imdbId":"tt0120399","trailer":"http:\/\/www.youtube.com\/watch?v=1571","version":127,"lastModified":"1301902245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e28\/4bc92c58017a3c57fe011e28\/u-turn-mid.jpg","genre":"Drama","title":"U-Turn","releaseDate":852076800000,"language":"en","type":"Movie","_key":"38700"} +{"label":"History of the World: Part I","description":"Mel Brooks' uproarious version of history proves nothing is sacred as he takes us on a laugh-filled look at what really happened throughout time. His delirious romp features everything from a wild send-up of \"2001\" to the real stories behind the Roman Empire, the French Revolution and the Spanish Inquisition. It's Mel and company at their hilarious best. ","id":"10156","runtime":92,"imdbId":"tt0082517","trailer":"http:\/\/www.youtube.com\/watch?v=V5pABj8F68k","version":135,"lastModified":"1301902797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a38\/4d0e88237b9aa11770002a38\/history-of-the-world-part-i-mid.jpg","genre":"Comedy","title":"History of the World: Part I","releaseDate":361152000000,"language":"en","type":"Movie","_key":"38701"} +{"label":"Ron Carey","version":27,"id":"72680","lastModified":"1301901938000","name":"Ron Carey","type":"Person","_key":"38702"} +{"label":"Mary-Margaret Humes","version":25,"id":"71676","lastModified":"1301902309000","name":"Mary-Margaret Humes","type":"Person","_key":"38703"} +{"label":"Police Academy 2: Their First Assignment","description":"Mahoney and friends have graduated from the Police Academy and are issued with their first assignments. As before, their cheerfulness and devotion to duty outweighs any shortcomings, but are even they ready to do battle with a band graffiti daubing terrorists?","id":"10157","runtime":97,"imdbId":"tt0089822","trailer":"http:\/\/www.youtube.com\/watch?v=2Fs3W2Fqkds","version":109,"lastModified":"1301901726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4c\/4bc92c5a017a3c57fe011e4c\/police-academy-2-their-first-assignment-mid.jpg","genre":"Action","title":"Police Academy 2: Their First Assignment","releaseDate":480902400000,"language":"en","type":"Movie","_key":"38704"} +{"label":"White Men Can't Jump","description":"Billy and Sydney think they're the best basketball hustlers in town, so when they join forces, nothing can stop them, except each other. To add to their problems, Billy owes money and is being chased by a pair of gangster types","id":"10158","runtime":115,"imdbId":"tt0105812","version":165,"lastModified":"1301902237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5a\/4bc92c5c017a3c57fe011e5a\/white-men-can-t-jump-mid.jpg","genre":"Comedy","title":"White Men Can't Jump","releaseDate":701654400000,"language":"en","type":"Movie","_key":"38705"} +{"label":"The Rundown","description":"When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.","id":"10159","runtime":104,"imdbId":"tt0327850","trailer":"http:\/\/www.youtube.com\/watch?v=2-d1LJ66Nyw","homepage":"http:\/\/www.therundown.com\/","version":293,"lastModified":"1301901436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf4\/4d18eb1b5e73d6083e009cf4\/the-rundown-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Rundown","releaseDate":1064188800000,"language":"en","tagline":"Bulls, guns, whips, gold and one sacred cat.","type":"Movie","_key":"38706"} +{"label":"A Nightmare on Elm Street 5: The Dream Child","description":"Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?","id":"10160","runtime":89,"imdbId":"tt0097981","version":140,"lastModified":"1301901819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/112\/4c1d34685e73d607d1000112\/a-nightmare-on-elm-street-5-the-dream-child-mid.jpg","genre":"Horror","title":"A Nightmare on Elm Street 5: The Dream Child","releaseDate":618796800000,"language":"en","tagline":"Now Freddy\u2019s a daddy, he\u2019s killing for two.","type":"Movie","_key":"38707"} +{"label":"Erika Anderson","version":24,"id":"42882","lastModified":"1301901642000","name":"Erika Anderson","type":"Person","_key":"38708"} +{"label":"Valorie Armstrong","version":23,"id":"64033","lastModified":"1301901675000","name":"Valorie Armstrong","type":"Person","_key":"38709"} +{"label":"Michael Ashton","version":22,"id":"64034","lastModified":"1301902304000","name":"Michael Ashton","type":"Person","_key":"38710"} +{"label":"My Left Foot","description":"In this true story told through flashbacks, Christy Brown is born with crippling cerebral palsy into a poor, working-class Irish family. Able only to control movement in his left foot and to speak in guttural sounds, he is mistakenly believed to be retarded for the first ten years of his life. ","id":"10161","runtime":103,"imdbId":"tt0097937","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/my-left-foot","version":174,"lastModified":"1301903251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e99\/4bc92c66017a3c57fe011e99\/my-left-foot-mid.jpg","studio":"Ferndale Films","genre":"Drama","title":"My Left Foot","releaseDate":621648000000,"language":"en","type":"Movie","_key":"38711"} +{"label":"Alison Whelan","version":23,"id":"64039","lastModified":"1301901993000","name":"Alison Whelan","type":"Person","_key":"38712"} +{"label":"Declan Croghan","version":23,"id":"64041","lastModified":"1301901514000","name":"Declan Croghan","type":"Person","_key":"38713"} +{"label":"Marie Conmee","version":23,"id":"64042","lastModified":"1301901828000","name":"Marie Conmee","type":"Person","_key":"38714"} +{"label":"Waking Ned Devine","description":"Jackie and Michael find out someone in their tiny Irish village won the lottery. They find Ned, the winner of the ticket, had died of shock from winning. Since Ned has no next of kin, Jackie and Michael come up with a plan to claim the ticket. Things get complicated when the claim inspector shows up in person.","id":"10162","runtime":87,"imdbId":"tt0166396","trailer":"http:\/\/www.youtube.com\/watch?v=1199","version":239,"lastModified":"1301902616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea7\/4bc92c68017a3c57fe011ea7\/waking-ned-devine-mid.jpg","genre":"Comedy","title":"Waking Ned Devine","releaseDate":905817600000,"language":"en","type":"Movie","_key":"38715"} +{"label":"Kirk Jones","version":32,"id":"64045","lastModified":"1301901505000","name":"Kirk Jones","type":"Person","_key":"38716"} +{"label":"The Lawnmower Man","description":"A simple man is turned into a genius through the application of computer science.","id":"10163","runtime":141,"imdbId":"tt0104692","version":129,"lastModified":"1301907104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/812\/4d8886ad5e73d6750c000812\/the-lawnmower-man-mid.jpg","genre":"Horror","title":"The Lawnmower Man","releaseDate":699840000000,"language":"en","tagline":"God made him simple. Science made him a god.","type":"Movie","_key":"38717"} +{"label":"Jenny Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8af\/4d8a83967b9aa13ae70008af\/jenny-wright-profile.jpg","version":29,"id":"64056","lastModified":"1301901367000","name":"Jenny Wright","type":"Person","_key":"38718"} +{"label":"Cadillac Man","description":"No overview found.","id":"10164","runtime":97,"imdbId":"tt0099204","version":131,"lastModified":"1301903864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec6\/4bc92c6e017a3c57fe011ec6\/cadillac-man-mid.jpg","genre":"Comedy","title":"Cadillac Man","releaseDate":642988800000,"language":"en","type":"Movie","_key":"38719"} +{"label":"Fear and Desire","description":"A ficticious war in an unidentified country provides the setting for this drama. Four soldiers survive the crash-landing of their plane to find themselves in a forest six miles behind enemy lines. The group, led by Lt. Corby, has a plan: They'll make their way to a nearby river, build a raft, and then, under cover of night, float back to friendly territory. Their plans for getting back safely are sidetracked by a young woman who stumbles across them as they hide in the woods, and by the nearby p","id":"10165","runtime":72,"imdbId":"tt0045758","version":63,"lastModified":"1301903559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecf\/4bc92c6f017a3c57fe011ecf\/fear-and-desire-mid.jpg","genre":"Drama","title":"Fear and Desire","releaseDate":-528681600000,"language":"en","tagline":"Trapped... 4 Desperate Men and a Strange Half-Animal Girl! and the Story of French Prostitute... and The Male Brute","type":"Movie","_key":"38720"} +{"label":"The Witches","description":"A young boy stumbles onto a witch convention and must stop them, even after he has been turned into a mouse.","id":"10166","runtime":91,"imdbId":"tt0100944","version":104,"lastModified":"1301902367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7da\/4d518dab7b9aa13aba0107da\/the-witches-mid.jpg","genre":"Action","title":"The Witches","releaseDate":643593600000,"language":"en","tagline":"Saving the world from witches is a tall order for a boy they've turned into a mouse!","type":"Movie","_key":"38721"} +{"label":"Mai Zetterling","version":25,"id":"55156","lastModified":"1301901516000","name":"Mai Zetterling","type":"Person","_key":"38722"} +{"label":"Jasen Fisher","version":21,"id":"55157","lastModified":"1301901683000","name":"Jasen Fisher","type":"Person","_key":"38723"} +{"label":"Half Past Dead","description":"This movie tells the story of a man who goes undercover in a hi-tech prison to find out information to help prosecute those who killed his wife. While there he stumbles onto a plot involving a death-row inmate and his $200 million stash of gold.","id":"10167","runtime":98,"imdbId":"tt0297162","trailer":"http:\/\/www.youtube.com\/watch?v=1zc-HpDdXx4","version":214,"lastModified":"1301902083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/414\/4c59560c5e73d63a71000414\/half-past-dead-mid.jpg","genre":"Action","title":"Half Past Dead","releaseDate":1037318400000,"language":"en","type":"Movie","_key":"38724"} +{"label":"Don Michael Paul","version":33,"id":"27005","lastModified":"1301901783000","name":"Don Michael Paul","type":"Person","_key":"38725"} +{"label":"The Freshman","description":"Clark Kellogg is a young man starting his first year at film school in New York City. After a small time crook steals all his belongings, Clark meets Carmine \"Jimmy the Toucan\" Sabatini, an \"importer\" bearing a startling resemblance to a certain cinematic godfather. When Sabatini makes Clark an offer he can't refuse, he finds himself caught up in a caper involving endangered species and fine dining.","id":"10168","runtime":102,"imdbId":"tt0099615","version":146,"lastModified":"1301903040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4c4fb5e67b9aa136cf000048\/the-freshman-mid.jpg","genre":"Comedy","title":"The Freshman","releaseDate":648432000000,"language":"en","type":"Movie","_key":"38726"} +{"label":"Men at Work","description":"Two of garbage men find the body of a city councilman in a trash can on their route. With help from a supervisor, the duo must solve the case and find the man's killer while hiding the body from the cops.","id":"10169","runtime":98,"imdbId":"tt0100135","version":148,"lastModified":"1301902399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bcd78a5017a3c604b000063\/men-at-work-mid.jpg","genre":"Action","title":"Men at Work","releaseDate":651456000000,"language":"en","tagline":"Two garbagemen who know when something smells funny!","type":"Movie","_key":"38727"} +{"label":"Dean Cameron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/988\/4d477f505e73d65385003988\/dean-cameron-profile.jpg","version":34,"id":"64057","lastModified":"1301902023000","name":"Dean Cameron","type":"Person","_key":"38728"} +{"label":"The Russia House","description":"An expatriate British publisher unexpectedly finds himself working for British intelligence to investigate people in Russia.","id":"10170","runtime":122,"imdbId":"tt0100530","trailer":"http:\/\/www.youtube.com\/watch?v=l8lqnDPZfYQ","version":309,"lastModified":"1301903567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f41\/4bc92c7e017a3c57fe011f41\/the-russia-house-mid.jpg","genre":"Action","title":"The Russia House","releaseDate":661564800000,"language":"en","type":"Movie","_key":"38729"} +{"label":"Fred Schepisi","version":45,"id":"64061","lastModified":"1301901443000","name":"Fred Schepisi","type":"Person","_key":"38730"} +{"label":"Homo Faber","description":"No overview found.","id":"10171","runtime":117,"imdbId":"tt0102050","version":80,"lastModified":"1301902665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/679\/4c5c98585e73d63a6f000679\/homo-faber-mid.jpg","studio":"Bioskop Film","genre":"Drama","title":"Homo Faber","releaseDate":669513600000,"language":"en","type":"Movie","_key":"38731"} +{"label":"Dieter Kirchlechner","version":22,"id":"26519","lastModified":"1301901649000","name":"Dieter Kirchlechner","type":"Person","_key":"38732"} +{"label":"Traci Lind","version":30,"id":"64062","lastModified":"1301901954000","name":"Traci Lind","type":"Person","_key":"38733"} +{"label":"Are We Done Yet?","description":"Newlyweds Nick (Ice Cube) and Suzanne (Long) decide to move to the suburbs to provide a better life for their two kids. But their idea of a dream home is disturbed by a contractor (McGinley) with a bizarre approach to business.","id":"10172","runtime":92,"imdbId":"tt0422774","trailer":"http:\/\/www.youtube.com\/watch?v=1318","version":228,"lastModified":"1301902397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4e\/4bc92c7f017a3c57fe011f4e\/are-we-done-yet-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"Are We Done Yet?","releaseDate":1175644800000,"language":"en","type":"Movie","_key":"38734"} +{"label":"Aleisha Allen","version":21,"id":"64064","lastModified":"1301901584000","name":"Aleisha Allen","type":"Person","_key":"38735"} +{"label":"Philip Bolden","version":25,"id":"64066","lastModified":"1301901971000","name":"Philip Bolden","type":"Person","_key":"38736"} +{"label":"Marked for Death","description":"Just retired from the Drug Enforcement Agency, John Hatcher (Seagal) returns to his hometown and quickly discovers that drugs have infiltrated his old neighborhood. Determined to drive the dealers out , Hatcher crosses pathes with a ferocious Jamaican druglord who vowes that Hatcher and his family are now marked for death.","id":"10173","runtime":94,"imdbId":"tt0100114","version":213,"lastModified":"1301902024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4bc92c80017a3c57fe011f57\/marked-for-death-mid.jpg","genre":"Action","title":"Marked for Death","releaseDate":655948800000,"language":"en","type":"Movie","_key":"38737"} +{"label":"Madonna: Truth or Dare","description":"From the rain of Japan, through threats of arrest for 'public indecency' in Canada, and a birthday tribute to her father in Detroit, this documentary follows Madonna on her 1990 'Blond Ambition' concert tour. Filmed in black and white, with the concert pieces in glittering MTV color, it is an intimate look at the work of the music performer, from a prayer circle with the dancers before each performance to bed games with the dance troupe afterwards.","id":"10174","runtime":114,"imdbId":"tt0102370","homepage":"http:\/\/www.madonna.com","version":110,"lastModified":"1301902770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/543\/4d7d11687b9aa13f87001543\/madonna-truth-or-dare-mid.jpg","studio":"Miramax Films","genre":"Documentary","title":"Madonna: Truth or Dare","releaseDate":673833600000,"language":"en","type":"Movie","_key":"38738"} +{"label":"Mark Aldo Miceli","version":26,"id":"64073","lastModified":"1301901990000","name":"Mark Aldo Miceli","type":"Person","_key":"38739"} +{"label":"Donna DeLory","version":29,"id":"116152","lastModified":"1301902203000","name":"Donna DeLory","type":"Person","_key":"38740"} +{"label":"Niki Harris","version":27,"id":"116153","lastModified":"1301902520000","name":"Niki Harris","type":"Person","_key":"38741"} +{"label":"Luis Camacho","version":18,"id":"116154","lastModified":"1301902530000","name":"Luis Camacho","type":"Person","_key":"38742"} +{"label":"Tears of Kali","description":"No overview found.","id":"10175","runtime":106,"imdbId":"tt0408253","version":116,"lastModified":"1301904324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1db\/4bcced3f017a3c0f2a0001db\/tears-of-kali-mid.jpg","genre":"Fantasy","title":"Tears of Kali","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"38743"} +{"label":"Pietro Martellanza","version":21,"id":"64078","lastModified":"1301901953000","name":"Pietro Martellanza","type":"Person","_key":"38744"} +{"label":"Anja Gebel","version":21,"id":"64079","lastModified":"1301901953000","name":"Anja Gebel","type":"Person","_key":"38745"} +{"label":"Magdalena Ritter","version":20,"id":"64080","lastModified":"1301901782000","name":"Magdalena Ritter","type":"Person","_key":"38746"} +{"label":"Ludwig Nicole","version":20,"id":"64081","lastModified":"1301901953000","name":"Ludwig Nicole","type":"Person","_key":"38747"} +{"label":"Maunsell Gabriel","version":20,"id":"64082","lastModified":"1301902335000","name":"Maunsell Gabriel","type":"Person","_key":"38748"} +{"label":"Chole Micky","version":20,"id":"64083","lastModified":"1301902149000","name":"Chole Micky","type":"Person","_key":"38749"} +{"label":"The Quiet Earth","description":"After a top-secret experiment misfires, a scientist may be the only man left alive in the world. Zac wakes one morning to discover he is alone in the world. The global top-secret energy project which he has been working on for a year, has changed the world. Humanity seems to have been wiped out.","id":"10176","runtime":91,"imdbId":"tt0089869","version":115,"lastModified":"1301902731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbe\/4d80f3fb7b9aa12da6000fbe\/the-quiet-earth-mid.jpg","genre":"Drama","title":"The Quiet Earth","releaseDate":494985600000,"language":"en","type":"Movie","_key":"38750"} +{"label":"Bruno Lawrence","version":32,"id":"64091","lastModified":"1301902201000","name":"Bruno Lawrence","type":"Person","_key":"38751"} +{"label":"Alison Routledge","version":22,"id":"64092","lastModified":"1301902016000","name":"Alison Routledge","type":"Person","_key":"38752"} +{"label":"Anzac Wallace","version":22,"id":"64093","lastModified":"1301902005000","name":"Anzac Wallace","type":"Person","_key":"38753"} +{"label":"Norman Fletcher","version":22,"id":"64094","lastModified":"1301902197000","name":"Norman Fletcher","type":"Person","_key":"38754"} +{"label":"Tom Hyde","version":22,"id":"64095","lastModified":"1301902150000","name":"Tom Hyde","type":"Person","_key":"38755"} +{"label":"Evil Aliens","description":"The sensationalist reporter Michelle Fox presents the TV show Weird World, with phony matters about UFOS and aliens. When she hears about Cat, a young woman that claims that have been abducted with her boyfriend and become pregnant by aliens, she convinces her chief to travel with a team to the remote Welsh island of Scalled to interview Cat. She invites the cameraman Ricky Anderson with his sound technician partner; the nerd expert in \"ufology\" and \"ley lines\" Gavin Gorman; the actress Candy Vi","id":"10177","runtime":93,"imdbId":"tt0383353","version":167,"lastModified":"1301902090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f78\/4bc92c84017a3c57fe011f78\/evil-aliens-mid.jpg","genre":"Comedy","title":"Evil Aliens","releaseDate":1122768000000,"language":"en","type":"Movie","_key":"38756"} +{"label":"Christopher Adamson","version":29,"id":"64102","lastModified":"1301901782000","name":"Christopher Adamson","type":"Person","_key":"38757"} +{"label":"Emily Booth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bf\/4cf1d9375e73d61e3c0003bf\/emily-booth-profile.jpg","version":32,"id":"64103","lastModified":"1301901223000","name":"Emily Booth","type":"Person","_key":"38758"} +{"label":"Sam Butler","version":22,"id":"64104","lastModified":"1301902177000","name":"Sam Butler","type":"Person","_key":"38759"} +{"label":"Tree Carr","version":22,"id":"64105","lastModified":"1301902149000","name":"Tree Carr","type":"Person","_key":"38760"} +{"label":"Tim Daniel Clark","version":22,"id":"64106","lastModified":"1301902335000","name":"Tim Daniel Clark","type":"Person","_key":"38761"} +{"label":"Glenn Collier","version":22,"id":"64107","lastModified":"1301902335000","name":"Glenn Collier","type":"Person","_key":"38762"} +{"label":"Peter O'Connor","version":13,"id":"181414","lastModified":"1301903283000","name":"Peter O'Connor","type":"Person","_key":"38763"} +{"label":"Jake West","version":28,"id":"64108","lastModified":"1301901782000","name":"Jake West","type":"Person","_key":"38764"} +{"label":"The Caine Mutiny","description":"When a US Naval captain shows signs of mental instability that jeopardizes the ship, the first officer relieves him of command and faces court martial for mutiny.","id":"10178","runtime":124,"imdbId":"tt0046816","trailer":"http:\/\/www.youtube.com\/watch?v=YQJX0Hdpn8Y","version":144,"lastModified":"1301903022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f81\/4bc92c85017a3c57fe011f81\/the-caine-mutiny-mid.jpg","studio":"Stanley Kramer Productions","genre":"Drama","title":"The Caine Mutiny","releaseDate":-489888000000,"language":"en","tagline":"As big as the ocean!","type":"Movie","_key":"38765"} +{"label":"Robert Francis","version":22,"id":"64113","lastModified":"1301902150000","name":"Robert Francis","type":"Person","_key":"38766"} +{"label":"May Wynn","version":17,"id":"137993","lastModified":"1301902407000","name":"May Wynn","type":"Person","_key":"38767"} +{"label":"Arthur Franz","version":30,"birthday":"-1572829200000","id":"85940","birthplace":"Perth Amboy, New Jersey, USA","lastModified":"1301901506000","name":"Arthur Franz","type":"Person","_key":"38768"} +{"label":"Warner Anderson","version":29,"id":"89525","lastModified":"1301901560000","name":"Warner Anderson","type":"Person","_key":"38769"} +{"label":"Katherine Warren","version":23,"id":"89659","lastModified":"1301901940000","name":"Katherine Warren","type":"Person","_key":"38770"} +{"label":"The Ice Pirates","description":"The time is the distant future, where by far the most precious commodity in the galaxy is water. The last surviving water planet was somehow removed to the unreachable centre of the galaxy at the end of the galactic trade wars. The galaxy is ruled by an evil emperor (John Carradine) presiding over a trade oligarchy that controls all mining and sale of ice from asteroids and comets.","id":"10179","runtime":91,"imdbId":"tt0087451","trailer":"http:\/\/www.youtube.com\/watch?v=_0GTevGPLy0","version":135,"lastModified":"1301902166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8a\/4bc92c86017a3c57fe011f8a\/the-ice-pirates-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"The Ice Pirates","releaseDate":448243200000,"language":"en","tagline":"A totally SPACED adventure! ...You have to be there to see it.","type":"Movie","_key":"38771"} +{"label":"Robert Urich","version":27,"id":"64119","lastModified":"1302067670000","name":"Robert Urich","type":"Person","_key":"38772"} +{"label":"John Matuszak","version":22,"id":"64120","lastModified":"1301902264000","name":"John Matuszak","type":"Person","_key":"38773"} +{"label":"Natalie Core","version":21,"id":"119711","lastModified":"1301902895000","name":"Natalie Core","type":"Person","_key":"38774"} +{"label":"Jeremy West","version":21,"id":"119712","lastModified":"1301902895000","name":"Jeremy West","type":"Person","_key":"38775"} +{"label":"Bruce Vilanch","version":23,"id":"119713","lastModified":"1301902895000","name":"Bruce Vilanch","type":"Person","_key":"38776"} +{"label":"Alan Caillou","version":21,"id":"106052","lastModified":"1301903047000","name":"Alan Caillou","type":"Person","_key":"38777"} +{"label":"Marcia Lewis","version":21,"id":"119714","lastModified":"1301902895000","name":"Marcia Lewis","type":"Person","_key":"38778"} +{"label":"Daryl Keith Roach","version":21,"id":"119715","lastModified":"1301902895000","name":"Daryl Keith Roach","type":"Person","_key":"38779"} +{"label":"Rockne Tarkington","version":24,"id":"119717","lastModified":"1301903003000","name":"Rockne Tarkington","type":"Person","_key":"38780"} +{"label":"Dolores Albin","version":21,"id":"119718","lastModified":"1301902895000","name":"Dolores Albin","type":"Person","_key":"38781"} +{"label":"Blinkende Lygter","description":"Four small gangsters from Copenhagen trick a gangster boss: they take over 4,000,000 kroner which they were supposed to bring him. Trying to escape to Barcelona they are forced to stop in the countryside, in an old, wrecked house, hiding there for several weeks. Slowly, one after another, they realize, that they would like to stay there, start a new life.","id":"10180","runtime":109,"imdbId":"tt0236027","version":91,"lastModified":"1301904718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9c\/4bc92c88017a3c57fe011f9c\/blinkende-lygter-mid.jpg","genre":"Action","title":"Blinkende Lygter","releaseDate":973209600000,"language":"en","type":"Movie","_key":"38782"} +{"label":"S\u00f8ren Pilmark","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/39a\/4ca5be527b9aa16ed500039a\/sren-pilmark-profile.jpg","version":29,"id":"64122","lastModified":"1301901603000","name":"S\u00f8ren Pilmark","type":"Person","_key":"38783"} +{"label":"Frits Helmuth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4c1b35035e73d607ba000002\/frits-helmuth-profile.jpg","version":22,"id":"64123","lastModified":"1301902193000","name":"Frits Helmuth","type":"Person","_key":"38784"} +{"label":"Niels Anders Thorn","version":24,"id":"64124","lastModified":"1301902365000","name":"Niels Anders Thorn","type":"Person","_key":"38785"} +{"label":"Henning Jensen","version":22,"id":"64125","lastModified":"1301902203000","name":"Henning Jensen","type":"Person","_key":"38786"} +{"label":"Frozen River","description":"Ray Eddy, an upstate New York trailer mom, is lured into the world of illegal immigrant smuggling. Broke after her husband takes off with the down payment for their new doublewide, Ray reluctantly teams up with Lila, a smuggler, and the two begin making runs across the frozen St. Lawrence River carrying illegal Chinese and Pakistani immigrants in the trunk of Ray's Dodge Spirit. ","id":"10183","runtime":97,"imdbId":"tt0978759","homepage":"frozenriverthemovie.com","version":245,"lastModified":"1301903278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa5\/4bc92c89017a3c57fe011fa5\/frozen-river-mid.jpg","genre":"Drama","title":"Frozen River","releaseDate":1217548800000,"language":"en","type":"Movie","_key":"38787"} +{"label":"Courtney Hunt","version":27,"id":"64131","lastModified":"1301901582000","name":"Courtney Hunt","type":"Person","_key":"38788"} +{"label":"Misty Upham","version":26,"id":"64136","lastModified":"1301901706000","name":"Misty Upham","type":"Person","_key":"38789"} +{"label":"Charlie McDermott","version":33,"id":"64135","lastModified":"1301901512000","name":"Charlie McDermott","type":"Person","_key":"38790"} +{"label":"John Canoe","version":23,"id":"64132","lastModified":"1301901839000","name":"John Canoe","type":"Person","_key":"38791"} +{"label":"Jay Klaitz","version":23,"id":"64133","lastModified":"1301901675000","name":"Jay Klaitz","type":"Person","_key":"38792"} +{"label":"Dylan Carusona","version":23,"id":"64134","lastModified":"1301901683000","name":"Dylan Carusona","type":"Person","_key":"38793"} +{"label":"James Reilly","version":23,"id":"72859","lastModified":"1301901649000","name":"James Reilly","type":"Person","_key":"38794"} +{"label":"He's Just Not That Into You","description":"Remember that really cute guy who said he'd call...and didn't? Maybe he lost your number. Maybe he's in the hospital. Maybe he's awed by your beauty, brains or success. Or maybe He's Just Not That into You. An all-star cast - Ben Affleck, Jennifer Anniston, Drew Barrymore, Jennifer Connelly, Kevin Connoly, Bradley Cooper, Ginnifer Goodwin, Scarlett Johansson and Justin Long - looks for love and finds laughs in this savvy, sexy, right-now romcom. Based on the runaway (like some guys you kno","id":"10184","runtime":129,"imdbId":"tt1001508","trailer":"http:\/\/www.youtube.com\/watch?v=0IeXqvFR6HI","homepage":"http:\/\/www.hesjustnotthatintoyoumovie.com\/","version":269,"lastModified":"1301901508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc0\/4bc92c90017a3c57fe011fc0\/he-s-just-not-that-into-you-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"He's Just Not That Into You","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"38795"} +{"label":"Annie Ilonzeh","version":13,"id":"209196","lastModified":"1301903785000","name":"Annie Ilonzeh","type":"Person","_key":"38796"} +{"label":"The Midnight Meat Train","description":"The photographer Leon lives with his girlfriend and waitress Maya waiting for a chance to get in the photo business. When Maya contacts their friend Jurgis, he schedules a meeting for Leon with the successful owner of arts gallery Susan Hoff; she analyzes Leon's work and asks him to improve the quality of his photos. During the night, the upset Leon decides to wander on the streets taking pictures with his camera, and he follows three punks down to the subway station; when the gang attacks a you","id":"10185","runtime":98,"imdbId":"tt0805570","trailer":"http:\/\/www.youtube.com\/watch?v=GPFmtaZRdew","homepage":"http:\/\/www.midnightmeattrainthemovie.com","version":213,"lastModified":"1301901687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4bcc2f55017a3c0f340000a3\/the-midnight-meat-train-mid.jpg","studio":"GreeneStreet Films","genre":"Crime","title":"The Midnight Meat Train","releaseDate":1218067200000,"language":"en","tagline":"The most terrifying ride you'll ever take","type":"Movie","_key":"38797"} +{"label":"The Rocker","description":"Rob \"Fish\" Fishman is the drummer in '80s hair metal band Vesuvius. He's unceremoniously booted as the group signs a big record deal, is out of the music world for 20 years - and then receives a second chance with his nephew's band.","id":"10186","runtime":102,"imdbId":"tt1031969","trailer":"http:\/\/www.youtube.com\/watch?v=907","homepage":"http:\/\/www.rockermovie.com","version":295,"lastModified":"1301902246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4bc92c97017a3c57fe012005\/the-rocker-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"The Rocker","releaseDate":1213228800000,"language":"en","type":"Movie","_key":"38798"} +{"label":"Swing Vote","description":"In a remarkable turn of events, the result of the presidential election comes down to one man's vote.","id":"10187","runtime":120,"imdbId":"tt1027862","homepage":"swingvote.movies.go.com","version":274,"lastModified":"1301902262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/036\/4bc92c9e017a3c57fe012036\/swing-vote-mid.jpg","genre":"Comedy","title":"Swing Vote","releaseDate":1217548800000,"language":"en","type":"Movie","_key":"38799"} +{"label":"Joshua Michael Stern","version":24,"id":"64139","lastModified":"1301901953000","name":"Joshua Michael Stern","type":"Person","_key":"38800"} +{"label":"The Sisterhood of the Traveling Pants 2","description":"In \"Sisterhood of the Traveling Pants 2,\" based on Ann Brashares' best-selling series of novels, four young women continue the journey toward adulthood that began with \"The Sisterhood of the Traveling Pants.\" Now three years later, these lifelong friends embark on separate paths for their first year of college and the summer beyond, but remain in touch by sharing their experiences with each other ","id":"10188","runtime":117,"imdbId":"tt1018785","version":245,"lastModified":"1301903866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/044\/4bc92ca0017a3c57fe012044\/the-sisterhood-of-the-traveling-pants-2-mid.jpg","genre":"Adventure","title":"The Sisterhood of the Traveling Pants 2","releaseDate":1218153600000,"language":"en","type":"Movie","_key":"38801"} +{"label":"Sanaa Hamri","version":25,"id":"64140","lastModified":"1301901936000","name":"Sanaa Hamri","type":"Person","_key":"38802"} +{"label":"Pineapple Express","description":"A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder. ","id":"10189","runtime":111,"imdbId":"tt0910936","trailer":"http:\/\/www.youtube.com\/watch?v=wBSg5HOpXgs","homepage":"http:\/\/www.sonypictures.com\/movies\/pineappleexpress\/","version":520,"lastModified":"1301901095000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05e\/4bc92ca6017a3c57fe01205e\/pineapple-express-mid.jpg","studio":"Apatow Productions","genre":"Action","title":"Pineapple Express","releaseDate":1218153600000,"language":"en","tagline":"Put this in your pipe and smoke it.","type":"Movie","_key":"38803"} +{"label":"David Gordon Green","version":38,"id":"64141","lastModified":"1301901285000","name":"David Gordon Green","type":"Person","_key":"38804"} +{"label":"Adam Crosby","version":20,"id":"64144","lastModified":"1301901612000","name":"Adam Crosby","type":"Person","_key":"38805"} +{"label":"Brian Scannell","version":52,"id":"64143","lastModified":"1301901238000","name":"Brian Scannell","type":"Person","_key":"38806"} +{"label":"Craig Robinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d9\/4c4d4e7b7b9aa123810002d9\/craig-robinson-profile.jpg","version":68,"id":"64342","lastModified":"1302071964000","name":"Craig Robinson","type":"Person","_key":"38807"} +{"label":"Arthur Napiontek","version":20,"id":"82179","lastModified":"1301902087000","name":"Arthur Napiontek","type":"Person","_key":"38808"} +{"label":"Towelhead","description":"A young Arab-American girl struggles with her sexual obsession, a bigoted Army reservist and her strict father during the Gulf War.","id":"10190","runtime":124,"imdbId":"tt0787523","homepage":"http:\/\/wip.warnerbros.com\/towelhead\/","version":205,"lastModified":"1301902651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4d5d99115e73d60c6500148f\/towelhead-mid.jpg","studio":"Warner Independent Pictures","genre":"Drama","title":"Towelhead","releaseDate":1189296000000,"language":"en","type":"Movie","_key":"38809"} +{"label":"Alan Ball","version":24,"id":"2152","lastModified":"1299492728000","name":"Alan Ball","type":"Person","_key":"38810"} +{"label":"Eugene Jones III","version":18,"id":"64145","lastModified":"1301902393000","name":"Eugene Jones III","type":"Person","_key":"38811"} +{"label":"Randy J. Goodwin","version":20,"id":"64146","lastModified":"1301901953000","name":"Randy J. Goodwin","type":"Person","_key":"38812"} +{"label":"Peter Macdissi","version":30,"id":"64147","lastModified":"1301901315000","name":"Peter Macdissi","type":"Person","_key":"38813"} +{"label":"Chase Ellison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04d\/4d2827cb7b9aa134d800204d\/chase-ellison-profile.jpg","version":37,"id":"64148","lastModified":"1301901575000","name":"Chase Ellison","type":"Person","_key":"38814"} +{"label":"Summer Bishil","version":24,"id":"73336","lastModified":"1301901523000","name":"Summer Bishil","type":"Person","_key":"38815"} +{"label":"How to Train Your Dragon","description":"As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: He must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it. So, he befriends the beast -- which he names Toothless -- much to the chagrin of his warrior father","id":"10191","runtime":98,"imdbId":"tt0892769","trailer":"http:\/\/www.youtube.com\/watch?v=qHUhygdAZIw","homepage":"http:\/\/www.howtotrainyourdragon.com\/","version":568,"lastModified":"1301900778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/444\/4cf9ca035e73d6299c002444\/how-to-train-your-dragon-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"How to Train Your Dragon","releaseDate":1269561600000,"language":"en","tagline":"We\u2019re lonely, so, let\u2019s be lonely together.","type":"Movie","_key":"38816"} +{"label":"Dean DeBlois","version":64,"id":"69797","lastModified":"1302063493000","name":"Dean DeBlois","type":"Person","_key":"38817"} +{"label":"Chris Sanders","version":81,"id":"66193","lastModified":"1302063492000","name":"Chris Sanders","type":"Person","_key":"38818"} +{"label":"Robin Atkin Downes","version":33,"id":"130081","lastModified":"1301901495000","name":"Robin Atkin Downes","type":"Person","_key":"38819"} +{"label":"Philip McGrade","version":32,"id":"138619","lastModified":"1301901232000","name":"Philip McGrade","type":"Person","_key":"38820"} +{"label":"Kieron Elliott","version":32,"id":"138620","lastModified":"1301901232000","name":"Kieron Elliott","type":"Person","_key":"38821"} +{"label":"David Tennant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/816\/4be315e5017a3c35b5000816\/david-tennant-profile.jpg","version":81,"birthday":"40777200000","id":"20049","birthplace":"Bathgate, West Lothian, Scotland","lastModified":"1301901197000","name":"David Tennant","type":"Person","_key":"38822"} +{"label":"Shrek Forever After","description":"A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away\u2014where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met\u2014he sets out to restore his world and reclaim his true love.","id":"10192","runtime":93,"imdbId":"tt0892791","trailer":"http:\/\/www.youtube.com\/watch?v=WV8bbMxPBdc","homepage":"http:\/\/www.shrekforeverafter.com\/","version":548,"lastModified":"1302050481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/053\/4cee26b55e73d65313000053\/shrek-forever-after-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Shrek Forever After","releaseDate":1274400000000,"language":"en","tagline":"It ain't Ogre... Til it's Ogre","type":"Movie","_key":"38823"} +{"label":"Mike Mitchell","version":58,"id":"64151","lastModified":"1302050480000","name":"Mike Mitchell","type":"Person","_key":"38824"} +{"label":"Jon Hamm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e8\/4c43281f7b9aa145910002e8\/jon-hamm-profile.jpg","version":106,"id":"65717","lastModified":"1302050480000","name":"Jon Hamm","type":"Person","_key":"38825"} +{"label":"Walt Dohrn","version":37,"id":"118489","lastModified":"1302050480000","name":"Walt Dohrn","type":"Person","_key":"38826"} +{"label":"Kristen Schaal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d5e\/4cf5c9c35e73d6299a000d5e\/kristen-schaal-profile.jpg","version":54,"id":"109869","lastModified":"1302050481000","name":"Kristen Schaal","type":"Person","_key":"38827"} +{"label":"Meredith Vieira","version":35,"id":"118490","lastModified":"1302050481000","name":"Meredith Vieira","type":"Person","_key":"38828"} +{"label":"Toy Story 3","description":"Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.","id":"10193","runtime":103,"imdbId":"tt0435761","trailer":"http:\/\/www.youtube.com\/watch?v=TNMpa5yBf5o","homepage":"http:\/\/disney.go.com\/toystory\/","version":971,"lastModified":"1301900808000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/011\/4cdb8b335e73d605e6000011\/toy-story-3-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Toy Story 3","releaseDate":1276819200000,"language":"en","tagline":"No toy gets left behind.","type":"Movie","_key":"38829"} +{"label":"Toy Story Collection","description":"No overview found.","id":"10194","version":76,"lastModified":"1301902586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e6\/4d0891df7b9aa101d70002e6\/toy-story-collection-mid.jpg","title":"Toy Story Collection","language":"en","type":"Movie","_key":"38830"} +{"label":"Thor","description":"The epic adventure \"Thor\" spans the Marvel Universe from present day Earth to the realm of Asgard. At the center of the story is The Mighty Thor, a powerful but arrogant warrior whose reckless actions reignite an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.","id":"10195","imdbId":"tt0800369","trailer":"http:\/\/www.youtube.com\/watch?v=lKoN-dTaepA&hd","homepage":"http:\/\/thor.marvel.com\/","version":203,"lastModified":"1301901268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0de\/4d73cfb75e73d608820000de\/thor-mid.jpg","genre":"Action","title":"Thor","releaseDate":1304640000000,"language":"en","tagline":"Two worlds. One hero.","type":"Movie","_key":"38831"} +{"label":"Chris Hemsworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a47\/4bfd80ce017a3c7037000a47\/chris-hemsworth-profile.jpg","version":55,"birthday":"429400800000","id":"74568","lastModified":"1301904087000","name":"Chris Hemsworth","type":"Person","_key":"38832"} +{"label":"Tom Hiddleston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4de\/4cb2bdd97b9aa1263c0004de\/tom-hiddleston-profile.jpg","version":24,"id":"91606","lastModified":"1301902221000","name":"Tom Hiddleston","type":"Person","_key":"38833"} +{"label":"The Last Airbender","description":"The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations.","id":"10196","runtime":103,"imdbId":"tt0938283","trailer":"http:\/\/www.youtube.com\/watch?v=-egQ79OrYCs","homepage":"http:\/\/www.thelastairbendermovie.com\/","version":476,"lastModified":"1302017971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00a\/4d9b539a7b9aa164c600100a\/the-last-airbender-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Last Airbender","releaseDate":1278028800000,"language":"en","tagline":"Four nations, one destiny","type":"Movie","_key":"38834"} +{"label":"Noah Ringer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4ce4650c7b9aa168af000607\/noah-ringer-profile.jpg","version":32,"birthday":"848271600000","id":"88816","birthplace":"Dallas","lastModified":"1301904077000","name":"Noah Ringer","type":"Person","_key":"38835"} +{"label":"Jackson Rathbone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e9\/4ce466dc7b9aa168b40005e9\/jackson-rathbone-profile.jpg","version":86,"birthday":"472431600000","id":"84215","birthplace":"Singapore","lastModified":"1301904096000","name":"Jackson Rathbone","type":"Person","_key":"38836"} +{"label":"Dev Patel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d5\/4ce127b97b9aa168b10001d5\/dev-patel-profile.jpg","version":41,"id":"76788","lastModified":"1302075445000","name":"Dev Patel","type":"Person","_key":"38837"} +{"label":"Ben Cooke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6a\/4d276bc07b9aa134dc001a6a\/ben-cooke-profile.jpg","version":40,"id":"11354","lastModified":"1301901145000","name":"Ben Cooke","type":"Person","_key":"38838"} +{"label":"Nine","description":"Arrogant, self-centered movie director Guido Contini finds himself struggling to find meaning, purpose, and a script for his latest film endeavor. With only a week left before shooting begins, he desperately searches for answers and inspiration from his wife, his mistress, his muse, and his mother.","id":"10197","runtime":112,"imdbId":"tt0875034","trailer":"http:\/\/www.youtube.com\/watch?v=y_5_lzags3I","homepage":"http:\/\/nine-movie.com\/","version":309,"lastModified":"1301902076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/380\/4c962b157b9aa10d57000380\/nine-mid.jpg","studio":"SND","genre":"Comedy","title":"Nine","releaseDate":1261699200000,"language":"en","type":"Movie","_key":"38839"} +{"label":"Ricky Tognazzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c1c\/4cf277b95e73d61e3a000c1c\/ricky-tognazzi-profile.jpg","version":39,"id":"105114","lastModified":"1301901707000","name":"Ricky Tognazzi","type":"Person","_key":"38840"} +{"label":"Giuseppe Cederna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c49\/4cf277ef5e73d61e3e000c49\/giuseppe-cederna-profile.jpg","version":37,"id":"106350","lastModified":"1301902047000","name":"Giuseppe Cederna","type":"Person","_key":"38841"} +{"label":"Roberto Nobile","version":26,"id":"115609","lastModified":"1301901828000","name":"Roberto Nobile","type":"Person","_key":"38842"} +{"label":"The Princess and the Frog","description":"Down in New Orleans during the fabulous Jazz Age, young Princess Tiana searches for true love and comes face-to-face with snooty debutante Charlotte, ancient voodoo priestess Mama Odie and the evil Dr. Facilier. But with the help of her mother, a crooning alligator and other friends, Tiana's fairy-tale dreams may come true after all .","id":"10198","runtime":98,"imdbId":"tt0780521","trailer":"http:\/\/www.youtube.com\/watch?v=queJpV6P0W4","homepage":"http:\/\/disney.go.com\/disneypictures\/princessandthefrog\/","version":554,"lastModified":"1302057673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/228\/4d992d5e7b9aa15846001228\/the-princess-and-the-frog-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Princess and the Frog","releaseDate":1261699200000,"language":"en","type":"Movie","_key":"38843"} +{"label":"Bruno Campos","version":35,"id":"66252","lastModified":"1302004793000","name":"Bruno Campos","type":"Person","_key":"38844"} +{"label":"Michael-Leon Wooley","version":29,"id":"110884","lastModified":"1302004793000","name":"Michael-Leon Wooley","type":"Person","_key":"38845"} +{"label":"Jennifer Cody","version":29,"id":"110885","lastModified":"1302004793000","name":"Jennifer Cody","type":"Person","_key":"38846"} +{"label":"The Tale of Despereaux","description":"The tale of three unlikely heroes - a misfit mouse who prefers reading books to eating them, an unhappy rat who schemes to leave the darkness of the dungeon, and a bumbling servant girl with cauliflower ears - whose fates are intertwined with that of the castle's princess.","id":"10199","runtime":100,"imdbId":"tt0420238","trailer":"http:\/\/www.youtube.com\/watch?v=VhpN3obM5fc","homepage":"http:\/\/www.thetaleofdespereauxmovie.com\/","version":318,"lastModified":"1301906949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbb\/4d2940d95e73d626c4002cbb\/the-tale-of-despereaux-mid.jpg","studio":"Larger Than Life Productions","genre":"Action","title":"The Tale of Despereaux","releaseDate":1229644800000,"language":"en","tagline":"Small Mouse,Big Dreams","type":"Movie","_key":"38847"} +{"label":"Robert Stevenhagen","version":26,"id":"64152","lastModified":"1301901672000","name":"Robert Stevenhagen","type":"Person","_key":"38848"} +{"label":"Sam Fell","version":33,"id":"58897","lastModified":"1301901809000","name":"Sam Fell","type":"Person","_key":"38849"} +{"label":"The Day the Earth Stood Still","description":"A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.","id":"10200","runtime":103,"imdbId":"tt0970416","trailer":"http:\/\/www.youtube.com\/watch?v=797","version":307,"lastModified":"1301901380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4bc92cd8017a3c57fe0121a4\/the-day-the-earth-stood-still-mid.jpg","studio":"3 Arts Entertainment","genre":"Action","title":"The Day the Earth Stood Still","releaseDate":1228953600000,"language":"en","tagline":"12.12.08 is the Day the Earth Stood Still","type":"Movie","_key":"38850"} +{"label":"Shaine Jones","version":38,"id":"64153","lastModified":"1301901106000","name":"Shaine Jones","type":"Person","_key":"38851"} +{"label":"Yes Man","description":"Carl Allen is not going anywhere. His life changes when he went into a personal development program with a tagline; just say yes. The word 'yes' changes Carl's life. His work and love life was a given a boost. Soon he learns that saying yes to all that comes to his life may not be the best thing to do.","id":"10201","runtime":104,"imdbId":"tt1068680","trailer":"http:\/\/www.youtube.com\/watch?v=rvpsiIe2vBE","version":369,"lastModified":"1301901151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4bcddf96017a3c6b4500001f\/yes-man-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Comedy","title":"Yes Man","releaseDate":1229644800000,"language":"en","tagline":"The era of yes has begun.","type":"Movie","_key":"38852"} +{"label":"Rhys Darby","version":45,"id":"82666","lastModified":"1302071892000","name":"Rhys Darby","type":"Person","_key":"38853"} +{"label":"Sasha Alexander","version":36,"id":"64154","lastModified":"1302071892000","name":"Sasha Alexander","type":"Person","_key":"38854"} +{"label":"Danny Masterson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9a4\/4cf5788c5e73d6299e0009a4\/danny-masterson-profile.jpg","version":35,"id":"18972","lastModified":"1302071892000","name":"Danny Masterson","type":"Person","_key":"38855"} +{"label":"Bedtime Stories","description":"A family comedy about a hotel handyman whose life changes when the lavish bedtime stories he tells his niece and nephew start to magically come true.","id":"10202","runtime":99,"imdbId":"tt0960731","trailer":"http:\/\/www.youtube.com\/watch?v=dtxD0Hdi86M","version":317,"lastModified":"1301901364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/202\/4bc92ceb017a3c57fe012202\/bedtime-stories-mid.jpg","studio":"Gunn Films","genre":"Comedy","title":"Bedtime Stories","releaseDate":1230163200000,"language":"en","tagline":"Whatever they dream up... he has to survive.","type":"Movie","_key":"38856"} +{"label":"Mary Queen of Scots","description":"No overview found.","id":"10203","runtime":0,"version":50,"lastModified":"1301903873000","genre":"History","title":"Mary Queen of Scots","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"38857"} +{"label":"Around the World in 80 Days","description":"A bet pits a British inventor, a Chinese thief, and a French artist on a worldwide adventure that they can circle the globe in 80 days.","id":"10204","runtime":120,"imdbId":"tt0327437","version":185,"lastModified":"1301901653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fa\/4d98cf885e73d6225d0062fa\/around-the-world-in-80-days-mid.jpg","studio":"Walden Media","genre":"Action","title":"Around the World in 80 Days","releaseDate":1089676800000,"language":"en","tagline":"Let your imagination soar.","type":"Movie","_key":"38858"} +{"label":"Robert Fyfe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43c\/4ce1d7d45e73d60f6d00043c\/robert-fyfe-profile.jpg","version":23,"id":"64160","lastModified":"1301901849000","name":"Robert Fyfe","type":"Person","_key":"38859"} +{"label":"Cut","description":"No overview found.","id":"10205","runtime":82,"imdbId":"tt0189456","version":145,"lastModified":"1302021497000","genre":"Comedy","title":"Cut","releaseDate":951264000000,"language":"en","type":"Movie","_key":"38860"} +{"label":"Frank Roberts","version":22,"id":"64161","lastModified":"1301902205000","name":"Frank Roberts","type":"Person","_key":"38861"} +{"label":"Geoff Revell","version":24,"id":"64162","lastModified":"1301901953000","name":"Geoff Revell","type":"Person","_key":"38862"} +{"label":"Kimble Rendall","version":20,"id":"64163","lastModified":"1301902385000","name":"Kimble Rendall","type":"Person","_key":"38863"} +{"label":"Buffy the Vampire Slayer","description":"Blonde, bouncy Buffy (Kristy Swanson) is your typical high school cheerleader-- her goal is to \"marry Christian Slater and die\" and nothing gets in her way when it's time to shop. But all that changes when a strange man (Donald Sutherland) informs her she's been chosen by fate to kill vampires.","id":"10206","runtime":86,"imdbId":"tt0103893","trailer":"http:\/\/www.youtube.com\/watch?v=2869","version":90,"lastModified":"1301903890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bc92cf4017a3c57fe012243\/buffy-the-vampire-slayer-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Buffy the Vampire Slayer","releaseDate":712540800000,"language":"en","type":"Movie","_key":"38864"} +{"label":"Fran Rubel Kuzui","version":22,"id":"64170","lastModified":"1301901836000","name":"Fran Rubel Kuzui","type":"Person","_key":"38865"} +{"label":"Message in a Bottle","description":"A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.","id":"10207","runtime":131,"imdbId":"tt0139462","version":175,"lastModified":"1301920503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2a\/4d1a31d87b9aa11482004a2a\/message-in-a-bottle-mid.jpg","genre":"Drama","title":"Message in a Bottle","releaseDate":919641600000,"language":"en","type":"Movie","_key":"38866"} +{"label":"Muppets from Space","description":"When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.","id":"10208","runtime":87,"imdbId":"tt0158811","trailer":"http:\/\/www.youtube.com\/watch?v=chjDHnIGzfg","version":154,"lastModified":"1301902932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11d\/4d71a7707b9aa1752e00011d\/muppets-from-space-mid.jpg","studio":"Jim Henson Productions","genre":"Animation","title":"Muppets from Space","releaseDate":931910400000,"language":"en","tagline":"Space. It's not as deep as you think.","type":"Movie","_key":"38867"} +{"label":"Steve Whitmire","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/209\/4d861c787b9aa12edd003209\/steve-whitmire-profile.jpg","version":36,"id":"64180","lastModified":"1301901797000","name":"Steve Whitmire","type":"Person","_key":"38868"} +{"label":"Dave Goelz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/175\/4d861d517b9aa12ed4003175\/dave-goelz-profile.jpg","version":50,"id":"64181","lastModified":"1301901354000","name":"Dave Goelz","type":"Person","_key":"38869"} +{"label":"Bill Barretta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d9\/4d861dc87b9aa12ee10031d9\/bill-barretta-profile.jpg","version":27,"id":"64182","lastModified":"1301901782000","name":"Bill Barretta","type":"Person","_key":"38870"} +{"label":"Hideous Kinky","description":"In 1972, disenchanted about the dreary conventions of English life, 25-year-old Julia heads for Morocco with her daughters, six-year-old Lucy and precocious eight-year-old Bea.","id":"10209","runtime":98,"imdbId":"tt0136244","version":143,"lastModified":"1301902786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/262\/4bc92cf9017a3c57fe012262\/hideous-kinky-mid.jpg","genre":"Drama","title":"Hideous Kinky","releaseDate":918172800000,"language":"en","type":"Movie","_key":"38871"} +{"label":"Bella Riza","version":19,"id":"64173","lastModified":"1301902365000","name":"Bella Riza","type":"Person","_key":"38872"} +{"label":"Carrie Mullan","version":21,"id":"64174","lastModified":"1301902357000","name":"Carrie Mullan","type":"Person","_key":"38873"} +{"label":"A Midsummer Night's Dream","description":"Shakespeare's comedy about two couples in love with the wrong partners, and how they are finally brought together rightly, thanks in part to the bungling work of Puck. It is completely in the language of the Bard, with Pfeiffer as the Fairy Queen and Kline as the one turned into her evening's lover with donkey ears.","id":"10210","runtime":116,"imdbId":"tt0140379","trailer":"http:\/\/www.youtube.com\/watch?v=yfk3IO7sn5","version":247,"lastModified":"1301901815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d05\/4cfb9f9e5e73d6299a002d05\/a-midsummer-night-s-dream-mid.jpg","genre":"Comedy","title":"A Midsummer Night's Dream","releaseDate":924998400000,"language":"en","type":"Movie","_key":"38874"} +{"label":"Nachtgestalten","description":"No overview found.","id":"10211","runtime":101,"imdbId":"tt0136423","version":58,"lastModified":"1301904042000","genre":"Drama","title":"Nachtgestalten","releaseDate":934416000000,"language":"en","type":"Movie","_key":"38875"} +{"label":"Myriam Abbas","version":20,"id":"64187","lastModified":"1301902015000","name":"Myriam Abbas","type":"Person","_key":"38876"} +{"label":"Oliver Breite","version":20,"id":"46726","lastModified":"1301901993000","name":"Oliver Breite","type":"Person","_key":"38877"} +{"label":"Ravenous","description":"Captain John Boyd's promotion stations him at a fort where a rescued man tells a disturbing tale of cannibalism.","id":"10212","runtime":100,"imdbId":"tt0129332","version":259,"lastModified":"1302039532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/288\/4bc92cfb017a3c57fe012288\/ravenous-mid.jpg","genre":"Comedy","title":"Ravenous","releaseDate":921542400000,"language":"en","tagline":"You Are Who You Eat","type":"Movie","_key":"38878"} +{"label":"Joseph Runningfox","version":19,"id":"97058","lastModified":"1301902195000","name":"Joseph Runningfox","type":"Person","_key":"38879"} +{"label":"Antonia Bird","version":30,"id":"42617","lastModified":"1301901602000","name":"Antonia Bird","type":"Person","_key":"38880"} +{"label":"From Dusk Till Dawn 3: The Hangman's Daughter","description":"No overview found.","id":"10213","runtime":94,"imdbId":"tt0120695","version":138,"lastModified":"1301903063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/295\/4bc92cfd017a3c57fe012295\/from-dusk-till-dawn-3-the-hangman-s-daughter-mid.jpg","genre":"Action","title":"From Dusk Till Dawn 3: The Hangman's Daughter","releaseDate":948153600000,"language":"en","type":"Movie","_key":"38881"} +{"label":"Ara Celi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae4\/4d4c733c5e73d617b3001ae4\/ara-celi-profile.jpg","version":23,"id":"64189","lastModified":"1301902376000","name":"Ara Celi","type":"Person","_key":"38882"} +{"label":"P.J. Pesce","version":29,"id":"64190","lastModified":"1301901293000","name":"P.J. Pesce","type":"Person","_key":"38883"} +{"label":"The Son of the Mask","description":"Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.","id":"10214","runtime":94,"imdbId":"tt0362165","version":137,"lastModified":"1301902653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03d\/4c7dfccc7b9aa10d9800003d\/the-son-of-the-mask-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Action","title":"The Son of the Mask","releaseDate":1108684800000,"language":"en","type":"Movie","_key":"38884"} +{"label":"Traylor Howard","version":24,"id":"54826","lastModified":"1301901414000","name":"Traylor Howard","type":"Person","_key":"38885"} +{"label":"Lawrence Guterman","version":33,"id":"64191","lastModified":"1301901401000","name":"Lawrence Guterman","type":"Person","_key":"38886"} +{"label":"Sliding Doors","description":"A London woman's love life and career both hinge, unknown to her, on whether or not she catches a train. We see it both ways, in parallel.","id":"10215","runtime":99,"imdbId":"tt0120148","version":145,"lastModified":"1301903291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ab\/4bc92d01017a3c57fe0122ab\/sliding-doors-mid.jpg","genre":"Comedy","title":"Sliding Doors","releaseDate":893376000000,"language":"en","type":"Movie","_key":"38887"} +{"label":"Species II","description":"Mykelti Williamson and Justin Lazard are a pair of astronauts who make the first successful manned mission to Mars. Lazard's character gets infected by an alien and slowly begins to mutate. When they get back to Earth all he has on his mind is to have sex with Henstridge!","id":"10216","runtime":93,"imdbId":"tt0120841","version":188,"lastModified":"1301902622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4bc92d02017a3c57fe0122b8\/species-2-mid.jpg","genre":"Horror","title":"Species II","releaseDate":892166400000,"language":"en","type":"Movie","_key":"38888"} +{"label":"The Sweet Hereafter","description":"A small Canadian town is torn apart by the appearance of an ambulance-chasing lawyer after a tragic accident involving a school bus killed many of the town's children. One key witness, however, eludes the troubled attorney: a gifted young woman confined by the tragedy to a wheelchair for the rest of her life. A morality play without the sermon from EXOTICA auteur Egoyan, based on the acclaimed novel by Russell Banks. Winner of the Grand Jury award at the 1997 Cannes Film Festival. Academy Award ","id":"10217","runtime":112,"imdbId":"tt0120255","trailer":"http:\/\/www.youtube.com\/watch?v=F7w-dPZI_LY","version":174,"lastModified":"1301903020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cf\/4bc92d05017a3c57fe0122cf\/the-sweet-hereafter-mid.jpg","genre":"Drama","title":"The Sweet Hereafter","releaseDate":863568000000,"language":"en","type":"Movie","_key":"38889"} +{"label":"Caerthan Banks","version":14,"id":"213388","lastModified":"1301903135000","name":"Caerthan Banks","type":"Person","_key":"38890"} +{"label":"Tom McCamus","version":22,"id":"64712","lastModified":"1301901564000","name":"Tom McCamus","type":"Person","_key":"38891"} +{"label":"Stephanie Morgenstern","version":20,"id":"139862","lastModified":"1301902637000","name":"Stephanie Morgenstern","type":"Person","_key":"38892"} +{"label":"Swingers","description":"Wannabe actors become regulars in the stylish neo-lounge scene; Trent teaches his friend Mike the unwritten rules of the scene.","id":"10218","runtime":94,"imdbId":"tt0117802","version":146,"lastModified":"1301904061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/085\/4bd6df52017a3c21f6000085\/swingers-mid.jpg","genre":"Comedy","title":"Swingers","releaseDate":845596800000,"language":"en","type":"Movie","_key":"38893"} +{"label":"Patrick Van Horn","version":21,"id":"64715","lastModified":"1301902179000","name":"Patrick Van Horn","type":"Person","_key":"38894"} +{"label":"Snow Falling on Cedars","description":"A Japanese-American fisherman may have killed his neighbor Carl at sea. In the 1950's, race figures in the trial. So does reporter Ishmael.","id":"10219","runtime":127,"imdbId":"tt0120834","version":180,"lastModified":"1301907636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f0\/4bc92d08017a3c57fe0122f0\/snow-falling-on-cedars-mid.jpg","genre":"Drama","title":"Snow Falling on Cedars","releaseDate":937094400000,"language":"en","type":"Movie","_key":"38895"} +{"label":"Reeve Carney","version":25,"id":"64710","lastModified":"1301901837000","name":"Reeve Carney","type":"Person","_key":"38896"} +{"label":"Rounders","description":"A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.","id":"10220","runtime":121,"imdbId":"tt0128442","trailer":"http:\/\/www.youtube.com\/watch?v=bPvILCgCgzw","version":242,"lastModified":"1301902752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/301\/4bc92d0c017a3c57fe012301\/rounders-mid.jpg","studio":"Spanky Pictures","genre":"Drama","title":"Rounders","releaseDate":905472000000,"language":"en","type":"Movie","_key":"38897"} +{"label":"Solo f\u00fcr Klarinette","description":"No overview found.","id":"10221","runtime":93,"imdbId":"tt0140558","version":36,"lastModified":"1301906161000","genre":"Drama","title":"Solo f\u00fcr Klarinette","releaseDate":908409600000,"language":"en","type":"Movie","_key":"38898"} +{"label":"Kickboxer","description":"If your enemy refusesito be humbled... Destroy him.\r\n\r\nAccompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge. After a crash cours","id":"10222","runtime":105,"imdbId":"tt0097659","trailer":"http:\/\/www.youtube.com\/watch?v=1671","version":210,"lastModified":"1301902023000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/312\/4bc92d0e017a3c57fe012312\/kickboxer-mid.jpg","genre":"Action","title":"Kickboxer","releaseDate":609033600000,"language":"en","type":"Movie","_key":"38899"} +{"label":"Dennis Alexio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/58d\/4d7233c67b9aa16f9800058d\/dennis-alexio-profile.jpg","version":23,"id":"64655","lastModified":"1301901556000","name":"Dennis Alexio","type":"Person","_key":"38900"} +{"label":"Dennis Chan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03e\/4d7233497b9aa1775600003e\/dennis-chan-profile.jpg","version":27,"id":"64662","lastModified":"1301901491000","name":"Dennis Chan","type":"Person","_key":"38901"} +{"label":"Mark DiSalle","version":37,"id":"64681","lastModified":"1301901774000","name":"Mark DiSalle","type":"Person","_key":"38902"} +{"label":"David Worth","version":33,"id":"22012","lastModified":"1301901333000","name":"David Worth","type":"Person","_key":"38903"} +{"label":"A Simple Plan","description":"Captivated by the lure of sudden wealth, the quiet rural lives of two brothers erupt into conflicts of greed, paranoia and distrust when over $4 million in cash is discovered at the remote site of a downed small airplane. Their simple plan to retain the money while avoiding detection opens a Pandora's box when the fear of getting caught triggers panicked behavior and leads to virulent consequences","id":"10223","runtime":121,"imdbId":"tt0120324","version":133,"lastModified":"1301903521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32a\/4bc92d0f017a3c57fe01232a\/a-simple-plan-mid.jpg","studio":"Mutual Film Company","genre":"Suspense","title":"A Simple Plan","releaseDate":913334400000,"language":"en","type":"Movie","_key":"38904"} +{"label":"Straight Shooter","description":"No overview found.","id":"10224","runtime":88,"imdbId":"tt0169272","version":69,"lastModified":"1301904015000","genre":"Drama","title":"Straight Shooter","releaseDate":924134400000,"language":"en","type":"Movie","_key":"38905"} +{"label":"Thomas Bohn","version":21,"id":"36465","lastModified":"1301901784000","name":"Thomas Bohn","type":"Person","_key":"38906"} +{"label":"Friday the 13th Part VI: Jason Lives","description":"As a child, Tommy killed Jason Voorhees, the demented serial killer whose exploits landed many a corpse at the bottom of Crystal Lake. Years later, Tommy is losing sleep over a nagging question: Is Jason really dead? When Tommy and a friend visit the cemetery to dig up the murderer's grave, they find a well-rested Jason ready to spill blood again.","id":"10225","runtime":86,"imdbId":"tt0091080","version":309,"lastModified":"1301978427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/345\/4bc92d13017a3c57fe012345\/friday-the-13th-part-vi-jason-lives-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"Friday the 13th Part VI: Jason Lives","releaseDate":523238400000,"language":"en","tagline":"Kill or be killed!","type":"Movie","_key":"38907"} +{"label":"Thom Mathews","version":36,"id":"64198","lastModified":"1301901494000","name":"Thom Mathews","type":"Person","_key":"38908"} +{"label":"Jennifer Cooke","version":20,"id":"64199","lastModified":"1301902301000","name":"Jennifer Cooke","type":"Person","_key":"38909"} +{"label":"David Kagen","version":20,"id":"64200","lastModified":"1301901927000","name":"David Kagen","type":"Person","_key":"38910"} +{"label":"Ren\u00e9e Jones","version":20,"id":"64201","lastModified":"1301901927000","name":"Ren\u00e9e Jones","type":"Person","_key":"38911"} +{"label":"Tom Fridley","version":20,"id":"64202","lastModified":"1301902301000","name":"Tom Fridley","type":"Person","_key":"38912"} +{"label":"C.J. Graham","version":18,"id":"64203","lastModified":"1301902124000","name":"C.J. Graham","type":"Person","_key":"38913"} +{"label":"High Tension","description":"French college students, Marie and Alex, go to Alex's farmhouse to study for their exams without distractions. While settling in, a man breaks into the home and brutally murders Alex's family while Marie tries to hide herself. When the killer kidnaps Alex, Marie follows him, attempting to save her friend.","id":"10226","runtime":91,"imdbId":"tt0338095","version":163,"lastModified":"1301902720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/357\/4bc92d16017a3c57fe012357\/haute-tension-mid.jpg","genre":"Horror","title":"High Tension","releaseDate":1055894400000,"language":"en","tagline":"Hearts will bleed.","type":"Movie","_key":"38914"} +{"label":"Ma\u00efwenn Le Besco","version":26,"id":"64210","lastModified":"1301901762000","name":"Ma\u00efwenn Le Besco","type":"Person","_key":"38915"} +{"label":"Franck Khalfoun","version":24,"id":"64211","lastModified":"1301901255000","name":"Franck Khalfoun","type":"Person","_key":"38916"} +{"label":"Playtime","description":"Jacques Tati\u2019s gloriously choreographed, nearly wordless comedies about confusion in the age of technology reached their creative apex with Playtime, a lasting testament to a modern age tiptoeing on the edge of oblivion.","id":"10227","runtime":124,"imdbId":"tt0062136","version":160,"lastModified":"1301903830000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/365\/4bc92d17017a3c57fe012365\/playtime-mid.jpg","genre":"Comedy","title":"Playtime","releaseDate":-64540800000,"language":"en","type":"Movie","_key":"38917"} +{"label":"Barbara Dennek","version":23,"id":"67960","lastModified":"1301901993000","name":"Barbara Dennek","type":"Person","_key":"38918"} +{"label":"Pok\u00e9mon: The First Movie","description":"The adventure explodes into action with the debut of Mewtwo, a bio-engineered Pokemon created from the DNA of Mew, the rarest of all Pokemon. Determined to prove its superiority, Mewtwo lures Ash, Pikachu and others into a Pokemon match like none before. Mewtwo vs. Mew. Super-clones vs. Pokemon. It's the ultimate showdown ... with the very future of the world at stake!","id":"10228","runtime":75,"imdbId":"tt0190641","version":61,"lastModified":"1301902731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36e\/4bc92d17017a3c57fe01236e\/pokemon-mewtwo-strikes-back-mid.jpg","genre":"Animation","title":"Pok\u00e9mon: The First Movie","releaseDate":941846400000,"language":"en","type":"Movie","_key":"38919"} +{"label":"Rica Matsumoto","version":33,"id":"65424","lastModified":"1301901847000","name":"Rica Matsumoto","type":"Person","_key":"38920"} +{"label":"Mayumi Iizuka","version":25,"id":"65426","lastModified":"1301902149000","name":"Mayumi Iizuka","type":"Person","_key":"38921"} +{"label":"Y\u016bji Ueda","version":19,"id":"65427","lastModified":"1301902177000","name":"Y\u016bji Ueda","type":"Person","_key":"38922"} +{"label":"Ikue Ootani","version":44,"id":"73044","lastModified":"1301902353000","name":"Ikue Ootani","type":"Person","_key":"38923"} +{"label":"Michael Haigney","version":32,"id":"65428","lastModified":"1301902194000","name":"Michael Haigney","type":"Person","_key":"38924"} +{"label":"Kunihiko Yuyama","version":45,"id":"65429","lastModified":"1301902022000","name":"Kunihiko Yuyama","type":"Person","_key":"38925"} +{"label":"A Walk to Remember","description":"When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a \"to-do\" list for her life and also a very big secret she must keep from Landon. ","id":"10229","runtime":102,"imdbId":"tt0281358","trailer":"http:\/\/www.youtube.com\/watch?v=zZweRchCNok","version":197,"lastModified":"1301941877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4cf9f1255e73d6299b00251a\/a-walk-to-remember-mid.jpg","studio":"DiNovi Pictures","genre":"Drama","title":"A Walk to Remember","releaseDate":1011744000000,"language":"en","tagline":"She didn't belong. She was misunderstood. And she would change him forever.","type":"Movie","_key":"38926"} +{"label":"Foxfire","description":"No overview found.","id":"10231","runtime":87,"imdbId":"tt0048091","version":134,"lastModified":"1301907403000","title":"Foxfire","releaseDate":-454723200000,"language":"en","type":"Movie","_key":"38927"} +{"label":"Dan Duryea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/201\/4bd5a937017a3c2e75000201\/dan-duryea-profile.jpg","version":53,"id":"64212","lastModified":"1301901467000","name":"Dan Duryea","type":"Person","_key":"38928"} +{"label":"Schatten der Engel","description":"No overview found.","id":"10232","runtime":101,"imdbId":"tt0075169","version":41,"lastModified":"1301905332000","studio":"Albatros Produktion","genre":"Drama","title":"Schatten der Engel","releaseDate":191894400000,"language":"en","type":"Movie","_key":"38929"} +{"label":"Daniel Schmid","version":23,"id":"64219","lastModified":"1301902386000","name":"Daniel Schmid","type":"Person","_key":"38930"} +{"label":"Debria Kalpataru","version":20,"id":"64220","lastModified":"1301902359000","name":"Debria Kalpataru","type":"Person","_key":"38931"} +{"label":"The Innocent Man","description":"No overview found.","id":"10233","runtime":0,"imdbId":"tt0914376","version":52,"lastModified":"1301908411000","title":"The Innocent Man","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"38932"} +{"label":"Funny Games","description":"No overview found.","id":"10234","runtime":103,"imdbId":"tt0119167","version":263,"lastModified":"1301906238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11c\/4d62328c7b9aa1124300711c\/funny-games-mid.jpg","studio":"Funny Games","genre":"Drama","title":"Funny Games","releaseDate":863568000000,"language":"en","type":"Movie","_key":"38933"} +{"label":"Alexander Nevsky","description":"It is the 13th century, and Russia is overrun by foreign invaders. A Russian knyaz', or prince, Alexander Nevsky, rallies the people to form a ragtag army to drive back an invasion by the Teutonic knights. This is a true story based on the actual battle at a lake near Novgorod.","id":"10235","runtime":112,"imdbId":"tt0029850","version":85,"lastModified":"1301907306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/838\/4cce339b7b9aa16b9f000838\/aleksandr-nevskiy-mid.jpg","genre":"History","title":"Alexander Nevsky","releaseDate":-981504000000,"language":"en","type":"Movie","_key":"38934"} +{"label":"Nikolai Okhlopkov","version":20,"id":"67503","lastModified":"1301902199000","name":"Nikolai Okhlopkov","type":"Person","_key":"38935"} +{"label":"Andrei Abrikosov","version":20,"id":"67504","lastModified":"1301902159000","name":"Andrei Abrikosov","type":"Person","_key":"38936"} +{"label":"Dmitriy Orlov","version":18,"id":"67505","lastModified":"1301901964000","name":"Dmitriy Orlov","type":"Person","_key":"38937"} +{"label":"The Way We Were","description":"Two desperate people have a wonderful romance, but their political views and convictions drive them apart.","id":"10236","runtime":118,"imdbId":"tt0070903","version":178,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a5\/4bc92d1d017a3c57fe0123a5\/the-way-we-were-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"The Way We Were","releaseDate":119664000000,"language":"en","type":"Movie","_key":"38938"} +{"label":"The Honeymoon Killers","description":"Based on the true story of Raymond Fernandez and Martha Beck, who met through a lonely-hearts correspondence club, Ray is weedy, feral, and untrustworthy; Martha is enormous, compulsive, and needy. Together, they play out a horrifying scheme in which he lures lonely women out on dates and proposes marriage to them, with she pretending to be his sister. They take the women's savings and then murder them remorselessly. Dank, claustrophobic, and weirdly engrossing, this movie never quite gives in t","id":"10237","runtime":108,"imdbId":"tt0064437","version":100,"lastModified":"1301903601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/749\/4d993bca5e73d6225d006749\/the-honeymoon-killers-mid.jpg","genre":"Crime","title":"The Honeymoon Killers","releaseDate":2937600000,"language":"en","tagline":"Love is a bitch...called Martha.","type":"Movie","_key":"38939"} +{"label":"Leonard Kastle","version":23,"id":"64214","lastModified":"1301901649000","name":"Leonard Kastle","type":"Person","_key":"38940"} +{"label":"Shirley Stoler","version":27,"id":"67513","lastModified":"1301901841000","name":"Shirley Stoler","type":"Person","_key":"38941"} +{"label":"Kip McArdle","version":21,"id":"67514","lastModified":"1301902380000","name":"Kip McArdle","type":"Person","_key":"38942"} +{"label":"Marilyn Chris","version":21,"id":"67515","lastModified":"1301901995000","name":"Marilyn Chris","type":"Person","_key":"38943"} +{"label":"Mary Breen","version":21,"id":"67516","lastModified":"1301902173000","name":"Mary Breen","type":"Person","_key":"38944"} +{"label":"Cries and Whispers","description":"When a woman dying of cancer in turn-of-the century Sweden is visited by her two sisters, long repressed feelings between the siblings rise to the surface.","id":"10238","runtime":91,"imdbId":"tt0069467","version":74,"lastModified":"1301903372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10b\/4c034bae017a3c7e8f00010b\/viskningar-och-rop-mid.jpg","genre":"Drama","title":"Cries and Whispers","releaseDate":93744000000,"language":"en","type":"Movie","_key":"38945"} +{"label":"Kari Sylwan","version":22,"id":"67521","lastModified":"1301902387000","name":"Kari Sylwan","type":"Person","_key":"38946"} +{"label":"Autumn Tale","description":"Magali (B\u00e9atrice Romand), forty-something, is a winemaker and a widow: she loves her work but feels lonely. Her friends Rosine (Alexia Portal) and Isabelle (Marie Rivi\u00e8re) both want secretly to find a husband for Magali.","id":"10239","runtime":112,"imdbId":"tt0137439","version":109,"lastModified":"1301903537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36d\/4cff08045e73d6299d00536d\/conte-d-automne-mid.jpg","studio":"La Sept Cin\u00e9ma","genre":"Drama","title":"Autumn Tale","releaseDate":905126400000,"language":"en","type":"Movie","_key":"38947"} +{"label":"Didier Sandre","version":22,"id":"64215","lastModified":"1301901782000","name":"Didier Sandre","type":"Person","_key":"38948"} +{"label":"A Tale of Winter","description":"Felicie and Charles have a serious if whirlwind holiday romance.","id":"10241","runtime":114,"imdbId":"tt0104008","version":233,"lastModified":"1301904473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4cd49fd85e73d676d100006f\/conte-dhiver-mid.jpg","studio":"Les Films du Losange","genre":"Drama","title":"A Tale of Winter","releaseDate":696643200000,"language":"en","type":"Movie","_key":"38949"} +{"label":"Herv\u00e9 Furic","version":22,"id":"68058","lastModified":"1301901582000","name":"Herv\u00e9 Furic","type":"Person","_key":"38950"} +{"label":"Ava Loraschi","version":22,"id":"68059","lastModified":"1301901678000","name":"Ava Loraschi","type":"Person","_key":"38951"} +{"label":"What Ever Happened to Baby Jane?","description":"Two aging film actresses live as virtual recluses in an old Hollywood mansion. Jane Hudson, a successful child star, cares for her crippled sister Blanche, who's career in later years eclipsed that of Jane. Now the two live together, their relationship affected by simmering subconscious thoughts of mutual envy, hate and revenge.","id":"10242","runtime":135,"imdbId":"tt0056687","version":112,"lastModified":"1301902667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b6\/4bc92d1f017a3c57fe0123b6\/what-ever-happened-to-baby-jane-mid.jpg","genre":"Drama","title":"What Ever Happened to Baby Jane?","releaseDate":-226713600000,"language":"en","tagline":"Sister Sister, Oh So Fair! Why Is There Blood All Over Your Hair?","type":"Movie","_key":"38952"} +{"label":"Wesley Addy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d0\/4cc5776f7b9aa138d60022d0\/wesley-addy-profile.jpg","version":39,"id":"66712","lastModified":"1301901336000","name":"Wesley Addy","type":"Person","_key":"38953"} +{"label":"The Flight of the Phoenix","description":"A cargo plane goes down in a sandstorm in the Sahara with less than a dozen men on board. One of the passengers is an airplane designer who comes up with the idea of ripping off the undamaged wing and using it as the basis for an airplane they will build to escape before their food and water run out.","id":"10243","runtime":142,"imdbId":"tt0059183","trailer":"http:\/\/www.youtube.com\/watch?v=V0hIoLNecqI","version":122,"lastModified":"1301908429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c3\/4bc92d1f017a3c57fe0123c3\/the-flight-of-the-phoenix-mid.jpg","genre":"Disaster","title":"The Flight of the Phoenix","releaseDate":-127699200000,"language":"en","type":"Movie","_key":"38954"} +{"label":"G\u00f6tter der Pest","description":"No overview found.","id":"10244","runtime":91,"imdbId":"tt0065808","version":53,"lastModified":"1301907404000","studio":"Antiteater-X-Film","genre":"Drama","title":"G\u00f6tter der Pest","releaseDate":8035200000,"language":"en","type":"Movie","_key":"38955"} +{"label":"Carla Egerer","version":18,"id":"68116","lastModified":"1301902370000","name":"Carla Egerer","type":"Person","_key":"38956"} +{"label":"Yaak Karsunke","version":20,"id":"68117","lastModified":"1301902367000","name":"Yaak Karsunke","type":"Person","_key":"38957"} +{"label":"Micha Cochina","version":20,"id":"68118","lastModified":"1301902374000","name":"Micha Cochina","type":"Person","_key":"38958"} +{"label":"Marian Seidowsky","version":19,"id":"68120","lastModified":"1301902222000","name":"Marian Seidowsky","type":"Person","_key":"38959"} +{"label":"Jan George","version":22,"id":"68121","lastModified":"1301902208000","name":"Jan George","type":"Person","_key":"38960"} +{"label":"Porky's","description":"Set in 1954, a group of Florida high schoolers seek out to lose their virginity which leads them to seek revenge on a sleazy nightclub owner and his redneck sheriff brother for harassing them.","id":"10246","runtime":94,"imdbId":"tt0084522","trailer":"http:\/\/www.youtube.com\/watch?v=7-RwhYCtwAk","version":249,"lastModified":"1301903147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d0\/4bc92d23017a3c57fe0123d0\/porky-s-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Porky's","releaseDate":385344000000,"language":"en","type":"Movie","_key":"38961"} +{"label":"Dan Monahan","version":25,"id":"64221","lastModified":"1301901819000","name":"Dan Monahan","type":"Person","_key":"38962"} +{"label":"Mark Herrier","version":21,"id":"64222","lastModified":"1301902122000","name":"Mark Herrier","type":"Person","_key":"38963"} +{"label":"Wyatt Knight","version":21,"id":"64223","lastModified":"1301901993000","name":"Wyatt Knight","type":"Person","_key":"38964"} +{"label":"Cyril O'Reilly","version":28,"id":"64224","lastModified":"1301901676000","name":"Cyril O'Reilly","type":"Person","_key":"38965"} +{"label":"He Was a Quiet Man","description":"An office worker inadvertently becomes a hero after he saves a woman's life.","id":"10247","runtime":95,"imdbId":"tt0760311","version":213,"lastModified":"1301906835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3de\/4bc92d27017a3c57fe0123de\/he-was-a-quiet-man-mid.jpg","genre":"Comedy","title":"He Was a Quiet Man","releaseDate":1196985600000,"language":"en","type":"Movie","_key":"38966"} +{"label":"Frank A. Cappello","version":26,"id":"10948","lastModified":"1301901439000","name":"Frank A. Cappello","type":"Person","_key":"38967"} +{"label":"Jamison Jones","version":20,"id":"64233","lastModified":"1301901727000","name":"Jamison Jones","type":"Person","_key":"38968"} +{"label":"K.C. Ramsey","version":20,"id":"64235","lastModified":"1301901877000","name":"K.C. Ramsey","type":"Person","_key":"38969"} +{"label":"Anzu Lawson","version":18,"id":"64234","lastModified":"1301902087000","name":"Anzu Lawson","type":"Person","_key":"38970"} +{"label":"Sascha Knopf","version":20,"id":"64237","lastModified":"1301901877000","name":"Sascha Knopf","type":"Person","_key":"38971"} +{"label":"David Wells","version":23,"id":"64236","lastModified":"1301901918000","name":"David Wells","type":"Person","_key":"38972"} +{"label":"Sewell Whitney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c26\/4cf3f3ae5e73d62383000c26\/sewell-whitney-profile.jpg","version":23,"id":"64240","lastModified":"1301901602000","name":"Sewell Whitney","type":"Person","_key":"38973"} +{"label":"Randolph Mantooth","version":21,"id":"64238","lastModified":"1301902264000","name":"Randolph Mantooth","type":"Person","_key":"38974"} +{"label":"Frankie Thorn","version":24,"id":"64239","lastModified":"1301901326000","name":"Frankie Thorn","type":"Person","_key":"38975"} +{"label":"Tina D'Marco","version":20,"id":"64242","lastModified":"1301902087000","name":"Tina D'Marco","type":"Person","_key":"38976"} +{"label":"Livia Trevi\u00f1o","version":20,"id":"64243","lastModified":"1301901877000","name":"Livia Trevi\u00f1o","type":"Person","_key":"38977"} +{"label":"Lisa Arianna","version":20,"id":"64241","lastModified":"1301901612000","name":"Lisa Arianna","type":"Person","_key":"38978"} +{"label":"Greg Baker","version":20,"id":"64244","lastModified":"1301902087000","name":"Greg Baker","type":"Person","_key":"38979"} +{"label":"Paul D. Roberts","version":20,"id":"64247","lastModified":"1301901612000","name":"Paul D. Roberts","type":"Person","_key":"38980"} +{"label":"Maggie Wagner","version":21,"id":"64245","lastModified":"1301901602000","name":"Maggie Wagner","type":"Person","_key":"38981"} +{"label":"Brian Lohmann","version":20,"id":"64246","lastModified":"1301902087000","name":"Brian Lohmann","type":"Person","_key":"38982"} +{"label":"The Ring Thing","description":"Middle Earth is... right in the heart of Europe! A spoof of the Lord of the Rings Trilogy set in Switzerland.","id":"10248","runtime":80,"imdbId":"tt0432028","version":123,"lastModified":"1301904730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e7\/4bc92d28017a3c57fe0123e7\/the-ring-thing-mid.jpg","genre":"Comedy","title":"The Ring Thing","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"38983"} +{"label":"Mark Schippert","version":19,"id":"64248","lastModified":"1301902086000","name":"Mark Schippert","type":"Person","_key":"38984"} +{"label":"Gwendolyn Rich","version":19,"id":"64260","lastModified":"1301902264000","name":"Gwendolyn Rich","type":"Person","_key":"38985"} +{"label":"Edward Piccin","version":22,"id":"64259","lastModified":"1301901941000","name":"Edward Piccin","type":"Person","_key":"38986"} +{"label":"Leo Roos","version":19,"id":"64261","lastModified":"1301901877000","name":"Leo Roos","type":"Person","_key":"38987"} +{"label":"Ralph Vogt","version":19,"id":"64263","lastModified":"1301902264000","name":"Ralph Vogt","type":"Person","_key":"38988"} +{"label":"Sebastian Arenas","version":19,"id":"64264","lastModified":"1301902264000","name":"Sebastian Arenas","type":"Person","_key":"38989"} +{"label":"Armin Arnold","version":21,"id":"64262","lastModified":"1301902264000","name":"Armin Arnold","type":"Person","_key":"38990"} +{"label":"Yoav Parish","version":19,"id":"64269","lastModified":"1301902264000","name":"Yoav Parish","type":"Person","_key":"38991"} +{"label":"Enzo Esposito","version":19,"id":"64268","lastModified":"1301902263000","name":"Enzo Esposito","type":"Person","_key":"38992"} +{"label":"Mich\u00e8le M\u00fcller","version":19,"id":"64267","lastModified":"1301902263000","name":"Mich\u00e8le M\u00fcller","type":"Person","_key":"38993"} +{"label":"Kamil Krejc\u00ed","version":19,"id":"64270","lastModified":"1301902263000","name":"Kamil Krejc\u00ed","type":"Person","_key":"38994"} +{"label":"J\u00f6rg Reichlin","version":19,"id":"64265","lastModified":"1301902263000","name":"J\u00f6rg Reichlin","type":"Person","_key":"38995"} +{"label":"Julia Nakamoura","version":19,"id":"64266","lastModified":"1301902263000","name":"Julia Nakamoura","type":"Person","_key":"38996"} +{"label":"Mark Schippert","version":19,"id":"64276","lastModified":"1301902263000","name":"Mark Schippert","type":"Person","_key":"38997"} +{"label":"Tobias Steiner","version":19,"id":"64274","lastModified":"1301901877000","name":"Tobias Steiner","type":"Person","_key":"38998"} +{"label":"Kathrin W\u00e4lty","version":19,"id":"64272","lastModified":"1301902263000","name":"Kathrin W\u00e4lty","type":"Person","_key":"38999"} +{"label":"Michael Baumgartner","version":19,"id":"64275","lastModified":"1301902263000","name":"Michael Baumgartner","type":"Person","_key":"39000"} +{"label":"Robert Ismajlovic","version":19,"id":"64271","lastModified":"1301902263000","name":"Robert Ismajlovic","type":"Person","_key":"39001"} +{"label":"Christian Hunziker","version":19,"id":"64273","lastModified":"1301901877000","name":"Christian Hunziker","type":"Person","_key":"39002"} +{"label":"The Rocketeer","description":"Straight from the pages of a pulp comic from a past era, the Rocketeer recreates 1930's Hollywood, complete with gangsters, Nazi spies, and the growth of the Age of Aviation. Young pilot Cliff Secord stumbles on a top secret rocket-pack and with the help of his mechanic\/mentor, Peevee, he attempts to save his girl and stop the Nazis as The Rocketeer.","id":"10249","runtime":108,"imdbId":"tt0102803","version":147,"lastModified":"1301902253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/242\/4d502c0e7b9aa13ab400c242\/the-rocketeer-mid.jpg","studio":"Wild Hogs Productions","genre":"Action","title":"The Rocketeer","releaseDate":677462400000,"language":"en","tagline":"Three years before the United States declares war, Cliff Secord leads America's first battle against the Nazis.","type":"Movie","_key":"39003"} +{"label":"The Butcher","description":"No overview found.","id":"10250","runtime":90,"imdbId":"tt0478165","version":353,"lastModified":"1301905197000","genre":"Horror","title":"The Butcher","releaseDate":1152576000000,"language":"en","type":"Movie","_key":"39004"} +{"label":"Edward Gorsuch","version":20,"id":"64279","lastModified":"1301901813000","name":"Edward Gorsuch","type":"Person","_key":"39005"} +{"label":"Hazel Dean","version":20,"id":"64288","lastModified":"1301901782000","name":"Hazel Dean","type":"Person","_key":"39006"} +{"label":"Myiea Coy","version":20,"id":"64287","lastModified":"1301901782000","name":"Myiea Coy","type":"Person","_key":"39007"} +{"label":"Bill Jacobson","version":20,"id":"64290","lastModified":"1301901782000","name":"Bill Jacobson","type":"Person","_key":"39008"} +{"label":"Tiffany Kristensen","version":20,"id":"64291","lastModified":"1301901649000","name":"Tiffany Kristensen","type":"Person","_key":"39009"} +{"label":"Ashley Rebecca Hawkins","version":20,"id":"64289","lastModified":"1301902334000","name":"Ashley Rebecca Hawkins","type":"Person","_key":"39010"} +{"label":"Nick Stellate","version":21,"id":"64296","lastModified":"1301902334000","name":"Nick Stellate","type":"Person","_key":"39011"} +{"label":"Alan Ritchson","version":24,"id":"64295","lastModified":"1301902149000","name":"Alan Ritchson","type":"Person","_key":"39012"} +{"label":"Tom Nagel","version":21,"id":"64294","lastModified":"1301902334000","name":"Tom Nagel","type":"Person","_key":"39013"} +{"label":"Annie Mackay","version":20,"id":"64292","lastModified":"1301902334000","name":"Annie Mackay","type":"Person","_key":"39014"} +{"label":"April Lang","version":20,"id":"64293","lastModified":"1301901953000","name":"April Lang","type":"Person","_key":"39015"} +{"label":"Catherine Wreford","version":20,"id":"64298","lastModified":"1301901953000","name":"Catherine Wreford","type":"Person","_key":"39016"} +{"label":"Pej Vahdat","version":20,"id":"64297","lastModified":"1301901953000","name":"Pej Vahdat","type":"Person","_key":"39017"} +{"label":"5ive Girls","description":"Five wayward teenage girls are sent to a reformatory and discover they possess unique powers to battle the ancient demon, Legion, which holds thrall over the sinister institution.","id":"10251","runtime":95,"imdbId":"tt0494199","version":151,"lastModified":"1301902745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2a\/4d95b3517b9aa11994002e2a\/5ive-girls-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Horror","title":"5ive Girls","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"39018"} +{"label":"Warren P. Sonoda","version":34,"id":"63852","lastModified":"1302017474000","name":"Warren P. Sonoda","type":"Person","_key":"39019"} +{"label":"Jennifer Miller","version":22,"id":"64303","lastModified":"1301902177000","name":"Jennifer Miller","type":"Person","_key":"39020"} +{"label":"Terra Vnesa","version":22,"id":"64305","lastModified":"1301901674000","name":"Terra Vnesa","type":"Person","_key":"39021"} +{"label":"Barbara Mamabolo","version":24,"id":"64306","lastModified":"1301901813000","name":"Barbara Mamabolo","type":"Person","_key":"39022"} +{"label":"Krysta Carter","version":22,"id":"64308","lastModified":"1301902178000","name":"Krysta Carter","type":"Person","_key":"39023"} +{"label":"Jordan Madley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/841\/4d8f2dfd5e73d65f0e001841\/jordan-madley-profile.jpg","version":41,"id":"64304","lastModified":"1301901513000","name":"Jordan Madley","type":"Person","_key":"39024"} +{"label":"Tasha May","version":22,"id":"64307","lastModified":"1301902192000","name":"Tasha May","type":"Person","_key":"39025"} +{"label":"Richard Alan Campbell","version":22,"id":"64310","lastModified":"1301902178000","name":"Richard Alan Campbell","type":"Person","_key":"39026"} +{"label":"Animal","description":"When the violent gangster James \"Animal\" Allen is arrested and sent to prison, his teenage son Darius is left with his mother...","id":"10252","runtime":93,"imdbId":"tt0437072","version":171,"lastModified":"1301903182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42a\/4bc92d2f017a3c57fe01242a\/animal-mid.jpg","studio":"First Look Pictures","genre":"Action","title":"Animal","releaseDate":1114905600000,"language":"en","type":"Movie","_key":"39027"} +{"label":"Eugene Cotto","version":20,"id":"64320","lastModified":"1301902263000","name":"Eugene Cotto","type":"Person","_key":"39028"} +{"label":"Rafa Alvarez","version":20,"id":"64318","lastModified":"1301902263000","name":"Rafa Alvarez","type":"Person","_key":"39029"} +{"label":"Junior Alvarez","version":20,"id":"64317","lastModified":"1301902086000","name":"Junior Alvarez","type":"Person","_key":"39030"} +{"label":"Black Child","version":20,"id":"64319","lastModified":"1301902263000","name":"Black Child","type":"Person","_key":"39031"} +{"label":"Carlos Esteban Fonseca","version":22,"id":"64322","lastModified":"1301902263000","name":"Carlos Esteban Fonseca","type":"Person","_key":"39032"} +{"label":"John Garcia","version":20,"id":"64323","lastModified":"1301902263000","name":"John Garcia","type":"Person","_key":"39033"} +{"label":"C\u00e9sar Farrait","version":24,"id":"64321","lastModified":"1301902086000","name":"C\u00e9sar Farrait","type":"Person","_key":"39034"} +{"label":"Norman Grant","version":20,"id":"64324","lastModified":"1301902263000","name":"Norman Grant","type":"Person","_key":"39035"} +{"label":"Alfredo Herger","version":20,"id":"64325","lastModified":"1301902263000","name":"Alfredo Herger","type":"Person","_key":"39036"} +{"label":"Hunter Howard","version":20,"id":"64330","lastModified":"1301902263000","name":"Hunter Howard","type":"Person","_key":"39037"} +{"label":"Charlie Mass\u00f3","version":20,"id":"64327","lastModified":"1301902263000","name":"Charlie Mass\u00f3","type":"Person","_key":"39038"} +{"label":"Modesto Lacen","version":20,"id":"64326","lastModified":"1301902263000","name":"Modesto Lacen","type":"Person","_key":"39039"} +{"label":"Joaquin Jarque","version":20,"id":"64329","lastModified":"1301902263000","name":"Joaquin Jarque","type":"Person","_key":"39040"} +{"label":"Edwin Mercado","version":20,"id":"64328","lastModified":"1301902263000","name":"Edwin Mercado","type":"Person","_key":"39041"} +{"label":"D-War","description":"Based on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter...","id":"10253","runtime":107,"imdbId":"tt0372873","version":170,"lastModified":"1301906310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f7\/4d2cdb447b9aa11a700009f7\/d-war-mid.jpg","studio":"Younggu-Art Movies","genre":"Action","title":"D-War","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"39042"} +{"label":"Hyung-rae Shim","version":34,"id":"64331","lastModified":"1301901956000","name":"Hyung-rae Shim","type":"Person","_key":"39043"} +{"label":"Amanda Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07e\/4d26810c7b9aa134cb00107e\/amanda-brooks-profile.jpg","version":29,"id":"64341","lastModified":"1301901466000","name":"Amanda Brooks","type":"Person","_key":"39044"} +{"label":"John Ales","version":26,"id":"64343","lastModified":"1301901877000","name":"John Ales","type":"Person","_key":"39045"} +{"label":"Billy Gardell","version":23,"id":"64344","lastModified":"1301901726000","name":"Billy Gardell","type":"Person","_key":"39046"} +{"label":"NiCole Robinson","version":23,"id":"64345","lastModified":"1301902086000","name":"NiCole Robinson","type":"Person","_key":"39047"} +{"label":"Jody Carlson","version":23,"id":"64347","lastModified":"1301901536000","name":"Jody Carlson","type":"Person","_key":"39048"} +{"label":"Cody Arens","version":23,"id":"64346","lastModified":"1301902086000","name":"Cody Arens","type":"Person","_key":"39049"} +{"label":"Dominic Oliver","version":23,"id":"64348","lastModified":"1301902086000","name":"Dominic Oliver","type":"Person","_key":"39050"} +{"label":"Craig Anton","version":26,"id":"64349","lastModified":"1301902144000","name":"Craig Anton","type":"Person","_key":"39051"} +{"label":"Patricia Lee","version":24,"id":"64350","lastModified":"1301902129000","name":"Patricia Lee","type":"Person","_key":"39052"} +{"label":"Eloy Casados","version":23,"id":"64351","lastModified":"1301901877000","name":"Eloy Casados","type":"Person","_key":"39053"} +{"label":"Alexa Sheehan","version":23,"id":"64352","lastModified":"1301901536000","name":"Alexa Sheehan","type":"Person","_key":"39054"} +{"label":"Born to Fight","description":"When a remote Thai village is overrun by terrorists armed with a nuclear missile, an elite undercover operative leads the most unique fighting force ever assembled in a heroic bid to save their nation.","id":"10254","runtime":96,"imdbId":"tt0428725","version":130,"lastModified":"1301905088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/445\/4bc92d34017a3c57fe012445\/kerd-ma-lui-mid.jpg","genre":"Action","title":"Born to Fight","releaseDate":1091664000000,"language":"en","type":"Movie","_key":"39055"} +{"label":"Panna Rittikrai","version":51,"id":"57274","lastModified":"1301901491000","name":"Panna Rittikrai","type":"Person","_key":"39056"} +{"label":"Santisuk Promsiri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a4\/4cdff5175e73d60f6e0001a4\/santisuk-promsiri-profile.jpg","version":24,"id":"64357","lastModified":"1301901470000","name":"Santisuk Promsiri","type":"Person","_key":"39057"} +{"label":"Nappon Gomarachun","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15d\/4cdff6075e73d60f6d00015d\/nappon-gomarachun-profile.jpg","version":22,"id":"64356","lastModified":"1301901470000","name":"Nappon Gomarachun","type":"Person","_key":"39058"} +{"label":"Dan Chupong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/181\/4cdff40d5e73d60f6f000181\/dan-chupong-profile.jpg","version":33,"id":"64358","lastModified":"1301901425000","name":"Dan Chupong","type":"Person","_key":"39059"} +{"label":"Somrak Khamsing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/189\/4cdff6a55e73d60f6f000189\/somrak-khamsing-profile.jpg","version":22,"id":"64360","lastModified":"1301901853000","name":"Somrak Khamsing","type":"Person","_key":"39060"} +{"label":"Piyapong Piew-on","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/165\/4cdff7fe5e73d60f6d000165\/piyapong-piew-on-profile.jpg","version":22,"id":"64359","lastModified":"1301901713000","name":"Piyapong Piew-on","type":"Person","_key":"39061"} +{"label":"Amornthep Waewsang","version":21,"id":"64361","lastModified":"1301901475000","name":"Amornthep Waewsang","type":"Person","_key":"39062"} +{"label":"Rattaporn Khemtong","version":21,"id":"64365","lastModified":"1301901612000","name":"Rattaporn Khemtong","type":"Person","_key":"39063"} +{"label":"Kessarin Ektawatkul","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a0\/4cdd1ca67b9aa138020002a0\/kessarin-ektawatkul-profile.jpg","version":28,"id":"64364","lastModified":"1301901469000","name":"Kessarin Ektawatkul","type":"Person","_key":"39064"} +{"label":"Nantaway Wongwanichislip","version":21,"id":"64363","lastModified":"1301901727000","name":"Nantaway Wongwanichislip","type":"Person","_key":"39065"} +{"label":"Suebsak Pansueb","version":21,"id":"64362","lastModified":"1301901726000","name":"Suebsak Pansueb","type":"Person","_key":"39066"} +{"label":"Chatthapong Pantanaunkul","version":21,"id":"64366","lastModified":"1301901877000","name":"Chatthapong Pantanaunkul","type":"Person","_key":"39067"} +{"label":"Sasisa Jindamanee","version":22,"id":"64367","lastModified":"1301901642000","name":"Sasisa Jindamanee","type":"Person","_key":"39068"} +{"label":"Payong Mounda","version":21,"id":"64368","lastModified":"1301901727000","name":"Payong Mounda","type":"Person","_key":"39069"} +{"label":"Swat Hoopsom","version":21,"id":"64369","lastModified":"1301901726000","name":"Swat Hoopsom","type":"Person","_key":"39070"} +{"label":"Sahaschai Chumrum","version":21,"id":"64372","lastModified":"1301901877000","name":"Sahaschai Chumrum","type":"Person","_key":"39071"} +{"label":"Vanna Bonta","version":21,"id":"64371","lastModified":"1301901475000","name":"Vanna Bonta","type":"Person","_key":"39072"} +{"label":"June Angela","version":22,"id":"64370","lastModified":"1301901945000","name":"June Angela","type":"Person","_key":"39073"} +{"label":"Elyse Dinh","version":21,"id":"64373","lastModified":"1301901475000","name":"Elyse Dinh","type":"Person","_key":"39074"} +{"label":"Josiah D. Lee","version":24,"id":"64374","lastModified":"1301901307000","name":"Josiah D. Lee","type":"Person","_key":"39075"} +{"label":"Marlene Sharp","version":21,"id":"64375","lastModified":"1301901612000","name":"Marlene Sharp","type":"Person","_key":"39076"} +{"label":"Ab-normal Beauty","description":"Jiney is a talented student of Arts with a trauma in her childhood and lack of communication with her mother...","id":"10255","runtime":96,"imdbId":"tt0434762","version":91,"lastModified":"1301903818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44e\/4bc92d34017a3c57fe01244e\/sei-mong-se-jun-mid.jpg","genre":"Horror","title":"Ab-normal Beauty","releaseDate":1099526400000,"language":"en","type":"Movie","_key":"39077"} +{"label":"Rosanne Wong","version":20,"id":"64382","lastModified":"1301902334000","name":"Rosanne Wong","type":"Person","_key":"39078"} +{"label":"Race Wong","version":21,"id":"64381","lastModified":"1301902193000","name":"Race Wong","type":"Person","_key":"39079"} +{"label":"Anson Leung","version":29,"id":"64383","lastModified":"1301901807000","name":"Anson Leung","type":"Person","_key":"39080"} +{"label":"Cub Chin","version":20,"id":"64385","lastModified":"1301902334000","name":"Cub Chin","type":"Person","_key":"39081"} +{"label":"Michelle Mee","version":27,"id":"64384","lastModified":"1301902200000","name":"Michelle Mee","type":"Person","_key":"39082"} +{"label":"Metamorphosis","description":"In the Seventeenth Century, while Hungary is fighting the Turks, the population of a small village in...","id":"10256","runtime":105,"imdbId":"tt0431265","version":111,"lastModified":"1301903161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/457\/4bc92d38017a3c57fe012457\/metamorphosis-mid.jpg","genre":"Horror","title":"Metamorphosis","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"39083"} +{"label":"Jen\u00f6 Hodi","version":22,"id":"64417","lastModified":"1301902055000","name":"Jen\u00f6 Hodi","type":"Person","_key":"39084"} +{"label":"Corey Sevier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bdb\/4d7ab76a5e73d62828000bdb\/corey-sevier-profile.jpg","version":32,"id":"43265","lastModified":"1301901302000","name":"Corey Sevier","type":"Person","_key":"39085"} +{"label":"Charlie Hollway","version":19,"id":"64410","lastModified":"1301901633000","name":"Charlie Hollway","type":"Person","_key":"39086"} +{"label":"Irena A. Hoffman","version":20,"id":"64409","lastModified":"1301901775000","name":"Irena A. Hoffman","type":"Person","_key":"39087"} +{"label":"Jennifer Higham","version":27,"id":"64411","lastModified":"1301902022000","name":"Jennifer Higham","type":"Person","_key":"39088"} +{"label":"Andr\u00e1s Kern","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/119\/4c32f2e75e73d64969000119\/andras-kern-profile.jpg","version":30,"id":"64412","lastModified":"1301901484000","name":"Andr\u00e1s Kern","type":"Person","_key":"39089"} +{"label":"Ad\u00e9l Kov\u00e1ts","version":20,"id":"64415","lastModified":"1301902185000","name":"Ad\u00e9l Kov\u00e1ts","type":"Person","_key":"39090"} +{"label":"Zolee Ganxsta","version":20,"id":"64413","lastModified":"1301902387000","name":"Zolee Ganxsta","type":"Person","_key":"39091"} +{"label":"G\u00e1bor Koncz","version":20,"id":"64414","lastModified":"1301902300000","name":"G\u00e1bor Koncz","type":"Person","_key":"39092"} +{"label":"Luk\u00e1cs Bicskey","version":22,"id":"64416","lastModified":"1301902300000","name":"Luk\u00e1cs Bicskey","type":"Person","_key":"39093"} +{"label":"Grady Lee Richmond","version":19,"id":"64419","lastModified":"1301902300000","name":"Grady Lee Richmond","type":"Person","_key":"39094"} +{"label":"Jolene Adams","version":19,"id":"64420","lastModified":"1301902300000","name":"Jolene Adams","type":"Person","_key":"39095"} +{"label":"Vilmos Kolba","version":19,"id":"64418","lastModified":"1301902300000","name":"Vilmos Kolba","type":"Person","_key":"39096"} +{"label":"The Twins Effect II","description":"In the mythical land of Huadu, Charcoal Head, a humble boy born to rule an empire must undertake his journey to claim his throne.","id":"10257","runtime":106,"imdbId":"tt0398373","version":100,"lastModified":"1301902202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/460\/4bc92d38017a3c57fe012460\/chin-gei-bin-2-fa-dou-daai-jin-mid.jpg","genre":"Action","title":"The Twins Effect II","releaseDate":1092268800000,"language":"en","type":"Movie","_key":"39097"} +{"label":"Patrick Leung","version":22,"id":"64423","lastModified":"1301902086000","name":"Patrick Leung","type":"Person","_key":"39098"} +{"label":"Charlene Choi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/192\/4c9553c67b9aa10d57000192\/charlene-choi-profile.jpg","version":62,"id":"64434","lastModified":"1301947608000","name":"Charlene Choi","type":"Person","_key":"39099"} +{"label":"Gillian Chung","version":37,"id":"64433","lastModified":"1301947404000","name":"Gillian Chung","type":"Person","_key":"39100"} +{"label":"Jaycee Chan","version":39,"id":"64435","lastModified":"1301901600000","name":"Jaycee Chan","type":"Person","_key":"39101"} +{"label":"Ying Qu","version":19,"id":"64437","lastModified":"1301901877000","name":"Ying Qu","type":"Person","_key":"39102"} +{"label":"Daniel Wu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4bce776b017a3c486e000037\/daniel-wu-profile.jpg","version":51,"id":"64436","lastModified":"1301922444000","name":"Daniel Wu","type":"Person","_key":"39103"} +{"label":"Bo-lin Chen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/050\/4c81721e7b9aa13b68000050\/bo-lin-chen-profile.jpg","version":24,"id":"64440","lastModified":"1301902212000","name":"Bo-lin Chen","type":"Person","_key":"39104"} +{"label":"Bingbing Fan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4c829d267b9aa1419c00001f\/bingbing-fan-profile.jpg","biography":"Fan Bingbing was born 16 September 1981 and raised in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Qingdao\" title=\"Qingdao\">Qingdao<\/a>, <a href=\"http:\/\/en.wikipedia.org\/wiki\/Shandong\" title=\"Shandong\">Shandong<\/a>.\n\n\nFan rose to stardom for her role as Jin Suo in the <a href=\"http:\/\/en.wikipedia.org\/wiki\/Republic_of_China\" title=\"Republic of China\">Taiwanese<\/a> TV sitcom <i><a href=\"http:\/\/en.wikipedia.org\/wiki\/Princess_Pearl\" title=\"Princess Pearl\">Princess Pearl<\/a><\/i> and its sequel in 1998.<sup ","version":62,"id":"64439","lastModified":"1301901161000","name":"Bingbing Fan","type":"Person","_key":"39105"} +{"label":"Jim Chim Sui-Man","version":24,"id":"64441","lastModified":"1301901473000","name":"Jim Chim Sui-Man","type":"Person","_key":"39106"} +{"label":"The Madagascar Penguins in a Christmas Caper","description":"During the holiday season, when the animals of the Central Park Zoo are preparing for Christmas, Private, the youngest of the penguins notices that the Polar Bear is all alone. Assured that nobody should have to spend Christmas alone, Private goes into the city for some last-minute Christmas shopping. Along the way, he gets stuffed into a stocking","id":"10258","runtime":11,"imdbId":"tt0484439","version":181,"lastModified":"1301902480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc92d39017a3c57fe012469\/the-madagascar-penguins-in-a-christmas-caper-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"The Madagascar Penguins in a Christmas Caper","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"39107"} +{"label":"Bill Fagerbakke","version":45,"id":"34398","lastModified":"1301901504000","name":"Bill Fagerbakke","type":"Person","_key":"39108"} +{"label":"Mitch Carter","version":29,"id":"64447","lastModified":"1301901639000","name":"Mitch Carter","type":"Person","_key":"39109"} +{"label":"Elisa Gabrielli","version":28,"id":"64445","lastModified":"1301901636000","name":"Elisa Gabrielli","type":"Person","_key":"39110"} +{"label":"Sean Bishop","version":42,"id":"64446","lastModified":"1302015948000","name":"Sean Bishop","type":"Person","_key":"39111"} +{"label":"Richard Miro","version":27,"id":"64448","lastModified":"1301901552000","name":"Richard Miro","type":"Person","_key":"39112"} +{"label":"Holly Dorff","version":27,"id":"64449","lastModified":"1301901552000","name":"Holly Dorff","type":"Person","_key":"39113"} +{"label":"Hope Levy","version":27,"id":"64450","lastModified":"1301901552000","name":"Hope Levy","type":"Person","_key":"39114"} +{"label":"Lynnanne Zager","version":27,"id":"64451","lastModified":"1301901552000","name":"Lynnanne Zager","type":"Person","_key":"39115"} +{"label":"The Romance","description":"No overview found.","id":"10259","runtime":106,"imdbId":"tt0778020","trailer":"http:\/\/www.youtube.com\/watch?v=qOux_KWofJU","version":127,"lastModified":"1302053298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fd\/4d9bdd957b9aa16d040008fd\/the-romance-mid.jpg","genre":"Drama","title":"The Romance","releaseDate":1141862400000,"language":"en","type":"Movie","_key":"39116"} +{"label":"Seung-wook Moon","version":20,"id":"64452","lastModified":"1301902004000","name":"Seung-wook Moon","type":"Person","_key":"39117"} +{"label":"Ju-bong Gi","version":27,"id":"64454","lastModified":"1301958583000","name":"Ju-bong Gi","type":"Person","_key":"39118"} +{"label":"Ji-su Kim","version":20,"id":"64456","lastModified":"1301901993000","name":"Ji-su Kim","type":"Person","_key":"39119"} +{"label":"Hyeong-seong Jang","version":22,"id":"64455","lastModified":"1301901782000","name":"Hyeong-seong Jang","type":"Person","_key":"39120"} +{"label":"Les Ripoux","description":"Ren\u00e9 est inspecteur de police dans le 18\u00e8me arrondissement de Paris. Depuis des ann\u00e9es, il tient son quartier \u00e0 coups de combines. Fran\u00e7ois jeune inspecteur fra\u00eechement dipl\u00f4m\u00e9 et droit comme la justice est le nouveau partenaire de Ren\u00e9. La cohabitation s'annonce difficile...","id":"10260","runtime":107,"imdbId":"tt0088002","version":56,"lastModified":"1301903266000","genre":"Action","title":"Les Ripoux","releaseDate":464400000000,"language":"en","type":"Movie","_key":"39121"} +{"label":"Switch","description":"A sexist, chauvinist pig gets his just desserts when his angry ex-girlfriends murder him and he is reincarnated as a woman.","id":"10261","runtime":103,"imdbId":"tt0103016","version":132,"lastModified":"1301903244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5a\/4d1e73075e73d66b2d000d5a\/switch-mid.jpg","genre":"Comedy","title":"Switch","releaseDate":673833600000,"language":"en","type":"Movie","_key":"39122"} +{"label":"Perry King","version":26,"id":"64457","lastModified":"1301901801000","name":"Perry King","type":"Person","_key":"39123"} +{"label":"Goal","description":"No overview found.","id":"10262","title":"Goal","language":"en","lastModified":"1301905448000","version":177,"type":"Movie","_key":"39124"} +{"label":"Tamara","description":"Tamara, an unattractive girl, who is picked on by her peers returns after her death as a sexy seductress to exact revenge.","id":"10263","runtime":98,"imdbId":"tt0401815","trailer":"http:\/\/www.youtube.com\/watch?v=1879","homepage":"http:\/\/www.tamaramovie.com\/","version":399,"lastModified":"1301903561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/476\/4bc92d3a017a3c57fe012476\/tamara-mid.jpg","studio":"City Lights Pictures","genre":"Fantasy","title":"Tamara","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"39125"} +{"label":"Jeremy Haft","version":22,"id":"64459","lastModified":"1301902263000","name":"Jeremy Haft","type":"Person","_key":"39126"} +{"label":"Chad Faust","version":22,"id":"64471","lastModified":"1301901945000","name":"Chad Faust","type":"Person","_key":"39127"} +{"label":"Katie Stuart","version":45,"id":"64470","lastModified":"1301901248000","name":"Katie Stuart","type":"Person","_key":"39128"} +{"label":"Bryan Clark","version":23,"id":"64472","lastModified":"1301902145000","name":"Bryan Clark","type":"Person","_key":"39129"} +{"label":"Melissa Marie Elias","version":19,"id":"64473","lastModified":"1301902263000","name":"Melissa Marie Elias","type":"Person","_key":"39130"} +{"label":"Gil Hacohen","version":21,"id":"64474","lastModified":"1301902263000","name":"Gil Hacohen","type":"Person","_key":"39131"} +{"label":"Magally Zelaya","version":21,"id":"64477","lastModified":"1301902263000","name":"Magally Zelaya","type":"Person","_key":"39132"} +{"label":"Brian Davisson","version":21,"id":"64479","lastModified":"1301901877000","name":"Brian Davisson","type":"Person","_key":"39133"} +{"label":"Chris Sigurdson","version":23,"id":"64475","lastModified":"1301902033000","name":"Chris Sigurdson","type":"Person","_key":"39134"} +{"label":"Sarah Blondin","version":21,"id":"64476","lastModified":"1301902263000","name":"Sarah Blondin","type":"Person","_key":"39135"} +{"label":"Ernesto Griffith","version":21,"id":"64478","lastModified":"1301902262000","name":"Ernesto Griffith","type":"Person","_key":"39136"} +{"label":"Jeffrey Reddick","version":54,"id":"57429","lastModified":"1301901786000","name":"Jeffrey Reddick","type":"Person","_key":"39137"} +{"label":"Brandy Jaques","version":21,"id":"64482","lastModified":"1301902262000","name":"Brandy Jaques","type":"Person","_key":"39138"} +{"label":"Hamlet","description":"No overview found.","id":"10264","runtime":130,"imdbId":"tt0099726","version":153,"lastModified":"1301902317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/489\/4bc92d3f017a3c57fe012489\/hamlet-mid.jpg","genre":"Drama","title":"Hamlet","releaseDate":661564800000,"language":"en","type":"Movie","_key":"39139"} +{"label":"Han cheng gong l\u00fce","description":"In this sequel to \"Tokyo Raiders\", wisecracking, kung-fu-fighting spy\/private eye Lam jets off to Seoul...","id":"10265","runtime":95,"imdbId":"tt0455116","version":67,"lastModified":"1301903874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48e\/4bc92d3f017a3c57fe01248e\/han-cheng-gong-lue-mid.jpg","genre":"Action","title":"Han cheng gong l\u00fce","releaseDate":1107388800000,"language":"en","type":"Movie","_key":"39140"} +{"label":"Jingle Ma Choh-Shing","version":79,"id":"46325","lastModified":"1301943858000","name":"Jingle Ma Choh-Shing","type":"Person","_key":"39141"} +{"label":"Richie Ren","version":34,"id":"64496","lastModified":"1301901236000","name":"Richie Ren","type":"Person","_key":"39142"} +{"label":"Jeong-jin Lee","version":20,"id":"64497","lastModified":"1301902200000","name":"Jeong-jin Lee","type":"Person","_key":"39143"} +{"label":"Yeo-jin Choi","version":20,"id":"64499","lastModified":"1301902151000","name":"Yeo-jin Choi","type":"Person","_key":"39144"} +{"label":"Sasha Hou","version":20,"id":"64500","lastModified":"1301902336000","name":"Sasha Hou","type":"Person","_key":"39145"} +{"label":"Joyce Cheung","version":21,"id":"64498","lastModified":"1301901701000","name":"Joyce Cheung","type":"Person","_key":"39146"} +{"label":"Saki Seto","version":20,"id":"64501","lastModified":"1301902336000","name":"Saki Seto","type":"Person","_key":"39147"} +{"label":"Hilary Yeung Sum Yee","version":20,"id":"64505","lastModified":"1301902336000","name":"Hilary Yeung Sum Yee","type":"Person","_key":"39148"} +{"label":"Mathew Tang","version":20,"id":"64504","lastModified":"1301902336000","name":"Mathew Tang","type":"Person","_key":"39149"} +{"label":"Pete Spurrier","version":20,"id":"64503","lastModified":"1301902336000","name":"Pete Spurrier","type":"Person","_key":"39150"} +{"label":"Ji-Yeon Park","version":21,"id":"64502","lastModified":"1301901845000","name":"Ji-Yeon Park","type":"Person","_key":"39151"} +{"label":"The Veteran","description":"Sidney J. Furie's The Veteran is a respectable straight-to-DVD movie that was headed for the \"pleasant surprise\" category before self-destructing with a terrible, out-of-the-blue ending.","id":"10266","runtime":90,"imdbId":"tt0493322","version":144,"lastModified":"1301903819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d88\/4d1b8b4d5e73d66594000d88\/the-veteran-mid.jpg","genre":"Action","title":"The Veteran","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"39152"} +{"label":"Sidney J. Furie","version":44,"id":"64508","lastModified":"1301901507000","name":"Sidney J. Furie","type":"Person","_key":"39153"} +{"label":"Colin Glazer","version":20,"id":"64511","lastModified":"1301902299000","name":"Colin Glazer","type":"Person","_key":"39154"} +{"label":"Sean Baek","version":19,"id":"64513","lastModified":"1301902122000","name":"Sean Baek","type":"Person","_key":"39155"} +{"label":"Jim Codrington","version":19,"id":"64514","lastModified":"1301902122000","name":"Jim Codrington","type":"Person","_key":"39156"} +{"label":"Pablo Espinosa","version":19,"id":"64515","lastModified":"1301902122000","name":"Pablo Espinosa","type":"Person","_key":"39157"} +{"label":"Austin Farwell","version":19,"id":"64516","lastModified":"1301902122000","name":"Austin Farwell","type":"Person","_key":"39158"} +{"label":"Joseph Griffin","version":20,"id":"64517","lastModified":"1301902299000","name":"Joseph Griffin","type":"Person","_key":"39159"} +{"label":"Jim Morse","version":19,"id":"64519","lastModified":"1301902122000","name":"Jim Morse","type":"Person","_key":"39160"} +{"label":"Dazlak","description":"No overview found.","id":"10267","runtime":88,"imdbId":"tt0130595","version":50,"lastModified":"1301905000000","genre":"Comedy","title":"Dazlak","releaseDate":852076800000,"language":"en","type":"Movie","_key":"39161"} +{"label":"Helke Sander","version":21,"id":"64520","lastModified":"1301902177000","name":"Helke Sander","type":"Person","_key":"39162"} +{"label":"Gabi Herz","version":20,"id":"41868","lastModified":"1301901315000","name":"Gabi Herz","type":"Person","_key":"39163"} +{"label":"Carolin Engel","version":20,"id":"64525","lastModified":"1301901649000","name":"Carolin Engel","type":"Person","_key":"39164"} +{"label":"Anna Griesbracher","version":20,"id":"64526","lastModified":"1301901953000","name":"Anna Griesbracher","type":"Person","_key":"39165"} +{"label":"Martin Maria Blau","version":18,"id":"64524","lastModified":"1301901564000","name":"Martin Maria Blau","type":"Person","_key":"39166"} +{"label":"Olaf J\u00f6hnk","version":20,"id":"64527","lastModified":"1301902375000","name":"Olaf J\u00f6hnk","type":"Person","_key":"39167"} +{"label":"Joel Olano","version":20,"id":"64528","lastModified":"1301901817000","name":"Joel Olano","type":"Person","_key":"39168"} +{"label":"Jenny Schlenzka","version":20,"id":"64529","lastModified":"1301902365000","name":"Jenny Schlenzka","type":"Person","_key":"39169"} +{"label":"Komi Togbonou","version":20,"id":"64531","lastModified":"1301902335000","name":"Komi Togbonou","type":"Person","_key":"39170"} +{"label":"Arik Seils","version":20,"id":"64530","lastModified":"1301902334000","name":"Arik Seils","type":"Person","_key":"39171"} +{"label":"Je vous trouve tr\u00e8s beau","description":"Aym\u00e9 Pigrenet vient de perdre sa femme. Il n'est pas submerg\u00e9 par le chagrin, mais an\u00e9anti par le travail qu'il va devoir d\u00e9sormais effectuer tout seul \u00e0 la ferme.","id":"10268","runtime":97,"imdbId":"tt0450664","version":83,"lastModified":"1301903071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49b\/4bc92d40017a3c57fe01249b\/je-vous-trouve-tres-beau-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Je vous trouve tr\u00e8s beau","releaseDate":1136937600000,"language":"en","type":"Movie","_key":"39172"} +{"label":"Isabelle Mergault","version":28,"id":"64534","lastModified":"1301902324000","name":"Isabelle Mergault","type":"Person","_key":"39173"} +{"label":"Medeea Marinescu","version":26,"id":"64540","lastModified":"1301901421000","name":"Medeea Marinescu","type":"Person","_key":"39174"} +{"label":"Wladimir Yordanoff","version":28,"id":"64541","lastModified":"1301901560000","name":"Wladimir Yordanoff","type":"Person","_key":"39175"} +{"label":"Beno\u00eet Turjman","version":21,"id":"64542","lastModified":"1301901726000","name":"Beno\u00eet Turjman","type":"Person","_key":"39176"} +{"label":"Valentin Traversi","version":21,"id":"64544","lastModified":"1301901726000","name":"Valentin Traversi","type":"Person","_key":"39177"} +{"label":"Rapha\u00ebl Dufour","version":21,"id":"64545","lastModified":"1301901726000","name":"Rapha\u00ebl Dufour","type":"Person","_key":"39178"} +{"label":"Julien Cafaro","version":21,"id":"64543","lastModified":"1301901726000","name":"Julien Cafaro","type":"Person","_key":"39179"} +{"label":"Choukri Gabteni","version":21,"id":"64546","lastModified":"1301901726000","name":"Choukri Gabteni","type":"Person","_key":"39180"} +{"label":"Agn\u00e8s Boury","version":23,"id":"64547","lastModified":"1301901726000","name":"Agn\u00e8s Boury","type":"Person","_key":"39181"} +{"label":"Tadrina Hocking","version":21,"id":"64548","lastModified":"1301901726000","name":"Tadrina Hocking","type":"Person","_key":"39182"} +{"label":"Nathalie Jouin","version":23,"id":"64549","lastModified":"1301901726000","name":"Nathalie Jouin","type":"Person","_key":"39183"} +{"label":"Ren\u00e9e Le Calm","version":26,"id":"64550","lastModified":"1301901690000","name":"Ren\u00e9e Le Calm","type":"Person","_key":"39184"} +{"label":"Fran\u00e7oise Monneret","version":21,"id":"64551","lastModified":"1301901726000","name":"Fran\u00e7oise Monneret","type":"Person","_key":"39185"} +{"label":"C\u00e9dric Zimmerlin","version":21,"id":"64552","lastModified":"1301901726000","name":"C\u00e9dric Zimmerlin","type":"Person","_key":"39186"} +{"label":"Yentl","description":"A Jewish girl disguises herself as a boy to enter religious training. .","id":"10269","runtime":132,"imdbId":"tt0086619","version":130,"lastModified":"1301983674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c0\/4c93fd3e5e73d63a790000c0\/yentl-mid.jpg","genre":"Drama","title":"Yentl","releaseDate":437961600000,"language":"en","type":"Movie","_key":"39187"} +{"label":"Kampfansage - Der letzte Sch\u00fcler","description":"No overview found.","id":"10270","runtime":102,"imdbId":"tt0417844","version":61,"lastModified":"1301905001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aca\/4d44195f5e73d66f59000aca\/kampfansage-der-letzte-sch-ler-mid.jpg","genre":"Action","title":"Kampfansage - Der letzte Sch\u00fcler","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"39188"} +{"label":"Johannes Jaeger","version":20,"id":"64553","lastModified":"1301901273000","name":"Johannes Jaeger","type":"Person","_key":"39189"} +{"label":"Mathis Landwehr","version":38,"id":"40716","lastModified":"1301901207000","name":"Mathis Landwehr","type":"Person","_key":"39190"} +{"label":"Volkram Zschiesche","version":20,"id":"64561","lastModified":"1301901285000","name":"Volkram Zschiesche","type":"Person","_key":"39191"} +{"label":"Christian Monz","version":20,"id":"64560","lastModified":"1301901401000","name":"Christian Monz","type":"Person","_key":"39192"} +{"label":"Sinta Weisz","version":22,"id":"64562","lastModified":"1301902324000","name":"Sinta Weisz","type":"Person","_key":"39193"} +{"label":"Wolfgang Stegemann","version":41,"id":"40738","lastModified":"1301901783000","name":"Wolfgang Stegemann","type":"Person","_key":"39194"} +{"label":"Mike M\u00f6ller","version":20,"id":"64564","lastModified":"1301902336000","name":"Mike M\u00f6ller","type":"Person","_key":"39195"} +{"label":"The Anh Ngo","version":20,"id":"64563","lastModified":"1301902336000","name":"The Anh Ngo","type":"Person","_key":"39196"} +{"label":"Jonathan Dreusch","version":20,"id":"64565","lastModified":"1301902336000","name":"Jonathan Dreusch","type":"Person","_key":"39197"} +{"label":"Martin Goeres","version":20,"id":"64568","lastModified":"1301902336000","name":"Martin Goeres","type":"Person","_key":"39198"} +{"label":"Ferdinand Fischer","version":20,"id":"64567","lastModified":"1301902336000","name":"Ferdinand Fischer","type":"Person","_key":"39199"} +{"label":"Gregor Eichhorn","version":20,"id":"64566","lastModified":"1301902336000","name":"Gregor Eichhorn","type":"Person","_key":"39200"} +{"label":"Zora Holt","version":20,"id":"64569","lastModified":"1301902336000","name":"Zora Holt","type":"Person","_key":"39201"} +{"label":"Vivien Pia Nowak","version":20,"id":"64572","lastModified":"1301902336000","name":"Vivien Pia Nowak","type":"Person","_key":"39202"} +{"label":"Kristina Papadopoulou","version":20,"id":"64573","lastModified":"1301902336000","name":"Kristina Papadopoulou","type":"Person","_key":"39203"} +{"label":"Ngoc-Thach Nguyen","version":20,"id":"64570","lastModified":"1301902336000","name":"Ngoc-Thach Nguyen","type":"Person","_key":"39204"} +{"label":"Max Luz","version":20,"id":"64571","lastModified":"1301902336000","name":"Max Luz","type":"Person","_key":"39205"} +{"label":"Mensonges et trahisons et plus si affinit\u00e9s...","description":"No overview found.","id":"10271","runtime":90,"imdbId":"tt0383025","version":74,"lastModified":"1301903166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bce\/4d9842dc7b9aa11997005bce\/mensonges-et-trahisons-et-plus-si-affinit-s-mid.jpg","genre":"Comedy","title":"Mensonges et trahisons et plus si affinit\u00e9s...","releaseDate":1094601600000,"language":"en","type":"Movie","_key":"39206"} +{"label":"Laurent Tirard","version":23,"id":"64575","lastModified":"1301901709000","name":"Laurent Tirard","type":"Person","_key":"39207"} +{"label":"Rapha\u00ebl Fuchs-Willig","version":20,"id":"64582","lastModified":"1301902151000","name":"Rapha\u00ebl Fuchs-Willig","type":"Person","_key":"39208"} +{"label":"Dimitri Rafalsky","version":20,"id":"64585","lastModified":"1301902337000","name":"Dimitri Rafalsky","type":"Person","_key":"39209"} +{"label":"Val\u00e9rie Moreau","version":20,"id":"64584","lastModified":"1301902151000","name":"Val\u00e9rie Moreau","type":"Person","_key":"39210"} +{"label":"David Marchal","version":20,"id":"64587","lastModified":"1301902151000","name":"David Marchal","type":"Person","_key":"39211"} +{"label":"Xavier Vilsek","version":20,"id":"64588","lastModified":"1301902151000","name":"Xavier Vilsek","type":"Person","_key":"39212"} +{"label":"Nuria Sol\u00e9","version":20,"id":"64586","lastModified":"1301902151000","name":"Nuria Sol\u00e9","type":"Person","_key":"39213"} +{"label":"Judith El Zein","version":21,"id":"64590","lastModified":"1301902337000","name":"Judith El Zein","type":"Person","_key":"39214"} +{"label":"Florence d'Az\u00e9mar","version":20,"id":"64591","lastModified":"1301902151000","name":"Florence d'Az\u00e9mar","type":"Person","_key":"39215"} +{"label":"Suzanne Legrand","version":20,"id":"64593","lastModified":"1301902151000","name":"Suzanne Legrand","type":"Person","_key":"39216"} +{"label":"Catherine Salviat","version":20,"id":"64589","lastModified":"1301902151000","name":"Catherine Salviat","type":"Person","_key":"39217"} +{"label":"Christiane Bopp","version":20,"id":"64592","lastModified":"1301902151000","name":"Christiane Bopp","type":"Person","_key":"39218"} +{"label":"Jekyll + Hyde","description":"In this terrifying contemporary version of Robert Louis Stevenson's renowned tale, two medical students' experiments with a strange drug unravel their personalities and alter them in ways they cannot control.","id":"10272","runtime":97,"imdbId":"tt0425150","version":142,"lastModified":"1301904676000","genre":"Horror","title":"Jekyll + Hyde","releaseDate":1136073600000,"language":"en","tagline":"Think You Know The Story? Think Again!","type":"Movie","_key":"39219"} +{"label":"Nick Stillwell","version":20,"id":"64625","lastModified":"1301901877000","name":"Nick Stillwell","type":"Person","_key":"39220"} +{"label":"Maria del Mar","version":22,"id":"44097","lastModified":"1301901555000","name":"Maria del Mar","type":"Person","_key":"39221"} +{"label":"Bryan Fisher","version":20,"id":"64611","lastModified":"1301902086000","name":"Bryan Fisher","type":"Person","_key":"39222"} +{"label":"Jeff Roop","version":23,"id":"64612","lastModified":"1301901984000","name":"Jeff Roop","type":"Person","_key":"39223"} +{"label":"Jamie Chirgwin","version":20,"id":"64613","lastModified":"1301902262000","name":"Jamie Chirgwin","type":"Person","_key":"39224"} +{"label":"Amanda Row","version":20,"id":"64616","lastModified":"1301902262000","name":"Amanda Row","type":"Person","_key":"39225"} +{"label":"Katrina Matthews","version":20,"id":"64615","lastModified":"1301902262000","name":"Katrina Matthews","type":"Person","_key":"39226"} +{"label":"Landy Cannon","version":22,"id":"64614","lastModified":"1301902174000","name":"Landy Cannon","type":"Person","_key":"39227"} +{"label":"Kenner Ames","version":20,"id":"44246","lastModified":"1301902086000","name":"Kenner Ames","type":"Person","_key":"39228"} +{"label":"Robyn Palmer","version":20,"id":"64619","lastModified":"1301902262000","name":"Robyn Palmer","type":"Person","_key":"39229"} +{"label":"Erin Davis","version":20,"id":"64617","lastModified":"1301902262000","name":"Erin Davis","type":"Person","_key":"39230"} +{"label":"Adam MacDonald","version":21,"id":"64618","lastModified":"1301902086000","name":"Adam MacDonald","type":"Person","_key":"39231"} +{"label":"Crystal Ash","version":20,"id":"64621","lastModified":"1301902262000","name":"Crystal Ash","type":"Person","_key":"39232"} +{"label":"Ean Thorley","version":20,"id":"64620","lastModified":"1301902262000","name":"Ean Thorley","type":"Person","_key":"39233"} +{"label":"Kate Kelton","version":20,"id":"64622","lastModified":"1301901726000","name":"Kate Kelton","type":"Person","_key":"39234"} +{"label":"Marium Carvell","version":20,"id":"64624","lastModified":"1301902262000","name":"Marium Carvell","type":"Person","_key":"39235"} +{"label":"Nenna Abuwa","version":20,"id":"64623","lastModified":"1301902262000","name":"Nenna Abuwa","type":"Person","_key":"39236"} +{"label":"Thelma","description":"Vincent, a down-at-the-heels French cab driver, desparately in need of cash for child support is intrigued...","id":"10273","runtime":95,"imdbId":"tt0308977","version":106,"lastModified":"1301903852000","genre":"Drama","title":"Thelma","releaseDate":1024444800000,"language":"en","type":"Movie","_key":"39237"} +{"label":"Pierre-Alain Meier","version":21,"id":"64628","lastModified":"1301902221000","name":"Pierre-Alain Meier","type":"Person","_key":"39238"} +{"label":"Philippe Duclos","version":20,"id":"64645","lastModified":"1301901939000","name":"Philippe Duclos","type":"Person","_key":"39239"} +{"label":"Pascale Ourbih","version":19,"id":"64643","lastModified":"1301902262000","name":"Pascale Ourbih","type":"Person","_key":"39240"} +{"label":"Fran\u00e7ois Germond","version":19,"id":"64644","lastModified":"1301902262000","name":"Fran\u00e7ois Germond","type":"Person","_key":"39241"} +{"label":"Jo\u00eblle Fretz","version":19,"id":"64646","lastModified":"1301902262000","name":"Jo\u00eblle Fretz","type":"Person","_key":"39242"} +{"label":"Ian Baldwin","version":19,"id":"64647","lastModified":"1301902262000","name":"Ian Baldwin","type":"Person","_key":"39243"} +{"label":"Jacques Michel","version":19,"id":"64650","lastModified":"1301902262000","name":"Jacques Michel","type":"Person","_key":"39244"} +{"label":"Marco Calamandrei","version":19,"id":"64648","lastModified":"1301902262000","name":"Marco Calamandrei","type":"Person","_key":"39245"} +{"label":"Silia Klontza","version":19,"id":"64649","lastModified":"1301902262000","name":"Silia Klontza","type":"Person","_key":"39246"} +{"label":"Konstadinos Karvelis","version":19,"id":"64651","lastModified":"1301902262000","name":"Konstadinos Karvelis","type":"Person","_key":"39247"} +{"label":"Nathalia Capo d'Istria","version":19,"id":"64652","lastModified":"1301902262000","name":"Nathalia Capo d'Istria","type":"Person","_key":"39248"} +{"label":"The Deal","description":"A political thriller steeped in illegal oil trading, the Russian Mafia, and governmental cover-ups.","id":"10274","runtime":107,"imdbId":"tt0405861","version":378,"lastModified":"1301903380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ac\/4bc92d44017a3c57fe0124ac\/the-deal-mid.jpg","genre":"Crime","title":"The Deal","releaseDate":1118966400000,"language":"en","type":"Movie","_key":"39249"} +{"label":"Harvey Kahn","version":27,"id":"32733","lastModified":"1301901431000","name":"Harvey Kahn","type":"Person","_key":"39250"} +{"label":"Paul McGillion","version":37,"birthday":"-31194000000","id":"26069","birthplace":"Paisley, Scotland, UK ","lastModified":"1301901151000","name":"Paul McGillion","type":"Person","_key":"39251"} +{"label":"Mike Dopud","version":22,"id":"64674","lastModified":"1301902324000","name":"Mike Dopud","type":"Person","_key":"39252"} +{"label":"Jim Thorburn","version":26,"id":"64671","lastModified":"1302017475000","name":"Jim Thorburn","type":"Person","_key":"39253"} +{"label":"Philip Granger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f56\/4d4d06ad5e73d617b3001f56\/philip-granger-profile.jpg","version":29,"id":"64670","lastModified":"1301902388000","name":"Philip Granger","type":"Person","_key":"39254"} +{"label":"Jennifer Clement","version":24,"id":"64673","lastModified":"1301901612000","name":"Jennifer Clement","type":"Person","_key":"39255"} +{"label":"Christine Lippa","version":23,"id":"64672","lastModified":"1301902262000","name":"Christine Lippa","type":"Person","_key":"39256"} +{"label":"Vyacheslav Vinnik","version":20,"id":"64675","lastModified":"1301902086000","name":"Vyacheslav Vinnik","type":"Person","_key":"39257"} +{"label":"Peter Hall","version":20,"id":"64676","lastModified":"1301902262000","name":"Peter Hall","type":"Person","_key":"39258"} +{"label":"Jay Robert Inslee","version":20,"id":"64677","lastModified":"1301902086000","name":"Jay Robert Inslee","type":"Person","_key":"39259"} +{"label":"Linda Darlow","version":30,"id":"64678","lastModified":"1301901845000","name":"Linda Darlow","type":"Person","_key":"39260"} +{"label":"Frida Betrani","version":21,"id":"64679","lastModified":"1301902262000","name":"Frida Betrani","type":"Person","_key":"39261"} +{"label":"Tony Alcantar","version":22,"id":"64680","lastModified":"1301902109000","name":"Tony Alcantar","type":"Person","_key":"39262"} +{"label":"The Shaolin Temple","description":"The Tang emperor is betrayed by one of his generals, who installs himself as emperor in the East Capital. The son of one of his slave workers escapes to the Shaolin Temple, learns kung fu, and sets out to kill the traitor who killed his father. Based on a true story from Shaolin folklore, but highly fictionalized. ","id":"10275","runtime":95,"imdbId":"tt0079891","version":90,"lastModified":"1301902901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b5\/4bc92d45017a3c57fe0124b5\/shaolin-si-mid.jpg","genre":"Action","title":"The Shaolin Temple","releaseDate":378691200000,"language":"en","type":"Movie","_key":"39263"} +{"label":"Xinyan Zhang","version":21,"id":"64685","lastModified":"1301902307000","name":"Xinyan Zhang","type":"Person","_key":"39264"} +{"label":"Yan Di Hua","version":19,"id":"64695","lastModified":"1301902307000","name":"Yan Di Hua","type":"Person","_key":"39265"} +{"label":"Lan Ding","version":19,"id":"64699","lastModified":"1301901859000","name":"Lan Ding","type":"Person","_key":"39266"} +{"label":"Liu Huai Liang","version":19,"id":"64700","lastModified":"1301902307000","name":"Liu Huai Liang","type":"Person","_key":"39267"} +{"label":"Sun Jian Kui","version":19,"id":"64697","lastModified":"1301902130000","name":"Sun Jian Kui","type":"Person","_key":"39268"} +{"label":"Wang Jue","version":19,"id":"64698","lastModified":"1301901936000","name":"Wang Jue","type":"Person","_key":"39269"} +{"label":"Chun Hua Ji","version":17,"id":"64696","lastModified":"1301901936000","name":"Chun Hua Ji","type":"Person","_key":"39270"} +{"label":"Zhang Jian Wen","version":19,"id":"64705","lastModified":"1301901936000","name":"Zhang Jian Wen","type":"Person","_key":"39271"} +{"label":"Cui Zhi Qiang","version":19,"id":"64702","lastModified":"1301902307000","name":"Cui Zhi Qiang","type":"Person","_key":"39272"} +{"label":"Qingfu Pan","version":19,"id":"64701","lastModified":"1301902307000","name":"Qingfu Pan","type":"Person","_key":"39273"} +{"label":"Wang Guang Quan","version":19,"id":"64704","lastModified":"1301902307000","name":"Wang Guang Quan","type":"Person","_key":"39274"} +{"label":"Hu Jian Qiang","version":20,"id":"64703","lastModified":"1301902306000","name":"Hu Jian Qiang","type":"Person","_key":"39275"} +{"label":"Du Chuan Yang","version":19,"id":"64706","lastModified":"1301901936000","name":"Du Chuan Yang","type":"Person","_key":"39276"} +{"label":"Hai Yu","version":22,"id":"64708","lastModified":"1301902376000","name":"Hai Yu","type":"Person","_key":"39277"} +{"label":"Cheng-Hui Yu","version":21,"id":"64707","lastModified":"1301902220000","name":"Cheng-Hui Yu","type":"Person","_key":"39278"} +{"label":"What About Bob?","description":"Bob Wiley is a man who can hardly leave his house without his lips going numb from fear. Dr. Leo Marvin is the egotistical psychiatrist who has the misfortune of getting Bob pawned off on him by a fellow doctor. What Dr. Marvin thinks is just another aspect of his life that can be meticulously controlled turns out to be anything but.","id":"10276","runtime":99,"imdbId":"tt0103241","trailer":"http:\/\/www.youtube.com\/watch?v=ptmP1lziJw4","version":113,"lastModified":"1301901996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/888\/4c0a21af017a3c29a6000888\/what-about-bob-mid.jpg","genre":"Comedy","title":"What About Bob?","releaseDate":674438400000,"language":"en","tagline":"Bob's a special kind of friend. The kind that drives you crazy!","type":"Movie","_key":"39279"} +{"label":"Return to Paradise","description":"Two friends must choose whether to help a third friend who was arrested in Malaysia for drug possession.","id":"10278","runtime":112,"imdbId":"tt0124595","version":163,"lastModified":"1301904497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e4\/4bc92d49017a3c57fe0124e4\/return-to-paradise-mid.jpg","genre":"Drama","title":"Return to Paradise","releaseDate":902707200000,"language":"en","type":"Movie","_key":"39280"} +{"label":"Summer of Sam","description":"Spike Lee's take on the \"Son of Sam\" murders in New York City during the summer of 1977 centering on the residents of an Italian-American South Bronx neighborhood who live in fear and distrust of one another.","id":"10279","runtime":142,"imdbId":"tt0162677","version":97,"lastModified":"1301905222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f1\/4bc92d4d017a3c57fe0124f1\/summer-of-sam-mid.jpg","genre":"Drama","title":"Summer of Sam","releaseDate":930873600000,"language":"en","tagline":"No one is safe from son of sam","type":"Movie","_key":"39281"} +{"label":"Thinner","description":"A fat Lawyer finds himself growing \"Thinner\" when an old gypsy man places a hex on him. Now the lawyer must call upon his friends in organized crime to help him persuade the gypsy to lift the curse. Time is running out for the desperate lawyer as he draws closer to his own death, and grows ever thinner.","id":"10280","runtime":92,"imdbId":"tt0117894","version":135,"lastModified":"1301903126000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/503\/4bc92d4f017a3c57fe012503\/thinner-mid.jpg","genre":"Drama","title":"Thinner","releaseDate":846201600000,"language":"en","type":"Movie","_key":"39282"} +{"label":"Tom Holland","version":62,"id":"64796","lastModified":"1301974706000","name":"Tom Holland","type":"Person","_key":"39283"} +{"label":"Friday the 13th Part VII:The New Blood","description":"After lying dormant at the bottom of Crystal Lake, Jason is released from his watery grave by Tina, a telekinetic teenager who returned to the site where her father supposedly drowned. She hoped to solve the mystery of his death by using her psychic powers, but she sets off a killing spree helmed by the hockey-masked murderer. Can she control her powers enough to stop Jason?","id":"10281","runtime":90,"imdbId":"tt0095179","version":275,"lastModified":"1301978338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc92d51017a3c57fe01251a\/friday-the-13th-part-vii-the-new-blood-mid.jpg","genre":"Horror","title":"Friday the 13th Part VII:The New Blood","releaseDate":579484800000,"language":"en","tagline":"Jason is back, but this time someone's waiting!","type":"Movie","_key":"39284"} +{"label":"Lar Park-Lincoln","version":27,"id":"64719","lastModified":"1301902196000","name":"Lar Park-Lincoln","type":"Person","_key":"39285"} +{"label":"Susan Jennifer Sullivan","version":22,"id":"64720","lastModified":"1301901643000","name":"Susan Jennifer Sullivan","type":"Person","_key":"39286"} +{"label":"Kevin Spirtas","version":21,"id":"64721","lastModified":"1301901643000","name":"Kevin Spirtas","type":"Person","_key":"39287"} +{"label":"John Carl Buechler","version":43,"id":"64722","lastModified":"1301901651000","name":"John Carl Buechler","type":"Person","_key":"39288"} +{"label":"Karniggels","description":"No overview found.","id":"10282","runtime":94,"imdbId":"tt0102190","version":41,"lastModified":"1301904472000","genre":"Comedy","title":"Karniggels","releaseDate":690076800000,"language":"en","type":"Movie","_key":"39289"} +{"label":"Bernd Michael Lade","version":20,"id":"44384","lastModified":"1301902194000","name":"Bernd Michael Lade","type":"Person","_key":"39290"} +{"label":"Gerhard Marcel","version":20,"id":"64737","lastModified":"1301902334000","name":"Gerhard Marcel","type":"Person","_key":"39291"} +{"label":"Friday the 13th Part VIII:Jason Takes Manhattan","description":"The festivities aboard a Manhattan-bound boat full of high school graduates are interrupted when stowaway Jason Voorhees crashes the party. One of the teens in particular is terrified; she believes she was almost drowned by Jason as a child. As Jason takes over the boat, everyone's fears are realized: He wants to take over Manhattan, too. How will the city be saved from the wrath of the hockey-masked murderer?","id":"10283","runtime":100,"imdbId":"tt0097388","version":124,"lastModified":"1301978272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/531\/4bc92d56017a3c57fe012531\/friday-the-13th-part-viii-jason-takes-manhattan-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"Friday the 13th Part VIII:Jason Takes Manhattan","releaseDate":617587200000,"language":"en","tagline":"The Big Apple's in BIG trouble!","type":"Movie","_key":"39292"} +{"label":"Todd Caldecott","version":19,"id":"64730","lastModified":"1301901680000","name":"Todd Caldecott","type":"Person","_key":"39293"} +{"label":"Tiffany Paulsen","version":21,"id":"64731","lastModified":"1301901587000","name":"Tiffany Paulsen","type":"Person","_key":"39294"} +{"label":"Jensen Daggett","version":23,"id":"64733","lastModified":"1301901673000","name":"Jensen Daggett","type":"Person","_key":"39295"} +{"label":"Barbara Bingham","version":22,"id":"64734","lastModified":"1301902024000","name":"Barbara Bingham","type":"Person","_key":"39296"} +{"label":"Tim Mirkovich","version":21,"id":"61126","lastModified":"1301902110000","name":"Tim Mirkovich","type":"Person","_key":"39297"} +{"label":"Rob Hedden","version":33,"id":"64735","lastModified":"1301901827000","name":"Rob Hedden","type":"Person","_key":"39298"} +{"label":"Jason Goes to Hell:The Final Friday","description":"Jason Voorhees, the living, breathing essence of evil, is back for one fierce, final fling. Since he was tracked down and blown to bits by an FBI task force, everyone assumes he's finally dead. But now, Jason has been reborn with the bone-chilling ability to assume the identity of anyone he touches! In this shocking, blood-soaked finale to Jason's legacy of terror, the horrible secret of his unstoppable killing instinct is finally revealed.","id":"10285","runtime":87,"imdbId":"tt0107254","trailer":"http:\/\/www.youtube.com\/watch?v=1253","version":108,"lastModified":"1301978218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/548\/4bc92d59017a3c57fe012548\/jason-goes-to-hell-the-final-friday-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"Jason Goes to Hell:The Final Friday","releaseDate":745200000000,"language":"en","tagline":"Evil has finally found a home.","type":"Movie","_key":"39299"} +{"label":"John D. LeMay","version":22,"id":"64741","lastModified":"1301902334000","name":"John D. LeMay","type":"Person","_key":"39300"} +{"label":"Kari Keegan","version":22,"id":"64742","lastModified":"1301902149000","name":"Kari Keegan","type":"Person","_key":"39301"} +{"label":"Adam Marcus","version":23,"id":"64743","lastModified":"1301901511000","name":"Adam Marcus","type":"Person","_key":"39302"} +{"label":"Fran\u00e7aise","description":"No overview found.","id":"10286","runtime":84,"imdbId":"tt1239438","version":74,"lastModified":"1301905564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1e\/4d14660e5e73d60832001e1e\/fran-aise-mid.jpg","studio":"Jem Productions","genre":"Drama","title":"Fran\u00e7aise","releaseDate":1211932800000,"language":"en","type":"Movie","_key":"39303"} +{"label":"Souad El-Bouhati","version":23,"id":"64749","lastModified":"1301901998000","name":"Souad El-Bouhati","type":"Person","_key":"39304"} +{"label":"Alexandra Martinez","version":21,"id":"68138","lastModified":"1301901810000","name":"Alexandra Martinez","type":"Person","_key":"39305"} +{"label":"Amal Ayouch","version":21,"id":"68139","lastModified":"1301902149000","name":"Amal Ayouch","type":"Person","_key":"39306"} +{"label":"Le grand alibi","description":"No overview found.","id":"10287","runtime":93,"imdbId":"tt0991347","version":89,"lastModified":"1301904258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1d\/4d7be8885e73d6282a001a1d\/le-grand-alibi-mid.jpg","studio":"SBS Films","genre":"Thriller","title":"Le grand alibi","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"39307"} +{"label":"Pascal Bonitzer","version":38,"id":"64750","lastModified":"1301902334000","name":"Pascal Bonitzer","type":"Person","_key":"39308"} +{"label":"Mathieu Demy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/479\/4d5158f45e73d617c7004479\/mathieu-demy-profile.jpg","biography":"Mathieu Demy est un acteur fran\u00e7ais, n\u00e9 le 15 octobre 1972 \u00e0 Paris (France). Il est le fils d'Agn\u00e8s Varda et Jacques Demy.","version":32,"birthday":"87951600000","id":"64751","birthplace":"Paris, France","lastModified":"1301902371000","name":"Mathieu Demy","type":"Person","_key":"39309"} +{"label":"Fido","description":"Timmy Robinson's best friend in the whole wide world is a six-foot tall rotting zombie named Fido. But when Fido eats the next-door neighbor, Mom and Dad hit the roof, and Timmy has to go to the ends of the earth to keep Fido a part of the family. A boy-and-his-dog movie for grown ups, \"Fido\" will rip your heart out.","id":"10288","runtime":91,"imdbId":"tt0457572","trailer":"http:\/\/www.youtube.com\/watch?v=8Mo6C6up1Qo","version":196,"lastModified":"1301902440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55e\/4bc92d5e017a3c57fe01255e\/fido-mid.jpg","genre":"Comedy","title":"Fido","releaseDate":1157587200000,"language":"en","type":"Movie","_key":"39310"} +{"label":"Kesun Loder","version":17,"id":"64753","lastModified":"1301901935000","name":"Kesun Loder","type":"Person","_key":"39311"} +{"label":"Andrew Currie","version":20,"id":"64754","lastModified":"1301902129000","name":"Andrew Currie","type":"Person","_key":"39312"} +{"label":"15 ans et demi","description":"No overview found.","id":"10289","runtime":97,"imdbId":"tt1075111","homepage":"http:\/\/www.15ansetdemi-lefilm.com\/","version":73,"lastModified":"1301905707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/125\/4cdfd4765e73d60f6d000125\/15-ans-et-demi-mid.jpg","genre":"Comedy","title":"15 ans et demi","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"39313"} +{"label":"Fran\u00e7ois Desagnat","version":23,"id":"64763","lastModified":"1301902020000","name":"Fran\u00e7ois Desagnat","type":"Person","_key":"39314"} +{"label":"Thomas Sorriaux","version":23,"id":"64764","lastModified":"1301902193000","name":"Thomas Sorriaux","type":"Person","_key":"39315"} +{"label":"Juliette Lamboley","version":20,"id":"64767","lastModified":"1301902012000","name":"Juliette Lamboley","type":"Person","_key":"39316"} +{"label":"Las vidas posibles - M\u00f6gliche Leben","description":"No overview found.","id":"10291","runtime":80,"imdbId":"tt0474988","version":40,"lastModified":"1301906733000","studio":"El Angel Films","genre":"Drama","title":"Las vidas posibles - M\u00f6gliche Leben","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"39317"} +{"label":"Sandra Gugliotta","version":21,"id":"64770","lastModified":"1301902334000","name":"Sandra Gugliotta","type":"Person","_key":"39318"} +{"label":"Ana Celentano","version":25,"id":"64771","lastModified":"1301902334000","name":"Ana Celentano","type":"Person","_key":"39319"} +{"label":"Marina Glezer","version":22,"id":"64772","lastModified":"1301902334000","name":"Marina Glezer","type":"Person","_key":"39320"} +{"label":"Omar N\u00fa\u00f1ez","version":21,"id":"64773","lastModified":"1301902149000","name":"Omar N\u00fa\u00f1ez","type":"Person","_key":"39321"} +{"label":"Natalia Oreiro","version":21,"id":"64774","lastModified":"1301902334000","name":"Natalia Oreiro","type":"Person","_key":"39322"} +{"label":"Urban Legends: Bloody Mary","description":"On a prom-night dare, a trio of high school friends chant an incantation, unleashing an evil spirit from the past with deadly consequences.","id":"10292","runtime":93,"imdbId":"tt0451957","version":217,"lastModified":"1301902958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56b\/4bc92d61017a3c57fe01256b\/urban-legends-bloody-mary-mid.jpg","genre":"Horror","title":"Urban Legends: Bloody Mary","releaseDate":1121731200000,"language":"en","type":"Movie","_key":"39323"} +{"label":"Robert Vito","version":25,"id":"64775","lastModified":"1301901686000","name":"Robert Vito","type":"Person","_key":"39324"} +{"label":"Michael Coe","version":25,"id":"64776","lastModified":"1301901827000","name":"Michael Coe","type":"Person","_key":"39325"} +{"label":"Lillith Fields","version":26,"id":"64777","lastModified":"1301901827000","name":"Lillith Fields","type":"Person","_key":"39326"} +{"label":"Nancy Everhard","version":26,"id":"64778","lastModified":"1301901587000","name":"Nancy Everhard","type":"Person","_key":"39327"} +{"label":"Pauline at the Beach","description":"Fifteen year old Pauline and her older cousin, model-shaped Marion, go to the emtying Atlantic coast for an autumn holiday . Marion ignores the approaches of a surfer and falls for Henri, a hedonist who is only interested in a sexual adventure and drops her soon. Pauline's little romance with a young man (Sylvain) is also spoiled by Henri.","id":"10293","runtime":94,"imdbId":"tt0086087","version":106,"lastModified":"1301903717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4c7a860c7b9aa176bd0001dd\/pauline-a-la-plage-mid.jpg","studio":"Les Films Ariane S.A.","genre":"Comedy","title":"Pauline at the Beach","releaseDate":417225600000,"language":"en","type":"Movie","_key":"39328"} +{"label":"Amanda Langlet","version":27,"id":"64781","lastModified":"1301902380000","name":"Amanda Langlet","type":"Person","_key":"39329"} +{"label":"Vacancy","description":"A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.","id":"10294","runtime":80,"imdbId":"tt0452702","trailer":"http:\/\/www.youtube.com\/watch?v=prX7kpImfq0","version":214,"lastModified":"1301902262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/544\/4d7644807b9aa17080001544\/vacancy-mid.jpg","studio":"Screen Gems","genre":"Horror","title":"Vacancy","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"39330"} +{"label":"Miami Supercops - I Poliziotti Dell'Ottava Strada","description":"No overview found.","id":"10295","runtime":95,"imdbId":"tt0089591","version":103,"lastModified":"1301903880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01e\/4c4b1aa45e73d62a4100001e\/miami-supercops-mid.jpg","genre":"Action","title":"Miami Supercops - I Poliziotti Dell'Ottava Strada","releaseDate":503884800000,"language":"en","type":"Movie","_key":"39331"} +{"label":"C.B. Seay","version":22,"id":"64786","lastModified":"1301902187000","name":"C.B. Seay","type":"Person","_key":"39332"} +{"label":"William 'Bo' Jim","version":22,"id":"64787","lastModified":"1301902196000","name":"William 'Bo' Jim","type":"Person","_key":"39333"} +{"label":"Ken Ceresne","version":22,"id":"64788","lastModified":"1301902385000","name":"Ken Ceresne","type":"Person","_key":"39334"} +{"label":"Jackie Castellano","version":22,"id":"64789","lastModified":"1301902376000","name":"Jackie Castellano","type":"Person","_key":"39335"} +{"label":"The Football Factory","description":"The Football Factory is more than just a study of the English obsession with football violence, its about men looking for armies to join, wars to fight and places to belong. A forgotten culture of Anglo Saxon males fed up with being told they're not good enough and using thier fists as a drug they describe as being more potent than sex and drugs put together.","id":"10296","runtime":91,"imdbId":"tt0385705","version":171,"lastModified":"1301902065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4d214d4d5e73d66b2b002b81\/the-football-factory-mid.jpg","genre":"Drama","title":"The Football Factory","releaseDate":1084406400000,"language":"en","type":"Movie","_key":"39336"} +{"label":"How to Marry a Millionaire","description":"Three women set out to find eligible millionaires to marry, but find true love in the process.","id":"10297","runtime":95,"imdbId":"tt0045891","trailer":"http:\/\/www.youtube.com\/watch?v=FpgMRU6yzwE","version":132,"lastModified":"1301903694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b5\/4bc92d69017a3c57fe0125b5\/how-to-marry-a-millionaire-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"How to Marry a Millionaire","releaseDate":-510451200000,"language":"en","type":"Movie","_key":"39337"} +{"label":"Betty Grable","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e11\/4bfed7d9017a3c7031000e11\/betty-grable-profile.jpg","version":27,"id":"64838","lastModified":"1301902151000","name":"Betty Grable","type":"Person","_key":"39338"} +{"label":"Hush...Hush, Sweet Charlotte","description":"The arrival of a lost relative, engulfs terror upon an aging southern belle, forever plagued by a horrifying family secret.","id":"10299","runtime":133,"imdbId":"tt0058213","version":156,"lastModified":"1301905675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/175\/4bd88def017a3c1c06000175\/hush-hush-sweet-charlotte-mid.jpg","studio":"The Associates & Aldrich Company","genre":"Crime","title":"Hush...Hush, Sweet Charlotte","releaseDate":-159235200000,"language":"en","type":"Movie","_key":"39339"} +{"label":"Pater Familias","description":"No overview found.","id":"10300","runtime":90,"imdbId":"tt0368128","version":67,"lastModified":"1301904717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58c\/4d8b35d87b9aa13ae400158c\/pater-familias-mid.jpg","genre":"Drama","title":"Pater Familias","releaseDate":1047600000000,"language":"en","type":"Movie","_key":"39340"} +{"label":"Mario Aterrano","version":21,"id":"68150","lastModified":"1301902334000","name":"Mario Aterrano","type":"Person","_key":"39341"} +{"label":"Francesco Patierno","version":21,"id":"68149","lastModified":"1301902334000","name":"Francesco Patierno","type":"Person","_key":"39342"} +{"label":"Una notte","description":"No overview found.","id":"10301","runtime":91,"imdbId":"tt1300590","homepage":"http:\/\/www.unanotte.it\/","version":83,"lastModified":"1301904042000","genre":"Road Movie","title":"Una notte","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"39343"} +{"label":"Nino D'Angelo","version":26,"id":"64799","lastModified":"1301901842000","name":"Nino D'Angelo","type":"Person","_key":"39344"} +{"label":"Riccardo Zinna","version":20,"id":"68162","lastModified":"1301902381000","name":"Riccardo Zinna","type":"Person","_key":"39345"} +{"label":"Alfonso Postiglione","version":20,"id":"68163","lastModified":"1301902334000","name":"Alfonso Postiglione","type":"Person","_key":"39346"} +{"label":"Stefania Troise","version":20,"id":"68164","lastModified":"1301902172000","name":"Stefania Troise","type":"Person","_key":"39347"} +{"label":"Tony D'Angelo","version":20,"id":"64800","lastModified":"1301902334000","name":"Tony D'Angelo","type":"Person","_key":"39348"} +{"label":"Valentina Vacca","version":20,"id":"68165","lastModified":"1301902149000","name":"Valentina Vacca","type":"Person","_key":"39349"} +{"label":"Iaia Forte","version":26,"id":"68166","lastModified":"1301902334000","name":"Iaia Forte","type":"Person","_key":"39350"} +{"label":"The Jewel of the Nile","description":"Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.","id":"10303","runtime":106,"imdbId":"tt0089370","trailer":"http:\/\/www.youtube.com\/watch?v=KIxJjBO86G4","version":193,"lastModified":"1301906909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ca\/4bc92d6c017a3c57fe0125ca\/the-jewel-of-the-nile-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"The Jewel of the Nile","releaseDate":502502400000,"language":"en","tagline":"When the going gets tough, the tough get going.","type":"Movie","_key":"39351"} +{"label":"Starship Troopers 2: Hero of the Federation","description":"In the sequel to Paul Verhoeven's loved\/reviled sci-fi film, a group of troopers taking refuge in an abandoned outpost after fighting alien bugs, failing to realize that more danger lays in wait.","id":"10304","runtime":88,"imdbId":"tt0367093","version":185,"lastModified":"1301901973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e5\/4bc92d6e017a3c57fe0125e5\/starship-troopers-2-hero-of-the-federation-mid.jpg","studio":"Startroop Pictures Inc.","genre":"Action","title":"Starship Troopers 2: Hero of the Federation","releaseDate":1082764800000,"language":"en","type":"Movie","_key":"39352"} +{"label":"Phil Tippett","version":30,"id":"7727","lastModified":"1301901282000","name":"Phil Tippett","type":"Person","_key":"39353"} +{"label":"Billy Brown","version":24,"id":"64805","lastModified":"1301901536000","name":"Billy Brown","type":"Person","_key":"39354"} +{"label":"Cy Carter","version":28,"id":"64806","lastModified":"1301901532000","name":"Cy Carter","type":"Person","_key":"39355"} +{"label":"Merci pour le chocolat","description":"A mystery set in the environs of Lausanne concerning several plots which wind their way through the elegant homesteads of a couple of well-heeled French-Swiss denizens. Mika is the couture-attired, oh-so-perfect head of Muller Chocolates--a company that manufactures Swiss chocolates. Andre is her suave, concert pianist husband whose first wife died years ago in a mysterious car accident. When Jeanne, a beautiful young woman, enters the home of Mika and Andre, raising questions about her possible","id":"10305","runtime":99,"imdbId":"tt0232083","version":119,"lastModified":"1301904828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/232\/4d59e7a45e73d65e87000232\/merci-pour-le-chocolat-mid.jpg","genre":"Crime","title":"Merci pour le chocolat","releaseDate":965088000000,"language":"en","type":"Movie","_key":"39356"} +{"label":"Poltergeist III","description":"Carol Anne has been sent to live with her Aunt and Uncle in an effort to hide her from the clutches of the ghostly Reverend Kane, but he tracks her down and terrorises her in her relatives' appartment in a tall glass building. Will he finally achieve his target and capture Carol Anne again, or will Tangina be able, yet again, to thwart him?","id":"10306","runtime":98,"imdbId":"tt0095889","version":95,"lastModified":"1301903448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab9\/4be556a8017a3c35b9000ab9\/poltergeist-iii-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Horror","title":"Poltergeist III","releaseDate":581904000000,"language":"en","type":"Movie","_key":"39357"} +{"label":"Kipley Wentz","version":20,"id":"64820","lastModified":"1301901993000","name":"Kipley Wentz","type":"Person","_key":"39358"} +{"label":"Stigmata","description":"A priest from the Vatican is sent in to investigate claims that a town in Brazil has a church where statues bleed from the eyes. Meanwhile, a young woman in the U.S. begins to show signs of stigmata. ","id":"10307","runtime":103,"imdbId":"tt0145531","version":141,"lastModified":"1301902117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ff\/4bc92d72017a3c57fe0125ff\/stigmata-mid.jpg","genre":"Drama","title":"Stigmata","releaseDate":936921600000,"language":"en","type":"Movie","_key":"39359"} +{"label":"Warum l\u00e4uft Herr R. Amok?","description":"No overview found.","id":"10308","runtime":84,"imdbId":"tt0066546","version":44,"lastModified":"1301904472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c9\/4d4042157b9aa15bb50023c9\/warum-l-uft-herr-r-amok-mid.jpg","studio":"Antiteater-X-Film","genre":"Drama","title":"Warum l\u00e4uft Herr R. Amok?","releaseDate":15379200000,"language":"en","type":"Movie","_key":"39360"} +{"label":"Franz Maron","version":21,"id":"66083","lastModified":"1301902181000","name":"Franz Maron","type":"Person","_key":"39361"} +{"label":"H\u00e4ndler der vier Jahreszeiten","description":"No overview found.","id":"10309","runtime":88,"imdbId":"tt0067227","version":37,"lastModified":"1301904472000","studio":"Tango-Film","genre":"Drama","title":"H\u00e4ndler der vier Jahreszeiten","releaseDate":66528000000,"language":"en","type":"Movie","_key":"39362"} +{"label":"Die bitteren Tr\u00e4nen der Petra von Kant","description":"No overview found.","id":"10310","runtime":124,"imdbId":"tt0068278","version":44,"lastModified":"1301904472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef8\/4d233d7d5e73d66b27003ef8\/die-bitteren-tr-nen-der-petra-von-kant-mid.jpg","studio":"Filmverlag der Autoren","genre":"Drama","title":"Die bitteren Tr\u00e4nen der Petra von Kant","releaseDate":78278400000,"language":"en","type":"Movie","_key":"39363"} +{"label":"Martha","description":"No overview found.","id":"10311","runtime":116,"imdbId":"tt0070374","version":106,"lastModified":"1301904464000","studio":"Pro-ject Filmproduktion","genre":"Drama","title":"Martha","releaseDate":138931200000,"language":"en","type":"Movie","_key":"39364"} +{"label":"Patch Adams","description":"Meet Patch Adams, a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humor is the best medicine, and he's willing to do just anything to make his patients laugh - even if it means risking his own career.","id":"10312","runtime":115,"imdbId":"tt0129290","version":154,"lastModified":"1301902932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad0\/4d50111c7b9aa13ab400bad0\/patch-adams-mid.jpg","genre":"Comedy","title":"Patch Adams","releaseDate":908928000000,"language":"en","tagline":"Laughter is contagious.","type":"Movie","_key":"39365"} +{"label":"The Men Who Stare at Goats","description":"A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.","id":"10313","runtime":93,"imdbId":"tt1234548","trailer":"http:\/\/www.youtube.com\/watch?v=GC2TzspJn5A","homepage":"http:\/\/www.themenwhostareatgoatsmovie.com\/","version":345,"lastModified":"1301901898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/124\/4d2bdda25e73d63a5d000124\/the-men-who-stare-at-goats-mid.jpg","studio":"BBC Films","genre":"Action","title":"The Men Who Stare at Goats","releaseDate":1252368000000,"language":"en","tagline":"No goats. No glory.","type":"Movie","_key":"39366"} +{"label":"She's All That","description":"Jock and class president Zack Siler accepts his friends' bet to make over the geeky, bespectacled Laney Boggs into a prom queen beauty. But along the way, Zack falls in love with his sparkling creation.","id":"10314","runtime":95,"imdbId":"tt0160862","version":101,"lastModified":"1301903184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e9\/4c5b79435e73d63a700005e9\/she-s-all-that-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"She's All That","releaseDate":917568000000,"language":"en","tagline":"These two opposites attract... but EVERYONE'S trying to keep them apart!","type":"Movie","_key":"39367"} +{"label":"Robert Iscove","version":37,"id":"64815","lastModified":"1301902179000","name":"Robert Iscove","type":"Person","_key":"39368"} +{"label":"Kevin Pollak","version":7,"id":"229429","lastModified":"1301904060000","name":"Kevin Pollak","type":"Person","_key":"39369"} +{"label":"Fantastic Mr. Fox","description":"The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.","id":"10315","runtime":87,"imdbId":"tt0432283","trailer":"http:\/\/www.youtube.com\/watch?v=n2igjYFojUo","homepage":"http:\/\/www.fantasticmrfoxmovie.com\/","version":244,"lastModified":"1301901556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/648\/4bc92d7b017a3c57fe012648\/fantastic-mr-fox-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Adventure","title":"Fantastic Mr. Fox","releaseDate":1255478400000,"language":"en","tagline":"Dig the life fantastic!","type":"Movie","_key":"39370"} +{"label":"Farragut North","description":"An idealistic staffer for a newbie presidential candidate gets a crash course on dirty politics during his stint on the campaign trail. Based on the play by Beau Willimon.","id":"10316","runtime":0,"imdbId":"tt1124035","version":71,"lastModified":"1301908573000","genre":"Drama","title":"Farragut North","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"39371"} +{"label":"Our Brand Is Crisis","description":"No overview found.","id":"10317","runtime":0,"imdbId":"tt1018765","version":68,"lastModified":"1301907403000","title":"Our Brand Is Crisis","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"39372"} +{"label":"Peter Straughan","version":48,"id":"64814","lastModified":"1301902025000","name":"Peter Straughan","type":"Person","_key":"39373"} +{"label":"Est","description":"No overview found.","id":"10318","runtime":0,"imdbId":"tt1212008","version":68,"lastModified":"1301417723000","title":"Est","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"39374"} +{"label":"Woyzeck","description":"Franz Woyzeck (Kinski) is a hapless, hopeless soldier, alone and powerless in society, assaulted from all sides by forces he cannot control.","id":"10319","runtime":82,"imdbId":"tt0080149","version":95,"lastModified":"1301906482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56a\/4c961a4b5e73d63a7400056a\/woyzeck-mid.jpg","genre":"Drama","title":"Woyzeck","releaseDate":296438400000,"language":"en","type":"Movie","_key":"39375"} +{"label":"Wolfgang Reichmann","version":20,"id":"26411","lastModified":"1301901997000","name":"Wolfgang Reichmann","type":"Person","_key":"39376"} +{"label":"The Ring Two","description":"A terrifying legacy haunts a single mother in this sequel to the frightening box-office hit The Ring. Hoping to leave their terrifying experiences in Seattle behind them, Rachel Keller (Naomi Watts) and her son, Aidan (David Dorfman), move to the small town of Astoria, OR, where Rachel takes a job writing for the local newspaper. When Rachel learns of an unexplained murder, which occurred after a ","id":"10320","runtime":110,"imdbId":"tt0377109","version":141,"lastModified":"1301902840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/663\/4bc92d7d017a3c57fe012663\/the-ring-two-mid.jpg","studio":"DreamWorks SKG","genre":"Horror","title":"The Ring Two","releaseDate":1111017600000,"language":"en","tagline":"The dead don't sleep.","type":"Movie","_key":"39377"} +{"label":"Being There","description":"A simple-minded gardener named Chance has spent all his life in the Washington D.C. house of an old man. When the man dies, Chance is put out on the street with no knowledge of the world except what he has learned from television.","id":"10322","runtime":130,"imdbId":"tt0078841","trailer":"http:\/\/www.youtube.com\/watch?v=FcPQ9gww_qc","version":215,"lastModified":"1301903978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c7\/4ce004957b9aa168af0000c7\/being-there-mid.jpg","studio":"Lorimar Film Entertainment","genre":"Comedy","title":"Being There","releaseDate":314409600000,"language":"en","tagline":"Getting there is half the fun; being there is all of it!","type":"Movie","_key":"39378"} +{"label":"Clash of the Titans","description":"A film adaption of the myth of Perseus and his quest to battle both Medusa and the Kraken monster to save the Princess Andromeda.","id":"10323","runtime":118,"imdbId":"tt0082186","trailer":"http:\/\/www.youtube.com\/watch?v=3207","version":254,"lastModified":"1301901944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4c60956e5e73d634640001dd\/clash-of-the-titans-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Clash of the Titans","releaseDate":361152000000,"language":"en","tagline":"An Epic Entertainment Spectacular!","type":"Movie","_key":"39379"} +{"label":"Harry Hamlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4ce0b85e5e73d60f6e0002cb\/harry-hamlin-profile.jpg","version":32,"id":"64825","lastModified":"1301901713000","name":"Harry Hamlin","type":"Person","_key":"39380"} +{"label":"Desmond Davis","version":26,"id":"64823","lastModified":"1301901831000","name":"Desmond Davis","type":"Person","_key":"39381"} +{"label":"If Lucy Fell","description":"Joe and Lucy are roommates and best friends. Lucy, whose love life is embarrassingly dull, convinces Joe, who is infatuated with a neighbor he's never met, that if they don't have stable romances within a month, they must jump off the Brooklyn Bridge.","id":"10324","runtime":92,"imdbId":"tt0116606","version":171,"lastModified":"1301905959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b2\/4bc92d8a017a3c57fe0126b2\/if-lucy-fell-mid.jpg","genre":"Comedy","title":"If Lucy Fell","releaseDate":831513600000,"language":"en","type":"Movie","_key":"39382"} +{"label":"Eric Schaeffer","version":30,"id":"68185","lastModified":"1301902205000","name":"Eric Schaeffer","type":"Person","_key":"39383"} +{"label":"Dominic Chianese","version":31,"id":"68186","lastModified":"1301902222000","name":"Dominic Chianese","type":"Person","_key":"39384"} +{"label":"Emily Hart","version":20,"id":"68187","lastModified":"1301902027000","name":"Emily Hart","type":"Person","_key":"39385"} +{"label":"Forever Young","description":"A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.","id":"10326","runtime":102,"imdbId":"tt0104291","version":157,"lastModified":"1301902335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c7\/4d936af65e73d622510012c7\/forever-young-mid.jpg","studio":"Warner Bros. Pictures","genre":"Adventure","title":"Forever Young","releaseDate":724032000000,"language":"en","type":"Movie","_key":"39386"} +{"label":"Isabel Glasser","version":24,"id":"64826","lastModified":"1301901695000","name":"Isabel Glasser","type":"Person","_key":"39387"} +{"label":"Legally Blonde 2: Red, White & Blonde","description":"After Elle Woods, the eternally perky, fashionably adventurous, famously blonde Harvard Law grad gets fired by her law firm because of her opposition to animal testing, she takes her fight to Washington. As an aide for Congresswoman Victoria Rudd, she pushes for a bill to ban testing once and for all, but it's her building's doorman who advises her on how to get her way on the Hill.","id":"10327","runtime":95,"imdbId":"tt0333780","trailer":"http:\/\/www.youtube.com\/watch?v=w6rk-sWl94I","version":164,"lastModified":"1301902513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ef\/4d418f287b9aa15bb50036ef\/legally-blonde-2-red-white-blonde-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Legally Blonde 2: Red, White & Blonde","releaseDate":1056931200000,"language":"en","tagline":"Bigger. Bolder. Blonder.","type":"Movie","_key":"39388"} +{"label":"Charles Herman-Wurmfeld","version":27,"id":"76247","lastModified":"1301901400000","name":"Charles Herman-Wurmfeld","type":"Person","_key":"39389"} +{"label":"Cocoon","description":"A group of aliens return to earth to take back some cocoons of their people they left behind from an earlier trip. They kept the recovered cocoons in the swimming pool of a house they rented in a small Florida town. Their mission is hampered by a number of old people from an elderly home nearby, who have been secretly using the pool and discovering the unusual power of these cocoons.","id":"10328","runtime":117,"imdbId":"tt0088933","version":350,"lastModified":"1301903979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ea\/4cf2885c7b9aa1449a0006ea\/cocoon-mid.jpg","genre":"Comedy","title":"Cocoon","releaseDate":488160000000,"language":"en","type":"Movie","_key":"39390"} +{"label":"Congo","description":"Eight people embark on an expedition into the Congo, a mysterious expanse of unexplored Africa where human greed and the laws of nature have gone berserk. When the thrill-seekers -- some with ulterior motives -- stumble across a race of killer apes.","id":"10329","runtime":109,"imdbId":"tt0112715","trailer":"http:\/\/www.youtube.com\/watch?v=icu59hembVk","version":328,"lastModified":"1301902747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f4\/4bc92d90017a3c57fe0126f4\/congo-mid.jpg","genre":"Action","title":"Congo","releaseDate":802656000000,"language":"en","tagline":"Where you are the endangered species.","type":"Movie","_key":"39391"} +{"label":"Freaky Friday","description":"Jamie Lee Curtis stars as Tess Coleman, mother of 15-year-old Anna (Lindsay Lohan), in this remake of the 1976 Jodie Foster comedy. Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fianc\u00e9 (Mark Harmon). When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.","id":"10330","runtime":97,"imdbId":"tt0322330","version":143,"lastModified":"1302058904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fd\/4bc92d94017a3c57fe0126fd\/freaky-friday-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"Freaky Friday","releaseDate":1059955200000,"language":"en","tagline":"Mondays are manic. Wednesdays are wild. And Fridays are about to get a little freaky.","type":"Movie","_key":"39392"} +{"label":"Mark S. Waters","version":22,"id":"142693","lastModified":"1302068324000","name":"Mark S. Waters","type":"Person","_key":"39393"} +{"label":"Night of the Living Dead","description":"A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse. Although not the first zombie film, Night of the Living Dead is the progenitor of the contemporary \"zombie apocalypse\" horror film, and it greatly influenced the modern pop-culture zombie archetype.","id":"10331","runtime":96,"imdbId":"tt0063350","trailer":"http:\/\/www.youtube.com\/watch?v=1717","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/night-of-the-living-dead","version":350,"lastModified":"1301902281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/713\/4bc92d96017a3c57fe012713\/night-of-the-living-dead-mid.jpg","genre":"Horror","title":"Night of the Living Dead","releaseDate":-39484800000,"language":"en","type":"Movie","_key":"39394"} +{"label":"Duane Jones","version":19,"id":"97912","lastModified":"1301901937000","name":"Duane Jones","type":"Person","_key":"39395"} +{"label":"Judith O'Dea","version":26,"id":"97913","lastModified":"1301901643000","name":"Judith O'Dea","type":"Person","_key":"39396"} +{"label":"Karl Hardman","version":25,"id":"97914","lastModified":"1301902928000","name":"Karl Hardman","type":"Person","_key":"39397"} +{"label":"Marilyn Eastman","version":21,"id":"97915","lastModified":"1301902480000","name":"Marilyn Eastman","type":"Person","_key":"39398"} +{"label":"Keith Wayne","version":20,"id":"97916","lastModified":"1301902480000","name":"Keith Wayne","type":"Person","_key":"39399"} +{"label":"Judith Ridley","version":20,"id":"97917","lastModified":"1301902480000","name":"Judith Ridley","type":"Person","_key":"39400"} +{"label":"Kyra Schon","version":20,"id":"97918","lastModified":"1301902480000","name":"Kyra Schon","type":"Person","_key":"39401"} +{"label":"Charles Craig","version":20,"id":"97919","lastModified":"1301903041000","name":"Charles Craig","type":"Person","_key":"39402"} +{"label":"S. William Hinzman","version":43,"id":"97920","lastModified":"1301902708000","name":"S. William Hinzman","type":"Person","_key":"39403"} +{"label":"Bill 'Chilly Billy' Cardille","version":19,"id":"97921","lastModified":"1301902480000","name":"Bill 'Chilly Billy' Cardille","type":"Person","_key":"39404"} +{"label":"Russell Streiner","version":28,"id":"64833","lastModified":"1301901993000","name":"Russell Streiner","type":"Person","_key":"39405"} +{"label":"John A. Russo","version":45,"id":"64831","lastModified":"1301901770000","name":"John A. Russo","type":"Person","_key":"39406"} +{"label":"Ouija","description":"No overview found.","id":"10332","runtime":0,"version":42,"lastModified":"1301907977000","studio":"Universal Pictures","title":"Ouija","releaseDate":1352419200000,"language":"en","type":"Movie","_key":"39407"} +{"label":"The Prince of Tides","description":"A troubled man talks to his suicidal sister's psychiatrist about their family history and falls in love with her in the process.","id":"10333","runtime":132,"imdbId":"tt0102713","version":183,"lastModified":"1301905546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4ca792c05e73d643eb0002a7\/prince-of-tides-mid.jpg","genre":"Drama","title":"The Prince of Tides","releaseDate":693619200000,"language":"en","type":"Movie","_key":"39408"} +{"label":"Beverly Hills Cop IV","description":"No overview found.","id":"10334","runtime":0,"imdbId":"tt0910842","version":57,"lastModified":"1301905706000","studio":"Di Bonaventura Pictures","genre":"Comedy","title":"Beverly Hills Cop IV","releaseDate":1325376000000,"language":"en","type":"Movie","_key":"39409"} +{"label":"El coraz\u00f3n de la tierra","description":"No overview found.","id":"10335","runtime":90,"imdbId":"tt0763839","version":88,"lastModified":"1301903725000","genre":"Drama","title":"El coraz\u00f3n de la tierra","releaseDate":1174089600000,"language":"en","type":"Movie","_key":"39410"} +{"label":"Antonio Cuadri","version":27,"id":"64845","lastModified":"1301902151000","name":"Antonio Cuadri","type":"Person","_key":"39411"} +{"label":"Jorge Perugorr\u00eda","version":24,"id":"64846","lastModified":"1301901842000","name":"Jorge Perugorr\u00eda","type":"Person","_key":"39412"} +{"label":"Spawn","description":"After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind. ","id":"10336","runtime":96,"imdbId":"tt0120177","version":168,"lastModified":"1301902149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a44\/4d42ddbc5e73d65385000a44\/spawn-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Spawn","releaseDate":870393600000,"language":"en","tagline":"Born in darkness. Sworn to justice.","type":"Movie","_key":"39413"} +{"label":"Mark A.Z. Dipp\u00e9","version":27,"id":"87130","lastModified":"1301902381000","name":"Mark A.Z. Dipp\u00e9","type":"Person","_key":"39414"} +{"label":"Bugsy","description":"New York gangster Ben 'Bugsy' Siegel takes a brief business trip to Los Angeles. A sharp-dressing womanizer with a foul temper, Siegel doesn't hesitate to kill or maim anyone crossing him. In L.A. the life, the movies, and most of all strong-willed Virginia Hill detain him while his family wait back home. Then a trip to a run-down gambling joint at a spot in the desert known as Las Vegas gives him his big idea.","id":"10337","runtime":134,"imdbId":"tt0101516","version":178,"lastModified":"1301903560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/125\/4bf110d9017a3c3213000125\/bugsy-mid.jpg","genre":"Action","title":"Bugsy","releaseDate":692323200000,"language":"en","type":"Movie","_key":"39415"} +{"label":"Those Magnificent Men in Their Flying Machines","description":"Star studded comedy about a early 20th century air race from Britain to France.","id":"10338","runtime":138,"imdbId":"tt0059797","version":150,"lastModified":"1301906481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73b\/4bc92d9c017a3c57fe01273b\/those-magnificent-men-in-their-flying-machines-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Those Magnificent Men in Their Flying Machines","releaseDate":-143424000000,"language":"en","type":"Movie","_key":"39416"} +{"label":"Moby Dick","description":"In 1841, young Ishmael signs up for service abroad the Pequod, a whaler sailing out of New Bedford. The ship is under the command of Captain Ahab, a strict disciplinarian who exhorts his men to find Moby Dick, the great white whale. Ahab lost his his leg to that creature and is desperate for revenge. As the crew soon learns, he will stop at nothing to gain satisfaction.","id":"10339","runtime":116,"imdbId":"tt0049513","trailer":"http:\/\/www.youtube.com\/watch?v=37ZhhTDxao0","version":143,"lastModified":"1301902193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/748\/4bc92d9d017a3c57fe012748\/moby-dick-mid.jpg","genre":"Action","title":"Moby Dick","releaseDate":-426470400000,"language":"en","type":"Movie","_key":"39417"} +{"label":"Lady and the Tramp","description":"Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.","id":"10340","runtime":75,"imdbId":"tt0048280","trailer":"http:\/\/www.youtube.com\/watch?v=5_bh4-fIAOg","version":110,"lastModified":"1301901813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/760\/4bc92d9e017a3c57fe012760\/lady-and-the-tramp-mid.jpg","genre":"Animation","title":"Lady and the Tramp","releaseDate":-459043200000,"language":"en","tagline":"She's from the leash and license set... he's footloose and collar free!","type":"Movie","_key":"39418"} +{"label":"Clyde Geronimi","version":81,"id":"64864","lastModified":"1302062361000","name":"Clyde Geronimi","type":"Person","_key":"39419"} +{"label":"Peggy Lee","version":32,"id":"64870","lastModified":"1301901421000","name":"Peggy Lee","type":"Person","_key":"39420"} +{"label":"Barbara Luddy","version":29,"id":"64871","lastModified":"1301901319000","name":"Barbara Luddy","type":"Person","_key":"39421"} +{"label":"Larry Roberts","version":25,"id":"64872","lastModified":"1301901363000","name":"Larry Roberts","type":"Person","_key":"39422"} +{"label":"Until the End of the World","description":"Until The End of the World is an odyssey for the modern age. As with Homer's Odyssey, the purpose of the journey is to restore sight -- a spiritual reconciliation between an obsessed father and a deserted son. Dr. Farber, in trying to find a cure for his wife's blindness, has created a device that allows the user to send images directly to the brain, enabling the blind to see.\n","id":"10341","runtime":158,"imdbId":"tt0101458","version":112,"lastModified":"1301903819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/106\/4c2622535e73d61a95000106\/bis-ans-ende-der-welt-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Until the End of the World","releaseDate":684633600000,"language":"en","type":"Movie","_key":"39423"} +{"label":"Teaching Mrs. Tingle","description":"No overview found.","id":"10342","runtime":96,"imdbId":"tt0133046","version":95,"lastModified":"1301904205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/772\/4bc92d9f017a3c57fe012772\/teaching-mrs-tingle-mid.jpg","genre":"Comedy","title":"Teaching Mrs. Tingle","releaseDate":934329600000,"language":"en","type":"Movie","_key":"39424"} +{"label":"Kevin Williamson","version":62,"id":"26458","lastModified":"1302061538000","name":"Kevin Williamson","type":"Person","_key":"39425"} +{"label":"The Fly: 2","description":"Martin Brundle, born of the human\/fly, is adopted by his father's place of employment (Bartok Inc.) while the employees simply wait for his mutant chromosomes to come out of their dormant state.","id":"10344","runtime":105,"imdbId":"tt0097368","version":149,"lastModified":"1301902650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ed\/4c64e1ea5e73d634630008ed\/the-fly-ii-mid.jpg","studio":"20th Century Fox","genre":"Horror","title":"The Fly: 2","releaseDate":603072000000,"language":"en","type":"Movie","_key":"39426"} +{"label":"Ann Marie Lee","version":25,"id":"64874","lastModified":"1301902366000","name":"Ann Marie Lee","type":"Person","_key":"39427"} +{"label":"Chris Walas","version":28,"id":"64875","lastModified":"1301901649000","name":"Chris Walas","type":"Person","_key":"39428"} +{"label":"K-9","description":"No overview found.","id":"10345","runtime":101,"imdbId":"tt0097637","version":146,"lastModified":"1301902885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4bc92da3017a3c57fe012784\/k-9-mid.jpg","studio":"Universal Home Entertainment","genre":"Action","title":"K-9","releaseDate":609724800000,"language":"en","type":"Movie","_key":"39429"} +{"label":"Rod Daniel","version":33,"id":"64877","lastModified":"1301901784000","name":"Rod Daniel","type":"Person","_key":"39430"} +{"label":"Dobermann","description":"The charismatic criminal Dobermann, who got his first gun when he was christened, leads a gang of brutal robbers. After a complex and brutal bank robbery, they are being hunted by the Paris police. The hunt is led by the sadistic cop Christini, who only has one goal: to catch Dobermann at any cost.","id":"10347","runtime":103,"imdbId":"tt0118996","version":127,"lastModified":"1301902333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79b\/4bc92da4017a3c57fe01279b\/dobermann-mid.jpg","studio":"PolyGram Audiovisuel","genre":"Action","title":"Dobermann","releaseDate":866592000000,"language":"en","type":"Movie","_key":"39431"} +{"label":"Thunderbolt","description":"In order to release his kidnapped sister, sports car mechanic Jackie Chan has to beat a super-criminal street racer.","id":"10348","runtime":108,"imdbId":"tt0114126","version":172,"lastModified":"1301903369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a8\/4bc92da5017a3c57fe0127a8\/pik-lik-feng-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Thunderbolt","releaseDate":810518400000,"language":"en","type":"Movie","_key":"39432"} +{"label":"Anita Yuen","version":30,"id":"64895","lastModified":"1301902034000","name":"Anita Yuen","type":"Person","_key":"39433"} +{"label":"Michael Wong","version":33,"id":"64896","lastModified":"1301901412000","name":"Michael Wong","type":"Person","_key":"39434"} +{"label":"Thorsten Nickel","version":22,"id":"64898","lastModified":"1301902199000","name":"Thorsten Nickel","type":"Person","_key":"39435"} +{"label":"Mars","version":26,"id":"119454","lastModified":"1301902223000","name":"Mars","type":"Person","_key":"39436"} +{"label":"Gordon Chan","version":48,"id":"64901","lastModified":"1301901803000","name":"Gordon Chan","type":"Person","_key":"39437"} +{"label":"The Dark Half","description":"A writer's fictional alter-ego wants to take over his life...at any price.","id":"10349","runtime":122,"imdbId":"tt0106664","trailer":"http:\/\/www.youtube.com\/watch?v=5y_PwZIV7GQ","version":89,"lastModified":"1301903686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b1\/4bc92da6017a3c57fe0127b1\/the-dark-half-mid.jpg","genre":"Drama","title":"The Dark Half","releaseDate":735523200000,"language":"en","type":"Movie","_key":"39438"} +{"label":"Wing Commander","description":"The Hollywood version of the popular video game series \"Wing Commander\". Unlike other video games to feature film transitions, series creator Chris Roberts was heavily involved in the film's creation. This is the story of Christopher Blair and Todd \"Maniac\" Marshall as they arrive at the Tiger Claw and are soon forced to stop a Kilrathi fleet heading towards Earth.","id":"10350","runtime":100,"imdbId":"tt0131646","version":199,"lastModified":"1301902453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ba\/4bc92da7017a3c57fe0127ba\/wing-commander-mid.jpg","genre":"Science Fiction","title":"Wing Commander","releaseDate":921196800000,"language":"en","type":"Movie","_key":"39439"} +{"label":"Chris Roberts","version":48,"id":"20305","lastModified":"1301901495000","name":"Chris Roberts","type":"Person","_key":"39440"} +{"label":"Wishmaster","description":"The Djinn having been released from his ancient prison seeks to capture the soul of the woman who discovered him, thereby opening a portal and freeing his fellow Djinn to take over the earth.","id":"10351","runtime":90,"imdbId":"tt0120524","trailer":"http:\/\/www.youtube.com\/watch?v=881","version":145,"lastModified":"1301904347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c3\/4bc92daa017a3c57fe0127c3\/wishmaster-mid.jpg","genre":"Horror","title":"Wishmaster","releaseDate":874627200000,"language":"en","type":"Movie","_key":"39441"} +{"label":"Tammy Lauren","version":24,"id":"64932","lastModified":"1301901953000","name":"Tammy Lauren","type":"Person","_key":"39442"} +{"label":"Chris Lemmon","version":23,"id":"64933","lastModified":"1301902053000","name":"Chris Lemmon","type":"Person","_key":"39443"} +{"label":"Robert Kurtzman","version":26,"id":"11419","lastModified":"1301901445000","name":"Robert Kurtzman","type":"Person","_key":"39444"} +{"label":"Les couloirs du temps : Les visiteurs 2","description":"No overview found.","id":"10353","runtime":107,"imdbId":"tt0120882","version":86,"lastModified":"1301902059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d4\/4bc92dab017a3c57fe0127d4\/les-couloirs-du-temps-les-visiteurs-2-mid.jpg","genre":"Comedy","title":"Les couloirs du temps : Les visiteurs 2","releaseDate":887155200000,"language":"en","type":"Movie","_key":"39445"} +{"label":"Jean-Marie Poir\u00e9","version":44,"id":"64909","lastModified":"1301901373000","name":"Jean-Marie Poir\u00e9","type":"Person","_key":"39446"} +{"label":"Marie-Anne Chazel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d0\/4d6fd0fc5e73d65a1e0009d0\/marie-anne-chazel-profile.jpg","version":44,"id":"64913","lastModified":"1301901173000","name":"Marie-Anne Chazel","type":"Person","_key":"39447"} +{"label":"True Crime","description":"Clint Eastwood plays Steve Everett, a journalist recovering from alcoholism, given the task of covering the execution of murderer Frank Beechum (played by Isaiah Washington). Everett discovers that Beechum might be innocent, but has only a few hours to prove his theory and save Beechum's life.","id":"10354","runtime":127,"imdbId":"tt0139668","version":343,"lastModified":"1301905044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07b\/4bf0d2dc017a3c321300007b\/true-crime-mid.jpg","genre":"Drama","title":"True Crime","releaseDate":921801600000,"language":"en","type":"Movie","_key":"39448"} +{"label":"Shiri","description":"North Korea's 8th Special Forces hijacks a shipment of CTX, a potent new liquid explosive, and threatens South Korea as part of a plot to re-unify the two countries.Ryu and Lee, special agents of O.P., South Korea's secret intelligence service, attempt to track down the terrorists and find the CTX. Meanwhile Hee, the 8th's ultra-bad female sniper, resurfaces to wreak havoc and haunt Ryu. ","id":"10355","runtime":125,"imdbId":"tt0192657","trailer":"http:\/\/www.youtube.com\/watch?v=lQO-XiLt5XY","version":142,"lastModified":"1301903384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4d43735e7b9aa11c740031f0\/shiri-mid.jpg","genre":"Action","title":"Shiri","releaseDate":918864000000,"language":"en","type":"Movie","_key":"39449"} +{"label":"Johnny Kim","version":21,"id":"64881","lastModified":"1301901790000","name":"Johnny Kim","type":"Person","_key":"39450"} +{"label":"Suk-kyu Han","version":30,"id":"80457","lastModified":"1301902400000","name":"Suk-kyu Han","type":"Person","_key":"39451"} +{"label":"Je-gyu Kang","version":26,"id":"64883","lastModified":"1301901504000","name":"Je-gyu Kang","type":"Person","_key":"39452"} +{"label":"The Confessor","description":"CHRISTIAN SLATER plays a worldly and urbane priest who is forced to challenge his comfortable existence as an ecclesiastical spin-doctor when he comes to believe in the innocence of a young priest accused of murder. His only ally, a journalist, is also his former sweetheart.","id":"10356","runtime":88,"imdbId":"tt0372303","trailer":"http:\/\/www.youtube.com\/watch?v=dopMKyIJQV0","version":114,"lastModified":"1301905961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ec\/4bc92dad017a3c57fe0127ec\/the-good-shepherd-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Drama","title":"The Confessor","releaseDate":1142899200000,"language":"en","type":"Movie","_key":"39453"} +{"label":"Von Flores","version":25,"id":"64888","lastModified":"1301902020000","name":"Von Flores","type":"Person","_key":"39454"} +{"label":"Lewin Webb","version":31,"id":"62659","lastModified":"1301901575000","name":"Lewin Webb","type":"Person","_key":"39455"} +{"label":"Volcano","description":"In the city of Los Angeles, it is nice quiet and routine. Until an earthquake occurred. The director of the city's emergency management, Michael Roark believes that something is big is about to happen, so he finds a geologist named Amy Barnes to help him investigate. What they will realize that the earthquake is a sign of a volcano forming in the city. The volcano formed at the La Brea Tarpits. Now Roark has to use every resource in the city to stop the volcano from consuming Los Angeles.","id":"10357","runtime":104,"imdbId":"tt0120461","trailer":"http:\/\/www.youtube.com\/watch?v=cuhVe8Zmbj0","version":188,"lastModified":"1301903291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f5\/4bc92dad017a3c57fe0127f5\/volcano-mid.jpg","genre":"Action","title":"Volcano","releaseDate":861926400000,"language":"en","tagline":"The coast is toast","type":"Movie","_key":"39456"} +{"label":"Zack and Miri Make a Porno","description":"Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.","id":"10358","runtime":102,"imdbId":"tt1007028","trailer":"http:\/\/www.youtube.com\/watch?v=yQSDZxyE5Tk","version":230,"lastModified":"1301902010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95d\/4d7aca0e5e73d65ec600095d\/zack-and-miri-make-a-porno-mid.jpg","studio":"Blue Askew","genre":"Comedy","title":"Zack and Miri Make a Porno","releaseDate":1221696000000,"language":"en","tagline":"What would you do to get out of debt?","type":"Movie","_key":"39457"} +{"label":"Gerry Bednob","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/520\/4ce400297b9aa168b4000520\/gerry-bednob-profile.jpg","version":22,"id":"76525","lastModified":"1302071964000","name":"Gerry Bednob","type":"Person","_key":"39458"} +{"label":"Tisha Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46f\/4d8d52637b9aa1675e00046f\/tisha-campbell-profile.jpg","version":31,"birthday":"-38451600000","id":"141823","birthplace":"Oklahoma City, Oklahoma, USA","lastModified":"1302071964000","name":"Tisha Campbell","type":"Person","_key":"39459"} +{"label":"Resurrection","description":"A seasoned police detective and his partner have just uncovered a string of unusual murders that lead them to a serial killer, who believes that he is the descendant of Judas.","id":"10359","runtime":103,"imdbId":"tt0142804","version":120,"lastModified":"1301905299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6a\/4cd092e17b9aa16b9e000c6a\/resurrection-mid.jpg","genre":"Drama","title":"Resurrection","releaseDate":928540800000,"language":"en","type":"Movie","_key":"39460"} +{"label":"Barbara Tyson","version":24,"id":"64897","lastModified":"1301901995000","name":"Barbara Tyson","type":"Person","_key":"39461"} +{"label":"Mike Anscombe","version":21,"id":"64899","lastModified":"1301902151000","name":"Mike Anscombe","type":"Person","_key":"39462"} +{"label":"Jeff J.J. Authors","version":21,"id":"64900","lastModified":"1301902337000","name":"Jeff J.J. Authors","type":"Person","_key":"39463"} +{"label":"Hunger","description":"The story of Bobby Sands, the IRA member who led the 1981 hunger strike in which Republican prisoners tried to win political status. It dramatises events in the Maze prison in the six weeks prior to Sands\u2019 death.","id":"10360","runtime":90,"imdbId":"tt0986233","trailer":"http:\/\/www.youtube.com\/watch?v=Mw7WJLZmVF4","version":361,"lastModified":"1301904292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a08\/4d4c5d3c7b9aa13b48007a08\/hunger-mid.jpg","studio":"Blast! Films","genre":"Drama","title":"Hunger","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"39464"} +{"label":"Helena Bereen","version":21,"id":"64916","lastModified":"1301901522000","name":"Helena Bereen","type":"Person","_key":"39465"} +{"label":"Steve McQueen","version":23,"id":"72757","lastModified":"1301901826000","name":"Steve McQueen","type":"Person","_key":"39466"} +{"label":"Ginger Snaps: Unleashed","description":"Brigitte has escaped the confines of Bailey Downs but she's not alone. Another werewolf is tailing her closely and her sister's specter haunts her. An overdose of Monkshood - the poison that is keeping her transformation at bay - leads to her being incarcerated in a rehabilitation clinic for drug addicts where her only friend is an eccentric young girl by the name of Ghost.","id":"10361","runtime":94,"imdbId":"tt0353489","version":138,"lastModified":"1301903631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/857\/4bc92dbb017a3c57fe012857\/ginger-snaps-unleashed-mid.jpg","genre":"Horror","title":"Ginger Snaps: Unleashed","releaseDate":1075420800000,"language":"en","type":"Movie","_key":"39467"} +{"label":"Eric Johnson","version":26,"id":"33337","lastModified":"1301901581000","name":"Eric Johnson","type":"Person","_key":"39468"} +{"label":"Janet Kidder","version":22,"id":"64915","lastModified":"1301902390000","name":"Janet Kidder","type":"Person","_key":"39469"} +{"label":"Pascale Hutton","version":25,"id":"64917","lastModified":"1301901597000","name":"Pascale Hutton","type":"Person","_key":"39470"} +{"label":"Patricia Idlette","version":21,"id":"64918","lastModified":"1301902197000","name":"Patricia Idlette","type":"Person","_key":"39471"} +{"label":"Brett Sullivan","version":33,"id":"51034","lastModified":"1301902201000","name":"Brett Sullivan","type":"Person","_key":"39472"} +{"label":"Two Lovers","description":"An attractive but depressed young man moves back in with his parents following a recent heartbreak. An aspiring photographer, Leonard works part-time at his father's dry-cleaners. One night Leonard looks out his bedroom window and notices a ravishing young woman who recently moved into an apartment in his family's building, paid for by the wealthy married man she's seeing.","id":"10362","runtime":110,"imdbId":"tt1103275","trailer":"http:\/\/www.youtube.com\/watch?v=1048","version":201,"lastModified":"1301902743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/874\/4bc92dbd017a3c57fe012874\/two-lovers-mid.jpg","studio":"2929 Productions","genre":"Drama","title":"Two Lovers","releaseDate":1211155200000,"language":"en","type":"Movie","_key":"39473"} +{"label":"Purple Noon","description":"Tom Ripley is a talented mimic, moocher, forger and all-around criminal improviser; but there's more to Tom Ripley than even he can guess.","id":"10363","runtime":115,"imdbId":"tt0054189","version":87,"lastModified":"1301905461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87d\/4bc92dbe017a3c57fe01287d\/plein-soleil-mid.jpg","genre":"Crime","title":"Purple Noon","releaseDate":-309657600000,"language":"en","type":"Movie","_key":"39474"} +{"label":"Viviane Chantel","version":22,"id":"64926","lastModified":"1301902375000","name":"Viviane Chantel","type":"Person","_key":"39475"} +{"label":"Catch-22","description":"A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way cope with a crazy situation. Catch-22 is a parody of a \"military mentality\" and of a bureaucratic society in general.","id":"10364","runtime":121,"imdbId":"tt0065528","version":143,"lastModified":"1301904187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/894\/4bc92dc3017a3c57fe012894\/catch-22-mid.jpg","genre":"Comedy","title":"Catch-22","releaseDate":15033600000,"language":"en","type":"Movie","_key":"39476"} +{"label":"Art Garfunkel","version":32,"id":"64928","lastModified":"1302002828000","name":"Art Garfunkel","type":"Person","_key":"39477"} +{"label":"Jack Gilford","version":33,"id":"64929","lastModified":"1301901847000","name":"Jack Gilford","type":"Person","_key":"39478"} +{"label":"Bob Newhart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c7\/4bdf3c6d017a3c35bd0002c7\/bob-newhart-profile.jpg","version":60,"id":"64930","lastModified":"1301901179000","name":"Bob Newhart","type":"Person","_key":"39479"} +{"label":"Universal Soldier: The Return","description":"Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When Seth (Michael Jai White), the supercomputer controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles Seth and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.","id":"10366","runtime":82,"imdbId":"tt0176269","trailer":"http:\/\/www.youtube.com\/watch?v=1902","version":195,"lastModified":"1301902596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f8\/4c438f3f5e73d60f3a0003f8\/universal-soldier-the-return-mid.jpg","genre":"Action","title":"Universal Soldier: The Return","releaseDate":931046400000,"language":"en","tagline":"Prepare to become obsolete","type":"Movie","_key":"39480"} +{"label":"Kiana Tom","version":25,"id":"65235","lastModified":"1301902154000","name":"Kiana Tom","type":"Person","_key":"39481"} +{"label":"Mic Rodgers","version":30,"id":"18889","lastModified":"1301901583000","name":"Mic Rodgers","type":"Person","_key":"39482"} +{"label":"Wild Things 2","description":"Wild Things 2, the purported sequel to the 1998 guilty-pleasure classic, returns to steamy Florida for another tale of trashy thrills among the lives of high school students. Brittany (Susan Ward) is a beach-volleyball stud and nice girl whose chance for happiness is threatened by her vicious rival Maya (Leila Arcieri). Toss in a suspicious investigator (Isaiah Washington), some plot twists, and laughable dialogue, and sit back for the ride. Wild Things 2 isn't really a sequel; none of the chara","id":"10367","runtime":95,"imdbId":"tt0365270","version":193,"lastModified":"1301902242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b0\/4bc92dc6017a3c57fe0128b0\/wild-things-2-mid.jpg","genre":"Suspense","title":"Wild Things 2","releaseDate":1077494400000,"language":"en","type":"Movie","_key":"39483"} +{"label":"Susan Ward","version":30,"id":"65239","lastModified":"1301901900000","name":"Susan Ward","type":"Person","_key":"39484"} +{"label":"Leila Arcieri","version":22,"id":"65240","lastModified":"1301901993000","name":"Leila Arcieri","type":"Person","_key":"39485"} +{"label":"Dorit Wolf","version":21,"id":"65241","lastModified":"1301902177000","name":"Dorit Wolf","type":"Person","_key":"39486"} +{"label":"Jack Perez","version":24,"id":"65242","lastModified":"1301901824000","name":"Jack Perez","type":"Person","_key":"39487"} +{"label":"Tea with Mussolini","description":"Semi-autobiographical film directed by Franco Zeffirelli, telling the story of young Italian boy Luca's upbringing by a circle of English and American women, before and during World War II.","id":"10368","runtime":117,"imdbId":"tt0120857","version":127,"lastModified":"1301903187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e6\/4c548c015e73d632bf0002e6\/tea-with-mussolini-mid.jpg","genre":"Comedy","title":"Tea with Mussolini","releaseDate":922406400000,"language":"en","type":"Movie","_key":"39488"} +{"label":"14 Tage lebensl\u00e4nglich","description":"No overview found.","id":"10369","runtime":105,"imdbId":"tt0118529","version":39,"lastModified":"1301906159000","genre":"Drama","title":"14 Tage lebensl\u00e4nglich","releaseDate":860025600000,"language":"en","type":"Movie","_key":"39489"} +{"label":"Katharina Meinecke","version":21,"id":"65252","lastModified":"1301902172000","name":"Katharina Meinecke","type":"Person","_key":"39490"} +{"label":"Axel Pape","version":21,"id":"50687","lastModified":"1301901826000","name":"Axel Pape","type":"Person","_key":"39491"} +{"label":"Premutos - der gefallene Engel","description":"No overview found.","id":"10370","runtime":106,"imdbId":"tt0144555","version":39,"lastModified":"1301905710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/126\/4c32fe185e73d64967000126\/premutos-der-gefallene-engel-mid.jpg","genre":"Horror","title":"Premutos - der gefallene Engel","releaseDate":852076800000,"language":"en","type":"Movie","_key":"39492"} +{"label":"Fidelis Atuma","version":20,"id":"65257","lastModified":"1301902374000","name":"Fidelis Atuma","type":"Person","_key":"39493"} +{"label":"Anke Fabre","version":20,"id":"65258","lastModified":"1301902003000","name":"Anke Fabre","type":"Person","_key":"39494"} +{"label":"Ingid Fischer","version":20,"id":"65259","lastModified":"1301902377000","name":"Ingid Fischer","type":"Person","_key":"39495"} +{"label":"Ronald Fuhrmann","version":20,"id":"65260","lastModified":"1301902008000","name":"Ronald Fuhrmann","type":"Person","_key":"39496"} +{"label":"Olaf Ittenbach","version":35,"id":"65271","lastModified":"1301901496000","name":"Olaf Ittenbach","type":"Person","_key":"39497"} +{"label":"For Richer or Poorer","description":"The incredibly rich, but miserable New York couple, Brad and Caroline Sexton, got framed by their accountant, and fled from the IRS to the one place where noone would look for them: Amish country. Now they've got to do their best to blend in, and learn how to love all over again.","id":"10371","runtime":115,"imdbId":"tt0119142","version":87,"lastModified":"1301908018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8be\/4bc92dc7017a3c57fe0128be\/for-richer-or-poorer-mid.jpg","genre":"Comedy","title":"For Richer or Poorer","releaseDate":881884800000,"language":"en","type":"Movie","_key":"39498"} +{"label":"Ewoks: The Battle for Endor","description":"On the forest moon of Endor, the Towani family are preparing to leave. But now, Wicket and Cindel must face off against the evil Marauders.","id":"10372","runtime":94,"imdbId":"tt0089110","version":70,"lastModified":"1301903369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cc\/4bc92dcb017a3c57fe0128cc\/ewoks-the-battle-for-endor-mid.jpg","genre":"Fantasy","title":"Ewoks: The Battle for Endor","releaseDate":501638400000,"language":"en","type":"Movie","_key":"39499"} +{"label":"Jim Wheat","version":33,"id":"63920","lastModified":"1301901565000","name":"Jim Wheat","type":"Person","_key":"39500"} +{"label":"Ken Wheat","version":33,"id":"63921","lastModified":"1301901785000","name":"Ken Wheat","type":"Person","_key":"39501"} +{"label":"Quadrophenia","description":"Based on the 1973 rock opera album of the same name by The Who, this is the story of 60s teenager Jimmy. At work he slaves in a dead-end job. While after, he shops for tailored suits and rides his scooter as part of the London Mod scene.","id":"10373","runtime":120,"imdbId":"tt0079766","version":149,"lastModified":"1301904340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/926\/4d6a92f97b9aa13636002926\/quadrophenia-mid.jpg","genre":"Drama","title":"Quadrophenia","releaseDate":306115200000,"language":"en","type":"Movie","_key":"39502"} +{"label":"Leslie Ash","version":19,"id":"65302","lastModified":"1301901612000","name":"Leslie Ash","type":"Person","_key":"39503"} +{"label":"Toyah Willcox","version":23,"id":"126534","lastModified":"1301902740000","name":"Toyah Willcox","type":"Person","_key":"39504"} +{"label":"Franc Roddam","version":26,"id":"65304","lastModified":"1301901612000","name":"Franc Roddam","type":"Person","_key":"39505"} +{"label":"Irren ist m\u00e4nnlich","description":"No overview found.","id":"10374","runtime":96,"imdbId":"tt0116651","version":41,"lastModified":"1301904999000","genre":"Comedy","title":"Irren ist m\u00e4nnlich","releaseDate":846720000000,"language":"en","type":"Movie","_key":"39506"} +{"label":"D-Tox","description":"A disgraced FBI agent with a drinking problem joins nine other troubled law enforcement officers at an isolated detox clinic in the wilds of Wyoming. But the therapeutic sanctuary becomes a nightmarish hellhole when a major snowstorm cuts off the clinic from the outside world and enables a killer on the inside to get busy.","id":"10375","runtime":96,"imdbId":"tt0160184","version":110,"lastModified":"1301908319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9cd\/4ccd62245e73d650230009cd\/d-tox-mid.jpg","genre":"Action","title":"D-Tox","releaseDate":1012521600000,"language":"en","tagline":"Survival is a Killer.","type":"Movie","_key":"39507"} +{"label":"The Legend of 1900","description":"The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 (Tim Roth) learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.","id":"10376","runtime":165,"imdbId":"tt0120731","version":116,"lastModified":"1301901764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f9\/4bc92dcf017a3c57fe0128f9\/la-leggenda-del-pianista-sull-oceano-mid.jpg","genre":"Drama","title":"The Legend of 1900","releaseDate":909532800000,"language":"en","type":"Movie","_key":"39508"} +{"label":"Giuseppe Tornatore","version":62,"id":"65314","lastModified":"1301901215000","name":"Giuseppe Tornatore","type":"Person","_key":"39509"} +{"label":"My Cousin Vinny","description":"Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!","id":"10377","runtime":120,"imdbId":"tt0104952","trailer":"http:\/\/www.youtube.com\/watch?v=SL4HdaZXuOw","version":109,"lastModified":"1301902967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07d\/4bcc18cd017a3c0f2c00007d\/my-cousin-vinny-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"My Cousin Vinny","releaseDate":700444800000,"language":"en","tagline":"There have been many courtroom dramas that have glorified The Great American Legal System. This is not one of them.","type":"Movie","_key":"39510"} +{"label":"Big Buck Bunny","description":"Follow a day of the life of Big Buck Bunny when he meets three bullying rodents: Frank, Rinky, and Gamera. The rodents amuse themselves by harassing helpless creatures by throwing fruits, nuts and rocks at them. After the deaths of two of Bunny's favorite butterflies, and an offensive attack on Bunny himself, Bunny sets aside his gentle nature and orchestrates a complex plan for revenge.","id":"10378","runtime":8,"imdbId":"tt1254207","trailer":"http:\/\/www.youtube.com\/watch?v=IBTE-RoMsvw","homepage":"http:\/\/www.bigbuckbunny.org","version":182,"lastModified":"1301903416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/914\/4bc92dd5017a3c57fe012914\/big-buck-bunny-mid.jpg","studio":"Blender Foundation","genre":"Animation","title":"Big Buck Bunny","releaseDate":1207785600000,"language":"en","type":"Movie","_key":"39511"} +{"label":"Sacha Goedegebure","version":24,"id":"64936","lastModified":"1301901697000","name":"Sacha Goedegebure","type":"Person","_key":"39512"} +{"label":"Drop Dead Fred","description":"A young woman finds her already unstable life rocked by the presence of a rambunctious imaginary friend from childhood.","id":"10379","runtime":103,"imdbId":"tt0101775","trailer":"http:\/\/www.youtube.com\/watch?v=kgh27gCgiQw","version":113,"lastModified":"1301903021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/921\/4bc92dd6017a3c57fe012921\/drop-dead-fred-mid.jpg","genre":"Comedy","title":"Drop Dead Fred","releaseDate":672019200000,"language":"en","tagline":"Dishes. Relationships. Wind. This guy breaks everything.","type":"Movie","_key":"39513"} +{"label":"Keith Charles","version":21,"id":"64944","lastModified":"1301902363000","name":"Keith Charles","type":"Person","_key":"39514"} +{"label":"Ate de Jong","version":18,"id":"16672","lastModified":"1301901637000","name":"Ate de Jong","type":"Person","_key":"39515"} +{"label":"An American Tail: Fievel Goes West","description":"Some time after the Mousekewitz's have settled in America, they find that they are still having problems with the threat of cats. That makes them eager to try another home out in the west, where they are promised that mice and cats live in peace. Unfortunately, the one making this claim is an oily con artist named Cat R. Waul who is intent on his own sinister plan.","id":"10380","runtime":75,"imdbId":"tt0101329","trailer":"http:\/\/www.youtube.com\/watch?v=vtjyldJhVuw","version":168,"lastModified":"1301907780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92a\/4bc92dd7017a3c57fe01292a\/an-american-tail-fievel-goes-west-mid.jpg","genre":"Adventure","title":"An American Tail: Fievel Goes West","releaseDate":690681600000,"language":"en","tagline":"Look out pardners, there's a new mouse in town!","type":"Movie","_key":"39516"} +{"label":"Cathy Cavadini","version":27,"id":"64948","lastModified":"1301901811000","name":"Cathy Cavadini","type":"Person","_key":"39517"} +{"label":"Phil Nibbelink","version":22,"id":"64949","lastModified":"1301901612000","name":"Phil Nibbelink","type":"Person","_key":"39518"} +{"label":"Plunkett & MacLeane","description":"Will Plunkett and Captain James Macleane, two men from different ends of the social spectrum in 18th-century England, enter a gentlemen's agreement: They decide to rid the aristocrats of their belongings. With Plunkett's criminal know-how and Macleane's social connections, they team up to be soon known as \"The Gentlemen Highwaymen\". But when one day these gentlemen hold up Lord Chief Justice Gibson's coach, Macleane instantly falls in love with his beautiful and cunning niece, Lady Rebecca Gibso","id":"10381","runtime":93,"imdbId":"tt0134033","version":110,"lastModified":"1301903576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/933\/4bc92dd7017a3c57fe012933\/plunkett-macleane-mid.jpg","genre":"Action","title":"Plunkett & MacLeane","releaseDate":923011200000,"language":"en","type":"Movie","_key":"39519"} +{"label":"Jake Scott","version":25,"id":"65317","lastModified":"1301901495000","name":"Jake Scott","type":"Person","_key":"39520"} +{"label":"Lost Souls","description":"No overview found.","id":"10383","runtime":97,"imdbId":"tt0160484","version":136,"lastModified":"1301904137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bf8fdb2017a3c702f000092\/lost-souls-mid.jpg","genre":"Horror","title":"Lost Souls","releaseDate":971395200000,"language":"en","type":"Movie","_key":"39521"} +{"label":"Janusz Kaminski","version":113,"id":"492","lastModified":"1299551354000","name":"Janusz Kaminski","type":"Person","_key":"39522"} +{"label":"Supernova","description":"Set in the 22nd century, when a battered salvage ship sends out a distress signal, the seasoned crew of the rescue hospital ship Nova-17 responds. What they find is a black hole--that threatens to destroy both ships--and a mysterious survivor whose body quickly mutates into a monstrous and deadly form. ","id":"10384","runtime":91,"imdbId":"tt0134983","version":220,"lastModified":"1301903538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/940\/4bc92dd8017a3c57fe012940\/supernova-mid.jpg","studio":"Hammerhead Productions","genre":"Action","title":"Supernova","releaseDate":947808000000,"language":"en","type":"Movie","_key":"39523"} +{"label":"Hanging Up","description":"No overview found.","id":"10385","runtime":94,"imdbId":"tt0162983","version":198,"lastModified":"1301904621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f7\/4ceba7535e73d6258f0006f7\/hanging-up-mid.jpg","genre":"Comedy","title":"Hanging Up","releaseDate":950659200000,"language":"en","type":"Movie","_key":"39524"} +{"label":"The Iron Giant","description":"A giant metal machine falls to Earth and frightens the residents of a small town in Maine in 1958, until it befriends a nine-year-old boy named Hogarth and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices. ","id":"10386","runtime":86,"imdbId":"tt0129167","trailer":"http:\/\/www.youtube.com\/watch?v=1327","version":217,"lastModified":"1301975827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/374\/4d1bd3525e73d6084200c374\/the-iron-giant-mid.jpg","studio":"Warner Bros. Animation","genre":"Action","title":"The Iron Giant","releaseDate":933897600000,"language":"en","tagline":"It came from outer space!","type":"Movie","_key":"39525"} +{"label":"The Emperor and the Assassin","description":"In pre-unified China, the King of Qin sends his concubine to a rival kingdom to produce an assassin for a political plot, but as the king's cruelty mounts she finds her loyalty faltering.","id":"10387","runtime":162,"imdbId":"tt0162866","version":212,"lastModified":"1301905973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95b\/4bc92ddc017a3c57fe01295b\/the-emperor-and-the-assassin-mid.jpg","genre":"Drama","title":"The Emperor and the Assassin","releaseDate":907804800000,"language":"en","type":"Movie","_key":"39526"} +{"label":"Fengyi Zhang","version":25,"id":"65277","lastModified":"1301901502000","name":"Fengyi Zhang","type":"Person","_key":"39527"} +{"label":"Zhou Sun","version":20,"id":"65278","lastModified":"1301901977000","name":"Zhou Sun","type":"Person","_key":"39528"} +{"label":"Xiaohe L\u00fc","version":18,"id":"65279","lastModified":"1301902164000","name":"Xiaohe L\u00fc","type":"Person","_key":"39529"} +{"label":"The Limey","description":"No overview found.","id":"10388","runtime":89,"imdbId":"tt0165854","trailer":"http:\/\/www.youtube.com\/watch?v=gJojTdaCWu8","version":182,"lastModified":"1301904509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/964\/4bc92ddd017a3c57fe012964\/the-limey-mid.jpg","genre":"Action","title":"The Limey","releaseDate":939340800000,"language":"en","type":"Movie","_key":"39530"} +{"label":"The Eye","description":"A blind girl gets a cornea transplant so that she would be able to see again. However, she got more than what she bargained for when she realised she could even see ghosts. And some of these ghosts are down right unfriendly. So she embarks on a journey to find the origins of her cornea and to reveal the history of the previous dead owner ...","id":"10389","runtime":98,"imdbId":"tt0325655","homepage":"http:\/\/theeye.kingnet.com.tw\/en-main.html","version":174,"lastModified":"1301903004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97c\/4bc92dde017a3c57fe01297c\/gin-gwai-mid.jpg","genre":"Eastern","title":"The Eye","releaseDate":1020902400000,"language":"en","tagline":"How can you believe your eyes when they're not yours?","type":"Movie","_key":"39531"} +{"label":"Angelica Lee","version":31,"id":"65261","lastModified":"1301901530000","name":"Angelica Lee","type":"Person","_key":"39532"} +{"label":"Lawrence Chou","version":33,"id":"65262","lastModified":"1301901949000","name":"Lawrence Chou","type":"Person","_key":"39533"} +{"label":"Chutcha Rujinanon","version":20,"id":"65263","lastModified":"1301902086000","name":"Chutcha Rujinanon","type":"Person","_key":"39534"} +{"label":"Yut Lai So","version":21,"id":"65265","lastModified":"1301901877000","name":"Yut Lai So","type":"Person","_key":"39535"} +{"label":"For Love of the Game","description":"A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.","id":"10390","runtime":137,"imdbId":"tt0126916","version":158,"lastModified":"1301905388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/989\/4bc92ddf017a3c57fe012989\/for-love-of-the-game-mid.jpg","genre":"Comedy","title":"For Love of the Game","releaseDate":937526400000,"language":"en","type":"Movie","_key":"39536"} +{"label":"Bless the child","description":"Omens and concepts of good vs. evil have no place in Maggie O'Connor's well-ordered, practical universe. Her life revolves around her job as a nurse at a busy New York hospital, until one rainy night, her sister Jenna abandons her newborn, autistic daughter at her home. Maggie takes the baby in, and she becomes the daughter she never had. Six years later Jenna suddenly re-appears...","id":"10391","runtime":107,"imdbId":"tt0163983","version":202,"lastModified":"1301904297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/997\/4bc92de0017a3c57fe012997\/bless-the-child-mid.jpg","genre":"Horror","title":"Bless the child","releaseDate":965952000000,"language":"en","type":"Movie","_key":"39537"} +{"label":"Holliston Coleman","version":22,"id":"65362","lastModified":"1301901726000","name":"Holliston Coleman","type":"Person","_key":"39538"} +{"label":"K\u00e4pt'n Blaub\u00e4r - Der Film","description":"No overview found.","id":"10392","runtime":85,"imdbId":"tt0215919","version":38,"lastModified":"1301906159000","genre":"Animation","title":"K\u00e4pt'n Blaub\u00e4r - Der Film","releaseDate":945302400000,"language":"en","type":"Movie","_key":"39539"} +{"label":"Hayo Freitag","version":23,"id":"65040","lastModified":"1301901808000","name":"Hayo Freitag","type":"Person","_key":"39540"} +{"label":"The Replacements","description":"Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.","id":"10393","runtime":118,"imdbId":"tt0191397","trailer":"http:\/\/www.youtube.com\/watch?v=4fan97hHZcM","version":159,"lastModified":"1301903091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/016\/4d447a0b7b9aa15bf5001016\/the-replacements-mid.jpg","studio":"Warner Bros.","genre":"Action","title":"The Replacements","releaseDate":965952000000,"language":"en","tagline":"Throw the ball. Catch the girl. Keep it simple.","type":"Movie","_key":"39541"} +{"label":"Gangster No.1","description":"An old gangster is advised that Freddie Mays would leave jail after thirty years in prison. His mood changes and he recalls when he was a young punk,who joined Freddie Mays' gang,a man he both envied and ultimately betrayed.","id":"10394","runtime":103,"imdbId":"tt0210065","version":84,"lastModified":"1301904051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c1\/4bc92de6017a3c57fe0129c1\/gangster-no-1-2008-mid.jpg","genre":"Action","title":"Gangster No.1","releaseDate":960508800000,"language":"en","type":"Movie","_key":"39542"} +{"label":"Wolf","description":"Publisher Will Randall becomes a werewolf and has to fight to keep his job.","id":"10395","runtime":125,"imdbId":"tt0111742","trailer":"http:\/\/www.youtube.com\/watch?v=aCbPyQxfw74","version":151,"lastModified":"1301903127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/794\/4d3ef8bc5e73d622cf004794\/wolf-mid.jpg","genre":"Horror","title":"Wolf","releaseDate":771811200000,"language":"en","tagline":"The animal is out.","type":"Movie","_key":"39543"} +{"label":"Tequila Sunrise","description":"Dale \"Mac\" McKussic (Mel Gibson) is a former drug dealer trying to go straight. His close friend Nick Frescia (Kurt Russell) is a detective lieutenant who, in spite of their friendship, is duty-bound to bring Mac to justice if he is selling drugs again, as Agent Hal Maguire (J. T. Walsh) of the Drug Enforcement Agency believes to be the case. Mac is attracted to stylish restaurant owner Jo Ann Vallenari (Michelle Pfeiffer). Nick becomes acquainted with Jo Ann while attempting to learn more about","id":"10396","runtime":115,"imdbId":"tt0096244","trailer":"http:\/\/www.youtube.com\/watch?v=IS4HAcSp0rA","version":241,"lastModified":"1301903744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4bc92de8017a3c57fe0129e8\/tequila-sunrise-mid.jpg","genre":"Action","title":"Tequila Sunrise","releaseDate":597024000000,"language":"en","tagline":"A dangerous mix","type":"Movie","_key":"39544"} +{"label":"Angela's Ashes","description":"Based on the best selling autobiography by Irish expat Frank McCourt, Angela's Ashes follows the experiences of young Frankie and his family as they try against all odds to escape the poverty endemic in the slums of pre-war Limerick. The film opens with the family in Brooklyn, but following the death of one of Frankie's siblings, they return home, only to find the situation there even worse. Prejudice against Frankie's Northern Irish father makes his search for employment in the Republic difficu","id":"10397","runtime":145,"imdbId":"tt0145653","version":204,"lastModified":"1301902513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f1\/4bc92deb017a3c57fe0129f1\/angela-s-ashes-mid.jpg","genre":"Drama","title":"Angela's Ashes","releaseDate":946080000000,"language":"en","type":"Movie","_key":"39545"} +{"label":"Joe Breen","version":21,"id":"65030","lastModified":"1301901837000","name":"Joe Breen","type":"Person","_key":"39546"} +{"label":"Michael Legge","version":29,"id":"65031","lastModified":"1301901650000","name":"Michael Legge","type":"Person","_key":"39547"} +{"label":"Ciaran Owens","version":23,"id":"65032","lastModified":"1301901509000","name":"Ciaran Owens","type":"Person","_key":"39548"} +{"label":"Double Jeopardy","description":"Libby Parsons awakens to find herself adrift at sea, with her husband missing and her hands covered with his blood. She's arrested for murder and loses everything, including her son. But while in prison, Libby finds out she's been framed. Now, the law of \"double jeopardy\" -- and the desire to kill her \"late\" husband for good -- is all Libby has left, even if it means outwitting her sympathetic parole officer.","id":"10398","runtime":105,"imdbId":"tt0150377","trailer":"http:\/\/www.youtube.com\/watch?v=1491","version":183,"lastModified":"1301902534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fa\/4bc92dec017a3c57fe0129fa\/double-jeopardy-mid.jpg","studio":"MFP Munich Film Partners","genre":"Drama","title":"Double Jeopardy","releaseDate":938131200000,"language":"en","tagline":"Murder isn't always a crime.","type":"Movie","_key":"39549"} +{"label":"Mansfield Park","description":"This fun and sexy comedy tells a timelessly entertaining story where wealthy, secret passions and mischievous women put love to the test.. When a spirited young woman, Fanny Price, is sent away to live on the great country estate of her rich cousins, she's meant to learn the ways of proper society. But while Fanny learns \"their\" ways, she also enlightens them with a wit and sparkle all her own!","id":"10399","runtime":112,"imdbId":"tt0178737","version":250,"lastModified":"1302069565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a03\/4bc92ded017a3c57fe012a03\/mansfield-park-mid.jpg","genre":"Drama","title":"Mansfield Park","releaseDate":935712000000,"language":"en","type":"Movie","_key":"39550"} +{"label":"The Hurricane","description":"The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.","id":"10400","runtime":145,"imdbId":"tt0174856","version":185,"lastModified":"1301907559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a14\/4bc92dee017a3c57fe012a14\/the-hurricane-mid.jpg","genre":"Drama","title":"The Hurricane","releaseDate":946425600000,"language":"en","type":"Movie","_key":"39551"} +{"label":"Vicellous Reon Shannon","version":25,"id":"25868","lastModified":"1301901445000","name":"Vicellous Reon Shannon","type":"Person","_key":"39552"} +{"label":"Girl on the Bridge","description":"It's night on a Paris bridge. A girl leans over Seine River with tears in her eyes and a violent yearning to drown her sorrows. Out of nowhere someone takes an interest in her. He is Gabor, a knife thrower who needs a human target for his show. The girl, Adele, has never been lucky and nowhere else to go. So she follows him. They travel along the northern bank of the Mediterranean to perform.","id":"10401","runtime":90,"imdbId":"tt0144201","version":294,"lastModified":"1301902853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ce\/4c9a0e1d7b9aa123370003ce\/la-fille-sur-le-pont-mid.jpg","genre":"Comedy","title":"Girl on the Bridge","releaseDate":936403200000,"language":"en","type":"Movie","_key":"39553"} +{"label":"Vanessa Paradis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4d2219e37b9aa17373003160\/vanessa-paradis-profile.jpg","version":37,"id":"65007","lastModified":"1301901145000","name":"Vanessa Paradis","type":"Person","_key":"39554"} +{"label":"Demetre Georgalas","version":22,"id":"65008","lastModified":"1301901674000","name":"Demetre Georgalas","type":"Person","_key":"39555"} +{"label":"Catherine Lascault","version":22,"id":"65009","lastModified":"1301901649000","name":"Catherine Lascault","type":"Person","_key":"39556"} +{"label":"Deuce Bigalow: Male Gigolo","description":"Deuce Bigalow is a fish tank cleaner until he gets a temporary job watching over a gigolo's house. But when Deuce accidentally wrecks the house, he is forced to compensate by becoming a gigolo himself! He takes on interesting clients (a tall Norwegian woman, a rotund eater in drag, a roommate who curses every five seconds, a nurse)...and together with a detective chasing Deuce down... ","id":"10402","runtime":88,"imdbId":"tt0205000","version":130,"lastModified":"1302022278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2d\/4bc92df0017a3c57fe012a2d\/deuce-bigalow-male-gigolo-mid.jpg","studio":"Quinta Communications","genre":"Comedy","title":"Deuce Bigalow: Male Gigolo","releaseDate":944784000000,"language":"en","tagline":"He charges $10 but he\u2019s willing to negotiate.","type":"Movie","_key":"39557"} +{"label":"The Player","description":"A studio executive is being blackmailed by a writer whose script he rejected but which one? Loaded with Hollywood insider jokes.","id":"10403","runtime":124,"imdbId":"tt0105151","version":243,"lastModified":"1301904503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/408\/4c893c135e73d66b5c000408\/the-player-mid.jpg","genre":"Comedy","title":"The Player","releaseDate":702259200000,"language":"en","type":"Movie","_key":"39558"} +{"label":"Raise the Red Lantern","description":"China in the 1920's. After her father's death, 19 year old Songlian is forced to marry the much older lord of a powerful family. With three wives already, each living in a separate house within the great castle, there is fierce competition for his attention and the privileges that are gained. This competition gets out of hand...","id":"10404","runtime":125,"imdbId":"tt0101640","version":150,"lastModified":"1301903686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4c2414e87b9aa1446e000033\/10404-mid.jpg","genre":"Drama","title":"Raise the Red Lantern","releaseDate":693187200000,"language":"en","type":"Movie","_key":"39559"} +{"label":"Saifei He","version":22,"id":"64987","lastModified":"1301901513000","name":"Saifei He","type":"Person","_key":"39560"} +{"label":"Cuifen Cao","version":24,"id":"64988","lastModified":"1301901566000","name":"Cuifen Cao","type":"Person","_key":"39561"} +{"label":"Jingwu Ma","version":26,"id":"64989","lastModified":"1301901402000","name":"Jingwu Ma","type":"Person","_key":"39562"} +{"label":"Qi Zhao","version":24,"id":"64990","lastModified":"1301901787000","name":"Qi Zhao","type":"Person","_key":"39563"} +{"label":"Encino Man","description":"High school misfits Stoney and Dave discover a long-frozen primeval man from the past in their back yard. But the thawed-out Link, as the boys have named him, quickly becomes a wild card in the teens' already zany Southern California lives. After a shave and some new clothes, Link's presence at school makes the daily drudgery a lot more interesting.","id":"10406","runtime":88,"imdbId":"tt0104187","version":105,"lastModified":"1301903903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d8\/4d4d49057b9aa13aaf0086d8\/encino-man-mid.jpg","studio":"Encino Man Productions","genre":"Comedy","title":"Encino Man","releaseDate":706492800000,"language":"en","tagline":"When the stone age meets the rock age.","type":"Movie","_key":"39564"} +{"label":"Megan Ward","version":29,"id":"64999","lastModified":"1301901444000","name":"Megan Ward","type":"Person","_key":"39565"} +{"label":"Housesitter","description":"Davis builds his dream house and presents it to Becky with a proposal of marriage. She turns him down. He leaves the house, still with a ribbon running around it and returns to the city, terribly smitten with Becky. He meets Gwen who has an interesting relationship with the truth. He spends the night with her, but leaves while she is sleeping.","id":"10407","runtime":102,"imdbId":"tt0104452","version":151,"lastModified":"1301905960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6f\/4bc92dfa017a3c57fe012a6f\/housesitter-mid.jpg","genre":"Comedy","title":"Housesitter","releaseDate":708307200000,"language":"en","type":"Movie","_key":"39566"} +{"label":"Dana Delany","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ef\/4cab2b4a7b9aa17acf0007ef\/dana-delany-profile.jpg","version":40,"id":"65002","lastModified":"1301901215000","name":"Dana Delany","type":"Person","_key":"39567"} +{"label":"Suzanne Whang","version":20,"id":"89934","lastModified":"1301901726000","name":"Suzanne Whang","type":"Person","_key":"39568"} +{"label":"Flodder in Amerika!","description":"The mayor of Sunny Dale see a chance to get rid of the Flodder family: They send the asocial bunch for an international exchange to New York. There they get confused with a Russian delegation of medical doctors while the street worker Werner who accompanies them becomes imprisoned.","id":"10408","runtime":95,"imdbId":"tt0104279","version":79,"lastModified":"1301904716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4c9541cd5e73d63a79000376\/flodder-in-amerika-mid.jpg","studio":"First Floor Features","genre":"Comedy","title":"Flodder in Amerika!","releaseDate":707529600000,"language":"en","type":"Movie","_key":"39569"} +{"label":"Tatjana Simic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/80d\/4cbf7ffe7b9aa138d900180d\/tatjana-simic-profile.jpg","version":22,"birthday":"-207190800000","id":"65004","birthplace":"Zagreb","lastModified":"1301902054000","name":"Tatjana Simic","type":"Person","_key":"39570"} +{"label":"Strictly Ballroom","description":"Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?","id":"10409","runtime":94,"imdbId":"tt0105488","version":134,"lastModified":"1301908191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b57\/4d691af95e73d66b2b000b57\/strictly-ballroom-mid.jpg","genre":"Drama","title":"Strictly Ballroom","releaseDate":714268800000,"language":"en","type":"Movie","_key":"39571"} +{"label":"Tara Morice","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4cdedaf45e73d60e0c000188\/tara-morice-profile.jpg","version":21,"id":"65010","lastModified":"1301901854000","name":"Tara Morice","type":"Person","_key":"39572"} +{"label":"Pat Thomson","version":21,"id":"65011","lastModified":"1301901813000","name":"Pat Thomson","type":"Person","_key":"39573"} +{"label":"Hoffa","description":"Jack Nicholson's portrait of Union leader James R. Hoffa, as seen through the eyes of his friend, Bobby Ciaro (Danny DeVito). The film follows Hoffa through his countless battles with the RTA and President Roosevelt all the way to a conclusion that negates the theory that he disappeared in 1975","id":"10410","runtime":140,"imdbId":"tt0104427","version":175,"lastModified":"1301902800000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8e\/4bc92dfd017a3c57fe012a8e\/hoffa-mid.jpg","studio":"20th Century Fox","genre":"Crime","title":"Hoffa","releaseDate":725241600000,"language":"en","type":"Movie","_key":"39574"} +{"label":"Natalia Nogulich","version":20,"id":"65017","lastModified":"1301902262000","name":"Natalia Nogulich","type":"Person","_key":"39575"} +{"label":"The Distinguished Gentleman","description":"A Florida con man uses the passing of the long time Congressman from his district who he just happens to share a name with, to get elected to his version of paradise, Congress, where the money flows from lobbyists. But soon he learns the nature of the game and decides to fight back the only way he knows how, with a con.","id":"10411","runtime":112,"imdbId":"tt0104114","trailer":"http:\/\/www.youtube.com\/watch?v=FTsd3VUAiYg","version":140,"lastModified":"1301904625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa6\/4bc92dff017a3c57fe012aa6\/the-distinguished-gentleman-mid.jpg","genre":"Comedy","title":"The Distinguished Gentleman","releaseDate":723427200000,"language":"en","type":"Movie","_key":"39576"} +{"label":"Lane Smith","version":33,"id":"65019","lastModified":"1301901942000","name":"Lane Smith","type":"Person","_key":"39577"} +{"label":"Victoria Rowell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9c2\/4d593a677b9aa15d4e0049c2\/victoria-rowell-profile.jpg","version":30,"id":"65020","lastModified":"1301901876000","name":"Victoria Rowell","type":"Person","_key":"39578"} +{"label":"Romper Stomper","description":"Nazi skinheads in Melbourne take out their anger on local Vietnamese, who are seen as threatening racial purity. Finally the Vietnamese have had enough and confront the skinheads in an all-out confrontation, sending the skinheads running. A woman who is prone to epileptic seizures joins the skins' merry band, and helps them on their run from justice, but is her affliction also a sign of impurity?","id":"10412","runtime":94,"imdbId":"tt0105275","version":80,"lastModified":"1301903531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aaf\/4bc92e00017a3c57fe012aaf\/romper-stomper-mid.jpg","genre":"Action","title":"Romper Stomper","releaseDate":716601600000,"language":"en","type":"Movie","_key":"39579"} +{"label":"Daniel Pollock","version":20,"id":"65023","lastModified":"1301901688000","name":"Daniel Pollock","type":"Person","_key":"39580"} +{"label":"Alex Scott","version":27,"id":"65024","lastModified":"1301901801000","name":"Alex Scott","type":"Person","_key":"39581"} +{"label":"Leigh Russell","version":20,"id":"65025","lastModified":"1301902388000","name":"Leigh Russell","type":"Person","_key":"39582"} +{"label":"Geoffrey Wright","version":33,"id":"65026","lastModified":"1301901978000","name":"Geoffrey Wright","type":"Person","_key":"39583"} +{"label":"Nowhere to run","description":"Escaped convict Sam Gillen single handedly takes on ruthless developers determined to evict Clydie - a widow with two young children. Nobody knows who Sam is.","id":"10413","runtime":94,"imdbId":"tt0107711","trailer":"http:\/\/www.youtube.com\/watch?v=2294","version":211,"lastModified":"1301902779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac2\/4bc92e05017a3c57fe012ac2\/nowhere-to-run-mid.jpg","genre":"Action","title":"Nowhere to run","releaseDate":727056000000,"language":"en","type":"Movie","_key":"39584"} +{"label":"Tiffany Taubman","version":21,"id":"65036","lastModified":"1301902365000","name":"Tiffany Taubman","type":"Person","_key":"39585"} +{"label":"The Mighty Ducks","description":"As punishment for getting a DUI, hotshot lawyer Gordon Bombay is sentenced to community service coaching the pathetic Mighty Ducks hockey team. Initially reluctant, Gordon eventually transforms the ragtag band of outsiders and misfits into the No. 1 team in the peewee league, overcoming his own childhood trauma in the process.","id":"10414","runtime":100,"imdbId":"tt0104868","version":112,"lastModified":"1301902661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad7\/4bc92e06017a3c57fe012ad7\/the-mighty-ducks-mid.jpg","genre":"Action","title":"The Mighty Ducks","releaseDate":716947200000,"language":"en","tagline":"They Can't Skate. They Can't Win. They Can't Be Serious.","type":"Movie","_key":"39586"} +{"label":"Heidi Kling","version":27,"id":"65038","lastModified":"1301901813000","name":"Heidi Kling","type":"Person","_key":"39587"} +{"label":"Shaun Weiss","version":22,"id":"147499","lastModified":"1301903083000","name":"Shaun Weiss","type":"Person","_key":"39588"} +{"label":"Marlene","description":"No overview found.","id":"10415","runtime":132,"imdbId":"tt0192295","version":58,"lastModified":"1301904442000","genre":"Drama","title":"Marlene","releaseDate":952560000000,"language":"en","type":"Movie","_key":"39589"} +{"label":"What Planet are you from?","description":"No overview found.","id":"10416","runtime":105,"imdbId":"tt0181151","version":182,"lastModified":"1301903923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae0\/4bc92e07017a3c57fe012ae0\/what-planet-are-you-from-mid.jpg","genre":"Comedy","title":"What Planet are you from?","releaseDate":952041600000,"language":"en","type":"Movie","_key":"39590"} +{"label":"Stauffenberg","description":"In 1944, a group of high command officers plot an attempt against Hitler, and one of the leaders of the conspiracy...","id":"10417","runtime":92,"imdbId":"tt0388437","version":111,"lastModified":"1301904556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4bc92e07017a3c57fe012ae5\/stauffenberg-mid.jpg","genre":"Drama","title":"Stauffenberg","releaseDate":1077667200000,"language":"en","type":"Movie","_key":"39591"} +{"label":"Karl-Heinz von Liebezeit","version":19,"id":"65050","lastModified":"1301901877000","name":"Karl-Heinz von Liebezeit","type":"Person","_key":"39592"} +{"label":"Christine Sommer","version":19,"id":"65052","lastModified":"1301902262000","name":"Christine Sommer","type":"Person","_key":"39593"} +{"label":"Michaela Wiebusch","version":19,"id":"65051","lastModified":"1301902262000","name":"Michaela Wiebusch","type":"Person","_key":"39594"} +{"label":"Rainer Bock","version":20,"id":"65054","lastModified":"1301902262000","name":"Rainer Bock","type":"Person","_key":"39595"} +{"label":"Enrico Mutti","version":19,"id":"65053","lastModified":"1301902262000","name":"Enrico Mutti","type":"Person","_key":"39596"} +{"label":"David C. Bunners","version":19,"id":"50185","lastModified":"1301902262000","name":"David C. Bunners","type":"Person","_key":"39597"} +{"label":"Schiller","description":"No overview found.","id":"10418","runtime":90,"imdbId":"tt0458469","version":63,"lastModified":"1301904473000","genre":"Drama","title":"Schiller","releaseDate":1114732800000,"language":"en","type":"Movie","_key":"39598"} +{"label":"Martin Weinhart","version":21,"id":"65055","lastModified":"1301901955000","name":"Martin Weinhart","type":"Person","_key":"39599"} +{"label":"Swing Kids","description":"The story of a close-knit group of young kids in Nazi Germany who listen to banned swing music from the US. Soon dancing and fun leads to more difficult choices as the Nazi's begin tightening the grip on Germany. Each member of the group is forced to face some tough choices about right, wrong, and survival.","id":"10419","runtime":112,"imdbId":"tt0108265","version":190,"lastModified":"1301903786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aee\/4bc92e08017a3c57fe012aee\/swing-kids-mid.png","genre":"Drama","title":"Swing Kids","releaseDate":731289600000,"language":"en","type":"Movie","_key":"39600"} +{"label":"Tushka Bergen","version":20,"id":"65058","lastModified":"1301902374000","name":"Tushka Bergen","type":"Person","_key":"39601"} +{"label":"David Tom","version":23,"id":"65059","lastModified":"1301902389000","name":"David Tom","type":"Person","_key":"39602"} +{"label":"Das Fr\u00e4ulein","description":"No overview found.","id":"10420","runtime":81,"imdbId":"tt0476999","version":88,"lastModified":"1301903461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bf3ced7017a3c321500055c\/das-fraulein-mid.jpg","genre":"Drama","title":"Das Fr\u00e4ulein","releaseDate":1154908800000,"language":"en","type":"Movie","_key":"39603"} +{"label":"Andrea Staka","version":20,"id":"65061","lastModified":"1301902262000","name":"Andrea Staka","type":"Person","_key":"39604"} +{"label":"Andrea Zogg","version":21,"id":"65075","lastModified":"1301901726000","name":"Andrea Zogg","type":"Person","_key":"39605"} +{"label":"Marija Skaricic","version":20,"id":"65073","lastModified":"1301902086000","name":"Marija Skaricic","type":"Person","_key":"39606"} +{"label":"Pablo Aguilar","version":19,"id":"65076","lastModified":"1301901726000","name":"Pablo Aguilar","type":"Person","_key":"39607"} +{"label":"David Imhoof","version":19,"id":"65077","lastModified":"1301902262000","name":"David Imhoof","type":"Person","_key":"39608"} +{"label":"Sebastian Kr\u00e4henb\u00fchl","version":19,"id":"65078","lastModified":"1301901877000","name":"Sebastian Kr\u00e4henb\u00fchl","type":"Person","_key":"39609"} +{"label":"Ljubica Jovic","version":19,"id":"65074","lastModified":"1301901877000","name":"Ljubica Jovic","type":"Person","_key":"39610"} +{"label":"Oliver Zgorelec","version":19,"id":"65079","lastModified":"1301901877000","name":"Oliver Zgorelec","type":"Person","_key":"39611"} +{"label":"Annette Wunsch","version":19,"id":"65080","lastModified":"1301902262000","name":"Annette Wunsch","type":"Person","_key":"39612"} +{"label":"Anik\u00f3 Don\u00e1th","version":21,"id":"65082","lastModified":"1301901726000","name":"Anik\u00f3 Don\u00e1th","type":"Person","_key":"39613"} +{"label":"Kenneth Huber","version":19,"id":"65081","lastModified":"1301901877000","name":"Kenneth Huber","type":"Person","_key":"39614"} +{"label":"Vera Bommer","version":19,"id":"65085","lastModified":"1301901877000","name":"Vera Bommer","type":"Person","_key":"39615"} +{"label":"Stefan Suske","version":19,"id":"65084","lastModified":"1301902262000","name":"Stefan Suske","type":"Person","_key":"39616"} +{"label":"Robin Rehmann","version":19,"id":"65086","lastModified":"1301901877000","name":"Robin Rehmann","type":"Person","_key":"39617"} +{"label":"Hans Suter","version":19,"id":"65083","lastModified":"1301902262000","name":"Hans Suter","type":"Person","_key":"39618"} +{"label":"Tiziana Jelmini","version":19,"id":"54068","lastModified":"1301902262000","name":"Tiziana Jelmini","type":"Person","_key":"39619"} +{"label":"Peter Petrovic","version":19,"id":"65089","lastModified":"1301902262000","name":"Peter Petrovic","type":"Person","_key":"39620"} +{"label":"Sanja Ristic","version":19,"id":"65087","lastModified":"1301902262000","name":"Sanja Ristic","type":"Person","_key":"39621"} +{"label":"Anto Lukenda","version":19,"id":"65088","lastModified":"1301902262000","name":"Anto Lukenda","type":"Person","_key":"39622"} +{"label":"Nenad Milic","version":19,"id":"65090","lastModified":"1301902262000","name":"Nenad Milic","type":"Person","_key":"39623"} +{"label":"La guerre des boutons","description":"No overview found.","id":"10421","runtime":90,"imdbId":"tt0054949","version":153,"lastModified":"1302063872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcb\/4bfec843017a3c7031000dcb\/la-guerre-des-boutons-mid.jpg","genre":"Comedy","title":"La guerre des boutons","releaseDate":-243216000000,"language":"en","type":"Movie","_key":"39624"} +{"label":"Michel Isella","version":21,"id":"65091","lastModified":"1301902388000","name":"Michel Isella","type":"Person","_key":"39625"} +{"label":"Andr\u00e9 Treton","version":21,"id":"65092","lastModified":"1301901818000","name":"Andr\u00e9 Treton","type":"Person","_key":"39626"} +{"label":"Abgeschminkt!","description":"No overview found.","id":"10422","runtime":55,"imdbId":"tt0106209","version":45,"lastModified":"1301906159000","genre":"Comedy","title":"Abgeschminkt!","releaseDate":741484800000,"language":"en","type":"Movie","_key":"39627"} +{"label":"Daniela Amavia","version":21,"id":"65098","lastModified":"1301902334000","name":"Daniela Amavia","type":"Person","_key":"39628"} +{"label":"Dragon: The Bruce Lee Story","description":"This film is a glimpse into the life, love and the unconquerable spirit of the legendary Bruce Lee. From a childhod of rigorous martial arts training, Lee realizes his dream of opening his own kung-fu school in America. Before long, he is discovered by a Hollywood producer and begins a meteroric rise to fame and an all too short reign as one the most charasmatic action heroes in cinema history.","id":"10423","runtime":120,"imdbId":"tt0106770","version":144,"lastModified":"1301902536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aff\/4bc92e0d017a3c57fe012aff\/dragon-the-bruce-lee-story-mid.jpg","genre":"Action","title":"Dragon: The Bruce Lee Story","releaseDate":736732800000,"language":"en","type":"Movie","_key":"39629"} +{"label":"Michael Learned","version":21,"id":"65101","lastModified":"1301902141000","name":"Michael Learned","type":"Person","_key":"39630"} +{"label":"Jennifer 8","description":"A big city cop from LA moves to a small town police force and immediately finds himself investigating a murder. Using theories rejected by his colleagues, the cop, John Berlin, meets a young blind woman named Helena, who he is attracted to. Meanwhile, a serial killer is on the loose and only John knows it.","id":"10424","runtime":124,"imdbId":"tt0104549","version":118,"lastModified":"1302038836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0d\/4bc92e0e017a3c57fe012b0d\/jennifer-8-mid.jpg","genre":"Mystery","title":"Jennifer 8","releaseDate":721008000000,"language":"en","tagline":"Is anyone there?","type":"Movie","_key":"39631"} +{"label":"The Death and Life of Bobby Z","description":"A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.","id":"10425","runtime":97,"imdbId":"tt0473188","version":161,"lastModified":"1302062700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1e\/4bc92e10017a3c57fe012b1e\/the-death-and-life-of-bobby-z-mid.jpg","genre":"Action","title":"The Death and Life of Bobby Z","releaseDate":1195257600000,"language":"en","type":"Movie","_key":"39632"} +{"label":"Richard Bairos","version":22,"id":"65122","lastModified":"1301901482000","name":"Richard Bairos","type":"Person","_key":"39633"} +{"label":"Jarrod Bunch","version":21,"id":"65121","lastModified":"1301901778000","name":"Jarrod Bunch","type":"Person","_key":"39634"} +{"label":"Shirly Brener","version":20,"id":"65123","lastModified":"1301901922000","name":"Shirly Brener","type":"Person","_key":"39635"} +{"label":"Paul Diaz","version":20,"id":"65126","lastModified":"1301902121000","name":"Paul Diaz","type":"Person","_key":"39636"} +{"label":"Troy Brenna","version":20,"id":"65124","lastModified":"1301902121000","name":"Troy Brenna","type":"Person","_key":"39637"} +{"label":"Rebecca Chaney","version":22,"id":"65125","lastModified":"1301902121000","name":"Rebecca Chaney","type":"Person","_key":"39638"} +{"label":"Adamo P. Cultraro","version":20,"id":"65127","lastModified":"1301902121000","name":"Adamo P. Cultraro","type":"Person","_key":"39639"} +{"label":"Rob Fleming","version":20,"id":"65129","lastModified":"1301902121000","name":"Rob Fleming","type":"Person","_key":"39640"} +{"label":"Carrie Fleshman","version":20,"id":"65130","lastModified":"1301902121000","name":"Carrie Fleshman","type":"Person","_key":"39641"} +{"label":"Candace Elaine","version":20,"id":"65128","lastModified":"1301902121000","name":"Candace Elaine","type":"Person","_key":"39642"} +{"label":"Dax Garner","version":20,"id":"65131","lastModified":"1301902121000","name":"Dax Garner","type":"Person","_key":"39643"} +{"label":"Friday after Next","description":"Craig and Day Day have finally moved out of their parents houses and into their own crib. The cousins work nights at a local mall as security guards. When their house is robbed on Christmas Eve they team up to track him down.","id":"10426","runtime":85,"imdbId":"tt0293815","version":111,"lastModified":"1301902397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2b\/4bc92e13017a3c57fe012b2b\/friday-after-next-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Friday after Next","releaseDate":1037923200000,"language":"en","type":"Movie","_key":"39644"} +{"label":"Don 'D.C.' Curry","version":20,"id":"65132","lastModified":"1301901725000","name":"Don 'D.C.' Curry","type":"Person","_key":"39645"} +{"label":"K.D. Aubert","version":22,"id":"73830","lastModified":"1301901490000","name":"K.D. Aubert","type":"Person","_key":"39646"} +{"label":"Bebe Drake","version":19,"id":"98902","lastModified":"1301902895000","name":"Bebe Drake","type":"Person","_key":"39647"} +{"label":"Rickey Smiley","version":17,"id":"98904","lastModified":"1301903041000","name":"Rickey Smiley","type":"Person","_key":"39648"} +{"label":"Marcus Raboy","version":20,"id":"65133","lastModified":"1301902086000","name":"Marcus Raboy","type":"Person","_key":"39649"} +{"label":"Red Rock West","description":"When a promised job for Texan Michael fails to materialise in Wyoming, Mike is mistaken by Wayne to be the hitman he hired to kill his unfaithful wife, Suzanne. Mike takes full advantage of the situation, collects the money and runs. During his getaway, things go wrong, and soon get worse when he runs into the real hitman, Lyle.","id":"10427","runtime":98,"imdbId":"tt0105226","trailer":"http:\/\/www.youtube.com\/watch?v=a-bpR43gs1U","version":120,"lastModified":"1301905197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecc\/4c73e3cd7b9aa13ab6000ecc\/red-rock-west-mid.jpg","genre":"Mystery","title":"Red Rock West","releaseDate":740188800000,"language":"en","type":"Movie","_key":"39650"} +{"label":"Craig Reay","version":20,"id":"65253","lastModified":"1301901813000","name":"Craig Reay","type":"Person","_key":"39651"} +{"label":"Hackers","description":"A young boy is arrested by the US Secret Service for writing a computer virus and is banned from using a computer until his 18th birthday. Years later, he and his new-found friends discover a plot to unleash a dangerous computer virus, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.","id":"10428","runtime":107,"imdbId":"tt0113243","trailer":"http:\/\/www.youtube.com\/watch?v=pP6iTjhlOvs","version":195,"lastModified":"1301902003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b69\/4cf1328b5e73d61924000b69\/hackers-mid.jpg","genre":"Action","title":"Hackers","releaseDate":811123200000,"language":"en","type":"Movie","_key":"39652"} +{"label":"Peter Y. Kim","version":20,"id":"65143","lastModified":"1301901536000","name":"Peter Y. Kim","type":"Person","_key":"39653"} +{"label":"Darren Lee","version":20,"id":"65142","lastModified":"1301901725000","name":"Darren Lee","type":"Person","_key":"39654"} +{"label":"Liza Walker","version":20,"id":"65145","lastModified":"1301901725000","name":"Liza Walker","type":"Person","_key":"39655"} +{"label":"Bob Sessions","version":20,"id":"65146","lastModified":"1301901725000","name":"Bob Sessions","type":"Person","_key":"39656"} +{"label":"Ethan Browne","version":20,"id":"65144","lastModified":"1301901876000","name":"Ethan Browne","type":"Person","_key":"39657"} +{"label":"Blake Willett","version":20,"id":"65147","lastModified":"1301901725000","name":"Blake Willett","type":"Person","_key":"39658"} +{"label":"Max Ligosh","version":20,"id":"65148","lastModified":"1301901725000","name":"Max Ligosh","type":"Person","_key":"39659"} +{"label":"Takedown","description":"Kevin Mitnick is quite possibly the best hacker in the world. Hunting for more and more information, seeking more and more cyber-trophies every day, he constantly looks for bigger challenges. When he breaks into the computer of a security expert and an ex-hacker, he finds one - and much more than that...","id":"10429","runtime":92,"imdbId":"tt0159784","trailer":"http:\/\/www.youtube.com\/watch?v=1526","version":124,"lastModified":"1301903831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4d2f35a17b9aa140f1000023\/hackers-2-takedown-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Takedown","releaseDate":953078400000,"language":"en","type":"Movie","_key":"39660"} +{"label":"Angela Featherstone","version":31,"id":"15276","lastModified":"1301927673000","name":"Angela Featherstone","type":"Person","_key":"39661"} +{"label":"Master P","version":30,"id":"65164","lastModified":"1301901766000","name":"Master P","type":"Person","_key":"39662"} +{"label":"Sara Melson","version":23,"id":"65168","lastModified":"1301901725000","name":"Sara Melson","type":"Person","_key":"39663"} +{"label":"Dorit Sauer","version":25,"id":"65165","lastModified":"1301901536000","name":"Dorit Sauer","type":"Person","_key":"39664"} +{"label":"Mark Joy","version":29,"id":"65166","lastModified":"1301901781000","name":"Mark Joy","type":"Person","_key":"39665"} +{"label":"Scott Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4cd2ffa47b9aa16b9f001014\/scott-cooper-profile.jpg","version":35,"id":"65167","lastModified":"1301911899000","name":"Scott Cooper","type":"Person","_key":"39666"} +{"label":"Tim Parati","version":25,"id":"65171","lastModified":"1301901725000","name":"Tim Parati","type":"Person","_key":"39667"} +{"label":"Sam Robison","version":25,"id":"65170","lastModified":"1301901876000","name":"Sam Robison","type":"Person","_key":"39668"} +{"label":"War","description":"FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?","id":"10431","runtime":103,"imdbId":"tt0499556","version":501,"lastModified":"1301901630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/285\/4d7267847b9aa1776a000285\/war-mid.jpg","studio":"Current Entertainment","genre":"Action","title":"War","releaseDate":1187913600000,"language":"en","tagline":"Vengeance is the ultimate weapon.","type":"Movie","_key":"39669"} +{"label":"Philip G. Atwell","version":26,"id":"65190","lastModified":"1301901876000","name":"Philip G. Atwell","type":"Person","_key":"39670"} +{"label":"Andrea Roth","version":41,"id":"44151","lastModified":"1301901201000","name":"Andrea Roth","type":"Person","_key":"39671"} +{"label":"Mathew St. Patrick","version":30,"id":"65195","lastModified":"1301901509000","name":"Mathew St. Patrick","type":"Person","_key":"39672"} +{"label":"Nadine Velazquez","version":26,"id":"65196","lastModified":"1301901725000","name":"Nadine Velazquez","type":"Person","_key":"39673"} +{"label":"Mark Cheng","version":30,"id":"65197","lastModified":"1301901739000","name":"Mark Cheng","type":"Person","_key":"39674"} +{"label":"Steph Song","version":29,"id":"65200","lastModified":"1301902157000","name":"Steph Song","type":"Person","_key":"39675"} +{"label":"Kennedy Montano","version":26,"id":"65199","lastModified":"1301902086000","name":"Kennedy Montano","type":"Person","_key":"39676"} +{"label":"Annika Foo","version":26,"id":"65201","lastModified":"1301902086000","name":"Annika Foo","type":"Person","_key":"39677"} +{"label":"Nicholas Elia","version":27,"id":"65202","lastModified":"1301902139000","name":"Nicholas Elia","type":"Person","_key":"39678"} +{"label":"Hack!","description":"Seven college students are picked to travel to a private island owned by the reclusive Vincent King and his film-obsessed wife Mary Shelley to study island wildlife. But is isn't long when a mysterious killer begins killing the students one-by-one, and modeling them after gory murder scenes from numerous horror films.","id":"10432","runtime":89,"imdbId":"tt0475289","version":186,"lastModified":"1302060064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b84\/4bc92e20017a3c57fe012b84\/hack-mid.jpg","genre":"Comedy","title":"Hack!","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"39679"} +{"label":"Matt Flynn","version":20,"id":"65203","lastModified":"1301901876000","name":"Matt Flynn","type":"Person","_key":"39680"} +{"label":"Jay Kenneth Johnson","version":19,"id":"65221","lastModified":"1301901876000","name":"Jay Kenneth Johnson","type":"Person","_key":"39681"} +{"label":"Danica McKellar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4cdc09c87b9aa1332f000099\/danica-mckellar-profile.jpg","version":25,"id":"65220","lastModified":"1301901108000","name":"Danica McKellar","type":"Person","_key":"39682"} +{"label":"Justin Chon","version":66,"id":"65225","lastModified":"1301901117000","name":"Justin Chon","type":"Person","_key":"39683"} +{"label":"Adrienne Frantz","version":21,"id":"65224","lastModified":"1301902359000","name":"Adrienne Frantz","type":"Person","_key":"39684"} +{"label":"Won-G","version":19,"id":"65223","lastModified":"1301901876000","name":"Won-G","type":"Person","_key":"39685"} +{"label":"Travis Schuldt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f2\/4ceeb2945e73d653170000f2\/travis-schuldt-profile.jpg","version":21,"id":"65227","lastModified":"1301902212000","name":"Travis Schuldt","type":"Person","_key":"39686"} +{"label":"Mike Wittlin","version":19,"id":"65228","lastModified":"1301902086000","name":"Mike Wittlin","type":"Person","_key":"39687"} +{"label":"Gabrielle Richens","version":19,"id":"65226","lastModified":"1301902086000","name":"Gabrielle Richens","type":"Person","_key":"39688"} +{"label":"Richard Comeau","version":21,"id":"6995","lastModified":"1301901308000","name":"Richard Comeau","type":"Person","_key":"39689"} +{"label":"Tammy Felice","version":19,"id":"65229","lastModified":"1301902086000","name":"Tammy Felice","type":"Person","_key":"39690"} +{"label":"Jenna Morasca","version":20,"id":"65232","lastModified":"1301901612000","name":"Jenna Morasca","type":"Person","_key":"39691"} +{"label":"Suzie Pollard","version":19,"id":"65231","lastModified":"1301902086000","name":"Suzie Pollard","type":"Person","_key":"39692"} +{"label":"Noah Guy","version":19,"id":"65230","lastModified":"1301902261000","name":"Noah Guy","type":"Person","_key":"39693"} +{"label":"Teague Cowley","version":19,"id":"65233","lastModified":"1301902086000","name":"Teague Cowley","type":"Person","_key":"39694"} +{"label":"Sean Kanan","version":20,"id":"65205","lastModified":"1301902086000","name":"Sean Kanan","type":"Person","_key":"39695"} +{"label":"Mad Dog and Glory","description":"Wayne Dobie is a shy police photographer who saves the life of crime boss Frank Milo. Greatful, Milo insists on being Wayne's friend, offering him the companionship of \"Glory\", one of his employees. Wayne is thus in a difficult situation: he can't be seen to be fraternising with criminals, and he's unsure about how to deal with Glory.","id":"10433","runtime":97,"imdbId":"tt0107473","version":166,"lastModified":"1301902398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8d\/4bc92e21017a3c57fe012b8d\/mad-dog-and-glory-mid.jpg","genre":"Comedy","title":"Mad Dog and Glory","releaseDate":731289600000,"language":"en","type":"Movie","_key":"39696"} +{"label":"Faraway, So Close!","description":"The film opens with the angel Cassiel (Otto Sander) standing on the statue of the Angel of Victory overlooking post-Cold War Berlin. Growing ever more despondent over his fate as a mere observer of human life, rather than a vital part of it, Cassiel dreams of \"crossing over\" to the human world.And he does, as Karl Engel, a man who perhaps knows too much, perhaps like in many of Hitchcock's films, some harmless citizen who gets involved in an affair to which he is not up to. In fact, there is no ","id":"10434","runtime":144,"imdbId":"tt0107209","trailer":"http:\/\/www.youtube.com\/watch?v=8-kAhp0pruM","version":111,"lastModified":"1301902320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bab\/4bc92e26017a3c57fe012bab\/in-weiter-ferne-so-nah-mid.jpg","genre":"Drama","title":"Faraway, So Close!","releaseDate":737683200000,"language":"en","type":"Movie","_key":"39697"} +{"label":"Chaplin","description":"A film about the troubled and controversial life of the master comedy filmmaker.","id":"10435","runtime":143,"imdbId":"tt0103939","version":396,"lastModified":"1302058772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/711\/4d6efbd75e73d66b2b004711\/chaplin-mid.jpg","genre":"Drama","title":"Chaplin","releaseDate":724636800000,"language":"en","type":"Movie","_key":"39698"} +{"label":"The Age of Innocence","description":"Tale of 19th century New York high society in which a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.","id":"10436","runtime":139,"imdbId":"tt0106226","trailer":"http:\/\/www.youtube.com\/watch?v=K0bENHsyGPg","version":209,"lastModified":"1301903182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a9\/4d2536e25e73d626be0003a9\/the-age-of-innocence-mid.jpg","genre":"Drama","title":"The Age of Innocence","releaseDate":746755200000,"language":"en","type":"Movie","_key":"39699"} +{"label":"Alexis Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d2\/4bf43d31017a3c32130007d2\/alexis-smith-profile.jpg","version":43,"id":"65284","lastModified":"1301901285000","name":"Alexis Smith","type":"Person","_key":"39700"} +{"label":"The Muppet Christmas Carol","description":"A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present, and future.","id":"10437","runtime":85,"imdbId":"tt0104940","trailer":"http:\/\/www.youtube.com\/watch?v=1333","version":108,"lastModified":"1301902486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4cfdc95c7b9aa15146004a7a\/the-muppet-christmas-carol-mid.jpg","studio":"Jim Henson Company, The","genre":"Comedy","title":"The Muppet Christmas Carol","releaseDate":723945600000,"language":"en","type":"Movie","_key":"39701"} +{"label":"Donald Austen","version":25,"id":"65294","lastModified":"1301902346000","name":"Donald Austen","type":"Person","_key":"39702"} +{"label":"Meredith Braun","version":21,"id":"65297","lastModified":"1301902261000","name":"Meredith Braun","type":"Person","_key":"39703"} +{"label":"Brian Henson","version":34,"id":"65298","lastModified":"1301901349000","name":"Brian Henson","type":"Person","_key":"39704"} +{"label":"Beethoven's 2nd","description":"Beethoven is back -- and this time, he has a whole brood with him now that he's met his canine match, Missy, and fathered a family. The only problem is that Missy's owner, Regina, wants to sell the puppies and tear the clan apart. It's up to Beethoven and the Newton kids to save the day and keep everyone together.","id":"10438","runtime":89,"imdbId":"tt0106375","version":141,"lastModified":"1301902752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31e\/4d8f74947b9aa1675e00231e\/beethoven-s-2nd-mid.jpg","genre":"Comedy","title":"Beethoven's 2nd","releaseDate":756000000000,"language":"en","tagline":"The Newton Family is going to the dogs...","type":"Movie","_key":"39705"} +{"label":"Nicholle Tom","version":29,"id":"35241","lastModified":"1301901445000","name":"Nicholle Tom","type":"Person","_key":"39706"} +{"label":"Christopher Castile","version":22,"id":"65299","lastModified":"1301902373000","name":"Christopher Castile","type":"Person","_key":"39707"} +{"label":"Sarah Rose Karr","version":22,"id":"65300","lastModified":"1301902177000","name":"Sarah Rose Karr","type":"Person","_key":"39708"} +{"label":"Hocus Pocus","description":"300 years ago, the Sanderson sisters had bewitched people. Now it's Halloween 1993 and Max Dennison has lit the candle that would bring the witches back to life! Now Max, Allison, and Dani must save all the kids in Salem from the witches including leader Winifred, goofy Sarah, and high-strung Mary who will steal the lives of children!","id":"10439","runtime":96,"imdbId":"tt0107120","version":98,"lastModified":"1301902778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/648\/4d4df86f7b9aa13aba009648\/hocus-pocus-mid.jpg","genre":"Comedy","title":"Hocus Pocus","releaseDate":742780800000,"language":"en","tagline":"It's just a bunch of Hocus Pocus.","type":"Movie","_key":"39709"} +{"label":"Omri Katz","version":24,"id":"65309","lastModified":"1301901773000","name":"Omri Katz","type":"Person","_key":"39710"} +{"label":"Kenny Ortega","version":50,"id":"65310","lastModified":"1301901287000","name":"Kenny Ortega","type":"Person","_key":"39711"} +{"label":"Manhattan Murder Mystery","description":"A middle-aged couple suspects foul play when their neighbor's wife suddenly drops dead.","id":"10440","runtime":104,"imdbId":"tt0107507","version":151,"lastModified":"1301902709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bef\/4bc92e2e017a3c57fe012bef\/manhattan-murder-mystery-mid.jpg","genre":"Comedy","title":"Manhattan Murder Mystery","releaseDate":745632000000,"language":"en","type":"Movie","_key":"39712"} +{"label":"Babylon 5","description":"No overview found.","id":"10441","version":416,"lastModified":"1302056531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/043\/4c31196c5e73d640bc000043\/babylon-5-mid.jpg","title":"Babylon 5","language":"en","type":"Movie","_key":"39713"} +{"label":"So I Married an Axe Murderer","description":"Comedy sensation Mike Myers stars with Nancy Travis in this hatchet-driven romantic comedy about a wedlock-shy coffee house poet who finally meets the perfect woman. ","id":"10442","runtime":93,"imdbId":"tt0108174","trailer":"http:\/\/www.youtube.com\/watch?v=1796","version":270,"lastModified":"1302055702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c00\/4bc92e2f017a3c57fe012c00\/so-i-married-an-axe-murderer-mid.jpg","genre":"Comedy","title":"So I Married an Axe Murderer","releaseDate":743990400000,"language":"en","type":"Movie","_key":"39714"} +{"label":"Thomas Schlamme","version":17,"id":"15106","lastModified":"1301901536000","name":"Thomas Schlamme","type":"Person","_key":"39715"} +{"label":"Fearless","description":"After a terrible air disaster, survivor Max Klein emerges a changed person. Unable to connect to his former life or to wife Laura, he feels godlike and invulnerable. When psychologist Bill Perlman is unable to help Max, he has Max meet another survivor, Carla Rodrigo, who is racked with grief and guilt since her baby died in the crash which she and Max survived.","id":"10443","runtime":122,"imdbId":"tt0106881","trailer":"http:\/\/www.youtube.com\/watch?v=Tm5jBa4LzxQ","version":143,"lastModified":"1301903978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0e\/4bc92e32017a3c57fe012c0e\/fearless-mid.jpg","genre":"Action","title":"Fearless","releaseDate":750643200000,"language":"en","tagline":"Some people are afraid of nothing.","type":"Movie","_key":"39716"} +{"label":"Das Testament des Dr. Mabuse","description":"No overview found.","id":"10444","runtime":88,"imdbId":"tt0056573","version":85,"lastModified":"1301907402000","genre":"Crime","title":"Das Testament des Dr. Mabuse","releaseDate":-230947200000,"language":"en","type":"Movie","_key":"39717"} +{"label":"Helmut Schmid","version":21,"id":"65321","lastModified":"1301902181000","name":"Helmut Schmid","type":"Person","_key":"39718"} +{"label":"Shadowlands","description":"C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham","id":"10445","runtime":131,"imdbId":"tt0108101","version":116,"lastModified":"1301903335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ce\/4d31e7ea5e73d6334d0010ce\/shadowlands-mid.jpg","studio":"Shadowlands Productions","genre":"Drama","title":"Shadowlands","releaseDate":756777600000,"language":"en","type":"Movie","_key":"39719"} +{"label":"The High Crusade","description":"No overview found.","id":"10446","runtime":100,"imdbId":"tt0110024","version":51,"lastModified":"1301903873000","genre":"Adventure","title":"The High Crusade","releaseDate":770515200000,"language":"en","type":"Movie","_key":"39720"} +{"label":"Catherine Punch","version":20,"id":"65335","lastModified":"1301901523000","name":"Catherine Punch","type":"Person","_key":"39721"} +{"label":"Patrick Brymer","version":20,"id":"65336","lastModified":"1301902365000","name":"Patrick Brymer","type":"Person","_key":"39722"} +{"label":"Klaus Knoesel","version":24,"id":"28940","lastModified":"1301901495000","name":"Klaus Knoesel","type":"Person","_key":"39723"} +{"label":"Holger Neuh\u00e4user","version":24,"id":"28941","lastModified":"1301901401000","name":"Holger Neuh\u00e4user","type":"Person","_key":"39724"} +{"label":"No Escape","description":"In the year 2022, a ruthless prison warden has created the ultimate solution for his most troublesome and violent inmates: Absolom, a secret jungle island where prisoners are abandoned and left to die. But Marine Captain John Robbins, convicted of murdering a commanding officer, is determined to escape the island in order to reveal the truth behind his murderous actions and clear his name.","id":"10447","runtime":118,"imdbId":"tt0110678","version":125,"lastModified":"1301902884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1c\/4bc92e35017a3c57fe012c1c\/no-escape-mid.jpg","genre":"Action","title":"No Escape","releaseDate":767577600000,"language":"en","type":"Movie","_key":"39725"} +{"label":"Rapa Nui","description":"Inter-tribal rivalry leads to a competition to erect a huge statue (moai) in record time before Make can take part in the race to retrieve the egg of a Sooty Tern. The reward for winning this race is to rule the island for one year.","id":"10448","runtime":107,"imdbId":"tt0110944","version":97,"lastModified":"1301903439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c21\/4bc92e35017a3c57fe012c21\/rapa-nui-mid.jpg","genre":"Action","title":"Rapa Nui","releaseDate":766281600000,"language":"en","type":"Movie","_key":"39726"} +{"label":"Esai Morales","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ba1\/4c716ab17b9aa13ab7000ba1\/esai-morales-profile.jpg","version":60,"id":"65344","lastModified":"1301901290000","name":"Esai Morales","type":"Person","_key":"39727"} +{"label":"Eru Potaka-Dewes","version":19,"id":"65346","lastModified":"1301901536000","name":"Eru Potaka-Dewes","type":"Person","_key":"39728"} +{"label":"When a Man Loves a Woman","description":"An airline pilot and his wife are forced to face the consequences of her alcoholism when her addictions threaten her life and their daughter's safety. While the woman enters detox, her husband must face the truth of his enabling behavior.","id":"10449","runtime":126,"imdbId":"tt0111693","version":132,"lastModified":"1301903292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2f\/4bc92e36017a3c57fe012c2f\/when-a-man-loves-a-woman-mid.jpg","genre":"Drama","title":"When a Man Loves a Woman","releaseDate":767577600000,"language":"en","type":"Movie","_key":"39729"} +{"label":"The Silence of the Hams","description":"No overview found.","id":"10450","runtime":81,"imdbId":"tt0111190","trailer":"http:\/\/www.youtube.com\/watch?v=n5oUUrgTcpA","version":69,"lastModified":"1301906619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c38\/4bc92e37017a3c57fe012c38\/il-silenzio-dei-prosciutti-mid.jpg","genre":"Comedy","title":"The Silence of the Hams","releaseDate":774057600000,"language":"en","type":"Movie","_key":"39730"} +{"label":"Eat Drink Man Woman","description":"The film tells the story of a retired and widowed Chinese master chef Chu (Si Hung Lung) and his family living in modern day Taipei, Taiwan. At the start of the film, he lives with his three attractive daughters, all of whom are unattached. As the film progresses, each of the daughters encounters new men in their lives. When these new relationships blossom, the stereotypes are broken and the living situation within the family changes.. The film features several scenes displaying the techniques a","id":"10451","runtime":123,"imdbId":"tt0111797","trailer":"http:\/\/www.youtube.com\/watch?v=yicBx-okC3k","version":156,"lastModified":"1301903758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4c40f55f7b9aa14593000095\/yin-shi-nan-nu-mid.jpg","genre":"Comedy","title":"Eat Drink Man Woman","releaseDate":775872000000,"language":"en","type":"Movie","_key":"39731"} +{"label":"Yu-Wen Wang","version":23,"id":"65352","lastModified":"1301901536000","name":"Yu-Wen Wang","type":"Person","_key":"39732"} +{"label":"Chien-lien Wu","version":30,"id":"65353","lastModified":"1301901452000","name":"Chien-lien Wu","type":"Person","_key":"39733"} +{"label":"Kuei-Mei Yang","version":21,"id":"65354","lastModified":"1301901475000","name":"Kuei-Mei Yang","type":"Person","_key":"39734"} +{"label":"La Reine Margot","description":"No overview found.","id":"10452","runtime":162,"imdbId":"tt0110963","version":100,"lastModified":"1302051784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c45\/4bc92e38017a3c57fe012c45\/la-reine-margot-mid.jpg","genre":"Drama","title":"La Reine Margot","releaseDate":768787200000,"language":"en","type":"Movie","_key":"39735"} +{"label":"Poltergeist Collection","description":"No overview found.","id":"10453","version":318,"lastModified":"1302051274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ad\/4cae7b585e73d652b20000ad\/poltergeist-collection-mid.jpg","title":"Poltergeist Collection","language":"en","tagline":"They're Here!","type":"Movie","_key":"39736"} +{"label":"Dracula","description":"No overview found.","id":"10454","version":702,"lastModified":"1302042053000","genre":"Drama","title":"Dracula","language":"en","type":"Movie","_key":"39737"} +{"label":"Chucky","description":"No overview found.","id":"10455","title":"Chucky","language":"en","lastModified":"1302049703000","version":304,"type":"Movie","_key":"39738"} +{"label":"Dirty Harry","description":"No overview found.","id":"10456","version":519,"lastModified":"1302018091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92f\/4d6a8b767b9aa1362c00292f\/dirty-harry-mid.jpg","genre":"Action","title":"Dirty Harry","language":"en","type":"Movie","_key":"39739"} +{"label":"Once Upon a Time in China","description":"No overview found.","id":"10457","version":176,"lastModified":"1301919839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da3\/4d6233b57b9aa154cf005da3\/wong-fei-hung-mid.jpg","genre":"Action","title":"Once Upon a Time in China","language":"en","type":"Movie","_key":"39740"} +{"label":"Lautlos","description":"No overview found.","id":"10458","runtime":94,"imdbId":"tt0325713","version":93,"lastModified":"1301907269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5f\/4bc92e3c017a3c57fe012c5f\/lautlos-mid.jpg","genre":"Thriller","title":"Lautlos","releaseDate":1082592000000,"language":"en","type":"Movie","_key":"39741"} +{"label":"Rudolf Martin","version":23,"id":"25848","lastModified":"1301901581000","name":"Rudolf Martin","type":"Person","_key":"39742"} +{"label":"The Three Investigators","description":"No overview found.","id":"10460","version":354,"lastModified":"1302041882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aab\/4d0d09555e73d6370e000aab\/the-three-investigators-mid.jpg","title":"The Three Investigators","language":"en","type":"Movie","_key":"39743"} +{"label":"Get Carter","description":"Jack Carter, a mob enforcer living in Las Vegas, travels back to his hometown of Seattle for his brother's funeral. During this visit, Carter realizes that the death of his brother was not accidental, but a murder. With this knowledge, Carter sets out to kill all those responsible.","id":"10461","runtime":102,"imdbId":"tt0208988","trailer":"http:\/\/www.youtube.com\/watch?v=2657","version":199,"lastModified":"1301902262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d78\/4d66b58b7b9aa1297e002d78\/get-carter-mid.jpg","genre":"Action","title":"Get Carter","releaseDate":969840000000,"language":"en","type":"Movie","_key":"39744"} +{"label":"Don't drink the water","description":"Somewhere behind the early 1960s cold-war iron curtain, the Hollander family cause an international spying incident when Walter photographs a sunset in a sensitive region. In order to stay out of jail, the Hollanders take refuge in the American Embassy, which is temporarily being run by the absent Ambassador's diplomatically incompetent son, Axel.","id":"10462","runtime":100,"imdbId":"tt0109644","version":125,"lastModified":"1301902966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0d\/4ccf1e955e73d65020000c0d\/don-t-drink-the-water-mid.jpg","genre":"Comedy","title":"Don't drink the water","releaseDate":787708800000,"language":"en","type":"Movie","_key":"39745"} +{"label":"Mayim Bialik","version":20,"id":"65367","lastModified":"1301902261000","name":"Mayim Bialik","type":"Person","_key":"39746"} +{"label":"Ostkreuz","description":"No overview found.","id":"10463","runtime":83,"imdbId":"tt0128385","version":56,"lastModified":"1301907269000","studio":"ZDF","genre":"Drama","title":"Ostkreuz","releaseDate":680227200000,"language":"en","type":"Movie","_key":"39747"} +{"label":"Michael Klier","version":24,"id":"65368","lastModified":"1301901957000","name":"Michael Klier","type":"Person","_key":"39748"} +{"label":"Stefan Cammann","version":17,"id":"65371","lastModified":"1301902086000","name":"Stefan Cammann","type":"Person","_key":"39749"} +{"label":"Gustaw Barwicki","version":17,"id":"65372","lastModified":"1301901876000","name":"Gustaw Barwicki","type":"Person","_key":"39750"} +{"label":"Henry Marcinkowski","version":17,"id":"65373","lastModified":"1301902086000","name":"Henry Marcinkowski","type":"Person","_key":"39751"} +{"label":"Lutz Weidlich","version":21,"id":"50294","lastModified":"1301902343000","name":"Lutz Weidlich","type":"Person","_key":"39752"} +{"label":"Michael Krause","version":19,"id":"65376","lastModified":"1301902261000","name":"Michael Krause","type":"Person","_key":"39753"} +{"label":"Miroslaw Baka","version":25,"id":"66459","lastModified":"1301902035000","name":"Miroslaw Baka","type":"Person","_key":"39754"} +{"label":"Corrina, Corrina","description":"When Manny Singer's wife dies, his young daughter Molly becomes mute and withdrawn. To help cope with looking after Molly, he hires sassy housekeeper Corrina Washington, who coaxes Molly out of her shell and shows father and daughter a whole new way of life. Manny and Corrina's friendship delights Molly and enrages the other townspeople.","id":"10464","runtime":115,"imdbId":"tt0109484","version":115,"lastModified":"1302045465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c79\/4bc92e3e017a3c57fe012c79\/corrina-corrina-mid.jpg","genre":"Comedy","title":"Corrina, Corrina","releaseDate":776649600000,"language":"en","type":"Movie","_key":"39755"} +{"label":"Jessie Nelson","version":42,"id":"16853","lastModified":"1301901402000","name":"Jessie Nelson","type":"Person","_key":"39756"} +{"label":"Behind Enemy Lines Collection","description":"No overview found.","id":"10465","version":224,"lastModified":"1302017963000","title":"Behind Enemy Lines Collection","language":"en","type":"Movie","_key":"39757"} +{"label":"The Money Pit","description":"After being evicted from their Manhattan apartment, a couple buy what looks like the home of their dreams - only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything - including the kitchen sink, disppears into the Money Pit.","id":"10466","runtime":91,"imdbId":"tt0091541","trailer":"http:\/\/www.youtube.com\/watch?v=1947","version":102,"lastModified":"1302044489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c93\/4bc92e42017a3c57fe012c93\/the-money-pit-mid.jpg","genre":"Comedy","title":"The Money Pit","releaseDate":511315200000,"language":"en","type":"Movie","_key":"39758"} +{"label":"The Road to Wellville","description":"This wrong-headed adaptation of the very funny (and scatological) novel by T. Coraghessan Boyle was written and directed by Alan Parker, who doesn't seem to have much of a clue. It's not a botch, just a movie that hammers its efforts at humor too hard. The focus is split between three story lines: the life of cereal tycoon John Kellogg (Anthony Hopkins with buck teeth), who has created a health spa for the wealthy that focuses on regular cleansing of the digestive tract (as well as applications ","id":"10467","runtime":118,"imdbId":"tt0111001","version":111,"lastModified":"1301902634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c98\/4bc92e42017a3c57fe012c98\/the-road-to-wellville-mid.jpg","genre":"Comedy","title":"The Road to Wellville","releaseDate":783302400000,"language":"en","type":"Movie","_key":"39759"} +{"label":"28 Days","description":"After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.","id":"10468","runtime":103,"imdbId":"tt0191754","version":141,"lastModified":"1302043497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc92e45017a3c57fe012ca1\/28-days-mid.jpg","genre":"Drama","title":"28 Days","releaseDate":954979200000,"language":"en","type":"Movie","_key":"39760"} +{"label":"Komm, s\u00fcsser Tod","description":"No overview found.","id":"10469","runtime":107,"imdbId":"tt0271029","version":52,"lastModified":"1301908590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caa\/4bc92e46017a3c57fe012caa\/komm-susser-tod-mid.jpg","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Comedy","title":"Komm, s\u00fcsser Tod","releaseDate":977443200000,"language":"en","type":"Movie","_key":"39761"} +{"label":"Wolfgang Murnberger","version":34,"id":"56570","lastModified":"1301901582000","name":"Wolfgang Murnberger","type":"Person","_key":"39762"} +{"label":"Werner - Gekotzt wird sp\u00e4ter","description":"No overview found.","id":"10470","runtime":80,"imdbId":"tt0304931","trailer":"http:\/\/www.youtube.com\/watch?v=sU4ejwSa-K8","version":53,"lastModified":"1301904014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc92e46017a3c57fe012caf\/werner-gekotzt-wird-spater-mid.jpg","genre":"Animation","title":"Werner - Gekotzt wird sp\u00e4ter","releaseDate":1058400000000,"language":"en","type":"Movie","_key":"39763"} +{"label":"Next Friday","description":"Ice Cube returns as Craig Jones, a streetwise man from South Central Los Angeles who has a knack for getting into trouble. This time out, Craig is still trying to outsmart neighborhood bully Debo (Tommy \\\"Tiny\\\" Lister Jr.); after Craig gets the better of Debo in a fist fight, Debo is determined to flatten Craig in a rematch. Looking to stay out of Debo's way, Craig decides that it would be a good","id":"10471","runtime":98,"imdbId":"tt0195945","version":134,"lastModified":"1301942708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cca\/4bc92e48017a3c57fe012cca\/next-friday-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Next Friday","releaseDate":947635200000,"language":"en","type":"Movie","_key":"39764"} +{"label":"Rolando Molina","version":16,"id":"90448","lastModified":"1301902467000","name":"Rolando Molina","type":"Person","_key":"39765"} +{"label":"Lisa Rodr\u00edguez","version":16,"id":"98899","lastModified":"1301902636000","name":"Lisa Rodr\u00edguez","type":"Person","_key":"39766"} +{"label":"Kym Whitley","version":27,"id":"80597","lastModified":"1301901136000","name":"Kym Whitley","type":"Person","_key":"39767"} +{"label":"The Lady of Rage","version":17,"id":"65628","lastModified":"1301901725000","name":"The Lady of Rage","type":"Person","_key":"39768"} +{"label":"Sticky Fingaz","version":34,"id":"86462","lastModified":"1301902139000","name":"Sticky Fingaz","type":"Person","_key":"39769"} +{"label":"Down to You","description":"This Big Apple-based romantic comedy charts the tumultuous relationship between liberal arts student and budding chef Al and his first girlfriend, Imogen, a self-possessed freshman who wants to become an artist. After a summer abroad, however, Imogen feels like the relationship is robbing her of her youth, and the couple must struggle with their relationship.","id":"10472","runtime":91,"imdbId":"tt0186975","version":104,"lastModified":"1301904895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccf\/4bc92e48017a3c57fe012ccf\/down-to-you-mid.jpg","genre":"Comedy","title":"Down to You","releaseDate":948412800000,"language":"en","tagline":"A new comedy about giving first love a second chance.","type":"Movie","_key":"39770"} +{"label":"Kris Isacsson","version":34,"id":"65627","lastModified":"1301902032000","name":"Kris Isacsson","type":"Person","_key":"39771"} +{"label":"Dragonheart: A New Beginning","description":"When Geoff, an orphaned stable boy (Chris Masterson), discovers Drake (voice of Robby Benson), the world's last living dragon, he realizes that his dream of becoming a knight in shining armor can now come true. Together, they soon face challenges that turn them into heroes. But caught up in the excitement of their new lives, Geoff and Drake fail to see the hidden dangers that surround them.","id":"10473","runtime":84,"imdbId":"tt0214641","version":157,"lastModified":"1302040252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd8\/4bc92e4a017a3c57fe012cd8\/dragonheart-a-new-beginning-mid.jpg","genre":"Adventure","title":"Dragonheart: A New Beginning","releaseDate":965692800000,"language":"en","type":"Movie","_key":"39772"} +{"label":"Rona Figueroa","version":23,"id":"65623","lastModified":"1301901813000","name":"Rona Figueroa","type":"Person","_key":"39773"} +{"label":"Matt Hickey","version":23,"id":"65624","lastModified":"1301901589000","name":"Matt Hickey","type":"Person","_key":"39774"} +{"label":"The Basketball Diaries","description":"Film adaptation of street tough Jim Carroll's epistle about his kaleidoscopic free fall into the harrowing world of drug addiction.","id":"10474","runtime":102,"imdbId":"tt0112461","trailer":"http:\/\/www.youtube.com\/watch?v=0vhpB6EF6l8","version":327,"lastModified":"1302039696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/813\/4d16ed535e73d6083e008813\/the-basketball-diaries-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"The Basketball Diaries","releaseDate":798422400000,"language":"en","tagline":"The true story of the death of innocence and the birth of an artist.","type":"Movie","_key":"39775"} +{"label":"Scott Kalvert","version":26,"id":"65390","lastModified":"1301901950000","name":"Scott Kalvert","type":"Person","_key":"39776"} +{"label":"James Madio","version":27,"id":"65395","lastModified":"1301901671000","name":"James Madio","type":"Person","_key":"39777"} +{"label":"Factotum","description":"This drama centers on Hank Chinaski, the fictional alter-ego of \"Factotum\" author Charles Bukowski, who wanders around Los Angeles, CA trying to live off jobs which don't interfere with his primary interest, which is writing. Along the way, he fends off the distractions offered by women, drinking and gambling.","id":"10475","runtime":94,"imdbId":"tt0417658","trailer":"http:\/\/www.youtube.com\/watch?v=7QXMybzPJRc","version":165,"lastModified":"1301902682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cef\/4bc92e4f017a3c57fe012cef\/factotum-mid.jpg","genre":"Comedy","title":"Factotum","releaseDate":1113264000000,"language":"en","type":"Movie","_key":"39778"} +{"label":"Hustle & Flow","description":"With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.","id":"10476","runtime":116,"imdbId":"tt0410097","version":192,"lastModified":"1302043324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d04\/4bc92e51017a3c57fe012d04\/hustle-flow-mid.jpg","genre":"Drama","title":"Hustle & Flow","releaseDate":1113436800000,"language":"en","type":"Movie","_key":"39779"} +{"label":"Driven","description":"Talented rookie race-car driver Jimmy Bly has started losing his focus and begins to slip in the race rankings. It's no wonder, with the immense pressure being shoveled on him by his overly ambitious promoter brother as well as Bly's romance with his arch rival's girlfriend Sophia. With much riding on Bly, car owner Carl Henry brings former racing star Joe Tanto on board to help Bly. To drive Bly back to the top of the rankings, Tanto must first deal with the emotional scars left over from a tra","id":"10477","runtime":116,"imdbId":"tt0132245","version":153,"lastModified":"1302042962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d20\/4bc92e55017a3c57fe012d20\/driven-mid.jpg","genre":"Action","title":"Driven","releaseDate":988329600000,"language":"en","tagline":"Get ready for the race of your life.","type":"Movie","_key":"39780"} +{"label":"Tin Cup","description":"A washed up golf pro working at a driving range tries to qualify for the US Open in order to win the heart of his succesful rival's girlfriend.","id":"10478","runtime":135,"imdbId":"tt0117918","trailer":"http:\/\/www.youtube.com\/watch?v=1578","version":133,"lastModified":"1302036368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d37\/4bc92e5a017a3c57fe012d37\/tin-cup-mid.jpg","studio":"Regency Enterprises","genre":"Comedy","title":"Tin Cup","releaseDate":840153600000,"language":"en","type":"Movie","_key":"39781"} +{"label":"Rules of Engagement","description":"Part war movie, part courtroom thriller, this gripping drama finds a war hero put on trial for a rescue mission gone terribly wrong with only his doubtful friend and fellow marine to represent him.","id":"10479","runtime":128,"imdbId":"tt0160797","version":196,"lastModified":"1302035233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/486\/4cd6ff3c5e73d676cf000486\/rules-of-engagement-mid.jpg","studio":"Munich Film Partners & Company","genre":"Action","title":"Rules of Engagement","releaseDate":954460800000,"language":"en","type":"Movie","_key":"39782"} +{"label":"Nurse Betty","description":"Betty never misses an episode of her favorite soap opera, \"A Reason to Love\". After a mind-altering run-in with two hit-men while watching an episode, Betty transforms into 'Nurse Betty' and embarks on a mission to find her one true love, Dr. David Ravell.","id":"10480","runtime":110,"imdbId":"tt0171580","trailer":"http:\/\/www.youtube.com\/watch?v=XwpRtq3U8Qg","version":98,"lastModified":"1301905961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78b\/4cf00c115e73d6625a00078b\/nurse-betty-mid.jpg","studio":"Gramercy Pictures","genre":"Comedy","title":"Nurse Betty","releaseDate":968371200000,"language":"en","type":"Movie","_key":"39783"} +{"label":"102 Dalmatians","description":"Get ready for a howling good time as an all new assortment of irresistible animal heroes are unleashed in this great family tail!\n\nIn an unlikely alliance, the outrageous Waddlesworth... a parrot who thinks he's a Rottweiler... teams up with Oddball... an un-marked Dalamation puppy eager to earn her spots! Together they embark on a laugh-packed quest to outwit the ever-scheming Cruella De Vil","id":"10481","runtime":100,"imdbId":"tt0211181","trailer":"http:\/\/www.youtube.com\/watch?v=cGHh59Oj8eU","version":133,"lastModified":"1302019341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d58\/4bc92e5c017a3c57fe012d58\/102-dalmatians-mid.jpg","genre":"Comedy","title":"102 Dalmatians","releaseDate":974851200000,"language":"en","type":"Movie","_key":"39784"} +{"label":"Alice Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d5f\/4cf5d05c5e73d6299e000d5f\/alice-evans-profile.jpg","version":29,"id":"65535","lastModified":"1301901442000","name":"Alice Evans","type":"Person","_key":"39785"} +{"label":"Guest House Paradiso","description":"Richie and Eddie are in charge of the worst hotel in the UK, Guest House Paradiso, neighbouring a nuclear power plant. The illegal immigrant chef has fled and all the guests have gone. But when a famous Italian filmstar, Gina Carbonara, who is in hiding from a fiance she doesn't want to marry, arrives at the hotel, things get very interesting!","id":"10482","runtime":89,"imdbId":"tt0202381","trailer":"http:\/\/www.youtube.com\/watch?v=uytT7byB07M","version":128,"lastModified":"1302066554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc92e5d017a3c57fe012d61\/guest-house-paradiso-mid.jpg","genre":"Comedy","title":"Guest House Paradiso","releaseDate":944179200000,"language":"en","type":"Movie","_key":"39786"} +{"label":"H\u00e9l\u00e8ne Mahieu","version":17,"id":"111657","lastModified":"1301903041000","name":"H\u00e9l\u00e8ne Mahieu","type":"Person","_key":"39787"} +{"label":"Lisa Palfrey","version":16,"id":"111658","lastModified":"1301902895000","name":"Lisa Palfrey","type":"Person","_key":"39788"} +{"label":"Adrian Edmondson","version":28,"id":"98464","lastModified":"1301902971000","name":"Adrian Edmondson","type":"Person","_key":"39789"} +{"label":"Death Race","description":"Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.","id":"10483","runtime":105,"imdbId":"tt0452608","trailer":"http:\/\/www.youtube.com\/watch?v=gVwycnRGuVs","homepage":"http:\/\/www.deathracemovie.net\/","version":369,"lastModified":"1302066248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9d\/4bc92e67017a3c57fe012d9d\/death-race-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Death Race","releaseDate":1219363200000,"language":"en","tagline":"Get ready for a killer race.","type":"Movie","_key":"39790"} +{"label":"Natalie Martinez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7be\/4d8884295e73d6751c0007be\/natalie-martinez-profile.jpg","biography":"Natalie Martinez is an American model and actress. Martinez is known as the spokesmodel for JLO by Jennifer Lopez, and for her supporting role in the 2008 feature film Death Race. She has also appeared in several music videos and TV series. Lately she is starring in Detroit 1-8-7 as Detective Ariana Sanchez.","version":35,"birthday":"458431200000","id":"76511","birthplace":"Miami, Florida, US","lastModified":"1301901803000","name":"Natalie Martinez","type":"Person","_key":"39791"} +{"label":"Jason Clarke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/413\/4c4394f55e73d60f38000413\/jason-clarke-profile.jpg","version":50,"id":"76512","lastModified":"1301901329000","name":"Jason Clarke","type":"Person","_key":"39792"} +{"label":"Frederick Koehler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40f\/4c439a7e5e73d60f3a00040f\/frederick-koehler-profile.jpg","version":39,"id":"76513","lastModified":"1301901575000","name":"Frederick Koehler","type":"Person","_key":"39793"} +{"label":"Justin Mader","version":27,"id":"76514","lastModified":"1301902196000","name":"Justin Mader","type":"Person","_key":"39794"} +{"label":"Robert LaSardo","version":29,"id":"65831","lastModified":"1301901936000","name":"Robert LaSardo","type":"Person","_key":"39795"} +{"label":"Les comp\u00e8res","description":"Unable to find her runaway son, a woman deceives two of her ex-lovers from her youth, a mild-mannered teacher and a tough journalist, that each is the real father in order to obtain their help.","id":"10484","runtime":92,"imdbId":"tt0085354","version":75,"lastModified":"1302066027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/167\/4c1dc9d75e73d607d1000167\/les-comperes-mid.jpg","genre":"Comedy","title":"Les comp\u00e8res","releaseDate":438393600000,"language":"en","type":"Movie","_key":"39796"} +{"label":"Ghost Dad","description":"Elliot Hopper is a widower with three children, he is currently working on a deal. It seems like his wife illness was very costly and this deal could put them out of the red. However he gets into a cab that is driven by a maniac, and Elliot crashes into a river. Elliot is sent back so that he could finish the deal and make sure that his children are taken care of.","id":"10485","runtime":84,"imdbId":"tt0099654","version":133,"lastModified":"1302065695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dab\/4bc92e68017a3c57fe012dab\/ghost-dad-mid.jpg","studio":"Universal Pictures Corporation","genre":"Comedy","title":"Ghost Dad","releaseDate":646617600000,"language":"en","type":"Movie","_key":"39797"} +{"label":"Kimberly Russell","version":30,"id":"65397","lastModified":"1301901639000","name":"Kimberly Russell","type":"Person","_key":"39798"} +{"label":"Denise Nicholas","version":23,"id":"65398","lastModified":"1301901559000","name":"Denise Nicholas","type":"Person","_key":"39799"} +{"label":"My Father the Hero","description":"When Frenchman Andre takes his 14-year-old daughter Nicole on a Caribbean vacation, she develops a crush on hunky Ben. To impress Ben, Nicole pretends Andre is her lover -- which has the rest of the resort crowd loathing his cradle-snatching ways. But when the police threaten to arrest Andre for consorting with a minor, Nicole must tell all and risk alienating Ben.","id":"10486","runtime":90,"imdbId":"tt0110612","version":150,"lastModified":"1302065356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24b\/4c187d6a7b9aa108d800024b\/my-father-the-hero-mid.jpg","studio":"Buena Vista Pictures","genre":"Comedy","title":"My Father the Hero","releaseDate":760320000000,"language":"en","tagline":"Fathers have just one problem with raising their daughters. They grow up!","type":"Movie","_key":"39800"} +{"label":"Dalton James","version":22,"id":"65400","lastModified":"1301902199000","name":"Dalton James","type":"Person","_key":"39801"} +{"label":"Zur Sache, Sch\u00e4tzchen!","description":"No overview found.","id":"10487","runtime":80,"imdbId":"tt0062527","version":45,"lastModified":"1301904472000","genre":"Comedy","title":"Zur Sache, Sch\u00e4tzchen!","releaseDate":-62899200000,"language":"en","type":"Movie","_key":"39802"} +{"label":"Werner Enke","version":22,"id":"67037","lastModified":"1301902149000","name":"Werner Enke","type":"Person","_key":"39803"} +{"label":"Inge Marschall","version":20,"id":"67038","lastModified":"1301901953000","name":"Inge Marschall","type":"Person","_key":"39804"} +{"label":"May Spils","version":22,"id":"67039","lastModified":"1301901564000","name":"May Spils","type":"Person","_key":"39805"} +{"label":"Nim's Island","description":"A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.","id":"10488","runtime":96,"imdbId":"tt0410377","trailer":"http:\/\/www.youtube.com\/watch?v=bfJNjczox9U","version":288,"lastModified":"1302064747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/921\/4d4a42697b9aa13ab8000921\/nim-s-island-mid.jpg","studio":"Walden Media","genre":"Action","title":"Nim's Island","releaseDate":1207180800000,"language":"en","type":"Movie","_key":"39806"} +{"label":"Michael Carman","version":26,"id":"68321","lastModified":"1301904136000","name":"Michael Carman","type":"Person","_key":"39807"} +{"label":"Mark Levin","version":38,"id":"66219","lastModified":"1301901503000","name":"Mark Levin","type":"Person","_key":"39808"} +{"label":"Jennifer Flackett","version":38,"id":"66218","lastModified":"1301901408000","name":"Jennifer Flackett","type":"Person","_key":"39809"} +{"label":"Cujo","description":"A friendly St. Bernard named \"Cujo\" contracts rabies and conducts a reign of terror on a small American town.","id":"10489","runtime":91,"imdbId":"tt0085382","version":299,"lastModified":"1301902326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcf\/4bc92e6f017a3c57fe012dcf\/cujo-mid.jpg","genre":"Drama","title":"Cujo","releaseDate":429494400000,"language":"en","type":"Movie","_key":"39810"} +{"label":"Danny Pintauro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/39e\/4cc9bb5d7b9aa16b9c00039e\/danny-pintauro-profile.jpg","version":20,"id":"65403","lastModified":"1301901855000","name":"Danny Pintauro","type":"Person","_key":"39811"} +{"label":"Christopher Stone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c5\/4cc9bc307b9aa16b9e0003c5\/christopher-stone-profile.jpg","version":27,"id":"65404","lastModified":"1301901531000","name":"Christopher Stone","type":"Person","_key":"39812"} +{"label":"Kaiulani Lee","version":16,"id":"140344","lastModified":"1301902745000","name":"Kaiulani Lee","type":"Person","_key":"39813"} +{"label":"Billy Jayne","version":24,"id":"84164","lastModified":"1301901813000","name":"Billy Jayne","type":"Person","_key":"39814"} +{"label":"Mills Watson","version":16,"id":"140345","lastModified":"1301902745000","name":"Mills Watson","type":"Person","_key":"39815"} +{"label":"Sandy Ward","version":20,"id":"102823","lastModified":"1301902985000","name":"Sandy Ward","type":"Person","_key":"39816"} +{"label":"Jerry Hardin","version":25,"id":"89141","lastModified":"1301901603000","name":"Jerry Hardin","type":"Person","_key":"39817"} +{"label":"Merritt Olsen","version":16,"id":"140346","lastModified":"1301902738000","name":"Merritt Olsen","type":"Person","_key":"39818"} +{"label":"Drop Dead Gorgeous","description":"In a small Minnesota town, the annual beauty pageant is being covered by a TV crew. Former winner Gladys Leeman wants to make sure her daughter follows in her footsteps. Explosions, falling lights, and trailer fires prove that. As the Leemans are the richest family in town the police are pretty relaxed about it all. Despite everything, main rival (but nice) Amber Atkins won't be stopped.","id":"10490","runtime":98,"imdbId":"tt0157503","version":116,"lastModified":"1302063971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de1\/4bc92e70017a3c57fe012de1\/drop-dead-gorgeous-mid.jpg","genre":"Comedy","title":"Drop Dead Gorgeous","releaseDate":932688000000,"language":"en","type":"Movie","_key":"39819"} +{"label":"Michael Patrick Jann","version":22,"id":"59412","lastModified":"1301901881000","name":"Michael Patrick Jann","type":"Person","_key":"39820"} +{"label":"Enigma","description":"A romantic thriller based around the World War 2 project to crack the codes behind the Enigma machine, used by the Germans to encrypt messages sent to their submarines.","id":"10491","runtime":119,"imdbId":"tt0157583","version":118,"lastModified":"1302063712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4c8e7fc27b9aa174f900002c\/enigma-mid.jpg","genre":"Drama","title":"Enigma","releaseDate":980121600000,"language":"en","tagline":"Unlock the secret.","type":"Movie","_key":"39821"} +{"label":"Flashback - M\u00f6rderische Ferien","description":"No overview found.","id":"10492","runtime":95,"imdbId":"tt0239406","version":215,"lastModified":"1301903873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21d\/4d2f89e17b9aa140ec00021d\/flashback-m-rderische-ferien-mid.jpg","genre":"Horror","title":"Flashback - M\u00f6rderische Ferien","releaseDate":954979200000,"language":"en","type":"Movie","_key":"39822"} +{"label":"Dead Calm","description":"An Australian couple take a sailing trip in the Pacific to forget about a terrible accident. While on the open sea, in dead calm, they come across a ship with one survivor who is not at all what he seems.","id":"10493","runtime":96,"imdbId":"tt0097162","trailer":"http:\/\/www.youtube.com\/watch?v=-Ew7fItO7P0","version":185,"lastModified":"1301903743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfb\/4bc92e72017a3c57fe012dfb\/dead-calm-mid.jpg","genre":"Drama","title":"Dead Calm","releaseDate":607910400000,"language":"en","tagline":"High seas. Deep terror. Try to stay calm.","type":"Movie","_key":"39823"} +{"label":"Perfect Blue","description":"Mima Kirigoe is a singer who leaves her trio to become an actress, a career move that angers her fans, who prefer to see her as the pop idol. Plagued by self-doubt and tormented by humiliating compromises, she begins to be stalked, in her waking and sleeping moments, by an alter ego who claims to be \"the real Mima\", until she collapses into madness as her coworkers are brutally slain around her.","id":"10494","runtime":81,"imdbId":"tt0156887","version":140,"lastModified":"1301902148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e11\/4bc92e76017a3c57fe012e11\/perfect-blue-mid.jpg","genre":"Animation","title":"Perfect Blue","releaseDate":887587200000,"language":"en","type":"Movie","_key":"39824"} +{"label":"Junko Iwao","version":23,"id":"65437","lastModified":"1301901664000","name":"Junko Iwao","type":"Person","_key":"39825"} +{"label":"Shinpachi Tsuji","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c5d\/4d262a267b9aa134e0000c5d\/shinpachi-tsuji-profile.jpg","version":27,"id":"65438","lastModified":"1301901372000","name":"Shinpachi Tsuji","type":"Person","_key":"39826"} +{"label":"The Karate Kid, Part III","description":"Kreese, his life in tatters after his karate schools was defeated by Daniel and Mr Miyagi, visits Terry, a friend from Vietnam. Terry is a ruthless business man and a martial arts expert, and he vows to help Kresse take revenge on Daniel and Mr Miyagi.","id":"10495","runtime":112,"imdbId":"tt0097647","version":119,"lastModified":"1301902055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e23\/4bc92e77017a3c57fe012e23\/the-karate-kid-part-iii-mid.jpg","genre":"Action","title":"The Karate Kid, Part III","releaseDate":615168000000,"language":"en","type":"Movie","_key":"39827"} +{"label":"Bats","description":"No overview found.","id":"10496","runtime":91,"imdbId":"tt0200469","version":173,"lastModified":"1301905389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2d\/4bc92e79017a3c57fe012e2d\/bats-mid.jpg","genre":"Horror","title":"Bats","releaseDate":940550400000,"language":"en","tagline":"They will suck you dry","type":"Movie","_key":"39828"} +{"label":"Louis Morneau","version":25,"id":"65420","lastModified":"1301901646000","name":"Louis Morneau","type":"Person","_key":"39829"} +{"label":"Bitter Moon","description":"British couple Fiona and Nigel Dobson are sailing to Istanbul en route to India. They encounter a beautiful French woman, and that night Nigel meets her while dancing alone in the ship's bar. Later he meets her crippled American husband Oscar, who tells him their story. While living in Paris for several years trying to be a writer, he becomes obsessed with a woman he met by chance on a bus. He tracks her down and they start a steamy love affair. Soon Oscar finds himself enslaved body and soul by","id":"10497","runtime":138,"imdbId":"tt0104779","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/bitter-moon","version":131,"lastModified":"1301902481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a66\/4d7aeda95e73d65ec6000a66\/bitter-moon-mid.jpg","genre":"Comedy","title":"Bitter Moon","releaseDate":710899200000,"language":"en","tagline":"A kinky voyage with a full head of steam.","type":"Movie","_key":"39830"} +{"label":"Point of No Return","description":"A punk female murderer is transformed into a bourgeois assassin by an underground government agency.","id":"10498","runtime":108,"imdbId":"tt0107843","trailer":"http:\/\/www.youtube.com\/watch?v=loWM25F_SOY","version":166,"lastModified":"1301902062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4d2d95995e73d63a5600e2ce\/point-of-no-return-mid.jpg","genre":"Action","title":"Point of No Return","releaseDate":732499200000,"language":"en","tagline":"The Government gave her a choice. Death. Or life as an assassin. Now, there's no turning back","type":"Movie","_key":"39831"} +{"label":"Robert Getchell","version":31,"id":"53810","lastModified":"1301901997000","name":"Robert Getchell","type":"Person","_key":"39832"} +{"label":"Die Stille nach dem Schuss","description":"No overview found.","id":"10499","runtime":95,"imdbId":"tt0234805","version":44,"lastModified":"1301905331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92e\/4c0b55c3017a3c7e8900092e\/die-stille-nach-dem-schuss-mid.jpg","genre":"Drama","title":"Die Stille nach dem Schuss","releaseDate":950659200000,"language":"en","type":"Movie","_key":"39833"} +{"label":"Die Unber\u00fchrbare","description":"No overview found.","id":"10500","runtime":110,"imdbId":"tt0235841","version":47,"lastModified":"1301907402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ec\/4bf1198a017a3c32170000ec\/die-unberuhrbare-mid.jpg","genre":"Drama","title":"Die Unber\u00fchrbare","releaseDate":956188800000,"language":"en","type":"Movie","_key":"39834"} +{"label":"The Road to El Dorado","description":"Two swindlers get their hands on the map to the fabled city of gold, El Dorado while pulling off a scam. Their plan goes bad and the rogues end up lost at sea after a number of misfortunes. Oddly enough, they end up on the shores of El Dorado and are worshiped by the natives for their foreign appearance.","id":"10501","runtime":99,"imdbId":"tt0138749","trailer":"http:\/\/www.youtube.com\/watch?v=mrQpX1zHhnM&hd=1","version":127,"lastModified":"1301907514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e65\/4bc92e80017a3c57fe012e65\/the-road-to-el-dorado-mid.jpg","studio":"DreamWorks SKG","genre":"Adventure","title":"The Road to El Dorado","releaseDate":954460800000,"language":"en","tagline":"They came for the gold... they stayed for the adventure.","type":"Movie","_key":"39835"} +{"label":"Bibo Bergeron","version":29,"id":"65629","lastModified":"1301901566000","name":"Bibo Bergeron","type":"Person","_key":"39836"} +{"label":"The Man Without a Face","description":"The story of a relationship between a teacher and his troubled pupil. Justin McLeod is a former teacher who lives as a recluse on the edge of town. His face is disfigured from an automobile accident and fire ten years before in which a boy was incinerated and for which he was convicted of involuntary manslaughter. He is also suspected of being a pedophile. He is befriended by Chuck, causing the town's suspicion and hostility to be ignited. McLeod inculcates in his protege a love of justice and f","id":"10502","runtime":114,"imdbId":"tt0107501","version":101,"lastModified":"1301903783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e72\/4bc92e81017a3c57fe012e72\/the-man-without-a-face-mid.jpg","genre":"Drama","title":"The Man Without a Face","releaseDate":746236800000,"language":"en","type":"Movie","_key":"39837"} +{"label":"Fay Masterson","version":38,"id":"65409","lastModified":"1301901945000","name":"Fay Masterson","type":"Person","_key":"39838"} +{"label":"Happy-Go-Lucky","description":"A look at a few chapters in the life of Poppy, a cheery, colorful, North London schoolteacher whose optimism tends to exasperate those around her.","id":"10503","runtime":118,"imdbId":"tt1045670","trailer":"http:\/\/www.youtube.com\/watch?v=WILfr1Q4a8M","homepage":"http:\/\/www.happygoluckythemovie.com\/","version":172,"lastModified":"1301902622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aac\/4d7e07e65e73d65174002aac\/happy-go-lucky-mid.jpg","studio":"Film4","genre":"Comedy","title":"Happy-Go-Lucky","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"39839"} +{"label":"Alexis Zegerman","version":22,"id":"65444","lastModified":"1301901641000","name":"Alexis Zegerman","type":"Person","_key":"39840"} +{"label":"Samuel Roukin","version":26,"id":"65445","lastModified":"1301901772000","name":"Samuel Roukin","type":"Person","_key":"39841"} +{"label":"Kate O'Flynn","version":23,"id":"65446","lastModified":"1301901813000","name":"Kate O'Flynn","type":"Person","_key":"39842"} +{"label":"Sarah Niles","version":23,"id":"65447","lastModified":"1301901993000","name":"Sarah Niles","type":"Person","_key":"39843"} +{"label":"Sylvestra Le Touzel","version":22,"id":"65448","lastModified":"1301902132000","name":"Sylvestra Le Touzel","type":"Person","_key":"39844"} +{"label":"Karina Fernandez","version":24,"id":"65449","lastModified":"1301901771000","name":"Karina Fernandez","type":"Person","_key":"39845"} +{"label":"Caroline Martin","version":22,"id":"65450","lastModified":"1301901772000","name":"Caroline Martin","type":"Person","_key":"39846"} +{"label":"Oliver Maltman","version":29,"id":"65451","lastModified":"1301901681000","name":"Oliver Maltman","type":"Person","_key":"39847"} +{"label":"Mike Leigh","version":104,"id":"65452","lastModified":"1301901228000","name":"Mike Leigh","type":"Person","_key":"39848"} +{"label":"Lauf um Dein Leben - Vom Junkie zum Ironman","description":"No overview found.","id":"10505","runtime":96,"imdbId":"tt0954542","version":51,"lastModified":"1301902978000","studio":"Odeon Film","genre":"Drama","title":"Lauf um Dein Leben - Vom Junkie zum Ironman","releaseDate":1208995200000,"language":"en","type":"Movie","_key":"39849"} +{"label":"Adnan K\u00f6se","version":19,"id":"68329","lastModified":"1301901612000","name":"Adnan K\u00f6se","type":"Person","_key":"39850"} +{"label":"Ismail Deniz","version":19,"id":"68367","lastModified":"1301902086000","name":"Ismail Deniz","type":"Person","_key":"39851"} +{"label":"Leslie Malton","version":20,"id":"68368","lastModified":"1301901739000","name":"Leslie Malton","type":"Person","_key":"39852"} +{"label":"Numan Acar","version":28,"id":"35434","lastModified":"1301901619000","name":"Numan Acar","type":"Person","_key":"39853"} +{"label":"Maria Beth\u00e2nia: M\u00fasica \u00e9 Perfume","description":"No overview found.","id":"10506","runtime":82,"imdbId":"tt0461992","version":52,"lastModified":"1301904266000","studio":"Id\u00e9ale Audience","genre":"Documentary","title":"Maria Beth\u00e2nia: M\u00fasica \u00e9 Perfume","releaseDate":1124841600000,"language":"en","type":"Movie","_key":"39854"} +{"label":"Georges Gachot","version":21,"id":"65460","lastModified":"1301901649000","name":"Georges Gachot","type":"Person","_key":"39855"} +{"label":"Maria Beth\u00e2nia","version":20,"id":"65462","lastModified":"1301901495000","name":"Maria Beth\u00e2nia","type":"Person","_key":"39856"} +{"label":"Gilberto Gil","version":20,"id":"65463","lastModified":"1301901564000","name":"Gilberto Gil","type":"Person","_key":"39857"} +{"label":"Chico Buarque de Hollanda","version":21,"id":"65464","lastModified":"1301901782000","name":"Chico Buarque de Hollanda","type":"Person","_key":"39858"} +{"label":"Nana Caymmi","version":20,"id":"65465","lastModified":"1301902334000","name":"Nana Caymmi","type":"Person","_key":"39859"} +{"label":"Kehraus, wieder","description":"No overview found.","id":"10507","runtime":100,"imdbId":"tt0972837","version":31,"lastModified":"1300979054000","studio":"realistfilm","genre":"Documentary","title":"Kehraus, wieder","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"39860"} +{"label":"Gerd Kroske","version":22,"id":"65467","lastModified":"1301901953000","name":"Gerd Kroske","type":"Person","_key":"39861"} +{"label":"Buitenspel","description":"No overview found.","id":"10509","runtime":77,"imdbId":"tt0467817","version":62,"lastModified":"1301904952000","studio":"Menuet Producties","genre":"Drama","title":"Buitenspel","releaseDate":1135123200000,"language":"en","type":"Movie","_key":"39862"} +{"label":"Jan Verheyen","version":26,"id":"65470","lastModified":"1301901808000","name":"Jan Verheyen","type":"Person","_key":"39863"} +{"label":"Ilya Van Malderghem","version":19,"id":"65474","lastModified":"1301902086000","name":"Ilya Van Malderghem","type":"Person","_key":"39864"} +{"label":"Joke Devynck","version":20,"id":"65476","lastModified":"1301902041000","name":"Joke Devynck","type":"Person","_key":"39865"} +{"label":"Pauline Grossen","version":20,"id":"65477","lastModified":"1301901849000","name":"Pauline Grossen","type":"Person","_key":"39866"} +{"label":"Miracle on 34th Street","description":"A little girl discovers dreams can come true if you really believe. Six-year-old Susan Walker has doubts about childhood's most enduring miracle - Santa Claus. Her mother told her the 'secret' about Santa a long time ago. But after meeting a special department store Santa who's convinced he's the real thing, Susan is given the most precious gift of all something to believe in.","id":"10510","runtime":114,"imdbId":"tt0110527","version":144,"lastModified":"1301902764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e98\/4bc92e87017a3c57fe012e98\/miracle-on-34th-street-mid.jpg","genre":"Comedy","title":"Miracle on 34th Street","releaseDate":785116800000,"language":"en","type":"Movie","_key":"39867"} +{"label":"Jane Leeves","version":22,"id":"52951","lastModified":"1301902138000","name":"Jane Leeves","type":"Person","_key":"39868"} +{"label":"In America","description":"An Irish immigrant family adjusts to life in the United States. ","id":"10511","runtime":105,"imdbId":"tt0298845","version":173,"lastModified":"1301902515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75b\/4cec32315e73d6258d00075b\/in-america-mid.jpg","genre":"Drama","title":"In America","releaseDate":1031875200000,"language":"en","type":"Movie","_key":"39869"} +{"label":"Emma Bolger","version":21,"id":"65483","lastModified":"1301902085000","name":"Emma Bolger","type":"Person","_key":"39870"} +{"label":"Plan 9 from Outer Space","description":"Aliens resurrect dead humans as zombies and vampires to stop human kind from creating the Solaranite (a sort of sun-driven bomb).","id":"10513","runtime":79,"imdbId":"tt0052077","trailer":"http:\/\/www.youtube.com\/watch?v=XEoOb1Pmgfw","version":96,"lastModified":"1301902984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb6\/4bc92e8a017a3c57fe012eb6\/plan-9-from-outer-space-mid.jpg","genre":"Science Fiction","title":"Plan 9 from Outer Space","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"39871"} +{"label":"Mona McKinnon","version":24,"id":"65498","lastModified":"1301901365000","name":"Mona McKinnon","type":"Person","_key":"39872"} +{"label":"Duke Moore","version":21,"id":"65499","lastModified":"1301901457000","name":"Duke Moore","type":"Person","_key":"39873"} +{"label":"Tom Keene","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4ca37a0c7b9aa16eda00003d\/tom-keene-profile.jpg","version":28,"id":"65500","lastModified":"1301901254000","name":"Tom Keene","type":"Person","_key":"39874"} +{"label":"Carl Anthony","version":18,"id":"106180","lastModified":"1301902475000","name":"Carl Anthony","type":"Person","_key":"39875"} +{"label":"Paul Marco","version":19,"id":"103080","lastModified":"1301902711000","name":"Paul Marco","type":"Person","_key":"39876"} +{"label":"Tor Johnson","version":23,"id":"100796","lastModified":"1301902388000","name":"Tor Johnson","type":"Person","_key":"39877"} +{"label":"Dudley Manlove","version":17,"id":"106181","lastModified":"1301902645000","name":"Dudley Manlove","type":"Person","_key":"39878"} +{"label":"Joanna Lee","version":18,"id":"106182","lastModified":"1301902125000","name":"Joanna Lee","type":"Person","_key":"39879"} +{"label":"John Breckinridge","version":17,"id":"106183","lastModified":"1301902475000","name":"John Breckinridge","type":"Person","_key":"39880"} +{"label":"Lyle Talbot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/364\/4bf2aa16017a3c320f000364\/lyle-talbot-profile.jpg","version":40,"birthday":"-2142637200000","id":"34119","birthplace":"Pittsburgh, Pennsylvania, USA","lastModified":"1301901408000","name":"Lyle Talbot","type":"Person","_key":"39881"} +{"label":"Criswell","version":17,"id":"106184","lastModified":"1301902475000","name":"Criswell","type":"Person","_key":"39882"} +{"label":"The Andromeda Strain","description":"A mysterious government project scrambles a team of scientists to investigate the cause of a spaceborne disease that kills nearly everyone in a small desert town. They find an extraterrestrial form of life that causes rapid, fatal clotting of the blood, and make some disturbing discoveries about the project as well.","id":"10514","runtime":131,"imdbId":"tt0066769","trailer":"http:\/\/www.youtube.com\/watch?v=YMbSpnlOOtE","version":158,"lastModified":"1302042350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed1\/4bc92e90017a3c57fe012ed1\/the-andromeda-strain-mid.jpg","genre":"Disaster","title":"The Andromeda Strain","releaseDate":37584000000,"language":"en","tagline":"The picture runs 130 minutes!... The story covers 96 of the most critical hours in man's history!... The suspense will last through your lifetime!","type":"Movie","_key":"39883"} +{"label":"Arthur Hill","version":29,"id":"65505","lastModified":"1301901699000","name":"Arthur Hill","type":"Person","_key":"39884"} +{"label":"James Olson","version":28,"id":"65508","lastModified":"1301901839000","name":"James Olson","type":"Person","_key":"39885"} +{"label":"Castle in the Sky","description":"The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.","id":"10515","runtime":124,"imdbId":"tt0092067","version":136,"lastModified":"1301991920000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea7\/4c00233e017a3c702a000ea7\/10515-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Castle in the Sky","releaseDate":607392000000,"language":"en","type":"Movie","_key":"39886"} +{"label":"Keiko Yokozawa","version":23,"id":"65509","lastModified":"1301901381000","name":"Keiko Yokozawa","type":"Person","_key":"39887"} +{"label":"Mayumi Tanaka","version":55,"id":"65510","lastModified":"1301901278000","name":"Mayumi Tanaka","type":"Person","_key":"39888"} +{"label":"Minori Terada","version":23,"id":"65511","lastModified":"1301901475000","name":"Minori Terada","type":"Person","_key":"39889"} +{"label":"Kotoe Hatsui","version":23,"id":"65512","lastModified":"1301901430000","name":"Kotoe Hatsui","type":"Person","_key":"39890"} +{"label":"The Gendarme and the Creatures from Outer Space","description":"The bungling inspector Cruchot (Fun\u00e8s) finds himself trying to save the residents of St. Tropez from some oil-drinking humanoid aliens. The only way to tell the aliens from the real people, besides their constant thirst for oil-products, is that they sound like empty garbage cans when you touch them. Chaos is ahead.","id":"10516","runtime":96,"imdbId":"tt0079200","version":70,"lastModified":"1301902318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0c\/4bc92e99017a3c57fe012f0c\/le-gendarme-et-les-extra-terrestres-mid.jpg","genre":"Comedy","title":"The Gendarme and the Creatures from Outer Space","releaseDate":255052800000,"language":"en","type":"Movie","_key":"39891"} +{"label":"Jean-Pierre Rambal","version":25,"id":"65516","lastModified":"1301901612000","name":"Jean-Pierre Rambal","type":"Person","_key":"39892"} +{"label":"Le Gendarme de St. Tropez","description":"No overview found.","id":"10517","title":"Le Gendarme de St. Tropez","language":"en","lastModified":"1301904999000","version":53,"type":"Movie","_key":"39893"} +{"label":"Marathon Man","description":"A graduate student and obsessive runner in New York is drawn into a mysterious plot involving his brother, a member of the secretive Division. This film, famous for its excruciating \"Is it safe?\" torture scene by a Nazi dentist, is a spy classic with an all star cast.","id":"10518","runtime":125,"imdbId":"tt0074860","trailer":"http:\/\/www.youtube.com\/watch?v=VaYj90BNFP4","version":152,"lastModified":"1301902586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f19\/4bc92e9a017a3c57fe012f19\/marathon-man-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Marathon Man","releaseDate":213408000000,"language":"en","type":"Movie","_key":"39894"} +{"label":"Das fliegende Klassenzimmer","description":"F\u00fcr Jonathan Trotz ist das Internat des Thomaner-Chors Leipzig die letzte Chance. Von dieser Schule darf er nicht auch noch fliegen. Gott sei Dank findet er in Matz, Martin, Ulli und Kreuzkamm Junior schnell neue Freunde. Zusammen mit ihnen schl\u00e4gt er sich gegen die Externen in so mancher Schneeballschlacht und steuert durch die Probleme der Vorpubert\u00e4t. Immer an ihrer Seite der Kantor der Schule, der warmherzige Justus B\u00f6ck. Doch als dieser mitbekommt, wie die Jungs das St\u00fcck \u201eDas fliegende Kla","id":"10519","runtime":110,"imdbId":"tt0311141","version":67,"lastModified":"1301904342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a2\/4d5c1e045e73d60c680007a2\/das-fliegende-klassenzimmer-mid.jpg","genre":"Comedy","title":"Das fliegende Klassenzimmer","releaseDate":1042675200000,"language":"en","type":"Movie","_key":"39895"} +{"label":"Philipp Peters-Arnolds","version":19,"id":"65517","lastModified":"1301902261000","name":"Philipp Peters-Arnolds","type":"Person","_key":"39896"} +{"label":"Itty Bitty Titty Committee","description":"Anna is coming out. But not as gay as a revolutionary. Itty Bitty Titty Committee is a rockin love song to the heady rush of sex, freedom and rebellion that happens when an everyday girl discovers her own strength and the righteous indignation needed to take action and change the world. Our heroine is a shy, just-out-of-high-school lesbian, still living with her parents and working at a plastic su","id":"10520","runtime":87,"imdbId":"tt0496328","version":146,"lastModified":"1301903138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2b\/4bc92e9d017a3c57fe012f2b\/itty-bitty-titty-committee-mid.jpg","genre":"Comedy","title":"Itty Bitty Titty Committee","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"39897"} +{"label":"Bride Wars","description":"Two best friends become rivals when their respective weddings are accidentally booked for the same day.","id":"10521","runtime":90,"imdbId":"tt0901476","trailer":"http:\/\/www.youtube.com\/watch?v=1451","homepage":"http:\/\/www.bridewars.com","version":174,"lastModified":"1301906248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f59\/4bc92ea4017a3c57fe012f59\/bride-wars-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Bride Wars","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"39898"} +{"label":"Michael Arden","version":29,"id":"83874","lastModified":"1302012417000","name":"Michael Arden","type":"Person","_key":"39899"} +{"label":"Starship Troopers Collection","description":"No overview found.","id":"10522","version":73,"lastModified":"1301903308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e8\/4d0891987b9aa101e40002e8\/starship-troopers-collection-mid.jpg","title":"Starship Troopers Collection","language":"en","type":"Movie","_key":"39900"} +{"label":"W.","description":"Whether you love him or hate him, there is no question that George W. Bush is one of the most controversial public figures in recent memory. W takes viewers through Bush\u2019s eventful life -- his struggles and triumphs, how he found both his wife and his faith, and of course the critical days leading up to Bush\u2019s decision to invade Iraq.","id":"10523","runtime":131,"imdbId":"tt1175491","trailer":"http:\/\/www.youtube.com\/watch?v=680","homepage":"http:\/\/www.wthefilm.com","version":252,"lastModified":"1302069640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4d77d9895e73d67efe000fdd\/w-l-improbable-pr-sident-mid.jpg","studio":"Ixtlan Productions","genre":"Drama","title":"W.","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"39901"} +{"label":"La Disparue de Deauville","description":"Victoria, une actrice c\u00e9l\u00e8bre en son temps, \u00e0 l'aura et au charme saisissant, est morte il y a trente ans dans des circonstances troublantes. Elle r\u00e9appara\u00eet myst\u00e9rieusement dans la vie d'un flic solitaire enqu\u00eatant sur une disparition, au coeur d'un palace de Normandie...","id":"10524","runtime":103,"imdbId":"tt0864918","version":106,"lastModified":"1301905706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c54\/4d8675887b9aa12ee1003c54\/la-disparue-de-deauville-mid.jpg","genre":"Thriller","title":"La Disparue de Deauville","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"39902"} +{"label":"Forget Paris","description":"Mickey Gordon is a basketball referee who travels to France to bury his father. Ellen Andrews is an American living in Paris who works for the airline he flies on. They meet and fall in love, but their relationship goes through many difficult patches. The story is told in flashback by their friends at a restaurant waiting for them to arrive.","id":"10525","runtime":101,"imdbId":"tt0113097","version":96,"lastModified":"1301903335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b4\/4c5234e97b9aa13d4e0002b4\/forget-paris-mid.jpg","genre":"Comedy","title":"Forget Paris","releaseDate":800841600000,"language":"en","type":"Movie","_key":"39903"} +{"label":"Cynthia Stevenson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8e4\/4cb8fc317b9aa138da0008e4\/cynthia-stevenson-profile.jpg","version":30,"id":"65528","lastModified":"1301902170000","name":"Cynthia Stevenson","type":"Person","_key":"39904"} +{"label":"Cancer Vixen: A True Story","description":"No overview found.","id":"10526","runtime":0,"imdbId":"tt0870083","version":28,"lastModified":"1301908567000","studio":"Dirty Films","genre":"Drama","title":"Cancer Vixen: A True Story","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"39905"} +{"label":"Madagascar: Escape 2 Africa","description":"Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.","id":"10527","runtime":89,"imdbId":"tt0479952","trailer":"http:\/\/www.youtube.com\/watch?v=3DVD-WYon20","homepage":"http:\/\/www.madagascar-themovie.com","version":235,"lastModified":"1301900958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b1\/4cb8ff3e5e73d677860005b1\/madagascar-escape-2-africa-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Madagascar: Escape 2 Africa","releaseDate":1226016000000,"language":"en","tagline":"Still together. Still lost!","type":"Movie","_key":"39906"} +{"label":"Sherlock Holmes","description":"After finally catching serial killer and occult \"sorcerer\" Lord Blackwood, legendary sleuth Sherlock Holmes and his assistant Dr. Watson can close yet another successful case. But when Blackwood mysteriously returns from the grave and resumes his killing spree, Holmes must take up the hunt once again. Contending with his partner's new fianc\u00e9e and the dimwitted head of Scotland Yard, the dauntless detective must unravel the clues that will lead him into a twisted web of murder, deceit, and black ","id":"10528","runtime":128,"imdbId":"tt0988045","trailer":"http:\/\/www.youtube.com\/watch?v=LiBzbNk0lZ0","homepage":"http:\/\/sherlock-holmes-movie.warnerbros.com\/","version":437,"lastModified":"1301900989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb9\/4d2644d75e73d626b0000eb9\/sherlock-holmes-mid.jpg","studio":"Village Roadshow Pictures","genre":"Action","title":"Sherlock Holmes","releaseDate":1261699200000,"language":"en","tagline":"Nothing escapes him.","type":"Movie","_key":"39907"} +{"label":"Robert Maillet","version":27,"id":"112692","lastModified":"1301901127000","name":"Robert Maillet","type":"Person","_key":"39908"} +{"label":"William Houston","version":33,"id":"84865","lastModified":"1301901113000","name":"William Houston","type":"Person","_key":"39909"} +{"label":"Outlander","description":"During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.","id":"10529","runtime":115,"imdbId":"tt0462465","trailer":"http:\/\/www.youtube.com\/watch?v=1870","version":225,"lastModified":"1301901485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bc92ec3017a3c57fe01301d\/outlander-mid.jpg","studio":"The Weinstein Company","genre":"Action","title":"Outlander","releaseDate":1208995200000,"language":"en","type":"Movie","_key":"39910"} +{"label":"Howard McCain","version":31,"id":"65525","lastModified":"1301901417000","name":"Howard McCain","type":"Person","_key":"39911"} +{"label":"Pocahontas","description":"History comes gloriously to life in Disney's epic animated tale about love and adventure in the New World. Pocahontas is a Native American woman whose father has arranged for her to marry her village's best warrior. But a vision tells her change is coming, and soon she comes face to face with it in the form of Capt. John Smith.","id":"10530","runtime":81,"imdbId":"tt0114148","trailer":"http:\/\/www.youtube.com\/watch?v=9q1QF8G47oU","version":124,"lastModified":"1302062310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/037\/4bc92ec9017a3c57fe013037\/pocahontas-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Adventure","title":"Pocahontas","releaseDate":803174400000,"language":"en","tagline":"An American legend comes to life.","type":"Movie","_key":"39912"} +{"label":"Irene Bedard","version":30,"id":"65529","lastModified":"1302062310000","name":"Irene Bedard","type":"Person","_key":"39913"} +{"label":"Mike Gabriel","version":31,"id":"65530","lastModified":"1302062310000","name":"Mike Gabriel","type":"Person","_key":"39914"} +{"label":"Eric Goldberg","version":27,"id":"65531","lastModified":"1302062310000","name":"Eric Goldberg","type":"Person","_key":"39915"} +{"label":"Death and the Maiden","description":"No overview found.","id":"10531","runtime":103,"imdbId":"tt0109579","version":140,"lastModified":"1301903122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/040\/4bc92ec9017a3c57fe013040\/death-and-the-maiden-mid.jpg","genre":"Drama","title":"Death and the Maiden","releaseDate":788140800000,"language":"en","type":"Movie","_key":"39916"} +{"label":"Krystia Mova","version":21,"id":"65537","lastModified":"1301901475000","name":"Krystia Mova","type":"Person","_key":"39917"} +{"label":"Jonathan Vega","version":21,"id":"65538","lastModified":"1301902261000","name":"Jonathan Vega","type":"Person","_key":"39918"} +{"label":"Rodolphe Vega","version":21,"id":"65539","lastModified":"1301902261000","name":"Rodolphe Vega","type":"Person","_key":"39919"} +{"label":"Abbuzze! Der Badesalz Film","description":"No overview found.","id":"10532","runtime":95,"imdbId":"tt0115448","version":44,"lastModified":"1301903600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b1\/4d09fb5e5e73d613d50001b1\/abbuzze-der-badesalz-film-mid.jpg","genre":"Comedy","title":"Abbuzze! Der Badesalz Film","releaseDate":821836800000,"language":"en","type":"Movie","_key":"39920"} +{"label":"Roland Willaert","version":21,"id":"19924","lastModified":"1301903112000","name":"Roland Willaert","type":"Person","_key":"39921"} +{"label":"The Scarlet Letter","description":"No overview found.","id":"10533","runtime":135,"imdbId":"tt0114345","version":117,"lastModified":"1301903976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4ca5e4cd5e73d636fb00044c\/the-scarlet-letter-mid.jpg","genre":"Drama","title":"The Scarlet Letter","releaseDate":813542400000,"language":"en","type":"Movie","_key":"39922"} +{"label":"Lisa Andoh","version":18,"id":"65543","lastModified":"1301901475000","name":"Lisa Andoh","type":"Person","_key":"39923"} +{"label":"White Squall","description":"Teenage boys discover discipline and camaraderie on an ill-fated sailing voyagee.","id":"10534","runtime":129,"imdbId":"tt0118158","trailer":"http:\/\/www.youtube.com\/watch?v=69ZoLvE9SpQ","version":157,"lastModified":"1301903094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05e\/4bc92ecc017a3c57fe01305e\/white-squall-mid.jpg","studio":"Hollywood Pictures","genre":"Action","title":"White Squall","releaseDate":823219200000,"language":"en","type":"Movie","_key":"39924"} +{"label":"Spy Hard","description":"General Rancor is threatening to destroy the world with a missile he is hiding at his secret base. But to complete his goal, he needs a special computer chip, invented by the scientist Prof. Ukrinsky. Special Agent Dick Steele is assigned to the case, in order to prevent the worst.","id":"10535","runtime":81,"imdbId":"tt0117723","version":124,"lastModified":"1301903891000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/283\/4d40d74c5e73d6571c000283\/spy-hard-mid.jpg","genre":"Action","title":"Spy Hard","releaseDate":832896000000,"language":"en","type":"Movie","_key":"39925"} +{"label":"Andy Griffith","version":31,"id":"65562","lastModified":"1301901494000","name":"Andy Griffith","type":"Person","_key":"39926"} +{"label":"Rick Friedberg","version":26,"id":"65548","lastModified":"1301901725000","name":"Rick Friedberg","type":"Person","_key":"39927"} +{"label":"The Italian Job","description":"Charlie 's got a 'job' to do. Having just left prison he finds one his of friends has attempted a high risk job in Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.","id":"10536","runtime":99,"imdbId":"tt0064505","trailer":"http:\/\/www.youtube.com\/watch?v=FEltJsIwSvE","version":135,"lastModified":"1301902150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30b\/4c28eea75e73d61d0a00030b\/the-italian-job-mid.jpg","genre":"Action","title":"The Italian Job","releaseDate":-18403200000,"language":"en","type":"Movie","_key":"39928"} +{"label":"Benny Hill","version":32,"id":"55879","lastModified":"1301901372000","name":"Benny Hill","type":"Person","_key":"39929"} +{"label":"Margaret Blye","version":31,"id":"65552","lastModified":"1301901839000","name":"Margaret Blye","type":"Person","_key":"39930"} +{"label":"The Doors","description":"The story of the famous and influential 1960's rock band and its lead singer and composer, Jim Morrison.","id":"10537","runtime":140,"imdbId":"tt0101761","version":146,"lastModified":"1301902251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fa\/4d4809f15e73d65ee40013fa\/the-doors-mid.jpg","genre":"Drama","title":"The Doors","releaseDate":667267200000,"language":"en","tagline":"The Ultimate Story of Sex, Drugs & Rock 'N' Roll.","type":"Movie","_key":"39931"} +{"label":"Passenger 57","description":"An infamous terrorist has evaded capture for a long time by being extremely clever and ruthless. Things get interesting when he hijacks a plane carrying famous security expert John Cutter, who isn't about to stand this sort of thing.","id":"10538","runtime":84,"imdbId":"tt0105104","version":115,"lastModified":"1301903779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc92ed3017a3c57fe013093\/passenger-57-mid.jpg","genre":"Action","title":"Passenger 57","releaseDate":721008000000,"language":"en","type":"Movie","_key":"39932"} +{"label":"Kevin Hooks","version":28,"id":"40230","lastModified":"1301901428000","name":"Kevin Hooks","type":"Person","_key":"39933"} +{"label":"James and the Giant Peach","description":"James' happy life at the English seaside is rudely ended when his parents are killed by a rhinoceros and he goes to live with his two horrid aunts. Daringly saving the life of a spider he comes into possession of magic boiled crocodile tongues, after which an enormous peach starts to grow in the garden.","id":"10539","runtime":79,"imdbId":"tt0116683","version":163,"lastModified":"1301903194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16b\/4d4e978d7b9aa13aaf00a16b\/james-and-the-giant-peach-mid.jpg","genre":"Animation","title":"James and the Giant Peach","releaseDate":829267200000,"language":"en","tagline":"Adventures this big don't grow on trees.","type":"Movie","_key":"39934"} +{"label":"Paul Terry","version":22,"id":"65565","lastModified":"1301901612000","name":"Paul Terry","type":"Person","_key":"39935"} +{"label":"Outland","description":"In the distant future, a police marshal stationed at a remote mining colony on the Jupiter moon of Io uncovers a drug-smuggling conspiracy, and gets no help from the populace when he later finds himself marked for murder.","id":"10540","runtime":112,"imdbId":"tt0082869","trailer":"http:\/\/www.youtube.com\/watch?v=Ez2XfvN8XSc","version":95,"lastModified":"1301904623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc92ed3017a3c57fe0130a5\/outland-mid.jpg","genre":"Action","title":"Outland","releaseDate":359337600000,"language":"en","type":"Movie","_key":"39936"} +{"label":"James Sikking","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/229\/4c51bb9a7b9aa13d4a000229\/james-sikking-profile.jpg","version":45,"id":"65568","lastModified":"1301901380000","name":"James Sikking","type":"Person","_key":"39937"} +{"label":"Un baiser s\u2019il vous pla\u00eet","description":"When Gabriel and Emilie meet by chance, he offers her a ride, and they spend the evening talking, laughing and getting along famously. At the end of the night, Emilie declines Gabriel's offer of \"a kiss without consequences\". Emilie admonishes him that the kiss could have unexpected consequences, and tells him a story, unfolding in flashbacks, about the impossibility of indulging your desires without affecting someone else's life.","id":"10541","runtime":100,"imdbId":"tt0920473","trailer":"http:\/\/www.youtube.com\/watch?v=577","homepage":"http:\/\/www.tfmdistribution.com\/unbaisersilvousplait\/","version":58,"lastModified":"1301905276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ae\/4bc92ed4017a3c57fe0130ae\/un-baiser-sil-vous-plait-mid.jpg","studio":"ARTE France Cin\u00e9ma","genre":"Comedy","title":"Un baiser s\u2019il vous pla\u00eet","releaseDate":1188864000000,"language":"en","type":"Movie","_key":"39938"} +{"label":"Emmanuel Mouret","version":29,"id":"65569","lastModified":"1301901725000","name":"Emmanuel Mouret","type":"Person","_key":"39939"} +{"label":"Micha\u00ebl Cohen","version":25,"id":"65570","lastModified":"1301901649000","name":"Micha\u00ebl Cohen","type":"Person","_key":"39940"} +{"label":"Stefano Accorsi","version":42,"id":"65571","lastModified":"1301901593000","name":"Stefano Accorsi","type":"Person","_key":"39941"} +{"label":"Fr\u00e9d\u00e9rique Bel","version":37,"id":"65572","lastModified":"1301901560000","name":"Fr\u00e9d\u00e9rique Bel","type":"Person","_key":"39942"} +{"label":"M\u00e9lanie Maudran","version":20,"id":"25164","lastModified":"1301901725000","name":"M\u00e9lanie Maudran","type":"Person","_key":"39943"} +{"label":"Marie Madinier","version":20,"id":"65573","lastModified":"1301901725000","name":"Marie Madinier","type":"Person","_key":"39944"} +{"label":"Lucciana de Vog\u00fce","version":18,"id":"65574","lastModified":"1301901876000","name":"Lucciana de Vog\u00fce","type":"Person","_key":"39945"} +{"label":"Jacques Lafoly","version":18,"id":"65575","lastModified":"1301901876000","name":"Jacques Lafoly","type":"Person","_key":"39946"} +{"label":"Kondom des Grauens","description":"No overview found.","id":"10542","runtime":107,"imdbId":"tt0116791","version":50,"lastModified":"1301905450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b88\/4d83631b7b9aa14276000b88\/kondom-des-grauens-mid.jpg","genre":"Comedy","title":"Kondom des Grauens","releaseDate":838944000000,"language":"en","type":"Movie","_key":"39947"} +{"label":"Marc Richter","version":21,"id":"65584","lastModified":"1301902172000","name":"Marc Richter","type":"Person","_key":"39948"} +{"label":"Fear","description":"A 16 year old girl takes up with a charming young man who quickly shows his colors when he beats a friend simply for walking with her and then goes totally ballistic after she tries to break up with him.","id":"10543","runtime":97,"imdbId":"tt0116287","trailer":"http:\/\/www.youtube.com\/watch?v=iWWxwVQH9qo","version":152,"lastModified":"1301904746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b7\/4bc92ed7017a3c57fe0130b7\/fear-mid.jpg","genre":"Drama","title":"Fear","releaseDate":829267200000,"language":"en","tagline":"Together forever. Or else.","type":"Movie","_key":"39949"} +{"label":"Christopher Gray","version":21,"id":"65590","lastModified":"1301902260000","name":"Christopher Gray","type":"Person","_key":"39950"} +{"label":"Ned Kelly","description":"After getting threatened by Kelly's friends and family, Constable Fitzpatrick places the blame on Ned Kelly and exaggerates what happened. With the biggest ever award available, Kelly and his gang set into the wild, to remain hidden from everyone who seeks them. Even if it means having his family arrested, the Kelly Gang stay hidden and plan a way to get their names cleared.","id":"10544","runtime":110,"imdbId":"tt0277941","version":124,"lastModified":"1301902251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c8\/4bc92ed8017a3c57fe0130c8\/ned-kelly-mid.jpg","genre":"Adventure","title":"Ned Kelly","releaseDate":1048291200000,"language":"en","type":"Movie","_key":"39951"} +{"label":"The Hunchback of Notre Dame","description":"When Quasi defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.","id":"10545","runtime":91,"imdbId":"tt0116583","version":134,"lastModified":"1302059556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d5\/4bc92ed9017a3c57fe0130d5\/the-hunchback-of-notre-dame-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"The Hunchback of Notre Dame","releaseDate":835315200000,"language":"en","type":"Movie","_key":"39952"} +{"label":"Tony Jay","version":28,"id":"65598","lastModified":"1302059556000","name":"Tony Jay","type":"Person","_key":"39953"} +{"label":"The Crow: City of Angels","description":"After Ashe and his little son are murdered violently for no reason by Judah's men, he returns from the dead to take revenge. One after one, Judah's people face the power of the dark angel. The second film based on James O'Barr's cult comic.","id":"10546","runtime":84,"imdbId":"tt0115986","version":112,"lastModified":"1301902752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e7\/4bc92eda017a3c57fe0130e7\/the-crow-city-of-angels-mid.jpg","genre":"Action","title":"The Crow: City of Angels","releaseDate":841363200000,"language":"en","type":"Movie","_key":"39954"} +{"label":"Richard Brooks","version":24,"id":"106753","lastModified":"1301902894000","name":"Richard Brooks","type":"Person","_key":"39955"} +{"label":"Tim Pope","version":22,"id":"65602","lastModified":"1301901876000","name":"Tim Pope","type":"Person","_key":"39956"} +{"label":"The Arrival","description":"Zane Ziminski is an astrophysicist who receives a message that seems to have extraterrestrial origins. Eerily soon after his discovery, Zane is fired. He then embarks on a search to determine the origins of the transmission that leads him into a Hitchcockian labyrinth of paranoia and intrigue.","id":"10547","runtime":115,"imdbId":"tt0115571","version":170,"lastModified":"1302042752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f0\/4bc92edd017a3c57fe0130f0\/the-arrival-1996-mid.jpg","genre":"Science Fiction","title":"The Arrival","releaseDate":833500800000,"language":"en","type":"Movie","_key":"39957"} +{"label":"Shane","version":20,"id":"65603","lastModified":"1301902085000","name":"Shane","type":"Person","_key":"39958"} +{"label":"When We Were Kings","description":"A documentary of the 1974 heavyweight championship bout in Zaire between champion George Foreman and underdog challenger Muhammad Ali.","id":"10548","runtime":89,"imdbId":"tt0118147","version":127,"lastModified":"1301903081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/108\/4bc92edf017a3c57fe013108\/when-we-were-kings-mid.jpg","genre":"Documentary","title":"When We Were Kings","releaseDate":846201600000,"language":"en","type":"Movie","_key":"39959"} +{"label":"Muhammad Ali","version":22,"id":"65605","lastModified":"1301901536000","name":"Muhammad Ali","type":"Person","_key":"39960"} +{"label":"George Foreman","version":23,"id":"65606","lastModified":"1301901559000","name":"George Foreman","type":"Person","_key":"39961"} +{"label":"Don King","version":22,"id":"65607","lastModified":"1301901536000","name":"Don King","type":"Person","_key":"39962"} +{"label":"Leon Gast","version":34,"id":"65608","lastModified":"1301901739000","name":"Leon Gast","type":"Person","_key":"39963"} +{"label":"Hamlet","description":"Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.","id":"10549","runtime":242,"imdbId":"tt0116477","trailer":"http:\/\/www.youtube.com\/watch?v=-rd74Gniz-A","version":170,"lastModified":"1301903139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/115\/4bc92ee0017a3c57fe013115\/hamlet-mid.jpg","genre":"Drama","title":"Hamlet","releaseDate":851472000000,"language":"en","type":"Movie","_key":"39964"} +{"label":"Ballistic: Ecks vs. Sever","description":"Jonathan Ecks, an FBI agent, realizes that he must join with his lifelong enemy, Agent Sever, a rogue DIA agent with whom he is in mortal combat, in order to defeat a common enemy. That enemy has developed a \"micro-device\" that can be injected into victims in order to kill them at will.","id":"10550","runtime":91,"imdbId":"tt0308208","version":182,"lastModified":"1301902919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc92ee1017a3c57fe013123\/ballistic-ecks-vs-sever-mid.jpg","genre":"Action","title":"Ballistic: Ecks vs. Sever","releaseDate":1032307200000,"language":"en","type":"Movie","_key":"39965"} +{"label":"Wych Kaosayananda","version":25,"id":"65615","lastModified":"1301901536000","name":"Wych Kaosayananda","type":"Person","_key":"39966"} +{"label":"Family Business","description":"Jessie is an ageing career criminal who has been in more jails, fights, schemes, and lineups than just about anyone else. His son Vito, while currently on the straight and narrow, has had a fairly shady past and is indeed no stranger to illegal activity. They both have great hope for Adam, Vito's son and Jessie's grandson, who is bright, good-looking, and without a criminal past. ","id":"10551","runtime":110,"imdbId":"tt0097328","version":124,"lastModified":"1301905278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bc92ee5017a3c57fe013138\/family-business-mid.jpg","genre":"Action","title":"Family Business","releaseDate":629510400000,"language":"en","type":"Movie","_key":"39967"} +{"label":"Cat's Eye","description":"A stray cat is the linking element of three tales of suspense and horror.","id":"10552","runtime":94,"imdbId":"tt0088889","trailer":"http:\/\/www.youtube.com\/watch?v=tuDAGrbkivU","version":139,"lastModified":"1301902003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b8\/4c1939767b9aa10d2c0000b8\/cat-s-eye-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Horror","title":"Cat's Eye","releaseDate":482112000000,"language":"en","tagline":"Follow the newest cat-and-creature game as played through","type":"Movie","_key":"39968"} +{"label":"Remo Williams: The Adventure Begins...","description":"When a street-smart NYPD cop (Fred Ward) regains consciousness after a bizarre mugging, he has a new face and a new identity! Now he's Remo Williams, the #1 recruit of a top-secret organization, and he's toppling evil at every turn \u2013 even atop the Statue of Liberty! Trained by a quirky Korean martial arts master (Joel Grey) to dodge bullets, brave terrifying heights and thwart attackers with his bare hands, Remo becomes the ultimate criminal exterminator. But when he faces off against a corrupt ","id":"10553","runtime":121,"imdbId":"tt0089901","trailer":"http:\/\/www.youtube.com\/watch?v=C_lKShbp3nw","version":97,"lastModified":"1301903362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14a\/4bc92ee6017a3c57fe01314a\/remo-williams-the-adventure-begins-mid.jpg","genre":"Action","title":"Remo Williams: The Adventure Begins...","releaseDate":497836800000,"language":"en","type":"Movie","_key":"39969"} +{"label":"J.A. Preston","version":25,"id":"65618","lastModified":"1301901940000","name":"J.A. Preston","type":"Person","_key":"39970"} +{"label":"Kate Mulgrew","version":25,"id":"35317","lastModified":"1301901761000","name":"Kate Mulgrew","type":"Person","_key":"39971"} +{"label":"Lemon Popsicle","description":"No overview found.","id":"10554","version":206,"lastModified":"1301904028000","genre":"Comedy","title":"Lemon Popsicle","language":"en","type":"Movie","_key":"39972"} +{"label":"Shark Tale","description":"Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.","id":"10555","runtime":90,"imdbId":"tt0307453","version":152,"lastModified":"1301901426000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/157\/4bc92ee7017a3c57fe013157\/shark-tale-mid.jpg","studio":"DreamWorks Animation","genre":"Animation","title":"Shark Tale","releaseDate":1094774400000,"language":"en","tagline":"The story of what happens when one little fish tells a great white lie...","type":"Movie","_key":"39973"} +{"label":"Rob Letterman","version":61,"id":"65630","lastModified":"1301901177000","name":"Rob Letterman","type":"Person","_key":"39974"} +{"label":"Emil und die Detektive","description":"No overview found.","id":"10556","runtime":111,"imdbId":"tt0256739","version":72,"lastModified":"1301906732000","genre":"Comedy","title":"Emil und die Detektive","releaseDate":982800000000,"language":"en","type":"Movie","_key":"39975"} +{"label":"Tobias Retzlaff","version":20,"id":"65861","lastModified":"1301901782000","name":"Tobias Retzlaff","type":"Person","_key":"39976"} +{"label":"Anja Sommavilla","version":20,"id":"65862","lastModified":"1301901782000","name":"Anja Sommavilla","type":"Person","_key":"39977"} +{"label":"Franziska Buch","version":22,"id":"65518","lastModified":"1301901649000","name":"Franziska Buch","type":"Person","_key":"39978"} +{"label":"East is East","description":"In 1971 Salford fish-and-chip shop owner George Khan expects his family to follow his strict Pakistani Muslim ways. But his children, with an English mother and having been born and brought up in Britain, increasingly see themselves as British and start to reject their father's rules on dress, food, religion, and living in general.","id":"10557","runtime":97,"imdbId":"tt0166175","trailer":"http:\/\/www.youtube.com\/watch?v=yfoqUY0KwfQ","version":151,"lastModified":"1301903462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16c\/4bc92ee8017a3c57fe01316c\/east-is-east-mid.jpg","studio":"FilmFour","genre":"Action","title":"East is East","releaseDate":926640000000,"language":"en","tagline":"A comedy of families, a chip shop... and a very randy dog.","type":"Movie","_key":"39979"} +{"label":"Ian Aspinall","version":23,"id":"65864","lastModified":"1301901462000","name":"Ian Aspinall","type":"Person","_key":"39980"} +{"label":"Damien O'Donnell","version":26,"id":"65865","lastModified":"1301901460000","name":"Damien O'Donnell","type":"Person","_key":"39981"} +{"label":"7 Days to Live","description":"No overview found.","id":"10558","runtime":96,"imdbId":"tt0221928","version":405,"lastModified":"1301904471000","genre":"Horror","title":"7 Days to Live","releaseDate":961891200000,"language":"en","type":"Movie","_key":"39982"} +{"label":"Zdenek Maryska","version":24,"id":"49114","lastModified":"1301902334000","name":"Zdenek Maryska","type":"Person","_key":"39983"} +{"label":"Rich Gold","version":21,"id":"65868","lastModified":"1301901953000","name":"Rich Gold","type":"Person","_key":"39984"} +{"label":"Renee Ackermann","version":21,"id":"65869","lastModified":"1301901648000","name":"Renee Ackermann","type":"Person","_key":"39985"} +{"label":"Frequency","description":"An accidental cross-time radio link connects father and son across 30 years. The son tries to save his father's life, but then must fix the consequences.","id":"10559","runtime":118,"imdbId":"tt0186151","trailer":"http:\/\/www.youtube.com\/watch?v=trIMt9mZIdU","version":160,"lastModified":"1301907557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4bc92eed017a3c57fe01317e\/frequency-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Frequency","releaseDate":956880000000,"language":"en","tagline":"The future is listening.","type":"Movie","_key":"39986"} +{"label":"Melissa Errico","version":28,"id":"65756","lastModified":"1301901775000","name":"Melissa Errico","type":"Person","_key":"39987"} +{"label":"Daniel Henson","version":25,"id":"65757","lastModified":"1301901876000","name":"Daniel Henson","type":"Person","_key":"39988"} +{"label":"Jack McCormack","version":25,"id":"65759","lastModified":"1301901876000","name":"Jack McCormack","type":"Person","_key":"39989"} +{"label":"Stephen Joffe","version":25,"id":"65758","lastModified":"1301901725000","name":"Stephen Joffe","type":"Person","_key":"39990"} +{"label":"Marin Hinkle","version":33,"id":"65760","lastModified":"1301902085000","name":"Marin Hinkle","type":"Person","_key":"39991"} +{"label":"Richard Sali","version":25,"id":"65761","lastModified":"1301901876000","name":"Richard Sali","type":"Person","_key":"39992"} +{"label":"Jordan Bridges","version":27,"id":"65762","lastModified":"1301902138000","name":"Jordan Bridges","type":"Person","_key":"39993"} +{"label":"Jessica Meyer","version":25,"id":"65763","lastModified":"1301901612000","name":"Jessica Meyer","type":"Person","_key":"39994"} +{"label":"Kirsten Bishop","version":25,"id":"65764","lastModified":"1301901876000","name":"Kirsten Bishop","type":"Person","_key":"39995"} +{"label":"Rocco Sisto","version":32,"id":"65765","lastModified":"1301901584000","name":"Rocco Sisto","type":"Person","_key":"39996"} +{"label":"Center Stage","description":"A group of 12 teenagers from various backgrounds enroll at the American Ballet Academy in New York to make it as ballet dancers and each one deals with the problems and stress of training and getting ahead in the world of dance.","id":"10560","runtime":115,"imdbId":"tt0210616","version":116,"lastModified":"1301902514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19e\/4bc92ef3017a3c57fe01319e\/center-stage-mid.jpg","genre":"Drama","title":"Center Stage","releaseDate":958089600000,"language":"en","tagline":"Life doesn't hold tryouts.","type":"Movie","_key":"39997"} +{"label":"Amanda Schull","version":25,"id":"65871","lastModified":"1301901648000","name":"Amanda Schull","type":"Person","_key":"39998"} +{"label":"Gripsholm","description":"No overview found.","id":"10561","runtime":100,"imdbId":"tt0199000","version":85,"lastModified":"1301903852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c6\/4cf57a055e73d6299e0009c6\/gripsholm-mid.jpg","genre":"Drama","title":"Gripsholm","releaseDate":974332800000,"language":"en","type":"Movie","_key":"39999"} +{"label":"Xavier Koller","version":21,"id":"65874","lastModified":"1301902365000","name":"Xavier Koller","type":"Person","_key":"40000"} +{"label":"Under Suspicion","description":"A lawyer is asked to come to the police station to clear up a few loose ends in his witness report of a foul murder. This will only take ten minutes, they say, but it turns out to be one loose end after another, and the ten minutes he is away from his speech become longer and longer...","id":"10562","runtime":110,"imdbId":"tt0164212","version":179,"lastModified":"1301938717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bf\/4bc92ef5017a3c57fe0131bf\/under-suspicion-mid.jpg","studio":"Revelations Entertainment","genre":"Mystery","title":"Under Suspicion","releaseDate":969753600000,"language":"en","type":"Movie","_key":"40001"} +{"label":"Three to Tango","description":"When up-and-coming architect Oscar Novak sets out to befriend wealthy business tycoon Charles Newman in the hopes of landing a high-profile, lucrative contract, he never expects to fall for Newman's mistress, Amy -- complicating the deal. See, Newman isn't gay, as Novak assumed, so real feelings in this love triangle force Novak to decide between his heart and his career.","id":"10563","runtime":98,"imdbId":"tt0144640","version":116,"lastModified":"1301903980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a5\/4d8c77885e73d653d10014a5\/three-to-tango-mid.jpg","genre":"Comedy","title":"Three to Tango","releaseDate":940550400000,"language":"en","tagline":"All's fair in the war of love.","type":"Movie","_key":"40002"} +{"label":"Damon Santostefano","version":30,"id":"66039","lastModified":"1301901829000","name":"Damon Santostefano","type":"Person","_key":"40003"} +{"label":"Where The Heart Is","description":"Novalee Nation is a 15-year-old Tennessee transient who has to grow up in a hurry when she's left pregnant and abandoned by her boyfriend on a roadside in Sequoyah, Okla., and takes refuge in the friendly aisles of Wal-Mart. In short order, some eccentric, kindly strangers \"adopt\" Novalee and her infant daughter, helping them buck the odds and build a new life.","id":"10564","runtime":120,"imdbId":"tt0198021","version":146,"lastModified":"1301902307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/375\/4d6dc1347b9aa13633005375\/where-the-heart-is-mid.jpg","genre":"Comedy","title":"Where The Heart Is","releaseDate":956880000000,"language":"en","tagline":"Laughter is harder... Friendship is stronger... Trust is deeper... When it comes from the heart.","type":"Movie","_key":"40004"} +{"label":"Matt Williams","version":31,"id":"34481","lastModified":"1301901675000","name":"Matt Williams","type":"Person","_key":"40005"} +{"label":"Kanak Attack","description":"No overview found.","id":"10565","runtime":86,"imdbId":"tt0195001","version":59,"lastModified":"1301905706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1de\/4bc92efa017a3c57fe0131de\/kanak-attack-mid.jpg","genre":"Drama","title":"Kanak Attack","releaseDate":974332800000,"language":"en","type":"Movie","_key":"40006"} +{"label":"Haluk Piyes","version":22,"id":"66044","lastModified":"1301902192000","name":"Haluk Piyes","type":"Person","_key":"40007"} +{"label":"Oezlem Cetin","version":20,"id":"66045","lastModified":"1301902192000","name":"Oezlem Cetin","type":"Person","_key":"40008"} +{"label":"Lars Becker","version":20,"id":"66046","lastModified":"1301901648000","name":"Lars Becker","type":"Person","_key":"40009"} +{"label":"Vergiss Amerika","description":"No overview found.","id":"10566","runtime":90,"imdbId":"tt0248601","version":69,"lastModified":"1301906732000","genre":"Drama","title":"Vergiss Amerika","releaseDate":973728000000,"language":"en","type":"Movie","_key":"40010"} +{"label":"Johannes Franke","version":20,"id":"65876","lastModified":"1301901822000","name":"Johannes Franke","type":"Person","_key":"40011"} +{"label":"Dinosaur","description":"An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.","id":"10567","runtime":82,"imdbId":"tt0130623","trailer":"http:\/\/www.youtube.com\/watch?v=JuEeYemi-74","version":134,"lastModified":"1301974899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75b\/4cb287645e73d65b8600075b\/dinosaur-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Dinosaur","releaseDate":958694400000,"language":"en","tagline":"You have never seen anything like this.","type":"Movie","_key":"40012"} +{"label":"Ralph Zondag","version":24,"id":"65855","lastModified":"1301974899000","name":"Ralph Zondag","type":"Person","_key":"40013"} +{"label":"Eric Leighton","version":24,"id":"65856","lastModified":"1301974899000","name":"Eric Leighton","type":"Person","_key":"40014"} +{"label":"The Four Feathers","description":"A disgraced officer risks his life to help his childhood friends in battle.","id":"10568","runtime":130,"imdbId":"tt0031334","version":125,"lastModified":"1301904952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/207\/4bc92efd017a3c57fe013207\/the-four-feathers-mid.jpg","genre":"Action","title":"The Four Feathers","releaseDate":-968889600000,"language":"en","type":"Movie","_key":"40015"} +{"label":"John Clements","version":21,"id":"65851","lastModified":"1301902149000","name":"John Clements","type":"Person","_key":"40016"} +{"label":"Allan Jeayes","version":20,"id":"95027","lastModified":"1301902974000","name":"Allan Jeayes","type":"Person","_key":"40017"} +{"label":"Jack Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/74e\/4cbf22037b9aa138d900174e\/jack-allen-profile.jpg","version":21,"id":"108093","lastModified":"1301902772000","name":"Jack Allen","type":"Person","_key":"40018"} +{"label":"Donald Gray","version":17,"id":"139452","lastModified":"1301902598000","name":"Donald Gray","type":"Person","_key":"40019"} +{"label":"Zoltan Korda","version":30,"id":"65852","lastModified":"1301901953000","name":"Zoltan Korda","type":"Person","_key":"40020"} +{"label":"Small Time Crooks","description":"A loser of a crook and his wife strike it rich when a botched bank job's cover business becomes a spectacular success.","id":"10569","runtime":94,"imdbId":"tt0196216","version":177,"lastModified":"1301902933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4c32fb825e73d64968000133\/small-time-crooks-mid.jpg","genre":"Action","title":"Small Time Crooks","releaseDate":958694400000,"language":"en","type":"Movie","_key":"40021"} +{"label":"Carolyn Saxon","version":22,"id":"65850","lastModified":"1301901680000","name":"Carolyn Saxon","type":"Person","_key":"40022"} +{"label":"Sam Josepher","version":22,"id":"67096","lastModified":"1301901836000","name":"Sam Josepher","type":"Person","_key":"40023"} +{"label":"Diane Bradley","version":22,"id":"67098","lastModified":"1301901691000","name":"Diane Bradley","type":"Person","_key":"40024"} +{"label":"Lawrence Howard Levy","version":27,"id":"67097","lastModified":"1301901581000","name":"Lawrence Howard Levy","type":"Person","_key":"40025"} +{"label":"Crystal Field","version":22,"id":"67099","lastModified":"1301901836000","name":"Crystal Field","type":"Person","_key":"40026"} +{"label":"Cindy Carver","version":22,"id":"67100","lastModified":"1301901676000","name":"Cindy Carver","type":"Person","_key":"40027"} +{"label":"Laurine Towler","version":22,"id":"67102","lastModified":"1301901689000","name":"Laurine Towler","type":"Person","_key":"40028"} +{"label":"Olivia Hayman","version":22,"id":"67101","lastModified":"1301901689000","name":"Olivia Hayman","type":"Person","_key":"40029"} +{"label":"Fanda Nikic","version":22,"id":"67103","lastModified":"1301901825000","name":"Fanda Nikic","type":"Person","_key":"40030"} +{"label":"Elaine May","version":55,"id":"58251","lastModified":"1301901804000","name":"Elaine May","type":"Person","_key":"40031"} +{"label":"Dana Tyler","version":22,"id":"67104","lastModified":"1301901675000","name":"Dana Tyler","type":"Person","_key":"40032"} +{"label":"Steve Kroft","version":22,"id":"67105","lastModified":"1301901676000","name":"Steve Kroft","type":"Person","_key":"40033"} +{"label":"Flodder","description":"No overview found.","id":"10570","runtime":111,"imdbId":"tt0091060","version":71,"lastModified":"1301906619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/331\/4c9541765e73d63a77000331\/flodder-mid.jpg","studio":"Hacker Productions","genre":"Comedy","title":"Flodder","releaseDate":535161600000,"language":"en","type":"Movie","_key":"40034"} +{"label":"Boys and Girls","description":"Jennifer and Ryan are students at UC Berkeley, acquaintances off and on since early adolescence. She's quick, witty, ironic, literary, and independent; he's deliberate, literal, serious, studying structural engineering, always working on a plan. They take walks, they console each other over break-ups, he shares his plans. She's headed for Italy after graduation. Then, to their equal surprise, they spend a night together. Her response is to skitter away from continued intimacy and want to stay fr","id":"10571","runtime":94,"imdbId":"tt0204175","version":146,"lastModified":"1301903830000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/218\/4bc92f01017a3c57fe013218\/boys-and-girls-mid.jpg","genre":"Comedy","title":"Boys and Girls","releaseDate":961113600000,"language":"en","tagline":"Opposites Attack","type":"Movie","_key":"40035"} +{"label":"Michel Vaillant","description":"No overview found.","id":"10572","runtime":103,"imdbId":"tt0307156","version":81,"lastModified":"1301902429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/247\/4bc92f04017a3c57fe013247\/michel-vaillant-mid.jpg","genre":"Drama","title":"Michel Vaillant","releaseDate":1068249600000,"language":"en","type":"Movie","_key":"40036"} +{"label":"Sagamore St\u00e9venin","version":28,"id":"7692","lastModified":"1301901283000","name":"Sagamore St\u00e9venin","type":"Person","_key":"40037"} +{"label":"B\u00e9atrice Agenin","version":21,"id":"45449","lastModified":"1301902105000","name":"B\u00e9atrice Agenin","type":"Person","_key":"40038"} +{"label":"Louis-Pascal Couvelaire","version":20,"id":"65631","lastModified":"1301902085000","name":"Louis-Pascal Couvelaire","type":"Person","_key":"40039"} +{"label":"Luna Papa","description":"No overview found.","id":"10573","runtime":107,"imdbId":"tt0170259","version":60,"lastModified":"1301908566000","genre":"Comedy","title":"Luna Papa","releaseDate":936748800000,"language":"en","type":"Movie","_key":"40040"} +{"label":"Ato Mukhamedzhanov","version":20,"id":"65684","lastModified":"1301901829000","name":"Ato Mukhamedzhanov","type":"Person","_key":"40041"} +{"label":"Bakhtyar Khudojnazarov","version":22,"id":"65686","lastModified":"1301902334000","name":"Bakhtyar Khudojnazarov","type":"Person","_key":"40042"} +{"label":"Gro\u00dfe Freiheit Nr. 7","description":"No overview found.","id":"10574","runtime":111,"imdbId":"tt0036882","version":49,"lastModified":"1301904231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/250\/4bc92f07017a3c57fe013250\/groe-freiheit-nr-7-mid.jpg","studio":"Terra-Filmkunst","genre":"Drama","title":"Gro\u00dfe Freiheit Nr. 7","releaseDate":-790387200000,"language":"en","type":"Movie","_key":"40043"} +{"label":"Ilse Werner","version":19,"id":"65675","lastModified":"1301901725000","name":"Ilse Werner","type":"Person","_key":"40044"} +{"label":"Hilde Hildebrand","version":19,"id":"65679","lastModified":"1301901725000","name":"Hilde Hildebrand","type":"Person","_key":"40045"} +{"label":"Heaven","description":"A woman takes the law into her own hands after police ignore her pleas to arrest the man responsible for her husband's death, and finds herself not only under arrest for murder but falling in love with an officer.","id":"10575","runtime":96,"imdbId":"tt0246677","trailer":"http:\/\/www.youtube.com\/watch?v=tBVLiyAqbJ4","version":174,"lastModified":"1301907405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/255\/4bc92f07017a3c57fe013255\/heaven-mid.jpg","genre":"Action","title":"Heaven","releaseDate":1012953600000,"language":"en","type":"Movie","_key":"40046"} +{"label":"Psycho II","description":"Now declared legally sane, Norman Bates is released from a mental institution after spending 22 years in confinement over the protests of Marion Crane's sister Lila Loomis, who insists that he's still a killer and that the court's indifference to his victims by releasing him is a gross miscarriage of justice. Norman returns to his motel and the old Victorian mansion where his troubles started, and history predictably begins to repeat itself","id":"10576","runtime":113,"imdbId":"tt0086154","version":198,"lastModified":"1301903818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23a\/4c4cc4657b9aa1237c00023a\/psycho-ii-mid.jpg","genre":"Horror","title":"Psycho II","releaseDate":423446400000,"language":"en","type":"Movie","_key":"40047"} +{"label":"Wes Craven Presents Dracula 2000","description":"In the millenium version of this classic Gothic horror we find Abraham Van Helsing (Plummer), who has tangled with Count Dracula (Butler) in the past, working as an English antiques dealer. Simon (Miller) is a vampire hunter in training under his apprenticeship.","id":"10577","runtime":95,"imdbId":"tt0219653","version":69,"lastModified":"1301907719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4bc92f08017a3c57fe01325e\/wes-craven-presents-dracula-2000-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Wes Craven Presents Dracula 2000","releaseDate":977443200000,"language":"en","type":"Movie","_key":"40048"} +{"label":"Jeri Ryan","version":23,"id":"65638","lastModified":"1301902184000","name":"Jeri Ryan","type":"Person","_key":"40049"} +{"label":"Dracula II: Ascension","description":"No overview found.","id":"10578","runtime":85,"imdbId":"tt0336325","version":97,"lastModified":"1301908317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4bc92f0b017a3c57fe013271\/dracula-ii-ascension-mid.jpg","genre":"Horror","title":"Dracula II: Ascension","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"40050"} +{"label":"Diane Neal","version":22,"id":"65639","lastModified":"1301901725000","name":"Diane Neal","type":"Person","_key":"40051"} +{"label":"Khary Payton","version":24,"id":"65640","lastModified":"1301901612000","name":"Khary Payton","type":"Person","_key":"40052"} +{"label":"Brande Roderick","version":20,"id":"65641","lastModified":"1301902085000","name":"Brande Roderick","type":"Person","_key":"40053"} +{"label":"John Light","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4ca6291a5e73d643ed000016\/john-light-profile.jpg","version":33,"id":"65642","lastModified":"1301901472000","name":"John Light","type":"Person","_key":"40054"} +{"label":"Wes Craven presents: Dracula III: Legacy","description":"No overview found.","id":"10579","runtime":90,"imdbId":"tt0303929","version":79,"lastModified":"1301903356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27a\/4bc92f0c017a3c57fe01327a\/wes-craven-presents-dracula-iii-legacy-mid.jpg","genre":"Horror","title":"Wes Craven presents: Dracula III: Legacy","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"40055"} +{"label":"Alexandra Wescourt","version":21,"id":"65647","lastModified":"1301901725000","name":"Alexandra Wescourt","type":"Person","_key":"40056"} +{"label":"Claudiu Bleont","version":21,"id":"65648","lastModified":"1301902085000","name":"Claudiu Bleont","type":"Person","_key":"40057"} +{"label":"Ilinca Goia","version":22,"id":"65649","lastModified":"1301902260000","name":"Ilinca Goia","type":"Person","_key":"40058"} +{"label":"George Grigore","version":21,"id":"65650","lastModified":"1301902260000","name":"George Grigore","type":"Person","_key":"40059"} +{"label":"Eskimo Limon","description":"No overview found.","id":"10580","runtime":95,"imdbId":"tt0079118","version":83,"lastModified":"1301902978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27f\/4bc92f0c017a3c57fe01327f\/eskimo-limon-mid.jpg","genre":"Comedy","title":"Eskimo Limon","releaseDate":261964800000,"language":"en","type":"Movie","_key":"40060"} +{"label":"Yftach Katzur","version":26,"id":"65651","lastModified":"1301901446000","name":"Yftach Katzur","type":"Person","_key":"40061"} +{"label":"Anat Atzmon","version":19,"id":"65652","lastModified":"1301902085000","name":"Anat Atzmon","type":"Person","_key":"40062"} +{"label":"Boaz Davidson","version":86,"id":"16830","lastModified":"1301901505000","name":"Boaz Davidson","type":"Person","_key":"40063"} +{"label":"Yotzim Kavua","description":"Going Steady aka Lemon Popsicle 2 is the sequel to the 1978 Israeli film Lemon Popsicle. The movie basically follows the daily lives of several teenagers as they are \"coming of age\" in what appears to be the late 50's (maybe early 60's).","id":"10581","runtime":100,"imdbId":"tt0079218","version":84,"lastModified":"1301904676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/505\/4d1c8dc67b9aa17a87000505\/yotzim-kavua-mid.jpg","genre":"Comedy","title":"Yotzim Kavua","releaseDate":296956800000,"language":"en","type":"Movie","_key":"40064"} +{"label":"Yvonne Michaels","version":20,"id":"65656","lastModified":"1301901993000","name":"Yvonne Michaels","type":"Person","_key":"40065"} +{"label":"Rachel Steiner","version":20,"id":"65657","lastModified":"1301902085000","name":"Rachel Steiner","type":"Person","_key":"40066"} +{"label":"Dafna Armoni","version":19,"id":"65658","lastModified":"1301902085000","name":"Dafna Armoni","type":"Person","_key":"40067"} +{"label":"Shifshuf Naim","description":"No overview found.","id":"10582","runtime":90,"imdbId":"tt0082528","version":64,"lastModified":"1301904014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/513\/4d1c8e997b9aa17a87000513\/shifshuf-naim-mid.jpg","genre":"Comedy","title":"Shifshuf Naim","releaseDate":355449600000,"language":"en","type":"Movie","_key":"40068"} +{"label":"Ariella Rabinovich","version":19,"id":"65662","lastModified":"1301902260000","name":"Ariella Rabinovich","type":"Person","_key":"40069"} +{"label":"Orna Dagan","version":19,"id":"65663","lastModified":"1301902260000","name":"Orna Dagan","type":"Person","_key":"40070"} +{"label":"Sapiches","description":"No overview found.","id":"10583","runtime":107,"imdbId":"tt0084629","version":66,"lastModified":"1301903256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4d1c8ee57b9aa17a8700051a\/sapiches-mid.jpg","genre":"Comedy","title":"Sapiches","releaseDate":416188800000,"language":"en","type":"Movie","_key":"40071"} +{"label":"Sonja Martin","version":22,"id":"65667","lastModified":"1301901469000","name":"Sonja Martin","type":"Person","_key":"40072"} +{"label":"Moshe Ish-Kassit","version":19,"id":"65668","lastModified":"1301902085000","name":"Moshe Ish-Kassit","type":"Person","_key":"40073"} +{"label":"Ahava Tzeira","description":"No overview found.","id":"10584","runtime":86,"imdbId":"tt0092954","version":59,"lastModified":"1301905705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/498\/4d1c90057b9aa17a60000498\/ahava-tzeira-mid.jpg","genre":"Comedy","title":"Ahava Tzeira","releaseDate":548553600000,"language":"en","type":"Movie","_key":"40074"} +{"label":"Child's Play","description":"When serial killer Charles Lee Ray is mortally wounded in a police shoot-out, he uses a voodoo spell to transfer his soul into Chucky, a \"Good Guys\" doll. Andy receives the doll as a birthday gift, and Chucky soon resumes his killing spree.","id":"10585","runtime":87,"imdbId":"tt0094862","trailer":"http:\/\/www.youtube.com\/watch?v=zWp3yGx6DxI","version":313,"lastModified":"1302027045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c1\/4c9958875e73d656150000c1\/childs-play-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Horror","title":"Child's Play","releaseDate":595036800000,"language":"en","tagline":"You'll wish it was only make-believe.","type":"Movie","_key":"40075"} +{"label":"Alex Vincent","version":31,"id":"65683","lastModified":"1301974707000","name":"Alex Vincent","type":"Person","_key":"40076"} +{"label":"The Ghost and the Darkness","description":"Set in 1898, this movie is based on the true story of two lions in Africa that killed 130 people over a nine month period, while a bridge engineer and an experienced old hunter tried to kill them.","id":"10586","runtime":109,"imdbId":"tt0116409","trailer":"http:\/\/www.youtube.com\/watch?v=ncG6epwTlEE","version":144,"lastModified":"1301908060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a9\/4bc92f13017a3c57fe0132a9\/the-ghost-and-the-darkness-mid.jpg","studio":"Constellation Entertainment","genre":"Action","title":"The Ghost and the Darkness","releaseDate":844992000000,"language":"en","type":"Movie","_key":"40077"} +{"label":"Police Academy 4: Citizens on Patrol","description":"A new batch of recruits arrives at Police Academy, this time a group of civilian volunteers who have joined Commandant Lassard's new Citizens on Patrol program. Although the community relations project has strong governmental support, a disgusted Captain Harris is determined to see it fail.","id":"10587","runtime":86,"imdbId":"tt0093756","version":129,"lastModified":"1301902650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4bcc27ff017a3c0f2c000095\/police-academy-4-citizens-on-patrol-mid.jpg","genre":"Action","title":"Police Academy 4: Citizens on Patrol","releaseDate":544406400000,"language":"en","type":"Movie","_key":"40078"} +{"label":"Jim Drake","version":25,"id":"65688","lastModified":"1301902085000","name":"Jim Drake","type":"Person","_key":"40079"} +{"label":"The Cat in the Hat","description":"Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.","id":"10588","runtime":82,"imdbId":"tt0312528","version":182,"lastModified":"1301902904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c8\/4bc92f16017a3c57fe0132c8\/the-cat-in-the-hat-mid.jpg","genre":"Comedy","title":"The Cat in the Hat","releaseDate":1068249600000,"language":"en","tagline":"Don't mess with the hat.","type":"Movie","_key":"40080"} +{"label":"Bo Welch","version":57,"id":"5133","lastModified":"1302062775000","name":"Bo Welch","type":"Person","_key":"40081"} +{"label":"After the Sunset","description":"Two master thieves (Brosnan and Hayek) are finally retiring after one last succesful mission. Residing in their own tropical paradise, their old nemesis, FBI Agent Stan P. Lloyd shows up to make sure they really are retired. Docked in the port is an ocean liner called the \"Diamond Cruise\" and Stan is convinced that they're not really retired at all, and that this is the next set up.","id":"10589","runtime":97,"imdbId":"tt0367479","trailer":"http:\/\/www.youtube.com\/watch?v=1150","homepage":"http:\/\/www.afterthesunset.com\/","version":256,"lastModified":"1301902082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e6\/4bc92f1d017a3c57fe0132e6\/after-the-sunset-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"After the Sunset","releaseDate":1100217600000,"language":"en","type":"Movie","_key":"40082"} +{"label":"Robert Curtis Brown","version":23,"id":"65695","lastModified":"1301901633000","name":"Robert Curtis Brown","type":"Person","_key":"40083"} +{"label":"Tony Ledard","version":22,"id":"65696","lastModified":"1301901762000","name":"Tony Ledard","type":"Person","_key":"40084"} +{"label":"Andrew Fiscella","version":33,"id":"65699","lastModified":"1301901311000","name":"Andrew Fiscella","type":"Person","_key":"40085"} +{"label":"Karl Malone","version":22,"id":"65697","lastModified":"1301901762000","name":"Karl Malone","type":"Person","_key":"40086"} +{"label":"Gary Payton","version":22,"id":"65698","lastModified":"1301901762000","name":"Gary Payton","type":"Person","_key":"40087"} +{"label":"We Were Soldiers","description":"The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.","id":"10590","runtime":138,"imdbId":"tt0277434","trailer":"http:\/\/www.youtube.com\/watch?v=vUsB68-w6Wg","version":243,"lastModified":"1301901489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ed\/4d7258267b9aa1776a0001ed\/we-were-soldiers-mid.jpg","genre":"Action","title":"We Were Soldiers","releaseDate":1014940800000,"language":"en","type":"Movie","_key":"40088"} +{"label":"Robert Bagnell","version":27,"id":"65715","lastModified":"1301901785000","name":"Robert Bagnell","type":"Person","_key":"40089"} +{"label":"Josh Daugherty","version":24,"id":"65716","lastModified":"1301901932000","name":"Josh Daugherty","type":"Person","_key":"40090"} +{"label":"Erik MacArthur","version":26,"id":"65719","lastModified":"1301901948000","name":"Erik MacArthur","type":"Person","_key":"40091"} +{"label":"Mark McCracken","version":25,"id":"65720","lastModified":"1301902126000","name":"Mark McCracken","type":"Person","_key":"40092"} +{"label":"The Girl Next Door","description":"Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.","id":"10591","runtime":109,"imdbId":"tt0265208","trailer":"http:\/\/www.youtube.com\/watch?v=nBEmRXeJ-C0","version":255,"lastModified":"1301901478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0c\/4d5092855e73d617b7003e0c\/the-girl-next-door-mid.jpg","studio":"Regency Enterprises","genre":"Comedy","title":"The Girl Next Door","releaseDate":1080345600000,"language":"en","tagline":"Matt never saw her coming... but all his friends had!","type":"Movie","_key":"40093"} +{"label":"Luke Greenfield","version":35,"id":"65734","lastModified":"1301901602000","name":"Luke Greenfield","type":"Person","_key":"40094"} +{"label":"Brian Kolodziej","version":27,"id":"65738","lastModified":"1301901934000","name":"Brian Kolodziej","type":"Person","_key":"40095"} +{"label":"Julie Osburn","version":27,"id":"65745","lastModified":"1301901766000","name":"Julie Osburn","type":"Person","_key":"40096"} +{"label":"Ulysses Lee","version":27,"id":"65742","lastModified":"1301901934000","name":"Ulysses Lee","type":"Person","_key":"40097"} +{"label":"Brandon Irons","version":27,"id":"65741","lastModified":"1301901934000","name":"Brandon Irons","type":"Person","_key":"40098"} +{"label":"Donna Bullock","version":27,"id":"65740","lastModified":"1301901934000","name":"Donna Bullock","type":"Person","_key":"40099"} +{"label":"Sung Hi Lee","version":35,"id":"65739","lastModified":"1301901644000","name":"Sung Hi Lee","type":"Person","_key":"40100"} +{"label":"Jacob Young","version":27,"id":"65743","lastModified":"1301901934000","name":"Jacob Young","type":"Person","_key":"40101"} +{"label":"Harris Laskawy","version":25,"id":"65744","lastModified":"1301901934000","name":"Harris Laskawy","type":"Person","_key":"40102"} +{"label":"Laird Stuart","version":27,"id":"65746","lastModified":"1301901934000","name":"Laird Stuart","type":"Person","_key":"40103"} +{"label":"Richard Fancy","version":32,"id":"65748","lastModified":"1301901934000","name":"Richard Fancy","type":"Person","_key":"40104"} +{"label":"Catherine McGoohan","version":34,"id":"65749","lastModified":"1301901766000","name":"Catherine McGoohan","type":"Person","_key":"40105"} +{"label":"Dane Garretson","version":27,"id":"65747","lastModified":"1301901934000","name":"Dane Garretson","type":"Person","_key":"40106"} +{"label":"Hart's War","description":"A law student becomes a lieutenant during World War II, is captured and asked to defend a black prisoner of war falsely accused of murder.","id":"10592","runtime":125,"imdbId":"tt0251114","version":176,"lastModified":"1302027017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/339\/4d8f9f047b9aa16a24002339\/hart-s-war-mid.jpg","studio":"PolyGram Audiovisuel","genre":"Drama","title":"Hart's War","releaseDate":1013731200000,"language":"en","type":"Movie","_key":"40107"} +{"label":"Maury Sterling","version":39,"id":"65726","lastModified":"1301901163000","name":"Maury Sterling","type":"Person","_key":"40108"} +{"label":"Sam Jaeger","version":28,"id":"65727","lastModified":"1301901725000","name":"Sam Jaeger","type":"Person","_key":"40109"} +{"label":"Scott Michael Campbell","version":29,"id":"65728","lastModified":"1301901612000","name":"Scott Michael Campbell","type":"Person","_key":"40110"} +{"label":"Rick Ravanello","version":20,"id":"65730","lastModified":"1301902260000","name":"Rick Ravanello","type":"Person","_key":"40111"} +{"label":"Sebastian Tillinger","version":20,"id":"65729","lastModified":"1301902260000","name":"Sebastian Tillinger","type":"Person","_key":"40112"} +{"label":"Brad Hunt","version":28,"id":"65732","lastModified":"1301901797000","name":"Brad Hunt","type":"Person","_key":"40113"} +{"label":"R\u00faaidhr\u00ed Conroy","version":27,"id":"65733","lastModified":"1301901950000","name":"R\u00faaidhr\u00ed Conroy","type":"Person","_key":"40114"} +{"label":"Il Fantasma dell'opera","description":"Gory remake of the Gaston Leroux classic story, only this time, the phantom is not disfigured, but a man who was raised by rats deep under the Paris Opera House.","id":"10593","runtime":99,"imdbId":"tt0119889","trailer":"http:\/\/www.youtube.com\/watch?v=wjjA3coN0y4","version":78,"lastModified":"1301903718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/182\/4c2074107b9aa130a5000182\/il-fantasma-dell-opera-mid.jpg","genre":"Drama","title":"Il Fantasma dell'opera","releaseDate":911520000000,"language":"en","type":"Movie","_key":"40115"} +{"label":"Coralina Cataldi-Tassoni","version":22,"id":"65750","lastModified":"1301902126000","name":"Coralina Cataldi-Tassoni","type":"Person","_key":"40116"} +{"label":"Dario Argento","version":103,"id":"4955","lastModified":"1301983557000","name":"Dario Argento","type":"Person","_key":"40117"} +{"label":"The Skulls III","description":"A young college co-ed tries joining the elite, all-male, secret society, the Skulls, and in so doing, she uncovers some unscrupulous methods used by some of the members to get what they want.","id":"10594","runtime":102,"imdbId":"tt0352851","version":164,"lastModified":"1301903930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/359\/4bc92f30017a3c57fe013359\/the-skulls-iii-mid.jpg","genre":"Thriller","title":"The Skulls III","releaseDate":1080000000000,"language":"en","type":"Movie","_key":"40118"} +{"label":"Steve Braun","version":22,"id":"10867","lastModified":"1301901640000","name":"Steve Braun","type":"Person","_key":"40119"} +{"label":"Len Cariou","version":23,"id":"41247","lastModified":"1301901779000","name":"Len Cariou","type":"Person","_key":"40120"} +{"label":"Bryce Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/99c\/4d93b2545e73d623b000099c\/bryce-johnson-profile.jpg","version":33,"id":"65769","lastModified":"1301901439000","name":"Bryce Johnson","type":"Person","_key":"40121"} +{"label":"Toby Proctor","version":20,"id":"65775","lastModified":"1301902365000","name":"Toby Proctor","type":"Person","_key":"40122"} +{"label":"Shaun Sipos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/080\/4c2b8f6e5e73d63997000080\/shaun-sipos-profile.jpg","version":31,"id":"65772","lastModified":"1301902390000","name":"Shaun Sipos","type":"Person","_key":"40123"} +{"label":"David Purchase","version":22,"id":"65774","lastModified":"1301902131000","name":"David Purchase","type":"Person","_key":"40124"} +{"label":"Chris Trussell","version":19,"id":"65773","lastModified":"1301902131000","name":"Chris Trussell","type":"Person","_key":"40125"} +{"label":"Martha Burns","version":19,"id":"65776","lastModified":"1301902131000","name":"Martha Burns","type":"Person","_key":"40126"} +{"label":"Irene Dale","version":19,"id":"65778","lastModified":"1301902131000","name":"Irene Dale","type":"Person","_key":"40127"} +{"label":"Replicant","description":"Scientists create a genetic clone of a serial killer in order to help catch the killer, teaming up with two cops.","id":"10596","runtime":101,"imdbId":"tt0238552","version":179,"lastModified":"1301904331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36b\/4bc92f32017a3c57fe01336b\/replicant-mid.jpg","genre":"Action","title":"Replicant","releaseDate":989539200000,"language":"en","type":"Movie","_key":"40128"} +{"label":"Allan Gray","version":26,"id":"6602","lastModified":"1301901420000","name":"Allan Gray","type":"Person","_key":"40129"} +{"label":"Catherine Dent","version":33,"id":"65797","lastModified":"1301901770000","name":"Catherine Dent","type":"Person","_key":"40130"} +{"label":"Pam Hyatt","version":24,"id":"65799","lastModified":"1301901555000","name":"Pam Hyatt","type":"Person","_key":"40131"} +{"label":"Margaret Ryan","version":20,"id":"65804","lastModified":"1301902307000","name":"Margaret Ryan","type":"Person","_key":"40132"} +{"label":"James Hutson","version":21,"id":"65800","lastModified":"1301902365000","name":"James Hutson","type":"Person","_key":"40133"} +{"label":"Brandon James Olson","version":21,"id":"65798","lastModified":"1301902307000","name":"Brandon James Olson","type":"Person","_key":"40134"} +{"label":"Peter Flemming","version":20,"id":"65803","lastModified":"1301902307000","name":"Peter Flemming","type":"Person","_key":"40135"} +{"label":"Lillian Carlson","version":20,"id":"65805","lastModified":"1301902307000","name":"Lillian Carlson","type":"Person","_key":"40136"} +{"label":"Marnie Alton","version":22,"id":"65806","lastModified":"1301902003000","name":"Marnie Alton","type":"Person","_key":"40137"} +{"label":"Chris Kelly","version":23,"id":"65802","lastModified":"1301901555000","name":"Chris Kelly","type":"Person","_key":"40138"} +{"label":"Jayme Knox","version":21,"id":"65801","lastModified":"1301902365000","name":"Jayme Knox","type":"Person","_key":"40139"} +{"label":"Fulvio Cecere","version":22,"id":"65808","lastModified":"1301901469000","name":"Fulvio Cecere","type":"Person","_key":"40140"} +{"label":"Ingrid Tesch","version":21,"id":"65807","lastModified":"1301902364000","name":"Ingrid Tesch","type":"Person","_key":"40141"} +{"label":"Brent Chapman","version":23,"id":"65811","lastModified":"1301902307000","name":"Brent Chapman","type":"Person","_key":"40142"} +{"label":"Matteo Ferronato","version":20,"id":"65810","lastModified":"1301902307000","name":"Matteo Ferronato","type":"Person","_key":"40143"} +{"label":"Dominic Ferronato","version":20,"id":"65809","lastModified":"1301902307000","name":"Dominic Ferronato","type":"Person","_key":"40144"} +{"label":"Kevin and Perry Go Large","description":"When stubborn, spotty Kevin and his equally hopeless best friend Perry go on holiday to the party island Ibiza, they see it as their big chance to become superstar club DJs and, more importantly, to lose their virginities. But they aren't prepared for the interference of top DJ Eyeball Paul, not to mention the embarrassment factor of Kevin's long-suffering parents.","id":"10597","runtime":82,"imdbId":"tt0205177","version":245,"lastModified":"1301902413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/374\/4bc92f35017a3c57fe013374\/kevin-and-perry-go-large-mid.jpg","genre":"Comedy","title":"Kevin and Perry Go Large","releaseDate":956275200000,"language":"en","tagline":"All they want to do is... Do it!!!","type":"Movie","_key":"40145"} +{"label":"Harry Enfield","version":27,"id":"66161","lastModified":"1301901953000","name":"Harry Enfield","type":"Person","_key":"40146"} +{"label":"Ed Bye","version":35,"id":"66162","lastModified":"1301902023000","name":"Ed Bye","type":"Person","_key":"40147"} +{"label":"Dirty","description":"Two gangbangers-turned-cops try and cover up a scandal within the LAPD.","id":"10598","runtime":97,"imdbId":"tt0439544","version":171,"lastModified":"1301902410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37d\/4bc92f35017a3c57fe01337d\/dirty-mid.jpg","genre":"Crime","title":"Dirty","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"40148"} +{"label":"Frank Alvarez","version":21,"id":"65826","lastModified":"1301901612000","name":"Frank Alvarez","type":"Person","_key":"40149"} +{"label":"Robert 'Lil Rob' Flores","version":17,"id":"65828","lastModified":"1301901725000","name":"Robert 'Lil Rob' Flores","type":"Person","_key":"40150"} +{"label":"Kevin Grevioux","version":51,"id":"3952","lastModified":"1301901111000","name":"Kevin Grevioux","type":"Person","_key":"40151"} +{"label":"Wood Harris","version":35,"id":"65829","lastModified":"1301901493000","name":"Wood Harris","type":"Person","_key":"40152"} +{"label":"Terry Kennedy","version":20,"id":"65830","lastModified":"1301902177000","name":"Terry Kennedy","type":"Person","_key":"40153"} +{"label":"Joseph McKelheer","version":21,"id":"65833","lastModified":"1301901562000","name":"Joseph McKelheer","type":"Person","_key":"40154"} +{"label":"Jennifer Martinez","version":19,"id":"65832","lastModified":"1301901612000","name":"Jennifer Martinez","type":"Person","_key":"40155"} +{"label":"Pinocchio","description":"No overview found.","id":"10599","runtime":108,"imdbId":"tt0255477","version":154,"lastModified":"1301907515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/382\/4bc92f36017a3c57fe013382\/pinocchio-mid.jpg","studio":"Cecchi Gori Group","genre":"Comedy","title":"Pinocchio","releaseDate":1034294400000,"language":"en","type":"Movie","_key":"40156"} +{"label":"Kim Rossi Stuart","version":39,"id":"66166","lastModified":"1301901603000","name":"Kim Rossi Stuart","type":"Person","_key":"40157"} +{"label":"Die Musterknaben 2","description":"No overview found.","id":"10600","runtime":90,"imdbId":"tt0165393","version":44,"lastModified":"1301904266000","genre":"Comedy","title":"Die Musterknaben 2","releaseDate":921456000000,"language":"en","type":"Movie","_key":"40158"} +{"label":"Peter Pan","description":"In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland. ","id":"10601","runtime":113,"imdbId":"tt0316396","trailer":"http:\/\/www.youtube.com\/watch?v=1733","version":244,"lastModified":"1301907559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/393\/4bc92f37017a3c57fe013393\/peter-pan-mid.jpg","studio":"Quinta Communications","genre":"Action","title":"Peter Pan","releaseDate":1070928000000,"language":"en","tagline":"All children grow up except one.","type":"Movie","_key":"40159"} +{"label":"Jeremy Sumpter","version":26,"id":"65838","lastModified":"1301901561000","name":"Jeremy Sumpter","type":"Person","_key":"40160"} +{"label":"George of the Jungle","description":"Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.","id":"10603","runtime":92,"imdbId":"tt0119190","trailer":"http:\/\/www.youtube.com\/watch?v=62fugV7ZEDY","version":154,"lastModified":"1301902505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/652\/4d4de0bf7b9aa13ab4009652\/george-of-the-jungle-mid.jpg","genre":"Action","title":"George of the Jungle","releaseDate":869011200000,"language":"en","tagline":"Watch out!","type":"Movie","_key":"40161"} +{"label":"Zorba the Greek","description":"An uptight English writer traveling to Crete on a matter of business finds his life changed forever when he meets the gregarious Alexis Zorba.","id":"10604","runtime":142,"imdbId":"tt0057831","version":136,"lastModified":"1301903319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c9\/4bc92f3e017a3c57fe0133c9\/alexis-zorbas-mid.jpg","genre":"Drama","title":"Zorba the Greek","releaseDate":-159062400000,"language":"en","type":"Movie","_key":"40162"} +{"label":"Mihalis Kakogiannis","version":41,"id":"65843","lastModified":"1301901725000","name":"Mihalis Kakogiannis","type":"Person","_key":"40163"} +{"label":"Sotiris Moustakas","version":21,"id":"65842","lastModified":"1301901876000","name":"Sotiris Moustakas","type":"Person","_key":"40164"} +{"label":"Anna Kyriakou","version":21,"id":"65893","lastModified":"1301901725000","name":"Anna Kyriakou","type":"Person","_key":"40165"} +{"label":"Takis Emmanuel","version":23,"id":"65896","lastModified":"1301901999000","name":"Takis Emmanuel","type":"Person","_key":"40166"} +{"label":"Eleni Anousaki","version":21,"id":"65894","lastModified":"1301901876000","name":"Eleni Anousaki","type":"Person","_key":"40167"} +{"label":"Giorgos Foundas","version":21,"id":"65897","lastModified":"1301901876000","name":"Giorgos Foundas","type":"Person","_key":"40168"} +{"label":"Pia Lindstr\u00f6m","version":21,"id":"65898","lastModified":"1301901876000","name":"Pia Lindstr\u00f6m","type":"Person","_key":"40169"} +{"label":"John Carpenter's Vampires: Los Muertos","description":"Tough-as-nails vampire hunter Derek Bliss is on the hunt for \"suckers\" in the heart of Mexico when he receives a new assignment from a mysterious client. Thrown together with a group of slayers, including sexy Zooey, who may or may not be one of the undead. Derek and company are up against a growing number of fast-moving, bloodthirsty vampires and their elusive and powerful leader.","id":"10605","runtime":93,"imdbId":"tt0272147","trailer":"http:\/\/www.youtube.com\/watch?v=dkQSCxC7xC0","version":72,"lastModified":"1301903585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4bc92f43017a3c57fe0133ea\/john-carpenter-s-vampires-los-muertos-mid.jpg","genre":"Horror","title":"John Carpenter's Vampires: Los Muertos","releaseDate":1032825600000,"language":"en","type":"Movie","_key":"40170"} +{"label":"Cristi\u00e1n de la Fuente","version":23,"id":"66143","lastModified":"1301901725000","name":"Cristi\u00e1n de la Fuente","type":"Person","_key":"40171"} +{"label":"Antonio Mu\u00f1iz","version":19,"id":"66144","lastModified":"1301901876000","name":"Antonio Mu\u00f1iz","type":"Person","_key":"40172"} +{"label":"Darius McCrary","version":20,"id":"66145","lastModified":"1301902141000","name":"Darius McCrary","type":"Person","_key":"40173"} +{"label":"Anil\u00fa Pardo","version":19,"id":"66146","lastModified":"1301902085000","name":"Anil\u00fa Pardo","type":"Person","_key":"40174"} +{"label":"Arly Jover","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54a\/4d17c4eb7b9aa1148600354a\/arly-jover-profile.jpg","version":41,"id":"66147","lastModified":"1301901241000","name":"Arly Jover","type":"Person","_key":"40175"} +{"label":"Javier Grajeda","version":19,"id":"66148","lastModified":"1301902085000","name":"Javier Grajeda","type":"Person","_key":"40176"} +{"label":"Muriel Fouilland","version":19,"id":"66149","lastModified":"1301902085000","name":"Muriel Fouilland","type":"Person","_key":"40177"} +{"label":"The Philadelphia Experiment","description":"Based on an \"actual event\" that took place in 1943. About a US Navy Destroyer Escort that disappeared from the Philadelphia Naval Shipyard, and sent two men 40 years into the future to 1984.","id":"10606","runtime":102,"imdbId":"tt0087910","version":169,"lastModified":"1301905043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f8\/4bc92f44017a3c57fe0133f8\/the-philadelphia-experiment-mid.jpg","genre":"Drama","title":"The Philadelphia Experiment","releaseDate":460339200000,"language":"en","type":"Movie","_key":"40178"} +{"label":"Don't Be a Menace to South Central While Drinking Your Juice in the Hood","description":"When Ashtray (Shawn Wayans) moves to South Central L.A. to live with his father (who appears to be the same age he is) and grandmother (who likes to talk tough and smoke reefer), he falls in with his gang-banging cousin Loc Dog (Marlon Wayans), who along with the requisite pistols and Uzi carries a thermo-nuclear warhead for self-defense. Will Ashtray keep living the straight life or will he join ","id":"10607","runtime":89,"imdbId":"tt0116126","version":148,"lastModified":"1301901438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b8\/4cbfad445e73d677840010b8\/don-t-be-a-menace-to-south-central-while-drinking-your-juice-in-the-hood-mid.jpg","genre":"Comedy","title":"Don't Be a Menace to South Central While Drinking Your Juice in the Hood","releaseDate":821404800000,"language":"en","type":"Movie","_key":"40179"} +{"label":"Tracey Cherelle Jones","version":20,"id":"66131","lastModified":"1301901515000","name":"Tracey Cherelle Jones","type":"Person","_key":"40180"} +{"label":"Vivian Smallwood","version":19,"id":"66132","lastModified":"1301901536000","name":"Vivian Smallwood","type":"Person","_key":"40181"} +{"label":"Paris Barclay","version":19,"id":"45649","lastModified":"1301901381000","name":"Paris Barclay","type":"Person","_key":"40182"} +{"label":"Bob Roberts","description":"Mock documentary about an upstart candidate for the U.S. Senate written and directed by actor Tim Robbins. Bob Roberts is a folksinger with a difference: He offers tunes that protest welfare chiselers, liberal whining, and the like. As the filmmakers follow his campaign, Robbins gives needle-sharp insight into the way candidates manipulate the media.","id":"10608","runtime":102,"imdbId":"tt0103850","version":119,"lastModified":"1301902476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/417\/4bc92f47017a3c57fe013417\/bob-roberts-mid.jpg","genre":"Comedy","title":"Bob Roberts","releaseDate":715564800000,"language":"en","type":"Movie","_key":"40183"} +{"label":"The Life and Death of Peter Sellers","description":"The professional and personal life of actor and comedian Peter Sellers was a turbulent one. His early movie fame was based primarily on his comic characterizations, often of bumbling and foreign-accented persons, characters which he embodied. As his movie fame rose, he began to lose his own personal identity to his movie characters, leading to self-doubt of himself as a person.","id":"10609","runtime":122,"imdbId":"tt0352520","version":129,"lastModified":"1301904201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/425\/4bc92f4c017a3c57fe013425\/the-life-and-death-of-peter-sellers-mid.jpg","genre":"Drama","title":"The Life and Death of Peter Sellers","releaseDate":1085097600000,"language":"en","type":"Movie","_key":"40184"} +{"label":"The Medallion","description":"A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.","id":"10610","runtime":88,"imdbId":"tt0288045","trailer":"http:\/\/www.youtube.com\/watch?v=0KBLX3D7wX0","version":176,"lastModified":"1301906835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42e\/4bc92f4c017a3c57fe01342e\/the-medallion-mid.jpg","genre":"Action","title":"The Medallion","releaseDate":1060905600000,"language":"en","type":"Movie","_key":"40185"} +{"label":"Barbershop","description":"A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.","id":"10611","runtime":102,"imdbId":"tt0303714","version":173,"lastModified":"1301903391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/096\/4c8acded5e73d6068c000096\/barbershop-mid.jpg","genre":"Comedy","title":"Barbershop","releaseDate":1028678400000,"language":"en","type":"Movie","_key":"40186"} +{"label":"The Englishman Who Went Up a Hill But Came Down a Mountain","description":"When an English cartographer must tell a Welsh village that their mountain is only a hill, the offended community sets out to change that.","id":"10612","runtime":92,"imdbId":"tt0112966","version":127,"lastModified":"1301908021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/454\/4bc92f4f017a3c57fe013454\/the-englishman-who-went-up-a-hill-but-came-down-a-mountain-mid.jpg","genre":"Comedy","title":"The Englishman Who Went Up a Hill But Came Down a Mountain","releaseDate":788918400000,"language":"en","type":"Movie","_key":"40187"} +{"label":"Christopher Monger","version":29,"id":"65859","lastModified":"1301901571000","name":"Christopher Monger","type":"Person","_key":"40188"} +{"label":"The King Is Alive","description":"When a bus breaks down in the desert, the passengers decide to stage \"King Lear.\"","id":"10613","runtime":105,"imdbId":"tt0208911","version":112,"lastModified":"1301904075000","genre":"Drama","title":"The King Is Alive","releaseDate":989539200000,"language":"en","type":"Movie","_key":"40189"} +{"label":"Kristian Levring","version":25,"id":"65879","lastModified":"1301902085000","name":"Kristian Levring","type":"Person","_key":"40190"} +{"label":"Miles Anderson","version":19,"id":"65885","lastModified":"1301902260000","name":"Miles Anderson","type":"Person","_key":"40191"} +{"label":"Janet McTeer","version":32,"id":"47627","lastModified":"1302040011000","name":"Janet McTeer","type":"Person","_key":"40192"} +{"label":"Peter Khubeke","version":21,"id":"65888","lastModified":"1301902136000","name":"Peter Khubeke","type":"Person","_key":"40193"} +{"label":"Chris Walker","version":22,"id":"65889","lastModified":"1301901810000","name":"Chris Walker","type":"Person","_key":"40194"} +{"label":"Vusi Kunene","version":19,"id":"65887","lastModified":"1301902085000","name":"Vusi Kunene","type":"Person","_key":"40195"} +{"label":"Lia Williams","version":19,"id":"65890","lastModified":"1301902085000","name":"Lia Williams","type":"Person","_key":"40196"} +{"label":"My Best Friend's Birthday","description":"It's Mickey's Birthday and his girlfriend just left him, so that's when his friend Clarence shows him a birthday he'll never forget.","id":"10614","runtime":69,"imdbId":"tt0359715","version":86,"lastModified":"1301905276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/459\/4bc92f4f017a3c57fe013459\/my-best-friend-s-birthday-mid.jpg","genre":"Comedy","title":"My Best Friend's Birthday","releaseDate":536457600000,"language":"en","type":"Movie","_key":"40197"} +{"label":"Craig Hamann","version":22,"id":"65903","lastModified":"1301901809000","name":"Craig Hamann","type":"Person","_key":"40198"} +{"label":"Al Harrell","version":19,"id":"65906","lastModified":"1301901876000","name":"Al Harrell","type":"Person","_key":"40199"} +{"label":"Crystal Shaw","version":21,"id":"65905","lastModified":"1301901953000","name":"Crystal Shaw","type":"Person","_key":"40200"} +{"label":"Alan Sanborn","version":19,"id":"65909","lastModified":"1301901612000","name":"Alan Sanborn","type":"Person","_key":"40201"} +{"label":"Stevo Polyi","version":19,"id":"65908","lastModified":"1301901876000","name":"Stevo Polyi","type":"Person","_key":"40202"} +{"label":"Linda Kaye","version":19,"id":"65907","lastModified":"1301901876000","name":"Linda Kaye","type":"Person","_key":"40203"} +{"label":"Rowland Wafford","version":19,"id":"65911","lastModified":"1301901876000","name":"Rowland Wafford","type":"Person","_key":"40204"} +{"label":"Pootie Tang","description":"Pootie Tang, the musician\/actor\/folk hero of the ghetto, is chronicled from his early childhood to his battles against the evil Corporate America, who try to steal his magic belt and make him sell out by endorsing addictive products to his people. Pootie must learn to find himself and defeat the evil corporation for all the young black children of America, supatime.","id":"10615","runtime":81,"imdbId":"tt0258038","trailer":"http:\/\/www.youtube.com\/watch?v=1846","version":218,"lastModified":"1301902754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/462\/4bc92f52017a3c57fe013462\/pootie-tang-mid.jpg","genre":"Action","title":"Pootie Tang","releaseDate":993772800000,"language":"en","tagline":"Too cool for words.","type":"Movie","_key":"40205"} +{"label":"Lance Crouther","version":20,"id":"65919","lastModified":"1301901612000","name":"Lance Crouther","type":"Person","_key":"40206"} +{"label":"J.B. Smoove","version":20,"id":"65920","lastModified":"1301902085000","name":"J.B. Smoove","type":"Person","_key":"40207"} +{"label":"Mario Joyner","version":25,"id":"65921","lastModified":"1301901708000","name":"Mario Joyner","type":"Person","_key":"40208"} +{"label":"Cathy Trien","version":20,"id":"65922","lastModified":"1301902260000","name":"Cathy Trien","type":"Person","_key":"40209"} +{"label":"Dave Attell","version":22,"id":"65923","lastModified":"1301902136000","name":"Dave Attell","type":"Person","_key":"40210"} +{"label":"Rick Shapiro","version":20,"id":"65925","lastModified":"1301902260000","name":"Rick Shapiro","type":"Person","_key":"40211"} +{"label":"Christopher Wynkoop","version":22,"id":"65924","lastModified":"1301902260000","name":"Christopher Wynkoop","type":"Person","_key":"40212"} +{"label":"J.D. Williams","version":20,"id":"65928","lastModified":"1301902260000","name":"J.D. Williams","type":"Person","_key":"40213"} +{"label":"Qiana Drew","version":20,"id":"65926","lastModified":"1301902260000","name":"Qiana Drew","type":"Person","_key":"40214"} +{"label":"Lorria Richards","version":20,"id":"65927","lastModified":"1301902260000","name":"Lorria Richards","type":"Person","_key":"40215"} +{"label":"Cole Hawkins","version":20,"id":"65930","lastModified":"1301902260000","name":"Cole Hawkins","type":"Person","_key":"40216"} +{"label":"Tara Jeffers","version":20,"id":"65929","lastModified":"1301902260000","name":"Tara Jeffers","type":"Person","_key":"40217"} +{"label":"Contract Killer","description":"Financially troubled, a newbie hitman reluctantly takes the job of finding the plotted killer of a Japanese tycoon.","id":"10616","runtime":103,"imdbId":"tt0163818","version":134,"lastModified":"1301902719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46b\/4bc92f53017a3c57fe01346b\/sat-sau-ji-wong-mid.jpg","genre":"Action","title":"Contract Killer","releaseDate":887673600000,"language":"en","type":"Movie","_key":"40218"} +{"label":"Wei Tung","version":21,"id":"65931","lastModified":"1301901674000","name":"Wei Tung","type":"Person","_key":"40219"} +{"label":"Paul Rapovski","version":27,"id":"28242","lastModified":"1301901509000","name":"Paul Rapovski","type":"Person","_key":"40220"} +{"label":"Gigi Leung","version":29,"id":"65938","lastModified":"1301901494000","name":"Gigi Leung","type":"Person","_key":"40221"} +{"label":"Kwong Kim Yip","version":26,"id":"65940","lastModified":"1301901409000","name":"Kwong Kim Yip","type":"Person","_key":"40222"} +{"label":"Keiji Sato","version":21,"id":"65939","lastModified":"1301901668000","name":"Keiji Sato","type":"Person","_key":"40223"} +{"label":"Hideri Meiken","version":21,"id":"65941","lastModified":"1301901668000","name":"Hideri Meiken","type":"Person","_key":"40224"} +{"label":"Timmy Ho","version":21,"id":"65942","lastModified":"1301901674000","name":"Timmy Ho","type":"Person","_key":"40225"} +{"label":"Minori Ikarashi","version":21,"id":"65946","lastModified":"1301901667000","name":"Minori Ikarashi","type":"Person","_key":"40226"} +{"label":"Chi Hung Ng","version":25,"id":"65943","lastModified":"1301901667000","name":"Chi Hung Ng","type":"Person","_key":"40227"} +{"label":"Mika Kawanabe","version":21,"id":"65947","lastModified":"1301901667000","name":"Mika Kawanabe","type":"Person","_key":"40228"} +{"label":"John Ching","version":27,"id":"65944","lastModified":"1301901575000","name":"John Ching","type":"Person","_key":"40229"} +{"label":"Masako Enokimaru","version":21,"id":"65948","lastModified":"1301901667000","name":"Masako Enokimaru","type":"Person","_key":"40230"} +{"label":"Fukui Akihiro","version":19,"id":"65949","lastModified":"1301901667000","name":"Fukui Akihiro","type":"Person","_key":"40231"} +{"label":"Kalo Hiroshi","version":21,"id":"65951","lastModified":"1301901667000","name":"Kalo Hiroshi","type":"Person","_key":"40232"} +{"label":"Jude Poyer","version":21,"id":"65952","lastModified":"1301901667000","name":"Jude Poyer","type":"Person","_key":"40233"} +{"label":"Mitsuru Tokashiki","version":19,"id":"65950","lastModified":"1301901667000","name":"Mitsuru Tokashiki","type":"Person","_key":"40234"} +{"label":"Once Upon a Time in China","description":"Set in late 19th century Canton this martial arts film depicts the stance taken by the legendary martial arts hero Wong Fei-Hung (1847-1924) against foreign forces' (English, French and American) plundering of China.","id":"10617","runtime":134,"imdbId":"tt0103285","version":171,"lastModified":"1301902931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4bf85c78017a3c490c00008f\/wong-fei-hung-mid.jpg","genre":"Action","title":"Once Upon a Time in China","releaseDate":682214400000,"language":"en","type":"Movie","_key":"40235"} +{"label":"Kent Cheng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ab\/4bce1e58017a3c24cf0000ab\/kent-cheng-profile.jpg","version":31,"id":"65966","lastModified":"1301901586000","name":"Kent Cheng","type":"Person","_key":"40236"} +{"label":"Steve Tartalia","version":19,"id":"65965","lastModified":"1301901725000","name":"Steve Tartalia","type":"Person","_key":"40237"} +{"label":"Jonathan Isgar","version":19,"id":"65967","lastModified":"1301901725000","name":"Jonathan Isgar","type":"Person","_key":"40238"} +{"label":"Shi-Kwan Yen","version":24,"id":"65968","lastModified":"1301957818000","name":"Shi-Kwan Yen","type":"Person","_key":"40239"} +{"label":"Kien Shih","version":21,"id":"65971","lastModified":"1301901539000","name":"Kien Shih","type":"Person","_key":"40240"} +{"label":"Chi Yeung Wong","version":19,"id":"65972","lastModified":"1301901612000","name":"Chi Yeung Wong","type":"Person","_key":"40241"} +{"label":"Mark King","version":20,"id":"65969","lastModified":"1301901536000","name":"Mark King","type":"Person","_key":"40242"} +{"label":"Shun Lau","version":26,"id":"65974","lastModified":"1301901577000","name":"Shun Lau","type":"Person","_key":"40243"} +{"label":"Tsim Po Sham","version":20,"id":"65970","lastModified":"1301901642000","name":"Tsim Po Sham","type":"Person","_key":"40244"} +{"label":"Kam-Fai Yuen","version":19,"id":"65978","lastModified":"1301901536000","name":"Kam-Fai Yuen","type":"Person","_key":"40245"} +{"label":"Cheung-Yan Yuen","version":28,"id":"65975","lastModified":"1301901664000","name":"Cheung-Yan Yuen","type":"Person","_key":"40246"} +{"label":"Shun-Yee Yuen","version":25,"id":"65976","lastModified":"1301901560000","name":"Shun-Yee Yuen","type":"Person","_key":"40247"} +{"label":"Tony Yuen","version":19,"id":"65977","lastModified":"1301901536000","name":"Tony Yuen","type":"Person","_key":"40248"} +{"label":"Rosamund Kwan","version":35,"id":"65987","lastModified":"1301901581000","name":"Rosamund Kwan","type":"Person","_key":"40249"} +{"label":"Once Upon a Time in China II","description":"In the sequel to the Tsui Hark classic, Wong Fei-Hung faces The White Lotus society, a fanatical cult seeking to drive the Europeans out of China through violence, even attacking Chinese who follow Western ways. Wong must also defend Dr. Sun Yat Sen, a revolutionary, from the military.","id":"10618","runtime":113,"imdbId":"tt0105839","version":156,"lastModified":"1301902367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47d\/4bc92f54017a3c57fe01347d\/wong-fei-hung-ii-naam-yi-dong-ji-keung-mid.jpg","genre":"Action","title":"Once Upon a Time in China II","releaseDate":716601600000,"language":"en","type":"Movie","_key":"40250"} +{"label":"David Chiang","version":47,"id":"65986","lastModified":"1302031761000","name":"David Chiang","type":"Person","_key":"40251"} +{"label":"Shi-Kwan Yen","version":24,"id":"65989","lastModified":"1301902028000","name":"Shi-Kwan Yen","type":"Person","_key":"40252"} +{"label":"Ka-Kui Ho","version":25,"id":"65991","lastModified":"1301902333000","name":"Ka-Kui Ho","type":"Person","_key":"40253"} +{"label":"Siu Chung Mok","version":25,"id":"65992","lastModified":"1301901577000","name":"Siu Chung Mok","type":"Person","_key":"40254"} +{"label":"Paul Fonoroff","version":20,"id":"65990","lastModified":"1301902303000","name":"Paul Fonoroff","type":"Person","_key":"40255"} +{"label":"Once Upon a Time in China III","description":"Master Wong and his disciples enroll in the 'Dancing Lion Competition' to stop an assassination plot and to battle an arrogant, deceitful opponent.","id":"10619","runtime":105,"imdbId":"tt0108592","version":102,"lastModified":"1301903596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/486\/4bc92f57017a3c57fe013486\/wong-fei-hung-ji-saam-si-wong-jaang-ba-mid.jpg","genre":"Action","title":"Once Upon a Time in China III","releaseDate":725846400000,"language":"en","type":"Movie","_key":"40256"} +{"label":"John Wakefield","version":21,"id":"65996","lastModified":"1301901674000","name":"John Wakefield","type":"Person","_key":"40257"} +{"label":"Once Upon a Time in China & America","description":"So goes to the U.S. to open a martial arts school. Around this time, many Chinese people were sold off to U.S. railroad companies, and were brutally treated by the Americans under the harsh working conditions. Thus, the American workers' hatred towards the Chinese immigrants is high. As a result, So gets into trouble with the Americans and the mob, and calls Master Wong for help.","id":"10620","runtime":102,"imdbId":"tt0120530","version":146,"lastModified":"1301904014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a4\/4bd6d4d2017a3c21f20000a4\/wong-fei-hung-chi-sai-wik-hung-see-mid.jpg","genre":"Action","title":"Once Upon a Time in China & America","releaseDate":856569600000,"language":"en","type":"Movie","_key":"40258"} +{"label":"Chrysta Bell Zucht","version":19,"id":"66009","lastModified":"1301901725000","name":"Chrysta Bell Zucht","type":"Person","_key":"40259"} +{"label":"Kwok-Pong Chan","version":19,"id":"66010","lastModified":"1301901725000","name":"Kwok-Pong Chan","type":"Person","_key":"40260"} +{"label":"Joseph Sayah","version":19,"id":"66008","lastModified":"1301901725000","name":"Joseph Sayah","type":"Person","_key":"40261"} +{"label":"Johnny Koo","version":19,"id":"66013","lastModified":"1301901725000","name":"Johnny Koo","type":"Person","_key":"40262"} +{"label":"Gavin Perry","version":19,"id":"66015","lastModified":"1301901725000","name":"Gavin Perry","type":"Person","_key":"40263"} +{"label":"Ryon Marshall","version":19,"id":"66014","lastModified":"1301901725000","name":"Ryon Marshall","type":"Person","_key":"40264"} +{"label":"Daniel Luj\u00e1n","version":19,"id":"66019","lastModified":"1301901725000","name":"Daniel Luj\u00e1n","type":"Person","_key":"40265"} +{"label":"Chris Doughton","version":19,"id":"66016","lastModified":"1301901725000","name":"Chris Doughton","type":"Person","_key":"40266"} +{"label":"Jason De Hoyos","version":19,"id":"66018","lastModified":"1301901725000","name":"Jason De Hoyos","type":"Person","_key":"40267"} +{"label":"Freddy Joe","version":19,"id":"66017","lastModified":"1301901725000","name":"Freddy Joe","type":"Person","_key":"40268"} +{"label":"Steve Beasley","version":19,"id":"66020","lastModified":"1301901725000","name":"Steve Beasley","type":"Person","_key":"40269"} +{"label":"William Fung","version":23,"id":"66005","lastModified":"1301901714000","name":"William Fung","type":"Person","_key":"40270"} +{"label":"Lovers","description":"No overview found.","id":"10621","runtime":100,"imdbId":"tt0178721","version":460,"lastModified":"1301903818000","genre":"Drama","title":"Lovers","releaseDate":939340800000,"language":"en","type":"Movie","_key":"40271"} +{"label":"Mathias Benguigui","version":20,"id":"66028","lastModified":"1301902149000","name":"Mathias Benguigui","type":"Person","_key":"40272"} +{"label":"Sergej Trifunovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f3a\/4d63f3a55e73d60c68004f3a\/sergej-trifunovic-profile.jpg","version":51,"id":"66027","lastModified":"1301901315000","name":"Sergej Trifunovi\u0107","type":"Person","_key":"40273"} +{"label":"Graziella Delerm","version":20,"id":"66031","lastModified":"1301902364000","name":"Graziella Delerm","type":"Person","_key":"40274"} +{"label":"Irina Decermic","version":20,"id":"66030","lastModified":"1301902333000","name":"Irina Decermic","type":"Person","_key":"40275"} +{"label":"Patrick Catalifo","version":24,"id":"66029","lastModified":"1301902222000","name":"Patrick Catalifo","type":"Person","_key":"40276"} +{"label":"Mirza Halilovic","version":20,"id":"66033","lastModified":"1301902333000","name":"Mirza Halilovic","type":"Person","_key":"40277"} +{"label":"Mr. Nice Guy","description":"A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.","id":"10622","runtime":113,"imdbId":"tt0117786","version":109,"lastModified":"1301903438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4bc92f58017a3c57fe01348f\/mr-nice-guy-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Mr. Nice Guy","releaseDate":854582400000,"language":"en","tagline":"Fight first. Apologize later.","type":"Movie","_key":"40278"} +{"label":"Richard Norton","version":30,"id":"66055","lastModified":"1301901414000","name":"Richard Norton","type":"Person","_key":"40279"} +{"label":"Miki Lee","version":23,"id":"66056","lastModified":"1301901990000","name":"Miki Lee","type":"Person","_key":"40280"} +{"label":"Cradle 2 the Grave","description":"Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.","id":"10623","runtime":101,"imdbId":"tt0306685","version":198,"lastModified":"1301902373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f5\/4d4b6c9a7b9aa13b480069f5\/cradle-2-the-grave-mid.jpg","studio":"Warner Bros Pictures","genre":"Action","title":"Cradle 2 the Grave","releaseDate":1046390400000,"language":"en","tagline":"Mortal enemies make dangerous friends.","type":"Movie","_key":"40281"} +{"label":"ProSieben FunnyMovie: D\u00f6rte's Dancing","description":"No overview found.","id":"10624","runtime":80,"imdbId":"tt1170407","version":47,"lastModified":"1301904041000","genre":"Comedy","title":"ProSieben FunnyMovie: D\u00f6rte's Dancing","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"40282"} +{"label":"Andi Niessner","version":20,"id":"66058","lastModified":"1301902149000","name":"Andi Niessner","type":"Person","_key":"40283"} +{"label":"Sven Waasner","version":20,"id":"66061","lastModified":"1301901953000","name":"Sven Waasner","type":"Person","_key":"40284"} +{"label":"Tom Beck","version":20,"id":"66062","lastModified":"1301901953000","name":"Tom Beck","type":"Person","_key":"40285"} +{"label":"Eva-Maria Grein von Friedl","version":18,"id":"66063","lastModified":"1301902149000","name":"Eva-Maria Grein von Friedl","type":"Person","_key":"40286"} +{"label":"Mean Girls","description":"Raised in African bush country by her zoologist parents, Cady Heron thinks she knows about survival of the fittest. But the law of the jungle takes on a whole new meaning when the home-schooled 15-year-old enters public high school for the first time and encounters psychological warfare and unwritten social rules that teenage girls face today.","id":"10625","runtime":97,"imdbId":"tt0377092","trailer":"http:\/\/www.youtube.com\/watch?v=6YjSIvmNjT8","homepage":"http:\/\/www.meangirls.com\/","version":177,"lastModified":"1301901484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4df\/4bc92f61017a3c57fe0134df\/mean-girls-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Mean Girls","releaseDate":1082332800000,"language":"en","tagline":"Welcome to girl world.","type":"Movie","_key":"40287"} +{"label":"Amanda Seyfried","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fa\/4bfa3e8b017a3c702f0003fa\/amanda-seyfried-profile.jpg","biography":"In 1995, Seyfried began her acting career at age nine. In her hometown Allentown, Pennsylvania, she attended classes at Civic Theatre of Allentown. She signed with Image International Agency (IIA) in Allentown, before switching over to work at Bethlehem's Pro Model Agency and eventually signing with Wilhelmina Agency in New York City, New York. Seyfried's modeling career ended when she was seventeen. During her modeling career she appeared in print ads for clothing companies; including Limited T","version":59,"birthday":"502412400000","id":"71070","birthplace":"Allentown, Pennsylvania, USA ","lastModified":"1301904070000","name":"Amanda Seyfried","type":"Person","_key":"40288"} +{"label":"Der Hauptmann von K\u00f6penick","description":"No overview found.","id":"10626","runtime":93,"imdbId":"tt0049293","version":51,"lastModified":"1301906159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e8\/4bc92f62017a3c57fe0134e8\/der-hauptmann-von-kopenick-mid.jpg","genre":"Comedy","title":"Der Hauptmann von K\u00f6penick","releaseDate":-422150400000,"language":"en","type":"Movie","_key":"40289"} +{"label":"Martin Held","version":20,"id":"66067","lastModified":"1301901816000","name":"Martin Held","type":"Person","_key":"40290"} +{"label":"Taps","description":"Military cadets take extreme measures to insure the future of their academy when its existence is threatened by local condo developers.","id":"10627","runtime":126,"imdbId":"tt0083169","version":110,"lastModified":"1301904677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/464\/4c7acac75e73d613d8000464\/taps-mid.jpg","genre":"Action","title":"Taps","releaseDate":376704000000,"language":"en","type":"Movie","_key":"40291"} +{"label":"Kangaroo Jack","description":"Two childhood friends, a New York hairstylist and a wanna-be musician, get mixed-up with the mob and are forced to deliver $50,000 to Australia, but things go all wrong when the money is lost to a wild kangaroo.","id":"10628","runtime":89,"imdbId":"tt0257568","version":134,"lastModified":"1301903750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4cf14d825e73d61926000cea\/kangaroo-jack-mid.jpg","studio":"Castle Rock Entertainment","genre":"Action","title":"Kangaroo Jack","releaseDate":1042243200000,"language":"en","type":"Movie","_key":"40292"} +{"label":"Veronica Guerin","description":"Veronica Guerin is a 2003 film directed by Joel Schumacher and produced by Jerry Bruckheimer. The movie is based on the true story of Irish journalist Veronica Guerin.","id":"10629","runtime":98,"imdbId":"tt0312549","version":140,"lastModified":"1301905765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4bc92f69017a3c57fe013511\/veronica-guerin-mid.jpg","genre":"Drama","title":"Veronica Guerin","releaseDate":1057622400000,"language":"en","type":"Movie","_key":"40293"} +{"label":"F\u00fchrer Ex","description":"Ingo Hasselbach, whose parents were Communist Party members in East Germany during his childhood, has lived at both ends of the political seesaw. The question of how people reach a change of heart is a profound one; Hasselbach describes the external forces that led to his founding Germany's first neo-Nazi political party and the internal ones that led him away from it five years later.","id":"10630","runtime":105,"imdbId":"tt0329106","version":52,"lastModified":"1301903476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b30\/4d4734cb7b9aa15bb500bb30\/f-hrer-ex-mid.jpg","genre":"Drama","title":"F\u00fchrer Ex","releaseDate":1030752000000,"language":"en","type":"Movie","_key":"40294"} +{"label":"Jule Flierl","version":20,"id":"66090","lastModified":"1301901810000","name":"Jule Flierl","type":"Person","_key":"40295"} +{"label":"Winfried Bonengel","version":21,"id":"66091","lastModified":"1301901590000","name":"Winfried Bonengel","type":"Person","_key":"40296"} +{"label":"All of Me","description":"Just before stubborn millionaire Edwina Cutwater (Lily Tomlin) dies, she asks her uptight lawyer, Roger Cobb (Steve Martin), to amend her will so that her soul will pass to the young, vibrant Terry Hoskins (Victoria Tennant) -- but the spiritual transference goes awry. Edwina enters Roger's body instead, forcing him to battle Edwina for control of his own being. Director Carl Reiner's comedy nabbe","id":"10631","runtime":93,"imdbId":"tt0086873","version":128,"lastModified":"1301905546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc92f6a017a3c57fe01351a\/all-of-me-mid.jpg","genre":"Comedy","title":"All of Me","releaseDate":463363200000,"language":"en","type":"Movie","_key":"40297"} +{"label":"The Hunted","description":"In the Pacific Northwest wilderness, two hunters are tracked and viciously murdered by Aaron Hallum (Benicio del Toro). In the wilderness of British Columbia, L.T. Bonham (Tommy Lee Jones), a former special operations instructor, is approached and asked to apprehend Hallum, his former student who has \"gone renegade\" after suffering severe battle stress from his time in Kosovo.","id":"10632","runtime":94,"imdbId":"tt0269347","version":157,"lastModified":"1301902695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/523\/4bc92f6b017a3c57fe013523\/the-hunted-mid.jpg","genre":"Action","title":"The Hunted","releaseDate":1047340800000,"language":"en","type":"Movie","_key":"40298"} +{"label":"In the Heat of the Night","description":"An African American detective is asked to investigate a murder in a racist southern town","id":"10633","runtime":109,"imdbId":"tt0061811","trailer":"http:\/\/www.youtube.com\/watch?v=mQTvwkmwseU","version":242,"lastModified":"1301902845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/531\/4bc92f6c017a3c57fe013531\/in-the-heat-of-the-night-mid.jpg","genre":"Crime","title":"In the Heat of the Night","releaseDate":-76291200000,"language":"en","type":"Movie","_key":"40299"} +{"label":"Friday","description":"Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do. Encounters with neighbors and other friends over the course of the day and night, and their ensuing antics, make up the rest of the movie.","id":"10634","runtime":91,"imdbId":"tt0113118","version":277,"lastModified":"1301975039000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4c584fa37b9aa151f6000381\/friday-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Friday","releaseDate":799027200000,"language":"en","tagline":"A lot can go down between thursday and saturday...","type":"Movie","_key":"40300"} +{"label":"DJ Pooh","version":35,"id":"65134","lastModified":"1301975038000","name":"DJ Pooh","type":"Person","_key":"40301"} +{"label":"Anthony Johnson","version":25,"id":"83101","lastModified":"1301975038000","name":"Anthony Johnson","type":"Person","_key":"40302"} +{"label":"Terri J. Vaughn","version":28,"id":"74613","lastModified":"1301975038000","name":"Terri J. Vaughn","type":"Person","_key":"40303"} +{"label":"Reynaldo Rey","version":19,"id":"97781","lastModified":"1301975038000","name":"Reynaldo Rey","type":"Person","_key":"40304"} +{"label":"Threesome","description":"One girl. Two guys. Three possibilities. Eddy and Stuart share two-thirds of a dormitory suite. Due to bureaucratic error, a woman named Alex is added to their room. At first, relations among the three are tense. Soon, however, Alex falls for Eddy, and Stuart lusts after Alex.","id":"10635","runtime":93,"imdbId":"tt0111418","version":110,"lastModified":"1301904638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55f\/4bc92f74017a3c57fe01355f\/threesome-mid.jpg","genre":"Comedy","title":"Threesome","releaseDate":765763200000,"language":"en","type":"Movie","_key":"40305"} +{"label":"Big Girls Don't Cry","description":"No overview found.","id":"10636","runtime":87,"imdbId":"tt0291213","version":83,"lastModified":"1301903872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3d\/4d50cae95e73d617c1003f3d\/gro-e-m-dchen-weinen-nicht-mid.jpg","genre":"Comedy","title":"Big Girls Don't Cry","releaseDate":1035417600000,"language":"en","type":"Movie","_key":"40306"} +{"label":"Josefine Domes","version":21,"id":"66220","lastModified":"1301902172000","name":"Josefine Domes","type":"Person","_key":"40307"} +{"label":"Remember the Titans","description":"The year is 1971, and the people of Alexandria, VA. are none too pleased when African American Herman Boone is given the nod to head a newly integrated football team. As the season progresses, however, their contentious attitudes begin to change.","id":"10637","runtime":119,"imdbId":"tt0210945","trailer":"http:\/\/www.youtube.com\/watch?v=7Itqiy2N6Uo","version":354,"lastModified":"1302005031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/401\/4d43a7cf7b9aa15bbf005401\/remember-the-titans-mid.jpg","studio":"Walt Disney Pictures","genre":"Drama","title":"Remember the Titans","releaseDate":970185600000,"language":"en","tagline":"Before they could win, they had to become one.","type":"Movie","_key":"40308"} +{"label":"Boaz Yakin","version":51,"id":"52358","lastModified":"1301901287000","name":"Boaz Yakin","type":"Person","_key":"40309"} +{"label":"Winnetou und Shatterhand im Tal der Toten","description":"No overview found.","id":"10638","runtime":89,"imdbId":"tt0063818","version":49,"lastModified":"1301904265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b3\/4caa5a855e73d643ef0006b3\/winnetou-und-shatterhand-im-tal-der-toten-mid.jpg","genre":"Western","title":"Winnetou und Shatterhand im Tal der Toten","releaseDate":-34214400000,"language":"en","type":"Movie","_key":"40310"} +{"label":"Clarke Reynolds","version":20,"id":"70151","lastModified":"1301902004000","name":"Clarke Reynolds","type":"Person","_key":"40311"} +{"label":"LiebesLuder","description":"No overview found.","id":"10639","runtime":91,"imdbId":"tt0206088","version":41,"lastModified":"1301906731000","genre":"Comedy","title":"LiebesLuder","releaseDate":973123200000,"language":"en","type":"Movie","_key":"40312"} +{"label":"Futureworld","description":"Two years after the Westworld tragedy in the Delos amusement park, the corporate owners have reopened the park following over $1 billion in safety and other improvements. For publicity purposes, reporters Chuck Browning (Fonda) and Tracy Ballard (Danner) are invited to review the park. Just prior to arriving at the park, however, Browning is given a clue by a dying man that something is amiss.","id":"10640","runtime":104,"imdbId":"tt0074559","trailer":"http:\/\/www.youtube.com\/watch?v=JHkuw6GbXxQ","version":84,"lastModified":"1301903656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57e\/4bc92f79017a3c57fe01357e\/futureworld-mid.jpg","genre":"Action","title":"Futureworld","releaseDate":208742400000,"language":"en","type":"Movie","_key":"40313"} +{"label":"Autumn in New York","description":"Autumn in New York follows the sexual exploits of Will Keane (RICHARD GERE) - New York restaurateur, infamous verging-on-50 playboy, master of the no-commitment seduction - until he runs into an unexpected dead end when he meets Charlotte Fielding (WINONA RYDER). Charlotte is half Will's age and twice his match, a 21 year-old free spirit yearning to get out and taste the excitement of adult life.","id":"10641","runtime":103,"imdbId":"tt0174480","version":336,"lastModified":"1301902352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4bc92f7a017a3c57fe013588\/autumn-in-new-york-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"Autumn in New York","releaseDate":965952000000,"language":"en","type":"Movie","_key":"40314"} +{"label":"Loser","description":"On a university scholarship, a good natured student from the midwest gets a crash course in city life while dealing with three evil roommates. He befriends a virtually homeless college student whom he falls for, but she's dating a nasty professor.","id":"10642","runtime":98,"imdbId":"tt0217630","version":124,"lastModified":"1301904502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c2\/4cc966e37b9aa16b9c0001c2\/loser-mid.jpg","genre":"Comedy","title":"Loser","releaseDate":964051200000,"language":"en","tagline":"Dare to be different.","type":"Movie","_key":"40315"} +{"label":"Godzilla 2000","description":"No overview found.","id":"10643","runtime":107,"imdbId":"tt0188640","version":204,"lastModified":"1301907768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc92f7d017a3c57fe01359e\/godzilla-2000-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Godzilla 2000","releaseDate":944870400000,"language":"en","type":"Movie","_key":"40316"} +{"label":"Takehiro Murata","version":21,"id":"66152","lastModified":"1301901957000","name":"Takehiro Murata","type":"Person","_key":"40317"} +{"label":"Naomi Nishida","version":28,"id":"66153","lastModified":"1301901565000","name":"Naomi Nishida","type":"Person","_key":"40318"} +{"label":"Mayu Suzuki","version":20,"id":"66154","lastModified":"1301902182000","name":"Mayu Suzuki","type":"Person","_key":"40319"} +{"label":"Hiroshi Abe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fc\/4d0ab0ab7b9aa162c10007fc\/hiroshi-abe-profile.jpg","version":36,"id":"66155","lastModified":"1301901411000","name":"Hiroshi Abe","type":"Person","_key":"40320"} +{"label":"The Unbearable Lightness of Being","description":"Tomas (Daniel Day-Lewis) is a talented young Czech doctor who likes women. Lots of women. We follow his struggles and those of his fragile wife, Tereza (Juliette Binoche), as they sort out their personal lives during the dramatic Prague Spring of 1968.","id":"10644","runtime":171,"imdbId":"tt0096332","version":240,"lastModified":"1302039480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ab\/4bc92f7e017a3c57fe0135ab\/the-unbearable-lightness-of-being-1988-mid.jpg","genre":"Drama","title":"The Unbearable Lightness of Being","releaseDate":571017600000,"language":"en","type":"Movie","_key":"40321"} +{"label":"Das Sams","description":"No overview found.","id":"10645","runtime":100,"imdbId":"tt0265691","version":49,"lastModified":"1301905457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbe\/4c0e4c58017a3c29a6000dbe\/das-sams-mid.jpg","genre":"Comedy","title":"Das Sams","releaseDate":1003363200000,"language":"en","type":"Movie","_key":"40322"} +{"label":"Christine Urspruch","version":20,"id":"28201","lastModified":"1301901457000","name":"Christine Urspruch","type":"Person","_key":"40323"} +{"label":"Ben Verbong","version":24,"id":"66109","lastModified":"1301901445000","name":"Ben Verbong","type":"Person","_key":"40324"} +{"label":"Tomcats","description":"College buddies chip in and promise that the group's last unmarried man will collect a cash pot. Seven years later, the kitty is worth $500,000 -- money Michael needs to pay a gambling debt. Problem is, the only other single guy is a hopeless womanizer!","id":"10646","runtime":95,"imdbId":"tt0246989","version":430,"lastModified":"1301902933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b4\/4bc92f7e017a3c57fe0135b4\/tomcats-mid.jpg","genre":"Comedy","title":"Tomcats","releaseDate":985910400000,"language":"en","tagline":"The Last Man Standing Gets The Kitty.","type":"Movie","_key":"40325"} +{"label":"Gregory Poirier","version":43,"id":"50942","lastModified":"1301901691000","name":"Gregory Poirier","type":"Person","_key":"40326"} +{"label":"Pay it Forward","description":"Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.","id":"10647","runtime":122,"imdbId":"tt0223897","trailer":"http:\/\/www.youtube.com\/watch?v=_pCtXRP1edo","version":245,"lastModified":"1301902301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bd\/4bc92f7f017a3c57fe0135bd\/pay-it-forward-mid.jpg","genre":"Drama","title":"Pay it Forward","releaseDate":970444800000,"language":"en","tagline":"When someone does you a big favor, don't pay it back... Pay It Forward","type":"Movie","_key":"40327"} +{"label":"Magnum Force","description":"\"Dirty\" Harry Callahan is a San Francisco Police Inspector on the trail of a group of rogue cops who have taken justice into their own hands. When shady characters are murdered one after another in grisly fashion, only Dirty Harry can stop them.","id":"10648","runtime":124,"imdbId":"tt0070355","version":203,"lastModified":"1302038633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4d01345a7b9aa11bc400011e\/magnum-force-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"Magnum Force","releaseDate":125625600000,"language":"en","tagline":"A man's got to know his limitations.","type":"Movie","_key":"40328"} +{"label":"The Enforcer","description":"Dirty Harry Callahan returns again, this time saddled with a rookie female partner. Together, they must stop a terrorist group consisting of angry Vietnam veterans.","id":"10649","runtime":96,"imdbId":"tt0074483","trailer":"http:\/\/www.youtube.com\/watch?v=3395","version":175,"lastModified":"1301906836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51e\/4cf6bec05e73d6299a00151e\/the-enforcer-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"The Enforcer","releaseDate":220060800000,"language":"en","tagline":"The dirtiest Harry of them all.","type":"Movie","_key":"40329"} +{"label":"Tyne Daly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/404\/4c8905087b9aa1545a000404\/tyne-daly-profile.jpg","biography":"An \u200bAmerican stage and screen actress, widely known for her work as Detective Lacey in the television series Cagney & Lacey.","version":24,"birthday":"-752979600000","id":"66221","birthplace":"Madison, Wisconsin","lastModified":"1301901945000","name":"Tyne Daly","type":"Person","_key":"40330"} +{"label":"James Fargo","version":25,"id":"66222","lastModified":"1301902382000","name":"James Fargo","type":"Person","_key":"40331"} +{"label":"Sudden Impact","description":"When a young rape victim takes justice into her own hands and becomes a serial killer, it's up to Dirty Harry Callahan, on suspension from the SFPD, to bring her to justice. ","id":"10650","runtime":117,"imdbId":"tt0086383","trailer":"http:\/\/www.youtube.com\/watch?v=i64gYY3aEAc","version":205,"lastModified":"1301906249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37c\/4cf6c0c75e73d6299900137c\/sudden-impact-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"Sudden Impact","releaseDate":439776000000,"language":"en","tagline":"Two killers are at large. One of them is Dirty Harry.","type":"Movie","_key":"40332"} +{"label":"Sondra Locke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/047\/4cadcf8e7b9aa11fc2000047\/sondra-locke-profile.jpg","version":34,"id":"66223","lastModified":"1301901335000","name":"Sondra Locke","type":"Person","_key":"40333"} +{"label":"The Dead Pool","description":"Dirty Harry Callahan returns for his final film adventure. Together with his partner Al Quan, he must investigate the systematic murder of actors and musicians. By the time Harry learns that the murders are a part of a sick game to predict the deaths of celebrities before they happen, it may be too late...","id":"10651","runtime":91,"imdbId":"tt0094963","trailer":"http:\/\/www.youtube.com\/watch?v=zkhbVjiPTv0","version":245,"lastModified":"1301906196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/628\/4bc92f8c017a3c57fe013628\/the-dead-pool-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Dead Pool","releaseDate":584755200000,"language":"en","tagline":"Dirty Harry Just Learned A New Game.","type":"Movie","_key":"40334"} +{"label":"Evan C. Kim","version":21,"id":"66225","lastModified":"1301901725000","name":"Evan C. Kim","type":"Person","_key":"40335"} +{"label":"Buddy Van Horn","version":24,"id":"66226","lastModified":"1301901781000","name":"Buddy Van Horn","type":"Person","_key":"40336"} +{"label":"Hamburger Hill","description":"The horrors -- and futility -- of the Vietnam War come brutally to life through the eyes of 14 American soldiers as they attempt to capture a heavily fortified hill under the Vietcong's control in director John Irvin's cinema verit\u00e9 drama. Depicting one of the conflict's bloodiest battles and based on a true story, the film stars Don Cheadle, Dylan McDermott, Steven Weber and Courtney B. Vance in a searing turn as a black medic.","id":"10652","runtime":112,"imdbId":"tt0093137","version":349,"lastModified":"1301906836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/631\/4bc92f8d017a3c57fe013631\/hamburger-hill-mid.jpg","genre":"Action","title":"Hamburger Hill","releaseDate":556675200000,"language":"en","type":"Movie","_key":"40337"} +{"label":"Michael Boatman","version":22,"id":"66101","lastModified":"1301902341000","name":"Michael Boatman","type":"Person","_key":"40338"} +{"label":"The Seven Year Itch","description":"A voluptuous woman (Marilyn Monroe) moves in above a man while his wife and child are away on summer vacation.","id":"10653","runtime":105,"imdbId":"tt0048605","trailer":"http:\/\/www.youtube.com\/watch?v=fJgC549mpRk","version":265,"lastModified":"1301902482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/643\/4bc92f8e017a3c57fe013643\/the-seven-year-itch-mid.jpg","genre":"Comedy","title":"The Seven Year Itch","releaseDate":-460339200000,"language":"en","type":"Movie","_key":"40339"} +{"label":"Sonny Tufts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/738\/4be2c3c2017a3c35b5000738\/sonny-tufts-profile.jpg","version":25,"id":"66075","lastModified":"1301902367000","name":"Sonny Tufts","type":"Person","_key":"40340"} +{"label":"Hair","description":"Claude leaves the family ranch in Oklahoma for New York where he is rapidly indoctrinated into the youth subculture and subsequently drafted.","id":"10654","runtime":121,"imdbId":"tt0079261","trailer":"http:\/\/www.youtube.com\/watch?v=mCJ28pQgAyU","version":208,"lastModified":"1301908026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ed\/4c7aa7b57b9aa176c00001ed\/hair-mid.jpg","genre":"Comedy","title":"Hair","releaseDate":290217600000,"language":"en","type":"Movie","_key":"40341"} +{"label":"Annie Golden","version":24,"id":"66094","lastModified":"1301901998000","name":"Annie Golden","type":"Person","_key":"40342"} +{"label":"Gettysburg","description":"Summer 1863. The Confederacy pushes north into Pennsylvania. Union divisions converge to face them. The two great armies clash at Gettysburg, site of a theology school. For three days, through such legendary actions as Little Round Top and Pickett's Charge, the fate of \"one nation, indivisible\" hangs in the balance.","id":"10655","runtime":254,"imdbId":"tt0107007","version":239,"lastModified":"1301902635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/655\/4bc92f8f017a3c57fe013655\/gettysburg-mid.jpg","genre":"Action","title":"Gettysburg","releaseDate":750038400000,"language":"en","type":"Movie","_key":"40343"} +{"label":"Ronald F. Maxwell","version":26,"id":"66088","lastModified":"1301902169000","name":"Ronald F. Maxwell","type":"Person","_key":"40344"} +{"label":"Subway","description":"Fred, a raffish safe blower, takes refuge in the Paris Metro after being chased by the henchmen of a shady businessman from whom he has just stolen some documents. While hiding out in the back rooms and conduits of the Metro, Fred encounters a subterranean society of eccentric characters and petty criminals. Despite being pursued by the henchmen, Fred finds the time to flirt with Helena, blow a safe, rob a train, evade the hapless Metro police and start a rock band","id":"10656","runtime":104,"imdbId":"tt0090095","version":116,"lastModified":"1301903150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65a\/4bc92f90017a3c57fe01365a\/subway-mid.jpg","genre":"Action","title":"Subway","releaseDate":500083200000,"language":"en","type":"Movie","_key":"40345"} +{"label":"Needful Things","description":"The devil in disguise comes to a quiet, peaceful town and opens a store called Needful Things. The store has an item for everyone in town. All the devil asks for in return is a few dirty pranks. Little do they know, that they've sold their souls, and the pranks escalate to murder.","id":"10657","runtime":120,"imdbId":"tt0107665","version":151,"lastModified":"1302046295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74b\/4d28cdff7b9aa134cf00274b\/needful-things-mid.jpg","genre":"Action","title":"Needful Things","releaseDate":746409600000,"language":"en","type":"Movie","_key":"40346"} +{"label":"Fraser Clarke Heston","version":24,"id":"66076","lastModified":"1301902138000","name":"Fraser Clarke Heston","type":"Person","_key":"40347"} +{"label":"Howard the Duck","description":"A scientific experiment unknowingly brings extraterrestrial life forms to the Earth through a laser beam. First is the cigar smoking drake Howard from the duck's planet. A few kids try to keep him from the greedy scientists and help him back to his planet. But then a much less friendly being arrives through the beam...","id":"10658","runtime":110,"imdbId":"tt0091225","version":226,"lastModified":"1301902753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/679\/4bc92f95017a3c57fe013679\/howard-the-duck-mid.jpg","genre":"Comedy","title":"Howard the Duck","releaseDate":523238400000,"language":"en","tagline":"You will believe that a duck can talk.","type":"Movie","_key":"40348"} +{"label":"Willard Huyck","version":32,"id":"686","lastModified":"1299492941000","name":"Willard Huyck","type":"Person","_key":"40349"} +{"label":"Siegfried","description":"The tale of Siegfried, a fearless dragon slayer who wins the heart of Celtic beauty Kriemhild. ","id":"10659","runtime":89,"imdbId":"tt0429095","version":66,"lastModified":"1301903600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/688\/4bc92f97017a3c57fe013688\/siegfried-mid.jpg","genre":"Comedy","title":"Siegfried","releaseDate":1122508800000,"language":"en","type":"Movie","_key":"40350"} +{"label":"Volker B\u00fcdts","version":20,"id":"66068","lastModified":"1301902003000","name":"Volker B\u00fcdts","type":"Person","_key":"40351"} +{"label":"It Could Happen to You","description":"Charlie Lang has no other ambition in life than being a good new yorker cop and a nice guy. Muriel, his wife is a hairdresser. Charlie plays the lottery. One day, in a cafeteria, Charlie offers as a tip to a lovely waitress, Yvonne, to share his winnings if the lottery numbers come out. When he learns he has won $ 4 million, he intends to keep his promise; Muriel disagrees.","id":"10660","runtime":101,"imdbId":"tt0110167","trailer":"http:\/\/www.youtube.com\/watch?v=cEvsrvQ2RD8","version":150,"lastModified":"1301903902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/695\/4bc92f98017a3c57fe013695\/it-could-happen-to-you-mid.jpg","genre":"Comedy","title":"It Could Happen to You","releaseDate":775440000000,"language":"en","type":"Movie","_key":"40352"} +{"label":"You Don't Mess With the Zohan","description":"An Israeli counterterrorism soldier with a secretly fabulous ambition to become a Manhattan hairstylist. Zohan's desire runs so deep that he'll do anything -- including faking his own death and going head-to-head with an Arab cab driver -- to make his dreams come true.","id":"10661","runtime":113,"imdbId":"tt0960144","trailer":"http:\/\/www.youtube.com\/watch?v=ucmnTmYpGhI","homepage":"http:\/\/www.youdontmesswiththezohan.com\/","version":386,"lastModified":"1301901502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e9\/4d50b5617b9aa13aaf00e9e9\/you-don-t-mess-with-the-zohan-mid.jpg","studio":"Happy Madison Productions","genre":"Comedy","title":"You Don't Mess With the Zohan","releaseDate":1212537600000,"language":"en","tagline":"Lather. Rinse. Save the world.","type":"Movie","_key":"40353"} +{"label":"Daoud Heidami","version":25,"id":"66069","lastModified":"1301902181000","name":"Daoud Heidami","type":"Person","_key":"40354"} +{"label":"Dave Matthews","version":44,"id":"66070","lastModified":"1301901242000","name":"Dave Matthews","type":"Person","_key":"40355"} +{"label":"Charlotte Rae","version":26,"id":"66071","lastModified":"1301902127000","name":"Charlotte Rae","type":"Person","_key":"40356"} +{"label":"Michael Buffer","version":26,"id":"66072","lastModified":"1301901636000","name":"Michael Buffer","type":"Person","_key":"40357"} +{"label":"Ido Mosseri","version":24,"id":"66073","lastModified":"1301901765000","name":"Ido Mosseri","type":"Person","_key":"40358"} +{"label":"The Waterboy","description":"Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.","id":"10663","runtime":90,"imdbId":"tt0120484","trailer":"http:\/\/www.youtube.com\/watch?v=YeCM7UTyr7M","version":304,"lastModified":"1301902923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d9\/4bc92fa5017a3c57fe0136d9\/the-waterboy-mid.jpg","genre":"Comedy","title":"The Waterboy","releaseDate":910310400000,"language":"en","tagline":"You can mess with him. But don't mess with his water.","type":"Movie","_key":"40359"} +{"label":"Jerry Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f44\/4c74093f7b9aa13ab8000f44\/jerry-reed-profile.jpg","version":41,"id":"67764","lastModified":"1301901254000","name":"Jerry Reed","type":"Person","_key":"40360"} +{"label":"Al Whiting","version":25,"id":"124016","lastModified":"1301902516000","name":"Al Whiting","type":"Person","_key":"40361"} +{"label":"Clint Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/53a\/4d95114f5e73d6225100253a\/clint-howard-profile.jpg","version":52,"id":"15661","lastModified":"1301901377000","name":"Clint Howard","type":"Person","_key":"40362"} +{"label":"[Rec] 2","description":"The action continues from [Rec], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.","id":"10664","runtime":85,"imdbId":"tt1245112","trailer":"http:\/\/www.youtube.com\/watch?v=XPNY-94UfG4","homepage":"http:\/\/www.rec2themovie.com\/","version":159,"lastModified":"1301902852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f6\/4bc92fa8017a3c57fe0136f6\/rec-2-mid.jpg","studio":"Filmax","genre":"Horror","title":"[Rec] 2","releaseDate":1254441600000,"language":"en","type":"Movie","_key":"40363"} +{"label":"Javier Botet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b1a\/4d27ace37b9aa134cf001b1a\/javier-botet-profile.jpg","version":21,"id":"111090","lastModified":"1301901526000","name":"Javier Botet","type":"Person","_key":"40364"} +{"label":"Claudia Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/194\/4c4bfc2e7b9aa12380000194\/claudia-font-profile.jpg","version":21,"id":"111091","lastModified":"1301902638000","name":"Claudia Silva","type":"Person","_key":"40365"} +{"label":"Alejandro Casaseca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b1f\/4d27ad3c7b9aa134cf001b1f\/alejandro-casaseca-profile.jpg","version":21,"id":"111092","lastModified":"1301902036000","name":"Alejandro Casaseca","type":"Person","_key":"40366"} +{"label":"The Strangers","description":"A young couple staying in an isolated vacation home are terrorized by three unknown assailants.","id":"10665","runtime":90,"imdbId":"tt0482606","trailer":"http:\/\/www.youtube.com\/watch?v=6HExkGuEjjA","version":348,"lastModified":"1301902336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19b\/4d96dea87b9aa1199700419b\/the-strangers-mid.jpg","studio":"Rogue Pictures","genre":"Thriller","title":"The Strangers","releaseDate":1212019200000,"language":"en","type":"Movie","_key":"40367"} +{"label":"Bryan Bertino","version":23,"id":"66074","lastModified":"1301901830000","name":"Bryan Bertino","type":"Person","_key":"40368"} +{"label":"Home","description":"We are living in exceptional times. Scientists tell us that we have 10 years to change the way we live, avert the depletion of natural resources and the catastrophic evolution of the Earth's climate. The stakes are high for us and our children. Everyone should take part in the effort, and HOME has been conceived to take a message of mobilization out to every human being.","id":"10666","runtime":120,"imdbId":"tt1014762","trailer":"http:\/\/www.youtube.com\/watch?v=1307","homepage":"http:\/\/www.home-2009.com","version":358,"lastModified":"1301872845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4bd41a16017a3c7fb000007f\/home-mid.jpg","studio":"Europa Corp.","genre":"Documentary","title":"Home","releaseDate":1244160000000,"language":"en","tagline":"A Stunning Visual Portrayal of Earth","type":"Movie","_key":"40369"} +{"label":"Yann Arthus-Bertrand","version":27,"id":"66150","lastModified":"1301901356000","name":"Yann Arthus-Bertrand","type":"Person","_key":"40370"} +{"label":"Jesus Christus Erl\u00f6ser","description":"No overview found.","id":"10667","runtime":84,"imdbId":"tt1183143","version":30,"lastModified":"1301906732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/738\/4bc92fb1017a3c57fe013738\/jesus-christus-erloser-mid.jpg","studio":"Klaus Kinski Productions","genre":"Documentary","title":"Jesus Christus Erl\u00f6ser","releaseDate":1202688000000,"language":"en","type":"Movie","_key":"40371"} +{"label":"Peter Geyer","version":20,"id":"67319","lastModified":"1301901993000","name":"Peter Geyer","type":"Person","_key":"40372"} +{"label":"Suicide Kings","description":"Suave gangster Charlie Barrett (Christopher Walken) meets four young men who have taken over his regular booth at a popular bistro. Charmed by the swaggering kids, he agrees to take a ride with them, but they give him a sedative and he awakens in a deserted mansion, taped to a chair with one of his fingers missing. One of his abductors, Avery (Henry Thomas), says that he has a sister who has been ","id":"10668","runtime":106,"imdbId":"tt0120241","version":178,"lastModified":"1301903744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/741\/4bc92fb1017a3c57fe013741\/suicide-kings-mid.jpg","genre":"Comedy","title":"Suicide Kings","releaseDate":873504000000,"language":"en","type":"Movie","_key":"40373"} +{"label":"Peter O'Fallon","version":22,"id":"41472","lastModified":"1301901536000","name":"Peter O'Fallon","type":"Person","_key":"40374"} +{"label":"Deliverance","description":"Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.","id":"10669","runtime":109,"imdbId":"tt0068473","trailer":"http:\/\/www.youtube.com\/watch?v=1106","version":130,"lastModified":"1301902334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/764\/4bc92fb6017a3c57fe013764\/deliverance-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Deliverance","releaseDate":81302400000,"language":"en","tagline":"Four men ride a wild river. A weekend turns into a nightmare.","type":"Movie","_key":"40375"} +{"label":"Ed Ramey","version":21,"id":"66178","lastModified":"1301901876000","name":"Ed Ramey","type":"Person","_key":"40376"} +{"label":"Rollercoaster","description":"The plot is about a guile young terrorist who is able to blackmail a series of companies by placing home-made radio controlled bombs within the central attraction of amusement parks; roller coasters. The young man played by Timothy Bottoms gives a hard time to the cops after they give him UV marked money. He then wants revenge and places a bomb in a roller coaster at the most important amusement park event of the year.","id":"10670","runtime":119,"imdbId":"tt0076636","trailer":"http:\/\/www.youtube.com\/watch?v=Y-hOSDYfmkI","version":118,"lastModified":"1301903536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bdeea92017a3c35bf0001ce\/rollercoaster-mid.jpg","genre":"Action","title":"Rollercoaster","releaseDate":234748800000,"language":"en","type":"Movie","_key":"40377"} +{"label":"James Goldstone","version":20,"id":"15630","lastModified":"1301901530000","name":"James Goldstone","type":"Person","_key":"40378"} +{"label":"Airport","description":"Melodrama about a bomber on board an airplane, an airport almost closed by snow, and various personal problems of the people involved.","id":"10671","runtime":137,"imdbId":"tt0065377","version":119,"lastModified":"1301902710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76e\/4bc92fb8017a3c57fe01376e\/airport-mid.jpg","genre":"Disaster","title":"Airport","releaseDate":5443200000,"language":"en","type":"Movie","_key":"40379"} +{"label":"Abw\u00e4rts","description":"No overview found.","id":"10672","runtime":90,"imdbId":"tt0086846","version":39,"lastModified":"1301905705000","genre":"Thriller","title":"Abw\u00e4rts","releaseDate":452476800000,"language":"en","type":"Movie","_key":"40380"} +{"label":"Ren\u00e9e Soutendijk","version":26,"id":"66188","lastModified":"1301902056000","name":"Ren\u00e9e Soutendijk","type":"Person","_key":"40381"} +{"label":"Wall Street","description":"A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.","id":"10673","runtime":125,"imdbId":"tt0094291","trailer":"http:\/\/www.youtube.com\/watch?v=FCctqbRrsBQ","version":379,"lastModified":"1301901461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b5\/4cde1a2d5e73d60e070000b5\/wall-street-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Crime","title":"Wall Street","releaseDate":566179200000,"language":"en","tagline":"Every dream has a price.","type":"Movie","_key":"40382"} +{"label":"Mulan","description":"A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.","id":"10674","runtime":88,"imdbId":"tt0120762","trailer":"http:\/\/www.youtube.com\/watch?v=1711","version":197,"lastModified":"1302062604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4bc92fc0017a3c57fe01379a\/mulan-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Adventure","title":"Mulan","releaseDate":897004800000,"language":"en","tagline":"This time, the princess saves the prince.","type":"Movie","_key":"40383"} +{"label":"Tony Bancroft","version":25,"id":"66190","lastModified":"1302062602000","name":"Tony Bancroft","type":"Person","_key":"40384"} +{"label":"Barry Cook","version":26,"id":"66191","lastModified":"1302062602000","name":"Barry Cook","type":"Person","_key":"40385"} +{"label":"Frantic","description":"Ford plays an American doctor whose wife suddenly vanishes in Paris. To find her, he navigates a puzzling web of language, locale, laissez-faire cops, triplicate-form filling bureaucrats and a defiant, mysterious waif who knows more than she tells.","id":"10675","runtime":115,"imdbId":"tt0095174","trailer":"http:\/\/www.youtube.com\/watch?v=2887","version":170,"lastModified":"1301902596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a3\/4bc92fc1017a3c57fe0137a3\/frantic-mid.jpg","genre":"Action","title":"Frantic","releaseDate":571968000000,"language":"en","type":"Movie","_key":"40386"} +{"label":"Djiby Soumare","version":22,"id":"66198","lastModified":"1301901612000","name":"Djiby Soumare","type":"Person","_key":"40387"} +{"label":"Halloween III: Season of the Witch","description":"Dr. Daniel Challis and Ellie Grimbridge stumble onto a gruesome murder scheme when Ellie's novelty-salesman father, Harry, is killed while in possession of a strange mask made by the Silver Shamrock mask company. The company's owner, Conal Cochran, wants to return Halloween to its darker roots using his masks -- and his unspeakable scheme would unleash death and destruction across the country.","id":"10676","runtime":96,"imdbId":"tt0085636","trailer":"http:\/\/www.youtube.com\/watch?v=ZXWSiVxS4hk","version":301,"lastModified":"1301908019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4c951c8a7b9aa10d5b00013f\/halloween-iii-season-of-the-witch-mid.jpg","genre":"Horror","title":"Halloween III: Season of the Witch","releaseDate":404092800000,"language":"en","tagline":"...and now the earth will run with blood again!","type":"Movie","_key":"40388"} +{"label":"Stacey Nelkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d0\/4cc9b8827b9aa16b9f0003d0\/stacey-nelkin-profile.jpg","version":23,"id":"66199","lastModified":"1301901536000","name":"Stacey Nelkin","type":"Person","_key":"40389"} +{"label":"Michael Currie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/394\/4cc9b95b7b9aa16b9d000394\/michael-currie-profile.jpg","version":22,"id":"66200","lastModified":"1301901855000","name":"Michael Currie","type":"Person","_key":"40390"} +{"label":"Ralph Strait","version":22,"id":"66201","lastModified":"1301901760000","name":"Ralph Strait","type":"Person","_key":"40391"} +{"label":"Jadeen Barbor","version":18,"id":"140337","lastModified":"1301902636000","name":"Jadeen Barbor","type":"Person","_key":"40392"} +{"label":"Brad Schacter","version":19,"id":"140338","lastModified":"1301902716000","name":"Brad Schacter","type":"Person","_key":"40393"} +{"label":"Garn Stephens","version":19,"id":"140339","lastModified":"1301902688000","name":"Garn Stephens","type":"Person","_key":"40394"} +{"label":"Jonathan Terry","version":23,"id":"97953","lastModified":"1301902505000","name":"Jonathan Terry","type":"Person","_key":"40395"} +{"label":"Al Berry","version":18,"id":"140340","lastModified":"1301902578000","name":"Al Berry","type":"Person","_key":"40396"} +{"label":"Wendy Wessberg","version":19,"id":"140341","lastModified":"1301902707000","name":"Wendy Wessberg","type":"Person","_key":"40397"} +{"label":"Essex Smith","version":18,"id":"140342","lastModified":"1301902634000","name":"Essex Smith","type":"Person","_key":"40398"} +{"label":"Maidie Norman","version":19,"id":"103087","lastModified":"1301902561000","name":"Maidie Norman","type":"Person","_key":"40399"} +{"label":"John MacBride","version":18,"id":"140343","lastModified":"1301902578000","name":"John MacBride","type":"Person","_key":"40400"} +{"label":"Dirty Dancing: Havana Nights","description":"This Sequel to Dirty Dancing stars a hot young cast and has a sizzling style and rhythm all of its own. In pre-revolution Cuba, Katey Miller (Romola Garai - Vanity Fair) is about to defy everyone`s expectations. Instead of a parent-approved suitor (Jonathan Jackson - Tuck Everlasting), Katey is drawn to the sexy Javier, a waiter who spends his nights dancing in Havana`s nightclubs. And as Katey secretly learns to dance with Javier, she learns the meanings of love, sensuality and independence. Al","id":"10677","runtime":86,"imdbId":"tt0338096","version":214,"lastModified":"1302042049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e6\/4c6413775e73d6345f0007e6\/dirty-dancing-havana-nights-mid.jpg","genre":"Drama","title":"Dirty Dancing: Havana Nights","releaseDate":1077840000000,"language":"en","type":"Movie","_key":"40401"} +{"label":"Guy Ferland","version":20,"id":"43468","lastModified":"1301902123000","name":"Guy Ferland","type":"Person","_key":"40402"} +{"label":"Bringing Down the House","description":"Straight-laced lawyer, Peter Sanderson (Steve Martin) meets and falls in love with online chat friend \"Lawyer-Girl\", Charlene Morton (Queen Latifah), only to discover she's a convicted bank robber. Charlene escapes from jail and comes looking for Peter to help clear her name.","id":"10678","runtime":105,"imdbId":"tt0305669","version":174,"lastModified":"1301903391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d9\/4bc92fc8017a3c57fe0137d9\/bringing-down-the-house-mid.jpg","genre":"Comedy","title":"Bringing Down the House","releaseDate":1046995200000,"language":"en","type":"Movie","_key":"40403"} +{"label":"Iron Sky","description":"No overview found.","id":"10679","runtime":0,"imdbId":"tt1034314","trailer":"http:\/\/www.youtube.com\/watch?v=579","homepage":"http:\/\/www.ironsky.net\/","version":458,"lastModified":"1301903242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71c\/4d08f2035e73d6745300071c\/iron-sky-mid.jpg","genre":"Science Fiction","title":"Iron Sky","language":"en","type":"Movie","_key":"40404"} +{"label":"Timo Vuorensola","version":22,"id":"66212","lastModified":"1301901420000","name":"Timo Vuorensola","type":"Person","_key":"40405"} +{"label":"D3: The mighty Ducks","description":"The Ducks are offered scholarships at Eden Hall Academy but struggle with their new coach's methods and come under pressure from the board to retain their scholarships before their big game against the Varsity team.","id":"10680","runtime":104,"imdbId":"tt0116000","version":169,"lastModified":"1302038759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1e\/4d4ca6d17b9aa13ab8007f1e\/d3-the-mighty-ducks-mid.jpg","genre":"Action","title":"D3: The mighty Ducks","releaseDate":844387200000,"language":"en","tagline":"No Fear. No Limits. No Brakes. Just Ducks.","type":"Movie","_key":"40406"} +{"label":"Vincent Larusso","version":18,"id":"148641","lastModified":"1301903083000","name":"Vincent Larusso","type":"Person","_key":"40407"} +{"label":"Matt Doherty","version":18,"id":"148637","lastModified":"1301903096000","name":"Matt Doherty","type":"Person","_key":"40408"} +{"label":"Garette Ratliff Henson","version":30,"id":"76239","lastModified":"1301902169000","name":"Garette Ratliff Henson","type":"Person","_key":"40409"} +{"label":"Christopher Orr","version":16,"id":"148654","lastModified":"1301903097000","name":"Christopher Orr","type":"Person","_key":"40410"} +{"label":"Aaron Lohr","version":16,"id":"148655","lastModified":"1301902678000","name":"Aaron Lohr","type":"Person","_key":"40411"} +{"label":"Wall\u00b7E","description":"WALL-E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, Wall-E thinks he's finally found a friend and stows away on the ship when it leaves.","id":"10681","runtime":104,"imdbId":"tt0910970","trailer":"http:\/\/www.youtube.com\/watch?v=8-_9n5DtKOc","homepage":"http:\/\/disney.go.com\/disneypictures\/wall-e\/","version":743,"lastModified":"1301900776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/178\/4caf269b7b9aa12138000178\/walle-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Wall\u00b7E","releaseDate":1214352000000,"language":"en","tagline":"An adventure beyond the ordinar-E.","type":"Movie","_key":"40412"} +{"label":"Ben Burtt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7cf\/4d273fa05e73d626b00017cf\/ben-burtt-profile.jpg","version":136,"birthday":"-677642400000","id":"670","birthplace":"New York, USA","lastModified":"1299951083000","name":"Ben Burtt","type":"Person","_key":"40413"} +{"label":"Elissa Knight","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/840\/4d273f4a5e73d626c4001840\/elissa-knight-profile.jpg","version":58,"id":"72754","lastModified":"1301904066000","name":"Elissa Knight","type":"Person","_key":"40414"} +{"label":"MacInTalk","version":43,"id":"72755","lastModified":"1301901077000","name":"MacInTalk","type":"Person","_key":"40415"} +{"label":"Happiness","description":"Three middle-class New Jersey sisters all have their problems with their families and sex lives.","id":"10683","runtime":134,"imdbId":"tt0147612","trailer":"http:\/\/www.youtube.com\/watch?v=FkQ_JxoWUP8","version":105,"lastModified":"1301904509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fa\/4bc93002017a3c57fe0138fa\/happiness-mid.jpg","genre":"Comedy","title":"Happiness","releaseDate":908496000000,"language":"en","type":"Movie","_key":"40416"} +{"label":"Todd Solondz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4c2a970d5e73d6399e00002e\/todd-solondz-profile.jpg","version":42,"id":"66605","lastModified":"1301902190000","name":"Todd Solondz","type":"Person","_key":"40417"} +{"label":"Courage Under Fire","description":"A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order then he begins to notice inconsistencies between the testimonies of the witnesses.... ","id":"10684","runtime":117,"imdbId":"tt0115956","trailer":"http:\/\/www.youtube.com\/watch?v=9ZQE49MjyYQ","version":165,"lastModified":"1301902034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/918\/4bc93006017a3c57fe013918\/courage-under-fire-mid.jpg","studio":"Fox 2000 Pictures","genre":"Action","title":"Courage Under Fire","releaseDate":837129600000,"language":"en","tagline":"A medal for honor. A search for justice. A battle for truth.","type":"Movie","_key":"40418"} +{"label":"The Watcher","description":"A detective tracking a serial killer gives up all hope of solving the crimes and moves to another city. After he's settled in the old acquaintance he makes himself known. The serial killer has resurrected and resumes sending him pictures of his next victim.","id":"10685","runtime":97,"imdbId":"tt0204626","version":147,"lastModified":"1301903103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/931\/4bc93007017a3c57fe013931\/the-watcher-mid.jpg","genre":"Mystery","title":"The Watcher","releaseDate":968371200000,"language":"en","type":"Movie","_key":"40419"} +{"label":"Joe Charbanic","version":20,"id":"66604","lastModified":"1301901725000","name":"Joe Charbanic","type":"Person","_key":"40420"} +{"label":"Samurai Fiction","description":"Three centuries ago, a precious sword has been stolen by Kazamatsuri -- the sword, which historic and symbolic value is priceless for the clan (Shogun Tokugawa donated it to clan 80 years before that, at the same time that he established them as the local rulers). Lord's counselor's young son Heishiro goes to retrieve the sword himself to protect the clan from the shame or possible demise. He is accompanied with two friends, Shintaro and Tadasuke, and followed by the ninjas of the clan. After Ka","id":"10686","runtime":111,"imdbId":"tt0170544","version":97,"lastModified":"1301906356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93b\/4bc9300a017a3c57fe01393b\/sf-episode-one-mid.jpg","genre":"Action","title":"Samurai Fiction","releaseDate":909446400000,"language":"en","type":"Movie","_key":"40421"} +{"label":"Morio Kazama","version":21,"id":"66589","lastModified":"1301902194000","name":"Morio Kazama","type":"Person","_key":"40422"} +{"label":"Tomoyasu Hotei","version":22,"id":"66591","lastModified":"1301901953000","name":"Tomoyasu Hotei","type":"Person","_key":"40423"} +{"label":"Tamaki Ogawa","version":20,"id":"66592","lastModified":"1301902177000","name":"Tamaki Ogawa","type":"Person","_key":"40424"} +{"label":"Mitsuru Fukikoshi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66d\/4d90ad357b9aa1675e00366d\/mitsuru-fukikoshi-profile.jpg","version":31,"id":"120918","lastModified":"1301902209000","name":"Mitsuru Fukikoshi","type":"Person","_key":"40425"} +{"label":"Hiroyuki Nakano","version":20,"id":"66601","lastModified":"1301901564000","name":"Hiroyuki Nakano","type":"Person","_key":"40426"} +{"label":"Tigerland","description":"A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971","id":"10687","runtime":100,"imdbId":"tt0170691","version":172,"lastModified":"1301902845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/944\/4bc9300b017a3c57fe013944\/tigerland-mid.jpg","genre":"Drama","title":"Tigerland","releaseDate":961027200000,"language":"en","type":"Movie","_key":"40427"} +{"label":"Hamlet","description":"Modern day adaptation of Shakespeare's immortal story about Hamlet's plight to avenge his father's murder in New York City.","id":"10688","runtime":112,"imdbId":"tt0171359","version":275,"lastModified":"1301902514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/951\/4bc9300b017a3c57fe013951\/hamlet-mid.jpg","genre":"Drama","title":"Hamlet","releaseDate":958089600000,"language":"en","type":"Movie","_key":"40428"} +{"label":"Jetzt oder nie - Zeit ist Geld!","description":"No overview found.","id":"10689","runtime":90,"imdbId":"tt0236343","version":41,"lastModified":"1301903725000","genre":"Comedy","title":"Jetzt oder nie - Zeit ist Geld!","releaseDate":976752000000,"language":"en","type":"Movie","_key":"40429"} +{"label":"Vladimir Weigl","version":20,"id":"66596","lastModified":"1301902386000","name":"Vladimir Weigl","type":"Person","_key":"40430"} +{"label":"Space Truckers","description":"John Canyon is one of the last independent space transport entrepreneurs. Rough times force him to carry suspicious cargo to Earth without questions being asked. During the flight the cargo turns out to be multitude of unstoppable and deadly killer robots.","id":"10690","runtime":95,"imdbId":"tt0120199","trailer":"http:\/\/www.youtube.com\/watch?v=2UqSsvCynYc","version":174,"lastModified":"1302039190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95a\/4bc9300c017a3c57fe01395a\/space-truckers-mid.jpg","studio":"Goldcrest Films International","genre":"Animation","title":"Space Truckers","releaseDate":853200000000,"language":"en","type":"Movie","_key":"40431"} +{"label":"Crazy\/Beautiful","description":"Nicole is a 17-year-old daughter of a wealthy congressman who breaks all the rules. Carlos is a grade A student with big dreams who endures a two-hour bus ride every morning to attend high school When fate brings them together, it is crazy\/beautiful in this sexy, fun and energetic story of first love. But will Nilole's wild life destroy Carols' dreams?","id":"10691","runtime":99,"imdbId":"tt0250224","version":138,"lastModified":"1301903046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/963\/4bc9300d017a3c57fe013963\/crazy-beautiful-mid.jpg","genre":"Drama","title":"Crazy\/Beautiful","releaseDate":993772800000,"language":"en","type":"Movie","_key":"40432"} +{"label":"Herman Osorio","version":19,"id":"67070","lastModified":"1301901725000","name":"Herman Osorio","type":"Person","_key":"40433"} +{"label":"Henry: Portrait of a Serial Killer","description":"Based on the true life serial killer, Henry Lee Lucas.","id":"10692","runtime":83,"imdbId":"tt0099763","version":163,"lastModified":"1301904899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96c\/4bc9300d017a3c57fe01396c\/henry-portrait-of-a-serial-killer-mid.jpg","genre":"Horror","title":"Henry: Portrait of a Serial Killer","releaseDate":527904000000,"language":"en","type":"Movie","_key":"40434"} +{"label":"Mary Demas","version":20,"id":"67161","lastModified":"1301901943000","name":"Mary Demas","type":"Person","_key":"40435"} +{"label":"Anne Bartoletti","version":20,"id":"67162","lastModified":"1301901943000","name":"Anne Bartoletti","type":"Person","_key":"40436"} +{"label":"Elizabeth Kaden","version":20,"id":"67172","lastModified":"1301902318000","name":"Elizabeth Kaden","type":"Person","_key":"40437"} +{"label":"Peter Pan","description":"Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.","id":"10693","runtime":74,"imdbId":"tt0046183","version":145,"lastModified":"1302062361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/975\/4bc9300e017a3c57fe013975\/peter-pan-mid.jpg","studio":"Walt Disney Productions","genre":"Adventure","title":"Peter Pan","releaseDate":-527904000000,"language":"en","tagline":"It will live in your heart forever!","type":"Movie","_key":"40438"} +{"label":"Kathryn Beaumont","version":39,"id":"67228","lastModified":"1302062361000","name":"Kathryn Beaumont","type":"Person","_key":"40439"} +{"label":"Bill Thompson","version":28,"id":"67230","lastModified":"1302062361000","name":"Bill Thompson","type":"Person","_key":"40440"} +{"label":"The Chase","description":"Jack Hammond is sentenced to life in prison, but manages to escape. To get away from the police he takes a girl as hostage and drives off in her car. The girl happens to be the only daughter of one of the richest men in the state. In a while the car chase is being broadcast live on every TV-channel.","id":"10694","runtime":89,"imdbId":"tt0109402","trailer":"http:\/\/www.youtube.com\/watch?v=Pq4kgbWDLQc","version":149,"lastModified":"1301902463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99c\/4bc93015017a3c57fe01399c\/the-chase-mid.jpg","studio":"Capitol Films","genre":"Action","title":"The Chase","releaseDate":762739200000,"language":"en","type":"Movie","_key":"40441"} +{"label":"Der Golem","description":"No overview found.","id":"10695","runtime":60,"imdbId":"tt0004026","version":56,"lastModified":"1301907401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc93016017a3c57fe0139a6\/der-golem-mid.jpg","genre":"Horror","title":"Der Golem","releaseDate":-1734480000000,"language":"en","type":"Movie","_key":"40442"} +{"label":"Rudolf Bl\u00fcmner","version":20,"id":"67254","lastModified":"1301902201000","name":"Rudolf Bl\u00fcmner","type":"Person","_key":"40443"} +{"label":"Glitter","description":"No overview found.","id":"10696","runtime":104,"imdbId":"tt0118589","version":131,"lastModified":"1301902420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9af\/4bc93016017a3c57fe0139af\/glitter-mid.jpg","genre":"Drama","title":"Glitter","releaseDate":1001030400000,"language":"en","type":"Movie","_key":"40444"} +{"label":"Mariah Carey","version":49,"id":"66586","lastModified":"1301901218000","name":"Mariah Carey","type":"Person","_key":"40445"} +{"label":"Max Beesley","version":25,"id":"66587","lastModified":"1301902025000","name":"Max Beesley","type":"Person","_key":"40446"} +{"label":"Le Go\u00fbt des autres","description":"No overview found.","id":"10697","runtime":112,"imdbId":"tt0216787","version":50,"lastModified":"1301905113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b4\/4bc93016017a3c57fe0139b4\/le-gout-des-autres-mid.jpg","genre":"Comedy","title":"Le Go\u00fbt des autres","releaseDate":951868800000,"language":"en","type":"Movie","_key":"40447"} +{"label":"G\u00e9rard Lanvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4af\/4bfac0a8017a3c70370004af\/gerard-lanvin-profile.jpg","version":71,"id":"70165","lastModified":"1302061548000","name":"G\u00e9rard Lanvin","type":"Person","_key":"40448"} +{"label":"Wie Feuer und Flamme","description":"No overview found.","id":"10698","runtime":94,"imdbId":"tt0246853","version":53,"lastModified":"1301904041000","genre":"Drama","title":"Wie Feuer und Flamme","releaseDate":992476800000,"language":"en","type":"Movie","_key":"40449"} +{"label":"Tim Sanders","version":23,"id":"15292","lastModified":"1301901798000","name":"Tim Sanders","type":"Person","_key":"40450"} +{"label":"Carmen Simone Birk","version":20,"id":"66562","lastModified":"1301902369000","name":"Carmen Simone Birk","type":"Person","_key":"40451"} +{"label":"Connie Walter","version":20,"id":"45966","lastModified":"1301902149000","name":"Connie Walter","type":"Person","_key":"40452"} +{"label":"Hero","description":"Bernie Laplante is having a rough time. He's divorced, his ex-wife hates him and has custody of their son, the cops are setting a trap for him, then to top it all, he loses a shoe whilst rescuing passengers of a crashed jet. Being a thief who is down on his luck, Bernie takes advantage of the crash, but then someone else claims credit for the rescue.","id":"10699","runtime":117,"imdbId":"tt0104412","version":174,"lastModified":"1301902346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b9\/4bde4c31017a3c35bf0000b9\/hero-mid.jpg","genre":"Comedy","title":"Hero","releaseDate":717984000000,"language":"en","tagline":"We're all heroes if you catch us at the right moment. Even Bernie Laplante.","type":"Movie","_key":"40453"} +{"label":"Darwin's Nightmare","description":"A documentary on the effect of fishing the Nile perch in Tanzania's Lake Victoria. The predatory fish, which has wiped out the native species, is sold in European supermarkets, while starving Tanzanian families have to make do with the leftovers. ","id":"10700","runtime":107,"imdbId":"tt0424024","version":170,"lastModified":"1301904075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4bc93018017a3c57fe0139c9\/darwin-s-nightmare-mid.jpg","genre":"Documentary","title":"Darwin's Nightmare","releaseDate":1093996800000,"language":"en","type":"Movie","_key":"40454"} +{"label":"Elizabeth 'Eliza' Maganga Nsese","version":20,"id":"66232","lastModified":"1301901876000","name":"Elizabeth 'Eliza' Maganga Nsese","type":"Person","_key":"40455"} +{"label":"Raphael Tukiko Wagara","version":20,"id":"66234","lastModified":"1301901725000","name":"Raphael Tukiko Wagara","type":"Person","_key":"40456"} +{"label":"Dimond Remtulia","version":20,"id":"66236","lastModified":"1301901876000","name":"Dimond Remtulia","type":"Person","_key":"40457"} +{"label":"Marcus Nyoni","version":20,"id":"66238","lastModified":"1301901536000","name":"Marcus Nyoni","type":"Person","_key":"40458"} +{"label":"Ascension","description":"No overview found.","id":"10702","runtime":106,"imdbId":"tt0297745","trailer":"http:\/\/www.youtube.com\/watch?v=580","version":79,"lastModified":"1301908019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b08\/4d305be17b9aa140ee000b08\/ascension-mid.jpg","genre":"Drama","title":"Ascension","releaseDate":1033430400000,"language":"en","type":"Movie","_key":"40459"} +{"label":"Karim Hussain","version":23,"id":"66228","lastModified":"1301902149000","name":"Karim Hussain","type":"Person","_key":"40460"} +{"label":"Barbara Ulrich","version":20,"id":"66231","lastModified":"1301902364000","name":"Barbara Ulrich","type":"Person","_key":"40461"} +{"label":"Ilona Elkin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ae\/4d90e8107b9aa167610039ae\/ilona-elkin-profile.jpg","version":23,"id":"66233","lastModified":"1301902333000","name":"Ilona Elkin","type":"Person","_key":"40462"} +{"label":"Gregoire Dunlevy","version":20,"id":"66607","lastModified":"1301902364000","name":"Gregoire Dunlevy","type":"Person","_key":"40463"} +{"label":"Laurent-Christophe De Ruelle","version":18,"id":"66608","lastModified":"1301902387000","name":"Laurent-Christophe De Ruelle","type":"Person","_key":"40464"} +{"label":"Seven Swords","description":"Seven warriors come together to protect a village from a diabolical General.","id":"10703","runtime":153,"imdbId":"tt0429078","version":127,"lastModified":"1301907319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62f\/4be1c9b3017a3c35c100062f\/chat-gim-mid.jpg","studio":"Film Workshop","genre":"Action","title":"Seven Swords","releaseDate":1122249600000,"language":"en","type":"Movie","_key":"40465"} +{"label":"Leon Lai Ming","version":45,"id":"66761","lastModified":"1301901224000","name":"Leon Lai Ming","type":"Person","_key":"40466"} +{"label":"Charlie Yeung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b5\/4d32e0497b9aa17b370062b5\/charlie-yeung-profile.jpg","version":37,"id":"66762","lastModified":"1301901234000","name":"Charlie Yeung","type":"Person","_key":"40467"} +{"label":"Liwu Dai","version":23,"id":"66763","lastModified":"1301901516000","name":"Liwu Dai","type":"Person","_key":"40468"} +{"label":"Universal Soldier II: Brothers in Arms","description":"No overview found.","id":"10704","runtime":92,"imdbId":"tt0186654","version":78,"lastModified":"1301903851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9eb\/4bc9301d017a3c57fe0139eb\/universal-soldier-ii-brothers-in-arms-mid.jpg","genre":"Action","title":"Universal Soldier II: Brothers in Arms","releaseDate":906854400000,"language":"en","type":"Movie","_key":"40469"} +{"label":"Matt Battaglia","version":19,"id":"15282","lastModified":"1301901813000","name":"Matt Battaglia","type":"Person","_key":"40470"} +{"label":"Eric Bryson","version":21,"id":"66239","lastModified":"1301901900000","name":"Eric Bryson","type":"Person","_key":"40471"} +{"label":"Jeff Woolnough","version":28,"id":"66240","lastModified":"1302055997000","name":"Jeff Woolnough","type":"Person","_key":"40472"} +{"label":"Henry V","description":"Gritty adaption of William Shakespeare's play about the English King's bloody conquest of France.","id":"10705","runtime":137,"imdbId":"tt0097499","trailer":"http:\/\/www.youtube.com\/watch?v=K_xaHuelVj8","version":340,"lastModified":"1301904288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/861\/4cb879097b9aa138d9000861\/henry-v-mid.jpg","genre":"Drama","title":"Henry V","releaseDate":623635200000,"language":"en","type":"Movie","_key":"40473"} +{"label":"James Larkin","version":25,"id":"66250","lastModified":"1301901993000","name":"James Larkin","type":"Person","_key":"40474"} +{"label":"Simon Shepherd","version":28,"id":"47493","lastModified":"1301902028000","name":"Simon Shepherd","type":"Person","_key":"40475"} +{"label":"James Simmons","version":21,"id":"138412","lastModified":"1301903065000","name":"James Simmons","type":"Person","_key":"40476"} +{"label":"Charles Kay","version":20,"id":"138413","lastModified":"1301902914000","name":"Charles Kay","type":"Person","_key":"40477"} +{"label":"Fabian Cartwright","version":21,"id":"138414","lastModified":"1301903052000","name":"Fabian Cartwright","type":"Person","_key":"40478"} +{"label":"Stephen Simms","version":24,"id":"76218","lastModified":"1301901867000","name":"Stephen Simms","type":"Person","_key":"40479"} +{"label":"Edward Jewesbury","version":21,"id":"138415","lastModified":"1301903001000","name":"Edward Jewesbury","type":"Person","_key":"40480"} +{"label":"Michael Williams","version":22,"id":"138411","lastModified":"1301902419000","name":"Michael Williams","type":"Person","_key":"40481"} +{"label":"Mimic 2","description":"When a cockroach-spread plague threatened to decimate the child population of New York City in the original Mimic, biologist Susan Tyler and her research associates developed a species of \"Judas\" bugs and introduced them into the environment, where they were to \"mimic\" the diseased roaches and infiltrate their grubby habitats. The plan worked until the bugs evolved to mimic their next prey.....humans! Just when they were all thought to be dead, the giant cockroaches are back, and this time they'","id":"10706","runtime":82,"imdbId":"tt0239641","version":191,"lastModified":"1301903450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4bc9301e017a3c57fe0139f9\/mimic-2-mid.jpg","genre":"Horror","title":"Mimic 2","releaseDate":995328000000,"language":"en","type":"Movie","_key":"40482"} +{"label":"Gaven E. Lucas","version":19,"id":"66253","lastModified":"1301902260000","name":"Gaven E. Lucas","type":"Person","_key":"40483"} +{"label":"Jean de Segonzac","version":28,"id":"36185","lastModified":"1301901975000","name":"Jean de Segonzac","type":"Person","_key":"40484"} +{"label":"The Squid and the Whale","description":"Based on the true childhood experiences of Noah Baumbach and his brother, The Squid and the Whale tells the touching story of two young boys dealing with their parents divorce in Brooklyn in the 1980's.","id":"10707","runtime":81,"imdbId":"tt0367089","trailer":"http:\/\/www.youtube.com\/watch?v=JRkK5n2mkvg","version":164,"lastModified":"1301903730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a02\/4bc9301f017a3c57fe013a02\/the-squid-and-the-whale-mid.jpg","studio":"Samuel Goldwyn","genre":"Comedy","title":"The Squid and the Whale","releaseDate":1106438400000,"language":"en","tagline":"Joint custody blows.","type":"Movie","_key":"40485"} +{"label":"Owen Kline","version":22,"id":"66257","lastModified":"1301901933000","name":"Owen Kline","type":"Person","_key":"40486"} +{"label":"Noah Baumbach","version":46,"id":"5656","lastModified":"1301901273000","name":"Noah Baumbach","type":"Person","_key":"40487"} +{"label":"Daddy Day Care","description":"Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center. ","id":"10708","runtime":92,"imdbId":"tt0317303","version":180,"lastModified":"1301902183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0b\/4bc9301f017a3c57fe013a0b\/daddy-day-care-mid.jpg","genre":"Comedy","title":"Daddy Day Care","releaseDate":1052006400000,"language":"en","type":"Movie","_key":"40488"} +{"label":"The Mighty Ducks","description":"No overview found.","id":"10709","version":97,"lastModified":"1301905231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a10\/4bc93023017a3c57fe013a10\/the-mighty-ducks-mid.jpg","genre":"Comedy","title":"The Mighty Ducks","language":"en","type":"Movie","_key":"40489"} +{"label":"Envy","description":"A man becomes increasingly jealous of his friend's newfound success.","id":"10710","runtime":99,"imdbId":"tt0326856","version":118,"lastModified":"1301903503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a19\/4bc93023017a3c57fe013a19\/envy-mid.jpg","genre":"Comedy","title":"Envy","releaseDate":1083283200000,"language":"en","tagline":"Success didn\u2019t go to his head, it went to his neighbor.","type":"Movie","_key":"40490"} +{"label":"French Connection II","description":"\"Popeye\" Doyle travels to Marsailles to find Alain Charnier, the drug smuggler that eluded him in New York.","id":"10711","runtime":119,"imdbId":"tt0073018","version":168,"lastModified":"1302038629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a22\/4bc93024017a3c57fe013a22\/french-connection-ii-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"French Connection II","releaseDate":169603200000,"language":"en","type":"Movie","_key":"40491"} +{"label":"Far from Heaven","description":"No overview found.","id":"10712","runtime":107,"imdbId":"tt0297884","version":243,"lastModified":"1301903282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2b\/4bc93025017a3c57fe013a2b\/far-from-heaven-mid.jpg","genre":"Drama","title":"Far from Heaven","releaseDate":1030838400000,"language":"en","type":"Movie","_key":"40492"} +{"label":"Universal Soldier","description":"No overview found.","id":"10713","version":206,"lastModified":"1302026335000","genre":"Action","title":"Universal Soldier","language":"en","type":"Movie","_key":"40493"} +{"label":"The Jungle Book","description":"No overview found.","id":"10714","runtime":111,"imdbId":"tt0110213","trailer":"http:\/\/www.youtube.com\/watch?v=uBAku3Cwsgk","version":93,"lastModified":"1301902953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a34\/4bc93025017a3c57fe013a34\/the-jungle-book-mid.jpg","genre":"Adventure","title":"The Jungle Book","releaseDate":788140800000,"language":"en","type":"Movie","_key":"40494"} +{"label":"Looney Tunes: Back in Action","description":"Bugs Bunny and Daffy Duck are up to their feuding ways again. Tired of playing second fiddle to Bugs, Daffy has decided to leave the Studio for good. He is aided by Warner Bros.' humor impaired Vice President of Comedy, Kate Houghton, who releases him from his contract and instructs WB security guard\/aspiring stunt man DJ Drake to capture and \"escort\" Daffy off the studio lot.","id":"10715","runtime":90,"imdbId":"tt0318155","version":169,"lastModified":"1301902309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ef\/4d681a857b9aa136330002ef\/looney-tunes-back-in-action-mid.jpg","genre":"Animation","title":"Looney Tunes: Back in Action","releaseDate":1063065600000,"language":"en","tagline":"Real life has never been so animated.","type":"Movie","_key":"40495"} +{"label":"Die Klasse von '99 - Schule war gestern, Leben ist jetzt","description":"No overview found.","id":"10716","runtime":94,"imdbId":"tt0374478","version":43,"lastModified":"1301905682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/296\/4c991dd87b9aa12337000296\/die-klasse-von-99-schule-war-gestern-leben-ist-jetzt-mid.jpg","genre":"Comedy","title":"Die Klasse von '99 - Schule war gestern, Leben ist jetzt","releaseDate":1067472000000,"language":"en","type":"Movie","_key":"40496"} +{"label":"Tim Sander","version":20,"id":"66827","lastModified":"1301902188000","name":"Tim Sander","type":"Person","_key":"40497"} +{"label":"Der Alte Affe Angst","description":"No overview found.","id":"10717","runtime":92,"imdbId":"tt0338714","version":40,"lastModified":"1301904041000","genre":"Drama","title":"Der Alte Affe Angst","releaseDate":1045180800000,"language":"en","type":"Movie","_key":"40498"} +{"label":"Ralf Bauer","version":22,"id":"66826","lastModified":"1301902149000","name":"Ralf Bauer","type":"Person","_key":"40499"} +{"label":"Torque","description":"Biker Cary Ford is framed by an old rival and biker gang leader for the murder of another gang member who happens to be the brother of Trey (Ice Cube), leader of the most feared biker gang in the country. Ford is now on the run trying to clear his name from the murder with Trey and his gang looking for his blood.","id":"10718","runtime":84,"imdbId":"tt0329691","version":160,"lastModified":"1301902270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5b\/4bc9302d017a3c57fe013a5b\/torque-mid.jpg","genre":"Action","title":"Torque","releaseDate":1074038400000,"language":"en","type":"Movie","_key":"40500"} +{"label":"Joseph Kahn","version":20,"id":"66823","lastModified":"1301901876000","name":"Joseph Kahn","type":"Person","_key":"40501"} +{"label":"Elf","description":"When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.","id":"10719","runtime":97,"imdbId":"tt0319343","trailer":"http:\/\/www.youtube.com\/watch?v=pvtmsqyOkhc","version":219,"lastModified":"1301901824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f8\/4cfd6e077b9aa16b2f0010f8\/elf-mid.jpg","genre":"Comedy","title":"Elf","releaseDate":1065657600000,"language":"en","tagline":"This holiday, discover your inner elf. ","type":"Movie","_key":"40502"} +{"label":"Kyle Gass","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14f\/4ceec85f5e73d654f900014f\/kyle-gass-profile.jpg","version":29,"id":"22297","lastModified":"1301901236000","name":"Kyle Gass","type":"Person","_key":"40503"} +{"label":"Down with Love","description":"Aaaah... it's New York City in 1962, and love is blooming between a journalist and a feminist advice author, who's falling head over heels despite her beau's playboy lifestyle.","id":"10720","runtime":101,"imdbId":"tt0309530","version":158,"lastModified":"1302039534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a83\/4bc93030017a3c57fe013a83\/down-with-love-mid.jpg","studio":"Fox 2000 Pictures","genre":"Action","title":"Down with Love","releaseDate":1052438400000,"language":"en","type":"Movie","_key":"40504"} +{"label":"Mimic","description":"No overview found.","id":"10721","version":99,"lastModified":"1301905195000","genre":"Family","title":"Mimic","language":"en","type":"Movie","_key":"40505"} +{"label":"El d\u00eda de la bestia","description":"No overview found.","id":"10722","runtime":103,"imdbId":"tt0112922","version":49,"lastModified":"1301905705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a88\/4bc93030017a3c57fe013a88\/el-dia-de-la-bestia-mid.jpg","genre":"Comedy","title":"El d\u00eda de la bestia","releaseDate":811123200000,"language":"en","type":"Movie","_key":"40506"} +{"label":"Armando De Razza","version":23,"id":"66815","lastModified":"1301902149000","name":"Armando De Razza","type":"Person","_key":"40507"} +{"label":"Terele P\u00e1vez","version":21,"id":"66816","lastModified":"1301902149000","name":"Terele P\u00e1vez","type":"Person","_key":"40508"} +{"label":"Bulletproof","description":"An undercover police officer named Rock Keats befriends a drug dealer and car thief named Archie Moses in a bid to catch the villainous drug lord Frank Coltan. But the only problem is that Keats is a cop, his real name is Jack Carter, and he is working undercover with the LAPD to bust Moses and Colton at a sting operation the LAPD has set up.","id":"10723","runtime":84,"imdbId":"tt0115783","version":131,"lastModified":"1301902966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49b\/4ce9ea9b5e73d6258b00049b\/bulletproof-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Bulletproof","releaseDate":841968000000,"language":"en","tagline":"Tough cop. Hostile witness.","type":"Movie","_key":"40509"} +{"label":"Jeep Swenson","version":20,"id":"66813","lastModified":"1301902085000","name":"Jeep Swenson","type":"Person","_key":"40510"} +{"label":"Firefox","description":"The Soviets have developed a revolutionary new jet fighter, called \"Firefox\". Naturally, the British are worried that the jet will be used as a first-strike weapon, as rumours say that the jet is indetectable on radar. They send ex-Vietnam War pilot Mitchell Gant on a covert mission into the Soviet Union to steal Firefox.","id":"10724","runtime":136,"imdbId":"tt0083943","trailer":"http:\/\/www.youtube.com\/watch?v=QTLThdgE0Cw","version":176,"lastModified":"1301904510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f91\/4d75f0b77b9aa17084000f91\/firefox-mid.jpg","genre":"Action","title":"Firefox","releaseDate":392860800000,"language":"en","type":"Movie","_key":"40511"} +{"label":"David Huffman","version":28,"id":"66811","lastModified":"1301901945000","name":"David Huffman","type":"Person","_key":"40512"} +{"label":"Wolfen","description":"No overview found.","id":"10725","runtime":115,"imdbId":"tt0083336","version":105,"lastModified":"1301902723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa3\/4bc93036017a3c57fe013aa3\/wolfen-mid.jpg","genre":"Drama","title":"Wolfen","releaseDate":364780800000,"language":"en","type":"Movie","_key":"40513"} +{"label":"American Psycho 2: All American Girl","description":"Patrick Bateman, the yuppie serial killer of AMERICAN PSYCHO may have met his timely end at the conclusion of his own sordid story, but one would-be victim managed to cheat death and escape him. As a result, Rachel Newman has since developed an unhealthy obsession with serial killers--leading her to become one herself. Will anyone catch onto her secret before she can kill again? Morgan J. Freeman directs this continuation of the story that began with Bret Easton Ellis's controversial novel.","id":"10726","runtime":88,"imdbId":"tt0283877","version":105,"lastModified":"1301902468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab0\/4bc93037017a3c57fe013ab0\/american-psycho-2-all-american-girl-mid.jpg","genre":"Horror","title":"American Psycho 2: All American Girl","releaseDate":1019433600000,"language":"en","type":"Movie","_key":"40514"} +{"label":"Charles Officer","version":17,"id":"101260","lastModified":"1301902894000","name":"Charles Officer","type":"Person","_key":"40515"} +{"label":"Jenna Perry","version":17,"id":"101261","lastModified":"1301902894000","name":"Jenna Perry","type":"Person","_key":"40516"} +{"label":"Michael Kremko","version":18,"id":"101262","lastModified":"1302066661000","name":"Michael Kremko","type":"Person","_key":"40517"} +{"label":"Kay Hawtrey","version":25,"id":"83024","lastModified":"1301902317000","name":"Kay Hawtrey","type":"Person","_key":"40518"} +{"label":"Morgan J. Freeman","version":24,"id":"66800","lastModified":"1301901442000","name":"Morgan J. Freeman","type":"Person","_key":"40519"} +{"label":"Darkness Falls","description":"A vengeful spirit has taken the form of the Tooth Fairy to exact vengeance on the town that lynched her 150 years earlier. Her only opposition is the only child, now grown up, who has survived her before","id":"10727","runtime":86,"imdbId":"tt0282209","version":158,"lastModified":"1301902574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac6\/4cf5b8f37b9aa15146000ac6\/darkness-falls-mid.jpg","studio":"Revolution Studios","genre":"Horror","title":"Darkness Falls","releaseDate":1043366400000,"language":"en","tagline":"Evil rises.","type":"Movie","_key":"40520"} +{"label":"Chaney Kley","version":21,"id":"66744","lastModified":"1301901536000","name":"Chaney Kley","type":"Person","_key":"40521"} +{"label":"Emma Caulfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0af\/4c3c66f87b9aa122510000af\/emma-caulfield-profile.jpg","version":25,"id":"66745","lastModified":"1301901585000","name":"Emma Caulfield","type":"Person","_key":"40522"} +{"label":"Grant Piro","version":23,"id":"66746","lastModified":"1301901612000","name":"Grant Piro","type":"Person","_key":"40523"} +{"label":"Jonathan Liebesman","version":37,"id":"66739","lastModified":"1301901547000","name":"Jonathan Liebesman","type":"Person","_key":"40524"} +{"label":"Faust - Eine deutsche Volkssage","description":"God and Satan war over earth; to settle things, they wager on the soul of Faust, a learned and prayerful alchemist.","id":"10728","runtime":85,"imdbId":"tt0016847","version":176,"lastModified":"1301905330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac6\/4bc93038017a3c57fe013ac6\/faust-eine-deutsche-volkssage-mid.jpg","genre":"Drama","title":"Faust - Eine deutsche Volkssage","releaseDate":-1363824000000,"language":"en","type":"Movie","_key":"40525"} +{"label":"Quick Change","description":"Three thieves successfully rob a New York City bank, but making the escape from the city proves to be almost impossible.","id":"10729","runtime":89,"imdbId":"tt0100449","version":124,"lastModified":"1301902330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acf\/4bc9303c017a3c57fe013acf\/quick-change-mid.jpg","genre":"Action","title":"Quick Change","releaseDate":645235200000,"language":"en","type":"Movie","_key":"40526"} +{"label":"Richard Joseph Paul","version":20,"id":"66785","lastModified":"1301901381000","name":"Richard Joseph Paul","type":"Person","_key":"40527"} +{"label":"Howard Franklin","version":32,"id":"2357","lastModified":"1299492356000","name":"Howard Franklin","type":"Person","_key":"40528"} +{"label":"King Kong","description":"In this remake of the 1933 classic about the giant ape, an oil company expedition disturbs the peace of Kong and brings him back to New York to exploit him. Even though a woman somewhat tames Kong, he finally breaks loose and terrorizes the city, and as the military attempt to stop him, he falls to his death from the top of the World Trade Center. ","id":"10730","runtime":134,"imdbId":"tt0074751","trailer":"http:\/\/www.youtube.com\/watch?v=2642","version":125,"lastModified":"1301901998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ad\/4c2765b97b9aa1446e0002ad\/king-kong-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"King Kong","releaseDate":210988800000,"language":"en","type":"Movie","_key":"40529"} +{"label":"The Client","description":"A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.","id":"10731","runtime":119,"imdbId":"tt0109446","version":156,"lastModified":"1301902576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc93041017a3c57fe013af7\/the-client-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Client","releaseDate":774662400000,"language":"en","type":"Movie","_key":"40530"} +{"label":"La fille de d'Artagnan","description":"No overview found.","id":"10732","runtime":125,"imdbId":"tt0109798","version":81,"lastModified":"1301903476000","genre":"Action","title":"La fille de d'Artagnan","releaseDate":777686400000,"language":"en","type":"Movie","_key":"40531"} +{"label":"The Alamo","description":"Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio, Texas.","id":"10733","runtime":137,"imdbId":"tt0318974","version":166,"lastModified":"1301903281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf1\/4d8cf7ec5e73d653c8001cf1\/the-alamo-mid.jpg","genre":"Action","title":"The Alamo","releaseDate":1080345600000,"language":"en","type":"Movie","_key":"40532"} +{"label":"John Lee Hancock","version":59,"id":"54040","lastModified":"1301901438000","name":"John Lee Hancock","type":"Person","_key":"40533"} +{"label":"Escape From Alcatraz","description":"A dramatization of the one possibly successful escape from the notorious prison.","id":"10734","runtime":112,"imdbId":"tt0079116","version":221,"lastModified":"1301902617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1a\/4bc93047017a3c57fe013b1a\/escape-from-alcatraz-mid.jpg","genre":"Action","title":"Escape From Alcatraz","releaseDate":298857600000,"language":"en","type":"Movie","_key":"40534"} +{"label":"Blair Burrows","version":22,"id":"66298","lastModified":"1301902177000","name":"Blair Burrows","type":"Person","_key":"40535"} +{"label":"Bob Balhatchet","version":21,"id":"66299","lastModified":"1301902085000","name":"Bob Balhatchet","type":"Person","_key":"40536"} +{"label":"Bruce M. Fischer","version":24,"id":"66293","lastModified":"1301902085000","name":"Bruce M. Fischer","type":"Person","_key":"40537"} +{"label":"Matthew Locricchio","version":21,"id":"66300","lastModified":"1301902085000","name":"Matthew Locricchio","type":"Person","_key":"40538"} +{"label":"Jason Ronard","version":21,"id":"66304","lastModified":"1301902085000","name":"Jason Ronard","type":"Person","_key":"40539"} +{"label":"Ray K. Goman","version":21,"id":"66302","lastModified":"1301902085000","name":"Ray K. Goman","type":"Person","_key":"40540"} +{"label":"Ron Vernan","version":21,"id":"66305","lastModified":"1301902085000","name":"Ron Vernan","type":"Person","_key":"40541"} +{"label":"Frank Ronzio","version":21,"id":"66294","lastModified":"1301902085000","name":"Frank Ronzio","type":"Person","_key":"40542"} +{"label":"Ed Vasgersian","version":21,"id":"66303","lastModified":"1301902085000","name":"Ed Vasgersian","type":"Person","_key":"40543"} +{"label":"Don Michaelian","version":21,"id":"66301","lastModified":"1301902085000","name":"Don Michaelian","type":"Person","_key":"40544"} +{"label":"Fred Stuthman","version":21,"id":"66295","lastModified":"1301902085000","name":"Fred Stuthman","type":"Person","_key":"40545"} +{"label":"Madison Arnold","version":23,"id":"66297","lastModified":"1301902085000","name":"Madison Arnold","type":"Person","_key":"40546"} +{"label":"What a Girl Wants","description":"An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.","id":"10735","runtime":105,"imdbId":"tt0286788","version":253,"lastModified":"1301902041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ec\/4d6e4a557b9aa130000005ec\/what-a-girl-wants-mid.jpg","genre":"Comedy","title":"What a Girl Wants","releaseDate":1048723200000,"language":"en","tagline":"Trying to fit in. Born to stand out.","type":"Movie","_key":"40547"} +{"label":"Dennie Gordon","version":26,"id":"66960","lastModified":"1301901564000","name":"Dennie Gordon","type":"Person","_key":"40548"} +{"label":"Anything Else","description":"Jason Biggs stars as Jerry Falk, an aspiring writer in New York, who falls in love at first sight with a free-spirited young woman named Amanda (Christina Ricci). Jerry has heard the phrase that life is like \"anything else,\" but he soon finds that life with the unpredictable Amanda isn't like anything else at all.","id":"10739","runtime":108,"imdbId":"tt0313792","homepage":"http:\/\/www.anythingelse-themovie.com\/","version":184,"lastModified":"1301903022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b42\/4bc9304e017a3c57fe013b42\/anything-else-mid.jpg","genre":"Comedy","title":"Anything Else","releaseDate":1061942400000,"language":"en","type":"Movie","_key":"40549"} +{"label":"Birth","description":"Anna is a young widow who is finally getting on with her life after the death of her husband, Sean. Now engaged to be married, Anna meets a ten-year-old boy who tells her he is Sean reincarnated. Though his story is both unsettling and absurd, Anna can't get the boy out of her mind.","id":"10740","runtime":100,"imdbId":"tt0337876","trailer":"http:\/\/www.youtube.com\/watch?v=pNa0fq5Ib2I","version":233,"lastModified":"1301902933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4f\/4bc9304f017a3c57fe013b4f\/birth-mid.jpg","genre":"Drama","title":"Birth","releaseDate":1094601600000,"language":"en","tagline":"Careful what you wish for.","type":"Movie","_key":"40550"} +{"label":"Jonathan Glazer","version":28,"id":"66728","lastModified":"1301901876000","name":"Jonathan Glazer","type":"Person","_key":"40551"} +{"label":"Bobby","description":"Bobby is a 2006 American drama film written and directed by Emilio Estevez. The screenplay is a fictionalized account of the hours leading up to the June 5, 1968 shooting of United States Senator from New York and former U.S. Attorney General Robert F. Kennedy in the kitchen of The Ambassador Hotel in Los Angeles and 22 people in the hotel whose lives were never the same, following his win in the California Democratic Party primary for the 1968 Presidential Election.","id":"10741","runtime":120,"imdbId":"tt0308055","trailer":"http:\/\/www.youtube.com\/watch?v=Y_dIhSOyjRs","version":167,"lastModified":"1301903021000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b60\/4bc93051017a3c57fe013b60\/bobby-mid.jpg","studio":"The Weinstein Company","genre":"Drama","title":"Bobby","releaseDate":1157414400000,"language":"en","type":"Movie","_key":"40552"} +{"label":"The Clearing","description":"As an executive is held captive by an employee, it's up to his wife to deliver the ransom.","id":"10742","runtime":95,"imdbId":"tt0331952","version":142,"lastModified":"1301906244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4bc93057017a3c57fe013b81\/the-clearing-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"The Clearing","releaseDate":1088726400000,"language":"en","type":"Movie","_key":"40553"} +{"label":"Pieter Jan Brugge","version":42,"id":"639","lastModified":"1299492538000","name":"Pieter Jan Brugge","type":"Person","_key":"40554"} +{"label":"Confidence","description":"What Jake Vig doesn't know just might get him killed. A sharp and polished grifter, Jake has just swindled thousands of dollars from the unsuspecting Lionel Dolby with the help of his crew. It becomes clear that Lionel wasn't just any mark, he was an accountant for eccentric crime boss Winston King. Jake and his crew will have to stay one step ahead of both the criminals and the cops to finally settle their debt.","id":"10743","runtime":97,"imdbId":"tt0310910","version":201,"lastModified":"1301907538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8e\/4bc93059017a3c57fe013b8e\/confidence-mid.jpg","genre":"Comedy","title":"Confidence","releaseDate":1043020800000,"language":"en","tagline":"It's not about the money. It's about the money.","type":"Movie","_key":"40555"} +{"label":"The Cooler","description":"Bernie Lootz (William H. Macy) has such terrible luck that a Vegas casino owner uses him as a \"cooler\": no sooner does Bernie join a crap game than anyone with a hot hand immediately begins to lose. But then Bernie falls in love with a young cocktail waitress, Natalie (Maria Bello), and his magic suddenly shifts: now everyone around him wins, which is big trouble for Bernie.","id":"10744","runtime":101,"imdbId":"tt0318374","trailer":"http:\/\/www.youtube.com\/watch?v=oATzS3f-iac","version":194,"lastModified":"1301903620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b97\/4bc9305a017a3c57fe013b97\/the-cooler-mid.jpg","genre":"Comedy","title":"The Cooler","releaseDate":1042761600000,"language":"en","type":"Movie","_key":"40556"} +{"label":"Theo gegen den Rest der Welt","description":"No overview found.","id":"10746","runtime":106,"imdbId":"tt0081620","version":58,"lastModified":"1301904231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9c\/4bc9305a017a3c57fe013b9c\/theo-gegen-den-rest-der-welt-mid.jpg","studio":"Altura Film","genre":"Comedy","title":"Theo gegen den Rest der Welt","releaseDate":338688000000,"language":"en","type":"Movie","_key":"40557"} +{"label":"Marius M\u00fcller-Westernhagen","version":19,"id":"66694","lastModified":"1301901876000","name":"Marius M\u00fcller-Westernhagen","type":"Person","_key":"40558"} +{"label":"Guido Gagliardi","version":19,"id":"66695","lastModified":"1301901876000","name":"Guido Gagliardi","type":"Person","_key":"40559"} +{"label":"Claudia Demarmels","version":19,"id":"66697","lastModified":"1301901725000","name":"Claudia Demarmels","type":"Person","_key":"40560"} +{"label":"The Outlaw Josey Wales","description":"After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.","id":"10747","runtime":135,"imdbId":"tt0075029","version":189,"lastModified":"1301901650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baa\/4bc9305f017a3c57fe013baa\/the-outlaw-josey-wales-mid.jpg","genre":"Action","title":"The Outlaw Josey Wales","releaseDate":204940800000,"language":"en","tagline":"...an army of one.","type":"Movie","_key":"40561"} +{"label":"Chief Dan George","version":28,"id":"66670","lastModified":"1301901457000","name":"Chief Dan George","type":"Person","_key":"40562"} +{"label":"St. Trinian's","description":"When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the black. ","id":"10748","runtime":101,"imdbId":"tt0964587","trailer":"http:\/\/www.youtube.com\/watch?v=599","homepage":"http:\/\/www.sttriniansmovie.co.uk\/","version":324,"lastModified":"1301907558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc6\/4d8612535e73d653a6004dc6\/st-trinian-s-mid.jpg","studio":"Ealing Studios","genre":"Comedy","title":"St. Trinian's","releaseDate":1197244800000,"language":"en","type":"Movie","_key":"40563"} +{"label":"Antonia Bernath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4ceec38a5e73d654f80000be\/antonia-bernath-profile.jpg","version":22,"id":"66444","lastModified":"1301901494000","name":"Antonia Bernath","type":"Person","_key":"40564"} +{"label":"Jodie Whittaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cc\/4ceec4255e73d654f80000cc\/jodie-whittaker-profile.jpg","version":20,"id":"66431","lastModified":"1301901458000","name":"Jodie Whittaker","type":"Person","_key":"40565"} +{"label":"Tamsin Egerton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4cb5f0615e73d677840001cc\/tamsin-egerton-profile.jpg","biography":"Egerton started her acting career age six, following her older sister, Sophia to a local youth theatre, saying; \"\"The whole reason I'm acting now is because I wanted to be doing what my big sister was doing\". A year later, she appeared in a Royal Shakespeare Company musical production of The Secret Garden, playing Mary.\n\nEgerton's other film credits include Sarah in Driving Lessons (2006) alongside Rupert Grint, and Flora in Knife Edge (2008). Her role as Holly Goodfellow in the 2005 film Keepin","version":34,"birthday":"596502000000","id":"66442","lastModified":"1301905707000","name":"Tamsin Egerton","type":"Person","_key":"40566"} +{"label":"Lucy Punch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d27\/4cf5c96f5e73d6299c000d27\/lucy-punch-profile.jpg","version":59,"id":"66446","lastModified":"1301901375000","name":"Lucy Punch","type":"Person","_key":"40567"} +{"label":"Barnaby Thompson","version":28,"id":"21677","lastModified":"1301901554000","name":"Barnaby Thompson","type":"Person","_key":"40568"} +{"label":"Sophiiiie!","description":"No overview found.","id":"10749","runtime":107,"imdbId":"tt0329632","version":74,"lastModified":"1301908564000","genre":"Drama","title":"Sophiiiie!","releaseDate":1034208000000,"language":"en","type":"Movie","_key":"40569"} +{"label":"Thomas Sch\u00fcler","version":20,"id":"66638","lastModified":"1301902202000","name":"Thomas Sch\u00fcler","type":"Person","_key":"40570"} +{"label":"Michael Hofmann","version":21,"id":"66639","lastModified":"1301901782000","name":"Michael Hofmann","type":"Person","_key":"40571"} +{"label":"Toy Soldiers","description":"The film opens as a crazed Central American terrorist, Luis Cali (Andrew Divoff), goes on a shooting spree, attempting to gain his drug baron father's release from extradition to the United States. The following sequence introduces some malcontented rich kids from the prep school --Joey Trotta (Wil Wheaton), the son of a New Jersey mob leader; Billy Tepper (Sean Astin), a reprobate who has been to","id":"10750","runtime":112,"imdbId":"tt0103112","trailer":"http:\/\/www.youtube.com\/watch?v=1577","version":218,"lastModified":"1301904142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc9\/4bc93063017a3c57fe013bc9\/toy-soldiers-mid.jpg","genre":"Action","title":"Toy Soldiers","releaseDate":672624000000,"language":"en","type":"Movie","_key":"40572"} +{"label":"Keith Coogan","version":34,"id":"56145","lastModified":"1301901303000","name":"Keith Coogan","type":"Person","_key":"40573"} +{"label":"Daniel Petrie Jr.","version":32,"id":"774","lastModified":"1299928326000","name":"Daniel Petrie Jr.","type":"Person","_key":"40574"} +{"label":"Old Men In New Cars","description":"The last wish of the dying \"Monk\" is for his foster child, Harald, to find his real son, Ludvig. But the latter is currently in a Swedish prison cell...","id":"10751","runtime":95,"imdbId":"tt0246692","version":80,"lastModified":"1301905460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6b\/4d88b9c25e73d6751c000b6b\/old-men-in-new-cars-mid.jpg","genre":"Action","title":"Old Men In New Cars","releaseDate":1026432000000,"language":"en","type":"Movie","_key":"40575"} +{"label":"Denk ich an Deutschland - Herr Wichmann von der CDU","description":"German national election campaign 2002: Henrick Wichmann from the conservative party is fighting a lost battle in the Uckermark.","id":"10752","runtime":80,"imdbId":"tt0362719","homepage":"http:\/\/www.herrwichmann.de\/wichmann2.html","version":41,"lastModified":"1301904041000","genre":"Documentary","title":"Denk ich an Deutschland - Herr Wichmann von der CDU","releaseDate":1049932800000,"language":"en","type":"Movie","_key":"40576"} +{"label":"Henryk Wichmann","version":20,"id":"66618","lastModified":"1301902201000","name":"Henryk Wichmann","type":"Person","_key":"40577"} +{"label":"Markus Meckel","version":20,"id":"66619","lastModified":"1301902029000","name":"Markus Meckel","type":"Person","_key":"40578"} +{"label":"Angela Merkel","version":20,"id":"66620","lastModified":"1301901953000","name":"Angela Merkel","type":"Person","_key":"40579"} +{"label":"J\u00fcrgen R\u00fcttgers","version":20,"id":"66621","lastModified":"1301902149000","name":"J\u00fcrgen R\u00fcttgers","type":"Person","_key":"40580"} +{"label":"Police Story 2","description":"Reprising his role as the irrepressible Hong Kong super-cop Ka Kui, Jackie Chan is triumphant in scene after scene of breath-taking action, as he puts his own life on the line to combat the ruthless kidnappers holding the city to ransom.","id":"10753","runtime":101,"imdbId":"tt0095403","version":96,"lastModified":"1301902326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be4\/4bc93068017a3c57fe013be4\/ging-chaat-goo-si-juk-jaap-mid.jpg","genre":"Action","title":"Police Story 2","releaseDate":588038400000,"language":"en","type":"Movie","_key":"40581"} +{"label":"A Short Film About Killing","description":"The plot couldn't be simpler or its attack on capital punishment (and the act of killing in general) more direct - a senseless...","id":"10754","runtime":84,"imdbId":"tt0095468","version":135,"lastModified":"1301904696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bee\/4bc93068017a3c57fe013bee\/krotki-film-o-zabijaniu-mid.jpg","genre":"Crime","title":"A Short Film About Killing","releaseDate":593827200000,"language":"en","type":"Movie","_key":"40582"} +{"label":"Jerzy Zass","version":22,"id":"66465","lastModified":"1301902085000","name":"Jerzy Zass","type":"Person","_key":"40583"} +{"label":"Aleksander Bednarz","version":22,"id":"66464","lastModified":"1301901876000","name":"Aleksander Bednarz","type":"Person","_key":"40584"} +{"label":"Jan Tesarz","version":22,"id":"66462","lastModified":"1301901875000","name":"Jan Tesarz","type":"Person","_key":"40585"} +{"label":"Krzysztof Globisz","version":22,"id":"66460","lastModified":"1301902259000","name":"Krzysztof Globisz","type":"Person","_key":"40586"} +{"label":"Barbara Dziekan","version":22,"id":"66463","lastModified":"1301902259000","name":"Barbara Dziekan","type":"Person","_key":"40587"} +{"label":"Zbigniew Zapasiewicz","version":22,"id":"66461","lastModified":"1301902259000","name":"Zbigniew Zapasiewicz","type":"Person","_key":"40588"} +{"label":"Zdzislaw Tobiasz","version":22,"id":"66466","lastModified":"1301902259000","name":"Zdzislaw Tobiasz","type":"Person","_key":"40589"} +{"label":"Olgierd Lukaszewicz","version":23,"id":"66469","lastModified":"1301902392000","name":"Olgierd Lukaszewicz","type":"Person","_key":"40590"} +{"label":"Wieslaw Bednarz","version":22,"id":"66471","lastModified":"1301902259000","name":"Wieslaw Bednarz","type":"Person","_key":"40591"} +{"label":"Leonard Andrzejewski","version":22,"id":"66470","lastModified":"1301902259000","name":"Leonard Andrzejewski","type":"Person","_key":"40592"} +{"label":"Zbigniew Borek","version":22,"id":"66472","lastModified":"1301902259000","name":"Zbigniew Borek","type":"Person","_key":"40593"} +{"label":"Andrzej Gawronski","version":22,"id":"66475","lastModified":"1301902259000","name":"Andrzej Gawronski","type":"Person","_key":"40594"} +{"label":"Ryszard W. Borsucki","version":22,"id":"66473","lastModified":"1301902259000","name":"Ryszard W. Borsucki","type":"Person","_key":"40595"} +{"label":"Henryk Guzek","version":22,"id":"66477","lastModified":"1301902259000","name":"Henryk Guzek","type":"Person","_key":"40596"} +{"label":"Wladyslaw Byrdy","version":22,"id":"66474","lastModified":"1301902259000","name":"Wladyslaw Byrdy","type":"Person","_key":"40597"} +{"label":"Iwona Glebicka","version":22,"id":"66476","lastModified":"1301902259000","name":"Iwona Glebicka","type":"Person","_key":"40598"} +{"label":"Elzbieta Helman","version":22,"id":"66478","lastModified":"1301902259000","name":"Elzbieta Helman","type":"Person","_key":"40599"} +{"label":"Die Wilden Kerle - Alles ist gut, solange du wild bist!","description":"No overview found.","id":"10755","runtime":94,"imdbId":"tt0376990","version":59,"lastModified":"1301904041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bb\/4d0cf1265e73d6370e0009bb\/die-wilden-kerle-mid.jpg","genre":"Adventure","title":"Die Wilden Kerle - Alles ist gut, solange du wild bist!","releaseDate":1065052800000,"language":"en","type":"Movie","_key":"40600"} +{"label":"The Haunted Mansion","description":"Workaholic Jim Evers, his wife\/business partner Sara Evers get a call one night from a mansion owner named Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler named ramsley takes them to dine with Master Gracey. Master Gracey takes one look at Sara and he thinks she's his lost lover. The evers family are trapped in the mansion. Then the magic begins.","id":"10756","runtime":99,"imdbId":"tt0338094","trailer":"http:\/\/www.youtube.com\/watch?v=8rmwVmeNE9I","version":211,"lastModified":"1301902582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bff\/4bc9306a017a3c57fe013bff\/the-haunted-mansion-mid.jpg","genre":"Comedy","title":"The Haunted Mansion","releaseDate":1069804800000,"language":"en","tagline":"Check your pulse at the door... if you have one.","type":"Movie","_key":"40601"} +{"label":"Marsha Thomason","version":31,"id":"36219","lastModified":"1301901306000","name":"Marsha Thomason","type":"Person","_key":"40602"} +{"label":"Kabhi Khushi Kabhie Gham...","description":"Orthodox Indian, Raichand, would like his two sons to live together with him and his wife, and get married to girls' of his choice. One of his sons, Rahul, is adopted, while Rohan is his real son. Rahul falls in love with a poor Indian girl named Anjali, and incurs the displeasure of Raichand, they argue and fight, as a result Rahul leaves the house, moves to Britain, and settles down. Raichand now focuses his attention on his real son, Rohan, who has no plans to get married, but is determined t","id":"10757","runtime":210,"imdbId":"tt0248126","version":146,"lastModified":"1301907679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c25\/4bc9306f017a3c57fe013c25\/kabhi-khushi-kabhie-gham-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Kabhi Khushi Kabhie Gham...","releaseDate":1008288000000,"language":"en","tagline":"It's all about loving your parents.","type":"Movie","_key":"40603"} +{"label":"Hrithik Roshan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/102\/4c4f188b5e73d62ec1000102\/hrithik-roshan-profile.jpg","version":38,"birthday":"127004400000","id":"78749","birthplace":"Mumbai, Maharashtra, India","lastModified":"1301901123000","name":"Hrithik Roshan","type":"Person","_key":"40604"} +{"label":"Farida Jalal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cf\/4d2179b47b9aa128860004cf\/farida-jalal-profile.jpg","version":18,"id":"146971","lastModified":"1301902166000","name":"Farida Jalal","type":"Person","_key":"40605"} +{"label":"Alok Nath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c8\/4d21a27b7b9aa128230005c8\/alok-nath-profile.jpg","version":24,"id":"86784","lastModified":"1301902040000","name":"Alok Nath","type":"Person","_key":"40606"} +{"label":"Karan Johar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11f\/4c4f01457b9aa1326e00011f\/karan-johar-profile.jpg","version":46,"id":"35736","lastModified":"1301901285000","name":"Karan Johar","type":"Person","_key":"40607"} +{"label":"Waitress","description":"Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.","id":"10758","runtime":108,"imdbId":"tt0473308","version":207,"lastModified":"1301903090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c56\/4d6abbb97b9aa13633002c56\/waitress-mid.jpg","genre":"Comedy","title":"Waitress","releaseDate":1180051200000,"language":"en","type":"Movie","_key":"40608"} +{"label":"Adrienne Shelly","version":26,"id":"66496","lastModified":"1301901227000","name":"Adrienne Shelly","type":"Person","_key":"40609"} +{"label":"Darby Stanchfield","version":19,"id":"66497","lastModified":"1301901725000","name":"Darby Stanchfield","type":"Person","_key":"40610"} +{"label":"Cindy Drummond","version":19,"id":"66501","lastModified":"1301901725000","name":"Cindy Drummond","type":"Person","_key":"40611"} +{"label":"Lauri Johnson","version":19,"id":"66499","lastModified":"1301901725000","name":"Lauri Johnson","type":"Person","_key":"40612"} +{"label":"Nathan Dean","version":23,"id":"66502","lastModified":"1301901708000","name":"Nathan Dean","type":"Person","_key":"40613"} +{"label":"Heidi Sulzman","version":19,"id":"66498","lastModified":"1301901612000","name":"Heidi Sulzman","type":"Person","_key":"40614"} +{"label":"Sarah Hunley","version":20,"id":"66500","lastModified":"1301901875000","name":"Sarah Hunley","type":"Person","_key":"40615"} +{"label":"Caroline Fogarty","version":19,"id":"66503","lastModified":"1301901725000","name":"Caroline Fogarty","type":"Person","_key":"40616"} +{"label":"Jennifer Walsh","version":19,"id":"66504","lastModified":"1301902085000","name":"Jennifer Walsh","type":"Person","_key":"40617"} +{"label":"Mackenzie King","version":19,"id":"66506","lastModified":"1301901725000","name":"Mackenzie King","type":"Person","_key":"40618"} +{"label":"Hunter A. King","version":17,"id":"66505","lastModified":"1301901612000","name":"Hunter A. King","type":"Person","_key":"40619"} +{"label":"Donna Leslie","version":19,"id":"66507","lastModified":"1301902085000","name":"Donna Leslie","type":"Person","_key":"40620"} +{"label":"The Comebacks","description":"The producers of Wedding Crashers are back with the comedy The Comebacks. Spoofing countless inspirational sports movies, the film stars David Koechner (Anchorman: The Legend of Ron Burgundy) as Lambeau Fields, a football coach who suffers from a streak of bad luck that has become the stuff of legend. As a last resort, he takes a job coaching a college football team populated with some of the leas","id":"10759","runtime":107,"imdbId":"tt0790804","version":265,"lastModified":"1301903438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3b\/4bc93071017a3c57fe013c3b\/the-comebacks-mid.jpg","genre":"Comedy","title":"The Comebacks","releaseDate":1192752000000,"language":"en","type":"Movie","_key":"40621"} +{"label":"Tom Brady","version":35,"id":"66512","lastModified":"1301902147000","name":"Tom Brady","type":"Person","_key":"40622"} +{"label":"George Back","version":19,"id":"66523","lastModified":"1301902259000","name":"George Back","type":"Person","_key":"40623"} +{"label":"Noureen DeWulf","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06e\/4cdc57b17b9aa1380200006e\/noureen-dewulf-profile.jpg","version":43,"id":"66524","lastModified":"1301901112000","name":"Noureen DeWulf","type":"Person","_key":"40624"} +{"label":"Jesse Garcia","version":21,"id":"66525","lastModified":"1302043987000","name":"Jesse Garcia","type":"Person","_key":"40625"} +{"label":"Martin Spanjers","version":23,"id":"66527","lastModified":"1301902259000","name":"Martin Spanjers","type":"Person","_key":"40626"} +{"label":"Jackie Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a86\/4cf3cc845e73d62384000a86\/jackie-long-profile.jpg","version":27,"id":"66526","lastModified":"1301901849000","name":"Jackie Long","type":"Person","_key":"40627"} +{"label":"Finesse Mitchell","version":23,"id":"66528","lastModified":"1301902331000","name":"Finesse Mitchell","type":"Person","_key":"40628"} +{"label":"Sydney White","description":"A modern retelling of Snow White set against students in their freshman year of college in the greek system.","id":"10760","runtime":108,"imdbId":"tt0815244","version":188,"lastModified":"1301903373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c48\/4bc93075017a3c57fe013c48\/sydney-white-mid.jpg","genre":"Comedy","title":"Sydney White","releaseDate":1190332800000,"language":"en","tagline":"Freshman year is no fairytale","type":"Movie","_key":"40629"} +{"label":"Jack Carpenter","version":21,"id":"66536","lastModified":"1301902085000","name":"Jack Carpenter","type":"Person","_key":"40630"} +{"label":"Crystal Hunt","version":23,"id":"66537","lastModified":"1301902364000","name":"Crystal Hunt","type":"Person","_key":"40631"} +{"label":"Adam Hendershott","version":23,"id":"66538","lastModified":"1301901674000","name":"Adam Hendershott","type":"Person","_key":"40632"} +{"label":"John Schneider","version":35,"id":"55779","lastModified":"1301901446000","name":"John Schneider","type":"Person","_key":"40633"} +{"label":"Arnie Pantoja","version":22,"id":"66540","lastModified":"1301901875000","name":"Arnie Pantoja","type":"Person","_key":"40634"} +{"label":"Libby Mintz","version":21,"id":"66539","lastModified":"1301902259000","name":"Libby Mintz","type":"Person","_key":"40635"} +{"label":"Dont\u00e9 Bonner","version":21,"id":"66541","lastModified":"1301902085000","name":"Dont\u00e9 Bonner","type":"Person","_key":"40636"} +{"label":"Brian Patrick Clarke","version":22,"id":"66542","lastModified":"1301902259000","name":"Brian Patrick Clarke","type":"Person","_key":"40637"} +{"label":"Cree Ivey","version":21,"id":"66543","lastModified":"1301902085000","name":"Cree Ivey","type":"Person","_key":"40638"} +{"label":"Kierstin Koppel","version":27,"id":"66547","lastModified":"1301901725000","name":"Kierstin Koppel","type":"Person","_key":"40639"} +{"label":"Lisandra Vazquez","version":21,"id":"66545","lastModified":"1301902259000","name":"Lisandra Vazquez","type":"Person","_key":"40640"} +{"label":"Chris Carberg","version":21,"id":"66546","lastModified":"1301902085000","name":"Chris Carberg","type":"Person","_key":"40641"} +{"label":"Made of Honor","description":"Made of Honor revolves around Tom and Hannah, who have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her \"maid\" of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her","id":"10761","runtime":101,"imdbId":"tt0866439","trailer":"http:\/\/www.youtube.com\/watch?v=1686","version":272,"lastModified":"1301902743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e8\/4d1a0d0f7b9aa114820047e8\/made-of-honor-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Made of Honor","releaseDate":1209686400000,"language":"en","type":"Movie","_key":"40642"} +{"label":"Paul Weiland","version":30,"id":"66548","lastModified":"1301902026000","name":"Paul Weiland","type":"Person","_key":"40643"} +{"label":"Busy Philipps","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d7\/4ce1a2a65e73d60f710003d7\/busy-philipps-profile.jpg","version":29,"id":"60928","lastModified":"1301901426000","name":"Busy Philipps","type":"Person","_key":"40644"} +{"label":"Kadeem Hardison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fb\/4bd35367017a3c63e80004fb\/kadeem-hardison-profile.jpg","version":39,"id":"66554","lastModified":"1301902021000","name":"Kadeem Hardison","type":"Person","_key":"40645"} +{"label":"Whitney Cummings","version":38,"id":"66555","lastModified":"1301901849000","name":"Whitney Cummings","type":"Person","_key":"40646"} +{"label":"Emily Nelson","version":25,"id":"66556","lastModified":"1301902259000","name":"Emily Nelson","type":"Person","_key":"40647"} +{"label":"Selma Stern","version":25,"id":"66557","lastModified":"1301902259000","name":"Selma Stern","type":"Person","_key":"40648"} +{"label":"Lilly McDowell","version":25,"id":"66559","lastModified":"1301902259000","name":"Lilly McDowell","type":"Person","_key":"40649"} +{"label":"Corinne Reilly","version":25,"id":"66561","lastModified":"1301902259000","name":"Corinne Reilly","type":"Person","_key":"40650"} +{"label":"Craig Susser","version":25,"id":"66560","lastModified":"1301902259000","name":"Craig Susser","type":"Person","_key":"40651"} +{"label":"Christine Barger","version":26,"id":"66558","lastModified":"1301902259000","name":"Christine Barger","type":"Person","_key":"40652"} +{"label":"Without a Paddle","description":"Three friends leave their home in Philadelphia for a camping trip after their friend Billy's death. But their destination has special meaning, as Billy was fixated on going there to search for a lost treasure. Hoping to find some of the $194,200 of famed airline hijacker D.B. Cooper's money, which is rumored to be somewhere in the wilderness, the men embark on the adventure of their lives.","id":"10762","runtime":95,"imdbId":"tt0364751","version":286,"lastModified":"1302070576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c72\/4bc9307c017a3c57fe013c72\/without-a-paddle-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Without a Paddle","releaseDate":1092960000000,"language":"en","tagline":"The call of the wild. The thrill of adventure. The mistake of a lifetime.","type":"Movie","_key":"40653"} +{"label":"Andrew Hampton","version":21,"id":"66574","lastModified":"1302070575000","name":"Andrew Hampton","type":"Person","_key":"40654"} +{"label":"Jarred Rumbold","version":21,"id":"66573","lastModified":"1302070575000","name":"Jarred Rumbold","type":"Person","_key":"40655"} +{"label":"Matthew Price","version":21,"id":"66572","lastModified":"1302070576000","name":"Matthew Price","type":"Person","_key":"40656"} +{"label":"Carl Snell","version":22,"id":"66575","lastModified":"1302070575000","name":"Carl Snell","type":"Person","_key":"40657"} +{"label":"Nadine Bernecker","version":21,"id":"66576","lastModified":"1302070576000","name":"Nadine Bernecker","type":"Person","_key":"40658"} +{"label":"David Stott","version":23,"id":"66578","lastModified":"1302070576000","name":"David Stott","type":"Person","_key":"40659"} +{"label":"Danielle Cormack","version":24,"id":"66577","lastModified":"1302070576000","name":"Danielle Cormack","type":"Person","_key":"40660"} +{"label":"Bonnie Somerville","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4cd342647b9aa113ac000010\/bonnie-somerville-profile.jpg","version":38,"id":"66579","lastModified":"1302070576000","name":"Bonnie Somerville","type":"Person","_key":"40661"} +{"label":"Scott Adsit","version":26,"id":"66580","lastModified":"1302070576000","name":"Scott Adsit","type":"Person","_key":"40662"} +{"label":"Morgan Reese Fairhead","version":21,"id":"66581","lastModified":"1302070576000","name":"Morgan Reese Fairhead","type":"Person","_key":"40663"} +{"label":"Bruce Phillips","version":25,"id":"29082","lastModified":"1302070576000","name":"Bruce Phillips","type":"Person","_key":"40664"} +{"label":"Gregory Cruz","version":22,"id":"66585","lastModified":"1302070576000","name":"Gregory Cruz","type":"Person","_key":"40665"} +{"label":"Kate Harcourt","version":21,"id":"66583","lastModified":"1302070576000","name":"Kate Harcourt","type":"Person","_key":"40666"} +{"label":"Liddy Holloway","version":22,"id":"66584","lastModified":"1302070576000","name":"Liddy Holloway","type":"Person","_key":"40667"} +{"label":"Mia Blake","version":23,"id":"66582","lastModified":"1302070576000","name":"Mia Blake","type":"Person","_key":"40668"} +{"label":"Dr. T and the Women","description":"Dr. Sullivan Travis \"Dr. T.\" is a wealthy Dallas gynecologist for some of the wealthiest women in Texas who finds his idealist life beginning to fall apart starting when his wife, Kate, suffers a nervous breakdown and is committed to the state mental hospital. Dr. T's eldest daughter, Dee Dee, is planing to go through with her approaching wedding despite the secret that she is a lesbian and romantically involved with Marilyn, the maid of honor. Dr T's youngest daughter, Connie, is a conspiracy t","id":"10763","runtime":133,"imdbId":"tt0205271","version":338,"lastModified":"1301904759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4c9b00cb7b9aa127590003df\/dr-t-and-the-women-mid.jpg","genre":"Comedy","title":"Dr. T and the Women","releaseDate":971395200000,"language":"en","type":"Movie","_key":"40669"} +{"label":"Quantum of Solace","description":"Quantum of Solace continues the high octane adventures of James Bond in Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr White who reveals the organisation which blackmailed Vesper is far more complex and dangerous than anyone had imagined.","id":"10764","runtime":106,"imdbId":"tt0830515","trailer":"http:\/\/www.youtube.com\/watch?v=nwKbTuDcdUU","homepage":"http:\/\/www.007.com","version":437,"lastModified":"1301900904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce6\/4bc93091017a3c57fe013ce6\/quantum-of-solace-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Quantum of Solace","releaseDate":1225411200000,"language":"en","tagline":"For love, for hate, for justice, for revenge.","type":"Movie","_key":"40670"} +{"label":"Private Benjamin","description":"A sheltered young high society woman joins the army on a whim and finds herself in a more difficult situation than she ever expected.","id":"10765","runtime":109,"imdbId":"tt0081375","trailer":"http:\/\/www.youtube.com\/watch?v=co-VZiZNHfU","version":156,"lastModified":"1301903584000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4bcfbac6017a3c63f3000080\/private-benjamin-mid.jpg","genre":"Comedy","title":"Private Benjamin","releaseDate":339724800000,"language":"en","type":"Movie","_key":"40671"} +{"label":"Damien: Omen II","description":"Since the sudden and highly suspicious death of his parents, 12-year-old Damien has been in the charge of his wealthy aunt and uncle (Lee Grant and William Holden).Widely feared to be the Antichrist, Damien relentlessly plots to seize control of his uncle's business empire - and the world. Meanwhile, anyone attempting to unravel the secrets of Damien's sinister past or fiendish future meets with a swift and cruel demise.In this chilling sequel to The Omen, the forces of good and evil battle each","id":"10766","runtime":107,"imdbId":"tt0077394","version":216,"lastModified":"1302039145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0d\/4bc9309a017a3c57fe013d0d\/damien-omen-ii-mid.jpg","genre":"Action","title":"Damien: Omen II","releaseDate":265852800000,"language":"en","type":"Movie","_key":"40672"} +{"label":"Jonathan Scott-Taylor","version":21,"id":"66609","lastModified":"1301901459000","name":"Jonathan Scott-Taylor","type":"Person","_key":"40673"} +{"label":"Elizabeth Shepherd","version":23,"id":"66610","lastModified":"1301901648000","name":"Elizabeth Shepherd","type":"Person","_key":"40674"} +{"label":"Lucas Donat","version":18,"id":"96075","lastModified":"1301902721000","name":"Lucas Donat","type":"Person","_key":"40675"} +{"label":"Omen III: The Final Conflict","description":"Damien Thorn (Sam Neill) has helped rescue the world from a recession, appearing to be a benign corporate benefactor. When he then becomes U.S. Ambassador to England, Damien fulfills a terrifying biblical prophecy. He also faces his own potential demise as an astronomical event brings about the second coming of Christ. ","id":"10768","runtime":108,"imdbId":"tt0082377","version":207,"lastModified":"1301903117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1a\/4bc9309c017a3c57fe013d1a\/omen-iii-the-final-conflict-mid.jpg","genre":"Drama","title":"Omen III: The Final Conflict","releaseDate":353894400000,"language":"en","type":"Movie","_key":"40676"} +{"label":"Lisa Harrow","version":20,"id":"66612","lastModified":"1301901875000","name":"Lisa Harrow","type":"Person","_key":"40677"} +{"label":"Leueen Willoughby","version":20,"id":"66613","lastModified":"1301901875000","name":"Leueen Willoughby","type":"Person","_key":"40678"} +{"label":"The Brazilian Job","description":"No overview found.","id":"10769","runtime":0,"imdbId":"tt0427396","version":64,"lastModified":"1301902988000","studio":"De Line Pictures","genre":"Action","title":"The Brazilian Job","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"40679"} +{"label":"Uno Sceriffo Extraterrestre... Poco Extra E Molto Terrestre","description":"A young humanoid alien who gets stranded on earth hooks up with a grizzled old sheriff in a western town and tries to help him solve a tough case, but the sheriff doesn't want any help from a \"kid.\"","id":"10770","runtime":88,"imdbId":"tt0079859","version":49,"lastModified":"1301904265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2d\/4bc9309e017a3c57fe013d2d\/uno-sceriffo-extraterrestre-poco-extra-e-molto-terrestre-mid.jpg","studio":"Leone Film","genre":"Comedy","title":"Uno Sceriffo Extraterrestre... Poco Extra E Molto Terrestre","releaseDate":303091200000,"language":"en","type":"Movie","_key":"40680"} +{"label":"Cary Guffey","version":24,"id":"66645","lastModified":"1301902179000","name":"Cary Guffey","type":"Person","_key":"40681"} +{"label":"The Tuxedo","description":"A hapless chauffer must take a comatosed secret agent's place using his special gadget-laden tuxedo.","id":"10771","runtime":98,"imdbId":"tt0290095","trailer":"http:\/\/www.youtube.com\/watch?v=RHAOLihH58s","version":139,"lastModified":"1301901939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d40\/4bc9309f017a3c57fe013d40\/the-tuxedo-mid.jpg","genre":"Action","title":"The Tuxedo","releaseDate":1032393600000,"language":"en","type":"Movie","_key":"40682"} +{"label":"Kevin Donovan","version":23,"id":"66654","lastModified":"1301901953000","name":"Kevin Donovan","type":"Person","_key":"40683"} +{"label":"Django","description":"A coffin-dragging gunslinger enters a town caught between two feuding factions, the KKK and a gang of Mexican Bandits, and is caught up in a struggle against them.","id":"10772","runtime":93,"imdbId":"tt0060315","version":203,"lastModified":"1301904951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4e\/4bc930a3017a3c57fe013d4e\/django-mid.jpg","studio":"B.R.C Produzione S.r.l","genre":"Action","title":"Django","releaseDate":-118022400000,"language":"en","tagline":"The movie that spawned a genre.","type":"Movie","_key":"40684"} +{"label":"Jos\u00e9 B\u00f3dalo","version":21,"id":"66676","lastModified":"1301902364000","name":"Jos\u00e9 B\u00f3dalo","type":"Person","_key":"40685"} +{"label":"Loredana Nusciak","version":22,"id":"66677","lastModified":"1301901953000","name":"Loredana Nusciak","type":"Person","_key":"40686"} +{"label":"Mrs Henderson Presents","description":"Eccentric 70-year-old widow purchases the Windmill Theatre in London as a post-widowhood hobby. After starting an innovative continuous variety review, which is copied by other theaters, they begin to lose money. Mrs Henderson suggests they add female nudity similar to the Moulin Rouge in Paris","id":"10773","runtime":103,"imdbId":"tt0413015","version":205,"lastModified":"1301903024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5c\/4bc930a3017a3c57fe013d5c\/mrs-henderson-presents-mid.jpg","genre":"Comedy","title":"Mrs Henderson Presents","releaseDate":1126224000000,"language":"en","type":"Movie","_key":"40687"} +{"label":"Will Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f5c\/4cf1773f5e73d61927000f5c\/will-young-profile.jpg","version":23,"id":"66700","lastModified":"1301901661000","name":"Will Young","type":"Person","_key":"40688"} +{"label":"Thelma Barlow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f66\/4cf177cf5e73d61927000f66\/thelma-barlow-profile.jpg","version":23,"id":"47729","lastModified":"1301901985000","name":"Thelma Barlow","type":"Person","_key":"40689"} +{"label":"Network","description":"Not since the dawn of time has America experienced a man like Howard Beale!","id":"10774","runtime":121,"imdbId":"tt0074958","trailer":"http:\/\/www.youtube.com\/watch?v=2934","version":179,"lastModified":"1301902319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6d\/4bc930a5017a3c57fe013d6d\/network-mid.jpg","genre":"Comedy","title":"Network","releaseDate":217900800000,"language":"en","tagline":"Not since the dawn of time has America experienced a man like Howard Beale!","type":"Movie","_key":"40690"} +{"label":"Arthur Burghardt","version":25,"id":"66713","lastModified":"1301902378000","name":"Arthur Burghardt","type":"Person","_key":"40691"} +{"label":"Infernal Affairs","description":"Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst. ","id":"10775","runtime":101,"imdbId":"tt0338564","trailer":"http:\/\/www.youtube.com\/watch?v=S4R3nHkqyfM","version":152,"lastModified":"1301904297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a6\/4d8c97375e73d65e2d0000a6\/infernal-affairs-mid.jpg","studio":"Media Asia Film","genre":"Crime","title":"Infernal Affairs","releaseDate":1039651200000,"language":"en","tagline":"Loyalty. Honor. Betrayal.","type":"Movie","_key":"40692"} +{"label":"Alan Mak","version":39,"id":"66718","lastModified":"1301901284000","name":"Alan Mak","type":"Person","_key":"40693"} +{"label":"Little Shop of Horrors","description":"Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.","id":"10776","runtime":94,"imdbId":"tt0091419","version":169,"lastModified":"1301903292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d88\/4bc930aa017a3c57fe013d88\/little-shop-of-horrors-mid.jpg","studio":"Geffen Company, The","genre":"Comedy","title":"Little Shop of Horrors","releaseDate":535334400000,"language":"en","tagline":"Don't feed the plants.","type":"Movie","_key":"40694"} +{"label":"The Man Who Wasn't There","description":"A tale of passion, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris' infidelity presents him with a chance to change it.","id":"10778","runtime":116,"imdbId":"tt0243133","trailer":"http:\/\/www.youtube.com\/watch?v=2523","version":157,"lastModified":"1301902118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9e\/4bc930b0017a3c57fe013d9e\/the-man-who-wasn-t-there-mid.jpg","studio":"Working Title Films","genre":"Comedy","title":"The Man Who Wasn't There","releaseDate":989712000000,"language":"en","type":"Movie","_key":"40695"} +{"label":"The Frighteners","description":"After a car accident in which his wife, Debra, was killed and he was injured, Frank Bannister develops psychic abilities allowing him to see, hear, and communicate with ghosts.","id":"10779","runtime":110,"imdbId":"tt0116365","trailer":"http:\/\/www.youtube.com\/watch?v=1630","version":229,"lastModified":"1301902087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dab\/4bc930b1017a3c57fe013dab\/the-frighteners-mid.jpg","studio":"camper","genre":"Comedy","title":"The Frighteners","releaseDate":835142400000,"language":"en","tagline":"No Rest for the Wicked.","type":"Movie","_key":"40696"} +{"label":"John Astin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/277\/4d86b5cf7b9aa1381c000277\/john-astin-profile.jpg","version":40,"id":"41230","lastModified":"1301901948000","name":"John Astin","type":"Person","_key":"40697"} +{"label":"Jim Fyfe","version":26,"id":"101776","lastModified":"1301902767000","name":"Jim Fyfe","type":"Person","_key":"40698"} +{"label":"Julianna McCarthy","version":21,"id":"101777","lastModified":"1301902135000","name":"Julianna McCarthy","type":"Person","_key":"40699"} +{"label":"Leslie Wing","version":20,"id":"101778","lastModified":"1301902916000","name":"Leslie Wing","type":"Person","_key":"40700"} +{"label":"Overboard","description":"Rich bitch Joanna hires country carpenter Dean to build a closet on her yacht. When the two don't see eye-to-eye, Dean is left unpaid while Joanna sets sail. The following day, Joanna is fished out of the sea, after falling overboard, suffering from amnesia. Dean sees a neat way to get his money, he tells her she's his wife; that way Dean gets a free housekeeper and mother for his 4 kids.","id":"10780","runtime":106,"imdbId":"tt0093693","version":184,"lastModified":"1301901861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bf\/4d6fffea5e73d66b2b0049bf\/overboard-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Comedy","title":"Overboard","releaseDate":566611200000,"language":"en","type":"Movie","_key":"40701"} +{"label":"Texas Chainsaw Massacre: The Beginning","description":"On one last road trip before they're sent to serve in Vietnam, two brothers and their girlfriends get into an accident that calls their local sheriff to the scene. Thus begins a terrifying experience where the teens are taken to a secluded house of horrors, where a young, would-be killer is being nurtured.","id":"10781","runtime":91,"imdbId":"tt0420294","trailer":"http:\/\/www.youtube.com\/watch?v=UY7CWeaDOwE","version":188,"lastModified":"1301904076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba8\/4d477fbd7b9aa15bb000bba8\/texas-chainsaw-massacre-the-beginning-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"Texas Chainsaw Massacre: The Beginning","releaseDate":1160092800000,"language":"en","tagline":"What you know about fear... doesn't even come close.","type":"Movie","_key":"40702"} +{"label":"Taylor Handley","version":24,"id":"66741","lastModified":"1301901309000","name":"Taylor Handley","type":"Person","_key":"40703"} +{"label":"Matthew Bomer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06f\/4c02bb33017a3c7e8f00006f\/matthew-bomer-profile.jpg","version":25,"id":"66743","lastModified":"1301901630000","name":"Matthew Bomer","type":"Person","_key":"40704"} +{"label":"Basic","description":"A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.","id":"10782","runtime":98,"imdbId":"tt0264395","trailer":"http:\/\/www.youtube.com\/watch?v=5TBBhkzGktQ","version":168,"lastModified":"1301901779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39f\/4c7826b45e73d6041400039f\/basic-mid.jpg","studio":"Phoenix Pictures","genre":"Action","title":"Basic","releaseDate":1048809600000,"language":"en","tagline":"Deception is their most deadly weapon.","type":"Movie","_key":"40705"} +{"label":"Tim Daly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f4\/4c8f11205e73d614930000f4\/tim-daly-profile.jpg","version":62,"id":"68122","lastModified":"1301901266000","name":"Tim Daly","type":"Person","_key":"40706"} +{"label":"Lucky Numbers","description":"A television weatherman scams a local lottery.","id":"10783","runtime":105,"imdbId":"tt0219952","version":165,"lastModified":"1301903341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df0\/4bc930bd017a3c57fe013df0\/lucky-numbers-mid.jpg","studio":"DreamWorks","genre":"Action","title":"Lucky Numbers","releaseDate":946684800000,"language":"en","type":"Movie","_key":"40707"} +{"label":"John F. O'Donohue","version":20,"id":"66749","lastModified":"1301901992000","name":"John F. O'Donohue","type":"Person","_key":"40708"} +{"label":"Colin Mochrie","version":19,"id":"66750","lastModified":"1301901875000","name":"Colin Mochrie","type":"Person","_key":"40709"} +{"label":"Cabaret","description":"Inside the Kit Kat Club of 1931 Berlin, starry-eyed singer Sally Bowles (Liza Minnelli) and an impish emcee (Joel Grey) sound the clarion call to decadent fun, while outside a certain political party grows into a brutal force.","id":"10784","runtime":124,"imdbId":"tt0068327","version":238,"lastModified":"1301908020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df9\/4bc930be017a3c57fe013df9\/cabaret-mid.jpg","genre":"Drama","title":"Cabaret","releaseDate":66787200000,"language":"en","type":"Movie","_key":"40710"} +{"label":"Liza Minnelli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7c\/4ccdcc195e73d65025000a7c\/liza-minnelli-profile.jpg","version":41,"id":"66776","lastModified":"1301901426000","name":"Liza Minnelli","type":"Person","_key":"40711"} +{"label":"Bob Fosse","version":25,"id":"66777","lastModified":"1301901381000","name":"Bob Fosse","type":"Person","_key":"40712"} +{"label":"The Thing from Another World","description":"Scientists and American Air Force officials fend off a blood-thirsty alien organism while at a remote arctic outpost. ","id":"10785","runtime":87,"imdbId":"tt0044121","trailer":"http:\/\/www.youtube.com\/watch?v=vs2lXH1aFZ0","version":129,"lastModified":"1301901939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/748\/4d04678a7b9aa11bbf001748\/the-thing-from-another-world-mid.jpg","genre":"Horror","title":"The Thing from Another World","releaseDate":-589420800000,"language":"en","type":"Movie","_key":"40713"} +{"label":"Margaret Sheridan","version":25,"id":"66781","lastModified":"1301901642000","name":"Margaret Sheridan","type":"Person","_key":"40714"} +{"label":"James R. Young","version":24,"id":"66782","lastModified":"1301901725000","name":"James R. Young","type":"Person","_key":"40715"} +{"label":"Dewey Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f88\/4d94949a7b9aa11991001f88\/dewey-martin-profile.jpg","version":26,"id":"83314","lastModified":"1301902675000","name":"Dewey Martin","type":"Person","_key":"40716"} +{"label":"Christian Nyby","version":32,"id":"13973","lastModified":"1301901606000","name":"Christian Nyby","type":"Person","_key":"40717"} +{"label":"Robin and Marian","description":"Whatever became of Robin Hood after his famed tale of good deeds ended? Now you can find out, in this sequel that takes place years after Robin and his merry men bested the Sheriff of Nottingham. After following Richard the Lionhearted to the crusades, Robin (Sean Connery) returns to Sherwood Forest to find things drastically changed. Audrey Hepburn plays the stalwart Marian \u2026 who's joined a nunnery!","id":"10786","runtime":106,"imdbId":"tt0075147","trailer":"http:\/\/www.youtube.com\/watch?v=BKPVGIdJr-k","version":211,"lastModified":"1301903651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edb\/4d888ecd7b9aa137d0000edb\/robin-and-marian-mid.jpg","genre":"Action","title":"Robin and Marian","releaseDate":195350400000,"language":"en","type":"Movie","_key":"40718"} +{"label":"Ronnie Barker","version":28,"id":"66786","lastModified":"1301902338000","name":"Ronnie Barker","type":"Person","_key":"40719"} +{"label":"The Invisible Man","description":"A scientist turns himself invisible. However, the formula slowly drives him insane, causing him to terrorize the countryside as an invisible killer.","id":"10787","runtime":71,"imdbId":"tt0024184","trailer":"http:\/\/www.youtube.com\/watch?v=2666","version":185,"lastModified":"1301905389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e17\/4bc930c2017a3c57fe013e17\/the-invisible-man-mid.jpg","genre":"Horror","title":"The Invisible Man","releaseDate":-1140307200000,"language":"en","type":"Movie","_key":"40720"} +{"label":"William Harrigan","version":26,"id":"66789","lastModified":"1301901675000","name":"William Harrigan","type":"Person","_key":"40721"} +{"label":"Kambakkht Ishq","description":"Kambakkht Ishq is about a stuntman and a supermodel that don't believe in love but through a hilarious series of events they fall for each other.","id":"10788","runtime":142,"imdbId":"tt1144804","trailer":"http:\/\/www.youtube.com\/watch?v=1388","homepage":"http:\/\/kambakkhtishq.erosentertainment.com\/","version":172,"lastModified":"1301905100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34c\/4d8023cd7b9aa12dac00034c\/kambakkht-ishq-mid.jpg","studio":"Eros Entertainment","genre":"Action","title":"Kambakkht Ishq","releaseDate":1246579200000,"language":"en","type":"Movie","_key":"40722"} +{"label":"Sabir Khan","version":21,"id":"66829","lastModified":"1301902149000","name":"Sabir Khan","type":"Person","_key":"40723"} +{"label":"Aftab Shivdasani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4c50b2595e73d632bf000042\/aftab-shivdasani-profile.jpg","version":27,"id":"85027","lastModified":"1301901819000","name":"Aftab Shivdasani","type":"Person","_key":"40724"} +{"label":"Amrita Arora","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d62\/4d2239b47b9aa12823000d62\/amrita-arora-profile.jpg","version":29,"id":"77236","lastModified":"1301901467000","name":"Amrita Arora","type":"Person","_key":"40725"} +{"label":"Javed Jaffrey","version":31,"id":"86086","lastModified":"1301902337000","name":"Javed Jaffrey","type":"Person","_key":"40726"} +{"label":"Pet Sementary","description":"No overview found.","id":"10789","title":"Pet Sementary","language":"en","lastModified":"1301908017000","version":51,"type":"Movie","_key":"40727"} +{"label":"The Abandoned","description":"A film producer who was adopted as a baby and sent to America, returns to her native Russia and the family farm. Once there, strange things begin to happen including the disappearance of her guide, the manifestation of ghosts (including her own!) and the appearance of another man who has been drawn to the farm for the same reasons.","id":"10790","runtime":99,"imdbId":"tt0475937","version":213,"lastModified":"1301903560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2d\/4bc930c3017a3c57fe013e2d\/the-abandoned-mid.jpg","studio":"Castelao Producciones S.A.","genre":"Horror","title":"The Abandoned","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"40728"} +{"label":"Anastasia Hille","version":21,"id":"66791","lastModified":"1301901725000","name":"Anastasia Hille","type":"Person","_key":"40729"} +{"label":"Valentin Ganev","version":26,"id":"66792","lastModified":"1301901536000","name":"Valentin Ganev","type":"Person","_key":"40730"} +{"label":"Paraskeva Djukelova","version":20,"id":"66793","lastModified":"1301901875000","name":"Paraskeva Djukelova","type":"Person","_key":"40731"} +{"label":"Carlos Reig-Plaza","version":21,"id":"66794","lastModified":"1301901875000","name":"Carlos Reig-Plaza","type":"Person","_key":"40732"} +{"label":"Nacho Cerd\u00e0","version":25,"id":"66795","lastModified":"1301902136000","name":"Nacho Cerd\u00e0","type":"Person","_key":"40733"} +{"label":"Eine andere Liga","description":"No overview found.","id":"10791","runtime":100,"imdbId":"tt0442908","version":66,"lastModified":"1301908564000","studio":"W\u00fcste Filmproduktion","genre":"Drama","title":"Eine andere Liga","releaseDate":1106092800000,"language":"en","type":"Movie","_key":"40734"} +{"label":"Buket Alakus","version":22,"id":"66830","lastModified":"1301901648000","name":"Buket Alakus","type":"Person","_key":"40735"} +{"label":"Verena Wolfien","version":20,"id":"66831","lastModified":"1301901992000","name":"Verena Wolfien","type":"Person","_key":"40736"} +{"label":"Aziza Yildirim","version":20,"id":"66832","lastModified":"1301901992000","name":"Aziza Yildirim","type":"Person","_key":"40737"} +{"label":"Coup de t\u00eate","description":"Delightful French comedy about a talented soccer player whose foul temper causes him to be cut from the team, lose his job and even be banned from his favorite bar.","id":"10792","runtime":89,"imdbId":"tt0079002","version":46,"lastModified":"1301908564000","studio":"Gaumont","genre":"Comedy","title":"Coup de t\u00eate","releaseDate":287798400000,"language":"en","type":"Movie","_key":"40738"} +{"label":"Doroth\u00e9e Jemma","version":20,"id":"68798","lastModified":"1301901818000","name":"Doroth\u00e9e Jemma","type":"Person","_key":"40739"} +{"label":"Fu\u00dfball wie noch nie","description":"No overview found.","id":"10793","runtime":105,"imdbId":"tt0065753","version":29,"lastModified":"1301904999000","genre":"Documentary","title":"Fu\u00dfball wie noch nie","releaseDate":31536000000,"language":"en","type":"Movie","_key":"40740"} +{"label":"Hellmuth Costard","version":20,"id":"66833","lastModified":"1301902197000","name":"Hellmuth Costard","type":"Person","_key":"40741"} +{"label":"George Best","version":20,"id":"68797","lastModified":"1301902367000","name":"George Best","type":"Person","_key":"40742"} +{"label":"The Party","description":"A clerical mistake results in a bumbling film extra being invited to an exclusive Hollywood party instead of being fired.","id":"10794","runtime":99,"imdbId":"tt0063415","trailer":"http:\/\/www.youtube.com\/watch?v=IOGx3P5THJs","version":148,"lastModified":"1301903817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3a\/4bc930c4017a3c57fe013e3a\/the-party-mid.jpg","studio":"The Mirisch Corporation","genre":"Comedy","title":"The Party","releaseDate":-55036800000,"language":"en","tagline":"If you've ever been to a wilder party... you're under arrest!","type":"Movie","_key":"40743"} +{"label":"Claudine Longet","version":23,"id":"66834","lastModified":"1301902085000","name":"Claudine Longet","type":"Person","_key":"40744"} +{"label":"Natalia Borisova","version":23,"id":"66835","lastModified":"1301902085000","name":"Natalia Borisova","type":"Person","_key":"40745"} +{"label":"Jean Carson","version":25,"id":"66836","lastModified":"1301901942000","name":"Jean Carson","type":"Person","_key":"40746"} +{"label":"Tell No One","description":"A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.","id":"10795","runtime":125,"imdbId":"tt0362225","trailer":"http:\/\/www.youtube.com\/watch?v=ryMVzQsTmZY","version":158,"lastModified":"1301902719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e47\/4bc930c5017a3c57fe013e47\/ne-le-dis-a-personne-mid.jpg","studio":"Les Productions du Tr\u00e9sor","genre":"Thriller","title":"Tell No One","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"40747"} +{"label":"Florence Thomassin","version":31,"id":"66838","lastModified":"1301901683000","name":"Florence Thomassin","type":"Person","_key":"40748"} +{"label":"Philippe Lefebvre","version":33,"id":"66839","lastModified":"1301901996000","name":"Philippe Lefebvre","type":"Person","_key":"40749"} +{"label":"The One","description":"A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.","id":"10796","runtime":87,"imdbId":"tt0267804","trailer":"http:\/\/www.youtube.com\/watch?v=1f51c0mimTc","version":215,"lastModified":"1301902137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08c\/4c25265d5e73d61a9800008c\/the-one-mid.jpg","studio":"Revolution Studios","genre":"Action","title":"The One","releaseDate":1004659200000,"language":"en","type":"Movie","_key":"40750"} +{"label":"Richard Steinmetz","version":23,"id":"129124","lastModified":"1301902217000","name":"Richard Steinmetz","type":"Person","_key":"40751"} +{"label":"Tucker Smallwood","version":22,"id":"92777","lastModified":"1301902576000","name":"Tucker Smallwood","type":"Person","_key":"40752"} +{"label":"David Keats","version":18,"id":"141489","lastModified":"1301902218000","name":"David Keats","type":"Person","_key":"40753"} +{"label":"Ron Zimmerman","version":18,"id":"141490","lastModified":"1301902213000","name":"Ron Zimmerman","type":"Person","_key":"40754"} +{"label":"Darin Morgan","version":18,"id":"141491","lastModified":"1301902215000","name":"Darin Morgan","type":"Person","_key":"40755"} +{"label":"Mark Borchardt","version":31,"id":"87794","lastModified":"1301902326000","name":"Mark Borchardt","type":"Person","_key":"40756"} +{"label":"Terkel i knibe","description":"Terkel g\u00e5r i 6. klasse, har kr\u00f8ller, b\u00f8jle p\u00e5 t\u00e6nderne, en irriterende lilles\u00f8ster og er lidt af en bangebuks. Hans liv bliver for alvor besv\u00e6rligt, da Fede Dorit spinger fra et vindue efter at Terkel har mobbet hende. ","id":"10797","runtime":77,"imdbId":"tt0386820","version":102,"lastModified":"1301905634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e61\/4bc930ca017a3c57fe013e61\/terkel-i-knibe-mid.jpg","genre":"Animation","title":"Terkel i knibe","releaseDate":1080864000000,"language":"en","type":"Movie","_key":"40757"} +{"label":"Kresten Vestbjerg Andersen","version":21,"id":"66879","lastModified":"1301902015000","name":"Kresten Vestbjerg Andersen","type":"Person","_key":"40758"} +{"label":"Thorbj\u00f8rn Christoffersen","version":21,"id":"66880","lastModified":"1301902025000","name":"Thorbj\u00f8rn Christoffersen","type":"Person","_key":"40759"} +{"label":"Anders Matthesen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/155\/4c9ceaf47b9aa1430f000155\/anders-matthesen-profile.jpg","version":57,"birthday":"173833200000","id":"66843","birthplace":"Copenhagen","lastModified":"1301901260000","name":"Anders Matthesen","type":"Person","_key":"40760"} +{"label":"Kim Mattheson","version":19,"id":"66844","lastModified":"1301901875000","name":"Kim Mattheson","type":"Person","_key":"40761"} +{"label":"Les Chevaliers du ciel","description":"No overview found.","id":"10798","runtime":102,"imdbId":"tt0421974","version":127,"lastModified":"1301903656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6f\/4bc930cc017a3c57fe013e6f\/les-chevaliers-du-ciel-mid.jpg","genre":"Action","title":"Les Chevaliers du ciel","releaseDate":1129334400000,"language":"en","type":"Movie","_key":"40762"} +{"label":"Empire of the Wolves","description":"No overview found.","id":"10799","runtime":128,"imdbId":"tt0402158","version":169,"lastModified":"1301902237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a04\/4cf256ca5e73d61e3c000a04\/l-empire-des-loups-mid.jpg","genre":"Action","title":"Empire of the Wolves","releaseDate":1113955200000,"language":"en","tagline":"If You Can't Remember Your Past...You Can't Save Your Future.","type":"Movie","_key":"40763"} +{"label":"Dragon Hunters","description":"Dragon Hunters is a fantastic tale telling the adventures of two dragon hunters: the world has become a vast conglomerate of islands of varying size and shape. This babbling universe is mainly peopled with ruthless rogues, surly peasants and illiterate, petty lords Their main concerns revolve around two fundamental rules : Eat and don't get eaten.","id":"10800","runtime":80,"imdbId":"tt0944834","trailer":"http:\/\/www.youtube.com\/watch?v=PdaKvAjc768","version":191,"lastModified":"1301907465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1b\/4c0c667c017a3c7e87000a1b\/chasseurs-de-dragons-mid.jpg","studio":"Futurikon","genre":"Adventure","title":"Dragon Hunters","releaseDate":1205971200000,"language":"en","type":"Movie","_key":"40764"} +{"label":"Guillaume Ivernel","version":27,"id":"66856","lastModified":"1301901452000","name":"Guillaume Ivernel","type":"Person","_key":"40765"} +{"label":"Arthur Qwak","version":35,"id":"66857","lastModified":"1301901452000","name":"Arthur Qwak","type":"Person","_key":"40766"} +{"label":"Amanda Lear","version":27,"id":"66872","lastModified":"1301901083000","name":"Amanda Lear","type":"Person","_key":"40767"} +{"label":"Das Superweib","description":"No overview found.","id":"10801","runtime":86,"imdbId":"tt0117788","version":44,"lastModified":"1301904998000","genre":"Comedy","title":"Das Superweib","releaseDate":826156800000,"language":"en","type":"Movie","_key":"40768"} +{"label":"Showgirls","description":"A young drifter, named Nomi, arrives in Las Vegas to become a dancer and soon sets about clawing and pushing her way to become the top of the Vegas showgirls.","id":"10802","runtime":128,"imdbId":"tt0114436","version":146,"lastModified":"1302025538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4cb1ddde5e73d65b820003df\/showgirls-mid.jpg","studio":"Vegas Productions","genre":"Drama","title":"Showgirls","releaseDate":811728000000,"language":"en","type":"Movie","_key":"40769"} +{"label":"Logan's Run","description":"An idyllic sci-fi future has one major drawback: life must end at 30.","id":"10803","runtime":120,"imdbId":"tt0074812","trailer":"http:\/\/www.youtube.com\/watch?v=PSEoDF5zP9w","version":178,"lastModified":"1301903120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50f\/4cb3373d7b9aa1263d00050f\/logan-s-run-mid.jpg","genre":"Action","title":"Logan's Run","releaseDate":204336000000,"language":"en","tagline":"The only thing you can't have in Logan's world is your 30th birthday. Unless you run away.","type":"Movie","_key":"40770"} +{"label":"King Ralph","description":"As the only relative to take over the Royal throne, a down on his luck American slob must learn the ways of the English.","id":"10804","runtime":97,"imdbId":"tt0102216","version":156,"lastModified":"1301905195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4c2e06357b9aa16661000087\/king-ralph-mid.jpg","genre":"Comedy","title":"King Ralph","releaseDate":666576000000,"language":"en","type":"Movie","_key":"40771"} +{"label":"Staying Alive","description":"No overview found.","id":"10805","runtime":93,"imdbId":"tt0086361","version":205,"lastModified":"1301905389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed2\/4bc930d6017a3c57fe013ed2\/staying-alive-mid.jpg","genre":"Action","title":"Staying Alive","releaseDate":426729600000,"language":"en","type":"Movie","_key":"40772"} +{"label":"In & Out","description":"A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.","id":"10806","runtime":90,"imdbId":"tt0119360","version":138,"lastModified":"1301903904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed7\/4bc930d9017a3c57fe013ed7\/in-out-mid.jpg","genre":"Comedy","title":"In & Out","releaseDate":873849600000,"language":"en","type":"Movie","_key":"40773"} +{"label":"Kein Pardon","description":"No overview found.","id":"10807","runtime":97,"imdbId":"tt0104602","version":72,"lastModified":"1301903787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee1\/4bc930d9017a3c57fe013ee1\/kein-pardon-mid.jpg","genre":"Comedy","title":"Kein Pardon","releaseDate":730598400000,"language":"en","type":"Movie","_key":"40774"} +{"label":"Hape Kerkeling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/168\/4d2075e35e73d66b30002168\/hape-kerkeling-profile.jpg","version":64,"birthday":"1291849200000","id":"66893","birthplace":"Recklinghausen, Germany","lastModified":"1301904091000","name":"Hape Kerkeling","type":"Person","_key":"40775"} +{"label":"Heinz Schenk","version":20,"id":"66894","lastModified":"1301902177000","name":"Heinz Schenk","type":"Person","_key":"40776"} +{"label":"Margret Homeyer","version":20,"id":"66895","lastModified":"1301902012000","name":"Margret Homeyer","type":"Person","_key":"40777"} +{"label":"Dr. Dolittle 2","description":"Dr. John Dolittle the beloved doctor is back, but this time around he plays cupid to bumbling circus bear Archie as he's so smitten by a Pacific Western bear female, Ava. Dr. Dolittle must help a group of forest creatures to save their forest. But with the aid of his mangy, madcap animal friends, Dr. Dolittle must teach Archie the ways of true romance in time to save his species and his home before their habit is gone. So John held a meeting for every animal in the forest to not give up without ","id":"10808","runtime":87,"imdbId":"tt0240462","version":147,"lastModified":"1301902850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eea\/4bc930da017a3c57fe013eea\/dr-dolittle-2-mid.jpg","genre":"Comedy","title":"Dr. Dolittle 2","releaseDate":992908800000,"language":"en","type":"Movie","_key":"40778"} +{"label":"Los debutantes","description":"No overview found.","id":"10809","runtime":116,"imdbId":"tt0384036","version":87,"lastModified":"1301904042000","genre":"Drama","title":"Los debutantes","releaseDate":1055462400000,"language":"en","type":"Movie","_key":"40779"} +{"label":"Andr\u00e9s Waissbluth","version":20,"id":"66900","lastModified":"1301902333000","name":"Andr\u00e9s Waissbluth","type":"Person","_key":"40780"} +{"label":"N\u00e9stor Cantillana","version":20,"id":"66901","lastModified":"1301902333000","name":"N\u00e9stor Cantillana","type":"Person","_key":"40781"} +{"label":"Juan Pablo Miranda","version":23,"id":"66902","lastModified":"1301902333000","name":"Juan Pablo Miranda","type":"Person","_key":"40782"} +{"label":"Antonella R\u00edos","version":20,"id":"66903","lastModified":"1301902333000","name":"Antonella R\u00edos","type":"Person","_key":"40783"} +{"label":"Alejandro Trejo","version":20,"id":"66904","lastModified":"1301902333000","name":"Alejandro Trejo","type":"Person","_key":"40784"} +{"label":"Rosario Tijeras","description":"No overview found.","id":"10810","runtime":126,"imdbId":"tt0382271","version":136,"lastModified":"1301904949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ed\/4d8155ed7b9aa128890001ed\/rosario-tijeras-mid.jpg","genre":"Action","title":"Rosario Tijeras","releaseDate":1123804800000,"language":"en","type":"Movie","_key":"40785"} +{"label":"Emilio Maill\u00e9","version":21,"id":"66909","lastModified":"1301902198000","name":"Emilio Maill\u00e9","type":"Person","_key":"40786"} +{"label":"Flora Mart\u00ednez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d8\/4d8158887b9aa12dac0014d8\/flora-mart-nez-profile.jpg","biography":"<font class=\"home_lien_noir_espace\">Actrice Colombo-canadienne, Flora \nMart\u00ednez d\u00e9bute sa carri\u00e8re en travaillant pour la t\u00e9l\u00e9vision \ncolombienne dans des t\u00e9l\u00e9novelas en 1995.\n\n\n\nElle fait sa premi\u00e8re incursion sur le petit \u00e9cran am\u00e9ricain dans un \u00e9pisode de la s\u00e9rie <b>New York District<\/b>\n . Au th\u00e9\u00e2tre, elle \u00e9largit son r\u00e9pertoire gr\u00e2ce \u00e0 des auteurs aussi \ndiff\u00e9rents que Tennessee Williams, Chekov, ou Dosto\u00efevski ainsi qu\u2019\u00e0 \nplusieurs spectacles du Children\u00b4s Theatre de SEA New York.\n\n\n\nFlor","version":35,"id":"66913","lastModified":"1301901952000","name":"Flora Mart\u00ednez","type":"Person","_key":"40787"} +{"label":"Manolo Cardona","version":23,"id":"66914","lastModified":"1301902191000","name":"Manolo Cardona","type":"Person","_key":"40788"} +{"label":"Rodrigo Oviedo","version":21,"id":"66915","lastModified":"1301902149000","name":"Rodrigo Oviedo","type":"Person","_key":"40789"} +{"label":"Camilo - Der lange Weg zum Ungehorsam","description":"No overview found.","id":"10811","runtime":85,"imdbId":"tt1281369","homepage":"http:\/\/www.camilo-film.org\/info","version":50,"lastModified":"1301906158000","genre":"Documentary","title":"Camilo - Der lange Weg zum Ungehorsam","releaseDate":1208995200000,"language":"en","type":"Movie","_key":"40790"} +{"label":"Camilo Mejia","version":18,"id":"66922","lastModified":"1301902149000","name":"Camilo Mejia","type":"Person","_key":"40791"} +{"label":"Fernando Suarez del Solar","version":18,"id":"66923","lastModified":"1301902149000","name":"Fernando Suarez del Solar","type":"Person","_key":"40792"} +{"label":"Bl\u00f6de M\u00fctze!","description":"No overview found.","id":"10812","runtime":90,"imdbId":"tt0825745","homepage":"http:\/\/www.bloedemuetze.de\/","version":46,"lastModified":"1301904013000","studio":"Bayrischer Rundfunk","genre":"Drama","title":"Bl\u00f6de M\u00fctze!","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"40793"} +{"label":"Johannes Schmid","version":21,"id":"66928","lastModified":"1301901875000","name":"Johannes Schmid","type":"Person","_key":"40794"} +{"label":"Johann Hillmann","version":19,"id":"66929","lastModified":"1301902084000","name":"Johann Hillmann","type":"Person","_key":"40795"} +{"label":"Lea Eisleb","version":19,"id":"66930","lastModified":"1301901875000","name":"Lea Eisleb","type":"Person","_key":"40796"} +{"label":"Butz Buse","version":19,"id":"66931","lastModified":"1301902084000","name":"Butz Buse","type":"Person","_key":"40797"} +{"label":"Was am Ende z\u00e4hlt","description":"No overview found.","id":"10813","runtime":100,"imdbId":"tt0935113","version":130,"lastModified":"1301903725000","studio":"credofilm","genre":"Drama","title":"Was am Ende z\u00e4hlt","releaseDate":1171584000000,"language":"en","type":"Movie","_key":"40798"} +{"label":"Julia von Heinz","version":21,"id":"66936","lastModified":"1301902149000","name":"Julia von Heinz","type":"Person","_key":"40799"} +{"label":"Benjamin Kramme","version":20,"id":"66938","lastModified":"1301902149000","name":"Benjamin Kramme","type":"Person","_key":"40800"} +{"label":"Anja Beatrice Kaul","version":21,"id":"66939","lastModified":"1301901782000","name":"Anja Beatrice Kaul","type":"Person","_key":"40801"} +{"label":"Impy's Wonderland","description":"No overview found.","id":"10814","runtime":84,"imdbId":"tt1210117","homepage":"http:\/\/www.urmelvollinfahrt.film.de\/","version":130,"lastModified":"1301904644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef3\/4bc930db017a3c57fe013ef3\/urmel-voll-in-fahrt-mid.jpg","studio":"Agir","genre":"Animation","title":"Impy's Wonderland","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"40802"} +{"label":"Reinhard Klooss","version":43,"id":"57035","lastModified":"1301901495000","name":"Reinhard Klooss","type":"Person","_key":"40803"} +{"label":"Holger Tappe","version":27,"id":"66942","lastModified":"1301901781000","name":"Holger Tappe","type":"Person","_key":"40804"} +{"label":"Hannes Maurer","version":21,"id":"66945","lastModified":"1301901813000","name":"Hannes Maurer","type":"Person","_key":"40805"} +{"label":"Urmel","description":"No overview found.","id":"10815","version":16,"lastModified":"1300979123000","title":"Urmel","language":"en","type":"Movie","_key":"40806"} +{"label":"Meine Mutter, mein Bruder und ich!","description":"No overview found.","id":"10816","runtime":102,"imdbId":"tt0935101","version":39,"lastModified":"1301906732000","studio":"Arte","genre":"Drama","title":"Meine Mutter, mein Bruder und ich!","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"40807"} +{"label":"Nuran Calis","version":20,"id":"66947","lastModified":"1301901822000","name":"Nuran Calis","type":"Person","_key":"40808"} +{"label":"Lida Zakaryan","version":20,"id":"66951","lastModified":"1301901815000","name":"Lida Zakaryan","type":"Person","_key":"40809"} +{"label":"Kurt Ipekkaya","version":20,"id":"66952","lastModified":"1301901836000","name":"Kurt Ipekkaya","type":"Person","_key":"40810"} +{"label":"Glue","description":"No overview found.","id":"10817","runtime":110,"imdbId":"tt0484039","version":229,"lastModified":"1301904998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efc\/4bc930db017a3c57fe013efc\/glue-mid.jpg","studio":"Diablo Films","genre":"Drama","title":"Glue","releaseDate":1138838400000,"language":"en","type":"Movie","_key":"40811"} +{"label":"Alexis Dos Santos","version":21,"id":"66956","lastModified":"1301901782000","name":"Alexis Dos Santos","type":"Person","_key":"40812"} +{"label":"Nahuel P\u00e9rez Biscayart","version":21,"id":"66957","lastModified":"1301901400000","name":"Nahuel P\u00e9rez Biscayart","type":"Person","_key":"40813"} +{"label":"Nahuel Viale","version":20,"id":"66958","lastModified":"1301901952000","name":"Nahuel Viale","type":"Person","_key":"40814"} +{"label":"Ver\u00f3nica Llin\u00e1s","version":20,"id":"66959","lastModified":"1301901814000","name":"Ver\u00f3nica Llin\u00e1s","type":"Person","_key":"40815"} +{"label":"Water Lilies","description":"Summer in a new suburb outside Paris. Nothing to do but look at the ceiling. Marie, Anne and Floriane are 15. Their paths cross in the corridors at the local swimming pool, where love and desire make a sudden, dramatic appearance.","id":"10818","runtime":85,"imdbId":"tt0869977","version":123,"lastModified":"1302039548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc930dc017a3c57fe013f05\/naissance-des-pieuvres-mid.jpg","studio":"Balthazar Productions","genre":"Drama","title":"Water Lilies","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"40816"} +{"label":"C\u00e9line Sciamma","version":21,"id":"68813","lastModified":"1301901725000","name":"C\u00e9line Sciamma","type":"Person","_key":"40817"} +{"label":"Pauline Acquart","version":19,"id":"68814","lastModified":"1301901280000","name":"Pauline Acquart","type":"Person","_key":"40818"} +{"label":"Louise Blach\u00e8re","version":19,"id":"68815","lastModified":"1301901536000","name":"Louise Blach\u00e8re","type":"Person","_key":"40819"} +{"label":"Adele Haenel","version":20,"id":"68816","lastModified":"1301901280000","name":"Adele Haenel","type":"Person","_key":"40820"} +{"label":"Warren Jacquin","version":19,"id":"68817","lastModified":"1301901725000","name":"Warren Jacquin","type":"Person","_key":"40821"} +{"label":"Wesele","description":"No overview found.","id":"10819","runtime":109,"imdbId":"tt0420318","version":66,"lastModified":"1301906732000","genre":"Comedy","title":"Wesele","releaseDate":1092355200000,"language":"en","type":"Movie","_key":"40822"} +{"label":"Robert Wabich","version":23,"id":"66964","lastModified":"1301902391000","name":"Robert Wabich","type":"Person","_key":"40823"} +{"label":"Krystyna Rutkowska","version":18,"id":"66965","lastModified":"1301902333000","name":"Krystyna Rutkowska","type":"Person","_key":"40824"} +{"label":"Andrzej Beja-Zaborski","version":18,"id":"66967","lastModified":"1301902333000","name":"Andrzej Beja-Zaborski","type":"Person","_key":"40825"} +{"label":"Wojciech Skibinski","version":18,"id":"66968","lastModified":"1301901953000","name":"Wojciech Skibinski","type":"Person","_key":"40826"} +{"label":"Bartlomiej Topa","version":24,"id":"68828","lastModified":"1301902354000","name":"Bartlomiej Topa","type":"Person","_key":"40827"} +{"label":"Wojciech Smarzowski","version":24,"id":"66969","lastModified":"1301902149000","name":"Wojciech Smarzowski","type":"Person","_key":"40828"} +{"label":"Ekkelins Knecht","description":"No overview found.","id":"10820","runtime":110,"imdbId":"tt0489699","version":37,"lastModified":"1301905329000","genre":"Adventure","title":"Ekkelins Knecht","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"40829"} +{"label":"Reinhard Kungel","version":20,"id":"66970","lastModified":"1301901810000","name":"Reinhard Kungel","type":"Person","_key":"40830"} +{"label":"Philipp J. Sprongl","version":18,"id":"66974","lastModified":"1301901683000","name":"Philipp J. Sprongl","type":"Person","_key":"40831"} +{"label":"Max Hermann","version":20,"id":"66975","lastModified":"1301901994000","name":"Max Hermann","type":"Person","_key":"40832"} +{"label":"Peter Besl","version":20,"id":"66976","lastModified":"1301901782000","name":"Peter Besl","type":"Person","_key":"40833"} +{"label":"Pia Meier","version":20,"id":"66977","lastModified":"1301901782000","name":"Pia Meier","type":"Person","_key":"40834"} +{"label":"Katrin Klewitz","version":20,"id":"66978","lastModified":"1301902333000","name":"Katrin Klewitz","type":"Person","_key":"40835"} +{"label":"120","description":"During the Sarikamis Battle, the Ottoman army runs out of ammunition and appeals to the people of Van for help, who happen to have supplies. However, the First World War is on and all men are fighting at four corners of the empire and therefore can not respond to to the appeal. The young children of Van want to do something...","id":"10821","runtime":114,"imdbId":"tt1166085","homepage":"http:\/\/www.120filmi.com\/","version":64,"lastModified":"1301903155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/237\/4c8cae3b7b9aa16747000237\/120-mid.jpg","genre":"History","title":"120","releaseDate":1203033600000,"language":"en","type":"Movie","_key":"40836"} +{"label":"\u00d6zhan Eren","version":22,"id":"66979","lastModified":"1301902333000","name":"\u00d6zhan Eren","type":"Person","_key":"40837"} +{"label":"Cansel Elcin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/207\/4c8caf0c7b9aa16745000207\/cansel-elcin-profile.jpg","version":26,"id":"66980","lastModified":"1301902041000","name":"Cansel Elcin","type":"Person","_key":"40838"} +{"label":"\u00d6zge \u00d6zberk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4c8caf4e7b9aa1674700023e\/ozge-ozberk-profile.jpg","version":22,"id":"66981","lastModified":"1301901531000","name":"\u00d6zge \u00d6zberk","type":"Person","_key":"40839"} +{"label":"Burak Sergen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/247\/4d14acc75e73d60834002247\/burak-sergen-profile.jpg","biography":"1961 y\u0131l\u0131nda d\u00fcnyaya geldi. Sanat\u00e7\u0131 bir aileden gelen Sergen, babas\u0131 opera sanat\u00e7\u0131s\u0131, annesi ise tiyatro sanat\u00e7\u0131s\u0131 idi. Karizmatik oyuncu orta \u00f6\u011frenim ve lise hayat\u0131n\u0131n ard\u0131ndan Hacettepe \u00dcniversitesi Tiyatro b\u00f6l\u00fcm\u00fcnde e\u011fitim hayat\u0131n\u0131 devam ettirdi. Mezun olduktan sonra bir\u00e7ok tiyatro sahnelerinde yer ald\u0131 ve 1985 y\u0131l\u0131nda Devlet Tiyatrolar\u0131'na giri\u015f yapt\u0131. 1999 y\u0131l\u0131nda b\u00fcy\u00fck bir a\u015fk evlenedi\u011fi \u015fuan ki e\u015fi olan I\u015f\u0131l Sergen ile mutlu bir evlilik s\u00fcrd\u00fcrmektedir","version":26,"id":"66982","lastModified":"1301901701000","name":"Burak Sergen","type":"Person","_key":"40840"} +{"label":"Savage Grace","description":"A dramatization of the shocking Barbara Daly Baekeland murder case, which happened in a posh London flat on Friday 17 November 1972. The bloody crime caused a stir on both sides of the Atlantic and remains one of the most memorable American Tragedies.","id":"10822","runtime":97,"imdbId":"tt0379976","trailer":"http:\/\/www.youtube.com\/watch?v=ZrJB48uTSeA","version":159,"lastModified":"1301903663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f12\/4bc930dd017a3c57fe013f12\/savage-grace-mid.jpg","genre":"Drama","title":"Savage Grace","releaseDate":1179446400000,"language":"en","type":"Movie","_key":"40841"} +{"label":"Tom Kalin","version":21,"id":"66983","lastModified":"1301901521000","name":"Tom Kalin","type":"Person","_key":"40842"} +{"label":"Children of the Corn","description":"A boy preacher named Isaac goes to a town in Nebraska called Gatlin and gets all the children to murder every adult in town.","id":"10823","runtime":93,"imdbId":"tt0087050","trailer":"http:\/\/www.youtube.com\/watch?v=1392","version":125,"lastModified":"1301903121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1f\/4bc930de017a3c57fe013f1f\/children-of-the-corn-mid.jpg","genre":"Drama","title":"Children of the Corn","releaseDate":447638400000,"language":"en","type":"Movie","_key":"40843"} +{"label":"Eric Freeman","version":18,"id":"151123","lastModified":"1301903141000","name":"Eric Freeman","type":"Person","_key":"40844"} +{"label":"Fritz Kiersch","version":23,"id":"66987","lastModified":"1301901725000","name":"Fritz Kiersch","type":"Person","_key":"40845"} +{"label":"Candyman: Farewell to the Flesh","description":"The Candyman moves on to New Orleans and starts his horrific murders once more. This time, his intended victim is a school teacher. Her father was killed by the Candyman, and brother wrongly accused of the murders.","id":"10824","runtime":93,"imdbId":"tt0112625","version":98,"lastModified":"1301903213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2d\/4bc930e2017a3c57fe013f2d\/candyman-farewell-to-the-flesh-mid.jpg","genre":"Fantasy","title":"Candyman: Farewell to the Flesh","releaseDate":795398400000,"language":"en","type":"Movie","_key":"40846"} +{"label":"David Gianopoulos","version":20,"id":"66994","lastModified":"1301902373000","name":"David Gianopoulos","type":"Person","_key":"40847"} +{"label":"Trigger","description":"No overview found.","id":"10825","runtime":96,"imdbId":"tt0476496","version":113,"lastModified":"1301907169000","genre":"Drama","title":"Trigger","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"40848"} +{"label":"Gunnar Vikene","version":23,"id":"66995","lastModified":"1301901564000","name":"Gunnar Vikene","type":"Person","_key":"40849"} +{"label":"Ann Kristin S\u00f8mme","version":20,"id":"67002","lastModified":"1301902333000","name":"Ann Kristin S\u00f8mme","type":"Person","_key":"40850"} +{"label":"Sven Wollter","version":28,"id":"67003","lastModified":"1301901782000","name":"Sven Wollter","type":"Person","_key":"40851"} +{"label":"Anneke von der Lippe","version":26,"id":"67004","lastModified":"1301901782000","name":"Anneke von der Lippe","type":"Person","_key":"40852"} +{"label":"Adele Karoline Dahl","version":20,"id":"67005","lastModified":"1301902364000","name":"Adele Karoline Dahl","type":"Person","_key":"40853"} +{"label":"Thor Michael Aamodt","version":20,"id":"67006","lastModified":"1301902364000","name":"Thor Michael Aamodt","type":"Person","_key":"40854"} +{"label":"Karo und der liebe Gott","description":"No overview found.","id":"10827","runtime":94,"imdbId":"tt0770183","homepage":"http:\/\/www.karoundderliebegott-derfilm.de\/index.php","version":40,"lastModified":"1301904041000","studio":"Mini Film","genre":"Drama","title":"Karo und der liebe Gott","releaseDate":1162425600000,"language":"en","type":"Movie","_key":"40855"} +{"label":"Danielle Proskar","version":21,"id":"67007","lastModified":"1301902333000","name":"Danielle Proskar","type":"Person","_key":"40856"} +{"label":"Resi Reiner","version":20,"id":"67008","lastModified":"1301902333000","name":"Resi Reiner","type":"Person","_key":"40857"} +{"label":"Markus Gertken","version":20,"id":"67009","lastModified":"1301901953000","name":"Markus Gertken","type":"Person","_key":"40858"} +{"label":"Branko Samarovski","version":26,"id":"67010","lastModified":"1301901782000","name":"Branko Samarovski","type":"Person","_key":"40859"} +{"label":"Bird's Nest - Herzog & de Meuron in China","description":"Schaub and Schindelm\u2019s documentary follows two Swiss star architects, Jacques Herzog and Pierre de Meuron, on two very different projects: the national stadium for the Olympic summer games in Peking 2008 and a city area in the provincial town of Jinhua, China.","id":"10828","runtime":88,"imdbId":"tt1164554","homepage":"http:\/\/www.herzogdemeuron-film.com\/de\/home\/","version":58,"lastModified":"1301902793000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f47\/4bc930e6017a3c57fe013f47\/bird-s-nest-herzog-de-meuron-in-china-mid.jpg","genre":"Documentary","title":"Bird's Nest - Herzog & de Meuron in China","releaseDate":1200960000000,"language":"en","type":"Movie","_key":"40860"} +{"label":"Michael Schindhelm","version":19,"id":"67012","lastModified":"1301901306000","name":"Michael Schindhelm","type":"Person","_key":"40861"} +{"label":"Christoph Schaub","version":24,"id":"67011","lastModified":"1301901563000","name":"Christoph Schaub","type":"Person","_key":"40862"} +{"label":"Pierre De Meuron","version":20,"id":"67013","lastModified":"1301904120000","name":"Pierre De Meuron","type":"Person","_key":"40863"} +{"label":"Jacques Herzog","version":19,"id":"67014","lastModified":"1301901475000","name":"Jacques Herzog","type":"Person","_key":"40864"} +{"label":"Tremors 3: Back to Perfection","description":"Burt Gummer returns home to Perfection, Nev., to find that the town of terror has become a theme park, and when the simulated giant worm attacks turn real, the survivalist must battle the creatures once again. Gummer pits his impressive knowledge of weaponry against the newest and deadliest generation of flesh-eating graboids, with help from two young entrepreneurs.","id":"10829","runtime":104,"imdbId":"tt0259685","version":142,"lastModified":"1301902788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4d\/4d5087f17b9aa13aaf00df4d\/tremors-3-back-to-perfection-mid.jpg","studio":"Stampede Entertainment","genre":"Action","title":"Tremors 3: Back to Perfection","releaseDate":1001980800000,"language":"en","tagline":"The Food Chain Just Grew Another Link.","type":"Movie","_key":"40865"} +{"label":"Michael Gross","version":31,"id":"67015","lastModified":"1301901564000","name":"Michael Gross","type":"Person","_key":"40866"} +{"label":"Shawn Christian","version":22,"id":"67017","lastModified":"1301902259000","name":"Shawn Christian","type":"Person","_key":"40867"} +{"label":"Susan Chuang","version":21,"id":"67020","lastModified":"1301902259000","name":"Susan Chuang","type":"Person","_key":"40868"} +{"label":"Brent Maddock","version":59,"id":"26475","lastModified":"1301901648000","name":"Brent Maddock","type":"Person","_key":"40869"} +{"label":"Matilda","description":"See the world from a kid's-eye view with Matilda, a modern fairytale that mixes hilarious humour with the magical message of love. Matilda is a super-smart little girl who's woefully misunderstood by her parents, her brother, and an evil school principal. But with the help of a brave best friend and a wonderful teacher, Matilda discovers she doesn't have to get mad to get even.","id":"10830","runtime":102,"imdbId":"tt0117008","trailer":"http:\/\/www.youtube.com\/watch?v=pnzLRDDijW0","version":198,"lastModified":"1301902391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f61\/4bc930e9017a3c57fe013f61\/matilda-mid.jpg","genre":"Adventure","title":"Matilda","releaseDate":838512000000,"language":"en","tagline":"A little magic goes a long way.","type":"Movie","_key":"40870"} +{"label":"Brian Levinson","version":19,"id":"109693","lastModified":"1301902636000","name":"Brian Levinson","type":"Person","_key":"40871"} +{"label":"Kiami Davael","version":19,"id":"109694","lastModified":"1301902636000","name":"Kiami Davael","type":"Person","_key":"40872"} +{"label":"The Draughtman's Contract","description":"Peter Greenaway's first fiction feature (after the mock-documentary The Falls) made him immediately famous and was named one of the most original films of the 1980s by British critics. The action is set in the director's beloved 17th century. Ambitious young artist Mr. Neville (Anthony Higgins) is invited by Mrs. Herbert (Janet Suzman) to make 12 elaborate sketches of her estate. Besides money, the contract includes sexual favors that Mrs. Herbert will offer to the draughtsman in the absence of ","id":"10831","runtime":103,"imdbId":"tt0083851","version":53,"lastModified":"1301905331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cb\/4c977f547b9aa10d5b0004cb\/the-draughtman-s-contract-mid.jpg","genre":"Drama","title":"The Draughtman's Contract","releaseDate":402364800000,"language":"en","type":"Movie","_key":"40873"} +{"label":"Janet Suzman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dc\/4ca4ed495e73d636f90002dc\/janet-suzman-profile.jpg","version":32,"id":"67026","lastModified":"1301901691000","name":"Janet Suzman","type":"Person","_key":"40874"} +{"label":"Anne-Louise Lambert","version":23,"id":"67027","lastModified":"1301901875000","name":"Anne-Louise Lambert","type":"Person","_key":"40875"} +{"label":"Hugh Fraser","version":46,"id":"67028","lastModified":"1301901956000","name":"Hugh Fraser","type":"Person","_key":"40876"} +{"label":"Them","description":"\nA young couple lead a happy, quiet life in the countryside. But little do they know they're being surrounded. When night falls, the couple will come face to face with THEM. Who are they? What do they want? The answers will take them to the very limits of fear itself.\"","id":"10832","runtime":77,"imdbId":"tt0465203","version":151,"lastModified":"1301906247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f80\/4bc930ee017a3c57fe013f80\/ils-mid.jpg","studio":"Eskwad","genre":"Horror","title":"Them","releaseDate":1144454400000,"language":"en","type":"Movie","_key":"40877"} +{"label":"Adriana Mocca","version":20,"id":"67030","lastModified":"1301902084000","name":"Adriana Mocca","type":"Person","_key":"40878"} +{"label":"Maria Roman","version":20,"id":"67031","lastModified":"1301902259000","name":"Maria Roman","type":"Person","_key":"40879"} +{"label":"Camelia Maxim","version":20,"id":"67032","lastModified":"1301902259000","name":"Camelia Maxim","type":"Person","_key":"40880"} +{"label":"Heartbreakers","description":"A mother and daughter con team seduce and scam wealthy men.","id":"10833","runtime":123,"imdbId":"tt0125022","version":139,"lastModified":"1301902182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8d\/4bc930ef017a3c57fe013f8d\/heartbreakers-mid.jpg","genre":"Comedy","title":"Heartbreakers","releaseDate":978307200000,"language":"en","type":"Movie","_key":"40881"} +{"label":"Kings of the Road","description":"A traveling projection-equipment mechanic travels in Western Germany along the East-German border, visiting worn-out film-theatres. meets up with a depressed young man whose marriage has just broken up, and the two decide to travel together.","id":"10834","runtime":175,"imdbId":"tt0073152","version":74,"lastModified":"1301903078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f96\/4bc930ef017a3c57fe013f96\/im-lauf-der-zeit-mid.jpg","genre":"Drama","title":"Kings of the Road","releaseDate":194745600000,"language":"en","type":"Movie","_key":"40882"} +{"label":"The Killer","description":"Hong Kong's preeminent director John Woo transforms genres from both the East and the West to create this explosive and masterful action film. Featuring Hong Kong's greatest star, Chow Yun-fat, as a killer with a conscience, the film is an exquisite dissection of morals in a corrupt society, highlighted with slow-motion sequences of brilliantly choreographed gun battles on the streets of Hong Kong","id":"10835","runtime":111,"imdbId":"tt0097202","trailer":"http:\/\/www.youtube.com\/watch?v=OXF0R4dcU5Y","version":194,"lastModified":"1301903685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa3\/4bc930f0017a3c57fe013fa3\/the-killer-mid.jpg","studio":"Film Workshop","genre":"Action","title":"The Killer","releaseDate":615686400000,"language":"en","tagline":"One Vicious Hitman. One Fierce Cop. Ten Thousand Bullets.","type":"Movie","_key":"40883"} +{"label":"Sally Yeh","version":23,"id":"67046","lastModified":"1301901492000","name":"Sally Yeh","type":"Person","_key":"40884"} +{"label":"Kong Chu","version":28,"id":"67047","lastModified":"1301901573000","name":"Kong Chu","type":"Person","_key":"40885"} +{"label":"Dagon","description":"A boating accident off the coast of Spain sends Paul and his girlfriend Barbara to the decrepit fishing village of Imboca. As night falls, people start to disappear and things not quite human start to appear. Paul is pursued by the entire town. Running for his life, he uncovers Imboca's secret..they worship Dagon, a monstrous god of the sea...and Dagon's unholy offspring are on the loose...","id":"10836","runtime":95,"imdbId":"tt0264508","version":83,"lastModified":"1301903242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb5\/4bc930f4017a3c57fe013fb5\/dagon-mid.jpg","genre":"Fantasy","title":"Dagon","releaseDate":1002844800000,"language":"en","type":"Movie","_key":"40886"} +{"label":"Ezra Godden","version":21,"id":"67050","lastModified":"1301901612000","name":"Ezra Godden","type":"Person","_key":"40887"} +{"label":"Raquel Mero\u00f1o","version":21,"id":"67051","lastModified":"1301901725000","name":"Raquel Mero\u00f1o","type":"Person","_key":"40888"} +{"label":"Macarena G\u00f3mez","version":30,"id":"67052","lastModified":"1301901444000","name":"Macarena G\u00f3mez","type":"Person","_key":"40889"} +{"label":"Birgit Bofarull","version":21,"id":"67053","lastModified":"1301901612000","name":"Birgit Bofarull","type":"Person","_key":"40890"} +{"label":"Duck Tales The Movie: Treasure of the Lost Lamp","description":"Scrooge McDuck, his dimwitted pilot Launch Pad, and his newphews Huey, Dewey and Louie, with Webby, arrive in Egypt where Scrooge finds the lost treasure of Collie Baba, unbeknownst to Scrooge, a magic lamp was included inside the treasure, so while the nephews have fun with the genie, they all have no idea that they're being stalked by a power hungry sorceror named Murlock and his dimwitted thief","id":"10837","runtime":74,"imdbId":"tt0099472","trailer":"http:\/\/www.youtube.com\/watch?v=3014","version":112,"lastModified":"1301902063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc2\/4bc930f5017a3c57fe013fc2\/ducktales-the-movie-treasure-of-the-lost-lamp-mid.jpg","genre":"Adventure","title":"Duck Tales The Movie: Treasure of the Lost Lamp","releaseDate":649641600000,"language":"en","tagline":"Scrooge McDuck's First Full-Length Animated Feature Film","type":"Movie","_key":"40891"} +{"label":"Bob Hathcock","version":31,"id":"67056","lastModified":"1301901875000","name":"Bob Hathcock","type":"Person","_key":"40892"} +{"label":"Dracula 3000","description":"Four words: Vampire Coolio in space. ","id":"10838","runtime":86,"imdbId":"tt0367677","version":159,"lastModified":"1301903161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcb\/4bc930f6017a3c57fe013fcb\/dracula-3000-mid.jpg","genre":"Horror","title":"Dracula 3000","releaseDate":1092009600000,"language":"en","type":"Movie","_key":"40893"} +{"label":"Grant Swanby","version":24,"id":"67059","lastModified":"1301901632000","name":"Grant Swanby","type":"Person","_key":"40894"} +{"label":"Cross of Iron","description":"A squad of German soldiers fighting on the Eastern Front during WWII led by a battle-hardened officer fight to survive Soviet attacks and dogmatic commanders in a chaotic and lethal environment in this sympathetic portrayal of another side of the war not commonly portrayed in Hollywood film.","id":"10839","runtime":132,"imdbId":"tt0074695","version":261,"lastModified":"1301903226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9d\/4cce19025e73d65023000b9d\/cross-of-iron-mid.jpg","genre":"Action","title":"Cross of Iron","releaseDate":223257600000,"language":"en","type":"Movie","_key":"40895"} +{"label":"On Your Mark","description":"This animated short by Miyazaki was created as a music video for the song \"On Your Mark\" by Japanese duo Chage & Aska. The narrative is non-linear with no dialog and loosely follws the song lyrics and chorus. The video feels like a very compressed version of an epic Miyazaki film. The story follows two police men in a futuristic setting in their repeated attempts at rescuing a mysterious winged girl.","id":"10840","runtime":7,"imdbId":"tt0114038","version":83,"lastModified":"1301905563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c5\/4c61e7457b9aa172dc0004c5\/on-your-mark-mid.jpg","genre":"Animation","title":"On Your Mark","releaseDate":805766400000,"language":"en","type":"Movie","_key":"40896"} +{"label":"Breakthrough","description":"No overview found.","id":"10841","runtime":111,"imdbId":"tt0078320","version":89,"lastModified":"1301986877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69e\/4d7c7ffa7b9aa11a0801869e\/steiner-das-eiserne-kreuz-2-mid.jpg","genre":"Drama","title":"Breakthrough","releaseDate":289094400000,"language":"en","type":"Movie","_key":"40897"} +{"label":"Kimy\u00f4 na s\u00e2kasu","description":"The erotic novelist Taeko is writing a morbid story of a family destroyed by incest, murder and abuse. Her assistant, Yuji, sets on a mission to uncover the reality of this story, but the reality might be too much to bear.","id":"10842","runtime":108,"imdbId":"tt0492784","version":61,"lastModified":"1301904013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd9\/4bc930f7017a3c57fe013fd9\/kimyo-na-sakasu-mid.jpg","studio":"Sedic","genre":"Horror","title":"Kimy\u00f4 na s\u00e2kasu","releaseDate":1173139200000,"language":"en","type":"Movie","_key":"40898"} +{"label":"Sion Sono","version":34,"id":"67075","lastModified":"1301901644000","name":"Sion Sono","type":"Person","_key":"40899"} +{"label":"Rie Kuwana","version":19,"id":"67087","lastModified":"1301902084000","name":"Rie Kuwana","type":"Person","_key":"40900"} +{"label":"Masumi Miyazaki","version":19,"id":"67084","lastModified":"1301901875000","name":"Masumi Miyazaki","type":"Person","_key":"40901"} +{"label":"Mai Takahashi","version":19,"id":"67089","lastModified":"1301901875000","name":"Mai Takahashi","type":"Person","_key":"40902"} +{"label":"Issei Ishida","version":19,"id":"67085","lastModified":"1301901875000","name":"Issei Ishida","type":"Person","_key":"40903"} +{"label":"Madamu Rej\u00eenu","version":17,"id":"67090","lastModified":"1301902259000","name":"Madamu Rej\u00eenu","type":"Person","_key":"40904"} +{"label":"Hiroshi Ohguchi","version":19,"id":"67092","lastModified":"1301902259000","name":"Hiroshi Ohguchi","type":"Person","_key":"40905"} +{"label":"Tomorowo Taguchi","version":32,"id":"67091","lastModified":"1301901716000","name":"Tomorowo Taguchi","type":"Person","_key":"40906"} +{"label":"Y\u00fbya Ishikawa","version":24,"id":"67093","lastModified":"1301901633000","name":"Y\u00fbya Ishikawa","type":"Person","_key":"40907"} +{"label":"After Hours","description":"A bored, buttoned up button down word processor, Paul, sets out on a late-night date. He's about to become the punchline of a giant cosmic joke.","id":"10843","runtime":97,"imdbId":"tt0088680","trailer":"http:\/\/www.youtube.com\/watch?v=lLHM-wPecz0","version":225,"lastModified":"1301902609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fef\/4bc930fc017a3c57fe013fef\/after-hours-mid.jpg","studio":"The Geffen Company","genre":"Comedy","title":"After Hours","releaseDate":495417600000,"language":"en","type":"Movie","_key":"40908"} +{"label":"Robert Plunket","version":20,"id":"77253","lastModified":"1301902084000","name":"Robert Plunket","type":"Person","_key":"40909"} +{"label":"Larry Block","version":20,"id":"77254","lastModified":"1301902084000","name":"Larry Block","type":"Person","_key":"40910"} +{"label":"Murray Moston","version":20,"id":"77255","lastModified":"1301902084000","name":"Murray Moston","type":"Person","_key":"40911"} +{"label":"Out of the Blue","description":"Ordinary people find extraordinary courage in the face of madness. On 13-14 November 1990 that madness came to Aramoana, a small New Zealand seaside village. It came in the form of a lone gunman with a high-powered semi-automatic rifle. As he stalked his victims the terrified and confused residents were trapped in the village for 24 hours while a handful of under-resourced and underarmed local policeman risked their lives trying to find him and save the survivors. By dawn 13 people lay dead. Thi","id":"10844","runtime":103,"imdbId":"tt0839938","version":200,"lastModified":"1301903632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d5\/4c00dc31017a3c70310010d5\/out-of-the-blue-mid.jpg","genre":"Drama","title":"Out of the Blue","releaseDate":1160611200000,"language":"en","type":"Movie","_key":"40912"} +{"label":"Robert Sarkies","version":20,"id":"67106","lastModified":"1301901875000","name":"Robert Sarkies","type":"Person","_key":"40913"} +{"label":"Simon Ferry","version":19,"id":"67121","lastModified":"1301902084000","name":"Simon Ferry","type":"Person","_key":"40914"} +{"label":"Matthew Sunderland","version":20,"id":"67119","lastModified":"1301901947000","name":"Matthew Sunderland","type":"Person","_key":"40915"} +{"label":"Lois Lawn","version":19,"id":"67120","lastModified":"1301902084000","name":"Lois Lawn","type":"Person","_key":"40916"} +{"label":"Paul Glover","version":20,"id":"67122","lastModified":"1301902109000","name":"Paul Glover","type":"Person","_key":"40917"} +{"label":"William Kircher","version":19,"id":"67123","lastModified":"1301902084000","name":"William Kircher","type":"Person","_key":"40918"} +{"label":"Georgia Fabish","version":19,"id":"67124","lastModified":"1301902084000","name":"Georgia Fabish","type":"Person","_key":"40919"} +{"label":"Fayth Rasmussen","version":19,"id":"67125","lastModified":"1301902084000","name":"Fayth Rasmussen","type":"Person","_key":"40920"} +{"label":"Timothy Bartlett","version":19,"id":"67126","lastModified":"1301902084000","name":"Timothy Bartlett","type":"Person","_key":"40921"} +{"label":"Murray Davidson","version":19,"id":"67129","lastModified":"1301902084000","name":"Murray Davidson","type":"Person","_key":"40922"} +{"label":"Baxter Cannell","version":19,"id":"67128","lastModified":"1301902084000","name":"Baxter Cannell","type":"Person","_key":"40923"} +{"label":"Tony Bishop","version":21,"id":"67127","lastModified":"1301902084000","name":"Tony Bishop","type":"Person","_key":"40924"} +{"label":"Dave Dudfield","version":19,"id":"67130","lastModified":"1301902084000","name":"Dave Dudfield","type":"Person","_key":"40925"} +{"label":"Nick Duval-Smith","version":19,"id":"67131","lastModified":"1301902084000","name":"Nick Duval-Smith","type":"Person","_key":"40926"} +{"label":"Richard Knowles","version":19,"id":"67134","lastModified":"1301902084000","name":"Richard Knowles","type":"Person","_key":"40927"} +{"label":"Thomas Lee-Batley","version":19,"id":"67135","lastModified":"1301902084000","name":"Thomas Lee-Batley","type":"Person","_key":"40928"} +{"label":"Natalie Ellis","version":19,"id":"67132","lastModified":"1301902084000","name":"Natalie Ellis","type":"Person","_key":"40929"} +{"label":"Fatu Ioane","version":19,"id":"67133","lastModified":"1301902084000","name":"Fatu Ioane","type":"Person","_key":"40930"} +{"label":"2001 Maniacs","description":"On their way to Spring Break, college kids take a detour through an old Southern town. The people of Pleasant Valley insist the kids stay for their annual barbecue celebration... but instead of getting a taste of the old South, the old South gets a taste of them! ","id":"10845","runtime":87,"imdbId":"tt0264323","version":213,"lastModified":"1301904335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/011\/4bc93102017a3c57fe014011\/2001-maniacs-mid.jpg","genre":"Comedy","title":"2001 Maniacs","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"40931"} +{"label":"Jay Gillespie","version":26,"id":"67154","lastModified":"1301901607000","name":"Jay Gillespie","type":"Person","_key":"40932"} +{"label":"Marla Malcolm","version":21,"id":"67155","lastModified":"1301902163000","name":"Marla Malcolm","type":"Person","_key":"40933"} +{"label":"The Tiger and the Snow","description":"Love and injury in time of war. Attilio de Giovanni teaches poetry in Italy. He has a romantic soul, and women love him. But he is in love with Vittoria, and the love is unrequited. Every night he dreams of marrying her, in his boxer shorts and t-shirt, as Tom Waits sings. Vittoria travels to Iraq with her friend, Fuad, a poet; they are there with the second Gulf War breaks out. Vittoria is injured. Attilio must get to her side, and then, as war rages around him, he must find her the medical car","id":"10846","runtime":114,"imdbId":"tt0419198","version":127,"lastModified":"1301903038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01a\/4bc93103017a3c57fe01401a\/la-tigre-e-la-neve-mid.jpg","genre":"Comedy","title":"The Tiger and the Snow","releaseDate":1129248000000,"language":"en","tagline":"A love-struck Italian poet is stuck in Iraq at the onset of an American invasion.","type":"Movie","_key":"40934"} +{"label":"Lucia Poli","version":25,"id":"67141","lastModified":"1301902224000","name":"Lucia Poli","type":"Person","_key":"40935"} +{"label":"Gianfranco Varetto","version":20,"id":"67140","lastModified":"1301902259000","name":"Gianfranco Varetto","type":"Person","_key":"40936"} +{"label":"Andrea Renzi","version":26,"id":"67144","lastModified":"1301902207000","name":"Andrea Renzi","type":"Person","_key":"40937"} +{"label":"Anna Pirri","version":20,"id":"67143","lastModified":"1301902259000","name":"Anna Pirri","type":"Person","_key":"40938"} +{"label":"Abdelhafid Metalsi","version":28,"id":"67145","lastModified":"1301902209000","name":"Abdelhafid Metalsi","type":"Person","_key":"40939"} +{"label":"Chiara Pirri","version":20,"id":"67142","lastModified":"1301902259000","name":"Chiara Pirri","type":"Person","_key":"40940"} +{"label":"Amid Farid","version":20,"id":"67146","lastModified":"1301902259000","name":"Amid Farid","type":"Person","_key":"40941"} +{"label":"Mohamed Malek Bchatnia","version":20,"id":"67150","lastModified":"1301902259000","name":"Mohamed Malek Bchatnia","type":"Person","_key":"40942"} +{"label":"Ahmed Ben Massoud","version":20,"id":"67152","lastModified":"1301902259000","name":"Ahmed Ben Massoud","type":"Person","_key":"40943"} +{"label":"Steven Beckingham","version":20,"id":"67151","lastModified":"1301902259000","name":"Steven Beckingham","type":"Person","_key":"40944"} +{"label":"Israel Aduramo","version":20,"id":"67147","lastModified":"1301902259000","name":"Israel Aduramo","type":"Person","_key":"40945"} +{"label":"Mohmed Hedi Bahri","version":20,"id":"67148","lastModified":"1301902259000","name":"Mohmed Hedi Bahri","type":"Person","_key":"40946"} +{"label":"Franco Barbero","version":20,"id":"67149","lastModified":"1301902259000","name":"Franco Barbero","type":"Person","_key":"40947"} +{"label":"David Birkin","version":21,"id":"67153","lastModified":"1301902084000","name":"David Birkin","type":"Person","_key":"40948"} +{"label":"Lord of the Flies","description":"Stranded on an island, a group of schoolboys degenerate into savagery.","id":"10847","runtime":90,"imdbId":"tt0100054","version":170,"lastModified":"1301902189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4bc93104017a3c57fe014023\/lord-of-the-flies-mid.jpg","genre":"Adventure","title":"Lord of the Flies","releaseDate":637545600000,"language":"en","type":"Movie","_key":"40949"} +{"label":"Chris Furrh","version":22,"id":"61029","lastModified":"1301901828000","name":"Chris Furrh","type":"Person","_key":"40950"} +{"label":"Danuel Pipoly","version":28,"id":"61030","lastModified":"1301901782000","name":"Danuel Pipoly","type":"Person","_key":"40951"} +{"label":"Harry Hook","version":24,"id":"61019","lastModified":"1301901783000","name":"Harry Hook","type":"Person","_key":"40952"} +{"label":"La Felicit\u00e0 non costa niente","description":"No overview found.","id":"10848","runtime":95,"imdbId":"tt0305569","version":63,"lastModified":"1301907267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4d57efc47b9aa16bca0021f7\/la-felicit-non-costa-niente-mid.jpg","genre":"Drama","title":"La Felicit\u00e0 non costa niente","releaseDate":1043971200000,"language":"en","type":"Movie","_key":"40953"} +{"label":"Mimmo Calopresti","version":29,"id":"67173","lastModified":"1301901714000","name":"Mimmo Calopresti","type":"Person","_key":"40954"} +{"label":"Fabrizia Sacchi","version":26,"id":"67174","lastModified":"1301902213000","name":"Fabrizia Sacchi","type":"Person","_key":"40955"} +{"label":"Luisa De Santis","version":19,"id":"67175","lastModified":"1301902258000","name":"Luisa De Santis","type":"Person","_key":"40956"} +{"label":"Peppe Servillo","version":21,"id":"67176","lastModified":"1301902258000","name":"Peppe Servillo","type":"Person","_key":"40957"} +{"label":"Edoardo Minciotti","version":19,"id":"67177","lastModified":"1301902084000","name":"Edoardo Minciotti","type":"Person","_key":"40958"} +{"label":"Valeria Solarino","version":24,"id":"67178","lastModified":"1301902134000","name":"Valeria Solarino","type":"Person","_key":"40959"} +{"label":"The Purple Rose of Cairo","description":"Cecilia is a waitress in New Jersey, living a dreary life during the Great Depression. Her only escape from her mudane reality is the movie theatre. After losing her job, Cecilia goes to see 'The Purple Rose of Cairo' in hopes of raising her spirits, where she watches dashing archaeologist Tom Baxter time and again.","id":"10849","runtime":82,"imdbId":"tt0089853","trailer":"http:\/\/www.youtube.com\/watch?v=guLFLWYlQxU","version":312,"lastModified":"1301903437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/290\/4d56bdbf7b9aa15cf3002290\/the-purple-rose-of-cairo-mid.jpg","genre":"Comedy","title":"The Purple Rose of Cairo","releaseDate":478483200000,"language":"en","type":"Movie","_key":"40960"} +{"label":"Stephanie Farrow","version":23,"id":"67199","lastModified":"1301901588000","name":"Stephanie Farrow","type":"Person","_key":"40961"} +{"label":"Kehraus","description":"No overview found.","id":"10850","runtime":88,"imdbId":"tt0085781","version":95,"lastModified":"1301907267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a48\/4d5017af7b9aa13aaf00ba48\/kehraus-mid.jpg","genre":"Comedy","title":"Kehraus","releaseDate":437356800000,"language":"en","type":"Movie","_key":"40962"} +{"label":"Veronika Faber","version":20,"id":"26958","lastModified":"1301901725000","name":"Veronika Faber","type":"Person","_key":"40963"} +{"label":"Hans-G\u00fcnter Martens","version":20,"id":"67189","lastModified":"1301902258000","name":"Hans-G\u00fcnter Martens","type":"Person","_key":"40964"} +{"label":"Hans Stadtm\u00fcller","version":20,"id":"46225","lastModified":"1301901875000","name":"Hans Stadtm\u00fcller","type":"Person","_key":"40965"} +{"label":"Wolfgang Gropper","version":20,"id":"67191","lastModified":"1301901875000","name":"Wolfgang Gropper","type":"Person","_key":"40966"} +{"label":"Peter Welz","version":20,"id":"67190","lastModified":"1301901875000","name":"Peter Welz","type":"Person","_key":"40967"} +{"label":"Maria Singer","version":22,"id":"26952","lastModified":"1301902011000","name":"Maria Singer","type":"Person","_key":"40968"} +{"label":"Hansi Jochmann","version":21,"id":"67193","lastModified":"1301901724000","name":"Hansi Jochmann","type":"Person","_key":"40969"} +{"label":"Helena Rosenkranz","version":20,"id":"67192","lastModified":"1301901875000","name":"Helena Rosenkranz","type":"Person","_key":"40970"} +{"label":"Ursula Soremba","version":20,"id":"67194","lastModified":"1301901875000","name":"Ursula Soremba","type":"Person","_key":"40971"} +{"label":"Monika John","version":23,"id":"67195","lastModified":"1301901849000","name":"Monika John","type":"Person","_key":"40972"} +{"label":"Konrad van Beust","version":20,"id":"67196","lastModified":"1301901875000","name":"Konrad van Beust","type":"Person","_key":"40973"} +{"label":"Egon Keresztes","version":20,"id":"67197","lastModified":"1301901875000","name":"Egon Keresztes","type":"Person","_key":"40974"} +{"label":"Horst Peukert","version":20,"id":"67198","lastModified":"1301902258000","name":"Horst Peukert","type":"Person","_key":"40975"} +{"label":"Revolver","description":"Hotshot gambler Jake Green (Jason Statham) is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.","id":"10851","runtime":115,"imdbId":"tt0365686","homepage":"http:\/\/www.sonypictures.com\/movies\/revolver\/","version":184,"lastModified":"1301907102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4bc9310e017a3c57fe01406d\/revolver-mid.jpg","studio":"Europa Corp.","genre":"Crime","title":"Revolver","releaseDate":1127347200000,"language":"en","type":"Movie","_key":"40976"} +{"label":"Terence Maynard","version":26,"id":"67205","lastModified":"1301901475000","name":"Terence Maynard","type":"Person","_key":"40977"} +{"label":"Elana Binysh","version":23,"id":"67208","lastModified":"1301901875000","name":"Elana Binysh","type":"Person","_key":"40978"} +{"label":"Shend","version":23,"id":"67210","lastModified":"1301902084000","name":"Shend","type":"Person","_key":"40979"} +{"label":"Andrew Howard","version":34,"id":"67206","lastModified":"1301916267000","name":"Andrew Howard","type":"Person","_key":"40980"} +{"label":"Faruk Pruti","version":23,"id":"67209","lastModified":"1301902084000","name":"Faruk Pruti","type":"Person","_key":"40981"} +{"label":"Anjela Lauren Smith","version":25,"id":"67207","lastModified":"1301902083000","name":"Anjela Lauren Smith","type":"Person","_key":"40982"} +{"label":"Ian Puleston-Davies","version":23,"id":"67213","lastModified":"1301902084000","name":"Ian Puleston-Davies","type":"Person","_key":"40983"} +{"label":"Tom Wu","version":31,"id":"67212","lastModified":"1301902083000","name":"Tom Wu","type":"Person","_key":"40984"} +{"label":"Bill Moody","version":23,"id":"67211","lastModified":"1301902258000","name":"Bill Moody","type":"Person","_key":"40985"} +{"label":"Jimmy Flint","version":23,"id":"67214","lastModified":"1301902084000","name":"Jimmy Flint","type":"Person","_key":"40986"} +{"label":"Brian Hibbard","version":23,"id":"67215","lastModified":"1301902258000","name":"Brian Hibbard","type":"Person","_key":"40987"} +{"label":"Bruce Wang","version":23,"id":"67216","lastModified":"1301902258000","name":"Bruce Wang","type":"Person","_key":"40988"} +{"label":"The Evil Cult","description":"A wild and rollicking martial arts fantasy extravaganza that features prized swords and swordsmen, a crazy monk attached to a rolling boulder, serious clan and cult rivalries, and lots of magic and flying.","id":"10852","runtime":99,"imdbId":"tt0108624","version":90,"lastModified":"1301902608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4ca6ca1e7b9aa17aca000134\/yi-tian-tu-long-ji-zhi-mo-jiao-jiao-zhu-mid.jpg","genre":"Action","title":"The Evil Cult","releaseDate":756172800000,"language":"en","type":"Movie","_key":"40989"} +{"label":"Wong Jing","version":109,"id":"67217","lastModified":"1301901266000","name":"Wong Jing","type":"Person","_key":"40990"} +{"label":"Chingmy Yau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4d0f668b5e73d6371600215c\/chingmy-yau-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bBorn May 16, 1968 as Yau Suk Ching, Chingmy Yau get her start in the entertainment industry by participating in beauty pageants. It was after her appearance at the Miss Hong Kong beauty pageant in 1989 (where she took the \"Miss Photogenic\" trophy) that she began to get film offers. Most of her early work consisted of her playing goody-two-shoes roles in romantic comedies until notorious film-maker Wong Jing took Ya","version":47,"birthday":"-51411600000","id":"67222","lastModified":"1301901178000","name":"Chingmy Yau","type":"Person","_key":"40991"} +{"label":"Sharla Cheung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d6\/4cbccf9e7b9aa138da0013d6\/sharla-cheung-profile.jpg","version":40,"id":"67221","lastModified":"1301901304000","name":"Sharla Cheung","type":"Person","_key":"40992"} +{"label":"Gigi Lai","version":25,"id":"67224","lastModified":"1301902177000","name":"Gigi Lai","type":"Person","_key":"40993"} +{"label":"Ka-Yan Leung","version":33,"id":"67223","lastModified":"1301902148000","name":"Ka-Yan Leung","type":"Person","_key":"40994"} +{"label":"Wing Cho","version":23,"id":"67225","lastModified":"1301902003000","name":"Wing Cho","type":"Person","_key":"40995"} +{"label":"Die Einsteiger","description":"No overview found.","id":"10853","runtime":100,"imdbId":"tt0089077","version":53,"lastModified":"1301904471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c5\/4c5491745e73d632bd0002c5\/die-einsteiger-mid.jpg","genre":"Comedy","title":"Die Einsteiger","releaseDate":497145600000,"language":"en","type":"Movie","_key":"40996"} +{"label":"Ankie Lau","version":20,"id":"67227","lastModified":"1301902375000","name":"Ankie Lau","type":"Person","_key":"40997"} +{"label":"Sigi Rothemund","version":22,"id":"39639","lastModified":"1301901559000","name":"Sigi Rothemund","type":"Person","_key":"40998"} +{"label":"Wicked Little Things","description":"Karen, Sarah, and Emma Tunney are all moving to a small town in Pennsylvania where, unknown to them, in 1913, a horrid mine accident trapped dozens of children alive, underground. But there's a problem. They're still alive.","id":"10854","runtime":94,"imdbId":"tt0470000","version":293,"lastModified":"1301902492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4bc93112017a3c57fe014084\/wicked-little-things-mid.jpg","studio":"Millennium Films","genre":"Horror","title":"Wicked Little Things","releaseDate":1136073600000,"language":"en","tagline":"Prey for them","type":"Movie","_key":"40999"} +{"label":"Julie Rogers","version":29,"id":"61298","lastModified":"1301997896000","name":"Julie Rogers","type":"Person","_key":"41000"} +{"label":"Chris Jamba","version":20,"id":"67244","lastModified":"1301901724000","name":"Chris Jamba","type":"Person","_key":"41001"} +{"label":"Craig Vye","version":19,"id":"67243","lastModified":"1301902084000","name":"Craig Vye","type":"Person","_key":"41002"} +{"label":"Vladimir Mihailov","version":19,"id":"67248","lastModified":"1301902084000","name":"Vladimir Mihailov","type":"Person","_key":"41003"} +{"label":"Helia Grekova","version":19,"id":"67245","lastModified":"1301902084000","name":"Helia Grekova","type":"Person","_key":"41004"} +{"label":"George Zlatarev","version":21,"id":"67246","lastModified":"1301901992000","name":"George Zlatarev","type":"Person","_key":"41005"} +{"label":"Atanas Srebrev","version":28,"id":"67247","lastModified":"1301901563000","name":"Atanas Srebrev","type":"Person","_key":"41006"} +{"label":"Yoan Karamfilov","version":19,"id":"67250","lastModified":"1301902084000","name":"Yoan Karamfilov","type":"Person","_key":"41007"} +{"label":"Alexander Ganchev","version":19,"id":"67249","lastModified":"1301901724000","name":"Alexander Ganchev","type":"Person","_key":"41008"} +{"label":"Albena Ivanova","version":19,"id":"67251","lastModified":"1301902084000","name":"Albena Ivanova","type":"Person","_key":"41009"} +{"label":"Alexander Alexandrov","version":19,"id":"67252","lastModified":"1301901875000","name":"Alexander Alexandrov","type":"Person","_key":"41010"} +{"label":"Emil Antov","version":19,"id":"67253","lastModified":"1301901875000","name":"Emil Antov","type":"Person","_key":"41011"} +{"label":"Naked Weapon","description":"A mysterious woman, known as Madame M, kidnaps forty pre-teen girls and transports them to a remote island to train them as the most deadly assassins. CIA operative Jack Chen follows the case for 6 years with no leads, but when a series of assassinations begin to occur, Jack suspects that Madame M is back in business.","id":"10855","runtime":92,"imdbId":"tt0341495","version":140,"lastModified":"1301903482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/091\/4bc93113017a3c57fe014091\/chek-law-dak-gung-mid.jpg","studio":"Media Asia Films","genre":"Action","title":"Naked Weapon","releaseDate":1037318400000,"language":"en","tagline":"They will seduce you - just before they kill you!","type":"Movie","_key":"41012"} +{"label":"Marit Thoresen","version":20,"id":"67255","lastModified":"1301901536000","name":"Marit Thoresen","type":"Person","_key":"41013"} +{"label":"Almen Wong Pui-Ha","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/035\/4bce775b017a3c486a000035\/almen-wong-pui-ha-profile.jpg","version":21,"id":"67256","lastModified":"1301901591000","name":"Almen Wong Pui-Ha","type":"Person","_key":"41014"} +{"label":"Natalie Kyoko Waters","version":18,"id":"67257","lastModified":"1301901612000","name":"Natalie Kyoko Waters","type":"Person","_key":"41015"} +{"label":"Renee Nichole Rommeswinkel","version":20,"id":"67258","lastModified":"1301901536000","name":"Renee Nichole Rommeswinkel","type":"Person","_key":"41016"} +{"label":"Chia-li Mo","version":17,"id":"115894","lastModified":"1301902636000","name":"Chia-li Mo","type":"Person","_key":"41017"} +{"label":"Augustin Aguerreberry","version":17,"id":"115895","lastModified":"1301902258000","name":"Augustin Aguerreberry","type":"Person","_key":"41018"} +{"label":"Anya","version":17,"id":"115896","lastModified":"1301902258000","name":"Anya","type":"Person","_key":"41019"} +{"label":"Jewel Lee","version":17,"id":"115897","lastModified":"1301902636000","name":"Jewel Lee","type":"Person","_key":"41020"} +{"label":"Monica Lo","version":23,"id":"72726","lastModified":"1301901442000","name":"Monica Lo","type":"Person","_key":"41021"} +{"label":"Benny Lai","version":18,"id":"115898","lastModified":"1301902636000","name":"Benny Lai","type":"Person","_key":"41022"} +{"label":"Intacto","description":"An enigmatic tale of four people whose lives are intertwined by destiny are subject to the laws of fate. They discover that luck is something they cannot afford to be without as they gamble with the highest stakes possible in a deadly game from which only one of them will emerge intact.","id":"10856","runtime":108,"imdbId":"tt0220580","version":134,"lastModified":"1301903221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4d4c7d735e73d617c7001be8\/intacto-mid.jpg","genre":"Comedy","title":"Intacto","releaseDate":1005004800000,"language":"en","type":"Movie","_key":"41023"} +{"label":"M\u00f3nica L\u00f3pez","version":20,"id":"67262","lastModified":"1301902002000","name":"M\u00f3nica L\u00f3pez","type":"Person","_key":"41024"} +{"label":"When the Wind Blows","description":"With the help of government-issued pamphlets, an elderly British couple build a shelter and prepare for an impending nuclear attack, unaware that times and the nature of war have changed from their romantic memories of World War II","id":"10857","runtime":80,"imdbId":"tt0090315","version":255,"lastModified":"1301904468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a5\/4c463dbf7b9aa15de00001a5\/when-the-wind-blows-mid.jpg","genre":"Animation","title":"When the Wind Blows","releaseDate":542592000000,"language":"en","type":"Movie","_key":"41025"} +{"label":"Robin Houston","version":20,"id":"67267","lastModified":"1301901782000","name":"Robin Houston","type":"Person","_key":"41026"} +{"label":"Jimmy T. Murakami","version":20,"id":"67268","lastModified":"1301901782000","name":"Jimmy T. Murakami","type":"Person","_key":"41027"} +{"label":"Nixon","description":"An all-star cast powers this epic look at American President Richard M. Nixon, a man carrying both the fate of the world on his shoulders while battling the self-destructive demands within. From his victorious presidential election to the shocking Watergate scandal that would seal his doom.","id":"10858","runtime":192,"imdbId":"tt0113987","version":155,"lastModified":"1301904905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4bc93116017a3c57fe0140a3\/nixon-mid.jpg","genre":"Drama","title":"Nixon","releaseDate":819590400000,"language":"en","type":"Movie","_key":"41028"} +{"label":"Stakeout","description":"No overview found.","id":"10859","runtime":116,"imdbId":"tt0094025","version":146,"lastModified":"1301902623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4cfc087d5e73d6299d003033\/stakeout-mid.jpg","genre":"Action","title":"Stakeout","releaseDate":555120000000,"language":"en","tagline":"It's a tough job but somebody's got to do it!","type":"Movie","_key":"41029"} +{"label":"Steel Magnolias","description":"This heart wrenching drama is about a beauty shop, in Louisana owned by Truvy, and the tragedies of all of her clients.","id":"10860","runtime":119,"imdbId":"tt0098384","version":129,"lastModified":"1301903503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4bc93119017a3c57fe0140bf\/steel-magnolias-mid.jpg","genre":"Drama","title":"Steel Magnolias","releaseDate":627091200000,"language":"en","tagline":"The funniest movie ever to make you cry.","type":"Movie","_key":"41030"} +{"label":"Dolly Parton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/436\/4cb66baf7b9aa138d8000436\/dolly-parton-profile.jpg","version":50,"id":"67274","lastModified":"1301901168000","name":"Dolly Parton","type":"Person","_key":"41031"} +{"label":"Maximum Risk","description":"A policeman takes his twin brother's place and inherits his problems and a beautiful girlfriend. He is forced to kickbox his way from France to the U.S. and back while playing footsie with the FBI and Russian mafia. Not just muscles with a badge, the policeman must find the answers to some tough questions, none harder than what the heck is an accordian player doing in a sauna.","id":"10861","runtime":100,"imdbId":"tt0117011","trailer":"http:\/\/www.youtube.com\/watch?v=z9ewqc8KNSU","version":189,"lastModified":"1301902453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ba\/4d6558a25e73d66a6b0009ba\/maximum-risk-mid.jpg","genre":"Action","title":"Maximum Risk","releaseDate":842572800000,"language":"en","type":"Movie","_key":"41032"} +{"label":"Bounce","description":"A man switches plane tickets with another man who dies in that plane in a crash. The man falls in love with the deceased one's wife.","id":"10862","runtime":106,"imdbId":"tt0186894","version":133,"lastModified":"1301903757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4bc9311b017a3c57fe0140db\/bounce-mid.jpg","genre":"Drama","title":"Bounce","releaseDate":974246400000,"language":"en","type":"Movie","_key":"41033"} +{"label":"Edward Edwards","version":20,"id":"67579","lastModified":"1301901612000","name":"Edward Edwards","type":"Person","_key":"41034"} +{"label":"Eye of the Needle","description":"A ruthless German spy, trying to get out of Britain with vital information about D-Day, must spend time with a young woman and her crippled husband.","id":"10863","runtime":112,"imdbId":"tt0082351","version":114,"lastModified":"1301902541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e9\/4bc9311f017a3c57fe0140e9\/eye-of-the-needle-mid.jpg","genre":"Action","title":"Eye of the Needle","releaseDate":364780800000,"language":"en","type":"Movie","_key":"41035"} +{"label":"Stephen MacKenna","version":19,"id":"67566","lastModified":"1301901875000","name":"Stephen MacKenna","type":"Person","_key":"41036"} +{"label":"Christopher Cazenove","version":19,"id":"67567","lastModified":"1301901875000","name":"Christopher Cazenove","type":"Person","_key":"41037"} +{"label":"Charlie & Louise - Das doppelte Lottchen","description":"No overview found.","id":"10864","runtime":98,"imdbId":"tt0106548","version":50,"lastModified":"1301904716000","genre":"Comedy","title":"Charlie & Louise - Das doppelte Lottchen","releaseDate":761443200000,"language":"en","type":"Movie","_key":"41038"} +{"label":"Floriane Eichhorn","version":20,"id":"67528","lastModified":"1301902177000","name":"Floriane Eichhorn","type":"Person","_key":"41039"} +{"label":"Fritzi Eichhorn","version":20,"id":"67529","lastModified":"1301902021000","name":"Fritzi Eichhorn","type":"Person","_key":"41040"} +{"label":"Bernhard D\u00fcbe","version":20,"id":"67530","lastModified":"1301901564000","name":"Bernhard D\u00fcbe","type":"Person","_key":"41041"} +{"label":"Atlantis: The Lost Empire","description":"The world's most highly qualified crew of archaeologists and explorers are led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea. The underwater expedition takes an unexpected turn when the team's mission must switch from exploring Atlantis to protecting it.","id":"10865","runtime":95,"imdbId":"tt0230011","trailer":"http:\/\/www.youtube.com\/watch?v=GkrkTgICzHM","version":146,"lastModified":"1301901465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ac\/4d4c39c15e73d617c70016ac\/atlantis-the-lost-empire-mid.jpg","studio":"Walt Disney Company","genre":"Action","title":"Atlantis: The Lost Empire","releaseDate":991526400000,"language":"en","tagline":"Atlantis is waiting...","type":"Movie","_key":"41042"} +{"label":"Claudia Christian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7d\/4d12742d7b9aa11486000b7d\/claudia-christian-profile.jpg","biography":"Claudia Christian was born on August 10, 1965, in Glendale, California. Her family moved to Connecticut some afterwards. At age five, she was bitten by the acting bug when she played a Native American in a school play. After her family returned to California, she graduated high school at 16, and set out to start her acting career. She worked in a coffee house and then at a clothing store for two years before landing her first acting role on the soap <A href=\"\/title\/tt0077000\/\"><FONT color=#136cb","version":39,"id":"52300","lastModified":"1301901199000","name":"Claudia Christian","type":"Person","_key":"41043"} +{"label":"Joy Ride","description":"Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.","id":"10866","runtime":98,"imdbId":"tt0206314","trailer":"http:\/\/www.youtube.com\/watch?v=_GqrNeTfb5w","version":156,"lastModified":"1301903292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4bc93123017a3c57fe01410c\/joy-ride-mid.jpg","genre":"Road Movie","title":"Joy Ride","releaseDate":1002240000000,"language":"en","type":"Movie","_key":"41044"} +{"label":"Jessica Bowman","version":24,"id":"67538","lastModified":"1301901370000","name":"Jessica Bowman","type":"Person","_key":"41045"} +{"label":"Mal\u00e8na","description":"A woman provokes sensual awakenings in a group of adolescent boys.","id":"10867","runtime":109,"imdbId":"tt0213847","version":73,"lastModified":"1301902102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4bc93124017a3c57fe014119\/malena-mid.jpg","genre":"Drama","title":"Mal\u00e8na","releaseDate":972604800000,"language":"en","type":"Movie","_key":"41046"} +{"label":"Giuseppe Sulfaro","version":19,"id":"67612","lastModified":"1301901724000","name":"Giuseppe Sulfaro","type":"Person","_key":"41047"} +{"label":"Luciano Federico","version":19,"id":"67613","lastModified":"1301901724000","name":"Luciano Federico","type":"Person","_key":"41048"} +{"label":"Matilde Piana","version":19,"id":"67614","lastModified":"1301901875000","name":"Matilde Piana","type":"Person","_key":"41049"} +{"label":"The Accused","description":"A rape victim, enraged at the light sentence her attackers received on account that she was of \"questionable character\" goads a female prosecutor to charge the men who literally cheered the attack on.","id":"10868","runtime":111,"imdbId":"tt0094608","version":136,"lastModified":"1301903436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15e\/4cb5a78e7b9aa138d800015e\/the-accused-mid.jpg","genre":"Drama","title":"The Accused","releaseDate":592790400000,"language":"en","type":"Movie","_key":"41050"} +{"label":"Bernie Coulson","version":27,"id":"67523","lastModified":"1301901816000","name":"Bernie Coulson","type":"Person","_key":"41051"} +{"label":"Leo Rossi","version":38,"id":"67524","lastModified":"1301901570000","name":"Leo Rossi","type":"Person","_key":"41052"} +{"label":"Herbie Rides Again","description":"The living Volkswagen Beetle helps a old lady protect her home from a corrupt developer.","id":"10869","runtime":88,"imdbId":"tt0071607","version":132,"lastModified":"1301903659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12c\/4bc93125017a3c57fe01412c\/herbie-rides-again-mid.jpg","genre":"Comedy","title":"Herbie Rides Again","releaseDate":130118400000,"language":"en","type":"Movie","_key":"41053"} +{"label":"Ken Berry","version":22,"id":"35031","lastModified":"1301901930000","name":"Ken Berry","type":"Person","_key":"41054"} +{"label":"Chuck McCann","version":18,"id":"143950","lastModified":"1301902515000","name":"Chuck McCann","type":"Person","_key":"41055"} +{"label":"Les Dalton","description":"Joe and Averell are the eldest and youngest of the four Dalton brothers, the worst outlaws in Wild West history...","id":"10870","runtime":86,"imdbId":"tt0368668","version":78,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/135\/4bc93128017a3c57fe014135\/les-dalton-mid.jpg","genre":"Comedy","title":"Les Dalton","releaseDate":1102464000000,"language":"en","type":"Movie","_key":"41056"} +{"label":"Ramzy Bedia","version":35,"id":"67714","lastModified":"1301901646000","name":"Ramzy Bedia","type":"Person","_key":"41057"} +{"label":"Sa\u00efd Serrari","version":20,"id":"67715","lastModified":"1301902258000","name":"Sa\u00efd Serrari","type":"Person","_key":"41058"} +{"label":"Philippe Ha\u00efm","version":25,"id":"67716","lastModified":"1301901826000","name":"Philippe Ha\u00efm","type":"Person","_key":"41059"} +{"label":"Switchback","description":"FBI agent Dennis Quaid tries to catch a serial killer who kidnapped his son.","id":"10871","runtime":118,"imdbId":"tt0119210","trailer":"http:\/\/www.youtube.com\/watch?v=HeQmMOywsJA","version":283,"lastModified":"1301908032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/090\/4c1a3b7f5e73d67b0b000090\/switchback-mid.jpg","genre":"Action","title":"Switchback","releaseDate":878256000000,"language":"en","type":"Movie","_key":"41060"} +{"label":"Claudia Stedelin","version":21,"id":"67805","lastModified":"1301901935000","name":"Claudia Stedelin","type":"Person","_key":"41061"} +{"label":"Ian Blake Nelson","version":22,"id":"67806","lastModified":"1301902305000","name":"Ian Blake Nelson","type":"Person","_key":"41062"} +{"label":"Jeb Stuart","version":43,"id":"7671","lastModified":"1299689632000","name":"Jeb Stuart","type":"Person","_key":"41063"} +{"label":"The Ref","description":"A cat burglar is forced to take a bickering, dysfunctional family hostage on Christmas Eve.","id":"10872","runtime":93,"imdbId":"tt0110955","version":121,"lastModified":"1301903818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4bc93129017a3c57fe014142\/the-ref-mid.jpg","genre":"Comedy","title":"The Ref","releaseDate":763171200000,"language":"en","type":"Movie","_key":"41064"} +{"label":"Shadow of the Vampire","description":"Director F.W. Murnau (John Malkovich) makes a Faustian pact with a vampire (Willem Dafoe) to get him to star in his 1922 film ``Nosferatu.''","id":"10873","runtime":92,"imdbId":"tt0189998","version":142,"lastModified":"1301904953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4bc93129017a3c57fe01414b\/shadow-of-the-vampire-mid.jpg","genre":"Drama","title":"Shadow of the Vampire","releaseDate":958348800000,"language":"en","type":"Movie","_key":"41065"} +{"label":"Muppet Treasure Island","description":"After telling the story of Flint's last journey to young Jim Hawkins, Billy Bones has a heart attack and dies just as Jim and his friends are attacked by pirates. The gang escapes into the town where they hire out a boat and crew to find the hidden treasure, which was revealed by Bones before he died. On their voyage across the seas, they soon find out that not everyone on board can be trusted.","id":"10874","runtime":100,"imdbId":"tt0117110","version":111,"lastModified":"1301903334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4d42580b7b9aa11c740020d2\/muppet-treasure-island-mid.jpg","studio":"Jim Henson Company, The","genre":"Adventure","title":"Muppet Treasure Island","releaseDate":824428800000,"language":"en","tagline":"Set sail for Muppet mayhem!","type":"Movie","_key":"41066"} +{"label":"The Fabulous Baker Boys","description":"Frank and Jack Baker are professional musicians who play small clubs. They play smaltzy music and have never needed a day job...","id":"10875","runtime":114,"imdbId":"tt0097322","trailer":"http:\/\/www.youtube.com\/watch?v=O6joPj3z0t0","version":117,"lastModified":"1301904623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e1\/4c6fff465e73d65f7b0007e1\/the-fabulous-baker-boys-mid.jpg","genre":"Comedy","title":"The Fabulous Baker Boys","releaseDate":624240000000,"language":"en","type":"Movie","_key":"41067"} +{"label":"Ellie Raab","version":26,"id":"67377","lastModified":"1301901775000","name":"Ellie Raab","type":"Person","_key":"41068"} +{"label":"Steve Kloves","version":119,"id":"10967","lastModified":"1301901285000","name":"Steve Kloves","type":"Person","_key":"41069"} +{"label":"Quills","description":"A nobleman with a literary flair, the Marquis de Sade lives in a madhouse where a beautiful laundry maid smuggles his erotic stories to a printer, defying orders from the asylum's resident priest. The titillating passages whip all of France into a sexual frenzy, until a fiercely conservative doctor tries to put an end to the fun.","id":"10876","runtime":124,"imdbId":"tt0180073","trailer":"http:\/\/www.youtube.com\/watch?v=u--PYnIYewE","version":152,"lastModified":"1302011932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16b\/4bc9312b017a3c57fe01416b\/quills-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"Quills","releaseDate":967852800000,"language":"en","tagline":"There are no bad words... only bad deeds.","type":"Movie","_key":"41070"} +{"label":"Exit Wounds","description":"Maverick cop Orin Boyd always brings down the domestic terrorists he tracks, but he ruffles feathers with his unorthodox techniques -- and soon finds himself reassigned to the toughest district in Detroit. When he discovers a group of detectives secretly operating a drug ring, Boyd joins forces with an unlikely ally -- gangster Latrell Walker -- to bring down the rotten cops in this fast-paced actioner.","id":"10877","runtime":101,"imdbId":"tt0242445","trailer":"http:\/\/www.youtube.com\/watch?v=-PRxMSfTHLA","homepage":"http:\/\/www.exitwounds.net\/","version":168,"lastModified":"1301902932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/185\/4bc9312f017a3c57fe014185\/exit-wounds-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Exit Wounds","releaseDate":984700800000,"language":"en","tagline":"This Is Gonna Hurt","type":"Movie","_key":"41071"} +{"label":"Saving Silverman","description":"A pair of buddies conspire to save their best friend from marrying the wrong woman, a cold-hearted beauty who snatches him from them and breaks up their Neil Diamond cover band.","id":"10878","runtime":90,"imdbId":"tt0239948","trailer":"http:\/\/www.youtube.com\/watch?v=Hi662FfCWlw","version":189,"lastModified":"1301903291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/193\/4bc93131017a3c57fe014193\/saving-silverman-mid.jpg","genre":"Comedy","title":"Saving Silverman","releaseDate":981676800000,"language":"en","type":"Movie","_key":"41072"} +{"label":"I Love Trouble","description":"Rival Chicago reporters Sabrina Peterson (Roberts) and Peter Brackett (Nolte) reluctantly join forces to uncover a train wreck conspiracy and bite off more than they can chew while pursuing the story and bickering along the way - and falling in love, despite the fact that he's many years older than she.Sabrina is an ambitious, gifted reporter willing to do whatever it takes to learn the truth about the train accident, which leads her into conflict, then reluctant partnership, with fading star ne","id":"10879","runtime":110,"imdbId":"tt0110093","version":145,"lastModified":"1301903559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04c\/4c0289e9017a3c4e9a00004c\/i-love-trouble-mid.jpg","genre":"Action","title":"I Love Trouble","releaseDate":772848000000,"language":"en","type":"Movie","_key":"41073"} +{"label":"The Noah's Ark Principle","description":"The year is 1997, and World Peace seems to have come, with most classic weapons of mass destruction having been abandoned. However, orbiting the Earth there is the European\/American space station FLORIDA ARKLAB, capable of controlling the weather at any location on the planet underneath. A civil project by nature, it might be abused as an offensive weapon, since it could deliver devastation to any potential adversary simply by creating natural disasters such as storms and floods. No wonder the s","id":"10880","runtime":100,"imdbId":"tt0086911","version":80,"lastModified":"1301902649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4cd471d37b9aa11b2400004a\/das-arche-noah-prinzip-mid.jpg","studio":"Hochschule f\u00fcr Fernsehen und Film (HFF)","genre":"Science Fiction","title":"The Noah's Ark Principle","releaseDate":446083200000,"language":"en","type":"Movie","_key":"41074"} +{"label":"Aviva Joel","version":21,"id":"67276","lastModified":"1301901724000","name":"Aviva Joel","type":"Person","_key":"41075"} +{"label":"Nikolas Lansky","version":19,"id":"67277","lastModified":"1301902258000","name":"Nikolas Lansky","type":"Person","_key":"41076"} +{"label":"Avalon","description":"In a future world, young people are increasingly becoming addicted to an illegal (and potentially deadly) battle simulation game called Avalon. When Ash, a star player, hears of rumors that a more advanced level of the game exists somewhere, she gives up her loner ways and joins a gang of explorers. Even if she finds the gateway to the next level, will she ever be able to come back to reality?","id":"10881","runtime":106,"imdbId":"tt0267287","trailer":"http:\/\/www.youtube.com\/watch?v=8TTgzumaI0w","version":156,"lastModified":"1301902413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/388\/4d17fc455e73d6083e009388\/avalon-mid.jpg","genre":"Science Fiction","title":"Avalon","releaseDate":979948800000,"language":"en","type":"Movie","_key":"41077"} +{"label":"Malgorzata Foremniak","version":19,"id":"67278","lastModified":"1301901536000","name":"Malgorzata Foremniak","type":"Person","_key":"41078"} +{"label":"Dariusz Biskupski","version":19,"id":"67279","lastModified":"1301901536000","name":"Dariusz Biskupski","type":"Person","_key":"41079"} +{"label":"Bartlomiej Swiderski","version":19,"id":"67280","lastModified":"1301901724000","name":"Bartlomiej Swiderski","type":"Person","_key":"41080"} +{"label":"Sleeping Beauty","description":"A beautiful princess born in a faraway kingdom is destined by a terrible curse to prick her finger on the spindle of a spinning wheel and fall into a deep sleep that can only be awakened by true love's first kiss. Determined to protect her, her parents ask three fairies to raise her in hiding. But the evil Maleficent is just as determined to seal the princess's fate.","id":"10882","runtime":75,"imdbId":"tt0053285","trailer":"http:\/\/www.youtube.com\/watch?v=e8VdUOuK--8","version":161,"lastModified":"1302061465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/338\/4ca50b6f7b9aa16ed9000338\/sleeping-beauty-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"Sleeping Beauty","releaseDate":-344736000000,"language":"en","tagline":"Awaken to a World of Wonders!","type":"Movie","_key":"41081"} +{"label":"Mary Costa","version":27,"id":"67287","lastModified":"1302061465000","name":"Mary Costa","type":"Person","_key":"41082"} +{"label":"Bill Shirley","version":28,"id":"67288","lastModified":"1302061465000","name":"Bill Shirley","type":"Person","_key":"41083"} +{"label":"Eleanor Audley","version":35,"id":"67289","lastModified":"1302061465000","name":"Eleanor Audley","type":"Person","_key":"41084"} +{"label":"Verna Felton","version":56,"id":"67290","lastModified":"1302061465000","name":"Verna Felton","type":"Person","_key":"41085"} +{"label":"10 Questions for the Dalai Lama","description":"No overview found.","id":"10884","runtime":85,"imdbId":"tt0819354","homepage":"http:\/\/www.10fragenandendalailama.de\/","version":92,"lastModified":"1301903977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/604\/4bf40556017a3c320a000604\/10-questions-for-the-dalai-lama-mid.jpg","studio":"Rick Ray Films","genre":"Documentary","title":"10 Questions for the Dalai Lama","releaseDate":1146441600000,"language":"en","type":"Movie","_key":"41086"} +{"label":"Rick Ray","version":20,"id":"67314","lastModified":"1301901952000","name":"Rick Ray","type":"Person","_key":"41087"} +{"label":"The Dalai Lama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3df\/4d61a8b77b9aa154cf0053df\/the-dalai-lama-profile.jpg","version":24,"id":"67315","lastModified":"1301902148000","name":"The Dalai Lama","type":"Person","_key":"41088"} +{"label":"Shutter","description":"A newly married couple discovers disturbing, ghostly images in photographs they develop after a tragic accident. Fearing the manifestations may be connected, they investigate and learn that some mysteries are better left unsolved.","id":"10885","runtime":85,"imdbId":"tt0482599","trailer":"http:\/\/www.youtube.com\/watch?v=1790","version":220,"lastModified":"1301904074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4bc93138017a3c57fe0141d1\/shutter-mid.jpg","studio":"Ozla Pictures","genre":"Horror","title":"Shutter","releaseDate":1205884800000,"language":"en","type":"Movie","_key":"41089"} +{"label":"Masayuki Ochiai","version":21,"id":"67316","lastModified":"1301901598000","name":"Masayuki Ochiai","type":"Person","_key":"41090"} +{"label":"Megumi Okina","version":22,"id":"67318","lastModified":"1301902027000","name":"Megumi Okina","type":"Person","_key":"41091"} +{"label":"The Unknown Woman","description":"Giuseppe Tornatore's suspenseful thriller \"The Unknown Woman\" won five David di Donatello's for Best Film, Best Director, Best Actress, Best Music, and Best Cinematography.\nIrena, a Ukrainian woman coming to Italy looking for a job as a maid. She does everything she to become a beloved nanny for an adorable little girl Thea. However, that is just the very beginning of her unknown journey.","id":"10886","runtime":116,"imdbId":"tt0494271","homepage":"http:\/\/www.dieunbekannte.senator.de\/","version":115,"lastModified":"1301904704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ed\/4bc9313a017a3c57fe0141ed\/la-sconosciuta-mid.jpg","studio":"Manigolda Film","genre":"Thriller","title":"The Unknown Woman","releaseDate":1161216000000,"language":"en","type":"Movie","_key":"41092"} +{"label":"Kseniya Rappoport","version":27,"id":"67320","lastModified":"1301902213000","name":"Kseniya Rappoport","type":"Person","_key":"41093"} +{"label":"Piera Degli Esposti","version":27,"id":"67321","lastModified":"1301902220000","name":"Piera Degli Esposti","type":"Person","_key":"41094"} +{"label":"Margherita Buy","version":45,"id":"67323","lastModified":"1301954555000","name":"Margherita Buy","type":"Person","_key":"41095"} +{"label":"Ich. Immendorff","description":"No overview found.","id":"10887","runtime":98,"imdbId":"tt1251351","version":51,"lastModified":"1301904265000","studio":"Lona Media","genre":"Documentary","title":"Ich. Immendorff","releaseDate":1211414400000,"language":"en","type":"Movie","_key":"41096"} +{"label":"Nicola Graef","version":20,"id":"67325","lastModified":"1301901993000","name":"Nicola Graef","type":"Person","_key":"41097"} +{"label":"J\u00f6rg Immendorff","version":18,"id":"67332","lastModified":"1301902333000","name":"J\u00f6rg Immendorff","type":"Person","_key":"41098"} +{"label":"Falafel","description":"No overview found.","id":"10888","runtime":83,"imdbId":"tt0922424","homepage":"http:\/\/www.falafel-der-film.de\/","version":81,"lastModified":"1301907400000","studio":"Roy Films","genre":"Drama","title":"Falafel","releaseDate":1158364800000,"language":"en","type":"Movie","_key":"41099"} +{"label":"Michel Kammoun","version":21,"id":"67333","lastModified":"1301901952000","name":"Michel Kammoun","type":"Person","_key":"41100"} +{"label":"Elie Mitri","version":23,"id":"67338","lastModified":"1301902333000","name":"Elie Mitri","type":"Person","_key":"41101"} +{"label":"Gabrielle Bou Rached","version":20,"id":"67339","lastModified":"1301901952000","name":"Gabrielle Bou Rached","type":"Person","_key":"41102"} +{"label":"Issam Bou Khaled","version":20,"id":"67340","lastModified":"1301902333000","name":"Issam Bou Khaled","type":"Person","_key":"41103"} +{"label":"Michel El Hourany","version":20,"id":"67341","lastModified":"1301902148000","name":"Michel El Hourany","type":"Person","_key":"41104"} +{"label":"Hiam Abou Chedid","version":20,"id":"67342","lastModified":"1301902333000","name":"Hiam Abou Chedid","type":"Person","_key":"41105"} +{"label":"Rafic Ali Ahmad","version":18,"id":"67343","lastModified":"1301902148000","name":"Rafic Ali Ahmad","type":"Person","_key":"41106"} +{"label":"Roger Assaf","version":20,"id":"67344","lastModified":"1301902148000","name":"Roger Assaf","type":"Person","_key":"41107"} +{"label":"Fadi Abi Samra","version":20,"id":"67345","lastModified":"1301902148000","name":"Fadi Abi Samra","type":"Person","_key":"41108"} +{"label":"Gloria","description":"A former gun-moll becomes the reluctant protector of a child her mobster cronies are trying to kill.","id":"10889","runtime":123,"imdbId":"tt0080798","version":103,"lastModified":"1301903842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e52\/4d1e9e525e73d66b27000e52\/gloria-mid.jpg","genre":"Crime","title":"Gloria","releaseDate":339206400000,"language":"en","type":"Movie","_key":"41109"} +{"label":"John Adames","version":20,"id":"67346","lastModified":"1301901674000","name":"John Adames","type":"Person","_key":"41110"} +{"label":"Stripes","description":"John Winger, an indolent sad sack impulsively joins the U.S. Army after losing his job, his car, his girlfriend and his apartment \u2026 and, for good measure, he cajoles his best friend into enlisting, too. After making it through boot camp, the duo appropriates a state-of-the-art military vehicle for a weekend furlough, landing behind the Iron Curtain -- and in the midst of an international incident.","id":"10890","runtime":106,"imdbId":"tt0083131","trailer":"http:\/\/www.youtube.com\/watch?v=6Wr3imOyEZw","version":147,"lastModified":"1301902765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f76\/4d77d37b5e73d67efe000f76\/stripes-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Stripes","releaseDate":362361600000,"language":"en","tagline":"The story of a man who wanted to keep the world safe for democracy...and meet girls.","type":"Movie","_key":"41111"} +{"label":"John Voldstad","version":19,"id":"95140","lastModified":"1301902319000","name":"John Voldstad","type":"Person","_key":"41112"} +{"label":"Lance LeGault","version":20,"id":"119776","lastModified":"1301902554000","name":"Lance LeGault","type":"Person","_key":"41113"} +{"label":"Roberta Leighton","version":19,"id":"105361","lastModified":"1301902378000","name":"Roberta Leighton","type":"Person","_key":"41114"} +{"label":"Tremors 4: The Legend Begins","description":"This prequel of the bone-chilling Tremors begins in the town of Rejection, Nev., in 1889, where 17 men die under mysterious circumstances. Spooked by recent events, the miners who populate the town leave in droves until there's nothing left but a shell of a community. It's up to the remaining residents to get to the bottom of the deaths -- but they must do so before they, too, are eradicated off the face of the planet.","id":"10891","runtime":101,"imdbId":"tt0334541","version":147,"lastModified":"1301902471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fef\/4d508de37b9aa13ab800dfef\/tremors-4-the-legend-begins-mid.jpg","studio":"Stampede Entertainment","genre":"Action","title":"Tremors 4: The Legend Begins","releaseDate":1073001600000,"language":"en","tagline":"A Revolution Has Begun...","type":"Movie","_key":"41115"} +{"label":"S.S. Wilson","version":60,"id":"26479","lastModified":"1301901564000","name":"S.S. Wilson","type":"Person","_key":"41116"} +{"label":"Tremors","description":"No overview found.","id":"10892","version":87,"lastModified":"1301904186000","genre":"Action","title":"Tremors","language":"en","type":"Movie","_key":"41117"} +{"label":"Critters","description":"No overview found.","id":"10893","version":104,"lastModified":"1301905840000","genre":"Comedy","title":"Critters","language":"en","type":"Movie","_key":"41118"} +{"label":"May","description":"Psychological horror about a lonely young woman traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her.","id":"10894","runtime":93,"imdbId":"tt0303361","trailer":"http:\/\/www.youtube.com\/watch?v=3284","version":163,"lastModified":"1301905440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/226\/4bc93142017a3c57fe014226\/may-mid.jpg","genre":"Drama","title":"May","releaseDate":1010880000000,"language":"en","type":"Movie","_key":"41119"} +{"label":"Pinocchio","description":"Pinocchio is a wooden puppet that longs to be a real boy, is one for the ages -- and among the most magical animated films ever made. Aided by his friend Jiminy Cricket, Pinocchio faces many challenges on the way to making his dream come true.","id":"10895","runtime":88,"imdbId":"tt0032910","trailer":"http:\/\/www.youtube.com\/watch?v=_ilConFbV8E","version":222,"lastModified":"1301901958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bc93148017a3c57fe014243\/pinocchio-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Pinocchio","releaseDate":-943574400000,"language":"en","tagline":"For The Young In Heart Of Every Age ! !","type":"Movie","_key":"41120"} +{"label":"Dickie Jones","version":30,"id":"67371","lastModified":"1301901813000","name":"Dickie Jones","type":"Person","_key":"41121"} +{"label":"Mel Blanc","version":71,"id":"33923","lastModified":"1301901199000","name":"Mel Blanc","type":"Person","_key":"41122"} +{"label":"Don Brodie","version":34,"id":"67369","lastModified":"1301901554000","name":"Don Brodie","type":"Person","_key":"41123"} +{"label":"Frankie Darro","version":35,"id":"67370","lastModified":"1301902020000","name":"Frankie Darro","type":"Person","_key":"41124"} +{"label":"Ben Sharpsteen","version":44,"id":"11426","lastModified":"1302037065000","name":"Ben Sharpsteen","type":"Person","_key":"41125"} +{"label":"Tin Men","description":"A minor car accident drives two rival aluminum-siding salesmen to the ridiculous extremes of man versus man in 1963 Baltimore.","id":"10896","runtime":112,"imdbId":"tt0094155","version":90,"lastModified":"1301903356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/256\/4bc93149017a3c57fe014256\/tin-men-mid.png","genre":"Comedy","title":"Tin Men","releaseDate":541987200000,"language":"en","type":"Movie","_key":"41126"} +{"label":"The Little Rascals","description":"Spanky, Alfalfa, Buckwheat, and the other characters made famous in the Our Gang shorts of the 1920s and 1930s are brought back to life in this nostalgic children's comedy. When Alfalfa starts to question his devotion to the club's principles after falling for the beautiful nine-year old Darla, the rest of the gang sets out to keep them apart.","id":"10897","runtime":82,"imdbId":"tt0110366","version":165,"lastModified":"1301903116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b1\/4cd36bc85e73d6734c0000b1\/the-little-rascals-mid.jpg","genre":"Comedy","title":"The Little Rascals","releaseDate":776044800000,"language":"en","tagline":"Mischief loves company!","type":"Movie","_key":"41127"} +{"label":"Travis Tedford","version":23,"id":"67378","lastModified":"1301902084000","name":"Travis Tedford","type":"Person","_key":"41128"} +{"label":"Kevin Jamal Woods","version":26,"id":"67379","lastModified":"1301901674000","name":"Kevin Jamal Woods","type":"Person","_key":"41129"} +{"label":"Jordan Warkol","version":23,"id":"67380","lastModified":"1301902084000","name":"Jordan Warkol","type":"Person","_key":"41130"} +{"label":"Zachary Mabry","version":23,"id":"67381","lastModified":"1301902083000","name":"Zachary Mabry","type":"Person","_key":"41131"} +{"label":"Ross Bagley","version":23,"id":"67382","lastModified":"1301902258000","name":"Ross Bagley","type":"Person","_key":"41132"} +{"label":"Sam Saletta","version":23,"id":"67383","lastModified":"1301902258000","name":"Sam Saletta","type":"Person","_key":"41133"} +{"label":"Blake Jeremy Collins","version":23,"id":"67384","lastModified":"1301902258000","name":"Blake Jeremy Collins","type":"Person","_key":"41134"} +{"label":"Blake McIver Ewing","version":23,"id":"67385","lastModified":"1301902258000","name":"Blake McIver Ewing","type":"Person","_key":"41135"} +{"label":"Juliette Brewer","version":23,"id":"67386","lastModified":"1301902258000","name":"Juliette Brewer","type":"Person","_key":"41136"} +{"label":"Brittany Ashton Holmes","version":17,"id":"148996","lastModified":"1301903104000","name":"Brittany Ashton Holmes","type":"Person","_key":"41137"} +{"label":"Ashley Olsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/091\/4cafcbe85e73d65b86000091\/ashley-olsen-profile.jpg","biography":"<p>She and her twin sister, <a href=\"http:\/\/www.imdb.com\/name\/nm0001581\/\">Mary-Kate Olsen<\/a>,\n were born June 13, 1986 in Sherman Oaks, California to David and \nJarnette Olsen. The twins began their acting career in 1987 when they \nwere chosen to play the role of Michelle Tanner on a new TV series, <a href=\"http:\/\/www.imdb.com\/title\/tt0092359\/\">\"Full House\"<\/a>\n (1987). The show became a hit with books, dolls, and other merchandise \nbeing sold to promote it, and during the years the show was on","version":51,"birthday":"518997600000","id":"67848","birthplace":"Sherman Oaks, California, USA","lastModified":"1301901455000","name":"Ashley Olsen","type":"Person","_key":"41138"} +{"label":"Mary-Kate Olsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/38b\/4bf799b5017a3c773000038b\/mary-kate-olsen-profile.jpg","version":54,"id":"67849","lastModified":"1301901214000","name":"Mary-Kate Olsen","type":"Person","_key":"41139"} +{"label":"The Little Mermaid II: Return to the Sea","description":"Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?","id":"10898","runtime":72,"imdbId":"tt0240684","version":133,"lastModified":"1301901116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/268\/4bc9314c017a3c57fe014268\/the-little-mermaid-ii-return-to-the-sea-mid.jpg","genre":"Animation","title":"The Little Mermaid II: Return to the Sea","releaseDate":967680000000,"language":"en","type":"Movie","_key":"41140"} +{"label":"Samuel E. Wright","version":27,"id":"67392","lastModified":"1301901611000","name":"Samuel E. Wright","type":"Person","_key":"41141"} +{"label":"Buddy Hackett","version":30,"id":"67393","lastModified":"1301901502000","name":"Buddy Hackett","type":"Person","_key":"41142"} +{"label":"Superstau","description":"No overview found.","id":"10899","runtime":80,"imdbId":"tt0103009","version":58,"lastModified":"1301906736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/363\/4c54bd5d5e73d632bf000363\/superstau-mid.jpg","genre":"Comedy","title":"Superstau","releaseDate":669513600000,"language":"en","type":"Movie","_key":"41143"} +{"label":"Hildegard Kuhlenberg","version":21,"id":"67398","lastModified":"1301902177000","name":"Hildegard Kuhlenberg","type":"Person","_key":"41144"} +{"label":"Petra Ehlert","version":21,"id":"67399","lastModified":"1301902367000","name":"Petra Ehlert","type":"Person","_key":"41145"} +{"label":"Ulrich Ansch\u00fctz","version":21,"id":"67400","lastModified":"1301902384000","name":"Ulrich Ansch\u00fctz","type":"Person","_key":"41146"} +{"label":"Achim Konejung","version":23,"id":"67401","lastModified":"1301901678000","name":"Achim Konejung","type":"Person","_key":"41147"} +{"label":"Horst Schroth","version":23,"id":"67402","lastModified":"1301902174000","name":"Horst Schroth","type":"Person","_key":"41148"} +{"label":"Surveillance","description":"An FBI agent tracks a serial killer with the help of three of his would-be victims - all of whom have wildly different stories to tell.","id":"10900","runtime":97,"imdbId":"tt0409345","trailer":"http:\/\/www.youtube.com\/watch?v=586","homepage":"http:\/\/www.arclightfilms.com\/labels\/arclight\/new_films\/surveillance.php","version":266,"lastModified":"1301906774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/275\/4bc9314d017a3c57fe014275\/surveillance-mid.jpg","studio":"Arclight Films","genre":"Thriller","title":"Surveillance","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"41149"} +{"label":"Hugh Dillon","version":25,"id":"67704","lastModified":"1301901585000","name":"Hugh Dillon","type":"Person","_key":"41150"} +{"label":"David Gane","version":20,"id":"67705","lastModified":"1301902084000","name":"David Gane","type":"Person","_key":"41151"} +{"label":"Kent Harper","version":25,"id":"67696","lastModified":"1301902084000","name":"Kent Harper","type":"Person","_key":"41152"} +{"label":"Shannon Jardine","version":22,"id":"67706","lastModified":"1301901493000","name":"Shannon Jardine","type":"Person","_key":"41153"} +{"label":"Angela Lamarsh","version":21,"id":"67707","lastModified":"1301901992000","name":"Angela Lamarsh","type":"Person","_key":"41154"} +{"label":"Gerald Lenton-Young","version":18,"id":"67708","lastModified":"1301901724000","name":"Gerald Lenton-Young","type":"Person","_key":"41155"} +{"label":"Mac Miller","version":20,"id":"67709","lastModified":"1301901724000","name":"Mac Miller","type":"Person","_key":"41156"} +{"label":"Charlie Newmark","version":20,"id":"61043","lastModified":"1301902083000","name":"Charlie Newmark","type":"Person","_key":"41157"} +{"label":"Anita Smith","version":20,"id":"67710","lastModified":"1301902083000","name":"Anita Smith","type":"Person","_key":"41158"} +{"label":"French Stewart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f6\/4c95b0545e73d63a770003f6\/french-stewart-profile.jpg","version":44,"id":"67711","lastModified":"1301901349000","name":"French Stewart","type":"Person","_key":"41159"} +{"label":"Josh Strait","version":20,"id":"67712","lastModified":"1301901724000","name":"Josh Strait","type":"Person","_key":"41160"} +{"label":"Kent Nolan","version":18,"id":"67713","lastModified":"1301902083000","name":"Kent Nolan","type":"Person","_key":"41161"} +{"label":"Pok\u00e9mon","description":"No overview found.","id":"10901","title":"Pok\u00e9mon","language":"en","lastModified":"1301908023000","version":131,"type":"Movie","_key":"41162"} +{"label":"Auge in Auge - Eine deutsche Filmgeschichte","description":"No overview found.","id":"10902","runtime":120,"imdbId":"tt1179024","homepage":"http:\/\/www.augeinauge.de\/","version":54,"lastModified":"1301904998000","studio":"WDR","genre":"Documentary","title":"Auge in Auge - Eine deutsche Filmgeschichte","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"41163"} +{"label":"Hans Helmut Prinzler","version":24,"id":"67436","lastModified":"1301901952000","name":"Hans Helmut Prinzler","type":"Person","_key":"41164"} +{"label":"Michael Althen","version":25,"id":"67435","lastModified":"1301901957000","name":"Michael Althen","type":"Person","_key":"41165"} +{"label":"Michael Ballhaus","version":119,"id":"3769","lastModified":"1302068356000","name":"Michael Ballhaus","type":"Person","_key":"41166"} +{"label":"Wolfgang Kohlhaase","version":25,"id":"5509","lastModified":"1301901501000","name":"Wolfgang Kohlhaase","type":"Person","_key":"41167"} +{"label":"Sieben Tage Sonntag","description":"No overview found.","id":"10903","runtime":80,"imdbId":"tt0484888","homepage":"http:\/\/www.siebentagesonntag.de\/\/","version":51,"lastModified":"1301906158000","genre":"Drama","title":"Sieben Tage Sonntag","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"41168"} +{"label":"Niels Laupert","version":21,"id":"67407","lastModified":"1301901812000","name":"Niels Laupert","type":"Person","_key":"41169"} +{"label":"Jil Funke","version":20,"id":"67408","lastModified":"1301902018000","name":"Jil Funke","type":"Person","_key":"41170"} +{"label":"Underdogs","description":"No overview found.","id":"10904","runtime":92,"imdbId":"tt1130898","homepage":"http:\/\/www.farbfilm-verleih.de\/filme\/underdogs.html","version":86,"lastModified":"1301905195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4cb4d52d5e73d67785000071\/underdogs-mid.jpg","studio":"Arte","genre":"Drama","title":"Underdogs","releaseDate":1189641600000,"language":"en","type":"Movie","_key":"41171"} +{"label":"Jan-Hinrik Drevs","version":23,"id":"67413","lastModified":"1301901724000","name":"Jan-Hinrik Drevs","type":"Person","_key":"41172"} +{"label":"Clelia Sarto","version":21,"id":"49028","lastModified":"1301901875000","name":"Clelia Sarto","type":"Person","_key":"41173"} +{"label":"Peter Jordan","version":25,"id":"67422","lastModified":"1301901724000","name":"Peter Jordan","type":"Person","_key":"41174"} +{"label":"Christoph Grunert","version":21,"id":"67423","lastModified":"1301902258000","name":"Christoph Grunert","type":"Person","_key":"41175"} +{"label":"Henning Schimke","version":21,"id":"67424","lastModified":"1301902258000","name":"Henning Schimke","type":"Person","_key":"41176"} +{"label":"Karsten Kretschmer","version":21,"id":"67425","lastModified":"1301902258000","name":"Karsten Kretschmer","type":"Person","_key":"41177"} +{"label":"Luca Maric","version":21,"id":"50686","lastModified":"1301902258000","name":"Luca Maric","type":"Person","_key":"41178"} +{"label":"The Man with One Red Shoe","description":"A man is mistaken as a spy by the CIA when he arrives at the airport with one red shoe.","id":"10905","runtime":92,"imdbId":"tt0089543","trailer":"http:\/\/www.youtube.com\/watch?v=tqbuWpkoth0","version":192,"lastModified":"1301904333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4bc93150017a3c57fe01427e\/the-man-with-one-red-shoe-mid.jpg","genre":"Action","title":"The Man with One Red Shoe","releaseDate":490579200000,"language":"en","type":"Movie","_key":"41179"} +{"label":"Stan Dragoti","version":27,"id":"67411","lastModified":"1301901823000","name":"Stan Dragoti","type":"Person","_key":"41180"} +{"label":"Pet Sematary II","description":"The \"sematary\" is up to its old zombie-raising tricks again. This time, the protagonists are Jeff Matthews, whose mother died in a Hollywood stage accident, and Drew Gilbert, a boy coping with an abusive stepfather.","id":"10906","runtime":100,"imdbId":"tt0105128","version":90,"lastModified":"1301903531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4cc62ea65e73d64e60000019\/pet-sematary-ii-mid.jpg","studio":"Columbus Circle Films","genre":"Horror","title":"Pet Sematary II","releaseDate":714960000000,"language":"en","type":"Movie","_key":"41181"} +{"label":"The Adventures of Robin Hood","description":"Robin Hood (Errol Flynn) fights nobly for justice against the evil Sir Guy of Gisbourne (Basil Rathbone) while striving to win the hand of the beautiful Maid Marian (Olivia de Havilland).","id":"10907","runtime":102,"imdbId":"tt0029843","trailer":"http:\/\/www.youtube.com\/watch?v=Ist_bZLP9u4","version":177,"lastModified":"1301902624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10b\/4cf7003b7b9aa1514600110b\/the-adventures-of-robin-hood-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Adventures of Robin Hood","releaseDate":-999993600000,"language":"en","type":"Movie","_key":"41182"} +{"label":"Una O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9e3\/4be4eb61017a3c35c10009e3\/una-o-connor-profile.jpg","version":31,"id":"2929","lastModified":"1301901426000","name":"Una O'Connor","type":"Person","_key":"41183"} +{"label":"Herbert Mundin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ff\/4bf99c6a017a3c70360001ff\/herbert-mundin-profile.jpg","version":30,"birthday":"-2252019600000","id":"72060","birthplace":"Saint Helens, Lancashire, England, UK","lastModified":"1301901985000","name":"Herbert Mundin","type":"Person","_key":"41184"} +{"label":"Montagu Love","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4c49f1827b9aa1160100013a\/montagu-love-profile.jpg","version":20,"id":"92907","lastModified":"1301902767000","name":"Montagu Love","type":"Person","_key":"41185"} +{"label":"Leonard Willey","version":21,"id":"125844","lastModified":"1301902906000","name":"Leonard Willey","type":"Person","_key":"41186"} +{"label":"Robert Noble","version":22,"id":"125845","lastModified":"1301902544000","name":"Robert Noble","type":"Person","_key":"41187"} +{"label":"William Keighley","version":32,"id":"67426","lastModified":"1301901776000","name":"William Keighley","type":"Person","_key":"41188"} +{"label":"Desert Heat","description":"Eddie Lomax (Jean-Claude Van Damme) is a drifter who has been in a suicidal funk since the death of his close friend Johnny (Danny Trejo). Riding his motorcycle into a small desert town where Johnny once lived, Lomax is confronted by a gang of toughs, who beat him and steal his bike. However, Lomax is not a man to take an injustice lying down, and soon he begins exacting a violent revenge on the men who stole his motorcycle, with local handyman Jubal Early (Pat Morita) lending a hand and several","id":"10908","runtime":95,"imdbId":"tt0139151","version":287,"lastModified":"1301904675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ac\/4d72a5c87b9aa177560004ac\/inferno-mid.jpg","genre":"Action","title":"Desert Heat","releaseDate":938217600000,"language":"en","type":"Movie","_key":"41189"} +{"label":"Kalifornia","description":"A journalist duo go on a tour of serial killer murder sites with two companions, unaware that one of them is a serial killer himself.","id":"10909","runtime":117,"imdbId":"tt0107302","trailer":"http:\/\/www.youtube.com\/watch?v=EBzdZrcoCUk","homepage":"http:\/\/www.mgm.com\/view\/movie\/1024\/Kalifornia\/","version":149,"lastModified":"1301903024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7d\/4d621d297b9aa154bf005a7d\/kalifornia-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Crime","title":"Kalifornia","releaseDate":747014400000,"language":"en","type":"Movie","_key":"41190"} +{"label":"Michelle Forbes","version":30,"id":"41820","lastModified":"1301901408000","name":"Michelle Forbes","type":"Person","_key":"41191"} +{"label":"Moulin Rouge","description":"Fictional account of French artist Henri de Toulouse-Lautrec.","id":"10910","runtime":119,"imdbId":"tt0044926","version":104,"lastModified":"1301904137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c7\/4bc9315a017a3c57fe0142c7\/moulin-rouge-mid.jpg","genre":"Drama","title":"Moulin Rouge","releaseDate":-537235200000,"language":"en","type":"Movie","_key":"41192"} +{"label":"Claude Nollier","version":21,"id":"67443","lastModified":"1301902177000","name":"Claude Nollier","type":"Person","_key":"41193"} +{"label":"The Guns of Navarone","description":"A team of allied saboteurs are assigned an impossible mission: infiltrate an impregnable Nazi-held island and destroy the two enormous long-range field guns that prevent the rescue of 2,000 trapped British soldiers.","id":"10911","runtime":158,"imdbId":"tt0054953","trailer":"http:\/\/www.youtube.com\/watch?v=QpMonrArlHI","version":184,"lastModified":"1301902707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18b\/4d5f40075e73d60c5c00218b\/the-guns-of-navarone-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Guns of Navarone","releaseDate":-269136000000,"language":"en","type":"Movie","_key":"41194"} +{"label":"Stanley Baker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ba\/4c6c05307b9aa13ab40002ba\/stanley-baker-profile.jpg","version":47,"id":"67449","lastModified":"1301901472000","name":"Stanley Baker","type":"Person","_key":"41195"} +{"label":"James Darren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a27\/4c6549c37b9aa172dd000a27\/james-darren-profile.jpg","version":31,"id":"100318","lastModified":"1301902739000","name":"James Darren","type":"Person","_key":"41196"} +{"label":"Gia Scala","version":24,"id":"91639","lastModified":"1301902053000","name":"Gia Scala","type":"Person","_key":"41197"} +{"label":"Michael Trubshawe","version":21,"id":"107540","lastModified":"1301902446000","name":"Michael Trubshawe","type":"Person","_key":"41198"} +{"label":"All Quiet on the Western Front","description":"All Quiet on the Western Front is a television movie produced by ITC Entertainment, released on November 14, 1979, starring actors Richard Thomas from The Waltons fame as Paul Baumer, and Ernest Borgnine as Katczinsky. It is based on the book of the same title by Erich Maria Remarque.The 1979 film was directed by Delbert Mann; though the acting of some of the performers was praised, the general opinion of most film enthusiasts is it failed to equal the 1930 film directed by Lewis Milestone. Nev","id":"10912","runtime":150,"imdbId":"tt0078753","version":148,"lastModified":"1301903977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/464\/4ca929075e73d643ed000464\/all-quiet-on-the-western-front-mid.jpg","genre":"Action","title":"All Quiet on the Western Front","releaseDate":311385600000,"language":"en","tagline":"They left for war as boys, never to return as men.","type":"Movie","_key":"41199"} +{"label":"Delbert Mann","version":30,"id":"67451","lastModified":"1301901668000","name":"Delbert Mann","type":"Person","_key":"41200"} +{"label":"Dear Wendy","description":"No overview found.","id":"10913","runtime":105,"imdbId":"tt0342272","version":149,"lastModified":"1301905050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f0\/4bc9315c017a3c57fe0142f0\/dear-wendy-mid.jpg","genre":"Drama","title":"Dear Wendy","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"41201"} +{"label":"Danso Gordon","version":22,"id":"67453","lastModified":"1301901875000","name":"Danso Gordon","type":"Person","_key":"41202"} +{"label":"All Hat","description":"No overview found.","id":"10914","runtime":89,"imdbId":"tt0903131","homepage":"http:\/\/allhatthemovie.com\/","version":91,"lastModified":"1301903757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4bc9315f017a3c57fe0142f9\/all-hat-mid.jpg","studio":"New Real Films","genre":"Action","title":"All Hat","releaseDate":1189468800000,"language":"en","type":"Movie","_key":"41203"} +{"label":"Leonard Farlinger","version":20,"id":"69168","lastModified":"1301902333000","name":"Leonard Farlinger","type":"Person","_key":"41204"} +{"label":"Trinity Is Back Again","description":"Three rogues set out to rob $300,000 from an Indian-hating cavalry major.","id":"10915","runtime":126,"imdbId":"tt0073036","version":63,"lastModified":"1301903066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/410\/4c43b0d75e73d60f36000410\/un-genio-due-compari-un-pollo-mid.jpg","studio":"AMLF","genre":"Comedy","title":"Trinity Is Back Again","releaseDate":187920000000,"language":"en","type":"Movie","_key":"41205"} +{"label":"Robert Charlebois","version":21,"id":"67455","lastModified":"1301901815000","name":"Robert Charlebois","type":"Person","_key":"41206"} +{"label":"Babylon 5: A Call to Arms","description":"Allies of the Shadows seek revenge against humanity. This movie sets up the series, \"Crusade,\" the sequel to \"Babylon 5.\"","id":"10916","runtime":94,"imdbId":"tt0146455","version":112,"lastModified":"1301903695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30b\/4bc93161017a3c57fe01430b\/babylon-5-a-call-to-arms-mid.jpg","genre":"Action","title":"Babylon 5: A Call to Arms","releaseDate":915321600000,"language":"en","type":"Movie","_key":"41207"} +{"label":"Jerry Doyle","version":22,"id":"52301","lastModified":"1301901649000","name":"Jerry Doyle","type":"Person","_key":"41208"} +{"label":"Carrie Dobro","version":19,"id":"67456","lastModified":"1301901475000","name":"Carrie Dobro","type":"Person","_key":"41209"} +{"label":"Too Young to Die?","description":"An abused 15 year old is charged with a murder that carries the death penalty in this fact-based story.","id":"10917","runtime":92,"imdbId":"tt0100797","version":134,"lastModified":"1301904204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/314\/4bc93161017a3c57fe014314\/too-young-to-die-mid.jpg","genre":"Crime","title":"Too Young to Die?","releaseDate":635990400000,"language":"en","type":"Movie","_key":"41210"} +{"label":"Alan Fudge","version":21,"id":"124131","lastModified":"1301903027000","name":"Alan Fudge","type":"Person","_key":"41211"} +{"label":"Emily Longstreth","version":17,"id":"141046","lastModified":"1301902353000","name":"Emily Longstreth","type":"Person","_key":"41212"} +{"label":"Laurie O'Brien","version":22,"id":"78604","lastModified":"1301901828000","name":"Laurie O'Brien","type":"Person","_key":"41213"} +{"label":"Yvette Heyden","version":17,"id":"141047","lastModified":"1301902387000","name":"Yvette Heyden","type":"Person","_key":"41214"} +{"label":"Dean Abston","version":17,"id":"141048","lastModified":"1301902387000","name":"Dean Abston","type":"Person","_key":"41215"} +{"label":"J. Stephen Brady","version":17,"id":"141049","lastModified":"1301902391000","name":"J. Stephen Brady","type":"Person","_key":"41216"} +{"label":"Mark Davenport","version":17,"id":"141050","lastModified":"1301902544000","name":"Mark Davenport","type":"Person","_key":"41217"} +{"label":"Lew Hopson","version":17,"id":"141051","lastModified":"1301902544000","name":"Lew Hopson","type":"Person","_key":"41218"} +{"label":"Charles C. Stevenson Jr.","version":16,"id":"141052","lastModified":"1301902416000","name":"Charles C. Stevenson Jr.","type":"Person","_key":"41219"} +{"label":"Plots with a View","description":"A woman who's husband is cheating on her and an undertaker who's in love with her for ages, decide to fake her death so they can be together. However, the other town's undertaker who loves over-the-top funerals complicates things.","id":"10918","runtime":94,"imdbId":"tt0298504","version":134,"lastModified":"1301902545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc93162017a3c57fe01431d\/plots-with-a-view-mid.jpg","genre":"Comedy","title":"Plots with a View","releaseDate":1131753600000,"language":"en","tagline":"A comedy where love finds new life and death is something to laugh about.","type":"Movie","_key":"41220"} +{"label":"Hannah Higgins","version":17,"id":"134890","lastModified":"1301902645000","name":"Hannah Higgins","type":"Person","_key":"41221"} +{"label":"Joshua Jenkins","version":17,"id":"134891","lastModified":"1301902636000","name":"Joshua Jenkins","type":"Person","_key":"41222"} +{"label":"Menna Trussler","version":19,"id":"134892","lastModified":"1301902909000","name":"Menna Trussler","type":"Person","_key":"41223"} +{"label":"Jerry Springer","version":21,"id":"94743","lastModified":"1301902520000","name":"Jerry Springer","type":"Person","_key":"41224"} +{"label":"Lennie Huhtala","version":17,"id":"134893","lastModified":"1301902654000","name":"Lennie Huhtala","type":"Person","_key":"41225"} +{"label":"Padrig Owen Jones","version":18,"id":"134894","lastModified":"1301902721000","name":"Padrig Owen Jones","type":"Person","_key":"41226"} +{"label":"Stan Stennet","version":19,"id":"134895","lastModified":"1301902636000","name":"Stan Stennet","type":"Person","_key":"41227"} +{"label":"Enid Nelmes","version":18,"id":"134896","lastModified":"1301902722000","name":"Enid Nelmes","type":"Person","_key":"41228"} +{"label":"Noel Williams","version":17,"id":"134897","lastModified":"1301902565000","name":"Noel Williams","type":"Person","_key":"41229"} +{"label":"Robert Page","version":33,"id":"134898","lastModified":"1301902569000","name":"Robert Page","type":"Person","_key":"41230"} +{"label":"Peggy Mason","version":17,"id":"134899","lastModified":"1301902742000","name":"Peggy Mason","type":"Person","_key":"41231"} +{"label":"Stevie Parry","version":19,"id":"134900","lastModified":"1301902717000","name":"Stevie Parry","type":"Person","_key":"41232"} +{"label":"Dawn Pritchard","version":17,"id":"134901","lastModified":"1301902755000","name":"Dawn Pritchard","type":"Person","_key":"41233"} +{"label":"Louise Hopkins","version":17,"id":"134902","lastModified":"1301902559000","name":"Louise Hopkins","type":"Person","_key":"41234"} +{"label":"Ena Cohen","version":17,"id":"134903","lastModified":"1301902559000","name":"Ena Cohen","type":"Person","_key":"41235"} +{"label":"Maggs Harries","version":17,"id":"134904","lastModified":"1301902562000","name":"Maggs Harries","type":"Person","_key":"41236"} +{"label":"Howell Evans","version":17,"id":"134905","lastModified":"1301902591000","name":"Howell Evans","type":"Person","_key":"41237"} +{"label":"Pat Kane","version":17,"id":"134906","lastModified":"1301902659000","name":"Pat Kane","type":"Person","_key":"41238"} +{"label":"Malcolm Cousins","version":17,"id":"134907","lastModified":"1301902644000","name":"Malcolm Cousins","type":"Person","_key":"41239"} +{"label":"Dafydd Hywel","version":17,"id":"134908","lastModified":"1301902640000","name":"Dafydd Hywel","type":"Person","_key":"41240"} +{"label":"Beverly Hotsprings","version":17,"id":"134909","lastModified":"1301902636000","name":"Beverly Hotsprings","type":"Person","_key":"41241"} +{"label":"Dafydd Wyn Roberts","version":18,"id":"134910","lastModified":"1301902715000","name":"Dafydd Wyn Roberts","type":"Person","_key":"41242"} +{"label":"The Omen","description":"No overview found.","id":"10919","version":434,"lastModified":"1301904184000","genre":"Drama","title":"The Omen","language":"en","type":"Movie","_key":"41243"} +{"label":"Babylon 5: The River of Souls","description":"A group of Soul Hunters come to Babylon 5 demanding the return of something that was stolen from them.","id":"10921","runtime":94,"imdbId":"tt0146247","version":117,"lastModified":"1301905274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/326\/4bc93162017a3c57fe014326\/babylon-5-the-river-of-souls-mid.jpg","studio":"Babylonian Productions","genre":"Action","title":"Babylon 5: The River of Souls","releaseDate":910483200000,"language":"en","type":"Movie","_key":"41244"} +{"label":"Tracy Scoggins","version":30,"id":"52312","lastModified":"1301901645000","name":"Tracy Scoggins","type":"Person","_key":"41245"} +{"label":"Richard Biggs","version":20,"id":"52302","lastModified":"1301901724000","name":"Richard Biggs","type":"Person","_key":"41246"} +{"label":"Wayne Alexander","version":16,"id":"78148","lastModified":"1301902258000","name":"Wayne Alexander","type":"Person","_key":"41247"} +{"label":"Bob Amaral","version":16,"id":"78149","lastModified":"1301901875000","name":"Bob Amaral","type":"Person","_key":"41248"} +{"label":"Joshua Cox","version":23,"id":"78150","lastModified":"1301901394000","name":"Joshua Cox","type":"Person","_key":"41249"} +{"label":"Ray Proscia","version":16,"id":"78151","lastModified":"1301902258000","name":"Ray Proscia","type":"Person","_key":"41250"} +{"label":"Joel Brooks","version":21,"id":"72421","lastModified":"1301902258000","name":"Joel Brooks","type":"Person","_key":"41251"} +{"label":"T.J. Hoban","version":16,"id":"78152","lastModified":"1301902258000","name":"T.J. Hoban","type":"Person","_key":"41252"} +{"label":"Janet Greek","version":19,"id":"67478","lastModified":"1301901875000","name":"Janet Greek","type":"Person","_key":"41253"} +{"label":"The Human Stain","description":"When a disgraced former college professor has a romance with a mysterious younger woman haunted by her dark twisted past, he is forced to confront a shocking secret about his own life that he has kept secret for 50 years. ","id":"10922","runtime":106,"imdbId":"tt0308383","version":173,"lastModified":"1301902226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34f\/4bc93168017a3c57fe01434f\/the-human-stain-mid.jpg","genre":"Drama","title":"The Human Stain","releaseDate":1062115200000,"language":"en","type":"Movie","_key":"41254"} +{"label":"Robert Benton","version":46,"id":"6729","lastModified":"1301901283000","name":"Robert Benton","type":"Person","_key":"41255"} +{"label":"Agent Cody Banks","description":"Recruited by the U.S. government to be a special agent, nerdy teenager Cody Banks must get closer to cute classmate Natalie in order to learn about an evil plan hatched by her father. But despite the agent persona, Cody struggles with teen angst.","id":"10923","runtime":102,"imdbId":"tt0313911","trailer":"http:\/\/www.youtube.com\/watch?v=FKKPVUsKBzM","version":147,"lastModified":"1301903730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bd\/4d49fbc07b9aa13ab80004bd\/agent-cody-banks-mid.jpg","genre":"Action","title":"Agent Cody Banks","releaseDate":1047600000000,"language":"en","tagline":"Save the world. Get the girl. Pass math.","type":"Movie","_key":"41256"} +{"label":"From Dusk Till Dawn","description":"No overview found.","id":"10924","version":84,"lastModified":"1301903022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37d\/4bc9316f017a3c57fe01437d\/from-dusk-till-dawn-mid.jpg","genre":"Action","title":"From Dusk Till Dawn","language":"en","type":"Movie","_key":"41257"} +{"label":"The Return of the Living Dead","description":"When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage through Louisville, Kentucky seeking their favorite food, brains.","id":"10925","runtime":91,"imdbId":"tt0089907","trailer":"http:\/\/www.youtube.com\/watch?v=EuNc2MDjPpA","version":149,"lastModified":"1301901743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a5\/4d93c95b7b9aa119970015a5\/the-return-of-the-living-dead-mid.jpg","studio":"Hemdale Film Corporation","genre":"Comedy","title":"The Return of the Living Dead","releaseDate":484963200000,"language":"en","type":"Movie","_key":"41258"} +{"label":"Samba in Mettmann","description":"No overview found.","id":"10926","runtime":89,"imdbId":"tt0389343","version":60,"lastModified":"1301906157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4d2071ab5e73d66b3b00206b\/samba-in-mettmann-mid.jpg","genre":"Comedy","title":"Samba in Mettmann","releaseDate":1075334400000,"language":"en","type":"Movie","_key":"41259"} +{"label":"Janette Rauch","version":23,"id":"67493","lastModified":"1301901998000","name":"Janette Rauch","type":"Person","_key":"41260"} +{"label":"Pamela Knight","version":21,"id":"67494","lastModified":"1301901952000","name":"Pamela Knight","type":"Person","_key":"41261"} +{"label":"Beatrice Masala","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4d2075745e73d66b3b002096\/beatrice-masala-profile.jpg","version":16,"id":"146839","lastModified":"1301901599000","name":"Beatrice Masala","type":"Person","_key":"41262"} +{"label":"Jana Ina","version":15,"id":"146840","lastModified":"1301902208000","name":"Jana Ina","type":"Person","_key":"41263"} +{"label":"Angelo Colagrossi","version":28,"id":"66889","lastModified":"1301902149000","name":"Angelo Colagrossi","type":"Person","_key":"41264"} +{"label":"Back to Gaya","description":"No overview found.","id":"10927","runtime":91,"imdbId":"tt0395947","version":78,"lastModified":"1301904041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a8\/4bc93173017a3c57fe0143a8\/back-to-gaya-mid.jpg","genre":"Animation","title":"Back to Gaya","releaseDate":1079568000000,"language":"en","type":"Movie","_key":"41265"} +{"label":"Sebastian H\u00f6ffner","version":20,"id":"67508","lastModified":"1301901444000","name":"Sebastian H\u00f6ffner","type":"Person","_key":"41266"} +{"label":"Torsten Lennie M\u00fcnchow","version":18,"id":"67509","lastModified":"1301901445000","name":"Torsten Lennie M\u00fcnchow","type":"Person","_key":"41267"} +{"label":"National Lampoon's","description":"No overview found.","id":"10928","version":710,"lastModified":"1301903482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4d86e36a7b9aa12edd004142\/national-lampoon-s-mid.jpg","title":"National Lampoon's","language":"en","type":"Movie","_key":"41268"} +{"label":"Willard","description":"No overview found.","id":"10929","runtime":100,"imdbId":"tt0310357","version":171,"lastModified":"1301904765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b6\/4bc93177017a3c57fe0143b6\/willard-mid.jpg","genre":"Horror","title":"Willard","releaseDate":1047600000000,"language":"en","type":"Movie","_key":"41269"} +{"label":"Ashlyn Gere","version":20,"id":"67519","lastModified":"1301902357000","name":"Ashlyn Gere","type":"Person","_key":"41270"} +{"label":"William S. Taylor","version":23,"id":"67520","lastModified":"1301901937000","name":"William S. Taylor","type":"Person","_key":"41271"} +{"label":"La Fleur du mal","description":"Three generations of a wealthy Bordeaux family are caught in the crossfire when Anne decides to run for mayor, thanks to a political pamphlet that revives an old murder scandal.","id":"10930","runtime":104,"imdbId":"tt0322289","version":52,"lastModified":"1301903460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bb\/4bc93177017a3c57fe0143bb\/la-fleur-du-mal-mid.jpg","genre":"Drama","title":"La Fleur du mal","releaseDate":1044748800000,"language":"en","type":"Movie","_key":"41272"} +{"label":"M\u00e9lanie Doutey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/de7\/4cd07d935e73d65021000de7\/melanie-doutey-profile.jpg","version":48,"birthday":"280537200000","id":"67532","lastModified":"1301901528000","name":"M\u00e9lanie Doutey","type":"Person","_key":"41273"} +{"label":"Die t\u00f6dliche Maria","description":"No overview found.","id":"10931","runtime":106,"imdbId":"tt0108425","version":46,"lastModified":"1301904675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fad\/4d57d6ea7b9aa16bc6001fad\/die-t-dliche-maria-mid.jpg","genre":"Drama","title":"Die t\u00f6dliche Maria","releaseDate":760233600000,"language":"en","type":"Movie","_key":"41274"} +{"label":"Der letzte Lude","description":"No overview found.","id":"10932","runtime":90,"imdbId":"tt0304327","version":46,"lastModified":"1301905634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94e\/4c0a4c2f017a3c29a600094e\/der-letzte-lude-mid.jpg","genre":"Comedy","title":"Der letzte Lude","releaseDate":1057795200000,"language":"en","type":"Movie","_key":"41275"} +{"label":"Lotto King Karl","version":19,"id":"67540","lastModified":"1301902083000","name":"Lotto King Karl","type":"Person","_key":"41276"} +{"label":"Erdal Kacar","version":19,"id":"67541","lastModified":"1301902258000","name":"Erdal Kacar","type":"Person","_key":"41277"} +{"label":"Stephen Manuel","version":27,"id":"67542","lastModified":"1301954025000","name":"Stephen Manuel","type":"Person","_key":"41278"} +{"label":"Derrick - Die Pflicht ruft","description":"No overview found.","id":"10933","runtime":80,"imdbId":"tt0387162","version":69,"lastModified":"1301903356000","genre":"Animation","title":"Derrick - Die Pflicht ruft","releaseDate":1080777600000,"language":"en","type":"Movie","_key":"41279"} +{"label":"Anke Kortemeier","version":20,"id":"67545","lastModified":"1301901992000","name":"Anke Kortemeier","type":"Person","_key":"41280"} +{"label":"Wolfgang Stumph","version":24,"id":"67546","lastModified":"1301902331000","name":"Wolfgang Stumph","type":"Person","_key":"41281"} +{"label":"Michael Ekbladh","version":19,"id":"67547","lastModified":"1301901724000","name":"Michael Ekbladh","type":"Person","_key":"41282"} +{"label":"Under the Tuscan Sun","description":"After a rough divoce, Frances, a 35 year old book editor from San Francisco takes a tour of Tuscany at the urgings of her friends. On a whim she buys Bramasole, a run down villa in the Tuscan countryside and begins to piece her life together starting with the villa and finds that life sometimes has unexpected ways of giving her everything she wanted.","id":"10934","runtime":113,"imdbId":"tt0328589","version":164,"lastModified":"1301902515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c8\/4bc93179017a3c57fe0143c8\/under-the-tuscan-sun-mid.jpg","genre":"Comedy","title":"Under the Tuscan Sun","releaseDate":1064016000000,"language":"en","type":"Movie","_key":"41283"} +{"label":"Audrey Wells","version":46,"id":"36805","lastModified":"1302065139000","name":"Audrey Wells","type":"Person","_key":"41284"} +{"label":"Heaven's Gate","description":"Michael Cimino's bleak anti-western based on events in 1890s Wyoming. Sheriff James Averill attempts to protect immigrant farmers from wealthy cattle interests, and also clashes with a hired gun, Nathan Champion, over the woman they both love, Ella Watson. Both men find themselves questioning their roles in the furious conflict between wealthy landowners and European immigrants attempting to build new lives on the American frontier, which culminates in a brutal pitched battle.","id":"10935","runtime":219,"imdbId":"tt0080855","version":133,"lastModified":"1301905446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d19\/4be704ea017a3c35b5000d19\/heaven-s-gate-mid.jpg","genre":"Action","title":"Heaven's Gate","releaseDate":343440000000,"language":"en","type":"Movie","_key":"41285"} +{"label":"Barfly","description":"Downtrodden writer Henry (Mickey Rourke) and distressed goddess Wanda (Faye Dunaway) aren't exactly husband and wife: they're wedded to their bar stools. But they like each other's company- and Barfly captures their giddy, gin-soaked attempts to make a go of life on the skids.","id":"10937","runtime":97,"imdbId":"tt0092618","version":144,"lastModified":"1301902523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3db\/4bc9317a017a3c57fe0143db\/barfly-mid.jpg","studio":"Cannon Group","genre":"Comedy","title":"Barfly","releaseDate":557539200000,"language":"en","tagline":"Some people never go crazy. What truly horrible lives they must lead.","type":"Movie","_key":"41286"} +{"label":"Beautiful Thing","description":"A pair of teenage boys growing up in a working-class neighborhood become aware of their homosexuality. While both were vaguely aware they might be gay, neither had ever acted on their impulses. Once they decide that they're attracted to each other, neither is sure just what to do. ","id":"10938","runtime":90,"imdbId":"tt0115640","version":130,"lastModified":"1301904887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e4\/4bc9317a017a3c57fe0143e4\/beautiful-thing-mid.jpg","genre":"Comedy","title":"Beautiful Thing","releaseDate":827971200000,"language":"en","type":"Movie","_key":"41287"} +{"label":"Linda Henry","version":19,"id":"42582","lastModified":"1301902083000","name":"Linda Henry","type":"Person","_key":"41288"} +{"label":"Glen Berry","version":19,"id":"67568","lastModified":"1301902258000","name":"Glen Berry","type":"Person","_key":"41289"} +{"label":"Martin Walsh","version":60,"id":"9154","lastModified":"1301901502000","name":"Martin Walsh","type":"Person","_key":"41290"} +{"label":"Steven M. Martin","version":17,"id":"67569","lastModified":"1301902258000","name":"Steven M. Martin","type":"Person","_key":"41291"} +{"label":"Hettie Macdonald","version":19,"id":"67570","lastModified":"1301902258000","name":"Hettie Macdonald","type":"Person","_key":"41292"} +{"label":"Le retour du grand blond","description":"No overview found.","id":"10939","runtime":84,"imdbId":"tt0072080","version":54,"lastModified":"1301902884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c7\/4cc3250f5e73d677850016c7\/le-retour-du-grand-blond-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Le retour du grand blond","releaseDate":156556800000,"language":"en","type":"Movie","_key":"41293"} +{"label":"Babylon 5: In the Beginning","description":"Londo Mollari, the Centauri Emperor, recounts the initial contact between the Humans and Minbari, which resulted in a major incident and subsequent war, for an eager pair of youngsters wanting a story about love and conflict.","id":"10940","runtime":94,"imdbId":"tt0120711","version":131,"lastModified":"1301903851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ed\/4bc9317b017a3c57fe0143ed\/babylon-5-in-the-beginning-mid.jpg","studio":"Babylonian Productions","genre":"Action","title":"Babylon 5: In the Beginning","releaseDate":883872000000,"language":"en","type":"Movie","_key":"41294"} +{"label":"Babylon 5: Thirdspace","description":"Susan Ivanova discovers a derelict spaceship in hyperspace. They tow it back to Babylon 5, then strange things start happening. People are being telepathically taken over by aliens from another (third)space. ","id":"10941","runtime":94,"imdbId":"tt0121804","version":97,"lastModified":"1301903070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f6\/4bc9317e017a3c57fe0143f6\/babylon-5-thirdspace-mid.jpg","studio":"Babylonian Productions","genre":"Action","title":"Babylon 5: Thirdspace","releaseDate":900806400000,"language":"en","type":"Movie","_key":"41295"} +{"label":"Shari Belafonte","version":23,"id":"67575","lastModified":"1301902165000","name":"Shari Belafonte","type":"Person","_key":"41296"} +{"label":"Jes\u00fas Salvador Trevi\u00f1o","version":19,"id":"67576","lastModified":"1301901875000","name":"Jes\u00fas Salvador Trevi\u00f1o","type":"Person","_key":"41297"} +{"label":"Babylon 5: The Gathering","description":"The first installment of this Emmy award-winning series. A movie based at Babylon 5: a new space station built by Humans. The Vorlon ambassador, Kosh, has been poisoned. It is the new commanding officer's, Jeffrey Sinclair, responsibility to find the culprit. Otherwise the space station will fail in its role to bring all the races together.","id":"10942","runtime":89,"imdbId":"tt0106336","version":111,"lastModified":"1301903166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40d\/4bc9317f017a3c57fe01440d\/babylon-5-the-gathering-mid.jpg","studio":"Rattlesnake Productions","genre":"Science Fiction","title":"Babylon 5: The Gathering","releaseDate":730339200000,"language":"en","type":"Movie","_key":"41298"} +{"label":"Michael O'Hare","version":21,"id":"51963","lastModified":"1301901783000","name":"Michael O'Hare","type":"Person","_key":"41299"} +{"label":"Richard Compton","version":19,"id":"15959","lastModified":"1301901416000","name":"Richard Compton","type":"Person","_key":"41300"} +{"label":"The Gathering","description":"No overview found.","id":"10943","runtime":92,"imdbId":"tt0294594","version":115,"lastModified":"1301902973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41a\/4bc9317f017a3c57fe01441a\/the-gathering-mid.jpg","genre":"Horror","title":"The Gathering","releaseDate":1045958400000,"language":"en","tagline":"Evil Souls Rule","type":"Movie","_key":"41301"} +{"label":"In the Cut","description":"A New York writing professor, Frannie Avery (Ryan), has an erotic affair with a police detective (Ruffalo) investigating a murder in her neighborhood of a beautiful young woman...","id":"10944","runtime":119,"imdbId":"tt0199626","trailer":"http:\/\/www.youtube.com\/watch?v=6ZKfF84LKT0","version":202,"lastModified":"1301903023000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/434\/4bc93185017a3c57fe014434\/in-the-cut-mid.jpg","genre":"Drama","title":"In the Cut","releaseDate":1063065600000,"language":"en","type":"Movie","_key":"41302"} +{"label":"Nick Damici","version":22,"id":"67580","lastModified":"1301901875000","name":"Nick Damici","type":"Person","_key":"41303"} +{"label":"Heather Litteer","version":20,"id":"67581","lastModified":"1301901992000","name":"Heather Litteer","type":"Person","_key":"41304"} +{"label":"Jumpin' Jack Flash","description":"Terry works for a bank, and uses computers to communicate with clients all over the world. One day she gets a strange message from an unknown source. The message is coded. After decoding the message, Terry becomes embroiled in an espionage ring. People are killed, and Terry is chased. Throughout she remains in contact with this unknown person, who needs Terry to help save his life.","id":"10945","runtime":100,"imdbId":"tt0091306","trailer":"http:\/\/www.youtube.com\/watch?v=CmOhsMEnGOQ","version":95,"lastModified":"1301903631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/446\/4bc93188017a3c57fe014446\/jumpin-jack-flash-mid.jpg","genre":"Action","title":"Jumpin' Jack Flash","releaseDate":529286400000,"language":"en","type":"Movie","_key":"41305"} +{"label":"Earth","description":"From the acclaimed team that brought you BBC's visual feast \"Planet Earth,\" this feature length film incorporates some of the same footage from the series with all new scenes following three remarkable, yet sadly endangered, families of animal across the globe.","id":"10946","runtime":95,"imdbId":"tt0393597","trailer":"http:\/\/www.youtube.com\/watch?v=CeacjOkLjZ0","homepage":"http:\/\/www.loveearth.com\/de\/earthfilm","version":252,"lastModified":"1301902949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/453\/4bc93189017a3c57fe014453\/earth-mid.jpg","studio":"Disneynature","genre":"Documentary","title":"Earth","releaseDate":1195171200000,"language":"en","tagline":"The remarkable story of three families.","type":"Movie","_key":"41306"} +{"label":"Mark Linfield","version":24,"id":"67590","lastModified":"1301901674000","name":"Mark Linfield","type":"Person","_key":"41307"} +{"label":"Alastair Fothergill","version":60,"id":"67589","lastModified":"1301901314000","name":"Alastair Fothergill","type":"Person","_key":"41308"} +{"label":"High School Musical","description":"Two high school students who are worlds apart -- the school's hoops star and the president of the science club -- secretly decide to audition for their school's musical, a decision that turns both their world and their school upside down.","id":"10947","runtime":98,"imdbId":"tt0475293","homepage":"http:\/\/tv.disney.go.com\/disneychannel\/originalmovies\/highschoolmusical\/index.html","version":115,"lastModified":"1301901401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/470\/4bc9318d017a3c57fe014470\/high-school-musical-mid.jpg","studio":"Disney Channel","genre":"Comedy","title":"High School Musical","releaseDate":1137715200000,"language":"en","type":"Movie","_key":"41309"} +{"label":"Vanessa Anne Hudgens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35d\/4bf79944017a3c772c00035d\/vanessa-anne-hudgens-profile.jpg","version":64,"birthday":"598057200000","id":"67599","birthplace":"Salinas, California, USA","lastModified":"1301904071000","name":"Vanessa Anne Hudgens","type":"Person","_key":"41310"} +{"label":"Ashley Tisdale","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4bcc2bf9017a3c0f2a000062\/ashley-tisdale-profile.jpg","version":48,"id":"67600","lastModified":"1301901265000","name":"Ashley Tisdale","type":"Person","_key":"41311"} +{"label":"Lucas Grabeel","version":42,"id":"67601","lastModified":"1301901111000","name":"Lucas Grabeel","type":"Person","_key":"41312"} +{"label":"Corbin Bleu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/394\/4d9ac28e5e73d6476a000394\/corbin-bleu-profile.jpg","version":36,"id":"67602","lastModified":"1301980785000","name":"Corbin Bleu","type":"Person","_key":"41313"} +{"label":"The Fox and the Hound","description":"The fun and adventure begin when a lonely widow adopts an orphaned fox cub named Tod. The mischievous fox soon meets up with Copper, an adorable hound puppy. As the innocent pair grow up together in the forest, they become inseparable friends. But the day soon arrives when their friendship is put to the ultimate test!","id":"10948","runtime":83,"imdbId":"tt0082406","trailer":"http:\/\/www.youtube.com\/watch?v=1631","version":139,"lastModified":"1301901439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cf\/4d879e5b7b9aa137c00000cf\/the-fox-and-the-hound-mid.jpg","studio":"Walt Disney","genre":"Animation","title":"The Fox and the Hound","releaseDate":363571200000,"language":"en","tagline":"Two friends that didn't know they were supposed to be enemies.","type":"Movie","_key":"41314"} +{"label":"Richard Rich","version":57,"id":"107274","lastModified":"1301901313000","name":"Richard Rich","type":"Person","_key":"41315"} +{"label":"Art Stevens","version":47,"id":"67607","lastModified":"1301901399000","name":"Art Stevens","type":"Person","_key":"41316"} +{"label":"Ted Berman","version":48,"id":"67604","lastModified":"1301901530000","name":"Ted Berman","type":"Person","_key":"41317"} +{"label":"Oliver Twist","description":"Based on the Charles Dickens novel Oliver Twist is about an orphan boy who runs away from a workhouse and meets a pickpocket on the streets of London. Oliver is taken in by the pickpocket and he joins a household of young boys who are trained to steal for their master.","id":"10949","runtime":115,"imdbId":"tt0040662","version":95,"lastModified":"1301905725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab7\/4d2ceffd7b9aa11a5e000ab7\/oliver-twist-mid.jpg","genre":"Adventure","title":"Oliver Twist","releaseDate":-678672000000,"language":"en","type":"Movie","_key":"41318"} +{"label":"Kay Walsh","version":26,"id":"67615","lastModified":"1301902165000","name":"Kay Walsh","type":"Person","_key":"41319"} +{"label":"John Howard Davies","version":21,"id":"67616","lastModified":"1301901945000","name":"John Howard Davies","type":"Person","_key":"41320"} +{"label":"I am Sam","description":"Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family. ","id":"10950","runtime":127,"imdbId":"tt0277027","trailer":"http:\/\/www.youtube.com\/watch?v=EROTbDCr5ag","version":124,"lastModified":"1301903081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4c4018677b9aa1428100007f\/i-am-sam-mid.jpg","genre":"Action","title":"I am Sam","releaseDate":1009497600000,"language":"en","type":"Movie","_key":"41321"} +{"label":"Gorgeous","description":"When Ah Bu, a girl from a small fishing town in Taiwan, finds a glass bottle with a romantic message, she travels to Hong Kong to find her prince charming. As it turns out, her prince charming, Albert, happens to be gay. But all is not lost when Ah Bu meets the dashing Chi Wu. Meanwhile, Ah Bu's boyfriend from Taiwan comes looking for her, as the action and romance follow Ah Bu back to Taiwan. ","id":"10951","runtime":121,"imdbId":"tt0184526","version":187,"lastModified":"1301902733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ae\/4bc93196017a3c57fe0144ae\/bor-lei-jun-mid.jpg","studio":"Golden Harvest Pictures","genre":"Action","title":"Gorgeous","releaseDate":918777600000,"language":"en","tagline":"\u201cShe wanted adventure. In Hong Kong she found her match.\u201d","type":"Movie","_key":"41322"} +{"label":"Emil Chau","version":21,"id":"67889","lastModified":"1301901992000","name":"Emil Chau","type":"Person","_key":"41323"} +{"label":"Vincent Kok","version":44,"id":"65934","lastModified":"1301901409000","name":"Vincent Kok","type":"Person","_key":"41324"} +{"label":"New Jack City","description":"The gangster Nino has a gang who call themselves Cash Money Brothers. They get into the crack business and not before long they make a million every week. A cop, Scotty, is after them. He tries to get into the gang by letting an ex-drug addict infiltrate them, but the trial fails miserably. The only thing that remains is that Scotty himself becomes a drug pusher.","id":"10952","runtime":97,"imdbId":"tt0102526","version":119,"lastModified":"1302038625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bf\/4bc93197017a3c57fe0144bf\/new-jack-city-mid.jpg","studio":"The Jackson%2FMcHenry Company","genre":"Action","title":"New Jack City","releaseDate":668390400000,"language":"en","tagline":"They're a new breed of gangster. The new public enemy. The new family of crime.","type":"Movie","_key":"41325"} +{"label":"alaska.de","description":"No overview found.","id":"10953","runtime":89,"imdbId":"tt0248628","version":59,"lastModified":"1301904432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/544\/4d69b9925e73d66b2b001544\/alaska-de-mid.jpg","genre":"Drama","title":"alaska.de","releaseDate":968976000000,"language":"en","type":"Movie","_key":"41326"} +{"label":"Frank Droese","version":21,"id":"67740","lastModified":"1301902359000","name":"Frank Droese","type":"Person","_key":"41327"} +{"label":"Arthur Rakk","version":21,"id":"67741","lastModified":"1301901952000","name":"Arthur Rakk","type":"Person","_key":"41328"} +{"label":"Toni Blume","version":21,"id":"67742","lastModified":"1301902333000","name":"Toni Blume","type":"Person","_key":"41329"} +{"label":"Esther Gronenborn","version":24,"id":"67743","lastModified":"1301902148000","name":"Esther Gronenborn","type":"Person","_key":"41330"} +{"label":"Farinelli: voce regina","description":"Farinelli is a 1994 biopic film about the life and career of Italian opera singer Farinelli, considered one of the greatest castrato singers of all time.","id":"10954","runtime":111,"imdbId":"tt0109771","version":53,"lastModified":"1301903873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fa\/4bef2dce017a3c458a0001fa\/farinelli-il-castrato-mid.jpg","genre":"Drama","title":"Farinelli: voce regina","releaseDate":786758400000,"language":"en","type":"Movie","_key":"41331"} +{"label":"G\u00e9rard Corbiau","version":22,"id":"67794","lastModified":"1301902332000","name":"G\u00e9rard Corbiau","type":"Person","_key":"41332"} +{"label":"Ripley's Game","description":"Tom Ripley - cool, urbane, wealthy, and murderous - lives in a villa in the Veneto with Luisa, his harpsichord-playing girlfriend. A former business associate from Berlin's underworld pays a call asking Ripley's help in killing a rival. Ripley - ever a student of human nature - initiates a game to turn a mild and innocent local picture framer into a hit man. The artisan, Jonathan Trevanny, who's dying of cancer, has a wife, young son, and little to leave them. If Ripley draws Jonathan into the g","id":"10955","runtime":110,"imdbId":"tt0265651","version":133,"lastModified":"1301903904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cd\/4bc9319a017a3c57fe0144cd\/ripley-s-game-mid.jpg","genre":"Drama","title":"Ripley's Game","releaseDate":1030924800000,"language":"en","type":"Movie","_key":"41333"} +{"label":"Uwe Mansshardt","version":22,"id":"67747","lastModified":"1301902175000","name":"Uwe Mansshardt","type":"Person","_key":"41334"} +{"label":"Liliana Cavani","version":29,"id":"67750","lastModified":"1301901952000","name":"Liliana Cavani","type":"Person","_key":"41335"} +{"label":"Joe Dirt","description":"Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.","id":"10956","runtime":92,"imdbId":"tt0245686","version":169,"lastModified":"1301901425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d9\/4c83f2a15e73d664d30000d9\/joe-dirt-mid.jpg","genre":"Action","title":"Joe Dirt","releaseDate":986947200000,"language":"en","tagline":"He Came. He Cleaned. He Conquered.","type":"Movie","_key":"41336"} +{"label":"Robert Simonds","version":89,"id":"29015","lastModified":"1302060440000","name":"Robert Simonds","type":"Person","_key":"41337"} +{"label":"The Black Cauldron","description":"Taran is an assistant pigkeeper with boyish dreams of becoming a great warrior. However, he has to put the daydreaming aside when his charge, an oracular pig named Hen Wen, is kidnapped by an evil lord known as the Horned King. The villain hopes Hen will show him the way to The Black Cauldron, which has the power to create a giant army of unstoppable soldiers.","id":"10957","runtime":80,"imdbId":"tt0088814","trailer":"http:\/\/www.youtube.com\/watch?v=lHiyYSuveJ4","version":152,"lastModified":"1301902658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f5\/4bc9319d017a3c57fe0144f5\/the-black-cauldron-mid.jpg","studio":"Disney","genre":"Adventure","title":"The Black Cauldron","releaseDate":491011200000,"language":"en","tagline":"Hidden by darkness. Guarded by witches. Discovered by a boy. Stolen by a king. Whoever owns it will rule the world. Or destroy it.","type":"Movie","_key":"41338"} +{"label":"Grant Bardsley","version":25,"id":"67620","lastModified":"1301902258000","name":"Grant Bardsley","type":"Person","_key":"41339"} +{"label":"Susan Sheridan","version":25,"id":"67621","lastModified":"1301901724000","name":"Susan Sheridan","type":"Person","_key":"41340"} +{"label":"Flight 93","description":"No overview found.","id":"10958","runtime":89,"imdbId":"tt0481522","version":150,"lastModified":"1301903419000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fe\/4bc931a0017a3c57fe0144fe\/flight-93-mid.jpg","genre":"Drama","title":"Flight 93","releaseDate":1138579200000,"language":"en","type":"Movie","_key":"41341"} +{"label":"Brennan Elliott","version":21,"id":"43458","lastModified":"1301901824000","name":"Brennan Elliott","type":"Person","_key":"41342"} +{"label":"Peter Markle","version":26,"id":"67632","lastModified":"1301901659000","name":"Peter Markle","type":"Person","_key":"41343"} +{"label":"Das Wunder von Bern","description":"No overview found.","id":"10959","runtime":90,"imdbId":"tt0415377","version":59,"lastModified":"1301904471000","genre":"Documentary","title":"Das Wunder von Bern","releaseDate":1083024000000,"language":"en","type":"Movie","_key":"41344"} +{"label":"Hans Bauer","version":20,"id":"67638","lastModified":"1301901994000","name":"Hans Bauer","type":"Person","_key":"41345"} +{"label":"Ulrich Biesinger","version":20,"id":"67639","lastModified":"1301901992000","name":"Ulrich Biesinger","type":"Person","_key":"41346"} +{"label":"Jozsef Bozik","version":20,"id":"67640","lastModified":"1301901814000","name":"Jozsef Bozik","type":"Person","_key":"41347"} +{"label":"Jen\u00f6 Buzanszky","version":20,"id":"67641","lastModified":"1301901696000","name":"Jen\u00f6 Buzanszky","type":"Person","_key":"41348"} +{"label":"Manfred Oldenburg","version":20,"id":"67644","lastModified":"1301901833000","name":"Manfred Oldenburg","type":"Person","_key":"41349"} +{"label":"Sebastian Dehnhardt","version":21,"id":"67642","lastModified":"1301901838000","name":"Sebastian Dehnhardt","type":"Person","_key":"41350"} +{"label":"Project: ALF","description":"Six years ago, the space alien, ALF, was on his way back to his new home...When the Alien Task Force finally caught him. Now, the story continues to where the series ended. ALF is now protected by the Alien Task Force, but the leader wants to terminate ALF. So two officers decide to save ALF by taking ALF away from him. But the man the officers took ALF to wants to finally reveal ALF to the world.","id":"10960","runtime":95,"imdbId":"tt0117397","version":79,"lastModified":"1301902661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4bc931a1017a3c57fe014507\/project-alf-mid.jpg","genre":"Comedy","title":"Project: ALF","releaseDate":824515200000,"language":"en","type":"Movie","_key":"41351"} +{"label":"Alf","version":19,"id":"67648","lastModified":"1301901536000","name":"Alf","type":"Person","_key":"41352"} +{"label":"Behind the Mask: The Rise of Leslie Vernon","description":"The next great psycho horror slasher has given a documentary crew exclusive access to his life as he plans his reign of terror over the sleepy town of Glen Echo, all the while deconstructing the conventions and archetypes of the horror genre for them.","id":"10961","runtime":92,"imdbId":"tt0437857","version":176,"lastModified":"1301903036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/514\/4bc931a2017a3c57fe014514\/behind-the-mask-the-rise-of-leslie-vernon-mid.jpg","genre":"Comedy","title":"Behind the Mask: The Rise of Leslie Vernon","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"41353"} +{"label":"Nathan Baesel","version":20,"id":"67656","lastModified":"1301901724000","name":"Nathan Baesel","type":"Person","_key":"41354"} +{"label":"Scott Glosserman","version":21,"id":"67657","lastModified":"1301901612000","name":"Scott Glosserman","type":"Person","_key":"41355"} +{"label":"Plattfu\u00df","description":"No overview found.","id":"10964","title":"Plattfu\u00df","language":"en","lastModified":"1301418750000","version":14,"type":"Movie","_key":"41356"} +{"label":"Knight Rider 2000","description":"In the future, guns are banned and criminals are frozen for the duration of their sentences. A recent spate of killings involving handguns brings Michael Knight back to fight for justice, but he insists of the help of KITT, his artificially-intelligent car from decades ago. The only problem is that KITT has been deactivated.","id":"10969","runtime":91,"imdbId":"tt0102227","version":74,"lastModified":"1301905633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51e\/4bc931a3017a3c57fe01451e\/knight-rider-2000-mid.jpg","genre":"Action","title":"Knight Rider 2000","releaseDate":674611200000,"language":"en","type":"Movie","_key":"41357"} +{"label":"Susan Norman","version":20,"id":"67671","lastModified":"1301902258000","name":"Susan Norman","type":"Person","_key":"41358"} +{"label":"Alan J. Levi","version":23,"id":"44131","lastModified":"1301901475000","name":"Alan J. Levi","type":"Person","_key":"41359"} +{"label":"Silent Movie","description":"Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them. The film contains only one word of dialogue, spoken by an unlikely source.","id":"10970","runtime":86,"imdbId":"tt0075222","version":156,"lastModified":"1301902884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc931a4017a3c57fe014527\/silent-movie-mid.png","genre":"Comedy","title":"Silent Movie","releaseDate":203817600000,"language":"en","type":"Movie","_key":"41360"} +{"label":"A Night to Remember","description":"On April 10th, 1912, RMS Titanic sailed from Southampton on her maiden voyage. On her fouth night at sea she struck an iceberg and sank with the loss of 1,500 passengers and crew. The film faithfully depicts the drama, heroism and horror of the night the unsinkable sank.","id":"10971","runtime":123,"imdbId":"tt0051994","trailer":"http:\/\/www.youtube.com\/watch?v=okgLvnAh8Gg","version":116,"lastModified":"1301904230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/530\/4bc931a5017a3c57fe014530\/a-night-to-remember-mid.jpg","genre":"Action","title":"A Night to Remember","releaseDate":-363052800000,"language":"en","tagline":"The night the unsinkable sank.","type":"Movie","_key":"41361"} +{"label":"Kenneth More","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/350\/4c3b6fbc7b9aa10ed9000350\/kenneth-more-profile.jpg","version":36,"id":"67676","lastModified":"1301901218000","name":"Kenneth More","type":"Person","_key":"41362"} +{"label":"Robert Ayres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bb1\/4c0d08bf017a3c7e8f000bb1\/robert-ayres-profile.jpg","version":23,"id":"67677","lastModified":"1301902133000","name":"Robert Ayres","type":"Person","_key":"41363"} +{"label":"Anthony Bushell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/352\/4bf76467017a3c7730000352\/anthony-bushell-profile.jpg","version":26,"id":"96758","lastModified":"1301901578000","name":"Anthony Bushell","type":"Person","_key":"41364"} +{"label":"John Cairney","version":18,"id":"96759","lastModified":"1301902925000","name":"John Cairney","type":"Person","_key":"41365"} +{"label":"Jill Dixon","version":17,"id":"96760","lastModified":"1301902894000","name":"Jill Dixon","type":"Person","_key":"41366"} +{"label":"Jane Downs","version":17,"id":"96761","lastModified":"1301902894000","name":"Jane Downs","type":"Person","_key":"41367"} +{"label":"James Dyrenforth","version":17,"id":"96762","lastModified":"1301902894000","name":"James Dyrenforth","type":"Person","_key":"41368"} +{"label":"Michael Goodliffe","version":28,"id":"78940","lastModified":"1301901604000","name":"Michael Goodliffe","type":"Person","_key":"41369"} +{"label":"Harriette Johns","version":20,"id":"96763","lastModified":"1301902894000","name":"Harriette Johns","type":"Person","_key":"41370"} +{"label":"Frank Lawton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01a\/4be7724f017a3c35b400101a\/frank-lawton-profile.jpg","version":26,"id":"96764","lastModified":"1301902358000","name":"Frank Lawton","type":"Person","_key":"41371"} +{"label":"Richard Leech","version":21,"id":"93169","lastModified":"1301902894000","name":"Richard Leech","type":"Person","_key":"41372"} +{"label":"Session 9","description":"Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.","id":"10972","runtime":97,"imdbId":"tt0261983","version":157,"lastModified":"1301903014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/539\/4bc931a8017a3c57fe014539\/session-9-mid.jpg","studio":"USA Films","genre":"Drama","title":"Session 9","releaseDate":997401600000,"language":"en","tagline":"Fear is a place.","type":"Movie","_key":"41373"} +{"label":"Creature from the Black Lagoon","description":"A scientific expedition searching for fossils along the Amazon River discover a prehistoric Gill-Man in the legendary Black Lagoon. The explorers capture the mysterious creature, but it breaks free. The Gill-Man returns to kidnap the lovely Kay, fianc\u00e9e of one of the expedition, with whom it has fallen in love.","id":"10973","runtime":79,"imdbId":"tt0046876","trailer":"http:\/\/www.youtube.com\/watch?v=lM1o1xe5FGE","version":145,"lastModified":"1301903817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/547\/4bc931a9017a3c57fe014547\/creature-from-the-black-lagoon-mid.jpg","genre":"Adventure","title":"Creature from the Black Lagoon","releaseDate":-499478400000,"language":"en","type":"Movie","_key":"41374"} +{"label":"Richard Carlson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20a\/4bd5ad4a017a3c2e7500020a\/richard-carlson-profile.jpg","version":34,"id":"67685","lastModified":"1301901668000","name":"Richard Carlson","type":"Person","_key":"41375"} +{"label":"Bernie Gozier","version":18,"id":"131057","lastModified":"1301902175000","name":"Bernie Gozier","type":"Person","_key":"41376"} +{"label":"Henry A. Escalante","version":22,"id":"131058","lastModified":"1301902526000","name":"Henry A. Escalante","type":"Person","_key":"41377"} +{"label":"Jack Arnold","version":34,"id":"33883","lastModified":"1301901410000","name":"Jack Arnold","type":"Person","_key":"41378"} +{"label":"Armour of God","description":"When a fortune hunter's ex-girlfriend is kidnapped by an evil cult, her fiancee enlists his help in finding and delivering the ransom--the priceless and powerful Armour of the Gods. With the help of a sexy woman and a wacky sidekick, the adventure begins.","id":"10974","runtime":88,"imdbId":"tt0091431","version":116,"lastModified":"1301908386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4d4bdd5d7b9aa13ab80071f7\/long-xiong-hu-di-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Armour of God","releaseDate":538185600000,"language":"en","type":"Movie","_key":"41379"} +{"label":"Alan Tam","version":28,"id":"67689","lastModified":"1301902176000","name":"Alan Tam","type":"Person","_key":"41380"} +{"label":"Lola Forner","version":28,"id":"67690","lastModified":"1301901981000","name":"Lola Forner","type":"Person","_key":"41381"} +{"label":"Armour of God II: Operation Condor","description":"Agent Jackie is hired to find WWII Nazi gold hidden in the Sahara desert. He teams up with three bundling women (the 3 stooges?) who are all connected in some way. However a team of mercenries have ideas on the ownership of the gold. A battle \/ chase ensues as to who gets there first. Lots of choregraphed Kung-Fu and quirky Chan humour. ","id":"10975","runtime":106,"imdbId":"tt0099558","version":114,"lastModified":"1301901724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/563\/4bc931ac017a3c57fe014563\/fei-ying-gai-wak-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Armour of God II: Operation Condor","releaseDate":665884800000,"language":"en","tagline":"On his most dangerous mission ever, the world's toughest secret agent isn't going in alone.","type":"Movie","_key":"41382"} +{"label":"Carol 'Do Do' Cheng","version":23,"id":"67692","lastModified":"1301902083000","name":"Carol 'Do Do' Cheng","type":"Person","_key":"41383"} +{"label":"Sh\u00f4ko Ikeda","version":22,"id":"67693","lastModified":"1301901874000","name":"Sh\u00f4ko Ikeda","type":"Person","_key":"41384"} +{"label":"Alle Alle","description":"No overview found.","id":"10976","runtime":86,"imdbId":"tt0939826","homepage":"http:\/\/www.allealle.de","version":96,"lastModified":"1301903584000","studio":"it works media","genre":"Comedy","title":"Alle Alle","releaseDate":1171238400000,"language":"en","type":"Movie","_key":"41385"} +{"label":"Simone Frost","version":19,"id":"67719","lastModified":"1301902083000","name":"Simone Frost","type":"Person","_key":"41386"} +{"label":"Theo Vadersen","version":18,"id":"67720","lastModified":"1301902364000","name":"Theo Vadersen","type":"Person","_key":"41387"} +{"label":"Eckhard Becker","version":20,"id":"67721","lastModified":"1301902364000","name":"Eckhard Becker","type":"Person","_key":"41388"} +{"label":"Frank Voigtmann","version":20,"id":"67722","lastModified":"1301902364000","name":"Frank Voigtmann","type":"Person","_key":"41389"} +{"label":"Stefan Kowalski","version":20,"id":"67723","lastModified":"1301902364000","name":"Stefan Kowalski","type":"Person","_key":"41390"} +{"label":"Andr\u00e9 Kaminski","version":17,"id":"67724","lastModified":"1301902258000","name":"Andr\u00e9 Kaminski","type":"Person","_key":"41391"} +{"label":"Thomas P\u00f6tzsch","version":19,"id":"67725","lastModified":"1301902258000","name":"Thomas P\u00f6tzsch","type":"Person","_key":"41392"} +{"label":"Pepe Planitzer","version":19,"id":"67726","lastModified":"1301902083000","name":"Pepe Planitzer","type":"Person","_key":"41393"} +{"label":"Zur H\u00f6lle mit den Paukern","description":"No overview found.","id":"10977","runtime":0,"imdbId":"tt0063254","version":39,"lastModified":"1301903571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4caa42515e73d643f0000742\/zur-holle-mit-den-paukern-mid.jpg","genre":"Comedy","title":"Zur H\u00f6lle mit den Paukern","releaseDate":-55036800000,"language":"en","type":"Movie","_key":"41394"} +{"label":"Jalla! Jalla!","description":"Roro and M\u00e5ns who are best friends, work at the park management and get to do all the shit jobs - clean up duck ponds and pick up dog poop. Roro's Swedish girlfriend Lisa wants to be introduced to his family but he refuses for a long time because of his Lebanese family traditions. When Roro finally decides to introduce Lisa to his family, he walks into the apartment full of relatives who are...","id":"10978","runtime":88,"imdbId":"tt0269389","version":90,"lastModified":"1301905633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56c\/4bc931ad017a3c57fe01456c\/jalla-jalla-mid.jpg","genre":"Comedy","title":"Jalla! Jalla!","releaseDate":976665600000,"language":"en","type":"Movie","_key":"41395"} +{"label":"Tuva Novotny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c3\/4cf1c2eb5e73d61e3e0002c3\/tuva-novotny-profile.jpg","version":42,"id":"67737","lastModified":"1301901289000","name":"Tuva Novotny","type":"Person","_key":"41396"} +{"label":"Laleh Pourkarim","version":19,"id":"67738","lastModified":"1301901875000","name":"Laleh Pourkarim","type":"Person","_key":"41397"} +{"label":"Wallace & Gromit: The Best of Aardman Animation","description":"No overview found.","id":"10979","runtime":0,"imdbId":"tt0118114","version":45,"lastModified":"1301905329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d3\/4bdb1aec017a3c5d930000d3\/wallace-gromit-the-best-of-aardman-animation-mid.jpg","genre":"Animation","title":"Wallace & Gromit: The Best of Aardman Animation","releaseDate":834710400000,"language":"en","type":"Movie","_key":"41398"} +{"label":"Ratten 2 - Sie kommen wieder!","description":"No overview found.","id":"10980","runtime":95,"imdbId":"tt0388362","version":141,"lastModified":"1301904716000","genre":"Action","title":"Ratten 2 - Sie kommen wieder!","releaseDate":1097107200000,"language":"en","type":"Movie","_key":"41399"} +{"label":"J\u00f6rg L\u00fchdorff","version":20,"id":"67745","lastModified":"1301901696000","name":"J\u00f6rg L\u00fchdorff","type":"Person","_key":"41400"} +{"label":"Nothing","description":"The film tells the story of two good friends who live together, Andrew (Andrew Miller), an agoraphobic travel agent who works from his home, and Dave (David Hewlett), a loser who works in an office where he is treated with contempt. Just when it seems things can't get any worse for the two, the entire world outside of their house disappears and is replaced with an endless white void. ","id":"10981","runtime":90,"imdbId":"tt0298482","version":161,"lastModified":"1301908017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/571\/4bc931ad017a3c57fe014571\/nothing-mid.png","genre":"Comedy","title":"Nothing","releaseDate":1063065600000,"language":"en","type":"Movie","_key":"41401"} +{"label":"Hoodwinked!","description":"The recipes of candies of the goody shops have been stolen by the Goody Bandit, and many animals are out of business. While the police are chasing the criminal, there is a mess at Granny's house evolving Little Red Hiding Hood, The Wolf, The Woodsman and Granny, disturbing the peace in the forest and they are all arrested by the inpatient Chief Grizzly.","id":"10982","runtime":80,"imdbId":"tt0443536","trailer":"http:\/\/www.youtube.com\/watch?v=JpVqRm8G97U","homepage":"http:\/\/www.hoodwinkedthemovie.com","version":147,"lastModified":"1301418970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4d5358845e73d617b3005588\/hoodwinked-mid.jpg","studio":"The Weinstein Company","genre":"Animation","title":"Hoodwinked!","releaseDate":1134691200000,"language":"en","type":"Movie","_key":"41402"} +{"label":"Tony Leech","version":23,"id":"61372","lastModified":"1301901633000","name":"Tony Leech","type":"Person","_key":"41403"} +{"label":"Todd Edwards","version":22,"id":"61371","lastModified":"1301901484000","name":"Todd Edwards","type":"Person","_key":"41404"} +{"label":"Cory Edwards","version":22,"id":"61373","lastModified":"1301901550000","name":"Cory Edwards","type":"Person","_key":"41405"} +{"label":"Valentine","description":"Four Friends start to receive morbid valentine day cards. Someone out there is stalking them....someone they all spurned when they were younger. And Valentines Day 2001 is the Day she\/he gets their revenge","id":"10984","runtime":96,"imdbId":"tt0242998","version":104,"lastModified":"1301903194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/594\/4bc931b2017a3c57fe014594\/valentine-mid.jpg","genre":"Horror","title":"Valentine","releaseDate":981072000000,"language":"en","type":"Movie","_key":"41406"} +{"label":"David Boreanaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/261\/4ca2fb5c7b9aa168e0000261\/david-boreanaz-profile.jpg","version":44,"id":"25934","lastModified":"1301901228000","name":"David Boreanaz","type":"Person","_key":"41407"} +{"label":"The New Guy","description":"Dizzy Harrison is an unpopular, high school geek going through a hellish senior year. In an attempt to make a new identity for himself, Dizzy gets himself expelled from his high school, learns the technics of being cool from a prison inmate, and enrolls at a new high school under the alias Gil Harris, to make new friends where he soon gains respect from the jocks and geeks alike. Dizzy then gets noticed by the head cheerleader, Danielle, and helps the school football team gain self-respect to wi","id":"10985","runtime":89,"imdbId":"tt0241760","version":419,"lastModified":"1301904483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5aa\/4bc931b3017a3c57fe0145aa\/the-new-guy-mid.jpg","studio":" Columbia Pictures","genre":"Comedy","title":"The New Guy","releaseDate":1020988800000,"language":"en","tagline":"A zero will rise.","type":"Movie","_key":"41408"} +{"label":"Matthew Lee Pelosi","version":21,"id":"67965","lastModified":"1301901612000","name":"Matthew Lee Pelosi","type":"Person","_key":"41409"} +{"label":"Parry Shen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4c9df4435e73d6704b00011a\/parry-shen-profile.jpg","biography":"Ever since Parry Shen\u2019s breakout performance in MTV Films\u2019 \u201c<STRONG>Better Luck Tomorrow<\/STRONG>\u201d, leading a group of over-achieving honor roll students into a downward spiral of crime, Parry has continued to showcase his wide range from Columbia Pictures\u2019 comedy, \u201c<STRONG>The New Gu<\/STRONG>y\u201d to newly-crowned horror classic, \u201c<STRONG>Hatchet<\/STRONG>\u201d with Robert Englund to 20th Century Fox\u2019s romantic comedy, \u201c<STRONG>First Daughter<\/STRONG>\u201d with Katie Holmes.","version":33,"birthday":"109897200000","id":"77993","birthplace":"Queens, New York USA","lastModified":"1301901472000","name":"Parry Shen","type":"Person","_key":"41410"} +{"label":"Ed Decter","version":44,"id":"7397","lastModified":"1302066195000","name":"Ed Decter","type":"Person","_key":"41411"} +{"label":"Il bisbetico domato","description":"No overview found.","id":"10986","runtime":104,"imdbId":"tt0080439","version":78,"lastModified":"1301901867000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c9\/4bc931bb017a3c57fe0145c9\/il-bisbetico-domato-mid.jpg","genre":"Comedy","title":"Il bisbetico domato","releaseDate":346118400000,"language":"en","type":"Movie","_key":"41412"} +{"label":"Adriano Celentano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/086\/4bedbf2b017a3c458a000086\/adriano-celentano-profile.jpg","biography":"Adriano Celentano (Milano, 6 gennaio 1938) \u00e8 un cantautore, attore e imprenditore italiano. \u00c8 stato soprannominato \"il Molleggiato\" a causa del suo modo di ballare.\nMolto spesso anche autore delle musiche delle sue canzoni (a volte co-autore di musica e testi, anche se li lasci\u00f2 firmare ad altri), grazie alla sua carriera cinquantennale e ai suoi grandi successi, \u00e8 considerato uno dei pilastri della musica italiana; grazie al suo carattere si \u00e8 costruito attorno a lui un personaggio, a dir poco ","version":31,"birthday":"-996800400000","id":"67967","birthplace":"Milano, Italy","lastModified":"1301901258000","name":"Adriano Celentano","type":"Person","_key":"41413"} +{"label":"Edith Peters","version":21,"id":"67969","lastModified":"1301902083000","name":"Edith Peters","type":"Person","_key":"41414"} +{"label":"Milly Carlucci","version":22,"id":"67970","lastModified":"1301901612000","name":"Milly Carlucci","type":"Person","_key":"41415"} +{"label":"Franco Castellano","version":42,"id":"67971","lastModified":"1301901775000","name":"Franco Castellano","type":"Person","_key":"41416"} +{"label":"Giuseppe Moccia","version":35,"id":"67972","lastModified":"1301901775000","name":"Giuseppe Moccia","type":"Person","_key":"41417"} +{"label":"Halloween: The Curse of Michael Myers","description":"Six years ago, Michael Myers terrorized the town of Haddonfield, Illinois. He and his niece, Jamie Lloyd, have disappeared. Jamie was kidnapped by a bunch of evil druids who protect Michael Myers. And now, six years later, Jamie has escaped after giving birth to Michael's child. She runs to Haddonfield to get Dr. Loomis to help her again.","id":"10987","runtime":88,"imdbId":"tt0113253","version":103,"lastModified":"1301902648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/128\/4c951e1e7b9aa10d5c000128\/halloween-the-curse-of-michael-myers-mid.jpg","genre":"Horror","title":"Halloween: The Curse of Michael Myers","releaseDate":812332800000,"language":"en","tagline":"Haddonfield is ready to celebrate Halloween.... so is Michael Myers!","type":"Movie","_key":"41418"} +{"label":"Marianne Hagan","version":23,"id":"67838","lastModified":"1301901462000","name":"Marianne Hagan","type":"Person","_key":"41419"} +{"label":"Diabolique","description":"No overview found.","id":"10988","runtime":107,"imdbId":"tt0116095","trailer":"http:\/\/www.youtube.com\/watch?v=2645","version":126,"lastModified":"1301903437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4c778f3e5e73d6041500027e\/diabolique-mid.jpg","genre":"Drama","title":"Diabolique","releaseDate":827452800000,"language":"en","type":"Movie","_key":"41420"} +{"label":"101 Reykjavik","description":"Thirty-year-old Hlynur still lives with his mother and spends his days drinking, watching porn and surfing the net while living off unemployment checks. A girl is interested in him, but he stands back from commitment. His mother's Spanish flamenco teacher, Lola, moves in with them for Christmas. On New Year's Eve, while his mother is away, Hlynur finds out Lola is a lesbian, but also ends up having sex with her. He soon finds out he and his mother are sharing more than a house. Eventually he mus","id":"10989","runtime":88,"imdbId":"tt0237993","version":97,"lastModified":"1301905051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e8\/4bc931bf017a3c57fe0145e8\/101-reykjavik-mid.jpg","genre":"Comedy","title":"101 Reykjavik","releaseDate":959817600000,"language":"en","type":"Movie","_key":"41421"} +{"label":"Hanna Mar\u00eda Karlsd\u00f3ttir","version":20,"id":"67811","lastModified":"1301901612000","name":"Hanna Mar\u00eda Karlsd\u00f3ttir","type":"Person","_key":"41422"} +{"label":"\u00der\u00fa\u00f0ur Vilhj\u00e1lmsd\u00f3ttir","version":19,"id":"67812","lastModified":"1301901536000","name":"\u00der\u00fa\u00f0ur Vilhj\u00e1lmsd\u00f3ttir","type":"Person","_key":"41423"} +{"label":"Baltasar Korm\u00e1kur","version":45,"id":"67813","lastModified":"1301901170000","name":"Baltasar Korm\u00e1kur","type":"Person","_key":"41424"} +{"label":"Mulholland Falls","description":"This film is about the adventures of a 1940's special anti-gangster police squad in Los Angeles, the infamous 'Hat Squad.' The four members of this squad are big, tough, no-nonsense cops who don't hesitate to break the law, if it suits their purposes.","id":"10990","runtime":107,"imdbId":"tt0117107","version":131,"lastModified":"1302039326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f5\/4bc931bf017a3c57fe0145f5\/mulholland-falls-mid.jpg","genre":"Drama","title":"Mulholland Falls","releaseDate":830476800000,"language":"en","type":"Movie","_key":"41425"} +{"label":"Kyle Chandler","version":23,"id":"3497","lastModified":"1301901248000","name":"Kyle Chandler","type":"Person","_key":"41426"} +{"label":"Melinda Clarke","version":24,"id":"89251","lastModified":"1301901497000","name":"Melinda Clarke","type":"Person","_key":"41427"} +{"label":"Suzanne Solari","version":22,"id":"100446","lastModified":"1301902702000","name":"Suzanne Solari","type":"Person","_key":"41428"} +{"label":"Alisa Christensen","version":20,"id":"99630","lastModified":"1301902543000","name":"Alisa Christensen","type":"Person","_key":"41429"} +{"label":"Peter Dexter","version":24,"id":"28938","lastModified":"1301901971000","name":"Peter Dexter","type":"Person","_key":"41430"} +{"label":"Pok\u00e9mon 3: The Movie","description":"When Molly Hale's sadness of her father's disappearance get to her, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mom, Ash along with Misty & Brock invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!\r\n","id":"10991","runtime":93,"imdbId":"tt0266860","trailer":"http:\/\/www.youtube.com\/watch?v=2417","homepage":"http:\/\/movies.warnerbros.com\/pk3\/","version":107,"lastModified":"1301903255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fe\/4bc931c3017a3c57fe0145fe\/pokemon-3-the-movie-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Pok\u00e9mon 3: The Movie","releaseDate":986515200000,"language":"en","type":"Movie","_key":"41431"} +{"label":"Veronica Taylor","version":39,"id":"67830","lastModified":"1301901983000","name":"Veronica Taylor","type":"Person","_key":"41432"} +{"label":"Rachael Lillis","version":37,"id":"67832","lastModified":"1301901983000","name":"Rachael Lillis","type":"Person","_key":"41433"} +{"label":"Eric Stuart","version":30,"id":"67833","lastModified":"1301901806000","name":"Eric Stuart","type":"Person","_key":"41434"} +{"label":"Cats & Dogs","description":"When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.","id":"10992","runtime":87,"imdbId":"tt0239395","homepage":"http:\/\/catsanddogsmovie.warnerbros.com\/cmp\/main.html","version":289,"lastModified":"1301902013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60c\/4bc931c4017a3c57fe01460c\/cats-dogs-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Cats & Dogs","releaseDate":993254400000,"language":"en","tagline":"Things Are Gonna Get Hairy!","type":"Movie","_key":"41435"} +{"label":"Alexander Pollock","version":29,"id":"67817","lastModified":"1301901560000","name":"Alexander Pollock","type":"Person","_key":"41436"} +{"label":"White Oleander","description":"A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.","id":"10994","runtime":109,"imdbId":"tt0283139","trailer":"http:\/\/www.youtube.com\/watch?v=An6T_66uHLI","version":269,"lastModified":"1301902576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4d6db84c7b9aa12ff100013b\/white-oleander-mid.jpg","studio":"Gaylord Films","genre":"Drama","title":"White Oleander","releaseDate":1034294400000,"language":"en","type":"Movie","_key":"41437"} +{"label":"Peter Kosminsky","version":23,"id":"67781","lastModified":"1301902393000","name":"Peter Kosminsky","type":"Person","_key":"41438"} +{"label":"L'Amant","description":"Jane March is mesmerizing in the role of a poor French teenager who engages in an illicit affair with a wealthy Chinese heir (Tony Leung) in 1920s Saigon. For the first time in her young life she has control, and she wields it deftly over her besotted lover throughout a series of clandestine meetings and torrid encounters. ","id":"10995","runtime":115,"imdbId":"tt0101316","version":106,"lastModified":"1301902595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61e\/4bc931c5017a3c57fe01461e\/l-amant-mid.jpg","genre":"Drama","title":"L'Amant","releaseDate":696038400000,"language":"en","type":"Movie","_key":"41439"} +{"label":"Arnaud Giovaninetti","version":25,"id":"67780","lastModified":"1301902330000","name":"Arnaud Giovaninetti","type":"Person","_key":"41440"} +{"label":"Stuart Little 2","description":"Stuart, an adorable white mouse, still lives happily with his adoptive family, the Littles, on the east side of Manhattan's Central Park. More crazy mouse adventures are in store as Stuart, his human brother, George, and their mischievous cat, Snowbell, set out to rescue a friend.","id":"10996","runtime":78,"imdbId":"tt0243585","trailer":"http:\/\/www.youtube.com\/watch?v=jo78SPZbFTs","version":168,"lastModified":"1301902308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/627\/4bc931c6017a3c57fe014627\/stuart-little-2-mid.jpg","genre":"Action","title":"Stuart Little 2","releaseDate":1027036800000,"language":"en","type":"Movie","_key":"41441"} +{"label":"Jonathan Lipnicki","version":24,"id":"67778","lastModified":"1301901513000","name":"Jonathan Lipnicki","type":"Person","_key":"41442"} +{"label":"Anna Hoelck","version":21,"id":"122552","lastModified":"1301902540000","name":"Anna Hoelck","type":"Person","_key":"41443"} +{"label":"Ashley Hoelck","version":21,"id":"122553","lastModified":"1301902545000","name":"Ashley Hoelck","type":"Person","_key":"41444"} +{"label":"Kevin Olson","version":25,"id":"120256","lastModified":"1301902393000","name":"Kevin Olson","type":"Person","_key":"41445"} +{"label":"Farewell My Concubine","description":"The story of two men, who met as apprentices in the Peking Opera, and stayed friends for over 50 years.","id":"10997","runtime":171,"imdbId":"tt0106332","version":155,"lastModified":"1301902986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62c\/4bc931c6017a3c57fe01462c\/ba-wang-bie-ji-mid.jpg","genre":"Drama","title":"Farewell My Concubine","releaseDate":725846400000,"language":"en","type":"Movie","_key":"41446"} +{"label":"Qi L\u00fc","version":20,"id":"67765","lastModified":"1301901812000","name":"Qi L\u00fc","type":"Person","_key":"41447"} +{"label":"Fatal Attraction","description":"A married man's one night stand comes back to haunt him when that lover begins to stalk him and his family.","id":"10998","runtime":119,"imdbId":"tt0093010","version":359,"lastModified":"1301902264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4bc931c6017a3c57fe014635\/fatal-attraction-mid.jpg","genre":"Drama","title":"Fatal Attraction","releaseDate":558316800000,"language":"en","type":"Movie","_key":"41448"} +{"label":"Commando","description":"Colonel Matrix has retired and is living with his 10 year old daughter in the country. His daughter is kidnapped to ensure that Matrix will kill the president of a latin American country to allow the return of a dictator. Matrix escapes off a plane flight and has until it lands to rescue his daughter. Matrix must follow the clues he has and solve the mystery in time.","id":"10999","runtime":90,"imdbId":"tt0088944","trailer":"http:\/\/www.youtube.com\/watch?v=z_4NK4Th6P0","version":743,"lastModified":"1301901544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/031\/4c55c76b5e73d63a6f000031\/commando-mid.jpg","studio":"SLM Production Group","genre":"Action","title":"Commando","releaseDate":497232000000,"language":"en","tagline":"Somewhere... somehow... someone's going to pay","type":"Movie","_key":"41449"} +{"label":"Mark L. Lester","version":63,"id":"67753","lastModified":"1301901503000","name":"Mark L. Lester","type":"Person","_key":"41450"} +{"label":"The Birdcage","description":"A gay cabaret owner and his drag queen companion agree to put up a false straight front so that their son can introduce them to his fianc\u00e9's right-wing moralistic parents.","id":"11000","runtime":117,"imdbId":"tt0115685","version":195,"lastModified":"1301903195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/664\/4bc931cc017a3c57fe014664\/the-birdcage-mid.jpg","genre":"Comedy","title":"The Birdcage","releaseDate":826243200000,"language":"en","tagline":"Come as you are.","type":"Movie","_key":"41451"} +{"label":"Blue Streak","description":"Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective","id":"11001","runtime":93,"imdbId":"tt0181316","trailer":"http:\/\/www.youtube.com\/watch?v=kj5NHXDvKKM","version":437,"lastModified":"1301901675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4d4a49f37b9aa13aaf000971\/blue-streak-mid.jpg","genre":"Action","title":"Blue Streak","releaseDate":937526400000,"language":"en","tagline":"He's A Cop That's Not.","type":"Movie","_key":"41452"} +{"label":"Greystoke: The Legend of Tarzan, Lord of the Apes","description":"A shipping disaster in the 19th Century has stranded a man and woman in the wilds of Africa. The lady is pregnant, and gives birth to a son in their tree house. Soon after, a family of apes stumble across the house and in the ensuing panic, both parents are killed. A female ape takes the tiny boy as a replacement for her own dead infant, and raises him as her son. Twenty years later, Captain Phillippe D'Arnot discovers the man who thinks he is an ape. Evidence in the tree house leads him to beli","id":"11002","runtime":143,"imdbId":"tt0087365","trailer":"http:\/\/www.youtube.com\/watch?v=Vm1IA8AS-as","version":164,"lastModified":"1301903241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68b\/4bc931d4017a3c57fe01468b\/greystoke-the-legend-of-tarzan-lord-of-the-apes-mid.jpg","genre":"Action","title":"Greystoke: The Legend of Tarzan, Lord of the Apes","releaseDate":449452800000,"language":"en","type":"Movie","_key":"41453"} +{"label":"The Wedding Singer","description":"Robbie, a one time rock star, now a local wedding singer gets dumped on the day of his wedding and goes into severe love withdrawal. Meanwhile Julia finally gets a wedding date set to her long-time fianc\u00e9e Glenn. Julia enlists the help of her new friend Robbie to get things ready for the wedding, and in the process they both begin to fall in love with each other.","id":"11003","runtime":95,"imdbId":"tt0120888","trailer":"http:\/\/www.youtube.com\/watch?v=_bhU3NsCIDs","version":207,"lastModified":"1301901780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28a\/4cb103b85e73d65b8300028a\/the-wedding-singer-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"The Wedding Singer","releaseDate":887328000000,"language":"en","tagline":"He's gonna party like it's 1985.","type":"Movie","_key":"41454"} +{"label":"Wonder Boys","description":"An English Professor tries to deal with his wife leaving him, the arrival of his editor who has been waiting for his book for seven years, and the various problems that his friends and associates involve him in.","id":"11004","runtime":111,"imdbId":"tt0185014","trailer":"http:\/\/www.youtube.com\/watch?v=sveK_fhIqhs","version":193,"lastModified":"1301902594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b5\/4bc931d8017a3c57fe0146b5\/wonder-boys-mid.jpg","genre":"Comedy","title":"Wonder Boys","releaseDate":951177600000,"language":"en","type":"Movie","_key":"41455"} +{"label":"Awakenings","description":"The victims of an encephalitis epidemic many years ago have been catatonic ever since, but now a new drug offers the prospect of reviving them.","id":"11005","runtime":121,"imdbId":"tt0099077","trailer":"http:\/\/www.youtube.com\/watch?v=JAz-prw_W2A","version":380,"lastModified":"1301902454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4bc931d8017a3c57fe0146be\/awakenings-mid.jpg","genre":"Drama","title":"Awakenings","releaseDate":660960000000,"language":"en","type":"Movie","_key":"41456"} +{"label":"Ruth Nelson","version":23,"id":"67761","lastModified":"1301901875000","name":"Ruth Nelson","type":"Person","_key":"41457"} +{"label":"Smokey and the Bandit","description":"A race-car driver named Bandit makes a bet that he can transport an illegal shipment of beer from Texas to Atlanta in under 28 hours. Along the way, he picks up an unwilling bride-to-be, furthering his chances of being arrested. It turns out her future father-in-law is Sheriff \"Smokey\" Justice, and his boy is waiting for her at the altar. A car chase ensues as Smokey scours the South in pursuit of Bandit.","id":"11006","runtime":96,"imdbId":"tt0076729","trailer":"http:\/\/www.youtube.com\/watch?v=OH5KNcFRZLQ","version":322,"lastModified":"1301901800000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d4\/4bc931de017a3c57fe0146d4\/smokey-and-the-bandit-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Smokey and the Bandit","releaseDate":232848000000,"language":"en","tagline":"What we have here is a total lack of respect for the law!","type":"Movie","_key":"41458"} +{"label":"Hal Needham","version":40,"id":"67767","lastModified":"1301901319000","name":"Hal Needham","type":"Person","_key":"41459"} +{"label":"Cheaper by the Dozen","description":"The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.","id":"11007","runtime":98,"imdbId":"tt0349205","version":211,"lastModified":"1301903096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e2\/4bc931e0017a3c57fe0146e2\/cheaper-by-the-dozen-mid.jpg","genre":"Comedy","title":"Cheaper by the Dozen","releaseDate":1072310400000,"language":"en","tagline":"Growing pains? They've got twelve of them!","type":"Movie","_key":"41460"} +{"label":"Kevin G. Schmidt","version":39,"id":"85140","lastModified":"1301957662000","name":"Kevin G. Schmidt","type":"Person","_key":"41461"} +{"label":"Liliana Mumy","version":28,"id":"71861","lastModified":"1301901535000","name":"Liliana Mumy","type":"Person","_key":"41462"} +{"label":"Morgan York","version":16,"id":"148615","lastModified":"1301903083000","name":"Morgan York","type":"Person","_key":"41463"} +{"label":"Blake Woodruff","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b37\/4d4429d15e73d67063000b37\/blake-woodruff-profile.jpg","biography":"Blake Woodruff (born June 19, 1995) is an American actor. He is best known for his role as Mike Baker in the film Cheaper by the Dozen.\n\nWoodruff has two older sisters, Ayla and Raina, and a younger brother, Trevor. He decided that he wanted to be an actor at the age of six, and was cast in 2003's Cheaper by the Dozen after an uncredited role in the thriller Blind Horizon. He has since appeared on the television soap opera The Young and the Restless, and reprised his role in Cheaper by the Dozen","version":20,"id":"142635","lastModified":"1301902207000","name":"Blake Woodruff","type":"Person","_key":"41464"} +{"label":"Brent Kinsman","version":16,"id":"148617","lastModified":"1301903094000","name":"Brent Kinsman","type":"Person","_key":"41465"} +{"label":"Shane Kinsman","version":16,"id":"148618","lastModified":"1301903083000","name":"Shane Kinsman","type":"Person","_key":"41466"} +{"label":"Major Payne","description":"Major Benson Winifred Payne is being discharged from the Marines. Payne is a killin' machine, but the wars of the world are no longer fought on the battlefield. A career Marine, he has no idea what to do as a civilian, so his commander finds him a job - commanding officer of a local school's JROTC program, a bunch or ragtag losers with no hope.","id":"11008","runtime":95,"imdbId":"tt0110443","trailer":"http:\/\/www.youtube.com\/watch?v=1687","version":249,"lastModified":"1301903334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fa\/4bc931e1017a3c57fe0146fa\/major-payne-mid.jpg","studio":"Quinta Communications","genre":"Comedy","title":"Major Payne","releaseDate":796003200000,"language":"en","tagline":"He's looking for a few good men... or a few guys old enough to shave.","type":"Movie","_key":"41467"} +{"label":"Ross Bickell","version":21,"id":"67784","lastModified":"1301901724000","name":"Ross Bickell","type":"Person","_key":"41468"} +{"label":"Scott 'Bam Bam' Bigelow","version":21,"id":"67785","lastModified":"1301901875000","name":"Scott 'Bam Bam' Bigelow","type":"Person","_key":"41469"} +{"label":"Joseph Blaire","version":19,"id":"67786","lastModified":"1301901612000","name":"Joseph Blaire","type":"Person","_key":"41470"} +{"label":"Orlando Brown","version":16,"id":"149010","lastModified":"1301903107000","name":"Orlando Brown","type":"Person","_key":"41471"} +{"label":"Peyton Chesson-Fohl","version":16,"id":"149011","lastModified":"1301903105000","name":"Peyton Chesson-Fohl","type":"Person","_key":"41472"} +{"label":"Stephen Coleman","version":18,"id":"91775","lastModified":"1301902868000","name":"Stephen Coleman","type":"Person","_key":"41473"} +{"label":"Mark Conway","version":23,"id":"9521","lastModified":"1301901928000","name":"Mark Conway","type":"Person","_key":"41474"} +{"label":"David DeHart","version":16,"id":"149012","lastModified":"1301903105000","name":"David DeHart","type":"Person","_key":"41475"} +{"label":"Joshua Todd Diveley","version":16,"id":"149013","lastModified":"1301903099000","name":"Joshua Todd Diveley","type":"Person","_key":"41476"} +{"label":"Michael Gabel","version":20,"id":"117491","lastModified":"1301902394000","name":"Michael Gabel","type":"Person","_key":"41477"} +{"label":"William Hickey","version":17,"id":"146165","lastModified":"1301902206000","name":"William Hickey","type":"Person","_key":"41478"} +{"label":"Saturday Night Fever","description":"Nineteen-year-old Tony Manero lives for Saturday nights at the local disco, where he's king of the dance floor. But outside of the club, things don't look so rosy. At home, he fights constantly with his father and has to compete with his family's starry-eyed view of his older brother, a priest. Then, he meets Stephanie at the disco and they agree to dance together in a competition. Stephanie resists Tony's attempts to romance her, as she aspires to greater things; she is moving across the river ","id":"11009","runtime":118,"imdbId":"tt0076666","trailer":"http:\/\/www.youtube.com\/watch?v=bq4ZMKqWk80","version":849,"lastModified":"1301901690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/100\/4c950e2b7b9aa10d57000100\/saturday-night-fever-mid.jpg","genre":"Drama","title":"Saturday Night Fever","releaseDate":250905600000,"language":"en","tagline":"Catch it.","type":"Movie","_key":"41479"} +{"label":"Karen Lynn Gorney","version":22,"id":"67787","lastModified":"1301901612000","name":"Karen Lynn Gorney","type":"Person","_key":"41480"} +{"label":"Joseph Cali","version":22,"id":"67788","lastModified":"1301901724000","name":"Joseph Cali","type":"Person","_key":"41481"} +{"label":"Il Postino","description":"Simple Italian postman learns to love poetry while delivering mail to a famous poet; he uses this to woo local beauty Beatrice. ","id":"11010","runtime":108,"imdbId":"tt0110877","version":275,"lastModified":"1301903632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4bc931e8017a3c57fe014725\/il-postino-mid.jpg","genre":"Comedy","title":"Il Postino","releaseDate":778377600000,"language":"en","type":"Movie","_key":"41482"} +{"label":"Massimo Troisi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ec\/4d24c1035e73d65c310009ec\/massimo-troisi-profile.jpg","biography":"<span style=\"font-size: 12px;\">\u200b<\/span><span style=\"font-family: sans-serif; \"><b style=\"font-size: 13px; line-height: 19px; \">Massimo Troisi<\/b><font size=\"2\"><span style=\"line-height: 19px;\"> (<\/span><\/font><a href=\"http:\/\/it.wikipedia.org\/wiki\/San_Giorgio_a_Cremano\" title=\"San Giorgio a Cremano\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; font","version":33,"birthday":"-532227600000","id":"67792","birthplace":"San Giorgio a Cremano","lastModified":"1301901223000","name":"Massimo Troisi","type":"Person","_key":"41483"} +{"label":"Maria Grazia Cucinotta","version":40,"id":"10777","lastModified":"1301901250000","name":"Maria Grazia Cucinotta","type":"Person","_key":"41484"} +{"label":"Ri\u00a2hie Ri\u00a2h","description":"Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.","id":"11011","runtime":95,"imdbId":"tt0110989","version":58,"lastModified":"1301903850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/155\/4d38b0507b9aa1614b000155\/ri-hie-ri-h-mid.jpg","genre":"Comedy","title":"Ri\u00a2hie Ri\u00a2h","releaseDate":787968000000,"language":"en","tagline":"An adventure so big... even the world's richest kid can't afford to miss it!","type":"Movie","_key":"41485"} +{"label":"Damage","description":"The life of a respected British politician at the height of his career crumbles when he becomes obsessed with his son's lover.","id":"11012","runtime":111,"imdbId":"tt0104237","trailer":"http:\/\/www.youtube.com\/watch?v=2614","version":125,"lastModified":"1301904622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4c32de2c5e73d649660000e5\/damage-mid.jpg","genre":"Drama","title":"Damage","releaseDate":723254400000,"language":"en","type":"Movie","_key":"41486"} +{"label":"Gemma Clarke","version":26,"id":"67798","lastModified":"1301901811000","name":"Gemma Clarke","type":"Person","_key":"41487"} +{"label":"Secretary","description":"A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.","id":"11013","runtime":104,"imdbId":"tt0274812","trailer":"http:\/\/www.youtube.com\/watch?v=YzPFMfPPzs0","version":248,"lastModified":"1301902037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73c\/4bc931e9017a3c57fe01473c\/secretary-mid.jpg","studio":"Slough Pond","genre":"Comedy","title":"Secretary","releaseDate":1010707200000,"language":"en","tagline":"Assume the position.","type":"Movie","_key":"41488"} +{"label":"Steven Shainberg","version":33,"id":"67795","lastModified":"1301901724000","name":"Steven Shainberg","type":"Person","_key":"41489"} +{"label":"The Relic","description":"A researcher at Chicago's Natural History Museum returns from South America with some crates containing his findings. When the crates arrive at the museum without the owner there appears to be very little inside. However, police discover gruesome murders on the cargo ship that brought the crates to the US and then another murder in the museum itself.","id":"11015","runtime":110,"imdbId":"tt0120004","trailer":"http:\/\/www.youtube.com\/watch?v=mI4adLmGj1c","version":386,"lastModified":"1301903613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/827\/4c6400f37b9aa172dd000827\/the-relic-mid.jpg","genre":"Action","title":"The Relic","releaseDate":852854400000,"language":"en","tagline":"The Next Evolution In Terror.","type":"Movie","_key":"41490"} +{"label":"Key Largo","description":"A hurricane swells outside, but it's nothing compared to the storm within the hotel at Key Largo. There, sadistic mobster Johnny Rocco (Robinson) holes up -- and holds at gunpoint hotel owner Nora Temple (Bacall), her invalid father-in-law (Barrymore) and ex-GI Frank McCloud (Bogart).","id":"11016","runtime":100,"imdbId":"tt0040506","version":141,"lastModified":"1301904886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/768\/4bc931ef017a3c57fe014768\/key-largo-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Drama","title":"Key Largo","releaseDate":-677289600000,"language":"en","type":"Movie","_key":"41491"} +{"label":"Billy Madison","description":"Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.","id":"11017","runtime":89,"imdbId":"tt0112508","trailer":"http:\/\/www.youtube.com\/watch?v=_-PZeKhMdiQ","version":226,"lastModified":"1301901631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4cdb99cd5e73d605ea000033\/billy-madison-mid.jpg","studio":"Jack Giarraputo Productions","genre":"Comedy","title":"Billy Madison","releaseDate":792374400000,"language":"en","tagline":"Billy is going back to school... Way back.","type":"Movie","_key":"41492"} +{"label":"Year of the Dragon","description":"A tough New York cop wages a private battle against the chaos of the Triads in Chinatown.","id":"11018","runtime":134,"imdbId":"tt0090350","trailer":"http:\/\/www.youtube.com\/watch?v=HRGBV5eSbyQ","version":261,"lastModified":"1302031967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/025\/4bcaa50f017a3c116a000025\/year-of-the-dragon-mid.jpg","genre":"Action","title":"Year of the Dragon","releaseDate":492998400000,"language":"en","type":"Movie","_key":"41493"} +{"label":"Ariane","version":21,"id":"67815","lastModified":"1302031948000","name":"Ariane","type":"Person","_key":"41494"} +{"label":"K. Dock Yip","version":18,"id":"116051","lastModified":"1302031948000","name":"K. Dock Yip","type":"Person","_key":"41495"} +{"label":"Hon Lam Bau","version":18,"id":"116052","lastModified":"1302031948000","name":"Hon Lam Bau","type":"Person","_key":"41496"} +{"label":"Way Dong Woo","version":18,"id":"116053","lastModified":"1302031948000","name":"Way Dong Woo","type":"Person","_key":"41497"} +{"label":"Jimmy Sun","version":18,"id":"116054","lastModified":"1302031948000","name":"Jimmy Sun","type":"Person","_key":"41498"} +{"label":"Daniel Davin","version":18,"id":"116055","lastModified":"1302031948000","name":"Daniel Davin","type":"Person","_key":"41499"} +{"label":"Mark Hammer","version":18,"id":"116056","lastModified":"1302031948000","name":"Mark Hammer","type":"Person","_key":"41500"} +{"label":"Deep Blue","description":"Deep Blue is a major documentary feature film shot by the BBC Natural History Unit. An epic cinematic rollercoaster ride for all ages, Deep Blue uses amazing footage to tell us the story of our oceans and the life they support.","id":"11019","runtime":83,"imdbId":"tt0365109","version":168,"lastModified":"1301902778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/790\/4bc931f6017a3c57fe014790\/deep-blue-mid.jpg","studio":"British Broadcasting Corporation (BBC)","genre":"Documentary","title":"Deep Blue","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"41501"} +{"label":"Andy Byatt","version":20,"id":"67818","lastModified":"1301901724000","name":"Andy Byatt","type":"Person","_key":"41502"} +{"label":"Picnic at Hanging Rock","description":"Valentine's Day, 1900... a beautiful day for an excursion to aboriginal holy place 'Hanging Rock', the perfect place for a school picnic. Among the young white gloved pupils of Appleyard College are senior boarders Miranda, Marion, Irma and Edith. All are properly chaperoned by headmistress Miss Appleyard. When the four girls venture off to walk to the lower slopes, distant screams are heard...","id":"11020","runtime":115,"imdbId":"tt0073540","trailer":"http:\/\/www.youtube.com\/watch?v=08e9QqQP7sY","version":269,"lastModified":"1301902648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/799\/4bc931f7017a3c57fe014799\/picnic-at-hanging-rock-mid.jpg","genre":"Drama","title":"Picnic at Hanging Rock","releaseDate":176688000000,"language":"en","type":"Movie","_key":"41503"} +{"label":"Vivean Gray","version":20,"id":"67829","lastModified":"1301901764000","name":"Vivean Gray","type":"Person","_key":"41504"} +{"label":"Helen Morse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/762\/4d45ad255e73d65385002762\/helen-morse-profile.jpg","version":23,"id":"67835","lastModified":"1301901764000","name":"Helen Morse","type":"Person","_key":"41505"} +{"label":"Kirsty Child","version":20,"id":"67836","lastModified":"1301901764000","name":"Kirsty Child","type":"Person","_key":"41506"} +{"label":"Jacki Weaver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d87\/4d2231197b9aa1280f000d87\/jacki-weaver-profile.jpg","version":28,"id":"67837","lastModified":"1301901664000","name":"Jacki Weaver","type":"Person","_key":"41507"} +{"label":"Titanic","description":"This little-known German film retells the true story of the British ocean liner that met a tragic fate. Ernst Fritz F\u00fcrbringer plays the president of the White Star Line, who unwisely pressed the Titanic's captain (Otto Wernicke) to make the swiftest possible crossing to New York. Interestingly, director Herbert Selpin was arrested by the Gestapo during this film's production, and German censors banned the film for its scenes of panic and terror.","id":"11021","runtime":85,"imdbId":"tt0036443","version":141,"lastModified":"1302023105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4ca095c15e73d670490005c1\/titanic-mid.jpg","studio":"UFA Filmproduktion GmbH","genre":"Drama","title":"Titanic","releaseDate":-825033600000,"language":"en","type":"Movie","_key":"41508"} +{"label":"Kirsten Heiberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5c8\/4ca0985a5e73d670490005c8\/kirsten-heiberg-profile.jpg","version":21,"id":"67839","lastModified":"1301902032000","name":"Kirsten Heiberg","type":"Person","_key":"41509"} +{"label":"Narc","description":"An undercover narc dies, the investigation stalls, so the Detroit P.D. brings back Nick Tellis, fired 18-months ago when a stray bullet hits a pregnant woman. Tellis teams with Henry Oak, a friend of the dead narc and an aggressive cop constantly under the scrutiny of internal affairs. They follow leads and informants turn up dead.","id":"11022","runtime":105,"imdbId":"tt0272207","trailer":"http:\/\/www.youtube.com\/watch?v=1716","version":191,"lastModified":"1301903185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a2\/4bc931f8017a3c57fe0147a2\/narc-mid.jpg","genre":"Action","title":"Narc","releaseDate":1010966400000,"language":"en","type":"Movie","_key":"41510"} +{"label":"Lloyd Adams","version":21,"id":"67843","lastModified":"1301901724000","name":"Lloyd Adams","type":"Person","_key":"41511"} +{"label":"Lina Giornofelice","version":21,"id":"67844","lastModified":"1301901874000","name":"Lina Giornofelice","type":"Person","_key":"41512"} +{"label":"Thirteen","description":"Tracy is a normal 13-year-old girl trying to make it in school. After befriending a new girl at school, Evie; Tracy's world is turned upside down when Evie introduces Tracy to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.","id":"11023","runtime":100,"imdbId":"tt0328538","version":177,"lastModified":"1301902739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b0\/4bc931f9017a3c57fe0147b0\/thirteen-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"Thirteen","releaseDate":1042761600000,"language":"en","tagline":"It's happening so fast.","type":"Movie","_key":"41513"} +{"label":"Scooby-Doo 2: Monsters Unleashed","description":"When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes? ","id":"11024","runtime":93,"imdbId":"tt0331632","trailer":"http:\/\/www.youtube.com\/watch?v=h0REhWXqwPE","version":168,"lastModified":"1301901814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4d38fb017b9aa161490005c1\/scooby-doo-2-monsters-unleashed-mid.jpg","genre":"Action","title":"Scooby-Doo 2: Monsters Unleashed","releaseDate":1079740800000,"language":"en","tagline":"They came. They saw. They ran.","type":"Movie","_key":"41514"} +{"label":"New York Minute","description":"No overview found.","id":"11025","runtime":91,"imdbId":"tt0363282","trailer":"http:\/\/www.youtube.com\/watch?v=fk7IHMhW9b4","version":190,"lastModified":"1301903740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d8\/4bc931ff017a3c57fe0147d8\/new-york-minute-mid.jpg","genre":"Action","title":"New York Minute","releaseDate":1083369600000,"language":"en","type":"Movie","_key":"41515"} +{"label":"Riley Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fb9\/4d3363645e73d6335b001fb9\/riley-smith-profile.jpg","version":31,"id":"67850","lastModified":"1301901202000","name":"Riley Smith","type":"Person","_key":"41516"} +{"label":"Exorcist: The Beginning","description":"When a young local boy begins to behave strangely, it becomes more and more apparent to Merrin that the child is a victim of demonic possession","id":"11026","runtime":114,"imdbId":"tt0204313","version":193,"lastModified":"1301904744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4bc93200017a3c57fe0147e5\/exorcist-the-beginning-mid.jpg","studio":"James G. Robinson","genre":"Horror","title":"Exorcist: The Beginning","releaseDate":1092960000000,"language":"en","type":"Movie","_key":"41517"} +{"label":"Remy Sweeney","version":21,"id":"67854","lastModified":"1301901724000","name":"Remy Sweeney","type":"Person","_key":"41518"} +{"label":"The Postman Always Rings Twice","description":"This remake of the 1946 movie of the same name accounts an affair between a seedy drifter and a seductive wife of a roadside cafe owner. This begins a chain of events that culminates in murder. Based on a novel by James M. Cain.","id":"11027","runtime":122,"imdbId":"tt0082934","trailer":"http:\/\/www.youtube.com\/watch?v=IBo7Mg3FUtE","version":223,"lastModified":"1301903685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f4\/4bc93202017a3c57fe0147f4\/the-postman-always-rings-twice-mid.jpg","genre":"Crime","title":"The Postman Always Rings Twice","releaseDate":353894400000,"language":"en","type":"Movie","_key":"41519"} +{"label":"John Colicos","version":21,"id":"15765","lastModified":"1301901992000","name":"John Colicos","type":"Person","_key":"41520"} +{"label":"The Big Easy","description":"When a hood's murder triggers a bloddy gangland drug war, detective Remy McSwain (Quaid) is on the scene. He's a smooth-talkin cop who fits right in with the easy style of Cajun country. Remy meets his match in Anne Osborne (Barkin), a no-nonsense Assistance District Attorney in town to investigate police corruption. Their electrically charged attraction keeps the sparks flying.","id":"11028","runtime":102,"imdbId":"tt0092654","version":167,"lastModified":"1301903930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fd\/4bc93203017a3c57fe0147fd\/the-big-easy-mid.jpg","genre":"Crime","title":"The Big Easy","releaseDate":543801600000,"language":"en","type":"Movie","_key":"41521"} +{"label":"Ebbe Roe Smith","version":26,"id":"116778","lastModified":"1301902313000","name":"Ebbe Roe Smith","type":"Person","_key":"41522"} +{"label":"Charles Ludlam","version":18,"id":"140172","lastModified":"1301902520000","name":"Charles Ludlam","type":"Person","_key":"41523"} +{"label":"Solomon Burke","version":17,"id":"140173","lastModified":"1301902505000","name":"Solomon Burke","type":"Person","_key":"41524"} +{"label":"Jim Chimento","version":17,"id":"140174","lastModified":"1301902470000","name":"Jim Chimento","type":"Person","_key":"41525"} +{"label":"Edward Saint Pe'","version":17,"id":"140175","lastModified":"1301902418000","name":"Edward Saint Pe'","type":"Person","_key":"41526"} +{"label":"Robert Lesser","version":17,"id":"140176","lastModified":"1301902418000","name":"Robert Lesser","type":"Person","_key":"41527"} +{"label":"Die Gustloff","description":"Joseph Vilsmaier Two-part TV movie focuses on the tragic events surrounding the sinking of the Wilhelm Gustloff, a German passenger ship, at the end of World War II. On 30 January 1945, Captain Hellmuth Kehding was in charge of the ship, evacuating wounded soldiers and civilians trapped by the Red Army. Soon after leaving the harbor of Danzig, it was hit by three torpedoes from the Soviet submarine and sank in less than an hour.","id":"11029","runtime":180,"imdbId":"tt0991156","version":52,"lastModified":"1301903476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/027\/4bcdfafd017a3c24ce000027\/die-gustloff-mid.jpg","genre":"Drama","title":"Die Gustloff","releaseDate":1204416000000,"language":"en","type":"Movie","_key":"41528"} +{"label":"Zelig","description":"Fictional documentary about the life of human chameleon Leonard Zelig, a man who becomes a celebrity in the 1920s due to his ability to look and act like whoever is around him. Clever editing places Zelig in real newsreel footage of Woodrow Wilson, Babe Ruth, and others.","id":"11030","runtime":79,"imdbId":"tt0086637","version":301,"lastModified":"1301903977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80e\/4bc93207017a3c57fe01480e\/zelig-mid.jpg","genre":"Comedy","title":"Zelig","releaseDate":427075200000,"language":"en","type":"Movie","_key":"41529"} +{"label":"John Buckwalter","version":19,"id":"67857","lastModified":"1301901724000","name":"John Buckwalter","type":"Person","_key":"41530"} +{"label":"Stanley Swerdlow","version":21,"id":"69294","lastModified":"1301901430000","name":"Stanley Swerdlow","type":"Person","_key":"41531"} +{"label":"Paul Nevens","version":19,"id":"70784","lastModified":"1301901874000","name":"Paul Nevens","type":"Person","_key":"41532"} +{"label":"This Is Spinal Tap","description":"This Is Spinal Tap is a 1984 mock rockumentary directed by Rob Reiner and starring members of the fictional heavy-metal\/hard rock band Spinal Tap. The film satirizes the wild personal behavior and musical pretensions of hard-rock and heavy-metal bands, as well as the hagiographic tendencies of rockumentaries of the time.","id":"11031","runtime":82,"imdbId":"tt0088258","trailer":"http:\/\/www.youtube.com\/watch?v=YZbHagBNY98","version":257,"lastModified":"1301902315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82d\/4bc9320a017a3c57fe01482d\/this-is-spinal-tap-mid.jpg","studio":"Spinal Tap Prod.","genre":"Comedy","title":"This Is Spinal Tap","releaseDate":447033600000,"language":"en","type":"Movie","_key":"41533"} +{"label":"R.J. Parnell","version":23,"id":"67861","lastModified":"1302066401000","name":"R.J. Parnell","type":"Person","_key":"41534"} +{"label":"Tony Hendra","version":23,"id":"67862","lastModified":"1302066402000","name":"Tony Hendra","type":"Person","_key":"41535"} +{"label":"David Kaff","version":23,"id":"67863","lastModified":"1302066402000","name":"David Kaff","type":"Person","_key":"41536"} +{"label":"Kimberly Stringer","version":23,"id":"67858","lastModified":"1302066401000","name":"Kimberly Stringer","type":"Person","_key":"41537"} +{"label":"Chazz Dominguez","version":23,"id":"67859","lastModified":"1302066401000","name":"Chazz Dominguez","type":"Person","_key":"41538"} +{"label":"Shari Hall","version":23,"id":"67860","lastModified":"1302066401000","name":"Shari Hall","type":"Person","_key":"41539"} +{"label":"Julie Payne","version":23,"id":"78620","lastModified":"1302066402000","name":"Julie Payne","type":"Person","_key":"41540"} +{"label":"Sandy Helberg","version":24,"id":"101653","lastModified":"1302066402000","name":"Sandy Helberg","type":"Person","_key":"41541"} +{"label":"Andrew J. Lederer","version":23,"id":"104409","lastModified":"1302066402000","name":"Andrew J. Lederer","type":"Person","_key":"41542"} +{"label":"June Chadwick","version":23,"id":"104410","lastModified":"1302066403000","name":"June Chadwick","type":"Person","_key":"41543"} +{"label":"Joyce Hyser","version":23,"id":"91724","lastModified":"1302066403000","name":"Joyce Hyser","type":"Person","_key":"41544"} +{"label":"Gloria Gifford","version":25,"id":"92587","lastModified":"1302066403000","name":"Gloria Gifford","type":"Person","_key":"41545"} +{"label":"Blackie Lawless","version":20,"id":"104413","lastModified":"1302066403000","name":"Blackie Lawless","type":"Person","_key":"41546"} +{"label":"Dei Mudder sei Gesicht","description":"No overview found.","id":"11032","runtime":91,"imdbId":"tt0191072","version":45,"lastModified":"1301904265000","genre":"Comedy","title":"Dei Mudder sei Gesicht","releaseDate":852076800000,"language":"en","type":"Movie","_key":"41547"} +{"label":"Helmut Diehl","version":20,"id":"67866","lastModified":"1301901687000","name":"Helmut Diehl","type":"Person","_key":"41548"} +{"label":"Joe Diehl","version":20,"id":"67867","lastModified":"1301901952000","name":"Joe Diehl","type":"Person","_key":"41549"} +{"label":"Nikolaus Grigoriadis","version":20,"id":"67868","lastModified":"1301902332000","name":"Nikolaus Grigoriadis","type":"Person","_key":"41550"} +{"label":"Thomas Harm","version":20,"id":"67869","lastModified":"1301902332000","name":"Thomas Harm","type":"Person","_key":"41551"} +{"label":"Hardy Strohn","version":22,"id":"67871","lastModified":"1301902148000","name":"Hardy Strohn","type":"Person","_key":"41552"} +{"label":"Simon Mora","version":22,"id":"67870","lastModified":"1301902332000","name":"Simon Mora","type":"Person","_key":"41553"} +{"label":"Dressed to Kill","description":"No overview found.","id":"11033","runtime":105,"imdbId":"tt0080661","trailer":"http:\/\/www.youtube.com\/watch?v=VxG57Uf7iMU","version":223,"lastModified":"1301903753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83b\/4bc9320e017a3c57fe01483b\/dressed-to-kill-mid.jpg","genre":"Horror","title":"Dressed to Kill","releaseDate":328838400000,"language":"en","type":"Movie","_key":"41554"} +{"label":"The Great Gatsby","description":"Nick Carraway, a young Midwesterner now living on Long Island, finds himself fascinated by the mysterious past and lavish lifestyle of his neighbor, the nouveau riche Jay Gatsby. He is drawn into Gatsby's circle, becoming a witness to obsession and tragedy.","id":"11034","runtime":144,"imdbId":"tt0071577","trailer":"http:\/\/www.youtube.com\/watch?v=P_aAt6kFius","version":263,"lastModified":"1301901670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4bc9320f017a3c57fe014844\/the-great-gatsby-mid.jpg","genre":"Drama","title":"The Great Gatsby","releaseDate":133574400000,"language":"en","tagline":"Gone is the romance that was so divine.","type":"Movie","_key":"41555"} +{"label":"Roma","description":"A virtually plotless, gaudy, impressionistic portrait of Rome through the eyes of one of its most famous citizens.","id":"11035","runtime":128,"imdbId":"tt0069191","version":283,"lastModified":"1301904622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84d\/4bc9320f017a3c57fe01484d\/roma-mid.jpg","genre":"Comedy","title":"Roma","releaseDate":69379200000,"language":"en","type":"Movie","_key":"41556"} +{"label":"Peter Gonzales Falcon","version":20,"id":"67879","lastModified":"1301902083000","name":"Peter Gonzales Falcon","type":"Person","_key":"41557"} +{"label":"Fiona Florence","version":20,"id":"67880","lastModified":"1301902083000","name":"Fiona Florence","type":"Person","_key":"41558"} +{"label":"Pia De Doses","version":20,"id":"67881","lastModified":"1301902083000","name":"Pia De Doses","type":"Person","_key":"41559"} +{"label":"Renato Giovannoli","version":20,"id":"67883","lastModified":"1301902257000","name":"Renato Giovannoli","type":"Person","_key":"41560"} +{"label":"Bernardino Zapponi","version":27,"id":"67884","lastModified":"1301901781000","name":"Bernardino Zapponi","type":"Person","_key":"41561"} +{"label":"The Notebook","description":"An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.","id":"11036","runtime":123,"imdbId":"tt0332280","trailer":"http:\/\/www.youtube.com\/watch?v=S3G3fILPQAU","version":373,"lastModified":"1301901312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/867\/4bc93211017a3c57fe014867\/the-notebook-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"The Notebook","releaseDate":1088121600000,"language":"en","tagline":"Behind every great love is a great story.","type":"Movie","_key":"41562"} +{"label":"Ed Grady","version":22,"id":"102719","lastModified":"1301901941000","name":"Ed Grady","type":"Person","_key":"41563"} +{"label":"Iron Eagle","description":"When Doug's father, an Air Force Pilot, is shot down by MiGs belonging to a radical Middle Eastern state, no one seems able to get him out. Doug finds Chappy, an Air Force Colonel who is intrigued by the idea of sending in two fighters piloted by himself and Doug to rescue Doug's father after bombing the MiG base.","id":"11037","runtime":117,"imdbId":"tt0091278","version":194,"lastModified":"1301904397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/879\/4bc93215017a3c57fe014879\/iron-eagle-mid.jpg","genre":"Action","title":"Iron Eagle","releaseDate":506304000000,"language":"en","type":"Movie","_key":"41564"} +{"label":"Larry B. Scott","version":26,"id":"67893","lastModified":"1301901840000","name":"Larry B. Scott","type":"Person","_key":"41565"} +{"label":"Tough Guys","description":"Harry Doyle (Lancaster) and Archie Lang (Douglas) are two old-time train robbers, who held up a train in 1956 and have been incarcerated for thirty years. After serving their time, they are released from jail and have to adjust to a new life of freedom. Harry and Archie realize that they still have the pizzazz when, picking up their prison checks at a bank, they foil a robbery attempt. Archie, who spent his prison time pumping himself up, easily picks up a 20-year-old aerobics instructor. Harry,","id":"11038","runtime":104,"imdbId":"tt0092105","version":164,"lastModified":"1301905635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/882\/4bc93216017a3c57fe014882\/tough-guys-mid.jpg","genre":"Comedy","title":"Tough Guys","releaseDate":528681600000,"language":"en","type":"Movie","_key":"41566"} +{"label":"Jeff Kanew","version":34,"id":"67897","lastModified":"1301901314000","name":"Jeff Kanew","type":"Person","_key":"41567"} +{"label":"Chiss\u00e0 Perch\u00e9... Capitano Tutte A Me","description":"No overview found.","id":"11039","runtime":99,"imdbId":"tt0080530","version":60,"lastModified":"1301904013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88b\/4bc93217017a3c57fe01488b\/chissa-perche-capitano-tutte-a-me-mid.jpg","genre":"Comedy","title":"Chiss\u00e0 Perch\u00e9... Capitano Tutte A Me","releaseDate":345340800000,"language":"en","type":"Movie","_key":"41568"} +{"label":"Ferruccio Amendola","version":20,"id":"67899","lastModified":"1301901874000","name":"Ferruccio Amendola","type":"Person","_key":"41569"} +{"label":"Claudio Undari","version":23,"id":"67900","lastModified":"1301956448000","name":"Claudio Undari","type":"Person","_key":"41570"} +{"label":"Little Big Man","description":"Jack Crabb, looking back from extreme old age, tells of his life being raised by Indians and fighting with General Custer. ","id":"11040","runtime":139,"imdbId":"tt0065988","version":398,"lastModified":"1301906249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43d\/4c634fa35e73d63c8600043d\/little-big-man-mid.jpg","studio":"Cinema Center Films","genre":"Action","title":"Little Big Man","releaseDate":29980800000,"language":"en","tagline":"Either The Most Neglected Hero In History Or A Liar Of Insane Proportion!","type":"Movie","_key":"41571"} +{"label":"The Beverly Hillbillies","description":"A feature adaptation of the classic TV show, when nice guy redneck Jed Clampett strikes it rich when he finds black oil, and moves he and his kin to posh Beverly Hills.","id":"11041","runtime":93,"imdbId":"tt0106400","version":121,"lastModified":"1301907304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a2\/4bc93218017a3c57fe0148a2\/the-beverly-hillbillies-mid.jpg","genre":"Comedy","title":"The Beverly Hillbillies","releaseDate":750643200000,"language":"en","type":"Movie","_key":"41572"} +{"label":"Les Invasions barbares - le d\u00e9clin continue","description":"During his final days, a dying man is reunited with old friends, former lovers, his ex-wife, and his estranged son","id":"11042","runtime":99,"imdbId":"tt0338135","version":64,"lastModified":"1301903258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ab\/4bc93219017a3c57fe0148ab\/les-invasions-barbares-le-declin-continue-mid.jpg","genre":"Comedy","title":"Les Invasions barbares - le d\u00e9clin continue","releaseDate":1053475200000,"language":"en","type":"Movie","_key":"41573"} +{"label":"Doroth\u00e9e Berryman","version":24,"id":"67905","lastModified":"1301902116000","name":"Doroth\u00e9e Berryman","type":"Person","_key":"41574"} +{"label":"Dominique Michel","version":23,"id":"67906","lastModified":"1301901753000","name":"Dominique Michel","type":"Person","_key":"41575"} +{"label":"Pierre Curzi","version":24,"id":"83180","lastModified":"1301902116000","name":"Pierre Curzi","type":"Person","_key":"41576"} +{"label":"Mitsou","version":21,"id":"83184","lastModified":"1301902718000","name":"Mitsou","type":"Person","_key":"41577"} +{"label":"Zum Teufel mit der Penne","description":"No overview found.","id":"11043","runtime":0,"imdbId":"tt0063849","version":31,"lastModified":"1301907415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6db\/4caa42615e73d643eb0006db\/zum-teufel-mit-der-penne-mid.jpg","title":"Zum Teufel mit der Penne","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"41578"} +{"label":"Arizona Dream","description":"In a surrealistic setting, a small town in America deals with issues of the American psyche.","id":"11044","runtime":142,"imdbId":"tt0106307","version":240,"lastModified":"1301902015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b4\/4bc9321c017a3c57fe0148b4\/arizona-dream-mid.jpg","genre":"Comedy","title":"Arizona Dream","releaseDate":726278400000,"language":"en","type":"Movie","_key":"41579"} +{"label":"Taxi","description":"A mouthy and feisty taxicab driver has hot tips for a green and inept cop set on solving a string of New York City bank robberies committed by a quartet of female Brazilian bank robbers.","id":"11045","runtime":97,"imdbId":"tt0316732","version":189,"lastModified":"1301066885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/118\/4bf87e34017a3c490e000118\/taxi-mid.jpg","genre":"Action","title":"Taxi","releaseDate":1097020800000,"language":"en","type":"Movie","_key":"41580"} +{"label":"Henry Simmons","version":33,"id":"67913","lastModified":"1301901874000","name":"Henry Simmons","type":"Person","_key":"41581"} +{"label":"Where Eagles Dare","description":"World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.","id":"11046","runtime":155,"imdbId":"tt0065207","trailer":"http:\/\/www.youtube.com\/watch?v=b-_P-DoBe6E","version":516,"lastModified":"1301907679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/662\/4ce5132a7b9aa168b4000662\/where-eagles-dare-mid.jpg","genre":"Action","title":"Where Eagles Dare","releaseDate":-33955200000,"language":"en","type":"Movie","_key":"41582"} +{"label":"Mary Ure","version":25,"id":"67916","lastModified":"1301901588000","name":"Mary Ure","type":"Person","_key":"41583"} +{"label":"Patrick Wymark","version":34,"id":"67917","lastModified":"1301901356000","name":"Patrick Wymark","type":"Person","_key":"41584"} +{"label":"Brian G. Hutton","version":32,"id":"54451","lastModified":"1301901329000","name":"Brian G. Hutton","type":"Person","_key":"41585"} +{"label":"Ast\u00e9rix le Gaulois","description":"In the year 50 BC, Gaul is occupied by the Romans - nearly. But the small village of Asterix and his friends still resists the Roman legions with the aid of their druid's magic potion, which gives superhuman strength. Learning of this potion, a Roman centurion kidnaps the druid to get the secret formula out of him.","id":"11047","runtime":68,"imdbId":"tt0061369","version":73,"lastModified":"1301903212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32e\/4d1f4b5b7b9aa1736f00132e\/ast-rix-le-gaulois-mid.jpg","genre":"Animation","title":"Ast\u00e9rix le Gaulois","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"41586"} +{"label":"Ray Goossens","version":27,"id":"67919","lastModified":"1301901949000","name":"Ray Goossens","type":"Person","_key":"41587"} +{"label":"Jacques Jouanneau","version":23,"id":"70142","lastModified":"1301901812000","name":"Jacques Jouanneau","type":"Person","_key":"41588"} +{"label":"Piedone Lo Sbirro","description":"No overview found.","id":"11048","runtime":110,"imdbId":"tt0070534","version":60,"lastModified":"1301904650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c9\/4caa3e755e73d643eb0006c9\/piedone-lo-sbirro-mid.jpg","genre":"Action","title":"Piedone Lo Sbirro","releaseDate":120355200000,"language":"en","type":"Movie","_key":"41589"} +{"label":"Steno","version":51,"id":"67924","lastModified":"1301901772000","name":"Steno","type":"Person","_key":"41590"} +{"label":"Interstella 5555: The 5tory of the 5ecret 5tar 5ystem","description":"A sci-fi japanimation House-musical movie collaboration between Daft Punk--and their music--and designer Leiji Matsumoto. During the recording of their DISCOVERY album and using the themes of sci-fi celebrity, decadence and space travel, Daft Punk--with help from Cedric Hervet--wrote the story and inspired seasoned Japanese animators to symbiotically create this stunning space musical.","id":"11049","runtime":68,"imdbId":"tt0368667","version":109,"lastModified":"1301902798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f6\/4bc93225017a3c57fe0148f6\/interstella-5555-the-5tory-of-the-5ecret-5tar-5ystem-mid.jpg","studio":"Toei Animation Company","genre":"Animation","title":"Interstella 5555: The 5tory of the 5ecret 5tar 5ystem","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"41591"} +{"label":"Romanthony","version":22,"id":"67923","lastModified":"1301901824000","name":"Romanthony","type":"Person","_key":"41592"} +{"label":"Kazuhisa Taken\u00f4chi","version":24,"id":"67925","lastModified":"1301901673000","name":"Kazuhisa Taken\u00f4chi","type":"Person","_key":"41593"} +{"label":"Terms of Endearment","description":"Aurora and Emma are mother and daughter who march to different drummers. Beginning with Emma's marriage, Aurora shows how difficult and loving she can be. The movie covers several years of their lives as each finds different reasons to go on living and find joy. Aurora's interludes with Garrett Breedlove, retired astronaut and next door neighbor are quite striking. ","id":"11050","runtime":132,"imdbId":"tt0086425","version":220,"lastModified":"1301902575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/556\/4cf548887b9aa15148000556\/terms-of-endearment-mid.jpg","genre":"Drama","title":"Terms of Endearment","releaseDate":438134400000,"language":"en","type":"Movie","_key":"41594"} +{"label":"The Last Temptation of Christ","description":"The carpenter Jesus of Nazareth, tormented by the temptations of demons, the guilt of making crosses for the Romans, pity for men and the world, and the constant call of God, sets out to find what God wills for him. But as his mission nears fulfillment, he must face the greatest temptation: the normal life of a good man. Based, not on the Gospels, but on Nikos Kazantzakis' novel of the same name.","id":"11051","runtime":164,"imdbId":"tt0095497","trailer":"http:\/\/www.youtube.com\/watch?v=ihrMTU0lozs","version":155,"lastModified":"1301903104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4ce474867b9aa168b1000625\/the-last-temptation-of-christ-mid.jpg","genre":"Drama","title":"The Last Temptation of Christ","releaseDate":587347200000,"language":"en","type":"Movie","_key":"41595"} +{"label":"Paul Greco","version":21,"id":"67937","lastModified":"1301901812000","name":"Paul Greco","type":"Person","_key":"41596"} +{"label":"Yu-gi-oh!","description":"Underneath the sands of Egypt, Anubis, an ancient evil spirit, has awakened. It's up to Yugi, who defeated Anubis centuries ago, to use his skill and determination to rid the world of evil once again.","id":"11052","runtime":90,"imdbId":"tt0403703","version":218,"lastModified":"1301902755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4bc93228017a3c57fe014923\/yu-gi-oh-mid.jpg","genre":"Animation","title":"Yu-gi-oh!","releaseDate":1091664000000,"language":"en","type":"Movie","_key":"41597"} +{"label":"Dan Green","version":24,"id":"67938","lastModified":"1301901790000","name":"Dan Green","type":"Person","_key":"41598"} +{"label":"Scottie Ray","version":23,"id":"67939","lastModified":"1301901790000","name":"Scottie Ray","type":"Person","_key":"41599"} +{"label":"Wayne Grayson","version":26,"id":"67940","lastModified":"1301901657000","name":"Wayne Grayson","type":"Person","_key":"41600"} +{"label":"Hatsuki Tsuji","version":21,"id":"67941","lastModified":"1301901816000","name":"Hatsuki Tsuji","type":"Person","_key":"41601"} +{"label":"Piedone A Hong Kong","description":"No overview found.","id":"11053","runtime":108,"imdbId":"tt0073541","version":69,"lastModified":"1301905547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/735\/4caa3f615e73d643f0000735\/piedone-a-hong-kong-mid.jpg","genre":"Action","title":"Piedone A Hong Kong","releaseDate":172972800000,"language":"en","type":"Movie","_key":"41602"} +{"label":"Hairspray","description":"Ample teen Tracy Turnblad wants nothing more than to be on the hip local TV dance program, \"The Corny Collins Show\" -- and when her dream comes true, her lively moves and bubbly personality meet with unexpected popularity. But after witnessing firsthand the terrible state of race relations in 1960s Baltimore, Turnblad becomes an outspoken advocate for desegregation.","id":"11054","runtime":92,"imdbId":"tt0095270","version":241,"lastModified":"1301903896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b2\/4d4defa87b9aa13aab0095b2\/hairspray-mid.jpg","genre":"Comedy","title":"Hairspray","releaseDate":571968000000,"language":"en","tagline":"The world was in a mess... but their hair was perfect!!","type":"Movie","_key":"41603"} +{"label":"Sonny Bono","version":25,"id":"67949","lastModified":"1301901841000","name":"Sonny Bono","type":"Person","_key":"41604"} +{"label":"Ruth Brown","version":22,"id":"67950","lastModified":"1301901536000","name":"Ruth Brown","type":"Person","_key":"41605"} +{"label":"Piedone L'Africano","description":"No overview found.","id":"11055","runtime":115,"imdbId":"tt0076544","version":68,"lastModified":"1301903343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73b\/4caa3fc85e73d643f000073b\/piedone-l-africano-mid.jpg","genre":"Action","title":"Piedone L'Africano","releaseDate":267408000000,"language":"en","type":"Movie","_key":"41606"} +{"label":"Joe Stewardson","version":20,"id":"67953","lastModified":"1301901900000","name":"Joe Stewardson","type":"Person","_key":"41607"} +{"label":"Darkness","description":"A teenage girl moves into a remote countryside house with her family, only to discover that their gloomy new home has a horrifying past that threatens to destroy the family.","id":"11056","runtime":102,"imdbId":"tt0273517","version":98,"lastModified":"1301903490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/951\/4bc9322e017a3c57fe014951\/darkness-mid.jpg","studio":"Castelao Producciones S.A.","genre":"Horror","title":"Darkness","releaseDate":1033603200000,"language":"en","type":"Movie","_key":"41608"} +{"label":"Die wei\u00dfe Rose","description":"No overview found.","id":"11057","runtime":123,"imdbId":"tt0084897","version":53,"lastModified":"1301906068000","genre":"Drama","title":"Die wei\u00dfe Rose","releaseDate":401673600000,"language":"en","type":"Movie","_key":"41609"} +{"label":"Wulf Kessler","version":19,"id":"67956","lastModified":"1301901724000","name":"Wulf Kessler","type":"Person","_key":"41610"} +{"label":"Oliver Siebert","version":19,"id":"67957","lastModified":"1301901874000","name":"Oliver Siebert","type":"Person","_key":"41611"} +{"label":"Godsend","description":"A couple agree to have their deceased son cloned, under the supervision of an enigmatic doctor but bizarre things start to happen years after his rebirth.","id":"11058","runtime":102,"imdbId":"tt0335121","version":158,"lastModified":"1301902998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/966\/4bc93230017a3c57fe014966\/godsend-mid.jpg","genre":"Drama","title":"Godsend","releaseDate":1083283200000,"language":"en","type":"Movie","_key":"41612"} +{"label":"Zoie Palmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fa\/4cf2f3005e73d623860001fa\/zoie-palmer-profile.jpg","version":28,"id":"133252","lastModified":"1301901257000","name":"Zoie Palmer","type":"Person","_key":"41613"} +{"label":"House of the Dead","description":"Set on an island off the coast, a techno rave party attracts a diverse group of college coeds and a Coast Guard officer. Soon, they discover that their X-laced escapades are to be interrupted by zombies and monsters that attack them on the ground, from the air, and in the sea, ruled by an evil entity in the House of the Dead... Prequel to the House of the Dead video games.","id":"11059","runtime":90,"imdbId":"tt0317676","homepage":"http:\/\/www.house-of-the-dead.com\/","version":245,"lastModified":"1301902530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97c\/4bc93235017a3c57fe01497c\/house-of-the-dead-mid.jpg","genre":"Action","title":"House of the Dead","releaseDate":1045267200000,"language":"en","type":"Movie","_key":"41614"} +{"label":"Tyron Leitso","version":20,"id":"67977","lastModified":"1301901612000","name":"Tyron Leitso","type":"Person","_key":"41615"} +{"label":"Ona Grauer","version":23,"id":"67978","lastModified":"1301901874000","name":"Ona Grauer","type":"Person","_key":"41616"} +{"label":"Michael Eklund","version":29,"id":"67979","lastModified":"1301901529000","name":"Michael Eklund","type":"Person","_key":"41617"} +{"label":"Kira Clavell","version":21,"id":"77040","lastModified":"1301901580000","name":"Kira Clavell","type":"Person","_key":"41618"} +{"label":"Enuka Okuma","version":18,"id":"90364","lastModified":"1301902360000","name":"Enuka Okuma","type":"Person","_key":"41619"} +{"label":"Adam Harrington","version":17,"id":"106965","lastModified":"1301902636000","name":"Adam Harrington","type":"Person","_key":"41620"} +{"label":"Internal Affairs","description":"Keen young Raymold Avila joins the Internal Affairs Department of the Los Angeles police. He and partner Amy Wallace are soon looking closely at the activities of cop Dennis Peck whose financial holdings start to suggest something shady. Indeed Peck is involved in any number of dubious or downright criminal activities. He is also devious, a womaniser, and a clever manipulator, and he starts to turn his attention on Avila.","id":"11060","runtime":114,"imdbId":"tt0099850","version":346,"lastModified":"1301906480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/985\/4bc93236017a3c57fe014985\/internal-affairs-mid.jpg","genre":"Action","title":"Internal Affairs","releaseDate":632102400000,"language":"en","type":"Movie","_key":"41621"} +{"label":"Workaholic","description":"No overview found.","id":"11061","runtime":90,"imdbId":"tt0118195","version":44,"lastModified":"1301907399000","genre":"Comedy","title":"Workaholic","releaseDate":837043200000,"language":"en","type":"Movie","_key":"41622"} +{"label":"Sharon von Wietersheim","version":21,"id":"22692","lastModified":"1301901974000","name":"Sharon von Wietersheim","type":"Person","_key":"41623"} +{"label":"City Hall","description":"The accidental shooting of a boy in New York leads to an investigation by the Deputy Mayor, and unexpectedly far-reaching consequences.","id":"11062","runtime":111,"imdbId":"tt0115907","version":161,"lastModified":"1301903139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98e\/4bc93237017a3c57fe01498e\/city-hall-mid.jpg","genre":"Drama","title":"City Hall","releaseDate":824428800000,"language":"en","type":"Movie","_key":"41624"} +{"label":"Viktor Vogel - Commercial Man","description":"No overview found.","id":"11063","runtime":108,"imdbId":"tt0246514","version":82,"lastModified":"1301905329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/726\/4d96402a7b9aa119a0003726\/viktor-vogel-commercial-man-mid.jpg","genre":"Comedy","title":"Viktor Vogel - Commercial Man","releaseDate":986342400000,"language":"en","type":"Movie","_key":"41625"} +{"label":"Brewster's Millions","description":"A minor league baseball player has to waste $30m in 30 days in order to inherit $300m; however he's not allowed to tell anyone about the $300m deal.","id":"11064","runtime":97,"imdbId":"tt0088850","trailer":"http:\/\/www.youtube.com\/watch?v=ctCSSj_Lfqc","version":232,"lastModified":"1301902965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a0\/4bc93238017a3c57fe0149a0\/brewster-s-millions-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Brewster's Millions","releaseDate":485568000000,"language":"en","tagline":"Spend $30 Million in the next 30 days without acquiring any assets in order to collect an inheritance of $300 Million. Sounds easy? Well, you'll soon find out.","type":"Movie","_key":"41626"} +{"label":"O","description":"Trust. Seduction. Betrayal.\nHot young stars, a hip, driving soundtrack, plus a provocative tale of jealousy and betrayal combine to create this controversial modern-day version of Shakespeare's classic, \"Othello.\" O is Odin James (Mekhi Phifer), the school's star basketball player and future NBA hopeful. Even though he's the only black student at the elite Palmetto Grove Academy...","id":"11065","runtime":95,"imdbId":"tt0184791","version":125,"lastModified":"1301903334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/081\/4bce2d6c017a3c24cb000081\/o-mid.jpg","genre":"Drama","title":"O","releaseDate":999216000000,"language":"en","tagline":"Trust. Seduction. Betrayal.","type":"Movie","_key":"41627"} +{"label":"Boomerang","description":"Marcus is a successful advertising executive who woos and beds women almost at will. After a company merger he finds that his new boss, the ravishing Jacqueline, is treating him in exactly the same way. Completely traumatised by this, his work goes badly downhill. ","id":"11066","runtime":117,"imdbId":"tt0103859","version":426,"lastModified":"1301902638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4bc9323d017a3c57fe0149bc\/boomerang-mid.jpg","genre":"Comedy","title":"Boomerang","releaseDate":709948800000,"language":"en","tagline":"A Player Who's About To Be Played.","type":"Movie","_key":"41628"} +{"label":"Reginald Hudlin","version":32,"id":"68215","lastModified":"1301901648000","name":"Reginald Hudlin","type":"Person","_key":"41629"} +{"label":"Major League II","description":"Those Cleveland Indians are at it again! After losing in the ALCS the year before, the Indians are determined to make it into the World Series this time! First, though, they have to contend with Rachel Phelps again when she buys back the team. Also, has Rick \"Wild Thing\" Vaughn lost his edge? Are Jake's knees strong enough to make it as a catcher another year? These and other questions are answered as the Indians recapture the magic and win the championship \"their way\".","id":"11067","runtime":105,"imdbId":"tt0110442","trailer":"http:\/\/www.youtube.com\/watch?v=RcVRpkKT4g0","version":137,"lastModified":"1301902366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67b\/4d41ab777b9aa15bb000367b\/major-league-ii-mid.jpg","genre":"Comedy","title":"Major League II","releaseDate":764985600000,"language":"en","tagline":"The dream team is back!","type":"Movie","_key":"41630"} +{"label":"Eric Bruskotter","version":17,"id":"132729","lastModified":"1301902776000","name":"Eric Bruskotter","type":"Person","_key":"41631"} +{"label":"Takaaki Ishibashi","version":15,"id":"147489","lastModified":"1301902722000","name":"Takaaki Ishibashi","type":"Person","_key":"41632"} +{"label":"Singles","description":"Romance in the '90s is where you find it. But what do you do to make it happen in today's hilariously mixed-up Singles world?","id":"11068","runtime":99,"imdbId":"tt0105415","version":153,"lastModified":"1301903816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9dc\/4bc9323f017a3c57fe0149dc\/singles-mid.jpg","genre":"Comedy","title":"Singles","releaseDate":716774400000,"language":"en","type":"Movie","_key":"41633"} +{"label":"Tremors 2: Aftershocks","description":"Those supersucking desert creatures are back --- and this time they're south of the border. As the creatures worm their way through the oil fields of Mexico, the only people who can wrangle them are veteran Earl Bassett and survivalist Burt Gummer. Add to that team a young punk out for cash and a fearless scientist, and the critters don't stand a chance.","id":"11069","runtime":96,"imdbId":"tt0114720","version":248,"lastModified":"1301903333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efd\/4d5086ba7b9aa13aaf00defd\/tremors-2-aftershocks-mid.jpg","studio":"MCA\/Universal Pictures","genre":"Action","title":"Tremors 2: Aftershocks","releaseDate":829008000000,"language":"en","tagline":"The Worms have turned.","type":"Movie","_key":"41634"} +{"label":"Christopher Gartin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c3\/4ce5aec77b9aa179ba0000c3\/christopher-gartin-profile.jpg","version":45,"id":"68108","lastModified":"1301901207000","name":"Christopher Gartin","type":"Person","_key":"41635"} +{"label":"Mondscheintarif","description":"No overview found.","id":"11070","runtime":93,"imdbId":"tt0264917","version":40,"lastModified":"1301905705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ee\/4bc93241017a3c57fe0149ee\/mondscheintarif-mid.jpg","genre":"Comedy","title":"Mondscheintarif","releaseDate":1003968000000,"language":"en","type":"Movie","_key":"41636"} +{"label":"Them","description":"Nuclear tests in the desert result in the growth of gigantic mutant ants who menace cities in the American south-west as a team of investigators and the army search for a way to control their spread in this Cold War-era monster film.","id":"11071","runtime":94,"imdbId":"tt0047573","version":109,"lastModified":"1301905276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f7\/4bc93242017a3c57fe0149f7\/them-mid.jpg","genre":"Horror","title":"Them","releaseDate":-490579200000,"language":"en","type":"Movie","_key":"41637"} +{"label":"Joan Weldon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d1\/4c9a0de37b9aa127590002d1\/joan-weldon-profile.jpg","version":22,"id":"68088","lastModified":"1301901497000","name":"Joan Weldon","type":"Person","_key":"41638"} +{"label":"Blazing Saddles","description":"The Ultimate Western Spoof. A town where everyone seems to be named Johnson is in the way of the railroad. In order to grab their land, Hedley Lemar, a politically connected nasty person, sends in his henchmen to make the town unlivable. After the sheriff is killed, the town demands a new sheriff from the Governor. Hedley convinces him to send the town the first Black sheriff in the west.","id":"11072","runtime":93,"imdbId":"tt0071230","trailer":"http:\/\/www.youtube.com\/watch?v=iLNQv19YpG4","version":769,"lastModified":"1302002585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fa\/4d2fb16d5e73d667ea0002fa\/blazing-saddles-mid.jpg","studio":"Crossbow Productions","genre":"Action","title":"Blazing Saddles","releaseDate":129427200000,"language":"en","tagline":"Never give a saga an even break!","type":"Movie","_key":"41639"} +{"label":"Cleavon Little","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/152\/4d3eefa67b9aa15bab001152\/cleavon-little-profile.jpg","version":34,"id":"68091","lastModified":"1302002585000","name":"Cleavon Little","type":"Person","_key":"41640"} +{"label":"Pura Vida Ibiza","description":"No overview found.","id":"11073","runtime":83,"imdbId":"tt0385183","version":70,"lastModified":"1301903850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/081\/4bd7fd9a017a3c1bfb000081\/pura-vida-ibiza-mid.jpg","genre":"Comedy","title":"Pura Vida Ibiza","releaseDate":1076544000000,"language":"en","type":"Movie","_key":"41641"} +{"label":"Michael Krabbe","version":19,"id":"45977","lastModified":"1301902257000","name":"Michael Krabbe","type":"Person","_key":"41642"} +{"label":"Striking Distance","description":"Set against the backdrop of the Pittsburgh river system, a river patrol cop is on a quest to catch a serial killer at all costs.","id":"11074","runtime":111,"imdbId":"tt0108238","version":364,"lastModified":"1301902284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1a\/4bc9324a017a3c57fe014a1a\/striking-distance-mid.jpg","genre":"Action","title":"Striking Distance","releaseDate":748224000000,"language":"en","type":"Movie","_key":"41643"} +{"label":"Audition","description":"Seven years after the death of his wife, company executive Aoyama is invited to sit in on auditions for an actress. Leafing through the resum\u00e9s in advance, his eye is caught by Yamazaki Asami, a striking young woman with ballet training.","id":"11075","runtime":115,"imdbId":"tt0235198","trailer":"http:\/\/www.youtube.com\/watch?v=yhsrsWcEspc","version":147,"lastModified":"1301902476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a34\/4bc9324d017a3c57fe014a34\/odishon-mid.jpg","studio":"AFDF","genre":"Drama","title":"Audition","releaseDate":939168000000,"language":"en","type":"Movie","_key":"41644"} +{"label":"Eihi Shiina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b1\/4c90e1247b9aa17caf0000b1\/eihi-shiina-profile.jpg","version":30,"id":"57455","lastModified":"1301901302000","name":"Eihi Shiina","type":"Person","_key":"41645"} +{"label":"Tetsu Sawaki","version":25,"id":"68111","lastModified":"1301901581000","name":"Tetsu Sawaki","type":"Person","_key":"41646"} +{"label":"Fly Away Home","description":"Amy is only 13 years old when her mother is killed. She goes to Canada to live with her father, an eccentric inventor whom she barely knows. Amy is miserable in her new life... until she discovers a nest of goose eggs that were abandoned when a local forest is torn down. The eggs hatch and Amy becomes \"Mama Goose\". When Winter comes, Amy, and her dad must find a way to lead the birds South...","id":"11076","runtime":107,"imdbId":"tt0116329","trailer":"http:\/\/www.youtube.com\/watch?v=FCjlubLJcxk","version":480,"lastModified":"1301903008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3d\/4bc9324e017a3c57fe014a3d\/fly-away-home-mid.jpg","genre":"Action","title":"Fly Away Home","releaseDate":841881600000,"language":"en","type":"Movie","_key":"41647"} +{"label":"Carroll Ballard","version":26,"id":"68212","lastModified":"1301901443000","name":"Carroll Ballard","type":"Person","_key":"41648"} +{"label":"Problem Child","description":"Ben Healy (John Ritter) and his social climbing wife Flo adopt Junior a fun-loving seven year old. But they soon discover he's a little monster as he turns a camping trip, a birthday party and even a baseball game into comic nightmares. But is he really just a little angel trying to get out? Find out in this hilarious satire on modern-day family life.","id":"11077","runtime":81,"imdbId":"tt0100419","version":135,"lastModified":"1301903526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a42\/4bc9324f017a3c57fe014a42\/problem-child-mid.jpg","genre":"Comedy","title":"Problem Child","releaseDate":649036800000,"language":"en","tagline":"Attila the Hun. Ivan the Terrible. Al Capone. They were all seven once.","type":"Movie","_key":"41649"} +{"label":"Michael Oliver","version":24,"id":"68209","lastModified":"1301901724000","name":"Michael Oliver","type":"Person","_key":"41650"} +{"label":"National Security","description":"Two mismatched security guards are thrown together to bust a smuggling operation.","id":"11078","runtime":88,"imdbId":"tt0271668","trailer":"http:\/\/www.youtube.com\/watch?v=sNhdYC_wfHc","version":291,"lastModified":"1301901916000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/838\/4d75cede5e73d66462000838\/national-security-mid.jpg","genre":"Action","title":"National Security","releaseDate":1042761600000,"language":"en","type":"Movie","_key":"41651"} +{"label":"Taking Lives","description":"Recruited to assist Montreal police in their desperate search for a serial killer who assumes the identities of his victims, FBI profiler Illeana Scott knows it's only a matter of time before the killer strikes again. Her most promising lead is a museum employee who might be the killer's only eyewitness.","id":"11081","runtime":103,"imdbId":"tt0364045","trailer":"http:\/\/www.youtube.com\/watch?v=1667","version":200,"lastModified":"1301902014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a61\/4bc93255017a3c57fe014a61\/taking-lives-mid.jpg","genre":"Action","title":"Taking Lives","releaseDate":1079395200000,"language":"en","tagline":"He would kill to be you.","type":"Movie","_key":"41652"} +{"label":"The Seventh Sign","description":"Abby is a pregnant woman with a curious new boarder in the apartment over her garage. Turns out he's heaven-sent and is speeding along the Apocalypse by bloodying rivers, egging on plagues and following scripture word for word. As the nosy and nearly-to-term Abby uncovers her tenant's secrets, she finds out her role in bringing about the seventh sign.","id":"11082","runtime":97,"imdbId":"tt0096073","trailer":"http:\/\/www.youtube.com\/watch?v=1yxCT_gSky0","version":190,"lastModified":"1301904622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/222\/4d589dba7b9aa15cf6004222\/the-seventh-sign-mid.jpg","genre":"Drama","title":"The Seventh Sign","releaseDate":575856000000,"language":"en","tagline":"The seals have been broken. The prophecies have begun. Now only one woman can halt the end of our world.","type":"Movie","_key":"41653"} +{"label":"Carl Schultz","version":20,"id":"68085","lastModified":"1301902257000","name":"Carl Schultz","type":"Person","_key":"41654"} +{"label":"Manny Jacobs","version":18,"id":"131831","lastModified":"1301902421000","name":"Manny Jacobs","type":"Person","_key":"41655"} +{"label":"Arnold Johnson","version":18,"id":"131832","lastModified":"1301902224000","name":"Arnold Johnson","type":"Person","_key":"41656"} +{"label":"John Walcutt","version":18,"id":"131833","lastModified":"1301902056000","name":"John Walcutt","type":"Person","_key":"41657"} +{"label":"Patricia Allison","version":18,"id":"131834","lastModified":"1301902780000","name":"Patricia Allison","type":"Person","_key":"41658"} +{"label":"Kitchen Stories","description":"No overview found.","id":"11083","runtime":95,"imdbId":"tt0323872","version":137,"lastModified":"1301904765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a73\/4bc93255017a3c57fe014a73\/salmer-fra-kjkkenet-mid.jpg","studio":"BOB Film Sweden AB","genre":"Comedy","title":"Kitchen Stories","releaseDate":1042588800000,"language":"en","type":"Movie","_key":"41659"} +{"label":"Joachim Calmeyer","version":24,"id":"67986","lastModified":"1301901874000","name":"Joachim Calmeyer","type":"Person","_key":"41660"} +{"label":"Tomas Norstr\u00f6m","version":25,"id":"67987","lastModified":"1301901845000","name":"Tomas Norstr\u00f6m","type":"Person","_key":"41661"} +{"label":"Bj\u00f8rn Floberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4c51f0765e73d632bf0000e9\/bjrn-floberg-profile.jpg","version":44,"birthday":"-703908000000","id":"67988","birthplace":"Oslo","lastModified":"1301901193000","name":"Bj\u00f8rn Floberg","type":"Person","_key":"41662"} +{"label":"Reine Brynolfsson","version":25,"id":"67989","lastModified":"1301901854000","name":"Reine Brynolfsson","type":"Person","_key":"41663"} +{"label":"Flodder 3","description":"Back from their trip abroad, the family must meet the people of the neighborhood while preparing for the 25th anniversary of Zonnedael. Ma falls in love with a bum that is not exactly what he seems to be.","id":"11084","runtime":90,"imdbId":"tt0113081","version":120,"lastModified":"1301905704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ca\/4c503a6b5e73d630360000ca\/flodder-3-mid.jpg","studio":"First Floor Features","genre":"Comedy","title":"Flodder 3","releaseDate":804384000000,"language":"en","type":"Movie","_key":"41664"} +{"label":"Coen van Vrijberghe de Coningh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8ad\/4cbf7f337b9aa138da0018ad\/coen-van-vrijberghe-de-coningh-profile.jpg","version":21,"birthday":"-603939600000","id":"68181","birthplace":"Amsterdam","lastModified":"1301901974000","name":"Coen van Vrijberghe de Coningh","type":"Person","_key":"41665"} +{"label":"Stefan de Walle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ec\/4cbf80027b9aa138d60017ec\/stefan-de-walle-profile.jpg","version":25,"birthday":"-135565200000","id":"68182","birthplace":"The Hague","lastModified":"1301901499000","name":"Stefan de Walle","type":"Person","_key":"41666"} +{"label":"Sander Swart","version":21,"id":"68183","lastModified":"1301901781000","name":"Sander Swart","type":"Person","_key":"41667"} +{"label":"Mutiny on the Bounty","description":"Marlon Brando gives a nuanced performance as the aristocratic Lt. Fletcher Christian, an officer aboard the HMS Bounty who leads a mutiny against the ship's tyrannical Capt. Bligh (Trevor Howard). Featuring lush cinematography of the story's spectacular Tahitian setting and a stirring musical score, director Lewis Milestone's 1962 interpretation of the classic novel was nominated for seven Academy Awards, including Best Picture.","id":"11085","runtime":178,"imdbId":"tt0056264","version":177,"lastModified":"1301903104000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a78\/4bc93256017a3c57fe014a78\/mutiny-on-the-bounty-mid.jpg","genre":"Action","title":"Mutiny on the Bounty","releaseDate":-225590400000,"language":"en","type":"Movie","_key":"41668"} +{"label":"Chips Rafferty","version":29,"id":"69248","lastModified":"1301901939000","name":"Chips Rafferty","type":"Person","_key":"41669"} +{"label":"Eddie Byrne","version":26,"id":"69249","lastModified":"1301901850000","name":"Eddie Byrne","type":"Person","_key":"41670"} +{"label":"Tim Seely","version":23,"id":"69250","lastModified":"1301902257000","name":"Tim Seely","type":"Person","_key":"41671"} +{"label":"The Majestic","description":"Set in 1951, a blacklisted Hollywood writer gets into a car accident, loses his memory and settles down in a small town where he is mistaken for a long-lost son.","id":"11086","runtime":152,"imdbId":"tt0268995","version":249,"lastModified":"1301902913000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa1\/4bc9325c017a3c57fe014aa1\/the-majestic-mid.jpg","genre":"Comedy","title":"The Majestic","releaseDate":1008028800000,"language":"en","type":"Movie","_key":"41672"} +{"label":"Gerry Black","version":16,"id":"97266","lastModified":"1301902083000","name":"Gerry Black","type":"Person","_key":"41673"} +{"label":"Susan Willis","version":16,"id":"97267","lastModified":"1301902083000","name":"Susan Willis","type":"Person","_key":"41674"} +{"label":"Karl Bury","version":16,"id":"97268","lastModified":"1301902083000","name":"Karl Bury","type":"Person","_key":"41675"} +{"label":"The Hand that Rocks the Cradle","description":"A suburban family chooses seemingly sweet Peyton Flanders as their newborn's nanny. Only much later does the infant's mother, Claire Bartel, realize Peyton's true intentions -- to destroy Claire and replace her in the family. The nail-biting suspense builds quickly in this chilling psychological thriller about deception and bitter revenge.","id":"11087","runtime":110,"imdbId":"tt0104389","version":105,"lastModified":"1301902789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d9\/4d76aba67b9aa15c810001d9\/the-hand-that-rocks-the-cradle-mid.jpg","genre":"Drama","title":"The Hand that Rocks the Cradle","releaseDate":695001600000,"language":"en","tagline":"Trust is her weapon. Innocence her opportunity. Revenge her only desire.","type":"Movie","_key":"41676"} +{"label":"Heist","description":"Veteran thief, Joe Moore (Gene Hackman), is a pro who has done his last job. Now he just wants to get out of the business and sail off in to the sunset. But with his \"fence\", Bergman (Danny DeVito), holding back on the money from the last robbery, Joe and his team are not going anywhere - not until they pull off the mother of all heists. To ensure Moore and his team do the job his way, Bergman is sending his young, arrogant nephew, Jimmy Silk, to oversee it. With little respect and a thin veil o","id":"11088","runtime":109,"imdbId":"tt0252503","version":220,"lastModified":"1302041477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab8\/4bc9325f017a3c57fe014ab8\/heist-mid.jpg","genre":"Action","title":"Heist","releaseDate":1005264000000,"language":"en","type":"Movie","_key":"41677"} +{"label":"David Mamet","version":79,"id":"1255","lastModified":"1299672185000","name":"David Mamet","type":"Person","_key":"41678"} +{"label":"Black Box BRD","description":"No overview found.","id":"11089","runtime":102,"imdbId":"tt0283941","version":96,"lastModified":"1301905444000","genre":"Documentary","title":"Black Box BRD","releaseDate":990662400000,"language":"en","type":"Movie","_key":"41679"} +{"label":"Andres Veiel","version":20,"id":"68002","lastModified":"1301901874000","name":"Andres Veiel","type":"Person","_key":"41680"} +{"label":"Pater Augustinus","version":20,"id":"68155","lastModified":"1301902022000","name":"Pater Augustinus","type":"Person","_key":"41681"} +{"label":"Roswitha Bleith-Bendieck","version":20,"id":"68156","lastModified":"1301902148000","name":"Roswitha Bleith-Bendieck","type":"Person","_key":"41682"} +{"label":"Gerd B\u00f6h","version":20,"id":"68157","lastModified":"1301901812000","name":"Gerd B\u00f6h","type":"Person","_key":"41683"} +{"label":"Paul Brand","version":20,"id":"68159","lastModified":"1301901952000","name":"Paul Brand","type":"Person","_key":"41684"} +{"label":"The Animal","description":"When loser Marvin Mange is involved in a horrible car accident, he's brought back to life by a deranged scientist as half man and half animal. His newfound powers are awesome -- but their adverse side effects could take over his life. Now, Marvin must fight to control his crazy primal urges around his new squeeze, Rianna, and his rival, Sgt. Sisk, who both think he's one cool cat.","id":"11090","runtime":84,"imdbId":"tt0255798","trailer":"http:\/\/www.youtube.com\/watch?v=1656","version":169,"lastModified":"1301903293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22a\/4c60c86f5e73d6346200022a\/the-animal-mid.jpg","studio":"Revolution Studios","genre":"Action","title":"The Animal","releaseDate":991353600000,"language":"en","tagline":"He wasn't much of a man... Now he's not much of an animal!","type":"Movie","_key":"41685"} +{"label":"Colleen Haskell","version":22,"id":"68000","lastModified":"1301901724000","name":"Colleen Haskell","type":"Person","_key":"41686"} +{"label":"Riding in Cars with Boys","description":"No overview found.","id":"11091","runtime":132,"imdbId":"tt0200027","version":365,"lastModified":"1301903505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acf\/4bc93264017a3c57fe014acf\/riding-in-cars-with-boys-mid.jpg","studio":"G.K. Film","genre":"Comedy","title":"Riding in Cars with Boys","releaseDate":1003449600000,"language":"en","type":"Movie","_key":"41687"} +{"label":"Presumed Innocent","description":"Life takes a nasty twist for D.A. Rusty Sabich when the woman he has been romantically involved with is murdered. He is assigned to investigate the case, but is soon charged with the murder.","id":"11092","runtime":127,"imdbId":"tt0100404","version":306,"lastModified":"1301902216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae1\/4bc93265017a3c57fe014ae1\/presumed-innocent-mid.jpg","genre":"Crime","title":"Presumed Innocent","releaseDate":649036800000,"language":"en","type":"Movie","_key":"41688"} +{"label":"House of Sand and Fog","description":"A woman is forced to move out from her home and a new family moves in. She refuses to let it go without a fight.","id":"11093","runtime":126,"imdbId":"tt0315983","version":288,"lastModified":"1301901982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af2\/4bc93267017a3c57fe014af2\/house-of-sand-and-fog-mid.jpg","genre":"Drama","title":"House of Sand and Fog","releaseDate":1071792000000,"language":"en","type":"Movie","_key":"41689"} +{"label":"Pepe, der Paukerschreck","description":"No overview found.","id":"11094","runtime":95,"imdbId":"tt0064800","version":52,"lastModified":"1301903368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/662\/4caa42755e73d643ee000662\/pepe-der-paukerschreck-mid.jpg","genre":"Comedy","title":"Pepe, der Paukerschreck","releaseDate":-16243200000,"language":"en","type":"Movie","_key":"41690"} +{"label":"Ich denke oft an Piroschka","description":"No overview found.","id":"11095","runtime":92,"imdbId":"tt0048193","version":53,"lastModified":"1301908560000","genre":"Comedy","title":"Ich denke oft an Piroschka","releaseDate":-442108800000,"language":"en","type":"Movie","_key":"41691"} +{"label":"Hide and Seek","description":"At their new home in upstate New York, newly widowed psychologist David Callaway tries desperately to help his traumatized daughter Emily deal with her mother's death. But before long, both David and Emily are being terrorized by someone - or something - named charlie: a \"friend\" who may or may not be imaginary but is definately the stuff nightmares are made of!","id":"11096","runtime":101,"imdbId":"tt0382077","version":208,"lastModified":"1301902212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba6\/4d40c9ab7b9aa15bb0002ba6\/hide-and-seek-mid.jpg","genre":"Horror","title":"Hide and Seek","releaseDate":1106784000000,"language":"en","tagline":"Come out, come out, whatever you are.","type":"Movie","_key":"41692"} +{"label":"Ich will da sein - Jenny Gr\u00f6llmann","description":"No overview found.","id":"11097","runtime":96,"imdbId":"tt1250969","version":38,"lastModified":"1301906730000","studio":"Weisenburger Film","genre":"Documentary","title":"Ich will da sein - Jenny Gr\u00f6llmann","releaseDate":1213833600000,"language":"en","type":"Movie","_key":"41693"} +{"label":"Petra Weisenburger","version":22,"id":"68008","lastModified":"1301902332000","name":"Petra Weisenburger","type":"Person","_key":"41694"} +{"label":"Jump","description":"JUMP is a psychological drama revealing for the first time the extraordinary circumstances behind the unjust murder trial of the young Jew, Philippe Halsman, who would later become the most sought after celebrity portrait photographer of his generation. ","id":"11098","runtime":102,"imdbId":"tt0816544","version":92,"lastModified":"1301903460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b11\/4bc9326b017a3c57fe014b11\/jump-mid.jpg","genre":"Documentary","title":"Jump","releaseDate":1171411200000,"language":"en","type":"Movie","_key":"41695"} +{"label":"Ben Silverstone","version":21,"id":"68014","lastModified":"1301902320000","name":"Ben Silverstone","type":"Person","_key":"41696"} +{"label":"Martine McCutcheon","version":19,"id":"47714","lastModified":"1301902257000","name":"Martine McCutcheon","type":"Person","_key":"41697"} +{"label":"Christoph Schobesberger","version":19,"id":"68015","lastModified":"1301902257000","name":"Christoph Schobesberger","type":"Person","_key":"41698"} +{"label":"The Final Cut","description":"Set in a world with memory implants, Robin Williams plays a cutter, someone with the power of final edit over people's recorded histories. His latest assignment is one that puts him in danger. ","id":"11099","runtime":95,"imdbId":"tt0364343","trailer":"http:\/\/www.youtube.com\/watch?v=zw-JFzMb6r0","version":199,"lastModified":"1301922195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1a\/4bc9326c017a3c57fe014b1a\/the-final-cut-mid.jpg","studio":"Lions Gate Films","genre":"Drama","title":"The Final Cut","releaseDate":1076457600000,"language":"en","type":"Movie","_key":"41699"} +{"label":"Omar Naim","version":26,"id":"68020","lastModified":"1301902083000","name":"Omar Naim","type":"Person","_key":"41700"} +{"label":"Mimi Kuzyk","version":32,"id":"65471","lastModified":"1301901941000","name":"Mimi Kuzyk","type":"Person","_key":"41701"} +{"label":"L' \u00e9toile du soldat","description":"No overview found.","id":"11100","runtime":105,"imdbId":"tt0825348","version":59,"lastModified":"1301904012000","studio":"Albert Films","genre":"Drama","title":"L' \u00e9toile du soldat","releaseDate":1157414400000,"language":"en","type":"Movie","_key":"41702"} +{"label":"Christophe de Ponfilly","version":21,"id":"68021","lastModified":"1301901724000","name":"Christophe de Ponfilly","type":"Person","_key":"41703"} +{"label":"Mohammad Amin","version":19,"id":"68022","lastModified":"1301901611000","name":"Mohammad Amin","type":"Person","_key":"41704"} +{"label":"Ahmad Shah Alefsourat","version":19,"id":"68200","lastModified":"1301901874000","name":"Ahmad Shah Alefsourat","type":"Person","_key":"41705"} +{"label":"Gol-Ghotai","version":17,"id":"68201","lastModified":"1301902083000","name":"Gol-Ghotai","type":"Person","_key":"41706"} +{"label":"Igor Naryshkin","version":17,"id":"68202","lastModified":"1301901874000","name":"Igor Naryshkin","type":"Person","_key":"41707"} +{"label":"Denis Manokhin","version":17,"id":"68203","lastModified":"1301902257000","name":"Denis Manokhin","type":"Person","_key":"41708"} +{"label":"Pavel Kuzin","version":19,"id":"68204","lastModified":"1301902257000","name":"Pavel Kuzin","type":"Person","_key":"41709"} +{"label":"Elena Mikheeva","version":17,"id":"68205","lastModified":"1301902257000","name":"Elena Mikheeva","type":"Person","_key":"41710"} +{"label":"Serguey Sonovsky","version":17,"id":"68206","lastModified":"1301902257000","name":"Serguey Sonovsky","type":"Person","_key":"41711"} +{"label":"Stalingrad","description":"\"Stalingrad\" follows the progress of a German Platoon through the brutal fighting of the Battle of Stalingrad. After having half their number wiped out and after being placed under the command of a sadistic Captain, the Lieutenant of the platoon leads his men to desert. The men of the platoon attempt to escape from the city which is now surrounded by the Soviet Army.","id":"11101","runtime":134,"imdbId":"tt0108211","version":150,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b23\/4bc9326d017a3c57fe014b23\/stalingrad-mid.jpg","genre":"Drama","title":"Stalingrad","releaseDate":727574400000,"language":"en","type":"Movie","_key":"41712"} +{"label":"Head above Water","description":"A prominent judge, his wife, her ex-lover, their neighbor and a dead body that complicates their lives.","id":"11103","runtime":92,"imdbId":"tt0116502","version":114,"lastModified":"1301904107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4d23f63e5e73d65c31000231\/head-above-water-mid.jpg","studio":"Majestic Films International","genre":"Thriller","title":"Head above Water","releaseDate":847324800000,"language":"en","type":"Movie","_key":"41713"} +{"label":"Jim Wilson","version":44,"id":"7847","lastModified":"1301920454000","name":"Jim Wilson","type":"Person","_key":"41714"} +{"label":"Chungking Express","description":"A Hong Kong fast food restaurant acts as the link between two unusual stories of police officers in love in this eccentric, stylish comedy-drama. Director Wong Kar-Wai plays freely with traditional narrative structure, dividing his film into two loosely connected segments. The first centers on a depressed cop struggling to come to terms with a recent break-up. His sad isolation is transformed when he encounters a beautiful, mysterious femme fatale, whose involvement with the criminal underworld ","id":"11104","runtime":102,"imdbId":"tt0109424","trailer":"http:\/\/www.youtube.com\/watch?v=ZkyRcGGeq8E","version":265,"lastModified":"1301902400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b5\/4cb542927b9aa138d70000b5\/chung-hing-sam-lam-mid.jpg","studio":"Jet Tone Production","genre":"Comedy","title":"Chungking Express","releaseDate":779587200000,"language":"en","type":"Movie","_key":"41715"} +{"label":"Valerie Chow","version":21,"id":"119875","lastModified":"1301903067000","name":"Valerie Chow","type":"Person","_key":"41716"} +{"label":"Chen Jinquan","version":19,"id":"119876","lastModified":"1301903067000","name":"Chen Jinquan","type":"Person","_key":"41717"} +{"label":"Lee-na Kwan","version":18,"id":"119877","lastModified":"1301902928000","name":"Lee-na Kwan","type":"Person","_key":"41718"} +{"label":"Lucie & Maintenant","description":"No overview found.","id":"11105","runtime":86,"imdbId":"tt1171572","version":37,"lastModified":"1301904719000","studio":"Balzli & Fahrer Filmproduktion","genre":"Documentary","title":"Lucie & Maintenant","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"41719"} +{"label":"Simone F\u00fcrbringer","version":21,"id":"68041","lastModified":"1301902182000","name":"Simone F\u00fcrbringer","type":"Person","_key":"41720"} +{"label":"Nicolas Humbert","version":22,"id":"68042","lastModified":"1301901952000","name":"Nicolas Humbert","type":"Person","_key":"41721"} +{"label":"Werner Penzel","version":20,"id":"68043","lastModified":"1301902332000","name":"Werner Penzel","type":"Person","_key":"41722"} +{"label":"Die Musterknaben","description":"No overview found.","id":"11106","runtime":91,"imdbId":"tt0130887","version":39,"lastModified":"1301906156000","genre":"Comedy","title":"Die Musterknaben","releaseDate":867715200000,"language":"en","type":"Movie","_key":"41723"} +{"label":"Ellen Ten Damme","version":24,"id":"68031","lastModified":"1301902181000","name":"Ellen Ten Damme","type":"Person","_key":"41724"} +{"label":"Eddie","description":"Eddie is a New York limo driver and a fanatical follower of the New York Knicks professional basketball team. The team is struggling with a mediocre record when, in mid-season, \"Wild Bill\" Burgess, the new owner, as a public relations gimmick, stages an 'honorary coach' contest, which Eddie wins. The fans love it, so \"Wild Bill\" fires the coach and hires her. She takes the bunch of overpaid prima ","id":"11107","runtime":100,"imdbId":"tt0116168","version":154,"lastModified":"1301902279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/056\/4bf0793e017a3c5309000056\/eddie-mid.jpg","genre":"Action","title":"Eddie","releaseDate":833500800000,"language":"en","tagline":"The newest coach in the NBA has got the Knicks right where she wants them.","type":"Movie","_key":"41725"} +{"label":"John Salley","version":19,"id":"119869","lastModified":"1301902636000","name":"John Salley","type":"Person","_key":"41726"} +{"label":"Rick Fox","version":21,"id":"119870","lastModified":"1301902641000","name":"Rick Fox","type":"Person","_key":"41727"} +{"label":"Malik Sealy","version":19,"id":"119871","lastModified":"1301902894000","name":"Malik Sealy","type":"Person","_key":"41728"} +{"label":"Back To Africa","description":"No overview found.","id":"11108","runtime":97,"imdbId":"tt1236876","homepage":"http:\/\/www.backtoafrica.net\/","version":75,"lastModified":"1301906664000","studio":"Peter Rommel Productions","genre":"Documentary","title":"Back To Africa","releaseDate":1207008000000,"language":"en","type":"Movie","_key":"41729"} +{"label":"Ebraima Tata Dindin","version":20,"id":"69326","lastModified":"1301902148000","name":"Ebraima Tata Dindin","type":"Person","_key":"41730"} +{"label":"Georges Momboye","version":20,"id":"69327","lastModified":"1301902148000","name":"Georges Momboye","type":"Person","_key":"41731"} +{"label":"Makaya Dimbelolo","version":18,"id":"69328","lastModified":"1301901648000","name":"Makaya Dimbelolo","type":"Person","_key":"41732"} +{"label":"Mingue Diagne Sonko","version":20,"id":"69329","lastModified":"1301902332000","name":"Mingue Diagne Sonko","type":"Person","_key":"41733"} +{"label":"Dickson Oppong","version":18,"id":"69330","lastModified":"1301902148000","name":"Dickson Oppong","type":"Person","_key":"41734"} +{"label":"Vera Drake","description":"Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain--a conflict that leads to tragedy for her family.","id":"11109","runtime":125,"imdbId":"tt0383694","version":174,"lastModified":"1301902854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5a\/4bc93278017a3c57fe014b5a\/vera-drake-mid.jpg","studio":"Les Films Alain Sarde","genre":"Drama","title":"Vera Drake","releaseDate":1094428800000,"language":"en","type":"Movie","_key":"41735"} +{"label":"Anna Keaveney","version":20,"id":"68046","lastModified":"1301902392000","name":"Anna Keaveney","type":"Person","_key":"41736"} +{"label":"Sweet Mud","description":"Set in mid-70's, 12-year old Dvir Avni navigates between the equality values of his home-born Kibbutz and the relationship with his undermined mother, whom the Kibbutz members will to denounce.","id":"11110","runtime":97,"imdbId":"tt0498846","trailer":"http:\/\/www.youtube.com\/watch?v=uYeeab6V0kw","homepage":"www.sweetmud.de","version":118,"lastModified":"1301905963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ac\/4c21970a5e73d60ce20002ac\/sweet-mud-mid.jpg","studio":"Heimatfilm","genre":"Drama","title":"Sweet Mud","releaseDate":1157760000000,"language":"en","type":"Movie","_key":"41737"} +{"label":"Tomer Steinhof","version":19,"id":"68048","lastModified":"1301901485000","name":"Tomer Steinhof","type":"Person","_key":"41738"} +{"label":"Ronit Yudkevitz","version":17,"id":"68049","lastModified":"1301902126000","name":"Ronit Yudkevitz","type":"Person","_key":"41739"} +{"label":"Shai Avivi","version":19,"id":"68050","lastModified":"1301902126000","name":"Shai Avivi","type":"Person","_key":"41740"} +{"label":"Gal Zaid","version":20,"id":"68051","lastModified":"1301902204000","name":"Gal Zaid","type":"Person","_key":"41741"} +{"label":"Sharon Zuckerman","version":19,"id":"68052","lastModified":"1301902126000","name":"Sharon Zuckerman","type":"Person","_key":"41742"} +{"label":"Pini Tavger","version":19,"id":"68053","lastModified":"1301902126000","name":"Pini Tavger","type":"Person","_key":"41743"} +{"label":"Daniel Kitsis","version":17,"id":"68054","lastModified":"1301902126000","name":"Daniel Kitsis","type":"Person","_key":"41744"} +{"label":"Joseph Korman","version":17,"id":"68055","lastModified":"1301902126000","name":"Joseph Korman","type":"Person","_key":"41745"} +{"label":"Idit Tzur","version":17,"id":"68057","lastModified":"1301902126000","name":"Idit Tzur","type":"Person","_key":"41746"} +{"label":"Rivka Neuman","version":17,"id":"68060","lastModified":"1301902126000","name":"Rivka Neuman","type":"Person","_key":"41747"} +{"label":"Hila Ofer","version":19,"id":"68061","lastModified":"1301902126000","name":"Hila Ofer","type":"Person","_key":"41748"} +{"label":"Omer Berger","version":19,"id":"68062","lastModified":"1301902126000","name":"Omer Berger","type":"Person","_key":"41749"} +{"label":"Ami Weil","version":19,"id":"68063","lastModified":"1301902126000","name":"Ami Weil","type":"Person","_key":"41750"} +{"label":"Natan Sgan-Cohen","version":19,"id":"68065","lastModified":"1301902303000","name":"Natan Sgan-Cohen","type":"Person","_key":"41751"} +{"label":"Dror Shaul","version":24,"id":"68067","lastModified":"1301901765000","name":"Dror Shaul","type":"Person","_key":"41752"} +{"label":"King Lines","description":"King Lines follows Chris Sharma on his search for the planet's greatest climbs. From South American fantasy boulders to the sweeping limestone walls of Europe, Sharma finds and climbs the hardest, most spectacular routes. Off the coast of Mallorca he discovers his most outrageous project yet, a 70 foot arch rising from the Mediterranean Sea...","id":"11111","runtime":60,"imdbId":"tt1144805","trailer":"http:\/\/www.youtube.com\/watch?v=593","homepage":"http:\/\/www.kinglinesmovie.com\/","version":120,"lastModified":"1301903816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6b\/4bc93279017a3c57fe014b6b\/king-lines-mid.jpg","studio":"Big Up","genre":"Adventure","title":"King Lines","releaseDate":1172707200000,"language":"en","type":"Movie","_key":"41753"} +{"label":"Josh Lowell","version":22,"id":"68096","lastModified":"1301901775000","name":"Josh Lowell","type":"Person","_key":"41754"} +{"label":"Peter Mortimer","version":21,"id":"68094","lastModified":"1301901939000","name":"Peter Mortimer","type":"Person","_key":"41755"} +{"label":"Chris Sharma","version":25,"id":"68104","lastModified":"1301902388000","name":"Chris Sharma","type":"Person","_key":"41756"} +{"label":"Melissa LaCasse","version":19,"id":"68101","lastModified":"1301902257000","name":"Melissa LaCasse","type":"Person","_key":"41757"} +{"label":"Tony Lamprecht","version":19,"id":"68102","lastModified":"1301902257000","name":"Tony Lamprecht","type":"Person","_key":"41758"} +{"label":"Miquel Riera","version":19,"id":"68103","lastModified":"1301902257000","name":"Miquel Riera","type":"Person","_key":"41759"} +{"label":"Sam Whittaker","version":19,"id":"68105","lastModified":"1301902257000","name":"Sam Whittaker","type":"Person","_key":"41760"} +{"label":"The Associate","description":"A struggling black female financial adviser (Whoopi Goldberg) invents a white male boss in order to be accepted by the Wall Street community.","id":"11112","runtime":114,"imdbId":"tt0115580","version":160,"lastModified":"1301902935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4c38c8825e73d671d2000047\/the-associate-mid.jpg","genre":"Comedy","title":"The Associate","releaseDate":846201600000,"language":"en","type":"Movie","_key":"41761"} +{"label":"My Fair Lady","description":"Linguist Professor Henry Higgins bets his friend, Colonel Hugh Pickering , that he can transform Cockney flower girl Eliza Doolittle in time for an important society ball. The spirited Eliza proves more of a handful than the Professor could have predicted. As she slowly becomes more refined, and less reliant upon him, Higgins realizes, to his confusion, that he can't live without her.","id":"11113","runtime":170,"imdbId":"tt0058385","trailer":"http:\/\/www.youtube.com\/watch?v=sr3h2_p2iyw","version":186,"lastModified":"1301902778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/122\/4c1f90cc5e73d60ce2000122\/my-fair-lady-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"My Fair Lady","releaseDate":-158371200000,"language":"en","type":"Movie","_key":"41762"} +{"label":"Pete's Dragon","description":"Pete, a young orphan, runs away to a Maine fishing town with his best friend--a lovable, sometimes invisible dragon named Elliott! When they are taken in by a kind lighthouse keeper, Nora (Helen Reddy), and her father (Mickey Rooney), Elliott's prank playing lands them in big trouble. Then, when crooked salesmen try to capture Elliott for their own gain, Pete must attempt a daring rescue.","id":"11114","runtime":134,"imdbId":"tt0076538","trailer":"http:\/\/www.youtube.com\/watch?v=749","version":206,"lastModified":"1301902197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a55\/4d98f3647b9aa11997006a55\/pete-s-dragon-mid.jpg","genre":"Animation","title":"Pete's Dragon","releaseDate":247363200000,"language":"en","type":"Movie","_key":"41763"} +{"label":"Helen Reddy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4d03ff1b5e73d621a10021bb\/helen-reddy-profile.jpg","version":26,"id":"68129","lastModified":"1301901374000","name":"Helen Reddy","type":"Person","_key":"41764"} +{"label":"Sean Marshall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ed\/4d04060e5e73d621a40021ed\/sean-marshall-profile.jpg","version":29,"id":"68130","lastModified":"1301901423000","name":"Sean Marshall","type":"Person","_key":"41765"} +{"label":"Deal","description":"As an ex-gambler teaches a hot-shot college kid some things about playing cards, he finds himself pulled into the world series of poker, where his prot\u00e9g\u00e9 is his toughest competition.","id":"11115","runtime":85,"imdbId":"tt0446676","trailer":"http:\/\/www.youtube.com\/watch?v=595","homepage":"http:\/\/www.dealthemovie.com\/","version":220,"lastModified":"1301904060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b98\/4bc9327f017a3c57fe014b98\/deal-mid.jpg","studio":"Seven Arts Pictures","genre":"Comedy","title":"Deal","releaseDate":1201564800000,"language":"en","type":"Movie","_key":"41766"} +{"label":"Gil Cates Jr.","version":23,"id":"68167","lastModified":"1301902140000","name":"Gil Cates Jr.","type":"Person","_key":"41767"} +{"label":"Bret Harrison","version":26,"id":"68178","lastModified":"1301901724000","name":"Bret Harrison","type":"Person","_key":"41768"} +{"label":"Maria Mason","version":20,"id":"68179","lastModified":"1301902082000","name":"Maria Mason","type":"Person","_key":"41769"} +{"label":"Gary Grubbs","version":20,"id":"68180","lastModified":"1301901611000","name":"Gary Grubbs","type":"Person","_key":"41770"} +{"label":"Morgen f\u00e4llt die Schule aus","description":"No overview found.","id":"11116","runtime":0,"imdbId":"tt0067443","version":28,"lastModified":"1300979199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67f\/4caa42875e73d643ec00067f\/morgen-fallt-die-schule-aus-mid.jpg","title":"Morgen f\u00e4llt die Schule aus","releaseDate":31536000000,"language":"en","type":"Movie","_key":"41771"} +{"label":"Betragen ungen\u00fcgend","description":"No overview found.","id":"11117","runtime":0,"imdbId":"tt0068267","version":30,"lastModified":"1301906508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e1\/4caa428e5e73d643eb0006e1\/betragen-ungenugend-mid.jpg","title":"Betragen ungen\u00fcgend","releaseDate":63072000000,"language":"en","type":"Movie","_key":"41772"} +{"label":"The Olsen Gang","description":"The Olsen Gang is a movie series in 14 parts.","id":"11118","homepage":"http:\/\/www.olsenbanden.dk\/","version":74,"lastModified":"1301903256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba6\/4bc93280017a3c57fe014ba6\/olsen-banden-mid.png","title":"The Olsen Gang","language":"en","type":"Movie","_key":"41773"} +{"label":"Fortress 2","description":"7 years on from the original Fortress movie, Brennick and his family are still on the run. Finally, they give in, and surrender, only to find themselves imprisoned in a new, more sophisticated fortress prison in outer space. But Brennick's not a man to give in easily, and with a 10 year old son waiting for him back on earth, he's going to pack some serious assault on the evil corporation.","id":"11119","runtime":92,"imdbId":"tt0179183","version":173,"lastModified":"1301903785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baf\/4bc93282017a3c57fe014baf\/fortress-2-mid.jpg","genre":"Action","title":"Fortress 2","releaseDate":951955200000,"language":"en","type":"Movie","_key":"41774"} +{"label":"Aidan Rea","version":22,"id":"68222","lastModified":"1301901687000","name":"Aidan Rea","type":"Person","_key":"41775"} +{"label":"David Roberson","version":22,"id":"68223","lastModified":"1301901687000","name":"David Roberson","type":"Person","_key":"41776"} +{"label":"Liz May Brice","version":24,"id":"68224","lastModified":"1301904136000","name":"Liz May Brice","type":"Person","_key":"41777"} +{"label":"Beth Toussaint","version":23,"id":"68225","lastModified":"1301902349000","name":"Beth Toussaint","type":"Person","_key":"41778"} +{"label":"The Mosquito Coast","description":"An eccentric and dogmatic inventor sells his house and takes his family to Central America to build an ice factory in the middle of the jungle...","id":"11120","runtime":117,"imdbId":"tt0091557","trailer":"http:\/\/www.youtube.com\/watch?v=2t1z-gRiNm0","version":244,"lastModified":"1301904077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb4\/4bc93282017a3c57fe014bb4\/the-mosquito-coast-mid.jpg","genre":"Action","title":"The Mosquito Coast","releaseDate":533347200000,"language":"en","type":"Movie","_key":"41779"} +{"label":"Tess","description":"An Oscar winner for Best Cinematography, Roman Polanski's retelling of Thomas Hardy's Tess of the d'Urbervilles tells the dark tale of Tess (Nastassja Kinski), a teenage servant to a wealthy family whose son, Alec (Leigh Lawson), seduces, impregnates and abandons her. Tess finds renewed hope when she falls in love with Angel (Peter Firth), a parson's son \u2013 though she faces tragic consequences when he learns of her sordid past.","id":"11121","runtime":190,"imdbId":"tt0080009","version":119,"lastModified":"1302002345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04c\/4c31228d5e73d640bc00004c\/tess-mid.jpg","genre":"Drama","title":"Tess","releaseDate":313804800000,"language":"en","type":"Movie","_key":"41780"} +{"label":"John Collin","version":20,"id":"68884","lastModified":"1301902147000","name":"John Collin","type":"Person","_key":"41781"} +{"label":"Indien","description":"No overview found.","id":"11122","runtime":90,"imdbId":"tt0107214","version":55,"lastModified":"1301904471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbd\/4bc93283017a3c57fe014bbd\/indien-mid.jpg","genre":"Comedy","title":"Indien","releaseDate":728006400000,"language":"en","type":"Movie","_key":"41782"} +{"label":"Alfred Dorfer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/083\/4d5120767b9aa13ab4010083\/alfred-dorfer-profile.jpg","version":36,"id":"68889","lastModified":"1301902148000","name":"Alfred Dorfer","type":"Person","_key":"41783"} +{"label":"Roger Murbach","version":20,"id":"68891","lastModified":"1301902375000","name":"Roger Murbach","type":"Person","_key":"41784"} +{"label":"Paul Harather","version":20,"id":"68892","lastModified":"1301902372000","name":"Paul Harather","type":"Person","_key":"41785"} +{"label":"Earthquake","description":"Earthquake is a 1974 American disaster film that achieved huge box-office success, continuing the disaster film genre of the 1970s where recognizable all-star casts attempt to survive life or death situations. The plot concerns the struggle for survival after a catastrophic earthquake destroys most of the city of Los Angeles, California.","id":"11123","runtime":123,"imdbId":"tt0071455","trailer":"http:\/\/www.youtube.com\/watch?v=yh4cIdQYf9o","version":238,"lastModified":"1301905655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc2\/4bc93283017a3c57fe014bc2\/earthquake-mid.jpg","genre":"Action","title":"Earthquake","releaseDate":153705600000,"language":"en","type":"Movie","_key":"41786"} +{"label":"Marjoe Gortner","version":29,"id":"88163","lastModified":"1301902382000","name":"Marjoe Gortner","type":"Person","_key":"41787"} +{"label":"Victoria Principal","version":29,"id":"44719","lastModified":"1301901941000","name":"Victoria Principal","type":"Person","_key":"41788"} +{"label":"Monica Lewis","version":17,"id":"96348","lastModified":"1301902467000","name":"Monica Lewis","type":"Person","_key":"41789"} +{"label":"The Puzzle","description":"No overview found.","id":"11124","runtime":5,"imdbId":"tt1236399","trailer":"http:\/\/www.youtube.com\/watch?v=597","homepage":"http:\/\/diario-thepuzzle.blogspot.com\/","version":123,"lastModified":"1301904885000","studio":"73140323 Producciones Cinematogr\u00e1ficas","genre":"Horror","title":"The Puzzle","releaseDate":1206403200000,"language":"en","type":"Movie","_key":"41790"} +{"label":"Cachito Noguera","version":19,"id":"68231","lastModified":"1301901724000","name":"Cachito Noguera","type":"Person","_key":"41791"} +{"label":"Alessandro Fornari","version":24,"id":"68232","lastModified":"1301901960000","name":"Alessandro Fornari","type":"Person","_key":"41792"} +{"label":"Davide Melini","version":31,"id":"68233","lastModified":"1301901960000","name":"Davide Melini","type":"Person","_key":"41793"} +{"label":"Alberto G\u00f3mez","version":19,"id":"68249","lastModified":"1301902082000","name":"Alberto G\u00f3mez","type":"Person","_key":"41794"} +{"label":"La Sceneggiatura","description":"No overview found.","id":"11125","runtime":12,"imdbId":"tt1110060","homepage":"http:\/\/www.davidemelinidirector.blogspot.com\/","version":107,"lastModified":"1301906479000","genre":"Horror","title":"La Sceneggiatura","releaseDate":1156723200000,"language":"en","type":"Movie","_key":"41795"} +{"label":"Matteo Pianezzi","version":20,"id":"68254","lastModified":"1301902386000","name":"Matteo Pianezzi","type":"Person","_key":"41796"} +{"label":"Claudia Nicosia","version":20,"id":"68255","lastModified":"1301901812000","name":"Claudia Nicosia","type":"Person","_key":"41797"} +{"label":"Filippo Panunzi","version":20,"id":"68256","lastModified":"1301902391000","name":"Filippo Panunzi","type":"Person","_key":"41798"} +{"label":"Amore Estremo","description":"No overview found.","id":"11126","runtime":24,"imdbId":"tt1230520","homepage":"http:\/\/www.davidemelinidirector.blogspot.com\/","version":70,"lastModified":"1301905338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/941\/4d6127167b9aa154bf004941\/amore-estremo-mid.jpg","genre":"Horror","title":"Amore Estremo","releaseDate":1142121600000,"language":"en","type":"Movie","_key":"41799"} +{"label":"Michela Bruni","version":20,"id":"68266","lastModified":"1301902155000","name":"Michela Bruni","type":"Person","_key":"41800"} +{"label":"Leonardo Pace","version":20,"id":"68267","lastModified":"1301902155000","name":"Leonardo Pace","type":"Person","_key":"41801"} +{"label":"Gabriele Cometa","version":20,"id":"68268","lastModified":"1301901960000","name":"Gabriele Cometa","type":"Person","_key":"41802"} +{"label":"Chiara Fiorelli","version":20,"id":"68269","lastModified":"1301901787000","name":"Chiara Fiorelli","type":"Person","_key":"41803"} +{"label":"Michele Battuello","version":20,"id":"68270","lastModified":"1301902342000","name":"Michele Battuello","type":"Person","_key":"41804"} +{"label":"Federico Galante","version":20,"id":"68271","lastModified":"1301902059000","name":"Federico Galante","type":"Person","_key":"41805"} +{"label":"Starship Troopers 3: Marauder","description":"The war against the Bugs continues! A Federation Starship crash-lands on the distant Alien planet OM-1, stranding beloved leader Sky Marshal Anoke and several others, including comely but tough pilot Lola Beck. It's up to Colonel\/General Johnny Rico, reluctant hero of the original Bug Invasion on Planet P, to lead a team of Troopers on a daring rescue mission.","id":"11127","runtime":105,"imdbId":"tt0844760","version":199,"lastModified":"1301901966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcb\/4bc93284017a3c57fe014bcb\/starship-troopers-3-marauder-mid.jpg","studio":"Sony Pictures Home Entertainment","genre":"Action","title":"Starship Troopers 3: Marauder","releaseDate":1217894400000,"language":"en","type":"Movie","_key":"41806"} +{"label":"Jolene Blalock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4d2065745e73d66b27002059\/jolene-blalock-profile.jpg","version":27,"id":"68276","lastModified":"1301901242000","name":"Jolene Blalock","type":"Person","_key":"41807"} +{"label":"Stephen Hogan","version":25,"id":"76415","lastModified":"1301901366000","name":"Stephen Hogan","type":"Person","_key":"41808"} +{"label":"Edward Neumeier","version":64,"id":"7722","lastModified":"1301901214000","name":"Edward Neumeier","type":"Person","_key":"41809"} +{"label":"Ladder 49","description":"Under the watchful eye of his mentor Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. Jack has reached a crossroads, however, as the sacrifices he's made have put him in harm's way innumerable times and significantly impacted his relationship with his wife and kids.","id":"11128","runtime":115,"imdbId":"tt0349710","trailer":"http:\/\/www.youtube.com\/watch?v=1675","version":191,"lastModified":"1301901883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0c\/4d4f28f57b9aa13ab400ad0c\/ladder-49-mid.jpg","genre":"Action","title":"Ladder 49","releaseDate":1095638400000,"language":"en","tagline":"Their greatest challenge lies in rescuing one of their own","type":"Movie","_key":"41810"} +{"label":"Human Traffic","description":"Five friends spend one lost weekend in a mix of music, love and club culture.","id":"11129","runtime":95,"imdbId":"tt0188674","trailer":"http:\/\/www.youtube.com\/watch?v=944","version":269,"lastModified":"1301903240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8b\/4d2175355e73d66b34002c8b\/human-traffic-mid.jpg","studio":"Irish Screen","genre":"Comedy","title":"Human Traffic","releaseDate":928454400000,"language":"en","tagline":"The Weekend has Landed!","type":"Movie","_key":"41811"} +{"label":"Justin Kerrigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc8\/4cf13a0e5e73d61924000bc8\/justin-kerrigan-profile.jpg","version":32,"id":"68281","lastModified":"1301901648000","name":"Justin Kerrigan","type":"Person","_key":"41812"} +{"label":"Lorraine Pilkington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db6\/4cf15e585e73d61928000db6\/lorraine-pilkington-profile.jpg","version":27,"id":"68284","lastModified":"1301901334000","name":"Lorraine Pilkington","type":"Person","_key":"41813"} +{"label":"Nicola Reynolds","version":23,"id":"68286","lastModified":"1301901564000","name":"Nicola Reynolds","type":"Person","_key":"41814"} +{"label":"The Princess Diaries 2: Royal Engagement","description":" Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected...","id":"11130","runtime":113,"imdbId":"tt0368933","version":176,"lastModified":"1301902014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b9\/4d2e659c7b9aa126030001b9\/the-princess-diaries-2-royal-engagement-mid.jpg","genre":"Comedy","title":"The Princess Diaries 2: Royal Engagement","releaseDate":1091836800000,"language":"en","tagline":"It can take a lifetime to find true love; she's got 30 days!","type":"Movie","_key":"41815"} +{"label":"Callum Blue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/443\/4ce1b5745e73d60f70000443\/callum-blue-profile.jpg","version":41,"id":"68287","lastModified":"1301901377000","name":"Callum Blue","type":"Person","_key":"41816"} +{"label":"Nuns on the Run","description":"Brian and Charlie work for a gangster. When the boss learns they want to \"leave\" he sets them up to be killed, after they help rob the local Triads of their drug dealing profits. B&C decide to steal the money for themselves, but when their escape doesn't go to plan, they have to seek refuge in a Nuns' teacher training school.","id":"11131","runtime":89,"imdbId":"tt0100280","version":171,"lastModified":"1301903720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c11\/4bc9328d017a3c57fe014c11\/nuns-on-the-run-mid.jpg","genre":"Comedy","title":"Nuns on the Run","releaseDate":637545600000,"language":"en","type":"Movie","_key":"41817"} +{"label":"Doris Hare","version":25,"id":"68288","lastModified":"1301902216000","name":"Doris Hare","type":"Person","_key":"41818"} +{"label":"Confessions of a Teenage Drama Queen","description":"When the teenager Mary Elizabeth Steppe, a.k.a. Lola, moves with her mother and two younger twin sisters from New York to the suburb of Dellwood, New Jersey, she has the feeling that her cultural and entertaining world ended. While in school, the displaced Lola becomes close friend of the unpopular Ella, who is also a great fan of the her favorite rock band Sidarthur. However, the most popular girl in the school, Carla Santini, disputes the lead role in an adaptation of Pygmalion with Lola and a","id":"11132","runtime":89,"imdbId":"tt0361467","version":183,"lastModified":"1301902264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c22\/4bc93291017a3c57fe014c22\/confessions-of-a-teenage-drama-queen-mid.jpg","genre":"Comedy","title":"Confessions of a Teenage Drama Queen","releaseDate":1076976000000,"language":"en","tagline":"She's making a scene over everything.","type":"Movie","_key":"41819"} +{"label":"Pedro Miguel Arce","version":18,"id":"138947","lastModified":"1301902048000","name":"Pedro Miguel Arce","type":"Person","_key":"41820"} +{"label":"Jessica Barrera","version":4,"id":"230783","lastModified":"1301904128000","name":"Jessica Barrera","type":"Person","_key":"41821"} +{"label":"Poltergeist II: The Other Side","description":"The Freeling family move in with Diane's mother in an effort to escape the trauma and aftermath of Carol Anne's abduction by the Beast. But the Beast is not to be put off so easily and appears in a ghostly apparition as the Reverend Kane, a religeous zealot responsible for the deaths of his many followers. His goal is simple - he wants the angelic Carol Anne.","id":"11133","runtime":91,"imdbId":"tt0091778","version":95,"lastModified":"1301903313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b03\/4be555a1017a3c35bb000b03\/poltergeist-ii-the-other-side-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Horror","title":"Poltergeist II: The Other Side","releaseDate":517190400000,"language":"en","tagline":"They're back.","type":"Movie","_key":"41822"} +{"label":"John P. Whitecloud","version":20,"id":"68296","lastModified":"1301902257000","name":"John P. Whitecloud","type":"Person","_key":"41823"} +{"label":"Police Story 3: Super Cop","description":"A Hong Kong detective teams up with his female Red Chinese counterpart to stop a Chinese drug czar.","id":"11134","runtime":95,"imdbId":"tt0104558","trailer":"http:\/\/www.youtube.com\/watch?v=18XukjkJ4r0","version":165,"lastModified":"1301904012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c41\/4bc93292017a3c57fe014c41\/jing-cha-gu-shi-iii-mid.jpg","genre":"Action","title":"Police Story 3: Super Cop","releaseDate":710208000000,"language":"en","tagline":"There's never a cop around when you need one, but when this cop's around, all you need is one.","type":"Movie","_key":"41824"} +{"label":"Lo Lieh","version":31,"id":"70673","lastModified":"1302035251000","name":"Lo Lieh","type":"Person","_key":"41825"} +{"label":"The Rescuers Down Under","description":"A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and llocal field operative Jake the Kangaroo Rat.","id":"11135","runtime":77,"imdbId":"tt0100477","version":188,"lastModified":"1301902345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c59\/4bc93297017a3c57fe014c59\/the-rescuers-down-under-mid.jpg","studio":"Walt Disney Company","genre":"Action","title":"The Rescuers Down Under","releaseDate":658713600000,"language":"en","type":"Movie","_key":"41826"} +{"label":"Hendel Butoy","version":28,"id":"74297","lastModified":"1301901841000","name":"Hendel Butoy","type":"Person","_key":"41827"} +{"label":"Tristan Rogers","version":24,"id":"94962","lastModified":"1301901996000","name":"Tristan Rogers","type":"Person","_key":"41828"} +{"label":"Adam Ryen","version":25,"id":"122605","lastModified":"1301902708000","name":"Adam Ryen","type":"Person","_key":"41829"} +{"label":"Ed Gilbert","version":28,"id":"35243","lastModified":"1301901841000","name":"Ed Gilbert","type":"Person","_key":"41830"} +{"label":"Carla Meyer","version":25,"id":"122607","lastModified":"1301902722000","name":"Carla Meyer","type":"Person","_key":"41831"} +{"label":"Peter Greenwood","version":25,"id":"122608","lastModified":"1301902721000","name":"Peter Greenwood","type":"Person","_key":"41832"} +{"label":"The Muppets","description":"No overview found.","id":"11136","title":"The Muppets","language":"en","lastModified":"1301903816000","version":294,"type":"Movie","_key":"41833"} +{"label":"The Prince & Me","description":"A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince \"Eddie\" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.","id":"11137","runtime":111,"imdbId":"tt0337697","version":140,"lastModified":"1302042330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4c9dbfe47b9aa1578d000051\/the-prince-me-mid.jpg","genre":"Comedy","title":"The Prince & Me","releaseDate":1080432000000,"language":"en","type":"Movie","_key":"41834"} +{"label":"Luke Mably","version":31,"id":"68307","lastModified":"1301901443000","name":"Luke Mably","type":"Person","_key":"41835"} +{"label":"Beethoven","description":"No overview found.","id":"11138","version":168,"lastModified":"1301905959000","genre":"Comedy","title":"Beethoven","language":"en","type":"Movie","_key":"41836"} +{"label":"L\u00e9olo","description":"The story of an imaginative boy who pretends he is the child of a sperm-laden Sicilian tomato upon which his mother accidentally fell.","id":"11139","runtime":107,"imdbId":"tt0104782","version":117,"lastModified":"1301904012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6f\/4bc93299017a3c57fe014c6f\/leolo-mid.jpg","genre":"Comedy","title":"L\u00e9olo","releaseDate":716601600000,"language":"en","type":"Movie","_key":"41837"} +{"label":"Gilbert Sicotte","version":19,"id":"68311","lastModified":"1301902082000","name":"Gilbert Sicotte","type":"Person","_key":"41838"} +{"label":"Maxime Collin","version":19,"id":"68312","lastModified":"1301901724000","name":"Maxime Collin","type":"Person","_key":"41839"} +{"label":"Giuditta Del Vecchio","version":19,"id":"68313","lastModified":"1301902257000","name":"Giuditta Del Vecchio","type":"Person","_key":"41840"} +{"label":"Andr\u00e9e Lachapelle","version":19,"id":"68314","lastModified":"1301902257000","name":"Andr\u00e9e Lachapelle","type":"Person","_key":"41841"} +{"label":"Jean-Claude Lauzon","version":21,"id":"68315","lastModified":"1301902082000","name":"Jean-Claude Lauzon","type":"Person","_key":"41842"} +{"label":"Dr. Mabuse","description":"No overview found.","id":"11140","title":"Dr. Mabuse","language":"en","lastModified":"1301905126000","version":175,"type":"Movie","_key":"41843"} +{"label":"Laws of Attraction","description":"Amidst a sea of litigation, two New York City divorce lawyers find love.","id":"11141","runtime":90,"imdbId":"tt0323033","version":185,"lastModified":"1301902384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8b\/4bc9329b017a3c57fe014c8b\/laws-of-attraction-mid.jpg","genre":"Action","title":"Laws of Attraction","releaseDate":1081036800000,"language":"en","type":"Movie","_key":"41844"} +{"label":"Der Clown","description":"No overview found.","id":"11142","runtime":104,"imdbId":"tt0373762","homepage":"http:\/\/www.clown-derfilm.de\/","version":88,"lastModified":"1301904715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c90\/4bc9329d017a3c57fe014c90\/der-clown-mid.jpg","studio":"Action concept &fims","genre":"Action","title":"Der Clown","releaseDate":1111622400000,"language":"en","type":"Movie","_key":"41845"} +{"label":"Thomas Anzenhofer","version":22,"id":"68324","lastModified":"1301901952000","name":"Thomas Anzenhofer","type":"Person","_key":"41846"} +{"label":"Dirk Heinrichs","version":22,"id":"68325","lastModified":"1301902358000","name":"Dirk Heinrichs","type":"Person","_key":"41847"} +{"label":"Xenia Seeberg","version":23,"id":"68326","lastModified":"1301902332000","name":"Xenia Seeberg","type":"Person","_key":"41848"} +{"label":"Tai Chi Master","description":"Falsely accused for cheating in a martial arts competition, two boyhood friends are banished from their Shaolin Temple and go their separate ways. As adults, they join opposing sides in a civil war. When one betrays the other, they settle their differences mano-a-mano.","id":"11143","runtime":96,"imdbId":"tt0108281","version":100,"lastModified":"1301904185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c99\/4bc9329e017a3c57fe014c99\/tai-ji-zhang-san-feng-mid.jpg","genre":"Action","title":"Tai Chi Master","releaseDate":753580800000,"language":"en","type":"Movie","_key":"41849"} +{"label":"Siu-hou Chin","version":26,"id":"68323","lastModified":"1301901665000","name":"Siu-hou Chin","type":"Person","_key":"41850"} +{"label":"Woo-ping Yuen","version":69,"id":"18899","lastModified":"1301957818000","name":"Woo-ping Yuen","type":"Person","_key":"41851"} +{"label":"Lo Chiamavano Bulldozer","description":"No overview found.","id":"11144","runtime":97,"imdbId":"tt0077864","version":67,"lastModified":"1301902668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca2\/4bc9329f017a3c57fe014ca2\/lo-chiamavano-bulldozer-mid.jpg","genre":"Action","title":"Lo Chiamavano Bulldozer","releaseDate":276393600000,"language":"en","type":"Movie","_key":"41852"} +{"label":"Ottaviano Dell'Acqua","version":29,"id":"68330","lastModified":"1301901648000","name":"Ottaviano Dell'Acqua","type":"Person","_key":"41853"} +{"label":"Enzo Santaniello","version":21,"id":"68331","lastModified":"1301901812000","name":"Enzo Santaniello","type":"Person","_key":"41854"} +{"label":"Marco Stefanelli","version":21,"id":"68332","lastModified":"1301902177000","name":"Marco Stefanelli","type":"Person","_key":"41855"} +{"label":"The Electric Horseman","description":"No overview found.","id":"11145","runtime":122,"imdbId":"tt0079100","version":120,"lastModified":"1301904480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c2\/4d7e07b37b9aa11a0801a1c2\/the-electric-horseman-mid.jpg","genre":"Comedy","title":"The Electric Horseman","releaseDate":283046400000,"language":"en","type":"Movie","_key":"41856"} +{"label":"Friedliche Zeiten","description":"No overview found.","id":"11147","runtime":98,"imdbId":"tt1194229","version":86,"lastModified":"1301903259000","studio":"Royal Pony Film","genre":"Comedy","title":"Friedliche Zeiten","releaseDate":1214006400000,"language":"en","type":"Movie","_key":"41857"} +{"label":"Nina Monka","version":19,"id":"68335","lastModified":"1301901629000","name":"Nina Monka","type":"Person","_key":"41858"} +{"label":"Tamino Wecker","version":19,"id":"43360","lastModified":"1301902120000","name":"Tamino Wecker","type":"Person","_key":"41859"} +{"label":"Daphne Wagner","version":19,"id":"68336","lastModified":"1301902298000","name":"Daphne Wagner","type":"Person","_key":"41860"} +{"label":"Georgia Stahl","version":19,"id":"68337","lastModified":"1301902298000","name":"Georgia Stahl","type":"Person","_key":"41861"} +{"label":"Neele Leana Vollmar","version":22,"id":"68338","lastModified":"1301901694000","name":"Neele Leana Vollmar","type":"Person","_key":"41862"} +{"label":"XXY","description":"This is the dramatic story of a 15-year-old hermaphrodite. She lives with her parents, who have to cope with the challenges of her medical condition.","id":"11148","runtime":86,"imdbId":"tt0995829","version":151,"lastModified":"1301903195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb7\/4bc932a1017a3c57fe014cb7\/xxy-mid.jpg","studio":"Pyramide Films","genre":"Drama","title":"XXY","releaseDate":1179619200000,"language":"en","type":"Movie","_key":"41863"} +{"label":"Luc\u00eda Puenzo","version":25,"id":"69309","lastModified":"1301902148000","name":"Luc\u00eda Puenzo","type":"Person","_key":"41864"} +{"label":"Ricardo Dar\u00edn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ff\/4bf6df20017a3c772a0002ff\/ricardo-darin-profile.jpg","version":52,"id":"69310","lastModified":"1301901201000","name":"Ricardo Dar\u00edn","type":"Person","_key":"41865"} +{"label":"Valeria Bertuccelli","version":23,"id":"69311","lastModified":"1301901992000","name":"Valeria Bertuccelli","type":"Person","_key":"41866"} +{"label":"Carolina Pelleritti","version":20,"id":"69312","lastModified":"1301901992000","name":"Carolina Pelleritti","type":"Person","_key":"41867"} +{"label":"Germ\u00e1n Palacios","version":20,"id":"69313","lastModified":"1301901992000","name":"Germ\u00e1n Palacios","type":"Person","_key":"41868"} +{"label":"Mart\u00edn Piroyansky","version":20,"id":"69314","lastModified":"1301901952000","name":"Mart\u00edn Piroyansky","type":"Person","_key":"41869"} +{"label":"La Paloma. Sehnsucht. Weltweit","description":"No overview found.","id":"11149","runtime":86,"imdbId":"tt1217269","version":48,"lastModified":"1301904715000","studio":"Seppia Production","genre":"Documentary","title":"La Paloma. Sehnsucht. Weltweit","releaseDate":1209340800000,"language":"en","type":"Movie","_key":"41870"} +{"label":"Sigrid Faltin","version":21,"id":"69346","lastModified":"1301901939000","name":"Sigrid Faltin","type":"Person","_key":"41871"} +{"label":"Back to Normandy","description":"No overview found.","id":"11150","runtime":117,"imdbId":"tt0487485","homepage":"http:\/\/www.retourennormandie-lefilm.com\/","version":115,"lastModified":"1301907101000","studio":"Les Films d'Ici","genre":"Documentary","title":"Back to Normandy","releaseDate":1191369600000,"language":"en","type":"Movie","_key":"41872"} +{"label":"Claude H\u00e9bert","version":21,"id":"68361","lastModified":"1301902257000","name":"Claude H\u00e9bert","type":"Person","_key":"41873"} +{"label":"Nicole Picard","version":19,"id":"68362","lastModified":"1301902257000","name":"Nicole Picard","type":"Person","_key":"41874"} +{"label":"Anne Borel","version":19,"id":"68364","lastModified":"1301902257000","name":"Anne Borel","type":"Person","_key":"41875"} +{"label":"Maroa","description":"No overview found.","id":"11151","runtime":102,"imdbId":"tt0478702","version":62,"lastModified":"1301904706000","studio":"Alta Films S.A.","genre":"Drama","title":"Maroa","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"41876"} +{"label":"Solveig Hoogesteijn","version":20,"id":"65995","lastModified":"1301901671000","name":"Solveig Hoogesteijn","type":"Person","_key":"41877"} +{"label":"The Ruins","description":"A group of friends whose leisurely Mexican holiday takes a turn for the worse when they, along with a fellow tourist embark on a remote archaeological dig in the jungle, where something evil lives among the ruins","id":"11152","runtime":91,"imdbId":"tt0963794","trailer":"http:\/\/www.youtube.com\/watch?v=Xh_m7bEnV4w","version":246,"lastModified":"1301901795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd2\/4bc932a3017a3c57fe014cd2\/the-ruins-mid.jpg","studio":"Bender-Spink Inc.","genre":"Drama","title":"The Ruins","releaseDate":1207094400000,"language":"en","type":"Movie","_key":"41878"} +{"label":"Carter Smith","version":22,"id":"68352","lastModified":"1301901874000","name":"Carter Smith","type":"Person","_key":"41879"} +{"label":"National Lampoon's Vacation","description":"The Griswold family are on a quest. A quest to a Walley World theme park for a family vacation, but things aren't going to go exactly as planned, especially when Clark Griswold is losing all thought towards a mysterious blonde in a red Ferrari.","id":"11153","runtime":99,"imdbId":"tt0085995","trailer":"http:\/\/www.youtube.com\/watch?v=Kn6uqwSjDjY","version":209,"lastModified":"1301902099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10d\/4c7e98935e73d648e200010d\/vacation-mid.jpg","genre":"Comedy","title":"National Lampoon's Vacation","releaseDate":428284800000,"language":"en","tagline":"Every summer Chevy Chase takes his family on a little trip. This year he went too far.","type":"Movie","_key":"41880"} +{"label":"Imogene Coca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4c236aff7b9aa13f5f00005d\/imogene-coca-profile.jpg","version":26,"id":"70089","lastModified":"1302062573000","name":"Imogene Coca","type":"Person","_key":"41881"} +{"label":"National Lampoon's Christmas Vacation 2: Cousin Eddie's Island Adventure","description":"Though Eddie's fired right at Christmastime, his boss sends him and his family on a South Pacific vacation, hoping Eddie won't sue him after being bitten by a lab monkey. When the Tuttle family winds up trapped on a tropical island, however, Eddie manages to provide for everyone and prove himself a real man. ","id":"11155","runtime":0,"imdbId":"tt0367623","version":69,"lastModified":"1301903155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf6\/4bc932a9017a3c57fe014cf6\/national-lampoon-s-christmas-vacation-2-cousin-eddie-s-island-adventure-mid.jpg","genre":"Comedy","title":"National Lampoon's Christmas Vacation 2: Cousin Eddie's Island Adventure","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"41882"} +{"label":"Coco avant Chanel","description":"Several years after leaving the orphanage to which her father never returned for her, Gabrielle Chanel finds herself working in a provincial bar both. She's both a seamstress for the performers and a singer, earning the nickname Coco from the song she sings nightly with her sister. A liaison with Baron Balsan gives her an entree into French society and a chance to develop her gift for designing in","id":"11156","runtime":110,"imdbId":"tt1035736","trailer":"http:\/\/www.youtube.com\/watch?v=1465","homepage":"http:\/\/www.cocoavantchanel.fr","version":224,"lastModified":"1301902213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d13\/4bc932ad017a3c57fe014d13\/coco-avant-chanel-mid.jpg","studio":"Warner Bros. France","genre":"Drama","title":"Coco avant Chanel","releaseDate":1253836800000,"language":"en","type":"Movie","_key":"41883"} +{"label":"She-Devil","description":"No overview found.","id":"11157","runtime":99,"imdbId":"tt0098309","version":146,"lastModified":"1301902648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4c8561ae5e73d66b33000028\/she-devil-mid.jpg","genre":"Comedy","title":"She-Devil","releaseDate":629078400000,"language":"en","type":"Movie","_key":"41884"} +{"label":"Honey, I Blew Up the Kid","description":"Wayne Szalinski is at it again. But instead of shrinking things, he tries to make a machine that can make things grow. As in the first one, his machine isn't quite accurate. But when he brings Nick & his toddler son Adam to see his invention, the machine unexpectedly starts working. And when Adam comes right up to the machine, he gets zapped along with his stuffed bunny.","id":"11158","runtime":89,"imdbId":"tt0104437","version":157,"lastModified":"1301904388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d2\/4d37b7a97b9aa17a4500d7d2\/honey-i-blew-up-the-kid-mid.jpg","genre":"Comedy","title":"Honey, I Blew Up the Kid","releaseDate":711331200000,"language":"en","type":"Movie","_key":"41885"} +{"label":"Daniel Shalikar","version":21,"id":"68379","lastModified":"1301901874000","name":"Daniel Shalikar","type":"Person","_key":"41886"} +{"label":"Joshua Shalikar","version":21,"id":"68380","lastModified":"1301902257000","name":"Joshua Shalikar","type":"Person","_key":"41887"} +{"label":"Secrets & Lies","description":"A middle-aged London factory worker (Blethyn) is shocked when the mixed-race daughter she gave up at birth decides to track her down. At first she denies she is her mother. All family members become emotional, as everyone's secrets are exposed.","id":"11159","runtime":142,"imdbId":"tt0117589","version":135,"lastModified":"1301908100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d21\/4bc932b0017a3c57fe014d21\/secrets-lies-mid.jpg","genre":"Comedy","title":"Secrets & Lies","releaseDate":832896000000,"language":"en","type":"Movie","_key":"41888"} +{"label":"Phyllis Logan","version":20,"id":"68383","lastModified":"1301901874000","name":"Phyllis Logan","type":"Person","_key":"41889"} +{"label":"Claire Rushbrook","version":26,"id":"68384","lastModified":"1301902137000","name":"Claire Rushbrook","type":"Person","_key":"41890"} +{"label":"Piedone D'Egitto","description":"No overview found.","id":"11160","runtime":104,"imdbId":"tt0079718","version":60,"lastModified":"1301903976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4c4b29405e73d62a4000002a\/piedone-d-egitto-mid.jpg","genre":"Crime","title":"Piedone D'Egitto","releaseDate":330220800000,"language":"en","type":"Movie","_key":"41891"} +{"label":"Baldwyn Dakile","version":22,"id":"68385","lastModified":"1301901690000","name":"Baldwyn Dakile","type":"Person","_key":"41892"} +{"label":"Grace is Gone","description":"Upon hearing his wife was killed in the Iraq war, a father takes his two daughters on a road trip.","id":"11161","runtime":85,"imdbId":"tt0772168","trailer":"http:\/\/www.youtube.com\/watch?v=600","homepage":"http:\/\/www.graceisgone-themovie.com\/","version":166,"lastModified":"1301902754000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d32\/4bc932b2017a3c57fe014d32\/grace-is-gone-mid.jpg","studio":"Plum Pictures","genre":"Drama","title":"Grace is Gone","releaseDate":1169337600000,"language":"en","type":"Movie","_key":"41893"} +{"label":"James C. Strouse","version":27,"id":"52413","lastModified":"1301901648000","name":"James C. Strouse","type":"Person","_key":"41894"} +{"label":"Doug Dearth","version":20,"id":"68394","lastModified":"1301902082000","name":"Doug Dearth","type":"Person","_key":"41895"} +{"label":"Gracie Bednarczyk","version":20,"id":"68395","lastModified":"1301901874000","name":"Gracie Bednarczyk","type":"Person","_key":"41896"} +{"label":"Michael Thomas Dunn","version":16,"id":"68396","lastModified":"1301901874000","name":"Michael Thomas Dunn","type":"Person","_key":"41897"} +{"label":"Natalie Berg","version":16,"id":"68397","lastModified":"1301901874000","name":"Natalie Berg","type":"Person","_key":"41898"} +{"label":"Sh\u00e9lan O'Keefe","version":18,"id":"68398","lastModified":"1301901874000","name":"Sh\u00e9lan O'Keefe","type":"Person","_key":"41899"} +{"label":"Doug James","version":20,"id":"68399","lastModified":"1301901874000","name":"Doug James","type":"Person","_key":"41900"} +{"label":"The Merchant of Venice","description":"In 16th century Venice, when a merchant must default on a large loan from an abused Jewish moneylender for a friend with romantic ambitions, the bitterly vengeful creditor demands a gruesome payment instead.","id":"11162","runtime":138,"imdbId":"tt0379889","version":171,"lastModified":"1301902613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3f\/4bc932b3017a3c57fe014d3f\/william-shakespeare-s-the-merchant-of-venice-mid.jpg","genre":"Comedy","title":"The Merchant of Venice","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"41901"} +{"label":"Fellini Satyricon","description":"Film is loosely based on Petronius's work, Satyricon, a series of bawdy and satirical episodes written during the reign of the emperor Nero and set in imperial Rome.","id":"11163","runtime":129,"imdbId":"tt0064940","version":287,"lastModified":"1301903222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4d\/4bc932b4017a3c57fe014d4d\/satyricon-mid.jpg","genre":"Drama","title":"Fellini Satyricon","releaseDate":-10368000000,"language":"en","type":"Movie","_key":"41902"} +{"label":"Max Born","version":21,"id":"68405","lastModified":"1301902014000","name":"Max Born","type":"Person","_key":"41903"} +{"label":"Salvo Randone","version":26,"id":"68406","lastModified":"1301901952000","name":"Salvo Randone","type":"Person","_key":"41904"} +{"label":"D2: The Mighty Ducks","description":"After Gordon Bombay's hockey comeback is cut short he is named coach of Team USA Hockey for the Junior Goodwill Games. Bombay reunites the Mighty Ducks and introduces a few new players, however, he finds himself distracted by his newfound fame and must regather if the Ducks are to defeat tournament favourites Iceland.","id":"11164","runtime":106,"imdbId":"tt0109520","version":116,"lastModified":"1302038762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edb\/4d4ca46c7b9aa13aaf007edb\/d2-the-mighty-ducks-mid.jpg","studio":"Walt Disney Productions","genre":"Action","title":"D2: The Mighty Ducks","releaseDate":764553600000,"language":"en","tagline":"The Puck Stops Here!","type":"Movie","_key":"41905"} +{"label":"Maria Ellingsen","version":16,"id":"148636","lastModified":"1301903094000","name":"Maria Ellingsen","type":"Person","_key":"41906"} +{"label":"Brandon Quintin Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f0\/4d79c6ae5e73d651740000f0\/brandon-quintin-adams-profile.jpg","version":20,"id":"148638","lastModified":"1301903083000","name":"Brandon Quintin Adams","type":"Person","_key":"41907"} +{"label":"Tora! Tora! Tora!","description":"In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.","id":"11165","runtime":144,"imdbId":"tt0066473","trailer":"http:\/\/www.youtube.com\/watch?v=GgX1WBf2SjE","version":550,"lastModified":"1301902685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/526\/4cea62c05e73d6258d000526\/tora-tora-tora-mid.jpg","genre":"Action","title":"Tora! Tora! Tora!","releaseDate":22896000000,"language":"en","tagline":"The incredible attack on Pearl Harbor.","type":"Movie","_key":"41908"} +{"label":"S\u00f4 Yamamura","version":34,"id":"68411","lastModified":"1302052174000","name":"S\u00f4 Yamamura","type":"Person","_key":"41909"} +{"label":"Takahiro Tamura","version":26,"id":"118989","lastModified":"1301903068000","name":"Takahiro Tamura","type":"Person","_key":"41910"} +{"label":"Shogo Shimada","version":25,"id":"123379","lastModified":"1301902573000","name":"Shogo Shimada","type":"Person","_key":"41911"} +{"label":"Frank Aletter","version":25,"id":"123380","lastModified":"1301902547000","name":"Frank Aletter","type":"Person","_key":"41912"} +{"label":"Koreya Senda","version":23,"id":"123381","lastModified":"1301902658000","name":"Koreya Senda","type":"Person","_key":"41913"} +{"label":"Junya Usami","version":23,"id":"123382","lastModified":"1301902361000","name":"Junya Usami","type":"Person","_key":"41914"} +{"label":"Bontar\u00f4 Miake","version":24,"id":"123384","lastModified":"1301902714000","name":"Bontar\u00f4 Miake","type":"Person","_key":"41915"} +{"label":"Keith Andes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4bd5ebfe017a3c658600008d\/keith-andes-profile.jpg","version":28,"id":"15953","lastModified":"1301901588000","name":"Keith Andes","type":"Person","_key":"41916"} +{"label":"Eijir\u00f4 T\u00f4no","version":29,"id":"106165","lastModified":"1301902412000","name":"Eijir\u00f4 T\u00f4no","type":"Person","_key":"41917"} +{"label":"Toshio Masuda","version":25,"id":"68412","lastModified":"1301901378000","name":"Toshio Masuda","type":"Person","_key":"41918"} +{"label":"Mors Elling","description":"No overview found.","id":"11166","runtime":78,"imdbId":"tt0368045","version":82,"lastModified":"1301903966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/228\/4d6189f27b9aa154cf005228\/mors-elling-mid.jpg","genre":"Comedy","title":"Mors Elling","releaseDate":1065744000000,"language":"en","type":"Movie","_key":"41919"} +{"label":"Grete Nordr\u00e5","version":21,"id":"68418","lastModified":"1301901674000","name":"Grete Nordr\u00e5","type":"Person","_key":"41920"} +{"label":"Helge Reiss","version":30,"id":"68419","lastModified":"1301901672000","name":"Helge Reiss","type":"Person","_key":"41921"} +{"label":"Christin Borge","version":19,"id":"68420","lastModified":"1301902082000","name":"Christin Borge","type":"Person","_key":"41922"} +{"label":"Eva Isaksen","version":24,"id":"68421","lastModified":"1302006232000","name":"Eva Isaksen","type":"Person","_key":"41923"} +{"label":"Peeping Tom","description":"A young man murders women, using a movie camera to film their dying expressions of terror.","id":"11167","runtime":101,"imdbId":"tt0054167","version":85,"lastModified":"1302039356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d83\/4bc932bc017a3c57fe014d83\/peeping-tom-mid.jpg","studio":"Michael Powell (Theatre)","genre":"Horror","title":"Peeping Tom","releaseDate":-303868800000,"language":"en","type":"Movie","_key":"41924"} +{"label":"Moira Shearer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/976\/4be446a9017a3c35b7000976\/moira-shearer-profile.jpg","version":25,"id":"68422","lastModified":"1301901813000","name":"Moira Shearer","type":"Person","_key":"41925"} +{"label":"Michael Powell","version":64,"id":"68424","lastModified":"1301901357000","name":"Michael Powell","type":"Person","_key":"41926"} +{"label":"Go Trabi Go 2 - Das war der wilde Osten","description":"No overview found.","id":"11168","runtime":93,"imdbId":"tt0104349","version":38,"lastModified":"1301905273000","genre":"Comedy","title":"Go Trabi Go 2 - Das war der wilde Osten","releaseDate":714268800000,"language":"en","type":"Movie","_key":"41927"} +{"label":"Claudia Schmutzler","version":21,"id":"68429","lastModified":"1301902147000","name":"Claudia Schmutzler","type":"Person","_key":"41928"} +{"label":"Spartan","description":"U.S. government agent Scott is assigned to rescue the daughter of a high-ranking government official. As willing as he is to bend the rules to get things done, though, Scott is shocked to find that others are willing to go even further to protect a political career.","id":"11169","runtime":102,"imdbId":"tt0360009","version":200,"lastModified":"1301904061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/488\/4d7428055e73d60882000488\/spartan-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Spartan","releaseDate":1079049600000,"language":"en","type":"Movie","_key":"41929"} +{"label":"Tia Texada","version":21,"id":"68430","lastModified":"1301902257000","name":"Tia Texada","type":"Person","_key":"41930"} +{"label":"We Are Marshall","description":"When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.","id":"11170","runtime":124,"imdbId":"tt0758794","trailer":"http:\/\/www.youtube.com\/watch?v=vmH61rvDQxU","version":272,"lastModified":"1301903024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da1\/4bc932c2017a3c57fe014da1\/we-are-marshall-mid.jpg","genre":"Drama","title":"We Are Marshall","releaseDate":1166745600000,"language":"en","tagline":"From the ashes we rose.","type":"Movie","_key":"41931"} +{"label":"Mysterious Skin","description":"A teenage hustler and a young man obsessed with alien abductions cross paths, together discovering a horrible, liberating truth.","id":"11171","runtime":99,"imdbId":"tt0370986","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=xfwPzrSIUBA&hd=1","version":193,"lastModified":"1301903093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f28\/4d6635d25e73d66a5e000f28\/mysterious-skin-mid.jpg","studio":"Desperate Pictures","genre":"Drama","title":"Mysterious Skin","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"41932"} +{"label":"David Lee Smith","version":23,"id":"56112","lastModified":"1301901087000","name":"David Lee Smith","type":"Person","_key":"41933"} +{"label":"Music and Lyrics","description":"A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.","id":"11172","runtime":104,"imdbId":"tt0758766","trailer":"http:\/\/www.youtube.com\/watch?v=2309","version":296,"lastModified":"1301901902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc1\/4bc932c5017a3c57fe014dc1\/music-and-lyrics-mid.jpg","genre":"Comedy","title":"Music and Lyrics","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"41934"} +{"label":"Haley Bennett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ee\/4c9936d37b9aa127580001ee\/haley-bennett-profile.jpg","version":31,"id":"58754","lastModified":"1301901163000","name":"Haley Bennett","type":"Person","_key":"41935"} +{"label":"Die Wilden Kerle","description":"No overview found.","id":"11173","version":73,"lastModified":"1301904699000","title":"Die Wilden Kerle","language":"en","type":"Movie","_key":"41936"} +{"label":"Pelle erobreren","description":"No overview found.","id":"11174","runtime":157,"imdbId":"tt0093713","version":122,"lastModified":"1301905194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/350\/4d1f4b7d7b9aa1736b001350\/pelle-erobreren-mid.jpg","genre":"Drama","title":"Pelle erobreren","releaseDate":567388800000,"language":"en","type":"Movie","_key":"41937"} +{"label":"Pelle Hvenegaard","version":20,"id":"68452","lastModified":"1301901611000","name":"Pelle Hvenegaard","type":"Person","_key":"41938"} +{"label":"Erik Paaske","version":20,"id":"68454","lastModified":"1301901611000","name":"Erik Paaske","type":"Person","_key":"41939"} +{"label":"Lucky Luke","description":"No overview found.","id":"11175","runtime":92,"imdbId":"tt0102351","version":76,"lastModified":"1301904012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17b\/4c53a2af5e73d632c000017b\/lucky-luke-mid.jpg","genre":"Comedy","title":"Lucky Luke","releaseDate":678585600000,"language":"en","type":"Movie","_key":"41940"} +{"label":"Nancy Morgan","version":21,"id":"68445","lastModified":"1301901714000","name":"Nancy Morgan","type":"Person","_key":"41941"} +{"label":"Fritz Sperberg","version":20,"id":"68446","lastModified":"1301901781000","name":"Fritz Sperberg","type":"Person","_key":"41942"} +{"label":"Bo Greigh","version":20,"id":"68447","lastModified":"1301902194000","name":"Bo Greigh","type":"Person","_key":"41943"} +{"label":"The Muppet Movie","description":"Kermit the Frog is persuaded by agent Dom DeLuise to pursue a career in Hollywood. Along the way, Kermit picks up Fozzie Bear, Miss Piggy, Gonzo, and a motley crew of other Muppets with similar aspirations. Meanwhile, Kermit must elude the grasp of a frog-leg restaurant magnate.","id":"11176","runtime":97,"imdbId":"tt0079588","version":117,"lastModified":"1301903984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/089\/4bcc2ecb017a3c0f26000089\/the-muppet-movie-mid.jpg","studio":"Henson Associates (HA)","genre":"Adventure","title":"The Muppet Movie","releaseDate":298857600000,"language":"en","tagline":"More entertaining than humanly possible.","type":"Movie","_key":"41944"} +{"label":"Jim Henson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4d861ffa7b9aa10d34001142\/jim-henson-profile.jpg","version":66,"id":"55983","lastModified":"1301901324000","name":"Jim Henson","type":"Person","_key":"41945"} +{"label":"Jerry Nelson","version":34,"id":"68455","lastModified":"1301901465000","name":"Jerry Nelson","type":"Person","_key":"41946"} +{"label":"Richard Hunt","version":31,"id":"68456","lastModified":"1301901580000","name":"Richard Hunt","type":"Person","_key":"41947"} +{"label":"James Frawley","version":22,"id":"68457","lastModified":"1301901645000","name":"James Frawley","type":"Person","_key":"41948"} +{"label":"Mask","description":"A boy with a massive facial skull deformity and biker gang mother attempts to live as normal a life as possible under the circumstances.","id":"11177","runtime":120,"imdbId":"tt0089560","version":105,"lastModified":"1301903392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4bc932ca017a3c57fe014dd7\/mask-mid.jpg","genre":"Drama","title":"Mask","releaseDate":479088000000,"language":"en","type":"Movie","_key":"41949"} +{"label":"My Sassy Girl","description":"Based on a series of true stories posted by Ho-sik Kim on the Internet describing his relationship with his girlfriend. These were later transformed into a best-selling book and the movie follows the book closely. It describes the meeting of Kyun-woo (Cha) and an unnamed girl. Kyun-woo is shamed into assisting the girl because the other passengers mistakenly think she is his girlfriend.","id":"11178","runtime":123,"imdbId":"tt0293715","version":102,"lastModified":"1301903437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dec\/4bc932cd017a3c57fe014dec\/yeopgijeogin-geunyeo-mid.jpg","studio":"Cinema Service","genre":"Comedy","title":"My Sassy Girl","releaseDate":996192000000,"language":"en","type":"Movie","_key":"41950"} +{"label":"Jin-hie Han","version":20,"id":"68464","lastModified":"1301902082000","name":"Jin-hie Han","type":"Person","_key":"41951"} +{"label":"Sook-hee Hyun","version":20,"id":"68465","lastModified":"1301901724000","name":"Sook-hee Hyun","type":"Person","_key":"41952"} +{"label":"M\u00e4dchen, M\u00e4dchen 2 - Loft oder Liebe","description":"No overview found.","id":"11179","runtime":88,"imdbId":"tt0385891","version":63,"lastModified":"1301903072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cd\/4d2b388f5e73d626c40044cd\/m-dchen-m-dchen-2-loft-oder-liebe-mid.jpg","genre":"Comedy","title":"M\u00e4dchen, M\u00e4dchen 2 - Loft oder Liebe","releaseDate":1087430400000,"language":"en","type":"Movie","_key":"41953"} +{"label":"Didi - Und die Rache der Enterbten","description":"No overview found.","id":"11181","runtime":88,"imdbId":"tt0087148","trailer":"http:\/\/www.youtube.com\/watch?v=5jpELFuSuLk","version":49,"lastModified":"1301906616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/649\/4caa44495e73d643ed000649\/didi-und-die-rache-der-enterbten-mid.jpg","genre":"Comedy","title":"Didi - Und die Rache der Enterbten","releaseDate":476668800000,"language":"en","type":"Movie","_key":"41954"} +{"label":"Gerhard Wollner","version":19,"id":"68474","lastModified":"1301902082000","name":"Gerhard Wollner","type":"Person","_key":"41955"} +{"label":"Christian Rateuke","version":22,"id":"68476","lastModified":"1301902339000","name":"Christian Rateuke","type":"Person","_key":"41956"} +{"label":"In letzter Sekunde","description":"No overview found.","id":"11182","runtime":90,"imdbId":"tt1248231","version":44,"lastModified":"1301907266000","genre":"Crime","title":"In letzter Sekunde","releaseDate":1215561600000,"language":"en","type":"Movie","_key":"41957"} +{"label":"Sesede Terziyan","version":19,"id":"44530","lastModified":"1301902082000","name":"Sesede Terziyan","type":"Person","_key":"41958"} +{"label":"Nav\u00edd Akhavan","version":20,"id":"70152","lastModified":"1301901874000","name":"Nav\u00edd Akhavan","type":"Person","_key":"41959"} +{"label":"Martin Ontrop","version":19,"id":"70153","lastModified":"1301901874000","name":"Martin Ontrop","type":"Person","_key":"41960"} +{"label":"Ferhad Kaleli","version":17,"id":"70154","lastModified":"1301902257000","name":"Ferhad Kaleli","type":"Person","_key":"41961"} +{"label":"Johannes Grieser","version":19,"id":"70155","lastModified":"1301901874000","name":"Johannes Grieser","type":"Person","_key":"41962"} +{"label":"French Fried Vacation","description":"Holidaymakers arriving in a Club Med camp on the Ivory Coast are determined to forget their everyday problems and emotional disappointments. Games, competitions, outings, bathing and sunburn accompany a continual succession of casual affairs.","id":"11183","runtime":105,"imdbId":"tt0077276","version":75,"lastModified":"1301903710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e01\/4bc932ce017a3c57fe014e01\/les-bronzes-mid.jpg","studio":"Yves Rousset-Rouard","genre":"Comedy","title":"French Fried Vacation","releaseDate":278726400000,"language":"en","type":"Movie","_key":"41963"} +{"label":"Kinsey","description":"Liam Neeson stars as Alfred Kinsey, a man driven by scientific passion and personal demons to investigate the elusive mystery of human sexuality. Laura Linney garnered a Best Actress Oscar\u00ae nomination for her compelling performance as Kinsey's free-thinking wife. This provocative drama dares to lift the veil of shame from a society in which sex was hidden, knowledge was dangerous and talking about it was the ultimate taboo.","id":"11184","runtime":118,"imdbId":"tt0362269","trailer":"http:\/\/www.youtube.com\/watch?v=ppZwSABxeYE","version":190,"lastModified":"1302010725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0a\/4bc932cf017a3c57fe014e0a\/kinsey-mid.jpg","genre":"Comedy","title":"Kinsey","releaseDate":1094256000000,"language":"en","type":"Movie","_key":"41964"} +{"label":"See No Evil, Hear No Evil","description":"A murder takes place in the shop of David Lyons, a deaf man who fails to hear the gunshot being fired. Outside, blind man Wally Karue hears the shot but cannot see the perpetrator. Both are arrested, but escape to form an unlikely partnership. Being chased by both the law AND the original killers, can the pair work together to outwit them all?","id":"11185","runtime":103,"imdbId":"tt0098282","trailer":"http:\/\/www.youtube.com\/watch?v=Hg_EDUXGf-U","version":148,"lastModified":"1301906669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e13\/4bc932d4017a3c57fe014e13\/see-no-evil-hear-no-evil-mid.jpg","genre":"Action","title":"See No Evil, Hear No Evil","releaseDate":610934400000,"language":"en","type":"Movie","_key":"41965"} +{"label":"Child's Play 2","description":"Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.","id":"11186","runtime":84,"imdbId":"tt0099253","version":135,"lastModified":"1301903591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2a\/4bc932d6017a3c57fe014e2a\/child-s-play-2-mid.jpg","genre":"Drama","title":"Child's Play 2","releaseDate":658108800000,"language":"en","type":"Movie","_key":"41966"} +{"label":"John Lafia","version":29,"id":"65678","lastModified":"1301974706000","name":"John Lafia","type":"Person","_key":"41967"} +{"label":"Child's Play 3","description":"It's been eight years since the events in the second film, we now see that Andy is a teenager who has been enrolled in a military school. Play Pals Toy Company decides to re-release its Good Guys line, feeling that after all this time, the bad publicity has died down. As they re-used old materials, the spirit of Charles Lee Ray once again comes to life.","id":"11187","runtime":90,"imdbId":"tt0103956","trailer":"http:\/\/www.youtube.com\/watch?v=9X4Uq9lf1c0","version":126,"lastModified":"1301906837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4c1a58db7b9aa1158100005f\/child-s-play-3-mid.jpg","genre":"Drama","title":"Child's Play 3","releaseDate":683510400000,"language":"en","type":"Movie","_key":"41968"} +{"label":"Justin Whalin","version":25,"id":"68494","lastModified":"1301901643000","name":"Justin Whalin","type":"Person","_key":"41969"} +{"label":"Perrey Reeves","version":20,"id":"68495","lastModified":"1301901818000","name":"Perrey Reeves","type":"Person","_key":"41970"} +{"label":"Jeremy Sylvers","version":19,"id":"68496","lastModified":"1301901554000","name":"Jeremy Sylvers","type":"Person","_key":"41971"} +{"label":"Dean Jacobson","version":20,"id":"68497","lastModified":"1301902006000","name":"Dean Jacobson","type":"Person","_key":"41972"} +{"label":"Jack Bender","version":25,"id":"28976","lastModified":"1301901808000","name":"Jack Bender","type":"Person","_key":"41973"} +{"label":"Ring of the Nibelungs","description":"No overview found.","id":"11188","runtime":184,"imdbId":"tt0387541","version":140,"lastModified":"1301904402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4c7a19957b9aa176be00014b\/ring-of-the-nibelungs-mid.jpg","genre":"Adventure","title":"Ring of the Nibelungs","releaseDate":1100822400000,"language":"en","type":"Movie","_key":"41974"} +{"label":"Sean Higgs","version":35,"id":"68501","lastModified":"1301901429000","name":"Sean Higgs","type":"Person","_key":"41975"} +{"label":"Kroko","description":"No overview found.","id":"11189","runtime":92,"imdbId":"tt0404183","version":55,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f4\/4be269a4017a3c35bd0007f4\/kroko-mid.jpg","genre":"Drama","title":"Kroko","releaseDate":1064966400000,"language":"en","type":"Movie","_key":"41976"} +{"label":"Alexander Lange","version":19,"id":"68506","lastModified":"1301902082000","name":"Alexander Lange","type":"Person","_key":"41977"} +{"label":"Danilo Bauer","version":19,"id":"68507","lastModified":"1301902257000","name":"Danilo Bauer","type":"Person","_key":"41978"} +{"label":"The Return","description":"It tells the story of two Russian boys whose father suddenly returns home after a 12-year absence. He takes the boys on a holiday to a remote island on a lake that turns into a test of manhood of almost mythic proportions. It won the Golden Lion at the Venice Film Festival.","id":"11190","runtime":105,"imdbId":"tt0376968","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=qNR4ER9tC6A","version":199,"lastModified":"1301904062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e55\/4bc932dc017a3c57fe014e55\/vozvrashcheniye-mid.jpg","genre":"Adventure","title":"The Return","releaseDate":1056499200000,"language":"en","type":"Movie","_key":"41979"} +{"label":"Vladimir Garin","version":22,"id":"68515","lastModified":"1301901724000","name":"Vladimir Garin","type":"Person","_key":"41980"} +{"label":"Ivan Dobronravov","version":22,"id":"68516","lastModified":"1301901874000","name":"Ivan Dobronravov","type":"Person","_key":"41981"} +{"label":"Konstantin Lavronenko","version":28,"id":"68517","lastModified":"1301901492000","name":"Konstantin Lavronenko","type":"Person","_key":"41982"} +{"label":"Natalya Vdovina","version":26,"id":"68518","lastModified":"1301901338000","name":"Natalya Vdovina","type":"Person","_key":"41983"} +{"label":"Andrei Zvyagintsev","version":29,"id":"68519","lastModified":"1301901519000","name":"Andrei Zvyagintsev","type":"Person","_key":"41984"} +{"label":"Mystic Pizza","description":"Three teenage girls come of age while working at a pizza parlor in Mystic Connecticut.","id":"11191","runtime":104,"imdbId":"tt0095690","version":124,"lastModified":"1301903975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5a\/4bc932dd017a3c57fe014e5a\/mystic-pizza-mid.jpg","genre":"Comedy","title":"Mystic Pizza","releaseDate":593395200000,"language":"en","type":"Movie","_key":"41985"} +{"label":"William R. Moses","version":26,"id":"68527","lastModified":"1301901714000","name":"William R. Moses","type":"Person","_key":"41986"} +{"label":"Adam Storke","version":23,"id":"68528","lastModified":"1301902386000","name":"Adam Storke","type":"Person","_key":"41987"} +{"label":"Die flambierte Frau","description":"No overview found.","id":"11192","runtime":106,"imdbId":"tt0083949","version":60,"lastModified":"1301906682000","genre":"Drama","title":"Die flambierte Frau","releaseDate":424051200000,"language":"en","type":"Movie","_key":"41988"} +{"label":"Gabriele Lafari","version":20,"id":"68532","lastModified":"1301902184000","name":"Gabriele Lafari","type":"Person","_key":"41989"} +{"label":"True","description":"No overview found.","id":"11193","runtime":10,"imdbId":"tt0397693","version":131,"lastModified":"1301904885000","genre":"Drama","title":"True","releaseDate":1076025600000,"language":"en","type":"Movie","_key":"41990"} +{"label":"Melchior Beslon","version":20,"id":"68533","lastModified":"1301902148000","name":"Melchior Beslon","type":"Person","_key":"41991"} +{"label":"Touching the Void","description":"The true story of two climbers and their perilous journey up the west face of Siula Grande in the Peruvian Andes in 1985. ","id":"11194","runtime":106,"imdbId":"tt0379557","version":181,"lastModified":"1301904297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6f\/4bc932de017a3c57fe014e6f\/touching-the-void-mid.jpg","genre":"Action","title":"Touching the Void","releaseDate":1062720000000,"language":"en","type":"Movie","_key":"41992"} +{"label":"Brendan Mackey","version":20,"id":"68534","lastModified":"1301902141000","name":"Brendan Mackey","type":"Person","_key":"41993"} +{"label":"Nicholas Aaron","version":25,"id":"68535","lastModified":"1301902032000","name":"Nicholas Aaron","type":"Person","_key":"41994"} +{"label":"Richard Hawking","version":19,"id":"68536","lastModified":"1301902082000","name":"Richard Hawking","type":"Person","_key":"41995"} +{"label":"Ollie Ryall","version":19,"id":"68537","lastModified":"1301902256000","name":"Ollie Ryall","type":"Person","_key":"41996"} +{"label":"Joe Simpson","version":21,"id":"68538","lastModified":"1301902256000","name":"Joe Simpson","type":"Person","_key":"41997"} +{"label":"Simon Yates","version":19,"id":"68539","lastModified":"1301902256000","name":"Simon Yates","type":"Person","_key":"41998"} +{"label":"Der neunte Tag","description":"No overview found.","id":"11195","runtime":98,"imdbId":"tt0411702","version":63,"lastModified":"1301903870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4bc932df017a3c57fe014e74\/der-neunte-tag-mid.jpg","genre":"Drama","title":"Der neunte Tag","releaseDate":1091664000000,"language":"en","type":"Movie","_key":"41999"} +{"label":"Germain Wagner","version":20,"id":"38461","lastModified":"1301902025000","name":"Germain Wagner","type":"Person","_key":"42000"} +{"label":"Jean-Paul Raths","version":19,"id":"68544","lastModified":"1301902321000","name":"Jean-Paul Raths","type":"Person","_key":"42001"} +{"label":"Rembrandt","description":"No overview found.","id":"11196","runtime":109,"imdbId":"tt0345853","version":63,"lastModified":"1301906479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e79\/4bc932df017a3c57fe014e79\/rembrandt-mid.jpg","genre":"Comedy","title":"Rembrandt","releaseDate":1053129600000,"language":"en","type":"Movie","_key":"42002"} +{"label":"Jannik Johansen","version":22,"id":"68554","lastModified":"1301902082000","name":"Jannik Johansen","type":"Person","_key":"42003"} +{"label":"Evil","description":"Stockholm, the fifties. Though academically bright, violent pupil Erik Ponti is expelled from his state school with the headmaster\u2019s words \u201cthere\u2019s only one word for people like you \u2013 evil\u2026 what you need is a good thrashing, and more\u201d. In fact already Erik frequently receives a \u2018good\u2019 thrashing at the hands of his sadistic stepfather \u2013 so he is packed off by his mother to boardingschool","id":"11197","runtime":113,"imdbId":"tt0338309","trailer":"http:\/\/www.youtube.com\/watch?v=3tCFvaJo9aE","version":132,"lastModified":"1301905826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc932e0017a3c57fe014e82\/ondskan-mid.jpg","studio":"Moviola Film och Television AB","genre":"Drama","title":"Evil","releaseDate":1053043200000,"language":"en","tagline":"It's time to take a stand.","type":"Movie","_key":"42004"} +{"label":"Linda Zilliacus","version":22,"id":"68566","lastModified":"1301901812000","name":"Linda Zilliacus","type":"Person","_key":"42005"} +{"label":"Jesper Sal\u00e9n","version":21,"id":"68567","lastModified":"1301902256000","name":"Jesper Sal\u00e9n","type":"Person","_key":"42006"} +{"label":"City Hunter","description":"Extremely silly comedy about a self-indulgent private investigator who winds up on a cruise ship full of rich patrons, gorgeous women, murderous terrorists, and scarce food.","id":"11198","runtime":105,"imdbId":"tt0103950","trailer":"http:\/\/www.youtube.com\/watch?v=8sXG32FATOg","version":269,"lastModified":"1301903365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8b\/4bc932e0017a3c57fe014e8b\/sing-si-lip-yan-mid.png","studio":"Golden Harvest Company","genre":"Action","title":"City Hunter","releaseDate":727142400000,"language":"en","type":"Movie","_key":"42007"} +{"label":"Joey Wang","version":21,"id":"68557","lastModified":"1301901695000","name":"Joey Wang","type":"Person","_key":"42008"} +{"label":"Kumiko Goto","version":22,"id":"68558","lastModified":"1301901581000","name":"Kumiko Goto","type":"Person","_key":"42009"} +{"label":"Gary Daniels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4ca6f5845e73d643ed0000ec\/gary-daniels-profile.jpg","version":59,"id":"68559","lastModified":"1301901235000","name":"Gary Daniels","type":"Person","_key":"42010"} +{"label":"Lynne Langdon","version":21,"id":"68560","lastModified":"1301902177000","name":"Lynne Langdon","type":"Person","_key":"42011"} +{"label":"Eric Kot","version":21,"id":"68561","lastModified":"1301902364000","name":"Eric Kot","type":"Person","_key":"42012"} +{"label":"Jan Lamb","version":21,"id":"68562","lastModified":"1301902364000","name":"Jan Lamb","type":"Person","_key":"42013"} +{"label":"Carol Wan","version":21,"id":"68563","lastModified":"1301902200000","name":"Carol Wan","type":"Person","_key":"42014"} +{"label":"Wild Hogs","description":"Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.","id":"11199","runtime":100,"imdbId":"tt0486946","trailer":"http:\/\/www.youtube.com\/watch?v=zSvwmgWCJ2s","homepage":"http:\/\/video.movies.go.com\/wildhogs\/","version":245,"lastModified":"1301901682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfb\/4d6d77575e73d66b2e003cfb\/wild-hogs-mid.jpg","studio":"Wild Hogs Productions","genre":"Action","title":"Wild Hogs","releaseDate":1172880000000,"language":"en","tagline":"A lot can happen on the road to nowhere.","type":"Movie","_key":"42015"} +{"label":"Walt Becker","version":44,"id":"68573","lastModified":"1301901293000","name":"Walt Becker","type":"Person","_key":"42016"} +{"label":"Didi auf vollen Touren","description":"No overview found.","id":"11200","runtime":92,"imdbId":"tt0090945","trailer":"http:\/\/www.youtube.com\/watch?v=b7kaF2pHWZQ","version":59,"lastModified":"1301906730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74a\/4caa44435e73d643f000074a\/didi-auf-vollen-touren-mid.jpg","genre":"Comedy","title":"Didi auf vollen Touren","releaseDate":533433600000,"language":"en","type":"Movie","_key":"42017"} +{"label":"Wigbert Wicker","version":20,"id":"68575","lastModified":"1301902382000","name":"Wigbert Wicker","type":"Person","_key":"42018"} +{"label":"Verliebte Jungs","description":"No overview found.","id":"11201","runtime":90,"imdbId":"tt0284620","version":40,"lastModified":"1301904265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4bd7fede017a3c1bff00006d\/verliebte-jungs-mid.jpg","genre":"Comedy","title":"Verliebte Jungs","releaseDate":989452800000,"language":"en","type":"Movie","_key":"42019"} +{"label":"Christoph Schrewe","version":24,"id":"68580","lastModified":"1301902332000","name":"Christoph Schrewe","type":"Person","_key":"42020"} +{"label":"Patton","description":"\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.","id":"11202","runtime":170,"imdbId":"tt0066206","version":283,"lastModified":"1301902523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eba\/4bc932e9017a3c57fe014eba\/patton-mid.jpg","genre":"Action","title":"Patton","releaseDate":2937600000,"language":"en","type":"Movie","_key":"42021"} +{"label":"Michael Strong","version":20,"id":"15650","lastModified":"1301901381000","name":"Michael Strong","type":"Person","_key":"42022"} +{"label":"Die Sturmflut","description":"No overview found.","id":"11203","runtime":182,"imdbId":"tt0461708","version":99,"lastModified":"1301904894000","genre":"Disaster","title":"Die Sturmflut","releaseDate":1140307200000,"language":"en","type":"Movie","_key":"42023"} +{"label":"Dresden","description":"At a Dresden hospital in 1945, nurse Anna Mauth (Felicitas Woll) cares for badly injured British pilot Robert Newman (John Light), whom Anna believes to be a German deserter. As Allied forces close in, Anna grows close to Robert despite her engagement to Dr. Alexander Wenninger (Benjamin Sadler). The gripping historical romance won a 2006 German Television Award.","id":"11204","runtime":180,"imdbId":"tt0461658","version":267,"lastModified":"1301903241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/283\/4ca7ad405e73d643ee000283\/dresden-mid.jpg","genre":"Drama","title":"Dresden","releaseDate":1141516800000,"language":"en","type":"Movie","_key":"42024"} +{"label":"Wheels on Meals","description":"Cousins Thomas and David, owners of a mobile restaurant, team up with their friend Moby, a bumbling private detective, to save the beautiful Sylvia, a pickpocket.","id":"11205","runtime":108,"imdbId":"tt0087578","version":87,"lastModified":"1301902102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edd\/4bc932ef017a3c57fe014edd\/11205-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Wheels on Meals","releaseDate":461548800000,"language":"en","tagline":"Not since Don Quixote has Spain had so much fun!","type":"Movie","_key":"42025"} +{"label":"Wait Until Dark","description":"A recently blinded woman is terrorized by a trio of thugs while they search for a heroin stuffed doll they believe is in her apartment.","id":"11206","runtime":108,"imdbId":"tt0062467","version":196,"lastModified":"1301902410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eea\/4bc932f0017a3c57fe014eea\/wait-until-dark-mid.jpg","genre":"Drama","title":"Wait Until Dark","releaseDate":-68947200000,"language":"en","type":"Movie","_key":"42026"} +{"label":"Efrem Zimbalist Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15a\/4bde7885017a3c35bd00015a\/efrem-zimbalist-jr-profile.jpg","version":32,"id":"34981","lastModified":"1301901668000","name":"Efrem Zimbalist Jr.","type":"Person","_key":"42027"} +{"label":"S\u00fcperseks","description":"No overview found.","id":"11207","runtime":95,"imdbId":"tt0384576","version":41,"lastModified":"1301903850000","genre":"Comedy","title":"S\u00fcperseks","releaseDate":1093305600000,"language":"en","type":"Movie","_key":"42028"} +{"label":"Meral Perin","version":19,"id":"45731","lastModified":"1301901724000","name":"Meral Perin","type":"Person","_key":"42029"} +{"label":"Jenny Ostermann","version":19,"id":"68594","lastModified":"1301902256000","name":"Jenny Ostermann","type":"Person","_key":"42030"} +{"label":"Torsten Wacker","version":19,"id":"68595","lastModified":"1301901724000","name":"Torsten Wacker","type":"Person","_key":"42031"} +{"label":"Wicker Park","description":"Matthew, a young advertising executive in Chicago, puts his life and a business trip to China on hold when he thinks he sees Lisa, the love of his life who walked out on him without a word two years earlier, walking out of a restaurant one day.","id":"11208","runtime":114,"imdbId":"tt0324554","trailer":"http:\/\/www.youtube.com\/watch?v=VGJYyQk_3PM","version":184,"lastModified":"1301902035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efb\/4bc932f2017a3c57fe014efb\/wicker-park-mid.jpg","genre":"Drama","title":"Wicker Park","releaseDate":1088899200000,"language":"en","type":"Movie","_key":"42032"} +{"label":"The Alamo","description":"No overview found.","id":"11209","runtime":167,"imdbId":"tt0053580","version":135,"lastModified":"1301903697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f04\/4bc932f3017a3c57fe014f04\/the-alamo-mid.jpg","genre":"Action","title":"The Alamo","releaseDate":-289958400000,"language":"en","type":"Movie","_key":"42033"} +{"label":"Robinson Crusoe","description":"Robinson Crusoe flees Britain on a ship after killing his friend over the love of Mary. A fierce ocean storm wrecks his ship and leaves him stranded by himself on an uncharted island. Left to fend for himself, Crusoe seeks out a tentative survival on the island, until he meets Friday, a tribesman whom he saves from being sacrificed. Initially, Crusoe is thrilled to finally have a friend, but he has to defend himself against the tribe who uses the island to sacrifice tribesman to their gods. Duri","id":"11210","runtime":105,"imdbId":"tt0117496","version":161,"lastModified":"1301903212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/252\/4c18492d7b9aa108d7000252\/robinson-crusoe-mid.jpg","genre":"Action","title":"Robinson Crusoe","releaseDate":866073600000,"language":"en","type":"Movie","_key":"42034"} +{"label":"William Takaku","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/219\/4c184a427b9aa108d8000219\/william-takaku-profile.jpg","biography":"William Takaku is a Papua New Guinean actor, and the former director of the National Theatre Company in Papua New Guinea. He also wrote and directed the theatrical television series Warriors in Transit. As an actor, he starred in the Franco-Australian television series The Violent Earth in 1998, and starred as Man Friday in the 1997 American film Robinson Crusoe.","version":20,"id":"68604","lastModified":"1301901508000","name":"William Takaku","type":"Person","_key":"42035"} +{"label":"Bring It On: All or Nothing","description":"A transfer student at a rough high school tries joining the cheer-leading squad and finds that she not only has to face off against the head cheerleader, but also against her former school in preparation for a cheer-off competition.","id":"11211","runtime":99,"imdbId":"tt0490822","homepage":"http:\/\/www.bringitonmovie.com\/","version":174,"lastModified":"1301902536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f11\/4bc932f6017a3c57fe014f11\/bring-it-on-all-or-nothing-mid.jpg","genre":"Comedy","title":"Bring It On: All or Nothing","releaseDate":1154995200000,"language":"en","type":"Movie","_key":"42036"} +{"label":"Solange Knowles","version":24,"id":"68609","lastModified":"1301901306000","name":"Solange Knowles","type":"Person","_key":"42037"} +{"label":"Gus Carr","version":27,"id":"68610","lastModified":"1301901306000","name":"Gus Carr","type":"Person","_key":"42038"} +{"label":"Marcy Rylan","version":22,"id":"68611","lastModified":"1301901536000","name":"Marcy Rylan","type":"Person","_key":"42039"} +{"label":"Baby's Day Out","description":"Baby Bink couldn't ask for more; he has adoring (if somewhat sickly-sweet) parents, he lives in a huge mansion, and he's just about to appear in the social pages of the paper. Unfortunately, not everyone in the world is as nice as Baby Bink's parents; especially the three enterprising kidnapers who pretend to be photographers from the newspaper. Successfully kidnaping Baby Bink, they have a harder time keeping hold of the rascal, who not only keeps one step ahead of them, but seems to be more th","id":"11212","runtime":99,"imdbId":"tt0109190","trailer":"http:\/\/www.youtube.com\/watch?v=pzow5wUp7hY","version":155,"lastModified":"1301902388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1a\/4bc932f7017a3c57fe014f1a\/baby-s-day-out-mid.jpg","genre":"Action","title":"Baby's Day Out","releaseDate":773020800000,"language":"en","tagline":"No bib. No crib. No problem.","type":"Movie","_key":"42040"} +{"label":"Patrick Read Johnson","version":28,"id":"56059","lastModified":"1301901346000","name":"Patrick Read Johnson","type":"Person","_key":"42041"} +{"label":"Die Blume der Hausfrau","description":"No overview found.","id":"11213","runtime":92,"imdbId":"tt0166106","version":39,"lastModified":"1301904996000","genre":"Documentary","title":"Die Blume der Hausfrau","releaseDate":915148800000,"language":"en","type":"Movie","_key":"42042"} +{"label":"Angelo Ditta","version":20,"id":"68617","lastModified":"1301902176000","name":"Angelo Ditta","type":"Person","_key":"42043"} +{"label":"Maurizio Marino","version":20,"id":"68618","lastModified":"1301902364000","name":"Maurizio Marino","type":"Person","_key":"42044"} +{"label":"Massimo Santagatti","version":20,"id":"68619","lastModified":"1301901811000","name":"Massimo Santagatti","type":"Person","_key":"42045"} +{"label":"Salvatore Trovato","version":20,"id":"68620","lastModified":"1301902380000","name":"Salvatore Trovato","type":"Person","_key":"42046"} +{"label":"Steffen Widule","version":20,"id":"68621","lastModified":"1301902362000","name":"Steffen Widule","type":"Person","_key":"42047"} +{"label":"We Feed the World - Essen Global","description":"A documentary that exposes the shocking truths behind industrial food production and food wastage, focusing on fishing, livestock and crop farming. A must-see for anyone interested in the true cost of the food on their plate.","id":"11214","runtime":96,"imdbId":"tt0478324","homepage":"http:\/\/www.we-feed-the-world.at\/index.htm","version":57,"lastModified":"1301903873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f23\/4bc932f8017a3c57fe014f23\/we-feed-the-world-essen-global-mid.jpg","genre":"Documentary","title":"We Feed the World - Essen Global","releaseDate":1126310400000,"language":"en","type":"Movie","_key":"42048"} +{"label":"Jean Ziegler","version":20,"id":"68623","lastModified":"1301902148000","name":"Jean Ziegler","type":"Person","_key":"42049"} +{"label":"Peter Brabeck","version":20,"id":"68624","lastModified":"1301901952000","name":"Peter Brabeck","type":"Person","_key":"42050"} +{"label":"Karl Otrok","version":20,"id":"68625","lastModified":"1301902148000","name":"Karl Otrok","type":"Person","_key":"42051"} +{"label":"Erwin Wagenhofer","version":20,"id":"68626","lastModified":"1301902332000","name":"Erwin Wagenhofer","type":"Person","_key":"42052"} +{"label":"Baby Boom","description":"The life of super-yuppie J.C. is thrown into turmoil when she inherits a baby from a distant relative.","id":"11215","runtime":110,"imdbId":"tt0092605","version":167,"lastModified":"1301902102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f34\/4bc932f9017a3c57fe014f34\/baby-boom-mid.jpg","genre":"Comedy","title":"Baby Boom","releaseDate":558835200000,"language":"en","tagline":"J.C. Wiatt, corporate powerhouse, just received an inheritance. And it sucks.","type":"Movie","_key":"42053"} +{"label":"Kristina Kennedy","version":20,"id":"68631","lastModified":"1301901695000","name":"Kristina Kennedy","type":"Person","_key":"42054"} +{"label":"Cinema Paradiso","description":"A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.","id":"11216","runtime":155,"imdbId":"tt0095765","trailer":"http:\/\/www.youtube.com\/watch?v=921","version":122,"lastModified":"1301902328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f45\/4bc932fa017a3c57fe014f45\/nuovo-cinema-paradiso-mid.jpg","genre":"Drama","title":"Cinema Paradiso","releaseDate":595728000000,"language":"en","type":"Movie","_key":"42055"} +{"label":"Salvatore Cascio","version":19,"id":"68635","lastModified":"1301903114000","name":"Salvatore Cascio","type":"Person","_key":"42056"} +{"label":"Club Dread","description":"When a serial killer interrupts the fun at the swanky Coconut Pete's Coconut Beach Resort -- a hedonistic island paradise for swingers --- it's up to the club's staff to stop the violence ... or at least hide it!","id":"11217","runtime":104,"imdbId":"tt0331953","trailer":"http:\/\/www.youtube.com\/watch?v=NAsNBX3cTGY","version":442,"lastModified":"1301903281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5c\/4bc93302017a3c57fe014f5c\/club-dread-mid.jpg","studio":"Broken Lizard Industries","genre":"Comedy","title":"Club Dread","releaseDate":1076889600000,"language":"en","tagline":"A vacation to die for","type":"Movie","_key":"42057"} +{"label":"Tanja Reichert","version":19,"id":"68634","lastModified":"1301902082000","name":"Tanja Reichert","type":"Person","_key":"42058"} +{"label":"Rhythm is it!","description":"RHYTHM IS IT! records the first big educational project of the Berlin Philharmonic Orchestra under Sir Simon Rattle. The orchestra ventured out of the ivory tower of high culture into boroughs of low life for the sake of 250 youngsters. They had been strangers to classical music, but after arduous but thrilling preparation they danced to Stravinsky's 'Le Sacre du Printemps' ('The Rite of Spring'). Recorded with a breathtaking fidelity of sound, this film from Thomas Grube and Enrique S\u00e1nchez Lan","id":"11218","runtime":100,"imdbId":"tt0410520","version":85,"lastModified":"1301905000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4cd4678e5e73d676ce000039\/rhythm-is-it-mid.jpg","genre":"Documentary","title":"Rhythm is it!","releaseDate":1086998400000,"language":"en","type":"Movie","_key":"42059"} +{"label":"Royston Maldoom","version":20,"id":"68638","lastModified":"1301902332000","name":"Royston Maldoom","type":"Person","_key":"42060"} +{"label":"Susannah Broughton","version":20,"id":"68639","lastModified":"1301901952000","name":"Susannah Broughton","type":"Person","_key":"42061"} +{"label":"Marie Theinert","version":20,"id":"68640","lastModified":"1301901952000","name":"Marie Theinert","type":"Person","_key":"42062"} +{"label":"Enrique S\u00e1nchez Lansch","version":20,"id":"68641","lastModified":"1301902372000","name":"Enrique S\u00e1nchez Lansch","type":"Person","_key":"42063"} +{"label":"The Trouble with Harry","description":"Trouble erupts in a small, quiet New England town when a man's body is found in the woods. The problem is that almost everyone in town thinks that they had something to do with his death.","id":"11219","runtime":99,"imdbId":"tt0048750","version":154,"lastModified":"1301902506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f69\/4bc93303017a3c57fe014f69\/the-trouble-with-harry-mid.jpg","genre":"Comedy","title":"The Trouble with Harry","releaseDate":-449625600000,"language":"en","type":"Movie","_key":"42064"} +{"label":"Mildred Dunnock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9dd\/4cc195ea7b9aa138d60019dd\/mildred-dunnock-profile.jpg","version":34,"id":"68642","lastModified":"1301901713000","name":"Mildred Dunnock","type":"Person","_key":"42065"} +{"label":"Jerry Mathers","version":23,"id":"68643","lastModified":"1301902380000","name":"Jerry Mathers","type":"Person","_key":"42066"} +{"label":"Fallen Angels","description":"A disillusioned killer embarks on his last hit but first he has to overcome his affections for his cool, detached partner. Thinking it's dangerous and improper to become involved with a colleague he sets out to find a surrogate for his affections. Against the sordid and surreal urban nightscape (set in contemporary Hong Kong), he crosses path with a strange drifter looking for her mysterious ex-boyfriend and an amusing mute trying to get the world's attention in his own unconventional ways.","id":"11220","runtime":90,"imdbId":"tt0112913","version":192,"lastModified":"1301903503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f85\/4bc93305017a3c57fe014f85\/11220-mid.jpg","genre":"Drama","title":"Fallen Angels","releaseDate":810345600000,"language":"en","type":"Movie","_key":"42067"} +{"label":"Best Defense","description":"Wylie is a lazy engineer. Landry is a Sergeant specialising in Armour. They have never met but their lives become entangled when Landry must take the tank Wylie designed into combat. Wylie is waiting for his employer to go out of business when he meets another engineer who gives him a disk with the plans for a system that will save his employer. The other engineer is dead moments later leaving Wylie with the disk and credit for the design. Suddenly Wylie is no longer a hack, but the saviour of h","id":"11221","runtime":94,"imdbId":"tt0086955","version":152,"lastModified":"1301905662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d2\/4d8deba85e73d65f110008d2\/best-defense-mid.jpg","genre":"Action","title":"Best Defense","releaseDate":459129600000,"language":"en","type":"Movie","_key":"42068"} +{"label":"The American Friend","description":"Tom Ripley, who deals in forged art, suggests a picture framer he knows would make a good hit man.","id":"11222","runtime":127,"imdbId":"tt0075675","version":92,"lastModified":"1301902635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4bc93309017a3c57fe014f93\/l-ami-americain-mid.jpg","genre":"Drama","title":"The American Friend","releaseDate":235958400000,"language":"en","type":"Movie","_key":"42069"} +{"label":"Sandy Whitelaw","version":22,"id":"122492","lastModified":"1301903075000","name":"Sandy Whitelaw","type":"Person","_key":"42070"} +{"label":"Coma","description":"A young woman doctor discovers something sinister going on in her hospital. Relatively healthy patients are having 'complications' during simple operations and ending up in comas. The patients are then shipped off to an institute that looks after them. The young doctor suspects there is more to this than meets the eye.","id":"11223","runtime":113,"imdbId":"tt0077355","version":131,"lastModified":"1301902724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bda\/4c0d1c4b017a3c7e92000bda\/coma-mid.jpg","genre":"Drama","title":"Coma","releaseDate":252892800000,"language":"en","type":"Movie","_key":"42071"} +{"label":"Cinderella","description":"When Cinderella's cruel stepmother prevents her from attending the Royal Ball, she gets some unexpected help from the lovable mice Gus and Jaq, and from her Fairy Godmother.","id":"11224","runtime":72,"imdbId":"tt0042332","trailer":"http:\/\/www.youtube.com\/watch?v=5TdZQDbRNKU","version":160,"lastModified":"1302036325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa8\/4bc9330b017a3c57fe014fa8\/cinderella-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"Cinderella","releaseDate":-627350400000,"language":"en","tagline":"The greatest love story ever told.","type":"Movie","_key":"42072"} +{"label":"Ilene Woods","version":25,"id":"68652","lastModified":"1302036324000","name":"Ilene Woods","type":"Person","_key":"42073"} +{"label":"Claire Du Brey","version":29,"id":"68653","lastModified":"1302036324000","name":"Claire Du Brey","type":"Person","_key":"42074"} +{"label":"Into Great Silence","description":"No overview found.","id":"11225","runtime":162,"imdbId":"tt0478160","homepage":"http:\/\/www.diegrossestille.de\/english\/","version":223,"lastModified":"1301903241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbf\/4bc9330d017a3c57fe014fbf\/die-groe-stille-mid.jpg","genre":"Documentary","title":"Into Great Silence","releaseDate":1125792000000,"language":"en","type":"Movie","_key":"42075"} +{"label":"Philip Gr\u00f6ning","version":37,"id":"68656","lastModified":"1301901578000","name":"Philip Gr\u00f6ning","type":"Person","_key":"42076"} +{"label":"Nude per l'assassino","description":"No overview found.","id":"11226","runtime":98,"imdbId":"tt0073470","version":100,"lastModified":"1301906156000","genre":"Thriller","title":"Nude per l'assassino","releaseDate":178070400000,"language":"en","type":"Movie","_key":"42077"} +{"label":"Andrea Bianchi","version":28,"id":"68662","lastModified":"1301902332000","name":"Andrea Bianchi","type":"Person","_key":"42078"} +{"label":"Franco Diogene","version":19,"id":"100937","lastModified":"1301903063000","name":"Franco Diogene","type":"Person","_key":"42079"} +{"label":"Solvi Stubing","version":22,"id":"68667","lastModified":"1301902194000","name":"Solvi Stubing","type":"Person","_key":"42080"} +{"label":"Erna Sch\u00fcrer","version":20,"id":"68668","lastModified":"1301902332000","name":"Erna Sch\u00fcrer","type":"Person","_key":"42081"} +{"label":"Amanda","version":18,"id":"100938","lastModified":"1301902990000","name":"Amanda","type":"Person","_key":"42082"} +{"label":"Lucio Como","version":17,"id":"100939","lastModified":"1301902990000","name":"Lucio Como","type":"Person","_key":"42083"} +{"label":"Claudio Pellegrini","version":20,"id":"68665","lastModified":"1301902332000","name":"Claudio Pellegrini","type":"Person","_key":"42084"} +{"label":"Angel-A","description":"A beautiful and mysterious woman helps an inept scam artist get his game together...but is their meeting purely coincidence?","id":"11227","runtime":90,"imdbId":"tt0473753","homepage":"http:\/\/www.angela-lefilm.com\/","version":172,"lastModified":"1301902409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4bc93312017a3c57fe014fdd\/angel-a-mid.jpg","genre":"Comedy","title":"Angel-A","releaseDate":1135123200000,"language":"en","type":"Movie","_key":"42085"} +{"label":"Daylight","description":"When an explosion seals off a commuter tunnel, the survivors are faced with toxic fumes, fires and the impending collapse of the tunnel. Their only hope lies in the hands of Kit Latura (Stallone), a former Emergency Medical Services chief who is haunted by a tragic past. As the walls cave in and the tunnel fills up with water, Latura risks his own life to save others and prevent further disaster.","id":"11228","runtime":115,"imdbId":"tt0116040","trailer":"http:\/\/www.youtube.com\/watch?v=vrA4p45JOkw","version":191,"lastModified":"1301906478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/feb\/4bc93313017a3c57fe014feb\/daylight-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Daylight","releaseDate":849744000000,"language":"en","type":"Movie","_key":"42086"} +{"label":"Vanessa Bell Calloway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/928\/4d8a88f97b9aa13ae7000928\/vanessa-bell-calloway-profile.jpg","version":24,"id":"100653","lastModified":"1301902185000","name":"Vanessa Bell Calloway","type":"Person","_key":"42087"} +{"label":"Freeway","description":"A twisted take on 'Little Red Riding Hood' with a teenage juvenile delinquent on the run from a social worker in an attempt to get to her grandmother's house - while also being hounded by a charming, but sadistic, serial killer\/pedophile.","id":"11229","runtime":110,"imdbId":"tt0116361","trailer":"http:\/\/www.youtube.com\/watch?v=Y60Vh0YhyEk","version":166,"lastModified":"1301420636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff4\/4bc93314017a3c57fe014ff4\/freeway-mid.jpg","genre":"Comedy","title":"Freeway","releaseDate":840758400000,"language":"en","tagline":"Her life is no fairy tale.","type":"Movie","_key":"42088"} +{"label":"Wolfgang Bodison","version":23,"id":"68672","lastModified":"1301901373000","name":"Wolfgang Bodison","type":"Person","_key":"42089"} +{"label":"Drunken Master","description":"Jackie Chan stars as Wong Fei-Hung, whose mischievous antics land him in hot water. Having tolerated enough of his son's mishaps, Fei-Hung's dad enlists his sadistic uncle, who specializes in drunken-style kung fu, to teach the lad some discipline. This Hong Kong martial-arts comedy helped establish the slapstick fighting style that would become Chan's trademark.","id":"11230","runtime":146,"imdbId":"tt0080179","version":192,"lastModified":"1301903939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/213\/4ca2a7747b9aa168e0000213\/jui-kuen-mid.jpg","genre":"Action","title":"Drunken Master","releaseDate":276393600000,"language":"en","type":"Movie","_key":"42090"} +{"label":"Siu Tien Yuen","version":41,"id":"68676","lastModified":"1301901452000","name":"Siu Tien Yuen","type":"Person","_key":"42091"} +{"label":"Jang Lee Hwang","version":38,"id":"68677","lastModified":"1301901708000","name":"Jang Lee Hwang","type":"Person","_key":"42092"} +{"label":"The Next Karate Kid","description":"Since her parents death, raised by her grandmother and harassed at school, 17-year-old Julie Pierce (Hilary Swank, BOYS DON'T CRY) is very angry. Grandma can no longer handle her, so she convinces an old friend, Mr. Miyagi (Pat Morita), to care for the girl. He consents, and through the spirituality of karate, unravels the world as not hostile, but as fertile and welcoming.","id":"11231","runtime":107,"imdbId":"tt0110657","version":139,"lastModified":"1301902066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/012\/4bc93319017a3c57fe015012\/the-next-karate-kid-mid.jpg","genre":"Action","title":"The Next Karate Kid","releaseDate":776649600000,"language":"en","type":"Movie","_key":"42093"} +{"label":"Kate & Leopold","description":"When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.","id":"11232","runtime":118,"imdbId":"tt0035423","version":152,"lastModified":"1301906510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4bc9331b017a3c57fe01502c\/kate-leopold-mid.jpg","genre":"Comedy","title":"Kate & Leopold","releaseDate":1009238400000,"language":"en","tagline":"If they lived in the same century they'd be perfect for each other.","type":"Movie","_key":"42094"} +{"label":"Animals Are Beautiful People","description":"Hilarious documentary on the wildlife of the Namib Desert.","id":"11233","runtime":92,"imdbId":"tt0071143","trailer":"http:\/\/www.youtube.com\/watch?v=AVVLsJU4_DE","version":119,"lastModified":"1301904675000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/031\/4bc9331b017a3c57fe015031\/animals-are-beautiful-people-mid.jpg","genre":"Documentary","title":"Animals Are Beautiful People","releaseDate":166406400000,"language":"en","type":"Movie","_key":"42095"} +{"label":"Paddy O'Byrne","version":20,"id":"68679","lastModified":"1301902148000","name":"Paddy O'Byrne","type":"Person","_key":"42096"} +{"label":"The Omega Man","description":"Robert Neville, a doctor, due to an experimental vaccine, is the only survivor of an apocalyptic war waged with biological weapons. The plague caused by the war has killed everyone else except for a few hundred deformed, nocturnal people calling themselves \"The Family\". The plague has caused them to become sensitive to light, as well as homicidally psychotic.","id":"11234","runtime":98,"imdbId":"tt0067525","trailer":"http:\/\/www.youtube.com\/watch?v=p0y4V-0xsME","version":191,"lastModified":"1301903522000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4bc9331c017a3c57fe015042\/the-omega-man-mid.jpg","genre":"Action","title":"The Omega Man","releaseDate":49852800000,"language":"en","type":"Movie","_key":"42097"} +{"label":"Paul Koslo","version":34,"id":"68681","lastModified":"1301901650000","name":"Paul Koslo","type":"Person","_key":"42098"} +{"label":"Boris Sagal","version":26,"id":"68682","lastModified":"1301901491000","name":"Boris Sagal","type":"Person","_key":"42099"} +{"label":"Local Hero","description":"An American oil company sends a man to Scotland to buy up an entire village where they want to build a refinery. But things don't go as expected.","id":"11235","runtime":111,"imdbId":"tt0085859","version":121,"lastModified":"1301903504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/050\/4bc9331e017a3c57fe015050\/local-hero-mid.jpg","genre":"Comedy","title":"Local Hero","releaseDate":414288000000,"language":"en","type":"Movie","_key":"42100"} +{"label":"Fulton Mackay","version":26,"id":"68686","lastModified":"1301901628000","name":"Fulton Mackay","type":"Person","_key":"42101"} +{"label":"Denis Lawson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/278\/4bd1ddf1017a3c63ef000278\/denis-lawson-profile.jpg","version":23,"id":"47698","lastModified":"1301901815000","name":"Denis Lawson","type":"Person","_key":"42102"} +{"label":"Norman Chancer","version":16,"id":"116123","lastModified":"1301902467000","name":"Norman Chancer","type":"Person","_key":"42103"} +{"label":"Jennifer Black","version":16,"id":"116125","lastModified":"1301902894000","name":"Jennifer Black","type":"Person","_key":"42104"} +{"label":"Christopher Rozycki","version":16,"id":"116126","lastModified":"1301902894000","name":"Christopher Rozycki","type":"Person","_key":"42105"} +{"label":"Gyearbuor Asante","version":16,"id":"116127","lastModified":"1301902467000","name":"Gyearbuor Asante","type":"Person","_key":"42106"} +{"label":"John M. Jackson","version":21,"id":"116128","lastModified":"1301902473000","name":"John M. Jackson","type":"Person","_key":"42107"} +{"label":"Dan Ammerman","version":16,"id":"116129","lastModified":"1301902467000","name":"Dan Ammerman","type":"Person","_key":"42108"} +{"label":"Tam Dean Burn","version":16,"id":"116130","lastModified":"1301902894000","name":"Tam Dean Burn","type":"Person","_key":"42109"} +{"label":"John Gordon Sinclair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/301\/4bd1dc36017a3c63f5000301\/john-gordon-sinclair-profile.jpg","version":21,"id":"97884","lastModified":"1301902536000","name":"John Gordon Sinclair","type":"Person","_key":"42110"} +{"label":"Rikki Fulton","version":19,"id":"105964","lastModified":"1301902490000","name":"Rikki Fulton","type":"Person","_key":"42111"} +{"label":"Bill Forsyth","version":25,"id":"68687","lastModified":"1301901850000","name":"Bill Forsyth","type":"Person","_key":"42112"} +{"label":"The Secret Garden","description":"A young British girl born and reared in India loses her neglectful parents in an earthquake. She is returned to England to live at her uncle's castle. Her uncle is very distant due to the loss of his wife ten years before. Neglected once again, she begins exploring the estate and discovers a garden that has been locked and neglected. Aided by one of the servants' boys, she begins restoring the garden, and eventually discovers some other secrets of the manor.","id":"11236","runtime":102,"imdbId":"tt0108071","version":130,"lastModified":"1301902099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16b\/4d38b14b7b9aa1614b00016b\/the-secret-garden-mid.jpg","genre":"Drama","title":"The Secret Garden","releaseDate":745200000000,"language":"en","tagline":"The timeless tale of a special place where magic, hope and love grow.","type":"Movie","_key":"42113"} +{"label":"Heydon Prowse","version":21,"id":"68689","lastModified":"1301901611000","name":"Heydon Prowse","type":"Person","_key":"42114"} +{"label":"Anacondas: The Hunt for the Blood Orchid","description":"The blood orchid - A rare flower that holds the secret of eternal life and a fortune to the pharmaceutical company that finds it. Led by a two-fisted soldier of fortune, a scientific expedition is sent deep into the jungles of Borneo to locate and bring back samples of the legendary plant. Battling their way upriver, the explorers brave poisonous insects, ferocious crocodiles and savage headhunters, unaware they're being stalked by an even greater danger: a nest of giant anacondas, voracious, fi","id":"11237","runtime":97,"imdbId":"tt0366174","version":143,"lastModified":"1301902138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/062\/4bc93323017a3c57fe015062\/anacondas-the-hunt-for-the-blood-orchid-mid.jpg","genre":"Action","title":"Anacondas: The Hunt for the Blood Orchid","releaseDate":1093392000000,"language":"en","type":"Movie","_key":"42115"} +{"label":"Aladdin and the King of Thieves","description":"At long last, Aladdin is about to marry the Princess Jasmine. Despite the presence and encouragement of his friends Genie, Carpet, and Abu, he is fearful and anxious. He is most worried as to what kind of father he will be, having never known his own. But when the 40 Thieves disrupt the wedding trying to steal a magical oracular talisman, Aladdin is drawn into a dangerous quest to stop the thieves.","id":"11238","runtime":80,"imdbId":"tt0115491","version":104,"lastModified":"1301902634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4bc93325017a3c57fe01506b\/aladdin-and-the-king-of-thieves-mid.jpg","genre":"Animation","title":"Aladdin and the King of Thieves","releaseDate":839894400000,"language":"en","type":"Movie","_key":"42116"} +{"label":"Shall we dansu?","description":"A bored Japanese accountant sees a beautiful woman in the window of a ballroom dance studio. He secretly starts taking dancing lessons to be near her, and then over time discovers how much he loves ballroom dancing. His wife, meanwhile, has hired a private detective to find out why he has started coming home late smelling of perfume.","id":"11239","runtime":136,"imdbId":"tt0117615","version":82,"lastModified":"1301906480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4d339b977b9aa17b3700731d\/shall-we-dansu-mid.jpg","genre":"Comedy","title":"Shall we dansu?","releaseDate":868579200000,"language":"en","type":"Movie","_key":"42117"} +{"label":"Tamiyo Kusakari","version":19,"id":"68703","lastModified":"1301902082000","name":"Tamiyo Kusakari","type":"Person","_key":"42118"} +{"label":"Naoto Takenaka","version":45,"id":"68704","lastModified":"1301901466000","name":"Naoto Takenaka","type":"Person","_key":"42119"} +{"label":"Eri Watanabe","version":17,"id":"68705","lastModified":"1301901874000","name":"Eri Watanabe","type":"Person","_key":"42120"} +{"label":"Yu Tokui","version":20,"id":"68706","lastModified":"1301902256000","name":"Yu Tokui","type":"Person","_key":"42121"} +{"label":"Masayuki Suo","version":22,"id":"68707","lastModified":"1301901578000","name":"Masayuki Suo","type":"Person","_key":"42122"} +{"label":"My Beautiful Laundrette","description":"MY BEAUTIFUL LAUNDRETTE is a highly acclaimed and beautifully rendered portrait of two boyhood friends struggling to survive in racially tense Thatcher-era Britain. Omar, a homosexual Pakistani boy living in London with his alcoholic father, lifts a chunk of drug money from another Pakistani and, with his school chum Johnny, decides to renovate a grungy laundrette.","id":"11240","runtime":97,"imdbId":"tt0091578","trailer":"http:\/\/www.youtube.com\/watch?v=OBnb5lwqGYc","version":135,"lastModified":"1301903037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/074\/4bc93325017a3c57fe015074\/my-beautiful-laundrette-mid.jpg","studio":"Channel Four Films","genre":"Drama","title":"My Beautiful Laundrette","releaseDate":494899200000,"language":"en","type":"Movie","_key":"42123"} +{"label":"Gordon Warnecke","version":19,"id":"68718","lastModified":"1301902256000","name":"Gordon Warnecke","type":"Person","_key":"42124"} +{"label":"Derrick Branche","version":19,"id":"68719","lastModified":"1301902256000","name":"Derrick Branche","type":"Person","_key":"42125"} +{"label":"Schatten der Angst","description":"No overview found.","id":"11242","runtime":0,"version":12,"lastModified":"1300979225000","title":"Schatten der Angst","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"42126"} +{"label":"The Care Bears Movie","description":"The Care Bears have their work cut out for them, because Nicolas, a lonely magician's assistant, is about to fall under the evil influence of a bad spirit who lives in an ancient magic book -- it seems Nicolas will do just about anything for friends. Aside from Nicolas, Kim and Jason are in trouble because they are starting not to trust people after suffering many disappointments.","id":"11243","runtime":77,"imdbId":"tt0088885","version":472,"lastModified":"1301904139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3b\/4d387e5a7b9aa12ef5000e3b\/the-care-bears-movie-mid.jpg","genre":"Adventure","title":"The Care Bears Movie","releaseDate":480384000000,"language":"en","type":"Movie","_key":"42127"} +{"label":"Sunny Besen Thrasher","version":19,"id":"68727","lastModified":"1301901611000","name":"Sunny Besen Thrasher","type":"Person","_key":"42128"} +{"label":"Eva Almos","version":21,"id":"68728","lastModified":"1301902055000","name":"Eva Almos","type":"Person","_key":"42129"} +{"label":"Patricia Black","version":19,"id":"68729","lastModified":"1301902256000","name":"Patricia Black","type":"Person","_key":"42130"} +{"label":"Melleny Brown","version":19,"id":"68730","lastModified":"1301902256000","name":"Melleny Brown","type":"Person","_key":"42131"} +{"label":"Bob Dermer","version":22,"id":"68731","lastModified":"1301902389000","name":"Bob Dermer","type":"Person","_key":"42132"} +{"label":"Arna Selznick","version":19,"id":"68732","lastModified":"1301901611000","name":"Arna Selznick","type":"Person","_key":"42133"} +{"label":"The Meteor Man","description":"One night Jefferson Reed gets hit in the chest by a souped-up chunk of meteor. So he can fly, but he's scared of heights. He can master the information in any book ... for about fifteen minutes. Now his friends and family want him to protect their community from the dreaded Golden Lords.","id":"11244","runtime":100,"imdbId":"tt0107563","version":116,"lastModified":"1301903620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4c83fb257b9aa1428d00013b\/the-meteor-man-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Action","title":"The Meteor Man","releaseDate":744595200000,"language":"en","tagline":"Get meteorized. Take a stand.","type":"Movie","_key":"42134"} +{"label":"Robert Townsend","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a7\/4d8007537b9aa12db20001a7\/robert-townsend-profile.jpg","biography":"<FONT face=Calibri>\r\n<P style=\"TEXT-ALIGN: justify; LINE-HEIGHT: normal; MARGIN: 0in 0in 0pt\" class=MsoNormal><SPAN style=\"FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin\" lang=EN><SPAN style=\"LINE-HEIGHT: 115%; FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 12pt; mso-ansi-language: EN; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font:","version":47,"birthday":"-91587600000","id":"68750","birthplace":"Chicago, Illinois, USA ","lastModified":"1301901496000","name":"Robert Townsend","type":"Person","_key":"42135"} +{"label":"Marla Gibbs","version":23,"id":"68751","lastModified":"1301901952000","name":"Marla Gibbs","type":"Person","_key":"42136"} +{"label":"Roy Fegan","version":23,"id":"68752","lastModified":"1301902385000","name":"Roy Fegan","type":"Person","_key":"42137"} +{"label":"Hellraiser: Hellseeker","description":"Kirsty Cotten is now all grown up and married. Her memory of the events that took place back at her parent's home and the mental institution have dimmed, but she is still traumatized. A fatal car crash kills Kirsty. Now, her husband finds himself in a strange world full of sexy women, greed and murder, making him believe that he is in hell.","id":"11246","runtime":89,"imdbId":"tt0274546","version":121,"lastModified":"1301902978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/086\/4bc93326017a3c57fe015086\/hellraiser-hellseeker-mid.jpg","genre":"Horror","title":"Hellraiser: Hellseeker","releaseDate":1034640000000,"language":"en","type":"Movie","_key":"42138"} +{"label":"Dean Winters","version":24,"id":"68763","lastModified":"1301901942000","name":"Dean Winters","type":"Person","_key":"42139"} +{"label":"Rachel Hayward","version":23,"id":"68764","lastModified":"1301901874000","name":"Rachel Hayward","type":"Person","_key":"42140"} +{"label":"Rick Bota","version":32,"id":"58209","lastModified":"1301901956000","name":"Rick Bota","type":"Person","_key":"42141"} +{"label":"A Cinderella Story","description":"Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything ","id":"11247","runtime":95,"imdbId":"tt0356470","homepage":"http:\/\/www2.warnerbros.com\/acinderellastory\/index.html","version":157,"lastModified":"1301901753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2de\/4cd6bc7e7b9aa11b240002de\/a-cinderella-story-mid.jpg","genre":"Comedy","title":"A Cinderella Story","releaseDate":1089417600000,"language":"en","tagline":"Once upon a time... can happen any time.","type":"Movie","_key":"42142"} +{"label":"Julie Gonzalo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55e\/4d4c28ca5e73d617c700155e\/julie-gonzalo-profile.jpg","version":28,"id":"68769","lastModified":"1301902041000","name":"Julie Gonzalo","type":"Person","_key":"42143"} +{"label":"Mark Rosman","version":28,"id":"68770","lastModified":"1301902053000","name":"Mark Rosman","type":"Person","_key":"42144"} +{"label":"Fatherland","description":"Fictional account of what might have happened if Hitler had won the war. It is now the 1960s and Germany's war crimes have so far been kept a secret. Hitler wants to talk peace with the US president. An American journalist and a German homicide cop stumble into a plot to destroy all evidence of the genocide.","id":"11248","runtime":106,"imdbId":"tt0109779","version":74,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4bc9332d017a3c57fe0150ab\/fatherland-mid.jpg","genre":"Thriller","title":"Fatherland","releaseDate":785808000000,"language":"en","type":"Movie","_key":"42145"} +{"label":"Christopher Menaul","version":23,"id":"68774","lastModified":"1301901715000","name":"Christopher Menaul","type":"Person","_key":"42146"} +{"label":"Seed of Chucky","description":"The killer doll is back! The all-new film is the fifth in the popular series of Chucky (\"Child's Play\") horror comedies. Making his directorial debut is the franchise creator and writer of all five films, Don Mancini. The film introduces Glen (voiced by \"The Lord of the Rings\" star Billy Boyd), the orphan doll offspring of the irrepressible devilish-doll-come-to-life Chucky (again voiced by series","id":"11249","runtime":87,"imdbId":"tt0387575","version":196,"lastModified":"1301904055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4bc9332f017a3c57fe0150bc\/seed-of-chucky-mid.jpg","genre":"Comedy","title":"Seed of Chucky","releaseDate":1100217600000,"language":"en","type":"Movie","_key":"42147"} +{"label":"Hannah Spearritt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27e\/4c053ddd017a3c351900027e\/hannah-spearritt-profile.jpg","version":22,"id":"35865","lastModified":"1301901945000","name":"Hannah Spearritt","type":"Person","_key":"42148"} +{"label":"Don Mancini","version":45,"id":"65677","lastModified":"1301974706000","name":"Don Mancini","type":"Person","_key":"42149"} +{"label":"Wedding For One","description":"No overview found.","id":"11250","runtime":0,"imdbId":"tt1312212","version":74,"lastModified":"1301905011000","genre":"Comedy","title":"Wedding For One","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"42150"} +{"label":"Matt Clendenin","version":20,"id":"68778","lastModified":"1301902012000","name":"Matt Clendenin","type":"Person","_key":"42151"} +{"label":"Jenny D. Martin","version":22,"id":"68779","lastModified":"1301902381000","name":"Jenny D. Martin","type":"Person","_key":"42152"} +{"label":"Ryan Pfeiffer","version":20,"id":"68780","lastModified":"1301902363000","name":"Ryan Pfeiffer","type":"Person","_key":"42153"} +{"label":"Jennifer Lauer","version":20,"id":"68781","lastModified":"1301902376000","name":"Jennifer Lauer","type":"Person","_key":"42154"} +{"label":"Morris Nash","version":20,"id":"68782","lastModified":"1301902364000","name":"Morris Nash","type":"Person","_key":"42155"} +{"label":"Julie Granata","version":20,"id":"68783","lastModified":"1301902029000","name":"Julie Granata","type":"Person","_key":"42156"} +{"label":"Patrick Thomassie","version":20,"id":"68784","lastModified":"1301902382000","name":"Patrick Thomassie","type":"Person","_key":"42157"} +{"label":"Melissa Tan","version":18,"id":"68785","lastModified":"1301902367000","name":"Melissa Tan","type":"Person","_key":"42158"} +{"label":"Paul E. Jackson","version":20,"id":"68786","lastModified":"1301902388000","name":"Paul E. Jackson","type":"Person","_key":"42159"} +{"label":"Cameron Glasgow","version":20,"id":"68787","lastModified":"1301902392000","name":"Cameron Glasgow","type":"Person","_key":"42160"} +{"label":"Elwood Carlisle","version":21,"id":"68788","lastModified":"1301902392000","name":"Elwood Carlisle","type":"Person","_key":"42161"} +{"label":"Keaton Rogers","version":20,"id":"68789","lastModified":"1301902203000","name":"Keaton Rogers","type":"Person","_key":"42162"} +{"label":"Kristina Lloyd","version":20,"id":"68790","lastModified":"1301902381000","name":"Kristina Lloyd","type":"Person","_key":"42163"} +{"label":"Psycho","description":"A remake of Alfred Hitchcock's Psycho, the film is about Marion Crane, who after stealing $40,000 cash, leaves town and ends up at the Bates Motel where she meets the troubled Norman Bates who seems to be dominated by his mother.","id":"11252","runtime":105,"imdbId":"tt0155975","version":195,"lastModified":"1301902455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d5\/4bc93333017a3c57fe0150d5\/psycho-1998-mid.jpg","genre":"Drama","title":"Psycho","releaseDate":912729600000,"language":"en","tagline":"Check in. Relax. Take a shower.","type":"Movie","_key":"42164"} +{"label":"Hellboy II: The Golden Army","description":"In this continuation to the adventure of the demon superhero, an evil elf breaks an ancient pact between humans and creatures, as he declares war against humanity. He is on a mission to release The Golden Army, a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat the evil prince.","id":"11253","runtime":119,"imdbId":"tt0411477","trailer":"http:\/\/www.youtube.com\/watch?v=tctQMC2KDXs","version":343,"lastModified":"1301901118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4d942ab15e73d62248001b49\/hellboy-ii-the-golden-army-mid.jpg","studio":"Dark Horse Entertainment","genre":"Action","title":"Hellboy II: The Golden Army","releaseDate":1214611200000,"language":"en","tagline":"Saving the world is a hell of a job.","type":"Movie","_key":"42165"} +{"label":"Crazy Race","description":"No overview found.","id":"11255","runtime":95,"imdbId":"tt0362524","version":49,"lastModified":"1301904380000","genre":"Action","title":"Crazy Race","releaseDate":1048377600000,"language":"en","type":"Movie","_key":"42166"} +{"label":"Kai Lentrodt","version":20,"id":"25430","lastModified":"1301901836000","name":"Kai Lentrodt","type":"Person","_key":"42167"} +{"label":"Carolin Imcke","version":20,"id":"68852","lastModified":"1301902177000","name":"Carolin Imcke","type":"Person","_key":"42168"} +{"label":"Sissi Perlinger","version":21,"id":"68853","lastModified":"1301902199000","name":"Sissi Perlinger","type":"Person","_key":"42169"} +{"label":"Frei:Gespielt - Mehmet Scholl - \u00dcber das Spiel hinaus","description":"No overview found.","id":"11256","runtime":101,"imdbId":"tt1094246","version":31,"lastModified":"1301904998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4bd7ff6e017a3c1c00000054\/frei-gespielt-mehmet-scholl-uber-das-spiel-hinaus-mid.jpg","genre":"Documentary","title":"Frei:Gespielt - Mehmet Scholl - \u00dcber das Spiel hinaus","releaseDate":1188172800000,"language":"en","type":"Movie","_key":"42170"} +{"label":"Mehmet Scholl","version":20,"id":"68805","lastModified":"1301901952000","name":"Mehmet Scholl","type":"Person","_key":"42171"} +{"label":"Ferdinand Neumayr","version":20,"id":"68806","lastModified":"1301901952000","name":"Ferdinand Neumayr","type":"Person","_key":"42172"} +{"label":"Eduard Augustin","version":20,"id":"68807","lastModified":"1301901952000","name":"Eduard Augustin","type":"Person","_key":"42173"} +{"label":"A Room with a View","description":"When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans? Nominated for eight Academy Awards (1986), including Best Picture, and winner of three, this is one the most charming and delightful romantic comedies ever filmed.","id":"11257","runtime":117,"imdbId":"tt0091867","trailer":"http:\/\/www.youtube.com\/watch?v=uyt-nPdkovQ","version":228,"lastModified":"1301903759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4cd1ee765e73d65024001197\/a-room-with-a-view-mid.jpg","genre":"Drama","title":"A Room with a View","releaseDate":510537600000,"language":"en","type":"Movie","_key":"42174"} +{"label":"Hard Rain","description":"Get swept up in the action as an armored car driver (Christian Slater) tries to elude a gang of thieves (led by Morgan Freeman) while a flood ravages the countryside. Hard Rain is \"a wild, thrilling, chilling action ride\" filled with close calls, uncertain loyalties and heart-stopping heroics.","id":"11258","runtime":97,"imdbId":"tt0120696","trailer":"http:\/\/www.youtube.com\/watch?v=dP4MkZUthkA","version":161,"lastModified":"1301902755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4c2345e97b9aa13f5e00002d\/hard-rain-mid.jpg","genre":"Action","title":"Hard Rain","releaseDate":884908800000,"language":"en","type":"Movie","_key":"42175"} +{"label":"Far and Away","description":"A young man (Cruise) leaves Ireland with his landlord's daughter (Kidman) after some trouble with her father, and they dream of owning land at the big giveaway in Oklahoma ca. 1893. When they get to the new land, they find jobs and begin saving money. The man becomes a local barehands boxer, and rides in glory until he is beaten, then his employers steal all the couple's money and they must fight off starvation in the winter, and try to keep their dream of owning land alive. Meanwhile, the woman","id":"11259","runtime":140,"imdbId":"tt0104231","version":177,"lastModified":"1301902119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a1\/4bc93351017a3c57fe0151a1\/far-and-away-mid.jpg","genre":"Action","title":"Far and Away","releaseDate":706492800000,"language":"en","tagline":"What they needed was a country big enough for their dreams.","type":"Movie","_key":"42176"} +{"label":"Meet Dave","description":"A crew of miniature aliens operate a spaceship that has a human form. While trying to save their planet, the aliens encounter a new problem, as their ship becomes smitten with an Earth woman.","id":"11260","runtime":90,"imdbId":"tt0765476","trailer":"http:\/\/www.youtube.com\/watch?v=602","homepage":"http:\/\/www.meetdavemovie.com\/","version":295,"lastModified":"1301901738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b3\/4bc93353017a3c57fe0151b3\/meet-dave-mid.jpg","studio":"Guy Walks into a Bar Productions","genre":"Comedy","title":"Meet Dave","releaseDate":1215561600000,"language":"en","tagline":"There's a Whole Other World Going on Inside of Him.","type":"Movie","_key":"42177"} +{"label":"Pat Kilbane","version":25,"id":"68836","lastModified":"1301902028000","name":"Pat Kilbane","type":"Person","_key":"42178"} +{"label":"Austyn Myers","version":22,"id":"68837","lastModified":"1301901814000","name":"Austyn Myers","type":"Person","_key":"42179"} +{"label":"Mario Loya","version":20,"id":"91274","lastModified":"1301902300000","name":"Mario Loya","type":"Person","_key":"42180"} +{"label":"Mike O'Malley","version":29,"id":"87192","lastModified":"1301901581000","name":"Mike O'Malley","type":"Person","_key":"42181"} +{"label":"Tutmosis","description":"No overview found.","id":"11261","runtime":11,"version":26,"lastModified":"1301906156000","genre":"Documentary","title":"Tutmosis","releaseDate":1141171200000,"language":"en","type":"Movie","_key":"42182"} +{"label":"Werner Riemer","version":16,"id":"68839","lastModified":"1301902176000","name":"Werner Riemer","type":"Person","_key":"42183"} +{"label":"Die Musterknaben - 1000 und eine Nacht","description":"No overview found.","id":"11280","runtime":90,"imdbId":"tt0325861","version":38,"lastModified":"1301904441000","genre":"Comedy","title":"Die Musterknaben - 1000 und eine Nacht","releaseDate":1064793600000,"language":"en","type":"Movie","_key":"42184"} +{"label":"Sanna Englund","version":19,"id":"68840","lastModified":"1301902082000","name":"Sanna Englund","type":"Person","_key":"42185"} +{"label":"Halloween II","description":"It's the same night as the original Halloween. Michael Myers is around the neighborhood, after being gunned by Dr.Loomis six times. Now, he's in a hospital where the girl Laurie Strode was taken. And there's a reason why Michael is after her...","id":"11281","runtime":92,"imdbId":"tt0082495","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/halloween-2","version":202,"lastModified":"1301902575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/128\/4c951bd57b9aa10d5a000128\/halloween-ii-mid.jpg","genre":"Horror","title":"Halloween II","releaseDate":373248000000,"language":"en","type":"Movie","_key":"42186"} +{"label":"Harold & Kumar Go to White Castle","description":"Sometimes, it takes a strange night to put everything else into focus. And that's exactly what happens to Harold and his roommate, Kumar, when they set out to get the best stoner fix money can buy: White Castle hamburgers. Both guys are at a crossroads, about to make major decisions that will affect the course of their lives. Yet they arrive at wisdom by accident as they drive around New Jersey in search of fast food.","id":"11282","runtime":88,"imdbId":"tt0366551","trailer":"http:\/\/www.youtube.com\/watch?v=TlK-NMNGF1Y","version":227,"lastModified":"1302041296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4bc9335a017a3c57fe0151df\/harold-kumar-go-to-white-castle-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Harold & Kumar Go to White Castle","releaseDate":1091145600000,"language":"en","tagline":"Fast Food. High Times.","type":"Movie","_key":"42187"} +{"label":"John Cho","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fc\/4bd74bf7017a3c21f10001fc\/john-cho-profile.jpg","biography":"John Yohan Cho is a Korean American Actor best known as playing Harold in the Harold and Kumar film series, as well as playing helmsman Hikaru Sulu in 2009's Star Trek. \nJohn Cho began working after appearing as a print model for Korean Magainzes, and made his first film appearance in the 1999 raunch comedy American Pie, a film in which Cho's character popularized the now infamous term MILF.  \nCho's TV Credits include a recurring role in Fox's Kitchen Confidential and in the TV series ","version":61,"birthday":"77497200000","id":"68842","birthplace":"Seoul, South Korea","lastModified":"1301901171000","name":"John Cho","type":"Person","_key":"42188"} +{"label":"Nanny McPhee","description":"Emma Thompson stars as a governess who uses magic to rein in the behavior of seven ne'er-do-well children in her charge. ","id":"11283","runtime":97,"imdbId":"tt0396752","trailer":"http:\/\/www.youtube.com\/watch?v=iNmWrAhYcP4","version":284,"lastModified":"1301902175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4bc9335c017a3c57fe0151f7\/nanny-mcphee-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Nanny McPhee","releaseDate":1129852800000,"language":"en","tagline":"You'll Learn To Love Her. Warts And All.","type":"Movie","_key":"42189"} +{"label":"Freddy's Dead: The Final Nightmare","description":"Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.","id":"11284","runtime":89,"imdbId":"tt0101917","trailer":"http:\/\/www.youtube.com\/watch?v=nGQP6PIXzyc","version":175,"lastModified":"1301902094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24b\/4c1e54fd5e73d606d000024b\/freddy-s-dead-the-final-nightmare-mid.jpg","genre":"Horror","title":"Freddy's Dead: The Final Nightmare","releaseDate":684028800000,"language":"en","tagline":"They saved the best for last.","type":"Movie","_key":"42190"} +{"label":"Lisa Zane","version":29,"id":"68848","lastModified":"1301942313000","name":"Lisa Zane","type":"Person","_key":"42191"} +{"label":"Shon Greenblatt","version":23,"id":"68849","lastModified":"1301902200000","name":"Shon Greenblatt","type":"Person","_key":"42192"} +{"label":"Lezlie Deane","version":26,"id":"68850","lastModified":"1301902304000","name":"Lezlie Deane","type":"Person","_key":"42193"} +{"label":"Ricky Dean Logan","version":23,"id":"68851","lastModified":"1301902359000","name":"Ricky Dean Logan","type":"Person","_key":"42194"} +{"label":"Cocoon: The Return","description":"No overview found.","id":"11285","runtime":116,"imdbId":"tt0094890","version":197,"lastModified":"1301903436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21a\/4bc93362017a3c57fe01521a\/cocoon-the-return-mid.jpg","genre":"Comedy","title":"Cocoon: The Return","releaseDate":596246400000,"language":"en","type":"Movie","_key":"42195"} +{"label":"The Cannonball Run","description":"A cross-country road race is based on an actual event, the Cannonball Baker Sea to Shining Sea Memorial Trophy Dash, organized by Brock Yates to protest the 55 mph speed limit then in effect in the U.S. The Cannonball was named for Erwin G. \"Cannonball\" Baker, who in the roaring 20's rode his motorcycle across the country. Many of the characters are based on ruses developed by real Cannonball racers over the several years that the event was run.","id":"11286","runtime":95,"imdbId":"tt0082136","trailer":"http:\/\/www.youtube.com\/watch?v=I_7_y0HhAmY","version":123,"lastModified":"1301902777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38c\/4d40fa485e73d6572500038c\/the-cannonball-run-mid.jpg","genre":"Action","title":"The Cannonball Run","releaseDate":361756800000,"language":"en","tagline":"You'll root for them all...but you'll never guess who wins.","type":"Movie","_key":"42196"} +{"label":"Jamie Farr","version":28,"id":"55432","lastModified":"1301902253000","name":"Jamie Farr","type":"Person","_key":"42197"} +{"label":"A League of Their Own","description":"Small-town sisters Dottie and Kit join an all-female baseball league formed after World War II brings pro baseball to a standstill. When their team hits the road with its drunken coach, the siblings find troubles and triumphs on and off the field.","id":"11287","runtime":128,"imdbId":"tt0104694","version":168,"lastModified":"1302039195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/257\/4bc9336b017a3c57fe015257\/a-league-of-their-own-mid.jpg","genre":"Comedy","title":"A League of Their Own","releaseDate":709948800000,"language":"en","tagline":"To achieve the incredible you have to attempt the impossible.","type":"Movie","_key":"42198"} +{"label":"Ren\u00e9e Coleman","version":19,"id":"138241","lastModified":"1301902283000","name":"Ren\u00e9e Coleman","type":"Person","_key":"42199"} +{"label":"Happy Tree Friends: Volume 1: First Blood","description":"No overview found.","id":"11290","runtime":110,"imdbId":"tt0387273","version":79,"lastModified":"1301905633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/021\/4c97985e7b9aa122de000021\/happy-tree-friends-volume-1-first-blood-mid.jpg","genre":"Animation","title":"Happy Tree Friends: Volume 1: First Blood","releaseDate":1013990400000,"language":"en","type":"Movie","_key":"42200"} +{"label":"Peter Herrmann","version":23,"id":"36176","lastModified":"1301901798000","name":"Peter Herrmann","type":"Person","_key":"42201"} +{"label":"Liz Stewart","version":21,"id":"68861","lastModified":"1301902082000","name":"Liz Stewart","type":"Person","_key":"42202"} +{"label":"Aubrey Ankrum","version":20,"id":"68862","lastModified":"1301901874000","name":"Aubrey Ankrum","type":"Person","_key":"42203"} +{"label":"Dana Belben","version":19,"id":"68863","lastModified":"1301902082000","name":"Dana Belben","type":"Person","_key":"42204"} +{"label":"Jeff Biancalana","version":20,"id":"68864","lastModified":"1301901992000","name":"Jeff Biancalana","type":"Person","_key":"42205"} +{"label":"Mark Giambruno","version":19,"id":"68865","lastModified":"1301902082000","name":"Mark Giambruno","type":"Person","_key":"42206"} +{"label":"Warren Graff","version":19,"id":"68866","lastModified":"1301902256000","name":"Warren Graff","type":"Person","_key":"42207"} +{"label":"Michael 'Lippy' Lipman","version":19,"id":"68867","lastModified":"1301902256000","name":"Michael 'Lippy' Lipman","type":"Person","_key":"42208"} +{"label":"Nica Lorber","version":19,"id":"68868","lastModified":"1301902082000","name":"Nica Lorber","type":"Person","_key":"42209"} +{"label":"Rhode Montijo","version":19,"id":"68869","lastModified":"1301902082000","name":"Rhode Montijo","type":"Person","_key":"42210"} +{"label":"Kenn Navarro","version":19,"id":"68870","lastModified":"1301901874000","name":"Kenn Navarro","type":"Person","_key":"42211"} +{"label":"Rhode Montijo","version":19,"id":"68871","lastModified":"1301901724000","name":"Rhode Montijo","type":"Person","_key":"42212"} +{"label":"Kenn Navarro","version":21,"id":"68872","lastModified":"1301902082000","name":"Kenn Navarro","type":"Person","_key":"42213"} +{"label":"Br\u00f6derna Lejonhj\u00e4rta","description":"Br\u00f6derna Lejonhj\u00e4rta \u00e4r en fantasyroman av Astrid Lindgren som publicerades h\u00f6sten 1973. Den klassificeras som en barnbok i likhet med Lindgrens andra b\u00f6cker, men m\u00e5nga teman i ber\u00e4ttelsen \u00e4r ovanligt tunga och m\u00f6rka j\u00e4mf\u00f6rt med genren i gemen: sjukdom, d\u00f6d, tyranni, f\u00f6rr\u00e4deri och f\u00f6rtryck. De ljusa och varma temana \u00e4r dock ocks\u00e5 starka: syskonk\u00e4rlek, lojalitet, hopp, mod och uppror.","id":"11291","runtime":102,"imdbId":"tt0075790","trailer":"http:\/\/www.youtube.com\/watch?v=1058","version":55,"lastModified":"1301902486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/260\/4bc9336c017a3c57fe015260\/broderna-lejonhjarta-mid.jpg","studio":"Artfilm","genre":"Adventure","title":"Br\u00f6derna Lejonhj\u00e4rta","releaseDate":243820800000,"language":"en","type":"Movie","_key":"42214"} +{"label":"Staffan G\u00f6testam","version":20,"id":"68885","lastModified":"1301901536000","name":"Staffan G\u00f6testam","type":"Person","_key":"42215"} +{"label":"Lars S\u00f6derdahl","version":20,"id":"68886","lastModified":"1301901536000","name":"Lars S\u00f6derdahl","type":"Person","_key":"42216"} +{"label":"Folke Hjort","version":21,"id":"68887","lastModified":"1301902176000","name":"Folke Hjort","type":"Person","_key":"42217"} +{"label":"Olle Hellbom","version":45,"id":"55006","lastModified":"1301901447000","name":"Olle Hellbom","type":"Person","_key":"42218"} +{"label":"Seventeen - M\u00e4dchen sind die besseren Jungs","description":"No overview found.","id":"11292","runtime":94,"imdbId":"tt0354002","version":37,"lastModified":"1301905704000","genre":"Comedy","title":"Seventeen - M\u00e4dchen sind die besseren Jungs","releaseDate":1044489600000,"language":"en","type":"Movie","_key":"42219"} +{"label":"Florian Jahr","version":20,"id":"44342","lastModified":"1301901997000","name":"Florian Jahr","type":"Person","_key":"42220"} +{"label":"Paper Moon","description":"During the Great Depression, a con man finds himself saddled with a young girl who may or may not be his daughter, and the two forge an unlikely partnership.","id":"11293","runtime":102,"imdbId":"tt0070510","version":136,"lastModified":"1301903170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/269\/4bc9336d017a3c57fe015269\/paper-moon-mid.jpg","genre":"Comedy","title":"Paper Moon","releaseDate":105753600000,"language":"en","type":"Movie","_key":"42221"} +{"label":"Tatum O'Neal","version":30,"id":"68890","lastModified":"1301901563000","name":"Tatum O'Neal","type":"Person","_key":"42222"} +{"label":"Pusher","description":"No overview found.","id":"11294","version":376,"lastModified":"1301908313000","genre":"Action","title":"Pusher","language":"en","type":"Movie","_key":"42223"} +{"label":"The Devil's General","description":"Curt Jurgens stars as a courageous Luftwaffe officer. Jurgens loves the service, even though he barely tolerates the Hitler regime. Sickened by wartime Nazi atrocities, Jurgens renounces his government, and is imprisoned and tortured as a result. Once released, the general takes pity on a downtrodden Jewish family. This isolated act of kindness is a point in his favor when Jurgens stands before Satan himself for his final judgment. The Devil's General was based on an immensely successful postwar","id":"11295","runtime":117,"imdbId":"tt0047572","version":57,"lastModified":"1301906765000","genre":"Drama","title":"The Devil's General","releaseDate":-468806400000,"language":"en","type":"Movie","_key":"42224"} +{"label":"Birdy","description":"Two young men are seriously affected by the Vietnam war. One of them has always been obsessed with birds - but now believes he really is a bird, and has been sent to a mental hospital. Can his friend help him pull through?","id":"11296","runtime":120,"imdbId":"tt0086969","trailer":"http:\/\/www.youtube.com\/watch?v=hfGwJGrLz2w","version":168,"lastModified":"1301903975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/272\/4bc9336d017a3c57fe015272\/birdy-mid.jpg","genre":"Drama","title":"Birdy","releaseDate":471830400000,"language":"en","type":"Movie","_key":"42225"} +{"label":"John Harkins","version":24,"id":"68897","lastModified":"1301901713000","name":"John Harkins","type":"Person","_key":"42226"} +{"label":"Sandy Baron","version":31,"id":"68898","lastModified":"1302002302000","name":"Sandy Baron","type":"Person","_key":"42227"} +{"label":"Save the Green Planet","description":"Byeong-gu believes that the world is on the verge of an alien invasion, and sets out to save the world.","id":"11297","runtime":118,"imdbId":"tt0354668","version":159,"lastModified":"1301907111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27f\/4bc9336e017a3c57fe01527f\/jigureul-jikyeora-mid.jpg","studio":"Sidus Pictures","genre":"Comedy","title":"Save the Green Planet","releaseDate":1049414400000,"language":"en","type":"Movie","_key":"42228"} +{"label":"Yun-shik Baek","version":29,"id":"68902","lastModified":"1301901807000","name":"Yun-shik Baek","type":"Person","_key":"42229"} +{"label":"Jeong-min Hwang","version":29,"id":"68903","lastModified":"1301901229000","name":"Jeong-min Hwang","type":"Person","_key":"42230"} +{"label":"Jae-yong Lee","version":21,"id":"68904","lastModified":"1301902191000","name":"Jae-yong Lee","type":"Person","_key":"42231"} +{"label":"Joon-Hwan Jang","version":21,"id":"68905","lastModified":"1301901812000","name":"Joon-Hwan Jang","type":"Person","_key":"42232"} +{"label":"The Howling","description":"After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.","id":"11298","runtime":91,"imdbId":"tt0082533","trailer":"http:\/\/www.youtube.com\/watch?v=A31Nzr6ih9U","version":172,"lastModified":"1301903903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/232\/4bd13cfa017a3c63f3000232\/the-howling-mid.jpg","genre":"Horror","title":"The Howling","releaseDate":353289600000,"language":"en","tagline":"Imagine your worst fear a reality","type":"Movie","_key":"42233"} +{"label":"Elisabeth Brooks","version":22,"id":"98610","lastModified":"1301902646000","name":"Elisabeth Brooks","type":"Person","_key":"42234"} +{"label":"Margie Impert","version":22,"id":"101780","lastModified":"1301903042000","name":"Margie Impert","type":"Person","_key":"42235"} +{"label":"James Murtaugh","version":21,"id":"101781","lastModified":"1301902917000","name":"James Murtaugh","type":"Person","_key":"42236"} +{"label":"Jim McKrell","version":25,"id":"100614","lastModified":"1301902477000","name":"Jim McKrell","type":"Person","_key":"42237"} +{"label":"Meshach Taylor","version":22,"id":"101784","lastModified":"1301902476000","name":"Meshach Taylor","type":"Person","_key":"42238"} +{"label":"Robert A. Burns","version":25,"id":"27805","lastModified":"1301902127000","name":"Robert A. Burns","type":"Person","_key":"42239"} +{"label":"Cowboy Bebop: The Movie","description":"Mars. Days before Halloween 2071. Villains blow up a tanker truck on Highway One, releasing a deadly virus that kills hundreds. Fearing a bigger, even more devastating biochemical attack, an astronomical reward is offered for the arrest and capture of the person behind the destruction. On the space ship \"Bebop,\" Spike Spiegel and his crew of bounty hunters (Jet Black, Faye Valentine, Ed and Ein) are bored and short of cash. But with the news of the reward everything changes....","id":"11299","runtime":116,"imdbId":"tt0275277","trailer":"http:\/\/www.youtube.com\/watch?v=Au1AO1xaEts","homepage":"http:\/\/www.sonypictures.com\/cthe\/cowboybebop\/","version":120,"lastModified":"1301907100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc93378017a3c57fe0152a2\/11299-mid.jpg","genre":"Action","title":"Cowboy Bebop: The Movie","releaseDate":999302400000,"language":"en","tagline":"The last party is about to begin","type":"Movie","_key":"42240"} +{"label":"Unsh\u00f4 Ishizuka","version":28,"id":"68916","lastModified":"1301901647000","name":"Unsh\u00f4 Ishizuka","type":"Person","_key":"42241"} +{"label":"Aoi Tada","version":26,"id":"68917","lastModified":"1301901766000","name":"Aoi Tada","type":"Person","_key":"42242"} +{"label":"Ai Kobayashi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fa4\/4d26741d7b9aa134e0000fa4\/ai-kobayashi-profile.jpg","version":43,"birthday":"107132400000","id":"68918","birthplace":"Adachi, Tokyo","lastModified":"1301901149000","name":"Ai Kobayashi","type":"Person","_key":"42243"} +{"label":"Something Wild","description":"A free-spirited woman \"kidnaps\" a yuppie for a weekend of adventure. But the fun quickly takes a dangerous turn when her ex-con husband shows up.","id":"11300","runtime":113,"imdbId":"tt0091983","version":135,"lastModified":"1301902217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4c135ded7b9aa102fa000071\/something-wild-mid.jpg","genre":"Action","title":"Something Wild","releaseDate":531705600000,"language":"en","type":"Movie","_key":"42244"} +{"label":"George 'Red' Schwartz","version":21,"id":"68926","lastModified":"1301902164000","name":"George 'Red' Schwartz","type":"Person","_key":"42245"} +{"label":"Leib Lensky","version":21,"id":"68927","lastModified":"1301902164000","name":"Leib Lensky","type":"Person","_key":"42246"} +{"label":"Todesspiel","description":"No overview found.","id":"11301","runtime":177,"imdbId":"tt0118493","version":45,"lastModified":"1301904441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b36\/4d189f087b9aa1147a003b36\/todesspiel-mid.jpg","genre":"Documentary","title":"Todesspiel","releaseDate":866332800000,"language":"en","type":"Movie","_key":"42247"} +{"label":"Hans Brenner","version":21,"id":"26807","lastModified":"1301901874000","name":"Hans Brenner","type":"Person","_key":"42248"} +{"label":"Bananas","description":"No overview found.","id":"11302","runtime":82,"imdbId":"tt0066808","version":327,"lastModified":"1302019620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b7\/4bc93379017a3c57fe0152b7\/bananas-mid.jpg","genre":"Comedy","title":"Bananas","releaseDate":41644800000,"language":"en","type":"Movie","_key":"42249"} +{"label":"Carlos Montalb\u00e1n","version":24,"id":"68934","lastModified":"1301901874000","name":"Carlos Montalb\u00e1n","type":"Person","_key":"42250"} +{"label":"Nati Abascal","version":19,"id":"68935","lastModified":"1301901724000","name":"Nati Abascal","type":"Person","_key":"42251"} +{"label":"Promenons-nous dans les bois","description":"A group of artists, composed of the young actors Wilfried and Matthieu and the actresses Sophie, Mathilde and the dumb Jeanne, is hired by a millionaire, Axel de Fersen, to present a performance of Little Red Riding Hood in his isolated castle to celebrate the birthday of his grandson. Meanwhile, the police advises that a serial killer is raping and killing young women in the woods around that area. During the night, the group feels trapped and threatened in the castle, guessing who is and where","id":"11303","runtime":90,"imdbId":"tt0236638","version":76,"lastModified":"1301903471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4d12a9475e73d60838000fdd\/promenons-nous-dans-les-bois-mid.jpg","genre":"Horror","title":"Promenons-nous dans les bois","releaseDate":960940800000,"language":"en","type":"Movie","_key":"42252"} +{"label":"Lionel Delplanque","version":23,"id":"68976","lastModified":"1301902147000","name":"Lionel Delplanque","type":"Person","_key":"42253"} +{"label":"9\/11","description":"No overview found.","id":"11304","runtime":112,"imdbId":"tt0312318","version":170,"lastModified":"1301904151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c4\/4bc9337d017a3c57fe0152c4\/9-11-mid.jpg","studio":"Goldfish Pictures","genre":"Documentary","title":"9\/11","releaseDate":1015718400000,"language":"en","type":"Movie","_key":"42254"} +{"label":"Tony Benatatos","version":20,"id":"68943","lastModified":"1301901674000","name":"Tony Benatatos","type":"Person","_key":"42255"} +{"label":"Jamal Braithwaite","version":20,"id":"68944","lastModified":"1301901674000","name":"Jamal Braithwaite","type":"Person","_key":"42256"} +{"label":"Joseph Casaliggi","version":19,"id":"68945","lastModified":"1301901724000","name":"Joseph Casaliggi","type":"Person","_key":"42257"} +{"label":"James Hanlon","version":22,"id":"68946","lastModified":"1301902222000","name":"James Hanlon","type":"Person","_key":"42258"} +{"label":"Jules Naudet","version":19,"id":"68950","lastModified":"1301901874000","name":"Jules Naudet","type":"Person","_key":"42259"} +{"label":"G\u00e9d\u00e9on Naudet","version":20,"id":"68949","lastModified":"1301901812000","name":"G\u00e9d\u00e9on Naudet","type":"Person","_key":"42260"} +{"label":"Rob Klug","version":20,"id":"68948","lastModified":"1301901674000","name":"Rob Klug","type":"Person","_key":"42261"} +{"label":"Mystery Train","description":"Mystery Train interweaves three engrossing stories, all influenced by the Elvis Presley song of the same name and his beloved hometown of Memphis. As the characters paths collide through laughter, fear and fate; you can practically feel the presence of the King himself in every scene and his legacy impressed on a generation of equally lost souls in this wry, brilliantly structured comedy.","id":"11305","runtime":113,"imdbId":"tt0097940","version":415,"lastModified":"1301903504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/183\/4c25ae577b9aa1446e000183\/mystery-train-mid.jpg","genre":"Comedy","title":"Mystery Train","releaseDate":621043200000,"language":"en","type":"Movie","_key":"42262"} +{"label":"Masatoshi Nagase","version":40,"id":"68973","lastModified":"1301901601000","name":"Masatoshi Nagase","type":"Person","_key":"42263"} +{"label":"Extreme Measures","description":"Thriller about Guy Luthan (Hugh Grant), a British doctor working at a hospital in New York who starts making unwanted enquiries when the body of a man who died in his emergency room disappears. The trail leads Luthan to the door of the eminent surgeon Dr Lawrence Myrick (Gene Hackman), but Luthan soon finds himself under in danger from people who want the hospital's secret to remain undiscovered.","id":"11306","runtime":118,"imdbId":"tt0116259","version":98,"lastModified":"1301902793000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d1\/4bc9337e017a3c57fe0152d1\/extreme-measures-mid.jpg","genre":"Drama","title":"Extreme Measures","releaseDate":843782400000,"language":"en","type":"Movie","_key":"42264"} +{"label":"The World According to Garp","description":"Based on the John Irving novel, this film chronicles the life of T S Garp, and his mother, Jenny. Whilst Garp sees himself as a \"serious\" writer, Jenny writes a feminist manifesto at an opportune time, and finds herself as a magnet for all manner of distressed women.","id":"11307","runtime":136,"imdbId":"tt0084917","version":137,"lastModified":"1301905052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2da\/4bc9337f017a3c57fe0152da\/the-world-according-to-garp-mid.jpg","genre":"Comedy","title":"The World According to Garp","releaseDate":396230400000,"language":"en","type":"Movie","_key":"42265"} +{"label":"The Hotel New Hampshire","description":"John Irving's picaresque black comedy about an eccentric and unusually peripatetic family in a film starring Rob Lowe as John Berry, the family's oldest son. John's father, Win (Beau Bridges), is obsessed with hotels, so he buys a run-down seminary in New England, transforming it into the Hotel New Hampshire. The extended family includes the profanity-spouting Franny (Jodie Foster); Lily (Jennifer Dundas); a dwarf, Frank (Paul McCrane), who is gay; John, who is strongly attracted to his sister; ","id":"11308","runtime":109,"imdbId":"tt0087428","version":86,"lastModified":"1301902584000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d06\/4d1e86627b9aa17373000d06\/the-hotel-new-hampshire-mid.jpg","genre":"Comedy","title":"The Hotel New Hampshire","releaseDate":447638400000,"language":"en","type":"Movie","_key":"42266"} +{"label":"Hardware","description":"A wandering soldier finds a robot head in the post-apocalyptic desert. He brings it back to his girlfriend for use in one of her sculptures. He investigates the origin of the head, and discovers it's from the Mark 13 project, canceled because of unreliability. His girlfriend, nay, society at large become endangered when the robot puts itself back together using the parts she has for her sculpture.","id":"11309","runtime":93,"imdbId":"tt0099740","version":161,"lastModified":"1301904351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4cd4b8c25e73d676cf0000f9\/hardware-mid.jpg","studio":"BSB","genre":"Science Fiction","title":"Hardware","releaseDate":632016000000,"language":"en","tagline":"You can't stop progress.","type":"Movie","_key":"42267"} +{"label":"City Slickers II: The Legend of Curly's Gold","description":"On Mitch Robbins 40th birthday begins quite well until he returns home and finds his brother Glen, the black sheep of the family, in his sofa. Nevertheless he is about to have a wonderful birthday-night with his wife when he discovers a treasure map of Curly by chance. Together with Phil and unfortunately with Glen he tries to find the hidden gold of Curly's father in the desert of Arizona.","id":"11310","runtime":116,"imdbId":"tt0109439","trailer":"http:\/\/www.youtube.com\/watch?v=kK16VX2L0bA","version":111,"lastModified":"1301904639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4c1e5e505e73d60b8300013b\/city-slickers-ii-the-legend-of-curly-s-gold-mid.jpg","studio":"Castle Rock Entertainment","genre":"Action","title":"City Slickers II: The Legend of Curly's Gold","releaseDate":771206400000,"language":"en","type":"Movie","_key":"42268"} +{"label":"Sass - Die Meisterdiebe","description":"No overview found.","id":"11311","runtime":127,"version":28,"lastModified":"1301903476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80c\/4ccc71195e73d6502500080c\/sass-die-meisterdiebe-mid.jpg","genre":"Drama","title":"Sass - Die Meisterdiebe","releaseDate":1004140800000,"language":"en","type":"Movie","_key":"42269"} +{"label":"Frank Sieckel","version":16,"id":"68997","lastModified":"1301901952000","name":"Frank Sieckel","type":"Person","_key":"42270"} +{"label":"Carlo Rola","version":16,"id":"68998","lastModified":"1301901820000","name":"Carlo Rola","type":"Person","_key":"42271"} +{"label":"Engel & Joe","description":"No overview found.","id":"11312","runtime":93,"imdbId":"tt0280641","version":93,"lastModified":"1301903423000","genre":"Drama","title":"Engel & Joe","releaseDate":1003968000000,"language":"en","type":"Movie","_key":"42272"} +{"label":"Lena Sabine Berg","version":20,"id":"68995","lastModified":"1301901584000","name":"Lena Sabine Berg","type":"Person","_key":"42273"} +{"label":"Hearts in Atlantis","description":"A widowed mother and her son change when a mysterious stranger enters their lives.","id":"11313","runtime":101,"imdbId":"tt0252501","version":191,"lastModified":"1301907560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/307\/4bc93383017a3c57fe015307\/hearts-in-atlantis-mid.jpg","genre":"Drama","title":"Hearts in Atlantis","releaseDate":1001635200000,"language":"en","type":"Movie","_key":"42274"} +{"label":"Koyaanisqatsi","description":"A movie with no conventional plot: merely a collection of expertly photographed scenes. Subject matter has a highly environmental theme.","id":"11314","runtime":87,"imdbId":"tt0085809","version":112,"lastModified":"1301902712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/310\/4bc93386017a3c57fe015310\/koyaanisqatsi-mid.jpg","genre":"Documentary","title":"Koyaanisqatsi","releaseDate":437356800000,"language":"en","type":"Movie","_key":"42275"} +{"label":"Godfrey Reggio","version":29,"id":"68993","lastModified":"1301901444000","name":"Godfrey Reggio","type":"Person","_key":"42276"} +{"label":"Dead or Alive - Hanzaisha","description":"Ry\u016bichi and his small gang of Triad vie for control of the Japanese underworld in a crime-ridden Shinjuku quarter while Detective Jojima tries to bring it down. Jojima attempts to start a gang war between the Triad and yakuza. Ry\u016bichi and Jojima meet.","id":"11315","runtime":105,"imdbId":"tt0221111","version":77,"lastModified":"1301903055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/661\/4bf3d099017a3c320b000661\/dead-or-alive-hanzaisha-mid.jpg","genre":"Action","title":"Dead or Alive - Hanzaisha","releaseDate":943660800000,"language":"en","type":"Movie","_key":"42277"} +{"label":"Riki Takeuchi","version":24,"id":"68987","lastModified":"1301902359000","name":"Riki Takeuchi","type":"Person","_key":"42278"} +{"label":"Sh\u00f4 Aikawa","version":29,"id":"68988","lastModified":"1301901712000","name":"Sh\u00f4 Aikawa","type":"Person","_key":"42279"} +{"label":"Hitoshi Ozawa","version":20,"id":"68989","lastModified":"1301902363000","name":"Hitoshi Ozawa","type":"Person","_key":"42280"} +{"label":"The Tragedy of Macbeth","description":"A ruthlessly ambitious Scottish lord siezes the throne with the help of his scheming wife and a trio of witches.","id":"11316","runtime":140,"imdbId":"tt0067372","version":103,"lastModified":"1301903903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc93387017a3c57fe01531d\/the-tragedy-of-macbeth-mid.jpg","genre":"Drama","title":"The Tragedy of Macbeth","releaseDate":56160000000,"language":"en","type":"Movie","_key":"42281"} +{"label":"Martin Shaw","version":23,"id":"68985","lastModified":"1301901688000","name":"Martin Shaw","type":"Person","_key":"42282"} +{"label":"My Girl 2","description":"Vada Sultenfuss has a holiday coming up, and an assignment: to do and essay on someone she admires and has never met. She decides she wants to do an assignment on her mother, but quickly realises she knows very little about her. She manages to get her father to agree to let her go to LA to stay with her Uncle Phil and do some research on her mother. ","id":"11317","runtime":99,"imdbId":"tt0110613","version":133,"lastModified":"1301413454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32b\/4bc93388017a3c57fe01532b\/my-girl-2-mid.jpg","genre":"Comedy","title":"My Girl 2","releaseDate":760924800000,"language":"en","type":"Movie","_key":"42283"} +{"label":"The Madness of King George","description":"The story of the disintegration of a fond and foolish old man, who rules England, yet cannot find his way through the tangle of his own mind. It's not tragedy, because tragedy requires a fall from greatness, and George III is not great - merely lovable, and confused.","id":"11318","runtime":107,"imdbId":"tt0110428","trailer":"http:\/\/www.youtube.com\/watch?v=gCVHxguFzWQ","version":294,"lastModified":"1301902697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/330\/4bc93388017a3c57fe015330\/the-madness-of-king-george-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Comedy","title":"The Madness of King George","releaseDate":788572800000,"language":"en","type":"Movie","_key":"42284"} +{"label":"The Rescuers","description":"What can two little mice possibly do to save an orphan girl who's fallen into evil hands? With a little cooperation and faith in oneself, anything is possible! As members of the mouse-run International Rescue Aid Society, Bernard and Miss Bianca respond to orphan Penny's call for help. The two mice search for clues with the help of an old cat named Rufus.","id":"11319","runtime":78,"imdbId":"tt0076618","version":168,"lastModified":"1301901956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4d34fb9c7b9aa177db00a47c\/the-rescuers-mid.jpg","studio":"Walt Disney Productions","genre":"Adventure","title":"The Rescuers","releaseDate":235785600000,"language":"en","tagline":"Two tiny agents vs. the world's wickedest woman in a dazzling animated adventure!","type":"Movie","_key":"42285"} +{"label":"John Lounsbery","version":43,"id":"69003","lastModified":"1301901360000","name":"John Lounsbery","type":"Person","_key":"42286"} +{"label":"Joe Flynn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/204\/4caf353e7b9aa12139000204\/joe-flynn-profile.jpg","version":56,"id":"23586","lastModified":"1301901264000","name":"Joe Flynn","type":"Person","_key":"42287"} +{"label":"The Talking Cure","description":"No overview found.","id":"11320","runtime":0,"version":32,"lastModified":"1301907783000","studio":"Recorded Picture Company","title":"The Talking Cure","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"42288"} +{"label":"Seven Pounds","description":"An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers. ","id":"11321","runtime":123,"imdbId":"tt0814314","trailer":"http:\/\/www.youtube.com\/watch?v=hvu2F6t26hs&hd=1","homepage":"http:\/\/www.sonypictures.com\/movies\/sevenpounds\/","version":292,"lastModified":"1301900964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35a\/4bc9338f017a3c57fe01535a\/seven-pounds-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Seven Pounds","releaseDate":1229040000000,"language":"en","tagline":"Seven names. Seven strangers. One secret.","type":"Movie","_key":"42289"} +{"label":"Sarah Jane Morris","version":26,"id":"70304","lastModified":"1302074950000","name":"Sarah Jane Morris","type":"Person","_key":"42290"} +{"label":"Public Enemies","description":"In the shadow of the Great Depression, criminal minds are thriving -- notorious men like John Dillinger, \"Baby Face\" Nelson and \"Pretty Boy\" Floyd -- and it's up to J. Edgar Hoover and the FBI to bring them down.","id":"11322","runtime":140,"imdbId":"tt1152836","trailer":"http:\/\/www.youtube.com\/watch?v=EgqMb_xSXKs","homepage":"http:\/\/www.publicenemies.net\/","version":493,"lastModified":"1301900907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d6\/4ccce70d5e73d650200008d6\/public-enemies-mid.jpg","studio":"Forward Pass","genre":"Action","title":"Public Enemies","releaseDate":1246406400000,"language":"en","tagline":"America's Most Wanted","type":"Movie","_key":"42291"} +{"label":"The Informant!","description":"A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company\u2019s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.","id":"11323","runtime":108,"imdbId":"tt1130080","homepage":"http:\/\/theinformantmovie.warnerbros.com\/","version":361,"lastModified":"1301901749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/362\/4c8c31465e73d6068c000362\/the-informant-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"The Informant!","releaseDate":1253232000000,"language":"en","tagline":"Based on a tattle-tale.","type":"Movie","_key":"42292"} +{"label":"Shutter Island","description":"Drama is set in 1954, U.S. Marshal Teddy Daniels is investigating the disappearance of a murderess who escaped from a hospital for the criminally insane and is presumed to be hiding on the remote Shutter Island.","id":"11324","runtime":138,"imdbId":"tt1130884","trailer":"http:\/\/www.youtube.com\/watch?v=FCBAcvKeLpw","homepage":"http:\/\/www.shutterisland.com\/","version":562,"lastModified":"1301993068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/408\/4bf2adf6017a3c3215000408\/shutter-island-mid.jpg","studio":"Phoenix Pictures","genre":"Drama","title":"Shutter Island","releaseDate":1266537600000,"language":"en","tagline":"Someone is missing.","type":"Movie","_key":"42293"} +{"label":"Charlie Hewson","version":24,"id":"133046","lastModified":"1302075252000","name":"Charlie Hewson","type":"Person","_key":"42294"} +{"label":"Tommy","description":"A psychosomatically deaf, dumb and blind boy becomes a master pinball player and the object of a religious cult.","id":"11326","runtime":111,"imdbId":"tt0073812","version":289,"lastModified":"1302002981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f5\/4bc933a3017a3c57fe0153f5\/tommy-mid.jpg","genre":"Drama","title":"Tommy","releaseDate":164419200000,"language":"en","type":"Movie","_key":"42295"} +{"label":"Roger Daltrey","version":39,"id":"47096","lastModified":"1301901508000","name":"Roger Daltrey","type":"Person","_key":"42296"} +{"label":"Eric Clapton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4bdd726d017a3c20c700014c\/eric-clapton-profile.jpg","version":64,"birthday":"-781318800000","id":"2585","birthplace":"Ripley, Surrey, England, UK","lastModified":"1299492479000","name":"Eric Clapton","type":"Person","_key":"42297"} +{"label":"Midnight Express","description":"Billy Hayes is caught attempting to smuggle drugs out of Turkey. The Turkish courts decide to make an example of him, sentencing him to more than 30 years in prison. Hayes has two opportunities for release: the appeals made by his lawyer, his family, and the American government, or the \"Midnight Express\".","id":"11327","runtime":121,"imdbId":"tt0077928","version":190,"lastModified":"1301902098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/310\/4c31e1d07b9aa16662000310\/midnight-express-mid.jpg","studio":"Columbia Films S.A.","genre":"Drama","title":"Midnight Express","releaseDate":276480000000,"language":"en","type":"Movie","_key":"42298"} +{"label":"Brad Davis","version":24,"id":"69010","lastModified":"1301901840000","name":"Brad Davis","type":"Person","_key":"42299"} +{"label":"Irene Miracle","version":28,"id":"69011","lastModified":"1301901449000","name":"Irene Miracle","type":"Person","_key":"42300"} +{"label":"Pusher II","description":"Tony (Mads Mikkelsen) is released from prison - again. This time he has his mind set on changing his broken down life, but that is easier said than done","id":"11328","runtime":100,"imdbId":"tt0396184","version":142,"lastModified":"1301904560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/414\/4bc933a9017a3c57fe015414\/pusher-ii-mid.jpg","genre":"Action","title":"Pusher II","releaseDate":1103932800000,"language":"en","type":"Movie","_key":"42301"} +{"label":"Leif Sylvester","version":19,"id":"69012","lastModified":"1301901724000","name":"Leif Sylvester","type":"Person","_key":"42302"} +{"label":"Kurt Nielsen","version":20,"id":"69013","lastModified":"1301901724000","name":"Kurt Nielsen","type":"Person","_key":"42303"} +{"label":"Anne S\u00f8rensen","version":19,"id":"69014","lastModified":"1301901611000","name":"Anne S\u00f8rensen","type":"Person","_key":"42304"} +{"label":"Runaway Jury","description":"A juror on the inside and a woman on the outside manipulate a court trial involving a major gun manufacturer.","id":"11329","runtime":127,"imdbId":"tt0313542","version":234,"lastModified":"1301901903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5a\/4c0eb438017a3c7e8f000d5a\/runaway-jury-mid.jpg","genre":"Drama","title":"Runaway Jury","releaseDate":1065657600000,"language":"en","tagline":"Trials are too important to be decided by juries.","type":"Movie","_key":"42305"} +{"label":"Pusher 3","description":"No overview found.","id":"11330","runtime":90,"imdbId":"tt0425379","version":86,"lastModified":"1301903472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43e\/4bc933ae017a3c57fe01543e\/pusher-3-mid.jpg","genre":"Action","title":"Pusher 3","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"42306"} +{"label":"Marinela Dekic","version":19,"id":"69021","lastModified":"1301901874000","name":"Marinela Dekic","type":"Person","_key":"42307"} +{"label":"Ilyas Agac","version":19,"id":"69022","lastModified":"1301901874000","name":"Ilyas Agac","type":"Person","_key":"42308"} +{"label":"The Old Man and the Sea","description":"Based on one of Hemingway's most famous works, it centers upon Santiago, an aging, down on his luck Cuban fisherman. After catching nothing for nearly 3 months, he hooks a huge Marlin and struggles to land it far out in the Gulf Stream.","id":"11331","runtime":86,"imdbId":"tt0052027","version":194,"lastModified":"1301904702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/447\/4bc933af017a3c57fe015447\/the-old-man-and-the-sea-mid.jpg","genre":"Adventure","title":"The Old Man and the Sea","releaseDate":-354585600000,"language":"en","type":"Movie","_key":"42309"} +{"label":"Felipe Pazos","version":21,"id":"69025","lastModified":"1301901817000","name":"Felipe Pazos","type":"Person","_key":"42310"} +{"label":"Harry Bellaver","version":31,"id":"69026","lastModified":"1301902169000","name":"Harry Bellaver","type":"Person","_key":"42311"} +{"label":"Don Diamond","version":22,"id":"69027","lastModified":"1301901674000","name":"Don Diamond","type":"Person","_key":"42312"} +{"label":"8 1\/2 Women","description":"No overview found.","id":"11332","runtime":118,"imdbId":"tt0154443","version":147,"lastModified":"1301903975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4bc933af017a3c57fe01544c\/8-1-2-women-mid.jpg","genre":"Comedy","title":"8 1\/2 Women","releaseDate":927331200000,"language":"en","type":"Movie","_key":"42313"} +{"label":"Matthew Delamere","version":20,"id":"69032","lastModified":"1301901724000","name":"Matthew Delamere","type":"Person","_key":"42314"} +{"label":"Vivian Wu","version":30,"id":"69033","lastModified":"1301901561000","name":"Vivian Wu","type":"Person","_key":"42315"} +{"label":"Annie Shizuka Inoh","version":20,"id":"69034","lastModified":"1301901874000","name":"Annie Shizuka Inoh","type":"Person","_key":"42316"} +{"label":"Super Fuzz","description":"No overview found.","id":"11333","runtime":104,"imdbId":"tt0082924","version":240,"lastModified":"1301903862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72d\/4caa39605e73d643f000072d\/poliziotto-superpiu-mid.jpg","genre":"Action","title":"Super Fuzz","releaseDate":338083200000,"language":"en","type":"Movie","_key":"42317"} +{"label":"S.P.Q.R. 2000 e 1\/2 anni fa","description":"No overview found.","id":"11334","runtime":95,"imdbId":"tt0111049","version":56,"lastModified":"1301905002000","genre":"Comedy","title":"S.P.Q.R. 2000 e 1\/2 anni fa","releaseDate":815270400000,"language":"en","type":"Movie","_key":"42318"} +{"label":"Christian De Sica","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/464\/4bfa8188017a3c7031000464\/christian-de-sica-profile.jpg","biography":"Christian De Sica \u00e8 un attore, regista, sceneggiatore, doppiatore, cantante, presentatore italiano.\nMolto noto come volto del cinema italiano in quanto ogni anno esce un suo film al cinema durante il periodo di natale","version":75,"birthday":"-589251600000","id":"69036","birthplace":"Roma, Italy","lastModified":"1302005675000","name":"Christian De Sica","type":"Person","_key":"42319"} +{"label":"Massimo Boldi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b9\/4bfa80b7017a3c70370003b9\/massimo-boldi-profile.jpg","biography":"Massimo Boldi \u00e8 un attore e comico cabarettista italiano, attivo dagli anni 70 fino ai giorni nostri, famoso prima per i suoi personaggi comici e divertenti e poi negli ultimi anni per i suoi film di natale.","version":58,"birthday":"-730602000000","id":"69037","birthplace":"Luino, Varese, Italy","lastModified":"1301901859000","name":"Massimo Boldi","type":"Person","_key":"42320"} +{"label":"Carlo Vanzina","version":42,"id":"69038","lastModified":"1301901859000","name":"Carlo Vanzina","type":"Person","_key":"42321"} +{"label":"Popeye","description":"Popeye is a 1980 live-action film directed by Robert Altman and adapted from E. C. Segar's Thimble Theatre comic strip. The screenplay by Jules Feiffer was based directly on Thimble Theatre Starring Popeye the Sailor, a hardcover reprint collection of 1936-37 Segar strips published in 1971 by Woody Gelman's Nostalgia Press.\n\nMarketed with the tagline, \"The sailor man with the spinach can!\"","id":"11335","runtime":114,"imdbId":"tt0081353","version":204,"lastModified":"1301903352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45e\/4bc933b4017a3c57fe01545e\/popeye-mid.jpg","genre":"Action","title":"Popeye","releaseDate":345427200000,"language":"en","type":"Movie","_key":"42322"} +{"label":"The Dead Zone","description":"Johnny Smith is a schoolteacher with his whole life ahead of him. Unfortunately, after leaving his fiancee's home one night, he is involved in a wreck with an 18-wheeler and is in a coma for 5 years. When he wakes up from it, he discovers he has an ability to see into other people's lives, past, present and future, by coming into physical contact.","id":"11336","runtime":103,"imdbId":"tt0085407","version":201,"lastModified":"1301901871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/470\/4bc933b5017a3c57fe015470\/the-dead-zone-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Drama","title":"The Dead Zone","releaseDate":435542400000,"language":"en","type":"Movie","_key":"42323"} +{"label":"Brooke Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f7\/4c093acc017a3c7e920007f7\/brooke-adams-profile.jpg","version":36,"id":"69054","lastModified":"1302060489000","name":"Brooke Adams","type":"Person","_key":"42324"} +{"label":"Stardust Memories","description":"While attending a retrospect of his work, a filmmaker recalls his life and his loves: the inspirations for his films.","id":"11337","runtime":91,"imdbId":"tt0081554","version":99,"lastModified":"1301904231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/479\/4bc933b5017a3c57fe015479\/stardust-memories-mid.jpg","genre":"Comedy","title":"Stardust Memories","releaseDate":338774400000,"language":"en","type":"Movie","_key":"42325"} +{"label":"Jessica Harper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/255\/4cb5c5447b9aa138d9000255\/jessica-harper-profile.jpg","version":26,"id":"69055","lastModified":"1301901396000","name":"Jessica Harper","type":"Person","_key":"42326"} +{"label":"Into the Night","description":"Ed Okin used to have a boring life. He used to have trouble getting to sleep. Then one night, he met Diana. Now, Ed's having trouble staying alive.","id":"11338","runtime":115,"imdbId":"tt0089346","trailer":"http:\/\/www.youtube.com\/watch?v=1lVkYr6alfE","version":232,"lastModified":"1301903778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/493\/4bc933b8017a3c57fe015493\/into-the-night-mid.jpg","genre":"Action","title":"Into the Night","releaseDate":477273600000,"language":"en","type":"Movie","_key":"42327"} +{"label":"Stacey Pickren","version":24,"id":"69056","lastModified":"1301901963000","name":"Stacey Pickren","type":"Person","_key":"42328"} +{"label":"Johnny Flash","description":"No overview found.","id":"11339","runtime":77,"imdbId":"tt0091299","version":48,"lastModified":"1301902604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc933bb017a3c57fe01549c\/johnny-flash-mid.jpg","genre":"Comedy","title":"Johnny Flash","releaseDate":530409600000,"language":"en","type":"Movie","_key":"42329"} +{"label":"Heike-Melba Fendel","version":19,"id":"69058","lastModified":"1301901611000","name":"Heike-Melba Fendel","type":"Person","_key":"42330"} +{"label":"Marianne Traub","version":19,"id":"69059","lastModified":"1301901611000","name":"Marianne Traub","type":"Person","_key":"42331"} +{"label":"Werner Nekes","version":20,"id":"69060","lastModified":"1301901874000","name":"Werner Nekes","type":"Person","_key":"42332"} +{"label":"Banana Joe","description":"No overview found.","id":"11340","runtime":96,"imdbId":"tt0082045","version":85,"lastModified":"1301902376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d1\/4caa1efa5e73d643ed0005d1\/banana-joe-mid.jpg","genre":"Action","title":"Banana Joe","releaseDate":385862400000,"language":"en","type":"Movie","_key":"42333"} +{"label":"Marina Langner","version":20,"id":"69066","lastModified":"1301902082000","name":"Marina Langner","type":"Person","_key":"42334"} +{"label":"Mario Scarpetta","version":20,"id":"69067","lastModified":"1301902082000","name":"Mario Scarpetta","type":"Person","_key":"42335"} +{"label":"Gianfranco Barra","version":28,"id":"69068","lastModified":"1301901347000","name":"Gianfranco Barra","type":"Person","_key":"42336"} +{"label":"Die L\u00fcmmel von der ersten Bank","description":"No overview found.","id":"11341","version":16,"lastModified":"1301904716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/641\/4caa42445e73d643ed000641\/die-lummel-von-der-ersten-bank-mid.jpg","title":"Die L\u00fcmmel von der ersten Bank","language":"en","type":"Movie","_key":"42337"} +{"label":"Warlock","description":"A warlock flees from the 17th to the 20th century, with a witch-hunter in hot pursuit.","id":"11342","runtime":103,"imdbId":"tt0098622","version":163,"lastModified":"1301902476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b6\/4bc933bc017a3c57fe0154b6\/warlock-mid.jpg","studio":"New World Pictures","genre":"Action","title":"Warlock","releaseDate":663552000000,"language":"en","tagline":"Satan also has one son.","type":"Movie","_key":"42338"} +{"label":"Salem's Lot","description":"Vampires are invading a small New England town. It's up to a novelist and a young horror fan to save it.","id":"11343","runtime":184,"imdbId":"tt0079844","trailer":"http:\/\/www.youtube.com\/watch?v=oelTZxruNLc","version":227,"lastModified":"1301903453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c3\/4bc933bd017a3c57fe0154c3\/salem-s-lot-mid.jpg","genre":"Drama","title":"Salem's Lot","releaseDate":311644800000,"language":"en","tagline":"The ultimate in terror!","type":"Movie","_key":"42339"} +{"label":"Lance Kerwin","version":20,"id":"69070","lastModified":"1301901936000","name":"Lance Kerwin","type":"Person","_key":"42340"} +{"label":"Julie Cobb","version":24,"id":"121041","lastModified":"1301902359000","name":"Julie Cobb","type":"Person","_key":"42341"} +{"label":"Ed Flanders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b1\/4cc9be0c7b9aa16b9d0003b1\/ed-flanders-profile.jpg","version":33,"id":"70746","lastModified":"1301901522000","name":"Ed Flanders","type":"Person","_key":"42342"} +{"label":"Clarissa Kaye-Mason","version":23,"id":"124884","lastModified":"1301903078000","name":"Clarissa Kaye-Mason","type":"Person","_key":"42343"} +{"label":"Barney McFadden","version":23,"id":"124885","lastModified":"1301902701000","name":"Barney McFadden","type":"Person","_key":"42344"} +{"label":"A Bittersweet Life","description":"Kim Sun-woo is an enforcer and manager for a hotel owned by a cold, calculative crime boss, Kang who assigns Sun-Woo to a simple errand while he is away on a business trip; to shadow his young mistress, Heesoo, for fear that she may be cheating on him with another, younger man, with the mandate that he must kill them both if he discovers their affair.","id":"11344","runtime":120,"imdbId":"tt0456912","trailer":"http:\/\/www.youtube.com\/watch?v=I9izJOD5Yi4","homepage":"http:\/\/www.d-o-e-s.com\/collection\/bittersweet\/index0.html","version":97,"lastModified":"1301903282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d0\/4bc933be017a3c57fe0154d0\/dalkomhan-insaeng-mid.jpg","genre":"Action","title":"A Bittersweet Life","releaseDate":1112313600000,"language":"en","type":"Movie","_key":"42345"} +{"label":"Ku Jin","version":23,"id":"69078","lastModified":"1301901209000","name":"Ku Jin","type":"Person","_key":"42346"} +{"label":"Yeong-cheol Kim","version":19,"id":"69080","lastModified":"1301901254000","name":"Yeong-cheol Kim","type":"Person","_key":"42347"} +{"label":"The Zodiac","description":"An elusive serial killer known as the Zodiac terrorizes the San Francisco Bay in the late 1960s, while detectives aim to stop him before he claims more victims. Based on a true story.","id":"11345","runtime":158,"imdbId":"tt0371739","homepage":"http:\/\/thezodiacfilm.com\/","version":187,"lastModified":"1301903138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc933be017a3c57fe0154d9\/the-zodiac-mid.jpg","genre":"Crime","title":"The Zodiac","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"42348"} +{"label":"Alexander Bulkley","version":21,"id":"69089","lastModified":"1301902191000","name":"Alexander Bulkley","type":"Person","_key":"42349"} +{"label":"Kleinruppin forever","description":"No overview found.","id":"11346","runtime":103,"imdbId":"tt0362804","version":69,"lastModified":"1301904230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e2\/4bc933c2017a3c57fe0154e2\/kleinruppin-forever-mid.jpg","studio":"Akkord Film Produktion GmbH","genre":"Comedy","title":"Kleinruppin forever","releaseDate":1076198400000,"language":"en","type":"Movie","_key":"42350"} +{"label":"Tobias Kasimirowicz","version":22,"id":"69094","lastModified":"1301902136000","name":"Tobias Kasimirowicz","type":"Person","_key":"42351"} +{"label":"The Lair of the White Worm","description":"In a remote corner of England's Peak District, a mysterious skull is unearthed. But even weirder is that Lady Sylvia steals the skull for use in worshiping - very erotically - her pagan god, The White Worm, who hungers for the taste of virginal flesh.","id":"11347","runtime":93,"imdbId":"tt0095488","version":163,"lastModified":"1301903662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4eb\/4bc933c3017a3c57fe0154eb\/the-lair-of-the-white-worm-mid.jpg","genre":"Horror","title":"The Lair of the White Worm","releaseDate":590198400000,"language":"en","type":"Movie","_key":"42352"} +{"label":"Catherine Oxenberg","version":25,"id":"69098","lastModified":"1301901400000","name":"Catherine Oxenberg","type":"Person","_key":"42353"} +{"label":"Fr\u00e1giles","description":"At her new job in a rundown children's hospital, a nurse (Flockhart) desperately tries to keep her patients safe from a plague of random, mysterious attacks.","id":"11348","runtime":93,"imdbId":"tt0422272","homepage":"http:\/\/movies.filmax.com\/fragiles\/","version":68,"lastModified":"1301903684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac6\/4d1b4f165e73d6083400bac6\/fr-giles-mid.jpg","genre":"Horror","title":"Fr\u00e1giles","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"42354"} +{"label":"Calista Flockhart","version":24,"id":"49148","lastModified":"1301901475000","name":"Calista Flockhart","type":"Person","_key":"42355"} +{"label":"Cape Fear","description":"Sam Bowden, witnesses a rape committed by Max Cady and testifies against him. When released after 8 years in prison, Cady stalks Bowden and his family but is always clever enough not to violate the law. Bowden enlists the aid of a local police chief, a private detective and then hires thugs to harass Cady all to no avail. The film climaxes pitting Bowden and his family against Cady. ","id":"11349","runtime":105,"imdbId":"tt0055824","trailer":"http:\/\/www.youtube.com\/watch?v=73lZPln-A2I","version":198,"lastModified":"1301902786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/513\/4bc933c7017a3c57fe015513\/cape-fear-mid.jpg","genre":"Drama","title":"Cape Fear","releaseDate":-243734400000,"language":"en","type":"Movie","_key":"42356"} +{"label":"Lori Martin","version":20,"id":"69103","lastModified":"1301901812000","name":"Lori Martin","type":"Person","_key":"42357"} +{"label":"H\u00f6llentour","description":"No overview found.","id":"11350","runtime":120,"imdbId":"tt0411498","homepage":"http:\/\/www.hoellentour-derfilm.de\/ht\/","version":45,"lastModified":"1301907265000","genre":"Documentary","title":"H\u00f6llentour","releaseDate":1086825600000,"language":"en","type":"Movie","_key":"42358"} +{"label":"Erik Zabel","version":20,"id":"69106","lastModified":"1301902363000","name":"Erik Zabel","type":"Person","_key":"42359"} +{"label":"Rolf Aldag","version":19,"id":"69107","lastModified":"1301902256000","name":"Rolf Aldag","type":"Person","_key":"42360"} +{"label":"Andreas Kl\u00f6den","version":19,"id":"69108","lastModified":"1301902256000","name":"Andreas Kl\u00f6den","type":"Person","_key":"42361"} +{"label":"Alexander Vinokurov","version":19,"id":"69109","lastModified":"1301902256000","name":"Alexander Vinokurov","type":"Person","_key":"42362"} +{"label":"Steve Zampieri","version":19,"id":"69110","lastModified":"1301902082000","name":"Steve Zampieri","type":"Person","_key":"42363"} +{"label":"Dieter Ruthenberg","version":19,"id":"69111","lastModified":"1301902256000","name":"Dieter Ruthenberg","type":"Person","_key":"42364"} +{"label":"Mario Kummer","version":19,"id":"69112","lastModified":"1301902256000","name":"Mario Kummer","type":"Person","_key":"42365"} +{"label":"Serge Laget","version":19,"id":"69113","lastModified":"1301902256000","name":"Serge Laget","type":"Person","_key":"42366"} +{"label":"Werner Schweizer","version":21,"id":"69114","lastModified":"1301902328000","name":"Werner Schweizer","type":"Person","_key":"42367"} +{"label":"Jeepers Creepers II","description":"After 23 horrifying days of gorging on human flesh, an ancient creature known as the Creeper embarks on a final voracious feeding frenzy, terrorizing a group of varsity basketball players, cheerleaders and coaches stranded on a remote highway when their bus breaks down. The terrified group is forced to come together and do battle against the winged creature hell-bent on completing its grizzly ritual.","id":"11351","runtime":104,"imdbId":"tt0301470","version":139,"lastModified":"1301902182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4d0984857b9aa1441500007f\/jeepers-creepers-ii-mid.jpg","genre":"Horror","title":"Jeepers Creepers II","releaseDate":1053043200000,"language":"en","tagline":"He can taste your fear.","type":"Movie","_key":"42368"} +{"label":"Garikayi Mutambirwa","version":25,"id":"69119","lastModified":"1301901522000","name":"Garikayi Mutambirwa","type":"Person","_key":"42369"} +{"label":"Eric Nenninger","version":20,"id":"69120","lastModified":"1301901724000","name":"Eric Nenninger","type":"Person","_key":"42370"} +{"label":"Always","description":"Pete Sandich and buddy Al Yackey are daredevil aerial forest-fire fighters. Pete finds True Love with Dorinda but won't give up the job. When he takes one risk too many, Dorinda faces deep grief and cannot easily put her life back together.","id":"11352","runtime":122,"imdbId":"tt0096794","version":169,"lastModified":"1301903788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/529\/4bc933cc017a3c57fe015529\/always-mid.jpg","genre":"Disaster","title":"Always","releaseDate":630288000000,"language":"en","type":"Movie","_key":"42371"} +{"label":"Bowfinger","description":"When grasping director Bobby Bowfinger finally finds the 'perfect' script, he decides to put everything on the line and give it a shot. Gathering a hodge-podge cast and armed with a handful of illegal immigrants, a tiny budget, and stolen equipment Bowfinger lacks just one thing... Hollywood's hottest action star, Kit Ramsey. Bowfinger decides to shoot the film without Kit knowing he's in it.","id":"11353","runtime":97,"imdbId":"tt0131325","trailer":"http:\/\/www.youtube.com\/watch?v=PaFJwh9Sst4","version":362,"lastModified":"1301902430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01e\/4bf05605017a3c2d3700001e\/bowfinger-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Bowfinger","releaseDate":934502400000,"language":"en","tagline":"The con is on.","type":"Movie","_key":"42372"} +{"label":"Evan Gilner","version":18,"id":"92340","lastModified":"1301902908000","name":"Evan Gilner","type":"Person","_key":"42373"} +{"label":"Basil Grillo","version":18,"id":"92341","lastModified":"1301902641000","name":"Basil Grillo","type":"Person","_key":"42374"} +{"label":"Michele Panelli-Venetis","version":19,"id":"92342","lastModified":"1301902908000","name":"Michele Panelli-Venetis","type":"Person","_key":"42375"} +{"label":"Matt Rebenkoff","version":18,"id":"92343","lastModified":"1301902908000","name":"Matt Rebenkoff","type":"Person","_key":"42376"} +{"label":"Kohl Sudduth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6c\/4c70dbdf7b9aa13ab8000a6c\/kohl-sudduth-profile.jpg","version":42,"id":"92276","lastModified":"1301902224000","name":"Kohl Sudduth","type":"Person","_key":"42377"} +{"label":"Alejandro Patino","version":23,"id":"81957","lastModified":"1301992520000","name":"Alejandro Patino","type":"Person","_key":"42378"} +{"label":"Alfred De Contreras","version":18,"id":"92277","lastModified":"1301902909000","name":"Alfred De Contreras","type":"Person","_key":"42379"} +{"label":"Ramiro Fabian","version":18,"id":"92278","lastModified":"1301902909000","name":"Ramiro Fabian","type":"Person","_key":"42380"} +{"label":"Johnny Sanchez","version":23,"id":"60785","lastModified":"1301902297000","name":"Johnny Sanchez","type":"Person","_key":"42381"} +{"label":"Claude Brooks","version":18,"id":"92279","lastModified":"1301902909000","name":"Claude Brooks","type":"Person","_key":"42382"} +{"label":"Kevin Scannell","version":18,"id":"92280","lastModified":"1301902909000","name":"Kevin Scannell","type":"Person","_key":"42383"} +{"label":"John Prosky","version":21,"id":"42724","lastModified":"1301902119000","name":"John Prosky","type":"Person","_key":"42384"} +{"label":"Michael Dempsey","version":23,"id":"80301","lastModified":"1301902472000","name":"Michael Dempsey","type":"Person","_key":"42385"} +{"label":"Walter Powell","version":18,"id":"92281","lastModified":"1301902909000","name":"Walter Powell","type":"Person","_key":"42386"} +{"label":"Marisol Nichols","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b62\/4d4428dd5e73d66f59000b62\/marisol-nichols-profile.jpg","version":28,"id":"84457","lastModified":"1301901546000","name":"Marisol Nichols","type":"Person","_key":"42387"} +{"label":"Nathan Anderson","version":19,"id":"92282","lastModified":"1301902909000","name":"Nathan Anderson","type":"Person","_key":"42388"} +{"label":"Brogan Roche","version":18,"id":"92283","lastModified":"1301902909000","name":"Brogan Roche","type":"Person","_key":"42389"} +{"label":"Lloyd Berman","version":18,"id":"92284","lastModified":"1301902909000","name":"Lloyd Berman","type":"Person","_key":"42390"} +{"label":"Aaron Brumfield","version":19,"id":"92285","lastModified":"1301903049000","name":"Aaron Brumfield","type":"Person","_key":"42391"} +{"label":"Kimble Jemison","version":18,"id":"92286","lastModified":"1301902909000","name":"Kimble Jemison","type":"Person","_key":"42392"} +{"label":"Alex Craig Mann","version":18,"id":"92287","lastModified":"1301902909000","name":"Alex Craig Mann","type":"Person","_key":"42393"} +{"label":"Laura Grady","version":18,"id":"92288","lastModified":"1301902909000","name":"Laura Grady","type":"Person","_key":"42394"} +{"label":"Reamy Hall","version":18,"id":"92289","lastModified":"1301902909000","name":"Reamy Hall","type":"Person","_key":"42395"} +{"label":"Michelle Boehle","version":18,"id":"92290","lastModified":"1301902909000","name":"Michelle Boehle","type":"Person","_key":"42396"} +{"label":"Kimberly Baum","version":18,"id":"92291","lastModified":"1301902909000","name":"Kimberly Baum","type":"Person","_key":"42397"} +{"label":"Megan Denton","version":18,"id":"92292","lastModified":"1301902909000","name":"Megan Denton","type":"Person","_key":"42398"} +{"label":"Janet Jaeger","version":18,"id":"92293","lastModified":"1301902908000","name":"Janet Jaeger","type":"Person","_key":"42399"} +{"label":"Hope Wood","version":18,"id":"92294","lastModified":"1301902908000","name":"Hope Wood","type":"Person","_key":"42400"} +{"label":"Addie Yungmee","version":18,"id":"92295","lastModified":"1301902908000","name":"Addie Yungmee","type":"Person","_key":"42401"} +{"label":"Andrea Toste","version":18,"id":"92296","lastModified":"1301902908000","name":"Andrea Toste","type":"Person","_key":"42402"} +{"label":"Mindy","version":18,"id":"92297","lastModified":"1301902908000","name":"Mindy","type":"Person","_key":"42403"} +{"label":"Carl Kocis","version":18,"id":"92298","lastModified":"1301902908000","name":"Carl Kocis","type":"Person","_key":"42404"} +{"label":"Tiger Mendez","version":18,"id":"92299","lastModified":"1301902908000","name":"Tiger Mendez","type":"Person","_key":"42405"} +{"label":"Steve J. Termath","version":18,"id":"92300","lastModified":"1301902908000","name":"Steve J. Termath","type":"Person","_key":"42406"} +{"label":"Alan Oliney","version":21,"id":"92481","lastModified":"1301902743000","name":"Alan Oliney","type":"Person","_key":"42407"} +{"label":"The Upside of Anger","description":"When her husband unexpectedly disappears, a sharp-witted suburban wife and her daughters juggle their mom's romantic dilemmas and family dynamics.","id":"11354","runtime":118,"imdbId":"tt0365885","homepage":"http:\/\/www.newline.com\/properties\/upsideofanger.html","version":195,"lastModified":"1301903384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4bc933d0017a3c57fe01553f\/the-upside-of-anger-mid.jpg","studio":"Media 8 Entertainment","genre":"Comedy","title":"The Upside of Anger","releaseDate":1106438400000,"language":"en","type":"Movie","_key":"42408"} +{"label":"Never Been Kissed","description":"A copy editor in her early 20s gets her chance to become a reporter at a Chicago daily. She's sent to do a feature on what cool high schoolers are doing. To really find out, she goes undercover as a student. Back at school, she gets to repair her own scarred teen psyche, as she was a total geek in her first go-around.","id":"11355","runtime":107,"imdbId":"tt0151738","version":166,"lastModified":"1301903393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a09\/4d1fe04e7b9aa1737b001a09\/never-been-kissed-mid.jpg","genre":"Comedy","title":"Never Been Kissed","releaseDate":923616000000,"language":"en","tagline":"A Comedy With Class.","type":"Movie","_key":"42409"} +{"label":"Jenny Bicks","version":28,"id":"66962","lastModified":"1301901953000","name":"Jenny Bicks","type":"Person","_key":"42410"} +{"label":"The Odd Couple","description":"Felix Ungar has just broken up with his wife. Despondent, he goes to kill himself but is saved by his friend Oscar Madison. With nowhere else to go, Felix is urged by Oscar to move in with him, at least for a while. The only problem is that Felix is neat, tidy, and neurotic, whereas Oscar is slovenly and casual.","id":"11356","runtime":106,"imdbId":"tt0063374","version":160,"lastModified":"1301904510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/559\/4bc933d5017a3c57fe015559\/the-odd-couple-mid.jpg","genre":"Comedy","title":"The Odd Couple","releaseDate":-51753600000,"language":"en","type":"Movie","_key":"42411"} +{"label":"Gene Saks","version":32,"id":"69300","lastModified":"1301901714000","name":"Gene Saks","type":"Person","_key":"42412"} +{"label":"Halloween 4: The Return of Michael Myers","description":"The legend of that creepy masked-man, Michael Myers, comes to life once again in this fourth installment of the successful horror franchise. This time, it's Michael's niece, Jamie, who can't seem to escape her crazy uncle. With Michael on the loose, Jamie enlists the help of good old Dr. Loomis to stop the murderer. This time, though, there seems to be no end to Michael's madness.","id":"11357","runtime":88,"imdbId":"tt0095271","version":227,"lastModified":"1301902892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12f\/4c951cf97b9aa10d5a00012f\/halloween-4-the-return-of-michael-myers-mid.jpg","genre":"Horror","title":"Halloween 4: The Return of Michael Myers","releaseDate":593395200000,"language":"en","tagline":"Horror has returned to Haddonfield.","type":"Movie","_key":"42413"} +{"label":"George P. Wilbur","version":23,"id":"69129","lastModified":"1301902365000","name":"George P. Wilbur","type":"Person","_key":"42414"} +{"label":"Kathleen Kinmont","version":29,"id":"69130","lastModified":"1301958739000","name":"Kathleen Kinmont","type":"Person","_key":"42415"} +{"label":"Walking Tall","description":"When a former member of the U.S. Army Special Forces returns to his small hometown hoping to realize a childhood dream of working in the local lumber mill, he discovers that much has changed, as the normally tranquil town is now besieged by drugs, outbreaks of violence and a general feeling of malaise and terror, with many pointing a finger at the influence of a crooked c","id":"11358","runtime":86,"imdbId":"tt0351977","trailer":"http:\/\/www.youtube.com\/watch?v=1563","version":197,"lastModified":"1301901837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/581\/4bc933d9017a3c57fe015581\/walking-tall-mid.jpg","genre":"Action","title":"Walking Tall","releaseDate":1080864000000,"language":"en","tagline":"One man will stand up for what's right.","type":"Movie","_key":"42416"} +{"label":"Kevin Bray","version":25,"id":"34453","lastModified":"1301901685000","name":"Kevin Bray","type":"Person","_key":"42417"} +{"label":"Cobie Smulders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/187\/4ceecb155e73d654f9000187\/cobie-smulders-profile.jpg","version":44,"id":"71189","lastModified":"1301901334000","name":"Cobie Smulders","type":"Person","_key":"42418"} +{"label":"The Indian in the Cupboard","description":"A nine-year-old boy gets a plastic Indian and a cupboard for his birthday and finds himself involved in adventure when the Indian comes to life and befriends him.","id":"11359","runtime":96,"imdbId":"tt0113419","version":150,"lastModified":"1301902546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58a\/4bc933da017a3c57fe01558a\/the-indian-in-the-cupboard-mid.jpg","genre":"Adventure","title":"The Indian in the Cupboard","releaseDate":805680000000,"language":"en","type":"Movie","_key":"42419"} +{"label":"Hal Scardino","version":22,"id":"69301","lastModified":"1301902082000","name":"Hal Scardino","type":"Person","_key":"42420"} +{"label":"Litefoot","version":24,"id":"69302","lastModified":"1301901723000","name":"Litefoot","type":"Person","_key":"42421"} +{"label":"Dumbo","description":"Dumbo is a baby elephant born with oversized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy -- Timothy the Mouse -- the pint-sized pachyderm learns to surmount all obstacles.","id":"11360","runtime":64,"imdbId":"tt0033563","trailer":"http:\/\/www.youtube.com\/watch?v=22v-1eMIl40","version":143,"lastModified":"1301901385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/948\/4cfb3d1b5e73d62999002948\/dumbo-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Dumbo","releaseDate":-889660800000,"language":"en","tagline":"The One...The Only...The FABULOUS...","type":"Movie","_key":"42422"} +{"label":"John McLeish","version":27,"id":"69136","lastModified":"1301901299000","name":"John McLeish","type":"Person","_key":"42423"} +{"label":"Halloween 5","description":"Presumed dead after a shoot-out with the Haddonfield police, Michael Myers is secretly nursed back to health -- and returns a year later to kill again and once more targets his young niece, Jamie. Jamie is now recovering in the local children's hospital after attacking her stepmother and losing her voice. Her mental link with her evil uncle may be the key to uprooting her family tree.","id":"11361","runtime":96,"imdbId":"tt0097474","version":113,"lastModified":"1301903151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4c951d9f7b9aa10d5b000145\/halloween-5-mid.jpg","genre":"Horror","title":"Halloween 5","releaseDate":624240000000,"language":"en","tagline":"Michael Lives, And This Time They're Ready!","type":"Movie","_key":"42424"} +{"label":"The Count of Monte Cristo","description":"Edmond Dant\u00e9s's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dant\u00e9s escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.","id":"11362","runtime":131,"imdbId":"tt0245844","trailer":"http:\/\/www.youtube.com\/watch?v=zzULuO1cBSc","version":164,"lastModified":"1302010330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b56\/4d4b6aa87b9aa13aab006b56\/the-count-of-monte-cristo-mid.jpg","genre":"Action","title":"The Count of Monte Cristo","releaseDate":1011744000000,"language":"en","tagline":"Prepare for adventure. Count on revenge.","type":"Movie","_key":"42425"} +{"label":"JB Blanc","version":18,"id":"136152","lastModified":"1301902980000","name":"JB Blanc","type":"Person","_key":"42426"} +{"label":"She's the One","description":"Mickey, a free-spirited New York cabbie, and Francis, a materialistic Wall Street stockbroker, are extremely competitive and confused about women as a result of their father's influence. Though they disagree about everything, they have one thing in common: Mickey's ex-fiance Heather is Francis's secret love. Though both brothers have beautiful wives, Heather triggers their longtime sibling rivalry","id":"11363","runtime":96,"imdbId":"tt0117628","version":135,"lastModified":"1301903534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4bc933e2017a3c57fe0155c1\/she-s-the-one-mid.jpg","genre":"Comedy","title":"She's the One","releaseDate":841017600000,"language":"en","type":"Movie","_key":"42427"} +{"label":"Regarding Henry","description":"Henry is a lawyer who survives a shooting only to find he cannot remember anything. If that weren't enough, Henry also has to recover his speech and mobility, in a life he no longer fits into. Fortunately, Henry has a loving wife and daughter to help him.","id":"11364","runtime":108,"imdbId":"tt0102768","trailer":"http:\/\/www.youtube.com\/watch?v=2303","version":246,"lastModified":"1301907100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ca\/4bc933e2017a3c57fe0155ca\/regarding-henry-mid.jpg","genre":"Drama","title":"Regarding Henry","releaseDate":679104000000,"language":"en","type":"Movie","_key":"42428"} +{"label":"Michael Haley","version":25,"id":"18274","lastModified":"1301901310000","name":"Michael Haley","type":"Person","_key":"42429"} +{"label":"Wilde","description":"The story of Oscar Wilde, genius, poet, playwright and the First Modern Man. The self-realisation of his homosexuality caused Wilde enormous torment as he juggled marriage, fatherhood and responsibility with his obsessive love for Lord Alfred Douglas, nicknamed Bosie. After legal action instigated by Bosie's father, Wilde refused to flee the country and was sentenced to to two years at hard labour","id":"11365","runtime":118,"imdbId":"tt0120514","homepage":"http:\/\/www.oscarwilde.com\/","version":159,"lastModified":"1301903095000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/836\/4d55f0895e73d617ba006836\/wilde-mid.jpg","genre":"Drama","title":"Wilde","releaseDate":873072000000,"language":"en","type":"Movie","_key":"42430"} +{"label":"Brian J. Gilbert","version":31,"id":"60260","lastModified":"1301901497000","name":"Brian J. Gilbert","type":"Person","_key":"42431"} +{"label":"Uzumaki","description":"In a small town in Japan, Kirie comes upon her boyfriend's father silently videotaping a snail. Later, the mans obsession with spirals becomes more and more bizarre, ending in his suicide in a washing machine which turn his body into a spiral. Soon other inhabitants become possessed with different forms of spirals.","id":"11366","runtime":90,"imdbId":"tt0244870","version":249,"lastModified":"1302038672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ec\/4bc933e6017a3c57fe0155ec\/uzumaki-mid.jpg","genre":"Fantasy","title":"Uzumaki","releaseDate":950227200000,"language":"en","type":"Movie","_key":"42432"} +{"label":"Eriko Hatsune","version":21,"id":"69287","lastModified":"1301901874000","name":"Eriko Hatsune","type":"Person","_key":"42433"} +{"label":"Fhi Fan","version":19,"id":"69288","lastModified":"1301902256000","name":"Fhi Fan","type":"Person","_key":"42434"} +{"label":"Eun-Kyung Shin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bd\/4d1034a07b9aa1147a0000bd\/eun-kyung-shin-profile.jpg","version":28,"id":"69289","lastModified":"1301901532000","name":"Eun-Kyung Shin","type":"Person","_key":"42435"} +{"label":"Higuchinsky","version":19,"id":"69290","lastModified":"1301902256000","name":"Higuchinsky","type":"Person","_key":"42436"} +{"label":"Odds and Evens","description":"No overview found.","id":"11367","runtime":109,"imdbId":"tt0078058","version":96,"lastModified":"1301903460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4c4b1dad5e73d62a3f000019\/pari-e-dispari-mid.jpg","genre":"Comedy","title":"Odds and Evens","releaseDate":282441600000,"language":"en","type":"Movie","_key":"42437"} +{"label":"Blood Simple","description":"A rich but jealous man hires a private investigator to kill his cheating wife and her new man. But, when blood is involved, nothing is simple.","id":"11368","runtime":99,"imdbId":"tt0086979","trailer":"http:\/\/www.youtube.com\/watch?v=vI0ov8zzfQA","version":161,"lastModified":"1301907560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bd\/4ca6935b5e73d643f00000bd\/blood-simple-mid.jpg","studio":"River Road Entertainment","genre":"Drama","title":"Blood Simple","releaseDate":463363200000,"language":"en","type":"Movie","_key":"42438"} +{"label":"Suck My Dick","description":"No overview found.","id":"11369","runtime":79,"imdbId":"tt0295640","version":57,"lastModified":"1301904230000","genre":"Comedy","title":"Suck My Dick","releaseDate":1005177600000,"language":"en","type":"Movie","_key":"42439"} +{"label":"Wolfgang Joop","version":20,"id":"69255","lastModified":"1301902332000","name":"Wolfgang Joop","type":"Person","_key":"42440"} +{"label":"The Musketeer","description":"In Peter Hyams's adaptation of the famous Alexander Dumas story The Three Musketeers, the young D'Artagnan seeks to join the legendary musketeer brigade and avenge his father's death - but he finds that the musketeers have been disbanded.","id":"11370","runtime":104,"imdbId":"tt0246544","version":198,"lastModified":"1301903138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4c32f20e7b9aa174e4000076\/the-musketeer-mid.jpg","genre":"Action","title":"The Musketeer","releaseDate":999820800000,"language":"en","type":"Movie","_key":"42441"} +{"label":"The Score","description":"An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.","id":"11371","runtime":124,"imdbId":"tt0227445","trailer":"http:\/\/www.youtube.com\/watch?v=2263","version":199,"lastModified":"1301902402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/611\/4bc933e9017a3c57fe015611\/the-score-mid.jpg","genre":"Action","title":"The Score","releaseDate":994636800000,"language":"en","type":"Movie","_key":"42442"} +{"label":"The Eagle Has Landed","description":"When the Nazi high command learns in late 1943 that Winston Churchill will be spending time at a country estate in Norfolk, it hatches an audacious scheme to kidnap the prime minister and spirit him to Germany for enforced negotiations with Der F\u00fchrer.","id":"11372","runtime":135,"imdbId":"tt0074452","version":99,"lastModified":"1301902466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e9\/4c61dd6f7b9aa1775a0001e9\/the-eagle-has-landed-mid.jpg","studio":"Incorporated Television Company","genre":"Action","title":"The Eagle Has Landed","releaseDate":220320000000,"language":"en","type":"Movie","_key":"42443"} +{"label":"Jagoda u supermarketu","description":"No overview found.","id":"11373","runtime":90,"imdbId":"tt0322807","version":80,"lastModified":"1301904034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4bc933ef017a3c57fe015635\/jagoda-u-supermarketu-mid.jpg","studio":"Rasta International","genre":"Comedy","title":"Jagoda u supermarketu","releaseDate":1044489600000,"language":"en","type":"Movie","_key":"42444"} +{"label":"Nikola Simi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cf\/4d642a397b9aa129750002cf\/nikola-simi-profile.jpg","version":36,"id":"69147","lastModified":"1301901686000","name":"Nikola Simi\u0107","type":"Person","_key":"42445"} +{"label":"Goran Radakovic","version":22,"id":"28392","lastModified":"1301902185000","name":"Goran Radakovic","type":"Person","_key":"42446"} +{"label":"Danilo Lazovic","version":21,"id":"69148","lastModified":"1301902375000","name":"Danilo Lazovic","type":"Person","_key":"42447"} +{"label":"Dubravka Mijatovic","version":21,"id":"69149","lastModified":"1301902347000","name":"Dubravka Mijatovic","type":"Person","_key":"42448"} +{"label":"EDtv","description":"Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.","id":"11374","runtime":122,"imdbId":"tt0131369","version":116,"lastModified":"1301907558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/642\/4bc933f0017a3c57fe015642\/edtv-mid.jpg","genre":"Comedy","title":"EDtv","releaseDate":922406400000,"language":"en","type":"Movie","_key":"42449"} +{"label":"Hollywood Homicide","description":"Joe Gavilan (Harrison Ford) and his new partner K. C. Calden (Josh Hartnett), are detectives on the beat in Tinseltown. Neither one of them really wants to be a cop, Gavilan moonlights as a real estate broker, and Calden is an aspiring actor moonlighting as a yoga instructor. When the two are assigned a big case they must work out whether they want to solve the case or follow their hearts.","id":"11375","runtime":116,"imdbId":"tt0329717","version":128,"lastModified":"1301906837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64f\/4bc933f1017a3c57fe01564f\/hollywood-homicide-mid.jpg","genre":"Action","title":"Hollywood Homicide","releaseDate":1055203200000,"language":"en","type":"Movie","_key":"42450"} +{"label":"Gladys Knight","version":24,"id":"10676","lastModified":"1301901915000","name":"Gladys Knight","type":"Person","_key":"42451"} +{"label":"Swimming Pool - Der Tod feiert mit","description":"No overview found.","id":"11376","runtime":89,"imdbId":"tt0283027","version":82,"lastModified":"1301903974000","genre":"Horror","title":"Swimming Pool - Der Tod feiert mit","releaseDate":1002153600000,"language":"en","type":"Movie","_key":"42452"} +{"label":"Thorsten Grasshoff","version":20,"id":"25925","lastModified":"1301902187000","name":"Thorsten Grasshoff","type":"Person","_key":"42453"} +{"label":"John Hopkins","version":30,"id":"9953","lastModified":"1301901690000","name":"John Hopkins","type":"Person","_key":"42454"} +{"label":"Boris von Sychowski","version":20,"id":"69219","lastModified":"1301902332000","name":"Boris von Sychowski","type":"Person","_key":"42455"} +{"label":"House on Haunted Hill","description":"An eccentric millionaire named Steven Price invites a diverse group of people to a reputedly haunted mansion that was formerly the site of an insane asylum. Steven offers his guests $1,000,000 each if they can spend the entire night at the old house without fleeing in terror. It sounds simple enough, but when those stories about ghosts haunting the mansion turn out to be true, the guests may no lo","id":"11377","runtime":93,"imdbId":"tt0185371","version":154,"lastModified":"1301902734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/662\/4bc933f5017a3c57fe015662\/house-on-haunted-hill-mid.jpg","genre":"Horror","title":"House on Haunted Hill","releaseDate":940982400000,"language":"en","tagline":"Evil loves to party.","type":"Movie","_key":"42456"} +{"label":"Trafic","description":"Mr. Hulot drives a recreational vehicle from Paris to Amsterdam in his usual comic, disasterous style.","id":"11378","runtime":96,"imdbId":"tt0069400","version":137,"lastModified":"1301907672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66f\/4bc933f8017a3c57fe01566f\/trafic-mid.jpg","genre":"Comedy","title":"Trafic","releaseDate":40608000000,"language":"en","type":"Movie","_key":"42457"} +{"label":"Tony Knepper","version":22,"id":"69212","lastModified":"1301902390000","name":"Tony Knepper","type":"Person","_key":"42458"} +{"label":"Maria Kimberly","version":22,"id":"69213","lastModified":"1301901994000","name":"Maria Kimberly","type":"Person","_key":"42459"} +{"label":"Marcel Fraval","version":20,"id":"69214","lastModified":"1301902179000","name":"Marcel Fraval","type":"Person","_key":"42460"} +{"label":"The Adventures of Buckaroo Banzai Across the 8th Dimension","description":"Adventurer\/surgeon\/rock musician Buckaroo Banzai and his band of men, the Hong Kong Cavaliers, take on evil alien invaders from the 8th dimension.","id":"11379","runtime":103,"imdbId":"tt0086856","trailer":"http:\/\/www.youtube.com\/watch?v=1054","version":152,"lastModified":"1301902882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67c\/4bc933fa017a3c57fe01567c\/the-adventures-of-buckaroo-banzai-across-the-8th-dimension-mid.jpg","studio":"Sherwood","genre":"Comedy","title":"The Adventures of Buckaroo Banzai Across the 8th Dimension","releaseDate":461376000000,"language":"en","tagline":"Beings from Another Dimension have invaded your world.","type":"Movie","_key":"42461"} +{"label":"W.D. Richter","version":30,"id":"18179","lastModified":"1301901263000","name":"W.D. Richter","type":"Person","_key":"42462"} +{"label":"Bones","description":"No overview found.","id":"11380","runtime":96,"imdbId":"tt0166110","version":144,"lastModified":"1301902734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68b\/4bc933fd017a3c57fe01568b\/bones-mid.jpg","genre":"Action","title":"Bones","releaseDate":1004054400000,"language":"en","type":"Movie","_key":"42463"} +{"label":"Tommy Boy","description":"Party animal Tommy Callahan is a few cans short of a six-pack. But when the family business starts tanking, it's up to Tommy and number-cruncher Richard Hayden to save the day.","id":"11381","runtime":97,"imdbId":"tt0114694","version":232,"lastModified":"1301902117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/698\/4bc933fe017a3c57fe015698\/tommy-boy-mid.jpg","genre":"Comedy","title":"Tommy Boy","releaseDate":796608000000,"language":"en","tagline":"If at first you don't succeed, lower your standards.","type":"Movie","_key":"42464"} +{"label":"Bullets Over Broadway","description":"Set in 1920's New York City, this movie tells the story of idealistic young playwright David Shayne. Producer Julian Marx finally finds funding for the project from gangster Nick Valenti. The catch is that Nick's girl friend Olive Neal gets the part of a psychiatrist, and Olive is a bimbo who could never pass for a psychiatrist as well as being a dreadful actress. Agreeing to this first compromise is the first step to Broadway's complete seduction of David, who neglects longtime girl friend Elle","id":"11382","runtime":98,"imdbId":"tt0109348","version":116,"lastModified":"1302039328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b0\/4bc93401017a3c57fe0156b0\/bullets-over-broadway-mid.png","genre":"Comedy","title":"Bullets Over Broadway","releaseDate":782092800000,"language":"en","type":"Movie","_key":"42465"} +{"label":"The Living Desert","description":"No overview found.","id":"11383","runtime":69,"imdbId":"tt0046008","version":68,"lastModified":"1301904653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/260\/4d7eee407b9aa13f87003260\/the-living-desert-mid.jpg","genre":"Documentary","title":"The Living Desert","releaseDate":-509414400000,"language":"en","type":"Movie","_key":"42466"} +{"label":"The Hard Way","description":"Nick Lang is a famous actor, well know for his action movies. For the next film he needs the proper motivation and inspiration for his roll. Thus he teams up with the reluctant N.Y. cop John Moss. Not only does he have to put up with Nick who is laborious and out of touch with realities, but he also has to catch a cold-blooded murderer.","id":"11384","runtime":111,"imdbId":"tt0102004","version":149,"lastModified":"1302023285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b9\/4bc93406017a3c57fe0156b9\/the-hard-way-mid.jpg","genre":"Action","title":"The Hard Way","releaseDate":668390400000,"language":"en","type":"Movie","_key":"42467"} +{"label":"Hatari!","description":"A group of men trap wild animals in Africa and sell them to zoos. Will the arrival of a female wildlife photographer change their ways?","id":"11385","runtime":157,"imdbId":"tt0056059","version":111,"lastModified":"1301902455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4d5f499a5e73d60c68002131\/hatari-mid.jpg","genre":"Action","title":"Hatari!","releaseDate":-237859200000,"language":"en","type":"Movie","_key":"42468"} +{"label":"The Crying Game","description":"The Crying Game is about the main character Fergus' experiences as a member of the IRA, his brief but meaningful encounter with Jody who is held prisoner by the group, and his unexpected romantic relationship with Jody's girlfriend, Dil whom Fergus promised Jody he would protect. Events force Fergus to decide what he wants for the future, and ultimately what his nature dictates that he must do. ","id":"11386","runtime":112,"imdbId":"tt0104036","trailer":"http:\/\/www.youtube.com\/watch?v=761","version":139,"lastModified":"1301907515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cf\/4bc93408017a3c57fe0156cf\/the-crying-game-mid.jpg","genre":"Crime","title":"The Crying Game","releaseDate":715392000000,"language":"en","type":"Movie","_key":"42469"} +{"label":"Lord Jim","description":"After being discredited as a coward, a 19th century seaman (Peter O'Toole) lives for only one purpose: to redeem himself. Based on Joseph Conrad's novel written in 1900.","id":"11387","runtime":154,"imdbId":"tt0059399","version":90,"lastModified":"1301903138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f6\/4c6567d77b9aa1775a0006f6\/lord-jim-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Lord Jim","releaseDate":-153014400000,"language":"en","type":"Movie","_key":"42470"} +{"label":"Tatsuo Saito","version":22,"id":"69166","lastModified":"1301902222000","name":"Tatsuo Saito","type":"Person","_key":"42471"} +{"label":"Juzo Itami","version":29,"id":"69167","lastModified":"1301902173000","name":"Juzo Itami","type":"Person","_key":"42472"} +{"label":"Stay Cool","description":"The film centers on a successful author who is forced to confront an unrequited high school crush when he returns home to deliver a commencement address to graduating seniors. Shasta O'Neil, a sexy high school senior flirts with the visiting author and invites him to the prom.","id":"11388","runtime":0,"imdbId":"tt1235807","trailer":"http:\/\/www.youtube.com\/watch?v=l39L0bJTJyM","homepage":"http:\/\/www.staycoolthemovie.net\/","version":121,"lastModified":"1301903975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4c8b39657b9aa167440000bc\/stay-cool-mid.jpg","genre":"Comedy","title":"Stay Cool","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"42473"} +{"label":"Josh Holloway","version":23,"id":"28658","lastModified":"1301901509000","name":"Josh Holloway","type":"Person","_key":"42474"} +{"label":"The Olsen Gang","description":"The first of 13 Olsenbanden films presents us with Egon Olsen, head of the gang, and his friends Benny and Kjeld, who want to become the best known gang in Denmark and eventually Europe by stealing a famous Bavarian work of art currently displayed in a Copenhagen museum. Although Egon's plan works out fine, there is only trouble ahead for the little gang.","id":"11389","runtime":77,"imdbId":"tt0063386","version":87,"lastModified":"1301903718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d8\/4bc93408017a3c57fe0156d8\/olsen-banden-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang","releaseDate":-38620800000,"language":"en","type":"Movie","_key":"42475"} +{"label":"Erik Balling","version":57,"id":"69174","lastModified":"1301901563000","name":"Erik Balling","type":"Person","_key":"42476"} +{"label":"Morten Grunwald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4c9dd11f7b9aa1578e00006a\/morten-grunwald-profile.jpg","version":50,"id":"69180","lastModified":"1301901285000","name":"Morten Grunwald","type":"Person","_key":"42477"} +{"label":"Poul Bundgaard","version":53,"id":"69181","lastModified":"1301901444000","name":"Poul Bundgaard","type":"Person","_key":"42478"} +{"label":"Peter Steen","version":28,"id":"69182","lastModified":"1301902176000","name":"Peter Steen","type":"Person","_key":"42479"} +{"label":"The Olsen Gang in Jutland","description":"The Olsen gang in Jutland. Ones again Egon Olsen has a plan when he gets out of Vridslose State Prison. He has found out that the Germans left a large sum of money (in American dollars and gold bars) in one of their commando bunkers, when they were defeated in 1945; the only problem it's in Jutland. Egon, Benny and Kjeld \"appropriate\" a car and drives to Jutland along with Kjelds wife and child Yvonne and Borge. They look forward to fooling the the people in Jutland, but of course, things don't ","id":"11390","runtime":96,"imdbId":"tt0067524","version":49,"lastModified":"1301906615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ea\/4bc9340a017a3c57fe0156ea\/olsen-banden-i-jylland-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang in Jutland","releaseDate":55728000000,"language":"en","type":"Movie","_key":"42480"} +{"label":"Kirsten Walther","version":30,"id":"69183","lastModified":"1301902313000","name":"Kirsten Walther","type":"Person","_key":"42481"} +{"label":"The Olsen Gang on the Track","id":"11391","runtime":100,"imdbId":"tt0073482","version":57,"lastModified":"1301904673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fc\/4bc9340c017a3c57fe0156fc\/olsen-banden-pa-sporet-mid.jpg","studio":"Nordic Film","genre":"Comedy","title":"The Olsen Gang on the Track","releaseDate":180921600000,"language":"en","type":"Movie","_key":"42482"} +{"label":"Kirsten Walther","version":26,"id":"69186","lastModified":"1301902082000","name":"Kirsten Walther","type":"Person","_key":"42483"} +{"label":"The Olsen Gang Sees Red","description":"Egon and the gang are hired to stage a robbery of an antique Chinese vase for an economically challenged baron. Naturally they fooled, which infuriates Egon. The gang tries to get back at the baron by switching the vase with a cheap Hong Kong copy. One attempt is made during the barons hunting party, where Egon ends up being bricked up in the catacombs. In another attempt, the gang has to coordinate breaking through several walls at The Royal Theater in Copenhagen with the \"Elverh\u00f8j\" overture.","id":"11392","runtime":100,"imdbId":"tt0075002","version":48,"lastModified":"1301904440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc9340f017a3c57fe01570a\/olsen-banden-ser-rdt-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang Sees Red","releaseDate":212976000000,"language":"en","type":"Movie","_key":"42484"} +{"label":"The Natural","description":"An unknown middle-aged batter named Roy Hobbs with a mysterious past appears out of nowhere to take a losing 1930s baseball team to the top of the league in this magical sports fantasy. With the aid of a bat cut from a lightning struck tree, Hobbs lives the fame he should have had earlier when, as a rising pitcher, he is inexplicably shot by a young woman. ","id":"11393","runtime":137,"imdbId":"tt0087781","version":151,"lastModified":"1302065461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/718\/4bc93411017a3c57fe015718\/the-natural-mid.jpg","genre":"Drama","title":"The Natural","releaseDate":453081600000,"language":"en","tagline":"He lived for a dream that wouldn't die.","type":"Movie","_key":"42485"} +{"label":"Jazzclub - Der fr\u00fche Vogel f\u00e4ngt den Wurm","description":"No overview found.","id":"11394","runtime":84,"imdbId":"tt0388458","version":42,"lastModified":"1301904040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72f\/4bc93413017a3c57fe01572f\/jazzclub-der-fruhe-vogel-fangt-den-wurm-mid.jpg","genre":"Comedy","title":"Jazzclub - Der fr\u00fche Vogel f\u00e4ngt den Wurm","releaseDate":1080777600000,"language":"en","type":"Movie","_key":"42486"} +{"label":"The Santa Clause","description":"Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.","id":"11395","runtime":97,"imdbId":"tt0111070","trailer":"http:\/\/www.youtube.com\/watch?v=t067u2Jnks0","version":119,"lastModified":"1301902841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/312\/4cfbfd317b9aa1514b003312\/the-santa-clause-mid.jpg","studio":"Australian Broadcasting Channel","genre":"Comedy","title":"The Santa Clause","releaseDate":784512000000,"language":"en","tagline":"What if your dad was Santa Claus?","type":"Movie","_key":"42487"} +{"label":"Paige Tamada","version":19,"id":"141801","lastModified":"1301901854000","name":"Paige Tamada","type":"Person","_key":"42488"} +{"label":"Les Aventuriers","description":"Two adventurers and best friends, Roland and Manu, are the victims of a practical joke that costs Manu his pilot's license. With seeming contrition, the jokesters tell Roland and Manu about a crashed plane lying on the ocean floor off the coast of Congo stuffed with riches. The adventurers set off to find the loot.","id":"11396","runtime":112,"imdbId":"tt0061376","version":66,"lastModified":"1301903710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/745\/4bc93415017a3c57fe015745\/les-aventuriers-mid.jpg","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Adventure","title":"Les Aventuriers","releaseDate":-85968000000,"language":"en","type":"Movie","_key":"42489"} +{"label":"Joanna Shimkus","version":20,"id":"69206","lastModified":"1301902081000","name":"Joanna Shimkus","type":"Person","_key":"42490"} +{"label":"Odile Poisson","version":18,"id":"69207","lastModified":"1301902256000","name":"Odile Poisson","type":"Person","_key":"42491"} +{"label":"Not Another Teen Movie","description":"After breaking up with his girlfriend, Priscilla (Pressly), a popular jock, Jake Wyler (Evans) makes a bet with his friends, that he can't make 'ugly girl' Janey Briggs (Leigh) into prom queen. After spending more and more time with Janey, Jake really starts to think whether he wants to keep the bet on or not","id":"11397","runtime":89,"imdbId":"tt0277371","trailer":"http:\/\/www.youtube.com\/watch?v=b8-rTQrDCvY","version":195,"lastModified":"1301902442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/753\/4bc93418017a3c57fe015753\/not-another-teen-movie-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Not Another Teen Movie","releaseDate":1007683200000,"language":"en","tagline":"They served you Breakfast. They gave you Pie. Now we\u2019re gonna stuff your face.","type":"Movie","_key":"42492"} +{"label":"Joel Gallen","version":34,"id":"57604","lastModified":"1301901777000","name":"Joel Gallen","type":"Person","_key":"42493"} +{"label":"Chyler Leigh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4bcc0f5e017a3c0f2a000048\/chyler-leigh-profile.jpg","version":25,"id":"69210","lastModified":"1301901456000","name":"Chyler Leigh","type":"Person","_key":"42494"} +{"label":"The Art of War","description":"When ruthless terrorists threaten to bring down the United Nations, they frame the one man they believe can stop them: an international security expert named Shaw. Now he must run from his own allies and become a solitary force for good, as he tries to stop what could become World War III.","id":"11398","runtime":117,"imdbId":"tt0160009","version":231,"lastModified":"1301902529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/546\/4d3e017a7b9aa15bb5000546\/the-art-of-war-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"The Art of War","releaseDate":966988800000,"language":"en","tagline":"Who is your foe?","type":"Movie","_key":"42495"} +{"label":"Comme une image","description":"This is the story of human beings who know exactly what they'd do if they were somebody else, but can't handle being themselves very well, who are very simply struggling to find out who they are.","id":"11399","runtime":110,"imdbId":"tt0374583","version":80,"lastModified":"1301905592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4c422c017b9aa145930001c4\/comme-une-image-mid.jpg","genre":"Comedy","title":"Comme une image","releaseDate":1084665600000,"language":"en","type":"Movie","_key":"42496"} +{"label":"Marilou Berry","version":25,"id":"69221","lastModified":"1301901777000","name":"Marilou Berry","type":"Person","_key":"42497"} +{"label":"Virginie Desarnauts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20f\/4c422a4f7b9aa1459500020f\/virginie-desarnauts-profile.jpg","version":24,"id":"69222","lastModified":"1301902391000","name":"Virginie Desarnauts","type":"Person","_key":"42498"} +{"label":"Keine Bouhiza","version":22,"id":"69223","lastModified":"1301902256000","name":"Keine Bouhiza","type":"Person","_key":"42499"} +{"label":"The New World","description":"A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.","id":"11400","runtime":135,"imdbId":"tt0402399","trailer":"http:\/\/www.youtube.com\/watch?v=698","version":386,"lastModified":"1301902118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/776\/4bc9341b017a3c57fe015776\/the-new-world-mid.jpg","studio":"New Line Cinema","genre":"Adventure","title":"The New World","releaseDate":1135468800000,"language":"en","type":"Movie","_key":"42500"} +{"label":"Q'orianka Kilcher","version":24,"id":"69225","lastModified":"1301901840000","name":"Q'orianka Kilcher","type":"Person","_key":"42501"} +{"label":"Metallica: Some Kind of Monster","description":"A documentary crew followed Metallica for the better part of 2001-2003, a time of tension and release for the rock band, as they recorded their album St. Anger, fought bitterly, and sought the counsel of their on-call shrink.","id":"11401","runtime":141,"imdbId":"tt0387412","version":163,"lastModified":"1302048550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee7\/4d6629e25e73d66a61000ee7\/metallica-some-kind-of-monster-mid.jpg","genre":"Documentary","title":"Metallica: Some Kind of Monster","releaseDate":1074643200000,"language":"en","type":"Movie","_key":"42502"} +{"label":"James Hetfield","version":38,"id":"57637","lastModified":"1302076059000","name":"James Hetfield","type":"Person","_key":"42503"} +{"label":"Lars Ulrich","version":31,"id":"69230","lastModified":"1301901442000","name":"Lars Ulrich","type":"Person","_key":"42504"} +{"label":"Kirk Hammett","version":29,"id":"69231","lastModified":"1301901442000","name":"Kirk Hammett","type":"Person","_key":"42505"} +{"label":"Bob Rock","version":20,"id":"69232","lastModified":"1301901942000","name":"Bob Rock","type":"Person","_key":"42506"} +{"label":"Robert Trujillo","version":26,"id":"69233","lastModified":"1301901812000","name":"Robert Trujillo","type":"Person","_key":"42507"} +{"label":"Jason Newsted","version":23,"id":"69234","lastModified":"1301901775000","name":"Jason Newsted","type":"Person","_key":"42508"} +{"label":"Phil Towle","version":19,"id":"69235","lastModified":"1301902255000","name":"Phil Towle","type":"Person","_key":"42509"} +{"label":"Dave Mustaine","version":30,"id":"69236","lastModified":"1301901947000","name":"Dave Mustaine","type":"Person","_key":"42510"} +{"label":"Bruce Sinofsky","version":25,"id":"69238","lastModified":"1301902143000","name":"Bruce Sinofsky","type":"Person","_key":"42511"} +{"label":"Joe Berlinger","version":29,"id":"69237","lastModified":"1301901857000","name":"Joe Berlinger","type":"Person","_key":"42512"} +{"label":"The Belles of St. Trinian's","description":"Story of manic schoolgirls who are more interested in racing form than books as they try to get-rich-quick, aided by the head-mistress' brother, played by Alastair Sim, who also plays the head-mistress.","id":"11402","runtime":91,"imdbId":"tt0046766","version":78,"lastModified":"1301903460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/790\/4bc93420017a3c57fe015790\/the-belles-of-st-trinian-s-mid.jpg","studio":"British Lion Film Corporation","genre":"Comedy","title":"The Belles of St. Trinian's","releaseDate":-481593600000,"language":"en","type":"Movie","_key":"42513"} +{"label":"Joyce Grenfell","version":26,"id":"80995","lastModified":"1301901645000","name":"Joyce Grenfell","type":"Person","_key":"42514"} +{"label":"Frank Launder","version":44,"id":"14293","lastModified":"1301901659000","name":"Frank Launder","type":"Person","_key":"42515"} +{"label":"The River Why","description":"No overview found.","id":"11403","runtime":0,"imdbId":"tt1241329","version":112,"lastModified":"1301904147000","genre":"Drama","title":"The River Why","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"42516"} +{"label":"Matthew Leutwyler","version":19,"id":"70301","lastModified":"1301902214000","name":"Matthew Leutwyler","type":"Person","_key":"42517"} +{"label":"Zach Gilford","version":30,"id":"70303","lastModified":"1301901948000","name":"Zach Gilford","type":"Person","_key":"42518"} +{"label":"Driving Lessons","description":"A coming of age story about a shy teenage boy trying to escape from the influence of his domineering mother. His world changes when he begins to work for a retired actress.","id":"11404","runtime":98,"imdbId":"tt0446687","version":144,"lastModified":"1301902624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79d\/4bc93420017a3c57fe01579d\/driving-lessons-mid.jpg","genre":"Comedy","title":"Driving Lessons","releaseDate":1146355200000,"language":"en","type":"Movie","_key":"42519"} +{"label":"Jeremy Brock","version":46,"id":"35005","lastModified":"1302065146000","name":"Jeremy Brock","type":"Person","_key":"42520"} +{"label":"Der Rote Kakadu","description":"No overview found.","id":"11405","runtime":128,"imdbId":"tt0418115","version":62,"lastModified":"1302047589000","genre":"Comedy","title":"Der Rote Kakadu","releaseDate":1139875200000,"language":"en","type":"Movie","_key":"42521"} +{"label":"Ronald Zehrfeld","version":22,"id":"49021","lastModified":"1301901957000","name":"Ronald Zehrfeld","type":"Person","_key":"42522"} +{"label":"Kathrin Angerer","version":20,"id":"69251","lastModified":"1301902338000","name":"Kathrin Angerer","type":"Person","_key":"42523"} +{"label":"Goldene Zeiten","description":"No overview found.","id":"11406","runtime":129,"imdbId":"tt0418657","version":54,"lastModified":"1301904471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/466\/4d134d885e73d6082e001466\/goldene-zeiten-mid.jpg","genre":"Comedy","title":"Goldene Zeiten","releaseDate":1138233600000,"language":"en","type":"Movie","_key":"42524"} +{"label":"Der Schl\u00fcssel zum Erfolg","description":"No overview found.","id":"11407","runtime":0,"version":33,"lastModified":"1300979257000","studio":"Filmakademie Baden-W\u00fcrttemberg","genre":"Comedy","title":"Der Schl\u00fcssel zum Erfolg","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"42525"} +{"label":"Thorsten L\u00f6ffler","version":23,"id":"17320","lastModified":"1301901689000","name":"Thorsten L\u00f6ffler","type":"Person","_key":"42526"} +{"label":"Benjamin Swiczinsky","version":22,"id":"69257","lastModified":"1301902332000","name":"Benjamin Swiczinsky","type":"Person","_key":"42527"} +{"label":"Jurij Rosstalnyj","version":16,"id":"69961","lastModified":"1301901992000","name":"Jurij Rosstalnyj","type":"Person","_key":"42528"} +{"label":"Manfred Flick","version":15,"id":"69962","lastModified":"1301902255000","name":"Manfred Flick","type":"Person","_key":"42529"} +{"label":"Matthias Hungerb\u00fchler","version":15,"id":"69963","lastModified":"1301902255000","name":"Matthias Hungerb\u00fchler","type":"Person","_key":"42530"} +{"label":"Sarah Kempin","version":15,"id":"69964","lastModified":"1301902255000","name":"Sarah Kempin","type":"Person","_key":"42531"} +{"label":"Jan Krauter","version":15,"id":"69965","lastModified":"1301902255000","name":"Jan Krauter","type":"Person","_key":"42532"} +{"label":"Jan-Marcel K\u00fchn","version":15,"id":"69968","lastModified":"1301902255000","name":"Jan-Marcel K\u00fchn","type":"Person","_key":"42533"} +{"label":"Sula Pferdt","version":15,"id":"69970","lastModified":"1301902255000","name":"Sula Pferdt","type":"Person","_key":"42534"} +{"label":"Martin Weigel","version":15,"id":"69972","lastModified":"1301902081000","name":"Martin Weigel","type":"Person","_key":"42535"} +{"label":"Kurz:Ivan","description":"No overview found.","id":"11408","runtime":13,"version":27,"lastModified":"1301908557000","studio":"Filmakademie Baden-W\u00fcrttemberg","genre":"Drama","title":"Kurz:Ivan","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"42536"} +{"label":"denis fink","version":16,"id":"69268","lastModified":"1301902332000","name":"denis fink","type":"Person","_key":"42537"} +{"label":"katja schaefer","version":16,"id":"69269","lastModified":"1301902332000","name":"katja schaefer","type":"Person","_key":"42538"} +{"label":"stefan bastians","version":16,"id":"69270","lastModified":"1301901952000","name":"stefan bastians","type":"Person","_key":"42539"} +{"label":"georgij makazaria","version":16,"id":"69271","lastModified":"1301902147000","name":"georgij makazaria","type":"Person","_key":"42540"} +{"label":"hannes schindler","version":19,"id":"69261","lastModified":"1301902332000","name":"hannes schindler","type":"Person","_key":"42541"} +{"label":"Faust","description":"No overview found.","id":"11409","runtime":86,"homepage":"http:\/\/www.faustderfilm.com\/","version":102,"lastModified":"1302046319000","genre":"Animation","title":"Faust","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"42542"} +{"label":"Philipp Hochhauser","version":16,"id":"69272","lastModified":"1301902147000","name":"Philipp Hochhauser","type":"Person","_key":"42543"} +{"label":"Superman IV: The Quest for Peace","description":"With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.","id":"11411","runtime":134,"imdbId":"tt0094074","trailer":"http:\/\/www.youtube.com\/watch?v=3lsaG54WpEo","version":196,"lastModified":"1301907702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4bccf3e3017a3c0f2c0001f0\/superman-iv-the-quest-for-peace-mid.jpg","genre":"Action","title":"Superman IV: The Quest for Peace","releaseDate":554083200000,"language":"en","tagline":"Nuclear Power. In the best hands, it is dangerous. In the hands of Lex Luthor, it is pure evil. This is Superman's greatest battle. And it is for all of us.","type":"Movie","_key":"42544"} +{"label":"The Long Kiss Goodnight","description":"Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, has a job teaching school and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent","id":"11412","runtime":120,"imdbId":"tt0116908","trailer":"http:\/\/www.youtube.com\/watch?v=oDuma1M09B0","version":157,"lastModified":"1302046717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d2\/4bc93429017a3c57fe0157d2\/the-long-kiss-goodnight-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"The Long Kiss Goodnight","releaseDate":844992000000,"language":"en","type":"Movie","_key":"42545"} +{"label":"Tom Amandes","version":25,"id":"126471","lastModified":"1301902767000","name":"Tom Amandes","type":"Person","_key":"42546"} +{"label":"Joseph McKenna","version":19,"id":"141458","lastModified":"1301902767000","name":"Joseph McKenna","type":"Person","_key":"42547"} +{"label":"Melina Kanakaredes","version":32,"id":"25972","lastModified":"1301901325000","name":"Melina Kanakaredes","type":"Person","_key":"42548"} +{"label":"Dan Warry-Smith","version":19,"id":"141459","lastModified":"1301902767000","name":"Dan Warry-Smith","type":"Person","_key":"42549"} +{"label":"Kristen Bone","version":19,"id":"141460","lastModified":"1301902767000","name":"Kristen Bone","type":"Person","_key":"42550"} +{"label":"Jennifer Pisana","version":19,"id":"141461","lastModified":"1301902767000","name":"Jennifer Pisana","type":"Person","_key":"42551"} +{"label":"Employee of the Month","description":"\"Employee of the Month\" is about a guy whose day spirals from bad to worse when he gets fired from his dream job at the bank and is dumped by his fianc\u00e9e Sara. David's best friend Jack tries to convince him it's for the best, but the opposite occurs when bank robberies and millions of dollars become part of his day from hell. ","id":"11413","runtime":97,"imdbId":"tt0362590","trailer":"http:\/\/www.youtube.com\/watch?v=1497","version":128,"lastModified":"1301945949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/013\/4d2f32d17b9aa140ee000013\/employee-of-the-month-mid.jpg","genre":"Action","title":"Employee of the Month","releaseDate":1074297600000,"language":"en","type":"Movie","_key":"42552"} +{"label":"Andrea Bendewald","version":19,"id":"69303","lastModified":"1301901381000","name":"Andrea Bendewald","type":"Person","_key":"42553"} +{"label":"Mitch Rouse","version":25,"id":"66571","lastModified":"1302070575000","name":"Mitch Rouse","type":"Person","_key":"42554"} +{"label":"The Defiant Ones","description":"Two convicts, a white racist and an angry black, escape while chained to each other.","id":"11414","runtime":97,"imdbId":"tt0051525","trailer":"http:\/\/www.youtube.com\/watch?v=A8x_fvh4lSQ","version":133,"lastModified":"1302046276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b0\/4c8663145e73d66b5a0001b0\/the-defiant-ones-mid.jpg","genre":"Drama","title":"The Defiant Ones","releaseDate":-359251200000,"language":"en","type":"Movie","_key":"42555"} +{"label":"Cara Williams","version":21,"id":"83904","lastModified":"1301902219000","name":"Cara Williams","type":"Person","_key":"42556"} +{"label":"King Donovan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/742\/4caa17677b9aa17acd000742\/king-donovan-profile.jpg","version":27,"id":"69811","lastModified":"1301901472000","name":"King Donovan","type":"Person","_key":"42557"} +{"label":"Kevin Coughlin","version":17,"id":"132704","lastModified":"1301902748000","name":"Kevin Coughlin","type":"Person","_key":"42558"} +{"label":"House","description":"Roger Cobb is a author who has just separated from his wife. He moves into a new house and tries to work on a novel based on his experiences in the Vietnam War. Strange things start happening around him; little things at first, but as they become more frequent, Cobb becomes aware that the house resents his presence.","id":"11415","runtime":93,"imdbId":"tt0091223","version":132,"lastModified":"1301902647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cb\/4d239ea45e73d66b2b0044cb\/house-mid.jpg","genre":"Comedy","title":"House","releaseDate":509932800000,"language":"en","tagline":"Ding dong, You\u2019re dead.","type":"Movie","_key":"42559"} +{"label":"Mary Stavin","version":15,"id":"147290","lastModified":"1301902631000","name":"Mary Stavin","type":"Person","_key":"42560"} +{"label":"Erik Silver","version":15,"id":"147291","lastModified":"1301902589000","name":"Erik Silver","type":"Person","_key":"42561"} +{"label":"Mark Silver","version":15,"id":"147292","lastModified":"1301902725000","name":"Mark Silver","type":"Person","_key":"42562"} +{"label":"The Mission","description":"Jeremy Irons plays a Spanish Jesuit who goes into the South American wilderness to build a mission in the hope of converting the Indians of the region. Robert DeNiro plays a slave hunter who is converted and joins Irons in his mission. When Spain sells the colony to Portugal, they are forced to defend all they have built against the Portugese aggressors.","id":"11416","runtime":126,"imdbId":"tt0091530","trailer":"http:\/\/www.youtube.com\/watch?v=P014olInGfI","version":146,"lastModified":"1302045832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ec\/4ca6a0ca5e73d643ee0000ec\/the-mission-mid.jpg","genre":"Action","title":"The Mission","releaseDate":528336000000,"language":"en","type":"Movie","_key":"42563"} +{"label":"The Lift","description":"A lift begins displaying some erratic behavior, like trapping some party goers and nearly suffocating them, and decapitating a security guard. Felix, the technician from the lift company, can't find anything wrong with the circuitry. When he and a nosy reporter begin asking questions of the lift company's electronics partner (Rising Sun Electronics) his boss puts him on a leave of absence. A subsequent visit to a professor leads them to believe that some evil experiments are being conducted with","id":"11417","runtime":95,"imdbId":"tt0087622","version":66,"lastModified":"1301904471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/247\/4c9488785e73d63a78000247\/de-lift-mid.jpg","genre":"Horror","title":"The Lift","releaseDate":421459200000,"language":"en","tagline":"Take the stairs, take the stairs. For God's sake, take the Stairs!!!","type":"Movie","_key":"42564"} +{"label":"Josine van Dalsum","version":24,"id":"69337","lastModified":"1301902021000","name":"Josine van Dalsum","type":"Person","_key":"42565"} +{"label":"Liz Snoyink","version":25,"id":"69338","lastModified":"1301902332000","name":"Liz Snoyink","type":"Person","_key":"42566"} +{"label":"National Lampoon's European Vacation","description":"The Griswalds win a vacation to Europe on a game show, and thus pack their bags for the continent. They do their best to catch the flavor of Europe, but they just don't know how to be be good tourists. Besides, they have trouble taking holidays in countries where they CAN speak the language.","id":"11418","runtime":95,"imdbId":"tt0089670","trailer":"http:\/\/www.youtube.com\/watch?v=L-W50U2RP6g","version":168,"lastModified":"1302045338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/191\/4c7ee4945e73d648de000191\/european-vacation-mid.jpg","genre":"Adventure","title":"National Lampoon's European Vacation","releaseDate":491184000000,"language":"en","tagline":"For over two thousand years, Europe has survived many great disasters. Now for the real test. Chevy Chase & his family are coming from America!","type":"Movie","_key":"42567"} +{"label":"Dana Hill","version":27,"id":"69344","lastModified":"1301901812000","name":"Dana Hill","type":"Person","_key":"42568"} +{"label":"Jason Lively","version":23,"id":"69345","lastModified":"1301901588000","name":"Jason Lively","type":"Person","_key":"42569"} +{"label":"National Lampoon's Vegas Vacation","description":"the Griswolds visit Las Vegas. Clark immediately goes to the blackjack table and starts blowing all his money, continually encouraged to spend more and more by a taunting dealer, Marty (Wallace Shawn). Ellen Griswold (Beverly D'Angelo) becomes smitten with the lounge singer Wayne Newton (playing himself), who invites her to sing onstage with him. Their son Rusty (Ethan Embry) is incredibly lucky p","id":"11419","runtime":93,"imdbId":"tt0120434","trailer":"http:\/\/www.youtube.com\/watch?v=hRPSSF-T4Ck","version":86,"lastModified":"1301901923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1d\/4d1fdb9f7b9aa17375001a1d\/national-lampoon-s-vegas-vacation-mid.jpg","genre":"Comedy","title":"National Lampoon's Vegas Vacation","releaseDate":855878400000,"language":"en","type":"Movie","_key":"42570"} +{"label":"Stephen Kessler","version":21,"id":"69353","lastModified":"1301901874000","name":"Stephen Kessler","type":"Person","_key":"42571"} +{"label":"The Corporation","description":"Documentary that looks at the concept of the corporation throughout recent history up to its present-day dominance.","id":"11420","runtime":145,"imdbId":"tt0379225","trailer":"http:\/\/www.youtube.com\/watch?v=2MMx53V8M8s","homepage":"http:\/\/www.thecorporation.com\/","version":177,"lastModified":"1302041087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/837\/4bc93436017a3c57fe015837\/the-corporation-mid.jpg","studio":"Big Picture Media Corporation","genre":"Documentary","title":"The Corporation","releaseDate":1063065600000,"language":"en","type":"Movie","_key":"42572"} +{"label":"Jane Akre","version":19,"id":"69355","lastModified":"1301901723000","name":"Jane Akre","type":"Person","_key":"42573"} +{"label":"Ray Anderson","version":20,"id":"69356","lastModified":"1301901611000","name":"Ray Anderson","type":"Person","_key":"42574"} +{"label":"Maude Barlow","version":19,"id":"69357","lastModified":"1301902081000","name":"Maude Barlow","type":"Person","_key":"42575"} +{"label":"Chris Barrett","version":19,"id":"69358","lastModified":"1301902081000","name":"Chris Barrett","type":"Person","_key":"42576"} +{"label":"Mark Achbar","version":23,"id":"69359","lastModified":"1301902295000","name":"Mark Achbar","type":"Person","_key":"42577"} +{"label":"Jennifer Abbott","version":21,"id":"69360","lastModified":"1301902255000","name":"Jennifer Abbott","type":"Person","_key":"42578"} +{"label":"C.R.A.Z.Y.","description":"No overview found.","id":"11421","runtime":127,"imdbId":"tt0401085","version":159,"lastModified":"1302022446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/840\/4bc93437017a3c57fe015840\/c-r-a-z-y-mid.jpg","genre":"Drama","title":"C.R.A.Z.Y.","releaseDate":1117152000000,"language":"en","type":"Movie","_key":"42579"} +{"label":"Danielle Proulx","version":19,"id":"69368","lastModified":"1301901932000","name":"Danielle Proulx","type":"Person","_key":"42580"} +{"label":"\u00c9mile Vall\u00e9e","version":19,"id":"69369","lastModified":"1301902303000","name":"\u00c9mile Vall\u00e9e","type":"Person","_key":"42581"} +{"label":"Jean-Marc Vall\u00e9e","version":27,"id":"69371","lastModified":"1301902126000","name":"Jean-Marc Vall\u00e9e","type":"Person","_key":"42582"} +{"label":"Midway","description":"A sprawling war film, Midway stars nearly every actor who wasn't in A Bridge Too Far. Charlton Heston, Toshir\u00f4 Mifune, Robert Mitchum and Henry Fonda are among the familiar faces depicting the American and Japanese forces in a naval battle that became the turning point of the Pacific war. Using some real wartime footage, Midway provides an exciting view of a gigantic battle.","id":"11422","runtime":132,"imdbId":"tt0074899","trailer":"http:\/\/www.youtube.com\/watch?v=WjofsqGsDvY","version":133,"lastModified":"1302022107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/849\/4bc93438017a3c57fe015849\/midway-mid.jpg","genre":"Action","title":"Midway","releaseDate":203904000000,"language":"en","type":"Movie","_key":"42583"} +{"label":"Memories of Murder","description":"Based on the true story of the country's first known serial murders, which took place between 1986 and 1991 in Hwaseong, Gyeonggi Province, the movie begins with a series of raped and murdered women. Two bumbling, incompetent local detectives realizes a serial killer is on the loose and begins to chase after the murderer.","id":"11423","runtime":127,"imdbId":"tt0353969","trailer":"http:\/\/www.youtube.com\/watch?v=2940","homepage":"http:\/\/www.memoriesofmurder.com\/","version":148,"lastModified":"1301902268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85a\/4bc9343d017a3c57fe01585a\/11423-mid.jpg","genre":"Crime","title":"Memories of Murder","releaseDate":1051833600000,"language":"en","type":"Movie","_key":"42584"} +{"label":"Sang-kyung Kim","version":27,"id":"69378","lastModified":"1301902033000","name":"Sang-kyung Kim","type":"Person","_key":"42585"} +{"label":"Roe-ha Kim","version":26,"id":"69379","lastModified":"1301901755000","name":"Roe-ha Kim","type":"Person","_key":"42586"} +{"label":"Jae-ho Song","version":23,"id":"69380","lastModified":"1301902301000","name":"Jae-ho Song","type":"Person","_key":"42587"} +{"label":"High Society","description":"Childhood friends Tracy Lord and C.K. Dexter Haven got married and quickly divorced. Now Tracy is about to marry again, this time to a shrewd social-climbing businessman. Bing still loves her. Spy magazine blackmails Grace's family by threatening to reveal her playboy father's exploits if not allowed to cover the wedding.","id":"11424","runtime":111,"imdbId":"tt0049314","trailer":"http:\/\/www.youtube.com\/watch?v=P1oB9Fuz418","version":201,"lastModified":"1302043647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/863\/4bc9343e017a3c57fe015863\/high-society-mid.jpg","genre":"Comedy","title":"High Society","releaseDate":-424742400000,"language":"en","type":"Movie","_key":"42588"} +{"label":"John Lund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4c3cbabd7b9aa12642000041\/john-lund-profile.jpg","version":22,"id":"95313","lastModified":"1301901123000","name":"John Lund","type":"Person","_key":"42589"} +{"label":"Louis Armstrong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4bd82069017a3c1c020000ce\/louis-armstrong-profile.jpg","version":27,"id":"82280","lastModified":"1301901982000","name":"Louis Armstrong","type":"Person","_key":"42590"} +{"label":"Charles Walters","version":33,"id":"69392","lastModified":"1301983643000","name":"Charles Walters","type":"Person","_key":"42591"} +{"label":"Honey, We Shrunk Ourselves","description":"The joke's on absent-minded scientist Wayne Szalinski when his troublesome invention shrinks him, his brother and their wives so effectively that their children think they've completely disappeared. Of course, this gives the kids free rein to do anything they want, unaware that their parents are watching every move.","id":"11425","runtime":75,"imdbId":"tt0119310","version":103,"lastModified":"1302037777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c12\/4d37ba677b9aa17b3700dc12\/honey-we-shrunk-ourselves-mid.jpg","genre":"Comedy","title":"Honey, We Shrunk Ourselves","releaseDate":858643200000,"language":"en","type":"Movie","_key":"42592"} +{"label":"Bug Hall","version":34,"id":"69395","lastModified":"1301901670000","name":"Bug Hall","type":"Person","_key":"42593"} +{"label":"Dean Cundey","version":149,"id":"1060","lastModified":"1300013981000","name":"Dean Cundey","type":"Person","_key":"42594"} +{"label":"From Here to Eternity","description":"The setting is an army base in Hawaii in 1941. Montgomery Clift, in a superb performance, plays a bugler who refuses to fight for the company boxing team; he has reasons for giving up the sport. His refusal results in harsh treatment from the company commander, whose bored wife (Deborah Kerr) is having an affair with the tough-but-fair sergeant (Burt Lancaster). You remember--the scene with the two of them embracing on the beach, as the surf crashes in. The supporting players are as good as the ","id":"11426","runtime":118,"imdbId":"tt0045793","trailer":"http:\/\/www.youtube.com\/watch?v=Yup3rl2yK8A","version":277,"lastModified":"1302067232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/871\/4bc9343e017a3c57fe015871\/from-here-to-eternity-mid.jpg","genre":"Action","title":"From Here to Eternity","releaseDate":-517795200000,"language":"en","type":"Movie","_key":"42595"} +{"label":"Dead End","description":"Christmas Eve. On his way to his in-laws with his family, Frank Harrington decides to try a shortcut, for the first time in 20 years. It turns out to be the biggest mistake of his life.","id":"11427","runtime":85,"imdbId":"tt0308152","trailer":"http:\/\/www.youtube.com\/watch?v=nH8MTQ6ferY","homepage":"http:\/\/www.pentagonpictures.com.my\/main_film\/deadend\/","version":333,"lastModified":"1302020543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/883\/4bc93441017a3c57fe015883\/dead-end-mid.jpg","studio":"Sagittaire Films","genre":"Horror","title":"Dead End","releaseDate":1071187200000,"language":"en","type":"Movie","_key":"42596"} +{"label":"Mick Cain","version":19,"id":"69398","lastModified":"1301902128000","name":"Mick Cain","type":"Person","_key":"42597"} +{"label":"Alexandra Holden","version":31,"id":"69399","lastModified":"1301901314000","name":"Alexandra Holden","type":"Person","_key":"42598"} +{"label":"Jean-Baptiste Andrea","version":23,"id":"59848","lastModified":"1301901554000","name":"Jean-Baptiste Andrea","type":"Person","_key":"42599"} +{"label":"Fabrice Canepa","version":20,"id":"69400","lastModified":"1301902178000","name":"Fabrice Canepa","type":"Person","_key":"42600"} +{"label":"Sleepwalkers","description":"A mother-and-son team of strange supernatural creatures come to town to seek out a virgin to feed on.","id":"11428","runtime":91,"imdbId":"tt0105428","version":184,"lastModified":"1302066743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88c\/4bc93441017a3c57fe01588c\/sleepwalkers-mid.jpg","genre":"Drama","title":"Sleepwalkers","releaseDate":702864000000,"language":"en","type":"Movie","_key":"42601"} +{"label":"Brian Krause","version":35,"id":"69405","lastModified":"1301901302000","name":"Brian Krause","type":"Person","_key":"42602"} +{"label":"Beyond Re-Animator","description":"Everyone's favorite mad scientist Herbert West is currently in jail after having state's evidence turned against him by his former assistant, Dan Cain. While being led away, some re-agent falls from his pocket where it is picked up by a young man that was camping nearby. The young man find Herbert down in his jail cell and learns for himself just what the re-agent is capable of.","id":"11429","runtime":95,"imdbId":"tt0222812","version":119,"lastModified":"1302035328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89e\/4bc93445017a3c57fe01589e\/beyond-re-animator-mid.jpg","genre":"Comedy","title":"Beyond Re-Animator","releaseDate":1049414400000,"language":"en","type":"Movie","_key":"42603"} +{"label":"Tommy Dean Musset","version":20,"id":"69408","lastModified":"1301901976000","name":"Tommy Dean Musset","type":"Person","_key":"42604"} +{"label":"B\u00e1rbara Elorrieta","version":21,"id":"69409","lastModified":"1301901824000","name":"B\u00e1rbara Elorrieta","type":"Person","_key":"42605"} +{"label":"The Lion King 1\u00bd","description":"Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.","id":"11430","runtime":77,"imdbId":"tt0318403","version":178,"lastModified":"1302041663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fe\/4d5808097b9aa15d4e0037fe\/the-lion-king-1-mid.jpg","genre":"Adventure","title":"The Lion King 1\u00bd","releaseDate":1076371200000,"language":"en","tagline":"You don't know the \u00bd of it!","type":"Movie","_key":"42606"} +{"label":"Ernie Sabella","version":23,"id":"69415","lastModified":"1301902081000","name":"Ernie Sabella","type":"Person","_key":"42607"} +{"label":"Bradley Raymond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b6a\/4cfb73255e73d6299e002b6a\/bradley-raymond-profile.jpg","version":35,"id":"69416","lastModified":"1301901423000","name":"Bradley Raymond","type":"Person","_key":"42608"} +{"label":"Fever Pitch","description":"When relaxed and charming Ben Wrightman meets workaholic Lindsey Meeks she finds him sweet and charming, they hit it off and when it is winter Ben can spend every waking hour with Lindsey, but when summer comes around the corner Lindsey discovers Ben's obsession with the Boston Red Sox. She thinks it is perfect until everything goes downhill for them. ","id":"11431","runtime":103,"imdbId":"tt0332047","version":195,"lastModified":"1302032981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bf\/4bc9344a017a3c57fe0158bf\/fever-pitch-mid.jpg","studio":"Alan Greenspan Productions","genre":"Comedy","title":"Fever Pitch","releaseDate":1112745600000,"language":"en","type":"Movie","_key":"42609"} +{"label":"Scott Severance","version":20,"id":"69421","lastModified":"1301901611000","name":"Scott Severance","type":"Person","_key":"42610"} +{"label":"Jessamy Finet","version":20,"id":"69422","lastModified":"1301901874000","name":"Jessamy Finet","type":"Person","_key":"42611"} +{"label":"Maureen Keiller","version":20,"id":"69423","lastModified":"1301901874000","name":"Maureen Keiller","type":"Person","_key":"42612"} +{"label":"The Ghost Writer","description":"A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident. In director Roman Polanski's tense drama, the author realizes that his discovery threatens some very powerful people who will do anything to ensure that certain episodes from Lang's past remain buried.","id":"11439","runtime":128,"imdbId":"tt1139328","trailer":"http:\/\/www.youtube.com\/watch?v=L_AerBW0EcI","homepage":"http:\/\/theghost-romanpolanski.com\/","version":588,"lastModified":"1301901157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/419\/4d6925ad7b9aa13633001419\/the-ghost-writer-mid.jpg","studio":"Medienboard Berlin-Brandenburg GmbH","genre":"Drama","title":"The Ghost Writer","releaseDate":1265932800000,"language":"en","tagline":"Read between the lies.","type":"Movie","_key":"42613"} +{"label":"Nyasha Hatendi","version":33,"id":"84070","lastModified":"1301901289000","name":"Nyasha Hatendi","type":"Person","_key":"42614"} +{"label":"Tim Preece","version":32,"id":"113360","lastModified":"1301901337000","name":"Tim Preece","type":"Person","_key":"42615"} +{"label":"Eben Young","version":32,"id":"84073","lastModified":"1301901223000","name":"Eben Young","type":"Person","_key":"42616"} +{"label":"Michael S. Ruscheinsky","version":31,"id":"84071","lastModified":"1301901290000","name":"Michael S. Ruscheinsky","type":"Person","_key":"42617"} +{"label":"Anna Botting","version":32,"id":"113361","lastModified":"1301901278000","name":"Anna Botting","type":"Person","_key":"42618"} +{"label":"Jaymes Butler","version":34,"id":"74225","lastModified":"1301901313000","name":"Jaymes Butler","type":"Person","_key":"42619"} +{"label":"Marianne Graffam","version":33,"id":"84067","lastModified":"1301901290000","name":"Marianne Graffam","type":"Person","_key":"42620"} +{"label":"Angelique Fernandez","version":33,"id":"84069","lastModified":"1301901230000","name":"Angelique Fernandez","type":"Person","_key":"42621"} +{"label":"Daphne Alexander","version":39,"id":"84068","lastModified":"1301901255000","name":"Daphne Alexander","type":"Person","_key":"42622"} +{"label":"Hilde","description":"No overview found.","id":"11440","runtime":137,"imdbId":"tt0809432","version":57,"lastModified":"1301903725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d5\/4bc93451017a3c57fe0158d5\/hilde-mid.jpg","genre":"Drama","title":"Hilde","releaseDate":1236816000000,"language":"en","type":"Movie","_key":"42623"} +{"label":"Kai Wessel","version":23,"id":"48679","lastModified":"1301901563000","name":"Kai Wessel","type":"Person","_key":"42624"} +{"label":"Innamorato pazzo","description":"No overview found.","id":"11441","runtime":100,"imdbId":"tt0082562","version":95,"lastModified":"1301902604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20c\/4d6193f77b9aa154bf00520c\/innamorato-pazzo-mid.jpg","genre":"Comedy","title":"Innamorato pazzo","releaseDate":377481600000,"language":"en","type":"Movie","_key":"42625"} +{"label":"Milla Sannoner","version":19,"id":"69443","lastModified":"1301902081000","name":"Milla Sannoner","type":"Person","_key":"42626"} +{"label":"Enzo Garinei","version":21,"id":"69444","lastModified":"1301902255000","name":"Enzo Garinei","type":"Person","_key":"42627"} +{"label":"Halloween: Resurrection","description":"Serial Killer Michael Myers is not finished with Laurie Strode, and their rivalry finally comes to an end. But is this the last we see of Myers? Freddie Harris and Nora Winston are reality programmers at DangerTainment, and are planning to send a group of 6 thrill-seeking teenagers into the childhood home of Myers. Cameras are placed all over the house and no one can get out of the house... and then Michael arrives home!","id":"11442","runtime":94,"imdbId":"tt0220506","version":133,"lastModified":"1302064758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4c951ed47b9aa10d5900014b\/halloween-resurrection-mid.jpg","genre":"Horror","title":"Halloween: Resurrection","releaseDate":1025481600000,"language":"en","tagline":"Evil comes home.","type":"Movie","_key":"42628"} +{"label":"Brad Loree","version":22,"id":"69614","lastModified":"1301902147000","name":"Brad Loree","type":"Person","_key":"42629"} +{"label":"Bianca Kajlich","version":22,"id":"69616","lastModified":"1301901648000","name":"Bianca Kajlich","type":"Person","_key":"42630"} +{"label":"Dead Presidents","description":"Larenz Tate is Anthony Curtis, a good-natured high school kid in 60s New York who is enjoying life with his girlfriend, Delilah and good friends, Skip (Chris Tucker in an early role) and Jose (Freddy Rodriguez) and running numbers for a local tough guy, Kirby (Keith David). Those days are not to last, however, as all three of the young friends end up in Vietnam. Following a fairly lengthy and well","id":"11443","runtime":119,"imdbId":"tt0112819","version":330,"lastModified":"1302064375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8eb\/4bc93453017a3c57fe0158eb\/dead-presidents-mid.jpg","studio":"Stone Productions","genre":"Action","title":"Dead Presidents","releaseDate":812332800000,"language":"en","tagline":"In this daring heist, the only color that counts is green","type":"Movie","_key":"42631"} +{"label":"Rose Jackson","version":20,"id":"69447","lastModified":"1301902255000","name":"Rose Jackson","type":"Person","_key":"42632"} +{"label":"N'Bushe Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f5a\/4d8bce8c7b9aa13ae1001f5a\/n-bushe-wright-profile.jpg","version":36,"id":"10824","lastModified":"1301901214000","name":"N'Bushe Wright","type":"Person","_key":"42633"} +{"label":"The Closet","description":"A man spreads the rumor of his fake homosexuality with the aid of his neighbor, to prevent his imminent firing at his work.","id":"11444","runtime":84,"imdbId":"tt0243493","version":164,"lastModified":"1302064119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f5\/4bc93453017a3c57fe0158f5\/le-placard-mid.jpg","genre":"Comedy","title":"The Closet","releaseDate":988934400000,"language":"en","type":"Movie","_key":"42634"} +{"label":"Stanislas Crevillen","version":16,"id":"146634","lastModified":"1301902715000","name":"Stanislas Crevillen","type":"Person","_key":"42635"} +{"label":"Thierry Ashanti","version":16,"id":"146635","lastModified":"1301902579000","name":"Thierry Ashanti","type":"Person","_key":"42636"} +{"label":"Armelle Deutsch","version":23,"id":"124096","lastModified":"1301902208000","name":"Armelle Deutsch","type":"Person","_key":"42637"} +{"label":"Irina Ninova","version":16,"id":"146636","lastModified":"1301902555000","name":"Irina Ninova","type":"Person","_key":"42638"} +{"label":"Marianne Groves","version":16,"id":"146637","lastModified":"1301902555000","name":"Marianne Groves","type":"Person","_key":"42639"} +{"label":"Luq Hamett","version":16,"id":"146638","lastModified":"1301902702000","name":"Luq Hamett","type":"Person","_key":"42640"} +{"label":"Philippe Brigaud","version":17,"id":"145197","lastModified":"1301902040000","name":"Philippe Brigaud","type":"Person","_key":"42641"} +{"label":"Eric Vanzetta","version":16,"id":"146639","lastModified":"1301902637000","name":"Eric Vanzetta","type":"Person","_key":"42642"} +{"label":"Michel Caccia","version":16,"id":"146640","lastModified":"1301902668000","name":"Michel Caccia","type":"Person","_key":"42643"} +{"label":"Gypo","description":"No overview found.","id":"11445","runtime":98,"imdbId":"tt0443526","version":114,"lastModified":"1302063730000","genre":"Drama","title":"Gypo","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"42644"} +{"label":"Jan Dunn","version":19,"id":"69461","lastModified":"1301902310000","name":"Jan Dunn","type":"Person","_key":"42645"} +{"label":"Tamzin Dunstone","version":19,"id":"69468","lastModified":"1301902132000","name":"Tamzin Dunstone","type":"Person","_key":"42646"} +{"label":"Pauline McLynn","version":22,"id":"69465","lastModified":"1301902008000","name":"Pauline McLynn","type":"Person","_key":"42647"} +{"label":"Rula Lenska","version":25,"id":"69467","lastModified":"1301902132000","name":"Rula Lenska","type":"Person","_key":"42648"} +{"label":"Chloe Sirene","version":20,"id":"69466","lastModified":"1301902310000","name":"Chloe Sirene","type":"Person","_key":"42649"} +{"label":"Barry Latchford","version":19,"id":"69469","lastModified":"1301902132000","name":"Barry Latchford","type":"Person","_key":"42650"} +{"label":"Freddie Connor","version":19,"id":"69470","lastModified":"1301902310000","name":"Freddie Connor","type":"Person","_key":"42651"} +{"label":"Olegar Fedoro","version":22,"id":"69471","lastModified":"1301902310000","name":"Olegar Fedoro","type":"Person","_key":"42652"} +{"label":"Sean Wilton","version":20,"id":"69472","lastModified":"1301902310000","name":"Sean Wilton","type":"Person","_key":"42653"} +{"label":"Angelica O'Reilly","version":20,"id":"69473","lastModified":"1301902310000","name":"Angelica O'Reilly","type":"Person","_key":"42654"} +{"label":"Rebecca Clow","version":20,"id":"69475","lastModified":"1301902310000","name":"Rebecca Clow","type":"Person","_key":"42655"} +{"label":"Ashley McGuire","version":20,"id":"69476","lastModified":"1301902310000","name":"Ashley McGuire","type":"Person","_key":"42656"} +{"label":"Majid Iqbal","version":19,"id":"69474","lastModified":"1301902132000","name":"Majid Iqbal","type":"Person","_key":"42657"} +{"label":"Claire Angus","version":20,"id":"69477","lastModified":"1301902012000","name":"Claire Angus","type":"Person","_key":"42658"} +{"label":"Josef Atlin","version":19,"id":"69478","lastModified":"1301902132000","name":"Josef Atlin","type":"Person","_key":"42659"} +{"label":"James Blanchard","version":19,"id":"69479","lastModified":"1301902132000","name":"James Blanchard","type":"Person","_key":"42660"} +{"label":"Clara Clow","version":19,"id":"69480","lastModified":"1301902310000","name":"Clara Clow","type":"Person","_key":"42661"} +{"label":"Charlotte Edmundson","version":19,"id":"69481","lastModified":"1301902132000","name":"Charlotte Edmundson","type":"Person","_key":"42662"} +{"label":"Welcome to the Dollhouse","description":"Insightful look at an unattractive 7th grader as she struggles to cope with un-attentive parents, snobbish classmates, a smart older brother, an attractive younger sister, and her own insecurities.","id":"11446","runtime":88,"imdbId":"tt0114906","version":157,"lastModified":"1302063473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fe\/4bc93454017a3c57fe0158fe\/welcome-to-the-dollhouse-mid.jpg","genre":"Comedy","title":"Welcome to the Dollhouse","releaseDate":810691200000,"language":"en","type":"Movie","_key":"42663"} +{"label":"Victoria Davis","version":20,"id":"69482","lastModified":"1301902081000","name":"Victoria Davis","type":"Person","_key":"42664"} +{"label":"Christina Brucato","version":21,"id":"69483","lastModified":"1301901874000","name":"Christina Brucato","type":"Person","_key":"42665"} +{"label":"Siri Howard","version":20,"id":"69484","lastModified":"1301902081000","name":"Siri Howard","type":"Person","_key":"42666"} +{"label":"La Stanza del figlio","description":"A psychoanalyst and his family go through profound emotional trauma when their son dies in a scuba diving accident.","id":"11447","runtime":99,"imdbId":"tt0208990","trailer":"http:\/\/www.youtube.com\/watch?v=MqcrUsH_t88","version":123,"lastModified":"1302063079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1c\/4d4bb3bb5e73d617ba000f1c\/la-stanza-del-figlio-mid.jpg","genre":"Drama","title":"La Stanza del figlio","releaseDate":984096000000,"language":"en","type":"Movie","_key":"42667"} +{"label":"Nanni Moretti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12d\/4cc7ed975e73d6502500012d\/nanni-moretti-profile.jpg","version":63,"id":"69488","lastModified":"1301901531000","name":"Nanni Moretti","type":"Person","_key":"42668"} +{"label":"Jasmine Trinca","version":27,"id":"69489","lastModified":"1301901996000","name":"Jasmine Trinca","type":"Person","_key":"42669"} +{"label":"Giuseppe Sanfelice","version":23,"id":"69490","lastModified":"1301901814000","name":"Giuseppe Sanfelice","type":"Person","_key":"42670"} +{"label":"Mighty Aphrodite","description":"Lenny and Amanda have an adopted son Max who turns out to be brilliant. Lenny becomes obsessed with finding Max's real parents because he believes that they too must be brilliant. When he finds that Linda Ash is Max' real mother, Lenny is disappointed. Linda is a prostitute and porn star. On top of that, she is quite possibly the dumbest person Lenny has ever met. Interwoven is a Greek chorus linking the story with the story of Oedipus.","id":"11448","runtime":95,"imdbId":"tt0113819","version":130,"lastModified":"1301904563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90c\/4bc93456017a3c57fe01590c\/mighty-aphrodite-mid.jpg","genre":"Comedy","title":"Mighty Aphrodite","releaseDate":810950400000,"language":"en","type":"Movie","_key":"42671"} +{"label":"The Amityville Horror","description":"Based on the reportedly true story of George Lutz and his wife, Kathleen, who move into their Long Island dream house with their children. But the Lutz's lives turn into a hellish nightmare as the legacy of a murder committed on the premises gradually affects the family. Even the priest they call in, Father Delaney, cannot exorcise the demonic presence from the home.","id":"11449","runtime":117,"imdbId":"tt0078767","trailer":"http:\/\/www.youtube.com\/watch?v=O6JidwZGhss","version":184,"lastModified":"1301902366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04d\/4c698bda7b9aa1392000004d\/the-amityville-horror-mid.jpg","genre":"Drama","title":"The Amityville Horror","releaseDate":301881600000,"language":"en","tagline":"For God's Sake, Get Out!","type":"Movie","_key":"42672"} +{"label":"Quiz Show","description":"Quiz Show is a 1994 American historical drama film which tells the true story of the Twenty One quiz show scandal of the 1950s.","id":"11450","runtime":133,"imdbId":"tt0110932","version":140,"lastModified":"1301902515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/922\/4bc9345a017a3c57fe015922\/quiz-show-mid.png","genre":"Drama","title":"Quiz Show","releaseDate":779673600000,"language":"en","tagline":"Fifty million people watched but no one saw a thing.","type":"Movie","_key":"42673"} +{"label":"Herbie Fully Loaded","description":"Maggie Peyton, the new owner of Number 53 - the free-wheelin' Volkswagen bug with a mind of its own - puts the car through its paces on the road to becoming a NASCAR competitor. ","id":"11451","runtime":101,"imdbId":"tt0400497","trailer":"http:\/\/www.youtube.com\/watch?v=3SdNW3_Sh6E","version":163,"lastModified":"1301901502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/934\/4bc9345d017a3c57fe015934\/herbie-fully-loaded-mid.jpg","genre":"Comedy","title":"Herbie Fully Loaded","releaseDate":1119139200000,"language":"en","type":"Movie","_key":"42674"} +{"label":"National Lampoon's Van Wilder","description":"Van Wilder is an outgoing, and extremely popular student who has been at Coolidge College for seven years. For the past three years he has made no effort to graduate, instead spending his time organizing parties, helping other students, and posing for figure drawing classes. But after seven years, with no return on his investment, Van's father decides it is time to stop paying Van's tuition.","id":"11452","runtime":93,"imdbId":"tt0283111","trailer":"http:\/\/www.youtube.com\/watch?v=ZS105LZM5II","version":241,"lastModified":"1301902108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52f\/4d52f5ef7b9aa1193e00652f\/national-lampoon-s-van-wilder-mid.jpg","studio":"Tapestry Films","genre":"Comedy","title":"National Lampoon's Van Wilder","releaseDate":1017964800000,"language":"en","tagline":"Don't Graduate. Celebrate.","type":"Movie","_key":"42675"} +{"label":"Deuce Bigalow: European Gigolo","description":"Deuce is tricked again into man-whoring by T.J., only in Amsterdam while other man-whores are being murdered in his midst","id":"11453","runtime":83,"imdbId":"tt0367652","version":127,"lastModified":"1302022339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4bc93468017a3c57fe015971\/deuce-bigalow-european-gigolo-mid.jpg","genre":"Comedy","title":"Deuce Bigalow: European Gigolo","releaseDate":1123286400000,"language":"en","type":"Movie","_key":"42676"} +{"label":"Hanna Verboom","version":22,"id":"69497","lastModified":"1301901506000","name":"Hanna Verboom","type":"Person","_key":"42677"} +{"label":"Mike Bigelow","version":21,"id":"69498","lastModified":"1301902197000","name":"Mike Bigelow","type":"Person","_key":"42678"} +{"label":"Manhunter","description":"FBI Agent Will Graham, who retired after catching Hannibal Lecter, returns to duty to engage in a risky cat-and-mouse game with Lecter to capture a new killer. This film is based on the novel \"Red Dragon\" and predates all the later films with Anthony Hopkins as Hannibal Lecter.","id":"11454","runtime":119,"imdbId":"tt0091474","trailer":"http:\/\/www.youtube.com\/watch?v=1691","version":222,"lastModified":"1301902042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/982\/4bc93469017a3c57fe015982\/manhunter-mid.jpg","genre":"Crime","title":"Manhunter","releaseDate":524448000000,"language":"en","type":"Movie","_key":"42679"} +{"label":"Cheech & Chong's Up in Smoke","description":"Two directionless musicans, a Chicano guitarist (Cheech Marin) and a White drummer (Tommy Chong), meet up in a chance encounter and embark on a series of odd adventures, including being the unwitting partcipants of a bizarre marijuana smuggling plot.","id":"11455","runtime":86,"imdbId":"tt0078446","trailer":"http:\/\/www.youtube.com\/watch?v=k2pXxHW1DHs","version":288,"lastModified":"1301901496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98f\/4bc9346d017a3c57fe01598f\/up-in-smoke-mid.jpg","genre":"Comedy","title":"Cheech & Chong's Up in Smoke","releaseDate":271641600000,"language":"en","tagline":"The Movie That'll Have You Rolling in the Aisles","type":"Movie","_key":"42680"} +{"label":"Lou Adler","version":29,"id":"69500","lastModified":"1301901723000","name":"Lou Adler","type":"Person","_key":"42681"} +{"label":"Domestic Disturbance","description":"A divorced father discovers that his 12-year-old son's new stepfather is not what he made himself out to be.","id":"11456","runtime":89,"imdbId":"tt0249478","trailer":"http:\/\/www.youtube.com\/watch?v=bUniH6lRxAE","version":152,"lastModified":"1301903284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/935\/4d4df90d5e73d617bd002935\/domestic-disturbance-mid.jpg","genre":"Action","title":"Domestic Disturbance","releaseDate":1004400000000,"language":"en","type":"Movie","_key":"42682"} +{"label":"James Lashly","version":22,"id":"69502","lastModified":"1301901723000","name":"James Lashly","type":"Person","_key":"42683"} +{"label":"Rebecca Tilney","version":20,"id":"69503","lastModified":"1301901874000","name":"Rebecca Tilney","type":"Person","_key":"42684"} +{"label":"Debra Mooney","version":21,"id":"69504","lastModified":"1301902081000","name":"Debra Mooney","type":"Person","_key":"42685"} +{"label":"Life as a House","description":"When a man is diagnosed with terminal cancer, he takes custody of his misanthropic teenage son, for whom quality time means getting high, engaging in small-time prostitution, and avoiding his father.","id":"11457","runtime":125,"imdbId":"tt0264796","version":208,"lastModified":"1301902625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc93470017a3c57fe0159a6\/life-as-a-house-mid.jpg","genre":"Drama","title":"Life as a House","releaseDate":999993600000,"language":"en","tagline":"Seen from a distance, it's perfect.","type":"Movie","_key":"42686"} +{"label":"Sandra Nelson","version":28,"id":"78017","lastModified":"1301902391000","name":"Sandra Nelson","type":"Person","_key":"42687"} +{"label":"People I Know","description":"No overview found.","id":"11458","runtime":100,"imdbId":"tt0274711","version":142,"lastModified":"1301904231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9af\/4bc93470017a3c57fe0159af\/people-i-know-mid.jpg","genre":"Thriller","title":"People I Know","releaseDate":1002758400000,"language":"en","type":"Movie","_key":"42688"} +{"label":"Daniel Algrant","version":26,"id":"69696","lastModified":"1301901458000","name":"Daniel Algrant","type":"Person","_key":"42689"} +{"label":"Sky High","description":"Will Stronghold -- the son of married superheroes known as the Commander and Josie Jetstream -- is faced with an intimidating family legacy. And the kids at the elite Sky High School don't make him feel any better about his lack of superpowers. Surrounded by classmates, including a self-replicating cheerleader and a jock who can stretch himself silly, Will is beginning to look awfully normal.","id":"11459","runtime":100,"imdbId":"tt0405325","version":216,"lastModified":"1301901708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4d50563f7b9aa13ab800d008\/sky-high-mid.jpg","genre":"Action","title":"Sky High","releaseDate":1122595200000,"language":"en","tagline":"Saving The World... One Homework Assignment At A Time.","type":"Movie","_key":"42690"} +{"label":"Dee Jay Daniels","version":28,"id":"69507","lastModified":"1301901723000","name":"Dee Jay Daniels","type":"Person","_key":"42691"} +{"label":"Kelly Vitz","version":33,"id":"69508","lastModified":"1301901723000","name":"Kelly Vitz","type":"Person","_key":"42692"} +{"label":"Red Eye","description":"After attending the funeral of her grandmother in Dallas, the Lux Atlantic Hotel manager Lisa is waiting for a flight to Miami. Due to the bad weather and consequent flight delay, she meets in the airport bar Jack Rippner, who is also in the waiting list. They sit together in the plane, and Jack reveals that he wants Lisa to change the room in Lux of an important American politician to facilitate a terrorist attempt against him. Otherwise, Lisa's father will be killed by a hit man. Lisa has to d","id":"11460","runtime":85,"imdbId":"tt0421239","trailer":"http:\/\/www.youtube.com\/watch?v=TAFDHyH8buQ","version":197,"lastModified":"1301902041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1c\/4d63f1c07b9aa13254000f1c\/red-eye-mid.jpg","genre":"Suspense","title":"Red Eye","releaseDate":1123113600000,"language":"en","tagline":"Fear Takes Flight","type":"Movie","_key":"42693"} +{"label":"Suspicion","description":"Wealthy, sheltered Joan Fontaine is swept off her feet by charming ne'er-do-well Cary Grant. Though warned that Grant is little more than a fortune-hunter, Fontaine marries him anyway. She remains loyal to her irresponsible husband as he plows his way from one disreputable business scheme to another. Gradually, Fontaine comes to the conclusion that Grant intends to do away with her in order to collect her inheritance...a suspicion confirmed when Grant's likeable business partner Nigel Bruce dies","id":"11462","runtime":99,"imdbId":"tt0034248","trailer":"http:\/\/www.youtube.com\/watch?v=mYG5qbnArEM","version":260,"lastModified":"1301903317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d3\/4bc93475017a3c57fe0159d3\/suspicion-mid.jpg","genre":"Film Noir","title":"Suspicion","releaseDate":-887760000000,"language":"en","type":"Movie","_key":"42694"} +{"label":"Isabel Jeans","version":21,"id":"100781","lastModified":"1301902718000","name":"Isabel Jeans","type":"Person","_key":"42695"} +{"label":"Heather Angel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c6\/4ccc445e5e73d650220007c6\/heather-angel-profile.jpg","version":30,"birthday":"-1921626000000","id":"93897","birthplace":"Oxford, Oxfordshire, England UK","lastModified":"1301902506000","name":"Heather Angel","type":"Person","_key":"42696"} +{"label":"Auriol Lee","version":18,"id":"100782","lastModified":"1301903066000","name":"Auriol Lee","type":"Person","_key":"42697"} +{"label":"Reginald Sheffield","version":26,"id":"86349","lastModified":"1301902990000","name":"Reginald Sheffield","type":"Person","_key":"42698"} +{"label":"Billy Bevan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4be779a1017a3c35b4001024\/billy-bevan-profile.jpg","version":30,"id":"100763","lastModified":"1301902181000","name":"Billy Bevan","type":"Person","_key":"42699"} +{"label":"Battle of Britain","description":"In 1940, the Royal Air Force fights a desperate battle against the might of the Luftwaffe for control of the skies over Britain, thus preventing the Nazi invasion of Britain.","id":"11463","runtime":151,"imdbId":"tt0064072","trailer":"http:\/\/www.youtube.com\/watch?v=RaX3m7mMmxM","version":413,"lastModified":"1301901938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4bc93478017a3c57fe0159e8\/battle-of-britain-mid.jpg","genre":"Action","title":"Battle of Britain","releaseDate":-9331200000,"language":"en","type":"Movie","_key":"42700"} +{"label":"Das Blut der Templer","description":"No overview found.","id":"11464","runtime":180,"imdbId":"tt0412522","version":73,"lastModified":"1301903247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b65\/4d307f9b7b9aa140f1000b65\/das-blut-der-templer-mid.jpg","genre":"Adventure","title":"Das Blut der Templer","releaseDate":1102550400000,"language":"en","type":"Movie","_key":"42701"} +{"label":"Harald Krassnitzer","version":21,"id":"69523","lastModified":"1301902183000","name":"Harald Krassnitzer","type":"Person","_key":"42702"} +{"label":"Great Balls of Fire!","description":"No overview found.","id":"11465","runtime":108,"imdbId":"tt0097457","version":210,"lastModified":"1301908050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b35\/4be68979017a3c35bf000b35\/great-balls-of-fire-mid.jpg","genre":"Drama","title":"Great Balls of Fire!","releaseDate":615168000000,"language":"en","type":"Movie","_key":"42703"} +{"label":"Smala Sussie","description":"No overview found.","id":"11466","runtime":97,"imdbId":"tt0323998","version":78,"lastModified":"1301903861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4bc93479017a3c57fe0159f9\/smala-sussie-mid.jpg","genre":"Comedy","title":"Smala Sussie","releaseDate":1065139200000,"language":"en","type":"Movie","_key":"42704"} +{"label":"Jonas Rimeika","version":20,"id":"69643","lastModified":"1301901839000","name":"Jonas Rimeika","type":"Person","_key":"42705"} +{"label":"Bj\u00f6rn Starrin","version":22,"id":"69644","lastModified":"1301902165000","name":"Bj\u00f6rn Starrin","type":"Person","_key":"42706"} +{"label":"Kjell Bergqvist","version":56,"id":"69645","lastModified":"1301904129000","name":"Kjell Bergqvist","type":"Person","_key":"42707"} +{"label":"Ulf Malmros","version":29,"id":"69646","lastModified":"1301901802000","name":"Ulf Malmros","type":"Person","_key":"42708"} +{"label":"America's Sweethearts","description":"In the midst of a nasty public breakup of married movie stars, a studio publicist scrambles to put a cap on the escalating situation as the couple's latest film has found it's only print kidnapped by the director.","id":"11467","runtime":102,"imdbId":"tt0265029","version":135,"lastModified":"1301903759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdb\/4d27b57f5e73d626ac001cdb\/america-s-sweethearts-mid.jpg","genre":"Comedy","title":"America's Sweethearts","releaseDate":995328000000,"language":"en","type":"Movie","_key":"42709"} +{"label":"The Salton Sea","description":"After his wife is murdered, a man drifts into a world populated by thugs and speed junkies.","id":"11468","runtime":103,"imdbId":"tt0235737","trailer":"http:\/\/www.youtube.com\/watch?v=nKi70hCRBKA","version":187,"lastModified":"1301907182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a14\/4bc9347d017a3c57fe015a14\/the-salton-sea-mid.jpg","genre":"Drama","title":"The Salton Sea","releaseDate":1012608000000,"language":"en","type":"Movie","_key":"42710"} +{"label":"Black Knight","description":"Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After sustaining a blow to the head, he awakens to find himself in 14th century England.","id":"11469","runtime":95,"imdbId":"tt0265087","version":210,"lastModified":"1301902670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a21\/4bc9347e017a3c57fe015a21\/black-knight-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Black Knight","releaseDate":1005782400000,"language":"en","type":"Movie","_key":"42711"} +{"label":"Jason X","description":"In the year 2455, a cryogenically frozen Jason thaws out aboard a space station and resumes his murderous rampage.","id":"11470","runtime":93,"imdbId":"tt0211443","trailer":"http:\/\/www.youtube.com\/watch?v=9Sv8eWDEFsM","version":208,"lastModified":"1301902046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2a\/4bc9347f017a3c57fe015a2a\/jason-x-mid.jpg","genre":"Horror","title":"Jason X","releaseDate":995932800000,"language":"en","tagline":"Evil has an upgrade.","type":"Movie","_key":"42712"} +{"label":"Lexa Doig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8da\/4cf576cb5e73d629990008da\/lexa-doig-profile.jpg","version":28,"id":"69574","lastModified":"1301901302000","name":"Lexa Doig","type":"Person","_key":"42713"} +{"label":"Chuck Campbell","version":26,"id":"69575","lastModified":"1301901634000","name":"Chuck Campbell","type":"Person","_key":"42714"} +{"label":"Lisa Ryder","version":21,"id":"69576","lastModified":"1301902125000","name":"Lisa Ryder","type":"Person","_key":"42715"} +{"label":"James Isaac","version":29,"id":"69579","lastModified":"1301901465000","name":"James Isaac","type":"Person","_key":"42716"} +{"label":"A Better Tomorrow","description":"A romantic, violent, swirlingly stylish melodrama about duelling brothers.","id":"11471","runtime":95,"imdbId":"tt0092263","version":149,"lastModified":"1301902595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/000\/4d94991b7b9aa1199a002000\/ying-hung-boon-sik-mid.jpg","genre":"Action","title":"A Better Tomorrow","releaseDate":523324800000,"language":"en","type":"Movie","_key":"42717"} +{"label":"Ti Lung","version":46,"id":"69636","lastModified":"1301901304000","name":"Ti Lung","type":"Person","_key":"42718"} +{"label":"Emily Chu","version":25,"id":"69638","lastModified":"1301901536000","name":"Emily Chu","type":"Person","_key":"42719"} +{"label":"Nine Months","description":"When he finds out his longtime girlfriend is pregnant, a commitment-phobe realizes he might have to change his lifestyle for better or much, much worse.","id":"11472","runtime":103,"imdbId":"tt0113986","version":155,"lastModified":"1301903293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a64\/4bc93486017a3c57fe015a64\/nine-months-mid.jpg","genre":"Comedy","title":"Nine Months","releaseDate":805507200000,"language":"en","type":"Movie","_key":"42720"} +{"label":"The Warriors","description":"Prominent gang leader Cyrus calls a meeting of New York's gangs to set aside their turf wars and take over the city. At the meeting, a rival leader kills Cyrus, but a Coney Island gang called the Warriors is wrongly blamed for Cyrus' death. Before you know it, the cops and every gangbanger in town is hot on the Warriors' trail.","id":"11474","runtime":93,"imdbId":"tt0080120","trailer":"http:\/\/www.youtube.com\/watch?v=0P6MqHccBSI","version":177,"lastModified":"1301901618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6d\/4bc93487017a3c57fe015a6d\/the-warriors-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Warriors","releaseDate":287366400000,"language":"en","tagline":"These are the armies of the night.","type":"Movie","_key":"42721"} +{"label":"Dorsey Wright","version":20,"id":"69564","lastModified":"1301901475000","name":"Dorsey Wright","type":"Person","_key":"42722"} +{"label":"Brian Tyler","version":113,"id":"6041","lastModified":"1301901263000","name":"Brian Tyler","type":"Person","_key":"42723"} +{"label":"Leningrad Cowboys Go America","description":"The Leningrad Cowboys, a group of Finnish musicians, and their manager, travel to America seeking fame and fortune. As they cross the country, trying to get to a wedding in Mexico, they are followed by the village idiot, who wishes to join the band.","id":"11475","runtime":78,"imdbId":"tt0097728","version":71,"lastModified":"1301906066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a76\/4bc93488017a3c57fe015a76\/leningrad-cowboys-go-america-mid.jpg","genre":"Comedy","title":"Leningrad Cowboys Go America","releaseDate":606700800000,"language":"en","type":"Movie","_key":"42724"} +{"label":"Sakke J\u00e4rvenp\u00e4\u00e4","version":22,"id":"69552","lastModified":"1301902137000","name":"Sakke J\u00e4rvenp\u00e4\u00e4","type":"Person","_key":"42725"} +{"label":"Heikki Keskinen","version":19,"id":"69553","lastModified":"1301902255000","name":"Heikki Keskinen","type":"Person","_key":"42726"} +{"label":"So weit die F\u00fcsse tragen","description":"The German soldier Clemens Forel - determined to be reunited with his beloved family - makes a dramatic escape through bitter cold winters, desolate landscapes, and life threatening ventures from a Siberian labor camp after World War II. 8000 miles and three endless years of uncertainty later, he is finally about to reach his destination...An edge of your seat drama that celebrates the power of the human spirit and the force of will, while inspired and impowered by love.","id":"11476","runtime":158,"imdbId":"tt0277327","version":47,"lastModified":"1301903077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7b\/4bc93489017a3c57fe015a7b\/so-weit-die-fusse-tragen-mid.jpg","genre":"Drama","title":"So weit die F\u00fcsse tragen","releaseDate":1009411200000,"language":"en","type":"Movie","_key":"42727"} +{"label":"Bernhard Bettermann","version":20,"id":"36468","lastModified":"1301901681000","name":"Bernhard Bettermann","type":"Person","_key":"42728"} +{"label":"Anatoliy Kotenyov","version":18,"id":"69530","lastModified":"1301901987000","name":"Anatoliy Kotenyov","type":"Person","_key":"42729"} +{"label":"Irina Pantaeva","version":20,"id":"69532","lastModified":"1301901992000","name":"Irina Pantaeva","type":"Person","_key":"42730"} +{"label":"La Comunidad","description":"Julia finds 300 million pesetas hidden in a dead man's house while selling an apartment. She's a 40-ish real estate agent now forced to face the wrath of a very peculiar community (of neighbors), headed by an unscrupulous administrator. Black humor gives way to suspense, closely followed by horror that doesn't take long in coming to a head in undisguised pandemonium.","id":"11477","runtime":110,"imdbId":"tt0255067","version":111,"lastModified":"1301905452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09e\/4d6506827b9aa12a0900109e\/la-comunidad-mid.jpg","genre":"Comedy","title":"La Comunidad","releaseDate":970185600000,"language":"en","type":"Movie","_key":"42731"} +{"label":"Eduardo Antu\u00f1a","version":20,"id":"69528","lastModified":"1301903110000","name":"Eduardo Antu\u00f1a","type":"Person","_key":"42732"} +{"label":"Mar\u00eda Asquerino","version":24,"id":"69529","lastModified":"1301901951000","name":"Mar\u00eda Asquerino","type":"Person","_key":"42733"} +{"label":"The Skulls","description":"Luke's exultance at being selected for The Skulls (a secret society bred within the walls of a prominent Ivy League Campus) is soon overshadowed when he realises that all is 'not well in Wonderland'. For The Skulls is a breeding ground for the future powerful and elite. It's not only a far cry from his working class background, but it also hallows its own deep and dark secrets.","id":"11478","runtime":106,"imdbId":"tt0192614","trailer":"http:\/\/www.youtube.com\/watch?v=B03lvL3pVp8","version":157,"lastModified":"1301903485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a92\/4d445c057b9aa103c8000a92\/the-skulls-mid.jpg","genre":"Action","title":"The Skulls","releaseDate":947203200000,"language":"en","tagline":"Getting in is easy. Getting out is a killer.","type":"Movie","_key":"42734"} +{"label":"Un indien dans la ville","description":"No overview found.","id":"11479","runtime":90,"imdbId":"tt0111543","version":86,"lastModified":"1301903436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4d24faf05e73d626ac00020f\/un-indien-dans-la-ville-mid.jpg","genre":"Adventure","title":"Un indien dans la ville","releaseDate":787363200000,"language":"en","type":"Movie","_key":"42735"} +{"label":"Ludwig Briand","version":23,"id":"69535","lastModified":"1301901842000","name":"Ludwig Briand","type":"Person","_key":"42736"} +{"label":"Herv\u00e9 Palud","version":30,"id":"69537","lastModified":"1301941335000","name":"Herv\u00e9 Palud","type":"Person","_key":"42737"} +{"label":"Romuald et Juliette","description":"No overview found.","id":"11480","runtime":108,"imdbId":"tt0098220","version":88,"lastModified":"1301904471000","genre":"Comedy","title":"Romuald et Juliette","releaseDate":606528000000,"language":"en","type":"Movie","_key":"42738"} +{"label":"Maxime Leroux","version":24,"id":"69549","lastModified":"1301901715000","name":"Maxime Leroux","type":"Person","_key":"42739"} +{"label":"Repulsion","description":"Carol is a young beauty parlor worker who falls into violent paranoia (including terrifying hallucinations) over a weekend. This classic psychological thriller by Roman Polanski still holds up today.","id":"11481","runtime":104,"imdbId":"tt0059646","trailer":"http:\/\/www.youtube.com\/watch?v=iO0niGPR5S4","version":269,"lastModified":"1301903517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a91\/4bc9348a017a3c57fe015a91\/repulsion-mid.jpg","genre":"Drama","title":"Repulsion","releaseDate":-141609600000,"language":"en","type":"Movie","_key":"42740"} +{"label":"John Fraser","version":23,"id":"69555","lastModified":"1301901773000","name":"John Fraser","type":"Person","_key":"42741"} +{"label":"The Tenant","description":"A quiet and inconspicuous man (Trelkovsky) rents an apartment in France where the previous tenant committed suicide, and begins to suspect his landlord and neighbors are trying to subtly change him into the last tenant so that he too will kill himself.","id":"11482","runtime":125,"imdbId":"tt0074811","version":145,"lastModified":"1301902625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9a\/4bc9348d017a3c57fe015a9a\/le-locataire-mid.jpg","studio":"Marianne Productions","genre":"Horror","title":"The Tenant","releaseDate":201916800000,"language":"en","type":"Movie","_key":"42742"} +{"label":"Pirates","description":"Captain Red runs a hardy pirate ship with the able assistance of Frog, a dashing young French sailor. One day Capt. Red is captured and taken aboard a Spanish galleon, but thanks to his inventiveness, he raises the crew to mutiny, takes over the ship, and kidnaps the niece of the governor of Maracaibo. The question is, can he keep this pace up?","id":"11483","runtime":124,"imdbId":"tt0091757","trailer":"http:\/\/www.youtube.com\/watch?v=1158","version":124,"lastModified":"1301905273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aab\/4bc93490017a3c57fe015aab\/pirates-mid.jpg","studio":"Carthago Films S.a.r.l.","genre":"Adventure","title":"Pirates","releaseDate":522028800000,"language":"en","type":"Movie","_key":"42743"} +{"label":"Cris Campion","version":22,"id":"69563","lastModified":"1301901674000","name":"Cris Campion","type":"Person","_key":"42744"} +{"label":"Olu Jacobs","version":21,"id":"69565","lastModified":"1301901874000","name":"Olu Jacobs","type":"Person","_key":"42745"} +{"label":"Rollerball","description":"In 2018 corporations have replaced countries and rollerball, a ultra violent game is used to placate the people.","id":"11484","runtime":125,"imdbId":"tt0073631","trailer":"http:\/\/www.youtube.com\/watch?v=kGwE-uDao7Q","version":134,"lastModified":"1301904185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab4\/4bc93491017a3c57fe015ab4\/rollerball-mid.jpg","genre":"Action","title":"Rollerball","releaseDate":172886400000,"language":"en","type":"Movie","_key":"42746"} +{"label":"Take the Money and Run","description":"The life and times of Virgil Starkwell, inept bank robber.","id":"11485","runtime":85,"imdbId":"tt0065063","version":86,"lastModified":"1301903025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d27\/4cf5c21f5e73d6299a000d27\/take-the-money-and-run-mid.jpg","genre":"Comedy","title":"Take the Money and Run","releaseDate":-11750400000,"language":"en","tagline":"Crime lives!","type":"Movie","_key":"42747"} +{"label":"Jacquelyn Hyde","version":28,"id":"69570","lastModified":"1301902037000","name":"Jacquelyn Hyde","type":"Person","_key":"42748"} +{"label":"Feuer und Eis","description":"No overview found.","id":"11488","runtime":83,"imdbId":"tt0093027","version":49,"lastModified":"1301904673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51f\/4d1dd14a5e73d66b2700051f\/feuer-und-eis-mid.jpg","genre":"Action","title":"Feuer und Eis","releaseDate":506217600000,"language":"en","type":"Movie","_key":"42749"} +{"label":"Kelby Anno","version":19,"id":"69577","lastModified":"1301902255000","name":"Kelby Anno","type":"Person","_key":"42750"} +{"label":"Philippe Bernard","version":19,"id":"69578","lastModified":"1301902255000","name":"Philippe Bernard","type":"Person","_key":"42751"} +{"label":"Scott Brooksbank","version":19,"id":"69580","lastModified":"1301902255000","name":"Scott Brooksbank","type":"Person","_key":"42752"} +{"label":"Jan Bucher","version":19,"id":"69581","lastModified":"1301901873000","name":"Jan Bucher","type":"Person","_key":"42753"} +{"label":"John Eaves","version":19,"id":"69588","lastModified":"1301901873000","name":"John Eaves","type":"Person","_key":"42754"} +{"label":"Suzy Kay","version":19,"id":"69589","lastModified":"1301901873000","name":"Suzy Kay","type":"Person","_key":"42755"} +{"label":"Willy Bogner","version":25,"id":"69583","lastModified":"1301901979000","name":"Willy Bogner","type":"Person","_key":"42756"} +{"label":"Rosetta","description":"No overview found.","id":"11489","runtime":90,"imdbId":"tt0200071","version":104,"lastModified":"1301905738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad2\/4bc93493017a3c57fe015ad2\/rosetta-mid.jpg","studio":"ARP S\u00e9lection","genre":"Drama","title":"Rosetta","releaseDate":927417600000,"language":"en","type":"Movie","_key":"42757"} +{"label":"Anne Yernaux","version":19,"id":"70311","lastModified":"1301901873000","name":"Anne Yernaux","type":"Person","_key":"42758"} +{"label":"The Child","description":"Bruno and Sonia, a young couple living off her benefit and the thefts committed by his gang, have a new source of money: their newborn son.","id":"11490","runtime":100,"imdbId":"tt0456396","trailer":"http:\/\/www.youtube.com\/watch?v=812","version":188,"lastModified":"1301904343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adb\/4bc93497017a3c57fe015adb\/l-enfant-mid.jpg","studio":"Les Films Du Fleuve","genre":"Drama","title":"The Child","releaseDate":1116288000000,"language":"en","type":"Movie","_key":"42759"} +{"label":"Fran\u00e7ois Olivier","version":21,"id":"70319","lastModified":"1301901611000","name":"Fran\u00e7ois Olivier","type":"Person","_key":"42760"} +{"label":"St\u00e9phane Bissot","version":21,"id":"70320","lastModified":"1301902255000","name":"St\u00e9phane Bissot","type":"Person","_key":"42761"} +{"label":"Mireille Bailly","version":21,"id":"70321","lastModified":"1301902255000","name":"Mireille Bailly","type":"Person","_key":"42762"} +{"label":"Fire, Ice & Dynamite","description":"No overview found.","id":"11491","runtime":106,"imdbId":"tt0099564","trailer":"http:\/\/www.youtube.com\/watch?v=gWkj2toJf6Q","version":63,"lastModified":"1301903879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4c1256e67b9aa17ebf000054\/feuer-eis-dynamit-mid.jpg","genre":"Action","title":"Fire, Ice & Dynamite","releaseDate":656208000000,"language":"en","type":"Movie","_key":"42763"} +{"label":"Mang jing","description":"Two Chinese miners, who make money by killing fellow miners and then extorting money from the mine owner to keep quiet about the \"accident\", happen upon their latest victim. But one of them begins to have second thoughts.","id":"11492","runtime":92,"imdbId":"tt0351299","version":47,"lastModified":"1301902731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4c816dad7b9aa13b68000047\/mang-jing-mid.jpg","genre":"Drama","title":"Mang jing","releaseDate":1045008000000,"language":"en","type":"Movie","_key":"42764"} +{"label":"Yang Li","version":23,"id":"71049","lastModified":"1301901444000","name":"Yang Li","type":"Person","_key":"42765"} +{"label":"Qiang Li","version":20,"id":"71050","lastModified":"1301901524000","name":"Qiang Li","type":"Person","_key":"42766"} +{"label":"Baoqiang Wang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b1\/4d0483835e73d621a40027b1\/baoqiang-wang-profile.jpg","version":29,"birthday":"456271200000","id":"71051","lastModified":"1301901301000","name":"Baoqiang Wang","type":"Person","_key":"42767"} +{"label":"Shuangbao Wang","version":20,"id":"71052","lastModified":"1301901580000","name":"Shuangbao Wang","type":"Person","_key":"42768"} +{"label":"Jing Ai","version":20,"id":"71053","lastModified":"1301901494000","name":"Jing Ai","type":"Person","_key":"42769"} +{"label":"Wilderness","description":"Juvenile delinquents gets sent to a small British island after a fellow prisoners death, where they have to fight for survival.","id":"11494","runtime":93,"imdbId":"tt0465670","trailer":"http:\/\/www.youtube.com\/watch?v=1556","version":144,"lastModified":"1301902882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/007\/4bcb34d9017a3c4c5a000007\/wilderness-mid.jpg","genre":"Horror","title":"Wilderness","releaseDate":1142726400000,"language":"en","tagline":"It's not about revenge. It's about punishment.","type":"Movie","_key":"42770"} +{"label":"Stephen Wight","version":23,"id":"69592","lastModified":"1301901826000","name":"Stephen Wight","type":"Person","_key":"42771"} +{"label":"Michael J. Bassett","version":23,"id":"69593","lastModified":"1301901786000","name":"Michael J. Bassett","type":"Person","_key":"42772"} +{"label":"Firestarter","description":"A couple who participated in a potent medical experiment gain telekinetic ability and then have a child who is pyrokinetic.","id":"11495","runtime":114,"imdbId":"tt0087262","version":89,"lastModified":"1301903333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae8\/4bc93498017a3c57fe015ae8\/firestarter-mid.jpg","genre":"Drama","title":"Firestarter","releaseDate":453081600000,"language":"en","type":"Movie","_key":"42773"} +{"label":"Renegade","description":"No overview found.","id":"11496","runtime":92,"imdbId":"tt0095975","version":97,"lastModified":"1301903436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/598\/4bf396d5017a3c320d000598\/renegade-mid.jpg","genre":"Action","title":"Renegade","releaseDate":563760000000,"language":"en","type":"Movie","_key":"42774"} +{"label":"Ross Hill","version":19,"id":"69602","lastModified":"1301902255000","name":"Ross Hill","type":"Person","_key":"42775"} +{"label":"All Dogs Go to Heaven","description":"When a casino owning dog named Charlie is murdered by his rival Carface, he finds himself in Heaven basically by default since all dogs go to heaven. However, since he wants to get back at his killer, he cons his way back to the living with the warning that doing that damns him to Hell. Once back, he teams with his old partner, Itchy to prep his retaliation. He also stumbles on to an orphan girl who can talk to the animals, thus allowing him to get the inside info on the races to ensure his wins","id":"11497","runtime":89,"imdbId":"tt0096787","trailer":"http:\/\/www.youtube.com\/watch?v=1409","version":162,"lastModified":"1301901459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f14\/4d50b7f25e73d617b7003f14\/all-dogs-go-to-heaven-mid.jpg","genre":"Adventure","title":"All Dogs Go to Heaven","releaseDate":627264000000,"language":"en","tagline":"But not all dogs stay there!","type":"Movie","_key":"42776"} +{"label":"Melba Moore","version":22,"id":"69604","lastModified":"1301902255000","name":"Melba Moore","type":"Person","_key":"42777"} +{"label":"Dan Kuenster","version":22,"id":"69605","lastModified":"1301902255000","name":"Dan Kuenster","type":"Person","_key":"42778"} +{"label":"Dead Again","description":"In 1949 composer Roman Strauss is executed for the vicious murder of his wife Margaret with a pair of scissors. In 1990s Los Angeles a mute amnesiac woman shows up at an orphanage and private eye Mike Church is called in to investigate. Under hypnosis both the woman and Church seem to have a strange link back to the Strauss murder.","id":"11498","runtime":107,"imdbId":"tt0101669","trailer":"http:\/\/www.youtube.com\/watch?v=vVt2h_UMnr0","version":175,"lastModified":"1302025394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aff\/4bc9349a017a3c57fe015aff\/dead-again-mid.jpg","studio":"Mirage Studios","genre":"Drama","title":"Dead Again","releaseDate":682905600000,"language":"en","tagline":"A Mystery About True Love...And Certain Death.","type":"Movie","_key":"42779"} +{"label":"Lois Hall","version":20,"id":"69642","lastModified":"1301902124000","name":"Lois Hall","type":"Person","_key":"42780"} +{"label":"Frost-Nixon","description":"A dramatic retelling of the post-Watergate television interviews between British talk-show host David Frost and former president Richard Nixon.","id":"11499","runtime":122,"imdbId":"tt0870111","trailer":"http:\/\/www.youtube.com\/watch?v=lP_l2IFiQzs","version":204,"lastModified":"1301902356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52b\/4c61e3117b9aa172da00052b\/frost-nixon-mid.jpg","studio":"Imagine Entertainment","genre":"Drama","title":"Frost-Nixon","releaseDate":1230249600000,"language":"en","tagline":"400 million people were waiting for the truth","type":"Movie","_key":"42781"} +{"label":"The Kolaborator","description":"No overview found.","id":"11500","runtime":14,"imdbId":"tt0959386","homepage":"http:\/\/www.outofexile.com\/thekolaborator\/","version":67,"lastModified":"1301907439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3e\/4bc934a3017a3c57fe015b3e\/the-kolaborator-mid.jpg","genre":"Drama","title":"The Kolaborator","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"42782"} +{"label":"Jerry Hoffman","version":21,"id":"69619","lastModified":"1301902049000","name":"Jerry Hoffman","type":"Person","_key":"42783"} +{"label":"Blas Kisic","version":20,"id":"69620","lastModified":"1301902188000","name":"Blas Kisic","type":"Person","_key":"42784"} +{"label":"Marko Malic","version":20,"id":"69621","lastModified":"1301901998000","name":"Marko Malic","type":"Person","_key":"42785"} +{"label":"Jagoda Spoljaric","version":20,"id":"69624","lastModified":"1301902387000","name":"Jagoda Spoljaric","type":"Person","_key":"42786"} +{"label":"Elizabeth Clemmons","version":20,"id":"69625","lastModified":"1301902378000","name":"Elizabeth Clemmons","type":"Person","_key":"42787"} +{"label":"Maria Kisic","version":20,"id":"69626","lastModified":"1301902188000","name":"Maria Kisic","type":"Person","_key":"42788"} +{"label":"A.C. Earing","version":21,"id":"69627","lastModified":"1301902378000","name":"A.C. Earing","type":"Person","_key":"42789"} +{"label":"Jobim Coleman","version":20,"id":"69628","lastModified":"1301902378000","name":"Jobim Coleman","type":"Person","_key":"42790"} +{"label":"Chris Bessounian","version":20,"id":"69622","lastModified":"1301902021000","name":"Chris Bessounian","type":"Person","_key":"42791"} +{"label":"Knife in the Water","description":"On their way to a sailing trip, an aging husband and wife invite along an emphatic young hitchhiker out of sheer patronization.","id":"11502","runtime":94,"imdbId":"tt0056291","version":91,"lastModified":"1301902882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8c\/4d44b98d5e73d65c84000a8c\/n-z-w-wodzie-mid.jpg","genre":"Drama","title":"Knife in the Water","releaseDate":-246672000000,"language":"en","type":"Movie","_key":"42792"} +{"label":"Jolanta Umecka","version":21,"id":"69632","lastModified":"1301901723000","name":"Jolanta Umecka","type":"Person","_key":"42793"} +{"label":"The Serpent and the Rainbow","description":"Dennis Allan is an scientist who visits Haiti on the strength of a rumour of a drug which renders the recipient totally paralyzed but conscious. The drug's effects often fool doctors, who declare the victims dead. Could this be the origin of the \"zombie\" legend? Alan embarks on a surprising and often surreal investigation of the turbulent social chaos that is Haiti during the revolution which ousted hated dictator \"Baby Doc\" Duvalier. Often a pawn in a greater game, Alan must decide what is scie","id":"11503","runtime":98,"imdbId":"tt0096071","trailer":"http:\/\/www.youtube.com\/watch?v=Kp5dW9SUvyg","version":182,"lastModified":"1301903816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13e\/4c826fce7b9aa13b6600013e\/the-serpent-and-the-rainbow-mid.jpg","genre":"Drama","title":"The Serpent and the Rainbow","releaseDate":571017600000,"language":"en","tagline":"Don't bury me...I'm not dead!","type":"Movie","_key":"42794"} +{"label":"Brent Jennings","version":25,"id":"84685","lastModified":"1301901765000","name":"Brent Jennings","type":"Person","_key":"42795"} +{"label":"Badja Djola","version":22,"id":"107009","lastModified":"1301902420000","name":"Badja Djola","type":"Person","_key":"42796"} +{"label":"Theresa Merritt","version":27,"id":"77226","lastModified":"1301902126000","name":"Theresa Merritt","type":"Person","_key":"42797"} +{"label":"Suburban Commando","description":"Shep Ramsey is an interstellar hero, righting wrongs, etc. His ship is damaged after a fight with an interstellar nasty and he must hide out on Earth until it can recharge. He leaves his power suit at home, but still finds himself unable to allow wrongs to go unrighted and so mixes it up with bad drivers, offensive paperboys, muggers and the like.","id":"11504","runtime":88,"imdbId":"tt0103003","version":144,"lastModified":"1301902793000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5c\/4bc934a6017a3c57fe015b5c\/suburban-commando-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Suburban Commando","releaseDate":686534400000,"language":"en","type":"Movie","_key":"42798"} +{"label":"William Ball","version":19,"id":"87916","lastModified":"1301902894000","name":"William Ball","type":"Person","_key":"42799"} +{"label":"Jo Ann Dearing","version":19,"id":"87917","lastModified":"1301902894000","name":"Jo Ann Dearing","type":"Person","_key":"42800"} +{"label":"Michael Faustino","version":25,"id":"76132","lastModified":"1301902378000","name":"Michael Faustino","type":"Person","_key":"42801"} +{"label":"Mark Calaway","version":21,"id":"87919","lastModified":"1301902894000","name":"Mark Calaway","type":"Person","_key":"42802"} +{"label":"Laura Mooney","version":22,"id":"87920","lastModified":"1301902635000","name":"Laura Mooney","type":"Person","_key":"42803"} +{"label":"Dennis Burkley","version":28,"id":"83362","lastModified":"1301902681000","name":"Dennis Burkley","type":"Person","_key":"42804"} +{"label":"Luis Contreras","version":20,"id":"85870","lastModified":"1301902894000","name":"Luis Contreras","type":"Person","_key":"42805"} +{"label":"Nick Eldredge","version":20,"id":"87921","lastModified":"1301902894000","name":"Nick Eldredge","type":"Person","_key":"42806"} +{"label":"Burt Kennedy","version":43,"id":"18579","lastModified":"1301901298000","name":"Burt Kennedy","type":"Person","_key":"42807"} +{"label":"Family Plan","description":"A bumbling guy takes a group of orphans to summer camp.","id":"11505","runtime":95,"imdbId":"tt0123832","version":92,"lastModified":"1301905359000","genre":"Comedy","title":"Family Plan","releaseDate":852076800000,"language":"en","type":"Movie","_key":"42808"} +{"label":"Eddie Bowz","version":20,"id":"69651","lastModified":"1301901579000","name":"Eddie Bowz","type":"Person","_key":"42809"} +{"label":"Fred Gerber","version":21,"id":"45642","lastModified":"1301901703000","name":"Fred Gerber","type":"Person","_key":"42810"} +{"label":"The Silence","description":"Two sisters stop at a hotel in an unidentified European country on the brink of war or insurrection. The older, more cultured sister, Ester (Ingrid Thulin), who translates literature, is terminally ill, and her fear of death clouds her relationship with her younger, beautiful sister Anna (Gunnel Lindblom), who's depicted as the fleshly side of the spirit\/flesh dichotomy. - from Wikipedia","id":"11506","runtime":96,"imdbId":"tt0057611","trailer":"http:\/\/www.youtube.com\/watch?v=Pgkbr4plr6U","version":101,"lastModified":"1301903240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6a\/4bc934ab017a3c57fe015b6a\/tystnaden-mid.jpg","genre":"Comedy","title":"The Silence","releaseDate":-198028800000,"language":"en","type":"Movie","_key":"42811"} +{"label":"Birger Malmsten","version":24,"id":"69656","lastModified":"1301901824000","name":"Birger Malmsten","type":"Person","_key":"42812"} +{"label":"H\u00e5kan Jahnberg","version":21,"id":"69657","lastModified":"1301901873000","name":"H\u00e5kan Jahnberg","type":"Person","_key":"42813"} +{"label":"Body Double","description":"Jake comes home to find his girlfriend with another man and has to find a new place. In between his acting workshops and his job in a vampire B-movie, he scans the paper looking for anything. He happens to meet a fellow actor who needs a house sitter. Both are pleased with the arrangement that will have Jake staying in the house and for a sweetener, Frank shows him his 'favorite neighbor', a well built woman who strips with her window open each night. Jake becomes obsessed with meeting her and i","id":"11507","runtime":114,"imdbId":"tt0086984","version":283,"lastModified":"1301903662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b73\/4bc934ab017a3c57fe015b73\/body-double-mid.jpg","genre":"Thriller","title":"Body Double","releaseDate":467596800000,"language":"en","type":"Movie","_key":"42814"} +{"label":"David Haskell","version":18,"id":"104385","lastModified":"1301902480000","name":"David Haskell","type":"Person","_key":"42815"} +{"label":"Rebecca Stanley","version":18,"id":"104386","lastModified":"1301902480000","name":"Rebecca Stanley","type":"Person","_key":"42816"} +{"label":"Linda Shaw","version":19,"id":"104388","lastModified":"1301902541000","name":"Linda Shaw","type":"Person","_key":"42817"} +{"label":"Ty Randolph","version":21,"id":"104390","lastModified":"1301902388000","name":"Ty Randolph","type":"Person","_key":"42818"} +{"label":"Alexandra Day","version":18,"id":"104392","lastModified":"1301902480000","name":"Alexandra Day","type":"Person","_key":"42819"} +{"label":"Cara Lott","version":19,"id":"104394","lastModified":"1301902541000","name":"Cara Lott","type":"Person","_key":"42820"} +{"label":"Barbara Peckinpaugh","version":23,"id":"100450","lastModified":"1301902511000","name":"Barbara Peckinpaugh","type":"Person","_key":"42821"} +{"label":"Addams Family Reunion","description":"The Addams Family goes on a search for their relatives. Gomez and Morticia are horrified to discover that Grandpa and Grandma Addams have a disease that is slowly turning them \"normal\". The only chance they have of a cure is to find a family member hoping that they know a home remedy. ","id":"11508","runtime":91,"imdbId":"tt0146402","version":150,"lastModified":"1301908309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc934ac017a3c57fe015b78\/addams-family-reunion-mid.jpg","genre":"Comedy","title":"Addams Family Reunion","releaseDate":906422400000,"language":"en","type":"Movie","_key":"42822"} +{"label":"Jerry Messing","version":17,"id":"106483","lastModified":"1301902894000","name":"Jerry Messing","type":"Person","_key":"42823"} +{"label":"Nicole Fugere","version":17,"id":"106484","lastModified":"1301902894000","name":"Nicole Fugere","type":"Person","_key":"42824"} +{"label":"Heidi Lenhart","version":20,"id":"106485","lastModified":"1301902533000","name":"Heidi Lenhart","type":"Person","_key":"42825"} +{"label":"Patrick Thomas","version":19,"id":"98859","lastModified":"1301902920000","name":"Patrick Thomas","type":"Person","_key":"42826"} +{"label":"Rodger Halston","version":20,"id":"106486","lastModified":"1301902893000","name":"Rodger Halston","type":"Person","_key":"42827"} +{"label":"Hilary Shepard","version":19,"id":"106487","lastModified":"1301903039000","name":"Hilary Shepard","type":"Person","_key":"42828"} +{"label":"Maria Ford","version":34,"id":"97880","lastModified":"1301901507000","name":"Maria Ford","type":"Person","_key":"42829"} +{"label":"Marcus Aurelius","version":21,"id":"106488","lastModified":"1301902893000","name":"Marcus Aurelius","type":"Person","_key":"42830"} +{"label":"Billy Burnette","version":18,"id":"106489","lastModified":"1301903039000","name":"Billy Burnette","type":"Person","_key":"42831"} +{"label":"Leigh Taylor-Young","version":29,"id":"71240","lastModified":"1301902141000","name":"Leigh Taylor-Young","type":"Person","_key":"42832"} +{"label":"Dave Payne","version":28,"id":"30870","lastModified":"1301901493000","name":"Dave Payne","type":"Person","_key":"42833"} +{"label":"Silverado","description":"A misfit bunch of friends come together to right the injustices that exist in a small town.","id":"11509","runtime":127,"imdbId":"tt0090022","trailer":"http:\/\/www.youtube.com\/watch?v=2DQEJA4tyLg","version":332,"lastModified":"1301902311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4bc934ac017a3c57fe015b81\/silverado-mid.jpg","genre":"Action","title":"Silverado","releaseDate":489801600000,"language":"en","type":"Movie","_key":"42834"} +{"label":"Repossessed","description":"t's been some time since Father Jebedaiah Mayii exorcised the devil from little Nancy Aglet, but now Nancy has grown up and has a family, the demon returns and repossesses Nancy. With Father Mayii unwilling to help, Father Luke Brophy tries his best to help Nancy, even when TV's Ernest Weller plans to air the exorcism live on TV.","id":"11510","runtime":80,"imdbId":"tt0100475","version":128,"lastModified":"1301902237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4c4cc6b37b9aa1237f000238\/repossessed-mid.jpg","genre":"Comedy","title":"Repossessed","releaseDate":653270400000,"language":"en","type":"Movie","_key":"42835"} +{"label":"Thom Sharp","version":17,"id":"102928","lastModified":"1301902635000","name":"Thom Sharp","type":"Person","_key":"42836"} +{"label":"Lana Schwab","version":17,"id":"102929","lastModified":"1301902081000","name":"Lana Schwab","type":"Person","_key":"42837"} +{"label":"Melissa Moore","version":24,"id":"99067","lastModified":"1301902318000","name":"Melissa Moore","type":"Person","_key":"42838"} +{"label":"Murray Langston","version":17,"id":"102930","lastModified":"1301901873000","name":"Murray Langston","type":"Person","_key":"42839"} +{"label":"Charlotte J. Helmkamp","version":18,"id":"102931","lastModified":"1301902467000","name":"Charlotte J. Helmkamp","type":"Person","_key":"42840"} +{"label":"Army Archerd","version":17,"id":"102932","lastModified":"1301902467000","name":"Army Archerd","type":"Person","_key":"42841"} +{"label":"Jack LaLanne","version":17,"id":"102933","lastModified":"1301902255000","name":"Jack LaLanne","type":"Person","_key":"42842"} +{"label":"Wally George","version":17,"id":"102934","lastModified":"1301902467000","name":"Wally George","type":"Person","_key":"42843"} +{"label":"Bob Zany","version":17,"id":"102936","lastModified":"1301902255000","name":"Bob Zany","type":"Person","_key":"42844"} +{"label":"Gene Okerlund","version":17,"id":"102937","lastModified":"1301902635000","name":"Gene Okerlund","type":"Person","_key":"42845"} +{"label":"Donna Spangler","version":25,"id":"102938","lastModified":"1301902477000","name":"Donna Spangler","type":"Person","_key":"42846"} +{"label":"Bob Logan","version":27,"id":"69667","lastModified":"1301901465000","name":"Bob Logan","type":"Person","_key":"42847"} +{"label":"Kazaam","description":"Shaquille O'Neal as a rapping genie protects a little boy.","id":"11511","runtime":93,"imdbId":"tt0116756","version":92,"lastModified":"1301903904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8b\/4bc934ae017a3c57fe015b8b\/kazaam-mid.jpg","genre":"Comedy","title":"Kazaam","releaseDate":837561600000,"language":"en","type":"Movie","_key":"42848"} +{"label":"James Acheson","version":20,"id":"69671","lastModified":"1301902081000","name":"James Acheson","type":"Person","_key":"42849"} +{"label":"L'alpagueur","description":"No overview found.","id":"11512","runtime":110,"imdbId":"tt0074123","version":75,"lastModified":"1301904709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/251\/4c56bfcf7b9aa151f7000251\/l-alpagueur-mid.jpg","genre":"Action","title":"L'alpagueur","releaseDate":196560000000,"language":"en","type":"Movie","_key":"42850"} +{"label":"Philippe Labro","version":24,"id":"69681","lastModified":"1301901945000","name":"Philippe Labro","type":"Person","_key":"42851"} +{"label":"Cobra Verde","description":"Based upon Bruce Chatwin's 1980 novel, The Viceroy of Ouidah, the film depicts the life of a fictional slave trader named Francisco Manoel da Silva (known as 'Cobra Verde') played by Klaus Kinski.","id":"11513","runtime":111,"imdbId":"tt0094888","version":100,"lastModified":"1301905334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cc\/4c9669ae7b9aa10d5a0003cc\/cobra-verde-mid.jpg","genre":"Adventure","title":"Cobra Verde","releaseDate":565488000000,"language":"en","type":"Movie","_key":"42852"} +{"label":"King Ampaw","version":20,"id":"69686","lastModified":"1301901951000","name":"King Ampaw","type":"Person","_key":"42853"} +{"label":"NVA","description":"No overview found.","id":"11514","runtime":94,"imdbId":"tt0424297","homepage":"http:\/\/www.nva-derfilm.de\/","version":60,"lastModified":"1301904947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba0\/4bc934b5017a3c57fe015ba0\/nva-mid.jpg","genre":"Comedy","title":"NVA","releaseDate":1127952000000,"language":"en","type":"Movie","_key":"42854"} +{"label":"Kim Frank","version":19,"id":"69695","lastModified":"1301902081000","name":"Kim Frank","type":"Person","_key":"42855"} +{"label":"Goya's Ghosts","description":"Painter Francisco Goya faces a scandal involving his muse, who is labeled a heretic by a monk.","id":"11515","runtime":114,"imdbId":"tt0455957","version":367,"lastModified":"1301902435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd6\/4d8cf30c5e73d65beb000bd6\/goya-s-ghosts-mid.jpg","studio":"The Saul Zaentz Company","genre":"Drama","title":"Goya's Ghosts","releaseDate":1162944000000,"language":"en","type":"Movie","_key":"42856"} +{"label":"Winged Migration","description":"The cameras of Jacques Perrin fly with migratory birds: geese, storks, cranes. The film begins with spring in North America and the migration to the Arctic; the flight is a community event for each species. Once in the Arctic, it's family time: courtship, nests, eggs, fledglings, and first flight. Chicks must soon fly south. Bad weather, hunters, and pollution take their toll. Then, the cameras go","id":"11516","runtime":98,"imdbId":"tt0301727","trailer":"http:\/\/www.youtube.com\/watch?v=j4sKZfntsXM","version":163,"lastModified":"1301904355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f0\/4d4faedc5e73d617b70036f0\/winged-migration-mid.jpg","genre":"Documentary","title":"Winged Migration","releaseDate":1008115200000,"language":"en","type":"Movie","_key":"42857"} +{"label":"Money Train","description":"Money Train is a 1995 American action\/thriller film starring Wesley Snipes, Woody Harrelson and Jennifer Lopez as New York City transit cops. After losing his job, Harrelson's character plots to hijack and then rob the \"money train\" which hauls collected fare revenues for the New York City Subway from the system's stations.","id":"11517","runtime":103,"imdbId":"tt0113845","version":203,"lastModified":"1301901964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cd\/4c8a551e5e73d67c430000cd\/money-train-mid.jpg","genre":"Action","title":"Money Train","releaseDate":816998400000,"language":"en","type":"Movie","_key":"42858"} +{"label":"Mohabbatein","description":"In India, open romance is forbidden, as is showing affection in public. A college principal named Narayan is a strong believer in this, aware that a male student named Vicky is in love with Ishika; while another male student is hopelessly in love with Sanjana; and a third man named Karan is in love with a married woman named Kiran. No amount of persuasion can get Narayan to change his mind. Then the college recruits a music teacher named Raj, who eventually starts fanning the flames of love amon","id":"11518","runtime":216,"imdbId":"tt0213890","version":227,"lastModified":"1301902766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e8\/4c011782017a3c702f0011e8\/mohabbatein-mid.jpg","studio":"Yash Raj Films","genre":"Drama","title":"Mohabbatein","releaseDate":972604800000,"language":"en","tagline":"Some Love Stories... Live Forever","type":"Movie","_key":"42859"} +{"label":"Preeti Jhangiani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29c\/4d3563f75e73d6334d00a29c\/preeti-jhangiani-profile.jpg","version":27,"id":"125205","lastModified":"1301902166000","name":"Preeti Jhangiani","type":"Person","_key":"42860"} +{"label":"Jugal Hansraj","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/023\/4d3563fe5e73d6335600a023\/jugal-hansraj-profile.jpg","version":26,"id":"69711","lastModified":"1301901536000","name":"Jugal Hansraj","type":"Person","_key":"42861"} +{"label":"Kim Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cff\/4d2233f97b9aa1289f000cff\/kim-sharma-profile.jpg","version":29,"id":"87705","lastModified":"1301901777000","name":"Kim Sharma","type":"Person","_key":"42862"} +{"label":"Uday Chopra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/108\/4c4f18ef5e73d62ec1000108\/uday-chopra-profile.jpg","version":40,"id":"69709","lastModified":"1301901208000","name":"Uday Chopra","type":"Person","_key":"42863"} +{"label":"Shamita Shetty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e91\/4d3564455e73d6335b009e91\/shamita-shetty-profile.jpg","version":29,"id":"85732","lastModified":"1301901819000","name":"Shamita Shetty","type":"Person","_key":"42864"} +{"label":"Archana Puran Singh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b5\/4d34b4285e73d633520093b5\/archana-puran-singh-profile.jpg","version":31,"id":"87304","lastModified":"1301902687000","name":"Archana Puran Singh","type":"Person","_key":"42865"} +{"label":"Saurabh Shukla","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9c7\/4d21fef77b9aa128860009c7\/saurabh-shukla-profile.jpg","version":44,"id":"76789","lastModified":"1302075445000","name":"Saurabh Shukla","type":"Person","_key":"42866"} +{"label":"Aditya Chopra","version":71,"id":"35771","lastModified":"1301901508000","name":"Aditya Chopra","type":"Person","_key":"42867"} +{"label":"1941","description":"It's been six days since the attack on Pearl Harbor. Panic grips California, supposedly the next target of the Japanese forces. Everywhere in California, people are suffering from war nerves. Chaos erupts all over the state. An Army Air Corps Captain, a civilian with a deranged sense of Nationalism, civilian defenders, and a Motor Pool crew all end up chasing a Japanese sub planning to attack LA.","id":"11519","runtime":113,"imdbId":"tt0078723","trailer":"http:\/\/www.youtube.com\/watch?v=JdUCu-A7tgg","version":155,"lastModified":"1301902062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd5\/4bc934b9017a3c57fe015bd5\/1941-mid.jpg","genre":"Comedy","title":"1941","releaseDate":313891200000,"language":"en","type":"Movie","_key":"42868"} +{"label":"Grumpy Old Men","description":"A lifelong feud between two neighbors since childhood, only gets worse when a new female neighbor moves across the street.","id":"11520","runtime":103,"imdbId":"tt0107050","trailer":"http:\/\/www.youtube.com\/watch?v=Ahk9HdvCp2o","version":171,"lastModified":"1301907561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4d55ddaf7b9aa16bc6000133\/grumpy-old-men-mid.jpg","genre":"Comedy","title":"Grumpy Old Men","releaseDate":756777600000,"language":"en","type":"Movie","_key":"42869"} +{"label":"Little Man Tate","description":"Dede is a sole parent trying to bring up her son Fred. When it is discovered that Fred is a genius, she is determined to ensure that Fred has all the opportunities that he needs, and that he is not taken advantage of by people who forget that his extremely powerful intellect is harboured in the body and emotions of a child.","id":"11521","runtime":99,"imdbId":"tt0102316","version":120,"lastModified":"1302025170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/689\/4cf521aa5e73d6299c000689\/little-man-tate-mid.jpg","genre":"Drama","title":"Little Man Tate","releaseDate":684115200000,"language":"en","type":"Movie","_key":"42870"} +{"label":"Pretty in Pink","description":"Young Andie is one of the not-so-popular girls in high school. She usually hangs out with her friends Iona or Duckie. Duckie has always had a crush on her, but now she has met a new guy from school, Blane. He's one of the rich and popular guys but can the two worlds meet? ","id":"11522","runtime":96,"imdbId":"tt0091790","version":142,"lastModified":"1301902401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfb\/4bc934c2017a3c57fe015bfb\/pretty-in-pink-mid.jpg","studio":"Paramount","genre":"Comedy","title":"Pretty in Pink","releaseDate":509932800000,"language":"en","tagline":"Blane's a pretty cool guy. Andie's pretty in pink. And Ducky's pretty crazy.","type":"Movie","_key":"42871"} +{"label":"Jon Cryer","version":41,"id":"69718","lastModified":"1301901584000","name":"Jon Cryer","type":"Person","_key":"42872"} +{"label":"View from the Top","description":"No overview found.","id":"11523","runtime":87,"imdbId":"tt0264150","version":178,"lastModified":"1301902553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/779\/4d6b2ddf5e73d60729000779\/view-from-the-top-mid.jpg","genre":"Comedy","title":"View from the Top","releaseDate":1048204800000,"language":"en","type":"Movie","_key":"42873"} +{"label":"Bruno Barreto","version":26,"id":"69719","lastModified":"1301901611000","name":"Bruno Barreto","type":"Person","_key":"42874"} +{"label":"Thief","description":"Michael Mann directs James Caan as a professional safecracker named Frank, who specializes in high-profile diamond heists. Frank plans to use his ill-gotten income to retire from crime and build a nice life for himself complete with a home, wife and kids. To accelerate this process, he signs on with a top gangster (Robert Prosky) for a big score. But when Frank tries to quit the job, the mob comes after him and his girlfriend (Tuesday Weld).","id":"11524","runtime":122,"imdbId":"tt0083190","version":125,"lastModified":"1301904184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/239\/4c193b637b9aa10913000239\/thief-mid.jpg","genre":"Action","title":"Thief","releaseDate":354499200000,"language":"en","type":"Movie","_key":"42875"} +{"label":"Tom Signorelli","version":22,"id":"71347","lastModified":"1301901832000","name":"Tom Signorelli","type":"Person","_key":"42876"} +{"label":"Lawnmower Man 2: Beyond Cyberspace","description":"Jobe is resuscitated by Jonathan Walker. He wants Jobe to create a special computer chip that would connect all the computers in the world into one network, which Walker would control and use. But what Walker doesn't realize is a group of teenage hackers are on to him and out to stop his plan.","id":"11525","runtime":92,"imdbId":"tt0116839","version":121,"lastModified":"1301903929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c16\/4bc934c4017a3c57fe015c16\/lawnmower-man-2-beyond-cyberspace-mid.jpg","genre":"Action","title":"Lawnmower Man 2: Beyond Cyberspace","releaseDate":821404800000,"language":"en","type":"Movie","_key":"42877"} +{"label":"Farhad Mann","version":21,"id":"69721","lastModified":"1301901873000","name":"Farhad Mann","type":"Person","_key":"42878"} +{"label":"Bandits","description":"No overview found.","id":"11526","runtime":110,"imdbId":"tt0118682","version":114,"lastModified":"1301902412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51f\/4c5366f97b9aa13d4c00051f\/bandits-mid.jpg","genre":"Action","title":"Bandits","releaseDate":867888000000,"language":"en","type":"Movie","_key":"42879"} +{"label":"Excalibur","description":"The myth of King Arthur brought to the screen. Uthur Pendragon is given the mystical sword Excalibur by Merlyn. At his death Uthur buries the sword into a stone, and the next man that can pull it out will be King of England. Years later Arthur, Uthur's bastard son draws Excalibur and becomes king. Arthur's evil half-sister Morgana sires a son with him, who may prove his downfall.","id":"11527","runtime":140,"imdbId":"tt0082348","trailer":"http:\/\/www.youtube.com\/watch?v=emF-m9qnF5o","version":323,"lastModified":"1301901886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c31\/4bc934ca017a3c57fe015c31\/excalibur-mid.jpg","genre":"Action","title":"Excalibur","releaseDate":355708800000,"language":"en","type":"Movie","_key":"42880"} +{"label":"Paul Geoffrey","version":19,"id":"69735","lastModified":"1301902255000","name":"Paul Geoffrey","type":"Person","_key":"42881"} +{"label":"Robert Addie","version":23,"id":"78525","lastModified":"1301901611000","name":"Robert Addie","type":"Person","_key":"42882"} +{"label":"Keith Buckley","version":16,"id":"104757","lastModified":"1301902467000","name":"Keith Buckley","type":"Person","_key":"42883"} +{"label":"Niall O'Brien","version":16,"id":"104758","lastModified":"1301902893000","name":"Niall O'Brien","type":"Person","_key":"42884"} +{"label":"The Sandlot","description":"Scotty Smalls moves to a new neighborhood with his mom and stepdad, and wants to learn to play baseball. The neighborhood baseball guru Rodriquez takes Smalls under his wing. They fall into adventures involving baseball, treehouse sleep-ins, the desirous lifeguard at the local pool, the snooty rival ball team, and the travelling fair.","id":"11528","runtime":101,"imdbId":"tt0108037","version":127,"lastModified":"1301901669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4c39f9047b9aa10edd0001f0\/the-sandlot-mid.jpg","genre":"Comedy","title":"The Sandlot","releaseDate":734140800000,"language":"en","tagline":"They're more than a team. They're the best buddies in the entire history of the world.","type":"Movie","_key":"42885"} +{"label":"Mike Vitar","version":23,"id":"69738","lastModified":"1301901488000","name":"Mike Vitar","type":"Person","_key":"42886"} +{"label":"Patrick Renna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4cd351e67b9aa113a800001d\/patrick-renna-profile.jpg","version":30,"id":"69740","lastModified":"1301901413000","name":"Patrick Renna","type":"Person","_key":"42887"} +{"label":"Chauncey Leopardi","version":24,"id":"88599","lastModified":"1301902394000","name":"Chauncey Leopardi","type":"Person","_key":"42888"} +{"label":"Herb Muller","version":21,"id":"141457","lastModified":"1301902052000","name":"Herb Muller","type":"Person","_key":"42889"} +{"label":"David M. Evans","version":36,"id":"69741","lastModified":"1301901459000","name":"David M. Evans","type":"Person","_key":"42890"} +{"label":"Sweet Home Alabama","description":"New York fashion designer Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But Melanie's past holds many secrets, including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.","id":"11529","runtime":118,"imdbId":"tt0256415","version":175,"lastModified":"1301902454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c53\/4bc934cc017a3c57fe015c53\/sweet-home-alabama-mid.jpg","genre":"Comedy","title":"Sweet Home Alabama","releaseDate":1032480000000,"language":"en","tagline":"Sometimes What You're Looking For Is Right Where You Left It.","type":"Movie","_key":"42891"} +{"label":"The Spat","description":"Guillaume has made it: A machine that can clean dirty air by simply sucking all dirt into air balloons and then shipping them far far away so his explanation. Some Japanese business guys, after dinner with a lot of alcohol, order 5,000 pieces. His only problem: His production capacity is way to small so he gets to produce the machines in his private house. His wife Bernadette is far from being happy about it. Her private life goes down the line so she decides to leave Guillaume and to finally ha","id":"11530","runtime":97,"imdbId":"tt0078528","version":80,"lastModified":"1301902535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4d111ec77b9aa114820004fa\/la-zizanie-mid.jpg","genre":"Comedy","title":"The Spat","releaseDate":258854400000,"language":"en","type":"Movie","_key":"42892"} +{"label":"Jean-Jacques Moreau","version":22,"id":"69746","lastModified":"1301902016000","name":"Jean-Jacques Moreau","type":"Person","_key":"42893"} +{"label":"Book of Shadows: Blair Witch 2","description":"The story is presented through a series of flashbacks, as some of the young adults are questioned at a police station about their time spent in the woods.","id":"11531","runtime":90,"imdbId":"tt0229260","version":169,"lastModified":"1301902132000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5c\/4bc934cf017a3c57fe015c5c\/book-of-shadows-blair-witch-2-mid.jpg","genre":"Horror","title":"Book of Shadows: Blair Witch 2","releaseDate":972604800000,"language":"en","type":"Movie","_key":"42894"} +{"label":"Tristine Skyler","version":18,"id":"69748","lastModified":"1301901873000","name":"Tristine Skyler","type":"Person","_key":"42895"} +{"label":"Stephen Barker Turner","version":20,"id":"69750","lastModified":"1301901873000","name":"Stephen Barker Turner","type":"Person","_key":"42896"} +{"label":"The Emerald Forest","description":"After the son of engineer Bill Markham is abducted by an aboriginal tribe on the edge of the rain forest, the engineer spends the next 10 years searching for him.","id":"11532","runtime":110,"imdbId":"tt0089087","trailer":"http:\/\/www.youtube.com\/watch?v=XPARBhwKNrs","version":115,"lastModified":"1301904207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c70\/4bc934d0017a3c57fe015c70\/the-emerald-forest-mid.jpg","genre":"Action","title":"The Emerald Forest","releaseDate":488592000000,"language":"en","type":"Movie","_key":"42897"} +{"label":"Yara Vaneau","version":21,"id":"69747","lastModified":"1301902331000","name":"Yara Vaneau","type":"Person","_key":"42898"} +{"label":"William Rodriguez","version":21,"id":"69749","lastModified":"1301902331000","name":"William Rodriguez","type":"Person","_key":"42899"} +{"label":"Charley Boorman","version":22,"id":"69751","lastModified":"1301902147000","name":"Charley Boorman","type":"Person","_key":"42900"} +{"label":"Jason and the Argonauts","description":"Jason, a fearless sailor and explorer, returns to his home land of Thessaly after a long voyage to claim his rightful throne. He learns, however, that he must first find the magical Golden Fleece. To do so, he must embark on an epic quest fraught with fantastic monsters and terrible perils.","id":"11533","runtime":104,"imdbId":"tt0057197","trailer":"http:\/\/www.youtube.com\/watch?v=Sg1v5HkpdEA","version":215,"lastModified":"1301903684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7d\/4bc934d1017a3c57fe015c7d\/jason-and-the-argonauts-mid.jpg","genre":"Action","title":"Jason and the Argonauts","releaseDate":-206323200000,"language":"en","type":"Movie","_key":"42901"} +{"label":"Nancy Kovack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/187\/4c24f6d77b9aa14470000187\/nancy-kovack-profile.jpg","version":31,"id":"69763","lastModified":"1301901985000","name":"Nancy Kovack","type":"Person","_key":"42902"} +{"label":"Laurence Naismith","version":36,"id":"69764","lastModified":"1301901956000","name":"Laurence Naismith","type":"Person","_key":"42903"} +{"label":"Sud pralad","description":"No overview found.","id":"11534","runtime":118,"imdbId":"tt0381668","homepage":"http:\/\/www.kickthemachine.com\/works\/tropical_malady.html","version":54,"lastModified":"1301904378000","genre":"Drama","title":"Sud pralad","releaseDate":1084838400000,"language":"en","type":"Movie","_key":"42904"} +{"label":"Banlop Lomnoi","version":20,"id":"69757","lastModified":"1301902147000","name":"Banlop Lomnoi","type":"Person","_key":"42905"} +{"label":"Sakda Kaewbuadee","version":23,"id":"69758","lastModified":"1301902147000","name":"Sakda Kaewbuadee","type":"Person","_key":"42906"} +{"label":"Huai Dessom","version":20,"id":"71976","lastModified":"1301902147000","name":"Huai Dessom","type":"Person","_key":"42907"} +{"label":"Sirivech Jareonchon","version":20,"id":"71977","lastModified":"1301902147000","name":"Sirivech Jareonchon","type":"Person","_key":"42908"} +{"label":"Udom Promma","version":20,"id":"71978","lastModified":"1301902147000","name":"Udom Promma","type":"Person","_key":"42909"} +{"label":"Apichatpong Weerasethakul","version":27,"id":"69759","lastModified":"1301901951000","name":"Apichatpong Weerasethakul","type":"Person","_key":"42910"} +{"label":"Rollerball","description":"From the director of Die Hard comes this high-octane thriller that roars along at a breakneck pace (Los Angeles Times)! Starring Chris Klein (American Pie), Jean Reno (Ronin), LL Cool J (Charlie's Angels) and Rebecca Romijn-Stamos (X-Men), Rollerball goes full-throttle with excitement from its death-defying opening until its explosive end! Jonathan Cross (Klein) is the newest recruit in the most extreme sport of all time where his fast moves and killer looks make him an instant superstar. But Cr","id":"11535","runtime":98,"imdbId":"tt0246894","version":196,"lastModified":"1301906782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8f\/4bc934d2017a3c57fe015c8f\/rollerball-mid.jpg","genre":"Action","title":"Rollerball","releaseDate":1013126400000,"language":"en","type":"Movie","_key":"42911"} +{"label":"Frank Ferrara","version":19,"id":"142159","lastModified":"1301902582000","name":"Frank Ferrara","type":"Person","_key":"42912"} +{"label":"Janet Wright","version":20,"id":"106460","lastModified":"1301902731000","name":"Janet Wright","type":"Person","_key":"42913"} +{"label":"The Misfits","description":"A sensitive divorcee gets mixed up with modern cowboys roping mustangs in the desert.","id":"11536","runtime":124,"imdbId":"tt0055184","version":115,"lastModified":"1302039149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca8\/4bc934d6017a3c57fe015ca8\/the-misfits-mid.jpg","genre":"Drama","title":"The Misfits","releaseDate":-281318400000,"language":"en","type":"Movie","_key":"42914"} +{"label":"James Barton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c3\/4c52db9b7b9aa13d4d0003c3\/james-barton-profile.jpg","version":26,"id":"98465","lastModified":"1301902590000","name":"James Barton","type":"Person","_key":"42915"} +{"label":"Snake in the Eagles Shadow","description":"Everyone abuses and humiliates a downtrodden orphan (Chan) until he befriends an old man, who turns out to be the last master of the \"snake fist\" fighting style. Jackie becomes the old man's student and finds himself in battle with the master of the \"eagle's claw\" style, who has vowed to destroy the snake fist clan. ","id":"11537","runtime":98,"imdbId":"tt0078252","version":89,"lastModified":"1301903256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb9\/4bc934d8017a3c57fe015cb9\/se-ying-diu-sau-mid.jpg","genre":"Action","title":"Snake in the Eagles Shadow","releaseDate":273801600000,"language":"en","type":"Movie","_key":"42916"} +{"label":"The Lion, the Witch and the Wardrobe","description":"4 kids travel to the magical land of Narnia where they must battle an evil queen with the direction of the Lion, Aslan","id":"11538","runtime":171,"imdbId":"tt0094500","version":177,"lastModified":"1301902976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/472\/4ce209a15e73d60f71000472\/the-lion-the-witch-and-the-wardrobe-mid.jpg","genre":"Adventure","title":"The Lion, the Witch and the Wardrobe","releaseDate":595382400000,"language":"en","type":"Movie","_key":"42917"} +{"label":"Richard Dempsey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/479\/4ce20af15e73d60f71000479\/richard-dempsey-profile.jpg","version":25,"id":"69773","lastModified":"1301901982000","name":"Richard Dempsey","type":"Person","_key":"42918"} +{"label":"Sophie Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47d\/4ce20b5b5e73d60f7100047d\/sophie-cook-profile.jpg","version":24,"id":"69774","lastModified":"1301901982000","name":"Sophie Cook","type":"Person","_key":"42919"} +{"label":"Jonathan R. Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47c\/4ce20bb55e73d60f6d00047c\/jonathan-r-scott-profile.jpg","version":24,"id":"69775","lastModified":"1301902170000","name":"Jonathan R. Scott","type":"Person","_key":"42920"} +{"label":"Sophie Wilcox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/481\/4ce20d3d5e73d60f6d000481\/sophie-wilcox-profile.jpg","version":24,"id":"69776","lastModified":"1301901508000","name":"Sophie Wilcox","type":"Person","_key":"42921"} +{"label":"Barbara Kellerman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c7\/4ce20e765e73d60f700004c7\/barbara-kellerman-profile.jpg","version":25,"birthday":"-662691600000","id":"69777","lastModified":"1301902053000","name":"Barbara Kellerman","type":"Person","_key":"42922"} +{"label":"Marilyn Fox","version":19,"id":"69778","lastModified":"1301902081000","name":"Marilyn Fox","type":"Person","_key":"42923"} +{"label":"Don Camillo","description":"No overview found.","id":"11539","runtime":126,"imdbId":"tt0085454","version":88,"lastModified":"1301903316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ab\/4c5dca397b9aa151f30009ab\/don-camillo-mid.jpg","genre":"Action","title":"Don Camillo","releaseDate":452476800000,"language":"en","type":"Movie","_key":"42924"} +{"label":"Andy Luotto","version":36,"id":"69785","lastModified":"1301902146000","name":"Andy Luotto","type":"Person","_key":"42925"} +{"label":"Ars\u00e8ne Lupin","description":"''D\u00e9tourner l'attention, voil\u00e0 la cl\u00e9. Si tu t'en rappelles, personne ne t'arr\u00eatera jamais''. Tels sont les derniers mots prononc\u00e9s par le p\u00e8re d'Ars\u00e8ne Lupin avant d'\u00eatre assassin\u00e9. En grandissant, le jeune orphelin devient un voleur insouciant, d\u00e9troussant l'aristocratie parisienne gr\u00e2ce \u00e0 son charme redoutable. Sa rencontre avec une ensorcelante aventuri\u00e8re, la Comtesse de Cagliostro, va transf","id":"11540","runtime":131,"imdbId":"tt0373690","trailer":"http:\/\/www.youtube.com\/watch?v=2959","version":60,"lastModified":"1301903864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc6\/4bc934d9017a3c57fe015cc6\/arsene-lupin-mid.jpg","genre":"Action","title":"Ars\u00e8ne Lupin","releaseDate":1097625600000,"language":"en","type":"Movie","_key":"42926"} +{"label":"The Year of Living Dangerously","description":"The Year of Living Dangerously, a 1982 Peter Weir film adapted from the novel of the same name. The story is about a love affair set in Indonesia during the overthrow of President Sukarno. It follows a group of foreign correspondents in Jakarta on the eve of an attempted coup by the so-called 30 September Movement during the beginning of the violent reprisals by military-led vigilante groups.","id":"11541","runtime":117,"imdbId":"tt0086617","version":146,"lastModified":"1302039522000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd3\/4bc934db017a3c57fe015cd3\/the-year-of-living-dangerously-mid.jpg","genre":"Drama","title":"The Year of Living Dangerously","releaseDate":411955200000,"language":"en","type":"Movie","_key":"42927"} +{"label":"Altered States","description":"Research scientist Eddie Jessup (William Hurt) believes other states of consciousness are as real as everyday reality. Using sensory deprivation, then adding powerful, hallucinogenic drugs, he explores these altered states...and endures experiences that make madness seem a blessing.","id":"11542","runtime":102,"imdbId":"tt0080360","version":186,"lastModified":"1301902577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce0\/4bc934df017a3c57fe015ce0\/altered-states-mid.jpg","genre":"Drama","title":"Altered States","releaseDate":346550400000,"language":"en","type":"Movie","_key":"42928"} +{"label":"Charles Haid","version":33,"id":"69791","lastModified":"1301901447000","name":"Charles Haid","type":"Person","_key":"42929"} +{"label":"Kingpin","description":"After bowler Roy Munsen swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly na\u00efve hit the circuit intent on settling an old score with Big Ern.","id":"11543","runtime":113,"imdbId":"tt0116778","version":124,"lastModified":"1301902553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee1\/4d40ef337b9aa15bbb002ee1\/kingpin-mid.jpg","studio":"Rysher Entertainment","genre":"Comedy","title":"Kingpin","releaseDate":836438400000,"language":"en","tagline":"You wouldn't want to meet these pinheads in an alley.","type":"Movie","_key":"42930"} +{"label":"Lilo & Stitch","description":"A lonely Hawaiian girl named Lilo is being raised by her older sister, Nani, after their parents die -- under the watch of social worker Cobra Bubbles. When Lilo adopts a funny-looking dog and names him \"Stitch,\" she doesn't realize her new best friend is a wacky alien created by mad scientist Dr. Jumba.","id":"11544","runtime":85,"imdbId":"tt0275847","version":144,"lastModified":"1301901863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/558\/4cb8dbb45e73d67785000558\/lilo-stitch-mid.jpg","genre":"Animation","title":"Lilo & Stitch","releaseDate":1024185600000,"language":"en","tagline":"He's coming to our galaxy.","type":"Movie","_key":"42931"} +{"label":"Rushmore","description":"Max Fischer, a precocious and eccentric 15 year-old, who is both Rushmore's most extracurricular and least scholarly student; Herman Blume, a disillusioned industrialist who comes to admire Max; and Rosemary Cross, a widowed first grade teacher who becomes the object of both Max's and Herman's affection.","id":"11545","runtime":93,"imdbId":"tt0128445","trailer":"http:\/\/www.youtube.com\/watch?v=-hQel3noQeI","version":93,"lastModified":"1301902554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2f\/4bc934eb017a3c57fe015d2f\/rushmore-mid.jpg","genre":"Comedy","title":"Rushmore","releaseDate":905990400000,"language":"en","tagline":"Love. Expulsion. Revolution.","type":"Movie","_key":"42932"} +{"label":"Police Academy 7: Mission to Moscow","description":"The Russians need help in dealing with the Mafia and so they seek help with the veterans of the Police Academy. They head off to Moscow, in order to find evidence against Konstantin Konali, who marketed a computer game that everyone in the world is playing.","id":"11546","runtime":83,"imdbId":"tt0110857","version":131,"lastModified":"1301902132000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/079\/4bcc26e9017a3c0f32000079\/police-academy-7-mission-to-moscow-mid.jpg","genre":"Action","title":"Police Academy 7: Mission to Moscow","releaseDate":771206400000,"language":"en","type":"Movie","_key":"42933"} +{"label":"Alan Metter","version":34,"id":"69801","lastModified":"1301901684000","name":"Alan Metter","type":"Person","_key":"42934"} +{"label":"Cabin Fever","description":"A group of five college graduates rent a cabin in the woods and begin to fall victim to a horrifying flesh-eating virus, which attracts the unwanted attention of the homicidal locals.","id":"11547","runtime":93,"imdbId":"tt0303816","version":167,"lastModified":"1301903083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4b\/4bc934ee017a3c57fe015d4b\/cabin-fever-mid.jpg","genre":"Horror","title":"Cabin Fever","releaseDate":1031961600000,"language":"en","type":"Movie","_key":"42935"} +{"label":"Rider Strong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/98b\/4d7f4e2a5e73d644d300098b\/rider-strong-profile.jpg","version":35,"id":"69807","lastModified":"1301901602000","name":"Rider Strong","type":"Person","_key":"42936"} +{"label":"*batteries not included","description":"In a soon to be demolished block of apartments, the residents resist the criminal methods used to force them to leave so a greedy tycoon can build his new skyscraper. When tiny mechanical aliens land for a recharge, they decide to stay and help out.","id":"11548","runtime":106,"imdbId":"tt0092494","version":104,"lastModified":"1301902409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d54\/4bc934ef017a3c57fe015d54\/batteries-not-included-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"*batteries not included","releaseDate":566784000000,"language":"en","tagline":"Five ordinary people needed a miracle. Then one night, Faye Riley left the window open.","type":"Movie","_key":"42937"} +{"label":"Dennis Boutsikaris","version":23,"id":"118937","lastModified":"1301902217000","name":"Dennis Boutsikaris","type":"Person","_key":"42938"} +{"label":"Jane Hoffman","version":20,"id":"118940","lastModified":"1301902255000","name":"Jane Hoffman","type":"Person","_key":"42939"} +{"label":"John DiSanti","version":21,"id":"113922","lastModified":"1301902635000","name":"John DiSanti","type":"Person","_key":"42940"} +{"label":"Invasion of the Body Snatchers","description":"A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.","id":"11549","runtime":80,"imdbId":"tt0049366","trailer":"http:\/\/www.youtube.com\/watch?v=a1wep6csJys","version":184,"lastModified":"1301903223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d70\/4bc934f4017a3c57fe015d70\/invasion-of-the-body-snatchers-mid.jpg","genre":"Horror","title":"Invasion of the Body Snatchers","releaseDate":-438825600000,"language":"en","type":"Movie","_key":"42941"} +{"label":"Dana Wynter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/746\/4caa17b37b9aa17acd000746\/dana-wynter-profile.jpg","version":26,"id":"69810","lastModified":"1301901521000","name":"Dana Wynter","type":"Person","_key":"42942"} +{"label":"Jean Willes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/727\/4c07f894017a3c7e86000727\/jean-willes-profile.jpg","version":23,"id":"101479","lastModified":"1301902656000","name":"Jean Willes","type":"Person","_key":"42943"} +{"label":"Ralph Dumke","version":27,"id":"83801","lastModified":"1301902313000","name":"Ralph Dumke","type":"Person","_key":"42944"} +{"label":"Tom Fadden","version":25,"id":"83623","lastModified":"1301902216000","name":"Tom Fadden","type":"Person","_key":"42945"} +{"label":"Guy Way","version":18,"id":"101484","lastModified":"1301902893000","name":"Guy Way","type":"Person","_key":"42946"} +{"label":"Kenneth Patterson","version":20,"id":"101483","lastModified":"1301903072000","name":"Kenneth Patterson","type":"Person","_key":"42947"} +{"label":"Helden wie wir","description":"No overview found.","id":"11550","runtime":93,"imdbId":"tt0219761","version":51,"lastModified":"1301908555000","genre":"Comedy","title":"Helden wie wir","releaseDate":942192000000,"language":"en","type":"Movie","_key":"42948"} +{"label":"Daniel Borgwardt","version":20,"id":"69816","lastModified":"1301902331000","name":"Daniel Borgwardt","type":"Person","_key":"42949"} +{"label":"Xenia Snagowski","version":20,"id":"69817","lastModified":"1301902331000","name":"Xenia Snagowski","type":"Person","_key":"42950"} +{"label":"Adrian Heidenreich","version":20,"id":"69818","lastModified":"1301902331000","name":"Adrian Heidenreich","type":"Person","_key":"42951"} +{"label":"Luca Lenz","version":20,"id":"69819","lastModified":"1301902331000","name":"Luca Lenz","type":"Person","_key":"42952"} +{"label":"Sebastian Peterson","version":21,"id":"69820","lastModified":"1301902331000","name":"Sebastian Peterson","type":"Person","_key":"42953"} +{"label":"Small Soldiers","description":"When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.","id":"11551","runtime":110,"imdbId":"tt0122718","version":104,"lastModified":"1301903632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4d902a837b9aa16755002f57\/small-soldiers-mid.jpg","genre":"Action","title":"Small Soldiers","releaseDate":900028800000,"language":"en","type":"Movie","_key":"42954"} +{"label":"Journey to the Center of the Earth","description":"A hunch and the defunding of his lab prompt geology professor Trevor Anderson -- whose outrageous theories have made him a laughingstock in academia -- to set off for Iceland in search of a portal to Earth's core. With his sullen teenage nephew in tow and a fetching mountaineer as a guide, Anderson finds a passageway leading to a vast primordial world at the center of the planet.","id":"11552","runtime":92,"imdbId":"tt0373051","trailer":"http:\/\/www.youtube.com\/watch?v=767","homepage":"http:\/\/www.journeymovie.com","version":346,"lastModified":"1301901558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6b\/4d4f11e07b9aa13aaf00aa6b\/journey-to-the-center-of-the-earth-mid.jpg","genre":"Action","title":"Journey to the Center of the Earth","releaseDate":1215734400000,"language":"en","tagline":"Same Planet. Different World.","type":"Movie","_key":"42955"} +{"label":"Eric Brevig","version":56,"id":"9622","lastModified":"1302075307000","name":"Eric Brevig","type":"Person","_key":"42956"} +{"label":"Anita Briem","version":30,"id":"70785","lastModified":"1301901406000","name":"Anita Briem","type":"Person","_key":"42957"} +{"label":"Seth Meyers","version":29,"id":"62856","lastModified":"1301901312000","name":"Seth Meyers","type":"Person","_key":"42958"} +{"label":"Jean Michel Par\u00e9","version":28,"id":"70786","lastModified":"1301901456000","name":"Jean Michel Par\u00e9","type":"Person","_key":"42959"} +{"label":"Kaniehtiio Horn","version":32,"id":"70787","lastModified":"1301901380000","name":"Kaniehtiio Horn","type":"Person","_key":"42960"} +{"label":"Jane Wheeler","version":24,"id":"110887","lastModified":"1301902307000","name":"Jane Wheeler","type":"Person","_key":"42961"} +{"label":"Giancarlo Caltabiano","version":24,"id":"110888","lastModified":"1301902307000","name":"Giancarlo Caltabiano","type":"Person","_key":"42962"} +{"label":"Garth Gilker","version":24,"id":"110889","lastModified":"1301901936000","name":"Garth Gilker","type":"Person","_key":"42963"} +{"label":"Millenium Mambo","description":"No overview found.","id":"11553","runtime":119,"imdbId":"tt0283283","homepage":"http:\/\/www.ocean-films.com\/millenniummambo\/","version":96,"lastModified":"1301903814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d3\/4c8fb7835e73d614930001d3\/qian-xi-man-po-mid.jpg","genre":"Drama","title":"Millenium Mambo","releaseDate":990230400000,"language":"en","type":"Movie","_key":"42964"} +{"label":"Jack Kao","version":23,"id":"69826","lastModified":"1301901362000","name":"Jack Kao","type":"Person","_key":"42965"} +{"label":"Chun-hao Tuan","version":18,"id":"69827","lastModified":"1301901457000","name":"Chun-hao Tuan","type":"Person","_key":"42966"} +{"label":"Yi-Hsuan Chen","version":18,"id":"69828","lastModified":"1301901674000","name":"Yi-Hsuan Chen","type":"Person","_key":"42967"} +{"label":"Jun Takeuchi","version":20,"id":"69829","lastModified":"1301901819000","name":"Jun Takeuchi","type":"Person","_key":"42968"} +{"label":"Doze Niu","version":23,"id":"69830","lastModified":"1301901785000","name":"Doze Niu","type":"Person","_key":"42969"} +{"label":"Hsiao-hsien Hou","version":40,"id":"64992","lastModified":"1301901318000","name":"Hsiao-hsien Hou","type":"Person","_key":"42970"} +{"label":"Three Times","description":"There are three stories of women and men: in \"A Time for Love\" set in 1966, a soldier searches for a young woman he met one afternoon playing pool; \"A Time for Freedom,\" set in a bordello in 1911, revolves around a singer's longing to escape her surroundings; in \"A Time for Youth\" set in 2005 Taipei, a triangle in which a singer has an affair with a photographer while her partner suffers is dramatized. In the first two stories, letters are crucial to the outcome; in the third, it's cell-phone ca","id":"11554","runtime":136,"imdbId":"tt0459666","homepage":"http:\/\/www.ocean-films.com\/threetimes\/","version":286,"lastModified":"1301904232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dac\/4bc934fc017a3c57fe015dac\/zui-hao-de-shi-guang-mid.jpg","genre":"Crime","title":"Three Times","releaseDate":1116547200000,"language":"en","type":"Movie","_key":"42971"} +{"label":"Fang Mei","version":21,"id":"69835","lastModified":"1301901585000","name":"Fang Mei","type":"Person","_key":"42972"} +{"label":"Su-jen Liao","version":18,"id":"69836","lastModified":"1301902013000","name":"Su-jen Liao","type":"Person","_key":"42973"} +{"label":"Mei Di","version":20,"id":"69837","lastModified":"1301902380000","name":"Mei Di","type":"Person","_key":"42974"} +{"label":"Shi-Zheng Chen","version":21,"id":"69838","lastModified":"1301902207000","name":"Shi-Zheng Chen","type":"Person","_key":"42975"} +{"label":"Lee Pei-Hsuan","version":20,"id":"69839","lastModified":"1301902381000","name":"Lee Pei-Hsuan","type":"Person","_key":"42976"} +{"label":"That Beautiful Somewhere","description":"A detective teams up with a young female archaeologist to unravel the mysterious death of a 'bog body' found in a native swamp rumoured to have curative powers. It is the story of two wounded souls searching for healing and redemption","id":"11555","runtime":93,"imdbId":"tt0496408","homepage":"http:\/\/www.thatbeautifulsomewhere.com\/","version":303,"lastModified":"1301903220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06c\/4c3c38ab7b9aa1225100006c\/that-beautiful-somewhere-mid.jpg","genre":"Thriller","title":"That Beautiful Somewhere","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"42977"} +{"label":"Robert Budreau","version":19,"id":"69845","lastModified":"1301901772000","name":"Robert Budreau","type":"Person","_key":"42978"} +{"label":"Lindsey Cote","version":20,"id":"69856","lastModified":"1301901995000","name":"Lindsey Cote","type":"Person","_key":"42979"} +{"label":"Jane McGregor","version":20,"id":"69855","lastModified":"1301902321000","name":"Jane McGregor","type":"Person","_key":"42980"} +{"label":"Jim Calarco","version":19,"id":"69857","lastModified":"1301901938000","name":"Jim Calarco","type":"Person","_key":"42981"} +{"label":"Gabe Giroux","version":19,"id":"69860","lastModified":"1301902310000","name":"Gabe Giroux","type":"Person","_key":"42982"} +{"label":"Sally Macdonald","version":19,"id":"69861","lastModified":"1301901938000","name":"Sally Macdonald","type":"Person","_key":"42983"} +{"label":"Angeline Pitawanakwat","version":19,"id":"69862","lastModified":"1301901938000","name":"Angeline Pitawanakwat","type":"Person","_key":"42984"} +{"label":"Christina Cote","version":19,"id":"69859","lastModified":"1301901938000","name":"Christina Cote","type":"Person","_key":"42985"} +{"label":"Bob Clout","version":19,"id":"69858","lastModified":"1301901938000","name":"Bob Clout","type":"Person","_key":"42986"} +{"label":"nicotina","description":"No overview found.","id":"11556","runtime":93,"imdbId":"tt0337930","version":184,"lastModified":"1301904076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c2\/4bf68b1a017a3c77330001c2\/nicotina-mid.jpg","genre":"Action","title":"nicotina","releaseDate":1062979200000,"language":"en","type":"Movie","_key":"42987"} +{"label":"Lucas Crespi","version":19,"id":"69863","lastModified":"1301902081000","name":"Lucas Crespi","type":"Person","_key":"42988"} +{"label":"Norman Sotolongo","version":19,"id":"69864","lastModified":"1301901723000","name":"Norman Sotolongo","type":"Person","_key":"42989"} +{"label":"Jes\u00fas Ochoa","version":20,"id":"69865","lastModified":"1301901554000","name":"Jes\u00fas Ochoa","type":"Person","_key":"42990"} +{"label":"Martha Tenorio","version":19,"id":"69866","lastModified":"1301902081000","name":"Martha Tenorio","type":"Person","_key":"42991"} +{"label":"Hugo Rodr\u00edguez","version":19,"id":"69867","lastModified":"1301901723000","name":"Hugo Rodr\u00edguez","type":"Person","_key":"42992"} +{"label":"St. Elmo's Fire","description":"A Group of friends, just out of college, struggle with adulthood. Their main problem is that they're all self-centered and obnoxious.","id":"11557","runtime":110,"imdbId":"tt0090060","trailer":"http:\/\/www.youtube.com\/watch?v=Y46Sw1BUHPs","version":185,"lastModified":"1301903684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc3\/4bc934fe017a3c57fe015dc3\/st-elmo-s-fire-mid.jpg","genre":"Comedy","title":"St. Elmo's Fire","releaseDate":488764800000,"language":"en","tagline":"The passion burns deep.","type":"Movie","_key":"42993"} +{"label":"Silver Streak","description":"George Caldwell is taking a slow restful trip to Chicago on the Silver Streak. Or so he thinks. He's involved in a love affair, a murder, is thrown from the train, wanted by the police, and joins forces with a car thief to re-board the train to save his love.","id":"11558","runtime":114,"imdbId":"tt0075223","trailer":"http:\/\/www.youtube.com\/watch?v=4cyhBroQsNA","version":141,"lastModified":"1301903393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd1\/4bc93504017a3c57fe015dd1\/silver-streak-mid.jpg","genre":"Action","title":"Silver Streak","releaseDate":218851200000,"language":"en","tagline":"It's the most hilarious suspense ride of your life!","type":"Movie","_key":"42994"} +{"label":"Tideland","description":"Enter the magical world of Jeliza-Rose (Jodelle Ferland), an unusual child with an even more unusual story. Hers is a world where squirrels talk, where fireflies have names, and where the heads of dolls, long since separated from their bodies, are her closest friends.","id":"11559","runtime":122,"imdbId":"tt0410764","trailer":"http:\/\/www.youtube.com\/watch?v=1050","homepage":"http:\/\/www.tidelandthemovie.com\/","version":193,"lastModified":"1301902697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/deb\/4bc93507017a3c57fe015deb\/tideland-mid.jpg","studio":"Recorded Picture Company","genre":"Drama","title":"Tideland","releaseDate":1126224000000,"language":"en","type":"Movie","_key":"42995"} +{"label":"Sally Crooks","version":22,"id":"69879","lastModified":"1301902081000","name":"Sally Crooks","type":"Person","_key":"42996"} +{"label":"High Crimes","description":"High powered lawyer Claire Kubik finds her world turned upside down when her husband, who she thought was Tom Kubik, is arrested and is revealed to be Ron Chapman. Chapman is on trial for a murder of Latin American villagers while he was in the Marines. Claire soon learns that to navigate the military justice system, she'll need help from the somewhat unconventional Charlie Grimes.","id":"11560","runtime":115,"imdbId":"tt0257756","version":236,"lastModified":"1301902031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df4\/4bc93507017a3c57fe015df4\/high-crimes-mid.jpg","genre":"Drama","title":"High Crimes","releaseDate":1017792000000,"language":"en","tagline":"Everything you trust. Everything you know. May be a lie...","type":"Movie","_key":"42997"} +{"label":"Sleeper","description":"Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime. ","id":"11561","runtime":89,"imdbId":"tt0070707","trailer":"http:\/\/www.youtube.com\/watch?v=Qo2Lo28FNpg","version":152,"lastModified":"1301903423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0e\/4bc9350c017a3c57fe015e0e\/sleeper-mid.jpg","genre":"Comedy","title":"Sleeper","releaseDate":124934400000,"language":"en","type":"Movie","_key":"42998"} +{"label":"Mary Gregory","version":21,"id":"69884","lastModified":"1301902080000","name":"Mary Gregory","type":"Person","_key":"42999"} +{"label":"Crimes and Misdemeanors","description":"A New York doctor resorts to desperate measures when his long-term mistress threatens to reveal their affair if he doesn't marry her. When his brother offers to eliminate the situation, he is faced with a moral dilemma. Meanwhile, Clifford Stern is commissioned to make a portrait of successful TV producer and brother-in-law Lester, who represents everything that Clifford despises.","id":"11562","runtime":107,"imdbId":"tt0097123","version":339,"lastModified":"1301903198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00c\/4c34b8ad7b9aa17d3b00000c\/crimes-and-misdemeanors-mid.jpg","genre":"Comedy","title":"Crimes and Misdemeanors","releaseDate":624240000000,"language":"en","type":"Movie","_key":"43000"} +{"label":"The Young Master","description":"Youthful master Jackie Chan is searching for his missing brother, when he is mistaken for a criminal on the lam. He must prove his innocence by solving the case himself, while local lawmen and merciless mercenaries are hot on his trail.","id":"11563","runtime":101,"imdbId":"tt0081499","trailer":"http:\/\/www.youtube.com\/watch?v=MiYkE_7HV2w","version":97,"lastModified":"1301902767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e24\/4bc9350f017a3c57fe015e24\/shi-di-chu-ma-mid.jpg","genre":"Action","title":"The Young Master","releaseDate":318902400000,"language":"en","type":"Movie","_key":"43001"} +{"label":"Pai Wei","version":23,"id":"69885","lastModified":"1301902296000","name":"Pai Wei","type":"Person","_key":"43002"} +{"label":"Class of 1984","description":"Andy is a new teacher and an inner city high school that is like nothing he has ever seen before. The students have to go through a metal detector when they go through the front door and everything is basically run by a tough kid named Peter Stegman. Soon, Andy and Stegman become enemies and Stegman will stop at nothing to protect his turf and drug dealing business.","id":"11564","runtime":98,"imdbId":"tt0083739","version":141,"lastModified":"1301903775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e36\/4bc93510017a3c57fe015e36\/class-of-1984-mid.jpg","genre":"Action","title":"Class of 1984","releaseDate":398649600000,"language":"en","type":"Movie","_key":"43003"} +{"label":"Merrie Lynn Ross","version":23,"id":"69889","lastModified":"1301901801000","name":"Merrie Lynn Ross","type":"Person","_key":"43004"} +{"label":"Big Momma's House 2","description":"FBI agent Malcolm Turner goes back undercover as Big Momma, a slick-talking, slam-dunking Southern granny with attitude to spare! Now this granny must play nanny to three dysfunctional upper class kids in order to spy on their computer hacked dad.","id":"11565","runtime":99,"imdbId":"tt0421729","trailer":"http:\/\/www.youtube.com\/watch?v=8RkSH3iCZDs","version":215,"lastModified":"1301901755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e4\/4d8fa7767b9aa16a240023e4\/big-momma-s-house-2-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Big Momma's House 2","releaseDate":1138233600000,"language":"en","tagline":"The momma of all comedies is back!!!","type":"Movie","_key":"43005"} +{"label":"Zachary Levi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/201\/4cf673265e73d6299b001201\/zachary-levi-profile.jpg","version":66,"id":"69899","lastModified":"1301904052000","name":"Zachary Levi","type":"Person","_key":"43006"} +{"label":"Dave","description":"To avoid a potentially explosive scandal when the U.S. President goes into a coma, an affable temp agency owner with an uncanny resemblance, is put in his place.","id":"11566","runtime":110,"imdbId":"tt0106673","trailer":"http:\/\/www.youtube.com\/watch?v=1125","version":166,"lastModified":"1301903393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0de\/4cdc62915e73d606e70000de\/dave-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Dave","releaseDate":736732800000,"language":"en","type":"Movie","_key":"43007"} +{"label":"Parley Baer","version":36,"id":"86369","lastModified":"1301902695000","name":"Parley Baer","type":"Person","_key":"43008"} +{"label":"Die Bluthochzeit","description":"No overview found.","id":"11567","runtime":92,"imdbId":"tt0382572","version":121,"lastModified":"1301905029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40c\/4d0b5a1c5e73d646b400040c\/die-bluthochzeit-mid.jpg","genre":"Comedy","title":"Die Bluthochzeit","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"43009"} +{"label":"Arne Lenk","version":20,"id":"69911","lastModified":"1301901873000","name":"Arne Lenk","type":"Person","_key":"43010"} +{"label":"Julia Schmidt","version":20,"id":"44495","lastModified":"1301902255000","name":"Julia Schmidt","type":"Person","_key":"43011"} +{"label":"Dominique Deruddere","version":35,"id":"69912","lastModified":"1301901723000","name":"Dominique Deruddere","type":"Person","_key":"43012"} +{"label":"Blues Brothers 2000","description":"Elwood, the now lone \"Blues Brother\" finally released from prison, is once again enlisted by Sister Mary Stigmata in her latest crusade to raise funds for a children's hospital. Once again hitting the road to re-unite the band and win the big prize at the New Orleans Battle of the Bands, Elwood is pursued cross-country by the cops, led by Cabel the Curtis' son","id":"11568","runtime":123,"imdbId":"tt0118747","trailer":"http:\/\/www.youtube.com\/watch?v=_ESdH-CRUAE","version":296,"lastModified":"1301902855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4d4100c25e73d65721000415\/blues-brothers-2000-mid.jpg","studio":"United International Pictures GmbH","genre":"Action","title":"Blues Brothers 2000","releaseDate":886723200000,"language":"en","type":"Movie","_key":"43013"} +{"label":"J. Evan Bonifant","version":21,"id":"69924","lastModified":"1301901466000","name":"J. Evan Bonifant","type":"Person","_key":"43014"} +{"label":"Hellraiser III: Hell on Earth","description":"Pinhead is stuck in a block. The block containing Pinhead and the puzzle cube is bought by a young playboy as a sculpture. Pinhead busies himself trying to escape and seeking to destroy the puzzle cube so he need never return to Hell, but someone is standind in his way.","id":"11569","runtime":93,"imdbId":"tt0104409","version":94,"lastModified":"1301903220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc9351e017a3c57fe015e82\/hellraiser-iii-mid.jpg","genre":"Horror","title":"Hellraiser III: Hell on Earth","releaseDate":716169600000,"language":"en","tagline":"What started in hell, will end on Earth","type":"Movie","_key":"43015"} +{"label":"Kevin Bernhardt","version":31,"id":"68758","lastModified":"1301902349000","name":"Kevin Bernhardt","type":"Person","_key":"43016"} +{"label":"Lawrence Mortorff","version":35,"id":"63065","lastModified":"1301902349000","name":"Lawrence Mortorff","type":"Person","_key":"43017"} +{"label":"Terry Farrell","version":28,"id":"68759","lastModified":"1301902363000","name":"Terry Farrell","type":"Person","_key":"43018"} +{"label":"Ken Carpenter","version":24,"id":"70783","lastModified":"1301902365000","name":"Ken Carpenter","type":"Person","_key":"43019"} +{"label":"The Crimson Pirate","description":"Burt Lancaster plays a pirate with a taste for intrigue and acrobatics who involves himself in the goings on of a revolution in the Caribbean in the late 1700s. A light hearted adventure involving prison breaks, an oddball Scientist, sailing ships, naval fights, and tons of swordplay.","id":"11570","runtime":105,"imdbId":"tt0044517","version":187,"lastModified":"1301904650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8b\/4bc93521017a3c57fe015e8b\/the-crimson-pirate-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Crimson Pirate","releaseDate":-544752000000,"language":"en","type":"Movie","_key":"43020"} +{"label":"Nick Cravat","version":27,"id":"69934","lastModified":"1301902046000","name":"Nick Cravat","type":"Person","_key":"43021"} +{"label":"Eva Bartok","version":24,"id":"69935","lastModified":"1301901951000","name":"Eva Bartok","type":"Person","_key":"43022"} +{"label":"Leslie Bradley","version":25,"id":"102746","lastModified":"1301902736000","name":"Leslie Bradley","type":"Person","_key":"43023"} +{"label":"Margot Grahame","version":17,"id":"136151","lastModified":"1301902737000","name":"Margot Grahame","type":"Person","_key":"43024"} +{"label":"Frederick Leister","version":22,"id":"127024","lastModified":"1301902763000","name":"Frederick Leister","type":"Person","_key":"43025"} +{"label":"Eliot Makeham","version":25,"id":"127020","lastModified":"1301903009000","name":"Eliot Makeham","type":"Person","_key":"43026"} +{"label":"Frank Pettingell","version":22,"id":"106626","lastModified":"1301902740000","name":"Frank Pettingell","type":"Person","_key":"43027"} +{"label":"Ewan Roberts","version":18,"id":"93165","lastModified":"1301902613000","name":"Ewan Roberts","type":"Person","_key":"43028"} +{"label":"John Chandos","version":25,"birthday":"-1654653600000","id":"119359","birthplace":"Glasgow, Scotland","lastModified":"1301902943000","name":"John Chandos","type":"Person","_key":"43029"} +{"label":"Journey to the Center of the Earth","description":"An Edinburgh professor and assorted colleagues follow an explorer's trail down an extinct Icelandic volcano to the earth's center.","id":"11571","runtime":132,"imdbId":"tt0052948","trailer":"http:\/\/www.youtube.com\/watch?v=ld5RyBXiROY","version":252,"lastModified":"1301902420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e94\/4bc93522017a3c57fe015e94\/journey-to-the-center-of-the-earth-mid.png","genre":"Action","title":"Journey to the Center of the Earth","releaseDate":-317001600000,"language":"en","type":"Movie","_key":"43030"} +{"label":"Kaena: The Prophecy","description":"Compelled by a mysterious force, Kaena, a rebellious, high-spirited teenage girl will defy the High Priest and her people's ancestral beliefs to take the perilous journey through the Axis and discover what dark secrets lie beyond the clouds.","id":"11572","runtime":85,"imdbId":"tt0297753","version":158,"lastModified":"1301903036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea2\/4bc93525017a3c57fe015ea2\/kaena-the-prophecy-mid.jpg","genre":"Action","title":"Kaena: The Prophecy","releaseDate":1054684800000,"language":"en","type":"Movie","_key":"43031"} +{"label":"Chris Delaporte","version":19,"id":"69938","lastModified":"1301901873000","name":"Chris Delaporte","type":"Person","_key":"43032"} +{"label":"Pascal Pinon","version":19,"id":"69940","lastModified":"1301901873000","name":"Pascal Pinon","type":"Person","_key":"43033"} +{"label":"Inspector Clouseau","description":"No overview found.","id":"11573","runtime":96,"imdbId":"tt0063135","version":92,"lastModified":"1301904184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/058\/4bd3c631017a3c5342000058\/inspector-clouseau-mid.jpg","genre":"Comedy","title":"Inspector Clouseau","releaseDate":-45878400000,"language":"en","type":"Movie","_key":"43034"} +{"label":"Bud Yorkin","version":24,"id":"69946","lastModified":"1301902313000","name":"Bud Yorkin","type":"Person","_key":"43035"} +{"label":"Support Your Local Sheriff","description":"In the old west, a man becomes a sheriff just for the pay, figuring he can decamp if things get tough. In the end, he uses ingenuity instead.","id":"11574","runtime":92,"imdbId":"tt0065051","version":144,"lastModified":"1301904440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edc\/4bc9352c017a3c57fe015edc\/support-your-local-sheriff-mid.jpg","genre":"Comedy","title":"Support Your Local Sheriff","releaseDate":-24278400000,"language":"en","type":"Movie","_key":"43036"} +{"label":"Willis Bouchey","version":31,"id":"83149","lastModified":"1301902159000","name":"Willis Bouchey","type":"Person","_key":"43037"} +{"label":"Walter Burke","version":21,"id":"120447","lastModified":"1301903056000","name":"Walter Burke","type":"Person","_key":"43038"} +{"label":"Dick Peabody","version":13,"id":"178881","lastModified":"1301903311000","name":"Dick Peabody","type":"Person","_key":"43039"} +{"label":"The Great Race","description":"Professional daredevil and white-suited hero, The Great Leslie, convinces turn-of-the-century auto makers that a race from New York to Paris (westward across America, the Bering Straight and Russia) will help to promote automobile sales. Leslie's arch-rival, the mustached and black-attired Professor Fate vows to beat Leslie to the finish line in a car of Fate's own invention.","id":"11575","runtime":160,"imdbId":"tt0059243","trailer":"http:\/\/www.youtube.com\/watch?v=CsoZI6HIErI","version":201,"lastModified":"1301902647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee9\/4bc9352e017a3c57fe015ee9\/the-great-race-mid.jpg","genre":"Action","title":"The Great Race","releaseDate":-142128000000,"language":"en","type":"Movie","_key":"43040"} +{"label":"It's a Mad Mad Mad Mad World","description":"A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.","id":"11576","runtime":161,"imdbId":"tt0057193","trailer":"http:\/\/www.youtube.com\/watch?v=Sla845GW9YM","version":221,"lastModified":"1301901926000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef2\/4bc9352f017a3c57fe015ef2\/it-s-a-mad-mad-mad-mad-world-mid.jpg","genre":"Comedy","title":"It's a Mad Mad Mad Mad World","releaseDate":-194140800000,"language":"en","tagline":"The biggest entertainment ever to rock the screen with laughter!","type":"Movie","_key":"43041"} +{"label":"Moe Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/410\/4bd37787017a3c63ea000410\/moe-howard-profile.jpg","biography":"Moses Harry Horwitz, known professionally as Moe Howard, was an American comedian best known as the leader of The Three Stooges, the farce comedy team who starred in motion pictures and television for four decades. His distinctive hairstyle came about when he was a boy and cut off his curls with a pair of scissors, producing a ragged shape approximating a helmet or bowl.","version":35,"birthday":"-2288998800000","id":"6777","birthplace":"Brooklyn, New York, USA","lastModified":"1301901332000","name":"Moe Howard","type":"Person","_key":"43042"} +{"label":"Larry Fine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/513\/4bd3785a017a3c63f3000513\/larry-fine-profile.jpg","version":30,"birthday":"-2121987600000","id":"89613","birthplace":"Philadelphia, PA, USA","lastModified":"1301901668000","name":"Larry Fine","type":"Person","_key":"43043"} +{"label":"Joe DeRita","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/594\/4bd378c8017a3c63f5000594\/joe-derita-profile.jpg","version":24,"id":"105723","lastModified":"1301902020000","name":"Joe DeRita","type":"Person","_key":"43044"} +{"label":"Ethel Merman","version":24,"id":"109897","lastModified":"1301902546000","name":"Ethel Merman","type":"Person","_key":"43045"} +{"label":"Eddie 'Rochester' Anderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/613\/4cb35bcd7b9aa1263c000613\/eddie-rochester-anderson-profile.jpg","version":23,"id":"98571","lastModified":"1301902419000","name":"Eddie 'Rochester' Anderson","type":"Person","_key":"43046"} +{"label":"Ben Blue","version":19,"id":"104034","lastModified":"1301902560000","name":"Ben Blue","type":"Person","_key":"43047"} +{"label":"Alan Carney","version":20,"id":"105804","lastModified":"1301901163000","name":"Alan Carney","type":"Person","_key":"43048"} +{"label":"Barrie Chase","version":23,"id":"127638","lastModified":"1301903066000","name":"Barrie Chase","type":"Person","_key":"43049"} +{"label":"Selma Diamond","version":23,"id":"127640","lastModified":"1301902217000","name":"Selma Diamond","type":"Person","_key":"43050"} +{"label":"Paul Ford","version":24,"id":"127641","lastModified":"1301903071000","name":"Paul Ford","type":"Person","_key":"43051"} +{"label":"Stan Freberg","version":23,"id":"110654","lastModified":"1301902542000","name":"Stan Freberg","type":"Person","_key":"43052"} +{"label":"Louise Glenn","version":22,"id":"127642","lastModified":"1301902894000","name":"Louise Glenn","type":"Person","_key":"43053"} +{"label":"Leo Gorcey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/61f\/4c62e6527b9aa172de00061f\/leo-gorcey-profile.jpg","version":30,"birthday":"-1659319200000","id":"89989","birthplace":"New York City, New York, USA","lastModified":"1301901645000","name":"Leo Gorcey","type":"Person","_key":"43054"} +{"label":"Marvin Kaplan","version":24,"id":"127643","lastModified":"1301903025000","name":"Marvin Kaplan","type":"Person","_key":"43055"} +{"label":"Cliff Norton","version":19,"id":"116679","lastModified":"1301902738000","name":"Cliff Norton","type":"Person","_key":"43056"} +{"label":"Madlyn Rhue","version":23,"id":"127646","lastModified":"1301903050000","name":"Madlyn Rhue","type":"Person","_key":"43057"} +{"label":"Pat Garrett & Billy the Kid","description":"An aging Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons--his sole purpose being to bring down his old friend Billy the Kid.","id":"11577","runtime":106,"imdbId":"tt0070518","version":143,"lastModified":"1301902527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80e\/4d11e5c17b9aa1148600080e\/pat-garrett-billy-the-kid-mid.jpg","genre":"Action","title":"Pat Garrett & Billy the Kid","releaseDate":106963200000,"language":"en","type":"Movie","_key":"43058"} +{"label":"The Return of Don Camillo","description":"After his battles with the communist mayor Peppone, Don Camillo is sent in exile by his bishop in a remote village. Peppone thought he got the village in his hands. But when the municipality decide to build a dike against the periodic floods, the proprietor of the land refuses. War between the village clans is about to begin. Maybe only the strong hand of the priest could persuade the landlord to change his mind. Will Peppone passed over his pride and send for his enemy?","id":"11578","runtime":115,"imdbId":"tt0045081","version":133,"lastModified":"1301903315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4c59eaa15e73d63a70000465\/le-retour-de-don-camillo-mid.jpg","genre":"Comedy","title":"The Return of Don Camillo","releaseDate":-523065600000,"language":"en","type":"Movie","_key":"43059"} +{"label":"Fernandel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9e7\/4bfd4dd1017a3c70370009e7\/fernandel-profile.jpg","version":43,"id":"69958","lastModified":"1301901400000","name":"Fernandel","type":"Person","_key":"43060"} +{"label":"Leda Gloria","version":33,"id":"69966","lastModified":"1301901580000","name":"Leda Gloria","type":"Person","_key":"43061"} +{"label":"\u00c9douard Delmont","version":25,"id":"69971","lastModified":"1301901807000","name":"\u00c9douard Delmont","type":"Person","_key":"43062"} +{"label":"Don Camillo's Last Round","description":"Peppone, hardened mayor in Brescello, the small village on the Po river, aspires to become senator. Neither before or after WWII, where he fought against the Germans and fascists, he never went seriously to school, so he needs (at least) a diploma. Believe it or not, don Camillo helps Peppone to pass the examination (with the forecast of moving to Rome) prompting him the solution of geometry's problem. As implicit reward, Peppone writes a composition about \"A man I'll never forget\": obviously do","id":"11579","runtime":97,"imdbId":"tt0048002","version":75,"lastModified":"1301904715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0e\/4c5dcb067b9aa151f4000a0e\/don-camillo-e-l-on-peppone-mid.jpg","genre":"Comedy","title":"Don Camillo's Last Round","releaseDate":-449884800000,"language":"en","type":"Movie","_key":"43063"} +{"label":"Don Camillo: Monsignor","description":"Don Camillo is now a bishop, Peppone is now a senator, but their rivalry is as fierce as when they were just a village priest, and a village administrator. Don Camillo learns that Peppone is about to promote the building of a communal house on the place of an old, derelict church, and that spurns the old flame. They descend from Rome onto quiet Brescello, and they will agitate their faithful hosts, christians against communists, using all devious ways. Even Christ makes a cameo appearance, when ","id":"11580","runtime":109,"imdbId":"tt0054814","version":53,"lastModified":"1301903657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e1\/4c5dcae37b9aa151f70009e1\/don-camillo-monsignore-ma-non-troppo-mid.jpg","genre":"Comedy","title":"Don Camillo: Monsignor","releaseDate":-259891200000,"language":"en","type":"Movie","_key":"43064"} +{"label":"Don Camillo","description":"No overview found.","id":"11582","version":135,"lastModified":"1301904182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38d\/4bf75f20017a3c772b00038d\/don-camillo-mid.jpg","title":"Don Camillo","language":"en","type":"Movie","_key":"43065"} +{"label":"The Great Train Robbery","description":"In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.","id":"11583","runtime":110,"imdbId":"tt0079240","trailer":"http:\/\/www.youtube.com\/watch?v=h_QathS_8Ok","version":135,"lastModified":"1301908009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb5\/4d54516b5e73d617c1005bb5\/the-first-great-train-robbery-mid.jpg","genre":"Action","title":"The Great Train Robbery","releaseDate":287625600000,"language":"en","type":"Movie","_key":"43066"} +{"label":"Lesley-Anne Down","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10c\/4c24ee9f7b9aa1446e00010c\/lesley-anne-down-profile.jpg","version":42,"id":"57399","lastModified":"1301901360000","name":"Lesley-Anne Down","type":"Person","_key":"43067"} +{"label":"Roxanne","description":"Based on the play \"Cyrano de Bergerac\", large nosed C.D. Bales falls for the beautiful Roxanne while she falls for his personality but another man's looks.","id":"11584","runtime":107,"imdbId":"tt0093886","version":189,"lastModified":"1301908014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f19\/4bc93536017a3c57fe015f19\/roxanne-mid.jpg","genre":"Comedy","title":"Roxanne","releaseDate":551059200000,"language":"en","type":"Movie","_key":"43068"} +{"label":"John Kapelos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/626\/4d442c3f5e73d602b2000626\/john-kapelos-profile.jpg","version":24,"id":"55554","lastModified":"1301901980000","name":"John Kapelos","type":"Person","_key":"43069"} +{"label":"Max Alexander","version":15,"id":"147961","lastModified":"1301903093000","name":"Max Alexander","type":"Person","_key":"43070"} +{"label":"Exorcist II: The Heretic","description":"Bizarre nightmares plague Regan MacNeil (Linda Blair) four years after her possession and exorcism. Has the demon returned? And if so, can the combined faith and knowledge of a Vatican investigator (Richard Burton) and a hypnotic research specialist (Louise Fletcher) free her from its grasp?","id":"11586","runtime":118,"imdbId":"tt0076009","version":147,"lastModified":"1301906478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f27\/4bc93538017a3c57fe015f27\/exorcist-ii-the-heretic-mid.jpg","genre":"Horror","title":"Exorcist II: The Heretic","releaseDate":235353600000,"language":"en","type":"Movie","_key":"43071"} +{"label":"The Exorcist III","description":"Lt. Kinderman and Father Dyer cheer each other up on the anniversary of the death of their mutual friend, Father Damien Karras, by going to see \"It's a Wonderful Life\" at the local theater in Georgetown, near Washington D.C. But there's no cheering Kinderman while a particularly cruel and gruesome serial killer is at large. His murders, which involve torture, decapitation and the desecration of religious icons, is bad enough; but they also resemble those of the Gemini Killer, who has been dead f","id":"11587","runtime":122,"imdbId":"tt0099528","trailer":"http:\/\/www.youtube.com\/watch?v=LT8GsBIhe2g","version":146,"lastModified":"1301902965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f39\/4bc9353a017a3c57fe015f39\/the-exorcist-iii-mid.jpg","genre":"Horror","title":"The Exorcist III","releaseDate":650851200000,"language":"en","type":"Movie","_key":"43072"} +{"label":"Mary Jackson","version":23,"id":"84631","lastModified":"1301901945000","name":"Mary Jackson","type":"Person","_key":"43073"} +{"label":"Tracy Thorne","version":17,"id":"140348","lastModified":"1301902578000","name":"Tracy Thorne","type":"Person","_key":"43074"} +{"label":"William Peter Blatty","version":46,"id":"57922","lastModified":"1301901501000","name":"William Peter Blatty","type":"Person","_key":"43075"} +{"label":"The I Inside","description":"A man (Phillipe) awakens in a hospital not recalling the last two years as he begins to find out things from his past he discovers his ability to move from the year 2002 to the year 2000. By doing this he meets a link between the two time periods (Lang).","id":"11588","runtime":90,"imdbId":"tt0325596","version":158,"lastModified":"1301901841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f46\/4bc9353b017a3c57fe015f46\/the-i-inside-mid.jpg","genre":"Science Fiction","title":"The I Inside","releaseDate":1074124800000,"language":"en","type":"Movie","_key":"43076"} +{"label":"Rakie Ayola","version":12,"id":"195575","lastModified":"1301903949000","name":"Rakie Ayola","type":"Person","_key":"43077"} +{"label":"Paul John Borde","version":3,"id":"231761","lastModified":"1301864571000","name":"Paul John Borde","type":"Person","_key":"43078"} +{"label":"Kelly's Heroes","description":"Kelly's Heroes is an offbeat 1970 war film about a group of World War II soldiers who go AWOL to rob a bank behind enemy lines. Directed by Brian G. Hutton, who also directed the 1968 World War II drama Where Eagles Dare.","id":"11589","runtime":144,"imdbId":"tt0065938","trailer":"http:\/\/www.youtube.com\/watch?v=beAQVm1j56w","version":284,"lastModified":"1301902234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5c\/4bc93540017a3c57fe015f5c\/kelly-s-heroes-mid.jpg","studio":"Avala Film","genre":"Action","title":"Kelly's Heroes","releaseDate":14947200000,"language":"en","type":"Movie","_key":"43079"} +{"label":"Hal Buckley","version":20,"id":"78083","lastModified":"1301902254000","name":"Hal Buckley","type":"Person","_key":"43080"} +{"label":"Jeff Morris","version":22,"id":"78084","lastModified":"1301901873000","name":"Jeff Morris","type":"Person","_key":"43081"} +{"label":"Dick Balduzzi","version":17,"id":"78085","lastModified":"1301902254000","name":"Dick Balduzzi","type":"Person","_key":"43082"} +{"label":"Gene Collins","version":20,"id":"78086","lastModified":"1301902254000","name":"Gene Collins","type":"Person","_key":"43083"} +{"label":"Len Lesser","version":22,"id":"78087","lastModified":"1301901490000","name":"Len Lesser","type":"Person","_key":"43084"} +{"label":"David Hurst","version":17,"id":"16106","lastModified":"1301901723000","name":"David Hurst","type":"Person","_key":"43085"} +{"label":"Fred Pearlman","version":20,"id":"78088","lastModified":"1301902254000","name":"Fred Pearlman","type":"Person","_key":"43086"} +{"label":"George Fargo","version":20,"id":"78089","lastModified":"1301902254000","name":"George Fargo","type":"Person","_key":"43087"} +{"label":"Dee Pollock","version":18,"id":"78090","lastModified":"1301901873000","name":"Dee Pollock","type":"Person","_key":"43088"} +{"label":"George Savalas","version":20,"id":"78091","lastModified":"1301902254000","name":"George Savalas","type":"Person","_key":"43089"} +{"label":"John G. Heller","version":20,"id":"78092","lastModified":"1301902254000","name":"John G. Heller","type":"Person","_key":"43090"} +{"label":"Shepherd Sanders","version":20,"id":"78093","lastModified":"1301902254000","name":"Shepherd Sanders","type":"Person","_key":"43091"} +{"label":"Slap Shot","description":"Former hockey star Reggie Dunlop goes from living the high life to coaching a minor-league hockey team on the skids. When Dunlop realizes that playing dirty excites the crowds, he turns his team into a goon squad of thugs whose popularity only grows the longer they stew in the penalty box.","id":"11590","runtime":123,"imdbId":"tt0076723","trailer":"http:\/\/www.youtube.com\/watch?v=2639","version":147,"lastModified":"1301903934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc7\/4d58a65a7b9aa16bca002dc7\/slap-shot-mid.jpg","studio":"Kings Road Entertainment","genre":"Action","title":"Slap Shot","releaseDate":225676800000,"language":"en","tagline":"Slap Shot out slaps... out swears... out laughs...","type":"Movie","_key":"43092"} +{"label":"Jennifer Warren","version":24,"id":"70241","lastModified":"1301901774000","name":"Jennifer Warren","type":"Person","_key":"43093"} +{"label":"Jeff Carlson","version":18,"id":"90474","lastModified":"1301902080000","name":"Jeff Carlson","type":"Person","_key":"43094"} +{"label":"David Hanson","version":18,"id":"90475","lastModified":"1301902467000","name":"David Hanson","type":"Person","_key":"43095"} +{"label":"Yvon Barrette","version":18,"id":"90476","lastModified":"1301902635000","name":"Yvon Barrette","type":"Person","_key":"43096"} +{"label":"Yvan Ponton","version":18,"id":"90477","lastModified":"1301902635000","name":"Yvan Ponton","type":"Person","_key":"43097"} +{"label":"The Man with Two Brains","description":"A story about a brain surgeon who tries to end his unhappy marriage to spend more time with a disembodied brain.","id":"11591","runtime":93,"imdbId":"tt0085894","trailer":"http:\/\/www.youtube.com\/watch?v=vNQlFe9gCfE","version":133,"lastModified":"1301904056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f96\/4bc93547017a3c57fe015f96\/the-man-with-two-brains-mid.jpg","genre":"Comedy","title":"The Man with Two Brains","releaseDate":423446400000,"language":"en","type":"Movie","_key":"43098"} +{"label":"Serial Mom","description":"A picture perfect middle class family is shocked when they find out that one of their neighbors is receiving obscene phone calls. The mom takes slights against her family very personally, and it turns out she is indeed the one harassing the neighbor. As other slights befall her beloved family, the body count begins to increase.","id":"11592","runtime":95,"imdbId":"tt0111127","version":121,"lastModified":"1302024413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9f\/4bc93548017a3c57fe015f9f\/serial-mom-mid.png","genre":"Comedy","title":"Serial Mom","releaseDate":766195200000,"language":"en","tagline":"Every Mom Wants to Be Wanted, But Not For Murder One!","type":"Movie","_key":"43099"} +{"label":"Nobody's Fool","description":"No overview found.","id":"11593","runtime":110,"imdbId":"tt0110684","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/nobodys-fool","version":142,"lastModified":"1301903559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb1\/4bc9354d017a3c57fe015fb1\/nobody-s-fool-mid.jpg","genre":"Drama","title":"Nobody's Fool","releaseDate":788140800000,"language":"en","type":"Movie","_key":"43100"} +{"label":"Notre Dame de Paris","description":"No overview found.","id":"11594","runtime":115,"imdbId":"tt0050781","version":78,"lastModified":"1301904972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0e\/4d334c605e73d6335b001e0e\/notre-dame-de-paris-mid.jpg","genre":"Drama","title":"Notre Dame de Paris","releaseDate":-411350400000,"language":"en","type":"Movie","_key":"43101"} +{"label":"Jean Danet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/909\/4d5869135e73d617b7010909\/jean-danet-profile.jpg","version":22,"id":"70853","lastModified":"1301901781000","name":"Jean Danet","type":"Person","_key":"43102"} +{"label":"Jean Delannoy","version":25,"id":"70854","lastModified":"1301901444000","name":"Jean Delannoy","type":"Person","_key":"43103"} +{"label":"Another 48 Hrs.","description":"For the past four years, San Francisco cop Jack Cates has been after an unidentified drug kingpin who calls himself the \"Ice Man\". Jack finds a picture that proves that the Ice Man has put a price on the head of Reggie Hammond, who is scheduled to be released from prison on the next day.","id":"11595","runtime":95,"imdbId":"tt0099044","trailer":"http:\/\/www.youtube.com\/watch?v=_TD5ZDEJ5mo","version":193,"lastModified":"1301901837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fba\/4bc9354e017a3c57fe015fba\/another-48-hrs-mid.jpg","genre":"Action","title":"Another 48 Hrs.","releaseDate":644803200000,"language":"en","type":"Movie","_key":"43104"} +{"label":"New Nightmare","description":"Freddy's back \u2026 and he's badder than ever! Nancy, the historical nemesis of the man with the satanic snarl and pitchfork fingers, discovers that a new monstrous demon has taken on Freddy's persona. Can Nancy stop this new threat in time to save her son?","id":"11596","runtime":114,"imdbId":"tt0111686","version":146,"lastModified":"1301902061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/010\/4c1d3db95e73d60bb1000010\/new-nightmare-mid.jpg","genre":"Horror","title":"New Nightmare","releaseDate":782092800000,"language":"en","tagline":"One, Two, Freddy's coming for you...","type":"Movie","_key":"43105"} +{"label":"Toys","description":"Leslie Zevo is a fun-loving inventor who must save his late father's toy factory from his evil uncle, Leland, a war-mongering general who rules the operation with an iron fist and builds weapons disguised as toys.","id":"11597","runtime":118,"imdbId":"tt0105629","version":97,"lastModified":"1301902769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd5\/4bc93550017a3c57fe015fd5\/toys-mid.jpg","genre":"Comedy","title":"Toys","releaseDate":724636800000,"language":"en","tagline":"Laughter is a state of mind.","type":"Movie","_key":"43106"} +{"label":"The Kentucky Fried Movie","description":"A series of loosely connected skits that spoof news programs, commercials, porno films, kung-fu films, disaster films, blaxploitation films, spy films, mafia films, and the fear that somebody is watching you on the other side of the TV.","id":"11598","runtime":90,"imdbId":"tt0076257","version":117,"lastModified":"1301902975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fde\/4bc93550017a3c57fe015fde\/the-kentucky-fried-movie-mid.jpg","studio":"KFM Films","genre":"Comedy","title":"The Kentucky Fried Movie","releaseDate":240019200000,"language":"en","type":"Movie","_key":"43107"} +{"label":"Saul Kahan","version":25,"id":"55244","lastModified":"1301901463000","name":"Saul Kahan","type":"Person","_key":"43108"} +{"label":"Marcy Goldman","version":21,"id":"55617","lastModified":"1301901992000","name":"Marcy Goldman","type":"Person","_key":"43109"} +{"label":"Suzhou River","description":"No overview found.","id":"11599","runtime":83,"imdbId":"tt0234837","version":115,"lastModified":"1301904647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/724\/4d53f33c5e73d617ba005724\/suzhou-he-mid.jpg","genre":"Drama","title":"Suzhou River","releaseDate":949104000000,"language":"en","type":"Movie","_key":"43110"} +{"label":"Ye Lou","version":23,"id":"71056","lastModified":"1301902147000","name":"Ye Lou","type":"Person","_key":"43111"} +{"label":"Hongshen Jia","version":21,"id":"71058","lastModified":"1301902363000","name":"Hongshen Jia","type":"Person","_key":"43112"} +{"label":"Zhongkai Hua","version":21,"id":"71059","lastModified":"1301901951000","name":"Zhongkai Hua","type":"Person","_key":"43113"} +{"label":"An Nai","version":23,"id":"71060","lastModified":"1301902331000","name":"An Nai","type":"Person","_key":"43114"} +{"label":"Redacted","description":"Redacted is a film written and directed by Brian De Palma that is a fictional drama loosely based on the Mahmudiyah killings in Iraq.","id":"11600","runtime":90,"imdbId":"tt0937237","version":197,"lastModified":"1301903196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe7\/4bc93551017a3c57fe015fe7\/redacted-mid.jpg","genre":"Action","title":"Redacted","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"43115"} +{"label":"Izzy Diaz","version":18,"id":"100700","lastModified":"1301902707000","name":"Izzy Diaz","type":"Person","_key":"43116"} +{"label":"Rob Devaney","version":18,"id":"100701","lastModified":"1301902376000","name":"Rob Devaney","type":"Person","_key":"43117"} +{"label":"Ty Jones","version":18,"id":"100703","lastModified":"1301902506000","name":"Ty Jones","type":"Person","_key":"43118"} +{"label":"Anas Wellman","version":18,"id":"100705","lastModified":"1301902331000","name":"Anas Wellman","type":"Person","_key":"43119"} +{"label":"Mike Figueroa","version":18,"id":"100707","lastModified":"1301902990000","name":"Mike Figueroa","type":"Person","_key":"43120"} +{"label":"hypnose","description":"Ever since Tom Witzky was hypnotized by his kooky sister-in-law, he's had terrifying visions of a horrible crime. But the hallucinations give him more than the creeps when he discovers physical remnants of the nightmares in his waking hours. When Tom learns his son can also see ghosts, he must find a way out of the spell and solve the mystery that haunts him and his family.","id":"11601","runtime":99,"imdbId":"tt0164181","version":191,"lastModified":"1301903105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffd\/4bc93556017a3c57fe015ffd\/stir-of-echoes-mid.jpg","genre":"Horror","title":"hypnose","releaseDate":933120000000,"language":"en","tagline":"In every mind there is a door that should never be opened.","type":"Movie","_key":"43121"} +{"label":"Zachary David Cope","version":22,"id":"69979","lastModified":"1301901611000","name":"Zachary David Cope","type":"Person","_key":"43122"} +{"label":"Through a Glass Darkly","description":"While vacationing on a remote island retreat, a family\u2019s already fragile ties are tested when daughter Karin (Harriet Andersson) discovers her father has been using her schizophrenia for his own literary means. As she drifts in and out of lucidity, the father (Gunnar Bj\u00f6rnstrand), along with Karin\u2019s husband (Max von Sydow) and her younger brother (Lars Passg\u00e5rd) are unable to prevent Karin\u2019s harrowing descent into the abyss of mental illness.","id":"11602","runtime":89,"imdbId":"tt0055499","version":108,"lastModified":"1301904947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be0\/4cba53597b9aa138d9000be0\/sasom-i-en-spegel-mid.jpg","genre":"Drama","title":"Through a Glass Darkly","releaseDate":-259113600000,"language":"en","type":"Movie","_key":"43123"} +{"label":"Lars Passg\u00e5rd","version":21,"id":"69981","lastModified":"1301901873000","name":"Lars Passg\u00e5rd","type":"Person","_key":"43124"} +{"label":"Rear Window","description":"No overview found.","id":"11603","runtime":89,"imdbId":"tt0166322","version":88,"lastModified":"1301905959000","genre":"Drama","title":"Rear Window","releaseDate":911692800000,"language":"en","type":"Movie","_key":"43125"} +{"label":"Jeff Bleckner","version":23,"id":"69982","lastModified":"1301901333000","name":"Jeff Bleckner","type":"Person","_key":"43126"} +{"label":"Anthony Zimmer","description":"In Paris, the international police force and the Russian mafia are chasing Anthony Zimmer, an intelligent man responsible for laundry of dirty money in France. Zimmer had extensive plastic surgery, and his new face and voice are completely unknown. The only means to reach Zimmer is through his beloved mistress Chiara, who is under surveillance of the police and the mobsters. While traveling by train to the country nearby Nice, the common man Fran\u00e7ois Taillandier, who has the same body shape of Z","id":"11604","runtime":90,"imdbId":"tt0411118","version":122,"lastModified":"1301907722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ff\/4bf40fb6017a3c32130006ff\/anthony-zimmer-mid.jpg","genre":"Drama","title":"Anthony Zimmer","releaseDate":1114560000000,"language":"en","type":"Movie","_key":"43127"} +{"label":"J\u00e9r\u00f4me Salle","version":28,"id":"69987","lastModified":"1301901940000","name":"J\u00e9r\u00f4me Salle","type":"Person","_key":"43128"} +{"label":"The List of Adrian Messenger","description":"A writer named Adrian Messenger (John Merivale) believes a series of apparently unrelated \"accidental\" deaths are actually linked murders. He asks his friend Anthony Gethryn (George C. Scott), recently retired from MI5, to help clear up the mystery. However, Messenger's plane is bombed while he is en route to collect evidence to confirm his suspicions and, with his dying breath, he tries to tell a fellow passenger the key to the mystery.","id":"11605","runtime":94,"imdbId":"tt0057254","version":67,"lastModified":"1301903121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/828\/4d7bd1765e73d62828001828\/the-list-of-adrian-messenger-mid.jpg","studio":"Universal International Pictures","genre":"Crime","title":"The List of Adrian Messenger","releaseDate":-208137600000,"language":"en","type":"Movie","_key":"43129"} +{"label":"Last Life in the Universe","description":"An obsessive-compulsive Japanese librarian living in Bangkok spends most of his days contemplating suicide in his lifeless apartment. His life changes when he witnesses the death of Nid, seconds before he was about to jump off a bridge. This brings him in contact with Nid's elder sister Noi - these two lost and lonely souls help each other find the meaning to their meaningless existences.","id":"11606","runtime":112,"imdbId":"tt0345549","version":122,"lastModified":"1301903506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4c97b76c5e73d6554c000024\/ruang-rak-noi-nid-mahasan-mid.jpg","genre":"Drama","title":"Last Life in the Universe","releaseDate":1060300800000,"language":"en","type":"Movie","_key":"43130"} +{"label":"Sinitta Boonyasak","version":19,"id":"69989","lastModified":"1301901723000","name":"Sinitta Boonyasak","type":"Person","_key":"43131"} +{"label":"Laila Boonyasak","version":19,"id":"69990","lastModified":"1301901535000","name":"Laila Boonyasak","type":"Person","_key":"43132"} +{"label":"Pen-Ek Ratanaruang","version":26,"id":"69991","lastModified":"1301901490000","name":"Pen-Ek Ratanaruang","type":"Person","_key":"43133"} +{"label":"Deep Star Six","description":"The crew of an experimental underwater nuclear base are forced to struggle for their lives when their explorations disturb a creature who threatens to destroy their base.","id":"11607","runtime":99,"imdbId":"tt0097179","trailer":"http:\/\/www.youtube.com\/watch?v=pouTM3jqZCM","version":85,"lastModified":"1301903043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b9\/4ce6befe5e73d6258c0000b9\/deep-star-six-mid.jpg","studio":"Carolco Entertainment","genre":"Action","title":"Deep Star Six","releaseDate":599875200000,"language":"en","type":"Movie","_key":"43134"} +{"label":"Taurean Blacque","version":20,"id":"70003","lastModified":"1301901648000","name":"Taurean Blacque","type":"Person","_key":"43135"} +{"label":"Greg Evigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/355\/4c9524c45e73d63a79000355\/greg-evigan-profile.jpg","version":33,"id":"70004","lastModified":"1301901511000","name":"Greg Evigan","type":"Person","_key":"43136"} +{"label":"Cindy Pickett","version":26,"id":"74276","lastModified":"1301901951000","name":"Cindy Pickett","type":"Person","_key":"43137"} +{"label":"Yellowbeard","description":"For years Yellowbeard had looted the Spanish Main, making men eat their lips and swallow their hearts. Caught and convicted for tax evasion, he's sentenced to 20 years in St. Victim's Prison for the Extremely Naughty. In a scheme to confiscate his fabulous treasure, the Royal Navy allows him to escape and follows him, where saucy tarts, lisping demigods and some awful puns and punishments await.","id":"11609","runtime":96,"imdbId":"tt0086618","trailer":"http:\/\/www.youtube.com\/watch?v=_jtJVrNzgD0","version":120,"lastModified":"1301902883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4bc93559017a3c57fe01602c\/yellowbeard-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"Yellowbeard","releaseDate":425260800000,"language":"en","tagline":"A Shipload of laughs.","type":"Movie","_key":"43138"} +{"label":"Mel Damski","version":30,"id":"70008","lastModified":"1301902045000","name":"Mel Damski","type":"Person","_key":"43139"} +{"label":"Play It Again, Sam","description":"A mild mannered film critic is dumped by his wife and his ego is crushed. His hero persona is the tough guy played by Humphrey Bogart in many of his movies and the apparition of Bogart begins showing up to give him advice. With the encouragement of his two married friends, he actually tries dating again, with less than satisfactory results, until he relaxes.","id":"11610","runtime":85,"imdbId":"tt0069097","version":148,"lastModified":"1302002771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a0\/4c6c35b27b9aa13ab70003a0\/play-it-again-sam-mid.jpg","genre":"Comedy","title":"Play It Again, Sam","releaseDate":73785600000,"language":"en","type":"Movie","_key":"43140"} +{"label":"Jerry Lacy","version":21,"id":"70013","lastModified":"1302002771000","name":"Jerry Lacy","type":"Person","_key":"43141"} +{"label":"Nich' mit Leo","description":"No overview found.","id":"11611","runtime":90,"imdbId":"tt0110661","version":44,"lastModified":"1301904265000","genre":"Comedy","title":"Nich' mit Leo","releaseDate":792892800000,"language":"en","type":"Movie","_key":"43142"} +{"label":"J\u00fcrgen von der Lippe","version":23,"id":"70015","lastModified":"1301902376000","name":"J\u00fcrgen von der Lippe","type":"Person","_key":"43143"} +{"label":"Cornelia Corba","version":20,"id":"39383","lastModified":"1301901992000","name":"Cornelia Corba","type":"Person","_key":"43144"} +{"label":"Christiane Brammer","version":20,"id":"46167","lastModified":"1301902374000","name":"Christiane Brammer","type":"Person","_key":"43145"} +{"label":"Anche Gli Angeli Mangiano Fagioli","description":"No overview found.","id":"11612","runtime":118,"imdbId":"tt0069713","version":97,"lastModified":"1301902727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98c\/4c5d89ca7b9aa151f600098c\/anche-gli-angeli-mangiano-fagioli-mid.jpg","genre":"Action","title":"Anche Gli Angeli Mangiano Fagioli","releaseDate":101606400000,"language":"en","type":"Movie","_key":"43146"} +{"label":"Cane e gatto","description":"L.A.P.D. Captain Parker finally is going on Holiday with all his family. At the last moment he has to cancel the program to re-capture a pilferer named Tony Roma, bad copy of a Latin lover. He use to seduce older women and then steals their jewelry. Parker is close to sort the case out when Roma is witness of a Mafia murder. Parker Holiday flies away.","id":"11613","runtime":101,"imdbId":"tt0083715","version":65,"lastModified":"1301903863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/671\/4caa3cc35e73d643ec000671\/cane-e-gatto-mid.jpg","genre":"Action","title":"Cane e gatto","releaseDate":414979200000,"language":"en","type":"Movie","_key":"43147"} +{"label":"Billy Garrigues","version":19,"id":"70024","lastModified":"1301901772000","name":"Billy Garrigues","type":"Person","_key":"43148"} +{"label":"Bomber","description":"No overview found.","id":"11614","runtime":101,"imdbId":"tt0083675","version":95,"lastModified":"1301903115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05b\/4bc93560017a3c57fe01605b\/bomber-mid.jpg","genre":"Action","title":"Bomber","releaseDate":397353600000,"language":"en","type":"Movie","_key":"43149"} +{"label":"Jerry Cal\u00e0","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f0\/4bfc3048017a3c70360008f0\/jerry-cala-profile.jpg","biography":"Calogero Cal\u00e0 in arte Jerry Cal\u00e0 (Catania, 28 giugno 1951) \u00e8 un attore, sceneggiatore, regista e cantante italiano. Il suo nome resta legato anche alla carriera con i Gatti di Vicolo Miracoli, e ad alcuni tormentoni da lui creati negli anni settanta.","version":29,"birthday":"-584240400000","id":"70027","birthplace":"Catania, italy","lastModified":"1301901642000","name":"Jerry Cal\u00e0","type":"Person","_key":"43150"} +{"label":"Stefano Mingardo","version":18,"id":"70028","lastModified":"1301902254000","name":"Stefano Mingardo","type":"Person","_key":"43151"} +{"label":"Kallie Knoetze","version":21,"id":"70029","lastModified":"1301901873000","name":"Kallie Knoetze","type":"Person","_key":"43152"} +{"label":"The Life of David Gale","description":"Dr. David Gale, an advocate of eliminating the death penalty, is falsely accused of rape and murder. Once convicted, he ends up on death row in Texas himself, telling his story to a reporter through a series of flashbacks.","id":"11615","runtime":130,"imdbId":"tt0289992","version":204,"lastModified":"1301901893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/069\/4bc93561017a3c57fe016069\/the-life-of-david-gale-mid.jpg","genre":"Action","title":"The Life of David Gale","releaseDate":1044576000000,"language":"en","type":"Movie","_key":"43153"} +{"label":"Nati Con La Camicia","description":"No overview found.","id":"11616","runtime":107,"imdbId":"tt0085601","version":55,"lastModified":"1301904673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4c4b1e185e73d62a3f00001f\/nati-con-la-camicia-mid.jpg","genre":"Action","title":"Nati Con La Camicia","releaseDate":433123200000,"language":"en","type":"Movie","_key":"43154"} +{"label":"Buffy Dee","version":20,"id":"70033","lastModified":"1301901723000","name":"Buffy Dee","type":"Person","_key":"43155"} +{"label":"Riccardo Pizzuti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c014cc7017a3c7037001106\/riccardo-pizzuti-profile.jpg","biography":"Riccardo Pizzuti (Cetraro, 28 Maggio 1934) \u00e8 un attore e stuntman italiano.\nPizzuti \u00e8 famoso per le numerose presenze nei film della coppia Bud Spencer (Carlo Pedersoli) e Terence Hill (Mario Girotti) che tanto successo hanno riscosso.\nAnche se il suo nome non \u00e8 famoso quanto i protagonisti, Pizzuti ha rivestito la sua importante parte per la buona riuscita dei film e per il divertimento che questi offrono. Il suo ruolo \u00e8 quello standard del \"cattivo\", anche se non ha mai ricoperto, in tal veste","version":18,"birthday":"-1123376400000","id":"103617","birthplace":"Cetraro, Italy","lastModified":"1301902635000","name":"Riccardo Pizzuti","type":"Person","_key":"43156"} +{"label":"Faith Minton","version":23,"id":"120650","lastModified":"1301903020000","name":"Faith Minton","type":"Person","_key":"43157"} +{"label":"Rio Grande","description":"Lt. Col. Kirby Yorke is posted on the Texas frontier to defend settlers against depredations of marauding Apaches. Col. Yorke is under considerable stress by a serious shortage of troops of his command. Tension is added when Yorke's son (whom he hasn't seen in fifteen years), Trooper Jeff Yorke, is one of 18 recruits sent to the regiment.","id":"11617","runtime":105,"imdbId":"tt0042895","version":97,"lastModified":"1301902952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/084\/4bc93566017a3c57fe016084\/rio-grande-mid.jpg","genre":"Action","title":"Rio Grande","releaseDate":-603676800000,"language":"en","type":"Movie","_key":"43158"} +{"label":"Claude Jarman Jr.","version":22,"id":"70036","lastModified":"1301901671000","name":"Claude Jarman Jr.","type":"Person","_key":"43159"} +{"label":"The Haunting","description":"Dr. David Marrow invites Nell Vance and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself -- and, soon, they see the true nature of its horror.","id":"11618","runtime":113,"imdbId":"tt0171363","trailer":"http:\/\/www.youtube.com\/watch?v=tsg0HZq0MNw","version":104,"lastModified":"1301902647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4bc93567017a3c57fe01608d\/the-haunting-mid.jpg","genre":"Horror","title":"The Haunting","releaseDate":932428800000,"language":"en","tagline":"Some houses are born bad.","type":"Movie","_key":"43160"} +{"label":"Flushed Away","description":"London high-society mouse Roddy is flushed down the toilet by Syd, a common sewer rat. Hang on for a madcap adventure deep in the bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs Spike and Whitey.","id":"11619","runtime":85,"imdbId":"tt0424095","trailer":"http:\/\/www.youtube.com\/watch?v=1360","version":222,"lastModified":"1301901514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/427\/4d534e8a5e73d617b7005427\/flushed-away-mid.jpg","studio":"DreamWorks Animation","genre":"Adventure","title":"Flushed Away","releaseDate":1161475200000,"language":"en","tagline":"Someone's Going Down","type":"Movie","_key":"43161"} +{"label":"Quo Vadis","description":"Set against the back drop of Rome in crisis, General Marcus Vinicius returns to the city from the battle fields and falls in love with a Christian woman, Lygia. Caught in the grip of insanity, Nero's atrocities become more extreme and he burns Rome, laying the blame on the Christians. Vinicius races to save Lygia from the wrath of Nero as the empire of Rome collapses around them.","id":"11620","runtime":171,"imdbId":"tt0043949","version":176,"lastModified":"1301902493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4bc93569017a3c57fe0160a8\/quo-vadis-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Quo Vadis","releaseDate":-572745600000,"language":"en","type":"Movie","_key":"43162"} +{"label":"Robert Taylor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d6\/4be1c90a017a3c35b40007d6\/robert-taylor-profile.jpg","version":46,"id":"82216","lastModified":"1302060770000","name":"Robert Taylor","type":"Person","_key":"43163"} +{"label":"Bud Spencer","version":14,"id":"150032","lastModified":"1301903122000","name":"Bud Spencer","type":"Person","_key":"43164"} +{"label":"Porco Rosso","description":"Porco Rosso, known in Japan as Crimson Pig (Kurenai no Buta) is the sixth animated film by Hayao Miyazaki and released in 1992. You're introduced to an Italian World War I fighter ace, now living as a freelance bounty hunter chasing \"air pirates\" in the Adriatic Sea. He has been given a curse that changed his head to that of a pig. Once called Marco Pagot, he is now known to the world as \"Porco Rosso\", Italian for \"Red Pig.\"","id":"11621","runtime":94,"imdbId":"tt0104652","version":101,"lastModified":"1301902269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4d676ad55e73d66a6100171a\/kurenai-no-buta-mid.jpg","studio":"Studio Ghibli","genre":"Adventure","title":"Porco Rosso","releaseDate":1065657600000,"language":"en","type":"Movie","_key":"43165"} +{"label":"Sh\u00fbichir\u00f4 Moriyama","version":24,"id":"70046","lastModified":"1301902080000","name":"Sh\u00fbichir\u00f4 Moriyama","type":"Person","_key":"43166"} +{"label":"Tokiko Kat\u00f4","version":22,"id":"70047","lastModified":"1301901873000","name":"Tokiko Kat\u00f4","type":"Person","_key":"43167"} +{"label":"Sanshi Katsura","version":24,"id":"70048","lastModified":"1301902080000","name":"Sanshi Katsura","type":"Person","_key":"43168"} +{"label":"Blast from the Past","description":"Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.","id":"11622","runtime":112,"imdbId":"tt0124298","trailer":"http:\/\/www.youtube.com\/watch?v=AhMQOb0tEmI","version":156,"lastModified":"1301902908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4d6e8bb17b9aa12fd100079a\/blast-from-the-past-mid.jpg","genre":"Comedy","title":"Blast from the Past","releaseDate":917395200000,"language":"en","tagline":"She'd never met anyone like him. He's never met anyone... Period.","type":"Movie","_key":"43169"} +{"label":"The Medusa Touch","description":"\"I have a gift for disaster,\" says John Morlar (Ricard Burton). Morlar is cursed with a unique telekinesis power that only seems to cause disaster.","id":"11623","runtime":105,"imdbId":"tt0077921","trailer":"http:\/\/www.youtube.com\/watch?v=3172","version":93,"lastModified":"1301903313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4bc93571017a3c57fe0160cb\/the-medusa-touch-mid.jpg","genre":"Drama","title":"The Medusa Touch","releaseDate":261360000000,"language":"en","type":"Movie","_key":"43170"} +{"label":"Jack Gold","version":29,"id":"70055","lastModified":"1301903110000","name":"Jack Gold","type":"Person","_key":"43171"} +{"label":"Everything You Always Wanted to Know About Sex * But Were Afraid to Ask","description":"Woody Allen's fourth film, consisting of a series of short sequences loosely inspired by Dr. David Reuben's book of the same name. The film was an early smash for Allen, grossing over $18 million dollars in the U.S. alone against a $2 million dollar budget. The credits at the start and close of the film are played ","id":"11624","runtime":88,"imdbId":"tt0068555","version":164,"lastModified":"1301908014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4bc93571017a3c57fe0160d4\/everything-you-always-wanted-to-know-about-sex-but-were-afraid-to-ask-mid.jpg","genre":"Comedy","title":"Everything You Always Wanted to Know About Sex * But Were Afraid to Ask","releaseDate":81907200000,"language":"en","type":"Movie","_key":"43172"} +{"label":"Ast\u00e9rix et le coup du menhir","description":"Gaullish custom requires that a would-be chief must challenge and defeat another to become the leader of two tribes. Vitalstatistix is not perturbed because of Getafix's magic potion. Getafix, however has an accident and forgets how to make it. Then Vitalstatistix is suddenly challenged.","id":"11625","runtime":81,"imdbId":"tt0096842","version":59,"lastModified":"1301903149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4bc93572017a3c57fe0160e5\/asterix-et-le-coup-du-menhir-mid.jpg","genre":"Adventure","title":"Ast\u00e9rix et le coup du menhir","releaseDate":624153600000,"language":"en","type":"Movie","_key":"43173"} +{"label":"Philippe Grimond","version":27,"id":"57291","lastModified":"1301901977000","name":"Philippe Grimond","type":"Person","_key":"43174"} +{"label":"Pippi on the Run","description":"Tommy och Annika \u00e4r tr\u00f6tta p\u00e5 mammas evinnerliga tjat, s\u00e5 de beslutar sig f\u00f6r att rymma hemifr\u00e5n. Men att rymma utan Pippi \u00e4r inte roligt, s\u00e5 Pippi f\u00e5r f\u00f6lja med!","id":"11626","runtime":94,"imdbId":"tt0066265","version":70,"lastModified":"1301907312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ef\/4bc93573017a3c57fe0160ef\/pa-rymmen-med-pippi-langstrump-mid.jpg","genre":"Comedy","title":"Pippi on the Run","releaseDate":27388800000,"language":"en","type":"Movie","_key":"43175"} +{"label":"Inger Nilsson","version":31,"id":"70066","lastModified":"1301901453000","name":"Inger Nilsson","type":"Person","_key":"43176"} +{"label":"Maria Persson","version":28,"id":"70067","lastModified":"1301901453000","name":"Maria Persson","type":"Person","_key":"43177"} +{"label":"P\u00e4r Sundberg","version":29,"id":"70068","lastModified":"1301901669000","name":"P\u00e4r Sundberg","type":"Person","_key":"43178"} +{"label":"Hans Alfredson","version":26,"id":"70069","lastModified":"1301901812000","name":"Hans Alfredson","type":"Person","_key":"43179"} +{"label":"M\u00fcnchhausen","description":"No overview found.","id":"11627","runtime":134,"imdbId":"tt0036191","version":53,"lastModified":"1301908333000","genre":"Comedy","title":"M\u00fcnchhausen","releaseDate":-846633600000,"language":"en","type":"Movie","_key":"43180"} +{"label":"Josef von B\u00e1ky","version":20,"id":"70070","lastModified":"1301901648000","name":"Josef von B\u00e1ky","type":"Person","_key":"43181"} +{"label":"Solino","description":"No overview found.","id":"11628","runtime":120,"imdbId":"tt0292242","version":106,"lastModified":"1301903725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f4\/4bc93573017a3c57fe0160f4\/solino-mid.jpg","genre":"Drama","title":"Solino","releaseDate":1032739200000,"language":"en","type":"Movie","_key":"43182"} +{"label":"Gigi Savoia","version":20,"id":"70082","lastModified":"1301902194000","name":"Gigi Savoia","type":"Person","_key":"43183"} +{"label":"Antonella Attili","version":21,"id":"70083","lastModified":"1301901648000","name":"Antonella Attili","type":"Person","_key":"43184"} +{"label":"Legion of the Dead","description":"No overview found.","id":"11629","runtime":89,"imdbId":"tt0213802","trailer":"http:\/\/www.youtube.com\/watch?v=2891","version":81,"lastModified":"1301905272000","genre":"Comedy","title":"Legion of the Dead","releaseDate":1003968000000,"language":"en","type":"Movie","_key":"43185"} +{"label":"Michael Carr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fdc\/4d95d8087b9aa11994002fdc\/michael-carr-profile.jpg","version":34,"id":"70075","lastModified":"1301901835000","name":"Michael Carr","type":"Person","_key":"43186"} +{"label":"Russell Friedenberg","version":27,"id":"70076","lastModified":"1301901791000","name":"Russell Friedenberg","type":"Person","_key":"43187"} +{"label":"Kimberly Liebe","version":19,"id":"70077","lastModified":"1301901611000","name":"Kimberly Liebe","type":"Person","_key":"43188"} +{"label":"Three Men and a Little Lady","description":"Sylvia's work increasingly takes her away from the three men who help bring up Mary, her daughter. When she decides to move to England and take Mary with her, the three men are heartbroken at losing the two most important females in their lives.","id":"11630","runtime":104,"imdbId":"tt0098966","version":102,"lastModified":"1301907723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4bc93575017a3c57fe0160f9\/3-men-and-a-little-lady-mid.jpg","genre":"Comedy","title":"Three Men and a Little Lady","releaseDate":659145600000,"language":"en","type":"Movie","_key":"43189"} +{"label":"Mamma Mia!","description":"Set on an idyllic Greek island, the plot serves as a background for a wealth of ABBA hit songs. Donna, an independent, single mother who owns a small hotel on the island is about to let go of Sophie, the spirited young daughter she's raised alone. But Sophie has secretly invited three of her mother's ex-lovers in the hopes of finding her father.","id":"11631","runtime":108,"imdbId":"tt0795421","trailer":"http:\/\/www.youtube.com\/watch?v=XZAvWkBAhkk","version":340,"lastModified":"1301901466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12d\/4bc9357c017a3c57fe01612d\/mamma-mia-mid.jpg","studio":"Internationale Filmproduktion Richter","genre":"Comedy","title":"Mamma Mia!","releaseDate":1214784000000,"language":"en","type":"Movie","_key":"43190"} +{"label":"Phyllida Lloyd","version":20,"id":"71068","lastModified":"1301901436000","name":"Phyllida Lloyd","type":"Person","_key":"43191"} +{"label":"Nancy Baldwin","version":21,"id":"71072","lastModified":"1301901689000","name":"Nancy Baldwin","type":"Person","_key":"43192"} +{"label":"Enzo Squillino Jr.","version":20,"id":"71073","lastModified":"1301901762000","name":"Enzo Squillino Jr.","type":"Person","_key":"43193"} +{"label":"Rachel McDowall","version":24,"id":"127000","lastModified":"1301902216000","name":"Rachel McDowall","type":"Person","_key":"43194"} +{"label":"Vanity Fair","description":"No overview found.","id":"11632","runtime":141,"imdbId":"tt0241025","version":217,"lastModified":"1302022860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/140\/4bc9357e017a3c57fe016140\/vanity-fair-mid.jpg","genre":"Drama","title":"Vanity Fair","releaseDate":1093996800000,"language":"en","type":"Movie","_key":"43195"} +{"label":"Appleseed","description":"In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?","id":"11633","runtime":105,"imdbId":"tt0401233","trailer":"http:\/\/www.youtube.com\/watch?v=89d9j98NPP4","version":114,"lastModified":"1301902672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16d\/4bc93584017a3c57fe01616d\/11633-mid.jpg","studio":"Toho Company","genre":"Animation","title":"Appleseed","releaseDate":1078444800000,"language":"en","tagline":"Humanity's last chance for survival!","type":"Movie","_key":"43196"} +{"label":"J\u00fbr\u00f4ta Kosugi","version":22,"id":"70098","lastModified":"1301901494000","name":"J\u00fbr\u00f4ta Kosugi","type":"Person","_key":"43197"} +{"label":"Yuki Matsuoka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c8d\/4d26311c7b9aa134d3000c8d\/yuki-matsuoka-profile.jpg","version":28,"birthday":"22028400000","id":"70099","birthplace":"Osaka","lastModified":"1301901236000","name":"Yuki Matsuoka","type":"Person","_key":"43198"} +{"label":"Asumi Miwa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cec\/4d26324d7b9aa134dc000cec\/asumi-miwa-profile.jpg","version":20,"id":"20313","lastModified":"1301901222000","name":"Asumi Miwa","type":"Person","_key":"43199"} +{"label":"Shinji Aramaki","version":34,"id":"70100","lastModified":"1301901349000","name":"Shinji Aramaki","type":"Person","_key":"43200"} +{"label":"Fucking \u00c5m\u00e5l","description":"\u00c5m\u00e5l is a small insignificant town where nothing ever happens, where the latest trends are out of date when they get there. Young Elin has a bit of a bad reputation when it comes to guys, but the fact is that she has never done *it*. Another girl in her school, Agnes, is in love with her but is too shy to do anything about it. For different reasons, Elin ends up at Agnes' birthday party as the only guest. They have a girl's night out together but after that Elin desperately avoids Agnes, refusin","id":"11634","runtime":89,"imdbId":"tt0150662","trailer":"http:\/\/www.youtube.com\/watch?v=0j9ENzrF1Vc","version":61,"lastModified":"1301903360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19d\/4bc9358d017a3c57fe01619d\/fucking-amal-mid.jpg","genre":"Drama","title":"Fucking \u00c5m\u00e5l","releaseDate":909100800000,"language":"en","type":"Movie","_key":"43201"} +{"label":"Alexandra Dahlstr\u00f6m","version":21,"id":"70092","lastModified":"1301901723000","name":"Alexandra Dahlstr\u00f6m","type":"Person","_key":"43202"} +{"label":"Rebecka Liljeberg","version":18,"id":"70093","lastModified":"1301901611000","name":"Rebecka Liljeberg","type":"Person","_key":"43203"} +{"label":"Mathias Rust","version":20,"id":"70094","lastModified":"1301901611000","name":"Mathias Rust","type":"Person","_key":"43204"} +{"label":"Erica Carlson","version":20,"id":"70095","lastModified":"1301902080000","name":"Erica Carlson","type":"Person","_key":"43205"} +{"label":"Stefan H\u00f6rberg","version":20,"id":"70096","lastModified":"1301902080000","name":"Stefan H\u00f6rberg","type":"Person","_key":"43206"} +{"label":"Old School","description":"Mitch, Frank and Beanie are disillusioned with their personal lives begining when Mitch's nymphomanic girlfriend, Heidi, cheats on him, then former party animal Frank gets married, but unwilling to get go of his wild life, and Beanie is a family man seeking to reclaim his wild and crazy youth.","id":"11635","runtime":90,"imdbId":"tt0302886","trailer":"http:\/\/www.youtube.com\/watch?v=ybNn__9pnms","version":162,"lastModified":"1301905766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4ce4485d7b9aa168b1000588\/old-school-mid.jpg","genre":"Comedy","title":"Old School","releaseDate":1045094400000,"language":"en","tagline":"All the fun of college, none of the education.","type":"Movie","_key":"43207"} +{"label":"Leah Remini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d4\/4ccb54105e73d650250006d4\/leah-remini-profile.jpg","biography":"Leah Marie Remini is an American actress. She is best known for her role as Carrie Heffernan on the CBS sitcom The King of Queens. She currently co-hosts the daytime series The Talk alongside several other well-known public figures, discussing controversial topics and contemporary issues.The Talk premiered on October 18, 2010.","version":21,"birthday":"14252400000","id":"15050","birthplace":"Brooklyn, New York, USA","lastModified":"1301901796000","name":"Leah Remini","type":"Person","_key":"43208"} +{"label":"New Police Story","description":"Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing (Jackie Chan) needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.","id":"11636","runtime":123,"imdbId":"tt0386005","trailer":"http:\/\/www.youtube.com\/watch?v=04aaKOuyqB8","version":153,"lastModified":"1301902098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/342\/4d016f197b9aa11bc2000342\/xin-jing-cha-gu-shi-mid.jpg","studio":"China Film Group Corporation","genre":"Action","title":"New Police Story","releaseDate":1095897600000,"language":"en","type":"Movie","_key":"43209"} +{"label":"Nicholas Tse","version":59,"id":"70106","lastModified":"1301901122000","name":"Nicholas Tse","type":"Person","_key":"43210"} +{"label":"Mak Bau","version":20,"id":"70107","lastModified":"1301901430000","name":"Mak Bau","type":"Person","_key":"43211"} +{"label":"Tak-bun Wong","version":31,"id":"70108","lastModified":"1301901363000","name":"Tak-bun Wong","type":"Person","_key":"43212"} +{"label":"Benny Chan","version":67,"id":"70109","lastModified":"1301901291000","name":"Benny Chan","type":"Person","_key":"43213"} +{"label":"Are We There Yet?","description":"The fledgling romance between Nick, a playboy bachelor, and Suzanne, a divorced mother of two, is threatened by a particularly harrowing New Years Eve. When Suzanne's work keeps her in Vancouver for the holiday, Nick offers to bring her kids to the city from Portland, Oregon. The kids, who have never liked any of the men their mom dates, are determined to turn the trip into a nightmare for Nick.","id":"11637","runtime":95,"imdbId":"tt0368578","trailer":"http:\/\/www.youtube.com\/watch?v=cn7IPP2bc5c","version":99,"lastModified":"1301902777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bc93592017a3c57fe0161ce\/are-we-there-yet-mid.jpg","genre":"Comedy","title":"Are We There Yet?","releaseDate":1106265600000,"language":"en","type":"Movie","_key":"43214"} +{"label":"Guess Who","description":"The fianc\u00e9 of an African-American woman who's met with skepticism and suspicion from her father. Tension flares -- along with comedy -- when she takes him home for the all-important introduction, and as the wedding approaches, Dad must come to terms with his future son-in-law.","id":"11638","runtime":105,"imdbId":"tt0372237","version":162,"lastModified":"1301902437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7a\/4d40c3b97b9aa15bbf002b7a\/guess-who-mid.jpg","genre":"Comedy","title":"Guess Who","releaseDate":1111708800000,"language":"en","tagline":"His house. His rules. Some in-laws were made to be broken.","type":"Movie","_key":"43215"} +{"label":"Hal Williams","version":21,"id":"70775","lastModified":"1301901611000","name":"Hal Williams","type":"Person","_key":"43216"} +{"label":"Kellee Stewart","version":21,"id":"70776","lastModified":"1301901873000","name":"Kellee Stewart","type":"Person","_key":"43217"} +{"label":"Kevin Rodney Sullivan","version":22,"id":"70777","lastModified":"1301901643000","name":"Kevin Rodney Sullivan","type":"Person","_key":"43218"} +{"label":"The Dark Crystal","description":"Another planet, another time, 1000 years ago the mysterious Dark Crystal was damaged by one of the Urskeks and an age of chaos began! The evil race of grotesque birdlike lizards the Skeksis, gnomish dragons who rule their fantastic planet with an iron claw. Meanwhile the orphan Jen, raised by a race of the peace-loving wizards called the Mystics, embarks on a quest to find the missing shard.","id":"11639","runtime":93,"imdbId":"tt0083791","trailer":"http:\/\/www.youtube.com\/watch?v=ZzgVPB5dpgg","version":177,"lastModified":"1301902310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/411\/4bf7bc67017a3c772c000411\/the-dark-crystal-mid.jpg","studio":"Henson Associates (HA)","genre":"Adventure","title":"The Dark Crystal","releaseDate":408931200000,"language":"en","tagline":"Another World, Another Time... In the Age of Wonder.","type":"Movie","_key":"43219"} +{"label":"Kathryn Mullen","version":22,"id":"70772","lastModified":"1301902177000","name":"Kathryn Mullen","type":"Person","_key":"43220"} +{"label":"Gary Kurtz","version":51,"id":"12401","lastModified":"1299494363000","name":"Gary Kurtz","type":"Person","_key":"43221"} +{"label":"Das fliegende Klassenzimmer","description":"No overview found.","id":"11642","runtime":88,"imdbId":"tt0070064","version":66,"lastModified":"1301908352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64c\/4d4149935e73d6572100064c\/das-fliegende-klassenzimmer-mid.jpg","genre":"Comedy","title":"Das fliegende Klassenzimmer","releaseDate":120441600000,"language":"en","type":"Movie","_key":"43222"} +{"label":"Bernd Herzsprung","version":21,"id":"70116","lastModified":"1301902176000","name":"Bernd Herzsprung","type":"Person","_key":"43223"} +{"label":"If It's Tuesday, This Must Be Belgium","description":"No overview found.","id":"11643","runtime":105,"imdbId":"tt0064471","version":268,"lastModified":"1301907744000","genre":"Comedy","title":"If It's Tuesday, This Must Be Belgium","releaseDate":-21772800000,"language":"en","type":"Movie","_key":"43224"} +{"label":"Hilary Thompson","version":22,"id":"70117","lastModified":"1301902310000","name":"Hilary Thompson","type":"Person","_key":"43225"} +{"label":"Luke Halpin","version":21,"id":"70118","lastModified":"1301901489000","name":"Luke Halpin","type":"Person","_key":"43226"} +{"label":"Catherine Spaak","version":24,"id":"70119","lastModified":"1301903109000","name":"Catherine Spaak","type":"Person","_key":"43227"} +{"label":"Blow Out","description":"A soundman accidentally records the evidence that proves a car \"accident\" was murder, and consequently finds himself in danger.","id":"11644","runtime":108,"imdbId":"tt0082085","version":405,"lastModified":"1302023844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/203\/4bc93599017a3c57fe016203\/blow-out-mid.jpg","genre":"Crime","title":"Blow Out","releaseDate":364780800000,"language":"en","type":"Movie","_key":"43228"} +{"label":"Peter Boyden","version":26,"id":"73513","lastModified":"1301902080000","name":"Peter Boyden","type":"Person","_key":"43229"} +{"label":"Curt May","version":20,"id":"73514","lastModified":"1301902080000","name":"Curt May","type":"Person","_key":"43230"} +{"label":"John Aquino","version":24,"id":"73515","lastModified":"1301902203000","name":"John Aquino","type":"Person","_key":"43231"} +{"label":"Ran","description":"A story of greed, a lust for power, and ultimate revenge when an elderly lord abdicates to his three sons, and the two corrupt ones turn against him. A profound examination of the folly of war and the crumbling of one family under the weight of betrayal, greed, and the insatiable thirst for power.","id":"11645","runtime":160,"imdbId":"tt0089881","trailer":"http:\/\/www.youtube.com\/watch?v=AbbfDntoRRk","version":209,"lastModified":"1301902183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20c\/4bc9359a017a3c57fe01620c\/ran-mid.jpg","genre":"Action","title":"Ran","releaseDate":486432000000,"language":"en","type":"Movie","_key":"43232"} +{"label":"Tatsuya Nakadai","version":55,"id":"70131","lastModified":"1301901151000","name":"Tatsuya Nakadai","type":"Person","_key":"43233"} +{"label":"Akira Terao","version":34,"id":"70132","lastModified":"1301901295000","name":"Akira Terao","type":"Person","_key":"43234"} +{"label":"Jinpachi Nezu","version":30,"id":"70133","lastModified":"1301901698000","name":"Jinpachi Nezu","type":"Person","_key":"43235"} +{"label":"Daisuke Ry\u00fb","version":22,"id":"70134","lastModified":"1301901873000","name":"Daisuke Ry\u00fb","type":"Person","_key":"43236"} +{"label":"Gallipoli","description":"The story of a group of young Australian men who leave their various backgrounds behind and sign up to join the ANZACs in World War I. They are sent to Gallipoli, where they encounter the might of the Turkish army. ","id":"11646","runtime":110,"imdbId":"tt0082432","trailer":"http:\/\/www.youtube.com\/watch?v=i8e7ECdG69U","version":191,"lastModified":"1301902856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11a\/4c2f09627b9aa1666000011a\/gallipoli-mid.jpg","genre":"Drama","title":"Gallipoli","releaseDate":365990400000,"language":"en","type":"Movie","_key":"43237"} +{"label":"Mark Lee","version":20,"id":"70752","lastModified":"1301901822000","name":"Mark Lee","type":"Person","_key":"43238"} +{"label":"Bill Kerr","version":25,"id":"70753","lastModified":"1301902177000","name":"Bill Kerr","type":"Person","_key":"43239"} +{"label":"Gerda Nicolson","version":20,"id":"70754","lastModified":"1301901992000","name":"Gerda Nicolson","type":"Person","_key":"43240"} +{"label":"Harold Hopkins","version":21,"id":"70755","lastModified":"1301901979000","name":"Harold Hopkins","type":"Person","_key":"43241"} +{"label":"Infernal Affairs II","description":"In this prequel to Mou gaan dou (2002), Chan Wing Yan has just become an undercover cop in the triads while Lau Kin Ming joins the police force. Both the triads and the police find an enemy in a rival crime boss.","id":"11647","runtime":119,"imdbId":"tt0369060","version":135,"lastModified":"1301902888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21e\/4bc9359e017a3c57fe01621e\/2-mid.jpg","genre":"Action","title":"Infernal Affairs II","releaseDate":1064966400000,"language":"en","type":"Movie","_key":"43242"} +{"label":"Must Love Dogs","description":"Must Love Dogs tells the story of Sarah Nolan (Diane Lane), a newly divorced woman cautiously rediscovering romance with the enthusiastic but often misguided help of her well-meaning family. As she braves a series of hilarious disastrous mismatches and first dates, Sarah begins to trust her own instincts again and learns that. no matter what, it's never a good idea to give up on love.","id":"11648","runtime":98,"imdbId":"tt0417001","homepage":"http:\/\/www2.warnerbros.com\/mustlovedogs\/","version":186,"lastModified":"1301903504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22b\/4bc9359f017a3c57fe01622b\/must-love-dogs-mid.jpg","genre":"Comedy","title":"Must Love Dogs","releaseDate":1121904000000,"language":"en","type":"Movie","_key":"43243"} +{"label":"Gary David Goldberg","version":25,"id":"70738","lastModified":"1301901539000","name":"Gary David Goldberg","type":"Person","_key":"43244"} +{"label":"Masters of the Universe","description":"The world of Eternia in the aftermath of Skeletor's war on Castle Grayskull, which he has won after seizing Grayskull and the surrounding city using a cosmic key developed by the locksmith Gwildor. The Sorceress is now Skeletor's prisoner and he begins to drain her life-force as he waits for the moon of Eternia to align with the Great Eye of the Universe that will bestow god-like power upon him.","id":"11649","runtime":106,"imdbId":"tt0093507","version":147,"lastModified":"1301902718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a93\/4d8f4fa45e73d65f0e001a93\/masters-of-the-universe-mid.jpg","studio":"Golan-Globus Productions","genre":"Action","title":"Masters of the Universe","releaseDate":555292800000,"language":"en","type":"Movie","_key":"43245"} +{"label":"Robert Duncan McNeill","version":22,"id":"74065","lastModified":"1301902179000","name":"Robert Duncan McNeill","type":"Person","_key":"43246"} +{"label":"Jon Cypher","version":26,"id":"44188","lastModified":"1301901856000","name":"Jon Cypher","type":"Person","_key":"43247"} +{"label":"Christina Pickles","version":22,"id":"94978","lastModified":"1301902381000","name":"Christina Pickles","type":"Person","_key":"43248"} +{"label":"Tony Carroll","version":22,"id":"106866","lastModified":"1301902718000","name":"Tony Carroll","type":"Person","_key":"43249"} +{"label":"Pons Maar","version":19,"id":"106867","lastModified":"1301902707000","name":"Pons Maar","type":"Person","_key":"43250"} +{"label":"Robert Towers","version":22,"id":"106868","lastModified":"1301902046000","name":"Robert Towers","type":"Person","_key":"43251"} +{"label":"Barry Livingston","version":29,"id":"75344","lastModified":"1301901587000","name":"Barry Livingston","type":"Person","_key":"43252"} +{"label":"Gary Goddard","version":23,"id":"70737","lastModified":"1301901510000","name":"Gary Goddard","type":"Person","_key":"43253"} +{"label":"Five Fingers","description":"Martijn, an idealistic Dutch pianist, travels to Morocco to help start a food program for malnourished children. Within moments of his arrival, however, Martijn is abducted by a group of terrorists, injected with a debilitating drug, and imprisoned. Under threat of death, the young man engages in a mental chess match with Ahmat, trying to learn his captor's true objective and avoid a horrible fate","id":"11650","runtime":87,"imdbId":"tt0428541","version":322,"lastModified":"1301903974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24a\/4bc935a6017a3c57fe01624a\/five-fingers-mid.jpg","genre":"Drama","title":"Five Fingers","releaseDate":1146441600000,"language":"en","type":"Movie","_key":"43254"} +{"label":"Touriya Haoud","version":20,"id":"70727","lastModified":"1301901723000","name":"Touriya Haoud","type":"Person","_key":"43255"} +{"label":"Laurence Malkin","version":43,"id":"22808","lastModified":"1301901911000","name":"Laurence Malkin","type":"Person","_key":"43256"} +{"label":"Hui Buh, das Schlossgespenst","description":"No overview found.","id":"11651","runtime":103,"imdbId":"tt0428646","version":48,"lastModified":"1301907263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/253\/4bc935a7017a3c57fe016253\/hui-buh-das-schlogespenst-mid.jpg","genre":"Comedy","title":"Hui Buh, das Schlossgespenst","releaseDate":1153353600000,"language":"en","type":"Movie","_key":"43257"} +{"label":"Invincible","description":"Inspired by the true story of Vince Papale (Mark Wahlberg), a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach (Greg Kinnear) of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time -- no one good enough to play professional football was going to be found this way.","id":"11652","runtime":105,"imdbId":"tt0445990","trailer":"http:\/\/www.youtube.com\/watch?v=Aux_hRJYED8","version":181,"lastModified":"1301903339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/264\/4bc935a8017a3c57fe016264\/invincible-mid.jpg","genre":"Drama","title":"Invincible","releaseDate":1156464000000,"language":"en","tagline":"Dreams are not lived on the sidelines","type":"Movie","_key":"43258"} +{"label":"Ericson Core","version":41,"id":"21673","lastModified":"1301903110000","name":"Ericson Core","type":"Person","_key":"43259"} +{"label":"The Myth","description":"When a fellow scientist asks for Jack's help in locating the mausoleum of China's first emperor, the past collides violently with the present as Jack discovers his amazing visions are based in fact.","id":"11653","runtime":118,"imdbId":"tt0365847","trailer":"http:\/\/www.youtube.com\/watch?v=tcK1vl36dUs","version":188,"lastModified":"1301901998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4bc935aa017a3c57fe016271\/san-wa-mid.jpg","genre":"Drama","title":"The Myth","releaseDate":1126742400000,"language":"en","type":"Movie","_key":"43260"} +{"label":"Hee-seon Kim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/587\/4d6a5a5e7b9aa13636002587\/hee-seon-kim-profile.jpg","version":26,"id":"70688","lastModified":"1301901947000","name":"Hee-seon Kim","type":"Person","_key":"43261"} +{"label":"Mallika Sherawat","version":28,"id":"70689","lastModified":"1301901782000","name":"Mallika Sherawat","type":"Person","_key":"43262"} +{"label":"Ken Lo","version":40,"id":"70690","lastModified":"1301901805000","name":"Ken Lo","type":"Person","_key":"43263"} +{"label":"The Hunger","description":"Miriam and John are an elegant couple with a dark secret: they are vampires. Feeding on human blood, Miriam has lived for over 2000 years. She gave her lover the gift of eternal life and together they hunt. But John begins aging rapidly, he seeks the help of Dr. Sarah Roberts. Miriam is immediately drawn to Sarah, desiring her as her next immortal companion...","id":"11654","runtime":97,"imdbId":"tt0085701","trailer":"http:\/\/www.youtube.com\/watch?v=6850CjhIzrY","version":190,"lastModified":"1301903394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/287\/4bc935ae017a3c57fe016287\/the-hunger-mid.jpg","genre":"Drama","title":"The Hunger","releaseDate":420422400000,"language":"en","type":"Movie","_key":"43264"} +{"label":"Beth Ehlers","version":20,"id":"70377","lastModified":"1301902254000","name":"Beth Ehlers","type":"Person","_key":"43265"} +{"label":"Cronos","description":"Faced with his own mortality, an ingenious alchemist tried to perfect an invention that would provide him with the key to eternal life. It was called the Cronos device. When he died more than 400 years later, he took the secrets of this remarkable device to the grave with him. Now, an elderly antiques dealer has found the hellish machine hidden in a statue and learns about its incredible powers. The more he uses the device, the younger he becomes...but nothing comes without a price. Life after d","id":"11655","runtime":94,"imdbId":"tt0104029","version":334,"lastModified":"1301902934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4d1dcca55e73d66b2d000542\/cronos-mid.jpg","studio":"CNCAIMC","genre":"Drama","title":"Cronos","releaseDate":747792000000,"language":"en","type":"Movie","_key":"43266"} +{"label":"Margarita Isabel","version":21,"id":"70364","lastModified":"1301901535000","name":"Margarita Isabel","type":"Person","_key":"43267"} +{"label":"Tamara Shanath","version":21,"id":"70365","lastModified":"1301901723000","name":"Tamara Shanath","type":"Person","_key":"43268"} +{"label":"The Virgin Spring","description":"Set in beautiful 14th century Sweden, it is the somber, powerful fable of peasant parents whose daughter, a young virgin, is brutally raped and murdered by goat herders. By a bizarre twist of fate, the murderers ask for food and shelter from the dead girl's parents, who, discovering the truth about their erstwhile lodgers, exact a chilling revenge.","id":"11656","runtime":89,"imdbId":"tt0053976","version":131,"lastModified":"1301903583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4bc935b0017a3c57fe0162a6\/jungfrukallan-mid.jpg","genre":"Crime","title":"The Virgin Spring","releaseDate":-312336000000,"language":"en","type":"Movie","_key":"43269"} +{"label":"Birgitta Valberg","version":20,"id":"70359","lastModified":"1301902080000","name":"Birgitta Valberg","type":"Person","_key":"43270"} +{"label":"Birgitta Pettersson","version":20,"id":"70361","lastModified":"1301902080000","name":"Birgitta Pettersson","type":"Person","_key":"43271"} +{"label":"The Red Circle","description":"Master thief Corey is fresh out of prison. But instead of toeing the line of law-abiding freedom, he finds his steps leading back to the shadowy world of crime, crossing those of a notorious escapee and alcoholic ex-cop. As the unlikely trio plots a heist against impossible odds, their trail is pursued by a relentless inspector, and fate seals their destinies.","id":"11657","runtime":140,"imdbId":"tt0065531","version":83,"lastModified":"1301902030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2af\/4bc935b0017a3c57fe0162af\/le-cercle-rouge-mid.jpg","studio":"Euro International Film","genre":"Crime","title":"The Red Circle","releaseDate":25228800000,"language":"en","type":"Movie","_key":"43272"} +{"label":"Andr\u00e9 Ekyan","version":22,"id":"70349","lastModified":"1301902365000","name":"Andr\u00e9 Ekyan","type":"Person","_key":"43273"} +{"label":"Tae Guk Gi: The Brotherhood of War","description":"A drama about the fate of brothers forced to fight in the Korean War.","id":"11658","runtime":140,"imdbId":"tt0386064","version":83,"lastModified":"1301901787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c0\/4bc935b1017a3c57fe0162c0\/taegukgi-hwinalrimyeo-mid.jpg","genre":"History","title":"Tae Guk Gi: The Brotherhood of War","releaseDate":1075766400000,"language":"en","type":"Movie","_key":"43274"} +{"label":"Bin Won","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f05\/4d0d85615e73d6371c000f05\/bin-won-profile.jpg","version":35,"id":"70336","lastModified":"1301901145000","name":"Bin Won","type":"Person","_key":"43275"} +{"label":"Eun-ju Lee","version":24,"id":"70337","lastModified":"1301901651000","name":"Eun-ju Lee","type":"Person","_key":"43276"} +{"label":"Hyeong-jin Kong","version":26,"id":"70338","lastModified":"1301901786000","name":"Hyeong-jin Kong","type":"Person","_key":"43277"} +{"label":"Yeong-ran Lee","version":21,"id":"70340","lastModified":"1301902363000","name":"Yeong-ran Lee","type":"Person","_key":"43278"} +{"label":"The Best of Youth","description":"Spanning four decades, from the chaotic 1960s to the present, director Marco Tullio Giordana's passionate epic 'La Meglio Gioventu' follows two Italian brothers through some of the most tumultuous events of recent Italian history.","id":"11659","runtime":383,"imdbId":"tt0346336","trailer":"http:\/\/www.youtube.com\/watch?v=Sku1qEqzmNc","version":91,"lastModified":"1301942669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4bc935b5017a3c57fe0162ce\/la-meglio-gioventu-mid.jpg","genre":"Drama","title":"The Best of Youth","releaseDate":1053302400000,"language":"en","type":"Movie","_key":"43279"} +{"label":"Sonia Bergamasco","version":30,"id":"70234","lastModified":"1301902220000","name":"Sonia Bergamasco","type":"Person","_key":"43280"} +{"label":"Marco Tullio Giordana","version":25,"id":"70235","lastModified":"1301901715000","name":"Marco Tullio Giordana","type":"Person","_key":"43281"} +{"label":"Following","description":"A struggling, unemployed young writer takes to following strangers around the streets of London, ostensibly to find inspiration for his new novel.","id":"11660","runtime":69,"imdbId":"tt0154506","trailer":"http:\/\/www.youtube.com\/watch?v=5q8bBAKNSA8","version":153,"lastModified":"1301903505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/227\/4cefe4d07b9aa13b9f000227\/following-mid.jpg","studio":"Syncopy Films","genre":"Crime","title":"Following","releaseDate":905558400000,"language":"en","type":"Movie","_key":"43282"} +{"label":"Alex Haw","version":22,"id":"70224","lastModified":"1301901723000","name":"Alex Haw","type":"Person","_key":"43283"} +{"label":"John Nolan","version":22,"id":"70225","lastModified":"1301902254000","name":"John Nolan","type":"Person","_key":"43284"} +{"label":"Dick Bradsell","version":22,"id":"70226","lastModified":"1301901873000","name":"Dick Bradsell","type":"Person","_key":"43285"} +{"label":"Gillian El-Kadi","version":22,"id":"70227","lastModified":"1301901873000","name":"Gillian El-Kadi","type":"Person","_key":"43286"} +{"label":"Jennifer Angel","version":22,"id":"70228","lastModified":"1301901873000","name":"Jennifer Angel","type":"Person","_key":"43287"} +{"label":"Jeremy Theobald","version":26,"id":"70230","lastModified":"1301902254000","name":"Jeremy Theobald","type":"Person","_key":"43288"} +{"label":"Joyeux No\u00ebl","description":"In 1914, World War I, the bloodiest war ever at that time in human history, was well under way. However on Christmas Eve, numerous sections of the Western Front called an informal, and unauthorized, truce where the various front-line soldiers of the conflict peacefully met each other in No Man's Land to share a precious pause in the carnage with a fleeting brotherhood.","id":"11661","runtime":116,"imdbId":"tt0424205","version":90,"lastModified":"1301904806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e9\/4bc935b7017a3c57fe0162e9\/joyeux-noel-mid.jpg","studio":"Nord-Ouest Productions","genre":"Drama","title":"Joyeux No\u00ebl","releaseDate":1131667200000,"language":"en","type":"Movie","_key":"43289"} +{"label":"Christian Carion","version":30,"id":"70221","lastModified":"1301901775000","name":"Christian Carion","type":"Person","_key":"43290"} +{"label":"Casshern","description":"Live-action sci-fi movie based on a 1973 Japanese anim\u00e9 of the same name.","id":"11662","runtime":141,"imdbId":"tt0405821","trailer":"http:\/\/www.youtube.com\/watch?v=951","homepage":"http:\/\/www.casshern.com\/","version":151,"lastModified":"1301903815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/595\/4d1abc7e5e73d6084200b595\/casshern-mid.jpg","genre":"Action","title":"Casshern","releaseDate":1082764800000,"language":"en","tagline":"When a hero falls a legend will rise","type":"Movie","_key":"43291"} +{"label":"Kanako Higuchi","version":29,"id":"70210","lastModified":"1301901509000","name":"Kanako Higuchi","type":"Person","_key":"43292"} +{"label":"Hiroyuki Miyasako","version":31,"id":"70211","lastModified":"1301901939000","name":"Hiroyuki Miyasako","type":"Person","_key":"43293"} +{"label":"Kazuaki Kiriya","version":40,"id":"70212","lastModified":"1301901462000","name":"Kazuaki Kiriya","type":"Person","_key":"43294"} +{"label":"The Commitments","description":"Jimmy Rabbitte, just a tick out of school, gets a brilliant idea: to put a soul band together in Barrytown, his slum home in north Dublin. First he needs musicians and singers: things slowly start to click when he finds three fine-voiced females virtually in his back yard, a lead singer (Deco) at a wedding, and, responding to his ad, an aging trumpet player, Joey \"The Lips\" Fagan.","id":"11663","runtime":118,"imdbId":"tt0101605","version":139,"lastModified":"1301903815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c33\/4d4b31b15e73d617b3000c33\/the-commitments-mid.jpg","genre":"Drama","title":"The Commitments","releaseDate":682128000000,"language":"en","type":"Movie","_key":"43295"} +{"label":"Robert Arkins","version":19,"id":"70147","lastModified":"1301901723000","name":"Robert Arkins","type":"Person","_key":"43296"} +{"label":"Michael Aherne","version":19,"id":"70148","lastModified":"1301902080000","name":"Michael Aherne","type":"Person","_key":"43297"} +{"label":"Die Bademeister \u2013 Weiber, saufen, Leben retten","description":"No overview found.","id":"11664","runtime":90,"imdbId":"tt0202806","version":40,"lastModified":"1301905704000","genre":"Comedy","title":"Die Bademeister \u2013 Weiber, saufen, Leben retten","releaseDate":929664000000,"language":"en","type":"Movie","_key":"43298"} +{"label":"Patricia Thielemann","version":20,"id":"70150","lastModified":"1301902382000","name":"Patricia Thielemann","type":"Person","_key":"43299"} +{"label":"Get Smart","description":"When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?","id":"11665","runtime":110,"imdbId":"tt0425061","trailer":"http:\/\/www.youtube.com\/watch?v=guUYvXf_KvA","homepage":"http:\/\/getsmartmovie.warnerbros.com\/","version":371,"lastModified":"1301901443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc935cd017a3c57fe016377\/get-smart-mid.jpg","studio":"Warner Bros Pictures","genre":"Action","title":"Get Smart","releaseDate":1213833600000,"language":"en","tagline":"Saving The World...And Loving It!","type":"Movie","_key":"43300"} +{"label":"David S. Lee","version":30,"id":"71078","lastModified":"1301902202000","name":"David S. Lee","type":"Person","_key":"43301"} +{"label":"Life Love Death","description":"Fran\u00e7ois Toledo, married businessman and father, falls head-over-heels in love with Janine, a work colleague. However, he is soon found out: after three dates, he strangles some prostitutes, when, the victim of blackmail, he becomes dishonored. He is taken to court, and sentenced to be killed by a guillotine.","id":"11666","runtime":115,"imdbId":"tt0065179","version":85,"lastModified":"1301904015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61e\/4d962bf67b9aa1199400361e\/la-vie-l-amour-la-mort-mid.jpg","genre":"Drama","title":"Life Love Death","releaseDate":-29116800000,"language":"en","type":"Movie","_key":"43302"} +{"label":"Janine Magnan","version":24,"id":"70159","lastModified":"1301901951000","name":"Janine Magnan","type":"Person","_key":"43303"} +{"label":"Lisette Bersy","version":21,"id":"70160","lastModified":"1301902176000","name":"Lisette Bersy","type":"Person","_key":"43304"} +{"label":"Pierre Zimmer","version":21,"id":"70161","lastModified":"1301902176000","name":"Pierre Zimmer","type":"Person","_key":"43305"} +{"label":"Street Fighter","description":"Colonel Guile, the Allied Nations commando leads an elite team of street fighters against the forces of the mad General M. Bison. Bison who has hatched an evil plan for world domination, takes dozens of relief workers hostage and gives the world only 72 hours to respond to his twisted demands. Guile must find the captives and confront Bison in an electrifying battle for the fate of the free world.","id":"11667","runtime":102,"imdbId":"tt0111301","trailer":"http:\/\/www.youtube.com\/watch?v=TK0ApydEvB0","version":159,"lastModified":"1301902535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c5\/4c6015507b9aa172dc0001c5\/street-fighter-mid.jpg","genre":"Action","title":"Street Fighter","releaseDate":788140800000,"language":"en","type":"Movie","_key":"43306"} +{"label":"Steven E. de Souza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/49d\/4bf7d02c017a3c772a00049d\/steven-e-de-souza-profile.jpg","version":66,"id":"1726","lastModified":"1300031271000","name":"Steven E. de Souza","type":"Person","_key":"43307"} +{"label":"Tir group\u00e9","description":"No overview found.","id":"11668","runtime":88,"imdbId":"tt0084797","version":62,"lastModified":"1301904264000","genre":"Drama","title":"Tir group\u00e9","releaseDate":401500800000,"language":"en","type":"Movie","_key":"43308"} +{"label":"Jean-Claude Missiaen","version":21,"id":"70163","lastModified":"1301902357000","name":"Jean-Claude Missiaen","type":"Person","_key":"43309"} +{"label":"Steve Kalfa","version":20,"id":"70166","lastModified":"1301902190000","name":"Steve Kalfa","type":"Person","_key":"43310"} +{"label":"Pierre Londiche","version":20,"id":"70167","lastModified":"1301902176000","name":"Pierre Londiche","type":"Person","_key":"43311"} +{"label":"Jean-Roger Milo","version":26,"id":"70168","lastModified":"1301902194000","name":"Jean-Roger Milo","type":"Person","_key":"43312"} +{"label":"Cathy Bodet","version":20,"id":"70170","lastModified":"1301902147000","name":"Cathy Bodet","type":"Person","_key":"43313"} +{"label":"Le d\u00e9mon dans l'\u00eele","description":"No overview found.","id":"11669","runtime":102,"imdbId":"tt0083863","version":39,"lastModified":"1301904715000","genre":"Horror","title":"Le d\u00e9mon dans l'\u00eele","releaseDate":417830400000,"language":"en","type":"Movie","_key":"43314"} +{"label":"Francis Leroi","version":25,"id":"70171","lastModified":"1301901990000","name":"Francis Leroi","type":"Person","_key":"43315"} +{"label":"L'emmerdeur","description":"No overview found.","id":"11670","runtime":85,"imdbId":"tt0072934","version":66,"lastModified":"1301906065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f11\/4d9497d27b9aa11997001f11\/l-emmerdeur-mid.jpg","genre":"Comedy","title":"L'emmerdeur","releaseDate":117331200000,"language":"en","type":"Movie","_key":"43316"} +{"label":"Jean-Pierre Darras","version":20,"id":"70173","lastModified":"1301901611000","name":"Jean-Pierre Darras","type":"Person","_key":"43317"} +{"label":"Angela Cardile","version":20,"id":"70174","lastModified":"1301902080000","name":"Angela Cardile","type":"Person","_key":"43318"} +{"label":"Elegy","description":"Cultural critic David Kepesh finds his life -- which he indicates is a state of \"emancipated manhood\" -- thrown into tragic disarray by Consuela Castillo, a well-mannered student who awakens a sense of sexual possessiveness in her teacher.","id":"11671","runtime":108,"imdbId":"tt0974554","trailer":"http:\/\/www.youtube.com\/watch?v=605","version":242,"lastModified":"1301902497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/395\/4bc935d2017a3c57fe016395\/elegy-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"Elegy","releaseDate":1202601600000,"language":"en","type":"Movie","_key":"43319"} +{"label":"Chelah Horsdal","version":29,"id":"70175","lastModified":"1301901426000","name":"Chelah Horsdal","type":"Person","_key":"43320"} +{"label":"Shaker Paleja","version":22,"id":"70176","lastModified":"1301901680000","name":"Shaker Paleja","type":"Person","_key":"43321"} +{"label":"Charlie Rose","version":22,"id":"70177","lastModified":"1301901814000","name":"Charlie Rose","type":"Person","_key":"43322"} +{"label":"Kris Pope","version":21,"id":"70178","lastModified":"1301901485000","name":"Kris Pope","type":"Person","_key":"43323"} +{"label":"Une fille et des fusils","description":"Four young people, tired of working life, decide that they can earn money from crime than they can from work. The film follows their training at the first \"crime school\", as well as their work.","id":"11672","runtime":93,"imdbId":"tt0058702","version":41,"lastModified":"1301904984000","studio":"Les Films de la Pl\u00e9iade","genre":"Crime","title":"Une fille et des fusils","releaseDate":-140486400000,"language":"en","type":"Movie","_key":"43324"} +{"label":"Pierre Barouh","version":19,"id":"70179","lastModified":"1301901938000","name":"Pierre Barouh","type":"Person","_key":"43325"} +{"label":"Jacques Portet","version":19,"id":"70180","lastModified":"1301902309000","name":"Jacques Portet","type":"Person","_key":"43326"} +{"label":"Cyrano de Bergerac","description":"Embarrassed by his large nose, a romantic poet\/soldier romances his cousin by proxy.","id":"11673","runtime":137,"imdbId":"tt0099334","version":138,"lastModified":"1301906333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39e\/4bc935d3017a3c57fe01639e\/cyrano-de-bergerac-mid.jpg","genre":"Adventure","title":"Cyrano de Bergerac","releaseDate":638582400000,"language":"en","type":"Movie","_key":"43327"} +{"label":"Anne Brochet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f5\/4cda19235e73d676cf0008f5\/anne-brochet-profile.jpg","version":36,"id":"70182","lastModified":"1301901571000","name":"Anne Brochet","type":"Person","_key":"43328"} +{"label":"101 Dalmatians","description":"The Live action adaptation of a Disney Classic. When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.","id":"11674","runtime":103,"imdbId":"tt0115433","version":114,"lastModified":"1301901948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4d2f6fb65e73d667e00001df\/101-dalmatians-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"101 Dalmatians","releaseDate":848275200000,"language":"en","tagline":"So many dogs. So little time.","type":"Movie","_key":"43329"} +{"label":"Halloween H20: 20 Years Later","description":"On Halloween in 1963, Michael Myers murdered his sister, Judith. In 1978, he broke out to kill his other sister, Laurie Strode. He killed all of her friends, but she escaped. A few years later, she faked her death so he couldn't find her. But now, in 1998, Michael has returned and found all the papers he needs to find her. He tracks her down to a private school where she has gone under a new name with her son, John. And now, Laurie must do what she should have done a long time ago and finally de","id":"11675","runtime":83,"imdbId":"tt0120694","version":69,"lastModified":"1301902239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b0\/4bc935d4017a3c57fe0163b0\/halloween-h20-20-years-later-mid.jpg","genre":"Horror","title":"Halloween H20: 20 Years Later","releaseDate":901497600000,"language":"en","tagline":"Blood is thicker than Water.","type":"Movie","_key":"43330"} +{"label":"Branden Williams","version":14,"id":"150109","lastModified":"1301903127000","name":"Branden Williams","type":"Person","_key":"43331"} +{"label":"Beau Billingslea","version":18,"id":"78494","lastModified":"1301901813000","name":"Beau Billingslea","type":"Person","_key":"43332"} +{"label":"Larisa Miller","version":14,"id":"150113","lastModified":"1301903126000","name":"Larisa Miller","type":"Person","_key":"43333"} +{"label":"Emmalee Thompson","version":14,"id":"150114","lastModified":"1301903126000","name":"Emmalee Thompson","type":"Person","_key":"43334"} +{"label":"Nothing to Lose","description":"Nick Beam, an advertising executive who thinks his life is going very well -- until he returns home from work and discovers that his wife is apparently having an affair with his boss. On the edge of a nervous breakdown, Nick drives around the city until small-time carjacker T-Paul jumps into his truck and attempts to rob him.","id":"11676","runtime":98,"imdbId":"tt0119807","trailer":"http:\/\/www.youtube.com\/watch?v=jLTpUoO578U","version":153,"lastModified":"1301902275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/234\/4d4d63025e73d617b7002234\/nothing-to-lose-mid.jpg","genre":"Action","title":"Nothing to Lose","releaseDate":869184000000,"language":"en","tagline":"One has no job. The other has no life. Together, they have everything to gain and...","type":"Movie","_key":"43335"} +{"label":"Stadtgespr\u00e4ch","description":"No overview found.","id":"11677","runtime":93,"imdbId":"tt0114523","version":42,"lastModified":"1301907334000","genre":"Comedy","title":"Stadtgespr\u00e4ch","releaseDate":814665600000,"language":"en","type":"Movie","_key":"43336"} +{"label":"Vertical Limit","description":"Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.","id":"11678","runtime":119,"imdbId":"tt0190865","version":235,"lastModified":"1301958965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4d16aa0e5e73d6083e008635\/vertical-limit-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Vertical Limit","releaseDate":975801600000,"language":"en","tagline":"The Mountain Will Decide.","type":"Movie","_key":"43337"} +{"label":"xXx: State of the Union","description":"Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).","id":"11679","runtime":101,"imdbId":"tt0329774","trailer":"http:\/\/www.youtube.com\/watch?v=8LZmVnBEWA0","version":277,"lastModified":"1301906823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d7\/4bc935da017a3c57fe0163d7\/xxx-state-of-the-union-mid.jpg","genre":"Action","title":"xXx: State of the Union","releaseDate":1114560000000,"language":"en","type":"Movie","_key":"43338"} +{"label":"The Miser","description":"Based on Moli\u00e8re's play. The children of Harpagon, Cl\u00e9ante and his sister Elise, are each in love but they still haven't spoken to their father yet. Harpagon is a miser who wants to choose the right man and the right woman for his children. When Cl\u00e9ante, at last, tries to speak to Harpagon, the old man informs the family that he wants to marry Marianne, the young girl loved by Cl\u00e9ante. Unaware of his son's sorrow, Harpagon doesn't understand why Cl\u00e9ante has become so angry with him.","id":"11680","runtime":125,"imdbId":"tt0078813","version":99,"lastModified":"1301902542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e8\/4d1123207b9aa1148e0004e8\/l-avare-mid.jpg","genre":"Comedy","title":"The Miser","releaseDate":321062400000,"language":"en","type":"Movie","_key":"43339"} +{"label":"Herv\u00e9 Bellon","version":25,"id":"70193","lastModified":"1301902367000","name":"Herv\u00e9 Bellon","type":"Person","_key":"43340"} +{"label":"Georges Audoubert","version":25,"id":"70194","lastModified":"1301901580000","name":"Georges Audoubert","type":"Person","_key":"43341"} +{"label":"Porgi L'Altra Guancia","description":"No overview found.","id":"11681","runtime":98,"imdbId":"tt0072012","version":60,"lastModified":"1301903868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e8\/4bc935db017a3c57fe0163e8\/porgi-l-altra-guancia-mid.jpg","genre":"Action","title":"Porgi L'Altra Guancia","releaseDate":156816000000,"language":"en","type":"Movie","_key":"43342"} +{"label":"Mario Pilar","version":23,"id":"70201","lastModified":"1301901846000","name":"Mario Pilar","type":"Person","_key":"43343"} +{"label":"Franco Rossi","version":25,"id":"25317","lastModified":"1301901772000","name":"Franco Rossi","type":"Person","_key":"43344"} +{"label":"Unser Willi ist der Beste","description":"No overview found.","id":"11682","runtime":90,"imdbId":"tt0067909","version":40,"lastModified":"1301904268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ed\/4bc935db017a3c57fe0163ed\/unser-willi-ist-der-beste-mid.jpg","genre":"Comedy","title":"Unser Willi ist der Beste","releaseDate":52704000000,"language":"en","type":"Movie","_key":"43345"} +{"label":"Land of the Dead","description":"The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city. ","id":"11683","runtime":93,"imdbId":"tt0418819","trailer":"http:\/\/www.youtube.com\/watch?v=hh4nCeCg-bk","version":248,"lastModified":"1301902388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4ca7f8f25e73d643eb0002f4\/land-of-the-dead-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"Land of the Dead","releaseDate":1119052800000,"language":"en","tagline":"The dead shall inherit the Earth.","type":"Movie","_key":"43346"} +{"label":"Joanne Boland","version":20,"id":"99181","lastModified":"1301902645000","name":"Joanne Boland","type":"Person","_key":"43347"} +{"label":"Jennifer Baxter","version":24,"id":"99182","lastModified":"1301902914000","name":"Jennifer Baxter","type":"Person","_key":"43348"} +{"label":"Shawn Roberts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4c913c927b9aa1020e00002d\/shawn-roberts-profile.jpg","version":70,"birthday":"449704800000","id":"81097","birthplace":"Stratford, Ontario, Canada","lastModified":"1301904077000","name":"Shawn Roberts","type":"Person","_key":"43349"} +{"label":"Alan Van Sprang","version":26,"id":"99183","lastModified":"1301901930000","name":"Alan Van Sprang","type":"Person","_key":"43350"} +{"label":"Krista Bridges","version":28,"id":"43257","lastModified":"1301901642000","name":"Krista Bridges","type":"Person","_key":"43351"} +{"label":"La cage aux folles II","description":"In a move to make his partner, Renato, jealous, the flamboyant Albin waits in a local cafe - dressed as a woman - hoping to be picked up. But Albin gets more than he bargains for when the fly he catches in his web is actually a spy, who uses him as an unwitting courier of secret microfilm. Now on the run from ruthless agents, Albin and Renato flee to Italy where they attempt to hide out on a farm, with Albin posing as Renato's wife. Can Albin escape the deadly pursuit of these relentless spies ","id":"11684","runtime":101,"imdbId":"tt0080489","version":283,"lastModified":"1301903859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4b\/4d8355147b9aa14454000a4b\/la-cage-aux-folles-ii-mid.jpg","genre":"Comedy","title":"La cage aux folles II","releaseDate":345254400000,"language":"en","type":"Movie","_key":"43352"} +{"label":"Collection of the Dead","description":"No overview found.","id":"11685","version":504,"lastModified":"1301903559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a5\/4ca117c05e73d67b5f0005a5\/collection-of-the-dead-mid.jpg","title":"Collection of the Dead","language":"en","type":"Movie","_key":"43353"} +{"label":"Love and Death","description":"Set in 19th-century Russia, Allen is a cowardly serf drafted into the Napoleonic war, who would rather write poetry and obsess over his beautiful but pretentious cousin. Allen's cowardice serves him well when he hides in a cannon and is shot into a tent of French soldiers, making him a national hero. A hilarious parody of Russian literature, Love and Death is a must-see for fans of Allen's films.","id":"11686","runtime":85,"imdbId":"tt0073312","version":126,"lastModified":"1301908380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/404\/4bc935e0017a3c57fe016404\/love-and-death-mid.jpg","genre":"Comedy","title":"Love and Death","releaseDate":171590400000,"language":"en","type":"Movie","_key":"43354"} +{"label":"Georges Adet","version":19,"id":"70257","lastModified":"1301901535000","name":"Georges Adet","type":"Person","_key":"43355"} +{"label":"Les visiteurs","description":"This outrageous time-travel comedy follows the misadventures of a wacky medieval knight (Jean Reno) and his faithful servant when they are accidentally transported to contemporary times by a senile sorcererMayhem rules as these 12th-century visitors try adapting to the wildly confusing modern world. To avoid being stuck here for good, however, they soon begin an all-out cosmic assault on their former castle -- now a luxury hotel -- in their quest to return to the past","id":"11687","runtime":107,"imdbId":"tt0108500","version":120,"lastModified":"1301902331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc935e2017a3c57fe01641e\/les-visiteurs-mid.jpg","genre":"Comedy","title":"Les visiteurs","releaseDate":728092800000,"language":"en","type":"Movie","_key":"43356"} +{"label":"The Emperor's New Groove","description":"Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.","id":"11688","runtime":75,"imdbId":"tt0120917","trailer":"http:\/\/www.youtube.com\/watch?v=1638","version":175,"lastModified":"1302036959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/427\/4bc935e2017a3c57fe016427\/the-emperor-s-new-groove-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Animation","title":"The Emperor's New Groove","releaseDate":976406400000,"language":"en","tagline":"It's All About.....ME!","type":"Movie","_key":"43357"} +{"label":"Reinhard Brock","version":26,"id":"70242","lastModified":"1302036944000","name":"Reinhard Brock","type":"Person","_key":"43358"} +{"label":"Thomas Amper","version":26,"id":"70245","lastModified":"1302036945000","name":"Thomas Amper","type":"Person","_key":"43359"} +{"label":"I Due Superpiedi Quasi Piatti","description":"An attempted robbery turns to be an unexpected recruitment when two unemployed men mistakenly break into a police office instead of a store.","id":"11689","runtime":110,"imdbId":"tt0074442","version":84,"lastModified":"1301902136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d2\/4c574e165e73d63a6d0001d2\/due-superpiedi-quasi-piatti-i-mid.jpg","genre":"Action","title":"I Due Superpiedi Quasi Piatti","releaseDate":228700800000,"language":"en","type":"Movie","_key":"43360"} +{"label":"Bloodsport","description":"Frank Dux has entered the \"kumite\", an illegal underground martial-arts competition where serious injury and even death are not unknown. Chong Li, a particularly ruthless and vicious fighter is the favorite, but then again Dux has not fought him yet.","id":"11690","runtime":92,"imdbId":"tt0092675","trailer":"http:\/\/www.youtube.com\/watch?v=inI1kPY7irA","version":125,"lastModified":"1301908013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ed\/4ca68f355e73d643ec0000ed\/bloodsport-mid.jpg","studio":"Cannon Films","genre":"Action","title":"Bloodsport","releaseDate":572832000000,"language":"en","tagline":"The true story of an American ninja.","type":"Movie","_key":"43361"} +{"label":"Newt Arnold","version":22,"id":"70250","lastModified":"1301902080000","name":"Newt Arnold","type":"Person","_key":"43362"} +{"label":"Donald Gibb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf4\/4d51b0947b9aa13ab4010cf4\/donald-gibb-profile.jpg","version":29,"id":"70254","lastModified":"1301904129000","name":"Donald Gibb","type":"Person","_key":"43363"} +{"label":"Ken Siu","version":22,"id":"70255","lastModified":"1301902254000","name":"Ken Siu","type":"Person","_key":"43364"} +{"label":"Go Trabi Go","description":"No overview found.","id":"11691","runtime":92,"imdbId":"tt0101960","version":71,"lastModified":"1301907099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c1\/4caa62ef5e73d643ee0006c1\/go-trabi-go-mid.jpg","genre":"Comedy","title":"Go Trabi Go","releaseDate":664070400000,"language":"en","type":"Movie","_key":"43365"} +{"label":"Konstantin Wecker","version":22,"id":"52059","lastModified":"1301902331000","name":"Konstantin Wecker","type":"Person","_key":"43366"} +{"label":"The Adventures of Pluto Nash","description":"The year is 2087, the setting is the moon. Eddie Murphy stars as Pluto Nash, the high-flying successful owner of the hottest nightclub in town, or rather the universe! Unfortunately, Pluto finds himself in trouble when he refuses to sell his club to lunar gangster Mogan, who just happens to be helping the mysterious Rex Crater mastermind a plan to take over the entire moon. But Pluto isn't ready to kiss his assets goodbye. With the help of his robo-bodyguard Bruno, beautiful aspiring singer Dina","id":"11692","runtime":95,"imdbId":"tt0180052","version":225,"lastModified":"1301902853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44b\/4bc935e7017a3c57fe01644b\/the-adventures-of-pluto-nash-mid.jpg","genre":"Action","title":"The Adventures of Pluto Nash","releaseDate":1029456000000,"language":"en","type":"Movie","_key":"43367"} +{"label":"Big Man Japan","description":"In this hilarious mockumentary, middle-aged Daisato (Hitoshi Matsumoto) -- a second-rate, third-generation superhero -- annoys his neighbors with the noise and destruction he causes on the job. But a heroic public image is the least of his concerns. Besides defending Japan from bizarre monsters, he must deal with an agent seeking to brand him with ads, a superhero grandfather with Alzheimer's and a family embarrassed by his incompetence.","id":"11693","runtime":113,"imdbId":"tt0997147","version":125,"lastModified":"1301903855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/454\/4bc935e7017a3c57fe016454\/dai-nipponjin-mid.jpg","genre":"Action","title":"Big Man Japan","releaseDate":1179532800000,"language":"en","type":"Movie","_key":"43368"} +{"label":"Hitoshi Matsumoto","version":21,"id":"71080","lastModified":"1301902363000","name":"Hitoshi Matsumoto","type":"Person","_key":"43369"} +{"label":"Cat Ballou","description":"A woman seeking revenge for her murdered father hires a famous gunman, but he's very different from what she expects.","id":"11694","runtime":97,"imdbId":"tt0059017","version":155,"lastModified":"1301903558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4bc935e9017a3c57fe016465\/cat-ballou-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Cat Ballou","releaseDate":-142732800000,"language":"en","type":"Movie","_key":"43370"} +{"label":"Dwayne Hickman","version":23,"id":"70260","lastModified":"1301901664000","name":"Dwayne Hickman","type":"Person","_key":"43371"} +{"label":"Nat 'King' Cole","version":20,"id":"70261","lastModified":"1301901611000","name":"Nat 'King' Cole","type":"Person","_key":"43372"} +{"label":"Elliot Silverstein","version":24,"id":"70262","lastModified":"1301901779000","name":"Elliot Silverstein","type":"Person","_key":"43373"} +{"label":"Les grandes vacances","description":"Monsieur Bosquier, the owner of a private school, is far from pleased when his eldest son, Philippe, fails his end of year exams. He decides to send his wayward offspring to England to improve his English. In exchange, Philippe\u2019s host, a wealthy whisky distiller, Mac Farrel, will send his daughter, Shirley, to live with the Bosquiers in France. However, Philippe has already decided to spend the summer holidays on a yacht with his friends, so he sends a fellow student, Michonnet, to England in","id":"11696","runtime":84,"imdbId":"tt0060475","version":82,"lastModified":"1301902205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c5\/4c1f51225e73d60ce20000c5\/les-grandes-vacances-mid.jpg","genre":"Comedy","title":"Les grandes vacances","releaseDate":-85708800000,"language":"en","type":"Movie","_key":"43374"} +{"label":"Fran\u00e7ois Leccia","version":20,"id":"70269","lastModified":"1301901818000","name":"Fran\u00e7ois Leccia","type":"Person","_key":"43375"} +{"label":"The Man Who Shot Liberty Valance","description":"Coming home for a friend funeral, a senator tells his story.","id":"11697","runtime":123,"imdbId":"tt0056217","trailer":"http:\/\/www.youtube.com\/watch?v=EVXuo2WiU_I","version":179,"lastModified":"1301903199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46e\/4bc935e9017a3c57fe01646e\/the-man-who-shot-liberty-valance-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Man Who Shot Liberty Valance","releaseDate":-242870400000,"language":"en","tagline":"Together For The First Time - James Stewart - John Wayne - in the masterpiece of four-time Academy Award winner John Ford","type":"Movie","_key":"43376"} +{"label":"Stroszek","description":"Bruno Stroszek is released from prison and warned to stop drinking. He has few skills and fewer expectations: with a glockenspiel and an accordion, he ekes out a living as a street musician. He befriends Eva, a prostitute down on her luck and they join his neighbor, Scheitz, an elderly eccentric, when he leaves Germany to live in Wisconsin.","id":"11698","runtime":115,"imdbId":"tt0075276","version":107,"lastModified":"1301902419000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40b\/4c2902eb5e73d61a9400040b\/stroszek-mid.jpg","genre":"Drama","title":"Stroszek","releaseDate":232934400000,"language":"en","type":"Movie","_key":"43377"} +{"label":"Bruno S.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e6\/4cfd7a427b9aa15c970032e6\/bruno-s-profile.jpg","version":25,"id":"70273","lastModified":"1301901400000","name":"Bruno S.","type":"Person","_key":"43378"} +{"label":"The Bad Lieutenant: Port of Call New Orleans","description":"Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.","id":"11699","runtime":121,"imdbId":"tt1095217","trailer":"http:\/\/www.youtube.com\/watch?v=9OblPKObX6Q","version":245,"lastModified":"1301905845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/286\/4d45e4a85e73d65ee4000286\/the-bad-lieutenant-port-of-call-new-orleans-mid.jpg","studio":"Edward R. Pressman Film Corporation","genre":"Crime","title":"The Bad Lieutenant: Port of Call New Orleans","releaseDate":1252022400000,"language":"en","type":"Movie","_key":"43379"} +{"label":"Shea Whigham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/44c\/4ce18d9c5e73d60f6e00044c\/shea-whigham-profile.jpg","version":54,"birthday":"-31194000000","id":"74242","birthplace":"Tallahassee, Florida, USA","lastModified":"1301901094000","name":"Shea Whigham","type":"Person","_key":"43380"} +{"label":"Denzel Whitaker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c85\/4c72ab755e73d65f7e000c85\/denzel-whitaker-profile.jpg","version":37,"birthday":"645400800000","id":"77278","birthplace":" Torrance, Kalifornien, USA","lastModified":"1301901238000","name":"Denzel Whitaker","type":"Person","_key":"43381"} +{"label":"Smiles of a Summer Night","description":"Sommarnattens leende (Smiles of a Summer Night) is a 1955 Swedish comedy film directed by Ingmar Bergman. The film's plot \u2013 which involves switching partners on a summer's night \u2013 has been adapted many times, most notably the theatrical musical A Little Night Music by Stephen Sondheim, Hugh Wheeler and Harold Prince, which opened on Broadway in 1973, and in Woody Allen's film A Midsummer Night's Sex Comedy (1982).","id":"11700","runtime":108,"imdbId":"tt0048641","trailer":"http:\/\/www.youtube.com\/watch?v=suMQZRAOivo","version":113,"lastModified":"1301904077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4c145adc7b9aa104b400001d\/sommarnattens-leende-mid.jpg","genre":"Comedy","title":"Smiles of a Summer Night","releaseDate":-442368000000,"language":"en","type":"Movie","_key":"43382"} +{"label":"Eva Dahlbeck","version":24,"id":"70276","lastModified":"1301982550000","name":"Eva Dahlbeck","type":"Person","_key":"43383"} +{"label":"Margit Carlqvist","version":22,"id":"70277","lastModified":"1301901820000","name":"Margit Carlqvist","type":"Person","_key":"43384"} +{"label":"Grilled","description":"Two meat salesmen (Romano, James) will stop at nothing to get a sale.","id":"11701","runtime":83,"imdbId":"tt0409043","version":135,"lastModified":"1301903713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49d\/4bc935f0017a3c57fe01649d\/grilled-mid.jpg","genre":"Comedy","title":"Grilled","releaseDate":1152576000000,"language":"en","type":"Movie","_key":"43385"} +{"label":"Jason Ensler","version":19,"id":"63513","lastModified":"1301902080000","name":"Jason Ensler","type":"Person","_key":"43386"} +{"label":"The Replacement Killers","description":"Failing to kill anymore because of his conscience, a troubled hit-man seeks aid from a forger to help him get papers to China. However, the drug-lord has hired replacements to finish the job and kill the hit-man.","id":"11702","runtime":87,"imdbId":"tt0120008","trailer":"http:\/\/www.youtube.com\/watch?v=wcAdswxe-uA","version":359,"lastModified":"1301902032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e0\/4cdd80557b9aa138020004e0\/the-replacement-killers-mid.jpg","studio":"Brillstein-Grey Entertainment","genre":"Action","title":"The Replacement Killers","releaseDate":884563200000,"language":"en","type":"Movie","_key":"43387"} +{"label":"Kiss of the Spider Woman","description":"No overview found.","id":"11703","runtime":120,"imdbId":"tt0089424","version":141,"lastModified":"1301903560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bc\/4bc935f5017a3c57fe0164bc\/kiss-of-the-spider-woman-mid.jpg","genre":"Drama","title":"Kiss of the Spider Woman","releaseDate":491184000000,"language":"en","type":"Movie","_key":"43388"} +{"label":"The Secret of NIMH","description":"A widowed field mouse must move her family -- including an ailing son -- to escape a farmer's plow. Aided by a crow and a pack of superintelligent, escaped lab rats, the brave mother struggles to transplant her home to firmer ground.","id":"11704","runtime":82,"imdbId":"tt0084649","version":194,"lastModified":"1301902256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f09\/4d50b7415e73d617b7003f09\/the-secret-of-nimh-mid.jpg","studio":"United Artists","genre":"Adventure","title":"The Secret of NIMH","releaseDate":394416000000,"language":"en","tagline":"Right before your eyes and beyond your wildest dreams.","type":"Movie","_key":"43389"} +{"label":"Elizabeth Hartman","version":30,"id":"70286","lastModified":"1301901551000","name":"Elizabeth Hartman","type":"Person","_key":"43390"} +{"label":"Red Road","description":"Jackie works as a CCTV operator. Each day she watches over a small part of the world, protecting the people living their lives under her gaze. One day a man appears on her monitor, a man she thought she would never see again, a man she never wanted to see again. Now she has no choice, she is compelled to confront him.","id":"11705","runtime":108,"imdbId":"tt0471030","trailer":"http:\/\/www.youtube.com\/watch?v=2937","version":225,"lastModified":"1301904069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d3\/4bc935f6017a3c57fe0164d3\/red-road-mid.jpg","studio":"Advanced Party Scheme","genre":"Drama","title":"Red Road","releaseDate":1148083200000,"language":"en","type":"Movie","_key":"43391"} +{"label":"Andrea Arnold","version":26,"id":"71082","lastModified":"1301901794000","name":"Andrea Arnold","type":"Person","_key":"43392"} +{"label":"Kate Dickie","version":20,"id":"71083","lastModified":"1301901992000","name":"Kate Dickie","type":"Person","_key":"43393"} +{"label":"Paul Higgins","version":22,"id":"71084","lastModified":"1301901932000","name":"Paul Higgins","type":"Person","_key":"43394"} +{"label":"War and Peace","description":"Napoleon's tumultuous relations with Russia including his disastrous 1812 invasion serve as the backdrop for the tangled personal lives of two aristocratic families.","id":"11706","runtime":208,"imdbId":"tt0049934","version":205,"lastModified":"1301903218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e0\/4bc935f7017a3c57fe0164e0\/war-and-peace-mid.jpg","genre":"Drama","title":"War and Peace","releaseDate":-421718400000,"language":"en","type":"Movie","_key":"43395"} +{"label":"Tightrope","description":"Wes Block is a detective who's put on the case of a serial killer. His victims are young and pretty women, which he rapes and murders. The murders are getting personal when the killer chooses victims who are acquaintances of Block. Even his daughters are threatened.","id":"11707","runtime":115,"imdbId":"tt0088272","trailer":"http:\/\/www.youtube.com\/watch?v=g-0720qZPA","version":166,"lastModified":"1301903480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e9\/4bc935f7017a3c57fe0164e9\/tightrope-mid.jpg","genre":"Action","title":"Tightrope","releaseDate":461548800000,"language":"en","tagline":"A cop on the edge.","type":"Movie","_key":"43396"} +{"label":"Richard Tuggle","version":32,"id":"66274","lastModified":"1301901725000","name":"Richard Tuggle","type":"Person","_key":"43397"} +{"label":"Chitty Chitty Bang Bang","description":"An eccentric professor invents wacky machinery, but can't seem to make ends meet. When he invents a revolutionary car, a foreign government becomes interested in it, and resorts to skulduggery to get their hands on it.","id":"11708","runtime":144,"imdbId":"tt0062803","trailer":"http:\/\/www.youtube.com\/watch?v=30EdHwL3mTI","version":226,"lastModified":"1301903054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04c\/4cf1a1347b9aa1449600004c\/chitty-chitty-bang-bang-mid.jpg","studio":"Dramatic Features","genre":"Comedy","title":"Chitty Chitty Bang Bang","releaseDate":-32918400000,"language":"en","tagline":"The most fantasmagorical musical entertainment in the history of everything!","type":"Movie","_key":"43398"} +{"label":"Sally Ann Howes","version":27,"id":"70307","lastModified":"1301901949000","name":"Sally Ann Howes","type":"Person","_key":"43399"} +{"label":"Robert Helpmann","version":27,"id":"81463","lastModified":"1301901713000","name":"Robert Helpmann","type":"Person","_key":"43400"} +{"label":"Heather Ripley","version":17,"id":"141799","lastModified":"1301902632000","name":"Heather Ripley","type":"Person","_key":"43401"} +{"label":"Adrian Hall","version":17,"id":"141800","lastModified":"1301902575000","name":"Adrian Hall","type":"Person","_key":"43402"} +{"label":"Ken Hughes","version":39,"id":"70308","lastModified":"1301901444000","name":"Ken Hughes","type":"Person","_key":"43403"} +{"label":"Camille Claudel","description":"No overview found.","id":"11709","runtime":175,"imdbId":"tt0094828","version":103,"lastModified":"1301905821000","genre":"Drama","title":"Camille Claudel","releaseDate":597456000000,"language":"en","type":"Movie","_key":"43404"} +{"label":"Bruno Nuytten","version":31,"id":"34603","lastModified":"1301901796000","name":"Bruno Nuytten","type":"Person","_key":"43405"} +{"label":"The Enigma of Kaspar Hauser","description":"The film follows Kaspar Hauser (Bruno S.), who lived the first seventeen years of his life chained in a tiny cellar with only a toy horse to occupy his time, devoid of all human contact except for a man who wears a black overcoat and top hat who feeds him.","id":"11710","runtime":110,"imdbId":"tt0071691","version":78,"lastModified":"1301903154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4cfd6e3c7b9aa15c970031dd\/kaspar-hauser-jeder-fur-sich-und-gott-gegen-alle-mid.jpg","genre":"Drama","title":"The Enigma of Kaspar Hauser","releaseDate":152496000000,"language":"en","type":"Movie","_key":"43406"} +{"label":"Die Eisbombe","description":"No overview found.","id":"11711","runtime":95,"imdbId":"tt1166098","version":89,"lastModified":"1301903868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06c\/4d2efb2c5e73d63a6000f06c\/die-eisbombe-mid.jpg","studio":"credofilm","genre":"Comedy","title":"Die Eisbombe","releaseDate":1218067200000,"language":"en","type":"Movie","_key":"43407"} +{"label":"Oliver Jahn","version":23,"id":"70318","lastModified":"1301902002000","name":"Oliver Jahn","type":"Person","_key":"43408"} +{"label":"Eike Weinreich","version":20,"id":"70931","lastModified":"1301901938000","name":"Eike Weinreich","type":"Person","_key":"43409"} +{"label":"Heike Jonca","version":20,"id":"59376","lastModified":"1301902132000","name":"Heike Jonca","type":"Person","_key":"43410"} +{"label":"Leon Wessels","version":20,"id":"70933","lastModified":"1301902132000","name":"Leon Wessels","type":"Person","_key":"43411"} +{"label":"Michael Schumacher","version":21,"id":"70934","lastModified":"1301902132000","name":"Michael Schumacher","type":"Person","_key":"43412"} +{"label":"Sanjuro","description":"A crafty samurai helps a young man and his fellow clansmen save his uncle, who has been framed and imprisoned by a corrupt superintendent.","id":"11712","runtime":96,"imdbId":"tt0056443","version":165,"lastModified":"1301903681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/990\/4bfc30ea017a3c702f000990\/sanjuro-mid.jpg","genre":"Eastern","title":"Sanjuro","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"43413"} +{"label":"Keiju Kobayashi","version":23,"id":"70324","lastModified":"1301901853000","name":"Keiju Kobayashi","type":"Person","_key":"43414"} +{"label":"Fist of Fury","description":"Chen Zhen returns to the international compound of China only to learn of his beloved teacher's death. This is compounded by the continual racist harassment by the Japanese population in the area. Unlike his friends, he confronts it head on with his mastery of martial arts while investigating his teacher's murder.","id":"11713","runtime":108,"imdbId":"tt0068767","version":117,"lastModified":"1301901687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4c1e32717b9aa129db000019\/jing-wu-men-mid.jpg","genre":"Action","title":"Fist of Fury","releaseDate":70070400000,"language":"en","type":"Movie","_key":"43415"} +{"label":"Maria Yi","version":35,"id":"70332","lastModified":"1301901460000","name":"Maria Yi","type":"Person","_key":"43416"} +{"label":"Wei Lo","version":77,"id":"70334","lastModified":"1301901575000","name":"Wei Lo","type":"Person","_key":"43417"} +{"label":"666 - Traue keinem, mit dem Du schl\u00e4fst!","description":"No overview found.","id":"11714","runtime":95,"imdbId":"tt0291167","version":49,"lastModified":"1301904997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d24\/4d69427e5e73d66b30000d24\/666-traue-keinem-mit-dem-du-schl-fst-mid.jpg","genre":"Comedy","title":"666 - Traue keinem, mit dem Du schl\u00e4fst!","releaseDate":1014249600000,"language":"en","type":"Movie","_key":"43418"} +{"label":"Wenn der Vater mit dem Sohne","description":"No overview found.","id":"11715","runtime":95,"imdbId":"tt0048802","version":62,"lastModified":"1301904047000","genre":"Comedy","title":"Wenn der Vater mit dem Sohne","releaseDate":-454204800000,"language":"en","type":"Movie","_key":"43419"} +{"label":"Oliver Grimm","version":20,"id":"70341","lastModified":"1301902164000","name":"Oliver Grimm","type":"Person","_key":"43420"} +{"label":"Addams Family","description":"No overview found.","id":"11716","version":483,"lastModified":"1301903904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/521\/4bc935fe017a3c57fe016521\/addams-family-mid.jpg","title":"Addams Family","language":"en","type":"Movie","_key":"43421"} +{"label":"Det parallelle lig","description":"No overview found.","id":"11717","runtime":113,"imdbId":"tt0084470","version":46,"lastModified":"1301904984000","genre":"Crime","title":"Det parallelle lig","releaseDate":384134400000,"language":"en","type":"Movie","_key":"43422"} +{"label":"J\u00f8rgen Kiil","version":20,"id":"70350","lastModified":"1301902324000","name":"J\u00f8rgen Kiil","type":"Person","_key":"43423"} +{"label":"Buster Larsen","version":21,"id":"70351","lastModified":"1301902132000","name":"Buster Larsen","type":"Person","_key":"43424"} +{"label":"Agneta Ekmanner","version":25,"id":"70352","lastModified":"1301902212000","name":"Agneta Ekmanner","type":"Person","_key":"43425"} +{"label":"Masja Dessau","version":19,"id":"70353","lastModified":"1301901938000","name":"Masja Dessau","type":"Person","_key":"43426"} +{"label":"John Hahn-Petersen","version":19,"id":"70354","lastModified":"1301902309000","name":"John Hahn-Petersen","type":"Person","_key":"43427"} +{"label":"Peter Ronild","version":19,"id":"70355","lastModified":"1301902309000","name":"Peter Ronild","type":"Person","_key":"43428"} +{"label":"Mark Quint","version":19,"id":"70829","lastModified":"1301902309000","name":"Mark Quint","type":"Person","_key":"43429"} +{"label":"Hans-Erik Philip","version":20,"id":"70828","lastModified":"1301902296000","name":"Hans-Erik Philip","type":"Person","_key":"43430"} +{"label":"S\u00f8ren Melson","version":19,"id":"70356","lastModified":"1301902309000","name":"S\u00f8ren Melson","type":"Person","_key":"43431"} +{"label":"Who's Harry Crumb?","description":"Harry Crumb is a bumbling and inept private investigator who is hired to solve the kidnapping of a young heiress which he's not expected to solve because his employer is the mastermind behind the kidnapping.","id":"11718","runtime":88,"imdbId":"tt0098645","trailer":"http:\/\/www.youtube.com\/watch?v=UM6-VeQ_KPk","version":163,"lastModified":"1301903533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52a\/4bc935ff017a3c57fe01652a\/who-s-harry-crumb-mid.jpg","genre":"Comedy","title":"Who's Harry Crumb?","releaseDate":602467200000,"language":"en","type":"Movie","_key":"43432"} +{"label":"Un Piede in paradiso","description":"No overview found.","id":"11719","runtime":99,"imdbId":"tt0102667","version":38,"lastModified":"1301906727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/533\/4bc935ff017a3c57fe016533\/un-piede-in-paradiso-mid.jpg","genre":"Comedy","title":"Un Piede in paradiso","releaseDate":741571200000,"language":"en","type":"Movie","_key":"43433"} +{"label":"Peacock","description":"Brings viewers into a small Chinese city and inspires familiarity with the rhythms of everyday existence, with people's dreams, shortcomings and illusions in a way that is universal.","id":"11728","runtime":244,"imdbId":"tt0445506","version":78,"lastModified":"1301904727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/186\/4c46517b7b9aa15de1000186\/kong-que-mid.jpg","genre":"Drama","title":"Peacock","releaseDate":1108684800000,"language":"en","type":"Movie","_key":"43434"} +{"label":"Changwei Gu","version":25,"id":"66169","lastModified":"1301901501000","name":"Changwei Gu","type":"Person","_key":"43435"} +{"label":"Feng Li","version":29,"id":"1334","lastModified":"1299492360000","name":"Feng Li","type":"Person","_key":"43436"} +{"label":"Chen Mo he Meiting","description":"No overview found.","id":"11735","runtime":0,"imdbId":"tt0310870","version":28,"lastModified":"1301905704000","genre":"Drama","title":"Chen Mo he Meiting","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"43437"} +{"label":"Hao Lui","version":20,"id":"71048","lastModified":"1301902331000","name":"Hao Lui","type":"Person","_key":"43438"} +{"label":"Freche M\u00e4dchen","description":"No overview found.","id":"11752","runtime":97,"imdbId":"tt1224151","homepage":"http:\/\/www.frechemaedchen.film.de\/","version":50,"lastModified":"1301904397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/476\/4d2871995e73d626c4002476\/freche-m-dchen-mid.jpg","genre":"Comedy","title":"Freche M\u00e4dchen","releaseDate":1216252800000,"language":"en","type":"Movie","_key":"43439"} +{"label":"Jonathan Beck","version":21,"id":"70838","lastModified":"1301901766000","name":"Jonathan Beck","type":"Person","_key":"43440"} +{"label":"Emilia Sch\u00fcle","version":23,"id":"70839","lastModified":"1301901772000","name":"Emilia Sch\u00fcle","type":"Person","_key":"43441"} +{"label":"Peacock","description":"A man with a split personality fools his small town into believing his two alter egos are man and wife, although a struggling young mother holds the key to his past and sparks a battle between the personalities.","id":"11761","runtime":90,"imdbId":"tt1188113","trailer":"http:\/\/www.youtube.com\/watch?v=b0ry_N-4E9I","homepage":"http:\/\/www.peacockthemovie.com\/","version":352,"lastModified":"1301907687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91b\/4d45b7ba5e73d602b200191b\/peacock-mid.jpg","studio":"Lionsgate","genre":"Thriller","title":"Peacock","releaseDate":1271721600000,"language":"en","type":"Movie","_key":"43442"} +{"label":"Michael Lander","version":19,"id":"71046","lastModified":"1301902254000","name":"Michael Lander","type":"Person","_key":"43443"} +{"label":"Bunty Aur Babli","description":"Bunty and Babli are two avid dreamers. Two free souls born into caged small town realities. They grow weary of being two specks on the horizon. They desire the horizon itself.And so they pack their aspirations in worn out bags, whip a scarf of confidence around their proud necks and set forth. On a journey across the length and breadth of the country, spinning circles around the people they meet.","id":"11763","runtime":162,"imdbId":"tt0448206","version":131,"lastModified":"1301905188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/545\/4bc93602017a3c57fe016545\/bunty-aur-babli-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Bunty Aur Babli","releaseDate":1117152000000,"language":"en","type":"Movie","_key":"43444"} +{"label":"Shaad Ali","version":19,"id":"71088","lastModified":"1301902254000","name":"Shaad Ali","type":"Person","_key":"43445"} +{"label":"Raj Babbar","version":29,"id":"71090","lastModified":"1301901713000","name":"Raj Babbar","type":"Person","_key":"43446"} +{"label":"Tania Zaetta","version":19,"id":"71091","lastModified":"1301902254000","name":"Tania Zaetta","type":"Person","_key":"43447"} +{"label":"The Riddle of the Sands","description":"No overview found.","id":"11765","runtime":103,"imdbId":"tt0079808","version":56,"lastModified":"1301907263000","genre":"Action","title":"The Riddle of the Sands","releaseDate":307670400000,"language":"en","type":"Movie","_key":"43448"} +{"label":"Tony Maylam","version":27,"id":"70415","lastModified":"1301901947000","name":"Tony Maylam","type":"Person","_key":"43449"} +{"label":"J\u00fcrgen Andersen","version":21,"id":"70416","lastModified":"1301902254000","name":"J\u00fcrgen Andersen","type":"Person","_key":"43450"} +{"label":"Michael Sheard","version":24,"id":"70417","lastModified":"1301902301000","name":"Michael Sheard","type":"Person","_key":"43451"} +{"label":"Olga Lowe","version":19,"id":"70418","lastModified":"1301902080000","name":"Olga Lowe","type":"Person","_key":"43452"} +{"label":"Ronald Markham","version":19,"id":"70419","lastModified":"1301902080000","name":"Ronald Markham","type":"Person","_key":"43453"} +{"label":"Obsessive Love","description":"No overview found.","id":"11766","runtime":96,"imdbId":"tt0087827","version":47,"lastModified":"1301903265000","genre":"Drama","title":"Obsessive Love","releaseDate":465523200000,"language":"en","type":"Movie","_key":"43454"} +{"label":"Constance McCashin","version":18,"id":"70421","lastModified":"1301902368000","name":"Constance McCashin","type":"Person","_key":"43455"} +{"label":"Kin Shriner","version":21,"id":"70422","lastModified":"1301902331000","name":"Kin Shriner","type":"Person","_key":"43456"} +{"label":"Jill Jacobson","version":22,"id":"70423","lastModified":"1301902331000","name":"Jill Jacobson","type":"Person","_key":"43457"} +{"label":"Cabo Blanco","description":"Giff Hoyt (Bronson), a cafe owner in Cabo Blanco, Peru after World War II is caught between refuge-seeking Nazis and their enemies. After the murder of a sea explorer is passed off as accidental death by the corrupt local police, Giff becomes suspicious. The police chief (Rey) also intimidates a new arrival Marie (Sanda), and Giff intervenes to help her. Giff suspects Beckdorff (Robards), a Nazi refugee living in the area. Beckdorff, it emerges, is seeking to uncover sunken treasure.","id":"11767","runtime":90,"imdbId":"tt0080485","version":73,"lastModified":"1301903709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ba\/4d8e063d5e73d663620007ba\/caboblanco-mid.jpg","genre":"Adventure","title":"Cabo Blanco","releaseDate":321753600000,"language":"en","type":"Movie","_key":"43458"} +{"label":"Camilla Sparv","version":29,"id":"70424","lastModified":"1301902048000","name":"Camilla Sparv","type":"Person","_key":"43459"} +{"label":"Denny Miller","version":22,"id":"70425","lastModified":"1301902080000","name":"Denny Miller","type":"Person","_key":"43460"} +{"label":"La guerre de l'eau","description":"No overview found.","id":"11768","runtime":90,"imdbId":"tt0186515","version":44,"lastModified":"1301905681000","genre":"Drama","title":"La guerre de l'eau","releaseDate":892857600000,"language":"en","type":"Movie","_key":"43461"} +{"label":"Rosemarie La Vaull\u00e9e","version":20,"id":"70426","lastModified":"1301902363000","name":"Rosemarie La Vaull\u00e9e","type":"Person","_key":"43462"} +{"label":"Farid Chopel","version":20,"id":"70427","lastModified":"1301902309000","name":"Farid Chopel","type":"Person","_key":"43463"} +{"label":"Marc F. Voizard","version":19,"id":"70429","lastModified":"1301901938000","name":"Marc F. Voizard","type":"Person","_key":"43464"} +{"label":"Shaolin Soccer","description":"A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.","id":"11770","runtime":112,"imdbId":"tt0286112","version":134,"lastModified":"1301902633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bc93604017a3c57fe01655c\/siu-lam-juk-kau-mid.jpg","genre":"Action","title":"Shaolin Soccer","releaseDate":994896000000,"language":"en","tagline":"Get ready to kick some grass!","type":"Movie","_key":"43465"} +{"label":"Man Tat Ng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4da\/4cbccf787b9aa138d70014da\/man-tat-ng-profile.jpg","version":40,"id":"70437","lastModified":"1301901379000","name":"Man Tat Ng","type":"Person","_key":"43466"} +{"label":"Yin Tse","version":22,"id":"70439","lastModified":"1301901387000","name":"Yin Tse","type":"Person","_key":"43467"} +{"label":"Wei Zhao","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/365\/4d197a425e73d6083e00a365\/wei-zhao-profile.jpg","biography":"<b>Zhao Wei<\/b> (born March 12, 1976) is a mainland <a href=\"http:\/\/en.wikipedia.org\/wiki\/People%27s_Republic_of_China\" title=\"People's Republic of China\">Chinese<\/a> film <a href=\"http:\/\/en.wikipedia.org\/wiki\/Actress\" title=\"Actress\" class=\"mw-redirect\">actress<\/a> and <a href=\"http:\/\/en.wikipedia.org\/wiki\/Pop_music\" title=\"Pop music\">pop<\/a> singer. Audiences sometimes refer to her by her English name, <b>Vicki Zhao<\/b> (sometimes spelt <b>Vicky Zhao<\/b>)<sup id=\"cite_ref-time_0-0\" class=\"refe","version":67,"id":"77304","lastModified":"1301901120000","name":"Wei Zhao","type":"Person","_key":"43468"} +{"label":"The Girl Next Door","description":"No overview found.","id":"11771","runtime":100,"imdbId":"tt0157697","version":162,"lastModified":"1301905032000","genre":"Comedy","title":"The Girl Next Door","releaseDate":936230400000,"language":"en","type":"Movie","_key":"43469"} +{"label":"Robin Gammell","version":23,"id":"70440","lastModified":"1301902381000","name":"Robin Gammell","type":"Person","_key":"43470"} +{"label":"Janet-Laine Green","version":22,"id":"70441","lastModified":"1301902080000","name":"Janet-Laine Green","type":"Person","_key":"43471"} +{"label":"Amy D. Jacobson","version":19,"id":"70442","lastModified":"1301902254000","name":"Amy D. Jacobson","type":"Person","_key":"43472"} +{"label":"Scott Yaphe","version":19,"id":"70445","lastModified":"1301902254000","name":"Scott Yaphe","type":"Person","_key":"43473"} +{"label":"The Haunting","description":"No overview found.","id":"11772","runtime":112,"imdbId":"tt0057129","trailer":"http:\/\/www.youtube.com\/watch?v=YWU9zRb4RPY","version":159,"lastModified":"1301904183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/561\/4bc93604017a3c57fe016561\/the-haunting-mid.jpg","genre":"Drama","title":"The Haunting","releaseDate":-198460800000,"language":"en","type":"Movie","_key":"43474"} +{"label":"Fay Compton","version":23,"id":"131449","lastModified":"1301902734000","name":"Fay Compton","type":"Person","_key":"43475"} +{"label":"Valentine Dyall","version":22,"id":"47480","lastModified":"1301902390000","name":"Valentine Dyall","type":"Person","_key":"43476"} +{"label":"Diane Clare","version":19,"id":"102661","lastModified":"1301902533000","name":"Diane Clare","type":"Person","_key":"43477"} +{"label":"Ronald Adam","version":27,"id":"104302","lastModified":"1301902736000","name":"Ronald Adam","type":"Person","_key":"43478"} +{"label":"Village of the Damned","description":"In a small English village everyone suddenly falls unconscious. When they awake every woman of child bearing age is pregnant. The resulting children have the same strange blond hair, eyes and a strong connection to each other.","id":"11773","runtime":77,"imdbId":"tt0054443","trailer":"http:\/\/www.youtube.com\/watch?v=3346","version":109,"lastModified":"1301903817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/572\/4bc93606017a3c57fe016572\/village-of-the-damned-mid.jpg","studio":"Metro-Goldwyn-Mayer British Studios","genre":"Drama","title":"Village of the Damned","releaseDate":-299894400000,"language":"en","type":"Movie","_key":"43479"} +{"label":"Barbara Shelley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6bb\/4c5b1c567b9aa151f50006bb\/barbara-shelley-profile.jpg","version":27,"id":"101478","lastModified":"1301902318000","name":"Barbara Shelley","type":"Person","_key":"43480"} +{"label":"Martin Stephens","version":22,"id":"70447","lastModified":"1301902080000","name":"Martin Stephens","type":"Person","_key":"43481"} +{"label":"Richard Warner","version":20,"id":"101513","lastModified":"1301902478000","name":"Richard Warner","type":"Person","_key":"43482"} +{"label":"Jenny Laird","version":19,"id":"101514","lastModified":"1301902920000","name":"Jenny Laird","type":"Person","_key":"43483"} +{"label":"Charlotte Mitchell","version":24,"id":"72707","lastModified":"1301902080000","name":"Charlotte Mitchell","type":"Person","_key":"43484"} +{"label":"Wolf Rilla","version":29,"id":"70448","lastModified":"1301902199000","name":"Wolf Rilla","type":"Person","_key":"43485"} +{"label":"Lemony Snicket's A Series of Unfortunate Events","description":"Three wealthy children's parents are killed in a fire. When they are sent to a distant relative, they find out that he is plotting to kill them and seize their fortune.","id":"11774","runtime":103,"imdbId":"tt0339291","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=NY3D85VUezo&hd=1","version":280,"lastModified":"1301901107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4bc9360b017a3c57fe016588\/lemony-snicket-s-a-series-of-unfortunate-events-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Lemony Snicket's A Series of Unfortunate Events","releaseDate":1103155200000,"language":"en","type":"Movie","_key":"43486"} +{"label":"Emily Browning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bb\/4d3211f65e73d6334d0012bb\/emily-browning-profile.jpg","version":41,"id":"70456","lastModified":"1301904087000","name":"Emily Browning","type":"Person","_key":"43487"} +{"label":"Kara Hoffman","version":15,"id":"146449","lastModified":"1301902735000","name":"Kara Hoffman","type":"Person","_key":"43488"} +{"label":"Shelby Hoffman","version":15,"id":"146450","lastModified":"1301902985000","name":"Shelby Hoffman","type":"Person","_key":"43489"} +{"label":"Intolerable Cruelty","description":"A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.","id":"11775","runtime":100,"imdbId":"tt0138524","trailer":"http:\/\/www.youtube.com\/watch?v=j7LEI2WCeEQ","version":251,"lastModified":"1301902209000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a3\/4cf50e6b5e73d6299d0005a3\/intolerable-cruelty-mid.jpg","genre":"Comedy","title":"Intolerable Cruelty","releaseDate":1062460800000,"language":"en","type":"Movie","_key":"43490"} +{"label":"Die Frau vom Checkpoint Charly","description":"Based on a true story, Miguel Alexandre's two-part drama focuses on a East German woman and the fight for her children. Spring 1982: Sara Bender, living with her daughters Silvia and Sabine in the East German town of Erfurt, wants to marry her colleague Peter, but shortly before the wedding, her father is killed in a road accident. As the funeral takes place in West Germany, she isn't allowed to got there, so she starts planning to leave her communist home country forever. Trying to flee via Rom","id":"11776","runtime":180,"imdbId":"tt0908423","version":61,"lastModified":"1301906118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd6\/4d28f5bd7b9aa134dc002bd6\/die-frau-vom-checkpoint-charly-mid.jpg","genre":"Drama","title":"Die Frau vom Checkpoint Charly","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"43491"} +{"label":"Peter Kremer","version":19,"id":"70457","lastModified":"1301901641000","name":"Peter Kremer","type":"Person","_key":"43492"} +{"label":"Maria Ehrich","version":21,"id":"70459","lastModified":"1301901801000","name":"Maria Ehrich","type":"Person","_key":"43493"} +{"label":"Elisa Schlott","version":19,"id":"70460","lastModified":"1301902132000","name":"Elisa Schlott","type":"Person","_key":"43494"} +{"label":"Winnie B\u00f6we","version":22,"id":"25432","lastModified":"1301901825000","name":"Winnie B\u00f6we","type":"Person","_key":"43495"} +{"label":"Charlotte Schwab","version":19,"id":"45695","lastModified":"1301901772000","name":"Charlotte Schwab","type":"Person","_key":"43496"} +{"label":"Katinka Auberger","version":19,"id":"70461","lastModified":"1301902132000","name":"Katinka Auberger","type":"Person","_key":"43497"} +{"label":"Johannes Gabriel","version":19,"id":"70462","lastModified":"1301902132000","name":"Johannes Gabriel","type":"Person","_key":"43498"} +{"label":"Tim Kauermann","version":17,"id":"70463","lastModified":"1301902132000","name":"Tim Kauermann","type":"Person","_key":"43499"} +{"label":"Martin Hudy","version":19,"id":"70464","lastModified":"1301902132000","name":"Martin Hudy","type":"Person","_key":"43500"} +{"label":"Annette Blum","version":19,"id":"70465","lastModified":"1301902132000","name":"Annette Blum","type":"Person","_key":"43501"} +{"label":"Mats L\u00e5ngbacka","version":20,"id":"70466","lastModified":"1301902141000","name":"Mats L\u00e5ngbacka","type":"Person","_key":"43502"} +{"label":"Christian Sandstr\u00f6m","version":19,"id":"70467","lastModified":"1301902132000","name":"Christian Sandstr\u00f6m","type":"Person","_key":"43503"} +{"label":"Tom Quaas","version":19,"id":"70468","lastModified":"1301902132000","name":"Tom Quaas","type":"Person","_key":"43504"} +{"label":"Jonas Laux","version":19,"id":"70469","lastModified":"1301902132000","name":"Jonas Laux","type":"Person","_key":"43505"} +{"label":"J. Christoffer Slotte","version":19,"id":"70470","lastModified":"1301902132000","name":"J. Christoffer Slotte","type":"Person","_key":"43506"} +{"label":"I.Q.","description":"Albert Einstein helps a young man who's in love with Einstein's niece to catch her attention by pretending temporarily to be a great physicist.","id":"11777","runtime":100,"imdbId":"tt0110099","version":274,"lastModified":"1301903250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc9360c017a3c57fe01659e\/i-q-mid.jpg","genre":"Comedy","title":"I.Q.","releaseDate":788313600000,"language":"en","type":"Movie","_key":"43507"} +{"label":"The Deer Hunter","description":"The Deer Hunter is a 1978 war drama film about a trio of Russian American steel worker friends and their infantry service in the Vietnam War.","id":"11778","runtime":182,"imdbId":"tt0077416","trailer":"http:\/\/www.youtube.com\/watch?v=vw-Tyr6Rb6I","version":355,"lastModified":"1301901713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c0\/4bc93613017a3c57fe0165c0\/the-deer-hunter-mid.jpg","studio":"EMI Films Ltd.","genre":"Drama","title":"The Deer Hunter","releaseDate":281923200000,"language":"en","tagline":"Winner of 5 Academy Awards including Best Picture 1978","type":"Movie","_key":"43508"} +{"label":"Chuck Aspegren","version":23,"id":"123056","lastModified":"1301903069000","name":"Chuck Aspegren","type":"Person","_key":"43509"} +{"label":"Rutanya Alda","version":32,"id":"80135","lastModified":"1301901839000","name":"Rutanya Alda","type":"Person","_key":"43510"} +{"label":"Pierre Segui","version":18,"id":"133859","lastModified":"1301902743000","name":"Pierre Segui","type":"Person","_key":"43511"} +{"label":"Mady Kaplan","version":18,"id":"133860","lastModified":"1301902864000","name":"Mady Kaplan","type":"Person","_key":"43512"} +{"label":"Amy Wright","version":31,"id":"87007","lastModified":"1301902317000","name":"Amy Wright","type":"Person","_key":"43513"} +{"label":"Mary Ann Haenel","version":18,"id":"133861","lastModified":"1301902843000","name":"Mary Ann Haenel","type":"Person","_key":"43514"} +{"label":"Richard Kuss","version":18,"id":"133862","lastModified":"1301902866000","name":"Richard Kuss","type":"Person","_key":"43515"} +{"label":"Buena Vista Social Club","description":"In this fascinating Oscar-nominated documentary, American guitarist Ry Cooder brings together a group of legendary Cuban folk musicians (some in their 90s) to record a Grammy-winning CD in their native city of Havana. The result is a spectacular compilation of concert footage from the group's gigs in Amsterdam and New York City's famed Carnegie Hall, with director Wim Wenders capturing not only the music -- but also the musicians' life stories.","id":"11779","runtime":105,"imdbId":"tt0186508","version":201,"lastModified":"1301904511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bf82fe8017a3c4901000026\/buena-vista-social-club-mid.jpg","genre":"Documentary","title":"Buena Vista Social Club","releaseDate":919209600000,"language":"en","type":"Movie","_key":"43516"} +{"label":"Ry Cooder","version":42,"id":"6918","lastModified":"1301901330000","name":"Ry Cooder","type":"Person","_key":"43517"} +{"label":"Juan de Marcos Gonz\u00e1lez","version":21,"id":"70473","lastModified":"1301902200000","name":"Juan de Marcos Gonz\u00e1lez","type":"Person","_key":"43518"} +{"label":"Joachim Cooder","version":20,"id":"70474","lastModified":"1301901948000","name":"Joachim Cooder","type":"Person","_key":"43519"} +{"label":"L\u00e1zaro Villa","version":18,"id":"70475","lastModified":"1301902144000","name":"L\u00e1zaro Villa","type":"Person","_key":"43520"} +{"label":"Rob Roy","description":"In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.","id":"11780","runtime":133,"imdbId":"tt0114287","trailer":"http:\/\/www.youtube.com\/watch?v=w0-2kzujLA8","version":180,"lastModified":"1301902577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f4\/4bc9361b017a3c57fe0165f4\/rob-roy-mid.jpg","studio":"United Artists","genre":"Action","title":"Rob Roy","releaseDate":797212800000,"language":"en","type":"Movie","_key":"43521"} +{"label":"Cherche famille d\u00e9sesp\u00e9r\u00e9ment","description":"No overview found.","id":"11781","runtime":90,"imdbId":"tt0190300","version":40,"lastModified":"1301904998000","genre":"Drama","title":"Cherche famille d\u00e9sesp\u00e9r\u00e9ment","releaseDate":759369600000,"language":"en","type":"Movie","_key":"43522"} +{"label":"Alexis Tomassian","version":20,"id":"70481","lastModified":"1301902174000","name":"Alexis Tomassian","type":"Person","_key":"43523"} +{"label":"Christophe Leroy","version":20,"id":"70482","lastModified":"1301902201000","name":"Christophe Leroy","type":"Person","_key":"43524"} +{"label":"Fran\u00e7ois Luciani","version":20,"id":"71102","lastModified":"1301901951000","name":"Fran\u00e7ois Luciani","type":"Person","_key":"43525"} +{"label":"Hard Boiled","description":"John Woo\u2019s Hard Boiled tells the story of jaded detective \u201cTequila\u201d Yuen (played with controlled fury by Chow Yun-fat). Woo\u2019s dizzying odyssey through the world of Hong Kong Triads, undercover agents, and frenzied police raids culminates unforgettably in the breathless hospital sequence.","id":"11782","runtime":126,"imdbId":"tt0104684","version":272,"lastModified":"1301902896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7f\/4d9723ef5e73d62251004c7f\/lat-sau-san-taam-mid.jpg","genre":"Action","title":"Hard Boiled","releaseDate":703382400000,"language":"en","type":"Movie","_key":"43526"} +{"label":"Teresa Mo","version":24,"id":"70590","lastModified":"1301901619000","name":"Teresa Mo","type":"Person","_key":"43527"} +{"label":"Les Compagnons d'Eleusis","description":"No overview found.","id":"11783","runtime":315,"imdbId":"tt0168316","version":44,"lastModified":"1301903878000","genre":"Crime","title":"Les Compagnons d'Eleusis","releaseDate":180921600000,"language":"en","type":"Movie","_key":"43528"} +{"label":"Claude Grinberg","version":20,"id":"70483","lastModified":"1301902390000","name":"Claude Grinberg","type":"Person","_key":"43529"} +{"label":"Catherine Sellers","version":20,"id":"70484","lastModified":"1301902018000","name":"Catherine Sellers","type":"Person","_key":"43530"} +{"label":"Yves Bureau","version":20,"id":"70485","lastModified":"1301902033000","name":"Yves Bureau","type":"Person","_key":"43531"} +{"label":"Jacques Provins","version":20,"id":"70486","lastModified":"1301902014000","name":"Jacques Provins","type":"Person","_key":"43532"} +{"label":"Jean-Pierre Chevallier","version":20,"id":"70487","lastModified":"1301902032000","name":"Jean-Pierre Chevallier","type":"Person","_key":"43533"} +{"label":"Joseph Balsamo","description":"No overview found.","id":"11784","runtime":255,"imdbId":"tt0069570","version":49,"lastModified":"1301906064000","genre":"History","title":"Joseph Balsamo","releaseDate":125452800000,"language":"en","type":"Movie","_key":"43534"} +{"label":"Olimpia Carlisi","version":20,"id":"70488","lastModified":"1301902254000","name":"Olimpia Carlisi","type":"Person","_key":"43535"} +{"label":"Patricia Lesieur","version":19,"id":"70489","lastModified":"1301902254000","name":"Patricia Lesieur","type":"Person","_key":"43536"} +{"label":"Dracula p\u00e8re et fils","description":"No overview found.","id":"11786","runtime":96,"imdbId":"tt0079075","version":60,"lastModified":"1301904968000","genre":"Comedy","title":"Dracula p\u00e8re et fils","releaseDate":211593600000,"language":"en","type":"Movie","_key":"43537"} +{"label":"Mustapha Dali","version":19,"id":"70491","lastModified":"1301902297000","name":"Mustapha Dali","type":"Person","_key":"43538"} +{"label":"Anna Ga\u00ebl","version":19,"id":"70493","lastModified":"1301902297000","name":"Anna Ga\u00ebl","type":"Person","_key":"43539"} +{"label":"Harvey","description":"The classic stage hit gets the Hollywood treatment in the story of Elwood P. Dowd who makes friends with a spirit taking the form of a human-sized rabbit named Harvey that only he sees (and a few privileged others on occasion also.) After his sister tries to commit him to a mental institution, a comedy of errors ensues. Elwood and Harvey become the catalysts for a family mending its wounds and for romance blossoming in unexpected places.","id":"11787","runtime":104,"imdbId":"tt0042546","version":167,"lastModified":"1301903683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/617\/4bc9361e017a3c57fe016617\/harvey-mid.jpg","genre":"Comedy","title":"Harvey","releaseDate":-606528000000,"language":"en","type":"Movie","_key":"43540"} +{"label":"Peggy Dow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11c\/4c9cc8ba7b9aa1430b00011c\/peggy-dow-profile.jpg","version":20,"id":"70492","lastModified":"1301901945000","name":"Peggy Dow","type":"Person","_key":"43541"} +{"label":"Charles Drake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11b\/4d0136cf7b9aa11bc200011b\/charles-drake-profile.jpg","version":30,"id":"15978","lastModified":"1301901223000","name":"Charles Drake","type":"Person","_key":"43542"} +{"label":"Elizabeth I","description":"HBO miniseries about the the public and private lives of the later years of Queen Elizabeth I.","id":"11788","runtime":223,"imdbId":"tt0465326","homepage":"http:\/\/www.hbo.com\/films\/elizabeth","version":191,"lastModified":"1301907333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4bc93620017a3c57fe016625\/elizabeth-i-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Elizabeth I","releaseDate":1127952000000,"language":"en","type":"Movie","_key":"43543"} +{"label":"Tom Hooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db9\/4d7dfe655e73d6282a002db9\/tom-hooper-profile.jpg","version":55,"id":"70500","lastModified":"1301901212000","name":"Tom Hooper","type":"Person","_key":"43544"} +{"label":"Michel Strogoff","description":"No overview found.","id":"11789","runtime":360,"imdbId":"tt0074024","version":53,"lastModified":"1301905704000","genre":"History","title":"Michel Strogoff","releaseDate":157766400000,"language":"en","type":"Movie","_key":"43545"} +{"label":"Jean-Pierre Decourt","version":18,"id":"70497","lastModified":"1301902360000","name":"Jean-Pierre Decourt","type":"Person","_key":"43546"} +{"label":"Valerio Popesco","version":20,"id":"70498","lastModified":"1301901951000","name":"Valerio Popesco","type":"Person","_key":"43547"} +{"label":"J\u00f3zsef Madaras","version":23,"id":"70499","lastModified":"1301901951000","name":"J\u00f3zsef Madaras","type":"Person","_key":"43548"} +{"label":"Peter's Friends","description":"It is New Year's weekend and the friends of Peter (Fry) gather at his newly inherited country house. Ten years ago, they all acted together in a Cambridge University student comedy troupe, but it's less clear how much they have in common now.Peter's friends are Andrew (Branagh), now a writer in Hollywood; married jingle writers Roger (Laurie) and Mary (Staunton); glamorous costume designer Sarah (Emmanuel); and eccentric Maggie (Thompson), who works in publishing. Cast in sharp relief to the uni","id":"11790","runtime":101,"imdbId":"tt0105130","version":106,"lastModified":"1301903417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f6\/4ca5160a7b9aa16ed60002f6\/peter-s-friends-mid.jpg","genre":"Comedy","title":"Peter's Friends","releaseDate":716774400000,"language":"en","type":"Movie","_key":"43549"} +{"label":"Alphonsia Emmanuel","version":21,"id":"70507","lastModified":"1301901992000","name":"Alphonsia Emmanuel","type":"Person","_key":"43550"} +{"label":"The Hound of the Baskervilles","description":"When a nobleman is threatened by a family curse on his newly inherited estate, detective Sherlock Holmes is hired to investigate.","id":"11791","runtime":87,"imdbId":"tt0052905","version":126,"lastModified":"1301908013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4bc93620017a3c57fe01662e\/the-hound-of-the-baskervilles-mid.jpg","genre":"Crime","title":"The Hound of the Baskervilles","releaseDate":-331344000000,"language":"en","type":"Movie","_key":"43551"} +{"label":"Marla Landi","version":23,"id":"70510","lastModified":"1301901648000","name":"Marla Landi","type":"Person","_key":"43552"} +{"label":"Ginger Snaps","description":"No overview found.","id":"11794","version":118,"lastModified":"1301906944000","genre":"Comedy","title":"Ginger Snaps","language":"en","type":"Movie","_key":"43553"} +{"label":"Guyver: Dark Hero","description":"Sean Barker became the unwilling host to an alien bio-armor known as the Guyver. A year ago he destroyed the Kronos Corporation, an organization of mutants who want the Guyver. Now he is trying to find why the Guyver unit forces him to fight and kill evil.","id":"11795","runtime":118,"imdbId":"tt0109965","trailer":"http:\/\/www.youtube.com\/watch?v=994","version":171,"lastModified":"1301904885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/637\/4bc93624017a3c57fe016637\/guyver-dark-hero-mid.jpg","genre":"Science Fiction","title":"Guyver: Dark Hero","releaseDate":766800000000,"language":"en","type":"Movie","_key":"43554"} +{"label":"David Hayter","version":68,"id":"10995","lastModified":"1302070359000","name":"David Hayter","type":"Person","_key":"43555"} +{"label":"Kathy Christopherson","version":21,"id":"71297","lastModified":"1301902147000","name":"Kathy Christopherson","type":"Person","_key":"43556"} +{"label":"Bruno Giannotta","version":20,"id":"71298","lastModified":"1301901781000","name":"Bruno Giannotta","type":"Person","_key":"43557"} +{"label":"Stuart Weiss","version":20,"id":"71299","lastModified":"1301901951000","name":"Stuart Weiss","type":"Person","_key":"43558"} +{"label":"Steve Wang","version":23,"id":"71300","lastModified":"1301901799000","name":"Steve Wang","type":"Person","_key":"43559"} +{"label":"The Hairdresser's Husband","description":"The film begins in a flashback from the titular character, Antoine. We are introduced to his fixation with female hairdressers which began at a young age. The film uses flashbacks throughout and there are frequent parallels drawn with the past. We are unsure what Antoine has done with his life, however we know he has fulfilled his childhood ambition, to marry a haidresser.","id":"11796","runtime":82,"imdbId":"tt0100112","version":209,"lastModified":"1301906477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/151\/4ce74c685e73d6258f000151\/le-mari-de-la-coiffeuse-mid.jpg","genre":"Comedy","title":"The Hairdresser's Husband","releaseDate":654912000000,"language":"en","type":"Movie","_key":"43560"} +{"label":"Maurice Chevit","version":24,"id":"68722","lastModified":"1301902080000","name":"Maurice Chevit","type":"Person","_key":"43561"} +{"label":"Fright Night","description":"Nobody believes teenager Charley Brewster (William Ragsdale) when he discovers that his suave new neighbor, Jerry Dandridge (Chris Sarandon), is a vampire. So when the bloodsucker starts stalking Charley, he turns to has-been actor Peter Vincent (Roddy McDowall), famed for portraying a ghoul hunter. Unfortunately for the would-be vampire slayers, Dandridge has set his sights on Charlie's girlfriend in this clever spoof of the horror genre.","id":"11797","runtime":106,"imdbId":"tt0089175","trailer":"http:\/\/www.youtube.com\/watch?v=8MAL5VJVezQ","version":312,"lastModified":"1301908012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/644\/4bc93624017a3c57fe016644\/fright-night-mid.jpg","genre":"Comedy","title":"Fright Night","releaseDate":491788800000,"language":"en","type":"Movie","_key":"43562"} +{"label":"Amanda Bearse","version":19,"id":"18981","lastModified":"1301903110000","name":"Amanda Bearse","type":"Person","_key":"43563"} +{"label":"Stephen Geoffreys","version":28,"id":"75020","lastModified":"1301901723000","name":"Stephen Geoffreys","type":"Person","_key":"43564"} +{"label":"Jonathan Stark","version":26,"id":"119941","lastModified":"1301902525000","name":"Jonathan Stark","type":"Person","_key":"43565"} +{"label":"This Is England","description":"Based on incidents from his own childhood, writer-director Shane Meadows's THIS IS ENGLAND is a stunning, brutal look at 1983 Britain, during the conservative Margaret Thatcher regime and the controversial Falklands War.","id":"11798","runtime":100,"imdbId":"tt0480025","trailer":"http:\/\/www.youtube.com\/watch?v=SfoJx6t97RE","version":236,"lastModified":"1301901951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/656\/4bc93626017a3c57fe016656\/this-is-england-mid.jpg","studio":"Film4","genre":"Drama","title":"This Is England","releaseDate":1158019200000,"language":"en","type":"Movie","_key":"43566"} +{"label":"Thomas Turgoose","version":23,"id":"70517","lastModified":"1301901369000","name":"Thomas Turgoose","type":"Person","_key":"43567"} +{"label":"Jo Hartley","version":24,"id":"70518","lastModified":"1301901413000","name":"Jo Hartley","type":"Person","_key":"43568"} +{"label":"Andrew Shim","version":21,"id":"70519","lastModified":"1301901381000","name":"Andrew Shim","type":"Person","_key":"43569"} +{"label":"Shane Meadows","version":44,"id":"70520","lastModified":"1301901314000","name":"Shane Meadows","type":"Person","_key":"43570"} +{"label":"Viva Maria!","description":"Traveling players invent the strip tease while mixed up in a Central American revolution.","id":"11799","runtime":120,"imdbId":"tt0059956","version":321,"lastModified":"1301904694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37b\/4d4341df5e73d66ff400037b\/viva-maria-mid.jpg","genre":"Action","title":"Viva Maria!","releaseDate":-129686400000,"language":"en","type":"Movie","_key":"43571"} +{"label":"Poldo Bendandi","version":12,"id":"222249","lastModified":"1301903974000","name":"Poldo Bendandi","type":"Person","_key":"43572"} +{"label":"Naked in New York","description":"No overview found.","id":"11800","runtime":95,"imdbId":"tt0110623","version":99,"lastModified":"1301904128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56a\/4c53caac7b9aa13d4a00056a\/naked-in-new-york-mid.jpg","studio":"Some Film","genre":"Comedy","title":"Naked in New York","releaseDate":725846400000,"language":"en","type":"Movie","_key":"43573"} +{"label":"Lynne Thigpen","version":28,"id":"71266","lastModified":"1301901849000","name":"Lynne Thigpen","type":"Person","_key":"43574"} +{"label":"Angel","description":"Set in Edwardian England. A precocious girl from a poor background with aspirations of being a novelist finds herself swept to fame and fortune when her tasteless romances hit the best seller lists (if such things existed at the time). Based on the book by Elizabeth Taylor, \"Angel\".","id":"11801","runtime":134,"imdbId":"tt0783767","version":171,"lastModified":"1301903731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4d8be0135e73d653ce00109a\/angel-mid.jpg","studio":"Fid\u00e9lit\u00e9 Productions","genre":"Comedy","title":"Angel","releaseDate":1171670400000,"language":"en","type":"Movie","_key":"43575"} +{"label":"Space Chimps","description":"Circus monkey Ham III works in a circus where he's regularly shot from a canon but he still lives in the shadow of his father's legacy. A natural born rebel against authority, Ham III is initially reluctant to go on a dangerous space mission to rescue a lost space probe, but away he goes, for lots of RIGHT STUFF-style astro-training alongside two highly prepared chimps, Luna and Titan.","id":"11802","runtime":81,"imdbId":"tt0482603","homepage":"http:\/\/www.spacechimpspower.com\/","version":242,"lastModified":"1301902127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71c\/4bc93643017a3c57fe01671c\/space-chimps-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Space Chimps","releaseDate":1216252800000,"language":"en","type":"Movie","_key":"43576"} +{"label":"Kirk De Micco","version":22,"id":"71267","lastModified":"1301901434000","name":"Kirk De Micco","type":"Person","_key":"43577"} +{"label":"White Noise","description":"An architect's desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.","id":"11804","runtime":101,"imdbId":"tt0375210","trailer":"http:\/\/www.youtube.com\/watch?v=1883","version":212,"lastModified":"1302058304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/729\/4bc93647017a3c57fe016729\/white-noise-mid.jpg","genre":"Drama","title":"White Noise","releaseDate":1105056000000,"language":"en","type":"Movie","_key":"43578"} +{"label":"Beethoven","description":"The Newton family live in their comfortable home, but there seems to something missing. This \"hole\" is filled by a small puppy, who walks into their home and their lives. Beethoven, as he is named, grows into a giant of a dog... a St Bernard. Doctor Varnick, the local vet has a secret and horrible sideline, which requires lots of dogs for experiments. Beethoven is on the bad doctor's list.","id":"11806","runtime":87,"imdbId":"tt0103786","version":279,"lastModified":"1301902292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34a\/4d8f72017b9aa1675b00234a\/beethoven-mid.jpg","genre":"Comedy","title":"Beethoven","releaseDate":702259200000,"language":"en","tagline":"The head of the family is the one with the tail.","type":"Movie","_key":"43579"} +{"label":"Jab We Met","description":"Depressed after the passing of his father, Dharamraj; as well as his gorgeous girlfriend ditching him, Mumbai-based businessman Aditya Kashyap takes a BEST bus, goes to Chatrapati Shivaji Train Terminus, and boards a train. This is where he meets Geet Kaur Dhillon, who is returning home to Bhatinda, and who pays for his ticket. At Bar Nagar, he decides to leave, but she follows him, missing her train. They manage to get a ride to Ratlam, miss the train again, but eventually make it to Bhatinda. ","id":"11807","runtime":145,"imdbId":"tt1093370","version":294,"lastModified":"1301908056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/750\/4bc93649017a3c57fe016750\/jab-we-met-mid.jpg","genre":"Comedy","title":"Jab We Met","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"43580"} +{"label":"Shahid Kapur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e2\/4c4f10135e73d62ec60000e2\/shahid-kapoor-profile.jpg","biography":"Kapoor was born to actor Pankaj Kapoor and actor\/classical dancer Neelima Azeem on 25 February 1981. Kapoor's parents divorced when he was three. After the divorce, he lived with his mother. He shared a good relationship with his father and stepmother Supriya Pathak.\n\nHe studied in Rajhans Vidyalaya, Mumbai. Kapoor is a vegetarian. He has three half siblings: a sister named Sanah and brothers named Ruhaan and Ishaan Khattar; Ishaan acted with him in the movie Vaah! Life Ho To Aisi (2005). His ma","version":43,"id":"78245","lastModified":"1301901200000","name":"Shahid Kapur","type":"Person","_key":"43581"} +{"label":"Saumya Tandon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/140\/4d349db35e73d63352009140\/saumya-tandon-profile.jpg","version":17,"id":"150452","lastModified":"1301903120000","name":"Saumya Tandon","type":"Person","_key":"43582"} +{"label":"Tarun Arora","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f33\/4d349d9c5e73d6335b008f33\/tarun-arora-profile.jpg","version":22,"id":"71271","lastModified":"1301902080000","name":"Tarun Arora","type":"Person","_key":"43583"} +{"label":"Dara Singh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2dd\/4d349da75e73d6334d0092dd\/dara-singh-profile.jpg","version":25,"id":"70403","lastModified":"1301901713000","name":"Dara Singh","type":"Person","_key":"43584"} +{"label":"Kiran Juneja","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/341\/4d32b5dd7b9aa17af8005341\/kiran-juneja-profile.jpg","version":20,"id":"150013","lastModified":"1301902547000","name":"Kiran Juneja","type":"Person","_key":"43585"} +{"label":"Divya Shah","version":16,"id":"150451","lastModified":"1301903129000","name":"Divya Shah","type":"Person","_key":"43586"} +{"label":"Imtiaz Ali","version":25,"id":"71276","lastModified":"1301901810000","name":"Imtiaz Ali","type":"Person","_key":"43587"} +{"label":"U.S. Marshals","description":"U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.","id":"11808","runtime":131,"imdbId":"tt0120873","trailer":"http:\/\/www.youtube.com\/watch?v=1135","version":370,"lastModified":"1301901562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/759\/4bc93649017a3c57fe016759\/u-s-marshals-mid.jpg","genre":"Action","title":"U.S. Marshals","releaseDate":889142400000,"language":"en","tagline":"The cop who won't stop is back. But this time he's chasing down a lot more than a fugitive.","type":"Movie","_key":"43588"} +{"label":"Legenda o Tile","description":"No overview found.","id":"11809","runtime":311,"imdbId":"tt0074784","version":47,"lastModified":"1301904476000","genre":"History","title":"Legenda o Tile","releaseDate":201398400000,"language":"en","type":"Movie","_key":"43589"} +{"label":"Mikhail Ulyanov","version":18,"id":"70548","lastModified":"1301902220000","name":"Mikhail Ulyanov","type":"Person","_key":"43590"} +{"label":"Evgeni Leonov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/644\/4d542fbb7b9aa13aaf013644\/evgeni-leonov-profile.jpg","version":63,"id":"86664","lastModified":"1301902500000","name":"Evgeni Leonov","type":"Person","_key":"43591"} +{"label":"Innokenti Smoktunovsky","version":25,"id":"86846","lastModified":"1301902982000","name":"Innokenti Smoktunovsky","type":"Person","_key":"43592"} +{"label":"Zakonnyy brak","description":"No overview found.","id":"11810","runtime":93,"imdbId":"tt0184071","version":36,"lastModified":"1301907382000","genre":"Comedy","title":"Zakonnyy brak","releaseDate":534124800000,"language":"en","type":"Movie","_key":"43593"} +{"label":"Albina Matveyeva","version":17,"id":"70550","lastModified":"1301901778000","name":"Albina Matveyeva","type":"Person","_key":"43594"} +{"label":"Ernst Romanov","version":17,"id":"70551","lastModified":"1301901778000","name":"Ernst Romanov","type":"Person","_key":"43595"} +{"label":"Albert S. Mkrtchyan","version":17,"id":"70552","lastModified":"1301901561000","name":"Albert S. Mkrtchyan","type":"Person","_key":"43596"} +{"label":"Leprechaun","description":"When Dan O'Grady returns to the U.S. after stealing some Irish leprechaun's pot of gold, he thinks he can settle down and enjoy his newfound wealth. He thought wrong. The leprechaun followed him and O'Grady barely gets away with his life, having locked the little monster in his basement. Ten years later, J.D. and his spoiled daughter Tory move in. By accident, the leprechaun is released...","id":"11811","runtime":92,"imdbId":"tt0107387","version":149,"lastModified":"1301902717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75e\/4bc9364a017a3c57fe01675e\/leprechaun-mid.jpg","studio":"Trimark Pictures","genre":"Comedy","title":"Leprechaun","releaseDate":726451200000,"language":"en","tagline":"Your luck just ran out.","type":"Movie","_key":"43597"} +{"label":"Ken Olandt","version":30,"id":"70556","lastModified":"1301901602000","name":"Ken Olandt","type":"Person","_key":"43598"} +{"label":"Robert Hy Gorman","version":28,"id":"84598","lastModified":"1301902561000","name":"Robert Hy Gorman","type":"Person","_key":"43599"} +{"label":"John Sanderford","version":19,"id":"102713","lastModified":"1301902855000","name":"John Sanderford","type":"Person","_key":"43600"} +{"label":"Mark Jones","version":38,"id":"70558","lastModified":"1301901378000","name":"Mark Jones","type":"Person","_key":"43601"} +{"label":"The Sweetest Thing","description":"Christina, one of three party loving girls accidentally meets Mr. Right in stead of Mr. Right Now, after missing her chance she and Courtney take a trip to track him down so she can discover love.","id":"11812","runtime":88,"imdbId":"tt0253867","trailer":"http:\/\/www.youtube.com\/watch?v=fGpWRA76jzo","version":254,"lastModified":"1301903123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/770\/4bc9364f017a3c57fe016770\/the-sweetest-thing-mid.jpg","genre":"Comedy","title":"The Sweetest Thing","releaseDate":1018569600000,"language":"en","type":"Movie","_key":"43602"} +{"label":"Il soldato di ventura","description":"No overview found.","id":"11813","runtime":95,"imdbId":"tt0073726","version":45,"lastModified":"1301904034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/695\/4caa34625e73d643eb000695\/il-soldato-di-ventura-mid.jpg","genre":"Action","title":"Il soldato di ventura","releaseDate":193536000000,"language":"en","type":"Movie","_key":"43603"} +{"label":"Franco Agostini","version":20,"id":"70561","lastModified":"1301902178000","name":"Franco Agostini","type":"Person","_key":"43604"} +{"label":"Weird Science","description":"Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to \"create\" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.","id":"11814","runtime":94,"imdbId":"tt0090305","version":282,"lastModified":"1302067117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d18\/4d9c13a47b9aa16d0a000d18\/weird-science-mid.jpg","studio":"Universal Studios","genre":"Comedy","title":"Weird Science","releaseDate":491788800000,"language":"en","tagline":"If you can't get a date, make one!","type":"Movie","_key":"43605"} +{"label":"Ilan Mitchell-Smith","version":28,"id":"70572","lastModified":"1301901840000","name":"Ilan Mitchell-Smith","type":"Person","_key":"43606"} +{"label":"Judie Aronson","version":29,"id":"72541","lastModified":"1301902150000","name":"Judie Aronson","type":"Person","_key":"43607"} +{"label":"The Fly","description":"In Montreal, the industrial Fran\u00e7ois Delambre is called late night by his sister-in-law Helene Delambre. She tells him that she has just killed her beloved husband Andre Delambre, using the press of their plant to press his head and left hand. Fran\u00e7ois calls his acquaintance, Inspector Charas, and later the reluctant Helene is convinced to tell them what happened. She explains that Andre had invented a matter transportation apparatus, and while experimenting with himself, a fly entered the chamb","id":"11815","runtime":94,"imdbId":"tt0051622","version":131,"lastModified":"1301905958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a1\/4bc93654017a3c57fe0167a1\/the-fly-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Drama","title":"The Fly","releaseDate":-361756800000,"language":"en","tagline":"If she looked upon the horror her husband had become... she would scream for the rest of her life!","type":"Movie","_key":"43608"} +{"label":"Patricia Owens","version":27,"id":"70564","lastModified":"1301901997000","name":"Patricia Owens","type":"Person","_key":"43609"} +{"label":"Kurt Neumann","version":32,"birthday":"-1948410000000","id":"70565","birthplace":"Nuremberg, Bavaria, Germany","lastModified":"1301901715000","name":"Kurt Neumann","type":"Person","_key":"43610"} +{"label":"On Golden Pond","description":"The loons are back again on Golden Pond and so are Norman Thayer, a retired professor, and Ethel who have had a summer cottage there since early in their marriage. This summer their daughter Chelsea -- whom they haven't seen for years -- feels she must be there for Norman's birthday. She and her fiance are on their way to Europe the next day but will be back in a couple of weeks to pick up the fiance's son. When she returns Chelsea is married and her stepson has the relationship with her father ","id":"11816","runtime":90,"imdbId":"tt0082846","trailer":"http:\/\/www.youtube.com\/watch?v=HWjBM48YP0s","version":240,"lastModified":"1301903025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b3\/4bc93658017a3c57fe0167b3\/on-golden-pond-mid.jpg","genre":"Drama","title":"On Golden Pond","releaseDate":376272000000,"language":"en","type":"Movie","_key":"43611"} +{"label":"Doug McKeon","version":22,"id":"70569","lastModified":"1301901400000","name":"Doug McKeon","type":"Person","_key":"43612"} +{"label":"Bulletproof Monk","description":"A mysterious and immortal Tibetan kung fu master, who has spent the last 60 years traveling around the world protecting the ancient Scroll of the Ultimate, mentors a selfish street kid in the ancient intricacies of kung fu.","id":"11817","runtime":103,"imdbId":"tt0245803","trailer":"http:\/\/www.youtube.com\/watch?v=dKAYuO_BlDM","version":299,"lastModified":"1301902087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bc\/4bc93659017a3c57fe0167bc\/bulletproof-monk-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Bulletproof Monk","releaseDate":1050451200000,"language":"en","tagline":"A power beyond measure requires a protector without equal.","type":"Movie","_key":"43613"} +{"label":"Paul Hunter","version":22,"id":"70573","lastModified":"1301901723000","name":"Paul Hunter","type":"Person","_key":"43614"} +{"label":"K.C. Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c3\/4cf2f4eb5e73d623870001c3\/k-c-collins-profile.jpg","version":36,"id":"74278","lastModified":"1301904135000","name":"K.C. Collins","type":"Person","_key":"43615"} +{"label":"Kurtlar vadisi - Irak","description":"The movie opens with a fictionalized depiction of a real-life incident: the arrest on July 4, 2003 of 11 Turkish special forces soldiers and 13 civilians by U.S. forces of the 173rd Airborne commanded by Colonel William C. Mayville in the northern Iraqi Kurdish town of Sulaymaniyah. The Turkish soldiers suppose that this is an ordinary visit from their NATO allies. But this time is different.","id":"11818","runtime":122,"imdbId":"tt0493264","version":119,"lastModified":"1301904011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ca\/4bc9365a017a3c57fe0167ca\/kurtlar-vadisi-irak-mid.jpg","genre":"Action","title":"Kurtlar vadisi - Irak","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"43616"} +{"label":"Necati Sasmaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b6\/4ce09ae05e73d60f6e0002b6\/necati-sasmaz-profile.jpg","biography":"<STRONG>Abdulkadir \u015ea\u015fmaz<\/STRONG>'\u0131n o\u011flu olan <B>Necati \u015ea\u015fmaz<\/B> <B>1971<\/B>'de <B>Elaz\u0131\u011f<\/B>'da do\u011fdu. As\u0131l mesle\u011fi turizmcilik olan \u015ea\u015fmaz, e\u011fitimini <B>Kanada<\/B>'da tamamlad\u0131. \r\n<P><B>Amerika<\/B>'da 6 sene kalan \u015ea\u015fmaz, <B>2001<\/B> y\u0131l\u0131nda bir s\u00fcreli\u011fine ailesini ziyarete geldi\u011fi s\u0131rada geri d\u00f6n\u00fc\u015f u\u00e7ak biletini <B>11 Eyl\u00fcl 2001<\/B> tarihine ald\u0131. Amerikada ya\u015fanan sald\u0131r\u0131lar sebebiyle u\u00e7a\u011f\u0131 Amerika'ya varamadan geri d\u00f6nen \u015ea\u015fmaz, sonradan ailesinin \u00e7ekincesi ve \u0131srar\u0131 \u00fczerine Amerika'ya ","version":26,"birthday":"61254000000","id":"70576","birthplace":"Elaz\u0131\u011f","lastModified":"1301901713000","name":"Necati Sasmaz","type":"Person","_key":"43617"} +{"label":"Ghassan Massoud","version":24,"id":"70577","lastModified":"1301902079000","name":"Ghassan Massoud","type":"Person","_key":"43618"} +{"label":"G\u00fcrkan Uygun","version":20,"id":"70578","lastModified":"1301902254000","name":"G\u00fcrkan Uygun","type":"Person","_key":"43619"} +{"label":"Serdar Akar","version":27,"id":"70579","lastModified":"1301901945000","name":"Serdar Akar","type":"Person","_key":"43620"} +{"label":"Sadullah \u015eent\u00fcrk","version":23,"id":"70580","lastModified":"1301901535000","name":"Sadullah \u015eent\u00fcrk","type":"Person","_key":"43621"} +{"label":"Fleisch","description":"No overview found.","id":"11819","runtime":114,"imdbId":"tt0079160","version":58,"lastModified":"1301906064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa6\/4c0a49f7017a3c3519000aa6\/fleisch-mid.jpg","genre":"Thriller","title":"Fleisch","releaseDate":298339200000,"language":"en","type":"Movie","_key":"43622"} +{"label":"Herbert Herrmann","version":19,"id":"70593","lastModified":"1301901723000","name":"Herbert Herrmann","type":"Person","_key":"43623"} +{"label":"Mona Lisa Smile","description":"The story of Katherine Ann Watson, a feminist teacher who studied at UCLA graduate school and in 1953 left her boyfriend behind in Los Angeles, California to teach at Wellesley College, a conservative women's private liberal arts college in Massachusetts, United States.","id":"11820","runtime":117,"imdbId":"tt0304415","trailer":"http:\/\/www.youtube.com\/watch?v=TqSX57vIXIg","version":268,"lastModified":"1301902119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afa\/4d991db57b9aa119a0006afa\/mona-lisa-smile-mid.jpg","genre":"Drama","title":"Mona Lisa Smile","releaseDate":1071792000000,"language":"en","tagline":"In a world that told them how to think, she showed them how to live.","type":"Movie","_key":"43624"} +{"label":"Doc Hollywood","description":"After leaving Washington D.C. hospital, plastic surgeon Ben Stone heads for California, where a lucrative practice in Beverly Hills awaits. After a car accident, he's sentenced to perform as the community's general practitioner.","id":"11821","runtime":100,"imdbId":"tt0101745","version":167,"lastModified":"1301904078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7dc\/4bc9365b017a3c57fe0167dc\/doc-hollywood-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Comedy","title":"Doc Hollywood","releaseDate":681091200000,"language":"en","tagline":"He was headed to Beverly Hills to be a plastic surgeon... but he took an exit to a town that didn't take plastic.","type":"Movie","_key":"43625"} +{"label":"Helen Martin","version":23,"id":"111872","lastModified":"1301901707000","name":"Helen Martin","type":"Person","_key":"43626"} +{"label":"Tom Lacy","version":19,"id":"141585","lastModified":"1301902767000","name":"Tom Lacy","type":"Person","_key":"43627"} +{"label":"Nekromantik","description":"No overview found.","id":"11822","runtime":75,"imdbId":"tt0093608","version":55,"lastModified":"1301903371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4bc9365c017a3c57fe0167e5\/nekromantik-mid.jpg","genre":"Drama","title":"Nekromantik","releaseDate":536457600000,"language":"en","type":"Movie","_key":"43628"} +{"label":"Bernd Daktari Lorenz","version":21,"id":"70599","lastModified":"1301901801000","name":"Bernd Daktari Lorenz","type":"Person","_key":"43629"} +{"label":"Harald Lundt","version":21,"id":"70600","lastModified":"1301902176000","name":"Harald Lundt","type":"Person","_key":"43630"} +{"label":"Colloseo Schulzendorf","version":20,"id":"70601","lastModified":"1301902031000","name":"Colloseo Schulzendorf","type":"Person","_key":"43631"} +{"label":"J\u00f6rg Buttgereit","version":25,"id":"70602","lastModified":"1301901573000","name":"J\u00f6rg Buttgereit","type":"Person","_key":"43632"} +{"label":"Wimbledon","description":"A pro tennis player has lost his ambition and has fallen in rank to 119. Fortunately for him, he meets a young player on the women's circuit who helps him recapture his focus for Wimbledon.","id":"11823","runtime":98,"imdbId":"tt0360201","trailer":"http:\/\/www.youtube.com\/watch?v=2318","version":204,"lastModified":"1301902934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ee\/4bc9365f017a3c57fe0167ee\/wimbledon-mid.jpg","genre":"Comedy","title":"Wimbledon","releaseDate":1095033600000,"language":"en","type":"Movie","_key":"43633"} +{"label":"Teen Wolf","description":"What's a high school kid got to do to be popular? Just let down his hair and howl! Starring Michael J. Fox (Back to the Future) Teen Wolf is an outrageous comedy about a shy teenager with more than a changing voice to contend with... he's a budding young werewolf! And when his new-found powers help him score at basketball - and with the popular girls - he has some pretty hairy decisions to make.","id":"11824","runtime":91,"imdbId":"tt0090142","trailer":"http:\/\/www.youtube.com\/watch?v=fbIerQkXm_k","version":181,"lastModified":"1302022261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ff\/4bc93660017a3c57fe0167ff\/teen-wolf-mid.jpg","studio":"Wolfkill","genre":"Comedy","title":"Teen Wolf","releaseDate":493603200000,"language":"en","tagline":"He always wanted to be special... but he never expected this! ","type":"Movie","_key":"43634"} +{"label":"Susan Ursitti","version":21,"id":"70612","lastModified":"1301901619000","name":"Susan Ursitti","type":"Person","_key":"43635"} +{"label":"Lorie Griffin","version":22,"id":"119892","lastModified":"1301902639000","name":"Lorie Griffin","type":"Person","_key":"43636"} +{"label":"Mark Arnold","version":22,"id":"119893","lastModified":"1301902639000","name":"Mark Arnold","type":"Person","_key":"43637"} +{"label":"Jay Tarses","version":24,"id":"70868","lastModified":"1301902109000","name":"Jay Tarses","type":"Person","_key":"43638"} +{"label":"Elizabeth Gorcey","version":21,"id":"119894","lastModified":"1301902639000","name":"Elizabeth Gorcey","type":"Person","_key":"43639"} +{"label":"Melanie Manos","version":21,"id":"119895","lastModified":"1301902639000","name":"Melanie Manos","type":"Person","_key":"43640"} +{"label":"Charles Zucker","version":21,"id":"119896","lastModified":"1301902639000","name":"Charles Zucker","type":"Person","_key":"43641"} +{"label":"Police Academy 5: Assignment Miami Beach","description":"The Police Academy misfits travel to Miami, Florida for their academy's commanding officer, Lassard, to receive a prestigious lifetime award pending his retirement, which takes a turn involving a group of jewel thieves after their stolen loot that Lassard unknowingly has in his possession. ","id":"11825","runtime":90,"imdbId":"tt0095882","version":176,"lastModified":"1301902019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4bcc2732017a3c0f34000080\/police-academy-5-assignment-miami-beach-mid.jpg","genre":"Action","title":"Police Academy 5: Assignment Miami Beach","releaseDate":574646400000,"language":"en","type":"Movie","_key":"43642"} +{"label":"Alan Myerson","version":20,"id":"14995","lastModified":"1301901607000","name":"Alan Myerson","type":"Person","_key":"43643"} +{"label":"Sexy Beast","description":"Gary is a former gangster who has made a modest amount of money from his criminal career. Happy to put his life of crime behind him, he has retired with his wife Deedee to the sunny bliss of rural Spain, where he lives an idyllic life with his family and a few close friends. But Gary's contentment is ruptured by an unwelcome visitor from his past. Don.","id":"11826","runtime":89,"imdbId":"tt0203119","trailer":"http:\/\/www.youtube.com\/watch?v=-8n2jeAXBP0&hd=1","version":339,"lastModified":"1301903025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82e\/4bc93664017a3c57fe01682e\/sexy-beast-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Crime","title":"Sexy Beast","releaseDate":968803200000,"language":"en","tagline":"There's a bit of the beast in all of us.","type":"Movie","_key":"43644"} +{"label":"Amanda Redman","version":21,"id":"70633","lastModified":"1301901535000","name":"Amanda Redman","type":"Person","_key":"43645"} +{"label":"Heavy Metal","description":"A glowing orb terrorizes a young girl with a collection of stories of dark fantasy, eroticism and horror.","id":"11827","runtime":90,"imdbId":"tt0082509","trailer":"http:\/\/www.youtube.com\/watch?v=B_MzWF8YLhY","version":340,"lastModified":"1301902230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44b\/4cbd76967b9aa138da00144b\/heavy-metal-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Heavy Metal","releaseDate":365990400000,"language":"en","tagline":"A Step Beyond Science Fiction","type":"Movie","_key":"43646"} +{"label":"Rodger Bumpass","version":32,"id":"70615","lastModified":"1301901456000","name":"Rodger Bumpass","type":"Person","_key":"43647"} +{"label":"Gerald Potterton","version":24,"id":"70616","lastModified":"1301901994000","name":"Gerald Potterton","type":"Person","_key":"43648"} +{"label":"Erik the Viking","description":"Erik the Viking gathers warriors from his village and sets out on a dangerous journey to Valhalla, to ask the gods to end the Age of Ragnorok and allow his people to see sunlight again. A Pythonesque satire of Viking life.","id":"11828","runtime":107,"imdbId":"tt0097289","version":310,"lastModified":"1301904298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/849\/4bc93669017a3c57fe016849\/erik-the-viking-mid.jpg","genre":"Action","title":"Erik the Viking","releaseDate":620611200000,"language":"en","type":"Movie","_key":"43649"} +{"label":"\u2026Continuavano a chiamarlo Trinit\u00e0","description":"Due fratelli, fuorilegge vagabondi dal cuore tenero, vengono scambiati per agenti federali. Approfittando dell'equivoco, i due tentano il colpo grosso, ma si ritrovano a difendere una comunit\u00e0 di frati da un trafficante d'armi e da una banda di rivoluzionari messicani.","id":"11829","runtime":127,"imdbId":"tt0068154","version":129,"lastModified":"1301902585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fd\/4c5b34285e73d63a710005fd\/continuavano-a-chiamarlo-trinita-mid.jpg","studio":"West Film","genre":"Action","title":"\u2026Continuavano a chiamarlo Trinit\u00e0","releaseDate":80438400000,"language":"en","type":"Movie","_key":"43650"} +{"label":"Yanti Somer","version":27,"id":"70625","lastModified":"1301902079000","name":"Yanti Somer","type":"Person","_key":"43651"} +{"label":"Tampopo","description":"A pair of truck drivers happen onto a decrepit roadside fast food stop selling ramen noodles and help the widowed owner, Tampopo, turn her establishment into a paragon of the \"art of noodle soup making\".","id":"11830","runtime":114,"imdbId":"tt0092048","version":97,"lastModified":"1301902711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4c50cf187b9aa13d4d0000ab\/11830-mid.jpg","genre":"Comedy","title":"Tampopo","releaseDate":501552000000,"language":"en","type":"Movie","_key":"43652"} +{"label":"Tsutomu Yamazaki","version":33,"id":"70626","lastModified":"1301902032000","name":"Tsutomu Yamazaki","type":"Person","_key":"43653"} +{"label":"Nobuko Miyamoto","version":21,"id":"70627","lastModified":"1301902363000","name":"Nobuko Miyamoto","type":"Person","_key":"43654"} +{"label":"Amistad","description":"Amistad is about a 1839 mutiny on board a slave ship that is traveling towards the Northeast Coast of America. Much of the story involves a court-room drama about the slave who led the revolt.","id":"11831","runtime":152,"imdbId":"tt0118607","version":232,"lastModified":"1301902577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ee\/4c1fa3c55e73d607ba0002ee\/amistad-mid.jpg","genre":"Drama","title":"Amistad","releaseDate":881193600000,"language":"en","type":"Movie","_key":"43655"} +{"label":"Babette's Feast","description":"The guest, a General at the Swedish court, is not related to the sister, but, as a callow young man, was in love with her, but chose his military career over happiness with her. His aunt is a member of the religious community. He is the one who, unknowingly, identifies Babette as the famous chef from Paris' \"Cafe Anglais,\" and provides the catalyst for the enjoyment of the feast.","id":"11832","runtime":102,"imdbId":"tt0092603","version":178,"lastModified":"1301905958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/876\/4bc9366d017a3c57fe016876\/babettes-gstebud-mid.jpg","genre":"Drama","title":"Babette's Feast","releaseDate":557107200000,"language":"en","type":"Movie","_key":"43656"} +{"label":"Bodil Kjer","version":20,"id":"70635","lastModified":"1301901873000","name":"Bodil Kjer","type":"Person","_key":"43657"} +{"label":"Gabriel Axel","version":24,"id":"70636","lastModified":"1301901398000","name":"Gabriel Axel","type":"Person","_key":"43658"} +{"label":"Jabberwocky","description":"A medieval tale with Pythonesque humour: After the death of his father the young Dennis Cooper goes to town where he has to pass several adventures. The town and the whole kingdom is threatened by a terrible monster called 'Jabberwocky'. Will Dennis make his fortune? Is anyone brave enough to defeat the monster?","id":"11834","runtime":105,"imdbId":"tt0076221","trailer":"http:\/\/www.youtube.com\/watch?v=SlsqgaYYLLs","version":145,"lastModified":"1301903054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/883\/4bc93670017a3c57fe016883\/jabberwocky-mid.jpg","genre":"Comedy","title":"Jabberwocky","releaseDate":228355200000,"language":"en","type":"Movie","_key":"43659"} +{"label":"Max Wall","version":21,"id":"70654","lastModified":"1301901430000","name":"Max Wall","type":"Person","_key":"43660"} +{"label":"Death Sentence","description":"Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.","id":"11835","runtime":110,"imdbId":"tt0804461","trailer":"http:\/\/www.youtube.com\/watch?v=2365","version":452,"lastModified":"1301902439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89d\/4bc93673017a3c57fe01689d\/death-sentence-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Death Sentence","releaseDate":1188518400000,"language":"en","type":"Movie","_key":"43661"} +{"label":"Jordan Garrett","version":19,"id":"70643","lastModified":"1301902079000","name":"Jordan Garrett","type":"Person","_key":"43662"} +{"label":"The SpongeBob SquarePants Movie","description":"There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.","id":"11836","runtime":87,"imdbId":"tt0345950","version":357,"lastModified":"1301901315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/969\/4d44f9747b9aa15bb0006969\/the-spongebob-squarepants-movie-mid.jpg","genre":"Action","title":"The SpongeBob SquarePants Movie","releaseDate":1100390400000,"language":"en","tagline":"Bigger. Better. More absorbent.","type":"Movie","_key":"43663"} +{"label":"Stephen Hillenburg","version":39,"id":"70651","lastModified":"1301901606000","name":"Stephen Hillenburg","type":"Person","_key":"43664"} +{"label":"Carolyn Lawrence","version":22,"id":"78799","lastModified":"1301902079000","name":"Carolyn Lawrence","type":"Person","_key":"43665"} +{"label":"Watership Down","description":"When the warren belonging to a community of rabbits is threatened, a brave group led by Fiver, Bigwig, Blackberry and Hazel leave their homeland in a search of a safe new haven.","id":"11837","runtime":102,"imdbId":"tt0078480","version":148,"lastModified":"1301901963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c0\/4bc93678017a3c57fe0168c0\/watership-down-mid.jpg","genre":"Animation","title":"Watership Down","releaseDate":252460800000,"language":"en","type":"Movie","_key":"43666"} +{"label":"John Bennett","version":23,"id":"47547","lastModified":"1301901837000","name":"John Bennett","type":"Person","_key":"43667"} +{"label":"Martin Rosen","version":29,"id":"70663","lastModified":"1301901648000","name":"Martin Rosen","type":"Person","_key":"43668"} +{"label":"Ju-on: The Grudge","description":"A mysterious and vengeful spirit marks and pursues anybody who dares enter the house in which it resides. ","id":"11838","runtime":92,"imdbId":"tt0364385","version":148,"lastModified":"1301902646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cd\/4bc93679017a3c57fe0168cd\/ju-on-the-grudge-mid.jpg","genre":"Horror","title":"Ju-on: The Grudge","releaseDate":1043452800000,"language":"en","type":"Movie","_key":"43669"} +{"label":"Yukako Kukuri","version":20,"id":"70670","lastModified":"1301902370000","name":"Yukako Kukuri","type":"Person","_key":"43670"} +{"label":"Misaki Ito","version":21,"id":"70671","lastModified":"1301902147000","name":"Misaki Ito","type":"Person","_key":"43671"} +{"label":"The Court Jester","description":"A 12th century court jester in England becomes involved with a desperate band of outlaws who are attempting to overthrow the king.","id":"11839","runtime":101,"imdbId":"tt0049096","version":167,"lastModified":"1301903332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc9367a017a3c57fe0168da\/the-court-jester-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Court Jester","releaseDate":-439603200000,"language":"en","type":"Movie","_key":"43672"} +{"label":"Danny Kaye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4c49b1e37b9aa11601000092\/danny-kaye-profile.jpg","version":42,"id":"70668","lastModified":"1301901507000","name":"Danny Kaye","type":"Person","_key":"43673"} +{"label":"Norman Panama","version":27,"id":"50577","lastModified":"1301901887000","name":"Norman Panama","type":"Person","_key":"43674"} +{"label":"Piratensender Powerplay","description":"No overview found.","id":"11840","runtime":85,"imdbId":"tt0082911","version":48,"lastModified":"1301906760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d6\/4c54a50f5e73d632c00002d6\/piratensender-powerplay-mid.jpg","genre":"Comedy","title":"Piratensender Powerplay","releaseDate":379814400000,"language":"en","type":"Movie","_key":"43675"} +{"label":"Denise Bielmann","version":20,"id":"70695","lastModified":"1301901951000","name":"Denise Bielmann","type":"Person","_key":"43676"} +{"label":"The 36th Chamber of Shaolin","description":"The anti-Ching patriots, under the guidance of Ho Kuang-han,\nhave secretly set up their base in Canton, disguised as school\nmasters. During a brutal Manchu attack, Lui manages to escape, and devotes himself to learning the martial arts in order to seek revenge. This film is widely considered to be one of the greatest Kung Fu films ever, and a turning point in its director's and star's careers.","id":"11841","runtime":115,"imdbId":"tt0078243","version":242,"lastModified":"1301902325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13f\/4c37654b7b9aa105f800013f\/shao-lin-san-shi-liu-fang-mid.jpg","genre":"Action","title":"The 36th Chamber of Shaolin","releaseDate":290995200000,"language":"en","type":"Movie","_key":"43677"} +{"label":"Norman Chu","version":28,"id":"70674","lastModified":"1301901400000","name":"Norman Chu","type":"Person","_key":"43678"} +{"label":"Red Sun","description":"An ancient Japanese sword is robbed by gangsters from the Japanese ambassador while he is traveling through west America. The embassador's bodyguard, a samurai, foes after them with the help of one of the gang leaders who was betrayed by his fellows.","id":"11842","runtime":112,"imdbId":"tt0067770","version":213,"lastModified":"1301904885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/733\/4be17f8c017a3c35b4000733\/soleil-rouge-mid.jpg","genre":"Action","title":"Red Sun","releaseDate":53740800000,"language":"en","tagline":"The greatest fighting machine the West has ever known.","type":"Movie","_key":"43679"} +{"label":"The Return of the Pink Panther","description":"That famous jewel, The Pink Panther, has once again been stolen and Inspector Clouseau is called in to catch the thief. The Inspector is convinced that 'The Phantom' has returned and utilises all of his resources - himself and his oriental manservant - to reveal the true identity of 'The Phantom'.","id":"11843","runtime":113,"imdbId":"tt0072081","version":228,"lastModified":"1301906910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/015\/4c13d5da5e73d64a23000015\/the-return-of-the-pink-panther-mid.jpg","genre":"Comedy","title":"The Return of the Pink Panther","releaseDate":169862400000,"language":"en","type":"Movie","_key":"43680"} +{"label":"Peter Jeffrey","version":30,"id":"82549","lastModified":"1301902419000","name":"Peter Jeffrey","type":"Person","_key":"43681"} +{"label":"David Lodge","version":27,"id":"95125","lastModified":"1301902419000","name":"David Lodge","type":"Person","_key":"43682"} +{"label":"The Van","description":"Set in \"Barrytown\", a fictitious working-class quarter of Dublin. \"Bimbo\" Reeves gets laid off from his job. With his redundancy, he buys a van and sells fish and chips with his buddy Larry. Due to Ireland's surprising success at the 1990 FIFA World Cup, their business starts off well, but the relationship between the two friends soon becomes strained as Bimbo behaves more like a typical boss.","id":"11844","runtime":100,"imdbId":"tt0118064","version":82,"lastModified":"1301904884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/905\/4bc93681017a3c57fe016905\/the-van-mid.jpg","genre":"Comedy","title":"The Van","releaseDate":831772800000,"language":"en","type":"Movie","_key":"43683"} +{"label":"Donal O'Kelly","version":22,"id":"70684","lastModified":"1301902048000","name":"Donal O'Kelly","type":"Person","_key":"43684"} +{"label":"Ger Ryan","version":24,"id":"70685","lastModified":"1301902079000","name":"Ger Ryan","type":"Person","_key":"43685"} +{"label":"Caroline Rothwell","version":20,"id":"70686","lastModified":"1301902253000","name":"Caroline Rothwell","type":"Person","_key":"43686"} +{"label":"Intimacy","description":"Jay, a failed musician, walked out of his family and now earns a living as head bartender in a trendy London pub. Every Wednesday afternoon a woman comes to his house for graphic, almost wordless, sex. One day Jay follows her and finds out about the rest of her life (and that her name is Claire). This eventually disrupts their relationship.","id":"11845","runtime":117,"imdbId":"tt0256103","version":125,"lastModified":"1301903905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/912\/4bc93684017a3c57fe016912\/intimacy-mid.jpg","genre":"Drama","title":"Intimacy","releaseDate":979948800000,"language":"en","type":"Movie","_key":"43687"} +{"label":"Alastair Galbraith","version":19,"id":"73673","lastModified":"1301902079000","name":"Alastair Galbraith","type":"Person","_key":"43688"} +{"label":"Father of the Bride","description":"George Banks is an ordinary, middle-class man whose 21 year-old daughter Annie has decided to marry a man from an upper-class family, but George can't think of what life would be like without his daughter. He becomes slightly insane, but his wife tries to make him happy for Annie, but when the wedding takes place at their home and a foreign wedding planner takes over the ceremony.","id":"11846","runtime":105,"imdbId":"tt0101862","trailer":"http:\/\/www.youtube.com\/watch?v=bKSmMr0uOHk","version":231,"lastModified":"1301902439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/924\/4bc93687017a3c57fe016924\/father-of-the-bride-mid.jpg","genre":"Comedy","title":"Father of the Bride","releaseDate":693187200000,"language":"en","tagline":"A comedy about letting go.","type":"Movie","_key":"43689"} +{"label":"Kimberly Williams-Paisley","version":28,"id":"70696","lastModified":"1301901460000","name":"Kimberly Williams-Paisley","type":"Person","_key":"43690"} +{"label":"The Accidental Spy","description":"A fun-filled story about an ordinary guy about to kick into an action-packed adventure. Jackie Chan plays a bored and unsuccessful salesman who never thought his life would amount to anything. All that changes one day when he becomes an instant hero by foiling an attempted bank robbery.","id":"11847","runtime":108,"imdbId":"tt0271946","version":248,"lastModified":"1301902366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92d\/4bc93687017a3c57fe01692d\/dak-miu-mai-shing-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"The Accidental Spy","releaseDate":979776000000,"language":"en","tagline":"Ordinary Guy, Extraordinary Spy.","type":"Movie","_key":"43691"} +{"label":"Teddy Chan","version":26,"id":"70703","lastModified":"1301901362000","name":"Teddy Chan","type":"Person","_key":"43692"} +{"label":"Vivian Hsu","version":30,"id":"70706","lastModified":"1301901473000","name":"Vivian Hsu","type":"Person","_key":"43693"} +{"label":"Animal Farm","description":"No overview found.","id":"11848","runtime":72,"imdbId":"tt0047834","version":122,"lastModified":"1301902166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4bc93688017a3c57fe016936\/animal-farm-mid.png","genre":"Animation","title":"Animal Farm","releaseDate":-473644800000,"language":"en","type":"Movie","_key":"43694"} +{"label":"Gordon Heath","version":19,"id":"70718","lastModified":"1301901873000","name":"Gordon Heath","type":"Person","_key":"43695"} +{"label":"Dungeons & Dragons","description":"The classic role-playing game comes to life in this magical adventure. The empire of Izmer is a divided land: Elite magicians called Mages rule while lowly commoners are powerless. When Empress Savina (Thora Birch) vows to bring equality and prosperity to her land, the evil Mage Profion (Jeremy Irons) plots to depose her. But this good-vs.-evil battle is no game!","id":"11849","runtime":107,"imdbId":"tt0190374","version":127,"lastModified":"1301903176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a7\/4c61dd3a7b9aa172dc0004a7\/dungeons-dragons-mid.jpg","genre":"Action","title":"Dungeons & Dragons","releaseDate":976233600000,"language":"en","type":"Movie","_key":"43696"} +{"label":"Invasion of the Body Snatchers","description":"Space-originating plants are changing people into something else with their pods.","id":"11850","runtime":115,"imdbId":"tt0077745","trailer":"http:\/\/www.youtube.com\/watch?v=NodTiR4mJoI","version":369,"lastModified":"1301902776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94c\/4bc9368d017a3c57fe01694c\/invasion-of-the-body-snatchers-mid.jpg","genre":"Horror","title":"Invasion of the Body Snatchers","releaseDate":275097600000,"language":"en","type":"Movie","_key":"43697"} +{"label":"The Presidio","description":"Jay Austin is now a civilian police detective. Colonel Caldwell was his commanding officer years before when he left the military police over a disagreement over the handling of a drunk driver. Now a series of murders that cross jurisdictions force them to work together again. That Austin is now dating Caldwell's daughter is not helping the relationship at all.","id":"11851","runtime":97,"imdbId":"tt0095897","trailer":"http:\/\/www.youtube.com\/watch?v=NIJxOLyMvek","version":301,"lastModified":"1301907099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95d\/4bc9368f017a3c57fe01695d\/the-presidio-mid.jpg","genre":"Action","title":"The Presidio","releaseDate":581904000000,"language":"en","type":"Movie","_key":"43698"} +{"label":"The Hot Chick","description":"Cheerleader Jessica Spencer is as shallow and spiteful as she is pretty and popular. Her cruel nature gets her in trouble when she shoplifts a cursed pair of earrings and winds up trapped in the body of a 30-year-old male loser. Humbled, confused and in constant need of a shave, Jessica frantically tries to figure out how to switch back in time for the prom and the big cheerleading competition.","id":"11852","runtime":104,"imdbId":"tt0302640","version":195,"lastModified":"1301902612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4d77a0047b9aa15c7c0009f9\/the-hot-chick-mid.jpg","genre":"Comedy","title":"The Hot Chick","releaseDate":1039737600000,"language":"en","tagline":"The hottest chick in town just switched bodies with the luckiest loser in the world.","type":"Movie","_key":"43699"} +{"label":"Maritza Murray","version":16,"id":"148702","lastModified":"1301903083000","name":"Maritza Murray","type":"Person","_key":"43700"} +{"label":"Fay Hauser","version":22,"id":"121642","lastModified":"1301902548000","name":"Fay Hauser","type":"Person","_key":"43701"} +{"label":"Tia Mowry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13e\/4ceeac415e73d6531300013e\/tia-mowry-profile.jpg","version":36,"id":"87569","lastModified":"1301901181000","name":"Tia Mowry","type":"Person","_key":"43702"} +{"label":"Tamera Mowry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4d12b1735e73d60832001004\/tamera-mowry-profile.jpg","version":34,"id":"87570","lastModified":"1301901600000","name":"Tamera Mowry","type":"Person","_key":"43703"} +{"label":"Angie Stone","version":16,"id":"148704","lastModified":"1301903095000","name":"Angie Stone","type":"Person","_key":"43704"} +{"label":"Michelle Branch","version":25,"id":"71195","lastModified":"1301902389000","name":"Michelle Branch","type":"Person","_key":"43705"} +{"label":"Michael O'Keefe","version":19,"id":"141812","lastModified":"1301902414000","name":"Michael O'Keefe","type":"Person","_key":"43706"} +{"label":"Megan Kuhlmann","version":16,"id":"148706","lastModified":"1301903096000","name":"Megan Kuhlmann","type":"Person","_key":"43707"} +{"label":"Ashlee Simpson-Wentz","version":16,"id":"148707","lastModified":"1301903096000","name":"Ashlee Simpson-Wentz","type":"Person","_key":"43708"} +{"label":"Scott Dolezal","version":16,"id":"148708","lastModified":"1301903083000","name":"Scott Dolezal","type":"Person","_key":"43709"} +{"label":"Maria-Elena Laas","version":21,"id":"144145","lastModified":"1301903010000","name":"Maria-Elena Laas","type":"Person","_key":"43710"} +{"label":"Bad Girls","description":"Four former harlots try to leave the wild west (Colorado, to be exact) and head north to make a better life for themselves. Unfortunately someone from Cody's past won't let it happen that easily.","id":"11853","runtime":99,"imdbId":"tt0109198","version":141,"lastModified":"1301907504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/978\/4bc93691017a3c57fe016978\/bad-girls-mid.jpg","genre":"Action","title":"Bad Girls","releaseDate":766972800000,"language":"en","tagline":"It was a dangerous time to be a woman. And a good time to have friends.","type":"Movie","_key":"43711"} +{"label":"Kuch Kuch Hota Hai","description":"Rahul & Anjali are best friends that fall into a romance triangle once Tina arrives. Rahul & Tina marry & have a child, which Tina names Anjali, but Tina dies in childbirth. Anjali, Rahul\u2019s daughter, receives a series of letters written by mom prior to her death & the final letter describes her namesake. Anjali, Rahul\u2019s daughter, tries to re-unite her father back with his college best friend.","id":"11854","runtime":177,"imdbId":"tt0172684","version":123,"lastModified":"1301901566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53a\/4d7b4fcb7b9aa12e1900553a\/kuch-kuch-hota-hai-mid.jpg","genre":"Drama","title":"Kuch Kuch Hota Hai","releaseDate":908496000000,"language":"en","type":"Movie","_key":"43712"} +{"label":"Pecker","description":"A Baltimore sandwich shop employee becomes an overnight sensation when photographs he's taken of his weird family become the latest rage in the art world. The young man is called \"Pecker\" because he pecks at his food like a bird.","id":"11855","runtime":87,"imdbId":"tt0126604","version":143,"lastModified":"1301906510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99e\/4bc93697017a3c57fe01699e\/pecker-mid.png","genre":"Comedy","title":"Pecker","releaseDate":905904000000,"language":"en","type":"Movie","_key":"43713"} +{"label":"Air America","description":"Air America was the CIA's private airline operating in Laos during the Vietnam War, running anything and everything from soldiers to foodstuffs for local villagers. After losing his pilot's license, Billy Covington is recruited into it, and ends up in the middle of a bunch of lunatic pilots, gun-running by his friend Gene Ryack, and opium smuggling by his own superiors.","id":"11856","runtime":112,"imdbId":"tt0099005","trailer":"http:\/\/www.youtube.com\/watch?v=Goj3RGld4mI","version":287,"lastModified":"1301906798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b4\/4bc9369a017a3c57fe0169b4\/air-america-mid.jpg","genre":"Action","title":"Air America","releaseDate":650246400000,"language":"en","tagline":"The few. The proud. The totally insane.","type":"Movie","_key":"43714"} +{"label":"Orange County","description":"Shaun Brumder is a local surfer kid from Orange County who dreams of going to Stanford to become a writer and to get away from his disfunctional family household. Except Shaun runs into one complication after another starting when his application is rejected after his dim-witted guidance counselor sends the wrong application.","id":"11857","runtime":82,"imdbId":"tt0273923","trailer":"http:\/\/www.youtube.com\/watch?v=1726","version":172,"lastModified":"1301907562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fa\/4d67600f5e73d66a610016fa\/orange-county-mid.jpg","genre":"Comedy","title":"Orange County","releaseDate":1010707200000,"language":"en","tagline":"It's not just a place. It's a state of mind.","type":"Movie","_key":"43715"} +{"label":"Renaissance Man","description":"Danny DeVito plays an advertising man who is slowly sliding downhill. When he is fired from his job in Detroit, he signs up for unemployment. One day they find him a job; Teaching thinking skills to Army recruits. He arrives on base to find that there is no structure set up for the class. ","id":"11858","runtime":128,"imdbId":"tt0110971","version":152,"lastModified":"1301902835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e2\/4bc936a1017a3c57fe0169e2\/renaissance-man-mid.jpg","genre":"Comedy","title":"Renaissance Man","releaseDate":770601600000,"language":"en","type":"Movie","_key":"43716"} +{"label":"Fair Game","description":"No overview found.","id":"11859","runtime":91,"imdbId":"tt0113010","version":154,"lastModified":"1301903075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4bf572a5017a3c772600007f\/fair-game-mid.jpg","genre":"Action","title":"Fair Game","releaseDate":815356800000,"language":"en","type":"Movie","_key":"43717"} +{"label":"Andrew Sipes","version":20,"id":"70850","lastModified":"1301902079000","name":"Andrew Sipes","type":"Person","_key":"43718"} +{"label":"Sabrina","description":"An ugly duckling having undergone a remarkable change, still harbors feelings for her crush: a carefree playboy, but not before his business-focused brother has something to say about it.","id":"11860","runtime":127,"imdbId":"tt0114319","version":209,"lastModified":"1301902401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f4\/4bc936a2017a3c57fe0169f4\/sabrina-mid.jpg","genre":"Comedy","title":"Sabrina","releaseDate":818985600000,"language":"en","type":"Movie","_key":"43719"} +{"label":"How To Make An American Quilt","description":"Bride-to-be Finn Dodd hears tales of romance and sorrow from her elders as they construct a quilt. Finn is a young graduate student, finishing a master's thesis, and preparing for marriage to her fiance Sam. But thoughts of the end of the free life, and a potential summer fling, intrude. She goes home to her grandmother, where, over the making of her wedding gift by a group of quilting-bee friends, laughter, bickering, love, and advice lead her toward a more open-eyed examination of her course.","id":"11861","runtime":117,"imdbId":"tt0113347","version":299,"lastModified":"1301903294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/436\/4d2b55545e73d626b0004436\/how-to-make-an-american-quilt-mid.jpg","genre":"Drama","title":"How To Make An American Quilt","releaseDate":812937600000,"language":"en","type":"Movie","_key":"43720"} +{"label":"Jocelyn Moorhouse","version":23,"id":"3047","lastModified":"1299493227000","name":"Jocelyn Moorhouse","type":"Person","_key":"43721"} +{"label":"Father of the Bride Part II","description":"Family trouble continues to plague George Banks. Having survived his daughter's marriage in the first film, he must now deal with her pregnancy. To complicate matters, his wife Nina is pregnant as well!","id":"11862","runtime":101,"imdbId":"tt0113041","trailer":"http:\/\/www.youtube.com\/watch?v=ltwvKLnj1B4 ","version":197,"lastModified":"1301903379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/135\/4d0845e67b9aa101d4000135\/father-of-the-bride-part-ii-mid.jpg","genre":"Comedy","title":"Father of the Bride Part II","releaseDate":818380800000,"language":"en","tagline":"Just When His World Is Back To Normal... He's In For The Surprise Of His Life!","type":"Movie","_key":"43722"} +{"label":"Jade","description":"Someone does a nasty hatchet job on a San Fransisco big noise and the Assistant D.A. takes charge of the investigation. Through a web of blackmail and prostitution involving the Governor, an old lover of the law man emerges as a prime suspect and he has to deal with his personal feelings as well as the case.","id":"11863","runtime":95,"imdbId":"tt0113451","version":221,"lastModified":"1301902433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0f\/4bc936a4017a3c57fe016a0f\/jade-mid.jpg","genre":"Action","title":"Jade","releaseDate":813542400000,"language":"en","tagline":"Some fantasies go too far","type":"Movie","_key":"43723"} +{"label":"Enemy Mine","description":"A soldier from Earth crashlands on an alien world after sustaining battle damage. Eventually he encounters another survivor, but from the enemy species he was fighting; they band together to survive on this hostile world. In the end the human finds himself caring for his enemy in a completely unexpected way.","id":"11864","runtime":108,"imdbId":"tt0089092","trailer":"http:\/\/www.youtube.com\/watch?v=2Xa1QNn7wOQ","version":267,"lastModified":"1301902088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a18\/4bc936a4017a3c57fe016a18\/enemy-mine-mid.jpg","genre":"Drama","title":"Enemy Mine","releaseDate":503884800000,"language":"en","type":"Movie","_key":"43724"} +{"label":"Richard Marcus","version":25,"id":"70782","lastModified":"1301902182000","name":"Richard Marcus","type":"Person","_key":"43725"} +{"label":"Flight of the Phoenix","description":"When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot \"A.J.\" are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert.","id":"11866","runtime":113,"imdbId":"tt0377062","trailer":"http:\/\/www.youtube.com\/watch?v=9Nxp_W0wC04","version":379,"lastModified":"1301902091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a32\/4bc936ab017a3c57fe016a32\/flight-of-the-phoenix-mid.jpg","genre":"Action","title":"Flight of the Phoenix","releaseDate":1103241600000,"language":"en","tagline":"Out of the ashes, hope will rise.","type":"Movie","_key":"43726"} +{"label":"Barb Wire","description":"Pamela Anderson stars as a bar owner\/mercenary Barb Wire. She becomes involved in a scheme about contact lenses that can help a scientist get across the American border to expose a governmental cover-up.","id":"11867","runtime":98,"imdbId":"tt0115624","trailer":"http:\/\/www.youtube.com\/watch?v=F2mk5MZwksg","version":390,"lastModified":"1301902194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a53\/4bc936ad017a3c57fe016a53\/barb-wire-mid.jpg","genre":"Action","title":"Barb Wire","releaseDate":831081600000,"language":"en","tagline":"Don't call me babe!","type":"Movie","_key":"43727"} +{"label":"David Hogan","version":21,"id":"70792","lastModified":"1301901475000","name":"David Hogan","type":"Person","_key":"43728"} +{"label":"Horror of Dracula","description":"After Jonathan Harker attacks Dracula at his castle (apparently somewhere in Germany), the vampire travels to a nearby city, where he preys on the family of Harker's fianc\u00e9e. The only one who may be able to protect them is Dr. van Helsing, Harker's friend and fellow-student of vampires, who is determined to destroy Dracula, whatever the cost.","id":"11868","runtime":82,"imdbId":"tt0051554","version":299,"lastModified":"1301903198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eaf\/4bfff016017a3c7037000eaf\/horror-of-dracula-mid.jpg","studio":"Hammer Film Productions","genre":"Horror","title":"Horror of Dracula","releaseDate":-367718400000,"language":"en","type":"Movie","_key":"43729"} +{"label":"Melissa Stribling","version":23,"id":"70794","lastModified":"1301902347000","name":"Melissa Stribling","type":"Person","_key":"43730"} +{"label":"Quax, der Bruchpilot","description":"No overview found.","id":"11869","runtime":92,"imdbId":"tt0034076","version":39,"lastModified":"1301905703000","genre":"Comedy","title":"Quax, der Bruchpilot","releaseDate":-884995200000,"language":"en","type":"Movie","_key":"43731"} +{"label":"Lothar Firmans","version":20,"id":"70795","lastModified":"1301901648000","name":"Lothar Firmans","type":"Person","_key":"43732"} +{"label":"Big Fat Liar","description":"Fourteen-year-old Jason Shepherd (Muniz) has a reputation for stretching the truth. So, when big-time Hollywood producer Marty Wolf (Paul Giamatti) steals his class paper and turns it into a smash movie, no one believes Jason's latest tall tale! On a cross-country adventure to set the record straight, Jason and best friend Kaylee (Bynes) devise a high-tech plan to squeeze the truth out of Wolf.","id":"11870","runtime":88,"imdbId":"tt0265298","version":167,"lastModified":"1301904070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7d\/4bc936b2017a3c57fe016a7d\/big-fat-liar-mid.jpg","genre":"Comedy","title":"Big Fat Liar","releaseDate":1013126400000,"language":"en","type":"Movie","_key":"43733"} +{"label":"Late Show","description":"No overview found.","id":"11871","runtime":111,"imdbId":"tt0188027","version":82,"lastModified":"1301904264000","genre":"Comedy","title":"Late Show","releaseDate":919814400000,"language":"en","type":"Movie","_key":"43734"} +{"label":"Er kann\u2019s nicht lassen","description":"No overview found.","id":"11872","runtime":94,"imdbId":"tt0055960","version":45,"lastModified":"1301904994000","genre":"Comedy","title":"Er kann\u2019s nicht lassen","releaseDate":-227318400000,"language":"en","type":"Movie","_key":"43735"} +{"label":"Axel von Ambesser","version":21,"id":"70800","lastModified":"1301901998000","name":"Axel von Ambesser","type":"Person","_key":"43736"} +{"label":"The Color of Money","description":"Fast Eddie Felson teaches a cocky but immensely talented prot\u00e9g\u00e9 the ropes of pool hustling, which in turn inspires him to make an unlikely comeback.","id":"11873","runtime":119,"imdbId":"tt0090863","trailer":"http:\/\/www.youtube.com\/watch?v=k7gmrKAFshE","version":267,"lastModified":"1301902227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a90\/4bc936b4017a3c57fe016a90\/the-color-of-money-mid.jpg","genre":"Drama","title":"The Color of Money","releaseDate":529113600000,"language":"en","type":"Movie","_key":"43737"} +{"label":"I Quattro Dell'Ave Maria","description":"No overview found.","id":"11874","runtime":132,"imdbId":"tt0064860","version":68,"lastModified":"1301903722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c1\/4c59283e5e73d63a700003c1\/i-quattro-dell-ave-maria-mid.jpg","genre":"Action","title":"I Quattro Dell'Ave Maria","releaseDate":-36892800000,"language":"en","type":"Movie","_key":"43738"} +{"label":"Pippi Langstrumpf","description":"No overview found.","id":"11875","title":"Pippi Langstrumpf","language":"en","lastModified":"1301907306000","version":24,"type":"Movie","_key":"43739"} +{"label":"The Horseman on the Roof","description":"In a time of war and disease, a young officer gallantly tries to help a young woman find her husband.","id":"11876","runtime":135,"imdbId":"tt0113362","version":234,"lastModified":"1301905557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9f\/4bc936b5017a3c57fe016a9f\/le-hussard-sur-le-toit-mid.jpg","genre":"Adventure","title":"The Horseman on the Roof","releaseDate":811555200000,"language":"en","type":"Movie","_key":"43740"} +{"label":"Der brave Soldat Schwejk","description":"No overview found.","id":"11877","runtime":96,"imdbId":"tt0053674","version":57,"lastModified":"1301905714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4ca9a19f7b9aa17aca000657\/der-brave-soldat-schwejk-mid.jpg","genre":"Comedy","title":"Der brave Soldat Schwejk","releaseDate":-292723200000,"language":"en","type":"Movie","_key":"43741"} +{"label":"Ursula von Borsody","version":20,"id":"70807","lastModified":"1301902174000","name":"Ursula von Borsody","type":"Person","_key":"43742"} +{"label":"Yojimbo","description":"A crafty ronin comes to a town divided by two criminal gangs and decides to play them against each other to free the town. ","id":"11878","runtime":110,"imdbId":"tt0055630","trailer":"http:\/\/www.youtube.com\/watch?v=MCo2QSikLAM","version":193,"lastModified":"1301902733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/390\/4bd2aa5b017a3c63e8000390\/yojimbo-mid.jpg","genre":"Action","title":"Yojimbo","releaseDate":-261964800000,"language":"en","type":"Movie","_key":"43743"} +{"label":"Y\u00f4ko Tsukasa","version":30,"id":"70811","lastModified":"1301901855000","name":"Y\u00f4ko Tsukasa","type":"Person","_key":"43744"} +{"label":"Near Dark","description":"A mid-western farm boy reluctantly becomes a member of the undead when a girl he meets turns out to be part of a band of southern vampires who roam the highways in stolen cars.","id":"11879","runtime":95,"imdbId":"tt0093605","version":463,"lastModified":"1301903137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4d8773105e73d67d26006136\/near-dark-mid.jpg","genre":"Horror","title":"Near Dark","releaseDate":560131200000,"language":"en","type":"Movie","_key":"43745"} +{"label":"Dog Soldiers","description":"A squad of British soldiers on training in the lonesome Scottish wilderness find a wounded Special Forces captain and the carnaged remains of his team. As they encounter zoologist Megan, it turns out that werewolves are active in the region. They have to prepare for some action as the there will be a full moon tonight...","id":"11880","runtime":101,"imdbId":"tt0280609","version":281,"lastModified":"1301902113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac7\/4bc936bb017a3c57fe016ac7\/dog-soldiers-mid.jpg","genre":"Action","title":"Dog Soldiers","releaseDate":1016755200000,"language":"en","tagline":"Six men. Full moon. No chance.","type":"Movie","_key":"43746"} +{"label":"Emma Cleasby","version":22,"id":"70815","lastModified":"1301901597000","name":"Emma Cleasby","type":"Person","_key":"43747"} +{"label":"Miracle on 34th Street","description":"Kris Kringle, seemingly the embodiment of Santa Claus, is asked to portray the jolly old fellow at Macy's following his performance in the Thanksgiving Day parade. His portrayal is so complete many begin to question if he truly is Santa Claus while others question his sanity. ","id":"11881","runtime":96,"imdbId":"tt0039628","version":273,"lastModified":"1301903211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad4\/4bc936bc017a3c57fe016ad4\/miracle-on-34th-street-mid.jpg","genre":"Comedy","title":"Miracle on 34th Street","releaseDate":-715392000000,"language":"en","type":"Movie","_key":"43748"} +{"label":"John Payne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4bd5b312017a3c657e000002\/john-payne-profile.jpg","version":33,"id":"70820","lastModified":"1301901575000","name":"John Payne","type":"Person","_key":"43749"} +{"label":"The Last Starfighter","description":"The Last Starfighter tells the story of Alex, a young man trapped n the life of a trailer park mechanic. His mastery of a video game leads to being recruited as the only hope of an intergalactic civilization nearly wiped out by a merciless enemy.","id":"11884","runtime":101,"imdbId":"tt0087597","trailer":"http:\/\/www.youtube.com\/watch?v=H7NaxBxFWSo","version":201,"lastModified":"1301902098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aea\/4bc936be017a3c57fe016aea\/the-last-starfighter-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Last Starfighter","releaseDate":458524800000,"language":"en","tagline":"He didn't find his dreams... his dreams found him.","type":"Movie","_key":"43750"} +{"label":"Barbara Bosson","version":21,"id":"70834","lastModified":"1301901438000","name":"Barbara Bosson","type":"Person","_key":"43751"} +{"label":"Norman Snow","version":21,"id":"129088","lastModified":"1301902761000","name":"Norman Snow","type":"Person","_key":"43752"} +{"label":"Robin Hood","description":"With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.","id":"11886","runtime":83,"imdbId":"tt0070608","version":310,"lastModified":"1301901505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4d2f48675e73d667e00000bc\/robin-hood-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"Robin Hood","releaseDate":121564800000,"language":"en","tagline":"Meet Robin Hood and his MERRY MENagerie!","type":"Movie","_key":"43753"} +{"label":"Brian Bedford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03a\/4cb37a9b5e73d6613800003a\/brian-bedford-profile.jpg","version":34,"id":"70843","lastModified":"1301901532000","name":"Brian Bedford","type":"Person","_key":"43754"} +{"label":"George Lindsey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/207\/4d0404c65e73d621a1002207\/george-lindsey-profile.jpg","version":26,"id":"141693","lastModified":"1301901703000","name":"George Lindsey","type":"Person","_key":"43755"} +{"label":"Monica Evans","version":21,"id":"143770","lastModified":"1301902098000","name":"Monica Evans","type":"Person","_key":"43756"} +{"label":"Johnny Withaker","version":18,"id":"143800","lastModified":"1301901956000","name":"Johnny Withaker","type":"Person","_key":"43757"} +{"label":"Billy Withaker","version":19,"id":"143801","lastModified":"1301902037000","name":"Billy Withaker","type":"Person","_key":"43758"} +{"label":"High School Musical 3: Senior Year","description":"As seniors in high school, Troy and Gabriella struggle with the idea of being separated from one another as college approaches. Along with the rest of the Wildcats, they stage a spring musical to address their experiences, hopes and fears about their future.","id":"11887","runtime":100,"imdbId":"tt0962726","trailer":"http:\/\/www.youtube.com\/watch?v=759","homepage":"http:\/\/disney.go.com\/disneypictures\/highschoolmusical3","version":607,"lastModified":"1301906249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2a\/4bc936c9017a3c57fe016b2a\/high-school-musical-3-senior-year-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"High School Musical 3: Senior Year","releaseDate":1224633600000,"language":"en","type":"Movie","_key":"43759"} +{"label":"Snow Dogs","description":"When a Miami dentist inherits a team of sled dogs, he's got to learn the trade or lose his pack to a crusty mountain man. ","id":"11888","runtime":95,"imdbId":"tt0281373","version":270,"lastModified":"1301902615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b33\/4bc936c9017a3c57fe016b33\/snow-dogs-mid.jpg","genre":"Adventure","title":"Snow Dogs","releaseDate":1024358400000,"language":"en","type":"Movie","_key":"43760"} +{"label":"Iris","description":"True story of the lifelong romance between novelist Iris Murdoch and her husband John Bayley, from their student days through her battle with Alzheimer's disease.","id":"11889","runtime":92,"imdbId":"tt0280778","version":140,"lastModified":"1301903200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3c\/4bc936cd017a3c57fe016b3c\/iris-mid.jpg","genre":"Drama","title":"Iris","releaseDate":1008288000000,"language":"en","type":"Movie","_key":"43761"} +{"label":"Oscar","description":"Angelo \"Snaps\" Provolone made his dying father a promise on his deathbed: he would leave the world of crime and become an honest businessman. Despite having no experience in making money in a legal fashion, Snaps sets about to keep his promice.","id":"11890","runtime":109,"imdbId":"tt0102603","trailer":"http:\/\/www.youtube.com\/watch?v=1302","version":144,"lastModified":"1301902646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b45\/4bc936cd017a3c57fe016b45\/oscar-mid.jpg","genre":"Comedy","title":"Oscar","releaseDate":672624000000,"language":"en","type":"Movie","_key":"43762"} +{"label":"Kung Pow: Enter the Fist","description":"a movie within a movie, created to spoof the martial arts genre. Writer\/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together. As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way, he encounters some strange characters","id":"11891","runtime":81,"imdbId":"tt0240468","version":284,"lastModified":"1301902353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b53\/4bc936ce017a3c57fe016b53\/kung-pow-enter-the-fist-mid.jpg","genre":"Action","title":"Kung Pow: Enter the Fist","releaseDate":1011916800000,"language":"en","type":"Movie","_key":"43763"} +{"label":"Yu Wang","version":30,"id":"70945","lastModified":"1301902006000","name":"Yu Wang","type":"Person","_key":"43764"} +{"label":"Hui Lou Chen","version":27,"id":"70946","lastModified":"1301901530000","name":"Hui Lou Chen","type":"Person","_key":"43765"} +{"label":"Tad Horino","version":24,"id":"70947","lastModified":"1301901604000","name":"Tad Horino","type":"Person","_key":"43766"} +{"label":"Murder by Numbers","description":"Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.","id":"11892","runtime":120,"imdbId":"tt0264935","version":328,"lastModified":"1301902853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f42\/4d4261627b9aa15bb0003f42\/murder-by-numbers-mid.jpg","genre":"Crime","title":"Murder by Numbers","releaseDate":1019174400000,"language":"en","tagline":"The only flaw in their plan was her.","type":"Movie","_key":"43767"} +{"label":"Runaway Train","description":"Two escaped convicts and a female railway worker find themselves trapped on a train with no brakes and nobody driving.","id":"11893","runtime":111,"imdbId":"tt0089941","trailer":"http:\/\/www.youtube.com\/watch?v=3IsWL-9kRis","version":200,"lastModified":"1301903226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16e\/4c9276f45e73d626f000016e\/runaway-train-mid.jpg","genre":"Action","title":"Runaway Train","releaseDate":502675200000,"language":"en","type":"Movie","_key":"43768"} +{"label":"Curly Sue","description":"ill Dancer and his young companion Curly Sue are the classic homeless folks with hearts of gold. Their scams are aimed not at turning a profit, but at getting enough to eat. When they scam the rich and beautiful Grey Ellison into believing she backed her Mercedes into Bill, they're only hoping for a free meal. But Grey is touched, and over the objections of her snotty fianc\u00e9.","id":"11894","runtime":101,"imdbId":"tt0101635","trailer":"http:\/\/www.youtube.com\/watch?v=1252","version":241,"lastModified":"1301903332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/203\/4cf326277b9aa149c8000203\/curly-sue-mid.jpg","studio":"Warner Bros. Pictures Co.","genre":"Comedy","title":"Curly Sue","releaseDate":688348800000,"language":"en","type":"Movie","_key":"43769"} +{"label":"Police Academy 6: City Under Siege","description":"Our favourite police men are called together to deal with a gang who rob banks and jewelers. Using their various talents as well as their extraordinary luck, the crooks stand no chance against our men and women wearing blue..","id":"11895","runtime":90,"imdbId":"tt0098105","version":213,"lastModified":"1301906476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8b\/4bc936d4017a3c57fe016b8b\/police-academy-6-city-under-siege-mid.jpg","genre":"Action","title":"Police Academy 6: City Under Siege","releaseDate":605491200000,"language":"en","type":"Movie","_key":"43770"} +{"label":"Peter Bonerz","version":21,"id":"14987","lastModified":"1301901689000","name":"Peter Bonerz","type":"Person","_key":"43771"} +{"label":"Throw Momma from the Train","description":"Larry Donner is a author and writing professor who tutors people who want to write books. Larry's life has become a misery when his Ex-wife has published a book he wrote under her name and has gotten rich over it. Owen Lift, one of Larry's students offers Larry to kill Larry's Ex-wife and in return Owen wants Larry to kill his horrible mother. Larry thinks it is a joke, until he learns Owen killed his Ex-wife and he has become the prime suspect.","id":"11896","runtime":88,"imdbId":"tt0094142","trailer":"http:\/\/www.youtube.com\/watch?v=nyvU2uKq1PI","version":416,"lastModified":"1301903053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9e\/4bc936d6017a3c57fe016b9e\/throw-momma-from-the-train-mid.jpg","genre":"Action","title":"Throw Momma from the Train","releaseDate":566179200000,"language":"en","type":"Movie","_key":"43772"} +{"label":"How the West Was Won","description":"Hollywood's most celebrated luminaries - behind the camera as well as in front of it - combine talents to present this epic tale of the development of the American West from the 1830s through the Civil War to the end of the century, as seen through the eyes of one pioneer family.","id":"11897","runtime":162,"imdbId":"tt0056085","trailer":"http:\/\/www.youtube.com\/watch?v=6RQbcUP8PO0","version":186,"lastModified":"1301903484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba7\/4bc936d7017a3c57fe016ba7\/how-the-west-was-won-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"How the West Was Won","releaseDate":-226195200000,"language":"en","type":"Movie","_key":"43773"} +{"label":"Eli Wallach","version":25,"id":"70861","lastModified":"1301902391000","name":"Eli Wallach","type":"Person","_key":"43774"} +{"label":"Richard Thorpe","version":64,"id":"70862","lastModified":"1301986210000","name":"Richard Thorpe","type":"Person","_key":"43775"} +{"label":"Kind Hearts and Coronets","description":"Louis Mazzini's mother belongs to the aristocratic family D'Ascoyne, but she ran away with an opera singer. Therefore, she and Louis were rejected by the D'Ascoynes. Once adult, Louis decides to avenges his mother and him, by becoming the next Duke of the family. Murdering every potential successor is clearly the safest way to achieve his goal.","id":"11898","runtime":106,"imdbId":"tt0041546","version":252,"lastModified":"1301902796000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb8\/4bc936d8017a3c57fe016bb8\/kind-hearts-and-coronets-mid.jpg","genre":"Comedy","title":"Kind Hearts and Coronets","releaseDate":-647913600000,"language":"en","type":"Movie","_key":"43776"} +{"label":"The Muppets Take Manhattan","description":"When the Muppets graduate from Danhurst College, they take their song-filled senior revue to New York City, only to learn that it isn't easy to find a producer who's willing to back a show starring a frog and a pig. Of course, Kermit the Frog and Miss Piggy won't take no for an answer, launching a search for someone to take them to Broadway.","id":"11899","runtime":94,"imdbId":"tt0087755","version":223,"lastModified":"1301902118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/111\/4d425c4b7b9aa15bbb004111\/the-muppets-take-manhattan-mid.jpg","genre":"Comedy","title":"The Muppets Take Manhattan","releaseDate":458524800000,"language":"en","type":"Movie","_key":"43777"} +{"label":"Juliana Donald","version":22,"id":"138568","lastModified":"1301901840000","name":"Juliana Donald","type":"Person","_key":"43778"} +{"label":"Louis Zorich","version":27,"id":"73210","lastModified":"1301902390000","name":"Louis Zorich","type":"Person","_key":"43779"} +{"label":"Linda Lavin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4cdc58d37b9aa137ff00009f\/linda-lavin-profile.jpg","version":31,"id":"113223","lastModified":"1301901602000","name":"Linda Lavin","type":"Person","_key":"43780"} +{"label":"Edward I. Koch","version":19,"id":"138569","lastModified":"1301902544000","name":"Edward I. Koch","type":"Person","_key":"43781"} +{"label":"Vincent Sardi Jr.","version":19,"id":"138570","lastModified":"1301902545000","name":"Vincent Sardi Jr.","type":"Person","_key":"43782"} +{"label":"Even Dwarfs Started Small","description":"The inhabitants of an institution in a remote country rebel against their keepers. Their acts of rebellion are by turns humorous, boring and alarming. An allegory on the problematic nature of fully liberating the human spirit, as both commendable and disturbing elements of our nature come forward. The film shows how justifiable revolt may be empowering, but may also turn to chaos and depravity. The allegory is developed in part by the fact that the film is cast entirely with dwarfs","id":"11900","runtime":96,"imdbId":"tt0065436","version":111,"lastModified":"1301904701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b4\/4cf6c71f5e73d6299e0014b4\/auch-zwerge-haben-klein-angefangen-mid.jpg","genre":"Comedy","title":"Even Dwarfs Started Small","releaseDate":34300800000,"language":"en","type":"Movie","_key":"43783"} +{"label":"Helmut D\u00f6ring","version":22,"id":"70870","lastModified":"1301902203000","name":"Helmut D\u00f6ring","type":"Person","_key":"43784"} +{"label":"Paul Glauer","version":22,"id":"70871","lastModified":"1301902198000","name":"Paul Glauer","type":"Person","_key":"43785"} +{"label":"Gisela Hertwig","version":22,"id":"70872","lastModified":"1301902190000","name":"Gisela Hertwig","type":"Person","_key":"43786"} +{"label":"Hertel Minkner","version":22,"id":"70873","lastModified":"1301902163000","name":"Hertel Minkner","type":"Person","_key":"43787"} +{"label":"High Plains Drifter","description":"A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.","id":"11901","runtime":105,"imdbId":"tt0068699","trailer":"http:\/\/www.youtube.com\/watch?v=i1almB9zxX4","version":147,"lastModified":"1301908011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcf\/4bc936dd017a3c57fe016bcf\/high-plains-drifter-mid.jpg","genre":"Action","title":"High Plains Drifter","releaseDate":104025600000,"language":"en","type":"Movie","_key":"43788"} +{"label":"Marianna Hill","version":29,"id":"15659","lastModified":"1301901589000","name":"Marianna Hill","type":"Person","_key":"43789"} +{"label":"Underground","description":"The story starts with the underground manufacturing of weapons of Belgrado, during WWII, and evolves into surreal situations. The smuggler of the weapons forgets to mention to the workers that the war is over. 50 years later, they become suspicious, and break out of their underground \"shelter\" --- only to convince themselves that the guy was right: the war is still going on.","id":"11902","runtime":170,"imdbId":"tt0114787","trailer":"http:\/\/www.youtube.com\/watch?v=iKdl5r7_ZPc","version":137,"lastModified":"1301903625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33e\/4c8d69957b9aa1674700033e\/underground-mid.jpg","genre":"Comedy","title":"Underground","releaseDate":814579200000,"language":"en","type":"Movie","_key":"43790"} +{"label":"Lazar Ristovski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46a\/4d6436ff7b9aa12a0900046a\/lazar-ristovski-profile.jpg","version":22,"id":"70874","lastModified":"1301901672000","name":"Lazar Ristovski","type":"Person","_key":"43791"} +{"label":"Mirjana Jokovic","version":23,"id":"70875","lastModified":"1301901632000","name":"Mirjana Jokovic","type":"Person","_key":"43792"} +{"label":"Slavko \u0160timac","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/415\/4d6436027b9aa12973000415\/slavko-timac-profile.jpg","version":29,"id":"70876","lastModified":"1301901444000","name":"Slavko \u0160timac","type":"Person","_key":"43793"} +{"label":"Crazy Race 2 \u2013 Warum die Mauer wirklich fiel","description":"No overview found.","id":"11903","runtime":93,"imdbId":"tt0433359","version":37,"lastModified":"1301904714000","genre":"Action","title":"Crazy Race 2 \u2013 Warum die Mauer wirklich fiel","releaseDate":1100995200000,"language":"en","type":"Movie","_key":"43794"} +{"label":"Wolke Hegenbarth","version":20,"id":"31441","lastModified":"1301901512000","name":"Wolke Hegenbarth","type":"Person","_key":"43795"} +{"label":"Manuel Witting","version":23,"id":"70880","lastModified":"1301901951000","name":"Manuel Witting","type":"Person","_key":"43796"} +{"label":"Young Sherlock Holmes","description":"Sherlock Holmes and Dr. Watson meet as boys in an English Boarding school. Holmes is known for his deductive ability even as a youth, amazing his classmates with his abilities. When they discover a plot to murder a series of British business men by an Egyptian cult, they move to stop it.","id":"11904","runtime":109,"imdbId":"tt0090357","version":521,"lastModified":"1301903094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be6\/4bc936df017a3c57fe016be6\/young-sherlock-holmes-mid.jpg","genre":"Action","title":"Young Sherlock Holmes","releaseDate":502502400000,"language":"en","type":"Movie","_key":"43797"} +{"label":"Alan Cox","version":26,"id":"70881","lastModified":"1301901489000","name":"Alan Cox","type":"Person","_key":"43798"} +{"label":"The Company of Wolves","description":"A bag full of symbolic folklore about werewolves, or, rather, their sexual connotation. Granny tells her granddaughter Rosaleen strange, disturbing tales about innocent maidens falling in love with handsome, heavily eyebrowed strangers with a smoldering look in their eyes; about sudden disappearances of spouses when the moon is round & the wolves are howling in the woods","id":"11905","runtime":95,"imdbId":"tt0087075","version":184,"lastModified":"1301903557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf4\/4bc936e0017a3c57fe016bf4\/the-company-of-wolves-mid.jpg","genre":"Fantasy","title":"The Company of Wolves","releaseDate":464054400000,"language":"en","type":"Movie","_key":"43799"} +{"label":"Sarah Patterson","version":22,"id":"70882","lastModified":"1301901723000","name":"Sarah Patterson","type":"Person","_key":"43800"} +{"label":"Tusse Silberg","version":20,"id":"70883","lastModified":"1301901873000","name":"Tusse Silberg","type":"Person","_key":"43801"} +{"label":"Suspiria","description":"A newcomer to a fancy ballet academy gradually comes to realize that the staff of the school are actually a coven of witches bent on chaos and destruction.","id":"11906","runtime":98,"imdbId":"tt0076786","homepage":"http:\/\/www.wildsideproject.com\/site\/suspiria\/","version":446,"lastModified":"1302039157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52b\/4d30e7037b9aa1451300052b\/suspiria-mid.jpg","studio":"Seda Spettacoli","genre":"Horror","title":"Suspiria","releaseDate":223603200000,"language":"en","type":"Movie","_key":"43802"} +{"label":"Miguel Bos\u00e9","version":22,"id":"54153","lastModified":"1301901937000","name":"Miguel Bos\u00e9","type":"Person","_key":"43803"} +{"label":"Barbara Magnolfi","version":17,"id":"94072","lastModified":"1301902480000","name":"Barbara Magnolfi","type":"Person","_key":"43804"} +{"label":"Susanna Javicoli","version":18,"id":"78543","lastModified":"1301902325000","name":"Susanna Javicoli","type":"Person","_key":"43805"} +{"label":"Eva Ax\u00e9n","version":21,"id":"94073","lastModified":"1301903001000","name":"Eva Ax\u00e9n","type":"Person","_key":"43806"} +{"label":"Keiner liebt mich","description":"No overview found.","id":"11907","runtime":104,"imdbId":"tt0110251","version":56,"lastModified":"1301905312000","genre":"Comedy","title":"Keiner liebt mich","releaseDate":789868800000,"language":"en","type":"Movie","_key":"43807"} +{"label":"Pierre Sanoussi-Bliss","version":24,"id":"70887","lastModified":"1301901950000","name":"Pierre Sanoussi-Bliss","type":"Person","_key":"43808"} +{"label":"Michael von Au","version":20,"id":"70888","lastModified":"1301902175000","name":"Michael von Au","type":"Person","_key":"43809"} +{"label":"Hatchet","description":"When a group of tourists on a New Orleans haunted swamp tour find themselves stranded in the wilderness, their evening of fun and spooks turns into a horrific nightmare.","id":"11908","runtime":83,"imdbId":"tt0422401","trailer":"http:\/\/www.youtube.com\/watch?v=3C33S_cqiJ8","homepage":"http:\/\/www.hatchetmovie.com\/","version":273,"lastModified":"1301903625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0e\/4bc936e6017a3c57fe016c0e\/hatchet-mid.jpg","genre":"Horror","title":"Hatchet","releaseDate":1189123200000,"language":"en","type":"Movie","_key":"43810"} +{"label":"Adam Green","version":52,"id":"70890","lastModified":"1301901714000","name":"Adam Green","type":"Person","_key":"43811"} +{"label":"Tamara Feldman","version":20,"id":"70899","lastModified":"1301901563000","name":"Tamara Feldman","type":"Person","_key":"43812"} +{"label":"Bullet in the Head","description":"Bullet in the Head portrays the distressing escapades of several friends cajoled, through a random act of violence, into sacrificing the idyllic innocence of youth to fanaticism and injustice of the Vietnam war.","id":"11909","runtime":136,"imdbId":"tt0099426","version":104,"lastModified":"1301903461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f20\/4d9757fc5e73d62248004f20\/die-xue-jie-tou-mid.jpg","studio":"Golden Princess Film Production Limited","genre":"Action","title":"Bullet in the Head","releaseDate":650851200000,"language":"en","type":"Movie","_key":"43813"} +{"label":"Hogfather","description":"It's Hogswatch (equivalent to Christmas) on the Discworld and the Hogfather has gone missing, requiring Death to take his place while his granddaughter Susan endeavors to find out what has happened.","id":"11910","runtime":189,"imdbId":"tt0765458","homepage":"http:\/\/www.skyone.co.uk\/hogfather\/","version":236,"lastModified":"1301902597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c20\/4bc936e7017a3c57fe016c20\/terry-pratchett-s-hogfather-mid.jpg","studio":"The Mob","genre":"Drama","title":"Hogfather","releaseDate":1166313600000,"language":"en","type":"Movie","_key":"43814"} +{"label":"David Jason","version":30,"id":"70902","lastModified":"1301901526000","name":"David Jason","type":"Person","_key":"43815"} +{"label":"Michelle Dockery","version":24,"id":"70904","lastModified":"1301901773000","name":"Michelle Dockery","type":"Person","_key":"43816"} +{"label":"Vadim Jean","version":26,"id":"70905","lastModified":"1301902048000","name":"Vadim Jean","type":"Person","_key":"43817"} +{"label":"Mephisto","description":"A German stage actor finds unexpected success and mixed blessings in the popularity of his performance in a Faustian play as the Nazis take power in pre-WWII Germany. As his associates and friends flee or are ground under by the Nazi terror, the popularity of his character supercedes his own existence until he finds that his best performance is keeping up appearances for his Nazi patrons.","id":"11911","runtime":144,"imdbId":"tt0082736","version":120,"lastModified":"1301903025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a3\/4c7a81477b9aa176be0001a3\/mephisto-mid.jpg","genre":"Drama","title":"Mephisto","releaseDate":357350400000,"language":"en","type":"Movie","_key":"43818"} +{"label":"Ildik\u00f3 B\u00e1ns\u00e1gi","version":22,"id":"70913","lastModified":"1301901996000","name":"Ildik\u00f3 B\u00e1ns\u00e1gi","type":"Person","_key":"43819"} +{"label":"The Tattooed One","description":"No overview found.","id":"11912","runtime":90,"imdbId":"tt0063674","version":80,"lastModified":"1301902919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d1\/4d10ba347b9aa114880003d1\/le-tatou-mid.jpg","genre":"Comedy","title":"The Tattooed One","releaseDate":-40608000000,"language":"en","type":"Movie","_key":"43820"} +{"label":"The Gendarme Takes Off","description":"The whole clique of Cruchot's police station is retired. Now he lives with his rich wife in her castle - and is bored almost to death. He fights with the butler, because he isn't even allowed to do the simple works. But when one of the clique suffers from amnesia after an accident, all of the others reunite and kidnap him, to take him on a tour to their old working places and through their memories. In their old uniforms they turn St. Tropez upside down.","id":"11913","runtime":90,"imdbId":"tt0065769","version":68,"lastModified":"1301907262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c36\/4bc936e9017a3c57fe016c36\/le-gendarme-en-balade-mid.jpg","genre":"Comedy","title":"The Gendarme Takes Off","releaseDate":25920000000,"language":"en","type":"Movie","_key":"43821"} +{"label":"Perched on a Tree","description":"Henry Roubier, a French promoter, and Enrico Mazzini, an Italian, have signed an agreement guaranteeing them a stranglehold on European highways. While driving on the roads of the south, Roubier takes two young hitchhikers, but an unfortunate swerve the car rushes by Henri and its occupants on the top of a pine tree onto the side of a cliff.","id":"11914","runtime":90,"imdbId":"tt0066423","version":81,"lastModified":"1301904695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3b\/4bc936ea017a3c57fe016c3b\/sur-un-arbre-perche-mid.jpg","genre":"Comedy","title":"Perched on a Tree","releaseDate":40435200000,"language":"en","type":"Movie","_key":"43822"} +{"label":"Le Gendarme et les Gendarmettes","description":"Cruchot's police office moves into a new building. They do not only get high tech equipment, but also four young female police officers to educate. All of them scramble to work with them -- and cause pure chaos while being distracted by the fine ladies. Then they get into real trouble when one after the other of their female colleagues is kidnapped.","id":"11915","runtime":100,"imdbId":"tt0083996","version":96,"lastModified":"1301902286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c50\/4bc936ee017a3c57fe016c50\/le-gendarme-et-les-gendarmettes-mid.jpg","studio":"Soci\u00e9t\u00e9 Nouvelle de Cin\u00e9matographie","genre":"Comedy","title":"Le Gendarme et les Gendarmettes","releaseDate":402710400000,"language":"en","type":"Movie","_key":"43823"} +{"label":"Tony Aboyantz","version":24,"id":"70937","lastModified":"1301901873000","name":"Tony Aboyantz","type":"Person","_key":"43824"} +{"label":"Two Mules for Sister Sara","description":"Set in Mexico, a nun called Sara is rescued from three cowboys by Hogan, who is on his way to do some reconnaissance, for a future mission to capture a French fort. The French are chasing Sara, but not for the reasons she tells Hogan, so he decides to help her in return for information about the fort defences. Inevitably the two become good friends but Sara has a secret.","id":"11916","runtime":116,"imdbId":"tt0065134","version":332,"lastModified":"1302039546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a3\/4c1e2dd55e73d607ba0001a3\/two-mules-for-sister-sara-mid.jpg","genre":"Action","title":"Two Mules for Sister Sara","releaseDate":14342400000,"language":"en","type":"Movie","_key":"43825"} +{"label":"Manuel F\u00e1bregas","version":20,"id":"70938","lastModified":"1301901553000","name":"Manuel F\u00e1bregas","type":"Person","_key":"43826"} +{"label":"Alberto Morin","version":20,"id":"70939","lastModified":"1301901933000","name":"Alberto Morin","type":"Person","_key":"43827"} +{"label":"Saw V","description":"When Hoffman learns that his secret connection to Jigsaw will be exposed, the forensics detective embarks on a hunt to eradicate everything that links him to the serial killer.","id":"11917","runtime":92,"imdbId":"tt1132626","trailer":"http:\/\/www.youtube.com\/watch?v=00cHLr90SgA","version":236,"lastModified":"1301901648000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73f\/4c54b9a17b9aa13d4c00073f\/saw-v-mid.jpg","studio":"Twisted Pictures","genre":"Horror","title":"Saw V","releaseDate":1224806400000,"language":"en","tagline":"In the end all the pieces will fit together","type":"Movie","_key":"43828"} +{"label":"David Hackl","version":33,"id":"2679","lastModified":"1299493851000","name":"David Hackl","type":"Person","_key":"43829"} +{"label":"Superhero Movie","description":"Orphaned high school student Rick Riker is bitten by a radioactive dragonfly, develops super powers, and becomes a hero. A spoof on Superhero movies by the creators of the \"Scary Movie\" franchise.","id":"11918","runtime":85,"imdbId":"tt0426592","trailer":"http:\/\/www.youtube.com\/watch?v=807","version":356,"lastModified":"1302060602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc936fd017a3c57fe016caf\/superhero-movie-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Superhero Movie","releaseDate":1206576000000,"language":"en","type":"Movie","_key":"43830"} +{"label":"Craig Mazin","version":61,"id":"35796","lastModified":"1302077493000","name":"Craig Mazin","type":"Person","_key":"43831"} +{"label":"Drake Bell","version":32,"id":"3272","lastModified":"1302077492000","name":"Drake Bell","type":"Person","_key":"43832"} +{"label":"Captain Cosmotic","description":"No overview found.","id":"11919","runtime":91,"imdbId":"tt0310849","version":45,"lastModified":"1301905271000","studio":"Neverhorst Company","genre":"Comedy","title":"Captain Cosmotic","releaseDate":883612800000,"language":"en","type":"Movie","_key":"43833"} +{"label":"Thilo Gosejohann","version":24,"id":"71312","lastModified":"1301902253000","name":"Thilo Gosejohann","type":"Person","_key":"43834"} +{"label":"Jan Hendrik Meyer","version":23,"id":"71313","lastModified":"1301902253000","name":"Jan Hendrik Meyer","type":"Person","_key":"43835"} +{"label":"Catrin Hansmerten","version":20,"id":"71314","lastModified":"1301902363000","name":"Catrin Hansmerten","type":"Person","_key":"43836"} +{"label":"Wolfgang Butzlaff","version":20,"id":"71315","lastModified":"1301901992000","name":"Wolfgang Butzlaff","type":"Person","_key":"43837"} +{"label":"Urlaub vom Leben","description":"No overview found.","id":"11920","runtime":83,"imdbId":"tt0477126","homepage":"http:\/\/www.urlaubvomleben.de\/","version":47,"lastModified":"1301904714000","studio":"ZDF \"Das Kleine Fernsehspiel\"","genre":"Drama","title":"Urlaub vom Leben","releaseDate":1131148800000,"language":"en","type":"Movie","_key":"43838"} +{"label":"Philip St\u00f6lken","version":20,"id":"71371","lastModified":"1301902331000","name":"Philip St\u00f6lken","type":"Person","_key":"43839"} +{"label":"Allein unter Frauen","description":"No overview found.","id":"11922","runtime":85,"imdbId":"tt0101306","version":41,"lastModified":"1301903476000","genre":"Comedy","title":"Allein unter Frauen","releaseDate":689472000000,"language":"en","type":"Movie","_key":"43840"} +{"label":"Jennifer Nitsch","version":22,"id":"70999","lastModified":"1301902004000","name":"Jennifer Nitsch","type":"Person","_key":"43841"} +{"label":"erol","description":"No overview found.","id":"11923","runtime":0,"version":40,"lastModified":"1301908444000","title":"erol","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"43842"} +{"label":"Michel aus L\u00f6nneberga","description":"No overview found.","id":"11924","title":"Michel aus L\u00f6nneberga","language":"en","lastModified":"1301908602000","version":62,"type":"Movie","_key":"43843"} +{"label":"Naken","description":"When Anders wakes up on his wedding day, he finds himself naked in an elevator, only remembering some of what happened.","id":"11925","runtime":94,"imdbId":"tt0269604","version":51,"lastModified":"1301904946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bf\/4d2771357b9aa134e00019bf\/naken-mid.jpg","studio":"Pratfilm","genre":"Comedy","title":"Naken","releaseDate":976838400000,"language":"en","type":"Movie","_key":"43844"} +{"label":"M\u00e5rten Knutsson","version":19,"id":"72681","lastModified":"1301902253000","name":"M\u00e5rten Knutsson","type":"Person","_key":"43845"} +{"label":"Torkel Knutsson","version":19,"id":"72682","lastModified":"1301902253000","name":"Torkel Knutsson","type":"Person","_key":"43846"} +{"label":"Henrik Norberg","version":19,"id":"72685","lastModified":"1301902078000","name":"Henrik Norberg","type":"Person","_key":"43847"} +{"label":"Lisa Kock","version":19,"id":"72686","lastModified":"1301902253000","name":"Lisa Kock","type":"Person","_key":"43848"} +{"label":"Martin Forsstr\u00f6m","version":20,"id":"72687","lastModified":"1301902253000","name":"Martin Forsstr\u00f6m","type":"Person","_key":"43849"} +{"label":"Anna J\u00e4rphammar","version":19,"id":"72688","lastModified":"1301902253000","name":"Anna J\u00e4rphammar","type":"Person","_key":"43850"} +{"label":"Victoria Silvstedt","version":20,"id":"72689","lastModified":"1301901768000","name":"Victoria Silvstedt","type":"Person","_key":"43851"} +{"label":"Dan Malmer","version":19,"id":"72690","lastModified":"1301902078000","name":"Dan Malmer","type":"Person","_key":"43852"} +{"label":"The Vanguard","description":"No overview found.","id":"11926","runtime":89,"imdbId":"tt0977669","version":131,"lastModified":"1301904885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd1\/4bc93702017a3c57fe016cd1\/the-vanguard-mid.jpg","studio":"Propaganda Pictures","genre":"Action","title":"The Vanguard","releaseDate":1202342400000,"language":"en","type":"Movie","_key":"43853"} +{"label":"Matthew Hope","version":22,"id":"72692","lastModified":"1301902253000","name":"Matthew Hope","type":"Person","_key":"43854"} +{"label":"Karen Admiraal","version":19,"id":"72693","lastModified":"1301902253000","name":"Karen Admiraal","type":"Person","_key":"43855"} +{"label":"Jack Bailey","version":19,"id":"72695","lastModified":"1301902253000","name":"Jack Bailey","type":"Person","_key":"43856"} +{"label":"Ray Bullock Jr.","version":19,"id":"72696","lastModified":"1301902253000","name":"Ray Bullock Jr.","type":"Person","_key":"43857"} +{"label":"Emma Choy","version":20,"id":"72697","lastModified":"1302076630000","name":"Emma Choy","type":"Person","_key":"43858"} +{"label":"Christopher Hatherall","version":19,"id":"73546","lastModified":"1301902253000","name":"Christopher Hatherall","type":"Person","_key":"43859"} +{"label":"Rovdyr","description":"Its the summer of 1974. Four friends have planned a recreational weekend hiking and camping in the forest. At a remote truck stop they pick up an anxious hitchhiker who only after a short ride demands they stop the vehicle. She is clearly frightened of somethingbut what she cant begin to describe in her carsick terror. Suddenly the group are ambushed and left unconscious.","id":"11927","runtime":78,"imdbId":"tt1054115","trailer":"http:\/\/www.youtube.com\/watch?v=ljExoJAMyFo","version":86,"lastModified":"1301904230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4bc93705017a3c57fe016cea\/rovdyr-mid.jpg","studio":"Fender Film","genre":"Horror","title":"Rovdyr","releaseDate":1199404800000,"language":"en","type":"Movie","_key":"43860"} +{"label":"Patrik Syversen","version":23,"id":"72712","lastModified":"1301902186000","name":"Patrik Syversen","type":"Person","_key":"43861"} +{"label":"Tetro","description":"Fresh faced and naive, 17-year-old Bennie arrives in Buenos Aires to search for his older brother who has been missing for more than a decade. The family had emigrated from Italy to Argentina, but with the great musical success of their father Carlo, an acclaimed symphony conductor, the family moved from Argentina to New York. When Bennie finds his brother, the volatile and melancholy poet Tetro, ","id":"11928","runtime":127,"imdbId":"tt0964185","trailer":"http:\/\/www.youtube.com\/watch?v=PcHhLbi3jj8","homepage":"http:\/\/www.tetro.com\/","version":428,"lastModified":"1301904495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/072\/4c3642e07b9aa102cf000072\/tetro-mid.jpg","studio":"American Zoetrope","genre":"Drama","title":"Tetro","releaseDate":1244678400000,"language":"en","tagline":"Every Family Has a Secret","type":"Movie","_key":"43862"} +{"label":"Alden Ehrenreich","version":23,"id":"71375","lastModified":"1301901673000","name":"Alden Ehrenreich","type":"Person","_key":"43863"} +{"label":"Dolores Claiborne","description":"A big-city reporter travels to the small town where her mother has been arrested for the murder of an elderly woman that she works for as a maid.","id":"11929","runtime":132,"imdbId":"tt0109642","version":212,"lastModified":"1301902676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d11\/4bc93707017a3c57fe016d11\/dolores-claiborne-mid.jpg","genre":"Drama","title":"Dolores Claiborne","releaseDate":796003200000,"language":"en","type":"Movie","_key":"43864"} +{"label":"Autobahnraser","description":"No overview found.","id":"11930","runtime":87,"imdbId":"tt0391774","version":107,"lastModified":"1301903359000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05b\/4bd7eab1017a3c1c0500005b\/autobahnraser-mid.jpg","genre":"Action","title":"Autobahnraser","releaseDate":1077148800000,"language":"en","type":"Movie","_key":"43865"} +{"label":"Luke Wilkins","version":25,"id":"70954","lastModified":"1301901349000","name":"Luke Wilkins","type":"Person","_key":"43866"} +{"label":"In Her Shoes","description":"Straight-laced Rose breaks off relations with her party girl sister, Maggie, over an indiscretion involving Rose's boyfriend. The chilly atmosphere is broken with the arrival of Ella, the grandmother neither sister knew existed.","id":"11931","runtime":130,"imdbId":"tt0388125","version":295,"lastModified":"1301902391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c1\/4ce777f05e73d625900001c1\/in-her-shoes-mid.jpg","genre":"Comedy","title":"In Her Shoes","releaseDate":1127520000000,"language":"en","tagline":"Friends. Rivals. Sisters.","type":"Movie","_key":"43867"} +{"label":"Bride of Chucky","description":"Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.","id":"11932","runtime":89,"imdbId":"tt0144120","trailer":"http:\/\/www.youtube.com\/watch?v=gtDElSGxU8s","version":235,"lastModified":"1301902768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3c\/4bc9370f017a3c57fe016d3c\/bride-of-chucky-mid.jpg","studio":"Midwinter Productions Inc.","genre":"Comedy","title":"Bride of Chucky","releaseDate":908496000000,"language":"en","tagline":"Chucky Gets Lucky.","type":"Movie","_key":"43868"} +{"label":"Nick Stabile","version":23,"id":"70958","lastModified":"1301902130000","name":"Nick Stabile","type":"Person","_key":"43869"} +{"label":"Nothing but Trouble","description":"Stock market millionaire Chris Thorne and investment lawyer Diane Lightson are headed to Atlantic City when they take the wrong exit off the New Jersey Turnpike. A local cop stops them for speeding in a curious town, where they're brought before 106-year-old Judge Alvin Valkenheiser. But the old man's punishment turns out to be as bizarre as he is.","id":"11933","runtime":94,"imdbId":"tt0102558","trailer":"http:\/\/www.youtube.com\/watch?v=BhGWBKoldr4","version":227,"lastModified":"1301902776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d45\/4bc93710017a3c57fe016d45\/nothing-but-trouble-mid.jpg","genre":"Action","title":"Nothing but Trouble","releaseDate":666576000000,"language":"en","tagline":"All they wanted was a little getaway. All they got was nothing but trouble.","type":"Movie","_key":"43870"} +{"label":"Valri Bromfield","version":24,"id":"113906","lastModified":"1301902892000","name":"Valri Bromfield","type":"Person","_key":"43871"} +{"label":"Bertila Damas","version":20,"id":"143171","lastModified":"1301902724000","name":"Bertila Damas","type":"Person","_key":"43872"} +{"label":"The Hudsucker Proxy","description":"A naive business graduate is installed as president of a manufacturing company as part of a stock scam.","id":"11934","runtime":111,"imdbId":"tt0110074","trailer":"http:\/\/www.youtube.com\/watch?v=M8C0QXDALKg","version":290,"lastModified":"1301903178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5a\/4bc93714017a3c57fe016d5a\/the-hudsucker-proxy-mid.jpg","genre":"Comedy","title":"The Hudsucker Proxy","releaseDate":763344000000,"language":"en","tagline":"A Comedy of Invention","type":"Movie","_key":"43873"} +{"label":"Capricorn One","description":"In order to protect the reputation of the American space program, a team of scientists stages a phony Mars landing. Willingly participating in the deception are a trio of well-meaning astronauts, who become liabilities when their space capsule is reported lost on re-entry. Now, with the help of a crusading reporter,they must battle a sinister conspiracy that will stop at nothing to keep the truth","id":"11935","runtime":123,"imdbId":"tt0077294","trailer":"http:\/\/www.youtube.com\/watch?v=RhLHAKoK35w","version":151,"lastModified":"1301902352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/263\/4d40cd8b5e73d65721000263\/capricorn-one-mid.jpg","genre":"Action","title":"Capricorn One","releaseDate":265593600000,"language":"en","tagline":"The mission was a sham. The murders were real.","type":"Movie","_key":"43874"} +{"label":"City of Women","description":"A businessman finds himself trapped at a hotel and threatened by women en masse.","id":"11936","runtime":149,"imdbId":"tt0080539","version":132,"lastModified":"1301903470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17d\/4ce750165e73d6259000017d\/la-citta-delle-donne-mid.jpg","genre":"Comedy","title":"City of Women","releaseDate":323049600000,"language":"en","type":"Movie","_key":"43875"} +{"label":"Bernice Stegers","version":21,"id":"70961","lastModified":"1301901347000","name":"Bernice Stegers","type":"Person","_key":"43876"} +{"label":"Donatella Damiani","version":21,"id":"70962","lastModified":"1301902017000","name":"Donatella Damiani","type":"Person","_key":"43877"} +{"label":"The Gods Must Be Crazy II","description":"Xixo is back again. This time, his children accidentally stow away on a fast-moving poachers' truck, unable to get off, and Xixo sets out to rescue them. Along the way, he encounters a couple of soldiers trying to capture each other and a pilot and passenger of a small plane, who are each having a few problems of their own.","id":"11937","runtime":98,"imdbId":"tt0097443","trailer":"http:\/\/www.youtube.com\/watch?v=XMlTZHg9Z6o","version":225,"lastModified":"1301908011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8b\/4bc9371b017a3c57fe016d8b\/the-gods-must-be-crazy-ii-mid.jpg","genre":"Comedy","title":"The Gods Must Be Crazy II","releaseDate":621734400000,"language":"en","type":"Movie","_key":"43878"} +{"label":"Lena Farugia","version":20,"id":"70965","lastModified":"1301902078000","name":"Lena Farugia","type":"Person","_key":"43879"} +{"label":"Hans Strydom","version":20,"id":"70966","lastModified":"1301901873000","name":"Hans Strydom","type":"Person","_key":"43880"} +{"label":"Eiros","version":20,"id":"70967","lastModified":"1301902078000","name":"Eiros","type":"Person","_key":"43881"} +{"label":"Clockwise","description":"No overview found.","id":"11938","runtime":96,"imdbId":"tt0090852","version":134,"lastModified":"1302020964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d99\/4bc9371e017a3c57fe016d99\/clockwise-mid.jpg","genre":"Comedy","title":"Clockwise","releaseDate":521424000000,"language":"en","type":"Movie","_key":"43882"} +{"label":"Penny Leatherbarrow","version":19,"id":"70971","lastModified":"1301901770000","name":"Penny Leatherbarrow","type":"Person","_key":"43883"} +{"label":"Howard Lloyd-Lewis","version":19,"id":"70972","lastModified":"1301901770000","name":"Howard Lloyd-Lewis","type":"Person","_key":"43884"} +{"label":"Jonathan Bowater","version":19,"id":"70973","lastModified":"1301901937000","name":"Jonathan Bowater","type":"Person","_key":"43885"} +{"label":"Christopher Morahan","version":19,"id":"70974","lastModified":"1301901937000","name":"Christopher Morahan","type":"Person","_key":"43886"} +{"label":"A Day at the Races","description":"Doctor Hugo Hackenbush, Tony, and Stuffy try and save Judy's farm by winning a big race with her horse. There are a few problems. Hackenbush runs a high priced clinic for the wealthy who don't know he has his degree in Veterinary Medicine.","id":"11939","runtime":111,"imdbId":"tt0028772","trailer":"http:\/\/www.youtube.com\/watch?v=XCDIRGouIV4","version":113,"lastModified":"1301904885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da7\/4bc9371f017a3c57fe016da7\/a-day-at-the-races-mid.jpg","genre":"Comedy","title":"A Day at the Races","releaseDate":-1027468800000,"language":"en","type":"Movie","_key":"43887"} +{"label":"Sam Wood","version":45,"id":"10790","lastModified":"1301901597000","name":"Sam Wood","type":"Person","_key":"43888"} +{"label":"Allan Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b9\/4c473db97b9aa15de20002b9\/allan-jones-profile.jpg","version":21,"id":"10802","lastModified":"1301901739000","name":"Allan Jones","type":"Person","_key":"43889"} +{"label":"Sinbad and the Eye of the Tiger","description":"No overview found.","id":"11940","runtime":113,"imdbId":"tt0076716","version":224,"lastModified":"1301902766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db0\/4bc93720017a3c57fe016db0\/sinbad-and-the-eye-of-the-tiger-mid.jpg","genre":"Action","title":"Sinbad and the Eye of the Tiger","releaseDate":237772800000,"language":"en","type":"Movie","_key":"43890"} +{"label":"Margaret Whiting","version":20,"id":"70983","lastModified":"1301901993000","name":"Margaret Whiting","type":"Person","_key":"43891"} +{"label":"Bring Me the Head of Alfredo Garcia","description":"An American bartender and his prostitute girlfriend go on a road trip through the Mexican underworld to collect a $1 million bounty on the head of a dead gigolo.","id":"11942","runtime":112,"imdbId":"tt0071249","version":166,"lastModified":"1302039536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbe\/4bc93720017a3c57fe016dbe\/bring-me-the-head-of-alfredo-garcia-mid.jpg","genre":"Action","title":"Bring Me the Head of Alfredo Garcia","releaseDate":145670400000,"language":"en","type":"Movie","_key":"43892"} +{"label":"Isela Vega","version":22,"id":"70984","lastModified":"1301902078000","name":"Isela Vega","type":"Person","_key":"43893"} +{"label":"Gig Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c4c\/4c0cf2a3017a3c29a6000c4c\/gig-young-profile.jpg","version":45,"id":"70985","lastModified":"1301901646000","name":"Gig Young","type":"Person","_key":"43894"} +{"label":"Jeremiah Johnson","description":"No overview found.","id":"11943","runtime":108,"imdbId":"tt0068762","version":197,"lastModified":"1301902664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd8\/4bc93727017a3c57fe016dd8\/jeremiah-johnson-mid.jpg","genre":"Action","title":"Jeremiah Johnson","releaseDate":84931200000,"language":"en","type":"Movie","_key":"43895"} +{"label":"Will Geer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d5\/4c7fa8327b9aa10d980002d5\/will-geer-profile.jpg","version":33,"id":"70990","lastModified":"1301901776000","name":"Will Geer","type":"Person","_key":"43896"} +{"label":"Delle Bolton","version":21,"id":"70991","lastModified":"1301902078000","name":"Delle Bolton","type":"Person","_key":"43897"} +{"label":"Josh Albee","version":21,"id":"70992","lastModified":"1301902253000","name":"Josh Albee","type":"Person","_key":"43898"} +{"label":"Joan of Arc","description":"Ten years before her death, Joan hears voices. Six years later, from the village of Domremy, she begins her mission to unite France under King Charles. First she leads a defense of Vaucouleurs against the Burgundians, then obtains safe passage to Charles, the Dauphin. He uses her, as the embodiment of the mythical \"Maid of Lorraine,\" to raise an army, and he sends her to the rescue of Orl\u00e9ans. After Charles is crowned, Joan leads a disastrous campaign in Paris, where her brother dies. Then she's","id":"11944","runtime":140,"imdbId":"tt0178145","version":125,"lastModified":"1301902903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de5\/4bc93728017a3c57fe016de5\/joan-of-arc-mid.jpg","genre":"Drama","title":"Joan of Arc","releaseDate":926812800000,"language":"en","type":"Movie","_key":"43899"} +{"label":"Emil i L\u00f6nneberga","description":"Emil, han vill s\u00e5 v\u00e4l och \u00e4nd\u00e5 g\u00e5r det s\u00e5 galet. N\u00e4r han h\u00f6r sin pappa vr\u00e5la \"EEEMIIL\" s\u00e5 det h\u00f6rs \u00f6ver hela Katthult, vet Emil att det bara finns ett s\u00e4kert st\u00e4lle h\u00e4r p\u00e5 jorden. Snickeboa. D\u00e4r kan han sitta och t\u00e4lja sin 104:e tr\u00e4gubbe tills allt har lugnat ner sig. Men lugnt, blir det inte p\u00e5 l\u00e4nge... Snart h\u00e4nger Emils syster Ida i flaggst\u00e5ngen, och Emil \u00e4r p\u00e5 v\u00e4g tillbaka till snickeboa...","id":"11945","runtime":95,"imdbId":"tt0067047","version":60,"lastModified":"1301902137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dee\/4bc93729017a3c57fe016dee\/emil-i-lonneberga-mid.jpg","studio":"Stella Films","genre":"Comedy","title":"Emil i L\u00f6nneberga","releaseDate":60652800000,"language":"en","type":"Movie","_key":"43900"} +{"label":"Lena Wisborg","version":26,"id":"71008","lastModified":"1301901563000","name":"Lena Wisborg","type":"Person","_key":"43901"} +{"label":"Emy Storm","version":26,"id":"71009","lastModified":"1301901563000","name":"Emy Storm","type":"Person","_key":"43902"} +{"label":"Nya hyss av Emil i L\u00f6nneberga","description":"\"EEEMIIIL\" vr\u00e5lar pappa Anton. D\u00e5 vet hela L\u00f6nneberga vem som varit i farten. Och att han s\u00e5 fort benen kan b\u00e4ra honom \u00e4r p\u00e5 v\u00e4g att r\u00e4dda sig in i snickeboa.\nHela L\u00f6nneberga \u00e4r bekymrade \u00f6ver vad det ska bli av den el\u00e4ndiga ungen. Men n\u00e4r Emils b\u00e4ste v\u00e4n, dr\u00e4ngen Alfred, blir sv\u00e5rt sjuk, d\u00e5 \u00e4r det Emil som sp\u00e4nner h\u00e4sten f\u00f6r sl\u00e4den och i tjutande sn\u00f6storm k\u00f6r Alfred till doktorn. ","id":"11946","runtime":91,"imdbId":"tt0070463","version":52,"lastModified":"1301902893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df3\/4bc9372a017a3c57fe016df3\/nya-hyss-av-emil-i-lonneberga-mid.jpg","genre":"Comedy","title":"Nya hyss av Emil i L\u00f6nneberga","releaseDate":88473600000,"language":"en","type":"Movie","_key":"43903"} +{"label":"Emil och Griseknoen","description":"Emil g\u00f6r fler hyss \u00e4n det finns dagar p\u00e5 \u00e5ret, s\u00e4ger hans mamam. Men han hinner med en del annat ocks\u00e5... Under auktionen i Backorva g\u00f6r Emil flera egendomliga aff\u00e4rer.Men det m\u00e4rkligaste sker, n\u00e4r Emil r\u00e4ddar livet p\u00e5 en liten nyf\u00f6dd gris. Emil tar inte bara hand om grisekoen, han l\u00e4r den sitta fint, hoppa h\u00f6gt och m\u00e5nga andra konster.Ingen i hela L\u00f6nneberga kunde v\u00e4l dr\u00f6mma om att en liten sm\u00e5landsgris kunde g\u00f6ra n\u00e5got s\u00e5dant!","id":"11947","runtime":95,"imdbId":"tt0072931","version":90,"lastModified":"1301903591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/300\/4bf1dce3017a3c3212000300\/emil-och-griseknoen-mid.jpg","studio":"Artfilm","genre":"Comedy","title":"Emil och Griseknoen","releaseDate":118713600000,"language":"en","type":"Movie","_key":"43904"} +{"label":"Merry Christmas Mr. Lawrence","description":"In 1942 British soldier Jack Celliers comes to a japanese prison camp. The camp is run by Yonoi, who has a firm belief in discipline, honour and glory. In his view, the allied prisoners are cowards when they chose to surrender instead of commiting suicide. One of the prisoners, interpreter John Lawrence, tries to explain the japanese way of thinking, but is considered a traitor.","id":"11948","runtime":118,"imdbId":"tt0085933","version":278,"lastModified":"1301902669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfd\/4bc9372a017a3c57fe016dfd\/merry-christmas-mr-lawrence-mid.jpg","genre":"Drama","title":"Merry Christmas Mr. Lawrence","releaseDate":422928000000,"language":"en","type":"Movie","_key":"43905"} +{"label":"Tom Conti","version":27,"id":"71010","lastModified":"1301901424000","name":"Tom Conti","type":"Person","_key":"43906"} +{"label":"Monty Python Live At The Hollywood Bowl","description":"Monty Python Live at the Hollywood Bowl is a 1982 concert film in which the Monty Python team perform many of their greatest sketches at the Hollywood Bowl, including several pre-Python ones.","id":"11949","runtime":77,"imdbId":"tt0084352","trailer":"http:\/\/www.youtube.com\/watch?v=Rziph7BOpdg","version":146,"lastModified":"1301904946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e06\/4bc9372b017a3c57fe016e06\/monty-python-live-at-the-hollywood-bowl-mid.jpg","genre":"Comedy","title":"Monty Python Live At The Hollywood Bowl","releaseDate":393811200000,"language":"en","type":"Movie","_key":"43907"} +{"label":"Terry Hughes","version":21,"id":"15239","lastModified":"1301904130000","name":"Terry Hughes","type":"Person","_key":"43908"} +{"label":"Neil Innes","version":25,"id":"70624","lastModified":"1301901495000","name":"Neil Innes","type":"Person","_key":"43909"} +{"label":"Cannonball Run II","description":"The original characters from the first Cannonball Run movie complete in an illegal race across the country once more in various cars and trucks.","id":"11950","runtime":108,"imdbId":"tt0087032","trailer":"http:\/\/www.youtube.com\/watch?v=P86Vht9NMes","version":245,"lastModified":"1301902896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25b\/4d40cd665e73d6572100025b\/cannonball-run-ii-mid.jpg","genre":"Action","title":"Cannonball Run II","releaseDate":457315200000,"language":"en","tagline":"The popcorn's in the lobby. The nuts are on the screen.","type":"Movie","_key":"43910"} +{"label":"Susan Anton","version":17,"id":"110866","lastModified":"1301902893000","name":"Susan Anton","type":"Person","_key":"43911"} +{"label":"Tim Conway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01e\/4bf06dba017a3c530800001e\/tim-conway-profile.jpg","version":45,"birthday":"-1137546000000","id":"83414","birthplace":"Willoughby, Ohio USA","lastModified":"1301902056000","name":"Tim Conway","type":"Person","_key":"43912"} +{"label":"Jim Nabors","version":23,"id":"84399","lastModified":"1301902674000","name":"Jim Nabors","type":"Person","_key":"43913"} +{"label":"Arte Johnson","version":26,"id":"83975","lastModified":"1301902141000","name":"Arte Johnson","type":"Person","_key":"43914"} +{"label":"Vanishing Point","description":"Kowalski works for a car delivery service. He takes delivery of a 1970 Dodge Challenger to take from Colorado to San Fransisco, California. Shortly after pickup, he takes a bet to get the car there in less than 15 hours.","id":"11951","runtime":106,"imdbId":"tt0067927","version":158,"lastModified":"1301902355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/010\/4d8509e95e73d653a6003010\/vanishing-point-mid.jpg","genre":"Action","title":"Vanishing Point","releaseDate":32745600000,"language":"en","type":"Movie","_key":"43915"} +{"label":"Victoria Medlin","version":20,"id":"71019","lastModified":"1301901637000","name":"Victoria Medlin","type":"Person","_key":"43916"} +{"label":"Der Untergang der Pamir","description":"No overview found.","id":"11952","runtime":180,"imdbId":"tt0473716","version":45,"lastModified":"1301903599000","genre":"Action","title":"Der Untergang der Pamir","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"43917"} +{"label":"Kagemusha","description":"When a warlord dies, a peasant thief is called upon to impersonate him, in order to protect his clan from appearing weak and vulnerable. But he finds himself haunted by the warlord\u2019s spirit as well as his own ambitions.","id":"11953","runtime":179,"imdbId":"tt0080979","version":208,"lastModified":"1301902870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e31\/4bc93732017a3c57fe016e31\/kagemusha-mid.jpg","genre":"Action","title":"Kagemusha","releaseDate":325555200000,"language":"en","type":"Movie","_key":"43918"} +{"label":"Kenichi Hagiwara","version":23,"id":"71027","lastModified":"1301901925000","name":"Kenichi Hagiwara","type":"Person","_key":"43919"} +{"label":"Lifeforce","description":"A space shuttle mission investigating Halley's Comet brings back a malevolent race of space vampires who transform most of London's population into zombies. The only survivor of the expedition and British authorities attempt to capture a mysterious but beautiful alien woman who appears responsible.","id":"11954","runtime":116,"imdbId":"tt0089489","version":167,"lastModified":"1301903223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4e\/4bc93739017a3c57fe016e4e\/lifeforce-mid.jpg","genre":"Horror","title":"Lifeforce","releaseDate":488160000000,"language":"en","type":"Movie","_key":"43920"} +{"label":"Iron Eagle II","description":"Chappy Sinclair is called to gather together a mixed Soviet\/U.S. strike force that will perform a surgical strike on a massively defended nuclear missile site in the Middle East. Chappy finds that getting the Soviet and U.S. Pilots to cooperate is only the most minor of his problems as he discovers someone in the Pentagon is actively sabotaging his mission.","id":"11955","runtime":105,"imdbId":"tt0095382","version":229,"lastModified":"1301905460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e57\/4bc93739017a3c57fe016e57\/iron-eagle-ii-mid.jpg","genre":"Action","title":"Iron Eagle II","releaseDate":595209600000,"language":"en","type":"Movie","_key":"43921"} +{"label":"Mark Humphrey","version":22,"id":"71033","lastModified":"1301901563000","name":"Mark Humphrey","type":"Person","_key":"43922"} +{"label":"Chacun cherche son chat","description":"No overview found.","id":"11956","runtime":91,"imdbId":"tt0115856","version":67,"lastModified":"1301903848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5b\/4d4743545e73d6108f000f5b\/chacun-cherche-son-chat-mid.jpg","genre":"Comedy","title":"Chacun cherche son chat","releaseDate":828489600000,"language":"en","type":"Movie","_key":"43923"} +{"label":"Garance Clavel","version":21,"id":"71776","lastModified":"1301902331000","name":"Garance Clavel","type":"Person","_key":"43924"} +{"label":"Olivier Py","version":21,"id":"71777","lastModified":"1301902365000","name":"Olivier Py","type":"Person","_key":"43925"} +{"label":"Peut-\u00eatre","description":"No overview found.","id":"11957","runtime":109,"imdbId":"tt0189916","version":77,"lastModified":"1301905088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e3\/4d41b2de5e73d657290008e3\/peut-tre-mid.jpg","studio":"M6 Films","genre":"Science Fiction","title":"Peut-\u00eatre","releaseDate":942192000000,"language":"en","type":"Movie","_key":"43926"} +{"label":"Mathieu Genet","version":19,"id":"71037","lastModified":"1301902253000","name":"Mathieu Genet","type":"Person","_key":"43927"} +{"label":"Ni pour, ni contre (bien au contraire)","description":"No overview found.","id":"11958","runtime":111,"imdbId":"tt0298082","version":70,"lastModified":"1301903708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e65\/4bc9373c017a3c57fe016e65\/ni-pour-ni-contre-bien-au-contraire-mid.jpg","studio":"Bac Films","genre":"Comedy","title":"Ni pour, ni contre (bien au contraire)","releaseDate":1034726400000,"language":"en","type":"Movie","_key":"43928"} +{"label":"Dimitri Storoge","version":19,"id":"71038","lastModified":"1301902253000","name":"Dimitri Storoge","type":"Person","_key":"43929"} +{"label":"UHF","description":"An unemployed visionary finds a job as the manager of a television station his uncle owns. Unfortunately, due to gambling debts, the uncle is forced to consider selling the station to a rival station's owner. With popular less-then network standards of programming, George and his friends try to save the town's new favorite station.","id":"11959","runtime":97,"imdbId":"tt0098546","trailer":"http:\/\/www.youtube.com\/watch?v=ULSL-taDLeg","version":313,"lastModified":"1302067526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4c8646fe5e73d66b5d000176\/uhf-mid.jpg","genre":"Comedy","title":"UHF","releaseDate":616982400000,"language":"en","type":"Movie","_key":"43930"} +{"label":"'Weird Al' Yankovic","version":24,"id":"71041","lastModified":"1301901248000","name":"'Weird Al' Yankovic","type":"Person","_key":"43931"} +{"label":"Anthony Geary","version":23,"id":"92684","lastModified":"1302067512000","name":"Anthony Geary","type":"Person","_key":"43932"} +{"label":"Jay Levey","version":21,"id":"71042","lastModified":"1301901381000","name":"Jay Levey","type":"Person","_key":"43933"} +{"label":"After This Our Exile","description":"After his mother flees the family home, a son turns to thieving in order to support his father, an abusive sort who is addicted to gambling.","id":"11960","runtime":159,"imdbId":"tt0768114","version":78,"lastModified":"1301902896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8c\/4bc93742017a3c57fe016e8c\/fu-zi-mid.jpg","genre":"Drama","title":"After This Our Exile","releaseDate":1160870400000,"language":"en","type":"Movie","_key":"43934"} +{"label":"Patrick Tam Kar-Ming","version":22,"id":"71063","lastModified":"1301901533000","name":"Patrick Tam Kar-Ming","type":"Person","_key":"43935"} +{"label":"King-to Ng","version":18,"id":"71064","lastModified":"1301901695000","name":"King-to Ng","type":"Person","_key":"43936"} +{"label":"The Langoliers","description":"On a red eye flight to Boston from LA 10 people wake up to a shock. All the passengers and crew have vanished. When they try to contact the ground they make no connections. They land the plane only to discover that things haven't changed. But its like the world is dead. No one is there, the air is still, sound doesn't echo, the food is tasteless. And a distant sound is heard coming closer.","id":"11961","runtime":180,"imdbId":"tt0112040","version":192,"lastModified":"1301902164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e95\/4bc93746017a3c57fe016e95\/the-langoliers-mid.jpg","genre":"Drama","title":"The Langoliers","releaseDate":800409600000,"language":"en","type":"Movie","_key":"43937"} +{"label":"Christopher Collet","version":24,"id":"114058","lastModified":"1301902731000","name":"Christopher Collet","type":"Person","_key":"43938"} +{"label":"Joe's Apartment","description":"A nice guy has just moved to New York and discovers that he must share his run-down apartment with a couple thousand singing, dancing cockroaches.","id":"11962","runtime":78,"imdbId":"tt0116707","trailer":"http:\/\/www.youtube.com\/watch?v=MEk4UlwPlmE","version":182,"lastModified":"1301904575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4bc93748017a3c57fe016eab\/joe-s-apartment-mid.png","genre":"Comedy","title":"Joe's Apartment","releaseDate":838339200000,"language":"en","tagline":"Sex Bugs Rock 'n Roll","type":"Movie","_key":"43939"} +{"label":"John Payson","version":22,"id":"71110","lastModified":"1301901639000","name":"John Payson","type":"Person","_key":"43940"} +{"label":"Three Days of the Condor","description":"A bookish CIA researcher finds all his co-workers dead, and must outwit those responsible until he figures out who he can really trust.","id":"11963","runtime":117,"imdbId":"tt0073802","trailer":"http:\/\/www.youtube.com\/watch?v=PBZf7vifXmY","version":328,"lastModified":"1301906527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebd\/4bc9374c017a3c57fe016ebd\/three-days-of-the-condor-mid.jpg","genre":"Mystery","title":"Three Days of the Condor","releaseDate":180748800000,"language":"en","type":"Movie","_key":"43941"} +{"label":"Die Spieler","description":"No overview found.","id":"11964","runtime":86,"trailer":"http:\/\/www.youtube.com\/watch?v=622","homepage":"http:\/\/www.tenletters.eu\/2.html","version":32,"lastModified":"1301903354000","genre":"Drama","title":"Die Spieler","releaseDate":1182297600000,"language":"en","type":"Movie","_key":"43942"} +{"label":"Sebastian Bieniek","version":20,"id":"71117","lastModified":"1301901345000","name":"Sebastian Bieniek","type":"Person","_key":"43943"} +{"label":"Fritzi Malve Voss","version":15,"id":"71120","lastModified":"1301901430000","name":"Fritzi Malve Voss","type":"Person","_key":"43944"} +{"label":"Thomas B. Hoffman","version":15,"id":"71121","lastModified":"1301901723000","name":"Thomas B. Hoffman","type":"Person","_key":"43945"} +{"label":"Sebastian Bieniek","version":15,"id":"71116","lastModified":"1301901535000","name":"Sebastian Bieniek","type":"Person","_key":"43946"} +{"label":"Viatcheslav Demdov","version":15,"id":"71500","lastModified":"1301901873000","name":"Viatcheslav Demdov","type":"Person","_key":"43947"} +{"label":"Ninel Genina Demidov","version":15,"id":"71501","lastModified":"1301902253000","name":"Ninel Genina Demidov","type":"Person","_key":"43948"} +{"label":"Uta Ziegler","version":15,"id":"71502","lastModified":"1301902253000","name":"Uta Ziegler","type":"Person","_key":"43949"} +{"label":"Sven Gerhardt","version":15,"id":"71503","lastModified":"1301902253000","name":"Sven Gerhardt","type":"Person","_key":"43950"} +{"label":"Silvester Home Run","description":"No overview found.","id":"11965","runtime":13,"imdbId":"tt1281125","homepage":"http:\/\/www.tenletters.eu\/8.html","version":77,"lastModified":"1301903648000","studio":"Deutsche Film- und Fernsehakademie Berlin","genre":"Drama","title":"Silvester Home Run","releaseDate":1220054400000,"language":"en","type":"Movie","_key":"43951"} +{"label":"Nicolai Zeitler","version":16,"id":"71738","lastModified":"1301901456000","name":"Nicolai Zeitler","type":"Person","_key":"43952"} +{"label":"Michael Kausch","version":19,"id":"71122","lastModified":"1301901395000","name":"Michael Kausch","type":"Person","_key":"43953"} +{"label":"Sabine Wegner","version":19,"id":"71123","lastModified":"1301901489000","name":"Sabine Wegner","type":"Person","_key":"43954"} +{"label":"Hannes Wegener","version":24,"id":"71589","lastModified":"1301901413000","name":"Hannes Wegener","type":"Person","_key":"43955"} +{"label":"Lennie Burmeister","version":19,"id":"71754","lastModified":"1301901489000","name":"Lennie Burmeister","type":"Person","_key":"43956"} +{"label":"Short Circuit 2","description":"Robot Johnny Five comes to the city and gets manipulated by criminals who want him for their own purposes.","id":"11966","runtime":110,"imdbId":"tt0096101","trailer":"http:\/\/www.youtube.com\/watch?v=1785","version":370,"lastModified":"1301902958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fb\/4d86195e5e73d67d260045fb\/short-circuit-2-mid.jpg","genre":"Action","title":"Short Circuit 2","releaseDate":584150400000,"language":"en","tagline":"Success will never spoil Number Five.","type":"Movie","_key":"43957"} +{"label":"Young Guns","description":"A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.","id":"11967","runtime":107,"imdbId":"tt0096487","version":238,"lastModified":"1301901370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/214\/4d1d63ff5e73d66b34000214\/young-guns-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"Young Guns","releaseDate":587347200000,"language":"en","tagline":"Six reasons why the west was wild.","type":"Movie","_key":"43958"} +{"label":"Into the Blue","description":"Red-hot action superstars Paul Walker and Jessica Alba heat up the screen as two sexy young divers who dream of finding hidden treasure. When they take some friends (Scott Caan and Ashley Scott) on an extreme sport adventure, the last thing they expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold.","id":"11968","runtime":110,"imdbId":"tt0378109","trailer":"http:\/\/www.youtube.com\/watch?v=EbAeP-9h62o","version":302,"lastModified":"1301901556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f06\/4bc93757017a3c57fe016f06\/into-the-blue-mid.jpg","genre":"Action","title":"Into the Blue","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"43959"} +{"label":"Matt Johnson","version":26,"id":"66824","lastModified":"1301901876000","name":"Matt Johnson","type":"Person","_key":"43960"} +{"label":"Ashley Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4bcc0cad017a3c0f2f000054\/ashley-scott-profile.jpg","version":40,"id":"71128","lastModified":"1301901087000","name":"Ashley Scott","type":"Person","_key":"43961"} +{"label":"Dwayne Adway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1dd\/4d20b62a7b9aa173670021dd\/dwayne-adway-profile.jpg","version":21,"id":"92589","lastModified":"1301901788000","name":"Dwayne Adway","type":"Person","_key":"43962"} +{"label":"Tombstone","description":"Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.","id":"11969","runtime":130,"imdbId":"tt0108358","trailer":"http:\/\/www.youtube.com\/watch?v=XTWYKf5hXIg","version":266,"lastModified":"1301901510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26f\/4c3b66645e73d671d000026f\/tombstone-mid.jpg","genre":"Action","title":"Tombstone","releaseDate":756777600000,"language":"en","tagline":"Justice is coming.","type":"Movie","_key":"43963"} +{"label":"Hercules","description":"Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!","id":"11970","runtime":93,"imdbId":"tt0119282","trailer":"http:\/\/www.youtube.com\/watch?v=1538","version":225,"lastModified":"1302059499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4f\/4bc93764017a3c57fe016f4f\/hercules-mid.jpg","genre":"Animation","title":"Hercules","releaseDate":867369600000,"language":"en","tagline":"Zero to Hero!","type":"Movie","_key":"43964"} +{"label":"Dominik Auer","version":26,"id":"71136","lastModified":"1302059499000","name":"Dominik Auer","type":"Person","_key":"43965"} +{"label":"Much Ado About Nothing","description":"Young lovers Hero and Claudio are to be married in one week. To pass the time, they conspire with Don Pedro to set a \"lover's trap\" for Benedick, an arrogant confirmed bachelor, and Beatrice, his favorite sparring partner.","id":"11971","runtime":111,"imdbId":"tt0107616","trailer":"http:\/\/www.youtube.com\/watch?v=bYj-2vFLbtc","version":197,"lastModified":"1301901997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5c\/4bc93765017a3c57fe016f5c\/much-ado-about-nothing-mid.jpg","genre":"Comedy","title":"Much Ado About Nothing","releaseDate":736732800000,"language":"en","type":"Movie","_key":"43966"} +{"label":"The Little World of Don Camillo","description":"In a village of the Po valley where the earth is hard and life miserly, the priest and the communist mayor are always fighting to be the head of the community. If in secret, they admired and liked each other, politics still divided them as it is dividing the country. And when the mayor wants his \"People's House\"; the priest wants his \"Garden City\" for the poor. Division exist between the richest and the poorest, the pious and the atheists and even between lovers. But if the people are hard as th","id":"11972","runtime":107,"imdbId":"tt0043918","version":90,"lastModified":"1301907289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a07\/4c5dca847b9aa151f4000a07\/don-camillo-mid.jpg","genre":"Comedy","title":"The Little World of Don Camillo","releaseDate":-562550400000,"language":"en","type":"Movie","_key":"43967"} +{"label":"Vera Talchi","version":23,"id":"71139","lastModified":"1301901993000","name":"Vera Talchi","type":"Person","_key":"43968"} +{"label":"Franco Interlenghi","version":30,"id":"71140","lastModified":"1301901529000","name":"Franco Interlenghi","type":"Person","_key":"43969"} +{"label":"Thirteen Days","description":"Dramatisation of the Cuban Missile Crisis, the nuclear standoff with the USSR sparked by the discovery by the Americans of missle bases established on the Soviet allied island of Cuba. Shown from the perspective of the US President, John F Kennedy, his staff and advisors.","id":"11973","runtime":145,"imdbId":"tt0146309","trailer":"http:\/\/www.youtube.com\/watch?v=M19tgYuwVWc","version":267,"lastModified":"1301903979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f69\/4bc93766017a3c57fe016f69\/thirteen-days-mid.jpg","genre":"Drama","title":"Thirteen Days","releaseDate":977702400000,"language":"en","type":"Movie","_key":"43970"} +{"label":"The 'Burbs","description":"When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.","id":"11974","runtime":101,"imdbId":"tt0096734","trailer":"http:\/\/www.youtube.com\/watch?v=1944","version":163,"lastModified":"1301907678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fca\/4d4788367b9aa15bb500bfca\/the-burbs-mid.jpg","genre":"Comedy","title":"The 'Burbs","releaseDate":603676800000,"language":"en","tagline":"He's a man of peace in a savage land... Suburbia.","type":"Movie","_key":"43971"} +{"label":"Cory Danziger","version":26,"id":"71143","lastModified":"1301901475000","name":"Cory Danziger","type":"Person","_key":"43972"} +{"label":"Gale Gordon","version":29,"id":"83465","lastModified":"1301901466000","name":"Gale Gordon","type":"Person","_key":"43973"} +{"label":"The Rainmaker","description":"When Rudy Baylor (Matt Damon), a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company (represented by a ruthless Jon Voight). But to take on corporate America, Rudy and a scrappy paralegal (Danny DeVito) must open their own law firm.","id":"11975","runtime":135,"imdbId":"tt0119978","trailer":"http:\/\/www.youtube.com\/watch?v=1597","version":261,"lastModified":"1301905050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f98\/4bc9376e017a3c57fe016f98\/the-rainmaker-mid.jpg","genre":"Drama","title":"The Rainmaker","releaseDate":879811200000,"language":"en","type":"Movie","_key":"43974"} +{"label":"Legend","description":"A young man must stop the Lord of Darkness from both destroying daylight and marrying the woman he loves.","id":"11976","runtime":94,"imdbId":"tt0089469","trailer":"http:\/\/www.youtube.com\/watch?v=CTqlbDddnVU","version":200,"lastModified":"1301902126000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa5\/4bc9376f017a3c57fe016fa5\/legend-mid.jpg","genre":"Adventure","title":"Legend","releaseDate":494035200000,"language":"en","type":"Movie","_key":"43975"} +{"label":"Caddyshack","description":"At an exclusive country club, an ambitious young caddy Danny Noonan(Michael O'Keefe) eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favor of the elitist Judge Smails (Ted Knight), then the caddy golf tournament which the good judge sponsors. Jeremy Beday, All Movie Guide ","id":"11977","runtime":98,"imdbId":"tt0080487","trailer":"http:\/\/www.youtube.com\/watch?v=zrTqenN1SqQ","version":326,"lastModified":"1301907767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4ce578317b9aa179bc00002c\/caddyshack-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Caddyshack","releaseDate":333331200000,"language":"en","tagline":"The snobs against the slobs!","type":"Movie","_key":"43976"} +{"label":"Ted Knight","version":24,"id":"71146","lastModified":"1301901484000","name":"Ted Knight","type":"Person","_key":"43977"} +{"label":"Men of Honor","description":"Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.","id":"11978","runtime":129,"imdbId":"tt0203019","trailer":"http:\/\/www.youtube.com\/watch?v=2320","version":375,"lastModified":"1301901983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe4\/4bc93779017a3c57fe016fe4\/men-of-honor-mid.jpg","genre":"Drama","title":"Men of Honor","releaseDate":968889600000,"language":"en","tagline":"History is made by those who break the rules.","type":"Movie","_key":"43978"} +{"label":"George Tillman Jr.","version":41,"id":"66121","lastModified":"1301901080000","name":"George Tillman Jr.","type":"Person","_key":"43979"} +{"label":"Queen of the Damned","description":"Lestat de Lioncourt is awakened from his slumber. Bored with his existence he has now become this generations new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He want's immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen want's him for her King. Who will be the first to reach him? Who shall win?","id":"11979","runtime":101,"imdbId":"tt0238546","version":149,"lastModified":"1301902515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff5\/4bc9377b017a3c57fe016ff5\/queen-of-the-damned-mid.jpg","genre":"Drama","title":"Queen of the Damned","releaseDate":1013299200000,"language":"en","type":"Movie","_key":"43980"} +{"label":"The Prophecy","description":"The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him. ","id":"11980","runtime":98,"imdbId":"tt0114194","version":139,"lastModified":"1301905465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffe\/4bc9377c017a3c57fe016ffe\/the-prophecy-mid.jpg","genre":"Fantasy","title":"The Prophecy","releaseDate":809913600000,"language":"en","type":"Movie","_key":"43981"} +{"label":"Gregory Widen","version":45,"id":"28902","lastModified":"1301901499000","name":"Gregory Widen","type":"Person","_key":"43982"} +{"label":"Die Supernasen","description":"No overview found.","id":"11981","runtime":88,"imdbId":"tt0086394","version":53,"lastModified":"1301903708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00f\/4bc9377f017a3c57fe01700f\/die-supernasen-mid.jpg","genre":"Comedy","title":"Die Supernasen","releaseDate":431827200000,"language":"en","type":"Movie","_key":"43983"} +{"label":"Liane Hielscher","version":19,"id":"71152","lastModified":"1301901873000","name":"Liane Hielscher","type":"Person","_key":"43984"} +{"label":"Thea Gottschalk","version":19,"id":"71153","lastModified":"1301901873000","name":"Thea Gottschalk","type":"Person","_key":"43985"} +{"label":"Look Who's Talking Now","description":"When Samantha LeBon hatches a scheme to spend a romantic Christmas with her new employee -- the unsuspecting, blithesome James -- his wife, their kids and their two dogs, Rocks and Daphne, must rescue him before he makes a terrible mistake.","id":"11982","runtime":96,"imdbId":"tt0107438","version":353,"lastModified":"1301902551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/079\/4d5b10907b9aa1123e000079\/look-who-s-talking-now-mid.jpg","genre":"Comedy","title":"Look Who's Talking Now","releaseDate":752457600000,"language":"en","tagline":"The World's Favorite Family is Back.","type":"Movie","_key":"43986"} +{"label":"Tom Ropelewski","version":27,"id":"19305","lastModified":"1301901798000","name":"Tom Ropelewski","type":"Person","_key":"43987"} +{"label":"Tabitha Lupien","version":22,"id":"71167","lastModified":"1301901873000","name":"Tabitha Lupien","type":"Person","_key":"43988"} +{"label":"Proof of Life","description":"Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.","id":"11983","runtime":135,"imdbId":"tt0228750","version":367,"lastModified":"1301902579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fa\/4d91dc5b5e73d65f110037fa\/proof-of-life-mid.jpg","genre":"Action","title":"Proof of Life","releaseDate":976233600000,"language":"en","type":"Movie","_key":"43989"} +{"label":"Finnischer Tango","description":"No overview found.","id":"11984","runtime":90,"imdbId":"tt0953394","homepage":"http:\/\/www.finnischertango.de\/","version":71,"lastModified":"1301903867000","studio":"Geisberg Studios","genre":"Comedy","title":"Finnischer Tango","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"43990"} +{"label":"Christoph Bach","version":22,"id":"71514","lastModified":"1301901662000","name":"Christoph Bach","type":"Person","_key":"43991"} +{"label":"Nele Winkler","version":19,"id":"71515","lastModified":"1301901772000","name":"Nele Winkler","type":"Person","_key":"43992"} +{"label":"AI","description":"No overview found.","id":"11985","runtime":118,"imdbId":"tt0109066","version":99,"lastModified":"1301904406000","genre":"Drama","title":"AI","releaseDate":778464000000,"language":"en","type":"Movie","_key":"43993"} +{"label":"Kang-sheng Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5b\/4d346fb25e73d63352007a5b\/kang-sheng-lee-profile.jpg","version":32,"id":"71171","lastModified":"1301901672000","name":"Kang-sheng Lee","type":"Person","_key":"43994"} +{"label":"Chao-jung Chen","version":19,"id":"71172","lastModified":"1301901813000","name":"Chao-jung Chen","type":"Person","_key":"43995"} +{"label":"Kuei-Mei Yang","version":18,"id":"71173","lastModified":"1301901515000","name":"Kuei-Mei Yang","type":"Person","_key":"43996"} +{"label":"Ming-liang Tsai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4d34161f5e73d6335200410e\/ming-liang-tsai-profile.jpg","version":38,"id":"71174","lastModified":"1301901597000","name":"Ming-liang Tsai","type":"Person","_key":"43997"} +{"label":"Betty Blue","description":"Betty Blue, a mentally unbalanced and sexually aggressive free spirit who becomes involved with Zorg, a repairman moonlighting as a writer. The two engage in a variety of sexual encounters, and grow more passionate toward each other. Betty finds Zorg's book and is aggressively supportive; over time, her instability begin to catch up with her,leading to a grisly and shocking conclusion.","id":"11986","runtime":178,"imdbId":"tt0090563","version":113,"lastModified":"1302039353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/036\/4bc93782017a3c57fe017036\/372-le-matin-mid.jpg","genre":"Drama","title":"Betty Blue","releaseDate":513388800000,"language":"en","type":"Movie","_key":"43998"} +{"label":"Consuelo De Haviland","version":22,"id":"71177","lastModified":"1301901723000","name":"Consuelo De Haviland","type":"Person","_key":"43999"} +{"label":"Gagarin, ya vas lyubila","description":"No overview found.","id":"12073","runtime":53,"imdbId":"tt1461227","version":27,"lastModified":"1301904475000","genre":"Documentary","title":"Gagarin, ya vas lyubila","releaseDate":694224000000,"language":"en","type":"Movie","_key":"52197"} +{"label":"Valentina Rudenko","version":20,"id":"71179","lastModified":"1301901402000","name":"Valentina Rudenko","type":"Person","_key":"52198"} +{"label":"Berlinerpoplene","description":"No overview found.","id":"12074","runtime":300,"imdbId":"tt1127904","homepage":"http:\/\/www.nrk.no\/berlinerpoplene\/","version":39,"lastModified":"1301908586000","genre":"Drama","title":"Berlinerpoplene","releaseDate":1191801600000,"language":"en","type":"Movie","_key":"52199"} +{"label":"Anders T. Andersen","version":20,"id":"71180","lastModified":"1301901957000","name":"Anders T. Andersen","type":"Person","_key":"52200"} +{"label":"Sirin Eide","version":20,"id":"71181","lastModified":"1301902153000","name":"Sirin Eide","type":"Person","_key":"52201"} +{"label":"Nils Sletta","version":20,"id":"71184","lastModified":"1301901957000","name":"Nils Sletta","type":"Person","_key":"52202"} +{"label":"Espen Skj\u00f8nberg","version":22,"id":"71185","lastModified":"1301901957000","name":"Espen Skj\u00f8nberg","type":"Person","_key":"52203"} +{"label":"Bj\u00f8rn Sundquist","version":35,"id":"71186","lastModified":"1301901565000","name":"Bj\u00f8rn Sundquist","type":"Person","_key":"52204"} +{"label":"Jon \u00d8igarden","version":27,"id":"71187","lastModified":"1301901957000","name":"Jon \u00d8igarden","type":"Person","_key":"52205"} +{"label":"Morten Rose","version":20,"id":"71188","lastModified":"1301902363000","name":"Morten Rose","type":"Person","_key":"52206"} +{"label":"Elling","description":"No overview found.","id":"12075","version":155,"lastModified":"1301905469000","genre":"Comedy","title":"Elling","language":"en","type":"Movie","_key":"52207"} +{"label":"Elsk meg i morgen","description":"No overview found.","id":"12076","runtime":90,"imdbId":"tt0472767","version":30,"lastModified":"1300979401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/127\/4d2375f17b9aa17373004127\/elsk-meg-i-morgen-mid.jpg","genre":"Comedy","title":"Elsk meg i morgen","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"52208"} +{"label":"St. Trinian's","description":"No overview found.","id":"12077","version":139,"lastModified":"1301906250000","genre":"Comedy","title":"St. Trinian's","language":"en","type":"Movie","_key":"52209"} +{"label":"Sk\u0159iv\u00e1nci na niti","description":"SK\u0158IV\u00c1NKY NA NITI nato\u010dil v roce 1969 Ji\u0159\u00ed Menzel na motivy pov\u00eddek z knihy Bohumila Hrabala Inzer\u00e1t na d\u016fm, ve kter\u00e9m u\u017e nechci bydlet (1965). Dvacet let z\u016fstal film uzav\u0159en v trezoru, proto\u017ee odkr\u00fdval skute\u010dnosti pades\u00e1t\u00fdch let, je\u017e m\u011bly z\u016fstat skryty. Jeho d\u011bj se odehr\u00e1v\u00e1 v kladensk\u00fdch ocel\u00e1rn\u00e1ch, kam byli pos\u00edl\u00e1ni na brig\u00e1du \"politi\u010dt\u00ed provinilci\" (\u017eivnostn\u00edci, intelektu\u00e1lov\u00e9 i lidi pevn\u00ed v n\u00e1bo\u017eensk\u00e9 v\u00ed\u0159e). Vedle nich pracuj\u00ed na \u0161roti\u0161ti i \u017eeny a d\u00edvky, uv\u011bzn\u011bn\u00e9 za pokus o \u00fat\u011bk za hranice, ","id":"12078","runtime":94,"imdbId":"tt0064994","version":112,"lastModified":"1301906116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91e\/4ca2fc355e73d67b5f00091e\/skrivanci-na-niti-mid.jpg","studio":"Filmov\u00e9 Studio Barrandov","genre":"Drama","title":"Sk\u0159iv\u00e1nci na niti","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"52210"} +{"label":"Rudolf Hru\u0161\u00ednsk\u00fd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c0\/4ca2fd3f5e73d612d70004c0\/rudolf-hrusinsky-profile.jpg","biography":"<P>\u200b\u201eNikdo nebude trp\u011bt, spas\u00edm je v\u0161ecky. V\u0161ecky je spas\u00edm! Cel\u00fd sv\u011bt\u2026\u201c<\/P>\r\n<P>T\u011b\u0161\u00ed se vt\u011blen\u00e9 zlo v Karlu Kopfrkinglovi, kdy\u017e odj\u00ed\u017ed\u00ed pom\u00e1hat Nacist\u016fm uskute\u010d\u0148ovat Kone\u010dn\u00e9 \u0159e\u0161en\u00ed. Pr\u00e1v\u011b \u010f\u00e1belsky a podiv\u00ednsky \u00e9terick\u00fd Karel Kopfrkingl, jen\u017e se nechal zfanatizovat nacistickou ideologi\u00ed, zabil svou \u017eidovskou \u017eenu, syna a pokusil se usmrtit i svoji dceru, je nejlep\u0161\u00ed a nej\u00fachvatn\u011bj\u0161\u00ed hereck\u00e1 kreace Rudolfa Hru\u0161\u00ednsk\u00e9ho star\u0161\u00edho (i v\u016fbec jeden z nejlep\u0161\u00edch hereck\u00fdch v\u00fdkon\u016f v d\u011bjin\u00e1ch \u010desk\u00e9 kinemato","version":44,"birthday":"-1552870800000","id":"73557","birthplace":"Nov\u00fd Etynk","lastModified":"1301901209000","name":"Rudolf Hru\u0161\u00ednsk\u00fd","type":"Person","_key":"52211"} +{"label":"Jaroslav Satoransk\u00fd","version":20,"id":"73558","lastModified":"1301902132000","name":"Jaroslav Satoransk\u00fd","type":"Person","_key":"52212"} +{"label":"Vladim\u00edr Smeral","version":20,"id":"73559","lastModified":"1301902132000","name":"Vladim\u00edr Smeral","type":"Person","_key":"52213"} +{"label":"Spun","description":"Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.","id":"12079","runtime":101,"imdbId":"tt0283003","trailer":"http:\/\/www.youtube.com\/watch?v=lrWD1kVi0ME","version":153,"lastModified":"1301903087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4bc93783017a3c57fe017048\/spun-mid.jpg","genre":"Comedy","title":"Spun","releaseDate":1022889600000,"language":"en","tagline":"the ultimate speed freak's tale.","type":"Movie","_key":"52214"} +{"label":"Jonas \u00c5kerlund","version":34,"id":"71329","lastModified":"1301901430000","name":"Jonas \u00c5kerlund","type":"Person","_key":"52215"} +{"label":"Chloe Hunter","version":22,"id":"71335","lastModified":"1301902078000","name":"Chloe Hunter","type":"Person","_key":"52216"} +{"label":"Dr. Alem\u00e1n","description":"No overview found.","id":"12083","runtime":106,"imdbId":"tt1249429","homepage":"http\/\/www.dr-aleman.com","version":55,"lastModified":"1301905681000","studio":"2Pilots Filmproduction","genre":"Adventure","title":"Dr. Alem\u00e1n","releaseDate":1218672000000,"language":"en","type":"Movie","_key":"52217"} +{"label":"Marleyda Soto","version":19,"id":"71199","lastModified":"1301901938000","name":"Marleyda Soto","type":"Person","_key":"52218"} +{"label":"Andr\u00e9s Parra","version":19,"id":"71200","lastModified":"1301902132000","name":"Andr\u00e9s Parra","type":"Person","_key":"52219"} +{"label":"Hern\u00e1n M\u00e9ndez","version":19,"id":"72808","lastModified":"1301902309000","name":"Hern\u00e1n M\u00e9ndez","type":"Person","_key":"52220"} +{"label":"Tom Schreiber","version":19,"id":"71202","lastModified":"1301901772000","name":"Tom Schreiber","type":"Person","_key":"52221"} +{"label":"Mad Money","description":"Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.","id":"12085","runtime":104,"imdbId":"tt0951216","version":255,"lastModified":"1301906240000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c8\/4d1a0b197b9aa126170013c8\/mad-money-mid.jpg","studio":"Big City Pictures","genre":"Action","title":"Mad Money","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"52222"} +{"label":"Roger R. Cross","version":22,"id":"25877","lastModified":"1301901858000","name":"Roger R. Cross","type":"Person","_key":"52223"} +{"label":"Machuca","description":"Two boys observe a political coup in their native Chile.","id":"12086","runtime":121,"imdbId":"tt0378284","version":142,"lastModified":"1301903294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05a\/4bc93789017a3c57fe01705a\/machuca-mid.jpg","genre":"Drama","title":"Machuca","releaseDate":1077580800000,"language":"en","type":"Movie","_key":"52224"} +{"label":"Andr\u00e9s Wood","version":22,"id":"71203","lastModified":"1301901873000","name":"Andr\u00e9s Wood","type":"Person","_key":"52225"} +{"label":"Mat\u00edas Quer","version":19,"id":"71206","lastModified":"1301901723000","name":"Mat\u00edas Quer","type":"Person","_key":"52226"} +{"label":"Ariel Mateluna","version":23,"id":"71207","lastModified":"1301902313000","name":"Ariel Mateluna","type":"Person","_key":"52227"} +{"label":"Aline K\u00fcppenheim","version":19,"id":"71208","lastModified":"1301901723000","name":"Aline K\u00fcppenheim","type":"Person","_key":"52228"} +{"label":"Ernesto Malbran","version":19,"id":"71209","lastModified":"1301901872000","name":"Ernesto Malbran","type":"Person","_key":"52229"} +{"label":"Herbie","description":"No overview found.","id":"12087","title":"Herbie","language":"en","lastModified":"1301906356000","version":276,"type":"Movie","_key":"52230"} +{"label":"Fortress","description":"A futuristic prison movie. Protagonist and wife are nabbed at a future US emigration point with an illegal baby during population control. The resulting prison experience is the subject of the movie. The prison is a futuristic one run by a private corporation bent on mind control in various ways","id":"12088","runtime":91,"imdbId":"tt0106950","version":142,"lastModified":"1301905545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/125\/4cb27e655e73d65f6c000125\/fortress-mid.jpg","genre":"Science Fiction","title":"Fortress","releaseDate":731289600000,"language":"en","tagline":"The high-tech prison thirty stories below ground. Built to withstand anything... Execpt an innocent man.","type":"Movie","_key":"52231"} +{"label":"Lincoln Kilpatrick","version":22,"id":"104907","lastModified":"1301902927000","name":"Lincoln Kilpatrick","type":"Person","_key":"52232"} +{"label":"The Tall Blond Man with One Black Shoe","description":"Hapless orchestra player becomes an unwitting pawn of rival factions within the French secret service after he is chosen as a decoy by being identified as a super secret agent.","id":"12089","runtime":90,"imdbId":"tt0068655","version":82,"lastModified":"1301902895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06c\/4bc9378a017a3c57fe01706c\/le-grand-blond-avec-une-chaussure-noire-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"The Tall Blond Man with One Black Shoe","releaseDate":115516800000,"language":"en","type":"Movie","_key":"52233"} +{"label":"Just Married","description":"Tom Leezak and Sarah McNerney fall in love and plan to get married, despite opposition from Sarah's uptight, rich family. When they do get married, and get a chance to prove Sarah's family wrong, they go on a European honeymoon and run into disaster after disaster. They have to decide whether the honeymoon from hell and a few pre-marital mistakes are worth throwing away their love and marriage.","id":"12090","runtime":91,"imdbId":"tt0305711","trailer":"http:\/\/www.youtube.com\/watch?v=UhzaFn02IA0","version":177,"lastModified":"1301903197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9e\/4d4763f25e73d66f59002c9e\/just-married-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Just Married","releaseDate":1042156800000,"language":"en","type":"Movie","_key":"52234"} +{"label":"Christian Kane","version":33,"id":"71198","lastModified":"1301901373000","name":"Christian Kane","type":"Person","_key":"52235"} +{"label":"Alice in Wonderland","description":"On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice's journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!","id":"12092","runtime":75,"imdbId":"tt0043274","trailer":"http:\/\/www.youtube.com\/watch?v=jBV5MbCap3w","version":260,"lastModified":"1301901219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/faa\/4d9367c07b9aa119a0000faa\/alice-in-wonderland-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"Alice in Wonderland","releaseDate":-581817600000,"language":"en","tagline":"A world of wonders in One Great Picture","type":"Movie","_key":"52236"} +{"label":"Renate Kanthack","version":33,"id":"71216","lastModified":"1301901437000","name":"Renate Kanthack","type":"Person","_key":"52237"} +{"label":"Lilja 4-ever","description":"Lilja is 16 years old. Her only friend is the young boy Volodja. They live in Estonia, fantasizing about a better life. One day, Lilja falls in love with Andrej. He is going to Sweden, and invites Lilja to come along and start a new life.","id":"12093","runtime":109,"imdbId":"tt0300140","trailer":"http:\/\/www.youtube.com\/watch?v=2436","version":109,"lastModified":"1301903758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4bc93790017a3c57fe01708f\/lilja-4-ever-mid.jpg","genre":"Drama","title":"Lilja 4-ever","releaseDate":1030060800000,"language":"en","type":"Movie","_key":"52238"} +{"label":"Oksana Akinshina","version":17,"id":"71218","lastModified":"1301901872000","name":"Oksana Akinshina","type":"Person","_key":"52239"} +{"label":"Artyom Bogucharsky","version":19,"id":"71219","lastModified":"1301902078000","name":"Artyom Bogucharsky","type":"Person","_key":"52240"} +{"label":"Lyubov Agapova","version":19,"id":"71220","lastModified":"1301902078000","name":"Lyubov Agapova","type":"Person","_key":"52241"} +{"label":"Liliya Shinkaryova","version":19,"id":"71221","lastModified":"1301902252000","name":"Liliya Shinkaryova","type":"Person","_key":"52242"} +{"label":"Elina Benenson","version":19,"id":"71222","lastModified":"1301902252000","name":"Elina Benenson","type":"Person","_key":"52243"} +{"label":"Jackass: Number Two","description":"Jackass Number Two is a compilation of various stunts, pranks and skits, and essentially has no plot. Chris Pontius, Johnny Knoxville, Steve-O, Bam Margera, and the whole crew return to the screen to raise the stakes higher than ever before. ","id":"12094","runtime":95,"imdbId":"tt0493430","version":179,"lastModified":"1301901399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4bc93790017a3c57fe01709c\/jackass-number-two-mid.jpg","genre":"Action","title":"Jackass: Number Two","releaseDate":1158883200000,"language":"en","tagline":"Guess who just made number two?","type":"Movie","_key":"52244"} +{"label":"From Dusk Till Dawn 2: Texas Blood Money","description":"A gang of bank-robbing misfits heads to Mexico with the blueprints for the perfect million-dollar heist, but when one of the crooks wanders into the wrong bar... and crosses the wrong vampire... the thieving cohorts develop a thirst for blood!","id":"12095","runtime":107,"imdbId":"tt0120860","version":94,"lastModified":"1301902092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc93791017a3c57fe0170a5\/from-dusk-till-dawn-2-texas-blood-money-mid.jpg","genre":"Horror","title":"From Dusk Till Dawn 2: Texas Blood Money","releaseDate":921542400000,"language":"en","type":"Movie","_key":"52245"} +{"label":"The Pink Panther","description":"When the coach of the France soccer team is killed by a poisoned dart in the stadium in the end of a game, and his expensive and huge ring with the diamond Pink Panther disappears, the ambitious Chief Inspector Dreyfus assigns the worst police inspector Jacques Clouseau to the case.","id":"12096","runtime":93,"imdbId":"tt0383216","trailer":"http:\/\/www.youtube.com\/watch?v=1336","version":214,"lastModified":"1301902008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4d7486e65e73d67abe000024\/the-pink-panther-mid.jpg","genre":"Action","title":"The Pink Panther","releaseDate":1137628800000,"language":"en","tagline":"Pardon His French.","type":"Movie","_key":"52246"} +{"label":"Pippi Langstrumpf","description":"No overview found.","id":"12097","runtime":100,"imdbId":"tt0366905","version":55,"lastModified":"1301903864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03e\/4ce66c705e73d6258c00003e\/pippi-langstrump-mid.jpg","genre":"Adventure","title":"Pippi Langstrumpf","releaseDate":-20476800000,"language":"en","type":"Movie","_key":"52247"} +{"label":"Zwei Nasen tanken Super","description":"No overview found.","id":"12098","runtime":92,"imdbId":"tt0088459","version":46,"lastModified":"1301907394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4bcb92be017a3c7540000024\/zwei-nasen-tanken-super-mid.jpg","genre":"Comedy","title":"Zwei Nasen tanken Super","releaseDate":463968000000,"language":"en","type":"Movie","_key":"52248"} +{"label":"Simone Brahmann","version":21,"id":"71228","lastModified":"1301902147000","name":"Simone Brahmann","type":"Person","_key":"52249"} +{"label":"Sonja Tuchmann","version":21,"id":"71229","lastModified":"1301902147000","name":"Sonja Tuchmann","type":"Person","_key":"52250"} +{"label":"Oi! Warning","description":"No overview found.","id":"12099","runtime":90,"imdbId":"tt0183076","version":75,"lastModified":"1301904997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/101\/4bf11fab017a3c320f000101\/oi-warning-mid.jpg","genre":"Drama","title":"Oi! Warning","releaseDate":931651200000,"language":"en","type":"Movie","_key":"52251"} +{"label":"Ben Reding","version":23,"id":"33984","lastModified":"1301901780000","name":"Ben Reding","type":"Person","_key":"52252"} +{"label":"Sascha Backhaus","version":20,"id":"71231","lastModified":"1301902002000","name":"Sascha Backhaus","type":"Person","_key":"52253"} +{"label":"Simon Goerts","version":20,"id":"71232","lastModified":"1301901951000","name":"Simon Goerts","type":"Person","_key":"52254"} +{"label":"Jens Veith","version":20,"id":"71233","lastModified":"1301902147000","name":"Jens Veith","type":"Person","_key":"52255"} +{"label":"Windtalkers","description":"Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.","id":"12100","runtime":134,"imdbId":"tt0245562","trailer":"http:\/\/www.youtube.com\/watch?v=86QB_WXYcqE","version":237,"lastModified":"1301901771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a20\/4d6c79427b9aa132fe001a20\/windtalkers-mid.jpg","genre":"Action","title":"Windtalkers","releaseDate":1024012800000,"language":"en","tagline":"Honor Was Their Code.","type":"Movie","_key":"52256"} +{"label":"Soylent Green","description":"In an overpopulated futuristic Earth, a New York police detective finds himself marked for murder by government agents when he gets too close to a bizarre state secret involving the origins of a revolutionary and needed new foodstuff.","id":"12101","runtime":97,"imdbId":"tt0070723","trailer":"http:\/\/www.youtube.com\/watch?v=OsVQPsiwkBI","version":165,"lastModified":"1301902698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e9\/4bc9379a017a3c57fe0170e9\/soylent-green-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Soylent Green","releaseDate":104025600000,"language":"en","tagline":"What is the secret of Soylent Green?","type":"Movie","_key":"52257"} +{"label":"Kramer vs. Kramer","description":"Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy. When he has learned to adjust his life to these new responsibilities, Joanna resurfaces and wants Billy back. Ted however refuses to give him up, so they go to court to fight for the custody of their son.","id":"12102","runtime":105,"imdbId":"tt0079417","version":262,"lastModified":"1301901921000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/103\/4bc9379d017a3c57fe017103\/kramer-vs-kramer-mid.jpg","genre":"Drama","title":"Kramer vs. Kramer","releaseDate":314236800000,"language":"en","type":"Movie","_key":"52258"} +{"label":"Justin Henry","version":27,"id":"71241","lastModified":"1301901855000","name":"Justin Henry","type":"Person","_key":"52259"} +{"label":"Don't Say a Word","description":"When the daughter of a psychiatrist is kidnapped, he's horrified to discover that the abductors' demand is that he break through to a post traumatic stress disorder suffering young woman who knows a secret..","id":"12103","runtime":113,"imdbId":"tt0260866","version":164,"lastModified":"1301902265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/116\/4bc937a3017a3c57fe017116\/don-t-say-a-word-mid.jpg","genre":"Suspense","title":"Don't Say a Word","releaseDate":999907200000,"language":"en","type":"Movie","_key":"52260"} +{"label":"Pink Floyd The Wall","description":"The life of the fictional rock star 'Pink' is the subject of the visually evocative cult film based upon the music and visions of the group Pink Floyd as portrayed in the album of the same title. Relationships, drug abuse, sex, childhood, WWII and fascism combine in a disturbing mix of episodic live action and lyrical animation drawn by British caricaturist Gerald Scarfe. ","id":"12104","runtime":95,"imdbId":"tt0084503","trailer":"http:\/\/www.youtube.com\/watch?v=djTU80l0ZE4","version":123,"lastModified":"1301901651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc937a4017a3c57fe017123\/pink-floyd-the-wall-mid.jpg","genre":"Musical","title":"Pink Floyd The Wall","releaseDate":390960000000,"language":"en","type":"Movie","_key":"52261"} +{"label":"Christine Hargreaves","version":23,"id":"71247","lastModified":"1301901535000","name":"Christine Hargreaves","type":"Person","_key":"52262"} +{"label":"James Laurenson","version":26,"id":"71248","lastModified":"1301901423000","name":"James Laurenson","type":"Person","_key":"52263"} +{"label":"Eleanor David","version":27,"id":"71249","lastModified":"1301901776000","name":"Eleanor David","type":"Person","_key":"52264"} +{"label":"Yellow Submarine","description":"The Blue Meanies take over Pepperland, draining it of all its color and music, firing anti-music missiles, bonking people with green apples, and turning the inhabitants to stone by way of the pointed finger of a giant white glove. As the only survivor, the Lord Admiral escapes in the yellow submarine and goes to London to enlist the help of the Beatles.","id":"12105","runtime":90,"imdbId":"tt0063823","version":86,"lastModified":"1301901254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/130\/4bc937a5017a3c57fe017130\/yellow-submarine-mid.jpg","genre":"Animation","title":"Yellow Submarine","releaseDate":-49593600000,"language":"en","type":"Movie","_key":"52265"} +{"label":"George Dunning","version":19,"id":"71253","lastModified":"1301901475000","name":"George Dunning","type":"Person","_key":"52266"} +{"label":"The Beatles","version":19,"id":"71261","lastModified":"1301901239000","name":"The Beatles","type":"Person","_key":"52267"} +{"label":"Uwe Friedrichsen","version":19,"id":"36434","lastModified":"1301901430000","name":"Uwe Friedrichsen","type":"Person","_key":"52268"} +{"label":"The Quick and the Dead","description":"Set in the Old West, a woman seeks revenge on the man who killed her father. ","id":"12106","runtime":107,"imdbId":"tt0114214","trailer":"http:\/\/www.youtube.com\/watch?v=NfRrEUz62Lw","version":201,"lastModified":"1301901822000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/146\/4bc937a6017a3c57fe017146\/the-quick-and-the-dead-mid.jpg","genre":"Action","title":"The Quick and the Dead","releaseDate":792374400000,"language":"en","tagline":"Think you are quick enough?","type":"Movie","_key":"52269"} +{"label":"Nutty Professor II: The Klumps","description":"The hilarity begins when professor Sherman Klump finds romance with fellow DNA specialist, Denise Gaines, and discovers a brilliant formula that reverses aging. But Sherman's thin and obnoxious alter ego, Buddy Love, wants out...and a big piece of the action. And when Buddy gets loose, things get seriously nutty.","id":"12107","runtime":106,"imdbId":"tt0144528","trailer":"http:\/\/www.youtube.com\/watch?v=oXsSEoGFC2s","version":324,"lastModified":"1301907759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14f\/4bc937aa017a3c57fe01714f\/nutty-professor-ii-the-klumps-mid.jpg","genre":"Comedy","title":"Nutty Professor II: The Klumps","releaseDate":964742400000,"language":"en","type":"Movie","_key":"52270"} +{"label":"42plus","description":"No overview found.","id":"12108","runtime":95,"imdbId":"tt0989603","homepage":"http:\/\/www.42plus-derfilm.at\/","version":71,"lastModified":"1301904438000","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Drama","title":"42plus","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"52271"} +{"label":"Ugo Conti","version":29,"id":"71296","lastModified":"1301902312000","name":"Ugo Conti","type":"Person","_key":"52272"} +{"label":"Sabine Derflinger","version":21,"id":"71288","lastModified":"1301902252000","name":"Sabine Derflinger","type":"Person","_key":"52273"} +{"label":"It's All Gone Pete Tong","description":"Its All Gone Pete Tong is a comedy following the tragic life of legendary Frankie Wilde. The story takes us through Frankie's life from one of the best DJ's alive, through subsequent battle with a hearing disorder, culminating in his mysterious disappearance from the scene.","id":"12109","runtime":90,"imdbId":"tt0388139","version":185,"lastModified":"1301902507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/641\/4d5dc0485e73d60c5a001641\/it-s-all-gone-pete-tong-mid.jpg","studio":"True West Films","genre":"Comedy","title":"It's All Gone Pete Tong","releaseDate":1094947200000,"language":"en","type":"Movie","_key":"52274"} +{"label":"Michael Dowse","version":29,"id":"71280","lastModified":"1301901706000","name":"Michael Dowse","type":"Person","_key":"52275"} +{"label":"Paul Kaye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac7\/4cf11c0a5e73d61927000ac7\/paul-kaye-profile.jpg","version":32,"id":"71281","lastModified":"1301901489000","name":"Paul Kaye","type":"Person","_key":"52276"} +{"label":"Kate Magowan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a42\/4cf1216e5e73d61929000a42\/kate-magowan-profile.jpg","version":23,"id":"71282","lastModified":"1301901803000","name":"Kate Magowan","type":"Person","_key":"52277"} +{"label":"Beatriz Batarda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a5b\/4cf124125e73d61929000a5b\/beatriz-batarda-profile.jpg","version":26,"id":"71283","lastModified":"1301901982000","name":"Beatriz Batarda","type":"Person","_key":"52278"} +{"label":"Dracula: Dead and Loving it","description":"When a lawyer shows up at the vampire's doorstep, he falls prey to his charms and joins him in his search for fresh blood. Enter Dr. van Helsing, who may be the only one able to vanquish the count.","id":"12110","runtime":88,"imdbId":"tt0112896","trailer":"http:\/\/www.youtube.com\/watch?v=2088","version":132,"lastModified":"1301902641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/214\/4d40cdd05e73d65729000214\/dracula-dead-and-loving-it-mid.jpg","studio":"Enigma Pictures","genre":"Comedy","title":"Dracula: Dead and Loving it","releaseDate":819590400000,"language":"en","type":"Movie","_key":"52279"} +{"label":"Les Sp\u00e9cialistes","description":"While being transferred to another prison, two convicts - St\u00e9phane Carella and Paul Brandon - effect a miraculous escape. They are pursued across the Verdon Gorge before arriving at an isolated farmhouse whose owner, Laura, offers them sanctuary. Since the death of her husband, Laura has longed to get her own back on the police and she agrees to help Carella and Brandon in their scheme to rob a casino in Nice. After a shoot out with the casino\u2019s owners, Carella realises that not everything is wh","id":"12111","runtime":94,"imdbId":"tt0088167","version":53,"lastModified":"1301902608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/173\/4bc937ac017a3c57fe017173\/les-specialistes-mid.jpg","studio":"Films A2","genre":"Adventure","title":"Les Sp\u00e9cialistes","releaseDate":479520000000,"language":"en","type":"Movie","_key":"52280"} +{"label":"Bertie Cortez","version":20,"id":"71305","lastModified":"1301902376000","name":"Bertie Cortez","type":"Person","_key":"52281"} +{"label":"He Loves Me... He Loves Me Not","description":"Angelique, a young student, is in love with a married doctor. We see her attempts to make him leave his pregnant wife, but he does not appear for meetings or finally the booked journey to Florence. Then the movie is turned back to the beginning, and the view changes: We are now following the view of the doctor instead of Angeliques. And things look quite different now...","id":"12112","runtime":92,"imdbId":"tt0291579","version":145,"lastModified":"1301903825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17c\/4bc937ac017a3c57fe01717c\/a-la-folie-pas-du-tout-mid.jpg","genre":"Thriller","title":"He Loves Me... He Loves Me Not","releaseDate":1017187200000,"language":"en","type":"Movie","_key":"52282"} +{"label":"Laetitia Colombani","version":32,"id":"71307","lastModified":"1301902377000","name":"Laetitia Colombani","type":"Person","_key":"52283"} +{"label":"Body of Lies","description":"Body of Lies follows CIA operative, Roger Ferris, as he uncovers a lead on a major terrorist leader suspected to be operating out of Jordan. When Ferris devises a plan to infiltrate his network, he must first win the backing of cunning CIA veteran Ed Hoffman and the collegial, but perhaps suspect, head of Jordanian intelligence.","id":"12113","runtime":128,"imdbId":"tt0758774","trailer":"http:\/\/www.youtube.com\/watch?v=sHenPbfNaAM","homepage":"http:\/\/bodyoflies.warnerbros.com\/","version":383,"lastModified":"1301901316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/480\/4cd738b85e73d676cd000480\/body-of-lies-mid.jpg","studio":"De Line Pictures","genre":"Action","title":"Body of Lies","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"52284"} +{"label":"Weite Strassen stille Liebe","description":"No overview found.","id":"12114","runtime":76,"imdbId":"tt0065202","version":41,"lastModified":"1301906118000","studio":"DEFA","genre":"Road Movie","title":"Weite Strassen stille Liebe","releaseDate":-2419200000,"language":"en","type":"Movie","_key":"52285"} +{"label":"Ulrike Plenzdorf","version":20,"id":"71318","lastModified":"1301902192000","name":"Ulrike Plenzdorf","type":"Person","_key":"52286"} +{"label":"Heidemarie Schmidt","version":19,"id":"71319","lastModified":"1301902309000","name":"Heidemarie Schmidt","type":"Person","_key":"52287"} +{"label":"Richard G\u00fcnter","version":19,"id":"71320","lastModified":"1301902309000","name":"Richard G\u00fcnter","type":"Person","_key":"52288"} +{"label":"Helmut Bobbenkamp","version":19,"id":"71321","lastModified":"1301902309000","name":"Helmut Bobbenkamp","type":"Person","_key":"52289"} +{"label":"Hans Maikowski","version":19,"id":"71322","lastModified":"1301902309000","name":"Hans Maikowski","type":"Person","_key":"52290"} +{"label":"Ilse Voigt","version":19,"id":"71323","lastModified":"1301902309000","name":"Ilse Voigt","type":"Person","_key":"52291"} +{"label":"L'amour, l'argent, l'amour","description":"No overview found.","id":"12115","runtime":128,"imdbId":"tt0203297","version":45,"lastModified":"1301903725000","genre":"Road Movie","title":"L'amour, l'argent, l'amour","releaseDate":965692800000,"language":"en","type":"Movie","_key":"52292"} +{"label":"Dierk Prawdzik","version":20,"id":"72824","lastModified":"1301901649000","name":"Dierk Prawdzik","type":"Person","_key":"52293"} +{"label":"Michael Schech","version":20,"id":"72826","lastModified":"1301901782000","name":"Michael Schech","type":"Person","_key":"52294"} +{"label":"Chloe in the Afternoon","description":"The last of Rohmer's Six Moral Tales. Frederic leads a bourgeois life; he is a partner in a small Paris office and is happily married to Helene, a teacher expecting her second child. In the afternoons, Frederic daydreams about other women, but has no intention of taking any action. One day, Chloe, who had been a mistress of an old friend, begins dropping by his office. They meet as friends, irregularly in the afternoons, till eventually Chloe decides to seduce Frederic, causing him a moral dilem","id":"12116","runtime":97,"imdbId":"tt0068205","version":72,"lastModified":"1301903694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63c\/4d4800147b9aa15bbb00c63c\/l-amour-l-apres-midi-mid.jpg","studio":"Les Films du Losange","genre":"Drama","title":"Chloe in the Afternoon","releaseDate":86572800000,"language":"en","type":"Movie","_key":"52295"} +{"label":"Fran\u00e7oise Verley","version":23,"id":"72832","lastModified":"1301901951000","name":"Fran\u00e7oise Verley","type":"Person","_key":"52296"} +{"label":"Malvina Penne","version":12,"id":"223271","lastModified":"1301903639000","name":"Malvina Penne","type":"Person","_key":"52297"} +{"label":"Instinct","description":"Dr. Ethan Powell, an anthropologist, is in Africa studying apes when he is lost for two years. When he is found, he kills 3 men and puts 2 in the hospital. Cuba Gooding's character is a psychiatrist who wants to take up the task of trying to get Dr. Powell to speak again and maybe even stand judgment at a trial for his release from prison of mental cases. Along the way, Cuba has to deal with also helping the mental patients that are being abused and neglected. In this process Cuba learns a few t","id":"12117","runtime":126,"imdbId":"tt0128278","trailer":"http:\/\/www.youtube.com\/watch?v=zdSZaTBWQqw","version":118,"lastModified":"1301905372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc937c1017a3c57fe0171fb\/instinct-mid.jpg","genre":"Drama","title":"Instinct","releaseDate":928454400000,"language":"en","type":"Movie","_key":"52298"} +{"label":"Police Academy 3: Back in Training","description":"When police funding is cut, the Governor announces he must close one of the academies. To make it fair, the two police academies must compete against each other to stay in operation. Mauser persuades two officers in Lassard's academy to better his odds, but things don't quite turn out as expected...","id":"12118","runtime":83,"imdbId":"tt0091777","trailer":"http:\/\/www.youtube.com\/watch?v=QBai0KLPCXY","version":140,"lastModified":"1301901995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/208\/4bc937c4017a3c57fe017208\/police-academy-3-back-in-training-mid.jpg","genre":"Action","title":"Police Academy 3: Back in Training","releaseDate":511747200000,"language":"en","tagline":"Run for cover!","type":"Movie","_key":"52299"} +{"label":"Das Wunder von Lengede","description":"No overview found.","id":"12119","runtime":182,"imdbId":"tt0371496","version":44,"lastModified":"1301905681000","genre":"Drama","title":"Das Wunder von Lengede","releaseDate":1068336000000,"language":"en","type":"Movie","_key":"52300"} +{"label":"My Stepmother is an Alien","description":"An alien is sent on a secret mission to Earth, where she appears as a gorgeous, attractive, and single lady. Her mission is to make contact with a rather nerdy young scientist, who's quite overwhelmed by her attentions, and isn't aware of the connection between her arrival and his work.","id":"12120","runtime":105,"imdbId":"tt0095687","version":115,"lastModified":"1301903332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4bc937c5017a3c57fe017216\/my-stepmother-is-an-alien-mid.jpg","studio":"Weintraub Entertainment Group","genre":"Comedy","title":"My Stepmother is an Alien","releaseDate":597542400000,"language":"en","tagline":"Man's closest encounter","type":"Movie","_key":"52301"} +{"label":"Made in America","description":"A young black woman discovers that her father was a sperm donor, and if that weren't bad enough, he's white.","id":"12121","runtime":106,"imdbId":"tt0107478","version":109,"lastModified":"1301903557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4bc937c6017a3c57fe01721f\/made-in-america-mid.jpg","genre":"Comedy","title":"Made in America","releaseDate":738547200000,"language":"en","type":"Movie","_key":"52302"} +{"label":"Village of the Damned","description":"A small town's women give birth to unfriendly alien children posing as humans. ","id":"12122","runtime":99,"imdbId":"tt0114852","trailer":"http:\/\/www.youtube.com\/watch?v=0WzcW9haPto","version":119,"lastModified":"1301902870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/228\/4bc937c8017a3c57fe017228\/john-carpenter-s-village-of-the-damned-mid.jpg","genre":"Drama","title":"Village of the Damned","releaseDate":799027200000,"language":"en","type":"Movie","_key":"52303"} +{"label":"Chain Reaction","description":"Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.","id":"12123","runtime":106,"imdbId":"tt0115857","version":174,"lastModified":"1301901946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4bc937c9017a3c57fe01723b\/chain-reaction-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Chain Reaction","releaseDate":838944000000,"language":"en","type":"Movie","_key":"52304"} +{"label":"El viaje","description":"No overview found.","id":"12124","runtime":140,"imdbId":"tt0105744","version":93,"lastModified":"1301903472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7b\/4d8399a77b9aa14276000f7b\/el-viaje-mid.jpg","genre":"Road Movie","title":"El viaje","releaseDate":704592000000,"language":"en","type":"Movie","_key":"52305"} +{"label":"Fernando E. Solanas","version":29,"id":"71353","lastModified":"1301902316000","name":"Fernando E. Solanas","type":"Person","_key":"52306"} +{"label":"Walter Quiroz","version":20,"id":"71359","lastModified":"1301901938000","name":"Walter Quiroz","type":"Person","_key":"52307"} +{"label":"Soledad Alfaro","version":20,"id":"71360","lastModified":"1301901938000","name":"Soledad Alfaro","type":"Person","_key":"52308"} +{"label":"Ricardo Bartis","version":21,"id":"71361","lastModified":"1301901943000","name":"Ricardo Bartis","type":"Person","_key":"52309"} +{"label":"Christina Becerra","version":20,"id":"71362","lastModified":"1301902132000","name":"Christina Becerra","type":"Person","_key":"52310"} +{"label":"Marc Berman","version":20,"id":"71363","lastModified":"1301901772000","name":"Marc Berman","type":"Person","_key":"52311"} +{"label":"Chiquinho Brand\u00e3o","version":20,"id":"71364","lastModified":"1301902132000","name":"Chiquinho Brand\u00e3o","type":"Person","_key":"52312"} +{"label":"Patagonia","description":"No overview found.","id":"12125","runtime":0,"imdbId":"tt1020559","version":90,"lastModified":"1301904988000","genre":"Road Movie","title":"Patagonia","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"52313"} +{"label":"Nia Roberts","version":25,"id":"71354","lastModified":"1301901564000","name":"Nia Roberts","type":"Person","_key":"52314"} +{"label":"Mamarosh","description":"No overview found.","id":"12126","runtime":0,"imdbId":"tt1205506","version":28,"lastModified":"1301905327000","studio":"Coraz\u00f3n International","genre":"Comedy","title":"Mamarosh","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"52315"} +{"label":"Pippi in the South Seas","description":"Pippi in the South Seas (original title is Pippi L\u00e5ngstrump p\u00e5 de sju haven) is a 1970 film, based on the eponymous children's books by Astrid Lindgren with the cast of the 1969 TV series. Pippi, with friends Tommy and Annika, adventures on the South Seas to hunt for her father, who has been kidnapped by pirates.","id":"12127","runtime":86,"imdbId":"tt0066227","version":63,"lastModified":"1301906063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4bc937cd017a3c57fe017248\/pippi-langstrump-pa-de-sju-haven-mid.jpg","genre":"Adventure","title":"Pippi in the South Seas","releaseDate":1987200000,"language":"en","type":"Movie","_key":"52316"} +{"label":"Fredrik Ohlsson","version":22,"id":"71356","lastModified":"1301901940000","name":"Fredrik Ohlsson","type":"Person","_key":"52317"} +{"label":"Die Nacht der lebenden Loser","description":"No overview found.","id":"12128","runtime":90,"imdbId":"tt0378417","version":83,"lastModified":"1301905193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61c\/4d197c5d5e73d6083400a61c\/die-nacht-der-lebenden-loser-mid.jpg","genre":"Comedy","title":"Die Nacht der lebenden Loser","releaseDate":1099526400000,"language":"en","type":"Movie","_key":"52318"} +{"label":"Thomas Schmieder","version":19,"id":"71389","lastModified":"1301901872000","name":"Thomas Schmieder","type":"Person","_key":"52319"} +{"label":"Manuel Cortez","version":20,"id":"71390","lastModified":"1301901768000","name":"Manuel Cortez","type":"Person","_key":"52320"} +{"label":"Herbie Goes Bananas","description":"The adorable little VW helps its owners break up a counterfeiting ring in Mexico.","id":"12129","runtime":110,"imdbId":"tt0080861","version":132,"lastModified":"1301903561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/262\/4bc937ce017a3c57fe017262\/herbie-goes-bananas-mid.jpg","genre":"Comedy","title":"Herbie Goes Bananas","releaseDate":315532800000,"language":"en","type":"Movie","_key":"52321"} +{"label":"Stephen W. Burns","version":21,"id":"71391","lastModified":"1301901670000","name":"Stephen W. Burns","type":"Person","_key":"52322"} +{"label":"Elyssa Davalos","version":23,"id":"71392","lastModified":"1301901984000","name":"Elyssa Davalos","type":"Person","_key":"52323"} +{"label":"Joaquin Garay III","version":24,"id":"71393","lastModified":"1301901411000","name":"Joaquin Garay III","type":"Person","_key":"52324"} +{"label":"I Don't Want to Sleep Alone","description":"Forest fires burn in Sumatra; a smoke covers Kuala Lumpur. Grifters beat an immigrant day laborer and leave him on the streets. Rawang, a young man, finds him, carries him home, cares for him, and sleeps next to him. In a loft above lives a waitress. She sometimes provides care and attention. More violence seems a constant possibility. They find another man abandoned on the street, paralyzed. They carry him. While no one speaks to each other, sounds dominate: coughing, cooking, coupling, opening","id":"12130","runtime":115,"imdbId":"tt0855824","version":134,"lastModified":"1301904077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14f\/4c1d9b495e73d607d100014f\/hei-yan-quan-mid.jpg","genre":"Drama","title":"I Don't Want to Sleep Alone","releaseDate":1157328000000,"language":"en","type":"Movie","_key":"52325"} +{"label":"Norman Atun","version":22,"id":"71394","lastModified":"1301901661000","name":"Norman Atun","type":"Person","_key":"52326"} +{"label":"Shiang-chyi Chen","version":24,"id":"71395","lastModified":"1301901842000","name":"Shiang-chyi Chen","type":"Person","_key":"52327"} +{"label":"Pearlly Chua","version":21,"id":"71396","lastModified":"1301901795000","name":"Pearlly Chua","type":"Person","_key":"52328"} +{"label":"Ganz und gar","description":"No overview found.","id":"12131","runtime":95,"imdbId":"tt0338052","version":42,"lastModified":"1301906726000","genre":"Comedy","title":"Ganz und gar","releaseDate":1042675200000,"language":"en","type":"Movie","_key":"52329"} +{"label":"Maggie Peren","version":34,"id":"57364","lastModified":"1301901565000","name":"Maggie Peren","type":"Person","_key":"52330"} +{"label":"Oliver Boysen","version":20,"id":"73379","lastModified":"1301902028000","name":"Oliver Boysen","type":"Person","_key":"52331"} +{"label":"Sin querer","description":"No overview found.","id":"12132","runtime":90,"imdbId":"tt0120134","version":37,"lastModified":"1301904470000","studio":"Trans-Film","genre":"Drama","title":"Sin querer","releaseDate":869702400000,"language":"en","type":"Movie","_key":"52332"} +{"label":"Ciro Cappellari","version":21,"id":"71404","lastModified":"1301901951000","name":"Ciro Cappellari","type":"Person","_key":"52333"} +{"label":"Daniel Kuzniecka","version":20,"id":"71406","lastModified":"1301902192000","name":"Daniel Kuzniecka","type":"Person","_key":"52334"} +{"label":"Yessica Cardozo","version":20,"id":"71407","lastModified":"1301901695000","name":"Yessica Cardozo","type":"Person","_key":"52335"} +{"label":"Patricio Contreras","version":20,"id":"71408","lastModified":"1301902050000","name":"Patricio Contreras","type":"Person","_key":"52336"} +{"label":"Step Brothers","description":"Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.","id":"12133","runtime":95,"imdbId":"tt0838283","trailer":"http:\/\/www.youtube.com\/watch?v=bgqBtquItHM","version":272,"lastModified":"1301901108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ba\/4d50725f7b9aa13ab800d8ba\/step-brothers-mid.jpg","studio":"Relativity Media","genre":"Comedy","title":"Step Brothers","releaseDate":1219622400000,"language":"en","tagline":"They grow up so fast.","type":"Movie","_key":"52337"} +{"label":"Andrea Savage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d00\/4cf5ca685e73d6299d000d00\/andrea-savage-profile.jpg","version":29,"id":"71402","lastModified":"1301902033000","name":"Andrea Savage","type":"Person","_key":"52338"} +{"label":"Rob Riggle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d2\/4ce30ae27b9aa168b00003d2\/rob-riggle-profile.jpg","version":48,"id":"71403","lastModified":"1302078677000","name":"Rob Riggle","type":"Person","_key":"52339"} +{"label":"Left Bank","description":"A chilling thriller about a woman, who upon moving in with her new boyfriend, becomes obsessed with the fate of the previous tenant and descends into madness.","id":"12135","runtime":102,"imdbId":"tt0940723","trailer":"http:\/\/www.youtube.com\/watch?v=kPEUGnrppbI","homepage":"http:\/\/www.linkeroeverthemovie.com\/","version":67,"lastModified":"1301906096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/293\/4bc937d6017a3c57fe017293\/linkeroever-mid.jpg","studio":"Caviar Films","genre":"Drama","title":"Left Bank","releaseDate":1206489600000,"language":"en","type":"Movie","_key":"52340"} +{"label":"Pieter Van Hees","version":25,"id":"71405","lastModified":"1301901951000","name":"Pieter Van Hees","type":"Person","_key":"52341"} +{"label":"Eline Kuppens","version":22,"id":"73380","lastModified":"1301901989000","name":"Eline Kuppens","type":"Person","_key":"52342"} +{"label":"Matthias Schoenaerts","version":31,"id":"73381","lastModified":"1301901781000","name":"Matthias Schoenaerts","type":"Person","_key":"52343"} +{"label":"Sien Eggers","version":24,"id":"73382","lastModified":"1301902363000","name":"Sien Eggers","type":"Person","_key":"52344"} +{"label":"An die Grenze","description":"No overview found.","id":"12136","runtime":90,"imdbId":"tt0874850","version":49,"lastModified":"1301906726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f6\/4bf103f2017a3c320b0000f6\/an-die-grenze-mid.jpg","studio":"Colonia Media Filmproduktions GmbH","genre":"History","title":"An die Grenze","releaseDate":1185494400000,"language":"en","type":"Movie","_key":"52345"} +{"label":"Die Vorstadtkrokodile","description":"No overview found.","id":"12137","runtime":92,"imdbId":"tt0803100","version":62,"lastModified":"1301905006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/298\/4bc937d6017a3c57fe017298\/die-vorstadtkrokodile-mid.jpg","studio":"Constantin Film","genre":"Drama","title":"Die Vorstadtkrokodile","releaseDate":1238025600000,"language":"en","type":"Movie","_key":"52346"} +{"label":"Fabian Halbig","version":23,"id":"71413","lastModified":"1301902392000","name":"Fabian Halbig","type":"Person","_key":"52347"} +{"label":"Leonie Tepe","version":23,"id":"71414","lastModified":"1301902392000","name":"Leonie Tepe","type":"Person","_key":"52348"} +{"label":"Manuel Steitz","version":25,"id":"71415","lastModified":"1301902392000","name":"Manuel Steitz","type":"Person","_key":"52349"} +{"label":"3000 Miles to Graceland","description":"It was an ingenious enough plan: rob the Riviera Casino's count room during an Elvis impersonator convention. But Thomas Murphy decided to keep all the money for himself and shot all his partners, including recently-freed ex-con Michael Zane. With $3.2 million at stake, the Marshals Service closing in, Michael must track down Murphy.","id":"12138","runtime":125,"imdbId":"tt0233142","version":211,"lastModified":"1301901920000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aad\/4d77ab0e7b9aa15c72000aad\/3000-miles-to-graceland-mid.jpg","genre":"Action","title":"3000 Miles to Graceland","releaseDate":982886400000,"language":"en","tagline":"Crime Is King.","type":"Movie","_key":"52350"} +{"label":"Demian Lichtenstein","version":30,"id":"71418","lastModified":"1301901535000","name":"Demian Lichtenstein","type":"Person","_key":"52351"} +{"label":"Dennis the Menace","description":"Mr. Wilson's ever-present annoyance comes in the form of one mischievous kid named Dennis. But he'll need Dennis's tricks to uncover a collection of gold coins that go missing when a shady drifter named Switchblade Sam comes to town.","id":"12139","runtime":94,"imdbId":"tt0106701","version":100,"lastModified":"1301903224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2aa\/4bc937d7017a3c57fe0172aa\/dennis-the-menace-mid.jpg","genre":"Comedy","title":"Dennis the Menace","releaseDate":740966400000,"language":"en","tagline":"He's armed... He's adorable... And he's out of school for the entire summer.","type":"Movie","_key":"52352"} +{"label":"Ghost in the Shell 2: Innocence","description":"Groundbreaking director Mamoru Oshii continues to push the boundaries of art and anime with this universally acclaimed cyber thriller following cyborg detective Batou as he tries to unravel the reasons for a murderous robot revolt in the year 2032. A quest for a killer that becomes a mind bending search for the meaning of life.","id":"12140","runtime":100,"imdbId":"tt0347246","trailer":"http:\/\/www.youtube.com\/watch?v=fPCpcB2RjiM","version":338,"lastModified":"1301902278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/276\/4c1882847b9aa108d4000276\/inosensu-kokaku-kidotai-mid.jpg","studio":"Production I.G.","genre":"Animation","title":"Ghost in the Shell 2: Innocence","releaseDate":1078531200000,"language":"en","tagline":"\"Sore wa inotchi innosensu ('Innocence is Life')\u201d","type":"Movie","_key":"52353"} +{"label":"Tilo Schmitz","version":22,"id":"71433","lastModified":"1301901260000","name":"Tilo Schmitz","type":"Person","_key":"52354"} +{"label":"Klaus-Peter Grap","version":22,"id":"71434","lastModified":"1301901260000","name":"Klaus-Peter Grap","type":"Person","_key":"52355"} +{"label":"Christin Marquitan","version":22,"id":"71435","lastModified":"1301901399000","name":"Christin Marquitan","type":"Person","_key":"52356"} +{"label":"3 Men","description":"No overview found.","id":"12141","title":"3 Men","language":"en","lastModified":"1302019601000","version":1187,"type":"Movie","_key":"52357"} +{"label":"Alone in the Dark","description":"Edward Carnby is a private investigator specializing in unexplainable supernatural phenomena. His cases delve into the dark corners of the world, searching for truth in the occult remnants of ancient civilizations. Now, the greatest mystery of his past is about to become the most dangerous case he has ever faced.","id":"12142","runtime":96,"imdbId":"tt0369226","version":198,"lastModified":"1302019480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4bc937de017a3c57fe0172d7\/alone-in-the-dark-mid.jpg","studio":"Boll Kino Beteiligungs GmbH & Co. KG","genre":"Action","title":"Alone in the Dark","releaseDate":1106870400000,"language":"en","tagline":"Can mankind defeat the army of darkness unleashed by an ancient evil cult?","type":"Movie","_key":"52358"} +{"label":"Craig Bruhnanski","version":21,"id":"77620","lastModified":"1301901723000","name":"Craig Bruhnanski","type":"Person","_key":"52359"} +{"label":"Dustyn Arthurs","version":21,"id":"77621","lastModified":"1301901723000","name":"Dustyn Arthurs","type":"Person","_key":"52360"} +{"label":"Catherine Lough Haggquist","version":21,"id":"77622","lastModified":"1301901723000","name":"Catherine Lough Haggquist","type":"Person","_key":"52361"} +{"label":"Ed Anders","version":21,"id":"77623","lastModified":"1301901723000","name":"Ed Anders","type":"Person","_key":"52362"} +{"label":"Bad Lieutenant","description":"A police Lieutenant goes about his daily tasks of investigating homicides, but is more interested in pursuing his vices. He has accumulated a massive debt betting on baseball, and he keeps doubling to try to recover. His bookies are beginning to get agitated. The Lieutenant does copious amounts of drugs, cavorts with prostitutes, and uses his status to take advantage of teenage girls.","id":"12143","runtime":96,"imdbId":"tt0103759","trailer":"http:\/\/www.youtube.com\/watch?v=3389","version":232,"lastModified":"1301903006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b6\/4c6357515e73d6345f0006b6\/bad-lieutenant-mid.jpg","studio":"Bad Lt. Productions","genre":"Drama","title":"Bad Lieutenant","releaseDate":722217600000,"language":"en","type":"Movie","_key":"52363"} +{"label":"Robin Burrows","version":22,"id":"71444","lastModified":"1301901268000","name":"Robin Burrows","type":"Person","_key":"52364"} +{"label":"The Land Before Time","description":"An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each onea different species, and they encounter several obstacles as they learn to worktogether in order to survive.","id":"12144","runtime":69,"imdbId":"tt0095489","trailer":"http:\/\/www.youtube.com\/watch?v=1617","version":105,"lastModified":"1301901566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adb\/4d4f2d367b9aa13b4800aadb\/the-land-before-time-mid.jpg","studio":"Universal Pictures","genre":"Animation","title":"The Land Before Time","releaseDate":595814400000,"language":"en","tagline":"The adventure that started it all!","type":"Movie","_key":"52365"} +{"label":"Candace Hutson","version":26,"id":"71447","lastModified":"1301901565000","name":"Candace Hutson","type":"Person","_key":"52366"} +{"label":"Fierce Creatures","description":"Ex-policeman Rollo Lee is sent to run Marwood Zoo, the newly acquired business of a New Zealand tycoon. In order to meet high profit targets and keep the zoo open, Rollo enforces a new 'fierce creatures' policy, whereby only the most impressive and dangerous animals are allowed to remain in the zoo. However, the keepers are less enthusiastic about complying with these demands.","id":"12145","runtime":93,"imdbId":"tt0119115","trailer":"http:\/\/www.youtube.com\/watch?v=fU9zV8gdEUw","version":180,"lastModified":"1301903633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/314\/4bc937e6017a3c57fe017314\/fierce-creatures-mid.jpg","genre":"Comedy","title":"Fierce Creatures","releaseDate":854064000000,"language":"en","type":"Movie","_key":"52367"} +{"label":"Robert Lindsay","version":30,"id":"71450","lastModified":"1301901802000","name":"Robert Lindsay","type":"Person","_key":"52368"} +{"label":"The Missing","description":"In 1885 New Mexico, a frontier medicine woman forms an uneasy alliance with her estranged father when her daughter is kidnapped by an Apache brujo.","id":"12146","runtime":137,"imdbId":"tt0338188","version":194,"lastModified":"1301903106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/327\/4bc937ec017a3c57fe017327\/the-missing-mid.jpg","genre":"Action","title":"The Missing","releaseDate":1069804800000,"language":"en","type":"Movie","_key":"52369"} +{"label":"Fickende Fische","description":"No overview found.","id":"12147","runtime":103,"imdbId":"tt0291905","version":63,"lastModified":"1301905631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/526\/4cf259217b9aa14496000526\/fickende-fische-mid.jpg","genre":"Drama","title":"Fickende Fische","releaseDate":1011916800000,"language":"en","type":"Movie","_key":"52370"} +{"label":"Almut Getto","version":20,"id":"71455","lastModified":"1301902331000","name":"Almut Getto","type":"Person","_key":"52371"} +{"label":"Sophie Rogall","version":21,"id":"71459","lastModified":"1301902331000","name":"Sophie Rogall","type":"Person","_key":"52372"} +{"label":"Angelika Milster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4d210ef65e73d659b7000188\/angelika-milster-profile.jpg","version":23,"id":"71460","lastModified":"1301901599000","name":"Angelika Milster","type":"Person","_key":"52373"} +{"label":"Der Sandmann","description":"No overview found.","id":"12148","runtime":95,"imdbId":"tt0114335","version":44,"lastModified":"1301904714000","genre":"Thriller","title":"Der Sandmann","releaseDate":812851200000,"language":"en","type":"Movie","_key":"52374"} +{"label":"Frailty","description":"A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed \"demons.\"","id":"12149","runtime":100,"imdbId":"tt0264616","version":129,"lastModified":"1301907563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/334\/4bc937ed017a3c57fe017334\/frailty-mid.jpg","genre":"Thriller","title":"Frailty","releaseDate":1005955200000,"language":"en","type":"Movie","_key":"52375"} +{"label":"Sea of Love","description":"Seen-it-all New York detective Frank Keller is unsettled - he has done twenty years on the force and could retire, and he hasn't come to terms with his wife leaving him for a colleague. Joining up with an officer from another part of town to investigate a series of murders linked by the lonely hearts columns he finds he is getting seriously and possibly dangerously involved with Helen, one of the main suspects.","id":"12150","runtime":113,"imdbId":"tt0098273","version":166,"lastModified":"1301908010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ad\/4bd2b857017a3c63f30003ad\/sea-of-love-mid.jpg","genre":"Action","title":"Sea of Love","releaseDate":621820800000,"language":"en","type":"Movie","_key":"52376"} +{"label":"Ruthless People","description":"A couple, cheated by a vile businessman, kidnap his wife in retaliation, without knowing that their enemy is delighted they did.","id":"12151","runtime":91,"imdbId":"tt0091877","version":134,"lastModified":"1301902226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/237\/4c79b5d45e73d613d7000237\/ruthless-people-mid.jpg","genre":"Comedy","title":"Ruthless People","releaseDate":520214400000,"language":"en","type":"Movie","_key":"52377"} +{"label":"Anita Morris","version":15,"id":"159753","lastModified":"1301903582000","name":"Anita Morris","type":"Person","_key":"52378"} +{"label":"White Chicks","description":"Two disgraced African American FBI sibling Agents, Kevin and Marcus Copeland, who are assigned the duty of protecting cruise line heiresses Brittany and Tiffany Wilson from a kidnapping plot. ","id":"12153","runtime":109,"imdbId":"tt0381707","version":182,"lastModified":"1301901876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/361\/4bc937f1017a3c57fe017361\/white-chicks-mid.jpg","genre":"Action","title":"White Chicks","releaseDate":1087948800000,"language":"en","type":"Movie","_key":"52379"} +{"label":"Maitland Ward","version":19,"id":"71482","lastModified":"1301901872000","name":"Maitland Ward","type":"Person","_key":"52380"} +{"label":"Three Men and a Baby","description":"Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.","id":"12154","runtime":102,"imdbId":"tt0094137","version":92,"lastModified":"1301902854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36a\/4bc937f4017a3c57fe01736a\/three-men-and-a-baby-mid.jpg","genre":"Comedy","title":"Three Men and a Baby","releaseDate":564969600000,"language":"en","type":"Movie","_key":"52381"} +{"label":"Nue propri\u00e9t\u00e9","description":"No overview found.","id":"12156","runtime":95,"imdbId":"tt0855895","version":52,"lastModified":"1301904948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0d\/4d6134be7b9aa11243005f0d\/nue-propri-t-mid.jpg","studio":"Haut et Court","genre":"Drama","title":"Nue propri\u00e9t\u00e9","releaseDate":1157068800000,"language":"en","type":"Movie","_key":"52382"} +{"label":"Joachim Lafosse","version":21,"id":"71485","lastModified":"1301901781000","name":"Joachim Lafosse","type":"Person","_key":"52383"} +{"label":"Yannick Renier","version":26,"id":"71490","lastModified":"1301901260000","name":"Yannick Renier","type":"Person","_key":"52384"} +{"label":"Kris Cuppens","version":21,"id":"71492","lastModified":"1301902372000","name":"Kris Cuppens","type":"Person","_key":"52385"} +{"label":"Green Card","description":"Bront\u00eb Mitchell is a horticulturalist and an environmentalist devoted to the creation of urban gardens and parks on vacant lots. She is anxious to rent an apartment with a greenhouse, but the board of trustees would prefer a married couple as tenants. Her friend Antoine suggests she marry French immigrant Georges Faur\u00e9, who needs a green card in order to remain in the country. The two meet at a cafe in downtown Manhattan and after a brief conversation are wed in a quick ceremony at the nearby co","id":"12157","runtime":107,"imdbId":"tt0099699","version":150,"lastModified":"1301420643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d5\/4bc93805017a3c57fe0173d5\/green-card-mid.jpg","genre":"Comedy","title":"Green Card","releaseDate":662342400000,"language":"en","tagline":"The story of two people who got married, met, and then fell in love.","type":"Movie","_key":"52386"} +{"label":"Vampire in Brooklyn","description":"Maximillian, the lone survivor of a race of vampires, comes to Brooklyn in search of a way to live past the next full moon. His ticket to survival is Rita, a NYPD detective who doesn't know she's half vampire -- and Maximillian will do whatever's necessary to put her under his spell.","id":"12158","runtime":100,"imdbId":"tt0114825","version":117,"lastModified":"1301902698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/129\/4d44890c7b9aa15bf5001129\/vampire-in-brooklyn-mid.jpg","genre":"Comedy","title":"Vampire in Brooklyn","releaseDate":814752000000,"language":"en","tagline":"A comic tale of horror and seduction.","type":"Movie","_key":"52387"} +{"label":"What Dreams May Come","description":"Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.","id":"12159","runtime":108,"imdbId":"tt0120889","trailer":"http:\/\/www.youtube.com\/watch?v=1559","version":205,"lastModified":"1301901661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cd\/4d6b350e5e73d607290007cd\/what-dreams-may-come-mid.jpg","studio":"Polygram Filmed Entertainment","genre":"Action","title":"What Dreams May Come","releaseDate":907286400000,"language":"en","tagline":"After life there is more. The end is just the beginning.","type":"Movie","_key":"52388"} +{"label":"Vincent Ward","version":38,"id":"9198","lastModified":"1301901342000","name":"Vincent Ward","type":"Person","_key":"52389"} +{"label":"Wyatt Earp","description":"Covering the life and times of one of the West's most iconic heroes Wyatt Earp weaves an intricate tale if Earp and his friends and family. With a star studded cast, sweeping cinematography and authentic costumes Wyatt Earp led the way during the Western revival in the 90's.","id":"12160","runtime":191,"imdbId":"tt0111756","version":246,"lastModified":"1301902922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ca\/4d505f287b9aa13aab00d3ca\/wyatt-earp-mid.jpg","genre":"Drama","title":"Wyatt Earp","releaseDate":772416000000,"language":"en","type":"Movie","_key":"52390"} +{"label":"Jerichow","description":"The Turkish diaspora in Germany proves the catalyst for this noir-flavored drama concerning the unlikely friendship between a veteran of the Afghan-Soviet war and a middle-aged Turk in need of a helping hand. ","id":"12161","runtime":93,"imdbId":"tt1224153","trailer":"http:\/\/www.youtube.com\/watch?v=VlgHdr2-SBM","version":147,"lastModified":"1301903182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc93810017a3c57fe01741e\/jerichow-mid.jpg","genre":"Drama","title":"Jerichow","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52391"} +{"label":"The Hurt Locker","description":"Forced to play a dangerous game of cat-and-mouse in the chaos of war, an elite Army bomb squad unit must come together in a city where everyone is a potential enemy and every object could be a deadly bomb.","id":"12162","runtime":130,"imdbId":"tt0887912","trailer":"http:\/\/www.youtube.com\/watch?v=2GxSDZc8etg","homepage":"http:\/\/www.thehurtlocker-movie.com\/","version":381,"lastModified":"1301900899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/476\/4bc9381d017a3c57fe017476\/the-hurt-locker-mid.jpg","studio":"VOLTAGE PICTURES","genre":"Action","title":"The Hurt Locker","releaseDate":1220486400000,"language":"en","tagline":"You'll know when you're in it.","type":"Movie","_key":"52392"} +{"label":"Christopher Sayegh","version":43,"id":"96438","lastModified":"1301901772000","name":"Christopher Sayegh","type":"Person","_key":"52393"} +{"label":"The Wrestler","description":"Mickey Rourke stars as retired professional wrestler Randy \"The Ram\" Robinson, who returns to the ring to work his way up the circuit for a final shot at defeating his longtime rival. Along the way, he tries to reconnect with his estranged daughter while exploring a relationship with an aging stripper named Cassidy.","id":"12163","runtime":109,"imdbId":"tt1125849","trailer":"http:\/\/www.youtube.com\/watch?v=p_TDzemiYu4","homepage":"http:\/\/www.thewrestlermovie.com\/","version":334,"lastModified":"1302066308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/045\/4c4e51d47b9aa1326d000045\/the-wrestler-mid.jpg","studio":"Wild Bunch","genre":"Drama","title":"The Wrestler","releaseDate":1221264000000,"language":"en","tagline":"Love. Pain. Glory.","type":"Movie","_key":"52394"} +{"label":"Dylan Keith Summers","version":23,"id":"83213","lastModified":"1302066308000","name":"Dylan Keith Summers","type":"Person","_key":"52395"} +{"label":"The Burning Plain","description":"A drama with a two-tiered storyline concerning a mother (Basinger) and daughter (Theron) who try to form a bond after the young woman's difficult childhood.","id":"12165","runtime":111,"imdbId":"tt1068641","trailer":"http:\/\/www.youtube.com\/watch?v=1089","homepage":"http:\/\/www.wildbunch-distribution.com\/site\/loindelaterrebrulee\/","version":212,"lastModified":"1301902215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/803\/4d678c3c5e73d66a61001803\/the-burning-plain-mid.jpg","studio":"2929 Productions","genre":"Drama","title":"The Burning Plain","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"52396"} +{"label":"Guillermo Arriaga","version":41,"id":"273","lastModified":"1299582038000","name":"Guillermo Arriaga","type":"Person","_key":"52397"} +{"label":"Jos\u00e9 Mar\u00eda Yazpik","version":32,"id":"72128","lastModified":"1301901524000","name":"Jos\u00e9 Mar\u00eda Yazpik","type":"Person","_key":"52398"} +{"label":"Jennifer Lawrence","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9bb\/4d6ed9a27b9aa12fe90009bb\/jennifer-lawrence-profile.jpg","version":42,"birthday":"650671200000","id":"72129","birthplace":"Louisville, Kentucky, USA","lastModified":"1301901161000","name":"Jennifer Lawrence","type":"Person","_key":"52399"} +{"label":"Tessa Ia","version":25,"id":"72130","lastModified":"1301902033000","name":"Tessa Ia","type":"Person","_key":"52400"} +{"label":"Diego J. Torres","version":25,"id":"72131","lastModified":"1301902016000","name":"Diego J. Torres","type":"Person","_key":"52401"} +{"label":"Danny Pino","version":29,"id":"72132","lastModified":"1301901797000","name":"Danny Pino","type":"Person","_key":"52402"} +{"label":"Achilles and the Tortoise","description":"Machisu is a painter. He never had the success he thinks he is entitled to. Regardless of this, he always remains trying to be successful. His wife Sachiko keeps supporting him, despite all setbacks.","id":"12166","runtime":119,"imdbId":"tt1217243","version":77,"lastModified":"1301907262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c6\/4bc93828017a3c57fe0174c6\/akiresu-to-kame-mid.jpg","genre":"Comedy","title":"Achilles and the Tortoise","releaseDate":1225670400000,"language":"en","type":"Movie","_key":"52403"} +{"label":"Kunsten \u00e5 tenke negativt","description":"No overview found.","id":"12167","runtime":79,"imdbId":"tt0945356","version":45,"lastModified":"1301906153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cb\/4bc93828017a3c57fe0174cb\/kunsten-a-tenke-negativt-mid.jpg","studio":"Maipo Film- og TV Produksjon","genre":"Comedy","title":"Kunsten \u00e5 tenke negativt","releaseDate":1162512000000,"language":"en","type":"Movie","_key":"52404"} +{"label":"B\u00e5rd Breien","version":21,"id":"73547","lastModified":"1301902146000","name":"B\u00e5rd Breien","type":"Person","_key":"52405"} +{"label":"Fridtjov S\u00e5heim","version":30,"id":"73548","lastModified":"1301901648000","name":"Fridtjov S\u00e5heim","type":"Person","_key":"52406"} +{"label":"Kjersti Holmen","version":28,"id":"73549","lastModified":"1301901951000","name":"Kjersti Holmen","type":"Person","_key":"52407"} +{"label":"Henrik Mestad","version":26,"id":"73550","lastModified":"1301901951000","name":"Henrik Mestad","type":"Person","_key":"52408"} +{"label":"Marian Saastad Ottesen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ca\/4bd308af017a3c63f10003ca\/marian-saastad-ottesen-profile.jpg","version":22,"id":"73551","lastModified":"1301901838000","name":"Marian Saastad Ottesen","type":"Person","_key":"52409"} +{"label":"Kari Simonsen","version":27,"id":"73552","lastModified":"1301902377000","name":"Kari Simonsen","type":"Person","_key":"52410"} +{"label":"Per Schaaning","version":22,"id":"73553","lastModified":"1301901563000","name":"Per Schaaning","type":"Person","_key":"52411"} +{"label":"The Governess","description":"No overview found.","id":"12168","runtime":0,"imdbId":"tt0780036","version":88,"lastModified":"1301906063000","genre":"Comedy","title":"The Governess","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"52412"} +{"label":"Le premier jour du reste de ta vie","description":"A sprawling drama centered around five keys days in a family's life.","id":"12169","runtime":114,"imdbId":"tt0926759","trailer":"http:\/\/www.youtube.com\/watch?v=42qLwz1lVNw","version":62,"lastModified":"1301903354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4dc\/4bc9382a017a3c57fe0174dc\/le-premier-jour-du-reste-de-ta-vie-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Le premier jour du reste de ta vie","releaseDate":1216771200000,"language":"en","type":"Movie","_key":"52413"} +{"label":"R\u00e9mi Bezan\u00e7on","version":22,"id":"71506","lastModified":"1301901644000","name":"R\u00e9mi Bezan\u00e7on","type":"Person","_key":"52414"} +{"label":"Marc-Andr\u00e9 Grondin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/849\/4d13a9535e73d6082e001849\/marc-andr-grondin-profile.jpg","version":28,"id":"71507","lastModified":"1302060787000","name":"Marc-Andr\u00e9 Grondin","type":"Person","_key":"52415"} +{"label":"Pio Marma\u00ef","version":19,"id":"71508","lastModified":"1301901430000","name":"Pio Marma\u00ef","type":"Person","_key":"52416"} +{"label":"Nos 18 ans","description":"No overview found.","id":"12170","runtime":93,"imdbId":"tt1092020","version":84,"lastModified":"1301904413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e9\/4ce7b3d85e73d6258e0001e9\/nos-18-ans-mid.jpg","studio":"Rectangle Productions","genre":"Comedy","title":"Nos 18 ans","releaseDate":1216166400000,"language":"en","type":"Movie","_key":"52417"} +{"label":"Fr\u00e9d\u00e9ric Berthe","version":23,"id":"73391","lastModified":"1301902147000","name":"Fr\u00e9d\u00e9ric Berthe","type":"Person","_key":"52418"} +{"label":"Th\u00e9o Frilet","version":20,"id":"73392","lastModified":"1301901989000","name":"Th\u00e9o Frilet","type":"Person","_key":"52419"} +{"label":"Valentine Catz\u00e9flis","version":20,"id":"73393","lastModified":"1301901994000","name":"Valentine Catz\u00e9flis","type":"Person","_key":"52420"} +{"label":"Arthur Dupont","version":30,"id":"73394","lastModified":"1301901467000","name":"Arthur Dupont","type":"Person","_key":"52421"} +{"label":"The Deaths of Ian Stone","description":"Deaths tells the story of an all-American guy who is murdered each day by horrifying pursuers, only to wake up in slightly different lives to experience the terror of being murdered again.","id":"12171","runtime":87,"imdbId":"tt0810823","version":176,"lastModified":"1301902881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ee\/4bc9382b017a3c57fe0174ee\/the-deaths-of-ian-stone-mid.jpg","studio":"Odyssey Entertainment","genre":"Action","title":"The Deaths of Ian Stone","releaseDate":1185408000000,"language":"en","type":"Movie","_key":"52422"} +{"label":"Dario Piana","version":21,"id":"73399","lastModified":"1301902252000","name":"Dario Piana","type":"Person","_key":"52423"} +{"label":"Jaime Murray","version":24,"id":"73400","lastModified":"1301901410000","name":"Jaime Murray","type":"Person","_key":"52424"} +{"label":"Michael Dixon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bad\/4d40afcd7b9aa15bbb002bad\/michael-dixon-profile.jpg","version":29,"id":"73401","lastModified":"1301901611000","name":"Michael Dixon","type":"Person","_key":"52425"} +{"label":"Christina Cole","version":25,"id":"47625","lastModified":"1301901723000","name":"Christina Cole","type":"Person","_key":"52426"} +{"label":"Encounters at the End of the World","description":"Herzog and cinematographer Peter Zeitlinger go to Antarctica to meet people who live and work there, and to capture footage of the continent's unique locations. Herzog's voiceover narration explains that his film will not be a typical Antarctica film about \"fluffy penguins\", but will explore the dreams of the people and the landscape.","id":"12172","runtime":99,"imdbId":"tt1093824","homepage":"http:\/\/encountersfilm.com\/","version":277,"lastModified":"1301902446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fb\/4bc9382c017a3c57fe0174fb\/encounters-at-the-end-of-the-world-mid.jpg","studio":"Discovery Films","genre":"Documentary","title":"Encounters at the End of the World","releaseDate":1188604800000,"language":"en","type":"Movie","_key":"52427"} +{"label":"La merveilleuse visite","description":"One morning, the rector of a small French village comes across a young man, lying unclothed and unconscious on a deserted beach. Intrigued, the rector has the young man carried back to his home. When he awakes the stranger calmly identifies himself as Jean, an angel who has just arrived on Earth. Naturally, the rector doesn\u2019t believe this, but decides to humour the young man. At first, Jean\u2019s arrival in the village causes no upset. He is a harmless soul, full of good intentions and capable ","id":"12173","runtime":100,"imdbId":"tt0071832","version":66,"lastModified":"1301903598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c94\/4d3e168d5e73d622cf001c94\/la-merveilleuse-visite-mid.jpg","genre":"Fantasy","title":"La merveilleuse visite","releaseDate":154742400000,"language":"en","type":"Movie","_key":"52428"} +{"label":"Lucien Barjon","version":20,"id":"71510","lastModified":"1301902384000","name":"Lucien Barjon","type":"Person","_key":"52429"} +{"label":"Jean Le Mou\u00ebl","version":21,"id":"71511","lastModified":"1301902380000","name":"Jean Le Mou\u00ebl","type":"Person","_key":"52430"} +{"label":"Aide-toi et le ciel t'aidera","description":"No overview found.","id":"12174","runtime":94,"imdbId":"tt1087829","version":37,"lastModified":"1301908631000","studio":"ARP S\u00e9lection","title":"Aide-toi et le ciel t'aidera","releaseDate":1220054400000,"language":"en","type":"Movie","_key":"52431"} +{"label":"Fatou N'Diaye","version":21,"id":"73385","lastModified":"1301902379000","name":"Fatou N'Diaye","type":"Person","_key":"52432"} +{"label":"Ralph Amoussou","version":20,"id":"73386","lastModified":"1301902011000","name":"Ralph Amoussou","type":"Person","_key":"52433"} +{"label":"F\u00e9licit\u00e9 Wouassi","version":20,"id":"73387","lastModified":"1301902389000","name":"F\u00e9licit\u00e9 Wouassi","type":"Person","_key":"52434"} +{"label":"Virgile Fouilou","version":20,"id":"73388","lastModified":"1301902349000","name":"Virgile Fouilou","type":"Person","_key":"52435"} +{"label":"Ghosts of Goldfield","description":"Two couples and another friend from college decide to visit the Goldfield Hotel in Nevada to make a documentary about ghosts \u2013 then their nightmares begin!","id":"12175","runtime":90,"imdbId":"tt0494228","version":274,"lastModified":"1301906225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19d\/4c9287d85e73d626ee00019d\/ghosts-of-goldfield-mid.jpg","genre":"Horror","title":"Ghosts of Goldfield","releaseDate":1174953600000,"language":"en","type":"Movie","_key":"52436"} +{"label":"Mandy Amano","version":19,"id":"71517","lastModified":"1301901872000","name":"Mandy Amano","type":"Person","_key":"52437"} +{"label":"Richie Chance","version":17,"id":"71518","lastModified":"1301902252000","name":"Richie Chance","type":"Person","_key":"52438"} +{"label":"Marnette Patterson","version":23,"id":"71519","lastModified":"1301902077000","name":"Marnette Patterson","type":"Person","_key":"52439"} +{"label":"Scott Whyte","version":25,"id":"71520","lastModified":"1301901645000","name":"Scott Whyte","type":"Person","_key":"52440"} +{"label":"Chuck Zito","version":20,"id":"71521","lastModified":"1301902363000","name":"Chuck Zito","type":"Person","_key":"52441"} +{"label":"Ed Winfield","version":19,"id":"71672","lastModified":"1301901872000","name":"Ed Winfield","type":"Person","_key":"52442"} +{"label":"La Corrupci\u00f3n de Chris Miller","description":"No overview found.","id":"12176","runtime":107,"imdbId":"tt0069922","version":37,"lastModified":"1301907393000","genre":"Thriller","title":"La Corrupci\u00f3n de Chris Miller","releaseDate":106444800000,"language":"en","type":"Movie","_key":"52443"} +{"label":"Juan Antonio Bardem","version":23,"id":"71522","lastModified":"1301902146000","name":"Juan Antonio Bardem","type":"Person","_key":"52444"} +{"label":"Marisol","version":20,"id":"71524","lastModified":"1301902331000","name":"Marisol","type":"Person","_key":"52445"} +{"label":"Perla Cristal","version":27,"id":"71525","lastModified":"1301901797000","name":"Perla Cristal","type":"Person","_key":"52446"} +{"label":"Rudy Gaebel","version":20,"id":"71526","lastModified":"1301902331000","name":"Rudy Gaebel","type":"Person","_key":"52447"} +{"label":"The Love Guru","description":"Pitka an American raised outside of his country by gurus, returns to the States in order to break into the self-help business. His first challenge: To settle the romantic troubles and subsequent professional skid of a star hockey player whose wife left him for a rival athlete. ","id":"12177","runtime":87,"imdbId":"tt0811138","trailer":"http:\/\/www.youtube.com\/watch?v=610","homepage":"http:\/\/www.lovegurumovie.com\/","version":262,"lastModified":"1301901862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/515\/4bc93832017a3c57fe017515\/the-love-guru-mid.jpg","studio":"Michael De Luca Productions","genre":"Comedy","title":"The Love Guru","releaseDate":1213920000000,"language":"en","tagline":"His Karma is Huge ","type":"Movie","_key":"52448"} +{"label":"Marco Schnabel","version":23,"id":"71527","lastModified":"1301902131000","name":"Marco Schnabel","type":"Person","_key":"52449"} +{"label":"Deepak Chopra","version":28,"id":"71531","lastModified":"1301902187000","name":"Deepak Chopra","type":"Person","_key":"52450"} +{"label":"Miss Pettigrew Lives for a Day","description":"Guinevere Pettigrew, a middle-aged London governess, finds herself unfairly dismissed from her job. An attempt to gain new employment catapults her into the glamorous world and dizzying social whirl of an American actress and singer, Delysia Lafosse.","id":"12178","runtime":92,"imdbId":"tt0970468","version":190,"lastModified":"1301902150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4d95952b7b9aa11994002c52\/miss-pettigrew-lives-for-a-day-mid.jpg","studio":"Keylight Entertainment Group","genre":"Comedy","title":"Miss Pettigrew Lives for a Day","releaseDate":1204848000000,"language":"en","type":"Movie","_key":"52451"} +{"label":"Lee Pace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/170\/4c2fa1e65e73d63cca000170\/lee-pace-profile.jpg","biography":"In 2003, Lee Pace starred in the Sundance hit, Soldier's Girl (2003) (TV), an extraordinary telefilm created for Showtime. The film was based on the true story of a transgendered nightclub performer in love with a soldier who is brutally murdered for their relationship. His breakthrough performance garnered him nominations for both the Golden Globes and the Independent Spirit Award, and he won a Gotham Award for Outstanding Breakthrough Performance.\n\nThough he was born in Oklahoma, Lee spent his","version":46,"birthday":"291510000000","id":"72095","birthplace":"Chickasha, Oklahoma, USA","lastModified":"1301901324000","name":"Lee Pace","type":"Person","_key":"52452"} +{"label":"Clare Clifford","version":21,"id":"71533","lastModified":"1301901872000","name":"Clare Clifford","type":"Person","_key":"52453"} +{"label":"David Alexander","version":24,"id":"71532","lastModified":"1301901872000","name":"David Alexander","type":"Person","_key":"52454"} +{"label":"Where in the World Is Osama Bin Laden?","description":"Morgan Spurlock (Super Size Me) tours the Middle East to discuss the war on terror with Arabic people.","id":"12179","runtime":93,"imdbId":"tt0963208","version":142,"lastModified":"1301903849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/534\/4bc93834017a3c57fe017534\/where-in-the-world-is-osama-bin-laden-mid.jpg","studio":"Non Linear Films","genre":"Documentary","title":"Where in the World Is Osama Bin Laden?","releaseDate":1200873600000,"language":"en","type":"Movie","_key":"52455"} +{"label":"Star Wars: The Clone Wars","description":"Set between Episode II and III the Clone Wars is the first computer animated Star Wars film. Anakin and Obi Wan must find out who kidnapped Jabba the Hutts son and return him safely. The Seperatists will try anything to stop them and ruin any chance of a diplomatic agreement between the Hutt's and the Republic.","id":"12180","runtime":90,"imdbId":"tt1185834","trailer":"http:\/\/www.youtube.com\/watch?v=tDe3kbmTlCE","homepage":"http:\/\/www.starwars.com\/clonewars\/site\/index.html","version":247,"lastModified":"1301901884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/870\/4cda442e5e73d676ce000870\/star-wars-the-clone-wars-mid.jpg","studio":"Lucasfilm","genre":"Action","title":"Star Wars: The Clone Wars","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"52456"} +{"label":"Matt Lanter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4c4a241e5e73d62712000147\/matt-lanter-profile.jpg","biography":"<span style=\"color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Matt Lanter was born in northeastern Ohio in 1983, but later moved to Atlanta, Georgia when he was eight years old. He spent much of his time playing sports including baseball, football, and golf. His love for baseball led him to a position as a bat boy with the Atlanta Braves. After high school, his interest in the film and television industry created a strong desire to pursue a","version":56,"id":"34202","birthplace":"Ohio","lastModified":"1301901209000","name":"Matt Lanter","type":"Person","_key":"52457"} +{"label":"Tom Kane","version":29,"id":"71535","lastModified":"1301901978000","name":"Tom Kane","type":"Person","_key":"52458"} +{"label":"Matthew Wood","version":25,"id":"71536","lastModified":"1301901832000","name":"Matthew Wood","type":"Person","_key":"52459"} +{"label":"Dave Filoni","version":25,"id":"71538","lastModified":"1301901326000","name":"Dave Filoni","type":"Person","_key":"52460"} +{"label":"Blue Angels 2","description":"The Devil has infected Heaven's computer system with a virus which makes the bad guys on Earth look like \"angels\" ... and of course, opens the Gate for their arrival. Two Celestial \"ace\" trouble shooters, Tough Tony and Joe Doggs, are once again called upon to save the day ... and joining them is a loveable computer geek who's a lot smarter than he looks.","id":"12181","runtime":93,"imdbId":"tt0413859","version":163,"lastModified":"1301905192000","genre":"Comedy","title":"Blue Angels 2","releaseDate":1085097600000,"language":"en","tagline":"Tough Tony and Joe Doggs Have Another Little Problem...","type":"Movie","_key":"52461"} +{"label":"Eva Angelina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e7\/4c480e1d5e73d61efa0003e7\/eva-angelina-profile.jpg","version":42,"id":"71542","lastModified":"1301901162000","name":"Eva Angelina","type":"Person","_key":"52462"} +{"label":"Chris Cannon","version":45,"id":"71543","lastModified":"1301901539000","name":"Chris Cannon","type":"Person","_key":"52463"} +{"label":"Herschel Savage","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bd\/4c8ce5b25e73d609ed0001bd\/herschel-savage-profile.jpg","version":45,"birthday":"-539571600000","id":"71544","birthplace":"New York City, New York, USA","lastModified":"1301901120000","name":"Herschel Savage","type":"Person","_key":"52464"} +{"label":"Micky Ray","version":22,"id":"71546","lastModified":"1301902176000","name":"Micky Ray","type":"Person","_key":"52465"} +{"label":"Dale DaBone","version":26,"id":"71547","lastModified":"1301902176000","name":"Dale DaBone","type":"Person","_key":"52466"} +{"label":"Nick and Norah's Infinite Playlist","description":"Attempting to avoid his obsession over a girl he just lost, a boy enlists the help of a stranger, another girl who leads him on a romantic escapade through the after-hours club scene in Manhattan. Though the girl is as lost and heartbroken over a love affair as the boy, miracles happen, idols crumble and the \"strangers\" find real love through each other.","id":"12182","runtime":90,"imdbId":"tt0981227","trailer":"http:\/\/www.youtube.com\/watch?v=QwlKyz_E-uA","version":463,"lastModified":"1302083988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/570\/4bc9383e017a3c57fe017570\/nick-and-norah-s-infinite-playlist-mid.jpg","studio":"Depth of Field","genre":"Comedy","title":"Nick and Norah's Infinite Playlist","releaseDate":1222992000000,"language":"en","tagline":"Every night has a soundtrack.","type":"Movie","_key":"52467"} +{"label":"Peter Sollett","version":24,"id":"71548","lastModified":"1301901611000","name":"Peter Sollett","type":"Person","_key":"52468"} +{"label":"Ari Graynor","version":34,"id":"71552","lastModified":"1302068189000","name":"Ari Graynor","type":"Person","_key":"52469"} +{"label":"Cassidy Gard","version":21,"id":"71553","lastModified":"1301901872000","name":"Cassidy Gard","type":"Person","_key":"52470"} +{"label":"Jonathan B. Wright","version":21,"id":"71554","lastModified":"1301901872000","name":"Jonathan B. Wright","type":"Person","_key":"52471"} +{"label":"The Wendell Baker Story","description":"Luke Wilson plays a good-hearted ex-con who gets a job in a retirement hotel. Three elderly residents help him win back his girlfriend as he lends them a hand in fighting hotel corruption.","id":"12183","runtime":99,"imdbId":"tt0373445","version":328,"lastModified":"1301903200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57e\/4bc93844017a3c57fe01757e\/the-wendell-baker-story-mid.jpg","genre":"Comedy","title":"The Wendell Baker Story","releaseDate":1123027200000,"language":"en","type":"Movie","_key":"52472"} +{"label":"Andrew Wilson","version":19,"id":"71555","lastModified":"1301902077000","name":"Andrew Wilson","type":"Person","_key":"52473"} +{"label":"Buck Taylor","version":22,"id":"71562","lastModified":"1301902077000","name":"Buck Taylor","type":"Person","_key":"52474"} +{"label":"Jo Harvey Allen","version":20,"id":"71561","lastModified":"1301902077000","name":"Jo Harvey Allen","type":"Person","_key":"52475"} +{"label":"Billy Joe Shaver","version":19,"id":"71563","lastModified":"1301902077000","name":"Billy Joe Shaver","type":"Person","_key":"52476"} +{"label":"Nicole Swahn","version":19,"id":"71564","lastModified":"1301902077000","name":"Nicole Swahn","type":"Person","_key":"52477"} +{"label":"Heather Kafka","version":19,"id":"71565","lastModified":"1301902077000","name":"Heather Kafka","type":"Person","_key":"52478"} +{"label":"Steve Stodghill","version":19,"id":"71567","lastModified":"1301902077000","name":"Steve Stodghill","type":"Person","_key":"52479"} +{"label":"Richard Jones","version":19,"id":"71566","lastModified":"1301902252000","name":"Richard Jones","type":"Person","_key":"52480"} +{"label":"Raymond Gestaut","version":19,"id":"71569","lastModified":"1301902077000","name":"Raymond Gestaut","type":"Person","_key":"52481"} +{"label":"Mark Wallace","version":24,"id":"71568","lastModified":"1301901156000","name":"Mark Wallace","type":"Person","_key":"52482"} +{"label":"The Other Boleyn Girl","description":"A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.","id":"12184","runtime":115,"imdbId":"tt0467200","trailer":"http:\/\/www.youtube.com\/watch?v=2YoiWr-yvws","version":321,"lastModified":"1301906224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/096\/4d1346887b9aa11482001096\/the-other-boleyn-girl-mid.jpg","studio":"BBC Films","genre":"Drama","title":"The Other Boleyn Girl","releaseDate":1204243200000,"language":"en","tagline":"Two sisters divided for the love for a king.","type":"Movie","_key":"52483"} +{"label":"Justin Chadwick","version":27,"id":"71570","lastModified":"1301901554000","name":"Justin Chadwick","type":"Person","_key":"52484"} +{"label":"Tom Cox","version":25,"id":"71582","lastModified":"1301901768000","name":"Tom Cox","type":"Person","_key":"52485"} +{"label":"Benedict Cumberbatch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4cac3a7e7b9aa1152e00011a\/benedict-cumberbatch-profile.jpg","biography":"<STRONG>Benedict Timothy Carlton Cumberbatch<\/STRONG> (born 19 July 1976) is an <A title=\"English people\" href=\"\/wiki\/English_people\"><FONT color=#0645ad>English<\/FONT><\/A> film, television, and theatre actor. His most acclaimed roles include: <A title=\"Stephen Hawking\" href=\"\/wiki\/Stephen_Hawking\"><FONT color=#0645ad>Stephen Hawking<\/FONT><\/A> in the <A title=BBC href=\"\/wiki\/BBC\"><FONT color=#0645ad>BBC<\/FONT><\/A> drama <I><A title=\"Hawking (TV film)\" href=\"\/wiki\/Hawking_(TV_film)\"><FONT color=","version":49,"birthday":"206578800000","id":"71580","birthplace":"London, England","lastModified":"1301901152000","name":"Benedict Cumberbatch","type":"Person","_key":"52486"} +{"label":"Oliver Coleman","version":25,"id":"71581","lastModified":"1301901768000","name":"Oliver Coleman","type":"Person","_key":"52487"} +{"label":"Montserrat Roig de Puig","version":25,"id":"71583","lastModified":"1301901768000","name":"Montserrat Roig de Puig","type":"Person","_key":"52488"} +{"label":"Iain Mitchell","version":25,"id":"71584","lastModified":"1301901768000","name":"Iain Mitchell","type":"Person","_key":"52489"} +{"label":"Lewis Jones","version":21,"id":"71585","lastModified":"1301901768000","name":"Lewis Jones","type":"Person","_key":"52490"} +{"label":"Alfie Allen","version":27,"id":"71586","lastModified":"1301901554000","name":"Alfie Allen","type":"Person","_key":"52491"} +{"label":"Corinne Galloway","version":25,"id":"71587","lastModified":"1301901487000","name":"Corinne Galloway","type":"Person","_key":"52492"} +{"label":"Heaven Can Wait","description":"Joe Pendleton is a quarterback preparing to lead his team to the superbowl when he is almost killed in an accident. An overanxious angel plucks him to heaven only to discover that he wasn't ready to die, and that his body has been cremated. A new body must be found, and that of a recently murdered millionaire is chosen. His wife and accountant, the murderers, are confused by this development, as he buys the L.A. Rams in order to once again quarterback them into the Superbowl.","id":"12185","runtime":101,"imdbId":"tt0077663","trailer":"http:\/\/www.youtube.com\/watch?v=nxE9MriSy4I","version":163,"lastModified":"1301903026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/278\/4cb5cbd97b9aa138d9000278\/heaven-can-wait-mid.jpg","studio":"Disne","genre":"Comedy","title":"Heaven Can Wait","releaseDate":267840000000,"language":"en","type":"Movie","_key":"52493"} +{"label":"Defending Your Life","description":"In an afterlife resembling the present-day US, people must prove their worth by showing in court how they have demonstrated courage.","id":"12186","runtime":112,"imdbId":"tt0101698","version":141,"lastModified":"1301903721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a1\/4bc93848017a3c57fe0175a1\/defending-your-life-mid.jpg","genre":"Comedy","title":"Defending Your Life","releaseDate":669600000000,"language":"en","tagline":"The first true story of what happens after you die. ","type":"Movie","_key":"52494"} +{"label":"Heart and Souls","description":"A businessman is reunited with the four lost souls who were his guardian angels during childhood, all with a particular purpose to joining the afterlife.","id":"12187","runtime":104,"imdbId":"tt0107091","version":141,"lastModified":"1301903783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc9384d017a3c57fe0175af\/heart-and-souls-mid.jpg","genre":"Comedy","title":"Heart and Souls","releaseDate":745200000000,"language":"en","type":"Movie","_key":"52495"} +{"label":"Les Animaux amoureux","description":"No overview found.","id":"12188","runtime":85,"imdbId":"tt0498091","version":60,"lastModified":"1301904409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dd\/4d0bda0f7b9aa102540002dd\/les-animaux-amoureux-mid.jpg","studio":"MC4 Productions","genre":"Documentary","title":"Les Animaux amoureux","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"52496"} +{"label":"Laurent Charbonnier","version":20,"id":"71595","lastModified":"1301901990000","name":"Laurent Charbonnier","type":"Person","_key":"52497"} +{"label":"Selbstgespr\u00e4che","description":"No overview found.","id":"12189","runtime":96,"imdbId":"tt1173918","version":36,"lastModified":"1301302607000","genre":"Comedy","title":"Selbstgespr\u00e4che","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"52498"} +{"label":"Andr\u00e9 Erkau","version":20,"id":"71596","lastModified":"1301902011000","name":"Andr\u00e9 Erkau","type":"Person","_key":"52499"} +{"label":"Johannes Allmayer","version":21,"id":"71597","lastModified":"1301902191000","name":"Johannes Allmayer","type":"Person","_key":"52500"} +{"label":"Antje Widdra","version":20,"id":"71598","lastModified":"1301902392000","name":"Antje Widdra","type":"Person","_key":"52501"} +{"label":"Jeder siebte Mensch","description":"No overview found.","id":"12190","runtime":74,"imdbId":"tt0395223","version":32,"lastModified":"1301904998000","studio":"Amour Fou Filmproduktion","genre":"Documentary","title":"Jeder siebte Mensch","releaseDate":1161648000000,"language":"en","type":"Movie","_key":"52502"} +{"label":"Elke Groen","version":21,"id":"71590","lastModified":"1301902190000","name":"Elke Groen","type":"Person","_key":"52503"} +{"label":"Ina Ivanceanu","version":20,"id":"71591","lastModified":"1301902184000","name":"Ina Ivanceanu","type":"Person","_key":"52504"} +{"label":"Pathology","description":"A group of medical students devise a deadly game: to see which one of them can commit the perfect murder.","id":"12192","runtime":93,"imdbId":"tt0964539","trailer":"http:\/\/www.youtube.com\/watch?v=1730","version":195,"lastModified":"1301908009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bc\/4bc9384e017a3c57fe0175bc\/pathology-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Crime","title":"Pathology","releaseDate":1207872000000,"language":"en","type":"Movie","_key":"52505"} +{"label":"Marc Sch\u00f6lermann","version":21,"id":"73588","lastModified":"1301902181000","name":"Marc Sch\u00f6lermann","type":"Person","_key":"52506"} +{"label":"Mei Melan\u00e7on","version":24,"id":"73590","lastModified":"1301901841000","name":"Mei Melan\u00e7on","type":"Person","_key":"52507"} +{"label":"Four Christmases","description":"A crafty couple run the Christmas Day gauntlet by racing to visit their divorced parents' four separate households in this Vince Vaughn\/Reese Witherspoon comedy that proves the holidays are no time for relaxing.","id":"12193","runtime":82,"imdbId":"tt0369436","trailer":"http:\/\/www.youtube.com\/watch?v=1513","version":251,"lastModified":"1301901796000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75a\/4c637f525e73d6346200075a\/four-christmases-mid.jpg","studio":"Birnbaum\/Barber Production","genre":"Comedy","title":"Four Christmases","releaseDate":1227657600000,"language":"en","tagline":"His father, her mother, his mother and her father all in one day.","type":"Movie","_key":"52508"} +{"label":"Seth Gordon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66c\/4ca9a2bc7b9aa17ace00066c\/seth-gordon-profile.jpg","biography":"<!--StartFragment-->\n\n<span lang=\"EN-US\" style=\"mso-bidi-font-family:Helvetica-Bold;\nmso-bidi-language:EN-US;mso-bidi-font-weight:bold\">Seth Gordon has<\/span><span lang=\"EN-US\" style=\"mso-bidi-font-family:Helvetica-Bold;mso-bidi-language:EN-US\"> produced and edited the critically lauded films <span style=\"mso-bidi-font-style:italic\">NEW YORK DOLL<i> <\/i><\/span>and <span style=\"mso-bidi-font-style:italic\">CRY WOLF<i>, <\/i><\/span>which grossed $10m\nat the US box office, and was cinematographe","version":35,"id":"71600","lastModified":"1301901605000","name":"Seth Gordon","type":"Person","_key":"52509"} +{"label":"Dokumentarfilm - Eine Anleitung","description":"No overview found.","id":"12195","runtime":3,"imdbId":"tt1027675","version":31,"lastModified":"1301908551000","genre":"Comedy","title":"Dokumentarfilm - Eine Anleitung","releaseDate":788918400000,"language":"en","type":"Movie","_key":"52510"} +{"label":"66\/67 - Fairplay war gestern","description":"No overview found.","id":"12196","runtime":0,"imdbId":"tt1302548","version":67,"lastModified":"1301906762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a4\/4cd5f02a5e73d676d30002a4\/66-67-fairplay-war-gestern-mid.jpg","studio":"Jetfilm","genre":"Drama","title":"66\/67 - Fairplay war gestern","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"52511"} +{"label":"Christian Ahlers","version":20,"id":"71606","lastModified":"1301902369000","name":"Christian Ahlers","type":"Person","_key":"52512"} +{"label":"Aurel Manthei","version":20,"id":"71607","lastModified":"1301902363000","name":"Aurel Manthei","type":"Person","_key":"52513"} +{"label":"Victoria Deutschmann","version":20,"id":"71608","lastModified":"1301902369000","name":"Victoria Deutschmann","type":"Person","_key":"52514"} +{"label":"Reprise","description":"Erik and Phillip are two guys in their twenties who dreams of getting his first book published. The film begins as we see both submit their own proposal to the publisher. Phillips proposals are expected, and he has published his first book. Concurrent with this storm , he falls into Kari, but is sick and admitted to the psychiatric department. Six years later, Philip discharged , and in the meantime, Erik worked on his book, which eventually also be released. We follow the two boys through the h","id":"12197","runtime":105,"imdbId":"tt0827517","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=ymR9mWQDTT0","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/reprise","version":190,"lastModified":"1301905193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/644\/4bc9386a017a3c57fe017644\/reprise-mid.jpg","studio":"Filmlance International AB","genre":"Drama","title":"Reprise","releaseDate":1151884800000,"language":"en","type":"Movie","_key":"52515"} +{"label":"Joachim Trier","version":20,"id":"71609","lastModified":"1301901930000","name":"Joachim Trier","type":"Person","_key":"52516"} +{"label":"Anders Danielsen Lie","version":25,"id":"71610","lastModified":"1301901256000","name":"Anders Danielsen Lie","type":"Person","_key":"52517"} +{"label":"Espen Klouman-H\u00f8iner","version":20,"id":"71611","lastModified":"1301901764000","name":"Espen Klouman-H\u00f8iner","type":"Person","_key":"52518"} +{"label":"Viktoria Winge","version":29,"id":"71612","lastModified":"1301901634000","name":"Viktoria Winge","type":"Person","_key":"52519"} +{"label":"Christian Rubeck","version":27,"id":"47647","lastModified":"1301901442000","name":"Christian Rubeck","type":"Person","_key":"52520"} +{"label":"Henrik Elvestad","version":24,"id":"71613","lastModified":"1301901991000","name":"Henrik Elvestad","type":"Person","_key":"52521"} +{"label":"Le Voyage du ballon rouge","description":"The first part in a new series of films produced by Mus\u00e9e d'Orsay, 'Flight of the Red Balloon' tells the story of a French family as seen through the eyes of a Chinese student. The film was shot in August and September 2006 on location in Paris. This is Hou Hsiao-Hsien's first Western film. It is based on the classic French short The Red Balloon directed by Albert Lamorisse.","id":"12198","runtime":117,"imdbId":"tt0826711","version":58,"lastModified":"1301903583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/652\/4bc9386b017a3c57fe017652\/le-voyage-du-ballon-rouge-mid.jpg","studio":"Margo Films","genre":"Drama","title":"Le Voyage du ballon rouge","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"52522"} +{"label":"Simon Iteanu","version":21,"id":"71623","lastModified":"1301901509000","name":"Simon Iteanu","type":"Person","_key":"52523"} +{"label":"Fang Song","version":21,"id":"71624","lastModified":"1301901400000","name":"Fang Song","type":"Person","_key":"52524"} +{"label":"Louise Margolin","version":21,"id":"71628","lastModified":"1301901951000","name":"Louise Margolin","type":"Person","_key":"52525"} +{"label":"Coney Island - Ein letzter Sommer","description":"No overview found.","id":"12199","runtime":52,"imdbId":"tt1256500","version":105,"lastModified":"1301904727000","studio":"Florianfilm","genre":"Documentary","title":"Coney Island - Ein letzter Sommer","releaseDate":1210982400000,"language":"en","type":"Movie","_key":"52526"} +{"label":"Sebastian Lemke","version":24,"id":"57941","lastModified":"1301902350000","name":"Sebastian Lemke","type":"Person","_key":"52527"} +{"label":"Thomas Halaczinsky","version":21,"id":"71632","lastModified":"1301902011000","name":"Thomas Halaczinsky","type":"Person","_key":"52528"} +{"label":"Der Feierabendklub","description":"No overview found.","id":"12200","runtime":52,"imdbId":"tt1029296","version":33,"lastModified":"1301419206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4bc9386b017a3c57fe017657\/der-feierabendklub-mid.jpg","genre":"Documentary","title":"Der Feierabendklub","releaseDate":1180569600000,"language":"en","type":"Movie","_key":"52529"} +{"label":"Edge of Darkness","description":"As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.","id":"12201","runtime":117,"imdbId":"tt1226273","trailer":"http:\/\/www.youtube.com\/watch?v=-5wPwGmvUz8","version":347,"lastModified":"1301901476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1a\/4d6ba3fb7b9aa132fe000e1a\/edge-of-darkness-mid.jpg","studio":"GK Films","genre":"Crime","title":"Edge of Darkness","releaseDate":1264723200000,"language":"en","tagline":"Some secrets take us to the edge.","type":"Movie","_key":"52530"} +{"label":"Denis O'Hare","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4cdc6bb97b9aa1380100009a\/denis-o-hare-profile.jpg","version":53,"id":"81681","lastModified":"1301911483000","name":"Denis O'Hare","type":"Person","_key":"52531"} +{"label":"Bojana Novakovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/792\/4cf711b25e73d6299d001792\/bojana-novakovic-profile.jpg","version":53,"id":"81682","lastModified":"1301904062000","name":"Bojana Novakovi\u0107","type":"Person","_key":"52532"} +{"label":"Gbenga Akinnagbe","version":22,"id":"81683","lastModified":"1301901373000","name":"Gbenga Akinnagbe","type":"Person","_key":"52533"} +{"label":"Caterina Scorsone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4d7a40b55e73d65ec60002cb\/caterina-scorsone-profile.jpg","version":25,"id":"81684","lastModified":"1301901347000","name":"Caterina Scorsone","type":"Person","_key":"52534"} +{"label":"Frank Grillo","version":24,"id":"81685","lastModified":"1301901389000","name":"Frank Grillo","type":"Person","_key":"52535"} +{"label":"Sol E. Romero","version":23,"id":"81686","lastModified":"1301901250000","name":"Sol E. Romero","type":"Person","_key":"52536"} +{"label":"Rick Avery","version":25,"id":"81687","lastModified":"1301901276000","name":"Rick Avery","type":"Person","_key":"52537"} +{"label":"Scott Winters","version":24,"id":"81688","lastModified":"1301901258000","name":"Scott Winters","type":"Person","_key":"52538"} +{"label":"Jui kuen","description":"No overview found.","id":"12203","title":"Jui kuen","language":"en","lastModified":"1301906715000","version":38,"type":"Movie","_key":"52539"} +{"label":"Dark Water","description":"Yoshimi Matsubara (Hitomi Kuroki), who, in the midst of an unpleasant divorce, moves to an eerie, run-down apartment building with her young daughter, Ikuko (Rio Kanno). The ceiling of their apartment has a dark and active leak. Yoshimi discovers that the upstairs apartment, which appears to be the source of the leak, was formerly the home of a deceased young girl named Mitsuko Kawai.","id":"12205","runtime":101,"imdbId":"tt0308379","version":156,"lastModified":"1301903942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/682\/4bc93872017a3c57fe017682\/honogurai-mizu-no-soko-kara-mid.jpg","genre":"Horror","title":"Dark Water","releaseDate":1011398400000,"language":"en","type":"Movie","_key":"52540"} +{"label":"Hitomi Kuroki","version":23,"id":"71641","lastModified":"1301901527000","name":"Hitomi Kuroki","type":"Person","_key":"52541"} +{"label":"Mirei Oguchi","version":20,"id":"71642","lastModified":"1301901723000","name":"Mirei Oguchi","type":"Person","_key":"52542"} +{"label":"Asami Mizukawa","version":28,"id":"71643","lastModified":"1301902045000","name":"Asami Mizukawa","type":"Person","_key":"52543"} +{"label":"Rio Kanno","version":23,"id":"71644","lastModified":"1301901514000","name":"Rio Kanno","type":"Person","_key":"52544"} +{"label":"The Testament of Dr. Mabuse","description":"Fritz Lang directed this sequel to his nearly four-hour Dr. Mabuse silent of 1922. The film opens with Detective Hofmeister (Karl Meixner) spying on the activities of a criminal syndicate. Not realizing he has been seen, Hofmeister is attacked by the thugs and later turns up out of his mind.","id":"12206","runtime":122,"imdbId":"tt0023563","version":104,"lastModified":"1301903849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4bcbb69e017a3c753f000071\/das-testament-des-dr-mabuse-mid.jpg","genre":"Crime","title":"The Testament of Dr. Mabuse","releaseDate":-1158883200000,"language":"en","type":"Movie","_key":"52545"} +{"label":"Oscar Beregi Sr.","version":21,"id":"71648","lastModified":"1301901611000","name":"Oscar Beregi Sr.","type":"Person","_key":"52546"} +{"label":"Paul Bernd","version":21,"id":"71649","lastModified":"1301901611000","name":"Paul Bernd","type":"Person","_key":"52547"} +{"label":"Henry Ple\u00df","version":21,"id":"71650","lastModified":"1301901306000","name":"Henry Ple\u00df","type":"Person","_key":"52548"} +{"label":"Legend of the Drunken Master","description":"Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.","id":"12207","runtime":102,"imdbId":"tt0111512","version":113,"lastModified":"1301902269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69b\/4bc93874017a3c57fe01769b\/jui-kuen-ii-mid.jpg","genre":"Action","title":"Legend of the Drunken Master","releaseDate":760233600000,"language":"en","tagline":"He's got a secret weapon with a lot of kick.","type":"Movie","_key":"52549"} +{"label":"Anita Mui","version":49,"id":"44917","lastModified":"1301901336000","name":"Anita Mui","type":"Person","_key":"52550"} +{"label":"Felix Wong","version":21,"id":"71655","lastModified":"1301901992000","name":"Felix Wong","type":"Person","_key":"52551"} +{"label":"Casino Royale","description":"Sir James Bond is called back out of retirement to stop SMERSH. In order to trick SMERSH, Bond thinks up the ultimate plan. That every agent will be named James Bond. One of the Bonds, whose real name is Evelyn Tremble is sent to take on Le Chiffre in a game of baccarat, but all the Bonds get more than they can handle, especially when the ultimate villain turns out to be Bonds nephew.","id":"12208","runtime":131,"imdbId":"tt0061452","trailer":"http:\/\/www.youtube.com\/watch?v=2886","version":169,"lastModified":"1301902284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ad\/4bc93878017a3c57fe0176ad\/casino-royale-mid.jpg","genre":"Action","title":"Casino Royale","releaseDate":-85881600000,"language":"en","type":"Movie","_key":"52552"} +{"label":"Abxang","description":"No overview found.","id":"12209","runtime":102,"imdbId":"tt0377325","version":27,"lastModified":"1301419139000","genre":"Documentary","title":"Abxang","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"52553"} +{"label":"Mirjam von Arx","version":23,"id":"53747","lastModified":"1301901566000","name":"Mirjam von Arx","type":"Person","_key":"52554"} +{"label":"Building The Gherkin","description":"No overview found.","id":"12210","runtime":89,"imdbId":"tt0831278","homepage":"http:\/\/www.buildingthegherkin.com\/","version":229,"lastModified":"1301905307000","genre":"Documentary","title":"Building The Gherkin","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"52555"} +{"label":"Highlander: Endgame","description":"Immortals Connor and Duncan Macleod must join forces against Kell, an evil immortal who has become too strong for anyone to face alone.","id":"12211","runtime":87,"imdbId":"tt0144964","version":90,"lastModified":"1301902030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bb\/4bc9387b017a3c57fe0176bb\/highlander-endgame-mid.jpg","genre":"Adventure","title":"Highlander: Endgame","releaseDate":967766400000,"language":"en","type":"Movie","_key":"52556"} +{"label":"Adrian Paul","version":41,"id":"71900","lastModified":"1301901284000","name":"Adrian Paul","type":"Person","_key":"52557"} +{"label":"Douglas Aarniokoski","version":26,"id":"71901","lastModified":"1301901412000","name":"Douglas Aarniokoski","type":"Person","_key":"52558"} +{"label":"Urban Legends: Final Cut","description":"The making of a horror movie takes on a terrifying reality for students at the most prestigious film school in the country in 'Urban Legends: Final Cut', the suspenseful follow up to the smash hit 'Urban Legend'. At Alpine University, someone is determined to win the best film award at any cost - even if it means eliminating the competition. No one is safe and everyone is a suspect. 'Urban Legends: Final Cut' is an edge-of-your-seat thriller that will keep you guessing until the shocking climax.","id":"12212","runtime":97,"imdbId":"tt0192731","version":101,"lastModified":"1301903196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c4\/4bc9387c017a3c57fe0176c4\/urban-legends-final-cut-mid.jpg","genre":"Horror","title":"Urban Legends: Final Cut","releaseDate":969321600000,"language":"en","type":"Movie","_key":"52559"} +{"label":"Jennifer Morrison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/301\/4bf70b0d017a3c7733000301\/jennifer-morrison-profile.jpg","version":56,"id":"41421","lastModified":"1301901098000","name":"Jennifer Morrison","type":"Person","_key":"52560"} +{"label":"John Ottman","version":137,"id":"9039","lastModified":"1302077597000","name":"John Ottman","type":"Person","_key":"52561"} +{"label":"Remembering Whiskey","description":"No overview found.","id":"12213","runtime":10,"imdbId":"tt1382332","version":46,"lastModified":"1301421320000","title":"Remembering Whiskey","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52562"} +{"label":"Une affaire d'hommes","description":"No overview found.","id":"12214","runtime":105,"imdbId":"tt0083255","version":49,"lastModified":"1301906611000","genre":"Crime","title":"Une affaire d'hommes","releaseDate":374198400000,"language":"en","type":"Movie","_key":"52563"} +{"label":"Nicolas Ribowski","version":19,"id":"71661","lastModified":"1301901723000","name":"Nicolas Ribowski","type":"Person","_key":"52564"} +{"label":"Patrice Kerbrat","version":21,"id":"71663","lastModified":"1301902252000","name":"Patrice Kerbrat","type":"Person","_key":"52565"} +{"label":"B\u00e9atrice Camurat","version":19,"id":"71664","lastModified":"1301902252000","name":"B\u00e9atrice Camurat","type":"Person","_key":"52566"} +{"label":"Peter Bonke","version":21,"id":"70412","lastModified":"1301902252000","name":"Peter Bonke","type":"Person","_key":"52567"} +{"label":"Elisabeth Huppert","version":19,"id":"71666","lastModified":"1301902252000","name":"Elisabeth Huppert","type":"Person","_key":"52568"} +{"label":"La Passion","description":"No overview found.","id":"12215","runtime":90,"imdbId":"tt0428953","version":263,"lastModified":"1301908552000","genre":"Drama","title":"La Passion","releaseDate":259459200000,"language":"en","type":"Movie","_key":"52569"} +{"label":"Raoul Sangla","version":20,"id":"71668","lastModified":"1301902359000","name":"Raoul Sangla","type":"Person","_key":"52570"} +{"label":"Fran\u00e7ois Dyrek","version":20,"id":"71669","lastModified":"1301902359000","name":"Fran\u00e7ois Dyrek","type":"Person","_key":"52571"} +{"label":"Martine Drai","version":20,"id":"71670","lastModified":"1301902359000","name":"Martine Drai","type":"Person","_key":"52572"} +{"label":"Anna Babel","version":20,"id":"71671","lastModified":"1301902359000","name":"Anna Babel","type":"Person","_key":"52573"} +{"label":"The Portal","description":"No overview found.","id":"12216","runtime":0,"imdbId":"tt1051253","trailer":"http:\/\/www.youtube.com\/watch?v=PQK6_I_MNfA","version":138,"lastModified":"1301906780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4c9a93105e73d6554d0002a6\/the-portal-mid.jpg","genre":"Horror","title":"The Portal","releaseDate":1262304000000,"language":"en","tagline":"Dare to face your inner child...","type":"Movie","_key":"52574"} +{"label":"Michael Muhney","version":28,"id":"71673","lastModified":"1301902141000","name":"Michael Muhney","type":"Person","_key":"52575"} +{"label":"Jenna Zablocki","version":21,"id":"71674","lastModified":"1301901680000","name":"Jenna Zablocki","type":"Person","_key":"52576"} +{"label":"Nicholas Brendon","version":27,"id":"71675","lastModified":"1301901664000","name":"Nicholas Brendon","type":"Person","_key":"52577"} +{"label":"Sandy Hackett","version":20,"id":"71677","lastModified":"1301902309000","name":"Sandy Hackett","type":"Person","_key":"52578"} +{"label":"Michael Desante","version":20,"id":"71678","lastModified":"1301902309000","name":"Michael Desante","type":"Person","_key":"52579"} +{"label":"Laura Sorenson","version":20,"id":"71679","lastModified":"1301902309000","name":"Laura Sorenson","type":"Person","_key":"52580"} +{"label":"Rachel Wittman","version":20,"id":"71680","lastModified":"1301902309000","name":"Rachel Wittman","type":"Person","_key":"52581"} +{"label":"Danny Roque","version":20,"id":"71681","lastModified":"1301902309000","name":"Danny Roque","type":"Person","_key":"52582"} +{"label":"Paul Hodge","version":20,"id":"71682","lastModified":"1301902309000","name":"Paul Hodge","type":"Person","_key":"52583"} +{"label":"Shaun Kurtz","version":23,"id":"71683","lastModified":"1301902208000","name":"Shaun Kurtz","type":"Person","_key":"52584"} +{"label":"Dustin Cyril Robles","version":20,"id":"71684","lastModified":"1301902309000","name":"Dustin Cyril Robles","type":"Person","_key":"52585"} +{"label":"Wade Speckels","version":20,"id":"71685","lastModified":"1301902309000","name":"Wade Speckels","type":"Person","_key":"52586"} +{"label":"Christopher Gehrman","version":20,"id":"71686","lastModified":"1301902309000","name":"Christopher Gehrman","type":"Person","_key":"52587"} +{"label":"Ariel Teal Toombs","version":23,"id":"71687","lastModified":"1301902309000","name":"Ariel Teal Toombs","type":"Person","_key":"52588"} +{"label":"Darren Schnase","version":20,"id":"71688","lastModified":"1301902309000","name":"Darren Schnase","type":"Person","_key":"52589"} +{"label":"Allen Earls","version":20,"id":"71689","lastModified":"1301902309000","name":"Allen Earls","type":"Person","_key":"52590"} +{"label":"Matthias Bernd","version":21,"id":"71690","lastModified":"1301902366000","name":"Matthias Bernd","type":"Person","_key":"52591"} +{"label":"Dave Glenn","version":20,"id":"71691","lastModified":"1301902309000","name":"Dave Glenn","type":"Person","_key":"52592"} +{"label":"Evan Martinez","version":20,"id":"71692","lastModified":"1301902309000","name":"Evan Martinez","type":"Person","_key":"52593"} +{"label":"Ed Blinn","version":22,"id":"71693","lastModified":"1301902132000","name":"Ed Blinn","type":"Person","_key":"52594"} +{"label":"Rebecca Zamolo","version":20,"id":"71694","lastModified":"1301901938000","name":"Rebecca Zamolo","type":"Person","_key":"52595"} +{"label":"Serge Rodnunsky","version":25,"id":"71696","lastModified":"1301902055000","name":"Serge Rodnunsky","type":"Person","_key":"52596"} +{"label":"The Third Eye","description":"No overview found.","id":"12217","runtime":87,"imdbId":"tt0328549","version":51,"lastModified":"1301904714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/425\/4d686ec85e73d66b35000425\/le-troisi-me-oeil-mid.jpg","studio":"Ga\u00efa Films","genre":"Road Movie","title":"The Third Eye","releaseDate":978307200000,"language":"en","type":"Movie","_key":"52597"} +{"label":"Christophe Fraipont","version":23,"id":"71699","lastModified":"1301902146000","name":"Christophe Fraipont","type":"Person","_key":"52598"} +{"label":"Nozha Khouadra","version":23,"id":"73726","lastModified":"1301902146000","name":"Nozha Khouadra","type":"Person","_key":"52599"} +{"label":"Christian Crahay","version":22,"id":"73727","lastModified":"1301902200000","name":"Christian Crahay","type":"Person","_key":"52600"} +{"label":"St\u00e9phane Excoffier","version":21,"id":"73728","lastModified":"1301902146000","name":"St\u00e9phane Excoffier","type":"Person","_key":"52601"} +{"label":"P\u00fabol - Dal\u00ed de-construction","description":"No overview found.","id":"12218","runtime":0,"version":23,"lastModified":"1301904260000","studio":"M\u00ednimo Producciones","genre":"Documentary","title":"P\u00fabol - Dal\u00ed de-construction","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52602"} +{"label":"Jos\u00e9 Ram\u00f3n Da Cruz","version":16,"id":"71703","lastModified":"1301901951000","name":"Jos\u00e9 Ram\u00f3n Da Cruz","type":"Person","_key":"52603"} +{"label":"12 Angry Men","description":"Remake of the 1957 classic, drama set in a jury room as 12 jurors attempt to decide the verdict on a young black man accused of murder.","id":"12219","runtime":117,"imdbId":"tt0118528","version":137,"lastModified":"1301902717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c9\/4bc9387c017a3c57fe0176c9\/12-angry-men-mid.jpg","genre":"Drama","title":"12 Angry Men","releaseDate":871776000000,"language":"en","type":"Movie","_key":"52604"} +{"label":"The Story of Us","description":"Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.","id":"12220","runtime":95,"imdbId":"tt0160916","trailer":"http:\/\/www.youtube.com\/watch?v=dF5BS0QkUI8","version":157,"lastModified":"1301902494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d2\/4bc9387c017a3c57fe0176d2\/the-story-of-us-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"The Story of Us","releaseDate":939772800000,"language":"en","type":"Movie","_key":"52605"} +{"label":"Jake Sandvig","version":31,"id":"71725","lastModified":"1301901211000","name":"Jake Sandvig","type":"Person","_key":"52606"} +{"label":"Casey Boersma","version":20,"id":"71726","lastModified":"1301902303000","name":"Casey Boersma","type":"Person","_key":"52607"} +{"label":"Tom Poston","version":24,"id":"71728","lastModified":"1301901765000","name":"Tom Poston","type":"Person","_key":"52608"} +{"label":"Odete","description":"Rui is grief-stricken after the death of his boyfriend. Odete has split from her boyfriend over an argument about having a baby. Odete insinuates herself into Rui's life, morning at his boyfriend's grave, and claiming she is pregnant with his baby. This crazy, mad relationship finally comes to a climax.","id":"12221","runtime":101,"imdbId":"tt0450470","version":44,"lastModified":"1301906063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4bc93882017a3c57fe0176ec\/odete-mid.jpg","studio":"Rosa Filmes","genre":"Drama","title":"Odete","releaseDate":1116374400000,"language":"en","type":"Movie","_key":"52609"} +{"label":"Jo\u00e3o Pedro Rodrigues","version":23,"id":"73752","lastModified":"1301901611000","name":"Jo\u00e3o Pedro Rodrigues","type":"Person","_key":"52610"} +{"label":"Ana Cristina de Oliveira","version":20,"id":"73753","lastModified":"1301901611000","name":"Ana Cristina de Oliveira","type":"Person","_key":"52611"} +{"label":"Nuno Gil","version":20,"id":"73754","lastModified":"1301901580000","name":"Nuno Gil","type":"Person","_key":"52612"} +{"label":"Jo\u00e3o Carreira","version":19,"id":"73755","lastModified":"1301901611000","name":"Jo\u00e3o Carreira","type":"Person","_key":"52613"} +{"label":"Teresa Madruga","version":19,"id":"73756","lastModified":"1301901723000","name":"Teresa Madruga","type":"Person","_key":"52614"} +{"label":"Horton Hears a Who!","description":"One day, Horton the elephant hears a cry from help coming from a speck of dust. Even though he can't see anyone on the speck, he decides to help it. As it turns out, the speck of dust is home to the Whos, who live in their city of Whoville. Horton agrees to help protect the Whos and their home","id":"12222","runtime":88,"imdbId":"tt0451079","trailer":"http:\/\/www.youtube.com\/watch?v=MIQFTBsGccA","version":269,"lastModified":"1301901439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/392\/4c8bee565e73d60691000392\/horton-hears-a-who-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Horton Hears a Who!","releaseDate":1204502400000,"language":"en","tagline":"A persons a person no matter how small!","type":"Movie","_key":"52615"} +{"label":"Jimmy Hayward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/509\/4ccb43967b9aa16b9e000509\/jimmy-hayward-profile.jpg","version":57,"id":"8029","lastModified":"1301901078000","name":"Jimmy Hayward","type":"Person","_key":"52616"} +{"label":"Steve Martino","version":26,"id":"71729","lastModified":"1301901517000","name":"Steve Martino","type":"Person","_key":"52617"} +{"label":"The Stepford Wives","description":"The urban aspirant photographer Joanna Eberhart moves from Manhattan to Stepford, Connecticut, Massachussets with her family. Her husband Walter Eberhart decided to live in a calm suburb, but Joanna did not like the neighborhood with beautiful and perfect housewives. She becomes friend of Bobbie Markowe and Charmaine Wimperis, and when they change Joanna tries to escape.","id":"12223","runtime":117,"imdbId":"tt0073747","version":141,"lastModified":"1301903271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/710\/4bc93885017a3c57fe017710\/the-stepford-wives-mid.jpg","genre":"Horror","title":"The Stepford Wives","releaseDate":161395200000,"language":"en","type":"Movie","_key":"52618"} +{"label":"Nanette Newman","version":24,"id":"71733","lastModified":"1301901849000","name":"Nanette Newman","type":"Person","_key":"52619"} +{"label":"Dinotopia","description":"No overview found.","id":"12224","runtime":250,"imdbId":"tt0233044","version":104,"lastModified":"1301903361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71e\/4bc93886017a3c57fe01771e\/dinotopia-mid.jpg","genre":"Action","title":"Dinotopia","releaseDate":1021161600000,"language":"en","type":"Movie","_key":"52620"} +{"label":"Katie Carr","version":19,"id":"40588","lastModified":"1301901475000","name":"Katie Carr","type":"Person","_key":"52621"} +{"label":"Cashback","description":"A young insomniac attempts to cope with his sleepless nights by taking a job at a local supermarket, only to discover that he possesses a curious coping mechanism in the debut feature from Academy-Award nominated filmmaker Sean Ellis.","id":"12225","runtime":102,"imdbId":"tt0460740","trailer":"http:\/\/www.youtube.com\/watch?v=Sf2drFZbHH4","version":270,"lastModified":"1301901872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/740\/4bc9388d017a3c57fe017740\/cashback-mid.jpg","studio":"Left Turn Films","genre":"Comedy","title":"Cashback","releaseDate":1184630400000,"language":"en","tagline":"Sometimes love is hiding between the seconds of your life","type":"Movie","_key":"52622"} +{"label":"Michelle Ryan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac5\/4d40b0377b9aa15bab002ac5\/michelle-ryan-profile.jpg","biography":"Michelle Claire Ryan (born 22 April 1984) is an English actress.She is known for portraying the role of Zoe Slater on the BBC soap opera EastEnders. In 2007, she starred in the short lived revival of the American television series Bionic Woman. She has appeared as the wicked sorceress Nimueh in the 2008 BBC TV series Merlin, and as Lady Christina de Souza in the 2009 episode of Doctor Who.","version":31,"id":"73525","lastModified":"1301901826000","name":"Michelle Ryan","type":"Person","_key":"52623"} +{"label":"Stuart Goodwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b5f\/4d40ae617b9aa15bb5002b5f\/stuart-goodwin-profile.jpg","biography":"<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: Verdana, Arial, sans-serif; font-size: 13px; color: rgb(51, 51, 51); \">Graduated from Guildhall School of Music and Drama in 1998.<\/span>","version":26,"id":"73526","lastModified":"1301901872000","name":"Stuart Goodwin","type":"Person","_key":"52624"} +{"label":"Frank Hesketh","version":24,"id":"73529","lastModified":"1301901723000","name":"Frank Hesketh","type":"Person","_key":"52625"} +{"label":"Kenneth Fahy","version":22,"id":"73531","lastModified":"1301901611000","name":"Kenneth Fahy","type":"Person","_key":"52626"} +{"label":"Erica Ellis","version":22,"id":"73530","lastModified":"1301901611000","name":"Erica Ellis","type":"Person","_key":"52627"} +{"label":"Marc Pickering","version":22,"id":"73528","lastModified":"1301901872000","name":"Marc Pickering","type":"Person","_key":"52628"} +{"label":"Michael Lambourne","version":24,"id":"73527","lastModified":"1301901723000","name":"Michael Lambourne","type":"Person","_key":"52629"} +{"label":"Stan Ellis","version":22,"id":"73532","lastModified":"1301901723000","name":"Stan Ellis","type":"Person","_key":"52630"} +{"label":"Winnie Li","version":30,"id":"32258","lastModified":"1301901541000","name":"Winnie Li","type":"Person","_key":"52631"} +{"label":"Katie Ball","version":22,"id":"73533","lastModified":"1301901723000","name":"Katie Ball","type":"Person","_key":"52632"} +{"label":"Celesta Hodge","version":24,"id":"73534","lastModified":"1301901723000","name":"Celesta Hodge","type":"Person","_key":"52633"} +{"label":"Cherie Nichole","version":24,"id":"73537","lastModified":"1301901611000","name":"Cherie Nichole","type":"Person","_key":"52634"} +{"label":"Lene Bausager","version":30,"id":"32251","lastModified":"1301901382000","name":"Lene Bausager","type":"Person","_key":"52635"} +{"label":"Hatti Riemer","version":24,"id":"73535","lastModified":"1301901535000","name":"Hatti Riemer","type":"Person","_key":"52636"} +{"label":"Kinvara Balfour","version":24,"id":"73536","lastModified":"1301901611000","name":"Kinvara Balfour","type":"Person","_key":"52637"} +{"label":"White Fang","description":"Jack London's classic adventure story about the friendship developed between a Yukon gold hunter and the mixed dog-wolf he rescues from the hands of a man who mistreats him.","id":"12227","runtime":107,"imdbId":"tt0103247","version":123,"lastModified":"1301907560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05d\/4c1bb9355e73d607ba00005d\/white-fang-mid.jpg","genre":"Action","title":"White Fang","releaseDate":664156800000,"language":"en","type":"Movie","_key":"52638"} +{"label":"Susan Hogan","version":35,"id":"71763","lastModified":"1301902028000","name":"Susan Hogan","type":"Person","_key":"52639"} +{"label":"Inside Deep Throat","description":"It was filmed in 6 days for 25 thousand dollars. The government didn't want you to see it. It was banned in 23 states. It has grossed over 600 million dollars. And it is the most profitable film in motion picture history.","id":"12228","runtime":92,"imdbId":"tt0418753","version":142,"lastModified":"1301903759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74d\/4bc93891017a3c57fe01774d\/inside-deep-throat-mid.jpg","genre":"Documentary","title":"Inside Deep Throat","releaseDate":1108080000000,"language":"en","type":"Movie","_key":"52640"} +{"label":"Peter Bart","version":19,"id":"71766","lastModified":"1301902304000","name":"Peter Bart","type":"Person","_key":"52641"} +{"label":"Carl Bernstein","version":20,"id":"13716","lastModified":"1301901636000","name":"Carl Bernstein","type":"Person","_key":"52642"} +{"label":"The Acid House","description":"A dramatization of three of Irvine Welsh's short stories taken from the collection of the same name.","id":"12229","runtime":111,"imdbId":"tt0122515","version":138,"lastModified":"1301903505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/752\/4bc93891017a3c57fe017752\/the-acid-house-mid.jpg","genre":"Drama","title":"The Acid House","releaseDate":899337600000,"language":"en","type":"Movie","_key":"52643"} +{"label":"Stephen McCole","version":25,"id":"71770","lastModified":"1301902200000","name":"Stephen McCole","type":"Person","_key":"52644"} +{"label":"Garry Sweeney","version":24,"id":"71771","lastModified":"1301902338000","name":"Garry Sweeney","type":"Person","_key":"52645"} +{"label":"Jenny McCrindle","version":20,"id":"71772","lastModified":"1301902339000","name":"Jenny McCrindle","type":"Person","_key":"52646"} +{"label":"101 Dalmatians","description":"When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.","id":"12230","runtime":79,"imdbId":"tt0055254","trailer":"http:\/\/www.youtube.com\/watch?v=1Q_98VlWLF4","version":176,"lastModified":"1302034613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6a\/4d77aa567b9aa15c85000a6a\/101-dalmatians-mid.jpg","studio":"Walt Disney Productions","genre":"Adventure","title":"101 Dalmatians","releaseDate":-281923200000,"language":"en","tagline":"It's A Comedy - It's A Mystery - It's A Thriller - It's New - It's Different - It's Delightful - It's FUN!","type":"Movie","_key":"52647"} +{"label":"Betty Lou Gerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/297\/4ca4ab307b9aa16ed8000297\/betty-lou-gerson-profile.jpg","version":39,"id":"71779","lastModified":"1302034612000","name":"Betty Lou Gerson","type":"Person","_key":"52648"} +{"label":"Martha Wentworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4d613e7b5e73d60c5a00319f\/martha-wentworth-profile.jpg","version":32,"birthday":"-2542928400000","id":"71780","birthplace":"New York City, New York, USA","lastModified":"1302034612000","name":"Martha Wentworth","type":"Person","_key":"52649"} +{"label":"Ben Wright","version":34,"id":"71781","lastModified":"1302034612000","name":"Ben Wright","type":"Person","_key":"52650"} +{"label":"Cate Bauer","version":32,"id":"71782","lastModified":"1302034612000","name":"Cate Bauer","type":"Person","_key":"52651"} +{"label":"The Olsen Gang in a Fix","description":"A good looking female social welfare worker makes Egon Olsen forget about crimes for some time, but when an American gangster breaks into a local bank and the police think its Egon's work, he has to get back to work to prove he's innocent.","id":"12231","runtime":111,"imdbId":"tt0064755","version":61,"lastModified":"1301904231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/771\/4bc93894017a3c57fe017771\/olsen-banden-pa-spanden-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang in a Fix","releaseDate":-7776000000,"language":"en","type":"Movie","_key":"52652"} +{"label":"Preben Kaas","version":25,"id":"71783","lastModified":"1301901564000","name":"Preben Kaas","type":"Person","_key":"52653"} +{"label":"The Thief of Bagdad","description":"When Prince Ahmad (John Justin) is blinded and cast out of Bagdad by the nefarious Jaffar (Conrad Veidt), he joins forces with the scrappy thief Abu (the incomparable Sabu, in his definitive role) to win back his royal place, as well as the heart of a beautiful princess (June Duprez).","id":"12232","runtime":106,"imdbId":"tt0033152","version":125,"lastModified":"1301903262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aff\/4c0c7ac6017a3c7e8f000aff\/the-thief-of-bagdad-mid.jpg","genre":"Action","title":"The Thief of Bagdad","releaseDate":-917481600000,"language":"en","type":"Movie","_key":"52654"} +{"label":"Sabu","version":25,"id":"71784","lastModified":"1301902034000","name":"Sabu","type":"Person","_key":"52655"} +{"label":"John Justin","version":27,"id":"71785","lastModified":"1301902008000","name":"John Justin","type":"Person","_key":"52656"} +{"label":"Rex Ingram","version":31,"id":"71786","lastModified":"1301902135000","name":"Rex Ingram","type":"Person","_key":"52657"} +{"label":"Ludwig Berger","version":20,"id":"71787","lastModified":"1301902252000","name":"Ludwig Berger","type":"Person","_key":"52658"} +{"label":"Tim Whelan","version":27,"id":"71788","lastModified":"1301901699000","name":"Tim Whelan","type":"Person","_key":"52659"} +{"label":"Oliver & Company","description":"A timeless classic inspired by Charles Dickens' novel Oliver Twist, Oliver & Company is a fun-filled, action-packed musical adventure voiced and sung by one of the most talented casts in Disney history!","id":"12233","runtime":74,"imdbId":"tt0095776","trailer":"http:\/\/www.youtube.com\/watch?v=l6TCgTTl0Qg","version":172,"lastModified":"1301901621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77f\/4bc93895017a3c57fe01777f\/oliver-company-mid.jpg","genre":"Animation","title":"Oliver & Company","releaseDate":595382400000,"language":"en","type":"Movie","_key":"52660"} +{"label":"Billy Joel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/442\/4c8cbb9e5e73d60691000442\/billy-joel-profile.jpg","version":32,"birthday":"-651636000000","id":"71791","birthplace":"New York","lastModified":"1301901702000","name":"Billy Joel","type":"Person","_key":"52661"} +{"label":"George Scribner","version":25,"id":"71792","lastModified":"1301902176000","name":"George Scribner","type":"Person","_key":"52662"} +{"label":"Wir hau'n die Pauker in die Pfanne","description":"No overview found.","id":"12234","runtime":84,"imdbId":"tt0066574","version":52,"lastModified":"1301905681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/668\/4caa427d5e73d643ee000668\/wir-hau-n-die-pauker-in-die-pfanne-mid.jpg","genre":"Comedy","title":"Wir hau'n die Pauker in die Pfanne","releaseDate":16243200000,"language":"en","type":"Movie","_key":"52663"} +{"label":"Jagged Edge","description":"San Francisco heiress Page Forrester is brutally murdered in her remote beach house. Her husband Jack is devastated by the crime but soon finds himself accused of her murder. He hires lawyer Teddy Barnes to defend him, despite the fact she hasn't handled a criminal case for many years. There's a certain chemistry between them and Teddy soon finds herself defending the man she loves.","id":"12235","runtime":108,"imdbId":"tt0089360","trailer":"http:\/\/www.youtube.com\/watch?v=Lx3BeVHNUtI","version":121,"lastModified":"1301903814000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78d\/4bc9389a017a3c57fe01778d\/jagged-edge-mid.jpg","genre":"Crime","title":"Jagged Edge","releaseDate":494726400000,"language":"en","type":"Movie","_key":"52664"} +{"label":"Speed Zone!","description":"No overview found.","id":"12236","runtime":94,"imdbId":"tt0098369","version":106,"lastModified":"1301903849000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4bc9389b017a3c57fe01779a\/speed-zone-mid.jpg","genre":"Action","title":"Speed Zone!","releaseDate":609120000000,"language":"en","type":"Movie","_key":"52665"} +{"label":"Faces of Death","description":"No overview found.","id":"12237","runtime":105,"imdbId":"tt0077533","version":56,"lastModified":"1301902586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c0\/4c1ae8857b9aa115810000c0\/faces-of-death-mid.jpg","genre":"Documentary","title":"Faces of Death","releaseDate":252460800000,"language":"en","type":"Movie","_key":"52666"} +{"label":"Samuel Berkowitz","version":21,"id":"72170","lastModified":"1301901795000","name":"Samuel Berkowitz","type":"Person","_key":"52667"} +{"label":"Mary Ellen Brighton","version":20,"id":"72171","lastModified":"1301901448000","name":"Mary Ellen Brighton","type":"Person","_key":"52668"} +{"label":"John Alan Schwartz","version":34,"id":"72172","lastModified":"1301901971000","name":"John Alan Schwartz","type":"Person","_key":"52669"} +{"label":"John Alan Schwartz","version":27,"id":"167407","lastModified":"1301903453000","name":"John Alan Schwartz","type":"Person","_key":"52670"} +{"label":"The Night Flier","description":"Two investigative reporters for a tabloid magazine track down across country \"The Night Flier\", a serial killer who travels by private plane stalking victims in rural airports. One of the reporters, Richard Dees, begins to suspect that \"the Night Flier could perhaps be a vampire\"","id":"12238","runtime":93,"imdbId":"tt0119784","version":111,"lastModified":"1301902604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ac\/4bc9389c017a3c57fe0177ac\/the-night-flier-mid.jpg","genre":"Drama","title":"The Night Flier","releaseDate":879552000000,"language":"en","type":"Movie","_key":"52671"} +{"label":"Julie Entwisle","version":19,"id":"72179","lastModified":"1301901872000","name":"Julie Entwisle","type":"Person","_key":"52672"} +{"label":"Michael H. Moss","version":19,"id":"72180","lastModified":"1301901723000","name":"Michael H. Moss","type":"Person","_key":"52673"} +{"label":"John Bennes","version":19,"id":"72181","lastModified":"1301902077000","name":"John Bennes","type":"Person","_key":"52674"} +{"label":"Mark Pavia","version":21,"id":"72182","lastModified":"1301901872000","name":"Mark Pavia","type":"Person","_key":"52675"} +{"label":"The Osterman Weekend","description":"The host of an investigative news show is convinced by the CIA that the friends he has invited to a weekend in the country are engaged in a conspiracy that threatens national security in this adaptation of the Robert Ludlum novel.","id":"12239","runtime":103,"imdbId":"tt0086058","version":141,"lastModified":"1301903777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b1\/4bc9389c017a3c57fe0177b1\/the-osterman-weekend-mid.jpg","genre":"Action","title":"The Osterman Weekend","releaseDate":434937600000,"language":"en","type":"Movie","_key":"52676"} +{"label":"The House Is Burning","description":"No overview found.","id":"12240","runtime":97,"imdbId":"tt0469104","version":126,"lastModified":"1301904010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7be\/4bc938a0017a3c57fe0177be\/the-house-is-burning-mid.jpg","genre":"Drama","title":"The House Is Burning","releaseDate":1163635200000,"language":"en","type":"Movie","_key":"52677"} +{"label":"Holger Ernst","version":19,"id":"71798","lastModified":"1301901872000","name":"Holger Ernst","type":"Person","_key":"52678"} +{"label":"Julianne Michelle","version":40,"id":"71810","lastModified":"1301901129000","name":"Julianne Michelle","type":"Person","_key":"52679"} +{"label":"Harley Adams","version":19,"id":"71811","lastModified":"1301901872000","name":"Harley Adams","type":"Person","_key":"52680"} +{"label":"Joe Petrilla","version":19,"id":"71812","lastModified":"1301902077000","name":"Joe Petrilla","type":"Person","_key":"52681"} +{"label":"Carson Grant","version":19,"id":"71813","lastModified":"1301902077000","name":"Carson Grant","type":"Person","_key":"52682"} +{"label":"Emily Meade","version":20,"id":"71815","lastModified":"1301902077000","name":"Emily Meade","type":"Person","_key":"52683"} +{"label":"David Tennent","version":20,"id":"71814","lastModified":"1301902077000","name":"David Tennent","type":"Person","_key":"52684"} +{"label":"Jeff Green","version":19,"id":"71817","lastModified":"1301902077000","name":"Jeff Green","type":"Person","_key":"52685"} +{"label":"Karen DiConcetto","version":19,"id":"71819","lastModified":"1301901872000","name":"Karen DiConcetto","type":"Person","_key":"52686"} +{"label":"Polly Chung","version":19,"id":"71820","lastModified":"1301902077000","name":"Polly Chung","type":"Person","_key":"52687"} +{"label":"Samantha Ressler","version":19,"id":"71818","lastModified":"1301901723000","name":"Samantha Ressler","type":"Person","_key":"52688"} +{"label":"Robert Scorrano","version":19,"id":"71816","lastModified":"1301902077000","name":"Robert Scorrano","type":"Person","_key":"52689"} +{"label":"Bernadette Quigley","version":19,"id":"71821","lastModified":"1301902077000","name":"Bernadette Quigley","type":"Person","_key":"52690"} +{"label":"Shayna Levine","version":19,"id":"71823","lastModified":"1301902076000","name":"Shayna Levine","type":"Person","_key":"52691"} +{"label":"Erik Jensen","version":28,"id":"71824","lastModified":"1301901774000","name":"Erik Jensen","type":"Person","_key":"52692"} +{"label":"Bettina Bilger","version":19,"id":"71822","lastModified":"1301902076000","name":"Bettina Bilger","type":"Person","_key":"52693"} +{"label":"Curdled","description":"No overview found.","id":"12241","runtime":88,"imdbId":"tt0115994","version":128,"lastModified":"1301905382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c7\/4bc938a1017a3c57fe0177c7\/curdled-mid.jpg","genre":"Comedy","title":"Curdled","releaseDate":843782400000,"language":"en","type":"Movie","_key":"52694"} +{"label":"Reb Braddock","version":20,"id":"71825","lastModified":"1301902252000","name":"Reb Braddock","type":"Person","_key":"52695"} +{"label":"Angela Jones","version":20,"id":"71836","lastModified":"1301902076000","name":"Angela Jones","type":"Person","_key":"52696"} +{"label":"Caridad Ravelo","version":20,"id":"71839","lastModified":"1301902076000","name":"Caridad Ravelo","type":"Person","_key":"52697"} +{"label":"Carmen L\u00f3pez","version":19,"id":"71838","lastModified":"1301901872000","name":"Carmen L\u00f3pez","type":"Person","_key":"52698"} +{"label":"Daisy Fuentes","version":19,"id":"71837","lastModified":"1301902076000","name":"Daisy Fuentes","type":"Person","_key":"52699"} +{"label":"Lupita Ferrer","version":19,"id":"71840","lastModified":"1301901872000","name":"Lupita Ferrer","type":"Person","_key":"52700"} +{"label":"Nattacha Amador","version":19,"id":"71844","lastModified":"1301902076000","name":"Nattacha Amador","type":"Person","_key":"52701"} +{"label":"Therese Marie Gutierrez","version":19,"id":"71845","lastModified":"1301901872000","name":"Therese Marie Gutierrez","type":"Person","_key":"52702"} +{"label":"Charles Tucker","version":17,"id":"71841","lastModified":"1301901723000","name":"Charles Tucker","type":"Person","_key":"52703"} +{"label":"Allysa Tacher","version":19,"id":"71842","lastModified":"1301902076000","name":"Allysa Tacher","type":"Person","_key":"52704"} +{"label":"Sabrina Cowan","version":19,"id":"71843","lastModified":"1301902076000","name":"Sabrina Cowan","type":"Person","_key":"52705"} +{"label":"Nicoll Bacharach","version":19,"id":"71847","lastModified":"1301901872000","name":"Nicoll Bacharach","type":"Person","_key":"52706"} +{"label":"Jay Arnor","version":19,"id":"71846","lastModified":"1301901872000","name":"Jay Arnor","type":"Person","_key":"52707"} +{"label":"Mulan II","description":"Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.","id":"12242","runtime":79,"imdbId":"tt0279967","version":166,"lastModified":"1301901636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7dd\/4bc938a3017a3c57fe0177dd\/mulan-ii-mid.jpg","genre":"Animation","title":"Mulan II","releaseDate":1107216000000,"language":"en","type":"Movie","_key":"52708"} +{"label":"Lynne Southerland","version":22,"id":"71849","lastModified":"1301901611000","name":"Lynne Southerland","type":"Person","_key":"52709"} +{"label":"Mark Moseley","version":22,"id":"71857","lastModified":"1301901872000","name":"Mark Moseley","type":"Person","_key":"52710"} +{"label":"June Foray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/387\/4d45949a5e73d65c84001387\/june-foray-profile.jpg","version":36,"id":"15098","lastModified":"1301901525000","name":"June Foray","type":"Person","_key":"52711"} +{"label":"Jerry Tondo","version":24,"id":"71858","lastModified":"1301901702000","name":"Jerry Tondo","type":"Person","_key":"52712"} +{"label":"Jillian Henry","version":27,"id":"71859","lastModified":"1301901872000","name":"Jillian Henry","type":"Person","_key":"52713"} +{"label":"Michelle Kwan","version":26,"id":"71860","lastModified":"1301902076000","name":"Michelle Kwan","type":"Person","_key":"52714"} +{"label":"A Gamer's Day","description":"No overview found.","id":"12243","runtime":39,"homepage":"http:\/\/www.danielpschenk.com\/gamersday\/index.htm","version":35,"lastModified":"1301903929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e6\/4bc938a3017a3c57fe0177e6\/a-gamer-s-day-mid.jpg","genre":"Action","title":"A Gamer's Day","releaseDate":1086048000000,"language":"en","type":"Movie","_key":"52715"} +{"label":"Alexander Roth","version":16,"id":"71862","lastModified":"1301902330000","name":"Alexander Roth","type":"Person","_key":"52716"} +{"label":"Andreas Gregorius","version":16,"id":"71863","lastModified":"1301902330000","name":"Andreas Gregorius","type":"Person","_key":"52717"} +{"label":"Daniel P. Schenk","version":16,"id":"71864","lastModified":"1301902330000","name":"Daniel P. Schenk","type":"Person","_key":"52718"} +{"label":"Maya Schenk","version":16,"id":"71865","lastModified":"1301902330000","name":"Maya Schenk","type":"Person","_key":"52719"} +{"label":"Carolina Schenk","version":16,"id":"71866","lastModified":"1301902330000","name":"Carolina Schenk","type":"Person","_key":"52720"} +{"label":"B\u00e4rbel Schenk","version":16,"id":"71867","lastModified":"1301902330000","name":"B\u00e4rbel Schenk","type":"Person","_key":"52721"} +{"label":"Christian Schenk","version":16,"id":"71868","lastModified":"1301902330000","name":"Christian Schenk","type":"Person","_key":"52722"} +{"label":"Daniel P. Schenk","version":21,"id":"71869","lastModified":"1301902146000","name":"Daniel P. Schenk","type":"Person","_key":"52723"} +{"label":"9","description":"When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.","id":"12244","runtime":79,"imdbId":"tt0472033","trailer":"http:\/\/www.youtube.com\/watch?v=_qApXdc1WPY","version":372,"lastModified":"1301901016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4c56a8275e73d63a7100014c\/9-mid.jpg","studio":"Focus Features","genre":"Adventure","title":"9","releaseDate":1252454400000,"language":"en","tagline":"When our world ended their mission began.","type":"Movie","_key":"52724"} +{"label":"Shane Acker","version":41,"id":"71923","lastModified":"1301901180000","name":"Shane Acker","type":"Person","_key":"52725"} +{"label":"The Oxford Murders","description":"At Oxford University, a professor and a grad student work together to try and stop a potential series of murders seemingly linked by mathematical symbols","id":"12245","runtime":107,"imdbId":"tt0488604","version":169,"lastModified":"1301902973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/862\/4bc938bb017a3c57fe017862\/the-oxford-murders-mid.jpg","studio":"Eurimages","genre":"Crime","title":"The Oxford Murders","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"52726"} +{"label":"Mongol","description":"The story recounts the early life of Genghis Khan who was a slave before going on to conquer half the world including Russia in 1206.","id":"12246","runtime":120,"imdbId":"tt0416044","trailer":"http:\/\/www.youtube.com\/watch?v=729","version":226,"lastModified":"1301902159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88d\/4bc938c2017a3c57fe01788d\/mongol-mid.jpg","genre":"Action","title":"Mongol","releaseDate":1186704000000,"language":"en","type":"Movie","_key":"52727"} +{"label":"Sergei Bodrov Jr.","version":41,"birthday":"62636400000","id":"71871","birthplace":"Moscow","lastModified":"1301901254000","name":"Sergei Bodrov Jr.","type":"Person","_key":"52728"} +{"label":"Honglei Sun","version":25,"id":"73774","lastModified":"1301901664000","name":"Honglei Sun","type":"Person","_key":"52729"} +{"label":"Khulan Chuluun","version":21,"id":"73775","lastModified":"1301901991000","name":"Khulan Chuluun","type":"Person","_key":"52730"} +{"label":"Ba Sen","version":21,"id":"73776","lastModified":"1301901812000","name":"Ba Sen","type":"Person","_key":"52731"} +{"label":"Aliya","version":20,"id":"73777","lastModified":"1301901723000","name":"Aliya","type":"Person","_key":"52732"} +{"label":"Amadu Mamadakov","version":18,"id":"86625","lastModified":"1301902635000","name":"Amadu Mamadakov","type":"Person","_key":"52733"} +{"label":"Shotgun Stories","description":"Shotgun Stories tracks a feud that erupts between two sets of half brothers following the death of their father. Set against the cotton fields and back roads of Southeast Arkansas, these brothers discover the lengths to which each will go to protect their family.","id":"12247","runtime":92,"imdbId":"tt0952682","homepage":"http:\/\/www.shotgunstories.com\/","version":179,"lastModified":"1301903083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/896\/4bc938c3017a3c57fe017896\/shotgun-stories-mid.jpg","genre":"Drama","title":"Shotgun Stories","releaseDate":1191196800000,"language":"en","type":"Movie","_key":"52734"} +{"label":"Jeff Nichols","version":19,"id":"71875","lastModified":"1301902252000","name":"Jeff Nichols","type":"Person","_key":"52735"} +{"label":"Glenda Pannell","version":19,"id":"71887","lastModified":"1301901723000","name":"Glenda Pannell","type":"Person","_key":"52736"} +{"label":"Lynnsee Provence","version":19,"id":"71888","lastModified":"1301901872000","name":"Lynnsee Provence","type":"Person","_key":"52737"} +{"label":"Douglas Ligon","version":19,"id":"71884","lastModified":"1301901723000","name":"Douglas Ligon","type":"Person","_key":"52738"} +{"label":"Barlow Jacobs","version":22,"id":"71885","lastModified":"1301902194000","name":"Barlow Jacobs","type":"Person","_key":"52739"} +{"label":"Natalie Canerday","version":25,"id":"71886","lastModified":"1301901475000","name":"Natalie Canerday","type":"Person","_key":"52740"} +{"label":"Tucker Prentiss","version":19,"id":"71893","lastModified":"1301902076000","name":"Tucker Prentiss","type":"Person","_key":"52741"} +{"label":"Vivian Morrison Norman","version":19,"id":"71892","lastModified":"1301902076000","name":"Vivian Morrison Norman","type":"Person","_key":"52742"} +{"label":"Michael Abbott Jr.","version":19,"id":"71889","lastModified":"1301902076000","name":"Michael Abbott Jr.","type":"Person","_key":"52743"} +{"label":"Coley Canpany","version":19,"id":"71890","lastModified":"1301902076000","name":"Coley Canpany","type":"Person","_key":"52744"} +{"label":"Wyatt Ashton Prentiss","version":19,"id":"71894","lastModified":"1301902076000","name":"Wyatt Ashton Prentiss","type":"Person","_key":"52745"} +{"label":"Cole Hendrixson","version":19,"id":"71891","lastModified":"1301902076000","name":"Cole Hendrixson","type":"Person","_key":"52746"} +{"label":"David Rhodes","version":19,"id":"71895","lastModified":"1301902076000","name":"David Rhodes","type":"Person","_key":"52747"} +{"label":"Travis Smith","version":19,"id":"71896","lastModified":"1301902076000","name":"Travis Smith","type":"Person","_key":"52748"} +{"label":"G. Alan Wilkins","version":19,"id":"71897","lastModified":"1301902076000","name":"G. Alan Wilkins","type":"Person","_key":"52749"} +{"label":"Aaltra","description":"No overview found.","id":"12249","runtime":92,"imdbId":"tt0405629","version":157,"lastModified":"1301907393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ba\/4bc938ca017a3c57fe0178ba\/aaltra-mid.jpg","studio":"La Parti Productions","genre":"Comedy","title":"Aaltra","releaseDate":1075334400000,"language":"en","type":"Movie","_key":"52750"} +{"label":"Beno\u00eet Del\u00e9pine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/562\/4d13522f5e73d60834001562\/beno-t-del-pine-profile.jpg","version":40,"id":"71929","lastModified":"1301901973000","name":"Beno\u00eet Del\u00e9pine","type":"Person","_key":"52751"} +{"label":"Gustave de Kervern","version":41,"id":"71930","lastModified":"1301901662000","name":"Gustave de Kervern","type":"Person","_key":"52752"} +{"label":"Michel de Gavre","version":20,"id":"71933","lastModified":"1301902363000","name":"Michel de Gavre","type":"Person","_key":"52753"} +{"label":"Isabelle Del\u00e9pine","version":20,"id":"71934","lastModified":"1301902363000","name":"Isabelle Del\u00e9pine","type":"Person","_key":"52754"} +{"label":"G\u00e9rard Condejean","version":20,"id":"71935","lastModified":"1301902176000","name":"G\u00e9rard Condejean","type":"Person","_key":"52755"} +{"label":"Pierre Ghenassia","version":20,"id":"71936","lastModified":"1301902377000","name":"Pierre Ghenassia","type":"Person","_key":"52756"} +{"label":"Pierre Carles","version":20,"id":"71937","lastModified":"1301902371000","name":"Pierre Carles","type":"Person","_key":"52757"} +{"label":"Jan Bucquoy","version":20,"id":"71938","lastModified":"1301902360000","name":"Jan Bucquoy","type":"Person","_key":"52758"} +{"label":"Irmeli Debarle","version":20,"id":"71939","lastModified":"1301901810000","name":"Irmeli Debarle","type":"Person","_key":"52759"} +{"label":"Th\u00e9r\u00e8se Kobankaya","version":20,"id":"71940","lastModified":"1301902330000","name":"Th\u00e9r\u00e8se Kobankaya","type":"Person","_key":"52760"} +{"label":"Mo' Money","description":"Trying to get his act together, a con artist gets a job in a credit card company. He falls in love with a fellow employee, he steals a couple of cards, everything is going great. But soon, the chief of security drags him into the big leagues of criminals... ","id":"12251","runtime":97,"imdbId":"tt0104897","version":132,"lastModified":"1301904946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c3\/4bc938ca017a3c57fe0178c3\/mo-money-mid.jpg","genre":"Action","title":"Mo' Money","releaseDate":711936000000,"language":"en","type":"Movie","_key":"52761"} +{"label":"Biker Boyz","description":"A mythic motorcycle tale of father and son\", this is the story of Manuel Galloway, also known as \"the King of Cali\", the president of a motorcycle club whose members are all African-American men, mostly white-collar workers who exchange their suits and ties at night and on weekends for leather outfits and motorcycle helmets.","id":"12253","runtime":110,"imdbId":"tt0326769","trailer":"http:\/\/www.youtube.com\/watch?v=rUVfKb_emfk","version":138,"lastModified":"1301902783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cc\/4bc938cb017a3c57fe0178cc\/biker-boyz-mid.jpg","genre":"Action","title":"Biker Boyz","releaseDate":1043971200000,"language":"en","tagline":"Survival of the fastest.","type":"Movie","_key":"52762"} +{"label":"Reggie Rock Bythewood","version":27,"id":"71943","lastModified":"1301902211000","name":"Reggie Rock Bythewood","type":"Person","_key":"52763"} +{"label":"Emma","description":"Emma Woodhouse has a rigid sense of propriety as regards matrimonial alliances. Unfortunately she insists on matchmaking for her less forceful friend, Harriet, and so causes her to come to grief. Through the sharp words of Mr. Knightley, and the example of the opinionated Mrs. Elton, someone not unlike herself, Emma's attitudes begin to soften.","id":"12254","runtime":107,"imdbId":"tt0118308","version":381,"lastModified":"1301902956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ac\/4ca687655e73d643ef0000ac\/emma-mid.jpg","genre":"Comedy","title":"Emma","releaseDate":848793600000,"language":"en","type":"Movie","_key":"52764"} +{"label":"Bernard Hepton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fd\/4ca74bed5e73d643eb0001fd\/bernard-hepton-profile.jpg","version":22,"id":"71949","lastModified":"1301902354000","name":"Bernard Hepton","type":"Person","_key":"52765"} +{"label":"Diarmuid Lawrence","version":21,"id":"71950","lastModified":"1301902393000","name":"Diarmuid Lawrence","type":"Person","_key":"52766"} +{"label":"Cord","description":"A desperate, childless couple kidnap a pregnant woman and lead her husband to believe that she is dead.","id":"12255","runtime":100,"imdbId":"tt0191915","version":87,"lastModified":"1301905631000","genre":"Crime","title":"Cord","releaseDate":946684800000,"language":"en","type":"Movie","_key":"52767"} +{"label":"Das Erste Semester","description":"A young student stands to inherent a fortune provided he can pass his first semester of college and find a steady girlfriend. His scheming stepfather has other plans for the money, however.","id":"12256","runtime":95,"imdbId":"tt0119072","version":50,"lastModified":"1301905630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc938cc017a3c57fe0178da\/das-erste-semester-mid.jpg","genre":"Comedy","title":"Das Erste Semester","releaseDate":861235200000,"language":"en","type":"Movie","_key":"52768"} +{"label":"Yutah Lorenz","version":20,"id":"71959","lastModified":"1301901760000","name":"Yutah Lorenz","type":"Person","_key":"52769"} +{"label":"Alexander Schottky","version":19,"id":"71960","lastModified":"1301902252000","name":"Alexander Schottky","type":"Person","_key":"52770"} +{"label":"Home Fries","description":"No overview found.","id":"12257","runtime":91,"imdbId":"tt0119304","version":103,"lastModified":"1301903171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8df\/4bc938cc017a3c57fe0178df\/home-fries-mid.jpg","genre":"Comedy","title":"Home Fries","releaseDate":911952000000,"language":"en","type":"Movie","_key":"52771"} +{"label":"premadesam","description":"No overview found.","id":"12258","runtime":0,"version":14,"lastModified":"1300979444000","title":"premadesam","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52772"} +{"label":"prahu deva","version":16,"id":"71975","lastModified":"1301901951000","name":"prahu deva","type":"Person","_key":"52773"} +{"label":"Sholay","description":"A Police Officer, whose family was killed by a bandit named Gabbar Singh, decides to fight fire with fire and recruits two convicts, Jai & Veeru, & puts a proposal in front of them, joyfully they agree to bring Gabbar Singh to jail alive, but will they be able to bring the notorious Gabber Singh to jail and get their reward? Come and watch the action-packed super-hit Sholay to find out!!","id":"12259","runtime":199,"imdbId":"tt0073707","version":75,"lastModified":"1301904275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c6\/4c1c042b7b9aa1178e0000c6\/sholay-mid.jpg","studio":"Ramesh Sippy Entertainment","genre":"Action","title":"Sholay","releaseDate":177292800000,"language":"en","type":"Movie","_key":"52774"} +{"label":"Dharmendra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4d6da1237b9aa12fed000094\/dharmendra-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Dharmendra Singh Deol<\/b> (<a href=\"http:\/\/en.wikipedia.org\/wiki\/Punjabi_language\" title=\"Punjabi language\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Punjabi<\/a>: <span lang=\"pa\" xml:lan","version":39,"birthday":"-1075078800000","id":"85655","birthplace":"Sahnewal, Punjab India","lastModified":"1301901856000","name":"Dharmendra","type":"Person","_key":"52775"} +{"label":"Sanjeev Kumar","version":30,"id":"86509","lastModified":"1301902507000","name":"Sanjeev Kumar","type":"Person","_key":"52776"} +{"label":"Amjad Khan","version":21,"id":"86510","lastModified":"1301902992000","name":"Amjad Khan","type":"Person","_key":"52777"} +{"label":"Ramesh Sippy","version":21,"id":"85446","lastModified":"1301901785000","name":"Ramesh Sippy","type":"Person","_key":"52778"} +{"label":"Carlito's Way: Rise to Power","description":"The sequel to Carlito's Way.","id":"12261","runtime":100,"imdbId":"tt0427038","version":147,"lastModified":"1301902645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0df\/4bf92b95017a3c70370000df\/carlito-s-way-rise-to-power-mid.jpg","studio":"Rogue Pictures","genre":"Action","title":"Carlito's Way: Rise to Power","releaseDate":1127779200000,"language":"en","type":"Movie","_key":"52779"} +{"label":"Michael Bregman","version":36,"id":"56109","lastModified":"1301901795000","name":"Michael Bregman","type":"Person","_key":"52780"} +{"label":"The Hills Have Eyes","description":"On the way to California, a family has the misfortune to have their car break down in an area closed to the public, and inhabited by violent savages ready to attack.","id":"12262","runtime":89,"imdbId":"tt0077681","version":265,"lastModified":"1301904183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4bc938ce017a3c57fe0178f1\/the-hills-have-eyes-mid.jpg","genre":"Horror","title":"The Hills Have Eyes","releaseDate":238377600000,"language":"en","type":"Movie","_key":"52781"} +{"label":"Susan Lanier","version":21,"id":"73779","lastModified":"1301902367000","name":"Susan Lanier","type":"Person","_key":"52782"} +{"label":"Martin Speer","version":21,"id":"73781","lastModified":"1301902184000","name":"Martin Speer","type":"Person","_key":"52783"} +{"label":"Russ Grieve","version":22,"id":"73782","lastModified":"1301902172000","name":"Russ Grieve","type":"Person","_key":"52784"} +{"label":"John Steadman","version":22,"id":"101765","lastModified":"1301902724000","name":"John Steadman","type":"Person","_key":"52785"} +{"label":"James Whitworth","version":19,"id":"101766","lastModified":"1301902718000","name":"James Whitworth","type":"Person","_key":"52786"} +{"label":"Virginia Vincent","version":22,"id":"101768","lastModified":"1301902713000","name":"Virginia Vincent","type":"Person","_key":"52787"} +{"label":"Janus Blythe","version":23,"id":"99062","lastModified":"1301902543000","name":"Janus Blythe","type":"Person","_key":"52788"} +{"label":"Lance Gordon","version":18,"id":"101769","lastModified":"1301903038000","name":"Lance Gordon","type":"Person","_key":"52789"} +{"label":"Cordy Clark","version":18,"id":"101770","lastModified":"1301902715000","name":"Cordy Clark","type":"Person","_key":"52790"} +{"label":"Peter Locke","version":32,"id":"64129","lastModified":"1301902357000","name":"Peter Locke","type":"Person","_key":"52791"} +{"label":"Robert Houston","version":22,"id":"43980","lastModified":"1301902055000","name":"Robert Houston","type":"Person","_key":"52792"} +{"label":"The Exorcist","description":"No overview found.","id":"12263","version":384,"lastModified":"1302071608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f6\/4bc938d2017a3c57fe0178f6\/the-exorcist-mid.jpg","genre":"Drama","title":"The Exorcist","language":"en","type":"Movie","_key":"52793"} +{"label":"Au bout du chemin","description":"No overview found.","id":"12265","runtime":90,"imdbId":"tt0175455","version":48,"lastModified":"1301904470000","genre":"Drama","title":"Au bout du chemin","releaseDate":348537600000,"language":"en","type":"Movie","_key":"52794"} +{"label":"Daniel Martineau","version":20,"id":"71991","lastModified":"1301902384000","name":"Daniel Martineau","type":"Person","_key":"52795"} +{"label":"Serge Moati","version":26,"id":"71997","lastModified":"1301902016000","name":"Serge Moati","type":"Person","_key":"52796"} +{"label":"Marie Marczack","version":18,"id":"71998","lastModified":"1301902330000","name":"Marie Marczack","type":"Person","_key":"52797"} +{"label":"Lucile Christol","version":20,"id":"71999","lastModified":"1301902383000","name":"Lucile Christol","type":"Person","_key":"52798"} +{"label":"Une \u00e9trange affaire","description":"No overview found.","id":"12266","runtime":105,"imdbId":"tt0083257","version":56,"lastModified":"1301904228000","genre":"Drama","title":"Une \u00e9trange affaire","releaseDate":377913600000,"language":"en","type":"Movie","_key":"52799"} +{"label":"Immenhof","description":"No overview found.","id":"12267","title":"Immenhof","language":"en","lastModified":"1302048707000","version":49,"type":"Movie","_key":"52800"} +{"label":"The Pink Panther Strikes Again","description":"Now seriously mentally ill after working with Clouseau for such a long time, Inspector Dreyfus escapes from the mental asylum he was being held in and vows to destroy Clouseau forever. He kidnaps an eminent scientist and forces him to build a machine capable of destroying the world, with the intention of doing so unless Clouseau is delivered to him. ","id":"12268","runtime":103,"imdbId":"tt0075066","trailer":"http:\/\/www.youtube.com\/watch?v=ZzwJ00pSgGY","version":366,"lastModified":"1301903649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/017\/4c34dec65e73d66def000017\/the-pink-panther-strikes-again-mid.jpg","studio":"United Artists","genre":"Comedy","title":"The Pink Panther Strikes Again","releaseDate":219456000000,"language":"en","type":"Movie","_key":"52801"} +{"label":"The Last Exploits of the Olsen Gang","description":"The Olsen Gang has finally made it. They are in Mallorca, having fulfilled their dream. Almost, that is. They don't have any money, so Egon has to open a safe at a restaurant to get some. As usual, however, Egon ends up in prision. When they return to Denmark, he has a new plan.","id":"12269","runtime":100,"imdbId":"tt0071939","version":38,"lastModified":"1301906733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/908\/4bc938d3017a3c57fe017908\/olsen-bandens-sidste-bedrifter-mid.jpg","studio":"Nordisk Film","title":"The Last Exploits of the Olsen Gang","releaseDate":150076800000,"language":"en","type":"Movie","_key":"52802"} +{"label":"CSNY\/D\u00e9j\u00e0 Vu","description":"The war in Iraq is the backdrop as the Crosby, Stills, Nash, and Young \"Freedom of Speech Tour\" crisscrosses North America. Echoes of Vietnam-era anti-war sentiment abound as the band connects with today's audiences.","id":"12270","runtime":96,"imdbId":"tt1157620","version":104,"lastModified":"1301905711000","title":"CSNY\/D\u00e9j\u00e0 Vu","releaseDate":1201219200000,"language":"en","type":"Movie","_key":"52803"} +{"label":"Factory Girl","description":"A beautiful, wealthy young party girl drops out of Radcliffe in 1965 and heads to New York to become Holly Golightly. When she meets a hungry young artist named Andy Warhol, he promises to make her the star she always wanted to be. And like a super nova she explodes on the New York scene only to find herself slowly lose grip on reality... ","id":"12271","runtime":90,"imdbId":"tt0432402","version":156,"lastModified":"1301902735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91e\/4bc938d5017a3c57fe01791e\/factory-girl-mid.jpg","studio":"The Weinstein Company","genre":"Drama","title":"Factory Girl","releaseDate":1167350400000,"language":"en","type":"Movie","_key":"52804"} +{"label":"Tara Summers","version":23,"id":"72003","lastModified":"1301902149000","name":"Tara Summers","type":"Person","_key":"52805"} +{"label":"Golden Night","description":"No overview found.","id":"12272","runtime":87,"imdbId":"tt0076473","version":79,"lastModified":"1301904946000","genre":"Drama","title":"Golden Night","releaseDate":213494400000,"language":"en","type":"Movie","_key":"52806"} +{"label":"Val\u00e9rie Pascale","version":21,"id":"72014","lastModified":"1301902197000","name":"Val\u00e9rie Pascale","type":"Person","_key":"52807"} +{"label":"Singh Is Kinng","description":"A comic caper about Happy Singh, a Punjabi villager who goes through a series of misadventures and eventually becomes the Kinng of the Australian underworld.","id":"12273","runtime":135,"imdbId":"tt1146325","version":120,"lastModified":"1301925984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/955\/4bc938dc017a3c57fe017955\/singh-is-kinng-mid.jpg","genre":"Comedy","title":"Singh Is Kinng","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52808"} +{"label":"Katrina Kaif","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f0\/4c4f15af5e73d62ec10000f0\/katrina-kaif-profile.jpg","version":51,"id":"81869","lastModified":"1301901220000","name":"Katrina Kaif","type":"Person","_key":"52809"} +{"label":"Anees Bazmee","version":24,"id":"85801","lastModified":"1301902542000","name":"Anees Bazmee","type":"Person","_key":"52810"} +{"label":"Kathanayakudu Katha","description":"No overview found.","id":"12274","runtime":0,"imdbId":"tt0250465","version":42,"lastModified":"1300979446000","title":"Kathanayakudu Katha","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52811"} +{"label":"Ayat-Ayat Cinta","description":"Ayat Ayat Cinta is a beautifully portrayed Islamic love story \u2013 a tale of a virtuous Muslim protagonist who overcomes all obstacles of life maintaining pure ideals.","id":"12275","runtime":120,"imdbId":"tt1198186","homepage":"http:\/\/www.ayatayatcintathemovie.com\/","version":50,"lastModified":"1301905271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96e\/4bc938de017a3c57fe01796e\/ayat-ayat-cinta-mid.jpg","studio":"MD Pictures","genre":"Drama","title":"Ayat-Ayat Cinta","releaseDate":1213833600000,"language":"en","type":"Movie","_key":"52812"} +{"label":"Fedy Nuril","version":16,"id":"111309","lastModified":"1301902076000","name":"Fedy Nuril","type":"Person","_key":"52813"} +{"label":"Rianti Cartwright","version":16,"id":"111310","lastModified":"1301902076000","name":"Rianti Cartwright","type":"Person","_key":"52814"} +{"label":"The Road Home","description":"Prompted by the death of his father and the grief of his mother, a man recalls the story of how they met in flashback.","id":"12276","runtime":89,"imdbId":"tt0235060","trailer":"http:\/\/www.youtube.com\/watch?v=3164","version":283,"lastModified":"1301925165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4ce63c9a7b9aa17c8b000026\/wo-de-fu-qin-mu-qin-mid.jpg","genre":"Drama","title":"The Road Home","releaseDate":915148800000,"language":"en","type":"Movie","_key":"52815"} +{"label":"Hao Zheng","version":23,"id":"72017","lastModified":"1301902361000","name":"Hao Zheng","type":"Person","_key":"52816"} +{"label":"Yulian Zhao","version":23,"id":"72018","lastModified":"1301902348000","name":"Yulian Zhao","type":"Person","_key":"52817"} +{"label":"Undercover Brother","description":"An Afro-American organization, the B.R.O.T.H.E.R.H.O.O.D., is in permanent fight against a white organization \"The Man\" defending the values of the black people in North America. When the Afro-American candidate Gen. Warren Boutwell behaves strangely in his presidential campaign, Undercover Brother is hired to work undercover for \"The Man\" and find what happened with the potential candidate.","id":"12277","runtime":86,"imdbId":"tt0279493","trailer":"http:\/\/www.youtube.com\/watch?v=lFn1SZj59x8","version":276,"lastModified":"1302069139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97f\/4bc938df017a3c57fe01797f\/undercover-brother-mid.jpg","genre":"Action","title":"Undercover Brother","releaseDate":1022803200000,"language":"en","type":"Movie","_key":"52818"} +{"label":"Malcolm D. Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad4\/4cf3cac15e73d62386000ad4\/malcolm-d-lee-profile.jpg","version":28,"id":"72024","lastModified":"1301901280000","name":"Malcolm D. Lee","type":"Person","_key":"52819"} +{"label":"Soul Man","description":"Soul Man is a comedy film made in 1986 about a man who undergoes racial transformation with pills to qualify for an African-American-only scholarship at Harvard Law School. It stars C. Thomas Howell, Rae Dawn Chong, Arye Gross, James Earl Jones, Leslie Nielsen, and Julia Louis-Dreyfus.","id":"12278","runtime":104,"imdbId":"tt0091991","version":123,"lastModified":"1302024252000","genre":"Comedy","title":"Soul Man","releaseDate":530496000000,"language":"en","type":"Movie","_key":"52820"} +{"label":"Arye Gross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/273\/4d47ac415e73d65704004273\/arye-gross-profile.jpg","version":30,"id":"72028","lastModified":"1301901787000","name":"Arye Gross","type":"Person","_key":"52821"} +{"label":"Spy Kids 3-D: Game Over","description":"Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker (Stallone). It's up to Juni to save his sister, and ultimately the world.","id":"12279","runtime":84,"imdbId":"tt0338459","version":138,"lastModified":"1302023970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98c\/4bc938e0017a3c57fe01798c\/spy-kids-3-d-game-over-mid.jpg","genre":"Action","title":"Spy Kids 3-D: Game Over","releaseDate":1059091200000,"language":"en","type":"Movie","_key":"52822"} +{"label":"The Paper","description":"Henry Hackett is the editor of a New York City tabloid. He is a workaholic who loves his job, but the long hours and low pay are leading to discontent. Also, publisher Bernie White faces financial straits, and has hatchetman Alicia Clark, Henry's nemesis, impose unpopular cutbacks.","id":"12280","runtime":112,"imdbId":"tt0110771","version":126,"lastModified":"1301905765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4a\/4d852c007b9aa12edd001f4a\/the-paper-mid.jpg","genre":"Comedy","title":"The Paper","releaseDate":763948800000,"language":"en","type":"Movie","_key":"52823"} +{"label":"Mean Creek","description":"Teenagers living in small-town Oregon take a boat trip for a birthday celebration. When they get an idea to play a mean trick on the town bully, it suddenly goes too far. Soon they're forced to deal with the unexpected consequences of their actions.","id":"12281","runtime":90,"imdbId":"tt0377091","trailer":"http:\/\/www.youtube.com\/watch?v=-8RGFo8rjTo","version":173,"lastModified":"1301903760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/999\/4bc938e4017a3c57fe017999\/mean-creek-mid.jpg","genre":"Crime","title":"Mean Creek","releaseDate":1092960000000,"language":"en","type":"Movie","_key":"52824"} +{"label":"Jacob Aaron Estes","version":19,"id":"72034","lastModified":"1301901611000","name":"Jacob Aaron Estes","type":"Person","_key":"52825"} +{"label":"Bis zur Unendlichkeit","description":"No overview found.","id":"12282","runtime":25,"version":23,"lastModified":"1300979447000","genre":"Drama","title":"Bis zur Unendlichkeit","releaseDate":1215734400000,"language":"en","type":"Movie","_key":"52826"} +{"label":"Donna Leon","description":"No overview found.","id":"12283","title":"Donna Leon","language":"en","lastModified":"1302017899000","version":24,"type":"Movie","_key":"52827"} +{"label":"In Sachen Signora Brunetti","description":"No overview found.","id":"12285","runtime":90,"version":21,"lastModified":"1301904997000","genre":"Crime","title":"In Sachen Signora Brunetti","releaseDate":1034208000000,"language":"en","type":"Movie","_key":"52828"} +{"label":"Laura-Charlotte Syniawa","version":16,"id":"72041","lastModified":"1301901994000","name":"Laura-Charlotte Syniawa","type":"Person","_key":"52829"} +{"label":"Patrick Diemling","version":16,"id":"48847","lastModified":"1301902330000","name":"Patrick Diemling","type":"Person","_key":"52830"} +{"label":"Red Cliff","description":"In the early third century, the land of Wu is invaded by the warlord Cao Cao and his million soldiers. The ruler of Wu, Sun Quan, calls on the rival warlord Liu Bei for help, but their two armies are still badly outnumbered. However, the Wu strategist Zhou Yu sees that Cao Cao's army is unused to battling on the sea, which may just give them a chance if they can exploit this weakness properly.","id":"12289","runtime":150,"imdbId":"tt0425637","trailer":"http:\/\/www.youtube.com\/watch?v=790","version":255,"lastModified":"1301907564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c3\/4bc938e8017a3c57fe0179c3\/chi-bi-mid.jpg","studio":"Bejing Film Studio","genre":"Action","title":"Red Cliff","releaseDate":1215648000000,"language":"en","type":"Movie","_key":"52831"} +{"label":"Fengyi Zhang","version":22,"id":"72199","lastModified":"1301901765000","name":"Fengyi Zhang","type":"Person","_key":"52832"} +{"label":"Chiling Lin","version":49,"id":"72201","lastModified":"1301901163000","name":"Chiling Lin","type":"Person","_key":"52833"} +{"label":"Shid\u00f4 Nakamura","version":23,"id":"72202","lastModified":"1301901674000","name":"Shid\u00f4 Nakamura","type":"Person","_key":"52834"} +{"label":"Jun Hu","version":33,"id":"96862","lastModified":"1301902579000","name":"Jun Hu","type":"Person","_key":"52835"} +{"label":"Setannya kok beneran?","description":"Jagoannya boongan, setannya Kok Beneran?","id":"12302","runtime":90,"imdbId":"tt1286633","version":28,"lastModified":"1300979448000","title":"Setannya kok beneran?","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52836"} +{"label":"The Last Kiss","description":"Giulia (Giovanna Mezzogiorno) and Carlo (Stefano Accorsi) have been happy together for three years, but Giulia's announcement that she is pregnant sends him into a secret panic. Terrified at his imminent entry into the adult world of irreversible responsibilities, Carlo finds himself tempted by a bewitching 18 year old girl, Francesca (Martina Stella), whom he meets by chance at a wedding. The possibility of one last youthful crazy fling before the impending prison of parenthood proves to be too","id":"12308","runtime":115,"imdbId":"tt0265930","version":237,"lastModified":"1302066848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/793\/4cfdab765e73d6299a004793\/l-ultimo-bacio-mid.jpg","genre":"Comedy","title":"The Last Kiss","releaseDate":981072000000,"language":"en","type":"Movie","_key":"52837"} +{"label":"Martina Stella","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ed\/4d6e996e5e73d65a300004ed\/martina-stella-profile.jpg","version":27,"id":"72054","lastModified":"1301902132000","name":"Martina Stella","type":"Person","_key":"52838"} +{"label":"Marco Cocci","version":27,"id":"72050","lastModified":"1301902167000","name":"Marco Cocci","type":"Person","_key":"52839"} +{"label":"Bachelor Party","description":"This outrageously funny look at one man's final moments of bachelorhood stars Tom Hanks as Rick, reluctant recipient of a bachelor bash given by a group of friends who view partying as their full-time religion. Rick's worried fianc\u00e9e, Debbie (Tawny Kitaen), dresses up in disguise and crashes the party to spy on her future husband. ","id":"12309","runtime":105,"imdbId":"tt0086927","trailer":"http:\/\/www.youtube.com\/watch?v=VJhzlV3X5so","version":220,"lastModified":"1302021635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d1\/4bc938ec017a3c57fe0179d1\/bachelor-party-mid.jpg","genre":"Comedy","title":"Bachelor Party","releaseDate":457315200000,"language":"en","tagline":"A man's tradition every woman should know about.","type":"Movie","_key":"52840"} +{"label":"Tawny Kitaen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c4e\/4d8ab0b57b9aa13ae7000c4e\/tawny-kitaen-profile.jpg","version":25,"birthday":"-265338000000","id":"72055","birthplace":"San Diego, California, USA","lastModified":"1301901697000","name":"Tawny Kitaen","type":"Person","_key":"52841"} +{"label":"George Grizzard","version":30,"id":"72056","lastModified":"1301901716000","name":"George Grizzard","type":"Person","_key":"52842"} +{"label":"Neal Israel","version":47,"id":"57359","lastModified":"1301901649000","name":"Neal Israel","type":"Person","_key":"52843"} +{"label":"The Four Musketeers","description":"The Four Musketeers defend the queen and her dressmaker from Cardinal Richelieu and Milady de Winter.","id":"12310","runtime":108,"imdbId":"tt0073012","version":116,"lastModified":"1301903758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87b\/4cccf26d5e73d6502500087b\/the-four-musketeers-mid.jpg","genre":"Action","title":"The Four Musketeers","releaseDate":162604800000,"language":"en","type":"Movie","_key":"52844"} +{"label":"Mutiny on the Bounty","description":"Fletcher Christian successfully leads a revolt against the ruthless Captain Bligh on the HMS Bounty. However, Bligh returns one year later, hell bent on avenging his captors.","id":"12311","runtime":132,"imdbId":"tt0026752","trailer":"http:\/\/www.youtube.com\/watch?v=OtmV2tpbnjA","version":180,"lastModified":"1302021049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f4\/4bc938f0017a3c57fe0179f4\/mutiny-on-the-bounty-mid.jpg","genre":"Action","title":"Mutiny on the Bounty","releaseDate":-1077667200000,"language":"en","type":"Movie","_key":"52845"} +{"label":"Franchot Tone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/790\/4be2ccc4017a3c35b7000790\/franchot-tone-profile.jpg","version":43,"id":"72059","lastModified":"1301901670000","name":"Franchot Tone","type":"Person","_key":"52846"} +{"label":"Frank Lloyd","version":26,"id":"72061","lastModified":"1301901701000","name":"Frank Lloyd","type":"Person","_key":"52847"} +{"label":"Joe Somebody","description":"When Joe is beat up by a co-worker in front of his daughter on \"Bring Your Child To Work Day\", he decides to fight back.","id":"12312","runtime":99,"imdbId":"tt0279889","version":278,"lastModified":"1302020666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a8\/4ce772985e73d625900001a8\/joe-somebody-mid.jpg","genre":"Comedy","title":"Joe Somebody","releaseDate":1008892800000,"language":"en","type":"Movie","_key":"52848"} +{"label":"Bergkristall","description":"No overview found.","id":"12313","runtime":92,"imdbId":"tt0409732","version":41,"lastModified":"1301905702000","studio":"Perathon Film-und Fernsehproduktions GmbH","title":"Bergkristall","releaseDate":1098230400000,"language":"en","type":"Movie","_key":"52849"} +{"label":"Daniel Morgenroth","version":20,"id":"50151","lastModified":"1301902193000","name":"Daniel Morgenroth","type":"Person","_key":"52850"} +{"label":"Josefina Vilsmaier","version":20,"id":"72077","lastModified":"1301902019000","name":"Josefina Vilsmaier","type":"Person","_key":"52851"} +{"label":"Die Br\u00fccke","description":"No overview found.","id":"12314","runtime":0,"imdbId":"tt1119180","version":63,"lastModified":"1301524218000","genre":"History","title":"Die Br\u00fccke","releaseDate":1214006400000,"language":"en","type":"Movie","_key":"52852"} +{"label":"Wolfgang Panzer","version":20,"id":"28267","lastModified":"1301902146000","name":"Wolfgang Panzer","type":"Person","_key":"52853"} +{"label":"Summertime Blues","description":"No overview found.","id":"12315","runtime":116,"imdbId":"tt1245539","version":122,"lastModified":"1301685084000","genre":"Drama","title":"Summertime Blues","releaseDate":1250726400000,"language":"en","type":"Movie","_key":"52854"} +{"label":"Marie Reich","version":20,"id":"72079","lastModified":"1301902330000","name":"Marie Reich","type":"Person","_key":"52855"} +{"label":"Bedknobs and Broomsticks","description":"Three children evacuated from London during World War II are forced to stay with an eccentric spinster (Eglantine Price). The children's initial fears disappear when they find out she is in fact a trainee witch.","id":"12335","runtime":117,"imdbId":"tt0066817","version":217,"lastModified":"1302041836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a14\/4bc938f6017a3c57fe017a14\/bedknobs-and-broomsticks-mid.jpg","genre":"Adventure","title":"Bedknobs and Broomsticks","releaseDate":55641600000,"language":"en","type":"Movie","_key":"52856"} +{"label":"Johanna sucht das Gl\u00fcck","description":"No overview found.","id":"12354","runtime":83,"imdbId":"tt1116937","version":33,"lastModified":"1301907346000","genre":"Documentary","title":"Johanna sucht das Gl\u00fcck","releaseDate":1193011200000,"language":"en","type":"Movie","_key":"52857"} +{"label":"Marion Kainz","version":19,"id":"72085","lastModified":"1301901774000","name":"Marion Kainz","type":"Person","_key":"52858"} +{"label":"Sapho","description":"No overview found.","id":"12369","runtime":97,"imdbId":"tt0120065","version":61,"lastModified":"1301906725000","genre":"Drama","title":"Sapho","releaseDate":853804800000,"language":"en","type":"Movie","_key":"52859"} +{"label":"Pierre Meyrand","version":20,"id":"72089","lastModified":"1301902330000","name":"Pierre Meyrand","type":"Person","_key":"52860"} +{"label":"Jacques Boudet","version":29,"id":"72090","lastModified":"1301902220000","name":"Jacques Boudet","type":"Person","_key":"52861"} +{"label":"Candice Hugo","version":20,"id":"72091","lastModified":"1301902369000","name":"Candice Hugo","type":"Person","_key":"52862"} +{"label":"Thunderheart","description":"An FBI man with Sioux background is sent to a reservation to help with a murder investigation, where he has to come to terms with his heritage.","id":"12395","runtime":119,"imdbId":"tt0105585","version":174,"lastModified":"1302063755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1d\/4bc938f6017a3c57fe017a1d\/thunderheart-mid.jpg","genre":"Action","title":"Thunderheart","releaseDate":702259200000,"language":"en","type":"Movie","_key":"52863"} +{"label":"Why Didn't Anybody Tell Me It Would Become This Bad in Afghanistan","description":"No overview found.","id":"12399","runtime":70,"imdbId":"tt1014783","version":52,"lastModified":"1300979450000","genre":"Documentary","title":"Why Didn't Anybody Tell Me It Would Become This Bad in Afghanistan","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"52864"} +{"label":"Redbelt","description":"A fateful event leads to a job in the film business for top mixed-martial arts instructor Mike Terry. Though he refuses to participate in prize bouts, circumstances conspire to force him to consider entering such a competition.","id":"12400","runtime":99,"imdbId":"tt1012804","trailer":"http:\/\/www.youtube.com\/watch?v=1748","version":228,"lastModified":"1302087557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a34\/4bc938f8017a3c57fe017a34\/redbelt-mid.jpg","studio":"Sony Pictures Classics","genre":"Action","title":"Redbelt","releaseDate":1207526400000,"language":"en","tagline":"There's always a way out. You just have to find it.","type":"Movie","_key":"52865"} +{"label":"Tagebuch einer erotischen M\u00f6rderin","description":"No overview found.","id":"12402","runtime":90,"version":14,"lastModified":"1301908614000","studio":"Viv\u00e0svan Pictures","genre":"Crime","title":"Tagebuch einer erotischen M\u00f6rderin","releaseDate":1256947200000,"language":"en","type":"Movie","_key":"52866"} +{"label":"A Perfect Getaway","description":"Two pairs of lovers (Zahn & Jovovich, Olyphant & Sanchez) on a Hawaiian vacation discover that psychopaths are stalking and murdering tourists on the islands.","id":"12403","runtime":97,"imdbId":"tt0971209","trailer":"http:\/\/www.youtube.com\/watch?v=izudtkH3rkU","version":294,"lastModified":"1301901408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a56\/4bc938fe017a3c57fe017a56\/a-perfect-getaway-mid.jpg","genre":"Action","title":"A Perfect Getaway","releaseDate":1244419200000,"language":"en","type":"Movie","_key":"52867"} +{"label":"Kiele Sanchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68c\/4be0f480017a3c35b400068c\/kiele-sanchez-profile.jpg","version":38,"id":"31168","lastModified":"1301901205000","name":"Kiele Sanchez","type":"Person","_key":"52868"} +{"label":"Me and Orson Welles","description":"Me and Orson Welles is a period-drama film directed by Richard Linklater and starring Zac Efron, Christian McKay and Claire Danes. Based on Robert Kaplow's novel of the same name, the story, set in 1937 New York, tells of a teenager hired to star in Orson Welles' production of Julius Caesar, where he becomes attracted to a career-driven production assistant. ","id":"12404","runtime":107,"imdbId":"tt1175506","version":172,"lastModified":"1301904209000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0eb\/4bceaa90017a3c48680000eb\/me-and-orson-welles-mid.jpg","genre":"Comedy","title":"Me and Orson Welles","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52869"} +{"label":"Slumdog Millionaire","description":"The story of the life of an impoverished Indian teen Jamal Malik, who becomes a contestant on the Hindi version of \"Who Wants to be A Millionaire?\", wins, and is then suspected of cheating.","id":"12405","runtime":120,"imdbId":"tt1010048","trailer":"http:\/\/www.youtube.com\/watch?v=AIzbwV7on6Q","homepage":"http:\/\/www.foxsearchlight.com\/slumdogmillionaire","version":280,"lastModified":"1301901179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9e\/4bc93909017a3c57fe017a9e\/slumdog-millionaire-mid.jpg","studio":"Celador Films","genre":"Drama","title":"Slumdog Millionaire","releaseDate":1199145600000,"language":"en","tagline":"What does it take to find a lost love? A. Money B. Luck C. Smarts D. Destiny","type":"Movie","_key":"52870"} +{"label":"Loveleen Tandan","version":26,"id":"6508","lastModified":"1302075445000","name":"Loveleen Tandan","type":"Person","_key":"52871"} +{"label":"Anil Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/066\/4c4f99e55e73d63038000066\/anil-kapoor-profile.jpg","version":55,"id":"72118","lastModified":"1302075445000","name":"Anil Kapoor","type":"Person","_key":"52872"} +{"label":"Mia Drake Inderbitzin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ff7\/4d3366b35e73d6335b001ff7\/mia-drake-inderbitzin-profile.jpg","version":27,"id":"72119","lastModified":"1302075445000","name":"Mia Drake Inderbitzin","type":"Person","_key":"52873"} +{"label":"Rajendranath Zutshi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c7\/4d3367315e73d633520020c7\/rajendranath-zutshi-profile.jpg","version":33,"id":"76790","lastModified":"1302075445000","name":"Rajendranath Zutshi","type":"Person","_key":"52874"} +{"label":"Jeneva Talwar","version":28,"id":"76791","lastModified":"1302075445000","name":"Jeneva Talwar","type":"Person","_key":"52875"} +{"label":"Freida Pinto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f4\/4ce1282f7b9aa168b30001f4\/freida-pinto-profile.jpg","version":50,"id":"76792","lastModified":"1302075445000","name":"Freida Pinto","type":"Person","_key":"52876"} +{"label":"Inju, The Beast in the Shadow","description":"The writer and college professor, Alexandre Fayard, researches and gives lectures about the gruesome literary work of the mysterious Japanese writer Shundei Oe, considered by him to be the master of manipulation.","id":"12406","runtime":100,"imdbId":"tt0818110","homepage":"http:\/\/www.inju-lefilm.com\/","version":68,"lastModified":"1301903708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acd\/4bc93910017a3c57fe017acd\/inju-la-bete-dans-lombre-mid.jpg","studio":"Cross Media","genre":"Thriller","title":"Inju, The Beast in the Shadow","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52877"} +{"label":"Lika Minamoto","version":20,"id":"72121","lastModified":"1301902251000","name":"Lika Minamoto","type":"Person","_key":"52878"} +{"label":"Stone of Destiny","description":"Tells of the daring heist of The Stone of Destiny in the 1950s by a charming group of idealistic Scottish undergraduates, whose action rekindled Scottish nationalistic pride.","id":"12407","runtime":96,"imdbId":"tt1037156","version":115,"lastModified":"1301903557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad6\/4bc93910017a3c57fe017ad6\/stone-of-destiny-mid.jpg","genre":"Action","title":"Stone of Destiny","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"52879"} +{"label":"Summer in Genoa","description":"A man moves his two daughters to Italy after their mother dies in a car accident, in order to revitalize their lives. Genova changes all three of them as the youngest daughter starts to see the ghost of her mother, while the older one discovers her sexuality.","id":"12408","runtime":0,"imdbId":"tt0791303","version":90,"lastModified":"1301903374000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2a\/4d4ca5145e73d617c1001d2a\/genova-mid.jpg","genre":"Drama","title":"Summer in Genoa","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52880"} +{"label":"Good","description":"The rise of national socialism in Germany should not be regarded as a conspiracy of madmen. Millions of \"good\" people found themselves in a society spiralling into terrible chaos. A film about then, which illuminates the terrors of now.","id":"12410","runtime":96,"imdbId":"tt0436364","trailer":"http:\/\/www.youtube.com\/watch?v=2400","version":233,"lastModified":"1301980347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aec\/4bc93915017a3c57fe017aec\/good-mid.jpg","genre":"Drama","title":"Good","releaseDate":1228953600000,"language":"en","type":"Movie","_key":"52881"} +{"label":"Vicente Amorim","version":21,"id":"72133","lastModified":"1301901722000","name":"Vicente Amorim","type":"Person","_key":"52882"} +{"label":"Disgrace","description":"Disgrace is the story of a South African professor of English who loses everything: his reputation, his job, his peace of mind, his good looks, his dreams of artistic success, and finally even his ability to protect his cherished daughter. After having an affair with a student, he moves to the Eastern Cape, where he gets caught up in a mess of post-apartheid politics. ","id":"12411","runtime":120,"imdbId":"tt0445953","version":281,"lastModified":"1301903096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc93916017a3c57fe017af9\/disgrace-mid.jpg","genre":"Drama","title":"Disgrace","releaseDate":1257724800000,"language":"en","type":"Movie","_key":"52883"} +{"label":"Steve Jacobs","version":22,"id":"72134","lastModified":"1301901816000","name":"Steve Jacobs","type":"Person","_key":"52884"} +{"label":"Natalie Becker","version":22,"id":"141464","lastModified":"1301902052000","name":"Natalie Becker","type":"Person","_key":"52885"} +{"label":"Antoinette Engel","version":9,"id":"225901","lastModified":"1301904023000","name":"Antoinette Engel","type":"Person","_key":"52886"} +{"label":"Miracle at St. Anna","description":"Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd \"Buffalo Soldier\" Division stationed in Tuscany, Italy during World War II.","id":"12412","runtime":160,"imdbId":"tt1046997","trailer":"http:\/\/www.youtube.com\/watch?v=_aE8nzSWJbc","version":310,"lastModified":"1301904078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0e\/4bc93918017a3c57fe017b0e\/miracle-at-st-anna-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Miracle at St. Anna","releaseDate":1221436800000,"language":"en","type":"Movie","_key":"52887"} +{"label":"Dioses","description":"No overview found.","id":"12413","runtime":120,"imdbId":"tt1283896","homepage":"http:\/\/dioseslapelicula.com\/","version":40,"lastModified":"1301905326000","genre":"Drama","title":"Dioses","releaseDate":1218326400000,"language":"en","type":"Movie","_key":"52888"} +{"label":"Josu\u00e9 M\u00e9ndez","version":20,"id":"72143","lastModified":"1301901840000","name":"Josu\u00e9 M\u00e9ndez","type":"Person","_key":"52889"} +{"label":"Beautiful Bitch","description":"No overview found.","id":"12414","runtime":103,"imdbId":"tt1137368","version":87,"lastModified":"1301903588000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4d7533d95e73d6646200002d\/beautiful-bitch-mid.jpg","studio":"Riva Filmproduktion","genre":"Drama","title":"Beautiful Bitch","releaseDate":1218672000000,"language":"en","type":"Movie","_key":"52890"} +{"label":"Martin Theo Krieger","version":19,"id":"72211","lastModified":"1301901938000","name":"Martin Theo Krieger","type":"Person","_key":"52891"} +{"label":"Katharina Derr","version":19,"id":"72213","lastModified":"1301901641000","name":"Katharina Derr","type":"Person","_key":"52892"} +{"label":"Patrick von Blume","version":20,"id":"72214","lastModified":"1301901938000","name":"Patrick von Blume","type":"Person","_key":"52893"} +{"label":"Sina Tkotsch","version":20,"id":"72215","lastModified":"1301901640000","name":"Sina Tkotsch","type":"Person","_key":"52894"} +{"label":"Lucien Le Rest","version":17,"id":"72216","lastModified":"1301901938000","name":"Lucien Le Rest","type":"Person","_key":"52895"} +{"label":"Igor Dolgatschew","version":19,"id":"72217","lastModified":"1301901771000","name":"Igor Dolgatschew","type":"Person","_key":"52896"} +{"label":"Tom Lass","version":20,"id":"72218","lastModified":"1301901771000","name":"Tom Lass","type":"Person","_key":"52897"} +{"label":"Aljosha Horvat","version":19,"id":"72219","lastModified":"1301901771000","name":"Aljosha Horvat","type":"Person","_key":"52898"} +{"label":"Therese H\u00e4mer","version":19,"id":"72220","lastModified":"1301901938000","name":"Therese H\u00e4mer","type":"Person","_key":"52899"} +{"label":"Rolf Berg","version":19,"id":"72221","lastModified":"1301901771000","name":"Rolf Berg","type":"Person","_key":"52900"} +{"label":"Vikaren","description":"No overview found.","id":"12416","runtime":93,"imdbId":"tt0478394","version":118,"lastModified":"1301905630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1f\/4bc93919017a3c57fe017b1f\/vikaren-mid.jpg","genre":"Science Fiction","title":"Vikaren","releaseDate":1173744000000,"language":"en","type":"Movie","_key":"52901"} +{"label":"Jonas Wandschneider","version":19,"id":"72222","lastModified":"1301901872000","name":"Jonas Wandschneider","type":"Person","_key":"52902"} +{"label":"Nikolaj Falkenberg-Klok","version":19,"id":"72223","lastModified":"1301902076000","name":"Nikolaj Falkenberg-Klok","type":"Person","_key":"52903"} +{"label":"Sonbahar","description":"No overview found.","id":"12417","runtime":99,"imdbId":"tt1330591","version":67,"lastModified":"1301908305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2d\/4bc9391d017a3c57fe017b2d\/sonbahar-mid.jpg","genre":"Drama","title":"Sonbahar","releaseDate":1218067200000,"language":"en","type":"Movie","_key":"52904"} +{"label":"\u00d6zcan Alper","version":19,"id":"72144","lastModified":"1301901938000","name":"\u00d6zcan Alper","type":"Person","_key":"52905"} +{"label":"Onur Saylak","version":21,"id":"72151","lastModified":"1301902132000","name":"Onur Saylak","type":"Person","_key":"52906"} +{"label":"Megi Kobaladze","version":17,"id":"72152","lastModified":"1301902132000","name":"Megi Kobaladze","type":"Person","_key":"52907"} +{"label":"Raife Yenig\u00fcl","version":17,"id":"72153","lastModified":"1301901938000","name":"Raife Yenig\u00fcl","type":"Person","_key":"52908"} +{"label":"Serkan Keskin","version":19,"id":"72154","lastModified":"1301901938000","name":"Serkan Keskin","type":"Person","_key":"52909"} +{"label":"Eve","description":"No overview found.","id":"12418","runtime":17,"version":83,"lastModified":"1301906182000","genre":"Comedy","title":"Eve","releaseDate":1219795200000,"language":"en","type":"Movie","_key":"52910"} +{"label":"The Market: A Tale of Trade","description":"No overview found.","id":"12420","runtime":93,"imdbId":"tt1286165","version":148,"lastModified":"1301908605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4d14a9f85e73d6083e0020bf\/pazar-bir-ticaret-masal-mid.jpg","title":"The Market: A Tale of Trade","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52911"} +{"label":"Ben Hopkins","version":24,"id":"72156","lastModified":"1301901494000","name":"Ben Hopkins","type":"Person","_key":"52912"} +{"label":"Tayan\u00e7 Ayaydin","version":22,"id":"72168","lastModified":"1301902330000","name":"Tayan\u00e7 Ayaydin","type":"Person","_key":"52913"} +{"label":"Genco Erkal","version":24,"id":"72169","lastModified":"1301902330000","name":"Genco Erkal","type":"Person","_key":"52914"} +{"label":"Nuit de chien","description":"No overview found.","id":"12422","runtime":110,"imdbId":"tt1206485","version":53,"lastModified":"1301908577000","genre":"Drama","title":"Nuit de chien","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52915"} +{"label":"Il pap\u00e0 di Giovanna","description":"No overview found.","id":"12424","runtime":0,"imdbId":"tt1249306","version":72,"lastModified":"1301908420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b36\/4bc9391e017a3c57fe017b36\/il-papa-di-giovanna-mid.jpg","title":"Il pap\u00e0 di Giovanna","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52916"} +{"label":"Pupi Avati","version":39,"id":"72191","lastModified":"1301902048000","name":"Pupi Avati","type":"Person","_key":"52917"} +{"label":"Silvio Orlando","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/653\/4caa48f85e73d643ed000653\/silvio-orlando-profile.jpg","version":40,"id":"108900","lastModified":"1301902212000","name":"Silvio Orlando","type":"Person","_key":"52918"} +{"label":"Alba Rohrwacher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1aa\/4d79d4b37b9aa11a0c0001aa\/alba-rohrwacher-profile.jpg","version":25,"id":"128748","lastModified":"1301902761000","name":"Alba Rohrwacher","type":"Person","_key":"52919"} +{"label":"Valeria Bilello","version":22,"id":"129108","lastModified":"1301902761000","name":"Valeria Bilello","type":"Person","_key":"52920"} +{"label":"L\u2019Autre","description":"No overview found.","id":"12425","runtime":97,"version":42,"lastModified":"1301419192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3f\/4bc9391f017a3c57fe017b3f\/lautre-mid.jpg","title":"L\u2019Autre","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52921"} +{"label":"Patrick Mario Bernard","version":16,"id":"72192","lastModified":"1301901991000","name":"Patrick Mario Bernard","type":"Person","_key":"52922"} +{"label":"Pierre Trividic","version":23,"id":"32503","lastModified":"1301901647000","name":"Pierre Trividic","type":"Person","_key":"52923"} +{"label":"Il seme della discordia","description":"Liberamente ispirato alla novella \"La Marchesa von O\" di Heinrich von Kleist, Il seme della discordia \u00e8 la storia di un avvenimento fuori dal comune: una gravidanza (in)desiderata frutto di una violenza notturna, che resta invisibile allo spettatore e che la protagonista crede di aver sognato. Il film di Corsicato \u00e8 la lunga ricerca della verit\u00e0 a partire dall'evidenza che qualcosa \u00e8 accaduto. ","id":"12426","runtime":85,"imdbId":"tt1275799","version":96,"lastModified":"1301420997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4c\/4bc93920017a3c57fe017b4c\/il-seme-della-discordia-mid.jpg","studio":"Rodeo Drive","genre":"Comedy","title":"Il seme della discordia","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"52924"} +{"label":"Pappi Corsicato","version":20,"id":"72193","lastModified":"1301902130000","name":"Pappi Corsicato","type":"Person","_key":"52925"} +{"label":"Valeria Fabrizi","version":16,"id":"78676","lastModified":"1301902251000","name":"Valeria Fabrizi","type":"Person","_key":"52926"} +{"label":"Michele Venitucci","version":17,"id":"78677","lastModified":"1301902251000","name":"Michele Venitucci","type":"Person","_key":"52927"} +{"label":"Lucilla Agosti","version":17,"id":"78678","lastModified":"1301902076000","name":"Lucilla Agosti","type":"Person","_key":"52928"} +{"label":"Rosalia Porcaro","version":16,"id":"78679","lastModified":"1301902251000","name":"Rosalia Porcaro","type":"Person","_key":"52929"} +{"label":"Monica Guerritore","version":20,"id":"78680","lastModified":"1301902251000","name":"Monica Guerritore","type":"Person","_key":"52930"} +{"label":"Isabella Ferrari","version":33,"id":"78681","lastModified":"1301901611000","name":"Isabella Ferrari","type":"Person","_key":"52931"} +{"label":"Eleonora Pedron","version":16,"id":"78682","lastModified":"1301902251000","name":"Eleonora Pedron","type":"Person","_key":"52932"} +{"label":"Teza","description":"No overview found.","id":"12427","runtime":0,"imdbId":"tt1284592","version":41,"lastModified":"1300979459000","genre":"Drama","title":"Teza","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52933"} +{"label":"Haile Gerima","version":20,"id":"72194","lastModified":"1301902146000","name":"Haile Gerima","type":"Person","_key":"52934"} +{"label":"Bumazhnyy soldat","description":"No overview found.","id":"12428","runtime":116,"imdbId":"tt1284576","version":28,"lastModified":"1301908551000","title":"Bumazhnyy soldat","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52935"} +{"label":"Aleksei German Ml.","version":18,"id":"72195","lastModified":"1301902331000","name":"Aleksei German Ml.","type":"Person","_key":"52936"} +{"label":"Ponyo","description":"Ponyo on the Cliff by the Sea (\u5d16\u306e\u4e0a\u306e\u30dd\u30cb\u30e7, Gake no Ue no Ponyo) is a 2008 animated film by the Japanese anime studio Studio Ghibli, written and directed by famed anime filmmaker Hayao Miyazaki. It is Miyazaki's ninth film for Ghibli. The plot centers on a 5-year-old boy and his relationship with a goldfish princess who longs to become human.","id":"12429","runtime":100,"imdbId":"tt0876563","trailer":"http:\/\/www.youtube.com\/watch?v=soHf8jnmQNs","version":224,"lastModified":"1301901618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b76\/4bc93927017a3c57fe017b76\/12429-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Ponyo","releaseDate":1250208000000,"language":"en","tagline":"Welcome To A World Where Anything Is Possible.","type":"Movie","_key":"52937"} +{"label":"Yuria Nara","version":29,"id":"78346","lastModified":"1301901250000","name":"Yuria Nara","type":"Person","_key":"52938"} +{"label":"Hiroki Doi","version":29,"id":"78347","lastModified":"1301901369000","name":"Hiroki Doi","type":"Person","_key":"52939"} +{"label":"J\u00f4ji Tokoro","version":29,"id":"78348","lastModified":"1301901454000","name":"J\u00f4ji Tokoro","type":"Person","_key":"52940"} +{"label":"Tomoko Yamaguchi","version":29,"id":"78349","lastModified":"1301901578000","name":"Tomoko Yamaguchi","type":"Person","_key":"52941"} +{"label":"Y\u00fbki Amami","version":32,"id":"78350","lastModified":"1301901304000","name":"Y\u00fbki Amami","type":"Person","_key":"52942"} +{"label":"Kazushige Nagashima","version":29,"id":"78351","lastModified":"1301902170000","name":"Kazushige Nagashima","type":"Person","_key":"52943"} +{"label":"Akiko Yano","version":37,"id":"78352","lastModified":"1301901807000","name":"Akiko Yano","type":"Person","_key":"52944"} +{"label":"Shinichi Hatori","version":29,"id":"78353","lastModified":"1301901673000","name":"Shinichi Hatori","type":"Person","_key":"52945"} +{"label":"Tokie Hidari","version":34,"id":"78354","lastModified":"1301901579000","name":"Tokie Hidari","type":"Person","_key":"52946"} +{"label":"Eimi Hiraoka","version":30,"id":"78355","lastModified":"1301901984000","name":"Eimi Hiraoka","type":"Person","_key":"52947"} +{"label":"Tomoko Naraoka","version":29,"id":"78356","lastModified":"1301901807000","name":"Tomoko Naraoka","type":"Person","_key":"52948"} +{"label":"Nozomi \u00d4hashi","version":30,"id":"78357","lastModified":"1301901674000","name":"Nozomi \u00d4hashi","type":"Person","_key":"52949"} +{"label":"Vegas: Based on a True Story","description":"No overview found.","id":"12430","runtime":102,"imdbId":"tt1283971","version":68,"lastModified":"1301907311000","genre":"Drama","title":"Vegas: Based on a True Story","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52950"} +{"label":"Amir Naderi","version":21,"id":"72196","lastModified":"1301902363000","name":"Amir Naderi","type":"Person","_key":"52951"} +{"label":"Walt Turner","version":20,"id":"74048","lastModified":"1301902390000","name":"Walt Turner","type":"Person","_key":"52952"} +{"label":"Un giorno perfetto","description":"No overview found.","id":"12432","runtime":0,"imdbId":"tt1056067","version":102,"lastModified":"1301905839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad6\/4c717d337b9aa13ab4000ad6\/un-giorno-perfetto-mid.jpg","title":"Un giorno perfetto","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52953"} +{"label":"Ferzan Ozpetek","version":63,"id":"72197","lastModified":"1301901469000","name":"Ferzan Ozpetek","type":"Person","_key":"52954"} +{"label":"Valerio Binasco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f1\/4d13aa085e73d608420019f1\/valerio-binasco-profile.jpg","version":24,"id":"129875","lastModified":"1301901594000","name":"Valerio Binasco","type":"Person","_key":"52955"} +{"label":"Nicole Grimaudo","version":33,"id":"124618","lastModified":"1301902054000","name":"Nicole Grimaudo","type":"Person","_key":"52956"} +{"label":"Federico Costantini","version":21,"id":"129876","lastModified":"1301902788000","name":"Federico Costantini","type":"Person","_key":"52957"} +{"label":"Nicole Murgia","version":22,"id":"129877","lastModified":"1301902785000","name":"Nicole Murgia","type":"Person","_key":"52958"} +{"label":"Gabriele Paolino","version":21,"id":"129878","lastModified":"1301902760000","name":"Gabriele Paolino","type":"Person","_key":"52959"} +{"label":"Giulia Salerno","version":21,"id":"129881","lastModified":"1301902760000","name":"Giulia Salerno","type":"Person","_key":"52960"} +{"label":"Serra Yilmaz","version":19,"id":"90317","lastModified":"1301902233000","name":"Serra Yilmaz","type":"Person","_key":"52961"} +{"label":"Gabbla","description":"No overview found.","id":"12433","runtime":0,"imdbId":"tt1284577","version":53,"lastModified":"1301908550000","title":"Gabbla","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52962"} +{"label":"Tariq Teguia","version":20,"id":"72198","lastModified":"1301901991000","name":"Tariq Teguia","type":"Person","_key":"52963"} +{"label":"Plastic City","description":"Yuda, a Chinese immigrant, and his adopted son Kirin, who he saved being eaten by a tiger in the jungle, stand at the head of a massive pirated goods operation that brings in both money and influence. But their empire is crumbling, as corrupt politicians and rival gangs seek to end their power in the city. Yuda is soon got arrested and his dedicated son tries his best to save not just the family business, but his father's reputation.","id":"12434","runtime":0,"imdbId":"tt1054119","version":96,"lastModified":"1301904048000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4c5450787b9aa13d4b00062e\/dangkou-mid.jpg","studio":"Xstream Pictures","genre":"Action","title":"Plastic City","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"52964"} +{"label":"Nelson Yu Lik-wai","version":26,"id":"25471","lastModified":"1301901796000","name":"Nelson Yu Lik-wai","type":"Person","_key":"52965"} +{"label":"Jeff Chen","version":20,"id":"127107","lastModified":"1301902833000","name":"Jeff Chen","type":"Person","_key":"52966"} +{"label":"Yi Huang","version":21,"id":"127108","lastModified":"1301902763000","name":"Yi Huang","type":"Person","_key":"52967"} +{"label":"Renata Jesion","version":20,"id":"127109","lastModified":"1301902802000","name":"Renata Jesion","type":"Person","_key":"52968"} +{"label":"Tain\u00e1 M\u00fcller","version":25,"id":"127110","lastModified":"1301902802000","name":"Tain\u00e1 M\u00fcller","type":"Person","_key":"52969"} +{"label":"Vin\u00edcius Zucatelli","version":20,"id":"127111","lastModified":"1301902425000","name":"Vin\u00edcius Zucatelli","type":"Person","_key":"52970"} +{"label":"The Nanny Diaries","description":"A college graduate goes to work as a nanny for a rich New York family. Ensconced in their home, she has to juggle their dysfunction, a new romance, and the spoiled brat in her charge.","id":"12435","runtime":106,"imdbId":"tt0489237","trailer":"http:\/\/www.youtube.com\/watch?v=636","version":181,"lastModified":"1301903013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/690\/4d1e09d87b9aa17367000690\/the-nanny-diaries-mid.jpg","studio":"The Weinstein Company","genre":"Comedy","title":"The Nanny Diaries","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"52971"} +{"label":"Alicia Keys","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/104\/4c9dcb3b5e73d6704b000104\/alicia-keys-profile.jpg","version":30,"birthday":"317602800000","id":"72208","birthplace":"New York City, New York, USA","lastModified":"1301901428000","name":"Alicia Keys","type":"Person","_key":"52972"} +{"label":"Les Aventures de Tom Sawyer","description":"No overview found.","id":"12436","runtime":360,"imdbId":"tt0062607","version":40,"lastModified":"1301907334000","genre":"Adventure","title":"Les Aventures de Tom Sawyer","releaseDate":-28857600000,"language":"en","type":"Movie","_key":"52973"} +{"label":"Mihai Iacob","version":21,"id":"72224","lastModified":"1301902135000","name":"Mihai Iacob","type":"Person","_key":"52974"} +{"label":"Roland Demongeot","version":21,"id":"72226","lastModified":"1301902359000","name":"Roland Demongeot","type":"Person","_key":"52975"} +{"label":"Lucia Ocrain","version":20,"id":"72227","lastModified":"1301901283000","name":"Lucia Ocrain","type":"Person","_key":"52976"} +{"label":"Otto Ambros","version":20,"id":"72228","lastModified":"1301901940000","name":"Otto Ambros","type":"Person","_key":"52977"} +{"label":"Jacques Bilodeau","version":20,"id":"72229","lastModified":"1301901559000","name":"Jacques Bilodeau","type":"Person","_key":"52978"} +{"label":"Marcel P\u00e9r\u00e8s","version":23,"id":"72230","lastModified":"1301902212000","name":"Marcel P\u00e9r\u00e8s","type":"Person","_key":"52979"} +{"label":"Underworld: Rise of the Lycans","description":"A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.","id":"12437","runtime":92,"imdbId":"tt0834001","trailer":"http:\/\/www.youtube.com\/watch?v=V2oLLC1TdTU","version":239,"lastModified":"1301901187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/938\/4d11870b5e73d60842000938\/underworld-rise-of-the-lycans-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Underworld: Rise of the Lycans","releaseDate":1232668800000,"language":"en","tagline":"Every war has a beginning.","type":"Movie","_key":"52980"} +{"label":"Deux ans de vacances","description":"No overview found.","id":"12438","runtime":300,"imdbId":"tt0071076","version":37,"lastModified":"1301908420000","genre":"Adventure","title":"Deux ans de vacances","releaseDate":140054400000,"language":"en","type":"Movie","_key":"52981"} +{"label":"Franz Seidenschwan","version":17,"id":"72241","lastModified":"1301901938000","name":"Franz Seidenschwan","type":"Person","_key":"52982"} +{"label":"Angela Chiuaru","version":20,"id":"72242","lastModified":"1301902186000","name":"Angela Chiuaru","type":"Person","_key":"52983"} +{"label":"Arrested Development","description":"No overview found.","id":"12440","runtime":0,"imdbId":"tt0901469","version":59,"lastModified":"1301979590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84a\/4d9abde57b9aa164c300084a\/arrested-development-mid.jpg","title":"Arrested Development","releaseDate":1262304000000,"language":"en","type":"Movie","_key":"52984"} +{"label":"How the Garcia Girls Spent Their Summer","description":"Three generations of women in a Mexican American family experience sexual awakenings over the course of a summer.","id":"12441","runtime":128,"imdbId":"tt0385006","version":116,"lastModified":"1301906114000","genre":"Comedy","title":"How the Garcia Girls Spent Their Summer","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"52985"} +{"label":"Georgina Riedel","version":21,"id":"72243","lastModified":"1301902146000","name":"Georgina Riedel","type":"Person","_key":"52986"} +{"label":"Lucy Gallardo","version":21,"id":"82799","lastModified":"1301902146000","name":"Lucy Gallardo","type":"Person","_key":"52987"} +{"label":"Bonjour Michel","description":"No overview found.","id":"12442","runtime":95,"imdbId":"tt0805498","version":42,"lastModified":"1300979462000","title":"Bonjour Michel","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52988"} +{"label":"Elena Arvigo","version":18,"id":"72244","lastModified":"1301902197000","name":"Elena Arvigo","type":"Person","_key":"52989"} +{"label":"Ruben Rigillo","version":18,"id":"72245","lastModified":"1301902146000","name":"Ruben Rigillo","type":"Person","_key":"52990"} +{"label":"Perlasca","description":"No overview found.","id":"12443","runtime":94,"imdbId":"tt1015231","version":46,"lastModified":"1300979462000","title":"Perlasca","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"52991"} +{"label":"Harry Potter and the Deathly Hallows: Part I","description":"The end begins as Harry, Ron, and Hermione go back to Hogwarts to find and destroy Voldemorts final horcruxes, but when Voldemort finds out about their mission, the biggest battle begins and life as they know it will never be the same again.","id":"12444","runtime":146,"imdbId":"tt0926084","trailer":"http:\/\/www.youtube.com\/watch?v=9hXH0Ackz6w","homepage":"http:\/\/www.harrypotter.com","version":663,"lastModified":"1302011111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d5\/4d95f4c37b9aa12efa0002d5\/harry-potter-and-the-deathly-hallows-part-i-mid.jpg","studio":"Warner Bros Pictures","genre":"Action","title":"Harry Potter and the Deathly Hallows: Part I","releaseDate":1290124800000,"language":"en","tagline":"One Way...One Fate...One Hero","type":"Movie","_key":"52992"} +{"label":"Jamie Campbell Bower","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e7d\/4cf16f0c5e73d61928000e7d\/jamie-campbell-bower-profile.jpg","version":69,"id":"83356","lastModified":"1301901190000","name":"Jamie Campbell Bower","type":"Person","_key":"52993"} +{"label":"Evanna Lynch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e2a\/4cf172365e73d61929000e2a\/evanna-lynch-profile.jpg","version":40,"id":"140367","lastModified":"1301901210000","name":"Evanna Lynch","type":"Person","_key":"52994"} +{"label":"Oliver Phelps","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f41\/4cf179125e73d61925000f41\/oliver-phelps-profile.jpg","version":40,"id":"140368","lastModified":"1301901250000","name":"Oliver Phelps","type":"Person","_key":"52995"} +{"label":"Steffan Rhodri","version":29,"id":"143892","lastModified":"1301901208000","name":"Steffan Rhodri","type":"Person","_key":"52996"} +{"label":"Harry Potter and the Deathly Hallows: Part II","description":"The end begins as Harry, Ron, and Hermione go back to Hogwarts to find and destroy Voldemorts final horcruxes, but when Voldemort finds out about their mission, the biggest battle begins and life as they know it will never be the same again.","id":"12445","runtime":146,"imdbId":"tt1201607","trailer":"http:\/\/www.youtube.com\/watch?v=YzfEH0UPEBo","homepage":"http:\/\/www.harrypotter.com","version":358,"lastModified":"1301900826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4d923c0f7b9aa119970001fb\/harry-potter-and-the-deathly-hallows-part-ii-mid.jpg","studio":"Warner Bros.","genre":"Action","title":"Harry Potter and the Deathly Hallows: Part II","releaseDate":1310688000000,"language":"en","tagline":"It all ends here","type":"Movie","_key":"52997"} +{"label":"L'Empreinte de l'ange","description":"Alors qu'elle vient chercher son fils Thomas dans un go\u00fbter d'anniversaire, Elsa Valentin remarque une petite fille de six ans qui la bouleverse. Elle le sent, elle en a l'intime conviction : Lola est sa propre fille. Obs\u00e9d\u00e9e par ce sentiment inexplicable, elle cherche \u00e0 en savoir plus sur l'enfant.","id":"12446","runtime":95,"imdbId":"tt1146314","version":94,"lastModified":"1301905270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbb\/4bc93932017a3c57fe017bbb\/l-empreinte-de-l-ange-mid.jpg","studio":"Diaphana Films","genre":"Drama","title":"L'Empreinte de l'ange","releaseDate":1218585600000,"language":"en","type":"Movie","_key":"52998"} +{"label":"Genevi\u00e8ve Rey-Penchenat","version":19,"id":"72247","lastModified":"1301901872000","name":"Genevi\u00e8ve Rey-Penchenat","type":"Person","_key":"52999"} +{"label":"Safy Nebbou","version":21,"id":"72248","lastModified":"1301902076000","name":"Safy Nebbou","type":"Person","_key":"53000"} +{"label":"Driving Me Crazy","description":"No overview found.","id":"12447","runtime":87,"imdbId":"tt0104142","version":264,"lastModified":"1301904984000","genre":"Comedy","title":"Driving Me Crazy","releaseDate":674352000000,"language":"en","type":"Movie","_key":"53001"} +{"label":"The Hunchback of Notre Dame II","description":"Now that Frollo is gone, Quasimodo rings the bell with the help of his new friend and Esmeralda's and Phoebus' little son, Zephyr. But when Quasi stops by a traveling circus owned by evil magician Sarousch, he falls for Madellaine, Sarouch's assistant.","id":"12448","runtime":68,"imdbId":"tt0257778","version":129,"lastModified":"1301902000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd0\/4bc93935017a3c57fe017bd0\/the-hunchback-of-notre-dame-ii-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Adventure","title":"The Hunchback of Notre Dame II","releaseDate":1016496000000,"language":"en","type":"Movie","_key":"53002"} +{"label":"Paul Kandel","version":22,"id":"72250","lastModified":"1301902176000","name":"Paul Kandel","type":"Person","_key":"53003"} +{"label":"La chambre des morts","description":"En pleine nuit, au milieu d'un champ d'\u00e9oliennes, deux informaticiens au ch\u00f4mage renversent un homme surgi de nulle part. A ses c\u00f4t\u00e9s, un sac rempli de billets : deux millions d'euros, l\u00e0, \u00e0 port\u00e9e de main et aucun t\u00e9moin. Que faire ? Appeler la police ou profiter de l'occasion ?Le lendemain, dans un entrep\u00f4t \u00e0 quelques m\u00e8tres des lieux de l'accident, la police retrouve le corps de M\u00e9lodie, une fillette aveugle. Et si l'argent \u00e9tait destin\u00e9 \u00e0 payer sa ran\u00e7on ? L'assassin a-t-il vu les chauffards","id":"12449","runtime":115,"imdbId":"tt0990361","version":78,"lastModified":"1301908132000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd5\/4bc93936017a3c57fe017bd5\/la-chambre-des-morts-mid.jpg","studio":"Produire \u00e0 Paris","genre":"Thriller","title":"La chambre des morts","releaseDate":1194998400000,"language":"en","type":"Movie","_key":"53004"} +{"label":"Alfred Lot","version":24,"id":"72253","lastModified":"1301902132000","name":"Alfred Lot","type":"Person","_key":"53005"} +{"label":"Eric Caravaca","version":31,"id":"72254","lastModified":"1301901937000","name":"Eric Caravaca","type":"Person","_key":"53006"} +{"label":"C\u00e9line Sallette","version":20,"id":"72255","lastModified":"1301902132000","name":"C\u00e9line Sallette","type":"Person","_key":"53007"} +{"label":"King Solomon's Mines","description":"No overview found.","id":"12450","runtime":173,"imdbId":"tt0397501","version":233,"lastModified":"1301902496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be2\/4bc93936017a3c57fe017be2\/king-solomon-s-mines-mid.jpg","studio":"Enigma Pictures","genre":"Action","title":"King Solomon's Mines","releaseDate":1086480000000,"language":"en","type":"Movie","_key":"53008"} +{"label":"Roy Marsden","version":22,"id":"72256","lastModified":"1301901722000","name":"Roy Marsden","type":"Person","_key":"53009"} +{"label":"Steve Boyum","version":26,"id":"72258","lastModified":"1299501232000","name":"Steve Boyum","type":"Person","_key":"53010"} +{"label":"Five Sex Rooms und eine K\u00fcche","description":"No overview found.","id":"12451","runtime":80,"imdbId":"tt1440173","homepage":"http:\/\/gmfilms.de\/gmfilmsfivesexro.html","version":37,"lastModified":"1301904040000","studio":"Heldmann Film","genre":"Documentary","title":"Five Sex Rooms und eine K\u00fcche","releaseDate":1197331200000,"language":"en","type":"Movie","_key":"53011"} +{"label":"Lady Tara","version":20,"id":"72271","lastModified":"1301902181000","name":"Lady Tara","type":"Person","_key":"53012"} +{"label":"Eva C. Heldmann","version":22,"id":"72275","lastModified":"1301902330000","name":"Eva C. Heldmann","type":"Person","_key":"53013"} +{"label":"Treize","description":"No overview found.","id":"12452","runtime":90,"imdbId":"tt0176241","version":66,"lastModified":"1301905702000","genre":"Drama","title":"Treize","releaseDate":361324800000,"language":"en","type":"Movie","_key":"53014"} +{"label":"Patrick Villechaize","version":20,"id":"72277","lastModified":"1301901812000","name":"Patrick Villechaize","type":"Person","_key":"53015"} +{"label":"Raphael Creton","version":18,"id":"72278","lastModified":"1301902330000","name":"Raphael Creton","type":"Person","_key":"53016"} +{"label":"Valery Demory","version":18,"id":"72279","lastModified":"1301901950000","name":"Valery Demory","type":"Person","_key":"53017"} +{"label":"Stupid Boy","description":"This coming-of-age drama deals with a young man, realizing who he really is and which things he will never do...","id":"12453","runtime":94,"imdbId":"tt0419766","version":110,"lastModified":"1301904489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d9\/4d3f927f7b9aa15bab0019d9\/gar-on-stupide-mid.jpg","genre":"Comedy","title":"Stupid Boy","releaseDate":1126569600000,"language":"en","type":"Movie","_key":"53018"} +{"label":"Lionel Baier","version":31,"id":"72280","lastModified":"1301902384000","name":"Lionel Baier","type":"Person","_key":"53019"} +{"label":"Khaled Khouri","version":21,"id":"72289","lastModified":"1301902309000","name":"Khaled Khouri","type":"Person","_key":"53020"} +{"label":"Pierre Chatagny","version":21,"id":"72288","lastModified":"1301902309000","name":"Pierre Chatagny","type":"Person","_key":"53021"} +{"label":"Rui Pedro Alves","version":21,"id":"72287","lastModified":"1301902309000","name":"Rui Pedro Alves","type":"Person","_key":"53022"} +{"label":"Natacha Koutchoumov","version":21,"id":"72286","lastModified":"1301902309000","name":"Natacha Koutchoumov","type":"Person","_key":"53023"} +{"label":"Mikele D.","version":21,"id":"72290","lastModified":"1301902309000","name":"Mikele D.","type":"Person","_key":"53024"} +{"label":"Herv\u00e9 D.","version":21,"id":"72291","lastModified":"1301902309000","name":"Herv\u00e9 D.","type":"Person","_key":"53025"} +{"label":"Robin Harsch","version":21,"id":"72296","lastModified":"1301902309000","name":"Robin Harsch","type":"Person","_key":"53026"} +{"label":"Rachel No\u00ebl","version":21,"id":"72295","lastModified":"1301902309000","name":"Rachel No\u00ebl","type":"Person","_key":"53027"} +{"label":"Laurent Guido","version":21,"id":"72294","lastModified":"1301902132000","name":"Laurent Guido","type":"Person","_key":"53028"} +{"label":"Vincent Verselle","version":21,"id":"72293","lastModified":"1301902309000","name":"Vincent Verselle","type":"Person","_key":"53029"} +{"label":"Jo\u00eblle R\u00fcbli","version":21,"id":"72292","lastModified":"1301902309000","name":"Jo\u00eblle R\u00fcbli","type":"Person","_key":"53030"} +{"label":"Marianne Bruchez","version":21,"id":"72297","lastModified":"1301902309000","name":"Marianne Bruchez","type":"Person","_key":"53031"} +{"label":"Ursula Meier","version":30,"id":"72299","lastModified":"1302011950000","name":"Ursula Meier","type":"Person","_key":"53032"} +{"label":"Marlyse Bonvin","version":21,"id":"72300","lastModified":"1301902309000","name":"Marlyse Bonvin","type":"Person","_key":"53033"} +{"label":"Michel Rochat","version":21,"id":"72298","lastModified":"1301902309000","name":"Michel Rochat","type":"Person","_key":"53034"} +{"label":"Jean-St\u00e9phane Bron","version":21,"id":"72301","lastModified":"1301902309000","name":"Jean-St\u00e9phane Bron","type":"Person","_key":"53035"} +{"label":"Noah Canete Alves","version":21,"id":"72302","lastModified":"1301902309000","name":"Noah Canete Alves","type":"Person","_key":"53036"} +{"label":"All or Nothing","description":"Penny's love for her partner, taxi-driver Phil, has run dry. He is a gentle, philosophical guy, and she works on the checkout at a supermarket...","id":"12454","runtime":128,"imdbId":"tt0286261","version":208,"lastModified":"1301906211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf3\/4bc93937017a3c57fe017bf3\/all-or-nothing-mid.jpg","genre":"Comedy","title":"All or Nothing","releaseDate":1034899200000,"language":"en","type":"Movie","_key":"53037"} +{"label":"Lesley Manville","version":41,"id":"72305","lastModified":"1301901855000","name":"Lesley Manville","type":"Person","_key":"53038"} +{"label":"Alison Garland","version":20,"id":"72306","lastModified":"1301902076000","name":"Alison Garland","type":"Person","_key":"53039"} +{"label":"Kathryn Hunter","version":21,"id":"72309","lastModified":"1301902076000","name":"Kathryn Hunter","type":"Person","_key":"53040"} +{"label":"Paul Jesson","version":20,"id":"72308","lastModified":"1301902076000","name":"Paul Jesson","type":"Person","_key":"53041"} +{"label":"Helen Coker","version":20,"id":"72311","lastModified":"1301902076000","name":"Helen Coker","type":"Person","_key":"53042"} +{"label":"Sam Kelly","version":20,"id":"72310","lastModified":"1301902251000","name":"Sam Kelly","type":"Person","_key":"53043"} +{"label":"Marion Bailey","version":22,"id":"72307","lastModified":"1301902076000","name":"Marion Bailey","type":"Person","_key":"53044"} +{"label":"Edna Dor\u00e9","version":28,"id":"72316","lastModified":"1301901872000","name":"Edna Dor\u00e9","type":"Person","_key":"53045"} +{"label":"Gary McDonald","version":23,"id":"72312","lastModified":"1301902139000","name":"Gary McDonald","type":"Person","_key":"53046"} +{"label":"Ben Crompton","version":25,"id":"72315","lastModified":"1301902176000","name":"Ben Crompton","type":"Person","_key":"53047"} +{"label":"Diveen Henry","version":20,"id":"72314","lastModified":"1301902076000","name":"Diveen Henry","type":"Person","_key":"53048"} +{"label":"Georgia Fitch","version":20,"id":"72317","lastModified":"1301902076000","name":"Georgia Fitch","type":"Person","_key":"53049"} +{"label":"Robert Wilfort","version":20,"id":"72313","lastModified":"1301902076000","name":"Robert Wilfort","type":"Person","_key":"53050"} +{"label":"Tracy O'Flaherty","version":20,"id":"72318","lastModified":"1301902076000","name":"Tracy O'Flaherty","type":"Person","_key":"53051"} +{"label":"Le Petit lieutenant","description":"A rookie policeman from provincial Le Havre volunteers for the high pressure Parisian homicide bureau and is assigned to a middle-aged woman detective.","id":"12455","runtime":110,"imdbId":"tt0431979","version":176,"lastModified":"1301415043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c83\/4d8dff287b9aa16a24000c83\/le-petit-lieutenant-mid.jpg","genre":"Crime","title":"Le Petit lieutenant","releaseDate":1132099200000,"language":"en","type":"Movie","_key":"53052"} +{"label":"Xavier Beauvois","version":35,"id":"72320","lastModified":"1301902215000","name":"Xavier Beauvois","type":"Person","_key":"53053"} +{"label":"Jalil Lespert","version":27,"id":"72327","lastModified":"1301902034000","name":"Jalil Lespert","type":"Person","_key":"53054"} +{"label":"Annick Le Goff","version":19,"id":"72330","lastModified":"1301902076000","name":"Annick Le Goff","type":"Person","_key":"53055"} +{"label":"Bruce Myers","version":24,"id":"72328","lastModified":"1301902375000","name":"Bruce Myers","type":"Person","_key":"53056"} +{"label":"B\u00e9rang\u00e8re Allaux","version":20,"id":"72331","lastModified":"1301901778000","name":"B\u00e9rang\u00e8re Allaux","type":"Person","_key":"53057"} +{"label":"Jean Lespert","version":19,"id":"72329","lastModified":"1301902251000","name":"Jean Lespert","type":"Person","_key":"53058"} +{"label":"Mireille Franchino","version":19,"id":"72332","lastModified":"1301902251000","name":"Mireille Franchino","type":"Person","_key":"53059"} +{"label":"Yaniss Lespert","version":20,"id":"72333","lastModified":"1301901611000","name":"Yaniss Lespert","type":"Person","_key":"53060"} +{"label":"Philippe Lecompt","version":19,"id":"72335","lastModified":"1301902076000","name":"Philippe Lecompt","type":"Person","_key":"53061"} +{"label":"Christophe Jannin","version":19,"id":"72340","lastModified":"1301902251000","name":"Christophe Jannin","type":"Person","_key":"53062"} +{"label":"R\u00e9my Roubakha","version":19,"id":"72336","lastModified":"1301902076000","name":"R\u00e9my Roubakha","type":"Person","_key":"53063"} +{"label":"J\u00e9r\u00f4me Bertin","version":19,"id":"72339","lastModified":"1301902076000","name":"J\u00e9r\u00f4me Bertin","type":"Person","_key":"53064"} +{"label":"Pierre Aussedat","version":19,"id":"72337","lastModified":"1301902251000","name":"Pierre Aussedat","type":"Person","_key":"53065"} +{"label":"Alex Agnostopoulos","version":19,"id":"72341","lastModified":"1301901872000","name":"Alex Agnostopoulos","type":"Person","_key":"53066"} +{"label":"The Five Obstructions","description":"About a filmmaker not only revisiting, but also recreating (not in a conventional sense) one of his first films, The Perfect Human \/ Det perfekte menneske (1967)","id":"12456","runtime":90,"imdbId":"tt0354575","version":182,"lastModified":"1301905389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4c7d24765e73d6474b000138\/de-fem-benspnd-mid.jpg","genre":"Documentary","title":"The Five Obstructions","releaseDate":1068163200000,"language":"en","type":"Movie","_key":"53067"} +{"label":"J\u00f8rgen Leth","version":31,"id":"72343","lastModified":"1301902171000","name":"J\u00f8rgen Leth","type":"Person","_key":"53068"} +{"label":"Claus Nissen","version":27,"id":"72362","lastModified":"1301902046000","name":"Claus Nissen","type":"Person","_key":"53069"} +{"label":"Majken Algren Nielsen","version":26,"id":"72363","lastModified":"1301902181000","name":"Majken Algren Nielsen","type":"Person","_key":"53070"} +{"label":"Jacqueline Arenal","version":21,"id":"72366","lastModified":"1301902076000","name":"Jacqueline Arenal","type":"Person","_key":"53071"} +{"label":"Daniel Hernandez Rodriguez","version":21,"id":"72365","lastModified":"1301902076000","name":"Daniel Hernandez Rodriguez","type":"Person","_key":"53072"} +{"label":"Vivian Rosa","version":21,"id":"72367","lastModified":"1301902076000","name":"Vivian Rosa","type":"Person","_key":"53073"} +{"label":"Pascal Perez","version":21,"id":"72369","lastModified":"1301902251000","name":"Pascal Perez","type":"Person","_key":"53074"} +{"label":"Meschell Perez","version":21,"id":"72370","lastModified":"1301902251000","name":"Meschell Perez","type":"Person","_key":"53075"} +{"label":"Marie Dejaer","version":21,"id":"72368","lastModified":"1301902076000","name":"Marie Dejaer","type":"Person","_key":"53076"} +{"label":"Bent Christensen","version":25,"id":"72371","lastModified":"1301902076000","name":"Bent Christensen","type":"Person","_key":"53077"} +{"label":"Jan Nowicki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b52\/4d1778125e73d6082e008b52\/jan-nowicki-profile.jpg","version":24,"id":"72373","lastModified":"1301901467000","name":"Jan Nowicki","type":"Person","_key":"53078"} +{"label":"Charlotte Sieling","version":23,"id":"72372","lastModified":"1301902377000","name":"Charlotte Sieling","type":"Person","_key":"53079"} +{"label":"Bob Sabiston","version":21,"id":"72374","lastModified":"1301902076000","name":"Bob Sabiston","type":"Person","_key":"53080"} +{"label":"Jeune homme","description":"An 18 years old man is leaving his Swiss German parent's house to learn 1 year French in Geneva, as au pair helper of this family. He learns there the easy and hard times of life and love.","id":"12457","runtime":90,"imdbId":"tt0466227","homepage":"http:\/\/www.film-jeunehomme.ch","version":73,"lastModified":"1301421318000","genre":"Comedy","title":"Jeune homme","releaseDate":1174521600000,"language":"en","type":"Movie","_key":"53081"} +{"label":"Matthias Schoch","version":20,"id":"72381","lastModified":"1301902183000","name":"Matthias Schoch","type":"Person","_key":"53082"} +{"label":"Chlo\u00e9 Drevon","version":20,"id":"72382","lastModified":"1301902146000","name":"Chlo\u00e9 Drevon","type":"Person","_key":"53083"} +{"label":"No\u00e9mie Drevon","version":20,"id":"72383","lastModified":"1301902183000","name":"No\u00e9mie Drevon","type":"Person","_key":"53084"} +{"label":"Nathalie Grandhomme","version":20,"id":"72384","lastModified":"1301902146000","name":"Nathalie Grandhomme","type":"Person","_key":"53085"} +{"label":"Mona Petri","version":20,"id":"72385","lastModified":"1301902146000","name":"Mona Petri","type":"Person","_key":"53086"} +{"label":"L\u00e9andre Duggan","version":20,"id":"72387","lastModified":"1301901647000","name":"L\u00e9andre Duggan","type":"Person","_key":"53087"} +{"label":"Sen no Rikyu","description":"No overview found.","id":"12468","runtime":107,"imdbId":"tt0098287","version":53,"lastModified":"1301421318000","title":"Sen no Rikyu","releaseDate":641520000000,"language":"en","type":"Movie","_key":"53088"} +{"label":"Eiji Okuda","version":23,"id":"72389","lastModified":"1301902146000","name":"Eiji Okuda","type":"Person","_key":"53089"} +{"label":"Kinnosuke Nakamura","version":23,"id":"72390","lastModified":"1301901951000","name":"Kinnosuke Nakamura","type":"Person","_key":"53090"} +{"label":"Shinsuke Ashida","version":22,"id":"72391","lastModified":"1301902331000","name":"Shinsuke Ashida","type":"Person","_key":"53091"} +{"label":"Shinobugawa","description":"No overview found.","id":"12469","runtime":121,"imdbId":"tt0069260","version":33,"lastModified":"1300979468000","title":"Shinobugawa","releaseDate":110505600000,"language":"en","type":"Movie","_key":"53092"} +{"label":"Komaki Kurihara","version":22,"id":"72392","lastModified":"1301902146000","name":"Komaki Kurihara","type":"Person","_key":"53093"} +{"label":"Yasushi Nagata","version":23,"id":"72393","lastModified":"1301902330000","name":"Yasushi Nagata","type":"Person","_key":"53094"} +{"label":"Hisako Takihana","version":20,"id":"72394","lastModified":"1301902330000","name":"Hisako Takihana","type":"Person","_key":"53095"} +{"label":"Kinz\u00f4 Shin","version":21,"id":"72395","lastModified":"1301902331000","name":"Kinz\u00f4 Shin","type":"Person","_key":"53096"} +{"label":"Kaneko Iwasaki","version":21,"id":"72396","lastModified":"1301902204000","name":"Kaneko Iwasaki","type":"Person","_key":"53097"} +{"label":"Kayoko Onishi","version":20,"id":"72400","lastModified":"1301902330000","name":"Kayoko Onishi","type":"Person","_key":"53098"} +{"label":"Sandakan hachibanshokan bohkyo","description":"No overview found.","id":"12470","runtime":120,"imdbId":"tt0073654","version":46,"lastModified":"1301906152000","genre":"Drama","title":"Sandakan hachibanshokan bohkyo","releaseDate":126230400000,"language":"en","type":"Movie","_key":"53099"} +{"label":"Y\u00f4ko Takahashi","version":20,"id":"72397","lastModified":"1301901950000","name":"Y\u00f4ko Takahashi","type":"Person","_key":"53100"} +{"label":"Ken Tanaka","version":20,"id":"72398","lastModified":"1301901950000","name":"Ken Tanaka","type":"Person","_key":"53101"} +{"label":"Masayo Umezawa","version":20,"id":"72399","lastModified":"1301902330000","name":"Masayo Umezawa","type":"Person","_key":"53102"} +{"label":"S\u00fct","description":"No overview found.","id":"12471","runtime":0,"imdbId":"tt1284591","version":101,"lastModified":"1301906062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/555\/4cd7c43b7b9aa113ac000555\/sut-mid.jpg","genre":"Drama","title":"S\u00fct","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"53103"} +{"label":"Melih Sel\u00e7uk","version":16,"id":"141971","lastModified":"1301902583000","name":"Melih Sel\u00e7uk","type":"Person","_key":"53104"} +{"label":"Ba\u015fak K\u00f6kl\u00fckaya","version":19,"id":"141972","lastModified":"1301902678000","name":"Ba\u015fak K\u00f6kl\u00fckaya","type":"Person","_key":"53105"} +{"label":"R\u0131za Ak\u0131n","version":22,"id":"141973","lastModified":"1301902557000","name":"R\u0131za Ak\u0131n","type":"Person","_key":"53106"} +{"label":"Saadet I\u015f\u0131l Aksoy","version":16,"id":"141974","lastModified":"1301902677000","name":"Saadet I\u015f\u0131l Aksoy","type":"Person","_key":"53107"} +{"label":"Semih Kaplanoglu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e4\/4cd7c0ec7b9aa11b260003e4\/semih-kaplanoglu-profile.jpg","version":32,"id":"130402","lastModified":"1301902048000","name":"Semih Kaplanoglu","type":"Person","_key":"53108"} +{"label":"The Incredible Shrinking Woman","description":"No overview found.","id":"12472","runtime":88,"imdbId":"tt0082558","version":138,"lastModified":"1301903938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3b\/4d1fc8ae5e73d66b30001b3b\/the-incredible-shrinking-woman-mid.jpg","genre":"Comedy","title":"The Incredible Shrinking Woman","releaseDate":349660800000,"language":"en","type":"Movie","_key":"53109"} +{"label":"The Visitor","description":"A college professor travels to New York City to attend a conference and finds a young couple living in his apartment. ","id":"12473","runtime":104,"imdbId":"tt0857191","homepage":"http:\/\/www.thevisitorfilm.com","version":236,"lastModified":"1301902360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0e\/4bc9393c017a3c57fe017c0e\/the-visitor-mid.jpg","studio":"Groundswell Productions","genre":"Crime","title":"The Visitor","releaseDate":1189123200000,"language":"en","tagline":"Connection is everything","type":"Movie","_key":"53110"} +{"label":"Haaz Sleiman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4ceec8255e73d654f700012f\/haaz-sleiman-profile.jpg","version":24,"id":"82103","lastModified":"1301902010000","name":"Haaz Sleiman","type":"Person","_key":"53111"} +{"label":"Danai Gurira","version":21,"id":"82104","lastModified":"1301902189000","name":"Danai Gurira","type":"Person","_key":"53112"} +{"label":"Maggie Moore","version":24,"id":"82105","lastModified":"1301901563000","name":"Maggie Moore","type":"Person","_key":"53113"} +{"label":"Parque v\u00eda","description":"No overview found.","id":"12474","runtime":0,"imdbId":"tt1183942","homepage":"http:\/\/www.parquevia.com\/","version":26,"lastModified":"1301906725000","genre":"Drama","title":"Parque v\u00eda","releaseDate":1218844800000,"language":"en","type":"Movie","_key":"53114"} +{"label":"Enrique Rivero","version":21,"id":"72404","lastModified":"1301902180000","name":"Enrique Rivero","type":"Person","_key":"53115"} +{"label":"In the Army Now","description":"Bones Conway and Jack Kaufman didn't really know what they were in for when they enlisted in the U.S. Army; they just wanted to get a job and make some money. But these new recruits are so hapless, they run the risk of getting kicked out before their military careers even begin. Soon, though, they're sent to the Middle East to fight for their country -- which they manage to do in their own wacky ways.","id":"12475","runtime":91,"imdbId":"tt0110123","version":93,"lastModified":"1301903079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b1\/4d9729e67b9aa1199a0045b1\/in-the-army-now-mid.jpg","genre":"Action","title":"In the Army Now","releaseDate":776649600000,"language":"en","tagline":"Sleep tight, America! The safety of the free world rests in his hands!","type":"Movie","_key":"53116"} +{"label":"The Hidden","description":"An alien is on the run in America. To get his kicks, it kills anything that gets in its way, and uses the body as a new hiding place. This alien has a goal in life; power. Hotly pursued by another alien (who's borrowed the body of a dead FBI agent), lots of innocent people die in the chase.","id":"12476","runtime":96,"imdbId":"tt0093185","version":110,"lastModified":"1301903683000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1b\/4bc9393d017a3c57fe017c1b\/the-hidden-mid.jpg","genre":"Action","title":"The Hidden","releaseDate":561686400000,"language":"en","type":"Movie","_key":"53117"} +{"label":"Clarence Felder","version":19,"id":"72408","lastModified":"1301901935000","name":"Clarence Felder","type":"Person","_key":"53118"} +{"label":"Grave of the Fireflies","description":"In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.","id":"12477","runtime":89,"imdbId":"tt0095327","trailer":"http:\/\/www.youtube.com\/watch?v=RbEyjUsWKZA","version":145,"lastModified":"1302016211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4d1bf8505e73d6083400c376\/hotaru-no-haka-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Grave of the Fireflies","releaseDate":577152000000,"language":"en","type":"Movie","_key":"53119"} +{"label":"Tsutomu Tatsumi","version":25,"id":"72413","lastModified":"1302016189000","name":"Tsutomu Tatsumi","type":"Person","_key":"53120"} +{"label":"Ayano Shiraishi","version":25,"id":"72414","lastModified":"1302016189000","name":"Ayano Shiraishi","type":"Person","_key":"53121"} +{"label":"Yoshiko Shinohara","version":25,"id":"72415","lastModified":"1302016189000","name":"Yoshiko Shinohara","type":"Person","_key":"53122"} +{"label":"Akemi Yamaguchi","version":25,"id":"72416","lastModified":"1302016189000","name":"Akemi Yamaguchi","type":"Person","_key":"53123"} +{"label":"Isao Takahata","version":73,"id":"628","lastModified":"1299492184000","name":"Isao Takahata","type":"Person","_key":"53124"} +{"label":"Skin Deep","description":"Writer\/director Blake Edwards parlays slapstick with battle-of-the-sexes brio in this gag-infused tale of a womanizer who finally grows up. John Ritter plays mid-life-crazy Zach, ready to win back his ex-wife ... if he can somehow give up his randy habits. Featuring wall-to-wall verbal and physical wit, Skin Deep tops itself with a scene that, even today, remains glowingly funny and original.","id":"12478","runtime":97,"imdbId":"tt0098343","version":96,"lastModified":"1301903940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c40\/4bc93942017a3c57fe017c40\/skin-deep-mid.jpg","genre":"Comedy","title":"Skin Deep","releaseDate":604886400000,"language":"en","type":"Movie","_key":"53125"} +{"label":"Breakfast of Champions","description":"A portrait of a fictional town in the mid west that is home to a group of idiosyncratic and slightly neurotic characters. Dwayne Hoover is a wealthy car dealer-ship owner that's on the brink of suicide and is losing touch with reality.","id":"12479","runtime":110,"imdbId":"tt0120618","version":115,"lastModified":"1301903486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c49\/4bc93942017a3c57fe017c49\/breakfast-of-champions-mid.jpg","genre":"Comedy","title":"Breakfast of Champions","releaseDate":918864000000,"language":"en","type":"Movie","_key":"53126"} +{"label":"Alan Rudolph","version":37,"id":"72427","lastModified":"1301901799000","name":"Alan Rudolph","type":"Person","_key":"53127"} +{"label":"Gouttes d'eau sur pierres br\u00fblantes","description":"No overview found.","id":"12480","runtime":90,"imdbId":"tt0211387","version":53,"lastModified":"1301903582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4bc93943017a3c57fe017c52\/gouttes-d-eau-sur-pierres-brulantes-mid.jpg","genre":"Drama","title":"Gouttes d'eau sur pierres br\u00fblantes","releaseDate":950400000000,"language":"en","type":"Movie","_key":"53128"} +{"label":"Malik Zidi","version":23,"id":"72428","lastModified":"1301901780000","name":"Malik Zidi","type":"Person","_key":"53129"} +{"label":"The Big Boss","description":"Chein is a city boy who moves with his cousins to work at a ice factory. He does this with a family promise never to get involved in any fight. However, when members of his family begin disappearing after meeting the management of the factor, the resulting mystery and pressures forces him to break that vow and take on the villainy of the Big Boss.","id":"12481","runtime":100,"imdbId":"tt0067824","version":125,"lastModified":"1301902881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5b\/4bc93943017a3c57fe017c5b\/tang-shan-da-xiong-mid.jpg","genre":"Action","title":"The Big Boss","releaseDate":55296000000,"language":"en","type":"Movie","_key":"53130"} +{"label":"Ying-Chieh Han","version":26,"id":"72432","lastModified":"1301901444000","name":"Ying-Chieh Han","type":"Person","_key":"53131"} +{"label":"Chia-hsiang Wu","version":24,"id":"72433","lastModified":"1301901563000","name":"Chia-hsiang Wu","type":"Person","_key":"53132"} +{"label":"Liebe ist k\u00e4lter als der Tod","description":"No overview found.","id":"12482","runtime":88,"imdbId":"tt0064588","version":42,"lastModified":"1301904258000","genre":"Comedy","title":"Liebe ist k\u00e4lter als der Tod","releaseDate":-16329600000,"language":"en","type":"Movie","_key":"53133"} +{"label":"Liz Soellner","version":19,"id":"72435","lastModified":"1301901939000","name":"Liz Soellner","type":"Person","_key":"53134"} +{"label":"Riding the Bullet","description":"Set in 1969, Alan Parker (Jackson) is a young artist, studying at the University of Maine. He becomes obsessed with death, and believing he is losing his girlfriend, Jessica (Christensen), he tries to commit suicide on his birthday but his friends manage to stop him, and he recovers. He receives news that his mother is dying and decides to hitchhike, in an attempt to reach his dying mom.","id":"12483","runtime":98,"imdbId":"tt0355954","version":140,"lastModified":"1301903274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c69\/4bc93944017a3c57fe017c69\/riding-the-bullet-mid.jpg","genre":"Drama","title":"Riding the Bullet","releaseDate":1097798400000,"language":"en","type":"Movie","_key":"53135"} +{"label":"The Forsaken","description":"A young man is in a race against time as he searches for a cure after becoming infected with a virus that will eventually turn him into a blood-sucking vampire.","id":"12484","runtime":90,"imdbId":"tt0245120","trailer":"http:\/\/www.youtube.com\/watch?v=7F3-P25XHrs","version":149,"lastModified":"1301903028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7b\/4bc93948017a3c57fe017c7b\/the-forsaken-mid.jpg","genre":"Action","title":"The Forsaken","releaseDate":988329600000,"language":"en","tagline":"The night...has an appetite.","type":"Movie","_key":"53136"} +{"label":"Brendan Fehr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/150\/4ceeccb35e73d654f8000150\/brendan-fehr-profile.jpg","version":37,"id":"72440","lastModified":"1301901376000","name":"Brendan Fehr","type":"Person","_key":"53137"} +{"label":"Candyman: Day of the Dead","description":"The Candyman returns to try to convince his female descendent, an artist, to join him as a legendary figure. To this end, he frames her for a series of hideous murders of her friends and associates so that she has nowhere else to turn to.","id":"12485","runtime":93,"imdbId":"tt0165662","version":149,"lastModified":"1301903865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c84\/4bc93948017a3c57fe017c84\/candyman-day-of-the-dead-mid.jpg","genre":"Fantasy","title":"Candyman: Day of the Dead","releaseDate":931478400000,"language":"en","type":"Movie","_key":"53138"} +{"label":"Donna D'Errico","version":20,"id":"72442","lastModified":"1301901944000","name":"Donna D'Errico","type":"Person","_key":"53139"} +{"label":"Alexia Robinson","version":20,"id":"72443","lastModified":"1301902383000","name":"Alexia Robinson","type":"Person","_key":"53140"} +{"label":"Turi Meyer","version":25,"id":"72445","lastModified":"1301901848000","name":"Turi Meyer","type":"Person","_key":"53141"} +{"label":"Farce of the Penguins","description":"In this spoof of \"March of the Penguins,\" nature footage of penguins near the South Pole gets a soundtrack of human voices. Carl and Jimmy, best friends, walk 70 miles to the mating grounds where the female penguins wait. The huddled masses of females - especially Melissa and Vicki - talk about males, mating, and what might happen this year. Carl, Jimmy, and the other males make the long trek talking about food, fornication and flatulence. Until this year, Carl's sex life has been dismal, but he","id":"12486","runtime":80,"imdbId":"tt0488539","version":197,"lastModified":"1301903813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c89\/4bc93949017a3c57fe017c89\/farce-of-the-penguins-mid.jpg","studio":"FOTP Productions","genre":"Comedy","title":"Farce of the Penguins","releaseDate":1170115200000,"language":"en","tagline":"What Happens In Antarctica... Stays in Antarctica","type":"Movie","_key":"53142"} +{"label":"Bob Saget","version":33,"id":"72450","lastModified":"1301901463000","name":"Bob Saget","type":"Person","_key":"53143"} +{"label":"Gozu","description":"Minami mistakenly kills a gangster associate of his named Brother. Almost as soon as the murder takes place, the body of the deceased man is gone, prompting Minami to conduct a search. While looking, he finds a mysterious isolated hotel where he decides to take a rest. Not only are the front desk clerks a bit strange, but even the ambiance feels unusual. Minami soon realizes he may have gotten more than he bargained for.","id":"12487","runtime":130,"imdbId":"tt0361668","version":210,"lastModified":"1301903567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/626\/4bf42c53017a3c3215000626\/gokudo-kyofu-dai-gekijo-gozu-mid.jpg","genre":"Crime","title":"Gozu","releaseDate":1053129600000,"language":"en","type":"Movie","_key":"53144"} +{"label":"Y\u00fbta Sone","version":17,"id":"72451","lastModified":"1301901722000","name":"Y\u00fbta Sone","type":"Person","_key":"53145"} +{"label":"Kimika Yoshino","version":19,"id":"72452","lastModified":"1301901722000","name":"Kimika Yoshino","type":"Person","_key":"53146"} +{"label":"Sh\u00f4hei Hino","version":17,"id":"72453","lastModified":"1301902251000","name":"Sh\u00f4hei Hino","type":"Person","_key":"53147"} +{"label":"Keiko Tomita","version":19,"id":"72454","lastModified":"1301902251000","name":"Keiko Tomita","type":"Person","_key":"53148"} +{"label":"Harumi Sone","version":22,"id":"72455","lastModified":"1301901722000","name":"Harumi Sone","type":"Person","_key":"53149"} +{"label":"The Gingerbread Man","description":"Savannah lawyer Rick Magruder is at a party celebrating his courtroom victory defending a cop killer when a member of the catering staff, Mallory Doss, discovers her car has been stolen. Having had a few drinks, Magruder offers to give her a lift home, a decision that turns into a one night stand. Rick soon learns that her nut-case father, Dixon, seems to have begun threatening her again. Rick puts the force of his law firm behind Mallory, who he barely knows, has Dixon picked up by the police, ","id":"12488","runtime":114,"imdbId":"tt0119196","version":153,"lastModified":"1301903734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee7\/4d1ea7745e73d66b34000ee7\/the-gingerbread-man-mid.jpg","genre":"Drama","title":"The Gingerbread Man","releaseDate":885513600000,"language":"en","type":"Movie","_key":"53150"} +{"label":"Gridlock'd","description":"After a friend overdoses, Spoon and Stretch decide to kick their drug habits and attempt to enroll in a government detox program. Their efforts are hampered by seemingly endless red tape, as they are shuffled from one office to another while being chased by drug dealers and the police.","id":"12489","runtime":91,"imdbId":"tt0119225","version":115,"lastModified":"1302059133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b1\/4cab2dd37b9aa17ace0008b1\/gridlock-d-mid.jpg","studio":"Interscope Communications","genre":"Comedy","title":"Gridlock'd","releaseDate":854496000000,"language":"en","tagline":"Life is a traffic jam.","type":"Movie","_key":"53151"} +{"label":"Ordinary Decent Criminal","description":"Michael Lynch is a notorious criminal with two wives and a flair for showmanship. He's also a huge embarrassment to the local police, who are determined to bring him down once and for all.","id":"12490","runtime":93,"imdbId":"tt0160611","version":112,"lastModified":"1301902792000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc9394c017a3c57fe017caf\/ordinary-decent-criminal-mid.jpg","genre":"Action","title":"Ordinary Decent Criminal","releaseDate":947203200000,"language":"en","type":"Movie","_key":"53152"} +{"label":"Helen Baxendale","version":21,"id":"15456","lastModified":"1301901315000","name":"Helen Baxendale","type":"Person","_key":"53153"} +{"label":"Thaddeus O'Sullivan","version":25,"id":"72467","lastModified":"1301901492000","name":"Thaddeus O'Sullivan","type":"Person","_key":"53154"} +{"label":"Accattone","description":"No overview found.","id":"12491","runtime":120,"imdbId":"tt0054599","version":100,"lastModified":"1301904032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb8\/4bc9394f017a3c57fe017cb8\/accattone-mid.jpg","genre":"Drama","title":"Accattone","releaseDate":-263088000000,"language":"en","type":"Movie","_key":"53155"} +{"label":"Franca Pasut","version":20,"id":"72472","lastModified":"1301901722000","name":"Franca Pasut","type":"Person","_key":"53156"} +{"label":"Silvana Corsini","version":20,"id":"72473","lastModified":"1301902076000","name":"Silvana Corsini","type":"Person","_key":"53157"} +{"label":"Paola Guidi","version":20,"id":"72474","lastModified":"1301902076000","name":"Paola Guidi","type":"Person","_key":"53158"} +{"label":"Luciano Conti","version":20,"id":"72475","lastModified":"1301902251000","name":"Luciano Conti","type":"Person","_key":"53159"} +{"label":"Luciano Gonini","version":20,"id":"72476","lastModified":"1301902251000","name":"Luciano Gonini","type":"Person","_key":"53160"} +{"label":"Jadesoturi","description":"Inspired by a well-known Finnish epic called The Kalevala, the story opens with a down-on-his luck novice blacksmith who gets dumped by his girlfriend. She tries to dispose of his collection of Asian artifacts and body carbon at an antique dealer, but this sets off a mythical series of events that holds the girlfriend back from leaving town. His body carbon causes a mythical chest to open and that causes the blacksmith to remember a past life where he was a half-Chinese half-Finnish warrior, fat","id":"12492","runtime":110,"imdbId":"tt0416871","version":118,"lastModified":"1301904722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc1\/4bc93951017a3c57fe017cc1\/jadesoturi-mid.jpg","genre":"Action","title":"Jadesoturi","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"53161"} +{"label":"Antti-Jussi Annila","version":26,"id":"72480","lastModified":"1302074831000","name":"Antti-Jussi Annila","type":"Person","_key":"53162"} +{"label":"Tommi Eronen","version":26,"id":"72481","lastModified":"1302074831000","name":"Tommi Eronen","type":"Person","_key":"53163"} +{"label":"Krista Kosonen","version":21,"id":"72482","lastModified":"1301901994000","name":"Krista Kosonen","type":"Person","_key":"53164"} +{"label":"Taisheng Chen","version":24,"id":"72483","lastModified":"1301901791000","name":"Taisheng Chen","type":"Person","_key":"53165"} +{"label":"Elle Kull","version":23,"id":"72484","lastModified":"1301902347000","name":"Elle Kull","type":"Person","_key":"53166"} +{"label":"Hao Dang","version":23,"id":"72485","lastModified":"1301901966000","name":"Hao Dang","type":"Person","_key":"53167"} +{"label":"High and Low","description":"An executive on the outs with his company gets in deeper when he pays off kidnappers who have abducted the wrong boy.","id":"12493","runtime":143,"imdbId":"tt0057565","version":111,"lastModified":"1301903265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cca\/4bc93952017a3c57fe017cca\/tengoku-to-jigoku-mid.jpg","studio":"Kurosawa Production Co.","genre":"Indie","title":"High and Low","releaseDate":-215827200000,"language":"en","type":"Movie","_key":"53168"} +{"label":"Kenjiro Ishiyama","version":23,"id":"72539","lastModified":"1301902205000","name":"Kenjiro Ishiyama","type":"Person","_key":"53169"} +{"label":"Takeshi Kat\u00f4","version":24,"id":"72540","lastModified":"1301901426000","name":"Takeshi Kat\u00f4","type":"Person","_key":"53170"} +{"label":"Meister Eder und sein Pumuckl","description":"No overview found.","id":"12494","runtime":84,"imdbId":"tt0319844","version":46,"lastModified":"1301903476000","genre":"Animation","title":"Meister Eder und sein Pumuckl","releaseDate":386553600000,"language":"en","type":"Movie","_key":"53171"} +{"label":"Ulrich K\u00f6nig","version":22,"id":"72486","lastModified":"1301901950000","name":"Ulrich K\u00f6nig","type":"Person","_key":"53172"} +{"label":"Das singende, klingende B\u00e4umchen","description":"Ein M\u00e4rchen der Gebr\u00fcder Grimm","id":"12495","runtime":74,"imdbId":"tt0052199","version":67,"lastModified":"1301907439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccf\/4bc93952017a3c57fe017ccf\/das-singende-klingende-baumchen-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Das singende, klingende B\u00e4umchen","releaseDate":-380332800000,"language":"en","type":"Movie","_key":"53173"} +{"label":"Francesco Stefani","version":21,"id":"72493","lastModified":"1301902187000","name":"Francesco Stefani","type":"Person","_key":"53174"} +{"label":"Christel Bodenstein","version":20,"id":"72527","lastModified":"1301902005000","name":"Christel Bodenstein","type":"Person","_key":"53175"} +{"label":"Eckart Dux","version":20,"id":"27613","lastModified":"1301902200000","name":"Eckart Dux","type":"Person","_key":"53176"} +{"label":"Richard Kr\u00fcger","version":20,"id":"72529","lastModified":"1301902026000","name":"Richard Kr\u00fcger","type":"Person","_key":"53177"} +{"label":"Dorothea Thiesing","version":20,"id":"72530","lastModified":"1301902200000","name":"Dorothea Thiesing","type":"Person","_key":"53178"} +{"label":"G\u00fcnther Polensen","version":20,"id":"72531","lastModified":"1301902200000","name":"G\u00fcnther Polensen","type":"Person","_key":"53179"} +{"label":"Fredy Barten","version":20,"id":"74216","lastModified":"1301902380000","name":"Fredy Barten","type":"Person","_key":"53180"} +{"label":"J\u00fcrgen","version":18,"id":"74217","lastModified":"1301902380000","name":"J\u00fcrgen","type":"Person","_key":"53181"} +{"label":"Norbert","version":18,"id":"74218","lastModified":"1301902349000","name":"Norbert","type":"Person","_key":"53182"} +{"label":"Wolfgang","version":18,"id":"74219","lastModified":"1301902349000","name":"Wolfgang","type":"Person","_key":"53183"} +{"label":"Paul Knopf","version":20,"id":"74220","lastModified":"1301902349000","name":"Paul Knopf","type":"Person","_key":"53184"} +{"label":"Paul Pfingst","version":20,"id":"74221","lastModified":"1301902349000","name":"Paul Pfingst","type":"Person","_key":"53185"} +{"label":"Friedrich Teitge","version":20,"id":"74222","lastModified":"1301901975000","name":"Friedrich Teitge","type":"Person","_key":"53186"} +{"label":"Peter","version":18,"id":"74223","lastModified":"1301902182000","name":"Peter","type":"Person","_key":"53187"} +{"label":"The Twilight Samurai","description":"Seibei Iguchi, a low-ranking samurai, leads a life without glory as a bureaucrat in the mid-XIX century Japan. A widower, he has charge of two daughters (whom he adores) and a senile mother; he must therefore work in the fields and accept piecework to make ends meet. New prospects seem to open up when Tomoe, his long-time love, divorces a brutal husband. However, even as the Japanese feudal system is unraveling, Seibei remains bound by the code of honor of the samurai and by his own sense of soc","id":"12496","runtime":129,"imdbId":"tt0351817","trailer":"http:\/\/www.youtube.com\/watch?v=7sEdxb3I3dk","version":169,"lastModified":"1301902729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/030\/4c15303e7b9aa105e0000030\/tasogare-seibei-mid.jpg","genre":"Action","title":"The Twilight Samurai","releaseDate":1036195200000,"language":"en","type":"Movie","_key":"53188"} +{"label":"Rie Miyazawa","version":31,"id":"72494","lastModified":"1301901995000","name":"Rie Miyazawa","type":"Person","_key":"53189"} +{"label":"Nenji Kobayashi","version":25,"id":"72495","lastModified":"1301901673000","name":"Nenji Kobayashi","type":"Person","_key":"53190"} +{"label":"Y\u00f4ji Yamada","version":33,"id":"72496","lastModified":"1301901468000","name":"Y\u00f4ji Yamada","type":"Person","_key":"53191"} +{"label":"Touch of spice","description":"No overview found.","id":"12497","runtime":108,"imdbId":"tt0378897","trailer":"http:\/\/www.youtube.com\/watch?v=YOhpWC8Nl70","homepage":"http:\/\/villageproductions.gr\/atouchofspice.php","version":136,"lastModified":"1301904620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce1\/4bc93954017a3c57fe017ce1\/politiki-kouzina-mid.jpg","studio":"Village Roadshow Productions","genre":"Comedy","title":"Touch of spice","releaseDate":1066953600000,"language":"en","tagline":"Cinnamon... is bitter and sweet, just like a woman","type":"Movie","_key":"53192"} +{"label":"Ieroklis Michaelidis","version":26,"id":"72513","lastModified":"1301902387000","name":"Ieroklis Michaelidis","type":"Person","_key":"53193"} +{"label":"Renia Louizidou","version":26,"id":"72514","lastModified":"1301902007000","name":"Renia Louizidou","type":"Person","_key":"53194"} +{"label":"Tamer Karadagli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd1\/4d1448d25e73d60838001dd1\/tamer-karadagli-profile.jpg","biography":"24 May\u0131s 1967 Ankara<BR>Tiyatro, sinema ve dizi oyuncusu, seslendirme sanat\u00e7\u0131s\u0131. Aslen Kars-Sar\u0131kam\u0131\u015fl\u0131\u2019d\u0131r. \u0130lkokula ba\u015flamadan ailesi ile birlikte ABD\u2019ye yerle\u015fen Karada\u011fl\u0131, T\u00fcrkiye\u2019ye d\u00f6nm\u00fc\u015f sonra yapamay\u0131p tekrar Amerikaya gitmi\u015ftir. Lise son s\u0131n\u0131fta<SPAN id=more-65726><\/SPAN> kesin d\u00f6n\u00fc\u015f yapt\u0131\u011f\u0131 y\u0131llarda da lise y\u0131llar\u0131nda okulunu aksat\u0131p akut sinemas\u0131na abone olmu\u015ftur. Bir yandan da lise y\u0131llar\u0131nda onun i\u00e7in bir tutku oldu\u011funu belirtti\u011fi seslendirme sanat\u0131na ba\u015flam\u0131\u015ft\u0131r. Sonra Shakespeare\u2019","version":33,"birthday":"-82342800000","id":"72515","lastModified":"1301901701000","name":"Tamer Karadagli","type":"Person","_key":"53195"} +{"label":"Stelios Mainas","version":26,"id":"123047","lastModified":"1301902393000","name":"Stelios Mainas","type":"Person","_key":"53196"} +{"label":"Tassos Bandis","version":24,"id":"123048","lastModified":"1301902547000","name":"Tassos Bandis","type":"Person","_key":"53197"} +{"label":"Odysseas Papaspiliopoulos","version":24,"id":"123049","lastModified":"1301902547000","name":"Odysseas Papaspiliopoulos","type":"Person","_key":"53198"} +{"label":"Tassos Boulmetis","version":28,"id":"72516","lastModified":"1301902318000","name":"Tassos Boulmetis","type":"Person","_key":"53199"} +{"label":"Sling Blade","description":"Karl Childers is a mentally disabled man who has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, Karl is deemed fit to be released into the outside world.","id":"12498","runtime":135,"imdbId":"tt0117666","trailer":"http:\/\/www.youtube.com\/watch?v=4sQuu36ZKQg","version":146,"lastModified":"1301901761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/285\/4cb6a1d25e73d67782000285\/sling-blade-mid.jpg","genre":"Drama","title":"Sling Blade","releaseDate":849052800000,"language":"en","tagline":"A simple man. A difficult choice.","type":"Movie","_key":"53200"} +{"label":"Fathers' Day","description":"After Scott has a fight with his father and runs away and when his father refuses to go after him. His mother, Collette, then goes to one of her former boyfriends, Jack, a lawyer, and tells him that he's her son's real father. Jack initially refuses. So she goes to another boyfriend, Dale, who goes off looking for Scott. Eventually the two men meet and realize that they are looking for the same boy and that Collette told them they are the boy's father. What follows is a mad chase, cause the boy ","id":"12499","runtime":89,"imdbId":"tt0119109","version":179,"lastModified":"1301902777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/509\/4c5aae647b9aa151f3000509\/fathers-day-mid.jpg","genre":"Comedy","title":"Fathers' Day","releaseDate":863136000000,"language":"en","type":"Movie","_key":"53201"} +{"label":"American Ninja","description":"Joe Armstrong, an orphaned drifter will little respect for much other than martial arts, finds himself on an American Army base in The Philippines after a judge gives him a choice of enlistment or prison. On one of his first missions driving a convoy, his platoon is attacked by a group of rebels who try to steal the weapons the platoon is transporting and kidnap the base colonel's daughter.","id":"12500","runtime":95,"imdbId":"tt0088708","version":151,"lastModified":"1301902636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf3\/4bc93959017a3c57fe017cf3\/american-ninja-mid.jpg","studio":"Cannon Group","genre":"Action","title":"American Ninja","releaseDate":494208000000,"language":"en","type":"Movie","_key":"53202"} +{"label":"Guich Koock","version":22,"id":"72542","lastModified":"1301901937000","name":"Guich Koock","type":"Person","_key":"53203"} +{"label":"Sam Firstenberg","version":30,"id":"72543","lastModified":"1301901593000","name":"Sam Firstenberg","type":"Person","_key":"53204"} +{"label":"The Big Country","description":"Gregory Peck stars as a sea captain who moves way out West to marry Carroll Baker and become part of the ranch owned by her father (Charles Bickford). But he discovers that daddy's top hand (Charlton Heston) carries a torch for Baker and doesn't particularly like Peck stepping into his place. Peck also finds himself caught in the midst of a power struggle between Bickford and his surly neighbor, Burl Ives (and his reprehensibly bullying son, Chuck Connors). This long, sprawling tale works becaus","id":"12501","runtime":165,"imdbId":"tt0051411","version":112,"lastModified":"1301908303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d04\/4bc9395a017a3c57fe017d04\/the-big-country-mid.jpg","genre":"Drama","title":"The Big Country","releaseDate":-355104000000,"language":"en","type":"Movie","_key":"53205"} +{"label":"Silkwood","description":"The story of Karen Silkwood, a metallurgy worker at a plutonium processing plant who was purposefully contaminated, psychologically tortured and possibly murdered to prevent her from exposing blatant worker safety violations at the plant.","id":"12502","runtime":131,"imdbId":"tt0086312","version":112,"lastModified":"1301903045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc9395b017a3c57fe017d0e\/silkwood-mid.jpg","genre":"Drama","title":"Silkwood","releaseDate":440208000000,"language":"en","type":"Movie","_key":"53206"} +{"label":"Under Fire","description":"No overview found.","id":"12503","runtime":128,"imdbId":"tt0086510","version":111,"lastModified":"1301904354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54b\/4d62a5dd7b9aa154cf00654b\/under-fire-mid.jpg","studio":"Lions Gate Films","genre":"Action","title":"Under Fire","releaseDate":435542400000,"language":"en","type":"Movie","_key":"53207"} +{"label":"Alma Martinez","version":15,"id":"162169","lastModified":"1301903436000","name":"Alma Martinez","type":"Person","_key":"53208"} +{"label":"Le marginal","description":"No overview found.","id":"12504","runtime":100,"imdbId":"tt0085900","version":44,"lastModified":"1301903879000","genre":"Action","title":"Le marginal","releaseDate":435974400000,"language":"en","type":"Movie","_key":"53209"} +{"label":"Carlos Sotto Mayor","version":20,"id":"72560","lastModified":"1301901683000","name":"Carlos Sotto Mayor","type":"Person","_key":"53210"} +{"label":"Little Nikita","description":"Roy Parmenter is an FBI agent in San Diego; 20 years ago his partner was killed by a Soviet spy, nicknamed Scuba, still at large. Scuba is now trying to extort the Soviets; to prove he's serious, he's killing their agents one by one, including \"sleepers,\" agents under deep cover awaiting orders. Roy interviews a high school lad, Jeff Grant, an applicant to the Air Force Academy. In a routine background check, Roy discovers that Jeff's parents are sleepers. He must see if Jeff is also a spy, conf","id":"12505","runtime":98,"imdbId":"tt0095532","version":145,"lastModified":"1301977375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83b\/4d9ab53e7b9aa164c000083b\/little-nikita-mid.jpg","genre":"Drama","title":"Little Nikita","releaseDate":574646400000,"language":"en","type":"Movie","_key":"53211"} +{"label":"Cry Freedom","description":"A dramatic story, based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal journalist in South Africa who begins to follow the activities of Stephen Biko, a courageous and outspoken black anti-apartheid activist.","id":"12506","runtime":157,"imdbId":"tt0092804","version":116,"lastModified":"1301904386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d28\/4bc9395e017a3c57fe017d28\/cry-freedom-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Cry Freedom","releaseDate":563068800000,"language":"en","type":"Movie","_key":"53212"} +{"label":"The Hardy Men","description":"No overview found.","id":"12507","runtime":0,"imdbId":"tt0963174","version":35,"lastModified":"1301908565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2d\/4bc9395e017a3c57fe017d2d\/the-hardy-men-mid.jpg","title":"The Hardy Men","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"53213"} +{"label":"Rock Star","description":"Rock Star tells the story of Chris Cole and a rock band called Steel Dragon. Cole is a photocopier technician by day, and the lead singer of a Steel Dragon tribute band called \"Blood Pollution\" by night.Internal struggles between the Steel Dragon band members culminate with the firing of the lead singer, Bobby Beers and the starting of recruitment sessions to find a new vocalist.","id":"12508","runtime":105,"imdbId":"tt0202470","trailer":"http:\/\/www.youtube.com\/watch?v=1810","version":137,"lastModified":"1301901939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3a\/4bc93962017a3c57fe017d3a\/rock-star-mid.jpg","genre":"Comedy","title":"Rock Star","releaseDate":999561600000,"language":"en","type":"Movie","_key":"53214"} +{"label":"Jason Bonham","version":20,"id":"72576","lastModified":"1301901872000","name":"Jason Bonham","type":"Person","_key":"53215"} +{"label":"Zakk Wylde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19a\/4d72ad5b5e73d62af000019a\/zakk-wylde-profile.jpg","biography":"<B>Zakk Wylde<\/B> (born <B>Jeffrey Phillip Wielandt<\/B>; January 14, 1967 in <A title=\"Bayonne, New Jersey\" href=\"\/wiki\/Bayonne,_New_Jersey\"><FONT color=#0645ad>Bayonne<\/FONT><\/A>, <A href=\"\/wiki\/New_Jersey\"><FONT color=#0645ad>New Jersey<\/FONT><\/A>) is an American musician, songwriter, and occasional actor who is best known as the former <A href=\"\/wiki\/Guitarist\"><FONT color=#0645ad>guitarist<\/FONT><\/A> for <A href=\"\/wiki\/Ozzy_Osbourne\"><FONT color=#0645ad>Ozzy Osbourne<\/FONT><\/A> and founder o","version":32,"birthday":"-93574800000","id":"72577","birthplace":"Bayonne, New Jersey, USA","lastModified":"1301901945000","name":"Zakk Wylde","type":"Person","_key":"53216"} +{"label":"Jeff Pilson","version":20,"id":"72578","lastModified":"1301902076000","name":"Jeff Pilson","type":"Person","_key":"53217"} +{"label":"Pollock","description":"A film about the life and career of the American painter, Jackson Pollock.","id":"12509","runtime":122,"imdbId":"tt0183659","version":200,"lastModified":"1301905113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4c8ed9867b9aa1768a00006d\/pollock-mid.jpg","genre":"Drama","title":"Pollock","releaseDate":968198400000,"language":"en","type":"Movie","_key":"53218"} +{"label":"David Leary","version":20,"id":"72580","lastModified":"1301902076000","name":"David Leary","type":"Person","_key":"53219"} +{"label":"Au-del\u00e0 de Gibraltar","description":"No overview found.","id":"12510","runtime":105,"imdbId":"tt0297750","version":26,"lastModified":"1300979474000","studio":"Saga Film","title":"Au-del\u00e0 de Gibraltar","releaseDate":1002672000000,"language":"en","type":"Movie","_key":"53220"} +{"label":"Avanim","description":"No overview found.","id":"12511","runtime":107,"imdbId":"tt0362427","version":61,"lastModified":"1301014670000","genre":"Drama","title":"Avanim","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53221"} +{"label":"The Commissioner","description":"John Hurt stars as a scandal-hit member of parliament, dispatched to the political backwaters of the European Commission in Brussels as penance for his failures. However, once there he stumbles upon a chemical weapons outrage that points to a sinister political-industrial conspiracy.","id":"12512","runtime":108,"imdbId":"tt0120640","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-comissioner","version":224,"lastModified":"1300979475000","title":"The Commissioner","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53222"} +{"label":"Rosana Pastor","version":28,"id":"125486","lastModified":"1301902469000","name":"Rosana Pastor","type":"Person","_key":"53223"} +{"label":"Marie-Jo et ses deux amours","description":"No overview found.","id":"12513","runtime":124,"imdbId":"tt0293401","homepage":"http:\/\/www.diaphana.fr\/mariejo\/","version":73,"lastModified":"1301904713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/842\/4d868de35e73d60fe5002842\/marie-jo-et-ses-deux-amours-mid.jpg","studio":"Agat Films","genre":"Drama","title":"Marie-Jo et ses deux amours","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"53224"} +{"label":"Robert Gu\u00e9diguian","version":26,"id":"5069","lastModified":"1301901228000","name":"Robert Gu\u00e9diguian","type":"Person","_key":"53225"} +{"label":"Ariane Ascaride","version":28,"id":"72590","lastModified":"1301901950000","name":"Ariane Ascaride","type":"Person","_key":"53226"} +{"label":"G\u00e9rard Meylan","version":21,"id":"72591","lastModified":"1301902176000","name":"G\u00e9rard Meylan","type":"Person","_key":"53227"} +{"label":"Yann Tr\u00e9gou\u00ebt","version":24,"id":"72592","lastModified":"1301901477000","name":"Yann Tr\u00e9gou\u00ebt","type":"Person","_key":"53228"} +{"label":"Fr\u00e9d\u00e9rique Bonnal","version":21,"id":"72593","lastModified":"1301902330000","name":"Fr\u00e9d\u00e9rique Bonnal","type":"Person","_key":"53229"} +{"label":"Souhade Temimi","version":21,"id":"72594","lastModified":"1301902330000","name":"Souhade Temimi","type":"Person","_key":"53230"} +{"label":"Die Scheinheiligen","description":"No overview found.","id":"12514","runtime":80,"imdbId":"tt0296842","version":93,"lastModified":"1301906760000","genre":"Comedy","title":"Die Scheinheiligen","releaseDate":994032000000,"language":"en","type":"Movie","_key":"53231"} +{"label":"Johannes Demmel","version":20,"id":"72595","lastModified":"1301902389000","name":"Johannes Demmel","type":"Person","_key":"53232"} +{"label":"Michael Emina","version":20,"id":"72596","lastModified":"1301902192000","name":"Michael Emina","type":"Person","_key":"53233"} +{"label":"Andreas Lechner","version":20,"id":"72597","lastModified":"1301902379000","name":"Andreas Lechner","type":"Person","_key":"53234"} +{"label":"Wolfgang Fischer","version":20,"id":"38984","lastModified":"1301902011000","name":"Wolfgang Fischer","type":"Person","_key":"53235"} +{"label":"Alfred Jaschke","version":20,"id":"72598","lastModified":"1301902348000","name":"Alfred Jaschke","type":"Person","_key":"53236"} +{"label":"Werner Rom","version":20,"id":"72599","lastModified":"1301902348000","name":"Werner Rom","type":"Person","_key":"53237"} +{"label":"Les suspects","description":"No overview found.","id":"12515","runtime":0,"imdbId":"tt0072230","version":75,"lastModified":"1301418303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/609\/4d1108805e73d6082e000609\/les-suspects-mid.jpg","studio":"CanWest MediaWorks","title":"Les suspects","releaseDate":154742400000,"language":"en","type":"Movie","_key":"53238"} +{"label":"Michel Wyn","version":16,"id":"145102","lastModified":"1301902475000","name":"Michel Wyn","type":"Person","_key":"53239"} +{"label":"Marco Perrin","version":15,"id":"145103","lastModified":"1301902641000","name":"Marco Perrin","type":"Person","_key":"53240"} +{"label":"Giampiero Albertini","version":22,"id":"83147","lastModified":"1301902691000","name":"Giampiero Albertini","type":"Person","_key":"53241"} +{"label":"Cirylle Spiga","version":15,"id":"145104","lastModified":"1301902469000","name":"Cirylle Spiga","type":"Person","_key":"53242"} +{"label":"Akira Kurosawa's Dreams","description":"This is essentially eight separate short films, with some overlaps in characters and thematic material - that of man's relationship with his environment. 'Sunshine Through The Rain' - 'The Peach Orchard' - 'The Blizzard' - 'Crows' - 'Mount Fuji in Red' - The Weeping Demon' - 'Village of the Watermills'","id":"12516","runtime":119,"imdbId":"tt0100998","version":165,"lastModified":"1301903925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4c\/4bc93964017a3c57fe017d4c\/yume-mid.jpg","genre":"Drama","title":"Akira Kurosawa's Dreams","releaseDate":642384000000,"language":"en","type":"Movie","_key":"53243"} +{"label":"Mitsuko Baisho","version":28,"id":"72605","lastModified":"1301901364000","name":"Mitsuko Baisho","type":"Person","_key":"53244"} +{"label":"Toshie Negishi","version":23,"id":"72606","lastModified":"1301901837000","name":"Toshie Negishi","type":"Person","_key":"53245"} +{"label":"Mieko Harada","version":24,"id":"72607","lastModified":"1301901839000","name":"Mieko Harada","type":"Person","_key":"53246"} +{"label":"Calvaire","description":"A few days before Christmas, traveling entertainer Marc Stevens is stuck at nightfall in a remote wood in the swampy Hautes Fagnes region of Li\u00e8ge, his van conked out. An odd chap who's looking for a lost dog leads Marc to a shuttered inn...","id":"12517","runtime":0,"imdbId":"tt0407621","version":110,"lastModified":"1301904395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5a\/4bc93966017a3c57fe017d5a\/calvaire-mid.jpg","title":"Calvaire","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"53247"} +{"label":"Fabrice Du Welz","version":21,"id":"72611","lastModified":"1301901676000","name":"Fabrice Du Welz","type":"Person","_key":"53248"} +{"label":"Brigitte Lahaie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9c5\/4d8da5b87b9aa167550009c5\/brigitte-lahaie-profile.jpg","version":38,"id":"90376","lastModified":"1301901780000","name":"Brigitte Lahaie","type":"Person","_key":"53249"} +{"label":"Honeymoon in Vegas","description":"On her deathbed, a mother makes her son promise never to get married, which scars him with psychological blocks to a commitment with his girlfriend. They finally decide to tie the knot in Vegas, but a wealthy gambler arranges for the man to lose $65K in a poker game and offers to clear the debt for a weekend with his fianc\u00e9e.","id":"12518","runtime":96,"imdbId":"tt0104438","trailer":"http:\/\/www.youtube.com\/watch?v=qgo99yBppj0","version":155,"lastModified":"1301904486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d64\/4bc93966017a3c57fe017d64\/honeymoon-in-vegas-mid.jpg","genre":"Comedy","title":"Honeymoon in Vegas","releaseDate":714960000000,"language":"en","type":"Movie","_key":"53250"} +{"label":"Sirens","description":"A young reverend and his wife are on the way from England to Australia to minister to their flock. The bishop asks him to visit an eccentric artist prone to sexual depictions and requests that he voluntarily withdraw a controversial work call \"Crucified Venus\" from his show.","id":"12519","runtime":98,"imdbId":"tt0111201","version":91,"lastModified":"1301903974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6d\/4bc93967017a3c57fe017d6d\/sirens-mid.jpg","genre":"Comedy","title":"Sirens","releaseDate":762739200000,"language":"en","type":"Movie","_key":"53251"} +{"label":"John Duigan","version":41,"id":"72624","lastModified":"1301901559000","name":"John Duigan","type":"Person","_key":"53252"} +{"label":"The Last Supper","description":"A group of five graduate student roommates in Iowa fall into a descent that leads to murder after an accidental meeting leads them to search out extremists in the local community.","id":"12520","runtime":92,"imdbId":"tt0113613","version":144,"lastModified":"1301904146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d72\/4bc93967017a3c57fe017d72\/the-last-supper-mid.jpg","genre":"Comedy","title":"The Last Supper","releaseDate":813110400000,"language":"en","type":"Movie","_key":"53253"} +{"label":"Jonathan Penner","version":21,"id":"72618","lastModified":"1301901991000","name":"Jonathan Penner","type":"Person","_key":"53254"} +{"label":"Stacy Title","version":21,"id":"72619","lastModified":"1301901611000","name":"Stacy Title","type":"Person","_key":"53255"} +{"label":"Shocker","description":"After being sent to the electric chair, a serial killer uses electricity to come back from the dead and carry out his vengeance on the football player who turned him in to the police.","id":"12521","runtime":109,"imdbId":"tt0098320","version":217,"lastModified":"1301904232000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7f\/4bc9396b017a3c57fe017d7f\/shocker-mid.jpg","studio":"Alive Films","genre":"Comedy","title":"Shocker","releaseDate":625449600000,"language":"en","type":"Movie","_key":"53256"} +{"label":"Camille Cooper","version":22,"id":"72612","lastModified":"1301902363000","name":"Camille Cooper","type":"Person","_key":"53257"} +{"label":"R\u00e4uber Knei\u00dfl","description":"No overview found.","id":"12523","runtime":0,"imdbId":"tt1151827","version":28,"lastModified":"1301906726000","genre":"Drama","title":"R\u00e4uber Knei\u00dfl","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53258"} +{"label":"Titus","description":"Titus Andronicus returns from the wars and sees his sons and daughters taken from him, one by one. Shakespeare's goriest and earliest tragedy.","id":"12524","runtime":162,"imdbId":"tt0120866","version":159,"lastModified":"1301903887000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d90\/4bc9396d017a3c57fe017d90\/titus-mid.jpg","genre":"Drama","title":"Titus","releaseDate":946166400000,"language":"en","tagline":"If you think you know Shakespeare... Think again.","type":"Movie","_key":"53259"} +{"label":"Critters 4","description":"Just before bounty hunter Charile triggers his gun to destroy the last two Critter-eggs, he gets a message that it would be illegal to extinguish the race from the galaxy. He's sent a transporter where he puts the eggs - unfortunately the transporter takes him with it and then gets lost in space.","id":"12525","runtime":100,"imdbId":"tt0101628","version":85,"lastModified":"1301902285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d99\/4bc9396d017a3c57fe017d99\/critters-4-mid.jpg","genre":"Comedy","title":"Critters 4","releaseDate":662688000000,"language":"en","type":"Movie","_key":"53260"} +{"label":"Paul Whitthorne","version":20,"id":"72633","lastModified":"1301901722000","name":"Paul Whitthorne","type":"Person","_key":"53261"} +{"label":"Rupert Harvey","version":35,"id":"35087","lastModified":"1301901330000","name":"Rupert Harvey","type":"Person","_key":"53262"} +{"label":"Bug","description":"Having escaped her abusive ex-husband Goss, recently released from state prison, Agnes, a lonely waitress with a tragic past moves into a sleazy motel. Her lesbian co-worker R.C. introduces her to Peter, paranoiac drifter and they begin a tentative romance. However, things aren't always as they appear and Agnes is about to experience a claustrophobic nightmare reality as the bugs begin to arrive..","id":"12526","runtime":102,"imdbId":"tt0470705","version":174,"lastModified":"1301902578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da7\/4bc9396e017a3c57fe017da7\/bug-mid.jpg","genre":"Horror","title":"Bug","releaseDate":1147996800000,"language":"en","tagline":"First they send in their drone... Then they find their queen.","type":"Movie","_key":"53263"} +{"label":"Neil Bergeron","version":21,"id":"72636","lastModified":"1301902298000","name":"Neil Bergeron","type":"Person","_key":"53264"} +{"label":"Bob Neill","version":23,"id":"72637","lastModified":"1301901604000","name":"Bob Neill","type":"Person","_key":"53265"} +{"label":"Fresa y chocolate","description":"Diego, a cultivated, homosexual and skeptical young man, falls in love with a young heterosexual communist full of prejudices and doctrinary ideas. First come rejection and suspicion, but also fascination. Fresa y chocolate is the story of a great friendship, that is, a great love between two men, which overcomes incomprehension and intolerance.","id":"12527","runtime":108,"imdbId":"tt0106966","version":97,"lastModified":"1301903394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/277\/4cd69c467b9aa11b26000277\/fresa-y-chocolate-mid.jpg","genre":"Comedy","title":"Fresa y chocolate","releaseDate":761011200000,"language":"en","type":"Movie","_key":"53266"} +{"label":"Vladimir Cruz","version":21,"id":"72642","lastModified":"1301901872000","name":"Vladimir Cruz","type":"Person","_key":"53267"} +{"label":"Mirta Ibarra","version":20,"id":"72644","lastModified":"1301902076000","name":"Mirta Ibarra","type":"Person","_key":"53268"} +{"label":"Francisco Gattorno","version":20,"id":"72645","lastModified":"1301902075000","name":"Francisco Gattorno","type":"Person","_key":"53269"} +{"label":"Juan Carlos Tab\u00edo","version":22,"id":"72647","lastModified":"1301901722000","name":"Juan Carlos Tab\u00edo","type":"Person","_key":"53270"} +{"label":"Tom\u00e1s Guti\u00e9rrez Alea","version":20,"id":"72646","lastModified":"1301901722000","name":"Tom\u00e1s Guti\u00e9rrez Alea","type":"Person","_key":"53271"} +{"label":"Southern Comfort","description":"A squad of National Guards on an isolated weekend exercise in the Louisiana swamp must fight for their lives when they anger local Cajuns by stealing their canoes. Without live ammunition and in a strange country, their experience begins to mirror the Vietnam experience.","id":"12528","runtime":105,"imdbId":"tt0083111","version":90,"lastModified":"1301905050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbe\/4bc93973017a3c57fe017dbe\/southern-comfort-mid.jpg","genre":"Action","title":"Southern Comfort","releaseDate":370224000000,"language":"en","type":"Movie","_key":"53272"} +{"label":"Franklyn Seales","version":20,"id":"72658","lastModified":"1301901871000","name":"Franklyn Seales","type":"Person","_key":"53273"} +{"label":"La Collina degli stivali","description":"No overview found.","id":"12529","runtime":100,"imdbId":"tt0064175","version":51,"lastModified":"1301903473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d1\/4caa408d5e73d643eb0006d1\/la-collina-degli-stivali-mid.jpg","genre":"Comedy","title":"La Collina degli stivali","releaseDate":-1036800000,"language":"en","type":"Movie","_key":"53274"} +{"label":"Glauco Onorato","version":24,"id":"72660","lastModified":"1301901770000","name":"Glauco Onorato","type":"Person","_key":"53275"} +{"label":"Alberto Dell'Acqua","version":20,"id":"72661","lastModified":"1301902308000","name":"Alberto Dell'Acqua","type":"Person","_key":"53276"} +{"label":"Nazzareno Zamperla","version":21,"id":"72662","lastModified":"1301901991000","name":"Nazzareno Zamperla","type":"Person","_key":"53277"} +{"label":"Avanti!","description":"A successful businessman goes to Italy to arrange for the return of his tycoon-father's body only to discover dad died with his mistress of long standing.","id":"12530","runtime":140,"imdbId":"tt0068240","version":299,"lastModified":"1301903094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd3\/4bc93976017a3c57fe017dd3\/avanti-mid.jpg","genre":"Comedy","title":"Avanti!","releaseDate":93398400000,"language":"en","type":"Movie","_key":"53278"} +{"label":"Franco Angrisano","version":21,"id":"72664","lastModified":"1301902075000","name":"Franco Angrisano","type":"Person","_key":"53279"} +{"label":"L'appartement","description":"A stylish suspense thriller that confounds the audience while presenting them with an extraordinary and elusive mystery. Max is a former playboy who has decided to settle down by marrying his current love, Muriel. However, during a business trip, Max catches a glimpse of the great lost love of his life, reviving his wanderlust and sending him off on a chase of the elusive Lisa, whom he had overheard suggesting to a friend that her lover, Daniel, had killed someone for her. Soon, Max is trying to","id":"12531","runtime":116,"imdbId":"tt0115561","version":82,"lastModified":"1301902881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de0\/4bc93977017a3c57fe017de0\/l-appartement-mid.jpg","studio":"Cecchi Gori Group Tiger Cinematografica","genre":"Drama","title":"L'appartement","releaseDate":844214400000,"language":"en","type":"Movie","_key":"53280"} +{"label":"Jean-Philippe \u00c9coffey","version":32,"id":"72666","lastModified":"1301901498000","name":"Jean-Philippe \u00c9coffey","type":"Person","_key":"53281"} +{"label":"Gilles Mimouni","version":22,"id":"72667","lastModified":"1301902075000","name":"Gilles Mimouni","type":"Person","_key":"53282"} +{"label":"Rottweiler","description":"No overview found.","id":"12532","runtime":95,"imdbId":"tt0371920","version":259,"lastModified":"1301904621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de9\/4bc93978017a3c57fe017de9\/rottweiler-mid.jpg","genre":"Horror","title":"Rottweiler","releaseDate":1101859200000,"language":"en","type":"Movie","_key":"53283"} +{"label":"William Miller","version":20,"id":"72672","lastModified":"1301901988000","name":"William Miller","type":"Person","_key":"53284"} +{"label":"Irene Montal\u00e0","version":20,"id":"72673","lastModified":"1301901995000","name":"Irene Montal\u00e0","type":"Person","_key":"53285"} +{"label":"Paulina G\u00e1lvez","version":20,"id":"72674","lastModified":"1301902004000","name":"Paulina G\u00e1lvez","type":"Person","_key":"53286"} +{"label":"Lolo Herrero","version":17,"id":"100657","lastModified":"1301903043000","name":"Lolo Herrero","type":"Person","_key":"53287"} +{"label":"Carambola, filotto... tutti in buca","description":"No overview found.","id":"12534","runtime":84,"imdbId":"tt0071277","version":40,"lastModified":"1301906062000","genre":"Comedy","title":"Carambola, filotto... tutti in buca","releaseDate":162259200000,"language":"en","type":"Movie","_key":"53288"} +{"label":"Gabriella Andreini","version":19,"id":"72676","lastModified":"1301901611000","name":"Gabriella Andreini","type":"Person","_key":"53289"} +{"label":"High Anxiety","description":"Dr. Richard Thorndyke arrives as new administrator of the Psychoneurotic Institute for the Very, VERY Nervous to discover some suspicious goings-on. When he's framed for murder, Dr. Thorndyke must confront his own psychiatric condition, \"high anxiety,\" in order to clear his name.","id":"12535","runtime":94,"imdbId":"tt0076141","version":177,"lastModified":"1302039366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df6\/4bc9397c017a3c57fe017df6\/high-anxiety-mid.jpg","genre":"Comedy","title":"High Anxiety","releaseDate":251856000000,"language":"en","type":"Movie","_key":"53290"} +{"label":"Home Alone 4: Taking Back the House","description":"Kevin McCallister's parents have split up. Now living with his mom, he decides to spend Christmas with his dad at the mansion of his father's rich girlfriend, Natalie. Meanwhile robber Marv Merchants, one of the villains from the first two movies, partners up with a new criminal named Vera to hit Natalie's mansion.","id":"12536","runtime":89,"imdbId":"tt0329200","version":107,"lastModified":"1301902289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/636\/4d3906987b9aa1614e000636\/taking-back-the-house-mid.jpg","genre":"Comedy","title":"Home Alone 4: Taking Back the House","releaseDate":1036281600000,"language":"en","type":"Movie","_key":"53291"} +{"label":"Mike Weinberg","version":24,"id":"72698","lastModified":"1301901360000","name":"Mike Weinberg","type":"Person","_key":"53292"} +{"label":"Clare Carey","version":28,"id":"72699","lastModified":"1301902136000","name":"Clare Carey","type":"Person","_key":"53293"} +{"label":"The French Lieutenant's Woman","description":"A film is being made of a story, set in 19th century England, about Charles, a biologist who's engaged to be married, but who falls in love with outcast Sarah. Sarah's melancholy makes her leave him after a short but passionate affair. Anna and Mike, who play the characters of Sarah and Charles in the film, also go through a relationship that runs parallel to that of their characters during the film's shooting.","id":"12537","runtime":124,"imdbId":"tt0082416","version":315,"lastModified":"1301904183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c3\/4ce579b05e73d60f700007c3\/the-french-lieutenant-s-woman-mid.jpg","genre":"Drama","title":"The French Lieutenant's Woman","releaseDate":365472000000,"language":"en","type":"Movie","_key":"53294"} +{"label":"Hilton McRae","version":24,"id":"72705","lastModified":"1301902375000","name":"Hilton McRae","type":"Person","_key":"53295"} +{"label":"Emily Morgan","version":21,"id":"72706","lastModified":"1301902075000","name":"Emily Morgan","type":"Person","_key":"53296"} +{"label":"Lynsey Baxter","version":22,"id":"72708","lastModified":"1301902251000","name":"Lynsey Baxter","type":"Person","_key":"53297"} +{"label":"Karel Reisz","version":27,"id":"72709","lastModified":"1301901981000","name":"Karel Reisz","type":"Person","_key":"53298"} +{"label":"Senseless","description":"A student gets his senses enhanced by an experimental drug. But abuse is not an option.","id":"12538","runtime":93,"imdbId":"tt0120820","version":123,"lastModified":"1301902856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1b\/4bc93980017a3c57fe017e1b\/senseless-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Senseless","releaseDate":887932800000,"language":"en","tagline":"A secret experiment gave him super senses. Then came the side-effects.","type":"Movie","_key":"53299"} +{"label":"La tulipe noire","description":"No overview found.","id":"12539","runtime":115,"imdbId":"tt0058692","version":54,"lastModified":"1301903726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89a\/4d3efacd5e73d622d100489a\/la-tulipe-noire-mid.jpg","genre":"Adventure","title":"La tulipe noire","releaseDate":-184377600000,"language":"en","type":"Movie","_key":"53300"} +{"label":"Adolfo Marsillach","version":22,"id":"72716","lastModified":"1301901996000","name":"Adolfo Marsillach","type":"Person","_key":"53301"} +{"label":"Bring It On Again","description":"When new students can't get onto their college cheerleading team, they form their own squad and prepare for a cheer off. ","id":"12540","runtime":90,"imdbId":"tt0334965","trailer":"http:\/\/www.youtube.com\/watch?v=Z7TfoHSXmPM","version":163,"lastModified":"1301902880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e24\/4bc93980017a3c57fe017e24\/bring-it-on-again-mid.jpg","genre":"Comedy","title":"Bring It On Again","releaseDate":1073952000000,"language":"en","type":"Movie","_key":"53302"} +{"label":"Anne Judson-Yager","version":23,"id":"72723","lastModified":"1301901475000","name":"Anne Judson-Yager","type":"Person","_key":"53303"} +{"label":"Le guignolo","description":"No overview found.","id":"12541","runtime":90,"imdbId":"tt0079252","version":48,"lastModified":"1301903478000","genre":"Action","title":"Le guignolo","releaseDate":322876800000,"language":"en","type":"Movie","_key":"53304"} +{"label":"Belly of the Beast","description":"Jake and Sunti go to meet Mongkol, the leader of the Abu Karaf. Mongkol confirms that ever since the terrorist attacks of September 11, 2001, Jantapan has worked to corner the narcotics and arms markets. Jake must engage in a battle that will put both his physical and spiritual powers to the ultimate test.","id":"12542","runtime":91,"imdbId":"tt0357474","version":136,"lastModified":"1301903813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4c80ef1f7b9aa118f4000051\/belly-of-the-beast-mid.jpg","genre":"Action","title":"Belly of the Beast","releaseDate":1072742400000,"language":"en","type":"Movie","_key":"53305"} +{"label":"Breaking News","description":"When an ambulatory TV news unit live broadcasts the embarrassing defeat of a police battalion by five bank robbers in a ballistic showdown, the credibility of the police force drops to a nadir. While on a separate investigation in a run-down building, detective Cheung discovers the hideout of the robbers. Cheung and his men have also entered the building, getting ready to take their foes out any minute. Meanwhile, in order to beat the media at its own game, Inspector Rebecca decides to turn the ","id":"12543","runtime":90,"imdbId":"tt0414931","version":257,"lastModified":"1301903682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3a\/4bc93984017a3c57fe017e3a\/daai-si-gin-mid.jpg","genre":"Action","title":"Breaking News","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"53306"} +{"label":"Kelly Chen","version":28,"id":"72730","lastModified":"1301901193000","name":"Kelly Chen","type":"Person","_key":"53307"} +{"label":"Nick Cheung (\u5f35\u5bb6\u8f1d)","version":53,"id":"72731","lastModified":"1301901166000","name":"Nick Cheung (\u5f35\u5bb6\u8f1d)","type":"Person","_key":"53308"} +{"label":"Siu-Fai Cheung","version":38,"id":"72732","lastModified":"1301901246000","name":"Siu-Fai Cheung","type":"Person","_key":"53309"} +{"label":"Respiro","description":"Grazia is a free-spirited mother-of-three married to shy fisherman Pietro and living on the idyllic but isolated island of Lampedusa in the Mediterranean Sea. She shows signs of manic depressive behavior \u2014 one moment she's laughing wildly and swimming half-naked in the sea, while the next she's curled in a ball on her bed. Out of her earshot, the adult members of her extended family vaguely discuss sending her to a facility of some sort in Northern Italy.","id":"12544","runtime":95,"imdbId":"tt0286516","version":92,"lastModified":"1301905956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4b\/4bc93985017a3c57fe017e4b\/respiro-mid.jpg","genre":"Comedy","title":"Respiro","releaseDate":1021680000000,"language":"en","type":"Movie","_key":"53310"} +{"label":"Veronica D'Agostino","version":22,"id":"72737","lastModified":"1301902019000","name":"Veronica D'Agostino","type":"Person","_key":"53311"} +{"label":"Jesus Christ Superstar","description":"Oscar-nominated film adaptation of the rock opera of the same name, based on the last weeks before the crucifixion of Jesus. The film was directed by Norman Jewison. Ted Neeley and Carl Anderson were nominated for two 1974 Golden Globe Award for their portrayals of Jesus and Judas, respectively.","id":"12545","runtime":108,"imdbId":"tt0070239","version":210,"lastModified":"1301902645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bb\/4d2389065e73d66b340042bb\/jesus-christ-superstar-mid.jpg","genre":"Drama","title":"Jesus Christ Superstar","releaseDate":114220800000,"language":"en","type":"Movie","_key":"53312"} +{"label":"Ted Neeley","version":20,"id":"72739","lastModified":"1301901776000","name":"Ted Neeley","type":"Person","_key":"53313"} +{"label":"Carl Anderson","version":20,"id":"72740","lastModified":"1301901644000","name":"Carl Anderson","type":"Person","_key":"53314"} +{"label":"Yvonne Elliman","version":20,"id":"72741","lastModified":"1301901944000","name":"Yvonne Elliman","type":"Person","_key":"53315"} +{"label":"Barry Dennen","version":21,"id":"72742","lastModified":"1301901944000","name":"Barry Dennen","type":"Person","_key":"53316"} +{"label":"Bride & Prejudice","description":"A Bollywood update of Jane Austen's classic tale. Mrs. Bakshi is eager to find suitable husbands for her four unmarried daughters. When the rich single gentlemen Balraj and Darcy come to visit, the Bakshis have high hopes, though circumstance and boorish opinions threaten to get in the way of romance.","id":"12546","runtime":107,"imdbId":"tt0361411","version":108,"lastModified":"1301902655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e61\/4bc93987017a3c57fe017e61\/bride-prejudice-mid.jpg","genre":"Comedy","title":"Bride & Prejudice","releaseDate":1097020800000,"language":"en","type":"Movie","_key":"53317"} +{"label":"Nadira Babbar","version":22,"id":"72745","lastModified":"1301901456000","name":"Nadira Babbar","type":"Person","_key":"53318"} +{"label":"The Shadow Dancer","description":"No overview found.","id":"12547","runtime":100,"imdbId":"tt0376181","version":93,"lastModified":"1301904228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a81\/4d24ca6d5e73d65c2d000a81\/the-shadow-dancer-mid.jpg","genre":"Comedy","title":"The Shadow Dancer","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"53319"} +{"label":"Armando Pucci","version":20,"id":"72746","lastModified":"1301902251000","name":"Armando Pucci","type":"Person","_key":"53320"} +{"label":"I Vitelloni","description":"The story concerns a group of five young men, 20-30 years of age, who lay about in the small provincial town of Rimini, drinking, carousing, trolling for women, or talking about the women that they dream about. The film's title, \"Vitelloni,\" means literally \"overgrown calves\" and fits these men to a tee. They're all single, unemployed, and still live with their mammas. They don't so much have dreams or ambitions as excuses and fantasies of bright futures that might materialize miraculously. In t","id":"12548","runtime":107,"imdbId":"tt0046521","version":209,"lastModified":"1301905191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4c44fce17b9aa15ddf000009\/i-vitelloni-mid.jpg","genre":"Drama","title":"I Vitelloni","releaseDate":-515980800000,"language":"en","type":"Movie","_key":"53321"} +{"label":"Riccardo Fellini","version":19,"id":"72926","lastModified":"1301902251000","name":"Riccardo Fellini","type":"Person","_key":"53322"} +{"label":"Leonora Ruffo","version":22,"id":"72927","lastModified":"1301901935000","name":"Leonora Ruffo","type":"Person","_key":"53323"} +{"label":"Olsen-bandens sidste stik","id":"12549","runtime":105,"imdbId":"tt0130156","version":59,"lastModified":"1301904010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e72\/4bc93988017a3c57fe017e72\/olsen-bandens-sidste-stik-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"Olsen-bandens sidste stik","releaseDate":913939200000,"language":"en","type":"Movie","_key":"53324"} +{"label":"Bj\u00f8rn Watt-Boolsen","version":20,"id":"72910","lastModified":"1301901871000","name":"Bj\u00f8rn Watt-Boolsen","type":"Person","_key":"53325"} +{"label":"Henrik Koefoed","version":20,"id":"72911","lastModified":"1301902320000","name":"Henrik Koefoed","type":"Person","_key":"53326"} +{"label":"Axel Str\u00f8bye","version":28,"id":"72912","lastModified":"1301901806000","name":"Axel Str\u00f8bye","type":"Person","_key":"53327"} +{"label":"Tom Hedegaard","version":19,"id":"72914","lastModified":"1301901871000","name":"Tom Hedegaard","type":"Person","_key":"53328"} +{"label":"Morten Arnfred","version":22,"id":"72913","lastModified":"1301901871000","name":"Morten Arnfred","type":"Person","_key":"53329"} +{"label":"Return of the Blind Dead","description":"No overview found.","id":"12550","runtime":91,"imdbId":"tt0068232","version":60,"lastModified":"1301903867000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/059\/4c3c07357b9aa1224d000059\/el-ataque-de-los-muertos-sin-ojos-mid.jpg","genre":"Horror","title":"Return of the Blind Dead","releaseDate":116812800000,"language":"en","type":"Movie","_key":"53330"} +{"label":"Esperanza Roy","version":23,"id":"72887","lastModified":"1301993689000","name":"Esperanza Roy","type":"Person","_key":"53331"} +{"label":"Frank Bra\u00f1a","version":36,"id":"72888","lastModified":"1301901983000","name":"Frank Bra\u00f1a","type":"Person","_key":"53332"} +{"label":"Jos\u00e9 Canalejas","version":26,"id":"72889","lastModified":"1301956672000","name":"Jos\u00e9 Canalejas","type":"Person","_key":"53333"} +{"label":"Loreta Tovar","version":23,"id":"72890","lastModified":"1301902130000","name":"Loreta Tovar","type":"Person","_key":"53334"} +{"label":"Ram\u00f3n Lillo","version":23,"id":"100317","lastModified":"1301902928000","name":"Ram\u00f3n Lillo","type":"Person","_key":"53335"} +{"label":"Lone Fleming","version":25,"id":"99573","lastModified":"1301903070000","name":"Lone Fleming","type":"Person","_key":"53336"} +{"label":"Jos\u00e9 Thelman","version":21,"id":"99558","lastModified":"1301902941000","name":"Jos\u00e9 Thelman","type":"Person","_key":"53337"} +{"label":"Juan Cazalilla","version":20,"id":"97666","lastModified":"1301902928000","name":"Juan Cazalilla","type":"Person","_key":"53338"} +{"label":"Betsab\u00e9 Ruiz","version":24,"id":"97663","lastModified":"1301902928000","name":"Betsab\u00e9 Ruiz","type":"Person","_key":"53339"} +{"label":"Marisol Delgado","version":20,"id":"99561","lastModified":"1301902480000","name":"Marisol Delgado","type":"Person","_key":"53340"} +{"label":"Francisco Sanz","version":21,"id":"100845","lastModified":"1301902941000","name":"Francisco Sanz","type":"Person","_key":"53341"} +{"label":"Ram\u00f3n Centenero","version":24,"id":"97667","lastModified":"1301902928000","name":"Ram\u00f3n Centenero","type":"Person","_key":"53342"} +{"label":"Amando de Ossorio","version":36,"id":"72891","lastModified":"1301902056000","name":"Amando de Ossorio","type":"Person","_key":"53343"} +{"label":"Hochzeit auf Immenhof","description":"Der Immenhof ist hoch verschuldet, Oma Jantzen und ihre beiden Enkelinen Dick und Dalli sind mit ihren Ponys zu Jochen von Roth gezogen, der ihre Enkelin Angela geheiratet hat. Doch Angela ist vor einem Jahr verstorben. Jochen von Roth versucht Geldgeber zu finden, um aus dem Immenhof ein Ponyhotel zu machen, doch er st\u00f6\u00dft nur auf verschlossene T\u00fcren. Als Ethelbert von den Pl\u00e4nen h\u00f6rt, versucht er seinen reichen Onkel Pankraz von der Gesch\u00e4ftsidee zu \u00fcberzeugen. Er kommt mit seiner Tochter anger","id":"12551","runtime":94,"imdbId":"tt0049318","version":46,"lastModified":"1301906097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a00\/4cf57c095e73d6299a000a00\/hochzeit-auf-immenhof-mid.jpg","genre":"Comedy","title":"Hochzeit auf Immenhof","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"53344"} +{"label":"Serengeti darf nicht sterben","description":"No overview found.","id":"12552","runtime":85,"imdbId":"tt0053268","version":47,"lastModified":"1301904470000","genre":"Documentary","title":"Serengeti darf nicht sterben","releaseDate":-332035200000,"language":"en","type":"Movie","_key":"53345"} +{"label":"Bernhard Grzimek","version":22,"id":"72874","lastModified":"1301901857000","name":"Bernhard Grzimek","type":"Person","_key":"53346"} +{"label":"Holger Hagen","version":20,"id":"26957","lastModified":"1301901780000","name":"Holger Hagen","type":"Person","_key":"53347"} +{"label":"Hermann Rockmann","version":20,"id":"72875","lastModified":"1301901780000","name":"Hermann Rockmann","type":"Person","_key":"53348"} +{"label":"Der Schut","description":"No overview found.","id":"12553","runtime":118,"imdbId":"tt0058553","version":64,"lastModified":"1301905828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4cabc0075e73d64dcf000145\/der-schut-mid.jpg","genre":"Adventure","title":"Der Schut","releaseDate":-169344000000,"language":"en","type":"Movie","_key":"53349"} +{"label":"Marianne Hold","version":19,"id":"72871","lastModified":"1301901871000","name":"Marianne Hold","type":"Person","_key":"53350"} +{"label":"Citizen X","description":"Based on the true story of a Russian serial killer who, over many years, claimed victim to over 50 people. His victims were mostly under the age of 17. In what was then a communists state, the police investigations were hampered by bureaucracy, incompetence and those in power. The story is told from the viewpoint of the detective in charge of the case.","id":"12554","runtime":105,"imdbId":"tt0112681","trailer":"http:\/\/www.youtube.com\/watch?v=20KiHIT6wu0","version":127,"lastModified":"1301902371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/450\/4d66f4c85e73d66a61001450\/citizen-x-mid.jpg","genre":"Crime","title":"Citizen X","releaseDate":793670400000,"language":"en","type":"Movie","_key":"53351"} +{"label":"Chris Gerolmo","version":25,"id":"18246","lastModified":"1301901839000","name":"Chris Gerolmo","type":"Person","_key":"53352"} +{"label":"I Served the King of England","description":"Jan D\u00edt\u011b has been released from a Czech prison just before the very end of his 15-year sentence. Settling in a town near the border, he occupies his time with rebuilding a deserted house, and recalling his past. His main wish in life was to be a millionaire. Jan begins his career as a frankfurter vendor, and slowly learns the power of money and the influence it exerts over people.","id":"12555","runtime":120,"imdbId":"tt0284363","homepage":"http:\/\/www.anglickykral.cz\/","version":141,"lastModified":"1301906725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9f\/4bc93990017a3c57fe017e9f\/obsluhoval-jsem-anglickeho-krale-mid.jpg","genre":"Comedy","title":"I Served the King of England","releaseDate":1166486400000,"language":"en","type":"Movie","_key":"53353"} +{"label":"Ivan Barnev","version":24,"id":"72791","lastModified":"1301902032000","name":"Ivan Barnev","type":"Person","_key":"53354"} +{"label":"Old\u0159ich Kaiser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ac\/4cffdbc05e73d629990057ac\/oldrich-kaiser-profile.jpg","version":27,"id":"72792","lastModified":"1301901338000","name":"Old\u0159ich Kaiser","type":"Person","_key":"53355"} +{"label":"Mari\u00e1n Labuda","version":24,"id":"72793","lastModified":"1301901777000","name":"Mari\u00e1n Labuda","type":"Person","_key":"53356"} +{"label":"Martin Huba","version":30,"id":"72794","lastModified":"1301901951000","name":"Martin Huba","type":"Person","_key":"53357"} +{"label":"Milan Lasica","version":29,"id":"30743","lastModified":"1301901576000","name":"Milan Lasica","type":"Person","_key":"53358"} +{"label":"Josef Abrh\u00e1m","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df3\/4cffd7d75e73d6299b005df3\/josef-abrham-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\u200bNarozen 14. prosince 1939 ve Zl\u00edn\u011b. Po dvou letech studia herectv\u00ed na V\u0160MU v Bratislav\u011b p\u0159e\u0161el na pra\u017eskou DAMU, kde absolvoval v roce 1962. Za\u010d\u00ednal v Divadle na Vinohradech, v t\u00e9\u017ee dob\u011b hostoval i na sc\u00e9n\u011b N\u00e1rodn\u00edho divadla. Po ukon\u010den\u00ed vojensk\u00e9 slu\u017eby nastoupil do vznikaj\u00edc\u00edho \u010cinohern\u00edho klubu, se kter\u00fdm je spjata st\u011b\u017eejn\u00ed etapa jeho divadeln\u00ed kari\u00e9ry. Roku 1992 p\u0159ijal anga\u017em\u00e1 v N\u00e1rodn\u00edm divadle, nicm\u00e9n\u011b po dvou","version":34,"birthday":"-948330000000","id":"72795","birthplace":"Zl\u00edn","lastModified":"1301901199000","name":"Josef Abrh\u00e1m","type":"Person","_key":"53359"} +{"label":"Ji\u0159\u00ed L\u00e1bus","version":34,"id":"72796","lastModified":"1301901851000","name":"Ji\u0159\u00ed L\u00e1bus","type":"Person","_key":"53360"} +{"label":"Jarom\u00edr Dulava","version":33,"id":"72797","lastModified":"1301901708000","name":"Jarom\u00edr Dulava","type":"Person","_key":"53361"} +{"label":"Ghosts of Girlfriends Past","description":"When notorious womanizer Connor Mead attends his brother Paul's wedding, he is forced to re-evaluate his behavior as he comes face-to-face with the ghosts of girlfriends past, present, and future, along with his deceased uncle. The experience changes his attitude and allows him to reconnect with his first and only love, Jenny.","id":"12556","runtime":100,"imdbId":"tt0821640","trailer":"http:\/\/www.youtube.com\/watch?v=HqlxWZNeWNk","homepage":"http:\/\/www.ghostsofgirlfriendspastmovie.com\/","version":210,"lastModified":"1302044295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb4\/4bc93996017a3c57fe017eb4\/ghosts-of-girlfriends-past-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Ghosts of Girlfriends Past","releaseDate":1241136000000,"language":"en","tagline":"You can't always run from your past.","type":"Movie","_key":"53362"} +{"label":"This Side of the Truth","description":"No overview found.","id":"12557","runtime":0,"imdbId":"tt1105299","version":213,"lastModified":"1301416545000","title":"This Side of the Truth","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"53363"} +{"label":"Das Jahr der ersten K\u00fcsse","description":"No overview found.","id":"12558","runtime":94,"imdbId":"tt0302671","version":32,"lastModified":"1300979483000","title":"Das Jahr der ersten K\u00fcsse","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53364"} +{"label":"First Kid","description":"No overview found.","id":"12559","runtime":101,"imdbId":"tt0116311","version":157,"lastModified":"1301903174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d2\/4d0e3fe65e73d6371c0015d2\/first-kid-mid.jpg","genre":"Comedy","title":"First Kid","releaseDate":841363200000,"language":"en","type":"Movie","_key":"53365"} +{"label":"Brock Pierce","version":21,"id":"72862","lastModified":"1301902075000","name":"Brock Pierce","type":"Person","_key":"53366"} +{"label":"Blake Boyd","version":20,"id":"72863","lastModified":"1301901722000","name":"Blake Boyd","type":"Person","_key":"53367"} +{"label":"The Big Chill","description":"Kevin Kline and Glenn Close star as Harold and Sarah Cooper, a couple whose marital troubles are put on hold while they host an unhappy reunion of former college pals gathered for the funeral of one of their own, a suicide victim named Alex. As the weekend unfolds, the friends catch up with each other, play the music of their youth, reminisce, smoke marijuana, and pair off with each other.","id":"12560","runtime":105,"imdbId":"tt0085244","trailer":"http:\/\/www.youtube.com\/watch?v=O19k-YtwXTg","version":199,"lastModified":"1301903736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4ce847967b9aa17c8c0002b8\/the-big-chill-mid.jpg","genre":"Drama","title":"The Big Chill","releaseDate":431913600000,"language":"en","type":"Movie","_key":"53368"} +{"label":"James Gillis","version":18,"id":"133577","lastModified":"1301902539000","name":"James Gillis","type":"Person","_key":"53369"} +{"label":"Ken Place","version":17,"id":"133578","lastModified":"1301902485000","name":"Ken Place","type":"Person","_key":"53370"} +{"label":"Ira Stiltner","version":18,"id":"133579","lastModified":"1301902535000","name":"Ira Stiltner","type":"Person","_key":"53371"} +{"label":"Meg Kasdan","version":17,"id":"133580","lastModified":"1301902473000","name":"Meg Kasdan","type":"Person","_key":"53372"} +{"label":"Patricia Gaul","version":17,"id":"133581","lastModified":"1301902424000","name":"Patricia Gaul","type":"Person","_key":"53373"} +{"label":"Godzilla vs. Destoroyah","description":"The aftermath of the Oxygen Destroyer brings forth Destoroyah, a beast intent on killing Godzilla, who is on the verge of a nuclear meltdown.","id":"12561","runtime":103,"imdbId":"tt0113187","trailer":"http:\/\/www.youtube.com\/watch?v=2183","version":105,"lastModified":"1301903141000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edd\/4bc93999017a3c57fe017edd\/vs-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Godzilla vs. Destoroyah","releaseDate":818467200000,"language":"en","type":"Movie","_key":"53374"} +{"label":"Takur\u00f4 Tatsumi","version":18,"id":"72817","lastModified":"1301902026000","name":"Takur\u00f4 Tatsumi","type":"Person","_key":"53375"} +{"label":"Y\u00f4ko Ishino","version":20,"id":"72818","lastModified":"1301902010000","name":"Y\u00f4ko Ishino","type":"Person","_key":"53376"} +{"label":"Yasufumi Hayashi","version":24,"id":"72819","lastModified":"1301902005000","name":"Yasufumi Hayashi","type":"Person","_key":"53377"} +{"label":"Sayaka Osawa","version":20,"id":"72820","lastModified":"1301902371000","name":"Sayaka Osawa","type":"Person","_key":"53378"} +{"label":"Saburo Shinoda","version":20,"id":"72822","lastModified":"1301902198000","name":"Saburo Shinoda","type":"Person","_key":"53379"} +{"label":"A dos aguas","description":"No overview found.","id":"12562","runtime":0,"imdbId":"tt0290340","version":45,"lastModified":"1301907745000","title":"A dos aguas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53380"} +{"label":"Original Child Bomb","description":"Inspired by Thomas Merton's poem, ORIGINAL CHILD BOMB shows the human cost of nuclear weapons. The bombings of Hiroshima and Nagasaki are depicted through declassified footage, photographs, drawings and testimonies of mothers, brothers and soldiers. Ordinary people gaze upon the nuclear past and its terrifying present. ","id":"12563","runtime":57,"imdbId":"tt0415193","version":115,"lastModified":"1300979484000","genre":"Documentary","title":"Original Child Bomb","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53381"} +{"label":"Novemberkind","description":"No overview found.","id":"12565","runtime":95,"imdbId":"tt1176699","homepage":"http:\/\/www.novemberkind.net\/novemberkind.html","version":69,"lastModified":"1301905342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a6\/4d1348cb7b9aa1148e0010a6\/novemberkind-mid.jpg","studio":"Sommerhaus Filmproduktion","genre":"Drama","title":"Novemberkind","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"53382"} +{"label":"Christian Schwochow","version":20,"id":"72842","lastModified":"1301902160000","name":"Christian Schwochow","type":"Person","_key":"53383"} +{"label":"Ilja Pletner","version":20,"id":"72850","lastModified":"1301902025000","name":"Ilja Pletner","type":"Person","_key":"53384"} +{"label":"Christina Drechsler","version":20,"id":"72851","lastModified":"1301902376000","name":"Christina Drechsler","type":"Person","_key":"53385"} +{"label":"Zweier ohne","description":"No overview found.","id":"12567","runtime":93,"imdbId":"tt1075116","version":48,"lastModified":"1301905326000","studio":"Lichtblick Film","genre":"Drama","title":"Zweier ohne","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53386"} +{"label":"Peter Harting","version":20,"id":"72852","lastModified":"1301902330000","name":"Peter Harting","type":"Person","_key":"53387"} +{"label":"Brideshead Revisited","description":"Based on Evelyn Waugh's 1945 classic British novel, Brideshead Revisited is a poignant story of forbidden love and the loss of innocence set in England prior to the Second World War.","id":"12568","runtime":133,"imdbId":"tt0412536","trailer":"http:\/\/www.youtube.com\/watch?v=633","homepage":"http:\/\/bridesheadrevisited-themovie.com\/","version":238,"lastModified":"1301903737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef2\/4bc9399e017a3c57fe017ef2\/brideshead-revisited-mid.jpg","studio":"2 Entertain","genre":"Drama","title":"Brideshead Revisited","releaseDate":1216944000000,"language":"en","type":"Movie","_key":"53388"} +{"label":"Felicity Jones","version":33,"id":"72855","lastModified":"1301901252000","name":"Felicity Jones","type":"Person","_key":"53389"} +{"label":"Joseph Beattie","version":22,"id":"72856","lastModified":"1301902251000","name":"Joseph Beattie","type":"Person","_key":"53390"} +{"label":"Anna Madeley","version":23,"id":"72857","lastModified":"1302025753000","name":"Anna Madeley","type":"Person","_key":"53391"} +{"label":"Jonathan Cake","version":23,"id":"72858","lastModified":"1301902075000","name":"Jonathan Cake","type":"Person","_key":"53392"} +{"label":"Extract","description":"Dean (Bateman), the owner of a flower-extract plant, tries to contend with myriad personal and professional problems, such as his potentially unfaithful wife (Wiig) and employees who want to take advantage of him","id":"12569","runtime":92,"imdbId":"tt1225822","trailer":"http:\/\/www.youtube.com\/watch?v=KQrjlWZmM8E","homepage":"http:\/\/www.extract-the-movie.com\/","version":172,"lastModified":"1301905390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/010\/4d3a04c87b9aa16149003010\/extract-mid.jpg","studio":"3 Arts Entertainment","genre":"Comedy","title":"Extract","releaseDate":1252022400000,"language":"en","tagline":"Sticking it to the man has never looked so good.","type":"Movie","_key":"53393"} +{"label":"England!","description":"No overview found.","id":"12570","runtime":97,"imdbId":"tt0255140","version":99,"lastModified":"1301906107000","genre":"Drama","title":"England!","releaseDate":962323200000,"language":"en","type":"Movie","_key":"53394"} +{"label":"Anna Geislerov\u00e1","version":31,"id":"72865","lastModified":"1301902034000","name":"Anna Geislerov\u00e1","type":"Person","_key":"53395"} +{"label":"Rex Mundi","description":"No overview found.","id":"12571","runtime":0,"imdbId":"tt0871441","version":48,"lastModified":"1301904713000","studio":"Infinitum Nihil","genre":"Thriller","title":"Rex Mundi","releaseDate":1419984000000,"language":"en","type":"Movie","_key":"53396"} +{"label":"New York, I Love You","description":"New York, I Love You (a rendition of the French movie Paris, je t'aime) is a 2009 romance film starring Bradley Cooper, Shia LaBeouf, Natalie Portman, Anton Yelchin, Hayden Christensen, Orlando Bloom, Irrfan Khan, Rachel Bilson, Chris Cooper, Andy Garc\u00eda, Christina Ricci, U\u011fur Y\u00fccel, Robin Wright Penn, Julie Christie, Maggie Q, Ethan Hawke and James Caan.New York, I Love You is a collective work of eleven short films. It is an anthology film joining several love stories set in one of the most lo","id":"12572","runtime":110,"imdbId":"tt0808399","trailer":"http:\/\/www.youtube.com\/watch?v=959","version":233,"lastModified":"1301901649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4d\/4bc939a7017a3c57fe017f4d\/new-york-i-love-you-mid.jpg","genre":"Drama","title":"New York, I Love You","releaseDate":1233792000000,"language":"en","type":"Movie","_key":"53397"} +{"label":"Wen Jiang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/686\/4d09b15d7b9aa14415000686\/wen-jiang-profile.jpg","version":53,"id":"77301","lastModified":"1301901300000","name":"Wen Jiang","type":"Person","_key":"53398"} +{"label":"Randall Balsmeyer","version":20,"id":"15435","lastModified":"1301901461000","name":"Randall Balsmeyer","type":"Person","_key":"53399"} +{"label":"A Serious Man","description":"A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.","id":"12573","runtime":105,"imdbId":"tt1019452","trailer":"http:\/\/www.youtube.com\/watch?v=92IMQbcHGwE&hd=1","version":315,"lastModified":"1301907563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee5\/4d5091545e73d617b3003ee5\/a-serious-man-mid.jpg","studio":"Mike Zoss Productions","genre":"Comedy","title":"A Serious Man","releaseDate":1255046400000,"language":"en","type":"Movie","_key":"53400"} +{"label":"Michael Stuhlbarg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4c95dd657b9aa10d5700031e\/michael-stuhlbarg-profile.jpg","version":26,"id":"72873","lastModified":"1301901473000","name":"Michael Stuhlbarg","type":"Person","_key":"53401"} +{"label":"Fred Melamed","version":22,"id":"105303","lastModified":"1301901474000","name":"Fred Melamed","type":"Person","_key":"53402"} +{"label":"Sari Lennick","version":22,"id":"105304","lastModified":"1301901280000","name":"Sari Lennick","type":"Person","_key":"53403"} +{"label":"Aaron Wolff","version":22,"id":"105305","lastModified":"1301901611000","name":"Aaron Wolff","type":"Person","_key":"53404"} +{"label":"Jessica McManus","version":22,"id":"105306","lastModified":"1301901611000","name":"Jessica McManus","type":"Person","_key":"53405"} +{"label":"Cop and \u00bd","description":"No overview found.","id":"12574","runtime":97,"imdbId":"tt0106613","version":96,"lastModified":"1301906152000","genre":"Comedy","title":"Cop and \u00bd","releaseDate":733708800000,"language":"en","type":"Movie","_key":"53406"} +{"label":"Norman D. Golden II","version":20,"id":"72885","lastModified":"1301902183000","name":"Norman D. Golden II","type":"Person","_key":"53407"} +{"label":"The Long Hello and Short Goodbye","description":"No overview found.","id":"12575","runtime":95,"version":27,"lastModified":"1301906152000","genre":"Comedy","title":"The Long Hello and Short Goodbye","releaseDate":931996800000,"language":"en","type":"Movie","_key":"53408"} +{"label":"Deathwatch","description":"In the brutal trench fighting of the First World War, a British Infantry Company is separated from their regiment after a fierce battle. Attempting to return to their lines, the British soldiers discover what appears to be a bombed out German trench, abandoned except for a few dazed German soldiers. After killing most of the Germans, and taking one prisoner, the British company fortifies to hold the trench until reinforcements can arrive. Soon, however, strange things being to happen as a sense ","id":"12576","runtime":94,"imdbId":"tt0286306","version":328,"lastModified":"1301903255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f71\/4bc939ac017a3c57fe017f71\/deathwatch-mid.jpg","genre":"Drama","title":"Deathwatch","releaseDate":1033862400000,"language":"en","type":"Movie","_key":"53409"} +{"label":"Mike Downey","version":21,"id":"72897","lastModified":"1301901494000","name":"Mike Downey","type":"Person","_key":"53410"} +{"label":"Riders","description":"No overview found.","id":"12577","runtime":83,"imdbId":"tt0282552","version":131,"lastModified":"1301903974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7a\/4bc939ad017a3c57fe017f7a\/riders-mid.jpg","genre":"Action","title":"Riders","releaseDate":1020816000000,"language":"en","type":"Movie","_key":"53411"} +{"label":"Deutschland im Herbst","description":"No overview found.","id":"12578","runtime":123,"imdbId":"tt0077427","version":110,"lastModified":"1301904671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fce\/4d233e095e73d66b30003fce\/deutschland-im-herbst-mid.jpg","genre":"Documentary","title":"Deutschland im Herbst","releaseDate":257731200000,"language":"en","type":"Movie","_key":"53412"} +{"label":"Alf Brustellin","version":25,"id":"72906","lastModified":"1301902075000","name":"Alf Brustellin","type":"Person","_key":"53413"} +{"label":"Hans Peter Cloos","version":25,"id":"72907","lastModified":"1301902251000","name":"Hans Peter Cloos","type":"Person","_key":"53414"} +{"label":"Beate Mainka-Jellinghaus","version":43,"id":"20554","lastModified":"1301901797000","name":"Beate Mainka-Jellinghaus","type":"Person","_key":"53415"} +{"label":"Maximiliane Mainka","version":27,"id":"69689","lastModified":"1301902331000","name":"Maximiliane Mainka","type":"Person","_key":"53416"} +{"label":"Edgar Reitz","version":25,"id":"72908","lastModified":"1301902250000","name":"Edgar Reitz","type":"Person","_key":"53417"} +{"label":"Peter Schubert","version":25,"id":"72909","lastModified":"1301902075000","name":"Peter Schubert","type":"Person","_key":"53418"} +{"label":"The Woman Next Door","description":"Madame Jouve, the narrator, tells the tragedy of Bernard and Mathilde.","id":"12579","runtime":106,"imdbId":"tt0082370","version":123,"lastModified":"1301902645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8a\/4d069d6e5e73d621a0003a8a\/la-femme-d-a-cote-mid.jpg","genre":"Drama","title":"The Woman Next Door","releaseDate":370656000000,"language":"en","type":"Movie","_key":"53419"} +{"label":"Mich\u00e8le Baumgartner","version":22,"id":"72925","lastModified":"1301901950000","name":"Mich\u00e8le Baumgartner","type":"Person","_key":"53420"} +{"label":"Izo","description":"Izo is an assassin in the service of a Tosa lord and Imperial supporter. After killing dozens of the Shogun's men, Izo is captured and crucified. Instead of being extinguished, his rage propels him through the space-time continuum to present-day Tokyo. Here Izo transforms himself into a new, improved killing machine.","id":"12580","runtime":128,"imdbId":"tt0377079","version":102,"lastModified":"1301905256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4c7b880f7b9aa176be0002a1\/izo-mid.jpg","genre":"Action","title":"Izo","releaseDate":1093046400000,"language":"en","type":"Movie","_key":"53421"} +{"label":"Kazuya Nakayama","version":21,"id":"72931","lastModified":"1301901685000","name":"Kazuya Nakayama","type":"Person","_key":"53422"} +{"label":"Ry\u00fbhei Matsuda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/904\/4d2762057b9aa134e0001904\/ry-hei-matsuda-profile.jpg","version":32,"id":"72932","lastModified":"1301901502000","name":"Ry\u00fbhei Matsuda","type":"Person","_key":"53423"} +{"label":"Ry\u00f4suke Miki","version":21,"id":"72933","lastModified":"1301902015000","name":"Ry\u00f4suke Miki","type":"Person","_key":"53424"} +{"label":"7 Days","description":"No overview found.","id":"12581","runtime":103,"imdbId":"tt1260396","trailer":"http:\/\/www.youtube.com\/watch?v=uZHQRkWkGfo","version":136,"lastModified":"1301418613000","studio":"Thaleia Productions","genre":"Drama","title":"7 Days","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"53425"} +{"label":"Without a Clue","description":"Sherlock Holmes is as dashing as ever, but with a little secret: Dr. Watson is the brains behind the operation. When Reginald Kincaid, the actor he has hired to play Holmes becomes insufferable, Watson fires him and tries to go out on his own, but finds that he has done too good a job building Holmes up in the public's mind.","id":"12582","runtime":107,"imdbId":"tt0096454","version":95,"lastModified":"1301903974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f90\/4bc939ae017a3c57fe017f90\/without-a-clue-mid.jpg","genre":"Comedy","title":"Without a Clue","releaseDate":593395200000,"language":"en","type":"Movie","_key":"53426"} +{"label":"Thom Eberhardt","version":36,"id":"68381","lastModified":"1301901671000","name":"Thom Eberhardt","type":"Person","_key":"53427"} +{"label":"Ginger Snaps Back: The Beginning","description":"No overview found.","id":"12583","runtime":94,"imdbId":"tt0365265","version":169,"lastModified":"1301903781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f99\/4bc939af017a3c57fe017f99\/ginger-snaps-back-the-beginning-mid.jpg","genre":"Drama","title":"Ginger Snaps Back: The Beginning","releaseDate":1089417600000,"language":"en","type":"Movie","_key":"53428"} +{"label":"Grant Harvey","version":26,"id":"72952","lastModified":"1301901815000","name":"Grant Harvey","type":"Person","_key":"53429"} +{"label":"The Shootist","description":"Afflicted with a terminal illness John Bernard Brooks, the last of the legendary gunfighters, quietly returns to Carson City for medical attention from his old friend Dr. Hostetler. Aware that his days are numbered, the troubled man seeks solace and peace in a boarding house run by a widow and her son.However, it is not Brooks' fate to die in peace, as he becomes embroiled in one last valiant battle.","id":"12584","runtime":100,"imdbId":"tt0075213","trailer":"http:\/\/www.youtube.com\/watch?v=yZs9Btf2ADw","version":176,"lastModified":"1301903682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dc\/4c0446fd017a3c7e870001dc\/the-shootist-mid.jpg","studio":"# Lexyn Productions","genre":"Action","title":"The Shootist","releaseDate":208569600000,"language":"en","tagline":"He's got to face a gunfight once more to live up to his legend once more. To win just one more time.","type":"Movie","_key":"53430"} +{"label":"Lemon Popsicle VIII","description":"No overview found.","id":"12585","runtime":90,"imdbId":"tt0096190","version":64,"lastModified":"1301904461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cd\/4d1c90597b9aa17a8b0004cd\/lemon-popsicle-viii-mid.jpg","genre":"Comedy","title":"Lemon Popsicle VIII","releaseDate":587865600000,"language":"en","type":"Movie","_key":"53431"} +{"label":"Dan Turgeman","version":20,"id":"73205","lastModified":"1301902371000","name":"Dan Turgeman","type":"Person","_key":"53432"} +{"label":"Elfi Eschke","version":20,"id":"73206","lastModified":"1301902183000","name":"Elfi Eschke","type":"Person","_key":"53433"} +{"label":"Dan Harden","version":20,"id":"73207","lastModified":"1301902174000","name":"Dan Harden","type":"Person","_key":"53434"} +{"label":"Sibylle Rauch","version":20,"id":"73209","lastModified":"1301902180000","name":"Sibylle Rauch","type":"Person","_key":"53435"} +{"label":"Bella","description":"An international soccer star (Eduardo Verastegui) is on his way to sign a multimillion dollar contract when something happens that brings his career to an abrupt end. A beautiful waitress (Tammy Blanchard), struggling to make it in New York City, discovers something about herself that she's unprepared for. In one irreversible moment, their lives are turned upside down...","id":"12586","runtime":91,"imdbId":"tt0482463","version":332,"lastModified":"1301903682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa2\/4bc939b2017a3c57fe017fa2\/bella-mid.jpg","genre":"Drama","title":"Bella","releaseDate":1157760000000,"language":"en","type":"Movie","_key":"53436"} +{"label":"Alejandro Gomez Monteverde","version":19,"id":"72960","lastModified":"1301901722000","name":"Alejandro Gomez Monteverde","type":"Person","_key":"53437"} +{"label":"Ali Landry","version":22,"id":"72984","lastModified":"1301901430000","name":"Ali Landry","type":"Person","_key":"53438"} +{"label":"Manny Perez","version":24,"id":"72983","lastModified":"1302060400000","name":"Manny Perez","type":"Person","_key":"53439"} +{"label":"Lukas Behnken","version":20,"id":"72986","lastModified":"1301901812000","name":"Lukas Behnken","type":"Person","_key":"53440"} +{"label":"Tawny Cypress","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64f\/4bfad90f017a3c703100064f\/tawny-cypress-profile.jpg","version":19,"id":"34066","lastModified":"1301901722000","name":"Tawny Cypress","type":"Person","_key":"53441"} +{"label":"Michael Chin","version":20,"id":"72987","lastModified":"1301902176000","name":"Michael Chin","type":"Person","_key":"53442"} +{"label":"Ewa Da Cruz","version":19,"id":"72990","lastModified":"1301901722000","name":"Ewa Da Cruz","type":"Person","_key":"53443"} +{"label":"Hudson Cooper","version":19,"id":"72989","lastModified":"1301901611000","name":"Hudson Cooper","type":"Person","_key":"53444"} +{"label":"Dominic Colon","version":20,"id":"72988","lastModified":"1301901674000","name":"Dominic Colon","type":"Person","_key":"53445"} +{"label":"Sara Dawson","version":20,"id":"72993","lastModified":"1301901580000","name":"Sara Dawson","type":"Person","_key":"53446"} +{"label":"Michael Mosley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a2\/4cdc6c3b7b9aa138010000a2\/michael-mosley-profile.jpg","version":37,"id":"72994","lastModified":"1302060488000","name":"Michael Mosley","type":"Person","_key":"53447"} +{"label":"Doug DeBeech","version":19,"id":"72992","lastModified":"1301901611000","name":"Doug DeBeech","type":"Person","_key":"53448"} +{"label":"Eduardo Ver\u00e1stegui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/470\/4d9265c27b9aa1199a000470\/eduardo-ver-stegui-profile.jpg","version":25,"id":"72968","lastModified":"1301901871000","name":"Eduardo Ver\u00e1stegui","type":"Person","_key":"53449"} +{"label":"Arachnid","description":"No overview found.","id":"12587","runtime":95,"imdbId":"tt0271972","version":105,"lastModified":"1301903525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b8\/4d4594f67b9aa15bbb0076b8\/arachnid-mid.jpg","genre":"Adventure","title":"Arachnid","releaseDate":993772800000,"language":"en","type":"Movie","_key":"53450"} +{"label":"Chris Potter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4d9c4dbd7b9aa16d04001008\/chris-potter-profile.jpg","version":28,"id":"72997","lastModified":"1302081950000","name":"Chris Potter","type":"Person","_key":"53451"} +{"label":"Neus Asensi","version":20,"id":"72998","lastModified":"1301902147000","name":"Neus Asensi","type":"Person","_key":"53452"} +{"label":"Mein Freund aus Faro","description":"No overview found.","id":"12588","runtime":87,"imdbId":"tt1176686","homepage":"www.meinfreundausfaro.de","version":78,"lastModified":"1301903582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb3\/4bc939b4017a3c57fe017fb3\/mein-freund-aus-faro-mid.jpg","studio":"W\u00fcste Film West","genre":"Drama","title":"Mein Freund aus Faro","releaseDate":1200441600000,"language":"en","type":"Movie","_key":"53453"} +{"label":"Anjorka Strechel","version":19,"id":"73002","lastModified":"1301901871000","name":"Anjorka Strechel","type":"Person","_key":"53454"} +{"label":"Isolda Dychauk","version":19,"id":"73004","lastModified":"1301901871000","name":"Isolda Dychauk","type":"Person","_key":"53455"} +{"label":"Philipp Quest","version":19,"id":"73005","lastModified":"1301902250000","name":"Philipp Quest","type":"Person","_key":"53456"} +{"label":"Julischka Eichel","version":19,"id":"73006","lastModified":"1301902250000","name":"Julischka Eichel","type":"Person","_key":"53457"} +{"label":"Nana Neul","version":21,"id":"73007","lastModified":"1301901722000","name":"Nana Neul","type":"Person","_key":"53458"} +{"label":"Jimmy Neutron: Boy Genius","description":"Jimmy Neutron: Boy Genius is a 2001 computer-animated film based on a few five-minute animated shorts shown on Nickelodeon between the years 1999-2002. The television series was supposed to begin before the release of the film in 2000, but since there was not enough time, the animated shorts were created[citation needed]. The film was produced by Paramount Pictures and Nickelodeon Movies with O Entertainment and DNA Productions. It was produced using off-the-shelf software (messiah:studio and Li","id":"12589","runtime":83,"imdbId":"tt0268397","version":263,"lastModified":"1301903239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/638\/4d339bef7b9aa178a7007638\/jimmy-neutron-boy-genius-mid.jpg","studio":"Universal Cartoon Studios","genre":"Action","title":"Jimmy Neutron: Boy Genius","releaseDate":1008892800000,"language":"en","tagline":"He may be small, but he's got a big brain!","type":"Movie","_key":"53459"} +{"label":"Debi Derryberry","version":29,"id":"73016","lastModified":"1301901596000","name":"Debi Derryberry","type":"Person","_key":"53460"} +{"label":"Below","description":"In the dark silence of the sea during World War II, the submarine U.S.S. Tiger Shark prowls on what should be a routine rescue mission. But for the shell-shocked crew, trapped together in the sub's narrow corridors and constricted spaces, this is about to become a journey into the sensory delusions, mental deceptions and runaway fear that lurk just below the surface of the ocean.","id":"12590","runtime":105,"imdbId":"tt0276816","version":238,"lastModified":"1301903973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc9\/4bc939b6017a3c57fe017fc9\/below-mid.jpg","studio":"Dimension Films","genre":"History","title":"Below","releaseDate":1034294400000,"language":"en","tagline":"Six hundred feet beneath the surface terror runs deep","type":"Movie","_key":"53461"} +{"label":"Santa's Slay","description":"Santa Claus is actually a demon who lost a bet with an Angel, so he becomes the giver of toys and happiness. But when the bet is off, he returns to his evil ways.","id":"12591","runtime":78,"imdbId":"tt0393685","trailer":"http:\/\/www.youtube.com\/watch?v=1183","version":136,"lastModified":"1301902595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd2\/4bc939b9017a3c57fe017fd2\/santa-s-slay-mid.jpg","studio":"Media 8 Entertainment","genre":"Comedy","title":"Santa's Slay","releaseDate":1130198400000,"language":"en","type":"Movie","_key":"53462"} +{"label":"Robert Culp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/099\/4c45bb2e7b9aa15de0000099\/robert-culp-profile.jpg","version":30,"id":"73022","lastModified":"1301901431000","name":"Robert Culp","type":"Person","_key":"53463"} +{"label":"David Steiman","version":20,"id":"73023","lastModified":"1301902213000","name":"David Steiman","type":"Person","_key":"53464"} +{"label":"The Olson Gang Goes to War","description":"Some criminal EU ministers plan to turn Denmark into a gigantic fair ground and holiday paradise. Egon gets his hand at some important documents which could both make him rich and take care of Denmark's future.","id":"12592","runtime":107,"imdbId":"tt0078026","version":45,"lastModified":"1301903582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdb\/4bc939b9017a3c57fe017fdb\/olsen-banden-gar-i-krig-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olson Gang Goes to War","releaseDate":276480000000,"language":"en","type":"Movie","_key":"53465"} +{"label":"Fritz the Cat","description":"A hypocritical swinging college student cat raises hell in a satiric vision of various elements on the 1960's.","id":"12593","runtime":78,"imdbId":"tt0068612","trailer":"http:\/\/www.youtube.com\/watch?v=2152","version":135,"lastModified":"1301902330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fed\/4bc939bb017a3c57fe017fed\/fritz-the-cat-mid.jpg","genre":"Animation","title":"Fritz the Cat","releaseDate":71884800000,"language":"en","type":"Movie","_key":"53466"} +{"label":"Skip Hinnant","version":21,"id":"73029","lastModified":"1301901781000","name":"Skip Hinnant","type":"Person","_key":"53467"} +{"label":"Rosetta LeNoire","version":22,"id":"73030","lastModified":"1301901952000","name":"Rosetta LeNoire","type":"Person","_key":"53468"} +{"label":"John McCurry","version":22,"id":"73031","lastModified":"1301901494000","name":"John McCurry","type":"Person","_key":"53469"} +{"label":"Phil Seuling","version":21,"id":"73032","lastModified":"1301901952000","name":"Phil Seuling","type":"Person","_key":"53470"} +{"label":"Wishmaster 2: Evil Never Dies","description":"During a failed art heist, the Djinn is once again liberated. This time, to complete the 1001 wishes that he needs before the final 3, he lets himself go to prison, where he starts his evil reign twisting the hopes of the prisoners. Meanwhile, the woman who set him free accidentally, Morgana, tries to find a way to stop him, aided by a young priest.","id":"12594","runtime":96,"imdbId":"tt0156182","version":105,"lastModified":"1301902895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffb\/4bc939bc017a3c57fe017ffb\/wishmaster-2-evil-never-dies-mid.jpg","studio":"Artisan Entertainment","genre":"Horror","title":"Wishmaster 2: Evil Never Dies","releaseDate":921196800000,"language":"en","type":"Movie","_key":"53471"} +{"label":"Paul Johansson","version":31,"id":"73035","lastModified":"1301901228000","name":"Paul Johansson","type":"Person","_key":"53472"} +{"label":"Holly Fields","version":22,"id":"73036","lastModified":"1301902075000","name":"Holly Fields","type":"Person","_key":"53473"} +{"label":"Pushing Tin","description":"A feud develops between two air traffic controllers: one cocky and determined while the other is restrained and laid back, which inevitably affects their lives.","id":"12596","runtime":124,"imdbId":"tt0120797","version":177,"lastModified":"1301902909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00d\/4bc939bd017a3c57fe01800d\/pushing-tin-mid.jpg","genre":"Comedy","title":"Pushing Tin","releaseDate":924825600000,"language":"en","type":"Movie","_key":"53474"} +{"label":"Hellraiser: Inferno","description":"A shady police detective becomes embroiled in a strange world of murder, sadism and madness after being assigned a murder investigation against a madman known only as \"The Engineer\".","id":"12597","runtime":99,"imdbId":"tt0229440","trailer":"http:\/\/www.youtube.com\/watch?v=741","version":178,"lastModified":"1301903255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/016\/4bc939c1017a3c57fe018016\/hellraiser-inferno-mid.jpg","genre":"Crime","title":"Hellraiser: Inferno","releaseDate":968457600000,"language":"en","type":"Movie","_key":"53475"} +{"label":"Jo","description":"Selling author, Antoine Brisebard is a victim of a blackmailer, Jo, which threatens to jeopardize his reputation by revealing the past of his wife Sylvia. While the latter must pass the same night to take possession of the money required, Brisebard accidentally kills ...","id":"12598","runtime":85,"imdbId":"tt0067274","version":192,"lastModified":"1301903332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5a\/4cba04157b9aa138da000b5a\/jo-mid.jpg","genre":"Comedy","title":"Jo","releaseDate":52531200000,"language":"en","type":"Movie","_key":"53476"} +{"label":"Pok\u00e9mon: The Movie 2000","description":"Ash Ketchum must put his skill to the test when he attempts to save the world from destruction. The Greedy Pokemon collector Lawrence III throws the universe into chaos after disrupting the balance of nature by capturing one of the Pokemon birds that rule the elements of fire, lightning and ice. Will Ash have what it takes to save the world?","id":"12599","runtime":102,"imdbId":"tt0257001","trailer":"http:\/\/www.youtube.com\/watch?v=2415","homepage":"http:\/\/p2kmovie.warnerbros.com\/index2.html","version":82,"lastModified":"1301903364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de0\/4cf15d975e73d61926000de0\/pokemon-the-movie-2000-mid.jpg","studio":"4Kids Entertainment","genre":"Adventure","title":"Pok\u00e9mon: The Movie 2000","releaseDate":964137600000,"language":"en","type":"Movie","_key":"53477"} +{"label":"Madeleine Blaustein","version":33,"id":"73043","lastModified":"1301902168000","name":"Madeleine Blaustein","type":"Person","_key":"53478"} +{"label":"Pok\u00e9mon 4Ever","description":"advertisement\n\nIn this film, we meet the new Pok\u00e9mon, Celebi, who has the power to travel through time. Vicious, the future descendant of James and Jessie of Team Rocket, travels back in time to wreak havoc, and it's up to young Ash, Pikachu and friends to stop him. Along the way, Ash continues to mature into the unstoppable Pok\u00e9mon trainer he will become in the future.","id":"12600","runtime":75,"imdbId":"tt0313487","homepage":"http:\/\/www.pokemon.com\/us\/movies\/movie-pokemon-4ever-2002\/","version":99,"lastModified":"1301904703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4c18a9287b9aa10d2c000071\/pokemon-4ever-mid.jpg","genre":"Adventure","title":"Pok\u00e9mon 4Ever","releaseDate":1034294400000,"language":"en","type":"Movie","_key":"53479"} +{"label":"Jim Malone","version":21,"id":"73051","lastModified":"1301902130000","name":"Jim Malone","type":"Person","_key":"53480"} +{"label":"Garden of Love","description":"veral years after a musician and his friends are killed, his daughter is haunted by her dad, whos spirit is on killing spree.","id":"12601","runtime":86,"imdbId":"tt0355473","version":163,"lastModified":"1301905193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/040\/4bc939c4017a3c57fe018040\/garden-of-love-mid.jpg","genre":"Horror","title":"Garden of Love","releaseDate":1046649600000,"language":"en","type":"Movie","_key":"53481"} +{"label":"Natacza Boon","version":20,"id":"73058","lastModified":"1301901991000","name":"Natacza Boon","type":"Person","_key":"53482"} +{"label":"James Matthews","version":20,"id":"73059","lastModified":"1301901780000","name":"James Matthews","type":"Person","_key":"53483"} +{"label":"Daryl Jackson","version":20,"id":"73060","lastModified":"1301902330000","name":"Daryl Jackson","type":"Person","_key":"53484"} +{"label":"Die Schlangengrube und das Pendel","description":"No overview found.","id":"12602","runtime":85,"imdbId":"tt0062235","version":68,"lastModified":"1301905093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8b\/4d6a83785e73d66b23001e8b\/die-schlangengrube-und-das-pendel-mid.jpg","genre":"Horror","title":"Die Schlangengrube und das Pendel","releaseDate":-70761600000,"language":"en","type":"Movie","_key":"53485"} +{"label":"Masj\u00e4vlar","description":"No overview found.","id":"12604","runtime":98,"imdbId":"tt0439695","version":47,"lastModified":"1301905630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/049\/4bc939c4017a3c57fe018049\/masjavlar-mid.jpg","genre":"Comedy","title":"Masj\u00e4vlar","releaseDate":1101340800000,"language":"en","type":"Movie","_key":"53486"} +{"label":"Ann Petr\u00e9n","version":24,"id":"73070","lastModified":"1301902250000","name":"Ann Petr\u00e9n","type":"Person","_key":"53487"} +{"label":"Barbro Enberg","version":20,"id":"73071","lastModified":"1301901722000","name":"Barbro Enberg","type":"Person","_key":"53488"} +{"label":"Maria Blom","version":24,"id":"73072","lastModified":"1301901900000","name":"Maria Blom","type":"Person","_key":"53489"} +{"label":"Katze im Sack","description":"No overview found.","id":"12605","runtime":87,"imdbId":"tt0443076","version":47,"lastModified":"1301904997000","genre":"Drama","title":"Katze im Sack","releaseDate":1106179200000,"language":"en","type":"Movie","_key":"53490"} +{"label":"Florian Schwarz","version":20,"id":"73076","lastModified":"1301902386000","name":"Florian Schwarz","type":"Person","_key":"53491"} +{"label":"A Very Brady Sequel","description":"No overview found.","id":"12606","runtime":90,"imdbId":"tt0118073","version":102,"lastModified":"1301903728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4bc939c7017a3c57fe018052\/a-very-brady-sequel-mid.jpg","genre":"Comedy","title":"A Very Brady Sequel","releaseDate":840758400000,"language":"en","type":"Movie","_key":"53492"} +{"label":"Arlene Sanford","version":20,"id":"15042","lastModified":"1301901722000","name":"Arlene Sanford","type":"Person","_key":"53493"} +{"label":"Kamikaze 1989","description":"No overview found.","id":"12607","runtime":106,"imdbId":"tt0084191","version":62,"lastModified":"1301908303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05b\/4bc939c8017a3c57fe01805b\/kamikaze-1989-mid.jpg","genre":"Science Fiction","title":"Kamikaze 1989","releaseDate":395625600000,"language":"en","type":"Movie","_key":"53494"} +{"label":"Wolf Gremm","version":21,"id":"73081","lastModified":"1301901989000","name":"Wolf Gremm","type":"Person","_key":"53495"} +{"label":"Skenbart - en film om t\u00e5g","description":"No overview found.","id":"12608","runtime":100,"imdbId":"tt0365763","version":43,"lastModified":"1301906156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/060\/4bc939c8017a3c57fe018060\/skenbart-en-film-om-tag-mid.jpg","genre":"Comedy","title":"Skenbart - en film om t\u00e5g","releaseDate":1072310400000,"language":"en","type":"Movie","_key":"53496"} +{"label":"Magnus Roosmann","version":22,"id":"73086","lastModified":"1301902148000","name":"Magnus Roosmann","type":"Person","_key":"53497"} +{"label":"Anna Bj\u00f6rk","version":20,"id":"73087","lastModified":"1301902148000","name":"Anna Bj\u00f6rk","type":"Person","_key":"53498"} +{"label":"Peter Dalle","version":38,"id":"73088","lastModified":"1301901844000","name":"Peter Dalle","type":"Person","_key":"53499"} +{"label":"Help! I'm A Fish","description":"Three children accidentally get turned into fish after drinking a potion made by an eccentric scientist. The kids end up in the sea, with one problem. They must find and drink the antidote within 48 hours, or forever remain as fish.","id":"12609","runtime":80,"imdbId":"tt0168856","version":54,"lastModified":"1301904458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4bc939c9017a3c57fe01806d\/hjlp-jeg-er-en-fisk-mid.jpg","genre":"Adventure","title":"Help! I'm A Fish","releaseDate":970790400000,"language":"en","type":"Movie","_key":"53500"} +{"label":"Nis Bank-Mikkelsen","version":20,"id":"73093","lastModified":"1301902016000","name":"Nis Bank-Mikkelsen","type":"Person","_key":"53501"} +{"label":"Michael Hegner","version":22,"id":"73094","lastModified":"1301902378000","name":"Michael Hegner","type":"Person","_key":"53502"} +{"label":"Greg Manwaring","version":20,"id":"73095","lastModified":"1301901991000","name":"Greg Manwaring","type":"Person","_key":"53503"} +{"label":"Osmosis Jones","description":"A policeman white blood cell, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.","id":"12610","runtime":95,"imdbId":"tt0181739","trailer":"http:\/\/www.youtube.com\/watch?v=nieb6rnkxYI","homepage":"http:\/\/www.osmosisjones.com\/","version":174,"lastModified":"1301902910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07a\/4bc939ca017a3c57fe01807a\/osmosis-jones-mid.jpg","studio":"Warner Brothers\/Seven Arts","genre":"Action","title":"Osmosis Jones","releaseDate":997142400000,"language":"en","tagline":"Every BODY needs a hero","type":"Movie","_key":"53504"} +{"label":"The Fury","description":"A government agent is determined to come to his son's rescue, when a sinister official kidnaps him to harness his extremely powerful psychic abilities.","id":"12611","runtime":118,"imdbId":"tt0077588","trailer":"http:\/\/www.youtube.com\/watch?v=5SEFRWjATqM","version":109,"lastModified":"1301904334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4bc939ca017a3c57fe01807f\/the-fury-mid.jpg","genre":"Drama","title":"The Fury","releaseDate":258336000000,"language":"en","type":"Movie","_key":"53505"} +{"label":"Freeze Frame","description":"Sean Veil is an ultra paranoid murder suspect who takes to filming himself round the clock to provide an alibi, just in case he's ever accused of another crime. Problems arise however when the police do come calling and the one tape that can prove his innocence has mysteriously disappeared. ","id":"12612","runtime":99,"imdbId":"tt0363095","version":115,"lastModified":"1301903738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/088\/4bc939ca017a3c57fe018088\/freeze-frame-mid.jpg","genre":"Crime","title":"Freeze Frame","releaseDate":1083369600000,"language":"en","type":"Movie","_key":"53506"} +{"label":"John Simpson","version":25,"id":"73112","lastModified":"1301901444000","name":"John Simpson","type":"Person","_key":"53507"} +{"label":"Street Fighter II : The Animated Movie","description":"Bison, the ruthless leader of the international terrorist organization Shadowlaw, has been desperately searching for the greatest fighter on the planet for years. He finds it in Ryu, a young wanderer who never stays in one place long enough for Bison to find him.","id":"12613","runtime":98,"imdbId":"tt0114563","version":249,"lastModified":"1301903257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/091\/4bc939cd017a3c57fe018091\/sutorito-faita-ii-gekijo-ban-mid.jpg","genre":"Action","title":"Street Fighter II : The Animated Movie","releaseDate":776131200000,"language":"en","type":"Movie","_key":"53508"} +{"label":"K\u00f4jiro Shimizu","version":20,"id":"73118","lastModified":"1301902075000","name":"K\u00f4jiro Shimizu","type":"Person","_key":"53509"} +{"label":"Kenji Haga","version":20,"id":"73119","lastModified":"1301902075000","name":"Kenji Haga","type":"Person","_key":"53510"} +{"label":"Miki Fujitani","version":20,"id":"73120","lastModified":"1301901871000","name":"Miki Fujitani","type":"Person","_key":"53511"} +{"label":"Gisaburo Sugii","version":25,"id":"73121","lastModified":"1301901396000","name":"Gisaburo Sugii","type":"Person","_key":"53512"} +{"label":"Victor Victoria","description":"A struggling female soprano finds work playing a male female impersonator, but it complicates her personal life.","id":"12614","runtime":132,"imdbId":"tt0084865","version":145,"lastModified":"1301901997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4bc939ce017a3c57fe01809a\/victor-victoria-mid.jpg","genre":"Comedy","title":"Victor Victoria","releaseDate":385084800000,"language":"en","type":"Movie","_key":"53513"} +{"label":"Alex Karras","version":25,"id":"73234","lastModified":"1301902356000","name":"Alex Karras","type":"Person","_key":"53514"} +{"label":"Death of a Salesman","description":"Salesman Willy Loman is in a crisis. He's about to lose his job, he can't pay his bills, and his sons Biff and Happy don't respect him and can't seem to live up to their potential. He wonders what went wrong and how he can make things up to his family.","id":"12615","runtime":130,"imdbId":"tt0089006","version":129,"lastModified":"1301904884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38f\/4cc9a3b67b9aa16b9f00038f\/death-of-a-salesman-mid.jpg","genre":"Drama","title":"Death of a Salesman","releaseDate":495504000000,"language":"en","type":"Movie","_key":"53515"} +{"label":"One Night Stand","description":"No overview found.","id":"12616","runtime":102,"imdbId":"tt0119832","version":134,"lastModified":"1301905956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11d\/4c839f337b9aa1428e00011d\/one-night-stand-mid.jpg","genre":"Drama","title":"One Night Stand","releaseDate":872985600000,"language":"en","type":"Movie","_key":"53516"} +{"label":"Marcus T. Paulk","version":22,"id":"60038","lastModified":"1301901871000","name":"Marcus T. Paulk","type":"Person","_key":"53517"} +{"label":"Midnight Lace","description":"No overview found.","id":"12617","runtime":110,"imdbId":"tt0054084","version":81,"lastModified":"1301903794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4c3846bf5e73d671d3000005\/midnight-lace-mid.jpg","genre":"Thriller","title":"Midnight Lace","releaseDate":-290908800000,"language":"en","type":"Movie","_key":"53518"} +{"label":"David Miller","version":30,"id":"73256","lastModified":"1301901493000","name":"David Miller","type":"Person","_key":"53519"} +{"label":"Random Hearts","description":"After the death of their loved ones in a tragic plane crash 'Harrison Ford' and Kristin Scott Thomas find each others keys in each others loved ones posessions and realize that they were having an affair and must figure out all the details. Written by Andy HeitzThe wife of Police Sergeant Dutch Van Den Broek and the husband of politician Kay Chandler are killed in a plane crash. Now Dutch discovers some anomalies in what he told her before she left and discovers that she and Chandler's husband w","id":"12618","runtime":133,"imdbId":"tt0156934","version":233,"lastModified":"1302039310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d1\/4d3342117b9aa17a450068d1\/random-hearts-mid.jpg","genre":"Drama","title":"Random Hearts","releaseDate":939340800000,"language":"en","type":"Movie","_key":"53520"} +{"label":"Cherry Falls","description":"Cherry Falls is a quiet little town - until the night that a serial killer begins preying on its youth. After a third teen is found slain, the killer's modus operandi emerges: the victims were all virgins. Sheriff Marken (Michael Biehn), is concerned for the safety of the teens in general and in particular his own daughter Jody (Brittany Murphy), who is still a virgin.Once the students realise that to save their skins they're going to have to lose their virginity now, a meet-and-mate party takes","id":"12619","runtime":92,"imdbId":"tt0175526","version":106,"lastModified":"1301903255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4bc939ce017a3c57fe0180a8\/cherry-falls-mid.jpg","genre":"Comedy","title":"Cherry Falls","releaseDate":964828800000,"language":"en","type":"Movie","_key":"53521"} +{"label":"The House Bunny","description":"Shelley is living a carefree life until a rival gets her kicked out of the Playboy Mansion. With nowehere to go, fate delivers her to the sorority girls of Zeta Alpha Zeta. Unless they can sign a new pledge class, the 7 socially clueless women will lose the house to the scheming girls of Phi Iota Mu. In order to accomplish their goals, they need Shelley to teach them the ways of Make-up and Men...","id":"12620","runtime":97,"imdbId":"tt0852713","trailer":"http:\/\/www.youtube.com\/watch?v=BlX3K7P4_9g","homepage":"http:\/\/www.thehousebunny.com\/","version":447,"lastModified":"1301901964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4bc939d5017a3c57fe0180d4\/the-house-bunny-mid.jpg","studio":"Happy Madison Productions","genre":"Comedy","title":"The House Bunny","releaseDate":1219363200000,"language":"en","tagline":"They wanted a role model. They got a Playmate.","type":"Movie","_key":"53522"} +{"label":"Kiely Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bc3\/4d66a4c17b9aa12978002bc3\/kiely-williams-profile.jpg","biography":"Kiely Alexis Williams (born July 9, 1986) is an American singer, actress, songwriter and dancer. She is best known for being a member of former girl groups 3LW and The Cheetah Girls.","version":30,"birthday":"521244000000","id":"74046","lastModified":"1301901774000","name":"Kiely Williams","type":"Person","_key":"53523"} +{"label":"Tyson Ritter","version":23,"id":"74047","lastModified":"1301901994000","name":"Tyson Ritter","type":"Person","_key":"53524"} +{"label":"Katharine McPhee","version":22,"id":"77088","lastModified":"1301901932000","name":"Katharine McPhee","type":"Person","_key":"53525"} +{"label":"Fred Wolf","version":50,"id":"66563","lastModified":"1302070575000","name":"Fred Wolf","type":"Person","_key":"53526"} +{"label":"Hamlet 2","description":"From the same people that brought you \"Little Miss Sunshine,\" Hamlet 2 is the story of Dana Marschz, a high school drama teacher facing the cancellation of his program. A spoof on the typical story of bringing inner city and privileged youth together to succeed, this offbeat comedy contains a hilarious musical finale.","id":"12621","runtime":92,"imdbId":"tt1104733","version":312,"lastModified":"1301903738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e1\/4bc939d6017a3c57fe0180e1\/hamlet-2-mid.jpg","studio":"Bona Fide Productions","genre":"Comedy","title":"Hamlet 2","releaseDate":1200873600000,"language":"en","tagline":"One high school drama teacher is about to make a huge number 2.","type":"Movie","_key":"53527"} +{"label":"Joseph Julian Soria","version":19,"id":"73127","lastModified":"1301901722000","name":"Joseph Julian Soria","type":"Person","_key":"53528"} +{"label":"Skylar Astin","version":19,"id":"73128","lastModified":"1301901611000","name":"Skylar Astin","type":"Person","_key":"53529"} +{"label":"Phoebe Strole","version":22,"id":"73129","lastModified":"1301901475000","name":"Phoebe Strole","type":"Person","_key":"53530"} +{"label":"Michael Esparza","version":20,"id":"73130","lastModified":"1301902134000","name":"Michael Esparza","type":"Person","_key":"53531"} +{"label":"Natalie Amenula","version":19,"id":"73131","lastModified":"1301901475000","name":"Natalie Amenula","type":"Person","_key":"53532"} +{"label":"Deborah Chavez","version":19,"id":"73133","lastModified":"1301901722000","name":"Deborah Chavez","type":"Person","_key":"53533"} +{"label":"Evan Adrian","version":20,"id":"73134","lastModified":"1301901775000","name":"Evan Adrian","type":"Person","_key":"53534"} +{"label":"Violent Cop","description":"Detective Azuma is a Dirty-Harry style rogue cop who often uses violence and unethical methods to get results.","id":"12622","runtime":103,"imdbId":"tt0098360","version":121,"lastModified":"1301903848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ef\/4bc939da017a3c57fe0180ef\/sono-otoko-kyobo-ni-tsuki-mid.jpg","genre":"Action","title":"Violent Cop","releaseDate":618883200000,"language":"en","type":"Movie","_key":"53535"} +{"label":"Maiko Kawakami","version":21,"id":"73138","lastModified":"1301901871000","name":"Maiko Kawakami","type":"Person","_key":"53536"} +{"label":"Shir\u00f4 Sano","version":30,"id":"73139","lastModified":"1301901606000","name":"Shir\u00f4 Sano","type":"Person","_key":"53537"} +{"label":"Suspect","description":"When a Supreme Court judge commits suicide and his secretary is found murdered, all fingers point to Carl Anderson (Liam Neeson), a homeless veteran who's deaf and mute. But when public defender Kathleen Riley (Cher) is assigned to his case, she begins to believe that Anderson may actually be innocent. Juror Eddie Sanger (Dennis Quaid), a Washington lobbyist, agrees, and together the pair begins their own investigation of events.","id":"12623","runtime":121,"imdbId":"tt0094082","trailer":"http:\/\/www.youtube.com\/watch?v=HE86y72xsr4","version":128,"lastModified":"1301902762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/656\/4ceb25875e73d62590000656\/suspect-mid.jpg","genre":"Crime","title":"Suspect","releaseDate":561945600000,"language":"en","type":"Movie","_key":"53538"} +{"label":"Guns of the Magnificent Seven","description":"In this third remake of legendary Japanese director Akira Kurosawa's hugely influential The Seven Samurai, the seven gunslingers (George Kennedy, Michael Ansara, Joe Don Baker, Bernie Casey, Monte Markham, Fernando Rey and Reni Santoni) liberate Mexican political prisoners, train them as fighters and assist them in a desperate attack on a Mexican fortress in an attempt to free a revolutionary leader.","id":"12625","runtime":105,"imdbId":"tt0064395","version":115,"lastModified":"1301903454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4bce1c49017a3c24cf00009d\/guns-of-the-magnificent-seven-mid.jpg","genre":"Action","title":"Guns of the Magnificent Seven","releaseDate":-14774400000,"language":"en","type":"Movie","_key":"53539"} +{"label":"Monte Markham","version":22,"id":"73149","lastModified":"1301902389000","name":"Monte Markham","type":"Person","_key":"53540"} +{"label":"Paul Wendkos","version":31,"id":"73150","lastModified":"1301902216000","name":"Paul Wendkos","type":"Person","_key":"53541"} +{"label":"Broadcast News","description":"Basket-case network news producer Jane Craig falls for new reporter Tom Grunnick, a pretty boy who represents the trend towards entertainment news she despises. Aaron Altman, a talented but plain correspondent, carries an unrequited torch for Jane. Sparks fly between the three as the network prepares for big changes, and both the news and Jane must decide between style and substance.","id":"12626","runtime":133,"imdbId":"tt0092699","version":192,"lastModified":"1301902617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45f\/4d45a1355e73d65c8400145f\/broadcast-news-mid.jpg","genre":"Comedy","title":"Broadcast News","releaseDate":566611200000,"language":"en","type":"Movie","_key":"53542"} +{"label":"La belle noiseuse","description":"The former famous painter Frenhofer lives quietly with his wife on his countryside residence in the French Provence. When the young artist Nicolas visits him with his girlfriend Marianne, Frenhofer decides to start again the work on a painting he long ago stopped: La Belle Noiseuse. And he wants Marianne as model. The now starting creative process changes life for everyone. It is a struggle for truth, life and sense, and the question where the limits of arts are or whether art is limitless.","id":"12627","runtime":236,"imdbId":"tt0101428","version":158,"lastModified":"1301903080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd4\/4d8fef5f7b9aa1675b002bd4\/la-belle-noiseuse-mid.jpg","studio":"Pierre Grise Productions","genre":"Drama","title":"La belle noiseuse","releaseDate":686361600000,"language":"en","type":"Movie","_key":"53543"} +{"label":"Jacques Rivette","version":55,"id":"73153","lastModified":"1301901444000","name":"Jacques Rivette","type":"Person","_key":"53544"} +{"label":"Playing God","description":"Stripped of his medical license after performing an operation while high on amphetamines, famed LA surgeon Dr Eugene Sands abandons his former life only to find himself crossing paths with Raymond Blossom, an infamous counterfeiter. Employed as a \"gun-shot doctor\" when Raymond's associates cannot risk visiting a hospital, Eugene is lured deep into the criminal world and becomes entangled with his boss's girlfriend.","id":"12628","runtime":94,"imdbId":"tt0119906","version":126,"lastModified":"1301903222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4c0feb3f017a3c35190010bc\/playing-god-mid.jpg","genre":"Crime","title":"Playing God","releaseDate":877046400000,"language":"en","type":"Movie","_key":"53545"} +{"label":"Live Wire","description":"No overview found.","id":"12629","runtime":85,"imdbId":"tt0104743","version":112,"lastModified":"1301904010000","genre":"Action","title":"Live Wire","releaseDate":715478400000,"language":"en","type":"Movie","_key":"53546"} +{"label":"Pippi Longstocking","description":"No overview found.","id":"12630","runtime":75,"imdbId":"tt0119899","version":102,"lastModified":"1301903995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18d\/4c86f8d97b9aa1545e00018d\/pippi-longstocking-mid.jpg","genre":"Adventure","title":"Pippi Longstocking","releaseDate":872208000000,"language":"en","type":"Movie","_key":"53547"} +{"label":"Melissa Altro","version":19,"id":"73159","lastModified":"1301901430000","name":"Melissa Altro","type":"Person","_key":"53548"} +{"label":"Carole Pope","version":19,"id":"73160","lastModified":"1301901474000","name":"Carole Pope","type":"Person","_key":"53549"} +{"label":"Clive A. Smith","version":25,"id":"68738","lastModified":"1301901724000","name":"Clive A. Smith","type":"Person","_key":"53550"} +{"label":"Drei Mann in einem Boot","description":"No overview found.","id":"12631","runtime":87,"imdbId":"tt0054826","version":59,"lastModified":"1301907260000","genre":"Comedy","title":"Drei Mann in einem Boot","releaseDate":-263606400000,"language":"en","type":"Movie","_key":"53551"} +{"label":"Kaspar Hauser","description":"No overview found.","id":"12632","runtime":139,"imdbId":"tt0110246","version":100,"lastModified":"1302024032000","genre":"Drama","title":"Kaspar Hauser","releaseDate":747705600000,"language":"en","type":"Movie","_key":"53552"} +{"label":"Jeremy Clyde","version":20,"id":"73172","lastModified":"1301901823000","name":"Jeremy Clyde","type":"Person","_key":"53553"} +{"label":"The Star Chamber","description":"No overview found.","id":"12633","runtime":109,"imdbId":"tt0086356","version":101,"lastModified":"1301904621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4bc939de017a3c57fe018119\/the-star-chamber-mid.jpg","genre":"Action","title":"The Star Chamber","releaseDate":428889600000,"language":"en","type":"Movie","_key":"53554"} +{"label":"Sharon Gless","version":20,"id":"73177","lastModified":"1301901871000","name":"Sharon Gless","type":"Person","_key":"53555"} +{"label":"The Big Bounce","description":"A small-time con artist and a Hawaiian real estate developer's mischevious, enterprising mistress team up for a potential $200,000 score.","id":"12634","runtime":88,"imdbId":"tt0315824","version":203,"lastModified":"1301902046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/122\/4bc939de017a3c57fe018122\/the-big-bounce-mid.jpg","genre":"Action","title":"The Big Bounce","releaseDate":1075334400000,"language":"en","type":"Movie","_key":"53556"} +{"label":"Backbeat","description":"Chronicles the early days of The Beatles in Hamburg, Germany. The film focuses primarily on the relationship between Stuart Sutcliffe (played by Stephen Dorff) and John Lennon (played by Ian Hart), and also with Sutcliffe's German girlfriend Astrid Kirchherr (played by Sheryl Lee).","id":"12635","runtime":100,"imdbId":"tt0106339","version":120,"lastModified":"1302039185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/133\/4bc939e3017a3c57fe018133\/backbeat-mid.jpg","genre":"Drama","title":"Backbeat","releaseDate":765158400000,"language":"en","type":"Movie","_key":"53557"} +{"label":"Gary Bakewell","version":19,"id":"73180","lastModified":"1301901430000","name":"Gary Bakewell","type":"Person","_key":"53558"} +{"label":"Chris O'Neill","version":19,"id":"73181","lastModified":"1301901722000","name":"Chris O'Neill","type":"Person","_key":"53559"} +{"label":"Paul Duckworth","version":19,"id":"73182","lastModified":"1301901611000","name":"Paul Duckworth","type":"Person","_key":"53560"} +{"label":"Godzilla against Mechagodzilla","description":"No overview found.","id":"12636","runtime":88,"imdbId":"tt0314111","version":109,"lastModified":"1301903780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f0\/4d7374e45e73d62d7e0004f0\/gojira-tai-mekagojira-mid.jpg","genre":"Action","title":"Godzilla against Mechagodzilla","releaseDate":1039910400000,"language":"en","type":"Movie","_key":"53561"} +{"label":"Shin Takuma","version":20,"id":"73186","lastModified":"1301902139000","name":"Shin Takuma","type":"Person","_key":"53562"} +{"label":"Kana Onodera","version":20,"id":"73187","lastModified":"1301902139000","name":"Kana Onodera","type":"Person","_key":"53563"} +{"label":"Koh Takasugi","version":20,"id":"73188","lastModified":"1301902139000","name":"Koh Takasugi","type":"Person","_key":"53564"} +{"label":"Masaaki Tezuka","version":26,"id":"73189","lastModified":"1301902139000","name":"Masaaki Tezuka","type":"Person","_key":"53565"} +{"label":"New York, New York","description":"An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.","id":"12637","runtime":155,"imdbId":"tt0076451","version":171,"lastModified":"1301903237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19a\/4d99237f7b9aa1584600119a\/new-york-new-york-mid.jpg","genre":"Drama","title":"New York, New York","releaseDate":235699200000,"language":"en","type":"Movie","_key":"53566"} +{"label":"Barry Primus","version":26,"id":"73194","lastModified":"1301901673000","name":"Barry Primus","type":"Person","_key":"53567"} +{"label":"Mary Mary Place","version":4,"id":"231785","lastModified":"1301874491000","name":"Mary Mary Place","type":"Person","_key":"53568"} +{"label":"Der Skipper","description":"No overview found.","id":"12638","runtime":98,"imdbId":"tt0100633","version":41,"lastModified":"1301906724000","genre":"Adventure","title":"Der Skipper","releaseDate":639273600000,"language":"en","type":"Movie","_key":"53569"} +{"label":"Return of the Magnificent Seven","description":"Chico one of the remaining members of The Magnificent Seven now lives in the town that they (The Seven) helped. One day someone comes and takes most of the men prisoner. His wife seeks out Chris, the leader of The Seven for help. Chris also meets Vin another member of The Seven. They find four other men and they go to help Chico.","id":"12639","runtime":95,"imdbId":"tt0060897","version":155,"lastModified":"1301904405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/135\/4c1cc7ff5e73d606d0000135\/return-of-the-seven-mid.jpg","genre":"Action","title":"Return of the Magnificent Seven","releaseDate":-101088000000,"language":"en","tagline":"Between the law and the lawless - SEVEN again... MAGNIFICENT again!","type":"Movie","_key":"53570"} +{"label":"Inhale","description":"A couple goes to dangerous lengths to find a lung donor for their daughter","id":"12645","runtime":100,"imdbId":"tt1196340","version":205,"lastModified":"1301903213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4c836dc27b9aa14290000063\/inhale-mid.jpg","studio":"26 Films","genre":"Drama","title":"Inhale","releaseDate":1282867200000,"language":"en","tagline":"Start Running","type":"Movie","_key":"53571"} +{"label":"Walter Perez","version":21,"id":"101522","lastModified":"1301902649000","name":"Walter Perez","type":"Person","_key":"53572"} +{"label":"Mia Stallard","version":22,"id":"129713","lastModified":"1301902789000","name":"Mia Stallard","type":"Person","_key":"53573"} +{"label":"Kisha Sierra","version":22,"id":"129714","lastModified":"1301902789000","name":"Kisha Sierra","type":"Person","_key":"53574"} +{"label":"Valhalla","description":"No overview found.","id":"12646","runtime":76,"imdbId":"tt0094238","version":69,"lastModified":"1301904670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11b\/4bd47675017a3c7fb000011b\/valhalla-mid.jpg","genre":"Adventure","title":"Valhalla","releaseDate":516240000000,"language":"en","type":"Movie","_key":"53575"} +{"label":"Dick Kays\u00f8","version":21,"id":"73213","lastModified":"1301902206000","name":"Dick Kays\u00f8","type":"Person","_key":"53576"} +{"label":"Preben Kristensen","version":19,"id":"73214","lastModified":"1301901871000","name":"Preben Kristensen","type":"Person","_key":"53577"} +{"label":"Marie Ingerslev","version":19,"id":"73215","lastModified":"1301902250000","name":"Marie Ingerslev","type":"Person","_key":"53578"} +{"label":"Peter Madsen","version":21,"id":"73216","lastModified":"1301901722000","name":"Peter Madsen","type":"Person","_key":"53579"} +{"label":"Jeffrey James Varab","version":20,"id":"73217","lastModified":"1301901871000","name":"Jeffrey James Varab","type":"Person","_key":"53580"} +{"label":"Billy Bathgate","description":"Billy Bathgate in a teenager in 1930's New York. Desperate to make something of himself he decides to work for the one person he admires - gangster Dutch Schultz.","id":"12647","runtime":106,"imdbId":"tt0101453","version":108,"lastModified":"1301904183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f65\/4c0e754b017a3c7e86000f65\/billy-bathgate-mid.jpg","genre":"Crime","title":"Billy Bathgate","releaseDate":688953600000,"language":"en","type":"Movie","_key":"53581"} +{"label":"Agents secrets","description":"No overview found.","id":"12648","runtime":109,"imdbId":"tt0356336","version":96,"lastModified":"1301903517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4bc939e5017a3c57fe01814d\/agents-secrets-mid.jpg","genre":"Action","title":"Agents secrets","releaseDate":1080691200000,"language":"en","type":"Movie","_key":"53582"} +{"label":"Fr\u00e9d\u00e9ric Schoendoerffer","version":25,"id":"73235","lastModified":"1301902350000","name":"Fr\u00e9d\u00e9ric Schoendoerffer","type":"Person","_key":"53583"} +{"label":"The Mouse That Roared","description":"The Duchy of Grand Fenwick decides that the only way to get out of their economic woes is to declare war on the United States, lose and accept foreign aid. They send an invasion force to New York (armed with longbows) which arrives during a nuclear drill that has cleared the streets.","id":"12649","runtime":83,"imdbId":"tt0053084","trailer":"http:\/\/www.youtube.com\/watch?v=p7L7WLFBYR4","version":131,"lastModified":"1301902790000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15e\/4bc939e6017a3c57fe01815e\/the-mouse-that-roared-mid.jpg","genre":"Comedy","title":"The Mouse That Roared","releaseDate":-330134400000,"language":"en","type":"Movie","_key":"53584"} +{"label":"William Hartnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47e\/4c52f8817b9aa13d4a00047e\/william-hartnell-profile.jpg","version":31,"id":"73245","lastModified":"1301901167000","name":"William Hartnell","type":"Person","_key":"53585"} +{"label":"Il Mare","description":"Eun-joo moves out of her house \"Il Mare\", leaving behind a Christmas card for the eventual new owner of the house in 1999. In it she asks him\/her to forward any mail of hers to her new address in the city. It is 1997 and Sung-hyun, the first owner of \"Il Mare\" is moving in and finds in his mailbox the Christmas card from Eun-joo. Thinking it was a joke, Sung-hyun leaves her a letter telling her so and reminds her that its 1997 not 1999. Eventually the two realize that they are separated by two y","id":"12650","runtime":105,"imdbId":"tt0282599","version":78,"lastModified":"1301905544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/167\/4bc939e7017a3c57fe018167\/12650-mid.jpg","genre":"Drama","title":"Il Mare","releaseDate":968457600000,"language":"en","type":"Movie","_key":"53586"} +{"label":"Jung-Jae Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cfa\/4d14bb7a7b9aa11482001cfa\/jung-jae-lee-profile.jpg","version":28,"id":"73249","lastModified":"1301901507000","name":"Jung-Jae Lee","type":"Person","_key":"53587"} +{"label":"Mu-saeng Kim","version":21,"id":"73251","lastModified":"1301902075000","name":"Mu-saeng Kim","type":"Person","_key":"53588"} +{"label":"Seung-Yeon Jo","version":21,"id":"73252","lastModified":"1301902075000","name":"Seung-Yeon Jo","type":"Person","_key":"53589"} +{"label":"Hyun-seung Lee","version":21,"id":"73253","lastModified":"1301901722000","name":"Hyun-seung Lee","type":"Person","_key":"53590"} +{"label":"Memphis Belle","description":"The \"Memphis Belle\" is a World War II bomber, piloted by a young crew on dangerous bombing raids into Europe. The crew only have to make one more bombing raid before they have finished their duty and can go home. In the briefing before their last flight, the crew discover that the target for the day is Dresden, a heavily-defended town that invariably causes many Allied casualties","id":"12651","runtime":107,"imdbId":"tt0100133","version":151,"lastModified":"1301903523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/170\/4bc939eb017a3c57fe018170\/memphis-belle-mid.jpg","genre":"Action","title":"Memphis Belle","releaseDate":652665600000,"language":"en","type":"Movie","_key":"53591"} +{"label":"Nelly & Monsieur Arnaud","description":"La rencontre entre une jeune femme en instance de divorce et d\u00e9sargent\u00e9e et un vieux monsieur \u00e0 l'aise et retir\u00e9 des affaires.","id":"12652","runtime":106,"imdbId":"tt0113947","version":86,"lastModified":"1301903137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c3\/4bdd7365017a3c20cd0001c3\/nelly-monsieur-arnaud-mid.jpg","genre":"Drama","title":"Nelly & Monsieur Arnaud","releaseDate":813974400000,"language":"en","type":"Movie","_key":"53592"} +{"label":"Claire Nadeau","version":21,"id":"73264","lastModified":"1301901722000","name":"Claire Nadeau","type":"Person","_key":"53593"} +{"label":"Romasanta","description":"An uproar is caused when some mutilated cadavers are discovered, giving way to the legend of the \"Werewolf of Allariz\". A traveling vendor rolls through the forest in his old wagon. A woman from every village on his route faithfully awaits him. He's attractive, intelligent, charming.... But he's also the monster feared by all. His most recent prey, Barbara will soon become the one who hunts him down. The film is based on the true-life story of Manuel Blanco Romasanta, the traveling vendor, who c","id":"12653","runtime":90,"imdbId":"tt0374180","version":163,"lastModified":"1301905193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57a\/4ce2f1605e73d60f6d00057a\/romasanta-mid.jpg","genre":"Action","title":"Romasanta","releaseDate":1084406400000,"language":"en","type":"Movie","_key":"53594"} +{"label":"Elsa Pataky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/43a\/4c48919b5e73d61efb00043a\/elsa-pataky-profile.jpg","version":33,"id":"73269","lastModified":"1301901238000","name":"Elsa Pataky","type":"Person","_key":"53595"} +{"label":"Gary Piquer","version":20,"id":"73270","lastModified":"1301901871000","name":"Gary Piquer","type":"Person","_key":"53596"} +{"label":"Viol@","description":"No overview found.","id":"12654","runtime":92,"imdbId":"tt0140681","version":74,"lastModified":"1301904713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd7\/4d7faa187b9aa11a0c01bbd7\/viol-mid.jpg","studio":"Dania Film","genre":"Thriller","title":"Viol@","releaseDate":905472000000,"language":"en","type":"Movie","_key":"53597"} +{"label":"Donatella Maiorca","version":21,"id":"73279","lastModified":"1301901810000","name":"Donatella Maiorca","type":"Person","_key":"53598"} +{"label":"I Went Down","description":"Fresh out of prison, Git rescues a former best friend (now living with Git's girlfriend) from a beating at the hands of loan sharks. He's now in trouble with the mob boss, Tom French, who sends Git to Cork with another debtor, Bunny Kelly, to find a guy named Frank Grogan, and take him to a man with a friendly face at a shack across a bog. It's a tougher assignment than it seems: Git's a novice, Bunny's prone to rash acts, Frank doesn't want to be found (and once he's found, he has no money), an","id":"12655","runtime":97,"imdbId":"tt0126344","version":91,"lastModified":"1301903952000","studio":"BBC Films","genre":"Crime","title":"I Went Down","releaseDate":875836800000,"language":"en","type":"Movie","_key":"53599"} +{"label":"Paddy Breathnach","version":27,"id":"73282","lastModified":"1301901684000","name":"Paddy Breathnach","type":"Person","_key":"53600"} +{"label":"Peter McDonald","version":25,"id":"73283","lastModified":"1301901507000","name":"Peter McDonald","type":"Person","_key":"53601"} +{"label":"Tony Doyle","version":20,"id":"73284","lastModified":"1301901722000","name":"Tony Doyle","type":"Person","_key":"53602"} +{"label":"Peter Caffrey","version":19,"id":"73285","lastModified":"1301902075000","name":"Peter Caffrey","type":"Person","_key":"53603"} +{"label":"Antoine Byrne","version":19,"id":"73286","lastModified":"1301902250000","name":"Antoine Byrne","type":"Person","_key":"53604"} +{"label":"David Wilmot","version":28,"id":"73287","lastModified":"1301901944000","name":"David Wilmot","type":"Person","_key":"53605"} +{"label":"Michael McElhatton","version":28,"id":"73288","lastModified":"1301901722000","name":"Michael McElhatton","type":"Person","_key":"53606"} +{"label":"Feeling Minnesota","description":"A former stripper is marrying Sam to pay off a debt to a gangster, but Sam's brother comes home for the wedding and things go in an unexpected direction. Sam plans his revenge.","id":"12656","runtime":99,"imdbId":"tt0116289","version":135,"lastModified":"1301902456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/179\/4bc939ec017a3c57fe018179\/feeling-minnesota-mid.png","genre":"Action","title":"Feeling Minnesota","releaseDate":842572800000,"language":"en","type":"Movie","_key":"53607"} +{"label":"Steven Baigelman","version":25,"id":"73838","lastModified":"1301902029000","name":"Steven Baigelman","type":"Person","_key":"53608"} +{"label":"Soul Plane","description":"Things get raucously funny aboard the maiden flight of a black-owned airline, thanks to some last-minute passenger additions.","id":"12657","runtime":86,"imdbId":"tt0367085","trailer":"http:\/\/www.youtube.com\/watch?v=Cf-SXMZTg8I","version":157,"lastModified":"1301902073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/186\/4bc939ee017a3c57fe018186\/soul-plane-mid.jpg","genre":"Comedy","title":"Soul Plane","releaseDate":1085702400000,"language":"en","type":"Movie","_key":"53609"} +{"label":"Godfrey","version":19,"id":"73831","lastModified":"1301901871000","name":"Godfrey","type":"Person","_key":"53610"} +{"label":"Jessy Terrero","version":25,"id":"73832","lastModified":"1301901381000","name":"Jessy Terrero","type":"Person","_key":"53611"} +{"label":"Someone Like You","description":"No overview found.","id":"12658","runtime":97,"imdbId":"tt0244970","version":158,"lastModified":"1301902303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18f\/4bc939ef017a3c57fe01818f\/someone-like-you-mid.jpg","genre":"Comedy","title":"Someone Like You","releaseDate":985910400000,"language":"en","type":"Movie","_key":"53612"} +{"label":"Beijing Bicycle","description":"A seventeen-year-old country boy working in Beijing as a courier has his bicycle stolen, and finds it with a schoolboy his age.","id":"12659","runtime":113,"imdbId":"tt0276501","version":145,"lastModified":"1302085048000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/097\/4c85e2a35e73d66b5a000097\/shiqi-sui-de-dan-che-mid.jpg","genre":"Drama","title":"Beijing Bicycle","releaseDate":982368000000,"language":"en","type":"Movie","_key":"53613"} +{"label":"Lin Cui","version":21,"id":"74020","lastModified":"1301902075000","name":"Lin Cui","type":"Person","_key":"53614"} +{"label":"Bin Li","version":22,"id":"74021","lastModified":"1301902075000","name":"Bin Li","type":"Person","_key":"53615"} +{"label":"Yuanyuan Gao","version":25,"id":"74022","lastModified":"1301901552000","name":"Yuanyuan Gao","type":"Person","_key":"53616"} +{"label":"Shuang Li","version":21,"id":"74023","lastModified":"1301901871000","name":"Shuang Li","type":"Person","_key":"53617"} +{"label":"Xiaoshuai Wang","version":24,"id":"74024","lastModified":"1301901833000","name":"Xiaoshuai Wang","type":"Person","_key":"53618"} +{"label":"Charlotte Gray","description":"A young Scottish woman joins the French Resistance during World War II to rescue her Royal Air Force boyfriend who is lost in France.","id":"12660","runtime":121,"imdbId":"tt0245046","trailer":"http:\/\/www.youtube.com\/watch?v=ZLBepvteMpM","version":196,"lastModified":"1301903612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/441\/4bdfd418017a3c35b4000441\/charlotte-gray-mid.jpg","genre":"Drama","title":"Charlotte Gray","releaseDate":1008547200000,"language":"en","type":"Movie","_key":"53619"} +{"label":"Abigail Cruttenden","version":26,"id":"73845","lastModified":"1301901423000","name":"Abigail Cruttenden","type":"Person","_key":"53620"} +{"label":"Charlotte McDougall","version":19,"id":"73846","lastModified":"1301901475000","name":"Charlotte McDougall","type":"Person","_key":"53621"} +{"label":"Robert Hands","version":19,"id":"73847","lastModified":"1301901535000","name":"Robert Hands","type":"Person","_key":"53622"} +{"label":"Undercover Blues","description":"When fun-loving American agents Dennis Quaid and Kathleen Turner are called back from maternity leave for a special assignment in New Orleans, the spy parents decide to skip the sitter and give their bouncing baby girl the adventure of a lifetime. There's nothing to the dumb story about a deadly arms dealer in the Louisiana Bayou, but you'd be hard put to find a friskier pair of doting parents.","id":"12661","runtime":90,"imdbId":"tt0108442","version":279,"lastModified":"1301903106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19c\/4bc939f0017a3c57fe01819c\/undercover-blues-mid.jpg","genre":"Action","title":"Undercover Blues","releaseDate":747619200000,"language":"en","type":"Movie","_key":"53623"} +{"label":"Psycho III","description":"No overview found.","id":"12662","runtime":93,"imdbId":"tt0091799","version":206,"lastModified":"1301902857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4bc939f4017a3c57fe0181ab\/psycho-iii-mid.jpg","genre":"Horror","title":"Psycho III","releaseDate":520646400000,"language":"en","type":"Movie","_key":"53624"} +{"label":"Hugh Gillin","version":20,"id":"73349","lastModified":"1301901871000","name":"Hugh Gillin","type":"Person","_key":"53625"} +{"label":"Gary Bayer","version":16,"id":"102633","lastModified":"1301902466000","name":"Gary Bayer","type":"Person","_key":"53626"} +{"label":"Juliette Cummins","version":17,"id":"98583","lastModified":"1301902500000","name":"Juliette Cummins","type":"Person","_key":"53627"} +{"label":"Red Scorpion","description":"A Russian KGB agent is sent to Africa to kill an anti-Communist black revolutionary. However, he has a change of heart when he sees how the Russians and their Cuban allies are killing and repressing the locals, so he switches sides and helps the rebels.","id":"12663","runtime":105,"imdbId":"tt0098180","version":120,"lastModified":"1301903239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b4\/4bc939f5017a3c57fe0181b4\/red-scorpion-mid.jpg","genre":"Action","title":"Red Scorpion","releaseDate":599961600000,"language":"en","type":"Movie","_key":"53628"} +{"label":"Al White","version":20,"id":"73337","lastModified":"1301901535000","name":"Al White","type":"Person","_key":"53629"} +{"label":"Alex Colon","version":20,"id":"73338","lastModified":"1301902075000","name":"Alex Colon","type":"Person","_key":"53630"} +{"label":"The Snapper","description":"Set in Ireland, Sharon Curley is a 20 year old living with her parents and many brothers and sisters. When she gets herself pregnant and refuses to name the father, she becomes the talk of the town.","id":"12664","runtime":91,"imdbId":"tt0108170","version":96,"lastModified":"1301904512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bd\/4bc939f5017a3c57fe0181bd\/the-snapper-mid.jpg","genre":"Comedy","title":"The Snapper","releaseDate":744595200000,"language":"en","type":"Movie","_key":"53631"} +{"label":"Tina Kellegher","version":21,"id":"74018","lastModified":"1301901547000","name":"Tina Kellegher","type":"Person","_key":"53632"} +{"label":"Peter Rowen","version":20,"id":"74019","lastModified":"1301902011000","name":"Peter Rowen","type":"Person","_key":"53633"} +{"label":"Powder","description":"Harassed by classmates who won't accept his shocking appearance, a shy young man known as \"Powder\" struggles to fit in. But the cruel taunts stop when Powder displays a mysterious power that allows him to do incredible things. This phenomenon changes the lives of all those around him in ways they never could have imagined. ","id":"12665","runtime":111,"imdbId":"tt0114168","version":97,"lastModified":"1301902634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4bc939f7017a3c57fe0181ca\/powder-mid.jpg","genre":"Drama","title":"Powder","releaseDate":812505600000,"language":"en","tagline":"An extraordinary encounter with another human being.","type":"Movie","_key":"53634"} +{"label":"Flashpoint","description":"No overview found.","id":"12666","runtime":0,"imdbId":"tt1059475","version":57,"lastModified":"1301908516000","title":"Flashpoint","releaseDate":1219276800000,"language":"en","type":"Movie","_key":"53635"} +{"label":"Hung Up","description":"Ryan McNamara has been beaten, abused, witnessed slaughter, and been subjected to sexual torture. But that's nothing compared to what Ryan is about to do.","id":"12674","runtime":92,"trailer":"http:\/\/www.youtube.com\/watch?v=631","version":555,"lastModified":"1302023641000","genre":"Drama","title":"Hung Up","language":"en","type":"Movie","_key":"53636"} +{"label":"Jack McCafferty","version":16,"id":"73298","lastModified":"1301902330000","name":"Jack McCafferty","type":"Person","_key":"53637"} +{"label":"Chris Moore","version":18,"id":"73299","lastModified":"1301901780000","name":"Chris Moore","type":"Person","_key":"53638"} +{"label":"Elizabeth Younger","version":17,"id":"73300","lastModified":"1301902330000","name":"Elizabeth Younger","type":"Person","_key":"53639"} +{"label":"Luis Solis","version":17,"id":"73301","lastModified":"1301901950000","name":"Luis Solis","type":"Person","_key":"53640"} +{"label":"Brad Mallette","version":18,"id":"73302","lastModified":"1301902329000","name":"Brad Mallette","type":"Person","_key":"53641"} +{"label":"Marlan Cheatham","version":17,"id":"73303","lastModified":"1301901950000","name":"Marlan Cheatham","type":"Person","_key":"53642"} +{"label":"Libby Carmichael","version":17,"id":"73304","lastModified":"1301902330000","name":"Libby Carmichael","type":"Person","_key":"53643"} +{"label":"Mary Ann Bourn","version":16,"id":"73305","lastModified":"1301902330000","name":"Mary Ann Bourn","type":"Person","_key":"53644"} +{"label":"Gregory Miller","version":16,"id":"73307","lastModified":"1301902329000","name":"Gregory Miller","type":"Person","_key":"53645"} +{"label":"North Woods","description":"Many secrets lie burried in the North Woods...but should they be unearthed?","id":"12675","runtime":0,"version":103,"lastModified":"1302023616000","title":"North Woods","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53646"} +{"label":"Sarah McCraw","version":16,"id":"73321","lastModified":"1301902176000","name":"Sarah McCraw","type":"Person","_key":"53647"} +{"label":"Andrew Roach","version":16,"id":"73322","lastModified":"1301902195000","name":"Andrew Roach","type":"Person","_key":"53648"} +{"label":"Lauren Orsini","version":16,"id":"73323","lastModified":"1301902146000","name":"Lauren Orsini","type":"Person","_key":"53649"} +{"label":"Amanda Grussaute","version":16,"id":"73324","lastModified":"1301902330000","name":"Amanda Grussaute","type":"Person","_key":"53650"} +{"label":"Lisa Denise","version":16,"id":"73325","lastModified":"1301902330000","name":"Lisa Denise","type":"Person","_key":"53651"} +{"label":"Andria Smith","version":16,"id":"73326","lastModified":"1301902362000","name":"Andria Smith","type":"Person","_key":"53652"} +{"label":"Heather McColl","version":16,"id":"73327","lastModified":"1301902146000","name":"Heather McColl","type":"Person","_key":"53653"} +{"label":"Lock In","description":"The key out is to stay alive...or die trying!","id":"12676","runtime":87,"trailer":"http:\/\/www.youtube.com\/watch?v=632","version":66,"lastModified":"1301904009000","genre":"Horror","title":"Lock In","releaseDate":1196467200000,"language":"en","type":"Movie","_key":"53654"} +{"label":"Brittany Lynn","version":15,"id":"73308","lastModified":"1301902250000","name":"Brittany Lynn","type":"Person","_key":"53655"} +{"label":"Taylor Rotenberry","version":15,"id":"73309","lastModified":"1301901871000","name":"Taylor Rotenberry","type":"Person","_key":"53656"} +{"label":"Geneva Torrence","version":15,"id":"73310","lastModified":"1301902250000","name":"Geneva Torrence","type":"Person","_key":"53657"} +{"label":"Ursula Banks","version":15,"id":"73311","lastModified":"1301902250000","name":"Ursula Banks","type":"Person","_key":"53658"} +{"label":"Jean Paul Guillory","version":15,"id":"73312","lastModified":"1301902250000","name":"Jean Paul Guillory","type":"Person","_key":"53659"} +{"label":"Jasmine Calvert","version":15,"id":"73313","lastModified":"1301902250000","name":"Jasmine Calvert","type":"Person","_key":"53660"} +{"label":"Mary Caitlin Fertitta","version":15,"id":"73314","lastModified":"1301902249000","name":"Mary Caitlin Fertitta","type":"Person","_key":"53661"} +{"label":"Daniel Piazza","version":24,"id":"73315","lastModified":"1301902352000","name":"Daniel Piazza","type":"Person","_key":"53662"} +{"label":"Paul Donnell","version":15,"id":"73316","lastModified":"1301902250000","name":"Paul Donnell","type":"Person","_key":"53663"} +{"label":"Sarah King","version":15,"id":"73317","lastModified":"1301902249000","name":"Sarah King","type":"Person","_key":"53664"} +{"label":"Brianna Robinson","version":15,"id":"73318","lastModified":"1301902250000","name":"Brianna Robinson","type":"Person","_key":"53665"} +{"label":"Chase Warner","version":15,"id":"73319","lastModified":"1301902249000","name":"Chase Warner","type":"Person","_key":"53666"} +{"label":"Breanna Miller","version":15,"id":"73320","lastModified":"1301902249000","name":"Breanna Miller","type":"Person","_key":"53667"} +{"label":"BackWoods","description":"A British couple's Spanish holiday turns to horror after a disturbing discovery on a hunting trip.","id":"12677","runtime":97,"imdbId":"tt0473333","version":102,"lastModified":"1301904380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bc939f9017a3c57fe0181dd\/blackwoods-mid.jpg","title":"BackWoods","releaseDate":1171584000000,"language":"en","type":"Movie","_key":"53668"} +{"label":"Koldo Serra","version":9,"id":"225971","lastModified":"1301904021000","name":"Koldo Serra","type":"Person","_key":"53669"} +{"label":"Jon Ari\u00f1o","version":21,"id":"119970","lastModified":"1301902806000","name":"Jon Ari\u00f1o","type":"Person","_key":"53670"} +{"label":"Castro","description":"Four characters are looking for a man called Castro, but we don't know why. For some mysterious reason, Castro is running. He has left his life behind, and survives by hiding in a room in a small city. He is basically alone, but someone has appeared in his life, Celia. She is young, beautiful, and sometimes cruel.","id":"12679","runtime":85,"imdbId":"tt1404022","version":67,"lastModified":"1301012855000","genre":"Action","title":"Castro","releaseDate":1235865600000,"language":"en","type":"Movie","_key":"53671"} +{"label":"Alejo Moguillansky","version":25,"id":"128046","lastModified":"1301902733000","name":"Alejo Moguillansky","type":"Person","_key":"53672"} +{"label":"Edgardo Castro","version":23,"id":"128047","lastModified":"1301903021000","name":"Edgardo Castro","type":"Person","_key":"53673"} +{"label":"Julia Mart\u00ednez Rubio","version":23,"id":"128048","lastModified":"1301903077000","name":"Julia Mart\u00ednez Rubio","type":"Person","_key":"53674"} +{"label":"Alberto Su\u00e1rez","version":22,"id":"128049","lastModified":"1301902750000","name":"Alberto Su\u00e1rez","type":"Person","_key":"53675"} +{"label":"Surviving the Terror","description":"No overview found.","id":"12680","runtime":0,"imdbId":"tt0399664","version":525,"lastModified":"1302023557000","title":"Surviving the Terror","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53676"} +{"label":"You am I","description":"No overview found.","id":"12681","runtime":90,"imdbId":"tt0811164","version":389,"lastModified":"1302023527000","title":"You am I","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53677"} +{"label":"Brotherhood of Blood","description":"Driven by vengeance, thirsty for blood... and damned to hell! Guarded by vampires and chained in a dark cellar by the mighty vampire King Pashek, crack vampire hunter Carrie Rieger's time is running out.her relentless quest to crush the world's undead scourge has brought her to the home of Pashek. But she is not here to hill him. Instead she wishes to join forces with her immortal enemies in an effort to rise up against an even more terrifying threat, one that would chill the soul of even the mo","id":"12682","runtime":90,"imdbId":"tt0493404","version":92,"lastModified":"1301906475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e2\/4bc939fa017a3c57fe0181e2\/brotherhood-of-blood-mid.jpg","genre":"Horror","title":"Brotherhood of Blood","releaseDate":1192060800000,"language":"en","tagline":"Hell has come to Earth!","type":"Movie","_key":"53678"} +{"label":"Peter Scheerer","version":43,"id":"40607","lastModified":"1301901975000","name":"Peter Scheerer","type":"Person","_key":"53679"} +{"label":"Michael Roesch","version":43,"id":"40610","lastModified":"1301901798000","name":"Michael Roesch","type":"Person","_key":"53680"} +{"label":"Victoria Pratt","version":27,"id":"20980","lastModified":"1301901414000","name":"Victoria Pratt","type":"Person","_key":"53681"} +{"label":"Wes Ramsey","version":23,"id":"78595","lastModified":"1301901458000","name":"Wes Ramsey","type":"Person","_key":"53682"} +{"label":"Alone in the Dark 2","description":"When the night falls, and the creatures of the dark are crawling out of the shadows, there is only one man who stands between us and evil: Edward Carnby.","id":"12683","runtime":88,"imdbId":"tt0913951","version":247,"lastModified":"1301906062000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e7\/4bc939fa017a3c57fe0181e7\/alone-in-the-dark-2-mid.jpg","studio":"Boll Kino Beteiligungs GmbH & Co. KG","genre":"Action","title":"Alone in the Dark 2","releaseDate":1220227200000,"language":"en","type":"Movie","_key":"53683"} +{"label":"Rick Yune","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2fa\/4d8a34bf7b9aa13aed0002fa\/rick-yune-profile.jpg","version":41,"id":"10883","lastModified":"1301901198000","name":"Rick Yune","type":"Person","_key":"53684"} +{"label":"Rachel Specter","version":24,"id":"101085","lastModified":"1301979996000","name":"Rachel Specter","type":"Person","_key":"53685"} +{"label":"Brooklyn Sudano","version":17,"id":"101091","lastModified":"1301902466000","name":"Brooklyn Sudano","type":"Person","_key":"53686"} +{"label":"Allison Lange","version":24,"id":"101092","lastModified":"1301902046000","name":"Allison Lange","type":"Person","_key":"53687"} +{"label":"Sabotage","description":"No overview found.","id":"12684","runtime":76,"imdbId":"tt0028212","version":183,"lastModified":"1301907142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4bc939fd017a3c57fe0181f0\/sabotage-mid.jpg","studio":"Gaumont British Production","genre":"Mystery","title":"Sabotage","releaseDate":-1043971200000,"language":"en","type":"Movie","_key":"53688"} +{"label":"Desmond Tester","version":16,"id":"102885","lastModified":"1301902249000","name":"Desmond Tester","type":"Person","_key":"53689"} +{"label":"Joyce Barbour","version":16,"id":"102886","lastModified":"1301902892000","name":"Joyce Barbour","type":"Person","_key":"53690"} +{"label":"Matthew Boulton","version":20,"id":"102888","lastModified":"1301902944000","name":"Matthew Boulton","type":"Person","_key":"53691"} +{"label":"S.J. Warmington","version":16,"id":"102889","lastModified":"1301902892000","name":"S.J. Warmington","type":"Person","_key":"53692"} +{"label":"William Dewhurst","version":16,"id":"102891","lastModified":"1301902892000","name":"William Dewhurst","type":"Person","_key":"53693"} +{"label":"Bloodrayne: The Third Reich","description":"No overview found.","id":"12685","runtime":100,"imdbId":"tt1153546","trailer":"http:\/\/www.youtube.com\/watch?v=FjuZFAB8nGY","version":98,"lastModified":"1300979503000","title":"Bloodrayne: The Third Reich","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53694"} +{"label":"Zombie Massacre","description":"No overview found.","id":"12686","runtime":0,"imdbId":"tt0403719","version":268,"lastModified":"1302023450000","title":"Zombie Massacre","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53695"} +{"label":"Psycho","description":"No overview found.","id":"12687","version":455,"lastModified":"1301903760000","genre":"Drama","title":"Psycho","language":"en","type":"Movie","_key":"53696"} +{"label":"Bling Bling","description":"No overview found.","id":"12688","runtime":60,"imdbId":"tt0395956","version":59,"lastModified":"1301907439000","studio":"TroubleShooting Films","genre":"Documentary","title":"Bling Bling","releaseDate":978307200000,"language":"en","type":"Movie","_key":"53697"} +{"label":"Heike Woosey","version":19,"id":"73353","lastModified":"1301902326000","name":"Heike Woosey","type":"Person","_key":"53698"} +{"label":"Angus, Thongs and Perfect Snogging","description":"Georgia Nicolson is fourteen, lives with nosey parents who don't understand her, an annoying three year old sister and has to wear a beret to school. She would, however, rather be blonde, have a smaller nose and a boyfriend. Revolving around her hilarious journal entries, prepare to be engulfed in the world of the soaring joys and bottomless angst of being a teenager. ","id":"12689","runtime":100,"imdbId":"tt0963743","trailer":"http:\/\/www.youtube.com\/watch?v=mEVQt3dg1_w","homepage":"http:\/\/www.angusthongsmovie.com\/intl\/uk\/","version":178,"lastModified":"1301903435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8c\/4d2d53097b9aa11a6a000d8c\/angus-thongs-and-perfect-snogging-mid.jpg","studio":"Nickelodeon Movies","genre":"Comedy","title":"Angus, Thongs and Perfect Snogging","releaseDate":1216944000000,"language":"en","type":"Movie","_key":"53699"} +{"label":"Georgia Groome","version":21,"id":"73355","lastModified":"1301901722000","name":"Georgia Groome","type":"Person","_key":"53700"} +{"label":"Eleanor Tomlinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bbe\/4d7ab7985e73d62836000bbe\/eleanor-tomlinson-profile.jpg","version":25,"id":"73357","lastModified":"1301901602000","name":"Eleanor Tomlinson","type":"Person","_key":"53701"} +{"label":"Tommy Bastow","version":19,"id":"73358","lastModified":"1301902075000","name":"Tommy Bastow","type":"Person","_key":"53702"} +{"label":"Alan Davies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c74\/4cf150315e73d61929000c74\/alan-davies-profile.jpg","version":21,"id":"47737","lastModified":"1301901918000","name":"Alan Davies","type":"Person","_key":"53703"} +{"label":"Karen Taylor","version":19,"id":"73359","lastModified":"1301901871000","name":"Karen Taylor","type":"Person","_key":"53704"} +{"label":"Liam Hess","version":19,"id":"73360","lastModified":"1301902249000","name":"Liam Hess","type":"Person","_key":"53705"} +{"label":"Georgia Henshaw","version":19,"id":"73361","lastModified":"1301902249000","name":"Georgia Henshaw","type":"Person","_key":"53706"} +{"label":"Manjeeven Grewal","version":19,"id":"73362","lastModified":"1301902249000","name":"Manjeeven Grewal","type":"Person","_key":"53707"} +{"label":"Appaloosa","description":"Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.","id":"12690","runtime":115,"imdbId":"tt0800308","trailer":"http:\/\/www.youtube.com\/watch?v=h57n6R9pbU0","version":263,"lastModified":"1301902312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4bc93a02017a3c57fe01821f\/appaloosa-mid.jpg","studio":"Eight Gauge Productions","genre":"Action","title":"Appaloosa","releaseDate":1222992000000,"language":"en","tagline":"Feelings get you killed.","type":"Movie","_key":"53708"} +{"label":"Unschuld","description":"No overview found.","id":"12691","runtime":0,"imdbId":"tt0943234","version":58,"lastModified":"1301908566000","studio":"novapool production","title":"Unschuld","releaseDate":1221609600000,"language":"en","type":"Movie","_key":"53709"} +{"label":"Verr\u00fcckt nach Paris","description":"No overview found.","id":"12692","runtime":90,"imdbId":"tt0327226","version":38,"lastModified":"1301907392000","studio":"Radio Bremen","title":"Verr\u00fcckt nach Paris","releaseDate":1031788800000,"language":"en","type":"Movie","_key":"53710"} +{"label":"Eike Besuden","version":20,"id":"73364","lastModified":"1301902369000","name":"Eike Besuden","type":"Person","_key":"53711"} +{"label":"Pago Bahlke","version":20,"id":"73369","lastModified":"1301901950000","name":"Pago Bahlke","type":"Person","_key":"53712"} +{"label":"Paula Kleine","version":20,"id":"73366","lastModified":"1301902377000","name":"Paula Kleine","type":"Person","_key":"53713"} +{"label":"Wolfgang Goettsch","version":20,"id":"73367","lastModified":"1301902330000","name":"Wolfgang Goettsch","type":"Person","_key":"53714"} +{"label":"Frank Grabski","version":20,"id":"73368","lastModified":"1301902330000","name":"Frank Grabski","type":"Person","_key":"53715"} +{"label":"Sandra Tkaczyk","version":20,"id":"73370","lastModified":"1301901950000","name":"Sandra Tkaczyk","type":"Person","_key":"53716"} +{"label":"Rondo","description":"Description : Belgium, 1943. The situation is becoming unbearable for the Field family : antisemitic persecutions become common and violent. Joseph Field, the father, rebels against the occupying army. He is arrested and deported. Esther, his wife, decides to go \u201cunderground\u201d: she enters the clandestinity. She gives her oldest son to look after with Hermann, her father-in-law. He knows an escape n","id":"12693","runtime":0,"version":64,"lastModified":"1300979505000","studio":"Saga Film","genre":"Drama","title":"Rondo","language":"en","type":"Movie","_key":"53717"} +{"label":"Pierre Dherte","version":21,"id":"73371","lastModified":"1301902198000","name":"Pierre Dherte","type":"Person","_key":"53718"} +{"label":"Nina Mazodier","version":21,"id":"73372","lastModified":"1301902183000","name":"Nina Mazodier","type":"Person","_key":"53719"} +{"label":"Hannah Mazodier","version":17,"id":"73373","lastModified":"1301902329000","name":"Hannah Mazodier","type":"Person","_key":"53720"} +{"label":"Olivier van Malderghem","version":22,"id":"73374","lastModified":"1301902330000","name":"Olivier van Malderghem","type":"Person","_key":"53721"} +{"label":"Cheech & Chong's Still Smokin'","description":"Cheech & Chong are invited to a celebrity party in Amsterdam. When they get there, however, it turns out that the guy who invited them has taken off with all the money. They are actually expecting Burt Reynolds and Dolly Parton, so our heroes get to be Mr. Burt and Mr. Dolly.","id":"12695","runtime":91,"imdbId":"tt0086366","trailer":"http:\/\/www.youtube.com\/watch?v=n4-GWRZMTLo","version":102,"lastModified":"1301902270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/335\/4bea23f0017a3c35b4001335\/still-smokin-mid.jpg","genre":"Comedy","title":"Cheech & Chong's Still Smokin'","releaseDate":421027200000,"language":"en","tagline":"They'll have you rolling in your seats!","type":"Movie","_key":"53722"} +{"label":"Hans Man in 't Veld","version":24,"id":"74014","lastModified":"1301901950000","name":"Hans Man in 't Veld","type":"Person","_key":"53723"} +{"label":"Shireen Strooker","version":26,"id":"74015","lastModified":"1301901782000","name":"Shireen Strooker","type":"Person","_key":"53724"} +{"label":"Susan Hahn","version":24,"id":"74016","lastModified":"1301902329000","name":"Susan Hahn","type":"Person","_key":"53725"} +{"label":"Hierankl","description":"No overview found.","id":"12696","runtime":93,"imdbId":"tt0371710","version":54,"lastModified":"1301906611000","genre":"Drama","title":"Hierankl","releaseDate":1057017600000,"language":"en","type":"Movie","_key":"53726"} +{"label":"Peter Simonischek","version":20,"id":"49795","lastModified":"1301901642000","name":"Peter Simonischek","type":"Person","_key":"53727"} +{"label":"Ditte Schupp","version":20,"id":"74005","lastModified":"1301902249000","name":"Ditte Schupp","type":"Person","_key":"53728"} +{"label":"Vroni Bittenbinder","version":19,"id":"74006","lastModified":"1301902075000","name":"Vroni Bittenbinder","type":"Person","_key":"53729"} +{"label":"Paolo Walcher","version":19,"id":"74007","lastModified":"1301902249000","name":"Paolo Walcher","type":"Person","_key":"53730"} +{"label":"Hans Steinbichler","version":21,"id":"74008","lastModified":"1301901722000","name":"Hans Steinbichler","type":"Person","_key":"53731"} +{"label":"Lauras Stern","description":"No overview found.","id":"12697","runtime":75,"imdbId":"tt0416908","version":78,"lastModified":"1301904059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/132\/4c7a051e7b9aa176bf000132\/lauras-stern-mid.jpg","genre":"Animation","title":"Lauras Stern","releaseDate":1095552000000,"language":"en","type":"Movie","_key":"53732"} +{"label":"C\u00e9line Vogt","version":20,"id":"73995","lastModified":"1301901871000","name":"C\u00e9line Vogt","type":"Person","_key":"53733"} +{"label":"Sandro Iannotta","version":20,"id":"73996","lastModified":"1301901722000","name":"Sandro Iannotta","type":"Person","_key":"53734"} +{"label":"Maximilian Artajo","version":20,"id":"68190","lastModified":"1301901871000","name":"Maximilian Artajo","type":"Person","_key":"53735"} +{"label":"Brit G\u00fclland","version":20,"id":"73997","lastModified":"1301901722000","name":"Brit G\u00fclland","type":"Person","_key":"53736"} +{"label":"Martin Reinl","version":20,"id":"73998","lastModified":"1301902075000","name":"Martin Reinl","type":"Person","_key":"53737"} +{"label":"The Fog of War: Eleven Lessons from the Life of Robert S. McNamara","description":"Using archival footage, United States Cabinet conversation recordings, and an interview of the eighty-five-year-old Robert McNamara, The Fog of War depicts his life, from working as a WWII Whiz Kid military officer, to being the Ford Motor Company's president, to managing the American Vietnam War, as defense secretary for presidents Kennedy and Johnson.","id":"12698","runtime":95,"imdbId":"tt0317910","version":142,"lastModified":"1301904070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24d\/4bc93a08017a3c57fe01824d\/the-fog-of-war-eleven-lessons-from-the-life-of-robert-s-mcnamara-mid.jpg","genre":"Documentary","title":"The Fog of War: Eleven Lessons from the Life of Robert S. McNamara","releaseDate":1053475200000,"language":"en","type":"Movie","_key":"53738"} +{"label":"Robert McNamara","version":19,"id":"73985","lastModified":"1301901611000","name":"Robert McNamara","type":"Person","_key":"53739"} +{"label":"Barry Goldwater","version":19,"id":"73987","lastModified":"1301901338000","name":"Barry Goldwater","type":"Person","_key":"53740"} +{"label":"Lyndon Johnson","version":19,"id":"73988","lastModified":"1301901722000","name":"Lyndon Johnson","type":"Person","_key":"53741"} +{"label":"Nikita Khrushchev","version":19,"id":"73989","lastModified":"1301902249000","name":"Nikita Khrushchev","type":"Person","_key":"53742"} +{"label":"Fidel Castro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03e\/4bce1196017a3c24c200003e\/fidel-castro-profile.jpg","version":25,"id":"115863","lastModified":"1301902781000","name":"Fidel Castro","type":"Person","_key":"53743"} +{"label":"Hellraiser: Hellworld","description":"Pinhead returns to terrorize computer hackers who have opened a virtual Lament Configuration on the website Hellworld.com.","id":"12699","runtime":91,"imdbId":"tt0354623","trailer":"http:\/\/www.youtube.com\/watch?v=742","version":130,"lastModified":"1301902895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/256\/4bc93a09017a3c57fe018256\/hellraiser-hellworld-mid.jpg","genre":"Horror","title":"Hellraiser: Hellworld","releaseDate":1125964800000,"language":"en","type":"Movie","_key":"53744"} +{"label":"Stelian Urian","version":20,"id":"73966","lastModified":"1301901991000","name":"Stelian Urian","type":"Person","_key":"53745"} +{"label":"Anna Tolputt","version":19,"id":"73967","lastModified":"1301902075000","name":"Anna Tolputt","type":"Person","_key":"53746"} +{"label":"Dominion: Prequel to the Exorcist","description":"Years before Father Lancaster Merrin helped save Regan MacNeil's soul, he first encounters the demon Pazuzu in East Africa. This is the tale of Father Merrin's initial battle with Pazuzu and the rediscovery of his faith.","id":"12700","runtime":117,"imdbId":"tt0449086","version":199,"lastModified":"1301904766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/767\/4d7d596b5e73d65ec6002767\/dominion-prequel-to-the-exorcist-mid.jpg","studio":"Morgan Creek Productions","genre":"Horror","title":"Dominion: Prequel to the Exorcist","releaseDate":1116547200000,"language":"en","type":"Movie","_key":"53747"} +{"label":"Billy Crawford","version":21,"id":"73963","lastModified":"1301902075000","name":"Billy Crawford","type":"Person","_key":"53748"} +{"label":"Revolution","description":"New York trapper Tom Dobb becomes an unwilling participant in the American Revolution after his son Ned is drafted into the Army by the villainous Sergeant Major Peasy. Tom attempts to find his son, and eventually becomes convinced that he must take a stand and fight for the freedom of the Colonies, alongside the aristocratic rebel Daisy McConnahay. As Tom undergoes his change of heart, the events of the war unfold in large-scale grandeur.","id":"12701","runtime":126,"imdbId":"tt0089913","version":122,"lastModified":"1301903320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4bc93a10017a3c57fe018271\/revolution-mid.jpg","genre":"Adventure","title":"Revolution","releaseDate":504316800000,"language":"en","type":"Movie","_key":"53749"} +{"label":"Sid Owen","version":19,"id":"74041","lastModified":"1301901635000","name":"Sid Owen","type":"Person","_key":"53750"} +{"label":"Annie Lennox","version":21,"id":"74042","lastModified":"1301901777000","name":"Annie Lennox","type":"Person","_key":"53751"} +{"label":"Dave King","version":25,"id":"74043","lastModified":"1301901931000","name":"Dave King","type":"Person","_key":"53752"} +{"label":"John Wells","version":40,"id":"47333","lastModified":"1302068253000","name":"John Wells","type":"Person","_key":"53753"} +{"label":"Critters 3: You Are What They Eat","description":"In what appears to be a cross between Critters and The Towering Inferno, the residents of a shoddy L.A. apartment block are chased up to the roof by hoards of the eponymous hairy horrors.","id":"12702","runtime":86,"imdbId":"tt0101627","version":119,"lastModified":"1301902605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27a\/4bc93a11017a3c57fe01827a\/critters-3-you-are-what-they-eat-mid.jpg","genre":"Comedy","title":"Critters 3: You Are What They Eat","releaseDate":662688000000,"language":"en","type":"Movie","_key":"53754"} +{"label":"John Calvin","version":22,"id":"73960","lastModified":"1301901774000","name":"John Calvin","type":"Person","_key":"53755"} +{"label":"Christian Cousins","version":21,"id":"73961","lastModified":"1301901871000","name":"Christian Cousins","type":"Person","_key":"53756"} +{"label":"Nina Axelrod","version":25,"id":"27241","lastModified":"1301901971000","name":"Nina Axelrod","type":"Person","_key":"53757"} +{"label":"Kristine Peterson","version":32,"id":"73962","lastModified":"1301901659000","name":"Kristine Peterson","type":"Person","_key":"53758"} +{"label":"The Brown Bunny","description":"Bud Clay races motorcycles in the 250cc Formula II class of road racing. After a race in New Hampshire, he has five days to get to his next race in California. During his road trip, he is haunted by memories of the last time he saw Daisy, his true love.","id":"12703","runtime":93,"imdbId":"tt0330099","version":125,"lastModified":"1301903613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/287\/4bc93a11017a3c57fe018287\/the-brown-bunny-mid.jpg","genre":"Drama","title":"The Brown Bunny","releaseDate":1053475200000,"language":"en","type":"Movie","_key":"53759"} +{"label":"Cheryl Tiegs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a8\/4c225d0b7b9aa130e50003a8\/cheryl-tiegs-profile.jpg","version":21,"id":"73952","lastModified":"1301901855000","name":"Cheryl Tiegs","type":"Person","_key":"53760"} +{"label":"Elizabeth Blake","version":19,"id":"73953","lastModified":"1301901871000","name":"Elizabeth Blake","type":"Person","_key":"53761"} +{"label":"Anna Vareschi","version":19,"id":"73954","lastModified":"1301902075000","name":"Anna Vareschi","type":"Person","_key":"53762"} +{"label":"Mary Morasky","version":19,"id":"73955","lastModified":"1301902075000","name":"Mary Morasky","type":"Person","_key":"53763"} +{"label":"Ishtar","description":"Two terrible lounge singers get booked to play a gig in a Moroccan hotel but somehow become pawns in an international power play between the CIA, the Emir of Ishtar, and the rebels trying to overthrow his regime","id":"12704","runtime":107,"imdbId":"tt0093278","trailer":"http:\/\/www.youtube.com\/watch?v=8KdQ7Gig770","version":111,"lastModified":"1301903470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/273\/4c60c8a07b9aa172dc000273\/ishtar-mid.jpg","genre":"Action","title":"Ishtar","releaseDate":548035200000,"language":"en","tagline":"Two terrible lounge singers get booked to play a gig in a Moroccan hotel but somehow become pawns in an international power play between the CIA, the Emir of Ishtar, and the rebels trying to overthrow his regime","type":"Movie","_key":"53764"} +{"label":"Smokey and the Bandit II","description":"The Bandit goes on another cross-country run, transporting an elephant from Florida to Texas. And, once again, Sheriff Buford T. Justice is on his tail.","id":"12705","runtime":100,"imdbId":"tt0081529","trailer":"http:\/\/www.youtube.com\/watch?v=RdCUque5H2M","version":114,"lastModified":"1301902659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29a\/4bc93a15017a3c57fe01829a\/smokey-and-the-bandit-ii-mid.jpg","genre":"Action","title":"Smokey and the Bandit II","releaseDate":335145600000,"language":"en","type":"Movie","_key":"53765"} +{"label":"Paul Williams","version":33,"id":"35040","lastModified":"1301901356000","name":"Paul Williams","type":"Person","_key":"53766"} +{"label":"Croupier","description":"A thriller set against the dark backdrop of London's gambling world. Clive Owen is Jack Manfred, an aspiring writer, forced to take a job as a croupier to make ends meet. The job gradually takes over his life, affecting his relationship with lover Marion (Gina McKee). Jack is approached by Jani (Alex Kingston), a gambler who is down on her luck, to be the inside man during a heist at the casino where he works. Jack carefully considers the odds; it all looks so simple, but even a professional li","id":"12706","runtime":94,"imdbId":"tt0159382","version":128,"lastModified":"1301903271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc93a16017a3c57fe0182a7\/croupier-mid.jpg","genre":"Drama","title":"Croupier","releaseDate":898732800000,"language":"en","type":"Movie","_key":"53767"} +{"label":"Nick Reding","version":21,"id":"73946","lastModified":"1301901930000","name":"Nick Reding","type":"Person","_key":"53768"} +{"label":"Barnaby Kay","version":20,"id":"73947","lastModified":"1301901940000","name":"Barnaby Kay","type":"Person","_key":"53769"} +{"label":"Orca","description":"After witnessing the killing of his mate and offspring at Captain Nolan's hands, a vengeful killer whale goes on a rampage in the fisherman's Newfoundland harbor. Under pressure from the villagers, Nolan, Rachel and Umilak sail after the great beast, who will meet them on it's own turf.","id":"12707","runtime":92,"imdbId":"tt0076504","version":126,"lastModified":"1301904248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ce\/4cdabf9d5e73d676cf0009ce\/orca-mid.jpg","genre":"Horror","title":"Orca","releaseDate":237772800000,"language":"en","tagline":"The killer whale!","type":"Movie","_key":"53770"} +{"label":"That Touch of Mink","description":"A rich businessman and a young woman are attracted to each other, but he only wants an affair while she wants to save her virginity for marriage.","id":"12708","runtime":99,"imdbId":"tt0056575","trailer":"http:\/\/www.youtube.com\/watch?v=1339","version":102,"lastModified":"1301904227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45d\/4ce1da515e73d60f6f00045d\/that-touch-of-mink-mid.jpg","genre":"Comedy","title":"That Touch of Mink","releaseDate":-238291200000,"language":"en","type":"Movie","_key":"53771"} +{"label":"Audrey Meadows","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31f\/4d98b7445e73d623b000531f\/audrey-meadows-profile.jpg","version":21,"id":"73942","lastModified":"1301901871000","name":"Audrey Meadows","type":"Person","_key":"53772"} +{"label":"Alan Hewitt","version":23,"id":"73943","lastModified":"1301902137000","name":"Alan Hewitt","type":"Person","_key":"53773"} +{"label":"Ridicule","description":"To get royal backing on a needed drainage project, a poor French lord must learn to play the delicate games of wit at court at Versailles.","id":"12709","runtime":102,"imdbId":"tt0117477","version":120,"lastModified":"1301904386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4cd741d05e73d676cd000491\/ridicule-mid.jpg","genre":"Comedy","title":"Ridicule","releaseDate":831600000000,"language":"en","type":"Movie","_key":"53774"} +{"label":"Judith Godr\u00e8che","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/501\/4cd744f85e73d676cf000501\/judith-godreche-profile.jpg","version":47,"id":"73937","lastModified":"1301901467000","name":"Judith Godr\u00e8che","type":"Person","_key":"53775"} +{"label":"Big Business","description":"In the 1940s in the small town of Jupiter Hollow, two sets of identical twins are born in the same hospital on the same night. One set to a poor local family and the other to a rich family just passing through. The dizzy nurse on duty accidentally mixes the twins unbeknown to the parents. Our story flashes forward to the 1980s where the mismatched sets of twins are about to cross paths.","id":"12710","runtime":97,"imdbId":"tt0094739","version":139,"lastModified":"1302023121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4d99a7267b9aa13c72002216\/big-business-mid.jpg","genre":"Comedy","title":"Big Business","releaseDate":581904000000,"language":"en","type":"Movie","_key":"53776"} +{"label":"Daniel Gerroll","version":20,"id":"73933","lastModified":"1301901722000","name":"Daniel Gerroll","type":"Person","_key":"53777"} +{"label":"The Olsen Gang Outta Sight","description":"Egon is starting to be a little forgetful; he forgot the zone number, so he fails to open the strongbox. When he gets out of Vridslose State Prison, Kjeld and Benny have become associates of Yvonne's cousin Georg from America. He is not just some old-fashioned strongbox thief that can't remember like Egon, but a young hip IT criminal, that thinks that everyone else is inferior. However, Egon doesn't take lightly to the Georg's patronizing so he sabotages Georg's computer and ruins his cup. This ","id":"12711","runtime":105,"imdbId":"tt0076495","version":50,"lastModified":"1301902102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d3\/4bc93a1a017a3c57fe0182d3\/olsen-banden-deruda-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang Outta Sight","releaseDate":244425600000,"language":"en","type":"Movie","_key":"53778"} +{"label":"Claus Ryskj\u00e6r","version":21,"id":"73929","lastModified":"1301902249000","name":"Claus Ryskj\u00e6r","type":"Person","_key":"53779"} +{"label":"Paul Hagen","version":22,"id":"73930","lastModified":"1301901648000","name":"Paul Hagen","type":"Person","_key":"53780"} +{"label":"The Olsen Gang Never Surrenders","description":"Egon plans to exploit knowledge gained during his latest term of incarceration. By stealing the unmanipulated financial records of DanInvest he obtains the majority of the stocks in the department store Magasin du Nord, just in time for their closing sale. The attempt to get the red suitcase that will save the day they rob the main vault at the EEC headquarters in Brussels and end up hijacking a tank.","id":"12712","runtime":108,"imdbId":"tt0079662","version":50,"lastModified":"1301904945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4bc93a1d017a3c57fe0182dc\/olsen-banden-overgiver-sig-aldrig-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"The Olsen Gang Never Surrenders","releaseDate":315014400000,"language":"en","type":"Movie","_key":"53781"} +{"label":"Ole Ernst","version":25,"id":"73925","lastModified":"1301902384000","name":"Ole Ernst","type":"Person","_key":"53782"} +{"label":"L'Ivresse du pouvoir","description":"A magistrate investigates a corporate executive.","id":"12713","runtime":110,"imdbId":"tt0463486","version":74,"lastModified":"1301904297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ea\/4bc93a1e017a3c57fe0182ea\/l-ivresse-du-pouvoir-mid.jpg","genre":"Drama","title":"L'Ivresse du pouvoir","releaseDate":1140048000000,"language":"en","type":"Movie","_key":"53783"} +{"label":"Patrick Bruel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4d4015797b9aa15bad00206c\/patrick-bruel-profile.jpg","version":37,"birthday":"-335667600000","id":"73827","birthplace":"Tlemcen, Algeria","lastModified":"1301901523000","name":"Patrick Bruel","type":"Person","_key":"53784"} +{"label":"Marilyne Canto","version":27,"id":"73828","lastModified":"1301901698000","name":"Marilyne Canto","type":"Person","_key":"53785"} +{"label":"She's Having a Baby","description":"No overview found.","id":"12714","runtime":106,"imdbId":"tt0096094","trailer":"http:\/\/www.youtube.com\/watch?v=OqsBuxC2g1k","version":140,"lastModified":"1301903353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f3\/4bc93a1f017a3c57fe0182f3\/she-s-having-a-baby-mid.jpg","genre":"Comedy","title":"She's Having a Baby","releaseDate":571017600000,"language":"en","type":"Movie","_key":"53786"} +{"label":"Cathryn Damon","version":20,"id":"73773","lastModified":"1301902198000","name":"Cathryn Damon","type":"Person","_key":"53787"} +{"label":"Firewalker","description":"A pair of adventurers try to track down an ancient Aztec\/Mayan\/Egyptian\/Apache horde of gold.","id":"12715","runtime":104,"imdbId":"tt0091055","version":140,"lastModified":"1301902594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a7\/4c0a4f28017a3c33d90009a7\/firewalker-mid.jpg","genre":"Action","title":"Firewalker","releaseDate":531187200000,"language":"en","type":"Movie","_key":"53788"} +{"label":"La Gloire de mon p\u00e8re","description":"No overview found.","id":"12716","runtime":105,"imdbId":"tt0099669","version":54,"lastModified":"1301905005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e1\/4cc3b5f65e73d677830017e1\/la-gloire-de-mon-pere-mid.jpg","genre":"Drama","title":"La Gloire de mon p\u00e8re","releaseDate":651888000000,"language":"en","type":"Movie","_key":"53789"} +{"label":"Philippe Caub\u00e8re","version":22,"id":"73713","lastModified":"1301902163000","name":"Philippe Caub\u00e8re","type":"Person","_key":"53790"} +{"label":"Nathalie Roussel","version":25,"id":"73714","lastModified":"1301901572000","name":"Nathalie Roussel","type":"Person","_key":"53791"} +{"label":"Julien Ciamaca","version":22,"id":"73715","lastModified":"1301902348000","name":"Julien Ciamaca","type":"Person","_key":"53792"} +{"label":"Le ch\u00e2teau de ma m\u00e8re","description":"No overview found.","id":"12717","runtime":98,"imdbId":"tt0099266","version":47,"lastModified":"1301905010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ee\/4cc3bb725e73d677830017ee\/le-chateau-de-ma-mere-mid.jpg","genre":"Drama","title":"Le ch\u00e2teau de ma m\u00e8re","releaseDate":656899200000,"language":"en","type":"Movie","_key":"53793"} +{"label":"Victorien Delamare","version":20,"id":"73716","lastModified":"1301902375000","name":"Victorien Delamare","type":"Person","_key":"53794"} +{"label":"Teenage Caveman","description":"No overview found.","id":"12718","runtime":90,"imdbId":"tt0283043","version":102,"lastModified":"1301906062000","genre":"Horror","title":"Teenage Caveman","releaseDate":1017792000000,"language":"en","type":"Movie","_key":"53795"} +{"label":"Tara Subkoff","version":26,"id":"61111","lastModified":"1301901400000","name":"Tara Subkoff","type":"Person","_key":"53796"} +{"label":"Richard Hillman","version":20,"id":"73700","lastModified":"1301901413000","name":"Richard Hillman","type":"Person","_key":"53797"} +{"label":"Flashback","description":"In 1989, clean-cut FBI man John Buckner is detailed to escort heavily-bearded Huey Walker back to jail for offences dating back to his days as a celebrated hippy radical. After Walker dupes Buckner on the train and himself falls into the hands of a couple of well-meaning refugees from the 60's, the two men with apparently nothing in common find themselves on the run together. But appearances can be deceptive.","id":"12719","runtime":108,"imdbId":"tt0099581","version":141,"lastModified":"1301903653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4bc93a21017a3c57fe018306\/flashback-mid.jpg","genre":"Action","title":"Flashback","releaseDate":633916800000,"language":"en","type":"Movie","_key":"53798"} +{"label":"Franco Amurri","version":20,"id":"73690","lastModified":"1301902075000","name":"Franco Amurri","type":"Person","_key":"53799"} +{"label":"Jisatsu Sakuru","description":"A detective is trying to find the cause of a string of suicides.","id":"12720","runtime":99,"imdbId":"tt0312843","version":96,"lastModified":"1301902291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4bc93a22017a3c57fe01830f\/jisatsu-saakuru-mid.jpg","genre":"Horror","title":"Jisatsu Sakuru","releaseDate":1009843200000,"language":"en","tagline":"Well then, goodbye everybody.","type":"Movie","_key":"53800"} +{"label":"Sayako Hagiwara","version":22,"id":"73675","lastModified":"1301902033000","name":"Sayako Hagiwara","type":"Person","_key":"53801"} +{"label":"Hideo Sako","version":23,"id":"73676","lastModified":"1301902310000","name":"Hideo Sako","type":"Person","_key":"53802"} +{"label":"Takashi Nomura","version":23,"id":"73677","lastModified":"1301902310000","name":"Takashi Nomura","type":"Person","_key":"53803"} +{"label":"No Retreat, No Surrender","description":"Young Jason Stillwell (Kurt McKinney) moves with his parents to Seattle, where local bullies harass them without mercy. Jason's father Tom (Tim Baker) does not believe in violence, so the family takes it on the chin. One day Jason enrolls in a martial arts class and quietly rises in rank to be a major contender. His mettle is tested in an international match against Ivan, a Russian champion (Jean-","id":"12721","runtime":85,"imdbId":"tt0089695","version":129,"lastModified":"1301902603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/320\/4bc93a26017a3c57fe018320\/no-retreat-no-surrender-mid.jpg","genre":"Action","title":"No Retreat, No Surrender","releaseDate":515376000000,"language":"en","type":"Movie","_key":"53804"} +{"label":"Kurt McKinney","version":21,"id":"73659","lastModified":"1301901430000","name":"Kurt McKinney","type":"Person","_key":"53805"} +{"label":"J.W. Fails","version":21,"id":"73660","lastModified":"1301901871000","name":"J.W. Fails","type":"Person","_key":"53806"} +{"label":"Kathie Sileno","version":21,"id":"73661","lastModified":"1301901722000","name":"Kathie Sileno","type":"Person","_key":"53807"} +{"label":"Tai Chung Kim","version":24,"id":"73662","lastModified":"1301902321000","name":"Tai Chung Kim","type":"Person","_key":"53808"} +{"label":"Kent Lipham","version":21,"id":"73664","lastModified":"1301902249000","name":"Kent Lipham","type":"Person","_key":"53809"} +{"label":"War Photographer","description":"Documentary about war photographer James Nachtwey, considered by many the greatest war photographer ever.","id":"12722","runtime":96,"imdbId":"tt0309061","version":141,"lastModified":"1301903344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/329\/4bc93a26017a3c57fe018329\/war-photographer-mid.jpg","genre":"Documentary","title":"War Photographer","releaseDate":978307200000,"language":"en","type":"Movie","_key":"53810"} +{"label":"James Nachtwey","version":19,"id":"73640","lastModified":"1301901871000","name":"James Nachtwey","type":"Person","_key":"53811"} +{"label":"Christiane Amanpour","version":19,"id":"73641","lastModified":"1301901871000","name":"Christiane Amanpour","type":"Person","_key":"53812"} +{"label":"Hans-Hermann Klare","version":19,"id":"73642","lastModified":"1301901871000","name":"Hans-Hermann Klare","type":"Person","_key":"53813"} +{"label":"Christiane Breustedt","version":19,"id":"73643","lastModified":"1301901871000","name":"Christiane Breustedt","type":"Person","_key":"53814"} +{"label":"Des Wright","version":19,"id":"73644","lastModified":"1301902249000","name":"Des Wright","type":"Person","_key":"53815"} +{"label":"Denis O'Neill","version":24,"id":"56491","lastModified":"1301902274000","name":"Denis O'Neill","type":"Person","_key":"53816"} +{"label":"Christian Frei","version":21,"id":"73645","lastModified":"1301901529000","name":"Christian Frei","type":"Person","_key":"53817"} +{"label":"Inventing the Abbotts","description":"Set in the 1950s, Inventing the Abbotts is a dramatic look at the life of two boys from the wrong side of the tracks and their interaction with the three daughters of local aristocrat Lloyd Abbott. The boys, Jacey and Doug have only 3 things in common: their family, table tennis and chasing the Abbott sisters.","id":"12723","runtime":110,"imdbId":"tt0119381","trailer":"http:\/\/www.youtube.com\/watch?v=41N7G1gZSes","version":221,"lastModified":"1301903895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32e\/4bc93a27017a3c57fe01832e\/inventing-the-abbotts-mid.jpg","genre":"Drama","title":"Inventing the Abbotts","releaseDate":860112000000,"language":"en","type":"Movie","_key":"53818"} +{"label":"Michael Sutton","version":20,"id":"73422","lastModified":"1301902249000","name":"Michael Sutton","type":"Person","_key":"53819"} +{"label":"The Convent","description":"A group of college students break into an abandoned convent and become possessed by demonic spirits.","id":"12724","runtime":84,"imdbId":"tt0217331","version":132,"lastModified":"1301905448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33f\/4bc93a28017a3c57fe01833f\/the-convent-mid.jpg","genre":"Horror","title":"The Convent","releaseDate":948412800000,"language":"en","type":"Movie","_key":"53820"} +{"label":"Joanna Canton","version":18,"id":"73403","lastModified":"1301903111000","name":"Joanna Canton","type":"Person","_key":"53821"} +{"label":"Richard Trapp","version":19,"id":"73404","lastModified":"1301901871000","name":"Richard Trapp","type":"Person","_key":"53822"} +{"label":"Megahn Perry","version":21,"id":"73408","lastModified":"1301901611000","name":"Megahn Perry","type":"Person","_key":"53823"} +{"label":"Liam Kyle Sullivan","version":19,"id":"73407","lastModified":"1301902249000","name":"Liam Kyle Sullivan","type":"Person","_key":"53824"} +{"label":"Dax Miller","version":17,"id":"100523","lastModified":"1301902969000","name":"Dax Miller","type":"Person","_key":"53825"} +{"label":"Ren\u00e9e Graham","version":19,"id":"73406","lastModified":"1301902249000","name":"Ren\u00e9e Graham","type":"Person","_key":"53826"} +{"label":"Jim Golden","version":16,"id":"100524","lastModified":"1301902892000","name":"Jim Golden","type":"Person","_key":"53827"} +{"label":"Chaton Anderson","version":21,"id":"73410","lastModified":"1301902249000","name":"Chaton Anderson","type":"Person","_key":"53828"} +{"label":"Kelly Mantle","version":16,"id":"100525","lastModified":"1301902892000","name":"Kelly Mantle","type":"Person","_key":"53829"} +{"label":"David Gunn","version":20,"id":"100526","lastModified":"1301902684000","name":"David Gunn","type":"Person","_key":"53830"} +{"label":"Oakley Stevenson","version":23,"id":"100527","lastModified":"1301902075000","name":"Oakley Stevenson","type":"Person","_key":"53831"} +{"label":"Allison Dunbar","version":17,"id":"100528","lastModified":"1301903038000","name":"Allison Dunbar","type":"Person","_key":"53832"} +{"label":"Mike Mendez","version":26,"id":"73409","lastModified":"1301901778000","name":"Mike Mendez","type":"Person","_key":"53833"} +{"label":"Liebeskind","description":"No overview found.","id":"12726","runtime":85,"imdbId":"tt0493432","version":45,"lastModified":"1301908548000","studio":"Beaglefilms Filmproduktions GmbH","genre":"Drama","title":"Liebeskind","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"53834"} +{"label":"Jeanette Wagner","version":20,"id":"73429","lastModified":"1301902363000","name":"Jeanette Wagner","type":"Person","_key":"53835"} +{"label":"Der F\u00e4hrmeister","description":"No overview found.","id":"12727","runtime":0,"imdbId":"tt1148781","version":28,"lastModified":"1300979509000","title":"Der F\u00e4hrmeister","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"53836"} +{"label":"J\u00f6rg Bruhn","version":20,"id":"73430","lastModified":"1301902386000","name":"J\u00f6rg Bruhn","type":"Person","_key":"53837"} +{"label":"Mondlandung","description":"No overview found.","id":"12728","runtime":90,"imdbId":"tt0396737","version":30,"lastModified":"1301908548000","title":"Mondlandung","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"53838"} +{"label":"Anton Levit","version":20,"id":"73431","lastModified":"1301902329000","name":"Anton Levit","type":"Person","_key":"53839"} +{"label":"Andrej Dronov","version":16,"id":"73432","lastModified":"1301902329000","name":"Andrej Dronov","type":"Person","_key":"53840"} +{"label":"Till Endemann","version":20,"id":"73433","lastModified":"1301902329000","name":"Till Endemann","type":"Person","_key":"53841"} +{"label":"Luca's Evangelium","description":"No overview found.","id":"12729","runtime":20,"imdbId":"tt1038687","version":29,"lastModified":"1301907364000","title":"Luca's Evangelium","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"53842"} +{"label":"Johann Sachs","version":20,"id":"73434","lastModified":"1301902366000","name":"Johann Sachs","type":"Person","_key":"53843"} +{"label":"GSG 9 - Die Spezialeinheit","description":"No overview found.","id":"12730","runtime":90,"imdbId":"tt0380371","version":121,"lastModified":"1300979509000","title":"GSG 9 - Die Spezialeinheit","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53844"} +{"label":"Wer nie beim Schwenken schwankte","description":"No overview found.","id":"12731","runtime":0,"version":17,"lastModified":"1301419108000","title":"Wer nie beim Schwenken schwankte","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"53845"} +{"label":"Mario Mentrup","version":16,"id":"73436","lastModified":"1301902329000","name":"Mario Mentrup","type":"Person","_key":"53846"} +{"label":"Georg Tiller","version":16,"id":"73437","lastModified":"1301902146000","name":"Georg Tiller","type":"Person","_key":"53847"} +{"label":"Le petit bougnat","description":"No overview found.","id":"12732","runtime":95,"imdbId":"tt0064804","version":38,"lastModified":"1301907392000","genre":"Comedy","title":"Le petit bougnat","releaseDate":10800000000,"language":"en","type":"Movie","_key":"53848"} +{"label":"Claude Amazan","version":20,"id":"73438","lastModified":"1301901950000","name":"Claude Amazan","type":"Person","_key":"53849"} +{"label":"Vincenzo Sartini","version":20,"id":"73439","lastModified":"1301901950000","name":"Vincenzo Sartini","type":"Person","_key":"53850"} +{"label":"Guy Allombert","version":20,"id":"73440","lastModified":"1301901950000","name":"Guy Allombert","type":"Person","_key":"53851"} +{"label":"Michel Th\u00e9odou","version":20,"id":"73441","lastModified":"1301902329000","name":"Michel Th\u00e9odou","type":"Person","_key":"53852"} +{"label":"Sylvie Allombert","version":20,"id":"73442","lastModified":"1301902329000","name":"Sylvie Allombert","type":"Person","_key":"53853"} +{"label":"Le secret des flamands","description":"No overview found.","id":"12733","runtime":208,"imdbId":"tt0280366","version":39,"lastModified":"1300979510000","title":"Le secret des flamands","releaseDate":126403200000,"language":"en","type":"Movie","_key":"53854"} +{"label":"Robert Valey","version":20,"id":"73443","lastModified":"1301902356000","name":"Robert Valey","type":"Person","_key":"53855"} +{"label":"G\u00e9rard H\u00e9rold","version":21,"id":"73445","lastModified":"1301902139000","name":"G\u00e9rard H\u00e9rold","type":"Person","_key":"53856"} +{"label":"Georges Rouquier","version":19,"id":"73446","lastModified":"1301901943000","name":"Georges Rouquier","type":"Person","_key":"53857"} +{"label":"Marco Bonetti","version":17,"id":"73447","lastModified":"1301901942000","name":"Marco Bonetti","type":"Person","_key":"53858"} +{"label":"Francis Lax","version":19,"id":"73448","lastModified":"1301901942000","name":"Francis Lax","type":"Person","_key":"53859"} +{"label":"Catherine Anglade","version":20,"id":"73449","lastModified":"1301902004000","name":"Catherine Anglade","type":"Person","_key":"53860"} +{"label":"Jean-Paul Frankeur","version":19,"id":"73450","lastModified":"1301901942000","name":"Jean-Paul Frankeur","type":"Person","_key":"53861"} +{"label":"Al di l\u00e0 della legge","description":"No overview found.","id":"12758","runtime":109,"imdbId":"tt0062645","version":52,"lastModified":"1301906181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/672\/4caa411f5e73d643ef000672\/al-di-la-della-legge-mid.jpg","genre":"Western","title":"Al di l\u00e0 della legge","releaseDate":-54518400000,"language":"en","type":"Movie","_key":"53862"} +{"label":"Graziella Granata","version":24,"id":"73623","lastModified":"1301902028000","name":"Graziella Granata","type":"Person","_key":"53863"} +{"label":"Giorgio Stegani","version":20,"id":"73624","lastModified":"1301902216000","name":"Giorgio Stegani","type":"Person","_key":"53864"} +{"label":"Doll Graveyard","description":"It's 1905 when 12 year old Sophia plays all by herself in her big, creepy house with only four handmade dolls as friends. When her abusive father has finally had enough, he forces her to bury them in the backyard. But, after she \"slips\" and breaks her neck, dad buries her right along with the dolls. 100 years later, the Fillbrook family moves into the very same house.","id":"12759","runtime":71,"imdbId":"tt0482495","version":100,"lastModified":"1301905371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/014\/4c1bb77f7b9aa11815000014\/doll-graveyard-mid.jpg","genre":"Horror","title":"Doll Graveyard","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"53865"} +{"label":"Jared Kusnitz","version":20,"id":"73616","lastModified":"1301901439000","name":"Jared Kusnitz","type":"Person","_key":"53866"} +{"label":"Gabrielle Lynn","version":19,"id":"73617","lastModified":"1301901554000","name":"Gabrielle Lynn","type":"Person","_key":"53867"} +{"label":"Anna Alicia Brock","version":19,"id":"73618","lastModified":"1301901934000","name":"Anna Alicia Brock","type":"Person","_key":"53868"} +{"label":"Scott Seymour","version":19,"id":"73619","lastModified":"1301902305000","name":"Scott Seymour","type":"Person","_key":"53869"} +{"label":"Ken Lyle","version":19,"id":"73620","lastModified":"1301902305000","name":"Ken Lyle","type":"Person","_key":"53870"} +{"label":"Unter Verdacht: Das Geld anderer Leute","description":"No overview found.","id":"12760","runtime":88,"version":26,"lastModified":"1301904264000","genre":"Crime","title":"Unter Verdacht: Das Geld anderer Leute","releaseDate":1195776000000,"language":"en","type":"Movie","_key":"53871"} +{"label":"Gerd Anthoff","version":16,"id":"39324","lastModified":"1301901582000","name":"Gerd Anthoff","type":"Person","_key":"53872"} +{"label":"Rudolf Krause","version":16,"id":"49702","lastModified":"1301902145000","name":"Rudolf Krause","type":"Person","_key":"53873"} +{"label":"Isabel Bongard","version":21,"id":"49703","lastModified":"1301901950000","name":"Isabel Bongard","type":"Person","_key":"53874"} +{"label":"Eisi Gulp","version":16,"id":"49704","lastModified":"1301902380000","name":"Eisi Gulp","type":"Person","_key":"53875"} +{"label":"Autumn Sonata","description":"The story of a celebrated classical pianist who is confronted by her neglected daughter.","id":"12761","runtime":99,"imdbId":"tt0077711","version":95,"lastModified":"1301906061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79a\/4cfaea557b9aa1514a00279a\/hostsonaten-mid.jpg","genre":"Drama","title":"Autumn Sonata","releaseDate":276652800000,"language":"en","type":"Movie","_key":"53876"} +{"label":"Halvar Bj\u00f6rk","version":23,"id":"73595","lastModified":"1301901949000","name":"Halvar Bj\u00f6rk","type":"Person","_key":"53877"} +{"label":"Marianne Aminoff","version":21,"id":"73596","lastModified":"1301901871000","name":"Marianne Aminoff","type":"Person","_key":"53878"} +{"label":"Broadway Danny Rose","description":"No overview found.","id":"12762","runtime":84,"imdbId":"tt0087003","version":116,"lastModified":"1301903268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/359\/4bc93a2c017a3c57fe018359\/broadway-danny-rose-mid.jpg","genre":"Comedy","title":"Broadway Danny Rose","releaseDate":444009600000,"language":"en","type":"Movie","_key":"53879"} +{"label":"Nick Apollo Forte","version":21,"id":"73591","lastModified":"1301901871000","name":"Nick Apollo Forte","type":"Person","_key":"53880"} +{"label":"Craig Vandenburgh","version":20,"id":"73592","lastModified":"1301902075000","name":"Craig Vandenburgh","type":"Person","_key":"53881"} +{"label":"Herb Reynolds","version":20,"id":"73593","lastModified":"1301902075000","name":"Herb Reynolds","type":"Person","_key":"53882"} +{"label":"Take the Lead","description":"A former professional dancer volunteers to teach dance in the New York public school system. While his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer Pierre Dulane. ","id":"12763","runtime":108,"imdbId":"tt0446046","version":216,"lastModified":"1301903105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/362\/4bc93a2c017a3c57fe018362\/take-the-lead-mid.jpg","genre":"Drama","title":"Take the Lead","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"53883"} +{"label":"Laura Benanti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/729\/4cf547fb5e73d62999000729\/laura-benanti-profile.jpg","version":23,"id":"60034","lastModified":"1301901933000","name":"Laura Benanti","type":"Person","_key":"53884"} +{"label":"Katya Virshilas","version":20,"id":"143324","lastModified":"1301902372000","name":"Katya Virshilas","type":"Person","_key":"53885"} +{"label":"Liz Friedlander","version":21,"id":"60024","lastModified":"1301901535000","name":"Liz Friedlander","type":"Person","_key":"53886"} +{"label":"Missing in Action 2: The Beginning","description":"Prequel to the first Missing In Action, set in the early 1980s it shows the capture of Colonel Braddock during the Vietnam war in the 1970s, and his captivity with other American POWs in a brutal prison camp, and his plans to escape.","id":"12764","runtime":100,"imdbId":"tt0089604","version":149,"lastModified":"1301902465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36b\/4bc93a2d017a3c57fe01836b\/missing-in-action-2-the-beginning-mid.jpg","studio":"Cannon Films","genre":"Action","title":"Missing in Action 2: The Beginning","releaseDate":478569600000,"language":"en","tagline":"Chuck Norris is back! A one-man time bomb set to explode!","type":"Movie","_key":"53887"} +{"label":"Bennett Ohta","version":24,"id":"73583","lastModified":"1301902134000","name":"Bennett Ohta","type":"Person","_key":"53888"} +{"label":"Cosie Costa","version":22,"id":"73584","lastModified":"1301902249000","name":"Cosie Costa","type":"Person","_key":"53889"} +{"label":"Joe Michael Terry","version":22,"id":"73585","lastModified":"1301902249000","name":"Joe Michael Terry","type":"Person","_key":"53890"} +{"label":"John Wesley","version":27,"id":"73586","lastModified":"1301902349000","name":"John Wesley","type":"Person","_key":"53891"} +{"label":"David Chung","version":21,"id":"99848","lastModified":"1301902366000","name":"David Chung","type":"Person","_key":"53892"} +{"label":"John Otrin","version":19,"id":"102576","lastModified":"1301902844000","name":"John Otrin","type":"Person","_key":"53893"} +{"label":"Joseph Hieu","version":22,"id":"85921","lastModified":"1301902882000","name":"Joseph Hieu","type":"Person","_key":"53894"} +{"label":"Dean Raphael Ferrandini","version":20,"id":"136514","lastModified":"1301903076000","name":"Dean Raphael Ferrandini","type":"Person","_key":"53895"} +{"label":"Pierre Issot","version":18,"id":"136516","lastModified":"1301902904000","name":"Pierre Issot","type":"Person","_key":"53896"} +{"label":"Randon Lo","version":18,"id":"136517","lastModified":"1301902909000","name":"Randon Lo","type":"Person","_key":"53897"} +{"label":"Michiyo Tanaka","version":18,"id":"136518","lastModified":"1301902934000","name":"Michiyo Tanaka","type":"Person","_key":"53898"} +{"label":"Andrea Lowe","version":20,"id":"136519","lastModified":"1301902898000","name":"Andrea Lowe","type":"Person","_key":"53899"} +{"label":"Nancy Martin","version":18,"id":"136520","lastModified":"1301902882000","name":"Nancy Martin","type":"Person","_key":"53900"} +{"label":"Lance Hool","version":38,"id":"57154","lastModified":"1301901488000","name":"Lance Hool","type":"Person","_key":"53901"} +{"label":"Milchwald","description":"No overview found.","id":"12765","runtime":94,"imdbId":"tt0331698","version":64,"lastModified":"1301905701000","genre":"Drama","title":"Milchwald","releaseDate":1044835200000,"language":"en","type":"Movie","_key":"53902"} +{"label":"Sophie Charlotte Conrad","version":20,"id":"73575","lastModified":"1301902329000","name":"Sophie Charlotte Conrad","type":"Person","_key":"53903"} +{"label":"Leo Bruckmann","version":20,"id":"73576","lastModified":"1301902329000","name":"Leo Bruckmann","type":"Person","_key":"53904"} +{"label":"Christoph Hochh\u00e4usler","version":20,"id":"73577","lastModified":"1301902330000","name":"Christoph Hochh\u00e4usler","type":"Person","_key":"53905"} +{"label":"Vera Cruz","description":"After the American Civil War, mercenaries travel to Mexico to fight in their revolution for money. The former soldier and gentleman Benjamin Trane meets the gunman and killer Joe Erin and his men, and together they are hired by the Emperor Maximillian and the Marquis Henri de Labordere to escort the Countess Marie Duvarre to the harbor of Vera Cruz.","id":"12766","runtime":94,"imdbId":"tt0047647","version":116,"lastModified":"1301902645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/374\/4bc93a2e017a3c57fe018374\/vera-cruz-mid.jpg","studio":"Flora Productions","genre":"Comedy","title":"Vera Cruz","releaseDate":-473990400000,"language":"en","type":"Movie","_key":"53906"} +{"label":"Denise Darcel","version":20,"id":"73571","lastModified":"1301901563000","name":"Denise Darcel","type":"Person","_key":"53907"} +{"label":"Sara Montiel","version":23,"id":"73572","lastModified":"1302027850000","name":"Sara Montiel","type":"Person","_key":"53908"} +{"label":"Cold Creek Manor","description":"Wanting to escape city life for the countryside, New Yorkers Cooper Tilson (Quaid), his wife Leah (Stone) and their two children move into a dilapidated old mansion still filled with the possessions of the previous family. Turning it into their dream house soon becomes a living nightmare when the previous owner (Dorff) shows up, and a series of terrifying incidents lead them on a spine-tingling search for clues to the estate's dark and lurid past","id":"12767","runtime":118,"imdbId":"tt0331468","version":184,"lastModified":"1301902939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/757\/4cf292817b9aa1449a000757\/cold-creek-manor-mid.jpg","genre":"Drama","title":"Cold Creek Manor","releaseDate":1063756800000,"language":"en","type":"Movie","_key":"53909"} +{"label":"Ryan Wilson","version":20,"id":"73568","lastModified":"1301902249000","name":"Ryan Wilson","type":"Person","_key":"53910"} +{"label":"Dana Eskelson","version":22,"id":"73569","lastModified":"1301902075000","name":"Dana Eskelson","type":"Person","_key":"53911"} +{"label":"Wir","description":"No overview found.","id":"12768","runtime":100,"imdbId":"tt0350324","version":72,"lastModified":"1301906152000","genre":"Comedy","title":"Wir","releaseDate":1042588800000,"language":"en","type":"Movie","_key":"53912"} +{"label":"Jannek Petri","version":21,"id":"73561","lastModified":"1301904134000","name":"Jannek Petri","type":"Person","_key":"53913"} +{"label":"Karina Plachetka","version":20,"id":"73562","lastModified":"1301901950000","name":"Karina Plachetka","type":"Person","_key":"53914"} +{"label":"Lilia Lehner","version":20,"id":"54787","lastModified":"1301901950000","name":"Lilia Lehner","type":"Person","_key":"53915"} +{"label":"Sebastian Songin","version":20,"id":"73563","lastModified":"1301901950000","name":"Sebastian Songin","type":"Person","_key":"53916"} +{"label":"Sebastian Rei\u00df","version":20,"id":"73564","lastModified":"1301901950000","name":"Sebastian Rei\u00df","type":"Person","_key":"53917"} +{"label":"Lars L\u00f6llmann","version":20,"id":"73565","lastModified":"1301901950000","name":"Lars L\u00f6llmann","type":"Person","_key":"53918"} +{"label":"Le Papillon","description":"No overview found.","id":"12769","runtime":85,"imdbId":"tt0329485","version":97,"lastModified":"1301906221000","genre":"Adventure","title":"Le Papillon","releaseDate":1040169600000,"language":"en","type":"Movie","_key":"53919"} +{"label":"Claire Bouanich","version":20,"id":"73503","lastModified":"1301902329000","name":"Claire Bouanich","type":"Person","_key":"53920"} +{"label":"Nade Dieu","version":21,"id":"73504","lastModified":"1301902329000","name":"Nade Dieu","type":"Person","_key":"53921"} +{"label":"Jacques Bouanich","version":20,"id":"73505","lastModified":"1301902329000","name":"Jacques Bouanich","type":"Person","_key":"53922"} +{"label":"Jerry Lucas","version":20,"id":"73506","lastModified":"1301902329000","name":"Jerry Lucas","type":"Person","_key":"53923"} +{"label":"Aur\u00e9lie Meriel","version":21,"id":"73507","lastModified":"1301902329000","name":"Aur\u00e9lie Meriel","type":"Person","_key":"53924"} +{"label":"Philippe Muyl","version":27,"id":"73508","lastModified":"1301901854000","name":"Philippe Muyl","type":"Person","_key":"53925"} +{"label":"Stealing Harvard","description":"John and his girlfriend have vowed to marry once they save $30,000 for their dream house. But the minute they achieve their financial goal, John finds out his niece has been accepted at Harvard, and he's reminded of his promise to pay for her tuition (nearly $30,000). John's friend Duff convinces him to turn to petty crime to make the payment \u2026 but Duff's hare-brained schemes spin quickly out of control.","id":"12770","runtime":85,"imdbId":"tt0265808","version":203,"lastModified":"1301903908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/401\/4d44fcba7b9aa103c8001401\/stealing-harvard-mid.jpg","genre":"Action","title":"Stealing Harvard","releaseDate":1031875200000,"language":"en","tagline":"Their intentions were honorable. Their methods were criminal.","type":"Movie","_key":"53926"} +{"label":"Bruce McCulloch","version":26,"id":"73499","lastModified":"1301901789000","name":"Bruce McCulloch","type":"Person","_key":"53927"} +{"label":"Serving Sara","description":"Serving Sara is a 2002 romantic comedy film which stars Matthew Perry, Elizabeth Hurley and Bruce Campbell. Joe Tyler (Perry) is a process server who is given the assignment to serve Sara Moore (Hurley) with divorce papers.","id":"12771","runtime":100,"imdbId":"tt0261289","version":158,"lastModified":"1301902721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/394\/4bc93a33017a3c57fe018394\/serving-sara-mid.jpg","genre":"Comedy","title":"Serving Sara","releaseDate":1029801600000,"language":"en","type":"Movie","_key":"53928"} +{"label":"Leap of Faith","description":"Jonas Nightengale is a fraudulent Christian faith healer who makes a living travelling around America holding revival meetings and conducting 'miracles' with the help of his friend and manager, Jane, and their entourage. One of their trucks breaks down in Rustwater, a town in desperate need of rain to save their crops. While waiting for spare parts, Jonas decides to hold a revival meeting in the town. The local sheriff, Will Braverman, is skeptical and tries to prevent his town and its people fr","id":"12772","runtime":108,"imdbId":"tt0104695","version":134,"lastModified":"1301903295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0c\/4be72c44017a3c35c1000d0c\/leap-of-faith-mid.jpg","genre":"Comedy","title":"Leap of Faith","releaseDate":724550400000,"language":"en","type":"Movie","_key":"53929"} +{"label":"Richard Pearce","version":23,"id":"73496","lastModified":"1301901776000","name":"Richard Pearce","type":"Person","_key":"53930"} +{"label":"Navy Seals","description":"While rescuing an American air crew captured by Mid-Eastern terrorists, Lieutenant Curran and his team of Navy SEALs discover evidence that the terrorists have come into possession of dangerous high-tech weapons.","id":"12773","runtime":113,"imdbId":"tt0100232","version":170,"lastModified":"1301904766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/429\/4c58a46c7b9aa151f4000429\/navy-seals-mid.jpg","genre":"Action","title":"Navy Seals","releaseDate":648432000000,"language":"en","type":"Movie","_key":"53931"} +{"label":"Last Exit to Brooklyn","description":"Taken from Hubert Selby, Jr.'s novel. A gallery of characters in Brooklyn in the 1950s are crushed by their surroundings and selves: a union strike leader discovers he is gay; a prostitute falls in love with one of her clients; a family cannot cope with the fact that their daughter is illegitimately pregnant.","id":"12774","runtime":102,"imdbId":"tt0097714","version":110,"lastModified":"1301904227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b2\/4bc93a35017a3c57fe0183b2\/last-exit-to-brooklyn-mid.jpg","genre":"Drama","title":"Last Exit to Brooklyn","releaseDate":624153600000,"language":"en","type":"Movie","_key":"53932"} +{"label":"Flesh+Blood","description":"A band of medieval mercenaries take revenge on a noble lord who decides not to pay them by kidnapping the betrothed of the noble's son. As the plague and warfare cut a swathe of destruction throughout the land, the mercenaries hole up in a castle and await their fate.","id":"12775","runtime":126,"imdbId":"tt0089153","trailer":"http:\/\/www.youtube.com\/watch?v=0VOy1JZBH5c","version":100,"lastModified":"1301902976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67b\/4c6302545e73d6346100067b\/flesh-and-blood-mid.jpg","studio":"# Riverside Pictures","genre":"Adventure","title":"Flesh+Blood","releaseDate":494208000000,"language":"en","tagline":"A timeless adventure, a passion for wealth and power. Only the strongest will survive","type":"Movie","_key":"53933"} +{"label":"Tom Burlinson","version":30,"id":"73489","lastModified":"1301901455000","name":"Tom Burlinson","type":"Person","_key":"53934"} +{"label":"Johnny Stecchino","description":"Ad una festa, Dante, timido autista di un pulman per handicapati, si innamora di Maria. Quando questa lo inviter\u00e0 nella sua villa di Palermo, lui ingenuamente ed all'oscuro del vero motivo dell'invito, si precipiter\u00e0 da lei. Una volta giunto a Palermo, si trover\u00e0 in mezzo a strani commerci, complotti e si imbatter\u00e0 in un suo sosia, il pentito mafioso Johnny Stecchino. Alla fine torner\u00e0 a casa senza per\u00f2 aver capito nulla di quello che gli \u00e8 successo.","id":"12776","runtime":102,"imdbId":"tt0102164","trailer":"http:\/\/www.youtube.com\/watch?v=J6XyNHM3I","version":102,"lastModified":"1301903740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13a\/4c7ead8d5e73d648e000013a\/johnny-stecchino-mid.jpg","studio":"Cecchi Gori Group Tiger Cinematografica","genre":"Comedy","title":"Johnny Stecchino","releaseDate":688262400000,"language":"en","type":"Movie","_key":"53935"} +{"label":"Turi Scalia","version":20,"id":"73487","lastModified":"1301902184000","name":"Turi Scalia","type":"Person","_key":"53936"} +{"label":"Loredana Romito","version":23,"id":"73488","lastModified":"1301902151000","name":"Loredana Romito","type":"Person","_key":"53937"} +{"label":"It's All About Love","description":"No overview found.","id":"12777","runtime":104,"imdbId":"tt0273689","version":161,"lastModified":"1301902676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d7\/4bc93a3a017a3c57fe0183d7\/it-s-all-about-love-mid.jpg","genre":"Drama","title":"It's All About Love","releaseDate":1042156800000,"language":"en","type":"Movie","_key":"53938"} +{"label":"Douglas Henshall","version":38,"id":"35862","lastModified":"1301901275000","name":"Douglas Henshall","type":"Person","_key":"53939"} +{"label":"Greedy","description":"Michael J. Fox stars with Kirk Douglas and Nancy Travis in this wickedly funny comedy of heirs about a backstabbing family desperate to get their piece of a massive inheritance.","id":"12778","runtime":113,"imdbId":"tt0109936","version":141,"lastModified":"1301904884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e0\/4bc93a3a017a3c57fe0183e0\/greedy-mid.jpg","genre":"Comedy","title":"Greedy","releaseDate":762739200000,"language":"en","tagline":"Where there\u2019s a will, there\u2019s a relative.","type":"Movie","_key":"53940"} +{"label":"Swept Away","description":"Stranded and alone on a desert island during a cruise, a spoiled rich woman and a deckhand fall in love and make a date to reunite after their rescue.","id":"12779","runtime":89,"imdbId":"tt0291502","version":200,"lastModified":"1301903889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4bc93a3c017a3c57fe0183ea\/swept-away-mid.jpg","genre":"Comedy","title":"Swept Away","releaseDate":1034294400000,"language":"en","type":"Movie","_key":"53941"} +{"label":"Adriano Giannini","version":28,"id":"73475","lastModified":"1301901842000","name":"Adriano Giannini","type":"Person","_key":"53942"} +{"label":"Michael Beattie","version":21,"id":"73476","lastModified":"1301902328000","name":"Michael Beattie","type":"Person","_key":"53943"} +{"label":"Iron Monkey","description":"Iron Monkey is a Hong Kong variation of Robin Hood. Corrupt officials of a Chinese village are robbed by a masked bandit know as \"Iron Monkey\", named after a benevolent deity. When all else fails, the Governor forces a traveling physician into finding the bandit. The arrival of an evil Shaolin monk, brings the physician and Iron Monkey together to battle the corrupt government.","id":"12780","runtime":90,"imdbId":"tt0108148","version":203,"lastModified":"1301957835000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f7\/4bc93a3d017a3c57fe0183f7\/12780-mid.jpg","studio":"Film Workshop","genre":"Action","title":"Iron Monkey","releaseDate":1002844800000,"language":"en","type":"Movie","_key":"53944"} +{"label":"Jean Wang","version":22,"id":"73472","lastModified":"1301957818000","name":"Jean Wang","type":"Person","_key":"53945"} +{"label":"Sze-Man Tsang","version":22,"id":"130517","lastModified":"1301957818000","name":"Sze-Man Tsang","type":"Person","_key":"53946"} +{"label":"Das fliegende Klassenzimmer","description":"No overview found.","id":"12781","runtime":92,"imdbId":"tt0046986","version":63,"lastModified":"1301904714000","genre":"Comedy","title":"Das fliegende Klassenzimmer","releaseDate":-483753600000,"language":"en","type":"Movie","_key":"53947"} +{"label":"Heliane Bei","version":20,"id":"73465","lastModified":"1301902331000","name":"Heliane Bei","type":"Person","_key":"53948"} +{"label":"Bert Brandt","version":20,"id":"73467","lastModified":"1301901991000","name":"Bert Brandt","type":"Person","_key":"53949"} +{"label":"Knut Mahlke","version":20,"id":"73468","lastModified":"1301902373000","name":"Knut Mahlke","type":"Person","_key":"53950"} +{"label":"Die Jagd nach dem Schatz der Nibelungen","description":"No overview found.","id":"12782","runtime":120,"imdbId":"tt1286808","version":47,"lastModified":"1301905337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4d57d38f7b9aa15cf3003415\/die-jagd-nach-dem-schatz-der-nibelungen-mid.jpg","studio":"Dreamtool Entertainment","genre":"Adventure","title":"Die Jagd nach dem Schatz der Nibelungen","releaseDate":1220140800000,"language":"en","type":"Movie","_key":"53951"} +{"label":"The Duchess","description":"A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.","id":"12783","runtime":110,"imdbId":"tt0864761","homepage":"http:\/\/www.theduchessmovie.com\/","version":393,"lastModified":"1301902212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/621\/4d939e0b5e73d62251001621\/the-duchess-mid.jpg","studio":"BBC Films","genre":"Drama","title":"The Duchess","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"53952"} +{"label":"Saul Dibb","version":23,"id":"73460","lastModified":"1301901990000","name":"Saul Dibb","type":"Person","_key":"53953"} +{"label":"Aidan McArdle","version":26,"id":"47653","lastModified":"1301901399000","name":"Aidan McArdle","type":"Person","_key":"53954"} +{"label":"Mercy Fiennes Tiffin","version":21,"id":"73461","lastModified":"1301902075000","name":"Mercy Fiennes Tiffin","type":"Person","_key":"53955"} +{"label":"Georgia King","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4c2219127b9aa135fd00018b\/georgia-king-profile.jpg","version":29,"id":"73462","lastModified":"1301901123000","name":"Georgia King","type":"Person","_key":"53956"} +{"label":"Curiosity & the Cat","description":"No overview found.","id":"12786","runtime":80,"imdbId":"tt0182948","version":65,"lastModified":"1301907391000","title":"Curiosity & the Cat","releaseDate":915148800000,"language":"en","type":"Movie","_key":"53957"} +{"label":"Klaus Zmorek","version":20,"id":"73538","lastModified":"1301902362000","name":"Klaus Zmorek","type":"Person","_key":"53958"} +{"label":"Domenico D'Ambrosio","version":21,"id":"73539","lastModified":"1301901603000","name":"Domenico D'Ambrosio","type":"Person","_key":"53959"} +{"label":"Homeboy","description":"Johnny Walker is a cowboy and a boxer. He is very shy and a bit of a fool. He is in love with Ruby, but he cannot tell her. He is also a bit old to keep on boxing, but its the only thing he does well.","id":"12787","runtime":116,"imdbId":"tt0095316","version":134,"lastModified":"1301902278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/467\/4c7a86e95e73d613d7000467\/homeboy-mid.jpg","genre":"Drama","title":"Homeboy","releaseDate":588384000000,"language":"en","tagline":"Some people live life blow by blow.","type":"Movie","_key":"53960"} +{"label":"Michael Seresin","version":66,"id":"9165","lastModified":"1301901570000","name":"Michael Seresin","type":"Person","_key":"53961"} +{"label":"Thomas Quinn","version":21,"id":"73540","lastModified":"1301902328000","name":"Thomas Quinn","type":"Person","_key":"53962"} +{"label":"Mein Leben","description":"No overview found.","id":"12788","runtime":14,"imdbId":"tt0945501","version":243,"lastModified":"1300979515000","title":"Mein Leben","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53963"} +{"label":"Nicht b\u00f6se sein!","description":"No overview found.","id":"12789","runtime":0,"imdbId":"tt0806675","version":27,"lastModified":"1300979516000","title":"Nicht b\u00f6se sein!","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"53964"} +{"label":"Wolfgang Reinke","version":20,"id":"73600","lastModified":"1301902329000","name":"Wolfgang Reinke","type":"Person","_key":"53965"} +{"label":"Nuit Noire","description":"No overview found.","id":"12790","runtime":90,"imdbId":"tt0758442","version":48,"lastModified":"1301907391000","studio":"Cipango Productions Audiovisuelles","genre":"Drama","title":"Nuit Noire","releaseDate":1128297600000,"language":"en","type":"Movie","_key":"53966"} +{"label":"Olivier Smolders","version":23,"id":"73601","lastModified":"1301901780000","name":"Olivier Smolders","type":"Person","_key":"53967"} +{"label":"Fabrice Rodriguez","version":20,"id":"73602","lastModified":"1301902362000","name":"Fabrice Rodriguez","type":"Person","_key":"53968"} +{"label":"Yves-Marie Gnahoua","version":20,"id":"73603","lastModified":"1301902328000","name":"Yves-Marie Gnahoua","type":"Person","_key":"53969"} +{"label":"Marie Lecomte","version":20,"id":"73604","lastModified":"1301902145000","name":"Marie Lecomte","type":"Person","_key":"53970"} +{"label":"Raymond Pradel","version":20,"id":"73605","lastModified":"1301902329000","name":"Raymond Pradel","type":"Person","_key":"53971"} +{"label":"End of the Line","description":"In this unsettling and creepy thriller, Karen (Ilona Elkin), a young nurse who works in a psychiatric ward, boards the last subway train of the night only to have it stop suddenly in the middle of the tunnel.","id":"12791","runtime":95,"imdbId":"tt0494224","homepage":"http:\/\/www.endofthelinemovie.com\/","version":314,"lastModified":"1301906496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4bc93a42017a3c57fe018415\/end-of-the-line-mid.jpg","studio":"Maurice Devereaux Productions","genre":"Horror","title":"End of the Line","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"53972"} +{"label":"Maurice Devereaux","version":26,"id":"73608","lastModified":"1301902145000","name":"Maurice Devereaux","type":"Person","_key":"53973"} +{"label":"Nicolas Wright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aae\/4d90e8757b9aa1675b003aae\/nicolas-wright-profile.jpg","version":27,"id":"73609","lastModified":"1301902049000","name":"Nicolas Wright","type":"Person","_key":"53974"} +{"label":"Tim Rozon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66e\/4d90e8c47b9aa16a2400366e\/tim-rozon-profile.jpg","version":24,"id":"73610","lastModified":"1301902328000","name":"Tim Rozon","type":"Person","_key":"53975"} +{"label":"Emily Shelton","version":21,"id":"73611","lastModified":"1301902145000","name":"Emily Shelton","type":"Person","_key":"53976"} +{"label":"All Over Me","description":"No overview found.","id":"12793","runtime":93,"imdbId":"tt0118586","version":127,"lastModified":"1301903556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/246\/4bd78c9c017a3c21f1000246\/all-over-me-mid.jpg","studio":"Baldini Pictures","genre":"Drama","title":"All Over Me","releaseDate":855964800000,"language":"en","type":"Movie","_key":"53977"} +{"label":"Alex Sichel","version":20,"id":"73622","lastModified":"1301901991000","name":"Alex Sichel","type":"Person","_key":"53978"} +{"label":"Wilson Cruz","version":21,"id":"54453","lastModified":"1301901851000","name":"Wilson Cruz","type":"Person","_key":"53979"} +{"label":"Leisha Hailey","version":18,"id":"18660","lastModified":"1301901950000","name":"Leisha Hailey","type":"Person","_key":"53980"} +{"label":"Amnesia: The James Brighton Enigma","description":"A young man wakes up naked on a pallet on the street in Montreal. Who is he, what is his name? How did he get here? The only thing he seems to remember is that he's gay. And so begins one of the most compelling gay-themed mysteries we\u2019ve seen. Based on a true story, this young man has been through some trauma that caused his memory loss -- or is he an imposter avoiding the law in some way?","id":"12794","runtime":90,"imdbId":"tt0779722","version":103,"lastModified":"1301903602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc93a43017a3c57fe01841e\/amnesia-the-james-brighton-enigma-mid.jpg","genre":"Drama","title":"Amnesia: The James Brighton Enigma","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"53981"} +{"label":"Denis Langlois","version":20,"id":"73629","lastModified":"1301902145000","name":"Denis Langlois","type":"Person","_key":"53982"} +{"label":"Dusan Dukic","version":20,"id":"84832","lastModified":"1301902505000","name":"Dusan Dukic","type":"Person","_key":"53983"} +{"label":"Another Gay Movie","description":"In the dirtiest, funniest, most scandalous gay-teen-sex-comedy-parody ever, four young gay friends make a pact to lose their virginity by the end of the summer. The boys soon face giant sex toys, naked celebrities, masochistic teachers and an uncontrollable romance with a quiche. ","id":"12795","runtime":92,"imdbId":"tt0443431","homepage":"http:\/\/www.profun.de\/anothergaymovie\/","version":178,"lastModified":"1301904572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4c1b7ec77b9aa117a4000023\/another-gay-movie-mid.jpg","studio":"Luna Pictures","title":"Another Gay Movie","releaseDate":1178150400000,"language":"en","type":"Movie","_key":"53984"} +{"label":"Todd Stephens","version":27,"id":"40440","lastModified":"1301901487000","name":"Todd Stephens","type":"Person","_key":"53985"} +{"label":"Michael Carbonaro","version":22,"id":"77261","lastModified":"1301901817000","name":"Michael Carbonaro","type":"Person","_key":"53986"} +{"label":"Jonathan Chase","version":21,"id":"77262","lastModified":"1301901554000","name":"Jonathan Chase","type":"Person","_key":"53987"} +{"label":"Mitch Morris","version":21,"id":"77263","lastModified":"1301902128000","name":"Mitch Morris","type":"Person","_key":"53988"} +{"label":"Ashlie Atkinson","version":22,"id":"77264","lastModified":"1301901934000","name":"Ashlie Atkinson","type":"Person","_key":"53989"} +{"label":"Scott Thompson","version":20,"id":"78576","lastModified":"1301902159000","name":"Scott Thompson","type":"Person","_key":"53990"} +{"label":"Graham Norton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4cf67f0b5e73d62999001095\/graham-norton-profile.jpg","version":21,"id":"78577","lastModified":"1301901707000","name":"Graham Norton","type":"Person","_key":"53991"} +{"label":"Angela Oh","version":17,"id":"78578","lastModified":"1301902305000","name":"Angela Oh","type":"Person","_key":"53992"} +{"label":"George Marcy","version":17,"id":"78579","lastModified":"1301901934000","name":"George Marcy","type":"Person","_key":"53993"} +{"label":"Matthew Rush","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/112\/4d24e4f85e73d626a8000112\/matthew-rush-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(41, 41, 41); line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Matthew Rush was born in September 1972 in Pennsylvania, the youngest of three sons and with a multi-racial background. He's a muscular, 6ft tall, thick-dicked versatile top (who first bottomed on film in 2004) who was signed as an exclusive by Falcon and remained there until he quit the studi","version":29,"id":"78580","lastModified":"1301901843000","name":"Matthew Rush","type":"Person","_key":"53994"} +{"label":"John Epperson","version":17,"id":"78581","lastModified":"1301901934000","name":"John Epperson","type":"Person","_key":"53995"} +{"label":"James Getzlaff","version":17,"id":"78582","lastModified":"1301902305000","name":"James Getzlaff","type":"Person","_key":"53996"} +{"label":"Sebastian","description":"No overview found.","id":"12796","runtime":88,"imdbId":"tt0114020","version":126,"lastModified":"1301418612000","genre":"Drama","title":"Sebastian","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"53997"} +{"label":"Hampus Bj\u00f6rck","version":20,"id":"73636","lastModified":"1301902146000","name":"Hampus Bj\u00f6rck","type":"Person","_key":"53998"} +{"label":"Nicolai Cleve Broch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4bd493ee017a3c7fa6000160\/nicolai-cleve-broch-profile.jpg","biography":"Nicolai Cleve Broch (born 14 November 1975) is a Norwegian actor of theatre and film. He rose to national fame playing one of the leading roles in the 2002 drama series Lekestue, which aired on NRK in 2002. He is also known for playing the protagonist in Buddy, a romantic comedy from 2003. Other major film credits include Uno, Uro and Den siste revejakta. More recently, Cleve Broch was nominated for an Amanda Award for his portrayal of World War II resistance fighter Gregers Gram in Max Manus. O","version":33,"id":"73637","lastModified":"1301901370000","name":"Nicolai Cleve Broch","type":"Person","_key":"53999"} +{"label":"Helge Jordal","version":23,"id":"73638","lastModified":"1301901400000","name":"Helge Jordal","type":"Person","_key":"54000"} +{"label":"Ghost Town","description":"Bertram Pincus, is a man whose people skills leave much to be desired. When Pincus dies unexpectedly, but is miraculously revived after seven minutes, he wakes up to discover that he now has the annoying ability to see ghosts.","id":"12797","runtime":102,"imdbId":"tt0995039","version":331,"lastModified":"1301902836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/440\/4bc93a48017a3c57fe018440\/ghost-town-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"Ghost Town","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"54001"} +{"label":"Jordan Carlos","version":22,"id":"77090","lastModified":"1301902122000","name":"Jordan Carlos","type":"Person","_key":"54002"} +{"label":"Dequina Moore","version":22,"id":"77091","lastModified":"1301901632000","name":"Dequina Moore","type":"Person","_key":"54003"} +{"label":"Joseph Badalucco Jr.","version":22,"id":"77092","lastModified":"1301901760000","name":"Joseph Badalucco Jr.","type":"Person","_key":"54004"} +{"label":"Brian Hutchison","version":22,"id":"77093","lastModified":"1301901760000","name":"Brian Hutchison","type":"Person","_key":"54005"} +{"label":"Tyree Michael Simpson","version":22,"id":"77094","lastModified":"1301901548000","name":"Tyree Michael Simpson","type":"Person","_key":"54006"} +{"label":"Julia K. Murney","version":22,"id":"77095","lastModified":"1301901925000","name":"Julia K. Murney","type":"Person","_key":"54007"} +{"label":"Claire Lautier","version":22,"id":"77096","lastModified":"1301901760000","name":"Claire Lautier","type":"Person","_key":"54008"} +{"label":"Bridget Moloney","version":23,"id":"77097","lastModified":"1301901940000","name":"Bridget Moloney","type":"Person","_key":"54009"} +{"label":"Raymond J. Lee","version":26,"id":"77098","lastModified":"1301901672000","name":"Raymond J. Lee","type":"Person","_key":"54010"} +{"label":"Joey Mazzarino","version":33,"id":"64185","lastModified":"1301901674000","name":"Joey Mazzarino","type":"Person","_key":"54011"} +{"label":"Kathleen Landis","version":22,"id":"77099","lastModified":"1301901925000","name":"Kathleen Landis","type":"Person","_key":"54012"} +{"label":"Audrie Neenan","version":20,"id":"77100","lastModified":"1301901925000","name":"Audrie Neenan","type":"Person","_key":"54013"} +{"label":"Il pi\u00f9 bel giorno della mia vita","description":"No overview found.","id":"12798","runtime":102,"imdbId":"tt0296144","version":29,"lastModified":"1300979517000","title":"Il pi\u00f9 bel giorno della mia vita","releaseDate":1018569600000,"language":"en","type":"Movie","_key":"54014"} +{"label":"Cristina Comencini","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2db\/4d1b0d995e73d6082e00b2db\/cristina-comencini-profile.jpg","version":30,"id":"73639","lastModified":"1301901472000","name":"Cristina Comencini","type":"Person","_key":"54015"} +{"label":"Full Speed","description":"No overview found.","id":"12799","runtime":85,"imdbId":"tt0118230","version":71,"lastModified":"1301905836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46c\/4bc93a50017a3c57fe01846c\/a-toute-vitesse-mid.jpg","studio":"Magouric Productions","genre":"Drama","title":"Full Speed","releaseDate":843609600000,"language":"en","type":"Movie","_key":"54016"} +{"label":"Pascal Cervo","version":19,"id":"73650","lastModified":"1301902249000","name":"Pascal Cervo","type":"Person","_key":"54017"} +{"label":"Mezziane Bardadi","version":19,"id":"73651","lastModified":"1301902074000","name":"Mezziane Bardadi","type":"Person","_key":"54018"} +{"label":"Romain Auger","version":19,"id":"73652","lastModified":"1301901871000","name":"Romain Auger","type":"Person","_key":"54019"} +{"label":"Mohammed Dib","version":19,"id":"73653","lastModified":"1301901871000","name":"Mohammed Dib","type":"Person","_key":"54020"} +{"label":"Benzina","description":"No overview found.","id":"12800","runtime":90,"imdbId":"tt0302309","version":34,"lastModified":"1301905626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c79\/4d9324067b9aa11991000c79\/benzina-mid.jpg","studio":"Galliano Iuso per Digital Film","title":"Benzina","releaseDate":1006214400000,"language":"en","type":"Movie","_key":"54021"} +{"label":"Monica Stambrini","version":20,"id":"73656","lastModified":"1301902367000","name":"Monica Stambrini","type":"Person","_key":"54022"} +{"label":"Gefangen","description":"No overview found.","id":"12801","runtime":96,"imdbId":"tt0410006","version":45,"lastModified":"1300979517000","title":"Gefangen","releaseDate":1086393600000,"language":"en","type":"Movie","_key":"54023"} +{"label":"J\u00f6rg Andreas","version":24,"id":"73658","lastModified":"1301901703000","name":"J\u00f6rg Andreas","type":"Person","_key":"54024"} +{"label":"Goldfish Memory","description":"A small group of friends experience relationships which grow and stumble, involving everything from straight, gay, lesbian, and bisexual relationships. The speed with which these relationships last leads to the Goldfish memory effect, the belief that a Goldfish only has a 3 second memory is a metaphor for the transient nature of the characters relationships.","id":"12802","runtime":85,"imdbId":"tt0366527","version":148,"lastModified":"1300979518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47b\/4bc93a51017a3c57fe01847b\/goldfish-memory-mid.jpg","studio":"Wolfe Releasing","genre":"Comedy","title":"Goldfish Memory","releaseDate":1097193600000,"language":"en","type":"Movie","_key":"54025"} +{"label":"Elizabeth Gill","version":20,"id":"73663","lastModified":"1301902378000","name":"Elizabeth Gill","type":"Person","_key":"54026"} +{"label":"Sean Campion","version":20,"id":"113980","lastModified":"1301903065000","name":"Sean Campion","type":"Person","_key":"54027"} +{"label":"Gossenkind","description":"No overview found.","id":"12803","runtime":88,"imdbId":"tt0101967","version":45,"lastModified":"1301904996000","genre":"Drama","title":"Gossenkind","releaseDate":694224000000,"language":"en","type":"Movie","_key":"54028"} +{"label":"Peter Kern","version":23,"id":"73671","lastModified":"1301901951000","name":"Peter Kern","type":"Person","_key":"54029"} +{"label":"Max Kellermann","version":20,"id":"73672","lastModified":"1301902328000","name":"Max Kellermann","type":"Person","_key":"54030"} +{"label":"Intimes Tagebuch","description":"No overview found.","id":"12804","runtime":65,"imdbId":"tt0377076","version":27,"lastModified":"1301903872000","genre":"Documentary","title":"Intimes Tagebuch","releaseDate":1056585600000,"language":"en","type":"Movie","_key":"54031"} +{"label":"Pedro Usabiaga","version":20,"id":"73674","lastModified":"1301902329000","name":"Pedro Usabiaga","type":"Person","_key":"54032"} +{"label":"Keller - Teenage Wasteland","description":"Disturbing film about two 16 year-olds who are bored with life and kidnap\/torture a girl.","id":"12805","runtime":92,"imdbId":"tt0470832","version":58,"lastModified":"1301904996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/109\/4c5644177b9aa151f5000109\/keller-teenage-wasteland-mid.jpg","studio":"Novotny & Novotny Filmproduktion","genre":"Drama","title":"Keller - Teenage Wasteland","releaseDate":1122854400000,"language":"en","type":"Movie","_key":"54033"} +{"label":"Eva Urthaler","version":20,"id":"73686","lastModified":"1301902145000","name":"Eva Urthaler","type":"Person","_key":"54034"} +{"label":"Elisabetta Rocchetti","version":20,"id":"73687","lastModified":"1301901780000","name":"Elisabetta Rocchetti","type":"Person","_key":"54035"} +{"label":"Sergej Moya","version":20,"id":"45689","lastModified":"1301901780000","name":"Sergej Moya","type":"Person","_key":"54036"} +{"label":"Ana Stefanovic","version":20,"id":"73688","lastModified":"1301902375000","name":"Ana Stefanovic","type":"Person","_key":"54037"} +{"label":"Kr\u00e1mpack","description":"No overview found.","id":"12806","runtime":91,"imdbId":"tt0250478","trailer":"http:\/\/www.youtube.com\/watch?v=8Fwf9O6Ox-g","version":40,"lastModified":"1301905012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/480\/4bc93a51017a3c57fe018480\/krampack-mid.jpg","studio":"Messidor Films S.L.","genre":"Drama","title":"Kr\u00e1mpack","releaseDate":958608000000,"language":"en","type":"Movie","_key":"54038"} +{"label":"Cesc Gay","version":20,"id":"73693","lastModified":"1301902018000","name":"Cesc Gay","type":"Person","_key":"54039"} +{"label":"Jordi Vilches","version":20,"id":"73694","lastModified":"1301901998000","name":"Jordi Vilches","type":"Person","_key":"54040"} +{"label":"Marieta Orozco","version":21,"id":"73695","lastModified":"1301902164000","name":"Marieta Orozco","type":"Person","_key":"54041"} +{"label":"Esther Nubiola","version":21,"id":"73696","lastModified":"1301902166000","name":"Esther Nubiola","type":"Person","_key":"54042"} +{"label":"Chisco Amado","version":20,"id":"73697","lastModified":"1301902164000","name":"Chisco Amado","type":"Person","_key":"54043"} +{"label":"Myriam M\u00e9zi\u00e8res","version":20,"id":"73698","lastModified":"1301902164000","name":"Myriam M\u00e9zi\u00e8res","type":"Person","_key":"54044"} +{"label":"Muntsa Alca\u00f1iz","version":20,"id":"73699","lastModified":"1301902164000","name":"Muntsa Alca\u00f1iz","type":"Person","_key":"54045"} +{"label":"Mingo R\u00e0fols","version":20,"id":"73706","lastModified":"1301902164000","name":"Mingo R\u00e0fols","type":"Person","_key":"54046"} +{"label":"Oublier Cheyenne","description":"No overview found.","id":"12807","runtime":86,"imdbId":"tt0410410","version":67,"lastModified":"1300979518000","studio":"Bandon\u00e9on","title":"Oublier Cheyenne","releaseDate":1112313600000,"language":"en","type":"Movie","_key":"54047"} +{"label":"Val\u00e9rie Minetto","version":20,"id":"73740","lastModified":"1301902146000","name":"Val\u00e9rie Minetto","type":"Person","_key":"54048"} +{"label":"Mila Dekker","version":20,"id":"73741","lastModified":"1301902329000","name":"Mila Dekker","type":"Person","_key":"54049"} +{"label":"Luc Leclerc du Sablon","version":20,"id":"73742","lastModified":"1301902329000","name":"Luc Leclerc du Sablon","type":"Person","_key":"54050"} +{"label":"Christine Dory","version":20,"id":"73743","lastModified":"1301902329000","name":"Christine Dory","type":"Person","_key":"54051"} +{"label":"Nina's Heavenly Delights","description":"No overview found.","id":"12808","runtime":94,"imdbId":"tt0435706","version":105,"lastModified":"1301904389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ec\/4d0ce3a45e73d6370e0008ec\/nina-s-heavenly-delights-mid.jpg","studio":"Kali Films","genre":"Comedy","title":"Nina's Heavenly Delights","releaseDate":1159401600000,"language":"en","type":"Movie","_key":"54052"} +{"label":"Shelley Conn","version":21,"id":"73707","lastModified":"1301902329000","name":"Shelley Conn","type":"Person","_key":"54053"} +{"label":"Ronny Jhutti","version":20,"id":"73708","lastModified":"1301902329000","name":"Ronny Jhutti","type":"Person","_key":"54054"} +{"label":"Raji James","version":20,"id":"73709","lastModified":"1301902146000","name":"Raji James","type":"Person","_key":"54055"} +{"label":"Raad Rawi","version":37,"id":"73710","lastModified":"1301901094000","name":"Raad Rawi","type":"Person","_key":"54056"} +{"label":"Zoe Henretty","version":20,"id":"73711","lastModified":"1301902146000","name":"Zoe Henretty","type":"Person","_key":"54057"} +{"label":"Pratibha Parmar","version":20,"id":"73712","lastModified":"1301901494000","name":"Pratibha Parmar","type":"Person","_key":"54058"} +{"label":"Der Mond und andere Liebhaber","description":"No overview found.","id":"12809","runtime":0,"imdbId":"tt1230464","version":41,"lastModified":"1300979518000","title":"Der Mond und andere Liebhaber","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54059"} +{"label":"The Dry Spell","description":"No overview found.","id":"12810","runtime":0,"imdbId":"tt0437984","version":74,"lastModified":"1302022154000","title":"The Dry Spell","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54060"} +{"label":"Chip Godwin","version":20,"id":"73732","lastModified":"1301902174000","name":"Chip Godwin","type":"Person","_key":"54061"} +{"label":"Megan Edwards","version":20,"id":"73733","lastModified":"1301902380000","name":"Megan Edwards","type":"Person","_key":"54062"} +{"label":"Casey Strand","version":20,"id":"73734","lastModified":"1301902146000","name":"Casey Strand","type":"Person","_key":"54063"} +{"label":"Jennifer Fitzgerald","version":20,"id":"73735","lastModified":"1301902146000","name":"Jennifer Fitzgerald","type":"Person","_key":"54064"} +{"label":"Birdwatchers - La terra degli uomini rossi","description":"No overview found.","id":"12811","runtime":0,"imdbId":"tt1054674","version":72,"lastModified":"1301906536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/251\/4c778ae97b9aa16a0a000251\/birdwatchers-la-terra-degli-uomini-rossi-mid.jpg","genre":"Drama","title":"Birdwatchers - La terra degli uomini rossi","releaseDate":1220140800000,"language":"en","type":"Movie","_key":"54065"} +{"label":"Marco Bechis","version":24,"id":"73748","lastModified":"1301901647000","name":"Marco Bechis","type":"Person","_key":"54066"} +{"label":"Taiane Arce","version":20,"id":"73749","lastModified":"1301902145000","name":"Taiane Arce","type":"Person","_key":"54067"} +{"label":"Alic\u00e9lia Batista Cabreira","version":20,"id":"73750","lastModified":"1301901950000","name":"Alic\u00e9lia Batista Cabreira","type":"Person","_key":"54068"} +{"label":"C\u00e9sar Chedid","version":20,"id":"73751","lastModified":"1301901950000","name":"C\u00e9sar Chedid","type":"Person","_key":"54069"} +{"label":"Wild Side","description":"No overview found.","id":"12812","runtime":110,"imdbId":"tt0364120","version":98,"lastModified":"1301906517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48a\/4bc93a54017a3c57fe01848a\/wild-side-mid.jpg","studio":"Ma\u00efa Films","genre":"Drama","title":"Wild Side","releaseDate":1076198400000,"language":"en","type":"Movie","_key":"54070"} +{"label":"S\u00e9bastien Lifshitz","version":21,"id":"73761","lastModified":"1301902391000","name":"S\u00e9bastien Lifshitz","type":"Person","_key":"54071"} +{"label":"Zur\u00fcck auf Los!","description":"No overview found.","id":"12813","runtime":90,"imdbId":"tt0278162","version":41,"lastModified":"1301904997000","genre":"Comedy","title":"Zur\u00fcck auf Los!","releaseDate":961027200000,"language":"en","type":"Movie","_key":"54072"} +{"label":"Paul Gilling","version":20,"id":"73762","lastModified":"1301901681000","name":"Paul Gilling","type":"Person","_key":"54073"} +{"label":"Susanne B\u00f6we","version":20,"id":"73763","lastModified":"1301902183000","name":"Susanne B\u00f6we","type":"Person","_key":"54074"} +{"label":"Pianese Nunzio, 14 anni a maggio","description":"No overview found.","id":"12814","runtime":114,"imdbId":"tt0117336","version":38,"lastModified":"1300979519000","studio":"A.M.A. Film","title":"Pianese Nunzio, 14 anni a maggio","releaseDate":841881600000,"language":"en","type":"Movie","_key":"54075"} +{"label":"White Terror","description":"A documentary about nazis in Sweden.","id":"12815","runtime":90,"imdbId":"tt0477133","version":121,"lastModified":"1302041275000","genre":"Documentary","title":"White Terror","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"54076"} +{"label":"Daniel Schweizer","version":25,"id":"73794","lastModified":"1301902143000","name":"Daniel Schweizer","type":"Person","_key":"54077"} +{"label":"Christine Brand","version":19,"id":"73795","lastModified":"1301902249000","name":"Christine Brand","type":"Person","_key":"54078"} +{"label":"Stieg Larsson","version":71,"id":"73799","lastModified":"1301901440000","name":"Stieg Larsson","type":"Person","_key":"54079"} +{"label":"Jimmy","version":19,"id":"73801","lastModified":"1301901870000","name":"Jimmy","type":"Person","_key":"54080"} +{"label":"Marko Niilo Kristian J\u00e4rvinen","version":19,"id":"73800","lastModified":"1301902074000","name":"Marko Niilo Kristian J\u00e4rvinen","type":"Person","_key":"54081"} +{"label":"Olivier Cochet","version":19,"id":"73798","lastModified":"1301902249000","name":"Olivier Cochet","type":"Person","_key":"54082"} +{"label":"Chantal Streijffert-Garon","version":19,"id":"73797","lastModified":"1301901870000","name":"Chantal Streijffert-Garon","type":"Person","_key":"54083"} +{"label":"Roland Segerman","version":19,"id":"73802","lastModified":"1301902074000","name":"Roland Segerman","type":"Person","_key":"54084"} +{"label":"Rob","version":19,"id":"73804","lastModified":"1301902074000","name":"Rob","type":"Person","_key":"54085"} +{"label":"Jean-Yves Camus","version":19,"id":"73805","lastModified":"1301902249000","name":"Jean-Yves Camus","type":"Person","_key":"54086"} +{"label":"Tom Metzger","version":19,"id":"73808","lastModified":"1301902074000","name":"Tom Metzger","type":"Person","_key":"54087"} +{"label":"Roger S. Wareham","version":19,"id":"73807","lastModified":"1301902074000","name":"Roger S. Wareham","type":"Person","_key":"54088"} +{"label":"Erik Nilsen","version":19,"id":"73806","lastModified":"1301902074000","name":"Erik Nilsen","type":"Person","_key":"54089"} +{"label":"Christian","version":19,"id":"73803","lastModified":"1301902074000","name":"Christian","type":"Person","_key":"54090"} +{"label":"Abraham Cooper","version":19,"id":"73812","lastModified":"1301902074000","name":"Abraham Cooper","type":"Person","_key":"54091"} +{"label":"Billy Roper","version":19,"id":"73811","lastModified":"1301901870000","name":"Billy Roper","type":"Person","_key":"54092"} +{"label":"Timothy R. Zaal","version":19,"id":"73809","lastModified":"1301902074000","name":"Timothy R. Zaal","type":"Person","_key":"54093"} +{"label":"Richard Butler","version":19,"id":"73814","lastModified":"1301902074000","name":"Richard Butler","type":"Person","_key":"54094"} +{"label":"Bart","version":19,"id":"73810","lastModified":"1301902249000","name":"Bart","type":"Person","_key":"54095"} +{"label":"Marilyn Mayo","version":19,"id":"73813","lastModified":"1301902074000","name":"Marilyn Mayo","type":"Person","_key":"54096"} +{"label":"Skinhead Attitude","description":"No overview found.","id":"12816","runtime":90,"imdbId":"tt0399660","version":94,"lastModified":"1301906299000","genre":"Documentary","title":"Skinhead Attitude","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"54097"} +{"label":"Laurel Aitken","version":20,"id":"73817","lastModified":"1301902328000","name":"Laurel Aitken","type":"Person","_key":"54098"} +{"label":"Gavin Watson","version":20,"id":"73821","lastModified":"1301902145000","name":"Gavin Watson","type":"Person","_key":"54099"} +{"label":"Buster Bloodvessel","version":20,"id":"73819","lastModified":"1301902328000","name":"Buster Bloodvessel","type":"Person","_key":"54100"} +{"label":"Jimmy Pursey","version":21,"id":"73818","lastModified":"1301902145000","name":"Jimmy Pursey","type":"Person","_key":"54101"} +{"label":"Ian Stuart","version":20,"id":"73820","lastModified":"1301902364000","name":"Ian Stuart","type":"Person","_key":"54102"} +{"label":"Der F\u00f6rster vom Silberwald","description":"No overview found.","id":"12817","runtime":100,"imdbId":"tt0047006","version":42,"lastModified":"1301903165000","genre":"Drama","title":"Der F\u00f6rster vom Silberwald","releaseDate":-476582400000,"language":"en","type":"Movie","_key":"54103"} +{"label":"Karl Ehmann","version":20,"id":"73822","lastModified":"1301902023000","name":"Karl Ehmann","type":"Person","_key":"54104"} +{"label":"Alfons Stummer","version":20,"id":"73824","lastModified":"1301901952000","name":"Alfons Stummer","type":"Person","_key":"54105"} +{"label":"Everybody Wants to Be Italian","description":"No overview found.","id":"12818","runtime":105,"imdbId":"tt0790657","homepage":"http:\/\/www.everybodywantstobeitalian.com\/","version":197,"lastModified":"1301903408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/493\/4bc93a55017a3c57fe018493\/everybody-wants-to-be-italian-mid.jpg","studio":"Asgaard Entertainment","genre":"Comedy","title":"Everybody Wants to Be Italian","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"54106"} +{"label":"Alpha and Omega","description":"Lionsgate presents this animated tale of two wolves (voiced by Justin Long and Hayden Panettiere) trying to find their way home to their pack after being kidnapped. Christina Ricci, Danny Glover, Dennis Hopper, and Larry Miller also supply voices for the Crest Animation production, helmed by Anthony Bell and Ben Gluck from a script by Chris Denk.","id":"12819","runtime":88,"imdbId":"tt1213012","trailer":"http:\/\/www.youtube.com\/watch?v=67-YcLickUA","homepage":"http:\/\/alphaandomega3d.com\/index.html","version":415,"lastModified":"1301901003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4d1c04d97b9aa17a8f00008f\/alpha-and-omega-mid.jpg","studio":"Lions Gate Family Entertainment","genre":"Adventure","title":"Alpha and Omega","releaseDate":1284681600000,"language":"en","tagline":"A Pawsome 3D Adventure","type":"Movie","_key":"54107"} +{"label":"Anthony Bell","version":24,"id":"131242","lastModified":"1301902166000","name":"Anthony Bell","type":"Person","_key":"54108"} +{"label":"Bitsie Tulloch","version":28,"id":"74577","lastModified":"1301901558000","name":"Bitsie Tulloch","type":"Person","_key":"54109"} +{"label":"Brian Donovan","version":27,"id":"9148","lastModified":"1301901516000","name":"Brian Donovan","type":"Person","_key":"54110"} +{"label":"Eric Price","version":17,"id":"146612","lastModified":"1301902637000","name":"Eric Price","type":"Person","_key":"54111"} +{"label":"Chris Carmack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82f\/4d1e18045e73d66b3b00082f\/chris-carmack-profile.jpg","version":41,"id":"87440","lastModified":"1301919972000","name":"Chris Carmack","type":"Person","_key":"54112"} +{"label":"U577 - \u00dcberleben ist ihr Ziel","description":"No overview found.","id":"12820","runtime":0,"version":12,"lastModified":"1300979520000","title":"U577 - \u00dcberleben ist ihr Ziel","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54113"} +{"label":"Steel Sharks","description":"Submarine crews wage a silent war beneath the waves in this undersea thriller.","id":"12821","runtime":94,"imdbId":"tt0117738","version":66,"lastModified":"1301907392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/498\/4bc93a55017a3c57fe018498\/steel-sharks-mid.jpg","genre":"Action","title":"Steel Sharks","releaseDate":820454400000,"language":"en","type":"Movie","_key":"54114"} +{"label":"Billy Warlock","version":22,"id":"88516","lastModified":"1301902716000","name":"Billy Warlock","type":"Person","_key":"54115"} +{"label":"William C. Martell","version":20,"id":"105169","lastModified":"1301902989000","name":"William C. Martell","type":"Person","_key":"54116"} +{"label":"Days and Clouds","description":"No overview found.","id":"12823","runtime":115,"imdbId":"tt0887732","version":152,"lastModified":"1301903214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ab\/4d68f7505e73d66b230008ab\/giorni-e-nuvole-mid.jpg","studio":"Lumi\u00e8re Pictures","genre":"Drama","title":"Days and Clouds","releaseDate":1189555200000,"language":"en","type":"Movie","_key":"54117"} +{"label":"Antonio Albanese","version":34,"id":"73864","lastModified":"1301902074000","name":"Antonio Albanese","type":"Person","_key":"54118"} +{"label":"Carla Signoris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d18\/4d4e63827b9aa13ab8009d18\/carla-signoris-profile.jpg","version":26,"id":"73866","lastModified":"1301902209000","name":"Carla Signoris","type":"Person","_key":"54119"} +{"label":"Fabio Troiano","version":24,"id":"73867","lastModified":"1301902315000","name":"Fabio Troiano","type":"Person","_key":"54120"} +{"label":"Paolo Sassanelli","version":21,"id":"73868","lastModified":"1301902213000","name":"Paolo Sassanelli","type":"Person","_key":"54121"} +{"label":"Arnaldo Ninchi","version":22,"id":"73871","lastModified":"1301902249000","name":"Arnaldo Ninchi","type":"Person","_key":"54122"} +{"label":"Antonio Carlo Francini","version":18,"id":"73872","lastModified":"1301902249000","name":"Antonio Carlo Francini","type":"Person","_key":"54123"} +{"label":"Teco Celio","version":21,"id":"73873","lastModified":"1301902213000","name":"Teco Celio","type":"Person","_key":"54124"} +{"label":"Sch\u00f6ner Gigolo, armer Gigolo","description":"No overview found.","id":"12826","runtime":0,"imdbId":"tt0079867","version":89,"lastModified":"1301012502000","title":"Sch\u00f6ner Gigolo, armer Gigolo","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54125"} +{"label":"No. 2","description":"One place. One night.\r\n\r\nA matriarch organizes a feast with her family, in which she will name her successor.\r\n\r\nThe heart has gone out of Nanna Maria's family. There are no parties -- they don't even fight anymore...\r\n","id":"12828","runtime":94,"imdbId":"tt0452345","version":141,"lastModified":"1301903459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4af\/4bc93a56017a3c57fe0184af\/no-2-mid.jpg","studio":"Numero Films Ltd","genre":"Comedy","title":"No. 2","releaseDate":1140048000000,"language":"en","type":"Movie","_key":"54126"} +{"label":"Toa Fraser","version":19,"id":"73875","lastModified":"1301902074000","name":"Toa Fraser","type":"Person","_key":"54127"} +{"label":"Miriama McDowell","version":19,"id":"73882","lastModified":"1301902074000","name":"Miriama McDowell","type":"Person","_key":"54128"} +{"label":"Rene Naufahu","version":19,"id":"73883","lastModified":"1301902249000","name":"Rene Naufahu","type":"Person","_key":"54129"} +{"label":"Xavier Horan","version":19,"id":"73884","lastModified":"1301902249000","name":"Xavier Horan","type":"Person","_key":"54130"} +{"label":"Pio Terei","version":19,"id":"73886","lastModified":"1301902249000","name":"Pio Terei","type":"Person","_key":"54131"} +{"label":"Tanea Heke","version":19,"id":"73885","lastModified":"1301902249000","name":"Tanea Heke","type":"Person","_key":"54132"} +{"label":"Tayla-Lee Griffin","version":19,"id":"73888","lastModified":"1301902249000","name":"Tayla-Lee Griffin","type":"Person","_key":"54133"} +{"label":"Brandon Lakshman","version":19,"id":"73887","lastModified":"1301902249000","name":"Brandon Lakshman","type":"Person","_key":"54134"} +{"label":"Michelle Ang","version":19,"id":"73890","lastModified":"1301902249000","name":"Michelle Ang","type":"Person","_key":"54135"} +{"label":"Joe Folau","version":20,"id":"73889","lastModified":"1301901535000","name":"Joe Folau","type":"Person","_key":"54136"} +{"label":"Margaret Emma Rhodes","version":19,"id":"73892","lastModified":"1301902249000","name":"Margaret Emma Rhodes","type":"Person","_key":"54137"} +{"label":"Paki Cherrington","version":19,"id":"73891","lastModified":"1301902249000","name":"Paki Cherrington","type":"Person","_key":"54138"} +{"label":"Sarah Lily Carson","version":19,"id":"73895","lastModified":"1301902249000","name":"Sarah Lily Carson","type":"Person","_key":"54139"} +{"label":"Andy Wong","version":19,"id":"73894","lastModified":"1301902249000","name":"Andy Wong","type":"Person","_key":"54140"} +{"label":"Mark Ruka","version":19,"id":"73893","lastModified":"1301902249000","name":"Mark Ruka","type":"Person","_key":"54141"} +{"label":"Amerikana","description":"No overview found.","id":"12831","runtime":95,"version":136,"lastModified":"1301906152000","genre":"Road Movie","title":"Amerikana","releaseDate":863654400000,"language":"en","type":"Movie","_key":"54142"} +{"label":"Tara Agace","version":16,"id":"73907","lastModified":"1301901780000","name":"Tara Agace","type":"Person","_key":"54143"} +{"label":"Morgan Vukovic","version":16,"id":"73908","lastModified":"1301901647000","name":"Morgan Vukovic","type":"Person","_key":"54144"} +{"label":"Anonyma - Eine Frau in Berlin","description":"A nameless woman keeps a diary as the Russians invade Berlin in the spring of 1945. She is in her early 30s, a patriotic journalist with international credentials; her husband, Gerd, a writer, is an officer at the Russian front. She speaks Russian and, for a day or two after the invasion, keeps herself safe, but then the rapes begin. She resolves to control her fate","id":"12832","runtime":131,"imdbId":"tt1035730","homepage":"http:\/\/www.anonyma.film.de\/","version":132,"lastModified":"1301903111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c9\/4bc93a5b017a3c57fe0184c9\/anonyma-eine-frau-in-berlin-mid.jpg","studio":"Constantin Film","genre":"Drama","title":"Anonyma - Eine Frau in Berlin","releaseDate":1221004800000,"language":"en","type":"Movie","_key":"54145"} +{"label":"Evgeny Titov","version":17,"id":"73924","lastModified":"1301901430000","name":"Evgeny Titov","type":"Person","_key":"54146"} +{"label":"Rolf K\u00e4stel","version":20,"id":"37802","lastModified":"1301901899000","name":"Rolf K\u00e4stel","type":"Person","_key":"54147"} +{"label":"J\u00f6rdis Triebel","version":17,"id":"73926","lastModified":"1301901722000","name":"J\u00f6rdis Triebel","type":"Person","_key":"54148"} +{"label":"Roman Gribkov","version":19,"id":"73927","lastModified":"1301902249000","name":"Roman Gribkov","type":"Person","_key":"54149"} +{"label":"Samvel Muzhikyan","version":17,"id":"73928","lastModified":"1301902249000","name":"Samvel Muzhikyan","type":"Person","_key":"54150"} +{"label":"The Last Pharaoh","description":"No overview found.","id":"12833","runtime":0,"imdbId":"tt0812268","version":41,"lastModified":"1301907391000","title":"The Last Pharaoh","releaseDate":1356998400000,"language":"en","type":"Movie","_key":"54151"} +{"label":"Leaves of Grass","description":"An Ivy League professor is lured back to his Oklahoma hometown, where his twin brother, a small-time pot grower, has concocted a scheme to take down a local drug lord.","id":"12834","runtime":105,"imdbId":"tt1151359","homepage":"http:\/\/www.leavesofgrassmovie.com\/","version":255,"lastModified":"1301902229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/701\/4ca1d2c55e73d67b5f000701\/leaves-of-grass-mid.jpg","studio":"Class 5 Films","genre":"Comedy","title":"Leaves of Grass","releaseDate":1270166400000,"language":"en","type":"Movie","_key":"54152"} +{"label":"Kidnapped","description":"No overview found.","id":"12836","runtime":390,"imdbId":"tt0077037","version":282,"lastModified":"1301417327000","genre":"Adventure","title":"Kidnapped","releaseDate":281923200000,"language":"en","type":"Movie","_key":"54153"} +{"label":"Ekkehardt Belle","version":22,"id":"73978","lastModified":"1301902320000","name":"Ekkehardt Belle","type":"Person","_key":"54154"} +{"label":"Aude Landry","version":19,"id":"73979","lastModified":"1301902318000","name":"Aude Landry","type":"Person","_key":"54155"} +{"label":"Leonard Maguire","version":22,"id":"73981","lastModified":"1301902373000","name":"Leonard Maguire","type":"Person","_key":"54156"} +{"label":"Wolfe Morris","version":21,"id":"73982","lastModified":"1302077695000","name":"Wolfe Morris","type":"Person","_key":"54157"} +{"label":"Bill Simpson","version":19,"id":"73983","lastModified":"1301902318000","name":"Bill Simpson","type":"Person","_key":"54158"} +{"label":"The Secret Life Of Bees","description":"Set in South Carolina in 1964, this is the tale of Lily Owens a 14 year-old girl who is haunted by the memory of her late mother. To escape her lonely life and troubled relationship with her father, Lily flees with Rosaleen, her caregiver and only friend, to a South Carolina town that holds the secret to her mother's past. ","id":"12837","runtime":110,"imdbId":"tt0416212","trailer":"http:\/\/www.youtube.com\/watch?v=969","homepage":"http:\/\/www.foxsearchlight.com\/thesecretlifeofbees\/","version":220,"lastModified":"1301903179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4bc93a5f017a3c57fe0184fa\/the-secret-life-of-bees-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"The Secret Life Of Bees","releaseDate":1221609600000,"language":"en","type":"Movie","_key":"54159"} +{"label":"Gina Prince-Bythewood","version":32,"id":"71947","lastModified":"1301901647000","name":"Gina Prince-Bythewood","type":"Person","_key":"54160"} +{"label":"Sharon Morris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/095\/4cdc5ae47b9aa13803000095\/sharon-morris-profile.jpg","version":29,"id":"142374","lastModified":"1301901207000","name":"Sharon Morris","type":"Person","_key":"54161"} +{"label":"One to Another","description":"Life of group of teenagers is interrupted by killing of popular friend.","id":"12838","runtime":95,"imdbId":"tt0486751","version":310,"lastModified":"1301416453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e8\/4c53a7f57b9aa13d4b0004e8\/chacun-sa-nuit-mid.jpg","genre":"Drama","title":"One to Another","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"54162"} +{"label":"Pascal Arnold","version":24,"id":"66022","lastModified":"1301901953000","name":"Pascal Arnold","type":"Person","_key":"54163"} +{"label":"Lizzie Brocher\u00e9","version":22,"id":"84432","lastModified":"1301902235000","name":"Lizzie Brocher\u00e9","type":"Person","_key":"54164"} +{"label":"Guillaume Bach\u00e9","version":13,"id":"191491","lastModified":"1301903135000","name":"Guillaume Bach\u00e9","type":"Person","_key":"54165"} +{"label":"Pierre Perrier","version":13,"id":"191503","lastModified":"1301903135000","name":"Pierre Perrier","type":"Person","_key":"54166"} +{"label":"The Curiosity of Chance","description":"High school coming-of-age tale. It is the 1980's and new wave angst and gender-bending fashion are all the rage. The new kid at school, Chance Marquis is a somewhat awkward teenager who is the target of the school bully. To deal with this dilemma, Chance turns to the opposite ends of the high school spectrum for help. On one end is the flamboyant drag queen and at the other end, the varsity jock.","id":"12839","runtime":98,"imdbId":"tt0481273","version":87,"lastModified":"1302012093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/504\/4bc93a60017a3c57fe018504\/the-curiosity-of-chance-mid.jpg","genre":"Comedy","title":"The Curiosity of Chance","releaseDate":1161388800000,"language":"en","type":"Movie","_key":"54167"} +{"label":"Brett Chukerman","version":18,"id":"87436","lastModified":"1301902905000","name":"Brett Chukerman","type":"Person","_key":"54168"} +{"label":"Russell P. Marleau","version":18,"id":"94261","lastModified":"1301902678000","name":"Russell P. Marleau","type":"Person","_key":"54169"} +{"label":"L'Homme de sa vie","description":"No overview found.","id":"12840","runtime":114,"imdbId":"tt0462683","version":65,"lastModified":"1301904944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2c\/4d69842f7b9aa13633001a2c\/l-homme-de-sa-vie-mid.jpg","studio":"Pan Europ\u00e9enne Production","genre":"Comedy","title":"L'Homme de sa vie","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"54170"} +{"label":"Niels Lexcellent","version":21,"id":"74012","lastModified":"1301902182000","name":"Niels Lexcellent","type":"Person","_key":"54171"} +{"label":"Knutschen, kuscheln, jubilieren","description":"No overview found.","id":"12841","runtime":0,"imdbId":"tt0155811","version":73,"lastModified":"1300979523000","title":"Knutschen, kuscheln, jubilieren","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54172"} +{"label":"Goodbye Deutschland! Die Auswanderer","description":"No overview found.","id":"12842","runtime":0,"imdbId":"tt0844551","version":123,"lastModified":"1301907391000","genre":"Documentary","title":"Goodbye Deutschland! Die Auswanderer","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54173"} +{"label":"Blue State","description":"BLUE STATE is a romantic comedy about a disgruntled Democrat who actually follows through on a drunken campaign promise to move to Canada if George \"Dubya\" Bush gets re-elected.","id":"12855","runtime":88,"imdbId":"tt0780486","trailer":"http:\/\/www.youtube.com\/watch?v=1280","version":340,"lastModified":"1301902880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4bc93a64017a3c57fe018511\/blue-state-mid.jpg","studio":"Eagle Vision Inc.","genre":"Comedy","title":"Blue State","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"54174"} +{"label":"Joyce Krenz","version":20,"id":"81070","lastModified":"1301902328000","name":"Joyce Krenz","type":"Person","_key":"54175"} +{"label":"Richard Blackburn","version":26,"id":"43304","lastModified":"1301901780000","name":"Richard Blackburn","type":"Person","_key":"54176"} +{"label":"Adriana O'Neil","version":20,"id":"81071","lastModified":"1301902527000","name":"Adriana O'Neil","type":"Person","_key":"54177"} +{"label":"Seun Olagunju","version":20,"id":"81072","lastModified":"1301902505000","name":"Seun Olagunju","type":"Person","_key":"54178"} +{"label":"Nick Ouellette","version":20,"id":"81073","lastModified":"1301902505000","name":"Nick Ouellette","type":"Person","_key":"54179"} +{"label":"Tim Henry","version":20,"id":"81074","lastModified":"1301902505000","name":"Tim Henry","type":"Person","_key":"54180"} +{"label":"James Juce","version":20,"id":"81075","lastModified":"1301902505000","name":"James Juce","type":"Person","_key":"54181"} +{"label":"Elicia Cronin","version":20,"id":"81076","lastModified":"1301902505000","name":"Elicia Cronin","type":"Person","_key":"54182"} +{"label":"Judy Cook","version":23,"id":"81494","lastModified":"1301902505000","name":"Judy Cook","type":"Person","_key":"54183"} +{"label":"Marshall Lewy","version":23,"id":"81068","lastModified":"1301902041000","name":"Marshall Lewy","type":"Person","_key":"54184"} +{"label":"Dead Man's Shoes","description":"Paddy Considine (who co-wrote the screenplay with Meadows) plays Richard, a taciturn army veteran newly returned to his hometown and on a mission to make a group of low-level criminals pay for abusing his mildly retarded younger brother, Anthony (Kebbel).","id":"12877","runtime":90,"imdbId":"tt0419677","version":141,"lastModified":"1302039378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51e\/4bc93a65017a3c57fe01851e\/dead-man-s-shoes-mid.jpg","studio":"Warp Films","genre":"Crime","title":"Dead Man's Shoes","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"54185"} +{"label":"Seamus O'Neill","version":21,"id":"122994","lastModified":"1301902170000","name":"Seamus O'Neill","type":"Person","_key":"54186"} +{"label":"Stuart Wolfenden","version":21,"id":"122995","lastModified":"1301902170000","name":"Stuart Wolfenden","type":"Person","_key":"54187"} +{"label":"Paul Sadot","version":21,"id":"122996","lastModified":"1301902355000","name":"Paul Sadot","type":"Person","_key":"54188"} +{"label":"Paul Hurstfield","version":21,"id":"122997","lastModified":"1301902517000","name":"Paul Hurstfield","type":"Person","_key":"54189"} +{"label":"Emily Aston","version":21,"id":"122998","lastModified":"1301902517000","name":"Emily Aston","type":"Person","_key":"54190"} +{"label":"George Newton","version":21,"id":"122999","lastModified":"1301902355000","name":"George Newton","type":"Person","_key":"54191"} +{"label":"Mondscheinkinder","description":"No overview found.","id":"12879","runtime":86,"imdbId":"tt0757277","homepage":"http:\/\/www.mondscheinkinder-der-film.de\/","version":43,"lastModified":"1300979529000","studio":"Hochschule f\u00fcr Fernsehen und Film M\u00fcnchen","genre":"Drama","title":"Mondscheinkinder","releaseDate":1138147200000,"language":"en","type":"Movie","_key":"54192"} +{"label":"Dalai Lama Renaissance","description":"No overview found.","id":"12880","runtime":81,"imdbId":"tt0953363","homepage":"www.dalailamafilm.de","version":64,"lastModified":"1301420299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed7\/4d60ff205e73d60c5a002ed7\/dalai-lama-renaissance-mid.jpg","studio":"Waken Films","title":"Dalai Lama Renaissance","releaseDate":1182816000000,"language":"en","type":"Movie","_key":"54193"} +{"label":"Belly","description":"No overview found.","id":"12887","runtime":0,"imdbId":"tt0469033","version":447,"lastModified":"1301054406000","genre":"Crime","title":"Belly","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54194"} +{"label":"Belly","description":"Tommy Brown and his friend Sincere are gangsters who have learned how to make a good living by dealing drugs and pulling armed robberies. Tommy and Sincere have been able to move out of the ghetto in Queens where they were raised and relocate to an upscale section of Manhattan; they would seem to have it made, but both realize that their lives are headed toward a dead end. Sincere begins getting i","id":"12888","runtime":96,"imdbId":"tt0158493","version":468,"lastModified":"1301905661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4bc93a67017a3c57fe01853d\/belly-mid.jpg","studio":"Artisan Entertainment","genre":"Crime","title":"Belly","releaseDate":910137600000,"language":"en","type":"Movie","_key":"54195"} +{"label":"Nas","version":17,"id":"104779","lastModified":"1301901515000","name":"Nas","type":"Person","_key":"54196"} +{"label":"Hassan Johnson","version":18,"id":"91508","lastModified":"1301902386000","name":"Hassan Johnson","type":"Person","_key":"54197"} +{"label":"Tionne 'T-Boz' Watkins","version":17,"id":"104780","lastModified":"1301902716000","name":"Tionne 'T-Boz' Watkins","type":"Person","_key":"54198"} +{"label":"Futurama: The Beast with a Billion Backs","description":"Futurama: The Beast with a Billion Backs is an animated science-fiction comedy, the second of the four Futurama straight-to-DVD films. The film was released in the United States and Canada on June 24, 2008, followed by a UK release on June 30, 2008 and an Australian release on August 6, 2008. It has been confirmed by David X. Cohen on the audio commentary that the title refers to the phrase for sexual intercourse \"the beast with two backs\" which originated in English in Shakespeare's Othello. Co","id":"12889","runtime":90,"imdbId":"tt1054485","trailer":"http:\/\/www.youtube.com\/watch?v=656","version":336,"lastModified":"1301901996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23c\/4d40d16f5e73d6571c00023c\/futurama-the-beast-with-a-billion-backs-mid.jpg","studio":"20th Century Fox Television","genre":"Animation","title":"Futurama: The Beast with a Billion Backs","releaseDate":1214265600000,"language":"en","tagline":"All-New Feature-Length Adventure!","type":"Movie","_key":"54199"} +{"label":"Peter Avanzino","version":31,"id":"74052","lastModified":"1301901388000","name":"Peter Avanzino","type":"Person","_key":"54200"} +{"label":"Phil LaMarr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/236\/4bf985ff017a3c7033000236\/phil-lamarr-profile.jpg","biography":"Phillip \"Phil\" LaMarr (born January 24, 1967) is an American actor, comedian and voice actor. One of the original cast members on the sketch comedy series MADtv, he is also known for his voice acting on the animated series Futurama, Static Shock, Samurai Jack, Justice League, Justice League Unlimited, Star Wars: Knights of the Old Republic II The Sith Lords, Star Wars: The Clone Wars, Metal Gear Solid 2: Sons of Liberty, Metal Gear Solid 4: Guns of the Patriots, and inFAMOUS.","version":66,"id":"31549","lastModified":"1302043968000","name":"Phil LaMarr","type":"Person","_key":"54201"} +{"label":"Smart People","description":"Professor Lawrence Wetherhold (Dennis Quaid) might be imperiously brilliant, monumentally self-possessed and an intellectual giant -- but when it comes to solving the conundrums of love and family, he's as downright flummoxed as the next guy.","id":"12890","runtime":95,"imdbId":"tt0858479","trailer":"http:\/\/www.youtube.com\/watch?v=658","homepage":"http:\/\/www.smartpeoplemovie.com\/","version":353,"lastModified":"1301903761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e67\/4cf178885e73d61929000e67\/smart-people-mid.jpg","genre":"Comedy","title":"Smart People","releaseDate":1207872000000,"language":"en","tagline":"Sometimes the smartest people have the most to learn","type":"Movie","_key":"54202"} +{"label":"Noam Murro","version":20,"id":"78914","lastModified":"1301901494000","name":"Noam Murro","type":"Person","_key":"54203"} +{"label":"Conspiracy","description":"The historical recreation of the 1942 Wannsee Conference, in which Nazi and SS leaders gathered in a Berlin suburb to discuss the \"Final Solution to the Jewish Question\". Lead by SS-General Reinhard Heydrich, this group of high ranking German officials came to the historic and far reaching decision that the Jews of Europe were to be exterminated in what would come to be known as the Holocaust.","id":"12900","runtime":96,"imdbId":"tt0266425","version":272,"lastModified":"1301903664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57a\/4bc93a71017a3c57fe01857a\/conspiracy-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Conspiracy","releaseDate":990230400000,"language":"en","type":"Movie","_key":"54204"} +{"label":"Brendan Coyle","version":25,"id":"74056","lastModified":"1301901776000","name":"Brendan Coyle","type":"Person","_key":"54205"} +{"label":"Frank Pierson","version":39,"id":"13861","lastModified":"1301901494000","name":"Frank Pierson","type":"Person","_key":"54206"} +{"label":"No End in Sight","description":"Chronological look at the fiasco in Iraq, especially decisions made in the spring of 2003 - and the backgrounds of those making decisions - immediately following the overthrow of Saddam: no occupation plan, an inadequate team to run the country, insufficient troops to keep order, and three edicts from the White House announced by Bremmer when he took over.","id":"12901","runtime":102,"imdbId":"tt0912593","homepage":"http:\/\/www.noendinsightmovie.com","version":174,"lastModified":"1301904387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/583\/4bc93a72017a3c57fe018583\/no-end-in-sight-mid.jpg","genre":"Documentary","title":"No End in Sight","releaseDate":1169424000000,"language":"en","tagline":"The American Occupation of Iraq. The Inside Story From the Ultimate Insiders.","type":"Movie","_key":"54207"} +{"label":"Gerald Burke","version":25,"id":"74053","lastModified":"1301901811000","name":"Gerald Burke","type":"Person","_key":"54208"} +{"label":"Ali Fadhil","version":25,"id":"74054","lastModified":"1301901991000","name":"Ali Fadhil","type":"Person","_key":"54209"} +{"label":"Robert Hutchings","version":25,"id":"74055","lastModified":"1301901950000","name":"Robert Hutchings","type":"Person","_key":"54210"} +{"label":"Charles Ferguson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c99\/4d6056777b9aa154cf003c99\/charles-ferguson-profile.jpg","biography":"Charles Henry Ferguson (born March 24, 1955) is the founder and president of Representational Pictures, Inc., director and producer of No End In Sight: The American Occupation of Iraq (2007) and Inside Job (2010), following careers as an Internet software entrepreneur and as a writer.","version":34,"birthday":"-466304400000","id":"74058","lastModified":"1301901950000","name":"Charles Ferguson","type":"Person","_key":"54211"} +{"label":"Scooby-Doo and the Loch Ness Monster","description":"Scooby-Doo, Shaggy, and the Mystery Inc. crew travel to Scotland on vacation and find themselves unexpectedly tackling their biggest monstrosity ever: the Loch Ness Monster! Does it really exist? Early evidence suggests a scary \"yes\" when something gigantic appears outside the window of Daphne's ancestral family castle. Will Scooby-Doo and crew solve one of history's longest-running mysteries?","id":"12902","runtime":74,"imdbId":"tt0418141","version":149,"lastModified":"1301908010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58c\/4bc93a72017a3c57fe01858c\/scooby-doo-and-the-loch-ness-monster-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Animation","title":"Scooby-Doo and the Loch Ness Monster","releaseDate":1087862400000,"language":"en","type":"Movie","_key":"54212"} +{"label":"Scott Jeralds","version":20,"id":"96337","lastModified":"1301902322000","name":"Scott Jeralds","type":"Person","_key":"54213"} +{"label":"Joe Sichta","version":21,"id":"113896","lastModified":"1301902635000","name":"Joe Sichta","type":"Person","_key":"54214"} +{"label":"Mindy Cohn","version":31,"id":"86314","lastModified":"1301901561000","name":"Mindy Cohn","type":"Person","_key":"54215"} +{"label":"Sheena Easton","version":20,"id":"109988","lastModified":"1301901722000","name":"Sheena Easton","type":"Person","_key":"54216"} +{"label":"Scooby-Doo and the Goblin King","description":"Scooby-Doo and Shaggy must go into the underworld ruled by the Goblin King in order to stop a mortal named The Amazing Krudsky who wants power and is a threat to their pals, Fred, Velma and Daphne.","id":"12903","runtime":75,"imdbId":"tt1295021","version":154,"lastModified":"1301904650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/595\/4bc93a73017a3c57fe018595\/scooby-doo-and-the-goblin-king-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Action","title":"Scooby-Doo and the Goblin King","releaseDate":1222128000000,"language":"en","type":"Movie","_key":"54217"} +{"label":"Vercing\u00e9torix","description":"No overview found.","id":"12911","runtime":124,"imdbId":"tt0199481","version":33,"lastModified":"1301907357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/383\/4bf24fab017a3c3212000383\/vercingetorix-mid.jpg","title":"Vercing\u00e9torix","releaseDate":980294400000,"language":"en","type":"Movie","_key":"54218"} +{"label":"Chaos Theory","description":"Frank Allen, a professional speaker who lectures on time management has a perfectly ordered and scheduled life, down to the minute. When his wife sets his clock forward 10 minutes as a joke, his day is thrown off. Deciding that his strictly ordered life has done him little good, he begins to make multiple choice index cards, choosing one at random and doing what is written on the card.","id":"12912","runtime":87,"imdbId":"tt0460745","trailer":"http:\/\/www.youtube.com\/watch?v=661","homepage":"http:\/\/chaostheorymovie.warnerbros.com\/","version":269,"lastModified":"1301903761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a6\/4bc93a74017a3c57fe0185a6\/chaos-theory-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Chaos Theory","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"54219"} +{"label":"Sarah Chalke","version":31,"id":"49001","lastModified":"1301901494000","name":"Sarah Chalke","type":"Person","_key":"54220"} +{"label":"Marcos Siega","version":26,"id":"74062","lastModified":"1301901812000","name":"Marcos Siega","type":"Person","_key":"54221"} +{"label":"Stargate: Continuum","description":"Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.","id":"12914","runtime":98,"imdbId":"tt0929629","trailer":"http:\/\/www.youtube.com\/watch?v=662","version":403,"lastModified":"1301902915000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b9\/4bc93a77017a3c57fe0185b9\/stargate-continuum-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Stargate: Continuum","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"54222"} +{"label":"Amanda Tapping","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4c30c12e7b9aa1705900007c\/amanda-tapping-profile.jpg","version":31,"birthday":"-137120400000","id":"26087","birthplace":"Rochford, Essex, England, UK","lastModified":"1301901166000","name":"Amanda Tapping","type":"Person","_key":"54223"} +{"label":"Christopher Judge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/431\/4bfa6f74017a3c7033000431\/christopher-judge-profile.jpg","version":38,"id":"26088","lastModified":"1301901243000","name":"Christopher Judge","type":"Person","_key":"54224"} +{"label":"Michael Shanks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/406\/4bfa706e017a3c7031000406\/michael-shanks-profile.jpg","version":44,"id":"26086","lastModified":"1301901566000","name":"Michael Shanks","type":"Person","_key":"54225"} +{"label":"Cliff Simon","version":21,"id":"111378","lastModified":"1301902706000","name":"Cliff Simon","type":"Person","_key":"54226"} +{"label":"Jacqueline Samuda","version":21,"id":"111379","lastModified":"1301902720000","name":"Jacqueline Samuda","type":"Person","_key":"54227"} +{"label":"Martin Wood","version":33,"id":"59781","lastModified":"1301901823000","name":"Martin Wood","type":"Person","_key":"54228"} +{"label":"Stargate","description":"No overview found.","id":"12917","version":383,"lastModified":"1301905957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82d\/4c096676017a3c7e9200082d\/stargate-mid.jpg","genre":"Action","title":"Stargate","language":"en","type":"Movie","_key":"54229"} +{"label":"Can't Buy Me Love","description":"Ronald Miller is tired of being a nerd, and makes a deal with one of the most popular girls in school to help him break into the \"cool\" clic. He offers her a thousand dollars to pretend to be his girlfriend for a month. It succeeds, but he soon learns that the price of popularity may be higher than he expected.","id":"12919","runtime":94,"imdbId":"tt0092718","version":264,"lastModified":"1301903450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d7\/4bc93a7e017a3c57fe0185d7\/can-t-buy-me-love-mid.jpg","studio":"Apollo Pictures","genre":"Comedy","title":"Can't Buy Me Love","releaseDate":555897600000,"language":"en","tagline":"Money can buy popularity but it... Can't Buy Me Love","type":"Movie","_key":"54230"} +{"label":"Darcy DeMoss","version":30,"id":"82956","lastModified":"1301901967000","name":"Darcy DeMoss","type":"Person","_key":"54231"} +{"label":"Dreamer: Inspired By a True Story","description":"Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the horse (in fact is a mare)and save it of being sacrificed by the owner. ","id":"12920","runtime":106,"imdbId":"tt0418647","version":268,"lastModified":"1301904298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ed\/4bc93a80017a3c57fe0185ed\/dreamer-inspired-by-a-true-story-mid.jpg","genre":"Drama","title":"Dreamer: Inspired By a True Story","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"54232"} +{"label":"John Gatins","version":32,"id":"53176","lastModified":"1301901327000","name":"John Gatins","type":"Person","_key":"54233"} +{"label":"Strange Brew","description":"Something is rotten at the Elsinore Brewery. Bob and Doug Mackenzie (as seen on SCTV) help the orphan Pam regain the brewery founded by her recently-deceased father. But to do so, they must confront the suspicious brewmaster and two teams of vicious hockey players.","id":"12921","runtime":90,"imdbId":"tt0086373","trailer":"http:\/\/www.youtube.com\/watch?v=1658","version":281,"lastModified":"1301907533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fa\/4bc93a81017a3c57fe0185fa\/strange-brew-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Comedy","title":"Strange Brew","releaseDate":430704000000,"language":"en","type":"Movie","_key":"54234"} +{"label":"The Place Promised in Our Early Days","description":"The story takes place in a alternate postwar period, in 1996, where Japan is divided. Hokkaido is ruled by the \"Union\" while Honshu and other southern islands are under US authority. A tall tower was built on Hokkaido, which could even be seen from Tokyo. In the summer of 1996, three middle-school students make a promise that they'll cross the border with a self-constructed plane and unravel the tower's secret, but their project was abandoned after the girl, Sayuri Sawatari, became mysteriously ","id":"12924","runtime":91,"imdbId":"tt0381348","trailer":"http:\/\/www.youtube.com\/watch?v=664","homepage":"http:\/\/www.kumonomukou.com\/","version":105,"lastModified":"1301904920000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bb\/4c4642827b9aa15ddd0001bb\/kumo-no-mukou-yakusoku-no-basho-mid.jpg","studio":"ADV Films","genre":"Animation","title":"The Place Promised in Our Early Days","releaseDate":1100908800000,"language":"en","tagline":"Against all odds, a promise will be kept.","type":"Movie","_key":"54235"} +{"label":"Makoto Shinkai","version":48,"id":"74091","lastModified":"1301901268000","name":"Makoto Shinkai","type":"Person","_key":"54236"} +{"label":"Hidetaka Yoshioka","version":23,"id":"111691","lastModified":"1301902988000","name":"Hidetaka Yoshioka","type":"Person","_key":"54237"} +{"label":"Masato Hagiwara","version":19,"id":"116321","lastModified":"1301902988000","name":"Masato Hagiwara","type":"Person","_key":"54238"} +{"label":"Yuka Nanri","version":17,"id":"116322","lastModified":"1301902678000","name":"Yuka Nanri","type":"Person","_key":"54239"} +{"label":"Kazuhiko Inoue","version":35,"id":"89968","lastModified":"1301901508000","name":"Kazuhiko Inoue","type":"Person","_key":"54240"} +{"label":"Risa Mizuno","version":17,"id":"116323","lastModified":"1301902505000","name":"Risa Mizuno","type":"Person","_key":"54241"} +{"label":"Ti\u00ebsto Elements of Life World Tour","description":"Repeatedly topping the list of DJ magazine's Top 100 DJs, acclaimed Dutch trance-spinner T\u00efesto enthralls 25,000 fans in this epic November 2007 performance at Copenhagen's Parken Stadium. The multimedia spectacle combines dazzling light effects and a hypnotic blend of sounds, featuring tracks from T\u00efesto's Grammy-nominated album, \"Elements of Life\".","id":"12963","runtime":240,"homepage":"http:\/\/www.tiesto.com\/","version":73,"lastModified":"1301902661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/621\/4bc93a85017a3c57fe018621\/tiesto-elements-of-life-world-tour-mid.jpg","studio":"Magik","genre":"Musical","title":"Ti\u00ebsto Elements of Life World Tour","releaseDate":1204848000000,"language":"en","type":"Movie","_key":"54242"} +{"label":"Ti\u00ebsto","version":22,"id":"74090","lastModified":"1301901494000","name":"Ti\u00ebsto","type":"Person","_key":"54243"} +{"label":"The Nines","description":"A troubled actor, a television show runner, and an acclaimed videogame designer find their lives intertwining in mysterious and unsettling ways.","id":"12994","runtime":100,"imdbId":"tt0810988","trailer":"http:\/\/www.youtube.com\/watch?v=666","version":178,"lastModified":"1301904766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4bc93a89017a3c57fe01862e\/the-nines-mid.jpg","studio":"Destination Films","genre":"Drama","title":"The Nines","releaseDate":1196380800000,"language":"en","tagline":"Y9u never kn9w when y9ur number is up.","type":"Movie","_key":"54244"} +{"label":"Melissa McCarthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/089\/4cdc58537b9aa13803000089\/melissa-mccarthy-profile.jpg","version":44,"id":"55536","lastModified":"1301901401000","name":"Melissa McCarthy","type":"Person","_key":"54245"} +{"label":"John August","version":69,"id":"1300","lastModified":"1299492527000","name":"John August","type":"Person","_key":"54246"} +{"label":"Stargate: The Ark of Truth","description":"SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.","id":"13001","runtime":102,"imdbId":"tt0942903","version":248,"lastModified":"1301902880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/640\/4bc93a8a017a3c57fe018640\/stargate-the-ark-of-truth-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Stargate: The Ark of Truth","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"54247"} +{"label":"Robert C. Cooper","version":40,"id":"27745","lastModified":"1301901777000","name":"Robert C. Cooper","type":"Person","_key":"54248"} +{"label":"Barbie in the 12 Dancing Princesses","description":"King Randolph sends for his cousin Duchess Rowena to help turn his daughters, Princess Genevieve and her 11 sisters, into better ladies. But the Duchess takes away all the sisters fun, including the sisters favorite pastime: dancing.Thinking all hope is lost they find a secret passageway to a magical land were they can dance the night away.","id":"13002","runtime":81,"imdbId":"tt0859594","homepage":"http:\/\/barbie.everythinggirl.com\/activities\/fantasy\/princess\/12dp\/","version":146,"lastModified":"1301905456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65b\/4bc93a8c017a3c57fe01865b\/barbie-in-the-12-dancing-princesses-mid.jpg","genre":"Animation","title":"Barbie in the 12 Dancing Princesses","releaseDate":1158624000000,"language":"en","type":"Movie","_key":"54249"} +{"label":"Gonzo: The Life and Work of Dr. Hunter S. Thompson","description":"Fueled by a raging libido, Wild Turkey, and superhuman doses of drugs, Thompson was a true \"free lance, \" goring sacred cows with impunity, hilarity, and a steel-eyed conviction for writing wrongs. Focusing on the good doctor's heyday, 1965 to 1975, the film includes clips of never-before-seen (nor heard) home movies, audiotapes, and passages from unpublished manuscripts.","id":"13003","runtime":120,"imdbId":"tt0479468","trailer":"http:\/\/www.youtube.com\/watch?v=667","homepage":"http:\/\/www.huntersthompsonmovie.com\/","version":89,"lastModified":"1301902712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4bc93a8d017a3c57fe018670\/gonzo-the-life-and-work-of-dr-hunter-s-thompson-mid.jpg","studio":"Magnolia Pictures","genre":"Documentary","title":"Gonzo: The Life and Work of Dr. Hunter S. Thompson","releaseDate":1226966400000,"language":"en","type":"Movie","_key":"54250"} +{"label":"Alex Gibney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/667\/4ca9a2177b9aa17ace000667\/alex-gibney-profile.jpg","version":49,"id":"71797","lastModified":"1301901523000","name":"Alex Gibney","type":"Person","_key":"54251"} +{"label":"Hunter S. Thompson","version":31,"id":"19724","lastModified":"1302059465000","name":"Hunter S. Thompson","type":"Person","_key":"54252"} +{"label":"Barbie and the Diamond Castle","description":"Liana and Alexa (Barbie and Teresa) are best friends who share everything, including their love of singing. One day while walking through the forest home from the village, the girls meet an old beggar who gives them a magical mirror. As they clean the mirror and sing, a musical apprentice muse named Melody appears in the mirror's surface, and tells the girls about the secret of the Diamond Castle.","id":"13004","runtime":79,"imdbId":"tt1294138","version":238,"lastModified":"1301903517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/681\/4bc93a8e017a3c57fe018681\/barbie-and-the-diamond-castle-mid.jpg","genre":"Animation","title":"Barbie and the Diamond Castle","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"54253"} +{"label":"Kelly Sheridan","version":57,"id":"74358","lastModified":"1301901147000","name":"Kelly Sheridan","type":"Person","_key":"54254"} +{"label":"Melissa Lyons","version":23,"id":"85429","lastModified":"1301902074000","name":"Melissa Lyons","type":"Person","_key":"54255"} +{"label":"Cassidy Ladden","version":23,"id":"85430","lastModified":"1301901722000","name":"Cassidy Ladden","type":"Person","_key":"54256"} +{"label":"Chantal Strand","version":26,"id":"85431","lastModified":"1301901814000","name":"Chantal Strand","type":"Person","_key":"54257"} +{"label":"Maryke Hendrikse","version":23,"id":"85432","lastModified":"1301902074000","name":"Maryke Hendrikse","type":"Person","_key":"54258"} +{"label":"Lara Janine","version":23,"id":"85433","lastModified":"1301901870000","name":"Lara Janine","type":"Person","_key":"54259"} +{"label":"Gino Nichele","version":23,"id":"85435","lastModified":"1301901870000","name":"Gino Nichele","type":"Person","_key":"54260"} +{"label":"Where The Buffalo Roam","description":"Semi-biographical film based on the experiences of gonzo journalist Hunter S. Thompson.","id":"13005","runtime":96,"imdbId":"tt0081748","trailer":"http:\/\/www.youtube.com\/watch?v=686","version":216,"lastModified":"1301903202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dd\/4c24b4e87b9aa144700000dd\/where-the-buffalo-roam-mid.jpg","genre":"Action","title":"Where The Buffalo Roam","releaseDate":325468800000,"language":"en","type":"Movie","_key":"54261"} +{"label":"Art Linson","version":84,"id":"1254","lastModified":"1299902807000","name":"Art Linson","type":"Person","_key":"54262"} +{"label":"Split Second","description":"In a futuristic London, the rising sea levels mean that large areas are under feet of water. Hauer plays a cop who previously lost his partner to some strange creature. Now the creature is back and its after him.","id":"13006","runtime":90,"imdbId":"tt0105459","version":137,"lastModified":"1301904438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/698\/4bc93a94017a3c57fe018698\/split-second-mid.jpg","genre":"Action","title":"Split Second","releaseDate":704678400000,"language":"en","type":"Movie","_key":"54263"} +{"label":"Alastair Duncan","version":19,"id":"110800","lastModified":"1301902074000","name":"Alastair Duncan","type":"Person","_key":"54264"} +{"label":"Ian Dury","version":19,"id":"113908","lastModified":"1301902892000","name":"Ian Dury","type":"Person","_key":"54265"} +{"label":"Roberta Eaton","version":19,"id":"113909","lastModified":"1301902892000","name":"Roberta Eaton","type":"Person","_key":"54266"} +{"label":"Steven Hartley","version":19,"id":"113910","lastModified":"1301902892000","name":"Steven Hartley","type":"Person","_key":"54267"} +{"label":"Ian Sharp","version":20,"id":"113907","lastModified":"1301902205000","name":"Ian Sharp","type":"Person","_key":"54268"} +{"label":"Religulous","description":"Bill Maher's take on the current state of world religion.","id":"13007","runtime":101,"imdbId":"tt0815241","trailer":"http:\/\/www.youtube.com\/watch?v=668","homepage":"http:\/\/www.lionsgate.com\/religulous\/","version":181,"lastModified":"1301902255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8a\/4cffdbd55e73d6299c005d8a\/religulous-mid.jpg","studio":"Lions Gate Films","genre":"Comedy","title":"Religulous","releaseDate":1222992000000,"language":"en","tagline":"Heaven help us.","type":"Movie","_key":"54269"} +{"label":"Bill Maher","version":43,"id":"74086","lastModified":"1301901215000","name":"Bill Maher","type":"Person","_key":"54270"} +{"label":"Jose Luis De Jesus Miranda","version":22,"id":"74087","lastModified":"1301901457000","name":"Jose Luis De Jesus Miranda","type":"Person","_key":"54271"} +{"label":"Andrew Newberg","version":22,"id":"74088","lastModified":"1301901417000","name":"Andrew Newberg","type":"Person","_key":"54272"} +{"label":"Steve Burg","version":22,"id":"74089","lastModified":"1301901456000","name":"Steve Burg","type":"Person","_key":"54273"} +{"label":"An American Crime","description":"The true story of suburban housewife Gertrude Baniszewski, who kept a teenage girl locked in the basement of her Indiana home during the 1960s.","id":"13008","runtime":98,"imdbId":"tt0802948","trailer":"http:\/\/www.youtube.com\/watch?v=717","version":199,"lastModified":"1301902389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c8\/4bc93a99017a3c57fe0186c8\/an-american-crime-mid.jpg","genre":"Drama","title":"An American Crime","releaseDate":1196985600000,"language":"en","tagline":"The true story of a child's punishment that became a woman's crime.","type":"Movie","_key":"54274"} +{"label":"Zombie Strippers","description":"In the not too distant future a secret government re-animation chemo-virus gets released into conservative Sartre, Nebraska and lands in an underground strip club. As the virus begins to spread, turning the strippers into \"Super Zombie Strippers\" the girls struggle with whether or not to conform to the new \"fad\" even if it means there's no turning back.","id":"13009","runtime":94,"imdbId":"tt0960890","trailer":"http:\/\/www.youtube.com\/watch?v=ekh3hsLpuSI","version":249,"lastModified":"1301902047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6da\/4bc93a9a017a3c57fe0186da\/zombie-strippers-mid.jpg","studio":"Stage 6 Films","genre":"Comedy","title":"Zombie Strippers","releaseDate":1221782400000,"language":"en","tagline":"Live Dead Nudes","type":"Movie","_key":"54275"} +{"label":"Jay Lee","version":22,"id":"87160","lastModified":"1301902200000","name":"Jay Lee","type":"Person","_key":"54276"} +{"label":"Jenna Jameson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4c3a26537b9aa10edb000222\/jenna-jameson-profile.jpg","version":43,"id":"26223","lastModified":"1301901150000","name":"Jenna Jameson","type":"Person","_key":"54277"} +{"label":"Roxy Saint","version":21,"id":"87162","lastModified":"1301901771000","name":"Roxy Saint","type":"Person","_key":"54278"} +{"label":"Penny Drake","version":23,"id":"87163","lastModified":"1301901774000","name":"Penny Drake","type":"Person","_key":"54279"} +{"label":"Whitney Anderson","version":21,"id":"87164","lastModified":"1301902480000","name":"Whitney Anderson","type":"Person","_key":"54280"} +{"label":"Jennifer Holland","version":21,"id":"87165","lastModified":"1301901937000","name":"Jennifer Holland","type":"Person","_key":"54281"} +{"label":"Shamron Moore","version":21,"id":"87166","lastModified":"1301902480000","name":"Shamron Moore","type":"Person","_key":"54282"} +{"label":"Jeannette Sousa","version":21,"id":"87167","lastModified":"1301902480000","name":"Jeannette Sousa","type":"Person","_key":"54283"} +{"label":"Laura Bach","version":21,"id":"87168","lastModified":"1301902480000","name":"Laura Bach","type":"Person","_key":"54284"} +{"label":"9\/11: Press For Truth","description":"Out of the grieving thousands left behind on September 11th, a small group of activist families emerged to demand answers. In '9\/11 Press For Truth', six of them (including three of the famous \"Jersey Girls\") tell for the first time the powerful story of how they took on the powers in Washington and won! compelling an investigation, only to subsequently watch the 9\/11 Commission fail in answering most of their questions.","id":"13010","runtime":125,"imdbId":"tt0867134","trailer":"http:\/\/www.youtube.com\/watch?v=732","homepage":"http:\/\/www.911pressfortruth.com\/","version":147,"lastModified":"1301904463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e3\/4bc93a9d017a3c57fe0186e3\/9-11-press-for-truth-mid.jpg","genre":"Documentary","title":"9\/11: Press For Truth","releaseDate":1157414400000,"language":"en","type":"Movie","_key":"54285"} +{"label":"Dick Cheney","version":23,"id":"74266","lastModified":"1301901516000","name":"Dick Cheney","type":"Person","_key":"54286"} +{"label":"Kristen Breitweiser","version":20,"id":"74267","lastModified":"1301901673000","name":"Kristen Breitweiser","type":"Person","_key":"54287"} +{"label":"Patty Casazza","version":20,"id":"74268","lastModified":"1301902146000","name":"Patty Casazza","type":"Person","_key":"54288"} +{"label":"Ray Nowosielski","version":20,"id":"74269","lastModified":"1301901647000","name":"Ray Nowosielski","type":"Person","_key":"54289"} +{"label":"Sharpe's Challenge","description":"The Duke of Wellington send Sharpe to India to investigate Maharaja Khande Rao who is causing trouble for the British.","id":"13011","runtime":138,"imdbId":"tt0480002","version":115,"lastModified":"1301908302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4bc93a9f017a3c57fe0186ec\/sharpe-s-challenge-mid.jpg","genre":"Adventure","title":"Sharpe's Challenge","releaseDate":1192233600000,"language":"en","type":"Movie","_key":"54290"} +{"label":"Tom Clegg","version":55,"id":"96372","lastModified":"1301901700000","name":"Tom Clegg","type":"Person","_key":"54291"} +{"label":"Daragh O'Malley","version":28,"id":"96375","lastModified":"1301902635000","name":"Daragh O'Malley","type":"Person","_key":"54292"} +{"label":"Lucy Brown","version":21,"id":"35864","lastModified":"1301901310000","name":"Lucy Brown","type":"Person","_key":"54293"} +{"label":"Alyy Khan","version":27,"id":"81837","lastModified":"1301901095000","name":"Alyy Khan","type":"Person","_key":"54294"} +{"label":"Thierry Hancisse","version":22,"id":"96376","lastModified":"1301902205000","name":"Thierry Hancisse","type":"Person","_key":"54295"} +{"label":"Felon","description":"A family man convicted of killing an intruder must cope with life afterward in the violent penal system.","id":"13012","runtime":103,"imdbId":"tt1117385","homepage":"http:\/\/www.sonypictures.com\/homevideo\/felon\/","version":264,"lastModified":"1301901464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f9\/4bc93a9f017a3c57fe0186f9\/felon-mid.jpg","studio":"Stage 6 Films","genre":"Action","title":"Felon","releaseDate":1216339200000,"language":"en","tagline":"No rule. No hope. No way out.","type":"Movie","_key":"54296"} +{"label":"Vincent Miller","version":24,"id":"84458","lastModified":"1301901535000","name":"Vincent Miller","type":"Person","_key":"54297"} +{"label":"Larnell Stovall","version":25,"id":"84459","lastModified":"1301902249000","name":"Larnell Stovall","type":"Person","_key":"54298"} +{"label":"Ric Roman Waugh","version":30,"id":"76422","lastModified":"1301901610000","name":"Ric Roman Waugh","type":"Person","_key":"54299"} +{"label":"Son of Dracula","description":"No overview found.","id":"13013","runtime":90,"imdbId":"tt0072189","version":109,"lastModified":"1301416863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/702\/4bc93aa0017a3c57fe018702\/son-of-dracula-mid.jpg","title":"Son of Dracula","releaseDate":134956800000,"language":"en","type":"Movie","_key":"54300"} +{"label":"The God Who Wasn't There","description":"Did Jesus exist? This film starts with that question, then goes on to examine Christianity as a whole.","id":"13014","runtime":62,"imdbId":"tt0455507","homepage":"http:\/\/www.thegodmovie.com","version":151,"lastModified":"1301903342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70b\/4bc93aa1017a3c57fe01870b\/the-god-who-wasn-t-there-mid.jpg","genre":"Documentary","title":"The God Who Wasn't There","releaseDate":1116633600000,"language":"en","type":"Movie","_key":"54301"} +{"label":"Richard Dawkins","version":33,"id":"74093","lastModified":"1301901525000","name":"Richard Dawkins","type":"Person","_key":"54302"} +{"label":"Sam Harris","version":20,"id":"74094","lastModified":"1301901563000","name":"Sam Harris","type":"Person","_key":"54303"} +{"label":"Robert M. Price","version":22,"id":"74095","lastModified":"1301901780000","name":"Robert M. Price","type":"Person","_key":"54304"} +{"label":"Richard Carrier","version":20,"id":"74096","lastModified":"1301902145000","name":"Richard Carrier","type":"Person","_key":"54305"} +{"label":"George Carlin: Life Is Worth Losing","description":"Some look at life on the bright side. He prefers the grave side.","id":"13015","runtime":75,"imdbId":"tt0484855","version":119,"lastModified":"1301903858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/719\/4bc93aa2017a3c57fe018719\/george-carlin-life-is-worth-losing-mid.jpg","studio":"HBO Films","genre":"Comedy","title":"George Carlin: Life Is Worth Losing","releaseDate":1131148800000,"language":"en","type":"Movie","_key":"54306"} +{"label":"Zeitgeist","description":"Zeitgeist: the Movie is a 2007 documentary film by Peter Joseph examining possible historical and modern conspiracies surrounding Christianity, the September 11, 2001 terrorist attacks and the Federal Reserve bank. It was officially released online on June 18, 2007 on www.ZeitgeistMovie.com","id":"13016","runtime":118,"imdbId":"tt1166827","homepage":"http:\/\/www.zeitgeistmovie.com","version":137,"lastModified":"1301902378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72b\/4bc93aa3017a3c57fe01872b\/zeitgeist-mid.jpg","genre":"Documentary","title":"Zeitgeist","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"54307"} +{"label":"Peter Joseph","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be2\/4d345b165e73d63349006be2\/peter-joseph-profile.jpg","biography":"<a href=\"http:\/\/en.wikipedia.org\/wiki\/Peter_Joseph\">http:\/\/en.wikipedia.org\/wiki\/Peter_Joseph<\/a>","version":82,"id":"74257","lastModified":"1301901373000","name":"Peter Joseph","type":"Person","_key":"54308"} +{"label":"Unstable Fables: Tortoise vs Hare","description":"The rematch of the century.","id":"13017","runtime":80,"imdbId":"tt1086798","version":74,"lastModified":"1301903602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/734\/4bc93aa4017a3c57fe018734\/unstable-fables-tortoise-vs-hare-mid.jpg","genre":"Animation","title":"Unstable Fables: Tortoise vs Hare","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"54309"} +{"label":"Howard E. Baker","version":28,"id":"74099","lastModified":"1301997171000","name":"Howard E. Baker","type":"Person","_key":"54310"} +{"label":"Arish Fyzee","version":20,"id":"74100","lastModified":"1301901812000","name":"Arish Fyzee","type":"Person","_key":"54311"} +{"label":"Deception","description":"An accountant is introduced to a mysterious sex club known as The List by his lawyer friend. But in this new world, he soon becomes the prime suspect in a woman's disappearance and a multi-million dollar heist.","id":"13018","runtime":108,"imdbId":"tt0800240","trailer":"http:\/\/www.youtube.com\/watch?v=cz8LnuSOA3E","version":285,"lastModified":"1301902299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be6\/4d8b637a5e73d653d1000be6\/deception-mid.jpg","genre":"Action","title":"Deception","releaseDate":1219536000000,"language":"en","type":"Movie","_key":"54312"} +{"label":"Andrew Ginsburg","version":21,"id":"133442","lastModified":"1301901611000","name":"Andrew Ginsburg","type":"Person","_key":"54313"} +{"label":"Christine Kan","version":21,"id":"133443","lastModified":"1301901751000","name":"Christine Kan","type":"Person","_key":"54314"} +{"label":"Dante Spinotti","version":78,"id":"11099","lastModified":"1302059372000","name":"Dante Spinotti","type":"Person","_key":"54315"} +{"label":"Karolina Muller","version":21,"id":"133444","lastModified":"1301901643000","name":"Karolina Muller","type":"Person","_key":"54316"} +{"label":"Agnete Oernsholt","version":21,"id":"133445","lastModified":"1301901632000","name":"Agnete Oernsholt","type":"Person","_key":"54317"} +{"label":"Melissa Rae Mahon","version":21,"id":"133446","lastModified":"1301901639000","name":"Melissa Rae Mahon","type":"Person","_key":"54318"} +{"label":"Rachel Montez Collins","version":23,"id":"133447","lastModified":"1301901825000","name":"Rachel Montez Collins","type":"Person","_key":"54319"} +{"label":"Holly Cruikshank","version":22,"id":"133448","lastModified":"1301901581000","name":"Holly Cruikshank","type":"Person","_key":"54320"} +{"label":"Deborah Yates","version":22,"id":"133449","lastModified":"1301901686000","name":"Deborah Yates","type":"Person","_key":"54321"} +{"label":"Bill Camp","version":28,"id":"121718","lastModified":"1301901574000","name":"Bill Camp","type":"Person","_key":"54322"} +{"label":"Zoe Perry","version":21,"id":"133450","lastModified":"1301901562000","name":"Zoe Perry","type":"Person","_key":"54323"} +{"label":"Aya Cash","version":21,"id":"133451","lastModified":"1301901605000","name":"Aya Cash","type":"Person","_key":"54324"} +{"label":"Daisy Bates","version":22,"id":"133453","lastModified":"1301901673000","name":"Daisy Bates","type":"Person","_key":"54325"} +{"label":"Shannan Click","version":21,"id":"133454","lastModified":"1301901532000","name":"Shannan Click","type":"Person","_key":"54326"} +{"label":"Jordan Tesfay","version":21,"id":"133455","lastModified":"1301901340000","name":"Jordan Tesfay","type":"Person","_key":"54327"} +{"label":"Marcel Langenegger","version":26,"id":"74101","lastModified":"1301901673000","name":"Marcel Langenegger","type":"Person","_key":"54328"} +{"label":"Young People Fucking","description":"A smart and fast-paced comedy that intertwines the stories of 5 couples over the course of one sexual encounter.","id":"13019","runtime":90,"imdbId":"tt0913445","trailer":"http:\/\/www.youtube.com\/watch?v=2WnKLHpgaJ4&hd=1","version":177,"lastModified":"1301902184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75e\/4bc93aaa017a3c57fe01875e\/young-people-fucking-mid.jpg","genre":"Comedy","title":"Young People Fucking","releaseDate":1213315200000,"language":"en","tagline":"Coming Together Has Never Been So Complicated","type":"Movie","_key":"54329"} +{"label":"Martin Gero","version":24,"id":"72101","lastModified":"1301901995000","name":"Martin Gero","type":"Person","_key":"54330"} +{"label":"Enron: The Smartest Guys in the Room","description":"A documentary about the Enron corporation, its faulty and corrupt business practices, and how they led to its fall... come see where all your money went.","id":"13020","runtime":110,"imdbId":"tt1016268","version":178,"lastModified":"1301903497000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/767\/4bc93aaa017a3c57fe018767\/enron-the-smartest-guys-in-the-room-mid.jpg","studio":"PBS Home Video","genre":"Documentary","title":"Enron: The Smartest Guys in the Room","releaseDate":1114128000000,"language":"en","type":"Movie","_key":"54331"} +{"label":"Flakes","description":"Aspiring rock musician Neal Downs manages a cereal bar. Stylish Miss Pussy Katz is the creator of radically-themed art clothing. When the cereal bar, brings in an offbeat crew of locals, who debate the arcana of cereal history and ideal milk\/flake ratios, an aspiring capitalist rips off their concept.","id":"13021","runtime":84,"imdbId":"tt0462295","version":125,"lastModified":"1301906251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef2\/4cfbaf2f7b9aa15c97001ef2\/flakes-mid.jpg","genre":"Comedy","title":"Flakes","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"54332"} +{"label":"Rogue","description":"From the director of Wolf Creek comes this terrifying look at nature's perfect killing machine. When a group of tourists stumble into the remote Australian river territory of an enormous crocodile, the deadly creature traps them on a tiny mud island with the tide quickly rising and darkness descending. As the hungry predator closes in, they must fight for survival against all odds. ","id":"13022","runtime":99,"imdbId":"tt0479528","version":173,"lastModified":"1301904884000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77d\/4bc93aac017a3c57fe01877d\/rogue-mid.jpg","genre":"Action","title":"Rogue","releaseDate":1194480000000,"language":"en","type":"Movie","_key":"54333"} +{"label":"The Devil Came on Horseback","description":"A witness to evil. A force for peace. An unbelievable true story. ","id":"13023","runtime":85,"imdbId":"tt0912580","version":139,"lastModified":"1301906496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78a\/4bc93aad017a3c57fe01878a\/the-devil-came-on-horseback-mid.jpg","genre":"Documentary","title":"The Devil Came on Horseback","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"54334"} +{"label":"Brian Steidle","version":20,"id":"74104","lastModified":"1301902145000","name":"Brian Steidle","type":"Person","_key":"54335"} +{"label":"Ricki Stern","version":20,"id":"74105","lastModified":"1301901780000","name":"Ricki Stern","type":"Person","_key":"54336"} +{"label":"Anne Sundberg","version":20,"id":"74106","lastModified":"1301902328000","name":"Anne Sundberg","type":"Person","_key":"54337"} +{"label":"Dane Cook: Rough Around the Edges","description":"Hands down, the most energetic comedian today, Dane Cook is hilarious, as usual.","id":"13024","runtime":60,"imdbId":"tt1161447","version":44,"lastModified":"1301907206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/797\/4bc93aae017a3c57fe018797\/rough-around-the-edges-live-from-madison-square-garden-mid.jpg","genre":"Comedy","title":"Dane Cook: Rough Around the Edges","releaseDate":1192752000000,"language":"en","type":"Movie","_key":"54338"} +{"label":"Diary of the Dead","description":"A group of young film students run into real-life zombies while filming a horror movie of their own.","id":"13025","runtime":95,"imdbId":"tt0848557","trailer":"http:\/\/www.youtube.com\/watch?v=c_8kL7L7arE","version":338,"lastModified":"1301902632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95e\/4c6469a87b9aa172dc00095e\/diary-of-the-dead-mid.jpg","studio":"Artfire Films","genre":"Action","title":"Diary of the Dead","releaseDate":1189209600000,"language":"en","tagline":"Where will you be when the end begins?","type":"Movie","_key":"54339"} +{"label":"Michelle Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bf6\/4c71ed3f5e73d65f7e000bf6\/michelle-morgan-profile.jpg","version":25,"id":"81095","lastModified":"1301901849000","name":"Michelle Morgan","type":"Person","_key":"54340"} +{"label":"Joshua Close","version":24,"id":"81096","lastModified":"1301901553000","name":"Joshua Close","type":"Person","_key":"54341"} +{"label":"Joe Dinicol","version":26,"id":"81098","lastModified":"1301901934000","name":"Joe Dinicol","type":"Person","_key":"54342"} +{"label":"Scott Wentworth","version":24,"id":"81099","lastModified":"1301902128000","name":"Scott Wentworth","type":"Person","_key":"54343"} +{"label":"Philip Riccio","version":24,"id":"81100","lastModified":"1301902128000","name":"Philip Riccio","type":"Person","_key":"54344"} +{"label":"Chris Violette","version":26,"id":"81101","lastModified":"1301902128000","name":"Chris Violette","type":"Person","_key":"54345"} +{"label":"Todd Schroeder","version":24,"id":"81102","lastModified":"1301901766000","name":"Todd Schroeder","type":"Person","_key":"54346"} +{"label":"Everybody Loves Mickey","description":"A compilation of classic Walt Disney clips from Mickey Mouse's long and illustrious career as the world's most recognised and best loved cartoon character. Includes \"Thru The Mirror,\" \"Hawaiian Holiday,\" \"Lonesome Ghosts,\" \"The Brave Little Tailor,\" \"The Little Whirlwind\" and \"Mickey Down Under.","id":"13026","runtime":58,"imdbId":"tt0899858","version":50,"lastModified":"1301908579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b5\/4d19185c5e73d6084200a2b5\/everybody-loves-mickey-mid.jpg","studio":"Walt Disney Pictures","title":"Everybody Loves Mickey","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54347"} +{"label":"Eagle Eye","description":"Jerry Shaw (LaBeouf) and Rachel Holloman (Monaghan) are two strangers thrown together by a mysterious phone call from a woman they have never met. Threatening their lives and family, she pushes Jerry and Rachel into a series of increasingly dangerous situations \u2013 using the technology of everyday life to track and control their every move. As the situation escalates, these two ordinary people become the country's most wanted fugitives, who must work together to discover what is really happening \u2013","id":"13027","runtime":118,"imdbId":"tt1059786","trailer":"http:\/\/www.youtube.com\/watch?v=_wkqo_Rd3_Q","version":399,"lastModified":"1302044967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cc\/4d8e86d27b9aa1675e0018cc\/eagle-eye-mid.jpg","studio":"DreamWorks","genre":"Action","title":"Eagle Eye","releaseDate":1222992000000,"language":"en","tagline":"If you want to live you will obey","type":"Movie","_key":"54348"} +{"label":"Den Osynlige","description":"No overview found.","id":"13040","runtime":92,"imdbId":"tt0298491","version":66,"lastModified":"1301904713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11a\/4bf10ff8017a3c321300011a\/den-osynlige-mid.jpg","title":"Den Osynlige","releaseDate":1013126400000,"language":"en","type":"Movie","_key":"54349"} +{"label":"El Topo","description":"El Topo decides to confront warrior Masters on a trans-formative desert journey he begins with his 6 year old son, who must bury his childhood totems to become a man. El Topo (the mole) claims to be God, while dressed as a gunfighter in black, riding a horse through a spiritual, mystical landscape strewn with old Western movie, and ancient Eastern religious symbols. Bandits slaughtered a village on his path, so El Topo avenges the massacred, then forcibly takes their leader's woman Mara as his. ","id":"13041","runtime":125,"imdbId":"tt0067866","version":115,"lastModified":"1302001868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89e\/4d9b147c5e73d6476d00089e\/el-topo-mid.jpg","genre":"Adventure","title":"El Topo","releaseDate":40521600000,"language":"en","type":"Movie","_key":"54350"} +{"label":"Brontis Jodorowsky","version":21,"id":"85148","lastModified":"1301902708000","name":"Brontis Jodorowsky","type":"Person","_key":"54351"} +{"label":"Jos\u00e9 Legarreta","version":21,"id":"85149","lastModified":"1301902724000","name":"Jos\u00e9 Legarreta","type":"Person","_key":"54352"} +{"label":"Presto","description":"Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeves!","id":"13042","runtime":5,"imdbId":"tt1245104","trailer":"http:\/\/www.youtube.com\/watch?v=dV0v09U30eE","homepage":"http:\/\/www.pixar.com\/shorts\/presto\/index.html","version":109,"lastModified":"1301902376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fd\/4bc93abe017a3c57fe0187fd\/presto-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Presto","releaseDate":1214524800000,"language":"en","type":"Movie","_key":"54353"} +{"label":"Doug Sweetland","version":50,"id":"8010","lastModified":"1301901563000","name":"Doug Sweetland","type":"Person","_key":"54354"} +{"label":"Camping","description":"Au camping des Flots Bleus, \u00e7a d\u00e9barque de toute la France.Comme tous les ans, c'est le moment des retrouvailles autour de l'ap\u00e9ro d'usage pour les familles d'habitu\u00e9s.Sauf que cette ann\u00e9e, les Pic n'ont plus leur emplacement 17, les Gatineau font tente \u00e0 part, et Patrick Chirac, le playboy de Dijon, se fait plaquer par sa femme.C'est dans ce camping que Michel Saint Josse, chirurgien esth\u00e9tique \u00e0","id":"13043","runtime":95,"imdbId":"tt0473829","version":110,"lastModified":"1301904944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80a\/4bc93ac1017a3c57fe01880a\/camping-mid.jpg","studio":"Alic%C3%A9l%C3%A9o","genre":"Comedy","title":"Camping","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"54355"} +{"label":"Antoine Dul\u00e9ry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5ec\/4bfac0b9017a3c702d0005ec\/antoine-dulery-profile.jpg","version":36,"id":"74110","lastModified":"1301901338000","name":"Antoine Dul\u00e9ry","type":"Person","_key":"54356"} +{"label":"Ari Vatanen","version":22,"id":"74111","lastModified":"1301902175000","name":"Ari Vatanen","type":"Person","_key":"54357"} +{"label":"Fabien Onteniente","version":34,"id":"74112","lastModified":"1301902132000","name":"Fabien Onteniente","type":"Person","_key":"54358"} +{"label":"Du Jour Au Lendemain","description":"La vie est bien ingrate pour Fran\u00e7ois Berthier : un chien hurle toute la nuit et l'emp\u00eache de dormir, la machine a caf\u00e9 lui explose au visage, il pleut, le chef de bureau \u00e0 la banque l'humilie et le menace de renvoi. Et puis, du jour au lendemain, tout ce qui \u00e9tait violent ou p\u00e9nible pour Fran\u00e7ois se transforme comme par miracle. Que se passe-t-il ? Pourquoi le monde devient-il si brusquement doux","id":"13044","runtime":93,"imdbId":"tt0465177","version":65,"lastModified":"1301907404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4d3989bb7b9aa16149001041\/du-jour-au-lendemain-mid.jpg","studio":"Les Films de la Suane","genre":"Comedy","title":"Du Jour Au Lendemain","releaseDate":1142380800000,"language":"en","type":"Movie","_key":"54359"} +{"label":"Constance Doll\u00e9","version":24,"id":"74115","lastModified":"1301952220000","name":"Constance Doll\u00e9","type":"Person","_key":"54360"} +{"label":"Flannan Ob\u00e9","version":20,"id":"74116","lastModified":"1301901954000","name":"Flannan Ob\u00e9","type":"Person","_key":"54361"} +{"label":"Philippe Le Guay","version":24,"id":"74118","lastModified":"1301902348000","name":"Philippe Le Guay","type":"Person","_key":"54362"} +{"label":"Le prix \u00e0 payer","description":"No overview found.","id":"13045","runtime":95,"imdbId":"tt0814768","version":47,"lastModified":"1301906723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/817\/4bc93ac2017a3c57fe018817\/le-prix-a-payer-mid.jpg","title":"Le prix \u00e0 payer","releaseDate":1175644800000,"language":"en","type":"Movie","_key":"54363"} +{"label":"Ana\u00efs Demoustier","version":20,"id":"74120","lastModified":"1301902193000","name":"Ana\u00efs Demoustier","type":"Person","_key":"54364"} +{"label":"Maud Buquet","version":20,"id":"74121","lastModified":"1301902146000","name":"Maud Buquet","type":"Person","_key":"54365"} +{"label":"UFC 88: Breakthrough","description":"UFC 88: Breakthrough was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on September 6, 2008 at the Philips Arena in Atlanta, Georgia. The event was headlined by a light heavyweight bout between Chuck Liddell and Rashad Evans.","id":"13046","runtime":273,"imdbId":"tt1488167","version":126,"lastModified":"1301906654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/820\/4bc93ac2017a3c57fe018820\/ufc-88-breakthrough-mid.jpg","genre":"Sports Film","title":"UFC 88: Breakthrough","releaseDate":1220659200000,"language":"en","type":"Movie","_key":"54366"} +{"label":"Chuck Liddell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4c1470247b9aa1045a0000ba\/chuck-liddell-profile.jpg","version":41,"id":"78892","lastModified":"1301901814000","name":"Chuck Liddell","type":"Person","_key":"54367"} +{"label":"Rashad Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/097\/4c03058a017a3c7e86000097\/rashad-evans-profile.jpg","version":37,"id":"78809","lastModified":"1301901507000","name":"Rashad Evans","type":"Person","_key":"54368"} +{"label":"Kurt Pellegrino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76c\/4c092218017a3c7e8700076c\/kurt-pellegrino-profile.jpg","version":29,"id":"78820","lastModified":"1301901678000","name":"Kurt Pellegrino","type":"Person","_key":"54369"} +{"label":"Rich Franklin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c4\/4c1470517b9aa104550000c4\/rich-franklin-profile.jpg","version":39,"id":"78893","lastModified":"1301901986000","name":"Rich Franklin","type":"Person","_key":"54370"} +{"label":"Matt Hamill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4c1dff257b9aa12958000026\/matt-hamill-profile.jpg","version":26,"id":"78813","lastModified":"1301902355000","name":"Matt Hamill","type":"Person","_key":"54371"} +{"label":"Dan Henderson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/123\/4c1626c87b9aa105d7000123\/dan-henderson-profile.jpg","version":31,"id":"83493","lastModified":"1301902526000","name":"Dan Henderson","type":"Person","_key":"54372"} +{"label":"Rousimar Palhares","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17b\/4c1e013a7b9aa11e9500017b\/rousimar-palhares-profile.jpg","version":23,"id":"83495","lastModified":"1301902695000","name":"Rousimar Palhares","type":"Person","_key":"54373"} +{"label":"Martin Kampmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4c1470b37b9aa104ee000013\/martin-kampmann-profile.jpg","version":32,"id":"83425","lastModified":"1301902408000","name":"Martin Kampmann","type":"Person","_key":"54374"} +{"label":"Nathan Marquardt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b07\/4c0a9ab8017a3c3519000b07\/nathan-marquardt-profile.jpg","version":29,"id":"83447","lastModified":"1301902350000","name":"Nathan Marquardt","type":"Person","_key":"54375"} +{"label":"Dong Hyun Kim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21d\/4c1e01187b9aa1181500021d\/dong-hyun-kim-profile.jpg","version":24,"id":"83382","lastModified":"1301902362000","name":"Dong Hyun Kim","type":"Person","_key":"54376"} +{"label":"Matt Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4c1df9747b9aa12962000019\/matt-brown-profile.jpg","version":25,"id":"83371","lastModified":"1301902174000","name":"Matt Brown","type":"Person","_key":"54377"} +{"label":"UFC 87: Seek and Destroy","description":"UFC 87: Seek and Destroy was a mixed martial arts event held by the Ultimate Fighting Championship on August 9, 2008, at the Target Center in Minneapolis, Minnesota. The card was headlined by a welterweight championship bout between champion Georges St. Pierre and challenger Jon Fitch.","id":"13047","runtime":180,"imdbId":"tt1311671","version":76,"lastModified":"1301907390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/829\/4bc93ac3017a3c57fe018829\/ufc-87-seek-and-destroy-mid.jpg","title":"UFC 87: Seek and Destroy","releaseDate":1218240000000,"language":"en","type":"Movie","_key":"54378"} +{"label":"Georges St. Pierre","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/750\/4c0920c7017a3c7e8f000750\/georges-st-pierre-profile.jpg","biography":"Georges St-Pierre was born on May 19, 1981 in Saint-Isidore, Quebec, to Jim and Paulyne St-Pierre. St-Pierre had a difficult childhood, attending a school where others would steal his clothes and money.[9] He started learning Kyokushin karate at age seven from his father and later from a Kyokushin Karate Master to defend himself against a school bully. He took up wrestling and Brazilian Jiu-Jitsu after his karate teacher died and also trained in boxing. Before turning pro as a mixed-martial arti","version":48,"birthday":"359071200000","id":"74750","birthplace":"Saint-Isidore, Quebec","lastModified":"1301901400000","name":"Georges St. Pierre","type":"Person","_key":"54379"} +{"label":"Jon Fitch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82d\/4c092296017a3c33d900082d\/jon-fitch-profile.jpg","version":43,"id":"74751","lastModified":"1301902328000","name":"Jon Fitch","type":"Person","_key":"54380"} +{"label":"Brock Lesnar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4c1474987b9aa104590000ca\/brock-lesnar-profile.jpg","version":30,"id":"74749","lastModified":"1301901588000","name":"Brock Lesnar","type":"Person","_key":"54381"} +{"label":"Heath Herring","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4c1e06337b9aa1296300006a\/heath-herring-profile.jpg","version":30,"id":"83513","lastModified":"1301902517000","name":"Heath Herring","type":"Person","_key":"54382"} +{"label":"Manvel Gamburyan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19a\/4c1e06167b9aa11e9500019a\/manny-gamburyan-profile.jpg","version":19,"id":"83514","lastModified":"1301902171000","name":"Manvel Gamburyan","type":"Person","_key":"54383"} +{"label":"Robert Emerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/033\/4c1dfb677b9aa12962000033\/rob-emerson-profile.jpg","version":20,"id":"83515","lastModified":"1301902517000","name":"Robert Emerson","type":"Person","_key":"54384"} +{"label":"Kenny Florian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d2\/4c1df33a7b9aa118260001d2\/kenny-florian-profile.jpg","version":40,"id":"83498","lastModified":"1301902696000","name":"Kenny Florian","type":"Person","_key":"54385"} +{"label":"Jason MacDonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12a\/4c1e050a7b9aa126b900012a\/jason-macdonald-profile.jpg","version":24,"id":"83516","lastModified":"1301902171000","name":"Jason MacDonald","type":"Person","_key":"54386"} +{"label":"Demian Maia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/890\/4c089743017a3c7e86000890\/demian-maia-profile.jpg","version":34,"id":"83377","lastModified":"1301902511000","name":"Demian Maia","type":"Person","_key":"54387"} +{"label":"Cheick Kongo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c6\/4c1df11f7b9aa118260001c6\/cheick-kongo-profile.jpg","version":30,"id":"78814","lastModified":"1301901671000","name":"Cheick Kongo","type":"Person","_key":"54388"} +{"label":"Tamdan McCrory","version":17,"id":"83500","lastModified":"1301902711000","name":"Tamdan McCrory","type":"Person","_key":"54389"} +{"label":"Jon Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c1df0257b9aa12958000001\/jon-jones-profile.jpg","version":29,"id":"113521","lastModified":"1301902040000","name":"Jon Jones","type":"Person","_key":"54390"} +{"label":"UFC 86: Jackson vs. Griffin","description":"UFC 86: Jackson vs. Griffin was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on July 5, 2008, at the Mandalay Bay Events Center in Las Vegas, Nevada.\n\nThe title bout between Quinton \"Rampage\" Jackson and Forrest Griffin, coaches on The Ultimate Fighter: Team Rampage vs. Team Forrest, was for Jackson's UFC Light Heavyweight Championship.","id":"13048","runtime":0,"imdbId":"tt1260950","version":88,"lastModified":"1301905632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83b\/4bc93ac4017a3c57fe01883b\/ufc-86-jackson-vs-griffin-mid.jpg","genre":"Sports Film","title":"UFC 86: Jackson vs. Griffin","releaseDate":1215216000000,"language":"en","type":"Movie","_key":"54391"} +{"label":"Quinton Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d7\/4c030602017a3c7e920000d7\/quinton-jackson-profile.jpg","version":44,"id":"78811","lastModified":"1301901246000","name":"Quinton Jackson","type":"Person","_key":"54392"} +{"label":"Forrest Griffin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/019\/4c1df7797b9aa12963000019\/forrest-griffin-profile.jpg","version":34,"id":"78808","lastModified":"1301901809000","name":"Forrest Griffin","type":"Person","_key":"54393"} +{"label":"Patrick Cote","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64b\/4c089637017a3c7e8900064b\/patrick-cote-profile.jpg","version":32,"id":"83506","lastModified":"1301901977000","name":"Patrick Cote","type":"Person","_key":"54394"} +{"label":"Ricardo Almeida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f9\/4c1dfc557b9aa118260001f9\/ricardo-almeida-profile.jpg","version":28,"id":"83518","lastModified":"1301902517000","name":"Ricardo Almeida","type":"Person","_key":"54395"} +{"label":"Joe Stevenson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8f4\/4c0a97f7017a3c7e920008f4\/joe-stevenson-profile.jpg","version":32,"id":"78821","lastModified":"1301902145000","name":"Joe Stevenson","type":"Person","_key":"54396"} +{"label":"Gleison Tibau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4c1df9dc7b9aa12962000021\/gleison-tibau-profile.jpg","version":24,"id":"83519","lastModified":"1301902171000","name":"Gleison Tibau","type":"Person","_key":"54397"} +{"label":"Josh Koscheck","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/88c\/4c08947f017a3c7e8600088c\/josh-koscheck-profile.jpg","version":43,"id":"78818","lastModified":"1301901598000","name":"Josh Koscheck","type":"Person","_key":"54398"} +{"label":"Chris Lytle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02b\/4c1e01667b9aa1295800002b\/chris-lytle-profile.jpg","version":37,"id":"83497","lastModified":"1301902355000","name":"Chris Lytle","type":"Person","_key":"54399"} +{"label":"Tyson Griffin","version":37,"id":"83431","lastModified":"1301902510000","name":"Tyson Griffin","type":"Person","_key":"54400"} +{"label":"Marcus Aurelio","version":21,"id":"83520","lastModified":"1301902362000","name":"Marcus Aurelio","type":"Person","_key":"54401"} +{"label":"Gabriel Gonzaga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4c1df0d57b9aa118260001c2\/gabriel-gonzaga-profile.jpg","version":30,"id":"78817","lastModified":"1301901671000","name":"Gabriel Gonzaga","type":"Person","_key":"54402"} +{"label":"Rampage Unchained","description":"Behind the scenes footage of Quinton \"Rampage\" Jackson during his days in Pride.","id":"13050","runtime":0,"version":23,"lastModified":"1301905997000","title":"Rampage Unchained","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54403"} +{"label":"Max Payne","description":"Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation.","id":"13051","runtime":95,"imdbId":"tt0467197","trailer":"http:\/\/www.youtube.com\/watch?v=Q2jAEoBz6RY","homepage":"http:\/\/www.maxpaynethemovie.com","version":350,"lastModified":"1301901474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4d9237bd5e73d6225d000238\/max-payne-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Max Payne","releaseDate":1224115200000,"language":"en","type":"Movie","_key":"54404"} +{"label":"Joel Gordon","version":23,"id":"74122","lastModified":"1301901754000","name":"Joel Gordon","type":"Person","_key":"54405"} +{"label":"Jamie Hector","version":27,"id":"74123","lastModified":"1301901546000","name":"Jamie Hector","type":"Person","_key":"54406"} +{"label":"Andrew Friedman","version":24,"id":"74124","lastModified":"1301901629000","name":"Andrew Friedman","type":"Person","_key":"54407"} +{"label":"Marianthi Evans","version":23,"id":"74125","lastModified":"1301901546000","name":"Marianthi Evans","type":"Person","_key":"54408"} +{"label":"Nelly Furtado","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25e\/4c9a4ddd5e73d6554900025e\/nelly-furtado-profile.jpg","biography":"Nelly Furtado played her first real shows after signing a record deal last year at the tender age of 20. \"I did four Lilith Fair dates, and for the encore, everyone who performed that day would get onstage and sing [Bob Dylan's] 'I Shall Be Released.' I was singing with Chrissie Hynde and Sarah McLachlan and Beth Orton,\" she says, still incredulous. \"It was like a dream. I just kept thinking, What am I doing here with all these seasoned pros?'\" It's a reasonable question for an untested artist w","version":26,"birthday":"281401200000","id":"74126","birthplace":"Victoria, British Columbia","lastModified":"1301901857000","name":"Nelly Furtado","type":"Person","_key":"54409"} +{"label":"Bolt","description":"Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks the whole thing is real. When the super dog is accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt springs into action to find his way home. Together with hilarious new sidekick Rhino, Bolt's #1 fan, and a street-smart cat named Mittens, Bolt sets off on an amazing journey where he discovers he doesn't need super powers to be a hero.","id":"13053","runtime":96,"imdbId":"tt0397892","trailer":"http:\/\/www.youtube.com\/watch?v=shPGYLAOiz8","homepage":"http:\/\/disney.go.com\/disneypictures\/bolt\/","version":340,"lastModified":"1301914246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f8\/4cd397e75e73d6734a0000f8\/bolt-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Bolt","releaseDate":1227225600000,"language":"en","tagline":"Fully Awesome. Ridonculous. Let It Begin.","type":"Movie","_key":"54410"} +{"label":"Miley Cyrus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8e6\/4d1a14a57b9aa114860048e6\/miley-cyrus-profile.jpg","version":49,"id":"76594","lastModified":"1301904081000","name":"Miley Cyrus","type":"Person","_key":"54411"} +{"label":"J.P. Manoux","version":32,"id":"88702","lastModified":"1301901549000","name":"J.P. Manoux","type":"Person","_key":"54412"} +{"label":"Dan Fogelman","version":50,"id":"15892","lastModified":"1301901280000","name":"Dan Fogelman","type":"Person","_key":"54413"} +{"label":"Kari Wahlgren","version":37,"id":"89022","lastModified":"1301901483000","name":"Kari Wahlgren","type":"Person","_key":"54414"} +{"label":"Ronn Moss","version":33,"id":"89024","lastModified":"1301901643000","name":"Ronn Moss","type":"Person","_key":"54415"} +{"label":"Chris Williams","version":52,"id":"70238","lastModified":"1302036944000","name":"Chris Williams","type":"Person","_key":"54416"} +{"label":"Byron Howard","version":60,"id":"76595","lastModified":"1301904075000","name":"Byron Howard","type":"Person","_key":"54417"} +{"label":"Rise of the Footsoldier","description":"Rise of the Footsoldier follows the inexorable rise of Carlton Leach from one of the most feared generals of the football terraces to becoming a member of a notorious gang of criminals who rampaged their way through London and Essex in the late eighties and early nineties.\n","id":"13054","runtime":119,"imdbId":"tt0901507","trailer":"http:\/\/www.youtube.com\/watch?v=551-QfYJymI","homepage":"http:\/\/www.riseofthefootsoldier.co.uk\/","version":344,"lastModified":"1301902789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/020\/4c13eec35e73d64a22000020\/rise-of-the-footsoldier-mid.jpg","studio":"Carnaby International","genre":"Action","title":"Rise of the Footsoldier","releaseDate":1196467200000,"language":"en","type":"Movie","_key":"54418"} +{"label":"Coralie Rose","version":19,"id":"142288","lastModified":"1301902052000","name":"Coralie Rose","type":"Person","_key":"54419"} +{"label":"Patrick Regis","version":24,"id":"83007","lastModified":"1301901713000","name":"Patrick Regis","type":"Person","_key":"54420"} +{"label":"Emily Beecham","version":24,"id":"130414","lastModified":"1301902217000","name":"Emily Beecham","type":"Person","_key":"54421"} +{"label":"Jason Maza","version":19,"id":"142289","lastModified":"1301902138000","name":"Jason Maza","type":"Person","_key":"54422"} +{"label":"Mark Killeen","version":19,"id":"142290","lastModified":"1301902098000","name":"Mark Killeen","type":"Person","_key":"54423"} +{"label":"Chance","description":"'Chance' is a black comedy about how hard it is to find \"the one\". Mostly told from the point-of-view of a young, sexually aggressive woman, named Chance, whom according to her: \"we're all out there looking for true love\", which turns out to be a very elusive thing indeed, and Chance is no exception. She's desperately on the prowl for a man, but since she's more mouse than cat, she get's herself into scrape after scrape in her screwball pursuit of love. Surrounded by a bevy of adoring but comple","id":"13055","runtime":75,"imdbId":"tt0282410","version":90,"lastModified":"1301908111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d9\/4bc93adf017a3c57fe0188d9\/chance-mid.jpg","title":"Chance","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"54424"} +{"label":"Punisher: War Zone","description":"After hunting down and killing hundreds of violent criminals, Frank Castle (Stevenson), better known to his victims as \"The Punisher,\" faces his most deadly foe yet, Jigsaw.","id":"13056","runtime":107,"imdbId":"tt0450314","trailer":"http:\/\/www.youtube.com\/watch?v=liABMxEvPAc","homepage":"http:\/\/www.punishermovie.com","version":245,"lastModified":"1301901916000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92d\/4bc93ae8017a3c57fe01892d\/punisher-war-zone-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Punisher: War Zone","releaseDate":1228435200000,"language":"en","tagline":"Vengeance has a name","type":"Movie","_key":"54425"} +{"label":"Lonesome Dove","description":"Epic story about two former Texas rangers who decide to move cattle from the south to Montana. Augustus McCrae and Woodrow Call run into many problems on the way, and the journey doesn't end without numerous casualties.","id":"13057","runtime":384,"imdbId":"tt0096639","version":94,"lastModified":"1301903258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/940\/4bc93aed017a3c57fe018940\/lonesome-dove-mid.jpg","studio":"Motown Productions","genre":"Adventure","title":"Lonesome Dove","releaseDate":602640000000,"language":"en","type":"Movie","_key":"54426"} +{"label":"Adulthood","description":"The film picks up six years after the death of Trife (Aml Ameen) from the first film with the release of Sam (Noel Clarke) from jail where he has been for the past six and a half years for killing Trife. After being released, he goes to the cemetery where he visits Trife's tombstone where he is attacked by Trife's cousin.","id":"13058","runtime":99,"imdbId":"tt1126596","trailer":"http:\/\/www.youtube.com\/watch?v=rhrJBUMxNMQ","version":114,"lastModified":"1301903478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/949\/4bc93aee017a3c57fe018949\/adulthood-mid.jpg","genre":"Drama","title":"Adulthood","releaseDate":1213660800000,"language":"en","type":"Movie","_key":"54427"} +{"label":"Noel Clarke","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4bf862ab017a3c4905000062\/noel-clarke-profile.jpg","version":49,"id":"76242","lastModified":"1301901193000","name":"Noel Clarke","type":"Person","_key":"54428"} +{"label":"Adam Deacon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cc0\/4cf14b155e73d61926000cc0\/adam-deacon-profile.jpg","version":31,"id":"78064","lastModified":"1301901424000","name":"Adam Deacon","type":"Person","_key":"54429"} +{"label":"Scarlett Alice Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c1b\/4cf14b675e73d61929000c1b\/scarlett-alice-johnson-profile.jpg","version":22,"id":"113971","lastModified":"1301901849000","name":"Scarlett Alice Johnson","type":"Person","_key":"54430"} +{"label":"The Signal","description":"A horror film told in three parts, from three perspectives, in which a mysterious transmission that turns people into killers invades every cell phone, radio, and television.","id":"13059","runtime":103,"imdbId":"tt0780607","version":245,"lastModified":"1301906837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95e\/4bc93aef017a3c57fe01895e\/the-signal-mid.jpg","studio":"Shoreline Entertainment","genre":"Horror","title":"The Signal","releaseDate":1172102400000,"language":"en","tagline":"This is not a test.","type":"Movie","_key":"54431"} +{"label":"Anessa Ramsey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b8\/4cd752487b9aa11b270003b8\/anessa-ramsey-profile.jpg","version":34,"id":"74131","lastModified":"1301901854000","name":"Anessa Ramsey","type":"Person","_key":"54432"} +{"label":"Justin Welborn","version":27,"id":"74136","lastModified":"1302078461000","name":"Justin Welborn","type":"Person","_key":"54433"} +{"label":"AJ Bowen","version":22,"id":"74133","lastModified":"1301902125000","name":"AJ Bowen","type":"Person","_key":"54434"} +{"label":"Scott Poythress","version":17,"id":"141958","lastModified":"1301902892000","name":"Scott Poythress","type":"Person","_key":"54435"} +{"label":"Sahr Ngaujah","version":20,"id":"74132","lastModified":"1301902074000","name":"Sahr Ngaujah","type":"Person","_key":"54436"} +{"label":"Lindsey Garrett","version":17,"id":"141960","lastModified":"1301902574000","name":"Lindsey Garrett","type":"Person","_key":"54437"} +{"label":"Chad McKnight","version":17,"id":"141961","lastModified":"1301902574000","name":"Chad McKnight","type":"Person","_key":"54438"} +{"label":"Christopher Thomas","version":18,"id":"141959","lastModified":"1301903040000","name":"Christopher Thomas","type":"Person","_key":"54439"} +{"label":"Matthew Stanton","version":20,"id":"74134","lastModified":"1301902074000","name":"Matthew Stanton","type":"Person","_key":"54440"} +{"label":"Suehyla El-Attar","version":20,"id":"74135","lastModified":"1301902249000","name":"Suehyla El-Attar","type":"Person","_key":"54441"} +{"label":"David Bruckner","version":17,"id":"141962","lastModified":"1301902574000","name":"David Bruckner","type":"Person","_key":"54442"} +{"label":"Dan Bush","version":17,"id":"141963","lastModified":"1301902610000","name":"Dan Bush","type":"Person","_key":"54443"} +{"label":"Jacob Gentry","version":18,"id":"141964","lastModified":"1301902708000","name":"Jacob Gentry","type":"Person","_key":"54444"} +{"label":"Lifted","description":"When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.","id":"13060","runtime":5,"imdbId":"tt0945571","version":100,"lastModified":"1301413506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/974\/4bc93af1017a3c57fe018974\/lifted-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Lifted","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"54445"} +{"label":"Gary Rydstrom","version":106,"id":"2216","lastModified":"1299705847000","name":"Gary Rydstrom","type":"Person","_key":"54446"} +{"label":"Your Friend the Rat","description":"Let's face it, rats are not the most beloved creatures on earth. However, maybe this little tale about the history of human and rat interaction will change the world's tune. At least that is the hope of Remy, the star of Ratatouille, and his reluctant brother Emile as they guide us through world history from a rat's perspective. Why can't we all just get along?","id":"13061","runtime":11,"imdbId":"tt1134859","homepage":"http:\/\/www.pixar.com","version":71,"lastModified":"1301904228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ac\/4ccc9e325e73d650210008ac\/your-friend-the-rat-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Your Friend the Rat","releaseDate":1194307200000,"language":"en","type":"Movie","_key":"54447"} +{"label":"Sigmund Vik","version":20,"id":"74138","lastModified":"1301902074000","name":"Sigmund Vik","type":"Person","_key":"54448"} +{"label":"Jim Capobianco","version":33,"id":"32535","lastModified":"1302079341000","name":"Jim Capobianco","type":"Person","_key":"54449"} +{"label":"Boundin'","description":"On a high mountain plain lives a lamb with wool of such remarkable sheen that he breaks into high-steppin' dance. But there comes a day when he loses his lustrous coat and, along with it, his pride. It takes a wise jackalope - a horn-adorned rabbit - to teach the moping lamb that wooly or not, it's what's inside that'll help him rebound from life's troubles.","id":"13062","runtime":5,"imdbId":"tt0395479","homepage":"http:\/\/www.pixar.com","version":94,"lastModified":"1301903468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98e\/4bc93af6017a3c57fe01898e\/boundin-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Boundin'","releaseDate":1067990400000,"language":"en","type":"Movie","_key":"54450"} +{"label":"Bud Luckey","version":60,"id":"7918","lastModified":"1301901498000","name":"Bud Luckey","type":"Person","_key":"54451"} +{"label":"Roger Gould","version":28,"id":"74142","lastModified":"1301902388000","name":"Roger Gould","type":"Person","_key":"54452"} +{"label":"Cannibal! The Musical","description":"Heading through Colorado Territory in search of gold and women, Alferd Packer and his group of bemused companions find themselves lost, starving and musically inspired by the obstacles they confront along the way, including a die-hard Confederate cyclops, a trio of surly trappers, a tribe of Japanese-speaking \"Indians,\" and ultimately, each other. ","id":"13063","runtime":95,"imdbId":"tt0115819","trailer":"http:\/\/www.youtube.com\/watch?v=677","homepage":"http:\/\/www.cannibalthemusical.net\/index.shtml","version":89,"lastModified":"1301903862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99c\/4bc93af8017a3c57fe01899c\/cannibal-the-musical-mid.jpg","studio":"Avenging Conscience","genre":"Comedy","title":"Cannibal! The Musical","releaseDate":905385600000,"language":"en","type":"Movie","_key":"54453"} +{"label":"Ian Hardin","version":19,"id":"74143","lastModified":"1301901610000","name":"Ian Hardin","type":"Person","_key":"54454"} +{"label":"Jon Hegel","version":19,"id":"74144","lastModified":"1301901430000","name":"Jon Hegel","type":"Person","_key":"54455"} +{"label":"Masao Maki","version":17,"id":"74145","lastModified":"1301901475000","name":"Masao Maki","type":"Person","_key":"54456"} +{"label":"Robert Muratore","version":19,"id":"74146","lastModified":"1301901475000","name":"Robert Muratore","type":"Person","_key":"54457"} +{"label":"Toddy Walters","version":19,"id":"74147","lastModified":"1301901474000","name":"Toddy Walters","type":"Person","_key":"54458"} +{"label":"Jason McHugh","version":19,"id":"74148","lastModified":"1301901338000","name":"Jason McHugh","type":"Person","_key":"54459"} +{"label":"Airborne","description":"Mitchell Goosen is sixteen\/seventeen year old kid from California who loves to surf and roller blade. Yet, his parents, who are two zoologists were given a grant to work in Australia. The only problem was: Mitchell couldn't go with them. So, he gets sent to stay with his aunt, uncle, and cousin in Cincinnati, Ohio. When he arrives, he meets his cousin who is also his new roommate for the next six months: Wiley. Mitchell then goes to school and gets on the bad side the high school hockey players.","id":"13064","runtime":91,"imdbId":"tt0106233","trailer":"http:\/\/www.youtube.com\/watch?v=UQKXiJBORpw","version":98,"lastModified":"1302063765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b3\/4bc93afa017a3c57fe0189b3\/airborne-mid.jpg","studio":"Arsenal Film","genre":"Action","title":"Airborne","releaseDate":748224000000,"language":"en","tagline":"There are two kinds of people: those who get AIRBORNE...and those who don't.","type":"Movie","_key":"54460"} +{"label":"Shane McDermott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d4\/4d6c54455e73d66b2b0033d4\/shane-mcdermott-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Studied acting at the Neighborhood Playhouse in New York City.He placed 15th in the National Junior Olympics gymnastics.<\/p><\/span>","version":23,"birthday":"199148400000","id":"105158","birthplace":"Middletown, New York","lastModified":"1301903034000","name":"Shane McDermott","type":"Person","_key":"54461"} +{"label":"Brittney Powell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/39c\/4d6c55335e73d66b2700339c\/brittney-powell-profile.jpg","version":24,"birthday":"68511600000","id":"95939","birthplace":"W\u00fcrzburg, Bavaria, Germany","lastModified":"1301902725000","name":"Brittney Powell","type":"Person","_key":"54462"} +{"label":"Chris Conrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b9\/4d6c564a5e73d66b2e0032b9\/chris-conrad-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Chris Conrad was born and raised in Ft. Lauderdale, Florida. He is the third out of four brothers - big brother Steve is a script writer, big brother Tim, baby brother Mike.\n\nAlways going for the sports, amongst others football, baseball, basketball, soccer, and judo.\n\nStarted performing in grade school, being the joker. Improvised a comedy skit in high scho","version":14,"birthday":"15548400000","id":"227199","birthplace":"Fort Lauderdale, Florida, USA","lastModified":"1301904016000","name":"Chris Conrad","type":"Person","_key":"54463"} +{"label":"Patrick Thomas O'Brien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ad\/4d6c576e5e73d66b270033ad\/patrick-thomas-o-brien-profile.jpg","version":25,"id":"75325","lastModified":"1301902314000","name":"Patrick Thomas O'Brien","type":"Person","_key":"54464"} +{"label":"Daniel Betances","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d4\/4d6c5b925e73d66b2e0032d4\/daniel-betances-profile.jpg","version":20,"id":"90555","lastModified":"1301902449000","name":"Daniel Betances","type":"Person","_key":"54465"} +{"label":"David Betances","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/225\/4d6c5ae95e73d60733001225\/david-betances-profile.jpg","version":13,"id":"227212","lastModified":"1301904017000","name":"David Betances","type":"Person","_key":"54466"} +{"label":"Jim Jansen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34c\/4d6c5a815e73d66b2300334c\/jim-jansen-profile.jpg","version":16,"id":"155031","lastModified":"1301903585000","name":"Jim Jansen","type":"Person","_key":"54467"} +{"label":"Louan Gideon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3f5\/4d6c59e25e73d66b2b0033f5\/louan-gideon-profile.jpg","version":16,"id":"157637","lastModified":"1301903514000","name":"Louan Gideon","type":"Person","_key":"54468"} +{"label":"Finding Amanda","description":"A television producer with a penchant for drinking and gambling is sent to Las Vegas to convince his troubled niece to enter rehab.","id":"13065","runtime":96,"imdbId":"tt0889134","trailer":"http:\/\/www.youtube.com\/watch?v=739","homepage":"http:\/\/www.magpictures.com\/profile.aspx?id=d320c385-7832-4502-9b0a-e6880d6750a4","version":149,"lastModified":"1301905391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4bc93afb017a3c57fe0189bc\/finding-amanda-mid.jpg","genre":"Comedy","title":"Finding Amanda","releaseDate":1221523200000,"language":"en","type":"Movie","_key":"54469"} +{"label":"Peter Tolan","version":50,"id":"18268","lastModified":"1302035866000","name":"Peter Tolan","type":"Person","_key":"54470"} +{"label":"I Want Someone to Eat Cheese With","description":"Life has its downs for James, living with his mom in Chicago at 39, an aging performer at Second City, eating and weighing too much. A woman he's been dating drops him, as does his agent, her brother. James turns down roles in local TV, roles that make him sad. Someone's remaking his favorite movie, \"Marty,\" a role he'd love, but he doesn't even get an audition.","id":"13066","runtime":0,"imdbId":"tt0391229","trailer":"http:\/\/www.youtube.com\/watch?v=-Phmk_AmmnI","version":130,"lastModified":"1301904511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c5\/4bc93afc017a3c57fe0189c5\/i-want-someone-to-eat-cheese-with-mid.jpg","genre":"Comedy","title":"I Want Someone to Eat Cheese With","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"54471"} +{"label":"In the Land of Women","description":"Aspiring writer Carter Webb has just been dumped by his true love Sophia. Heartbroken and depressed, Carter escapes Los Angeles to suburban Michigan to care for his ailing grandmother and to work on a book he has always wanted to write.\nSoon after his arrival, Carter stumbles into the lives of the family living directly across the street: Sarah Hardwicke, and her daughters, Paige and Lucy.","id":"13067","runtime":97,"imdbId":"tt0419843","version":160,"lastModified":"1301902353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d6\/4bc93afe017a3c57fe0189d6\/in-the-land-of-women-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"In the Land of Women","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"54472"} +{"label":"Rocket Science","description":"Looking for answers to life's big questions, a stuttering boy joins his high school debate team.","id":"13068","runtime":101,"imdbId":"tt0477078","version":135,"lastModified":"1301907565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fc\/4bc93b06017a3c57fe0189fc\/rocket-science-mid.jpg","genre":"Comedy","title":"Rocket Science","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"54473"} +{"label":"Nicholas D'Agosto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b34\/4d07d8ca7b9aa11bbf003b34\/nicholas-d-agosto-profile.jpg","version":33,"id":"37059","lastModified":"1301901446000","name":"Nicholas D'Agosto","type":"Person","_key":"54474"} +{"label":"Anna Kendrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/514\/4d1f4dfa5e73d66b27001514\/anna-kendrick-profile.jpg","version":109,"id":"84223","lastModified":"1301904091000","name":"Anna Kendrick","type":"Person","_key":"54475"} +{"label":"Jeffrey Blitz","version":19,"id":"89576","lastModified":"1301902074000","name":"Jeffrey Blitz","type":"Person","_key":"54476"} +{"label":"Air Guitar Nation","description":"If your bedroom has become too small a stage for your air guitar antics, take inspiration from the competitors featured here as they battle their way from the inaugural U.S. Air Guitar Championship to the world championship in Oulu, Finland. Along the way, filmmaker Alexandra Lipsitz documents the fierce rivalries that develop as would-be rock legends vie for top honors in technical accuracy, stage presence and \"airness.\"","id":"13070","runtime":81,"imdbId":"tt0799915","version":204,"lastModified":"1301905766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a05\/4bc93b07017a3c57fe018a05\/air-guitar-nation-mid.jpg","genre":"Documentary","title":"Air Guitar Nation","releaseDate":1191628800000,"language":"en","type":"Movie","_key":"54477"} +{"label":"Alexandra Lipsitz","version":20,"id":"88711","lastModified":"1301902678000","name":"Alexandra Lipsitz","type":"Person","_key":"54478"} +{"label":"Black Irish","description":"In South Boston, where Irish roots run deep and Catholic tradition reigns, two brothers face similar hardships but lead far different lives. While older brother Terry descends into drugs and crime, 16-year-old Cole vies to make the state baseball championships - but must struggle to withstand his brother's destructive influence. ","id":"13071","runtime":0,"imdbId":"tt0455915","version":168,"lastModified":"1301907270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a12\/4bc93b07017a3c57fe018a12\/black-irish-mid.jpg","title":"Black Irish","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"54479"} +{"label":"Brooklyn Rules","description":"Brooklyn, 1985. With the mob world as a backdrop, three life-long friends struggle with questions of love, loss and loyalty.","id":"13072","runtime":99,"imdbId":"tt0283503","version":129,"lastModified":"1301902879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1b\/4bc93b08017a3c57fe018a1b\/brooklyn-rules-mid.jpg","title":"Brooklyn Rules","releaseDate":1177891200000,"language":"en","type":"Movie","_key":"54480"} +{"label":"Paulo Araujo","version":16,"id":"106814","lastModified":"1301901610000","name":"Paulo Araujo","type":"Person","_key":"54481"} +{"label":"Ty Thomas Reed","version":16,"id":"106815","lastModified":"1301901870000","name":"Ty Thomas Reed","type":"Person","_key":"54482"} +{"label":"Brian O'Neill","version":16,"id":"106816","lastModified":"1301901722000","name":"Brian O'Neill","type":"Person","_key":"54483"} +{"label":"Jerry Ferrara","version":22,"id":"98953","lastModified":"1302060400000","name":"Jerry Ferrara","type":"Person","_key":"54484"} +{"label":"Michael Corrente","version":21,"id":"77076","lastModified":"1301901602000","name":"Michael Corrente","type":"Person","_key":"54485"} +{"label":"Palindromes","description":"Aviva is thirteen, awkward and sensitive. Her mother Joyce is warm and loving, as is her father, Steve, a regular guy who does have a fierce temper from time to time. The film revolves around her family, friends and neighbors.","id":"13073","runtime":100,"imdbId":"tt0362004","version":132,"lastModified":"1301906250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a24\/4bc93b08017a3c57fe018a24\/palindromes-mid.jpg","genre":"Adventure","title":"Palindromes","releaseDate":1106265600000,"language":"en","type":"Movie","_key":"54486"} +{"label":"Matthew Faber","version":20,"id":"80541","lastModified":"1301902199000","name":"Matthew Faber","type":"Person","_key":"54487"} +{"label":"Angela Pietropinto","version":20,"id":"80542","lastModified":"1301901780000","name":"Angela Pietropinto","type":"Person","_key":"54488"} +{"label":"Bill Buell","version":23,"id":"76764","lastModified":"1301901950000","name":"Bill Buell","type":"Person","_key":"54489"} +{"label":"Emani Sledge","version":20,"id":"80543","lastModified":"1301902328000","name":"Emani Sledge","type":"Person","_key":"54490"} +{"label":"Resurrecting the Champ","description":"Up-and-coming sports reporter rescues a homeless man (\"Champ\") only to discover that he is, in fact, a boxing legend believed to have passed away. What begins as an opportunity to resurrect Champ's story and escape the shadow of his father's success becomes a personal journey as the ambitious reporter reexamines his own life and his relationship with his family.","id":"13074","runtime":112,"imdbId":"tt0416185","trailer":"http:\/\/www.youtube.com\/watch?v=1752","version":210,"lastModified":"1301904060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4c48c5977b9aa11575000005\/resurrecting-the-champ-mid.jpg","genre":"Drama","title":"Resurrecting the Champ","releaseDate":1181779200000,"language":"en","type":"Movie","_key":"54491"} +{"label":"SherryBaby","description":"In this bleak indie film, Sherry Swanson (Maggie Gyllenhaal) has just been released from a three-year stint in prison. Dressed in her inappropriate uniform of a halter top and oh-so-high platform heels, she goes to brother's house to see her 5-year-old daughter, Lexie (Ryan Simpkins). Sherry is determined to be a mother to her child, but without a home, job, or any other form of stability ...","id":"13075","runtime":96,"imdbId":"tt0423169","version":157,"lastModified":"1302039514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a42\/4bc93b0a017a3c57fe018a42\/sherrybaby-mid.jpg","studio":"Elevation Filmworks","genre":"Drama","title":"SherryBaby","releaseDate":1138147200000,"language":"en","type":"Movie","_key":"54492"} +{"label":"Laurie Collyer","version":17,"id":"96222","lastModified":"1301902543000","name":"Laurie Collyer","type":"Person","_key":"54493"} +{"label":"Michelle Hurst","version":17,"id":"96223","lastModified":"1301902391000","name":"Michelle Hurst","type":"Person","_key":"54494"} +{"label":"Sandra Rodr\u00edguez","version":17,"id":"96224","lastModified":"1301902678000","name":"Sandra Rodr\u00edguez","type":"Person","_key":"54495"} +{"label":"Starting Out in the Evening","description":"Leonard Schiller once counted among New York's Literary lions, but illness and ten years of writers block have lowered his profile, almost to the point of obscurity. When Heather Wolfe, an ambitious literature major, asks to interview him for her theses on his work, her interest forces hims to address the issues that have been he has avoided all these years, and stirs in him feelings he has long forgotten, much to his daughter's consternation","id":"13076","runtime":111,"imdbId":"tt0758784","version":320,"lastModified":"1301906507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4b\/4bc93b0b017a3c57fe018a4b\/starting-out-in-the-evening-mid.jpg","studio":"InDigEnt","genre":"Drama","title":"Starting Out in the Evening","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"54496"} +{"label":"Andrew Wagner","version":20,"id":"129299","lastModified":"1301902791000","name":"Andrew Wagner","type":"Person","_key":"54497"} +{"label":"Strength and Honour","description":"No overview found.","id":"13077","runtime":0,"imdbId":"tt0787515","version":57,"lastModified":"1301906741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04f\/4cb460d57b9aa135c000004f\/strength-and-honour-mid.jpg","title":"Strength and Honour","releaseDate":1196985600000,"language":"en","type":"Movie","_key":"54498"} +{"label":"The Babysitters","description":"At 17, high-school junior Shirley Lyner is thinking about college and running a babysitting service that provides teen call girls to the dads of young children. In a long flashback, we see what brought her from being a babysitter to organizing and running the service. ","id":"13078","runtime":88,"imdbId":"tt0796302","trailer":"http:\/\/www.youtube.com\/watch?v=1087","version":191,"lastModified":"1301903448000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a61\/4bc93b0c017a3c57fe018a61\/the-babysitters-mid.jpg","studio":"Forensic Films","title":"The Babysitters","releaseDate":1210291200000,"language":"en","type":"Movie","_key":"54499"} +{"label":"Katherine Waterston","version":27,"id":"77795","lastModified":"1301901430000","name":"Katherine Waterston","type":"Person","_key":"54500"} +{"label":"David Ross","version":29,"id":"51535","lastModified":"1301902356000","name":"David Ross","type":"Person","_key":"54501"} +{"label":"The Life Before Her Eyes","description":"A woman's survivor's guilt from a Columbine-like event twenty years ago causes her present-day idyllic life to fall apart. ","id":"13079","runtime":90,"imdbId":"tt0815178","version":219,"lastModified":"1301902387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e5\/4d8a4a597b9aa13aea0004e5\/the-life-before-her-eyes-mid.jpg","studio":"2929 Productions","genre":"Drama","title":"The Life Before Her Eyes","releaseDate":1189209600000,"language":"en","type":"Movie","_key":"54502"} +{"label":"Vadim Perelman","version":19,"id":"78118","lastModified":"1301901675000","name":"Vadim Perelman","type":"Person","_key":"54503"} +{"label":"Gabrielle Brennan","version":24,"id":"78119","lastModified":"1301901785000","name":"Gabrielle Brennan","type":"Person","_key":"54504"} +{"label":"Jack Gilpin","version":28,"id":"77023","lastModified":"1301901095000","name":"Jack Gilpin","type":"Person","_key":"54505"} +{"label":"UFC 85: Bedlam","description":"UFC 85: Bedlam was a mixed martial arts event held by the Ultimate Fighting Championship (UFC), on June 7, 2008 at The O2 arena in London, England.\n\nFormer two-time UFC\u00ae welterweight champion MATT HUGHES begins his run for an unprecedented third title against a young gun eager to take his place near the top of the 170-pound ladder in Brazilian slugger THIAGO \u201cPITBULL\u201d ALVES.","id":"13080","runtime":0,"imdbId":"tt1243958","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightcard&eid=1109","version":60,"lastModified":"1301904943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a84\/4bc93b11017a3c57fe018a84\/ufc-85-bedlam-mid.jpg","genre":"Sports Film","title":"UFC 85: Bedlam","releaseDate":1212796800000,"language":"en","type":"Movie","_key":"54506"} +{"label":"Matt Hughes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/71b\/4c089827017a3c7e9200071b\/matt-hughes-profile.jpg","version":41,"id":"80134","lastModified":"1301901651000","name":"Matt Hughes","type":"Person","_key":"54507"} +{"label":"Thiago Alves","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20c\/4c1dfc3f7b9aa1181500020c\/thiago-alves-profile.jpg","version":25,"id":"83444","lastModified":"1301901985000","name":"Thiago Alves","type":"Person","_key":"54508"} +{"label":"Michael Bisping","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4c0306f2017a3c7e8b00007d\/michael-bisping-profile.jpg","version":35,"id":"78909","lastModified":"1301902170000","name":"Michael Bisping","type":"Person","_key":"54509"} +{"label":"Jason Day","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4c1e04e77b9aa1296300005e\/jason-day-profile.jpg","version":21,"id":"83445","lastModified":"1301902706000","name":"Jason Day","type":"Person","_key":"54510"} +{"label":"Mike Swick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b11\/4c0a9bc0017a3c3519000b11\/mike-swick-profile.jpg","version":30,"id":"78513","lastModified":"1301902350000","name":"Mike Swick","type":"Person","_key":"54511"} +{"label":"Marcus Davis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/162\/4c1df90b7b9aa11e95000162\/marcus-davis-profile.jpg","version":34,"id":"83446","lastModified":"1301902696000","name":"Marcus Davis","type":"Person","_key":"54512"} +{"label":"Thales Leites","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/042\/4c1dfe8f7b9aa12962000042\/thales-leites-profile.jpg","version":22,"id":"83365","lastModified":"1301902706000","name":"Thales Leites","type":"Person","_key":"54513"} +{"label":"Fabricio Werdum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20f\/4c1e01dc7b9aa1182600020f\/fabricio-werdum-profile.jpg","version":28,"id":"83448","lastModified":"1301902355000","name":"Fabricio Werdum","type":"Person","_key":"54514"} +{"label":"Brandon Vera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/279\/4c1def977b9aa117b2000279\/brandon-vera-profile.jpg","version":32,"id":"78907","lastModified":"1301902355000","name":"Brandon Vera","type":"Person","_key":"54515"} +{"label":"Jorge Rivera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4c1df4247b9aa12963000006\/jorge-rivera-profile.jpg","version":32,"id":"83449","lastModified":"1301902171000","name":"Jorge Rivera","type":"Person","_key":"54516"} +{"label":"Matt Wiman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4c1e04997b9aa12962000058\/matt-wiman-profile.jpg","version":25,"id":"83450","lastModified":"1301902706000","name":"Matt Wiman","type":"Person","_key":"54517"} +{"label":"Thiago Tavares","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05a\/4c1e04817b9aa1296300005a\/thiago-tavares-profile.jpg","version":21,"id":"83451","lastModified":"1301902695000","name":"Thiago Tavares","type":"Person","_key":"54518"} +{"label":"UFC 84: Ill Will","description":"UFC 84: Ill Will was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on May 24, 2008, at the MGM Grand Garden Arena in Las Vegas, Nevada. The card featured the return of Sean Sherk, who was suspended and stripped of his UFC lightweight title after he tested for steroids at UFC 73. He faced B.J. Penn, who had since won the vacated title.","id":"13081","runtime":0,"imdbId":"tt1239463","version":66,"lastModified":"1301906061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8d\/4bc93b11017a3c57fe018a8d\/ufc-84-ill-will-mid.jpg","title":"UFC 84: Ill Will","releaseDate":1211587200000,"language":"en","type":"Movie","_key":"54519"} +{"label":"B.J. Penn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/709\/4c089789017a3c7e87000709\/b-j-penn-profile.jpg","version":49,"id":"81515","lastModified":"1301901959000","name":"B.J. Penn","type":"Person","_key":"54520"} +{"label":"Sean Sherk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/041\/4c1dfe6a7b9aa12963000041\/sean-sherk-profile.jpg","version":33,"id":"82921","lastModified":"1301902171000","name":"Sean Sherk","type":"Person","_key":"54521"} +{"label":"Wanderlei Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b22\/4c0a97a7017a3c7e86000b22\/wanderlei-silva-profile.jpg","version":26,"id":"78810","lastModified":"1301901500000","name":"Wanderlei Silva","type":"Person","_key":"54522"} +{"label":"Keith Jardine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af8\/4c0a98ac017a3c3519000af8\/keith-jardine-profile.jpg","version":31,"id":"78890","lastModified":"1301902138000","name":"Keith Jardine","type":"Person","_key":"54523"} +{"label":"Wilson Gouveia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4c1df71b7b9aa12962000008\/wilson-gouveia-profile.jpg","version":25,"id":"83376","lastModified":"1301902517000","name":"Wilson Gouveia","type":"Person","_key":"54524"} +{"label":"Goran Reljic","version":21,"id":"83521","lastModified":"1301902635000","name":"Goran Reljic","type":"Person","_key":"54525"} +{"label":"Tito Ortiz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b2\/4c1625127b9aa105860001b2\/tito-ortiz-profile.jpg","version":45,"id":"83522","lastModified":"1301902356000","name":"Tito Ortiz","type":"Person","_key":"54526"} +{"label":"Lyoto Machida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4bf03b7f017a3c7f9e00000c\/lyoto-machida-profile.jpg","version":30,"id":"82915","lastModified":"1301902328000","name":"Lyoto Machida","type":"Person","_key":"54527"} +{"label":"Thiago Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b26\/4c0a9d31017a3c3519000b26\/thiago-silva-profile.jpg","version":29,"id":"83378","lastModified":"1301902353000","name":"Thiago Silva","type":"Person","_key":"54528"} +{"label":"Antonio Mendes","version":19,"id":"83523","lastModified":"1301902635000","name":"Antonio Mendes","type":"Person","_key":"54529"} +{"label":"Rameau Thierry Sokoudjou","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/252\/4c1e08ec7b9aa117c8000252\/rameau-thierry-sokoudjou-profile.jpg","version":22,"id":"78556","lastModified":"1301902170000","name":"Rameau Thierry Sokoudjou","type":"Person","_key":"54530"} +{"label":"Shane Carwin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/742\/4c0921de017a3c29a6000742\/shane-carwin-profile.jpg","version":26,"id":"83370","lastModified":"1301902196000","name":"Shane Carwin","type":"Person","_key":"54531"} +{"label":"UFC 83: Serra vs St-Pierre 2","description":"UFC 83: Serra vs St-Pierre 2 was a mixed martial arts event held by the Ultimate Fighting Championship. The event was held on April 19, 2008, at the Bell Centre in Montreal, Quebec, Canada. UFC 83 was the UFC's first event in Canada.\n\nIt was headlined by UFC Welterweight Champion Matt Serra and UFC Interim Welterweight Champion Georges St. Pierre in a match to unify the championship.","id":"13082","runtime":0,"imdbId":"tt1224377","version":52,"lastModified":"1301908302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4bc93b12017a3c57fe018a96\/ufc-83-serra-vs-st-pierre-2-mid.jpg","title":"UFC 83: Serra vs St-Pierre 2","releaseDate":1208563200000,"language":"en","type":"Movie","_key":"54532"} +{"label":"Matt Serra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d2\/4c0a9b66017a3c29a60009d2\/matt-serra-profile.jpg","version":33,"id":"82916","lastModified":"1301902350000","name":"Matt Serra","type":"Person","_key":"54533"} +{"label":"Travis Lutter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/125\/4c1e044d7b9aa126b9000125\/travis-lutter-profile.jpg","version":23,"id":"85265","lastModified":"1301902171000","name":"Travis Lutter","type":"Person","_key":"54534"} +{"label":"Kalib Starnes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18f\/4c1e04267b9aa11e9500018f\/kalib-starnes-profile.jpg","version":22,"id":"85266","lastModified":"1301902355000","name":"Kalib Starnes","type":"Person","_key":"54535"} +{"label":"Nate Quarry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/207\/4c1df3f97b9aa117c8000207\/nathan-quarry-profile.jpg","version":29,"id":"83502","lastModified":"1301902696000","name":"Nate Quarry","type":"Person","_key":"54536"} +{"label":"Charles McCarthy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/032\/4c1e040f7b9aa12958000032\/charles-mccarthy-profile.jpg","version":21,"id":"85267","lastModified":"1301902715000","name":"Charles McCarthy","type":"Person","_key":"54537"} +{"label":"Mark Bocek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76f\/4c09233d017a3c7e8f00076f\/mark-bocek-profile.jpg","version":22,"id":"85268","lastModified":"1301902466000","name":"Mark Bocek","type":"Person","_key":"54538"} +{"label":"Mac Danzig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/239\/4c1e03e67b9aa117c8000239\/mac-danzig-profile.jpg","version":33,"id":"85269","lastModified":"1301902589000","name":"Mac Danzig","type":"Person","_key":"54539"} +{"label":"Alan Belcher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6fc\/4c0896c3017a3c7e870006fc\/alan-belcher-profile.jpg","version":36,"id":"83496","lastModified":"1301902504000","name":"Alan Belcher","type":"Person","_key":"54540"} +{"label":"Ed Herman","version":28,"id":"85270","lastModified":"1301902635000","name":"Ed Herman","type":"Person","_key":"54541"} +{"label":"Joe Doerksen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/052\/4c1e03cb7b9aa12962000052\/joe-doerksen-profile.jpg","version":25,"id":"85271","lastModified":"1301902188000","name":"Joe Doerksen","type":"Person","_key":"54542"} +{"label":"Sam Stout","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/797\/4c08959e017a3c33d9000797\/sam-stout-profile.jpg","version":28,"id":"85272","lastModified":"1301901670000","name":"Sam Stout","type":"Person","_key":"54543"} +{"label":"Rich Clementi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/232\/4c1e01b47b9aa117c8000232\/rich-clementi-profile.jpg","version":24,"id":"83507","lastModified":"1301902695000","name":"Rich Clementi","type":"Person","_key":"54544"} +{"label":"Brad Morris","version":20,"id":"85273","lastModified":"1301902526000","name":"Brad Morris","type":"Person","_key":"54545"} +{"label":"Cain Velasquez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9cd\/4c0a9765017a3c29a60009cd\/cain-velasquez-profile.jpg","version":37,"id":"84032","lastModified":"1301901971000","name":"Cain Velasquez","type":"Person","_key":"54546"} +{"label":"Jonathan Goulet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/229\/4c1e03a97b9aa11815000229\/jonathan-goulet-profile.jpg","version":24,"id":"85274","lastModified":"1301902717000","name":"Jonathan Goulet","type":"Person","_key":"54547"} +{"label":"Kuniyoshi Hironaka","version":21,"id":"85275","lastModified":"1301902706000","name":"Kuniyoshi Hironaka","type":"Person","_key":"54548"} +{"label":"UFC 82: Pride of a Champion","description":"UFC 82: Pride of a Champion was a mixed martial arts (MMA) event that took place on 1st March, 2008 at the Nationwide Arena in Columbus, Ohio.\n\nThe main event was a UFC & Pride FC middleweight title unification match between UFC middleweight champion Anderson Silva and PRIDE FC welterweight champion Dan Henderson.","id":"13083","runtime":0,"imdbId":"tt1195497","version":85,"lastModified":"1301905270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa4\/4bc93b12017a3c57fe018aa4\/ufc-82-pride-of-a-champion-mid.jpg","title":"UFC 82: Pride of a Champion","releaseDate":1204329600000,"language":"en","type":"Movie","_key":"54549"} +{"label":"Anderson Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/704\/4c089722017a3c7e87000704\/anderson-silva-profile.jpg","biography":"Anderson da Silva is a Brazilian mixed martial artist. He is the current UFC Middleweight Champion as well as the promotion's longest reigning champion. With 13 consecutive wins, Silva holds the longest active winning streak in the UFC and the record for the longest winning streak in UFC history.  Silva holds a black belt in Brazilian Jiu-Jitsu under Ant\u00f4nio Rodrigo Nogueira. He trains at Black House.\u200b","version":47,"birthday":"166662000000","id":"78895","birthplace":"S\u00e3o Paulo, Brazil","lastModified":"1301901700000","name":"Anderson Silva","type":"Person","_key":"54550"} +{"label":"Evan Tanner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f9\/4c16292f7b9aa105e00000f9\/evan-tanner-profile.jpg","version":36,"id":"83574","lastModified":"1301901809000","name":"Evan Tanner","type":"Person","_key":"54551"} +{"label":"Yushin Okami","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/225\/4c1e03907b9aa11815000225\/yushin-okami-profile.jpg","version":26,"id":"85320","lastModified":"1301902049000","name":"Yushin Okami","type":"Person","_key":"54552"} +{"label":"Chris Leben","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1db\/4c1df5c37b9aa118260001db\/chris-leben-profile.jpg","version":50,"id":"78512","lastModified":"1301902207000","name":"Chris Leben","type":"Person","_key":"54553"} +{"label":"Alessio Sakara","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ff\/4c1df26f7b9aa117c80001ff\/alessio-sakara-profile.jpg","version":27,"id":"85260","lastModified":"1301902517000","name":"Alessio Sakara","type":"Person","_key":"54554"} +{"label":"Dustin Hazelett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/004\/4c1df6867b9aa12962000004\/dustin-hazelett-profile.jpg","version":24,"id":"83499","lastModified":"1301902355000","name":"Dustin Hazelett","type":"Person","_key":"54555"} +{"label":"UFC 81: Breaking Point","description":"UFC 81: Breaking Point was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC) at the Mandalay Bay Events Center in Las Vegas, Nevada.\n\nThe event featured Tim Sylvia and Antonio Rodrigo \"Minotauro\" Nogueira for UFC's Interim World Heavyweight Championship.","id":"13084","runtime":0,"imdbId":"tt1182331","version":169,"lastModified":"1301904046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab2\/4bc93b13017a3c57fe018ab2\/ufc-81-breaking-point-mid.jpg","title":"UFC 81: Breaking Point","releaseDate":1201996800000,"language":"en","type":"Movie","_key":"54556"} +{"label":"Tim Sylvia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18b\/4c1e03557b9aa11e9500018b\/tim-sylvia-profile.jpg","version":31,"id":"78908","lastModified":"1301901822000","name":"Tim Sylvia","type":"Person","_key":"54557"} +{"label":"Antonio Rodrigo Nogueira","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d8\/4c0a972d017a3c7e8f0008d8\/antonio-rodrigo-nogueira-profile.jpg","version":39,"id":"78815","lastModified":"1301901401000","name":"Antonio Rodrigo Nogueira","type":"Person","_key":"54558"} +{"label":"Frank Mir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7aa\/4c092198017a3c7e920007aa\/frank-mir-profile.jpg","version":37,"id":"78816","lastModified":"1301901787000","name":"Frank Mir","type":"Person","_key":"54559"} +{"label":"Jeremy Horn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c4\/4c16285d7b9aa104ee0001c4\/jeremy-horn-profile.jpg","version":30,"id":"83494","lastModified":"1301902356000","name":"Jeremy Horn","type":"Person","_key":"54560"} +{"label":"Rob Yundt","version":19,"id":"88625","lastModified":"1301902635000","name":"Rob Yundt","type":"Person","_key":"54561"} +{"label":"Kyle Bradley","version":19,"id":"88626","lastModified":"1301902635000","name":"Kyle Bradley","type":"Person","_key":"54562"} +{"label":"David Heath","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25f\/4c1e09ad7b9aa117c800025f\/david-heath-profile.jpg","version":21,"id":"88627","lastModified":"1301903012000","name":"David Heath","type":"Person","_key":"54563"} +{"label":"Tim Boetsch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4c1e03167b9aa12963000054\/tim-boetsch-profile.jpg","version":20,"id":"88628","lastModified":"1301903081000","name":"Tim Boetsch","type":"Person","_key":"54564"} +{"label":"Keita Nakamura","version":19,"id":"88629","lastModified":"1301902635000","name":"Keita Nakamura","type":"Person","_key":"54565"} +{"label":"UFC 80: Rapid Fire","description":"UFC 80: Rapid Fire was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC), that took place on January 19, 2008 at the Metro Radio Arena in Newcastle, England. Sean Sherk was originally slated to fight but tested positive for steroids. With the lightweight championship vacated, the Penn-Stevenson bout was altered to be for the undisputed championship.","id":"13085","runtime":0,"imdbId":"tt1176917","version":93,"lastModified":"1301418091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abb\/4bc93b16017a3c57fe018abb\/ufc-80-rapid-fire-mid.jpg","title":"UFC 80: Rapid Fire","releaseDate":1200700800000,"language":"en","type":"Movie","_key":"54566"} +{"label":"Jess Liaudin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/187\/4c1e02ea7b9aa11e95000187\/jess-liaudin-profile.jpg","version":21,"id":"88630","lastModified":"1301903013000","name":"Jess Liaudin","type":"Person","_key":"54567"} +{"label":"Jason Lambert","version":22,"id":"88631","lastModified":"1301902892000","name":"Jason Lambert","type":"Person","_key":"54568"} +{"label":"Kendall Grove","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b3\/4c089994017a3c7e8f0006b3\/kendall-grove-profile.jpg","version":23,"id":"78822","lastModified":"1301902154000","name":"Kendall Grove","type":"Person","_key":"54569"} +{"label":"James Lee","version":20,"id":"88632","lastModified":"1301903037000","name":"James Lee","type":"Person","_key":"54570"} +{"label":"Antoni Hardonk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4c1dfed67b9aa11815000215\/antoni-hardonk-profile.jpg","version":22,"id":"83369","lastModified":"1301902517000","name":"Antoni Hardonk","type":"Person","_key":"54571"} +{"label":"Paul Taylor","version":22,"id":"83511","lastModified":"1301902505000","name":"Paul Taylor","type":"Person","_key":"54572"} +{"label":"Paul Kelly","version":20,"id":"83512","lastModified":"1301902466000","name":"Paul Kelly","type":"Person","_key":"54573"} +{"label":"UFC 79: Nemesis","description":"UFC 79: Nemesis was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC), that took place on December 29, 2007 at the Mandalay Bay Events Center in Las Vegas, Nevada. The main events featured a fight between Chuck Liddell and Wanderlei Silva, as well as the highly anticipated rubber match between former UFC Welterweight Champions Georges St. Pierre and Matt Hughes.","id":"13086","runtime":0,"imdbId":"tt1166114","version":85,"lastModified":"1301906613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac8\/4bc93b17017a3c57fe018ac8\/ufc-79-nemesis-mid.jpg","title":"UFC 79: Nemesis","releaseDate":1198886400000,"language":"en","type":"Movie","_key":"54574"} +{"label":"Eddie Sanchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/091\/4c1e090e7b9aa12963000091\/eddie-sanchez-profile.jpg","version":23,"id":"85323","lastModified":"1301902695000","name":"Eddie Sanchez","type":"Person","_key":"54575"} +{"label":"Soa Palalei","version":18,"id":"88633","lastModified":"1301903038000","name":"Soa Palalei","type":"Person","_key":"54576"} +{"label":"Melvin Guillard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4c1dfa587b9aa1296300001f\/melvin-guillard-profile.jpg","version":31,"id":"85264","lastModified":"1301902517000","name":"Melvin Guillard","type":"Person","_key":"54577"} +{"label":"Manvel Gamburyan","version":21,"id":"88634","lastModified":"1301903064000","name":"Manvel Gamburyan","type":"Person","_key":"54578"} +{"label":"Nate Mohr","version":20,"id":"88635","lastModified":"1301903037000","name":"Nate Mohr","type":"Person","_key":"54579"} +{"label":"UFC 78: Validation","description":"UFC 78: Validation was a mixed martial arts event held by the Ultimate Fighting Championship (UFC), that took place on November 17, 2007 at the Prudential Center in Newark, New Jersey. Validation was the first UFC event held in New Jersey since June 4, 2005's UFC 53: Heavy Hitters in Atlantic City.","id":"13087","runtime":0,"imdbId":"tt1148178","version":73,"lastModified":"1301418611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad1\/4bc93b18017a3c57fe018ad1\/ufc-78-validation-mid.jpg","title":"UFC 78: Validation","releaseDate":1195257600000,"language":"en","type":"Movie","_key":"54580"} +{"label":"Houston Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4c1e08a47b9aa1296300008d\/houston-alexander-profile.jpg","version":30,"id":"85329","lastModified":"1301902517000","name":"Houston Alexander","type":"Person","_key":"54581"} +{"label":"Karo Parisyan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/20b\/4c1dffa87b9aa1182600020b\/karo-parisyan-profile.jpg","version":31,"id":"83381","lastModified":"1301902517000","name":"Karo Parisyan","type":"Person","_key":"54582"} +{"label":"Ryo Chonan","version":19,"id":"88636","lastModified":"1301902635000","name":"Ryo Chonan","type":"Person","_key":"54583"} +{"label":"Spencer Fisher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4c1df9bf7b9aa1296200001d\/spencer-fisher-profile.jpg","version":27,"id":"84056","lastModified":"1301902696000","name":"Spencer Fisher","type":"Person","_key":"54584"} +{"label":"Frank Edgar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/697\/4c0897bc017a3c29a6000697\/frank-edgar-profile.jpg","biography":"Frank James Edgar is an American mixed martial artist fighting in the Ultimate Fighting Championship.","version":41,"birthday":"372034800000","id":"82922","lastModified":"1301902526000","name":"Frank Edgar","type":"Person","_key":"54585"} +{"label":"Joe Lauzon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4c1df6be7b9aa11e9500015c\/joe-lauzon-profile.jpg","version":30,"id":"88637","lastModified":"1301903012000","name":"Joe Lauzon","type":"Person","_key":"54586"} +{"label":"Jason Reinhardt","version":19,"id":"88638","lastModified":"1301902635000","name":"Jason Reinhardt","type":"Person","_key":"54587"} +{"label":"UFC 77: Hostile Territory","description":"UFC 77: Hostile Territory was a mixed martial arts event held by the Ultimate Fighting Championship (UFC). The event took place on Saturday, October 20, 2007 at the U.S. Bank Arena in Cincinnati, Ohio. The main event featured Anderson Silva defending his middleweight championship against Rich Franklin in a rematch of their October 2006 meeting at UFC 64, which Silva won.","id":"13088","runtime":0,"imdbId":"tt1132605","version":74,"lastModified":"1301906610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adf\/4bc93b18017a3c57fe018adf\/ufc-77-hostile-territory-mid.jpg","genre":"Sports Film","title":"UFC 77: Hostile Territory","releaseDate":1192838400000,"language":"en","type":"Movie","_key":"54588"} +{"label":"Eric Schafer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b8\/4c1e08877b9aa11e950001b8\/eric-schafer-profile.jpg","version":29,"id":"88879","lastModified":"1301903012000","name":"Eric Schafer","type":"Person","_key":"54589"} +{"label":"Stephan Bonnar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/045\/4c1dff6e7b9aa12963000045\/stephan-bonnar-profile.jpg","version":36,"id":"83379","lastModified":"1301902553000","name":"Stephan Bonnar","type":"Person","_key":"54590"} +{"label":"Alvin Robinson","version":20,"id":"85314","lastModified":"1301902635000","name":"Alvin Robinson","type":"Person","_key":"54591"} +{"label":"Jorge Gurgel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4c1e084c7b9aa1182600022c\/jorge-gurgel-profile.jpg","version":21,"id":"85317","lastModified":"1301902170000","name":"Jorge Gurgel","type":"Person","_key":"54592"} +{"label":"Ryan Jensen","version":21,"id":"88889","lastModified":"1301902527000","name":"Ryan Jensen","type":"Person","_key":"54593"} +{"label":"UFC 76: Knockout","description":"UFC 76: Knockout was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC). The event took place on September 22, 2007 at the Honda Center in Anaheim, California. Though the event was subtitled Knockout, the entire card ironically produced no knockouts.","id":"13089","runtime":178,"imdbId":"tt1114735","version":61,"lastModified":"1301906610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae8\/4bc93b19017a3c57fe018ae8\/ufc-76-knockout-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 76: Knockout","releaseDate":1190419200000,"language":"en","type":"Movie","_key":"54594"} +{"label":"Diego Sanchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c0312bf017a3c7e8700008f\/diego-sanchez-profile.jpg","version":32,"id":"78625","lastModified":"1301902354000","name":"Diego Sanchez","type":"Person","_key":"54595"} +{"label":"Mauricio Rua","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/792\/4c08941c017a3c33d9000792\/mauricio-rua-profile.jpg","version":28,"id":"83366","lastModified":"1301902147000","name":"Mauricio Rua","type":"Person","_key":"54596"} +{"label":"Kazuhiro Nakamura","version":19,"id":"88890","lastModified":"1301902892000","name":"Kazuhiro Nakamura","type":"Person","_key":"54597"} +{"label":"Sunshine Cleaning","description":"A single mom and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business, a biohazard removal\/crime scene clean-up service.","id":"13090","runtime":102,"imdbId":"tt0862846","trailer":"http:\/\/www.youtube.com\/watch?v=VN5hSoC4-cQ","homepage":"http:\/\/www.sunshinecleaning-themovie.com","version":196,"lastModified":"1301907565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc93b1a017a3c57fe018af9\/sunshine-cleaning-mid.jpg","studio":"Big Beach Productions","genre":"Comedy","title":"Sunshine Cleaning","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"54598"} +{"label":"Jason Spevack","version":21,"id":"74151","lastModified":"1301901775000","name":"Jason Spevack","type":"Person","_key":"54599"} +{"label":"Christine Jeffs","version":21,"id":"74152","lastModified":"1301901722000","name":"Christine Jeffs","type":"Person","_key":"54600"} +{"label":"Sechse kommen durch die Welt","description":"No overview found.","id":"13091","runtime":65,"imdbId":"tt0069240","version":88,"lastModified":"1301908367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b03\/4bc93b1d017a3c57fe018b03\/sechse-kommen-durch-die-welt-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Sechse kommen durch die Welt","releaseDate":82944000000,"language":"en","type":"Movie","_key":"54601"} +{"label":"Rainer Simon","version":25,"id":"74161","lastModified":"1301902121000","name":"Rainer Simon","type":"Person","_key":"54602"} +{"label":"G\u00fcnter Schubert","version":20,"id":"27071","lastModified":"1301901991000","name":"G\u00fcnter Schubert","type":"Person","_key":"54603"} +{"label":"Olga Strub","version":19,"id":"74163","lastModified":"1301902121000","name":"Olga Strub","type":"Person","_key":"54604"} +{"label":"J\u00fcrgen Gosch","version":19,"id":"74164","lastModified":"1301902121000","name":"J\u00fcrgen Gosch","type":"Person","_key":"54605"} +{"label":"Berthold Schulze","version":20,"id":"74165","lastModified":"1301902200000","name":"Berthold Schulze","type":"Person","_key":"54606"} +{"label":"Lothar F\u00f6rster","version":21,"id":"74166","lastModified":"1301902121000","name":"Lothar F\u00f6rster","type":"Person","_key":"54607"} +{"label":"Peter Herden","version":19,"id":"74167","lastModified":"1301902121000","name":"Peter Herden","type":"Person","_key":"54608"} +{"label":"Walter Bechstein","version":19,"id":"74168","lastModified":"1301902121000","name":"Walter Bechstein","type":"Person","_key":"54609"} +{"label":"How to Lose Friends & Alienate People","description":"A British writer struggles to fit in at a high-profile magazine in New York. Based on Toby Young's memoir \"How to Lose Friends & Alienate People\".","id":"13092","runtime":110,"imdbId":"tt0455538","version":183,"lastModified":"1301901877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4bd06a48017a3c63ea0000d4\/how-to-lose-friends-alienate-people-mid.jpg","studio":"Number 9 Films","genre":"Comedy","title":"How to Lose Friends & Alienate People","releaseDate":1222992000000,"language":"en","type":"Movie","_key":"54610"} +{"label":"Kelan Pannell","version":23,"id":"74154","lastModified":"1301901163000","name":"Kelan Pannell","type":"Person","_key":"54611"} +{"label":"Janette Scott","version":32,"id":"74155","lastModified":"1301901335000","name":"Janette Scott","type":"Person","_key":"54612"} +{"label":"Kelly Jo Charge","version":23,"id":"74156","lastModified":"1301901430000","name":"Kelly Jo Charge","type":"Person","_key":"54613"} +{"label":"Christian Smith","version":23,"id":"74157","lastModified":"1301901474000","name":"Christian Smith","type":"Person","_key":"54614"} +{"label":"Katherine Parkinson","version":40,"id":"74158","lastModified":"1301901316000","name":"Katherine Parkinson","type":"Person","_key":"54615"} +{"label":"Robert B. Weide","version":25,"id":"74159","lastModified":"1301901675000","name":"Robert B. Weide","type":"Person","_key":"54616"} +{"label":"Dornr\u00f6schen","description":"No overview found.","id":"13093","runtime":67,"imdbId":"tt0067012","version":55,"lastModified":"1301904943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b22\/4bc93b20017a3c57fe018b22\/dornroschen-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Dornr\u00f6schen","releaseDate":38793600000,"language":"en","type":"Movie","_key":"54617"} +{"label":"Walter Beck","version":24,"id":"74177","lastModified":"1301901870000","name":"Walter Beck","type":"Person","_key":"54618"} +{"label":"Juliane Kor\u00e9n","version":19,"id":"74178","lastModified":"1301901870000","name":"Juliane Kor\u00e9n","type":"Person","_key":"54619"} +{"label":"Vera Oelschlegel","version":19,"id":"74179","lastModified":"1301902074000","name":"Vera Oelschlegel","type":"Person","_key":"54620"} +{"label":"Burkhard Mann","version":20,"id":"74180","lastModified":"1301902362000","name":"Burkhard Mann","type":"Person","_key":"54621"} +{"label":"Martin Hellberg","version":19,"id":"74181","lastModified":"1301902249000","name":"Martin Hellberg","type":"Person","_key":"54622"} +{"label":"Sonja H\u00f6rbing","version":19,"id":"74182","lastModified":"1301901870000","name":"Sonja H\u00f6rbing","type":"Person","_key":"54623"} +{"label":"Brigitte Krause","version":19,"id":"74183","lastModified":"1301902249000","name":"Brigitte Krause","type":"Person","_key":"54624"} +{"label":"Evamaria Heyse","version":19,"id":"74184","lastModified":"1301902048000","name":"Evamaria Heyse","type":"Person","_key":"54625"} +{"label":"Dieter Wien","version":19,"id":"74186","lastModified":"1301902249000","name":"Dieter Wien","type":"Person","_key":"54626"} +{"label":"Thomas Langhoff","version":19,"id":"37614","lastModified":"1301901611000","name":"Thomas Langhoff","type":"Person","_key":"54627"} +{"label":"J\u00f6rg Knoche","version":19,"id":"74187","lastModified":"1301902249000","name":"J\u00f6rg Knoche","type":"Person","_key":"54628"} +{"label":"Klaus P\u00f6nitz","version":19,"id":"74189","lastModified":"1301902249000","name":"Klaus P\u00f6nitz","type":"Person","_key":"54629"} +{"label":"Nico Turoff","version":22,"id":"28577","lastModified":"1301902074000","name":"Nico Turoff","type":"Person","_key":"54630"} +{"label":"Waltraud Kramm","version":18,"id":"74190","lastModified":"1301901851000","name":"Waltraud Kramm","type":"Person","_key":"54631"} +{"label":"Dance of the Dead","description":"A high school prom is unexpectedly interrupted when a graveyard, next to a nuclear power plant, becomes the sudden source of resuscitated cadavers. As zombies march on the high school, a motley group of dateless teenage outcasts take on the zombies and save the day.\r\n","id":"13094","runtime":95,"imdbId":"tt0926063","homepage":"http:\/\/danceofthedeadmovie.com","version":163,"lastModified":"1301903353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2f\/4bc93b21017a3c57fe018b2f\/dance-of-the-dead-mid.jpg","genre":"Comedy","title":"Dance of the Dead","releaseDate":1223942400000,"language":"en","type":"Movie","_key":"54632"} +{"label":"Killa Season","description":"Flea was a basketball player, happy with his subtle hustle, until a Dominican connect introduced him to a new way to spread the work and make money.","id":"13097","runtime":128,"imdbId":"tt0798786","version":177,"lastModified":"1301063053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc93b21017a3c57fe018b38\/killa-season-mid.jpg","studio":"Asylum Entertainment","genre":"Comedy","title":"Killa Season","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"54633"} +{"label":"Cam'ron","version":24,"id":"74191","lastModified":"1301901840000","name":"Cam'ron","type":"Person","_key":"54634"} +{"label":"Durrel Mohammad","version":17,"id":"93604","lastModified":"1301902527000","name":"Durrel Mohammad","type":"Person","_key":"54635"} +{"label":"Juelz Santana","version":20,"id":"93605","lastModified":"1301902526000","name":"Juelz Santana","type":"Person","_key":"54636"} +{"label":"Michael Williams","version":17,"id":"93606","lastModified":"1301903054000","name":"Michael Williams","type":"Person","_key":"54637"} +{"label":"Funkmaster Flex","version":17,"id":"93607","lastModified":"1301903054000","name":"Funkmaster Flex","type":"Person","_key":"54638"} +{"label":"Greyson Cruz","version":17,"id":"93608","lastModified":"1301902988000","name":"Greyson Cruz","type":"Person","_key":"54639"} +{"label":"Osas Ighodaro","version":17,"id":"93609","lastModified":"1301902988000","name":"Osas Ighodaro","type":"Person","_key":"54640"} +{"label":"Paid In Full","description":"Ace (Wood Harris) is an impressionable young man working for a dry cleaning business. His friend, drug dealer Mitch (Mekhi Phifer) goes to prison. In an unrelated incident, he finds some cocaine in a pants pocket. Soon, Ace finds himself dealing cocaine for Lulu (Esai Morales). Via lucky breaks and solid interpersonal skills, Ace moves to the top of the Harlem drug world. Of course, unfaithful emp","id":"13098","runtime":93,"imdbId":"tt0259484","version":207,"lastModified":"1301902455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d0\/4d435a065e73d66f590004d0\/paid-in-full-mid.jpg","studio":"Miramax Films","genre":"Action","title":"Paid In Full","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"54641"} +{"label":"Damon Dash","version":41,"id":"60545","lastModified":"1301901442000","name":"Damon Dash","type":"Person","_key":"54642"} +{"label":"Charles Stone III","version":25,"id":"80215","lastModified":"1301901680000","name":"Charles Stone III","type":"Person","_key":"54643"} +{"label":"Gen-X Cops","description":"Four young officers of the Hong Kong Police are joined together to fight against organised crime using all possible means, even if this would lead them to break the law\u2026 Their first assignment is to eliminate a gang of criminals who have stolen a shipload of explosives.","id":"13099","runtime":114,"imdbId":"tt0206334","version":149,"lastModified":"1301903137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4c4b659a7b9aa1237f00008d\/dak-ging-san-yan-lui-mid.jpg","studio":"Media Asia Films Ltd.","genre":"Action","title":"Gen-X Cops","releaseDate":929664000000,"language":"en","type":"Movie","_key":"54644"} +{"label":"Stephen Fung","version":35,"id":"74192","lastModified":"1301901195000","name":"Stephen Fung","type":"Person","_key":"54645"} +{"label":"Sam Lee","version":36,"id":"74193","lastModified":"1301901237000","name":"Sam Lee","type":"Person","_key":"54646"} +{"label":"Grace Yip","version":22,"id":"74194","lastModified":"1301901417000","name":"Grace Yip","type":"Person","_key":"54647"} +{"label":"T\u00f4ru Nakamura","version":24,"id":"74195","lastModified":"1301901581000","name":"T\u00f4ru Nakamura","type":"Person","_key":"54648"} +{"label":"Terence Yin","version":26,"id":"74196","lastModified":"1301901812000","name":"Terence Yin","type":"Person","_key":"54649"} +{"label":"Jaymee Ong","version":22,"id":"74197","lastModified":"1301902362000","name":"Jaymee Ong","type":"Person","_key":"54650"} +{"label":"Das Feuerzeug","description":"Nach dem M\u00e4rchen von Hans Christian Andersen","id":"13100","runtime":80,"imdbId":"tt0051611","version":55,"lastModified":"1301908301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b52\/4bc93b25017a3c57fe018b52\/das-feuerzeug-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Das Feuerzeug","releaseDate":-337910400000,"language":"en","type":"Movie","_key":"54651"} +{"label":"Senta Bonacker","version":19,"id":"74207","lastModified":"1301901870000","name":"Senta Bonacker","type":"Person","_key":"54652"} +{"label":"Rolf Defrank","version":19,"id":"74208","lastModified":"1301901870000","name":"Rolf Defrank","type":"Person","_key":"54653"} +{"label":"Hans Fiebrandt","version":19,"id":"74209","lastModified":"1301902074000","name":"Hans Fiebrandt","type":"Person","_key":"54654"} +{"label":"Barbara Mehlan","version":19,"id":"74210","lastModified":"1301901535000","name":"Barbara Mehlan","type":"Person","_key":"54655"} +{"label":"Kay Sikor","version":19,"id":"74212","lastModified":"1301902074000","name":"Kay Sikor","type":"Person","_key":"54656"} +{"label":"Bella Waldritter","version":19,"id":"74213","lastModified":"1301901870000","name":"Bella Waldritter","type":"Person","_key":"54657"} +{"label":"Maria Wendt","version":19,"id":"74214","lastModified":"1301902074000","name":"Maria Wendt","type":"Person","_key":"54658"} +{"label":"Heart of Stone","description":"No overview found.","id":"13101","runtime":101,"imdbId":"tt0042627","version":152,"lastModified":"1301907407000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b57\/4bc93b26017a3c57fe018b57\/das-kalte-herz-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Heart of Stone","releaseDate":-601689600000,"language":"en","type":"Movie","_key":"54659"} +{"label":"Hanna Rucker","version":20,"id":"74236","lastModified":"1301902180000","name":"Hanna Rucker","type":"Person","_key":"54660"} +{"label":"Hannsgeorg Laubenthal","version":18,"id":"74237","lastModified":"1301902196000","name":"Hannsgeorg Laubenthal","type":"Person","_key":"54661"} +{"label":"Walter Tarrach","version":18,"id":"74238","lastModified":"1301902385000","name":"Walter Tarrach","type":"Person","_key":"54662"} +{"label":"Lotte Loebinger","version":19,"id":"74239","lastModified":"1301902389000","name":"Lotte Loebinger","type":"Person","_key":"54663"} +{"label":"Karl Hellmer","version":20,"id":"74240","lastModified":"1301902337000","name":"Karl Hellmer","type":"Person","_key":"54664"} +{"label":"Das tapfere Schneiderlein","description":"No overview found.","id":"13102","runtime":83,"imdbId":"tt0183862","version":46,"lastModified":"1301419341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5c\/4bc93b26017a3c57fe018b5c\/das-tapfere-schneiderlein-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Das tapfere Schneiderlein","releaseDate":-418435200000,"language":"en","type":"Movie","_key":"54665"} +{"label":"Frau Holle","description":"No overview found.","id":"13103","runtime":57,"imdbId":"tt0172467","version":56,"lastModified":"1301908301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b61\/4bc93b26017a3c57fe018b61\/frau-holle-mid.jpg","studio":"DEFA","genre":"Family","title":"Frau Holle","releaseDate":-196300800000,"language":"en","type":"Movie","_key":"54666"} +{"label":"Rudi Pfaff","version":17,"id":"77400","lastModified":"1301902175000","name":"Rudi Pfaff","type":"Person","_key":"54667"} +{"label":"J\u00fcrgen P\u00f6rschemann","version":18,"id":"77401","lastModified":"1301902074000","name":"J\u00fcrgen P\u00f6rschemann","type":"Person","_key":"54668"} +{"label":"Rolf Dietrich Zienau","version":16,"id":"77402","lastModified":"1301902074000","name":"Rolf Dietrich Zienau","type":"Person","_key":"54669"} +{"label":"Wolfgang Vermeiren","version":16,"id":"77403","lastModified":"1301902074000","name":"Wolfgang Vermeiren","type":"Person","_key":"54670"} +{"label":"Gudrun L\u00fcth","version":16,"id":"77404","lastModified":"1301902074000","name":"Gudrun L\u00fcth","type":"Person","_key":"54671"} +{"label":"Froschk\u00f6nig","description":"No overview found.","id":"13104","runtime":65,"imdbId":"tt0093052","version":28,"lastModified":"1301907414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b66\/4bc93b26017a3c57fe018b66\/froschkonig-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Froschk\u00f6nig","releaseDate":567993600000,"language":"en","type":"Movie","_key":"54672"} +{"label":"Mr. Mom","description":"Jack and Caroline are a couple making a decent living When Jack suddenly loses his job. They agree that he should stay at home and look after the house while Caroline works. It's just that he's never done it before, and really doesn't have a clue... ","id":"13105","runtime":91,"imdbId":"tt0085970","trailer":"http:\/\/www.youtube.com\/watch?v=51v777hXDv4","version":131,"lastModified":"1301905109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b73\/4bc93b27017a3c57fe018b73\/mr-mom-mid.jpg","genre":"Comedy","title":"Mr. Mom","releaseDate":427680000000,"language":"en","type":"Movie","_key":"54673"} +{"label":"Martin Mull","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a0\/4cb5c6ac7b9aa138da0002a0\/martin-mull-profile.jpg","version":47,"id":"80742","lastModified":"1301902351000","name":"Martin Mull","type":"Person","_key":"54674"} +{"label":"Ann Jillian","version":24,"id":"113905","lastModified":"1301903069000","name":"Ann Jillian","type":"Person","_key":"54675"} +{"label":"Tom Leopold","version":17,"id":"95652","lastModified":"1301902635000","name":"Tom Leopold","type":"Person","_key":"54676"} +{"label":"Carolyn Seymour","version":21,"id":"42970","lastModified":"1301902074000","name":"Carolyn Seymour","type":"Person","_key":"54677"} +{"label":"Dard Divorce","description":"No overview found.","id":"13106","runtime":85,"imdbId":"tt0936468","version":66,"lastModified":"1301904437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc93b29017a3c57fe018b82\/dard-divorce-mid.jpg","genre":"Horror","title":"Dard Divorce","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"54678"} +{"label":"Martina Ittenbach","version":20,"id":"74224","lastModified":"1301902146000","name":"Martina Ittenbach","type":"Person","_key":"54679"} +{"label":"Henry Poole Is Here","description":"Henry Poole abandons his fianc\u00e9e and family business to spend what he believes are his remaining days alone. The discovery of a \"miracle\" by a nosy neighbor ruptures his solitude and restores his faith in life.","id":"13107","runtime":99,"imdbId":"tt1029120","homepage":"http:\/\/www.myspace.com\/henrypooleishere","version":330,"lastModified":"1301904063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b98\/4bc93b2e017a3c57fe018b98\/henry-poole-is-here-mid.jpg","studio":"Lakeshore Entertainment","genre":"Comedy","title":"Henry Poole Is Here","releaseDate":1218758400000,"language":"en","tagline":"Changing his attitude will take a miracle.","type":"Movie","_key":"54680"} +{"label":"Morgan Lily","version":27,"id":"74227","lastModified":"1301904073000","name":"Morgan Lily","type":"Person","_key":"54681"} +{"label":"Earl Carroll","version":21,"id":"74228","lastModified":"1301901841000","name":"Earl Carroll","type":"Person","_key":"54682"} +{"label":"Noah Dahl","version":20,"id":"74229","lastModified":"1301901771000","name":"Noah Dahl","type":"Person","_key":"54683"} +{"label":"Rachel Seiferth","version":21,"id":"74230","lastModified":"1301901771000","name":"Rachel Seiferth","type":"Person","_key":"54684"} +{"label":"Nick Dash","version":22,"id":"74231","lastModified":"1301901440000","name":"Nick Dash","type":"Person","_key":"54685"} +{"label":"UFC 75: Champion vs. Champion","description":"UFC 75: Champion vs. Champion was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC).\n\nThe event was held September 8, 2007 at The O2 in London, England. The event was on Setanta Sports 1 in the United Kingdom, TV4 Sport in Sweden, PPV1 in Ireland, and offered on tape delay on Spike TV for North American audiences.","id":"13108","runtime":0,"imdbId":"tt1100025","version":76,"lastModified":"1301908546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb0\/4bc93b30017a3c57fe018bb0\/ufc-75-champion-vs-champion-mid.jpg","title":"UFC 75: Champion vs. Champion","releaseDate":1189209600000,"language":"en","type":"Movie","_key":"54686"} +{"label":"Mirko Filipovic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/afe\/4c0a9992017a3c3519000afe\/mirko-filipovic-profile.jpg","version":45,"id":"84053","lastModified":"1301902362000","name":"Mirko Filipovic","type":"Person","_key":"54687"} +{"label":"UFC 74: Respect","description":"UFC 74: Respect was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC). The event took place on August 25, 2007 at the Mandalay Bay Events Center in Las Vegas, Nevada. The main event was a UFC heavyweight championship bout which featured UFC heavyweight champion Randy Couture defending his title against Gabriel Gonzaga.","id":"13109","runtime":0,"imdbId":"tt1092550","version":77,"lastModified":"1301906078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb9\/4bc93b30017a3c57fe018bb9\/ufc-74-respect-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 74: Respect","releaseDate":1188000000000,"language":"en","type":"Movie","_key":"54688"} +{"label":"Randy Couture","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b2e\/4c0a99fa017a3c7e86000b2e\/randy-couture-profile.jpg","version":67,"birthday":"-206067600000","id":"74748","birthplace":"Everett, USA","lastModified":"1301901193000","name":"Randy Couture","type":"Person","_key":"54689"} +{"label":"Roger Huerta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4c1dfa8d7b9aa126b9000105\/roger-huerta-profile.jpg","version":24,"id":"78819","lastModified":"1301901671000","name":"Roger Huerta","type":"Person","_key":"54690"} +{"label":"Alberto Crane","version":20,"id":"88893","lastModified":"1301903038000","name":"Alberto Crane","type":"Person","_key":"54691"} +{"label":"UFC 73: Stacked","description":"UFC 73: Stacked was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC). It took place on July 7, 2007 at the ARCO Arena in Sacramento, California and featured a total of nine bouts: four on the preliminary card and five on the main card.\n\nThe main event was Anderson Silva defending the UFC Middleweight Championship against Nathan Marquardt.","id":"13110","runtime":0,"imdbId":"tt1068975","version":121,"lastModified":"1301906610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc2\/4bc93b31017a3c57fe018bc2\/ufc-73-stacked-mid.jpg","title":"UFC 73: Stacked","releaseDate":1183766400000,"language":"en","type":"Movie","_key":"54692"} +{"label":"Hermes Franca","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/035\/4c1dfb417b9aa12963000035\/hermes-franca-profile.jpg","version":27,"id":"85254","lastModified":"1301902696000","name":"Hermes Franca","type":"Person","_key":"54693"} +{"label":"Mike Nickels","version":19,"id":"85315","lastModified":"1301902249000","name":"Mike Nickels","type":"Person","_key":"54694"} +{"label":"Diego Saraiva","version":19,"id":"85316","lastModified":"1301902249000","name":"Diego Saraiva","type":"Person","_key":"54695"} +{"label":"Jason Gilliam","version":19,"id":"85318","lastModified":"1301902635000","name":"Jason Gilliam","type":"Person","_key":"54696"} +{"label":"UFC 72: Victory","description":"UFC 72: Victory was a mixed martial arts event held by the Ultimate Fighting Championship. The event took place Saturday, June 16, 2007 at The Odyssey in Belfast, Northern Ireland. Martin Kampmann was scheduled to fight Rich Franklin, but was forced to withdraw due to injury. Yushin Okami replaced Kampmann in the main event.","id":"13111","runtime":0,"imdbId":"tt1055321","version":74,"lastModified":"1301421177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcb\/4bc93b31017a3c57fe018bcb\/ufc-72-victory-mid.jpg","title":"UFC 72: Victory","releaseDate":1181952000000,"language":"en","type":"Movie","_key":"54697"} +{"label":"Hector Ramirez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/147\/4c1e07e17b9aa126b9000147\/hector-ramirez-profile.jpg","version":21,"id":"85321","lastModified":"1301902171000","name":"Hector Ramirez","type":"Person","_key":"54698"} +{"label":"Clayton Guida","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f0\/4c1df2fc7b9aa118150001f0\/clay-guida-profile.jpg","version":40,"id":"83386","lastModified":"1301902517000","name":"Clayton Guida","type":"Person","_key":"54699"} +{"label":"Scott Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04a\/4c1e01947b9aa1296300004a\/scott-smith-profile.jpg","version":23,"id":"78454","lastModified":"1301902175000","name":"Scott Smith","type":"Person","_key":"54700"} +{"label":"Rory Singer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/072\/4c1e07c37b9aa12962000072\/rory-singer-profile.jpg","version":20,"id":"85322","lastModified":"1301902171000","name":"Rory Singer","type":"Person","_key":"54701"} +{"label":"Colin Robinson","version":19,"id":"85324","lastModified":"1301902249000","name":"Colin Robinson","type":"Person","_key":"54702"} +{"label":"Stevie Lynch","version":19,"id":"85325","lastModified":"1301902249000","name":"Stevie Lynch","type":"Person","_key":"54703"} +{"label":"Jason Tan","version":20,"id":"85326","lastModified":"1301902362000","name":"Jason Tan","type":"Person","_key":"54704"} +{"label":"UFC 71: Liddell vs. Jackson","description":"UFC 71: Liddell vs. Jackson was a mixed martial arts event held by the Ultimate Fighting Championship. The event took place on Saturday, May 26, 2007 at the MGM Grand Garden Arena in Las Vegas, Nevada. The main event was the rematch between UFC Light Heavyweight Champion \"The Iceman\" Chuck Liddell and Quinton \"Rampage\" Jackson. Jackson was the only fighter to have an unavenged win against Liddell.","id":"13112","runtime":0,"imdbId":"tt1039996","version":89,"lastModified":"1301907260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd4\/4bc93b35017a3c57fe018bd4\/ufc-71-liddell-vs-jackson-mid.jpg","title":"UFC 71: Liddell vs. Jackson","releaseDate":1180137600000,"language":"en","type":"Movie","_key":"54705"} +{"label":"Josh Burkman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4c1e07a37b9aa1296300007d\/josh-burkman-profile.jpg","version":25,"id":"85250","lastModified":"1301901985000","name":"Josh Burkman","type":"Person","_key":"54706"} +{"label":"Terry Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/078\/4c1e078a7b9aa12963000078\/terry-martin-profile.jpg","version":26,"id":"85327","lastModified":"1301901985000","name":"Terry Martin","type":"Person","_key":"54707"} +{"label":"Ivan Salaverry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1aa\/4c1e07567b9aa11e950001aa\/ivan-salaverry-profile.jpg","version":26,"id":"85328","lastModified":"1301902517000","name":"Ivan Salaverry","type":"Person","_key":"54708"} +{"label":"James Irvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ce\/4c1df29e7b9aa118260001ce\/james-irvin-profile.jpg","version":29,"id":"85198","lastModified":"1301902706000","name":"James Irvin","type":"Person","_key":"54709"} +{"label":"Sean Salmon","version":19,"id":"85330","lastModified":"1301902466000","name":"Sean Salmon","type":"Person","_key":"54710"} +{"label":"Jeremy Stephens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/692\/4c0895ee017a3c29a6000692\/jeremy-stephens-profile.jpg","version":32,"id":"85331","lastModified":"1301901850000","name":"Jeremy Stephens","type":"Person","_key":"54711"} +{"label":"Din Thomas","version":28,"id":"85332","lastModified":"1301902635000","name":"Din Thomas","type":"Person","_key":"54712"} +{"label":"Carmelo Marrero","version":23,"id":"83428","lastModified":"1301902249000","name":"Carmelo Marrero","type":"Person","_key":"54713"} +{"label":"UFC 70: Nations Collide","description":"UFC 70 was the second UFC event held in the United Kingdom, and the first in Manchester. The first UFC event in the UK was UFC 38: Brawl at the Hall on July 13, 2002. UFC 70 was also only the seventh UFC event held outside the United States, and the first since UFC 38. The card was broadcast live on pay-per-view in the United Kingdom and Ireland on Setanta Sports.","id":"13113","runtime":0,"imdbId":"tt1017466","version":84,"lastModified":"1301906061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdd\/4bc93b36017a3c57fe018bdd\/ufc-70-nations-collide-mid.jpg","genre":"Sports Film","title":"UFC 70: Nations Collide","releaseDate":1177113600000,"language":"en","type":"Movie","_key":"54714"} +{"label":"Andrei Arlovski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/254\/4c1e095b7b9aa11815000254\/andrei-arlovski-profile.jpg","version":48,"birthday":"286930800000","id":"78552","birthplace":"Minsk, Byelorussian SSR, Soviet Union","lastModified":"1301901508000","name":"Andrei Arlovski","type":"Person","_key":"54715"} +{"label":"Elvis Sinosic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25a\/4c1e09897b9aa1181500025a\/elvis-sinosic-profile.jpg","version":24,"id":"83575","lastModified":"1301902706000","name":"Elvis Sinosic","type":"Person","_key":"54716"} +{"label":"Assuerio Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/263\/4c1e09ef7b9aa117c8000263\/assuerio-silva-profile.jpg","version":24,"id":"85262","lastModified":"1301902170000","name":"Assuerio Silva","type":"Person","_key":"54717"} +{"label":"Dennis Siver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4c1df4697b9aa1296300000a\/dennis-siver-profile.jpg","version":25,"id":"89067","lastModified":"1301902696000","name":"Dennis Siver","type":"Person","_key":"54718"} +{"label":"UFC 69: Shootout","description":"UFC 69: Shootout was a mixed martial arts event held by the Ultimate Fighting Championship on Saturday, April 7, 2007 at the Toyota Center in Houston, Texas. UFC 69: Shootout was the first UFC event ever held in the state of Texas. The card was headlined by heavy favourite Georges St. Pierre defending his welterweight title against The Ultimate Fighter 4 welterweight winner Matt Serra.","id":"13114","runtime":0,"imdbId":"tt1003559","version":53,"lastModified":"1301908301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be6\/4bc93b36017a3c57fe018be6\/ufc-69-shootout-mid.jpg","title":"UFC 69: Shootout","releaseDate":1175731200000,"language":"en","type":"Movie","_key":"54719"} +{"label":"Leonard Garcia","version":25,"id":"78503","lastModified":"1301902170000","name":"Leonard Garcia","type":"Person","_key":"54720"} +{"label":"Luke Cummo","version":20,"id":"89068","lastModified":"1301903037000","name":"Luke Cummo","type":"Person","_key":"54721"} +{"label":"Josh Haynes","version":20,"id":"89069","lastModified":"1301903037000","name":"Josh Haynes","type":"Person","_key":"54722"} +{"label":"UFC 68: The Uprising","description":"UFC 68: The Uprising was a mixed martial arts event held by the Ultimate Fighting Championship on March 3, 2007 at the Nationwide Arena in Columbus, Ohio. UFC 68 was the first UFC event held in the state of Ohio, and coincided with the 2007 Arnold Sports Festival. The sold-out event produced the highest verifiable live attendance for a mixed martial arts event in North America.","id":"13115","runtime":0,"imdbId":"tt0978841","version":79,"lastModified":"1301906609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bef\/4bc93b37017a3c57fe018bef\/ufc-68-the-uprising-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 68: The Uprising","releaseDate":1172880000000,"language":"en","type":"Movie","_key":"54723"} +{"label":"Drew McFedries","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4c1dfe2c7b9aa1296300003d\/drew-mcfedries-profile.jpg","version":24,"id":"82918","lastModified":"1301902517000","name":"Drew McFedries","type":"Person","_key":"54724"} +{"label":"Renato Sobral","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21b\/4c162bd65e73d64a2400021b\/renato-sobral-profile.jpg","version":30,"id":"78555","lastModified":"1301901986000","name":"Renato Sobral","type":"Person","_key":"54725"} +{"label":"UFC 67: All or Nothing","description":"UFC 67: All or Nothing was a mixed martial arts event held by Ultimate Fighting Championship. The event was held Saturday, February 3, 2007 at the Mandalay Bay Events Center on the Las Vegas Strip in Nevada. It was also the first UFC pay-per-view broadcast in High-Definition. This event was the first UFC pay-per-view event since UFC 60 to have no championship bouts on the card.","id":"13116","runtime":0,"imdbId":"tt0960869","version":101,"lastModified":"1301906554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfc\/4bc93b3a017a3c57fe018bfc\/ufc-67-all-or-nothing-mid.jpg","title":"UFC 67: All or Nothing","releaseDate":1170460800000,"language":"en","type":"Movie","_key":"54726"} +{"label":"John Halverson","version":19,"id":"89070","lastModified":"1301902892000","name":"John Halverson","type":"Person","_key":"54727"} +{"label":"Marvin Eastman","version":21,"id":"85679","lastModified":"1301902466000","name":"Marvin Eastman","type":"Person","_key":"54728"} +{"label":"UFC 66: Liddell vs. Ortiz","description":"UFC 66: Liddell vs. Ortiz was a mixed martial arts event held by the Ultimate Fighting Championship on December 30, 2006. UFC 66's main event was a championship fight with two of the UFC's biggest light heavyweight stars, Light Heavyweight Champion Chuck Liddell defending his title against former champion Tito Ortiz. The co-main event saw Forrest Griffin take on 'The Dean Of Mean' Keith Jardine.","id":"13117","runtime":0,"imdbId":"tt0960868","version":94,"lastModified":"1301904671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c05\/4bc93b3b017a3c57fe018c05\/ufc-66-liddell-vs-ortiz-mid.jpg","title":"UFC 66: Liddell vs. Ortiz","releaseDate":1167436800000,"language":"en","type":"Movie","_key":"54729"} +{"label":"Marcio Cruz","version":20,"id":"86119","lastModified":"1301902328000","name":"Marcio Cruz","type":"Person","_key":"54730"} +{"label":"Tony DeSouza","version":21,"id":"89071","lastModified":"1301902892000","name":"Tony DeSouza","type":"Person","_key":"54731"} +{"label":"Feuer \u00fcber Deutschland 2","description":"No overview found.","id":"13118","runtime":332,"homepage":"http:\/\/www.diaspo.de\/feuerueberdeutschland2\/","version":491,"lastModified":"1301418301000","title":"Feuer \u00fcber Deutschland 2","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54732"} +{"label":"Hank and Mike","description":"Two blue-collar Easter Bunnies get fired and try their hand at an assortment of odd jobs, failing at each. Fighting depression, debt and eventually each other, their lives start to unravel until they realize that without their job they are nothing.","id":"13119","runtime":86,"imdbId":"tt0814131","trailer":"http:\/\/www.youtube.com\/watch?v=1040","version":106,"lastModified":"1301903972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b8\/4c821f825e73d65af10000b8\/hank-and-mike-mid.jpg","genre":"Comedy","title":"Hank and Mike","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"54733"} +{"label":"Thomas Michael","version":18,"id":"78464","lastModified":"1301901812000","name":"Thomas Michael","type":"Person","_key":"54734"} +{"label":"Paolo Mancini","version":17,"id":"78465","lastModified":"1301901535000","name":"Paolo Mancini","type":"Person","_key":"54735"} +{"label":"Maggie Castle","version":32,"id":"41743","lastModified":"1302064821000","name":"Maggie Castle","type":"Person","_key":"54736"} +{"label":"In Search of a Midnight Kiss","description":"Broke and alone on New Year's Eve, Wilson (Scoot McNairy) just wants to spend the rest of a very bad year in bed. But, when his best friend convinces him to post a personal ad, he meets a woman (Sara Simmonds) bent on finding the right guy to be with at midnight.","id":"13120","runtime":90,"imdbId":"tt0989000","trailer":"http:\/\/www.youtube.com\/watch?v=q7a-XW6zQF4","version":134,"lastModified":"1301904299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c27\/4bc93b3d017a3c57fe018c27\/in-search-of-a-midnight-kiss-mid.jpg","genre":"Comedy","title":"In Search of a Midnight Kiss","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"54737"} +{"label":"Alex Holdridge","version":21,"id":"84719","lastModified":"1301902537000","name":"Alex Holdridge","type":"Person","_key":"54738"} +{"label":"Teeth","description":"Still a stranger to her own body, a high school student discovers she has a physical advantage when she becomes the object of male violence.","id":"13121","runtime":94,"imdbId":"tt0780622","version":203,"lastModified":"1301904486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c30\/4bc93b41017a3c57fe018c30\/teeth-mid.jpg","studio":"Teeth","genre":"Comedy","title":"Teeth","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"54739"} +{"label":"Jess Weixler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21c\/4cc83e865e73d6502100021c\/jess-weixler-profile.jpg","version":25,"birthday":"360799200000","id":"76999","birthplace":"Louisville, Kentucky, USA","lastModified":"1301901259000","name":"Jess Weixler","type":"Person","_key":"54740"} +{"label":"John Hensley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/320\/4cb1b3a57b9aa1263f000320\/john-hensley-profile.jpg","version":25,"id":"74427","lastModified":"1301901377000","name":"John Hensley","type":"Person","_key":"54741"} +{"label":"Hale Appleman","version":22,"id":"77000","lastModified":"1301901645000","name":"Hale Appleman","type":"Person","_key":"54742"} +{"label":"Vivienne Benesch","version":22,"id":"77001","lastModified":"1301901991000","name":"Vivienne Benesch","type":"Person","_key":"54743"} +{"label":"Ashley Springer","version":24,"id":"77002","lastModified":"1301901722000","name":"Ashley Springer","type":"Person","_key":"54744"} +{"label":"The People Under the Stairs","description":"The People Under the Stairs is the story of a young boy (Fool) from the ghetto and takes place on his 13th birthday. In an attempted burglary (along with two others) of the home of his family's evil landlords, he becomes trapped inside their large suburban house and discovers the secret of the \"children\" that the insane \"Mom\" and \"Dad\" have been \"rearing\" under the stairs.","id":"13122","runtime":102,"imdbId":"tt0105121","version":172,"lastModified":"1301905077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3e\/4bc93b42017a3c57fe018c3e\/the-people-under-the-stairs-mid.jpg","genre":"Comedy","title":"The People Under the Stairs","releaseDate":688953600000,"language":"en","type":"Movie","_key":"54745"} +{"label":"Everett McGill","version":6,"id":"228318","lastModified":"1301904046000","name":"Everett McGill","type":"Person","_key":"54746"} +{"label":"Wendy Robie","version":6,"id":"228319","lastModified":"1301904049000","name":"Wendy Robie","type":"Person","_key":"54747"} +{"label":"Aamir","description":"A doctor of Indian origin returning to Mumbai from London is forced to participate in a terrorist plot.","id":"13123","runtime":0,"imdbId":"tt1241195","version":97,"lastModified":"1301417733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c50\/4bc93b43017a3c57fe018c50\/aamir-mid.jpg","genre":"Thriller","title":"Aamir","releaseDate":1212710400000,"language":"en","type":"Movie","_key":"54748"} +{"label":"Karate Bear Fighter","description":"No overview found.","id":"13124","runtime":0,"imdbId":"tt0188799","version":71,"lastModified":"1300979559000","title":"Karate Bear Fighter","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54749"} +{"label":"Karate Bull Fighter","description":"No overview found.","id":"13125","runtime":0,"imdbId":"tt0165348","version":219,"lastModified":"1300979560000","title":"Karate Bull Fighter","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54750"} +{"label":"Karate for Life","description":"No overview found.","id":"13126","runtime":91,"imdbId":"tt0403524","version":324,"lastModified":"1302019964000","genre":"Action","title":"Karate for Life","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"54751"} +{"label":"Kill Zone","description":"Chan, an articulate senior detective nearing the end of his career, is taking care of the daughter of a witness killed by ruthless crime lord Po. Martial arts expert Ma is set to take over as head of the crime unit, replacing Chan who wants an early retirement.","id":"13127","runtime":93,"imdbId":"tt0478024","trailer":"http:\/\/www.youtube.com\/watch?v=1012","version":155,"lastModified":"1301903238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7a\/4bc93b46017a3c57fe018c7a\/saat-po-long-mid.jpg","studio":"Abba Movies Co. Ltd.","genre":"Action","title":"Kill Zone","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"54752"} +{"label":"Jacky Wu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4bce994d017a3c487200009d\/wu-jing-profile.jpg","version":31,"id":"78871","lastModified":"1301901583000","name":"Jacky Wu","type":"Person","_key":"54753"} +{"label":"Ken Chang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09f\/4bce99b2017a3c486c00009f\/ken-chang-profile.jpg","version":20,"id":"78872","lastModified":"1301901833000","name":"Ken Chang","type":"Person","_key":"54754"} +{"label":"Sweet Rain","description":"Chiba (Takeshi Kaneshiro) appears seven days before a person dies an unexpected death. His job is to observe the person for seven days, and then decide either to \u2018execute\u2019 or \u2018pass over\u2019. Getting his work quickly out of the way, he goes to the listening booth of a CD shop and indulges in his favorite pastime, listening to \u2018humanity\u2019s greatest invention\u2019: music. He is...a Grim Reaper. Today, again, in the rain, he waits. His subject, her death due in seven days, is Kazue Fujiki (Manami Konishi), ","id":"13128","runtime":113,"imdbId":"tt1067086","version":99,"lastModified":"1301516806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8b\/4bc93b48017a3c57fe018c8b\/sweet-rain-mid.jpg","title":"Sweet Rain","releaseDate":1208822400000,"language":"en","type":"Movie","_key":"54755"} +{"label":"Sumiko Fuji","version":25,"id":"142678","lastModified":"1301902712000","name":"Sumiko Fuji","type":"Person","_key":"54756"} +{"label":"Takuya Ishida","version":30,"id":"122469","lastModified":"1301901669000","name":"Takuya Ishida","type":"Person","_key":"54757"} +{"label":"Ken Mitsuishi","version":26,"id":"120351","lastModified":"1301901422000","name":"Ken Mitsuishi","type":"Person","_key":"54758"} +{"label":"Jun Murakami","version":23,"id":"9671","lastModified":"1301901943000","name":"Jun Murakami","type":"Person","_key":"54759"} +{"label":"Erika Okuda","version":16,"id":"146250","lastModified":"1301902667000","name":"Erika Okuda","type":"Person","_key":"54760"} +{"label":"Artie Lange: It's the Whiskey Talkin'","description":"No overview found.","id":"13129","runtime":47,"imdbId":"tt0432719","version":226,"lastModified":"1301121960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c94\/4bc93b48017a3c57fe018c94\/it-s-the-whiskey-talkin-artie-lange-mid.jpg","title":"Artie Lange: It's the Whiskey Talkin'","releaseDate":1107820800000,"language":"en","type":"Movie","_key":"54761"} +{"label":"UFC 65: Bad Intentions","description":"UFC 65: Bad Intentions was a mixed martial arts competition held by the Ultimate Fighting Championship on November 18, 2006 at the ARCO Arena in Sacramento, California \u2013 the UFC\u2019s first show at this venue. The card featured the anticipated rematch between Matt Hughes and Georges St. Pierre for the UFC Welterweight Championship \u2013 a fight originally scheduled for UFC 63.","id":"13131","runtime":0,"imdbId":"tt0910961","version":78,"lastModified":"1301906061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca2\/4bc93b4c017a3c57fe018ca2\/ufc-65-bad-intentions-mid.jpg","title":"UFC 65: Bad Intentions","releaseDate":1163808000000,"language":"en","type":"Movie","_key":"54762"} +{"label":"Jeff Monson","version":26,"id":"85256","lastModified":"1301902328000","name":"Jeff Monson","type":"Person","_key":"54763"} +{"label":"Dokonjonosuke Mishima","version":19,"id":"89072","lastModified":"1301902635000","name":"Dokonjonosuke Mishima","type":"Person","_key":"54764"} +{"label":"Sherman Pendergarst","version":19,"id":"89073","lastModified":"1301902892000","name":"Sherman Pendergarst","type":"Person","_key":"54765"} +{"label":"All the Real Girls","description":"In a small North Carolina town, Paul, a womanizer, meets Noel, a confused intellectual returning home for the first time in years since she left for boarding school. The film depicts the typical romance of a good girl and a bad boy, in an interesting way.","id":"13132","runtime":108,"imdbId":"tt0299458","homepage":"http:\/\/www.sonyclassics.com\/alltherealgirls\/","version":151,"lastModified":"1301904054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc7\/4bc93b4f017a3c57fe018cc7\/all-the-real-girls-mid.jpg","studio":"Jean Doumanian Productions","genre":"Drama","title":"All the Real Girls","releaseDate":1059696000000,"language":"en","type":"Movie","_key":"54766"} +{"label":"UFC 64: Unstoppable","description":"UFC 64: Unstoppable was a mixed martial arts event held by the Ultimate Fighting Championship on Saturday, October 14, 2006. The event took place at the Mandalay Bay Events Center. The card centered on a UFC Middleweight Championship defense by Rich Franklin against highly-touted Anderson Silva, Franklin's first defense in 7 months.","id":"13133","runtime":0,"imdbId":"tt0891354","version":85,"lastModified":"1301904009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd5\/4bc93b50017a3c57fe018cd5\/ufc-64-unstoppable-mid.jpg","title":"UFC 64: Unstoppable","releaseDate":1160784000000,"language":"en","type":"Movie","_key":"54767"} +{"label":"Dan Lauzon","version":19,"id":"89075","lastModified":"1301902892000","name":"Dan Lauzon","type":"Person","_key":"54768"} +{"label":"Justin James","version":19,"id":"89076","lastModified":"1301902635000","name":"Justin James","type":"Person","_key":"54769"} +{"label":"UFC 63: Hughes vs. Penn","description":"UFC 63: Hughes vs. Penn was a mixed martial arts event held by the Ultimate Fighting Championship on September 23, 2006. The event, originally subtitled \"Hughes vs. St. Pierre,\" was scheduled to feature a UFC Welterweight Title match between champion Matt Hughes and Georges St.-Pierre. Nevertheless, a groin injury\u2014which was reported early in August\u2014forced St.-Pierre off the card.","id":"13134","runtime":0,"imdbId":"tt0865359","version":74,"lastModified":"1301908376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cde\/4bc93b51017a3c57fe018cde\/ufc-63-hughes-vs-penn-mid.jpg","title":"UFC 63: Hughes vs. Penn","releaseDate":1158969600000,"language":"en","type":"Movie","_key":"54770"} +{"label":"David Loiseau","version":27,"id":"85195","lastModified":"1301902477000","name":"David Loiseau","type":"Person","_key":"54771"} +{"label":"Gabe Ruediger","version":19,"id":"89077","lastModified":"1301902635000","name":"Gabe Ruediger","type":"Person","_key":"54772"} +{"label":"Jens Pulver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02a\/4c162b037b9aa108ae00002a\/jens-pulver-profile.jpg","version":29,"id":"78511","lastModified":"1301901986000","name":"Jens Pulver","type":"Person","_key":"54773"} +{"label":"Mario Neto","version":19,"id":"89078","lastModified":"1301902635000","name":"Mario Neto","type":"Person","_key":"54774"} +{"label":"David Lee","version":15,"id":"89079","lastModified":"1301902635000","name":"David Lee","type":"Person","_key":"54775"} +{"label":"High Tech Soul: The Creation of Techno Music","description":"HIGH TECH SOUL is the first documentary to tackle the deep roots of techno music alongside the cultural history of Detroit, its birthplace. From the race riots of 1967 to the underground party scene of the late 1980s, Detroit's economic downturn didn't stop the invention of a new kind of music that brought international attention to its producers and their hometown.","id":"13135","runtime":64,"imdbId":"tt0877337","trailer":"http:\/\/www.youtube.com\/watch?v=VzTi_H1uSKs","version":62,"lastModified":"1301904713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce7\/4bc93b52017a3c57fe018ce7\/high-tech-soul-the-creation-of-techno-music-mid.jpg","genre":"Documentary","title":"High Tech Soul: The Creation of Techno Music","releaseDate":1158624000000,"language":"en","type":"Movie","_key":"54776"} +{"label":"Armin Only: Imagine","description":"Armin Only is a Dutch all-night dance event featuring solo performance by Armin van Buuren. The event consists of various genres of electronic dance music (but most predominantly Trance Music), light, laser and firework shows and supporting acts of singers\/vocalists like Racoon (2005 edition), Ilse de Lange (2006 edition) and Audrey Gallagher performing 'Big Sky' by John O'Callaghan.\r\n","id":"13136","runtime":120,"homepage":"http:\/\/www.arminvanbuuren.com\/","version":75,"lastModified":"1301906152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfc\/4bc93b56017a3c57fe018cfc\/armin-only-imagine-mid.jpg","genre":"Musical","title":"Armin Only: Imagine","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"54777"} +{"label":"Armin van Buuren","version":25,"id":"74243","lastModified":"1301901348000","name":"Armin van Buuren","type":"Person","_key":"54778"} +{"label":"A Very British Gangster","description":"A documentary about one of Britain's most dangerous crime families and introduces us to its magnetic, larger-than-life leader, Dominic Noonan (aka Lattlay Fottfoy).","id":"13137","runtime":97,"imdbId":"tt0924165","version":356,"lastModified":"1301905196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d09\/4bc93b57017a3c57fe018d09\/a-very-british-gangster-mid.jpg","genre":"Documentary","title":"A Very British Gangster","releaseDate":1169164800000,"language":"en","tagline":"Look after those that look after you F*ck off those that f*ck off you","type":"Movie","_key":"54779"} +{"label":"Lilla J\u00f6nssonligan och stj\u00e4rnkuppen","description":"No overview found.","id":"13138","runtime":74,"imdbId":"tt0497932","version":26,"lastModified":"1300979562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38f\/4bf1deca017a3c320b00038f\/lilla-jonssonligan-stjarnkuppen-mid.jpg","genre":"Comedy","title":"Lilla J\u00f6nssonligan och stj\u00e4rnkuppen","releaseDate":1138320000000,"language":"en","type":"Movie","_key":"54780"} +{"label":"Mikael Lidgard","version":20,"id":"74244","lastModified":"1301902348000","name":"Mikael Lidgard","type":"Person","_key":"54781"} +{"label":"Kenny","description":"From the biggest festival to the smallest church social, Kenny Smyth delivers porta-loos to them all. Ignored and unappreciated, he is one of the cogs in society's machinery; a knight in shining overalls taking care of business with his faithful 'Splashdown' crew.","id":"13140","runtime":99,"imdbId":"tt0822389","homepage":"http:\/\/www.kennythemovie.com\/","version":95,"lastModified":"1301903861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4cb455bb7b9aa135c0000047\/kenny-mid.jpg","genre":"Comedy","title":"Kenny","releaseDate":1155772800000,"language":"en","type":"Movie","_key":"54782"} +{"label":"Shane Jacobson","version":28,"id":"74245","lastModified":"1301904134000","name":"Shane Jacobson","type":"Person","_key":"54783"} +{"label":"Strangers with Candy","description":"A prequel to the critically acclaimed series featuring Jerri Blank, a 46 year-old ex-junkie, ex-con who returns to high school in a bid to start her life over.","id":"13141","runtime":97,"imdbId":"tt0369994","trailer":"http:\/\/www.youtube.com\/watch?v=683","version":186,"lastModified":"1301903905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d43\/4bc93b5e017a3c57fe018d43\/strangers-with-candy-mid.jpg","studio":"Comedy Central","title":"Strangers with Candy","releaseDate":1154044800000,"language":"en","type":"Movie","_key":"54784"} +{"label":"Paul Dinello","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/705\/4d8bc6d45e73d6551b000705\/paul-dinello-profile.jpg","version":35,"id":"40250","lastModified":"1301902028000","name":"Paul Dinello","type":"Person","_key":"54785"} +{"label":"Greg Hollimon","version":22,"id":"74246","lastModified":"1301902249000","name":"Greg Hollimon","type":"Person","_key":"54786"} +{"label":"Chandra Wilson","version":13,"id":"171075","lastModified":"1301903595000","name":"Chandra Wilson","type":"Person","_key":"54787"} +{"label":"Elisabeth Harnois","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bad\/4d90c52b5e73d65f11002bad\/elisabeth-harnois-profile.jpg","version":34,"id":"78197","lastModified":"1301901531000","name":"Elisabeth Harnois","type":"Person","_key":"54788"} +{"label":"Dolores Duffy","version":12,"id":"212718","lastModified":"1301903743000","name":"Dolores Duffy","type":"Person","_key":"54789"} +{"label":"Sarah Thyre","version":13,"id":"185801","lastModified":"1301903235000","name":"Sarah Thyre","type":"Person","_key":"54790"} +{"label":"UFC 89: Bisping vs. Leben","description":"UFC 89: Bisping vs. Leben was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on October 18, 2008 at the National Indoor Arena in Birmingham, England.\n\nThe event was headlined by a middleweight bout between Michael Bisping and Chris Leben.","id":"13142","runtime":0,"imdbId":"tt1355228","version":91,"lastModified":"1301905629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc93b66017a3c57fe018d61\/ufc-89-bisping-vs-leben-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 89: Bisping vs. Leben","releaseDate":1224288000000,"language":"en","type":"Movie","_key":"54791"} +{"label":"Per Eklund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03f\/4c1e067e7b9aa1295800003f\/per-eklund-profile.jpg","version":16,"id":"78910","lastModified":"1301902355000","name":"Per Eklund","type":"Person","_key":"54792"} +{"label":"David Bielkheden","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/239\/4c1e06507b9aa11815000239\/david-bielkheden-profile.jpg","version":16,"id":"78911","lastModified":"1301901671000","name":"David Bielkheden","type":"Person","_key":"54793"} +{"label":"Luiz Cane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e3\/4c1df89a7b9aa118260001e3\/luiz-arthur-cane-profile.jpg","version":19,"id":"83510","lastModified":"1301902204000","name":"Luiz Cane","type":"Person","_key":"54794"} +{"label":"UFC 62: Liddell vs. Sobral","description":"UFC 62: Liddell vs. Sobral was a mixed martial arts event held by the Ultimate Fighting Championship on August 26, 2006. The main event was a Light Heavyweight Title fight between Chuck 'The Iceman' Liddell and Renato 'Babalu' Sobral and the co-main event was a TUF finale re-match between Forrest Griffin and the 'American Psycho' Stephan Bonnar.","id":"13143","runtime":0,"imdbId":"tt0847533","version":89,"lastModified":"1301907259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6a\/4bc93b67017a3c57fe018d6a\/ufc-62-liddell-vs-sobral-mid.jpg","title":"UFC 62: Liddell vs. Sobral","releaseDate":1156550400000,"language":"en","type":"Movie","_key":"54795"} +{"label":"Nick Diaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b9\/4cbeaf3a7b9aa138d80017b9\/nick-diaz-profile.jpg","version":36,"id":"85193","lastModified":"1301902505000","name":"Nick Diaz","type":"Person","_key":"54796"} +{"label":"Josh Neer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ea\/4c1df9ff7b9aa118260001ea\/josh-neer-profile.jpg","version":38,"id":"85251","lastModified":"1301902355000","name":"Josh Neer","type":"Person","_key":"54797"} +{"label":"Christian Wellisch","version":19,"id":"89080","lastModified":"1301902466000","name":"Christian Wellisch","type":"Person","_key":"54798"} +{"label":"Jamie Varner","version":27,"id":"89081","lastModified":"1301903010000","name":"Jamie Varner","type":"Person","_key":"54799"} +{"label":"Rob MacDonald","version":20,"id":"89082","lastModified":"1301902466000","name":"Rob MacDonald","type":"Person","_key":"54800"} +{"label":"Wes Combs","version":19,"id":"89083","lastModified":"1301902892000","name":"Wes Combs","type":"Person","_key":"54801"} +{"label":"UFC 61: Bitter Rivals","description":"UFC 61: Bitter Rivals was a mixed martial arts event held by the Ultimate Fighting Championship on Saturday, July 8, 2006. The main event was a Heavyweight Championship match between champion Tim Sylvia and former champion Andrei Arlovski. The co-main event was the highly anticipated re-match of TUF 3 coaches Tito Ortiz and Ken Shamrock.","id":"13144","runtime":0,"imdbId":"tt0828123","version":118,"lastModified":"1301908301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d77\/4bc93b67017a3c57fe018d77\/ufc-61-bitter-rivals-mid.jpg","title":"UFC 61: Bitter Rivals","releaseDate":1152316800000,"language":"en","type":"Movie","_key":"54802"} +{"label":"Ken Shamrock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4c161e397b9aa105e00000db\/ken-shamrock-profile.jpg","version":37,"id":"81978","lastModified":"1301901809000","name":"Ken Shamrock","type":"Person","_key":"54803"} +{"label":"Dan Christison","version":19,"id":"85252","lastModified":"1301902249000","name":"Dan Christison","type":"Person","_key":"54804"} +{"label":"Yves Edwards","version":30,"id":"85253","lastModified":"1301902249000","name":"Yves Edwards","type":"Person","_key":"54805"} +{"label":"Joe Jordan","version":20,"id":"85255","lastModified":"1301902526000","name":"Joe Jordan","type":"Person","_key":"54806"} +{"label":"Anthony Perosh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b02\/4c0a99ba017a3c3519000b02\/anthony-perosh-profile.jpg","version":22,"id":"85257","lastModified":"1301902074000","name":"Anthony Perosh","type":"Person","_key":"54807"} +{"label":"Gilbert Aldana","version":21,"id":"85258","lastModified":"1301902706000","name":"Gilbert Aldana","type":"Person","_key":"54808"} +{"label":"Drew Fickett","version":27,"id":"85194","lastModified":"1301902553000","name":"Drew Fickett","type":"Person","_key":"54809"} +{"label":"UFC 60: Hughes vs. Gracie","description":"UFC 60: Hughes vs. Gracie was a mixed martial arts event held by the Ultimate Fighting Championship on May 27, 2006. Headlining the card was a non-title catch-weight (175 lb) match between Matt Hughes, former UFC Welterweight Champion, and Royce Gracie, the champion of UFC 1, UFC 2 and UFC 4. This was Gracie's first match in the UFC and in the United States since UFC 5.","id":"13145","runtime":0,"imdbId":"tt0811129","version":97,"lastModified":"1301907098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d80\/4bc93b68017a3c57fe018d80\/ufc-60-hughes-vs-gracie-mid.jpg","genre":"Sports Film","title":"UFC 60: Hughes vs. Gracie","releaseDate":1148688000000,"language":"en","type":"Movie","_key":"54810"} +{"label":"Royce Gracie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c161ebf7b9aa108ae00000c\/royce-gracie-profile.jpg","version":28,"id":"81977","lastModified":"1301902518000","name":"Royce Gracie","type":"Person","_key":"54811"} +{"label":"Dean Lister","version":22,"id":"85259","lastModified":"1301902362000","name":"Dean Lister","type":"Person","_key":"54812"} +{"label":"John Alessio","version":16,"id":"85261","lastModified":"1301902635000","name":"John Alessio","type":"Person","_key":"54813"} +{"label":"Joe Riggs","version":26,"id":"85243","lastModified":"1301902678000","name":"Joe Riggs","type":"Person","_key":"54814"} +{"label":"Chael Sonnen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b3a\/4c0a9b08017a3c7e86000b3a\/chael-sonnen-profile.jpg","version":28,"id":"82920","lastModified":"1301902713000","name":"Chael Sonnen","type":"Person","_key":"54815"} +{"label":"Fabiano Scherner","version":23,"id":"85263","lastModified":"1301902706000","name":"Fabiano Scherner","type":"Person","_key":"54816"} +{"label":"UFC 59: Reality Check","description":"UFC 59: Reality Check was a mixed martial arts event held by the Ultimate Fighting Championship on April 15, 2006 at Arrowhead Pond, in Anaheim, California, and broadcast live on pay-per-view in the United States and Canada.\n\nThis was the first-ever UFC event held in California after the state's legalization of mixed martial arts contests.","id":"13146","runtime":0,"imdbId":"tt0795487","version":86,"lastModified":"1301907259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d89\/4bc93b69017a3c57fe018d89\/ufc-59-reality-check-mid.jpg","title":"UFC 59: Reality Check","releaseDate":1145059200000,"language":"en","type":"Movie","_key":"54817"} +{"label":"Justin Levens","version":19,"id":"89219","lastModified":"1301902892000","name":"Justin Levens","type":"Person","_key":"54818"} +{"label":"Nick Thompson","version":19,"id":"85248","lastModified":"1301902635000","name":"Nick Thompson","type":"Person","_key":"54819"} +{"label":"UFC 58: USA vs. Canada","description":"UFC 58: USA vs Canada was a mixed martial arts event held by the Ultimate Fighting Championship on March 4, 2006.Five of the seven Canadian fighters featured, Icho Larenas, Sam Stout, Mark Hominick, Georges St. Pierre, and David Loiseau, were at the time champions in the Canadian TKO Major League MMA promotion. Each fight featured an American fighter against a Canadian fighter.","id":"13147","runtime":0,"imdbId":"tt0783602","version":86,"lastModified":"1301908300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d92\/4bc93b6c017a3c57fe018d92\/ufc-58-usa-vs-canada-mid.jpg","title":"UFC 58: USA vs. Canada","releaseDate":1141430400000,"language":"en","type":"Movie","_key":"54820"} +{"label":"Steve Vigneault","version":19,"id":"89221","lastModified":"1301902466000","name":"Steve Vigneault","type":"Person","_key":"54821"} +{"label":"Mark Hominick","version":25,"id":"89222","lastModified":"1301902415000","name":"Mark Hominick","type":"Person","_key":"54822"} +{"label":"Icho Larenas","version":19,"id":"89223","lastModified":"1301902635000","name":"Icho Larenas","type":"Person","_key":"54823"} +{"label":"Tom Murphy","version":27,"id":"87907","lastModified":"1301902322000","name":"Tom Murphy","type":"Person","_key":"54824"} +{"label":"UFC 57: Liddell vs. Couture 3","description":"UFC 57: Liddell vs. Couture 3 was a mixed martial arts event held by the Ultimate Fighting Championship on February 4, 2006. It was held at the Mandalay Bay Events Center on the Las Vegas Strip in Nevada, and broadcasted live on pay-per-view in the United States.\n\nHeadlining were top UFC stars and former coaches of The Ultimate Fighter Chuck Liddell and Randy Couture.","id":"13148","runtime":0,"imdbId":"tt0775555","version":75,"lastModified":"1301907390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9b\/4bc93b6d017a3c57fe018d9b\/ufc-57-liddell-vs-couture-3-mid.jpg","title":"UFC 57: Liddell vs. Couture 3","releaseDate":1139011200000,"language":"en","type":"Movie","_key":"54825"} +{"label":"Justin Eilers","version":23,"id":"85192","lastModified":"1301902328000","name":"Justin Eilers","type":"Person","_key":"54826"} +{"label":"Mike Van Arsdale","version":20,"id":"89224","lastModified":"1301902988000","name":"Mike Van Arsdale","type":"Person","_key":"54827"} +{"label":"Paul Buentello","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ca\/4c1df1637b9aa118260001ca\/paul-buentello-profile.jpg","version":27,"id":"85191","lastModified":"1301902696000","name":"Paul Buentello","type":"Person","_key":"54828"} +{"label":"Branden Lee Hinkle","version":21,"id":"86116","lastModified":"1301903037000","name":"Branden Lee Hinkle","type":"Person","_key":"54829"} +{"label":"UFC 56: Full Force","description":"UFC 56: Full Force was a mixed martial arts event held by the Ultimate Fighting Championship on November 19, 2005. Headlining the card were the two coaches from The Ultimate Fighter 2, Rich Franklin and Matt Hughes, scheduled to defend their middleweight and welterweight titles, respectively.","id":"13149","runtime":0,"imdbId":"tt0494283","version":109,"lastModified":"1301908423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da4\/4bc93b6d017a3c57fe018da4\/ufc-56-full-force-mid.jpg","genre":"Sports Film","title":"UFC 56: Full Force","releaseDate":1132358400000,"language":"en","type":"Movie","_key":"54830"} +{"label":"Kevin Jordan","version":23,"id":"85242","lastModified":"1301901814000","name":"Kevin Jordan","type":"Person","_key":"54831"} +{"label":"Trevor Prangley","version":29,"id":"85244","lastModified":"1301902688000","name":"Trevor Prangley","type":"Person","_key":"54832"} +{"label":"Sam Hoger","version":24,"id":"85245","lastModified":"1301902204000","name":"Sam Hoger","type":"Person","_key":"54833"} +{"label":"Jeff Newton","version":19,"id":"85246","lastModified":"1301902635000","name":"Jeff Newton","type":"Person","_key":"54834"} +{"label":"Ansar Chalangov","version":19,"id":"85247","lastModified":"1301902635000","name":"Ansar Chalangov","type":"Person","_key":"54835"} +{"label":"Pride and Glory","description":"A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.","id":"13150","runtime":125,"imdbId":"tt0482572","trailer":"http:\/\/www.youtube.com\/watch?v=A2Qu80hRoh4","homepage":"http:\/\/www.prideandglorymovie.com\/","version":267,"lastModified":"1301902121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db9\/4bc93b70017a3c57fe018db9\/pride-and-glory-mid.jpg","studio":"New Line Cinema","genre":"Crime","title":"Pride and Glory","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"54836"} +{"label":"Gavin O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5fc\/4d83e42b5e73d653aa0005fc\/gavin-o-connor-profile.jpg","version":38,"id":"77003","lastModified":"1301901414000","name":"Gavin O'Connor","type":"Person","_key":"54837"} +{"label":"Scooby-Doo on Zombie Island","description":"Get ready for far-out fun in Scooby-Doo's brand-new, feature-length, animated movie. Scooby-Doo, Shaggy, Velma, Daphne, and Fred reunite to solve the most frightfully funny mystery of their careers. The scream team's headed to a haunted bayou island to investigate the ghost of Moonscar the pirate. But it turns out the swashbuckler's spirit isn't the only creepy character on the island. The sleuths also meet up with cat creatures and zombies... and it looks like for the first time in their lives,","id":"13151","runtime":77,"imdbId":"tt0166792","version":109,"lastModified":"1301902894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcc\/4bc93b71017a3c57fe018dcc\/scooby-doo-on-zombie-island-mid.jpg","genre":"Family","title":"Scooby-Doo on Zombie Island","releaseDate":906422400000,"language":"en","type":"Movie","_key":"54838"} +{"label":"Not Bewitched XXX","description":"The 1970s TV show Bewitched gets the porn parody treatment. See a sexy Samantha, a randy Darrin and a fully blossomed, horny Tabitha. ","id":"13152","runtime":143,"imdbId":"tt1282224","version":51,"lastModified":"1301908315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de1\/4bc93b76017a3c57fe018de1\/not-bewitched-xxx-mid.jpg","studio":"Adam & Eve","genre":"Comedy","title":"Not Bewitched XXX","releaseDate":1222128000000,"language":"en","type":"Movie","_key":"54839"} +{"label":"Sunny Lane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/391\/4c48123a5e73d61efc000391\/sunny-lane-profile.jpg","version":22,"id":"74250","lastModified":"1301901196000","name":"Sunny Lane","type":"Person","_key":"54840"} +{"label":"Sasha Grey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/175\/4c337fd55e73d64965000175\/sasha-grey-profile.jpg","biography":"<FONT size=3><FONT face=Calibri><B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>Sasha Grey (born Marina Ann Hantzis<\/SPAN><\/B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN> on March 14, 1988) is an American pornographic actress who is also active in mainstream acting, modelin","version":70,"birthday":"574297200000","id":"74251","birthplace":"Sacramento, CA","lastModified":"1302078534000","name":"Sasha Grey","type":"Person","_key":"54841"} +{"label":"Nina Hartley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a0\/4c4816505e73d61efb0003a0\/nina-hartley-profile.jpg","version":41,"id":"74252","lastModified":"1301901455000","name":"Nina Hartley","type":"Person","_key":"54842"} +{"label":"Michelle Avanti","version":20,"id":"74253","lastModified":"1301901992000","name":"Michelle Avanti","type":"Person","_key":"54843"} +{"label":"Daisy McLane","version":20,"id":"74254","lastModified":"1301901991000","name":"Daisy McLane","type":"Person","_key":"54844"} +{"label":"Candice Nicole","version":21,"id":"74255","lastModified":"1301901996000","name":"Candice Nicole","type":"Person","_key":"54845"} +{"label":"Teagan Presley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07b\/4c36fc2e7b9aa105f900007b\/teagan-presley-profile.jpg","version":49,"birthday":"491004000000","id":"75928","birthplace":"The Woodlands, TX","lastModified":"1301901175000","name":"Teagan Presley","type":"Person","_key":"54846"} +{"label":"Will Ryder","version":22,"id":"74256","lastModified":"1301901816000","name":"Will Ryder","type":"Person","_key":"54847"} +{"label":"Rapid Fire","description":"College student Jake Lo is pursued by smugglers, mobsters and crooked federal agents after he witnesses a murder by a Mafia kingpin.","id":"13153","runtime":95,"imdbId":"tt0105219","version":110,"lastModified":"1301904387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dee\/4bc93b77017a3c57fe018dee\/rapid-fire-mid.jpg","genre":"Action","title":"Rapid Fire","releaseDate":714355200000,"language":"en","type":"Movie","_key":"54848"} +{"label":"Showdown in Little Tokyo","description":"For 400 years, Japan has been home to a secret criminal organization dedicated to its own supremacy in the underworld. Ruled by an ancient, arcane code of honor, the deadly Yakuza have been among the most feared members of society. Even today, they are immediately recognizable by the stunningly ornate tattoos that cover their bodies, telling the terrifying story of their stature and career in a...","id":"13154","runtime":79,"imdbId":"tt0102915","trailer":"http:\/\/www.youtube.com\/watch?v=KzasJPXef0E","version":84,"lastModified":"1301903709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df7\/4bc93b78017a3c57fe018df7\/showdown-in-little-tokyo-mid.jpg","genre":"Action","title":"Showdown in Little Tokyo","releaseDate":662688000000,"language":"en","type":"Movie","_key":"54849"} +{"label":"Rodney Kageyama","version":23,"id":"129463","lastModified":"1301902892000","name":"Rodney Kageyama","type":"Person","_key":"54850"} +{"label":"Renee Allman","version":20,"id":"103593","lastModified":"1301902722000","name":"Renee Allman","type":"Person","_key":"54851"} +{"label":"Reid Asato","version":20,"id":"81570","lastModified":"1301902237000","name":"Reid Asato","type":"Person","_key":"54852"} +{"label":"Return to Oz","description":"Dorothy, saved from a psychiatric experiment by a mysterious girl, is somehow called back to Oz when a vain witch and the Nome King destroy everything that makes the magical land beautiful.","id":"13155","runtime":113,"imdbId":"tt0089908","version":100,"lastModified":"1301903348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e04\/4bc93b79017a3c57fe018e04\/return-to-oz-mid.jpg","genre":"Action","title":"Return to Oz","releaseDate":488160000000,"language":"en","type":"Movie","_key":"54853"} +{"label":"Walter Murch","version":81,"id":"154","lastModified":"1300038267000","name":"Walter Murch","type":"Person","_key":"54854"} +{"label":"Secondhand Lions","description":"\"Secondhand Lions\" follows the comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives. ","id":"13156","runtime":109,"imdbId":"tt0327137","version":180,"lastModified":"1301903395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/192\/4c4a56b47b9aa115fd000192\/secondhand-lions-mid.jpg","studio":"New Line Cinema","genre":"Drama","title":"Secondhand Lions","releaseDate":1063929600000,"language":"en","tagline":"An impressive story that will touch your heart.","type":"Movie","_key":"54855"} +{"label":"Tim McCanlies","version":23,"id":"77919","lastModified":"1301902248000","name":"Tim McCanlies","type":"Person","_key":"54856"} +{"label":"Aqua Teen Hunger Force Colon Movie Film for Theaters","description":"An action epic that explores the origins of the Aqua Teen Hunger Force (better known as Master Shake, Frylock, and Meatwad,) who somehow become pitted in a battle over an immortal piece of exercise equipment.","id":"13158","runtime":86,"imdbId":"tt0455326","trailer":"http:\/\/www.youtube.com\/watch?v=744","version":100,"lastModified":"1301902458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e23\/4bc93b7c017a3c57fe018e23\/aqua-teen-hunger-force-colon-movie-film-for-theaters-mid.jpg","genre":"Animation","title":"Aqua Teen Hunger Force Colon Movie Film for Theaters","releaseDate":1176422400000,"language":"en","type":"Movie","_key":"54857"} +{"label":"Dana Snyder","version":31,"id":"74337","lastModified":"1301901280000","name":"Dana Snyder","type":"Person","_key":"54858"} +{"label":"Carey Means","version":19,"id":"74338","lastModified":"1301901610000","name":"Carey Means","type":"Person","_key":"54859"} +{"label":"Dave Willis","version":22,"id":"74339","lastModified":"1301901610000","name":"Dave Willis","type":"Person","_key":"54860"} +{"label":"Andy Merrill","version":20,"id":"74340","lastModified":"1301901580000","name":"Andy Merrill","type":"Person","_key":"54861"} +{"label":"Matt Maiellaro","version":21,"id":"74341","lastModified":"1301901722000","name":"Matt Maiellaro","type":"Person","_key":"54862"} +{"label":"Georgia Rule","description":"Georgia Rule follows a rebellious, uncontrollable teenager who is hauled off by her dysfunctional mother to spend the summer with her grandmother. Her journey will lead all three women to revelations of buried family secrets and an understanding that - regardless what happens - the ties that bind can never be broken.","id":"13159","runtime":113,"imdbId":"tt0791304","version":235,"lastModified":"1301903634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2c\/4bc93b7c017a3c57fe018e2c\/georgia-rule-mid.jpg","genre":"Comedy","title":"Georgia Rule","releaseDate":1178841600000,"language":"en","tagline":"In this family, attitude doesn't skip a generation.","type":"Movie","_key":"54863"} +{"label":"Over Her Dead Body","description":"In Los Angeles, Henry is a veterinarian whose fianc\u00e9e Kate dies in an accident on the day they're to marry. Worried that Henry has closed off his social life, his sister suggests he use a psychic to contact Kate, lay to rest unresolved feelings, and live more fully. He tries it, though he doesn't believe in it. Nothing happens, so his sister gives Ashley, the psychic, Kate's diary. Now she's able to convince Henry she's in contact with Kate and start the therapy. Two things happen: they find the","id":"13160","runtime":95,"imdbId":"tt0785007","version":221,"lastModified":"1301903027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3a\/4bc93b7e017a3c57fe018e3a\/over-her-dead-body-mid.jpg","genre":"Comedy","title":"Over Her Dead Body","releaseDate":1201824000000,"language":"en","tagline":"She's passed on... But she's not moving on.","type":"Movie","_key":"54864"} +{"label":"Jeff Lowell","version":32,"id":"57173","lastModified":"1301901117000","name":"Jeff Lowell","type":"Person","_key":"54865"} +{"label":"Big Stan","description":"A weak and nebbishy con man panics when he learns he's going to prison for fraud. He hires a mysterious martial arts guru, who transforms him into a kung fu expert who can fight off inmates who want to hurt him--and love him. ","id":"13161","runtime":105,"imdbId":"tt0490086","trailer":"http:\/\/www.youtube.com\/watch?v=kCdtAFar0XM","version":160,"lastModified":"1301902534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e47\/4bc93b82017a3c57fe018e47\/big-stan-mid.jpg","studio":"Crystal Sky Pictures","genre":"Action","title":"Big Stan","releaseDate":1197244800000,"language":"en","type":"Movie","_key":"54866"} +{"label":"Blind Dating","description":"A blind young man thinks he finds love with an Indian woman, though their relationship is fraught with cultural differences.","id":"13162","runtime":95,"imdbId":"tt0454084","trailer":"http:\/\/www.youtube.com\/watch?v=3Xu-wHKdjKo","version":152,"lastModified":"1301902971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e69\/4bc93b85017a3c57fe018e69\/blind-dating-mid.jpg","studio":"Catfish Productions","genre":"Comedy","title":"Blind Dating","releaseDate":1154044800000,"language":"en","type":"Movie","_key":"54867"} +{"label":"Anjali Jay","version":20,"id":"87816","lastModified":"1301902525000","name":"Anjali Jay","type":"Person","_key":"54868"} +{"label":"Pooch Hall","version":21,"id":"87817","lastModified":"1301902525000","name":"Pooch Hall","type":"Person","_key":"54869"} +{"label":"Buying the Cow","description":"A commitment-averse man frantically hits the dating scene after his girlfriend starts pressuring him to pop the question.","id":"13163","runtime":88,"imdbId":"tt0218864","version":152,"lastModified":"1301903308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e72\/4bc93b85017a3c57fe018e72\/buying-the-cow-mid.jpg","studio":"Destination Films","genre":"Comedy","title":"Buying the Cow","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"54870"} +{"label":"Bill Bellamy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/441\/4d81503f7b9aa12db2001441\/bill-bellamy-profile.jpg","version":30,"id":"77896","lastModified":"1301901950000","name":"Bill Bellamy","type":"Person","_key":"54871"} +{"label":"Everything's Gone Green","description":"Ryan, a good-natured slacker, is tempted into a money laundering scheme while working for a lottery magazine. A capitalistic comedy that asks the question - when is \"enough\" enough?","id":"13164","runtime":95,"imdbId":"tt0461946","version":205,"lastModified":"1301907098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e83\/4bc93b87017a3c57fe018e83\/everything-s-gone-green-mid.jpg","studio":"Astral Media","genre":"Comedy","title":"Everything's Gone Green","releaseDate":1144886400000,"language":"en","type":"Movie","_key":"54872"} +{"label":"Paul Fox","version":21,"id":"82641","lastModified":"1301902366000","name":"Paul Fox","type":"Person","_key":"54873"} +{"label":"Freddy Got Fingered","description":"An unemployed cartoonist moves back in with his parents and younger brother Freddy. When his parents demand he leave, he begins to spread rumors that his father is sexually abusing Freddy.","id":"13166","runtime":87,"imdbId":"tt0240515","version":216,"lastModified":"1301904556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e95\/4bc93b87017a3c57fe018e95\/freddy-got-fingered-mid.jpg","studio":"Regency Enterprises","genre":"Action","title":"Freddy Got Fingered","releaseDate":987552000000,"language":"en","type":"Movie","_key":"54874"} +{"label":"Jackson Davies","version":22,"id":"80342","lastModified":"1301902368000","name":"Jackson Davies","type":"Person","_key":"54875"} +{"label":"Connor Widdows","version":19,"id":"80343","lastModified":"1301902466000","name":"Connor Widdows","type":"Person","_key":"54876"} +{"label":"John R. Taylor","version":19,"id":"80344","lastModified":"1301902466000","name":"John R. Taylor","type":"Person","_key":"54877"} +{"label":"Bob Osborne","version":19,"id":"80345","lastModified":"1301902466000","name":"Bob Osborne","type":"Person","_key":"54878"} +{"label":"Fiona Hogan","version":31,"id":"21092","lastModified":"1301976764000","name":"Fiona Hogan","type":"Person","_key":"54879"} +{"label":"George Gordon","version":19,"id":"80346","lastModified":"1301902466000","name":"George Gordon","type":"Person","_key":"54880"} +{"label":"Scott Heindl","version":17,"id":"10869","lastModified":"1301901722000","name":"Scott Heindl","type":"Person","_key":"54881"} +{"label":"Wendy Chmelauskas","version":19,"id":"80347","lastModified":"1301902466000","name":"Wendy Chmelauskas","type":"Person","_key":"54882"} +{"label":"Simon Longmore","version":19,"id":"80349","lastModified":"1301902466000","name":"Simon Longmore","type":"Person","_key":"54883"} +{"label":"Rick Tae","version":19,"id":"80351","lastModified":"1301902466000","name":"Rick Tae","type":"Person","_key":"54884"} +{"label":"Noel Fisher","version":24,"id":"80352","lastModified":"1301901610000","name":"Noel Fisher","type":"Person","_key":"54885"} +{"label":"Ted Friend","version":19,"id":"80353","lastModified":"1301902466000","name":"Ted Friend","type":"Person","_key":"54886"} +{"label":"Balinder Johal","version":21,"id":"80354","lastModified":"1301902466000","name":"Balinder Johal","type":"Person","_key":"54887"} +{"label":"Kamaljeet Kler","version":19,"id":"80355","lastModified":"1301902466000","name":"Kamaljeet Kler","type":"Person","_key":"54888"} +{"label":"Ralph Wagner","version":19,"id":"80356","lastModified":"1301902466000","name":"Ralph Wagner","type":"Person","_key":"54889"} +{"label":"Mike Bullard","version":19,"id":"80357","lastModified":"1301902466000","name":"Mike Bullard","type":"Person","_key":"54890"} +{"label":"Chris Carver","version":19,"id":"80358","lastModified":"1301902466000","name":"Chris Carver","type":"Person","_key":"54891"} +{"label":"Michele Cummins","version":19,"id":"80359","lastModified":"1301902466000","name":"Michele Cummins","type":"Person","_key":"54892"} +{"label":"John Rigg","version":19,"id":"80361","lastModified":"1301902466000","name":"John Rigg","type":"Person","_key":"54893"} +{"label":"Jorge Rodriguez","version":19,"id":"80362","lastModified":"1301902466000","name":"Jorge Rodriguez","type":"Person","_key":"54894"} +{"label":"Cliff Solomon","version":19,"id":"80363","lastModified":"1301902466000","name":"Cliff Solomon","type":"Person","_key":"54895"} +{"label":"Henry O. Watson","version":19,"id":"80364","lastModified":"1301902466000","name":"Henry O. Watson","type":"Person","_key":"54896"} +{"label":"Mama's Boy","description":"A twenty-nine year-old slacker who lives with his mom realizes his sweet set-up is threatened when she hears wedding bells with her self-help guru beau.","id":"13167","runtime":93,"imdbId":"tt0415141","version":183,"lastModified":"1301905391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea2\/4bc93b8b017a3c57fe018ea2\/mama-s-boy-mid.jpg","studio":"Carr-Santelli","genre":"Comedy","title":"Mama's Boy","releaseDate":1197590400000,"language":"en","type":"Movie","_key":"54897"} +{"label":"Tim Hamilton","version":21,"id":"84040","lastModified":"1301901673000","name":"Tim Hamilton","type":"Person","_key":"54898"} +{"label":"Smiley Face","description":"Jane eats her roommate Steve's 14 weed muffins, uses money for an electricity bill to buy weed and then burns it in a pan. She fails an audition, gets thrown out of a sausage factory, steals the original Communist Manifesto and ends up doing community service.Its like Harold & Kumar go to White Castle only it's a white chick who's on an adventure for weed and to figure out shes on a ferris wheel.","id":"13168","runtime":88,"imdbId":"tt0780608","version":262,"lastModified":"1301903296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4bc93b8c017a3c57fe018eab\/smiley-face-mid.jpg","genre":"Comedy","title":"Smiley Face","releaseDate":1195171200000,"language":"en","type":"Movie","_key":"54899"} +{"label":"Scott 'Carrot Top' Thompson","version":25,"id":"96010","lastModified":"1301903037000","name":"Scott 'Carrot Top' Thompson","type":"Person","_key":"54900"} +{"label":"The Baxter","description":"In the style of a Howard Hawks comedy, Baxter follows the twists and turns of a young man's life during the two weeks before his wedding.","id":"13169","runtime":91,"imdbId":"tt0401244","version":172,"lastModified":"1301904293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb4\/4bc93b8d017a3c57fe018eb4\/the-baxter-mid.jpg","genre":"Comedy","title":"The Baxter","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"54901"} +{"label":"Catherine Lloyd Burns","version":21,"id":"89585","lastModified":"1301902993000","name":"Catherine Lloyd Burns","type":"Person","_key":"54902"} +{"label":"The Boys & Girls Guide to Getting Down","description":"Tongue-in-cheek look at 20-something singles clubbing and partying in L.A. Voice-over narration, charts and graphs, and visits to a research laboratory punctuate the story of a single night when groups of friends go out, drink alcohol, take drugs, dance and talk, and look for someone to go home with. ","id":"13170","runtime":92,"imdbId":"tt0464907","version":152,"lastModified":"1301905956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebd\/4bc93b8d017a3c57fe018ebd\/the-boys-girls-guide-to-getting-down-mid.jpg","genre":"Comedy","title":"The Boys & Girls Guide to Getting Down","releaseDate":1174608000000,"language":"en","type":"Movie","_key":"54903"} +{"label":"The Ex","description":"In Manhattan, Sofia's an attorney and Tom's a cook who has a hard time holding a job. When their first child is born, they agree that she'll be a full-time mom and he'll get a promotion. When he gets fired, he takes a job in Ohio working at the ad agency where her father is assistant director. Tom's assigned to report to Chip, a competitive, hard-driving guy who's in a wheelchair and who's Sofia's ex-boyfriend - from high school. Chip still carries a torch for her, so he connives to make Tom's w","id":"13171","runtime":90,"imdbId":"tt0458364","version":211,"lastModified":"1301904621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eca\/4bc93b8e017a3c57fe018eca\/the-ex2-mid.jpg","genre":"Comedy","title":"The Ex","releaseDate":1170892800000,"language":"en","type":"Movie","_key":"54904"} +{"label":"Jesse Peretz","version":20,"id":"130816","lastModified":"1301902523000","name":"Jesse Peretz","type":"Person","_key":"54905"} +{"label":"The Promotion","description":"Two assistant managers of a corporate grocery store vie for a coveted promotion.","id":"13172","runtime":86,"imdbId":"tt0803057","version":153,"lastModified":"1301902579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edb\/4bc93b90017a3c57fe018edb\/the-promotion-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"The Promotion","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"54906"} +{"label":"Steve Conrad","version":33,"id":"20647","lastModified":"1302062160000","name":"Steve Conrad","type":"Person","_key":"54907"} +{"label":"The Ten","description":"Ten stories, each inspired by one of the ten commandments.","id":"13173","runtime":96,"imdbId":"tt0811106","version":175,"lastModified":"1301903280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eed\/4bc93b91017a3c57fe018eed\/the-ten-mid.jpg","genre":"Comedy","title":"The Ten","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"54908"} +{"label":"Ken Marino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/082\/4c000c80017a3c702f001082\/ken-marino-profile.jpg","version":31,"id":"77089","lastModified":"1302085738000","name":"Ken Marino","type":"Person","_key":"54909"} +{"label":"Ali Marsh","version":20,"id":"87230","lastModified":"1301902248000","name":"Ali Marsh","type":"Person","_key":"54910"} +{"label":"America: Freedom to Fascism","description":"This is a documentary about an honest search for the truth about the Federal Reserve Bank and the legality of the Internal Revenue System. Through extensive interviews with recognised experts and authority, the director shows an astonishing revelation of how the Federal Government and the Bankers have fooled the American public by taking thier wages and putting it in the pockets of the super-rich.","id":"13174","runtime":109,"imdbId":"tt0772153","version":106,"lastModified":"1301902700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc93b97017a3c57fe018f05\/america-freedom-to-fascism-mid.jpg","studio":"Aaron Russo Productions","genre":"Comedy","title":"America: Freedom to Fascism","releaseDate":1136073600000,"language":"en","tagline":"In a time of universal deceit, telling the truth is a revolutionary act.","type":"Movie","_key":"54911"} +{"label":"Aaron Russo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c0\/4bd0fbee017a3c63ef0001c0\/aaron-russo-profile.jpg","biography":"Aaron Russo was an entertainment businessman, filmmaker, libertarian political activist, and a 9\/11 truther. He was best-known for producing Trading Places, Wise Guys, and The Rose. Later in life he created the documentaries Mad as Hell, which calls into question the current state of governmental affairs and America: Freedom to Fascism, which investigates the breadth of the Sixteenth Amendment to the United States Constitution, the Internal Revenue Service (IRS), and the Federal Reserve System.","version":48,"birthday":"-848278800000","id":"18165","birthplace":"Brooklyn, New York, USA","lastModified":"1301901589000","name":"Aaron Russo","type":"Person","_key":"54912"} +{"label":"Esoteric Agenda","description":"There is an Esoteric Agenda behind every facet of life that was once believed to be disconnected. There is an Elite faction guiding most every Political, Economic, Social, Corporate, some Non-Governmental or even Anti-Establishment Organizations.","id":"13175","runtime":126,"version":19,"lastModified":"1301907338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/452\/4c0613f1017a3c7e86000452\/esoteric-agenda-mid.jpg","genre":"Documentary","title":"Esoteric Agenda","releaseDate":1204156800000,"language":"en","type":"Movie","_key":"54913"} +{"label":"Ben Stewart","version":16,"id":"89282","lastModified":"1301902323000","name":"Ben Stewart","type":"Person","_key":"54914"} +{"label":"Ben Stewart","version":18,"id":"89281","lastModified":"1301902674000","name":"Ben Stewart","type":"Person","_key":"54915"} +{"label":"Battle in Seattle","description":"Thousands of activists arrive in Seattle, Washington in masses to protest the WTO Ministerial Conference of 1999 (World Trade Organization). Although it began as a peaceful protest with a goal of stopping the WTO talks, it escalated into a full-scale riot and eventually, a State of Emergency that pitted protesters against the Seattle Police Department and the National Guard. ","id":"13177","runtime":99,"imdbId":"tt0850253","version":271,"lastModified":"1301902841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f24\/4bc93b99017a3c57fe018f24\/battle-in-seattle-mid.jpg","studio":"Insight Film Studios","genre":"Action","title":"Battle in Seattle","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"54916"} +{"label":"Tinker Bell","description":"Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture \"Tinker Bell.\"\r\n","id":"13179","runtime":78,"imdbId":"tt0823671","homepage":"http:\/\/disney.go.com\/fairies\/movies\/about.html","version":190,"lastModified":"1301902135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4b\/4bc93ba1017a3c57fe018f4b\/tinker-bell-mid.jpg","studio":"DisneyToon Studios","genre":"Animation","title":"Tinker Bell","releaseDate":1221696000000,"language":"en","type":"Movie","_key":"54917"} +{"label":"Loreena McKennitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b8\/4d9063085e73d663620024b8\/loreena-mckennitt-profile.jpg","version":26,"id":"78310","lastModified":"1301902219000","name":"Loreena McKennitt","type":"Person","_key":"54918"} +{"label":"Gail Borges","version":23,"id":"78312","lastModified":"1301902202000","name":"Gail Borges","type":"Person","_key":"54919"} +{"label":"Kathryn Cressida","version":23,"id":"78315","lastModified":"1301902391000","name":"Kathryn Cressida","type":"Person","_key":"54920"} +{"label":"Bob Bergen","version":39,"id":"78317","lastModified":"1301901950000","name":"Bob Bergen","type":"Person","_key":"54921"} +{"label":"Zeitgeist Addendum","description":"Zeitgeist: Addendum premiered at the 5th Annual Artivist Film Festival. Director Peter Joseph stated: \"The failure of our world to resolve the issues of war, poverty, and corruption, rests within a gross ignorance about what guides human behavior to begin with. It address the true source of the instability in our society, while offering the only fundamental, long-term solution.\"","id":"13180","runtime":123,"imdbId":"tt1332128","trailer":"http:\/\/www.youtube.com\/watch?v=4whnpP89h34","homepage":"www.zeitgeistmovie.com","version":170,"lastModified":"1301902057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f66\/4bc93ba4017a3c57fe018f66\/zeitgeist-addendum-mid.jpg","genre":"Documentary","title":"Zeitgeist Addendum","releaseDate":1222905600000,"language":"en","type":"Movie","_key":"54922"} +{"label":"Der Teufel vom M\u00fchlenberg","description":"No overview found.","id":"13181","runtime":87,"imdbId":"tt0047571","version":64,"lastModified":"1300979571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6b\/4bc93ba5017a3c57fe018f6b\/der-teufel-vom-muhlenberg-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Der Teufel vom M\u00fchlenberg","releaseDate":-465091200000,"language":"en","type":"Movie","_key":"54923"} +{"label":"Gerhard Frei","version":19,"id":"77405","lastModified":"1301902074000","name":"Gerhard Frei","type":"Person","_key":"54924"} +{"label":"Johannes Arpe","version":19,"id":"77406","lastModified":"1301901870000","name":"Johannes Arpe","type":"Person","_key":"54925"} +{"label":"Marianne Rudolph","version":19,"id":"77407","lastModified":"1301902074000","name":"Marianne Rudolph","type":"Person","_key":"54926"} +{"label":"Jupp Stauder","version":19,"id":"77408","lastModified":"1301902074000","name":"Jupp Stauder","type":"Person","_key":"54927"} +{"label":"Gertrud Paulun","version":19,"id":"77409","lastModified":"1301902074000","name":"Gertrud Paulun","type":"Person","_key":"54928"} +{"label":"Werner Tronjeck","version":19,"id":"77411","lastModified":"1301901870000","name":"Werner Tronjeck","type":"Person","_key":"54929"} +{"label":"Kurt Ulrich","version":28,"id":"37900","lastModified":"1301901975000","name":"Kurt Ulrich","type":"Person","_key":"54930"} +{"label":"Georg Niemann","version":19,"id":"77412","lastModified":"1301902074000","name":"Georg Niemann","type":"Person","_key":"54931"} +{"label":"Trude Brentina","version":21,"id":"77413","lastModified":"1301901870000","name":"Trude Brentina","type":"Person","_key":"54932"} +{"label":"Brigitte Lindenberg","version":19,"id":"77414","lastModified":"1301902074000","name":"Brigitte Lindenberg","type":"Person","_key":"54933"} +{"label":"Wolf von Beneckendorff","version":17,"id":"77416","lastModified":"1301902074000","name":"Wolf von Beneckendorff","type":"Person","_key":"54934"} +{"label":"G\u00fcnther Rettschlag","version":17,"id":"77417","lastModified":"1301902074000","name":"G\u00fcnther Rettschlag","type":"Person","_key":"54935"} +{"label":"Helmuth Fiedler","version":17,"id":"77418","lastModified":"1301902074000","name":"Helmuth Fiedler","type":"Person","_key":"54936"} +{"label":"Renate Schwetasch","version":19,"id":"77420","lastModified":"1301902074000","name":"Renate Schwetasch","type":"Person","_key":"54937"} +{"label":"Hedwig Appel","version":19,"id":"77421","lastModified":"1301902074000","name":"Hedwig Appel","type":"Person","_key":"54938"} +{"label":"Watchmen","description":"The story is set in an alternate 1985 where superheroes exist, Richard Nixon is still president, and tensions between the United States and the Soviet Union are at an all-time high. The vigilante Rorschach is investigating the murder of a former hero, the Comedian, and uncovers a plot to discredit and murder various heroes.","id":"13183","runtime":162,"imdbId":"tt0409459","trailer":"http:\/\/www.youtube.com\/watch?v=qXRdlOvLNeo","version":806,"lastModified":"1302070360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f69\/4d8502655e73d653a6002f69\/watchmen-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Watchmen","releaseDate":1236297600000,"language":"en","tagline":"Justice is coming to all of us. No matter what we do.","type":"Movie","_key":"54939"} +{"label":"Laura Mennell","version":28,"id":"79343","lastModified":"1302070360000","name":"Laura Mennell","type":"Person","_key":"54940"} +{"label":"James M. Connor","version":26,"id":"79344","lastModified":"1302070360000","name":"James M. Connor","type":"Person","_key":"54941"} +{"label":"Mary Ann Burger","version":26,"id":"79345","lastModified":"1302070360000","name":"Mary Ann Burger","type":"Person","_key":"54942"} +{"label":"Chris Burns","version":26,"id":"79347","lastModified":"1302070360000","name":"Chris Burns","type":"Person","_key":"54943"} +{"label":"Nhi Do","version":25,"id":"79348","lastModified":"1302070360000","name":"Nhi Do","type":"Person","_key":"54944"} +{"label":"Walter Addison","version":25,"id":"79349","lastModified":"1302070360000","name":"Walter Addison","type":"Person","_key":"54945"} +{"label":"Tony Ali","version":25,"id":"79350","lastModified":"1302070360000","name":"Tony Ali","type":"Person","_key":"54946"} +{"label":"Alison Araya","version":25,"id":"79351","lastModified":"1302070360000","name":"Alison Araya","type":"Person","_key":"54947"} +{"label":"Greg Armstrong-Morris","version":25,"id":"79352","lastModified":"1302070360000","name":"Greg Armstrong-Morris","type":"Person","_key":"54948"} +{"label":"Tony Bardach","version":25,"id":"79353","lastModified":"1302070360000","name":"Tony Bardach","type":"Person","_key":"54949"} +{"label":"Bangkok Dangerous","description":"When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers.","id":"13184","runtime":99,"imdbId":"tt0814022","trailer":"http:\/\/www.youtube.com\/watch?v=ywQjpapeX1Y","version":260,"lastModified":"1301901747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4bc93bcf017a3c57fe019019\/bangkok-dangerous-mid.jpg","studio":"Blue Star Pictures","genre":"Action","title":"Bangkok Dangerous","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"54950"} +{"label":"Shahkrit Yamnarm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/588\/4d32df377b9aa177db006588\/shahkrit-yamnarm-profile.jpg","version":25,"id":"74747","lastModified":"1301901275000","name":"Shahkrit Yamnarm","type":"Person","_key":"54951"} +{"label":"Panward Hemmanee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b7\/4c5609b57b9aa151f30000b7\/panward-hemmanee-profile.jpg","version":28,"id":"76484","lastModified":"1301901254000","name":"Panward Hemmanee","type":"Person","_key":"54952"} +{"label":"Nirattisai Kaljaruek","version":22,"id":"76485","lastModified":"1301901434000","name":"Nirattisai Kaljaruek","type":"Person","_key":"54953"} +{"label":"Dom Hetrakul","version":28,"id":"76478","lastModified":"1301901434000","name":"Dom Hetrakul","type":"Person","_key":"54954"} +{"label":"Tuck Napaskorn","version":22,"id":"76486","lastModified":"1301901482000","name":"Tuck Napaskorn","type":"Person","_key":"54955"} +{"label":"Steve Baldocchi","version":22,"id":"76487","lastModified":"1301901546000","name":"Steve Baldocchi","type":"Person","_key":"54956"} +{"label":"Chris Heebink","version":22,"id":"76488","lastModified":"1301901434000","name":"Chris Heebink","type":"Person","_key":"54957"} +{"label":"James With","version":23,"id":"76489","lastModified":"1301901241000","name":"James With","type":"Person","_key":"54958"} +{"label":"Kidulthood","description":"A day in the life of a group of troubled 15-year-olds growing up in west London.","id":"13185","runtime":89,"imdbId":"tt0435680","version":173,"lastModified":"1301902775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4bc93bd0017a3c57fe01902c\/kidulthood-mid.jpg","studio":"Cipher Films","genre":"Drama","title":"Kidulthood","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"54959"} +{"label":"Menhaj Huda","version":21,"id":"78061","lastModified":"1301901510000","name":"Menhaj Huda","type":"Person","_key":"54960"} +{"label":"Aml Ameen","version":21,"id":"78062","lastModified":"1301901682000","name":"Aml Ameen","type":"Person","_key":"54961"} +{"label":"Red Madrell","version":21,"id":"78063","lastModified":"1301901815000","name":"Red Madrell","type":"Person","_key":"54962"} +{"label":"Jaime Winstone","version":22,"id":"74442","lastModified":"1301901950000","name":"Jaime Winstone","type":"Person","_key":"54963"} +{"label":"Wrong Turn 2: Dead End","description":"Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner! ","id":"13186","runtime":93,"imdbId":"tt0804555","version":194,"lastModified":"1301902365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a19\/4d6aab017b9aa13629002a19\/wrong-turn-2-dead-end-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Horror","title":"Wrong Turn 2: Dead End","releaseDate":1190332800000,"language":"en","type":"Movie","_key":"54964"} +{"label":"Joe Lynch","version":23,"id":"84335","lastModified":"1301902180000","name":"Joe Lynch","type":"Person","_key":"54965"} +{"label":"Kimberly Caldwell","version":21,"id":"84336","lastModified":"1301902475000","name":"Kimberly Caldwell","type":"Person","_key":"54966"} +{"label":"Ashlea Earl","version":21,"id":"84337","lastModified":"1301901763000","name":"Ashlea Earl","type":"Person","_key":"54967"} +{"label":"Clint Carleton","version":21,"id":"84338","lastModified":"1301902124000","name":"Clint Carleton","type":"Person","_key":"54968"} +{"label":"Rorelee Tio","version":21,"id":"84339","lastModified":"1301902475000","name":"Rorelee Tio","type":"Person","_key":"54969"} +{"label":"A Charlie Brown Christmas","description":"When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.","id":"13187","runtime":25,"imdbId":"tt0059026","version":140,"lastModified":"1301903529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cb\/4d090d425e73d674580007cb\/a-charlie-brown-christmas-mid.jpg","genre":"Animation","title":"A Charlie Brown Christmas","releaseDate":-128217600000,"language":"en","tagline":"That's what Christmas is all about, Charlie Brown!","type":"Movie","_key":"54970"} +{"label":"Bill Melendez","version":53,"id":"94011","lastModified":"1301901528000","name":"Bill Melendez","type":"Person","_key":"54971"} +{"label":"Ann Altieri","version":22,"id":"124654","lastModified":"1301903079000","name":"Ann Altieri","type":"Person","_key":"54972"} +{"label":"Chris Doran","version":15,"id":"148104","lastModified":"1301903093000","name":"Chris Doran","type":"Person","_key":"54973"} +{"label":"Sally Dryer","version":22,"id":"124652","lastModified":"1301902730000","name":"Sally Dryer","type":"Person","_key":"54974"} +{"label":"Karen Mendelson","version":15,"id":"148105","lastModified":"1301903095000","name":"Karen Mendelson","type":"Person","_key":"54975"} +{"label":"Geoffrey Ornstein","version":15,"id":"148106","lastModified":"1301903097000","name":"Geoffrey Ornstein","type":"Person","_key":"54976"} +{"label":"Peter Robbins","version":24,"id":"34665","lastModified":"1301901699000","name":"Peter Robbins","type":"Person","_key":"54977"} +{"label":"Tracy Stratford","version":15,"id":"148107","lastModified":"1301903096000","name":"Tracy Stratford","type":"Person","_key":"54978"} +{"label":"Kathy Steinberg","version":22,"id":"124653","lastModified":"1301902675000","name":"Kathy Steinberg","type":"Person","_key":"54979"} +{"label":"Christopher Shea","version":22,"id":"124651","lastModified":"1301902730000","name":"Christopher Shea","type":"Person","_key":"54980"} +{"label":"A Christmas Carol","description":"Miserly Ebenezer Scrooge learns the error of his ways through the intervention of the ghost of his former partner and of three spirits in this faithful adaptation of the Dickens classic.","id":"13188","runtime":86,"imdbId":"tt0044008","trailer":"http:\/\/www.youtube.com\/watch?v=97PwRDfHBlg","homepage":"http:\/\/www.screenonline.org.uk\/film\/id\/509290\/","version":203,"lastModified":"1301904404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05d\/4bc93bd3017a3c57fe01905d\/a-christmas-carol-mid.jpg","studio":"George Minter Productions","genre":"Drama","title":"A Christmas Carol","releaseDate":-573436800000,"language":"en","type":"Movie","_key":"54981"} +{"label":"Kathleen Harrison","version":29,"id":"96421","lastModified":"1301902381000","name":"Kathleen Harrison","type":"Person","_key":"54982"} +{"label":"Mervyn Johns","version":32,"id":"90643","lastModified":"1301901950000","name":"Mervyn Johns","type":"Person","_key":"54983"} +{"label":"John Charlesworth","version":28,"id":"133501","lastModified":"1301903055000","name":"John Charlesworth","type":"Person","_key":"54984"} +{"label":"Brian Desmond Hurst","version":38,"id":"96422","lastModified":"1301902526000","name":"Brian Desmond Hurst","type":"Person","_key":"54985"} +{"label":"A Christmas Carol","description":"An old man who hates Christmas is taught the true meaning and spirit of Christmas by ghosts who show him his own past and present. He is also shown what the future holds for him if he doesn't change his behavior.","id":"13189","runtime":100,"imdbId":"tt0087056","version":120,"lastModified":"1301903078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4bc93bd7017a3c57fe01906b\/a-christmas-carol-mid.jpg","studio":"Entertainment Partners Ltd.","genre":"Comedy","title":"A Christmas Carol","releaseDate":472089600000,"language":"en","type":"Movie","_key":"54986"} +{"label":"Dead Space: Downfall","description":"On a deep space mining mission to a remote planet, an ancient religious relic - thought to be proof of the existence of God - is unearthed and brought aboard. When the unholy artifact unleashes a long-dormant alien race, its glimpse of Heaven transforms the ship into a living Hell. A prequel to the events of the 2008 video game Dead Space.","id":"13190","runtime":74,"imdbId":"tt1267379","trailer":"http:\/\/www.youtube.com\/watch?v=sqTFcsnY9S4","version":225,"lastModified":"1301902138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b41\/4d3fa3657b9aa15bad001b41\/dead-space-downfall-mid.jpg","studio":"Electronic Arts (EA)","genre":"Animation","title":"Dead Space: Downfall","releaseDate":1225152000000,"language":"en","type":"Movie","_key":"54987"} +{"label":"Chuck Patton","version":19,"id":"78451","lastModified":"1301902000000","name":"Chuck Patton","type":"Person","_key":"54988"} +{"label":"Jim Piddock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ff8\/4c0010ae017a3c7031000ff8\/jim-piddock-profile.jpg","version":41,"id":"120560","lastModified":"1301902221000","name":"Jim Piddock","type":"Person","_key":"54989"} +{"label":"Lia Sargent","version":17,"id":"141445","lastModified":"1301902576000","name":"Lia Sargent","type":"Person","_key":"54990"} +{"label":"Hal Sparks","version":25,"id":"75316","lastModified":"1301901708000","name":"Hal Sparks","type":"Person","_key":"54991"} +{"label":"War, Inc.","description":"War Inc. is set in the future, when the fictional desert country of Turaqistan is torn by a riot after a private corporation, Tamerlane, owned by the former Vice President of the United States, has taken over the whole country. Brand Hauser, a hit man who suppresses his emotions by gobbling down hot sauce, is hired by the corporation's head to kill the CEO of their competitors.","id":"13191","runtime":106,"imdbId":"tt0884224","trailer":"http:\/\/www.youtube.com\/watch?v=709","homepage":"http:\/\/www.firstlookstudios.com\/films\/warinc\/","version":211,"lastModified":"1301902278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/096\/4bc93bda017a3c57fe019096\/war-inc-mid.jpg","studio":"New Crime Productions","genre":"Action","title":"War, Inc.","releaseDate":1209340800000,"language":"en","tagline":"When it comes to war... America means business","type":"Movie","_key":"54992"} +{"label":"John McLaughlin","version":20,"id":"93045","lastModified":"1301901535000","name":"John McLaughlin","type":"Person","_key":"54993"} +{"label":"Montel Williams","version":20,"id":"93046","lastModified":"1301901610000","name":"Montel Williams","type":"Person","_key":"54994"} +{"label":"Joshua Seftel","version":20,"id":"93047","lastModified":"1301901870000","name":"Joshua Seftel","type":"Person","_key":"54995"} +{"label":"Moonwalker","description":"A movie that starts out with the \"Man in the Mirror\" music video, it then changes to a montage of video clips of Michael's career. Next comes a parody of his Bad video by children, and then Michael is chased by fans in a fantasy sequence. 2 more videos are shown, and then a movie in which Michael plays a hero with magical powers. In it he is chased by drug dealer Mr. Big and saves three children. Videos included in the movie are \"Smooth Criminal\" and \"Come Together\".","id":"13192","runtime":93,"imdbId":"tt0095655","trailer":"http:\/\/www.youtube.com\/watch?v=kVaG5po34tM","version":275,"lastModified":"1301414457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b7\/4bc93bdf017a3c57fe0190b7\/moonwalker-mid.jpg","genre":"Action","title":"Moonwalker","releaseDate":594086400000,"language":"en","type":"Movie","_key":"54996"} +{"label":"Sean Lennon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/34d\/4d79c3845e73d6282800034d\/sean-lennon-profile.jpg","version":20,"id":"96085","lastModified":"1301902505000","name":"Sean Lennon","type":"Person","_key":"54997"} +{"label":"Colin Chilvers","version":18,"id":"13493","lastModified":"1301901563000","name":"Colin Chilvers","type":"Person","_key":"54998"} +{"label":"Saved!","description":"Teenage Mary Cummings, who has \"been Born Again her whole life,\" is about to enter her senior year at American Eagle Christian High School near Baltimore with her Fundamentalist Christian friends Hilary Faye and Veronica, the three of whom have formed a girl group called the Christian Jewels. Everything seems perfect\u2014until Mary\u2019s \"perfect Christian boyfriend\" Dean tells her, as they\u2019re swimming underwater, that he thinks he's gay.","id":"13193","runtime":92,"imdbId":"tt0332375","trailer":"http:\/\/www.youtube.com\/watch?v=711","homepage":"http:\/\/www.savedmovie.com\/","version":170,"lastModified":"1301903762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c1\/4d5018757b9aa13ab800b9c1\/saved-mid.jpg","studio":"United Artists","genre":"Comedy","title":"Saved!","releaseDate":1074643200000,"language":"en","type":"Movie","_key":"54999"} +{"label":"Brian Dannelly","version":20,"id":"74259","lastModified":"1301902175000","name":"Brian Dannelly","type":"Person","_key":"55000"} +{"label":"Highlander: The Search for Vengeance","description":"Colin MacLeod hunts for the man responsible for the death of his love. He chases the immortal Marcus Octavius across centuries as his quest threatens to take over his life and heart. In his quest, he meets a woman who reminds him of his slain beauty. But it's his final battle with Marcus that will decide not only his fate, but also the fate of everyone in the world.","id":"13194","runtime":86,"imdbId":"tt0465657","homepage":"http:\/\/www.highlandersearchforvengeance.com\/","version":148,"lastModified":"1301903524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dd\/4bc93be5017a3c57fe0190dd\/highlander-the-search-for-vengeance-mid.jpg","studio":"Imagi Animation Studios","genre":"Action","title":"Highlander: The Search for Vengeance","releaseDate":1171411200000,"language":"en","type":"Movie","_key":"55001"} +{"label":"Hank Banks","version":23,"id":"86786","lastModified":"1301901509000","name":"Hank Banks","type":"Person","_key":"55002"} +{"label":"Zachary Samuels","version":23,"id":"86787","lastModified":"1301902362000","name":"Zachary Samuels","type":"Person","_key":"55003"} +{"label":"Janyse Jaud","version":27,"id":"86788","lastModified":"1301902708000","name":"Janyse Jaud","type":"Person","_key":"55004"} +{"label":"Flawless","description":"A female executive (Demi Moore) and a night janitor (Michael Caine) conspire to commit a daring diamond heist from their mutual employer, The London Diamond Corporation. ","id":"13195","runtime":108,"imdbId":"tt0780516","trailer":"http:\/\/www.youtube.com\/watch?v=seF-Ub5xz4w","homepage":"http:\/\/www.flawlessfilm.com\/","version":212,"lastModified":"1301904068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bf\/4d7be48c5e73d628280019bf\/flawless-mid.jpg","studio":"Magnolia Pictures","genre":"Crime","title":"Flawless","releaseDate":1206662400000,"language":"en","type":"Movie","_key":"55005"} +{"label":"David Barras","version":23,"id":"74261","lastModified":"1301902074000","name":"David Barras","type":"Person","_key":"55006"} +{"label":"Derren Nesbitt","version":25,"id":"74262","lastModified":"1301902248000","name":"Derren Nesbitt","type":"Person","_key":"55007"} +{"label":"Rosalind March","version":23,"id":"74263","lastModified":"1301901722000","name":"Rosalind March","type":"Person","_key":"55008"} +{"label":"Kevan Willis","version":23,"id":"74264","lastModified":"1301901870000","name":"Kevan Willis","type":"Person","_key":"55009"} +{"label":"Then She Found Me","description":"A New York schoolteacher hits a midlife crisis when, in quick succession, her husband leaves, her adoptive mother dies and her biological mother, an eccentric talk show host, materializes and turns her life upside down as she begins a courtship with the father of one of her students.","id":"13196","runtime":100,"imdbId":"tt0455805","version":263,"lastModified":"1301902578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fb\/4bc93bea017a3c57fe0190fb\/then-she-found-me-mid.jpg","studio":"Blue Rider Pictures","genre":"Comedy","title":"Then She Found Me","releaseDate":1189123200000,"language":"en","type":"Movie","_key":"55010"} +{"label":"10th & Wolf","description":"A former street tough returns to his Philadelphia home after a stint in the military. Back on his home turf, he once again finds himself tangling with the mob boss who was instrumental in his going off to be a soldier.","id":"13197","runtime":107,"imdbId":"tt0360323","version":179,"lastModified":"1301906251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/112\/4bc93bec017a3c57fe019112\/10th-wolf-mid.jpg","genre":"Crime","title":"10th & Wolf","releaseDate":1176336000000,"language":"en","type":"Movie","_key":"55011"} +{"label":"Tony Luke Jr.","version":21,"id":"84989","lastModified":"1301901940000","name":"Tony Luke Jr.","type":"Person","_key":"55012"} +{"label":"Wristcutters: A Love Story","description":"Despondent over his breakup with Desiree, Zia slashes his wrists and goes to an afterlife peopled by suicides, a high-desert landscape dotted by old tires, burned-out cars, and abandoned sofas. He gets a job in a pizza joint. By chance, Zia learns that Desiree offed herself a few months after he did, and she's looking for him. He sets off with Eugene (an electrocuted Russian rocker) to find her.","id":"13198","runtime":88,"imdbId":"tt0477139","trailer":"http:\/\/www.youtube.com\/watch?v=718","homepage":"http:\/\/wristcutters.com\/official_site","version":185,"lastModified":"1301902755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11b\/4bc93bed017a3c57fe01911b\/wristcutters-a-love-story-mid.jpg","studio":"No Matter Pictures","genre":"Comedy","title":"Wristcutters: A Love Story","releaseDate":1138060800000,"language":"en","type":"Movie","_key":"55013"} +{"label":"Goran Dukic","version":23,"id":"74272","lastModified":"1301901687000","name":"Goran Dukic","type":"Person","_key":"55014"} +{"label":"American Me","description":"Edward J. Olmos made his directorial bow with the powerhouse crime saga American Me. Olmos stars as street-gang leader Santana, who during his 18 years in Folsom Prison rules over all the drug-and-murder activities behind bars. Upon his release, Santana goes back to his old neighborhood, intending to lead a peaceful, crime-free life. But his old gang buddies force him back into his old habits. The","id":"13199","runtime":125,"imdbId":"tt0103671","trailer":"http:\/\/www.youtube.com\/watch?v=_JcZCoUDmBk","version":339,"lastModified":"1302036357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/124\/4bc93bed017a3c57fe019124\/american-me-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"American Me","releaseDate":700444800000,"language":"en","tagline":"In prison they are the law. On the streets they are the power.","type":"Movie","_key":"55015"} +{"label":"Danny De La Paz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/467\/4d533dd07b9aa13aaf012467\/danny-de-la-paz-profile.jpg","version":26,"id":"74273","lastModified":"1302036357000","name":"Danny De La Paz","type":"Person","_key":"55016"} +{"label":"Red","description":"An older, reclusive man's best friend and inspiration for living is his 14-year-old dog named \"Red\". When three troublesome teens kill the dog for no good reason, the grieving man sets out for justice and redemption by whatever means available to him.","id":"13200","runtime":93,"imdbId":"tt0972883","trailer":"http:\/\/www.youtube.com\/watch?v=1745","version":164,"lastModified":"1301904080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12d\/4bc93bee017a3c57fe01912d\/red-mid.jpg","genre":"Drama","title":"Red","releaseDate":1223424000000,"language":"en","type":"Movie","_key":"55017"} +{"label":"Shiloh Fernandez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4ca0eb1f7b9aa166d80000a7\/shiloh-fernandez-profile.jpg","version":23,"id":"79795","lastModified":"1301901334000","name":"Shiloh Fernandez","type":"Person","_key":"55018"} +{"label":"Trygve Allister Diesen","version":19,"id":"103149","lastModified":"1301902706000","name":"Trygve Allister Diesen","type":"Person","_key":"55019"} +{"label":"Deuces Wild","description":"1950's New York City. A bad and bloody gang war is about to erupt on the dysfunctional streets of Brooklyn. The Deuces at war with the vicious Vipers. Scott Kalvert directs this tale of lust, drugs, mayhem and madness during one hot summer on the streets of New York.","id":"13201","runtime":96,"imdbId":"tt0231448","trailer":"http:\/\/www.youtube.com\/watch?v=726","homepage":"http:\/\/www.mgm.com\/sites\/deuceswild\/intro\/","version":172,"lastModified":"1301904767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4bc93bef017a3c57fe01913b\/deuces-wild-mid.jpg","studio":"United Artists","genre":"Crime","title":"Deuces Wild","releaseDate":1020384000000,"language":"en","type":"Movie","_key":"55020"} +{"label":"Animal 2","description":"Now serving a life sentence for murder, James \"Animal\" Allen (Ving Rhames) returns to fighting for cash in order to help his troubled son (Vicellous Shannon) on the outside. However, with his newfound fame as a fighter, Animal uncovers a jailhouse conspiracy that threatens to cause racial tensions to explode.","id":"13202","runtime":93,"imdbId":"tt0985047","version":130,"lastModified":"1301904437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/148\/4bc93bf0017a3c57fe019148\/animal-2-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Action","title":"Animal 2","releaseDate":1188864000000,"language":"en","type":"Movie","_key":"55021"} +{"label":"Yannick Bisson","version":27,"id":"43311","lastModified":"1301901165000","name":"Yannick Bisson","type":"Person","_key":"55022"} +{"label":"Deborah Valente","version":22,"id":"74279","lastModified":"1301902328000","name":"Deborah Valente","type":"Person","_key":"55023"} +{"label":"Ryan Combs","version":22,"id":"74280","lastModified":"1301901444000","name":"Ryan Combs","type":"Person","_key":"55024"} +{"label":"Son in Law","description":"Country girl Rebecca begins college in Los Angeles. There she meets Crawl, a student who is crazy, unpredictable and wild. During the holidays she brings him with her home. Her parents have never seen anything like him and are shocked when Rebecca tells them that they are engaged to be married. Two different worlds collide... ","id":"13203","runtime":95,"imdbId":"tt0108186","trailer":"http:\/\/www.youtube.com\/watch?v=727","version":85,"lastModified":"1301904299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/091\/4cd36da05e73d6734a000091\/son-in-law-mid.jpg","studio":"Hollywood Pictures","genre":"Comedy","title":"Son in Law","releaseDate":741571200000,"language":"en","tagline":"He's a relative nightmare.","type":"Movie","_key":"55025"} +{"label":"Hellboy Animated: Blood and Iron","description":"In 1939, young Professor Bruttenholm destroyed Erzsebet Ondrushko, a female vampire who bathed in the blood of innocents to stay young. Now someone in upstate New York is trying to bring her back, and the elderly Professor Broom has decided to investigate it himself. Hellboy ends up battling the Queen of Witches, the goddess Hecate, who wants him to embrace his true destiny.","id":"13204","runtime":75,"imdbId":"tt0817910","version":154,"lastModified":"1301902990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bc93bf7017a3c57fe019163\/hellboy-blood-iron-mid.jpg","studio":"IDT Entertainment","genre":"Animation","title":"Hellboy Animated: Blood and Iron","releaseDate":1173484800000,"language":"en","type":"Movie","_key":"55026"} +{"label":"Bambi 2","description":"Picking up shortly after the original movie's end, Bambi follows his father, the Great Prince, into the forest after his mother's death and the Great Prince must teach the young fawn, and his friends Thumper, Flower and Owl, how a deer survives in the forest. But the Great Prince finds that his high-spirited son may have a lesson or two to teach him, as well.","id":"13205","runtime":72,"imdbId":"tt0447854","version":116,"lastModified":"1301901725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16c\/4bc93bf8017a3c57fe01916c\/bambi-2-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Bambi 2","releaseDate":1138233600000,"language":"en","type":"Movie","_key":"55027"} +{"label":"Brian Pimental","version":20,"id":"15778","lastModified":"1301901825000","name":"Brian Pimental","type":"Person","_key":"55028"} +{"label":"Brendon Baerg","version":23,"id":"74284","lastModified":"1301901697000","name":"Brendon Baerg","type":"Person","_key":"55029"} +{"label":"Carolyn Hennesy","version":28,"id":"74285","lastModified":"1301901796000","name":"Carolyn Hennesy","type":"Person","_key":"55030"} +{"label":"Nicky Jones","version":23,"id":"74286","lastModified":"1301901509000","name":"Nicky Jones","type":"Person","_key":"55031"} +{"label":"Anthony Ghannam","version":23,"id":"74287","lastModified":"1301901570000","name":"Anthony Ghannam","type":"Person","_key":"55032"} +{"label":"Andrea Bowen","version":25,"id":"74288","lastModified":"1301901796000","name":"Andrea Bowen","type":"Person","_key":"55033"} +{"label":"A Complete History Of My Sexual Failures","description":"The egocentric documentary-maker Chris Waitt traces his romantic ineptitude and sexual impotence through awkward interviews with irate ex-girlfriends and stunts involving S&M parlours, Harley Street doctors and Viagra overdoses. \nThe results are often hilarious, sometimes moving and speak directly to the hapless paramour in all of us. ","id":"13206","runtime":90,"imdbId":"tt1037033","version":84,"lastModified":"1301906525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/179\/4bc93bf9017a3c57fe019179\/a-complete-history-of-my-sexual-failures-mid.jpg","genre":"Documentary","title":"A Complete History Of My Sexual Failures","releaseDate":1200700800000,"language":"en","type":"Movie","_key":"55034"} +{"label":"Chris Waitt","version":21,"id":"88712","lastModified":"1301902892000","name":"Chris Waitt","type":"Person","_key":"55035"} +{"label":"Friday the 13th","description":"A group of young adults discover a boarded up Camp Crystal Lake, where they soon encounter Jason Voorhees (Mears) and his deadly intentions.","id":"13207","runtime":97,"imdbId":"tt0758746","trailer":"http:\/\/www.youtube.com\/watch?v=_jo2uiLCtJs","homepage":"http:\/\/www.fridaythe13thmovie.com","version":319,"lastModified":"1301907562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67b\/4d4707427b9aa15bbf00a67b\/friday-the-13th-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"Friday the 13th","releaseDate":1234483200000,"language":"en","tagline":"You know his name. You know the story. On Friday the 13th, witness his resurrection...","type":"Movie","_key":"55036"} +{"label":"Amanda Righetti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4dd\/4d1f4a285e73d66b270014dd\/amanda-righetti-profile.jpg","version":31,"id":"74289","lastModified":"1301904117000","name":"Amanda Righetti","type":"Person","_key":"55037"} +{"label":"Travis Van Winkle","version":26,"id":"74290","lastModified":"1301902327000","name":"Travis Van Winkle","type":"Person","_key":"55038"} +{"label":"Julianna Guill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/922\/4d7abb935e73d65174000922\/julianna-guill-profile.jpg","version":30,"id":"78430","lastModified":"1301901445000","name":"Julianna Guill","type":"Person","_key":"55039"} +{"label":"Ben Feldman","version":22,"id":"78431","lastModified":"1301902371000","name":"Ben Feldman","type":"Person","_key":"55040"} +{"label":"Arlen Escarpeta","version":28,"id":"78432","lastModified":"1301901601000","name":"Arlen Escarpeta","type":"Person","_key":"55041"} +{"label":"Ryan Hansen","version":22,"id":"78433","lastModified":"1301902390000","name":"Ryan Hansen","type":"Person","_key":"55042"} +{"label":"Willa Ford","version":29,"id":"77313","lastModified":"1301901646000","name":"Willa Ford","type":"Person","_key":"55043"} +{"label":"America Olivo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/074\/4bcc1336017a3c0f30000074\/america-olivo-profile.jpg","version":35,"id":"78434","lastModified":"1301901113000","name":"America Olivo","type":"Person","_key":"55044"} +{"label":"Offside","id":"13209","runtime":93,"imdbId":"tt0499537","version":326,"lastModified":"1301905543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4bc93c09017a3c57fe0191d1\/offside-mid.jpg","genre":"Comedy","title":"Offside","releaseDate":1148601600000,"language":"en","type":"Movie","_key":"55045"} +{"label":"Jafar Panahi","version":26,"id":"120229","lastModified":"1301902573000","name":"Jafar Panahi","type":"Person","_key":"55046"} +{"label":"The Dam Busters","description":"\nAdapted by R.C. Sherriff from Guy Gibson's book Enemy Coast Ahead, The Dam Busters is a docudrama following the conception of a new British weapon for smashing the German dams in the Ruhr industrial complex and the execution of the raid by 617 Squadron 'The Dam Busters'","id":"13210","runtime":124,"imdbId":"tt0046889","trailer":"http:\/\/www.youtube.com\/watch?v=987","version":103,"lastModified":"1301904584000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1da\/4bc93c0a017a3c57fe0191da\/the-dam-busters-mid.jpg","genre":"Action","title":"The Dam Busters","releaseDate":-449539200000,"language":"en","type":"Movie","_key":"55047"} +{"label":"Splinter","description":"Trapped in an isolated gas station by a voracious Splinter parasite that transforms its still living victims into deadly hosts, a young couple and an escaped convict must find a way to work together to survive this primal terror. ","id":"13220","runtime":82,"imdbId":"tt1031280","trailer":"http:\/\/www.youtube.com\/watch?v=aJndd5Eyz18","homepage":"http:\/\/thesplintermovie.com\/","version":177,"lastModified":"1301904747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e7\/4bc93c0b017a3c57fe0191e7\/splinter-mid.jpg","studio":"Indion Entertainment Group","genre":"Drama","title":"Splinter","releaseDate":1225411200000,"language":"en","type":"Movie","_key":"55048"} +{"label":"Jill Wagner","version":23,"id":"82943","lastModified":"1301902021000","name":"Jill Wagner","type":"Person","_key":"55049"} +{"label":"Rachel Kerbs","version":19,"id":"82944","lastModified":"1301901870000","name":"Rachel Kerbs","type":"Person","_key":"55050"} +{"label":"Charles Baker","version":22,"id":"82945","lastModified":"1301902466000","name":"Charles Baker","type":"Person","_key":"55051"} +{"label":"The Kautokeino Rebellion","description":"Religious and cultural reawakening inspires rebellion in a 19th century Norwegian village.","id":"13221","runtime":100,"imdbId":"tt0479937","version":85,"lastModified":"1301905629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f0\/4bc93c0c017a3c57fe0191f0\/kautokeino-opprret-mid.jpg","studio":"Rubicon Film AS","genre":"Drama","title":"The Kautokeino Rebellion","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"55052"} +{"label":"Aslat Mahtte Gaup","version":20,"id":"79190","lastModified":"1301901722000","name":"Aslat Mahtte Gaup","type":"Person","_key":"55053"} +{"label":"Nils Peder Gaup","version":20,"id":"79191","lastModified":"1301902248000","name":"Nils Peder Gaup","type":"Person","_key":"55054"} +{"label":"The Devil and Daniel Johnston","description":"This 2006 documentary film chronicles the life of Daniel Johnston, a manic-depressive genius singer\/songwriter\/artist, from childhood up to the present, with an emphasis on his mental illness, and how it manifested itself in demonic self-obsession.","id":"13222","runtime":110,"imdbId":"tt0436231","trailer":"http:\/\/www.youtube.com\/watch?v=735","homepage":"http:\/\/www.sonyclassics.com\/devilanddaniel\/","version":113,"lastModified":"1301905099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f9\/4bc93c0c017a3c57fe0191f9\/the-devil-and-daniel-johnston-mid.jpg","studio":"Sony Pictures Classics","title":"The Devil and Daniel Johnston","releaseDate":1143763200000,"language":"en","type":"Movie","_key":"55055"} +{"label":"Daniel Johnston","version":20,"id":"74294","lastModified":"1301902366000","name":"Daniel Johnston","type":"Person","_key":"55056"} +{"label":"Jeff Feuerzeig","version":21,"id":"74295","lastModified":"1301902328000","name":"Jeff Feuerzeig","type":"Person","_key":"55057"} +{"label":"Gran Torino","description":"Walt Kowalski, an iron-willed and inflexible Korean War veteran living in a changing world, is forced by his immigrant neighbors to confront his long-held prejudices.","id":"13223","runtime":116,"imdbId":"tt1205489","trailer":"http:\/\/www.youtube.com\/watch?v=9ecW-d-CBPc","homepage":"http:\/\/www.thegrantorino.com\/","version":675,"lastModified":"1302078505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/547\/4c7a9ef15e73d613d3000547\/gran-torino-mid.jpg","studio":"Village Roadshow Pictures","genre":"Action","title":"Gran Torino","releaseDate":1228780800000,"language":"en","tagline":"Ever come across somebody you shouldn't have messed with?","type":"Movie","_key":"55058"} +{"label":"Cory Hardrict","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4c50a54a7b9aa13d4b000092\/cory-hardrict-profile.jpg","version":36,"id":"74302","lastModified":"1302068431000","name":"Cory Hardrict","type":"Person","_key":"55059"} +{"label":"Dreama Walker","version":29,"id":"74303","lastModified":"1302068431000","name":"Dreama Walker","type":"Person","_key":"55060"} +{"label":"Doua Moua","version":29,"id":"74304","lastModified":"1302068431000","name":"Doua Moua","type":"Person","_key":"55061"} +{"label":"Sarah Neubauer","version":28,"id":"74305","lastModified":"1302068431000","name":"Sarah Neubauer","type":"Person","_key":"55062"} +{"label":"Lee Mong Vang","version":28,"id":"74306","lastModified":"1302068431000","name":"Lee Mong Vang","type":"Person","_key":"55063"} +{"label":"Nana Gbewonyo","version":29,"id":"74307","lastModified":"1302068431000","name":"Nana Gbewonyo","type":"Person","_key":"55064"} +{"label":"Christopher Carley","version":31,"id":"74308","lastModified":"1302068431000","name":"Christopher Carley","type":"Person","_key":"55065"} +{"label":"Bee Vang","version":28,"id":"74309","lastModified":"1302068431000","name":"Bee Vang","type":"Person","_key":"55066"} +{"label":"John Anton","version":28,"id":"74310","lastModified":"1302068431000","name":"John Anton","type":"Person","_key":"55067"} +{"label":"Austin Douglas Smith","version":28,"id":"74311","lastModified":"1302068431000","name":"Austin Douglas Smith","type":"Person","_key":"55068"} +{"label":"Ahney Her","version":28,"id":"74312","lastModified":"1302068431000","name":"Ahney Her","type":"Person","_key":"55069"} +{"label":"Ramon Camacho","version":31,"id":"74313","lastModified":"1302068431000","name":"Ramon Camacho","type":"Person","_key":"55070"} +{"label":"Rio Scafone","version":28,"id":"74314","lastModified":"1302068431000","name":"Rio Scafone","type":"Person","_key":"55071"} +{"label":"FernGully: The Last Rainforest","description":"When a sprite named Crysta shrinks a human boy, Zak, down to her size, he vows to help the magical fairy folk stop a greedy logging company from destroying their home, the pristine rainforest known as FernGully. Zak and his new friends fight to defend FernGully from lumberjacks -- and the vengeful spirit they accidentally unleash after chopping down a magic tree.","id":"13225","runtime":76,"imdbId":"tt0104254","trailer":"http:\/\/www.youtube.com\/watch?v=738","version":401,"lastModified":"1302078370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/246\/4bc93c1a017a3c57fe019246\/ferngully-the-last-rainforest-mid.jpg","studio":"20th Century Fox","genre":"Animation","title":"FernGully: The Last Rainforest","releaseDate":702864000000,"language":"en","tagline":"Do you believe in humans?","type":"Movie","_key":"55072"} +{"label":"Bill Kroyer","version":22,"id":"74300","lastModified":"1301902389000","name":"Bill Kroyer","type":"Person","_key":"55073"} +{"label":"Jeff Tweedy: Sunken Treasure Live - In the Pacific Northwest","description":"<i>Sunken Treasure<\/i> follows Wilco frontman Jeff Tweedy on his February 2006 solo acoustic tour. The footage was recorded over five nights and features songs from three of his current and former bands: Wilco, Uncle Tupelo, and Loose Fur, plus an unreleased track, \"The Thanks I Get.\" The film is directed by documentarians Christoph Green and Brendan Canty, himself the former drummer of Fugazi. ","id":"13240","runtime":90,"imdbId":"tt1351643","trailer":"http:\/\/www.youtube.com\/watch?v=743","version":190,"lastModified":"1302078234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24f\/4bc93c1c017a3c57fe01924f\/jeff-tweedy-sunken-treasure-live-in-the-pacific-northwest-mid.jpg","genre":"Documentary","title":"Jeff Tweedy: Sunken Treasure Live - In the Pacific Northwest","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55074"} +{"label":"Jeff Tweedy","version":21,"id":"74329","lastModified":"1301901510000","name":"Jeff Tweedy","type":"Person","_key":"55075"} +{"label":"Brendan Canty","version":24,"id":"74330","lastModified":"1301901499000","name":"Brendan Canty","type":"Person","_key":"55076"} +{"label":"Christoph Green","version":20,"id":"74331","lastModified":"1301901811000","name":"Christoph Green","type":"Person","_key":"55077"} +{"label":"My Winnipeg","description":"A personal portrait of filmmaker Guy Maddin's hometown of Winnipeg, Manitoba.","id":"13241","runtime":80,"imdbId":"tt1093842","trailer":"http:\/\/www.youtube.com\/watch?v=aY9BtROpNQ4","version":237,"lastModified":"1302078143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/258\/4bc93c1c017a3c57fe019258\/my-winnipeg-mid.jpg","genre":"Documentary","title":"My Winnipeg","releaseDate":1189123200000,"language":"en","type":"Movie","_key":"55078"} +{"label":"Guy Maddin","version":28,"id":"97579","lastModified":"1301901528000","name":"Guy Maddin","type":"Person","_key":"55079"} +{"label":"Amy Stewart","version":24,"id":"27561","lastModified":"1301901863000","name":"Amy Stewart","type":"Person","_key":"55080"} +{"label":"Darcy Fehr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a5\/4bdb61a0017a3c5d8b0001a5\/darcy-fehr-profile.jpg","biography":"Darcy Fehr has been acting professionally since 1997. He's studied at both the University of Manitoba and Ryerson University in Toronto. Among his most notable roles is the lead in Guy Maddin's, \"My Winnipeg\". Darcy now shares his unique acting experiences in The Acting Studio Winnipeg.","version":20,"birthday":"157244400000","id":"117051","birthplace":"Winnipeg, Manitoba, Canada","lastModified":"1301902368000","name":"Darcy Fehr","type":"Person","_key":"55081"} +{"label":"Scotch Mist: A Film with Radiohead in It","description":"Radiohead plays songs from their album In Rainbows for a webcast broadcast on New Years Eve. The film was made by Radiohead, Nigel Godrich, Adam Buxton, Garth Jennings, Stanley Donwood, Ric Jerrom, Hugo Nicolson and Dan Grech-Marguerat.","id":"13242","runtime":42,"version":23,"lastModified":"1301903077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/261\/4bc93c1f017a3c57fe019261\/scotch-mist-a-film-with-radiohead-in-it-mid.jpg","genre":"Documentary","title":"Scotch Mist: A Film with Radiohead in It","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55082"} +{"label":"Colin Greenwoood","version":16,"id":"74332","lastModified":"1301901581000","name":"Colin Greenwoood","type":"Person","_key":"55083"} +{"label":"Jonny Greenwood","version":29,"id":"74333","lastModified":"1301901562000","name":"Jonny Greenwood","type":"Person","_key":"55084"} +{"label":"Ed O'Brien","version":27,"id":"74334","lastModified":"1301901950000","name":"Ed O'Brien","type":"Person","_key":"55085"} +{"label":"Phil Selway","version":26,"id":"74335","lastModified":"1301901647000","name":"Phil Selway","type":"Person","_key":"55086"} +{"label":"Thom Yorke","version":27,"id":"74336","lastModified":"1301901780000","name":"Thom Yorke","type":"Person","_key":"55087"} +{"label":"Meet Bill","description":"A guy fed up with his job and married to a cheating wife reluctantly mentors a rebellious teen.","id":"13243","runtime":97,"imdbId":"tt0790623","trailer":"http:\/\/www.youtube.com\/watch?v=FK159S6cz8Y","version":173,"lastModified":"1301902637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26e\/4bc93c20017a3c57fe01926e\/meet-bill-mid.jpg","studio":"Greenestreet Films","genre":"Comedy","title":"Meet Bill","releaseDate":1189209600000,"language":"en","tagline":"A comedy about someone you know.","type":"Movie","_key":"55088"} +{"label":"Bernie Goldmann","version":37,"id":"65377","lastModified":"1301901647000","name":"Bernie Goldmann","type":"Person","_key":"55089"} +{"label":"Melisa Wallack","version":25,"id":"74342","lastModified":"1301901674000","name":"Melisa Wallack","type":"Person","_key":"55090"} +{"label":"The Privileged Planet","description":"No overview found.","id":"13244","runtime":0,"imdbId":"tt0495399","version":81,"lastModified":"1300979589000","genre":"Documentary","title":"The Privileged Planet","releaseDate":1096934400000,"language":"en","type":"Movie","_key":"55091"} +{"label":"Atanarjuat","description":"Based on a local legend and set in an unknown era, it deals with universal themes of love, possessiveness, family, jealousy and power. Beautifully shot, and acted by Inuit people, it portrays a time when people fought duels by taking turns to punch each other until one was unconscious, made love on the way to the caribou hunt, ate walrus meat and lit their igloos with seal-oil lamps. ","id":"13245","runtime":172,"imdbId":"tt0285441","version":120,"lastModified":"1301902856000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27b\/4bc93c24017a3c57fe01927b\/atanarjuat-mid.jpg","genre":"Documentary","title":"Atanarjuat","releaseDate":1012521600000,"language":"en","type":"Movie","_key":"55092"} +{"label":"Zacharias Kunuk","version":23,"id":"97296","lastModified":"1301902145000","name":"Zacharias Kunuk","type":"Person","_key":"55093"} +{"label":"Natar Ungalaaq","version":19,"id":"97299","lastModified":"1301902525000","name":"Natar Ungalaaq","type":"Person","_key":"55094"} +{"label":"Sylvia Ivalu","version":18,"id":"97300","lastModified":"1301902328000","name":"Sylvia Ivalu","type":"Person","_key":"55095"} +{"label":"Peter-Henry Arnatsiaq","version":19,"id":"97301","lastModified":"1301902678000","name":"Peter-Henry Arnatsiaq","type":"Person","_key":"55096"} +{"label":"Lucy Tulugarjuk","version":22,"id":"97302","lastModified":"1301902328000","name":"Lucy Tulugarjuk","type":"Person","_key":"55097"} +{"label":"Pakak Innuksuk","version":19,"id":"97303","lastModified":"1301902678000","name":"Pakak Innuksuk","type":"Person","_key":"55098"} +{"label":"A Garfield Christmas Special","description":"Garfield, Jon and Odie go to Jon's grandmother's house for Christmas, where Garfield finds a present for Grandma.","id":"13246","runtime":30,"imdbId":"tt0302596","version":68,"lastModified":"1301904943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4d879b177b9aa137c000008d\/a-garfield-christmas-special-mid.jpg","genre":"Animation","title":"A Garfield Christmas Special","releaseDate":567043200000,"language":"en","type":"Movie","_key":"55099"} +{"label":"Phil Roman","version":33,"id":"78615","lastModified":"1301901834000","name":"Phil Roman","type":"Person","_key":"55100"} +{"label":"George Singer","version":16,"id":"78621","lastModified":"1301901870000","name":"George Singer","type":"Person","_key":"55101"} +{"label":"Lorenzo Music","version":21,"id":"78616","lastModified":"1301901858000","name":"Lorenzo Music","type":"Person","_key":"55102"} +{"label":"Thom Huge","version":21,"id":"78617","lastModified":"1301901646000","name":"Thom Huge","type":"Person","_key":"55103"} +{"label":"Pat Harrington Jr.","version":19,"id":"78618","lastModified":"1301902074000","name":"Pat Harrington Jr.","type":"Person","_key":"55104"} +{"label":"David L. Lander","version":20,"id":"78619","lastModified":"1301902127000","name":"David L. Lander","type":"Person","_key":"55105"} +{"label":"A Muppet Family Christmas","description":"In this one-hour Christmas special, Fozzie Bear surprises his mother Emily on Christmas Eve by bringing the entire Muppet gang to her farm to celebrate the holidays. Doc and his dog Sprocket, who had planned a quiet Christmas, end up joining the Muppets in their holiday activities and preparations.The Sesame Street regulars, including Big Bird, Bert, Ernie and others, join the festivities, but to Kermit's dismay, the only one missing is Miss Piggy, who has been caught in a snowstorm.","id":"13247","runtime":48,"imdbId":"tt0251282","trailer":"http:\/\/www.youtube.com\/watch?v=O6r6fU3kI_4","version":104,"lastModified":"1301904400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28d\/4bc93c25017a3c57fe01928d\/a-muppet-family-christmas-mid.jpg","studio":"Jim Henson Company, The","genre":"Comedy","title":"A Muppet Family Christmas","releaseDate":630547200000,"language":"en","type":"Movie","_key":"55106"} +{"label":"Peter Harris","version":20,"id":"99205","lastModified":"1301902172000","name":"Peter Harris","type":"Person","_key":"55107"} +{"label":"Bah Humduck!: A Looney Tunes Christmas","description":"In this adaptation of Charles Dickens' A Christmas Carol, Daffy Duck is the greedy proprietor of the Lucky Duck Mega-Mart and all he can think about is the money to be made during the holiday season.","id":"13248","runtime":46,"imdbId":"tt0896522","version":107,"lastModified":"1301907390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/296\/4bc93c26017a3c57fe019296\/bah-humduck-a-looney-tunes-christmas-mid.jpg","title":"Bah Humduck!: A Looney Tunes Christmas","releaseDate":1163462400000,"language":"en","type":"Movie","_key":"55108"} +{"label":"Seraphim Falls","description":"The Civil War has ended, but Colonel Morsman Carver (Liam Neeson) is on one final mission: to kill Gideon (Pierce Brosnan), no matter what it takes. Launched by a gunshot and propelled by rage, the relentless pursuit takes the two men through frigid snow-capped mountains and arid deserts, far from the comforts and codes of civilisation, into the bloodiest recesses of thier own souls.","id":"13249","runtime":115,"imdbId":"tt0479537","trailer":"http:\/\/www.youtube.com\/watch?v=753","version":247,"lastModified":"1301902971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc93c29017a3c57fe0192a7\/seraphim-falls-mid.jpg","genre":"Action","title":"Seraphim Falls","releaseDate":1169769600000,"language":"en","type":"Movie","_key":"55109"} +{"label":"David Von Ancken","version":21,"id":"77458","lastModified":"1301901836000","name":"David Von Ancken","type":"Person","_key":"55110"} +{"label":"Butterfly On A Wheel","description":"A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point. ","id":"13250","runtime":95,"imdbId":"tt0489664","version":240,"lastModified":"1302053653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4bc93c2a017a3c57fe0192b8\/butterfly-on-a-wheel-mid.jpg","studio":"Icon Productions","genre":"Crime","title":"Butterfly On A Wheel","releaseDate":1185494400000,"language":"en","type":"Movie","_key":"55111"} +{"label":"Mike Barker","version":28,"id":"77964","lastModified":"1301901567000","name":"Mike Barker","type":"Person","_key":"55112"} +{"label":"Emma Karwandy","version":18,"id":"78411","lastModified":"1301901430000","name":"Emma Karwandy","type":"Person","_key":"55113"} +{"label":"Peter Keleghan","version":28,"id":"78412","lastModified":"1301901424000","name":"Peter Keleghan","type":"Person","_key":"55114"} +{"label":"Samantha Ferris","version":25,"id":"25383","lastModified":"1301901347000","name":"Samantha Ferris","type":"Person","_key":"55115"} +{"label":"The Walker","description":"An escort who caters to Washington D.C.'s society ladies becomes involved in a murder case.","id":"13251","runtime":108,"imdbId":"tt0783608","version":341,"lastModified":"1301903907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ca\/4bc93c2c017a3c57fe0192ca\/the-walker-mid.jpg","genre":"Drama","title":"The Walker","releaseDate":1191110400000,"language":"en","type":"Movie","_key":"55116"} +{"label":"Cleaner","description":"Single father and former cop Tom Cutler has an unusual occupation: he cleans up death scenes. But when he's called in to sterilize a wealthy suburban residence after a brutal shooting, Cutler is shocked to learn he may have unknowingly erased crucial evidence, entangling himself in a dirty criminal cover-up.","id":"13252","runtime":88,"imdbId":"tt0896798","trailer":"http:\/\/www.youtube.com\/watch?v=1461","version":193,"lastModified":"1301902145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d8\/4c15f7227b9aa105c20000d8\/cleaner-mid.jpg","studio":"Anonymous Content","genre":"Action","title":"Cleaner","releaseDate":1189468800000,"language":"en","type":"Movie","_key":"55117"} +{"label":"Keke Palmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d59\/4cba5ad97b9aa138d7000d59\/keke-palmer-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Lauren Keyana<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> \"<B>Keke<\/B>\" <B>Palmer<\/B> was born August 26, 1993 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Robbins<\/st1:City>, <st1:State w:st=\"on\">Illinois<\/st1:State><\/st1:place>. Her family moved to <st1:City w:st=\"on\"><st1:place w:st=\"on\"","version":44,"id":"74688","lastModified":"1302082712000","name":"Keke Palmer","type":"Person","_key":"55118"} +{"label":"Maggie Lawson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b16\/4cf3cf495e73d62387000b16\/maggie-lawson-profile.jpg","version":70,"id":"51873","lastModified":"1302082712000","name":"Maggie Lawson","type":"Person","_key":"55119"} +{"label":"Futurama: Bender's Game","description":"Futurama: Bender's Game is the third of the four direct-to-DVD Futurama films that make up the show's fifth season. It was released on November 4, 2008 on DVD and Blu-Ray.According to the Beast with a Billion Backs commentary, the film, which spoofs Dungeons & Dragons, was in production when Dungeons & Dragons creator, E. Gary Gygax, died. The film contains a post-credits tribute to Gygax in the form of a title card and a clip of him from the episode \"Anthology of Interest I\". Elements of J. R. ","id":"13253","runtime":88,"imdbId":"tt1054486","trailer":"http:\/\/www.youtube.com\/watch?v=1517","version":293,"lastModified":"1302053219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/300\/4bc93c32017a3c57fe019300\/futurama-bender-s-game-mid.jpg","studio":"20th Century Fox Television","genre":"Action","title":"Futurama: Bender's Game","releaseDate":1225756800000,"language":"en","tagline":"All-New Feature-Length Quest","type":"Movie","_key":"55120"} +{"label":"The Living And The Dead","description":"A descent into Hell is triggered when \"Ex-Lord\" Donald Brocklebank finds that he must leave Longleigh House for London to find a way to pay for the medical treatments for his wife Nancy. Alone, his over-protected, delusional, adult son, James, fancies himself in charge of the manor house with his terminally ill mother, and barricades the two of them into the house.","id":"13254","runtime":0,"imdbId":"tt0483719","version":560,"lastModified":"1302081816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30e\/4bc93c34017a3c57fe01930e\/the-living-and-the-dead-mid.jpg","genre":"Thriller","title":"The Living And The Dead","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55121"} +{"label":"Conspiracy","description":"A Gulf War veteran with PTSD (Kilmer) heads to a small town to find his friend. When he arrives his friend and his family have vanished and the townsfolk afraid to answer questions about their disappearance. He soon discovers that the town is owned and controlled by one man (Gary Cole) and he doesn't like people asking questions.","id":"13255","runtime":90,"imdbId":"tt1043838","version":224,"lastModified":"1301903528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4bc93c34017a3c57fe019317\/conspiracy-mid.jpg","studio":"Hollywood Media Bridge","genre":"Action","title":"Conspiracy","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"55122"} +{"label":"Mutant Chronicles","description":"It's the year 2707. Earth's natural resources have all but been exhausted by mankind. Battles rage for the remainder between the competing Corporations. During one such battle the seal is broken and awakens an ancient and deadly machine that was once defeated thousands of years ago. The order that awaited it's return must now lead a small group of soldiers to destroy it once and for all.","id":"13256","runtime":111,"imdbId":"tt0490181","version":258,"lastModified":"1302076408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33d\/4bc93c3b017a3c57fe01933d\/mutant-chronicles-mid.jpg","studio":"Edward R. Pressman Film Corporation","genre":"Action","title":"Mutant Chronicles","releaseDate":1218067200000,"language":"en","tagline":"Welcome to the 23rd century. The new dark ages.","type":"Movie","_key":"55123"} +{"label":"Simon Hunter","version":20,"id":"77658","lastModified":"1301901547000","name":"Simon Hunter","type":"Person","_key":"55124"} +{"label":"Mr. Woodcock","description":"Letting Go Of Your Past Is Hard... Especially When It's Dating Your Mom.","id":"13257","runtime":87,"imdbId":"tt0419984","trailer":"http:\/\/www.youtube.com\/watch?v=1709","version":253,"lastModified":"1302052293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34b\/4bc93c3c017a3c57fe01934b\/mr-woodcock-mid.jpg","studio":"Avery Pix","genre":"Comedy","title":"Mr. Woodcock","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"55125"} +{"label":"Son of Rambow","description":"Set on a long English summer in the early 80's, Son Of Rambow is a comedy about friendship, faith and the weird business of growing up.","id":"13258","runtime":96,"imdbId":"tt0845046","trailer":"http:\/\/www.youtube.com\/watch?v=1797","version":167,"lastModified":"1301907561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35d\/4bc93c3e017a3c57fe01935d\/son-of-rambow-mid.jpg","studio":"Hammer & Tongs","genre":"Comedy","title":"Son of Rambow","releaseDate":1169424000000,"language":"en","tagline":"Make Believe. Not War.","type":"Movie","_key":"55126"} +{"label":"Neil Dudgeon","version":27,"id":"87097","lastModified":"1301901722000","name":"Neil Dudgeon","type":"Person","_key":"55127"} +{"label":"Bill Milner","version":26,"id":"81260","lastModified":"1301901398000","name":"Bill Milner","type":"Person","_key":"55128"} +{"label":"Anna Wing","version":19,"id":"93490","lastModified":"1301901722000","name":"Anna Wing","type":"Person","_key":"55129"} +{"label":"Tallulah Evans","version":18,"id":"93492","lastModified":"1301902248000","name":"Tallulah Evans","type":"Person","_key":"55130"} +{"label":"Emilie Chesnais","version":19,"id":"93493","lastModified":"1301902248000","name":"Emilie Chesnais","type":"Person","_key":"55131"} +{"label":"American Teen","description":"A documentary on seniors at a high school in a small Indiana town and their various cliques.","id":"13259","runtime":95,"imdbId":"tt0486259","version":224,"lastModified":"1302018427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4bc93c3f017a3c57fe019366\/american-teen-mid.jpg","studio":"Paramount Vantage","genre":"Documentary","title":"American Teen","releaseDate":1216944000000,"language":"en","tagline":"Remember high school? It's gotten worse.","type":"Movie","_key":"55132"} +{"label":"Hannah Bailey","version":21,"id":"74345","lastModified":"1301902145000","name":"Hannah Bailey","type":"Person","_key":"55133"} +{"label":"Nanette Burstein","version":26,"id":"96439","lastModified":"1301901950000","name":"Nanette Burstein","type":"Person","_key":"55134"} +{"label":"Semi-Pro","description":"Jackie Moon, the owner-coach-player of the American Basketball Association's Flint Michigan Tropics, rallies his teammates to make their NBA dreams come true.","id":"13260","runtime":91,"imdbId":"tt0839980","trailer":"http:\/\/www.youtube.com\/watch?v=tNGqlzoHrrI","version":228,"lastModified":"1302074896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a19\/4c0ad1fb017a3c29a6000a19\/semi-pro-mid.jpg","studio":"Donners' Company","genre":"Comedy","title":"Semi-Pro","releaseDate":1203379200000,"language":"en","tagline":"Putting the funk into the dunk.","type":"Movie","_key":"55135"} +{"label":"Kent Alterman","version":28,"id":"65702","lastModified":"1302074895000","name":"Kent Alterman","type":"Person","_key":"55136"} +{"label":"Andrew Daly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19f\/4d10511c7b9aa1148200019f\/andrew-daly-profile.jpg","version":31,"id":"95875","lastModified":"1302074896000","name":"Andrew Daly","type":"Person","_key":"55137"} +{"label":"Shenmue: The Movie","description":"The fictional story of Shenmue begins on November 29, 1986 in the perspective of the protagonist Ryo Hazuki returning home to his family dojo to witness his father, Iwao Hazuki battling with a man dressed in Chinese attire, who demands he hand over an item known as the \"Dragon Mirror\". Ryo intervenes in battle after his father is felled, but is injured by a blow from Lan Di.","id":"13273","runtime":88,"imdbId":"tt0971215","trailer":"http:\/\/www.youtube.com\/watch?v=756","version":702,"lastModified":"1302018384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/396\/4bc93c47017a3c57fe019396\/shenmu-mid.jpg","title":"Shenmue: The Movie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55138"} +{"label":"Yu Suzuki","version":17,"id":"96544","lastModified":"1301903074000","name":"Yu Suzuki","type":"Person","_key":"55139"} +{"label":"Last Order: Final Fantasy VII","description":"In the events of Last Order, taking five years before the beginning of Final Fantasy VII itself, Sephiroth was ordered to inspect the Mako Reactor outside the town of Nibelheim with a small entourage, consisting of one other member of SOLDIER and a few Shin-Ra MPs. Among this group was SOLDIER 1st Class member Zack and his buddy, a 16-year-old Shin-Ra trooper named Cloud Strife.","id":"13274","runtime":25,"imdbId":"tt0489134","version":67,"lastModified":"1301904474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39f\/4bc93c48017a3c57fe01939f\/last-order-final-fantasy-vii-mid.jpg","genre":"Action","title":"Last Order: Final Fantasy VII","releaseDate":1171929600000,"language":"en","type":"Movie","_key":"55140"} +{"label":" Morio Asaka","version":16,"id":"137703","lastModified":"1301902403000","name":" Morio Asaka","type":"Person","_key":"55141"} +{"label":"Annapolis","description":"Jake Huard, from a shipbuilders family, promised his dying mother he'ld make it to Anapolis Naval Academy. Thanks to tenaciously bugging a Congressman, he's selected despite dubious grades. Once inside, Jake soon proves sub-standard academically. Constantly challenged to his limits, repeatedly made the 'over-cocky' reason for the entire class to suffer, Jake nearly quits, but after facing his utterly un-supportive father's gloating returns just in time. Stubborn Jake finds support withs mates as","id":"13275","runtime":108,"imdbId":"tt0417433","version":225,"lastModified":"1302075345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b5\/4bc93c4a017a3c57fe0193b5\/annapolis-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"Annapolis","releaseDate":1138320000000,"language":"en","type":"Movie","_key":"55142"} +{"label":"Jim Parrack","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5b2\/4d1695885e73d6083e0085b2\/jim-parrack-profile.jpg","version":30,"id":"83968","lastModified":"1301901527000","name":"Jim Parrack","type":"Person","_key":"55143"} +{"label":"Deadwater","description":"No overview found.","id":"13276","runtime":90,"imdbId":"tt0914364","version":54,"lastModified":"1301907259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c2\/4bc93c4b017a3c57fe0193c2\/deadwater-mid.jpg","title":"Deadwater","releaseDate":1211241600000,"language":"en","type":"Movie","_key":"55144"} +{"label":"Contract Killers","description":"A CIA assassin attempts to break out of the contract killing business to try to lead a normal life. But when \"the system\" tracks her down and frames her for the death of her husband, she embarks on a path of revenge that leads her back into the life she tried to hard to abandon.","id":"13277","runtime":86,"imdbId":"tt1001548","version":131,"lastModified":"1301904545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cb\/4bc93c4c017a3c57fe0193cb\/contract-killers-mid.jpg","studio":"Dirty Martini Productions","genre":"Action","title":"Contract Killers","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"55145"} +{"label":"Frida Farrell","version":20,"id":"90623","lastModified":"1301902074000","name":"Frida Farrell","type":"Person","_key":"55146"} +{"label":"Justin Rhodes","version":20,"id":"113939","lastModified":"1301902892000","name":"Justin Rhodes","type":"Person","_key":"55147"} +{"label":"Lakeview Terrace","description":"An LAPD officer begins to terrorize his next-door neighbors after learning they are an interracial married couple.","id":"13279","runtime":110,"imdbId":"tt0947802","trailer":"http:\/\/www.youtube.com\/watch?v=UiFuO0qI4E0","version":289,"lastModified":"1302050904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ee\/4bc93c51017a3c57fe0193ee\/lakeview-terrace-mid.jpg","studio":"Overbrook Entertainment","genre":"Drama","title":"Lakeview Terrace","releaseDate":1221782400000,"language":"en","type":"Movie","_key":"55148"} +{"label":"Ron Glass","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/233\/4bdf28ca017a3c35b5000233\/ron-glass-profile.jpg","version":54,"id":"74570","lastModified":"1301901409000","name":"Ron Glass","type":"Person","_key":"55149"} +{"label":"Regine Nehy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/873\/4d6021777b9aa154bf003873\/regine-nehy-profile.jpg","version":30,"birthday":"563842800000","id":"74571","birthplace":"Philadelphia, Pennsylvania, USA","lastModified":"1301901629000","name":"Regine Nehy","type":"Person","_key":"55150"} +{"label":"Jaishon Fisher","version":21,"id":"74572","lastModified":"1301901756000","name":"Jaishon Fisher","type":"Person","_key":"55151"} +{"label":"Robert Pine","version":26,"id":"74573","lastModified":"1301901821000","name":"Robert Pine","type":"Person","_key":"55152"} +{"label":"Caleeb Pinkett","version":21,"id":"74574","lastModified":"1301901921000","name":"Caleeb Pinkett","type":"Person","_key":"55153"} +{"label":"Robert Dahey","version":21,"id":"74575","lastModified":"1301901921000","name":"Robert Dahey","type":"Person","_key":"55154"} +{"label":"Ho-Jung","version":21,"id":"74576","lastModified":"1301901756000","name":"Ho-Jung","type":"Person","_key":"55155"} +{"label":"Michael Sean Tighe","version":21,"id":"74578","lastModified":"1301901921000","name":"Michael Sean Tighe","type":"Person","_key":"55156"} +{"label":"Kickin It Old Skool","description":"\"Kickin' It Old Skool\" revolves around a 12-year-old breakdancer, who in 1986 hits his head while performing at a talent show and as a result is comatose for 20 years. He awakens to find he is a grown man. With the mind and experience of a young kid, he attempts to revive his and his dance team's short-lived career with the hopes of helping support his parents' failing yogurt shop.","id":"13280","runtime":108,"imdbId":"tt0772178","trailer":"http:\/\/www.youtube.com\/watch?v=760","version":151,"lastModified":"1301905036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/403\/4bc93c54017a3c57fe019403\/kickin-it-old-skool-mid.jpg","genre":"Comedy","title":"Kickin It Old Skool","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"55157"} +{"label":"Maria Menounos","version":19,"id":"74353","lastModified":"1301901870000","name":"Maria Menounos","type":"Person","_key":"55158"} +{"label":"Harvey Glazer","version":32,"id":"62658","lastModified":"1301901365000","name":"Harvey Glazer","type":"Person","_key":"55159"} +{"label":"Death Race 2000","description":"In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.","id":"13282","runtime":84,"imdbId":"tt0072856","version":303,"lastModified":"1302074520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/411\/4bc93c58017a3c57fe019411\/death-race-2000-mid.jpg","studio":"New World Pictures","genre":"Action","title":"Death Race 2000","releaseDate":167788800000,"language":"en","type":"Movie","_key":"55160"} +{"label":"Simone Griffeth","version":24,"id":"74351","lastModified":"1301901562000","name":"Simone Griffeth","type":"Person","_key":"55161"} +{"label":"Roberta Collins","version":29,"id":"74352","lastModified":"1301901471000","name":"Roberta Collins","type":"Person","_key":"55162"} +{"label":"Fred Grandy","version":21,"id":"100561","lastModified":"1301902180000","name":"Fred Grandy","type":"Person","_key":"55163"} +{"label":"Leslie McRae","version":23,"id":"100562","lastModified":"1301902505000","name":"Leslie McRae","type":"Person","_key":"55164"} +{"label":"Barbie as the Island Princess","description":"Barbie plays Rosella in this new musical film. Shipwrecked as a child, Rosella grows up on the island under the watchful eyes of her loving animal friends. The arrival of Prince Antonio leads Rosella and her furry pals to explore civilization and ultimately save the kingdom by uncovering a secret plot.","id":"13283","runtime":86,"imdbId":"tt1092053","version":208,"lastModified":"1302050362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42c\/4bc93c5a017a3c57fe01942c\/barbie-as-the-island-princess-mid.jpg","studio":"Universal Studios","genre":"Animation","title":"Barbie as the Island Princess","releaseDate":1190073600000,"language":"en","type":"Movie","_key":"55165"} +{"label":"Barbie: Fairytopia","description":"Elina is a flower fairy who discovers that her home of Magic Meadow has been overcome by a horrible malady that is killing the flowers and making the fairies unable to fly. With the help of Bibble, a puffball and a giant butterfly named Hue she attempts to find Azura, a Guardian Fairy. She's challenged along the way by the evil Laverna who wants to usurp the Enchantress, the ruler of Fairytopia.","id":"13284","runtime":70,"imdbId":"tt0450982","version":153,"lastModified":"1301903711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43e\/4bc93c5b017a3c57fe01943e\/barbie-fairytopia-mid.jpg","genre":"Animation","title":"Barbie: Fairytopia","releaseDate":1110240000000,"language":"en","type":"Movie","_key":"55166"} +{"label":"Lee Tockar","version":27,"id":"74359","lastModified":"1301901535000","name":"Lee Tockar","type":"Person","_key":"55167"} +{"label":"Tabitha St. Germain","version":34,"id":"74360","lastModified":"1301901317000","name":"Tabitha St. Germain","type":"Person","_key":"55168"} +{"label":"Venus Terzo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16b\/4ceeae725e73d6531800016b\/venus-terzo-profile.jpg","version":29,"id":"74361","lastModified":"1301901846000","name":"Venus Terzo","type":"Person","_key":"55169"} +{"label":"Mark Oliver","version":25,"id":"52284","lastModified":"1301901998000","name":"Mark Oliver","type":"Person","_key":"55170"} +{"label":"Michael Dobson","version":31,"id":"74362","lastModified":"1301901870000","name":"Michael Dobson","type":"Person","_key":"55171"} +{"label":"Scott McNeil","version":31,"id":"74363","lastModified":"1301901766000","name":"Scott McNeil","type":"Person","_key":"55172"} +{"label":"Brian Drummond","version":35,"id":"74364","lastModified":"1301901447000","name":"Brian Drummond","type":"Person","_key":"55173"} +{"label":"Britt McKillip","version":22,"id":"74365","lastModified":"1301901934000","name":"Britt McKillip","type":"Person","_key":"55174"} +{"label":"Nancy Sorel","version":21,"id":"74366","lastModified":"1301902175000","name":"Nancy Sorel","type":"Person","_key":"55175"} +{"label":"Barbie Fairytopia: Mermaidia","description":"In this animated follow-up to Fairytopia, Elina (played by Barbie) enlists the help of a mermaid, Nori, to save her friend Nalu, a merman prince who has been captured by the wicked Laverna.","id":"13285","runtime":75,"imdbId":"tt0775425","version":172,"lastModified":"1302028060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4bc93c5b017a3c57fe01944c\/barbie-fairytopia-mermaidia-mid.jpg","genre":"Animation","title":"Barbie Fairytopia: Mermaidia","releaseDate":1110240000000,"language":"en","type":"Movie","_key":"55176"} +{"label":"Christopher Gaze","version":26,"id":"74367","lastModified":"1301901580000","name":"Christopher Gaze","type":"Person","_key":"55177"} +{"label":"Andrea Libman","version":21,"id":"74368","lastModified":"1301901870000","name":"Andrea Libman","type":"Person","_key":"55178"} +{"label":"Brittney Wilson","version":24,"id":"74369","lastModified":"1301901590000","name":"Brittney Wilson","type":"Person","_key":"55179"} +{"label":"Blu Mankuma","version":41,"id":"44150","lastModified":"1301904086000","name":"Blu Mankuma","type":"Person","_key":"55180"} +{"label":"Nicole Oliver","version":26,"id":"74370","lastModified":"1301901535000","name":"Nicole Oliver","type":"Person","_key":"55181"} +{"label":"Traitor","description":"When straight arrow FBI agent Roy Clayton heads up the investigation into a dangerous international conspiracy, all clues seem to lead back to former U.S. Special Operations officer, Samir Horn.","id":"13291","runtime":114,"imdbId":"tt0988047","trailer":"http:\/\/www.youtube.com\/watch?v=-lrsMz0LQ9M","homepage":"http:\/\/www.traitor-themovie.com\/","version":318,"lastModified":"1302049850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/475\/4bc93c66017a3c57fe019475\/traitor-mid.jpg","studio":"Overture Films","genre":"Crime","title":"Traitor","releaseDate":1219276800000,"language":"en","type":"Movie","_key":"55182"} +{"label":"Hassam Ghancy","version":24,"id":"81838","lastModified":"1301901089000","name":"Hassam Ghancy","type":"Person","_key":"55183"} +{"label":"Mozhan Marn\u00f2","version":24,"id":"81839","lastModified":"1301901124000","name":"Mozhan Marn\u00f2","type":"Person","_key":"55184"} +{"label":"Adeel Akhtar","version":23,"id":"81840","lastModified":"1301901156000","name":"Adeel Akhtar","type":"Person","_key":"55185"} +{"label":"Jeffrey Nachmanoff","version":38,"id":"6047","lastModified":"1302078356000","name":"Jeffrey Nachmanoff","type":"Person","_key":"55186"} +{"label":"Die Geschichte vom armen Hassan","description":"No overview found.","id":"13292","runtime":60,"imdbId":"tt0051650","version":27,"lastModified":"1301907378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/493\/4bc93c6b017a3c57fe019493\/die-geschichte-vom-armen-hassan-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Die Geschichte vom armen Hassan","releaseDate":-350697600000,"language":"en","type":"Movie","_key":"55187"} +{"label":"China O'Brien","description":"China O'brien; big city police woman; martial arts trainer, is forced to hand in her badge and head home to her father and the small town where she grew up. The peaceful town she knew is now struggling against the clutches of organized crime. When her father, the town sheriff, is killed China decides to run for his position and clean up the town. The poll results spark a series of confrontations that finally decide who runs the town . . .","id":"13293","runtime":86,"imdbId":"tt0099260","version":75,"lastModified":"1301906155000","studio":"Golden Harvest Company","genre":"Action","title":"China O'Brien","releaseDate":631152000000,"language":"en","type":"Movie","_key":"55188"} +{"label":"Cynthia Rothrock","version":28,"id":"74375","lastModified":"1301901950000","name":"Cynthia Rothrock","type":"Person","_key":"55189"} +{"label":"Die Geschichte vom kleinen Muck","description":"No overview found.","id":"13294","runtime":100,"imdbId":"tt0045470","version":55,"lastModified":"1301907390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc93c6b017a3c57fe01949c\/die-geschichte-vom-kleinen-muck-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Die Geschichte vom kleinen Muck","releaseDate":-505699200000,"language":"en","type":"Movie","_key":"55190"} +{"label":"China O'Brien II","description":"No overview found.","id":"13295","runtime":92,"imdbId":"tt0101579","version":45,"lastModified":"1301906151000","studio":"Golden Harvest Company","genre":"Action","title":"China O'Brien II","releaseDate":662688000000,"language":"en","type":"Movie","_key":"55191"} +{"label":"Hokkabaz","description":"\u0130skender (Cem Y\u0131lmaz) hokkabazd\u0131r. Yani asl\u0131nda sihirbazd\u0131r. Ama onun ve \u00e7ocukluk arkada\u015f\u0131 Maradona'n\u0131n (Tuna Orhan) d\u0131\u015f\u0131nda herkes onun hokkabaz oldu\u011funu d\u00fc\u015f\u00fcnmektedir. \u0130stanbul'dan h\u0131zla ka\u00e7mak zorunda kalan ikili, turne program\u0131na Sait'i (Mazhar Alanson) de dahil ederek b\u00fcy\u00fck risk al\u0131rlar. Baba Sait, \u0130skender'i takdir etmeyi uzun y\u0131llar evvel b\u0131rakm\u0131\u015ft\u0131r. Turne \u00fc\u00e7l\u00fcy\u00fc kayna\u015ft\u0131r\u0131rken, ayn\u0131 zamanda g\u00f6rkemli bir da\u011f\u0131lmaya sebep olur. \u0130skender, Maradona ve Sait, yol arkada\u015flar\u0131 Fatma ile bir da\u011f\u0131","id":"13296","runtime":122,"imdbId":"tt0827503","homepage":"http:\/\/www.hokkabazfilm.com\/","version":104,"lastModified":"1301905591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ae\/4bc93c6d017a3c57fe0194ae\/hokkabaz-mid.jpg","studio":"Besiktas K\u00fclt\u00fcr Merkezi (BKM)","genre":"Comedy","title":"Hokkabaz","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"55192"} +{"label":"Cem Y\u0131lmaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f0e\/4d14eea47b9aa11488001f0e\/cem-y-lmaz-profile.jpg","biography":"<P>\u200bCem Y\u0131lmaz (d. 23 Nisan 1973, \u0130stanbul) komedyen, oyuncu, m\u00fczisyen, karikat\u00fcrist, senarist ve y\u00f6netmen.<\/P>\r\n<P>Do\u011fumundan sonra \u00e7ocuklu\u011fu 11 ya\u015f\u0131na kadar Kocamustafapa\u015fa - Samatya'da ge\u00e7ti. Kocamustafapa\u015fa'da ki Mehmet Akif Ersoy \u0130lkokulu'nda 4. s\u0131n\u0131fta okurken aile Bah\u00e7elievler'e ta\u015f\u0131nd\u0131. Ortaokulu Bah\u00e7elievler Kaz\u0131m Karabekir Ortaokulu'nda bitirdi. Lise \u00f6\u011frenimi Etiler Anadolu Otelcilik ve Turizm Meslek Lisesi'nde g\u00f6rm\u00fc\u015ft\u00fcr. Bo\u011fazi\u00e7i \u00dcniversitesi Turizm ve Otel Y\u00f6netimi b\u00f6l\u00fcm\u00fcnde okurken,","version":33,"id":"74376","lastModified":"1301901300000","name":"Cem Y\u0131lmaz","type":"Person","_key":"55193"} +{"label":"Mazhar Alanson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fb\/4d1c4fd55e73d6082e00c1fb\/mazhar-alanson-profile.jpg","biography":"<P>\u200bMahmut Mazhar Alanson (d. 13 \u015eubat 1950, Ankara) T\u00fcrk m\u00fczisyen, gitarist, s\u00f6z yazar\u0131 ve oyuncu. Mazhar-Fuat-\u00d6zkan grubunun vokalisti olarak tan\u0131n\u0131r.<\/P>\r\n<P>Babas\u0131 Ferruh Alanson, annesi Melek Alanson'dur. Ayla Alanson ailenin ilk k\u0131z \u00e7ocu\u011fudur. Daha sonra Aynur Alanson do\u011fmu\u015ftur. En sonunda Ferruh Alanson'un 3. \u00e7ocu\u011fu Mazhar Alanson d\u00fcnyaya gelmi\u015ftir. Babas\u0131 Ferruh Alanson, Ankara Senfoni Orkestras\u0131'nda ba\u015f trompet\u00e7iydi, annesi Melek Alanson ise ilkokul \u00f6\u011fretmeniydi. Teyzesi Neriman Esi Sen","version":23,"id":"87256","lastModified":"1301901845000","name":"Mazhar Alanson","type":"Person","_key":"55194"} +{"label":"\u00d6zlem Tekin","version":17,"id":"143004","lastModified":"1301901983000","name":"\u00d6zlem Tekin","type":"Person","_key":"55195"} +{"label":"G\u00fcrgen \u00d6z","version":16,"id":"143005","lastModified":"1301901878000","name":"G\u00fcrgen \u00d6z","type":"Person","_key":"55196"} +{"label":"Die Geschichte von der G\u00e4nseprinzessin und ihrem treuen Pferd Falada","description":"No overview found.","id":"13297","runtime":80,"imdbId":"tt0095210","version":66,"lastModified":"1301906533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b3\/4bc93c6d017a3c57fe0194b3\/die-geschichte-von-der-ganseprinzessin-und-ihrem-treuen-pferd-falada-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Die Geschichte von der G\u00e4nseprinzessin und ihrem treuen Pferd Falada","releaseDate":601862400000,"language":"en","type":"Movie","_key":"55197"} +{"label":"Dana Moravkov\u00e1","version":16,"id":"141650","lastModified":"1301902414000","name":"Dana Moravkov\u00e1","type":"Person","_key":"55198"} +{"label":"Michaela Kuklov\u00e1","version":16,"id":"141651","lastModified":"1301902414000","name":"Michaela Kuklov\u00e1","type":"Person","_key":"55199"} +{"label":"Eberhard Mellies","version":16,"id":"141652","lastModified":"1301902414000","name":"Eberhard Mellies","type":"Person","_key":"55200"} +{"label":"Regina Beyer","version":16,"id":"141653","lastModified":"1301902414000","name":"Regina Beyer","type":"Person","_key":"55201"} +{"label":"Peter Zimmermann","version":16,"id":"141654","lastModified":"1301902414000","name":"Peter Zimmermann","type":"Person","_key":"55202"} +{"label":"Alexander H\u00f6chst","version":16,"id":"141655","lastModified":"1301902414000","name":"Alexander H\u00f6chst","type":"Person","_key":"55203"} +{"label":"Karsten Janson","version":16,"id":"141656","lastModified":"1301902414000","name":"Karsten Janson","type":"Person","_key":"55204"} +{"label":"Angelika B\u00f6ttiger","version":16,"id":"141657","lastModified":"1301902414000","name":"Angelika B\u00f6ttiger","type":"Person","_key":"55205"} +{"label":"Anne Kasprik","version":16,"id":"141658","lastModified":"1301902414000","name":"Anne Kasprik","type":"Person","_key":"55206"} +{"label":"Silvia Mi\u00dfbach","version":16,"id":"141659","lastModified":"1301902414000","name":"Silvia Mi\u00dfbach","type":"Person","_key":"55207"} +{"label":"Judith Schulz","version":16,"id":"141660","lastModified":"1301902414000","name":"Judith Schulz","type":"Person","_key":"55208"} +{"label":"Andrea Gelhaar","version":16,"id":"141661","lastModified":"1301902414000","name":"Andrea Gelhaar","type":"Person","_key":"55209"} +{"label":"Wolfgang Jaster","version":16,"id":"141662","lastModified":"1301902414000","name":"Wolfgang Jaster","type":"Person","_key":"55210"} +{"label":"Manea Ben Abdul","version":16,"id":"141663","lastModified":"1301902414000","name":"Manea Ben Abdul","type":"Person","_key":"55211"} +{"label":"Mareike Sandig","version":16,"id":"141664","lastModified":"1301902414000","name":"Mareike Sandig","type":"Person","_key":"55212"} +{"label":"Die goldene Jurte","description":"No overview found.","id":"13298","runtime":79,"imdbId":"tt0172504","version":29,"lastModified":"1301908061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b8\/4bc93c6d017a3c57fe0194b8\/die-goldene-jurte-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Die goldene Jurte","releaseDate":-267321600000,"language":"en","type":"Movie","_key":"55213"} +{"label":"Densha Otoko","description":"Densha Otoko (translated as Train Man) is a Japanese movie based on the purportedly true story of a 23-year-old otaku (Japanese geek) who intervened when a drunk man was harassing a woman on a train. The otaku ultimately started dating with her and chronicled his event and his dates with the woman (who became known as \"Herm\u00e8s\") on the Japanese mega-BBS 2channel.","id":"13299","runtime":105,"imdbId":"tt0456121","version":170,"lastModified":"1301832638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c1\/4bc93c6e017a3c57fe0194c1\/densha-otoko-mid.jpg","studio":"Toho Company","genre":"Comedy","title":"Densha Otoko","releaseDate":1158883200000,"language":"en","type":"Movie","_key":"55214"} +{"label":"Takayuki Yamada","version":39,"id":"74377","lastModified":"1301901785000","name":"Takayuki Yamada","type":"Person","_key":"55215"} +{"label":"Hell Ride","description":"Hell Ride is a 2008 feature film from Larry Bishop being released under the \u201cQuentin Tarantino Presents\u201d banner. The film promises to be a blood and sex-soaked tale of motorcycle revenge and retribution.","id":"13300","runtime":84,"imdbId":"tt0411475","trailer":"http:\/\/www.youtube.com\/watch?v=1292","version":268,"lastModified":"1301901502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98a\/4d2fc3c77b9aa140fa00098a\/hell-ride-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Hell Ride","releaseDate":1218153600000,"language":"en","type":"Movie","_key":"55216"} +{"label":"Hans R\u00f6ckle und der Teufel","description":"No overview found.","id":"13301","runtime":75,"imdbId":"tt0071595","version":26,"lastModified":"1301906720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d7\/4bc93c6f017a3c57fe0194d7\/hans-rockle-und-der-teufel-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Hans R\u00f6ckle und der Teufel","releaseDate":142214400000,"language":"en","type":"Movie","_key":"55217"} +{"label":"K\u00f6nig Drosselbart","description":"No overview found.","id":"13302","runtime":74,"imdbId":"tt0059372","version":71,"lastModified":"1301906060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4dc\/4bc93c70017a3c57fe0194dc\/konig-drosselbart-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"K\u00f6nig Drosselbart","releaseDate":-140572800000,"language":"en","type":"Movie","_key":"55218"} +{"label":"Achim Schmidtchen","version":20,"id":"77423","lastModified":"1301902074000","name":"Achim Schmidtchen","type":"Person","_key":"55219"} +{"label":"Horst Buder","version":21,"id":"77424","lastModified":"1301902175000","name":"Horst Buder","type":"Person","_key":"55220"} +{"label":"Manfred Heine","version":20,"id":"77425","lastModified":"1301902074000","name":"Manfred Heine","type":"Person","_key":"55221"} +{"label":"Ulrich Balko","version":18,"id":"77426","lastModified":"1301901722000","name":"Ulrich Balko","type":"Person","_key":"55222"} +{"label":"Klaus Piontek","version":20,"id":"77427","lastModified":"1301902074000","name":"Klaus Piontek","type":"Person","_key":"55223"} +{"label":"Werner Kamenik","version":20,"id":"77428","lastModified":"1301902074000","name":"Werner Kamenik","type":"Person","_key":"55224"} +{"label":"Christian Weisbrod","version":20,"id":"77429","lastModified":"1301902074000","name":"Christian Weisbrod","type":"Person","_key":"55225"} +{"label":"Hatifa","description":"No overview found.","id":"13303","runtime":85,"imdbId":"tt0186195","version":28,"lastModified":"1301905320000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e1\/4bc93c70017a3c57fe0194e1\/hatifa-mid.jpg","studio":"DEFA","title":"Hatifa","releaseDate":-297820800000,"language":"en","type":"Movie","_key":"55226"} +{"label":"Das Zauberm\u00e4nnchen","description":"No overview found.","id":"13304","runtime":73,"imdbId":"tt0307693","version":30,"lastModified":"1300979599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4c7a95697b9aa176c00001ce\/das-zaubermannchen-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Das Zauberm\u00e4nnchen","releaseDate":-297475200000,"language":"en","type":"Movie","_key":"55227"} +{"label":"Schneewei\u00dfchen und Rosenrot","description":"No overview found.","id":"13305","runtime":70,"imdbId":"tt0210964","version":57,"lastModified":"1302025561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e6\/4bc93c70017a3c57fe0194e6\/schneeweichen-und-rosenrot-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Schneewei\u00dfchen und Rosenrot","releaseDate":300067200000,"language":"en","type":"Movie","_key":"55228"} +{"label":"Julie Juristov\u00e1","version":19,"id":"77430","lastModified":"1301901870000","name":"Julie Juristov\u00e1","type":"Person","_key":"55229"} +{"label":"Katrin Martin","version":19,"id":"77431","lastModified":"1301902074000","name":"Katrin Martin","type":"Person","_key":"55230"} +{"label":"Bodo Wolf","version":19,"id":"77432","lastModified":"1301901870000","name":"Bodo Wolf","type":"Person","_key":"55231"} +{"label":"Johannes Wieke","version":19,"id":"77433","lastModified":"1301901870000","name":"Johannes Wieke","type":"Person","_key":"55232"} +{"label":"Annemone Haase","version":19,"id":"77434","lastModified":"1301902074000","name":"Annemone Haase","type":"Person","_key":"55233"} +{"label":"Hajo Mende","version":19,"id":"77435","lastModified":"1301902074000","name":"Hajo Mende","type":"Person","_key":"55234"} +{"label":"Pedro Hebenstreit","version":19,"id":"77436","lastModified":"1301901870000","name":"Pedro Hebenstreit","type":"Person","_key":"55235"} +{"label":"Erich L\u00f6wel","version":19,"id":"77437","lastModified":"1301902074000","name":"Erich L\u00f6wel","type":"Person","_key":"55236"} +{"label":"Wie heiratet man einen K\u00f6nig","description":"No overview found.","id":"13306","runtime":74,"imdbId":"tt0065212","version":58,"lastModified":"1301908300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4eb\/4bc93c70017a3c57fe0194eb\/wie-heiratet-man-einen-konig-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Wie heiratet man einen K\u00f6nig","releaseDate":-26956800000,"language":"en","type":"Movie","_key":"55237"} +{"label":"Eberhard Esche","version":21,"id":"77446","lastModified":"1301901991000","name":"Eberhard Esche","type":"Person","_key":"55238"} +{"label":"Sigurd Schulz","version":20,"id":"77447","lastModified":"1301902074000","name":"Sigurd Schulz","type":"Person","_key":"55239"} +{"label":"Alfredo Lugo","version":20,"id":"77449","lastModified":"1301902074000","name":"Alfredo Lugo","type":"Person","_key":"55240"} +{"label":"Lilo Grahn","version":20,"id":"77451","lastModified":"1301902074000","name":"Lilo Grahn","type":"Person","_key":"55241"} +{"label":"Christa Pasemann","version":20,"id":"77453","lastModified":"1301902074000","name":"Christa Pasemann","type":"Person","_key":"55242"} +{"label":"Franz Bonnet","version":20,"id":"77454","lastModified":"1301902074000","name":"Franz Bonnet","type":"Person","_key":"55243"} +{"label":"Hermann Hiesgen","version":20,"id":"77455","lastModified":"1301902074000","name":"Hermann Hiesgen","type":"Person","_key":"55244"} +{"label":"Irene Fischer","version":20,"id":"77456","lastModified":"1301902074000","name":"Irene Fischer","type":"Person","_key":"55245"} +{"label":"Wer rei\u00dft denn gleich vor'm Teufel aus","description":"No overview found.","id":"13307","runtime":92,"imdbId":"tt0230969","version":32,"lastModified":"1301908583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f0\/4bc93c70017a3c57fe0194f0\/wer-reit-denn-gleich-vor-m-teufel-aus-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Wer rei\u00dft denn gleich vor'm Teufel aus","releaseDate":249868800000,"language":"en","type":"Movie","_key":"55246"} +{"label":"Schneewittchen","description":"No overview found.","id":"13308","runtime":63,"imdbId":"tt0173173","version":46,"lastModified":"1301875586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f5\/4bc93c70017a3c57fe0194f5\/schneewittchen-mid.jpg","studio":"DEFA","genre":"Fantasy","title":"Schneewittchen","releaseDate":-259977600000,"language":"en","type":"Movie","_key":"55247"} +{"label":"Auf B\u00f6sem Boden","description":"No overview found.","id":"13309","runtime":82,"imdbId":"tt0823599","homepage":"http:\/\/www.aufboesemboden.com\/","version":34,"lastModified":"1301906151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fa\/4bc93c71017a3c57fe0194fa\/auf-bosem-boden-mid.jpg","genre":"Comedy","title":"Auf B\u00f6sem Boden","releaseDate":1174435200000,"language":"en","type":"Movie","_key":"55248"} +{"label":"Aleksandar Petrovic","version":23,"id":"74378","lastModified":"1301902328000","name":"Aleksandar Petrovic","type":"Person","_key":"55249"} +{"label":"Birgit Stauber","version":20,"id":"74379","lastModified":"1301902328000","name":"Birgit Stauber","type":"Person","_key":"55250"} +{"label":"Kari Rakkola","version":20,"id":"74380","lastModified":"1301902328000","name":"Kari Rakkola","type":"Person","_key":"55251"} +{"label":"Peter Koller","version":20,"id":"74381","lastModified":"1301902328000","name":"Peter Koller","type":"Person","_key":"55252"} +{"label":"Let the Right One In","description":"Oscar, an overlooked and bullied boy, finds love and revenge through Eli, a beautiful but peculiar girl who turns out to be a vampire.","id":"13310","runtime":114,"imdbId":"tt1139797","trailer":"http:\/\/www.youtube.com\/watch?v=sZJUgsZ56vQ","homepage":"http:\/\/www.lettherightoneinmovie.com","version":307,"lastModified":"1302063577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/528\/4bc93c78017a3c57fe019528\/lat-den-ratte-komma-in-mid.jpg","studio":"EFTI","genre":"Drama","title":"Let the Right One In","releaseDate":1224979200000,"language":"en","tagline":"Eli is 12 years old. She's been 12 for over 200 years and, she just moved in next door.","type":"Movie","_key":"55253"} +{"label":"K\u00e5re Hedebrant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b2\/4d3371a45e73d633490022b2\/k-re-hedebrant-profile.jpg","version":32,"birthday":"804290400000","id":"74382","lastModified":"1302063298000","name":"K\u00e5re Hedebrant","type":"Person","_key":"55254"} +{"label":"Lina Leandersson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b6\/4d3371835e73d6335b0020b6\/lina-leandersson-profile.jpg","version":33,"birthday":"812156400000","id":"74383","birthplace":"Falun, Sweden","lastModified":"1302063298000","name":"Lina Leandersson","type":"Person","_key":"55255"} +{"label":"Per Ragnar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cc\/4d3371d85e73d6334f0021cc\/per-ragnar-profile.jpg","version":30,"id":"74384","lastModified":"1302063298000","name":"Per Ragnar","type":"Person","_key":"55256"} +{"label":"Henrik Dahl","version":29,"id":"74385","lastModified":"1302063298000","name":"Henrik Dahl","type":"Person","_key":"55257"} +{"label":"Karin Bergquist","version":31,"id":"74386","lastModified":"1302063298000","name":"Karin Bergquist","type":"Person","_key":"55258"} +{"label":"Peter Carlberg","version":29,"id":"74387","lastModified":"1302063298000","name":"Peter Carlberg","type":"Person","_key":"55259"} +{"label":"Ika Nord","version":29,"id":"74388","lastModified":"1302063298000","name":"Ika Nord","type":"Person","_key":"55260"} +{"label":"Karl-Robert Lindgren","version":29,"id":"74389","lastModified":"1302063298000","name":"Karl-Robert Lindgren","type":"Person","_key":"55261"} +{"label":"Anders T. Peedu","version":29,"id":"74390","lastModified":"1302063298000","name":"Anders T. Peedu","type":"Person","_key":"55262"} +{"label":"Pale Olofsson","version":29,"id":"74391","lastModified":"1302063298000","name":"Pale Olofsson","type":"Person","_key":"55263"} +{"label":"Cayetano Ruiz","version":29,"id":"74392","lastModified":"1302063298000","name":"Cayetano Ruiz","type":"Person","_key":"55264"} +{"label":"Patrik Rydmark","version":29,"id":"74393","lastModified":"1302063298000","name":"Patrik Rydmark","type":"Person","_key":"55265"} +{"label":"Johan S\u00f6mnes","version":29,"id":"74394","lastModified":"1302063298000","name":"Johan S\u00f6mnes","type":"Person","_key":"55266"} +{"label":"Mikael Erhardsson","version":29,"id":"74395","lastModified":"1302063298000","name":"Mikael Erhardsson","type":"Person","_key":"55267"} +{"label":"Anna Zackrisson","version":29,"id":"74408","lastModified":"1302063298000","name":"Anna Zackrisson","type":"Person","_key":"55268"} +{"label":"Tomas Alfredson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/318\/4d33728d5e73d6334d002318\/tomas-alfredson-profile.jpg","version":49,"id":"74396","lastModified":"1302063298000","name":"Tomas Alfredson","type":"Person","_key":"55269"} +{"label":"Holli-dei","description":"A (Based On True Events) movie about prisoners escaping during the heyday of Korean nationalism and international image-consciousness, the Seoul World Olympics of 1988.","id":"13311","runtime":122,"imdbId":"tt0757223","version":37,"lastModified":"1300979601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53b\/4bc93c7c017a3c57fe01953b\/holli-dei-mid.jpg","title":"Holli-dei","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55270"} +{"label":"Inside","description":"Four months after the death of her husband, a woman on the brink of motherhood is tormented in her home by a strange woman who wants her unborn baby.","id":"13312","runtime":78,"imdbId":"tt0856288","version":119,"lastModified":"1302044239000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/554\/4bc93c7e017a3c57fe019554\/a-l-interieur-mid.jpg","studio":"La Fabrique de Films","genre":"Horror","title":"Inside","releaseDate":1179964800000,"language":"en","type":"Movie","_key":"55271"} +{"label":"Alexandre Bustillo","version":22,"id":"81044","lastModified":"1301901816000","name":"Alexandre Bustillo","type":"Person","_key":"55272"} +{"label":"Julien Maury","version":22,"id":"81045","lastModified":"1301901589000","name":"Julien Maury","type":"Person","_key":"55273"} +{"label":"Fran\u00e7ois-R\u00e9gis Marchasson","version":23,"id":"81047","lastModified":"1301901469000","name":"Fran\u00e7ois-R\u00e9gis Marchasson","type":"Person","_key":"55274"} +{"label":"Jean-Baptiste Tabourin","version":22,"id":"81048","lastModified":"1301902362000","name":"Jean-Baptiste Tabourin","type":"Person","_key":"55275"} +{"label":"Claude Lul\u00e9","version":22,"id":"81049","lastModified":"1301902381000","name":"Claude Lul\u00e9","type":"Person","_key":"55276"} +{"label":"Hyam Zeytoun","version":22,"id":"81050","lastModified":"1301902180000","name":"Hyam Zeytoun","type":"Person","_key":"55277"} +{"label":"Tahar Rahim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a91\/4c714cd15e73d65f7e000a91\/tahar-rahim-profile.jpg","version":32,"id":"81051","lastModified":"1301901294000","name":"Tahar Rahim","type":"Person","_key":"55278"} +{"label":"Emmanuel Guez","version":22,"id":"81052","lastModified":"1301902385000","name":"Emmanuel Guez","type":"Person","_key":"55279"} +{"label":"Emmanuel Lanzi","version":24,"id":"81053","lastModified":"1301902384000","name":"Emmanuel Lanzi","type":"Person","_key":"55280"} +{"label":"Nicolas Duvauchelle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7aa\/4d88cc467b9aa1036f0007aa\/nicolas-duvauchelle-profile.jpg","version":33,"id":"81054","lastModified":"1301901665000","name":"Nicolas Duvauchelle","type":"Person","_key":"55281"} +{"label":"Beauty and the Beast: The Enchanted Christmas","description":"Belle prepares the castle for Christmas against Beast's wishes, trying to bring him happiness for the season... ","id":"13313","runtime":72,"imdbId":"tt0118692","version":152,"lastModified":"1302070363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4bc93c7f017a3c57fe01955d\/beauty-and-the-beast-the-enchanted-christmas-mid.jpg","genre":"Animation","title":"Beauty and the Beast: The Enchanted Christmas","releaseDate":879206400000,"language":"en","type":"Movie","_key":"55282"} +{"label":"Andrew Knight","version":24,"id":"137902","lastModified":"1301902387000","name":"Andrew Knight","type":"Person","_key":"55283"} +{"label":"Christmas Time in South Park","description":"A compilation of the various Christmas shows from the incredibly funny animated hit show, South Park.","id":"13314","runtime":0,"imdbId":"tt0263206","version":110,"lastModified":"1302042882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/566\/4bc93c7f017a3c57fe019566\/christmas-in-south-park-mid.jpg","studio":"Comedy Central","genre":"Animation","title":"Christmas Time in South Park","releaseDate":946684800000,"language":"en","type":"Movie","_key":"55284"} +{"label":"Big Bang Love, Juvenile A","description":"No overview found.","id":"13315","runtime":85,"imdbId":"tt0497876","version":177,"lastModified":"1302042397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56f\/4bc93c83017a3c57fe01956f\/46-okunen-no-koi-mid.jpg","genre":"Thriller","title":"Big Bang Love, Juvenile A","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55285"} +{"label":"Masanobu Ando","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ae\/4d27627a7b9aa134cb0019ae\/masanobu-ando-profile.jpg","version":31,"id":"74862","lastModified":"1301901466000","name":"Masanobu Ando","type":"Person","_key":"55286"} +{"label":"Jai West","version":20,"id":"79459","lastModified":"1301902360000","name":"Jai West","type":"Person","_key":"55287"} +{"label":"Sohee Park","version":15,"id":"143364","lastModified":"1301902216000","name":"Sohee Park","type":"Person","_key":"55288"} +{"label":"La Antena","description":"No overview found.","id":"13317","runtime":99,"imdbId":"tt0454065","trailer":"http:\/\/www.youtube.com\/watch?v=3271","homepage":"http:\/\/www.laantena.ladoblea.com\/","version":75,"lastModified":"1301902731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57c\/4bc93c84017a3c57fe01957c\/la-antena-mid.jpg","studio":"LadobleA","genre":"Drama","title":"La Antena","releaseDate":1176768000000,"language":"en","tagline":"A city without a voice...","type":"Movie","_key":"55289"} +{"label":"Esteban Sapir","version":23,"id":"113625","lastModified":"1301902706000","name":"Esteban Sapir","type":"Person","_key":"55290"} +{"label":"Alejandro Urdapilleta","version":22,"id":"113626","lastModified":"1301902362000","name":"Alejandro Urdapilleta","type":"Person","_key":"55291"} +{"label":"Julieta Cardinali","version":22,"id":"105736","lastModified":"1301902678000","name":"Julieta Cardinali","type":"Person","_key":"55292"} +{"label":"Rafael Ferro","version":21,"id":"113627","lastModified":"1301902988000","name":"Rafael Ferro","type":"Person","_key":"55293"} +{"label":"Florencia Raggi","version":21,"id":"113628","lastModified":"1301902988000","name":"Florencia Raggi","type":"Person","_key":"55294"} +{"label":"Sol Moreno","version":21,"id":"113629","lastModified":"1301902678000","name":"Sol Moreno","type":"Person","_key":"55295"} +{"label":"Jonathan Sandor","version":19,"id":"113630","lastModified":"1301902988000","name":"Jonathan Sandor","type":"Person","_key":"55296"} +{"label":"The Bothersome Man","description":"No overview found.","id":"13318","runtime":90,"imdbId":"tt0808185","trailer":"http:\/\/www.youtube.com\/watch?v=kFp5vA7wuFY","version":213,"lastModified":"1302041247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/592\/4bc93c85017a3c57fe019592\/den-brysomme-mannen-mid.jpg","studio":"Sandrew Metronome Norge","genre":"Drama","title":"The Bothersome Man","releaseDate":1148601600000,"language":"en","type":"Movie","_key":"55297"} +{"label":"Jens Lien","version":20,"id":"85150","lastModified":"1301901722000","name":"Jens Lien","type":"Person","_key":"55298"} +{"label":"Trond Fausa Aurvaag","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35e\/4bd30808017a3c63ef00035e\/trond-fausa-aurvag-profile.jpg","biography":"Trond Fausa Aurv\u00e5g (born 2 December 1972) is a Norwegian actor and film director. After graduating from the Norwegian National Academy of Theatre in 2001, he has acted at Oslo Nye Teater since 2001. Here he has acted in plays such as Amadeus, Manndomspr\u00f8ven and Tatt av kvinnen. As a film actor he is best known for his leading roles in the films Andreaskorset (2004), Den brysomme mannen (2006) and Tatt av kvinnen (2007). He won two Amandas \u2013 the main Norwegian film award \u2013 in 2006, for best actor","version":27,"birthday":"92098800000","id":"85151","birthplace":"Fetsund","lastModified":"1301901982000","name":"Trond Fausa Aurvaag","type":"Person","_key":"55299"} +{"label":"Petronella Barker","version":22,"id":"85152","lastModified":"1301901864000","name":"Petronella Barker","type":"Person","_key":"55300"} +{"label":"Birgitte Larsen","version":20,"id":"85153","lastModified":"1301901870000","name":"Birgitte Larsen","type":"Person","_key":"55301"} +{"label":"Frost Bite","description":"Vampires terrorize a city in Norrbotten, Sweden.","id":"13319","runtime":98,"imdbId":"tt0454457","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/frostbite","version":98,"lastModified":"1301905351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a5\/4bc93c86017a3c57fe0195a5\/frostbiten-mid.jpg","studio":"Cinepost Studios","genre":"Comedy","title":"Frost Bite","releaseDate":1140739200000,"language":"en","type":"Movie","_key":"55302"} +{"label":"Anders Banke","version":29,"id":"82320","lastModified":"1301902382000","name":"Anders Banke","type":"Person","_key":"55303"} +{"label":"Petra Nielsen","version":22,"id":"82324","lastModified":"1301901980000","name":"Petra Nielsen","type":"Person","_key":"55304"} +{"label":"Carl-\u00c5ke Eriksson","version":22,"id":"82325","lastModified":"1301902165000","name":"Carl-\u00c5ke Eriksson","type":"Person","_key":"55305"} +{"label":"Grete Havnesk\u00f6ld","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/020\/4cb376147b9aa1345a000020\/grete-havneskold-profile.jpg","version":31,"id":"82326","lastModified":"1301902350000","name":"Grete Havnesk\u00f6ld","type":"Person","_key":"55306"} +{"label":"Emma \u00c5berg","version":22,"id":"82327","lastModified":"1301902175000","name":"Emma \u00c5berg","type":"Person","_key":"55307"} +{"label":"Jonas Lawes","version":22,"id":"82328","lastModified":"1301902018000","name":"Jonas Lawes","type":"Person","_key":"55308"} +{"label":"Niklas Gr\u00f6nberg","version":22,"id":"82329","lastModified":"1301902350000","name":"Niklas Gr\u00f6nberg","type":"Person","_key":"55309"} +{"label":"Gustav Johansson","version":22,"id":"82330","lastModified":"1301901980000","name":"Gustav Johansson","type":"Person","_key":"55310"} +{"label":"Linnea Jonsson","version":22,"id":"82331","lastModified":"1301902350000","name":"Linnea Jonsson","type":"Person","_key":"55311"} +{"label":"Nour El-Refai","version":24,"id":"82332","lastModified":"1301901980000","name":"Nour El-Refai","type":"Person","_key":"55312"} +{"label":"Jonas Karlstr\u00f6m","version":25,"id":"82333","lastModified":"1301902350000","name":"Jonas Karlstr\u00f6m","type":"Person","_key":"55313"} +{"label":"M\u00e5ns Nathanaelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b3\/4d0e68f45e73d6370a0017b3\/m-ns-nathanaelson-profile.jpg","version":31,"id":"74713","lastModified":"1301901667000","name":"M\u00e5ns Nathanaelson","type":"Person","_key":"55314"} +{"label":"Funny Face","description":"A shy Greenwich Village book clerk is discovered by a fashion photographer and whisked off to Paris where she becomes a reluctant model.","id":"13320","runtime":103,"imdbId":"tt0050419","trailer":"http:\/\/www.youtube.com\/watch?v=i3KXtq0aaNk","version":180,"lastModified":"1302069212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b6\/4bc93c87017a3c57fe0195b6\/funny-face-mid.jpg","genre":"Comedy","title":"Funny Face","releaseDate":-406512000000,"language":"en","type":"Movie","_key":"55315"} +{"label":"Kay Thompson","version":23,"id":"83393","lastModified":"1301902017000","name":"Kay Thompson","type":"Person","_key":"55316"} +{"label":"Lifeboat","description":"Several Americans and Britons civilians are stuck in a lifeboat after their ship and a U-boat sink each other in combat. Willi (Walter Slezak), a German survivor, is allowed aboard after some debate, but is later revealed to be the U-boat captain.","id":"13321","runtime":96,"imdbId":"tt0037017","version":138,"lastModified":"1301979084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bf\/4bc93c87017a3c57fe0195bf\/lifeboat-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Drama","title":"Lifeboat","releaseDate":-819676800000,"language":"en","type":"Movie","_key":"55317"} +{"label":"Tallulah Bankhead","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d1\/4ca09ab35e73d670490005d1\/tallulah-bankhead-profile.jpg","version":22,"id":"93895","lastModified":"1301902505000","name":"Tallulah Bankhead","type":"Person","_key":"55318"} +{"label":"William Bendix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f3\/4bf44483017a3c320b0007f3\/william-bendix-profile.jpg","version":50,"id":"79246","lastModified":"1301995707000","name":"William Bendix","type":"Person","_key":"55319"} +{"label":"John Hodiak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/010\/4bcf265e017a3c63ef000010\/john-hodiak-profile.jpg","version":38,"id":"85437","lastModified":"1301901505000","name":"John Hodiak","type":"Person","_key":"55320"} +{"label":"Canada Lee","version":24,"id":"81972","lastModified":"1301902526000","name":"Canada Lee","type":"Person","_key":"55321"} +{"label":"Game of Death","description":"Bruce Lee plays Billy Lo, a HongKong based movie actor, who is a box office draw. His girlfriend, Ann Morris is a singer who is also climbing to the top. Now it seems the syndicate wants Billy and Ann to join their \"management firm\". But Billy knows that they will be treated like property, so he refuses and tells her to do the same. So they try to \"encourage\" him to join but he still refuses. He would be advised that they will not stop, so he must stop them, permanently. He is even more hesitant","id":"13333","runtime":103,"imdbId":"tt0077594","trailer":"http:\/\/www.youtube.com\/watch?v=K6Ic_4m6tYE","version":166,"lastModified":"1302021916000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cc\/4bc93c88017a3c57fe0195cc\/game-of-death-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Game of Death","releaseDate":259891200000,"language":"en","type":"Movie","_key":"55322"} +{"label":"Robert Wall","version":19,"id":"131170","lastModified":"1301902782000","name":"Robert Wall","type":"Person","_key":"55323"} +{"label":"Wolfhound","description":"Wolkodav (Wolfhound) is the great warrior of his tribe. Doomed to die with them when he was a child, he managed to survive and, freed from slavery, he is know seeking revenge...","id":"13334","runtime":136,"imdbId":"tt0416316","version":137,"lastModified":"1302021555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f4\/4d542af37b9aa13ab80136f4\/volkodav-iz-roda-serykh-psov-mid.jpg","studio":"Central Partnership","genre":"Action","title":"Wolfhound","releaseDate":1167955200000,"language":"en","type":"Movie","_key":"55324"} +{"label":"Aleksandr Bukharov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/916\/4d5428e27b9aa13ab4013916\/aleksandr-bukharov-profile.jpg","version":20,"id":"93534","lastModified":"1301901381000","name":"Aleksandr Bukharov","type":"Person","_key":"55325"} +{"label":"Oksana Akinshina","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/678\/4d54296f7b9aa13aab013678\/oksana-akinshina-profile.jpg","version":33,"id":"77667","lastModified":"1301901248000","name":"Oksana Akinshina","type":"Person","_key":"55326"} +{"label":"Igor Petrenko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4bcf56db017a3c63e800005e\/igor-petrenko-profile.jpg","version":29,"id":"93536","lastModified":"1301901580000","name":"Igor Petrenko","type":"Person","_key":"55327"} +{"label":"Eugenia Tudorascu","version":19,"id":"93537","lastModified":"1301901474000","name":"Eugenia Tudorascu","type":"Person","_key":"55328"} +{"label":"Anatoliy Belyy","version":20,"id":"93540","lastModified":"1301902558000","name":"Anatoliy Belyy","type":"Person","_key":"55329"} +{"label":"Rezo Esadze","version":19,"id":"93541","lastModified":"1301902891000","name":"Rezo Esadze","type":"Person","_key":"55330"} +{"label":"Juozas Budraitis","version":19,"id":"93543","lastModified":"1301902891000","name":"Juozas Budraitis","type":"Person","_key":"55331"} +{"label":"Sergey Miller","version":19,"id":"93544","lastModified":"1301902891000","name":"Sergey Miller","type":"Person","_key":"55332"} +{"label":"Andrey Rudenskiy","version":19,"id":"93545","lastModified":"1301902891000","name":"Andrey Rudenskiy","type":"Person","_key":"55333"} +{"label":"Evgeniya Sviridova","version":19,"id":"93546","lastModified":"1301902466000","name":"Evgeniya Sviridova","type":"Person","_key":"55334"} +{"label":"Artyom Semakin","version":19,"id":"93547","lastModified":"1301902891000","name":"Artyom Semakin","type":"Person","_key":"55335"} +{"label":"Nina Usatova","version":27,"id":"93548","lastModified":"1301902686000","name":"Nina Usatova","type":"Person","_key":"55336"} +{"label":"Tatyana Lyutaeva","version":19,"id":"93549","lastModified":"1301902891000","name":"Tatyana Lyutaeva","type":"Person","_key":"55337"} +{"label":"Aleksandr Domogarov","version":29,"id":"107864","lastModified":"1301950697000","name":"Aleksandr Domogarov","type":"Person","_key":"55338"} +{"label":"Natalya Varley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/661\/4d5428287b9aa13aab013661\/natalya-varley-profile.jpg","version":27,"id":"86694","lastModified":"1301902561000","name":"Natalya Varley","type":"Person","_key":"55339"} +{"label":"Nikolay Lebedev","version":24,"id":"93550","lastModified":"1301901721000","name":"Nikolay Lebedev","type":"Person","_key":"55340"} +{"label":"Harold & Kumar: Escape from Guantanamo Bay","description":"Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.","id":"13335","runtime":102,"imdbId":"tt0481536","trailer":"http:\/\/www.youtube.com\/watch?v=y_NOc6yH5JY","homepage":"http:\/\/www.haroldandkumar.com","version":326,"lastModified":"1302068256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/157\/4d22b2f27b9aa12823001157\/harold-kumar-escape-from-guantanamo-bay-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Harold & Kumar: Escape from Guantanamo Bay","releaseDate":1209081600000,"language":"en","tagline":"This time they're running from the joint.","type":"Movie","_key":"55341"} +{"label":"Eric Winter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/091\/4c20e10a7b9aa135fd000091\/eric-winter-profile.jpg","version":43,"id":"74409","lastModified":"1301901458000","name":"Eric Winter","type":"Person","_key":"55342"} +{"label":"Danneel Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/306\/4becffa4017a3c37a3000306\/danneel-harris-profile.jpg","version":42,"id":"81164","lastModified":"1301901201000","name":"Danneel Harris","type":"Person","_key":"55343"} +{"label":"Jon Hurwitz","version":45,"id":"68843","lastModified":"1301901553000","name":"Jon Hurwitz","type":"Person","_key":"55344"} +{"label":"Hayden Schlossberg","version":45,"id":"68844","lastModified":"1301901765000","name":"Hayden Schlossberg","type":"Person","_key":"55345"} +{"label":"Chrysalis","description":"Paris 2020, a high tech surgeon and her daughter are involved in a horrific car accident, the surgeon saves her daughter's life at the cost of manipulating her dreams and memories.","id":"13336","runtime":94,"imdbId":"tt0884335","version":170,"lastModified":"1302067982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f8\/4bc93c90017a3c57fe0195f8\/chrysalis-mid.jpg","studio":"Gaumont","genre":"Crime","title":"Chrysalis","releaseDate":1193788800000,"language":"en","type":"Movie","_key":"55346"} +{"label":"Julien Leclercq","version":24,"id":"84439","lastModified":"1301901673000","name":"Julien Leclercq","type":"Person","_key":"55347"} +{"label":"Marie Guillard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/751\/4d28ce1e7b9aa134cf002751\/marie-guillard-profile.jpg","version":29,"id":"84440","lastModified":"1301901579000","name":"Marie Guillard","type":"Person","_key":"55348"} +{"label":"Broken English","description":"Nora Wilder (Parker Posey), a single, career woman works at a Manhattan boutique hotel where her excellent skills in guest relations lack in the romantic department. If it is not her loving and dominant mother (Gena Rowlands) attempting to set her up that consistently fail, she has her friend\u2019s (Drea de Matteo) disastrous blind dates to rely on as a backup for further dismay. She's surrounded by friends who are all happily engaged or romantically involved and somehow, love escapes Nora -- until ","id":"13337","runtime":97,"imdbId":"tt0772157","version":163,"lastModified":"1302036272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/601\/4bc93c90017a3c57fe019601\/broken-english-mid.jpg","genre":"Comedy","title":"Broken English","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55349"} +{"label":"Zoe R. Cassavetes","version":20,"id":"95977","lastModified":"1301902731000","name":"Zoe R. Cassavetes","type":"Person","_key":"55350"} +{"label":"Sione's Wedding","description":"No overview found.","id":"13338","runtime":97,"imdbId":"tt0464184","homepage":"http:\/\/www.sioneswedding.com\/","version":153,"lastModified":"1301416762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60f\/4bc93c91017a3c57fe01960f\/sione-s-wedding-mid.jpg","studio":"South Pacific Pictures","genre":"Comedy","title":"Sione's Wedding","releaseDate":1143676800000,"language":"en","type":"Movie","_key":"55351"} +{"label":"Oscar Kightley","version":21,"id":"89843","lastModified":"1301902705000","name":"Oscar Kightley","type":"Person","_key":"55352"} +{"label":"Shimpal Lelisi","version":20,"id":"89844","lastModified":"1301902719000","name":"Shimpal Lelisi","type":"Person","_key":"55353"} +{"label":"Iaheto Ah Hi","version":20,"id":"89845","lastModified":"1301902361000","name":"Iaheto Ah Hi","type":"Person","_key":"55354"} +{"label":"Teuila Blakely","version":20,"id":"89846","lastModified":"1301902700000","name":"Teuila Blakely","type":"Person","_key":"55355"} +{"label":"Madeleine Sami","version":20,"id":"89847","lastModified":"1301902901000","name":"Madeleine Sami","type":"Person","_key":"55356"} +{"label":"Maryjane McKibbin-Schwenke","version":20,"id":"89848","lastModified":"1301902515000","name":"Maryjane McKibbin-Schwenke","type":"Person","_key":"55357"} +{"label":"Robbie Magasiva","version":22,"id":"76834","lastModified":"1301901950000","name":"Robbie Magasiva","type":"Person","_key":"55358"} +{"label":"Chris Graham","version":20,"id":"89849","lastModified":"1301902678000","name":"Chris Graham","type":"Person","_key":"55359"} +{"label":"Three O'Clock High","description":"A high school nerd, Jerry Mitchell (Siemaszko) is assigned to write a piece for the school paper about new boy Buddy Revell (Tyson), who is rumored to be a psychopathic nutcase. When Jerry accidentally touches Buddy, he says that they must fight in the parking lot at 3pm. Jerry will just about do anything to avoid the confrontation","id":"13339","runtime":97,"imdbId":"tt0094138","version":167,"lastModified":"1302067223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a7\/4c9982e65e73d6554c0001a7\/three-o-clock-high-mid.jpg","genre":"Comedy","title":"Three O'Clock High","releaseDate":560736000000,"language":"en","tagline":"Jerry Mitchell just bumped into Buddy Revell. Now Jerry isn't thinking about math or english. Because at three o'clock, he's history.","type":"Movie","_key":"55360"} +{"label":"Annie Ryan","version":19,"id":"112304","lastModified":"1301902634000","name":"Annie Ryan","type":"Person","_key":"55361"} +{"label":"Stacey Glick","version":23,"id":"129258","lastModified":"1301903012000","name":"Stacey Glick","type":"Person","_key":"55362"} +{"label":"Jonathan Wise","version":22,"id":"129259","lastModified":"1301902695000","name":"Jonathan Wise","type":"Person","_key":"55363"} +{"label":"Triloquist","description":"In 1993, in Hollywood, California, a decadent ventriloquist overdoses and dies, leaving her two children to be sent to a foster house with their dummy. Their lives become a nightmare of abuse and murder, to be avenged by a wrathful dummy. ","id":"13340","runtime":90,"imdbId":"tt0478305","version":87,"lastModified":"1302067025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4bc93c96017a3c57fe019625\/triloquist-mid.jpg","genre":"Horror","title":"Triloquist","releaseDate":1216080000000,"language":"en","type":"Movie","_key":"55364"} +{"label":"Paydin LoPachin","version":20,"id":"74410","lastModified":"1301902328000","name":"Paydin LoPachin","type":"Person","_key":"55365"} +{"label":"Rocky Marquette","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d0d\/4be7cb22017a3c35b9000d0d\/rocky-marquette-profile.jpg","biography":"Rocky Marquette grew up in Muskegon, Michigan. From an early age he knew he wanted to be an actor. This dream eventually led him to Los Angeles where his dreams quickly became a reality.\n\nIn the short time Rocky has been pursuing a professional acting career, he has quickly made a name for himself in the indie film scene. Rocky has starred in over 9 movies to date and has only been in the buisness for the last 5 years. With casting directors and producers sparking an interest, Rocky is one of t","version":27,"birthday":"327189600000","id":"74411","birthplace":"Muskegon, Michigan, USA","lastModified":"1301901458000","name":"Rocky Marquette","type":"Person","_key":"55366"} +{"label":"Katie Chonacas","version":18,"id":"94954","lastModified":"1301902988000","name":"Katie Chonacas","type":"Person","_key":"55367"} +{"label":"Bad News Bears","description":"Morris Buttermaker (Thornton), an alcoholic pest removal worker and former professional baseball player (for a very short time), is recruited to coach and train a failing baseball team of 12 year olds which is about to be thrown out of the league.","id":"13341","runtime":113,"imdbId":"tt0408524","version":162,"lastModified":"1302019022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63d\/4bc93c98017a3c57fe01963d\/bad-news-bears-mid.jpg","genre":"Comedy","title":"Bad News Bears","releaseDate":1121990400000,"language":"en","type":"Movie","_key":"55368"} +{"label":"Fast Times At Ridgemont High","description":"Based on the humorous bestselling novel, Fast Times at Ridgemont High details the individual struggles of teenagers as they deal with independence, success, sexuality, money, maturity, school and just making it through the formative year.\r\n","id":"13342","runtime":90,"imdbId":"tt0083929","trailer":"http:\/\/www.youtube.com\/watch?v=0UK3EnwG07E","version":186,"lastModified":"1302066429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/695\/4bc93ca2017a3c57fe019695\/fast-times-at-ridgemont-high-mid.jpg","genre":"Comedy","title":"Fast Times At Ridgemont High","releaseDate":398044800000,"language":"en","tagline":"Fast Cars, Fast Girls, Fast Carrots...Fast Carrots?","type":"Movie","_key":"55369"} +{"label":"Brian Backer","version":21,"id":"118946","lastModified":"1301902634000","name":"Brian Backer","type":"Person","_key":"55370"} +{"label":"The Ghost & Mr. Chicken","description":"Luther Heggs aspires to being a reporter for his small town newspaper. He gets his big break when the editor asks him to spend the night at the Simmons mansion that, 20 years before, was the site of a now famous murder-suicide. Luther's account of his wild, ghost-ridden night in the house leads Simmons to sue for libel, but with the aid of his friend Kelsey they determines what exactly happened.","id":"13343","runtime":90,"imdbId":"tt0059221","version":113,"lastModified":"1302066113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69e\/4bc93ca3017a3c57fe01969e\/the-ghost-mr-chicken-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Ghost & Mr. Chicken","releaseDate":-124588800000,"language":"en","type":"Movie","_key":"55371"} +{"label":"Liam Redmond","version":34,"id":"83827","lastModified":"1301902678000","name":"Liam Redmond","type":"Person","_key":"55372"} +{"label":"Harry Hickox","version":20,"id":"85845","lastModified":"1301902717000","name":"Harry Hickox","type":"Person","_key":"55373"} +{"label":"Jesslyn Fax","version":21,"id":"85846","lastModified":"1301902706000","name":"Jesslyn Fax","type":"Person","_key":"55374"} +{"label":"Nydia Westman","version":21,"id":"85847","lastModified":"1301902717000","name":"Nydia Westman","type":"Person","_key":"55375"} +{"label":"Alan Rafkin","version":23,"id":"85840","lastModified":"1301902678000","name":"Alan Rafkin","type":"Person","_key":"55376"} +{"label":"A Chinese Odyssey Part One: Pandora's Box","description":"Fantasy adventure about the arrival of Buddhism in China. When the Goddess of Happiness tosses the Longevity Monk and his disciples out of heaven (because the Monkey King tried to attain immortality), the Monkey King is reincarnated as the Joker. He now spends his time chasing two jealous women. When one of them is dying, the Joker goes back in time in an attempt to save her.","id":"13345","runtime":88,"imdbId":"tt0112778","version":96,"lastModified":"1301905269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a7\/4bc93ca4017a3c57fe0196a7\/sai-yau-gei-dai-yat-baak-ling-yat-wui-ji-yut-gwong-bou-haap-mid.jpg","genre":"Comedy","title":"A Chinese Odyssey Part One: Pandora's Box","releaseDate":790646400000,"language":"en","type":"Movie","_key":"55377"} +{"label":"Kar-Ying Law","version":23,"id":"87944","lastModified":"1301902652000","name":"Kar-Ying Law","type":"Person","_key":"55378"} +{"label":"Kit Ying Lam","version":22,"id":"87945","lastModified":"1301902634000","name":"Kit Ying Lam","type":"Person","_key":"55379"} +{"label":"Jeff Lau Chun-Wai","version":66,"id":"57617","lastModified":"1301901640000","name":"Jeff Lau Chun-Wai","type":"Person","_key":"55380"} +{"label":"Athena Chu","version":20,"id":"87942","lastModified":"1301902891000","name":"Athena Chu","type":"Person","_key":"55381"} +{"label":"Shuming Lu","version":20,"id":"87949","lastModified":"1301902891000","name":"Shuming Lu","type":"Person","_key":"55382"} +{"label":"Ada Choi","version":25,"id":"87948","lastModified":"1301902940000","name":"Ada Choi","type":"Person","_key":"55383"} +{"label":"Johnny Kong","version":20,"id":"87950","lastModified":"1301902891000","name":"Johnny Kong","type":"Person","_key":"55384"} +{"label":"Lucas","description":"A socially inept fourteen year old experiences heartbreak for the first time when his two best friends -- Cappie, an older-brother figure, and Maggie, the new girl with whom he is in love -- fall for each other.","id":"13346","runtime":108,"imdbId":"tt0091445","trailer":"http:\/\/www.youtube.com\/watch?v=3209","version":145,"lastModified":"1302065581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b4\/4bc93ca7017a3c57fe0196b4\/lucas-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Lucas","releaseDate":512352000000,"language":"en","type":"Movie","_key":"55385"} +{"label":"Courtney Thorne-Smith","version":22,"id":"55277","lastModified":"1301901701000","name":"Courtney Thorne-Smith","type":"Person","_key":"55386"} +{"label":"Tom Hodges","version":19,"id":"112300","lastModified":"1301902525000","name":"Tom Hodges","type":"Person","_key":"55387"} +{"label":"Kevin Wixted","version":17,"id":"112301","lastModified":"1301902466000","name":"Kevin Wixted","type":"Person","_key":"55388"} +{"label":"Emily Seltzer","version":17,"id":"112302","lastModified":"1301902891000","name":"Emily Seltzer","type":"Person","_key":"55389"} +{"label":"Erika Leigh","version":17,"id":"112303","lastModified":"1301902466000","name":"Erika Leigh","type":"Person","_key":"55390"} +{"label":"Jason Alderman","version":17,"id":"112305","lastModified":"1301902466000","name":"Jason Alderman","type":"Person","_key":"55391"} +{"label":"Tom Mackie","version":17,"id":"112306","lastModified":"1301902466000","name":"Tom Mackie","type":"Person","_key":"55392"} +{"label":"David Seltzer","version":50,"id":"11834","lastModified":"1301901379000","name":"David Seltzer","type":"Person","_key":"55393"} +{"label":"Helvetica","description":"Helvetica is a feature-length independent film about typography, graphic design and global visual culture. It looks at the proliferation of one typeface (which will celebrate its 50th birthday in 2007) as part of a larger conversation about the way type affects our lives. The film is an exploration of urban spaces in major cities and the type that inhabits them, and a fluid discussion with renowne","id":"13348","runtime":80,"imdbId":"tt0847817","version":154,"lastModified":"1302065233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c1\/4bc93ca9017a3c57fe0196c1\/helvetica-mid.jpg","genre":"Documentary","title":"Helvetica","releaseDate":1189555200000,"language":"en","type":"Movie","_key":"55394"} +{"label":"Gary Hustwit","version":24,"id":"77656","lastModified":"1301901950000","name":"Gary Hustwit","type":"Person","_key":"55395"} +{"label":"Scooby-Doo and the Ghoul School","description":"Scooby, Shaggy and Scrappy Doo are on their way to a Miss Grimwood's Finishing School for Girls, where they have been hired as gym teachers. Once there, however, they find that it is actually a school for girl ghouls.","id":"13350","runtime":90,"imdbId":"tt0189071","version":68,"lastModified":"1302064990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bdb126c017a3c5d8f000163\/scooby-doo-and-the-ghoul-school-mid.jpg","studio":"Warner Bros. Home Video","genre":"Family","title":"Scooby-Doo and the Ghoul School","releaseDate":567993600000,"language":"en","type":"Movie","_key":"55396"} +{"label":"Scooby-Doo in Arabian Nights","description":"Scooby-Doo and Shaggy travel to Arabia to become the Caliph's Royal Food Tasters. But they bite off more than they can chew and are forced to run for their lives! It's a wild magic carpet ride as Scooby-Doo, Shaggy and their genie (Yogi Bear) and a jolly sailor named Sinbad (Magilla Gorilla) take you on an adventure of mistaken identities, exotic locations and fun-filled action and surprises!","id":"13351","runtime":0,"imdbId":"tt0192578","version":83,"lastModified":"1302064618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73c\/4c08528c017a3c33d900073c\/scooby-doo-in-arabian-nights-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Family","title":"Scooby-Doo in Arabian Nights","releaseDate":778550400000,"language":"en","type":"Movie","_key":"55397"} +{"label":"It's a Very Merry Muppet Christmas Movie","description":"The owner of a bank (Miss Bitterman) wants to own the Muppet Theatre so she can build a nightclub over it. After she tricks Pepe into giving her the only copy of the contract between her father and the Muppets, she changes it so the Muppets have very little time to pay a debt they owe. Meanwhile, the Muppets are trying to put on a Christmas show. After the Muppets are confronted by Bitterman, they make a lot of sacrifices to save up so they can keep the Theatre.","id":"13352","runtime":100,"imdbId":"tt0329737","version":145,"lastModified":"1302064236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d7\/4bc93caa017a3c57fe0196d7\/it-s-a-very-merry-muppet-christmas-movie-mid.jpg","studio":"National Broadcasting Company","genre":"Comedy","title":"It's a Very Merry Muppet Christmas Movie","releaseDate":1038528000000,"language":"en","type":"Movie","_key":"55398"} +{"label":"Kirk R. Thatcher","version":17,"id":"219959","lastModified":"1301903635000","name":"Kirk R. Thatcher","type":"Person","_key":"55399"} +{"label":"It's the Great Pumpkin, Charlie Brown","description":"This classic \"Peanuts\" tale focuses on the thumb-sucking, blanket-holding Linus, and his touching faith in the \"Great Pumpkin.\" When Linus discovers that no one else believes in the creature, he sets out to prove that the Pumpkin's no myth -- by spending the night alone in a pumpkin patch.","id":"13353","runtime":25,"imdbId":"tt0060550","version":99,"lastModified":"1301903434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e0\/4bc93cab017a3c57fe0196e0\/it-s-the-great-pumpkin-charlie-brown-mid.jpg","genre":"Animation","title":"It's the Great Pumpkin, Charlie Brown","releaseDate":-100396800000,"language":"en","tagline":"Every year he rises from the pumpkin patch...","type":"Movie","_key":"55400"} +{"label":"Gail DeFaria","version":21,"id":"124655","lastModified":"1301903005000","name":"Gail DeFaria","type":"Person","_key":"55401"} +{"label":"Lisa DeFaria","version":21,"id":"124656","lastModified":"1301903005000","name":"Lisa DeFaria","type":"Person","_key":"55402"} +{"label":"Glenn Mendelson","version":21,"id":"124657","lastModified":"1301903005000","name":"Glenn Mendelson","type":"Person","_key":"55403"} +{"label":"Chill Out, Scooby-Doo!","description":"The gang's vacation to Paris takes a wrong turn when Scooby and Shaggy miss their flight and end up on a skydiving expedition in the Himalayas. To make matters worse, upon arrival they must outrun the Abominable Snowmonster.","id":"13354","runtime":0,"imdbId":"tt1097636","version":124,"lastModified":"1302063465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e9\/4bc93cab017a3c57fe0196e9\/chill-out-scooby-doo-mid.jpg","genre":"Action","title":"Chill Out, Scooby-Doo!","releaseDate":1188864000000,"language":"en","type":"Movie","_key":"55404"} +{"label":"Scooby-Doo! Pirates Ahoy!","description":"Ghost pirates attack the cruise ship that Scooby and the gang are vacationing on.","id":"13355","runtime":0,"imdbId":"tt0867418","version":143,"lastModified":"1301908007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f2\/4bc93cac017a3c57fe0196f2\/scooby-doo-pirates-ahoy-mid.jpg","genre":"Animation","title":"Scooby-Doo! Pirates Ahoy!","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55405"} +{"label":"Chuck Sheetz","version":16,"id":"141706","lastModified":"1301902575000","name":"Chuck Sheetz","type":"Person","_key":"55406"} +{"label":"Christmas in the Clouds","description":"A classic comedy of mistaken identity and romance set during the holiday season at a ski resort that is owned and operated by a Native American Nation. Shot on location at The Sundance Resort in Utah, this is the first contemporary romantic comedy to feature an almost entirely American Indian cast. The film was featured at the 2001 Sundance Film Festival.","id":"13356","runtime":0,"imdbId":"tt0221074","version":98,"lastModified":"1301013326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fb\/4bc93cad017a3c57fe0196fb\/christmas-in-the-clouds-mid.jpg","title":"Christmas in the Clouds","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55407"} +{"label":"A Dennis the Menace Christmas","description":"No overview found.","id":"13358","runtime":0,"imdbId":"tt0918511","trailer":"http:\/\/www.youtube.com\/watch?v=1215","version":119,"lastModified":"1301908208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/708\/4bc93cad017a3c57fe019708\/a-dennis-the-menace-christmas-mid.jpg","genre":"Comedy","title":"A Dennis the Menace Christmas","releaseDate":1194912000000,"language":"en","type":"Movie","_key":"55408"} +{"label":"Expelled: No Intelligence Allowed","description":"Hosted by Ben Stein, this controversial documentary examines how pro-intelligent design scholars and scientists are often chastised, fired or denied tenured positions by those who believe in Darwin's theory of evolution. Nathan Frankowski's film explores how scientists who believe in God are oppressed and how the acceptance of Darwinism might have played a role in the formation of the Nazi regime.","id":"13359","runtime":90,"imdbId":"tt1091617","homepage":"http:\/\/www.expelledthemovie.com\/","version":151,"lastModified":"1301905766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/711\/4bc93cae017a3c57fe019711\/expelled-no-intelligence-allowed-mid.jpg","studio":"Premise Media Corporation","genre":"Documentary","title":"Expelled: No Intelligence Allowed","releaseDate":1208476800000,"language":"en","tagline":"Big science has expelled smart new ideas from the classroom...What they forgot is that every generation has its Rebel!","type":"Movie","_key":"55409"} +{"label":"Ben Stein","version":24,"id":"131667","lastModified":"1301902781000","name":"Ben Stein","type":"Person","_key":"55410"} +{"label":"William Dembski","version":18,"id":"148755","lastModified":"1301903097000","name":"William Dembski","type":"Person","_key":"55411"} +{"label":"Paul Zachary Myers","version":18,"id":"148756","lastModified":"1301903097000","name":"Paul Zachary Myers","type":"Person","_key":"55412"} +{"label":"Nathan Frankowski","version":20,"id":"131668","lastModified":"1301902909000","name":"Nathan Frankowski","type":"Person","_key":"55413"} +{"label":"Highlander: The Source","description":"The world is falling into chaos. As he roams a crumbling city, Duncan MacLeod, the Highlander, remembers happier times before the love of his life left... Hopeless and alone, MacLeod finds his way to a band of immortal companions, including his mysterious friend Methos, and a mortal, Watcher Joe Dawson. Together this small group sets out on a quest to find the origin of the first Immortal.","id":"13360","runtime":94,"imdbId":"tt0299981","homepage":"www.highlander-official.com","version":235,"lastModified":"1301903136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/723\/4bc93caf017a3c57fe019723\/highlander-the-source-mid.jpg","studio":"Handmade Films Ltd.","genre":"Action","title":"Highlander: The Source","releaseDate":1170720000000,"language":"en","type":"Movie","_key":"55414"} +{"label":"Jim Byrnes","version":29,"id":"52288","lastModified":"1301901604000","name":"Jim Byrnes","type":"Person","_key":"55415"} +{"label":"Stephen Rahman Hughes","version":20,"id":"74414","lastModified":"1301902074000","name":"Stephen Rahman Hughes","type":"Person","_key":"55416"} +{"label":"Patrice Naiambana","version":28,"id":"74415","lastModified":"1301902041000","name":"Patrice Naiambana","type":"Person","_key":"55417"} +{"label":"Sakalas Uzdavinys","version":20,"id":"74416","lastModified":"1301901870000","name":"Sakalas Uzdavinys","type":"Person","_key":"55418"} +{"label":"Geoffrey T. Bersey","version":20,"id":"74417","lastModified":"1301901610000","name":"Geoffrey T. Bersey","type":"Person","_key":"55419"} +{"label":"Rolandas Boravskis","version":20,"id":"74418","lastModified":"1301901870000","name":"Rolandas Boravskis","type":"Person","_key":"55420"} +{"label":"Saulis Siparis","version":20,"id":"74419","lastModified":"1301901610000","name":"Saulis Siparis","type":"Person","_key":"55421"} +{"label":"Buckley Norris","version":20,"id":"74420","lastModified":"1301901722000","name":"Buckley Norris","type":"Person","_key":"55422"} +{"label":"A Room with a View","description":"No overview found.","id":"13361","runtime":93,"imdbId":"tt1025103","version":83,"lastModified":"1301907124000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/731\/4bc93cb3017a3c57fe019731\/a-room-with-a-view-mid.jpg","studio":"IWC Media","genre":"Drama","title":"A Room with a View","releaseDate":1194134400000,"language":"en","type":"Movie","_key":"55423"} +{"label":"Taxi to the Dark Side","description":"An in-depth look at the torture practices of the United States in Afghanistan, Iraq and Guantanamo Bay, focusing on an innocent taxi driver in Afghanistan who was tortured and killed in 2002","id":"13362","runtime":106,"imdbId":"tt0854678","homepage":"http:\/\/www.taxitothedarkside.com\/","version":182,"lastModified":"1301904767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4bc93cb5017a3c57fe019742\/taxi-to-the-dark-side-mid.jpg","studio":"Jigsaw Productions","genre":"Documentary","title":"Taxi to the Dark Side","releaseDate":1191801600000,"language":"en","type":"Movie","_key":"55424"} +{"label":"The Man from Earth","description":"After history professor John Oldman unexpectedly resigns from the university, his startled colleagues impulsively invite themselves to his home, pressing him for an explanation. They're shocked to hear his reason for premature retirement: John claims he must move on because he is immortal, and cannot stay in one place for more than ten years without his secret being discovered.","id":"13363","runtime":87,"imdbId":"tt0756683","homepage":"http:\/\/manfromearth.com\/","version":186,"lastModified":"1301902419000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d34\/4d4230e15e73d65729000d34\/the-man-from-earth-mid.jpg","studio":"Falling Sky Entertainment","genre":"Drama","title":"The Man from Earth","releaseDate":1194912000000,"language":"en","type":"Movie","_key":"55425"} +{"label":"Richard Schenkman","version":22,"id":"76462","lastModified":"1301901365000","name":"Richard Schenkman","type":"Person","_key":"55426"} +{"label":"Ellen Crawford","version":21,"id":"76463","lastModified":"1301901114000","name":"Ellen Crawford","type":"Person","_key":"55427"} +{"label":"Annika Peterson","version":22,"id":"76464","lastModified":"1301901097000","name":"Annika Peterson","type":"Person","_key":"55428"} +{"label":"Deliver Us from Evil","description":"Documentary filmmaker Amy Berg investigates the life of 30-year pedophile Father Oliver O'Grady and exposes the corruption inside the Catholic Church that allowed him to abuse countless children. Victims' stories and a disturbing interview with O'Grady offer a view into the troubled mind of the spiritual leader who moved from parish to parish gaining trust ... all the while betraying so many.","id":"13364","runtime":101,"imdbId":"tt0814075","trailer":"http:\/\/www.youtube.com\/watch?v=scW90Q6Z_OM","homepage":"http:\/\/www.deliverusfromevilthemovie.com\/","version":277,"lastModified":"1301905052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/765\/4bc93cb8017a3c57fe019765\/deliver-us-from-evil-mid.jpg","studio":"Disarming Films","genre":"Crime","title":"Deliver Us from Evil","releaseDate":1160697600000,"language":"en","type":"Movie","_key":"55429"} +{"label":"Amy Berg","version":21,"id":"74060","lastModified":"1301901443000","name":"Amy Berg","type":"Person","_key":"55430"} +{"label":"49 Up","description":"No overview found.","id":"13365","runtime":180,"imdbId":"tt0473434","trailer":"http:\/\/www.youtube.com\/watch?v=wrTLjPS2gN4","version":120,"lastModified":"1301903813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76e\/4bc93cb8017a3c57fe01976e\/49-up-mid.jpg","studio":"Granada Television","genre":"Documentary","title":"49 Up","releaseDate":1126742400000,"language":"en","type":"Movie","_key":"55431"} +{"label":"White Christmas","description":"Two talented song-and-dance men team up after the war to become one of the hottest acts in show business.","id":"13368","runtime":120,"imdbId":"tt0047673","trailer":"http:\/\/www.youtube.com\/watch?v=1305","version":135,"lastModified":"1301904204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e9\/4c29fdf85e73d61a980003e9\/white-christmas-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"White Christmas","releaseDate":-480211200000,"language":"en","type":"Movie","_key":"55432"} +{"label":"Rosemary Clooney","version":22,"id":"77674","lastModified":"1301901809000","name":"Rosemary Clooney","type":"Person","_key":"55433"} +{"label":"Vera-Ellen","version":26,"id":"77675","lastModified":"1301901471000","name":"Vera-Ellen","type":"Person","_key":"55434"} +{"label":"Empire","description":"A big time drug dealer Victor Rosa is looking to get out of the game and sees his chance with a big deal with a new friend who happens to be a Wall St. stockbroker. Thinking this will be his chance to go out on top Victor soon finds out that he has been double crossed and his last option is to get revenge.","id":"13369","runtime":90,"imdbId":"tt0262396","version":232,"lastModified":"1301904504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4bc93cc1017a3c57fe0197b5\/empire-mid.jpg","studio":"Arenas Entertainment","genre":"Action","title":"Empire","releaseDate":1039132800000,"language":"en","type":"Movie","_key":"55435"} +{"label":"Franc. Reyes","version":20,"id":"96318","lastModified":"1301902466000","name":"Franc. Reyes","type":"Person","_key":"55436"} +{"label":"Delilah Cotto","version":21,"id":"86041","lastModified":"1301901870000","name":"Delilah Cotto","type":"Person","_key":"55437"} +{"label":"Rafael B\u00e1ez","version":17,"id":"96322","lastModified":"1301903037000","name":"Rafael B\u00e1ez","type":"Person","_key":"55438"} +{"label":"A Mighty Wind","description":"In \"A Mighty Wind\", director Christopher Guest reunites the team from \"Best In Show\" and \"Waiting for Guffman\" to tell tell the story of 60's-era folk musicians, who inspired by the death of their former manager, get back on the stage for one concert in New York City's Town Hall.","id":"13370","runtime":91,"imdbId":"tt0310281","version":137,"lastModified":"1301903203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/141\/4c38f59d7b9aa10edc000141\/a-mighty-wind-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"A Mighty Wind","releaseDate":1059609600000,"language":"en","type":"Movie","_key":"55439"} +{"label":"Sex Lives of the Potato Men","description":"Mackenzie Crook and Johnny Vegas star as the bird-chasing, self-proclaimed \"Butch Cassidy and the Sundance Kid\" of Birmingham in this \u00a33 million brit-com about two lowlifes with active fantasy sex lives who deliver potatoes to various restaurants and grocers.","id":"13371","runtime":82,"imdbId":"tt0368259","version":117,"lastModified":"1301902893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d0\/4bc93cc3017a3c57fe0197d0\/sex-lives-of-the-potato-men-mid.jpg","studio":"Devotion Films","title":"Sex Lives of the Potato Men","releaseDate":1077235200000,"language":"en","type":"Movie","_key":"55440"} +{"label":"Outfoxed: Rupert Murdoch's War on Journalism","description":"While the Fox News cable network has promoted itself as a \"fair and balanced\" news outlet -- so much so that they've even trademarked the phrase -- not everyone believes that they're living up to their slogan, and this activist documentary by filmmaker Robert Greenwald takes a close look at the political perspective of Fox's coverage.","id":"13372","runtime":74,"imdbId":"tt0418038","homepage":"http:\/\/www.outfoxed.org\/","version":227,"lastModified":"1301903395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d9\/4bc93cc4017a3c57fe0197d9\/outfoxed-rupert-murdoch-s-war-on-journalism-mid.jpg","studio":"Carolina Productions","genre":"Documentary","title":"Outfoxed: Rupert Murdoch's War on Journalism","releaseDate":1089763200000,"language":"en","type":"Movie","_key":"55441"} +{"label":"Robert Greenwald","version":30,"id":"51521","lastModified":"1301901787000","name":"Robert Greenwald","type":"Person","_key":"55442"} +{"label":"Millions","description":"Two boys, still grieving the death of their mother, find themselves the unwitting benefactors of a bag of bank robbery loot in the week before the United Kingdom switches its official currency to the Euro. What's a kid to do?","id":"13373","runtime":98,"imdbId":"tt0366777","trailer":"http:\/\/www.youtube.com\/watch?v=thwQYOeTSKc","version":199,"lastModified":"1301903906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65e\/4ca9c5dd7b9aa17acd00065e\/millions-mid.jpg","studio":"Mission Pictures","genre":"Action","title":"Millions","releaseDate":1095120000000,"language":"en","type":"Movie","_key":"55443"} +{"label":"Lewis McGibbon","version":22,"id":"82380","lastModified":"1301901563000","name":"Lewis McGibbon","type":"Person","_key":"55444"} +{"label":"Ice Princess","description":"With the help of her coach, her parents, and the boy who drives the Zamboni machine, nothing can stop Casey (Trachtenberg) from realizing her dream to be a champion figure skater.","id":"13374","runtime":98,"imdbId":"tt0396652","version":138,"lastModified":"1301904378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f8\/4bc93cc8017a3c57fe0197f8\/ice-princess-mid.jpg","genre":"Comedy","title":"Ice Princess","releaseDate":1111104000000,"language":"en","type":"Movie","_key":"55445"} +{"label":"The Tit and the Moon","description":"A child does not stand the idea of having a new brother and dreams about drinking milk from the breasts of his mother again. The child asks the moon to bring him a tit only for him.","id":"13375","runtime":90,"imdbId":"tt0111403","version":166,"lastModified":"1301905543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0eb\/4c9b213f5e73d661190000eb\/la-teta-i-la-lluna-mid.jpg","genre":"Comedy","title":"The Tit and the Moon","releaseDate":764899200000,"language":"en","type":"Movie","_key":"55446"} +{"label":"Biel Dur\u00e1n","version":24,"id":"130259","lastModified":"1301902739000","name":"Biel Dur\u00e1n","type":"Person","_key":"55447"} +{"label":"Miguel Poveda","version":18,"id":"133524","lastModified":"1301902531000","name":"Miguel Poveda","type":"Person","_key":"55448"} +{"label":"Abel Folk","version":18,"id":"133525","lastModified":"1301902395000","name":"Abel Folk","type":"Person","_key":"55449"} +{"label":"Laura Ma\u00f1\u00e1","version":18,"id":"133526","lastModified":"1301902531000","name":"Laura Ma\u00f1\u00e1","type":"Person","_key":"55450"} +{"label":"Gen\u00eds S\u00e1nchez","version":17,"id":"133527","lastModified":"1301902470000","name":"Gen\u00eds S\u00e1nchez","type":"Person","_key":"55451"} +{"label":"Xavier Mass\u00e9","version":17,"id":"133528","lastModified":"1301902467000","name":"Xavier Mass\u00e9","type":"Person","_key":"55452"} +{"label":"Victoria Lepori","version":18,"id":"133529","lastModified":"1301902535000","name":"Victoria Lepori","type":"Person","_key":"55453"} +{"label":"Xus Estruch","version":18,"id":"133530","lastModified":"1301902526000","name":"Xus Estruch","type":"Person","_key":"55454"} +{"label":"Jane Harvey","version":17,"id":"133531","lastModified":"1301902408000","name":"Jane Harvey","type":"Person","_key":"55455"} +{"label":"Vanessa Isbert","version":17,"id":"133532","lastModified":"1301902403000","name":"Vanessa Isbert","type":"Person","_key":"55456"} +{"label":"Jordi Busquets","version":18,"id":"133533","lastModified":"1301902373000","name":"Jordi Busquets","type":"Person","_key":"55457"} +{"label":"Diego Fern\u00e1ndez","version":17,"id":"133534","lastModified":"1301902404000","name":"Diego Fern\u00e1ndez","type":"Person","_key":"55458"} +{"label":"Diego Fern\u00e1ndez","version":17,"id":"133535","lastModified":"1301902480000","name":"Diego Fern\u00e1ndez","type":"Person","_key":"55459"} +{"label":"Salvador Anglada","version":17,"id":"133536","lastModified":"1301902404000","name":"Salvador Anglada","type":"Person","_key":"55460"} +{"label":"Eight Crazy Nights","description":"Adam Sandler invites you to share some holiday cheer in the new, no-holds-barred musical comedy Adam Sandler's 8 Crazy Nights. Davey Stone, a 33-year old party animal, finds himself in trouble with the law after his wild ways go too far.","id":"13376","runtime":76,"imdbId":"tt0271263","trailer":"http:\/\/www.youtube.com\/watch?v=1498","version":155,"lastModified":"1301903203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81b\/4bc93cce017a3c57fe01981b\/eight-crazy-nights-mid.jpg","studio":"Happy Madison Productions","genre":"Comedy","title":"Eight Crazy Nights","releaseDate":1038355200000,"language":"en","type":"Movie","_key":"55461"} +{"label":"Seth Kearsley","version":21,"id":"84975","lastModified":"1301902362000","name":"Seth Kearsley","type":"Person","_key":"55462"} +{"label":"Austin Stout","version":21,"id":"88736","lastModified":"1301901811000","name":"Austin Stout","type":"Person","_key":"55463"} +{"label":"Norm Crosby","version":21,"id":"88737","lastModified":"1301902362000","name":"Norm Crosby","type":"Person","_key":"55464"} +{"label":"How the Grinch Stole Christmas!","description":"Bitter and hateful, the Grinch is irritated at the thought of the nearby village having a happy time celebrating Christmas. So disguised as Santa Claus, with his dog made to look like a reindeer, he raids the village to steal all the Christmas things. The village is sure to have a sad Christmas this year.","id":"13377","runtime":26,"imdbId":"tt0060345","version":214,"lastModified":"1301903664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25b\/4cf0091e7b9aa13bfc00025b\/how-the-grinch-stole-christmas-mid.jpg","genre":"Animation","title":"How the Grinch Stole Christmas!","releaseDate":-95904000000,"language":"en","tagline":"You're a mean one, Mr. Grinch","type":"Movie","_key":"55465"} +{"label":"Chuck Jones","version":45,"id":"100888","lastModified":"1301901598000","name":"Chuck Jones","type":"Person","_key":"55466"} +{"label":"Ben Washam","version":17,"id":"113285","lastModified":"1301902315000","name":"Ben Washam","type":"Person","_key":"55467"} +{"label":"Mickey's Twice Upon a Christmas","description":"Santa Claus, Mickey Mouse and all his Disney pals star in an original movie about the importance of opening your heart to the true spirit of Christmas. Stubborn old Donald tries in vain to resist the joys of the season, and Mickey and Pluto learn a great lesson about the power of friendship.","id":"13378","runtime":64,"imdbId":"tt0424279","version":171,"lastModified":"1301904470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/831\/4bc93cd0017a3c57fe019831\/mickey-s-twice-upon-a-christmas-mid.jpg","genre":"Animation","title":"Mickey's Twice Upon a Christmas","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"55468"} +{"label":"Wayne Allwine","version":49,"id":"78076","lastModified":"1301901647000","name":"Wayne Allwine","type":"Person","_key":"55469"} +{"label":"Bill Farmer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c3\/4d9a95977b9aa164c30004c3\/bill-farmer-profile.jpg","version":46,"id":"84213","lastModified":"1302035794000","name":"Bill Farmer","type":"Person","_key":"55470"} +{"label":"Olive, the Other Reindeer","description":"No overview found.","id":"13379","runtime":45,"imdbId":"tt0227173","version":116,"lastModified":"1301906722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83a\/4bc93cd1017a3c57fe01983a\/olive-the-other-reindeer-mid.jpg","studio":"20th Century Fox Television","title":"Olive, the Other Reindeer","releaseDate":945388800000,"language":"en","type":"Movie","_key":"55471"} +{"label":"One Magic Christmas","description":"The \"magic\" in One Magic Christmas is often (and surprisingly) of the \"black\" variety. Like Jimmy Stewart before her, worn-out wife and mother Mary Steenburgen wishes that she'd never been born. And like Stewart, Steenburgen is visited by a guardian angel, in this case the western-garbed Harry Dean Stanton. Instead of granting Steenburgen's wish, Stanton shows her what life would be like without Christmas--and that vision is as grim as anything you're ever likely to see in any Holiday film. Thro","id":"13380","runtime":88,"imdbId":"tt0089731","version":178,"lastModified":"1301902964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/847\/4bc93cd2017a3c57fe019847\/one-magic-christmas-mid.jpg","genre":"Drama","title":"One Magic Christmas","releaseDate":501465600000,"language":"en","type":"Movie","_key":"55472"} +{"label":"Gary Basaraba","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ab0\/4c70e48a7b9aa13ab9000ab0\/gary-basaraba-profile.jpg","version":27,"id":"96228","lastModified":"1301902584000","name":"Gary Basaraba","type":"Person","_key":"55473"} +{"label":"Robbie Magwood","version":16,"id":"145526","lastModified":"1301902932000","name":"Robbie Magwood","type":"Person","_key":"55474"} +{"label":"Joy Thompson","version":19,"id":"138874","lastModified":"1301902721000","name":"Joy Thompson","type":"Person","_key":"55475"} +{"label":"John Friesen","version":16,"id":"145527","lastModified":"1301902734000","name":"John Friesen","type":"Person","_key":"55476"} +{"label":"Phillip Borsos","version":15,"id":"148119","lastModified":"1301903092000","name":"Phillip Borsos","type":"Person","_key":"55477"} +{"label":"Rudolph, the Red-Nosed Reindeer","description":"Sam the snowman tells us the story of a young red-nosed reindeer who, after being ousted from the reindeer games because of his beaming honker, teams up with Hermey, an elf who wants to be a dentist, and Yukon Cornelius, the prospector. They run into the Abominable Snowman and find a whole island of misfit toys. Rudoph vows to see if he can get Santa to help the toys, and he goes back to the North Pole on Christmas Eve. But Santa's sleigh is fogged in. But when Santa looks over Rudolph, he gets ","id":"13382","runtime":52,"imdbId":"tt0058536","version":180,"lastModified":"1301902701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/385\/4cfc25fa7b9aa15149003385\/rudolph-the-red-nosed-reindeer-mid.jpg","genre":"Animation","title":"Rudolph, the Red-Nosed Reindeer","releaseDate":-189388800000,"language":"en","tagline":"You might even say it glows!","type":"Movie","_key":"55478"} +{"label":"Billie Mae Richards","version":21,"id":"105638","lastModified":"1301902718000","name":"Billie Mae Richards","type":"Person","_key":"55479"} +{"label":"Paul Soles","version":17,"id":"144603","lastModified":"1301902133000","name":"Paul Soles","type":"Person","_key":"55480"} +{"label":"Larry D. Mann","version":17,"id":"144604","lastModified":"1301902232000","name":"Larry D. Mann","type":"Person","_key":"55481"} +{"label":"Stan Francis","version":17,"id":"144605","lastModified":"1301902477000","name":"Stan Francis","type":"Person","_key":"55482"} +{"label":"Kizo Nagashima","version":16,"id":"144976","lastModified":"1301902211000","name":"Kizo Nagashima","type":"Person","_key":"55483"} +{"label":"Larry Roemer","version":16,"id":"144977","lastModified":"1301902513000","name":"Larry Roemer","type":"Person","_key":"55484"} +{"label":"Santa Claus","description":"Pitch, the mean-spirited devil, is trying to ruin Christmas. Santa Claus teams up with Merlin the Magician and the children of the world in order to save the day!","id":"13383","runtime":94,"imdbId":"tt0053241","version":103,"lastModified":"1301905865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb5\/4d484b605e73d65385003eb5\/santa-claus-mid.jpg","genre":"Drama","title":"Santa Claus","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"55485"} +{"label":"Jos\u00e9 El\u00edas Moreno","version":11,"id":"223079","lastModified":"1301903984000","name":"Jos\u00e9 El\u00edas Moreno","type":"Person","_key":"55486"} +{"label":"Ces\u00e1reo Quezadas","version":11,"id":"223080","lastModified":"1301903984000","name":"Ces\u00e1reo Quezadas","type":"Person","_key":"55487"} +{"label":"Jos\u00e9 Luis Aguirre","version":11,"id":"223081","lastModified":"1301903984000","name":"Jos\u00e9 Luis Aguirre","type":"Person","_key":"55488"} +{"label":"Armando Arriola","version":11,"id":"223082","lastModified":"1301903984000","name":"Armando Arriola","type":"Person","_key":"55489"} +{"label":"Kes","description":"No overview found.","id":"13384","runtime":110,"imdbId":"tt0064541","version":349,"lastModified":"1301905177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d0\/4c8205a07b9aa13b660000d0\/kes-mid.jpg","genre":"Drama","title":"Kes","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"55490"} +{"label":"Brighton Rock","description":"Centring on the activities of a gang of assorted criminals and, in particular, their leader \u2013 a vicious young hoodlum known as \"Pinkie\" \u2013 the film's main thematic concern is the criminal underbelly evident in inter-war Brighton.","id":"13385","runtime":92,"imdbId":"tt0039220","version":205,"lastModified":"1301902775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86e\/4bc93cd6017a3c57fe01986e\/brighton-rock-mid.jpg","genre":"Crime","title":"Brighton Rock","releaseDate":-725846400000,"language":"en","type":"Movie","_key":"55491"} +{"label":"John Boulting","version":22,"id":"112995","lastModified":"1301901254000","name":"John Boulting","type":"Person","_key":"55492"} +{"label":"Carol Marsh","version":20,"id":"122951","lastModified":"1301902713000","name":"Carol Marsh","type":"Person","_key":"55493"} +{"label":"Charles Goldner","version":19,"id":"115062","lastModified":"1301902591000","name":"Charles Goldner","type":"Person","_key":"55494"} +{"label":"Alan Wheatley","version":19,"id":"97245","lastModified":"1301902478000","name":"Alan Wheatley","type":"Person","_key":"55495"} +{"label":"Joan Sterndale-Bennett","version":18,"id":"139908","lastModified":"1301903061000","name":"Joan Sterndale-Bennett","type":"Person","_key":"55496"} +{"label":"Ricomincio da tre","description":"No overview found.","id":"13386","runtime":0,"imdbId":"tt0081427","version":93,"lastModified":"1301907126000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4d5805367b9aa15cf600381d\/ricomincio-da-tre-mid.jpg","title":"Ricomincio da tre","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55497"} +{"label":"Transporter 3","description":"Frank Martin puts the driving gloves on to deliver Valentina, the kidnapped daughter of a Ukranian government official, from Marseilles to Odessa on the Black Sea. En route, he has to contend with thugs who want to intercept Valentina's safe delivery and not let his personal feelings get in the way of his dangerous objective.","id":"13387","runtime":100,"imdbId":"tt1129442","trailer":"http:\/\/www.youtube.com\/watch?v=aNO-fmVu4RI","homepage":"http:\/\/transporter3film.com\/","version":331,"lastModified":"1302030724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a2\/4d1f3a835e73d66b3b0013a2\/transporter-3-mid.jpg","studio":"Europa Corp.","genre":"Action","title":"Transporter 3","releaseDate":1228435200000,"language":"en","type":"Movie","_key":"55498"} +{"label":"Olivier Megaton","version":31,"id":"75035","lastModified":"1302030723000","name":"Olivier Megaton","type":"Person","_key":"55499"} +{"label":"Natalya Rudakova","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4bf8ed18017a3c702a00006a\/natalya-rudakova-profile.jpg","version":28,"id":"75036","lastModified":"1302030724000","name":"Natalya Rudakova","type":"Person","_key":"55500"} +{"label":"David Atrakchi","version":27,"id":"134410","lastModified":"1302030724000","name":"David Atrakchi","type":"Person","_key":"55501"} +{"label":"Alex Kobold","version":26,"id":"134411","lastModified":"1302030724000","name":"Alex Kobold","type":"Person","_key":"55502"} +{"label":"Yann Sundberg","version":26,"id":"134412","lastModified":"1302030724000","name":"Yann Sundberg","type":"Person","_key":"55503"} +{"label":"Silvio Simac","version":26,"id":"134414","lastModified":"1302030724000","name":"Silvio Simac","type":"Person","_key":"55504"} +{"label":"No Time For Nuts","description":"Scrat comes across a time machine and is transported to various times all in pursuit of his beloved acorn.","id":"13388","runtime":5,"imdbId":"tt0902999","version":69,"lastModified":"1301904009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8df\/4bc93ce9017a3c57fe0198df\/no-time-for-nuts-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"No Time For Nuts","releaseDate":1158192000000,"language":"en","type":"Movie","_key":"55505"} +{"label":"Chris Renaud","version":81,"id":"124748","lastModified":"1301904081000","name":"Chris Renaud","type":"Person","_key":"55506"} +{"label":"Righteous Kill","description":"Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?","id":"13389","runtime":101,"imdbId":"tt1034331","trailer":"http:\/\/www.youtube.com\/watch?v=j4C6wLTPM1w","homepage":"http:\/\/www.righteouskill-themovie.com","version":291,"lastModified":"1301901503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4bc93cf4017a3c57fe019923\/righteous-kill-mid.jpg","studio":"Millennium Films","genre":"Action","title":"Righteous Kill","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"55507"} +{"label":"Tortured","description":"Jimmy, a business-like young man, enters a room where a man, the accountant for a shadowy drug lord, is shackled. Over the next week, Jimmy systematically tortures the accountant, demanding information about missing funds. The accountant denies any knowledge. In flashbacks to six months before, we see Jimmy's joining a group of the drug lord's enforcers, surviving brutal hazing, getting his first assignment, and keeping his cool. We also learn that Jimmy has another identity, friends in high pla","id":"13390","runtime":107,"imdbId":"tt1029167","version":151,"lastModified":"1301905955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/949\/4bc93cfa017a3c57fe019949\/tortured-mid.jpg","genre":"Action","title":"Tortured","releaseDate":1221523200000,"language":"en","type":"Movie","_key":"55508"} +{"label":"Vexille: 2077 Isolation of Japan","description":"Japan, 2077: A female agent named Vexille is dispatched to Tokyo to investigate whether Japanese are developing robotic technology, which has been banned by the U.N. due to its potential threat to humankind.","id":"13391","runtime":109,"imdbId":"tt0970472","trailer":"http:\/\/www.youtube.com\/watch?v=5Xboe4cH8Ls","version":68,"lastModified":"1301902277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/985\/4bc93d02017a3c57fe019985\/2077-mid.jpg","studio":"Avex Entertainment","genre":"Animation","title":"Vexille: 2077 Isolation of Japan","releaseDate":1187395200000,"language":"en","type":"Movie","_key":"55509"} +{"label":"Fumihiko Sori","version":28,"id":"70103","lastModified":"1301901569000","name":"Fumihiko Sori","type":"Person","_key":"55510"} +{"label":"Colleen Clinkenbeard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/82c\/4d273bce7b9aa134d800182c\/colleen-clinkenbeard-profile.jpg","version":18,"id":"147781","lastModified":"1301901598000","name":"Colleen Clinkenbeard","type":"Person","_key":"55511"} +{"label":"Meisa Kuroki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/814\/4d273a2d7b9aa134cb001814\/meisa-kuroki-profile.jpg","version":33,"birthday":"580773600000","id":"94018","birthplace":"Okinawa, Japan","lastModified":"1301901595000","name":"Meisa Kuroki","type":"Person","_key":"55512"} +{"label":"Yasuko Matsuyuki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76c\/4d273ce37b9aa134e000176c\/yasuko-matsuyuki-profile.jpg","version":29,"id":"127892","lastModified":"1301902037000","name":"Yasuko Matsuyuki","type":"Person","_key":"55513"} +{"label":"Christine M. Auten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b4\/4d2743477b9aa134e00017b4\/christine-m-auten-profile.jpg","version":23,"id":"25773","lastModified":"1301901151000","name":"Christine M. Auten","type":"Person","_key":"55514"} +{"label":"My Father and My Son","description":"A Turkish man, whose wife died while giving birth to his son during a military coup, finally returns home. Estranged from his father for turning his back on the family farm, he takes his 8 year-old and tries to repair relations.","id":"13393","runtime":108,"imdbId":"tt0476735","version":83,"lastModified":"1301905634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc93d04017a3c57fe01999d\/babam-ve-oglum-mid.jpg","studio":"Avsar Film","genre":"Comedy","title":"My Father and My Son","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"55515"} +{"label":"\u00c7a\u011fan Irmak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e35\/4d1446d55e73d60842001e35\/a-an-irmak-profile.jpg","version":32,"id":"142857","lastModified":"1301901845000","name":"\u00c7a\u011fan Irmak","type":"Person","_key":"55516"} +{"label":"\u00c7etin Tekindor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d36\/4d144e1c5e73d6083e001d36\/etin-tekindor-profile.jpg","biography":"<P>\u200b1970 y\u0131l\u0131nda Ankara Devlet Konservatuar\u0131'ndan mezun oldu. Tiyatro sahnelerine IV. Murat oyunu ile giri\u015f yapt\u0131. Hacettepe \u00dcniversitesi Devlet Konservatuar\u0131'nda \"Sahne ve Diksiyon\" dersleri veren Tekindor, daha sonra ayn\u0131 g\u00f6revini 1998 y\u0131l\u0131na dek Bilkent \u00dcniversitesi Tiyatro B\u00f6l\u00fcm\u00fc'nde s\u00fcrd\u00fcrd\u00fc. Onun daha b\u00fcy\u00fck kitlelerce tan\u0131nmas\u0131, TRT televizyonunda 1976-1977 y\u0131llar\u0131nda yay\u0131nlanan 'Mc Millan ve Kar\u0131s\u0131' dizisindeki, Rock Hudson'\u0131n oynad\u0131\u011f\u0131 Emniyet M\u00fcd\u00fcr\u00fc Stewart McMillan karakterini seslendir","version":29,"id":"93389","lastModified":"1301901846000","name":"\u00c7etin Tekindor","type":"Person","_key":"55517"} +{"label":"Fikret Kuskan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dbd\/4d145bf45e73d60832001dbd\/fikret-kuskan-profile.jpg","biography":"<P>\u200b(Mehmet Fikret Ku\u015fkan) (d. 22 Nisan 1965 \u0130stanbul) \u00c7erkes k\u00f6kenli T\u00fcrk oyuncu.<\/P>\r\n<P>1986'da \u0130stanbul \u00dcniversitesi Devlet Konservatuvar\u0131 Tiyatro B\u00f6l\u00fcm\u00fc \u00f6zel yetenek s\u0131nav\u0131n\u0131 kazanarak e\u011fitimini bu okulda s\u00fcrd\u00fcr\u00fcp tamamlam\u0131\u015ft\u0131r. Oyunculuk konusunda lise e\u011fitimi s\u0131ras\u0131nda edebiyat \u00f6\u011fretmeninin deste\u011fini al\u0131r. Foto\u011fraf\u00e7\u0131l\u0131k yaparken b\u0131rakarak, tiyatro a\u015fk\u0131yla s\u0131navlara girer.Zor da olsa konservatuvar\u0131 bitirmesinin ard\u0131ndan Z\u00fclf\u00fc Livaneli'nin \"Sis\" filminde ilk rol\u00fcn\u00fc oynad\u0131.<BR><\/P>","version":29,"id":"93390","lastModified":"1301901528000","name":"Fikret Kuskan","type":"Person","_key":"55518"} +{"label":"Binnur Kaya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f17\/4d1465a15e73d60834001f17\/binnur-kaya-profile.jpg","biography":"<P>(d. 19 Nisan 1972 Ankara) T\u00fcrk tiyatro, sinema ve dizi oyuncusu.Elaz\u0131\u011f k\u00f6kenli bir aileden gelmektedir.ger\u00e7ek hayattaki tav\u0131rlar\u0131 oyna\u011f\u0131 rollerin tam aksidir bu kendisinin ne kadar yetenekli oldu\u011funu g\u00f6sterir<\/P>\r\n<P>1995 y\u0131l\u0131nda Bilkent \u00dcniversitesi M\u00fczik ve Sahne Sanatlar\u0131 Fak\u00fcltesi Tiyatro B\u00f6l\u00fcm\u00fc'n\u00fc bitirdi. Hemen ard\u0131ndan \u0130stanbul'a yerle\u015fen Kaya, Ankara Sahnesi ve Karatahta isimli \u00e7ocuk tiyatrolar\u0131 ve Bak\u0131rk\u00f6y Belediye Tiyatrosu'nda \u00e7al\u0131\u015ft\u0131. \u0130lk televizyon dizisi Kaynanalar'd\u0131r. Be\u015fikta\u015f","version":21,"id":"115012","lastModified":"1301902210000","name":"Binnur Kaya","type":"Person","_key":"55519"} +{"label":"Tuba B\u00fcy\u00fck\u00fcst\u00fcn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc8\/4d1498ab5e73d6083e001fc8\/tuba-b-y-k-st-n-profile.jpg","biography":"<P>(d. 5 Temmuz, 1982), T\u00fcrk dizi ve sinema oyuncusudur.<\/P>\r\n<P>Ailesi Erzurum k\u00f6kenli olup, kendisi \u0130stanbul'da do\u011fmu\u015ftur. \u0130stanbul \u00d6zel Do\u011fu\u015f Okullar\u0131'ndan ve Mimar Sinan G\u00fczel Sanatlar \u00dcniversitesi Sahne Dekorlar\u0131 ve Kost\u00fcm Tasar\u0131m\u0131 B\u00f6l\u00fcm\u00fc'nden mezun oldu. \u00dcniversitede okurken reklam filmlerinde rol ald\u0131. Y\u00f6netmen Tomris Giritlio\u011flu ile tan\u0131\u015ft\u0131ktan sonra oyunculu\u011fa ba\u015flad\u0131.<\/P>\r\n<P>Sultan Makam\u0131 adl\u0131 dizinin son d\u00f6rt b\u00f6l\u00fcm\u00fcnde rol ald\u0131. 2004 y\u0131l\u0131nda \u00c7a\u011fan Irmak'\u0131n y\u00f6netti\u011fi \u00c7emberimde G\u00fcl Oy","version":21,"id":"142855","lastModified":"1301902041000","name":"Tuba B\u00fcy\u00fck\u00fcst\u00fcn","type":"Person","_key":"55520"} +{"label":"Shrek the Halls","description":"The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.","id":"13394","runtime":58,"imdbId":"tt0897387","version":251,"lastModified":"1301901871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cf\/4d434b035e73d670630003cf\/shrek-the-halls-mid.jpg","genre":"Adventure","title":"Shrek the Halls","releaseDate":1196208000000,"language":"en","type":"Movie","_key":"55521"} +{"label":"Susan Fitzer","version":37,"id":"76741","lastModified":"1302015948000","name":"Susan Fitzer","type":"Person","_key":"55522"} +{"label":"Aron Warner","version":78,"id":"12106","lastModified":"1302051655000","name":"Aron Warner","type":"Person","_key":"55523"} +{"label":"Marissa Jaret Winokur","version":29,"id":"76742","lastModified":"1301901938000","name":"Marissa Jaret Winokur","type":"Person","_key":"55524"} +{"label":"Miles Christopher Bakshi","version":36,"id":"76743","lastModified":"1302015948000","name":"Miles Christopher Bakshi","type":"Person","_key":"55525"} +{"label":"Nina Zoe Bakshi","version":36,"id":"76744","lastModified":"1302015948000","name":"Nina Zoe Bakshi","type":"Person","_key":"55526"} +{"label":"Dante James Hauser","version":29,"id":"76745","lastModified":"1301901937000","name":"Dante James Hauser","type":"Person","_key":"55527"} +{"label":"The Flight Before Christmas","description":"A young reindeer who suffers from vertigo learns to overcome his fear, takes flying lessons from a clumsy flying squirrel and heads to the North pole to save a troubled Santa and his fleet of flying reindeer.","id":"13395","runtime":82,"imdbId":"tt1305621","version":110,"lastModified":"1301415889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b7\/4bc93d06017a3c57fe0199b7\/the-flight-before-christmas-mid.jpg","genre":"Adventure","title":"The Flight Before Christmas","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"55528"} +{"label":"The Snowman","description":"Delightfully animated story describing how a young boy's snowman comes to life at midnight. Introduction by David Bowie. Based on the book by Raymond Briggs.","id":"13396","runtime":26,"imdbId":"tt0084701","version":66,"lastModified":"1302065905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c0\/4bc93d07017a3c57fe0199c0\/the-snowman-mid.jpg","genre":"Animation","title":"The Snowman","releaseDate":378691200000,"language":"en","type":"Movie","_key":"55529"} +{"label":"Dianne Jackson","version":21,"id":"122965","lastModified":"1302065905000","name":"Dianne Jackson","type":"Person","_key":"55530"} +{"label":"The Year Without a Santa Claus","description":"Feeling forgotten by the children of the world, old St. Nick decides to skip his gift-giving journey and take a vacation. Mrs. Claus and two spunky little elves, Jingle and Jangle, set out to see to where all the season's cheer has disappeared. Aided by a magical snowfall, they reawaken the spirit of Christmas in children's hearts and put Santa back in action.","id":"13397","runtime":51,"imdbId":"tt0072424","version":119,"lastModified":"1301903155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4bc93d07017a3c57fe0199c9\/the-year-without-a-santa-claus-mid.jpg","genre":"Animation","title":"The Year Without a Santa Claus","releaseDate":155865600000,"language":"en","type":"Movie","_key":"55531"} +{"label":"Shirley Booth","version":20,"id":"113284","lastModified":"1301902315000","name":"Shirley Booth","type":"Person","_key":"55532"} +{"label":"Tokyo Godfathers","description":"Christmas in Tokyo, Japan. Three homeless friends: a young girl, a transvestite, and a middle-aged bum. While foraging through some trash, they find an abandoned newborn.","id":"13398","runtime":92,"imdbId":"tt0388473","version":146,"lastModified":"1301903623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/103\/4c1474f37b9aa10457000103\/13398-mid.jpg","studio":"GENCO","genre":"Animation","title":"Tokyo Godfathers","releaseDate":1074038400000,"language":"en","type":"Movie","_key":"55533"} +{"label":"Aya Okamoto","version":16,"id":"117626","lastModified":"1301902928000","name":"Aya Okamoto","type":"Person","_key":"55534"} +{"label":"Yoshiaki Umegaki","version":16,"id":"117629","lastModified":"1301902928000","name":"Yoshiaki Umegaki","type":"Person","_key":"55535"} +{"label":"Hooves of Fire","description":"Robbie, an out-of-condition reindeer, tries to earn a place on Santa's crack sleigh team.","id":"13399","runtime":29,"imdbId":"tt0219086","version":40,"lastModified":"1301907434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9df\/4bc93d0b017a3c57fe0199df\/hooves-of-fire-mid.jpg","title":"Hooves of Fire","releaseDate":946080000000,"language":"en","type":"Movie","_key":"55536"} +{"label":"Santa Claus is Comin' to Town","description":"A postman, S.D. Kluger, decides to answer some of the most common questions about Santa Claus, and tells us about a small baby named Kris who is raised by a family of elf toymakers named Kringle. When Kris grew up, he wanted to deliver toys to the children of Sombertown. But its Mayor is too mean to let that happen. And to make things worse, the Winter Warlock who lives between the Kringles and Sombertown, but Kris manages to melt the Warlock's heart and deliver his toys.","id":"13400","runtime":48,"imdbId":"tt0066327","version":252,"lastModified":"1301906929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ed\/4bc93d0c017a3c57fe0199ed\/santa-claus-is-coming-to-town-mid.jpg","studio":"Rankin\/Bass Productions","genre":"Animation","title":"Santa Claus is Comin' to Town","releaseDate":29980800000,"language":"en","tagline":"You better watch out!","type":"Movie","_key":"55537"} +{"label":"Robie Lester","version":19,"id":"143621","lastModified":"1301902349000","name":"Robie Lester","type":"Person","_key":"55538"} +{"label":"The Accidental Husband","description":"When radio love guru Dr Emma Lloyd convinces Patrick Sullivan's fianc\u00e9e to dump him the week before their wedding. He sets about teaching her a lesson for interfering in other peoples lives that she knows nothing about. Things take a turn when he finds himself falling for the very person who ruined his life and everyone is going to have to learn a few lessons about 'Real Love'","id":"13401","runtime":90,"imdbId":"tt0809504","trailer":"http:\/\/www.youtube.com\/watch?v=XA9BZJdwFPI","version":180,"lastModified":"1302060583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fe\/4bc93d0f017a3c57fe0199fe\/the-accidental-husband-mid.jpg","studio":"Team Todd","genre":"Comedy","title":"The Accidental Husband","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"55539"} +{"label":"Justina Machado","version":24,"id":"95517","lastModified":"1302060488000","name":"Justina Machado","type":"Person","_key":"55540"} +{"label":"Jeffrey Tedmori","version":20,"id":"95518","lastModified":"1302060488000","name":"Jeffrey Tedmori","type":"Person","_key":"55541"} +{"label":"Nick Sandow","version":23,"id":"95519","lastModified":"1302060488000","name":"Nick Sandow","type":"Person","_key":"55542"} +{"label":"Lindsey Kraft","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/079\/4d8e669c5e73d65ed6001079\/lindsey-kraft-profile.jpg","version":25,"id":"95521","lastModified":"1302060488000","name":"Lindsey Kraft","type":"Person","_key":"55543"} +{"label":"Yolande Bavan","version":20,"id":"95522","lastModified":"1302060488000","name":"Yolande Bavan","type":"Person","_key":"55544"} +{"label":"Re-cycle","description":"Ting-yin, a young novelist, is struggling to come up with a followup to her best-selling trilogy of romance novels. After drafting her first chapter, she stops and deletes the file from her computer. She then starts seeing strange, unexplainable things and finds that she is experiencing the supernatural events that she described in her novel-to-be.","id":"13402","runtime":108,"imdbId":"tt0498311","trailer":"http:\/\/www.youtube.com\/watch?v=764","version":151,"lastModified":"1301903136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a11\/4bc93d11017a3c57fe019a11\/gwai-wik-mid.jpg","studio":"Magic Head Film Production","genre":"Fantasy","title":"Re-cycle","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"55545"} +{"label":"Viraiwon Jauwseng","version":21,"id":"95611","lastModified":"1301902701000","name":"Viraiwon Jauwseng","type":"Person","_key":"55546"} +{"label":"Hedwig and the Angry Inch","description":"A transexual punk rock girl from East Berlin tours the US with her rock band as she tells her life story and follows the ex-boyfriend\/bandmate who stole her songs.","id":"13403","runtime":95,"imdbId":"tt0248845","trailer":"http:\/\/www.youtube.com\/watch?v=806","version":179,"lastModified":"1301903011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a23\/4bc93d12017a3c57fe019a23\/hedwig-and-the-angry-inch-mid.jpg","genre":"Comedy","title":"Hedwig and the Angry Inch","releaseDate":979862400000,"language":"en","type":"Movie","_key":"55547"} +{"label":"Michael Aronov","version":23,"id":"126686","lastModified":"1301902426000","name":"Michael Aronov","type":"Person","_key":"55548"} +{"label":"Stephen Trask","version":39,"id":"21266","lastModified":"1301901771000","name":"Stephen Trask","type":"Person","_key":"55549"} +{"label":"Theodore Liscinski","version":23,"id":"126684","lastModified":"1301902225000","name":"Theodore Liscinski","type":"Person","_key":"55550"} +{"label":"Big City","description":"Description : Set in the American Wild West, this French-language film quickly overcomes its dire beginning--the Native American ambush of a group of immigrants--and becomes an enjoyable comedy. When the adults of Big City leave for the ambush site, the children realize they are all alone and in charge. With a cast composed almost entirely of young people...","id":"13404","runtime":100,"imdbId":"tt0865868","version":138,"lastModified":"1301524563000","genre":"Western","title":"Big City","releaseDate":1197417600000,"language":"en","type":"Movie","_key":"55551"} +{"label":"Djamel Bensalah","version":20,"id":"108060","lastModified":"1301902678000","name":"Djamel Bensalah","type":"Person","_key":"55552"} +{"label":"The Children of Huang Shi","description":"About young British journalist, George Hogg, who with the assistance of a courageous Australian nurse, saves a group of orphaned children during the Japanese occupation of China in 1937.","id":"13405","runtime":114,"imdbId":"tt0889588","homepage":"http:\/\/www.childrenofhuangshi.com\/","version":180,"lastModified":"1301902721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a35\/4bc93d17017a3c57fe019a35\/the-children-of-huang-shi-mid.jpg","studio":"Sony Pictures Classics","genre":"Drama","title":"The Children of Huang Shi","releaseDate":1215043200000,"language":"en","tagline":"War made them orphans, one man made them legends","type":"Movie","_key":"55553"} +{"label":"Trainwreck: My Life as an Idoit","description":"A dramatic comedy about a self-induced attention-deficit disordered, learning disabled, Tourette's syndrome suffering, balance impaired, ex-alcoholic young man from the Upper East Side of Manhattan and the gold-digging girl who inspires him to try to get it together.","id":"13406","runtime":90,"imdbId":"tt0783601","version":30,"lastModified":"1301904035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3e\/4bc93d18017a3c57fe019a3e\/trainwreck-my-life-as-an-idoit-mid.jpg","title":"Trainwreck: My Life as an Idoit","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55554"} +{"label":"My Girl and I","description":"Su-ho is a plain high school boy, and Su- is a bright and beautiful girl in the same school. For some unknown reason, Su-eun has a crush on the boy, and for equally mysterious reasons she rescues Su-ho in the sea (though he doesn\u2019t know who actually saved him). In the process, Su-eun loses her pager. When she discloses the relationship with Su-ho at school, despite envy and disbelief from other classmates, she asks Su-ho to buy her a pager so that they can communicate with each other through voi","id":"13407","runtime":95,"imdbId":"tt0488177","version":69,"lastModified":"1301905325000","genre":"Drama","title":"My Girl and I","releaseDate":1135209600000,"language":"en","type":"Movie","_key":"55555"} +{"label":"Hye-kyo Song","version":22,"id":"74421","lastModified":"1301901600000","name":"Hye-kyo Song","type":"Person","_key":"55556"} +{"label":"Yun-su Jeon","version":26,"id":"74422","lastModified":"1301901707000","name":"Yun-su Jeon","type":"Person","_key":"55557"} +{"label":"The Wash","description":"With the rent due and his car booted, Sean (Dr. Dre) has to come up with\nsome ends...and fast. When his best buddy and roommate Dee Loc (Snoop\nDogg), suggests that Sean get a job busting suds down at the local car\nwash.\n","id":"13408","runtime":93,"imdbId":"tt0290332","version":138,"lastModified":"1301907567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a47\/4bc93d18017a3c57fe019a47\/the-wash-mid.jpg","studio":"Lions Gate Films","genre":"Action","title":"The Wash","releaseDate":1005868800000,"language":"en","type":"Movie","_key":"55558"} +{"label":"Angell Conwell","version":17,"id":"93615","lastModified":"1301902655000","name":"Angell Conwell","type":"Person","_key":"55559"} +{"label":"Bruce Bruce","version":17,"id":"93616","lastModified":"1301902706000","name":"Bruce Bruce","type":"Person","_key":"55560"} +{"label":"Alex Thomas","version":22,"id":"83108","lastModified":"1301902466000","name":"Alex Thomas","type":"Person","_key":"55561"} +{"label":"State Property 2","description":"Three gangsters vie for control of the streets of Philadelphia.","id":"13409","runtime":94,"imdbId":"tt0403537","version":183,"lastModified":"1301903945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a75\/4bc93d1d017a3c57fe019a75\/state-property-2-mid.jpg","studio":"Lions Gate Films","genre":"Action","title":"State Property 2","releaseDate":1113350400000,"language":"en","type":"Movie","_key":"55562"} +{"label":"Beanie Sigel","version":18,"id":"92940","lastModified":"1301902074000","name":"Beanie Sigel","type":"Person","_key":"55563"} +{"label":"Noreaga","version":17,"id":"92944","lastModified":"1301902466000","name":"Noreaga","type":"Person","_key":"55564"} +{"label":"Michael Bentt","version":17,"id":"90449","lastModified":"1301902525000","name":"Michael Bentt","type":"Person","_key":"55565"} +{"label":"Omillio Sparks","version":17,"id":"93008","lastModified":"1301902891000","name":"Omillio Sparks","type":"Person","_key":"55566"} +{"label":"Sundy Carter","version":17,"id":"93009","lastModified":"1301902891000","name":"Sundy Carter","type":"Person","_key":"55567"} +{"label":"Malibu's Most Wanted","description":"Bill Gluckman, a wealthy white Jewish senator is running for the office of Governor. His son \"B-Rad\" dresses, speaks, and acts as if he were a gangster from the inner city. The campaign team members hire two actors, who don't know any more about inner-city life than B-Rad, to act as gang members, kidnap him, and take him to South Central Los Angeles where they hope Brad will be \"scared white\".","id":"13411","runtime":86,"imdbId":"tt0328099","version":236,"lastModified":"1302039205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a82\/4bc93d22017a3c57fe019a82\/malibu-s-most-wanted-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Malibu's Most Wanted","releaseDate":1049932800000,"language":"en","type":"Movie","_key":"55568"} +{"label":"Damien Dante Wayans","version":22,"id":"87820","lastModified":"1301902140000","name":"Damien Dante Wayans","type":"Person","_key":"55569"} +{"label":"Keili Lefkovitz","version":19,"id":"89857","lastModified":"1301902634000","name":"Keili Lefkovitz","type":"Person","_key":"55570"} +{"label":"Greg Grunberg","version":24,"id":"17305","lastModified":"1301901512000","name":"Greg Grunberg","type":"Person","_key":"55571"} +{"label":"Kellie Martin","version":23,"id":"93663","lastModified":"1301901716000","name":"Kellie Martin","type":"Person","_key":"55572"} +{"label":"Walk All Over Me","description":"Alberta, a mousy young woman with the survival skills of a snail, loses cash that isn't hers, so she runs from her small town to Seattle where her old babysitter, Celene, lives - a dominatrix with a classy apartment and a life plan. She lets Alberta stay. Alberta gets a job as a checker at a supermarket and becomes fascinated with Celene's work.","id":"13412","runtime":98,"imdbId":"tt0907680","homepage":"www.walkallovermethemovie.com","version":158,"lastModified":"1301905278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8f\/4bc93d23017a3c57fe019a8f\/walk-all-over-me-mid.jpg","studio":"Chaos, a Film Company","genre":"Crime","title":"Walk All Over Me","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55573"} +{"label":"Tricia Helfer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/009\/4c2d25e55e73d63cd0000009\/tricia-helfer-profile.jpg","version":49,"id":"74423","lastModified":"1301904135000","name":"Tricia Helfer","type":"Person","_key":"55574"} +{"label":"Burn\u00b7E","description":"What lengths will a robot undergo to do his job? BURN-E is a dedicated hard working robot who finds himself locked out of his ship. BURN-E quickly learns that completing a simple task can often be a very difficult endeavor.","id":"13413","runtime":8,"imdbId":"tt1334585","version":138,"lastModified":"1301901726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa0\/4bc93d24017a3c57fe019aa0\/burne-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Burn\u00b7E","releaseDate":1226966400000,"language":"en","type":"Movie","_key":"55575"} +{"label":"Angus MacLane","version":99,"id":"7929","lastModified":"1301901440000","name":"Angus MacLane","type":"Person","_key":"55576"} +{"label":"Tessa Swigart","version":26,"id":"138073","lastModified":"1301902637000","name":"Tessa Swigart","type":"Person","_key":"55577"} +{"label":"Fifty Pills","description":"A combination of unfortunate circumstances force Darren into the situation where he has to sell off the eponymous stash of drugs in a limited time frame.","id":"13414","runtime":85,"imdbId":"tt0426462","trailer":"http:\/\/www.youtube.com\/watch?v=768","version":154,"lastModified":"1301904227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa9\/4bc93d25017a3c57fe019aa9\/fifty-pills-mid.jpg","genre":"Comedy","title":"Fifty Pills","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"55578"} +{"label":"Theo Avgerinos","version":20,"id":"74425","lastModified":"1301902175000","name":"Theo Avgerinos","type":"Person","_key":"55579"} +{"label":"Rikki-Tikki-Tavi","description":"Rikki is a young mongoose who is adopted by a human family after nearly drowning in the river. He returns the favour by protecting them from two murderous cobra.","id":"13415","runtime":24,"imdbId":"tt0175122","version":50,"lastModified":"1301907397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab2\/4bc93d25017a3c57fe019ab2\/rikki-tikki-tavi-mid.jpg","studio":"Columbia Broadcasting System (CBS)","genre":"Animation","title":"Rikki-Tikki-Tavi","releaseDate":158457600000,"language":"en","type":"Movie","_key":"55580"} +{"label":"Shepard Menken","version":20,"id":"121617","lastModified":"1301903066000","name":"Shepard Menken","type":"Person","_key":"55581"} +{"label":"Lennie Weinrib","version":18,"id":"90298","lastModified":"1301902506000","name":"Lennie Weinrib","type":"Person","_key":"55582"} +{"label":"Friday Night Lights","description":"Gary Gaines, the coach of a local football team in small-town Odessa, Texas, propels his squad to the state championships. But the path to glory is paved with racial and economic strife, and the coach must help his players navigate through the maze so they can play like winners.","id":"13416","runtime":118,"imdbId":"tt0390022","version":266,"lastModified":"1301902992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac7\/4bc93d27017a3c57fe019ac7\/friday-night-lights-mid.jpg","genre":"Action","title":"Friday Night Lights","releaseDate":1097193600000,"language":"en","tagline":"Hope comes alive on Friday nights.","type":"Movie","_key":"55583"} +{"label":"Tim McGraw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a8\/4c16948e7b9aa108d60000a8\/tim-mcgraw-profile.jpg","version":45,"id":"74428","lastModified":"1301901272000","name":"Tim McGraw","type":"Person","_key":"55584"} +{"label":"Josh Pate","version":25,"id":"74429","lastModified":"1301901820000","name":"Josh Pate","type":"Person","_key":"55585"} +{"label":"The Emperor's New Groove 2: Kronk's New Groove","description":"Kronk, now chef and Head Delivery Boy of Mudka's Meat Hut, is fretting over the upcoming visit of his father. Kronk's father always disapproved of young Kronk's culinary interests and wished that Kronk instead would settle down with a wife and a large house on a hill.","id":"13417","runtime":72,"imdbId":"tt0401398","version":101,"lastModified":"1301902482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad9\/4bc93d2a017a3c57fe019ad9\/the-emperor-s-new-groove-2-kronk-s-new-groove-mid.jpg","genre":"Animation","title":"The Emperor's New Groove 2: Kronk's New Groove","releaseDate":1134432000000,"language":"en","type":"Movie","_key":"55586"} +{"label":"Robin Steele","version":19,"id":"92695","lastModified":"1301901870000","name":"Robin Steele","type":"Person","_key":"55587"} +{"label":"Elliot M. Bour","version":24,"id":"92694","lastModified":"1301901722000","name":"Elliot M. Bour","type":"Person","_key":"55588"} +{"label":"Saul Blinkoff","version":28,"id":"77488","lastModified":"1301901562000","name":"Saul Blinkoff","type":"Person","_key":"55589"} +{"label":"Draw The Line","description":"No overview found.","id":"13418","runtime":60,"trailer":"http:\/\/www.youtube.com\/watch?v=775","homepage":"http:\/\/standardfilmsbeta.com\/index.php?option=com_content&task=view&id=123&Itemid=27","version":137,"lastModified":"1301905629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ade\/4bc93d2a017a3c57fe019ade\/draw-the-line-mid.jpg","studio":"Standard Films","genre":"Documentary","title":"Draw The Line","releaseDate":1155600000000,"language":"en","type":"Movie","_key":"55590"} +{"label":"Mike Hatchett","version":21,"id":"74432","lastModified":"1301901949000","name":"Mike Hatchett","type":"Person","_key":"55591"} +{"label":"Tim Manning","version":19,"id":"74435","lastModified":"1301902074000","name":"Tim Manning","type":"Person","_key":"55592"} +{"label":"Jeremy Jones","version":18,"id":"74459","lastModified":"1301902162000","name":"Jeremy Jones","type":"Person","_key":"55593"} +{"label":"Mads Jonsson","version":15,"id":"74460","lastModified":"1301902074000","name":"Mads Jonsson","type":"Person","_key":"55594"} +{"label":"John Jackson","version":20,"id":"74461","lastModified":"1301901870000","name":"John Jackson","type":"Person","_key":"55595"} +{"label":"Mark Landvik","version":20,"id":"74462","lastModified":"1301902248000","name":"Mark Landvik","type":"Person","_key":"55596"} +{"label":"Jonas Emery","version":15,"id":"74463","lastModified":"1301902248000","name":"Jonas Emery","type":"Person","_key":"55597"} +{"label":"Gabe Taylor","version":15,"id":"74464","lastModified":"1301902248000","name":"Gabe Taylor","type":"Person","_key":"55598"} +{"label":"Eric Jackson","version":15,"id":"74465","lastModified":"1301902248000","name":"Eric Jackson","type":"Person","_key":"55599"} +{"label":"Matt Hammer","version":15,"id":"74466","lastModified":"1301902248000","name":"Matt Hammer","type":"Person","_key":"55600"} +{"label":"Frederik Kalbermatten","version":15,"id":"74467","lastModified":"1301902248000","name":"Frederik Kalbermatten","type":"Person","_key":"55601"} +{"label":"Juuso Laivisto","version":15,"id":"74468","lastModified":"1301902248000","name":"Juuso Laivisto","type":"Person","_key":"55602"} +{"label":"Kazuhiro Kokubo","version":15,"id":"74469","lastModified":"1301902248000","name":"Kazuhiro Kokubo","type":"Person","_key":"55603"} +{"label":"Marco Grilc","version":15,"id":"74470","lastModified":"1301902248000","name":"Marco Grilc","type":"Person","_key":"55604"} +{"label":"Mitch Reed","version":15,"id":"74471","lastModified":"1301902248000","name":"Mitch Reed","type":"Person","_key":"55605"} +{"label":"Drew Fuller","version":24,"id":"74472","lastModified":"1301902026000","name":"Drew Fuller","type":"Person","_key":"55606"} +{"label":"Chas Guldemond","version":15,"id":"74473","lastModified":"1301902248000","name":"Chas Guldemond","type":"Person","_key":"55607"} +{"label":"Two Hands","description":"A 19 year old finds himself in debt to a local gangster when some gang loot disappears and sets him on the run from thugs. Meanwhile two street kids start a shopping spree when they find the missing money. ","id":"13428","runtime":103,"imdbId":"tt0145547","version":163,"lastModified":"1301905571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aeb\/4bc93d2d017a3c57fe019aeb\/two-hands-mid.jpg","studio":"CML Films","genre":"Action","title":"Two Hands","releaseDate":933206400000,"language":"en","type":"Movie","_key":"55608"} +{"label":"Tom Long","version":21,"id":"75738","lastModified":"1301901870000","name":"Tom Long","type":"Person","_key":"55609"} +{"label":"Tony Forrow","version":19,"id":"75929","lastModified":"1301902248000","name":"Tony Forrow","type":"Person","_key":"55610"} +{"label":"Dale Kalnins","version":19,"id":"75930","lastModified":"1301902248000","name":"Dale Kalnins","type":"Person","_key":"55611"} +{"label":"Kiri Paramore","version":19,"id":"75931","lastModified":"1301902248000","name":"Kiri Paramore","type":"Person","_key":"55612"} +{"label":"William Drury","version":19,"id":"75932","lastModified":"1301902248000","name":"William Drury","type":"Person","_key":"55613"} +{"label":"David Moeaki","version":19,"id":"75933","lastModified":"1301902074000","name":"David Moeaki","type":"Person","_key":"55614"} +{"label":"Mary Acres","version":19,"id":"75934","lastModified":"1301902074000","name":"Mary Acres","type":"Person","_key":"55615"} +{"label":"Evan Sheaves","version":19,"id":"75935","lastModified":"1301902248000","name":"Evan Sheaves","type":"Person","_key":"55616"} +{"label":"Jarrah Darling","version":19,"id":"75936","lastModified":"1301902073000","name":"Jarrah Darling","type":"Person","_key":"55617"} +{"label":"Donkey Punch","description":"Three hot girls, four guys, and one mega-swanky yacht collide for a serious night of drugs and sexual deviancy. One debaucherous act goes too far though, turning this teen joy ride into a weekend of bloody bedlam.","id":"13429","runtime":99,"imdbId":"tt0988849","trailer":"http:\/\/www.youtube.com\/watch?v=UEB3Hx88juE","homepage":"http:\/\/www.donkeypunchmovie.co.uk\/","version":149,"lastModified":"1301902700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af4\/4bc93d2e017a3c57fe019af4\/donkey-punch-mid.jpg","genre":"Drama","title":"Donkey Punch","releaseDate":1216339200000,"language":"en","type":"Movie","_key":"55618"} +{"label":"Olly Blackburn","version":21,"id":"74436","lastModified":"1301901949000","name":"Olly Blackburn","type":"Person","_key":"55619"} +{"label":"Robert Boulter","version":20,"id":"74438","lastModified":"1301901949000","name":"Robert Boulter","type":"Person","_key":"55620"} +{"label":"Sian Breckin","version":20,"id":"74439","lastModified":"1301902145000","name":"Sian Breckin","type":"Person","_key":"55621"} +{"label":"Nichola Burley","version":21,"id":"74440","lastModified":"1301901815000","name":"Nichola Burley","type":"Person","_key":"55622"} +{"label":"Jay Taylor","version":20,"id":"74441","lastModified":"1301901813000","name":"Jay Taylor","type":"Person","_key":"55623"} +{"label":"Always: Sunset on Third Street","description":"Leaving her provincial home, teenage Mutsuko arrives in Tokyo by train to take a job in a major automotive company but finds that she is employed by a small auto repair shop owned by Norifumi Suzuki. Suzuki's hair-trigger temper is held somewhat in check by the motherly instincts of his wife, Tomoe, and his young son Ippei immediately bonds with Mutsuko as if she were his older sister. The Suzuki shop lies almost in the shadow of the Tokyo Tower as it rises steadily above the skyline during cons","id":"13430","runtime":133,"imdbId":"tt0488870","homepage":"http:\/\/www.always3.jp\/","version":58,"lastModified":"1301908544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afd\/4bc93d2f017a3c57fe019afd\/always-san-chome-no-yuhi-mid.jpg","studio":"DENTSU Music And Entertainment","genre":"Drama","title":"Always: Sunset on Third Street","releaseDate":1131148800000,"language":"en","type":"Movie","_key":"55624"} +{"label":"Mystery of the Nile","description":"Filmed in IMAX, a team of explorers led by Pasquale Scaturro and Gordon Brown face seemingly insurmountable challenges as they make their way along all 3,260 miles of the world's longest and deadliest river to become the first in history to complete a full descent of the Blue Nile from source to sea.","id":"13431","runtime":47,"imdbId":"tt0444673","homepage":"http:\/\/www.nilefilm.com\/","version":116,"lastModified":"1301420656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b06\/4bc93d30017a3c57fe019b06\/mystery-of-the-nile-mid.jpg","studio":"MacGillivray Freeman Films","title":"Mystery of the Nile","releaseDate":1112659200000,"language":"en","type":"Movie","_key":"55625"} +{"label":"Jordi Llompart","version":20,"id":"89919","lastModified":"1301902530000","name":"Jordi Llompart","type":"Person","_key":"55626"} +{"label":"Depuis qu'Otar est parti...","description":"No overview found.","id":"13432","runtime":103,"imdbId":"tt0336264","version":53,"lastModified":"1301907389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5f\/4d430f487b9aa15bab004c5f\/depuis-qu-otar-est-parti-mid.jpg","studio":"Les Films du Poisson","title":"Depuis qu'Otar est parti...","releaseDate":1063756800000,"language":"en","type":"Movie","_key":"55627"} +{"label":"Japanese Story","description":"Against the background of an Australian desert landscape, so much space and so few people, Sandy, a geologist, and Hiromitsu, a Japanese businessman, play out a story of human inconsequence in the face of the blistering universe. The end of the journey leaves no-one capable of going back to where they started from. ","id":"13433","runtime":110,"imdbId":"tt0304229","version":119,"lastModified":"1301524390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b18\/4bc93d30017a3c57fe019b18\/japanese-story-mid.jpg","studio":"Fortissimo Films","genre":"Drama","title":"Japanese Story","releaseDate":1064448000000,"language":"en","type":"Movie","_key":"55628"} +{"label":"Noam Chomsky: Distorted Morality","description":"In this remarkable documentary, Noam Chomsky offers a riveting but devastating critique of America's current war on terror arguing, in fact, that it is a logistical impossibility for such a war to be taking place. Professor Chomsky presents his reasoning with astonishing and refreshing clarity, drawing from a wealth of historical knowledge and analysis. \"Only those who are entirely ignorant of modern history will be surprised by the course of events, or by the justifications that are provided...","id":"13434","runtime":55,"imdbId":"tt0361959","version":46,"lastModified":"1301908543000","studio":"Plug Music","genre":"Documentary","title":"Noam Chomsky: Distorted Morality","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"55629"} +{"label":"Noam Chomsky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f8\/4bd5a849017a3c2e740001f8\/noam-chomsky-profile.jpg","biography":"Avram Noam Chomsky (born December 7, 1928) is an American linguist, philosopher, cognitive scientist, and political activist. He is an Institute Professor and professor emeritus of linguistics at the Massachusetts Institute of Technology. Chomsky is well known in the academic and scientific community as one of the fathers of modern linguistics. Since the 1960s, he has become known more widely as a political dissident and an anarchist.","version":34,"id":"116488","lastModified":"1301903056000","name":"Noam Chomsky","type":"Person","_key":"55630"} +{"label":"John Junkerman","version":20,"id":"129926","lastModified":"1301902787000","name":"John Junkerman","type":"Person","_key":"55631"} +{"label":"Antwone Fisher","description":"A sailor prone to violent outbursts is sent to a naval psychiatrist for help. Refusing at first to open up, the young man eventually breaks down and reveals a horrific childhood. Through the guidance of his doctor, he confronts his painful past and begins a quest to find the family he never knew.","id":"13435","runtime":120,"imdbId":"tt0168786","version":234,"lastModified":"1301903294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2d\/4bc93d31017a3c57fe019b2d\/antwone-fisher-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Drama","title":"Antwone Fisher","releaseDate":1071792000000,"language":"en","tagline":"Antwone Fisher is at war... with himself.","type":"Movie","_key":"55632"} +{"label":"Malcolm David Kelley","version":21,"id":"77078","lastModified":"1301901674000","name":"Malcolm David Kelley","type":"Person","_key":"55633"} +{"label":"13: Game of Death","description":"Pusit is having the worst day of his life. He just lost his job and is in serious debt. That is all about to change when he receives a mysterious phone call with a tempting offer. If he could complete 13 tasks, he will win 100 million Baht. Pusit agrees and the game begins.","id":"13436","runtime":114,"imdbId":"tt0883995","version":138,"lastModified":"1302039210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4bc93d36017a3c57fe019b49\/13-game-sayawng-mid.jpg","studio":"Sahamongkol Film International Co. Ltd.","genre":"Comedy","title":"13: Game of Death","releaseDate":1160006400000,"language":"en","type":"Movie","_key":"55634"} +{"label":"Chukiat Sakveerakul","version":21,"id":"81034","lastModified":"1301902124000","name":"Chukiat Sakveerakul","type":"Person","_key":"55635"} +{"label":"Krissada Terrence","version":21,"id":"81037","lastModified":"1301902124000","name":"Krissada Terrence","type":"Person","_key":"55636"} +{"label":"Achita Wuthinounsurasit","version":21,"id":"89605","lastModified":"1301902124000","name":"Achita Wuthinounsurasit","type":"Person","_key":"55637"} +{"label":"Sarunyu Wongkrachang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/185\/4cdfdfff5e73d60f71000185\/sarunyu-wongkrachang-profile.jpg","version":31,"id":"81039","lastModified":"1301901378000","name":"Sarunyu Wongkrachang","type":"Person","_key":"55638"} +{"label":"Nattapong Arunnate","version":21,"id":"81040","lastModified":"1301901762000","name":"Nattapong Arunnate","type":"Person","_key":"55639"} +{"label":"Alexander Rendel","version":21,"id":"81041","lastModified":"1301902124000","name":"Alexander Rendel","type":"Person","_key":"55640"} +{"label":"Achita Sikamana","version":22,"id":"81042","lastModified":"1301902301000","name":"Achita Sikamana","type":"Person","_key":"55641"} +{"label":"Penpak Sirikul","version":23,"id":"81043","lastModified":"1302012332000","name":"Penpak Sirikul","type":"Person","_key":"55642"} +{"label":"Avenging Angelo","description":"A woman who has recently discovered that she is the daughter of Angelo, a major mafia boss, decides to wreak vengeance when he is killed by a hitman. She's aided by his faithful bodyguard, with whom she soon falls in love.","id":"13437","runtime":97,"imdbId":"tt0275947","version":174,"lastModified":"1301902980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d91\/4d66b6477b9aa1296f002d91\/avenging-angelo-mid.jpg","studio":"Dante Entertainment","genre":"Action","title":"Avenging Angelo","releaseDate":1030665600000,"language":"en","type":"Movie","_key":"55643"} +{"label":"Gomgashtei dar Aragh","description":"No overview found.","id":"13438","runtime":108,"imdbId":"tt0317226","version":31,"lastModified":"1300979630000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6c\/4bc93d39017a3c57fe019b6c\/gomgashtei-dar-aragh-mid.jpg","studio":"Mij Film Co.","title":"Gomgashtei dar Aragh","releaseDate":1022025600000,"language":"en","type":"Movie","_key":"55644"} +{"label":"The Tracker","description":"No overview found.","id":"13439","runtime":0,"imdbId":"tt0212132","version":235,"lastModified":"1301907142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b75\/4bc93d3a017a3c57fe019b75\/the-tracker-mid.jpg","studio":"Vertigo Productions","genre":"Drama","title":"The Tracker","releaseDate":1028764800000,"language":"en","type":"Movie","_key":"55645"} +{"label":"The Truth About Charlie","description":"The Truth About Charlie is a 2002 remake of the 1963 film Charade (which starred Cary Grant and Audrey Hepburn). It is also an homage to Fran\u00e7ois Truffaut's Shoot the Piano Player and that film's star Charles Aznavour appeared as himself and sang his song \"Quand tu m'aimes\" (English version).","id":"13440","runtime":104,"imdbId":"tt0270707","version":127,"lastModified":"1301904734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7e\/4bc93d3a017a3c57fe019b7e\/the-truth-about-charlie-mid.jpg","genre":"Drama","title":"The Truth About Charlie","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"55646"} +{"label":"Roger Dodger","description":"After breaking up with his lover and boss, a smooth-talking man takes his teenaged nephew out on the town in search of sex.","id":"13441","runtime":106,"imdbId":"tt0299117","version":193,"lastModified":"1301906781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/484\/4c9f702d5e73d6704a000484\/roger-dodger-mid.jpg","studio":"Holedigger Films","genre":"Comedy","title":"Roger Dodger","releaseDate":1020902400000,"language":"en","type":"Movie","_key":"55647"} +{"label":"ZigZag","description":"No overview found.","id":"13442","runtime":101,"imdbId":"tt0271885","version":82,"lastModified":"1301904672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b99\/4bc93d3c017a3c57fe019b99\/zigzag-mid.jpg","studio":"Franchise Pictures","genre":"Drama","title":"ZigZag","releaseDate":1015718400000,"language":"en","type":"Movie","_key":"55648"} +{"label":"NASCAR 3D: The IMAX Experience","description":"No overview found.","id":"13443","runtime":40,"imdbId":"tt0353774","version":58,"lastModified":"1301415844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a8\/4bf805ad017a3c77320004a8\/nascar-3d-the-imax-experience-mid.jpg","studio":"Warner Bros. Pictures","title":"NASCAR 3D: The IMAX Experience","releaseDate":1079049600000,"language":"en","type":"Movie","_key":"55649"} +{"label":"Volcanoes of the Deep Sea","description":"12,000 feet down, life is erupting.\n\nAlvin, a deep-sea mechanized probe, makes a voyage some 12,000 feet underwater to explore the Azores, a constantly-erupting volcanic rift between Europe and North America.","id":"13444","runtime":40,"imdbId":"tt0331068","homepage":"http:\/\/www.volcanoesofthedeepsea.com\/","version":100,"lastModified":"1301904385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba6\/4bc93d3d017a3c57fe019ba6\/volcanoes-of-the-deep-sea-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Volcanoes of the Deep Sea","releaseDate":1063497600000,"language":"en","type":"Movie","_key":"55650"} +{"label":"Dr. Richard Lutz","version":19,"id":"136237","lastModified":"1301903062000","name":"Dr. Richard Lutz","type":"Person","_key":"55651"} +{"label":"Stephen Low","version":31,"id":"77867","lastModified":"1301901644000","name":"Stephen Low","type":"Person","_key":"55652"} +{"label":"Withnail & I","description":"Two 'resting' actors living in a squalid Camden Flat - and living off a diet of booze and pills - take a trip to a country house (belonging to Withnail\u2019s uncle) to 'rejuvenate'.\nFaced with bad weather, altercations with the locals, and the unexpected arrival (and advances) of Uncle Monty, the pairs wits and friendship are tested...","id":"13446","runtime":107,"imdbId":"tt0094336","version":201,"lastModified":"1301905543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd1\/4bc93d43017a3c57fe019bd1\/withnail-i-mid.jpg","studio":"Handmade Films Ltd.","genre":"Comedy","title":"Withnail & I","releaseDate":551059200000,"language":"en","type":"Movie","_key":"55653"} +{"label":"Dream Theater - Score: 20th Anniversary World Tour Live with the Octavarium Orchestra","description":"Score: 20th Anniversary World Tour Live with the Octavarium Orchestra is a live album, recorded on April 1, 2006 at Radio City Music Hall in New York City. This is the final concert of their 20th Anniversary Tour, labeled \"A Very Special Evening with Dream Theater\". The entire second half of the concert features a complete symphonic orchestra, dubbed \"The Octavarium Orchestra\", conducted by Jamshied Sharifi.","id":"13447","runtime":0,"imdbId":"tt1239494","version":38,"lastModified":"1300979632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/074\/4cdde3b55e73d60e09000074\/dream-theater-score-20th-anniversary-world-tour-live-with-the-octavarium-orchestra-mid.jpg","genre":"Music","title":"Dream Theater - Score: 20th Anniversary World Tour Live with the Octavarium Orchestra","releaseDate":1156809600000,"language":"en","type":"Movie","_key":"55654"} +{"label":"Angels & Demons","description":"The Pope died and the conclave has been called for. Four candidates were chosen. However, before the voting, the four candidates are killed one by one. The killer leaves clues that seems to say that he\/she is from the Illuminati. Strangely though, the Illuminati was long thought to be extinct. Who is the mastermind? Who revived the Illuminati? What do they want?","id":"13448","runtime":138,"imdbId":"tt0808151","trailer":"http:\/\/www.youtube.com\/watch?v=ArdNQUUcZOM","homepage":"http:\/\/www.angelsanddemons.com\/","version":506,"lastModified":"1301900919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/341\/4bed5b81017a3c37a0000341\/angels-demons-mid.jpg","studio":"Columbia Pictures","genre":"Crime","title":"Angels & Demons","releaseDate":1242345600000,"language":"en","tagline":"The holiest event of our time. Perfect for their return.","type":"Movie","_key":"55655"} +{"label":"David Pasquesi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/198\/4c3b170d5e73d671d1000198\/david-pasquesi-profile.jpg","version":34,"id":"74487","lastModified":"1301901122000","name":"David Pasquesi","type":"Person","_key":"55656"} +{"label":"Cosimo Fusco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/222\/4c3b17385e73d671d0000222\/cosimo-fusco-profile.jpg","version":34,"id":"74488","lastModified":"1301901124000","name":"Cosimo Fusco","type":"Person","_key":"55657"} +{"label":"Allen Dula","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/212\/4c3b17435e73d671d2000212\/allen-dula-profile.jpg","version":31,"id":"74489","lastModified":"1301901122000","name":"Allen Dula","type":"Person","_key":"55658"} +{"label":"Ursula Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19c\/4c3b17635e73d671d100019c\/ursula-brooks-profile.jpg","version":31,"id":"74490","lastModified":"1301901132000","name":"Ursula Brooks","type":"Person","_key":"55659"} +{"label":"Arlo Hemphill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/497\/4d4c36555e73d617ba001497\/arlo-hemphill-profile.jpg","version":32,"id":"74491","lastModified":"1301901220000","name":"Arlo Hemphill","type":"Person","_key":"55660"} +{"label":"Gino Conforti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/662\/4d4c36a55e73d617c7001662\/gino-conforti-profile.jpg","version":34,"id":"74492","lastModified":"1301901089000","name":"Gino Conforti","type":"Person","_key":"55661"} +{"label":"Endre Hules","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67c\/4d4c37245e73d617c700167c\/endre-hules-profile.jpg","version":32,"id":"43461","lastModified":"1301901089000","name":"Endre Hules","type":"Person","_key":"55662"} +{"label":"Kimberley Joseph","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cb\/4d4c377a5e73d617c10015cb\/kimberley-joseph-profile.jpg","version":32,"id":"29052","lastModified":"1301901232000","name":"Kimberley Joseph","type":"Person","_key":"55663"} +{"label":"Shelby Zemanek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/646\/4d4c38455e73d617bd001646\/shelby-zemanek-profile.jpg","version":31,"id":"74493","lastModified":"1301901086000","name":"Shelby Zemanek","type":"Person","_key":"55664"} +{"label":"Victor Alfieri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/64e\/4d4c38885e73d617bd00164e\/victor-alfieri-profile.jpg","version":32,"id":"74494","lastModified":"1301901097000","name":"Victor Alfieri","type":"Person","_key":"55665"} +{"label":"Yan Cui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a5\/4d4c394b5e73d617c70016a5\/yan-cui-profile.jpg","version":31,"id":"74495","lastModified":"1301901095000","name":"Yan Cui","type":"Person","_key":"55666"} +{"label":"Rashmi","version":30,"id":"74496","lastModified":"1301901089000","name":"Rashmi","type":"Person","_key":"55667"} +{"label":"Michael Patrick Breen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5f2\/4d4c39e25e73d617c10015f2\/michael-patrick-breen-profile.jpg","version":31,"id":"74497","lastModified":"1301901211000","name":"Michael Patrick Breen","type":"Person","_key":"55668"} +{"label":"Skoti Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/673\/4d4c3a165e73d617bd001673\/skoti-collins-profile.jpg","version":33,"id":"74498","lastModified":"1301901239000","name":"Skoti Collins","type":"Person","_key":"55669"} +{"label":"Pascal Petardi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/648\/4d4c3a575e73d617b3001648\/pascal-petardi-profile.jpg","version":34,"id":"74499","lastModified":"1301901087000","name":"Pascal Petardi","type":"Person","_key":"55670"} +{"label":"James Tumminia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f4\/4d4c3ab65e73d617ba0014f4\/james-tumminia-profile.jpg","version":31,"id":"74500","lastModified":"1301901084000","name":"James Tumminia","type":"Person","_key":"55671"} +{"label":"Luis Fernandez-Gil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f9\/4d4c3b0a5e73d617ba0014f9\/luis-fernandez-gil-profile.jpg","version":31,"id":"74501","lastModified":"1301901226000","name":"Luis Fernandez-Gil","type":"Person","_key":"55672"} +{"label":"Kristof Konrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cc\/4d4c3bbc5e73d617b70015cc\/kristof-konrad-profile.jpg","version":31,"id":"74502","lastModified":"1301901087000","name":"Kristof Konrad","type":"Person","_key":"55673"} +{"label":"Calvin Dean","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/66c\/4d4c3bfb5e73d617b300166c\/calvin-dean-profile.jpg","version":36,"id":"74503","lastModified":"1301901086000","name":"Calvin Dean","type":"Person","_key":"55674"} +{"label":"Nancy Guerriero","version":30,"id":"74504","lastModified":"1301901089000","name":"Nancy Guerriero","type":"Person","_key":"55675"} +{"label":"Craig Seitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/69c\/4d4c3ca45e73d617bd00169c\/craig-seitz-profile.jpg","version":31,"id":"74505","lastModified":"1301901191000","name":"Craig Seitz","type":"Person","_key":"55676"} +{"label":"Curt Lowens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e8\/4d4c3d265e73d617c70016e8\/curt-lowens-profile.jpg","version":33,"id":"74506","lastModified":"1301901090000","name":"Curt Lowens","type":"Person","_key":"55677"} +{"label":"Michael Arturo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b9\/4d4c3d6b5e73d617bd0016b9\/michael-arturo-profile.jpg","version":31,"id":"74507","lastModified":"1301901239000","name":"Michael Arturo","type":"Person","_key":"55678"} +{"label":"Bryan Friday","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/537\/4d4c3db75e73d617ba001537\/bryan-friday-profile.jpg","version":31,"id":"74508","lastModified":"1301901211000","name":"Bryan Friday","type":"Person","_key":"55679"} +{"label":"Jonas Fisch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/70d\/4d4c3e3a5e73d617c700170d\/jonas-fisch-profile.jpg","version":31,"id":"74509","lastModified":"1301901097000","name":"Jonas Fisch","type":"Person","_key":"55680"} +{"label":"Joel Shock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/693\/4d4c3e7b5e73d617b3001693\/joel-shock-profile.jpg","version":31,"id":"74510","lastModified":"1301901087000","name":"Joel Shock","type":"Person","_key":"55681"} +{"label":"Ed Francis Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/546\/4d4c3eae5e73d617ba001546\/ed-francis-martin-profile.jpg","version":31,"id":"74511","lastModified":"1301901090000","name":"Ed Francis Martin","type":"Person","_key":"55682"} +{"label":"Richard Schimmelpfenneg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/607\/4d4c3f155e73d617b7001607\/richard-schimmelpfenneg-profile.jpg","version":31,"id":"74512","lastModified":"1301901211000","name":"Richard Schimmelpfenneg","type":"Person","_key":"55683"} +{"label":"Stephen Sepher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/655\/4d4c3f835e73d617c1001655\/stephen-sepher-profile.jpg","version":31,"id":"74513","lastModified":"1301901226000","name":"Stephen Sepher","type":"Person","_key":"55684"} +{"label":"Luca Costa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/612\/4d4c3fea5e73d617b7001612\/luca-costa-profile.jpg","version":33,"id":"74514","lastModified":"1301904054000","name":"Luca Costa","type":"Person","_key":"55685"} +{"label":"Laura Mary Clarke","version":30,"id":"74515","lastModified":"1301901210000","name":"Laura Mary Clarke","type":"Person","_key":"55686"} +{"label":"Jeffrey Boehm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6e5\/4d4c405d5e73d617bd0016e5\/jeffrey-boehm-profile.jpg","version":31,"id":"74516","lastModified":"1301901089000","name":"Jeffrey Boehm","type":"Person","_key":"55687"} +{"label":"Jon Lucero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f0\/4d4c40db5e73d617bd0016f0\/jon-lucero-profile.jpg","version":31,"id":"74517","lastModified":"1301901095000","name":"Jon Lucero","type":"Person","_key":"55688"} +{"label":"August Fredrik","version":30,"id":"74518","lastModified":"1301901085000","name":"August Fredrik","type":"Person","_key":"55689"} +{"label":"Ted Hollis","version":30,"id":"74519","lastModified":"1301901210000","name":"Ted Hollis","type":"Person","_key":"55690"} +{"label":"Jerred Berg","version":30,"id":"74520","lastModified":"1301901085000","name":"Jerred Berg","type":"Person","_key":"55691"} +{"label":"Dave Johnson","version":30,"id":"74521","lastModified":"1301901209000","name":"Dave Johnson","type":"Person","_key":"55692"} +{"label":"Les Feltmate","version":30,"id":"74522","lastModified":"1301901089000","name":"Les Feltmate","type":"Person","_key":"55693"} +{"label":"Jason Ciok","version":30,"id":"74523","lastModified":"1301901085000","name":"Jason Ciok","type":"Person","_key":"55694"} +{"label":"Cristy Joy Slavis","version":30,"id":"74524","lastModified":"1301901190000","name":"Cristy Joy Slavis","type":"Person","_key":"55695"} +{"label":"Shervin Davatgar","version":30,"id":"74525","lastModified":"1301901085000","name":"Shervin Davatgar","type":"Person","_key":"55696"} +{"label":"Aaron Denius Garcia","version":30,"id":"74526","lastModified":"1301901087000","name":"Aaron Denius Garcia","type":"Person","_key":"55697"} +{"label":"Paul Richards","version":24,"id":"138379","lastModified":"1301901266000","name":"Paul Richards","type":"Person","_key":"55698"} +{"label":"that","description":"Peter Line, JP Walker, Devun Walsh and the rest of the Forum crew push the boundaries of snowboarding and filming in Forum's That Snowboard Movie.","id":"13451","runtime":39,"trailer":"http:\/\/www.youtube.com\/watch?v=774","version":593,"lastModified":"1301907480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c38\/4bc93d59017a3c57fe019c38\/that-mid.jpg","genre":"Documentary","title":"that","language":"en","type":"Movie","_key":"55699"} +{"label":"Iikka Backstrom","version":15,"id":"74543","lastModified":"1301901870000","name":"Iikka Backstrom","type":"Person","_key":"55700"} +{"label":"Devun Walsh","version":15,"id":"74544","lastModified":"1301901870000","name":"Devun Walsh","type":"Person","_key":"55701"} +{"label":"Pat Moore","version":17,"id":"74545","lastModified":"1301901845000","name":"Pat Moore","type":"Person","_key":"55702"} +{"label":"Stevie Bell","version":17,"id":"74546","lastModified":"1301901845000","name":"Stevie Bell","type":"Person","_key":"55703"} +{"label":"Jake Blauvelt","version":20,"id":"74547","lastModified":"1301901610000","name":"Jake Blauvelt","type":"Person","_key":"55704"} +{"label":"Joni Malmi","version":16,"id":"74548","lastModified":"1301901947000","name":"Joni Malmi","type":"Person","_key":"55705"} +{"label":"Travis Kennedy","version":16,"id":"74549","lastModified":"1301901991000","name":"Travis Kennedy","type":"Person","_key":"55706"} +{"label":"Jake Welch","version":15,"id":"74550","lastModified":"1301901870000","name":"Jake Welch","type":"Person","_key":"55707"} +{"label":"Lauri Heiskari","version":15,"id":"74551","lastModified":"1301901870000","name":"Lauri Heiskari","type":"Person","_key":"55708"} +{"label":"Eddie Wall","version":15,"id":"74552","lastModified":"1301901870000","name":"Eddie Wall","type":"Person","_key":"55709"} +{"label":"JP Walker","version":15,"id":"74553","lastModified":"1301901870000","name":"JP Walker","type":"Person","_key":"55710"} +{"label":"Peter Line","version":15,"id":"74554","lastModified":"1301901870000","name":"Peter Line","type":"Person","_key":"55711"} +{"label":"Searn Kearns","version":15,"id":"74558","lastModified":"1301901870000","name":"Searn Kearns","type":"Person","_key":"55712"} +{"label":"Jeremy Pettit","version":15,"id":"74559","lastModified":"1301901870000","name":"Jeremy Pettit","type":"Person","_key":"55713"} +{"label":"Catch the Vapors","description":"No overview found.","id":"13452","runtime":80,"trailer":"http:\/\/www.youtube.com\/watch?v=776","homepage":"http:\/\/standardfilmsbeta.com\/index.php?option=com_content&task=view&id=113&Itemid=27","version":41,"lastModified":"1301906708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c6\/4cd76d355e73d676d10004c6\/catch-the-vapors-mid.jpg","studio":"Standard Films","genre":"Documentary","title":"Catch the Vapors","releaseDate":1189641600000,"language":"en","type":"Movie","_key":"55714"} +{"label":"Aesthetica","description":"Standard Films spans the globe this past winter documenting insane snowboarding in the gnarliest mountain ranges to Catch the Vapors. Witness the Standard Crew descend huge mountain peaks, drop endless pillows lines, boost huge backcountry kickers, slay unique urban features and throw down on custom resort parks. Catch the Vapors is the progression of All Terrain Freestyle, and Backcountry Snowboa","id":"13453","runtime":0,"trailer":"http:\/\/www.youtube.com\/watch?v=777","version":23,"lastModified":"1301907361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3d\/4bc93d59017a3c57fe019c3d\/aesthetica-mid.jpg","studio":"Standard Films","genre":"Action","title":"Aesthetica","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55715"} +{"label":"Travis Robb","version":17,"id":"74443","lastModified":"1301902032000","name":"Travis Robb","type":"Person","_key":"55716"} +{"label":"More","description":"Once again Absinthe Films raises the bar to bring you 'More'. This title marks the beginning of a new era for Absinthe Films as they have broadened their scope to include and properly represent urban riding while still keeping the overall blend fresh and un-repetitive.","id":"13454","runtime":44,"trailer":"http:\/\/www.youtube.com\/watch?v=778","homepage":"http:\/\/www.absinthe-films.com\/index.php?id=11","version":94,"lastModified":"1301907097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c42\/4bc93d59017a3c57fe019c42\/more-mid.jpg","studio":"Absinthe Films","genre":"Documentary","title":"More","releaseDate":1159574400000,"language":"en","type":"Movie","_key":"55717"} +{"label":"Nicolas Muller","version":22,"id":"81945","lastModified":"1301901570000","name":"Nicolas Muller","type":"Person","_key":"55718"} +{"label":"Travis Rice","version":23,"id":"81946","lastModified":"1301901490000","name":"Travis Rice","type":"Person","_key":"55719"} +{"label":"Gigi R\u00fcf","version":21,"id":"93866","lastModified":"1301902509000","name":"Gigi R\u00fcf","type":"Person","_key":"55720"} +{"label":"Marc Frank Montoya","version":16,"id":"93856","lastModified":"1301902248000","name":"Marc Frank Montoya","type":"Person","_key":"55721"} +{"label":"Mikey Leblanc","version":18,"id":"103270","lastModified":"1301902162000","name":"Mikey Leblanc","type":"Person","_key":"55722"} +{"label":"Wolfgang Nyvelt","version":18,"id":"93863","lastModified":"1301902509000","name":"Wolfgang Nyvelt","type":"Person","_key":"55723"} +{"label":"Jonaven Moore","version":15,"id":"103274","lastModified":"1301902466000","name":"Jonaven Moore","type":"Person","_key":"55724"} +{"label":"JP Solberg","version":18,"id":"93853","lastModified":"1301902509000","name":"JP Solberg","type":"Person","_key":"55725"} +{"label":"Chris Coulter","version":15,"id":"103275","lastModified":"1301902466000","name":"Chris Coulter","type":"Person","_key":"55726"} +{"label":"Kurt Wastell","version":15,"id":"103276","lastModified":"1301902466000","name":"Kurt Wastell","type":"Person","_key":"55727"} +{"label":"Justin Bennee","version":15,"id":"103277","lastModified":"1301902466000","name":"Justin Bennee","type":"Person","_key":"55728"} +{"label":"Nicolas Droz","version":15,"id":"103278","lastModified":"1301902466000","name":"Nicolas Droz","type":"Person","_key":"55729"} +{"label":"Matt Beardmore","version":17,"id":"103279","lastModified":"1301902509000","name":"Matt Beardmore","type":"Person","_key":"55730"} +{"label":"EC","version":15,"id":"103280","lastModified":"1301902466000","name":"EC","type":"Person","_key":"55731"} +{"label":"Push","description":"The action packed sci-fi thriller involves a group of young American ex-pats with telekinetic and clairvoyant abilities, hiding from a clandestine U.S. government agency. They must utilize their different talents and band together for a final job enabling them to escape the agency forever.","id":"13455","runtime":111,"imdbId":"tt0465580","trailer":"http:\/\/www.youtube.com\/watch?v=afT1fAwSr-Q","homepage":"http:\/\/www.push-themovie.com\/","version":229,"lastModified":"1301901565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c58\/4bc93d5c017a3c57fe019c58\/push-mid.jpg","studio":"Infinity Features Entertainment","genre":"Action","title":"Push","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"55732"} +{"label":"Maggie Siff","version":28,"id":"74537","lastModified":"1301901535000","name":"Maggie Siff","type":"Person","_key":"55733"} +{"label":"Nate Mooney","version":27,"id":"74538","lastModified":"1301901610000","name":"Nate Mooney","type":"Person","_key":"55734"} +{"label":"Colin Ford","version":33,"id":"74539","lastModified":"1301901257000","name":"Colin Ford","type":"Person","_key":"55735"} +{"label":"Hal Yamanouchi","version":40,"id":"74540","lastModified":"1301901490000","name":"Hal Yamanouchi","type":"Person","_key":"55736"} +{"label":"Corey Stoll","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b4d\/4d06a4a85e73d621a1003b4d\/corey-stoll-profile.jpg","version":49,"id":"74541","lastModified":"1301901190000","name":"Corey Stoll","type":"Person","_key":"55737"} +{"label":"Magnificent Obsession","description":"When churlish, spoiled rich man Bob Merrick foolishly wrecks his speed boat, the rescue team resuscitates him with equipment that's therefore unavailable to aid a local hero, Dr. Wayne Phillips, who dies as a result. Phillips had helped many people, and when Merrick learns Phillips' secret, to give selflessly and in secret, he tries it in a ham-handed way.","id":"13457","runtime":108,"imdbId":"tt0047203","trailer":"http:\/\/www.youtube.com\/watch?v=2607","version":94,"lastModified":"1301903556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b36\/4cc17e107b9aa138d8001b36\/magnificent-obsession-mid.jpg","genre":"Drama","title":"Magnificent Obsession","releaseDate":-486086400000,"language":"en","type":"Movie","_key":"55738"} +{"label":"Barbara Rush","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32d\/4c3b35ac7b9aa10edc00032d\/barbara-rush-profile.jpg","version":36,"id":"74542","lastModified":"1301901378000","name":"Barbara Rush","type":"Person","_key":"55739"} +{"label":"Gregg Palmer","version":22,"id":"16071","lastModified":"1301901984000","name":"Gregg Palmer","type":"Person","_key":"55740"} +{"label":"Sara Shane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4c3f33067b9aa140a500000f\/sara-shane-profile.jpg","version":22,"id":"124741","lastModified":"1301902224000","name":"Sara Shane","type":"Person","_key":"55741"} +{"label":"Paul Cavanagh","version":36,"birthday":"-2558134800000","id":"96064","birthplace":"Chislehurst, Kent, England, UK","lastModified":"1301901941000","name":"Paul Cavanagh","type":"Person","_key":"55742"} +{"label":"Judy Nugent","version":18,"id":"139602","lastModified":"1301902708000","name":"Judy Nugent","type":"Person","_key":"55743"} +{"label":"Richard H. Cutting","version":19,"id":"102829","lastModified":"1301902733000","name":"Richard H. Cutting","type":"Person","_key":"55744"} +{"label":"Will J. White","version":17,"id":"141588","lastModified":"1301902650000","name":"Will J. White","type":"Person","_key":"55745"} +{"label":"Helen Kleeb","version":18,"id":"90230","lastModified":"1301902870000","name":"Helen Kleeb","type":"Person","_key":"55746"} +{"label":"Barbie in a Christmas Carol","description":"On Christmas Eve, Kelly is reluctant to go to a Christmas Eve ball, so Barbie tells her the story of Eden Starling, a glamourous singing diva in the Victorian England and the owner of a theatre house. However, Eden is self-centred and loves only herself. She is frequently accompanied by her snooty cat, Chuzzlewit. She does not believe in Christmas and orders all her employees to work on Christmas.","id":"13459","runtime":76,"imdbId":"tt1314715","trailer":"http:\/\/www.youtube.com\/watch?v=2155","homepage":"http:\/\/www.barbie.com\/christmas","version":106,"lastModified":"1301903972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c73\/4bc93d61017a3c57fe019c73\/barbie-in-a-christmas-carol-mid.jpg","studio":"Rainmaker Animation","genre":"Animation","title":"Barbie in a Christmas Carol","releaseDate":1225756800000,"language":"en","type":"Movie","_key":"55747"} +{"label":"Doomsday","description":"The film takes place in the future, where Scotland has been quarantined due to the onset of a deadly virus. When the virus emerges in London, political leaders send Major Eden Sinclair (Rhona Mitra) to Scotland to find a cure based on evidence of survivors.","id":"13460","runtime":113,"imdbId":"tt0483607","trailer":"http:\/\/www.youtube.com\/watch?v=EZ2Z1F83LFg","version":337,"lastModified":"1301907566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c98\/4bc93d63017a3c57fe019c98\/doomsday-mid.jpg","studio":"Rogue Pictures","genre":"Action","title":"Doomsday","releaseDate":1205452800000,"language":"en","tagline":"Mankind has an expiration date","type":"Movie","_key":"55748"} +{"label":"Melissa P.","description":"An adolescent girl, living with her mother and her grandmother, will have her first sexual experiences in a heavy and excessive way.","id":"13461","runtime":100,"imdbId":"tt0443584","version":75,"lastModified":"1301904009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caa\/4bc93d69017a3c57fe019caa\/melissa-p-mid.jpg","studio":"Bess Movie","genre":"Drama","title":"Melissa P.","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"55749"} +{"label":"Luca Guadagnino","version":34,"id":"78160","lastModified":"1301901739000","name":"Luca Guadagnino","type":"Person","_key":"55750"} +{"label":"Mar\u00eda Valverde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cb2\/4d222f9e7b9aa1289f000cb2\/mar-a-valverde-profile.jpg","version":33,"birthday":"543538800000","id":"77122","birthplace":"Madrid, Spain","lastModified":"1301901162000","name":"Mar\u00eda Valverde","type":"Person","_key":"55751"} +{"label":"Riding For A Living","description":"No overview found.","id":"13462","runtime":0,"version":27,"lastModified":"1300979636000","title":"Riding For A Living","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55752"} +{"label":"Optigrab","description":"No overview found.","id":"13463","runtime":48,"trailer":"http:\/\/www.youtube.com\/watch?v=781","homepage":"http:\/\/standardfilmsbeta.com\/index.php?option=com_content&task=view&id=107&Itemid=27","version":30,"lastModified":"1301906171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb4\/4bc93d6a017a3c57fe019cb4\/optigrab-mid.jpg","studio":"Standard Films","genre":"Documentary","title":"Optigrab","releaseDate":1035244800000,"language":"en","type":"Movie","_key":"55753"} +{"label":"Totally Board","description":"No overview found.","id":"13464","title":"Totally Board","language":"en","lastModified":"1301419075000","version":59,"type":"Movie","_key":"55754"} +{"label":"The Adventures of Ichabod and Mr. Toad","description":"The Wind in the Willows: Concise version of Kenneth Grahame's story of the same name. J. Thaddeus Toad, owner of Toad Hall, is prone to fads, such as the newfangled motor car. This desire for the very latest lands him in much trouble with the wrong crowd, and it is up to his friends, Mole, Rat and Badger to save him from himself. - The Legend of Sleepy Hollow: Retelling of Washington Irving's story set in a tiny New England town. Ichabod Crane, the new schoolmaster, falls for the town beauty, Ka","id":"13465","runtime":68,"imdbId":"tt0041094","version":128,"lastModified":"1301902785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc7\/4bc93d6b017a3c57fe019cc7\/the-adventures-of-ichabod-and-mr-toad-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"The Adventures of Ichabod and Mr. Toad","releaseDate":-638755200000,"language":"en","type":"Movie","_key":"55755"} +{"label":"Jack Kinney","version":42,"id":"74565","lastModified":"1301901843000","name":"Jack Kinney","type":"Person","_key":"55756"} +{"label":"October Sky","description":"October Sky is a 1999 film produced by Charles Gordon, starring Jake Gyllenhaal, Chris Cooper and Laura Dern. It is based on the true story of Homer Hickam, a coal miner's son who was inspired by the first Sputnik launch to take up rocketry against his father's wishes, and eventually became a NASA scientist.","id":"13466","runtime":108,"imdbId":"tt0132477","trailer":"http:\/\/www.youtube.com\/watch?v=4cmMukCFyd8","version":173,"lastModified":"1301907565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b85\/4d75b0bd7b9aa17088000b85\/october-sky-mid.jpg","genre":"Drama","title":"October Sky","releaseDate":919382400000,"language":"en","type":"Movie","_key":"55757"} +{"label":"Scott Miles","version":23,"id":"74584","lastModified":"1301901535000","name":"Scott Miles","type":"Person","_key":"55758"} +{"label":"Randy Stripling","version":23,"id":"74585","lastModified":"1301901535000","name":"Randy Stripling","type":"Person","_key":"55759"} +{"label":"Courtney Cole-Fendley","version":22,"id":"74586","lastModified":"1301901722000","name":"Courtney Cole-Fendley","type":"Person","_key":"55760"} +{"label":"Terry Loughlin","version":25,"id":"74587","lastModified":"1301901490000","name":"Terry Loughlin","type":"Person","_key":"55761"} +{"label":"Kailie Hollister","version":22,"id":"74588","lastModified":"1301901535000","name":"Kailie Hollister","type":"Person","_key":"55762"} +{"label":"Slednecks 1","description":"No overview found.","id":"13467","runtime":0,"version":74,"lastModified":"1301421334000","title":"Slednecks 1","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55763"} +{"label":"Keane","description":"A mentally ill man searches New York for his missing eight year old daughter. He recreates her steps each day hoping for some clue to her disappearance, until he meets and befriend a woman with a daughter the same age. Could she help him with the missing piece of the puzzle?","id":"13468","runtime":90,"imdbId":"tt0420291","version":125,"lastModified":"1301902755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce3\/4bc93d6d017a3c57fe019ce3\/keane-mid.jpg","genre":"Drama","title":"Keane","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"55764"} +{"label":"Bury My Heart At Wounded Knee","description":"Beginning just after the bloody Sioux victory over General Custer at Little Big Horn, the story is told through two unique perspectives: Charles Eastman, a young, white-educated Sioux doctor held up as living proof of the alleged success of assimilation, and Sitting Bull the proud Lakota chief whose tribe won the American Indians\u2019 last major victory at Little Big Horn. ","id":"13470","runtime":125,"imdbId":"tt0821638","version":151,"lastModified":"1301904670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf5\/4bc93d6f017a3c57fe019cf5\/bury-my-heart-at-wounded-knee-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Bury My Heart At Wounded Knee","releaseDate":1180224000000,"language":"en","tagline":"The Epic Fall of the American Indian","type":"Movie","_key":"55765"} +{"label":"Chevez Ezaneh","version":17,"id":"117427","lastModified":"1301901870000","name":"Chevez Ezaneh","type":"Person","_key":"55766"} +{"label":"Duane Howard","version":17,"id":"117428","lastModified":"1301901870000","name":"Duane Howard","type":"Person","_key":"55767"} +{"label":"Wayne Charles Baker","version":17,"id":"117429","lastModified":"1301902466000","name":"Wayne Charles Baker","type":"Person","_key":"55768"} +{"label":"Brian Stollery","version":17,"id":"117430","lastModified":"1301902634000","name":"Brian Stollery","type":"Person","_key":"55769"} +{"label":"Shaun Johnston","version":19,"id":"117431","lastModified":"1301902634000","name":"Shaun Johnston","type":"Person","_key":"55770"} +{"label":"Eddie Spears","version":17,"id":"117432","lastModified":"1301902634000","name":"Eddie Spears","type":"Person","_key":"55771"} +{"label":"Holly Bird","version":17,"id":"117433","lastModified":"1301902466000","name":"Holly Bird","type":"Person","_key":"55772"} +{"label":"Sean Wei Mah","version":18,"id":"117434","lastModified":"1301902466000","name":"Sean Wei Mah","type":"Person","_key":"55773"} +{"label":"Star Birdyellowhead","version":17,"id":"117435","lastModified":"1301902248000","name":"Star Birdyellowhead","type":"Person","_key":"55774"} +{"label":"Jayson Therrien","version":17,"id":"117436","lastModified":"1301901870000","name":"Jayson Therrien","type":"Person","_key":"55775"} +{"label":"Chantal Perron","version":18,"id":"91977","lastModified":"1301902320000","name":"Chantal Perron","type":"Person","_key":"55776"} +{"label":"Patrick St. Esprit","version":31,"id":"117437","lastModified":"1301901268000","name":"Patrick St. Esprit","type":"Person","_key":"55777"} +{"label":"David Cowley","version":17,"id":"117438","lastModified":"1301902074000","name":"David Cowley","type":"Person","_key":"55778"} +{"label":"Jemma Blackwell","version":17,"id":"117439","lastModified":"1301902466000","name":"Jemma Blackwell","type":"Person","_key":"55779"} +{"label":"Yves Simoneau","version":37,"id":"74566","lastModified":"1301901562000","name":"Yves Simoneau","type":"Person","_key":"55780"} +{"label":"Skate Or Die","description":"No overview found.","id":"13471","runtime":92,"imdbId":"tt1124397","version":70,"lastModified":"1301907118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfe\/4bc93d6f017a3c57fe019cfe\/skate-or-die-mid.jpg","title":"Skate Or Die","releaseDate":1213142400000,"language":"en","type":"Movie","_key":"55781"} +{"label":"Miguel Courtois","version":22,"id":"49869","lastModified":"1301902220000","name":"Miguel Courtois","type":"Person","_key":"55782"} +{"label":"Futureproof","description":"Big jumps are sick... and once again we have that category well covered. But there will always be a bigger jump or that extra one eighty added to the rotation that will dethrone last year's golden moment. So... what aspects of snowboarding can withstand the test of time? We spent the winter examining this question and came up with some answers that will have you waxing your board and watching the Weather Channel in September. You will see.","id":"13472","runtime":40,"trailer":"http:\/\/www.youtube.com\/watch?v=782","homepage":"http:\/\/www.absinthe-films.com\/index.php?id=12","version":17,"lastModified":"1301908142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44b\/4cca4c247b9aa16b9f00044b\/futureproof-mid.jpg","studio":"Absinthe Films","genre":"Sports Film","title":"Futureproof","releaseDate":1126742400000,"language":"en","type":"Movie","_key":"55783"} +{"label":"Vivid","description":"No overview found.","id":"13473","runtime":45,"homepage":"http:\/\/www.absinthe-films.com\/index.php?id=15","version":39,"lastModified":"1301908550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e4\/4d7bf5617b9aa11a0c0178e4\/vivid-mid.jpg","studio":"Absinthe Films","title":"Vivid","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"55784"} +{"label":"P2","description":"Angela, a corporate climber, gets stuck working late on Christmas Eve and finds herself the target of an unhinged security guard. With no help in sight, the woman must overcome physical and psychological challenges to survive.","id":"13474","runtime":98,"imdbId":"tt0804516","homepage":"http:\/\/www.p2themovie.com\/","version":191,"lastModified":"1301906252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d22\/4bc93d75017a3c57fe019d22\/p2-mid.jpg","studio":"Summit Entertainment","genre":"Horror","title":"P2","releaseDate":1197158400000,"language":"en","type":"Movie","_key":"55785"} +{"label":"Star Trek","description":"The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.","id":"13475","runtime":126,"imdbId":"tt0796366","trailer":"http:\/\/www.youtube.com\/watch?v=AWkx9m3x-ak","homepage":"http:\/\/www.startrekmovie.com\/","version":632,"lastModified":"1301900716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89c\/4c707d995e73d65f7b00089c\/star-trek-mid.jpg","studio":"Paramount Pictures","genre":"Science Fiction","title":"Star Trek","releaseDate":1241740800000,"language":"en","tagline":"The future begins.","type":"Movie","_key":"55786"} +{"label":"Zachary Quinto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/158\/4bd74baf017a3c21e9000158\/zachary-quinto-profile.jpg","biography":"Zachary Quinto is a american actor best known for his roles as the evil Sylar on TV's Heroes and as Spock in the Star Trek Reboot.  In 1999 Quinto graduated from Carnegie Melon's School of Drama, afterwards beginning his career as a television actor.  In 2003, he landed a recurring role on 24, appearing as a computer specialist working for CTU. Later, in 2006, he began working on Heroes, playing the evil serial killer Sylar.  \nIn 2009 he played Spock in Star Trek, a role which he ","version":36,"birthday":"234054000000","id":"17306","birthplace":"Pittsburgh, Pennsylvania, USA","lastModified":"1301901115000","name":"Zachary Quinto","type":"Person","_key":"55787"} +{"label":"Scottie Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/72f\/4cd9d6f47b9aa11b2600072f\/scottie-thompson-profile.jpg","version":41,"id":"128628","lastModified":"1301904069000","name":"Scottie Thompson","type":"Person","_key":"55788"} +{"label":"Win a Date with Tad Hamilton!","description":"A small-town girl wins a date with a Hollywood star through a contest. When the date goes better than expected, a love triangle forms between the girl, the celebrity, and the girl's best friend.","id":"13476","runtime":95,"imdbId":"tt0335559","version":99,"lastModified":"1301903027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de9\/4bc93da1017a3c57fe019de9\/win-a-date-with-tad-hamilton-mid.jpg","genre":"Comedy","title":"Win a Date with Tad Hamilton!","releaseDate":1081382400000,"language":"en","type":"Movie","_key":"55789"} +{"label":"When in Rome","description":"After fishing out coins from a water fountain in Italy, cynical New Yorker Beth Harper finds herself being wooed by several ardent suitors. As she deals with the attention, Beth tries to figure out whether a charming reporter really loves her.","id":"13477","runtime":91,"imdbId":"tt1185416","trailer":"http:\/\/www.youtube.com\/watch?v=4G0J6GC4Pbo","version":300,"lastModified":"1301901024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e0\/4d4a4ddc7b9aa13aab0009e0\/when-in-rome-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"When in Rome","releaseDate":1264723200000,"language":"en","tagline":"Did you ever wish for the impossible?","type":"Movie","_key":"55790"} +{"label":"Kate Micucci","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04a\/4c8eaee25e73d6149300004a\/kate-micucci-profile.jpg","biography":"Kate was born in New Jersey and spent most of her school years in \nPennsylvania. As a kid she focused on playing outside in the woods and \nplaying classical piano.  In college she majored in art, focusing on painting and making puppets. She received an A.A. in Fine Arts from Keystone College.  After\n a small stint watering banana and pineapple plants in Hawaii, Kate \ndecided to go to Loyola Marymount University in Los Angeles where she \nmade more puppets and received a B.A. in Studio A","version":31,"birthday":"323305200000","id":"132354","birthplace":"New Jersey, USA","lastModified":"1301902222000","name":"Kate Micucci","type":"Person","_key":"55791"} +{"label":"A Charlie Brown Thanksgiving","description":"This sweet, heartwarming 1973 offering from the Peanuts gang (and Charles Schulz) once again shows Charlie Brown in a pickle, as his erstwhile friends impose upon the hapless would-be-host to provide a memorable and traditional Thanksgiving feast. And as much as Charlie Brown would rather forget the whole thing, he just can't help but try for fear of being labeled a failure. Ultimately it's up to Snoopy and Woodstock to save Charlie from certain embarrassment, and it falls to Linus to impart to ","id":"13479","runtime":50,"imdbId":"tt0068359","version":71,"lastModified":"1301903314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0b\/4bc93da4017a3c57fe019e0b\/a-charlie-brown-thanksgiving-mid.jpg","genre":"Animation","title":"A Charlie Brown Thanksgiving","releaseDate":122601600000,"language":"en","tagline":"Spend Thanksgiving with Good Ol' Charlie Brown.","type":"Movie","_key":"55792"} +{"label":"Ricky Gervais: Out of England","description":"Taped live before a sold-out audience at the WaMu Theater at New York Citys Madison Square Garden, Ricky Gervais: Out of England The Stand-Up Special is a high-spirited hour of offbeat observations and understated humor from the actor\/comedian\/writer\/director.","id":"13480","runtime":72,"imdbId":"tt1320293","version":222,"lastModified":"1301903475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e14\/4bc93da4017a3c57fe019e14\/ricky-gervais-out-of-england-mid.jpg","genre":"Comedy","title":"Ricky Gervais: Out of England","releaseDate":1226707200000,"language":"en","type":"Movie","_key":"55793"} +{"label":"John Moffitt","version":27,"id":"87671","lastModified":"1301903051000","name":"John Moffitt","type":"Person","_key":"55794"} +{"label":"Five Venoms","description":"A kung-fu student is instructed by his dying teacher to track down five of the teacher's ex-students. Each of the five is equipped with a lethal martial arts skill, and the teacher fears this might be used for evil purposes. However, not only does the teacher not know the identity of the students (who all wore masks under his training), but some of the students also don't know each other!","id":"13481","runtime":98,"imdbId":"tt0077559","version":169,"lastModified":"1301418602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e25\/4bc93da6017a3c57fe019e25\/wu-du-mid.jpg","genre":"Eastern","title":"Five Venoms","releaseDate":271728000000,"language":"en","type":"Movie","_key":"55795"} +{"label":"The Milagro Beanfield War","description":"In Milagro, a small town in the American Southwest, Ladd Devine plans to build a major new resort development. While activist Ruby Archuleta and lawyer\/newspaper editor Charlie Bloom realize that this will result in the eventual displacement of the local Hispanic farmers, they cannot arouse much opposition because of the short term opportunities offered by construction jobs.","id":"13482","runtime":117,"imdbId":"tt0095638","version":129,"lastModified":"1301904203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2a\/4bc93da6017a3c57fe019e2a\/the-milagro-beanfield-war-mid.jpg","genre":"Comedy","title":"The Milagro Beanfield War","releaseDate":574646400000,"language":"en","type":"Movie","_key":"55796"} +{"label":"Awake","description":"In \"Awake,\" a psychological thriller that tells the story of a man undergoing heart surgery while experiencing a phenomenon called \"anesthetic awareness,\" which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.","id":"13483","runtime":84,"imdbId":"tt0211933","trailer":"http:\/\/www.youtube.com\/watch?v=egUke7XD_9U","version":197,"lastModified":"1301901980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/088\/4c2567cc5e73d61b7a000088\/awake-mid.jpg","studio":"Greenestreet Films","genre":"Drama","title":"Awake","releaseDate":1196380800000,"language":"en","tagline":"Every year, one in 700 people wake up during surgery. ","type":"Movie","_key":"55797"} +{"label":"Joby Harold","version":23,"id":"74569","lastModified":"1301901515000","name":"Joby Harold","type":"Person","_key":"55798"} +{"label":"The Foot Fist Way","description":"An inept karate instructor struggles with marital troubles and an unhealthy obsession with fellow karate enthusiast Chuck \"The Truck\" Williams.","id":"13484","runtime":85,"imdbId":"tt0492619","trailer":"http:\/\/www.youtube.com\/watch?v=9ptoM1uj-Cc","homepage":"http:\/\/www.thefootfistway.com\/","version":174,"lastModified":"1301905192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e59\/4bc93daf017a3c57fe019e59\/the-foot-fist-way-mid.jpg","studio":"MTV Films","genre":"Comedy","title":"The Foot Fist Way","releaseDate":1151107200000,"language":"en","type":"Movie","_key":"55799"} +{"label":"Mary Jane Bostic","version":20,"id":"80750","lastModified":"1301902362000","name":"Mary Jane Bostic","type":"Person","_key":"55800"} +{"label":"Holiday Inn","description":"Two retiring show people start up a New England country inn with the unique and, one would think, self-defeating idea of being open only on national holidays; however, in this delightful fluff-fest, they achieve instantaneous success. Conflicts arise when they fall for the same woman, and sparks fly -as do their feet - in a variety of inventive, holiday themed song-and-dance productions. ","id":"13485","runtime":100,"imdbId":"tt0034862","version":136,"lastModified":"1301905052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e66\/4bc93daf017a3c57fe019e66\/holiday-inn-mid.jpg","studio":"Paramount Classics","genre":"Comedy","title":"Holiday Inn","releaseDate":-865036800000,"language":"en","type":"Movie","_key":"55801"} +{"label":"The Scorpion King 2: Rise of a Warrior","description":"When young Mathayus witnesses his father's death at the hands of an evil military commander, his quest for vengeance transforms him into the most feared warrior of the ancient world.","id":"13486","runtime":109,"imdbId":"tt1104123","trailer":"http:\/\/www.youtube.com\/watch?v=1875","homepage":"http:\/\/www.ign.com\/scorpionking\/","version":258,"lastModified":"1301903046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7b\/4bc93db1017a3c57fe019e7b\/the-scorpion-king-2-rise-of-a-warrior-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Scorpion King 2: Rise of a Warrior","releaseDate":1219104000000,"language":"en","type":"Movie","_key":"55802"} +{"label":"Michael Copon","version":33,"id":"78036","lastModified":"1301901582000","name":"Michael Copon","type":"Person","_key":"55803"} +{"label":"Karen Shenaz David","version":28,"id":"79124","lastModified":"1301901284000","name":"Karen Shenaz David","type":"Person","_key":"55804"} +{"label":"Simon Quarterman","version":20,"id":"141463","lastModified":"1301901855000","name":"Simon Quarterman","type":"Person","_key":"55805"} +{"label":"Shane Manie","version":20,"id":"141465","lastModified":"1301902052000","name":"Shane Manie","type":"Person","_key":"55806"} +{"label":"Chase Agulhas","version":20,"id":"141466","lastModified":"1301902052000","name":"Chase Agulhas","type":"Person","_key":"55807"} +{"label":"Pierre Marais","version":20,"id":"141467","lastModified":"1301902052000","name":"Pierre Marais","type":"Person","_key":"55808"} +{"label":"Warrick Grier","version":21,"id":"107550","lastModified":"1301902618000","name":"Warrick Grier","type":"Person","_key":"55809"} +{"label":"Az Abrahams","version":20,"id":"141468","lastModified":"1301902061000","name":"Az Abrahams","type":"Person","_key":"55810"} +{"label":"Vaneshran Arumugam","version":20,"id":"141469","lastModified":"1301902052000","name":"Vaneshran Arumugam","type":"Person","_key":"55811"} +{"label":"Mike Thompson","version":38,"id":"62539","lastModified":"1301901150000","name":"Mike Thompson","type":"Person","_key":"55812"} +{"label":"Wayne Shields","version":20,"id":"141470","lastModified":"1301902052000","name":"Wayne Shields","type":"Person","_key":"55813"} +{"label":"Diane Wilson","version":20,"id":"141471","lastModified":"1301902052000","name":"Diane Wilson","type":"Person","_key":"55814"} +{"label":"Nathan Fredericks","version":21,"id":"141472","lastModified":"1301902174000","name":"Nathan Fredericks","type":"Person","_key":"55815"} +{"label":"Katt Williams Its Pimpin Pimpin","description":"Americas 1 comedian Katt Williams brings to stage his raw & uncut comedy from his highly successful 100 city its pimpin pimpin tour. ","id":"13488","runtime":77,"imdbId":"tt1323575","version":286,"lastModified":"1301417622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8d\/4bc93db2017a3c57fe019e8d\/katt-williams-its-pimpin-pimpin-mid.jpg","title":"Katt Williams Its Pimpin Pimpin","releaseDate":1226361600000,"language":"en","type":"Movie","_key":"55816"} +{"label":"Lost Boys: The Tribe","description":"The sequel to the 1987 cult hit The Lost Boys takes us to the shady surf city of Luna Bay, California, where vampires quickly dispatch anyone who crosses their path. Into this dark world arrive Chris Emerson (Hilgenbrink) and his younger sister, Nicole (Reeser). Having just lost their parents in a car accident, the siblings move in with their eccentric Aunt Jillian and become new prey...","id":"13489","runtime":94,"imdbId":"tt1031254","version":230,"lastModified":"1301903238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de2\/4d8692bf7b9aa12ed0003de2\/lost-boys-the-tribe-mid.jpg","studio":"Thunder Road Pictures","genre":"Crime","title":"Lost Boys: The Tribe","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"55817"} +{"label":"Tad Hilgenbrink","version":20,"id":"74605","lastModified":"1301902074000","name":"Tad Hilgenbrink","type":"Person","_key":"55818"} +{"label":"Angus Sutherland","version":20,"id":"74606","lastModified":"1301901870000","name":"Angus Sutherland","type":"Person","_key":"55819"} +{"label":"Autumn Reeser","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08e\/4bcc2f00017a3c0f2f00008e\/autumn-reeser-profile.jpg","version":30,"id":"74607","lastModified":"1301901189000","name":"Autumn Reeser","type":"Person","_key":"55820"} +{"label":"Merwin Mondesir","version":20,"id":"74608","lastModified":"1301902074000","name":"Merwin Mondesir","type":"Person","_key":"55821"} +{"label":"Moneca Delain","version":23,"id":"74609","lastModified":"1301901766000","name":"Moneca Delain","type":"Person","_key":"55822"} +{"label":"Welcome Home Roscoe Jenkins","description":" Actor-comedian Martin Lawrence (BAD BOYS, BIG MOMMA'S HOUSE) aims for the heartstrings and funny bones in WELCOME HOME ROSCOE JENKINS, a raucous helping of family soul food.","id":"13490","runtime":114,"imdbId":"tt0494652","version":237,"lastModified":"1301904502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eac\/4bc93db7017a3c57fe019eac\/welcome-home-roscoe-jenkins-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Welcome Home Roscoe Jenkins","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"55823"} +{"label":"Damani Roberts","version":23,"id":"74616","lastModified":"1301901722000","name":"Damani Roberts","type":"Person","_key":"55824"} +{"label":"Brooke Lyons","version":21,"id":"74617","lastModified":"1301901870000","name":"Brooke Lyons","type":"Person","_key":"55825"} +{"label":"Arn: The Knight Templar","description":"Arn, the son of a high-ranking Swedish nobleman is educated in a monastery and sent to the Holy Land as a knight templar to do penance for a forbidden love.","id":"13491","runtime":139,"imdbId":"tt0837106","trailer":"http:\/\/www.youtube.com\/watch?v=803","version":229,"lastModified":"1301902365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed9\/4bc93dbb017a3c57fe019ed9\/arn-tempelriddaren-mid.jpg","genre":"Action","title":"Arn: The Knight Templar","releaseDate":1198540800000,"language":"en","type":"Movie","_key":"55826"} +{"label":"Joakim N\u00e4tterqvist","version":32,"id":"74927","lastModified":"1301901284000","name":"Joakim N\u00e4tterqvist","type":"Person","_key":"55827"} +{"label":"Mirja Turestedt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b17\/4d2623b57b9aa134cf000b17\/mirja-turestedt-profile.jpg","version":25,"id":"106656","lastModified":"1301901843000","name":"Mirja Turestedt","type":"Person","_key":"55828"} +{"label":"Morgan Alling","version":32,"id":"74928","lastModified":"1301901494000","name":"Morgan Alling","type":"Person","_key":"55829"} +{"label":"Sven-Bertil Taube","version":33,"id":"87723","lastModified":"1301901200000","name":"Sven-Bertil Taube","type":"Person","_key":"55830"} +{"label":"Peter Flinth","version":34,"id":"75043","lastModified":"1301902145000","name":"Peter Flinth","type":"Person","_key":"55831"} +{"label":"Frontier(s)","description":"A gang of young thieves flee Paris during the violent aftermath of a political election, only to hole up at an Inn run by neo-Nazis.","id":"13492","runtime":108,"imdbId":"tt0814685","version":130,"lastModified":"1301903238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee6\/4bc93dbc017a3c57fe019ee6\/frontiere-s-mid.jpg","studio":"Cartel Productions","genre":"Drama","title":"Frontier(s)","releaseDate":1183248000000,"language":"en","type":"Movie","_key":"55832"} +{"label":"Karina Testa","version":30,"id":"82314","lastModified":"1301902027000","name":"Karina Testa","type":"Person","_key":"55833"} +{"label":"Maud Forget","version":27,"id":"82317","lastModified":"1301901810000","name":"Maud Forget","type":"Person","_key":"55834"} +{"label":"Chems Dahmani","version":29,"id":"82318","lastModified":"1301901701000","name":"Chems Dahmani","type":"Person","_key":"55835"} +{"label":"Am\u00e9lie Daure","version":26,"id":"82319","lastModified":"1301901775000","name":"Am\u00e9lie Daure","type":"Person","_key":"55836"} +{"label":"College Road Trip","description":"When an overachieving high school student decides to travel around the country to choose the perfect college, her overprotective cop father also decides to accompany her in order to keep her on the straight and narrow.","id":"13493","runtime":83,"imdbId":"tt0997047","trailer":"http:\/\/www.youtube.com\/watch?v=GMsD0Y3vUsQ","version":201,"lastModified":"1301902435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef8\/4bc93dc1017a3c57fe019ef8\/college-road-trip-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"College Road Trip","releaseDate":1204848000000,"language":"en","type":"Movie","_key":"55837"} +{"label":"Red Sonja","description":"A young girl rises from the ashes of tragedy to become the most feared warrior woman of all time: the She-Devil with a Sword.","id":"13494","runtime":0,"imdbId":"tt0800175","version":190,"lastModified":"1301904335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d64\/4cd1fafa7b9aa16b9c000d64\/red-sonja-mid.jpg","genre":"Fantasy","title":"Red Sonja","releaseDate":1313020800000,"language":"en","type":"Movie","_key":"55838"} +{"label":"The Destiny of a Warrior","description":"Spain 17th century.Diego Alatriste, brave and heroic soldier, is fighting under his King's army in the Flandes region. His best mate, Balboa, falls in a trap and near to die ask to Diego, as his last desire, to looking after his son Inigo and grow him as a soldier. Alatriste has to come back to Madrid.","id":"13495","runtime":145,"imdbId":"tt0395119","version":120,"lastModified":"1301905628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f17\/4bc93dc6017a3c57fe019f17\/alatriste-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"The Destiny of a Warrior","releaseDate":1157068800000,"language":"en","type":"Movie","_key":"55839"} +{"label":"Agust\u00edn D\u00edaz Yanes","version":28,"id":"127823","lastModified":"1301903008000","name":"Agust\u00edn D\u00edaz Yanes","type":"Person","_key":"55840"} +{"label":"American Outlaws","description":"When a Midwest town learns that a corrupt railroad baron has captured the deeds to their homesteads without their knowledge, a group of young ranchers join forces to take back what is rightfully theirs. They will become the object of the biggest manhunt in the history of the Old West and, as their fame grows, so will the legend of their leader, a young outlaw by the name of Jessie James.","id":"13496","runtime":94,"imdbId":"tt0244000","version":125,"lastModified":"1301902735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2c\/4bc93dc7017a3c57fe019f2c\/american-outlaws-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"American Outlaws","releaseDate":998006400000,"language":"en","type":"Movie","_key":"55841"} +{"label":"Drumline","description":"A fish-out-of-water comedy about a talented street drummer from Harlem who enrolls in a Southern university, expecting to lead its marching band's drumline to victory. He initially flounders in his new world, before realizing that it takes more than talent to reach the top. ","id":"13497","runtime":118,"imdbId":"tt0303933","trailer":"http:\/\/www.youtube.com\/watch?v=2322","version":381,"lastModified":"1301903609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4b\/4bc93dcd017a3c57fe019f4b\/drumline-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"Drumline","releaseDate":1039737600000,"language":"en","type":"Movie","_key":"55842"} +{"label":"Leonard Roberts","version":22,"id":"83859","lastModified":"1301902465000","name":"Leonard Roberts","type":"Person","_key":"55843"} +{"label":"Earl Poitier","version":20,"id":"84116","lastModified":"1301902074000","name":"Earl Poitier","type":"Person","_key":"55844"} +{"label":"Jason Weaver","version":22,"id":"84115","lastModified":"1301901949000","name":"Jason Weaver","type":"Person","_key":"55845"} +{"label":"Candace Carey","version":20,"id":"84117","lastModified":"1301901721000","name":"Candace Carey","type":"Person","_key":"55846"} +{"label":"Shay Roundtree","version":22,"id":"84118","lastModified":"1301901610000","name":"Shay Roundtree","type":"Person","_key":"55847"} +{"label":"Miguel A. Gaetan","version":20,"id":"84119","lastModified":"1301902465000","name":"Miguel A. Gaetan","type":"Person","_key":"55848"} +{"label":"J. Anthony Brown","version":20,"id":"84120","lastModified":"1301901721000","name":"J. Anthony Brown","type":"Person","_key":"55849"} +{"label":"Angela Elayne Gibbs","version":21,"id":"84121","lastModified":"1301901713000","name":"Angela Elayne Gibbs","type":"Person","_key":"55850"} +{"label":"Tyreese Burnett","version":20,"id":"84122","lastModified":"1301902073000","name":"Tyreese Burnett","type":"Person","_key":"55851"} +{"label":"Brandon Hirsch","version":20,"id":"84123","lastModified":"1301902073000","name":"Brandon Hirsch","type":"Person","_key":"55852"} +{"label":"Man of the House","description":"Texas Ranger Roland Sharp is assigned to protect the only witnesses to the murder of a key figure in the prosecution of a drug kingpin -- a group of University of Texas cheerleaders. Sharp must now go undercover as an assistant cheerleading coach and move in with the young women.","id":"13498","runtime":100,"imdbId":"tt0331933","trailer":"http:\/\/www.youtube.com\/watch?v=a39EYIVPAhE","version":187,"lastModified":"1301904736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c4\/4d8de5635e73d663620005c4\/man-of-the-house-mid.jpg","genre":"Action","title":"Man of the House","releaseDate":1109289600000,"language":"en","tagline":"Protecting witnesses is a challenge. Living with them is impossible.","type":"Movie","_key":"55853"} +{"label":"Terrence Parks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ab\/4ce18ded5e73d60f710003ab\/terrence-parks-profile.jpg","version":21,"id":"142897","lastModified":"1301902757000","name":"Terrence Parks","type":"Person","_key":"55854"} +{"label":"Liz Vassey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bb\/4ce192875e73d60f710003bb\/liz-vassey-profile.jpg","version":22,"id":"142899","lastModified":"1301902757000","name":"Liz Vassey","type":"Person","_key":"55855"} +{"label":"Yours, Mine and Ours","description":"A widowed Coast Guard Admiral and a widow handbag designer fall in love and marry, much to the dismay of her 10 and his 8 children.","id":"13499","runtime":90,"imdbId":"tt0443295","version":138,"lastModified":"1301904079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f69\/4bc93dcf017a3c57fe019f69\/yours-mine-and-ours-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Yours, Mine and Ours","releaseDate":1132704000000,"language":"en","type":"Movie","_key":"55856"} +{"label":"The Good Night","description":"A former pop star who now writes commercial jingles for a living experiences a mid-life crisis.","id":"13501","runtime":93,"imdbId":"tt0484111","trailer":"http:\/\/www.youtube.com\/watch?v=s8rd4VQrrLo","version":167,"lastModified":"1301903609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f82\/4bc93dd2017a3c57fe019f82\/the-good-night-mid.jpg","studio":"Inferno Distribution","genre":"Comedy","title":"The Good Night","releaseDate":1195084800000,"language":"en","type":"Movie","_key":"55857"} +{"label":"Sonia Doubell","version":18,"id":"93653","lastModified":"1301902199000","name":"Sonia Doubell","type":"Person","_key":"55858"} +{"label":"Juliana Kiehl","version":18,"id":"93654","lastModified":"1301902546000","name":"Juliana Kiehl","type":"Person","_key":"55859"} +{"label":"Jake Paltrow","version":21,"id":"122582","lastModified":"1301901835000","name":"Jake Paltrow","type":"Person","_key":"55860"} +{"label":"Texas Rangers","description":"Ten years after the Civil War has ended, the Governor of Texas asks Leander McNelly (McDermott) to form a company of Rangers to help uphold the law along the Mexican border. With a few veterans of the war (Patrick, Travis), most of the recruits are young men (Van Der Beek, Kutcher, Raymond) who have little or no experience with guns or policing crime.","id":"13503","runtime":110,"imdbId":"tt0193560","version":111,"lastModified":"1301904737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/032\/4c8560665e73d66b34000032\/texas-rangers-mid.jpg","genre":"Action","title":"Texas Rangers","releaseDate":1007078400000,"language":"en","type":"Movie","_key":"55861"} +{"label":"Brian Martell","version":19,"id":"74592","lastModified":"1301902297000","name":"Brian Martell","type":"Person","_key":"55862"} +{"label":"Billy Morton","version":20,"id":"74593","lastModified":"1301902297000","name":"Billy Morton","type":"Person","_key":"55863"} +{"label":"Kate Newby","version":19,"id":"74594","lastModified":"1301902297000","name":"Kate Newby","type":"Person","_key":"55864"} +{"label":"Gordon Michaels","version":27,"id":"74595","lastModified":"1302068189000","name":"Gordon Michaels","type":"Person","_key":"55865"} +{"label":"Joe Renteria","version":19,"id":"74596","lastModified":"1301902297000","name":"Joe Renteria","type":"Person","_key":"55866"} +{"label":"The Perfect Score","description":"Six high school seniors go to great lengths to make a statement: They're going to beat a system they deem unfair by cheating on it. Determined not to let their SAT exam scores define their future, they plan to steal copies of the test from their local testing center and rig the exam so they get the perfect score. But will their plan work?","id":"13505","runtime":93,"imdbId":"tt0314498","version":162,"lastModified":"1301903906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa0\/4bc93dd6017a3c57fe019fa0\/the-perfect-score-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Perfect Score","releaseDate":1075420800000,"language":"en","tagline":"The S.A.T is hard to take. It's even harder to steal.","type":"Movie","_key":"55867"} +{"label":"Brian Robbins","version":13,"id":"158694","lastModified":"1301903609000","name":"Brian Robbins","type":"Person","_key":"55868"} +{"label":"Admiral","description":"This is a story of a great love facing the greatest drama of the history of Russia. Admiral Kolchak is a true war hero and beloved husband and father. One day he meets Anna, the love of his life and the wife of his best friend. The revolution in his heart faces the revolution in his own country His destiny is to become the Supreme Rules of Russia. \r\n","id":"13506","runtime":123,"imdbId":"tt1101026","homepage":"http:\/\/admiralfilm.ru\/","version":155,"lastModified":"1301903971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d22\/4d77df7f7b9aa15c85000d22\/13506-mid.jpg","studio":"Film Direction","genre":"Action","title":"Admiral","releaseDate":1223510400000,"language":"en","tagline":"The Highest Command","type":"Movie","_key":"55869"} +{"label":"Andrey Kravchuk","version":26,"id":"81761","lastModified":"1301901400000","name":"Andrey Kravchuk","type":"Person","_key":"55870"} +{"label":"Elizaveta Boyarskaya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/126\/4d4ad5077b9aa13b48002126\/elizaveta-boyarskaya-profile.jpg","biography":"<P style=\"MARGIN: 0in 0in 10pt; mso-layout-grid-align: none\" class=MsoNormal><FONT size=3><FONT face=Calibri><B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN>Elizaveta Mikhailovna Boyarskaya<\/SPAN><\/B><SPAN style=\"mso-ascii-font-family: Calibri; mso-hansi-font-family: Calibri; mso-bidi-font-family: Calibri; mso-ansi-language: EN\" lang=EN> (Russian: \u0415\u043b\u0438\u0437\u0430\u0432\u0435\u0301\u0442\u0430 \u041c\u0438\u0445\u0430\u0301\u0439\u043b\u043e\u0432\u043d\u0430 \u0411\u043e\u044f\u0301\u0440\u0441\u043a\u0430\u044f, born 20 December 1985 ","version":36,"id":"96313","lastModified":"1301901220000","name":"Elizaveta Boyarskaya","type":"Person","_key":"55871"} +{"label":"L'ennemi intime","description":"A drama following a French platoon during Algeria's war of independence","id":"13507","runtime":108,"imdbId":"tt0825248","version":93,"lastModified":"1301904768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fca\/4bc93dda017a3c57fe019fca\/l-ennemi-intime-mid.jpg","genre":"History","title":"L'ennemi intime","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55872"} +{"label":"Aur\u00e9lien Recoing","version":4,"id":"231257","lastModified":"1301904121000","name":"Aur\u00e9lien Recoing","type":"Person","_key":"55873"} +{"label":"Who Killed the Electric Car?","description":"In 1996, electric cars began to appear on roads all over California. They were quiet and fast, produced no exhaust and ran without gasoline...........Ten years later, these cars were destroyed.","id":"13508","runtime":92,"imdbId":"tt0489037","trailer":"http:\/\/www.youtube.com\/watch?v=nsJAlrYjGz8","version":213,"lastModified":"1301902940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe2\/4bc93ddc017a3c57fe019fe2\/who-killed-the-electric-car-mid.jpg","genre":"Documentary","title":"Who Killed the Electric Car?","releaseDate":1137974400000,"language":"en","type":"Movie","_key":"55874"} +{"label":"Chris Paine","version":21,"id":"74589","lastModified":"1301901672000","name":"Chris Paine","type":"Person","_key":"55875"} +{"label":"The Monster Squad","description":"Count Dracula adjourns to Earth, accompanied by Frankenstein's Monster, the Wolfman, the Mummy, and the Gillman. The uglies are in search of a powerful amulet that will grant them power to rule the world. Our heroes - the Monster Squad are the only ones daring to stand in their way.","id":"13509","runtime":82,"imdbId":"tt0093560","trailer":"http:\/\/www.youtube.com\/watch?v=a-WHjHLSobU","version":175,"lastModified":"1301905099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff3\/4bc93ddd017a3c57fe019ff3\/the-monster-squad-mid.jpg","genre":"Horror","title":"The Monster Squad","releaseDate":555897600000,"language":"en","type":"Movie","_key":"55876"} +{"label":"Andre Gower","version":18,"id":"94490","lastModified":"1301902715000","name":"Andre Gower","type":"Person","_key":"55877"} +{"label":"Robby Kiger","version":18,"id":"94491","lastModified":"1301902710000","name":"Robby Kiger","type":"Person","_key":"55878"} +{"label":"Duncan Regehr","version":21,"id":"94492","lastModified":"1301901858000","name":"Duncan Regehr","type":"Person","_key":"55879"} +{"label":"Ryan Lambert","version":18,"id":"94493","lastModified":"1301902711000","name":"Ryan Lambert","type":"Person","_key":"55880"} +{"label":"Ashley Bank","version":18,"id":"94494","lastModified":"1301902722000","name":"Ashley Bank","type":"Person","_key":"55881"} +{"label":"Lisa Fuller","version":19,"id":"94498","lastModified":"1301902714000","name":"Lisa Fuller","type":"Person","_key":"55882"} +{"label":"Jason Hervey","version":18,"id":"94500","lastModified":"1301903025000","name":"Jason Hervey","type":"Person","_key":"55883"} +{"label":"Brent Chalem","version":18,"id":"94501","lastModified":"1301902715000","name":"Brent Chalem","type":"Person","_key":"55884"} +{"label":"Eden Lake","description":"Refusing to let anything spoil their romantic weekend break, a young couple confront a gang of loutish youths with terrifyingly brutal consequences.","id":"13510","runtime":91,"imdbId":"tt1020530","trailer":"http:\/\/www.youtube.com\/watch?v=-6j3K4MmOKs","version":372,"lastModified":"1301902699000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4bc93de2017a3c57fe01a005\/eden-lake-mid.jpg","genre":"Crime","title":"Eden Lake","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"55885"} +{"label":"Tara Ellis","version":22,"id":"85064","lastModified":"1301901825000","name":"Tara Ellis","type":"Person","_key":"55886"} +{"label":"Jack O'Connell","version":22,"id":"85065","lastModified":"1301901516000","name":"Jack O'Connell","type":"Person","_key":"55887"} +{"label":"Finn Atkins","version":22,"id":"85066","lastModified":"1301901687000","name":"Finn Atkins","type":"Person","_key":"55888"} +{"label":"Jumayn Hunter","version":22,"id":"85067","lastModified":"1301901695000","name":"Jumayn Hunter","type":"Person","_key":"55889"} +{"label":"James Burrows","version":22,"id":"85068","lastModified":"1301901464000","name":"James Burrows","type":"Person","_key":"55890"} +{"label":"Tom Gill","version":22,"id":"85069","lastModified":"1301901607000","name":"Tom Gill","type":"Person","_key":"55891"} +{"label":"Lorraine Bruce","version":22,"id":"85070","lastModified":"1301901695000","name":"Lorraine Bruce","type":"Person","_key":"55892"} +{"label":"Shaun Dooley","version":27,"id":"85071","lastModified":"1301901530000","name":"Shaun Dooley","type":"Person","_key":"55893"} +{"label":"James Gandhi","version":22,"id":"85072","lastModified":"1301902175000","name":"James Gandhi","type":"Person","_key":"55894"} +{"label":"Bronson Webb","version":24,"id":"75076","lastModified":"1301901827000","name":"Bronson Webb","type":"Person","_key":"55895"} +{"label":"Lorraine Stanley","version":23,"id":"85073","lastModified":"1301901586000","name":"Lorraine Stanley","type":"Person","_key":"55896"} +{"label":"Rachel Gleeves","version":22,"id":"85074","lastModified":"1301901991000","name":"Rachel Gleeves","type":"Person","_key":"55897"} +{"label":"James Watkins","version":30,"id":"63306","lastModified":"1301903109000","name":"James Watkins","type":"Person","_key":"55898"} +{"label":"Rawhead Rex","description":"Ireland will never be the same after Rawhead Rex, a particularly nasty demon, is released from his underground prison by an unwitting farmer. The film follows Rex's cross country rampage, while a man struggles to stop it.","id":"13511","runtime":89,"imdbId":"tt0091829","trailer":"http:\/\/www.youtube.com\/watch?v=784","version":106,"lastModified":"1301903710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4bc93de3017a3c57fe01a019\/rawhead-rex-mid.jpg","studio":"MK2 Production","genre":"Horror","title":"Rawhead Rex","releaseDate":545616000000,"language":"en","tagline":"He's pure evil, pure power, pure terror","type":"Movie","_key":"55899"} +{"label":"George Pavlou","version":23,"id":"74590","lastModified":"1301902010000","name":"George Pavlou","type":"Person","_key":"55900"} +{"label":"Niall Toibin","version":17,"id":"140230","lastModified":"1301902578000","name":"Niall Toibin","type":"Person","_key":"55901"} +{"label":"Cora Lunny","version":17,"id":"140231","lastModified":"1301902559000","name":"Cora Lunny","type":"Person","_key":"55902"} +{"label":"Ronan Wilmot","version":17,"id":"140232","lastModified":"1301902559000","name":"Ronan Wilmot","type":"Person","_key":"55903"} +{"label":"Donal McCann","version":26,"id":"87435","lastModified":"1301902234000","name":"Donal McCann","type":"Person","_key":"55904"} +{"label":"Heinrich von Schellendorf","version":17,"id":"140233","lastModified":"1301902405000","name":"Heinrich von Schellendorf","type":"Person","_key":"55905"} +{"label":"Sword in the Moon","description":"No overview found.","id":"13512","runtime":100,"imdbId":"tt0370402","version":100,"lastModified":"1301908007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/550\/4cb8c28c5e73d67786000550\/cheongpung-myeongwol-mid.jpg","genre":"Action","title":"Sword in the Moon","releaseDate":1058313600000,"language":"en","type":"Movie","_key":"55906"} +{"label":"Min-su Choi","version":26,"id":"127798","lastModified":"1301902540000","name":"Min-su Choi","type":"Person","_key":"55907"} +{"label":"Bo-kyeong Kim","version":19,"id":"138505","lastModified":"1301902421000","name":"Bo-kyeong Kim","type":"Person","_key":"55908"} +{"label":"Jong-su Lee","version":19,"id":"138541","lastModified":"1301902546000","name":"Jong-su Lee","type":"Person","_key":"55909"} +{"label":"Yeong-su Yu","version":19,"id":"138542","lastModified":"1301902545000","name":"Yeong-su Yu","type":"Person","_key":"55910"} +{"label":"Sang-geon Jo","version":19,"id":"138544","lastModified":"1301902545000","name":"Sang-geon Jo","type":"Person","_key":"55911"} +{"label":"Ui-seok Kim","version":19,"id":"138545","lastModified":"1301902545000","name":"Ui-seok Kim","type":"Person","_key":"55912"} +{"label":"Jin bei tong","description":"No overview found.","id":"13513","runtime":0,"imdbId":"tt0079372","version":25,"lastModified":"1300979649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc93de3017a3c57fe01a026\/jin-bei-tong-mid.jpg","genre":"Eastern","title":"Jin bei tong","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55913"} +{"label":"Hao xia","description":"A son tries to avenge his father, and gets two sword fighters to help him.","id":"13514","runtime":0,"imdbId":"tt0077655","version":71,"lastModified":"1301907831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02b\/4bc93de4017a3c57fe01a02b\/hao-xia-mid.jpg","genre":"Action","title":"Hao xia","releaseDate":312076800000,"language":"en","type":"Movie","_key":"55914"} +{"label":"Damian Lau","version":30,"id":"83624","lastModified":"1301902214000","name":"Damian Lau","type":"Person","_key":"55915"} +{"label":"Chiu-hua Wei","version":7,"id":"228174","lastModified":"1301904026000","name":"Chiu-hua Wei","type":"Person","_key":"55916"} +{"label":"Kong Lau","version":21,"id":"140481","lastModified":"1301902562000","name":"Kong Lau","type":"Person","_key":"55917"} +{"label":"Hark-On Fung","version":20,"id":"118745","lastModified":"1301902940000","name":"Hark-On Fung","type":"Person","_key":"55918"} +{"label":"Hoi Sang Lee","version":19,"id":"83626","lastModified":"1301902640000","name":"Hoi Sang Lee","type":"Person","_key":"55919"} +{"label":"Mirrors","description":"French director Alexandre Aja adds to his growing canon of horror features with this remake of the Korean feature GEOUL SOKEURO (2003). Kiefer Sutherland stars as Ben Carson, a disgraced former New York City cop who attempts to put his checkered past behind him by taking a job as a security guard. ","id":"13515","runtime":110,"imdbId":"tt0790686","trailer":"http:\/\/www.youtube.com\/watch?v=c7byl_mAaOE","version":307,"lastModified":"1301901839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4bc93deb017a3c57fe01a06b\/mirrors-mid.jpg","studio":"Regency Enterprises","genre":"Horror","title":"Mirrors","releaseDate":1199145600000,"language":"en","tagline":"There is evil...On the other side.","type":"Movie","_key":"55920"} +{"label":"Cameron Boyce","version":26,"id":"75041","lastModified":"1301902073000","name":"Cameron Boyce","type":"Person","_key":"55921"} +{"label":"Erica Gluck","version":25,"id":"75042","lastModified":"1301902248000","name":"Erica Gluck","type":"Person","_key":"55922"} +{"label":"Slacker Uprising","description":"Footage from Michael Moore's 60-city tour of college campuses and other venues showcases what the filmmaker calls \"the birth of a new political generation.\"","id":"13516","runtime":102,"imdbId":"tt0850669","version":95,"lastModified":"1301907259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4bc93df0017a3c57fe01a08d\/slacker-uprising-mid.jpg","genre":"Documentary","title":"Slacker Uprising","releaseDate":1207699200000,"language":"en","type":"Movie","_key":"55923"} +{"label":"The Ugly Duckling And Me","description":"No overview found.","id":"13517","runtime":90,"imdbId":"tt0396042","homepage":"http:\/\/www.uglyandme.com\/","version":138,"lastModified":"1301902977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09b\/4bc93df3017a3c57fe01a09b\/the-ugly-duckling-and-me-mid.jpg","studio":"A. Film","genre":"Animation","title":"The Ugly Duckling And Me","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"55924"} +{"label":"Karsten Kiilerich","version":22,"id":"73098","lastModified":"1301901677000","name":"Karsten Kiilerich","type":"Person","_key":"55925"} +{"label":"Fuel","description":"Record high oil prices, global warming, and an insatiable demand for energy: these issues define our generation. The film exposes shocking connections between the auto industry, the oil industry, and the government, while exploring alternative energies such as solar, wind, electricity, and non-food-based biofuels.","id":"13518","runtime":90,"imdbId":"tt1294164","homepage":"http:\/\/thefuelfilm.com\/","version":130,"lastModified":"1301904350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4bc93df3017a3c57fe01a0a0\/fuel-mid.jpg","genre":"Documentary","title":"Fuel","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"55926"} +{"label":"Joshua Tickell","version":20,"id":"74600","lastModified":"1301901812000","name":"Joshua Tickell","type":"Person","_key":"55927"} +{"label":"The Stand","description":"The human race is wiped out by a government invented super flu. The remaining survivors take sides in the forces of good and evil. A mysterious old woman who is a servant of God and a powerful and deadly man who might be the devil himself. A gas station attendant, a rock star, a mute, a professor, a farmer, a socialite, a mildly retarded man, a judge, a teenager, a mother, and a nerd take forces.","id":"13519","runtime":366,"imdbId":"tt0108941","trailer":"http:\/\/www.youtube.com\/watch?v=qsMp2pZK-Cw","version":110,"lastModified":"1301903444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4beebd47017a3c458d000243\/the-stand-mid.jpg","genre":"Adventure","title":"The Stand","releaseDate":768355200000,"language":"en","type":"Movie","_key":"55928"} +{"label":"Cynthia Garris","version":16,"id":"99914","lastModified":"1301902891000","name":"Cynthia Garris","type":"Person","_key":"55929"} +{"label":"Warren Frost","version":16,"id":"6682","lastModified":"1301901535000","name":"Warren Frost","type":"Person","_key":"55930"} +{"label":"John Bloom","version":20,"id":"99906","lastModified":"1301902323000","name":"John Bloom","type":"Person","_key":"55931"} +{"label":"Leo Geter","version":18,"id":"97719","lastModified":"1301903051000","name":"Leo Geter","type":"Person","_key":"55932"} +{"label":"Hagiga B'Snuker","description":"The story is about two twin brothers, Azriel and Gavriel. Azriel is a shy, religious Jew who works in a fruit shop in Jaffa. Gavriel, is a hoodlum and a good-for-nothing hustler who runs a Snooker Bar. Gavriel and his friend Hanuka make easy money by swindling people into gambling on Snooker games.One day Gavriel is forced to renew contact with his brother because he is in trouble with a gangster.","id":"13520","runtime":95,"imdbId":"tt0152492","trailer":"http:\/\/www.youtube.com\/watch?v=785","version":51,"lastModified":"1301906719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c1\/4bc93df8017a3c57fe01a0c1\/13520-mid.jpg","genre":"Comedy","title":"Hagiga B'Snuker","releaseDate":158112000000,"language":"en","type":"Movie","_key":"55933"} +{"label":"Ze'ev Revach","version":27,"id":"74604","lastModified":"1301902041000","name":"Ze'ev Revach","type":"Person","_key":"55934"} +{"label":"Yehuda Barkan","version":24,"id":"74603","lastModified":"1301902328000","name":"Yehuda Barkan","type":"Person","_key":"55935"} +{"label":"Charlie Ve'hetzi","description":"Charlie gets by through fleecing suckers with a three-card Monte. He passes himself off as a rich businessman. Miko is a street kid who spends his time with Charlie instead of going to school. The plot follows Charlie's attempt to conquer the heart of Gila, a rich girl whose parents try to matchmake her to an American millionaire somewhat against her will.","id":"13521","runtime":105,"imdbId":"tt0133689","version":69,"lastModified":"1301523573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c6\/4bc93df8017a3c57fe01a0c6\/charlie-ve-hetzi-mid.jpg","title":"Charlie Ve'hetzi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55936"} +{"label":"Arn: The Kingdom at Road's End","description":"Arn has served his term in the Holy land and returns home to be reunited with his beloved Cecilia. When he returns home, he discovers that political forces tries to separate him and Cecilia - but thanks to queen Blanka they can finally get married. Arn knows that war is looming and with his martial knowledge he starts to build an army at his new home at Forsvik.","id":"13522","runtime":128,"imdbId":"tt0950739","trailer":"http:\/\/www.youtube.com\/watch?v=802","homepage":"http:\/\/www.arnmovie.com\/","version":99,"lastModified":"1301903265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0df\/4bc93dfb017a3c57fe01a0df\/arn-riket-vid-vagens-slut-mid.jpg","studio":"Yleisradio","genre":"Action","title":"Arn: The Kingdom at Road's End","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"55937"} +{"label":"Nicholas Boulton","version":12,"id":"210519","lastModified":"1301903769000","name":"Nicholas Boulton","type":"Person","_key":"55938"} +{"label":"Sex Drive","description":"A high school senior drives cross-country with his best friends to hook up with a babe he met online.\n","id":"13523","runtime":109,"imdbId":"tt1135985","trailer":"http:\/\/www.youtube.com\/watch?v=2xOUCZH14Is","version":224,"lastModified":"1301902151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f0\/4bc93e00017a3c57fe01a0f0\/sex-drive-mid.jpg","studio":"Summit Entertainment, LLC","genre":"Action","title":"Sex Drive","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"55939"} +{"label":"Katrina Bowden","version":34,"id":"74618","lastModified":"1301901588000","name":"Katrina Bowden","type":"Person","_key":"55940"} +{"label":"Mark L. Young","version":25,"id":"81197","lastModified":"1301902541000","name":"Mark L. Young","type":"Person","_key":"55941"} +{"label":"Sean Anders","version":47,"id":"74619","lastModified":"1301901588000","name":"Sean Anders","type":"Person","_key":"55942"} +{"label":"Battle of the Bulge","description":"In the winter of 1944, the Allied Armies stand ready to invade Germany at the coming of a New Year. To prevent this occurrence, Hitler orders an all out offensive to re-take French territory and capture the major port city of Antwerp. \"The Battle of the Bulge\" shows this conflict from the perspective of an American intelligence officer as well as from a German Panzer Commander","id":"13524","runtime":167,"imdbId":"tt0058947","trailer":"http:\/\/www.youtube.com\/watch?v=IeDEARBguLE","version":177,"lastModified":"1301903780000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10b\/4bc93e02017a3c57fe01a10b\/battle-of-the-bulge-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Battle of the Bulge","releaseDate":-127612800000,"language":"en","type":"Movie","_key":"55943"} +{"label":"Pier Angeli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/251\/4c77be7b7b9aa16a08000251\/pier-angeli-profile.jpg","version":22,"id":"99374","lastModified":"1301903002000","name":"Pier Angeli","type":"Person","_key":"55944"} +{"label":"Barbara Werle","version":25,"id":"83454","lastModified":"1301902719000","name":"Barbara Werle","type":"Person","_key":"55945"} +{"label":"James MacArthur","version":28,"id":"83128","lastModified":"1301901604000","name":"James MacArthur","type":"Person","_key":"55946"} +{"label":"Steve Rowland","version":20,"id":"115463","lastModified":"1301902808000","name":"Steve Rowland","type":"Person","_key":"55947"} +{"label":"Robert Woods","version":20,"id":"104932","lastModified":"1301902602000","name":"Robert Woods","type":"Person","_key":"55948"} +{"label":"Charles Stalmaker","version":19,"id":"141580","lastModified":"1301902419000","name":"Charles Stalmaker","type":"Person","_key":"55949"} +{"label":"Suburban Girl","description":"A Manhattanite book editor finds her take on the game of romance changed after she lures the attention of an influential older man.","id":"13525","runtime":97,"imdbId":"tt0428579","version":195,"lastModified":"1301906528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4bc93e04017a3c57fe01a11e\/suburban-girl-mid.jpg","genre":"Comedy","title":"Suburban Girl","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"55950"} +{"label":"The Weight Of Water","description":"A newspaper photographer, Jean, researches the lurid and sensational axe murder of two women in 1873 as an editorial tie-in with a brutal modern double murder. She discovers a cache of papers that appear to give an account of the murders by an eyewitness. The plot weaves between the narrative of the eyewitness and Jean's private struggle with jealousies and suspicions as her marriage teeters.","id":"13526","runtime":113,"imdbId":"tt0210382","version":127,"lastModified":"1301908009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/128\/4bc93e05017a3c57fe01a128\/the-weight-of-water-mid.jpg","studio":"Studio Canal","genre":"Drama","title":"The Weight Of Water","releaseDate":968457600000,"language":"en","tagline":"Hell hath no fury...","type":"Movie","_key":"55951"} +{"label":"Rene Hjerter","description":"No overview found.","id":"13527","runtime":82,"imdbId":"tt0495237","version":50,"lastModified":"1301908569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4bc93e06017a3c57fe01a131\/rene-hjerter-mid.jpg","studio":"Fine & Mellow Productions","genre":"Drama","title":"Rene Hjerter","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"55952"} +{"label":"Lisbet Dahl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a3\/4c0ad0df017a3c7e890008a3\/lisbet-dahl-profile.jpg","version":29,"id":"74620","lastModified":"1301902393000","name":"Lisbet Dahl","type":"Person","_key":"55953"} +{"label":"Helle Hertz","version":20,"id":"74621","lastModified":"1301902364000","name":"Helle Hertz","type":"Person","_key":"55954"} +{"label":"Gaslight","description":"Director George Cukor draws magnificent performances from his stars in this powerfully guided study in obsession. GASLIGHT is a suspenseful, atmospheric mystery that perfectly captures the smoky, smoggy feel of Victorian London.","id":"13528","runtime":114,"imdbId":"tt0036855","trailer":"http:\/\/www.youtube.com\/watch?v=r7FBSFRUj6s","version":143,"lastModified":"1301904942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13a\/4bc93e07017a3c57fe01a13a\/gaslight-mid.jpg","genre":"Mystery","title":"Gaslight","releaseDate":-809222400000,"language":"en","type":"Movie","_key":"55955"} +{"label":"Barbara Everest","version":31,"id":"74622","lastModified":"1301901713000","name":"Barbara Everest","type":"Person","_key":"55956"} +{"label":"Daft Punk's Electroma","description":"Follows the history of two robots, the members of Daft Punk, on their quest to become human.","id":"13529","runtime":74,"imdbId":"tt0800022","version":127,"lastModified":"1301902989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4bc93e0b017a3c57fe01a14c\/electroma-mid.jpg","studio":"Wild Bunch","genre":"Science Fiction","title":"Daft Punk's Electroma","releaseDate":1143158400000,"language":"en","type":"Movie","_key":"55957"} +{"label":"Peter Hurteau","version":21,"id":"86605","lastModified":"1301902328000","name":"Peter Hurteau","type":"Person","_key":"55958"} +{"label":"Michael Reich","version":21,"id":"86606","lastModified":"1301901949000","name":"Michael Reich","type":"Person","_key":"55959"} +{"label":"Thomas Bangalter","version":31,"id":"14598","lastModified":"1301901571000","name":"Thomas Bangalter","type":"Person","_key":"55960"} +{"label":"Guy-Manuel De Homem-Christo","version":30,"id":"67926","lastModified":"1301901446000","name":"Guy-Manuel De Homem-Christo","type":"Person","_key":"55961"} +{"label":"Empire Records","description":"The employees of an independent music store learn about each other as they try anything to stop the store being absorbed by a large chain.","id":"13531","runtime":90,"imdbId":"tt0112950","trailer":"http:\/\/www.youtube.com\/watch?v=1283","version":150,"lastModified":"1301903376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/017\/4d5c0ea27b9aa11235001017\/empire-records-mid.jpg","genre":"Comedy","title":"Empire Records","releaseDate":804297600000,"language":"en","type":"Movie","_key":"55962"} +{"label":"Fanboys","description":"\"Star Wars\" fans travel to Skywalker Ranch to steal an early copy of \"Episode I: The Phantom Menace\".","id":"13532","runtime":90,"imdbId":"tt0489049","trailer":"http:\/\/www.youtube.com\/watch?v=mUjrG8gTmM0&","version":178,"lastModified":"1301902139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab4\/4d4590655e73d66f59001ab4\/fanboys-mid.jpg","studio":"Third Rail Releasing","genre":"Adventure","title":"Fanboys","releaseDate":1217462400000,"language":"en","tagline":"Never tell them the odds.","type":"Movie","_key":"55963"} +{"label":"Kyle Newman","version":23,"id":"74623","lastModified":"1301901991000","name":"Kyle Newman","type":"Person","_key":"55964"} +{"label":"Free Enterprise","description":"Young filmmakers trying to hawk a movie titled \"Bradykillers\" about a serial killer who goes after victims Marcia, Jan, and Cindy meet their screen idol, William Shatner. The two young men, who idolize him and in their fantasies have seen him as a shadowy fairy godfather figure, are alarmed at the reality of the middle-aged non-Captain Kirk man that they meet.","id":"13533","runtime":113,"imdbId":"tt0141105","version":281,"lastModified":"1301902701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a5\/4bc93e15017a3c57fe01a1a5\/free-enterprise-mid.jpg","title":"Free Enterprise","releaseDate":896918400000,"language":"en","type":"Movie","_key":"55965"} +{"label":"How to Rob a Bank","description":"Caught in the middle of a bank robbery, a slacker and a bank employee become the ones who arbitrate the intense situation.","id":"13534","runtime":81,"imdbId":"tt0762104","homepage":"http:\/\/www.howtorobabank-themovie.com\/","version":127,"lastModified":"1301903273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b3\/4bc93e17017a3c57fe01a1b3\/how-to-rob-a-bank-mid.jpg","studio":"Rick Lashbrook Films","genre":"Action","title":"How to Rob a Bank","releaseDate":1169683200000,"language":"en","type":"Movie","_key":"55966"} +{"label":"Andrews Jenkins","version":19,"id":"87326","lastModified":"1301902248000","name":"Andrews Jenkins","type":"Person","_key":"55967"} +{"label":"Rubber Johnny","description":"Rubber Johnny is a six-minute experimental short film and music video directed by Chris Cunningham in 2005, using music composed by Aphex Twin. The name Rubber Johnny is drawn from a British slang for \"condom\" as well as a description of the main character, which explains the title sequence.","id":"13535","runtime":6,"imdbId":"tt0441787","version":71,"lastModified":"1301906721000","title":"Rubber Johnny","releaseDate":1119225600000,"language":"en","type":"Movie","_key":"55968"} +{"label":"City By The Sea","description":"A man struggling to come to terms with the sins of his father makes the terrible discovery that his own son has fallen into a life of crime in a drama based on a true story. Vincent LaMarca (Robert DeNiro) is a dedicated and well-respected New York City police detective who has gone to great lengths to distance himself from his past.","id":"13536","runtime":108,"imdbId":"tt0269095","version":202,"lastModified":"1301903202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bc\/4bc93e18017a3c57fe01a1bc\/city-by-the-sea-mid.jpg","genre":"Drama","title":"City By The Sea","releaseDate":1009843200000,"language":"en","tagline":"When you're searching for a killer... the last suspect you want to see is your son.","type":"Movie","_key":"55969"} +{"label":"Shattered Glass","description":"The true story of a young journalist who fell from grace when it was found he had fabricated over half of his articles.","id":"13537","runtime":94,"imdbId":"tt0323944","version":224,"lastModified":"1301904080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4bc93e19017a3c57fe01a1ca\/shattered-glass-mid.jpg","genre":"Drama","title":"Shattered Glass","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"55970"} +{"label":"Straightheads","description":"After the installation of an alarm system by the twenty-three year old low-class Adam in her fancy upper class apartment, the sophisticated owner Alice (Gillian Anderson) invites him to go with her in her boss' \"opening house\" boring party in the countryside.","id":"13538","runtime":80,"imdbId":"tt0480011","version":82,"lastModified":"1301902881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1db\/4bc93e1a017a3c57fe01a1db\/straightheads-mid.jpg","title":"Straightheads","releaseDate":1190073600000,"language":"en","type":"Movie","_key":"55971"} +{"label":"Dan Reed","version":29,"id":"74626","lastModified":"1301902045000","name":"Dan Reed","type":"Person","_key":"55972"} +{"label":"Here On Earth","description":"A rich college kid is taught a lesson after a joy ride ends up destroying a country restaurant.","id":"13539","runtime":96,"imdbId":"tt0195778","version":147,"lastModified":"1301904226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4d5f4c3b5e73d60c5c0021df\/here-on-earth-mid.jpg","genre":"Drama","title":"Here On Earth","releaseDate":946684800000,"language":"en","type":"Movie","_key":"55973"} +{"label":"Mark Piznarski","version":16,"id":"139742","lastModified":"1301902897000","name":"Mark Piznarski","type":"Person","_key":"55974"} +{"label":"The Colour of Magic","description":"As Rincewind involuntarily becomes a guide to the naive tourist Twoflower, they find themselves forced to flee the city of Ankh-Morpork to escape a terrible fire, and begin on a journey across the Disc. Unknown to them, their journey & fate is being decided by the Gods playing a board game the whole time.","id":"13541","runtime":190,"imdbId":"tt1079959","trailer":"http:\/\/www.youtube.com\/watch?v=Q7yr9jULfEk","homepage":"http:\/\/www.skyoneonline.co.uk\/tcom\/index.html","version":149,"lastModified":"1301902951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fe\/4bc93e1d017a3c57fe01a1fe\/the-colour-of-magic-mid.jpg","studio":"RHI Entertainment","genre":"Comedy","title":"The Colour of Magic","releaseDate":1206230400000,"language":"en","type":"Movie","_key":"55975"} +{"label":"Red Dust","description":"Police officer Dirk Hendricks (Bartlett) files an amnesty application for Alex Mpondo (Ejiofor), a member of the South African Parliament who can't remember the torture he once endured as a captive political activist. South African-born attorney Sarah Barcant (Swank), meanwhile, returns to her homeland to represent Mpondo, as well as Steve Sizela, Mpondo's friend who arrested along with him and never heard from again.","id":"13542","runtime":110,"imdbId":"tt0388364","version":124,"lastModified":"1301906211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/208\/4bc93e21017a3c57fe01a208\/red-dust-mid.jpg","genre":"Drama","title":"Red Dust","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"55976"} +{"label":"Jamie Bartlett","version":26,"id":"74627","lastModified":"1301901647000","name":"Jamie Bartlett","type":"Person","_key":"55977"} +{"label":"FB: Fighting Beat","description":"A group of young Muay Thai experts led by David are forced to use their deadly training to protect themselves when the local extortionist threatens to kill their mentors daughter if he doesn't give up his bar","id":"13544","runtime":78,"imdbId":"tt1264961","version":59,"lastModified":"1301908544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/857\/4cebae6d7b9aa17c8f000857\/fb-fighting-beat-mid.jpg","title":"FB: Fighting Beat","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"55978"} +{"label":"Fulvio Cecere","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b6\/4ceff15a5e73d6625a0006b6\/fulvio-cecere-profile.jpg","version":49,"id":"143377","lastModified":"1301901124000","name":"Fulvio Cecere","type":"Person","_key":"55979"} +{"label":"7 More Days In The Tank","description":"No overview found.","id":"13545","runtime":59,"imdbId":"tt0910827","version":48,"lastModified":"1301908544000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4bc93e22017a3c57fe01a215\/7-more-days-in-the-tank-mid.jpg","title":"7 More Days In The Tank","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"55980"} +{"label":"American Nightmare","description":"No overview found.","id":"13546","runtime":91,"imdbId":"tt0247164","version":75,"lastModified":"1301904818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21e\/4bc93e22017a3c57fe01a21e\/american-nightmare-mid.jpg","studio":"Highland Myst Entertainment","genre":"Crime","title":"American Nightmare","releaseDate":1012262400000,"language":"en","type":"Movie","_key":"55981"} +{"label":"Jon Keeyes","version":29,"id":"74629","lastModified":"1301902328000","name":"Jon Keeyes","type":"Person","_key":"55982"} +{"label":"Brandy Little","version":19,"id":"98307","lastModified":"1301902677000","name":"Brandy Little","type":"Person","_key":"55983"} +{"label":"Johnny Sneed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12b\/4ceea37e5e73d6531300012b\/johnny-sneed-profile.jpg","version":18,"id":"98308","lastModified":"1301903036000","name":"Johnny Sneed","type":"Person","_key":"55984"} +{"label":"Chris Ryan","version":17,"id":"98309","lastModified":"1301902988000","name":"Chris Ryan","type":"Person","_key":"55985"} +{"label":"Borderland","description":"Three college students, Phil, Ed, and Henry take a road trip into Mexico for a week of drinking and carefree fun only to have Phil find himself a captive of a group of satanic Mexican drug smugglers who kill tourists and whom are looking for a group of new ones to prepare for a sacrifice. ","id":"13548","runtime":105,"imdbId":"tt0452592","version":163,"lastModified":"1301904182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/940\/4d85ee695e73d653a6004940\/borderland-mid.jpg","studio":"Tonic Films","genre":"Crime","title":"Borderland","releaseDate":1194566400000,"language":"en","tagline":"Devils Playground is Just Around The Corner","type":"Movie","_key":"55986"} +{"label":"Zev Berman","version":24,"id":"74631","lastModified":"1301901780000","name":"Zev Berman","type":"Person","_key":"55987"} +{"label":"Jake Muxworthy","version":28,"id":"74633","lastModified":"1301901780000","name":"Jake Muxworthy","type":"Person","_key":"55988"} +{"label":"Beto Cuevas","version":24,"id":"74634","lastModified":"1301901808000","name":"Beto Cuevas","type":"Person","_key":"55989"} +{"label":"Burnt Offerings","description":"A couple and their 10-year-old son move into a giant house for the summer. Things start acting strange almost immediately. It seems that every time some gets hurt on the grounds the beat-up house seems to repair itself.","id":"13549","runtime":116,"imdbId":"tt0074258","trailer":"http:\/\/www.youtube.com\/watch?v=OMYAUg7OrC0","version":291,"lastModified":"1301907097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/379\/4cc9b67d7b9aa16b9d000379\/burnt-offerings-mid.jpg","studio":"Produzioni Europee Associati","genre":"Drama","title":"Burnt Offerings","releaseDate":214444800000,"language":"en","tagline":"Up the ancient stairs, behind the locked door, something lives, something evil, from which no one has ever returned.","type":"Movie","_key":"55990"} +{"label":"Joseph Riley","version":19,"id":"140291","lastModified":"1301902533000","name":"Joseph Riley","type":"Person","_key":"55991"} +{"label":"Todd Turquand","version":18,"id":"140293","lastModified":"1301902889000","name":"Todd Turquand","type":"Person","_key":"55992"} +{"label":"Orin Cannon","version":19,"id":"140295","lastModified":"1301903070000","name":"Orin Cannon","type":"Person","_key":"55993"} +{"label":"Jim Myers","version":18,"id":"140296","lastModified":"1301902889000","name":"Jim Myers","type":"Person","_key":"55994"} +{"label":"Dan Curtis","version":31,"id":"29648","lastModified":"1301901358000","name":"Dan Curtis","type":"Person","_key":"55995"} +{"label":"The Changeling","description":"A man staying at a secluded historical mansion, finds his life being haunted by the presence of a spectre.","id":"13550","runtime":107,"imdbId":"tt0080516","version":115,"lastModified":"1301903331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/235\/4bc93e23017a3c57fe01a235\/the-changeling-mid.jpg","studio":"Chessman Park Productions","genre":"Horror","title":"The Changeling","releaseDate":322358400000,"language":"en","type":"Movie","_key":"55996"} +{"label":"Trish Van Devere","version":22,"id":"74636","lastModified":"1301902145000","name":"Trish Van Devere","type":"Person","_key":"55997"} +{"label":"The Dead Girl","description":"The clues to a young woman's death come together as the lives of seemingly unrelated people begin to intersect. ","id":"13551","runtime":85,"imdbId":"tt0783238","version":180,"lastModified":"1301903296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bc93e24017a3c57fe01a243\/the-dead-girl-mid.jpg","studio":"Lakeshore Entertainment","genre":"Crime","title":"The Dead Girl","releaseDate":1162857600000,"language":"en","tagline":"One life ends. Seven others begin.","type":"Movie","_key":"55998"} +{"label":"Karen Moncrieff","version":23,"id":"74638","lastModified":"1301901701000","name":"Karen Moncrieff","type":"Person","_key":"55999"} +{"label":"The Doom Generation","description":"Jordan White and Amy Blue, two troubled teens, pick up an adolescent drifter, Xavier Red. Together, the threesome embark on a sex and violence-filled journey through an America of psychos and quickiemarts.","id":"13552","runtime":85,"imdbId":"tt0112887","version":331,"lastModified":"1301904131000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/996\/4c5d825f7b9aa151f4000996\/the-doom-generation-mid.jpg","studio":"Blurco","genre":"Action","title":"The Doom Generation","releaseDate":814752000000,"language":"en","type":"Movie","_key":"56000"} +{"label":"The Driller Killer","description":"No overview found.","id":"13553","runtime":96,"imdbId":"tt0079082","version":78,"lastModified":"1301904353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/255\/4bc93e25017a3c57fe01a255\/the-driller-killer-mid.jpg","studio":"Navaron Productions","genre":"Drama","title":"The Driller Killer","releaseDate":298252800000,"language":"en","type":"Movie","_key":"56001"} +{"label":"Carolyn Marz","version":22,"id":"74640","lastModified":"1301902030000","name":"Carolyn Marz","type":"Person","_key":"56002"} +{"label":"Eight Men Out","description":"The great Chicago White Sox team of 1919 is the saddest team to ever win a pennent. The team is bitter at their penny pincher owner, Charles Comiskey, and at their own teammates. Gamblers take advantage of this opportunity to offer some players $ to throw the series (Most of the players didn't get as much as promised.) But Buck Weaver and the great Shoeless Joe Jackson turn back at the last minute to try and play their best. The Sox actually almost come back from a 3-1 deficit. 2 years later, th","id":"13554","runtime":119,"imdbId":"tt0095082","version":166,"lastModified":"1301902940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/209\/4bf6b208017a3c772c000209\/eight-men-out-mid.jpg","studio":"Orion Pictures Corporation","genre":"Drama","title":"Eight Men Out","releaseDate":589161600000,"language":"en","type":"Movie","_key":"56003"} +{"label":"The Funhouse","description":"Four teenage friends spent the night in a carnival funhouse and are stalked by a deformed man in a frankenstein mask.","id":"13555","runtime":96,"imdbId":"tt0082427","trailer":"http:\/\/www.youtube.com\/watch?v=OYjCLdJTxGQ","version":127,"lastModified":"1301903354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/267\/4bc93e26017a3c57fe01a267\/the-funhouse-mid.jpg","studio":"Mace Neufeld Productions","genre":"Horror","title":"The Funhouse","releaseDate":353289600000,"language":"en","tagline":"Something is alive in the Funhouse!","type":"Movie","_key":"56004"} +{"label":"Jack McDermott","version":20,"id":"74641","lastModified":"1301901673000","name":"Jack McDermott","type":"Person","_key":"56005"} +{"label":"Shawn Carson","version":23,"id":"74642","lastModified":"1301901683000","name":"Shawn Carson","type":"Person","_key":"56006"} +{"label":"The Ghosts Of Edendale","description":"No overview found.","id":"13556","runtime":90,"imdbId":"tt0301184","version":64,"lastModified":"1301904220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26c\/4bc93e26017a3c57fe01a26c\/the-ghosts-of-edendale-mid.jpg","studio":"Mixville 02","genre":"Horror","title":"The Ghosts Of Edendale","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56007"} +{"label":"Stefan Avalos","version":22,"id":"74643","lastModified":"1301901562000","name":"Stefan Avalos","type":"Person","_key":"56008"} +{"label":"Paula Ficara","version":20,"id":"74645","lastModified":"1301901780000","name":"Paula Ficara","type":"Person","_key":"56009"} +{"label":"Stephen Wastell","version":21,"id":"74646","lastModified":"1301901949000","name":"Stephen Wastell","type":"Person","_key":"56010"} +{"label":"Keith Fulton","version":27,"id":"74647","lastModified":"1301901780000","name":"Keith Fulton","type":"Person","_key":"56011"} +{"label":"The Gravedancers","description":"After a night of drunken exploits, Allison, Harris, and Kira are chased and terrorized by the ghosts of a child pyromaniac, an ax murderer, and a rapist.","id":"13557","runtime":95,"imdbId":"tt0435653","version":324,"lastModified":"1301904738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/275\/4bc93e2a017a3c57fe01a275\/the-gravedancers-mid.jpg","studio":"Code Entertainment","genre":"Horror","title":"The Gravedancers","releaseDate":1130976000000,"language":"en","type":"Movie","_key":"56012"} +{"label":"Martha Holland","version":17,"id":"100529","lastModified":"1301902634000","name":"Martha Holland","type":"Person","_key":"56013"} +{"label":"H.H. Holmes: America's First Serial Killer","description":"No overview found.","id":"13558","runtime":64,"imdbId":"tt0358500","version":90,"lastModified":"1301905227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3f\/4d5607e75e73d617c7006d3f\/h-h-holmes-america-s-first-serial-killer-mid.jpg","studio":"Waterfront Productions","genre":"Crime","title":"H.H. Holmes: America's First Serial Killer","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"56014"} +{"label":"John Borowski","version":21,"id":"74652","lastModified":"1301901562000","name":"John Borowski","type":"Person","_key":"56015"} +{"label":"Willy Laszlo","version":20,"id":"74654","lastModified":"1301902177000","name":"Willy Laszlo","type":"Person","_key":"56016"} +{"label":"The Mangler","description":"When an accident involving a folding machine at an old laundry happens, detective John Hunton investigates. While he tries to solve the mystery, Bill Gartley, the owner, wants to find new victims for his machine.","id":"13559","runtime":106,"imdbId":"tt0113762","version":141,"lastModified":"1301907687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4bc93e2a017a3c57fe01a27e\/the-mangler-mid.jpg","studio":"Allied Film Production","genre":"Drama","title":"The Mangler","releaseDate":794188800000,"language":"en","type":"Movie","_key":"56017"} +{"label":"Max","description":"No overview found.","id":"13560","runtime":106,"imdbId":"tt0290210","version":143,"lastModified":"1301904300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/294\/4bc93e2d017a3c57fe01a294\/max-mid.jpg","studio":"AAMPI Inc.","genre":"Drama","title":"Max","releaseDate":1036800000000,"language":"en","type":"Movie","_key":"56018"} +{"label":"Murder Party","description":"A random invitation to a Halloween party leads a man into the hands of a rogue collective intent on murdering him for the sake of their art, sparking a bloodbath of mishap, mayhem and hilarity","id":"13561","runtime":79,"imdbId":"tt0878695","version":107,"lastModified":"1301902897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4bc93e2e017a3c57fe01a2a1\/murder-party-mid.jpg","studio":"The Lab Of Madness","genre":"Comedy","title":"Murder Party","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"56019"} +{"label":"Jeremy Saulnier","version":20,"id":"74655","lastModified":"1301902328000","name":"Jeremy Saulnier","type":"Person","_key":"56020"} +{"label":"Alex Barnett","version":20,"id":"74657","lastModified":"1301902328000","name":"Alex Barnett","type":"Person","_key":"56021"} +{"label":"Paul Goldblatt","version":20,"id":"74658","lastModified":"1301902328000","name":"Paul Goldblatt","type":"Person","_key":"56022"} +{"label":"My Man Godfrey","description":"A zany heiress tries to help a tramp by making him the family butler.","id":"13562","runtime":94,"imdbId":"tt0028010","version":221,"lastModified":"1301903396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b2\/4bc93e30017a3c57fe01a2b2\/my-man-godfrey-mid.jpg","studio":"Universal Pictures Corporation","genre":"Comedy","title":"My Man Godfrey","releaseDate":-1050537600000,"language":"en","type":"Movie","_key":"56023"} +{"label":"Gregory La Cava","version":22,"id":"74659","lastModified":"1301901838000","name":"Gregory La Cava","type":"Person","_key":"56024"} +{"label":"Alice Brady","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ed\/4c49ef337b9aa116000000ed\/alice-brady-profile.jpg","version":32,"id":"125841","lastModified":"1301902994000","name":"Alice Brady","type":"Person","_key":"56025"} +{"label":"Gail Patrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/093\/4c1bc5067b9aa117b2000093\/gail-patrick-profile.jpg","version":23,"id":"98574","lastModified":"1301901716000","name":"Gail Patrick","type":"Person","_key":"56026"} +{"label":"Jean Dixon","version":28,"id":"80238","lastModified":"1301901772000","name":"Jean Dixon","type":"Person","_key":"56027"} +{"label":"Pat Flaherty","version":23,"id":"125842","lastModified":"1301902766000","name":"Pat Flaherty","type":"Person","_key":"56028"} +{"label":"Robert Light","version":20,"id":"125843","lastModified":"1301902901000","name":"Robert Light","type":"Person","_key":"56029"} +{"label":"Puddle Cruiser","description":"A student falls in love with a fellow student who is defending his buddies in university court. He \"proves his love\" (more like his masculinity) to her by playing rugby against her ex-boyfriend.","id":"13563","runtime":102,"imdbId":"tt0144557","version":95,"lastModified":"1301908006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bc\/4bc93e31017a3c57fe01a2bc\/puddle-cruiser-mid.jpg","studio":"Broken Lizard Industries","genre":"Comedy","title":"Puddle Cruiser","releaseDate":820454400000,"language":"en","type":"Movie","_key":"56030"} +{"label":"Zach Chapman","version":16,"id":"93026","lastModified":"1301902891000","name":"Zach Chapman","type":"Person","_key":"56031"} +{"label":"Alison Clapp","version":19,"id":"93027","lastModified":"1301902891000","name":"Alison Clapp","type":"Person","_key":"56032"} +{"label":"Arik Treston","version":16,"id":"93028","lastModified":"1301902891000","name":"Arik Treston","type":"Person","_key":"56033"} +{"label":"Jamison Selby","version":16,"id":"93029","lastModified":"1301902634000","name":"Jamison Selby","type":"Person","_key":"56034"} +{"label":"Charles Lloyd","version":16,"id":"93030","lastModified":"1301902465000","name":"Charles Lloyd","type":"Person","_key":"56035"} +{"label":"Return to House on Haunted Hill","description":"When the lone survivor of the original excursion to The House on Haunted Hill dies under suspicious circumstances, her sister returns to the foreboding mansion to solve the mystery of her sibling's death in the feature directorial debut of former make-up special effects artist Victor Garcia (Hellboy). Back in 1931, malevolent doctor Richard Vannacut and his entire staff at the hilltop asylum were ","id":"13564","runtime":81,"imdbId":"tt0827782","trailer":"http:\/\/www.youtube.com\/watch?v=rB7DTGY5ufw","version":186,"lastModified":"1301904182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c5\/4bc93e32017a3c57fe01a2c5\/return-to-house-on-haunted-hill-mid.jpg","studio":"Dark Castle Entertainment","genre":"Horror","title":"Return to House on Haunted Hill","releaseDate":1192492800000,"language":"en","type":"Movie","_key":"56036"} +{"label":"V\u00edctor Garc\u00eda","version":26,"id":"74661","lastModified":"1301902328000","name":"V\u00edctor Garc\u00eda","type":"Person","_key":"56037"} +{"label":"Tom Riley","version":31,"id":"47702","lastModified":"1301901647000","name":"Tom Riley","type":"Person","_key":"56038"} +{"label":"The Slaughterhouse Massacre","description":"Follow the story of several attractive teenagers as they try to have a fun time in a slaughter house after dark...","id":"13566","runtime":97,"imdbId":"tt0447448","version":64,"lastModified":"1301908545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d8\/4bc93e33017a3c57fe01a2d8\/the-slaughterhouse-massacre-mid.jpg","studio":"4 What Its Worth Inc","genre":"Horror","title":"The Slaughterhouse Massacre","releaseDate":1119916800000,"language":"en","type":"Movie","_key":"56039"} +{"label":"Paul Gagn\u00e9","version":19,"id":"74666","lastModified":"1301902362000","name":"Paul Gagn\u00e9","type":"Person","_key":"56040"} +{"label":"Stephani Wells","version":20,"id":"74668","lastModified":"1301902381000","name":"Stephani Wells","type":"Person","_key":"56041"} +{"label":"Cory Nelson","version":20,"id":"74670","lastModified":"1301902362000","name":"Cory Nelson","type":"Person","_key":"56042"} +{"label":"Sleepaway Camp","description":"Slightly disturbed and painfully shy Angela Baker is sent away to summer camp with her cousin. Not long after Angela's arrival, things start to go horribly wrong for anyone with sinister or less than honorable intentions.","id":"13567","runtime":88,"imdbId":"tt0086320","version":113,"lastModified":"1301903832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e1\/4bc93e36017a3c57fe01a2e1\/sleepaway-camp-mid.jpg","studio":"American Eagle","genre":"Horror","title":"Sleepaway Camp","releaseDate":410227200000,"language":"en","tagline":"A perfect place to meet young girls, might just be the perfect place to die!","type":"Movie","_key":"56043"} +{"label":"Robert Hiltzik","version":23,"id":"74671","lastModified":"1301902116000","name":"Robert Hiltzik","type":"Person","_key":"56044"} +{"label":"Felissa Rose","version":32,"id":"74673","lastModified":"1301901781000","name":"Felissa Rose","type":"Person","_key":"56045"} +{"label":"Jonathan Tiersten","version":21,"id":"74674","lastModified":"1301901991000","name":"Jonathan Tiersten","type":"Person","_key":"56046"} +{"label":"Sleepover Nightmare","description":"No overview found.","id":"13568","runtime":81,"imdbId":"tt0448123","version":94,"lastModified":"1301420686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e6\/4bc93e37017a3c57fe01a2e6\/sleepover-nightmare-mid.jpg","genre":"Horror","title":"Sleepover Nightmare","releaseDate":1119312000000,"language":"en","type":"Movie","_key":"56047"} +{"label":"Boon Collins","version":22,"id":"74675","lastModified":"1301901780000","name":"Boon Collins","type":"Person","_key":"56048"} +{"label":"Hayley Sales","version":20,"id":"74677","lastModified":"1301902145000","name":"Hayley Sales","type":"Person","_key":"56049"} +{"label":"Chad Rook","version":20,"id":"74678","lastModified":"1301902145000","name":"Chad Rook","type":"Person","_key":"56050"} +{"label":"Kristine Cofsky","version":20,"id":"74679","lastModified":"1301902145000","name":"Kristine Cofsky","type":"Person","_key":"56051"} +{"label":"Thr3e","description":"Innocent lives hang on the whim of an elusive psychopathic murderer whose strange riddles and impossible timelines force three people into a mission to end the game before one or all of them die.","id":"13569","runtime":101,"imdbId":"tt0486028","version":131,"lastModified":"1301906643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ef\/4bc93e37017a3c57fe01a2ef\/thr3e-mid.jpg","studio":"MovieRoom Productions","genre":"Drama","title":"Thr3e","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"56052"} +{"label":"Tourist Trap","description":"Their car breaks down and four friends find themselves stranded at The Lost Oasis, a strange museum run by the friendly Mr. Slausen. Even though they are warned not to, the teens explore a house nearby and learn that it belongs to Davey, Mr. Slausen's insane brother. Davey has a knack for making mannequins. In fact, his house is filled with them. Davey's enthusiasm shows when starts adding the teenagers to his collection.","id":"13570","runtime":90,"imdbId":"tt0080040","version":124,"lastModified":"1301905955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4bc93e37017a3c57fe01a2f4\/tourist-trap-mid.jpg","studio":"Charles Band Productions","genre":"Horror","title":"Tourist Trap","releaseDate":290390400000,"language":"en","tagline":"Every year young people disappear","type":"Movie","_key":"56053"} +{"label":"Robin Sherwood","version":24,"id":"74682","lastModified":"1301902002000","name":"Robin Sherwood","type":"Person","_key":"56054"} +{"label":"True Colors","description":"No overview found.","id":"13571","runtime":111,"imdbId":"tt0103125","version":103,"lastModified":"1301905542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4bc93e38017a3c57fe01a2f9\/true-colors-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"True Colors","releaseDate":668995200000,"language":"en","type":"Movie","_key":"56055"} +{"label":"Twisted","description":"Jessica, whose father was a serial killer, is a female police officer. While investigating a murder, she finds herself in the center of her own investigation, when her former lovers start dying around her at a furious pace.","id":"13572","runtime":97,"imdbId":"tt0315297","trailer":"http:\/\/www.youtube.com\/watch?v=ebbsrdCXYzE","version":203,"lastModified":"1301925973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4bc93e38017a3c57fe01a306\/twisted-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Twisted","releaseDate":1077840000000,"language":"en","type":"Movie","_key":"56056"} +{"label":"The United States Of Leland","description":"No overview found.","id":"13573","runtime":108,"imdbId":"tt0301976","version":165,"lastModified":"1301904299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4bc93e39017a3c57fe01a30f\/the-united-states-of-leland-mid.jpg","studio":"MDP Worldwide","genre":"Crime","title":"The United States Of Leland","releaseDate":1042848000000,"language":"en","type":"Movie","_key":"56057"} +{"label":"Matthew Ryan Hoge","version":20,"id":"74683","lastModified":"1301901950000","name":"Matthew Ryan Hoge","type":"Person","_key":"56058"} +{"label":"Year of the Dog","description":"A secretary's life changes in unexpected ways after her dog dies.","id":"13574","runtime":97,"imdbId":"tt0756729","trailer":"http:\/\/www.youtube.com\/watch?v=tUh5Wz-vk5Y","version":197,"lastModified":"1301907564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/325\/4bc93e3b017a3c57fe01a325\/year-of-the-dog-mid.jpg","studio":"Black & White Productions","genre":"Comedy","title":"Year of the Dog","releaseDate":1176422400000,"language":"en","tagline":"Has the world left you a stray?","type":"Movie","_key":"56059"} +{"label":"Die 7 Zwerge","description":"No overview found.","id":"13575","runtime":0,"version":146,"lastModified":"1300979660000","title":"Die 7 Zwerge","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56060"} +{"label":"This is It","description":"A compilation of interviews, rehearsals and backstage footage of Michael Jackson as he prepared for his series of sold-out shows in London.","id":"13576","runtime":112,"imdbId":"tt1477715","trailer":"http:\/\/www.youtube.com\/watch?v=zUniG6F_RzY","homepage":"http:\/\/www.thisisit-movie.com","version":274,"lastModified":"1301901026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/346\/4bc93e3e017a3c57fe01a346\/this-is-it-mid.jpg","studio":" Columbia Pictures","genre":"Documentary","title":"This is It","releaseDate":1256688000000,"language":"en","type":"Movie","_key":"56061"} +{"label":"Orianthi","version":19,"id":"90778","lastModified":"1301904130000","name":"Orianthi","type":"Person","_key":"56062"} +{"label":"Lower Learning","description":"Barry Goldwater Elementary is on the brink of collapse: the lowest test scores in the state, teachers who are either drunk or having sex on school grounds, and a principal who extorts money from parents. It's up to Tom, the down-on-his-luck vice-principal, to rally the lazy teachers, expose the principal's corruption, and turn the school around before an end of the day board decision.","id":"13577","runtime":97,"imdbId":"tt1129381","homepage":"http:\/\/www.lowerlearningmovie.com\/","version":314,"lastModified":"1301902964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/359\/4bc93e44017a3c57fe01a359\/lower-learning-mid.jpg","studio":"Ambush Entertainment","genre":"Comedy","title":"Lower Learning","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"56063"} +{"label":"Mark Lafferty","version":20,"id":"74685","lastModified":"1301902175000","name":"Mark Lafferty","type":"Person","_key":"56064"} +{"label":"Harold","description":"A teenager with an early onset of male-pattern baldness befriends his high school's janitor.","id":"13578","runtime":90,"imdbId":"tt1041753","homepage":"http:\/\/www.haroldmoviesite.com\/","version":147,"lastModified":"1301903569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/363\/4bc93e45017a3c57fe01a363\/harold-mid.jpg","studio":"Mega Film","genre":"Comedy","title":"Harold","releaseDate":1215907200000,"language":"en","type":"Movie","_key":"56065"} +{"label":"T. Sean Shannon","version":22,"id":"74686","lastModified":"1301902382000","name":"T. Sean Shannon","type":"Person","_key":"56066"} +{"label":"Stella Maeve","version":27,"id":"74687","lastModified":"1301901647000","name":"Stella Maeve","type":"Person","_key":"56067"} +{"label":"The Longshots","description":"The true story of Jasmine Plummer who, at the age of eleven, became the first female to play in Pop Warner football tournament in its 56-year history.","id":"13579","runtime":94,"imdbId":"tt1091751","version":199,"lastModified":"1301903295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36c\/4bc93e45017a3c57fe01a36c\/the-longshots-mid.jpg","studio":"Dimension Films","genre":"Drama","title":"The Longshots","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"56068"} +{"label":"Tasha Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e2c\/4d7656385e73d6646e000e2c\/tasha-smith-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Tasha Smith<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN> was born February 28, 1971 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Camden<\/st1:City> <st1:State w:st=\"on\">New Jersey<\/st1:State><\/st1:place> and raised by a single mother. She as an identical twin sister named Sidra Smith. Tasha h","version":39,"birthday":"36543600000","id":"74610","birthplace":"Camden, New Jersey","lastModified":"1301901314000","name":"Tasha Smith","type":"Person","_key":"56069"} +{"label":"The Spy Who Came in from the Cold","description":"British agent Alec Leamas refuses to come in from the cold war during the 1960s, choosing to face another mission, which may prove to be his final one.","id":"13580","runtime":112,"imdbId":"tt0059749","version":192,"lastModified":"1301902963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10a\/4d7e92315e73d65ec600310a\/the-spy-who-came-in-from-the-cold-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Spy Who Came in from the Cold","releaseDate":-127612800000,"language":"en","type":"Movie","_key":"56070"} +{"label":"Rupert Davies","version":31,"id":"74689","lastModified":"1301901775000","name":"Rupert Davies","type":"Person","_key":"56071"} +{"label":"Beatrix Lehmann","version":19,"id":"74690","lastModified":"1301902073000","name":"Beatrix Lehmann","type":"Person","_key":"56072"} +{"label":"Niall MacGinnis","version":21,"id":"93163","lastModified":"1301902577000","name":"Niall MacGinnis","type":"Person","_key":"56073"} +{"label":"Scott Finch","version":17,"id":"78943","lastModified":"1301902213000","name":"Scott Finch","type":"Person","_key":"56074"} +{"label":"Anne Blake","version":17,"id":"140147","lastModified":"1301902725000","name":"Anne Blake","type":"Person","_key":"56075"} +{"label":"Warren Mitchell","version":20,"id":"94713","lastModified":"1301902565000","name":"Warren Mitchell","type":"Person","_key":"56076"} +{"label":"Steve Plytas","version":17,"id":"140148","lastModified":"1301903071000","name":"Steve Plytas","type":"Person","_key":"56077"} +{"label":"Tom Stern","version":12,"id":"223349","lastModified":"1301903644000","name":"Tom Stern","type":"Person","_key":"56078"} +{"label":"Dead of Night","description":"Architect Walter Craig, seeking the possibility of some work at a country farmhouse, soon finds himself once again stuck in his recurring nightmare. Dreading the end of the dream that he knows is coming, he must first listen to all the assembled guests' own bizarre tales.","id":"13581","runtime":102,"imdbId":"tt0037635","version":83,"lastModified":"1301903581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38b\/4bc93e48017a3c57fe01a38b\/dead-of-night-mid.jpg","studio":"Ealing Studios","genre":"Horror","title":"Dead of Night","releaseDate":-767664000000,"language":"en","type":"Movie","_key":"56079"} +{"label":"Alberto Cavalcanti","version":23,"id":"74697","lastModified":"1301901647000","name":"Alberto Cavalcanti","type":"Person","_key":"56080"} +{"label":"Robert Hamer","version":34,"id":"70864","lastModified":"1301901415000","name":"Robert Hamer","type":"Person","_key":"56081"} +{"label":"Frederick Valk","version":19,"id":"96443","lastModified":"1301902541000","name":"Frederick Valk","type":"Person","_key":"56082"} +{"label":"L\u00f6svikt","description":"No overview found.","id":"13582","runtime":83,"version":22,"lastModified":"1300979662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/894\/4cc456095e73d67783001894\/losvikt-mid.jpg","studio":"Pan Vision","title":"L\u00f6svikt","releaseDate":1224633600000,"language":"en","type":"Movie","_key":"56083"} +{"label":"Robert Gustafsson","version":42,"id":"74699","lastModified":"1301901324000","name":"Robert Gustafsson","type":"Person","_key":"56084"} +{"label":"Bill Bailey - Part Troll","description":"Bill Bailey's Part Troll tour has been a huge success playing over 60 dates throughout the country. This DVD, filmed at the Hammersmith Apollo, captures one of the country's best and most original stand-ups at the top of his game.","id":"13584","runtime":94,"imdbId":"tt0395474","trailer":"http:\/\/www.youtube.com\/watch?v=ggOa9aSG-Ow","version":53,"lastModified":"1301907334000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a5\/4bc93e4d017a3c57fe01a3a5\/bill-bailey-live-part-troll-mid.jpg","studio":"Talent Television","genre":"Comedy","title":"Bill Bailey - Part Troll","releaseDate":1101081600000,"language":"en","type":"Movie","_key":"56085"} +{"label":"Bill Bailey - Tinselworm","description":"A visually stunning comedy and music extravaganza. Filmed at Wembley Arena at the end of a sell-out tour of the UK, it\u2019s everything you expect from Bill, and more. Using huge screens, films and animation by award-winning film-maker Joe Magee, plus Bill\u2019s trademark musical inventiveness and verbal brilliance, this is quite simply the most ","id":"13585","runtime":91,"imdbId":"tt1351630","version":82,"lastModified":"1301906060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ae\/4bc93e4d017a3c57fe01a3ae\/bill-bailey-tinselworm-mid.jpg","genre":"Comedy","title":"Bill Bailey - Tinselworm","releaseDate":1226275200000,"language":"en","type":"Movie","_key":"56086"} +{"label":"Dylan Moran: Like, Totally...","description":"Dylan Moran, creator of Channel 4's BAFTA award-winning \"Black Books\" returns with an all-new stand-up show. Unpredictable, startling, bizarre, elegiac, but above all brilliant and hilariously funny, Moran is a master of comedy.","id":"13586","runtime":66,"imdbId":"tt1023122","version":73,"lastModified":"1301905269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4bc93e4e017a3c57fe01a3b7\/dylan-moran-like-totally-mid.jpg","studio":"Universal Studios","genre":"Comedy","title":"Dylan Moran: Like, Totally...","releaseDate":1163376000000,"language":"en","type":"Movie","_key":"56087"} +{"label":"Michael Matheson","version":17,"id":"91295","lastModified":"1301902465000","name":"Michael Matheson","type":"Person","_key":"56088"} +{"label":"Eddie Izzard: Circle","description":"Town Hall, New York City, 26 June 2000. An evening with Eddie Izzard in which he moves back and forth in time, with religion as the loose but constant theme.","id":"13587","runtime":82,"imdbId":"tt0342317","version":64,"lastModified":"1301906721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c0\/4bc93e4f017a3c57fe01a3c0\/eddie-izzard-circle-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Circle","releaseDate":1037577600000,"language":"en","type":"Movie","_key":"56089"} +{"label":"Anastasia Pappas","version":15,"id":"148347","lastModified":"1301902713000","name":"Anastasia Pappas","type":"Person","_key":"56090"} +{"label":"Eddie Izzard: Definite Article","description":"Eddie arrives on stage through a huge book which opens to reveal him sitting at the top of a staircase. Then discusses Caesar dog food, 24 hour garages, Latin, and winds his way through James Bond gadgets, Einstein and Pavlov.","id":"13588","runtime":109,"imdbId":"tt0116066","version":80,"lastModified":"1301905269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c9\/4bc93e4f017a3c57fe01a3c9\/definite-article-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Definite Article","releaseDate":845856000000,"language":"en","type":"Movie","_key":"56091"} +{"label":"Eddie Izzard: Dress to Kill","description":"Executive transvestite Eddie Izzard takes his show to San Francisco to give a brief history of pagan and Christian religions, the building of Stonehenge, the birth of the Church of England and of Western empires, and the need for a European dream.","id":"13589","runtime":175,"imdbId":"tt0184424","version":166,"lastModified":"1301903863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d2\/4bc93e50017a3c57fe01a3d2\/eddie-izzard-dress-to-kill-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Dress to Kill","releaseDate":929318400000,"language":"en","type":"Movie","_key":"56092"} +{"label":"Lawrence Jordan","version":43,"id":"49286","lastModified":"1301901401000","name":"Lawrence Jordan","type":"Person","_key":"56093"} +{"label":"Eddie Izzard: Glorious","description":"Eddie Izzard's routine has a loose trajectory from the beginning of the Old Testament and the creation of the world in seven days to Revelations. Along the way, we learn of the search for a career, bad giraffes, Prince Philip's gaffes, toilets in French campsites, the mysteries of hopscotch, becoming one's Dad and tranny bashing.","id":"13590","runtime":99,"imdbId":"tt0195753","version":106,"lastModified":"1301905342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3db\/4bc93e50017a3c57fe01a3db\/eddie-izzard-glorious-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Glorious","releaseDate":879724800000,"language":"en","type":"Movie","_key":"56094"} +{"label":"Eddie Izzard: Unrepeatable","description":"Recorded one night at the Albert Theatre in March 1994, when Eddie Izzard was playing a limited seven week sold-out run of his celebrated stand-up show.","id":"13591","runtime":75,"imdbId":"tt0111562","version":109,"lastModified":"1301904706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e4\/4bc93e51017a3c57fe01a3e4\/eddie-izzard-unrepeatable-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Unrepeatable","releaseDate":781142400000,"language":"en","type":"Movie","_key":"56095"} +{"label":"John Gordillo","version":21,"id":"89296","lastModified":"1301902499000","name":"John Gordillo","type":"Person","_key":"56096"} +{"label":"Eddie Izzard: Sexie","description":"Filmed in Eastbourne where his grandfather and father were born and where he went to school, this show is the funniest live show that could ever be performed by a warm blooded animal. ","id":"13592","runtime":97,"imdbId":"tt0408730","version":132,"lastModified":"1301907242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ed\/4bc93e52017a3c57fe01a3ed\/sexie-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Sexie","releaseDate":1069804800000,"language":"en","type":"Movie","_key":"56097"} +{"label":"Airheads","description":"The Lone Rangers have heavy-metal dreams and a single demo tape they can't get anyone to play. The solution: Hijack an AM rock station and hold the deejays hostage until they agree to broadcast the band's tape.","id":"13595","runtime":92,"imdbId":"tt0109068","version":107,"lastModified":"1302048215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4d9bc9ec7b9aa16d0a00081d\/airheads-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Airheads","releaseDate":776044800000,"language":"en","tagline":"The amps are on but nobody's home.","type":"Movie","_key":"56098"} +{"label":"My Best Friend's Girl","description":"When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.","id":"13596","runtime":101,"imdbId":"tt1046163","trailer":"http:\/\/www.youtube.com\/watch?v=823","homepage":"www.mybestfriendsgirlmovie.com","version":222,"lastModified":"1301902268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d8\/4d6fd37c5e73d65a1e0009d8\/my-best-friend-s-girl-mid.jpg","studio":"Lionsgate","genre":"Comedy","title":"My Best Friend's Girl","releaseDate":1221782400000,"language":"en","type":"Movie","_key":"56099"} +{"label":"Labyrinth","description":"Young Sarah is left home alone by her parents and she has to babysit her little brother Toby. But the baby keeps crying and Sarah, while telling him a story to make him sleep, inadvertently conjures from a fantasy world the Goblin King who steals the child and brings him to his castle in the middle of a labyrinth.","id":"13597","runtime":101,"imdbId":"tt0091369","trailer":"http:\/\/www.youtube.com\/watch?v=WT_xpFZe20A","version":168,"lastModified":"1301901988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dad\/4d40f67d7b9aa15bb0002dad\/labyrinth-mid.jpg","studio":"Jim Henson Productions","genre":"Adventure","title":"Labyrinth","releaseDate":520214400000,"language":"en","tagline":"Where everything seems possible and nothing is what it seems.","type":"Movie","_key":"56100"} +{"label":"Toby Froud","version":20,"id":"68794","lastModified":"1301901554000","name":"Toby Froud","type":"Person","_key":"56101"} +{"label":"City of Ember","description":"For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.","id":"13600","runtime":90,"imdbId":"tt0970411","trailer":"http:\/\/www.youtube.com\/watch?v=1460","homepage":"http:\/\/www.cityofember.com\/","version":457,"lastModified":"1301901498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/474\/4bc93e66017a3c57fe01a474\/city-of-ember-mid.jpg","studio":"Playtone Production","genre":"Action","title":"City of Ember","releaseDate":1222300800000,"language":"en","tagline":"Escape Is The Only Option","type":"Movie","_key":"56102"} +{"label":"B.J. Hogg","version":26,"id":"82142","lastModified":"1301901511000","name":"B.J. Hogg","type":"Person","_key":"56103"} +{"label":"Lucinda Dryzek","version":23,"id":"82143","lastModified":"1301901640000","name":"Lucinda Dryzek","type":"Person","_key":"56104"} +{"label":"Matt Jessup","version":24,"id":"82144","lastModified":"1301901640000","name":"Matt Jessup","type":"Person","_key":"56105"} +{"label":"Lara McIvor","version":23,"id":"82145","lastModified":"1301901770000","name":"Lara McIvor","type":"Person","_key":"56106"} +{"label":"Myles Thompson","version":23,"id":"82146","lastModified":"1301901640000","name":"Myles Thompson","type":"Person","_key":"56107"} +{"label":"Eoin McAndrew","version":23,"id":"82147","lastModified":"1301902131000","name":"Eoin McAndrew","type":"Person","_key":"56108"} +{"label":"Rachel Morton","version":23,"id":"82148","lastModified":"1301902131000","name":"Rachel Morton","type":"Person","_key":"56109"} +{"label":"Conor MacNeill","version":23,"id":"82149","lastModified":"1301902131000","name":"Conor MacNeill","type":"Person","_key":"56110"} +{"label":"Lorraine Hilton","version":23,"id":"82150","lastModified":"1301902131000","name":"Lorraine Hilton","type":"Person","_key":"56111"} +{"label":"Beck - Flickan i jordk\u00e4llaren","description":"I en \u00f6vergiven jordk\u00e4llare hittas en d\u00f6d flicka prydligt nedb\u00e4ddad. Bredvid henne st\u00e5r en tallrik med nylagad mat, men den r\u00e4ttsmedicinska Unders\u00f6kningen visar att hon varit d\u00f6d en tid. \r\nInget barn \u00e4r anm\u00e4lt saknat. Vem \u00e4r hon? Hur hamnade hon d\u00e4r? Vem har St\u00e4llt fram mat till ett uppenbart d\u00f6tt barn? \r\n","id":"13605","runtime":85,"imdbId":"tt0889575","trailer":"http:\/\/www.youtube.com\/watch?v=826","homepage":"http:\/\/www.beckfilm.se","version":45,"lastModified":"1301908299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49a\/4bc93e69017a3c57fe01a49a\/beck-18-flickan-i-jordkallaren-mid.jpg","studio":"Nordisk Film","genre":"Crime","title":"Beck - Flickan i jordk\u00e4llaren","releaseDate":1163289600000,"language":"en","type":"Movie","_key":"56112"} +{"label":"Peter Haber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/817\/4d0a8ce85e73d613cf000817\/peter-haber-profile.jpg","version":81,"birthday":"-538189200000","id":"74709","birthplace":"Skelleftehamn, Sweden","lastModified":"1302077441000","name":"Peter Haber","type":"Person","_key":"56113"} +{"label":"Marie G\u00f6ranzon","version":37,"id":"74710","lastModified":"1301902055000","name":"Marie G\u00f6ranzon","type":"Person","_key":"56114"} +{"label":"Stina Rautelin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/858\/4d0e683b5e73d63713001858\/stina-rautelin-profile.jpg","version":47,"birthday":"-195267600000","id":"74711","birthplace":"Helsingfors","lastModified":"1301901492000","name":"Stina Rautelin","type":"Person","_key":"56115"} +{"label":"Ing-Marie Carlsson","version":28,"id":"74712","lastModified":"1301902326000","name":"Ing-Marie Carlsson","type":"Person","_key":"56116"} +{"label":"Peter H\u00fcttner","version":31,"id":"74714","lastModified":"1301902316000","name":"Peter H\u00fcttner","type":"Person","_key":"56117"} +{"label":"1 Love","description":"From the Academy Award-winning director of When We Were Kings comes this enthralling tribute to the timeless power and magic of basketball.","id":"13607","runtime":93,"imdbId":"tt0323498","version":211,"lastModified":"1301906473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a3\/4bc93e6c017a3c57fe01a4a3\/1-love-mid.jpg","studio":"Spyglass Entertainment","genre":"Documentary","title":"1 Love","releaseDate":1070323200000,"language":"en","type":"Movie","_key":"56118"} +{"label":"Kobe Bryant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d9\/4d4fdbaa7b9aa13aba00b3d9\/kobe-bryant-profile.jpg","version":23,"birthday":"272674800000","id":"74715","birthplace":"Philadelphia, Pennsylvania, USA","lastModified":"1301902317000","name":"Kobe Bryant","type":"Person","_key":"56119"} +{"label":"Etan Goldman","version":19,"id":"74716","lastModified":"1301902073000","name":"Etan Goldman","type":"Person","_key":"56120"} +{"label":"Larry Hughes","version":19,"id":"74882","lastModified":"1301902248000","name":"Larry Hughes","type":"Person","_key":"56121"} +{"label":"Allen Iverson","version":21,"id":"74883","lastModified":"1301901811000","name":"Allen Iverson","type":"Person","_key":"56122"} +{"label":"Phil Jackson","version":20,"id":"74884","lastModified":"1301901909000","name":"Phil Jackson","type":"Person","_key":"56123"} +{"label":"Jerry Stackhouse","version":19,"id":"74885","lastModified":"1301902248000","name":"Jerry Stackhouse","type":"Person","_key":"56124"} +{"label":"David Stern","version":19,"id":"74886","lastModified":"1301902248000","name":"David Stern","type":"Person","_key":"56125"} +{"label":"Christmas Cottage","description":"Inspired by the picturesque paintings of Thomas Kinkade, The Christmas Cottage tells the semi-autobiographical tale of how a young boy is propelled to launch a career as an artist after he learns that his mother is in danger of losing the family home.","id":"13610","runtime":0,"imdbId":"tt0999872","version":176,"lastModified":"1301905966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ac\/4bc93e6d017a3c57fe01a4ac\/christmas-cottage-mid.jpg","title":"Christmas Cottage","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"56126"} +{"label":"Heckler","description":"HECKLER is a comedic feature documentary exploring the increasingly critical world we live in. After starring in a film that was critically bashed, Jamie Kennedy takes on hecklers and critics and ask some interesting questions of people such as George Lucas, Bill Maher, Mike Ditka, Rob Zombie, Howie Mandel and many more. This fast moving, hilarious documentary pulls no punches as you see an uncensored look at just how nasty and mean the fight is between those in the spotlight and those in the da","id":"13611","runtime":0,"imdbId":"tt0903849","trailer":"http:\/\/www.youtube.com\/watch?v=1291","version":74,"lastModified":"1301905192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b5\/4bc93e6e017a3c57fe01a4b5\/heckler-mid.jpg","genre":"Documentary","title":"Heckler","releaseDate":1167609600000,"language":"en","tagline":"Everyone's a critic.","type":"Movie","_key":"56127"} +{"label":"Michael Addis","version":18,"id":"116801","lastModified":"1301902527000","name":"Michael Addis","type":"Person","_key":"56128"} +{"label":"Cheech & Chong's Next Movie","description":"Cheech must deal with losing his job, his angry neighbor, and trying to score with sexy Donna. Meanwhile, Chong meets Cheech's cousin Red and the two have a wild time in Hollywood with a big bag of buds and a cool Ferrari. Along the way they meet everyone from Pee Wee Herman to really cool aliens.","id":"13612","runtime":99,"imdbId":"tt0080520","trailer":"http:\/\/www.youtube.com\/watch?v=dxLqlmO9hyY","version":211,"lastModified":"1301902644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76d\/4d0913ca7b9aa101d400076d\/cheech-chong-s-next-movie-mid.jpg","genre":"Action","title":"Cheech & Chong's Next Movie","releaseDate":332726400000,"language":"en","type":"Movie","_key":"56129"} +{"label":"Evelyn Guerrero","version":24,"id":"25578","lastModified":"1301901997000","name":"Evelyn Guerrero","type":"Person","_key":"56130"} +{"label":"Betty Kennedy","version":20,"id":"86399","lastModified":"1301902525000","name":"Betty Kennedy","type":"Person","_key":"56131"} +{"label":"Day of the Dead","description":"Day of the Dead is a horror film which is nominally a quasi-remake of George A. Romero's classic zombie film of the same name, which was the third in Romero's Dead series. The film is directed by Steve Miner (who also directed Friday the 13th Part 2 & 3 and Halloween H20: 20 Years Later) and written by Jeffrey Reddick.","id":"13613","runtime":86,"imdbId":"tt0489018","trailer":"http:\/\/www.youtube.com\/watch?v=793","homepage":"http:\/\/www.dayofthedead.jp\/","version":169,"lastModified":"1301904619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c7\/4bc93e6f017a3c57fe01a4c7\/day-of-the-dead-mid.jpg","genre":"Horror","title":"Day of the Dead","releaseDate":1207612800000,"language":"en","tagline":"D-Day Is Coming.","type":"Movie","_key":"56132"} +{"label":"Katyn","description":"An examination of the Soviet slaughter of thousands of Polish officers and citizens in the Katyn forest in 1940.","id":"13614","runtime":118,"imdbId":"tt0879843","trailer":"http:\/\/www.youtube.com\/watch?v=9DrgSHIJXAQ","homepage":"http:\/\/katyn.netino.pl\/en\/","version":127,"lastModified":"1301904486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc93e70017a3c57fe01a4d9\/katyn-mid.jpg","studio":"Akson Studio","genre":"Drama","title":"Katyn","releaseDate":1190332800000,"language":"en","type":"Movie","_key":"56133"} +{"label":"Artur Zmijewski","version":21,"id":"82311","lastModified":"1301902140000","name":"Artur Zmijewski","type":"Person","_key":"56134"} +{"label":"Maja Ostaszewska","version":21,"id":"82312","lastModified":"1301901632000","name":"Maja Ostaszewska","type":"Person","_key":"56135"} +{"label":"Andrzej Chyra","version":26,"id":"82313","lastModified":"1301901942000","name":"Andrzej Chyra","type":"Person","_key":"56136"} +{"label":"Szabads\u00e1g, szerelem","description":"Children of Glory will commemorate Hungary's heroic Revolution of 1956, and takes place in Budapest and at the Melbourne Olympic Games in October and November of that year. While Soviet tanks were destroying Hungary, the Hungarian water polo team was winning over the Soviets in the Olympic pool in Melbourne, in what has been described as the bloodiest water polo match in history.","id":"13616","runtime":115,"imdbId":"tt0486219","homepage":"http:\/\/www.szabadsagszerelemafilm.hu\/","version":47,"lastModified":"1301907389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/174\/4c2faeb75e73d63ccb000174\/szabadsag-szerelem-mid.jpg","genre":"Drama","title":"Szabads\u00e1g, szerelem","releaseDate":1161561600000,"language":"en","type":"Movie","_key":"56137"} +{"label":"Iv\u00e1n Feny\u00f6","version":23,"id":"125444","lastModified":"1301902413000","name":"Iv\u00e1n Feny\u00f6","type":"Person","_key":"56138"} +{"label":"Mannen Som Elsket Yngve","description":"It's November 1989 and the world is changing, so is Jarle who attends Kongsg\u00e5rd HS in Stavanger. He plays the guitar\/lead singer in a local radical punkband, got a great girlfriend and has the coolest best friend. But its all about to change when Yngve enters the classroom.","id":"13617","runtime":90,"imdbId":"tt1114723","version":83,"lastModified":"1301902546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f3\/4bc93e72017a3c57fe01a4f3\/mannen-som-elsket-yngve-mid.jpg","studio":"Motlys","genre":"Drama","title":"Mannen Som Elsket Yngve","releaseDate":1203033600000,"language":"en","type":"Movie","_key":"56139"} +{"label":"Rolf Kristian Larsen","version":24,"id":"74718","lastModified":"1301904130000","name":"Rolf Kristian Larsen","type":"Person","_key":"56140"} +{"label":"Ole Christoffer Ertv\u00e5g","version":19,"id":"74719","lastModified":"1301902073000","name":"Ole Christoffer Ertv\u00e5g","type":"Person","_key":"56141"} +{"label":"Ida Elise Broch","version":20,"id":"74720","lastModified":"1301901870000","name":"Ida Elise Broch","type":"Person","_key":"56142"} +{"label":"Arthur Berning","version":24,"id":"74721","lastModified":"1301901869000","name":"Arthur Berning","type":"Person","_key":"56143"} +{"label":"Trine Wiggen","version":26,"id":"74723","lastModified":"1301901721000","name":"Trine Wiggen","type":"Person","_key":"56144"} +{"label":"Stian Kristiansen","version":21,"id":"74724","lastModified":"1301901991000","name":"Stian Kristiansen","type":"Person","_key":"56145"} +{"label":"Who's Your Daddy?","description":"No overview found.","id":"13618","runtime":105,"imdbId":"tt0287138","version":196,"lastModified":"1301903971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fc\/4bc93e72017a3c57fe01a4fc\/who-s-your-daddy-mid.jpg","genre":"Comedy","title":"Who's Your Daddy?","releaseDate":1106006400000,"language":"en","type":"Movie","_key":"56146"} +{"label":"Brandon Davis","version":20,"id":"74717","lastModified":"1301902073000","name":"Brandon Davis","type":"Person","_key":"56147"} +{"label":"Josh Jacobson","version":22,"id":"74722","lastModified":"1301901870000","name":"Josh Jacobson","type":"Person","_key":"56148"} +{"label":"Vuxna m\u00e4nniskor","description":"No overview found.","id":"13619","runtime":91,"imdbId":"tt0183992","version":47,"lastModified":"1300979667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/505\/4bc93e73017a3c57fe01a505\/vuxna-manniskor-mid.jpg","title":"Vuxna m\u00e4nniskor","releaseDate":938131200000,"language":"en","type":"Movie","_key":"56149"} +{"label":"Felix Herngren","version":23,"id":"74730","lastModified":"1301901811000","name":"Felix Herngren","type":"Person","_key":"56150"} +{"label":"Karin Bjurstr\u00f6m","version":20,"id":"74731","lastModified":"1301901811000","name":"Karin Bjurstr\u00f6m","type":"Person","_key":"56151"} +{"label":"Cecilia Ljung","version":21,"id":"74732","lastModified":"1301901780000","name":"Cecilia Ljung","type":"Person","_key":"56152"} +{"label":"K\u00e4lla Bie","version":20,"id":"74733","lastModified":"1301902328000","name":"K\u00e4lla Bie","type":"Person","_key":"56153"} +{"label":"Fredrik Lindstr\u00f6m","version":23,"id":"74734","lastModified":"1301901949000","name":"Fredrik Lindstr\u00f6m","type":"Person","_key":"56154"} +{"label":"Alvin Nystr\u00f6m","version":20,"id":"74735","lastModified":"1301902362000","name":"Alvin Nystr\u00f6m","type":"Person","_key":"56155"} +{"label":"Magnus H\u00e4renstam","version":31,"id":"74736","lastModified":"1301901647000","name":"Magnus H\u00e4renstam","type":"Person","_key":"56156"} +{"label":"Switch","description":"No overview found.","id":"13621","runtime":89,"imdbId":"tt1020996","version":105,"lastModified":"1301420840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51b\/4bc93e78017a3c57fe01a51b\/switch-mid.jpg","studio":"Rubicon Film AS","title":"Switch","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"56157"} +{"label":"Ole Martin Hafsmo","version":19,"id":"74737","lastModified":"1301902073000","name":"Ole Martin Hafsmo","type":"Person","_key":"56158"} +{"label":"Sebastian Stigar","version":19,"id":"74739","lastModified":"1301901721000","name":"Sebastian Stigar","type":"Person","_key":"56159"} +{"label":"Espen Klouman-H\u00f8iner","version":19,"id":"74738","lastModified":"1301902248000","name":"Espen Klouman-H\u00f8iner","type":"Person","_key":"56160"} +{"label":"Hilde Lyr\u00e5n","version":19,"id":"74740","lastModified":"1301902248000","name":"Hilde Lyr\u00e5n","type":"Person","_key":"56161"} +{"label":"Moritz in der Litfa\u00dfs\u00e4ule","description":"Der neunj\u00e4hrige Moritz bringt durch seine gr\u00fcndliche, aber langsame Denkweise Eltern, Geschwister und Lehrer zur Verzweiflung. Er rei\u00dft von zu Hause aus und wohnt in einer Litfa\u00dfs\u00e4ule. Eine sprechende Katze, ein M\u00e4dchen vom Zirkus und ein kluger Stra\u00dfenkehrer machen ihm klar, dass alle mehr Verst\u00e4ndnis f\u00fcreinander aufbringen m\u00fcssen.","id":"13622","runtime":88,"imdbId":"tt0085962","version":38,"lastModified":"1301908299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/528\/4bc93e79017a3c57fe01a528\/moritz-in-der-litfasaule-mid.jpg","studio":"DEFA","genre":"Comedy","title":"Moritz in der Litfa\u00dfs\u00e4ule","releaseDate":438739200000,"language":"en","type":"Movie","_key":"56162"} +{"label":"Dirk M\u00fcller","version":19,"id":"74743","lastModified":"1301901870000","name":"Dirk M\u00fcller","type":"Person","_key":"56163"} +{"label":"Dorit G\u00e4bler","version":19,"id":"37537","lastModified":"1301901721000","name":"Dorit G\u00e4bler","type":"Person","_key":"56164"} +{"label":"Rolf Losansky","version":21,"id":"74744","lastModified":"1301902073000","name":"Rolf Losansky","type":"Person","_key":"56165"} +{"label":"UFC 91: Couture vs. Lesnar","description":"It's the biggest fight in mixed martial arts history! 3-time UFC\u00ae Heavyweight Champ Randy \"The Natural\" Couture returns to the Octagon\u2122 and puts his title on the line against the biggest opponent of his career, wrestling powerhouse Brock Lesnar. Can the legend prevail? Or will a new hero rise?","id":"13623","runtime":0,"imdbId":"tt1372303","version":56,"lastModified":"1301906060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/539\/4bc93e7b017a3c57fe01a539\/ufc-91-couture-vs-lesnar-mid.jpg","title":"UFC 91: Couture vs. Lesnar","releaseDate":1226707200000,"language":"en","type":"Movie","_key":"56166"} +{"label":"Josh Hendricks","version":15,"id":"83501","lastModified":"1301902248000","name":"Josh Hendricks","type":"Person","_key":"56167"} +{"label":"UFC 90: Silva vs. Cote","description":"The best pound-for-pound fighter in the world comes to Chicago! After nearly 4 million people witnessed his stunning 1-minute victory over larger opponent James Irvin on Spike, Anderson \"The Spider\" Silva returns to the Octagon to defend the UFC Middleweight Title against French-Canadian contender Patrick \"The Predator\" Cote.","id":"13624","runtime":0,"imdbId":"tt1517802","version":93,"lastModified":"1301907267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/546\/4bc93e7c017a3c57fe01a546\/ufc-90-silva-vs-cote-mid.jpg","genre":"Sports Film","title":"UFC 90: Silva vs. Cote","releaseDate":1224892800000,"language":"en","type":"Movie","_key":"56168"} +{"label":"Gray Maynard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4c1df5717b9aa1295800000e\/gray-maynard-profile.jpg","version":41,"id":"83508","lastModified":"1301902546000","name":"Gray Maynard","type":"Person","_key":"56169"} +{"label":"Junior Dos Santos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fb\/4c1df0ca7b9aa117c80001fb\/junior-dos-santos-profile.jpg","version":25,"id":"83509","lastModified":"1301902171000","name":"Junior Dos Santos","type":"Person","_key":"56170"} +{"label":"Island of Lost Souls","description":"14-year-old Lulu moves to a small provincial town with her mother and younger brother. One night, her brother is struck by a beam of white light - actually the spirit of Herman Hartmann from the 19th-century. To her despair, Lulu realizes that Herman has possessed her brother, and the two of them are whirled into a fevered adventure.","id":"13626","runtime":100,"imdbId":"tt0466449","homepage":"http:\/\/www.fortabtesjaele.dk\/","version":102,"lastModified":"1301905628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55b\/4bc93e7d017a3c57fe01a55b\/de-fortabte-sjles-mid.jpg","studio":"Memfis Film","genre":"Action","title":"Island of Lost Souls","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"56171"} +{"label":"Nikolaj Arcel","version":41,"birthday":"83545200000","id":"74752","birthplace":"Copenhagen, Denmark","lastModified":"1301902193000","name":"Nikolaj Arcel","type":"Person","_key":"56172"} +{"label":"Sara Langeb\u00e6k Gaarmann","version":20,"id":"74753","lastModified":"1301902073000","name":"Sara Langeb\u00e6k Gaarmann","type":"Person","_key":"56173"} +{"label":"Lucas Munk Billing","version":20,"id":"74754","lastModified":"1301902073000","name":"Lucas Munk Billing","type":"Person","_key":"56174"} +{"label":"Lasse Borg","version":20,"id":"74755","lastModified":"1301901721000","name":"Lasse Borg","type":"Person","_key":"56175"} +{"label":"Beate Bille","version":22,"id":"74756","lastModified":"1301901721000","name":"Beate Bille","type":"Person","_key":"56176"} +{"label":"Frank Thiel","version":21,"id":"74757","lastModified":"1301901604000","name":"Frank Thiel","type":"Person","_key":"56177"} +{"label":"UFC 55: Fury","description":"Before a sold-out crowd at the Mohegan Sun Casino in Connecticut, UFC heavyweight champion Andrei Arlovoski defends his title against hard-hitting Mexican striker Paul Buentello.\n\nThe Undercard is highlighted by The Ultimate Fighter Season 1 winner Forrest Griffin as he takes on Australia's Elvis Sinosic. ","id":"13627","runtime":0,"imdbId":"tt0485284","version":80,"lastModified":"1301908543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56e\/4bc93e81017a3c57fe01a56e\/ufc-55-fury-mid.jpg","genre":"Sports Film","title":"UFC 55: Fury","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"56178"} +{"label":"Sean Gannon","version":20,"id":"86117","lastModified":"1301902988000","name":"Sean Gannon","type":"Person","_key":"56179"} +{"label":"Dennis Hallman","version":23,"id":"86118","lastModified":"1301902988000","name":"Dennis Hallman","type":"Person","_key":"56180"} +{"label":"Ron Faircloth","version":20,"id":"86121","lastModified":"1301903037000","name":"Ron Faircloth","type":"Person","_key":"56181"} +{"label":"UFC 54: Boiling Point","description":"UFC Light Heavyweight Champion Chuck Liddell makes his first title defense against the man who handed him his first ever defeat \u2013 Jeremy Horn. The undercard features the return of Randy \"The Natural\" Couture, the UFC debut of The Ultimate Fighter winner Diego Sanchez, and a highly anticipated welterweight match-up between Georges St. Pierre and Frank Trigg.","id":"13628","runtime":0,"imdbId":"tt0477121","version":86,"lastModified":"1301907755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/577\/4bc93e82017a3c57fe01a577\/ufc-54-boiling-point-mid.jpg","title":"UFC 54: Boiling Point","releaseDate":1124496000000,"language":"en","type":"Movie","_key":"56182"} +{"label":"Tra Telligman","version":23,"id":"85688","lastModified":"1301902324000","name":"Tra Telligman","type":"Person","_key":"56183"} +{"label":"Brian Gassaway","version":19,"id":"89225","lastModified":"1301902891000","name":"Brian Gassaway","type":"Person","_key":"56184"} +{"label":"Frank Trigg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a2a\/4c0a9b9f017a3c33d9000a2a\/frank-trigg-profile.jpg","version":25,"id":"86122","lastModified":"1301902350000","name":"Frank Trigg","type":"Person","_key":"56185"} +{"label":"Matt Lindland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a0\/4c1f7e877b9aa130a50000a0\/matt-lindland-profile.jpg","version":34,"id":"83572","lastModified":"1301902725000","name":"Matt Lindland","type":"Person","_key":"56186"} +{"label":"UFC 53: Heavy Hitters","description":"Andrei Arlovski puts his interim Heavyweight Championship on the line against Justin Eilers.\n\nThe undercard features a rematch for the UFC Middleweight Championship as Champion Evan Tanner defends this title against Rich Franklin.\n\nOther featured fighters include top ranked Forrest Griffin, Paul Buentello, Nate Quarry, David Loiseau, Nick Diaz and more.","id":"13629","runtime":0,"imdbId":"tt0478309","version":86,"lastModified":"1301907259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57c\/4bc93e82017a3c57fe01a57c\/ufc-53-heavy-hitters-mid.jpg","title":"UFC 53: Heavy Hitters","releaseDate":1117843200000,"language":"en","type":"Movie","_key":"56187"} +{"label":"Bill Mahood","version":19,"id":"89232","lastModified":"1301902891000","name":"Bill Mahood","type":"Person","_key":"56188"} +{"label":"Shonie Carter","version":27,"id":"89233","lastModified":"1301902465000","name":"Shonie Carter","type":"Person","_key":"56189"} +{"label":"Koji Oishi","version":21,"id":"89234","lastModified":"1301903036000","name":"Koji Oishi","type":"Person","_key":"56190"} +{"label":"United","description":"No overview found.","id":"13630","runtime":85,"imdbId":"tt0374308","version":159,"lastModified":"1301906463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/581\/4bc93e82017a3c57fe01a581\/united-mid.jpg","genre":"Comedy","title":"United","releaseDate":1061510400000,"language":"en","type":"Movie","_key":"56191"} +{"label":"MacGyver: Trail to Doomsday","description":"A close friend of MacGyver is murdered. In searching for a reason for this assassination MacGyver discovers a secret nuclear weapons plant right in the center of Britain.","id":"13632","runtime":93,"imdbId":"tt0110420","version":83,"lastModified":"1301906059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/586\/4bc93e82017a3c57fe01a586\/macgyver-trail-to-doomsday-mid.jpg","studio":"Gekko Film","genre":"Action","title":"MacGyver: Trail to Doomsday","releaseDate":785635200000,"language":"en","type":"Movie","_key":"56192"} +{"label":"Bob Sherman","version":21,"id":"74762","lastModified":"1301902248000","name":"Bob Sherman","type":"Person","_key":"56193"} +{"label":"Charles Correll","version":17,"id":"1822","lastModified":"1299493326000","name":"Charles Correll","type":"Person","_key":"56194"} +{"label":"Bad Boys","description":"Chicago crime kid Mick O'Brien has been sent to a juvenile prison for vehicular manslaughter. Most unfortunately, the person he kills is the kid brother of his nemesis Paco Moreno, who vows revenge by raping Mick's girlfriend. Paco is caught and sent to the same prison where he re-works his revenge plan, and Mick has no choice but to defend himself.","id":"13633","runtime":104,"imdbId":"tt0085210","version":329,"lastModified":"1301903261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58f\/4bc93e83017a3c57fe01a58f\/bad-boys-mid.jpg","studio":"EMI Films Ltd.","genre":"Crime","title":"Bad Boys","releaseDate":417398400000,"language":"en","type":"Movie","_key":"56195"} +{"label":"William M. Elvin","version":26,"id":"35664","lastModified":"1301901678000","name":"William M. Elvin","type":"Person","_key":"56196"} +{"label":"Katterli Frauenfelder","version":20,"id":"8275","lastModified":"1301901556000","name":"Katterli Frauenfelder","type":"Person","_key":"56197"} +{"label":"Pat Kehoe","version":20,"id":"74767","lastModified":"1301902302000","name":"Pat Kehoe","type":"Person","_key":"56198"} +{"label":"Thomas J. Mack","version":19,"id":"74768","lastModified":"1301902302000","name":"Thomas J. Mack","type":"Person","_key":"56199"} +{"label":"Bob Roe","version":19,"id":"74769","lastModified":"1301902302000","name":"Bob Roe","type":"Person","_key":"56200"} +{"label":"Jim Moody","version":20,"id":"74828","lastModified":"1301901580000","name":"Jim Moody","type":"Person","_key":"56201"} +{"label":"Eric Gurry","version":17,"id":"74829","lastModified":"1301902367000","name":"Eric Gurry","type":"Person","_key":"56202"} +{"label":"Robert Lee Rush","version":19,"id":"74830","lastModified":"1301902302000","name":"Robert Lee Rush","type":"Person","_key":"56203"} +{"label":"John Zenda","version":19,"id":"74831","lastModified":"1301902125000","name":"John Zenda","type":"Person","_key":"56204"} +{"label":"Tony Mockus Jr.","version":19,"id":"74832","lastModified":"1301902302000","name":"Tony Mockus Jr.","type":"Person","_key":"56205"} +{"label":"Erik Barefield","version":19,"id":"74833","lastModified":"1301902125000","name":"Erik Barefield","type":"Person","_key":"56206"} +{"label":"Dean Fortunato","version":19,"id":"74834","lastModified":"1301902125000","name":"Dean Fortunato","type":"Person","_key":"56207"} +{"label":"Lawrence Mah","version":20,"id":"74835","lastModified":"1301902177000","name":"Lawrence Mah","type":"Person","_key":"56208"} +{"label":"Jorge Noa","version":20,"id":"74836","lastModified":"1301902181000","name":"Jorge Noa","type":"Person","_key":"56209"} +{"label":"Ray Caballero","version":20,"id":"74837","lastModified":"1301902172000","name":"Ray Caballero","type":"Person","_key":"56210"} +{"label":"Martha De La Cruz","version":17,"id":"74838","lastModified":"1301902302000","name":"Martha De La Cruz","type":"Person","_key":"56211"} +{"label":"Ray Ramirez","version":21,"id":"74839","lastModified":"1301901310000","name":"Ray Ramirez","type":"Person","_key":"56212"} +{"label":"Andrew Gorman","version":19,"id":"74841","lastModified":"1301902302000","name":"Andrew Gorman","type":"Person","_key":"56213"} +{"label":"Marco A. David","version":19,"id":"74842","lastModified":"1301902302000","name":"Marco A. David","type":"Person","_key":"56214"} +{"label":"Don James","version":17,"id":"74843","lastModified":"1301902125000","name":"Don James","type":"Person","_key":"56215"} +{"label":"Fran Stone","version":19,"id":"74844","lastModified":"1301902125000","name":"Fran Stone","type":"Person","_key":"56216"} +{"label":"Omar S. Saunders","version":19,"id":"74845","lastModified":"1301902302000","name":"Omar S. Saunders","type":"Person","_key":"56217"} +{"label":"Kevin Springs","version":19,"id":"74846","lastModified":"1301902302000","name":"Kevin Springs","type":"Person","_key":"56218"} +{"label":"Eric David","version":19,"id":"74847","lastModified":"1301902302000","name":"Eric David","type":"Person","_key":"56219"} +{"label":"John San Juro","version":19,"id":"74848","lastModified":"1301902302000","name":"John San Juro","type":"Person","_key":"56220"} +{"label":"Adam Pelty","version":19,"id":"74849","lastModified":"1301902125000","name":"Adam Pelty","type":"Person","_key":"56221"} +{"label":"Robin Coleman","version":19,"id":"74850","lastModified":"1301902302000","name":"Robin Coleman","type":"Person","_key":"56222"} +{"label":"Marvin Townes","version":19,"id":"74851","lastModified":"1301902125000","name":"Marvin Townes","type":"Person","_key":"56223"} +{"label":"Bill Martin Jr.","version":19,"id":"74853","lastModified":"1301902302000","name":"Bill Martin Jr.","type":"Person","_key":"56224"} +{"label":"Myles O'Donnell","version":19,"id":"74854","lastModified":"1301902125000","name":"Myles O'Donnell","type":"Person","_key":"56225"} +{"label":"Edward Kearns","version":19,"id":"74855","lastModified":"1301902302000","name":"Edward Kearns","type":"Person","_key":"56226"} +{"label":"Brenda Joyce Minor","version":19,"id":"74856","lastModified":"1301902125000","name":"Brenda Joyce Minor","type":"Person","_key":"56227"} +{"label":"Richard Lee Padget","version":17,"id":"74857","lastModified":"1301902125000","name":"Richard Lee Padget","type":"Person","_key":"56228"} +{"label":"Peter Kirkpatrick","version":19,"id":"74858","lastModified":"1301902125000","name":"Peter Kirkpatrick","type":"Person","_key":"56229"} +{"label":"David Barrett","version":19,"id":"74859","lastModified":"1301902125000","name":"David Barrett","type":"Person","_key":"56230"} +{"label":"Aaron Holden","version":20,"id":"74771","lastModified":"1301902313000","name":"Aaron Holden","type":"Person","_key":"56231"} +{"label":"One Way Passage","description":"A terminally ill woman and a debonair murderer facing execution meet and fall in love on a trans-Pacific crossing, each without knowing the other's secret.","id":"13634","runtime":68,"imdbId":"tt0023305","version":52,"lastModified":"1301907449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/599\/4bc93e87017a3c57fe01a599\/one-way-passage-mid.jpg","genre":"Drama","title":"One Way Passage","releaseDate":-1177459200000,"language":"en","type":"Movie","_key":"56232"} +{"label":"Aline MacMahon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b4\/4be47d05017a3c35b70009b4\/aline-macmahon-profile.jpg","version":31,"id":"74874","lastModified":"1301901856000","name":"Aline MacMahon","type":"Person","_key":"56233"} +{"label":"Frank McHugh","version":42,"id":"74875","lastModified":"1301901702000","name":"Frank McHugh","type":"Person","_key":"56234"} +{"label":"Warren Hymer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/832\/4c6404ad7b9aa172dc000832\/warren-hymer-profile.jpg","version":28,"id":"74876","lastModified":"1301902211000","name":"Warren Hymer","type":"Person","_key":"56235"} +{"label":"Frederick Burton","version":22,"id":"74877","lastModified":"1301902145000","name":"Frederick Burton","type":"Person","_key":"56236"} +{"label":"Tay Garnett","version":36,"id":"74878","lastModified":"1301901587000","name":"Tay Garnett","type":"Person","_key":"56237"} +{"label":"Mesrine: Killer Instinct","description":"The early career (1959-\u201970) of outlaw Jacques Mesrine (Cassel), covering his military service in Algeria, apprenticeship with a Paris gang-lord (Depardieu), crime-spree partnership with soulmate Jeanne (De France) and escape from a tough Canadian prison.","id":"13635","runtime":113,"imdbId":"tt1259014","trailer":"http:\/\/www.youtube.com\/watch?v=2167","homepage":"http:\/\/www.mesrine-lefilm.com\/","version":169,"lastModified":"1301906250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5aa\/4bc93e88017a3c57fe01a5aa\/mesrine-l-instinct-de-mort-mid.jpg","studio":"Path\u00e9 Cin\u00e9ma","genre":"Action","title":"Mesrine: Killer Instinct","releaseDate":1224633600000,"language":"en","type":"Movie","_key":"56238"} +{"label":"Bigger Stronger Faster*","description":"In America, we define ourselves in the superlative: we are the biggest, strongest, fastest country in the world. Is it any wonder that so many of our heroes are on performance enhancing drugs? Director Christopher Bell explores America's win-at-all-cost culture by examining how his two brothers became members of the steroid-subculture in an effort to realize their American dream.","id":"13636","runtime":105,"imdbId":"tt1151309","trailer":"http:\/\/www.youtube.com\/watch?v=3KzGfuFFSxA","version":159,"lastModified":"1301903907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/981\/4d5873ef5e73d617b7010981\/bigger-stronger-faster-mid.jpg","genre":"Documentary","title":"Bigger Stronger Faster*","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"56239"} +{"label":"Chris Bell","version":23,"id":"78720","lastModified":"1301902248000","name":"Chris Bell","type":"Person","_key":"56240"} +{"label":"Sukiyaki Western Django","description":"A revolver-wielding stranger crosses paths with two warring clans who are both on the hunt for a hidden treasure in a remote western town. Knowing his services are valuable to either side, he offers himself to the clan who will offer up the largest share of the wealth.","id":"13637","runtime":121,"imdbId":"tt0906665","trailer":"http:\/\/www.youtube.com\/watch?v=794","homepage":"http:\/\/www.sukiyakimovie.com\/","version":281,"lastModified":"1301902457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5de\/4bc93e90017a3c57fe01a5de\/sukiyaki-western-django-mid.jpg","studio":"Dentsu Inc.","genre":"Action","title":"Sukiyaki Western Django","releaseDate":1189814400000,"language":"en","type":"Movie","_key":"56241"} +{"label":"Hideaki Ito","version":22,"id":"74861","lastModified":"1301901525000","name":"Hideaki Ito","type":"Person","_key":"56242"} +{"label":"The Letter for the King","description":"Tiuri, a sixteen year old shield-bearer, is in the middle of completing his final test to become a knight. Then he gets interrupted by a dieing knight who asks him to deliver an important letter to the king of Unauwen. Tiuri takes on this mission which leads him into a great adventure.","id":"13639","runtime":110,"imdbId":"tt0490377","trailer":"http:\/\/www.youtube.com\/watch?v=1959","homepage":"http:\/\/www.debriefvoordekoningdefilm.nl\/","version":68,"lastModified":"1301904227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/600\/4bc93e93017a3c57fe01a600\/de-brief-voor-de-koning-mid.jpg","genre":"Adventure","title":"The Letter for the King","releaseDate":1216166400000,"language":"en","type":"Movie","_key":"56243"} +{"label":"Yannick van de Velde","version":23,"id":"82453","lastModified":"1301901610000","name":"Yannick van de Velde","type":"Person","_key":"56244"} +{"label":"Quinten Schram","version":26,"id":"82454","lastModified":"1301901776000","name":"Quinten Schram","type":"Person","_key":"56245"} +{"label":"Daan Schuurmans","version":24,"id":"82456","lastModified":"1301901535000","name":"Daan Schuurmans","type":"Person","_key":"56246"} +{"label":"Victor Reinier","version":23,"id":"82459","lastModified":"1301901610000","name":"Victor Reinier","type":"Person","_key":"56247"} +{"label":"Superman: Doomsday","description":"When LexCorps accidentally unleash a murderous creature, Doomsday, Superman meets his greatest challenge as a champion. Based on the \"The Death of Superman\" storyline that appeared in DC Comics' publications in the 1990s.","id":"13640","runtime":75,"imdbId":"tt0934706","trailer":"http:\/\/www.youtube.com\/watch?v=795","homepage":"http:\/\/www.warnervideo.com\/supermandoomsdaydvd\/","version":237,"lastModified":"1301903053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60d\/4bc93e96017a3c57fe01a60d\/superman-doomsday-mid.jpg","studio":"Warner Bros. Animation","genre":"Action","title":"Superman: Doomsday","releaseDate":1190073600000,"language":"en","type":"Movie","_key":"56248"} +{"label":"Lauren Montgomery","version":33,"id":"74863","lastModified":"1302071629000","name":"Lauren Montgomery","type":"Person","_key":"56249"} +{"label":"Bruce W. Timm","version":27,"id":"34934","lastModified":"1301901381000","name":"Bruce W. Timm","type":"Person","_key":"56250"} +{"label":"The Air I Breathe","description":"A drama based on an ancient Chinese proverb that breaks life down into four emotional cornerstones: happiness, pleasure, sorrow and love. A businessman bets his life on a horse race; a gangster sees the future; a pop star (Gellar) falls prey to a crime boss; a doctor must save the love of his life.","id":"13641","runtime":95,"imdbId":"tt0485851","trailer":"http:\/\/www.youtube.com\/watch?v=1657","version":268,"lastModified":"1301902580000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62d\/4bc93e9d017a3c57fe01a62d\/the-air-i-breathe-mid.jpg","studio":"NALA Films","genre":"Drama","title":"The Air I Breathe","releaseDate":1177804800000,"language":"en","type":"Movie","_key":"56251"} +{"label":"Evan Parke","version":27,"id":"3493","lastModified":"1301901205000","name":"Evan Parke","type":"Person","_key":"56252"} +{"label":"Jieho Lee","version":31,"id":"74872","lastModified":"1301901535000","name":"Jieho Lee","type":"Person","_key":"56253"} +{"label":"The Very First Noel","description":"No overview found.","id":"13642","runtime":23,"imdbId":"tt0920478","homepage":"http:\/\/www.theveryfirstnoel.com\/","version":45,"lastModified":"1301905700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/636\/4bc93e9d017a3c57fe01a636\/the-very-first-noel-mid.jpg","studio":"Reel FX Creative Studios","genre":"Animation","title":"The Very First Noel","releaseDate":1162512000000,"language":"en","type":"Movie","_key":"56254"} +{"label":"Steve Twitchell","version":20,"id":"74865","lastModified":"1301901812000","name":"Steve Twitchell","type":"Person","_key":"56255"} +{"label":"Catherine Gilbert","version":20,"id":"74866","lastModified":"1301902175000","name":"Catherine Gilbert","type":"Person","_key":"56256"} +{"label":"Ernie Gilbert","version":20,"id":"74867","lastModified":"1301902177000","name":"Ernie Gilbert","type":"Person","_key":"56257"} +{"label":"Rod Goldfarb","version":20,"id":"74868","lastModified":"1301902177000","name":"Rod Goldfarb","type":"Person","_key":"56258"} +{"label":"Mike Krause","version":20,"id":"74869","lastModified":"1301902175000","name":"Mike Krause","type":"Person","_key":"56259"} +{"label":"Ben Chambers","version":20,"id":"74870","lastModified":"1301902145000","name":"Ben Chambers","type":"Person","_key":"56260"} +{"label":"Jonna Wiseman","version":20,"id":"74871","lastModified":"1301901780000","name":"Jonna Wiseman","type":"Person","_key":"56261"} +{"label":"George Carlin... It's Bad for Ya!","description":"It s Bad For Ya, Carlin s Emmy nominated 14th and final HBO special from March of 2008 features Carlin s noted irreverent and unapologetic observations on topics ranging from death, religion, bureaucracy, patriotism, overprotected children and big business to the pungent examinations of modern language and the decrepit state of the American culture.","id":"13643","runtime":70,"imdbId":"tt0963207","version":88,"lastModified":"1301905614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63f\/4bc93e9e017a3c57fe01a63f\/george-carlin-it-s-bad-for-ya-mid.jpg","studio":"Cable Stuff Productions","genre":"Comedy","title":"George Carlin... It's Bad for Ya!","releaseDate":1204329600000,"language":"en","type":"Movie","_key":"56262"} +{"label":"Rocco Urbisci","version":25,"id":"74881","lastModified":"1301902328000","name":"Rocco Urbisci","type":"Person","_key":"56263"} +{"label":"All I Want For Christmas","description":"Two New York City children who launch a hilarious scheme to get what they most want this holiday season.","id":"13644","runtime":92,"imdbId":"tt0101301","version":146,"lastModified":"1301902242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/648\/4bc93e9f017a3c57fe01a648\/all-i-want-for-christmas-mid.jpg","genre":"Comedy","title":"All I Want For Christmas","releaseDate":689558400000,"language":"en","tagline":"How far would you go to make a wish come true?","type":"Movie","_key":"56264"} +{"label":"African Bambi","description":"No overview found.","id":"13645","runtime":0,"imdbId":"tt0969216","version":47,"lastModified":"1301905982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/651\/4bc93e9f017a3c57fe01a651\/african-bambi-mid.jpg","title":"African Bambi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56265"} +{"label":"Aanrijding in Moscou","description":"Matty, a 41-year old mother of three with a husband in his midlife-crisis, meets 29-year old Johnny, a camion driver, who takes an interest in her.","id":"13646","runtime":102,"imdbId":"tt0948530","version":75,"lastModified":"1301905191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65a\/4bc93ea0017a3c57fe01a65a\/aanrijding-in-moscou-mid.jpg","genre":"Comedy","title":"Aanrijding in Moscou","releaseDate":1222905600000,"language":"en","type":"Movie","_key":"56266"} +{"label":"Christophe Van Rompaey","version":22,"id":"74887","lastModified":"1301901647000","name":"Christophe Van Rompaey","type":"Person","_key":"56267"} +{"label":"The Invincible Iron Man","description":"When a cocky industrialist's efforts to raise an ancient Chinese temple leads him to be seriously wounded and captured by enemy forces, he must use his ideas for a revolutionary power armor in order to fight back as a superhero.","id":"13647","runtime":83,"imdbId":"tt0903135","trailer":"http:\/\/www.youtube.com\/watch?v=796","homepage":"http:\/\/www.invincibleironmandvd.com\/","version":157,"lastModified":"1301902474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/667\/4bc93ea1017a3c57fe01a667\/the-invincible-iron-man-mid.jpg","studio":"Marvel Studios","genre":"Action","title":"The Invincible Iron Man","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"56268"} +{"label":"Resident Evil: Degeneration","description":"A zombie attack brings chaos to Harvardville Airport. Leon Kennedy and Claire Redfield , who fought the sinister Umbrella Corporation during the Raccoon City tragedy 7 years ago, are back. In high-octane Resident Evil style, they're ready to battle a rogue warrior who is seeking revenge after his family was killed in Raccoon City. The deadly G-Virus is unleashed and a new mutated monster rampages.","id":"13648","runtime":97,"imdbId":"tt1174954","homepage":"http:\/\/www.sonypictures.com\/homevideo\/residentevildegeneration","version":342,"lastModified":"1301901801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02e\/4cedf8115e73d6531500002e\/resident-evil-degeneration-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Resident Evil: Degeneration","releaseDate":1224288000000,"language":"en","type":"Movie","_key":"56269"} +{"label":"Makoto Kamiya","version":27,"id":"74950","lastModified":"1301901388000","name":"Makoto Kamiya","type":"Person","_key":"56270"} +{"label":"Alyson Court","version":31,"id":"74951","lastModified":"1301901224000","name":"Alyson Court","type":"Person","_key":"56271"} +{"label":"Paul Mercier","version":29,"id":"74953","lastModified":"1301901313000","name":"Paul Mercier","type":"Person","_key":"56272"} +{"label":"Laura Bailey","version":30,"id":"75037","lastModified":"1301901156000","name":"Laura Bailey","type":"Person","_key":"56273"} +{"label":"Roger Craig Smith","version":33,"id":"75038","lastModified":"1301901310000","name":"Roger Craig Smith","type":"Person","_key":"56274"} +{"label":"Crispin Freeman","version":28,"id":"75039","lastModified":"1301901437000","name":"Crispin Freeman","type":"Person","_key":"56275"} +{"label":"Salli Saffioti","version":27,"id":"81378","lastModified":"1301901634000","name":"Salli Saffioti","type":"Person","_key":"56276"} +{"label":"Michelle Ruff","version":27,"id":"81380","lastModified":"1301901763000","name":"Michelle Ruff","type":"Person","_key":"56277"} +{"label":"Michael McConnohie","version":39,"id":"81381","lastModified":"1301901803000","name":"Michael McConnohie","type":"Person","_key":"56278"} +{"label":"Kirk Thornton","version":31,"id":"81382","lastModified":"1301901775000","name":"Kirk Thornton","type":"Person","_key":"56279"} +{"label":"High School Musical 2","description":"Lava Springs Country Club, an exclusive resort, hires Wildcat basketball hero Troy Bolton, his genius girlfriend Gabriella Montez, and their two best friends for the summer. The parents of scheming Sharpay Evans own the resort, and she wields her remarkable power in an attempt to win Troy away from Gabriella. Eventually Troy must decide between a bright future with a scholarship, or true love.","id":"13649","runtime":104,"imdbId":"tt0810900","homepage":"http:\/\/www.disneychannel.com\/highschoolmusical2","version":132,"lastModified":"1301907308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69a\/4bc93ea7017a3c57fe01a69a\/high-school-musical-2-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"High School Musical 2","releaseDate":1187308800000,"language":"en","tagline":"They're facing their biggest challenge yet.......summer jobs.","type":"Movie","_key":"56280"} +{"label":"Delirious","description":"Les, a small-time celebrity photographer desperate to make it big, befriends Toby, a homeless young man with no direction except a vague desire to become an actor. When by chance Toby becomes romantically involved with K'Harma Leeds, the hottest pop star of the moment, Les grows jealous and plots revenge.","id":"13650","runtime":107,"imdbId":"tt0412637","trailer":"http:\/\/www.youtube.com\/watch?v=1481","version":124,"lastModified":"1301904138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a3\/4bc93ea8017a3c57fe01a6a3\/delirious-mid.jpg","studio":"Therma Production","genre":"Comedy","title":"Delirious","releaseDate":1159228800000,"language":"en","type":"Movie","_key":"56281"} +{"label":"Esperando La Carroza","description":"A lot of confusion and mixed situations between relatives in the middle of Mam\u00e1 Cora's wake, the grandma, who supposely commit suicide throwing herself in front of a train.","id":"13651","runtime":87,"imdbId":"tt0089108","trailer":"http:\/\/www.youtube.com\/watch?v=798","version":126,"lastModified":"1301903249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b1\/4bc93ea9017a3c57fe01a6b1\/esperando-la-carroza-mid.jpg","studio":"Rosafrey SRL","genre":"Comedy","title":"Esperando La Carroza","releaseDate":484185600000,"language":"en","type":"Movie","_key":"56282"} +{"label":"Alejandro Doria","version":22,"id":"74893","lastModified":"1301902248000","name":"Alejandro Doria","type":"Person","_key":"56283"} +{"label":"Luis Brandoni","version":20,"id":"74896","lastModified":"1301902248000","name":"Luis Brandoni","type":"Person","_key":"56284"} +{"label":"China Zorrilla","version":20,"id":"74897","lastModified":"1301901777000","name":"China Zorrilla","type":"Person","_key":"56285"} +{"label":"Antonio Gasalla","version":19,"id":"74898","lastModified":"1301902248000","name":"Antonio Gasalla","type":"Person","_key":"56286"} +{"label":"Julio De Grazia","version":20,"id":"74899","lastModified":"1301902316000","name":"Julio De Grazia","type":"Person","_key":"56287"} +{"label":"Betiana Blum","version":20,"id":"74900","lastModified":"1301902248000","name":"Betiana Blum","type":"Person","_key":"56288"} +{"label":"Juan Manuel Tenuta","version":20,"id":"74901","lastModified":"1301902073000","name":"Juan Manuel Tenuta","type":"Person","_key":"56289"} +{"label":"M\u00f3nica Villa","version":20,"id":"74902","lastModified":"1301902073000","name":"M\u00f3nica Villa","type":"Person","_key":"56290"} +{"label":"Enrique Pinti","version":19,"id":"74903","lastModified":"1301902248000","name":"Enrique Pinti","type":"Person","_key":"56291"} +{"label":"Cecilia Rossetto","version":20,"id":"74904","lastModified":"1301902074000","name":"Cecilia Rossetto","type":"Person","_key":"56292"} +{"label":"Andrea Tenuta","version":20,"id":"74905","lastModified":"1301901870000","name":"Andrea Tenuta","type":"Person","_key":"56293"} +{"label":"Lidia Catalano","version":20,"id":"74906","lastModified":"1301902248000","name":"Lidia Catalano","type":"Person","_key":"56294"} +{"label":"Ca$h","description":"A man meets up with two \"good guys\" to recover what is unlawfully his, taking them on his whirlwind ride, doing things they never would have imagined, just to survive.","id":"13652","runtime":100,"imdbId":"tt1002966","trailer":"http:\/\/www.youtube.com\/watch?v=942","homepage":"http:\/\/www.tfmdistribution.com\/cash\/","version":213,"lastModified":"1301902644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4d71ec3f5e73d6390f0000a3\/ca-h-mid.jpg","genre":"Comedy","title":"Ca$h","releaseDate":1208908800000,"language":"en","type":"Movie","_key":"56295"} +{"label":"Eric Besnard","version":33,"id":"72266","lastModified":"1301902300000","name":"Eric Besnard","type":"Person","_key":"56296"} +{"label":"Caroline Proust","version":33,"id":"76967","lastModified":"1301902073000","name":"Caroline Proust","type":"Person","_key":"56297"} +{"label":"The Aura","description":"In neo-noir fashion El Aura narrates in the first person the hallucinating voyage of Espinoza, a quiet, cynical taxidermist, who suffers epilepsy attacks, and is obsessed with committing the perfect crime.","id":"13653","runtime":134,"imdbId":"tt0420509","trailer":"http:\/\/www.youtube.com\/watch?v=Rw3lZzTy5QE","version":281,"lastModified":"1301903898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cb\/4bc93eaf017a3c57fe01a6cb\/el-aura-mid.jpg","studio":"Canal+ Espa\u00f1a","genre":"Action","title":"The Aura","releaseDate":1126742400000,"language":"en","type":"Movie","_key":"56298"} +{"label":"Fabi\u00e1n Bielinsky","version":28,"id":"74907","lastModified":"1301901534000","name":"Fabi\u00e1n Bielinsky","type":"Person","_key":"56299"} +{"label":"Dolores Fonzi","version":20,"id":"74909","lastModified":"1301901673000","name":"Dolores Fonzi","type":"Person","_key":"56300"} +{"label":"Pablo Cedr\u00f3n","version":19,"id":"74910","lastModified":"1301901535000","name":"Pablo Cedr\u00f3n","type":"Person","_key":"56301"} +{"label":"Jorge D'El\u00eda","version":19,"id":"74911","lastModified":"1301901870000","name":"Jorge D'El\u00eda","type":"Person","_key":"56302"} +{"label":"Alejandro Awada","version":20,"id":"74912","lastModified":"1301901721000","name":"Alejandro Awada","type":"Person","_key":"56303"} +{"label":"101 Dalmatians II - Patch's London Adventure","description":"A direct-to-video sequel Roger, Anita and their canine clan are packing for the big move to Dalmatian Plantation, a home in the country with plenty of room for the 101 pups and far from the clutches of Cruella DeVil. The feistiest pup, Patch, feels lost in a sea of spots and longs to be a one-of-a-kind wonderdog like his TV hero,.","id":"13654","runtime":70,"imdbId":"tt0324941","version":116,"lastModified":"1301901892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d9\/4bc93eb0017a3c57fe01a6d9\/101-dalmatians-ii-patch-s-london-adventure-mid.jpg","genre":"Animation","title":"101 Dalmatians II - Patch's London Adventure","releaseDate":1043107200000,"language":"en","type":"Movie","_key":"56304"} +{"label":"Brian Smith","version":20,"id":"137903","lastModified":"1301901981000","name":"Brian Smith","type":"Person","_key":"56305"} +{"label":"Camp Rock","description":"When Mitchie scores a job as a cook at Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself. Join the platinum-selling Jonas Brothers and the hottest cast of performers at the coolest summer camp anywhere! ","id":"13655","runtime":94,"imdbId":"tt1055366","homepage":"http:\/\/disneychannel.com\/camprock\/","version":107,"lastModified":"1301903888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e2\/4bc93eb0017a3c57fe01a6e2\/camp-rock-mid.jpg","genre":"Comedy","title":"Camp Rock","releaseDate":1213920000000,"language":"en","type":"Movie","_key":"56306"} +{"label":"Demi Lovato","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/301\/4cfd601a7b9aa15149004301\/demi-lovato-profile.jpg","version":33,"id":"85138","lastModified":"1301957662000","name":"Demi Lovato","type":"Person","_key":"56307"} +{"label":"Joe Jonas","version":25,"id":"85757","lastModified":"1301901412000","name":"Joe Jonas","type":"Person","_key":"56308"} +{"label":"Maria Canals-Barrera","version":23,"id":"85759","lastModified":"1301901780000","name":"Maria Canals-Barrera","type":"Person","_key":"56309"} +{"label":"Meaghan Martin","version":29,"id":"130567","lastModified":"1301901588000","name":"Meaghan Martin","type":"Person","_key":"56310"} +{"label":"Daniel Fathers","version":16,"id":"133327","lastModified":"1301902094000","name":"Daniel Fathers","type":"Person","_key":"56311"} +{"label":"Anna Maria Perez de Tagle","version":17,"id":"133328","lastModified":"1301902017000","name":"Anna Maria Perez de Tagle","type":"Person","_key":"56312"} +{"label":"Matthew Diamond","version":17,"id":"116370","lastModified":"1301902486000","name":"Matthew Diamond","type":"Person","_key":"56313"} +{"label":"Lebbis - W2P","description":"Lebbis kijkt naar de evolutie zoals nog nooit iemand naar de evolutie keek. Met weldoortimmerde opvattingen over vrouwen, godsdienst, fruit, varkens en, ja, zelfs de actualiteit moet eraan geloven. Waar gaan we heen als mensheid. En we zijn nog niet verloren, mits we naar Lebbis luisteren. Het is een programma vol eye-openers, humor, nog meer eye-openers en zelfs iets wat op een lied lijkt.","id":"13657","runtime":129,"version":17,"lastModified":"1301908543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f0\/4bc93eb1017a3c57fe01a6f0\/lebbis-w2p-mid.png","genre":"Comedy","title":"Lebbis - W2P","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56314"} +{"label":"Hans Sibbel","version":16,"id":"74915","lastModified":"1301902328000","name":"Hans Sibbel","type":"Person","_key":"56315"} +{"label":"Youp van 't Hek - Oeuvre volume 1","description":"Man vermist\n\nVerlopen en Verlaten\n\nTunnel zonder vluchtstrook\n\nHond op het ijs","id":"13659","runtime":405,"version":19,"lastModified":"1301908543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f9\/4bc93eb5017a3c57fe01a6f9\/youp-van-t-hek-oeuvre-volume-1-mid.jpg","genre":"Comedy","title":"Youp van 't Hek - Oeuvre volume 1","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56316"} +{"label":"Youp van 't Hek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/163\/4cd54eab5e73d676ce000163\/youp-van-t-hek-profile.jpg","version":34,"id":"74916","lastModified":"1301902145000","name":"Youp van 't Hek","type":"Person","_key":"56317"} +{"label":"Youp van 't Hek - Oeuvre volume 2","description":"Oudejaarsconference 1989\n\nAlles of nooit\n\nErgens in de verte\n\nSpelen met je leven","id":"13660","runtime":400,"version":15,"lastModified":"1301907388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/702\/4bc93eb5017a3c57fe01a702\/youp-van-t-hek-oeuvre-volume-2-mid.jpg","genre":"Comedy","title":"Youp van 't Hek - Oeuvre volume 2","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56318"} +{"label":"Youp van 't Hek - Oeuvre volume 3","description":"Oudejaarsconference 1995\n\nScherven\n\nDe Waker, De Slaper en De Dromer\n\nMond vol tanden - oudejaarsconference 1999","id":"13661","runtime":360,"version":16,"lastModified":"1301904469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70b\/4bc93eb6017a3c57fe01a70b\/youp-van-t-hek-oeuvre-volume-3-mid.jpg","genre":"Comedy","title":"Youp van 't Hek - Oeuvre volume 3","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56319"} +{"label":"Youp van 't Hek - Oeuvre volume 4","description":"De wereld draait door\n\nYoup speelt Youp - oudejaarsconference 2002","id":"13662","runtime":195,"version":14,"lastModified":"1301907388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/714\/4bc93eb7017a3c57fe01a714\/youp-van-t-hek-oeuvre-volume-4-mid.jpg","genre":"Comedy","title":"Youp van 't Hek - Oeuvre volume 4","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56320"} +{"label":"Youp van 't Hek - Oeuvre volume 5","description":"Allemaal unieke stukken televisie:\nzijn laatste programma met Cabaret Nar, een hele jonge Youp die Flappie zingt, een sketch voor twee heren met Adriaan van Dis, een Edison-uitreiking, zijn lunchpauzestuk Gebroken Glas, een alternatieve Elfstedentocht, een wandelingetje met Beatrix, Youp als zingende marskramer, een paar lange interviews met Sonja Barend en een documentaire over de voorbereidingen","id":"13663","runtime":270,"version":14,"lastModified":"1301904712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71d\/4bc93eb8017a3c57fe01a71d\/youp-van-t-hek-oeuvre-volume-5-mid.jpg","genre":"Comedy","title":"Youp van 't Hek - Oeuvre volume 5","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"56321"} +{"label":"Annabelle's Wish","description":"No overview found.","id":"13664","runtime":54,"imdbId":"tt0133372","version":103,"lastModified":"1301904262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/726\/4bc93ebb017a3c57fe01a726\/annabelle-s-wish-mid.jpg","title":"Annabelle's Wish","releaseDate":877910400000,"language":"en","type":"Movie","_key":"56322"} +{"label":"Arthur","description":"Arthur is the most quotable drunk millionaire that is likely to ever steal your heart. Dudley Moore portrays Arthur, a thirty year old child who will inherit 750 million dollars if he complies with his family's demands and marries the woman of their choosing.","id":"13665","runtime":97,"imdbId":"tt0082031","trailer":"http:\/\/www.youtube.com\/watch?v=D5gABBndg-w","version":137,"lastModified":"1301903297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4c9665d37b9aa10d5b000381\/arthur-mid.jpg","genre":"Comedy","title":"Arthur","releaseDate":364176000000,"language":"en","tagline":"Not everyone who drinks is a poet, some of us drink because we're not.","type":"Movie","_key":"56323"} +{"label":"Jill Eikenberry","version":21,"id":"44712","lastModified":"1301902325000","name":"Jill Eikenberry","type":"Person","_key":"56324"} +{"label":"Barney Martin","version":18,"id":"138235","lastModified":"1301902353000","name":"Barney Martin","type":"Person","_key":"56325"} +{"label":"Thomas Barbour","version":17,"id":"138236","lastModified":"1301902271000","name":"Thomas Barbour","type":"Person","_key":"56326"} +{"label":"Steve Gordon","version":25,"id":"122944","lastModified":"1301902505000","name":"Steve Gordon","type":"Person","_key":"56327"} +{"label":"The Wolf Man","description":"The Wolf Man is a classic horror about a man who returns home to his father after his brothers death, while staying with his father and trying to make amends with him he meets an array of new people and he seems to like it. But things take a turn for the worst when he is bitten by a werewolf and becomes one himself.","id":"13666","runtime":70,"imdbId":"tt0034398","trailer":"http:\/\/www.youtube.com\/watch?v=zTNQEd8D4pg","version":164,"lastModified":"1301983372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/738\/4bc93ebc017a3c57fe01a738\/the-wolf-man-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"The Wolf Man","releaseDate":-885340800000,"language":"en","type":"Movie","_key":"56328"} +{"label":"Warren William","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/065\/4bd5e646017a3c6589000065\/warren-william-profile.jpg","version":41,"id":"76974","lastModified":"1301983371000","name":"Warren William","type":"Person","_key":"56329"} +{"label":"George Waggner","version":38,"id":"30129","lastModified":"1301983372000","name":"George Waggner","type":"Person","_key":"56330"} +{"label":"Better Off Dead","description":"Lane Meyer is obsessed with his girlfriend Beth and is crushed when she falls for the new captain of the ski team, Roy. After several failed suicide attempts, narrow escapes from the relentless paper boy, and nearly unbearable dinners at home with his crazy family, Lane finds a new love in French exchange student Monique Junot. Meanwhile, he must beat Roy on the slopes to regain his honor.","id":"13667","runtime":97,"imdbId":"tt0088794","version":206,"lastModified":"1301903331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/291\/4ce8387c7b9aa17c8e000291\/better-off-dead-mid.jpg","genre":"Comedy","title":"Better Off Dead","releaseDate":497836800000,"language":"en","tagline":"I have been going to this high school for seven years... I'm no dummy.","type":"Movie","_key":"56331"} +{"label":"Kim Darby","version":35,"id":"15655","lastModified":"1301901347000","name":"Kim Darby","type":"Person","_key":"56332"} +{"label":"Demian Slade","version":23,"id":"87562","lastModified":"1301902465000","name":"Demian Slade","type":"Person","_key":"56333"} +{"label":"Scooter Stevens","version":21,"id":"87563","lastModified":"1301902634000","name":"Scooter Stevens","type":"Person","_key":"56334"} +{"label":"Diane Franklin","version":27,"id":"80137","lastModified":"1301901417000","name":"Diane Franklin","type":"Person","_key":"56335"} +{"label":"Curtis Armstrong","version":32,"id":"87003","lastModified":"1301901780000","name":"Curtis Armstrong","type":"Person","_key":"56336"} +{"label":"Brian Imada","version":21,"id":"87564","lastModified":"1301902891000","name":"Brian Imada","type":"Person","_key":"56337"} +{"label":"Savage Steve Holland","version":26,"id":"87565","lastModified":"1301902720000","name":"Savage Steve Holland","type":"Person","_key":"56338"} +{"label":"Catch and Release","description":"A woman struggles to accept the death of her fianc\u00e9 and the secrets he kept from her as she rebuilds her life. ","id":"13668","runtime":124,"imdbId":"tt0395495","version":279,"lastModified":"1301902996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4d2e6f275e73d63a5600f07f\/catch-and-release-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Catch and Release","releaseDate":1169769600000,"language":"en","type":"Movie","_key":"56339"} +{"label":"Susannah Grant","version":58,"id":"6340","lastModified":"1302065990000","name":"Susannah Grant","type":"Person","_key":"56340"} +{"label":"Christmas in Connecticut","description":"A magazine columnist totally devoid of the homemaking skills espoused in her column had better get some fast: her boss has invited himself and a recently returned war hero to her home for Christmas.","id":"13669","runtime":102,"imdbId":"tt0037595","trailer":"http:\/\/www.youtube.com\/watch?v=YVTF5XIpqL0","version":133,"lastModified":"1301904385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/758\/4bc93ec0017a3c57fe01a758\/christmas-in-connecticut-mid.jpg","genre":"Comedy","title":"Christmas in Connecticut","releaseDate":-769737600000,"language":"en","tagline":"It's the fun show that's the one show to see!","type":"Movie","_key":"56341"} +{"label":"Robert Shayne","version":35,"id":"34726","lastModified":"1301901424000","name":"Robert Shayne","type":"Person","_key":"56342"} +{"label":"Joyce Compton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9c\/4cc17be07b9aa138d5001a9c\/joyce-compton-profile.jpg","version":28,"id":"89725","lastModified":"1301902548000","name":"Joyce Compton","type":"Person","_key":"56343"} +{"label":"A Crude Awakening","description":"A theatrical documentary on the planet's dwindling oil resources. ","id":"13670","runtime":85,"imdbId":"tt0776794","version":85,"lastModified":"1301905269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/761\/4bc93ec1017a3c57fe01a761\/a-crude-awakening-mid.jpg","studio":"Lava Productions","genre":"Documentary","title":"A Crude Awakening","releaseDate":1141171200000,"language":"en","type":"Movie","_key":"56344"} +{"label":"Wade Adams","version":20,"id":"74917","lastModified":"1301902145000","name":"Wade Adams","type":"Person","_key":"56345"} +{"label":"Basil Gelpke","version":23,"id":"74918","lastModified":"1301902145000","name":"Basil Gelpke","type":"Person","_key":"56346"} +{"label":"Ray McCormack","version":23,"id":"74919","lastModified":"1301901562000","name":"Ray McCormack","type":"Person","_key":"56347"} +{"label":"Reto Caduff","version":23,"id":"74920","lastModified":"1301902145000","name":"Reto Caduff","type":"Person","_key":"56348"} +{"label":"The Music Man","description":"A con man comes to a Midwestern town with a scam using a boy's marching band program, but things don't go according to plan.","id":"13671","runtime":151,"imdbId":"tt0056262","version":142,"lastModified":"1301903812000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76a\/4bc93ec1017a3c57fe01a76a\/the-music-man-mid.jpg","genre":"Comedy","title":"The Music Man","releaseDate":-237859200000,"language":"en","type":"Movie","_key":"56349"} +{"label":"JCVD","description":"Between his tax problems and his legal battle with his wife for the custody of his daughter, these are hard times for the action movie star who finds that even Steven Seagal has pinched a role from him! Jean-Claude Van Damme returns to the country of his birth to seek the peace and tranquility he can no longer enjoy in the United States.","id":"13672","runtime":96,"imdbId":"tt1130988","homepage":"http:\/\/www.jcvd-themovie.com\/","version":214,"lastModified":"1301902208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/517\/4c74f3d25e73d66ff8000517\/jcvd-mid.jpg","studio":"Samsa Film","genre":"Action","title":"JCVD","releaseDate":1212537600000,"language":"en","tagline":"The Biggest Fight of His Life!","type":"Movie","_key":"56350"} +{"label":"Jean-Fran\u00e7ois Wolff","version":20,"id":"74922","lastModified":"1301901535000","name":"Jean-Fran\u00e7ois Wolff","type":"Person","_key":"56351"} +{"label":"Anne Paulicevich","version":20,"id":"74923","lastModified":"1301901721000","name":"Anne Paulicevich","type":"Person","_key":"56352"} +{"label":"Mabrouk El Mechri","version":21,"id":"74924","lastModified":"1301901811000","name":"Mabrouk El Mechri","type":"Person","_key":"56353"} +{"label":"Christmas with the Kranks","description":"Luther Krank is fed up with the commerciality of Christmas; he decides to skip the holiday and go on a vacation with his wife instead. But when his daughter decides at the last minute to come home, he must put together a holiday celebration.","id":"13673","runtime":99,"imdbId":"tt0388419","version":196,"lastModified":"1301904283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9a\/4d4b669b7b9aa13ab4006b9a\/christmas-with-the-kranks-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"Christmas with the Kranks","releaseDate":1101254400000,"language":"en","tagline":"No! Ho! Ho!","type":"Movie","_key":"56354"} +{"label":"Elizabeth Franz","version":19,"id":"138242","lastModified":"1301902522000","name":"Elizabeth Franz","type":"Person","_key":"56355"} +{"label":"Ren\u00e9 Lavan","version":15,"id":"148622","lastModified":"1301903083000","name":"Ren\u00e9 Lavan","type":"Person","_key":"56356"} +{"label":"Caroline Rhea","version":25,"id":"86905","lastModified":"1301902367000","name":"Caroline Rhea","type":"Person","_key":"56357"} +{"label":"Talegaver til b\u00f8rn 2007 - 15 \u00e5rs jubil\u00e6um","description":"No overview found.","id":"13674","runtime":118,"imdbId":"tt1515914","version":35,"lastModified":"1301908165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f8\/4ca69c4c5e73d643f00000f8\/talegaver-til-brn-2007-15-ars-jubilum-mid.jpg","studio":"FBI Aps (Funny Business Inc)","title":"Talegaver til b\u00f8rn 2007 - 15 \u00e5rs jubil\u00e6um","releaseDate":1198886400000,"language":"en","type":"Movie","_key":"56358"} +{"label":"Carsten Bang","version":22,"id":"74921","lastModified":"1301901830000","name":"Carsten Bang","type":"Person","_key":"56359"} +{"label":"Frosty the Snowman","description":"A living snowman and a little girl struggle to elude a greedy magician who is after the snowman's magic hat.","id":"13675","runtime":22,"imdbId":"tt0064349","version":92,"lastModified":"1301903255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e2\/4d4c34375e73d617b30015e2\/frosty-the-snowman-mid.jpg","genre":"Animation","title":"Frosty the Snowman","releaseDate":-2160000000,"language":"en","type":"Movie","_key":"56360"} +{"label":"Billy De Wolfe","version":21,"id":"110135","lastModified":"1301902550000","name":"Billy De Wolfe","type":"Person","_key":"56361"} +{"label":"Jackie Vernon","version":22,"id":"123893","lastModified":"1301902392000","name":"Jackie Vernon","type":"Person","_key":"56362"} +{"label":"The Little Mermaid III: Ariel's Beginning","description":"Follow Ariel's adventures before she gave up her fins for true love. When Ariel wasn't singing with her sisters, she spent time with her mother, Queen Athena. Ariel is devastated when Athena is kidnapped by pirates, and after King Triton outlaws all singing. Along with pals Flounder and Sebastian, Ariel sets off in hopes of changing her father's decision to ban music from the kingdom.","id":"13676","runtime":77,"imdbId":"tt0969647","version":153,"lastModified":"1301901653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4bc93ecc017a3c57fe01a7b5\/the-little-mermaid-ariel-s-beginning-mid.jpg","studio":"Walt Disney Studios Home Entertainment","genre":"Animation","title":"The Little Mermaid III: Ariel's Beginning","releaseDate":1219708800000,"language":"en","tagline":"Every Tale Has A Beginning, But Only One Begins Under The Sea","type":"Movie","_key":"56363"} +{"label":"Peggy Holmes","version":24,"id":"80672","lastModified":"1301901870000","name":"Peggy Holmes","type":"Person","_key":"56364"} +{"label":"The Last Trapper","description":"Au coeur des Montagnes Rocheuses, Norman vit avec Nebraska, une indienne Nahanni, et ses chiens de tra\u00eeneaux. D\u00e9connect\u00e9s des besoins cr\u00e9\u00e9s par la soci\u00e9t\u00e9 moderne, ils se nourrissent des produits de la chasse et de la p\u00eache.","id":"13678","runtime":94,"imdbId":"tt0395514","version":105,"lastModified":"1301904137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5db\/4d5db4ef5e73d60c5a0015db\/le-dernier-trappeur-mid.jpg","genre":"Documentary","title":"The Last Trapper","releaseDate":1102809600000,"language":"en","type":"Movie","_key":"56365"} +{"label":"Nicolas Vanier","version":20,"id":"139818","lastModified":"1301902541000","name":"Nicolas Vanier","type":"Person","_key":"56366"} +{"label":"Kirikou et les b\u00eates sauvages","description":"No overview found.","id":"13679","runtime":0,"imdbId":"tt0455142","version":56,"lastModified":"1301905269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58f\/4d42ce627b9aa15bb000458f\/kirikou-et-les-b-tes-sauvages-mid.jpg","title":"Kirikou et les b\u00eates sauvages","releaseDate":1133913600000,"language":"en","type":"Movie","_key":"56367"} +{"label":"The Game Plan","description":"NFL quarterback Joe Kingman was living the bachelor lifestyle when one day he discovers that he has a 8-year-old daughter from a previous relationship.","id":"13680","runtime":110,"imdbId":"tt0492956","trailer":"http:\/\/www.youtube.com\/watch?v=okZ4S4yjvlw","version":225,"lastModified":"1301902184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18c\/4d0bb4095e73d6373400018c\/the-game-plan-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"The Game Plan","releaseDate":1190505600000,"language":"en","type":"Movie","_key":"56368"} +{"label":"Madison Pettis","version":25,"id":"74929","lastModified":"1301901721000","name":"Madison Pettis","type":"Person","_key":"56369"} +{"label":"Hayes MacArthur","version":22,"id":"74930","lastModified":"1301901430000","name":"Hayes MacArthur","type":"Person","_key":"56370"} +{"label":"Jamal Duff","version":21,"id":"74931","lastModified":"1301902073000","name":"Jamal Duff","type":"Person","_key":"56371"} +{"label":"Robert Torti","version":22,"id":"74933","lastModified":"1301902073000","name":"Robert Torti","type":"Person","_key":"56372"} +{"label":"Jackie Flynn","version":21,"id":"74934","lastModified":"1301901721000","name":"Jackie Flynn","type":"Person","_key":"56373"} +{"label":"Lauren Storm","version":22,"id":"74935","lastModified":"1301902073000","name":"Lauren Storm","type":"Person","_key":"56374"} +{"label":"Places In The Heart","description":"No overview found.","id":"13681","runtime":111,"imdbId":"tt0087921","version":101,"lastModified":"1300979677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e1\/4bc93ed4017a3c57fe01a7e1\/places-in-the-heart-mid.jpg","genre":"Drama","title":"Places In The Heart","releaseDate":454896000000,"language":"en","type":"Movie","_key":"56375"} +{"label":"Pooh's Heffalump Movie","description":"Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.","id":"13682","runtime":68,"imdbId":"tt0407121","version":178,"lastModified":"1301902185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c8\/4d76a8fe7b9aa15c720001c8\/pooh-s-heffalump-movie-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Pooh's Heffalump Movie","releaseDate":1108080000000,"language":"en","tagline":"There's something new in the Hundred Acre Wood.","type":"Movie","_key":"56376"} +{"label":"Nikita Hopkins","version":26,"id":"90453","lastModified":"1301901779000","name":"Nikita Hopkins","type":"Person","_key":"56377"} +{"label":"Ken Sansom","version":41,"id":"77482","lastModified":"1301901462000","name":"Ken Sansom","type":"Person","_key":"56378"} +{"label":"Kyle Stanger","version":27,"id":"77484","lastModified":"1301901674000","name":"Kyle Stanger","type":"Person","_key":"56379"} +{"label":"Frank Nissen","version":29,"id":"73161","lastModified":"1301901780000","name":"Frank Nissen","type":"Person","_key":"56380"} +{"label":"Tarzan & Jane","description":"Sprightly amusement for kids of all ages, Disney's direct-to-video sequel to its animated hit sandwiches jungle derring-do and lots of silly sight gags between song and dance number. With the first anniversary of her wedding to Tarzan (voice of Michael T. Weiss) beckoning, Jane (Olivia D'Abo) ponders how to make it the perfect English celebration","id":"13683","runtime":75,"imdbId":"tt0313680","version":119,"lastModified":"1301902285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f7\/4bc93ed6017a3c57fe01a7f7\/tarzan-jane-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Animation","title":"Tarzan & Jane","releaseDate":1027382400000,"language":"en","type":"Movie","_key":"56381"} +{"label":"High School Musical","description":"No overview found.","id":"13684","title":"High School Musical","language":"en","lastModified":"1301009787000","version":311,"type":"Movie","_key":"56382"} +{"label":"Bottle Rocket","description":"Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a hair-brained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.","id":"13685","runtime":91,"imdbId":"tt0115734","version":138,"lastModified":"1301902940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4bce2714017a3c24c2000065\/bottle-rocket-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Bottle Rocket","releaseDate":824860800000,"language":"en","tagline":"They're not really criminals, but everyone's got to have a dream.","type":"Movie","_key":"56383"} +{"label":"Stephen Dignan","version":21,"id":"74939","lastModified":"1301901870000","name":"Stephen Dignan","type":"Person","_key":"56384"} +{"label":"Lumi Cavazos","version":24,"id":"74940","lastModified":"1301901509000","name":"Lumi Cavazos","type":"Person","_key":"56385"} +{"label":"The Kovak Box","description":"David Norton is used to being in control. As a best-selling author, he decides the fate of his characters, their lives and their deaths. But what happens when his fictional world becomes all too real?","id":"13686","runtime":102,"imdbId":"tt0455584","version":183,"lastModified":"1301906043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/816\/4bc93ed9017a3c57fe01a816\/the-kovak-box-mid.jpg","studio":"Castelao Producciones S.A.","genre":"Mystery","title":"The Kovak Box","releaseDate":1168560000000,"language":"en","type":"Movie","_key":"56386"} +{"label":"Luc\u00eda Jim\u00e9nez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f8\/4d036ddc5e73d621a50019f8\/lucia-jimenez-profile.jpg","version":33,"id":"74942","lastModified":"1301901301000","name":"Luc\u00eda Jim\u00e9nez","type":"Person","_key":"56387"} +{"label":"Daniel Monz\u00f3n","version":34,"id":"74943","lastModified":"1301901798000","name":"Daniel Monz\u00f3n","type":"Person","_key":"56388"} +{"label":"I Want Candy","description":"\"I Want Candy\" follows two hopeful lads from Leatherhead trying to break into the movies who stumble upon the opportunity of a lifetime. Frustrated by their arty film teacher (Mackenzie Crook), wannabe producer Joe (Tom Riley) and his talented but neurotic director friend Baggy (Tom Burke) head to London to sell what they know is a script made of gold.","id":"13687","runtime":85,"imdbId":"tt0791309","trailer":"http:\/\/www.youtube.com\/watch?v=Pek3H1DyBEI","version":240,"lastModified":"1301905954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/824\/4bc93eda017a3c57fe01a824\/i-want-candy-mid.jpg","studio":"BaggyJoe Productions","genre":"Comedy","title":"I Want Candy","releaseDate":1174608000000,"language":"en","type":"Movie","_key":"56389"} +{"label":"CJ7","description":"Ti, a really poor construction worker that struggles to keep his son, Dicky, in private school, mistakes an orb he finds in a junkjard for a toy his son heavily requested from him, since all of the classmates had it.","id":"13688","runtime":86,"imdbId":"tt0940709","version":155,"lastModified":"1301903487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/831\/4bc93edb017a3c57fe01a831\/cheung-gong-7-hou-mid.jpg","studio":"Columbia Pictures Film Production Asia","genre":"Comedy","title":"CJ7","releaseDate":1201651200000,"language":"en","type":"Movie","_key":"56390"} +{"label":"Lei Huang","version":32,"id":"74946","lastModified":"1301901426000","name":"Lei Huang","type":"Person","_key":"56391"} +{"label":"Kitty Zhang Yuqi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24c\/4cb475fa5e73d661c500024c\/kitty-zhang-yuqi-profile.jpg","biography":"Zhang was born in Shandong province. She left Shandong at age 15 to attend acting school in Shanghai.\nZhang appeared in a minor, uncredited role in the 2007 film The Longest Night in Shanghai. Stephen Chow first noticed her in an advertisement for Kentucky Fried Chicken, and chose her to play the female lead in CJ7. The role brought her her first major media attention, and because of Chow's tradition of starring alongside new actresses who later gain other major roles, Zhang has been called one ","version":39,"birthday":"523836000000","id":"74947","birthplace":"Shandong, China","lastModified":"1301901200000","name":"Kitty Zhang Yuqi","type":"Person","_key":"56392"} +{"label":"Peaceful Warrior","description":"A chance encounter with a stranger changes the life of a college gymnast.","id":"13689","runtime":120,"imdbId":"tt0438315","version":110,"lastModified":"1301904491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4bc93edf017a3c57fe01a844\/peaceful-warrior-mid.jpg","genre":"Drama","title":"Peaceful Warrior","releaseDate":1175212800000,"language":"en","type":"Movie","_key":"56393"} +{"label":"Tim DeKay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ebb\/4d27eeb57b9aa134dc001ebb\/tim-dekay-profile.jpg","version":27,"id":"76001","lastModified":"1301901526000","name":"Tim DeKay","type":"Person","_key":"56394"} +{"label":"B.J. Britt","version":17,"id":"133330","lastModified":"1301902666000","name":"B.J. Britt","type":"Person","_key":"56395"} +{"label":"Open Season 2","description":"Boog and Elliot are back for more crazy adventures! After falling head over hooves in love with Giselle, Elliot's road to the alter takes a detour when Mr Weenie is kidnapped by a group of pampered pets determined to return him to his owners. Boog, Elliot, McSqizzy and the rest of the woodland creatures launch a full-scale mission to rescue their friend and soon find themselves in enemy camp...","id":"13690","runtime":71,"imdbId":"tt1107365","trailer":"http:\/\/www.youtube.com\/watch?v=JA9tOSRyI3Y","version":238,"lastModified":"1301901433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4c7deb945e73d648de000054\/open-season-2-mid.jpg","studio":"Sony Pictures Animation","genre":"Adventure","title":"Open Season 2","releaseDate":1225929600000,"language":"en","tagline":"This time it's pets against wilds. Wiener takes all!","type":"Movie","_key":"56396"} +{"label":"Todd Wilderman","version":24,"id":"74948","lastModified":"1301902184000","name":"Todd Wilderman","type":"Person","_key":"56397"} +{"label":"Joel McHale","version":39,"id":"74949","lastModified":"1301901157000","name":"Joel McHale","type":"Person","_key":"56398"} +{"label":"Piglet's Big Movie","description":"When the gang from the Hundred Acre Wood begin a honey harvest, young Piglet is excluded and told that he is too small to help. Feeling inferior, Piglet disappears and his pals Eeyore, Rabbit, Tigger, Roo and Winnie the Pooh must use Piglet's scrapbook as a map to find him. In the process they discover that this very small animal has been a big hero in a lot of ways.","id":"13691","runtime":75,"imdbId":"tt0323642","version":133,"lastModified":"1301903276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4d8f8d8d7b9aa1676100255d\/piglet-s-big-movie-mid.jpg","genre":"Adventure","title":"Piglet's Big Movie","releaseDate":1058486400000,"language":"en","type":"Movie","_key":"56399"} +{"label":"Francis Glebas","version":25,"id":"74298","lastModified":"1301901647000","name":"Francis Glebas","type":"Person","_key":"56400"} +{"label":"August","description":"August is a 2008 drama film directed by Austin Chick and produced by 57th & Irving. The screenplay by Howard A. Rodman focuses on two brothers, ambitious dot-com entrepreneurs attempting to keep their company afloat as the stock market begins to collapse in August 2001, one month prior to the 9\/11 attacks.","id":"13692","runtime":88,"imdbId":"tt0470679","trailer":"http:\/\/www.youtube.com\/watch?v=1419","version":179,"lastModified":"1301906253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/428\/4d10d20d7b9aa11488000428\/august-mid.jpg","studio":"Original Media","genre":"Drama","title":"August","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"56401"} +{"label":"Ron Insana","version":20,"id":"74955","lastModified":"1301901721000","name":"Ron Insana","type":"Person","_key":"56402"} +{"label":"Marc Klee","version":20,"id":"74956","lastModified":"1301902073000","name":"Marc Klee","type":"Person","_key":"56403"} +{"label":"Andre Royo","version":28,"id":"74957","lastModified":"1301902247000","name":"Andre Royo","type":"Person","_key":"56404"} +{"label":"Athena Currey","version":21,"id":"74958","lastModified":"1301902175000","name":"Athena Currey","type":"Person","_key":"56405"} +{"label":"John Lavelle","version":20,"id":"74959","lastModified":"1301902073000","name":"John Lavelle","type":"Person","_key":"56406"} +{"label":"Sanjit De Silva","version":20,"id":"74960","lastModified":"1301901721000","name":"Sanjit De Silva","type":"Person","_key":"56407"} +{"label":"Jeremy Bobb","version":20,"id":"74961","lastModified":"1301902073000","name":"Jeremy Bobb","type":"Person","_key":"56408"} +{"label":"Carmine DiBenedetto","version":20,"id":"74962","lastModified":"1301902073000","name":"Carmine DiBenedetto","type":"Person","_key":"56409"} +{"label":"Austin Chick","version":29,"id":"53477","lastModified":"1301901849000","name":"Austin Chick","type":"Person","_key":"56410"} +{"label":"Dead Solid Perfect","description":"A second-string pro golfer desprate for his shot at success tours the country.","id":"13693","runtime":93,"imdbId":"tt0094965","version":67,"lastModified":"1301906109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05c\/4c318da37b9aa170f200005c\/dead-solid-perfect-mid.jpg","studio":"HBO Films","title":"Dead Solid Perfect","releaseDate":598406400000,"language":"en","type":"Movie","_key":"56411"} +{"label":"Corinne Bohrer","version":24,"id":"74954","lastModified":"1301901689000","name":"Corinne Bohrer","type":"Person","_key":"56412"} +{"label":"Angels With Dirty Faces","description":"In New York, the boys Rocky Sullivan and Jerry Connelly are best friends and small time thieves. After a robbery, Rocky is arrested and sent to a reformatory school, where he begins his criminal career. Jerry escapes and later becomes a priest. After three years in prison, Rocky is released and demands the return of $100,000 deposited with his Solicitor - prior to his jail term.","id":"13696","runtime":97,"imdbId":"tt0029870","version":98,"lastModified":"1302038652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/882\/4bc93ee4017a3c57fe01a882\/angels-with-dirty-faces-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Angels With Dirty Faces","releaseDate":-981417600000,"language":"en","type":"Movie","_key":"56413"} +{"label":"Ann Sheridan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4bd6f736017a3c21e90000ee\/ann-sheridan-profile.jpg","version":41,"id":"80994","lastModified":"1301901411000","name":"Ann Sheridan","type":"Person","_key":"56414"} +{"label":"Grand Canyon","description":"Grand Canyon revolved around six residents from different backgrounds whose lives intertwine in modern-day Los Angeles. At the center of the film is the unlikely friendship of two men from different races and classes brought together when one finds himself in jeopardy in the other's rough neighborhood.","id":"13697","runtime":134,"imdbId":"tt0101969","version":116,"lastModified":"1301904805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88b\/4bc93ee5017a3c57fe01a88b\/grand-canyon-mid.jpg","genre":"Drama","title":"Grand Canyon","releaseDate":663465600000,"language":"en","type":"Movie","_key":"56415"} +{"label":"Gung Ho","description":"When a American car manufacturer is purchased by a Japanese firm a clash of cultures occurs as the Japanese work ethic is pushed through out the plant.","id":"13698","runtime":111,"imdbId":"tt0091159","trailer":"http:\/\/www.youtube.com\/watch?v=T8aQf6zdsG4","version":103,"lastModified":"1301417520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/894\/4bc93ee6017a3c57fe01a894\/gung-ho-mid.jpg","genre":"Comedy","title":"Gung Ho","releaseDate":508723200000,"language":"en","type":"Movie","_key":"56416"} +{"label":"Sab Shimono","version":25,"id":"85500","lastModified":"1301902323000","name":"Sab Shimono","type":"Person","_key":"56417"} +{"label":"Patti Yasutake","version":22,"id":"129464","lastModified":"1301902994000","name":"Patti Yasutake","type":"Person","_key":"56418"} +{"label":"Dennis Sakamoto","version":22,"id":"129465","lastModified":"1301902993000","name":"Dennis Sakamoto","type":"Person","_key":"56419"} +{"label":"James Ritz","version":22,"id":"129466","lastModified":"1301903031000","name":"James Ritz","type":"Person","_key":"56420"} +{"label":"Dock P. Ellis Jr.","version":22,"id":"129467","lastModified":"1301903029000","name":"Dock P. Ellis Jr.","type":"Person","_key":"56421"} +{"label":"Richard M. McNally","version":22,"id":"129468","lastModified":"1301902993000","name":"Richard M. McNally","type":"Person","_key":"56422"} +{"label":"The Happy Elf","description":"The Happy Elf is a 3D-animated family holiday special & centres on the lovable character Eubie the Elf, whose quest is to bring Christmas joy to an entire town of naughty children in a gloomy little town called Bluesville.","id":"13699","runtime":45,"imdbId":"tt0492460","version":109,"lastModified":"1301905821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a2\/4bc93eea017a3c57fe01a8a2\/the-happy-elf-mid.jpg","studio":"Film Roman Productions","genre":"Animation","title":"The Happy Elf","releaseDate":1133481600000,"language":"en","type":"Movie","_key":"56423"} +{"label":"John Rice","version":17,"id":"93883","lastModified":"1301901994000","name":"John Rice","type":"Person","_key":"56424"} +{"label":"Home on the Range","description":"The Little Piece of Heaven family farm is about to go under and outlaw cattle rustler Alameda Slim sets his sights on it. Three dairy cows -- tough Maggie, leader Mrs. Calloway, and na\u00efve Grace -- team up to save the farm. Along with ambitious stallion Buck, helpful rabbit Lucky Jack, and other helpful barnyard friends, the cows set out to capture Alameda Slim and collect the reward money.","id":"13700","runtime":76,"imdbId":"tt0299172","trailer":"http:\/\/www.youtube.com\/watch?v=ZuTQR6xSbNM","homepage":"http:\/\/disney.go.com\/disneyvideos\/animatedfilms\/homeontherange","version":206,"lastModified":"1301902016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0de\/4d879f187b9aa137c80000de\/home-on-the-range-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Home on the Range","releaseDate":1080864000000,"language":"en","tagline":"Bust a Moo.","type":"Movie","_key":"56425"} +{"label":"Charles Dennis","version":24,"id":"43800","lastModified":"1301901513000","name":"Charles Dennis","type":"Person","_key":"56426"} +{"label":"Will Finn","version":29,"id":"70287","lastModified":"1301901966000","name":"Will Finn","type":"Person","_key":"56427"} +{"label":"John Sanford","version":25,"id":"80671","lastModified":"1301901966000","name":"John Sanford","type":"Person","_key":"56428"} +{"label":"Immortal Beloved","description":"The life and death of the legendary Ludwig van Beethoven. Beside all the work he is known for, the composer once wrote a famous love letter to a nameless beloved and the movie tries to find out who this beloved was. Not easy as Beethoven has had many women in his life.","id":"13701","runtime":121,"imdbId":"tt0110116","trailer":"http:\/\/www.youtube.com\/watch?v=2076","version":223,"lastModified":"1301903204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bd\/4bc93eed017a3c57fe01a8bd\/immortal-beloved-mid.jpg","studio":"icon","genre":"Documentary","title":"Immortal Beloved","releaseDate":787536000000,"language":"en","type":"Movie","_key":"56429"} +{"label":"A Dirty Shame","description":"Sylvia Stickles, grumpy, repressed and middle-aged, doesn't like sex. Her handsome husband Vaughn still has marital urges, but Sylvia couldn't be less interested. She is in complete contrast to her exhibitionist daughter, Caprice, a go-go dancer wit stupendously enlarged breasts. Everything changes when Sylvia is involved in a freak accident and receives a head injury.","id":"13702","runtime":89,"imdbId":"tt0365125","trailer":"http:\/\/www.youtube.com\/watch?v=805","homepage":"http:\/\/www.newline.com\/properties\/dirtyshamea.html","version":213,"lastModified":"1301904058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc93ef3017a3c57fe01a8da\/a-dirty-shame-mid.jpg","studio":"This Is That Productions","genre":"Comedy","title":"A Dirty Shame","releaseDate":1095984000000,"language":"en","type":"Movie","_key":"56430"} +{"label":"Patricia Hearst","version":19,"id":"77242","lastModified":"1301901870000","name":"Patricia Hearst","type":"Person","_key":"56431"} +{"label":"Nicholas E.I. Noble","version":19,"id":"77243","lastModified":"1301901870000","name":"Nicholas E.I. Noble","type":"Person","_key":"56432"} +{"label":"Lucy Newman-Williams","version":19,"id":"77244","lastModified":"1301901869000","name":"Lucy Newman-Williams","type":"Person","_key":"56433"} +{"label":"Scott Morgan","version":19,"id":"77245","lastModified":"1301901869000","name":"Scott Morgan","type":"Person","_key":"56434"} +{"label":"Wes Johnson","version":19,"id":"77246","lastModified":"1301901869000","name":"Wes Johnson","type":"Person","_key":"56435"} +{"label":"David A. Dunham","version":19,"id":"77247","lastModified":"1301901869000","name":"David A. Dunham","type":"Person","_key":"56436"} +{"label":"David Moretti","version":21,"id":"77248","lastModified":"1301901529000","name":"David Moretti","type":"Person","_key":"56437"} +{"label":"Jeffrey Auerbach","version":19,"id":"77249","lastModified":"1301901869000","name":"Jeffrey Auerbach","type":"Person","_key":"56438"} +{"label":"Less Than Zero","description":"Clay, an eighteen-year-old freshman, comes back from his first term at a college in New Hampshire to spend his Christmas vacation with his broken-up wealthy family in Los Angeles. His former girlfriend, Blair, is now involved with his ex-best-friend, Julian. She warns Clay that Julian needs help: he is using a lot of cocaine and has huge debts. What follows is a look at the youth culture of wealth","id":"13703","runtime":98,"imdbId":"tt0093407","version":134,"lastModified":"1301905143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/901\/4bc93ef9017a3c57fe01a901\/less-than-zero-mid.jpg","genre":"Drama","title":"Less Than Zero","releaseDate":563155200000,"language":"en","type":"Movie","_key":"56439"} +{"label":"Marek Kanievska","version":24,"id":"78523","lastModified":"1301901942000","name":"Marek Kanievska","type":"Person","_key":"56440"} +{"label":"License to Drive","description":"A teen decides to go for a night on the town with his friends despite flunking his driver's test","id":"13704","runtime":88,"imdbId":"tt0095519","version":143,"lastModified":"1301963530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ef\/4ccaeb737b9aa16b9b0004ef\/license-to-drive-mid.jpg","studio":"Davis Entertainment","genre":"Comedy","title":"License to Drive","releaseDate":584150400000,"language":"en","type":"Movie","_key":"56441"} +{"label":"The Christmas Star","description":"No overview found.","id":"13705","runtime":0,"imdbId":"tt0090840","version":94,"lastModified":"1301908036000","genre":"Family","title":"The Christmas Star","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56442"} +{"label":"Winnie the Pooh: A Very Merry Pooh Year","description":"It's Christmastime in the Hundred Acre Wood and all of the gang is getting ready with presents and decorations. The gang makes a list of what they want for Christmas and send it to Santa Claus - except that Pooh forgot to ask for something. So he heads out to retrieve the letter and get it to Santa by Christmas...which happens to be tomorrow!","id":"13706","runtime":65,"imdbId":"tt0324572","version":85,"lastModified":"1301902789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/924\/4bc93efd017a3c57fe01a924\/winnie-the-pooh-a-very-merry-pooh-year-mid.jpg","genre":"Animation","title":"Winnie the Pooh: A Very Merry Pooh Year","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"56443"} +{"label":"The Vagabond","description":"After passing the hat and taking the donations intended for German street musicians Charlie heads for the country. Here he finds and rescues a girl from a band of gypsies. The girl falls in love with an artist whose portrait is later seen in a shop by the girl's real mother. The mother and the artist arrive in a chauffeured auto and offer Charlie money for his services, money which he rejects.","id":"13707","runtime":24,"imdbId":"tt0007507","version":69,"lastModified":"1301903708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/929\/4bc93efe017a3c57fe01a929\/the-vagabond-mid.jpg","studio":"Lone Star Corporation","genre":"Comedy","title":"The Vagabond","releaseDate":-1687651200000,"language":"en","type":"Movie","_key":"56444"} +{"label":"Imposture","description":"No overview found.","id":"13708","runtime":101,"imdbId":"tt0261759","version":63,"lastModified":"1301908609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/937\/4bc93eff017a3c57fe01a937\/imposture-mid.png","title":"Imposture","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"56445"} +{"label":"Dans la vie","description":"No overview found.","id":"13709","runtime":0,"imdbId":"tt1097224","version":129,"lastModified":"1301907750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/945\/4bc93f00017a3c57fe01a945\/dans-la-vie-mid.png","title":"Dans la vie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56446"} +{"label":"Enfin veuve","description":"Anne-Marie vient de perdre son mari dans un accident de voiture.\nElle est enfin libre d'aimer celui qu'elle voit en cachette depuis deux ans. Mais elle n'a pas pr\u00e9vu que sa famille, p\u00e9trie de bons sentiments, a d\u00e9cid\u00e9 de rester \u00e0 ses c\u00f4t\u00e9s pour la soutenir dans son chagrin.\nAnne-Marie se retrouve alors encore plus prisonni\u00e8re que lorsqu'elle \u00e9tait mari\u00e9e ...","id":"13710","runtime":94,"imdbId":"tt1024899","version":64,"lastModified":"1301907258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/952\/4bc93f02017a3c57fe01a952\/enfin-veuve-mid.png","studio":"Gaumont","genre":"Comedy","title":"Enfin veuve","releaseDate":1200441600000,"language":"en","type":"Movie","_key":"56447"} +{"label":"L'amour aux trousses","description":"Deux flics de la brigade des stups partagent tout, mais Franck va trahir la confiance de Paul en entretenant une liaison avec sa femme. Alors qu'ils sont envoy\u00e9s sur une mission dangereuse, ce dernier d\u00e9couvre la v\u00e9rit\u00e9...","id":"13711","runtime":93,"imdbId":"tt0423814","version":63,"lastModified":"1301908087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c44\/4d5af2a45e73d65e99000c44\/l-amour-aux-trousses-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"L'amour aux trousses","releaseDate":1120003200000,"language":"en","type":"Movie","_key":"56448"} +{"label":"Pascal Elb\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af0\/4d5aea5c5e73d65e87000af0\/pascal-elb-profile.jpg","version":25,"id":"136862","lastModified":"1301902727000","name":"Pascal Elb\u00e9","type":"Person","_key":"56449"} +{"label":"Philippe de Chauveron","version":10,"id":"225142","lastModified":"1301904015000","name":"Philippe de Chauveron","type":"Person","_key":"56450"} +{"label":"Incontr\u00f4lable","description":"Imaginez. Un beau matin, votre corps d\u00e9cide de ne plus vous ob\u00e9ir. Pire, il n'en fait qu'\u00e0 sa t\u00eate, prend un malin plaisir \u00e0 vous mettre dans les situations les plus humiliantes, et passe son temps \u00e0 vous vanner avec la voix de l'\u00e2ne de Shrek ! Cet \u00e9trange ph\u00e9nom\u00e8ne, c'est ce qui arrive au pauvre Georges, devenu incontr\u00f4lable bien malgr\u00e9 lui...","id":"13712","runtime":91,"imdbId":"tt0456070","version":88,"lastModified":"1301906023000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4ce7b22b5e73d6258e0001df\/incontrolable-mid.jpg","genre":"Comedy","title":"Incontr\u00f4lable","releaseDate":1139356800000,"language":"en","type":"Movie","_key":"56451"} +{"label":"Micha\u00ebl Youn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8c4\/4d1d04b17b9aa17a8f0008c4\/micha-l-youn-profile.jpg","biography":"Micha\u00ebl Youn, de son vrai nom Micha\u00ebl Benayoun (n\u00e9 le 2 d\u00e9cembre 1973 \u00e0 Suresnes), est un animateur de radio et de t\u00e9l\u00e9vision, chanteur, acteur et humoriste fran\u00e7ais.","version":51,"birthday":"123634800000","id":"82304","birthplace":"Suresnes","lastModified":"1301901168000","name":"Micha\u00ebl Youn","type":"Person","_key":"56452"} +{"label":"H\u00e9l\u00e8ne de Fougerolles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7e\/4d1b9ee55e73d6082e00ba7e\/h-l-ne-de-fougerolles-profile.jpg","version":48,"id":"76827","lastModified":"1301901579000","name":"H\u00e9l\u00e8ne de Fougerolles","type":"Person","_key":"56453"} +{"label":"Jean-Philippe","description":"No overview found.","id":"13713","runtime":0,"imdbId":"tt0477988","version":65,"lastModified":"1302024206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96c\/4bc93f09017a3c57fe01a96c\/jean-philippe-mid.jpg","genre":"Comedy","title":"Jean-Philippe","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56454"} +{"label":"Jackie Berroyer","version":17,"id":"150817","lastModified":"1301903128000","name":"Jackie Berroyer","type":"Person","_key":"56455"} +{"label":"Laurent Tuel","version":27,"id":"78489","lastModified":"1301901608000","name":"Laurent Tuel","type":"Person","_key":"56456"} +{"label":"At Close Range","description":"Based upon the true story of Bruce Johnston Sr., his son, and his brothers; together, they constituted one of suburban Philadelphia's most notorious crime families during the 1970's. Their criminal activities ranged from burglary, theft... and ultimately, murder.","id":"13715","runtime":111,"imdbId":"tt0090670","trailer":"http:\/\/www.youtube.com\/watch?v=W84Jji0FyDk","version":229,"lastModified":"1301903847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c6\/4d094f717b9aa101e40008c6\/at-close-range-mid.jpg","studio":"Hemdale Film Corporation","genre":"Crime","title":"At Close Range","releaseDate":514166400000,"language":"en","type":"Movie","_key":"56457"} +{"label":"Frank Capra III","version":29,"id":"57077","lastModified":"1301901731000","name":"Frank Capra III","type":"Person","_key":"56458"} +{"label":"Ric Kidney","version":45,"id":"49831","lastModified":"1301901554000","name":"Ric Kidney","type":"Person","_key":"56459"} +{"label":"Jake Dengel","version":24,"id":"75019","lastModified":"1301902048000","name":"Jake Dengel","type":"Person","_key":"56460"} +{"label":"Noelle Parker","version":24,"id":"75021","lastModified":"1301902207000","name":"Noelle Parker","type":"Person","_key":"56461"} +{"label":"Alan Autry","version":22,"id":"75022","lastModified":"1301902073000","name":"Alan Autry","type":"Person","_key":"56462"} +{"label":"Gary Gober","version":21,"id":"75023","lastModified":"1301902247000","name":"Gary Gober","type":"Person","_key":"56463"} +{"label":"Marshall Fallwell Jr.","version":21,"id":"75024","lastModified":"1301902247000","name":"Marshall Fallwell Jr.","type":"Person","_key":"56464"} +{"label":"Nancy Sherburne","version":21,"id":"75025","lastModified":"1301902247000","name":"Nancy Sherburne","type":"Person","_key":"56465"} +{"label":"Terry Baker","version":21,"id":"75026","lastModified":"1301902247000","name":"Terry Baker","type":"Person","_key":"56466"} +{"label":"Michael Edwards","version":21,"id":"75027","lastModified":"1301902247000","name":"Michael Edwards","type":"Person","_key":"56467"} +{"label":"Myke R. Mueller","version":21,"id":"75028","lastModified":"1301902247000","name":"Myke R. Mueller","type":"Person","_key":"56468"} +{"label":"Bob McDivitt","version":21,"id":"75029","lastModified":"1301902247000","name":"Bob McDivitt","type":"Person","_key":"56469"} +{"label":"Bonita Hall","version":21,"id":"75030","lastModified":"1301902247000","name":"Bonita Hall","type":"Person","_key":"56470"} +{"label":"Terri Coulter","version":21,"id":"75031","lastModified":"1301902247000","name":"Terri Coulter","type":"Person","_key":"56471"} +{"label":"Janie Draper","version":21,"id":"75032","lastModified":"1301902247000","name":"Janie Draper","type":"Person","_key":"56472"} +{"label":"Charles 'Tatoo' Jensen","version":21,"id":"75033","lastModified":"1301902247000","name":"Charles 'Tatoo' Jensen","type":"Person","_key":"56473"} +{"label":"E.R. Davies","version":21,"id":"75034","lastModified":"1301902247000","name":"E.R. Davies","type":"Person","_key":"56474"} +{"label":"The Many Adventures of Winnie the Pooh","description":"Join dear friends Pooh, Piglet, Kanga, Roo, Owl, Rabbit, Tigger and Christopher Robin as they enjoy their days together and sing their way through escapades that include honey, bees, bouncing, balloons, floods, Pooh sticks and more. This collection of classic Disney shorts based on A.A. Milne's characters includes \"Winnie the Pooh and the Honey Tree,\" \"Winnie the Pooh and the Blustery Day\" and \"Winnie the Pooh and Tigger Too!\"","id":"13716","runtime":74,"imdbId":"tt0076363","trailer":"http:\/\/www.youtube.com\/watch?v=1610","version":137,"lastModified":"1301901906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8d\/4d77a66d7b9aa15c77000a8d\/the-many-adventures-of-winnie-the-pooh-mid.jpg","studio":"Walt Disney Productions","genre":"Animation","title":"The Many Adventures of Winnie the Pooh","releaseDate":226886400000,"language":"en","type":"Movie","_key":"56475"} +{"label":"Dead Man's Cards","description":"Ex Boxer Tom is on the ropes, when a chance encounter at the gym leads to the offer of work as a doorman at a run down nightclub. The volatile head doorman Paul, is a battle hardened veteran from the old school. Recognising Tom for the fighter that he once was, Paul takes him under his wing, and guides him through the ins and outs of life as a club land \"peacekeeper.\"","id":"13718","runtime":90,"imdbId":"tt0455933","version":263,"lastModified":"1301907501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/990\/4bc93f0b017a3c57fe01a990\/dead-man-s-cards-mid.jpg","studio":"Stray Dog Films","genre":"Crime","title":"Dead Man's Cards","releaseDate":1156118400000,"language":"en","type":"Movie","_key":"56476"} +{"label":"Samantha Womack","version":19,"id":"78952","lastModified":"1301901856000","name":"Samantha Womack","type":"Person","_key":"56477"} +{"label":"James McMartin","version":17,"id":"78954","lastModified":"1301902012000","name":"James McMartin","type":"Person","_key":"56478"} +{"label":"Lisa Parry","version":17,"id":"78955","lastModified":"1301902328000","name":"Lisa Parry","type":"Person","_key":"56479"} +{"label":"James Marquand","version":17,"id":"78953","lastModified":"1301902362000","name":"James Marquand","type":"Person","_key":"56480"} +{"label":"Half Past Dead 2","description":"No overview found.","id":"13721","runtime":92,"imdbId":"tt0871867","version":201,"lastModified":"1301905954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/518\/4c559d7b5e73d632be000518\/half-past-dead-2-mid.jpg","genre":"Action","title":"Half Past Dead 2","releaseDate":1167609600000,"language":"en","tagline":"It ain't over 'til he's done. ","type":"Movie","_key":"56481"} +{"label":"Kurupt","version":23,"id":"81583","lastModified":"1301902041000","name":"Kurupt","type":"Person","_key":"56482"} +{"label":"Mercenary for Justice","description":"Mercenary John Seeger is one of the best in the business. John and his crew are battling some French soldiers on the French-controlled Galmoral Island in Southern Africa as they're trying to rescue the French Ambassador -- there's a coup going on. John gets angry when some of his soldiers unload their machine guns into the Ambassador and his family, blowing the mission and getting his best friend Radio Jones killed. John goes back to the U.S.A. and goes to the home of Radio's wife Shondra, tells","id":"13722","runtime":91,"imdbId":"tt0427528","version":137,"lastModified":"1301908069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc93f0f017a3c57fe01a99d\/mercenary-for-justice-mid.jpg","genre":"Action","title":"Mercenary for Justice","releaseDate":1145923200000,"language":"en","type":"Movie","_key":"56483"} +{"label":"Jacqueline Lord","version":20,"id":"85622","lastModified":"1301902716000","name":"Jacqueline Lord","type":"Person","_key":"56484"} +{"label":"Missionary Man","description":"A mysterious stranger rolls into town on a unique motorcycle. All he carries is the bible and a desire for justice. Past vengeance collides as Ryder rights an injustice from his past and liberates the small town from a malicious oppressor.","id":"13723","runtime":93,"imdbId":"tt0926110","version":164,"lastModified":"1302024122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc93f0f017a3c57fe01a9a6\/missionary-man-mid.jpg","genre":"Action","title":"Missionary Man","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"56485"} +{"label":"Un secret","description":"A 15-year-old boy unearths a shocking family secret.","id":"13726","runtime":105,"imdbId":"tt0490234","version":90,"lastModified":"1301905862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b3\/4bc93f10017a3c57fe01a9b3\/un-secret-mid.jpg","genre":"Drama","title":"Un secret","releaseDate":1191369600000,"language":"en","type":"Movie","_key":"56486"} +{"label":"Disco","description":"Endett\u00e9 jusqu'au cou dans une affaire de water bed, Didier Travolta, 40 ans, vit au Havre dans le quartier populaire du Grand Large chez sa maman : Madame Graindorge. Il re\u00e7oit une lettre de la m\u00e8re de son fils Brian, 8 ans, qui vit en Angleterre, lui signifiant qu'il ne pourra pas recevoir le petit cette ann\u00e9e s'il n'est pas capable de lui payer des vacances, des vraies vacances.","id":"13727","runtime":103,"imdbId":"tt0953369","homepage":"http:\/\/www.disco-lefilm.com\/","version":170,"lastModified":"1301417967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c0\/4bc93f11017a3c57fe01a9c0\/disco-mid.jpg","studio":"Le Studio Canal+","genre":"Comedy","title":"Disco","releaseDate":1207094400000,"language":"en","type":"Movie","_key":"56487"} +{"label":"Fran\u00e7ois-Xavier Demaison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/199\/4c166baf7b9aa105ce000199\/francois-xavier-demaison-profile.jpg","version":37,"id":"76858","lastModified":"1301901582000","name":"Fran\u00e7ois-Xavier Demaison","type":"Person","_key":"56488"} +{"label":"V\u00e9ronique Labrid","version":20,"id":"86448","lastModified":"1301902523000","name":"V\u00e9ronique Labrid","type":"Person","_key":"56489"} +{"label":"Enferm\u00e9s dehors","description":"No overview found.","id":"13728","runtime":0,"imdbId":"tt0442207","version":56,"lastModified":"1301905667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/169\/4d398e1a7b9aa1614b001169\/enferm-s-dehors-mid.jpg","title":"Enferm\u00e9s dehors","releaseDate":1144195200000,"language":"en","type":"Movie","_key":"56490"} +{"label":"Claude Perron","version":25,"id":"119199","lastModified":"1301901800000","name":"Claude Perron","type":"Person","_key":"56491"} +{"label":"Nicolas Mari\u00e9","version":30,"id":"78421","lastModified":"1301901330000","name":"Nicolas Mari\u00e9","type":"Person","_key":"56492"} +{"label":"Bruno Lochet","version":14,"id":"150904","lastModified":"1301903124000","name":"Bruno Lochet","type":"Person","_key":"56493"} +{"label":"Garage babes","description":"No overview found.","id":"13729","runtime":0,"imdbId":"tt1168636","version":84,"lastModified":"1301011612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b4\/4c8f6cd27b9aa176860000b4\/garage-babes-mid.jpg","title":"Garage babes","releaseDate":1193529600000,"language":"en","type":"Movie","_key":"56494"} +{"label":"Omar Sy","version":33,"id":"78423","lastModified":"1301901372000","name":"Omar Sy","type":"Person","_key":"56495"} +{"label":"Fred Testot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/564\/4d7115357b9aa12fe9001564\/fred-testot-profile.jpg","version":32,"id":"84100","lastModified":"1301901642000","name":"Fred Testot","type":"Person","_key":"56496"} +{"label":"La bo\u00eete noire","description":"A la suite d'un accident de voiture, Arthur est plong\u00e9 pendant quelques heures dans un coma. Durant sa phase d'\u00e9veil, dans un d\u00e9lire verbal, il exprime des phrases incoh\u00e9rentes qui trouvent leurs racines directement dans son inconscient.A son r\u00e9veil, il est face \u00e0 une curieuse \u00e9nigme : Que faisait-il la nuit sur cette route, proche de Cherbourg ?","id":"13730","runtime":90,"imdbId":"tt0414879","version":74,"lastModified":"1301904883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4cab7f917b9aa1152d00002d\/la-boite-noire-mid.jpg","genre":"Thriller","title":"La bo\u00eete noire","releaseDate":1130889600000,"language":"en","type":"Movie","_key":"56497"} +{"label":"G\u00e9rarld Laroche","version":18,"id":"134218","lastModified":"1301902506000","name":"G\u00e9rarld Laroche","type":"Person","_key":"56498"} +{"label":"L'\u00e2ge d'homme... maintenant ou jamais!","description":"No overview found.","id":"13731","runtime":0,"imdbId":"tt0887975","version":29,"lastModified":"1301419077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c4\/4cd8240f5e73d676cd0005c4\/l-age-d-homme-maintenant-ou-jamais-mid.jpg","title":"L'\u00e2ge d'homme... maintenant ou jamais!","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56499"} +{"label":"L'Auberge Rouge","description":"A la fin du XIX\u00e8me si\u00e8cle, la sinistre auberge du Cro\u00fbteux se dresse au milieu des sauvages montagnes du massif des Pyr\u00e9n\u00e9es. L'\u00e9tablissement est tenu par Martin et Rose, un couple d'aubergistes qui fait r\u00e9guli\u00e8rement assassiner par Violet - leur fils adoptif sourd muet - les voyageurs solitaires pour les d\u00e9trousser. Par un soir d'orage, le bon p\u00e8re Carnus a sous sa responsabilit\u00e9 un adolescent qu'il doit conduire \u00e0 un monast\u00e8re perdu dans la montagne...","id":"13732","runtime":90,"imdbId":"tt0880440","version":47,"lastModified":"1301908161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d9\/4bc93f14017a3c57fe01a9d9\/l-auberge-rouge-mid.jpg","studio":"Warner Bros.","genre":"Comedy","title":"L'Auberge Rouge","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"56500"} +{"label":"Fran\u00e7ois-Xavier Demaison","version":19,"id":"136484","lastModified":"1301902988000","name":"Fran\u00e7ois-Xavier Demaison","type":"Person","_key":"56501"} +{"label":"Le cactus","description":"No overview found.","id":"13733","runtime":0,"imdbId":"tt0464059","version":101,"lastModified":"1302024027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e6\/4bc93f15017a3c57fe01a9e6\/le-cactus-mid.jpg","title":"Le cactus","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56502"} +{"label":"Le Coeur des hommes 2","description":"Alex, Antoine, Jeff and Manu. Four friends, four years later. Their relationships, friendship, shared secrets, feelings of guilt and their desire to change and improve.","id":"13734","runtime":0,"imdbId":"tt0887887","version":102,"lastModified":"1301904400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a03\/4bc93f17017a3c57fe01aa03\/le-coeur-des-hommes-2-mid.jpg","genre":"Comedy","title":"Le Coeur des hommes 2","releaseDate":1193184000000,"language":"en","type":"Movie","_key":"56503"} +{"label":"Marc Esposito","version":21,"id":"144257","lastModified":"1302078638000","name":"Marc Esposito","type":"Person","_key":"56504"} +{"label":"Les Randonneurs \u00e0 Saint-Tropez","description":"Nous avons quitt\u00e9 Cora, Nadine, Mathieu et son fr\u00e8re Louis, ceux que nous appelons dor\u00e9navant \" Les randonneurs \", il y a dix ans en Corse.Aujourd'hui, ils ont la quarantaine.","id":"13735","runtime":105,"imdbId":"tt0991350","version":62,"lastModified":"1301417597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13d\/4cac44697b9aa1152b00013d\/les-randonneurs-a-saint-tropez-mid.jpg","title":"Les Randonneurs \u00e0 Saint-Tropez","releaseDate":1207699200000,"language":"en","type":"Movie","_key":"56505"} +{"label":"Philippe Harel","version":29,"id":"123979","lastModified":"1301902990000","name":"Philippe Harel","type":"Person","_key":"56506"} +{"label":"Modern love","description":"No overview found.","id":"13737","runtime":0,"imdbId":"tt0996962","version":1778,"lastModified":"1301907096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a28\/4bc93f1d017a3c57fe01aa28\/modern-love-mid.jpg","genre":"Mystery","title":"Modern love","releaseDate":1205280000000,"language":"en","type":"Movie","_key":"56507"} +{"label":"Quatre \u00e9toiles","description":"No overview found.","id":"13739","runtime":0,"imdbId":"tt0448245","version":45,"lastModified":"1301908608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a39\/4bc93f1f017a3c57fe01aa39\/quatre-etoiles-mid.jpg","title":"Quatre \u00e9toiles","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"56508"} +{"label":"Christian Vincent","version":21,"id":"72005","lastModified":"1301902119000","name":"Christian Vincent","type":"Person","_key":"56509"} +{"label":"Sans arme, ni haine, ni violence","description":"Appr\u00e9hend\u00e9 en 1977 pour avoir con\u00e7u, organis\u00e9 et r\u00e9ussi le c\u00e9l\u00e8bre casse de Nice, Albert Spaggiari (Jean-Paul Rouve) s'\u00e9vade du bureau du juge d'instruction. Pendant des ann\u00e9es, il va rester insaisissable, r\u00e9sistant \u00e0 toutes les tentatives de la police. Au cours de sa cavale fabuleuse en Am\u00e9rique du Sud, il multiplie les rencontres avec des journalistes, fait des photos en forme de pied de nez fac\u00e9tieux au public fran\u00e7ais. Vincent (Gilles Lellouche), reporter, r\u00e9ussit \u00e0 l'approcher pendant quelq","id":"13740","runtime":100,"imdbId":"tt1139806","trailer":"http:\/\/www.youtube.com\/watch?v=BFAViQqc558","version":84,"lastModified":"1301904244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03e\/4c89df6a7b9aa1649400003e\/sans-arme-ni-haine-ni-violence-mid.jpg","studio":"Studio 37","genre":"Crime","title":"Sans arme, ni haine, ni violence","releaseDate":1208304000000,"language":"en","type":"Movie","_key":"56510"} +{"label":"Renan Carteaux","version":18,"id":"131815","lastModified":"1301902056000","name":"Renan Carteaux","type":"Person","_key":"56511"} +{"label":"Seuls Two","description":"No overview found.","id":"13741","runtime":94,"imdbId":"tt1077097","homepage":"http:\/\/www.seulstwo.com","version":136,"lastModified":"1301902788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a52\/4bc93f22017a3c57fe01aa52\/seuls-two-mid.jpg","studio":"Les Productions du Tr\u00e9sor","genre":"Comedy","title":"Seuls Two","releaseDate":1214352000000,"language":"en","type":"Movie","_key":"56512"} +{"label":"Sheitan","description":"On Christmas Eve, in the Styxx Club in Paris, the troublemaker Bart and his scum friends, Tha\u00ef and Ladj, meet the bartender Yasmine and the customer Eve, and after a fight of Bart in the nightclub, Eve invites the group to go to her house in the country. While on the road near the cottage, they are introduced by Eve to the weird shepherd and housekeeper, Joseph, whose wife is pregnant. Joseph feels a sort of attraction for Bart, and during this Christmas night, Joseph discloses his real intentio","id":"13742","runtime":94,"imdbId":"tt0450843","version":93,"lastModified":"1301905677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d63\/4d56b5a27b9aa16bca000d63\/sheitan-mid.jpg","genre":"Comedy","title":"Sheitan","releaseDate":1138752000000,"language":"en","type":"Movie","_key":"56513"} +{"label":"Olivier Barthelemy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/917\/4d90d4557b9aa1675e003917\/olivier-barthelemy-profile.jpg","version":27,"id":"109472","lastModified":"1301902024000","name":"Olivier Barthelemy","type":"Person","_key":"56514"} +{"label":"Ladj Ly","version":15,"id":"144817","lastModified":"1301902470000","name":"Ladj Ly","type":"Person","_key":"56515"} +{"label":"Kim Chapiron","version":24,"id":"129879","lastModified":"1301901531000","name":"Kim Chapiron","type":"Person","_key":"56516"} +{"label":"Si c'\u00e9tait lui...","description":"No overview found.","id":"13745","runtime":0,"imdbId":"tt0996983","version":90,"lastModified":"1301908507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a64\/4bc93f24017a3c57fe01aa64\/si-c-etait-lui-mid.jpg","title":"Si c'\u00e9tait lui...","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56517"} +{"label":"Tout pour plaire","description":"No overview found.","id":"13746","runtime":0,"imdbId":"tt0412298","version":73,"lastModified":"1301905810000","title":"Tout pour plaire","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56518"} +{"label":"Truands","description":"No overview found.","id":"13747","runtime":107,"imdbId":"tt0487504","version":59,"lastModified":"1301908542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a71\/4bc93f25017a3c57fe01aa71\/truands-mid.jpg","genre":"Crime","title":"Truands","releaseDate":1168992000000,"language":"en","type":"Movie","_key":"56519"} +{"label":"Un ticket pour l'espace","description":"Face \u00e0 l'incompr\u00e9hension de la population fran\u00e7aise quant au montant des cr\u00e9dits allou\u00e9s \u00e0 la recherche spatiale, le gouvernement lance une vaste op\u00e9ration de communication. En partenariat avec le Centre spatial fran\u00e7ais, un grand jeu est organis\u00e9. \"Le ticket pour l'espace\", un jeu \u00e0 gratter, va permettre \u00e0 deux civils de s\u00e9journer dans la station orbitale europ\u00e9enne.","id":"13748","runtime":90,"imdbId":"tt0444519","version":48,"lastModified":"1301908611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7a\/4bc93f26017a3c57fe01aa7a\/un-ticket-pour-l-espace-mid.jpg","title":"Un ticket pour l'espace","releaseDate":1137542400000,"language":"en","type":"Movie","_key":"56520"} +{"label":"Ze film","description":"No overview found.","id":"13749","runtime":0,"imdbId":"tt0322999","version":103,"lastModified":"1301906534000","title":"Ze film","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56521"} +{"label":"Akeelah and the Bee","description":"Eleven year-old Akeelah Anderson's life is not easy: her father is dead, her mom ignores her, her brother runs with the local gangbangers. She's smart, but her environment threatens to strangle her aspirations. Responding to a threat by her school's principal, Akeelah participates in a spelling bee to avoid detention for her many absences. Much to her surprise and embarrassment, she wins. Her principal asks her to seek coaching from an English professor named Dr. Larabee for the more prestigious","id":"13751","runtime":112,"imdbId":"tt0437800","version":150,"lastModified":"1302038621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a87\/4bc93f27017a3c57fe01aa87\/akeelah-and-the-bee-mid.jpg","studio":"Out of the Blue... Entertainment","genre":"Drama","title":"Akeelah and the Bee","releaseDate":1146182400000,"language":"en","type":"Movie","_key":"56522"} +{"label":"J.R. Villarreal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d55\/4cba5a9c7b9aa138d7000d55\/j-r-villarreal-profile.jpg","version":19,"id":"109641","lastModified":"1301901858000","name":"J.R. Villarreal","type":"Person","_key":"56523"} +{"label":"Doug Atchison","version":22,"id":"109640","lastModified":"1301902006000","name":"Doug Atchison","type":"Person","_key":"56524"} +{"label":"Max Manus","description":"Max Manus is a Norwegian 2008 biographic war film based on the real events of the life of resistance fighter Max Manus (1914\u201396), after his contribution in the Winter War against the Soviet Union. The story follows Manus \u2013 played by Aksel Hennie \u2013 through the outbreak of World War II in Norway until peacetime in 1945. ","id":"13752","runtime":118,"imdbId":"tt1029235","trailer":"http:\/\/www.youtube.com\/watch?v=WbK4WTQFf9U","homepage":"http:\/\/www.maxmanusfilmen.no\/","version":265,"lastModified":"1301903107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a98\/4bc93f2c017a3c57fe01aa98\/max-manus-mid.jpg","studio":"Filmkameratene A\/S","genre":"Action","title":"Max Manus","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"56525"} +{"label":"Aksel Hennie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/260\/4bd9d893017a3c1c00000260\/aksel-hennie-profile.jpg","version":38,"id":"76547","lastModified":"1301901196000","name":"Aksel Hennie","type":"Person","_key":"56526"} +{"label":"Agnes Kittelsen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/058\/4d9b5da55e73d64a26000058\/agnes-kittelsen-profile.jpg","version":26,"id":"76548","lastModified":"1302020486000","name":"Agnes Kittelsen","type":"Person","_key":"56527"} +{"label":"Knut Joner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ce\/4bd9da9a017a3c1bff0002ce\/knut-joner-profile.jpg","version":24,"id":"76550","lastModified":"1301901832000","name":"Knut Joner","type":"Person","_key":"56528"} +{"label":"Viktoria Winge","version":20,"id":"76552","lastModified":"1301902123000","name":"Viktoria Winge","type":"Person","_key":"56529"} +{"label":"Kyrre Haugen Sydness","version":28,"id":"76553","lastModified":"1301901456000","name":"Kyrre Haugen Sydness","type":"Person","_key":"56530"} +{"label":"Eirik Evjen","version":23,"id":"76554","lastModified":"1301902190000","name":"Eirik Evjen","type":"Person","_key":"56531"} +{"label":"Jakob Oftebro","version":24,"id":"76555","lastModified":"1301902123000","name":"Jakob Oftebro","type":"Person","_key":"56532"} +{"label":"P\u00e5l Sverre Valheim Hagen","version":28,"id":"76556","lastModified":"1301902170000","name":"P\u00e5l Sverre Valheim Hagen","type":"Person","_key":"56533"} +{"label":"Julia Bache-Wiig","version":26,"id":"76557","lastModified":"1301901926000","name":"Julia Bache-Wiig","type":"Person","_key":"56534"} +{"label":"Mats Eld\u00f8en","version":22,"id":"76558","lastModified":"1301902123000","name":"Mats Eld\u00f8en","type":"Person","_key":"56535"} +{"label":"Tekkonkinkreet","description":"When mysterious foreign entrepreneurs appear with the intention of tearing down Treasure Town and replacing it with an amusement park, Black and White face their greatest adversaries yet. It is up to the destructive Black to save the fate of the city and up to the gentle White to save Black from his own dark nature. (Source ANN)","id":"13754","runtime":110,"imdbId":"tt0831888","homepage":"http:\/\/www.tekkon.net\/","version":183,"lastModified":"1301934106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01b\/4c7db5287b9aa10d9800001b\/tekkon-kinkurito-mid.jpg","studio":"Studio 4\u00b0C","genre":"Action","title":"Tekkonkinkreet","releaseDate":1184284800000,"language":"en","type":"Movie","_key":"56536"} +{"label":"Michael Arias","version":28,"id":"56343","lastModified":"1301901949000","name":"Michael Arias","type":"Person","_key":"56537"} +{"label":"Y\u00fb Aoi","version":20,"id":"121785","lastModified":"1301902929000","name":"Y\u00fb Aoi","type":"Person","_key":"56538"} +{"label":"Kankur\u00f4 Kud\u00f4","version":27,"id":"120432","lastModified":"1301902423000","name":"Kankur\u00f4 Kud\u00f4","type":"Person","_key":"56539"} +{"label":"Min Tanaka","version":20,"id":"136191","lastModified":"1301902559000","name":"Min Tanaka","type":"Person","_key":"56540"} +{"label":"Tomomichi Nishimura","version":26,"id":"81859","lastModified":"1301901402000","name":"Tomomichi Nishimura","type":"Person","_key":"56541"} +{"label":"A Town Without Christmas","description":"No overview found.","id":"13755","runtime":0,"imdbId":"tt0290321","version":111,"lastModified":"1301415978000","title":"A Town Without Christmas","releaseDate":1008460800000,"language":"en","type":"Movie","_key":"56542"} +{"label":"Melody Time","description":"Melody Time is an animated feature produced by Walt Disney and released to theatres by RKO Radio Pictures. Made up of several sequences set to popular music and folk music, the film is, like Make Mine Music before it, the contemporary version of Fantasia.","id":"13757","runtime":0,"imdbId":"tt0040580","version":85,"lastModified":"1301904911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abb\/4bc93f2e017a3c57fe01aabb\/melody-time-mid.jpg","genre":"Family","title":"Melody Time","releaseDate":-694310400000,"language":"en","type":"Movie","_key":"56543"} +{"label":"The Nutcracker Prince","description":"The timeless holiday tale of \"The Nutcracker\" springs to life as an animated musical. After young Clara receives a wooden nutcracker as a Christmas gift, she dreams about a fantastical battle between her Nutcracker Prince and the evil Mouse King. At stake is the Nutcracker's freedom -- and Clara's future happiness. Kiefer Sutherland, Peter O'Toole and Megan Follows lend their voices to this family-friendly adventure.","id":"13759","runtime":75,"imdbId":"tt0100281","version":159,"lastModified":"1301905662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d6\/4d38b5817b9aa161450001d6\/the-nutcracker-prince-mid.jpg","genre":"Family","title":"The Nutcracker Prince","releaseDate":631152000000,"language":"en","tagline":"Join us in a classic tale of adventure, romance, bravery and a really mean mouse.","type":"Movie","_key":"56544"} +{"label":"The Nutcracker","description":"The Nutcracker is Mikhail Baryshnikov's breathtaking and critcally acclaimed Emmy nominated production. The thisspectacular performance is danced by the magnificent team of Baryshnikov, one of the greatest classical dancers of the century, and Gelsey Kirkland, both chowcased at the peak of the their careers, with members of the American Ballet Theatre.","id":"13760","runtime":78,"imdbId":"tt0136439","version":118,"lastModified":"1301418571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/414\/4c43b1a45e73d60f37000414\/the-nutcracker-mid.jpg","title":"The Nutcracker","releaseDate":220924800000,"language":"en","type":"Movie","_key":"56545"} +{"label":"Mikhail Baryshnikov","version":27,"id":"79952","lastModified":"1301901804000","name":"Mikhail Baryshnikov","type":"Person","_key":"56546"} +{"label":"Gelsey Kirkland","version":24,"id":"125345","lastModified":"1301903043000","name":"Gelsey Kirkland","type":"Person","_key":"56547"} +{"label":"Tony Charmoli","version":22,"id":"125346","lastModified":"1301903002000","name":"Tony Charmoli","type":"Person","_key":"56548"} +{"label":"Pocahontas II: Journey to a New World","description":"When news of John Smith's death reaches America, Pocahontas is devastated. She sets off to London with John Rolfe, to meet with the King of England on a diplomatic mission: to create peace and respect between the two great lands. However, Governor Ratcliffe is still around; he wants to return to Jamestown and take over. He will stop at nothing to discredit the young princess.","id":"13761","runtime":0,"imdbId":"tt0143808","version":98,"lastModified":"1301902135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/348\/4d54cf2c5e73d617c7006348\/pocahontas-ii-journey-to-a-new-world-mid.jpg","genre":"Family","title":"Pocahontas II: Journey to a New World","releaseDate":891993600000,"language":"en","type":"Movie","_key":"56549"} +{"label":"Donal Gibson","version":20,"id":"110315","lastModified":"1301901813000","name":"Donal Gibson","type":"Person","_key":"56550"} +{"label":"Judy Kuhn","version":22,"id":"110316","lastModified":"1301902055000","name":"Judy Kuhn","type":"Person","_key":"56551"} +{"label":"The Private Eyes","description":"Don Knotts and Tim Conway star in The Private Eyes, a 1980 comedy about two bumbling detectives solving a murder. It's an impressively incompetent affair. Every ancient joke falls with a muffled thud as Knotts and Conway ham their way through the pointless story: The lord and lady of a capacious manor are killed, and the lord's ghost seems to have returned to knock off the staff one by one. There'","id":"13762","runtime":91,"imdbId":"tt0081376","trailer":"http:\/\/www.youtube.com\/watch?v=1QNocMA8KR4","version":107,"lastModified":"1301907261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ade\/4bc93f31017a3c57fe01aade\/the-private-eyes-mid.jpg","genre":"Comedy","title":"The Private Eyes","releaseDate":324777600000,"language":"en","type":"Movie","_key":"56552"} +{"label":"Trisha Noble","version":19,"id":"117451","lastModified":"1301902883000","name":"Trisha Noble","type":"Person","_key":"56553"} +{"label":"Lang Elliott","version":20,"id":"108129","lastModified":"1301902432000","name":"Lang Elliott","type":"Person","_key":"56554"} +{"label":"Purple Rain","description":"A young man with a talent for music has begun a career with much promise. He meets an aspiring singer, Apollonia, and finds that talent alone isn't all that he needs. A complicated tale of his repeating his father's self destructive behavior, losing Apollonia to another singer (Morris Day), and his coming to grips with his own connection to other people ensues. ","id":"13763","runtime":111,"imdbId":"tt0087957","version":205,"lastModified":"1301902865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4c001eee017a3c702f0010bf\/purple-rain-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Drama","title":"Purple Rain","releaseDate":459734400000,"language":"en","type":"Movie","_key":"56555"} +{"label":"Prince","version":29,"birthday":"-365130000000","id":"21037","birthplace":" Minneapolis, Minnesota, United States","lastModified":"1302065009000","name":"Prince","type":"Person","_key":"56556"} +{"label":"Santa Claus: The Movie","description":"The first half of this film, set hundreds of years ago, shows how the old man who eventually became Santa Claus was given immortality and chosen to deliver toys to all the children of the world. The second half moves into the modern era, in which Patch, the head elf, strikes out on his own and falls in with an evil toy manufacturer who wants to corner the market and eliminate Santa Claus.","id":"13764","runtime":108,"imdbId":"tt0089961","trailer":"http:\/\/www.youtube.com\/watch?v=1tSOE9PNTIQ","version":137,"lastModified":"1302023741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af4\/4bc93f33017a3c57fe01aaf4\/santa-claus-the-movie-mid.jpg","studio":"Alexander Salkind","genre":"Adventure","title":"Santa Claus: The Movie","releaseDate":499392000000,"language":"en","tagline":"Guess Who's Coming To Town!","type":"Movie","_key":"56557"} +{"label":"Scrooge","description":"The classic Charles Dickens' Christmas ghost tale told in musical form.","id":"13765","runtime":113,"imdbId":"tt0066344","version":125,"lastModified":"1301076564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67b\/4d1524b35e73d6083e00267b\/scrooge-mid.jpg","genre":"Drama","title":"Scrooge","releaseDate":26611200000,"language":"en","tagline":"What the DICKENS have they done to Scrooge?","type":"Movie","_key":"56558"} +{"label":"Space Camp","description":"For five typical teens, NASA's space camp promises to be a fun way to blow off the summer. But when a space shuttle exercise misfires, they find themselves launched into orbit, facing the adventure of a lifetime. Now, the only way back to Earth is to take command of the ship and control of their destinies, before time-and oxygen-run out.","id":"13766","runtime":107,"imdbId":"tt0091993","version":57,"lastModified":"1301903872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0b\/4bc93f37017a3c57fe01ab0b\/space-camp-mid.jpg","studio":"ABC Pictures","genre":"Adventure","title":"Space Camp","releaseDate":518400000000,"language":"en","type":"Movie","_key":"56559"} +{"label":"Harry Winer","version":20,"id":"92554","lastModified":"1301902207000","name":"Harry Winer","type":"Person","_key":"56560"} +{"label":"The Santa Clause 3: The Escape Clause","description":"Now that Santa and Mrs. Claus have the North Pole running smoothly, the Counsel of Legendary Figures has called an emergency meeting on Christmas Eve! The evil Jack Frost has been making trouble, looking to take over the holiday! So he launches a plan to sabotage the toy factory and compel Scott to invoke the little-known Escape Clause and wish he'd never become Santa.","id":"13767","runtime":98,"imdbId":"tt0452681","version":175,"lastModified":"1301902949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b14\/4bc93f38017a3c57fe01ab14\/the-santa-clause-3-the-escape-clause-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"The Santa Clause 3: The Escape Clause","releaseDate":1149984000000,"language":"en","tagline":"His time at the North Pole is about to go South.","type":"Movie","_key":"56561"} +{"label":"Tuck Everlasting","description":"Natalie Babbitt's award winning book for children comes to the screen in a lavish adaptation from Walt Disney Pictures. Winnie Foster (Alexis Bledel) is a girl in her early teens growing up in the small rural town of Winesap in 1914. Winnie's parents (Victor Garber and Amy Irving) are loving but overprotective, and Winnie longs for a life of greater freedom and adventure.","id":"13768","runtime":90,"imdbId":"tt0283084","trailer":"http:\/\/www.youtube.com\/watch?v=1573","version":117,"lastModified":"1301903612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1d\/4bc93f39017a3c57fe01ab1d\/tuck-everlasting-mid.jpg","genre":"Drama","title":"Tuck Everlasting","releaseDate":1034294400000,"language":"en","tagline":"If you could choose to live forever, would you?","type":"Movie","_key":"56562"} +{"label":"Scott Bairstow","version":30,"id":"82519","lastModified":"1301901494000","name":"Scott Bairstow","type":"Person","_key":"56563"} +{"label":"Backroads","description":"Two strangers - one white, one black - steal a car in western NSW and head for the coast. Jack is abrasive, cunning and disparaging about Aborigines. Gary doesn\u2019t really care \u2013 he just wants to escape. En route, they pick up Gary\u2019s Uncle Joe, a French hitchhiker and a young woman who\u2019s running away. Their petty crimes escalate as they go, heading towards disaster.","id":"13770","runtime":60,"imdbId":"tt0075716","version":139,"lastModified":"1301903475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2f\/4bc93f3a017a3c57fe01ab2f\/backroads-mid.jpg","studio":"Australian Film Commission","genre":"Action","title":"Backroads","releaseDate":236217600000,"language":"en","type":"Movie","_key":"56564"} +{"label":"Martha Ansara","version":20,"id":"75046","lastModified":"1301902177000","name":"Martha Ansara","type":"Person","_key":"56565"} +{"label":"Elizabeth Knight","version":21,"id":"75044","lastModified":"1301902186000","name":"Elizabeth Knight","type":"Person","_key":"56566"} +{"label":"Gary Foley","version":20,"id":"75050","lastModified":"1301901949000","name":"Gary Foley","type":"Person","_key":"56567"} +{"label":"Zack Martin","version":20,"id":"75051","lastModified":"1301901780000","name":"Zack Martin","type":"Person","_key":"56568"} +{"label":"Julie McGregor","version":20,"id":"75052","lastModified":"1301902382000","name":"Julie McGregor","type":"Person","_key":"56569"} +{"label":"Essie Coffey","version":20,"id":"75053","lastModified":"1301902328000","name":"Essie Coffey","type":"Person","_key":"56570"} +{"label":"Allan Penney","version":20,"id":"75054","lastModified":"1301902328000","name":"Allan Penney","type":"Person","_key":"56571"} +{"label":"Venus","description":"Maurice is an aging veteran actor who becomes absolutely taken with Jessie - the grandniece of his closest friend. When Maurice tries to soften the petulant and provincial young girl with the benefit of his wisdom and London culture, their give-and-take surprises both Maurice and Jessie as they discover what they don't know about themselves.","id":"13771","runtime":95,"imdbId":"tt0489327","version":230,"lastModified":"1301906219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc93f3a017a3c57fe01ab38\/venus-mid.jpg","studio":"Free Range Films","genre":"Comedy","title":"Venus","releaseDate":1172102400000,"language":"en","type":"Movie","_key":"56572"} +{"label":"Beatrice Savoretti","version":19,"id":"75055","lastModified":"1301901920000","name":"Beatrice Savoretti","type":"Person","_key":"56573"} +{"label":"Philip Fox","version":19,"id":"75056","lastModified":"1301902120000","name":"Philip Fox","type":"Person","_key":"56574"} +{"label":"Lolita Chakrabarti","version":19,"id":"75057","lastModified":"1301902120000","name":"Lolita Chakrabarti","type":"Person","_key":"56575"} +{"label":"Carolina Giammetta","version":19,"id":"75058","lastModified":"1301902120000","name":"Carolina Giammetta","type":"Person","_key":"56576"} +{"label":"Jodie Whittaker","version":21,"id":"75059","lastModified":"1301902306000","name":"Jodie Whittaker","type":"Person","_key":"56577"} +{"label":"Kellie Shirley","version":19,"id":"75060","lastModified":"1301902120000","name":"Kellie Shirley","type":"Person","_key":"56578"} +{"label":"Ashley Madekwe","version":19,"id":"75061","lastModified":"1301902297000","name":"Ashley Madekwe","type":"Person","_key":"56579"} +{"label":"Ony Uhiara","version":19,"id":"75062","lastModified":"1301902120000","name":"Ony Uhiara","type":"Person","_key":"56580"} +{"label":"Cathryn Bradshaw","version":19,"id":"75063","lastModified":"1301902120000","name":"Cathryn Bradshaw","type":"Person","_key":"56581"} +{"label":"Joanna Croll","version":19,"id":"75064","lastModified":"1301902120000","name":"Joanna Croll","type":"Person","_key":"56582"} +{"label":"Liam McKenna","version":19,"id":"75065","lastModified":"1301902120000","name":"Liam McKenna","type":"Person","_key":"56583"} +{"label":"Tom Brooke","version":23,"id":"75066","lastModified":"1301902120000","name":"Tom Brooke","type":"Person","_key":"56584"} +{"label":"Harvey Virdi","version":20,"id":"75067","lastModified":"1301902053000","name":"Harvey Virdi","type":"Person","_key":"56585"} +{"label":"Emma Buckley","version":20,"id":"75068","lastModified":"1301902155000","name":"Emma Buckley","type":"Person","_key":"56586"} +{"label":"Marlene Sidaway","version":19,"id":"75069","lastModified":"1301902120000","name":"Marlene Sidaway","type":"Person","_key":"56587"} +{"label":"Christine Bottomley","version":27,"id":"75070","lastModified":"1302025753000","name":"Christine Bottomley","type":"Person","_key":"56588"} +{"label":"Daniel Cerqueira","version":19,"id":"75071","lastModified":"1301902120000","name":"Daniel Cerqueira","type":"Person","_key":"56589"} +{"label":"Sam Kenyon","version":19,"id":"75072","lastModified":"1301902120000","name":"Sam Kenyon","type":"Person","_key":"56590"} +{"label":"Tom Mison","version":21,"id":"75073","lastModified":"1301901755000","name":"Tom Mison","type":"Person","_key":"56591"} +{"label":"Paul Chahidi","version":19,"id":"75074","lastModified":"1301902120000","name":"Paul Chahidi","type":"Person","_key":"56592"} +{"label":"Piers Harrisson","version":19,"id":"75075","lastModified":"1301902120000","name":"Piers Harrisson","type":"Person","_key":"56593"} +{"label":"Dan Channing-Williams","version":19,"id":"75088","lastModified":"1301902120000","name":"Dan Channing-Williams","type":"Person","_key":"56594"} +{"label":"Jessica Hurles-Laws","version":17,"id":"75089","lastModified":"1301901920000","name":"Jessica Hurles-Laws","type":"Person","_key":"56595"} +{"label":"Barrie McCulloch","version":19,"id":"75090","lastModified":"1301902120000","name":"Barrie McCulloch","type":"Person","_key":"56596"} +{"label":"Pyramid","description":"For four thousand years men have marvelled at the Great Pyramid of Giza and asked two questions: how was it built and why? To answer those questions we will travel back in time. By combining the latest archaeological research with the most up-to-date visual technology we can for the first time see the Pyramid through the eyes of the men who built it.","id":"13773","runtime":58,"imdbId":"tt0362480","version":77,"lastModified":"1301905672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b47\/4bc93f3f017a3c57fe01ab47\/pyramid-mid.jpg","genre":"Documentary","title":"Pyramid","releaseDate":1035763200000,"language":"en","type":"Movie","_key":"56597"} +{"label":"The Last Joint Venture","description":"The decade of the hippies is at an end an the 80's are approaching fast. Carl and Robert are two doped out guys who lives in harmony with the the world around them and let life pass by in an eternal hash high. They make their little money by selling small amounts of hash, and mean themselves that they provide a life supporting supply to a suffering population.","id":"13774","runtime":84,"imdbId":"tt1054116","trailer":"http:\/\/www.youtube.com\/watch?v=2179","version":98,"lastModified":"1301903354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b50\/4bc93f3f017a3c57fe01ab50\/den-siste-revejakta-mid.jpg","genre":"Comedy","title":"The Last Joint Venture","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"56598"} +{"label":"Ulrik Imtiaz Rolfsen","version":18,"id":"93595","lastModified":"1301902677000","name":"Ulrik Imtiaz Rolfsen","type":"Person","_key":"56599"} +{"label":"MacBeth","description":"MacBeth, loyal to his crime boss, Duncan, is told by witches that he will one day take over. Driven by their prophecy, he and his wife plot to kill Duncan, and takes the leadership of the gang for himself. Maintaining his power will require more murder and violence, finally driving his surviving enemies to unite and destroy him. A sexy, high octane retelling of this classic story.gh","id":"13775","runtime":109,"imdbId":"tt0434541","version":301,"lastModified":"1301906838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b59\/4bc93f44017a3c57fe01ab59\/macbeth-mid.jpg","studio":"Arclight Films","genre":"Drama","title":"MacBeth","releaseDate":1158796800000,"language":"en","tagline":"Something wicked this way comes.","type":"Movie","_key":"56600"} +{"label":"Steve Bastoni","version":27,"id":"75121","lastModified":"1301901535000","name":"Steve Bastoni","type":"Person","_key":"56601"} +{"label":"Lachy Hulme","version":26,"id":"75122","lastModified":"1301901325000","name":"Lachy Hulme","type":"Person","_key":"56602"} +{"label":"Bob Franklin","version":28,"id":"75123","lastModified":"1301901387000","name":"Bob Franklin","type":"Person","_key":"56603"} +{"label":"Chloe Armstrong","version":21,"id":"75124","lastModified":"1301901721000","name":"Chloe Armstrong","type":"Person","_key":"56604"} +{"label":"Kate Bell","version":21,"id":"75125","lastModified":"1301901869000","name":"Kate Bell","type":"Person","_key":"56605"} +{"label":"Miranda Nation","version":21,"id":"75126","lastModified":"1301901721000","name":"Miranda Nation","type":"Person","_key":"56606"} +{"label":"Lance Anderson","version":21,"id":"75127","lastModified":"1301901721000","name":"Lance Anderson","type":"Person","_key":"56607"} +{"label":"Simon Scott","version":22,"id":"75128","lastModified":"1301901610000","name":"Simon Scott","type":"Person","_key":"56608"} +{"label":"Damian Walshe-Howling","version":26,"id":"75129","lastModified":"1301901474000","name":"Damian Walshe-Howling","type":"Person","_key":"56609"} +{"label":"Jonny Pasvolsky","version":24,"id":"75130","lastModified":"1301901708000","name":"Jonny Pasvolsky","type":"Person","_key":"56610"} +{"label":"Nash Edgerton","version":24,"id":"75131","lastModified":"1301901306000","name":"Nash Edgerton","type":"Person","_key":"56611"} +{"label":"Kevin Tran","version":21,"id":"75132","lastModified":"1301901721000","name":"Kevin Tran","type":"Person","_key":"56612"} +{"label":"Samuel Tew","version":21,"id":"75162","lastModified":"1301901721000","name":"Samuel Tew","type":"Person","_key":"56613"} +{"label":"Christopher Shen","version":22,"id":"75163","lastModified":"1301901721000","name":"Christopher Shen","type":"Person","_key":"56614"} +{"label":"Anna Anderson","version":21,"id":"75164","lastModified":"1301901721000","name":"Anna Anderson","type":"Person","_key":"56615"} +{"label":"Haiha Le","version":21,"id":"75165","lastModified":"1301901721000","name":"Haiha Le","type":"Person","_key":"56616"} +{"label":"Nikon Souphan","version":21,"id":"75166","lastModified":"1301901721000","name":"Nikon Souphan","type":"Person","_key":"56617"} +{"label":"Ri-Jie Kwok","version":21,"id":"75167","lastModified":"1301901721000","name":"Ri-Jie Kwok","type":"Person","_key":"56618"} +{"label":"George Vidalis","version":21,"id":"75168","lastModified":"1301901721000","name":"George Vidalis","type":"Person","_key":"56619"} +{"label":"Terry Lim","version":21,"id":"75169","lastModified":"1301901721000","name":"Terry Lim","type":"Person","_key":"56620"} +{"label":"Rel Hunt","version":21,"id":"75171","lastModified":"1301901721000","name":"Rel Hunt","type":"Person","_key":"56621"} +{"label":"Norman Keller","version":21,"id":"75172","lastModified":"1301901721000","name":"Norman Keller","type":"Person","_key":"56622"} +{"label":"Charles Lavea-Williams","version":21,"id":"75173","lastModified":"1301901721000","name":"Charles Lavea-Williams","type":"Person","_key":"56623"} +{"label":"Socratis Otto","version":28,"id":"75174","lastModified":"1301901773000","name":"Socratis Otto","type":"Person","_key":"56624"} +{"label":"Christopher Kirby","version":21,"id":"75175","lastModified":"1301901721000","name":"Christopher Kirby","type":"Person","_key":"56625"} +{"label":"Ruby O'Rourke","version":21,"id":"75176","lastModified":"1301901721000","name":"Ruby O'Rourke","type":"Person","_key":"56626"} +{"label":"Katherine Tonkin","version":21,"id":"75177","lastModified":"1301901721000","name":"Katherine Tonkin","type":"Person","_key":"56627"} +{"label":"Craig Stott","version":21,"id":"75178","lastModified":"1301901610000","name":"Craig Stott","type":"Person","_key":"56628"} +{"label":"Corinne Davies","version":21,"id":"75179","lastModified":"1301901721000","name":"Corinne Davies","type":"Person","_key":"56629"} +{"label":"Saskia Sansom","version":21,"id":"75180","lastModified":"1301901721000","name":"Saskia Sansom","type":"Person","_key":"56630"} +{"label":"Edwina Wren","version":21,"id":"75181","lastModified":"1301901721000","name":"Edwina Wren","type":"Person","_key":"56631"} +{"label":"Kat Stewart","version":21,"id":"75182","lastModified":"1301901869000","name":"Kat Stewart","type":"Person","_key":"56632"} +{"label":"Chris Vance","version":21,"id":"75183","lastModified":"1301901869000","name":"Chris Vance","type":"Person","_key":"56633"} +{"label":"Jamie-Lee Wilson","version":21,"id":"75184","lastModified":"1301901721000","name":"Jamie-Lee Wilson","type":"Person","_key":"56634"} +{"label":"Peter Davenport","version":21,"id":"75185","lastModified":"1301901721000","name":"Peter Davenport","type":"Person","_key":"56635"} +{"label":"Mick Molloy","version":30,"id":"75186","lastModified":"1301901306000","name":"Mick Molloy","type":"Person","_key":"56636"} +{"label":"John Molloy","version":22,"id":"75187","lastModified":"1301901811000","name":"John Molloy","type":"Person","_key":"56637"} +{"label":"Esther Usher","version":21,"id":"75188","lastModified":"1301901721000","name":"Esther Usher","type":"Person","_key":"56638"} +{"label":"Katie James","version":21,"id":"75189","lastModified":"1301901721000","name":"Katie James","type":"Person","_key":"56639"} +{"label":"Inouk Arnall","version":21,"id":"75190","lastModified":"1301901721000","name":"Inouk Arnall","type":"Person","_key":"56640"} +{"label":"Siros Niaros","version":25,"id":"75158","lastModified":"1301901721000","name":"Siros Niaros","type":"Person","_key":"56641"} +{"label":"Jarrah Cocks","version":21,"id":"75191","lastModified":"1301901721000","name":"Jarrah Cocks","type":"Person","_key":"56642"} +{"label":"Robert Shook","version":21,"id":"75192","lastModified":"1301901721000","name":"Robert Shook","type":"Person","_key":"56643"} +{"label":"Kim Gyngell","version":24,"id":"75193","lastModified":"1301901721000","name":"Kim Gyngell","type":"Person","_key":"56644"} +{"label":"Fiona MacMillan","version":21,"id":"75145","lastModified":"1301901535000","name":"Fiona MacMillan","type":"Person","_key":"56645"} +{"label":"Paul Walton","version":21,"id":"75146","lastModified":"1301901610000","name":"Paul Walton","type":"Person","_key":"56646"} +{"label":"Diner","description":"Set in 1959, Diner shows how five young men resist their adulthood and seek refuge in their beloved Diner. The mundane, childish, and titillating details of their lives are shared. But the golden moments pass, and the men shoulder their responsibilities, leaving the Diner behind.","id":"13776","runtime":110,"imdbId":"tt0083833","trailer":"http:\/\/www.youtube.com\/watch?v=dGZZ-CLphCI","version":253,"lastModified":"1301907541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6a\/4bc93f49017a3c57fe01ab6a\/diner-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Diner","releaseDate":389232000000,"language":"en","tagline":"Suddenly, life was more than French fries, gravy, and girls.","type":"Movie","_key":"56647"} +{"label":"Kathryn Dowling","version":22,"id":"75194","lastModified":"1301902381000","name":"Kathryn Dowling","type":"Person","_key":"56648"} +{"label":"Jessica James","version":22,"id":"75195","lastModified":"1301902361000","name":"Jessica James","type":"Person","_key":"56649"} +{"label":"Colette Blonigan","version":22,"id":"75196","lastModified":"1301902373000","name":"Colette Blonigan","type":"Person","_key":"56650"} +{"label":"Kelle Kipp","version":22,"id":"75197","lastModified":"1301902366000","name":"Kelle Kipp","type":"Person","_key":"56651"} +{"label":"Richard Pierson","version":22,"id":"75198","lastModified":"1301902328000","name":"Richard Pierson","type":"Person","_key":"56652"} +{"label":"Claudia Cron","version":27,"id":"75199","lastModified":"1301901949000","name":"Claudia Cron","type":"Person","_key":"56653"} +{"label":"Tait Ruppert","version":22,"id":"75200","lastModified":"1301902328000","name":"Tait Ruppert","type":"Person","_key":"56654"} +{"label":"Tom Tammi","version":22,"id":"75201","lastModified":"1301902328000","name":"Tom Tammi","type":"Person","_key":"56655"} +{"label":"Pam Gail","version":22,"id":"75202","lastModified":"1301902328000","name":"Pam Gail","type":"Person","_key":"56656"} +{"label":"Lauren Zaganas","version":22,"id":"75203","lastModified":"1301902328000","name":"Lauren Zaganas","type":"Person","_key":"56657"} +{"label":"Sharon Ziman","version":22,"id":"75204","lastModified":"1301902328000","name":"Sharon Ziman","type":"Person","_key":"56658"} +{"label":"Ralph Tabakin","version":22,"id":"75205","lastModified":"1301902328000","name":"Ralph Tabakin","type":"Person","_key":"56659"} +{"label":"Frank Stoegerer","version":22,"id":"75206","lastModified":"1301902328000","name":"Frank Stoegerer","type":"Person","_key":"56660"} +{"label":"Nat Benchley","version":22,"id":"75207","lastModified":"1301902328000","name":"Nat Benchley","type":"Person","_key":"56661"} +{"label":"Frank Hennessy","version":22,"id":"75208","lastModified":"1301902374000","name":"Frank Hennessy","type":"Person","_key":"56662"} +{"label":"Marvin Hunter","version":22,"id":"75209","lastModified":"1301902328000","name":"Marvin Hunter","type":"Person","_key":"56663"} +{"label":"Steve Smith","version":22,"id":"75210","lastModified":"1301902328000","name":"Steve Smith","type":"Person","_key":"56664"} +{"label":"Lee Case","version":22,"id":"75211","lastModified":"1301902328000","name":"Lee Case","type":"Person","_key":"56665"} +{"label":"Clement Fowler","version":22,"id":"75212","lastModified":"1301902328000","name":"Clement Fowler","type":"Person","_key":"56666"} +{"label":"Howard Silverman","version":22,"id":"75213","lastModified":"1301902328000","name":"Howard Silverman","type":"Person","_key":"56667"} +{"label":"Ted Bafaloukos","version":23,"id":"75214","lastModified":"1301902386000","name":"Ted Bafaloukos","type":"Person","_key":"56668"} +{"label":"Barney Cohen","version":26,"id":"58816","lastModified":"1301902145000","name":"Barney Cohen","type":"Person","_key":"56669"} +{"label":"Bruce Kluger","version":22,"id":"75215","lastModified":"1301902179000","name":"Bruce Kluger","type":"Person","_key":"56670"} +{"label":"Bruce Elliott","version":20,"id":"33473","lastModified":"1301901949000","name":"Bruce Elliott","type":"Person","_key":"56671"} +{"label":"Carole Copeland","version":22,"id":"75216","lastModified":"1301902328000","name":"Carole Copeland","type":"Person","_key":"56672"} +{"label":"Aryeh Cooperstock","version":22,"id":"75217","lastModified":"1301901949000","name":"Aryeh Cooperstock","type":"Person","_key":"56673"} +{"label":"Brian Costantini","version":22,"id":"75218","lastModified":"1301902328000","name":"Brian Costantini","type":"Person","_key":"56674"} +{"label":"Lorraine D. Glick","version":22,"id":"75219","lastModified":"1301902327000","name":"Lorraine D. Glick","type":"Person","_key":"56675"} +{"label":"Florence Moody","version":22,"id":"75220","lastModified":"1301902327000","name":"Florence Moody","type":"Person","_key":"56676"} +{"label":"Mary Lou Vukov","version":22,"id":"75221","lastModified":"1301902327000","name":"Mary Lou Vukov","type":"Person","_key":"56677"} +{"label":"Alan Kaplan","version":22,"id":"75222","lastModified":"1301902327000","name":"Alan Kaplan","type":"Person","_key":"56678"} +{"label":"Donald Saiontz","version":22,"id":"75223","lastModified":"1301902327000","name":"Donald Saiontz","type":"Person","_key":"56679"} +{"label":"Chief Gordon","version":22,"id":"75224","lastModified":"1301902327000","name":"Chief Gordon","type":"Person","_key":"56680"} +{"label":"Beverly Sheehan","version":22,"id":"75225","lastModified":"1301902327000","name":"Beverly Sheehan","type":"Person","_key":"56681"} +{"label":"Dusty Clare","version":22,"id":"75226","lastModified":"1301902327000","name":"Dusty Clare","type":"Person","_key":"56682"} +{"label":"D. Scott Easton","version":25,"id":"75231","lastModified":"1301904134000","name":"D. Scott Easton","type":"Person","_key":"56683"} +{"label":"Win Phelps","version":22,"id":"75232","lastModified":"1301901779000","name":"Win Phelps","type":"Person","_key":"56684"} +{"label":"Robert Rooy","version":22,"id":"75233","lastModified":"1301901647000","name":"Robert Rooy","type":"Person","_key":"56685"} +{"label":"He Died with a Felafel in His Hand","description":"A search for love, meaning and bathroom solitude. Danny goes through a series of shared housing experiences in a succession of cities on the east coast of Australia. Together these vignettes form a narrative that is surprisingly reflective.","id":"13777","runtime":107,"imdbId":"tt0172543","version":168,"lastModified":"1301903353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc93f4b017a3c57fe01ab78\/he-died-with-a-felafel-in-his-hand-mid.jpg","studio":"Fandango","genre":"Comedy","title":"He Died with a Felafel in His Hand","releaseDate":999129600000,"language":"en","type":"Movie","_key":"56686"} +{"label":"Emily Hamilton","version":22,"id":"75253","lastModified":"1301901490000","name":"Emily Hamilton","type":"Person","_key":"56687"} +{"label":"Brett Stewart","version":21,"id":"75254","lastModified":"1301901869000","name":"Brett Stewart","type":"Person","_key":"56688"} +{"label":"Francis McMahon","version":21,"id":"75255","lastModified":"1301901721000","name":"Francis McMahon","type":"Person","_key":"56689"} +{"label":"Ian Hughes","version":21,"id":"75256","lastModified":"1301902073000","name":"Ian Hughes","type":"Person","_key":"56690"} +{"label":"Robert H. Rimmer","version":20,"id":"29349","lastModified":"1301901623000","name":"Robert H. Rimmer","type":"Person","_key":"56691"} +{"label":"Sayuri Tanoue","version":21,"id":"75257","lastModified":"1301901721000","name":"Sayuri Tanoue","type":"Person","_key":"56692"} +{"label":"Linal Haft","version":21,"id":"75258","lastModified":"1301902073000","name":"Linal Haft","type":"Person","_key":"56693"} +{"label":"Nathan Kotzur","version":21,"id":"75259","lastModified":"1301901610000","name":"Nathan Kotzur","type":"Person","_key":"56694"} +{"label":"Haskel Daniel","version":21,"id":"75260","lastModified":"1301901869000","name":"Haskel Daniel","type":"Person","_key":"56695"} +{"label":"Skye Wansey","version":21,"id":"75261","lastModified":"1301901869000","name":"Skye Wansey","type":"Person","_key":"56696"} +{"label":"Ivan Tatarovic","version":21,"id":"75262","lastModified":"1301901721000","name":"Ivan Tatarovic","type":"Person","_key":"56697"} +{"label":"Tim Robertson","version":27,"id":"75263","lastModified":"1301901633000","name":"Tim Robertson","type":"Person","_key":"56698"} +{"label":"Robert Morgan","version":24,"id":"75264","lastModified":"1301901869000","name":"Robert Morgan","type":"Person","_key":"56699"} +{"label":"Clayton Jacobson","version":25,"id":"75265","lastModified":"1301901980000","name":"Clayton Jacobson","type":"Person","_key":"56700"} +{"label":"Scott Major","version":22,"id":"75266","lastModified":"1301901991000","name":"Scott Major","type":"Person","_key":"56701"} +{"label":"Pascal Delair","version":21,"id":"75267","lastModified":"1301901869000","name":"Pascal Delair","type":"Person","_key":"56702"} +{"label":"Wendy Roberts","version":21,"id":"75268","lastModified":"1301901869000","name":"Wendy Roberts","type":"Person","_key":"56703"} +{"label":"Graeme Carroll","version":21,"id":"75269","lastModified":"1301901721000","name":"Graeme Carroll","type":"Person","_key":"56704"} +{"label":"Terry Serio","version":23,"id":"75270","lastModified":"1301901782000","name":"Terry Serio","type":"Person","_key":"56705"} +{"label":"Chris Samios","version":21,"id":"75271","lastModified":"1301901869000","name":"Chris Samios","type":"Person","_key":"56706"} +{"label":"Keeryn Gill","version":21,"id":"75272","lastModified":"1301901869000","name":"Keeryn Gill","type":"Person","_key":"56707"} +{"label":"Benjamin Rich","version":21,"id":"75273","lastModified":"1301901721000","name":"Benjamin Rich","type":"Person","_key":"56708"} +{"label":"Rebecca Cutler","version":21,"id":"75274","lastModified":"1301901721000","name":"Rebecca Cutler","type":"Person","_key":"56709"} +{"label":"Rani Hayman","version":21,"id":"75275","lastModified":"1301901869000","name":"Rani Hayman","type":"Person","_key":"56710"} +{"label":"Stuart Nicholls","version":21,"id":"75276","lastModified":"1301901721000","name":"Stuart Nicholls","type":"Person","_key":"56711"} +{"label":"Harry Brentnall","version":21,"id":"75277","lastModified":"1301901869000","name":"Harry Brentnall","type":"Person","_key":"56712"} +{"label":"Norris Blanks","version":21,"id":"75278","lastModified":"1301902073000","name":"Norris Blanks","type":"Person","_key":"56713"} +{"label":"Jilly Ferguson","version":21,"id":"75279","lastModified":"1301901721000","name":"Jilly Ferguson","type":"Person","_key":"56714"} +{"label":"Jon Wicks","version":21,"id":"75280","lastModified":"1301901721000","name":"Jon Wicks","type":"Person","_key":"56715"} +{"label":"Simon Wheeler","version":21,"id":"75281","lastModified":"1301901869000","name":"Simon Wheeler","type":"Person","_key":"56716"} +{"label":"Matt Dunk","version":21,"id":"75282","lastModified":"1301901869000","name":"Matt Dunk","type":"Person","_key":"56717"} +{"label":"Michael Fawaz","version":21,"id":"75283","lastModified":"1301901869000","name":"Michael Fawaz","type":"Person","_key":"56718"} +{"label":"Skye Gamblin","version":21,"id":"75284","lastModified":"1301902073000","name":"Skye Gamblin","type":"Person","_key":"56719"} +{"label":"Torquil Neilson","version":25,"id":"75285","lastModified":"1301901720000","name":"Torquil Neilson","type":"Person","_key":"56720"} +{"label":"Glenn Newnham","version":28,"id":"75151","lastModified":"1301901721000","name":"Glenn Newnham","type":"Person","_key":"56721"} +{"label":"Angela McPherson","version":21,"id":"75296","lastModified":"1301901430000","name":"Angela McPherson","type":"Person","_key":"56722"} +{"label":"Karan Monkhouse","version":22,"id":"75297","lastModified":"1301904130000","name":"Karan Monkhouse","type":"Person","_key":"56723"} +{"label":"Richard Lowenstein","version":34,"id":"75286","lastModified":"1301901610000","name":"Richard Lowenstein","type":"Person","_key":"56724"} +{"label":"Dickie Roberts: Former Child Star","description":"TV child star of the '70s, Dickie Roberts is now 35 and parking cars. Craving to regain the spotlight, he auditions for a role of a normal guy, but the director quickly sees he is anything but normal. Desperate to win the part, Dickie hires a family to help him replay his childhood and assume the identity of an average, everyday kid. ","id":"13778","runtime":98,"imdbId":"tt0325258","trailer":"http:\/\/www.youtube.com\/watch?v=1485","version":364,"lastModified":"1301904943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df1\/4cf654a17b9aa15149000df1\/dickie-roberts-former-child-star-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Dickie Roberts: Former Child Star","releaseDate":1077148800000,"language":"en","tagline":"50 million people used to watch him on TV. Now he washes their cars.","type":"Movie","_key":"56725"} +{"label":"Emmanuel Lewis","version":20,"id":"75308","lastModified":"1301902247000","name":"Emmanuel Lewis","type":"Person","_key":"56726"} +{"label":"Joey Diaz","version":20,"id":"75309","lastModified":"1301902247000","name":"Joey Diaz","type":"Person","_key":"56727"} +{"label":"Brian Clark","version":20,"id":"75310","lastModified":"1301902247000","name":"Brian Clark","type":"Person","_key":"56728"} +{"label":"Emily Harrison","version":22,"id":"75311","lastModified":"1301901610000","name":"Emily Harrison","type":"Person","_key":"56729"} +{"label":"Nancy Pimental","version":24,"id":"70557","lastModified":"1301901873000","name":"Nancy Pimental","type":"Person","_key":"56730"} +{"label":"Sasha Mitchell","version":20,"id":"75312","lastModified":"1301902247000","name":"Sasha Mitchell","type":"Person","_key":"56731"} +{"label":"Blair Breard","version":25,"id":"65913","lastModified":"1301902260000","name":"Blair Breard","type":"Person","_key":"56732"} +{"label":"Kathleen Randazzo","version":21,"id":"75313","lastModified":"1301902054000","name":"Kathleen Randazzo","type":"Person","_key":"56733"} +{"label":"Peggy Mannix","version":22,"id":"75314","lastModified":"1301902247000","name":"Peggy Mannix","type":"Person","_key":"56734"} +{"label":"Danny Bonaduce","version":23,"id":"75315","lastModified":"1301902141000","name":"Danny Bonaduce","type":"Person","_key":"56735"} +{"label":"Dustin Diamond","version":18,"id":"19186","lastModified":"1301901721000","name":"Dustin Diamond","type":"Person","_key":"56736"} +{"label":"Rob Elk","version":22,"id":"75317","lastModified":"1301901869000","name":"Rob Elk","type":"Person","_key":"56737"} +{"label":"Retta","version":20,"id":"75318","lastModified":"1301902247000","name":"Retta","type":"Person","_key":"56738"} +{"label":"Ian Gomez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9d5\/4cf579f95e73d6299d0009d5\/ian-gomez-profile.jpg","version":24,"id":"34457","lastModified":"1301901532000","name":"Ian Gomez","type":"Person","_key":"56739"} +{"label":"Nicholas Schwerin","version":22,"id":"75319","lastModified":"1301902247000","name":"Nicholas Schwerin","type":"Person","_key":"56740"} +{"label":"Michelle Ruben","version":20,"id":"75320","lastModified":"1301902247000","name":"Michelle Ruben","type":"Person","_key":"56741"} +{"label":"Alexander D. Slanger","version":20,"id":"75321","lastModified":"1301902247000","name":"Alexander D. Slanger","type":"Person","_key":"56742"} +{"label":"Oliver Kindred","version":20,"id":"75322","lastModified":"1301902247000","name":"Oliver Kindred","type":"Person","_key":"56743"} +{"label":"Brandon de Paul","version":21,"id":"75323","lastModified":"1301902247000","name":"Brandon de Paul","type":"Person","_key":"56744"} +{"label":"Evan Lee Dahl","version":20,"id":"75324","lastModified":"1301902073000","name":"Evan Lee Dahl","type":"Person","_key":"56745"} +{"label":"Colin Ryan","version":20,"id":"75326","lastModified":"1301902247000","name":"Colin Ryan","type":"Person","_key":"56746"} +{"label":"Christopher Johnson","version":22,"id":"75327","lastModified":"1301901668000","name":"Christopher Johnson","type":"Person","_key":"56747"} +{"label":"Sergei Virovlianski","version":20,"id":"75328","lastModified":"1301902247000","name":"Sergei Virovlianski","type":"Person","_key":"56748"} +{"label":"Jake Chapman","version":20,"id":"75329","lastModified":"1301902247000","name":"Jake Chapman","type":"Person","_key":"56749"} +{"label":"Ambyr Childers","version":20,"id":"75330","lastModified":"1301902247000","name":"Ambyr Childers","type":"Person","_key":"56750"} +{"label":"Ashley Edner","version":20,"id":"75331","lastModified":"1301902247000","name":"Ashley Edner","type":"Person","_key":"56751"} +{"label":"Michael McDonald","version":20,"id":"20990","lastModified":"1301903115000","name":"Michael McDonald","type":"Person","_key":"56752"} +{"label":"Miko C. Brando","version":20,"id":"75332","lastModified":"1301902247000","name":"Miko C. Brando","type":"Person","_key":"56753"} +{"label":"Mindy Burbano","version":20,"id":"75333","lastModified":"1301902247000","name":"Mindy Burbano","type":"Person","_key":"56754"} +{"label":"Jann Carl","version":20,"id":"75334","lastModified":"1301902247000","name":"Jann Carl","type":"Person","_key":"56755"} +{"label":"Lindsey Dann","version":20,"id":"75335","lastModified":"1301902247000","name":"Lindsey Dann","type":"Person","_key":"56756"} +{"label":"Lisa Joyner","version":20,"id":"75336","lastModified":"1301902247000","name":"Lisa Joyner","type":"Person","_key":"56757"} +{"label":"Erin Murphy","version":20,"id":"75337","lastModified":"1301902247000","name":"Erin Murphy","type":"Person","_key":"56758"} +{"label":"Meghan Faye Gallagher","version":20,"id":"75338","lastModified":"1301902247000","name":"Meghan Faye Gallagher","type":"Person","_key":"56759"} +{"label":"Fred Berry","version":21,"id":"75339","lastModified":"1301902073000","name":"Fred Berry","type":"Person","_key":"56760"} +{"label":"Todd Bridges","version":23,"id":"75340","lastModified":"1301902334000","name":"Todd Bridges","type":"Person","_key":"56761"} +{"label":"Gary Coleman","version":23,"id":"75341","lastModified":"1301902034000","name":"Gary Coleman","type":"Person","_key":"56762"} +{"label":"Tony Dow","version":20,"id":"75342","lastModified":"1301902247000","name":"Tony Dow","type":"Person","_key":"56763"} +{"label":"Florence Henderson","version":20,"id":"75343","lastModified":"1301902247000","name":"Florence Henderson","type":"Person","_key":"56764"} +{"label":"Mike Lookinland","version":21,"id":"75345","lastModified":"1301902247000","name":"Mike Lookinland","type":"Person","_key":"56765"} +{"label":"Maureen McCormick","version":20,"id":"75346","lastModified":"1301901869000","name":"Maureen McCormick","type":"Person","_key":"56766"} +{"label":"Eddie Mekka","version":20,"id":"75347","lastModified":"1301902247000","name":"Eddie Mekka","type":"Person","_key":"56767"} +{"label":"Jeremy Miller","version":20,"id":"75348","lastModified":"1301902247000","name":"Jeremy Miller","type":"Person","_key":"56768"} +{"label":"Erin Moran","version":23,"id":"75349","lastModified":"1301902196000","name":"Erin Moran","type":"Person","_key":"56769"} +{"label":"Haywood Nelson","version":21,"id":"75350","lastModified":"1301902246000","name":"Haywood Nelson","type":"Person","_key":"56770"} +{"label":"Jay North","version":20,"id":"75351","lastModified":"1301902247000","name":"Jay North","type":"Person","_key":"56771"} +{"label":"Ron Palillo","version":20,"id":"75352","lastModified":"1301902246000","name":"Ron Palillo","type":"Person","_key":"56772"} +{"label":"Adam Rich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4c5f98be5e73d6346200008b\/adam-rich-profile.jpg","version":25,"id":"75353","lastModified":"1301901859000","name":"Adam Rich","type":"Person","_key":"56773"} +{"label":"Rodney Allen Rippy","version":20,"id":"75354","lastModified":"1301902246000","name":"Rodney Allen Rippy","type":"Person","_key":"56774"} +{"label":"Marion Ross","version":25,"id":"75355","lastModified":"1301901869000","name":"Marion Ross","type":"Person","_key":"56775"} +{"label":"Ernest Thomas","version":20,"id":"75356","lastModified":"1301901869000","name":"Ernest Thomas","type":"Person","_key":"56776"} +{"label":"Brian Relyea","version":20,"id":"75379","lastModified":"1301902246000","name":"Brian Relyea","type":"Person","_key":"56777"} +{"label":"Marty Eli Schwartz","version":21,"id":"66518","lastModified":"1301902259000","name":"Marty Eli Schwartz","type":"Person","_key":"56778"} +{"label":"Mercy","description":"After she is killed in a wave of small town hysteria, Mercy Hawkins is resurrected by a mysterious healer who gives her the power to seek justice against her attackers.","id":"13780","runtime":14,"imdbId":"tt1278407","trailer":"http:\/\/www.youtube.com\/watch?v=809","version":205,"lastModified":"1301904336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bd87d8c017a3c1bfb000163\/mercy-mid.jpg","studio":"Not Afraid!","genre":"Action","title":"Mercy","releaseDate":1217030400000,"language":"en","tagline":"Your Sins Will Find You","type":"Movie","_key":"56779"} +{"label":"Antony Teofilo","version":20,"id":"75358","lastModified":"1301901562000","name":"Antony Teofilo","type":"Person","_key":"56780"} +{"label":"Emilee Harris","version":20,"id":"75381","lastModified":"1301901562000","name":"Emilee Harris","type":"Person","_key":"56781"} +{"label":"James Pomichter","version":20,"id":"75382","lastModified":"1301901494000","name":"James Pomichter","type":"Person","_key":"56782"} +{"label":"Kirk Graves","version":21,"id":"75369","lastModified":"1301902144000","name":"Kirk Graves","type":"Person","_key":"56783"} +{"label":"Breaker Morant","description":"During the Boer War, three Australian lieutenants are on trial for shooting Boer prisoners. Though they acted under orders, they are being used as scapegoats by the General Staff, who hopes to distance themselves from the irregular practices of the war. The trial does not progress as smoothly as expected by the General Staff, as the defence puts up a strong fight in the courtroom.","id":"13783","runtime":107,"imdbId":"tt0080310","version":326,"lastModified":"1301903459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8a\/4bc93f50017a3c57fe01ab8a\/breaker-morant-mid.jpg","studio":"Australian Film Commission","genre":"Drama","title":"Breaker Morant","releaseDate":327283200000,"language":"en","type":"Movie","_key":"56784"} +{"label":"Terence Donovan","version":24,"id":"75394","lastModified":"1301901258000","name":"Terence Donovan","type":"Person","_key":"56785"} +{"label":"Vincent Ball","version":23,"id":"75395","lastModified":"1301901942000","name":"Vincent Ball","type":"Person","_key":"56786"} +{"label":"Ray Meagher","version":19,"id":"75396","lastModified":"1301902073000","name":"Ray Meagher","type":"Person","_key":"56787"} +{"label":"Rod Mullinar","version":20,"id":"75397","lastModified":"1301901869000","name":"Rod Mullinar","type":"Person","_key":"56788"} +{"label":"Alan Cassell","version":22,"id":"75398","lastModified":"1301901869000","name":"Alan Cassell","type":"Person","_key":"56789"} +{"label":"Rob Steele","version":22,"id":"75399","lastModified":"1301901869000","name":"Rob Steele","type":"Person","_key":"56790"} +{"label":"Chris Smith","version":20,"id":"75400","lastModified":"1301901869000","name":"Chris Smith","type":"Person","_key":"56791"} +{"label":"Bruno Knez","version":19,"id":"75401","lastModified":"1301902073000","name":"Bruno Knez","type":"Person","_key":"56792"} +{"label":"John Pfitzner","version":20,"id":"75402","lastModified":"1301902175000","name":"John Pfitzner","type":"Person","_key":"56793"} +{"label":"Frank Wilson","version":24,"id":"75403","lastModified":"1301902146000","name":"Frank Wilson","type":"Person","_key":"56794"} +{"label":"Michael Procanin","version":19,"id":"75404","lastModified":"1301902073000","name":"Michael Procanin","type":"Person","_key":"56795"} +{"label":"Ray Ball","version":19,"id":"75405","lastModified":"1301902073000","name":"Ray Ball","type":"Person","_key":"56796"} +{"label":"Wayne Bell","version":20,"id":"75406","lastModified":"1301902152000","name":"Wayne Bell","type":"Person","_key":"56797"} +{"label":"Halifa Cisse","version":19,"id":"75407","lastModified":"1301902073000","name":"Halifa Cisse","type":"Person","_key":"56798"} +{"label":"Norman Currer","version":19,"id":"75408","lastModified":"1301902073000","name":"Norman Currer","type":"Person","_key":"56799"} +{"label":"Bridget Cornish","version":19,"id":"75409","lastModified":"1301902073000","name":"Bridget Cornish","type":"Person","_key":"56800"} +{"label":"Judy Dick","version":21,"id":"44011","lastModified":"1301902016000","name":"Judy Dick","type":"Person","_key":"56801"} +{"label":"Barbara West","version":19,"id":"75410","lastModified":"1301902073000","name":"Barbara West","type":"Person","_key":"56802"} +{"label":"Ria Erskine","version":19,"id":"75411","lastModified":"1301902073000","name":"Ria Erskine","type":"Person","_key":"56803"} +{"label":"Ian Gray","version":19,"id":"75412","lastModified":"1301902073000","name":"Ian Gray","type":"Person","_key":"56804"} +{"label":"Sylvia Horseman","version":19,"id":"75413","lastModified":"1301902073000","name":"Sylvia Horseman","type":"Person","_key":"56805"} +{"label":"Dick Henderson","version":19,"id":"75414","lastModified":"1301902073000","name":"Dick Henderson","type":"Person","_key":"56806"} +{"label":"Alan Lovett","version":19,"id":"75415","lastModified":"1301902073000","name":"Alan Lovett","type":"Person","_key":"56807"} +{"label":"Trevor Mann","version":19,"id":"75416","lastModified":"1301902073000","name":"Trevor Mann","type":"Person","_key":"56808"} +{"label":"Jon Nicholls","version":19,"id":"75417","lastModified":"1301902073000","name":"Jon Nicholls","type":"Person","_key":"56809"} +{"label":"Peter Osborn","version":19,"id":"75418","lastModified":"1301902073000","name":"Peter Osborn","type":"Person","_key":"56810"} +{"label":"Ron Peterson","version":19,"id":"75419","lastModified":"1301902073000","name":"Ron Peterson","type":"Person","_key":"56811"} +{"label":"Don Quin","version":19,"id":"75420","lastModified":"1301902073000","name":"Don Quin","type":"Person","_key":"56812"} +{"label":"Maria Reed","version":19,"id":"75421","lastModified":"1301902073000","name":"Maria Reed","type":"Person","_key":"56813"} +{"label":"Ron Rodger","version":19,"id":"75422","lastModified":"1301902073000","name":"Ron Rodger","type":"Person","_key":"56814"} +{"label":"Nellie Seidel","version":19,"id":"75423","lastModified":"1301902073000","name":"Nellie Seidel","type":"Person","_key":"56815"} +{"label":"Laurie Walton","version":19,"id":"75424","lastModified":"1301902073000","name":"Laurie Walton","type":"Person","_key":"56816"} +{"label":"Hank Bernard","version":19,"id":"75425","lastModified":"1301902073000","name":"Hank Bernard","type":"Person","_key":"56817"} +{"label":"Elspeth Radford","version":19,"id":"75426","lastModified":"1301902073000","name":"Elspeth Radford","type":"Person","_key":"56818"} +{"label":"Toivo Lember","version":19,"id":"75433","lastModified":"1301901609000","name":"Toivo Lember","type":"Person","_key":"56819"} +{"label":"Ralph Storey","version":19,"id":"75434","lastModified":"1301901869000","name":"Ralph Storey","type":"Person","_key":"56820"} +{"label":"Christopher Williams","version":19,"id":"75435","lastModified":"1301901869000","name":"Christopher Williams","type":"Person","_key":"56821"} +{"label":"Black Friday","description":"When his friend Professor Kingsely (Ridges) is at deaths door, brain surgeon Dr. Sovac (Karloff) saves his life by means of an illegal operation that transplants part of injured gangster Red Cannon's brain. Unfortunately, the operation has a disasterous Jeckll and Hyde side effect and under certain conditions the persona of Cannon emerges. Sovac soon learns of the duel personality and of half a million dollars the gangster has hidden away. He attempts to find the money through the manipulation o","id":"13784","runtime":0,"imdbId":"tt0032258","trailer":"http:\/\/www.youtube.com\/watch?v=w4UjGfWkuJM","version":74,"lastModified":"1301417324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8f\/4bc93f53017a3c57fe01ab8f\/black-friday-mid.jpg","genre":"Crime","title":"Black Friday","releaseDate":-937958400000,"language":"en","type":"Movie","_key":"56822"} +{"label":"Arthur Lubin","version":27,"id":"78845","lastModified":"1301901703000","name":"Arthur Lubin","type":"Person","_key":"56823"} +{"label":"Best In Show","description":"The owners (and handlers) of five show dogs head for the Mayflower Kennel Club Dog Show. A film crew interviews them as they prepare for the trip, arrive at Philly's Taft Hotel, and compete. From Florida come the Flecks: she keeps running into old lovers. A wordless ancient in a wheelchair and his buxom trophy wife who may have a thing for the dog's handler own the two-time defending best in show,","id":"13785","runtime":90,"imdbId":"tt0218839","trailer":"http:\/\/www.youtube.com\/watch?v=yeifMjqpsg0","version":284,"lastModified":"1301903201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9c\/4bc93f55017a3c57fe01ab9c\/best-in-show-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Best In Show","releaseDate":983404800000,"language":"en","tagline":"Some pets deserve a little more respect than others.","type":"Movie","_key":"56824"} +{"label":"Michael Hitchcock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a6a\/4d5942e87b9aa15cf3004a6a\/michael-hitchcock-profile.jpg","version":30,"id":"75463","lastModified":"1301901770000","name":"Michael Hitchcock","type":"Person","_key":"56825"} +{"label":"Carrie Aizley","version":20,"id":"75464","lastModified":"1301902303000","name":"Carrie Aizley","type":"Person","_key":"56826"} +{"label":"Lewis Arquette","version":25,"id":"75465","lastModified":"1301901931000","name":"Lewis Arquette","type":"Person","_key":"56827"} +{"label":"Dany Canino","version":20,"id":"75466","lastModified":"1301902126000","name":"Dany Canino","type":"Person","_key":"56828"} +{"label":"WEC 36: Faber vs. Brown","description":"WEC 36: Faber vs. Brown took place on November 5, 2008 at the Seminole Hard Rock Hotel and Casino in Hollywood, Florida. The event aired live on the Versus Network. Paulo Filho fought again against Chael Sonnen in the main event of the evening. WEC Featherweight Champion Urijah Faber also put his belt on the line against Mike Brown.","id":"13786","runtime":94,"version":18,"lastModified":"1301908542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baa\/4bc93f57017a3c57fe01abaa\/wec-36-faber-vs-brown-mid.jpg","genre":"Sports Film","title":"WEC 36: Faber vs. Brown","releaseDate":1225843200000,"language":"en","type":"Movie","_key":"56829"} +{"label":"Urijah Faber","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fb6\/4d86ab8b7b9aa12edd003fb6\/urijah-faber-profile.jpg","version":27,"id":"78510","lastModified":"1301902354000","name":"Urijah Faber","type":"Person","_key":"56830"} +{"label":"Mike Brown","version":22,"id":"78502","lastModified":"1301901807000","name":"Mike Brown","type":"Person","_key":"56831"} +{"label":"Holy Smoke","description":"While on a journey of discovery in exotic India, beautiful young Ruth Barron falls under the influence of a charismatic religious guru. Her desperate parents then hire PJ Waters, a macho cult de-programmer who confronts Ruth in a remote desert hideaway. But PJ quickly learns that he's met his match in the sexy, intelligent and iron-willed Ruth!","id":"13787","runtime":115,"imdbId":"tt0144715","version":187,"lastModified":"1301903634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb3\/4bc93f57017a3c57fe01abb3\/holy-smoke-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Holy Smoke","releaseDate":946166400000,"language":"en","type":"Movie","_key":"56832"} +{"label":"Julie Hamilton","version":23,"id":"75468","lastModified":"1301901695000","name":"Julie Hamilton","type":"Person","_key":"56833"} +{"label":"George Mangos","version":23,"id":"75469","lastModified":"1301902030000","name":"George Mangos","type":"Person","_key":"56834"} +{"label":"Les Dayman","version":23,"id":"75470","lastModified":"1301902175000","name":"Les Dayman","type":"Person","_key":"56835"} +{"label":"Samantha Murray","version":22,"id":"75471","lastModified":"1301901761000","name":"Samantha Murray","type":"Person","_key":"56836"} +{"label":"Sandy Gutman","version":22,"id":"75472","lastModified":"1301901761000","name":"Sandy Gutman","type":"Person","_key":"56837"} +{"label":"Simon Anderson","version":22,"id":"75473","lastModified":"1301901761000","name":"Simon Anderson","type":"Person","_key":"56838"} +{"label":"The Unborn","description":"A young woman fights the spirit that is slowly taking possession of her.","id":"13788","runtime":87,"imdbId":"tt1139668","trailer":"http:\/\/www.youtube.com\/watch?v=sc3Cba0qOco","homepage":"http:\/\/www.theunbornmovie.net\/","version":353,"lastModified":"1302066133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17a\/4c4a72227b9aa1160000017a\/the-unborn-mid.jpg","studio":"Phantom Four","genre":"Horror","title":"The Unborn","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"56839"} +{"label":"Peaches","description":"This is the story of teenage girl Steph, who is brought up by her fiery aunt Jude after her pregnant mother Jass and Vietnamese father are killed in a car crash. The arrival of her late mother's diary reveals the colorful, sexy secrets of Jude and the foreman Alan that allow Steph to reinvent her vision of the world.","id":"13789","runtime":109,"imdbId":"tt0347755","version":149,"lastModified":"1301904039000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bea\/4bc93f5e017a3c57fe01abea\/peaches-mid.jpg","studio":"Peach Films Pty. Ltd.","genre":"Drama","title":"Peaches","releaseDate":1118275200000,"language":"en","type":"Movie","_key":"56840"} +{"label":"Matthew Le Nevez","version":22,"id":"75488","lastModified":"1301901512000","name":"Matthew Le Nevez","type":"Person","_key":"56841"} +{"label":"Sam Healy","version":20,"id":"75489","lastModified":"1301902367000","name":"Sam Healy","type":"Person","_key":"56842"} +{"label":"Tyson Contor","version":20,"id":"75490","lastModified":"1301902362000","name":"Tyson Contor","type":"Person","_key":"56843"} +{"label":"Catherine Lambert","version":20,"id":"75491","lastModified":"1301902361000","name":"Catherine Lambert","type":"Person","_key":"56844"} +{"label":"Giang Le Huy","version":20,"id":"75492","lastModified":"1301902378000","name":"Giang Le Huy","type":"Person","_key":"56845"} +{"label":"Felicity Electricity","version":20,"id":"75493","lastModified":"1301902366000","name":"Felicity Electricity","type":"Person","_key":"56846"} +{"label":"Ling Yeow","version":20,"id":"75494","lastModified":"1301902327000","name":"Ling Yeow","type":"Person","_key":"56847"} +{"label":"Caroline Mignon","version":20,"id":"75495","lastModified":"1301902327000","name":"Caroline Mignon","type":"Person","_key":"56848"} +{"label":"Duncan Hemstock","version":20,"id":"75496","lastModified":"1301902327000","name":"Duncan Hemstock","type":"Person","_key":"56849"} +{"label":"Ed Rosser","version":20,"id":"75497","lastModified":"1301902327000","name":"Ed Rosser","type":"Person","_key":"56850"} +{"label":"Peter Michell","version":20,"id":"75498","lastModified":"1301902327000","name":"Peter Michell","type":"Person","_key":"56851"} +{"label":"Adrian Shirley","version":20,"id":"75499","lastModified":"1301902327000","name":"Adrian Shirley","type":"Person","_key":"56852"} +{"label":"Jamie Black","version":20,"id":"75500","lastModified":"1301902327000","name":"Jamie Black","type":"Person","_key":"56853"} +{"label":"Ineke Clark","version":20,"id":"75501","lastModified":"1301902327000","name":"Ineke Clark","type":"Person","_key":"56854"} +{"label":"Andrew Martin","version":20,"id":"75502","lastModified":"1301902327000","name":"Andrew Martin","type":"Person","_key":"56855"} +{"label":"Chris Blackeby","version":20,"id":"75503","lastModified":"1301901779000","name":"Chris Blackeby","type":"Person","_key":"56856"} +{"label":"Sonya Humphrey","version":20,"id":"75504","lastModified":"1301902327000","name":"Sonya Humphrey","type":"Person","_key":"56857"} +{"label":"Alan Holy","version":20,"id":"75505","lastModified":"1301902327000","name":"Alan Holy","type":"Person","_key":"56858"} +{"label":"Kerry Gray","version":20,"id":"75506","lastModified":"1301902327000","name":"Kerry Gray","type":"Person","_key":"56859"} +{"label":"Glenn Ruehland","version":20,"id":"75507","lastModified":"1301902327000","name":"Glenn Ruehland","type":"Person","_key":"56860"} +{"label":"Paul Lightfoot","version":20,"id":"75508","lastModified":"1301902327000","name":"Paul Lightfoot","type":"Person","_key":"56861"} +{"label":"Nippy","version":20,"id":"75509","lastModified":"1301902327000","name":"Nippy","type":"Person","_key":"56862"} +{"label":"Craig Monahan","version":21,"id":"75510","lastModified":"1301901581000","name":"Craig Monahan","type":"Person","_key":"56863"} +{"label":"Big Rig","description":"No overview found.","id":"13790","runtime":0,"imdbId":"tt0462197","homepage":"http:\/\/bigrigmovie.com\/bigrig\/","version":545,"lastModified":"1302023454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf3\/4bc93f61017a3c57fe01abf3\/big-rig-mid.jpg","genre":"Documentary","title":"Big Rig","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"56864"} +{"label":"How to Kill Your Neighbor's Dog","description":"The story of Peter McGowan, a chain-smoking, impotent, insomniac playwright who lives in Los Angeles. Once very successful, he is now in the tenth year of a decade-long string of production failures. He finds himself bonding with a new neighbor's lonely young daughter who has mild cerebral palsy; and during one of his middle-of-the-night strolls, he encounters his oddball doppelg\u00e4nger.","id":"13791","runtime":107,"imdbId":"tt0207524","version":128,"lastModified":"1301903475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfc\/4bc93f62017a3c57fe01abfc\/how-to-kill-your-neighbor-s-dog-mid.jpg","studio":"Cinerenta Medienbeteiligungs KG","genre":"Comedy","title":"How to Kill Your Neighbor's Dog","releaseDate":1046822400000,"language":"en","type":"Movie","_key":"56865"} +{"label":"Suzi Hofrichter","version":20,"id":"75527","lastModified":"1301901511000","name":"Suzi Hofrichter","type":"Person","_key":"56866"} +{"label":"Kaitlin Hopkins","version":21,"id":"75528","lastModified":"1301902376000","name":"Kaitlin Hopkins","type":"Person","_key":"56867"} +{"label":"Suzy Joachim","version":20,"id":"75529","lastModified":"1301902015000","name":"Suzy Joachim","type":"Person","_key":"56868"} +{"label":"Derek Kellock","version":20,"id":"75530","lastModified":"1301902003000","name":"Derek Kellock","type":"Person","_key":"56869"} +{"label":"Stacy Hogue","version":20,"id":"75531","lastModified":"1301901949000","name":"Stacy Hogue","type":"Person","_key":"56870"} +{"label":"Benita Ha","version":20,"id":"75532","lastModified":"1301901949000","name":"Benita Ha","type":"Person","_key":"56871"} +{"label":"Mark Brandon Read","version":23,"id":"68354","lastModified":"1301901994000","name":"Mark Brandon Read","type":"Person","_key":"56872"} +{"label":"Michael Kalesniko","version":23,"id":"58097","lastModified":"1301901779000","name":"Michael Kalesniko","type":"Person","_key":"56873"} +{"label":"Last Train to Freo","description":"Two thugs from the Perth suburb of Midland catch the last train to Fremantle. When a young woman boards the train a few stops later, they begin talking and find out not everyone on the train is who they seem to be.","id":"13792","runtime":89,"imdbId":"tt0848592","version":169,"lastModified":"1301902987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0d\/4bc93f64017a3c57fe01ac0d\/last-train-to-freo-mid.jpg","studio":"Longway Films","genre":"Drama","title":"Last Train to Freo","releaseDate":1158192000000,"language":"en","type":"Movie","_key":"56874"} +{"label":"Gigi Edgley","version":23,"id":"26057","lastModified":"1301901202000","name":"Gigi Edgley","type":"Person","_key":"56875"} +{"label":"Glenn Hazeldine","version":20,"id":"75539","lastModified":"1301902175000","name":"Glenn Hazeldine","type":"Person","_key":"56876"} +{"label":"Gillian Jones","version":20,"id":"75540","lastModified":"1301902327000","name":"Gillian Jones","type":"Person","_key":"56877"} +{"label":"Lisa Hensley","version":22,"id":"75541","lastModified":"1301902327000","name":"Lisa Hensley","type":"Person","_key":"56878"} +{"label":"Reg Cribb","version":22,"id":"75542","lastModified":"1301902349000","name":"Reg Cribb","type":"Person","_key":"56879"} +{"label":"Karli White","version":20,"id":"75543","lastModified":"1301902327000","name":"Karli White","type":"Person","_key":"56880"} +{"label":"Michael Faranda","version":20,"id":"75558","lastModified":"1301901647000","name":"Michael Faranda","type":"Person","_key":"56881"} +{"label":"Jeremy Sims","version":23,"id":"75544","lastModified":"1301902152000","name":"Jeremy Sims","type":"Person","_key":"56882"} +{"label":"Flashbacks of a Fool","description":"An aging Hollywood star, Joe Scott, lives a life of narcissistic hedonism, observed by his laconic personal assistant, Ophelia. The death of his childhood best friend, Boots, takes our protagonist, and the movie, into an extended flashback to a sea-side town in 1970's Britain. ","id":"13793","runtime":110,"imdbId":"tt1037218","trailer":"http:\/\/www.youtube.com\/watch?v=1359","version":227,"lastModified":"1301903906000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c23\/4bc93f68017a3c57fe01ac23\/flashbacks-of-a-fool-mid.jpg","studio":"Left Turn Films","genre":"Drama","title":"Flashbacks of a Fool","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"56883"} +{"label":"Sid Mitchell","version":21,"id":"75564","lastModified":"1301902073000","name":"Sid Mitchell","type":"Person","_key":"56884"} +{"label":"Annabel Linder","version":19,"id":"75565","lastModified":"1301901869000","name":"Annabel Linder","type":"Person","_key":"56885"} +{"label":"Max Deacon","version":19,"id":"75566","lastModified":"1301901721000","name":"Max Deacon","type":"Person","_key":"56886"} +{"label":"Angie Ruiz","version":19,"id":"75567","lastModified":"1301901869000","name":"Angie Ruiz","type":"Person","_key":"56887"} +{"label":"Gina Athans","version":19,"id":"75568","lastModified":"1301902073000","name":"Gina Athans","type":"Person","_key":"56888"} +{"label":"Julie Ordon","version":19,"id":"75569","lastModified":"1301902073000","name":"Julie Ordon","type":"Person","_key":"56889"} +{"label":"Baillie Walsh","version":19,"id":"75570","lastModified":"1301901869000","name":"Baillie Walsh","type":"Person","_key":"56890"} +{"label":"Tom Brewster","version":19,"id":"75584","lastModified":"1301901720000","name":"Tom Brewster","type":"Person","_key":"56891"} +{"label":"Mark Hopkins","version":19,"id":"75585","lastModified":"1301901609000","name":"Mark Hopkins","type":"Person","_key":"56892"} +{"label":"Alex Oakley","version":19,"id":"75586","lastModified":"1301901610000","name":"Alex Oakley","type":"Person","_key":"56893"} +{"label":"Jacques Terblanche","version":19,"id":"75587","lastModified":"1301902073000","name":"Jacques Terblanche","type":"Person","_key":"56894"} +{"label":"Marci Trout","version":19,"id":"75588","lastModified":"1301901474000","name":"Marci Trout","type":"Person","_key":"56895"} +{"label":"Africa The Serengeti","description":"Africa the Serengeti takes you on an extraordinary journey to view a spectacle few humans have ever witnessed: The Great Migration. Journey with more than two million wildebeests, zebras and antelopes as in their annual 500 mile trek across the Serengeti plains. ","id":"13794","runtime":40,"imdbId":"tt0109049","version":289,"lastModified":"1301905954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2c\/4bc93f69017a3c57fe01ac2c\/africa-the-serengeti-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Africa The Serengeti","releaseDate":765158400000,"language":"en","type":"Movie","_key":"56896"} +{"label":"George Casey","version":43,"id":"75589","lastModified":"1301901857000","name":"George Casey","type":"Person","_key":"56897"} +{"label":"Alaska Spirit of the Wild","description":"Alaska... Here, in this vast and spectacularly beautiful land teeming with abundant wildlife, discover the \"Spirit of the Wild.\" Experience it in the explosive calving of glaciers, the celestial fires of the Aurora Borealis. Witness it in the thundering stampede of caribou, the beauty of the polar bear and the stealthful, deadly hunt of the wolf pack.","id":"13795","runtime":40,"imdbId":"tt0130445","version":97,"lastModified":"1301906609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3a\/4bc93f6a017a3c57fe01ac3a\/alaska-spirit-of-the-wild-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Alaska Spirit of the Wild","releaseDate":852076800000,"language":"en","type":"Movie","_key":"56898"} +{"label":"Amazon","description":"Explore the mysterious Amazon through the amazing IMAX experience. Amazon celebrates the beauty, vitality and wonder of the rapidly disappearing rain forest.","id":"13796","runtime":39,"imdbId":"tt0140803","version":176,"lastModified":"1301905190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c53\/4bc93f6b017a3c57fe01ac53\/amazon-mid.jpg","genre":"Documentary","title":"Amazon","releaseDate":852076800000,"language":"en","type":"Movie","_key":"56899"} +{"label":"Kieth Merrill","version":34,"id":"75590","lastModified":"1301901602000","name":"Kieth Merrill","type":"Person","_key":"56900"} +{"label":"Jesse Corti","version":21,"id":"75599","lastModified":"1301901949000","name":"Jesse Corti","type":"Person","_key":"56901"} +{"label":"Feast 2: Sloppy Seconds","description":"The monsters have made it into a small neighboring town in the middle of nowhere and the locals have to band with the survivors of the bar' slaughter to figure out how to survive.","id":"13797","runtime":97,"imdbId":"tt1104835","version":153,"lastModified":"1301902731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5c\/4bc93f6c017a3c57fe01ac5c\/feast-2-sloppy-seconds-mid.jpg","studio":"Neo Art & Logic","genre":"Action","title":"Feast 2: Sloppy Seconds","releaseDate":1223337600000,"language":"en","type":"Movie","_key":"56902"} +{"label":"Dunderklumpen!","description":"Dunderklumpen lives all alone in a the mountains of J\u00e4mtland. One Midsommer's Eve when he feels very lonely he sets off on a journey to find friends.","id":"13798","runtime":97,"imdbId":"tt0071448","version":86,"lastModified":"1301907096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6d\/4bc93f70017a3c57fe01ac6d\/dunderklumpen-mid.jpg","studio":"GK-Film","genre":"Animation","title":"Dunderklumpen!","releaseDate":149385600000,"language":"en","type":"Movie","_key":"56903"} +{"label":"Beppe Wolgers","version":20,"id":"75597","lastModified":"1301902144000","name":"Beppe Wolgers","type":"Person","_key":"56904"} +{"label":"Jens Wolgers","version":20,"id":"75598","lastModified":"1301901779000","name":"Jens Wolgers","type":"Person","_key":"56905"} +{"label":"Per \u00c5hlin","version":21,"id":"103679","lastModified":"1301902394000","name":"Per \u00c5hlin","type":"Person","_key":"56906"} +{"label":"Cosmic Voyage","description":"The Academy Award\u00ae nominee Cosmic Voyage combines live action with state-of-the-art computer-generated imagery to pinpoint where humans fit in our ever-expanding universe. Highlighting this journey is a \"cosmic zoom\" based on the powers of 10, extending from the Earth to the largest observable structures in the universe, and then back to the subnuclear realm.","id":"13799","runtime":36,"imdbId":"tt0115952","version":93,"lastModified":"1301907153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dee\/4be7bd0f017a3c35b5000dee\/cosmic-voyage-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Cosmic Voyage","releaseDate":839548800000,"language":"en","type":"Movie","_key":"56907"} +{"label":"Bayley Silleck","version":24,"id":"75600","lastModified":"1301901949000","name":"Bayley Silleck","type":"Person","_key":"56908"} +{"label":"Futurama: Monster Robot Maniac Fun Collection","description":"No overview found.","id":"13800","version":316,"lastModified":"1301903923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8b\/4bc93f72017a3c57fe01ac8b\/futurama-mid.jpg","title":"Futurama: Monster Robot Maniac Fun Collection","language":"en","type":"Movie","_key":"56909"} +{"label":"Men In Black","description":"No overview found.","id":"13801","version":300,"lastModified":"1301903489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c90\/4bc93f72017a3c57fe01ac90\/men-in-black-mid.jpg","genre":"Action","title":"Men In Black","language":"en","type":"Movie","_key":"56910"} +{"label":"Colour Me Kubrick: A True...ish Story","description":"The true story of a man who posed as director Stanley Kubrick during the production of Kubrick's last film, Eyes Wide Shut, despite knowing very little about his work and looking nothing like him.","id":"13802","runtime":86,"imdbId":"tt0376543","version":47,"lastModified":"1301905597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc93f75017a3c57fe01aca1\/colour-me-kubrick-a-true-ish-story-mid.jpg","genre":"Comedy","title":"Colour Me Kubrick: A True...ish Story","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"56911"} +{"label":"Brian W. Cook","version":21,"id":"5015","lastModified":"1301901334000","name":"Brian W. Cook","type":"Person","_key":"56912"} +{"label":"Amusement","description":"Three women are stalked by a killer with a grudge that extends back to the girls' childhoods.","id":"13803","runtime":85,"imdbId":"tt0476958","version":224,"lastModified":"1301902705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41d\/4c88fd267b9aa1545d00041d\/amusement-mid.jpg","studio":"New Line Cinema","genre":"Horror","title":"Amusement","releaseDate":1232409600000,"language":"en","type":"Movie","_key":"56913"} +{"label":"Laura Breckenridge","version":21,"id":"77346","lastModified":"1301901838000","name":"Laura Breckenridge","type":"Person","_key":"56914"} +{"label":"Reid Scott","version":20,"id":"81316","lastModified":"1301902531000","name":"Reid Scott","type":"Person","_key":"56915"} +{"label":"Fast & Furious","description":"When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.","id":"13804","runtime":106,"imdbId":"tt1013752","trailer":"http:\/\/www.youtube.com\/watch?v=ucO27notQno","homepage":"http:\/\/www.fastandfuriousmovie.net","version":472,"lastModified":"1301900861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc93f86017a3c57fe01ad0e\/fast-furious-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Fast & Furious","releaseDate":1238630400000,"language":"en","tagline":"New Model. Original Parts.","type":"Movie","_key":"56916"} +{"label":"Gal Gadot","version":33,"id":"90633","lastModified":"1301901149000","name":"Gal Gadot","type":"Person","_key":"56917"} +{"label":"Don Omar","version":31,"id":"90634","lastModified":"1301901127000","name":"Don Omar","type":"Person","_key":"56918"} +{"label":"Brandon T. Jackson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30f\/4bed0c06017a3c37ac00030f\/brandon-t-jacksonas-profile.jpg","version":59,"id":"53336","lastModified":"1302068007000","name":"Brandon T. Jackson","type":"Person","_key":"56919"} +{"label":"Disaster Movie","description":"In DISASTER MOVIE, the filmmaking team behind the hits \"Scary Movie,\" \"Date Movie,\" \"Epic Movie\" and \"Meet The Spartans\" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.","id":"13805","runtime":90,"imdbId":"tt1213644","trailer":"http:\/\/www.youtube.com\/watch?v=815","homepage":"http:\/\/www.disastermovie.net\/","version":243,"lastModified":"1301903012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/060\/4c6a24f15e73d65f7e000060\/disaster-movie-mid.jpg","studio":"Grosvenor Park Media Ltd.","genre":"Action","title":"Disaster Movie","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"56920"} +{"label":"Exiled","description":"A friendship is formed between an ex-gangster, and two groups of hitmen - those who want to protect him and those who were sent to kill him.","id":"13807","runtime":110,"imdbId":"tt0796212","trailer":"http:\/\/www.youtube.com\/watch?v=eWIgmH14_N4","version":148,"lastModified":"1301904128000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6d\/4bc93f9d017a3c57fe01ad6d\/fong-juk-mid.jpg","genre":"Action","title":"Exiled","releaseDate":1157500800000,"language":"en","type":"Movie","_key":"56921"} +{"label":"Josie Ho","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fcb\/4d2813647b9aa134d8001fcb\/josie-ho-profile.jpg","version":36,"id":"78429","lastModified":"1301901099000","name":"Josie Ho","type":"Person","_key":"56922"} +{"label":"Strictly Sexual","description":"Two successful women, sick and tired of dating and relationships, decide to keep two young men in their pool house for strictly sexual purposes.","id":"13808","runtime":100,"imdbId":"tt0494277","version":209,"lastModified":"1301903224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d82\/4bc93f9e017a3c57fe01ad82\/strictly-sexual-mid.jpg","genre":"Comedy","title":"Strictly Sexual","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"56923"} +{"label":"RocknRolla","description":"When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.","id":"13809","runtime":114,"imdbId":"tt1032755","homepage":"http:\/\/rocknrolla.warnerbros.com\/","version":497,"lastModified":"1302080009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da3\/4bc93fa1017a3c57fe01ada3\/rocknrolla-mid.jpg","studio":"Dark Castle Entertainment","genre":"Action","title":"RocknRolla","releaseDate":1225411200000,"language":"en","tagline":"A story of sex, thugs and rock 'n roll.","type":"Movie","_key":"56924"} +{"label":"Charlotte Armer","version":24,"id":"76970","lastModified":"1302080002000","name":"Charlotte Armer","type":"Person","_key":"56925"} +{"label":"Knowing","description":"A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.","id":"13811","runtime":121,"imdbId":"tt0448011","trailer":"http:\/\/www.youtube.com\/watch?v=uxPQhm_Aq-E","homepage":"http:\/\/knowing-themovie.com\/","version":241,"lastModified":"1301901255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0af\/4c169c277b9aa108d70000af\/knowing-mid.jpg","genre":"Action","title":"Knowing","releaseDate":1237420800000,"language":"en","tagline":"Knowing is Everything...","type":"Movie","_key":"56926"} +{"label":"Chandler Canterbury","version":47,"id":"77334","lastModified":"1301904089000","name":"Chandler Canterbury","type":"Person","_key":"56927"} +{"label":"Nadia Townsend","version":29,"id":"77336","lastModified":"1301901166000","name":"Nadia Townsend","type":"Person","_key":"56928"} +{"label":"D.G. Maloney","version":27,"id":"84963","lastModified":"1301901212000","name":"D.G. Maloney","type":"Person","_key":"56929"} +{"label":"Lara Robinson","version":27,"id":"84964","lastModified":"1301901227000","name":"Lara Robinson","type":"Person","_key":"56930"} +{"label":"Joshua Long","version":29,"id":"84965","lastModified":"1301904128000","name":"Joshua Long","type":"Person","_key":"56931"} +{"label":"Alethea McGrath","version":27,"id":"79106","lastModified":"1301901176000","name":"Alethea McGrath","type":"Person","_key":"56932"} +{"label":"Danielle Carter","version":27,"id":"84966","lastModified":"1301901256000","name":"Danielle Carter","type":"Person","_key":"56933"} +{"label":"Tamara Donnellan","version":28,"id":"84967","lastModified":"1301901240000","name":"Tamara Donnellan","type":"Person","_key":"56934"} +{"label":"Travis Waite","version":28,"id":"84968","lastModified":"1301901248000","name":"Travis Waite","type":"Person","_key":"56935"} +{"label":"Quarantine","description":"A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.","id":"13812","runtime":89,"imdbId":"tt1082868","version":283,"lastModified":"1302019058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4c56ff285e73d63a6f00014d\/quarantine-mid.jpg","studio":"Screen Gems, Inc.","genre":"Horror","title":"Quarantine","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"56936"} +{"label":"Dania Ramirez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6b8\/4d9bae3d7b9aa16d0d0006b8\/dania-ramirez-profile.jpg","biography":"<FONT size=3><B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\">Dania Ramirez<\/SPAN><\/B><SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"> was on born November 8, 1979 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Santo Domingo<\/st1:City>, <st1:country-region w:st=\"on\">Dominican Republic<\/st1:country-region><\/st1:place>. She is best known for playing Alex in <I>Entourage","version":46,"id":"37046","lastModified":"1302041525000","name":"Dania Ramirez","type":"Person","_key":"56937"} +{"label":"John Erick Dowdle","version":35,"id":"77147","lastModified":"1301901202000","name":"John Erick Dowdle","type":"Person","_key":"56938"} +{"label":"Defiance","description":"During World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland. Based on a true story.","id":"13813","runtime":137,"imdbId":"tt1034303","trailer":"http:\/\/www.youtube.com\/watch?v=WYZ2oYDSKHA","version":495,"lastModified":"1301901529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/358\/4d55a5b27b9aa15d03001358\/defiance-mid.jpg","studio":"Bedford Falls Company","genre":"Action","title":"Defiance","releaseDate":1230681600000,"language":"en","tagline":"Freedom begins with an act of defiance!","type":"Movie","_key":"56939"} +{"label":"Fresh","description":"Michael is a 12-year-old drug pusher who lives in a crowded house with his cousins and aunt. His father has become a street bum,but still meets with Fresh on occasion to play chess. Fresh is rather quiet in a crazy world. Fresh's sister is a junkie who sleeps with the dealers that Fresh sells for. As the story progresses Fresh realizes that he doesn't want to sell drugs anymore - he wants revenge.","id":"13815","runtime":114,"imdbId":"tt0109842","version":203,"lastModified":"1301903205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e11\/4bc93fb3017a3c57fe01ae11\/fresh-mid.jpg","studio":"Lumi\u00e8re Pictures","genre":"Crime","title":"Fresh","releaseDate":777686400000,"language":"en","type":"Movie","_key":"56940"} +{"label":"Sean Nelson","version":22,"id":"75601","lastModified":"1301901580000","name":"Sean Nelson","type":"Person","_key":"56941"} +{"label":"Ron Brice","version":21,"id":"75602","lastModified":"1301902315000","name":"Ron Brice","type":"Person","_key":"56942"} +{"label":"Luis Lantigua","version":19,"id":"75603","lastModified":"1301902246000","name":"Luis Lantigua","type":"Person","_key":"56943"} +{"label":"Cheryl Freeman","version":19,"id":"75605","lastModified":"1301902246000","name":"Cheryl Freeman","type":"Person","_key":"56944"} +{"label":"Anthony Thomas","version":19,"id":"75606","lastModified":"1301902246000","name":"Anthony Thomas","type":"Person","_key":"56945"} +{"label":"Curtis McClarin","version":21,"id":"75607","lastModified":"1301904130000","name":"Curtis McClarin","type":"Person","_key":"56946"} +{"label":"V\u00edctor Gonz\u00e1lez","version":19,"id":"75608","lastModified":"1301902246000","name":"V\u00edctor Gonz\u00e1lez","type":"Person","_key":"56947"} +{"label":"Robert Jimenez","version":19,"id":"75609","lastModified":"1301901869000","name":"Robert Jimenez","type":"Person","_key":"56948"} +{"label":"Jerome Butler","version":19,"id":"75610","lastModified":"1301901869000","name":"Jerome Butler","type":"Person","_key":"56949"} +{"label":"Cortez Nance Jr.","version":19,"id":"75611","lastModified":"1301902246000","name":"Cortez Nance Jr.","type":"Person","_key":"56950"} +{"label":"Anthony Ruiz","version":19,"id":"75612","lastModified":"1301901869000","name":"Anthony Ruiz","type":"Person","_key":"56951"} +{"label":"Jacinto Taras Riddick","version":19,"id":"75613","lastModified":"1301901869000","name":"Jacinto Taras Riddick","type":"Person","_key":"56952"} +{"label":"Afi McClendon","version":19,"id":"75614","lastModified":"1301902246000","name":"Afi McClendon","type":"Person","_key":"56953"} +{"label":"Natima Bradley","version":20,"id":"75615","lastModified":"1301901991000","name":"Natima Bradley","type":"Person","_key":"56954"} +{"label":"Daiquan Smith","version":19,"id":"75616","lastModified":"1301902246000","name":"Daiquan Smith","type":"Person","_key":"56955"} +{"label":"Jason Rodriguez","version":19,"id":"75617","lastModified":"1301902246000","name":"Jason Rodriguez","type":"Person","_key":"56956"} +{"label":"Mizan Ayers","version":20,"id":"75618","lastModified":"1301901991000","name":"Mizan Ayers","type":"Person","_key":"56957"} +{"label":"Zakee Howze","version":19,"id":"75619","lastModified":"1301901869000","name":"Zakee Howze","type":"Person","_key":"56958"} +{"label":"Davenia McFadden","version":20,"id":"75620","lastModified":"1301902246000","name":"Davenia McFadden","type":"Person","_key":"56959"} +{"label":"Danielia L. Cotton","version":19,"id":"75621","lastModified":"1301901869000","name":"Danielia L. Cotton","type":"Person","_key":"56960"} +{"label":"Elsie Hilario","version":19,"id":"75622","lastModified":"1301901869000","name":"Elsie Hilario","type":"Person","_key":"56961"} +{"label":"Ali A. Wahhab","version":19,"id":"75623","lastModified":"1301902246000","name":"Ali A. Wahhab","type":"Person","_key":"56962"} +{"label":"Mary-Jane April","version":19,"id":"75629","lastModified":"1301901609000","name":"Mary-Jane April","type":"Person","_key":"56963"} +{"label":"Amy Schmidt","version":19,"id":"75630","lastModified":"1301901609000","name":"Amy Schmidt","type":"Person","_key":"56964"} +{"label":"J. Miller Tobin","version":19,"id":"75631","lastModified":"1301901609000","name":"J. Miller Tobin","type":"Person","_key":"56965"} +{"label":"Idlewild","description":"A musical set in the Prohibition-era American South, where a speakeasy performer and club manager Rooster must contend with gangsters who have their eyes on the club while his piano player and partner Percival must choose between his love, Angel or his obligations to his father.","id":"13816","runtime":121,"imdbId":"tt0417225","version":275,"lastModified":"1301903295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1e\/4bc93fb7017a3c57fe01ae1e\/idlewild-mid.jpg","studio":"HBO Films","genre":"Crime","title":"Idlewild","releaseDate":1156464000000,"language":"en","type":"Movie","_key":"56966"} +{"label":"Malinda Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1aa\/4d2bf4117b9aa11a6a0001aa\/malinda-williams-profile.jpg","version":29,"id":"74612","lastModified":"1301901778000","name":"Malinda Williams","type":"Person","_key":"56967"} +{"label":"Bobb'e J. Thompson","version":34,"id":"75633","lastModified":"1302085737000","name":"Bobb'e J. Thompson","type":"Person","_key":"56968"} +{"label":"Patti LaBelle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08e\/4c9c76ef7b9aa1430b00008e\/patti-labelle-profile.jpg","version":22,"id":"75634","lastModified":"1301901200000","name":"Patti LaBelle","type":"Person","_key":"56969"} +{"label":"Oscar Dillon","version":21,"id":"75635","lastModified":"1301901869000","name":"Oscar Dillon","type":"Person","_key":"56970"} +{"label":"Jalil Jay Lynch","version":20,"id":"75636","lastModified":"1301902073000","name":"Jalil Jay Lynch","type":"Person","_key":"56971"} +{"label":"Esau McGraw","version":18,"id":"75637","lastModified":"1301902073000","name":"Esau McGraw","type":"Person","_key":"56972"} +{"label":"Bruce Bruce","version":23,"id":"75638","lastModified":"1301902246000","name":"Bruce Bruce","type":"Person","_key":"56973"} +{"label":"Bre'Wan Waddell","version":20,"id":"75639","lastModified":"1301902073000","name":"Bre'Wan Waddell","type":"Person","_key":"56974"} +{"label":"Carol Mitchell-leon","version":18,"id":"75640","lastModified":"1301902073000","name":"Carol Mitchell-leon","type":"Person","_key":"56975"} +{"label":"China Anderson","version":24,"id":"75641","lastModified":"1301901599000","name":"China Anderson","type":"Person","_key":"56976"} +{"label":"Isis Faust","version":20,"id":"75642","lastModified":"1301902246000","name":"Isis Faust","type":"Person","_key":"56977"} +{"label":"Kyra Freeman","version":20,"id":"75643","lastModified":"1301902073000","name":"Kyra Freeman","type":"Person","_key":"56978"} +{"label":"Kabrina Truesdale","version":20,"id":"75644","lastModified":"1301902073000","name":"Kabrina Truesdale","type":"Person","_key":"56979"} +{"label":"Rodney Johnson","version":20,"id":"75645","lastModified":"1301902073000","name":"Rodney Johnson","type":"Person","_key":"56980"} +{"label":"Big Boi","version":20,"id":"98775","lastModified":"1301902395000","name":"Big Boi","type":"Person","_key":"56981"} +{"label":"Bryan Barber","version":20,"id":"75646","lastModified":"1301901869000","name":"Bryan Barber","type":"Person","_key":"56982"} +{"label":"Head On","description":"Nineteen years old. A little confused. Very pissed off. Ari jams all his energy and defiance, pain and joy into one high velocity night of dancing, sex and drugs. He's running Head On in his own kind of freedom.","id":"13817","runtime":104,"imdbId":"tt0138487","version":142,"lastModified":"1301904078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e27\/4bc93fb7017a3c57fe01ae27\/head-on-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Drama","title":"Head On","releaseDate":902966400000,"language":"en","type":"Movie","_key":"56983"} +{"label":"Alex Dimitriades","version":29,"id":"75655","lastModified":"1301901606000","name":"Alex Dimitriades","type":"Person","_key":"56984"} +{"label":"Paul Capsis","version":19,"id":"75656","lastModified":"1301902246000","name":"Paul Capsis","type":"Person","_key":"56985"} +{"label":"Julian Garner","version":19,"id":"75657","lastModified":"1301901868000","name":"Julian Garner","type":"Person","_key":"56986"} +{"label":"Elena Mandalis","version":19,"id":"75658","lastModified":"1301902072000","name":"Elena Mandalis","type":"Person","_key":"56987"} +{"label":"Tony Nikolakopoulos","version":20,"id":"75659","lastModified":"1301902246000","name":"Tony Nikolakopoulos","type":"Person","_key":"56988"} +{"label":"Damien Fotiou","version":19,"id":"75660","lastModified":"1301902072000","name":"Damien Fotiou","type":"Person","_key":"56989"} +{"label":"Eugenia Fragos","version":19,"id":"75661","lastModified":"1301901869000","name":"Eugenia Fragos","type":"Person","_key":"56990"} +{"label":"Dora Kaskanis","version":19,"id":"75662","lastModified":"1301901868000","name":"Dora Kaskanis","type":"Person","_key":"56991"} +{"label":"Mar\u00eda Mercedes","version":20,"id":"75663","lastModified":"1301901868000","name":"Mar\u00eda Mercedes","type":"Person","_key":"56992"} +{"label":"Alex Papps","version":19,"id":"75664","lastModified":"1301902072000","name":"Alex Papps","type":"Person","_key":"56993"} +{"label":"Vassili Zappa","version":19,"id":"75665","lastModified":"1301901868000","name":"Vassili Zappa","type":"Person","_key":"56994"} +{"label":"Andrea Mandalis","version":19,"id":"75666","lastModified":"1301901868000","name":"Andrea Mandalis","type":"Person","_key":"56995"} +{"label":"Chris Kaglaros","version":19,"id":"75667","lastModified":"1301901868000","name":"Chris Kaglaros","type":"Person","_key":"56996"} +{"label":"Ourania Sideropoulos","version":19,"id":"75668","lastModified":"1301901868000","name":"Ourania Sideropoulos","type":"Person","_key":"56997"} +{"label":"Anthony Lyritzis","version":19,"id":"75669","lastModified":"1301902072000","name":"Anthony Lyritzis","type":"Person","_key":"56998"} +{"label":"Ana Gonzalez","version":19,"id":"75670","lastModified":"1301902246000","name":"Ana Gonzalez","type":"Person","_key":"56999"} +{"label":"Maya Stange","version":21,"id":"75671","lastModified":"1301902072000","name":"Maya Stange","type":"Person","_key":"57000"} +{"label":"Aimee Robertson","version":19,"id":"75672","lastModified":"1301901868000","name":"Aimee Robertson","type":"Person","_key":"57001"} +{"label":"Nathan Farinella","version":19,"id":"75673","lastModified":"1301901868000","name":"Nathan Farinella","type":"Person","_key":"57002"} +{"label":"Paul Farinella","version":19,"id":"75674","lastModified":"1301902072000","name":"Paul Farinella","type":"Person","_key":"57003"} +{"label":"Phil Jones","version":21,"id":"75685","lastModified":"1301901868000","name":"Phil Jones","type":"Person","_key":"57004"} +{"label":"Iain Pirret","version":20,"id":"75686","lastModified":"1301901868000","name":"Iain Pirret","type":"Person","_key":"57005"} +{"label":"Christian Robinson","version":21,"id":"75687","lastModified":"1301901646000","name":"Christian Robinson","type":"Person","_key":"57006"} +{"label":"Ana Kokkinos","version":24,"id":"75675","lastModified":"1301901642000","name":"Ana Kokkinos","type":"Person","_key":"57007"} +{"label":"Heartburn","description":"Rachel is a food writer at a New York magazine who meets Washington columnist Mark at a wedding and ends up falling in love with him despite her reservations about marriage. They buy a house, have a daughter, and Rachel thinks they are living happily ever after until she discovers that Mark is having an affair while she is waddling around with a second pregnancy.","id":"13818","runtime":108,"imdbId":"tt0091188","version":187,"lastModified":"1301905053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e30\/4bc93fb8017a3c57fe01ae30\/heartburn-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Heartburn","releaseDate":522633600000,"language":"en","type":"Movie","_key":"57008"} +{"label":"Karen Akers","version":20,"id":"75688","lastModified":"1301901868000","name":"Karen Akers","type":"Person","_key":"57009"} +{"label":"Aida Linares","version":20,"id":"75689","lastModified":"1301902246000","name":"Aida Linares","type":"Person","_key":"57010"} +{"label":"Joel Tuber","version":22,"id":"75690","lastModified":"1301902072000","name":"Joel Tuber","type":"Person","_key":"57011"} +{"label":"Timothy M. Bourne","version":26,"id":"51449","lastModified":"1301901493000","name":"Timothy M. Bourne","type":"Person","_key":"57012"} +{"label":"David Dreyfuss","version":21,"id":"75691","lastModified":"1301901991000","name":"David Dreyfuss","type":"Person","_key":"57013"} +{"label":"Laurel Canyon","description":"Laurel Canyon focuses on Sam and Alex, a pair of upper-middle class lovebirds from the East Coast who relocate to Los Angeles. Enter Jane, Sam's estranged mother, a successful record producer, who's more than willing to put the couple up in her lavish digs. As Sam and Alex settle in at Jane's, they gradually lose their straight-and-narrow approach to life and begin to experiment. ","id":"13819","runtime":103,"imdbId":"tt0298408","version":205,"lastModified":"1301903397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad7\/4d6b4c0b5e73d66b27002ad7\/laurel-canyon-mid.jpg","studio":"Antidote Films","genre":"Drama","title":"Laurel Canyon","releaseDate":1066867200000,"language":"en","type":"Movie","_key":"57014"} +{"label":"Lou Barlow","version":23,"id":"57394","lastModified":"1301902096000","name":"Lou Barlow","type":"Person","_key":"57015"} +{"label":"Russell Pollard","version":21,"id":"75693","lastModified":"1301901811000","name":"Russell Pollard","type":"Person","_key":"57016"} +{"label":"Imaad Wasif","version":20,"id":"75694","lastModified":"1301901609000","name":"Imaad Wasif","type":"Person","_key":"57017"} +{"label":"Mickey Petralia","version":20,"id":"75695","lastModified":"1301901868000","name":"Mickey Petralia","type":"Person","_key":"57018"} +{"label":"Alexandra Carter","version":20,"id":"75697","lastModified":"1301901535000","name":"Alexandra Carter","type":"Person","_key":"57019"} +{"label":"Michelle DeMirjian","version":20,"id":"75698","lastModified":"1301901868000","name":"Michelle DeMirjian","type":"Person","_key":"57020"} +{"label":"Dennis Howard","version":20,"id":"43484","lastModified":"1301901867000","name":"Dennis Howard","type":"Person","_key":"57021"} +{"label":"Stephen E. Hagen","version":20,"id":"75707","lastModified":"1301901609000","name":"Stephen E. Hagen","type":"Person","_key":"57022"} +{"label":"David McGiffert","version":27,"id":"5163","lastModified":"1301901384000","name":"David McGiffert","type":"Person","_key":"57023"} +{"label":"John R. Saunders","version":20,"id":"75708","lastModified":"1301901720000","name":"John R. Saunders","type":"Person","_key":"57024"} +{"label":"Lisa Cholodenko","version":37,"id":"75699","lastModified":"1301901519000","name":"Lisa Cholodenko","type":"Person","_key":"57025"} +{"label":"Repo Man","description":"Young punk Otto becomes a repo man after helping to steal a car, and stumbles into a world of wackiness as a result. ","id":"13820","runtime":92,"imdbId":"tt0087995","version":233,"lastModified":"1301902682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e42\/4bc93fbc017a3c57fe01ae42\/repo-man-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Repo Man","releaseDate":447033600000,"language":"en","tagline":"It\u2019s 4 a.m. Do you know where your car is?","type":"Movie","_key":"57026"} +{"label":"The Boys","description":"Brett Sprague is a violent and psychopathic man, who is released on parole after serving a sentence for assault. As he returns to his family house and we watch him and his brothers, Stevie and Glenn, for the next 24 hours, it becomes clear this day will not end well.","id":"13821","runtime":86,"imdbId":"tt0139898","version":121,"lastModified":"1301903133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e50\/4bc93fbe017a3c57fe01ae50\/the-boys-mid.jpg","studio":"Arena Films","genre":"Drama","title":"The Boys","releaseDate":894499200000,"language":"en","type":"Movie","_key":"57027"} +{"label":"Lynette Curran","version":24,"id":"75710","lastModified":"1301901561000","name":"Lynette Curran","type":"Person","_key":"57028"} +{"label":"Anthony Hayes","version":22,"id":"75711","lastModified":"1301901609000","name":"Anthony Hayes","type":"Person","_key":"57029"} +{"label":"Jeanette Cronin","version":24,"id":"75712","lastModified":"1301902072000","name":"Jeanette Cronin","type":"Person","_key":"57030"} +{"label":"Anna Lise Phillips","version":22,"id":"75713","lastModified":"1301901848000","name":"Anna Lise Phillips","type":"Person","_key":"57031"} +{"label":"Sal Sharah","version":19,"id":"75714","lastModified":"1301902072000","name":"Sal Sharah","type":"Person","_key":"57032"} +{"label":"Lawrence Woodward","version":19,"id":"75715","lastModified":"1301902072000","name":"Lawrence Woodward","type":"Person","_key":"57033"} +{"label":"Peter Hehir","version":20,"id":"75716","lastModified":"1301901924000","name":"Peter Hehir","type":"Person","_key":"57034"} +{"label":"Andrew Heys","version":19,"id":"75717","lastModified":"1301902072000","name":"Andrew Heys","type":"Person","_key":"57035"} +{"label":"Teo Gebert","version":19,"id":"75718","lastModified":"1301902072000","name":"Teo Gebert","type":"Person","_key":"57036"} +{"label":"Anthony Kierann","version":19,"id":"75719","lastModified":"1301902072000","name":"Anthony Kierann","type":"Person","_key":"57037"} +{"label":"Stephen Leeder","version":19,"id":"75720","lastModified":"1301902072000","name":"Stephen Leeder","type":"Person","_key":"57038"} +{"label":"Veronica Neave","version":19,"id":"75721","lastModified":"1301902072000","name":"Veronica Neave","type":"Person","_key":"57039"} +{"label":"Michael Ienna","version":17,"id":"75722","lastModified":"1301902072000","name":"Michael Ienna","type":"Person","_key":"57040"} +{"label":"Debbie Antoniou","version":19,"id":"75736","lastModified":"1301901720000","name":"Debbie Antoniou","type":"Person","_key":"57041"} +{"label":"Emma Schofield","version":20,"id":"75737","lastModified":"1301904130000","name":"Emma Schofield","type":"Person","_key":"57042"} +{"label":"The Postcard Bandit","description":"The story of notorious Australian bank robber Brendan Abbott, who according to the myth, sent postcards to authorities hot on his trail while on the run across the country.","id":"13822","runtime":106,"imdbId":"tt0351576","version":186,"lastModified":"1301904670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e59\/4bc93fbe017a3c57fe01ae59\/the-postcard-bandit-mid.jpg","studio":"MacQuarie Film Television Investment Fund","genre":"Action","title":"The Postcard Bandit","releaseDate":1054425600000,"language":"en","type":"Movie","_key":"57043"} +{"label":"Brett Stiller","version":20,"id":"75739","lastModified":"1301901609000","name":"Brett Stiller","type":"Person","_key":"57044"} +{"label":"Helen Dallimore","version":21,"id":"75740","lastModified":"1301902048000","name":"Helen Dallimore","type":"Person","_key":"57045"} +{"label":"Tasma Walton","version":22,"id":"75741","lastModified":"1301902248000","name":"Tasma Walton","type":"Person","_key":"57046"} +{"label":"Anthony Phelan","version":20,"id":"75742","lastModified":"1301902246000","name":"Anthony Phelan","type":"Person","_key":"57047"} +{"label":"David James","version":19,"id":"75743","lastModified":"1301902072000","name":"David James","type":"Person","_key":"57048"} +{"label":"Richard Piper","version":19,"id":"75744","lastModified":"1301902246000","name":"Richard Piper","type":"Person","_key":"57049"} +{"label":"Simon Maiden","version":19,"id":"75745","lastModified":"1301902246000","name":"Simon Maiden","type":"Person","_key":"57050"} +{"label":"Mel Rogan","version":19,"id":"75746","lastModified":"1301902246000","name":"Mel Rogan","type":"Person","_key":"57051"} +{"label":"Annie Byron","version":19,"id":"75747","lastModified":"1301902246000","name":"Annie Byron","type":"Person","_key":"57052"} +{"label":"Yutaka Izumihara","version":20,"id":"75748","lastModified":"1301902220000","name":"Yutaka Izumihara","type":"Person","_key":"57053"} +{"label":"Martin Broome","version":19,"id":"75749","lastModified":"1301902246000","name":"Martin Broome","type":"Person","_key":"57054"} +{"label":"James Reyne","version":21,"id":"75750","lastModified":"1301902072000","name":"James Reyne","type":"Person","_key":"57055"} +{"label":"Steve Rodgers","version":21,"id":"75751","lastModified":"1301902246000","name":"Steve Rodgers","type":"Person","_key":"57056"} +{"label":"Ned Manning","version":23,"id":"75752","lastModified":"1301902009000","name":"Ned Manning","type":"Person","_key":"57057"} +{"label":"Morgan O'Neill","version":19,"id":"75753","lastModified":"1301902246000","name":"Morgan O'Neill","type":"Person","_key":"57058"} +{"label":"Rudi Baker","version":19,"id":"75754","lastModified":"1301902072000","name":"Rudi Baker","type":"Person","_key":"57059"} +{"label":"Anthony Jensen","version":19,"id":"75755","lastModified":"1301902246000","name":"Anthony Jensen","type":"Person","_key":"57060"} +{"label":"Tony Gilbert","version":19,"id":"75768","lastModified":"1301902072000","name":"Tony Gilbert","type":"Person","_key":"57061"} +{"label":"Andrew Pante","version":19,"id":"75769","lastModified":"1301902072000","name":"Andrew Pante","type":"Person","_key":"57062"} +{"label":"Gordon Westman","version":19,"id":"75770","lastModified":"1301902072000","name":"Gordon Westman","type":"Person","_key":"57063"} +{"label":"The Power of One","description":"PK, an English orphan terrorized for his family's political beliefs in Africa, turns to his only friend, a kindly world-wise prisoner, Geel Piet. Geel teaches him how to box with the motto \u201cfight with your fists and lead with your heart\u201d. As he grows to manhood, PK uses these words to take on the system and the injustices he sees around him - and finds that one person really can make a difference.","id":"13823","runtime":127,"imdbId":"tt0105159","version":205,"lastModified":"1301904942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e62\/4bc93fbf017a3c57fe01ae62\/the-power-of-one-mid.jpg","studio":"Alcor Films","genre":"Drama","title":"The Power of One","releaseDate":716688000000,"language":"en","tagline":"An exhilarating epic of a triumph of the heart.","type":"Movie","_key":"57064"} +{"label":"Nomadlozi Kubheka","version":19,"id":"75772","lastModified":"1301901535000","name":"Nomadlozi Kubheka","type":"Person","_key":"57065"} +{"label":"Agatha Hurle","version":19,"id":"75773","lastModified":"1301902072000","name":"Agatha Hurle","type":"Person","_key":"57066"} +{"label":"Nigel Ivy","version":19,"id":"75774","lastModified":"1301902072000","name":"Nigel Ivy","type":"Person","_key":"57067"} +{"label":"Tracy Brooks Swope","version":23,"id":"75775","lastModified":"1301901935000","name":"Tracy Brooks Swope","type":"Person","_key":"57068"} +{"label":"Brendan Deary","version":19,"id":"75776","lastModified":"1301902246000","name":"Brendan Deary","type":"Person","_key":"57069"} +{"label":"Winston Mangwarara","version":19,"id":"75777","lastModified":"1301902072000","name":"Winston Mangwarara","type":"Person","_key":"57070"} +{"label":"Guy Witcher","version":22,"id":"75778","lastModified":"1301901833000","name":"Guy Witcher","type":"Person","_key":"57071"} +{"label":"Tonderai Masenda","version":19,"id":"75779","lastModified":"1301902072000","name":"Tonderai Masenda","type":"Person","_key":"57072"} +{"label":"Cecil Zilla Mamanzi","version":19,"id":"75780","lastModified":"1301902072000","name":"Cecil Zilla Mamanzi","type":"Person","_key":"57073"} +{"label":"John Turner","version":20,"id":"75781","lastModified":"1301901867000","name":"John Turner","type":"Person","_key":"57074"} +{"label":"Robbie Bulloch","version":19,"id":"75782","lastModified":"1301902246000","name":"Robbie Bulloch","type":"Person","_key":"57075"} +{"label":"Gordon Arnell","version":19,"id":"75783","lastModified":"1301902071000","name":"Gordon Arnell","type":"Person","_key":"57076"} +{"label":"Jeremiah Mnisi","version":19,"id":"75784","lastModified":"1301902071000","name":"Jeremiah Mnisi","type":"Person","_key":"57077"} +{"label":"Paul Tingay","version":19,"id":"75785","lastModified":"1301902071000","name":"Paul Tingay","type":"Person","_key":"57078"} +{"label":"Hywell Williams","version":19,"id":"75786","lastModified":"1301902071000","name":"Hywell Williams","type":"Person","_key":"57079"} +{"label":"Michael Brunner","version":19,"id":"75787","lastModified":"1301902071000","name":"Michael Brunner","type":"Person","_key":"57080"} +{"label":"Gert Van Niekirk","version":19,"id":"75788","lastModified":"1301902071000","name":"Gert Van Niekirk","type":"Person","_key":"57081"} +{"label":"Simon Fenton","version":23,"id":"75789","lastModified":"1301901609000","name":"Simon Fenton","type":"Person","_key":"57082"} +{"label":"Ed Beeten","version":20,"id":"75791","lastModified":"1301902175000","name":"Ed Beeten","type":"Person","_key":"57083"} +{"label":"Dominic Walker","version":19,"id":"75792","lastModified":"1301902246000","name":"Dominic Walker","type":"Person","_key":"57084"} +{"label":"Robert Thomas Reed","version":19,"id":"75793","lastModified":"1301902071000","name":"Robert Thomas Reed","type":"Person","_key":"57085"} +{"label":"Roy Francis","version":19,"id":"75794","lastModified":"1301902071000","name":"Roy Francis","type":"Person","_key":"57086"} +{"label":"Tim Lewiston","version":20,"id":"54743","lastModified":"1301902098000","name":"Tim Lewiston","type":"Person","_key":"57087"} +{"label":"Alan Mullen","version":19,"id":"75809","lastModified":"1301902246000","name":"Alan Mullen","type":"Person","_key":"57088"} +{"label":"Adam Somner","version":19,"id":"75810","lastModified":"1301902246000","name":"Adam Somner","type":"Person","_key":"57089"} +{"label":"Superstar","description":"Orphan Mary Katherine Gallagher, an ugly duckling at St. Monica High School, has a dream: to be kissed soulfully. She decides she can realize this dream if she becomes a superstar, so her prayers, her fantasies, and her conversations with her only friend focus on achieving super-stardom.","id":"13824","runtime":81,"imdbId":"tt0167427","version":172,"lastModified":"1301903760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f3\/4d44828a7b9aa15bbf0063f3\/superstar-mid.jpg","studio":"SNL Studios","genre":"Comedy","title":"Superstar","releaseDate":939340800000,"language":"en","tagline":"Dare to dream.","type":"Movie","_key":"57090"} +{"label":"The Lazarus Project","description":"A harrowing and frightening thriller about a man who has everything he's ever loved stripped away from him; and to earn his life and family back, he must face obstacles of mystical origins, endure countless tests of his faith, struggle with his own sanity, and explore the depth and the power of his soul.","id":"13825","runtime":100,"imdbId":"tt0464041","version":299,"lastModified":"1301903125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8b\/4bc93fc5017a3c57fe01ae8b\/the-lazarus-project-mid.jpg","studio":"Inferno Distribution","genre":"Drama","title":"The Lazarus Project","releaseDate":1224806400000,"language":"en","type":"Movie","_key":"57091"} +{"label":"Ross McMillan","version":21,"id":"75812","lastModified":"1301901845000","name":"Ross McMillan","type":"Person","_key":"57092"} +{"label":"Aaron Hughes","version":20,"id":"75813","lastModified":"1301901867000","name":"Aaron Hughes","type":"Person","_key":"57093"} +{"label":"Sean Skene","version":20,"id":"75814","lastModified":"1301901867000","name":"Sean Skene","type":"Person","_key":"57094"} +{"label":"David Duncan","version":22,"id":"21870","lastModified":"1301901555000","name":"David Duncan","type":"Person","_key":"57095"} +{"label":"Mike O'Brien","version":20,"id":"75815","lastModified":"1301902071000","name":"Mike O'Brien","type":"Person","_key":"57096"} +{"label":"Steve Ratzlaff","version":20,"id":"75816","lastModified":"1301901867000","name":"Steve Ratzlaff","type":"Person","_key":"57097"} +{"label":"Dan Skene","version":20,"id":"75817","lastModified":"1301901867000","name":"Dan Skene","type":"Person","_key":"57098"} +{"label":"Susan Kelso","version":20,"id":"75818","lastModified":"1301901720000","name":"Susan Kelso","type":"Person","_key":"57099"} +{"label":"Manfred Maretzki","version":25,"id":"75819","lastModified":"1301901474000","name":"Manfred Maretzki","type":"Person","_key":"57100"} +{"label":"Aryanna Zamonsky","version":20,"id":"75820","lastModified":"1301901720000","name":"Aryanna Zamonsky","type":"Person","_key":"57101"} +{"label":"Lisa Anne Durupt","version":20,"id":"75821","lastModified":"1301901867000","name":"Lisa Anne Durupt","type":"Person","_key":"57102"} +{"label":"Jessica Burleson","version":20,"id":"75822","lastModified":"1301901720000","name":"Jessica Burleson","type":"Person","_key":"57103"} +{"label":"John Glenn","version":20,"id":"75823","lastModified":"1301901535000","name":"John Glenn","type":"Person","_key":"57104"} +{"label":"Ronaldo Nacionales","version":20,"id":"75835","lastModified":"1301902071000","name":"Ronaldo Nacionales","type":"Person","_key":"57105"} +{"label":"Markian Saray","version":20,"id":"75836","lastModified":"1301902071000","name":"Markian Saray","type":"Person","_key":"57106"} +{"label":"Knife Edge","description":"A successful Wall Street trader returns to England with her new husband and five-year-old son, but their new start together turns into a nightmare when they move into a country house which contains a terrible secret.","id":"13826","runtime":90,"imdbId":"tt0810924","version":92,"lastModified":"1301420782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fd\/4cb5ede25e73d677810001fd\/knife-edge-mid.jpg","title":"Knife Edge","releaseDate":1262304000000,"language":"en","type":"Movie","_key":"57107"} +{"label":"Natalie Press","version":23,"id":"84863","lastModified":"1301901717000","name":"Natalie Press","type":"Person","_key":"57108"} +{"label":"Jamie Harris","version":19,"id":"111195","lastModified":"1301902599000","name":"Jamie Harris","type":"Person","_key":"57109"} +{"label":"Surfer, Dude","description":"A wave twisting tale of a soul searching surfer experiencing an existential crisis.","id":"13827","runtime":85,"imdbId":"tt0976247","homepage":"http:\/\/www.surferdudethemovie.com\/","version":248,"lastModified":"1301903749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e99\/4bc93fc9017a3c57fe01ae99\/surfer-dude-mid.jpg","genre":"Comedy","title":"Surfer, Dude","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"57110"} +{"label":"S.R. Bindler","version":22,"id":"75882","lastModified":"1301901765000","name":"S.R. Bindler","type":"Person","_key":"57111"} +{"label":"X-Cross","description":"No overview found.","id":"13828","runtime":0,"imdbId":"tt1043877","version":101,"lastModified":"1301905161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea2\/4bc93fca017a3c57fe01aea2\/x-cross-mid.jpg","genre":"Action","title":"X-Cross","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57112"} +{"label":"Ami Suzuki","version":19,"id":"133059","lastModified":"1301902748000","name":"Ami Suzuki","type":"Person","_key":"57113"} +{"label":"Shottas","description":"A raw urban drama about two friends raised on the dangerous streets of Kingston, Jamaica. Biggs and Wayne take on the \"Shotta\" way of life to survive. As young boys, they begin a life of crime, eventually moving to the US where they begin a ruthless climb from the bottom. They remain bound to each other by their shottas loyalty as they aggressively take control of the Jamaican underworld.","id":"13830","runtime":95,"imdbId":"tt0281190","version":208,"lastModified":"1301903094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4bc93fca017a3c57fe01aeab\/shottas-mid.jpg","studio":"Emmett\/Furla Films","genre":"Action","title":"Shottas","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"57114"} +{"label":"Spragga Benz","version":20,"id":"75837","lastModified":"1301902176000","name":"Spragga Benz","type":"Person","_key":"57115"} +{"label":"Louie Rankin","version":19,"id":"75838","lastModified":"1301901933000","name":"Louie Rankin","type":"Person","_key":"57116"} +{"label":"Screechie Bop","version":20,"id":"75839","lastModified":"1301902201000","name":"Screechie Bop","type":"Person","_key":"57117"} +{"label":"San San","version":19,"id":"75840","lastModified":"1301902304000","name":"San San","type":"Person","_key":"57118"} +{"label":"Jabba","version":20,"id":"75841","lastModified":"1301902127000","name":"Jabba","type":"Person","_key":"57119"} +{"label":"Assassin","version":22,"id":"5429","lastModified":"1301901553000","name":"Assassin","type":"Person","_key":"57120"} +{"label":"Beast","version":19,"id":"75842","lastModified":"1301902304000","name":"Beast","type":"Person","_key":"57121"} +{"label":"Fabien Dominique","version":19,"id":"75843","lastModified":"1301902304000","name":"Fabien Dominique","type":"Person","_key":"57122"} +{"label":"J.R. Silvera","version":19,"id":"75844","lastModified":"1301902304000","name":"J.R. Silvera","type":"Person","_key":"57123"} +{"label":"Carlton Grant Jr.","version":19,"id":"75845","lastModified":"1301902304000","name":"Carlton Grant Jr.","type":"Person","_key":"57124"} +{"label":"Lennox Lewis","version":20,"id":"75846","lastModified":"1301902355000","name":"Lennox Lewis","type":"Person","_key":"57125"} +{"label":"Lyndale V. Pettus","version":20,"id":"75864","lastModified":"1301902127000","name":"Lyndale V. Pettus","type":"Person","_key":"57126"} +{"label":"Adam Doench","version":19,"id":"75865","lastModified":"1301901933000","name":"Adam Doench","type":"Person","_key":"57127"} +{"label":"Cess Silvera","version":21,"id":"75847","lastModified":"1301902127000","name":"Cess Silvera","type":"Person","_key":"57128"} +{"label":"Ricky Gervais Live: Animals","description":"Ricky Gervais entertains a live audience in his first stand-up routine.","id":"13831","runtime":73,"imdbId":"tt0397612","version":88,"lastModified":"1301904361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb4\/4bc93fcb017a3c57fe01aeb4\/ricky-gervais-live-animals-mid.jpg","genre":"Comedy","title":"Ricky Gervais Live: Animals","releaseDate":1069027200000,"language":"en","tagline":"Life on Earth: the bits David Attenborough left out.","type":"Movie","_key":"57129"} +{"label":"Dominic Brigstocke","version":27,"id":"78176","lastModified":"1301901782000","name":"Dominic Brigstocke","type":"Person","_key":"57130"} +{"label":"Ricky Gervais Live 2: Politics","description":"A year after Animals, Ricky Gervais comes back with his second stand up comedy tour: Politics.","id":"13832","runtime":68,"imdbId":"tt0439784","version":139,"lastModified":"1301904234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebd\/4bc93fcc017a3c57fe01aebd\/ricky-gervais-live-2-politics-mid.jpg","studio":"Universal Studios","genre":"Comedy","title":"Ricky Gervais Live 2: Politics","releaseDate":1100476800000,"language":"en","type":"Movie","_key":"57131"} +{"label":"Ash Atalla","version":17,"id":"91299","lastModified":"1301902677000","name":"Ash Atalla","type":"Person","_key":"57132"} +{"label":"Robin Ince","version":21,"id":"76311","lastModified":"1301902144000","name":"Robin Ince","type":"Person","_key":"57133"} +{"label":"Karl Pilkington","version":17,"id":"91300","lastModified":"1301902677000","name":"Karl Pilkington","type":"Person","_key":"57134"} +{"label":"Ricky Gervais Live 3: Fame","description":"Solid stand-up with the usual character and material from Gervais.","id":"13833","runtime":79,"imdbId":"tt0993779","version":47,"lastModified":"1301903346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec6\/4bc93fcc017a3c57fe01aec6\/ricky-gervais-live-3-fame-mid.jpg","genre":"Comedy","title":"Ricky Gervais Live 3: Fame","releaseDate":1194825600000,"language":"en","type":"Movie","_key":"57135"} +{"label":"Missing in America","description":"A haunted Vietnam veteran, living in exile in the forests of the Pacific Northwest, is faced with a life-changing decision after he is visited by a former platoon member and his young Amerasian daughter.","id":"13834","runtime":102,"imdbId":"tt0384699","version":184,"lastModified":"1301904568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecf\/4bc93fd0017a3c57fe01aecf\/missing-in-america-mid.jpg","studio":"Intrinsic Value Films","genre":"Drama","title":"Missing in America","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"57136"} +{"label":"Gabrielle Savage Dockterman","version":22,"id":"75868","lastModified":"1301901779000","name":"Gabrielle Savage Dockterman","type":"Person","_key":"57137"} +{"label":"Victor Landrie","version":20,"id":"75880","lastModified":"1301902327000","name":"Victor Landrie","type":"Person","_key":"57138"} +{"label":"Real Time","description":"Real Time is a comedic drama about a compulsive gambler given one hour to live by the man hired to kill him.","id":"13835","runtime":80,"imdbId":"tt0983909","trailer":"http:\/\/www.youtube.com\/watch?v=vCcGF4KTOlo","version":305,"lastModified":"1301907256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed8\/4bc93fd1017a3c57fe01aed8\/real-time-mid.jpg","genre":"Comedy","title":"Real Time","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"57139"} +{"label":"Randall Cole","version":22,"id":"75881","lastModified":"1301901647000","name":"Randall Cole","type":"Person","_key":"57140"} +{"label":"Race to Witch Mountain","description":"A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.","id":"13836","runtime":98,"imdbId":"tt1075417","trailer":"http:\/\/www.youtube.com\/watch?v=910","homepage":"http:\/\/disneydvd.disney.go.com\/race-to-witch-mountain.html","version":319,"lastModified":"1301901741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79c\/4d7a15797b9aa11a0800079c\/race-to-witch-mountain-mid.jpg","studio":"Buena Vista Pictures","genre":"Adventure","title":"Race to Witch Mountain","releaseDate":1236902400000,"language":"en","tagline":"The race is on","type":"Movie","_key":"57141"} +{"label":"HDNet Fights: Destruction","description":"No overview found.","id":"13840","runtime":0,"version":18,"lastModified":"1300979719000","title":"HDNet Fights: Destruction","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57142"} +{"label":"Rad","description":"A BMX racer who lives in a small town with his mother and sister is faced with a tough decision, qualify for Helltrack or take his SAT's in order to attend college.","id":"13841","runtime":91,"imdbId":"tt0091817","trailer":"http:\/\/www.youtube.com\/watch?v=607eTT2y1ZU","version":115,"lastModified":"1301904041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f03\/4bc93fd9017a3c57fe01af03\/rad-mid.jpg","studio":"TaliaFilm II Productions","genre":"Drama","title":"Rad","releaseDate":511747200000,"language":"en","tagline":"A hometown kid on his BMX against the best in the world. At Helltrack... the heat is on.","type":"Movie","_key":"57143"} +{"label":"Bill Allen","version":19,"id":"92756","lastModified":"1301902677000","name":"Bill Allen","type":"Person","_key":"57144"} +{"label":"Lori Loughlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/153\/4bd792c3017a3c21f5000153\/lori-loughlin-profile.jpg","version":29,"id":"92509","lastModified":"1301902695000","name":"Lori Loughlin","type":"Person","_key":"57145"} +{"label":"Alfie Wise","version":18,"id":"92757","lastModified":"1301902505000","name":"Alfie Wise","type":"Person","_key":"57146"} +{"label":"Marta Kober","version":19,"id":"92758","lastModified":"1301902695000","name":"Marta Kober","type":"Person","_key":"57147"} +{"label":"Jamie Clarke","version":18,"id":"92759","lastModified":"1301902988000","name":"Jamie Clarke","type":"Person","_key":"57148"} +{"label":"Laura Jacoby","version":18,"id":"92760","lastModified":"1301902505000","name":"Laura Jacoby","type":"Person","_key":"57149"} +{"label":"H.B. Haggerty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/502\/4c06c0f6017a3c7e8f000502\/h-b-haggerty-profile.jpg","version":21,"id":"92761","lastModified":"1301902988000","name":"H.B. Haggerty","type":"Person","_key":"57150"} +{"label":"Chad Hayes","version":26,"id":"22039","lastModified":"1301901562000","name":"Chad Hayes","type":"Person","_key":"57151"} +{"label":"Carey Hayes","version":25,"id":"22038","lastModified":"1301901349000","name":"Carey Hayes","type":"Person","_key":"57152"} +{"label":"Kellie McQuiggin","version":18,"id":"92762","lastModified":"1301902380000","name":"Kellie McQuiggin","type":"Person","_key":"57153"} +{"label":"Beverley Hendry","version":18,"id":"92763","lastModified":"1301903059000","name":"Beverley Hendry","type":"Person","_key":"57154"} +{"label":"Broken Bridges","description":"A fading country music star (Keith) returns to his hometown, where he reunites with his childhood sweetheart and also meets his 16-year-old daughter for the first time.","id":"13842","runtime":105,"imdbId":"tt0477392","version":234,"lastModified":"1301416956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58e\/4d1970fc5e73d6083400a58e\/broken-bridges-mid.jpg","studio":"ChickFlick Productions","genre":"Drama","title":"Broken Bridges","releaseDate":1157673600000,"language":"en","type":"Movie","_key":"57155"} +{"label":"Steven Goldmann","version":20,"id":"85475","lastModified":"1301901608000","name":"Steven Goldmann","type":"Person","_key":"57156"} +{"label":"Brian F. Durkin","version":15,"id":"146020","lastModified":"1301903096000","name":"Brian F. Durkin","type":"Person","_key":"57157"} +{"label":"Jason Leith","version":15,"id":"146021","lastModified":"1301903088000","name":"Jason Leith","type":"Person","_key":"57158"} +{"label":"Richard Tillman","version":21,"id":"84048","lastModified":"1301902501000","name":"Richard Tillman","type":"Person","_key":"57159"} +{"label":"Toby Keith","version":22,"id":"79244","lastModified":"1301901558000","name":"Toby Keith","type":"Person","_key":"57160"} +{"label":"Leland L. Jones","version":15,"id":"146022","lastModified":"1301903088000","name":"Leland L. Jones","type":"Person","_key":"57161"} +{"label":"Lindsey Haun","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a88\/4d90ed187b9aa16755003a88\/lindsey-haun-profile.jpg","version":21,"id":"78229","lastModified":"1301901675000","name":"Lindsey Haun","type":"Person","_key":"57162"} +{"label":"Jeff Portell","version":15,"id":"146023","lastModified":"1301903088000","name":"Jeff Portell","type":"Person","_key":"57163"} +{"label":"Greg Clarkson","version":15,"id":"146024","lastModified":"1301903088000","name":"Greg Clarkson","type":"Person","_key":"57164"} +{"label":"Sharon Blackwood","version":15,"id":"146025","lastModified":"1301903097000","name":"Sharon Blackwood","type":"Person","_key":"57165"} +{"label":"Alibi","description":"No overview found.","id":"13847","runtime":0,"version":478,"lastModified":"1301063997000","genre":"Action","title":"Alibi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57166"} +{"label":"Stuck","description":"A young woman commits a hit-and-run, then finds her fate tied to her victim.","id":"13848","runtime":85,"imdbId":"tt0758786","version":267,"lastModified":"1301905393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1d\/4bc93fde017a3c57fe01af1d\/stuck-mid.jpg","studio":"Prodigy Pictures","genre":"Crime","title":"Stuck","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"57167"} +{"label":"Rukiya Bernard","version":21,"id":"83948","lastModified":"1301902713000","name":"Rukiya Bernard","type":"Person","_key":"57168"} +{"label":"The Cottage","description":"n a remote part of the countryside, a bungled kidnapping turns into a living nightmare for four central characters when they cross paths with a psychopathic farmer and all hell breaks loose.","id":"13849","runtime":92,"imdbId":"tt0465430","version":156,"lastModified":"1301902941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2e\/4bc93fe0017a3c57fe01af2e\/the-cottage-mid.jpg","genre":"Horror","title":"The Cottage","releaseDate":1205452800000,"language":"en","type":"Movie","_key":"57169"} +{"label":"Jennifer Ellison","version":19,"id":"106049","lastModified":"1301902327000","name":"Jennifer Ellison","type":"Person","_key":"57170"} +{"label":"Song of the South","description":"Uncle Remus draws upon his tales of Brer Rabbit to help little Johnny deal his confusion over his parents' separation as well as his new life on the plantation. ","id":"13850","runtime":0,"imdbId":"tt0038969","version":98,"lastModified":"1301903847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4bc93fe2017a3c57fe01af3c\/song-of-the-south-mid.jpg","studio":"Walt Disney Pictures","genre":"Family","title":"Song of the South","releaseDate":-757382400000,"language":"en","type":"Movie","_key":"57171"} +{"label":"Batman: Gotham Knight","description":"Explore Bruce Wayne's transition from his beginning as a tormented vigilantee to The Dark Knight of a crumbling metropolis with six distinct chapters but intended to be viewed as a whole.","id":"13851","runtime":75,"imdbId":"tt1117563","trailer":"http:\/\/www.youtube.com\/watch?v=iXrhcQ7M-K4&hd=1","homepage":"http:\/\/www.warnervideo.com\/batmangothamknight\/","version":355,"lastModified":"1301902775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f66\/4bc93fe7017a3c57fe01af66\/batman-gotham-knight-mid.jpg","studio":"DC Comics","genre":"Action","title":"Batman: Gotham Knight","releaseDate":1215475200000,"language":"en","tagline":"Get Ready....To Rage Against Evil","type":"Movie","_key":"57172"} +{"label":"Kevin Conroy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0be\/4c8f12505e73d614940000be\/kevin-conroy-profile.jpg","version":48,"id":"34947","lastModified":"1301901218000","name":"Kevin Conroy","type":"Person","_key":"57173"} +{"label":"Andrea Romano","version":21,"id":"34945","lastModified":"1301901117000","name":"Andrea Romano","type":"Person","_key":"57174"} +{"label":"Scott Menville","version":22,"id":"113916","lastModified":"1301901163000","name":"Scott Menville","type":"Person","_key":"57175"} +{"label":"Corey Padnos","version":21,"id":"113917","lastModified":"1301901168000","name":"Corey Padnos","type":"Person","_key":"57176"} +{"label":"Crystal Scales","version":21,"id":"113918","lastModified":"1301901168000","name":"Crystal Scales","type":"Person","_key":"57177"} +{"label":"Hynden Walch","version":22,"id":"113919","lastModified":"1301901156000","name":"Hynden Walch","type":"Person","_key":"57178"} +{"label":"Will Friedle","version":33,"id":"76621","lastModified":"1301901117000","name":"Will Friedle","type":"Person","_key":"57179"} +{"label":"Yasuhiro Aoki","version":21,"id":"113911","lastModified":"1301902476000","name":"Yasuhiro Aoki","type":"Person","_key":"57180"} +{"label":"The Castle","description":"A Melbourne family is very happy living where they do, near the Melbourne airport (according to Jane Kennedy, it's \"practically their back yard\"). However, they are forced to leave their beloved home, by the Government and airport authorities. 'The Castle' is the story of how they fight to remain in their house, taking their case as far as the High Court.","id":"13852","runtime":82,"imdbId":"tt0118826","version":131,"lastModified":"1301905268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c7\/4d69fb145e73d66b2b0017c7\/the-castle-mid.jpg","studio":"Working Dog","genre":"Comedy","title":"The Castle","releaseDate":860630400000,"language":"en","type":"Movie","_key":"57181"} +{"label":"Michael Caton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eea\/4d9869245e73d623b0004eea\/michael-caton-profile.jpg","version":22,"id":"75889","lastModified":"1301901338000","name":"Michael Caton","type":"Person","_key":"57182"} +{"label":"Anne Tenney","version":19,"id":"75890","lastModified":"1301901430000","name":"Anne Tenney","type":"Person","_key":"57183"} +{"label":"Anthony Simcoe","version":21,"id":"26056","lastModified":"1301901400000","name":"Anthony Simcoe","type":"Person","_key":"57184"} +{"label":"Wayne Hope","version":23,"id":"75891","lastModified":"1301902246000","name":"Wayne Hope","type":"Person","_key":"57185"} +{"label":"Tiriel Mora","version":19,"id":"75892","lastModified":"1301902071000","name":"Tiriel Mora","type":"Person","_key":"57186"} +{"label":"Robyn Nevin","version":20,"id":"75893","lastModified":"1301901867000","name":"Robyn Nevin","type":"Person","_key":"57187"} +{"label":"Costas Kilias","version":26,"id":"75894","lastModified":"1301901720000","name":"Costas Kilias","type":"Person","_key":"57188"} +{"label":"Bryan Dawe","version":19,"id":"75895","lastModified":"1301902246000","name":"Bryan Dawe","type":"Person","_key":"57189"} +{"label":"Monty Maizels","version":19,"id":"75896","lastModified":"1301902246000","name":"Monty Maizels","type":"Person","_key":"57190"} +{"label":"Lynda Gibson","version":19,"id":"75897","lastModified":"1301902071000","name":"Lynda Gibson","type":"Person","_key":"57191"} +{"label":"John Benton","version":19,"id":"75898","lastModified":"1301902246000","name":"John Benton","type":"Person","_key":"57192"} +{"label":"Laurie Dobson","version":19,"id":"75899","lastModified":"1301902246000","name":"Laurie Dobson","type":"Person","_key":"57193"} +{"label":"John Lee","version":20,"id":"75900","lastModified":"1301902245000","name":"John Lee","type":"Person","_key":"57194"} +{"label":"Stephanie Daniel","version":19,"id":"75901","lastModified":"1301901867000","name":"Stephanie Daniel","type":"Person","_key":"57195"} +{"label":"Annie Maver","version":20,"id":"75910","lastModified":"1301902071000","name":"Annie Maver","type":"Person","_key":"57196"} +{"label":"Susannah Mott","version":19,"id":"75911","lastModified":"1301901867000","name":"Susannah Mott","type":"Person","_key":"57197"} +{"label":"The Clan of the Cave Bear","description":"Natural changes have the clans moving. Iza, medicine woman of the \"Clan of the Cave Bear\" finds little Ayla from the \"others\"' clan - tradition would have the clan kill Ayla immediately, but Iza insists on keeping her. When the little one finds a most needed new cave, she's allowed to stay - and thrive.","id":"13853","runtime":98,"imdbId":"tt0090848","version":110,"lastModified":"1301908008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f81\/4bc93feb017a3c57fe01af81\/the-clan-of-the-cave-bear-mid.jpg","genre":"Adventure","title":"The Clan of the Cave Bear","releaseDate":506304000000,"language":"en","type":"Movie","_key":"57198"} +{"label":"Michael Chapman","version":91,"id":"1044","lastModified":"1299951017000","name":"Michael Chapman","type":"Person","_key":"57199"} +{"label":"Acres Of Ass (Part 1)","description":"No overview found.","id":"13854","runtime":0,"version":27,"lastModified":"1301110482000","title":"Acres Of Ass (Part 1)","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57200"} +{"label":"The Chaser","description":"Joong-ho is a dirty detective turned pimp in financial trouble as several of his girls have recently disappeared without clearing their debts. While trying to track them down, he finds a clue that the vanished girls were all called up by a same client whom one of his girls is meeting with right now.","id":"13855","runtime":125,"imdbId":"tt1190539","trailer":"http:\/\/www.youtube.com\/watch?v=akiHkFxV24w","homepage":"http:\/\/www.thechaserfilm.com\/","version":147,"lastModified":"1301904569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f92\/4bc93fef017a3c57fe01af92\/13855-mid.jpg","genre":"Action","title":"The Chaser","releaseDate":1221868800000,"language":"en","type":"Movie","_key":"57201"} +{"label":"Yun-seok Kim","version":37,"id":"75912","lastModified":"1301901983000","name":"Yun-seok Kim","type":"Person","_key":"57202"} +{"label":"Jung-woo Ha","version":32,"id":"75913","lastModified":"1301901829000","name":"Jung-woo Ha","type":"Person","_key":"57203"} +{"label":"Yeong-hie Seo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/938\/4d90d3e37b9aa1675b003938\/yeong-hie-seo-profile.jpg","version":30,"id":"75914","lastModified":"1301944317000","name":"Yeong-hie Seo","type":"Person","_key":"57204"} +{"label":"Hong-jin Na","version":29,"id":"75915","lastModified":"1301901684000","name":"Hong-jin Na","type":"Person","_key":"57205"} +{"label":"Special","description":"A lonely metermaid has a psychotic reaction to his medication and becomes convinced he's a superhero. A very select group of people in life are truly gifted. Special is a movie about everyone else.","id":"13856","runtime":81,"imdbId":"tt0479162","trailer":"http:\/\/www.youtube.com\/watch?v=820","homepage":"http:\/\/www.specialthemovie.com\/","version":180,"lastModified":"1301903924000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa0\/4bc93ff1017a3c57fe01afa0\/special-mid.jpg","studio":"Rival Pictures","genre":"Drama","title":"Special","releaseDate":1195776000000,"language":"en","type":"Movie","_key":"57206"} +{"label":"Jeremy Passmore","version":21,"id":"75920","lastModified":"1301901982000","name":"Jeremy Passmore","type":"Person","_key":"57207"} +{"label":"Hal Haberman","version":21,"id":"75919","lastModified":"1301901647000","name":"Hal Haberman","type":"Person","_key":"57208"} +{"label":"Christopher Darga","version":22,"id":"75923","lastModified":"1301901949000","name":"Christopher Darga","type":"Person","_key":"57209"} +{"label":"Paul Blackthorne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59b\/4cbd0cca5e73d6350600059b\/paul-blackthorne-profile.jpg","version":26,"birthday":"-26096400000","id":"43231","birthplace":"Wellington, Shropshire, England","lastModified":"1301901358000","name":"Paul Blackthorne","type":"Person","_key":"57210"} +{"label":"Pirates","description":"This electrifying, swashbuckling sex-adventure takes you on a humorous and mystical journey through haunted seas and deep into the abyss of our most lustful desires... \nPirates features deadly swordplay against skeleton warriors, dirty pirate whores, awe-inspiring Incan magic, grandiose sea battles, and 10 of the most arousing sex scenes in the history of erotic cinema!","id":"13860","runtime":129,"imdbId":"tt0477457","trailer":"http:\/\/www.youtube.com\/watch?v=821","homepage":"http:\/\/www.piratesxxx.com\/","version":172,"lastModified":"1301901785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4c406f755e73d608f4000071\/pirates-mid.jpg","studio":"Adam & Eve Productions","genre":"Adventure","title":"Pirates","releaseDate":1104537600000,"language":"en","tagline":"Swash and unbuckle...","type":"Movie","_key":"57211"} +{"label":"Joone","version":59,"id":"76560","lastModified":"1301901361000","name":"Joone","type":"Person","_key":"57212"} +{"label":"Carmen Luvana","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/080\/4c36dbd07b9aa105f7000080\/carmen-luvana-profile.jpg","version":26,"birthday":"367365600000","id":"75925","lastModified":"1301901196000","name":"Carmen Luvana","type":"Person","_key":"57213"} +{"label":"Jesse Jane","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27f\/4c474da75e73d61ef800027f\/jesse-jane-profile.jpg","version":90,"birthday":"332546400000","id":"75924","birthplace":"Forth Worth, Texas","lastModified":"1301943049000","name":"Jesse Jane","type":"Person","_key":"57214"} +{"label":"Devon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/421\/4ca5d1935e73d636fb000421\/devon-profile.jpg","version":75,"birthday":"228351600000","id":"124136","birthplace":"Allentown, PA","lastModified":"1301901117000","name":"Devon","type":"Person","_key":"57215"} +{"label":"Jenaveve Jolie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a2\/4c36ffa27b9aa105f70000a2\/jenaveve-jolie-profile.jpg","version":27,"birthday":"455148000000","id":"124145","birthplace":"San Luis Obispo, CA","lastModified":"1301902221000","name":"Jenaveve Jolie","type":"Person","_key":"57216"} +{"label":"Austyn Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09c\/4c3703a37b9aa105f600009c\/austyn-moore-profile.jpg","version":23,"birthday":"357948000000","id":"124146","birthplace":"Florida","lastModified":"1301902353000","name":"Austyn Moore","type":"Person","_key":"57217"} +{"label":"Janine Lindemulder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ac\/4c37065c7b9aa105f70000ac\/janine-lindemulder-profile.jpg","version":26,"birthday":"-35686800000","id":"75926","birthplace":"La Mirada, CA","lastModified":"1301901126000","name":"Janine Lindemulder","type":"Person","_key":"57218"} +{"label":"Austin Kincaid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4c3709197b9aa105fa000096\/austin-kincaid-profile.jpg","version":23,"birthday":"316652400000","id":"124147","birthplace":"Asheville, North Carolina","lastModified":"1301903074000","name":"Austin Kincaid","type":"Person","_key":"57219"} +{"label":"Charmane Star","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b3\/4c3716167b9aa105fa0000b3\/charmane-star-profile.jpg","version":22,"birthday":"326325600000","id":"124148","lastModified":"1301902577000","name":"Charmane Star","type":"Person","_key":"57220"} +{"label":"Danika Sandberg","version":26,"id":"124157","lastModified":"1301902518000","name":"Danika Sandberg","type":"Person","_key":"57221"} +{"label":"Jolie Harris","version":26,"id":"124158","lastModified":"1301903072000","name":"Jolie Harris","type":"Person","_key":"57222"} +{"label":"Kelli Tyler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c3\/4c371c817b9aa105f90000c3\/kelli-tyler-profile.jpg","version":23,"birthday":"323391600000","id":"124159","birthplace":"Provo, UT","lastModified":"1301903007000","name":"Kelli Tyler","type":"Person","_key":"57223"} +{"label":"Kitty","version":26,"id":"124160","lastModified":"1301903007000","name":"Kitty","type":"Person","_key":"57224"} +{"label":"Lexi Lamour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4c371ee57b9aa105f80000d4\/lexi-lamour-profile.jpg","version":23,"birthday":"210034800000","id":"124161","birthplace":"Crown Point, IN","lastModified":"1301903058000","name":"Lexi Lamour","type":"Person","_key":"57225"} +{"label":"Maisie","version":26,"id":"124162","lastModified":"1301903057000","name":"Maisie","type":"Person","_key":"57226"} +{"label":"Malorie Christian","version":26,"id":"124163","lastModified":"1301902379000","name":"Malorie Christian","type":"Person","_key":"57227"} +{"label":"Mistress Erzsebet","version":26,"id":"124164","lastModified":"1301902535000","name":"Mistress Erzsebet","type":"Person","_key":"57228"} +{"label":"Red Siren","version":26,"id":"124165","lastModified":"1301902535000","name":"Red Siren","type":"Person","_key":"57229"} +{"label":"Trina Michaels","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4c3721ea7b9aa105fa0000e0\/trina-michaels-profile.jpg","version":23,"birthday":"379724400000","id":"124166","birthplace":"San Francisco, CA","lastModified":"1301902379000","name":"Trina Michaels","type":"Person","_key":"57230"} +{"label":"Kris Slater","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e3\/4c8cee085e73d606900004e3\/kris-slater-profile.jpg","version":38,"birthday":"372121200000","id":"124187","birthplace":"Oregon","lastModified":"1301902222000","name":"Kris Slater","type":"Person","_key":"57231"} +{"label":"Scott Nails","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14b\/4ca700315e73d643ec00014b\/scott-nails-profile.jpg","version":132,"birthday":"388879200000","id":"123089","birthplace":"Phoenix, Arizona","lastModified":"1301901597000","name":"Scott Nails","type":"Person","_key":"57232"} +{"label":"Tommy Gunn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/221\/4c4702105e73d61ef8000221\/tommy-gunn-profile.jpg","version":152,"birthday":"-83293200000","id":"76577","birthplace":"Cherry Hill, New Jersey","lastModified":"1301943049000","name":"Tommy Gunn","type":"Person","_key":"57233"} +{"label":"Aaron G.","version":24,"id":"124188","lastModified":"1301902700000","name":"Aaron G.","type":"Person","_key":"57234"} +{"label":"Brian Surewood","version":24,"birthday":"-207882000000","id":"124189","birthplace":"California, USA","lastModified":"1301902992000","name":"Brian Surewood","type":"Person","_key":"57235"} +{"label":"Cameron Lee","version":26,"id":"124190","lastModified":"1301903065000","name":"Cameron Lee","type":"Person","_key":"57236"} +{"label":"Captain Dagger","version":26,"id":"124191","lastModified":"1301903051000","name":"Captain Dagger","type":"Person","_key":"57237"} +{"label":"Dimonico","version":24,"id":"124192","lastModified":"1301903056000","name":"Dimonico","type":"Person","_key":"57238"} +{"label":"David H.","version":24,"id":"124193","lastModified":"1301903056000","name":"David H.","type":"Person","_key":"57239"} +{"label":"Dirk Snee","version":26,"id":"124194","lastModified":"1301903052000","name":"Dirk Snee","type":"Person","_key":"57240"} +{"label":"Doc","version":26,"id":"124195","lastModified":"1301903052000","name":"Doc","type":"Person","_key":"57241"} +{"label":"Frank Bukkwyd","version":35,"id":"123085","lastModified":"1301903007000","name":"Frank Bukkwyd","type":"Person","_key":"57242"} +{"label":"Halla Valentine","version":26,"id":"124197","lastModified":"1301903056000","name":"Halla Valentine","type":"Person","_key":"57243"} +{"label":"Harry Bali","version":26,"id":"124198","lastModified":"1301903062000","name":"Harry Bali","type":"Person","_key":"57244"} +{"label":"Ivan","version":26,"id":"124199","lastModified":"1301903066000","name":"Ivan","type":"Person","_key":"57245"} +{"label":"James Richard","version":26,"id":"124200","lastModified":"1301903066000","name":"James Richard","type":"Person","_key":"57246"} +{"label":"Joe Hopkins","version":26,"id":"124201","lastModified":"1301903074000","name":"Joe Hopkins","type":"Person","_key":"57247"} +{"label":"Joseph T. Creep","version":26,"id":"124202","lastModified":"1301902543000","name":"Joseph T. Creep","type":"Person","_key":"57248"} +{"label":"Joshua","version":31,"id":"124203","lastModified":"1301903020000","name":"Joshua","type":"Person","_key":"57249"} +{"label":"Julian","version":24,"birthday":"24534000000","id":"124204","birthplace":"Santiago, Chile","lastModified":"1301903029000","name":"Julian","type":"Person","_key":"57250"} +{"label":"Keyser Soze","version":26,"id":"124205","lastModified":"1301903074000","name":"Keyser Soze","type":"Person","_key":"57251"} +{"label":"Little Don","version":26,"id":"124206","lastModified":"1301903007000","name":"Little Don","type":"Person","_key":"57252"} +{"label":"Mando M.","version":23,"id":"124207","lastModified":"1301902805000","name":"Mando M.","type":"Person","_key":"57253"} +{"label":"Nhan","version":27,"id":"124208","lastModified":"1301902353000","name":"Nhan","type":"Person","_key":"57254"} +{"label":"Nicodemus Grimm","version":25,"id":"124209","lastModified":"1301902426000","name":"Nicodemus Grimm","type":"Person","_key":"57255"} +{"label":"Pyro","version":25,"id":"124210","lastModified":"1301902805000","name":"Pyro","type":"Person","_key":"57256"} +{"label":"Ramblin Rob","version":25,"id":"124211","lastModified":"1301902805000","name":"Ramblin Rob","type":"Person","_key":"57257"} +{"label":"Roach","version":26,"id":"124212","lastModified":"1301903074000","name":"Roach","type":"Person","_key":"57258"} +{"label":"Nick Satanas","version":24,"id":"124213","lastModified":"1301903074000","name":"Nick Satanas","type":"Person","_key":"57259"} +{"label":"Ted Shred","version":26,"id":"124214","lastModified":"1301903074000","name":"Ted Shred","type":"Person","_key":"57260"} +{"label":"Tino","version":26,"id":"124215","lastModified":"1301903074000","name":"Tino","type":"Person","_key":"57261"} +{"label":"Trevor","version":24,"birthday":"-179370000000","id":"124216","birthplace":"California","lastModified":"1301903074000","name":"Trevor","type":"Person","_key":"57262"} +{"label":"William Q.","version":24,"id":"124217","lastModified":"1301902543000","name":"William Q.","type":"Person","_key":"57263"} +{"label":"Road to Singapore","description":"Bing Crosby an Bob Hope star in the first of the 'Road to' movies as two playboys trying to forget previous romances in Singapore - until they meet Dorothy Lamour...","id":"13861","runtime":85,"imdbId":"tt0032993","version":114,"lastModified":"1301905673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb6\/4bc93ff2017a3c57fe01afb6\/road-to-singapore-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Road to Singapore","releaseDate":-939772800000,"language":"en","type":"Movie","_key":"57264"} +{"label":"Dorothy Lamour","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4c40af8c7b9aa1459400003c\/dorothy-lamour-profile.jpg","version":42,"id":"83400","lastModified":"1301901505000","name":"Dorothy Lamour","type":"Person","_key":"57265"} +{"label":"Bob Hope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4bd08b90017a3c63e80001bb\/bob-hope-profile.jpg","version":62,"id":"82388","lastModified":"1301901132000","name":"Bob Hope","type":"Person","_key":"57266"} +{"label":"Victor Schertzinger","version":17,"id":"148849","lastModified":"1301903102000","name":"Victor Schertzinger","type":"Person","_key":"57267"} +{"label":"Baby Einstein Language Nursery","description":"This unique video introduces babies and toddlers to multilingual experiences that will stimulate and delight them through charming puppetry, timeless art, live-action footage, classical music and child-friendly poetry. Featuring child-friendly ... Full Descriptionarrangements of music by Brahms, Ravel, Strauss, Tchaikovsky and others.\n\n","id":"13862","runtime":162,"imdbId":"tt0500089","version":64,"lastModified":"1300979722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbf\/4bc93ff2017a3c57fe01afbf\/baby-einstein-language-nursery-mid.jpg","title":"Baby Einstein Language Nursery","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57268"} +{"label":"Baby Einstein: Baby MacDonald","description":"When babies and toddlers begin to learn that \"a cow goes 'Moo,'\" they become fascinated by a new world comprised of all types of animals and sounds. BABY EINSTEIN: BABY MACDONALD","id":"13863","runtime":30,"imdbId":"tt0406552","version":71,"lastModified":"1301908588000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc8\/4bc93ff3017a3c57fe01afc8\/baby-einstein-baby-macdonald-mid.jpg","genre":"Music","title":"Baby Einstein: Baby MacDonald","releaseDate":1079395200000,"language":"en","type":"Movie","_key":"57269"} +{"label":"Baby Einstein Baby Bach","description":"This unique video introduces babies and toddlers to musical experiences that will stimulate and delight them through charming puppetry, timeless art, live-action footage, classical music and child-friendly poetry. Featuring child-friendly arrangements","id":"13864","runtime":172,"imdbId":"tt0500003","version":68,"lastModified":"1301414575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd1\/4bc93ff3017a3c57fe01afd1\/baby-einstein-baby-bach-mid.jpg","title":"Baby Einstein Baby Bach","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57270"} +{"label":"Baby Einstein Baby Beethoven","description":"This DVD includes upbeat music for movement and active play, plus new activity modes: play, dance, and quiet-time modes; and new discovery cards: real-world animals and objects with sound effects.","id":"13865","runtime":28,"version":58,"lastModified":"1301907435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fda\/4bc93ff3017a3c57fe01afda\/baby-einstein-baby-beethoven-mid.jpg","title":"Baby Einstein Baby Beethoven","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"57271"} +{"label":"Baby Einstein Baby Da Vinci","description":"BABY EINSTEIN: BABY DA VINCI is a delightful introduction to the human body accompanied by classical music. Babies are treated to imagery of children, animals, puppets, famous","id":"13866","runtime":33,"imdbId":"tt0488487","version":84,"lastModified":"1301907186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe3\/4bc93ff4017a3c57fe01afe3\/baby-einstein-baby-da-vinci-mid.jpg","genre":"Family","title":"Baby Einstein Baby Da Vinci","releaseDate":1092096000000,"language":"en","type":"Movie","_key":"57272"} +{"label":"Baby Einstein Baby Galileo","description":"BABY GALILEO, brain stimulating classical music accompanies vibrant images of the planets and the universe. Designed for infants between the ages of approximately one and 36 months","id":"13867","runtime":30,"version":51,"lastModified":"1301907421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fec\/4bc93ff4017a3c57fe01afec\/baby-einstein-baby-galileo-mid.jpg","genre":"Family","title":"Baby Einstein Baby Galileo","releaseDate":1060041600000,"language":"en","type":"Movie","_key":"57273"} +{"label":"Baby Einstein Baby Monet","description":"BABY MONET DISCOVERING THE SEASONS presents an introduction to the seasons and the cultural expressions surrounding them. Visuals made to appeal to the very young acquaint them with the sounds and sights of the seasons, accompanied by artistic masterpieces like the paintings of Monet and the music of Vivaldi. Parents concerned with their children's ability to appreciate the arts can start educatin","id":"13868","runtime":34,"version":49,"lastModified":"1301908454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff5\/4bc93ff5017a3c57fe01aff5\/baby-einstein-baby-monet-mid.jpg","title":"Baby Einstein Baby Monet","releaseDate":1110240000000,"language":"en","type":"Movie","_key":"57274"} +{"label":"Baby Einstein Baby Neptune","description":"From the same company that produces BABY EINSTEIN comes BABY NEPTUNE. BABY NEPTUNE is an educational and imaginative look at the world of water, from the beach to the bath. Featuring baby friendly images like puppets and toys as well as music by Handel and other classical composers, BABY NEPTUNE is sure to stimulate and delight the mind of any young child. ","id":"13870","runtime":30,"imdbId":"tt0364969","version":432,"lastModified":"1301908485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00c\/4bc93ff9017a3c57fe01b00c\/baby-einstein-baby-neptune-mid.jpg","title":"Baby Einstein Baby Neptune","releaseDate":1047945600000,"language":"en","type":"Movie","_key":"57275"} +{"label":"Baby Einstein Baby Newton","description":"Parents Choice recommendation, Baby Newton Discovering Shapes DVD is hosted by colorful and playful puppets who take your child on a field trip through a shape-filled world of sights, motion and sound.","id":"13871","runtime":49,"version":64,"lastModified":"1301908199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/015\/4bc93ffa017a3c57fe01b015\/baby-einstein-baby-newton-mid.jpg","title":"Baby Einstein Baby Newton","releaseDate":1017100800000,"language":"en","type":"Movie","_key":"57276"} +{"label":"Baby Einstein Baby Noah","description":"This volume of BABY EINSTEIN uses animation to take your children on a tour of the globe, stopping off the see the animals and ... Full Descriptionscenery of each particular region. Two by two, the animals join the fun on the ark as your child tours the tropics, the outback, and more! ","id":"13872","runtime":38,"imdbId":"tt0406553","version":73,"lastModified":"1301906687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/028\/4bc93ffb017a3c57fe01b028\/baby-einstein-baby-noah-mid.jpg","genre":"Family","title":"Baby Einstein Baby Noah","releaseDate":1098748800000,"language":"en","type":"Movie","_key":"57277"} +{"label":"Baby Einstein Baby Santa","description":"Baby Santa's Music Box, the stimulation is similar, yet the learning is not quite so intentional--a relief for those of us a bit intimidated with the Russian, Japanese, and French introduced in the original film. No human words are spoken here. Rather, the sights and sounds of Christmas are presented in a visual feast of whimsical, happy scenes accompanied by seasonal music. From sledding and snowmen to glowing candles and shimmering ornaments, dozens of animated and live-action settings communi","id":"13873","runtime":30,"version":35,"lastModified":"1301908143000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4bc93ffb017a3c57fe01b02d\/baby-einstein-baby-santa-mid.jpg","title":"Baby Einstein Baby Santa","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57278"} +{"label":"Baby Einstein Baby Shakespeare","description":"A first-of-its-kind visual and auditory field trip into the rhythm of classic poems and the beauty of nature. When viewing the video, your child will discover 12 common words within the rich context of poetry and real-world video. This discovery ... Full Descriptioncan be reinforced by reading the companion \"Baby Shakespeare\" book with your child. Exposure to words in context is important in th","id":"13874","runtime":101,"version":37,"lastModified":"1301908550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/036\/4bc93ffb017a3c57fe01b036\/baby-einstein-baby-shakespeare-mid.jpg","title":"Baby Einstein Baby Shakespeare","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57279"} +{"label":"Baby Einstein Baby Van Gogh","description":"This unique video, starring \"Vincent Van Goat,\" introduces babies and toddlers to basic colors through charming puppetry, timeless art, live-action footage, classical music and child-friendly poetry. Includes images of Van Gogh's most famous ... Full Descriptionpaintings. Featuring child-friendly arrangements of music by Brahms, Ravel, Strauss, Tchaikovsky and others.","id":"13875","runtime":70,"version":28,"lastModified":"1301906715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/044\/4bc93ffc017a3c57fe01b044\/baby-einstein-baby-van-gogh-mid.jpg","title":"Baby Einstein Baby Van Gogh","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57280"} +{"label":"Baby Einstein Baby Wordsworth","description":"A playful introduction to words and sign language!As their communication skills continue to develop, little ones begin to recognize common words and may point to objects or pictures when these items are named. Baby Wordsworth playfully taps into your little one's natural curiosity and introduces 30 words from around the home -- both spoken and in sign language. This engaging program presents little ones with familiar objects in the kitchen, playroom, yard and more -- from the living room window ","id":"13876","runtime":39,"version":37,"lastModified":"1301905345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/056\/4bc93ffd017a3c57fe01b056\/baby-einstein-baby-wordsworth-mid.jpg","genre":"Music","title":"Baby Einstein Baby Wordsworth","releaseDate":1121731200000,"language":"en","type":"Movie","_key":"57281"} +{"label":"Baby Einstein Babys First Moves","description":"Within the first year of babies' lives, their motor skills begin to kick into high gear as they explore ways to physically interact with the world around them. Baby's First Moves is a playful celebration of their movement milestones -- including first steps, clapping, jumping, dancing, and more -- that invites parents and little ones to share in these fun-filled experiences together and discover ","id":"13877","runtime":32,"version":256,"lastModified":"1301907114000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4bc93ffd017a3c57fe01b064\/baby-einstein-babys-first-moves-mid.jpg","genre":"Music","title":"Baby Einstein Babys First Moves","releaseDate":1161648000000,"language":"en","type":"Movie","_key":"57282"} +{"label":"Baby Einstein Favorite Place","description":"No overview found.","id":"13878","runtime":35,"version":53,"lastModified":"1300979725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06d\/4bc93ffd017a3c57fe01b06d\/baby-einstein-favorite-place-mid.jpg","title":"Baby Einstein Favorite Place","releaseDate":1153785600000,"language":"en","type":"Movie","_key":"57283"} +{"label":"Baby Einstein Lullaby Time","description":"The award-winning BABY EINSTEIN series introduces babies over the age of one month old to the multi-sensory world, using ... Full Descriptionclassical music, colorful animation, and interactive games. This lullaby program is designed to provide soothing and entertaining music for your baby","id":"13879","runtime":31,"version":70,"lastModified":"1301906153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4bc93ffe017a3c57fe01b076\/baby-einstein-lullaby-time-mid.jpg","genre":"Family","title":"Baby Einstein Lullaby Time","releaseDate":1193702400000,"language":"en","type":"Movie","_key":"57284"} +{"label":"Baby Einstein My First Signs","description":"It's never too early to help infants and toddlers start communicating with the help of Baby Einstein. Starring Marlee Matlin, MY FIRST SIGNS teaches children as young ... Full Descriptionas three months to use sign language to express themselves. With signing, babies can learn to talk sooner and convey their wants and needs.","id":"13880","runtime":27,"version":328,"lastModified":"1301906061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/083\/4bc93ffe017a3c57fe01b083\/baby-einstein-my-first-signs-mid.jpg","genre":"Family","title":"Baby Einstein My First Signs","releaseDate":1173744000000,"language":"en","type":"Movie","_key":"57285"} +{"label":"Baby Einstein Neighborhood Animals","description":"Another entry in the popular BABY EINSTEIN series created by mother and teacher Julie Aigner-Clark, NEIGHBORHOOD ANIMALS is a wonderful introduction to the animals that a child will find close to home. The ... Full Descriptionhost, Pavlov the dog, takes the viewer through animals in nature footage and magical puppetry scored to classical music ","id":"13881","runtime":66,"imdbId":"tt0488493","version":71,"lastModified":"1301908137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08c\/4bc93ffe017a3c57fe01b08c\/baby-einstein-neighborhood-animals-mid.jpg","genre":"Family","title":"Baby Einstein Neighborhood Animals","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57286"} +{"label":"Baby Einstein Numbers Nursery","description":"Created by mother and teacher Julie Aigner-Clark, NUMBERS NURSERY is a continuation of her popular BABY EINSTEIN series and operates using the same premise: that great classical ... Full Descriptionmusic has positive effects on people of all ages, especially babies. In NUMBERS NURSERY, brain stimulating classical music helps introduce the numbers 1 through 5 in a way that encourages the toddler","id":"13882","runtime":30,"imdbId":"tt0406554","version":297,"lastModified":"1301649054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4bc93fff017a3c57fe01b095\/baby-einstein-numbers-nursery-mid.jpg","genre":"Family","title":"Baby Einstein Numbers Nursery","releaseDate":1069718400000,"language":"en","type":"Movie","_key":"57287"} +{"label":"Baby Einstein On the Go","description":"In this video designed to introduce babies and toddlers to the concept of transportation, youngsters are presented with such vehicles as cars, trains, boats, planes and more. By combining real-life images of various vehicles with fun puppet shows and the classical music of Rossini, Mozart, Beethoven, and Haydn, curious youngsters are encouraged to explore the world.","id":"13883","runtime":40,"version":65,"lastModified":"1301418071000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09e\/4bc93fff017a3c57fe01b09e\/baby-einstein-on-the-go-mid.jpg","genre":"Family","title":"Baby Einstein On the Go","releaseDate":1130198400000,"language":"en","type":"Movie","_key":"57288"} +{"label":"Baby Einstein World Animals","description":"On WORLD ANIMALS, classical music arrangements are combined with colorful puppetry to teach young viewers about both music and animals. Frisky host Jane, a monkey puppet, leads a journey around the globe to introduce babies to delightful wild animals while child-friendly classical music plays in the background","id":"13884","runtime":71,"imdbId":"tt0488494","version":70,"lastModified":"1300979726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ac\/4bc93fff017a3c57fe01b0ac\/baby-einstein-world-animals-mid.jpg","title":"Baby Einstein World Animals","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"57289"} +{"label":"Sweeney Todd: The Demon Barber of Fleet Street","description":"The infamous story of Benjamin Barker, a.k.a Sweeney Todd, who sets up a barber shop down in London which is the basis for a sinister partnership with his fellow tenant, Mrs. Lovett. Based on the hit Broadway musical.","id":"13885","runtime":116,"imdbId":"tt0408236","trailer":"http:\/\/www.youtube.com\/watch?v=1815","homepage":"http:\/\/www.sweeneytoddmovie.com\/","version":316,"lastModified":"1301901382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e7\/4bc94006017a3c57fe01b0e7\/sweeney-todd-the-demon-barber-of-fleet-street-mid.jpg","studio":"DreamWorks","genre":"Comedy","title":"Sweeney Todd: The Demon Barber of Fleet Street","releaseDate":1198195200000,"language":"en","tagline":"Never Forget. Never Forgive.","type":"Movie","_key":"57290"} +{"label":"Return to the Blue Lagoon","description":"Although the title rather suggests a sequel to The Blue Lagoon, this is rather a variation on the same theme--neither Christopher Atkins nor Brooke Shields returns--their characters are dead, but a new generation is shipwrecked again on the desert island. This time the two kids, Richard and Lilli, have no experience in the civilized world at all, and have to discover everything on their own, but love proves an indomitable instinct, even given a 'choice' of one inhabitant per gender.","id":"13888","runtime":98,"imdbId":"tt0102782","version":193,"lastModified":"1301903634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b37\/4d53fff05e73d617c7005b37\/return-to-the-blue-lagoon-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Return to the Blue Lagoon","releaseDate":681091200000,"language":"en","tagline":"Return to the Romance, Return to the Adventure... ","type":"Movie","_key":"57291"} +{"label":"Courtney Barilla","version":20,"id":"115889","lastModified":"1301902505000","name":"Courtney Barilla","type":"Person","_key":"57292"} +{"label":"William A. Graham","version":23,"id":"83467","lastModified":"1301902490000","name":"William A. Graham","type":"Person","_key":"57293"} +{"label":"Madadayo","description":"This film tells the story of professor Uehida Hyakken-sama (1889-1971), in Gotemba, around the forties. He was a university professor until an air raid, when he left to become a writer and has to live in a hut. His mood has hardly changed, not by the change nor by time. ","id":"13889","runtime":134,"imdbId":"tt0107474","version":110,"lastModified":"1301905112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/108\/4bc9400b017a3c57fe01b108\/madadayo-mid.jpg","studio":"DENTSU Music And Entertainment","genre":"Drama","title":"Madadayo","releaseDate":735004800000,"language":"en","type":"Movie","_key":"57294"} +{"label":"Citizen Ruth","description":"An irresponsible, drug-addicted, recently impregnated woman finds herself in the middle of an abortion debate when both parties attempt to sway her to their respective sides.","id":"13891","runtime":106,"imdbId":"tt0115906","version":93,"lastModified":"1301904347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4bc9400b017a3c57fe01b119\/citizen-ruth-mid.jpg","studio":"Independent Pictures (II)","genre":"Comedy","title":"Citizen Ruth","releaseDate":850435200000,"language":"en","type":"Movie","_key":"57295"} +{"label":"Scarfies","description":"This dark comedy is set in Dunedin, New Zealand. A university student finds an old \"abandoned\" house and proceeds to invite other students to share. It even has running electricity. But what is the catch?","id":"13892","runtime":101,"imdbId":"tt0189981","version":71,"lastModified":"1301907238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/122\/4bc9400c017a3c57fe01b122\/scarfies-mid.jpg","studio":"Nightmare Productions","title":"Scarfies","releaseDate":933811200000,"language":"en","type":"Movie","_key":"57296"} +{"label":"What Becomes of the Broken Hearted?","description":"5 Years have passed and Jake has turned his back on his family. He's still up to his usual tricks in McClutchy's Bar, unaware, as he downs his latest opponent, that his eldest son, Nig, Has dided in a gang fight. The uncomfortable family reuniion at Nig's funeral sparks a confrontations with second son Sonny, and sets Jake and Sonny on a downward spiral.","id":"13893","runtime":108,"imdbId":"tt0197094","version":43,"lastModified":"1301906095000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4bc9400c017a3c57fe01b12b\/what-becomes-of-the-broken-hearted-mid.jpg","studio":"New Zealand Film Commission","title":"What Becomes of the Broken Hearted?","releaseDate":927763200000,"language":"en","type":"Movie","_key":"57297"} +{"label":"Sharkwater","description":"Driven by passion fed from a life-long fascination with sharks, Stewart Stewart debunks historical stereotypes and media depictions of sharks as bloodthirsty, man-eating monsters and reveals the reality of sharks as pillars in the evolution of the seas.","id":"13894","runtime":89,"imdbId":"tt0856008","trailer":"http:\/\/www.youtube.com\/watch?v=ggtxA4wuXzY","version":140,"lastModified":"1301904081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/195\/4cc8ac167b9aa16b9d000195\/sharkwater-mid.jpg","studio":"SW Productions","genre":"Documentary","title":"Sharkwater","releaseDate":1157932800000,"language":"en","type":"Movie","_key":"57298"} +{"label":"Patrick Moore","version":22,"id":"87197","lastModified":"1301902387000","name":"Patrick Moore","type":"Person","_key":"57299"} +{"label":"Erich Ritter","version":20,"id":"87198","lastModified":"1301902537000","name":"Erich Ritter","type":"Person","_key":"57300"} +{"label":"Paul Watson","version":23,"id":"87201","lastModified":"1301902713000","name":"Paul Watson","type":"Person","_key":"57301"} +{"label":"Rob Stewart","version":20,"id":"87200","lastModified":"1301902539000","name":"Rob Stewart","type":"Person","_key":"57302"} +{"label":"Boris Worm","version":20,"id":"87202","lastModified":"1301902716000","name":"Boris Worm","type":"Person","_key":"57303"} +{"label":"Rob Stewart","version":20,"id":"87203","lastModified":"1301902677000","name":"Rob Stewart","type":"Person","_key":"57304"} +{"label":"A Teacher's Crime","description":"Carrie is an attractive high school history teacher who one day decides to help a troubled student, taking an special interest for him, unaware of the ruthless and perverse scheme masterminded for her.","id":"13896","runtime":93,"imdbId":"tt1133948","version":70,"lastModified":"1301903576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f4\/4c24b76d7b9aa144700000f4\/a-teacher-s-crime-mid.jpg","studio":"Capital Productions","genre":"Crime","title":"A Teacher's Crime","releaseDate":1209772800000,"language":"en","type":"Movie","_key":"57305"} +{"label":"Ashley Jones","version":19,"id":"112464","lastModified":"1301902226000","name":"Ashley Jones","type":"Person","_key":"57306"} +{"label":"Kyle Gatehouse","version":20,"id":"131335","lastModified":"1301902713000","name":"Kyle Gatehouse","type":"Person","_key":"57307"} +{"label":"Paula Jean Hixson","version":4,"id":"230595","lastModified":"1301904134000","name":"Paula Jean Hixson","type":"Person","_key":"57308"} +{"label":"Robert Malenfant","version":17,"id":"112160","lastModified":"1301902488000","name":"Robert Malenfant","type":"Person","_key":"57309"} +{"label":"The Circle","description":"Various women struggle to function in the oppressively sexist society of contemporary Iran.","id":"13898","runtime":90,"imdbId":"tt0255094","version":272,"lastModified":"1301908422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3f\/4d5a6fbb7b9aa122b7000a3f\/dayereh-mid.jpg","studio":"Jafar Panahi Film Productions","genre":"Drama","title":"The Circle","releaseDate":968371200000,"language":"en","type":"Movie","_key":"57310"} +{"label":"Nargess Mamizadeh","version":17,"id":"143272","lastModified":"1301902411000","name":"Nargess Mamizadeh","type":"Person","_key":"57311"} +{"label":"Maryiam Palvin Almani","version":17,"id":"143273","lastModified":"1301902411000","name":"Maryiam Palvin Almani","type":"Person","_key":"57312"} +{"label":"Mojgan Faramarzi","version":17,"id":"143274","lastModified":"1301902411000","name":"Mojgan Faramarzi","type":"Person","_key":"57313"} +{"label":"Elham Saboktakin","version":17,"id":"143275","lastModified":"1301902466000","name":"Elham Saboktakin","type":"Person","_key":"57314"} +{"label":"Monir Arab","version":17,"id":"143276","lastModified":"1301902411000","name":"Monir Arab","type":"Person","_key":"57315"} +{"label":"Maedeh Tahmasebi","version":17,"id":"143277","lastModified":"1301902411000","name":"Maedeh Tahmasebi","type":"Person","_key":"57316"} +{"label":"Maryam Shayegan","version":17,"id":"143278","lastModified":"1301902411000","name":"Maryam Shayegan","type":"Person","_key":"57317"} +{"label":"Dead or Alive 2 - T\u00f4b\u00f4sha","description":"Two contract killers cross paths in the middle of the same job and realize they are childhood friends. Together they take a break from killing and visit the small island they once called home. After reflecting on their past lives they decided to team up and use their talents in killing for good... much to the upset of the crime syndicates.","id":"13899","runtime":97,"imdbId":"tt0285005","version":68,"lastModified":"1301905700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ba\/4d28e1975e73d626ac0028ba\/dead-or-alive-2-t-b-sha-mid.jpg","studio":"Toei Video Company","title":"Dead or Alive 2 - T\u00f4b\u00f4sha","releaseDate":975715200000,"language":"en","type":"Movie","_key":"57318"} +{"label":"Twin Daggers","description":"A shady Los Angeles martial arts assassin is hired by a beautiful woman to avenge the death of her parents, who were killed by her evil twin sister. But when the hit man tracks down his target, he finds himself strangely attracted to her. Trapped between his heart and his duty, he ultimately faces a shattering new revelation.","id":"13901","runtime":98,"imdbId":"tt1266149","version":128,"lastModified":"1301904410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4c1a46c45e73d67fbf00007f\/twin-daggers-mid.jpg","genre":"Action","title":"Twin Daggers","releaseDate":1217203200000,"language":"en","type":"Movie","_key":"57319"} +{"label":"Veronica Bero","version":17,"id":"101151","lastModified":"1301902529000","name":"Veronica Bero","type":"Person","_key":"57320"} +{"label":"Vasilios E.","version":17,"id":"101152","lastModified":"1301902709000","name":"Vasilios E.","type":"Person","_key":"57321"} +{"label":"Keun-Hou Chen","version":18,"id":"101158","lastModified":"1301902714000","name":"Keun-Hou Chen","type":"Person","_key":"57322"} +{"label":"toxic","description":"The lives of a nightclub owner, a crime boss, a stripper, a bartender, two hitmen, a prostitute and a psychic take a turn for the worse when they are trapped in an escaped mental patient's sinister path of madness and destruction.","id":"13902","runtime":88,"imdbId":"tt0453560","version":126,"lastModified":"1301906888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/157\/4bc9400f017a3c57fe01b157\/toxic-mid.jpg","genre":"Action","title":"toxic","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"57323"} +{"label":"The Wizard of Gore","description":"No overview found.","id":"13903","runtime":0,"imdbId":"tt0765487","version":98,"lastModified":"1301648452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/172\/4bc94013017a3c57fe01b172\/the-wizard-of-gore-2007-mid.jpg","title":"The Wizard of Gore","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"57324"} +{"label":"Zomerhitte","description":"Fotograaf Bob (Waldemar Torenstra) ontmoet tijdens een broeierige zomer op Texel de geschiedenisstudente Kathleen (Sophie Hilbrand). Wanneer hij haar later weer tegenkomt in de disco, waar ze een zomerbaantje heeft, ziet hij dat ze wordt opgehaald door een oude man bekend als \"De Mummy\". Dan maakt Bob kennis met Federici, die net als hij onder de indruk is van de mooie Kathleen. In de daaropvolgende dagen ontstaat er een geheimzinnige band tussen de twee mannen. Bob - inmiddels in de ban van Kat","id":"13904","runtime":100,"imdbId":"tt0995757","homepage":"http:\/\/www.zomerhittedefilm.nl","version":74,"lastModified":"1301907387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/183\/4bc94014017a3c57fe01b183\/zomerhitte-mid.jpg","genre":"Drama","title":"Zomerhitte","releaseDate":1205971200000,"language":"en","type":"Movie","_key":"57325"} +{"label":"Waldemar Torenstra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a96\/4cc0c5187b9aa138d8001a96\/waldemar-torenstra-profile.jpg","version":23,"birthday":"133743600000","id":"87675","birthplace":"Amsterdam","lastModified":"1301902054000","name":"Waldemar Torenstra","type":"Person","_key":"57326"} +{"label":"Jelka van Houten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06a\/4bdc0ff4017a3c1d3900006a\/jelka-van-houten-profile.jpg","version":18,"id":"90978","lastModified":"1301903077000","name":"Jelka van Houten","type":"Person","_key":"57327"} +{"label":"Sophie Hilbrand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/052\/4bdc0f8f017a3c1d31000052\/sophie-hilbrand-profile.jpg","version":18,"id":"90981","lastModified":"1301903077000","name":"Sophie Hilbrand","type":"Person","_key":"57328"} +{"label":"Farscape: The Peacekeeper Wars","description":"Made for TV feature length film concluding the story lines from the cult Sci-Fi series Farscape following it's abrupt cancellation two years earlier.","id":"13905","runtime":140,"imdbId":"tt0387736","version":181,"lastModified":"1301902479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/190\/4bc94015017a3c57fe01b190\/farscape-the-peacekeeper-wars-mid.jpg","genre":"Science Fiction","title":"Farscape: The Peacekeeper Wars","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"57329"} +{"label":"Wayne Pygram","version":25,"id":"82434","lastModified":"1301902327000","name":"Wayne Pygram","type":"Person","_key":"57330"} +{"label":"David Franklin","version":25,"id":"26059","lastModified":"1301901562000","name":"David Franklin","type":"Person","_key":"57331"} +{"label":"Duncan Young","version":21,"id":"82435","lastModified":"1301902505000","name":"Duncan Young","type":"Person","_key":"57332"} +{"label":"Francesca Buller","version":20,"id":"82436","lastModified":"1301902537000","name":"Francesca Buller","type":"Person","_key":"57333"} +{"label":"Melissa Jaffer","version":20,"id":"82437","lastModified":"1301902529000","name":"Melissa Jaffer","type":"Person","_key":"57334"} +{"label":"Stephen James King","version":22,"id":"77722","lastModified":"1301902177000","name":"Stephen James King","type":"Person","_key":"57335"} +{"label":"Kurt & Courtney","description":"After rocker Kurt Cobain's death, ruled a suicide, a film crew arrives in Seattle to make a documentary. Director Nick Broomfield talks to lots of people. Portraits emerge: a shy, slight Kurt, weary of touring, embarrassed by fame, hooked on heroin; an out-going Courtney, dramatic, controlling, moving from groupie to star.","id":"13907","runtime":95,"imdbId":"tt0138563","version":152,"lastModified":"1301586573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4bc94016017a3c57fe01b1a2\/kurt-courtney-mid.jpg","studio":"Strength Ltd.","genre":"Documentary","title":"Kurt & Courtney","releaseDate":888537600000,"language":"en","type":"Movie","_key":"57336"} +{"label":"Nick Broomfield","version":28,"id":"92561","lastModified":"1301901807000","name":"Nick Broomfield","type":"Person","_key":"57337"} +{"label":"Dylan Carlson","version":17,"id":"92562","lastModified":"1301902709000","name":"Dylan Carlson","type":"Person","_key":"57338"} +{"label":"Kurt Cobain","version":25,"id":"92563","lastModified":"1301901647000","name":"Kurt Cobain","type":"Person","_key":"57339"} +{"label":"El Duce","version":17,"id":"92564","lastModified":"1301903036000","name":"El Duce","type":"Person","_key":"57340"} +{"label":"Larry Flynt","version":17,"id":"92565","lastModified":"1301902988000","name":"Larry Flynt","type":"Person","_key":"57341"} +{"label":"Tom Grant","version":17,"id":"92566","lastModified":"1301902988000","name":"Tom Grant","type":"Person","_key":"57342"} +{"label":"Hank Harrison","version":17,"id":"92567","lastModified":"1301902988000","name":"Hank Harrison","type":"Person","_key":"57343"} +{"label":"Sam Rubin","version":20,"id":"92568","lastModified":"1301902988000","name":"Sam Rubin","type":"Person","_key":"57344"} +{"label":"Pat Smear","version":18,"id":"92569","lastModified":"1301902677000","name":"Pat Smear","type":"Person","_key":"57345"} +{"label":"The Master of Disguise","description":"A sweet-natured Italian waiter named Pistachio Disguisey at his father Fabbrizio's restaurant, who happens to be a member of a family with supernatural skills of disguise. But moments later the patriarch of the Disguisey family is kidnapped Fabbrizio's former arch-enemy, Devlin Bowman, a criminal mastermind in an attempt to steal the world's most precious treasures from around the world. And it's up to Pistachio to track down Bowman and save his family before Bowman kills them!","id":"13908","runtime":80,"imdbId":"tt0295427","version":182,"lastModified":"1301904767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfa\/4d4f44467b9aa13aab00acfa\/the-master-of-disguise-mid.jpg","genre":"Comedy","title":"The Master of Disguise","releaseDate":1028246400000,"language":"en","tagline":"He can get into any disguise... getting out is another story.","type":"Movie","_key":"57346"} +{"label":"Perry Andelin Blake","version":35,"id":"20824","lastModified":"1302070576000","name":"Perry Andelin Blake","type":"Person","_key":"57347"} +{"label":"Austin Wolff","version":17,"id":"139759","lastModified":"1301902896000","name":"Austin Wolff","type":"Person","_key":"57348"} +{"label":"Robert Machray","version":18,"id":"139760","lastModified":"1301903040000","name":"Robert Machray","type":"Person","_key":"57349"} +{"label":"Rachel Lederman","version":17,"id":"139761","lastModified":"1301902736000","name":"Rachel Lederman","type":"Person","_key":"57350"} +{"label":"Jay Johnston","version":17,"id":"139762","lastModified":"1301902752000","name":"Jay Johnston","type":"Person","_key":"57351"} +{"label":"Mark Devine","version":17,"id":"139763","lastModified":"1301902753000","name":"Mark Devine","type":"Person","_key":"57352"} +{"label":"Kenan Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f7\/4d9aad317b9aa164cc0007f7\/kenan-thompson-profile.jpg","version":29,"id":"77330","lastModified":"1301975313000","name":"Kenan Thompson","type":"Person","_key":"57353"} +{"label":"She Wore a Yellow Ribbon","description":"After Custer's defeat at the Little Big Horn, a US Cavalry Captain takes his troop out on a final patrol to handle a breakout from a nearby Indian reservation. His mission is further complicated by the commanding officer's wife and niece who accompany the patrol.","id":"13909","runtime":103,"imdbId":"tt0041866","version":184,"lastModified":"1301904978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b8\/4bc94017017a3c57fe01b1b8\/she-wore-a-yellow-ribbon-mid.jpg","genre":"Action","title":"She Wore a Yellow Ribbon","releaseDate":-637286400000,"language":"en","type":"Movie","_key":"57354"} +{"label":"Death Defying Acts","description":"On a tour of Britain in 1926, Harry Houdini enters into a passionate affair with a psychic out to con the famous magician. ","id":"13910","runtime":97,"imdbId":"tt0472071","trailer":"http:\/\/www.youtube.com\/watch?v=4ZgR_7lBxTU","version":395,"lastModified":"1301903012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c1\/4bc94018017a3c57fe01b1c1\/death-defying-acts-mid.jpg","genre":"Drama","title":"Death Defying Acts","releaseDate":1189641600000,"language":"en","tagline":"There is no escape.","type":"Movie","_key":"57355"} +{"label":"Malcolm Shields","version":18,"id":"143419","lastModified":"1301902749000","name":"Malcolm Shields","type":"Person","_key":"57356"} +{"label":"Leni Harper","version":17,"id":"143420","lastModified":"1301902961000","name":"Leni Harper","type":"Person","_key":"57357"} +{"label":"Olivia Darnley","version":17,"id":"143421","lastModified":"1301902889000","name":"Olivia Darnley","type":"Person","_key":"57358"} +{"label":"Billy McColl","version":17,"id":"143422","lastModified":"1301903058000","name":"Billy McColl","type":"Person","_key":"57359"} +{"label":"James Holmes","version":17,"id":"143423","lastModified":"1301903032000","name":"James Holmes","type":"Person","_key":"57360"} +{"label":"Melanie Harris","version":17,"id":"143424","lastModified":"1301902895000","name":"Melanie Harris","type":"Person","_key":"57361"} +{"label":"Monkey Business","description":"Four stowaways get mixed up with gangsters while running riot on an ocean liner.","id":"13911","runtime":77,"imdbId":"tt0022158","version":106,"lastModified":"1301904907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4bc94018017a3c57fe01b1ca\/monkey-business-mid.jpg","genre":"Comedy","title":"Monkey Business","releaseDate":-1208217600000,"language":"en","type":"Movie","_key":"57362"} +{"label":"Norman Z. McLeod","version":35,"id":"82389","lastModified":"1301901606000","name":"Norman Z. McLeod","type":"Person","_key":"57363"} +{"label":"Rockliffe Fellowes","version":20,"id":"126749","lastModified":"1301902572000","name":"Rockliffe Fellowes","type":"Person","_key":"57364"} +{"label":"Harry Woods","version":20,"id":"100920","lastModified":"1301903021000","name":"Harry Woods","type":"Person","_key":"57365"} +{"label":"Thelma Todd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2d3\/4bf4459d017a3c6d920002d3\/thelma-todd-profile.jpg","version":28,"id":"97980","lastModified":"1301902730000","name":"Thelma Todd","type":"Person","_key":"57366"} +{"label":"Ruth Hall","version":20,"id":"126753","lastModified":"1301902572000","name":"Ruth Hall","type":"Person","_key":"57367"} +{"label":"Horse Feathers","description":"Quincy Adams Wagstaff, the new president of Huxley U, hires bumblers Baravelli and Pinky to help his school win the big football game against rival Darwin U.","id":"13912","runtime":68,"imdbId":"tt0023027","version":101,"lastModified":"1301903340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b6\/4cf2e66b7b9aa149c50000b6\/horse-feathers-mid.jpg","genre":"Comedy","title":"Horse Feathers","releaseDate":-1179273600000,"language":"en","tagline":"The Maddest Comics of the Screen!","type":"Movie","_key":"57368"} +{"label":"David Landau","version":19,"id":"131813","lastModified":"1301902921000","name":"David Landau","type":"Person","_key":"57369"} +{"label":"Animal Crackers","description":"Captain Spaulding, the noted explorer, returns from Africa and attends a gala party held by Mrs. Rittenhouse. A painting displayed at that party is stolen, and the Marxes help recover it. Well, maybe 'help' isn't quite the word I was looking for--this is the Marx Brothers, after all... ","id":"13913","runtime":97,"imdbId":"tt0020640","version":105,"lastModified":"1301904255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/111\/4cf2cb837b9aa14906000111\/animal-crackers-mid.jpg","genre":"Comedy","title":"Animal Crackers","releaseDate":-1241654400000,"language":"en","type":"Movie","_key":"57370"} +{"label":"Lillian Roth","version":19,"id":"136920","lastModified":"1301902190000","name":"Lillian Roth","type":"Person","_key":"57371"} +{"label":"Louis Sorin","version":3,"id":"229896","lastModified":"1300816680000","name":"Louis Sorin","type":"Person","_key":"57372"} +{"label":"Victor Heerman","version":17,"id":"144063","lastModified":"1301901671000","name":"Victor Heerman","type":"Person","_key":"57373"} +{"label":"Schwere Jungs","description":"No overview found.","id":"13914","runtime":94,"imdbId":"tt0780134","version":41,"lastModified":"1301420108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e9\/4bc9401e017a3c57fe01b1e9\/schwere-jungs-mid.jpg","genre":"Comedy","title":"Schwere Jungs","releaseDate":1169078400000,"language":"en","type":"Movie","_key":"57374"} +{"label":"Waydowntown","description":"Four young office workers have a bet going to see who can last the longest without going outside. In the maze that is the downtown core of a large city, glass skywalks connect apartment buildings, office towers and shopping malls. Its day 28 of the bet and over the lunch hour, as the office prepares for the company founder's retirement party, things start to seriously unravel.","id":"13915","runtime":84,"imdbId":"tt0219405","version":81,"lastModified":"1301908008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f2\/4bc9401e017a3c57fe01b1f2\/waydowntown-mid.jpg","genre":"Comedy","title":"Waydowntown","releaseDate":946684800000,"language":"en","type":"Movie","_key":"57375"} +{"label":"Fab Filippo","version":20,"id":"75946","lastModified":"1301902327000","name":"Fab Filippo","type":"Person","_key":"57376"} +{"label":"Marya Delver","version":20,"id":"75948","lastModified":"1301901949000","name":"Marya Delver","type":"Person","_key":"57377"} +{"label":"Shooting Gallery","description":"A street-smart pool player falls in with a pack of hustlers. As he rises in the underground circuit, he lands in the middle of a match between his boss and a crooked cop.","id":"13916","runtime":102,"imdbId":"tt0339526","version":167,"lastModified":"1301908145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc9401f017a3c57fe01b1fb\/shooting-gallery-mid.jpg","genre":"Comedy","title":"Shooting Gallery","releaseDate":1135641600000,"language":"en","type":"Movie","_key":"57378"} +{"label":"The King","description":"The King is the story of Graham Kennedy, Australia's first and greatest home grown TV superstar. It traces his rise from working class Balaclava kid, through radio, TV, film, and back to TV again. It also tracks Kennedy's personal tragedies - the loneliness, the unrealised ambitions and the terrible pressures of being Australia's first homegrown superstar in the 1950s and 60s. ","id":"13917","runtime":100,"imdbId":"tt0930067","version":177,"lastModified":"1301904300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/204\/4bc9401f017a3c57fe01b204\/the-king-mid.jpg","studio":"Crackerjack Productions","genre":"Documentary","title":"The King","releaseDate":1179619200000,"language":"en","type":"Movie","_key":"57379"} +{"label":"Shaun Micallef","version":23,"id":"75949","lastModified":"1301901655000","name":"Shaun Micallef","type":"Person","_key":"57380"} +{"label":"Stephen Hall","version":19,"id":"75950","lastModified":"1301902071000","name":"Stephen Hall","type":"Person","_key":"57381"} +{"label":"Todd MacDonald","version":20,"id":"75951","lastModified":"1301902071000","name":"Todd MacDonald","type":"Person","_key":"57382"} +{"label":"Nick Farnell","version":19,"id":"75952","lastModified":"1301902071000","name":"Nick Farnell","type":"Person","_key":"57383"} +{"label":"Donal Forde","version":19,"id":"75953","lastModified":"1301902071000","name":"Donal Forde","type":"Person","_key":"57384"} +{"label":"Leo Taylor","version":19,"id":"75954","lastModified":"1301902071000","name":"Leo Taylor","type":"Person","_key":"57385"} +{"label":"Beau Brady","version":20,"id":"75955","lastModified":"1301902175000","name":"Beau Brady","type":"Person","_key":"57386"} +{"label":"Monica Maughan","version":21,"id":"75956","lastModified":"1301901720000","name":"Monica Maughan","type":"Person","_key":"57387"} +{"label":"Jane Allsop","version":19,"id":"75958","lastModified":"1301902071000","name":"Jane Allsop","type":"Person","_key":"57388"} +{"label":"Beth Buchanan","version":20,"id":"75959","lastModified":"1301901924000","name":"Beth Buchanan","type":"Person","_key":"57389"} +{"label":"Betty Fotofili","version":19,"id":"75973","lastModified":"1301901609000","name":"Betty Fotofili","type":"Person","_key":"57390"} +{"label":"John Magee","version":19,"id":"75974","lastModified":"1301901609000","name":"John Magee","type":"Person","_key":"57391"} +{"label":"Chris Odgers","version":19,"id":"75975","lastModified":"1301901867000","name":"Chris Odgers","type":"Person","_key":"57392"} +{"label":"Matthew Saville","version":21,"id":"75960","lastModified":"1301901720000","name":"Matthew Saville","type":"Person","_key":"57393"} +{"label":"The Craic","description":"When Fergus and Wesley get in the bad books of a local rough in their home town in Northern Ireland they decide to flee to Australia. After making a new life for themselves in Sydney they soon outstay their visas and must go on the run again, this time from the immigration officials. ","id":"13918","runtime":89,"imdbId":"tt0132907","version":96,"lastModified":"1301904226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/212\/4bc94020017a3c57fe01b212\/the-craic-mid.jpg","studio":"Australian Film Commission","genre":"Comedy","title":"The Craic","releaseDate":925344000000,"language":"en","type":"Movie","_key":"57394"} +{"label":"Jimeoin","version":23,"id":"75976","lastModified":"1301902323000","name":"Jimeoin","type":"Person","_key":"57395"} +{"label":"Alan McKee","version":26,"id":"75977","lastModified":"1301902169000","name":"Alan McKee","type":"Person","_key":"57396"} +{"label":"Jane Hall","version":19,"id":"75978","lastModified":"1301902071000","name":"Jane Hall","type":"Person","_key":"57397"} +{"label":"Catherine Arena","version":19,"id":"75979","lastModified":"1301902071000","name":"Catherine Arena","type":"Person","_key":"57398"} +{"label":"Geoff Paine","version":19,"id":"75980","lastModified":"1301902071000","name":"Geoff Paine","type":"Person","_key":"57399"} +{"label":"Kate Gorman","version":19,"id":"75981","lastModified":"1301902071000","name":"Kate Gorman","type":"Person","_key":"57400"} +{"label":"Anne Phelan","version":19,"id":"75982","lastModified":"1301902071000","name":"Anne Phelan","type":"Person","_key":"57401"} +{"label":"Kyle Morrison","version":19,"id":"75983","lastModified":"1301902071000","name":"Kyle Morrison","type":"Person","_key":"57402"} +{"label":"Alan Brough","version":20,"id":"75984","lastModified":"1301901609000","name":"Alan Brough","type":"Person","_key":"57403"} +{"label":"Greg Evans","version":19,"id":"75985","lastModified":"1301902071000","name":"Greg Evans","type":"Person","_key":"57404"} +{"label":"Jeremy Kewley","version":21,"id":"75986","lastModified":"1301902245000","name":"Jeremy Kewley","type":"Person","_key":"57405"} +{"label":"Ted Emery","version":19,"id":"75987","lastModified":"1301902245000","name":"Ted Emery","type":"Person","_key":"57406"} +{"label":"Heidi Persson","version":19,"id":"75998","lastModified":"1301902245000","name":"Heidi Persson","type":"Person","_key":"57407"} +{"label":"Pauline Walker","version":19,"id":"75999","lastModified":"1301901867000","name":"Pauline Walker","type":"Person","_key":"57408"} +{"label":"The Chumscrubber","description":"The Chumscrubber is a dark comedy about the lives of people who live in upper-class suburbia. It all begins when Dean Stiffle finds the body of his friend, Troy. He doesn't bother telling any of the adults because he knows they won't care. Everyone in town is too self consumed to worry about anything else than themselves. And everybody is on some form of drug just to get through their days.","id":"13919","runtime":108,"imdbId":"tt0406650","version":219,"lastModified":"1301903029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21b\/4bc94024017a3c57fe01b21b\/the-chumscrubber-mid.jpg","studio":"Lawrence Bender Productions","genre":"Comedy","title":"The Chumscrubber","releaseDate":1118188800000,"language":"en","type":"Movie","_key":"57409"} +{"label":"Kathi Copeland","version":19,"id":"76000","lastModified":"1301902121000","name":"Kathi Copeland","type":"Person","_key":"57410"} +{"label":"Richard Gleason","version":19,"id":"76002","lastModified":"1301902121000","name":"Richard Gleason","type":"Person","_key":"57411"} +{"label":"Susan Hegarty","version":19,"id":"76003","lastModified":"1301902121000","name":"Susan Hegarty","type":"Person","_key":"57412"} +{"label":"Josh Janowicz","version":23,"id":"76004","lastModified":"1301901587000","name":"Josh Janowicz","type":"Person","_key":"57413"} +{"label":"Jeffrey Vincent Parise","version":20,"id":"76005","lastModified":"1301902175000","name":"Jeffrey Vincent Parise","type":"Person","_key":"57414"} +{"label":"Laura Shanahan","version":19,"id":"76006","lastModified":"1301902121000","name":"Laura Shanahan","type":"Person","_key":"57415"} +{"label":"Scott Spiro","version":19,"id":"76007","lastModified":"1301902121000","name":"Scott Spiro","type":"Person","_key":"57416"} +{"label":"Max Van Ville","version":20,"id":"76008","lastModified":"1301902048000","name":"Max Van Ville","type":"Person","_key":"57417"} +{"label":"Arie Posin","version":19,"id":"76009","lastModified":"1301901434000","name":"Arie Posin","type":"Person","_key":"57418"} +{"label":"Radio","description":"Football coach Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.","id":"13920","runtime":109,"imdbId":"tt0316465","trailer":"http:\/\/www.youtube.com\/watch?v=1669","version":182,"lastModified":"1301904081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a0\/4d695a387b9aa1362c0017a0\/radio-mid.jpg","studio":"Revolution Studios","genre":"Drama","title":"Radio","releaseDate":1066953600000,"language":"en","tagline":"His courage made them champions.","type":"Movie","_key":"57419"} +{"label":"Michael Tollin","version":34,"id":"53178","lastModified":"1301902131000","name":"Michael Tollin","type":"Person","_key":"57420"} +{"label":"Stellungswechsel","description":"No overview found.","id":"13921","runtime":97,"imdbId":"tt0940776","homepage":"http:\/\/www.stellungswechsel-derfilm.de\/","version":72,"lastModified":"1301907387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4bc94025017a3c57fe01b231\/stellungswechsel-mid.jpg","genre":"Comedy","title":"Stellungswechsel","releaseDate":1191369600000,"language":"en","type":"Movie","_key":"57421"} +{"label":"Sebastian Bezzel","version":20,"id":"44461","lastModified":"1301902178000","name":"Sebastian Bezzel","type":"Person","_key":"57422"} +{"label":"Diana Staehly","version":17,"id":"112240","lastModified":"1301902537000","name":"Diana Staehly","type":"Person","_key":"57423"} +{"label":"Christian Heiner Wolf","version":17,"id":"112241","lastModified":"1301903072000","name":"Christian Heiner Wolf","type":"Person","_key":"57424"} +{"label":"Katharina Heyer","version":20,"id":"59386","lastModified":"1301902327000","name":"Katharina Heyer","type":"Person","_key":"57425"} +{"label":"The Great Raid","description":"The Great Raid is an inspirational true story of one of the most triumphant rescue missions during World War II! As the war rages, the elite 6th Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 prisoners of war.","id":"13922","runtime":132,"imdbId":"tt0326905","version":267,"lastModified":"1301902625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcc\/4be71636017a3c35b4000fcc\/the-great-raid-mid.jpg","studio":"Miramax Films","genre":"Action","title":"The Great Raid","releaseDate":1123804800000,"language":"en","type":"Movie","_key":"57426"} +{"label":"Robert Mammone","version":25,"id":"83769","lastModified":"1301901647000","name":"Robert Mammone","type":"Person","_key":"57427"} +{"label":"Mark Consuelos","version":18,"id":"112143","lastModified":"1301902525000","name":"Mark Consuelos","type":"Person","_key":"57428"} +{"label":"Craig McLachlan","version":21,"id":"77771","lastModified":"1301901647000","name":"Craig McLachlan","type":"Person","_key":"57429"} +{"label":"Freddie Joe Farnsworth","version":18,"id":"112144","lastModified":"1301902397000","name":"Freddie Joe Farnsworth","type":"Person","_key":"57430"} +{"label":"Jeremy Callaghan","version":17,"id":"112145","lastModified":"1301902505000","name":"Jeremy Callaghan","type":"Person","_key":"57431"} +{"label":"Scott McLean","version":21,"id":"87811","lastModified":"1301902144000","name":"Scott McLean","type":"Person","_key":"57432"} +{"label":"Royston Innes","version":19,"id":"112147","lastModified":"1301902529000","name":"Royston Innes","type":"Person","_key":"57433"} +{"label":"Paolo Montalban","version":23,"id":"89719","lastModified":"1301902389000","name":"Paolo Montalban","type":"Person","_key":"57434"} +{"label":"A Bright Shining Lie","description":"No overview found.","id":"13923","runtime":118,"imdbId":"tt0126220","version":95,"lastModified":"1301906503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bc94026017a3c57fe01b243\/a-bright-shining-lie-mid.jpg","genre":"Drama","title":"A Bright Shining Lie","releaseDate":883612800000,"language":"en","type":"Movie","_key":"57435"} +{"label":"The Adventures of Andr\u00e9 and Wally B.","description":"There's nothing like a restful nap in a pleasant wooded valley. But when Andr\u00e9 awakens and is greeted by a pesky yellow-and-black striped insect with a nasty stinger, he ends up taking a quick (and painful) hike.","id":"13924","runtime":2,"imdbId":"tt0086855","version":52,"lastModified":"1301903474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24c\/4bc94027017a3c57fe01b24c\/the-adventures-of-andre-and-wally-b-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"The Adventures of Andr\u00e9 and Wally B.","releaseDate":441763200000,"language":"en","type":"Movie","_key":"57436"} +{"label":"Alvy Ray Smith","version":22,"id":"126639","lastModified":"1301902591000","name":"Alvy Ray Smith","type":"Person","_key":"57437"} +{"label":"Luxo Jr.","description":"A baby lamp finds a ball to play with and it's all fun and games until the ball bursts. Just when the elder Luxo thinks his kid will settle down for a bit, Luxo Jr. finds a ball ten times bigger.","id":"13925","runtime":2,"imdbId":"tt0091455","version":81,"lastModified":"1301903252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25a\/4bc94028017a3c57fe01b25a\/luxo-jr-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Luxo Jr.","releaseDate":504921600000,"language":"en","type":"Movie","_key":"57438"} +{"label":"Red's Dream","description":"Life as the sole sale item in the clearance corner of Eben's Bikes can get lonely. So Red, a unicycle, dreams up a clown owner and his own juggling act that steals the show. But all too soon, the applause turns into the sound of rainfall, as reality rushes back. Red must resign himself to sitting in the corner and await his fate.","id":"13926","runtime":4,"imdbId":"tt0093832","version":78,"lastModified":"1301904647000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/263\/4bc94028017a3c57fe01b263\/red-s-dream-mid.jpg","genre":"Animation","title":"Red's Dream","releaseDate":536457600000,"language":"en","type":"Movie","_key":"57439"} +{"label":"Tin Toy","description":"Babies are hardly monster-like, unless you're a toy. After escaping a drooling baby, Tinny realizes that he wants to be played with after all. But in the amount of time it takes him to discover this, the baby's attention moves on to other things only an infant could find interesting.","id":"13927","runtime":5,"imdbId":"tt0096273","version":52,"lastModified":"1301904137000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/270\/4bc94029017a3c57fe01b270\/tin-toy-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Tin Toy","releaseDate":567993600000,"language":"en","type":"Movie","_key":"57440"} +{"label":"Knick Knack","description":"Life on a shelf as a snowman trapped in a snow-globe blizzard can become wearing, especially when you're surrounded by knickknacks from sunnier locales. When the jaded snowman finally breaks free of his glass house, his vacation plans are cut short.","id":"13928","runtime":0,"imdbId":"tt0097674","version":64,"lastModified":"1301903154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4bc9402a017a3c57fe01b27e\/knick-knack-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Knick Knack","releaseDate":599616000000,"language":"en","type":"Movie","_key":"57441"} +{"label":"Geri's Game","description":"An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.","id":"13929","runtime":0,"imdbId":"tt0131409","version":291,"lastModified":"1301904134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28c\/4bc9402d017a3c57fe01b28c\/geri-s-game-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Geri's Game","releaseDate":852076800000,"language":"en","type":"Movie","_key":"57442"} +{"label":"Jan Pinkava","version":40,"id":"7930","lastModified":"1302079341000","name":"Jan Pinkava","type":"Person","_key":"57443"} +{"label":"For The Birds","description":"One by one, a flock of small birds perches on a telephone wire. Sitting close together has problems enough, and then comes along a large dopey bird that tries to join them. The birds of a feather can't help but make fun of him - and their clique mentality proves embarrassing in the end.","id":"13930","runtime":3,"imdbId":"tt0248808","version":237,"lastModified":"1301902097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a9\/4bc94030017a3c57fe01b2a9\/for-the-birds-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"For The Birds","releaseDate":973123200000,"language":"en","type":"Movie","_key":"57444"} +{"label":"Ralph Eggleston","version":83,"id":"7883","lastModified":"1301901558000","name":"Ralph Eggleston","type":"Person","_key":"57445"} +{"label":"Mike's New Car","description":"Mike discovers that being the top-ranking laugh collector at Monsters, Inc. has it's benefits - in particular, earning enough money to buy a six-wheel-drive car that's loaded with gadgets. That new-car smell doesn't last long enough, however, as Sulley jump-starts an ill-fated road test that teaches Mike the true meaning of buyer's remorse.","id":"13931","runtime":4,"imdbId":"tt0323250","version":231,"lastModified":"1301903944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/837\/4cc41e9a5e73d67783001837\/mike-s-new-car-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Mike's New Car","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"57446"} +{"label":"Jack-Jack Attack","description":"Kari the babysitter thinks she's in for a night of routine babysitting. She's prepared to provide neurological stimulation with some soothing musical accompaniment for little Jack-Jack, the smallest member of the incredible Parr family. Little does she know that Jack-Jack will teach her a thing or two about babies with \"special needs.\"","id":"13932","runtime":0,"imdbId":"tt0455565","version":166,"lastModified":"1301902866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4bc94032017a3c57fe01b2ce\/jack-jack-attack-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Jack-Jack Attack","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"57447"} +{"label":"Bret 'Brook' Parker","version":17,"id":"138072","lastModified":"1301902681000","name":"Bret 'Brook' Parker","type":"Person","_key":"57448"} +{"label":"One Man Band","description":"With one coin to make a wish at the piazza fountain, a peasant girl encounters two competing street performers who'd prefer the coin find its way into their tip jars. The little girl, Tippy, is caught in the middle as a musical duel ensues between the one-man-bands.","id":"13933","runtime":4,"imdbId":"tt0479113","version":235,"lastModified":"1301903812000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4bc94033017a3c57fe01b2dc\/one-man-band-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"One Man Band","releaseDate":1119398400000,"language":"en","type":"Movie","_key":"57449"} +{"label":"Mark Andrews","version":24,"id":"126638","lastModified":"1301902591000","name":"Mark Andrews","type":"Person","_key":"57450"} +{"label":"Andrew Jimenez","version":34,"id":"59362","lastModified":"1301901784000","name":"Andrew Jimenez","type":"Person","_key":"57451"} +{"label":"Mater And The Ghostlight","description":"Mater, the rusty but trusty tow truck from Cars, spends a day in Radiator Springs playing scary pranks on his fellow townsfolk. That night at Flo's V8 Caf\u00e9, the Sheriff tells the story of the legend of the Ghostlight, and as everyone races home Mater is left alone primed for a good old-fashioned scare.","id":"13934","runtime":7,"imdbId":"tt0901686","version":116,"lastModified":"1301903581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/301\/4bc94039017a3c57fe01b301\/mater-and-the-ghostlight-mid.jpg","studio":"Pixar Animation Studios","genre":"Animation","title":"Mater And The Ghostlight","releaseDate":1161734400000,"language":"en","type":"Movie","_key":"57452"} +{"label":"Dan Scanlon","version":10,"id":"225976","lastModified":"1301904015000","name":"Dan Scanlon","type":"Person","_key":"57453"} +{"label":"When Trumpets Fade","description":"In WWII Western Germany, Private David Manning reluctantly leaves behind a mortally wounded fellow soldier and searches for survivors from his platoon, only to learn from commanding officer Captain Pritchett that they have all been killed in action. Despite requesting a discharge on the grounds of mental disability, Manning is promoted to sergeant and assigned to lead a new platoon of young inductees.","id":"13935","runtime":95,"imdbId":"tt0135706","version":122,"lastModified":"1301905855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4bc9403a017a3c57fe01b306\/when-trumpets-fade-mid.jpg","studio":"Citadel Entertainment","genre":"Drama","title":"When Trumpets Fade","releaseDate":898905600000,"language":"en","tagline":"In the heat of battle not all soldiers can be heroes.","type":"Movie","_key":"57454"} +{"label":"Devon Gummersall","version":26,"id":"54455","lastModified":"1301901779000","name":"Devon Gummersall","type":"Person","_key":"57455"} +{"label":"Oklahoma!","description":"This joyous celebration of frontier life combines tender romance and violent passion in the Oklahoma Territory of the 1900's, with a timeless score filled with unforgettable songs.","id":"13936","runtime":145,"imdbId":"tt0048445","version":143,"lastModified":"1301904512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4bc9403a017a3c57fe01b30f\/oklahoma-mid.jpg","studio":"RKO Radio Pictures","genre":"Musical","title":"Oklahoma!","releaseDate":-448934400000,"language":"en","type":"Movie","_key":"57456"} +{"label":"Gordon MacRae","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/083\/4c49b57f7b9aa115fd000083\/gordon-macrae-profile.jpg","version":30,"id":"82387","lastModified":"1301902109000","name":"Gordon MacRae","type":"Person","_key":"57457"} +{"label":"Raising Cain","description":"No overview found.","id":"13937","runtime":91,"imdbId":"tt0105217","version":124,"lastModified":"1301905857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/318\/4bc9403b017a3c57fe01b318\/raising-cain-mid.jpg","genre":"Drama","title":"Raising Cain","releaseDate":713145600000,"language":"en","type":"Movie","_key":"57458"} +{"label":"The Last Dragon","description":"Martial arts student Leroy Green (Taimak) is on a quest to obtain the elusive all-powerful force known as \"The Glow.\" Along the way he must battle the evil, self-proclaimed Shogun of Harlem - a kung fu warrior also known as Sho'nuff (Julius J Carry III) - and rescue a beautiful singer (Prince prot\u00e9g\u00e9e Vanity) from an obsessed record promoter.","id":"13938","runtime":108,"imdbId":"tt0089461","trailer":"http:\/\/www.youtube.com\/watch?v=eKF9jzZLg-I&NR","version":208,"lastModified":"1301903038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/735\/4d674fb65e73d66a6b001735\/the-last-dragon-mid.jpg","studio":"Tristar Pictures","genre":"Action","title":"The Last Dragon","releaseDate":496195200000,"language":"en","tagline":"His family thinks he's crazy. His enemies think he's no challenges. But she knows he's THE LAST DRAGON.","type":"Movie","_key":"57459"} +{"label":"Taimak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/215\/4d8bf7727b9aa13aed002215\/taimak-profile.jpg","version":24,"id":"77298","lastModified":"1301901779000","name":"Taimak","type":"Person","_key":"57460"} +{"label":"Julius Carry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32c\/4d8bf85a7b9aa13ae400232c\/julius-carry-profile.jpg","version":20,"id":"77299","lastModified":"1301901779000","name":"Julius Carry","type":"Person","_key":"57461"} +{"label":"Michael Schultz","version":32,"id":"77300","lastModified":"1301901667000","name":"Michael Schultz","type":"Person","_key":"57462"} +{"label":"Death Wish","description":"In this explosive story of revenge and urban violence, Charles Bronson plays Paul Kersey, a bleeding-heart liberal who has a change of opinion after his wife and daughter are violently attacked by a gang of thugs in their apartment. His daughter is raped, and his wife is raped and murdered. Bronson then turns vigilante as he stalks the mean streets of New York on the prowl for muggers, hoodlums an","id":"13939","runtime":93,"imdbId":"tt0071402","trailer":"http:\/\/www.youtube.com\/watch?v=822","version":165,"lastModified":"1301904384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b48\/4d8fe3297b9aa1675b002b48\/death-wish-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Action","title":"Death Wish","releaseDate":143856000000,"language":"en","type":"Movie","_key":"57463"} +{"label":"Steven Keats","version":29,"id":"76019","lastModified":"1301901459000","name":"Steven Keats","type":"Person","_key":"57464"} +{"label":"Kathleen Tolan","version":21,"id":"76020","lastModified":"1301902192000","name":"Kathleen Tolan","type":"Person","_key":"57465"} +{"label":"Take","description":"The lives of two strangers - a struggling mother and a gambling addict - meet in tragedy. Years pass, and they must come to terms with themselves, and one another.","id":"13941","runtime":98,"imdbId":"tt0815138","version":241,"lastModified":"1301903748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/340\/4bc9403f017a3c57fe01b340\/take-mid.jpg","studio":"Crossing Paths","genre":"Drama","title":"Take","releaseDate":1216944000000,"language":"en","tagline":"It takes a moment to steal a lifetime.","type":"Movie","_key":"57466"} +{"label":"Griff Furst","version":25,"id":"76021","lastModified":"1301901347000","name":"Griff Furst","type":"Person","_key":"57467"} +{"label":"Patrick Brennan","version":33,"id":"76022","lastModified":"1301901180000","name":"Patrick Brennan","type":"Person","_key":"57468"} +{"label":"Tom Schmid","version":21,"id":"76023","lastModified":"1301901991000","name":"Tom Schmid","type":"Person","_key":"57469"} +{"label":"Jessica Stier","version":21,"id":"76024","lastModified":"1301901991000","name":"Jessica Stier","type":"Person","_key":"57470"} +{"label":"Paul Schackman","version":21,"id":"76025","lastModified":"1301901991000","name":"Paul Schackman","type":"Person","_key":"57471"} +{"label":"Patrick Dollaghan","version":21,"id":"76026","lastModified":"1301901673000","name":"Patrick Dollaghan","type":"Person","_key":"57472"} +{"label":"Michael Ciulla","version":20,"id":"76027","lastModified":"1301901609000","name":"Michael Ciulla","type":"Person","_key":"57473"} +{"label":"Shane Woodson","version":20,"id":"76028","lastModified":"1301901867000","name":"Shane Woodson","type":"Person","_key":"57474"} +{"label":"Courtenay Taylor","version":20,"id":"76029","lastModified":"1301901867000","name":"Courtenay Taylor","type":"Person","_key":"57475"} +{"label":"Lisa Robert","version":20,"id":"76030","lastModified":"1301901867000","name":"Lisa Robert","type":"Person","_key":"57476"} +{"label":"Veronica Lauren","version":20,"id":"76031","lastModified":"1301901867000","name":"Veronica Lauren","type":"Person","_key":"57477"} +{"label":"Theo Nicholas Pagones","version":20,"id":"76032","lastModified":"1301901867000","name":"Theo Nicholas Pagones","type":"Person","_key":"57478"} +{"label":"Edward James Gage","version":20,"id":"76033","lastModified":"1301901867000","name":"Edward James Gage","type":"Person","_key":"57479"} +{"label":"Keith Biondi","version":20,"id":"76034","lastModified":"1301901867000","name":"Keith Biondi","type":"Person","_key":"57480"} +{"label":"Todd Waring","version":21,"id":"76035","lastModified":"1301901842000","name":"Todd Waring","type":"Person","_key":"57481"} +{"label":"Kendall Clement","version":20,"id":"76036","lastModified":"1301901867000","name":"Kendall Clement","type":"Person","_key":"57482"} +{"label":"Andrew Thacher","version":20,"id":"76037","lastModified":"1301901867000","name":"Andrew Thacher","type":"Person","_key":"57483"} +{"label":"Shane Johnson","version":20,"id":"76038","lastModified":"1301901867000","name":"Shane Johnson","type":"Person","_key":"57484"} +{"label":"Katia Louise","version":20,"id":"76039","lastModified":"1301901867000","name":"Katia Louise","type":"Person","_key":"57485"} +{"label":"Connie Wong","version":20,"id":"76040","lastModified":"1301901867000","name":"Connie Wong","type":"Person","_key":"57486"} +{"label":"Alisa Fredericks","version":21,"id":"76060","lastModified":"1301904130000","name":"Alisa Fredericks","type":"Person","_key":"57487"} +{"label":"Alexis Nordlinger","version":20,"id":"76061","lastModified":"1301901720000","name":"Alexis Nordlinger","type":"Person","_key":"57488"} +{"label":"Roger Udwin","version":20,"id":"76063","lastModified":"1301901609000","name":"Roger Udwin","type":"Person","_key":"57489"} +{"label":"Charles Oliver","version":20,"id":"76041","lastModified":"1301901609000","name":"Charles Oliver","type":"Person","_key":"57490"} +{"label":"The Alphabet Killer","description":"Based on the true story of double killings occurring in Rochester, NY during the 80\u2019s and the troubled police officer determined to solve them, with or without the help of her department","id":"13942","runtime":100,"imdbId":"tt0818165","version":194,"lastModified":"1301902191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ad\/4d1c1b775e73d6083400c4ad\/the-alphabet-killer-mid.jpg","genre":"Crime","title":"The Alphabet Killer","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"57491"} +{"label":"Tom Malloy","version":27,"id":"76315","lastModified":"1301902199000","name":"Tom Malloy","type":"Person","_key":"57492"} +{"label":"Suburban Mayhem","description":"Can you really get away with murder? Welcome to the world of Katrina, a 19-year-old single mum who's planning to do just that. Katrina lives in a world of petty crime, fast cars, manicures and blow-jobs. A master manipulator of men living at home with her father in suburban Golden Grove, Katrina will stop at nothing to get what she wants - even murder.","id":"13943","runtime":95,"imdbId":"tt0450506","version":146,"lastModified":"1301903581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35b\/4bc94044017a3c57fe01b35b\/suburban-mayhem-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Drama","title":"Suburban Mayhem","releaseDate":1161820800000,"language":"en","type":"Movie","_key":"57493"} +{"label":"Laurence Breuls","version":19,"id":"76067","lastModified":"1301902071000","name":"Laurence Breuls","type":"Person","_key":"57494"} +{"label":"Michael Dorman","version":22,"id":"76068","lastModified":"1301901343000","name":"Michael Dorman","type":"Person","_key":"57495"} +{"label":"Susan Prior","version":19,"id":"76069","lastModified":"1301902071000","name":"Susan Prior","type":"Person","_key":"57496"} +{"label":"Lawrence Aitchson","version":19,"id":"76071","lastModified":"1301902245000","name":"Lawrence Aitchson","type":"Person","_key":"57497"} +{"label":"Rod Ansell","version":19,"id":"76072","lastModified":"1301902245000","name":"Rod Ansell","type":"Person","_key":"57498"} +{"label":"Christine Armstrong","version":19,"id":"76073","lastModified":"1301902245000","name":"Christine Armstrong","type":"Person","_key":"57499"} +{"label":"Phillip Ayoub","version":19,"id":"76074","lastModified":"1301902245000","name":"Phillip Ayoub","type":"Person","_key":"57500"} +{"label":"Callan Boys","version":19,"id":"76075","lastModified":"1301902245000","name":"Callan Boys","type":"Person","_key":"57501"} +{"label":"Nigel Castellum","version":19,"id":"76076","lastModified":"1301902245000","name":"Nigel Castellum","type":"Person","_key":"57502"} +{"label":"Rebecca Clay","version":19,"id":"76077","lastModified":"1301902245000","name":"Rebecca Clay","type":"Person","_key":"57503"} +{"label":"Jye Coren","version":19,"id":"76078","lastModified":"1301902071000","name":"Jye Coren","type":"Person","_key":"57504"} +{"label":"Alison Cox","version":19,"id":"76079","lastModified":"1301902245000","name":"Alison Cox","type":"Person","_key":"57505"} +{"label":"Dominic Dates","version":19,"id":"76080","lastModified":"1301902245000","name":"Dominic Dates","type":"Person","_key":"57506"} +{"label":"Nick Evans","version":25,"id":"47870","lastModified":"1301902014000","name":"Nick Evans","type":"Person","_key":"57507"} +{"label":"Paul Goldman","version":19,"id":"76081","lastModified":"1301902245000","name":"Paul Goldman","type":"Person","_key":"57508"} +{"label":"Miranda Colman","version":19,"id":"76090","lastModified":"1301902245000","name":"Miranda Colman","type":"Person","_key":"57509"} +{"label":"Scott Lovelock","version":19,"id":"76091","lastModified":"1301901867000","name":"Scott Lovelock","type":"Person","_key":"57510"} +{"label":"Hamish Roxburgh","version":19,"id":"76092","lastModified":"1301902071000","name":"Hamish Roxburgh","type":"Person","_key":"57511"} +{"label":"Chris Webb","version":27,"id":"12908","lastModified":"1301901555000","name":"Chris Webb","type":"Person","_key":"57512"} +{"label":"Passengers","description":"After a plane crash, a young therapist, Claire, is assigned by her mentor to counsel the flight's five survivors. When they share their recollections of the incident -- which some say include an explosion that the airline claims never happened -- Claire is intrigued by Eric, the most secretive of the passengers","id":"13944","runtime":93,"imdbId":"tt0449487","trailer":"http:\/\/www.youtube.com\/watch?v=1989","version":288,"lastModified":"1301902125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/371\/4bc94046017a3c57fe01b371\/passengers-mid.jpg","studio":"Tristar Pictures","genre":"Drama","title":"Passengers","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"57513"} +{"label":"Rodrigo Garc\u00eda","version":33,"id":"77162","lastModified":"1301901424000","name":"Rodrigo Garc\u00eda","type":"Person","_key":"57514"} +{"label":"Ryan Robbins","version":29,"id":"77164","lastModified":"1301901602000","name":"Ryan Robbins","type":"Person","_key":"57515"} +{"label":"The Sword and the Sorcerer","description":"A mercenary with a three-bladed sword rediscovers his royal heritage dangerous future when he is recruited to help a princess foil the designs of a brutal tyrant and a powerful sorcerer in conquering a land.","id":"13945","runtime":100,"imdbId":"tt0084749","version":108,"lastModified":"1301903815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/393\/4bc9404b017a3c57fe01b393\/the-sword-and-the-sorcerer-mid.jpg","genre":"Action","title":"The Sword and the Sorcerer","releaseDate":386467200000,"language":"en","tagline":"A kingdom ruled by evil. A princess enslaved by passion. A warrior driven by justice.","type":"Movie","_key":"57516"} +{"label":"Kathleen Beller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed8\/4d42633c5e73d65725000ed8\/kathleen-beller-profile.jpg","version":28,"id":"76064","lastModified":"1301901644000","name":"Kathleen Beller","type":"Person","_key":"57517"} +{"label":"Robert Tessier","version":24,"id":"76065","lastModified":"1301901943000","name":"Robert Tessier","type":"Person","_key":"57518"} +{"label":"Anna Bjorn","version":23,"id":"76066","lastModified":"1301902071000","name":"Anna Bjorn","type":"Person","_key":"57519"} +{"label":"The Rage","description":"A crazed scientist experimenting with a rage virus on innocent victims in a laboratory in the woods. When his monstrous subjects escape and vultures devour their remains, they became mutations seeking to feed on humans.","id":"13946","runtime":85,"imdbId":"tt0497432","version":124,"lastModified":"1301165994000","genre":"Horror","title":"The Rage","releaseDate":1196467200000,"language":"en","type":"Movie","_key":"57520"} +{"label":"Indoctrinate U","description":"A hard-hitting yet humorous expos\u00e9 on the breathtaking abuses of power in higher education, Evan Maloney's \"Indoctrinate U\" Shows what you won't see in the glossy marketing brochures of American colleges and universities. When unsuspecting students and professors run afoul of the campus thought police, the result would make for a great comic farce\u2013if real careers weren't at stake.","id":"13947","runtime":87,"imdbId":"tt1137970","homepage":"http:\/\/indoctrinate-u.com\/","version":34,"lastModified":"1301908301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a1\/4bc9404e017a3c57fe01b3a1\/indoctrinate-u-mid.jpg","studio":"Moving Picture Institute","genre":"Documentary","title":"Indoctrinate U","releaseDate":1190764800000,"language":"en","type":"Movie","_key":"57521"} +{"label":"Evan Coyne Maloney","version":21,"id":"77189","lastModified":"1301902144000","name":"Evan Coyne Maloney","type":"Person","_key":"57522"} +{"label":"An American Carol","description":"In An American Carol a cynical, Anti-American Hollywood filmmaker sets out on a crusade to abolish the 4th of July holiday. He is visited by three spirits who take him on a hilarious journey in an attempt to show him the true meaning of America.","id":"13948","runtime":83,"imdbId":"tt1190617","trailer":"http:\/\/www.youtube.com\/watch?v=YK9WyYAIbFc&hd=1","version":195,"lastModified":"1301903565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3af\/4bc9404f017a3c57fe01b3af\/an-american-carol-mid.jpg","genre":"Comedy","title":"An American Carol","releaseDate":1222992000000,"language":"en","tagline":"Laugh like you country depends on it.","type":"Movie","_key":"57523"} +{"label":"Persuasion","description":"Persuasion is the newest adaptation of the classic Jane Austen novel of the same name published in 1818.Anne (Sally Hawkins) fell deeply in love with handsome young naval officer Frederick Wentworth (Rupert Penry-Jones) at the age of nineteen.","id":"13949","runtime":93,"imdbId":"tt0844330","version":184,"lastModified":"1301908005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c0\/4bc94050017a3c57fe01b3c0\/persuasion-2007-mid.jpg","genre":"Drama","title":"Persuasion","releaseDate":1175385600000,"language":"en","type":"Movie","_key":"57524"} +{"label":"Tobias Menzies","version":28,"id":"10920","lastModified":"1301901268000","name":"Tobias Menzies","type":"Person","_key":"57525"} +{"label":"Adrian Shergold","version":24,"id":"84737","lastModified":"1301901998000","name":"Adrian Shergold","type":"Person","_key":"57526"} +{"label":"All About the Benjamins","description":"Bucum Jackson (Cube) is a bounty hunter with a lot of attitude and no interest in taking on a partner. Working at Martinez Bail Bonds, Jackson has unorthodox methods of tracking down low-life criminals, but they work, and one day he hopes to become his own boss and open up his own private investigation firm. Reggie Wright (Epps) is a slippery con artist who is avoiding the law, and Jackson. During a cat and mouse chase, the two stumble on a multi-million dollar diamond heist. Hiding from Jackson","id":"13950","runtime":95,"imdbId":"tt0278295","trailer":"http:\/\/www.youtube.com\/watch?v=3Z5DPTMRZFc","version":160,"lastModified":"1301902922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e2\/4bc94055017a3c57fe01b3e2\/all-about-the-benjamins-mid.jpg","genre":"Action","title":"All About the Benjamins","releaseDate":1015545600000,"language":"en","tagline":"Money can make people do funny things.","type":"Movie","_key":"57527"} +{"label":"Carmen Chaplin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/41f\/4d8d4e367b9aa1675e00041f\/carmen-chaplin-profile.jpg","version":30,"id":"76093","lastModified":"1301901984000","name":"Carmen Chaplin","type":"Person","_key":"57528"} +{"label":"Om Shanti","description":"No overview found.","id":"13951","runtime":0,"imdbId":"tt1649387","version":114,"lastModified":"1301908261000","genre":"Comedy","title":"Om Shanti","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57529"} +{"label":"Your Mommy Kills Animals","description":"No overview found.","id":"13952","runtime":0,"imdbId":"tt0952693","version":100,"lastModified":"1300979737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3eb\/4bc94055017a3c57fe01b3eb\/your-mommy-kills-animals-mid.jpg","genre":"Documentary","title":"Your Mommy Kills Animals","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57530"} +{"label":"Alien Raiders","description":"It's the end of yet another night at Hastings Supermarket, a grocery store in Buck Lake, Arizona. But just before closing, a group of masked and armed to the teeth militants invades the store and take everyone hostage","id":"13954","runtime":85,"imdbId":"tt0996979","trailer":"http:\/\/www.youtube.com\/watch?v=dl1rRf7PW58","version":181,"lastModified":"1301902502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41d\/4bc9405c017a3c57fe01b41d\/alien-raiders-mid.jpg","studio":"Flame Ventures","genre":"Horror","title":"Alien Raiders","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"57531"} +{"label":"Carlos Bernard","version":42,"id":"25867","lastModified":"1301901414000","name":"Carlos Bernard","type":"Person","_key":"57532"} +{"label":"Courtney Ford","version":26,"id":"76536","lastModified":"1301901498000","name":"Courtney Ford","type":"Person","_key":"57533"} +{"label":"Tom Kiesche","version":22,"id":"76537","lastModified":"1301901991000","name":"Tom Kiesche","type":"Person","_key":"57534"} +{"label":"Bryan Krasner","version":22,"id":"76538","lastModified":"1301902000000","name":"Bryan Krasner","type":"Person","_key":"57535"} +{"label":"Derek Basco","version":24,"id":"76539","lastModified":"1301902025000","name":"Derek Basco","type":"Person","_key":"57536"} +{"label":"Keith Hudson","version":22,"id":"76540","lastModified":"1301901949000","name":"Keith Hudson","type":"Person","_key":"57537"} +{"label":"Ben Rock","version":22,"id":"76541","lastModified":"1301901400000","name":"Ben Rock","type":"Person","_key":"57538"} +{"label":"Beethoven's Big Break","description":"Eddie, a struggling animal trainer and single dad suddenly finds himself the personal wrangler for a large and lovable St. Bernard whose fabulous movie \"audition\" catapults the dog to stardom. However, a trio of unscrupulous ne'er-do-wells have plans to kidnap the famous dog and hold him for ransom.","id":"13955","runtime":101,"imdbId":"tt1176410","version":217,"lastModified":"1301904384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/422\/4bc9405d017a3c57fe01b422\/beethoven-s-big-break-mid.jpg","genre":"Comedy","title":"Beethoven's Big Break","releaseDate":1230249600000,"language":"en","type":"Movie","_key":"57539"} +{"label":"Moises Arias","version":24,"id":"57412","lastModified":"1301901418000","name":"Moises Arias","type":"Person","_key":"57540"} +{"label":"Oscar Nu\u00f1ez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09e\/4cdc6bfa7b9aa1380100009e\/oscar-nunez-profile.jpg","version":30,"id":"76094","lastModified":"1301901336000","name":"Oscar Nu\u00f1ez","type":"Person","_key":"57541"} +{"label":"Jennifer Finnigan","version":23,"id":"76095","lastModified":"1301901949000","name":"Jennifer Finnigan","type":"Person","_key":"57542"} +{"label":"Stefanie Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42d\/4d03e4787b9aa11bc100142d\/stefanie-scott-profile.jpg","version":32,"id":"106490","lastModified":"1301901458000","name":"Stefanie Scott","type":"Person","_key":"57543"} +{"label":"Mike Elliott","version":61,"id":"37021","lastModified":"1301901591000","name":"Mike Elliott","type":"Person","_key":"57544"} +{"label":"Fly Me to the Moon","description":"Three young houseflies stow away aboard the Apollo 11 flight to the moon.","id":"13956","runtime":84,"imdbId":"tt0486321","version":189,"lastModified":"1301902561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/435\/4bc94060017a3c57fe01b435\/fly-me-to-the-moon-mid.jpg","genre":"Action","title":"Fly Me to the Moon","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"57545"} +{"label":"Kelly Ripa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6ed\/4cb856fe7b9aa138da0006ed\/kelly-ripa-profile.jpg","version":26,"id":"76096","lastModified":"1301901472000","name":"Kelly Ripa","type":"Person","_key":"57546"} +{"label":"Trevor Gagnon","version":24,"id":"76098","lastModified":"1301901972000","name":"Trevor Gagnon","type":"Person","_key":"57547"} +{"label":"David Gore","version":22,"id":"76099","lastModified":"1301902186000","name":"David Gore","type":"Person","_key":"57548"} +{"label":"Buzz Aldrin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/536\/4bd36d3a017a3c63e8000536\/buzz-aldrin-profile.jpg","version":27,"id":"106843","lastModified":"1301902004000","name":"Buzz Aldrin","type":"Person","_key":"57549"} +{"label":"Ben Stassen","version":23,"id":"76100","lastModified":"1301901813000","name":"Ben Stassen","type":"Person","_key":"57550"} +{"label":"Closing the Ring","description":"In 1943, A dying gunner, who was in a crash involving a United States B-17, gives a ring to a local to return to his girlfriend in the USA. Fifty years later, a man finds the ring and tracks down the girlfriend and the history of this ring. Set in Belfast and North Carolina.","id":"13957","runtime":118,"imdbId":"tt0488380","version":128,"lastModified":"1301902539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44f\/4bc94065017a3c57fe01b44f\/closing-the-ring-mid.jpg","studio":"Scion Films Limited","genre":"Drama","title":"Closing the Ring","releaseDate":1189728000000,"language":"en","tagline":"Discover the love of a lifetime","type":"Movie","_key":"57551"} +{"label":"Dylan Roberts","version":21,"id":"76101","lastModified":"1301901535000","name":"Dylan Roberts","type":"Person","_key":"57552"} +{"label":"Gene Dinovi","version":20,"id":"76102","lastModified":"1301901535000","name":"Gene Dinovi","type":"Person","_key":"57553"} +{"label":"Allan Hawco","version":20,"id":"76103","lastModified":"1301901720000","name":"Allan Hawco","type":"Person","_key":"57554"} +{"label":"Martin McCann","version":26,"id":"76104","lastModified":"1301902008000","name":"Martin McCann","type":"Person","_key":"57555"} +{"label":"Chris Benson","version":20,"id":"76105","lastModified":"1301902071000","name":"Chris Benson","type":"Person","_key":"57556"} +{"label":"John Travers","version":21,"id":"76106","lastModified":"1301901867000","name":"John Travers","type":"Person","_key":"57557"} +{"label":"George Shane","version":20,"id":"76107","lastModified":"1301902071000","name":"George Shane","type":"Person","_key":"57558"} +{"label":"Kirsty Stuart","version":20,"id":"76108","lastModified":"1301902071000","name":"Kirsty Stuart","type":"Person","_key":"57559"} +{"label":"Marie Jones","version":20,"id":"76109","lastModified":"1301902071000","name":"Marie Jones","type":"Person","_key":"57560"} +{"label":"Stephen Amell","version":25,"id":"76110","lastModified":"1301901430000","name":"Stephen Amell","type":"Person","_key":"57561"} +{"label":"The King of Kong: A Fistful of Quarters","description":"Diehard video game fans compete to break World Records on classic arcade games.","id":"13958","runtime":79,"imdbId":"tt0923752","trailer":"http:\/\/www.youtube.com\/watch?v=xMJZ-_bJKdI","version":155,"lastModified":"1301907566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45c\/4bc94066017a3c57fe01b45c\/the-king-of-kong-a-fistful-of-quarters-mid.jpg","studio":"New Line Cinema","genre":"Documentary","title":"The King of Kong: A Fistful of Quarters","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"57562"} +{"label":"Steve Wiebe","version":19,"id":"76112","lastModified":"1301901120000","name":"Steve Wiebe","type":"Person","_key":"57563"} +{"label":"Walter Day","version":22,"id":"76113","lastModified":"1301901146000","name":"Walter Day","type":"Person","_key":"57564"} +{"label":"Mark Alpiger","version":19,"id":"76114","lastModified":"1301901146000","name":"Mark Alpiger","type":"Person","_key":"57565"} +{"label":"Greg Bond","version":19,"id":"76115","lastModified":"1301901156000","name":"Greg Bond","type":"Person","_key":"57566"} +{"label":"Craig Glenday","version":19,"id":"76116","lastModified":"1301901156000","name":"Craig Glenday","type":"Person","_key":"57567"} +{"label":"Brian Kuh","version":19,"id":"76117","lastModified":"1301901156000","name":"Brian Kuh","type":"Person","_key":"57568"} +{"label":"Robert Mruczek","version":19,"id":"76118","lastModified":"1301901136000","name":"Robert Mruczek","type":"Person","_key":"57569"} +{"label":"Todd Rogers","version":19,"id":"76119","lastModified":"1301901156000","name":"Todd Rogers","type":"Person","_key":"57570"} +{"label":"Steve Sanders","version":22,"id":"76120","lastModified":"1301901156000","name":"Steve Sanders","type":"Person","_key":"57571"} +{"label":"Doris Self","version":19,"id":"76121","lastModified":"1301901163000","name":"Doris Self","type":"Person","_key":"57572"} +{"label":"Roy Shildt","version":19,"id":"76122","lastModified":"1301901156000","name":"Roy Shildt","type":"Person","_key":"57573"} +{"label":"Derek Wiebe","version":19,"id":"76123","lastModified":"1301901156000","name":"Derek Wiebe","type":"Person","_key":"57574"} +{"label":"Jillian Wiebe","version":19,"id":"76124","lastModified":"1301901146000","name":"Jillian Wiebe","type":"Person","_key":"57575"} +{"label":"Nicole Wiebe","version":19,"id":"76125","lastModified":"1301901163000","name":"Nicole Wiebe","type":"Person","_key":"57576"} +{"label":"Adam Wood","version":43,"id":"8054","lastModified":"1301901124000","name":"Adam Wood","type":"Person","_key":"57577"} +{"label":"Call Girl","description":"No overview found.","id":"13959","runtime":145,"imdbId":"tt1043835","homepage":"http:\/\/www.mgnfilmes.pt\/callgirl.html","version":154,"lastModified":"1301905450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/465\/4bc94067017a3c57fe01b465\/call-girl-mid.jpg","studio":"mgn filmes","genre":"Crime","title":"Call Girl","releaseDate":1198713600000,"language":"en","type":"Movie","_key":"57578"} +{"label":"ATL","description":"As four friends prepare for life after high school, different challenges bring about turning points in each of their lives. The dramas unfold and resolve at their local rollerskating rink, Cascade.","id":"13960","runtime":105,"imdbId":"tt0466856","version":198,"lastModified":"1301905463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46e\/4bc94068017a3c57fe01b46e\/atl-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"ATL","releaseDate":1143763200000,"language":"en","type":"Movie","_key":"57579"} +{"label":"T.I.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/096\/4c9c78d57b9aa1430c000096\/t-i-profile.jpg","version":38,"id":"76126","lastModified":"1301901151000","name":"T.I.","type":"Person","_key":"57580"} +{"label":"Evan Ross","version":18,"id":"94103","lastModified":"1301902677000","name":"Evan Ross","type":"Person","_key":"57581"} +{"label":"Lauren London","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/065\/4d767a8f5e73d66462001065\/lauren-london-profile.jpg","biography":"<SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" lang=EN><STRONG>Lauren Nicole London<\/STRONG><\/SPAN><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; FONT-SIZE: 12pt; mso-ansi-language: EN; mso-bidi-font-family: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" lang","version":28,"birthday":"471049200000","id":"98772","birthplace":"Los Angeles, California, USA","lastModified":"1302023026000","name":"Lauren London","type":"Person","_key":"57582"} +{"label":"Albert Daniels","version":20,"id":"76129","lastModified":"1301902144000","name":"Albert Daniels","type":"Person","_key":"57583"} +{"label":"Blank Check","description":"Bullied by his siblings and nagged by his parents, 11-year-old Preston is fed up with his family -- especially their frugality. But he gets his chance to teach them a lesson when a money-laundering criminal nearly bulldozes Preston with his car and gives the boy a blank check as compensation. Preston makes the check out for $1 million and goes on a spending spree he'll never forget. Maybe now, his family will take him seriously!","id":"13962","runtime":93,"imdbId":"tt0109287","version":95,"lastModified":"1301905296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b4\/4d3874237b9aa11a960003b4\/blank-check-mid.jpg","genre":"Comedy","title":"Blank Check","releaseDate":760924800000,"language":"en","tagline":"Quick thinking landed him a million bucks... now everybody's after it!","type":"Movie","_key":"57584"} +{"label":"Brian Bonsall","version":24,"id":"76130","lastModified":"1301901779000","name":"Brian Bonsall","type":"Person","_key":"57585"} +{"label":"Karen Duffy","version":22,"id":"76131","lastModified":"1301902327000","name":"Karen Duffy","type":"Person","_key":"57586"} +{"label":"Chris Demetral","version":24,"id":"76133","lastModified":"1301901949000","name":"Chris Demetral","type":"Person","_key":"57587"} +{"label":"The Last Waltz","description":"A film account and presentation of the final concert of The Band.","id":"13963","runtime":117,"imdbId":"tt0077838","version":182,"lastModified":"1301902516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4bc94068017a3c57fe01b47c\/the-last-waltz-mid.jpg","studio":"FM Productions","genre":"Documentary","title":"The Last Waltz","releaseDate":262396800000,"language":"en","type":"Movie","_key":"57588"} +{"label":"Robbie Robertson","version":34,"id":"72861","lastModified":"1301904134000","name":"Robbie Robertson","type":"Person","_key":"57589"} +{"label":"Rick Danko","version":22,"id":"76134","lastModified":"1301904130000","name":"Rick Danko","type":"Person","_key":"57590"} +{"label":"Levon Helm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e1\/4c8f7ef07b9aa176890000e1\/levon-helm-profile.jpg","version":28,"id":"76136","lastModified":"1301904130000","name":"Levon Helm","type":"Person","_key":"57591"} +{"label":"Richard Manuel","version":21,"id":"76135","lastModified":"1301904130000","name":"Richard Manuel","type":"Person","_key":"57592"} +{"label":"Garth Hudson","version":21,"id":"76137","lastModified":"1301902071000","name":"Garth Hudson","type":"Person","_key":"57593"} +{"label":"Neil Diamond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/092\/4caba08c5e73d64dce000092\/neil-diamond-profile.jpg","version":25,"birthday":"-913168800000","id":"69669","birthplace":"Brooklyn, NY","lastModified":"1301901646000","name":"Neil Diamond","type":"Person","_key":"57594"} +{"label":"Neil Young","version":25,"id":"15425","lastModified":"1301901582000","name":"Neil Young","type":"Person","_key":"57595"} +{"label":"Joni Mitchell","version":21,"id":"76138","lastModified":"1301902071000","name":"Joni Mitchell","type":"Person","_key":"57596"} +{"label":"Emmylou Harris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/899\/4d908bf35e73d65f17002899\/emmylou-harris-profile.jpg","version":24,"id":"76139","lastModified":"1301902146000","name":"Emmylou Harris","type":"Person","_key":"57597"} +{"label":"Paul Butterfield","version":20,"id":"76140","lastModified":"1301902071000","name":"Paul Butterfield","type":"Person","_key":"57598"} +{"label":"Dr. John","version":21,"id":"76141","lastModified":"1301902245000","name":"Dr. John","type":"Person","_key":"57599"} +{"label":"Van Morrison","version":21,"id":"76142","lastModified":"1301901867000","name":"Van Morrison","type":"Person","_key":"57600"} +{"label":"Ronnie Hawkins","version":20,"id":"76143","lastModified":"1301902071000","name":"Ronnie Hawkins","type":"Person","_key":"57601"} +{"label":"Mavis Staples","version":20,"id":"76144","lastModified":"1301902245000","name":"Mavis Staples","type":"Person","_key":"57602"} +{"label":"Roebuck 'Pops' Staples","version":20,"id":"76145","lastModified":"1301902071000","name":"Roebuck 'Pops' Staples","type":"Person","_key":"57603"} +{"label":"Muddy Waters","version":23,"id":"76146","lastModified":"1301901491000","name":"Muddy Waters","type":"Person","_key":"57604"} +{"label":"Michael McClure","version":20,"id":"76147","lastModified":"1301902071000","name":"Michael McClure","type":"Person","_key":"57605"} +{"label":"Lawrence Ferlinghetti","version":20,"id":"76148","lastModified":"1301902071000","name":"Lawrence Ferlinghetti","type":"Person","_key":"57606"} +{"label":"Jim Gordon","version":20,"id":"76149","lastModified":"1301902071000","name":"Jim Gordon","type":"Person","_key":"57607"} +{"label":"Howard Johnson","version":20,"id":"76151","lastModified":"1301901867000","name":"Howard Johnson","type":"Person","_key":"57608"} +{"label":"Jerry Hey","version":20,"id":"76152","lastModified":"1301902071000","name":"Jerry Hey","type":"Person","_key":"57609"} +{"label":"Charlie Keagle","version":20,"id":"76153","lastModified":"1301902071000","name":"Charlie Keagle","type":"Person","_key":"57610"} +{"label":"Larry Packer","version":20,"id":"76154","lastModified":"1301902071000","name":"Larry Packer","type":"Person","_key":"57611"} +{"label":"James Quinn","version":21,"id":"76161","lastModified":"1301904130000","name":"James Quinn","type":"Person","_key":"57612"} +{"label":"Linda McMurray","version":21,"id":"76162","lastModified":"1301904130000","name":"Linda McMurray","type":"Person","_key":"57613"} +{"label":"The Machine Girl","description":"Ami is a typical college girl. She's bright, friendly, popular and athletic, with nothing to set her apart from other girls her age other than the fact that she is an orphan, left to care for her younger brother after her father committed suicide after being falsely accused of murder.","id":"13964","runtime":96,"imdbId":"tt1050160","version":203,"lastModified":"1301902254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/485\/4bc9406b017a3c57fe01b485\/kataude-mashin-garu-mid.jpg","studio":"Fever Dreams","genre":"Action","title":"The Machine Girl","releaseDate":1211500800000,"language":"en","type":"Movie","_key":"57614"} +{"label":"Minase Yashiro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fd\/4d9044467b9aa1675b0030fd\/minase-yashiro-profile.jpg","version":24,"id":"76163","lastModified":"1301901550000","name":"Minase Yashiro","type":"Person","_key":"57615"} +{"label":"Asami","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d87\/4d2800c87b9aa134cf001d87\/asami-profile.jpg","version":29,"id":"76164","lastModified":"1301901372000","name":"Asami","type":"Person","_key":"57616"} +{"label":"Kentar\u00f4 Shimazu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e9\/4d9047877b9aa1675e0030e9\/kentar-shimazu-profile.jpg","version":22,"id":"76165","lastModified":"1301901436000","name":"Kentar\u00f4 Shimazu","type":"Person","_key":"57617"} +{"label":"Honoka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/188\/4d9052c67b9aa1675e003188\/honoka-profile.jpg","biography":"<span style=\"font-family: georgia, verdana, arial, sans-serif; \"><span style=\"font-size: 14px; line-height: 20px; \"><strong style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; \">Honoka<\/strong> (\u7a42\u82b1) is a Japanese adult video actress. She was born on June 20, 1983 in Tarumizu, Kagoshima Prefecture.<\/span>In 2005 and 2006, Honoka consecutively won Video Boy magazine\u2019s \u201cNice Body\u201d award.<\/p><\/span>","version":25,"id":"76166","lastModified":"1301901550000","name":"Honoka","type":"Person","_key":"57618"} +{"label":"Nobuhiro Nishihara","version":23,"id":"76167","lastModified":"1301901927000","name":"Nobuhiro Nishihara","type":"Person","_key":"57619"} +{"label":"Ry\u00f4suke Kawamura","version":23,"id":"76168","lastModified":"1301901633000","name":"Ry\u00f4suke Kawamura","type":"Person","_key":"57620"} +{"label":"Demo Tanaka","version":23,"id":"76169","lastModified":"1301901633000","name":"Demo Tanaka","type":"Person","_key":"57621"} +{"label":"Nahana","version":23,"id":"76170","lastModified":"1301901927000","name":"Nahana","type":"Person","_key":"57622"} +{"label":"Tar\u00f4 Suwa","version":23,"id":"20327","lastModified":"1301901633000","name":"Tar\u00f4 Suwa","type":"Person","_key":"57623"} +{"label":"Noboru Iguchi","version":26,"id":"76171","lastModified":"1301901511000","name":"Noboru Iguchi","type":"Person","_key":"57624"} +{"label":"The Man From Snowy River II","description":"After a few years trying to earn money to marry Jessica Harrison (Sigrid Thornton), Jim Craig (Tom Burlinson) returns to Snowy River. But he finds that a lot of things have changed. ","id":"13965","runtime":110,"imdbId":"tt0095993","version":75,"lastModified":"1301903459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48e\/4bc9406c017a3c57fe01b48e\/the-man-from-snowy-river-ii-mid.jpg","studio":"Silver Screen Partners III","genre":"Adventure","title":"The Man From Snowy River II","releaseDate":575164800000,"language":"en","type":"Movie","_key":"57625"} +{"label":"Sigrid Thornton","version":24,"id":"76181","lastModified":"1301901429000","name":"Sigrid Thornton","type":"Person","_key":"57626"} +{"label":"Nicholas Eadie","version":20,"id":"76182","lastModified":"1301901580000","name":"Nicholas Eadie","type":"Person","_key":"57627"} +{"label":"Mark Hembrow","version":19,"id":"76183","lastModified":"1301901720000","name":"Mark Hembrow","type":"Person","_key":"57628"} +{"label":"Bryan Marshall","version":22,"id":"76184","lastModified":"1301901867000","name":"Bryan Marshall","type":"Person","_key":"57629"} +{"label":"Rhys McConnochie","version":19,"id":"76185","lastModified":"1301901720000","name":"Rhys McConnochie","type":"Person","_key":"57630"} +{"label":"Peter Cummins","version":21,"id":"76186","lastModified":"1301902176000","name":"Peter Cummins","type":"Person","_key":"57631"} +{"label":"Cornelia Frances","version":19,"id":"76187","lastModified":"1301902071000","name":"Cornelia Frances","type":"Person","_key":"57632"} +{"label":"Wyn Roberts","version":19,"id":"76189","lastModified":"1301901720000","name":"Wyn Roberts","type":"Person","_key":"57633"} +{"label":"Alec Wilson","version":19,"id":"76190","lastModified":"1301901720000","name":"Alec Wilson","type":"Person","_key":"57634"} +{"label":"Peter Browne","version":19,"id":"76191","lastModified":"1301901720000","name":"Peter Browne","type":"Person","_key":"57635"} +{"label":"Mark Pennell","version":19,"id":"76192","lastModified":"1301901720000","name":"Mark Pennell","type":"Person","_key":"57636"} +{"label":"Geoff Burrowes","version":21,"id":"76193","lastModified":"1301901937000","name":"Geoff Burrowes","type":"Person","_key":"57637"} +{"label":"Maybe Baby","description":"Hugh Laurie (Sam) and Joely Richardson (Lucy) star as an irresistible couple who seem to have everything - good looks, successful careers, matching motorbikes and an enthusiastic love life. The only thing they lack is the one thing that they really want - a baby. Sam sets his sights on writing a successful screenplay, a comedy about a couple trying for a baby. The only problem is that Lucy is horrified at the idea and forbids him to do it. Creative fulfillment is too much for Sam to resist and m","id":"13966","runtime":104,"imdbId":"tt0206926","version":166,"lastModified":"1301904079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc9406e017a3c57fe01b49c\/maybe-baby-mid.jpg","studio":"Pandora Cinema","genre":"Comedy","title":"Maybe Baby","releaseDate":966470400000,"language":"en","type":"Movie","_key":"57638"} +{"label":"Adrian Lester","version":32,"id":"76215","lastModified":"1301901628000","name":"Adrian Lester","type":"Person","_key":"57639"} +{"label":"Yasmin Bannerman","version":19,"id":"76216","lastModified":"1301901535000","name":"Yasmin Bannerman","type":"Person","_key":"57640"} +{"label":"Dave Thompson","version":23,"id":"76217","lastModified":"1301901609000","name":"Dave Thompson","type":"Person","_key":"57641"} +{"label":"John Brenner","version":19,"id":"76219","lastModified":"1301901609000","name":"John Brenner","type":"Person","_key":"57642"} +{"label":"Jaz Wilson","version":19,"id":"76220","lastModified":"1301901609000","name":"Jaz Wilson","type":"Person","_key":"57643"} +{"label":"Ben Elton","version":22,"id":"76221","lastModified":"1301901807000","name":"Ben Elton","type":"Person","_key":"57644"} +{"label":"Miss Potter","description":"The story of Beatrix Potter, the author of the beloved and best-selling children's book, \"The Tale of Peter Rabbit\", and her struggle for love, happiness and success.","id":"13967","runtime":92,"imdbId":"tt0482546","version":177,"lastModified":"1301902700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/305\/4c31f3b37b9aa16660000305\/miss-potter-mid.jpg","studio":"Phoenix Pictures","genre":"Drama","title":"Miss Potter","releaseDate":1165104000000,"language":"en","type":"Movie","_key":"57645"} +{"label":"Jump In!","description":"Story revolves around a young boxer, Izzy Daniels, who trains to follow in his father's footsteps by winning the Golden Glove. When his friend, Mary, however, asks him to substitute for a team member in a Double Dutch tournament, the young man discovers a hidden passion for jump roping","id":"13968","runtime":85,"imdbId":"tt0805559","version":69,"lastModified":"1301903475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4aa\/4bc9406f017a3c57fe01b4aa\/jump-in-mid.jpg","genre":"Drama","title":"Jump In!","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"57646"} +{"label":"David Reivers","version":21,"id":"76225","lastModified":"1301902197000","name":"David Reivers","type":"Person","_key":"57647"} +{"label":"Shanica Knowles","version":4,"id":"231117","lastModified":"1301904108000","name":"Shanica Knowles","type":"Person","_key":"57648"} +{"label":"Laivan Greene","version":12,"id":"210395","lastModified":"1301903771000","name":"Laivan Greene","type":"Person","_key":"57649"} +{"label":"Kylee Russell","version":12,"id":"210688","lastModified":"1301903768000","name":"Kylee Russell","type":"Person","_key":"57650"} +{"label":"Patrick Johnson Jr.","version":4,"id":"231118","lastModified":"1301904108000","name":"Patrick Johnson Jr.","type":"Person","_key":"57651"} +{"label":"First Daughter","description":"Samantha Mackenzie, the 18-year-old daughter of the president of the United States, insists that she be allowed to attend college like a normal kid . But when your dad's the leader of the free world, \"normal\" is relative. It starts well when Samantha befriends her roommate and falls for her handsome residence hall assistant, James. But James has a secret that could change everything.","id":"13969","runtime":105,"imdbId":"tt0361620","trailer":"http:\/\/www.youtube.com\/watch?v=noaY-7ACqrQ","version":150,"lastModified":"1301903635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bf\/4bc94073017a3c57fe01b4bf\/first-daughter-mid.jpg","genre":"Comedy","title":"First Daughter","releaseDate":1095984000000,"language":"en","tagline":"The girl who always stood out is finally getting the chance to fit in.","type":"Movie","_key":"57652"} +{"label":"Arahan","description":"When a thief driving a motorcycle steals a purse of a pedestrian, the clumsy, naive and honest rookie policeman Sang-hwan runs after him, but the skilled specialist in martial arts Wi-jin captures the criminal and Sang-hwan is severely injured. She brings Sang-hwan to her home, where the six Masters of Tao heal him and believe that he has a powerful Qi, the spiritual energy of the universe, and could be a powerful warrior. Sang-hwan begins his training to ascend to a Maruchi, while the evil and ","id":"13970","runtime":114,"imdbId":"tt0404777","version":70,"lastModified":"1301905213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4bc94074017a3c57fe01b4c8\/arahan-mid.jpg","genre":"Action","title":"Arahan","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"57653"} +{"label":"Seung-beom Ryu","version":21,"id":"88876","lastModified":"1301902394000","name":"Seung-beom Ryu","type":"Person","_key":"57654"} +{"label":"So-yi Yoon","version":24,"id":"77281","lastModified":"1301901699000","name":"So-yi Yoon","type":"Person","_key":"57655"} +{"label":"Doo-hong Jung","version":25,"id":"77058","lastModified":"1301901535000","name":"Doo-hong Jung","type":"Person","_key":"57656"} +{"label":"Seung-wan Ryoo","version":33,"id":"86325","lastModified":"1301902450000","name":"Seung-wan Ryoo","type":"Person","_key":"57657"} +{"label":"Wild Child","description":"Rebellious 16 year old Poppy from Mailibu is sent to an English boarding school. Realising her Father isn't coming back to rescue her she tries to get expelled.","id":"13971","runtime":98,"imdbId":"tt1024255","version":242,"lastModified":"1301903566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4de\/4bc94075017a3c57fe01b4de\/wild-child-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Wild Child","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"57658"} +{"label":"Nick Moore","version":45,"id":"3310","lastModified":"1301901274000","name":"Nick Moore","type":"Person","_key":"57659"} +{"label":"Lexi Ainsworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ef\/4c2218207b9aa130a60002ef\/lexi-ainsworth-profile.jpg","version":20,"id":"76226","lastModified":"1301901100000","name":"Lexi Ainsworth","type":"Person","_key":"57660"} +{"label":"Johnny Pacar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/243\/4c2218a87b9aa13227000243\/johnny-pacar-profile.jpg","version":22,"id":"76227","lastModified":"1301901103000","name":"Johnny Pacar","type":"Person","_key":"57661"} +{"label":"Sophie Wu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/291\/4c221c517b9aa1321e000291\/sophie-wu-profile.jpg","version":34,"id":"116883","lastModified":"1301901083000","name":"Sophie Wu","type":"Person","_key":"57662"} +{"label":"The Women","description":"The story centers on a group of gossipy, high-society women who spend their days at the beauty salon and haunting fashion shows. The sweet, happily-wedded Mary Haines finds her marriage in trouble when shop girl Crystal Allen gets her hooks into Mary's man.","id":"13972","runtime":114,"imdbId":"tt0430770","homepage":"http:\/\/thewomen.warnerbros.com\/index.html","version":177,"lastModified":"1301906253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/551\/4d6c6b2a7b9aa13631004551\/the-women-mid.jpg","studio":"Picturehouse","genre":"Comedy","title":"The Women","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"57663"} +{"label":"India Ennenga","version":21,"id":"76229","lastModified":"1301902017000","name":"India Ennenga","type":"Person","_key":"57664"} +{"label":"Diane English","version":21,"id":"76230","lastModified":"1301902026000","name":"Diane English","type":"Person","_key":"57665"} +{"label":"Choke","description":"A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.","id":"13973","runtime":89,"imdbId":"tt1024715","trailer":"http:\/\/www.youtube.com\/watch?v=jP_IKyx0VjY","version":254,"lastModified":"1301902745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc9407e017a3c57fe01b51a\/choke-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Choke","releaseDate":1225324800000,"language":"en","type":"Movie","_key":"57666"} +{"label":"Gillian Jacobs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/090\/4cdde4647b9aa13c7a000090\/gillian-jacobs-profile.jpg","version":26,"id":"94098","lastModified":"1301902040000","name":"Gillian Jacobs","type":"Person","_key":"57667"} +{"label":"In the Electric Mist","description":"A detective in the deep South is led into a series of surreal encounters with a troop of Confederate soldiers.","id":"13975","runtime":117,"imdbId":"tt0910905","trailer":"http:\/\/www.youtube.com\/watch?v=I5NPIpRRhPU","version":287,"lastModified":"1301907763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/534\/4bc94082017a3c57fe01b534\/in-the-electric-mist-mid.jpg","genre":"Drama","title":"In the Electric Mist","releaseDate":1235088000000,"language":"en","type":"Movie","_key":"57668"} +{"label":"Bernard Hocke","version":18,"id":"132434","lastModified":"1301902060000","name":"Bernard Hocke","type":"Person","_key":"57669"} +{"label":"Dylan Moran: Monster","description":"Irish comedian Dylan Moran live at Vicar Street, Dublin.","id":"13976","runtime":85,"imdbId":"tt0439553","version":72,"lastModified":"1301904674000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4bc94082017a3c57fe01b53d\/dylan-moran-monster-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Dylan Moran: Monster","releaseDate":1100476800000,"language":"en","type":"Movie","_key":"57670"} +{"label":"Day Night Day Night","description":"No overview found.","id":"13979","runtime":0,"imdbId":"tt0499455","version":98,"lastModified":"1301906952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/564\/4bc94086017a3c57fe01b564\/day-night-day-night-mid.jpg","genre":"Drama","title":"Day Night Day Night","releaseDate":1148515200000,"language":"en","type":"Movie","_key":"57671"} +{"label":"Sword of the Stranger","description":"Hunted by the Ming from China, young Kotaro and his dog meet a nameless samurai \"Nanashi\" who is haunted constantly by memories of his past which has led him to avoid drawing his sword ever again. Among the Ming is a fearsome Western fighter named Raro, whose only desire is to find a worthy opponent.","id":"13980","runtime":103,"imdbId":"tt1121794","homepage":"http:\/\/www.stranja.jp\/","version":173,"lastModified":"1301904346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58e\/4bc9408b017a3c57fe01b58e\/sword-of-the-stranger-mid.jpg","studio":"Bones Studio","genre":"Animation","title":"Sword of the Stranger","releaseDate":1191024000000,"language":"en","type":"Movie","_key":"57672"} +{"label":"Tomoya Nagase","version":19,"id":"83660","lastModified":"1301901828000","name":"Tomoya Nagase","type":"Person","_key":"57673"} +{"label":"Y\u00fbki Chinen","version":17,"id":"83661","lastModified":"1301901937000","name":"Y\u00fbki Chinen","type":"Person","_key":"57674"} +{"label":"K\u00f4ichi Yamadera","version":17,"id":"83662","lastModified":"1301901937000","name":"K\u00f4ichi Yamadera","type":"Person","_key":"57675"} +{"label":"Masahiro And\u00f4","version":18,"id":"107045","lastModified":"1301902536000","name":"Masahiro And\u00f4","type":"Person","_key":"57676"} +{"label":"Appleseed Saga: Ex Machina","description":"As members of ESWAT, the elite forces serving Olympus, Deunan and Briaereos they are deployed everywhere trouble strikes. Olympus finds itself under a stealth attack - cyborg terrorism, deadly nanotech zealots, and rioting citizens are just some of the threats that Deunan must contend with as she fights to save Olympus! ","id":"13981","runtime":105,"imdbId":"tt1043842","trailer":"http:\/\/www.youtube.com\/watch?v=tZkag7M_i5A","version":200,"lastModified":"1301902193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a3\/4bc9408d017a3c57fe01b5a3\/13981-mid.jpg","studio":"Toei Video Company","genre":"Animation","title":"Appleseed Saga: Ex Machina","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"57677"} +{"label":"Kong Kuwata","version":22,"id":"111370","lastModified":"1301901438000","name":"Kong Kuwata","type":"Person","_key":"57678"} +{"label":"Rei Igarashi","version":22,"id":"111371","lastModified":"1301901554000","name":"Rei Igarashi","type":"Person","_key":"57679"} +{"label":"Rica Fukami","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cd4\/4d2630887b9aa134cb000cd4\/rica-fukami-profile.jpg","version":24,"id":"111372","lastModified":"1301902395000","name":"Rica Fukami","type":"Person","_key":"57680"} +{"label":"Takaya Hashi","version":22,"id":"111373","lastModified":"1301901934000","name":"Takaya Hashi","type":"Person","_key":"57681"} +{"label":"Miyuki Sawashiro","version":23,"id":"111374","lastModified":"1301901934000","name":"Miyuki Sawashiro","type":"Person","_key":"57682"} +{"label":"Yasuyuki Kase","version":22,"id":"111375","lastModified":"1301901934000","name":"Yasuyuki Kase","type":"Person","_key":"57683"} +{"label":"Naoko Kouda","version":22,"id":"111376","lastModified":"1301901766000","name":"Naoko Kouda","type":"Person","_key":"57684"} +{"label":"8 Heads in a Duffel Bag","description":"A mob bagman finds that his luggage, containing the proof of his latest hit, has been switched. ","id":"13982","runtime":95,"imdbId":"tt0118541","version":181,"lastModified":"1301905748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e3\/4bc94098017a3c57fe01b5e3\/8-heads-in-a-duffel-bag-mid.jpg","studio":"Orion Pictures Corporation","genre":"Action","title":"8 Heads in a Duffel Bag","releaseDate":861321600000,"language":"en","type":"Movie","_key":"57685"} +{"label":"Ernestine Mercer","version":19,"id":"77581","lastModified":"1301901867000","name":"Ernestine Mercer","type":"Person","_key":"57686"} +{"label":"Anthony Mangano","version":19,"id":"77585","lastModified":"1301901535000","name":"Anthony Mangano","type":"Person","_key":"57687"} +{"label":"Joe Basile","version":19,"id":"77586","lastModified":"1301901609000","name":"Joe Basile","type":"Person","_key":"57688"} +{"label":"Frank Roman","version":19,"id":"77587","lastModified":"1301901720000","name":"Frank Roman","type":"Person","_key":"57689"} +{"label":"Howard George","version":20,"id":"77588","lastModified":"1301901763000","name":"Howard George","type":"Person","_key":"57690"} +{"label":"Calvin Levels","version":21,"id":"77589","lastModified":"1301901708000","name":"Calvin Levels","type":"Person","_key":"57691"} +{"label":"John Zurlo","version":19,"id":"77592","lastModified":"1301901720000","name":"John Zurlo","type":"Person","_key":"57692"} +{"label":"Roger Cobra","version":19,"id":"77594","lastModified":"1301901720000","name":"Roger Cobra","type":"Person","_key":"57693"} +{"label":"Jeff Sanders","version":19,"id":"77596","lastModified":"1301901720000","name":"Jeff Sanders","type":"Person","_key":"57694"} +{"label":"Ric Sarabia","version":19,"id":"77597","lastModified":"1301901720000","name":"Ric Sarabia","type":"Person","_key":"57695"} +{"label":"Andy Comeau","version":21,"id":"25990","lastModified":"1301901845000","name":"Andy Comeau","type":"Person","_key":"57696"} +{"label":"Tom Schulman","version":43,"id":"2691","lastModified":"1299773035000","name":"Tom Schulman","type":"Person","_key":"57697"} +{"label":"Finishing The Game","description":"No overview found.","id":"13983","runtime":84,"imdbId":"tt0843850","version":126,"lastModified":"1301908298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ec\/4bc94099017a3c57fe01b5ec\/finishing-the-game-mid.jpg","title":"Finishing The Game","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"57698"} +{"label":"Fubar","description":"Terry and Dean are lifelong friends who have grown-up together: shotgunning their first beers, forming their first garage band, and growing the great Canadian mullet known as \"hockey hair\". Now the lives of these Alberta everymen are brought to the big screen by documentarian Ferral Mitchener in an exploration of the depths of friendship, the fragility of life, growing up gracefully and the art and science of drinking beer like a man","id":"13984","runtime":76,"imdbId":"tt0302585","trailer":"http:\/\/www.youtube.com\/watch?v=tIpD1kXDpWI","version":89,"lastModified":"1301908300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f9\/4bc9409a017a3c57fe01b5f9\/fubar-mid.jpg","genre":"Comedy","title":"Fubar","releaseDate":1009843200000,"language":"en","tagline":"Just Give'r","type":"Movie","_key":"57699"} +{"label":"Paul Spence","version":20,"id":"147967","lastModified":"1301902395000","name":"Paul Spence","type":"Person","_key":"57700"} +{"label":"David Lawrence","version":23,"id":"98952","lastModified":"1301902035000","name":"David Lawrence","type":"Person","_key":"57701"} +{"label":"Gordon Skilling","version":16,"id":"148434","lastModified":"1301902672000","name":"Gordon Skilling","type":"Person","_key":"57702"} +{"label":"Fun & Fancy Free","description":"Jiminy Cricket hosts two Disney animated shorts: \"Bongo,\" about a circus bear escaping to the wild, and \"Mickey and the Beanstalk,\" a take on the famous fairy tale.","id":"13985","runtime":0,"imdbId":"tt0039404","version":83,"lastModified":"1301905291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4c8a5add7b9aa164980000a0\/fun-fancy-free-mid.jpg","genre":"Animation","title":"Fun & Fancy Free","releaseDate":-725846400000,"language":"en","type":"Movie","_key":"57703"} +{"label":"Dil To Pagal Hai","description":"The story of four lovers: Rahul, Ajay, Pooja, and Nisha. This Yash Chopra fantasy explores romance as the days go on, and who live in a really nice dream house while their dreams come true.","id":"13986","runtime":179,"imdbId":"tt0118983","version":93,"lastModified":"1301643769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/615\/4bc9409c017a3c57fe01b615\/dil-to-pagal-hai-mid.jpg","studio":"Yash Raj Films","genre":"Eastern","title":"Dil To Pagal Hai","releaseDate":878256000000,"language":"en","type":"Movie","_key":"57704"} +{"label":"Madhuri Dixit","version":29,"id":"76232","lastModified":"1301901562000","name":"Madhuri Dixit","type":"Person","_key":"57705"} +{"label":"Karisma Kapoor","version":22,"id":"76233","lastModified":"1301902393000","name":"Karisma Kapoor","type":"Person","_key":"57706"} +{"label":"The Art of War II: Betrayal","description":"Agent Neil Shaw is called out of retirement and finds himself in the midst of a plot to assassinate several leading Senators with himself set-up to take the rap for a recent killing","id":"13988","runtime":103,"imdbId":"tt1233571","version":154,"lastModified":"1301904691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61e\/4bc9409d017a3c57fe01b61e\/the-art-of-war-ii-betrayal-mid.jpg","genre":"Action","title":"The Art of War II: Betrayal","releaseDate":1218499200000,"language":"en","type":"Movie","_key":"57707"} +{"label":"Lisa Marie Caruk","version":24,"id":"81802","lastModified":"1301901991000","name":"Lisa Marie Caruk","type":"Person","_key":"57708"} +{"label":"24 Redemption","description":"Set and shot on location in Africa, Bauer and mentor Carl Benton battle an international crisis, while here at home the nation prepares for a new president on inauguration day. Taking place just a few months before the new day dawns, U.S. State Department officer Frank Tramell and Jonah Hodges are pulling the strings that will set the stage and raise the stakes for Season Seven.","id":"13989","runtime":98,"imdbId":"tt0813980","trailer":"http:\/\/www.youtube.com\/watch?v=1276","homepage":"http:\/\/www.fox.com\/24\/redemption","version":149,"lastModified":"1301902730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62b\/4bc940a0017a3c57fe01b62b\/24-redemption-mid.jpg","studio":"20th Century Fox Television","genre":"Action","title":"24 Redemption","releaseDate":1227398400000,"language":"en","type":"Movie","_key":"57709"} +{"label":"The Wackness","description":"Set in New York City in the sweltering summer, The Wackness tells the story of a troubled teenage drug dealer, who trades pot for therapy sessions with a drug-addled psychiatrist. Things get more complicated when he falls for one of his classmates, who just happens to be the doctors daughter. This is a coming-of-age story about sex, drugs, music and what it takes to be a man.","id":"13990","runtime":99,"imdbId":"tt1082886","trailer":"http:\/\/www.youtube.com\/watch?v=1583","homepage":"http:\/\/www.sonyclassics.com\/thewackness\/","version":315,"lastModified":"1301905020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/643\/4bc940a3017a3c57fe01b643\/the-wackness-mid.jpg","studio":"Occupant Films","genre":"Comedy","title":"The Wackness","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"57710"} +{"label":"College","description":"A wild weekend is in store for three high school seniors who visit a local college campus as prospective freshmen.","id":"13991","runtime":94,"imdbId":"tt0844671","trailer":"http:\/\/www.youtube.com\/watch?v=1468","homepage":"http:\/\/college-themovie.com\/","version":198,"lastModified":"1301902404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/650\/4bc940a4017a3c57fe01b650\/college-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"College","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"57711"} +{"label":"Andrew Caldwell","version":21,"id":"77912","lastModified":"1301901293000","name":"Andrew Caldwell","type":"Person","_key":"57712"} +{"label":"Andree Moss","version":21,"id":"77913","lastModified":"1301901494000","name":"Andree Moss","type":"Person","_key":"57713"} +{"label":"Carolyn Moss","version":21,"id":"77916","lastModified":"1301901646000","name":"Carolyn Moss","type":"Person","_key":"57714"} +{"label":"Wendy Talley","version":21,"id":"77917","lastModified":"1301901779000","name":"Wendy Talley","type":"Person","_key":"57715"} +{"label":"Deb Hagan","version":21,"id":"77911","lastModified":"1301901949000","name":"Deb Hagan","type":"Person","_key":"57716"} +{"label":"Turn The River","description":"No overview found.","id":"13993","runtime":92,"imdbId":"tt0811128","version":100,"lastModified":"1301905627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/659\/4bc940a5017a3c57fe01b659\/turn-the-river-mid.jpg","studio":"Bandora","genre":"Drama","title":"Turn The River","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"57717"} +{"label":"Romance & Cigarettes","description":"Down-and-dirty musical love story set in the world of the working class. Nick is an ironworker who builds and repairs bridges. He's married to Kitty, a dressmaker, a strong and gentle woman with whom he has three daughters. He is carrying on a torrid affair with a redheaded woman named Tula. Nick is basically a good, hardworking man driven forward by will and blinded by his urges.","id":"13994","runtime":105,"imdbId":"tt0368222","trailer":"http:\/\/www.youtube.com\/watch?v=17mDB6P2PbQ","version":324,"lastModified":"1301904513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/148\/4cac5e3b7b9aa1152f000148\/romance-cigarettes-mid.jpg","studio":"United Artists","genre":"Comedy","title":"Romance & Cigarettes","releaseDate":1125964800000,"language":"en","type":"Movie","_key":"57718"} +{"label":"Captain America","description":"During World War II, a brave, patriotic American Soldier undergoes experiments to become a new supersoldier, \"Captain America.\" Racing to Germany to sabotage the rockets of Nazi baddie \"Red Skull\", Captain America winds up frozen until the 1990s. He reawakens to find that the Red Skull has changed identities and is now planning to kidnap the President of the United States.","id":"13995","runtime":97,"imdbId":"tt0103923","version":98,"lastModified":"1301903708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68b\/4bc940ac017a3c57fe01b68b\/captain-america-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Action","title":"Captain America","releaseDate":661132800000,"language":"en","type":"Movie","_key":"57719"} +{"label":"Matt Salinger","version":24,"id":"76234","lastModified":"1301901609000","name":"Matt Salinger","type":"Person","_key":"57720"} +{"label":"Kim Gillingham","version":20,"id":"76235","lastModified":"1301901991000","name":"Kim Gillingham","type":"Person","_key":"57721"} +{"label":"Carla Cassola","version":26,"id":"76236","lastModified":"1301901720000","name":"Carla Cassola","type":"Person","_key":"57722"} +{"label":"Massimilio Massimi","version":19,"id":"76237","lastModified":"1301901867000","name":"Massimilio Massimi","type":"Person","_key":"57723"} +{"label":"Wayde Preston","version":19,"id":"76238","lastModified":"1301902071000","name":"Wayde Preston","type":"Person","_key":"57724"} +{"label":"Bottle Shock","description":"Bottle Shock tells the story of the events that led up to the Judgment of Paris, when California wine beat French wine in a blind taste test.","id":"13996","runtime":110,"imdbId":"tt0914797","homepage":"http:\/\/www.bottleshockthemovie.com\/","version":225,"lastModified":"1301903434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69d\/4bc940ae017a3c57fe01b69d\/bottle-shock-mid.jpg","genre":"Comedy","title":"Bottle Shock","releaseDate":1217980800000,"language":"en","type":"Movie","_key":"57725"} +{"label":"Randall Miller","version":28,"id":"77121","lastModified":"1301901779000","name":"Randall Miller","type":"Person","_key":"57726"} +{"label":"Black Sheep","description":"When dignified Albert Donnelly runs for Governor, his team moves to keep his slow-witted and klutzy younger brother, Mike, out of the eye of the media. To baby-sit Mike, the campaign assigns sarcastic Steve, who gets the experience of a lifetime when he tries to take Mike out of town during the election.","id":"13997","runtime":87,"imdbId":"tt0115697","trailer":"http:\/\/www.youtube.com\/watch?v=BRgCb1QjOv4","version":205,"lastModified":"1302040994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a6\/4bc940ae017a3c57fe01b6a6\/black-sheep-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Black Sheep","releaseDate":823219200000,"language":"en","tagline":"There's one in every family.","type":"Movie","_key":"57727"} +{"label":"Margot at the Wedding","description":"Margot and her son Claude decide to visit her sister Pauline after she announces that she is getting married to less-than-impressive Malcolm. In short order, the storm the sisters create leaves behind a mess of thrashed relationships and exposed family secrets.","id":"13998","runtime":93,"imdbId":"tt0757361","version":198,"lastModified":"1301903909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b4\/4bc940b0017a3c57fe01b6b4\/margot-at-the-wedding-mid.jpg","genre":"Comedy","title":"Margot at the Wedding","releaseDate":1220140800000,"language":"en","tagline":"One family. Infinite degrees of separation.","type":"Movie","_key":"57728"} +{"label":"Anamorph","description":"A psychological thriller based on the concept of anamorphosis, a painting technique that manipulates the laws of perspective to create two competing images on a single canvas.","id":"14000","runtime":107,"imdbId":"tt0497323","homepage":"http:\/\/www.rottentomatoes.com\/m\/anamorph\/","version":145,"lastModified":"1301902939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ca\/4bc940b2017a3c57fe01b6ca\/anamorph-mid.jpg","studio":"Kamala Films","genre":"Mystery","title":"Anamorph","releaseDate":1190332800000,"language":"en","type":"Movie","_key":"57729"} +{"label":"Henry Miller","version":20,"id":"81317","lastModified":"1301901720000","name":"Henry Miller","type":"Person","_key":"57730"} +{"label":"Amy Carlson","version":20,"id":"81321","lastModified":"1301902465000","name":"Amy Carlson","type":"Person","_key":"57731"} +{"label":"Dead Silence","description":"After receiving a weird package with the doll named Billy, Jamie's wife is murdered and he believe's Mary Shaw and Billy are behind it. Destined to find out the truth, Jamie goes to the town of Raven's Fair where the ventriloquist Mary Shaw used to perform and is buried. But Jamie is in for more than he expected","id":"14001","runtime":88,"imdbId":"tt0455760","homepage":"http:\/\/www.deadsilencemovie.net\/","version":280,"lastModified":"1301902185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d7\/4bc940b3017a3c57fe01b6d7\/dead-silence-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"Dead Silence","releaseDate":1174003200000,"language":"en","tagline":"You scream. You die.","type":"Movie","_key":"57732"} +{"label":"Ryan Kwanten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be7\/4cf5a3e45e73d6299e000be7\/ryan-kwanten-profile.jpg","version":36,"id":"133212","lastModified":"1301902164000","name":"Ryan Kwanten","type":"Person","_key":"57733"} +{"label":"Steve Adams","version":30,"id":"66934","lastModified":"1301901612000","name":"Steve Adams","type":"Person","_key":"57734"} +{"label":"Michael Fairman","version":27,"id":"84707","lastModified":"1301902721000","name":"Michael Fairman","type":"Person","_key":"57735"} +{"label":"Keir Gilchrist","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c00\/4cf5a5b35e73d6299e000c00\/keir-gilchrist-profile.jpg","version":28,"id":"132712","lastModified":"1301902540000","name":"Keir Gilchrist","type":"Person","_key":"57736"} +{"label":"Baraka","description":"This is a paralyzingly beautiful documentary with a global vision: an odyssey through landscape and time, that is an attempt to capture the essence of life. \r\n","id":"14002","runtime":96,"imdbId":"tt0103767","version":205,"lastModified":"1302039233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/700\/4bc940ba017a3c57fe01b700\/baraka-mid.jpg","genre":"Documentary","title":"Baraka","releaseDate":716515200000,"language":"en","tagline":"A world beyond words.","type":"Movie","_key":"57737"} +{"label":"Ron Fricke","version":31,"id":"68994","lastModified":"1301901648000","name":"Ron Fricke","type":"Person","_key":"57738"} +{"label":"Fullmetal Alchemist: Conqueror of Shamballa","description":"Edward Elric, the Fullmetal Alchemist, is on the other side of the gate. He has befriended someone who resembles his brother, Al, and has met a gypsy resembling Rose. He finds out that the Germans are planning on opening the gate and attack the other side. Although Al has learned a lot he cannot stop all of them, and Ed cannot use Alchemy while in the other side. ","id":"14003","runtime":105,"imdbId":"tt0485323","trailer":"http:\/\/www.youtube.com\/watch?v=884","homepage":"http:\/\/www.fullmetalalchemist.com\/movie\/index.htm","version":539,"lastModified":"1301902189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/712\/4bc940bb017a3c57fe01b712\/gekijo-ban-hagane-no-renkinjutsushi-shanbara-wo-yuku-mono-mid.jpg","studio":"Aniplex","genre":"Action","title":"Fullmetal Alchemist: Conqueror of Shamballa","releaseDate":1122076800000,"language":"en","type":"Movie","_key":"57739"} +{"label":"Seiji Mizushima","version":20,"id":"83923","lastModified":"1301901927000","name":"Seiji Mizushima","type":"Person","_key":"57740"} +{"label":"Kazuko Kat\u00f4","version":19,"id":"83926","lastModified":"1301901927000","name":"Kazuko Kat\u00f4","type":"Person","_key":"57741"} +{"label":"Romi Pak","version":22,"id":"81243","lastModified":"1301901443000","name":"Romi Pak","type":"Person","_key":"57742"} +{"label":"Rie Kugimiya","version":27,"id":"83928","lastModified":"1301901927000","name":"Rie Kugimiya","type":"Person","_key":"57743"} +{"label":"T\u00f4ru \u00d4kawa","version":20,"id":"83929","lastModified":"1301902645000","name":"T\u00f4ru \u00d4kawa","type":"Person","_key":"57744"} +{"label":"Kenji Utsumi","version":43,"id":"83930","lastModified":"1301901808000","name":"Kenji Utsumi","type":"Person","_key":"57745"} +{"label":"Miyuu Sawai","version":20,"id":"83931","lastModified":"1301902301000","name":"Miyuu Sawai","type":"Person","_key":"57746"} +{"label":"UFC 92: The Ultimate 2008","description":"UFC 92: The Ultimate 2008 was a mixed martial arts event by the Ultimate Fighting Championship (UFC) held on December 27, 2008 at the MGM Grand Garden Arena in Las Vegas, Nevada.\r\nThe main event featured number-one contender Rashad Evans fighting the UFC Light Heavyweight Champion Forrest Griffin.","id":"14004","runtime":162,"imdbId":"tt1488168","version":65,"lastModified":"1301906170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/727\/4bc940bd017a3c57fe01b727\/ufc-92-the-ultimate-2008-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 92: The Ultimate 2008","releaseDate":1230336000000,"language":"en","type":"Movie","_key":"57747"} +{"label":"Terror Firmer","description":"TROMA crew are the only folks capable of stopping a crazed hermaphrodite from continuing it's violent rampage!","id":"14005","runtime":114,"imdbId":"tt0169299","version":151,"lastModified":"1301904883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/730\/4bc940c1017a3c57fe01b730\/terror-firmer-mid.jpg","genre":"Comedy","title":"Terror Firmer","releaseDate":925516800000,"language":"en","type":"Movie","_key":"57748"} +{"label":"Lloyd Kaufman","version":89,"id":"78021","lastModified":"1301901454000","name":"Lloyd Kaufman","type":"Person","_key":"57749"} +{"label":"Will Keenan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31e\/4bf1ca9e017a3c321300031e\/will-keenan-profile.jpg","version":23,"id":"98310","lastModified":"1301901487000","name":"Will Keenan","type":"Person","_key":"57750"} +{"label":"Alyce LaTourelle","version":17,"id":"98311","lastModified":"1301902706000","name":"Alyce LaTourelle","type":"Person","_key":"57751"} +{"label":"Trent Haaga","version":48,"id":"92993","lastModified":"1301902347000","name":"Trent Haaga","type":"Person","_key":"57752"} +{"label":"Sheri Wenden","version":16,"id":"98312","lastModified":"1301902245000","name":"Sheri Wenden","type":"Person","_key":"57753"} +{"label":"Yaniv Sharon","version":17,"id":"98313","lastModified":"1301902071000","name":"Yaniv Sharon","type":"Person","_key":"57754"} +{"label":"Charlotte Kaufman","version":20,"id":"98314","lastModified":"1301902299000","name":"Charlotte Kaufman","type":"Person","_key":"57755"} +{"label":"Joe Fleishaker","version":21,"id":"97825","lastModified":"1301902303000","name":"Joe Fleishaker","type":"Person","_key":"57756"} +{"label":"Lemmy","version":22,"id":"98316","lastModified":"1301901241000","name":"Lemmy","type":"Person","_key":"57757"} +{"label":"Lisa Gaye","version":17,"id":"98317","lastModified":"1301902071000","name":"Lisa Gaye","type":"Person","_key":"57758"} +{"label":"Rachael Robbins","version":25,"id":"98100","lastModified":"1301902138000","name":"Rachael Robbins","type":"Person","_key":"57759"} +{"label":"Cadet Kelly","description":"Hyperactive teenager Kelly is enrolled into a military school when her new stepfather becomes the Commandant. At first she has problems fitting in and taking orders until she tries out for the drill team.","id":"14008","runtime":101,"imdbId":"tt0294425","version":111,"lastModified":"1301905107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73e\/4bc940c2017a3c57fe01b73e\/cadet-kelly-mid.jpg","genre":"Family","title":"Cadet Kelly","releaseDate":1015545600000,"language":"en","type":"Movie","_key":"57760"} +{"label":"Christy Carlson Romano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f6\/4cfa8b355e73d6299c0027f6\/christy-carlson-romano-profile.jpg","version":36,"id":"76241","lastModified":"1301901215000","name":"Christy Carlson Romano","type":"Person","_key":"57761"} +{"label":"Justice League: The New Frontier","description":"When Superman, Batman, and Wonder Womans--not to mention Green Lantern, Martian Manhunter, and The Flash-- join forces, they form the Justice League. The adventure starts when the human race is threatened by a powerful creature, and only the combined power of these superheroes can stop it. But can they overcome their differences?","id":"14011","runtime":74,"imdbId":"tt0902272","homepage":"http:\/\/www.dccomics.com\/sites\/newfrontier\/","version":244,"lastModified":"1301902942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/776\/4bc940ca017a3c57fe01b776\/justice-league-the-new-frontier-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Action","title":"Justice League: The New Frontier","releaseDate":1203984000000,"language":"en","type":"Movie","_key":"57762"} +{"label":"Dave Bullock","version":20,"id":"76243","lastModified":"1301901720000","name":"Dave Bullock","type":"Person","_key":"57763"} +{"label":"Flicka","description":"A headstrong 16 year old Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. Katy then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope","id":"14012","runtime":95,"imdbId":"tt0434215","version":581,"lastModified":"1301902615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4bc940ce017a3c57fe01b784\/flicka-mid.jpg","genre":"Adventure","title":"Flicka","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"57764"} +{"label":"Michael Mayer","version":32,"id":"50460","lastModified":"1301901795000","name":"Michael Mayer","type":"Person","_key":"57765"} +{"label":"BASEketball","description":"Two losers from Milwaukee, Coop & Remer, invent a new game playing basketball, using baseball rules. When the game becomes a huge success, they, along with a billionaire's help, form the Professional Baseketball League where everyone gets the same pay and no team can change cities. Theirs is the only team standing in the way of major rule changes that the owner of a rival team wants to institute.","id":"14013","runtime":103,"imdbId":"tt0131857","trailer":"http:\/\/www.youtube.com\/watch?v=Y8WdDmAFcJw","version":183,"lastModified":"1301902312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/796\/4bc940cf017a3c57fe01b796\/baseketball-mid.jpg","studio":"Zucker Brothers Productions","genre":"Comedy","title":"BASEketball","releaseDate":901843200000,"language":"en","type":"Movie","_key":"57766"} +{"label":"Yasmine Bleeth","version":21,"id":"76244","lastModified":"1301901857000","name":"Yasmine Bleeth","type":"Person","_key":"57767"} +{"label":"The Hammer","description":"Approaching forty, Ferro is unsatisfied with his life as a construction worker and part-time boxing instructor in Los Angeles, CA. After a successful bout with a young pro boxer, Ferro decides to don the gloves one last time. The movie recounts his unlikely quest for Olympic gold.","id":"14014","runtime":88,"imdbId":"tt0814130","version":166,"lastModified":"1301903397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a4\/4bc940d1017a3c57fe01b7a4\/the-hammer-mid.jpg","studio":"Bentley Filmgroup","genre":"Comedy","title":"The Hammer","releaseDate":1175385600000,"language":"en","tagline":"Some Guys Don't Know Their Destiny Till It Hits Them In The Face.","type":"Movie","_key":"57768"} +{"label":"Adam Carolla","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/218\/4bd1e5ad017a3c63ea000218\/adam-carolla-profile.jpg","version":34,"id":"76245","lastModified":"1301901206000","name":"Adam Carolla","type":"Person","_key":"57769"} +{"label":"Oswaldo Castillo","version":21,"id":"76246","lastModified":"1301901815000","name":"Oswaldo Castillo","type":"Person","_key":"57770"} +{"label":"Harold House Moore","version":21,"id":"89498","lastModified":"1301902677000","name":"Harold House Moore","type":"Person","_key":"57771"} +{"label":"Jonathan Hernandez","version":24,"id":"89499","lastModified":"1301902505000","name":"Jonathan Hernandez","type":"Person","_key":"57772"} +{"label":"Heather Juergensen","version":21,"id":"89500","lastModified":"1301902677000","name":"Heather Juergensen","type":"Person","_key":"57773"} +{"label":"Mad Detective","description":"A rookie cop teams up with a former detective with a supernatural gift to hunt down a serial killer.","id":"14016","runtime":89,"imdbId":"tt0969269","trailer":"http:\/\/www.youtube.com\/watch?v=rotL2JpoBcI","version":106,"lastModified":"1301904341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c3\/4bc940d4017a3c57fe01b7c3\/sun-taam-mid.jpg","genre":"Action","title":"Mad Detective","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"57774"} +{"label":"Kwok-Lun Lee","version":13,"id":"224027","lastModified":"1301903989000","name":"Kwok-Lun Lee","type":"Person","_key":"57775"} +{"label":"Choi-ning Lee","version":12,"id":"224028","lastModified":"1301903990000","name":"Choi-ning Lee","type":"Person","_key":"57776"} +{"label":"Flora Chan","version":12,"id":"224029","lastModified":"1301903989000","name":"Flora Chan","type":"Person","_key":"57777"} +{"label":"Internet Dating","description":"Starring Lil Romeo, Clifton Powell, and Katt Williams and directed by Master P, this feature follows a lovelorn man who advertises himself as a seven-foot-tall L.A. Lakers basketball star in his online personals ad.","id":"14017","runtime":0,"imdbId":"tt1216490","version":106,"lastModified":"1301702861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c8\/4bc940d4017a3c57fe01b7c8\/internet-dating-mid.jpg","genre":"Comedy","title":"Internet Dating","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57778"} +{"label":"Ex Drummer","description":"Every village has its band of fools, trying to get to the top, following their idols in drug habits, but staying losers till the end of their pathetic days. They all do this in the name of rock & roll. Three disabled rock musicians are looking for a drummer. Dries, a well known writer, seems the right guy for the job, were it not for the fact that his only handicap is that he can't play the drums.","id":"14019","runtime":90,"imdbId":"tt0812243","homepage":"http:\/\/www.exdrummer.com\/","version":226,"lastModified":"1301903154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7de\/4bc940d8017a3c57fe01b7de\/ex-drummer-mid.jpg","studio":"CCCP","genre":"Comedy","title":"Ex Drummer","releaseDate":1170201600000,"language":"en","type":"Movie","_key":"57779"} +{"label":"Koen Mortier","version":23,"id":"76249","lastModified":"1301902311000","name":"Koen Mortier","type":"Person","_key":"57780"} +{"label":"Dries Van Hegen","version":19,"id":"76282","lastModified":"1301902245000","name":"Dries Van Hegen","type":"Person","_key":"57781"} +{"label":"Norman Baert","version":19,"id":"76283","lastModified":"1301902245000","name":"Norman Baert","type":"Person","_key":"57782"} +{"label":"Gunter Lamoot","version":19,"id":"76284","lastModified":"1301902245000","name":"Gunter Lamoot","type":"Person","_key":"57783"} +{"label":"Sam Louwyck","version":19,"id":"76285","lastModified":"1301901866000","name":"Sam Louwyck","type":"Person","_key":"57784"} +{"label":"Fran\u00e7ois Beukelaers","version":21,"id":"76286","lastModified":"1301901866000","name":"Fran\u00e7ois Beukelaers","type":"Person","_key":"57785"} +{"label":"Bernadette Damman","version":19,"id":"76287","lastModified":"1301901866000","name":"Bernadette Damman","type":"Person","_key":"57786"} +{"label":"Joris Van Der Speeten","version":19,"id":"76288","lastModified":"1301902245000","name":"Joris Van Der Speeten","type":"Person","_key":"57787"} +{"label":"Nancy Denijs","version":19,"id":"76289","lastModified":"1301902245000","name":"Nancy Denijs","type":"Person","_key":"57788"} +{"label":"Nomie Visser","version":19,"id":"76290","lastModified":"1301901866000","name":"Nomie Visser","type":"Person","_key":"57789"} +{"label":"Dolores Bouckaert","version":19,"id":"76291","lastModified":"1301901866000","name":"Dolores Bouckaert","type":"Person","_key":"57790"} +{"label":"Wim Willaert","version":19,"id":"76292","lastModified":"1301902245000","name":"Wim Willaert","type":"Person","_key":"57791"} +{"label":"Barbara Callewaert","version":19,"id":"76293","lastModified":"1301902245000","name":"Barbara Callewaert","type":"Person","_key":"57792"} +{"label":"Jan Hammenecker","version":19,"id":"76294","lastModified":"1301901866000","name":"Jan Hammenecker","type":"Person","_key":"57793"} +{"label":"Vinnie Bonduwe","version":19,"id":"76295","lastModified":"1301901866000","name":"Vinnie Bonduwe","type":"Person","_key":"57794"} +{"label":"Chantal Wannyn","version":19,"id":"76296","lastModified":"1301902245000","name":"Chantal Wannyn","type":"Person","_key":"57795"} +{"label":"Tristan Versteven","version":19,"id":"76297","lastModified":"1301901866000","name":"Tristan Versteven","type":"Person","_key":"57796"} +{"label":"Sebastien Dewaele","version":19,"id":"76298","lastModified":"1301901866000","name":"Sebastien Dewaele","type":"Person","_key":"57797"} +{"label":"Hans Claerhout","version":19,"id":"76299","lastModified":"1301901866000","name":"Hans Claerhout","type":"Person","_key":"57798"} +{"label":"Eric Vanrenterghem","version":19,"id":"76300","lastModified":"1301901866000","name":"Eric Vanrenterghem","type":"Person","_key":"57799"} +{"label":"Flip Kowlier","version":21,"id":"76279","lastModified":"1301901866000","name":"Flip Kowlier","type":"Person","_key":"57800"} +{"label":"Frank Dubbe","version":19,"id":"76301","lastModified":"1301901866000","name":"Frank Dubbe","type":"Person","_key":"57801"} +{"label":"Kurt Vandemaele","version":19,"id":"76302","lastModified":"1301901866000","name":"Kurt Vandemaele","type":"Person","_key":"57802"} +{"label":"Sophia Theys","version":19,"id":"76303","lastModified":"1301901866000","name":"Sophia Theys","type":"Person","_key":"57803"} +{"label":"Peggy Heyninck","version":19,"id":"76304","lastModified":"1301902245000","name":"Peggy Heyninck","type":"Person","_key":"57804"} +{"label":"Patrick Cronenberg","version":19,"id":"76305","lastModified":"1301901866000","name":"Patrick Cronenberg","type":"Person","_key":"57805"} +{"label":"Sylviane Aliet","version":19,"id":"76306","lastModified":"1301901866000","name":"Sylviane Aliet","type":"Person","_key":"57806"} +{"label":"Marcel Deblauwe","version":19,"id":"76307","lastModified":"1301901866000","name":"Marcel Deblauwe","type":"Person","_key":"57807"} +{"label":"Greta Baert Bruynoghe","version":19,"id":"76308","lastModified":"1301901866000","name":"Greta Baert Bruynoghe","type":"Person","_key":"57808"} +{"label":"One Missed Call 2","description":"In Japan, the daycare teacher Kyoko Okudera is convinced by her colleague and friend Madoka to visit her boyfriend Naoto Sakurai in the restaurant where he works instead of studying as planned. When the owner Mr. Wang answers his daughter's mobile phone, he receives a message telling him that he would die in an accident in the kitchen. This immediately comes true","id":"14021","runtime":105,"imdbId":"tt0451010","homepage":"http:\/\/www.chakuari.jp\/","version":122,"lastModified":"1301904152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4bc940da017a3c57fe01b7fc\/chakushin-ari-2-mid.jpg","genre":"Horror","title":"One Missed Call 2","releaseDate":1114732800000,"language":"en","type":"Movie","_key":"57809"} +{"label":"Mimura","version":21,"id":"77676","lastModified":"1301901673000","name":"Mimura","type":"Person","_key":"57810"} +{"label":"Hisashi Yoshizawa","version":20,"id":"77677","lastModified":"1301901999000","name":"Hisashi Yoshizawa","type":"Person","_key":"57811"} +{"label":"Asaka Seto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e87\/4d2655297b9aa134cb000e87\/asaka-seto-profile.jpg","version":28,"id":"77678","lastModified":"1301901422000","name":"Asaka Seto","type":"Person","_key":"57812"} +{"label":"Renpei Tsukamoto","version":25,"id":"77679","lastModified":"1301901713000","name":"Renpei Tsukamoto","type":"Person","_key":"57813"} +{"label":"Slacker","description":"Presents a day in the life in Austin, Texas among its social outcasts and misfits, predominantly the twenty-something set, using a series of linear vignettes. These characters, who in some manner just don't fit into the establishment norms, move seamlessly from one scene to the next, randomly coming and going into one another's lives.","id":"14022","runtime":97,"imdbId":"tt0102943","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/slacker","version":112,"lastModified":"1301907741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/805\/4bc940db017a3c57fe01b805\/slacker-mid.jpg","genre":"Comedy","title":"Slacker","releaseDate":678672000000,"language":"en","type":"Movie","_key":"57814"} +{"label":"Mark James","version":16,"id":"94675","lastModified":"1301902974000","name":"Mark James","type":"Person","_key":"57815"} +{"label":"Beyond Perfect","description":"Multi-award winning screenwriter and director Jerry Douglas gives us three actors with a genuine flare for dialogue and hot sex. It's a story of two tops in love, and the problems that happen when neither one wants to bottom. ","id":"14023","runtime":150,"imdbId":"tt1139782","version":49,"lastModified":"1301415229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80f\/4bc940dc017a3c57fe01b80f\/beyond-perfect-mid.jpg","studio":"Buckshot Productions","genre":"Erotic","title":"Beyond Perfect","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57816"} +{"label":"Jerry Douglas","version":26,"id":"76725","lastModified":"1301902165000","name":"Jerry Douglas","type":"Person","_key":"57817"} +{"label":"Chad Thomas","version":21,"id":"76726","lastModified":"1301902144000","name":"Chad Thomas","type":"Person","_key":"57818"} +{"label":"Brad Benton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f73\/4d053c705e73d621a1002f73\/brad-benton-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(41, 41, 41); line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Enthusiastic, 5ft 11ins tall, brown-haired Brad Benton mainly bottoms in his gay porn films but also tops when called upon. He's a good actor too and has appeared in mainstream TV shows. Hugely prolific in porn, he's starred for a number of leading producers including Jet Set Men and Falc","version":31,"birthday":"157158000000","id":"76727","birthplace":"Atlanta, Georgia, USA","lastModified":"1301901601000","name":"Brad Benton","type":"Person","_key":"57819"} +{"label":"Brad Patton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c2\/4d24ef715e73d626c40001c2\/brad-patton-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(41, 41, 41); line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Brad Patton has one of the thickest uncut cocks in gay porn - and it's more than 8-inches long too. Launched on the scene in 2003 as a Falcon exclusive, Brad and Lane Fuller won the best oral scene in Drenched 1 at the GayVN Awards for 2003. He later worked with Colt Studio","version":35,"birthday":"81990000000","id":"76728","birthplace":"Melbourne, Australia","lastModified":"1301901332000","name":"Brad Patton","type":"Person","_key":"57820"} +{"label":"Marc Sterling","version":18,"id":"76729","lastModified":"1301902144000","name":"Marc Sterling","type":"Person","_key":"57821"} +{"label":"Andy Briggs","version":25,"id":"76730","lastModified":"1301902144000","name":"Andy Briggs","type":"Person","_key":"57822"} +{"label":"Marcus Iron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c4\/4d04033a5e73d621a40021c4\/marcus-iron-profile.jpg","version":29,"id":"76731","lastModified":"1301901528000","name":"Marcus Iron","type":"Person","_key":"57823"} +{"label":"Pete Ross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/151\/4d24e8aa5e73d626a8000151\/pete-ross-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(41, 41, 41); line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Pete Ross is a delicious strawberry blond who was born in June 1980. He grew up on a ranch in Wyoming, stands about 5ft 9ins tall, has a 7-inch cut pierced cock and is a versatile bottom. He previously worked as a flight attendant but was sacked when it was discovered he was making pornos. He enjoys wei","version":22,"id":"76732","lastModified":"1301901700000","name":"Pete Ross","type":"Person","_key":"57824"} +{"label":"Justin Gemini","version":18,"id":"76734","lastModified":"1301902144000","name":"Justin Gemini","type":"Person","_key":"57825"} +{"label":"Timmy Thomas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/068\/4d054bff5e73d621a2003068\/timmy-thomas-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(41, 41, 41); line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Timmy Thomas was an impossibly gorgeous baby-faced twink when he debuted in 2001. He then took a break from XXX movies for three years before returning to porn with Colt's Buckshot in Buckleroos. Timmy usually bottoms, stands about 5ft 5ins tall, has blue eyes and a 6-inch cut cock.&","version":22,"birthday":"411174000000","id":"76736","birthplace":"Davenport, Iowa, USA","lastModified":"1301901703000","name":"Timmy Thomas","type":"Person","_key":"57826"} +{"label":"Adam North","version":18,"id":"76737","lastModified":"1301902144000","name":"Adam North","type":"Person","_key":"57827"} +{"label":"Danny Lopez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/caa\/4d4e92205e73d617b7002caa\/danny-lopez-profile.jpg","biography":"<span style=\"color: rgb(41, 41, 41); font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 15px; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; \">Danny Lopez is a dark, sexy, pierced and tattooed Latin stud with dozens of movies to his credit since his debut in 2001. And he's usually a true pig bottom, latterly also doing bareback movies. He has brown hair, hazel eyes, a smooth body and stands about 5ft 9ins tall.<\/span>","version":23,"id":"76738","lastModified":"1301902144000","name":"Danny Lopez","type":"Person","_key":"57828"} +{"label":"Jason Kingsley","version":18,"id":"76739","lastModified":"1301902144000","name":"Jason Kingsley","type":"Person","_key":"57829"} +{"label":"Jason Crew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27e\/4d04118d5e73d621a000227e\/jason-crew-profile.jpg","version":23,"id":"76740","lastModified":"1301901601000","name":"Jason Crew","type":"Person","_key":"57830"} +{"label":"Raise Your Voice","description":"Raise Your Voice is a coming-of-age story centered around a small-town singer (Hilary Duff), brokenhearted by the death of her brother in a car crash,who had secretly submitted her for a summer session at a performing arts academy in Los Angeles. In the performing arts academy, she experiences a whole new way of life in the big city, far from the small town lifestyle she's used to.","id":"14024","runtime":103,"imdbId":"tt0361696","homepage":"http:\/\/www.newline.com\/properties\/raiseyourvoice.html","version":147,"lastModified":"1301904503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2d\/4d33327d7b9aa177db006a2d\/raise-your-voice-mid.jpg","genre":"Drama","title":"Raise Your Voice","releaseDate":1092096000000,"language":"en","type":"Movie","_key":"57831"} +{"label":"Oliver James","version":22,"id":"78730","lastModified":"1301901494000","name":"Oliver James","type":"Person","_key":"57832"} +{"label":"Lake Dead","description":"Three sisters and a group of their friends take a trip to the home of the recently deceased grandfather -- who died a particularly grisly death -- to learn more about the promise of an inheritance, only to encounter a family of psychos who have taken up residence in the old man's cabin.","id":"14025","runtime":90,"imdbId":"tt0839880","version":190,"lastModified":"1301903494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/826\/4bc940dd017a3c57fe01b826\/lake-dead-mid.jpg","genre":"Horror","title":"Lake Dead","releaseDate":1194566400000,"language":"en","tagline":"Beneath the calmest surface lies the deepest nightmare.","type":"Movie","_key":"57833"} +{"label":"George Bessudo","version":21,"id":"77367","lastModified":"1301901562000","name":"George Bessudo","type":"Person","_key":"57834"} +{"label":"Alex A. Quinn","version":17,"id":"117514","lastModified":"1301901949000","name":"Alex A. Quinn","type":"Person","_key":"57835"} +{"label":"Kelsey Crane","version":17,"id":"117515","lastModified":"1301901949000","name":"Kelsey Crane","type":"Person","_key":"57836"} +{"label":"Jim Devoti","version":17,"id":"117516","lastModified":"1301901949000","name":"Jim Devoti","type":"Person","_key":"57837"} +{"label":"Kelsey Wedeen","version":18,"id":"117517","lastModified":"1301901779000","name":"Kelsey Wedeen","type":"Person","_key":"57838"} +{"label":"Tara Gerard","version":17,"id":"117518","lastModified":"1301902326000","name":"Tara Gerard","type":"Person","_key":"57839"} +{"label":"Vanessa Viola","version":17,"id":"117519","lastModified":"1301902326000","name":"Vanessa Viola","type":"Person","_key":"57840"} +{"label":"Behind Enemy Lines: Colombia","description":"Navy SEALS mount an attack on Colombian special forces to clear their names and rescue a hostage.","id":"14028","runtime":93,"imdbId":"tt1208647","trailer":"http:\/\/www.youtube.com\/watch?v=ddFM7ZXPl-w","homepage":"http:\/\/belc.wwe.com","version":221,"lastModified":"1301903762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82f\/4bc940e1017a3c57fe01b82f\/behind-enemy-lines-colombia-mid.jpg","studio":"WWE","genre":"Action","title":"Behind Enemy Lines: Colombia","releaseDate":1231200000000,"language":"en","type":"Movie","_key":"57841"} +{"label":"Ken Anderson","version":84,"id":"57334","lastModified":"1302078017000","name":"Ken Anderson","type":"Person","_key":"57842"} +{"label":"Channon Roe","version":23,"id":"76314","lastModified":"1301901720000","name":"Channon Roe","type":"Person","_key":"57843"} +{"label":"Yancey Arias","version":25,"id":"21049","lastModified":"1301901842000","name":"Yancey Arias","type":"Person","_key":"57844"} +{"label":"Chris J. Johnson","version":21,"id":"76795","lastModified":"1301902071000","name":"Chris J. Johnson","type":"Person","_key":"57845"} +{"label":"Antony Matos","version":21,"id":"76796","lastModified":"1301902071000","name":"Antony Matos","type":"Person","_key":"57846"} +{"label":"Jennice Fuentes","version":21,"id":"76797","lastModified":"1301902071000","name":"Jennice Fuentes","type":"Person","_key":"57847"} +{"label":"Jonathan Fret","version":21,"id":"76798","lastModified":"1301902071000","name":"Jonathan Fret","type":"Person","_key":"57848"} +{"label":"Rey Hernandez","version":21,"id":"76799","lastModified":"1301902071000","name":"Rey Hernandez","type":"Person","_key":"57849"} +{"label":"Tom Minder","version":21,"id":"76800","lastModified":"1301902071000","name":"Tom Minder","type":"Person","_key":"57850"} +{"label":"Geoffrey M. Reeves","version":21,"id":"76801","lastModified":"1301902071000","name":"Geoffrey M. Reeves","type":"Person","_key":"57851"} +{"label":"Brian Tester","version":22,"id":"76802","lastModified":"1301902109000","name":"Brian Tester","type":"Person","_key":"57852"} +{"label":"Reynaldo Rodriguez","version":21,"id":"76809","lastModified":"1301901430000","name":"Reynaldo Rodriguez","type":"Person","_key":"57853"} +{"label":"Demons","description":"No overview found.","id":"14029","runtime":88,"imdbId":"tt0089013","version":100,"lastModified":"1301905542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/842\/4bc940e2017a3c57fe01b842\/demoni-mid.jpg","studio":"DACFILM Rome","genre":"Horror","title":"Demons","releaseDate":497232000000,"language":"en","type":"Movie","_key":"57854"} +{"label":"Lamberto Bava","version":61,"id":"44955","lastModified":"1301901506000","name":"Lamberto Bava","type":"Person","_key":"57855"} +{"label":"Michele Soavi","version":53,"id":"87680","lastModified":"1301901798000","name":"Michele Soavi","type":"Person","_key":"57856"} +{"label":"Natasha Hovey","version":19,"id":"99547","lastModified":"1301903049000","name":"Natasha Hovey","type":"Person","_key":"57857"} +{"label":"Karl Zinny","version":19,"id":"99548","lastModified":"1301902756000","name":"Karl Zinny","type":"Person","_key":"57858"} +{"label":"Paola Cozzo","version":20,"id":"99549","lastModified":"1301902477000","name":"Paola Cozzo","type":"Person","_key":"57859"} +{"label":"Fiore Argento","version":19,"id":"99550","lastModified":"1301902918000","name":"Fiore Argento","type":"Person","_key":"57860"} +{"label":"Fabiola Toledo","version":18,"id":"99551","lastModified":"1301902918000","name":"Fabiola Toledo","type":"Person","_key":"57861"} +{"label":"Stelio Candelli","version":23,"id":"98489","lastModified":"1301902544000","name":"Stelio Candelli","type":"Person","_key":"57862"} +{"label":"Bobby Rhodes","version":21,"id":"95457","lastModified":"1301902712000","name":"Bobby Rhodes","type":"Person","_key":"57863"} +{"label":"Hello, Dolly!","description":"A matchmaker named Dolly Levi takes a trip to Yonkers, New York to see the \"well-known unmarried half-a-millionaire,\" Horace Vandergelder. While there, she convinces him, his two stock clerks and his niece and her beau to go to New York City. In New York, she fixes Vandergelder's clerks up with the woman Vandergelder had been courting, and her shop assistant.","id":"14030","runtime":146,"imdbId":"tt0064418","trailer":"http:\/\/www.youtube.com\/watch?v=PYZz0ty0enY","version":192,"lastModified":"1301901652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a7\/4d9606f45e73d622510033a7\/hello-dolly-mid.jpg","genre":"Comedy","title":"Hello, Dolly!","releaseDate":-1382400000,"language":"en","type":"Movie","_key":"57864"} +{"label":"Soul Survivors","description":"A female collage co-ed freshman who was involved in a fatal car crash discovers she may not have survived the tragedy after all when she becomes caught between the world of the living and the dead\nA sort of limbo state of being between both the real and the spirit worlds in which the ghosts of the afterlife want to collect her, or even worse, use her body in its transition state to enter our world","id":"14033","runtime":84,"imdbId":"tt0218619","version":142,"lastModified":"1301906825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85c\/4bc940e4017a3c57fe01b85c\/soul-survivors-mid.jpg","genre":"Drama","title":"Soul Survivors","releaseDate":978307200000,"language":"en","type":"Movie","_key":"57865"} +{"label":"Stephen Carpenter","version":33,"id":"56913","lastModified":"1301901814000","name":"Stephen Carpenter","type":"Person","_key":"57866"} +{"label":"What's the Worst That Could Happen?","description":"Thief Kevin Caffery attempts to rob from the home of rich businessman Max Fairbanks. But Fairbanks catches him and steals his cherished ring that his girlfriend gave him. Caffery is then bent on revenge and getting his ring back with the help of his partners. ","id":"14034","runtime":94,"imdbId":"tt0161083","version":173,"lastModified":"1301903739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/865\/4bc940e5017a3c57fe01b865\/what-s-the-worst-that-could-happen-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"What's the Worst That Could Happen?","releaseDate":991353600000,"language":"en","type":"Movie","_key":"57867"} +{"label":"Meatballs","description":"Head counselor Tripper Harrison is a fun loving misfit. They are all sick and tired of always losing the Camp Olympics every year, he must encourage all the campers to try their hardest, especially young Rudy so that he might feel better about himself.","id":"14035","runtime":99,"imdbId":"tt0079540","version":145,"lastModified":"1301905127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f62\/4d6626985e73d66a6b000f62\/meatballs-mid.jpg","genre":"Comedy","title":"Meatballs","releaseDate":299462400000,"language":"en","tagline":"When this lot go back to nature, nature runs for it's life.","type":"Movie","_key":"57868"} +{"label":"Harvey Atkin","version":21,"id":"108890","lastModified":"1301902988000","name":"Harvey Atkin","type":"Person","_key":"57869"} +{"label":"Kate Lynch","version":21,"id":"102760","lastModified":"1301902677000","name":"Kate Lynch","type":"Person","_key":"57870"} +{"label":"Russ Banham","version":22,"id":"119775","lastModified":"1301902988000","name":"Russ Banham","type":"Person","_key":"57871"} +{"label":"Johan Cruijff - En un momento dado","description":"Johan Cruijff - En un momento dado is a 2004 documentary film by Ramon Gieling on the life of Dutch footballer Johan Cruijff.","id":"14036","runtime":90,"imdbId":"tt0397483","version":27,"lastModified":"1301908473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/884\/4bc940ea017a3c57fe01b884\/johan-cruijff-en-un-momento-dado-mid.jpg","genre":"Documentary","title":"Johan Cruijff - En un momento dado","releaseDate":1077148800000,"language":"en","type":"Movie","_key":"57872"} +{"label":"Nummer 14 Johan Cruijff","description":"No overview found.","id":"14037","runtime":0,"imdbId":"tt0070462","version":34,"lastModified":"1301908512000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/889\/4bc940ea017a3c57fe01b889\/nummer-14-johan-cruijff-mid.jpg","title":"Nummer 14 Johan Cruijff","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"57873"} +{"label":"American Flyers","description":"Sports physician Marcus persuades his unstable brother David to come with him and train for a bicycle race across the Rocky Mountains. He doesn't tell him that he has a cerebral tumor. While David powerfully heads for the victory, Marcus has to realize that the contest is now beyond his capabilities. \/ Features great views of the Rockies and an insight in the tactics of bicycle races.","id":"14040","runtime":113,"imdbId":"tt0088707","version":118,"lastModified":"1301906242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/896\/4bc940eb017a3c57fe01b896\/american-flyers-mid.jpg","genre":"Drama","title":"American Flyers","releaseDate":492998400000,"language":"en","type":"Movie","_key":"57874"} +{"label":"Civic Duty","description":"An American accountant bombarded with cable news and the media's obsession with terrorist plots in the post 9-11 world, receives a jolt when an unattached Islamic graduate student moves in next door.","id":"14041","runtime":98,"imdbId":"tt0446298","version":252,"lastModified":"1301906825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89b\/4bc940eb017a3c57fe01b89b\/civic-duty-mid.jpg","studio":"Intandem Films","genre":"Action","title":"Civic Duty","releaseDate":1146009600000,"language":"en","type":"Movie","_key":"57875"} +{"label":"Khaled Abol Naga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/467\/4d6542677b9aa12a09001467\/khaled-abol-naga-profile.jpg","version":23,"id":"76309","lastModified":"1301901949000","name":"Khaled Abol Naga","type":"Person","_key":"57876"} +{"label":"Peter Krause","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/835\/4d8d8c0c7b9aa1675b000835\/peter-krause-profile.jpg","version":50,"birthday":"-138502800000","id":"23119","birthplace":"Alexandria, Minnesota","lastModified":"1302060763000","name":"Peter Krause","type":"Person","_key":"57877"} +{"label":"Razzle Dazzle","description":"Razzle Dazzle follows the eager members of \"Mr. Johnathon's Dance Academy\" who, with their unique dance routines, compete for Grand Final success at Australia's most prestigious competition. Amidst parental politics, petty rivalry, creative controversy and the hysterics of pushy stage mothers, the film takes you behind the glamor and the glitter to a world where, sometimes, winning is everything!","id":"14042","runtime":95,"imdbId":"tt0493160","version":77,"lastModified":"1301906416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a4\/4bc940ec017a3c57fe01b8a4\/razzle-dazzle-mid.jpg","genre":"Comedy","title":"Razzle Dazzle","releaseDate":1173916800000,"language":"en","type":"Movie","_key":"57878"} +{"label":"Darren Ashton","version":20,"id":"76310","lastModified":"1301902369000","name":"Darren Ashton","type":"Person","_key":"57879"} +{"label":"Nancy Drew","description":"Intrepid teenage private eye Nancy Drew heads to Tinseltown with her father to investigate the unsolved murder of a movie star in this old-fashioned whodunit based on Carolyn Keene's popular series of books for young adults. But can the small-town girl cut through the Hollywood hype to solve the case?","id":"14043","runtime":99,"imdbId":"tt0479500","version":222,"lastModified":"1301903069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b1\/4bc940ed017a3c57fe01b8b1\/nancy-drew-mid.jpg","genre":"Action","title":"Nancy Drew","releaseDate":1181865600000,"language":"en","tagline":"Small Town Girl. Big Time Adventure.","type":"Movie","_key":"57880"} +{"label":"Daniella Monet","version":23,"id":"76313","lastModified":"1301901866000","name":"Daniella Monet","type":"Person","_key":"57881"} +{"label":"Assembly","description":"Follows a soldier trying to gain recognition for comrades who died in 1948, at a turning point in the civil war between the communists and the nationalist forces of the Kuomintang (KMT). ","id":"14044","runtime":124,"imdbId":"tt0881200","trailer":"http:\/\/www.youtube.com\/watch?v=8KJKgAefkwA","version":114,"lastModified":"1301905110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4c4d839a5e73d62a430001ca\/ji-jie-hao-mid.jpg","genre":"Action","title":"Assembly","releaseDate":1191888000000,"language":"en","tagline":"Assembly","type":"Movie","_key":"57882"} +{"label":"Hanyu Zhang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/553\/4d0c78195e73d6370a000553\/hanyu-zhang-profile.jpg","version":23,"id":"99687","lastModified":"1301901380000","name":"Hanyu Zhang","type":"Person","_key":"57883"} +{"label":"Chao Deng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/555\/4d0c76ff5e73d63713000555\/chao-deng-profile.jpg","version":29,"id":"99689","lastModified":"1301901473000","name":"Chao Deng","type":"Person","_key":"57884"} +{"label":"Wenkang Yuan","version":20,"id":"99690","lastModified":"1301901466000","name":"Wenkang Yuan","type":"Person","_key":"57885"} +{"label":"Yan Tang","version":29,"id":"99691","lastModified":"1301901456000","name":"Yan Tang","type":"Person","_key":"57886"} +{"label":"The Great Debaters","description":"Inspired by a true story, Washington shines as a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African American college students into an historical powerhouse that took on the Harvard elite.","id":"14047","runtime":124,"imdbId":"tt0427309","version":340,"lastModified":"1301903202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4d71e4065e73d63a4d0000a8\/the-great-debaters-mid.jpg","genre":"Drama","title":"The Great Debaters","releaseDate":1198540800000,"language":"en","type":"Movie","_key":"57887"} +{"label":"Nate Parker","version":20,"id":"77277","lastModified":"1301901535000","name":"Nate Parker","type":"Person","_key":"57888"} +{"label":"Gina Ravera","version":23,"id":"77279","lastModified":"1301901675000","name":"Gina Ravera","type":"Person","_key":"57889"} +{"label":"Man on Wire","description":"On August 7th 1974, French tightrope walker Philippe Petit stepped out on a high wire, illegally rigged between New York's World Trade Center twin towers, then the world's tallest buildings. After nearly an hour of performing on the wire, 1,350 feet above the sidewalks of Manhattan, he was arrested. This fun and spellbinding documentary chronicles Philippe Petit's \"highest\" achievement.","id":"14048","runtime":94,"imdbId":"tt1155592","version":306,"lastModified":"1302038897000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc940f0017a3c57fe01b8da\/man-on-wire-mid.jpg","genre":"Documentary","title":"Man on Wire","releaseDate":1200960000000,"language":"en","type":"Movie","_key":"57890"} +{"label":"James Marsh","version":23,"id":"76998","lastModified":"1301901691000","name":"James Marsh","type":"Person","_key":"57891"} +{"label":"Philippe Petit","version":20,"id":"81425","lastModified":"1301902545000","name":"Philippe Petit","type":"Person","_key":"57892"} +{"label":"Jean Fran\u00e7ois Heckel","version":20,"id":"81426","lastModified":"1301902525000","name":"Jean Fran\u00e7ois Heckel","type":"Person","_key":"57893"} +{"label":"Jean-Louis Blondeau","version":20,"id":"81428","lastModified":"1301902542000","name":"Jean-Louis Blondeau","type":"Person","_key":"57894"} +{"label":"Annie Allix","version":20,"id":"81429","lastModified":"1301902534000","name":"Annie Allix","type":"Person","_key":"57895"} +{"label":"David Forman","version":20,"id":"81432","lastModified":"1301902541000","name":"David Forman","type":"Person","_key":"57896"} +{"label":"Alan Welner","version":20,"id":"81433","lastModified":"1301902200000","name":"Alan Welner","type":"Person","_key":"57897"} +{"label":"Barry Greenhouse","version":20,"id":"81435","lastModified":"1301902543000","name":"Barry Greenhouse","type":"Person","_key":"57898"} +{"label":"Jim Moore","version":20,"id":"81438","lastModified":"1301902535000","name":"Jim Moore","type":"Person","_key":"57899"} +{"label":"Recount","description":"A chronicle of the weeks after the 2000 U.S. presidential election and the subsequent recounts in Florida.","id":"14050","runtime":116,"imdbId":"tt1000771","version":105,"lastModified":"1301907096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e7\/4bc940f1017a3c57fe01b8e7\/recount-mid.jpg","studio":"HBO Films","genre":"Drama","title":"Recount","releaseDate":1211932800000,"language":"en","type":"Movie","_key":"57900"} +{"label":"Revenge of the Nerds","description":"At Adams College, the jocks rule the school from their house on high, the Alpha Beta fraternity. So when a group of socially-challenged misfits try to go Greek, they're instantly rejected by every house on campus. Deciding to start their own fraternity to protect their outcast brothers, the campus nerds soon find themselves in a battle royale as the Alpha Betas try to crush their new rivals.","id":"14052","runtime":90,"imdbId":"tt0088000","trailer":"http:\/\/www.youtube.com\/watch?v=Hw6zrInbtQE","version":148,"lastModified":"1301903315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f9\/4bc940f5017a3c57fe01b8f9\/revenge-of-the-nerds-mid.jpg","studio":"Interscope Communications","genre":"Comedy","title":"Revenge of the Nerds","releaseDate":468115200000,"language":"en","tagline":"The time has come for REVENGE OF THE NERDS","type":"Movie","_key":"57901"} +{"label":"Andrew Cassese","version":18,"id":"92809","lastModified":"1301902634000","name":"Andrew Cassese","type":"Person","_key":"57902"} +{"label":"Julia Montgomery","version":25,"id":"92810","lastModified":"1301902891000","name":"Julia Montgomery","type":"Person","_key":"57903"} +{"label":"Ted McGinley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13f\/4ceea3f35e73d6531800013f\/ted-mcginley-profile.jpg","version":27,"id":"18982","lastModified":"1301901849000","name":"Ted McGinley","type":"Person","_key":"57904"} +{"label":"David Wohl","version":20,"id":"92811","lastModified":"1301902245000","name":"David Wohl","type":"Person","_key":"57905"} +{"label":"Slap Shot 3: The Junior League","description":"Get ready for a rough-and-tumble comedy that knows how to kick some serious puck!","id":"14053","runtime":0,"imdbId":"tt1245734","version":171,"lastModified":"1301905349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/907\/4bc940f7017a3c57fe01b907\/slap-shot-3-the-junior-league-mid.jpg","genre":"Action","title":"Slap Shot 3: The Junior League","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"57906"} +{"label":"Snow Angels","description":"A story of love lost and found in a small town, SNOW ANGELS is a heartrending portrayal of three couples in various stages of life orbiting around each other in search of connection and meaning. An unexpected act of violence disrupts the lives of these intertwined couples revealing the profound moments in which they each realize how precarious and remarkable life can be.","id":"14054","runtime":107,"imdbId":"tt0453548","homepage":"http:\/\/wip.warnerbros.com\/snowangels\/","version":259,"lastModified":"1301903905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91d\/4bc940f9017a3c57fe01b91d\/snow-angels-mid.jpg","studio":"Crossroads Films","genre":"Drama","title":"Snow Angels","releaseDate":1204848000000,"language":"en","type":"Movie","_key":"57907"} +{"label":"Starter for 10","description":"In 1985, against the backdrop of Thatcherism, Brian Jackson enrolls in the University of Bristol, a scholarship boy from seaside Essex with a love of knowledge for its own sake and a childhood spent watching \"University Challenge,\" a college quiz show. At Bristol he tries out for the Challenge team and falls under the spell of Alice, a lovely blond with an extensive sexual past. ","id":"14055","runtime":92,"imdbId":"tt0477095","version":212,"lastModified":"1301903635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/926\/4bc940f9017a3c57fe01b926\/starter-for-10-mid.jpg","genre":"Comedy","title":"Starter for 10","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"57908"} +{"label":"Elaine Tan","version":21,"id":"123791","lastModified":"1301903080000","name":"Elaine Tan","type":"Person","_key":"57909"} +{"label":"John Henshaw","version":27,"id":"83816","lastModified":"1301901411000","name":"John Henshaw","type":"Person","_key":"57910"} +{"label":"Trust the Man","description":"No overview found.","id":"14057","runtime":103,"imdbId":"tt0427968","version":295,"lastModified":"1301903620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92f\/4bc940fa017a3c57fe01b92f\/trust-the-man-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Trust the Man","releaseDate":1125532800000,"language":"en","type":"Movie","_key":"57911"} +{"label":"Bart Freundlich","version":34,"id":"86203","lastModified":"1301901999000","name":"Bart Freundlich","type":"Person","_key":"57912"} +{"label":"Snow Buddies","description":"Dylan Sprouse, Jim Belushi and Kris Kristofferson lend their voices to this family-friendly tale about a feisty pack of golden retriever puppies that embarks on an Alaskan adventure. When they find themselves stranded in the northern wilderness, the canine offspring of famed sports star Air Bud team up with an experienced sled dog and a husky pup, who teach them the importance of working together.","id":"14059","runtime":87,"imdbId":"tt1079448","version":200,"lastModified":"1301903799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94d\/4bc940fc017a3c57fe01b94d\/snow-buddies-mid.jpg","genre":"Family","title":"Snow Buddies","releaseDate":1202169600000,"language":"en","type":"Movie","_key":"57913"} +{"label":"The Edge of Love","description":"Two feisty, free-spirited women are connected by the brilliant, charismatic poet who loves them both.","id":"14061","runtime":110,"imdbId":"tt0819714","version":355,"lastModified":"1301901954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95a\/4bc94100017a3c57fe01b95a\/the-edge-of-love-mid.jpg","studio":"BBC Films","genre":"Drama","title":"The Edge of Love","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"57914"} +{"label":"Lisa Stansfield","version":19,"id":"47700","lastModified":"1301902245000","name":"Lisa Stansfield","type":"Person","_key":"57915"} +{"label":"Graham 'Suggs' McPherson","version":17,"id":"44204","lastModified":"1301902070000","name":"Graham 'Suggs' McPherson","type":"Person","_key":"57916"} +{"label":".45","description":"A story of how obsession, addiction and abuse leads a young woman (Jovovich) to execute an elaborate plan of revenge.","id":"14062","runtime":101,"imdbId":"tt0259822","version":167,"lastModified":"1301904619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/975\/4bc94103017a3c57fe01b975\/45-mid.jpg","studio":"Media Talent Group","genre":"Crime","title":".45","releaseDate":1164844800000,"language":"en","type":"Movie","_key":"57917"} +{"label":"Sarah Strange","version":24,"id":"83023","lastModified":"1301902475000","name":"Sarah Strange","type":"Person","_key":"57918"} +{"label":"Tim Eddis","version":21,"id":"83025","lastModified":"1301902644000","name":"Tim Eddis","type":"Person","_key":"57919"} +{"label":"Dawn Greenhalgh","version":21,"id":"83026","lastModified":"1301902644000","name":"Dawn Greenhalgh","type":"Person","_key":"57920"} +{"label":"Nola Augustson","version":21,"id":"83027","lastModified":"1301902644000","name":"Nola Augustson","type":"Person","_key":"57921"} +{"label":"John Gordon","version":21,"id":"83028","lastModified":"1301902644000","name":"John Gordon","type":"Person","_key":"57922"} +{"label":"Shawn Campbell","version":25,"id":"83029","lastModified":"1301902556000","name":"Shawn Campbell","type":"Person","_key":"57923"} +{"label":"Gary Lennon","version":23,"id":"83021","lastModified":"1301902300000","name":"Gary Lennon","type":"Person","_key":"57924"} +{"label":"Adrift in Manhattan","description":"The lives of three lonely strangers intersect while commuting on New York's 1 and 9 subway lines.","id":"14063","runtime":91,"imdbId":"tt0497316","version":118,"lastModified":"1301907566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/982\/4bc94104017a3c57fe01b982\/adrift-in-manhattan-mid.jpg","genre":"Drama","title":"Adrift in Manhattan","releaseDate":1168387200000,"language":"en","type":"Movie","_key":"57925"} +{"label":"Ten Canoes","description":"A story within a story. In Australia's Northern Territory, a man tells us one of the stories of his people and his land. It's a story of an older man, Minygululu, who has three wives and realizes that his younger brother Dayindi may try to steal away the youngest wife. So, over a few days and several trips to hunt and gather, Minygululu tells Dayindi a story set in the time of their ancestors...","id":"14064","runtime":90,"imdbId":"tt0466399","version":250,"lastModified":"1301904299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/638\/4d0e234b7b9aa1025c002638\/ten-canoes-mid.jpg","studio":"Fandango","genre":"Adventure","title":"Ten Canoes","releaseDate":1151539200000,"language":"en","type":"Movie","_key":"57926"} +{"label":"Rolf de Heer","version":32,"id":"112674","lastModified":"1301902420000","name":"Rolf de Heer","type":"Person","_key":"57927"} +{"label":"Peter Djigirr","version":20,"id":"144676","lastModified":"1301903070000","name":"Peter Djigirr","type":"Person","_key":"57928"} +{"label":"Crusoe Kurddal","version":16,"id":"144677","lastModified":"1301902884000","name":"Crusoe Kurddal","type":"Person","_key":"57929"} +{"label":"Jamie Gulpilil","version":16,"id":"144678","lastModified":"1301902907000","name":"Jamie Gulpilil","type":"Person","_key":"57930"} +{"label":"Richard Birrinbirrin","version":16,"id":"144679","lastModified":"1301903044000","name":"Richard Birrinbirrin","type":"Person","_key":"57931"} +{"label":"Peter Minygululu ","version":16,"id":"144680","lastModified":"1301902888000","name":"Peter Minygululu ","type":"Person","_key":"57932"} +{"label":"Frances Djulibing","version":16,"id":"144681","lastModified":"1301902962000","name":"Frances Djulibing","type":"Person","_key":"57933"} +{"label":"Sonia Djarrabalminym","version":16,"id":"144682","lastModified":"1301902888000","name":"Sonia Djarrabalminym","type":"Person","_key":"57934"} +{"label":"Cassandra Malangarri Baker","version":16,"id":"144683","lastModified":"1301902898000","name":"Cassandra Malangarri Baker","type":"Person","_key":"57935"} +{"label":"Philip Gudthaykudthay","version":16,"id":"144684","lastModified":"1301902854000","name":"Philip Gudthaykudthay","type":"Person","_key":"57936"} +{"label":"Ten 'til Noon","description":"Between 11:50 and 12:00 noon, a crime is commited. In the same ten minute period, we follow the lives of the ten people, all connected to this crime. As we see each person's point of view, we are propelled closer and closer to the truth of what exactly happened...and why.","id":"14065","runtime":88,"imdbId":"tt0438486","homepage":"http:\/\/www.tentilnoon.com\/","version":427,"lastModified":"1301906060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/994\/4bc94105017a3c57fe01b994\/ten-til-noon-mid.jpg","studio":"Shut Up & Shoot Pictures","genre":"Crime","title":"Ten 'til Noon","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"57937"} +{"label":"Scott Storm","version":4,"id":"229221","lastModified":"1301904110000","name":"Scott Storm","type":"Person","_key":"57938"} +{"label":"Romulus, My Father","description":"It tells the story of Romulus, his beautiful wife, Christina, and their struggle in the face of great adversity to bring up their son, Raimond. It is a story of impossible love that ultimately celebrates the unbreakable bond between father and son.","id":"14066","runtime":104,"imdbId":"tt0462023","version":280,"lastModified":"1301903813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc94106017a3c57fe01b99d\/romulus-my-father-mid.jpg","studio":"Arena Films","genre":"Drama","title":"Romulus, My Father","releaseDate":1180569600000,"language":"en","type":"Movie","_key":"57939"} +{"label":"Thunderstruck","description":"After a near death experience, five Boys, all devoted AC\/DC fans, make a pact to bury their best friend next to the grave of Bon Scott. 12 years later, having gone their different ways, they come together to fulfill the promise.","id":"14067","runtime":98,"imdbId":"tt0316763","version":58,"lastModified":"1301907218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc94106017a3c57fe01b9a6\/thunderstruck-mid.jpg","studio":"Eddie Wong Films","genre":"Comedy","title":"Thunderstruck","releaseDate":1085011200000,"language":"en","type":"Movie","_key":"57940"} +{"label":"Teen Spirit: The Tribute to Kurt Cobain","description":"A music documentary about Kurt Cobain and his music - told by the people who were inspired by his extraordinary genius. Bringing together his peers, his friends, those close to the band and not forgetting the loyal fans who keep his memory alive.","id":"14068","runtime":55,"version":18,"lastModified":"1301907257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ab\/4bc94106017a3c57fe01b9ab\/teen-spirit-the-tribute-to-kurt-cobain-mid.jpg","studio":"PolyGram Filmed Entertainment","genre":"Documentary","title":"Teen Spirit: The Tribute to Kurt Cobain","releaseDate":788918400000,"language":"en","type":"Movie","_key":"57941"} +{"label":"The Girl Who Leapt Through Time","description":"A young high-school girl, Makoto Konno, discovers that she has the ability to \"leap\" through time to the past after she avoids a fatal train accident. \"The Girl Who Leapt Through Time\" is a sequel to the novel by Yasutaka Tsutsui of the same name.","id":"14069","runtime":95,"imdbId":"tt0808506","version":266,"lastModified":"1301906915000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4cecd27d7b9aa1313c000004\/the-girl-who-leapt-through-time-mid.jpg","studio":"Kadokawa Pictures","genre":"Animation","title":"The Girl Who Leapt Through Time","releaseDate":1152921600000,"language":"en","type":"Movie","_key":"57942"} +{"label":"Mamoru Hosoda","version":31,"birthday":"-72147600000","id":"81718","birthplace":"Nakaniikawa District, Toyama, Japan","lastModified":"1301901420000","name":"Mamoru Hosoda","type":"Person","_key":"57943"} +{"label":"Riisa Naka","version":32,"id":"122468","lastModified":"1301901809000","name":"Riisa Naka","type":"Person","_key":"57944"} +{"label":"Mitsutaka Itakura","version":27,"id":"122470","lastModified":"1301902353000","name":"Mitsutaka Itakura","type":"Person","_key":"57945"} +{"label":"Fumihiko Tachiki","version":48,"id":"77934","lastModified":"1301902024000","name":"Fumihiko Tachiki","type":"Person","_key":"57946"} +{"label":"Ayami Kakiuchi","version":27,"id":"122471","lastModified":"1301902690000","name":"Ayami Kakiuchi","type":"Person","_key":"57947"} +{"label":"Yuki Sekido","version":27,"id":"122472","lastModified":"1301902708000","name":"Yuki Sekido","type":"Person","_key":"57948"} +{"label":"Sachie Hara","version":27,"id":"122473","lastModified":"1301902704000","name":"Sachie Hara","type":"Person","_key":"57949"} +{"label":"Ghajini","description":"Sanjay a rich tycoon suffering from short term memory loss due to being hit by a metal pole when trying to intervene on his girlfriend's murder. Because of this his memory can only last for 15 minutes and he doesn't remember events or incidents that have happened before in his life.","id":"14070","runtime":183,"imdbId":"tt1166100","homepage":"http:\/\/www.rememberghajini.com\/","version":134,"lastModified":"1301906342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e2\/4bc9410e017a3c57fe01b9e2\/ghajini-mid.jpg","genre":"Action","title":"Ghajini","releaseDate":1230076800000,"language":"en","type":"Movie","_key":"57950"} +{"label":"A.R. Murugadoss","version":19,"id":"81077","lastModified":"1301901866000","name":"A.R. Murugadoss","type":"Person","_key":"57951"} +{"label":"Asin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c3\/4d32c1197b9aa17a450051c3\/asin-profile.jpg","version":27,"id":"81092","lastModified":"1301901947000","name":"Asin","type":"Person","_key":"57952"} +{"label":"Jiah Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ca\/4d32c11e7b9aa17a450051ca\/jiah-khan-profile.jpg","version":24,"id":"81093","lastModified":"1301901583000","name":"Jiah Khan","type":"Person","_key":"57953"} +{"label":"Pradeep Singh Rawat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/363\/4d32c1237b9aa17b37005363\/pradeep-singh-rawat-profile.jpg","version":18,"id":"81094","lastModified":"1301901985000","name":"Pradeep Singh Rawat","type":"Person","_key":"57954"} +{"label":"Dostana","description":"Kunal and Sameer, two straight guys who pretend to be a gay couple to secure an posh Miami apartment, but both of them fall for their gorgeous room-mate Neha, hilarity ensures as they strive to convince one and all they are gay! While secretly trying to win Neha's heart.","id":"14071","runtime":142,"imdbId":"tt1185420","homepage":"http:\/\/www.dostanathefilm.com\/","version":153,"lastModified":"1301903340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ff\/4bc94110017a3c57fe01b9ff\/dostana-mid.jpg","studio":"Dharma Productions","genre":"Comedy","title":"Dostana","releaseDate":1226534400000,"language":"en","tagline":"A story about two guys... a girl... and one little lie. Believe it!","type":"Movie","_key":"57955"} +{"label":"Priyanka Chopra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/15c\/4c4f26105e73d62ec200015c\/priyanka-chopra-profile.jpg","version":58,"birthday":"395791200000","id":"77234","birthplace":"Jamshedpur, Jharkand, India","lastModified":"1301901197000","name":"Priyanka Chopra","type":"Person","_key":"57956"} +{"label":"Bobby Deol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ed\/4d217d0a7b9aa1280f0004ed\/bobby-deol-profile.jpg","version":35,"id":"77235","lastModified":"1301901671000","name":"Bobby Deol","type":"Person","_key":"57957"} +{"label":"Shilpa Shetty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f2\/4d217d377b9aa1280f0004f2\/shilpa-shetty-profile.jpg","version":29,"id":"86060","lastModified":"1301901599000","name":"Shilpa Shetty","type":"Person","_key":"57958"} +{"label":"Sushmita Mukherjee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ff\/4d217e227b9aa1280f0004ff\/sushmita-mukherjee-profile.jpg","version":23,"id":"85734","lastModified":"1301902347000","name":"Sushmita Mukherjee","type":"Person","_key":"57959"} +{"label":"Tarun Mansukhani","version":15,"id":"146975","lastModified":"1301902720000","name":"Tarun Mansukhani","type":"Person","_key":"57960"} +{"label":"Rab Ne Bana Di Jodi","description":"A middle-aged man who has lost his love for life recovers it through the love of a vivacious young woman.","id":"14072","runtime":167,"imdbId":"tt1182937","trailer":"http:\/\/www.youtube.com\/watch?v=R9xUxd-S9pY","homepage":"http:\/\/www.yashrajfilms.com\/microsites\/rnbdjmicro\/rnbdj.html","version":150,"lastModified":"1301903136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1d\/4bc94114017a3c57fe01ba1d\/rab-ne-bana-di-jodi-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Rab Ne Bana Di Jodi","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"57961"} +{"label":"Anushka Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4c4f12ad5e73d62ec200010e\/anushka-sharma-profile.jpg","version":32,"birthday":"578440800000","id":"81928","birthplace":"Banglore, India","lastModified":"1301901331000","name":"Anushka Sharma","type":"Person","_key":"57962"} +{"label":"Jodhaa Akbar","description":"Jodhaa Akbar is a sixteenth century love story about a marriage of alliance that gave birth to true love between a great Mughal Emperor, Akbar and a Rajput princess, Jodhaa.","id":"14073","runtime":213,"imdbId":"tt0449994","homepage":"http:\/\/www.jodhaaakbar.com\/","version":241,"lastModified":"1301904550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/027\/4c324cbd5e73d64967000027\/jodhaa-akbar-mid.jpg","studio":"UTV Motion Pictures","title":"Jodhaa Akbar","releaseDate":1203033600000,"language":"en","type":"Movie","_key":"57963"} +{"label":"Ashutosh Gowariker","version":29,"id":"78751","lastModified":"1301901946000","name":"Ashutosh Gowariker","type":"Person","_key":"57964"} +{"label":"Varg","description":"Varg \u00e4r en film om Klemens och hans brorson Nejla som lever mitt i det norrl\u00e4ndska landskapet p\u00e5 gr\u00e4nsen mellan Sverige och Norge. Klemens \u00e4r en enst\u00f6ring som mest sk\u00f6ter sig sj\u00e4lv men kommer i konflikt med lagar som stiftas i Stockholm. Hans brorson Nejla ser upp till honom och vill till varje pris leva samma liv. Men vare sig hans mamma eller samh\u00e4llet vill l\u00e5ta detta ske.","id":"14074","runtime":95,"imdbId":"tt0937378","trailer":"http:\/\/www.youtube.com\/watch?v=824","homepage":"http:\/\/www.filmenvarg.se\/","version":68,"lastModified":"1301906059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4c\/4bc94117017a3c57fe01ba4c\/varg-mid.jpg","studio":"Filmpool Nord","genre":"Drama","title":"Varg","releaseDate":1207267200000,"language":"en","type":"Movie","_key":"57965"} +{"label":"Robin Lundberg","version":19,"id":"76316","lastModified":"1301902245000","name":"Robin Lundberg","type":"Person","_key":"57966"} +{"label":"Rolf Degerlund","version":19,"id":"76317","lastModified":"1301902245000","name":"Rolf Degerlund","type":"Person","_key":"57967"} +{"label":"Marie Delleskog","version":19,"id":"76318","lastModified":"1301902245000","name":"Marie Delleskog","type":"Person","_key":"57968"} +{"label":"Gustav Kling","version":19,"id":"76319","lastModified":"1301902245000","name":"Gustav Kling","type":"Person","_key":"57969"} +{"label":"Inga Sarri","version":19,"id":"76320","lastModified":"1301902245000","name":"Inga Sarri","type":"Person","_key":"57970"} +{"label":"Svante Martin","version":20,"id":"76321","lastModified":"1301902135000","name":"Svante Martin","type":"Person","_key":"57971"} +{"label":"Bo Samuelsson","version":19,"id":"76322","lastModified":"1301902245000","name":"Bo Samuelsson","type":"Person","_key":"57972"} +{"label":"Anitta Suikkari","version":19,"id":"76323","lastModified":"1301902245000","name":"Anitta Suikkari","type":"Person","_key":"57973"} +{"label":"Sven Henriksen","version":19,"id":"76324","lastModified":"1301902245000","name":"Sven Henriksen","type":"Person","_key":"57974"} +{"label":"Daniel Alfredson","version":46,"id":"76325","lastModified":"1301901775000","name":"Daniel Alfredson","type":"Person","_key":"57975"} +{"label":"The Fifth Commandment","description":"In Bangkok, an assassin who turns down a job that hits too close to home finds himself targeted by the elite members of his profession","id":"14075","runtime":87,"imdbId":"tt0492881","version":351,"lastModified":"1301903971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b31\/4d18cc315e73d6083e009b31\/the-fifth-commandment-mid.jpg","genre":"Action","title":"The Fifth Commandment","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"57976"} +{"label":"Jesse V. Johnson","version":30,"id":"77295","lastModified":"1301902055000","name":"Jesse V. Johnson","type":"Person","_key":"57977"} +{"label":"Shoot On Sight","description":"Tariq Ali, a Muslim police officer of Scotland Yard, is asked to hunt-down suspected suicide-bombers against the backdrop of July 7 bombings in London. Tariq's task gets complicated as an innocent Muslim is killed by the commando shooters of Scotland Yard. On the other hand, Tariq - a British citizen is himself a suspect in the eyes of his boss, despite his long service in the Scotland Yard","id":"14076","runtime":112,"imdbId":"tt1038915","version":105,"lastModified":"1301904748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc94118017a3c57fe01ba5e\/shoot-on-sight-mid.jpg","studio":"Aron Govil Productions","genre":"Crime","title":"Shoot On Sight","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"57978"} +{"label":"Morgan P\u00e5lsson - V\u00e4rldsreporter","description":"Utrikesreportern Morgan P\u00e5lsson och hans fotograf Robert Flycht blir skickade p\u00e5 ett uppdrag till ett ok\u00e4nt nordafrikanskt land \u2013 Mat\u00f3bo. Uppdraget g\u00e5r ut p\u00e5 att f\u00f6lja valet i landet men ist\u00e4llet utbryter en milit\u00e4rkupp och Morgan visar sig vara den enda utl\u00e4ndska journalisten p\u00e5 plats. Detta \u00e4r hans chans att visa vad han g\u00e5r f\u00f6r.","id":"14078","runtime":84,"imdbId":"tt1135941","trailer":"http:\/\/www.youtube.com\/watch?v=825","homepage":"http:\/\/www.morganpalsson.se\/","version":42,"lastModified":"1301904437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7b\/4bc94122017a3c57fe01ba7b\/morgan-palsson-varldsreporter-mid.jpg","studio":"Amagram","genre":"Comedy","title":"Morgan P\u00e5lsson - V\u00e4rldsreporter","releaseDate":1203638400000,"language":"en","type":"Movie","_key":"57979"} +{"label":"Anders Jansson","version":27,"id":"76328","lastModified":"1301901837000","name":"Anders Jansson","type":"Person","_key":"57980"} +{"label":"Johan Wester","version":26,"id":"76329","lastModified":"1301901837000","name":"Johan Wester","type":"Person","_key":"57981"} +{"label":"Karim Rasheed","version":19,"id":"76330","lastModified":"1301902070000","name":"Karim Rasheed","type":"Person","_key":"57982"} +{"label":"Suzanne Reuter","version":28,"id":"76331","lastModified":"1301902000000","name":"Suzanne Reuter","type":"Person","_key":"57983"} +{"label":"Rolf Skoglund","version":22,"id":"76332","lastModified":"1302068886000","name":"Rolf Skoglund","type":"Person","_key":"57984"} +{"label":"Camilla Frey","version":19,"id":"76333","lastModified":"1301902245000","name":"Camilla Frey","type":"Person","_key":"57985"} +{"label":"Elisabeth Lahr","version":19,"id":"76334","lastModified":"1301902245000","name":"Elisabeth Lahr","type":"Person","_key":"57986"} +{"label":"Fredrik Boklund","version":23,"id":"76335","lastModified":"1301901866000","name":"Fredrik Boklund","type":"Person","_key":"57987"} +{"label":"New World Disorder","description":"new world disorder 1 was the start of a huge craze. 9 films with a 10th in filming. the films are all dependant on the music, the filming quality and of course, the music. added bonuses include a unicyclist and a a pair of mountain boarders, and the infamous trevair! definitely highlights! the scariest part of the film is the jaw drop. if you've seen it, you know what i mean, if youve not seen it!","id":"14079","runtime":0,"version":58,"lastModified":"1301503055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a80\/4bc94124017a3c57fe01ba80\/new-world-disorder-mid.jpg","studio":"Freeride Entertainment","genre":"Sports Film","title":"New World Disorder","releaseDate":946684800000,"language":"en","type":"Movie","_key":"57988"} +{"label":"New World Disorder 3: Freewheel Burning","description":"Freewheel Burning is on fire! Like the first two chapters in the Disorder Series, Freewheel Burning puts you on the edge of your seat and takes it up a notch with the biggest and baddest stunts freeriding has ever seen! Freewheel Burning sizzles with huge road gaps, bad ass bikercross, over the top dirt jumping and silly-fast single track that smokes the competition!\n\nfreewheel burning is another fantastic entry. street riding makes an appearance. the new hell track is insane. we miss out on the","id":"14080","runtime":40,"version":18,"lastModified":"1300979773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a85\/4bc94124017a3c57fe01ba85\/new-world-disorder-3-freewheel-burning-mid.jpg","genre":"Sports Film","title":"New World Disorder 3: Freewheel Burning","releaseDate":1030233600000,"language":"en","type":"Movie","_key":"57989"} +{"label":"Wade Simmons","version":19,"id":"84153","lastModified":"1301902677000","name":"Wade Simmons","type":"Person","_key":"57990"} +{"label":"John Cowan","version":21,"id":"112805","lastModified":"1301902688000","name":"John Cowan","type":"Person","_key":"57991"} +{"label":"New World Disorder 4: Ride the Lightning","description":"Disorderly Conduct features a fresh crop of new young rippers. Strap in and hold on for the continuing evolution of the sport with Monster Park and Crankworx slopestyle competitions, more BC stunt riding than you can throw a stick at and huge air time and big booters that we're renowned for!!!\n\nJourney to New Zealand, Australia, Whistler, Europe, Alaska, BC and Utah.\n\nfor me, this is the pinnacle of the disordeer series. the riding is so varied, the music is so appropriate and it amazes me every","id":"14081","runtime":50,"homepage":"http:\/\/www.nwdfilms.com","version":21,"lastModified":"1301908491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8a\/4bc94124017a3c57fe01ba8a\/new-world-disorder-4-ride-the-lightning-mid.jpg","genre":"Sports Film","title":"New World Disorder 4: Ride the Lightning","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"57992"} +{"label":"Cedric Gracia","version":18,"id":"112792","lastModified":"1301902988000","name":"Cedric Gracia","type":"Person","_key":"57993"} +{"label":"Darren Berrecloth","version":24,"id":"84130","lastModified":"1301902686000","name":"Darren Berrecloth","type":"Person","_key":"57994"} +{"label":"Richie Schley","version":18,"id":"112802","lastModified":"1301902988000","name":"Richie Schley","type":"Person","_key":"57995"} +{"label":"New World Disorder 5: Disorderly Conduct","description":"Disorderly Conduct features a fresh crop of new young rippers. Strap in and hold on for the continuing evolution of the sport with Monster Park and Crankworx slopestyle competitions, more BC stunt riding than you can throw a stick at and huge air time and big booters that we're renowned for!!!\n\nJourney to New Zealand, Australia, Whistler, Europe, Alaska, BC and Utah.","id":"14082","runtime":54,"homepage":"http:\/\/www.nwdfilms.com","version":18,"lastModified":"1301419063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8f\/4bc94124017a3c57fe01ba8f\/new-world-disorder-5-disorderly-conduct-mid.jpg","genre":"Sports Film","title":"New World Disorder 5: Disorderly Conduct","releaseDate":1101859200000,"language":"en","type":"Movie","_key":"57996"} +{"label":"Grant Allen","version":16,"id":"115969","lastModified":"1301902519000","name":"Grant Allen","type":"Person","_key":"57997"} +{"label":"Paul Basagoitia","version":20,"id":"112801","lastModified":"1301903001000","name":"Paul Basagoitia","type":"Person","_key":"57998"} +{"label":"New World Disorder 6: Unchained","description":"Unchained, features badass riding by the best in the biz. Once again, our cinees have scoured the earth, hitting the most exotic locales and competitions worldwide. Tune into over 2 hours of riding and extras featuring footage from Adidas Slopestyle, Crankworx, Monsterpark, Bolivia, Utah, BC Canada and Mexico on this special double DVD.","id":"14083","runtime":50,"homepage":"http:\/\/www.nwdfilms.com","version":52,"lastModified":"1301906721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a94\/4bc94124017a3c57fe01ba94\/new-world-disorder-6-unchained-mid.jpg","studio":"Freeride Entertainment","title":"New World Disorder 6: Unchained","releaseDate":1128124800000,"language":"en","type":"Movie","_key":"57999"} +{"label":"Grant Allen","version":16,"id":"115966","lastModified":"1301903017000","name":"Grant Allen","type":"Person","_key":"58000"} +{"label":"New World Disorder 7: Flying High Again","description":"Freeride Entertainment is back and traveling the globe to capture the best riding on the planet! Filmed in HD and 16 mm, Flying High Again presents a visual landscape that feels weightless one moment and powerfully raw the next. Your heart will race as you witness in vibrant clarity the hugest airs, sickest stunts, and gnarliest urban assaults ever performed on a mountain bike! Hard-hitting tunes and loads of bonus features juice up this visually tasty movie, making it a must see!","id":"14084","runtime":0,"homepage":"http:\/\/www.nwdfilms.com","version":28,"lastModified":"1301906147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a99\/4bc94125017a3c57fe01ba99\/new-world-disorder-7-flying-high-again-mid.jpg","genre":"Sports Film","title":"New World Disorder 7: Flying High Again","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"58001"} +{"label":"New World Disorder 8: Smack Down","description":"Welcome to world-wide mayhem! 16 of the planet's best freeride mountain bikers will battle it out for the title of Ultimate Freeride Champion! New World Disorder 8 \"Smack Down\" promises to be just that, a severe throw down of the sickest moves in the business - Longdoogie flip whips, Insano camel hand plants, massive Flying Bourdini gaps and much more. Shot on location in Argentina , Israel , Euro","id":"14085","runtime":64,"version":34,"lastModified":"1301905992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9e\/4bc94125017a3c57fe01ba9e\/new-world-disorder-8-smack-down-mid.jpg","genre":"Sports Film","title":"New World Disorder 8: Smack Down","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58002"} +{"label":"Agata e la tempesta","description":"No overview found.","id":"14086","runtime":125,"imdbId":"tt0402755","version":64,"lastModified":"1301906608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa7\/4bc94125017a3c57fe01baa7\/agata-e-la-tempesta-mid.jpg","studio":"Albachiara","title":"Agata e la tempesta","releaseDate":1083024000000,"language":"en","type":"Movie","_key":"58003"} +{"label":"Emilio Solfrizzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c61\/4d4e64c77b9aa13b48009c61\/emilio-solfrizzi-profile.jpg","version":25,"id":"76338","lastModified":"1301902070000","name":"Emilio Solfrizzi","type":"Person","_key":"58004"} +{"label":"Claudio Santamaria","version":37,"id":"76339","lastModified":"1301901198000","name":"Claudio Santamaria","type":"Person","_key":"58005"} +{"label":"Giselda Volodi","version":20,"id":"76340","lastModified":"1301901866000","name":"Giselda Volodi","type":"Person","_key":"58006"} +{"label":"Monica Nappo","version":19,"id":"76341","lastModified":"1301901866000","name":"Monica Nappo","type":"Person","_key":"58007"} +{"label":"Carla Astolfi","version":19,"id":"76342","lastModified":"1301901866000","name":"Carla Astolfi","type":"Person","_key":"58008"} +{"label":"Elena Nicastro","version":19,"id":"76343","lastModified":"1301901866000","name":"Elena Nicastro","type":"Person","_key":"58009"} +{"label":"Remo Remotti","version":25,"id":"76344","lastModified":"1301901608000","name":"Remo Remotti","type":"Person","_key":"58010"} +{"label":"Andrea Gussoni","version":19,"id":"76345","lastModified":"1301901866000","name":"Andrea Gussoni","type":"Person","_key":"58011"} +{"label":"Carlo De Ruggeri","version":19,"id":"76346","lastModified":"1301902070000","name":"Carlo De Ruggeri","type":"Person","_key":"58012"} +{"label":"Barefoot Gen","description":"A powerful statement against war, Barefoot Gen is a story about the effect of the atomic bomb on a boy's life and the lives of the Japanese people.","id":"14087","runtime":83,"imdbId":"tt0085218","version":82,"lastModified":"1301908298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4c60ab327b9aa172da0002a2\/hadashi-no-gen-mid.jpg","studio":"Madhouse Pictures","genre":"Animation","title":"Barefoot Gen","releaseDate":427593600000,"language":"en","type":"Movie","_key":"58013"} +{"label":"Barefoot Gen 2","description":"Three years after the Hiroshima bombing, a teenager helps a group of orphans to survive and find their new life.","id":"14088","runtime":85,"imdbId":"tt0171357","version":60,"lastModified":"1301416031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aac\/4bc94125017a3c57fe01baac\/hadashi-no-gen-2-mid.jpg","studio":"Mad House","genre":"Animation","title":"Barefoot Gen 2","releaseDate":456019200000,"language":"en","type":"Movie","_key":"58014"} +{"label":"Toshio Hirata","version":16,"id":"133116","lastModified":"1301902907000","name":"Toshio Hirata","type":"Person","_key":"58015"} +{"label":"Akio Sakai","version":21,"id":"73124","lastModified":"1301902250000","name":"Akio Sakai","type":"Person","_key":"58016"} +{"label":"Christmas on Mars","description":"The film tells the story of the experiences of Major Syrtis during the first Christmas on a newly-colonized Mars. Coyne has described the film as \"Maybe Eraserhead or Dead Man crossed with some kind of fantasy and space aspects, like The Wizard of Oz and maybe A Space Odyssey, and set at Christmas-time. The story that unfolds is intended to hint at childlike magic within a tragic and realistic situation.\"","id":"14089","runtime":82,"imdbId":"tt0363240","trailer":"http:\/\/www.youtube.com\/watch?v=829","version":434,"lastModified":"1301904300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab5\/4bc94126017a3c57fe01bab5\/christmas-on-mars-mid.jpg","genre":"Science Fiction","title":"Christmas on Mars","releaseDate":1226361600000,"language":"en","type":"Movie","_key":"58017"} +{"label":"Wayne Coyne","version":21,"id":"76347","lastModified":"1301901720000","name":"Wayne Coyne","type":"Person","_key":"58018"} +{"label":"Bradley Beesley","version":19,"id":"76349","lastModified":"1301901720000","name":"Bradley Beesley","type":"Person","_key":"58019"} +{"label":"George Salisbury","version":19,"id":"76350","lastModified":"1301901720000","name":"George Salisbury","type":"Person","_key":"58020"} +{"label":"Steven Drozd","version":19,"id":"76351","lastModified":"1301901720000","name":"Steven Drozd","type":"Person","_key":"58021"} +{"label":"Scott Booker","version":19,"id":"76352","lastModified":"1301901866000","name":"Scott Booker","type":"Person","_key":"58022"} +{"label":"Michael Ivins","version":19,"id":"76353","lastModified":"1301901866000","name":"Michael Ivins","type":"Person","_key":"58023"} +{"label":"Michelle Martin-Coyne","version":19,"id":"76354","lastModified":"1301901866000","name":"Michelle Martin-Coyne","type":"Person","_key":"58024"} +{"label":"Jimmy Pike","version":19,"id":"76355","lastModified":"1301901866000","name":"Jimmy Pike","type":"Person","_key":"58025"} +{"label":"Kliph Scurlock","version":19,"id":"76356","lastModified":"1301901866000","name":"Kliph Scurlock","type":"Person","_key":"58026"} +{"label":"Ploning","description":"Pag-ibig (Love). Paghinhintay (Waiting). Pag-asa (Hope). In the picturesque island of Cuyo, Palawan, an illegal Taiwanese fishing \nvessel docks carrying the fisherman named Muo Sei, a man looking for\nsomething or someone with the name Ploning. He has from sunrise to \nsundown to look for this \"Ploning\".","id":"14090","runtime":0,"imdbId":"tt1200074","homepage":"http:\/\/www.ploningthemovie.com","version":68,"lastModified":"1301418828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abe\/4bc94126017a3c57fe01babe\/ploning-mid.jpg","title":"Ploning","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"58027"} +{"label":"Judy Ann Santos","version":21,"id":"76358","lastModified":"1301902202000","name":"Judy Ann Santos","type":"Person","_key":"58028"} +{"label":"Code Rush","description":"Life on the edge in Silicon Valley - home of high tech, high anxiety, and high stakes. Take a revealing look at Netscape Communications engineers as they set out boldly and brazenly to save their company. A virtual panorama of human drama and techno-thrills, Code Rush puts you at the center of the high-intensity clash of science, engineering, and commerce.","id":"14091","runtime":56,"imdbId":"tt0499004","version":71,"lastModified":"1301905196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac3\/4bc94127017a3c57fe01bac3\/code-rush-mid.jpg","studio":"PBS Home Video","genre":"Documentary","title":"Code Rush","releaseDate":956620800000,"language":"en","type":"Movie","_key":"58029"} +{"label":"David Winton","version":20,"id":"76360","lastModified":"1301902326000","name":"David Winton","type":"Person","_key":"58030"} +{"label":"Scott Collins","version":20,"id":"76361","lastModified":"1301901949000","name":"Scott Collins","type":"Person","_key":"58031"} +{"label":"Stuart Parmenter","version":20,"id":"76362","lastModified":"1301902144000","name":"Stuart Parmenter","type":"Person","_key":"58032"} +{"label":"Jamie Zawinski","version":20,"id":"76363","lastModified":"1301902326000","name":"Jamie Zawinski","type":"Person","_key":"58033"} +{"label":"Ghost in the Shell 2.0","description":"Ghost in the Shell 2.0 is a reproduced version of its original 1995 counterpart. For the films 2.0 release, all the original animations were re-produced with latest digital film and animation technologies, such as 3D-CGI. ","id":"14092","runtime":85,"imdbId":"tt1260502","version":237,"lastModified":"1301902717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad8\/4bc94128017a3c57fe01bad8\/2-0-mid.jpg","studio":"Production I.G.","genre":"Animation","title":"Ghost in the Shell 2.0","releaseDate":1215820800000,"language":"en","type":"Movie","_key":"58034"} +{"label":"Christmas in Wonderland","description":"Three kids and their Dad move from L.A to Edmonton. When they go shopping at West Edmonton Mall they find counterfeit cash. They inadvertently help catch the crooks, and later make a discovery about Santa","id":"14094","runtime":95,"imdbId":"tt0991150","version":271,"lastModified":"1301905096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aef\/4bc9412b017a3c57fe01baef\/christmas-in-wonderland-mid.jpg","studio":"Insight Film Studios","genre":"Comedy","title":"Christmas in Wonderland","releaseDate":1198713600000,"language":"en","type":"Movie","_key":"58035"} +{"label":"Amy Schlagel","version":19,"id":"76364","lastModified":"1301901866000","name":"Amy Schlagel","type":"Person","_key":"58036"} +{"label":"Preston Lacy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/060\/4bd3eb70017a3c7fae000060\/preston-lacy-profile.jpg","version":32,"id":"76365","lastModified":"1301901696000","name":"Preston Lacy","type":"Person","_key":"58037"} +{"label":"Hadashi no Gen","description":"No overview found.","id":"14095","version":214,"lastModified":"1301670710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc9412c017a3c57fe01baf9\/hadashi-no-gen-mid.jpg","title":"Hadashi no Gen","language":"en","type":"Movie","_key":"58038"} +{"label":"The Magician","description":"Following the dealings of a Melbourne-based hitman Ray as seen through the eyes of his ex-neighbour and friend Max, an Italian film student. Max and his camera witness Ray's work life as it unfolds from day to day, giving an insight into a world we rarely see, and at the same time developing an unusual friendship with his subject.","id":"14096","runtime":85,"imdbId":"tt0461989","version":141,"lastModified":"1301908004000","genre":"Comedy","title":"The Magician","releaseDate":1127952000000,"language":"en","tagline":"For the right money he can make anything disappear","type":"Movie","_key":"58039"} +{"label":"Scott Ryan","version":20,"id":"76366","lastModified":"1301902172000","name":"Scott Ryan","type":"Person","_key":"58040"} +{"label":"9th Company","description":"The picture opens in Krasnoyarsk, Siberia, in late 1988, when military trainees Petrovsky, Ryaba, Chugun, Stas, Pinochet, Lyutev and Vorobyev are whipped into shape at a training camp by the brutal, sadistic commander, Warrant Officer Dygalo - prior to being sent off to the front lines. After several one-by-one dalliances with the local whore, Snow White, and a cautionary lecture on the history, geography and culture of Afghanistan (which most of the men sleep through), the trainees head off to ","id":"14097","runtime":139,"imdbId":"tt0417397","homepage":"http:\/\/www.9thcompany.com","version":345,"lastModified":"1301903681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0f\/4bc9412d017a3c57fe01bb0f\/9-mid.jpg","genre":"War","title":"9th Company","releaseDate":1141344000000,"language":"en","tagline":"They stood together while their country fell apart","type":"Movie","_key":"58041"} +{"label":"Artur Smolyaninov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c18\/4d175df65e73d6083e008c18\/artur-smolyaninov-profile.jpg","version":30,"id":"101423","lastModified":"1301901300000","name":"Artur Smolyaninov","type":"Person","_key":"58042"} +{"label":"Konstantin Kryukov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a0\/4d52de987b9aa1193e0063a0\/konstantin-kryukov-profile.jpg","version":27,"id":"101436","lastModified":"1301901825000","name":"Konstantin Kryukov","type":"Person","_key":"58043"} +{"label":"Ivan Kokorin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d10\/4d52ddcc7b9aa13aba011d10\/ivan-kokorin-profile.jpg","version":24,"id":"101438","lastModified":"1301901814000","name":"Ivan Kokorin","type":"Person","_key":"58044"} +{"label":"Mikhail Evlanov","version":26,"id":"86877","lastModified":"1301902204000","name":"Mikhail Evlanov","type":"Person","_key":"58045"} +{"label":"Artyom Mikhalkov","version":26,"id":"101440","lastModified":"1301902033000","name":"Artyom Mikhalkov","type":"Person","_key":"58046"} +{"label":"Soslan Fidarov","version":23,"id":"101441","lastModified":"1301902176000","name":"Soslan Fidarov","type":"Person","_key":"58047"} +{"label":"Ivan Nikolaev","version":24,"id":"101442","lastModified":"1301902363000","name":"Ivan Nikolaev","type":"Person","_key":"58048"} +{"label":"Mikhail Porechenkov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/113\/4d5301307b9aa13aab012113\/mikhail-porechenkov-profile.jpg","version":53,"id":"86726","lastModified":"1301901581000","name":"Mikhail Porechenkov","type":"Person","_key":"58049"} +{"label":"Amadu Mamadakov","version":23,"id":"101445","lastModified":"1301902018000","name":"Amadu Mamadakov","type":"Person","_key":"58050"} +{"label":"Marat Gudiev","version":23,"id":"101447","lastModified":"1301902382000","name":"Marat Gudiev","type":"Person","_key":"58051"} +{"label":"Aleksandr Bashirov","version":36,"id":"86636","lastModified":"1301901378000","name":"Aleksandr Bashirov","type":"Person","_key":"58052"} +{"label":"Fyodor Bondarchuk","version":48,"id":"80999","lastModified":"1301901468000","name":"Fyodor Bondarchuk","type":"Person","_key":"58053"} +{"label":"100 Feet","description":"After Marnie Watson kills her abusive husband in self-defense, she is condemned to house arrest... only to discover that the house is possessed by the enraged and violent spirit of her dead husband.","id":"14098","runtime":105,"imdbId":"tt0899128","version":267,"lastModified":"1302038704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2a\/4bc94131017a3c57fe01bb2a\/100-feet-mid.jpg","studio":"100 Feet Productions","genre":"Horror","title":"100 Feet","releaseDate":1216857600000,"language":"en","type":"Movie","_key":"58054"} +{"label":"Allan Quatermain and the Temple of Skulls","description":"Filmed on location in South Africa, a retelling of H. Rider Haggard's classic novel \"King Solomon's Mines,\" featuring the adventurer who was the inspiration for Indiana Jones.","id":"14103","runtime":98,"imdbId":"tt1219671","version":146,"lastModified":"1301906655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b33\/4bc94134017a3c57fe01bb33\/allan-quatermain-and-the-temple-of-skulls-mid.jpg","genre":"Action","title":"Allan Quatermain and the Temple of Skulls","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"58055"} +{"label":"Sean Cameron Michael","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c30\/4cba4e5d7b9aa138d8000c30\/sean-cameron-michael-profile.jpg","version":29,"id":"86320","lastModified":"1301902418000","name":"Sean Cameron Michael","type":"Person","_key":"58056"} +{"label":"Natalie Stone","version":22,"id":"86321","lastModified":"1301902070000","name":"Natalie Stone","type":"Person","_key":"58057"} +{"label":"Daniel Bonjour","version":23,"id":"86322","lastModified":"1301902705000","name":"Daniel Bonjour","type":"Person","_key":"58058"} +{"label":"Wittly Jourdan","version":24,"id":"86323","lastModified":"1301902245000","name":"Wittly Jourdan","type":"Person","_key":"58059"} +{"label":"Nick Everhart","version":19,"id":"86324","lastModified":"1301902465000","name":"Nick Everhart","type":"Person","_key":"58060"} +{"label":"Mark Atkins","version":30,"id":"81297","lastModified":"1301902143000","name":"Mark Atkins","type":"Person","_key":"58061"} +{"label":"Already Dead","description":"When Thomas Archer's happy & successful life is all but ruined following a horrific attack he is presented with a perfect opportunity to exact physical revenge upon the man who caused all his grief. However the immediate consequences of his actions and inactions are much more complicated than he imagined.","id":"14105","runtime":93,"imdbId":"tt0937347","trailer":"http:\/\/www.youtube.com\/watch?v=1005","version":222,"lastModified":"1301584383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b40\/4bc94135017a3c57fe01bb40\/already-dead-mid.jpg","studio":"Havenwood Media","genre":"Action","title":"Already Dead","releaseDate":1200355200000,"language":"en","type":"Movie","_key":"58062"} +{"label":"Joe Otting","version":20,"id":"77810","lastModified":"1301901474000","name":"Joe Otting","type":"Person","_key":"58063"} +{"label":"The Weather Underground","description":"The remarkable story of The Weather Underground, radical activists of the 1970s, and of radical politics at its best and most disastrous. ","id":"14108","runtime":92,"imdbId":"tt0343168","version":109,"lastModified":"1301903813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4bc94136017a3c57fe01bb49\/the-weather-underground-mid.jpg","studio":"The Free History Project","genre":"Documentary","title":"The Weather Underground","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"58064"} +{"label":"Sam Green","version":20,"id":"130140","lastModified":"1301902786000","name":"Sam Green","type":"Person","_key":"58065"} +{"label":"Bill Siegel","version":20,"id":"130141","lastModified":"1301902786000","name":"Bill Siegel","type":"Person","_key":"58066"} +{"label":"Battle For Haditha","description":"An investigation of the massacre of 24 men, women and children in Haditha, Iraq allegedly shot by 4 U.S. Marines in retaliation for the death of a U.S. Marine killed by a roadside bomb. The movie follows the story of the Marines of Kilo Company, an Iraqi family, and the insurgents who plant the roadside bomb.","id":"14111","runtime":97,"imdbId":"tt0870211","trailer":"http:\/\/www.youtube.com\/watch?v=1320","version":238,"lastModified":"1301903556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5f\/4bc94137017a3c57fe01bb5f\/battle-for-haditha-mid.jpg","genre":"Action","title":"Battle For Haditha","releaseDate":1197590400000,"language":"en","type":"Movie","_key":"58067"} +{"label":"Matthew Knoll","version":21,"id":"84726","lastModified":"1301902536000","name":"Matthew Knoll","type":"Person","_key":"58068"} +{"label":"Eric Mehalacopoulos","version":21,"id":"84727","lastModified":"1301902366000","name":"Eric Mehalacopoulos","type":"Person","_key":"58069"} +{"label":"Auto Focus","description":"The story of Bob Crane, best know for his role as Hogan on the tv show Hogan's Heroes and his secret life of swinging and his eventual murder.","id":"14112","runtime":105,"imdbId":"tt0298744","trailer":"http:\/\/www.youtube.com\/watch?v=1967","version":147,"lastModified":"1301903557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b71\/4bc94138017a3c57fe01bb71\/auto-focus-mid.jpg","genre":"Drama","title":"Auto Focus","releaseDate":1031443200000,"language":"en","type":"Movie","_key":"58070"} +{"label":"Zoom","description":"Jack Shepard is an out-of-shape auto shop owner, far removed from the man who once protected the world's freedom. Reluctantly called back into action by the government, Jack is tasked with turning a rag tag group of kids with special powers into a new generation of superheroes to save the world from certain destruction. Based on Jason Lethcoe's graphic novel \"Zoom's Academy for the Super Gifted\".","id":"14113","runtime":83,"imdbId":"tt0383060","trailer":"http:\/\/www.youtube.com\/watch?v=flrwVS3T-xg","version":201,"lastModified":"1301903909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7a\/4bc94139017a3c57fe01bb7a\/zoom-mid.jpg","genre":"Comedy","title":"Zoom","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"58071"} +{"label":"You Got Served","description":"At Mr. Rad's Warehouse, the best hip-hop crews in Los Angeles compete for money and respect. But when a suburban crew crashes the party, stealing their dancers - and their moves - two warring friends have to pull together to represent the street. Starring hip-hop sensations Marques Houston, Omari Grandberry, Lil' Kim and comedian Steve Harvey.","id":"14114","runtime":95,"imdbId":"tt0365957","version":233,"lastModified":"1301903091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b83\/4bc9413a017a3c57fe01bb83\/you-got-served-mid.jpg","genre":"Drama","title":"You Got Served","releaseDate":1088121600000,"language":"en","type":"Movie","_key":"58072"} +{"label":"Beck - Advokaten","description":"En k\u00e4nd advokat blir brutalt m\u00f6rdad i sitt hem. Motivbilden till mordet ser till en b\u00f6rjan ganska enkel ut d\u00e5 advokaten varit engagerad i ett m\u00e5l d\u00e4r ett f\u00f6retag varit \u00e5talat f\u00f6r att ligga bakom ett grovt milj\u00f6brott. N\u00e4r Beck och kollegan Klingstr\u00f6m g\u00e5r igenom advokatens kontor hittar man snabbt bevis som ger nytt ljus i utredningen - men vem \u00e4r det som dragit i tr\u00e5darna, och varf\u00f6r?","id":"14115","runtime":90,"imdbId":"tt0889574","version":68,"lastModified":"1301906059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b91\/4bc9413b017a3c57fe01bb91\/beck-20-advokaten-mid.jpg","studio":"Filmlance International AB","title":"Beck - Advokaten","releaseDate":1164499200000,"language":"en","type":"Movie","_key":"58073"} +{"label":"Kjell Sundvall","version":43,"id":"76367","lastModified":"1301901777000","name":"Kjell Sundvall","type":"Person","_key":"58074"} +{"label":"Dan Ekborg","version":24,"id":"76383","lastModified":"1301901580000","name":"Dan Ekborg","type":"Person","_key":"58075"} +{"label":"Sara Sommerfeld","version":21,"id":"76384","lastModified":"1301902361000","name":"Sara Sommerfeld","type":"Person","_key":"58076"} +{"label":"Rebecka Hemse","version":41,"id":"76390","lastModified":"1301901830000","name":"Rebecka Hemse","type":"Person","_key":"58077"} +{"label":"The Bulldog Breed","description":"When Norman is crossed in love he is persuaded to join the Royal Navy and recruited to man the first British Rocket","id":"14116","runtime":0,"imdbId":"tt0053683","version":60,"lastModified":"1301903474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9a\/4bc94140017a3c57fe01bb9a\/the-bulldog-breed-mid.jpg","genre":"Comedy","title":"The Bulldog Breed","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"58078"} +{"label":"Norman Wisdom","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad9\/4bfd4d1e017a3c702d000ad9\/norman-wisdom-profile.jpg","version":31,"id":"76379","lastModified":"1301901646000","name":"Norman Wisdom","type":"Person","_key":"58079"} +{"label":"Robert Asher","version":25,"id":"76380","lastModified":"1301902361000","name":"Robert Asher","type":"Person","_key":"58080"} +{"label":"Calamity Jane","description":"Doris Day and Howard Keel fuss, feud and fall in love as Calamity Jane and Wild Bill Hickok. At first curvaceous Calamity is too durned busy fighting Indians and cracking a bullwhip to pay mind to such girlie what-alls as dresses and perfume. She soon changes her mind when Katie Brown arrives in town.","id":"14117","runtime":101,"imdbId":"tt0045591","trailer":"http:\/\/www.youtube.com\/watch?v=tAa0ZZbpvq0","version":174,"lastModified":"1301908005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba3\/4bc94141017a3c57fe01bba3\/calamity-jane-mid.jpg","studio":"Warner Bros. Pictures","genre":"Musical","title":"Calamity Jane","releaseDate":-509932800000,"language":"en","type":"Movie","_key":"58081"} +{"label":"David Butler","version":39,"id":"76381","lastModified":"1301902144000","name":"David Butler","type":"Person","_key":"58082"} +{"label":"Allyn Ann McLerie","version":29,"id":"76382","lastModified":"1301901779000","name":"Allyn Ann McLerie","type":"Person","_key":"58083"} +{"label":"Dedication","description":"A modern love story in which a misanthropic, emotionally complex author of a hit children's book is forced to team with a beautiful illustrator after his best friend and collaborator passes away. As Henry struggles with letting go of the ghosts of love and life, he discovers that sometimes you have to take a gamble at life to find love.","id":"14118","runtime":95,"imdbId":"tt0490579","trailer":"http:\/\/www.youtube.com\/watch?v=837","homepage":"http:\/\/www.dedicationmovie.net\/","version":174,"lastModified":"1301903029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb5\/4bc94144017a3c57fe01bbb5\/dedication-mid.jpg","genre":"Comedy","title":"Dedication","releaseDate":1169424000000,"language":"en","tagline":"With each moment we write our story","type":"Movie","_key":"58084"} +{"label":"End Of The Spear","description":"\"End of the Spear\" is the story of Mincayani, a Waodani tribesman from the jungles of Ecuador. When five young missionaries, among them Jim Elliot and Nate Saint, are speared to death by the Waodani in 1956, a series of events unfold to change the lives of not only the slain missionaries' families, but also Mincayani and his people","id":"14120","runtime":108,"imdbId":"tt0399862","trailer":"http:\/\/www.youtube.com\/watch?v=830","homepage":"http:\/\/www.endofthespear.com\/","version":150,"lastModified":"1301903396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d1\/4c61df777b9aa172dd0004d1\/end-of-the-spear-mid.jpg","studio":"Bearing Fruit Entertainment","genre":"Drama","title":"End Of The Spear","releaseDate":1133481600000,"language":"en","type":"Movie","_key":"58085"} +{"label":"Blur","description":"Artist Adrian Jonas toils in preparation for the biggest gallery opening of his career. The creative process takes Adrian deep into the depths of his mind, where he begins to experience premonitions of a terrible fate that awaits his beloved Iliana. Adrian grows to suspect that a mysterious neighbor is the phantom who means to harm his wife.","id":"14122","runtime":95,"imdbId":"tt0497334","version":65,"lastModified":"1301906763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcf\/4bc94148017a3c57fe01bbcf\/blur-mid.jpg","studio":"Belvedere Entertainment","genre":"Drama","title":"Blur","releaseDate":1176768000000,"language":"en","type":"Movie","_key":"58086"} +{"label":"Michael Sorvino","version":20,"id":"83938","lastModified":"1301902545000","name":"Michael Sorvino","type":"Person","_key":"58087"} +{"label":"Nick Briscoe","version":20,"id":"83939","lastModified":"1301902326000","name":"Nick Briscoe","type":"Person","_key":"58088"} +{"label":"Bratz","description":"The popular Bratz dolls come to life in their first live-action feature film. Finding themselves being pulled further and further apart, the fashionable four band together to fight peer pressure, learn what it means to stand up for your friends, be true to oneself and live out your dreams.","id":"14123","runtime":110,"imdbId":"tt0804452","version":457,"lastModified":"1301903896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be2\/4bc9414a017a3c57fe01bbe2\/bratz-mid.jpg","genre":"Comedy","title":"Bratz","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"58089"} +{"label":"Logan Browning","version":17,"id":"93376","lastModified":"1301903036000","name":"Logan Browning","type":"Person","_key":"58090"} +{"label":"Janel Parrish","version":18,"id":"93377","lastModified":"1301903036000","name":"Janel Parrish","type":"Person","_key":"58091"} +{"label":"Nathalia Ramos","version":16,"id":"93378","lastModified":"1301902891000","name":"Nathalia Ramos","type":"Person","_key":"58092"} +{"label":"Skyler Shaye","version":22,"id":"93379","lastModified":"1301902961000","name":"Skyler Shaye","type":"Person","_key":"58093"} +{"label":"Sean McNamara","version":23,"id":"129952","lastModified":"1301902396000","name":"Sean McNamara","type":"Person","_key":"58094"} +{"label":"Captivity","description":"A young model is drugged, kidnapped and subject to harrowing torture in a cell of horrors in this spine chilling horror thriller","id":"14125","runtime":96,"imdbId":"tt0374563","version":224,"lastModified":"1301903013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf9\/4bc9414e017a3c57fe01bbf9\/captivity-mid.jpg","genre":"Horror","title":"Captivity","releaseDate":1184284800000,"language":"en","tagline":"Time Is Running Out...","type":"Movie","_key":"58095"} +{"label":"Michael Harney","version":15,"id":"149655","lastModified":"1301903106000","name":"Michael Harney","type":"Person","_key":"58096"} +{"label":"Olivia Negron","version":13,"id":"171521","lastModified":"1301903592000","name":"Olivia Negron","type":"Person","_key":"58097"} +{"label":"Chrysta Olson","version":5,"id":"230772","lastModified":"1301904097000","name":"Chrysta Olson","type":"Person","_key":"58098"} +{"label":"Catacombs","description":"On her first trip to Paris, a young woman hits a party in the Catacombs, the 200-mile labyrinth of limestone.","id":"14126","runtime":100,"imdbId":"tt0449471","version":450,"lastModified":"1302019788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbb\/4d88f4a35e73d67520000dbb\/catacombs-mid.jpg","genre":"Horror","title":"Catacombs","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"58099"} +{"label":"Tomm Coker","version":26,"id":"77270","lastModified":"1301902017000","name":"Tomm Coker","type":"Person","_key":"58100"} +{"label":"David Elliot","version":37,"id":"34672","lastModified":"1301901690000","name":"David Elliot","type":"Person","_key":"58101"} +{"label":"Pink","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8ed\/4cb8e14f7b9aa138d60008ed\/pink-profile.jpg","version":35,"id":"77271","lastModified":"1301901182000","name":"Pink","type":"Person","_key":"58102"} +{"label":"Cherry Crush","description":"A High school Photographer breaks his own rules and falls in love with his teenage model","id":"14127","runtime":89,"imdbId":"tt0473464","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/cherry-crush","version":216,"lastModified":"1301903313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2d\/4bc94156017a3c57fe01bc2d\/cherry-crush-mid.jpg","genre":"Crime","title":"Cherry Crush","releaseDate":1171584000000,"language":"en","tagline":"Passion has a price.","type":"Movie","_key":"58103"} +{"label":"Alessa Neeck","version":18,"id":"141813","lastModified":"1301902622000","name":"Alessa Neeck","type":"Person","_key":"58104"} +{"label":"Nicholas DiBella","version":18,"id":"141814","lastModified":"1301902575000","name":"Nicholas DiBella","type":"Person","_key":"58105"} +{"label":"Cinderella II: Dreams Come True","description":"Explore Cinderella's \"happily ever after\" life as a princess in 3 stories, with help from the Fairy Godmother. First, Cinderella's awkward first days at the palace, when she tried so hard to fit in that she forgot to be herself. Second, how Jaq felt so left out that he wished to be a human. Third, how Cinderella taught one of her nasty step-sisters how to smile which leads to her own true love.","id":"14128","runtime":73,"imdbId":"tt0291082","version":135,"lastModified":"1301902717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c36\/4bc94157017a3c57fe01bc36\/cinderella-ii-dreams-come-true-mid.jpg","studio":"Walt Disney","genre":"Animation","title":"Cinderella II: Dreams Come True","releaseDate":1014422400000,"language":"en","type":"Movie","_key":"58106"} +{"label":"John H. Kafka","version":31,"id":"50269","lastModified":"1301901603000","name":"John H. Kafka","type":"Person","_key":"58107"} +{"label":"Jennifer Hale","version":28,"id":"81667","lastModified":"1301902141000","name":"Jennifer Hale","type":"Person","_key":"58108"} +{"label":"Tress MacNeille","version":18,"id":"135198","lastModified":"1301902802000","name":"Tress MacNeille","type":"Person","_key":"58109"} +{"label":"Beck - Den japanska shungam\u00e5lningen","description":"En kvinna hittas skjuten p\u00e5 ett hotell i Stockholm. Det r\u00e5der en del mystiska omst\u00e4ndigheter kring mordet, bland annat har m\u00f6rdaren format kroppen s\u00e5 att den f\u00f6rest\u00e4ller en k\u00e4nd Chagallm\u00e5lning. Martin Beck tar sig an fallet med hj\u00e4lp av sin tyske kollega Sperling som \u00e4r p\u00e5 tillf\u00e4lligt bes\u00f6k i stan. Ganska snart hamnar man mitt i en f\u00f6rfalskningsh\u00e4rva med falska Chagalltavlor i omlopp.","id":"14129","runtime":90,"imdbId":"tt0963215","version":51,"lastModified":"1301906059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3f\/4bc94157017a3c57fe01bc3f\/beck-21-den-japanska-shungamalningen-mid.jpg","studio":"Filmlance International AB","genre":"Crime","title":"Beck - Den japanska shungam\u00e5lningen","releaseDate":1181088000000,"language":"en","type":"Movie","_key":"58110"} +{"label":"Philip Zand\u00e9n","version":25,"id":"76392","lastModified":"1301901834000","name":"Philip Zand\u00e9n","type":"Person","_key":"58111"} +{"label":"One Perfect Day","description":"Tommy Matisse, a gifted musician, undertakes an odyssey of self-discovery and tragedy in Melbourne's dance music scene.","id":"14130","runtime":106,"imdbId":"tt0316353","version":110,"lastModified":"1301415976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c48\/4bc94158017a3c57fe01bc48\/one-perfect-day-mid.jpg","genre":"Drama","title":"One Perfect Day","releaseDate":1077148800000,"language":"en","type":"Movie","_key":"58112"} +{"label":"Dan Spielman","version":21,"id":"85618","lastModified":"1301902674000","name":"Dan Spielman","type":"Person","_key":"58113"} +{"label":"Leeanna Walsman","version":18,"id":"93114","lastModified":"1301902496000","name":"Leeanna Walsman","type":"Person","_key":"58114"} +{"label":"Dawn Klingberg","version":17,"id":"112698","lastModified":"1301902465000","name":"Dawn Klingberg","type":"Person","_key":"58115"} +{"label":"Malcolm Robertson","version":20,"id":"85352","lastModified":"1301902634000","name":"Malcolm Robertson","type":"Person","_key":"58116"} +{"label":"Josephine Eberhard","version":16,"id":"112699","lastModified":"1301902891000","name":"Josephine Eberhard","type":"Person","_key":"58117"} +{"label":"Roy Davies","version":17,"id":"90752","lastModified":"1301902978000","name":"Roy Davies","type":"Person","_key":"58118"} +{"label":"Amy McKay","version":16,"id":"112700","lastModified":"1301902891000","name":"Amy McKay","type":"Person","_key":"58119"} +{"label":"Toni Joel","version":16,"id":"112701","lastModified":"1301902891000","name":"Toni Joel","type":"Person","_key":"58120"} +{"label":"Nathan Wentworth","version":16,"id":"112702","lastModified":"1301902891000","name":"Nathan Wentworth","type":"Person","_key":"58121"} +{"label":"Mark Currie","version":16,"id":"112703","lastModified":"1301902891000","name":"Mark Currie","type":"Person","_key":"58122"} +{"label":"Syd Brisbane","version":17,"id":"112705","lastModified":"1301902943000","name":"Syd Brisbane","type":"Person","_key":"58123"} +{"label":"Leigh Whannell","version":25,"id":"51027","lastModified":"1301901916000","name":"Leigh Whannell","type":"Person","_key":"58124"} +{"label":"Rory Williamson","version":16,"id":"112706","lastModified":"1301902891000","name":"Rory Williamson","type":"Person","_key":"58125"} +{"label":"Carly Schmidt","version":16,"id":"112707","lastModified":"1301902891000","name":"Carly Schmidt","type":"Person","_key":"58126"} +{"label":"Emily Milburn","version":16,"id":"112708","lastModified":"1301902891000","name":"Emily Milburn","type":"Person","_key":"58127"} +{"label":"Robbie Vagana","version":16,"id":"112709","lastModified":"1301902891000","name":"Robbie Vagana","type":"Person","_key":"58128"} +{"label":"Adam May","version":16,"id":"112710","lastModified":"1301902891000","name":"Adam May","type":"Person","_key":"58129"} +{"label":"Anthony Littlechild","version":16,"id":"112711","lastModified":"1301902891000","name":"Anthony Littlechild","type":"Person","_key":"58130"} +{"label":"Maria Nella","version":16,"id":"112712","lastModified":"1301902891000","name":"Maria Nella","type":"Person","_key":"58131"} +{"label":"Macross: Do You Remember Love?","description":"It is A.D. 2009 and the human race is caught in a war between giant humanoids, male Zentrans and female Meltrans. Returning from the edge of our solar system after making a space fold, the SDF-1 Macross makes the long journey back to Earth with survivors of South Ataria Island. \"Macross: Do You Remember Love?\" is an alternate re-telling of the events that occurred in the original 1982 TV series.","id":"14132","runtime":114,"imdbId":"tt0087660","homepage":"http:\/\/www.macross.co.jp","version":85,"lastModified":"1301904043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4d54a20b5e73d617c1005eab\/14132-mid.jpg","studio":"Big West","genre":"Animation","title":"Macross: Do You Remember Love?","releaseDate":459216000000,"language":"en","type":"Movie","_key":"58132"} +{"label":"Mari Iijima","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ebc\/4d8e47385e73d65ed6000ebc\/mari-iijima-profile.jpg","biography":"Cantante y compositora japonesa, nacida el 18 de mayo de 1963 en Tsuchiura, Ibaraki, Jap\u00f3n. Es especialmente conocida por haber sido la voz de Lynn Minmay en la serie anim\u00e9 The Super Dimension Fortress Macross.\nHa tenido una exitosa carrera musical, publicando varios discos en ingl\u00e9s, incluida su m\u00e1s reciente producci\u00f3n, Uncompromising Innocence. En el a\u00f1o 2000 fue nominada como mejor artista pop para Los Angeles Music Awards por su \u00e1lbum No Limit.\nSin embargo, su asociaci\u00f3n con Lynn Minmay es l","version":27,"birthday":"-209091600000","id":"76394","birthplace":"Tsuchiura, Japan","lastModified":"1301901564000","name":"Mari Iijima","type":"Person","_key":"58133"} +{"label":"Arihiro Hase","version":24,"id":"76395","lastModified":"1301901445000","name":"Arihiro Hase","type":"Person","_key":"58134"} +{"label":"Mika Doi","version":25,"id":"76396","lastModified":"1301901465000","name":"Mika Doi","type":"Person","_key":"58135"} +{"label":"Akira Kamiya","version":52,"id":"54690","lastModified":"1301901205000","name":"Akira Kamiya","type":"Person","_key":"58136"} +{"label":"Sh\u00f4ji Kawamori","version":29,"id":"76408","lastModified":"1301901581000","name":"Sh\u00f4ji Kawamori","type":"Person","_key":"58137"} +{"label":"Noboru Ishiguro","version":26,"id":"76409","lastModified":"1301901401000","name":"Noboru Ishiguro","type":"Person","_key":"58138"} +{"label":"Main Hoon Na","description":"When India and Pakistan decide to end their hostilities, there is one army person in India who is unhappy, because of his son's death in the Indo-Pak war. He decides to launch terror attacks and bring an end to peace, and for this purpose he shoots and gravelly injures an Indian army officer. After the death of this officer, Raghavan then decides to do away with the army officer's daughter, Sanjana, who is studying in hostel. Raghavan and his men descend on the hostel and hold over 100 students ","id":"14134","runtime":175,"imdbId":"tt0347473","version":173,"lastModified":"1301907297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6e\/4bc9415e017a3c57fe01bc6e\/main-hoon-na-mid.jpg","studio":"Eros Entertainment","genre":"Drama","title":"Main Hoon Na","releaseDate":1083283200000,"language":"en","type":"Movie","_key":"58139"} +{"label":"Amrita Rao","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/105\/4c4f010a7b9aa1326b000105\/amrita-rao-profile.jpg","version":27,"id":"85890","lastModified":"1301902673000","name":"Amrita Rao","type":"Person","_key":"58140"} +{"label":"Zayed Khan","version":25,"id":"85731","lastModified":"1301901469000","name":"Zayed Khan","type":"Person","_key":"58141"} +{"label":"Sushmita Sen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/42b\/4d4117125e73d6570400042b\/sushmita-sen-profile.jpg","version":31,"id":"88138","lastModified":"1301902374000","name":"Sushmita Sen","type":"Person","_key":"58142"} +{"label":"Sunil Shetty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12a\/4c4f01a57b9aa1326c00012a\/sunil-shetty-profile.jpg","version":44,"id":"85730","lastModified":"1301902166000","name":"Sunil Shetty","type":"Person","_key":"58143"} +{"label":"Rakhi Sawant","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ba\/4d34c14e5e73d6334f0093ba\/rakhi-sawant-profile.jpg","version":30,"id":"86031","lastModified":"1301902506000","name":"Rakhi Sawant","type":"Person","_key":"58144"} +{"label":"Murli Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e70\/4d2252217b9aa12886000e70\/murli-sharma-profile.jpg","version":26,"id":"85588","lastModified":"1301901947000","name":"Murli Sharma","type":"Person","_key":"58145"} +{"label":"Bad Boy Bubby","description":"Bad Boy Bubby is just that: a bad boy. So bad, in fact, that his mother has kept him locked in their house for his entire thirty years, convincing him that the air outside is poisonous. After a visit from his estranged father, circumstances force Bubby into the waiting world, a place which is just as unusual to him as he is to the world.","id":"14135","runtime":114,"imdbId":"tt0106341","trailer":"http:\/\/www.youtube.com\/watch?v=YXZ4u2ZVWOc","version":215,"lastModified":"1302011464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/160\/4d9902985e73d635cc000160\/bad-boy-bubby-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"Bad Boy Bubby","releaseDate":746841600000,"language":"en","type":"Movie","_key":"58146"} +{"label":"Nicholas Hope","version":24,"id":"81172","lastModified":"1301902175000","name":"Nicholas Hope","type":"Person","_key":"58147"} +{"label":"The Love Bug","description":"Herbie is a car - but no ordinary car. The story follows the Volkswagen Beetle with a mind of its own from the showroom to the race track, with various close escapes in between. Three further Herbie movies were to follow.","id":"14136","runtime":107,"imdbId":"tt0064603","version":136,"lastModified":"1301903221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c84\/4bc9415f017a3c57fe01bc84\/the-love-bug-mid.jpg","genre":"Comedy","title":"The Love Bug","releaseDate":-25401600000,"language":"en","tagline":"Herbie will honk his way into your heart.","type":"Movie","_key":"58148"} +{"label":"Benson Fong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c754d557b9aa16a07000012\/benson-fong-profile.jpg","version":34,"id":"91254","lastModified":"1301902513000","name":"Benson Fong","type":"Person","_key":"58149"} +{"label":"Andy Granatelli","version":21,"id":"118924","lastModified":"1301902708000","name":"Andy Granatelli","type":"Person","_key":"58150"} +{"label":"Beer League","description":"An unemployed slacker (Lange) inspires his softball teammates to improve their game so they won't get kicked out of the local league.","id":"14137","runtime":86,"imdbId":"tt0453453","trailer":"http:\/\/www.youtube.com\/watch?v=vtPPLXujvzk","homepage":"http:\/\/www.beerleaguethemovie.com\/","version":229,"lastModified":"1301496840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8d\/4bc9415f017a3c57fe01bc8d\/beer-league-mid.jpg","studio":"Identity Films","genre":"Comedy","title":"Beer League","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"58151"} +{"label":"Anthony DeSando","version":13,"id":"176628","lastModified":"1301903336000","name":"Anthony DeSando","type":"Person","_key":"58152"} +{"label":"Jimmy Palumbo","version":13,"id":"157059","lastModified":"1301903578000","name":"Jimmy Palumbo","type":"Person","_key":"58153"} +{"label":"Elizabeth Regen","version":21,"id":"122230","lastModified":"1301903044000","name":"Elizabeth Regen","type":"Person","_key":"58154"} +{"label":"Maddie Corman","version":20,"id":"121757","lastModified":"1301902481000","name":"Maddie Corman","type":"Person","_key":"58155"} +{"label":"Frank Sebastiano","version":19,"id":"111745","lastModified":"1301902379000","name":"Frank Sebastiano","type":"Person","_key":"58156"} +{"label":"Black Water","description":"A terrifying tale of survival in the mangrove swamps of Northern Australia.","id":"14138","runtime":90,"imdbId":"tt0816436","version":402,"lastModified":"1301903507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c96\/4bc94160017a3c57fe01bc96\/black-water-mid.jpg","studio":"Australian Film Commission","genre":"Horror","title":"Black Water","releaseDate":1208995200000,"language":"en","type":"Movie","_key":"58157"} +{"label":"Andrew Traucki","version":22,"id":"81328","lastModified":"1301901853000","name":"Andrew Traucki","type":"Person","_key":"58158"} +{"label":"David Nerlich","version":20,"id":"81327","lastModified":"1301901510000","name":"David Nerlich","type":"Person","_key":"58159"} +{"label":"Diana Glenn","version":18,"id":"79126","lastModified":"1301901593000","name":"Diana Glenn","type":"Person","_key":"58160"} +{"label":"Maeve Dermody","version":22,"id":"81331","lastModified":"1301901268000","name":"Maeve Dermody","type":"Person","_key":"58161"} +{"label":"Andy Rodoreda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c5\/4ca687965e73d643eb0000c5\/andy-rodoreda-profile.jpg","version":27,"id":"81332","lastModified":"1301901695000","name":"Andy Rodoreda","type":"Person","_key":"58162"} +{"label":"Ben Oxenbould","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/31f\/4bf9e66a017a3c703300031f\/ben-oxenbould-profile.jpg","version":21,"id":"81333","lastModified":"1301901949000","name":"Ben Oxenbould","type":"Person","_key":"58163"} +{"label":"Timecrimes","description":"A man accidentally gets into a time machine and travels back in time nearly an hour. Finding himself will be the first of a series of disasters of unforeseeable consequences.","id":"14139","runtime":88,"imdbId":"tt0480669","homepage":"http:\/\/www.cronocrimenes.com\/","version":125,"lastModified":"1301903082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9f\/4bc94160017a3c57fe01bc9f\/los-cronocrimenes-mid.jpg","studio":"Ibarretxe & Co. S.L.","genre":"Indie","title":"Timecrimes","releaseDate":1190246400000,"language":"en","type":"Movie","_key":"58164"} +{"label":"Nacho Vigalondo","version":23,"id":"118303","lastModified":"1301903064000","name":"Nacho Vigalondo","type":"Person","_key":"58165"} +{"label":"Candela Fern\u00e1ndez","version":22,"id":"125286","lastModified":"1301903066000","name":"Candela Fern\u00e1ndez","type":"Person","_key":"58166"} +{"label":"B\u00e1rbara Goenaga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/351\/4c437b0b7b9aa14590000351\/barbara-goenaga-profile.jpg","version":29,"id":"125287","lastModified":"1301903058000","name":"B\u00e1rbara Goenaga","type":"Person","_key":"58167"} +{"label":"Herbie Goes To Monte Carlo","description":"Herbie, the Volkswagen Beetle with a mind of its own, is racing in the Monte Carlo Rally. But thieves have hidden a cache of stolen diamonds in Herbie's gas tank, and are now trying to get them back.","id":"14140","runtime":105,"imdbId":"tt0076137","version":192,"lastModified":"1301903788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca8\/4bc94161017a3c57fe01bca8\/herbie-goes-to-monte-carlo-mid.jpg","genre":"Comedy","title":"Herbie Goes To Monte Carlo","releaseDate":235958400000,"language":"en","type":"Movie","_key":"58168"} +{"label":"Julie Sommars","version":22,"id":"76411","lastModified":"1301901677000","name":"Julie Sommars","type":"Person","_key":"58169"} +{"label":"Balls Out: The Gary Houseman Story","description":"An overenthusiastic high-school maintenance man attempts to lead an unlikely group of misfits to the Nebraska state tennis championship in Dude, Where's My Car? director Danny Leiner's underdog sports comedy. American Pie star Seann William Scott stars as the ambitious janitor who believes he has what it takes to coach the winning team.","id":"14141","runtime":87,"imdbId":"tt0787470","trailer":"http:\/\/www.youtube.com\/watch?v=knBnjg0-qH8","version":85,"lastModified":"1301902977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a87\/4d77ad3d7b9aa15c7c000a87\/balls-out-the-gary-houseman-story-mid.jpg","studio":"O.N.C. Entertainment","genre":"Comedy","title":"Balls Out: The Gary Houseman Story","releaseDate":1230768000000,"language":"en","tagline":"Small balls. Big ambition.","type":"Movie","_key":"58170"} +{"label":"Allen Evangelista","version":22,"id":"76412","lastModified":"1301901866000","name":"Allen Evangelista","type":"Person","_key":"58171"} +{"label":"Emilee Wallace","version":21,"id":"76413","lastModified":"1301901720000","name":"Emilee Wallace","type":"Person","_key":"58172"} +{"label":"Columbus Day","description":"A thief tries to fix the damage done during the biggest heist of his career.","id":"14142","runtime":90,"imdbId":"tt1015976","version":189,"lastModified":"1301904337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccf\/4bc94166017a3c57fe01bccf\/columbus-day-mid.jpg","studio":"Bert Marcus Productions","genre":"Action","title":"Columbus Day","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"58173"} +{"label":"Mark Kelly","version":21,"id":"84897","lastModified":"1301902245000","name":"Mark Kelly","type":"Person","_key":"58174"} +{"label":"Shelley Malil","version":19,"id":"84898","lastModified":"1301902465000","name":"Shelley Malil","type":"Person","_key":"58175"} +{"label":"Melissa Bacelar","version":22,"id":"84899","lastModified":"1301902152000","name":"Melissa Bacelar","type":"Person","_key":"58176"} +{"label":"David Winston Barge","version":19,"id":"84900","lastModified":"1301902465000","name":"David Winston Barge","type":"Person","_key":"58177"} +{"label":"Bryan Hanna","version":20,"id":"84901","lastModified":"1301902486000","name":"Bryan Hanna","type":"Person","_key":"58178"} +{"label":"Rocco Passafaro","version":19,"id":"84902","lastModified":"1301902245000","name":"Rocco Passafaro","type":"Person","_key":"58179"} +{"label":"Larrs Jackson","version":19,"id":"84903","lastModified":"1301902465000","name":"Larrs Jackson","type":"Person","_key":"58180"} +{"label":"Miles Platt","version":19,"id":"84904","lastModified":"1301902070000","name":"Miles Platt","type":"Person","_key":"58181"} +{"label":"Marc Schaffer","version":20,"id":"84905","lastModified":"1301904120000","name":"Marc Schaffer","type":"Person","_key":"58182"} +{"label":"Charles Burmeister","version":16,"id":"111414","lastModified":"1301902634000","name":"Charles Burmeister","type":"Person","_key":"58183"} +{"label":"The Cycle","description":"While traveling from California to Bangor through a lonely road, Carrie Mitchel is advised by the gas station attendant Jimmy to rest in a hotel; however, she decides to continue driving through the night and almost hits a wounded teenage girl with blood on her face. She gives a lift to the girl and listens to the tale of her passenger and her friends.","id":"14143","runtime":89,"imdbId":"tt1153102","version":110,"lastModified":"1301905396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/861\/4d4ddd4f5e73d617c7002861\/the-cycle-mid.jpg","title":"The Cycle","releaseDate":1211155200000,"language":"en","type":"Movie","_key":"58184"} +{"label":"Daddy Day Camp","description":"Directed by one-time child star Fred Savage, Daddy Day Camp, the sequel to Eddie Murphy's Daddy Day Care, stars Cuba Gooding Jr. and Paul Rae as Charlie Hinton and Phil Ryerson, a pair of fathers who attempt to keep their summer camp afloat even though they are under dire economic strain. In order to help improve the financial situation, and to whip together a group of children who have a problem.","id":"14144","runtime":89,"imdbId":"tt0462244","homepage":"http:\/\/www.sonypictures.com\/movies\/daddydaycamp\/site\/","version":294,"lastModified":"1302038851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce7\/4bc94168017a3c57fe01bce7\/daddy-day-camp-mid.jpg","studio":"Tristar Pictures","genre":"Comedy","title":"Daddy Day Camp","releaseDate":1186531200000,"language":"en","tagline":"The summer is going to be in tents.","type":"Movie","_key":"58185"} +{"label":"Dark Floors","description":"A man emerges with his autistic daughter and three others from a hospital elevator to find themselves trapped in the building with devilish monsters.","id":"14145","runtime":87,"imdbId":"tt0985025","version":191,"lastModified":"1301905022000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf4\/4bc9416a017a3c57fe01bcf4\/dark-floors-mid.jpg","genre":"Horror","title":"Dark Floors","releaseDate":1202256000000,"language":"en","type":"Movie","_key":"58186"} +{"label":"Dominique McElligott","version":24,"id":"115146","lastModified":"1301901232000","name":"Dominique McElligott","type":"Person","_key":"58187"} +{"label":"Pete Riski","version":17,"id":"130790","lastModified":"1301902223000","name":"Pete Riski","type":"Person","_key":"58188"} +{"label":"DeVour","description":"In Cheever Lake, the twenty-one years old Jake Gray has bloody nightmares while awake. His friends Conrad Dean and Dakota apply him in a weird game called \"The Pathway\". Jake begins to mix reality with daydreams, while his closest friends die. Jake blames the game, which might be connected to the devil, for the deaths of his friends and decides to investigate the mystery.","id":"14147","runtime":90,"imdbId":"tt0406706","version":123,"lastModified":"1301905189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfd\/4bc9416a017a3c57fe01bcfd\/devour-mid.jpg","genre":"Horror","title":"DeVour","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58189"} +{"label":"Jensen Ackles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4cf19bf17b9aa1449b000021\/jensen-ackles-profile.jpg","version":32,"id":"49624","lastModified":"1301901178000","name":"Jensen Ackles","type":"Person","_key":"58190"} +{"label":"The Flock","description":"This film is about a hyper-vigilant employee of the department of public safety who, while training his young female replacement, has to track down a missing girl who he is convinced is connected to a paroled sex offender he is investigating.","id":"14148","runtime":105,"imdbId":"tt0473356","trailer":"http:\/\/www.youtube.com\/watch?v=1634","version":161,"lastModified":"1301905189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d06\/4bc9416b017a3c57fe01bd06\/the-flock-mid.jpg","studio":"Bauer Martinez Studios","genre":"Crime","title":"The Flock","releaseDate":1186185600000,"language":"en","type":"Movie","_key":"58191"} +{"label":"The Four Horsemen","description":"Four high school football stars enlist in the Marines and head off to fight in the war in Iraq. When one of them is killed and another wounded, they return home only to find is extremely difficult to pick up the threads of their old lives. The memories of events in Iraq combined with the lack of public support pushes many of these men to the breaking point.","id":"14149","runtime":118,"imdbId":"tt1196630","version":153,"lastModified":"1301355464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1eb\/4c1e23f57b9aa11e950001eb\/the-four-horsemen-mid.jpg","genre":"Drama","title":"The Four Horsemen","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"58192"} +{"label":"Thru the Moebius Strip","description":"In the not-too-distant future, a young boy travels to an alien world to find his father and learn of his destiny.","id":"14152","runtime":0,"imdbId":"tt0267024","version":73,"lastModified":"1301903459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2e\/4bc94170017a3c57fe01bd2e\/thru-the-moebius-strip-mid.jpg","genre":"Family","title":"Thru the Moebius Strip","releaseDate":1135900800000,"language":"en","type":"Movie","_key":"58193"} +{"label":"Glenn Chaika","version":14,"id":"150047","lastModified":"1301903126000","name":"Glenn Chaika","type":"Person","_key":"58194"} +{"label":"WarGames: The Dead Code","description":"Computer hacker Will Farmer (Lanter) engages a government super-computer named Ripley in an online terrorist-attack simulation game. Little does Farmer know that Ripley has been designed to appeal to potential terrorists, and certain software glitches have in turn made him become paranoid.","id":"14154","runtime":96,"imdbId":"tt0865957","version":204,"lastModified":"1301903654000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d40\/4bc94171017a3c57fe01bd40\/wargames-the-dead-code-mid.jpg","genre":"Drama","title":"WarGames: The Dead Code","releaseDate":1217289600000,"language":"en","tagline":"Are you ready to play?","type":"Movie","_key":"58195"} +{"label":"Amanda Walsh","version":36,"id":"76416","lastModified":"1301901510000","name":"Amanda Walsh","type":"Person","_key":"58196"} +{"label":"Gary Reineke","version":27,"id":"76417","lastModified":"1301901562000","name":"Gary Reineke","type":"Person","_key":"58197"} +{"label":"Impact Point","description":"Pro Beach Volleyball star, Kelly Reyes, faces challenges everyday, fierce competitors, the press, but nothing could prepare her for him.","id":"14156","runtime":90,"imdbId":"tt1086841","version":222,"lastModified":"1301905953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d49\/4bc94172017a3c57fe01bd49\/impact-point-mid.jpg","genre":"Suspense","title":"Impact Point","releaseDate":1213315200000,"language":"en","type":"Movie","_key":"58198"} +{"label":"Melissa Keller","version":20,"id":"122442","lastModified":"1301902525000","name":"Melissa Keller","type":"Person","_key":"58199"} +{"label":"Ron Rogg\u00e9","version":21,"id":"94149","lastModified":"1301902204000","name":"Ron Rogg\u00e9","type":"Person","_key":"58200"} +{"label":"Impulse","description":"No overview found.","id":"14157","runtime":0,"imdbId":"tt0087464","trailer":"http:\/\/www.youtube.com\/watch?v=NaIWtTj6c_M","version":104,"lastModified":"1301908298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4e\/4bc94172017a3c57fe01bd4e\/impulse-mid.jpg","genre":"Mystery","title":"Impulse","releaseDate":465177600000,"language":"en","type":"Movie","_key":"58201"} +{"label":"Amy Stryker","version":16,"id":"136990","lastModified":"1301902407000","name":"Amy Stryker","type":"Person","_key":"58202"} +{"label":"Jackass 2.5","description":"The crew have now set off to finish what as left over from Jackass 2.0, and in this version they have Wee Man use a 'pee' gun on themselves, having a mini motor bike fracas in the grocery mall, a sperm test, a portly crew member disguised as King Kong, as well as include three episodes of their hilarious adventures in India.","id":"14158","runtime":64,"imdbId":"tt1117523","version":212,"lastModified":"1301905373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4d7feaf77b9aa12db7000035\/jackass-2-5-mid.jpg","genre":"Comedy","title":"Jackass 2.5","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58203"} +{"label":"Aaja Nachle","description":"Diya (Madhuri Dixit) is a divorced mother living in New York and must go back to India after she receives news that her dance guru is on his deathbed. When she arrives in Shamli, a small city in western Uttar Pradesh, she finds that he has died and left her the responsibility of saving and reviving the Ajanta Theater where she used to dance.","id":"14159","runtime":147,"imdbId":"tt0986213","version":178,"lastModified":"1301907204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d60\/4bc94173017a3c57fe01bd60\/aaja-nachle-mid.jpg","studio":"Yash Raj Films","genre":"Romance","title":"Aaja Nachle","releaseDate":1196380800000,"language":"en","type":"Movie","_key":"58204"} +{"label":"Konkona Sen Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55b\/4d32be547b9aa177db00555b\/konkona-sen-sharma-profile.jpg","version":42,"birthday":"313023600000","id":"85666","birthplace":"New Delhi, India","lastModified":"1301901372000","name":"Konkona Sen Sharma","type":"Person","_key":"58205"} +{"label":"Felix D'Alviella","version":22,"id":"125199","lastModified":"1301902513000","name":"Felix D'Alviella","type":"Person","_key":"58206"} +{"label":"Raghuvir Yadav","version":19,"id":"76445","lastModified":"1301902225000","name":"Raghuvir Yadav","type":"Person","_key":"58207"} +{"label":"Ranvir Shorey","version":30,"id":"85451","lastModified":"1301902326000","name":"Ranvir Shorey","type":"Person","_key":"58208"} +{"label":"Dalai","version":22,"id":"125200","lastModified":"1301902513000","name":"Dalai","type":"Person","_key":"58209"} +{"label":"Yashpal Sharma","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c1\/4d32b0f07b9aa17af80050c1\/yashpal-sharma-profile.jpg","version":28,"id":"86022","lastModified":"1301902391000","name":"Yashpal Sharma","type":"Person","_key":"58210"} +{"label":"Nowaz","version":22,"id":"125201","lastModified":"1301902513000","name":"Nowaz","type":"Person","_key":"58211"} +{"label":"Darshan Jariwala","version":20,"id":"125202","lastModified":"1301902167000","name":"Darshan Jariwala","type":"Person","_key":"58212"} +{"label":"Uttara Baokar","version":22,"id":"125204","lastModified":"1301902513000","name":"Uttara Baokar","type":"Person","_key":"58213"} +{"label":"Anil Mehta","version":24,"id":"35738","lastModified":"1301901507000","name":"Anil Mehta","type":"Person","_key":"58214"} +{"label":"Up","description":"After a lifetime of dreaming of traveling the world, 78-year-old homebody Carl flies away on an unbelievable adventure with Russell, an 8-year-old Wilderness Explorer, unexpectedly in tow. Together, the unlikely pair embarks on a thrilling odyssey full of jungle beasts and rough terrain.","id":"14160","runtime":96,"imdbId":"tt1049413","trailer":"http:\/\/www.youtube.com\/watch?v=q0mq4_bgyPs","homepage":"http:\/\/disney.go.com\/disneypictures\/up\/","version":472,"lastModified":"1301900985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55f\/4cca4c5b5e73d6502300055f\/up-mid.jpg","studio":"Pixar Animation Studios","genre":"Adventure","title":"Up","releaseDate":1242172800000,"language":"en","type":"Movie","_key":"58215"} +{"label":"Jordan Nagai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/68c\/4cd880207b9aa113ac00068c\/jordan-nagai-profile.jpg","version":39,"birthday":"949705200000","id":"80676","birthplace":"Los Angeles, California, USA","lastModified":"1301904070000","name":"Jordan Nagai","type":"Person","_key":"58216"} +{"label":"Josh Cooley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a8\/4d33563f5e73d6334d0020a8\/josh-cooley-profile.jpg","version":37,"id":"84496","lastModified":"1301904077000","name":"Josh Cooley","type":"Person","_key":"58217"} +{"label":"Jeremy Leary","version":36,"id":"84492","lastModified":"1301904082000","name":"Jeremy Leary","type":"Person","_key":"58218"} +{"label":"Elie Docter","version":36,"id":"84491","lastModified":"1301904088000","name":"Elie Docter","type":"Person","_key":"58219"} +{"label":"Mickie McGowan","version":36,"id":"84493","lastModified":"1301904084000","name":"Mickie McGowan","type":"Person","_key":"58220"} +{"label":"Donald Fullilove","version":36,"id":"84494","lastModified":"1301904082000","name":"Donald Fullilove","type":"Person","_key":"58221"} +{"label":"Jess Harnell","version":38,"id":"84495","lastModified":"1301904083000","name":"Jess Harnell","type":"Person","_key":"58222"} +{"label":"Jerome Ranft","version":59,"id":"7960","lastModified":"1301901081000","name":"Jerome Ranft","type":"Person","_key":"58223"} +{"label":"2012","description":"Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" ","id":"14161","runtime":158,"imdbId":"tt1190080","trailer":"http:\/\/www.youtube.com\/watch?v=sFXGrTng0gQ","homepage":"http:\/\/www.sonypictures.com\/movies\/2012\/","version":412,"lastModified":"1301900784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e78\/4cd10b8d5e73d65020000e78\/2012-mid.jpg","studio":"Centropolis Entertainment","genre":"Action","title":"2012","releaseDate":1258070400000,"language":"en","tagline":"We Were Warned.","type":"Movie","_key":"58224"} +{"label":"Liam James","version":32,"id":"83852","lastModified":"1301904080000","name":"Liam James","type":"Person","_key":"58225"} +{"label":"Beatrice Rosen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4bf88ba3017a3c49010000ec\/beatrice-rosen-profile.jpg","version":22,"birthday":"249606000000","id":"101014","birthplace":"New York City, New York, USA","lastModified":"1301901107000","name":"Beatrice Rosen","type":"Person","_key":"58226"} +{"label":"Osric Chau","version":21,"id":"101016","lastModified":"1301904087000","name":"Osric Chau","type":"Person","_key":"58227"} +{"label":"Lisa Lu","version":30,"id":"86633","lastModified":"1301904083000","name":"Lisa Lu","type":"Person","_key":"58228"} +{"label":"Johann Urb","version":24,"id":"101017","lastModified":"1301904087000","name":"Johann Urb","type":"Person","_key":"58229"} +{"label":"Ryan McDonald","version":13,"id":"153516","lastModified":"1301903417000","name":"Ryan McDonald","type":"Person","_key":"58230"} +{"label":"Jhoom Barabar Jhoom","description":"No overview found.","id":"14162","runtime":138,"imdbId":"tt0833476","version":106,"lastModified":"1301907236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0d\/4bc94195017a3c57fe01be0d\/jhoom-barabar-jhoom-mid.jpg","studio":"Yash Raj Films","genre":"Romance","title":"Jhoom Barabar Jhoom","releaseDate":1181865600000,"language":"en","type":"Movie","_key":"58231"} +{"label":"Shaad Ali","version":18,"id":"76446","lastModified":"1301902356000","name":"Shaad Ali","type":"Person","_key":"58232"} +{"label":"Chak De! India","description":"Chak De! India follows a team of rag-tag girls with their own agenda who form Team India competing for international fame in field hockey. Their coach, the ex mens Indian National team captain, returns from a life of shame after being accused of match fixing in his last match. Can he give the girls the motivation required to win, while dealing with the shadows of his own past?","id":"14163","runtime":153,"imdbId":"tt0871510","homepage":"http:\/\/www.yashrajfilms.com\/microsites\/cdi\/cdi.html","version":195,"lastModified":"1301906607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1e\/4bc94196017a3c57fe01be1e\/chak-de-india-mid.jpg","studio":"Yash Raj Films","genre":"Drama","title":"Chak De! India","releaseDate":1186704000000,"language":"en","type":"Movie","_key":"58233"} +{"label":"Shimit Amin","version":23,"id":"76447","lastModified":"1301901720000","name":"Shimit Amin","type":"Person","_key":"58234"} +{"label":"Anaitha Nair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a79\/4d2147ad5e73d66b30002a79\/anaitha-nair-profile.jpg","version":18,"id":"110154","lastModified":"1301902040000","name":"Anaitha Nair","type":"Person","_key":"58235"} +{"label":"Tanya Abrol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ada\/4d21476f5e73d66b34002ada\/tanya-abrol-profile.jpg","version":17,"id":"110155","lastModified":"1301902351000","name":"Tanya Abrol","type":"Person","_key":"58236"} +{"label":"Shilpa Shukla","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aef\/4d2147fc5e73d66b2d002aef\/shilpa-shukla-profile.jpg","version":21,"id":"86424","lastModified":"1301902208000","name":"Shilpa Shukla","type":"Person","_key":"58237"} +{"label":"Arya Menon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b0b\/4d2148a35e73d66b34002b0b\/arya-menon-profile.jpg","version":17,"id":"110156","lastModified":"1301901526000","name":"Arya Menon","type":"Person","_key":"58238"} +{"label":"Shubhi Mehta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aa6\/4d2148f85e73d66b30002aa6\/shubhi-mehta-profile.jpg","version":17,"id":"110157","lastModified":"1301901526000","name":"Shubhi Mehta","type":"Person","_key":"58239"} +{"label":"Chitrashi Rawat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/389\/4d2149315e73d659b7000389\/chitrashi-rawat-profile.jpg","version":21,"id":"85884","lastModified":"1301902040000","name":"Chitrashi Rawat","type":"Person","_key":"58240"} +{"label":"Kimi Laldawla","version":16,"id":"110158","lastModified":"1301902070000","name":"Kimi Laldawla","type":"Person","_key":"58241"} +{"label":"Masochon V. Zimik","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b95\/4d214f245e73d66b2b002b95\/masochon-v-zimik-profile.jpg","version":18,"id":"110159","lastModified":"1301901844000","name":"Masochon V. Zimik","type":"Person","_key":"58242"} +{"label":"Sandia Furtado","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd2\/4d2154aa5e73d66b2b002bd2\/sandia-furtado-profile.jpg","version":17,"id":"110160","lastModified":"1301901599000","name":"Sandia Furtado","type":"Person","_key":"58243"} +{"label":"Nichola Sequeira","version":16,"id":"110161","lastModified":"1301902070000","name":"Nichola Sequeira","type":"Person","_key":"58244"} +{"label":"Sagarika Ghatge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b2e\/4d214c1d5e73d66b2d002b2e\/sagarika-ghatge-profile.jpg","version":22,"id":"88438","lastModified":"1301902208000","name":"Sagarika Ghatge","type":"Person","_key":"58245"} +{"label":"Kimberly Miranda","version":16,"id":"110162","lastModified":"1301902070000","name":"Kimberly Miranda","type":"Person","_key":"58246"} +{"label":"Seema Azmi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7a\/4d214cbf5e73d66b2b002b7a\/seema-azmi-profile.jpg","version":17,"id":"110163","lastModified":"1301901844000","name":"Seema Azmi","type":"Person","_key":"58247"} +{"label":"Raynia Mascerhanas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac0\/4d2154505e73d66b27002ac0\/raynia-mascerhanas-profile.jpg","version":17,"id":"110164","lastModified":"1301901700000","name":"Raynia Mascerhanas","type":"Person","_key":"58248"} +{"label":"Nisha Nair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b4f\/4d214ee75e73d66b2d002b4f\/nisha-nair-profile.jpg","version":17,"id":"110165","lastModified":"1301901844000","name":"Nisha Nair","type":"Person","_key":"58249"} +{"label":"Vidya Malvade","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b40\/4d214f765e73d66b34002b40\/vidya-malvade-profile.jpg","version":22,"id":"86066","lastModified":"1301901700000","name":"Vidya Malvade","type":"Person","_key":"58250"} +{"label":"Dragonball Evolution","description":"The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.","id":"14164","runtime":100,"imdbId":"tt1098327","trailer":"http:\/\/www.youtube.com\/watch?v=Vgp4UlXSjBQ","version":263,"lastModified":"1301902152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41a\/4bfa9b8a017a3c703700041a\/dragonball-evolution-mid.jpg","studio":"Dune Entertainment","genre":"Action","title":"Dragonball Evolution","releaseDate":1239148800000,"language":"en","type":"Movie","_key":"58251"} +{"label":"Joon Park","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/927\/4d2764e77b9aa134e0001927\/joon-park-profile.jpg","version":22,"id":"78323","lastModified":"1301901191000","name":"Joon Park","type":"Person","_key":"58252"} +{"label":"Jamie Chung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4d7142245e73d63cb0000028\/jamie-chung-profile.jpg","version":61,"id":"78324","lastModified":"1301957662000","name":"Jamie Chung","type":"Person","_key":"58253"} +{"label":"Shavon Kirksey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92f\/4d2765477b9aa134e000192f\/shavon-kirksey-profile.jpg","version":22,"id":"78325","lastModified":"1301901700000","name":"Shavon Kirksey","type":"Person","_key":"58254"} +{"label":"Eriko Tamura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a19\/4d2765ad7b9aa134dc001a19\/eriko-tamura-profile.jpg","version":24,"id":"37492","lastModified":"1301901526000","name":"Eriko Tamura","type":"Person","_key":"58255"} +{"label":"Luis Arrieta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9ef\/4d2767267b9aa134cb0019ef\/luis-arrieta-profile.jpg","version":22,"id":"78326","lastModified":"1301901772000","name":"Luis Arrieta","type":"Person","_key":"58256"} +{"label":"Richard Blake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9f7\/4d2767707b9aa134cb0019f7\/richard-blake-profile.jpg","version":21,"id":"78327","lastModified":"1301901646000","name":"Richard Blake","type":"Person","_key":"58257"} +{"label":"Julian Sedgwick","version":20,"id":"78328","lastModified":"1301901548000","name":"Julian Sedgwick","type":"Person","_key":"58258"} +{"label":"Megumi Seki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d61\/4d27bf367b9aa134cb001d61\/megumi-seki-profile.jpg","version":17,"id":"147880","lastModified":"1301902550000","name":"Megumi Seki","type":"Person","_key":"58259"} +{"label":"Ta Ra Rum Pum","description":"No overview found.","id":"14165","runtime":156,"imdbId":"tt0833553","version":103,"lastModified":"1301905188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e70\/4bc941a2017a3c57fe01be70\/ta-ra-rum-pum-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Ta Ra Rum Pum","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"58260"} +{"label":"Siddharth Anand","version":30,"id":"35785","lastModified":"1301901368000","name":"Siddharth Anand","type":"Person","_key":"58261"} +{"label":"Pretty Persuasion","description":"A 15-year-old girl incites chaos among her friends and a media frenzy when she accuses her drama teacher of sexual harassment.","id":"14166","runtime":105,"imdbId":"tt0381505","version":138,"lastModified":"1301904301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e79\/4bc941a2017a3c57fe01be79\/pretty-persuasion-mid.jpg","genre":"Comedy","title":"Pretty Persuasion","releaseDate":1106352000000,"language":"en","type":"Movie","_key":"58262"} +{"label":"Standing Still","description":"Standing Still is the story of a popular yet drunken actor who reconnects with a group of his college friends for a wedding several years after graduation.","id":"14167","runtime":90,"imdbId":"tt0360016","version":169,"lastModified":"1301905392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc941a6017a3c57fe01be82\/standing-still-mid.jpg","genre":"Comedy","title":"Standing Still","releaseDate":1104624000000,"language":"en","type":"Movie","_key":"58263"} +{"label":"3:10 To Yuma","description":"The Lonesome Whistle of a Train... bringing the gallows closer to a desperado--the showdown nearer to his captor! ","id":"14168","runtime":92,"imdbId":"tt0050086","version":334,"lastModified":"1301903205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e93\/4bc941a7017a3c57fe01be93\/3-10-to-yuma-mid.jpg","genre":"Action","title":"3:10 To Yuma","releaseDate":-391392000000,"language":"en","type":"Movie","_key":"58264"} +{"label":"Felicia Farr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4bf5991c017a3c773000007d\/felicia-farr-profile.jpg","version":21,"id":"76979","lastModified":"1301901779000","name":"Felicia Farr","type":"Person","_key":"58265"} +{"label":"Leora Dana","version":25,"id":"76980","lastModified":"1301901530000","name":"Leora Dana","type":"Person","_key":"58266"} +{"label":"Delmer Daves","version":57,"id":"76981","lastModified":"1301901463000","name":"Delmer Daves","type":"Person","_key":"58267"} +{"label":"Arizona Colt","description":"No overview found.","id":"14169","runtime":118,"imdbId":"tt0060124","version":565,"lastModified":"1301907731000","genre":"Western","title":"Arizona Colt","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58268"} +{"label":"Funny Farm","description":"Chevy Chase stars as Andy Farmer, a sportswriter who moves with his schoolteacher wife Elizabeth (Madolyn Smith) to the country in order to write a novel in relative seclusion. Of course, seclusion is the last thing the Farmers find in the small, eccentric town, where disaster awaits them at every turn.","id":"14170","runtime":101,"imdbId":"tt0095188","version":169,"lastModified":"1301904127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33b\/4d3e06315e73d622d100133b\/funny-farm-mid.jpg","genre":"Comedy","title":"Funny Farm","releaseDate":581299200000,"language":"en","type":"Movie","_key":"58269"} +{"label":"Kevin O'Morrison","version":21,"id":"77022","lastModified":"1301901586000","name":"Kevin O'Morrison","type":"Person","_key":"58270"} +{"label":"Caris Corfman","version":21,"id":"77024","lastModified":"1301902136000","name":"Caris Corfman","type":"Person","_key":"58271"} +{"label":"William Severs","version":20,"id":"77025","lastModified":"1301901942000","name":"William Severs","type":"Person","_key":"58272"} +{"label":"Kit Le Fever","version":20,"id":"77026","lastModified":"1301902136000","name":"Kit Le Fever","type":"Person","_key":"58273"} +{"label":"Dakin Matthews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/980\/4d43ec487b9aa15bbb005980\/dakin-matthews-profile.jpg","version":46,"id":"43364","lastModified":"1301901313000","name":"Dakin Matthews","type":"Person","_key":"58274"} +{"label":"William Newman","version":25,"id":"77027","lastModified":"1301902136000","name":"William Newman","type":"Person","_key":"58275"} +{"label":"Home of the Brave","description":"The day after they get the word they'll go home in two weeks, a group of soldiers from Spokane are ambushed in an Iraqi city. Back stateside we follow four of them - a surgeon who saw too much, a teacher who's a single mom and who lost a hand in the ambush, an infantry man whose best friend died that day, and a soldier who keeps reliving the moment he killed a civilian woman. ","id":"14171","runtime":106,"imdbId":"tt0763840","version":384,"lastModified":"1301904513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb1\/4bc941a9017a3c57fe01beb1\/home-of-the-brave-mid.jpg","genre":"Action","title":"Home of the Brave","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"58276"} +{"label":"James MacDonald","version":40,"id":"137461","lastModified":"1301902034000","name":"James MacDonald","type":"Person","_key":"58277"} +{"label":"Jack Serino","version":19,"id":"22233","lastModified":"1301903114000","name":"Jack Serino","type":"Person","_key":"58278"} +{"label":"Wake of Death","description":"Action superstar, Jean-Claude Van Damme (Universal Soldier, Street Fighter), is back and at his hard-hitting best as Ben Archer, an ex-mob enforcer seeking revenge against a ruthless Chinese kingpin responsible for his wife's brutal murder.\r\n\r\nWhen Archer joins forces with his old underworld friends, an all-out war is waged against the Chinese Triad in this pulse-pounding action thriller.","id":"14172","runtime":87,"imdbId":"tt0367478","version":153,"lastModified":"1301903455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebe\/4bc941aa017a3c57fe01bebe\/wake-of-death-mid.jpg","studio":"Bauer Martinez Studios","genre":"Action","title":"Wake of Death","releaseDate":1104192000000,"language":"en","type":"Movie","_key":"58279"} +{"label":"Valerie Tian","version":27,"id":"82791","lastModified":"1301902245000","name":"Valerie Tian","type":"Person","_key":"58280"} +{"label":"Philippe Martinez","version":37,"id":"40282","lastModified":"1301901645000","name":"Philippe Martinez","type":"Person","_key":"58281"} +{"label":"Princess","description":"No overview found.","id":"14173","runtime":90,"imdbId":"tt0419073","trailer":"http:\/\/www.youtube.com\/watch?v=1741","version":103,"lastModified":"1301905393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecb\/4bc941ac017a3c57fe01becb\/princess-mid.jpg","studio":"Zentropa Entertainments","genre":"Animation","title":"Princess","releaseDate":1150416000000,"language":"en","type":"Movie","_key":"58282"} +{"label":"Anders Morgenthaler","version":23,"id":"82566","lastModified":"1301902040000","name":"Anders Morgenthaler","type":"Person","_key":"58283"} +{"label":"Lie with Me","description":"An outgoing, sexually aggressive young woman meets and begins a torrid affair with an equally aggressive young man in which their affair begins to bring a strain on their personal lives.","id":"14174","runtime":93,"imdbId":"tt0418832","version":98,"lastModified":"1301902272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed8\/4bc941ae017a3c57fe01bed8\/lie-with-me-mid.jpg","genre":"Drama","title":"Lie with Me","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58284"} +{"label":"Valiant","description":"The animated comedy tells the story of a lowly wood pigeon named Valiant, who overcomes his small size to become a hero in Great Britain's Royal Air Force Homing Pigeon Service during World War II. The RHPS advanced the Allied cause by flying vital messages about enemy movements across the English Channel, whilst evading brutal attacks by the enemy's Falcon Brigade.","id":"14175","runtime":76,"imdbId":"tt0361089","version":177,"lastModified":"1302068432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef9\/4bc941b3017a3c57fe01bef9\/valiant-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"Valiant","releaseDate":1124409600000,"language":"en","type":"Movie","_key":"58285"} +{"label":"Gary Chapman","version":21,"id":"80691","lastModified":"1302068432000","name":"Gary Chapman","type":"Person","_key":"58286"} +{"label":"Beauty Shop","description":"You thought you'd heard it all in the barbershop, but you haven't heard anything yet - the women get their own chance to shampoo, shine, and speak their minds in Beauty Shop.","id":"14177","runtime":105,"imdbId":"tt0388500","version":117,"lastModified":"1301903680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f02\/4bc941b4017a3c57fe01bf02\/beauty-shop-mid.jpg","genre":"Comedy","title":"Beauty Shop","releaseDate":1117670400000,"language":"en","tagline":"A Cut Above","type":"Movie","_key":"58287"} +{"label":"Golden Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4d7ffb5c7b9aa12da6000128\/golden-brooks-profile.jpg","version":24,"birthday":"28854000000","id":"133302","birthplace":"San Francisco, California, USA","lastModified":"1301902532000","name":"Golden Brooks","type":"Person","_key":"58288"} +{"label":"LisaRaye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/107\/4d7ff9bb7b9aa12da6000107\/lisaraye-profile.jpg","biography":"<FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-latin\" lang=EN>LisaRaye McCoy<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-latin\" lang=EN> was born on September 23, 1967 in Chicago, Illinois. Commonly known as <B>LisaRaye<\/B>, ","version":23,"birthday":"-71802000000","id":"105880","birthplace":"Chicago, Illinois, USA","lastModified":"1301902490000","name":"LisaRaye","type":"Person","_key":"58289"} +{"label":"Submerged","description":"Chris Kody, imprisoned member of the US military, is released from prison and reunited with his old team in order to pursue a renegade scientist. The catch, the scientist has developed mind control technology that can make even your friends into heartless killers.","id":"14180","runtime":96,"imdbId":"tt0416243","version":121,"lastModified":"1301904882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aaa\/4c0cd36a017a3c7e87000aaa\/submerged-mid.jpg","studio":"Nu Image Films","genre":"Action","title":"Submerged","releaseDate":1115337600000,"language":"en","type":"Movie","_key":"58290"} +{"label":"Christine Adams","version":24,"id":"87194","lastModified":"1301902046000","name":"Christine Adams","type":"Person","_key":"58291"} +{"label":"Boiler Room","description":"A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.","id":"14181","runtime":118,"imdbId":"tt0181984","trailer":"http:\/\/www.youtube.com\/watch?v=UoTx9RpL5W4","version":187,"lastModified":"1301902338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/061\/4c241b887b9aa14470000061\/boiler-room-mid.jpg","genre":"Comedy","title":"Boiler Room","releaseDate":957484800000,"language":"en","tagline":"Welcome to the new American dream.","type":"Movie","_key":"58292"} +{"label":"Things to Do Before You're 30","description":"A smart, sexy and poignantly accurate comedy drama about a group of twenty-something friends desperately resisting the inevitable - adulthood and responsibility.","id":"14187","runtime":101,"imdbId":"tt0382382","version":64,"lastModified":"1301908541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f52\/4bc941bc017a3c57fe01bf52\/things-to-do-before-you-re-30-mid.jpg","genre":"Comedy","title":"Things to Do Before You're 30","releaseDate":1149206400000,"language":"en","type":"Movie","_key":"58293"} +{"label":"Three Days To Vegas","description":"No overview found.","id":"14189","runtime":0,"imdbId":"tt0438365","version":125,"lastModified":"1301905591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/994\/4d0ce4f35e73d63710000994\/three-days-to-vegas-mid.jpg","genre":"Comedy","title":"Three Days To Vegas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58294"} +{"label":"Svidd Neger","description":"No overview found.","id":"14190","runtime":87,"imdbId":"tt0365810","version":60,"lastModified":"1301904436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f63\/4bc941bd017a3c57fe01bf63\/svidd-neger-mid.jpg","title":"Svidd Neger","releaseDate":1050019200000,"language":"en","type":"Movie","_key":"58295"} +{"label":"Aquamarine","description":"Two teenage girls discover a mermaid in their beach club's swimming pool.","id":"14191","runtime":104,"imdbId":"tt0429591","version":182,"lastModified":"1301903494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6c\/4bc941be017a3c57fe01bf6c\/aquamarine-mid.jpg","genre":"Family","title":"Aquamarine","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"58296"} +{"label":"Jake McDorman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7a0\/4d4748275e73d653850037a0\/jake-mcdorman-profile.jpg","version":21,"id":"94791","lastModified":"1301902708000","name":"Jake McDorman","type":"Person","_key":"58297"} +{"label":"Claudia Karvan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09d\/4bdabaf7017a3c5d8b00009d\/claudia-karvan-profile.jpg","version":42,"birthday":"75078000000","id":"79966","birthplace":"Sydney, New South Wales, Australia","lastModified":"1301901218000","name":"Claudia Karvan","type":"Person","_key":"58298"} +{"label":"Tammin Sursok","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/429\/4cf2378b7b9aa1449a000429\/tammin-sursok-profile.jpg","version":24,"id":"94792","lastModified":"1301901376000","name":"Tammin Sursok","type":"Person","_key":"58299"} +{"label":"Roy Billing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dfd\/4d987d705e73d62274005dfd\/roy-billing-profile.jpg","version":23,"id":"94793","lastModified":"1301902343000","name":"Roy Billing","type":"Person","_key":"58300"} +{"label":"Julia Blake","version":31,"id":"77561","lastModified":"1301901788000","name":"Julia Blake","type":"Person","_key":"58301"} +{"label":"Lulu McClatchy","version":18,"id":"94795","lastModified":"1301902343000","name":"Lulu McClatchy","type":"Person","_key":"58302"} +{"label":"Natasha Cunningham","version":18,"id":"94796","lastModified":"1301902343000","name":"Natasha Cunningham","type":"Person","_key":"58303"} +{"label":"Dichen Lachman","version":19,"id":"94797","lastModified":"1301902681000","name":"Dichen Lachman","type":"Person","_key":"58304"} +{"label":"Lincoln Lewis","version":22,"id":"94798","lastModified":"1301902155000","name":"Lincoln Lewis","type":"Person","_key":"58305"} +{"label":"Living Hell","description":"In a top secret Cold War military project an unstoppable, malignant organism who feeds on light and energy is unleashed threatening to destroy everything in it's path.","id":"14192","runtime":92,"imdbId":"tt0479201","version":116,"lastModified":"1301906339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f75\/4bc941bf017a3c57fe01bf75\/living-hell-mid.jpg","studio":"Odd Lot Entertainment","genre":"Action","title":"Living Hell","releaseDate":1203724800000,"language":"en","type":"Movie","_key":"58306"} +{"label":"Richard Jefferies","version":46,"id":"73570","lastModified":"1302050210000","name":"Richard Jefferies","type":"Person","_key":"58307"} +{"label":"James McDaniel","version":22,"id":"81372","lastModified":"1301901535000","name":"James McDaniel","type":"Person","_key":"58308"} +{"label":"Jason Wiles","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c29\/4cf3e78f5e73d62387000c29\/jason-wiles-profile.jpg","version":29,"id":"81373","lastModified":"1301901303000","name":"Jason Wiles","type":"Person","_key":"58309"} +{"label":"Tashan","description":"Jeetendra Kumar Makwana is employed full-time at a Call Center and works part-time teaching English. He is recruited by an attractive young woman, Pooja, to teach her Hinglish-speaking boss, Bhaiyaji, English. Jeetendra agrees to do so, falls in love with Pooja, and joins forces with her to steal a bag containing 25 Crore Rupees in cash. He will soon find out that Bhaiyaji is a hoodlum and extortionist known to the Police as Lakhan Singh.","id":"14193","runtime":148,"imdbId":"tt0995752","version":113,"lastModified":"1301906516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7e\/4bc941c2017a3c57fe01bf7e\/tashan-mid.jpg","studio":"Yash Raj Films","genre":"Action","title":"Tashan","releaseDate":1209081600000,"language":"en","type":"Movie","_key":"58310"} +{"label":"Vijay Krishna Acharya","version":29,"id":"76451","lastModified":"1301902160000","name":"Vijay Krishna Acharya","type":"Person","_key":"58311"} +{"label":"Dhoom:2","description":"In the second installment of the Dhoom series, Jai and Ali are back as the buddy cops on their toughest job so far. \"Mr.A\" is an international thief who has planned to steal a priceless artifact in Mumbai and the police have got to nab him. But Mr.A manages to steal the artifact and elude the police. He finds his match in Sunehri and they form a partnership. They move on to Rio for their next job, with Jai and Ali hot on their trail. Mr.A whose actual name is Aryan, and Sunehri are drawn towards","id":"14194","runtime":147,"imdbId":"tt0441048","trailer":"http:\/\/www.youtube.com\/watch?v=GLkHTl_Ct4E","homepage":"http:\/\/www.yashrajfilms.com\/microsites\/dhoom2\/d2micro\/microflash.htm","version":149,"lastModified":"1301902428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9b\/4bc941c4017a3c57fe01bf9b\/dhoom-2-mid.jpg","studio":"Yash Raj Films","genre":"Action","title":"Dhoom:2","releaseDate":1164326400000,"language":"en","tagline":"Diwali 2006: Dhoom Machale once again!","type":"Movie","_key":"58312"} +{"label":"Sanjay Gadhvi","version":28,"id":"76449","lastModified":"1301901293000","name":"Sanjay Gadhvi","type":"Person","_key":"58313"} +{"label":"Bipasha Basu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e0\/4c4f195a5e73d62ec40000e0\/bipasha-basu-profile.jpg","version":46,"birthday":"284511600000","id":"85035","birthplace":"New Delhi, India","lastModified":"1301901467000","name":"Bipasha Basu","type":"Person","_key":"58314"} +{"label":"Rimi Sen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e0e\/4be818fc017a3c35c1000e0e\/rimi-sen-profile.jpg","version":38,"id":"81927","lastModified":"1301901505000","name":"Rimi Sen","type":"Person","_key":"58315"} +{"label":"Cecil B. DeMented","description":"An insane independent film director and his renegade group of teenage film makers kidnap an A-list Hollywood actress and force her to star in their underground film.","id":"14195","runtime":87,"imdbId":"tt0173716","version":159,"lastModified":"1301903494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa4\/4bc941c6017a3c57fe01bfa4\/cecil-b-demented-mid.jpg","studio":"Canal+","genre":"Comedy","title":"Cecil B. DeMented","releaseDate":976233600000,"language":"en","type":"Movie","_key":"58316"} +{"label":"Garden Party","description":"Are you young, sexually confused, just trying to get by? Do you sing, dance or possess some other talent? Welcome to the Garden Party. At the center of the story is 15-year-old April. She is running from one bad situation into another, hoping to find an answer that doesn't involve taking off her clothes.","id":"14196","runtime":88,"imdbId":"tt0828393","version":345,"lastModified":"1301906225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fba\/4bc941cc017a3c57fe01bfba\/garden-party-mid.jpg","genre":"Drama","title":"Garden Party","releaseDate":1215734400000,"language":"en","type":"Movie","_key":"58317"} +{"label":"Tierra Abbott","version":13,"id":"168213","lastModified":"1301903386000","name":"Tierra Abbott","type":"Person","_key":"58318"} +{"label":"Christopher Allport","version":16,"id":"157169","lastModified":"1301903589000","name":"Christopher Allport","type":"Person","_key":"58319"} +{"label":"Erik Bragg","version":13,"id":"168249","lastModified":"1301903386000","name":"Erik Bragg","type":"Person","_key":"58320"} +{"label":"Alexander Cendese","version":13,"id":"168280","lastModified":"1301903404000","name":"Alexander Cendese","type":"Person","_key":"58321"} +{"label":"Alesha Rucci","version":18,"id":"95048","lastModified":"1301902522000","name":"Alesha Rucci","type":"Person","_key":"58322"} +{"label":"Lindley Domingue","version":13,"id":"168308","lastModified":"1301903386000","name":"Lindley Domingue","type":"Person","_key":"58323"} +{"label":"Jason Freeland","version":13,"id":"168200","lastModified":"1301903499000","name":"Jason Freeland","type":"Person","_key":"58324"} +{"label":"My Sassy Girl","description":"A sweet Midwestern guy (Bradford) with his life planned out for himself is wooed, groomed, and ultimately dumped by a complicated, elusive gal (Cuthbert).","id":"14197","runtime":92,"imdbId":"tt0404254","version":203,"lastModified":"1301902879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc7\/4bc941cd017a3c57fe01bfc7\/my-sassy-girl-mid.jpg","studio":"CJ Entertainment","genre":"Comedy","title":"My Sassy Girl","releaseDate":1214438400000,"language":"en","type":"Movie","_key":"58325"} +{"label":"Austin Basis","version":22,"id":"82695","lastModified":"1301902070000","name":"Austin Basis","type":"Person","_key":"58326"} +{"label":"Jay Patterson","version":18,"id":"78789","lastModified":"1301901948000","name":"Jay Patterson","type":"Person","_key":"58327"} +{"label":"Criminal","description":"Two con artists try to swindle a currency collector by selling him a counterfeit copy of an extremely rare currency bill.","id":"14198","runtime":87,"imdbId":"tt0362526","trailer":"http:\/\/www.youtube.com\/watch?v=R02LXd5T5ls","version":140,"lastModified":"1301904289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fda\/4bc941d0017a3c57fe01bfda\/criminal-mid.jpg","genre":"Action","title":"Criminal","releaseDate":1097107200000,"language":"en","type":"Movie","_key":"58328"} +{"label":"Laura Cer\u00f3n","version":26,"id":"87568","lastModified":"1301901157000","name":"Laura Cer\u00f3n","type":"Person","_key":"58329"} +{"label":"Soledad St. Hilaire","version":21,"id":"119666","lastModified":"1301902465000","name":"Soledad St. Hilaire","type":"Person","_key":"58330"} +{"label":"Gregory Jacobs","version":24,"id":"119665","lastModified":"1301902891000","name":"Gregory Jacobs","type":"Person","_key":"58331"} +{"label":"The Adventures of Sharkboy and Lavagirl in 3-D","description":"Max conjures up his perfect dreamworld...the Planet Drool. But his dream is more powerful than even he suspects, and his favorite dream super-heroes, Sharkboy and Lavagirl must help Max discover and conquer a source of danger that threatens to destroy their world.","id":"14199","runtime":92,"imdbId":"tt0424774","trailer":"http:\/\/www.youtube.com\/watch?v=YVAz34SVtac","version":120,"lastModified":"1301903135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe3\/4bc941d1017a3c57fe01bfe3\/the-adventures-of-sharkboy-and-lavagirl-in-3-d-mid.jpg","studio":"Troublemaker Studios","title":"The Adventures of Sharkboy and Lavagirl in 3-D","releaseDate":1118361600000,"language":"en","type":"Movie","_key":"58332"} +{"label":"Taylor Dooley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4ca3d2047b9aa16ed8000098\/taylor-dooley-profile.jpg","biography":"<a class=\"af_al\" href=\"http:\/\/www.aufeminin.com\/people\/taylor-dooley\/taylor-dooley-star2226.html\">Success has arrived early for Taylor Dooley. She can next be seen in <\/a><a href=\"http:\/\/www.imdb.com\/title\/tt0424774\/\">The Adventures of Sharkboy and Lavagirl 3-D<\/a> (2005) (opens June 10) from director 'Robert Rodriquez (I)' (<a href=\"http:\/\/www.imdb.com\/title\/tt0227538\/\">Spy Kids<\/a> (2001)). Taylor will portray \"Lava Girl\", who comes to life as an imaginary friend to a lonely 10-year-old boy.\n\n","version":23,"id":"84517","birthplace":"Michigan, USA","lastModified":"1301901606000","name":"Taylor Dooley","type":"Person","_key":"58333"} +{"label":"Jacob Davich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d7d\/4d223b177b9aa12823000d7d\/jacob-davich-profile.jpg","version":27,"id":"84518","lastModified":"1301902208000","name":"Jacob Davich","type":"Person","_key":"58334"} +{"label":"Les Parrains","description":"No overview found.","id":"14200","runtime":0,"imdbId":"tt0428948","version":115,"lastModified":"1301599219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff1\/4bc941d4017a3c57fe01bff1\/les-parrains-mid.jpg","title":"Les Parrains","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58335"} +{"label":"The U.S. vs. John Lennon","description":"A documentary on the life of John Lennon, with a focus on the time in his life when he transformed from a musician into an antiwar activist.","id":"14201","runtime":99,"imdbId":"tt0478049","version":193,"lastModified":"1301904081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffa\/4bc941d5017a3c57fe01bffa\/the-u-s-vs-john-lennon-mid.jpg","genre":"Documentary","title":"The U.S. vs. John Lennon","releaseDate":1158278400000,"language":"en","tagline":"Musician. Humanitarian. National Threat.","type":"Movie","_key":"58336"} +{"label":"David Leaf","version":21,"id":"116803","lastModified":"1301902546000","name":"David Leaf","type":"Person","_key":"58337"} +{"label":"John Scheinfeld","version":19,"id":"116804","lastModified":"1301902546000","name":"John Scheinfeld","type":"Person","_key":"58338"} +{"label":"The Painted Veil","description":"A British medical doctor fights a cholera outbreak in a small Chinese village, while also being trapped at home in a loveless marriage to an unfaithful wife.","id":"14202","runtime":125,"imdbId":"tt0446755","trailer":"http:\/\/www.youtube.com\/watch?v=-mRi5ImhBmM&hd=1","version":291,"lastModified":"1301901816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77d\/4d435aff5e73d6570400177d\/the-painted-veil-mid.jpg","genre":"Drama","title":"The Painted Veil","releaseDate":1166572800000,"language":"en","type":"Movie","_key":"58339"} +{"label":"Ian Renwick","version":24,"id":"96167","lastModified":"1301902674000","name":"Ian Renwick","type":"Person","_key":"58340"} +{"label":"John Curran","version":50,"id":"96166","lastModified":"1301901294000","name":"John Curran","type":"Person","_key":"58341"} +{"label":"Family Guy: Blue Harvest","description":"With the Griffins stuck at home during a blackout, Peter begins to tell a story, which leads to a Star Wars flashback. Acting out scenes from Star Wars Episode IV: A New Hope.","id":"14203","runtime":48,"imdbId":"tt0888817","version":132,"lastModified":"1301901838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/025\/4bc941df017a3c57fe01c025\/family-guy-blue-harvest-mid.jpg","genre":"Animation","title":"Family Guy: Blue Harvest","releaseDate":1167609600000,"language":"en","tagline":"If you think you know Family Guy, you don't know Sith...","type":"Movie","_key":"58342"} +{"label":"Dominic Polcino","version":42,"id":"96156","lastModified":"1301901810000","name":"Dominic Polcino","type":"Person","_key":"58343"} +{"label":"Ping Pong Playa","description":"Streetwise swaggering Christopher \"C-Dub\" Wang is a suburban guy who waxes political on all things Asian American and clings to pro basketball pipe dreams. But when misfortune strikes his family, C-dub must overcome living at home, working a dead-end job and his worldly older brother, to run his Mom's ping pong classes and defend the family's athletic dynasty. ","id":"14204","runtime":96,"imdbId":"tt0991167","homepage":"http:\/\/www.pingpongplaya.com","version":214,"lastModified":"1301904080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03c\/4bc941e2017a3c57fe01c03c\/ping-pong-playa-mid.jpg","studio":"Cherry Sky Films","genre":"Comedy","title":"Ping Pong Playa","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58344"} +{"label":"Jimmy Tsai","version":21,"id":"76424","lastModified":"1301901535000","name":"Jimmy Tsai","type":"Person","_key":"58345"} +{"label":"Andrew Vo","version":19,"id":"76427","lastModified":"1301901535000","name":"Andrew Vo","type":"Person","_key":"58346"} +{"label":"Holding Trevor","description":"Everybody's looking for something...\n\nMoving forward doesn't always mean leaving something behind.","id":"14205","runtime":88,"imdbId":"tt0960770","trailer":"http:\/\/www.youtube.com\/watch?v=932","version":288,"lastModified":"1301904818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/054\/4bc941e3017a3c57fe01c054\/holding-trevor-mid.jpg","studio":"KGB Films","genre":"Drama","title":"Holding Trevor","releaseDate":1215129600000,"language":"en","type":"Movie","_key":"58347"} +{"label":"Brent Gorski","version":22,"id":"76428","lastModified":"1301901720000","name":"Brent Gorski","type":"Person","_key":"58348"} +{"label":"Melissa Searing","version":20,"id":"76429","lastModified":"1301901580000","name":"Melissa Searing","type":"Person","_key":"58349"} +{"label":"Eli Kranski","version":19,"id":"76430","lastModified":"1301901720000","name":"Eli Kranski","type":"Person","_key":"58350"} +{"label":"Isaiah Garnica","version":19,"id":"76431","lastModified":"1301902070000","name":"Isaiah Garnica","type":"Person","_key":"58351"} +{"label":"Yaniv Madmon","version":19,"id":"76432","lastModified":"1301901866000","name":"Yaniv Madmon","type":"Person","_key":"58352"} +{"label":"Dawn Mondie","version":19,"id":"76433","lastModified":"1301901609000","name":"Dawn Mondie","type":"Person","_key":"58353"} +{"label":"Mathew Pasillas","version":19,"id":"76434","lastModified":"1301901609000","name":"Mathew Pasillas","type":"Person","_key":"58354"} +{"label":"Joseph Roslan","version":19,"id":"76435","lastModified":"1301901866000","name":"Joseph Roslan","type":"Person","_key":"58355"} +{"label":"Megan Sheperd","version":19,"id":"76436","lastModified":"1301901474000","name":"Megan Sheperd","type":"Person","_key":"58356"} +{"label":"Monica Todd","version":19,"id":"76437","lastModified":"1301901866000","name":"Monica Todd","type":"Person","_key":"58357"} +{"label":"Christopher Wyllie","version":19,"id":"76438","lastModified":"1301901609000","name":"Christopher Wyllie","type":"Person","_key":"58358"} +{"label":"Kunoichi ninp\u00f4 ch\u00f4 Yagy\u00fb gaiden: Edobana jigoku-hen","description":"Yuko Moriyama stars in this ninja period piece as one of seven women determined to exact revenge on the evil lord Akinari Katou and \u201cThe 7 Spears\u201d, the band of soldiers he commands. Trained assassins and skilled in sorcery, these men took over the Aizu prefecture and took its most beautiful young women as concubines. They left behind 7 daughters now seeking out Jyubei Yagyuu to help get revenge.","id":"14206","runtime":106,"imdbId":"tt0176908","version":31,"lastModified":"1301419489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05d\/4bc941e4017a3c57fe01c05d\/kunoichi-ninpo-cho-yagyu-gaiden-edobana-jigoku-hen-mid.jpg","title":"Kunoichi ninp\u00f4 ch\u00f4 Yagy\u00fb gaiden: Edobana jigoku-hen","releaseDate":883612800000,"language":"en","type":"Movie","_key":"58359"} +{"label":"The Librarian: Quest for the Spear","description":"When a magical artifact is lifted from his library, a meek librarian sets out to ensure its safe return.","id":"14207","runtime":92,"imdbId":"tt0412915","version":205,"lastModified":"1301907722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4bc941e4017a3c57fe01c06b\/the-librarian-quest-for-the-spear-mid.jpg","studio":"Electric Entertainment","genre":"Action","title":"The Librarian: Quest for the Spear","releaseDate":1102204800000,"language":"en","type":"Movie","_key":"58360"} +{"label":"Peter Winther","version":26,"id":"56151","lastModified":"1301902147000","name":"Peter Winther","type":"Person","_key":"58361"} +{"label":"Sonya Walger","version":24,"id":"47953","lastModified":"1301901840000","name":"Sonya Walger","type":"Person","_key":"58362"} +{"label":"David Dayan Fisher","version":20,"id":"81103","lastModified":"1301902528000","name":"David Dayan Fisher","type":"Person","_key":"58363"} +{"label":"The Librarian: Return to King Solomon's Mines","description":"Librarian-turned-adventurer Flynn Carsen endeavors to find King Solomon's mines.","id":"14208","runtime":92,"imdbId":"tt0455596","trailer":"http:\/\/www.youtube.com\/watch?v=YHsqslpgRSw","version":229,"lastModified":"1301902282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/074\/4bc941e5017a3c57fe01c074\/the-librarian-return-to-king-solomon-s-mines-mid.jpg","studio":"Jack Giarraputo Productions","genre":"Action","title":"The Librarian: Return to King Solomon's Mines","releaseDate":1160352000000,"language":"en","type":"Movie","_key":"58364"} +{"label":"The Morgue","description":"A story about six strangers who find themselves stranded overnight at a rural morgue.","id":"14209","runtime":84,"imdbId":"tt0949888","version":270,"lastModified":"1301906474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/079\/4bc941e5017a3c57fe01c079\/the-morgue-mid.jpg","genre":"Horror","title":"The Morgue","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"58365"} +{"label":"Nightmare City 2035","description":"No overview found.","id":"14210","runtime":0,"imdbId":"tt0910868","version":70,"lastModified":"1301904449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/082\/4bc941e9017a3c57fe01c082\/nightmare-city-2035-mid.jpg","title":"Nightmare City 2035","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58366"} +{"label":"Prey","description":"An American family on holiday in Africa becomes lost in a game reserve and stalked by lions.","id":"14211","runtime":92,"imdbId":"tt0468536","version":198,"lastModified":"1301905542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08b\/4bc941e9017a3c57fe01c08b\/prey-mid.jpg","studio":"Anant Singh Production","genre":"Adventure","title":"Prey","releaseDate":1170115200000,"language":"en","type":"Movie","_key":"58367"} +{"label":"Conner Dowds","version":21,"id":"82846","lastModified":"1301902179000","name":"Conner Dowds","type":"Person","_key":"58368"} +{"label":"Pulse 2: Afterlife","description":"No overview found.","id":"14212","runtime":89,"imdbId":"tt1038072","version":243,"lastModified":"1301903052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4bc941ea017a3c57fe01c094\/pulse-2-mid.jpg","genre":"Horror","title":"Pulse 2: Afterlife","releaseDate":1222732800000,"language":"en","type":"Movie","_key":"58369"} +{"label":"Joel Soisson","version":57,"id":"18384","lastModified":"1301901287000","name":"Joel Soisson","type":"Person","_key":"58370"} +{"label":"Todd Giebenhain","version":19,"id":"138606","lastModified":"1301901913000","name":"Todd Giebenhain","type":"Person","_key":"58371"} +{"label":"Rachel Robinson","version":21,"id":"98408","lastModified":"1301902059000","name":"Rachel Robinson","type":"Person","_key":"58372"} +{"label":"Dodie Brown","version":20,"id":"138608","lastModified":"1301902046000","name":"Dodie Brown","type":"Person","_key":"58373"} +{"label":"Jamie Bamber","version":39,"id":"50668","lastModified":"1301901667000","name":"Jamie Bamber","type":"Person","_key":"58374"} +{"label":"Andy Martin","version":18,"id":"138609","lastModified":"1301902971000","name":"Andy Martin","type":"Person","_key":"58375"} +{"label":"Claudia Templeton","version":18,"id":"138610","lastModified":"1301902858000","name":"Claudia Templeton","type":"Person","_key":"58376"} +{"label":"Karley Scott Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f11\/4d281b977b9aa134d3001f11\/karley-scott-collins-profile.jpg","version":38,"id":"109784","lastModified":"1301901372000","name":"Karley Scott Collins","type":"Person","_key":"58377"} +{"label":"Boti Bliss","version":21,"id":"111830","lastModified":"1301902704000","name":"Boti Bliss","type":"Person","_key":"58378"} +{"label":"Robin McGee","version":19,"id":"138611","lastModified":"1301903029000","name":"Robin McGee","type":"Person","_key":"58379"} +{"label":"Grant James","version":21,"id":"116433","lastModified":"1301902531000","name":"Grant James","type":"Person","_key":"58380"} +{"label":"Vincent Rice","version":19,"id":"138612","lastModified":"1301902994000","name":"Vincent Rice","type":"Person","_key":"58381"} +{"label":"Kent Jude Bernard","version":18,"id":"138613","lastModified":"1301902738000","name":"Kent Jude Bernard","type":"Person","_key":"58382"} +{"label":"William Prael","version":21,"id":"102707","lastModified":"1301902558000","name":"William Prael","type":"Person","_key":"58383"} +{"label":"Laura Cayouette","version":19,"id":"138614","lastModified":"1301902738000","name":"Laura Cayouette","type":"Person","_key":"58384"} +{"label":"Recon 2022 The Mezzo Incident","description":"No overview found.","id":"14213","runtime":0,"imdbId":"tt0791142","version":72,"lastModified":"1301905720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4bc941ea017a3c57fe01c09d\/recon-2022-the-mezzo-incident-mid.jpg","genre":"Science Fiction","title":"Recon 2022 The Mezzo Incident","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58385"} +{"label":"Thoda Pyaar Thoda Magic","description":"One day they pray to God for help and he does help them. He sends his most mischievous, childlike, lovable angel to the rescue, with a mission to bring Ranbeer and the kids together. Geeta (Rani Mukerji) comes bicycling down a rainbow\u2026 and bursts into Ranbeer's house as the selfproclaimed new nanny. And then starts the roller coaster ride of fun, emotions, magic and love. ","id":"14214","runtime":145,"imdbId":"tt1191138","version":80,"lastModified":"1301905542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ae\/4bc941eb017a3c57fe01c0ae\/thoda-pyaar-thoda-magic-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Thoda Pyaar Thoda Magic","releaseDate":1214524800000,"language":"en","type":"Movie","_key":"58386"} +{"label":"Ameesha Patel","version":22,"id":"76450","lastModified":"1301901777000","name":"Ameesha Patel","type":"Person","_key":"58387"} +{"label":"Restraint","description":"A young couple on the run hole up in a country estate with a hostage in tow.","id":"14215","runtime":94,"imdbId":"tt0441782","trailer":"http:\/\/www.youtube.com\/watch?v=1872","version":125,"lastModified":"1301904384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bc\/4bc941ec017a3c57fe01c0bc\/restraint-mid.jpg","studio":"Filmgraphics Entertainment","genre":"Drama","title":"Restraint","releaseDate":1215129600000,"language":"en","type":"Movie","_key":"58388"} +{"label":"David Denneen","version":23,"id":"77698","lastModified":"1301901581000","name":"David Denneen","type":"Person","_key":"58389"} +{"label":"Travis Fimmel","version":26,"id":"77700","lastModified":"1301901293000","name":"Travis Fimmel","type":"Person","_key":"58390"} +{"label":"Philip Holder","version":22,"id":"77701","lastModified":"1301901949000","name":"Philip Holder","type":"Person","_key":"58391"} +{"label":"Margie McCrae","version":22,"id":"77702","lastModified":"1301901779000","name":"Margie McCrae","type":"Person","_key":"58392"} +{"label":"Rigged","description":"In the seedy underground of illegal prizefighting, a corrupt boxing promoter is embroiled in a dangerous fight-fixing scheme with his female prizefighter.","id":"14216","runtime":100,"imdbId":"tt0756707","version":91,"lastModified":"1301907257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c5\/4bc941ed017a3c57fe01c0c5\/rigged-mid.jpg","genre":"Action","title":"Rigged","releaseDate":1221004800000,"language":"en","type":"Movie","_key":"58393"} +{"label":"Rebecca Neuenswander","version":17,"id":"95436","lastModified":"1301902245000","name":"Rebecca Neuenswander","type":"Person","_key":"58394"} +{"label":"Chad Ortis","version":17,"id":"95437","lastModified":"1301902070000","name":"Chad Ortis","type":"Person","_key":"58395"} +{"label":"Kurt Hanover","version":17,"id":"95438","lastModified":"1301902465000","name":"Kurt Hanover","type":"Person","_key":"58396"} +{"label":"John Wilson","version":17,"id":"95439","lastModified":"1301902465000","name":"John Wilson","type":"Person","_key":"58397"} +{"label":"Larry Peterson","version":17,"id":"95440","lastModified":"1301902465000","name":"Larry Peterson","type":"Person","_key":"58398"} +{"label":"Alicia Cabrera","version":17,"id":"95441","lastModified":"1301902070000","name":"Alicia Cabrera","type":"Person","_key":"58399"} +{"label":"Kate Forristall","version":17,"id":"95442","lastModified":"1301902465000","name":"Kate Forristall","type":"Person","_key":"58400"} +{"label":"Allison Poccia","version":17,"id":"95443","lastModified":"1301902465000","name":"Allison Poccia","type":"Person","_key":"58401"} +{"label":"Adrian Bartholomew","version":17,"id":"95444","lastModified":"1301902070000","name":"Adrian Bartholomew","type":"Person","_key":"58402"} +{"label":"Jonathan Laurans","version":17,"id":"95445","lastModified":"1301902465000","name":"Jonathan Laurans","type":"Person","_key":"58403"} +{"label":"Lahcen Anajjar","version":17,"id":"95446","lastModified":"1301902465000","name":"Lahcen Anajjar","type":"Person","_key":"58404"} +{"label":"Will Fowler","version":17,"id":"95447","lastModified":"1301902465000","name":"Will Fowler","type":"Person","_key":"58405"} +{"label":"Matt Schroll","version":17,"id":"95448","lastModified":"1301902245000","name":"Matt Schroll","type":"Person","_key":"58406"} +{"label":"Shane Lowery","version":17,"id":"95449","lastModified":"1301902465000","name":"Shane Lowery","type":"Person","_key":"58407"} +{"label":"Jorge M. Roman","version":17,"id":"95450","lastModified":"1301902465000","name":"Jorge M. Roman","type":"Person","_key":"58408"} +{"label":"Rinne","description":"A Japanese actress begins having strange visions and experiences after landing a role in a horror film about a real-life murder spree that took place over forty years ago.","id":"14217","runtime":96,"imdbId":"tt0456630","version":62,"lastModified":"1301907116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4bc941ee017a3c57fe01c0d2\/rinne-mid.jpg","studio":"Entertainment Farm","genre":"Horror","title":"Rinne","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"58409"} +{"label":"Y\u00fbka","version":16,"id":"112859","lastModified":"1301901866000","name":"Y\u00fbka","type":"Person","_key":"58410"} +{"label":"Karina","version":19,"id":"112860","lastModified":"1301902465000","name":"Karina","type":"Person","_key":"58411"} +{"label":"Tetta Sugimoto","version":22,"id":"112861","lastModified":"1301902727000","name":"Tetta Sugimoto","type":"Person","_key":"58412"} +{"label":"Marika Matsumoto","version":16,"id":"112862","lastModified":"1301902634000","name":"Marika Matsumoto","type":"Person","_key":"58413"} +{"label":"Skinwalkers","description":"Creatures, bound by the blood of the wolf, that can kill with curses and move at lightening speed, watching the night sky for the rise of the blood-red crescent moon. They are SKINWALKERS. They feed on our flesh and thirst for the taste of human blood. The red moon signals each pack, divided by principles, hell bent to survive an ancient prophecy.","id":"14219","runtime":110,"imdbId":"tt0461703","version":233,"lastModified":"1301902390000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ee\/4bc941f3017a3c57fe01c0ee\/skinwalkers-mid.jpg","studio":"Constantin Film","genre":"Action","title":"Skinwalkers","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"58414"} +{"label":"Tom Jackson","version":18,"id":"78797","lastModified":"1301901364000","name":"Tom Jackson","type":"Person","_key":"58415"} +{"label":"Strange Wilderness","description":"With the ratings dropping for a wilderness-themed TV show, two animal fans go to the Andes in search of Bigfoot.","id":"14220","runtime":87,"imdbId":"tt0489282","version":271,"lastModified":"1301902858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4bc941f4017a3c57fe01c0f7\/strange-wilderness-mid.jpg","studio":"Pelican Productions LLC","genre":"Comedy","title":"Strange Wilderness","releaseDate":1201824000000,"language":"en","type":"Movie","_key":"58416"} +{"label":"Ernes Borgnine","version":17,"id":"136848","lastModified":"1301902755000","name":"Ernes Borgnine","type":"Person","_key":"58417"} +{"label":"Jesse Catlien","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4cad49c67b9aa11b3a00003d\/jesse-catlien-profile.jpg","biography":"<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">\n<\/span><\/font><font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px;\">Jeremy Drew (born 1993-09-02), professionally known as Jesse, is an Australian pop singer-songwriter, actor and television personality.<\/span><\/font>\n\n<font face=\"arial, tahoma, helvetica, sans-serif\"><span style=\"font-size: 12px; \">Jesse has played the main role of TV series Sweet 16 since August 2009. In 2010 he returne","version":26,"birthday":"746920800000","id":"136849","birthplace":"Sydney, Australia","lastModified":"1301904076000","name":"Jesse Catlien","type":"Person","_key":"58418"} +{"label":"Wind Chill","description":"Two college students share a ride home for the holidays. When they break down on a deserted stretch of road, they're preyed upon by the ghosts of people who have died there.","id":"14223","runtime":91,"imdbId":"tt0486051","trailer":"http:\/\/www.youtube.com\/watch?v=uiwyITqDZlk","version":176,"lastModified":"1301905767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10f\/4bc941f7017a3c57fe01c10f\/wind-chill-mid.jpg","genre":"Drama","title":"Wind Chill","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"58419"} +{"label":"E=mc2","description":"No overview found.","id":"14224","runtime":120,"imdbId":"tt0322120","version":161,"lastModified":"1301812485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a8\/4c002344017a3c70330010a8\/e-mc2-mid.jpg","genre":"Comedy","title":"E=mc2","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58420"} +{"label":"Riding Alone for Thousands of Miles","description":"Takada, a Japanese fisherman has been estranged from his son for many years, but when the son is diagnosed with terminal cancer his daughter-in-law, Rie, summons him to the hospital. Through a series of obstacles and relationships, he is brought unexpectedly closer to both an understanding of himself and of his son.","id":"14226","runtime":107,"imdbId":"tt0437447","version":123,"lastModified":"1301906805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11c\/4bc941f8017a3c57fe01c11c\/qian-li-zou-dan-qi-mid.jpg","genre":"Drama","title":"Riding Alone for Thousands of Miles","releaseDate":1135209600000,"language":"en","type":"Movie","_key":"58421"} +{"label":"Shinobu Terajima","version":28,"id":"83527","lastModified":"1301901701000","name":"Shinobu Terajima","type":"Person","_key":"58422"} +{"label":"Kiichi Nakai","version":32,"id":"76931","lastModified":"1301901408000","name":"Kiichi Nakai","type":"Person","_key":"58423"} +{"label":"Ken Nakamoto","version":22,"id":"83643","lastModified":"1301902520000","name":"Ken Nakamoto","type":"Person","_key":"58424"} +{"label":"Jiamin Li","version":22,"id":"83644","lastModified":"1301902187000","name":"Jiamin Li","type":"Person","_key":"58425"} +{"label":"Jiang Wen","version":23,"id":"83645","lastModified":"1301902357000","name":"Jiang Wen","type":"Person","_key":"58426"} +{"label":"Lin Qiu","version":22,"id":"83646","lastModified":"1301902173000","name":"Lin Qiu","type":"Person","_key":"58427"} +{"label":"Yasuo Furuhata","version":26,"id":"83642","lastModified":"1301904135000","name":"Yasuo Furuhata","type":"Person","_key":"58428"} +{"label":"Mortuary","description":"A family moves to a small town in California where they plan on starting a new life while running a long-abandoned funeral home. The locals fear the place, which is suspected to be on haunted ground","id":"14228","runtime":94,"imdbId":"tt0415167","trailer":"http:\/\/www.youtube.com\/watch?v=2124","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/mortuary","version":132,"lastModified":"1301904817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12e\/4bc941f9017a3c57fe01c12e\/mortuary-mid.jpg","studio":"Echo Bridge Entertainment","genre":"Horror","title":"Mortuary","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58429"} +{"label":"Stephanie Patton","version":22,"id":"76455","lastModified":"1301901990000","name":"Stephanie Patton","type":"Person","_key":"58430"} +{"label":"Alexandra Adi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a1\/4ce1c4b45e73d60f6e0004a1\/alexandra-adi-profile.jpg","version":23,"birthday":"40345200000","id":"76456","birthplace":"New York, USA","lastModified":"1301901645000","name":"Alexandra Adi","type":"Person","_key":"58431"} +{"label":"William Alva","version":21,"id":"76457","lastModified":"1301901866000","name":"William Alva","type":"Person","_key":"58432"} +{"label":"Adam Gierasch","version":37,"id":"76453","lastModified":"1301901535000","name":"Adam Gierasch","type":"Person","_key":"58433"} +{"label":"Christy Johnson","version":22,"id":"76458","lastModified":"1301901990000","name":"Christy Johnson","type":"Person","_key":"58434"} +{"label":"Joe Langer","version":22,"id":"76459","lastModified":"1301901991000","name":"Joe Langer","type":"Person","_key":"58435"} +{"label":"Paul G. Pagnini","version":21,"id":"76460","lastModified":"1301902245000","name":"Paul G. Pagnini","type":"Person","_key":"58436"} +{"label":"Courtney Peldon","version":21,"id":"76461","lastModified":"1301901866000","name":"Courtney Peldon","type":"Person","_key":"58437"} +{"label":"Ti piace Hitchcock?","description":"No overview found.","id":"14229","runtime":93,"imdbId":"tt0430676","version":87,"lastModified":"1301009271000","title":"Ti piace Hitchcock?","releaseDate":1111190400000,"language":"en","type":"Movie","_key":"58438"} +{"label":"Wholetrain","description":"No overview found.","id":"14231","runtime":0,"imdbId":"tt0498203","version":95,"lastModified":"1301907136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4bc941fa017a3c57fe01c13b\/wholetrain-mid.jpg","genre":"Drama","title":"Wholetrain","releaseDate":1160006400000,"language":"en","type":"Movie","_key":"58439"} +{"label":"Mike Adler","version":16,"id":"145383","lastModified":"1301902305000","name":"Mike Adler","type":"Person","_key":"58440"} +{"label":"Florian Renner","version":16,"id":"145384","lastModified":"1301902187000","name":"Florian Renner","type":"Person","_key":"58441"} +{"label":"Karina Fallenstein","version":15,"id":"145584","lastModified":"1301903016000","name":"Karina Fallenstein","type":"Person","_key":"58442"} +{"label":"Kristina Karst","version":15,"id":"145585","lastModified":"1301903061000","name":"Kristina Karst","type":"Person","_key":"58443"} +{"label":"Naomi Knopf","version":15,"id":"145586","lastModified":"1301902225000","name":"Naomi Knopf","type":"Person","_key":"58444"} +{"label":"Talin Lopez","version":15,"id":"145588","lastModified":"1301902220000","name":"Talin Lopez","type":"Person","_key":"58445"} +{"label":"Sergej Lubic","version":15,"id":"145593","lastModified":"1301902352000","name":"Sergej Lubic","type":"Person","_key":"58446"} +{"label":"David Mayonga","version":15,"id":"145594","lastModified":"1301902284000","name":"David Mayonga","type":"Person","_key":"58447"} +{"label":"Vincenzo Rosso","version":15,"id":"145595","lastModified":"1301902308000","name":"Vincenzo Rosso","type":"Person","_key":"58448"} +{"label":"Humboldt County","description":"Peter is a medical student about to graduate and begin his residency. When his professor fails him, he winds up in bed with an actress and singer named Bogart rolling through Los Angeles. He accompanies her to the redwoods of northern California, where he encounters her eccentric family of pot farmers. But when Bogart runs away without a word, Peter is thrust into the picturesque and bizarre world","id":"14232","runtime":0,"imdbId":"tt0870122","version":208,"lastModified":"1301906254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/144\/4bc941fb017a3c57fe01c144\/humboldt-county-mid.jpg","genre":"Comedy","title":"Humboldt County","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"58449"} +{"label":"Film Noir","description":"Private detective Sam Ruben's clever plan falls apart with the onset of amnesia. Everyone is trying to kill him and he doesn't know why. The classic film noir milieu now comes to you in the form of an animated feature.","id":"14233","runtime":97,"imdbId":"tt0970933","version":90,"lastModified":"1301904400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14d\/4bc941fe017a3c57fe01c14d\/film-noir-mid.jpg","studio":"EasyE Films","genre":"Animation","title":"Film Noir","releaseDate":1172793600000,"language":"en","type":"Movie","_key":"58450"} +{"label":"D. Jud Jones","version":16,"id":"78179","lastModified":"1301901779000","name":"D. Jud Jones","type":"Person","_key":"58451"} +{"label":"Risto Topaloski","version":16,"id":"78180","lastModified":"1301901779000","name":"Risto Topaloski","type":"Person","_key":"58452"} +{"label":"Ploy","description":"No overview found.","id":"14234","runtime":0,"imdbId":"tt0993778","trailer":"http:\/\/www.youtube.com\/watch?v=EK_mBeghxPQ","version":73,"lastModified":"1302061658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/156\/4bc941ff017a3c57fe01c156\/ploy-mid.jpg","title":"Ploy","releaseDate":1181174400000,"language":"en","tagline":"A film by Pen-Ek Ratanaruang","type":"Movie","_key":"58453"} +{"label":"Apinya Sakuljaroensuk","version":25,"id":"112727","lastModified":"1301902504000","name":"Apinya Sakuljaroensuk","type":"Person","_key":"58454"} +{"label":"Ananda Everingham","version":28,"id":"81253","lastModified":"1301901214000","name":"Ananda Everingham","type":"Person","_key":"58455"} +{"label":"Lalita Panyopas","version":17,"id":"110389","lastModified":"1301902316000","name":"Lalita Panyopas","type":"Person","_key":"58456"} +{"label":"Porntip Papanai","version":18,"id":"143325","lastModified":"1301902411000","name":"Porntip Papanai","type":"Person","_key":"58457"} +{"label":"Eden Log","description":"A man wakes up deep inside a cave. Suffering amnesia, he has no recollection of how he came to be here or of what happened to the man whose body he finds beside him. Tailed by a mysterious creature, he must continue through this strange and fantastic world. Enclosed, Tolbiac has no other option to reach the surface than to use REZO ZERO, secret observing cells in this cemetery-like abandoned mine.","id":"14235","runtime":98,"imdbId":"tt1087842","version":183,"lastModified":"1301903555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15f\/4bc941ff017a3c57fe01c15f\/eden-log-mid.jpg","studio":"Imp\u00e9ria","genre":"Action","title":"Eden Log","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58458"} +{"label":"Franck Vestiel","version":19,"id":"78626","lastModified":"1301901562000","name":"Franck Vestiel","type":"Person","_key":"58459"} +{"label":"Super High Me","description":"Determined to find out the true effects of marijuana on the human body, stand-up comedian and former Stoner of the Year Doug Benson documents his experience avoiding pot for 30 days and then consuming massive amounts of the drug for 30 days. More than just an amusing story of one man's quest to get superhigh, this documentary also examines the hotly contested debate over medical marijuana use.","id":"14236","runtime":0,"imdbId":"tt1111833","trailer":"http:\/\/www.youtube.com\/watch?v=1806","version":379,"lastModified":"1301903237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/177\/4bc94201017a3c57fe01c177\/super-high-me-mid.jpg","genre":"Documentary","title":"Super High Me","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58460"} +{"label":"Brainscan","description":"A lonely teenage horror-movie fan discovers a mysterious computer game that uses hypnosis to custom-tailor the game into the most terrifying experience imaginable. When he emerges from the hypnotic trance he is horrified to find evidence that the brutal murder depicted in the game actually happened -- and he's the killer.","id":"14237","runtime":96,"imdbId":"tt0109327","version":178,"lastModified":"1301904038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/515\/4cca07035e73d65025000515\/brainscan-mid.jpg","genre":"Horror","title":"Brainscan","releaseDate":766972800000,"language":"en","tagline":"Wanna play? I dare you.","type":"Movie","_key":"58461"} +{"label":"T. Ryder Smith","version":19,"id":"140378","lastModified":"1301901985000","name":"T. Ryder Smith","type":"Person","_key":"58462"} +{"label":"Amy Hargreaves","version":20,"id":"92728","lastModified":"1301902477000","name":"Amy Hargreaves","type":"Person","_key":"58463"} +{"label":"The sweet hand of the White Rose","description":"No overview found.","id":"14238","runtime":0,"imdbId":"tt1599366","trailer":"http:\/\/www.youtube.com\/watch?v=3386","version":304,"lastModified":"1301908297000","title":"The sweet hand of the White Rose","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58464"} +{"label":"Bruno Herrero","version":20,"id":"68250","lastModified":"1301901874000","name":"Bruno Herrero","type":"Person","_key":"58465"} +{"label":"Victor Quero","version":23,"id":"68240","lastModified":"1301902257000","name":"Victor Quero","type":"Person","_key":"58466"} +{"label":"Carlos Bahos","version":19,"id":"82977","lastModified":"1301902244000","name":"Carlos Bahos","type":"Person","_key":"58467"} +{"label":"Natasha Machuca","version":19,"id":"82978","lastModified":"1301902465000","name":"Natasha Machuca","type":"Person","_key":"58468"} +{"label":"Leocricia Sab\u00e1n","version":19,"id":"82979","lastModified":"1301902465000","name":"Leocricia Sab\u00e1n","type":"Person","_key":"58469"} +{"label":"Cool World","description":"A comic character tries to seduce her creator to escape into his world.","id":"14239","runtime":102,"imdbId":"tt0104009","version":192,"lastModified":"1301902505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4c5f8e2c5e73d63462000063\/cool-world-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Cool World","releaseDate":710726400000,"language":"en","type":"Movie","_key":"58470"} +{"label":"Michele Abrams","version":22,"id":"77012","lastModified":"1301901511000","name":"Michele Abrams","type":"Person","_key":"58471"} +{"label":"Janni Brenn","version":22,"id":"77014","lastModified":"1301901690000","name":"Janni Brenn","type":"Person","_key":"58472"} +{"label":"William Frankfather","version":23,"id":"77015","lastModified":"1301901604000","name":"William Frankfather","type":"Person","_key":"58473"} +{"label":"Michael David Lally","version":22,"id":"77017","lastModified":"1301901766000","name":"Michael David Lally","type":"Person","_key":"58474"} +{"label":"Carrie Hamilton","version":22,"id":"77018","lastModified":"1301901769000","name":"Carrie Hamilton","type":"Person","_key":"58475"} +{"label":"Stephen Worth","version":21,"id":"77019","lastModified":"1301901553000","name":"Stephen Worth","type":"Person","_key":"58476"} +{"label":"Murray Podwal","version":21,"id":"77020","lastModified":"1301901636000","name":"Murray Podwal","type":"Person","_key":"58477"} +{"label":"Jenine Jennings","version":21,"id":"77021","lastModified":"1301901934000","name":"Jenine Jennings","type":"Person","_key":"58478"} +{"label":"Maniac Cop","description":"In New York, people are slain and strangled to death brutally on the open street. All witnesses agree that the murderer was in a cop's uniform. Soon the police searches and finds a suspect in its own ranks: Jack Forrest, turned in by his own wife. To prove his innocence, he has to investigate on his own.","id":"14240","runtime":85,"imdbId":"tt0095583","trailer":"http:\/\/www.youtube.com\/watch?v=hAkb0cNsf0I","version":115,"lastModified":"1301906472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4bc94203017a3c57fe01c197\/maniac-cop-mid.jpg","genre":"Action","title":"Maniac Cop","releaseDate":579484800000,"language":"en","type":"Movie","_key":"58479"} +{"label":"Laurene Landon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/143\/4c2259b47b9aa13753000143\/laurene-landon-profile.jpg","version":28,"id":"76465","lastModified":"1301902029000","name":"Laurene Landon","type":"Person","_key":"58480"} +{"label":"7 Faces of Dr. Lao","description":"An old Chinese gentleman rides into the town of Abalone, Arizona and changes it forever, as the citizens see themselves reflected in the mirror of Lao's mysterious circus of mythical beasts.","id":"14241","runtime":100,"imdbId":"tt0057812","version":131,"lastModified":"1301904618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a0\/4bc94204017a3c57fe01c1a0\/7-faces-of-dr-lao-mid.jpg","genre":"Drama","title":"7 Faces of Dr. Lao","releaseDate":-182736000000,"language":"en","type":"Movie","_key":"58481"} +{"label":"American Movie","description":"AMERICAN MOVIE is the story of filmmaker Mark Borchardt, his mission, and his dream. Spanning over two years of intense struggle with his film, his family, financial decline, and spiritual crisis, AMERICAN MOVIE is a portrayal of ambition, obsession, excess, and one man's quest for the American Dream.","id":"14242","runtime":107,"imdbId":"tt0181288","version":180,"lastModified":"1301905037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4c5152d85e73d632be000064\/american-movie-mid.jpg","genre":"Documentary","title":"American Movie","releaseDate":915148800000,"language":"en","type":"Movie","_key":"58482"} +{"label":"Mike Schank","version":22,"id":"84924","lastModified":"1301902677000","name":"Mike Schank","type":"Person","_key":"58483"} +{"label":"Wild Style","description":"Legendary New York graffiti artist Lee Quinones plays the part of Zoro, the city's hottest and most elusive graffiti writer. The actual story of the movie concerns the tension between Zoro's passion for his art and his personal life, particularly his strained relationship with fellow artist Rose","id":"14243","runtime":82,"imdbId":"tt0084904","version":260,"lastModified":"1302057939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b6\/4bc94205017a3c57fe01c1b6\/wild-style-mid.jpg","title":"Wild Style","releaseDate":410227200000,"language":"en","type":"Movie","_key":"58484"} +{"label":"Grandmaster Flash","version":18,"id":"82756","lastModified":"1301902326000","name":"Grandmaster Flash","type":"Person","_key":"58485"} +{"label":"Patti Astor","version":18,"id":"82757","lastModified":"1301902504000","name":"Patti Astor","type":"Person","_key":"58486"} +{"label":"Chris Rock: Kill the Messenger","description":"An HBO special edited from three performances from Chris Rock's 2008 comedy tour: London (dark suit, dark shirt), Johannesburg (black suit, white shirt) and New York (shiny jacket). Topics include the ongoing presidential campaign, the possibility of a black president, George W. Bush, gas prices, low-paid jobs, ringtones and bottled water, sex, relationships and the correct use of the n-word","id":"14244","runtime":79,"imdbId":"tt1213574","version":161,"lastModified":"1302057606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13c\/4c9246805e73d626ed00013c\/chris-rock-kill-the-messenger-mid.jpg","studio":"CR Enterprises","genre":"Comedy","title":"Chris Rock: Kill the Messenger","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"58487"} +{"label":"Marty Callner","version":40,"id":"80172","lastModified":"1301901957000","name":"Marty Callner","type":"Person","_key":"58488"} +{"label":"Sniper 2","description":"Sergeant Thomas Beckett (Berenger) is back - and this time he has teamed up with death row inmate B.J. Cole (Woodbine) on a suicide mission to the Balkans. Their target: a rogue general accused of running ethnic cleansing missions. But when Becket discovers that the government is using him as a pawn in a bigger mission, the body count grows and bullets really start to fly.","id":"14245","runtime":97,"imdbId":"tt0338450","version":218,"lastModified":"1302057288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d4\/4bc9420b017a3c57fe01c1d4\/sniper-2-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Sniper 2","releaseDate":1041033600000,"language":"en","type":"Movie","_key":"58489"} +{"label":"Tam\u00e1s Pusk\u00e1s","version":20,"id":"76469","lastModified":"1301901720000","name":"Tam\u00e1s Pusk\u00e1s","type":"Person","_key":"58490"} +{"label":"Dan Butler","version":24,"id":"76470","lastModified":"1301901720000","name":"Dan Butler","type":"Person","_key":"58491"} +{"label":"Barna Illy\u00e9s","version":20,"id":"76471","lastModified":"1301902244000","name":"Barna Illy\u00e9s","type":"Person","_key":"58492"} +{"label":"Ferenc Kov\u00e1cs","version":20,"id":"76472","lastModified":"1301902244000","name":"Ferenc Kov\u00e1cs","type":"Person","_key":"58493"} +{"label":"Can Togay","version":20,"id":"76473","lastModified":"1301902244000","name":"Can Togay","type":"Person","_key":"58494"} +{"label":"B\u00e9la J\u00e1ki","version":20,"id":"76474","lastModified":"1301902244000","name":"B\u00e9la J\u00e1ki","type":"Person","_key":"58495"} +{"label":"L\u00e1szl\u00f3 \u00c1ron","version":20,"id":"76475","lastModified":"1301902244000","name":"L\u00e1szl\u00f3 \u00c1ron","type":"Person","_key":"58496"} +{"label":"Sniper","description":"One Man - 3 Impossible situations. Tom Berenger plays the role of a Marine Sniper expert brought out of retirement to help resolve the situation. Completing the mission is a must but what sacrifice will he have to make to succeed.","id":"14246","version":262,"lastModified":"1301923379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9de\/4be48a1f017a3c35b70009de\/sniper-mid.jpg","genre":"Action","title":"Sniper","language":"en","type":"Movie","_key":"58497"} +{"label":"Sniper 3","description":"Master Gunnery Sergeant Thomas Beckett is the U.S. Marine Corps' most decorated sniper. His has taken out warlords, drug lords, assassins, and bitter foes. This time, he's going after a friend.","id":"14247","runtime":97,"imdbId":"tt0408196","version":262,"lastModified":"1302056684000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e6\/4bc9420c017a3c57fe01c1e6\/sniper-3-mid.jpg","studio":"Destination Films","genre":"Action","title":"Sniper 3","releaseDate":1098144000000,"language":"en","type":"Movie","_key":"58498"} +{"label":"Troy Winbush","version":21,"id":"76476","lastModified":"1301902175000","name":"Troy Winbush","type":"Person","_key":"58499"} +{"label":"Nophand Boonyai","version":22,"id":"76477","lastModified":"1301901609000","name":"Nophand Boonyai","type":"Person","_key":"58500"} +{"label":"Govit Vattanakun","version":20,"id":"76479","lastModified":"1301901866000","name":"Govit Vattanakun","type":"Person","_key":"58501"} +{"label":"Igor","description":"Animated fable about a clich\u00e9 hunchbacked evil scientist's assistant who aspires to become a scientist himself, much to the displeasure of the rest of the evil science community.","id":"14248","runtime":87,"imdbId":"tt0465502","version":222,"lastModified":"1301922769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4bc9420d017a3c57fe01c1f4\/igor-mid.jpg","studio":"Exodus Film Group","genre":"Animation","title":"Igor","releaseDate":1221782400000,"language":"en","type":"Movie","_key":"58502"} +{"label":"Myleene Klass","version":23,"id":"76490","lastModified":"1301901686000","name":"Myleene Klass","type":"Person","_key":"58503"} +{"label":"Robin Walsh","version":23,"id":"76491","lastModified":"1301901590000","name":"Robin Walsh","type":"Person","_key":"58504"} +{"label":"Matt McKenna","version":23,"id":"76492","lastModified":"1301901514000","name":"Matt McKenna","type":"Person","_key":"58505"} +{"label":"Anthony Leondis","version":28,"id":"89112","lastModified":"1301902181000","name":"Anthony Leondis","type":"Person","_key":"58506"} +{"label":"Revenge","description":"Michael \"Jay\" Cochran has just left the Navy after 12 years. He's not quite sure what he's going to do, except that he knows he wants a holiday. He decides to visit Tiburon Mendez, a powerful but shady Mexican businessman who he once flew to Alaska for a hunting trip. Arriving at the Mendez mansion in Mexico, he is immediately surprised by the beauty and youth of Mendez' wife Miryea","id":"14249","runtime":104,"imdbId":"tt0100485","trailer":"http:\/\/www.youtube.com\/watch?v=QILIRoDUiNU","version":384,"lastModified":"1301903398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/103\/4d72703a5e73d6699c000103\/revenge-mid.jpg","studio":" Columbia Pictures","genre":"Drama","title":"Revenge","releaseDate":635126400000,"language":"en","type":"Movie","_key":"58507"} +{"label":"Weirdsville","description":"A pair of slackers get in way over their heads when they try to dump the body of a dead girlfriend in the basement of a drive-in movie theater where a satanic cult performs ritual sacrifices.","id":"14251","runtime":90,"imdbId":"tt0758798","homepage":"http:\/\/www.weirdsville-the-movie.com\/","version":133,"lastModified":"1301906472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20e\/4bc9420f017a3c57fe01c20e\/weirdsville-mid.jpg","genre":"Comedy","title":"Weirdsville","releaseDate":1192147200000,"language":"en","type":"Movie","_key":"58508"} +{"label":"Raoul Bhaneja","version":26,"id":"43243","lastModified":"1301902186000","name":"Raoul Bhaneja","type":"Person","_key":"58509"} +{"label":"Vice","description":"No overview found.","id":"14252","runtime":99,"imdbId":"tt0762145","homepage":"http:\/\/www.vicethemovie.com\/","version":131,"lastModified":"1301881562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/217\/4bc94213017a3c57fe01c217\/vice-mid.jpg","studio":"Arcview Entertainment","genre":"Action","title":"Vice","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"58510"} +{"label":"The Uninvited","description":"Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father, Steven. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.","id":"14254","runtime":87,"imdbId":"tt0815245","homepage":"http:\/\/www.uninvitedmovie.com","version":432,"lastModified":"1302054247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4c453ab27b9aa15de0000048\/the-uninvited-mid.jpg","studio":"Cold Spring Pictures","genre":"Drama","title":"The Uninvited","releaseDate":1233273600000,"language":"en","type":"Movie","_key":"58511"} +{"label":"Charles Guard","version":23,"id":"81201","lastModified":"1301901992000","name":"Charles Guard","type":"Person","_key":"58512"} +{"label":"Pulse 3","description":"Seven years after the last attack by the \"soulless ghosts\" who haunted the human race twice before, the world is left void of all deadly electronics that almost destroyed it... or so we thought. Living a primitive existence on the outskirts of the city, human survivors are surviving without any trace of technology. That is until 16 year old Justine enters the city and, letting her curiosity get the best of her, opens a working laptop and unknowingly unleashes the most terrifying attack the survi","id":"14255","runtime":0,"imdbId":"tt1323946","version":318,"lastModified":"1302053572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4bc94216017a3c57fe01c240\/pulse-3-mid.jpg","genre":"Horror","title":"Pulse 3","releaseDate":1229990400000,"language":"en","type":"Movie","_key":"58513"} +{"label":"Brittany Renee Finamore","version":19,"id":"98275","lastModified":"1301902415000","name":"Brittany Renee Finamore","type":"Person","_key":"58514"} +{"label":"Snowy Highfield","version":25,"id":"119557","lastModified":"1301903044000","name":"Snowy Highfield","type":"Person","_key":"58515"} +{"label":"Winter Passing","description":"Actress Reese Holden has been offered a small fortune by a book editor if she can secure for publication the love letters that her father, a reclusive novelist, wrote to her mother, who has since passed away. Returning to Michigan, Reese finds that an ex-grad student and a would-be musician have moved in with her father, who cares more about his new friends than he does about his own health and we","id":"14256","runtime":98,"imdbId":"tt0380817","version":139,"lastModified":"1301904768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24d\/4bc94217017a3c57fe01c24d\/winter-passing-mid.jpg","genre":"Comedy","title":"Winter Passing","releaseDate":1126310400000,"language":"en","type":"Movie","_key":"58516"} +{"label":"Delusions of Grandeur","description":"Don Sallust (Louis de Fun\u00e8s) is minister of the King of Spain. It is a being disingenuous, hypocritical and greedy that collects the taxes himself, he turns in part to his advantage. He is hated by the people he oppresse.Accus\u00e9 by Queen, a beautiful princess Bavarian, of having an illegitimate child to one of her maids of honor, he was stripped of his duties and ordered to retire to a monastery. Decided to revenge, it comes in contact with his nephew seducing Caesar ...","id":"14257","runtime":108,"imdbId":"tt0067108","version":74,"lastModified":"1301903970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/487\/4d110c457b9aa1147a000487\/la-folie-des-grandeurs-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Delusions of Grandeur","releaseDate":186192000000,"language":"en","type":"Movie","_key":"58517"} +{"label":"Karin Schubert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d9\/4bf18316017a3c32170001d9\/karin-schubert-profile.jpg","version":33,"id":"76493","lastModified":"1302024945000","name":"Karin Schubert","type":"Person","_key":"58518"} +{"label":"Wonderful Days","description":"Civilization has been destroyed by war and pollution, but the survivors have built the last city of Ecoban. As most natural resources have been exhausted, Ecoban is powered by pollution. The citizens of Ecoban need to continue creating this pollution leading them into conflict with the inhabitants of Marr while one man just wants to clear away the clouds and see the sky.","id":"14258","runtime":86,"imdbId":"tt0353014","version":68,"lastModified":"1301903028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/274\/4bc9421b017a3c57fe01c274\/wonderful-days-mid.jpg","genre":"Animation","title":"Wonderful Days","releaseDate":1058400000000,"language":"en","type":"Movie","_key":"58519"} +{"label":"Desperate Living","description":"A rich housewife enlists her maid's help to murder her husband; they go on the lam and end up in Mortville, a homeless community built into a garbage dump.","id":"14262","runtime":90,"imdbId":"tt0075936","trailer":"http:\/\/www.youtube.com\/watch?v=845","version":141,"lastModified":"1302051790000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/286\/4bc9421f017a3c57fe01c286\/desperate-living-mid.jpg","studio":"Charm City Productions","genre":"Comedy","title":"Desperate Living","releaseDate":233539200000,"language":"en","type":"Movie","_key":"58520"} +{"label":"Susan Lowe","version":23,"id":"76495","lastModified":"1301902244000","name":"Susan Lowe","type":"Person","_key":"58521"} +{"label":"Jean Hill","version":21,"id":"76496","lastModified":"1301902175000","name":"Jean Hill","type":"Person","_key":"58522"} +{"label":"Brook Yeaton","version":20,"id":"76497","lastModified":"1301902070000","name":"Brook Yeaton","type":"Person","_key":"58523"} +{"label":"Karen Gerwig","version":20,"id":"76498","lastModified":"1301902070000","name":"Karen Gerwig","type":"Person","_key":"58524"} +{"label":"Jay Allan","version":20,"id":"76499","lastModified":"1301902070000","name":"Jay Allan","type":"Person","_key":"58525"} +{"label":"Al Strapelli","version":20,"id":"76500","lastModified":"1301902070000","name":"Al Strapelli","type":"Person","_key":"58526"} +{"label":"George Stover","version":24,"id":"76501","lastModified":"1301902317000","name":"George Stover","type":"Person","_key":"58527"} +{"label":"Turkey Joe","version":20,"id":"76502","lastModified":"1301902070000","name":"Turkey Joe","type":"Person","_key":"58528"} +{"label":"Willie Brooks","version":20,"id":"76503","lastModified":"1301902244000","name":"Willie Brooks","type":"Person","_key":"58529"} +{"label":"James Yeaton","version":20,"id":"76504","lastModified":"1301902070000","name":"James Yeaton","type":"Person","_key":"58530"} +{"label":"Ed Peranio","version":24,"id":"76505","lastModified":"1301902244000","name":"Ed Peranio","type":"Person","_key":"58531"} +{"label":"Steve Butow","version":21,"id":"76506","lastModified":"1301902175000","name":"Steve Butow","type":"Person","_key":"58532"} +{"label":"Hip-Hop: Beyond Beats & Rhymes","description":"No overview found.","id":"14263","runtime":0,"imdbId":"tt0976039","version":36,"lastModified":"1301907386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/294\/4bc94220017a3c57fe01c294\/hip-hop-beyond-beats-rhymes-mid.jpg","title":"Hip-Hop: Beyond Beats & Rhymes","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"58533"} +{"label":"Hip Hop Immortals We Got Your Kids","description":"No overview found.","id":"14264","runtime":0,"imdbId":"tt0395166","version":83,"lastModified":"1301919287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4bc94220017a3c57fe01c29d\/hip-hop-immortals-we-got-your-kids-mid.jpg","genre":"Documentary","title":"Hip Hop Immortals We Got Your Kids","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"58534"} +{"label":"Hip Hop Legends","description":"No overview found.","id":"14265","runtime":0,"imdbId":"tt0961203","version":100,"lastModified":"1302072394000","genre":"Documentary","title":"Hip Hop Legends","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58535"} +{"label":"Infamy","description":"No overview found.","id":"14266","runtime":0,"imdbId":"tt0462360","version":95,"lastModified":"1301946663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2aa\/4bc94221017a3c57fe01c2aa\/infamy-mid.jpg","genre":"Documentary","title":"Infamy","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58536"} +{"label":"Female Trouble","description":"A spoiled schoolgirl runs away from home, gets pregnant while hitchhiking, and ends up as a fashion model for a pair of beauticians who like to photograph women committing crimes.","id":"14267","runtime":97,"imdbId":"tt0072979","trailer":"http:\/\/www.youtube.com\/watch?v=847","version":114,"lastModified":"1301903203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b8\/4bc94222017a3c57fe01c2b8\/female-trouble-mid.jpg","studio":"Dreamland Productions","genre":"Comedy","title":"Female Trouble","releaseDate":150076800000,"language":"en","type":"Movie","_key":"58537"} +{"label":"Michael Potter","version":20,"id":"76515","lastModified":"1301902244000","name":"Michael Potter","type":"Person","_key":"58538"} +{"label":"Paul Swift","version":20,"id":"76516","lastModified":"1301902244000","name":"Paul Swift","type":"Person","_key":"58539"} +{"label":"George Figgs","version":20,"id":"76517","lastModified":"1301902244000","name":"George Figgs","type":"Person","_key":"58540"} +{"label":"George Hulse","version":19,"id":"76518","lastModified":"1301902244000","name":"George Hulse","type":"Person","_key":"58541"} +{"label":"Startup.com","description":"Friends since high school, 20-somethings Kaleil Isaza Tuzman and Tom Herman have an idea: a Web site for people to conduct business with municipal governments. This documentary tracks the rise and fall of govWorks.com from May of 1999 to December of 2000, and the trials the business brings to the relationship of these best friends. Kaleil raises the money, Tom's the technical chief. A third partner wants a buy out; girlfriends come and go; Tom's daughter needs attention. And always the need for ","id":"14268","runtime":107,"imdbId":"tt0256408","trailer":"http:\/\/www.youtube.com\/watch?v=bZ27rbJH6hI","version":200,"lastModified":"1302071892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4d6833365e73d66b3500023b\/startup-com-mid.jpg","studio":"Noujaim Films","genre":"Documentary","title":"Startup.com","releaseDate":978307200000,"language":"en","type":"Movie","_key":"58542"} +{"label":"Chris Hegedus","version":22,"id":"115891","lastModified":"1301902546000","name":"Chris Hegedus","type":"Person","_key":"58543"} +{"label":"Jehane Noujaim","version":17,"id":"115892","lastModified":"1301902172000","name":"Jehane Noujaim","type":"Person","_key":"58544"} +{"label":"Polyester","description":"A suburban housewife's world falls apart when her pornographer husband admits he's serially unfaithful to her, her daughter gets pregnant, and her son is suspected of being the foot-fetishist who's been breaking local women's feet.","id":"14269","runtime":86,"imdbId":"tt0082926","trailer":"http:\/\/www.youtube.com\/watch?v=848","version":179,"lastModified":"1302071672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cf\/4bc94224017a3c57fe01c2cf\/polyester-mid.png","studio":"New Line Cinema","genre":"Comedy","title":"Polyester","releaseDate":359942400000,"language":"en","type":"Movie","_key":"58545"} +{"label":"Tab Hunter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/937\/4c654b487b9aa172de000937\/tab-hunter-profile.jpg","version":29,"id":"76519","lastModified":"1301901429000","name":"Tab Hunter","type":"Person","_key":"58546"} +{"label":"David Samson","version":19,"id":"76520","lastModified":"1301901609000","name":"David Samson","type":"Person","_key":"58547"} +{"label":"Mary Garlington","version":19,"id":"76521","lastModified":"1301902070000","name":"Mary Garlington","type":"Person","_key":"58548"} +{"label":"Ken King","version":19,"id":"76522","lastModified":"1301901609000","name":"Ken King","type":"Person","_key":"58549"} +{"label":"Joni Ruth White","version":19,"id":"76523","lastModified":"1301902070000","name":"Joni Ruth White","type":"Person","_key":"58550"} +{"label":"Hans Kramm","version":19,"id":"76524","lastModified":"1301902070000","name":"Hans Kramm","type":"Person","_key":"58551"} +{"label":"Beyond the Mat","description":"Beyond the Mat is a 1999 professional wrestling documentary, directed by Barry W. Blaustein. The movie focuses on the lives of professional wrestlers outside of the ring, especially Mick Foley, Terry Funk, and Jake Roberts. The film heavily focuses on the World Wrestling Federation (WWF), often criticizing it and its chairman Vince McMahon. It also follows Extreme Championship Wrestling, it's rise in popularity, and many other independent wrestlers and organizations.","id":"14271","runtime":102,"imdbId":"tt0218043","version":252,"lastModified":"1302071518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/075\/4bdc22f0017a3c1d30000075\/beyond-the-mat-mid.jpg","studio":"Universal Pictures","genre":"Documentary","title":"Beyond the Mat","releaseDate":940550400000,"language":"en","type":"Movie","_key":"58552"} +{"label":"Mick Foley","version":21,"id":"77763","lastModified":"1301901444000","name":"Mick Foley","type":"Person","_key":"58553"} +{"label":"Jake Roberts","version":17,"id":"79027","lastModified":"1301901562000","name":"Jake Roberts","type":"Person","_key":"58554"} +{"label":"Vince McMahon","version":43,"id":"57342","lastModified":"1301901948000","name":"Vince McMahon","type":"Person","_key":"58555"} +{"label":"Chan is Missing","description":"No overview found.","id":"14272","runtime":80,"imdbId":"tt0083728","version":90,"lastModified":"1301945114000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4c2681d67b9aa1446900021f\/chan-is-missing-mid.jpg","genre":"Action","title":"Chan is Missing","releaseDate":378691200000,"language":"en","type":"Movie","_key":"58556"} +{"label":"Wood Moy","version":20,"id":"123175","lastModified":"1301902714000","name":"Wood Moy","type":"Person","_key":"58557"} +{"label":"Laureen Chew","version":20,"id":"123176","lastModified":"1301903074000","name":"Laureen Chew","type":"Person","_key":"58558"} +{"label":"Peter Wang","version":20,"id":"123177","lastModified":"1301902540000","name":"Peter Wang","type":"Person","_key":"58559"} +{"label":"Presco Tabios","version":20,"id":"123178","lastModified":"1301903068000","name":"Presco Tabios","type":"Person","_key":"58560"} +{"label":"Dark Days","description":"A cinematic portrait of the homeless population who live permanently in the underground tunnels of New York City.","id":"14273","runtime":94,"imdbId":"tt0235327","version":109,"lastModified":"1301904382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc94226017a3c57fe01c2e5\/dark-days-mid.jpg","genre":"Documentary","title":"Dark Days","releaseDate":952560000000,"language":"en","type":"Movie","_key":"58561"} +{"label":"The Heart of the Game","description":"The Heart of the Game captures the passion and energy of a Seattle high school girls' basketball team as they strive to win the state championship, the eccentricity of their unorthodox coach, and the incredible true story of one player's fight to play the game she loves.","id":"14274","runtime":97,"imdbId":"tt0478166","version":122,"lastModified":"1302046224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7d\/4d4609017b9aa15bb5007e7d\/the-heart-of-the-game-mid.jpg","genre":"Documentary","title":"The Heart of the Game","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58562"} +{"label":"Ward Serrill","version":13,"id":"222701","lastModified":"1301903974000","name":"Ward Serrill","type":"Person","_key":"58563"} +{"label":"Hoop Dreams","description":"This documentary follows two inner-city Chicago residents, Arthur Agee and William Gates, as they follow their dreams of becoming basketball superstars. Beginning at the start of their high school years, and ending almost 5 years later, as they start college, we watch the boys mature into men, still retaining their \"Hoop Dreams\".","id":"14275","runtime":171,"imdbId":"tt0110057","trailer":"http:\/\/www.youtube.com\/watch?v=Ph2Y-epihlk","version":161,"lastModified":"1302070758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f7\/4bc9422a017a3c57fe01c2f7\/hoop-dreams-mid.jpg","genre":"Documentary","title":"Hoop Dreams","releaseDate":782092800000,"language":"en","type":"Movie","_key":"58564"} +{"label":"William Gates","version":19,"id":"134119","lastModified":"1301902656000","name":"William Gates","type":"Person","_key":"58565"} +{"label":"Arthur Agee","version":19,"id":"134120","lastModified":"1301902643000","name":"Arthur Agee","type":"Person","_key":"58566"} +{"label":"Steve James","version":31,"id":"122449","lastModified":"1301902222000","name":"Steve James","type":"Person","_key":"58567"} +{"label":"A Lawyer Walks Into a Bar...","description":"A lurid tale of lawsuits and lawyers and America's obsession with both.","id":"14276","runtime":92,"imdbId":"tt0914850","version":102,"lastModified":"1302045159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e77\/4d4608b47b9aa15bb5007e77\/a-lawyer-walks-into-a-bar-mid.jpg","genre":"Documentary","title":"A Lawyer Walks Into a Bar...","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58568"} +{"label":"Eric Chaikin","version":23,"id":"113370","lastModified":"1301903039000","name":"Eric Chaikin","type":"Person","_key":"58569"} +{"label":"Loose Change: Second Edition","description":"Loose Change is a documentary written and narrated by Dylan Avery which presents a rebuttal to the official version of events during the September 11, 2001 Terrorist Attacks and the 9\/11 Commission Report. It alleges that the attacks were not the result of terrorism but a series of cleverly executed events carried out by the US government.","id":"14277","runtime":100,"imdbId":"tt0831315","version":61,"lastModified":"1301905296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/308\/4bc9422b017a3c57fe01c308\/loose-change-second-edition-mid.png","studio":"Polar Film Medien GmbH","genre":"Documentary","title":"Loose Change: Second Edition","releaseDate":1185235200000,"language":"en","type":"Movie","_key":"58570"} +{"label":"Murderball","description":"A film about paraplegics who play full-contact rugby in Mad Max-style wheelchairs - overcoming unimaginable obstacles to compete in the Paralympic Games in Athens, Greece. ","id":"14278","runtime":88,"imdbId":"tt0436613","version":185,"lastModified":"1302070119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/316\/4bc9422d017a3c57fe01c316\/murderball-mid.jpg","studio":"Paramount Pictures","genre":"Documentary","title":"Murderball","releaseDate":1106438400000,"language":"en","type":"Movie","_key":"58571"} +{"label":"Henry Alex Rubin","version":19,"id":"82839","lastModified":"1301902504000","name":"Henry Alex Rubin","type":"Person","_key":"58572"} +{"label":"Dana Adam Shapiro","version":23,"id":"82840","lastModified":"1301902504000","name":"Dana Adam Shapiro","type":"Person","_key":"58573"} +{"label":"Joe Bishop","version":20,"id":"82841","lastModified":"1301902533000","name":"Joe Bishop","type":"Person","_key":"58574"} +{"label":"Keith Cavill","version":19,"id":"82842","lastModified":"1301902504000","name":"Keith Cavill","type":"Person","_key":"58575"} +{"label":"Andy Cohn","version":19,"id":"82843","lastModified":"1301902504000","name":"Andy Cohn","type":"Person","_key":"58576"} +{"label":"Scott Hogsett","version":19,"id":"82844","lastModified":"1301902677000","name":"Scott Hogsett","type":"Person","_key":"58577"} +{"label":"Christopher Igoe","version":19,"id":"82845","lastModified":"1301902677000","name":"Christopher Igoe","type":"Person","_key":"58578"} +{"label":"My Kid Could Paint That","description":"A look at the work and surprising success of a four-year-old girl whose paintings have been compared to the likes of Picasso and has raked in hundreds of thousands of dollars.","id":"14279","runtime":82,"imdbId":"tt0912592","version":141,"lastModified":"1302043223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/323\/4bc9422e017a3c57fe01c323\/my-kid-could-paint-that-mid.jpg","genre":"Documentary","title":"My Kid Could Paint That","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58579"} +{"label":"Amir Bar-Lev","version":18,"id":"91452","lastModified":"1301902175000","name":"Amir Bar-Lev","type":"Person","_key":"58580"} +{"label":"Never Cry Wolf","description":"No overview found.","id":"14280","runtime":105,"imdbId":"tt0086005","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=Izb0ScZSBpk","version":230,"lastModified":"1302042346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/417\/4c596fb27b9aa151f3000417\/never-cry-wolf-mid.jpg","studio":"Walt Disney Productions","genre":"Action","title":"Never Cry Wolf","releaseDate":410227200000,"language":"en","tagline":"A True Story","type":"Movie","_key":"58581"} +{"label":"Zachary Ittimangnaq","version":20,"id":"127533","lastModified":"1301902589000","name":"Zachary Ittimangnaq","type":"Person","_key":"58582"} +{"label":"Samson Jorah","version":20,"id":"127534","lastModified":"1301902799000","name":"Samson Jorah","type":"Person","_key":"58583"} +{"label":"Hugh Webster","version":22,"id":"126564","lastModified":"1301902804000","name":"Hugh Webster","type":"Person","_key":"58584"} +{"label":"Ninja Scroll","description":"Jubei is a wandering noble sword for hire, but when a chance meeting leads him to save a young ninja woman from rape, he makes enemies with a group of demonic humans. Jubei and the woman part ways but later a government spy forces Jubei to join up with her again and investigate the mysterious death of an entire village.","id":"14282","runtime":94,"imdbId":"tt0107692","trailer":"http:\/\/www.youtube.com\/watch?v=1918","version":303,"lastModified":"1302069378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/338\/4bc9422f017a3c57fe01c338\/jubei-ninpucho-mid.jpg","studio":"Animaze","genre":"Action","title":"Ninja Scroll","releaseDate":739238400000,"language":"en","type":"Movie","_key":"58585"} +{"label":"Emi Shinohara","version":23,"id":"81851","lastModified":"1301901843000","name":"Emi Shinohara","type":"Person","_key":"58586"} +{"label":"Takeshi Aono","version":21,"id":"81852","lastModified":"1301901720000","name":"Takeshi Aono","type":"Person","_key":"58587"} +{"label":"Kevin Seymour","version":19,"id":"104712","lastModified":"1301902705000","name":"Kevin Seymour","type":"Person","_key":"58588"} +{"label":"Tatsuo Sato","version":22,"id":"104688","lastModified":"1301901776000","name":"Tatsuo Sato","type":"Person","_key":"58589"} +{"label":"The Red Violin","description":"Spans 300 years in the life of one famed musical instrument that winds up in present-day Montreal on the auction block. Crafted by the Italian master Bussotti (Cecchi) in 1681, the red violin derives its unusual color from the human blood mixed into the finish. With this legacy, the violin travels to Austria, England, China, and Canada, leaving both beauty and tragedy in its wake.","id":"14283","runtime":131,"imdbId":"tt0120802","version":279,"lastModified":"1302041138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92e\/4d8555605e73d6539b00392e\/le-violon-rouge-mid.jpg","studio":"Rhombus Media","genre":"Drama","title":"The Red Violin","releaseDate":927331200000,"language":"en","type":"Movie","_key":"58590"} +{"label":"Fran\u00e7ois Girard","version":29,"id":"78012","lastModified":"1301901562000","name":"Fran\u00e7ois Girard","type":"Person","_key":"58591"} +{"label":"Carlo Cecchi","version":20,"id":"96974","lastModified":"1301902439000","name":"Carlo Cecchi","type":"Person","_key":"58592"} +{"label":"Irene Grazioli","version":16,"id":"141715","lastModified":"1301902218000","name":"Irene Grazioli","type":"Person","_key":"58593"} +{"label":"Anita Laurenzi","version":16,"id":"141716","lastModified":"1301902414000","name":"Anita Laurenzi","type":"Person","_key":"58594"} +{"label":"Tommaso Puntelli","version":16,"id":"141717","lastModified":"1301902218000","name":"Tommaso Puntelli","type":"Person","_key":"58595"} +{"label":"Samuele Amighetti","version":17,"id":"141718","lastModified":"1301902364000","name":"Samuele Amighetti","type":"Person","_key":"58596"} +{"label":"Aldo Brugnini","version":16,"id":"141719","lastModified":"1301902218000","name":"Aldo Brugnini","type":"Person","_key":"58597"} +{"label":"Christoph Koncz","version":16,"id":"141720","lastModified":"1301902218000","name":"Christoph Koncz","type":"Person","_key":"58598"} +{"label":"Florent\u00edn Groll","version":18,"id":"134467","lastModified":"1301902218000","name":"Florent\u00edn Groll","type":"Person","_key":"58599"} +{"label":"Rainer Egger","version":18,"id":"141721","lastModified":"1301902218000","name":"Rainer Egger","type":"Person","_key":"58600"} +{"label":"Paul Koeker","version":16,"id":"141722","lastModified":"1301902313000","name":"Paul Koeker","type":"Person","_key":"58601"} +{"label":"Josef Mairginter","version":16,"id":"141723","lastModified":"1301902218000","name":"Josef Mairginter","type":"Person","_key":"58602"} +{"label":"Johan Gotsch","version":16,"id":"141724","lastModified":"1301902215000","name":"Johan Gotsch","type":"Person","_key":"58603"} +{"label":"Geza Hosszu-Legocky","version":16,"id":"141725","lastModified":"1301902213000","name":"Geza Hosszu-Legocky","type":"Person","_key":"58604"} +{"label":"David Alberman","version":16,"id":"141726","lastModified":"1301902213000","name":"David Alberman","type":"Person","_key":"58605"} +{"label":"Arthur Denberg","version":16,"id":"141727","lastModified":"1301902215000","name":"Arthur Denberg","type":"Person","_key":"58606"} +{"label":"Andrzej Matuszewiski","version":16,"id":"141728","lastModified":"1301902214000","name":"Andrzej Matuszewiski","type":"Person","_key":"58607"} +{"label":"Eva Marie Bryer","version":16,"id":"141729","lastModified":"1301902049000","name":"Eva Marie Bryer","type":"Person","_key":"58608"} +{"label":"Zifeng Liu","version":17,"id":"130867","lastModified":"1301902582000","name":"Zifeng Liu","type":"Person","_key":"58609"} +{"label":"Hong Tao","version":17,"id":"134122","lastModified":"1301902489000","name":"Hong Tao","type":"Person","_key":"58610"} +{"label":"Xio Fei Han","version":17,"id":"141730","lastModified":"1301902352000","name":"Xio Fei Han","type":"Person","_key":"58611"} +{"label":"Zheng Wei Tan","version":16,"id":"141731","lastModified":"1301902218000","name":"Zheng Wei Tan","type":"Person","_key":"58612"} +{"label":"Zhi Qing Zhou","version":16,"id":"141732","lastModified":"1301902218000","name":"Zhi Qing Zhou","type":"Person","_key":"58613"} +{"label":"Zhi Qiao","version":16,"id":"141733","lastModified":"1301902218000","name":"Zhi Qiao","type":"Person","_key":"58614"} +{"label":"Kun Qi Cao","version":16,"id":"141734","lastModified":"1301902218000","name":"Kun Qi Cao","type":"Person","_key":"58615"} +{"label":"Rei Yang","version":16,"id":"141735","lastModified":"1301902218000","name":"Rei Yang","type":"Person","_key":"58616"} +{"label":"Lidou","version":16,"id":"141736","lastModified":"1301902218000","name":"Lidou","type":"Person","_key":"58617"} +{"label":"Ireneusz Bogajewicz","version":16,"id":"141738","lastModified":"1301902218000","name":"Ireneusz Bogajewicz","type":"Person","_key":"58618"} +{"label":"Paula de Vasconcelos","version":16,"id":"141739","lastModified":"1301902308000","name":"Paula de Vasconcelos","type":"Person","_key":"58619"} +{"label":"Marie-Jos\u00e9e Gauthier","version":16,"id":"141740","lastModified":"1301902218000","name":"Marie-Jos\u00e9e Gauthier","type":"Person","_key":"58620"} +{"label":"Dany Laferri\u00e8re","version":18,"id":"17422","lastModified":"1301901625000","name":"Dany Laferri\u00e8re","type":"Person","_key":"58621"} +{"label":"Gregory Hlady","version":16,"id":"141741","lastModified":"1301902218000","name":"Gregory Hlady","type":"Person","_key":"58622"} +{"label":"Herman Meckler","version":16,"id":"141742","lastModified":"1301901737000","name":"Herman Meckler","type":"Person","_key":"58623"} +{"label":"Sheena Macdonald","version":16,"id":"141743","lastModified":"1301901713000","name":"Sheena Macdonald","type":"Person","_key":"58624"} +{"label":"Jody Shapiro","version":16,"id":"141744","lastModified":"1301902047000","name":"Jody Shapiro","type":"Person","_key":"58625"} +{"label":"Joshua Bell","version":16,"id":"141745","lastModified":"1301901851000","name":"Joshua Bell","type":"Person","_key":"58626"} +{"label":"Sylvia Stewart","version":16,"id":"141746","lastModified":"1301901849000","name":"Sylvia Stewart","type":"Person","_key":"58627"} +{"label":"In the Shadow of the Moon","description":"IN THE SHADOW OF THE MOON combines archival material from the original NASA film footage, much of it never before seen, with interviews with the surviving astronauts, including Jim Lovell, Dave Scott, John Young, Gene Cernan, Mike Collins, Buzz Aldrin, Alan Bean, Edgar Mitchell, Charlie Duke and Harrison Schmitt. The astronauts emerge as eloquent, witty, emotional and very human.","id":"14284","runtime":109,"imdbId":"tt0925248","trailer":"http:\/\/www.youtube.com\/watch?v=h9d9-pHZzIE","version":146,"lastModified":"1302068871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34a\/4bc94230017a3c57fe01c34a\/in-the-shadow-of-the-moon-mid.jpg","genre":"Documentary","title":"In the Shadow of the Moon","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"58628"} +{"label":"David Sington","version":20,"id":"86662","lastModified":"1301901995000","name":"David Sington","type":"Person","_key":"58629"} +{"label":"Neil Armstrong","version":25,"id":"87485","lastModified":"1301902202000","name":"Neil Armstrong","type":"Person","_key":"58630"} +{"label":"Stephen Armstrong","version":20,"id":"87486","lastModified":"1301902705000","name":"Stephen Armstrong","type":"Person","_key":"58631"} +{"label":"Viola Armstrong","version":20,"id":"87487","lastModified":"1301902537000","name":"Viola Armstrong","type":"Person","_key":"58632"} +{"label":"Edgar D. Mitchell","version":20,"id":"87488","lastModified":"1301902408000","name":"Edgar D. Mitchell","type":"Person","_key":"58633"} +{"label":"The Thin Blue Line","description":"Errol Morris's unique documentary dramatically re-enacts the crime scene and investigation of a police officer's murder in Dallas.","id":"14285","runtime":103,"imdbId":"tt0096257","version":141,"lastModified":"1302021836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/353\/4bc94231017a3c57fe01c353\/the-thin-blue-line-mid.jpg","genre":"Documentary","title":"The Thin Blue Line","releaseDate":567993600000,"language":"en","type":"Movie","_key":"58634"} +{"label":"Why We Fight","description":"Is American foreign policy dominated by the idea of military supremacy? Has the military become too important in American life? Jarecki's shrewd and intelligent polemic would seem to give an affirmative answer to each of these questions.","id":"14286","runtime":98,"imdbId":"tt0436971","trailer":"http:\/\/www.youtube.com\/watch?v=1254","homepage":"http:\/\/www.sonyclassics.com\/whywefight","version":381,"lastModified":"1302043672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/360\/4bc94235017a3c57fe01c360\/why-we-fight-mid.jpg","studio":"Arte","genre":"Documentary","title":"Why We Fight","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58635"} +{"label":"Eugene Jarecki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/690\/4ca9a26c7b9aa17acc000690\/eugene-jarecki-profile.jpg","version":25,"id":"84369","lastModified":"1301902054000","name":"Eugene Jarecki","type":"Person","_key":"58636"} +{"label":"Ken Adelman","version":19,"id":"84382","lastModified":"1301902244000","name":"Ken Adelman","type":"Person","_key":"58637"} +{"label":"John Ashcroft","version":19,"id":"84383","lastModified":"1301902070000","name":"John Ashcroft","type":"Person","_key":"58638"} +{"label":"Osama Bin Laden","version":24,"id":"84384","lastModified":"1301901641000","name":"Osama Bin Laden","type":"Person","_key":"58639"} +{"label":"Robert Byrd","version":19,"id":"84385","lastModified":"1301902634000","name":"Robert Byrd","type":"Person","_key":"58640"} +{"label":"Joseph Cirincione","version":22,"id":"84386","lastModified":"1301901701000","name":"Joseph Cirincione","type":"Person","_key":"58641"} +{"label":"The Year of the Yao","description":"The Year of the Yao is a documentary film telling the first year of basketball player Yao Ming in the United States. ","id":"14287","runtime":88,"imdbId":"tt0360216","homepage":"http:\/\/www.newline.com\/properties\/yearoftheyao.html","version":131,"lastModified":"1302021247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b9\/4d46082c7b9aa15bf50028b9\/the-year-of-the-yao-mid.jpg","studio":"NBA Entertainent","genre":"Documentary","title":"The Year of the Yao","releaseDate":1095292800000,"language":"en","type":"Movie","_key":"58642"} +{"label":"Adam Del Deo","version":20,"id":"62795","lastModified":"1301902326000","name":"Adam Del Deo","type":"Person","_key":"58643"} +{"label":"James D. Stern","version":47,"id":"52159","lastModified":"1301902326000","name":"James D. Stern","type":"Person","_key":"58644"} +{"label":"Fire Down Below","description":"Martial arts star Steven Seagal stars in this action drama as Jack Taggart, an undercover agent working for the Environmental Protection Agency. When an EPA representative is murdered in a small Appalachian community, Taggart is sent in -- posing as a handyman working with a Christian relief agency -- to find out what happened.","id":"14289","runtime":105,"imdbId":"tt0119123","trailer":"http:\/\/www.youtube.com\/watch?v=pSoi0w13iPU","version":194,"lastModified":"1302067895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/381\/4bc94237017a3c57fe01c381\/fire-down-below-mid.jpg","genre":"Action","title":"Fire Down Below","releaseDate":873417600000,"language":"en","type":"Movie","_key":"58645"} +{"label":"F\u00e9lix Enr\u00edquez Alcal\u00e1","version":24,"id":"77211","lastModified":"1301901289000","name":"F\u00e9lix Enr\u00edquez Alcal\u00e1","type":"Person","_key":"58646"} +{"label":"Better Luck Tomorrow","description":"A group of over-achieving Asian-American high school seniors enjoy a power trip when they dip into extra-curricular criminal activities.","id":"14290","runtime":101,"imdbId":"tt0280477","trailer":"http:\/\/www.youtube.com\/watch?v=Bf9q7twWZlc","version":151,"lastModified":"1302036546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38e\/4bc94238017a3c57fe01c38e\/better-luck-tomorrow-mid.jpg","genre":"Crime","title":"Better Luck Tomorrow","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"58647"} +{"label":"Searching for Bobby Fischer","description":"A prepubescent chess prodigy refuses to harden himself in order to become a champion like the famous but unlikable Bobby Fischer.","id":"14291","runtime":0,"imdbId":"tt0108065","version":157,"lastModified":"1302035440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/397\/4bc94238017a3c57fe01c397\/searching-for-bobby-fischer-mid.jpg","genre":"Drama","title":"Searching for Bobby Fischer","releaseDate":725846400000,"language":"en","tagline":"Every journey begins with a single move.","type":"Movie","_key":"58648"} +{"label":"Max Pomeranc","version":21,"id":"85313","lastModified":"1301901814000","name":"Max Pomeranc","type":"Person","_key":"58649"} +{"label":"Miracle","description":"Miracle tells the true story of Herb Brooks (Russell), the player-turned-coach who led the 1980 U.S. Olympic hockey team to victory over the seemingly invincible Russian squad.","id":"14292","runtime":135,"imdbId":"tt0349825","trailer":"http:\/\/www.youtube.com\/watch?v=1698","version":165,"lastModified":"1302034869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a4\/4bc9423c017a3c57fe01c3a4\/miracle-mid.jpg","studio":"Walt Disney Pictures","genre":"Drama","title":"Miracle","releaseDate":1076025600000,"language":"en","type":"Movie","_key":"58650"} +{"label":"Eddie Cahill","version":20,"id":"25987","lastModified":"1301901866000","name":"Eddie Cahill","type":"Person","_key":"58651"} +{"label":"Patrick O'Brien Demsey","version":20,"id":"84341","lastModified":"1301902244000","name":"Patrick O'Brien Demsey","type":"Person","_key":"58652"} +{"label":"Michael Mantenuto","version":20,"id":"84342","lastModified":"1301902070000","name":"Michael Mantenuto","type":"Person","_key":"58653"} +{"label":"Poolhall Junkies","description":"A retired pool hustler is forced to pick up the stick again when his brother starts a game he can't finish.","id":"14293","runtime":99,"imdbId":"tt0273982","version":181,"lastModified":"1302066823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/729\/4d676a315e73d66a5c001729\/poolhall-junkies-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Drama","title":"Poolhall Junkies","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"58654"} +{"label":"Rick Schroder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4c5f732d5e73d63462000013\/rick-schroder-profile.jpg","version":40,"id":"76546","lastModified":"1301901278000","name":"Rick Schroder","type":"Person","_key":"58655"} +{"label":"Mars Callahan","version":24,"id":"91389","lastModified":"1301901944000","name":"Mars Callahan","type":"Person","_key":"58656"} +{"label":"Through the Fire","description":"\"Through the Fire\" chronicles the journey of Coney Island basketball star, Sebastian Telfair, from famed Lincoln High School straight to the NBA.","id":"14294","runtime":0,"imdbId":"tt0457502","version":136,"lastModified":"1302066525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4c5263f75e73d632bd00011e\/through-the-fire-mid.jpg","genre":"Comedy","title":"Through the Fire","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58657"} +{"label":"You Can Count on Me","description":"A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.","id":"14295","runtime":111,"imdbId":"tt0203230","trailer":"http:\/\/www.youtube.com\/watch?v=WfBoo0XvGfE","version":151,"lastModified":"1302066221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/500\/4d6c64cc7b9aa13631004500\/you-can-count-on-me-mid.jpg","genre":"Drama","title":"You Can Count on Me","releaseDate":946684800000,"language":"en","tagline":"A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.","type":"Movie","_key":"58658"} +{"label":"Kenneth Lonergan","version":51,"id":"30711","lastModified":"1302035866000","name":"Kenneth Lonergan","type":"Person","_key":"58659"} +{"label":"Des manchots et des hommes","description":"No overview found.","id":"14296","runtime":0,"imdbId":"tt0496501","version":29,"lastModified":"1301907348000","title":"Des manchots et des hommes","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"58660"} +{"label":"Root of All Evil?","description":"A 2-part series by Dr. Richard Dawkins investigating the negative effects of Religion on a modern society.","id":"14297","runtime":93,"imdbId":"tt0774118","version":123,"lastModified":"1302065804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cf\/4bc9423f017a3c57fe01c3cf\/root-of-all-evil-mid.jpg","title":"Root of All Evil?","releaseDate":1136764800000,"language":"en","type":"Movie","_key":"58661"} +{"label":"Richard Dawkins","version":35,"id":"76545","lastModified":"1301901242000","name":"Richard Dawkins","type":"Person","_key":"58662"} +{"label":"Yousef al-Khattab","version":20,"id":"132168","lastModified":"1301902779000","name":"Yousef al-Khattab","type":"Person","_key":"58663"} +{"label":"Ted Haggard","version":22,"id":"132169","lastModified":"1301903066000","name":"Ted Haggard","type":"Person","_key":"58664"} +{"label":"Richard Harries","version":20,"id":"132170","lastModified":"1301902563000","name":"Richard Harries","type":"Person","_key":"58665"} +{"label":"Russell Barnes","version":22,"id":"91692","lastModified":"1301902671000","name":"Russell Barnes","type":"Person","_key":"58666"} +{"label":"Somers Town","description":"Two teenagers, both newcomers to London, forge an unlikely friendship over the course of a hot summer. Tomo (Thomas Turgoose) is a runaway from Nottingham; Marek (Piotr Jagiello) lives in the district of Somers Town, between King's Cross and Euston stations, where his dad is working on a new rail link.","id":"14298","runtime":75,"imdbId":"tt1172206","homepage":"http:\/\/www.somers-town.com\/","version":141,"lastModified":"1302065581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d8\/4bc9423f017a3c57fe01c3d8\/somers-town-mid.jpg","genre":"Comedy","title":"Somers Town","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"58667"} +{"label":"Cadillac Records","description":"In this tale of sex, violence, race, and rock and roll in 1950s Chicago, \"Cadillac Records\" follows the exciting but turbulent lives of some of America's musical legends, including Muddy Waters, Leonard Chess, Little Walter, Howlin' Wolf, Etta James and Chuck Berry.","id":"14299","runtime":109,"imdbId":"tt1042877","version":320,"lastModified":"1302065233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e1\/4bc94240017a3c57fe01c3e1\/cadillac-records-mid.jpg","genre":"Drama","title":"Cadillac Records","releaseDate":1228435200000,"language":"en","type":"Movie","_key":"58668"} +{"label":"Darnell Martin","version":24,"id":"81727","lastModified":"1301902142000","name":"Darnell Martin","type":"Person","_key":"58669"} +{"label":"Dr. Horrible's Sing-Along Blog","description":"Dr. Horrible, an aspiring supervillain with his own video blog, is attempting to join the prestigious Evil League of Evil (led by the legendary \"thoroughbred of sin\", Bad Horse), but his plans are usually foiled by the egotistical superhero Captain Hammer. Dr. Horrible's life is thrown for a loop when he falls in love with Penny, a beautiful and optimistic advocate for the homeless he meets at the laundromat.","id":"14301","runtime":43,"imdbId":"tt1227926","homepage":"http:\/\/www.drhorrible.com","version":125,"lastModified":"1302064858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/407\/4bc94245017a3c57fe01c407\/dr-horrible-s-sing-along-blog-mid.jpg","studio":"Mutant Enemy","genre":"Action","title":"Dr. Horrible's Sing-Along Blog","releaseDate":1216080000000,"language":"en","tagline":"He has a Ph.D. in horribleness!","type":"Movie","_key":"58670"} +{"label":"Felicia Day","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d1\/4cd26a265e73d650200011d1\/felicia-day-profile.jpg","version":25,"id":"76527","lastModified":"1301901238000","name":"Felicia Day","type":"Person","_key":"58671"} +{"label":"Simon Helberg","version":26,"id":"53863","lastModified":"1301901279000","name":"Simon Helberg","type":"Person","_key":"58672"} +{"label":"Nick Towne","version":20,"id":"76531","lastModified":"1301901609000","name":"Nick Towne","type":"Person","_key":"58673"} +{"label":"Jed Whedon","version":23,"id":"76532","lastModified":"1301901381000","name":"Jed Whedon","type":"Person","_key":"58674"} +{"label":"Rob Reinis","version":20,"id":"76533","lastModified":"1301901429000","name":"Rob Reinis","type":"Person","_key":"58675"} +{"label":"Otto Michael Penzato","version":20,"id":"76534","lastModified":"1301901381000","name":"Otto Michael Penzato","type":"Person","_key":"58676"} +{"label":"Lance Lanfear","version":20,"id":"76535","lastModified":"1301901338000","name":"Lance Lanfear","type":"Person","_key":"58677"} +{"label":"Joss Whedon","version":77,"id":"12891","lastModified":"1301901188000","name":"Joss Whedon","type":"Person","_key":"58678"} +{"label":"Storm Boy","description":"Sensitive and heartfelt, this glorious film about a 12 year old boy and his Pelican sea bird IS set in South Australia in the 1970's. Living on an isolated island the boy meets a local aborigine and the fun begins. ","id":"14302","runtime":88,"imdbId":"tt0076767","version":86,"lastModified":"1302064477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41a\/4bc94246017a3c57fe01c41a\/storm-boy-mid.jpg","genre":"Drama","title":"Storm Boy","releaseDate":217123200000,"language":"en","type":"Movie","_key":"58679"} +{"label":"Greg Rowe","version":17,"id":"94704","lastModified":"1301902705000","name":"Greg Rowe","type":"Person","_key":"58680"} +{"label":"Tony Allison","version":18,"id":"94705","lastModified":"1301903062000","name":"Tony Allison","type":"Person","_key":"58681"} +{"label":"Michael Moody","version":17,"id":"94706","lastModified":"1301903039000","name":"Michael Moody","type":"Person","_key":"58682"} +{"label":"Graham Dow","version":16,"id":"94707","lastModified":"1301902988000","name":"Graham Dow","type":"Person","_key":"58683"} +{"label":"Eric Mack","version":16,"id":"94708","lastModified":"1301902987000","name":"Eric Mack","type":"Person","_key":"58684"} +{"label":"Henri Safran","version":16,"id":"94709","lastModified":"1301902987000","name":"Henri Safran","type":"Person","_key":"58685"} +{"label":"The Andromeda Strain","description":"A U.S. satellite crash-lands near a small town in Utah, unleashing a deadly plague that kills virtually everyone except two survivors, who may provide clues to immunizing the population. As the military attempts to quarantine the area, a team of highly specialized scientists is assembled to find a cure and stop the spread of the alien pathogen, code-named Andromeda.","id":"14305","runtime":180,"imdbId":"tt0424600","version":120,"lastModified":"1302064221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43a\/4bc94249017a3c57fe01c43a\/the-andromeda-strain-mid.jpg","genre":"Science Fiction","title":"The Andromeda Strain","releaseDate":1210464000000,"language":"en","type":"Movie","_key":"58686"} +{"label":"Christa Miller","version":12,"id":"212821","lastModified":"1301903742000","name":"Christa Miller","type":"Person","_key":"58687"} +{"label":"Marley & Me","description":"A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.","id":"14306","runtime":120,"imdbId":"tt0822832","trailer":"http:\/\/www.youtube.com\/watch?v=KR5UBtAxseo","homepage":"http:\/\/marleyandmemovie.com\/","version":205,"lastModified":"1302063834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4bc94251017a3c57fe01c47c\/marley-me-mid.jpg","studio":"Fox 2000 Pictures","genre":"Drama","title":"Marley & Me","releaseDate":1230163200000,"language":"en","tagline":"Heel the love","type":"Movie","_key":"58688"} +{"label":"Garfield on the Town","description":"No overview found.","id":"14307","runtime":0,"imdbId":"tt0295274","version":47,"lastModified":"1301905348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4bc94255017a3c57fe01c48f\/garfield-on-the-town-mid.jpg","title":"Garfield on the Town","releaseDate":410227200000,"language":"en","type":"Movie","_key":"58689"} +{"label":"I Am Trying to Break Your Heart","description":"A documentary by photographer Sam Jones documenting American rock band Wilco recording their fourth album <i>Yankee Hotel Foxtrot<\/i>. Originally intended as a showcase of the band's creative process, the film crew catches unexpected complications between the band and its record label and problems among the band members themselves.","id":"14308","runtime":92,"imdbId":"tt0327920","version":88,"lastModified":"1301906805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc94257017a3c57fe01c49c\/i-am-trying-to-break-your-heart-mid.jpg","studio":"Cowboy Films","genre":"Music","title":"I Am Trying to Break Your Heart","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"58690"} +{"label":"Sam Jones","version":19,"id":"76559","lastModified":"1301901779000","name":"Sam Jones","type":"Person","_key":"58691"} +{"label":"Sum seung si sing","description":"Hong Kong funnyman Ronald Cheng makes his writing and directorial debut with the Lunar New Year comedy It's a Wonderful Life. A welcome return to the wacky, feel-good movies of yesteryear, the film is packed with colorful characters, side-splitting antics, and a host of silly celebrity cameos, ranging from Francis Ng as a gangster to Kelly Chen as the Goddess of Mercy. Vincent Kok, who directed Ch","id":"14309","runtime":105,"imdbId":"tt0934964","version":54,"lastModified":"1301904258000","title":"Sum seung si sing","releaseDate":1171411200000,"language":"en","type":"Movie","_key":"58692"} +{"label":"Infernal Affairs III","description":"Infernal Affairs III is a 2003 Hong Kong crime thriller film directed by Andrew Lau and Alan Mak. It is the third installment in the Infernal Affairs film series, and is both a sequel and a semi-prequel to the original film, as it intercuts events before and after the events in the original.","id":"14310","runtime":118,"imdbId":"tt0374339","version":99,"lastModified":"1301903751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ba\/4bc9425a017a3c57fe01c4ba\/iii-mid.jpg","studio":"Media Asia Film","genre":"Action","title":"Infernal Affairs III","releaseDate":1072137600000,"language":"en","type":"Movie","_key":"58693"} +{"label":"Pirates: Stagnetti's Revenge","description":"Pirates II is the thrilling, erotic sequel to Digital Playground\u2019s 2005 blockbuster hit, Pirates. Superstar, Jesse Jane returns as the sexy, swashbuckler Jules\u2014pirate hunter and seducer, leading an all star cast that includes Digital Playground contract girls Shay Jordan, Katsuni, Stoya, Gabriella Fox, and Riley Steele, alongside industry favorites BellaDonna, Sasha Grey, and Jenna Haze.","id":"14312","runtime":138,"imdbId":"tt1266097","trailer":"http:\/\/www.youtube.com\/watch?v=Qns7beV8l0g","homepage":"http:\/\/piratesxxx.com\/","version":98,"lastModified":"1301902204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e8\/4bc94261017a3c57fe01c4e8\/pirates-stagnetti-s-revenge-mid.jpg","studio":"Digital Playground","genre":"Adventure","title":"Pirates: Stagnetti's Revenge","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"58694"} +{"label":"Shay Jordan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/212\/4c468ff35e73d61efb000212\/shay-jordan-profile.jpg","version":54,"birthday":"501030000000","id":"76578","birthplace":"San Diego, CA","lastModified":"1301943049000","name":"Shay Jordan","type":"Person","_key":"58695"} +{"label":"Riley Steele","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24e\/4ca781da5e73d643ee00024e\/riley-steele-profile.jpg","version":93,"birthday":"556927200000","id":"76582","lastModified":"1301904046000","name":"Riley Steele","type":"Person","_key":"58696"} +{"label":"Belladonna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/158\/4c3795b07b9aa105fb000158\/belladonna-profile.jpg","version":20,"birthday":"359244000000","id":"76575","lastModified":"1301901231000","name":"Belladonna","type":"Person","_key":"58697"} +{"label":"Abbey Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00f\/4c37a1da7b9aa10edc00000f\/abbey-brooks-profile.jpg","version":21,"birthday":"414284400000","id":"76584","birthplace":"Chicago, IL","lastModified":"1301901427000","name":"Abbey Brooks","type":"Person","_key":"58698"} +{"label":"Gabriella Fox","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b4\/4c3387b65e73d6496a0001b4\/gabriella-fox-profile.jpg","version":41,"birthday":"604278000000","id":"76579","birthplace":"Los Angeles, CA","lastModified":"1301901120000","name":"Gabriella Fox","type":"Person","_key":"58699"} +{"label":"Shyla Stylez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19c\/4c33809c5e73d6496a00019c\/shyla-stylez-profile.jpg","version":40,"birthday":"401580000000","id":"76580","birthplace":"British Columbia, Canada","lastModified":"1301901506000","name":"Shyla Stylez","type":"Person","_key":"58700"} +{"label":"Stoya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/484\/4c43e3005e73d60f38000484\/stoya-profile.jpg","version":99,"birthday":"519170400000","id":"88229","birthplace":"Wilmington, NC","lastModified":"1301943049000","name":"Stoya","type":"Person","_key":"58701"} +{"label":"Veronica Rayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4c37a4547b9aa10eda000005\/veronica-rayne-profile.jpg","version":24,"birthday":"218070000000","id":"76585","birthplace":"Newbury Port, MA","lastModified":"1301902168000","name":"Veronica Rayne","type":"Person","_key":"58702"} +{"label":"Brianna Love","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/008\/4c37a6eb7b9aa10edd000008\/brianna-love-profile.jpg","version":35,"birthday":"479602800000","id":"76586","birthplace":"Fresno, CA","lastModified":"1301901477000","name":"Brianna Love","type":"Person","_key":"58703"} +{"label":"Rhylee Richards","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4c37a8037b9aa10ed9000016\/rhylee-richards-profile.jpg","version":18,"birthday":"317516400000","id":"76587","lastModified":"1301901983000","name":"Rhylee Richards","type":"Person","_key":"58704"} +{"label":"Katsumi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18a\/4c3378705e73d6496a00018a\/katsuni-profile.jpg","version":56,"birthday":"292460400000","id":"76576","birthplace":"Lyon, France","lastModified":"1301904090000","name":"Katsumi","type":"Person","_key":"58705"} +{"label":"Brea Lynn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4c37ab387b9aa10ede00000e\/brea-lynn-profile.jpg","version":18,"birthday":"394840800000","id":"76583","birthplace":"Arizona","lastModified":"1301901578000","name":"Brea Lynn","type":"Person","_key":"58706"} +{"label":"Kathleen Wilson","version":17,"id":"123080","lastModified":"1301902726000","name":"Kathleen Wilson","type":"Person","_key":"58707"} +{"label":"Mercy Baron","version":17,"id":"123081","lastModified":"1301903055000","name":"Mercy Baron","type":"Person","_key":"58708"} +{"label":"Rod Gunner","version":18,"id":"124218","lastModified":"1301903012000","name":"Rod Gunner","type":"Person","_key":"58709"} +{"label":"James Deen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/180\/4ca71a255e73d643ef000180\/james-deen-profile.jpg","version":108,"birthday":"508114800000","id":"124097","birthplace":"Pasadena, CA","lastModified":"1301943049000","name":"James Deen","type":"Person","_key":"58710"} +{"label":"Mick Blue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/355\/4c47ff655e73d61efc000355\/mick-blue-profile.jpg","version":129,"birthday":"211071600000","id":"123088","birthplace":"Graz, Austria","lastModified":"1301965619000","name":"Mick Blue","type":"Person","_key":"58711"} +{"label":"Ben English","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37a\/4c48052b5e73d61efc00037a\/ben-english-profile.jpg","version":60,"birthday":"-170038800000","id":"123084","lastModified":"1301902469000","name":"Ben English","type":"Person","_key":"58712"} +{"label":"Charles Dera","version":43,"birthday":"283042800000","id":"124219","birthplace":"Morrisville, PA","lastModified":"1301902578000","name":"Charles Dera","type":"Person","_key":"58713"} +{"label":"Marco Banderas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4c4718265e73d61efc00022c\/marco-banderas-profile.jpg","version":64,"birthday":"-90982800000","id":"123087","birthplace":"Montevideo, Uruguay","lastModified":"1301902729000","name":"Marco Banderas","type":"Person","_key":"58714"} +{"label":"Anton Michael","version":20,"id":"124222","lastModified":"1301903080000","name":"Anton Michael","type":"Person","_key":"58715"} +{"label":"Alexander Dreggs","version":20,"id":"124223","lastModified":"1301902695000","name":"Alexander Dreggs","type":"Person","_key":"58716"} +{"label":"Bradley Laise","version":20,"id":"124224","lastModified":"1301902784000","name":"Bradley Laise","type":"Person","_key":"58717"} +{"label":"David Aaron Clark","version":17,"birthday":"-294195600000","id":"124225","birthplace":"Camden, New Jersey","lastModified":"1301903080000","name":"David Aaron Clark","type":"Person","_key":"58718"} +{"label":"Fendi","version":19,"id":"124226","lastModified":"1301902911000","name":"Fendi","type":"Person","_key":"58719"} +{"label":"Galen T. Canis","version":19,"id":"124227","lastModified":"1301902644000","name":"Galen T. Canis","type":"Person","_key":"58720"} +{"label":"Gary James","version":20,"id":"124228","lastModified":"1301902722000","name":"Gary James","type":"Person","_key":"58721"} +{"label":"George Roberson","version":20,"id":"124229","lastModified":"1301902722000","name":"George Roberson","type":"Person","_key":"58722"} +{"label":"Jamie Dawson","version":20,"id":"124230","lastModified":"1301903007000","name":"Jamie Dawson","type":"Person","_key":"58723"} +{"label":"Johnny Sinatra","version":25,"id":"124231","lastModified":"1301902353000","name":"Johnny Sinatra","type":"Person","_key":"58724"} +{"label":"Jules Van Damme","version":20,"id":"124232","lastModified":"1301903007000","name":"Jules Van Damme","type":"Person","_key":"58725"} +{"label":"Noel Olken","version":18,"id":"124233","lastModified":"1301902690000","name":"Noel Olken","type":"Person","_key":"58726"} +{"label":"Scotty Servis","version":20,"id":"124234","lastModified":"1301902690000","name":"Scotty Servis","type":"Person","_key":"58727"} +{"label":"Zaaf B.","version":18,"id":"124235","lastModified":"1301902690000","name":"Zaaf B.","type":"Person","_key":"58728"} +{"label":"Shauna Lenne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2da\/4caca43c5e73d64dce0002da\/shawna-lenee-profile.jpg","version":63,"birthday":"545176800000","id":"125665","birthplace":"Cleveland, Ohio, USA","lastModified":"1301943049000","name":"Shauna Lenne","type":"Person","_key":"58729"} +{"label":"Feast of Love","description":"A meditation on love and its various incarnations, set within a community of friends in Oregon. It is described as an exploration of the magical, mysterious and sometimes painful incarnations of love.","id":"14313","runtime":101,"imdbId":"tt0800027","version":177,"lastModified":"1302038721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9d\/4d2c7b405e73d63a5a001c9d\/feast-of-love-mid.jpg","genre":"Drama","title":"Feast of Love","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"58730"} +{"label":"The Wild Thornberrys Movie","description":"No overview found.","id":"14317","runtime":82,"imdbId":"tt0282120","version":231,"lastModified":"1301903029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e58\/4cf1672e5e73d61926000e58\/the-wild-thornberrys-movie-mid.jpg","genre":"Action","title":"The Wild Thornberrys Movie","releaseDate":1040342400000,"language":"en","type":"Movie","_key":"58731"} +{"label":"Cathy Malkasian","version":19,"id":"78488","lastModified":"1301902388000","name":"Cathy Malkasian","type":"Person","_key":"58732"} +{"label":"Jeff McGrath","version":18,"id":"78485","lastModified":"1301902326000","name":"Jeff McGrath","type":"Person","_key":"58733"} +{"label":"Great Expectations","description":"A humble orphan suddenly becomes a gentleman with the help of an unknown benefactor.","id":"14320","runtime":118,"imdbId":"tt0038574","version":119,"lastModified":"1301904405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4bc94264017a3c57fe01c507\/great-expectations-mid.jpg","studio":"Cineguild","genre":"Drama","title":"Great Expectations","releaseDate":-726364800000,"language":"en","type":"Movie","_key":"58734"} +{"label":"Tony Wager","version":23,"id":"76596","lastModified":"1301901841000","name":"Tony Wager","type":"Person","_key":"58735"} +{"label":"Virgin Territory","description":"Virgin Territory is a 2007 romantic comedy film based upon Giovanni Boccaccio's Decameron.","id":"14324","runtime":93,"imdbId":"tt0437954","version":162,"lastModified":"1301902474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/510\/4bc94265017a3c57fe01c510\/virgin-territory-mid.jpg","genre":"Comedy","title":"Virgin Territory","releaseDate":1197849600000,"language":"en","type":"Movie","_key":"58736"} +{"label":"Ryan Cartwright","version":20,"id":"76916","lastModified":"1301901609000","name":"Ryan Cartwright","type":"Person","_key":"58737"} +{"label":"Simone Spinazze","version":20,"id":"76923","lastModified":"1301901720000","name":"Simone Spinazze","type":"Person","_key":"58738"} +{"label":"The Express","description":"Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis (Rob Brown), the first African-American to win the Heisman Trophy.","id":"14325","runtime":130,"imdbId":"tt0469903","trailer":"http:\/\/www.youtube.com\/watch?v=906","version":254,"lastModified":"1301903910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/519\/4bc94268017a3c57fe01c519\/the-express-mid.jpg","genre":"Drama","title":"The Express","releaseDate":1223596800000,"language":"en","tagline":"He changed our country... one yard at a time.","type":"Movie","_key":"58739"} +{"label":"Nights in Rodanthe","description":"Two unhappy people's lives become entwined when they have a life changing romance. Adrienne is a woman who's trying to decide whether to stay in her unhappy marriage or not. Her life changes when Paul, a doctor who is traveling to reconcile with his estranged son, checks into an inn in a North Carolina beach town where she is staying.","id":"14326","runtime":97,"imdbId":"tt0956038","homepage":"http:\/\/nightsinrodanthe.warnerbros.com\/","version":266,"lastModified":"1301904064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52f\/4bc9426a017a3c57fe01c52f\/nights-in-rodanthe-mid.jpg","studio":"DiNovi Pictures","genre":"Drama","title":"Nights in Rodanthe","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"58740"} +{"label":"The Paper Chase","description":"A first-year law student struggles with balancing his coursework and his relationship with the daughter of a stern professor.","id":"14328","runtime":113,"imdbId":"tt0070509","version":116,"lastModified":"1301905951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/538\/4bc9426b017a3c57fe01c538\/the-paper-chase-mid.jpg","genre":"Comedy","title":"The Paper Chase","releaseDate":119577600000,"language":"en","type":"Movie","_key":"58741"} +{"label":"Fia og klovnene","description":"Fia er flink til \u00e5 klatre og stjele og \u00e5 passe p\u00e5 moren sin. Men en dag sprekker det. Politiet kommer og barnevernet bestemmer at Nanna og Siggen skal v\u00e6re fosterforeldre for Fia, og at hun m\u00e5 g\u00e5 p\u00e5 skolen. Heldigvis har hun en venn i naboen Bustric, som er klovn og tryllekunstner, og som hun h\u00e5per kan hjelpe henne med \u00e5 trylle verden som hun vil ha den. ","id":"14329","runtime":103,"imdbId":"tt0354577","version":54,"lastModified":"1301908295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53d\/4bc9426b017a3c57fe01c53d\/fia-og-klovnene-mid.jpg","studio":"Dinamo Story AS","genre":"Drama","title":"Fia og klovnene","releaseDate":1066953600000,"language":"en","type":"Movie","_key":"58742"} +{"label":"Elsa Kvamme","version":19,"id":"76599","lastModified":"1301901720000","name":"Elsa Kvamme","type":"Person","_key":"58743"} +{"label":"Sergio Bini","version":19,"id":"76606","lastModified":"1301901609000","name":"Sergio Bini","type":"Person","_key":"58744"} +{"label":"Klara D\u00f8ving","version":21,"id":"76607","lastModified":"1301901720000","name":"Klara D\u00f8ving","type":"Person","_key":"58745"} +{"label":"Nina Andresen Borud","version":20,"id":"76608","lastModified":"1301901609000","name":"Nina Andresen Borud","type":"Person","_key":"58746"} +{"label":"Minken Fosheim","version":20,"id":"76609","lastModified":"1301901866000","name":"Minken Fosheim","type":"Person","_key":"58747"} +{"label":"Johannes F\u00fcrst","version":19,"id":"76610","lastModified":"1301901720000","name":"Johannes F\u00fcrst","type":"Person","_key":"58748"} +{"label":"Stig Henrik Hoff","version":25,"id":"76611","lastModified":"1301901774000","name":"Stig Henrik Hoff","type":"Person","_key":"58749"} +{"label":"Trond H\u00f8vik","version":21,"id":"76612","lastModified":"1301901866000","name":"Trond H\u00f8vik","type":"Person","_key":"58750"} +{"label":"Hanne Lindb\u00e6k","version":19,"id":"76613","lastModified":"1301901720000","name":"Hanne Lindb\u00e6k","type":"Person","_key":"58751"} +{"label":"Marit \u00d8stbye","version":19,"id":"76614","lastModified":"1301901720000","name":"Marit \u00d8stbye","type":"Person","_key":"58752"} +{"label":"Anne Rygh","version":22,"id":"76615","lastModified":"1301902016000","name":"Anne Rygh","type":"Person","_key":"58753"} +{"label":"Thale Sanner","version":19,"id":"76616","lastModified":"1301901720000","name":"Thale Sanner","type":"Person","_key":"58754"} +{"label":"Anne Stray","version":19,"id":"76617","lastModified":"1301901866000","name":"Anne Stray","type":"Person","_key":"58755"} +{"label":"Rune Temte","version":19,"id":"76618","lastModified":"1301901720000","name":"Rune Temte","type":"Person","_key":"58756"} +{"label":"Ingeborg Vadseth","version":19,"id":"76619","lastModified":"1301901720000","name":"Ingeborg Vadseth","type":"Person","_key":"58757"} +{"label":"Trojan War","description":"Brad Kimble believes that Brooke Kingsley is the girl of his dreams, however unbeknownst to Brad his best friend Leah has a crush on him. When Brad finally has a \"chance\" to be with Brooke, he ends up having the craziest night of his life. NEEDS TO BE ON DVD!","id":"14330","runtime":85,"imdbId":"tt0120376","version":82,"lastModified":"1301902725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/546\/4bc9426b017a3c57fe01c546\/trojan-war-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Trojan War","releaseDate":875232000000,"language":"en","type":"Movie","_key":"58758"} +{"label":"George Huang","version":30,"id":"57028","lastModified":"1301901796000","name":"George Huang","type":"Person","_key":"58759"} +{"label":"Panik in New York","description":"No overview found.","id":"14331","runtime":0,"version":252,"lastModified":"1300979821000","title":"Panik in New York","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58760"} +{"label":"Frank Herbert's Children of Dune","description":"Under Paul \"Muad'Dib\" Atreides' rule as Emperor, the planet Arrakis has enjoyed a renaissance. However, the revolution that Muad'dib inspired has transformed into a brutal jihad that has plunged all of humanity into a bitter, neverending cycle of interstellar war. Now a conspiracy on Arrakis threatens to rob Muad'Dib of his throne and his life.","id":"14332","runtime":265,"imdbId":"tt0287839","trailer":"http:\/\/www.youtube.com\/watch?v=4fJxR4x5l4s","homepage":"http:\/\/www.scifi.com\/dune\/","version":91,"lastModified":"1301903451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4bc9426c017a3c57fe01c55d\/the-children-of-dune-mid.jpg","studio":"Blixa Film Productktion","genre":"Fantasy","title":"Frank Herbert's Children of Dune","releaseDate":1047772800000,"language":"en","tagline":"Born to rule an empire. Destined to tear it apart.","type":"Movie","_key":"58761"} +{"label":"Jessica Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06f\/4c14bddb5e73d64a1e00006f\/jessica-brooks-profile.jpg","version":24,"id":"76622","lastModified":"1301901513000","name":"Jessica Brooks","type":"Person","_key":"58762"} +{"label":"Jonathan Bruun","version":16,"id":"139670","lastModified":"1301902474000","name":"Jonathan Bruun","type":"Person","_key":"58763"} +{"label":"Karel Dobry","version":17,"id":"139671","lastModified":"1301902508000","name":"Karel Dobry","type":"Person","_key":"58764"} +{"label":"Greg Yaitanes","version":27,"id":"25938","lastModified":"1301901812000","name":"Greg Yaitanes","type":"Person","_key":"58765"} +{"label":"The Secret of Roan Inish","description":"10-year-old Fiona is sent to live with her grandparents in a small fishing village in Donegal, Ireland. She soon learns the local legend that an ancestor of hers married a Selkie - a seal who can turn into a human. Years earlier, her baby brother was washed out to sea and never seen again, so when Fiona spies a naked little boy on the abandoned Isle of Roan Inish, she is compelled to investigate..","id":"14334","runtime":97,"imdbId":"tt0111112","version":130,"lastModified":"1301905658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/566\/4bc9426d017a3c57fe01c566\/the-secret-of-roan-inish-mid.jpg","genre":"Drama","title":"The Secret of Roan Inish","releaseDate":757382400000,"language":"en","type":"Movie","_key":"58766"} +{"label":"Jeni Courtney","version":16,"id":"144523","lastModified":"1301902650000","name":"Jeni Courtney","type":"Person","_key":"58767"} +{"label":"Mick Lally","version":23,"id":"96671","lastModified":"1301901473000","name":"Mick Lally","type":"Person","_key":"58768"} +{"label":"Breathing Room","description":"No overview found.","id":"14335","runtime":0,"imdbId":"tt0115754","version":276,"lastModified":"1300979821000","genre":"Horror","title":"Breathing Room","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58769"} +{"label":"ABBA - The Movie","description":"Movie detailing ABBA's mega-successful tour of Australia during mid-1977. While it mostly contains back-stage footage and as well as ABBA's famous songs such as \"Dancing Queen\", \"Tiger\", \"Name Of The Game\" and \"Eagle\" among others sung filmed during their concerts in Sydney, Melbourne, Perth and Adelaide, it has the sub-plot of young country and western radio disc-jockey, Ashley, whose boss orders","id":"14336","runtime":0,"imdbId":"tt0075617","version":123,"lastModified":"1301905268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56f\/4bc9426d017a3c57fe01c56f\/abba-the-movie-mid.jpg","studio":"Polar Music International","genre":"Documentary","title":"ABBA - The Movie","releaseDate":250992000000,"language":"en","type":"Movie","_key":"58770"} +{"label":"Primer","description":"At night and on weekends, four men in a suburban garage have built a cottage industry of error-checking devices. But, they know that there is something more. There is some idea, some mechanism, some accidental side effect that is standing between them and a pure leap of innovation. And so, through trial and error they are building the device that is missing most. However, two of these men find the device and immediately realize that it is too valuable to market. The limit of their trust in each ","id":"14337","runtime":79,"imdbId":"tt0390384","homepage":"http:\/\/www.primermovie.com","version":116,"lastModified":"1301907464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/580\/4bc94271017a3c57fe01c580\/primer-mid.jpg","studio":"Thinkfilm","genre":"Drama","title":"Primer","releaseDate":1097193600000,"language":"en","tagline":"What happens if it actually works?","type":"Movie","_key":"58771"} +{"label":"Shane Carruth","version":35,"id":"76624","lastModified":"1301901796000","name":"Shane Carruth","type":"Person","_key":"58772"} +{"label":"David Sullivan","version":24,"id":"76625","lastModified":"1301901359000","name":"David Sullivan","type":"Person","_key":"58773"} +{"label":"Casey Gooden","version":20,"id":"110171","lastModified":"1301902202000","name":"Casey Gooden","type":"Person","_key":"58774"} +{"label":"Anand Upadhyaya","version":20,"id":"110172","lastModified":"1301902361000","name":"Anand Upadhyaya","type":"Person","_key":"58775"} +{"label":"Carrie Crawford","version":20,"id":"110173","lastModified":"1301902535000","name":"Carrie Crawford","type":"Person","_key":"58776"} +{"label":"Gamers","description":"Gamers is a comedy about the lives of four slacker friends (and one obsessive interloper) living at home, -\"with my parents... it's just temporary... 'til they die\"- working in the real world but playing in a fantasy world. Obsessed with a role playing game called Demons, Nymphs and Dragons these \"gamers\" are the subject of this hilarious comedy.","id":"14339","runtime":84,"imdbId":"tt0485909","version":96,"lastModified":"1301904258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/589\/4bc94271017a3c57fe01c589\/gamers-mid.jpg","genre":"Comedy","title":"Gamers","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"58777"} +{"label":"Almost Heroes","description":"No overview found.","id":"14342","runtime":90,"imdbId":"tt0119053","trailer":"http:\/\/www.youtube.com\/watch?v=1410","version":110,"lastModified":"1301906254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5aa\/4bc94274017a3c57fe01c5aa\/almost-heroes-mid.jpg","genre":"Action","title":"Almost Heroes","releaseDate":896400000000,"language":"en","type":"Movie","_key":"58778"} +{"label":"Whole New Thing","description":"After years of being home schooled by hippie parents, Emerson is enrolled at his local high school. The intelligent and androgynous youth confounds his classmates and captures the attention of his English teacher. The teacher-student relationship leads to problems for everyone involved.","id":"14344","runtime":92,"imdbId":"tt0461613","trailer":"http:\/\/www.youtube.com\/watch?v=908","homepage":"http:\/\/www.wholenewthing.com\/","version":295,"lastModified":"1301114246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b3\/4bc94276017a3c57fe01c5b3\/whole-new-thing-mid.jpg","studio":"Acuity Pictures Production","genre":"Comedy","title":"Whole New Thing","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58779"} +{"label":"Aaron Webber","version":19,"id":"76626","lastModified":"1301902070000","name":"Aaron Webber","type":"Person","_key":"58780"} +{"label":"Daniel MacIvor","version":29,"id":"76627","lastModified":"1301901939000","name":"Daniel MacIvor","type":"Person","_key":"58781"} +{"label":"Kathryn MacLellan","version":19,"id":"76628","lastModified":"1301901720000","name":"Kathryn MacLellan","type":"Person","_key":"58782"} +{"label":"Drew O'Hara","version":19,"id":"76629","lastModified":"1301901866000","name":"Drew O'Hara","type":"Person","_key":"58783"} +{"label":"Ryan Hartigan","version":19,"id":"76630","lastModified":"1301901866000","name":"Ryan Hartigan","type":"Person","_key":"58784"} +{"label":"Geordie Brown","version":19,"id":"76631","lastModified":"1301901866000","name":"Geordie Brown","type":"Person","_key":"58785"} +{"label":"Jackie Torrens","version":19,"id":"76632","lastModified":"1301901866000","name":"Jackie Torrens","type":"Person","_key":"58786"} +{"label":"Lisa Lelliott","version":19,"id":"76633","lastModified":"1301901535000","name":"Lisa Lelliott","type":"Person","_key":"58787"} +{"label":"Leah Fassett","version":19,"id":"76634","lastModified":"1301901720000","name":"Leah Fassett","type":"Person","_key":"58788"} +{"label":"Samantha Spencer","version":19,"id":"76635","lastModified":"1301901720000","name":"Samantha Spencer","type":"Person","_key":"58789"} +{"label":"Rebecca Regan","version":19,"id":"76636","lastModified":"1301901535000","name":"Rebecca Regan","type":"Person","_key":"58790"} +{"label":"Marguerite McNeil","version":20,"id":"76637","lastModified":"1301901720000","name":"Marguerite McNeil","type":"Person","_key":"58791"} +{"label":"Hugh Thompson","version":23,"id":"76638","lastModified":"1301901948000","name":"Hugh Thompson","type":"Person","_key":"58792"} +{"label":"Linda Busby","version":19,"id":"76639","lastModified":"1301901866000","name":"Linda Busby","type":"Person","_key":"58793"} +{"label":"Brian Heighton","version":19,"id":"76640","lastModified":"1301901609000","name":"Brian Heighton","type":"Person","_key":"58794"} +{"label":"Dylan Aucoin","version":19,"id":"76641","lastModified":"1301901720000","name":"Dylan Aucoin","type":"Person","_key":"58795"} +{"label":"Alexandra Ashley","version":19,"id":"76642","lastModified":"1301901866000","name":"Alexandra Ashley","type":"Person","_key":"58796"} +{"label":"Caleb Buchbinder","version":19,"id":"76643","lastModified":"1301901719000","name":"Caleb Buchbinder","type":"Person","_key":"58797"} +{"label":"Stephanie Chapman","version":19,"id":"76644","lastModified":"1301901720000","name":"Stephanie Chapman","type":"Person","_key":"58798"} +{"label":"P.J. Crosby","version":19,"id":"76645","lastModified":"1301901866000","name":"P.J. Crosby","type":"Person","_key":"58799"} +{"label":"Leah Briese","version":17,"id":"76646","lastModified":"1301901866000","name":"Leah Briese","type":"Person","_key":"58800"} +{"label":"Toni Grossett","version":17,"id":"76647","lastModified":"1301902070000","name":"Toni Grossett","type":"Person","_key":"58801"} +{"label":"Bruce Murphy","version":21,"id":"76648","lastModified":"1301901942000","name":"Bruce Murphy","type":"Person","_key":"58802"} +{"label":"Branden O'Brien","version":19,"id":"76649","lastModified":"1301901719000","name":"Branden O'Brien","type":"Person","_key":"58803"} +{"label":"Colin Rogers","version":19,"id":"76650","lastModified":"1301901719000","name":"Colin Rogers","type":"Person","_key":"58804"} +{"label":"Mitchell Taylor","version":19,"id":"76651","lastModified":"1301901719000","name":"Mitchell Taylor","type":"Person","_key":"58805"} +{"label":"Terry Coolen","version":20,"id":"76652","lastModified":"1301901811000","name":"Terry Coolen","type":"Person","_key":"58806"} +{"label":"Darcy Lindzon","version":17,"id":"76653","lastModified":"1301901719000","name":"Darcy Lindzon","type":"Person","_key":"58807"} +{"label":"Dennis Brown","version":20,"id":"76654","lastModified":"1301901811000","name":"Dennis Brown","type":"Person","_key":"58808"} +{"label":"Pauline Kaill","version":19,"id":"76656","lastModified":"1301901866000","name":"Pauline Kaill","type":"Person","_key":"58809"} +{"label":"Veronique MacKenzie-Bourne","version":19,"id":"76658","lastModified":"1301901866000","name":"Veronique MacKenzie-Bourne","type":"Person","_key":"58810"} +{"label":"Susan Bone","version":19,"id":"76659","lastModified":"1301902070000","name":"Susan Bone","type":"Person","_key":"58811"} +{"label":"Peter M. Davison","version":17,"id":"76661","lastModified":"1301901866000","name":"Peter M. Davison","type":"Person","_key":"58812"} +{"label":"Armand H. Grenier","version":19,"id":"76663","lastModified":"1301902070000","name":"Armand H. Grenier","type":"Person","_key":"58813"} +{"label":"Don Himmelman","version":19,"id":"76664","lastModified":"1301901719000","name":"Don Himmelman","type":"Person","_key":"58814"} +{"label":"Amnon Buchbinder","version":20,"id":"76665","lastModified":"1301901866000","name":"Amnon Buchbinder","type":"Person","_key":"58815"} +{"label":"Blackballed: The Bobby Dukes Story","description":"No overview found.","id":"14346","runtime":91,"imdbId":"tt0379184","homepage":"http:\/\/www.blackballedthemovie.com","version":89,"lastModified":"1301905680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4bdc27ee017a3c1d3d000095\/blackballed-the-bobby-dukes-story-mid.jpg","title":"Blackballed: The Bobby Dukes Story","releaseDate":1072915200000,"language":"en","tagline":"Second place is first place for losers","type":"Movie","_key":"58816"} +{"label":"Rob Huebel","version":49,"id":"80595","lastModified":"1301904074000","name":"Rob Huebel","type":"Person","_key":"58817"} +{"label":"Brant Sersen","version":19,"id":"94354","lastModified":"1301902987000","name":"Brant Sersen","type":"Person","_key":"58818"} +{"label":"Blame It on Rio","description":"Caine plays a man on holiday in Rio with his best friend. Both men have teenage daughters with them. When Caine falls for the amorous daughter (played by Michelle Johnson) of his best friend, they embark on a secret, if slightly one-sided relationship. Johnson's father is furious when he finds out about the 'older man' in his daughter's life, and sets out to hunt him down with the aid of Caine! ","id":"14347","runtime":100,"imdbId":"tt0086973","version":128,"lastModified":"1302025665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ec\/4bc94280017a3c57fe01c5ec\/blame-it-on-rio-mid.jpg","genre":"Comedy","title":"Blame It on Rio","releaseDate":445824000000,"language":"en","type":"Movie","_key":"58819"} +{"label":"Valerie Harper","version":21,"id":"83170","lastModified":"1301902500000","name":"Valerie Harper","type":"Person","_key":"58820"} +{"label":"An Evening with Kevin Smith","description":"Kevin Smith interacts in Q&A sessions throughout various college stops in the USA.","id":"14348","runtime":224,"imdbId":"tt0346952","version":135,"lastModified":"1301906744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f5\/4bc94281017a3c57fe01c5f5\/an-evening-with-kevin-smith-mid.jpg","genre":"Comedy","title":"An Evening with Kevin Smith","releaseDate":1040083200000,"language":"en","tagline":"Silent Bob Speaks","type":"Movie","_key":"58821"} +{"label":"Sleepwalking","description":"The drama follows an 11-year-old girl's struggle to come to terms with her mother's abandonment.","id":"14349","runtime":101,"imdbId":"tt0888693","trailer":"http:\/\/www.youtube.com\/watch?v=1792","version":229,"lastModified":"1301904748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fe\/4bc94282017a3c57fe01c5fe\/sleepwalking-mid.jpg","studio":"Denver and Delilah Productions","genre":"Drama","title":"Sleepwalking","releaseDate":1200960000000,"language":"en","type":"Movie","_key":"58822"} +{"label":"Bill Maher","version":22,"id":"76814","lastModified":"1301901595000","name":"Bill Maher","type":"Person","_key":"58823"} +{"label":"The Wiggles: You Make Me Feel Like Dancing","description":"'We sincerely hope this new music from us to you makes you feel like dancing! Putting the songs together wasn't so hard, criteria\u2026well, the music had to make you start tapping your feet, start nodding your head and make you start smiling like you had just eaten your grandmother\u2019s homemade biscuits, you know what I mean\u2026joy! So let's get dancing everyone, happy wiggling!' \u2013 Anthony Wiggle The Wiggl","id":"14350","runtime":60,"imdbId":"tt1383259","version":98,"lastModified":"1300979825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4bc94282017a3c57fe01c607\/the-wiggles-you-make-me-feel-like-dancing-mid.jpg","genre":"Family","title":"The Wiggles: You Make Me Feel Like Dancing","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"58824"} +{"label":"Murray Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c8e\/4d7acb965e73d6282a000c8e\/murray-cook-profile.jpg","version":46,"id":"76655","lastModified":"1301901265000","name":"Murray Cook","type":"Person","_key":"58825"} +{"label":"Anthony Field","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4c50abf47b9aa13d4d00008b\/anthony-field-profile.jpg","version":48,"id":"76657","lastModified":"1301901803000","name":"Anthony Field","type":"Person","_key":"58826"} +{"label":"Sam Moran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b2\/4c50ab7b7b9aa13d4c0000b2\/sam-moran-profile.jpg","version":28,"id":"76660","lastModified":"1301901779000","name":"Sam Moran","type":"Person","_key":"58827"} +{"label":"Jeff Fatt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9cc\/4d7acb585e73d651740009cc\/jeff-fatt-profile.jpg","version":44,"id":"76662","lastModified":"1301901231000","name":"Jeff Fatt","type":"Person","_key":"58828"} +{"label":"Crossover","description":"\nThe clock strikes midnight, money changes hands, the crowd is on their feet, and the court is alive with fast-paced razzle-dazzle basketball. These players don't play for a school or a pro team. They play for the street and it's underground...way underground.","id":"14351","runtime":95,"imdbId":"tt0473024","homepage":"http:\/\/www.sonypictures.com\/movies\/crossover\/","version":352,"lastModified":"1301905748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/619\/4bc94286017a3c57fe01c619\/crossover-mid.jpg","studio":"360 Pictures","genre":"Action","title":"Crossover","releaseDate":1157068800000,"language":"en","type":"Movie","_key":"58829"} +{"label":"Eva Pigford","version":20,"id":"76668","lastModified":"1301901719000","name":"Eva Pigford","type":"Person","_key":"58830"} +{"label":"Wesley Jonathan","version":24,"id":"76667","lastModified":"1301901560000","name":"Wesley Jonathan","type":"Person","_key":"58831"} +{"label":"Wayne Brady","version":26,"id":"76669","lastModified":"1301901443000","name":"Wayne Brady","type":"Person","_key":"58832"} +{"label":"Little JJ","version":20,"id":"76670","lastModified":"1301901609000","name":"Little JJ","type":"Person","_key":"58833"} +{"label":"Philip Champion","version":19,"id":"76671","lastModified":"1301901719000","name":"Philip Champion","type":"Person","_key":"58834"} +{"label":"Alecia Jai Fears","version":19,"id":"76672","lastModified":"1301901535000","name":"Alecia Jai Fears","type":"Person","_key":"58835"} +{"label":"William L. Johnson","version":23,"id":"76673","lastModified":"1301901690000","name":"William L. Johnson","type":"Person","_key":"58836"} +{"label":"Ele Bardha","version":35,"id":"76674","lastModified":"1302068190000","name":"Ele Bardha","type":"Person","_key":"58837"} +{"label":"Gavin J. Behrman","version":19,"id":"76675","lastModified":"1301901719000","name":"Gavin J. Behrman","type":"Person","_key":"58838"} +{"label":"Shelli Boone","version":19,"id":"76676","lastModified":"1301901866000","name":"Shelli Boone","type":"Person","_key":"58839"} +{"label":"Linda Boston","version":28,"id":"76677","lastModified":"1302068190000","name":"Linda Boston","type":"Person","_key":"58840"} +{"label":"Marvin Collins","version":19,"id":"76678","lastModified":"1301901866000","name":"Marvin Collins","type":"Person","_key":"58841"} +{"label":"James Cowans","version":19,"id":"76679","lastModified":"1301901866000","name":"James Cowans","type":"Person","_key":"58842"} +{"label":"Allan Cunningham","version":19,"id":"76680","lastModified":"1301901866000","name":"Allan Cunningham","type":"Person","_key":"58843"} +{"label":"Dave Daniels","version":19,"id":"76681","lastModified":"1301901719000","name":"Dave Daniels","type":"Person","_key":"58844"} +{"label":"Rian English","version":19,"id":"76682","lastModified":"1301901866000","name":"Rian English","type":"Person","_key":"58845"} +{"label":"Tondy Gallant","version":19,"id":"76683","lastModified":"1301901866000","name":"Tondy Gallant","type":"Person","_key":"58846"} +{"label":"Dana Gamarra","version":19,"id":"76684","lastModified":"1301901609000","name":"Dana Gamarra","type":"Person","_key":"58847"} +{"label":"Nicholas Harvell","version":20,"id":"76685","lastModified":"1301901560000","name":"Nicholas Harvell","type":"Person","_key":"58848"} +{"label":"Loretta Higgins","version":19,"id":"76687","lastModified":"1301901719000","name":"Loretta Higgins","type":"Person","_key":"58849"} +{"label":"Julia Ho","version":27,"id":"76690","lastModified":"1302068190000","name":"Julia Ho","type":"Person","_key":"58850"} +{"label":"Michael Kimbrew","version":19,"id":"76691","lastModified":"1301901609000","name":"Michael Kimbrew","type":"Person","_key":"58851"} +{"label":"Michael Lamone Bivins","version":19,"id":"76692","lastModified":"1301901719000","name":"Michael Lamone Bivins","type":"Person","_key":"58852"} +{"label":"Kristine Mansour","version":19,"id":"76694","lastModified":"1301901609000","name":"Kristine Mansour","type":"Person","_key":"58853"} +{"label":"Jason Martin","version":19,"id":"76695","lastModified":"1301901609000","name":"Jason Martin","type":"Person","_key":"58854"} +{"label":"Margaret Scott","version":19,"id":"76702","lastModified":"1301901866000","name":"Margaret Scott","type":"Person","_key":"58855"} +{"label":"Tamer Werfali","version":19,"id":"76703","lastModified":"1301901719000","name":"Tamer Werfali","type":"Person","_key":"58856"} +{"label":"D.B. Dickerson","version":19,"id":"76704","lastModified":"1301901719000","name":"D.B. Dickerson","type":"Person","_key":"58857"} +{"label":"Preston A. Whitmore II","version":29,"id":"76705","lastModified":"1301901571000","name":"Preston A. Whitmore II","type":"Person","_key":"58858"} +{"label":"Regina Gordon","version":19,"id":"76717","lastModified":"1301901609000","name":"Regina Gordon","type":"Person","_key":"58859"} +{"label":"Daniel Shultz","version":19,"id":"76719","lastModified":"1301901535000","name":"Daniel Shultz","type":"Person","_key":"58860"} +{"label":"Shannyn K. Marlen","version":19,"id":"76720","lastModified":"1301901609000","name":"Shannyn K. Marlen","type":"Person","_key":"58861"} +{"label":"The Wiggles: Wiggle Bay","description":"\"Wiggle Bay\" is more of the cute musical fun that the Wiggles always deliver, but with a story line, an actual plot this time. The Wiggles, off on a little jaunt to sunny Wiggle Bay for the day are having a blast, until silly Captain Feathersword announces that he's forgotten to tie off their boat- and they're stranded! Whoops!","id":"14352","runtime":41,"imdbId":"tt0358768","version":69,"lastModified":"1301417829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/627\/4bc94287017a3c57fe01c627\/the-wiggles-wiggle-bay-mid.jpg","genre":"Drama","title":"The Wiggles: Wiggle Bay","releaseDate":1033344000000,"language":"en","type":"Movie","_key":"58862"} +{"label":"Greg Page","version":37,"id":"86855","lastModified":"1301901505000","name":"Greg Page","type":"Person","_key":"58863"} +{"label":"Repo! The Genetic Opera","description":"A worldwide epidemic encourages a bio-tech company to launch an organ-financing program similar in nature to a standard car loan. The repossession clause is a killer, however.","id":"14353","runtime":98,"imdbId":"tt0963194","version":412,"lastModified":"1301906252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/638\/4bc94288017a3c57fe01c638\/repo-the-genetic-opera-mid.jpg","genre":"Comedy","title":"Repo! The Genetic Opera","releaseDate":1227139200000,"language":"en","type":"Movie","_key":"58864"} +{"label":"Sarah Brightman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/adb\/4ccdd33c5e73d65020000adb\/sarah-brightman-profile.jpg","version":30,"id":"76689","lastModified":"1301901336000","name":"Sarah Brightman","type":"Person","_key":"58865"} +{"label":"Nivek Ogre","version":28,"id":"76693","lastModified":"1301901828000","name":"Nivek Ogre","type":"Person","_key":"58866"} +{"label":"Terrance Zdunich","version":24,"id":"76686","lastModified":"1301901839000","name":"Terrance Zdunich","type":"Person","_key":"58867"} +{"label":"Sarah Power","version":21,"id":"76696","lastModified":"1301902013000","name":"Sarah Power","type":"Person","_key":"58868"} +{"label":"Jessica Horn","version":21,"id":"76697","lastModified":"1301901582000","name":"Jessica Horn","type":"Person","_key":"58869"} +{"label":"Branko Lebar","version":21,"id":"76698","lastModified":"1301902003000","name":"Branko Lebar","type":"Person","_key":"58870"} +{"label":"Brianna Buckmaster","version":21,"id":"76700","lastModified":"1301901668000","name":"Brianna Buckmaster","type":"Person","_key":"58871"} +{"label":"Red Shadow: Akakage","description":"The secret warriors of feudal Japan were the Ninja. Sent on impossible missions, the Ninja were trained to work in shadows, gather information and defeat the enemy to build a world of peace. Red Shadow, Blue Shadow and Aska are neophyte ninjas under the tutelage of White Shadow. Their life is a series of perilous missions that entail intrigue, deception and intimidation.","id":"14355","runtime":108,"imdbId":"tt0294280","version":80,"lastModified":"1301234310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64a\/4bc9428a017a3c57fe01c64a\/red-shadow-akakage-mid.jpg","title":"Red Shadow: Akakage","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58872"} +{"label":"Ping-pongkingen","description":"Trots att de \u00e4r br\u00f6der \u00e4r Rille och hans bror Erik extremt olika. Rille \u00e4r \u00f6verviktig, filosofisk, och kungen p\u00e5 pingis - Ping-pongkingen. Erik \u00e4r d\u00e4remot \u00e4lskad av alla, snygg och charmig. Rille \u00e4r mitt i organiserandet av pingisturneringen n\u00e4r br\u00f6dernas farsa best\u00e4mmer sig f\u00f6r att komma p\u00e5 bes\u00f6k. Under sportlovsveckan som f\u00f6ljer uppdagas en familjehemlighet som bryter blodsbandet mellan br\u00f6derna","id":"14357","runtime":107,"imdbId":"tt1110272","homepage":"http:\/\/www.pingpongkingen.se\/","version":46,"lastModified":"1301114080000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/658\/4bc9428e017a3c57fe01c658\/ping-pongkingen-mid.jpg","studio":"BOB Film Sweden AB","title":"Ping-pongkingen","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"58873"} +{"label":"Jerry Johansson","version":19,"id":"76749","lastModified":"1301901779000","name":"Jerry Johansson","type":"Person","_key":"58874"} +{"label":"Hampus Johansson","version":19,"id":"76750","lastModified":"1301901779000","name":"Hampus Johansson","type":"Person","_key":"58875"} +{"label":"Mad Hot Ballroom","description":"Eleven-year-old New York City public school kids journey into the world of ballroom dancing and reveal pieces of themselves and their world along the way. Told from their candid, sometimes hilarious perspectives, these kids are transformed, from reluctant participants to determined competitors, from typical urban kids to \"ladies and gentlemen,\" on their way to try to compete in the final citywide.","id":"14358","runtime":0,"imdbId":"tt0438205","trailer":"http:\/\/www.youtube.com\/watch?v=F5wEb_3S2VM","version":133,"lastModified":"1301903981000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/661\/4bc9428f017a3c57fe01c661\/mad-hot-ballroom-mid.jpg","genre":"Documentary","title":"Mad Hot Ballroom","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"58876"} +{"label":"Doubt","description":"Set in 1964, Doubt centers on a nun who confronts a priest after suspecting him abusing a black student. He denies the charges, and much of the movie's quick-fire dialogue tackles themes of religion, morality and authority.","id":"14359","runtime":104,"imdbId":"tt0918927","version":177,"lastModified":"1301976253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/683\/4bc94292017a3c57fe01c683\/doubt-mid.jpg","studio":"Goodspeed Productions","genre":"Drama","title":"Doubt","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"58877"} +{"label":"Captain Ron","description":"A family in Chicago inherits the yacht formerly owned by Clark Gable. They decide to sail it from the island of Ste. Pomme de Terre to Miami with the assistance of Captain Ron. Their lives will never be the same again.","id":"14361","runtime":90,"imdbId":"tt0103924","version":199,"lastModified":"1301904028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69b\/4bc94293017a3c57fe01c69b\/captain-ron-mid.jpg","genre":"Action","title":"Captain Ron","releaseDate":716774400000,"language":"en","type":"Movie","_key":"58878"} +{"label":"Benjamin Salisbury","version":18,"id":"76759","lastModified":"1301902174000","name":"Benjamin Salisbury","type":"Person","_key":"58879"} +{"label":"Meadow Sisto","version":21,"id":"76760","lastModified":"1301901992000","name":"Meadow Sisto","type":"Person","_key":"58880"} +{"label":"Out For Justice","description":"Gino Felino (Steven Seagal) is an NYPD detective from Brooklyn who knows everyone and everything in his neighborhood. Killing his Partner was someone's mistake, because he's now Out For Justice.","id":"14362","runtime":91,"imdbId":"tt0102614","trailer":"http:\/\/www.youtube.com\/watch?v=M1Mqrw2X7Og","version":314,"lastModified":"1301902943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b8\/4bc94297017a3c57fe01c6b8\/out-for-justice-mid.jpg","genre":"Action","title":"Out For Justice","releaseDate":671414400000,"language":"en","type":"Movie","_key":"58881"} +{"label":"Killing Me Softly","description":" A woman faces deadly consequences for abandoning her loving relationship with her boyfriend to pursue exciting sexual scenarios with a mysterious celebrity mountaineer.","id":"14365","runtime":100,"imdbId":"tt0250468","trailer":"http:\/\/www.youtube.com\/watch?v=hkmUeFJKFms","version":199,"lastModified":"1301903507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ce\/4bc94298017a3c57fe01c6ce\/killing-me-softly-mid.jpg","genre":"Drama","title":"Killing Me Softly","releaseDate":1020988800000,"language":"en","type":"Movie","_key":"58882"} +{"label":"Adventures in Babysitting","description":"Chris has a big night out planned when her boyfriend cancels on her. She agrees to babysit for a pre-teen girl and a pubescent boy. She's settled in for a dull night when a girlfriend calls her to say she's marooned at a downtown bus station with very seedy characters around. The three plus one of the boy's friends get into the parents station wagon for a trip to the inner city.","id":"14367","runtime":102,"imdbId":"tt0092513","trailer":"http:\/\/www.youtube.com\/watch?v=933","version":161,"lastModified":"1301903681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e0\/4bc94299017a3c57fe01c6e0\/adventures-in-babysitting-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Adventures in Babysitting","releaseDate":552096000000,"language":"en","type":"Movie","_key":"58883"} +{"label":"Maia Brewton","version":17,"id":"139044","lastModified":"1301902466000","name":"Maia Brewton","type":"Person","_key":"58884"} +{"label":"Jungle Emperor Leo","description":"No overview found.","id":"14368","runtime":100,"imdbId":"tt0119406","version":76,"lastModified":"1301906840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e5\/4bc9429a017a3c57fe01c6e5\/jungle-emperor-leo-mid.jpg","genre":"Animation","title":"Jungle Emperor Leo","releaseDate":852076800000,"language":"en","type":"Movie","_key":"58885"} +{"label":"Out Cold","description":"Animal House meets Casablanca in this outrageous snowboarding comedy. Rick Rambis and his friends are having the time of their lives on Bull Mountain until the legendary Papa Muntz' son decides to sell the mountain to sleazy land developer John Majors, having the staff fired and turning Bull Mountain into 'Yuppieville'.","id":"14369","runtime":89,"imdbId":"tt0253798","trailer":"http:\/\/www.youtube.com\/watch?v=4_7nVDz0tUE","version":228,"lastModified":"1301907568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fe\/4bc9429c017a3c57fe01c6fe\/out-cold-mid.jpg","studio":"Donners' Company","genre":"Comedy","title":"Out Cold","releaseDate":1006300800000,"language":"en","tagline":"They Haven't Quite Figured It All Out, But They're Getting A Little Warmer.","type":"Movie","_key":"58886"} +{"label":"Brendan Malloy","version":23,"id":"82221","lastModified":"1301902002000","name":"Brendan Malloy","type":"Person","_key":"58887"} +{"label":"Emmett Malloy","version":28,"id":"82222","lastModified":"1301901982000","name":"Emmett Malloy","type":"Person","_key":"58888"} +{"label":"Real Genius","description":"Chris is the top brain who just wants to party, Mitch is the 16-year-old wiz kid, and Lazlo, America's number one brain, literally lives in a world of his own ... Chris' closet. Supposedly hard at work on a lab project, they still find time to turn the dorm into an ice-skating rink, dismantle a nerd's car and reassemble it in his room, and throw a beach party in the auditorium!","id":"14370","runtime":108,"imdbId":"tt0089886","version":213,"lastModified":"1301903554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a0\/4d419a517b9aa15bab0036a0\/real-genius-mid.jpg","studio":"Delphi III Productions","genre":"Comedy","title":"Real Genius","releaseDate":492220800000,"language":"en","type":"Movie","_key":"58889"} +{"label":"Gabriel Jarret","version":16,"id":"92808","lastModified":"1301902244000","name":"Gabriel Jarret","type":"Person","_key":"58890"} +{"label":"Leviathan","description":"Underwater deep-sea miners encounter a Soviet wreck and bring back a dangerous cargo to their base on the ocean floor with horrifying results. The crew of the mining base must fight to survive against a genetic mutation that hunts them down one by one.","id":"14372","runtime":98,"imdbId":"tt0097737","version":136,"lastModified":"1301902774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/723\/4bc942a2017a3c57fe01c723\/leviathan-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Horror","title":"Leviathan","releaseDate":599616000000,"language":"en","tagline":"The true meaning of fear","type":"Movie","_key":"58891"} +{"label":"Michael Carmine","version":18,"id":"96442","lastModified":"1301902530000","name":"Michael Carmine","type":"Person","_key":"58892"} +{"label":"Death Wish II","description":"Paul Kersey is again a vigilante trying to find five punks who murdered his housekeeper and daughter in Los Angeles.","id":"14373","runtime":88,"imdbId":"tt0082250","trailer":"http:\/\/www.youtube.com\/watch?v=JhXVeuNudWc","version":113,"lastModified":"1301902424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c20\/4d8fe4007b9aa1674f002c20\/death-wish-ii-mid.jpg","genre":"Action","title":"Death Wish II","releaseDate":383011200000,"language":"en","type":"Movie","_key":"58893"} +{"label":"Romanzo Criminale","description":"The Lebanese has a dream: to conquer the underworld of Rome. To carry out this feat without precedent he puts together a ruthless and highly organized gang. Their progress and changes in leadership take place over 25 years, from the 1970s into the 90s, and are inseparably intertwined with the dark history of modern Italy: terrorism, kidnappings and corruption at the highest levels of government. ","id":"14375","runtime":152,"imdbId":"tt0418110","homepage":"http:\/\/www.romanzocriminale.it\/","version":57,"lastModified":"1301907097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/731\/4bc942a4017a3c57fe01c731\/romanzo-criminale-mid.jpg","title":"Romanzo Criminale","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"58894"} +{"label":"Der Kleine Eisb\u00e4r 2 - Die geheimnisvolle Insel","description":"No overview found.","id":"14376","runtime":80,"imdbId":"tt0401559","homepage":"http:\/\/www.warnerbros.de\/movies\/derkleineeisbaer\/","version":32,"lastModified":"1301907307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/736\/4bc942a4017a3c57fe01c736\/der-kleine-eisbar-2-die-geheimnisvolle-insel-mid.jpg","title":"Der Kleine Eisb\u00e4r 2 - Die geheimnisvolle Insel","releaseDate":1127952000000,"language":"en","type":"Movie","_key":"58895"} +{"label":"Death Wish Collection","description":"Five films about Paul Kersey, an architect with no luck whatsoever. First His wife is murdered when their apartment is broken into, 8 years later his mentally ill daughter is raped and murdered. After all this Kersey is never the same and ends up taking on the drug lords and various criminals of the world.","id":"14377","version":50,"lastModified":"1301903709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2e\/4d8fd1657b9aa1675e002a2e\/death-wish-collection-mid.jpg","title":"Death Wish Collection","language":"en","type":"Movie","_key":"58896"} +{"label":"Bionic Woman","description":"No overview found.","id":"14378","runtime":0,"imdbId":"tt0880557","version":446,"lastModified":"1302025455000","title":"Bionic Woman","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"58897"} +{"label":"The Sex Monster","description":"A neurotic L.A. building contractor (Mike Binder in his best Woody Allen imitation) pushes his wife (Mariel Hemingway) into entering into a three way sexual relationship. Unfortunately for him, his wife gets more out of it than he does and becomes a tigress seducing every female she meets including the contractor's secretary.","id":"14383","runtime":97,"imdbId":"tt0159730","version":307,"lastModified":"1301906226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4c5bf2bb7b9aa151f30006eb\/the-sex-monster-mid.jpg","genre":"Comedy","title":"The Sex Monster","releaseDate":926726400000,"language":"en","type":"Movie","_key":"58898"} +{"label":"Soldier Blue","description":"After a cavalry group is massacred by the Cheyenne, only two survivors remain: Honus, a naive private devoted to his duty, and Cresta, a young woman who had lived with the Cheyenne two years and whose sympathies lie more with them than with the US government. Together, they must try to reach the cavalry's main base camp. As they travel onward, Honus is torn between his growing affection for Cresta.","id":"14384","runtime":112,"imdbId":"tt0066390","version":60,"lastModified":"1302025431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/765\/4bc942ac017a3c57fe01c765\/soldier-blue-mid.jpg","genre":"Western","title":"Soldier Blue","releaseDate":29548800000,"language":"en","tagline":"The most savage film in history!","type":"Movie","_key":"58899"} +{"label":"The Great St. Trinian's Train Robbery","description":"The all-girl school foil an attempt by train robbers to recover two and a half million pounds hidden in their school.","id":"14387","runtime":93,"imdbId":"tt0060476","version":132,"lastModified":"1301907703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76a\/4bc942ac017a3c57fe01c76a\/great-st-trinians-train-robbery-mid.jpg","genre":"Action","title":"The Great St. Trinian's Train Robbery","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"58900"} +{"label":"Reg Varney","version":24,"id":"84357","lastModified":"1301902722000","name":"Reg Varney","type":"Person","_key":"58901"} +{"label":"Raymond Huntley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fe\/4ccb2d137b9aa16b9d0004fe\/raymond-huntley-profile.jpg","version":46,"id":"87071","lastModified":"1301984423000","name":"Raymond Huntley","type":"Person","_key":"58902"} +{"label":"Richard Wattis","version":28,"birthday":"-1825635600000","id":"85935","lastModified":"1301902540000","name":"Richard Wattis","type":"Person","_key":"58903"} +{"label":"Portland Mason","version":17,"id":"132099","lastModified":"1301902779000","name":"Portland Mason","type":"Person","_key":"58904"} +{"label":"Terry Scott","version":26,"id":"84444","lastModified":"1301902497000","name":"Terry Scott","type":"Person","_key":"58905"} +{"label":"Eric Barton","version":25,"id":"94835","lastModified":"1301902140000","name":"Eric Barton","type":"Person","_key":"58906"} +{"label":"Godfrey Winn","version":17,"id":"132100","lastModified":"1301902779000","name":"Godfrey Winn","type":"Person","_key":"58907"} +{"label":"Desmond Walter-Ellis","version":21,"id":"132101","lastModified":"1301902779000","name":"Desmond Walter-Ellis","type":"Person","_key":"58908"} +{"label":"Arthur Mullard","version":17,"id":"132102","lastModified":"1301902897000","name":"Arthur Mullard","type":"Person","_key":"58909"} +{"label":"Cyril Chamberlain","version":20,"id":"115606","lastModified":"1301902982000","name":"Cyril Chamberlain","type":"Person","_key":"58910"} +{"label":"Larry Martyn","version":18,"id":"132103","lastModified":"1301903051000","name":"Larry Martyn","type":"Person","_key":"58911"} +{"label":"Leon Thau","version":17,"id":"117397","lastModified":"1301902766000","name":"Leon Thau","type":"Person","_key":"58912"} +{"label":"Sidney Gilliat","version":48,"id":"14292","lastModified":"1301901419000","name":"Sidney Gilliat","type":"Person","_key":"58913"} +{"label":"Danny Deckchair","description":"Based on a true story, the tale of a cement truck driver named Danny, whose long awaited vacation is cancelled thanks to his scheming girlfriend, Trudy. Danny escapes his grim life in suburban Australia and blasts into the skies in a chair tied with helium balloons. A mighty thunderstorm blows him clean off the map, and spits him out far away over the lush green town of Clarence. In this new town,","id":"14389","runtime":100,"imdbId":"tt0337960","version":263,"lastModified":"1301906225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77b\/4bc942b1017a3c57fe01c77b\/danny-deckchair-mid.jpg","studio":"Lions Gate Films","genre":"Comedy","title":"Danny Deckchair","releaseDate":1053043200000,"language":"en","type":"Movie","_key":"58914"} +{"label":"Justine Clarke","version":21,"id":"79692","lastModified":"1301902141000","name":"Justine Clarke","type":"Person","_key":"58915"} +{"label":"Rhys Muldoon","version":22,"id":"88360","lastModified":"1301902585000","name":"Rhys Muldoon","type":"Person","_key":"58916"} +{"label":"John Batchelor","version":22,"id":"83772","lastModified":"1301902634000","name":"John Batchelor","type":"Person","_key":"58917"} +{"label":"Alan Flower","version":20,"id":"88361","lastModified":"1301903035000","name":"Alan Flower","type":"Person","_key":"58918"} +{"label":"Julie Sobotta","version":19,"id":"88362","lastModified":"1301903079000","name":"Julie Sobotta","type":"Person","_key":"58919"} +{"label":"Brian Langsworth","version":19,"id":"88363","lastModified":"1301902891000","name":"Brian Langsworth","type":"Person","_key":"58920"} +{"label":"Steve Rassios","version":17,"id":"88364","lastModified":"1301902890000","name":"Steve Rassios","type":"Person","_key":"58921"} +{"label":"Madeleine James","version":19,"id":"88365","lastModified":"1301902890000","name":"Madeleine James","type":"Person","_key":"58922"} +{"label":"Jane Ruggiero","version":19,"id":"88366","lastModified":"1301902890000","name":"Jane Ruggiero","type":"Person","_key":"58923"} +{"label":"Gina Bortolin","version":19,"id":"88367","lastModified":"1301902890000","name":"Gina Bortolin","type":"Person","_key":"58924"} +{"label":"Garrie Scott","version":19,"id":"88368","lastModified":"1301902890000","name":"Garrie Scott","type":"Person","_key":"58925"} +{"label":"Dina Gillespie","version":19,"id":"88369","lastModified":"1301902890000","name":"Dina Gillespie","type":"Person","_key":"58926"} +{"label":"Rod Zuanic","version":19,"id":"88370","lastModified":"1301902890000","name":"Rod Zuanic","type":"Person","_key":"58927"} +{"label":"Ross Perrelli","version":19,"id":"88371","lastModified":"1301902890000","name":"Ross Perrelli","type":"Person","_key":"58928"} +{"label":"Victoria Nucifora","version":19,"id":"88372","lastModified":"1301902890000","name":"Victoria Nucifora","type":"Person","_key":"58929"} +{"label":"Gyton Grantley","version":21,"id":"78572","lastModified":"1301901469000","name":"Gyton Grantley","type":"Person","_key":"58930"} +{"label":"Amie McKenna","version":19,"id":"88373","lastModified":"1301902890000","name":"Amie McKenna","type":"Person","_key":"58931"} +{"label":"Colin Angus","version":19,"id":"88374","lastModified":"1301902890000","name":"Colin Angus","type":"Person","_key":"58932"} +{"label":"Yanna Black","version":19,"id":"88375","lastModified":"1301902890000","name":"Yanna Black","type":"Person","_key":"58933"} +{"label":"Maeve Byrne","version":19,"id":"88376","lastModified":"1301902634000","name":"Maeve Byrne","type":"Person","_key":"58934"} +{"label":"Peter Eyers","version":19,"id":"88377","lastModified":"1301902890000","name":"Peter Eyers","type":"Person","_key":"58935"} +{"label":"Victoria Karozis","version":19,"id":"88378","lastModified":"1301902890000","name":"Victoria Karozis","type":"Person","_key":"58936"} +{"label":"Paul Wilson","version":19,"id":"88379","lastModified":"1301902890000","name":"Paul Wilson","type":"Person","_key":"58937"} +{"label":"Danny Nash","version":19,"id":"88380","lastModified":"1301902890000","name":"Danny Nash","type":"Person","_key":"58938"} +{"label":"Keith Agius","version":19,"id":"88381","lastModified":"1301902890000","name":"Keith Agius","type":"Person","_key":"58939"} +{"label":"Andrew Crabbe","version":19,"id":"88382","lastModified":"1301902890000","name":"Andrew Crabbe","type":"Person","_key":"58940"} +{"label":"Richard Healy","version":19,"id":"88383","lastModified":"1301902890000","name":"Richard Healy","type":"Person","_key":"58941"} +{"label":"Sean McKenzie","version":19,"id":"88384","lastModified":"1301902890000","name":"Sean McKenzie","type":"Person","_key":"58942"} +{"label":"Peter Cook","version":29,"id":"76960","lastModified":"1301901796000","name":"Peter Cook","type":"Person","_key":"58943"} +{"label":"Alex Mann","version":22,"id":"88385","lastModified":"1301902384000","name":"Alex Mann","type":"Person","_key":"58944"} +{"label":"Maggie Dence","version":20,"id":"79711","lastModified":"1301902465000","name":"Maggie Dence","type":"Person","_key":"58945"} +{"label":"Frank Magree","version":19,"id":"88386","lastModified":"1301902890000","name":"Frank Magree","type":"Person","_key":"58946"} +{"label":"Peter Fisher","version":19,"id":"88387","lastModified":"1301902890000","name":"Peter Fisher","type":"Person","_key":"58947"} +{"label":"Jack Carty","version":19,"id":"88388","lastModified":"1301902890000","name":"Jack Carty","type":"Person","_key":"58948"} +{"label":"Michelle Boyle","version":19,"id":"88393","lastModified":"1301902634000","name":"Michelle Boyle","type":"Person","_key":"58949"} +{"label":"Phillip Monoghan","version":19,"id":"88394","lastModified":"1301902890000","name":"Phillip Monoghan","type":"Person","_key":"58950"} +{"label":"Jane Beddows","version":19,"id":"88395","lastModified":"1301902890000","name":"Jane Beddows","type":"Person","_key":"58951"} +{"label":"Jasmina Singh","version":19,"id":"88396","lastModified":"1301902890000","name":"Jasmina Singh","type":"Person","_key":"58952"} +{"label":"Rajpreet Singh","version":19,"id":"88397","lastModified":"1301902890000","name":"Rajpreet Singh","type":"Person","_key":"58953"} +{"label":"Paviterjeet Singh","version":19,"id":"88398","lastModified":"1301902890000","name":"Paviterjeet Singh","type":"Person","_key":"58954"} +{"label":"Michelle Collins","version":19,"id":"88399","lastModified":"1301902890000","name":"Michelle Collins","type":"Person","_key":"58955"} +{"label":"Michelle Collins","version":19,"id":"88400","lastModified":"1301902890000","name":"Michelle Collins","type":"Person","_key":"58956"} +{"label":"Lester Morris","version":19,"id":"88401","lastModified":"1301902890000","name":"Lester Morris","type":"Person","_key":"58957"} +{"label":"Shar Grover","version":19,"id":"88402","lastModified":"1301902890000","name":"Shar Grover","type":"Person","_key":"58958"} +{"label":"Nick Holland","version":19,"id":"88403","lastModified":"1301902890000","name":"Nick Holland","type":"Person","_key":"58959"} +{"label":"Marie Patane","version":19,"id":"88404","lastModified":"1301902890000","name":"Marie Patane","type":"Person","_key":"58960"} +{"label":"Stephen Holt","version":19,"id":"88405","lastModified":"1301902890000","name":"Stephen Holt","type":"Person","_key":"58961"} +{"label":"Angus King","version":19,"id":"88406","lastModified":"1301902890000","name":"Angus King","type":"Person","_key":"58962"} +{"label":"Simon Mills","version":19,"id":"88407","lastModified":"1301902890000","name":"Simon Mills","type":"Person","_key":"58963"} +{"label":"Tassa Behan","version":19,"id":"88408","lastModified":"1301902890000","name":"Tassa Behan","type":"Person","_key":"58964"} +{"label":"Karen Pang","version":20,"id":"88409","lastModified":"1301902768000","name":"Karen Pang","type":"Person","_key":"58965"} +{"label":"Kathryn Dagher","version":19,"id":"88410","lastModified":"1301902890000","name":"Kathryn Dagher","type":"Person","_key":"58966"} +{"label":"Michael Barnacoat","version":19,"id":"88411","lastModified":"1301902890000","name":"Michael Barnacoat","type":"Person","_key":"58967"} +{"label":"Martin Lewis","version":20,"id":"88412","lastModified":"1301902312000","name":"Martin Lewis","type":"Person","_key":"58968"} +{"label":"Rohan Seinor","version":19,"id":"88413","lastModified":"1301902890000","name":"Rohan Seinor","type":"Person","_key":"58969"} +{"label":"Guy Leslie","version":19,"id":"88414","lastModified":"1301902890000","name":"Guy Leslie","type":"Person","_key":"58970"} +{"label":"Nino Alessi","version":19,"id":"88415","lastModified":"1301902890000","name":"Nino Alessi","type":"Person","_key":"58971"} +{"label":"Todd Hodgson","version":19,"id":"88416","lastModified":"1301902890000","name":"Todd Hodgson","type":"Person","_key":"58972"} +{"label":"Dane Carson","version":19,"id":"88417","lastModified":"1301902890000","name":"Dane Carson","type":"Person","_key":"58973"} +{"label":"Amanda Wenban","version":19,"id":"88418","lastModified":"1301902890000","name":"Amanda Wenban","type":"Person","_key":"58974"} +{"label":"Julia Zemiro","version":19,"id":"88419","lastModified":"1301902890000","name":"Julia Zemiro","type":"Person","_key":"58975"} +{"label":"Lloyd Thomas","version":19,"id":"88420","lastModified":"1301902890000","name":"Lloyd Thomas","type":"Person","_key":"58976"} +{"label":"Stephen Hobb","version":19,"id":"88421","lastModified":"1301902890000","name":"Stephen Hobb","type":"Person","_key":"58977"} +{"label":"Warwick Moss","version":19,"id":"88422","lastModified":"1301902890000","name":"Warwick Moss","type":"Person","_key":"58978"} +{"label":"Ken Porter","version":19,"id":"88423","lastModified":"1301902890000","name":"Ken Porter","type":"Person","_key":"58979"} +{"label":"Owen Buik","version":19,"id":"88424","lastModified":"1301902890000","name":"Owen Buik","type":"Person","_key":"58980"} +{"label":"David McCubbin","version":19,"id":"88425","lastModified":"1301902890000","name":"David McCubbin","type":"Person","_key":"58981"} +{"label":"Serge Cockburn","version":19,"id":"88427","lastModified":"1301902890000","name":"Serge Cockburn","type":"Person","_key":"58982"} +{"label":"William David Thompson","version":19,"id":"88428","lastModified":"1301902889000","name":"William David Thompson","type":"Person","_key":"58983"} +{"label":"Pam Singh","version":19,"id":"88429","lastModified":"1301902890000","name":"Pam Singh","type":"Person","_key":"58984"} +{"label":"Leanna Brockenshire","version":19,"id":"88430","lastModified":"1301902889000","name":"Leanna Brockenshire","type":"Person","_key":"58985"} +{"label":"Paul Eden","version":19,"id":"88431","lastModified":"1301902889000","name":"Paul Eden","type":"Person","_key":"58986"} +{"label":"Peter Franks","version":19,"id":"88432","lastModified":"1301902889000","name":"Peter Franks","type":"Person","_key":"58987"} +{"label":"Leon Fryer","version":19,"id":"88433","lastModified":"1301902889000","name":"Leon Fryer","type":"Person","_key":"58988"} +{"label":"Jeff Balsmeyer","version":16,"id":"143284","lastModified":"1301902756000","name":"Jeff Balsmeyer","type":"Person","_key":"58989"} +{"label":"Double Whammy","description":"A dejected police detective struggles against personal injury and professional failure to restore his image and reputation.","id":"14390","runtime":0,"imdbId":"tt0250347","version":252,"lastModified":"1301903811000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83c\/4d16546d5e73d6083800783c\/double-whammy-mid.jpg","genre":"Action","title":"Double Whammy","releaseDate":979948800000,"language":"en","type":"Movie","_key":"58990"} +{"label":"Keith Nobbs","version":24,"id":"120255","lastModified":"1301903052000","name":"Keith Nobbs","type":"Person","_key":"58991"} +{"label":"Joe D'Angerio","version":19,"id":"120257","lastModified":"1301902677000","name":"Joe D'Angerio","type":"Person","_key":"58992"} +{"label":"The Warlords","description":"A heroic tale of three blood brothers and their struggle in the midst of war and political upheaval. It is based on \"The Assassination of Ma,\" a Qing Dynasty (1644-1911) story about the killing of general Ma Xinyi.","id":"14392","runtime":126,"imdbId":"tt0913968","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=NOr8Dj1PxJg","version":343,"lastModified":"1302070248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79d\/4bc942b4017a3c57fe01c79d\/tau-ming-chong-mid.jpg","studio":"China Film","genre":"Action","title":"The Warlords","releaseDate":1197417600000,"language":"en","type":"Movie","_key":"58993"} +{"label":"Jinglei Xu","version":37,"id":"76811","lastModified":"1302070248000","name":"Jinglei Xu","type":"Person","_key":"58994"} +{"label":"Peter Chan","version":38,"id":"56739","lastModified":"1302070248000","name":"Peter Chan","type":"Person","_key":"58995"} +{"label":"Wai Man Yip","version":43,"id":"76812","lastModified":"1302070248000","name":"Wai Man Yip","type":"Person","_key":"58996"} +{"label":"Double Pack","description":"No overview found.","id":"14393","runtime":88,"imdbId":"tt0202256","version":90,"lastModified":"1301904383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ac\/4bc942b5017a3c57fe01c7ac\/doppelpack-mid.jpg","studio":"Prokino Filmproduktion","title":"Double Pack","releaseDate":966470400000,"language":"en","type":"Movie","_key":"58997"} +{"label":"Margret V\u00f6lker","version":20,"id":"129307","lastModified":"1301902791000","name":"Margret V\u00f6lker","type":"Person","_key":"58998"} +{"label":"Matthias Lehmann","version":21,"id":"58485","lastModified":"1301902048000","name":"Matthias Lehmann","type":"Person","_key":"58999"} +{"label":"Sarkar Raj","description":"The politically influential Shankar Nagre agrees to back a power plant scheme presented by corporate hotshot Anita Rajan; providing their enemies, which include upcoming political firebrands, an embezzling facilitator and shady businessmen with a unique opportunity to destroy the mass political clout enjoyed by him and his father (Subhash Nagre), the political icon known as \"Sarkar\".","id":"14394","runtime":125,"imdbId":"tt0490210","homepage":"http:\/\/www.sarkarrajthefilm.com\/","version":95,"lastModified":"1301903595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b9\/4bc942b9017a3c57fe01c7b9\/sarkar-raj-mid.jpg","studio":"K Sera Sera","genre":"Action","title":"Sarkar Raj","releaseDate":1212710400000,"language":"en","type":"Movie","_key":"59000"} +{"label":"Ram Gopal Varma","version":28,"id":"76813","lastModified":"1301901412000","name":"Ram Gopal Varma","type":"Person","_key":"59001"} +{"label":"Kabhi Alvida Naa Kehna","description":"No overview found.","id":"14395","runtime":193,"imdbId":"tt0449999","version":193,"lastModified":"1301908003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ce\/4bc942ba017a3c57fe01c7ce\/kabhi-alvida-naa-kehna-mid.jpg","studio":"Dharma Productions","genre":"Drama","title":"Kabhi Alvida Naa Kehna","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"59002"} +{"label":"Ahsaas Channa","version":20,"id":"87305","lastModified":"1301902987000","name":"Ahsaas Channa","type":"Person","_key":"59003"} +{"label":"Code Name: The Cleaner","description":"Cedric the Entertainer plays Jake, a seemingly regular guy who has no idea who he is after being hit over the head by mysterious assailants. When he finds himself entangled in a government conspiracy, Jake and his pursuers become convinced that he is an undercover agent. ","id":"14396","runtime":84,"imdbId":"tt0462229","version":159,"lastModified":"1301902517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7dc\/4bc942bb017a3c57fe01c7dc\/code-name-the-cleaner-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Code Name: The Cleaner","releaseDate":1167955200000,"language":"en","type":"Movie","_key":"59004"} +{"label":"Whisper","description":"Convicted felon Max Truemont (played by Josh Holloway) is hired to execute a kidnapping of the son of one of the richest women in the state. Along with his fianc\u00e9e Roxanne (played by Sarah Wayne Callies), Max joins two other strangers who were also hired by the same absent mastermind behind the kidnapping.","id":"14397","runtime":94,"imdbId":"tt0435528","version":214,"lastModified":"1301904618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4bc942bc017a3c57fe01c7e5\/whisper-mid.jpg","genre":"Crime","title":"Whisper","releaseDate":1196121600000,"language":"en","type":"Movie","_key":"59005"} +{"label":"Stewart Hendler","version":18,"id":"130837","lastModified":"1301902582000","name":"Stewart Hendler","type":"Person","_key":"59006"} +{"label":"Josh Holloway","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/361\/4d4429da5e73d65c84000361\/josh-holloway-profile.jpg","biography":"<b><span style=\"font-weight: bold;\">Joshua Lee \"Josh\" Holloway (born July 20, 1969) is an American actor and model from Free Home, Georgia. He is best known for his role as James \"Sawyer\" Ford on the American television show Lost.\n<\/span><\/b>","version":21,"id":"142636","lastModified":"1301902354000","name":"Josh Holloway","type":"Person","_key":"59007"} +{"label":"Sarah Wayne Callies","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9cc\/4d1b2cd85e73d6084200b9cc\/sarah-wayne-callies-profile.jpg","version":25,"id":"86468","lastModified":"1301901223000","name":"Sarah Wayne Callies","type":"Person","_key":"59008"} +{"label":"Julian Christopher","version":16,"id":"142637","lastModified":"1301902412000","name":"Julian Christopher","type":"Person","_key":"59009"} +{"label":"Dul\u00e9 Hill","version":37,"id":"142638","lastModified":"1301902393000","name":"Dul\u00e9 Hill","type":"Person","_key":"59010"} +{"label":"Jennifer Shirley","version":13,"id":"164368","lastModified":"1301903395000","name":"Jennifer Shirley","type":"Person","_key":"59011"} +{"label":"Tara Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b8c\/4d442c175e73d66f59000b8c\/tara-wilson-profile.jpg","version":24,"id":"84270","lastModified":"1301901952000","name":"Tara Wilson","type":"Person","_key":"59012"} +{"label":"Gang Related","description":"Two corrupt cops have a successful, seemingly perfect money making scheme- they sell drugs that they seize from dealers, kill the dealers, and blame the crimes on street gangs. Their scheme is going along smoothly until they kill an undercover DEA agent posing as a dealer, and then try to cover-up their crime. ","id":"14398","runtime":102,"imdbId":"tt0118900","homepage":"http:\/\/www.imdb.com\/title\/tt0118900\/","version":94,"lastModified":"1301904883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ea\/4bc942bc017a3c57fe01c7ea\/gang-related-mid.jpg","studio":"SVT Drama","genre":"Action","title":"Gang Related","releaseDate":876268800000,"language":"en","type":"Movie","_key":"59013"} +{"label":"Matando Cabos","description":"Oscar Cabos, a multimillionaire tycoon, is being held for ransom--only his captors have nabbed the wrong man. Now, to get their money, they must find the real Cabos--which could get tricky since he's been counter-kidnapped by his future son-in-law and impersonated by his childhood friend (now his janitor), Nacho. ","id":"14399","runtime":94,"imdbId":"tt0380538","version":116,"lastModified":"1301905471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f3\/4bc942bd017a3c57fe01c7f3\/matando-cabos-mid.jpg","genre":"Action","title":"Matando Cabos","releaseDate":1089936000000,"language":"en","type":"Movie","_key":"59014"} +{"label":"Alejandro Lozano","version":19,"id":"76817","lastModified":"1301901949000","name":"Alejandro Lozano","type":"Person","_key":"59015"} +{"label":"Tony Dalton","version":21,"id":"76855","lastModified":"1301901562000","name":"Tony Dalton","type":"Person","_key":"59016"} +{"label":"Kristoff","version":18,"id":"76856","lastModified":"1301901836000","name":"Kristoff","type":"Person","_key":"59017"} +{"label":"Joaqu\u00edn Cosio","version":23,"id":"76857","lastModified":"1301901689000","name":"Joaqu\u00edn Cosio","type":"Person","_key":"59018"} +{"label":"Largo Winch","description":"After a powerful billionaire is murdered, his secret adoptive son must race to prove his legitimacy, find his father's killers and stop them from taking over his financial empire.","id":"14400","runtime":108,"imdbId":"tt0808339","homepage":"http:\/\/www.largowinch-lefilm.com\/","version":172,"lastModified":"1301901283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4bc942bd017a3c57fe01c7fc\/largo-winch-mid.jpg","studio":"Wild Bunch Distribution","genre":"Action","title":"Largo Winch","releaseDate":1229472000000,"language":"en","type":"Movie","_key":"59019"} +{"label":"Beauties at War","description":"A ski resort town struggles to become the top tourism spot.","id":"14402","runtime":89,"imdbId":"tt1196329","version":54,"lastModified":"1301905541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/817\/4bc942c0017a3c57fe01c817\/la-guerre-des-miss-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Beauties at War","releaseDate":1231891200000,"language":"en","type":"Movie","_key":"59020"} +{"label":"Un homme et son chien","description":"No overview found.","id":"14403","runtime":94,"imdbId":"tt1174049","version":55,"lastModified":"1301904995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/828\/4bc942c5017a3c57fe01c828\/un-homme-et-son-chien-mid.jpg","studio":"Ocean Films","genre":"Drama","title":"Un homme et son chien","releaseDate":1231891200000,"language":"en","type":"Movie","_key":"59021"} +{"label":"Julika Jenkins","version":21,"id":"28294","lastModified":"1301902144000","name":"Julika Jenkins","type":"Person","_key":"59022"} +{"label":"Beverly Hills Chihuahua","description":"A pampered Beverly Hills chihuahua named Chloe who, while on vacation in Mexico with her owner Viv's niece, Rachel, gets lost and must rely on her friends to help her get back home before she is caught by a dognapper who wants to ransom her.","id":"14405","runtime":91,"imdbId":"tt1014775","version":237,"lastModified":"1301901993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/857\/4bc942c8017a3c57fe01c857\/beverly-hills-chihuahua-mid.jpg","studio":"Walt Disney Studios Motion Pictures","genre":"Adventure","title":"Beverly Hills Chihuahua","releaseDate":1222992000000,"language":"en","tagline":"50% Warrior. 50% Lover. 100% Chihuahua.","type":"Movie","_key":"59023"} +{"label":"Pl\u00e1cido Domingo","version":30,"id":"77886","lastModified":"1301901424000","name":"Pl\u00e1cido Domingo","type":"Person","_key":"59024"} +{"label":"Eddie 'Piolin' Sotelo","version":20,"id":"77887","lastModified":"1301901609000","name":"Eddie 'Piolin' Sotelo","type":"Person","_key":"59025"} +{"label":"Carlos Juvera","version":22,"id":"77888","lastModified":"1301901609000","name":"Carlos Juvera","type":"Person","_key":"59026"} +{"label":"Mariage chez les Bodin's","description":"Nous sommes dans un coin de France recul\u00e9... tr\u00e8s recul\u00e9.","id":"14406","runtime":82,"imdbId":"tt1309463","version":40,"lastModified":"1301905700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/873\/4bc942cb017a3c57fe01c873\/mariage-chez-les-bodin-s-mid.jpg","studio":"ADR Productions","genre":"Comedy","title":"Mariage chez les Bodin's","releaseDate":1222214400000,"language":"en","type":"Movie","_key":"59027"} +{"label":"Eric Le Roch","version":26,"id":"78069","lastModified":"1301901562000","name":"Eric Le Roch","type":"Person","_key":"59028"} +{"label":"Jean-Christophe Fraiscinet","version":18,"id":"78070","lastModified":"1301901779000","name":"Jean-Christophe Fraiscinet","type":"Person","_key":"59029"} +{"label":"Vincent Dubois","version":25,"id":"78071","lastModified":"1301901531000","name":"Vincent Dubois","type":"Person","_key":"59030"} +{"label":"Jean-Pierre Durand","version":17,"id":"78072","lastModified":"1301901779000","name":"Jean-Pierre Durand","type":"Person","_key":"59031"} +{"label":"Muriel Dubois","version":24,"id":"78073","lastModified":"1301902053000","name":"Muriel Dubois","type":"Person","_key":"59032"} +{"label":"Faru","version":20,"id":"78074","lastModified":"1301902326000","name":"Faru","type":"Person","_key":"59033"} +{"label":"Carole Massana","version":20,"id":"78075","lastModified":"1301902326000","name":"Carole Massana","type":"Person","_key":"59034"} +{"label":"Guy X","description":"A black comedy set in 1979, about a soldier mistakenly posted to an Arctic military base.","id":"14407","runtime":0,"imdbId":"tt0408828","trailer":"http:\/\/www.youtube.com\/watch?v=6-tlAWY-Jz4","version":162,"lastModified":"1301906608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87c\/4bc942ce017a3c57fe01c87c\/guy-x-mid.jpg","genre":"Comedy","title":"Guy X","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"59035"} +{"label":"Me Two","description":"Gilles Gabriel, chanteur des 80's en plein come-back, est tu\u00e9 dans un accident de voiture caus\u00e9 par Jean-Christian Ranu, comptable \u00e0 la COGIP. Mais Gilles Gabriel n'est pas totalement mort : son esprit bien vivant a atterri dans le corps de Ranu, qui ne comprend pas qui est cette personne qui parle dans sa t\u00eate.","id":"14408","runtime":87,"imdbId":"tt0463352","version":131,"lastModified":"1301904956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88d\/4bc942d0017a3c57fe01c88d\/la-personne-aux-deux-personnes-mid.jpg","studio":"TF1 Films Productions","genre":"Comedy","title":"Me Two","releaseDate":1213747200000,"language":"en","type":"Movie","_key":"59036"} +{"label":"Nicolas Charlet","version":20,"id":"76818","lastModified":"1301901609000","name":"Nicolas Charlet","type":"Person","_key":"59037"} +{"label":"Bruno Lavaine","version":20,"id":"76819","lastModified":"1301901719000","name":"Bruno Lavaine","type":"Person","_key":"59038"} +{"label":"Vampire Party","description":"Sam, Prune et Alice sont trois amis squatteurs de soir\u00e9es. Le jour o\u00f9 ils d\u00e9nichent des invitations pour la tr\u00e8s myst\u00e9rieuse Nuit M\u00e9dicis, ils pensent avoir d\u00e9croch\u00e9 le gros lot...","id":"14409","runtime":85,"imdbId":"tt1087896","version":95,"lastModified":"1301903555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89e\/4bc942d2017a3c57fe01c89e\/les-dents-de-la-nuit-mid.jpg","studio":"SND","genre":"Comedy","title":"Vampire Party","releaseDate":1217980800000,"language":"en","type":"Movie","_key":"59039"} +{"label":"Stephen Cafiero","version":21,"id":"76823","lastModified":"1301901865000","name":"Stephen Cafiero","type":"Person","_key":"59040"} +{"label":"Vincent Lobelle","version":21,"id":"76824","lastModified":"1301901719000","name":"Vincent Lobelle","type":"Person","_key":"59041"} +{"label":"Vincent Desagnat","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cfb\/4d7637855e73d66472000cfb\/vincent-desagnat-profile.jpg","biography":"Il est le dernier fils du r\u00e9alisateur et sc\u00e9nariste Jean-Pierre Desagnat, le petit-fils de l'actrice Francia Seguy, le fr\u00e8re du r\u00e9alisateur et sc\u00e9nariste Fran\u00e7ois Desagnat et du producteur et assistant-r\u00e9alisateur Olivier Desagnat.\n\nParall\u00e8lement \u00e0 sa carri\u00e8re cin\u00e9matographique, Il fut animateur radio sur Fun radio et Radio Nova, puis a co-anim\u00e9 avec ses complices Benjamin Morgaine et Micha\u00ebl Youn l'\u00e9mission matinale et d\u00e9jant\u00e9e Morning Live diffus\u00e9e simultan\u00e9ment sur M6 et Fun TV de juillet 200","version":37,"birthday":"195174000000","id":"76825","lastModified":"1301901237000","name":"Vincent Desagnat","type":"Person","_key":"59042"} +{"label":"Sam Karmann","version":33,"id":"76826","lastModified":"1301901268000","name":"Sam Karmann","type":"Person","_key":"59043"} +{"label":"Notorious","description":"The life and death story of Notorious B.I.G. (a.k.a. Christopher Wallace), who came straight out of Brooklyn to take the world of rap music by storm.","id":"14410","runtime":100,"imdbId":"tt0472198","trailer":"http:\/\/www.youtube.com\/watch?v=sJ2vtBOB25A","homepage":"http:\/\/www.foxsearchlight.com\/notorious\/","version":307,"lastModified":"1301903908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8af\/4bc942d3017a3c57fe01c8af\/notorious-mid.jpg","studio":"Bystorm Films","genre":"Drama","title":"Notorious","releaseDate":1232064000000,"language":"en","tagline":"No dream is too big","type":"Movie","_key":"59044"} +{"label":"Jamal Woolard","version":22,"id":"76821","lastModified":"1301901630000","name":"Jamal Woolard","type":"Person","_key":"59045"} +{"label":"Dennis L.A. White","version":22,"id":"76822","lastModified":"1301901757000","name":"Dennis L.A. White","type":"Person","_key":"59046"} +{"label":"Mohamed Dione","version":22,"id":"82159","lastModified":"1301901630000","name":"Mohamed Dione","type":"Person","_key":"59047"} +{"label":"Menyone DeVeaux","version":22,"id":"82160","lastModified":"1301902121000","name":"Menyone DeVeaux","type":"Person","_key":"59048"} +{"label":"Ginger Kroll","version":22,"id":"82161","lastModified":"1301901630000","name":"Ginger Kroll","type":"Person","_key":"59049"} +{"label":"Ricky Smith","version":22,"id":"82162","lastModified":"1301901923000","name":"Ricky Smith","type":"Person","_key":"59050"} +{"label":"Christopher Jordan Wallace","version":22,"id":"82163","lastModified":"1301901923000","name":"Christopher Jordan Wallace","type":"Person","_key":"59051"} +{"label":"Amanda Christopher","version":22,"id":"82164","lastModified":"1301901923000","name":"Amanda Christopher","type":"Person","_key":"59052"} +{"label":"Jasper Briggs","version":22,"id":"82165","lastModified":"1301902121000","name":"Jasper Briggs","type":"Person","_key":"59053"} +{"label":"Cyrus Farmer","version":22,"id":"82166","lastModified":"1301901923000","name":"Cyrus Farmer","type":"Person","_key":"59054"} +{"label":"David Costabile","version":26,"id":"82167","lastModified":"1301901396000","name":"David Costabile","type":"Person","_key":"59055"} +{"label":"Julia Pace Mitchell","version":22,"id":"82168","lastModified":"1301902121000","name":"Julia Pace Mitchell","type":"Person","_key":"59056"} +{"label":"Sinbad, Legend of the Seven Seas","description":"The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.","id":"14411","runtime":86,"imdbId":"tt0165982","trailer":"http:\/\/www.youtube.com\/watch?v=M_j8dl9pviQ","homepage":"http:\/\/sinbad-themovie.com\/main.html","version":172,"lastModified":"1301902139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cc\/4bc942d8017a3c57fe01c8cc\/sinbad-legend-of-the-seven-seas-mid.jpg","genre":"Adventure","title":"Sinbad, Legend of the Seven Seas","releaseDate":1057104000000,"language":"en","type":"Movie","_key":"59057"} +{"label":"Patrick Gilmore","version":26,"id":"76828","lastModified":"1301901468000","name":"Patrick Gilmore","type":"Person","_key":"59058"} +{"label":"Body Heat","description":"In the midst of a searing Florida heat wave, a woman convinces her lover, a small-town lawyer, to murder her rich husband.","id":"14412","runtime":113,"imdbId":"tt0082089","trailer":"http:\/\/www.youtube.com\/watch?v=2345","version":218,"lastModified":"1301902744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4bf04e00017a3c2d36000009\/body-heat-mid.jpg","studio":"Ladd Company","genre":"Crime","title":"Body Heat","releaseDate":354931200000,"language":"en","type":"Movie","_key":"59059"} +{"label":"J'irai dormir \u00e0 Hollywood","description":"Il s'appelle Antoine de Maximy et a d\u00e9cid\u00e9 de conqu\u00e9rir les Etats-Unis: ses routes \u00e0 pertes de vue, ses paysages grandioses, ses mythes en cin\u00e9mascope, ses villes immenses, ses stars hollywoodiennes, ses anonymes...\nD'Est en Ouest, notre voyageur filmeur prend la route. A pied, en stop, en bus, \u00e0 v\u00e9lo et m\u00eame en corbillard! En ligne de mire: Hollywood, o\u00f9 il esp\u00e8re se faire inviter chez une star!","id":"14413","runtime":100,"imdbId":"tt1033595","version":34,"lastModified":"1301905626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ea\/4bc942dc017a3c57fe01c8ea\/j-irai-dormir-a-hollywood-mid.jpg","studio":"Walt Disney Studios Motion Pictures France","genre":"Documentary","title":"J'irai dormir \u00e0 Hollywood","releaseDate":1227052800000,"language":"en","type":"Movie","_key":"59060"} +{"label":"Antoine de Maximy","version":21,"id":"76830","lastModified":"1301901669000","name":"Antoine de Maximy","type":"Person","_key":"59061"} +{"label":"Honeydripper","description":"In 1950's Alabama, the owner of the Honeydripper juke joint finds his business dropping off and against his better judgment, hires a young electric guitarist in a last ditch effort to draw crowds during harvest time. ","id":"14414","runtime":124,"imdbId":"tt0829193","version":169,"lastModified":"1301904748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f3\/4bc942dd017a3c57fe01c8f3\/honeydripper-mid.jpg","studio":"Anarchist's Convention Films","genre":"Drama","title":"Honeydripper","releaseDate":1189382400000,"language":"en","type":"Movie","_key":"59062"} +{"label":"S\u00e9raphine","description":"The tragic story of French na\u00efve painter S\u00e9raphine Louis aka S\u00e9raphine de Senlis (1864-1942), a humble servant who becomes a gifted self-taught painter. Discovered by prominent critic and collector William Uhde, she came to prominence between the wars grouped with other na\u00efve painters like Henri Rouseau only to descend into madness and obscurity with the onset of Great Depression and World War II.","id":"14415","runtime":125,"imdbId":"tt1048171","homepage":"http:\/\/www.seraphine-lefilm.com","version":84,"lastModified":"1301905110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/908\/4bc942e2017a3c57fe01c908\/seraphine-mid.jpg","studio":"Roissy Films","genre":"Drama","title":"S\u00e9raphine","releaseDate":1222819200000,"language":"en","type":"Movie","_key":"59063"} +{"label":"Martin Provost","version":21,"id":"76832","lastModified":"1301902070000","name":"Martin Provost","type":"Person","_key":"59064"} +{"label":"Nico Rogner","version":8,"id":"225959","lastModified":"1301904023000","name":"Nico Rogner","type":"Person","_key":"59065"} +{"label":"Ad\u00e9la\u00efde Leroux","version":17,"id":"115189","lastModified":"1301902808000","name":"Ad\u00e9la\u00efde Leroux","type":"Person","_key":"59066"} +{"label":"Stickmen","description":"Jack, Thomas and Wayne are the Stickmen. They like nothing more than having a beer in one hand, a pool cue in the other, a coin on the table and their mates around them. They play pub pool for fun and money at Dave's bar. Desperate to get out of debt, Dave gets the Stickmen entered into a high stakes pool tournament run by vicious crime boss \"Daddy\". He also gets them into a whole rack of trouble.","id":"14416","runtime":98,"imdbId":"tt0251415","version":107,"lastModified":"1301907257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91f\/4bc942e4017a3c57fe01c91f\/stickmen-mid.jpg","studio":"Stick Films","genre":"Action","title":"Stickmen","releaseDate":979776000000,"language":"en","type":"Movie","_key":"59067"} +{"label":"Scott Wills","version":21,"id":"76835","lastModified":"1301901561000","name":"Scott Wills","type":"Person","_key":"59068"} +{"label":"Paolo Rotondo","version":19,"id":"76836","lastModified":"1301901609000","name":"Paolo Rotondo","type":"Person","_key":"59069"} +{"label":"Anne Nordhaus","version":19,"id":"76837","lastModified":"1301901609000","name":"Anne Nordhaus","type":"Person","_key":"59070"} +{"label":"Gareth Farr","version":19,"id":"76848","lastModified":"1301902070000","name":"Gareth Farr","type":"Person","_key":"59071"} +{"label":"Luanne Gordon","version":19,"id":"76849","lastModified":"1301902070000","name":"Luanne Gordon","type":"Person","_key":"59072"} +{"label":"Simone Kessell","version":19,"id":"76850","lastModified":"1301902070000","name":"Simone Kessell","type":"Person","_key":"59073"} +{"label":"John Leigh","version":21,"id":"76851","lastModified":"1301902070000","name":"John Leigh","type":"Person","_key":"59074"} +{"label":"Enrico Mammarella","version":19,"id":"76852","lastModified":"1301901865000","name":"Enrico Mammarella","type":"Person","_key":"59075"} +{"label":"Emma Nooyen","version":19,"id":"76853","lastModified":"1301901719000","name":"Emma Nooyen","type":"Person","_key":"59076"} +{"label":"Kirk Torrance","version":19,"id":"76854","lastModified":"1301902070000","name":"Kirk Torrance","type":"Person","_key":"59077"} +{"label":"Hamish Rothwell","version":19,"id":"76839","lastModified":"1301901719000","name":"Hamish Rothwell","type":"Person","_key":"59078"} +{"label":"Driftwood","description":"Riddled with guilt over the loss of his rock star older brother, 16 year old David Forrester (Ricky Ullman) becomes obsessed with death, leading his misguided parents to send him to Driftwood, an \"Attitude Adjustment Camp for Troubled Youths\" run by the sadistic Captain Doug Kennedy (Diamond Dallas Page) and his brutal young henchman, Yates (Talan Torriero).","id":"14417","runtime":83,"imdbId":"tt0460777","version":94,"lastModified":"1301906658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/928\/4bc942e4017a3c57fe01c928\/driftwood-mid.jpg","genre":"Horror","title":"Driftwood","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"59079"} +{"label":"Talan Torriero","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4c4f65805e73d63036000024\/talan-torriero-profile.jpg","version":25,"id":"110056","lastModified":"1301902591000","name":"Talan Torriero","type":"Person","_key":"59080"} +{"label":"Ricky Ullman","version":19,"id":"90577","lastModified":"1301902362000","name":"Ricky Ullman","type":"Person","_key":"59081"} +{"label":"Coluche, l'histoire d'un mec","description":"No overview found.","id":"14419","runtime":103,"imdbId":"tt1174034","version":66,"lastModified":"1301908540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/935\/4bc942e6017a3c57fe01c935\/coluche-l-histoire-d-un-mec-mid.jpg","studio":"Studio 37","genre":"Comedy","title":"Coluche, l'histoire d'un mec","releaseDate":1224028800000,"language":"en","type":"Movie","_key":"59082"} +{"label":"Beyond Belief","description":"When terrorists shattered their lives, two women set off on an extraordinary journey to rebuild themselves and the lives of women half a world away.","id":"14420","runtime":92,"imdbId":"tt0989618","version":901,"lastModified":"1301906473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93a\/4bc942e6017a3c57fe01c93a\/beyond-belief-mid.jpg","genre":"Documentary","title":"Beyond Belief","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59083"} +{"label":"Beth Murphy","version":20,"id":"76859","lastModified":"1301902181000","name":"Beth Murphy","type":"Person","_key":"59084"} +{"label":"Patti Quigley","version":20,"id":"76860","lastModified":"1301902175000","name":"Patti Quigley","type":"Person","_key":"59085"} +{"label":"Susan Retik","version":19,"id":"76861","lastModified":"1301902144000","name":"Susan Retik","type":"Person","_key":"59086"} +{"label":"The Year My Parents Went On Vacation","description":"A boy is left alone in a Jewish neighborhood in the year of 1970, where both world cup and dictatorship happen in Brazil.","id":"14421","runtime":104,"imdbId":"tt0857355","version":61,"lastModified":"1301904042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/948\/4bc942e8017a3c57fe01c948\/o-ano-em-que-meus-pais-sairam-de-ferias-mid.jpg","genre":"Drama","title":"The Year My Parents Went On Vacation","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59087"} +{"label":"Germano Haiut","version":20,"id":"76862","lastModified":"1301902144000","name":"Germano Haiut","type":"Person","_key":"59088"} +{"label":"Birds of America","description":"A regular guy struggles with a repressive home and professional life, as well as making amends for the trouble his free-spirited brother and sister cause about town.","id":"14422","runtime":85,"imdbId":"tt1029134","version":164,"lastModified":"1301903527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4c2da4527b9aa16662000064\/birds-of-america-mid.jpg","studio":"Accomplice Films","genre":"Comedy","title":"Birds of America","releaseDate":1223510400000,"language":"en","type":"Movie","_key":"59089"} +{"label":"Gary Wilmes","version":39,"id":"78404","lastModified":"1301901196000","name":"Gary Wilmes","type":"Person","_key":"59090"} +{"label":"Stacie Theon","version":17,"id":"78405","lastModified":"1301902033000","name":"Stacie Theon","type":"Person","_key":"59091"} +{"label":"Brandon Hanson","version":18,"id":"78406","lastModified":"1301901826000","name":"Brandon Hanson","type":"Person","_key":"59092"} +{"label":"Craig Lucas","version":22,"id":"26488","lastModified":"1301902190000","name":"Craig Lucas","type":"Person","_key":"59093"} +{"label":"First Sunday","description":"Durell and LeeJohn are best friends and bumbling petty criminals. When told they have one week to pay a $17,000 debt or Durell will lose his son, they come up with a desperate scheme to rob their neighborhood church. Instead, they end up spending the night in the presence of the Lord and are forced to deal with much more than they bargained for.","id":"14423","runtime":96,"imdbId":"tt0486578","homepage":"http:\/\/www.sonypictures.com\/movies\/firstsunday\/international\/index.html","version":243,"lastModified":"1301902517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc942ee017a3c57fe01c96b\/first-sunday-mid.jpg","studio":"Cube Vision","genre":"Action","title":"First Sunday","releaseDate":1200009600000,"language":"en","tagline":"Keep the faith. Steal the rest.","type":"Movie","_key":"59094"} +{"label":"Michael Beach","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ba4\/4cf3e6dd5e73d62385000ba4\/michael-beach-profile.jpg","version":51,"id":"87118","lastModified":"1301998667000","name":"Michael Beach","type":"Person","_key":"59095"} +{"label":"David E. Talbert","version":17,"id":"109692","lastModified":"1301902465000","name":"David E. Talbert","type":"Person","_key":"59096"} +{"label":"Sex and Death 101","description":"A guy's life is turned around by an email, which includes the names of everyone he's had sex with and ever will have sex with. His situation gets worse when he encounters a femme fatale (Ryder) who targets men guilty of sex crime.","id":"14424","runtime":100,"imdbId":"tt0497972","homepage":"http:\/\/www.sexanddeath101movie.com\/","version":197,"lastModified":"1302075050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/978\/4bc942ee017a3c57fe01c978\/sex-and-death-101-mid.jpg","studio":"Avenue Pictures Productions","genre":"Comedy","title":"Sex and Death 101","releaseDate":1181865600000,"language":"en","type":"Movie","_key":"59097"} +{"label":"Daniel Waters","version":53,"id":"5128","lastModified":"1302075050000","name":"Daniel Waters","type":"Person","_key":"59098"} +{"label":"PCU","description":"A high school senior visits college for the weekend, and stay at the wildest house on campus in this classic tale of anti-political-correctness.","id":"14425","runtime":79,"imdbId":"tt0110759","version":111,"lastModified":"1301905395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98f\/4bc942f0017a3c57fe01c98f\/pcu-mid.jpg","genre":"Comedy","title":"PCU","releaseDate":767577600000,"language":"en","type":"Movie","_key":"59099"} +{"label":"Winter Break","description":"Viscerally experience a \"year off\" in Aspen, Colorado with a group of recent college grads who have elected to defer graduate school and career opportunities to ski, snow-board, climb, party, fall in love and basically live life to its absolute fullest out in this spectacular mountain town.","id":"14427","runtime":92,"imdbId":"tt0261992","version":131,"lastModified":"1301907095000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9dc\/4c5d6aa47b9aa151f20009dc\/winter-break-mid.jpg","studio":"Candlelight Pictures","genre":"Comedy","title":"Winter Break","releaseDate":1048291200000,"language":"en","type":"Movie","_key":"59100"} +{"label":"Eddie Mills","version":21,"id":"87018","lastModified":"1301902953000","name":"Eddie Mills","type":"Person","_key":"59101"} +{"label":"Sean Smith","version":19,"id":"87019","lastModified":"1301902889000","name":"Sean Smith","type":"Person","_key":"59102"} +{"label":"Rachel Wilson","version":20,"id":"87020","lastModified":"1301902531000","name":"Rachel Wilson","type":"Person","_key":"59103"} +{"label":"Liza Oxnard","version":19,"id":"87021","lastModified":"1301902889000","name":"Liza Oxnard","type":"Person","_key":"59104"} +{"label":"Marni Banack","version":19,"id":"87022","lastModified":"1301902070000","name":"Marni Banack","type":"Person","_key":"59105"} +{"label":"Who's Your Monkey?","description":"No overview found.","id":"14428","runtime":0,"imdbId":"tt0830681","version":92,"lastModified":"1301905449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc942f2017a3c57fe01c9a6\/who-s-your-monkey-mid.jpg","genre":"Comedy","title":"Who's Your Monkey?","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59106"} +{"label":"Drive Me Crazy","description":"Anxiously awaiting the year's biggest high school dance, popular and preppy Nicole figures she'll have it made once her boyfriend, Brad, invites her to the big event. But Brad invites another girl instead and leaves Nicole desperate for a date. So, she implores her scruffy next-door neighbor, Chase, to accompany her -- and soon realizes he may be the guy she wanted all along.","id":"14429","runtime":87,"imdbId":"tt0164114","version":104,"lastModified":"1301905036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9af\/4bc942f3017a3c57fe01c9af\/drive-me-crazy-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Drive Me Crazy","releaseDate":915926400000,"language":"en","tagline":"The last guy she wants is the only one she needs.","type":"Movie","_key":"59107"} +{"label":"Melissa Joan Hart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/816\/4d3e3ded5e73d622cb003816\/melissa-joan-hart-profile.jpg","version":30,"id":"78501","lastModified":"1301901573000","name":"Melissa Joan Hart","type":"Person","_key":"59108"} +{"label":"John Schultz","version":35,"id":"79656","lastModified":"1301901494000","name":"John Schultz","type":"Person","_key":"59109"} +{"label":"La ley de Herodes","description":"Mexico, 1949. The fable of a janitor turned Mayor on a little town lost in the Mexican desert, who gradually realizes how far his new acquainted power and corruption can get him.","id":"14430","runtime":120,"imdbId":"tt0221344","version":95,"lastModified":"1301903581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b8\/4bc942f3017a3c57fe01c9b8\/la-ley-de-herodes-mid.jpg","studio":"IMCINE","genre":"Comedy","title":"La ley de Herodes","releaseDate":942105600000,"language":"en","type":"Movie","_key":"59110"} +{"label":"Luis Estrada","version":25,"id":"76864","lastModified":"1301901669000","name":"Luis Estrada","type":"Person","_key":"59111"} +{"label":"Delia Casanova","version":21,"id":"76871","lastModified":"1301901865000","name":"Delia Casanova","type":"Person","_key":"59112"} +{"label":"Juan Carlos Colombo","version":22,"id":"76872","lastModified":"1301901946000","name":"Juan Carlos Colombo","type":"Person","_key":"59113"} +{"label":"Noem\u00ed Garc\u00eda","version":19,"id":"76873","lastModified":"1301902070000","name":"Noem\u00ed Garc\u00eda","type":"Person","_key":"59114"} +{"label":"Guillermo Gil","version":19,"id":"76874","lastModified":"1301901865000","name":"Guillermo Gil","type":"Person","_key":"59115"} +{"label":"The Secret","description":"Husband, wife, and daughter have moved from Boston to Williamstown. At 16, Samantha treats her mother shabbily, but when the two of them are in a horrific car crash, the mother wills Sam to live, somehow losing her own life while her spirit enters Sam.","id":"14432","runtime":92,"imdbId":"tt0446463","version":216,"lastModified":"1301902756000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9eb\/4bc942fa017a3c57fe01c9eb\/the-secret-mid.jpg","studio":"Europa Corp.","genre":"Drama","title":"The Secret","releaseDate":1191974400000,"language":"en","type":"Movie","_key":"59116"} +{"label":"Millie Tresierra","version":22,"id":"76875","lastModified":"1301901474000","name":"Millie Tresierra","type":"Person","_key":"59117"} +{"label":"Brandon Blue","version":22,"id":"76876","lastModified":"1301901719000","name":"Brandon Blue","type":"Person","_key":"59118"} +{"label":"Laurence Leboeuf","version":23,"id":"76877","lastModified":"1301901777000","name":"Laurence Leboeuf","type":"Person","_key":"59119"} +{"label":"Kathleen Mackey","version":23,"id":"76878","lastModified":"1301901642000","name":"Kathleen Mackey","type":"Person","_key":"59120"} +{"label":"Zulu","description":"In 1879, during the Zulu wars, man of the people Lt. John Chard (Stanley Baker) and snooty Lt Gonville Bromhead (Michael Caine) are in charge of defending the isolated Natal outpost of Rorke's Drift from tribal hordes, holding out during an Alamo-like seige until they are overwhelmed, losing the battle, but going down in history as heroes. 150 soldiers defended a supply station against some 4000 Zulus, aided by the Martini-Henry rifle 'with some guts behind it. \"At Rorke's Drift, eleven Victor","id":"14433","runtime":138,"imdbId":"tt0058777","trailer":"http:\/\/www.youtube.com\/watch?v=1wOWus8ChyY","version":162,"lastModified":"1302043378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f4\/4bc942fa017a3c57fe01c9f4\/zulu-mid.jpg","studio":"Diamond Films","genre":"Action","title":"Zulu","releaseDate":-187574400000,"language":"en","tagline":"Dwarfing the mightiest! Towering over the greatest!","type":"Movie","_key":"59121"} +{"label":"Cy Endfield","version":47,"id":"76882","lastModified":"1301901532000","name":"Cy Endfield","type":"Person","_key":"59122"} +{"label":"I Think I Love My Wife","description":"Richard Cooper (Rock) is a married man and father of two who is just plain bored with married life. Not getting any sex from his wife, he resorts to ogling random women on the street to the point he takes lunch late to look at them. When old crush Nikki Tru (Kerry Washington) visits his office to get a reference letter, she becomes obsessed with Cooper and they begin a complicated relationship.","id":"14434","runtime":90,"imdbId":"tt0770772","trailer":"http:\/\/www.youtube.com\/watch?v=am2j79QYlS8","version":196,"lastModified":"1301903107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a11\/4bc94300017a3c57fe01ca11\/i-think-i-love-my-wife-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"I Think I Love My Wife","releaseDate":1174003200000,"language":"en","type":"Movie","_key":"59123"} +{"label":"Welker White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d3d\/4d200ba85e73d66b27001d3d\/welker-white-profile.jpg","version":21,"id":"93620","lastModified":"1301902040000","name":"Welker White","type":"Person","_key":"59124"} +{"label":"Samantha Ivers","version":17,"id":"93621","lastModified":"1301902244000","name":"Samantha Ivers","type":"Person","_key":"59125"} +{"label":"My Bloody Valentine","description":"Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine\u2019s Day, he woke up\u2026and brutally murdered twenty-two people with a pickaxe before being killed.","id":"14435","runtime":101,"imdbId":"tt1179891","homepage":"http:\/\/www.mybloodyvalentinein3d.com\/","version":362,"lastModified":"1302017919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48e\/4d9724c67b9aa119a000448e\/my-bloody-valentine-mid.jpg","studio":"Lionsgate","genre":"Horror","title":"My Bloody Valentine","releaseDate":1232064000000,"language":"en","tagline":"He's gonna break your heart.","type":"Movie","_key":"59126"} +{"label":"Betsy Rue","version":30,"id":"76886","lastModified":"1301901513000","name":"Betsy Rue","type":"Person","_key":"59127"} +{"label":"Bringing Down the House","description":"No overview found.","id":"14436","runtime":0,"imdbId":"tt0315856","version":132,"lastModified":"1301907569000","genre":"Comedy","title":"Bringing Down the House","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59128"} +{"label":"Fireproof","description":"In an attempt to save his marriage, A firefighter uses a 40-day experiment known as \"The Love Dare\".","id":"14438","runtime":122,"imdbId":"tt1129423","trailer":"http:\/\/www.youtube.com\/watch?v=pOafIB3KqkM","homepage":"http:\/\/www.fireproofthemovie.com\/","version":199,"lastModified":"1301902457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4d\/4bc94307017a3c57fe01ca4d\/fireproof-mid.jpg","studio":"Samuel Goldwyn","genre":"Drama","title":"Fireproof","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"59129"} +{"label":"Alex Kendrick","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/322\/4ca8305e5e73d643eb000322\/alex-kendrick-profile.jpg","biography":"Alex Kendrick serves as Associate Pastor of Media for Sherwood Baptist Church and teaches a televised Bible study seen in Southwest Georgia.","version":27,"id":"78040","lastModified":"1301901556000","name":"Alex Kendrick","type":"Person","_key":"59130"} +{"label":"Kirk Cameron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4bde3e7a017a3c35c10000d3\/kirk-cameron-profile.jpg","version":31,"id":"78041","lastModified":"1301901377000","name":"Kirk Cameron","type":"Person","_key":"59131"} +{"label":"Erin Bethea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e9\/4ca833375e73d643ed0002e9\/erin-bethea-profile.jpg","biography":"Erin is a professional actress currently based in Orlando, FL. She received her BA in Theatre from the University of Mobile where she was able to put her love of live theatrical performance to use in over a dozen shows including <i>Annie Get Your Gun <\/i>(Dolly Tate), <i>Nuncrackers<\/i> (Sister Robert Anne), <i>The Pajama Game<\/i> (Babe Williams), <i>Annie<\/i> (Grace Farrell), <i>Complete Works of WIlliam Shakespeare Abridged<\/i> (Juliet\/Player), <i>The Trip to Bountiful<\/i>&","version":21,"id":"78042","lastModified":"1301901379000","name":"Erin Bethea","type":"Person","_key":"59132"} +{"label":"The Pentagon Wars","description":"The Pentagon Wars is a 1998 HBO film, starring Kelsey Grammer, Cary Elwes and Richard Schiff, based on a book of the same name (The Pentagon Wars: Reformers Challenge the Old Guard) by Colonel James G. Burton, USAF (retired). The film is a black comedy describing the development of the M2 Bradley fighting vehicle.","id":"14439","runtime":104,"imdbId":"tt0144550","version":115,"lastModified":"1301906942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a56\/4bc94309017a3c57fe01ca56\/the-pentagon-wars-mid.jpg","studio":"HBO Films","genre":"Comedy","title":"The Pentagon Wars","releaseDate":888624000000,"language":"en","type":"Movie","_key":"59133"} +{"label":"Tom Wright","version":13,"id":"190483","lastModified":"1301903183000","name":"Tom Wright","type":"Person","_key":"59134"} +{"label":"Dewey Weber","version":19,"id":"167676","lastModified":"1301903135000","name":"Dewey Weber","type":"Person","_key":"59135"} +{"label":"The Tattooist","description":"A young artist unknowingly plays a role in releasing a deadly spirit as he attempts to learn tatau, the Samoan tradition of tattooing.","id":"14440","runtime":92,"imdbId":"tt0817228","version":147,"lastModified":"1301905541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6c\/4bc9430b017a3c57fe01ca6c\/the-tattooist-mid.jpg","studio":"Eyeworks Touchdown","genre":"Horror","title":"The Tattooist","releaseDate":1196294400000,"language":"en","type":"Movie","_key":"59136"} +{"label":"Caroline Cheong","version":19,"id":"83944","lastModified":"1301902634000","name":"Caroline Cheong","type":"Person","_key":"59137"} +{"label":"Peter Burger","version":19,"id":"83942","lastModified":"1301902465000","name":"Peter Burger","type":"Person","_key":"59138"} +{"label":"Clean and Sober","description":"Daryl Poynter (Keaton) is a successful, arrogant and self-destructive Philadelphia real estate salesman who is addiction|addicted to cocaine. He embezzles $92,000 of his company's money from an escrow account to feed his addiction, and then loses it all in the stock market. Waking up one morning next to a dead girl who suffered a heart attack from too much cocaine, he begins to realize his life is","id":"14441","runtime":124,"imdbId":"tt0094884","version":117,"lastModified":"1301907257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a75\/4bc9430c017a3c57fe01ca75\/clean-and-sober-mid.jpg","genre":"Drama","title":"Clean and Sober","releaseDate":587174400000,"language":"en","type":"Movie","_key":"59139"} +{"label":"Ella Enchanted","description":"Ella of Frell is given the \"gift of obedience\" by a fairy, only to realize that it's more of a curse because it could separate her from her true love, Prince Charmont. Will Ella manage to conjure a \"cure\" that enables her to live happily ever after?","id":"14442","runtime":96,"imdbId":"tt0327679","homepage":"http:\/\/www.imdb.com\/title\/tt0327679\/","version":155,"lastModified":"1301901987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45a\/4d3236c07b9aa177db00145a\/ella-enchanted-mid.jpg","studio":"Miramax Films","genre":"Comedy","title":"Ella Enchanted","releaseDate":1081468800000,"language":"en","tagline":"Get enchanted.","type":"Movie","_key":"59140"} +{"label":"The Garbage Pail Kids Movie","description":"Seven disgusting kids but nevertheless of interesting personality are being made of the green mud coming out of garbage can. Once alive their master gives them rules to obey although they think that life is funnier without following stupid regulations like no television or no candy. Naturally this will cause some conflicts.","id":"14443","runtime":100,"imdbId":"tt0093072","version":138,"lastModified":"1301902635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9c\/4bc94312017a3c57fe01ca9c\/the-garbage-pail-kids-movie-mid.jpg","studio":"Atlantic Entertainment Group","genre":"Adventure","title":"The Garbage Pail Kids Movie","releaseDate":556588800000,"language":"en","type":"Movie","_key":"59141"} +{"label":"Rod Amateau","version":27,"id":"51809","lastModified":"1301901802000","name":"Rod Amateau","type":"Person","_key":"59142"} +{"label":"Anthony Newley","version":21,"id":"81409","lastModified":"1301902377000","name":"Anthony Newley","type":"Person","_key":"59143"} +{"label":"Katie Barberi","version":20,"id":"81410","lastModified":"1301902244000","name":"Katie Barberi","type":"Person","_key":"59144"} +{"label":"Ron MacLachlan","version":19,"id":"81411","lastModified":"1301902465000","name":"Ron MacLachlan","type":"Person","_key":"59145"} +{"label":"J.P. Amateau","version":19,"id":"81412","lastModified":"1301902465000","name":"J.P. Amateau","type":"Person","_key":"59146"} +{"label":"Marjory Graue","version":19,"id":"81413","lastModified":"1301902465000","name":"Marjory Graue","type":"Person","_key":"59147"} +{"label":"Larry Green","version":20,"id":"81415","lastModified":"1301902070000","name":"Larry Green","type":"Person","_key":"59148"} +{"label":"Arturo Gil","version":24,"id":"81416","lastModified":"1301902176000","name":"Arturo Gil","type":"Person","_key":"59149"} +{"label":"Susan Rossitto","version":19,"id":"81417","lastModified":"1301902465000","name":"Susan Rossitto","type":"Person","_key":"59150"} +{"label":"The Rugrats Movie","description":"The Rugrats Movie is a 1998 American animated film, produced by Klasky Csupo and Nickelodeon Movies. The film was distributed by Paramount Pictures and first released in theaters in the United States on November 20, 1998.Based on the popular 1990s animated Nickelodeon series, Rugrats, this film introduced Tommy's baby brother Dil Pickles, who was named after Didi Pickles' cousin, and appeared on the original series the next year. The film was released in theatres with a CatDog short titled \"Fetc","id":"14444","runtime":79,"imdbId":"tt0134067","version":158,"lastModified":"1302038845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa5\/4bc94313017a3c57fe01caa5\/the-rugrats-movie-mid.jpg","genre":"Animation","title":"The Rugrats Movie","releaseDate":911520000000,"language":"en","type":"Movie","_key":"59151"} +{"label":"Norton Virgien","version":26,"id":"86439","lastModified":"1301997997000","name":"Norton Virgien","type":"Person","_key":"59152"} +{"label":"Igor Kovalyov","version":16,"id":"110873","lastModified":"1301901719000","name":"Igor Kovalyov","type":"Person","_key":"59153"} +{"label":"Cheryl Chase","version":23,"id":"80719","lastModified":"1301901254000","name":"Cheryl Chase","type":"Person","_key":"59154"} +{"label":"Joe Alaskey","version":31,"id":"86434","lastModified":"1301902652000","name":"Joe Alaskey","type":"Person","_key":"59155"} +{"label":"Michael Madana Kamarajan","description":"Michael Madhana Kamarajan is a 1991 Tamil film directed by Singeetam Srinivasa Rao, starring Kamal Haasan and Crazy Mohan. Kamal had distinguished each character with his body language and language lingo for example Michael has a husky voice, Madan an English accent, Kameshwaran speaks Palakad Tamil and Raju madras language. The film tells a story of quadruplets. The screenplay is credited to Kamal himself, while the story is by Kadher Kashmiri.","id":"14445","runtime":167,"imdbId":"tt0140377","version":42,"lastModified":"1301908137000","studio":"P A Art Productions","title":"Michael Madana Kamarajan","releaseDate":662688000000,"language":"en","type":"Movie","_key":"59156"} +{"label":"Singeetham Srinivasa Rao","version":18,"id":"76887","lastModified":"1301902174000","name":"Singeetham Srinivasa Rao","type":"Person","_key":"59157"} +{"label":"Kamal Hassan","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Kamal Haasan<\/b> (<a href=\"http:\/\/en.wikipedia.org\/wiki\/Tamil_language\" title=\"Tamil language\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">Tamil<\/a>: <span lang=\"ta\" xml:lang=\"ta\">\u0b95\u0bae\u0bb2\u0bcd \u0bb9\u0bbe\u0b9a","version":41,"birthday":"-478141200000","id":"93193","birthplace":"Paramakudi, Tamil Nadu, India","lastModified":"1301901507000","name":"Kamal Hassan","type":"Person","_key":"59158"} +{"label":"Kushboo","version":18,"id":"141073","lastModified":"1301902605000","name":"Kushboo","type":"Person","_key":"59159"} +{"label":"Urvashi","version":16,"id":"141702","lastModified":"1301902403000","name":"Urvashi","type":"Person","_key":"59160"} +{"label":"Rupini","version":16,"id":"141703","lastModified":"1301902405000","name":"Rupini","type":"Person","_key":"59161"} +{"label":"Manorama","version":17,"id":"140465","lastModified":"1301902766000","name":"Manorama","type":"Person","_key":"59162"} +{"label":"Delhi Ganesh","version":19,"id":"131261","lastModified":"1301902215000","name":"Delhi Ganesh","type":"Person","_key":"59163"} +{"label":"Nasser","version":19,"id":"131260","lastModified":"1301902215000","name":"Nasser","type":"Person","_key":"59164"} +{"label":"Ett Enklare Liv","description":"No overview found.","id":"14446","runtime":0,"imdbId":"tt1118669","version":40,"lastModified":"1300979864000","genre":"Drama","title":"Ett Enklare Liv","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"59165"} +{"label":"Lisa Nilsson","version":19,"id":"76889","lastModified":"1301901779000","name":"Lisa Nilsson","type":"Person","_key":"59166"} +{"label":"Jim Rautiainen","version":19,"id":"76890","lastModified":"1301901949000","name":"Jim Rautiainen","type":"Person","_key":"59167"} +{"label":"Erik \u00c5rman","version":19,"id":"76891","lastModified":"1301902144000","name":"Erik \u00c5rman","type":"Person","_key":"59168"} +{"label":"Petter Billengren","version":19,"id":"76892","lastModified":"1301901949000","name":"Petter Billengren","type":"Person","_key":"59169"} +{"label":"Christer Fj\u00e4llstr\u00f6m","version":21,"id":"76893","lastModified":"1301901948000","name":"Christer Fj\u00e4llstr\u00f6m","type":"Person","_key":"59170"} +{"label":"Ingemar Johansson","version":20,"id":"76895","lastModified":"1301901991000","name":"Ingemar Johansson","type":"Person","_key":"59171"} +{"label":"Marcus Olsson","version":20,"id":"76896","lastModified":"1301902183000","name":"Marcus Olsson","type":"Person","_key":"59172"} +{"label":"Wallace & Gromit: A Matter of Loaf and Death","description":"Wallace and Gromit have a brand new business - a bakery. Although business is booming, Gromit is concerned by the news that 12 local bakers have 'disappeared' this year - but Wallace isn't worried. He's too distracted and in love with local beauty and bread enthusiast, Piella Bakewell, to be of much help. Gromit must be the sleuth and solve the escalating murder mystery.","id":"14447","runtime":30,"imdbId":"tt1118511","version":143,"lastModified":"1302069781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aba\/4bc94315017a3c57fe01caba\/wallace-gromit-a-matter-of-loaf-and-death-mid.jpg","genre":"Animation","title":"Wallace & Gromit: A Matter of Loaf and Death","releaseDate":1228262400000,"language":"en","type":"Movie","_key":"59173"} +{"label":"Sally Lindsay","version":24,"id":"76900","lastModified":"1302069781000","name":"Sally Lindsay","type":"Person","_key":"59174"} +{"label":"Melissa Collier","version":24,"id":"76901","lastModified":"1302069781000","name":"Melissa Collier","type":"Person","_key":"59175"} +{"label":"Sarah Laborde","version":24,"id":"76902","lastModified":"1302069781000","name":"Sarah Laborde","type":"Person","_key":"59176"} +{"label":"Love Songs","description":"Julie's boyfriend Isma\u00ebl lives with her; rather than worry about the time he spends with his colleague Alice, Julie invites Alice to join them. The three walk the streets of Paris, party, read, and sleep together. Sometimes it's lighthearted, sometimes there are jealousies. Then death strikes. In various ways, those left come to terms with the departure and absence of a loved one: showing concern","id":"14448","runtime":100,"imdbId":"tt0996605","trailer":"http:\/\/www.youtube.com\/watch?v=936","homepage":"http:\/\/www.bacfilms.com\/presse\/chansonsdamour","version":204,"lastModified":"1301903183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adc\/4bc9431d017a3c57fe01cadc\/les-chansons-d-amour-mid.jpg","studio":"Alma Films","genre":"Drama","title":"Love Songs","releaseDate":1179878400000,"language":"en","type":"Movie","_key":"59177"} +{"label":"Gr\u00e9goire Leprince-Ringuet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03d\/4d7142005e73d63c9b00003d\/gr-goire-leprince-ringuet-profile.jpg","version":26,"id":"76903","lastModified":"1301901719000","name":"Gr\u00e9goire Leprince-Ringuet","type":"Person","_key":"59178"} +{"label":"Brigitte Ro\u00fcan","version":23,"id":"76904","lastModified":"1301901599000","name":"Brigitte Ro\u00fcan","type":"Person","_key":"59179"} +{"label":"Alice Butaud","version":22,"id":"76905","lastModified":"1301901609000","name":"Alice Butaud","type":"Person","_key":"59180"} +{"label":"Annabelle Hettmann","version":24,"id":"76906","lastModified":"1301901527000","name":"Annabelle Hettmann","type":"Person","_key":"59181"} +{"label":"Esteban Carvajal-Alegria","version":20,"id":"76907","lastModified":"1301901609000","name":"Esteban Carvajal-Alegria","type":"Person","_key":"59182"} +{"label":"Sylvain Tempier","version":20,"id":"76908","lastModified":"1301901609000","name":"Sylvain Tempier","type":"Person","_key":"59183"} +{"label":"Guillaume Cl\u00e9rice","version":20,"id":"76909","lastModified":"1301901609000","name":"Guillaume Cl\u00e9rice","type":"Person","_key":"59184"} +{"label":"Christophe Honor\u00e9","version":33,"id":"76910","lastModified":"1301901442000","name":"Christophe Honor\u00e9","type":"Person","_key":"59185"} +{"label":"The Banquet","description":"907 AD, the Tang Dynasty in China. The movie is set in an empire in chaos. The Emperor, the Empress, the Crown Prince, the Minister and the General all have their own enemies. ","id":"14449","runtime":131,"imdbId":"tt0465676","version":110,"lastModified":"1301904617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc9431e017a3c57fe01caf7\/ye-yan-mid.jpg","studio":"Media Asia Film","genre":"Action","title":"The Banquet","releaseDate":1158192000000,"language":"en","type":"Movie","_key":"59186"} +{"label":"You Ge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aad\/4d04d9bc5e73d621a5002aad\/you-ge-profile.jpg","version":43,"id":"76913","lastModified":"1301901302000","name":"You Ge","type":"Person","_key":"59187"} +{"label":"Zwei Weihnachtsm\u00e4nner","description":"No overview found.","id":"14450","runtime":180,"imdbId":"tt1331016","version":31,"lastModified":"1301908539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b00\/4bc9431f017a3c57fe01cb00\/zwei-weihnachtsmanner-mid.jpg","genre":"Comedy","title":"Zwei Weihnachtsm\u00e4nner","releaseDate":1229558400000,"language":"en","type":"Movie","_key":"59188"} +{"label":"Dead Snow","description":"The group of friends had all they would need for a successful Easter vacation: cabin, skis, snowmobile, toboggan, copious amounts of beer and a fertile mix of the sexes. Certainly, none of them had anticipated not returning home alive! However, the Nazi-zombie battalion haunting the mountains surrounding the aptly named \u00d8ksfjord (Axefjord) had other plans ...","id":"14451","runtime":90,"imdbId":"tt1278340","trailer":"http:\/\/www.youtube.com\/watch?v=ZJkd5X2aG34&hd=1","homepage":"http:\/\/www.deadsnow.com","version":262,"lastModified":"1301902631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b4\/4c50deb77b9aa13d4e0000b4\/dd-sn-mid.jpg","studio":"Euforia Film","genre":"Horror","title":"Dead Snow","releaseDate":1252454400000,"language":"en","type":"Movie","_key":"59189"} +{"label":"Charlotte Frogner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e58\/4d2653777b9aa134d3000e58\/charlotte-frogner-profile.jpg","version":22,"id":"76917","lastModified":"1301901276000","name":"Charlotte Frogner","type":"Person","_key":"59190"} +{"label":"Stig Frode Henriksen","version":31,"id":"76919","lastModified":"1301901337000","name":"Stig Frode Henriksen","type":"Person","_key":"59191"} +{"label":"Vegar Hoel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df0\/4d26548b7b9aa134cf000df0\/vegar-hoel-profile.jpg","version":26,"id":"76920","lastModified":"1301901299000","name":"Vegar Hoel","type":"Person","_key":"59192"} +{"label":"Jeppe Laursen","version":25,"id":"76921","lastModified":"1301901337000","name":"Jeppe Laursen","type":"Person","_key":"59193"} +{"label":"Evy Kasseth R\u00f8sten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e76\/4d2653dd7b9aa134cb000e76\/evy-kasseth-r-sten-profile.jpg","version":25,"id":"76922","lastModified":"1301901254000","name":"Evy Kasseth R\u00f8sten","type":"Person","_key":"59194"} +{"label":"Lasse Valdal","version":24,"id":"76924","lastModified":"1301901609000","name":"Lasse Valdal","type":"Person","_key":"59195"} +{"label":"Jenny Skavlan","version":25,"id":"76925","lastModified":"1301901254000","name":"Jenny Skavlan","type":"Person","_key":"59196"} +{"label":"\u00d8rjan Gamst","version":23,"id":"76926","lastModified":"1301901608000","name":"\u00d8rjan Gamst","type":"Person","_key":"59197"} +{"label":"Tommy Wirkola","version":30,"id":"76927","lastModified":"1301907024000","name":"Tommy Wirkola","type":"Person","_key":"59198"} +{"label":"Kill Switch","description":"A troubled detective travels to Memphis in order to track down a pair of serial killers.","id":"14452","runtime":96,"imdbId":"tt1107859","trailer":"http:\/\/www.youtube.com\/watch?v=1025","version":204,"lastModified":"1301905121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b4\/4c641e1e5e73d634600008b4\/kill-switch-mid.jpg","studio":"Cinetel Films","genre":"Action","title":"Kill Switch","releaseDate":1223337600000,"language":"en","type":"Movie","_key":"59199"} +{"label":"Holly Dignard","version":19,"id":"105900","lastModified":"1301902725000","name":"Holly Dignard","type":"Person","_key":"59200"} +{"label":"Michael Filipowich","version":19,"id":"105902","lastModified":"1301902504000","name":"Michael Filipowich","type":"Person","_key":"59201"} +{"label":"Jeff King","version":21,"id":"104831","lastModified":"1301903040000","name":"Jeff King","type":"Person","_key":"59202"} +{"label":"Free Jimmy","description":"Four stoners, five vegans, three mobsters, four hunters and a million reasons to free one junkie elephant.","id":"14453","runtime":86,"imdbId":"tt0298337","version":111,"lastModified":"1301907293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b34\/4bc94328017a3c57fe01cb34\/free-jimmy-mid.jpg","studio":"AnimagicNet A\/S","genre":"Animation","title":"Free Jimmy","releaseDate":1145577600000,"language":"en","type":"Movie","_key":"59203"} +{"label":"Christopher Nielsen","version":24,"id":"86465","lastModified":"1301902049000","name":"Christopher Nielsen","type":"Person","_key":"59204"} +{"label":"Jay Simpson","version":22,"id":"86467","lastModified":"1301902365000","name":"Jay Simpson","type":"Person","_key":"59205"} +{"label":"Mibu gishi den","description":"Kanichiro Yoshimura is a Samurai and Family man who can no longer support his wife and children on the the low pay he receives from his small town clan, he is forced by the love for his family to leave for the city in search of higher pay to support them.","id":"14455","runtime":137,"imdbId":"tt0359692","version":55,"lastModified":"1301416570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3d\/4bc94329017a3c57fe01cb3d\/mibu-gishi-den-mid.jpg","genre":"Eastern","title":"Mibu gishi den","releaseDate":1042848000000,"language":"en","type":"Movie","_key":"59206"} +{"label":"Y\u00fbji Miyake","version":17,"id":"76932","lastModified":"1301902070000","name":"Y\u00fbji Miyake","type":"Person","_key":"59207"} +{"label":"Masato Sakai","version":22,"id":"76933","lastModified":"1301901865000","name":"Masato Sakai","type":"Person","_key":"59208"} +{"label":"Atsushi It\u00f4","version":22,"id":"76934","lastModified":"1301902026000","name":"Atsushi It\u00f4","type":"Person","_key":"59209"} +{"label":"Y\u00f4jir\u00f4 Takita","version":30,"id":"76936","lastModified":"1301901698000","name":"Y\u00f4jir\u00f4 Takita","type":"Person","_key":"59210"} +{"label":"Shrooms","description":"A group of American teens comes Ireland to visit an Irish school friend who takes them on a camping trip in search of the local, fabled magic mushrooms. When the hallucinations start taking hold, the panicked friends are attacked by ghostly creatures; never able to determine if they are experiencing gruesome reality or startling delirium.","id":"14456","runtime":84,"imdbId":"tt0492486","version":169,"lastModified":"1301903398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4a\/4bc9432a017a3c57fe01cb4a\/shrooms-mid.jpg","studio":"Capitol Films","genre":"Horror","title":"Shrooms","releaseDate":1187222400000,"language":"en","type":"Movie","_key":"59211"} +{"label":"Maya Hazen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9fe\/4d90ed827b9aa167610039fe\/maya-hazen-profile.jpg","version":18,"id":"78230","lastModified":"1301902070000","name":"Maya Hazen","type":"Person","_key":"59212"} +{"label":"Reeker","description":"Strangers trapped at an eerie travel oasis in the desert must unravel the mystery behind their visions of dying people while they are preyed upon by a decaying creature.","id":"14457","runtime":90,"imdbId":"tt0393635","version":81,"lastModified":"1301904882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5d\/4bc9432d017a3c57fe01cb5d\/reeker-mid.jpg","studio":"Institution, The","genre":"Horror","title":"Reeker","releaseDate":1110672000000,"language":"en","type":"Movie","_key":"59213"} +{"label":"Tina Illman","version":20,"id":"87158","lastModified":"1301902070000","name":"Tina Illman","type":"Person","_key":"59214"} +{"label":"David Hadinger","version":20,"id":"87159","lastModified":"1301902465000","name":"David Hadinger","type":"Person","_key":"59215"} +{"label":"Altered","description":"Fifteen years ago, a group of men's lives were forever changed by a strange occurrence. Now, the same group of men will spend a night together ... in terror.","id":"14458","runtime":88,"imdbId":"tt0457275","trailer":"http:\/\/www.youtube.com\/watch?v=a-Ib1F-NT6c","version":168,"lastModified":"1301903434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6f\/4bc94330017a3c57fe01cb6f\/altered-mid.jpg","studio":"Haxan Entertainment","genre":"Horror","title":"Altered","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59216"} +{"label":"Adam Kaufman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/249\/4cef3bdb5e73d6624f000249\/adam-kaufman-profile.jpg","version":18,"id":"95746","lastModified":"1301901356000","name":"Adam Kaufman","type":"Person","_key":"59217"} +{"label":"Misty Rosas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29c\/4cef3c9b5e73d6625500029c\/misty-rosas-profile.jpg","version":18,"id":"95747","lastModified":"1301901326000","name":"Misty Rosas","type":"Person","_key":"59218"} +{"label":"Paul McCarthy-Boyington","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a5\/4cef3ddd5e73d662550002a5\/paul-mccarthy-boyington-profile.jpg","version":18,"id":"95748","lastModified":"1301901376000","name":"Paul McCarthy-Boyington","type":"Person","_key":"59219"} +{"label":"Storm Warning","description":"A yuppie couple lost in a swamp seek refuge at an isolated farmhouse only to discover they've jumped out of the frying pan into the fire.","id":"14459","runtime":82,"imdbId":"tt0800367","version":129,"lastModified":"1301907733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc94334017a3c57fe01cb78\/storm-warning-mid.jpg","genre":"Horror","title":"Storm Warning","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"59220"} +{"label":"John Brumpton","version":25,"id":"76940","lastModified":"1301901672000","name":"John Brumpton","type":"Person","_key":"59221"} +{"label":"David Lyons","version":23,"id":"76941","lastModified":"1301902203000","name":"David Lyons","type":"Person","_key":"59222"} +{"label":"Battle Beyond the Stars","description":"Roger Corman's post Star Wars take on The Seven Samurai.","id":"14460","runtime":104,"imdbId":"tt0080421","version":104,"lastModified":"1301903222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b81\/4bc94335017a3c57fe01cb81\/battle-beyond-the-stars-mid.png","genre":"Comedy","title":"Battle Beyond the Stars","releaseDate":315532800000,"language":"en","type":"Movie","_key":"59223"} +{"label":"The Manchurian Candidate","description":"The film stars Denzel Washington as Bennett Marco, a tenacious, virtuous soldier, Liev Schreiber as Raymond Shaw, a U.S. Representative from New York, manipulated into becoming a vice-presidential candidate, Jon Voight as Tom Jordan, a U.S. Senator and challenger for vice president and Meryl Streep as Eleanor Shaw, also a senator and the manipulative, ruthless mother of Raymond Shaw.","id":"14462","runtime":129,"imdbId":"tt0368008","trailer":"http:\/\/www.youtube.com\/watch?v=kR8WYO9Lj9g","version":199,"lastModified":"1301902671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8a\/4bc94336017a3c57fe01cb8a\/the-manchurian-candidate-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"The Manchurian Candidate","releaseDate":1090454400000,"language":"en","tagline":"This summer everything is under control.","type":"Movie","_key":"59224"} +{"label":"David Keeley","version":23,"id":"44302","lastModified":"1301902070000","name":"David Keeley","type":"Person","_key":"59225"} +{"label":"Alone in the Wilderness","description":"Dick Proenneke retired at age 50 in 1967 and decided to build his own cabin in the wilderness at the base of the Aleutian Peninsula, in what is now Lake Clark National Park. Using color footage he shot himself, Proenneke traces how he came to this remote area, selected a homestead site and built his log cabin completely by himself. The documentary covers his first year in-country, showing his day-to-day activities and the passing of the seasons as he sought to scratch out a living alone in the w","id":"14463","runtime":57,"imdbId":"tt0437806","homepage":"http:\/\/www.imdb.com\/title\/tt0437806\/","version":85,"lastModified":"1302023182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b93\/4bc94337017a3c57fe01cb93\/alone-in-the-wilderness-mid.jpg","genre":"Documentary","title":"Alone in the Wilderness","releaseDate":1097193600000,"language":"en","type":"Movie","_key":"59226"} +{"label":"Dick Proenneke","version":22,"id":"116798","lastModified":"1301902535000","name":"Dick Proenneke","type":"Person","_key":"59227"} +{"label":"Hot Pursuit","description":"No overview found.","id":"14464","runtime":93,"imdbId":"tt0093215","version":94,"lastModified":"1301905596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba9\/4bc94339017a3c57fe01cba9\/hot-pursuit-mid.jpg","genre":"Action","title":"Hot Pursuit","releaseDate":536457600000,"language":"en","type":"Movie","_key":"59228"} +{"label":"Shelley Fabares","version":26,"id":"83433","lastModified":"1301902326000","name":"Shelley Fabares","type":"Person","_key":"59229"} +{"label":"Jaane Tu... Ya Jaane Na","description":"Two best friends being convinced that they are not in love search for each other's love. ","id":"14467","runtime":155,"imdbId":"tt0473367","homepage":"http:\/\/www.jaanetu.com\/","version":215,"lastModified":"1301905208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/114\/4c4f1db85e73d62ec1000114\/jaane-tu-ya-jaane-na-mid.jpg","studio":"Aamir Khan Productions","genre":"Comedy","title":"Jaane Tu... Ya Jaane Na","releaseDate":1215129600000,"language":"en","tagline":"So when do you know it's love?","type":"Movie","_key":"59230"} +{"label":"Imran Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2f\/4cc2c02e7b9aa138d5001c2f\/imran-khan-profile.jpg","version":32,"id":"85063","lastModified":"1301901605000","name":"Imran Khan","type":"Person","_key":"59231"} +{"label":"Genelia D'Souza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/114\/4c4f207c5e73d62ec3000114\/genelia-d-souza-profile.jpg","version":27,"id":"87358","lastModified":"1301902533000","name":"Genelia D'Souza","type":"Person","_key":"59232"} +{"label":"Manjari Fadnis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f2b\/4d3498da5e73d63349008f2b\/manjari-fadnis-profile.jpg","version":15,"id":"150435","lastModified":"1301903120000","name":"Manjari Fadnis","type":"Person","_key":"59233"} +{"label":"Prateik Babbar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/509\/4d217ff47b9aa1280f000509\/prateik-babbar-profile.jpg","version":25,"id":"126500","lastModified":"1301902040000","name":"Prateik Babbar","type":"Person","_key":"59234"} +{"label":"Sugandha Garg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e0\/4d217f927b9aa128230004e0\/sugandha-garg-profile.jpg","version":27,"id":"86220","lastModified":"1301902424000","name":"Sugandha Garg","type":"Person","_key":"59235"} +{"label":"Nirav Mehta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/207\/4d34988f5e73d6334d009207\/nirav-mehta-profile.jpg","version":24,"id":"126498","lastModified":"1301902051000","name":"Nirav Mehta","type":"Person","_key":"59236"} +{"label":"Alishka Varde","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f37\/4d34989a5e73d6334f008f37\/alishka-varde-profile.jpg","version":25,"id":"126499","lastModified":"1301902710000","name":"Alishka Varde","type":"Person","_key":"59237"} +{"label":"Ayaz Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f44\/4d3498e55e73d6334f008f44\/ayaz-khan-profile.jpg","version":16,"id":"150438","lastModified":"1301903123000","name":"Ayaz Khan","type":"Person","_key":"59238"} +{"label":"Karan Makhija","version":24,"id":"126497","lastModified":"1301902530000","name":"Karan Makhija","type":"Person","_key":"59239"} +{"label":"Abbas Tyrewala","version":29,"id":"37239","lastModified":"1301901859000","name":"Abbas Tyrewala","type":"Person","_key":"59240"} +{"label":"Ek Chalis Ki Last Local","description":"No overview found.","id":"14468","runtime":0,"imdbId":"tt0995718","version":61,"lastModified":"1301908294000","genre":"Action","title":"Ek Chalis Ki Last Local","releaseDate":1179446400000,"language":"en","type":"Movie","_key":"59241"} +{"label":"Bullet","description":"A tough, Jewish ex-con just released from prison crosses a powerful drug dealer and former prison rival in his return to a life of crime. ","id":"14469","runtime":100,"imdbId":"tt0115781","homepage":"http:\/\/www.imdb.com\/title\/tt0115781\/","version":100,"lastModified":"1301904945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be0\/4bc9433b017a3c57fe01cbe0\/bullet-mid.jpg","genre":"Action","title":"Bullet","releaseDate":825638400000,"language":"en","type":"Movie","_key":"59242"} +{"label":"Frank Senger","version":16,"id":"138401","lastModified":"1301902464000","name":"Frank Senger","type":"Person","_key":"59243"} +{"label":"Sick and Twisted - Revenge of the evil shorts","description":"No overview found.","id":"14470","runtime":0,"version":13,"lastModified":"1300979874000","genre":"Comedy","title":"Sick and Twisted - Revenge of the evil shorts","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59244"} +{"label":"The Sick House","description":"Terror lurks in the old orphanage, beneath a disused London hospital - a Seventeeth Century malevolence, the Plague Doctor, has returned to complete his evil masterpiece","id":"14472","runtime":100,"imdbId":"tt0451197","homepage":"http:\/\/www.imdb.com\/title\/tt0451197\/","version":112,"lastModified":"1301907516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be9\/4bc9433c017a3c57fe01cbe9\/the-sick-house-mid.jpg","genre":"Horror","title":"The Sick House","releaseDate":1171324800000,"language":"en","type":"Movie","_key":"59245"} +{"label":"The Oh in Ohio","description":"Priscilla Chase seems to have it all -- the perfect job, the perfect house, the perfect husband -- except for in bed, where sex has always left her a bit short of the finish line. ","id":"14474","runtime":88,"imdbId":"tt0422861","version":143,"lastModified":"1301903342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf2\/4bc9433d017a3c57fe01cbf2\/the-oh-in-ohio-mid.jpg","studio":"Ambush Entertainment","genre":"Comedy","title":"The Oh in Ohio","releaseDate":1143676800000,"language":"en","type":"Movie","_key":"59246"} +{"label":"Miranda Bailey","version":34,"id":"66263","lastModified":"1301902329000","name":"Miranda Bailey","type":"Person","_key":"59247"} +{"label":"Billy Kent","version":22,"id":"87191","lastModified":"1301902364000","name":"Billy Kent","type":"Person","_key":"59248"} +{"label":"Used Cars","description":"When elderly Luke Fuchs (Jack Warden), owner of the struggling New Deal Used Car lot dies of a heart attack, hot-shot salesman (and aspiring senator) Rudy Russo (Kurt Russell), decides to save the property from falling into the hands of Luke's ruthless younger brother and used-car rival Roy L. Fuchs (also Warden).","id":"14475","runtime":113,"imdbId":"tt0081698","version":140,"lastModified":"1301905293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0b\/4bc94342017a3c57fe01cc0b\/used-cars-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Used Cars","releaseDate":332121600000,"language":"en","type":"Movie","_key":"59249"} +{"label":"Clubbed","description":"An underworld drama set in the early 1980s, about a lonely factory worker whose life is transformed when he becomes a nightclub doorman.","id":"14476","runtime":95,"imdbId":"tt0856778","trailer":"http:\/\/www.youtube.com\/watch?v=939","homepage":"http:\/\/www.clubbedthemovie.com","version":111,"lastModified":"1301904810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55a\/4d8a53b77b9aa13ae400055a\/clubbed-mid.jpg","studio":"Formosa Films","genre":"Action","title":"Clubbed","releaseDate":1222905600000,"language":"en","tagline":"A journey through family and fear in the violent world of '80s clubland.","type":"Movie","_key":"59250"} +{"label":"Mel Raido","version":30,"id":"76943","lastModified":"1302078850000","name":"Mel Raido","type":"Person","_key":"59251"} +{"label":"Maxine Peake","version":30,"id":"76944","lastModified":"1302025753000","name":"Maxine Peake","type":"Person","_key":"59252"} +{"label":"Ronnie Fox","version":21,"id":"76945","lastModified":"1301901719000","name":"Ronnie Fox","type":"Person","_key":"59253"} +{"label":"Neil Thompson","version":21,"id":"76946","lastModified":"1301901609000","name":"Neil Thompson","type":"Person","_key":"59254"} +{"label":"Alibaba Aur 40 Chor","description":"No overview found.","id":"14478","runtime":138,"imdbId":"tt0079749","version":52,"lastModified":"1301907386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1e\/4bc94344017a3c57fe01cc1e\/14478-mid.jpg","title":"Alibaba Aur 40 Chor","releaseDate":328492800000,"language":"en","type":"Movie","_key":"59255"} +{"label":"Letuchiy korabl","description":"No overview found.","id":"14479","runtime":50,"imdbId":"tt0791513","version":25,"lastModified":"1300979876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c23\/4bc94344017a3c57fe01cc23\/letuchiy-korabl-mid.jpg","title":"Letuchiy korabl","releaseDate":-283996800000,"language":"en","type":"Movie","_key":"59256"} +{"label":"The Tale of Tsar Saltan","description":"No overview found.","id":"14480","runtime":82,"imdbId":"tt0174207","version":91,"lastModified":"1301419038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c28\/4bc94344017a3c57fe01cc28\/14480-mid.jpg","genre":"Family","title":"The Tale of Tsar Saltan","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"59257"} +{"label":"Zolotye roga","description":"No overview found.","id":"14482","runtime":74,"imdbId":"tt0069544","version":46,"lastModified":"1301906174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c32\/4bc94345017a3c57fe01cc32\/zolotye-roga-mid.jpg","title":"Zolotye roga","releaseDate":63072000000,"language":"en","type":"Movie","_key":"59258"} +{"label":"Uchenik lekarya","description":"No overview found.","id":"14483","runtime":70,"imdbId":"tt0086499","version":30,"lastModified":"1301908541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c37\/4bc94345017a3c57fe01cc37\/14483-mid.jpg","title":"Uchenik lekarya","releaseDate":410227200000,"language":"en","type":"Movie","_key":"59259"} +{"label":"Body Shots","description":"A tale of the mysterious, but necessary, mating ritual between men and women of today and everything they think about sex but are afraid to say.","id":"14484","runtime":106,"imdbId":"tt0172627","version":139,"lastModified":"1301416313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c40\/4bc94345017a3c57fe01cc40\/body-shots-mid.jpg","genre":"Drama","title":"Body Shots","releaseDate":939254400000,"language":"en","type":"Movie","_key":"59260"} +{"label":"Be a Man! Samurai School","description":"Momotaro and Hidemaro are 1st-years at Otokojuku, a private boys school where true men are made. Momotaro, proficient in academics and martial arts becomes good friends with Hidemaro an underachieving weakling.\n\nOmito Date, former student leader, plans his revenge against his former school. Now leader of an evil army from rival Kanto Gogakuren school he fully intends on taking over Otokojuku.","id":"14485","runtime":110,"imdbId":"tt1091202","trailer":"http:\/\/www.youtube.com\/watch?v=940","homepage":"http:\/\/www.otokojuku-the-movie.com\/","version":322,"lastModified":"1301903707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c56\/4bc94346017a3c57fe01cc56\/sakigake-otokojuku-mid.jpg","studio":"Shueisha","genre":"Action","title":"Be a Man! Samurai School","releaseDate":1201305600000,"language":"en","type":"Movie","_key":"59261"} +{"label":"Sh\u00f4ei","version":18,"id":"76949","lastModified":"1301901719000","name":"Sh\u00f4ei","type":"Person","_key":"59262"} +{"label":"Shin\u2019taro Yamada","version":16,"id":"76950","lastModified":"1301901865000","name":"Shin\u2019taro Yamada","type":"Person","_key":"59263"} +{"label":"Hiroyuki Onoue","version":16,"id":"76951","lastModified":"1301901609000","name":"Hiroyuki Onoue","type":"Person","_key":"59264"} +{"label":"Taketarino Yamaguchi","version":16,"id":"76952","lastModified":"1301902070000","name":"Taketarino Yamaguchi","type":"Person","_key":"59265"} +{"label":"Yoshiaki Yoza","version":24,"id":"76953","lastModified":"1301902167000","name":"Yoshiaki Yoza","type":"Person","_key":"59266"} +{"label":"Novye pokhozhdeniya Kota v Sapogakh","description":"No overview found.","id":"14486","runtime":0,"imdbId":"tt0167312","version":27,"lastModified":"1301908540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5b\/4bc94347017a3c57fe01cc5b\/14486-mid.jpg","title":"Novye pokhozhdeniya Kota v Sapogakh","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"59267"} +{"label":"Aleksandr Rou","version":30,"id":"98839","lastModified":"1301903066000","name":"Aleksandr Rou","type":"Person","_key":"59268"} +{"label":"Ledyanaya vnuchka","description":"No overview found.","id":"14487","runtime":73,"imdbId":"tt0230453","version":32,"lastModified":"1301418688000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c60\/4bc94347017a3c57fe01cc60\/ledyanaya-vnuchka-mid.jpg","title":"Ledyanaya vnuchka","releaseDate":315532800000,"language":"en","type":"Movie","_key":"59269"} +{"label":"Boris Rytsarev","version":15,"id":"145111","lastModified":"1301902723000","name":"Boris Rytsarev","type":"Person","_key":"59270"} +{"label":"Dikije lebedi","description":"No overview found.","id":"14488","runtime":86,"imdbId":"tt0296589","version":24,"lastModified":"1300979878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c65\/4bc94347017a3c57fe01cc65\/dikije-lebedi-mid.jpg","title":"Dikije lebedi","releaseDate":536457600000,"language":"en","type":"Movie","_key":"59271"} +{"label":"Alenkiy tsvetochek","description":"No overview found.","id":"14489","runtime":66,"imdbId":"tt0283242","version":58,"lastModified":"1301421273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6a\/4bc94347017a3c57fe01cc6a\/alenkiy-tsvetochek-mid.jpg","title":"Alenkiy tsvetochek","releaseDate":220924800000,"language":"en","type":"Movie","_key":"59272"} +{"label":"Marina Ilyichyova","version":16,"id":"141640","lastModified":"1301902576000","name":"Marina Ilyichyova","type":"Person","_key":"59273"} +{"label":"Lev Durov","version":25,"id":"86847","lastModified":"1301902673000","name":"Lev Durov","type":"Person","_key":"59274"} +{"label":"Aleksei Chernov","version":16,"id":"141641","lastModified":"1301902576000","name":"Aleksei Chernov","type":"Person","_key":"59275"} +{"label":"Valentin Gneuschov","version":16,"id":"141642","lastModified":"1301902576000","name":"Valentin Gneuschov","type":"Person","_key":"59276"} +{"label":"Olga Korytkovskaya","version":16,"id":"141643","lastModified":"1301902631000","name":"Olga Korytkovskaya","type":"Person","_key":"59277"} +{"label":"Yelena Vodolasova","version":16,"id":"141644","lastModified":"1301902576000","name":"Yelena Vodolasova","type":"Person","_key":"59278"} +{"label":"Irina Povolotskaya","version":16,"id":"141645","lastModified":"1301902916000","name":"Irina Povolotskaya","type":"Person","_key":"59279"} +{"label":"Solovey","description":"No overview found.","id":"14490","runtime":86,"imdbId":"tt0079926","version":45,"lastModified":"1301419040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6f\/4bc94347017a3c57fe01cc6f\/14490-mid.jpg","title":"Solovey","releaseDate":283996800000,"language":"en","type":"Movie","_key":"59280"} +{"label":"I eshchyo odna noch Shekherazady","description":"No overview found.","id":"14491","runtime":80,"imdbId":"tt0087449","version":30,"lastModified":"1301908474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c74\/4bc9434a017a3c57fe01cc74\/14491-mid.jpg","title":"I eshchyo odna noch Shekherazady","releaseDate":441763200000,"language":"en","type":"Movie","_key":"59281"} +{"label":"The Princess and the Pea","description":"The Princess and the Pea is an animation film adaptation of the popular fairy tale The Princess and the Pea by Hans Christian Andersen. The film was directed by Mark Swan. It was released August 16, 2002 as an American-Hungarian production of Feature Films for Families & Swan Productions. The script writers were Forrest S. Baker and Ken Cromar.The film won two Accolade Competition Awards of Excellence In 2003 and 2004, both for the musical score by composer Alan Williams. The film was also nomin","id":"14492","runtime":89,"imdbId":"tt0075104","trailer":"http:\/\/www.youtube.com\/watch?v=Mcbo3pgd8d8","version":147,"lastModified":"1301907277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c79\/4bc9434a017a3c57fe01cc79\/14492-mid.jpg","genre":"Animation","title":"The Princess and the Pea","releaseDate":1029456000000,"language":"en","type":"Movie","_key":"59282"} +{"label":"Amanda Waving","version":13,"id":"151119","lastModified":"1301903385000","name":"Amanda Waving","type":"Person","_key":"59283"} +{"label":"Steven Webb","version":13,"id":"151120","lastModified":"1301903385000","name":"Steven Webb","type":"Person","_key":"59284"} +{"label":"Dan Finnerty","version":13,"id":"151121","lastModified":"1301903385000","name":"Dan Finnerty","type":"Person","_key":"59285"} +{"label":"Nigel Lambert","version":13,"id":"151122","lastModified":"1301903385000","name":"Nigel Lambert","type":"Person","_key":"59286"} +{"label":"Lincoln Hoppe","version":17,"id":"146339","lastModified":"1301903087000","name":"Lincoln Hoppe","type":"Person","_key":"59287"} +{"label":"Snezhnaya koroleva","description":"No overview found.","id":"14493","runtime":85,"imdbId":"tt0254782","version":44,"lastModified":"1301907385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7e\/4bc9434b017a3c57fe01cc7e\/snezhnaya-koroleva-mid.jpg","genre":"Fantasy","title":"Snezhnaya koroleva","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"59288"} +{"label":"Slawa Zjupa","version":18,"id":"99385","lastModified":"1301902705000","name":"Slawa Zjupa","type":"Person","_key":"59289"} +{"label":"Gennadi Kazansky","version":18,"id":"99386","lastModified":"1301902705000","name":"Gennadi Kazansky","type":"Person","_key":"59290"} +{"label":"Kamennyy tsvetok","description":"No overview found.","id":"14495","runtime":70,"imdbId":"tt0038666","version":42,"lastModified":"1301906716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c88\/4bc9434b017a3c57fe01cc88\/kamennyy-tsvetok-mid.jpg","title":"Kamennyy tsvetok","releaseDate":-757382400000,"language":"en","type":"Movie","_key":"59291"} +{"label":"Ogon, voda i... mednye truby","description":"No overview found.","id":"14497","runtime":86,"imdbId":"tt0063380","version":28,"lastModified":"1301907358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c92\/4bc9434c017a3c57fe01cc92\/ogon-voda-i-mednye-truby-mid.jpg","genre":"Fantasy","title":"Ogon, voda i... mednye truby","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"59292"} +{"label":"Skazka, rasskazannaya nochyu","description":"No overview found.","id":"14498","runtime":76,"imdbId":"tt0211628","version":27,"lastModified":"1301907375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c97\/4bc9434c017a3c57fe01cc97\/skazka-rasskazannaya-nochyu-mid.jpg","title":"Skazka, rasskazannaya nochyu","releaseDate":347155200000,"language":"en","type":"Movie","_key":"59293"} +{"label":"Mio in the Land of Faraway","description":"They're two best friends, a million miles from home. On an incredible adventure, beyond the boundaries of space and time. A fantasy about a lonely boy who is transferred from his dull life with his adoptive parents to the land where his real father is the king.","id":"14499","runtime":99,"imdbId":"tt0093543","version":94,"lastModified":"1301905950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59f\/4ca9114d7b9aa17ace00059f\/mio-min-mio-mid.jpg","studio":"Gorky Film Studio","genre":"Adventure","title":"Mio in the Land of Faraway","releaseDate":578448000000,"language":"en","tagline":"They're two best friends, a million miles from home. On an incredible adventure, beyond the boundaries of space and time. In a place called...The Land of Faraway.","type":"Movie","_key":"59294"} +{"label":"Vladimir Grammatikov","version":21,"id":"87083","lastModified":"1301901474000","name":"Vladimir Grammatikov","type":"Person","_key":"59295"} +{"label":"Nick Pickard","version":21,"id":"87089","lastModified":"1301902464000","name":"Nick Pickard","type":"Person","_key":"59296"} +{"label":"Tri tolstyaka","description":"No overview found.","id":"14500","runtime":92,"imdbId":"tt0061121","version":29,"lastModified":"1301908444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc9434e017a3c57fe01cca1\/14500-mid.jpg","title":"Tri tolstyaka","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"59297"} +{"label":"Bachelor Party 2: The Last Temptation","description":"Ron Simmons (Josh Cooke) is ready to settle down and get married, but first, he must survive his out-of-control bachelor party. With his best buds shoving booze, women and more booze in his face.Stripper fights, a sex addicts' convention and a suddenly-coed shake-your-booty competition all lead to solid laughs in this outrageous sequel to the 1984 comedy hit Bachelor Party. ","id":"14503","runtime":104,"imdbId":"tt0954541","version":209,"lastModified":"1301903679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caa\/4bc9434f017a3c57fe01ccaa\/bachelor-party-2-the-last-temptation-mid.jpg","studio":"Blue Star Pictures","genre":"Comedy","title":"Bachelor Party 2: The Last Temptation","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"59298"} +{"label":"Josh Cooke","version":25,"id":"84815","lastModified":"1301901361000","name":"Josh Cooke","type":"Person","_key":"59299"} +{"label":"Greg Pitts","version":22,"id":"84816","lastModified":"1301901400000","name":"Greg Pitts","type":"Person","_key":"59300"} +{"label":"Warren Christie","version":27,"id":"84817","lastModified":"1301902553000","name":"Warren Christie","type":"Person","_key":"59301"} +{"label":"When Did You Last See Your Father","description":"A parent and a child. The past and the present. Memories and secrets. Can you know someone for a lifetime.... and not know them at all? The life of a father. Through the journey of a son.","id":"14504","runtime":0,"imdbId":"tt0829098","homepage":"http:\/\/www.sonyclassics.com\/whendidyoulastseeyourfather\/","version":150,"lastModified":"1301904083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb7\/4bc94350017a3c57fe01ccb7\/when-did-you-last-see-your-father-mid.jpg","genre":"Drama","title":"When Did You Last See Your Father","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"59302"} +{"label":"Bachelor Party Vegas","description":"Nathan is about to get married, but not before his buddies Z-Bog, Eli, Ash, and Johnny throw him a wild bachelor party bash in Las Vegas.","id":"14505","runtime":0,"imdbId":"tt0432373","trailer":"http:\/\/www.youtube.com\/watch?v=uYkwHOQ8Qr8","version":145,"lastModified":"1301905189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc1\/4bc94350017a3c57fe01ccc1\/bachelor-party-vegas-mid.jpg","genre":"Comedy","title":"Bachelor Party Vegas","releaseDate":1172534400000,"language":"en","type":"Movie","_key":"59303"} +{"label":"Eric Bernt","version":28,"id":"21348","lastModified":"1301901900000","name":"Eric Bernt","type":"Person","_key":"59304"} +{"label":"The Adventures Of Baron Munchausen","description":"An aristocrat, his henchmen and a little girl try to save a town sieged by the Turks. ","id":"14506","runtime":126,"imdbId":"tt0096764","version":179,"lastModified":"1301903282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4d8ccdf27b9aa13ae4003033\/the-adventures-of-baron-munchausen-mid.jpg","genre":"Action","title":"The Adventures Of Baron Munchausen","releaseDate":623376000000,"language":"en","tagline":"Remarkable. Unbelievable. Impossible. And true.","type":"Movie","_key":"59305"} +{"label":"Charles McKeown","version":24,"id":"374","lastModified":"1299947564000","name":"Charles McKeown","type":"Person","_key":"59306"} +{"label":"Winston Dennis","version":12,"id":"215741","lastModified":"1301903716000","name":"Winston Dennis","type":"Person","_key":"59307"} +{"label":"From Beyond","description":"Scientists create a resonator to stimulate the pineal gland (sixth sense), and open up a door to a parallel (and hostile) universe. Based on a story by H. P. Lovecraft.","id":"14510","runtime":86,"imdbId":"tt0091083","trailer":"http:\/\/www.youtube.com\/watch?v=GLgSOelxqmE","version":344,"lastModified":"1301905858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfb\/4bc94359017a3c57fe01ccfb\/from-beyond-mid.jpg","studio":"Empire Pictures","genre":"Drama","title":"From Beyond","releaseDate":518313600000,"language":"en","tagline":"Humans are such easy prey.","type":"Movie","_key":"59308"} +{"label":"Ted Sorel","version":19,"id":"99036","lastModified":"1301902361000","name":"Ted Sorel","type":"Person","_key":"59309"} +{"label":"Bruce McGuire","version":18,"id":"100654","lastModified":"1301902705000","name":"Bruce McGuire","type":"Person","_key":"59310"} +{"label":"Del Russel","version":17,"id":"100655","lastModified":"1301902480000","name":"Del Russel","type":"Person","_key":"59311"} +{"label":"Dale Wyatt","version":21,"id":"100656","lastModified":"1301901936000","name":"Dale Wyatt","type":"Person","_key":"59312"} +{"label":"Lisa Lampanelli: The Queen of Mean","description":"Hilarious, raunchy. adult comedy. In clubs and theaters across the country, Lisa Lampanelli calls audience members colored, queer, bald, fat, and old. Do they get offended? Angry? No! They laugh uncontrollably and demand to know when she'll be back in town. After watching this hour-long concert--filmed live at Rascal's Comedy Club in West Orange, New Jersey--you'll see why! A cross between Don Rickles, Archie Bunker, and a vial of estrogen, Lisa lives up to her three favorite F-words: \"Fierce, F","id":"14512","runtime":0,"imdbId":"tt0777244","version":82,"lastModified":"1301906607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d09\/4bc9435b017a3c57fe01cd09\/lisa-lampanelli-the-queen-of-mean-mid.jpg","genre":"Action","title":"Lisa Lampanelli: The Queen of Mean","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"59313"} +{"label":"Lisa Lampanelli","version":39,"id":"105788","lastModified":"1301902200000","name":"Lisa Lampanelli","type":"Person","_key":"59314"} +{"label":"Comedy Central Roast of William Shatner","description":"William Shatner stepped into the celebrity hot seat for his own Comedy Central Roast. A parade of the thespian \/ spoken word artist \/ author \/ director \/ writer \/ Canadian's friends boldly went where no one has gone before: on Bill's sh*tlist. Observe as Shatner's closest friends and newly minted enemies including George Takei, Greg Giraldo, Lisa Lampanelli, Sarah Silverman and Jimmy Kimmel insulted the man behind Captain Kirk. It's a wonder \"The Shat\" never lost his cool - or his toupee!","id":"14513","runtime":0,"imdbId":"tt0840305","homepage":"http:\/\/www.comedycentral.com\/shows\/roast_shatner\/index.jhtml","version":111,"lastModified":"1301906517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d12\/4bc9435c017a3c57fe01cd12\/comedy-central-roast-of-william-shatner-mid.jpg","genre":"Comedy","title":"Comedy Central Roast of William Shatner","releaseDate":1156032000000,"language":"en","type":"Movie","_key":"59315"} +{"label":"Greg Giraldo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f0\/4bdf77c2017a3c35bf0002f0\/greg-giraldo-profile.jpg","version":42,"birthday":"-128134800000","id":"105787","birthplace":"New York City, New York, USA","lastModified":"1301902046000","name":"Greg Giraldo","type":"Person","_key":"59316"} +{"label":"Jeffrey Ross","version":43,"id":"87281","lastModified":"1301902023000","name":"Jeffrey Ross","type":"Person","_key":"59317"} +{"label":"Jimmy Kimmel","version":40,"id":"78303","lastModified":"1301901298000","name":"Jimmy Kimmel","type":"Person","_key":"59318"} +{"label":"Comedy Central Roast of Pamela Anderson","description":"Wondering what that burning plastic smell is? It's the Comedy Central Roast of Pamela Anderson! Roast Master Jimmy Kimmel and a gaggle of comedians with acid tongues and a twinkle in their eye line up to nail the world's biggest pin-up to the wall.","id":"14514","runtime":0,"imdbId":"tt0474603","homepage":"http:\/\/www.comedycentral.com\/shows\/roast_anderson\/index.jhtml","version":113,"lastModified":"1301415898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1b\/4bc9435c017a3c57fe01cd1b\/comedy-central-roast-of-pamela-anderson-mid.jpg","genre":"Comedy","title":"Comedy Central Roast of Pamela Anderson","releaseDate":1123977600000,"language":"en","tagline":"Everyone wants a piece","type":"Movie","_key":"59319"} +{"label":"Tommy Lee","version":26,"id":"89455","lastModified":"1301902314000","name":"Tommy Lee","type":"Person","_key":"59320"} +{"label":"Bea Arthur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/449\/4ce1df445e73d60f6c000449\/bea-arthur-profile.jpg","biography":"<p>Actress-comedienne famous for her acid wit. The majority of her work \nhas been on the stage and in television, but she has made some films. \nShe was a regular on <a href=\"http:\/\/www.imdb.com\/name\/nm0128377\/\">Sid Caesar<\/a>'s show <a href=\"http:\/\/www.imdb.com\/title\/tt0046584\/\">\"Caesar's Hour\"<\/a>\n (1954) for one season in the 1950s. She first gained attention on stage\n while appearing in the musical play \"The Threepenny Opera\" with <a href=\"http:\/\/www.imdb.com\/name\/nm0502322\/\">Lotte Lenya<\/a>.","version":26,"birthday":"-1503363600000","id":"79473","birthplace":"New York City, New York, USA","lastModified":"1301902516000","name":"Bea Arthur","type":"Person","_key":"59321"} +{"label":"Nick DiPaolo","version":15,"id":"144226","lastModified":"1301902211000","name":"Nick DiPaolo","type":"Person","_key":"59322"} +{"label":"Elon Gold","version":15,"id":"144227","lastModified":"1301902423000","name":"Elon Gold","type":"Person","_key":"59323"} +{"label":"Comedy Central Roast of Flavor Flav","description":"After 30 years in the business, Flavor Flav finally got clocked. Roasters Snoop Dogg, Lisa Lampanelli, Ice T, Patton Oswalt, Jimmy Kimmel, Carrot Top and more joined Roast Master Katt Williams to take on Flav\u2019s history of lovin\u2019, lampin\u2019 and yeeeeeah boooooyin\u2019.","id":"14515","runtime":90,"imdbId":"tt1037714","homepage":"http:\/\/www.comedycentral.com\/shows\/roast_flavor_flav\/index.jhtml","version":60,"lastModified":"1301908409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d24\/4bc9435d017a3c57fe01cd24\/comedy-central-roast-of-flavor-flav-mid.jpg","title":"Comedy Central Roast of Flavor Flav","releaseDate":1186876800000,"language":"en","type":"Movie","_key":"59324"} +{"label":"Flourish","description":"No overview found.","id":"14516","runtime":0,"imdbId":"tt0479914","version":84,"lastModified":"1300979885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2d\/4bc9435d017a3c57fe01cd2d\/flourish-mid.jpg","genre":"Indie","title":"Flourish","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59325"} +{"label":"MirrorMask","description":"In a fantasy world of opposing kingdoms, a 15-year old girl must find the fabled MirrorMask in order to save the kingdom and get home","id":"14517","runtime":101,"imdbId":"tt0366780","version":178,"lastModified":"1301902702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d47\/4bc94360017a3c57fe01cd47\/mirrormask-mid.jpg","studio":"Jim Henson Productions","genre":"Action","title":"MirrorMask","releaseDate":1106611200000,"language":"en","type":"Movie","_key":"59326"} +{"label":"Dave McKean","version":20,"id":"87081","lastModified":"1301901719000","name":"Dave McKean","type":"Person","_key":"59327"} +{"label":"Peter & the Wolf","description":"An animated retelling set to Prokofiev's suite. Peter is a slight lad, solitary, locked out of the woods by his protective grandfather","id":"14518","runtime":32,"imdbId":"tt0863136","homepage":"http:\/\/www.peterandthewolffilm.co.uk\/","version":118,"lastModified":"1301903860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92f\/4d1a09ff5e73d6082e00a92f\/peter-the-wolf-mid.jpg","studio":"Breakthru Films","genre":"Animation","title":"Peter & the Wolf","releaseDate":1185321600000,"language":"en","tagline":"Boys like Peter are not afraid of wolves...","type":"Movie","_key":"59328"} +{"label":"Suzie Templeton","version":25,"id":"134655","lastModified":"1301903054000","name":"Suzie Templeton","type":"Person","_key":"59329"} +{"label":"Loveless in Los Angeles","description":"No overview found.","id":"14520","runtime":95,"imdbId":"tt0451106","version":66,"lastModified":"1300979888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5e\/4bc94361017a3c57fe01cd5e\/loveless-in-los-angeles-mid.jpg","genre":"Comedy","title":"Loveless in Los Angeles","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59330"} +{"label":"Ph\u00f6rpa","description":"No overview found.","id":"14521","runtime":93,"imdbId":"tt0201840","version":38,"lastModified":"1301906720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d67\/4bc94362017a3c57fe01cd67\/phorpa-mid.jpg","title":"Ph\u00f6rpa","releaseDate":1256688000000,"language":"en","type":"Movie","_key":"59331"} +{"label":"Khyentse Norbu","version":21,"id":"115309","lastModified":"1301902677000","name":"Khyentse Norbu","type":"Person","_key":"59332"} +{"label":"Black Beauty","description":"The fates of horses, and the people who own and command them, are revealed as Black Beauty narrates the circle of his life.","id":"14522","runtime":88,"imdbId":"tt0109279","version":128,"lastModified":"1301902964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d70\/4bc94365017a3c57fe01cd70\/black-beauty-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Black Beauty","releaseDate":775440000000,"language":"en","type":"Movie","_key":"59333"} +{"label":"Caroline Thompson","version":51,"id":"1901","lastModified":"1299755522000","name":"Caroline Thompson","type":"Person","_key":"59334"} +{"label":"Peter Davison","version":21,"id":"47513","lastModified":"1301901865000","name":"Peter Davison","type":"Person","_key":"59335"} +{"label":"Cass","description":"The incredible true story of how an orphaned Jamaican baby, adopted by an elderly white couple and brought up in an all white area of London, became one of the most feared and respected men in Britain.","id":"14524","runtime":108,"imdbId":"tt0954981","trailer":"http:\/\/www.youtube.com\/watch?v=k7wcm0zCBOw","homepage":"http:\/\/www.casspennant.com\/","version":121,"lastModified":"1301907044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d79\/4bc94366017a3c57fe01cd79\/cass-mid.jpg","studio":"Cass Films","genre":"Action","title":"Cass","releaseDate":1199750400000,"language":"en","type":"Movie","_key":"59336"} +{"label":"Jon S. Baird","version":19,"id":"76965","lastModified":"1301901609000","name":"Jon S. Baird","type":"Person","_key":"59337"} +{"label":"Leo Gregory","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ab\/4cf1c1f75e73d61e3e0002ab\/leo-gregory-profile.jpg","version":28,"id":"76968","lastModified":"1301901469000","name":"Leo Gregory","type":"Person","_key":"59338"} +{"label":"Gavin Brocker","version":19,"id":"76969","lastModified":"1301901719000","name":"Gavin Brocker","type":"Person","_key":"59339"} +{"label":"Adrift in Tokyo","description":"Needing to pay back the yakuzas, a man accept his debt collector's proposition: walk with him in Tokyo in exchange of the money. As the two of them drift in Tokyo, a friendship starts to grow.","id":"14525","runtime":101,"imdbId":"tt1098226","version":79,"lastModified":"1301907077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d87\/4bc94368017a3c57fe01cd87\/tenten-mid.jpg","genre":"Comedy","title":"Adrift in Tokyo","releaseDate":1194652800000,"language":"en","type":"Movie","_key":"59340"} +{"label":"UFC 93: Franklin vs. Henderson","description":"The Ultimate Fighting Championship travels to Dublin, Ireland for the first time and the big guns of the light heavyweight division are coming along for the ride. Former UFC middleweight champion Rich \u201cAce\u201d Franklin battles former two-division Pride champion Dan Henderson in a pivotal 205-pound battle that could determine the future for both superstars.","id":"14526","runtime":0,"imdbId":"tt1517803","version":105,"lastModified":"1301906389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d94\/4bc94369017a3c57fe01cd94\/ufc-93-franklin-vs-henderson-mid.jpg","title":"UFC 93: Franklin vs. Henderson","releaseDate":1232150400000,"language":"en","type":"Movie","_key":"59341"} +{"label":"Mark Coleman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b32\/4c0a9a6c017a3c7e86000b32\/mark-coleman-profile.jpg","version":28,"id":"82051","lastModified":"1301902175000","name":"Mark Coleman","type":"Person","_key":"59342"} +{"label":"Denis Kang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4c1df9287b9aa126b90000fe\/denis-kang-profile.jpg","version":19,"id":"78281","lastModified":"1301902362000","name":"Denis Kang","type":"Person","_key":"59343"} +{"label":"Foolproof","description":"Kevin, Sam and Rob have an unusual hobby: planning foolproof heists, without intending to actually perform them. The game goes wrong when their latest plan is stolen and carried out. Things get even worse when a mysterious man approaches them with an offer: plan a heist for him, or go to jail. As the clock ticks, they find that the risk might be higher than just their freedom.","id":"14527","runtime":97,"imdbId":"tt0356614","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/foolproof","version":128,"lastModified":"1301903118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9d\/4bc94369017a3c57fe01cd9d\/foolproof-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Action","title":"Foolproof","releaseDate":1065139200000,"language":"en","type":"Movie","_key":"59344"} +{"label":"Joris Jarsky","version":23,"id":"76973","lastModified":"1301901673000","name":"Joris Jarsky","type":"Person","_key":"59345"} +{"label":"William Phillips","version":29,"id":"107630","lastModified":"1301902678000","name":"William Phillips","type":"Person","_key":"59346"} +{"label":"My Name Isn't Johnny","description":"No overview found.","id":"14529","runtime":0,"version":32,"lastModified":"1300979890000","title":"My Name Isn't Johnny","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59347"} +{"label":"American Crude","description":"Quite a bit can happen over the course of a single day in L.A., and when smooth-talking scam artist Johnny decides to throw a bachelor party for his best friend Bill the events of the day take a bizarre turn. As the festivities get underway, the appearance of a transvestite prostitute, a trigger-happy ex-con, and a notorious porn king signal that this isn't going to be a typical night out.","id":"14530","runtime":0,"imdbId":"tt0415489","version":227,"lastModified":"1302024182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daa\/4bc9436a017a3c57fe01cdaa\/american-crude-mid.jpg","title":"American Crude","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"59348"} +{"label":"The Mark of Cain","description":"Shane Gulliver and Mark Tate (Treacle) are two ordinary 18 year-olds serving with the British Army in Iraq.\n\nAmidst constant insurgent attacks the platoon struggles to maintain the uneasy peace and to subdue a barrage of hostilities.","id":"14531","runtime":0,"imdbId":"tt0837800","trailer":"http:\/\/www.youtube.com\/watch?v=fXKt0zCXyW8","version":101,"lastModified":"1301903524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daf\/4bc9436b017a3c57fe01cdaf\/the-mark-of-cain-mid.jpg","genre":"Drama","title":"The Mark of Cain","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59349"} +{"label":"Marc Munden","version":14,"id":"176484","lastModified":"1301903338000","name":"Marc Munden","type":"Person","_key":"59350"} +{"label":"Gerard Kearns","version":24,"id":"83817","lastModified":"1301901509000","name":"Gerard Kearns","type":"Person","_key":"59351"} +{"label":"Matthew McNulty","version":24,"id":"86133","lastModified":"1301901861000","name":"Matthew McNulty","type":"Person","_key":"59352"} +{"label":"Naomi Bentley","version":13,"id":"218344","lastModified":"1301903689000","name":"Naomi Bentley","type":"Person","_key":"59353"} +{"label":"Heather Craney","version":13,"id":"209994","lastModified":"1301903775000","name":"Heather Craney","type":"Person","_key":"59354"} +{"label":"Shaun Dingwall","version":30,"id":"86479","lastModified":"1301902626000","name":"Shaun Dingwall","type":"Person","_key":"59355"} +{"label":"Gia","description":"Fact-based story of top fashion model Gia Marie Carangi follows her life from a rebel working in her father's diner at age 17 to her death in 1986 at age 26 from AIDS, one of the first women in America whose death was attributed to the disease. In between, she followed a downward spiral of drug abuse and failed relationships.","id":"14533","runtime":125,"imdbId":"tt0123865","version":104,"lastModified":"1301903052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc5\/4bc9436c017a3c57fe01cdc5\/gia-mid.jpg","studio":"HBO Pictures","genre":"Drama","title":"Gia","releaseDate":886204800000,"language":"en","type":"Movie","_key":"59356"} +{"label":"Eric Michael Cole","version":22,"id":"83051","lastModified":"1301902316000","name":"Eric Michael Cole","type":"Person","_key":"59357"} +{"label":"Rudy","description":"Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.","id":"14534","runtime":114,"imdbId":"tt0108002","version":191,"lastModified":"1301903312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4bc94371017a3c57fe01cdd7\/rudy-mid.jpg","genre":"Drama","title":"Rudy","releaseDate":750470400000,"language":"en","type":"Movie","_key":"59358"} +{"label":"Greta Lind","version":20,"id":"76986","lastModified":"1301901990000","name":"Greta Lind","type":"Person","_key":"59359"} +{"label":"Scott Benjaminson","version":20,"id":"76987","lastModified":"1301902029000","name":"Scott Benjaminson","type":"Person","_key":"59360"} +{"label":"Mary Ann Thebus","version":20,"id":"76988","lastModified":"1301901992000","name":"Mary Ann Thebus","type":"Person","_key":"59361"} +{"label":"Christopher Reed","version":20,"id":"76989","lastModified":"1301902022000","name":"Christopher Reed","type":"Person","_key":"59362"} +{"label":"Deborah Wittenberg","version":20,"id":"76990","lastModified":"1301901809000","name":"Deborah Wittenberg","type":"Person","_key":"59363"} +{"label":"Christopher Erwin","version":20,"id":"76991","lastModified":"1301902024000","name":"Christopher Erwin","type":"Person","_key":"59364"} +{"label":"Kevin Duda","version":20,"id":"76992","lastModified":"1301901989000","name":"Kevin Duda","type":"Person","_key":"59365"} +{"label":"Robert Benirschke","version":20,"id":"76993","lastModified":"1301902016000","name":"Robert Benirschke","type":"Person","_key":"59366"} +{"label":"Luke Massery","version":20,"id":"76994","lastModified":"1301902032000","name":"Luke Massery","type":"Person","_key":"59367"} +{"label":"Robert J. Steinmiller Jr.","version":20,"id":"76995","lastModified":"1301902032000","name":"Robert J. Steinmiller Jr.","type":"Person","_key":"59368"} +{"label":"New in Town","description":"She's an executive on the move. But her career is taking her a little farther than she expected.","id":"14536","runtime":96,"imdbId":"tt1095174","homepage":"http:\/\/www.newintownmovie.com\/","version":359,"lastModified":"1301906214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68a\/4c631c9b7b9aa172de00068a\/new-in-town-mid.jpg","studio":"Edmonds Entertainment Group (EEG)","genre":"Comedy","title":"New in Town","releaseDate":1233273600000,"language":"en","tagline":"She's an executive on the move. But her career is taking her a little farther than she expected.","type":"Movie","_key":"59369"} +{"label":"Jonas Elmer","version":23,"id":"130128","lastModified":"1301901854000","name":"Jonas Elmer","type":"Person","_key":"59370"} +{"label":"Seppuku","description":"Peace in 17th-century Japan causes the Shogunate's breakup of warrior clans, throwing thousands of samurai out of work and into poverty. An honorable end to such fate under the samurai code is ritual suicide, or seppuku (self-inflicted disembowelment). An elder warrior seeks admittance to the house of a feudal lord to commit the act. There, he learns of the fate of his son-in-law.","id":"14537","runtime":135,"imdbId":"tt0056058","trailer":"http:\/\/www.youtube.com\/watch?v=947","version":42,"lastModified":"1301904995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df2\/4bc94374017a3c57fe01cdf2\/seppuku-mid.jpg","genre":"Eastern","title":"Seppuku","releaseDate":-230169600000,"language":"en","type":"Movie","_key":"59371"} +{"label":"Rentar\u00f4 Mikuni","version":26,"id":"76975","lastModified":"1301901331000","name":"Rentar\u00f4 Mikuni","type":"Person","_key":"59372"} +{"label":"Shima Iwashita","version":24,"id":"76976","lastModified":"1301901472000","name":"Shima Iwashita","type":"Person","_key":"59373"} +{"label":"Akira Ishihama","version":20,"id":"76977","lastModified":"1301901779000","name":"Akira Ishihama","type":"Person","_key":"59374"} +{"label":"Masaki Kobayashi","version":27,"id":"76978","lastModified":"1301901400000","name":"Masaki Kobayashi","type":"Person","_key":"59375"} +{"label":"Three Kingdoms: Resurrection of the Dragon","description":"The aging Zhao embarks on his final and greatest campaign, a road to adventure that will crown his name in glory for all time.","id":"14538","runtime":102,"imdbId":"tt0882978","trailer":"http:\/\/www.youtube.com\/watch?v=946","version":84,"lastModified":"1301903421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfb\/4bc94375017a3c57fe01cdfb\/saam-gwok-dzi-gin-lung-se-gap-mid.jpg","studio":"Visualizer Film Productions","genre":"Action","title":"Three Kingdoms: Resurrection of the Dragon","releaseDate":1207180800000,"language":"en","type":"Movie","_key":"59376"} +{"label":"Vanness Wu","version":24,"id":"83633","lastModified":"1301902209000","name":"Vanness Wu","type":"Person","_key":"59377"} +{"label":"An Empress and the Warriors","description":"After the death of her father, a woman is forced to take over as empress and fight to save her kingdom.","id":"14539","runtime":99,"imdbId":"tt1186803","trailer":"http:\/\/www.youtube.com\/watch?v=948","version":96,"lastModified":"1301906609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/440\/4d8a42177b9aa13ae4000440\/kong-saan-mei-yan-mid.jpg","genre":"Action","title":"An Empress and the Warriors","releaseDate":1205884800000,"language":"en","type":"Movie","_key":"59378"} +{"label":"Jeff Dunham: Spark of Insanity","description":"Combining his amazing talent and his unorthodox sense of humor, Jeff Dunham returns, yet again, with an hilarious ventriloquist performance. Starting off with the infamously known Walter, scrutinizing every bit of today's American society. Followed by two new characters, Achmed the Dead Terrorist, who continuously threatens the crowd with Silence and Death, and Melvin the Superhero","id":"14540","runtime":80,"imdbId":"tt1143143","homepage":"http:\/\/www.jeffdunham.com","version":162,"lastModified":"1301903297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e27\/4bc94379017a3c57fe01ce27\/jeff-dunham-spark-of-insanity-mid.jpg","studio":"Levity Productions","genre":"Comedy","title":"Jeff Dunham: Spark of Insanity","releaseDate":1189987200000,"language":"en","type":"Movie","_key":"59379"} +{"label":"Jeff Dunham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9aa\/4cbf7f787b9aa138d70019aa\/jeff-dunham-profile.jpg","version":30,"birthday":"-243219600000","id":"76982","birthplace":"Dallas","lastModified":"1301901399000","name":"Jeff Dunham","type":"Person","_key":"59380"} +{"label":"Paige Dunham","version":20,"id":"76983","lastModified":"1301901367000","name":"Paige Dunham","type":"Person","_key":"59381"} +{"label":"Michael Simon","version":25,"id":"77042","lastModified":"1301901443000","name":"Michael Simon","type":"Person","_key":"59382"} +{"label":"Jeff Dunham's Very Special Christmas Special","description":"The multi-platinum selling comedian performs his first holiday-themed stand-up special with his friends.","id":"14541","runtime":85,"imdbId":"tt1295909","homepage":"http:\/\/www.jeffdunham.com","version":215,"lastModified":"1301903331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e34\/4bc9437d017a3c57fe01ce34\/jeff-dunham-s-very-special-christmas-special-mid.jpg","studio":"Levity Productions","genre":"Comedy","title":"Jeff Dunham's Very Special Christmas Special","releaseDate":1226793600000,"language":"en","type":"Movie","_key":"59383"} +{"label":"Brian Haner","version":20,"id":"76984","lastModified":"1301901517000","name":"Brian Haner","type":"Person","_key":"59384"} +{"label":"Jeff Dunham: Arguing with Myself","description":"Stars Jeff Dunham, Walter, Sweet Daddy Dee, Bubba J, Peanut & Jos\u00e9 Jalape\u00f1o on a Stick ","id":"14542","runtime":76,"imdbId":"tt0806102","homepage":"http:\/\/www.jeffdunham.com","version":146,"lastModified":"1301903970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e45\/4bc9437e017a3c57fe01ce45\/jeff-dunham-arguing-with-myself-mid.jpg","studio":"Levity Productions","genre":"Comedy","title":"Jeff Dunham: Arguing with Myself","releaseDate":1144713600000,"language":"en","type":"Movie","_key":"59385"} +{"label":"The Matrix Revisited","description":"The film goes behind the scenes of the 1999 sci-fi movie The Matrix. ","id":"14543","runtime":123,"imdbId":"tt0295432","version":134,"lastModified":"1301903811000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4a\/4bc9437e017a3c57fe01ce4a\/the-matrix-revisited-mid.jpg","genre":"Documentary","title":"The Matrix Revisited","releaseDate":1006214400000,"language":"en","type":"Movie","_key":"59386"} +{"label":"Roll Bounce","description":"1970s roller-skate jams fuel this coming-of-age comedy, as X and his friends, who rule their local rink... ","id":"14544","runtime":112,"imdbId":"tt0403455","version":203,"lastModified":"1301904083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e53\/4bc9437f017a3c57fe01ce53\/roll-bounce-mid.jpg","genre":"Comedy","title":"Roll Bounce","releaseDate":1127433600000,"language":"en","type":"Movie","_key":"59387"} +{"label":"Kellita Smith","version":19,"id":"98087","lastModified":"1301902853000","name":"Kellita Smith","type":"Person","_key":"59388"} +{"label":"Golmaal Returns","description":"Golmaal Returns, the much-awaited follow-up to the uproariously comical smash-hit Golmaal, arrives with a renewed star power, chartbusting music and more laughter than ever before!","id":"14546","runtime":135,"imdbId":"tt1092005","trailer":"http:\/\/www.youtube.com\/watch?v=6i5MaSCM5cE","version":147,"lastModified":"1301905188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5c\/4bc9437f017a3c57fe01ce5c\/golmaal-returns-mid.jpg","studio":"Shree Ashtavinayak Cine Vision","genre":"Comedy","title":"Golmaal Returns","releaseDate":1225238400000,"language":"en","type":"Movie","_key":"59389"} +{"label":"Arshad Warsi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e3\/4cd6cb8d7b9aa11b270002e3\/arshad-warsi-profile.jpg","version":54,"birthday":"-53744400000","id":"85889","birthplace":"Mumbai, Maharashtra, India","lastModified":"1301901466000","name":"Arshad Warsi","type":"Person","_key":"59390"} +{"label":"Tusshar Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a9\/4d22516f7b9aa173730034a9\/tusshar-kapoor-profile.jpg","version":35,"id":"85891","lastModified":"1301901952000","name":"Tusshar Kapoor","type":"Person","_key":"59391"} +{"label":"Celina Jaitley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/176\/4d95d5e55e73d62248003176\/celina-jaitley-profile.jpg","version":27,"id":"77237","lastModified":"1301901413000","name":"Celina Jaitley","type":"Person","_key":"59392"} +{"label":"Anjana Sukhani","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12c\/4d2105a05e73d659b700012c\/anjana-sukhani-profile.jpg","version":27,"id":"85887","lastModified":"1301902395000","name":"Anjana Sukhani","type":"Person","_key":"59393"} +{"label":"Sanjay Mishra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b9\/4d2251ee7b9aa173730034b9\/sanjay-mishra-profile.jpg","version":36,"id":"85879","lastModified":"1301902513000","name":"Sanjay Mishra","type":"Person","_key":"59394"} +{"label":"Ashwini Khalsekar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e6b\/4d2252167b9aa12886000e6b\/ashwini-khalsekar-profile.jpg","version":21,"id":"85657","lastModified":"1301902047000","name":"Ashwini Khalsekar","type":"Person","_key":"59395"} +{"label":"Mukesh Tiwari","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e9e\/4d22522c7b9aa12823000e9e\/mukesh-tiwari-profile.jpg","version":36,"id":"86064","lastModified":"1301902395000","name":"Mukesh Tiwari","type":"Person","_key":"59396"} +{"label":"Upasna Singh","version":24,"id":"87329","lastModified":"1301902577000","name":"Upasna Singh","type":"Person","_key":"59397"} +{"label":"Robin Bhatt","version":25,"id":"86782","lastModified":"1301902780000","name":"Robin Bhatt","type":"Person","_key":"59398"} +{"label":"Sherveer Vakil","version":18,"id":"131855","lastModified":"1301902987000","name":"Sherveer Vakil","type":"Person","_key":"59399"} +{"label":"Ashish R. Mohan","version":19,"id":"131856","lastModified":"1301903039000","name":"Ashish R. Mohan","type":"Person","_key":"59400"} +{"label":"Rohit Shetty","version":30,"id":"86783","lastModified":"1301901533000","name":"Rohit Shetty","type":"Person","_key":"59401"} +{"label":"Delta Farce","description":"When three small town National Guardsmen bound for Iraq are unknowingly dropped into Mexico, their confusion leads them to \"liberate\" a small village from a band of corrupt Federales.","id":"14547","runtime":90,"imdbId":"tt0800003","version":205,"lastModified":"1301902122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8e\/4bc94383017a3c57fe01ce8e\/delta-farce-mid.jpg","genre":"Action","title":"Delta Farce","releaseDate":1178841600000,"language":"en","type":"Movie","_key":"59402"} +{"label":"Bill Engvall","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf6\/4c0fb037017a3c7e89000cf6\/bill-engvall-profile.jpg","version":38,"id":"76997","lastModified":"1301901565000","name":"Bill Engvall","type":"Person","_key":"59403"} +{"label":"Mumbai Salsa","description":"No overview found.","id":"14548","runtime":0,"imdbId":"tt1127870","version":67,"lastModified":"1300979899000","genre":"Comedy","title":"Mumbai Salsa","releaseDate":1193011200000,"language":"en","type":"Movie","_key":"59404"} +{"label":"Night Train","description":"Two Passengers (Sobieski and Zahn) and the conductor (Glover), discovered that a person has passed away on their Night Train cabin. They come across valuable diamonds on his person, that they decide to keep for themselves...","id":"14549","runtime":87,"imdbId":"tt1020055","version":186,"lastModified":"1301903554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4d4d53345e73d617c7002241\/night-train-mid.jpg","studio":"A-Mark Entertainment","genre":"Action","title":"Night Train","releaseDate":1239753600000,"language":"en","type":"Movie","_key":"59405"} +{"label":"Brian King","version":26,"id":"63928","lastModified":"1301902369000","name":"Brian King","type":"Person","_key":"59406"} +{"label":"The Dream Team","description":"This morning they were playing ping-pong in the hospital rec room. Now they're lost in New York and framed for murder. This was never covered in group therapy.","id":"14550","runtime":113,"imdbId":"tt0097235","version":107,"lastModified":"1301908367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb6\/4bc94389017a3c57fe01ceb6\/the-dream-team-mid.jpg","genre":"Comedy","title":"The Dream Team","releaseDate":607910400000,"language":"en","type":"Movie","_key":"59407"} +{"label":"Winchester '73","description":"Lin McAdam rides into town on the trail of Dutch Henry Brown, only to find himself in a shooting competition against him. McAdam wins the prize, a one-in-a-thousand Winchester rifle, but Dutch steals it and leaves town. McAdam follows, intent on settling his old quarrel, while the rifle keeps changing hands and touching a number of lives.","id":"14551","runtime":92,"imdbId":"tt0043137","trailer":"http:\/\/www.youtube.com\/watch?v=vCu1RKphgos","version":117,"lastModified":"1301903468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec9\/4bc9438a017a3c57fe01cec9\/winchester-73-mid.jpg","studio":"Universal International Pictures","genre":"Action","title":"Winchester '73","releaseDate":-614563200000,"language":"en","type":"Movie","_key":"59408"} +{"label":"Have Dreams, Will Travel","description":"Set in the 1960's, a magical tale of two 12-year-olds embarking on an adventure to find new, cool parents and escape their neglected, overly adult, existence.","id":"14552","runtime":86,"imdbId":"tt0446802","version":96,"lastModified":"1301904181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c19\/4c71d5b87b9aa13ab7000c19\/have-dreams-will-travel-mid.jpg","genre":"Drama","title":"Have Dreams, Will Travel","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"59409"} +{"label":"Brad Isaacs","version":20,"id":"129951","lastModified":"1301902787000","name":"Brad Isaacs","type":"Person","_key":"59410"} +{"label":"Stealing Beauty","description":"Lucy Harmon, an American teenager is arriving in the lush Tuscan countryside to be sculpted by a family friend who lives in a beautiful villa. Lucy visited there four years earlier and exchanged a kiss with an Italian boy with whom she hopes to become reacquainted. Lucy's mother has committed suicide since then, and she also hopes to discover the identity of her father.","id":"14553","runtime":113,"imdbId":"tt0117737","version":157,"lastModified":"1301904301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed6\/4bc9438c017a3c57fe01ced6\/stealing-beauty-mid.jpg","genre":"Drama","title":"Stealing Beauty","releaseDate":828057600000,"language":"en","type":"Movie","_key":"59411"} +{"label":"Bad Day at Black Rock","description":"A one handed stranger comes to a tiny town possessing a terrible past they want to keep secret, by violent means if necessary.","id":"14554","runtime":81,"imdbId":"tt0047849","version":107,"lastModified":"1302039485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edf\/4bc9438d017a3c57fe01cedf\/bad-day-at-black-rock-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Bad Day at Black Rock","releaseDate":-472867200000,"language":"en","type":"Movie","_key":"59412"} +{"label":"Sagan","description":"No overview found.","id":"14555","runtime":180,"imdbId":"tt1052353","trailer":"http:\/\/www.youtube.com\/watch?v=954","version":71,"lastModified":"1301904226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef0\/4bc9438f017a3c57fe01cef0\/sagan-mid.jpg","studio":"Alexandre Films","title":"Sagan","releaseDate":1213142400000,"language":"en","type":"Movie","_key":"59413"} +{"label":"Diane Kurys","version":23,"id":"77005","lastModified":"1301901602000","name":"Diane Kurys","type":"Person","_key":"59414"} +{"label":"Pierre Palmade","version":27,"id":"77007","lastModified":"1301901509000","name":"Pierre Palmade","type":"Person","_key":"59415"} +{"label":"Anything for her","description":"Lisa (Diane Kruger) and Julien (Vincent Lindon) are married and lead a happy uneventful life with their son Oscar (Lancelot Roch). But their life radically changes one morning, when the police comes to arrest Lisa on murder charges. She's sentenced to 20 years of prison. Convinced of his wife's innocence, Julien decides to act. How far will he be willing to go for her?","id":"14556","runtime":96,"imdbId":"tt1217637","version":91,"lastModified":"1301902893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc94394017a3c57fe01cf05\/pour-elle-mid.jpg","studio":"Fid\u00e9lit\u00e9 Films","genre":"Drama","title":"Anything for her","releaseDate":1228262400000,"language":"en","type":"Movie","_key":"59416"} +{"label":"Fred Cavay\u00e9","version":45,"id":"77008","lastModified":"1301901260000","name":"Fred Cavay\u00e9","type":"Person","_key":"59417"} +{"label":"Lancelot Roch","version":22,"id":"77010","lastModified":"1301901695000","name":"Lancelot Roch","type":"Person","_key":"59418"} +{"label":"Dead Man on Campus","description":"Josh Miller (Tom Everett Scott) is a studious and responsible pre-med student entering college as a freshman. His wild, hard-partying roommate Cooper Frederickson (Mark-Paul Gosselaar), on the other hand, is a spoiled rich kid who never studies and spends his time getting drunk and ogling co-eds. Before long, Cooper's fun-filled lifestyle has corrupted Josh, and both are on the verge of flunking o","id":"14557","runtime":96,"imdbId":"tt0118301","version":110,"lastModified":"1301904768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0e\/4bc94394017a3c57fe01cf0e\/dead-man-on-campus-mid.jpg","genre":"Comedy","title":"Dead Man on Campus","releaseDate":903657600000,"language":"en","type":"Movie","_key":"59419"} +{"label":"Mark-Paul Gosselaar","version":20,"id":"19184","lastModified":"1301901602000","name":"Mark-Paul Gosselaar","type":"Person","_key":"59420"} +{"label":"Poppy Montgomery","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d2c\/4d44bc3b5e73d602b2000d2c\/poppy-montgomery-profile.jpg","version":26,"id":"77028","lastModified":"1301901679000","name":"Poppy Montgomery","type":"Person","_key":"59421"} +{"label":"Randy Pearlstein","version":24,"id":"69803","lastModified":"1301902331000","name":"Randy Pearlstein","type":"Person","_key":"59422"} +{"label":"Corey Page","version":21,"id":"77029","lastModified":"1301902069000","name":"Corey Page","type":"Person","_key":"59423"} +{"label":"Dave Ruby","version":23,"id":"77030","lastModified":"1301902204000","name":"Dave Ruby","type":"Person","_key":"59424"} +{"label":"Mark Carapezza","version":21,"id":"77031","lastModified":"1301902069000","name":"Mark Carapezza","type":"Person","_key":"59425"} +{"label":"Jeff Tarpley","version":21,"id":"77032","lastModified":"1301902069000","name":"Jeff Tarpley","type":"Person","_key":"59426"} +{"label":"Judyann Elder","version":22,"id":"77033","lastModified":"1301902069000","name":"Judyann Elder","type":"Person","_key":"59427"} +{"label":"Alan Cohn","version":18,"id":"111247","lastModified":"1301902634000","name":"Alan Cohn","type":"Person","_key":"59428"} +{"label":"Lejdis","description":"To zwariowana historia czterech przyjaci\u00f3\u0142ek (\u0141ucja - Edyta Olsz\u00f3wka, Korba - Anna Dereszowska, Monia - Magdalena R\u00f3\u017cczka, Go\u015bka - Iza Kuna), kt\u00f3rych \u017cycie w wyniku galopady szalonych wydarze\u0144 ulega w ci\u0105gu roku ca\u0142kowitej zmianie. Towarzysz\u0105 im w tej galopadzie m\u0119\u017cczy\u017ani szlachetni (Istvan - Tomasz Kot, Wojtek - Tomasz Karolak, Tomek - Rafa\u0142 Kr\u00f3likowski, Tadeusz - Krzysztof Globisz), m\u0119\u017cczy\u017ani nieszlachetni (Marek Dywanik - Robert Wi\u0119ckiewicz, B\u0142a\u017cej Dywanik - Borys Szyc) oraz trudni do zdefini","id":"14558","runtime":0,"imdbId":"tt1175505","version":54,"lastModified":"1301906658000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f17\/4bc94395017a3c57fe01cf17\/lejdis-mid.jpg","title":"Lejdis","releaseDate":1193788800000,"language":"en","type":"Movie","_key":"59429"} +{"label":"Tomasz Konecki","version":20,"id":"122670","lastModified":"1301902413000","name":"Tomasz Konecki","type":"Person","_key":"59430"} +{"label":"Piotr Adamczyk","version":28,"id":"118762","lastModified":"1301902579000","name":"Piotr Adamczyk","type":"Person","_key":"59431"} +{"label":" Edyta Olsz\u00f3wka","version":16,"id":"140649","lastModified":"1301902770000","name":" Edyta Olsz\u00f3wka","type":"Person","_key":"59432"} +{"label":"Magdalena R\u00f3\u017cczka","version":16,"id":"140650","lastModified":"1301902912000","name":"Magdalena R\u00f3\u017cczka","type":"Person","_key":"59433"} +{"label":"Iza Kuna","version":17,"id":"140651","lastModified":"1301903040000","name":"Iza Kuna","type":"Person","_key":"59434"} +{"label":"Tomasz Kot","version":16,"id":"140652","lastModified":"1301902770000","name":"Tomasz Kot","type":"Person","_key":"59435"} +{"label":"Tomasz Karolak","version":17,"id":"140653","lastModified":"1301902770000","name":"Tomasz Karolak","type":"Person","_key":"59436"} +{"label":"Rafa\u0142 Kr\u00f3likowski","version":17,"id":"140654","lastModified":"1301902732000","name":"Rafa\u0142 Kr\u00f3likowski","type":"Person","_key":"59437"} +{"label":"Krzysztof Globisz","version":16,"id":"140655","lastModified":"1301902754000","name":"Krzysztof Globisz","type":"Person","_key":"59438"} +{"label":"Paul Blart: Mall Cop","description":"Paul Blart: Mall Cop tells another tale of a hapless dimwit who inadvertently winds up being pitted against a group of international thieves and somehow winds up saving the day and realizing that maybe he's not so dumb afterall.","id":"14560","runtime":91,"imdbId":"tt1114740","trailer":"http:\/\/www.youtube.com\/watch?v=E-fGUgMK9bI","homepage":"http:\/\/paulblartmallcop.com\/","version":232,"lastModified":"1301901564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4f\/4bc9439d017a3c57fe01cf4f\/paul-blart-mall-cop-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Paul Blart: Mall Cop","releaseDate":1232064000000,"language":"en","type":"Movie","_key":"59439"} +{"label":"Raini Rodriguez","version":19,"id":"78436","lastModified":"1301901719000","name":"Raini Rodriguez","type":"Person","_key":"59440"} +{"label":"Stephen Rannazzisi","version":26,"id":"78437","lastModified":"1301902030000","name":"Stephen Rannazzisi","type":"Person","_key":"59441"} +{"label":"Comeback Season","description":"First Down. Second Chance.\n\nSkylar is a star quarterback of his football team. He's got the skills, the looks, and the girls. His next-door neighbor, Walter (Liotta) is a loving husband, good father and all-round decent family man. When their worlds start to crumble they find themselves in jail together and suddenly these former enemies must rely on each other to rebuild their lives... finding wha","id":"14561","runtime":99,"imdbId":"tt0455400","version":100,"lastModified":"1301906471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5e\/4bc9439f017a3c57fe01cf5e\/comeback-season-mid.jpg","genre":"Comedy","title":"Comeback Season","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59442"} +{"label":"Brenda Campbell","version":20,"id":"77035","lastModified":"1301901811000","name":"Brenda Campbell","type":"Person","_key":"59443"} +{"label":"David Parker","version":28,"id":"77036","lastModified":"1301901678000","name":"David Parker","type":"Person","_key":"59444"} +{"label":"Josh Emerson","version":20,"id":"77037","lastModified":"1301901838000","name":"Josh Emerson","type":"Person","_key":"59445"} +{"label":"Chris Ippolito","version":20,"id":"77038","lastModified":"1301901837000","name":"Chris Ippolito","type":"Person","_key":"59446"} +{"label":"Michael St. John Smith","version":20,"id":"77039","lastModified":"1301901811000","name":"Michael St. John Smith","type":"Person","_key":"59447"} +{"label":"Steve Mitchell","version":20,"id":"68746","lastModified":"1301902144000","name":"Steve Mitchell","type":"Person","_key":"59448"} +{"label":"Stephen Hair","version":20,"id":"77041","lastModified":"1301901992000","name":"Stephen Hair","type":"Person","_key":"59449"} +{"label":"The Ring Trilogy","description":"No overview found.","id":"14563","version":63,"lastModified":"1301905188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6c\/4bc9439f017a3c57fe01cf6c\/the-ring-trilogy-mid.jpg","title":"The Ring Trilogy","language":"en","type":"Movie","_key":"59450"} +{"label":"The Ring 3","description":"No overview found.","id":"14564","runtime":0,"imdbId":"tt0498381","version":112,"lastModified":"1301417851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f71\/4bc943a0017a3c57fe01cf71\/the-ring-3-mid.jpg","studio":"DreamWorks","title":"The Ring 3","language":"en","tagline":"You stop living the moment you want to die","type":"Movie","_key":"59451"} +{"label":"Love Lies Bleeding","description":"A struggling young couple stumbles upon a cache of dirty money after a shootout in their apartment building.","id":"14565","runtime":94,"imdbId":"tt0984204","version":145,"lastModified":"1301903269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f76\/4bc943a0017a3c57fe01cf76\/love-lies-bleeding-mid.jpg","genre":"Action","title":"Love Lies Bleeding","releaseDate":1200355200000,"language":"en","type":"Movie","_key":"59452"} +{"label":"Keith Samples","version":24,"id":"65115","lastModified":"1301901757000","name":"Keith Samples","type":"Person","_key":"59453"} +{"label":"Feed","description":"No overview found.","id":"14566","runtime":101,"imdbId":"tt0445965","version":90,"lastModified":"1301416627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f83\/4bc943a1017a3c57fe01cf83\/feed-mid.jpg","genre":"Mystery","title":"Feed","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"59454"} +{"label":"XIII The Conspiracy (Part One)","description":"The first female US President Sally Sheridan is shot dead by a sniper during her Independence Day speech. Her assassin narrowly escapes the scene with his life, national security hot on his heels - or so it seems. Three months later, an elderly couple discover the body of a wounded man in a tree, wearing a parachute. The young man (Dorff) cannot remember the slightest thing about his own identity.","id":"14567","runtime":86,"imdbId":"tt1309555","version":106,"lastModified":"1301902665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f90\/4bc943a2017a3c57fe01cf90\/xiii-mid.jpg","studio":"Prodigy Pictures","genre":"Action","title":"XIII The Conspiracy (Part One)","releaseDate":1223251200000,"language":"en","type":"Movie","_key":"59455"} +{"label":"I-See-You.Com","description":"A 17-year-old boy buys mini-cameras and displays the footage online at I-see-you.com. The cash rolls in as the site becomes a major hit. Everyone seems to have fun until it all comes crashing down....","id":"14569","runtime":92,"imdbId":"tt0489085","homepage":"http:\/\/www.i-see-you.com\/","version":81,"lastModified":"1301903868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/029\/4c2aa8dc5e73d6399b000029\/i-see-you-com-mid.jpg","studio":"Filmquest Pictures","genre":"Comedy","title":"I-See-You.Com","releaseDate":1141776000000,"language":"en","type":"Movie","_key":"59456"} +{"label":"Mathew Botuchis","version":14,"id":"166701","lastModified":"1301903491000","name":"Mathew Botuchis","type":"Person","_key":"59457"} +{"label":"Eric Steven Stahl","version":25,"id":"126303","lastModified":"1301902899000","name":"Eric Steven Stahl","type":"Person","_key":"59458"} +{"label":"Gymkata","description":"Johnathan Cabot is a champion gymnast. In the tiny, yet savage, country of Parmistan, there is a perfect spot for a \"star wars\" site. For the US to get this site, they must compete in the brutal \"Game\". The government calls on Cabot, the son of a former operative, to win the game. Cabot must combine his gymnastics skills of the west with fighting secrets of the east and form GYMKATA!","id":"14570","runtime":90,"imdbId":"tt0089243","trailer":"http:\/\/www.youtube.com\/watch?v=958","version":61,"lastModified":"1301907095000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa7\/4bc943a6017a3c57fe01cfa7\/gymkata-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Action","title":"Gymkata","releaseDate":483753600000,"language":"en","type":"Movie","_key":"59459"} +{"label":"Kurt Thomas","version":20,"id":"77053","lastModified":"1301902173000","name":"Kurt Thomas","type":"Person","_key":"59460"} +{"label":"Tetchie Agbayani","version":20,"id":"77054","lastModified":"1301902174000","name":"Tetchie Agbayani","type":"Person","_key":"59461"} +{"label":"Patlabor: The Movie","description":"A mysterious suicide and a series of unmanned robot run-aways sparks off a Police investigation into the suspicious software on-board thousands of industrial robots around Tokyo.","id":"14571","runtime":100,"imdbId":"tt0100339","trailer":"http:\/\/www.youtube.com\/watch?v=PSj7wCe7ejA","version":81,"lastModified":"1301902977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb4\/4bc943a7017a3c57fe01cfb4\/kido-keisatsu-patoreba-the-movie-mid.jpg","genre":"Animation","title":"Patlabor: The Movie","releaseDate":599616000000,"language":"en","type":"Movie","_key":"59462"} +{"label":"Patlabor 2: The Movie","description":"A Japanese police unit who use giant anthropomorphic robots (called Labors) is caught up in a political struggle between the civilian authorities and the military when a terrorist act is blamed on an Air Force jet. With the aid of a government agent, the team gets close to a terrorist leader to stop things from going out of control when after the military is impelled to impose martial law.","id":"14572","runtime":107,"imdbId":"tt0124770","trailer":"http:\/\/www.youtube.com\/watch?v=1919","version":99,"lastModified":"1301903680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fca\/4bc943a8017a3c57fe01cfca\/kido-keisatsu-patoreba-the-movie-2-mid.jpg","genre":"Animation","title":"Patlabor 2: The Movie","releaseDate":744681600000,"language":"en","type":"Movie","_key":"59463"} +{"label":"Natural City","description":"Two cops, R and Noma, hunt down renegade cyborgs. Cyborgs are used as commandos by the military, as lust objects and for companionship. Normaly they have a limited lifespan of three years but black market technology is being developed to be able to transfer a cyborg's artificial intelligence into human host. This drives R to find a suitable host for his expiring cyborg Ria.","id":"14573","runtime":114,"imdbId":"tt0378428","version":131,"lastModified":"1301904383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd7\/4bc943a9017a3c57fe01cfd7\/natural-city-mid.jpg","studio":"Jowoo Entertainment","genre":"Action","title":"Natural City","releaseDate":1062720000000,"language":"en","type":"Movie","_key":"59464"} +{"label":"Ji-tae Yu","version":21,"id":"10112","lastModified":"1301901278000","name":"Ji-tae Yu","type":"Person","_key":"59465"} +{"label":"Jae-un Lee","version":19,"id":"77055","lastModified":"1301901381000","name":"Jae-un Lee","type":"Person","_key":"59466"} +{"label":"Rin Seo","version":19,"id":"77056","lastModified":"1301901280000","name":"Rin Seo","type":"Person","_key":"59467"} +{"label":"Eun-pyo Jeong","version":19,"id":"77057","lastModified":"1301901337000","name":"Eun-pyo Jeong","type":"Person","_key":"59468"} +{"label":"Eul-dong Kim","version":20,"id":"77059","lastModified":"1301901673000","name":"Eul-dong Kim","type":"Person","_key":"59469"} +{"label":"Ju-hye Ko","version":19,"id":"77060","lastModified":"1301901474000","name":"Ju-hye Ko","type":"Person","_key":"59470"} +{"label":"Chang Yun","version":23,"id":"77061","lastModified":"1301901741000","name":"Chang Yun","type":"Person","_key":"59471"} +{"label":"Byung-chun Min","version":22,"id":"77063","lastModified":"1301901474000","name":"Byung-chun Min","type":"Person","_key":"59472"} +{"label":"The Boy in the Striped Pajamas","description":"Set during World War II, a story seen through the innocent eyes of Bruno, the eight-year-old son of the commandant at a concentration camp, whose forbidden friendship with a Jewish boy on the other side of the camp fence has startling and unexpected consequences.","id":"14574","runtime":94,"imdbId":"tt0914798","trailer":"http:\/\/www.youtube.com\/watch?v=uwysOfnX2Qg","homepage":"http:\/\/www.boyinthestripedpajamas.com\/","version":215,"lastModified":"1301901371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4d6df2ed7b9aa130000002f4\/the-boy-in-the-striped-pajamas-mid.jpg","studio":"BBC Films","genre":"Drama","title":"The Boy in the Striped Pajamas","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"59473"} +{"label":"Asa Butterfield","version":33,"id":"77996","lastModified":"1301901363000","name":"Asa Butterfield","type":"Person","_key":"59474"} +{"label":"Zac Mattoon O'Brien","version":22,"id":"77997","lastModified":"1301901239000","name":"Zac Mattoon O'Brien","type":"Person","_key":"59475"} +{"label":"Domonkos N\u00e9meth","version":22,"id":"77998","lastModified":"1301901429000","name":"Domonkos N\u00e9meth","type":"Person","_key":"59476"} +{"label":"Henry Kingsmill","version":22,"id":"77999","lastModified":"1301901535000","name":"Henry Kingsmill","type":"Person","_key":"59477"} +{"label":"The Crew","description":"As a major heist approaches and with betrayal all around him, a respected crime boss has to summon all his street nous and killer instinct as he fights for survival.","id":"14575","runtime":117,"imdbId":"tt1071880","trailer":"http:\/\/www.youtube.com\/watch?v=961","homepage":"http:\/\/www.thecrewmovie.co.uk\/","version":201,"lastModified":"1301904617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4bc943af017a3c57fe01cff9\/the-crew-mid.jpg","genre":"Action","title":"The Crew","releaseDate":1222819200000,"language":"en","type":"Movie","_key":"59478"} +{"label":"Adrian Vitoria","version":22,"id":"77084","lastModified":"1301901630000","name":"Adrian Vitoria","type":"Person","_key":"59479"} +{"label":"Shade","description":"Shade is set in the world of poker hustlers working the clubs and martini bars of Los Angeles. The tale unfolds as a group of hustlers encounter \"The Dean\" and pull off a successful sting that results in their pursuit by a vengeful gangster.","id":"14576","runtime":95,"imdbId":"tt0323939","version":185,"lastModified":"1301903210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4bc943b0017a3c57fe01d002\/shade-mid.jpg","genre":"Action","title":"Shade","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"59480"} +{"label":"Damian Nieman","version":25,"id":"77062","lastModified":"1301901865000","name":"Damian Nieman","type":"Person","_key":"59481"} +{"label":"Dirty Work","description":"Unemployed and recently dumped, Mitch and his buddy Sam start a revenge-for-hire business to raise the $50,000 that Sam's father needs to get a heart transplant. The dirty duo brings down a movie theater manager and hires hookers to pose as dead bodies during a live TV ad. When a wealthy developer hires the guys to trash a building (so that he can have it condemned), problems arise and a feud ensues.","id":"14577","runtime":82,"imdbId":"tt0120654","version":165,"lastModified":"1301902517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/815\/4d4077b67b9aa15bb5002815\/dirty-work-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Dirty Work","releaseDate":897609600000,"language":"en","tagline":"Revenge is a dish best served DIRTY.","type":"Movie","_key":"59482"} +{"label":"Norm MacDonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e97\/4d7e29297b9aa12e19011e97\/norm-macdonald-profile.jpg","version":36,"id":"77075","lastModified":"1301901297000","name":"Norm MacDonald","type":"Person","_key":"59483"} +{"label":"Outside Providence","description":"A boy from Pawtucket, Rhode Island, caught up in the drug scene of the mid-70s, gets in trouble one too many times with the law. To stave off a jail term, his father arranges for him to be placed into a prep school in Cornwall, Connecticut. The terms: Graduate, or else.","id":"14578","runtime":96,"imdbId":"tt0125971","version":141,"lastModified":"1301908417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc943b3017a3c57fe01d018\/outside-providence-mid.jpg","genre":"Comedy","title":"Outside Providence","releaseDate":934761600000,"language":"en","type":"Movie","_key":"59484"} +{"label":"Lake City","description":"In this searing Southern drama, a mother and son reunite under desperate circumstances years after a family tragedy drove them far apart.","id":"14579","runtime":92,"imdbId":"tt0875705","version":321,"lastModified":"1301906256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf1\/4d45f8de5e73d65385002bf1\/lake-city-mid.jpg","genre":"Drama","title":"Lake City","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"59485"} +{"label":"Hunter Hill","version":20,"id":"77082","lastModified":"1301901813000","name":"Hunter Hill","type":"Person","_key":"59486"} +{"label":"Perry Moore","version":48,"id":"5544","lastModified":"1301901362000","name":"Perry Moore","type":"Person","_key":"59487"} +{"label":"The Big Heat","description":"Tough cop Dave Bannion takes on a politically powerful crime syndicate.","id":"14580","runtime":89,"imdbId":"tt0045555","trailer":"http:\/\/www.youtube.com\/watch?v=9nngtpTIx8Y","version":98,"lastModified":"1301902764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4bc943b3017a3c57fe01d02a\/the-big-heat-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Crime","title":"The Big Heat","releaseDate":-511747200000,"language":"en","tagline":"A hard cop and a soft dame.","type":"Movie","_key":"59488"} +{"label":"Jocelyn Brando","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14b\/4bd85522017a3c1c0900014b\/jocelyn-brando-profile.jpg","version":26,"id":"96283","lastModified":"1301901509000","name":"Jocelyn Brando","type":"Person","_key":"59489"} +{"label":"Alexander Scourby","version":19,"id":"96284","lastModified":"1301901719000","name":"Alexander Scourby","type":"Person","_key":"59490"} +{"label":"Peter Whitney","version":26,"id":"89527","lastModified":"1301901176000","name":"Peter Whitney","type":"Person","_key":"59491"} +{"label":"91 Words for Snow","description":"No overview found.","id":"14581","runtime":0,"version":19,"lastModified":"1300979912000","studio":"Blank Paper Studios","title":"91 Words for Snow","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"59492"} +{"label":"Passchendaele","description":"Sergeant Michael Dunne fights in the 10th Battalion, AKA The \"Fighting Tenth\" with the 1st Canadian Division and participated in all major Canadian battles of the war, and set the record for highest number of individual bravery awards for a single battle","id":"14582","runtime":114,"imdbId":"tt1092082","trailer":"http:\/\/www.youtube.com\/watch?v=I6WYHagWdeE","homepage":"http:\/\/www.passchendaelethemovie.com","version":104,"lastModified":"1301903910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b3\/4d7a08487b9aa11a100005b3\/passchendaele-mid.jpg","studio":"Alliance Entertainment","genre":"Drama","title":"Passchendaele","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"59493"} +{"label":"Meredith Bailey","version":20,"id":"84022","lastModified":"1301902244000","name":"Meredith Bailey","type":"Person","_key":"59494"} +{"label":"Deceiver","description":"Textile company heir Wayland is accused of murder of a prostitute named Elizabeth, whose body was found cut in two in the park...","id":"14583","runtime":106,"imdbId":"tt0119527","version":261,"lastModified":"1301905302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4bc943b5017a3c57fe01d048\/deceiver-mid.jpg","genre":"Crime","title":"Deceiver","releaseDate":872985600000,"language":"en","type":"Movie","_key":"59495"} +{"label":"Jonas Pate","version":28,"id":"77086","lastModified":"1301901595000","name":"Jonas Pate","type":"Person","_key":"59496"} +{"label":"The Cheap Detective","description":"Spoofing the entire 1940s detective genre, and his own performances as a bumbling private detective, Peter Falk plays Lou Pekinpaugh, a San Francisco private detective accused of murdering his partner at the instigation of his mistress, the partner's wife, Georgia Merkle.","id":"14584","runtime":92,"imdbId":"tt0077321","version":72,"lastModified":"1301906063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4bc943b9017a3c57fe01d055\/the-cheap-detective-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Cheap Detective","releaseDate":267408000000,"language":"en","type":"Movie","_key":"59497"} +{"label":"In the Company of Men","description":"Two business executives--one an avowed misogynist, the other recently emotionally wounded by his love interest--set out to exact revenge on the female gender by seeking out the most innocent, uncorrupted girl they can find and ruining her life.","id":"14585","runtime":97,"imdbId":"tt0119361","version":137,"lastModified":"1302039317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05a\/4bc943ba017a3c57fe01d05a\/in-the-company-of-men-mid.jpg","genre":"Comedy","title":"In the Company of Men","releaseDate":870393600000,"language":"en","type":"Movie","_key":"59498"} +{"label":"Bhaji by the Beach","description":"A group of women of Indian descent take a trip together from their home in Birmingham, England to the beach resort of Blackpool.","id":"14587","runtime":100,"imdbId":"tt0106408","version":41,"lastModified":"1301908562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bc943bb017a3c57fe01d063\/bhaji-by-the-beach-mid.jpg","title":"Bhaji by the Beach","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59499"} +{"label":"After the Thin Man","description":"Selma asks Nick to find her missing husband. He had been seeing a bit on the side, and blackmailing a local criminal. David Graham claims he paid the missing husband to get rid of a former girlfriend. Will Nick locate him?","id":"14588","runtime":112,"imdbId":"tt0027260","version":125,"lastModified":"1301904414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06c\/4bc943bb017a3c57fe01d06c\/after-the-thin-man-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"After the Thin Man","releaseDate":-1041984000000,"language":"en","type":"Movie","_key":"59500"} +{"label":"Alan Marshal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/765\/4be2c0e9017a3c35bb000765\/alan-marshal-profile.jpg","version":29,"birthday":"-1922576400000","id":"78854","lastModified":"1301901526000","name":"Alan Marshal","type":"Person","_key":"59501"} +{"label":"Teddy Hart","version":19,"id":"131129","lastModified":"1301902686000","name":"Teddy Hart","type":"Person","_key":"59502"} +{"label":"William Law","version":15,"id":"149114","lastModified":"1301903100000","name":"William Law","type":"Person","_key":"59503"} +{"label":"Another Thin Man","description":"An explosives manufacturer suspects a young man is out to kill him. He calls in Nick and Nora (with new baby) to sort things out.","id":"14589","runtime":102,"imdbId":"tt0031047","version":106,"lastModified":"1301908003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/075\/4bc943bc017a3c57fe01d075\/another-thin-man-mid.jpg","studio":"Loew's","genre":"Comedy","title":"Another Thin Man","releaseDate":-950659200000,"language":"en","type":"Movie","_key":"59504"} +{"label":"Tom Neal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/180\/4c4059cf7b9aa1427f000180\/tom-neal-profile.jpg","version":27,"birthday":"-1764896400000","id":"85993","birthplace":"Evanston, Illinois, USA","lastModified":"1301901462000","name":"Tom Neal","type":"Person","_key":"59505"} +{"label":"Phyllis Gordon","version":15,"id":"149105","lastModified":"1301902952000","name":"Phyllis Gordon","type":"Person","_key":"59506"} +{"label":"Don Costello","version":26,"id":"120749","lastModified":"1301902735000","name":"Don Costello","type":"Person","_key":"59507"} +{"label":"William A. Poulsen","version":15,"id":"149106","lastModified":"1301902903000","name":"William A. Poulsen","type":"Person","_key":"59508"} +{"label":"Muriel Hutchison","version":15,"id":"149107","lastModified":"1301902903000","name":"Muriel Hutchison","type":"Person","_key":"59509"} +{"label":"Shadow of the Thin Man","description":"Nick and Nora are at their wise-cracking best as they investigate murder and racketeering at a local race-track.","id":"14590","runtime":97,"imdbId":"tt0034172","version":81,"lastModified":"1301903831000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4bc943bc017a3c57fe01d07e\/shadow-of-the-thin-man-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Shadow of the Thin Man","releaseDate":-887155200000,"language":"en","type":"Movie","_key":"59510"} +{"label":"Richard Hall","version":15,"id":"149088","lastModified":"1301903101000","name":"Richard Hall","type":"Person","_key":"59511"} +{"label":"Stella Adler","version":15,"id":"149089","lastModified":"1301903107000","name":"Stella Adler","type":"Person","_key":"59512"} +{"label":"Joseph Anthony","version":15,"id":"149091","lastModified":"1301903100000","name":"Joseph Anthony","type":"Person","_key":"59513"} +{"label":"Lou Lubin","version":22,"id":"120554","lastModified":"1301903052000","name":"Lou Lubin","type":"Person","_key":"59514"} +{"label":"Louise Beavers","version":27,"id":"89101","lastModified":"1301902682000","name":"Louise Beavers","type":"Person","_key":"59515"} +{"label":"911 in Plane Site","description":"911: In Plane Site: Director\u2019s Cut is a 2006 documentary that advocates a number of 9\/11 conspiracy theories.[1] Photographs and video footage from that day are presented as evidence that the public was not given all of the facts surrounding the worst terrorist attack in The United States of America's (U.S.) history. ","id":"14591","runtime":52,"imdbId":"tt0454587","homepage":"http:\/\/www.911inplanesite.com\/","version":115,"lastModified":"1301907261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4bc943bd017a3c57fe01d087\/911-in-plane-site-mid.jpg","genre":"Documentary","title":"911 in Plane Site","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59516"} +{"label":"William Lewis","version":20,"id":"109971","lastModified":"1301902583000","name":"William Lewis","type":"Person","_key":"59517"} +{"label":"All You've Got","description":"Two Southern California volleyball teams determined to prove their superiority on the court find out that they're not as different as they previously thought after tragedy strikes close to home in director Neema Barnette's affectionate sports drama. The Madonnas and the Phantoms are two volleyball teams with a longstanding grudge. With a bitter rivalry that frequently spills off of the court and into the streets, the Madonnas and the Phantoms appear to have nothing in common until fate forces th","id":"14593","runtime":95,"imdbId":"tt0458465","version":121,"lastModified":"1301907123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e4\/4c87dfd65e73d66b5b0002e4\/all-you-ve-got-mid.jpg","genre":"Comedy","title":"All You've Got","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59518"} +{"label":"Sarah Wright","version":18,"id":"131723","lastModified":"1301902581000","name":"Sarah Wright","type":"Person","_key":"59519"} +{"label":"Adrienne Bailon","version":20,"id":"131724","lastModified":"1301902581000","name":"Adrienne Bailon","type":"Person","_key":"59520"} +{"label":"Ciara","version":25,"id":"131722","lastModified":"1301902581000","name":"Ciara","type":"Person","_key":"59521"} +{"label":"The Thin Man Goes Home","description":"Nick and Nora go on holiday, and end up involved in a murder.","id":"14594","runtime":100,"imdbId":"tt0037365","trailer":"http:\/\/www.youtube.com\/watch?v=q3Ug9rTPPD4","version":112,"lastModified":"1301905973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/090\/4bc943be017a3c57fe01d090\/the-thin-man-goes-home-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Mystery","title":"The Thin Man Goes Home","releaseDate":-791596800000,"language":"en","type":"Movie","_key":"59522"} +{"label":"Lucile Watson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bd7\/4be47cb2017a3c35b4000bd7\/lucile-watson-profile.jpg","version":35,"id":"83260","lastModified":"1301901530000","name":"Lucile Watson","type":"Person","_key":"59523"} +{"label":"Gloria DeHaven","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/acf\/4bfd8228017a3c702b000acf\/gloria-dehaven-profile.jpg","version":22,"id":"120306","lastModified":"1301902311000","name":"Gloria DeHaven","type":"Person","_key":"59524"} +{"label":"Helen Vinson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f7c\/4be99279017a3c35b5000f7c\/helen-vinson-profile.jpg","version":24,"id":"99349","lastModified":"1301901805000","name":"Helen Vinson","type":"Person","_key":"59525"} +{"label":"Song of the Thin Man","description":"Nick and Nora investigate a murder on a gambling cruise.","id":"14595","runtime":86,"imdbId":"tt0039853","version":95,"lastModified":"1301905351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/099\/4bc943be017a3c57fe01d099\/song-of-the-thin-man-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Song of the Thin Man","releaseDate":-705196800000,"language":"en","type":"Movie","_key":"59526"} +{"label":"Edward Buzzell","version":28,"id":"77101","lastModified":"1301902193000","name":"Edward Buzzell","type":"Person","_key":"59527"} +{"label":"Patricia Morison","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47e\/4bfaa1cf017a3c702b00047e\/patricia-morison-profile.jpg","version":27,"id":"86104","lastModified":"1301902502000","name":"Patricia Morison","type":"Person","_key":"59528"} +{"label":"Ralph Morgan","version":22,"id":"103449","lastModified":"1301902394000","name":"Ralph Morgan","type":"Person","_key":"59529"} +{"label":"Bess Flowers","version":22,"id":"121323","lastModified":"1301902989000","name":"Bess Flowers","type":"Person","_key":"59530"} +{"label":"Anita and Me","description":"Meena, a 12-year-old living in a mining village in the English Midlands in 1972, is the daughter of Indian parents who've come to England to give her a better life. This idyllic existence is upset by the arrival in the village of Anita Rutter and her dysfunctional family.","id":"14596","runtime":93,"imdbId":"tt0303661","version":307,"lastModified":"1301906889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a2\/4bc943bf017a3c57fe01d0a2\/anita-and-me-mid.jpg","genre":"Comedy","title":"Anita and Me","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59531"} +{"label":"Lassie","description":"A family in financial crisis is forced to sell Lassie, their beloved dog. Hundreds of miles away from her true family, Lassie escapes and sets out on a journey home.","id":"14597","runtime":100,"imdbId":"tt0431213","version":194,"lastModified":"1301906668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4bc943c0017a3c57fe01d0ab\/lassie-mid.jpg","studio":"Odyssey Entertainmant","genre":"Adventure","title":"Lassie","releaseDate":1134691200000,"language":"en","type":"Movie","_key":"59532"} +{"label":"Jonathan Mason","version":19,"id":"77102","lastModified":"1301902069000","name":"Jonathan Mason","type":"Person","_key":"59533"} +{"label":"Hester Odgers","version":19,"id":"77103","lastModified":"1301902069000","name":"Hester Odgers","type":"Person","_key":"59534"} +{"label":"Charles Sturridge","version":26,"id":"77104","lastModified":"1301901715000","name":"Charles Sturridge","type":"Person","_key":"59535"} +{"label":"The List","description":"A sudden death tied to a list from the past leads to unimaginable evil. Fresh out of law school and full of hope for the future, Renny Jacobson is stunned by his father's sudden death--and then by the terms of the will: the elder Jacobson has left the bulk of his estate to charity.","id":"14600","runtime":105,"imdbId":"tt0762115","version":187,"lastModified":"1301905990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cf\/4bc943c6017a3c57fe01d0cf\/the-list-mid.jpg","studio":"Level Path Productions","genre":"Mystery","title":"The List","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59536"} +{"label":"Gary Wheeler","version":21,"id":"86932","lastModified":"1301902244000","name":"Gary Wheeler","type":"Person","_key":"59537"} +{"label":"Chuck Carrington","version":19,"id":"86936","lastModified":"1301902464000","name":"Chuck Carrington","type":"Person","_key":"59538"} +{"label":"Elizabeth Omilami","version":20,"id":"86937","lastModified":"1301902634000","name":"Elizabeth Omilami","type":"Person","_key":"59539"} +{"label":"Frank Hoyt Taylor","version":22,"id":"77522","lastModified":"1301902201000","name":"Frank Hoyt Taylor","type":"Person","_key":"59540"} +{"label":"Tim Ware","version":20,"id":"86938","lastModified":"1301902320000","name":"Tim Ware","type":"Person","_key":"59541"} +{"label":"Kuffs","description":"George Kuffs didn't finish high-school, just lost his job and his girlfriend who still is in college is pregnant. Since he can't see how he can support her, he thinks she is better off without him. So he visits his elder brother, Brad, to squeze him for a loan so he can go to Brazil. Unfortunately Brad is killed and George is suddenly the owner of Brad's \"patrol special\" district.","id":"14603","runtime":102,"imdbId":"tt0104647","version":130,"lastModified":"1301903810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d8\/4bc943c7017a3c57fe01d0d8\/kuffs-mid.jpg","genre":"Action","title":"Kuffs","releaseDate":695001600000,"language":"en","type":"Movie","_key":"59542"} +{"label":"Hold That Ghost","description":"Two bumbling service station attendants are left as the sole beneficiaries in a gangster's will. Their trip to claim their fortune is sidetracked when they are stranded in a haunted house along with several other strangers.","id":"14604","runtime":86,"imdbId":"tt0033723","version":49,"lastModified":"1301907319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4bc943c7017a3c57fe01d0e6\/hold-that-ghost-mid.jpg","genre":"Comedy","title":"Hold That Ghost","releaseDate":-896227200000,"language":"en","type":"Movie","_key":"59543"} +{"label":"The Ghost Breakers","description":"Mary Carter inherits her family's ancestral home, located on a small island off Cuba, and, despite warnings and death threats, decides to take possesion of the reputedly haunted castle. She is joined by radio broadcaster Larry Lawrence who, believing he has killed a mob gunsel, flees New York with his butler, Alex. Once on the island the threesome enter the eerie castle and after viewing the ghost of one of Mary's ancestors and fighting off a menacing zombie, they find the key to the castle's tr","id":"14605","runtime":85,"imdbId":"tt0032520","version":58,"lastModified":"1301908303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ef\/4bc943c8017a3c57fe01d0ef\/the-ghost-breakers-mid.jpg","genre":"Comedy","title":"The Ghost Breakers","releaseDate":-931910400000,"language":"en","type":"Movie","_key":"59544"} +{"label":"The Baker","description":"Milo (Damian Lewis) is a professional hit man living on the edge. When failing to fulfil a contract for the first time, Milo escapes the city to avoid the wrath of his employers. Hiding out in a remote rural village, the locals mistake him for the new baker.","id":"14606","runtime":86,"imdbId":"tt0783234","trailer":"http:\/\/www.youtube.com\/watch?v=CH801Ebtf8o","version":143,"lastModified":"1301903330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/100\/4bc943c9017a3c57fe01d100\/the-baker-mid.jpg","genre":"Comedy","title":"The Baker","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"59545"} +{"label":"Gareth Lewis","version":20,"id":"77112","lastModified":"1301901833000","name":"Gareth Lewis","type":"Person","_key":"59546"} +{"label":"Loaded","description":"A young, wealthy club kid's life spirals downward into an out-of-control world of drugs, sex and violence.","id":"14607","runtime":98,"imdbId":"tt0893406","version":337,"lastModified":"1301903537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/113\/4bc943cb017a3c57fe01d113\/loaded-mid.jpg","genre":"Action","title":"Loaded","releaseDate":1206403200000,"language":"en","type":"Movie","_key":"59547"} +{"label":"Alan Pao","version":21,"id":"77107","lastModified":"1301901535000","name":"Alan Pao","type":"Person","_key":"59548"} +{"label":"Corey Large","version":21,"id":"77110","lastModified":"1301901609000","name":"Corey Large","type":"Person","_key":"59549"} +{"label":"Nathalie Kelley","version":19,"id":"77111","lastModified":"1301902069000","name":"Nathalie Kelley","type":"Person","_key":"59550"} +{"label":"Partition","description":"Determined to leave the ravages of war behind, 38 year old Gian Singh resigns from the British Indian Army to a quiet life. His world is soon thrown in turmoil, when he suddenly finds himself responsible for the life of a 17 year old girl, traumatized by the events that separated her from her family.","id":"14608","runtime":116,"imdbId":"tt0213985","trailer":"http:\/\/www.youtube.com\/watch?v=bawkwiZGSTc","version":124,"lastModified":"1301904082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11d\/4bc943cc017a3c57fe01d11d\/partition-mid.jpg","studio":"Astral Media","genre":"Drama","title":"Partition","releaseDate":1170374400000,"language":"en","type":"Movie","_key":"59551"} +{"label":"Madhur Jaffrey","version":13,"id":"195399","lastModified":"1301903951000","name":"Madhur Jaffrey","type":"Person","_key":"59552"} +{"label":"Chenier Hundal","version":13,"id":"205885","lastModified":"1301903830000","name":"Chenier Hundal","type":"Person","_key":"59553"} +{"label":"Vic Sarin","version":28,"id":"87121","lastModified":"1301901708000","name":"Vic Sarin","type":"Person","_key":"59554"} +{"label":"Ultimate Avengers","description":"When a nuclear missile was fired at Washington in 1945, Captain America managed to detonate it in the upper atmosphere. But then he fell miles into the icy depths of the North Atlantic, where he remained lost for over sixty years. But now, with the world facing the very same evil, Captain America must rise again as our last hope for survival.","id":"14609","runtime":72,"imdbId":"tt0491703","version":186,"lastModified":"1301906795000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/126\/4bc943cc017a3c57fe01d126\/ultimate-avengers-mid.jpg","studio":"Marvel Studios","genre":"Animation","title":"Ultimate Avengers","releaseDate":1140480000000,"language":"en","type":"Movie","_key":"59555"} +{"label":"Curt Geda","version":24,"id":"34920","lastModified":"1301901560000","name":"Curt Geda","type":"Person","_key":"59556"} +{"label":"Steven E. Gordon","version":24,"id":"87169","lastModified":"1301902129000","name":"Steven E. Gordon","type":"Person","_key":"59557"} +{"label":"Bob Richardson","version":21,"id":"87170","lastModified":"1301902129000","name":"Bob Richardson","type":"Person","_key":"59558"} +{"label":"Justin Gross","version":26,"id":"87174","lastModified":"1301902305000","name":"Justin Gross","type":"Person","_key":"59559"} +{"label":"Nan McNamara","version":26,"id":"87175","lastModified":"1301902647000","name":"Nan McNamara","type":"Person","_key":"59560"} +{"label":"David Boat","version":26,"id":"87176","lastModified":"1301902647000","name":"David Boat","type":"Person","_key":"59561"} +{"label":"Ultimate Avengers II","description":"Mysterious Wakanda lies in the darkest heart of Africa, unknown to most of the world. An isolated land hidden behind closed borders, fiercely protected by its young king - the Black Panther. But when brutal alien invaders attack, the threat leaves the Black Panther with no option but to go against the sacred decrees of his people and ask for help from outsiders.","id":"14611","runtime":73,"imdbId":"tt0803093","version":181,"lastModified":"1301907766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12f\/4bc943d0017a3c57fe01d12f\/ultimate-avengers-ii-mid.jpg","studio":"Marvel Enterprises","genre":"Action","title":"Ultimate Avengers II","releaseDate":1154995200000,"language":"en","type":"Movie","_key":"59562"} +{"label":"Will Meugniot","version":23,"id":"87177","lastModified":"1301902069000","name":"Will Meugniot","type":"Person","_key":"59563"} +{"label":"Dick Sebast","version":36,"id":"35269","lastModified":"1301901316000","name":"Dick Sebast","type":"Person","_key":"59564"} +{"label":"Candleshoe","description":"Candleshoe is a 1977 Walt Disney Productions live action movie based on the Michael Innes novel Christmas at Candleshoe and starring Jodie Foster, Helen Hayes in her last screen appearance, David Niven and Leo McKern.","id":"14612","runtime":101,"imdbId":"tt0075807","version":98,"lastModified":"1301904728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bc943d1017a3c57fe01d138\/candleshoe-mid.jpg","studio":"Walt Disney Productions","genre":"Family","title":"Candleshoe","releaseDate":251078400000,"language":"en","type":"Movie","_key":"59565"} +{"label":"Next Avengers: Heroes of Tomorrow","description":"The children of the Avengers hone their powers and go head to head with the very enemy responsible for their parents' demise.","id":"14613","runtime":78,"imdbId":"tt1259998","version":160,"lastModified":"1301905899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ed\/4d675abe5e73d66a670016ed\/next-avengers-heroes-of-tomorrow-mid.jpg","studio":"Marvel Studios","genre":"Animation","title":"Next Avengers: Heroes of Tomorrow","releaseDate":1220313600000,"language":"en","type":"Movie","_key":"59566"} +{"label":"Jay Oliva","version":20,"id":"105643","lastModified":"1301902836000","name":"Jay Oliva","type":"Person","_key":"59567"} +{"label":"Noah Crawford","version":18,"id":"141530","lastModified":"1301901144000","name":"Noah Crawford","type":"Person","_key":"59568"} +{"label":"Brenna O'Brien","version":24,"id":"87736","lastModified":"1301902129000","name":"Brenna O'Brien","type":"Person","_key":"59569"} +{"label":"Aidan Drummond","version":12,"id":"215395","lastModified":"1301903719000","name":"Aidan Drummond","type":"Person","_key":"59570"} +{"label":"Dempsey Pappion","version":13,"id":"167756","lastModified":"1301903553000","name":"Dempsey Pappion","type":"Person","_key":"59571"} +{"label":"Adrian Petriw","version":18,"id":"101247","lastModified":"1301903050000","name":"Adrian Petriw","type":"Person","_key":"59572"} +{"label":"Shawn Macdonald","version":12,"id":"220787","lastModified":"1301903662000","name":"Shawn Macdonald","type":"Person","_key":"59573"} +{"label":"Ken Kramer","version":17,"id":"106950","lastModified":"1301902303000","name":"Ken Kramer","type":"Person","_key":"59574"} +{"label":"Churchill: The Hollywood Years","description":"A group of American executives making a film about World War II decide that since their lead is rather unglamorous, they will draft in an American G.I. to play the part of Winston Churchill. Their take on the war depicts a handsome Churchill falling in love with Princess Elizabeth, who is herself involved in the war as an undercover agent. ","id":"14614","runtime":84,"imdbId":"tt0359078","version":96,"lastModified":"1301907253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/153\/4bc943d4017a3c57fe01d153\/churchill-the-hollywood-years-mid.jpg","genre":"Comedy","title":"Churchill: The Hollywood Years","releaseDate":1102032000000,"language":"en","type":"Movie","_key":"59575"} +{"label":"Jon Culshaw","version":21,"id":"77113","lastModified":"1301902177000","name":"Jon Culshaw","type":"Person","_key":"59576"} +{"label":"Fury","description":"When a prisoner barely survives a lynch mob attack and is presumed dead, he vindictively decides to frame the mob for his murder.","id":"14615","runtime":90,"imdbId":"tt0027652","version":97,"lastModified":"1301903330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15c\/4bc943d4017a3c57fe01d15c\/fury-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Fury","releaseDate":-1060128000000,"language":"en","type":"Movie","_key":"59577"} +{"label":"Walter Abel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e0\/4cb7179b7b9aa138d60005e0\/walter-abel-profile.jpg","version":29,"id":"77114","lastModified":"1301901470000","name":"Walter Abel","type":"Person","_key":"59578"} +{"label":"Edward Ellis","version":21,"id":"77115","lastModified":"1301901806000","name":"Edward Ellis","type":"Person","_key":"59579"} +{"label":"All the Good Ones Are Married","description":"No overview found.","id":"14617","runtime":0,"imdbId":"tt1065291","version":481,"lastModified":"1301908003000","title":"All the Good Ones Are Married","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59580"} +{"label":"Bottoms Up","description":"Captivated by the posh Hollywood scene, bartender Owen Peadman (Jason Mewes) travels from the Midwest to take part in a drink-serving contest. But he fails to win the jackpot and winds up working for a gossip show instead. Now, to uncover the latest juicy secret on super celebrity Hayden Field, Owen buddies up to Field's friend Lisa (Paris Hilton) and gets not only the inside scoop, but also fame,","id":"14619","runtime":0,"imdbId":"tt0433349","version":147,"lastModified":"1301905373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16e\/4bc943d6017a3c57fe01d16e\/bottoms-up-mid.jpg","genre":"Comedy","title":"Bottoms Up","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59581"} +{"label":"Brian Hallisay","version":12,"id":"207396","lastModified":"1301903811000","name":"Brian Hallisay","type":"Person","_key":"59582"} +{"label":"The Butterfly Effect 2","description":"After his girlfriend, Julie (Erica Durance), and two best friends are killed in a tragic auto accident, Nick (Eric Lively) struggles to cope with his loss and grief. Suffering from migraine-like seizures, Nick soon discovers that he has the power to change the past via his memories. However, his time-traveling attempts to alter the past and save his one true love have unexpected and dire consequen","id":"14620","runtime":92,"imdbId":"tt0457297","version":137,"lastModified":"1301902122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/177\/4bc943d7017a3c57fe01d177\/the-butterfly-effect-2-mid.jpg","studio":"BenderSpink","genre":"Drama","title":"The Butterfly Effect 2","releaseDate":1160438400000,"language":"en","type":"Movie","_key":"59583"} +{"label":"Andrew Airlie","version":25,"id":"41436","lastModified":"1301901701000","name":"Andrew Airlie","type":"Person","_key":"59584"} +{"label":"Lindsay Maxwell","version":27,"id":"53118","lastModified":"1301901565000","name":"Lindsay Maxwell","type":"Person","_key":"59585"} +{"label":"Lean On Me","description":"When principal Joe Clark (Morgan Freeman) takes over decaying Eastside High School, he's faced with students wearing gang colors and graffiti-covered walls. Determined to do anything he must to turn the school around, he expels suspected drug dealers, padlocks doors and demands effort and results from students, staff and parents. Autocratic to a fault, this real-life educator put it all on the lin","id":"14621","runtime":108,"imdbId":"tt0097722","version":149,"lastModified":"1301905054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/180\/4bc943d8017a3c57fe01d180\/lean-on-me-mid.jpg","genre":"Drama","title":"Lean On Me","releaseDate":604886400000,"language":"en","type":"Movie","_key":"59586"} +{"label":"Thunderbirds","description":"Dangerous missions are the bread and butter of the Thunderbirds, a high-tech secret force employed by the government. Led by Jeff Tracy (Bill Paxton), the Thunderbirds are at the top of their game, but their nemesis, The Hood (Ben Kingsley), has landed on their island and is attempting a coup by using the team's rescue vehicles. He'll soon discover that the Thunderbirds won't go down.","id":"14623","runtime":95,"imdbId":"tt0167456","trailer":"http:\/\/www.youtube.com\/watch?v=lGOwT8goZZY","homepage":"http:\/\/www.thunderbirdsmovie.com","version":222,"lastModified":"1301904288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19a\/4bc943e1017a3c57fe01d19a\/thunderbirds-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Thunderbirds","releaseDate":1091145600000,"language":"en","type":"Movie","_key":"59587"} +{"label":"Alex Barringer","version":16,"id":"141349","lastModified":"1301902415000","name":"Alex Barringer","type":"Person","_key":"59588"} +{"label":"Genie Francis","version":25,"id":"82345","lastModified":"1301902522000","name":"Genie Francis","type":"Person","_key":"59589"} +{"label":"Philip Winchester","version":21,"id":"123723","lastModified":"1301902415000","name":"Philip Winchester","type":"Person","_key":"59590"} +{"label":"Kyle Herbert","version":16,"id":"141350","lastModified":"1301902415000","name":"Kyle Herbert","type":"Person","_key":"59591"} +{"label":"Dominic Colenso","version":16,"id":"141351","lastModified":"1301902415000","name":"Dominic Colenso","type":"Person","_key":"59592"} +{"label":"Ben Torgersen","version":16,"id":"141352","lastModified":"1301902415000","name":"Ben Torgersen","type":"Person","_key":"59593"} +{"label":"Johannes Zadrozny","version":16,"id":"141353","lastModified":"1301902415000","name":"Johannes Zadrozny","type":"Person","_key":"59594"} +{"label":"Nicola Walker","version":16,"id":"141354","lastModified":"1301902415000","name":"Nicola Walker","type":"Person","_key":"59595"} +{"label":"Bhasker Patel","version":24,"id":"119792","lastModified":"1301903046000","name":"Bhasker Patel","type":"Person","_key":"59596"} +{"label":"Rose Keegan","version":16,"id":"141355","lastModified":"1301902472000","name":"Rose Keegan","type":"Person","_key":"59597"} +{"label":"Stewart Howson","version":16,"id":"141356","lastModified":"1301902466000","name":"Stewart Howson","type":"Person","_key":"59598"} +{"label":"Mark Nelmes","version":17,"id":"141357","lastModified":"1301902545000","name":"Mark Nelmes","type":"Person","_key":"59599"} +{"label":"Julian Spencer","version":16,"id":"141358","lastModified":"1301902498000","name":"Julian Spencer","type":"Person","_key":"59600"} +{"label":"Andy Smart","version":37,"id":"40736","lastModified":"1301901637000","name":"Andy Smart","type":"Person","_key":"59601"} +{"label":"The Ultimate Gift","description":"When his wealthy grandfather finally dies, Jason Stevens fully expects to benefit when it comes to the reading of the will. But instead of a sizable inheritance, Jason receives a test, a series of tasks he must complete before he can get any money. Abigail Breslin and Lee Meriwether also star in this coming-of-age drama based on the novel by Jim Stovall.","id":"14624","runtime":114,"imdbId":"tt0482629","version":218,"lastModified":"1301903397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c77\/4d799d727b9aa14cbc000c77\/the-ultimate-gift-mid.jpg","studio":"The Ultimate Gift LLC","genre":"Drama","title":"The Ultimate Gift","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"59602"} +{"label":"Michael O. Sajbel","version":24,"id":"87178","lastModified":"1301901829000","name":"Michael O. Sajbel","type":"Person","_key":"59603"} +{"label":"Beau Travail","description":"No overview found.","id":"14626","runtime":90,"imdbId":"tt0209933","version":113,"lastModified":"1301903892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b5\/4bc943e5017a3c57fe01d1b5\/beau-travail-mid.jpg","studio":"La Sept-Arte","genre":"Drama","title":"Beau Travail","releaseDate":936403200000,"language":"en","type":"Movie","_key":"59604"} +{"label":"Crooked Earth","description":"No overview found.","id":"14627","runtime":0,"imdbId":"tt0251032","version":64,"lastModified":"1301908608000","title":"Crooked Earth","releaseDate":998524800000,"language":"en","type":"Movie","_key":"59605"} +{"label":"Fletch Lives","description":"Fletch, a newspaper reporter visits , Louisiana when he inherits a mansion there and finds some strange occurrences Is it all part of a criminal enterprise and a good story?","id":"14628","runtime":95,"imdbId":"tt0097366","trailer":"http:\/\/www.youtube.com\/watch?v=y-ZEvjJBLvM","version":191,"lastModified":"1301902545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cb\/4bc943e7017a3c57fe01d1cb\/fletch-lives-mid.jpg","genre":"Comedy","title":"Fletch Lives","releaseDate":606096000000,"language":"en","type":"Movie","_key":"59606"} +{"label":"Julianne Phillips","version":19,"id":"105962","lastModified":"1301902490000","name":"Julianne Phillips","type":"Person","_key":"59607"} +{"label":"Woman on Top","description":"Brazilian chef Isabella Oliveira moves to San Francisco when her husband, frustrated by her motion sickness, cheats on her.","id":"14629","runtime":92,"imdbId":"tt0206420","version":147,"lastModified":"1301905218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bc943e9017a3c57fe01d1dd\/woman-on-top-mid.jpg","studio":"Fox Searchlight Pictures","genre":"Comedy","title":"Woman on Top","releaseDate":969580800000,"language":"en","type":"Movie","_key":"59608"} +{"label":"Ana Gasteyer","version":25,"birthday":"-84070800000","id":"86267","birthplace":"Washington, D.C., U.S.","lastModified":"1301902319000","name":"Ana Gasteyer","type":"Person","_key":"59609"} +{"label":"Puberty Blues","description":"The mating rituals of two teenage surf chicks from the southern suburbs of Sydney.","id":"14630","runtime":87,"imdbId":"tt0082956","version":56,"lastModified":"1301079164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4cebe3a35e73d6259000071a\/puberty-blues-mid.jpg","studio":"Limelight Productions","title":"Puberty Blues","releaseDate":376790400000,"language":"en","type":"Movie","_key":"59610"} +{"label":"The Work and the Glory II: American Zion","description":"\"The Work and The Glory: American Zion\" sets the story of the fictional Steed family against the historically factual backdrop of the Mormon people's move into the West. Divided by their diverse reactions to a nascent ideology, the Steeds struggle to hold together as the strength of their convictions and their filial bonds are tested. The stirring narrative of the faith that led a persecuted people to Missouri and beyond is one of the most poignant untold tales of American history. It is the acc","id":"14631","runtime":100,"imdbId":"tt0457530","homepage":"http:\/\/www.workandtheglory.com\/","version":72,"lastModified":"1301905829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ea\/4bc943ea017a3c57fe01d1ea\/the-work-and-the-glory-ii-american-zion-mid.jpg","genre":"Drama","title":"The Work and the Glory II: American Zion","releaseDate":1129852800000,"language":"en","type":"Movie","_key":"59611"} +{"label":"South West 9","description":"No overview found.","id":"14632","runtime":90,"imdbId":"tt0297403","version":64,"lastModified":"1301908539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d71\/4d614c2c7b9aa154cf004d71\/south-west-9-mid.jpg","studio":"Fruit Salad Films","title":"South West 9","releaseDate":1002844800000,"language":"en","type":"Movie","_key":"59612"} +{"label":"Ten","description":"No overview found.","id":"14633","runtime":94,"imdbId":"tt0301978","version":122,"lastModified":"1301905468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50e\/4d7e99f95e73d6282800350e\/ten-mid.jpg","studio":"Abbas Kiarostami Productions","genre":"Drama","title":"Ten","releaseDate":1032307200000,"language":"en","type":"Movie","_key":"59613"} +{"label":"Abbas Kiarostami","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/289\/4cb668a55e73d67781000289\/abbas-kiarostami-profile.jpg","version":42,"id":"119294","lastModified":"1301901531000","name":"Abbas Kiarostami","type":"Person","_key":"59614"} +{"label":"The Stone Angel","description":"The feisty aging Hagar Shipley has lived an unconventional life. Her rebellious heart has always ruled and her choices have put her at odds with family and friends. Faced with her own mortality, and desperate to find solace, she goes on the run. In both the past and the present, she is forced to come to terms with the pain and pleasure, the disappointments and the exhilarations of her life.","id":"14634","runtime":0,"imdbId":"tt0847897","version":144,"lastModified":"1301905393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e2\/4c52dc1f7b9aa13d4f0003e2\/the-stone-angel-mid.jpg","genre":"Drama","title":"The Stone Angel","releaseDate":1191974400000,"language":"en","type":"Movie","_key":"59615"} +{"label":"Christine Horne","version":20,"id":"43310","lastModified":"1301902069000","name":"Christine Horne","type":"Person","_key":"59616"} +{"label":"Wings Hauser","version":32,"id":"61153","lastModified":"1301901525000","name":"Wings Hauser","type":"Person","_key":"59617"} +{"label":"The Rookie","description":"Jim Morris never made it out of the minor leagues before a shoulder injury ended his pitching career twelve years ago. Now a married-with-children high-school chemistry teacher and baseball coach in Texas, Jim's team makes a deal with him: if they win the district championship, Jim will try out with a major-league organization. The bet proves incentive enough for the team, and they go from worst to first, making it to state for the first time in the history of the school. Jim, forced to live up ","id":"14635","runtime":127,"imdbId":"tt0265662","version":163,"lastModified":"1301903611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eca\/4cf17ece5e73d61929000eca\/the-rookie-mid.jpg","studio":"Walt Disney Pictures","genre":"Drama","title":"The Rookie","releaseDate":1017100800000,"language":"en","type":"Movie","_key":"59618"} +{"label":"Angus T. Jones","version":31,"id":"77117","lastModified":"1301901774000","name":"Angus T. Jones","type":"Person","_key":"59619"} +{"label":"The Condemned","description":"Jack Conrad is awaiting the death penalty in a corrupt Central American prison. He is \"purchased\" by a wealthy television producer and taken to a desolate island where he must fight to the death against nine other condemned killers from all corners of the world, with freedom going to the sole survivor.","id":"14636","runtime":113,"imdbId":"tt0443473","version":204,"lastModified":"1301907568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/219\/4bc943f2017a3c57fe01d219\/the-condemned-mid.jpg","studio":"WWE","genre":"Action","title":"The Condemned","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"59620"} +{"label":"Scott Wiper","version":21,"id":"83985","lastModified":"1301901855000","name":"Scott Wiper","type":"Person","_key":"59621"} +{"label":"Nothing But the Truth","description":"In Washington D.C. a female newspaper reporter outs a CIA agent and is imprisoned for refusing to reveal her source.","id":"14637","runtime":108,"imdbId":"tt1073241","trailer":"http:\/\/www.youtube.com\/watch?v=1718","homepage":"http:\/\/www.nothingbutthetruthfilm.com\/","version":229,"lastModified":"1301902702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22a\/4bc943f3017a3c57fe01d22a\/nothing-but-the-truth-mid.jpg","studio":"Battleplan Productions","genre":"Drama","title":"Nothing But the Truth","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"59622"} +{"label":"The Killers","description":"Hit men kill an unresisting victim, and investigator Reardon uncovers his past involvement with beautiful, deadly Kitty Collins.","id":"14638","runtime":103,"imdbId":"tt0038669","trailer":"http:\/\/www.youtube.com\/watch?v=1R7tzpi9aCc","version":106,"lastModified":"1301902783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/237\/4bc943f4017a3c57fe01d237\/the-killers-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"The Killers","releaseDate":-736732800000,"language":"en","tagline":"TENSE! TAUT! TERRIFIC! Told the untamed Hemingway way!","type":"Movie","_key":"59623"} +{"label":"Jack Lambert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e1\/4c5b0bec7b9aa151f60005e1\/jack-lambert-profile.jpg","version":26,"id":"103054","lastModified":"1301902771000","name":"Jack Lambert","type":"Person","_key":"59624"} +{"label":"The Order of Myths","description":"No overview found.","id":"14639","runtime":97,"imdbId":"tt1157694","homepage":"http:\/\/www.theorderofmyths.com","version":111,"lastModified":"1301906253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4bc943f5017a3c57fe01d240\/the-order-of-myths-mid.jpg","genre":"Documentary","title":"The Order of Myths","releaseDate":1215216000000,"language":"en","type":"Movie","_key":"59625"} +{"label":"National Lampoon's Stoned Age","description":"A philosophical caveman, Ishbo, yearns for more out of life than sticks, stones and raw meat. Determined to single-handedly, advance the human race, Ishbo continually irritates his fellow Neanderthals with ridiculous inventions like the toothbrush, the spoon, and pants.","id":"14641","runtime":88,"imdbId":"tt0484207","version":102,"lastModified":"1301908002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/257\/4bc943f7017a3c57fe01d257\/national-lampoon-s-stoned-age-mid.jpg","studio":"Burnt Orange Productions","genre":"Comedy","title":"National Lampoon's Stoned Age","releaseDate":1215734400000,"language":"en","type":"Movie","_key":"59626"} +{"label":"20 Years After","description":"In the middle of nowhere, 20 years after an apocalyptic terrorist event that obliterated the face of the world!","id":"14642","runtime":95,"imdbId":"tt0825279","version":88,"lastModified":"1301904945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/260\/4bc943f7017a3c57fe01d260\/20-years-after-mid.jpg","studio":"Kooroc Films","genre":"Drama","title":"20 Years After","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"59627"} +{"label":"Jim Torres","version":16,"id":"106021","lastModified":"1301902244000","name":"Jim Torres","type":"Person","_key":"59628"} +{"label":"Boot Camp","description":"A group of troubled teens are sent to a rehabilitation program housed in a remote camp on the island of Fiji. What their parents believe is a state-of-the-art deluxe institution in a beautiful natural environment turns out to be a prison-like boot camp where they are abused and brainwashed.","id":"14643","runtime":99,"imdbId":"tt0870204","version":322,"lastModified":"1301904797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/265\/4bc943f7017a3c57fe01d265\/boot-camp-mid.jpg","genre":"Thriller","title":"Boot Camp","releaseDate":1210204800000,"language":"en","type":"Movie","_key":"59629"} +{"label":"Boudu","description":"No overview found.","id":"14644","runtime":104,"imdbId":"tt0423877","version":62,"lastModified":"1301907168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26a\/4bc943f8017a3c57fe01d26a\/boudu-mid.jpg","genre":"Comedy","title":"Boudu","releaseDate":1110326400000,"language":"en","type":"Movie","_key":"59630"} +{"label":"Le P\u00e8re No\u00ebl est une ordure","description":"La permanence parisienne SOS d\u00e9tresse-amiti\u00e9 est perturb\u00e9e le soir de No\u00ebl par l'arriv\u00e9e de personnage marginaux farfelus qui provoquent des catastrophes en cha\u00eene.","id":"14645","runtime":88,"imdbId":"tt0084555","version":58,"lastModified":"1301905267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/273\/4bc943f8017a3c57fe01d273\/le-pere-noel-est-une-ordure-mid.jpg","genre":"Comedy","title":"Le P\u00e8re No\u00ebl est une ordure","releaseDate":399081600000,"language":"en","type":"Movie","_key":"59631"} +{"label":"Bruno Moynot","version":20,"id":"82792","lastModified":"1301902634000","name":"Bruno Moynot","type":"Person","_key":"59632"} +{"label":"Martin Lamotte","version":27,"id":"82793","lastModified":"1301902393000","name":"Martin Lamotte","type":"Person","_key":"59633"} +{"label":"Un air de famille","description":"An upper middle-class French family celebrates a birthday in a restaurant. In one evening and during one meal, family history, tensions, collective and separate grudges, delights, and memories both clash and coalesce.","id":"14646","runtime":0,"imdbId":"tt0118015","version":104,"lastModified":"1301414397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/278\/4bc943f8017a3c57fe01d278\/un-air-de-famille-mid.jpg","genre":"Comedy","title":"Un air de famille","releaseDate":847238400000,"language":"en","type":"Movie","_key":"59634"} +{"label":"Podium","description":"No overview found.","id":"14648","runtime":95,"imdbId":"tt0354836","version":227,"lastModified":"1301907169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/286\/4bc943fb017a3c57fe01d286\/podium-mid.jpg","genre":"Comedy","title":"Podium","releaseDate":1076457600000,"language":"en","type":"Movie","_key":"59635"} +{"label":"Yann Moix","version":19,"id":"112197","lastModified":"1301902816000","name":"Yann Moix","type":"Person","_key":"59636"} +{"label":"Pars vite et reviens tard","description":"In Paris, many citizens go to the precinct after the doors of their apartments have been sprayed with a 4 and the letters \"clt\". When a dweller is found mysteriously dead in his apartment, Detective Jean-Baptiste Adamsberg and his partner Danglard investigate the case and discover that plague may have killed the victim. Meanwhile, in the center of Paris, the former actor Joss Le Guern survives reading advertisements in a square for the public; when he receives weird messages about an outbreak of","id":"14649","runtime":116,"imdbId":"tt0446707","version":59,"lastModified":"1301415075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/293\/4bc943fd017a3c57fe01d293\/pars-vite-et-reviens-tard-mid.jpg","genre":"Crime","title":"Pars vite et reviens tard","releaseDate":1169596800000,"language":"en","type":"Movie","_key":"59637"} +{"label":"Lucas Belvaux","version":20,"id":"136858","lastModified":"1301903038000","name":"Lucas Belvaux","type":"Person","_key":"59638"} +{"label":"Olivier Gourmet","version":21,"id":"136859","lastModified":"1301902731000","name":"Olivier Gourmet","type":"Person","_key":"59639"} +{"label":"Michou d'Auber","description":"No overview found.","id":"14650","runtime":124,"imdbId":"tt0478705","version":53,"lastModified":"1301419027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/298\/4bc943fd017a3c57fe01d298\/michou-d-auber-mid.jpg","genre":"Drama","title":"Michou d'Auber","releaseDate":1172620800000,"language":"en","type":"Movie","_key":"59640"} +{"label":"Ma femme est une actrice","description":"Yvan est journaliste sportif et sa femme Charlotte com\u00e9dienne. Quand un ami fait remarquer \u00e0 Yvan que vivre avec une actrice, c'est partager la vie d'une femme que d'autres hommes embrassent et que les spectateurs d\u00e9shabillent du regard, il se met \u00e0 douter.","id":"14651","runtime":95,"imdbId":"tt0269499","version":44,"lastModified":"1301907256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4bc943fe017a3c57fe01d2a1\/ma-femme-est-une-actrice-mid.jpg","studio":"Path\u00e9 Renn Productions","genre":"Drama","title":"Ma femme est une actrice","releaseDate":979430400000,"language":"en","type":"Movie","_key":"59641"} +{"label":"Bon voyage","description":"Isabelle Adjani and Gerard Depardieu star in director Jean-Paul Rappenau's amusing farce set on the eve of World War II, which follows the intersecting lives of four Parisians as they cope with the impending invasion of their city by German forces. As the French government braces for impact, the lives of a young writer, a vain movie star, a French politician and a young scientist are examined as they attempt to deal with war and evade German spies.","id":"14652","runtime":114,"imdbId":"tt0310778","version":140,"lastModified":"1301905769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/481\/4d3de0f95e73d622d5000481\/bon-voyage-mid.jpg","genre":"Comedy","title":"Bon voyage","releaseDate":1050451200000,"language":"en","type":"Movie","_key":"59642"} +{"label":"...And They Lived Happily Ever After","description":"Is love compatible with coupledom? And what of freedom and fidelity? These are some of the questions facing two married men.","id":"14653","runtime":100,"imdbId":"tt0381270","version":67,"lastModified":"1301906908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ab\/4bc943fe017a3c57fe01d2ab\/ils-se-marierent-et-eurent-beaucoup-d-enfants-mid.jpg","genre":"Comedy","title":"...And They Lived Happily Ever After","releaseDate":1093392000000,"language":"en","type":"Movie","_key":"59643"} +{"label":"Dans Paris","description":"Paul, depressed from his recent break-up with Anna, returns home to Paris and moves back in with his divorced father and amorous younger brother, Jonathan. While his carefree sibling and doting father try in vain to cheer him up, a visit from his mother seems to be the only thing that brings him joy. When Paul is then left in the house to brood and talk to one of his brother's girlfriends.","id":"14654","runtime":92,"imdbId":"tt0769508","trailer":"http:\/\/www.youtube.com\/watch?v=1148","version":104,"lastModified":"1301905394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b4\/4bc943fe017a3c57fe01d2b4\/dans-paris-mid.jpg","studio":"G\u00e9mini Films","genre":"Drama","title":"Dans Paris","releaseDate":1159920000000,"language":"en","type":"Movie","_key":"59644"} +{"label":"Soul Men","description":"Two former backup soul singers, Louis (Samuel L. Jackson) and Floyd (Bernie Mac) who have not spoken to each other in 20 years reluctantly agree to travel across the country together to a reunion concert to honor their recently deceased lead singer (John Legend). Cleo (Sharon Leal), a beautiful young woman who is believed to be Floyd's daughter, accompanies them as a new singer. ","id":"14655","runtime":103,"imdbId":"tt1111948","version":226,"lastModified":"1301903183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ca\/4bc943ff017a3c57fe01d2ca\/soul-men-mid.jpg","studio":"Dimension Films","genre":"Comedy","title":"Soul Men","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"59645"} +{"label":"Affion Crockett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ae5\/4cf3cc445e73d62382000ae5\/affion-crockett-profile.jpg","version":20,"id":"98394","lastModified":"1301902059000","name":"Affion Crockett","type":"Person","_key":"59646"} +{"label":"John Legend","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aec\/4cf3ccb55e73d62382000aec\/john-legend-profile.jpg","version":27,"id":"113461","lastModified":"1301901277000","name":"John Legend","type":"Person","_key":"59647"} +{"label":"Je suis un assassin","description":"No overview found.","id":"14656","runtime":107,"imdbId":"tt0377080","version":27,"lastModified":"1301908538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cf\/4bc94400017a3c57fe01d2cf\/je-suis-un-assassin-mid.jpg","genre":"Thriller","title":"Je suis un assassin","releaseDate":1092182400000,"language":"en","type":"Movie","_key":"59648"} +{"label":"El Rey de la monta\u00f1a","description":"Quim drives around an isolated rural area through a maze of lanes. When he drives into the woods, he gets lost. Trying to find his direction, he suddenly gets shot from the hill. On his escape from gunshots, he meets Bea, an attractive young woman, who apparently is lost as well. Suspicious of each other, they join forces to run away through the forest, unprotected, cold, hunted...","id":"14657","runtime":90,"imdbId":"tt1085862","version":71,"lastModified":"1301904436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e4\/4bc94402017a3c57fe01d2e4\/el-rey-de-la-montana-mid.jpg","studio":"Telecinco","genre":"Thriller","title":"El Rey de la monta\u00f1a","releaseDate":1216166400000,"language":"en","type":"Movie","_key":"59649"} +{"label":"Thomas Riordan","version":21,"id":"78024","lastModified":"1301901719000","name":"Thomas Riordan","type":"Person","_key":"59650"} +{"label":"Andr\u00e9s Juste","version":21,"id":"78025","lastModified":"1301902069000","name":"Andr\u00e9s Juste","type":"Person","_key":"59651"} +{"label":"Pablo Menasanch","version":21,"id":"78026","lastModified":"1301901865000","name":"Pablo Menasanch","type":"Person","_key":"59652"} +{"label":"Francisco Olmo","version":21,"id":"78027","lastModified":"1301901865000","name":"Francisco Olmo","type":"Person","_key":"59653"} +{"label":"Manuel S\u00e1nchez Ramos","version":21,"id":"78028","lastModified":"1301901865000","name":"Manuel S\u00e1nchez Ramos","type":"Person","_key":"59654"} +{"label":"Gonzalo L\u00f3pez-Gallego","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4ceea5955e73d65316000116\/gonzalo-lopez-gallego-profile.jpg","version":22,"id":"77123","lastModified":"1301901532000","name":"Gonzalo L\u00f3pez-Gallego","type":"Person","_key":"59655"} +{"label":"Circle One","description":"With a fast-paced soundtrack and some of the greatest names in surfing, Circle One is sure to entertain. Check out Ben Bourgeois, Kelly Slater and Danny Fuller as they catch one big wave after another, showing off the moves that have made them famous. Filmed at various locations around the globe, this film delivers some of the best surfing footage around and has been hailed as one of the best surf","id":"14658","runtime":35,"homepage":"http:\/\/www.circle-one.co.uk\/","version":242,"lastModified":"1301906058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ee\/4bc94402017a3c57fe01d2ee\/circle-one-mid.jpg","genre":"Sports Film","title":"Circle One","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"59656"} +{"label":"Mes amis, mes amours","description":"Two divorced fathers Mathias and Antoine, decide to raise their children together in London. Their lives consist of Sophie the pretty florist secretly in love with Antoine, Yvonne who runs the 'bistrot fran\u00e7ais' and has a very maternal outlook on life and Mac Enzie, the boss of Antoine's agency who is completley in love with Yvonne despite the big age difference.","id":"14659","runtime":99,"imdbId":"tt0827192","version":75,"lastModified":"1301904436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f7\/4bc94406017a3c57fe01d2f7\/mes-amis-mes-amours-mid.jpg","studio":"Path\u00e9 Cin\u00e9ma","genre":"Comedy","title":"Mes amis, mes amours","releaseDate":1214956800000,"language":"en","type":"Movie","_key":"59657"} +{"label":"Lorraine Levy","version":21,"id":"77128","lastModified":"1301901865000","name":"Lorraine Levy","type":"Person","_key":"59658"} +{"label":"Pascal Elb\u00e9","version":42,"id":"77131","lastModified":"1301901492000","name":"Pascal Elb\u00e9","type":"Person","_key":"59659"} +{"label":"Solstice","description":"A young girl uncovers a disturbing secret about her twin sister, who committed suicide just a few months before.","id":"14660","runtime":87,"imdbId":"tt0473267","version":156,"lastModified":"1301904383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22e\/4d96dcd17b9aa12efa00122e\/solstice-mid.jpg","studio":"Endgame Entertainment","genre":"Drama","title":"Solstice","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"59660"} +{"label":"Tyler Hoechlin","version":17,"id":"78198","lastModified":"1301901942000","name":"Tyler Hoechlin","type":"Person","_key":"59661"} +{"label":"Lisa Arnold","version":16,"id":"78199","lastModified":"1301902244000","name":"Lisa Arnold","type":"Person","_key":"59662"} +{"label":"Slums of Beverly Hills","description":"Vivian's family are penniless nomads, moving from one cheap flat to another in Beverly Hills so she and her brothers can attend the city's schools. Uncle Mickey sends them money to survive. When Mickey's daughter Rita runs away from an asylum, Vivian's dad offers shelter to her if Mickey will pay for a plush flat. Vivian must babysit her adult cousin, making sure she gets to nursing school and avoids pills and booze. But Vivian has her own problems: she's curious about sex, likes an older neighb","id":"14662","runtime":91,"imdbId":"tt0120831","version":193,"lastModified":"1301904769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0aa\/4c1671a37b9aa108b40000aa\/slums-of-beverly-hills-mid.jpg","genre":"Comedy","title":"Slums of Beverly Hills","releaseDate":903052800000,"language":"en","tagline":"Growing Up is Hard to Do","type":"Movie","_key":"59663"} +{"label":"Eli Marienthal","version":16,"id":"116027","lastModified":"1301902927000","name":"Eli Marienthal","type":"Person","_key":"59664"} +{"label":"Sharky's Machine","description":"Sharky gets busted back to working vice, where he happens upon a scandalous conspiracy involving a local politician. Accompanied by an all-star jazz soundtrack, Sharky's new \"machine\" gathers evidence while Sharky falls in love with a woman he has never met.","id":"14664","runtime":122,"imdbId":"tt0083064","trailer":"http:\/\/www.youtube.com\/watch?v=4FCHefQeuSM","version":85,"lastModified":"1301904616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/327\/4bc9440c017a3c57fe01d327\/sharky-s-machine-mid.jpg","genre":"Crime","title":"Sharky's Machine","releaseDate":377481600000,"language":"en","type":"Movie","_key":"59665"} +{"label":"Cougar Club","description":"When Spence and Hogan graduate from college, life is bleak. They have to work for heinous divorce lawyers that torture them. Spence has a girlfriend from hell and Hogan just wants to start his life already. As luck would have it, our two young men are presented with an opportunity, they develop a club of young men devoted to the older woman, the \"Cougar\" if you will. ","id":"14666","runtime":0,"imdbId":"tt0795361","version":125,"lastModified":"1301903553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34a\/4bc9440f017a3c57fe01d34a\/cougar-club-mid.jpg","genre":"Comedy","title":"Cougar Club","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59666"} +{"label":"Dogfight","description":"In the fall of 1963, Eddie Birdlace is an 18-year-old Marine Corps volunteer who is about to ship out with three of his buddies for a tour of duty in Viet Nam. Planning a massive blowout for their last night in San Francisco, Eddie, his buddies, and a number of other Marines set up a contest they call a \"dog fight.\" ","id":"14667","runtime":94,"imdbId":"tt0101748","version":90,"lastModified":"1301905106000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e2\/4d322ac95e73d633520012e2\/dogfight-mid.jpg","genre":"Drama","title":"Dogfight","releaseDate":684720000000,"language":"en","type":"Movie","_key":"59667"} +{"label":"Nancy Savoca","version":18,"id":"93025","lastModified":"1301902375000","name":"Nancy Savoca","type":"Person","_key":"59668"} +{"label":"Yonkers Joe","description":"Yonkers Joe tells the story of a dice hustler whose determination to make one last grab for a big score in Vegas is complicated by the reappearance of his estranged, mentally challenged son into his life.","id":"14669","runtime":101,"imdbId":"tt1018830","version":113,"lastModified":"1301906255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/358\/4bc94410017a3c57fe01d358\/yonkers-joe-mid.jpg","studio":"GO Productions","genre":"Drama","title":"Yonkers Joe","releaseDate":1207008000000,"language":"en","type":"Movie","_key":"59669"} +{"label":"Christine Lahti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/559\/4ca97bfd5e73d643eb000559\/christine-lahti-profile.jpg","version":42,"id":"77133","lastModified":"1301901418000","name":"Christine Lahti","type":"Person","_key":"59670"} +{"label":"Robert Celestino","version":20,"id":"77134","lastModified":"1301901687000","name":"Robert Celestino","type":"Person","_key":"59671"} +{"label":"'Round Midnight","description":"Inside the Blue Note nightclub one night in 1959 Paris, an aged, ailing jazzman coaxes an eloquent wail from his tenor sax. Outside, a young Parisian too broke to buy a glass of wine strains to hear those notes. Soon they will form a friendship that sparks a final burst of genius in director Bertrand Tavernier","id":"14670","runtime":133,"imdbId":"tt0090557","trailer":"http:\/\/www.youtube.com\/watch?v=mJEYjLQp43g","version":111,"lastModified":"1301905268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35d\/4bc94410017a3c57fe01d35d\/round-midnight-mid.jpg","genre":"Drama","title":"'Round Midnight","releaseDate":528681600000,"language":"en","type":"Movie","_key":"59672"} +{"label":"Dexter Gordon","version":21,"id":"77135","lastModified":"1301902134000","name":"Dexter Gordon","type":"Person","_key":"59673"} +{"label":"Summer School","description":"A high-school gym teacher has big plans for the summer, but is forced to cancel them to teach a \"bonehead\" English class for misfit goof-off students. Fortunately, his unconventional brand of teaching fun field trips begins to connect with them, and even inspires ardor in some.","id":"14671","runtime":97,"imdbId":"tt0094072","version":336,"lastModified":"1301903555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36e\/4bc94415017a3c57fe01d36e\/summer-school-mid.jpg","genre":"Comedy","title":"Summer School","releaseDate":553910400000,"language":"en","tagline":"At Ocean Front High, what do they call a guy who cuts classes, hates homework, and lives for summer vacations? Teacher.","type":"Movie","_key":"59674"} +{"label":"Crackerjack","description":"When dwindling membership and increasing overheads makes a local bowling club and prime candidate for a takeover, it's all hands on deck to save the club, in what turns into an epic battle where young meets old, greed meets good and people rise to the occasion in extraordinary circumstances. ","id":"14672","runtime":92,"imdbId":"tt0291832","trailer":"http:\/\/www.youtube.com\/watch?v=BxYL1qxoOqk","version":67,"lastModified":"1301908292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc94415017a3c57fe01d377\/crackerjack-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"Crackerjack","releaseDate":1026345600000,"language":"en","type":"Movie","_key":"59675"} +{"label":"John Clarke","version":20,"id":"77136","lastModified":"1301901865000","name":"John Clarke","type":"Person","_key":"59676"} +{"label":"Lois Ramsey","version":19,"id":"77137","lastModified":"1301902069000","name":"Lois Ramsey","type":"Person","_key":"59677"} +{"label":"Samuel Johnson","version":25,"id":"77138","lastModified":"1301901829000","name":"Samuel Johnson","type":"Person","_key":"59678"} +{"label":"Judith Lucy","version":20,"id":"77139","lastModified":"1301901719000","name":"Judith Lucy","type":"Person","_key":"59679"} +{"label":"Paul Moloney","version":19,"id":"77140","lastModified":"1301902069000","name":"Paul Moloney","type":"Person","_key":"59680"} +{"label":"Savage Streets","description":"A teenage vigilante (Blair) seeks revenge on a group of violent thugs who raped her handicapped sister and killed her best friend.","id":"14673","runtime":92,"imdbId":"tt0088044","version":106,"lastModified":"1301903045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/380\/4bc94416017a3c57fe01d380\/savage-streets-mid.jpg","genre":"Action","title":"Savage Streets","releaseDate":465782400000,"language":"en","tagline":"The gang war of the sexes!","type":"Movie","_key":"59681"} +{"label":"Robert Dryer","version":20,"id":"77148","lastModified":"1301902031000","name":"Robert Dryer","type":"Person","_key":"59682"} +{"label":"Johnny Venocur","version":20,"id":"77149","lastModified":"1301901833000","name":"Johnny Venocur","type":"Person","_key":"59683"} +{"label":"Sal Landi","version":21,"id":"77150","lastModified":"1301902017000","name":"Sal Landi","type":"Person","_key":"59684"} +{"label":"Scott Mayer","version":20,"id":"77151","lastModified":"1301901828000","name":"Scott Mayer","type":"Person","_key":"59685"} +{"label":"Debra Blee","version":18,"id":"97707","lastModified":"1301902537000","name":"Debra Blee","type":"Person","_key":"59686"} +{"label":"Lisa Freeman","version":17,"id":"97708","lastModified":"1301902544000","name":"Lisa Freeman","type":"Person","_key":"59687"} +{"label":"Ina Romeo","version":17,"id":"97709","lastModified":"1301902539000","name":"Ina Romeo","type":"Person","_key":"59688"} +{"label":"Luisa Leschin","version":18,"id":"106800","lastModified":"1301903066000","name":"Luisa Leschin","type":"Person","_key":"59689"} +{"label":"Jill Jaxx","version":17,"id":"106801","lastModified":"1301903066000","name":"Jill Jaxx","type":"Person","_key":"59690"} +{"label":"Bob DeSimone","version":21,"id":"83337","lastModified":"1301902691000","name":"Bob DeSimone","type":"Person","_key":"59691"} +{"label":"Rebecca Perle","version":19,"id":"106802","lastModified":"1301903065000","name":"Rebecca Perle","type":"Person","_key":"59692"} +{"label":"Paula Shaw","version":18,"id":"99841","lastModified":"1301902691000","name":"Paula Shaw","type":"Person","_key":"59693"} +{"label":"Perla Walter","version":17,"id":"106803","lastModified":"1301903009000","name":"Perla Walter","type":"Person","_key":"59694"} +{"label":"Suzee Slater","version":20,"id":"102440","lastModified":"1301903050000","name":"Suzee Slater","type":"Person","_key":"59695"} +{"label":"Man of the West","description":"Heading east to Fort Worth to hire a schoolteacher for his frontier town home, Link Jones is stranded with singer Billie Ellis and gambler Sam Beasley when their train is held up. For shelter, Jones leads them to his nearby former home, where he was brought up an outlaw. Finding the gang still living in the shack, Jones pretends to be ready to return to a life crime. ","id":"14674","runtime":100,"imdbId":"tt0051899","version":87,"lastModified":"1301906471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/389\/4bc94416017a3c57fe01d389\/man-of-the-west-mid.jpg","studio":"Ashton Productions","genre":"Action","title":"Man of the West","releaseDate":-355104000000,"language":"en","type":"Movie","_key":"59696"} +{"label":"The Awful Truth","description":"The Awful Truth is a 1937 screwball comedy film starring Irene Dunne and Cary Grant. The plot concerns the machinations of a soon to be divorced couple, played by Dunne and Grant, who go to great lengths to try to ruin each others romantic escapades.","id":"14675","runtime":91,"imdbId":"tt0028597","version":123,"lastModified":"1301904881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39a\/4bc94418017a3c57fe01d39a\/the-awful-truth-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Awful Truth","releaseDate":-1016064000000,"language":"en","type":"Movie","_key":"59697"} +{"label":"Irene Dunne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/784\/4c6415747b9aa172de000784\/irene-dunne-profile.jpg","version":43,"id":"77158","lastModified":"1301901236000","name":"Irene Dunne","type":"Person","_key":"59698"} +{"label":"Cecil Cunningham","version":23,"id":"77160","lastModified":"1301901708000","name":"Cecil Cunningham","type":"Person","_key":"59699"} +{"label":"A Man Called Horse","description":"In 1825 an English aristocrat is captured by Indians. He lives with them and begins to understand\/accept their lifestyles. Eventually he is accepted as part of the tribe and becomes their leader. ","id":"14676","runtime":114,"imdbId":"tt0066049","version":124,"lastModified":"1301906471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39f\/4bc94418017a3c57fe01d39f\/a-man-called-horse-mid.jpg","genre":"Action","title":"A Man Called Horse","releaseDate":10368000000,"language":"en","type":"Movie","_key":"59700"} +{"label":"Last Train from Gun Hill","description":"A marshal tries to bring the son of an old friend, an autocratic cattle baron, to justice for the rape and murder of his wife.","id":"14677","runtime":98,"imdbId":"tt0052993","version":76,"lastModified":"1301904008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a8\/4bc94418017a3c57fe01d3a8\/last-train-from-gun-hill-mid.jpg","studio":"Bryna Productions","genre":"Action","title":"Last Train from Gun Hill","releaseDate":-329097600000,"language":"en","type":"Movie","_key":"59701"} +{"label":"10 Minute Solution - Target Toning for Beginners","description":"Instructor Cindy Whitmarsh has developed 5 targeted workouts for beginners. Each one is focused on a specific muscle group and each one only 10 minutes. \nABS,\nTHIGHS,\nBUNS, \nARMS & SHOULDERS","id":"14678","runtime":53,"version":66,"lastModified":"1301908109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ad\/4bc94419017a3c57fe01d3ad\/10-minute-solution-target-toning-for-beginners-mid.jpg","genre":"Sports Film","title":"10 Minute Solution - Target Toning for Beginners","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59702"} +{"label":"Cindy Whitmarsh","version":16,"id":"77161","lastModified":"1301901517000","name":"Cindy Whitmarsh","type":"Person","_key":"59703"} +{"label":"Eating Out","description":"After getting dumped by his girlfriend Tiffani (Rebekah Kochan), Caleb (Scott Lunsford) commiserates with his roommate Kyle (Jim Verraros), who notes that while he has trouble getting the men he wants he could get any woman because he's gay.","id":"14681","runtime":90,"imdbId":"tt0372884","trailer":"http:\/\/www.youtube.com\/watch?v=ypDPBD-2slQ","version":129,"lastModified":"1301903881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bf\/4bc9441a017a3c57fe01d3bf\/eating-out-mid.jpg","genre":"Comedy","title":"Eating Out","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"59704"} +{"label":"Q. Allan Brocka","version":23,"id":"53603","lastModified":"1301902068000","name":"Q. Allan Brocka","type":"Person","_key":"59705"} +{"label":"Rebekah Kochan","version":17,"id":"94224","lastModified":"1301902060000","name":"Rebekah Kochan","type":"Person","_key":"59706"} +{"label":"The Nine Lives of Fritz the Cat","description":"Fritz, now married and with a son, is desperate to escape from the domestic hell he now finds himself in. Lighting up a joint, he begins to dream about his eight other lives, hoping to find one that will provide a pleasant distraction. ","id":"14683","runtime":77,"imdbId":"tt0071913","version":102,"lastModified":"1301903351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cc\/4bc9441b017a3c57fe01d3cc\/the-nine-lives-of-fritz-the-cat-mid.jpg","genre":"Animation","title":"The Nine Lives of Fritz the Cat","releaseDate":148694400000,"language":"en","type":"Movie","_key":"59707"} +{"label":"School Ties","description":"After receiving a scholarship to an exclusive pre school, working-class teen David Greene becomes a star athlete and wins the attention of a beautiful debutante. But the ties of his newfound friendships are broken when a student reveals the secret David has tried to conceal- he is Jewish. Now David must take the most important stand of his life, one that will touch the lives of many.","id":"14684","runtime":106,"imdbId":"tt0105327","version":108,"lastModified":"1301903112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d5\/4bc9441e017a3c57fe01d3d5\/school-ties-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"School Ties","releaseDate":716774400000,"language":"en","tagline":"Just because you\u2019re accepted doesn\u2019t mean you belong.","type":"Movie","_key":"59708"} +{"label":"Swallows and Amazons","description":"On holiday with their mother in the Lake District in 1929 four children are allowed to sail over to the nearby island in their boat Swallow and set up camp for a few days. They soon realise this has been the territory of two other girls who sail the Amazon, and the scene is set for serious rivalry.","id":"14685","runtime":92,"imdbId":"tt0072233","version":72,"lastModified":"1301906058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4bc94420017a3c57fe01d3df\/swallows-and-amazons-mid.jpg","title":"Swallows and Amazons","releaseDate":126230400000,"language":"en","type":"Movie","_key":"59709"} +{"label":"Sophie Neville","version":19,"id":"77167","lastModified":"1301902069000","name":"Sophie Neville","type":"Person","_key":"59710"} +{"label":"Stephen Grendon","version":19,"id":"77168","lastModified":"1301902069000","name":"Stephen Grendon","type":"Person","_key":"59711"} +{"label":"Kit Seymour","version":19,"id":"77169","lastModified":"1301901865000","name":"Kit Seymour","type":"Person","_key":"59712"} +{"label":"Lesley Bennett","version":19,"id":"77170","lastModified":"1301901719000","name":"Lesley Bennett","type":"Person","_key":"59713"} +{"label":"Virginia McKenna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/906\/4cdab2325e73d676d3000906\/virginia-mckenna-profile.jpg","version":30,"id":"77165","lastModified":"1301901477000","name":"Virginia McKenna","type":"Person","_key":"59714"} +{"label":"Midnight Movie","description":"No overview found.","id":"14686","runtime":82,"imdbId":"tt0981224","version":170,"lastModified":"1301905541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e8\/4bc94420017a3c57fe01d3e8\/midnight-movie-mid.jpg","studio":"Bigfoot Entertainment","genre":"Horror","title":"Midnight Movie","releaseDate":1231200000000,"language":"en","type":"Movie","_key":"59715"} +{"label":"Jack Messitt","version":20,"id":"77171","lastModified":"1301902200000","name":"Jack Messitt","type":"Person","_key":"59716"} +{"label":"Eichmann","description":"Based upon the final confession of Adolf Eichmann, made before his execution in Israel, of his role in Hitler's plan for the final solution.","id":"14687","runtime":100,"imdbId":"tt0901481","version":123,"lastModified":"1301904434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/451\/4d4f30e65e73d617c7003451\/eichmann-mid.jpg","genre":"Drama","title":"Eichmann","releaseDate":1190419200000,"language":"en","type":"Movie","_key":"59717"} +{"label":"Le Code a chang\u00e9","description":"Un d\u00eener, c'est la dictature de l'apparence : on se fait beau, on rit, on raconte, on frime, on partage souvenirs et projets. Les angoisses sont cach\u00e9es sous l'humour et les chagrins \u00e9touff\u00e9s par les \u00e9clats de rire. Et pour quelques heures, on y croit ! C'est \u00e7a le principal...\r\nSi on a le bon code et que l'on respecte les autres, cordialit\u00e9, hypocrisie, bonne humeur, on risque de passer une bonne","id":"14688","runtime":100,"imdbId":"tt1193088","homepage":"http:\/\/www.lecodeachange-lefilm.com\/","version":83,"lastModified":"1301902973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/408\/4bc94423017a3c57fe01d408\/le-code-a-change-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Le Code a chang\u00e9","releaseDate":1234915200000,"language":"en","type":"Movie","_key":"59718"} +{"label":"Hawaii","description":"Missionaries to the Hawaiian Islands fight nature, disease and their own passions.","id":"14689","runtime":189,"imdbId":"tt0060491","version":93,"lastModified":"1301904881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4bc94424017a3c57fe01d415\/hawaii-mid.jpg","studio":"United Artists","genre":"Drama","title":"Hawaii","releaseDate":-101865600000,"language":"en","type":"Movie","_key":"59719"} +{"label":"Jocelyne LaGarde","version":15,"id":"146951","lastModified":"1301903092000","name":"Jocelyne LaGarde","type":"Person","_key":"59720"} +{"label":"Pride and Prejudice","description":"Jane Austen's classic novel about the prejudice that occurred between the 19th century classes and the pride which would keep lovers apart.","id":"14690","runtime":300,"imdbId":"tt0112130","version":174,"lastModified":"1301903237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32b\/4c523c247b9aa13d4c00032b\/pride-and-prejudice-mid.jpg","genre":"Drama","title":"Pride and Prejudice","releaseDate":821577600000,"language":"en","type":"Movie","_key":"59721"} +{"label":"Benjamin Whitrow","version":25,"id":"121738","lastModified":"1301902512000","name":"Benjamin Whitrow","type":"Person","_key":"59722"} +{"label":"Simon Langton","version":25,"id":"126951","lastModified":"1301903003000","name":"Simon Langton","type":"Person","_key":"59723"} +{"label":"The Snow Walker","description":"A bush pilot in nothern Canada who with the aid of modernity thinks he can handle it all & knows it all. After reluctantly agreeing to transport a local indian girl to a medical facility his light plane crashes & they have to survive whilst finding their way back to civilization. Along the journey the man finds a new respect for the native ways as they battle to survive the elements.Strangely this movie is barely rated as it's viewed as one of the best & most moving films by all who've watched ","id":"14694","runtime":103,"imdbId":"tt0337721","trailer":"http:\/\/www.youtube.com\/watch?v=1198","version":156,"lastModified":"1301906256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/433\/4bc94428017a3c57fe01d433\/the-snow-walker-mid.jpg","genre":"Action","title":"The Snow Walker","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"59724"} +{"label":"Annabella Piugattuk","version":20,"id":"82820","lastModified":"1301902540000","name":"Annabella Piugattuk","type":"Person","_key":"59725"} +{"label":"Havoc","description":"The elegant Anne Hathaway takes off her Princess Diaries crown to play a wealthy Los Angeles teen who, along with her superficial friends, wants to break out of suburbia and experience Southern California's \"gansta\" lifestyle. But problems arise when the preppies get in over their heads and provoke the wrath of a violent Latino gang. Suddenly, their role-playing seems a little too real. Bijou Phil","id":"14695","runtime":85,"imdbId":"tt0285175","version":179,"lastModified":"1301907094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/448\/4bc9442a017a3c57fe01d448\/havoc-mid.jpg","genre":"Drama","title":"Havoc","releaseDate":1129420800000,"language":"en","type":"Movie","_key":"59726"} +{"label":"Ugetsu","description":"In the civil wars of 16th century Japan, two ambitious peasants want to make their fortunes. The potter Genjuro intends to sell his wares for vast profits in the local city, while his brother-in-law Tobei wishes to become a samurai.","id":"14696","runtime":94,"imdbId":"tt0046478","version":117,"lastModified":"1301905290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/456\/4bc9442b017a3c57fe01d456\/ugetsu-monogatari-mid.jpg","genre":"Comedy","title":"Ugetsu","releaseDate":-529200000000,"language":"en","type":"Movie","_key":"59727"} +{"label":"Kenji Mizoguchi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4cad48e95e73d6507100006c\/kenji-mizoguchi-profile.jpg","version":53,"birthday":"-2260400400000","id":"97202","birthplace":"Asakusa, Tokyo, Japan","lastModified":"1301901715000","name":"Kenji Mizoguchi","type":"Person","_key":"59728"} +{"label":"Eitar\u00f4 Ozawa","version":27,"id":"97203","lastModified":"1301902580000","name":"Eitar\u00f4 Ozawa","type":"Person","_key":"59729"} +{"label":"Ikio Sawamura","version":18,"id":"97204","lastModified":"1301902889000","name":"Ikio Sawamura","type":"Person","_key":"59730"} +{"label":"Suddenly, Last Summer","description":"The only son of wealthy widow Violet Venable dies while on vacation with his cousin Catherine. What the girl saw was so horrible that she went insane; now Mrs. Venable wants Catherine lobotomized to cover up the truth.","id":"14698","runtime":114,"imdbId":"tt0053318","version":157,"lastModified":"1301908047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45f\/4bc9442e017a3c57fe01d45f\/suddenly-last-summer-mid.jpg","genre":"Action","title":"Suddenly, Last Summer","releaseDate":-316483200000,"language":"en","type":"Movie","_key":"59731"} +{"label":"The Night of the Iguana","description":"Drama while a tour bus driver shows church ladies around Mexico. Helped establish Puerto Vallarta as tourist destination.","id":"14703","runtime":125,"imdbId":"tt0058404","version":125,"lastModified":"1301907201000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/485\/4bc94431017a3c57fe01d485\/the-night-of-the-iguana-mid.jpg","genre":"Drama","title":"The Night of the Iguana","releaseDate":-170553600000,"language":"en","type":"Movie","_key":"59732"} +{"label":"Donkey Xote","description":"The donkey, Rucio, tells the true story of Don Quixote and defends the idea that he wasn't insane, but a very intelligent, passionate and enthusiastic fellow. ","id":"14704","runtime":90,"imdbId":"tt0419704","version":156,"lastModified":"1301903679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48e\/4bc94432017a3c57fe01d48e\/donkey-xote-mid.jpg","genre":"Action","title":"Donkey Xote","releaseDate":1196812800000,"language":"en","type":"Movie","_key":"59733"} +{"label":"Jose Pozo","version":21,"id":"77173","lastModified":"1301902186000","name":"Jose Pozo","type":"Person","_key":"59734"} +{"label":"Omkara","description":"Director Vishal Bharadwaj's adaption of the Shakespeare masterpiece \"Othello\".","id":"14705","runtime":155,"imdbId":"tt0488414","version":131,"lastModified":"1301905953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4c8a73a47b9aa16743000023\/omkara-mid.jpg","studio":"Eros Entertainment","genre":"Suspense","title":"Omkara","releaseDate":1154044800000,"language":"en","tagline":"An adaptation of Shakespeare's Othello","type":"Movie","_key":"59735"} +{"label":"Vishal Bhardwaj","version":31,"id":"87550","lastModified":"1301902326000","name":"Vishal Bhardwaj","type":"Person","_key":"59736"} +{"label":"Vivek Oberoi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12e\/4c4f01ce7b9aa1326c00012e\/vivek-oberoi-profile.jpg","version":43,"birthday":"115858800000","id":"85668","birthplace":"Hyderbad, India","lastModified":"1301901603000","name":"Vivek Oberoi","type":"Person","_key":"59737"} +{"label":"Ultimate Avengers","description":"No overview found.","id":"14706","version":280,"lastModified":"1301904064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/488\/4cc9a2485e73d65024000488\/ultimate-avengers-mid.jpg","title":"Ultimate Avengers","language":"en","type":"Movie","_key":"59738"} +{"label":"The Return of Superfly","description":"No overview found.","id":"14707","runtime":95,"imdbId":"tt0100480","version":39,"lastModified":"1301906123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ad\/4bc94434017a3c57fe01d4ad\/the-return-of-superfly-mid.jpg","title":"The Return of Superfly","releaseDate":658108800000,"language":"en","type":"Movie","_key":"59739"} +{"label":"Clean Break","description":"No overview found.","id":"14708","runtime":93,"imdbId":"tt0867464","version":82,"lastModified":"1301905561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b2\/4bc94435017a3c57fe01d4b2\/clean-break-mid.jpg","title":"Clean Break","releaseDate":1208908800000,"language":"en","type":"Movie","_key":"59740"} +{"label":"Varsity Blues","description":"In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.","id":"14709","runtime":106,"imdbId":"tt0139699","version":223,"lastModified":"1301902919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4d5098687b9aa13aba00e1f4\/varsity-blues-mid.jpg","genre":"Comedy","title":"Varsity Blues","releaseDate":915148800000,"language":"en","tagline":"It takes a hero to know what's worth winning.","type":"Movie","_key":"59741"} +{"label":"Ron Lester","version":22,"id":"77174","lastModified":"1301901934000","name":"Ron Lester","type":"Person","_key":"59742"} +{"label":"The Westerner","description":"Drifter Cole Harden is accused of stealing a horse and faces hanging by self-appointed Judge Roy Bean, but Harden manages to talk his way out of it by claiming to be a friend of stage star Lillie Langtry, with whom the judge is obsessed, even though he has never met her. Tensions rise when Harden comes to the defense of a group of struggling homesteaders who Judge Bean is trying to drive away.","id":"14710","runtime":100,"imdbId":"tt0033253","version":72,"lastModified":"1301905101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc9443b017a3c57fe01d4d9\/the-westerner-mid.jpg","studio":"Samuel Goldwyn Company","genre":"Action","title":"The Westerner","releaseDate":-924220800000,"language":"en","type":"Movie","_key":"59743"} +{"label":"Doris Davenport","version":20,"id":"77175","lastModified":"1301901609000","name":"Doris Davenport","type":"Person","_key":"59744"} +{"label":"Fred Stone","version":22,"id":"77176","lastModified":"1301901935000","name":"Fred Stone","type":"Person","_key":"59745"} +{"label":"Forrest Tucker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c8\/4ca9eab57b9aa17acb0006c8\/forrest-tucker-profile.jpg","version":37,"id":"41214","lastModified":"1301901650000","name":"Forrest Tucker","type":"Person","_key":"59746"} +{"label":"Afro Samurai: Resurrection","description":"Afro Samurai avenged his father and found a life of peace. But the legendary master is forced back into the game by a beautiful and deadly woman from his past. The sparks of violence dropped along Afro\u2019s bloody path now burn out of control \u2013 and nowhere are the flames of hatred more intense than in the eyes of Sio.","id":"14711","runtime":91,"imdbId":"tt1265998","trailer":"http:\/\/www.youtube.com\/watch?v=St9RnYZCrNY","homepage":"http:\/\/www.afrosamurai.com\/","version":225,"lastModified":"1301901336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ee\/4bc9443d017a3c57fe01d4ee\/afro-samurai-resurrection-mid.jpg","studio":"Fuji TV","genre":"Animation","title":"Afro Samurai: Resurrection","releaseDate":1232841600000,"language":"en","type":"Movie","_key":"59747"} +{"label":"Fuminori Kizaki","version":22,"id":"77177","lastModified":"1301901675000","name":"Fuminori Kizaki","type":"Person","_key":"59748"} +{"label":"Getaway in Stockholm","description":"At dawn a black Porsche 911 is pulled over by police just south of Stockholm. This marks the beginning of one of the most brutal car chases ever-past the Stockholm Globe Arena, through the alleys of Old Town, past the Royal Castle and the Royal guards, right through downtown and the harbor to run from the law.","id":"14712","runtime":20,"homepage":"http:\/\/www.getawayinstockholm.com\/","version":41,"lastModified":"1301651148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fd\/4bc9443e017a3c57fe01d4fd\/getaway-in-stockholm-mid.jpg","title":"Getaway in Stockholm","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59749"} +{"label":"Getaway in Stockholm 2","description":"The second cult movie from the makers of Getaway in Stockholm 1 with even more excitement and wilder car chases than before. A Toyota Supra and a Ford Escort Cosworth vs. the Swedish Police - the heavy-weight champions in a documentary on street racing, a cat-and-mouse game with the Swedish Police in the night of Stockholm.","id":"14714","runtime":0,"version":527,"lastModified":"1301110237000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/502\/4bc9443e017a3c57fe01d502\/getaway-in-stockholm-2-mid.jpg","title":"Getaway in Stockholm 2","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59750"} +{"label":"Getaway in Stockholm 3","description":"A Honda NSX is in the hands of one of the world's most famous traffic violators. Once again Mr X challenges the Swedish police department in this favorite movie for speed freaks when he sets a new record racing through Stockholm.","id":"14715","runtime":0,"version":339,"lastModified":"1300979960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4bc9443f017a3c57fe01d507\/getaway-in-stockholm-3-mid.jpg","title":"Getaway in Stockholm 3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59751"} +{"label":"Getaway in Stockholm 4","description":"The world's most famous traffic violator Mr X challenges not only the police but also the true American sports car legend, the Corvette C5. With its powerful V8 engine it is driven by the extremely fast street racing beauty Miss Corvette.","id":"14716","runtime":0,"version":49,"lastModified":"1301110172000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50c\/4bc94440017a3c57fe01d50c\/getaway-in-stockholm-4-mid.jpg","title":"Getaway in Stockholm 4","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59752"} +{"label":"Getaway in Stockholm 5","description":"Mr X, the worlds most famous traffic violator is back in town! This time in a car well known from the movie The Fast and the Furious, a supertuned Mazda Rx-7 pushed to the limit. Together with a friend in a just as fast supercar they show that after sunset in Stockholm another life begins where they own the streets, sometimes at speeds up to 300 km\/h.","id":"14718","runtime":0,"version":12,"lastModified":"1300979960000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4bc94440017a3c57fe01d511\/getaway-in-stockholm-5-mid.jpg","title":"Getaway in Stockholm 5","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"59753"} +{"label":"Le Bal des actrices","description":"Une r\u00e9alisatrice veut faire un documentaire sur les actrices, toutes les actrices : les populaires, les inconnues, les intellos, les comiques, les oubli\u00e9es... Filmant tout, tout, tout, avec ou sans leur accord, la r\u00e9alisatrice va se prendre au jeu et se laisser d\u00e9vorer par ces femmes aussi fragiles que manipulatrices...","id":"14720","runtime":105,"imdbId":"tt1035729","version":59,"lastModified":"1301905267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/522\/4bc94442017a3c57fe01d522\/le-bal-des-actrices-mid.jpg","studio":"SND","genre":"Comedy","title":"Le Bal des actrices","releaseDate":1233100800000,"language":"en","type":"Movie","_key":"59754"} +{"label":"Jeanne Balibar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48b\/4ca8c0a55e73d643f000048b\/jeanne-balibar-profile.jpg","version":36,"id":"77191","lastModified":"1301901714000","name":"Jeanne Balibar","type":"Person","_key":"59755"} +{"label":"Estelle Lef\u00e9bure","version":18,"id":"77192","lastModified":"1301901719000","name":"Estelle Lef\u00e9bure","type":"Person","_key":"59756"} +{"label":"Getaway in Stockholm 6","description":"Dodge Viper GTS vs. Porsche 911 GT3, American brute vs. German brains at its best! Two legends among sports cars pushed at highest pace against each other, this time Mr X challenges Tony Montana in a race through Stockholm.","id":"14721","runtime":0,"version":77,"lastModified":"1300979961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc94442017a3c57fe01d527\/getaway-in-stockholm-6-mid.jpg","title":"Getaway in Stockholm 6","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59757"} +{"label":"Getaway in Stockholm 7","description":"A highly tuned supercharged BMW M3 with more than 500 hp and a BMW M5 hit the streets of Stockholm. A movie not only for BMW fans. If you love extremely fast cars and a cat-and-mouse game with the law enforcement, Mr X will not disappoint you with this race at speeds exceeding 300 km\/h. As the race goes on, Mr X tries to locate every cop in town simply to outrun them right in downtown Stockholm!","id":"14722","runtime":0,"version":124,"lastModified":"1301905673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52c\/4bc94442017a3c57fe01d52c\/getaway-in-stockholm-7-mid.jpg","title":"Getaway in Stockholm 7","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59758"} +{"label":"Getaway in Stockholm 8","description":"Mr. X and one piece of German heavyweight, a highly prepared 525 hp Audi RS6 with a top speed of 300+ km\/h blast through the streets of downtown Stockholm at night. The police are caught by surprise but do their best to stop our hero. ","id":"14723","runtime":0,"version":158,"lastModified":"1301907410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/531\/4bc94442017a3c57fe01d531\/getaway-in-stockholm-8-mid.jpg","title":"Getaway in Stockholm 8","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59759"} +{"label":"Getaway in Stockholm 9","description":"The Porsche 911 GT3 is one of the fastest roadgoing cars ever made. Imagine two - and then put a pair of them in the hands of Mr X and his friend and you will see some racing action in the streets of downtown Stockholm at incredible speeds. Anywhere and everywhere that they can find the cops to get a nice car chase at their hands - they will go looking - and fast!","id":"14724","runtime":0,"version":109,"lastModified":"1301906741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/536\/4bc94443017a3c57fe01d536\/getaway-in-stockholm-9-mid.jpg","title":"Getaway in Stockholm 9","releaseDate":1229299200000,"language":"en","type":"Movie","_key":"59760"} +{"label":"King Guillaume","description":"Magali, tubiste dans une fanfare, et Guillaume, conducteur de petit train touristique, m\u00e8nent une vie tranquille en banlieue, amoureux comme au premier jour, entre r\u00eaves modestes et une grossesse qu'ils attendaient depuis longtemps.Tout se complique lorsque le p\u00e8re de Guillaume, qu'il ne conna\u00eet pas, prend contact avec lui pour lui annoncer qu'en vertu d'un accord datant du Moyen-Age, il h\u00e9rite d'un authentique royaume au large de la France et de l'Angleterre.","id":"14725","runtime":85,"imdbId":"tt1337152","version":68,"lastModified":"1301905305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/548\/4bc94447017a3c57fe01d548\/king-guillaume-mid.jpg","genre":"Comedy","title":"King Guillaume","releaseDate":1233100800000,"language":"en","type":"Movie","_key":"59761"} +{"label":"Espion(s)","description":"No overview found.","id":"14726","runtime":99,"imdbId":"tt1149592","version":60,"lastModified":"1301904979000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/551\/4bc94448017a3c57fe01d551\/espion-s-mid.jpg","studio":"Mars Distribution","title":"Espion(s)","releaseDate":1233100800000,"language":"en","type":"Movie","_key":"59762"} +{"label":"Nicolas Saada","version":20,"id":"69788","lastModified":"1301901948000","name":"Nicolas Saada","type":"Person","_key":"59763"} +{"label":"The Librarian: The Curse of the Judas Chalice","description":"Noah Wyle is back as Flynn Carson in the most thrilling adventure in The Librarian series yet! On a deadly mission to recover the historic Judas Chalice, Flynn is saved by Simone. But when double-crossed by a respected professor and ambushed by a ruthless gang, Flynn realizes Simone's secret, his true mission and a shocking discovery are all lying within a decaying New Orleans crypt?","id":"14728","runtime":95,"imdbId":"tt1146438","homepage":"http:\/\/www.tnt.tv\/movies\/librarian\/","version":190,"lastModified":"1301908365000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/563\/4bc94449017a3c57fe01d563\/the-librarian-the-curse-of-the-judas-chalice-mid.jpg","studio":"Electric Entertainment","genre":"Action","title":"The Librarian: The Curse of the Judas Chalice","releaseDate":1228608000000,"language":"en","type":"Movie","_key":"59764"} +{"label":"Stana Katic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35d\/4bfa7227017a3c702a00035d\/stana-katic-profile.jpg","version":36,"id":"34408","lastModified":"1301901200000","name":"Stana Katic","type":"Person","_key":"59765"} +{"label":"The Long Riders","description":"The origins, exploits and the ultimate fate of the James gang is told in a sympathetic portrayal of the bank robbers made up of brothers who begin their legendary bank raids because of revenge.","id":"14729","runtime":99,"imdbId":"tt0081071","version":122,"lastModified":"1301905187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56c\/4bc9444a017a3c57fe01d56c\/the-long-riders-mid.jpg","studio":"Huka Productions","genre":"Action","title":"The Long Riders","releaseDate":327283200000,"language":"en","type":"Movie","_key":"59766"} +{"label":"The Wyvern Mystery","description":"No overview found.","id":"14730","runtime":0,"imdbId":"tt0237934","version":483,"lastModified":"1302022257000","genre":"Drama","title":"The Wyvern Mystery","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59767"} +{"label":"Bill Hicks: Sane Man","description":"The amazing comedian Bill Hicks passed away in 1994, but his legend continues to grow. Sane Man was filmed before Bill recorded \"Dangerous,\" his first comedy album, and is a turning point in Hicks' career. It was the first complete Hicks show ever filmed and Bill pulled out all the stops for the cameras. Completely focused, a newly-sober Hicks paces the stage like a wild animal riffing effortless","id":"14733","runtime":84,"imdbId":"tt0287337","homepage":"http:\/\/www.billhicks.com\/sane-contents.html","version":238,"lastModified":"1301903253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4bc9444c017a3c57fe01d588\/bill-hicks-sane-man-mid.jpg","studio":"Sacred Cow Productions","genre":"Comedy","title":"Bill Hicks: Sane Man","releaseDate":628473600000,"language":"en","type":"Movie","_key":"59768"} +{"label":"Bill Hicks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/145\/4bcaa575017a3c0e99000145\/bill-hicks-profile.jpg","biography":"William Melvin \"Bill\" Hicks (December 16, 1961 \u2013 February 26, 1994) was an American stand-up comedian and satirist. His humor challenged mainstream beliefs, aiming to \"enlighten people to think for themselves.\" Hicks used a ribald approach to express his material, describing himself as \"Chomsky with dick jokes.\" His jokes included general discussions about society, religion, politics, philosophy and personal issues. Hicks' material was often deliberately controversial and steeped in dark come","version":56,"birthday":"-253846800000","id":"77193","birthplace":"Valdosta, Georgia, US","lastModified":"1301901290000","name":"Bill Hicks","type":"Person","_key":"59769"} +{"label":"Edy","description":"Edy est l'un des meilleurs dans le domaine de l'assurance ; particuli\u00e8rement lorsqu'il s'agit d'aider certains de ses clients \u00e0 mettre la main sur l'assurance-vie de leur conjoint.Mais depuis quelques temps, Edy a perdu l'envie de vivre. Quand il essaie d'en \ufb01nir, le destin lui joue un dr\u00f4le de tour. Non seulement il survit, mais il se retrouve avec un cadavre sur les bras.Edy n'a qu'une solution. Mais l\u00e0 encore, le destin se moque de lui...","id":"14734","runtime":101,"imdbId":"tt0429031","version":45,"lastModified":"1301907318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59d\/4bc9444e017a3c57fe01d59d\/edy-mid.jpg","studio":"Mars Distribution","genre":"Comedy","title":"Edy","releaseDate":1130889600000,"language":"en","type":"Movie","_key":"59770"} +{"label":"Yves Verhoeven","version":20,"id":"77195","lastModified":"1301901865000","name":"Yves Verhoeven","type":"Person","_key":"59771"} +{"label":"Boarding Gate","description":"No overview found.","id":"14735","runtime":0,"imdbId":"tt0493402","version":163,"lastModified":"1301904301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27c\/4d44cbae5e73d6706300127c\/boarding-gate-mid.jpg","genre":"Indie","title":"Boarding Gate","releaseDate":1179446400000,"language":"en","type":"Movie","_key":"59772"} +{"label":"Love & Basketball","description":"In 1981 in L.A., Monica moves in next door to Quincy. They're 11, and both want to play in the NBA, just like Quincy's dad. Their love-hate relationship lasts into high school, with Monica's edge and Quincy's top-dog attitude separating them, except when Quincy's parents argue and he climbs through Monica's window to sleep on the floor.","id":"14736","runtime":124,"imdbId":"tt0199725","version":150,"lastModified":"1302022202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4bc94453017a3c57fe01d5c1\/love-and-basketball-mid.jpg","genre":"Action","title":"Love & Basketball","releaseDate":956275200000,"language":"en","type":"Movie","_key":"59773"} +{"label":"Chris Warren Jr.","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/add\/4d3308725e73d6334f001add\/chris-warren-jr-profile.jpg","version":27,"id":"77196","lastModified":"1301901399000","name":"Chris Warren Jr.","type":"Person","_key":"59774"} +{"label":"Glenndon Chatman","version":14,"id":"150055","lastModified":"1301903124000","name":"Glenndon Chatman","type":"Person","_key":"59775"} +{"label":"Jess Willard","version":14,"id":"150057","lastModified":"1301903124000","name":"Jess Willard","type":"Person","_key":"59776"} +{"label":"Naykia Harris","version":14,"id":"150058","lastModified":"1301903124000","name":"Naykia Harris","type":"Person","_key":"59777"} +{"label":"Debbi Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/999\/4d8a8f5d7b9aa13ae7000999\/debbi-morgan-profile.jpg","version":26,"id":"88161","lastModified":"1301902393000","name":"Debbi Morgan","type":"Person","_key":"59778"} +{"label":"Al Foster","version":14,"id":"150059","lastModified":"1301903124000","name":"Al Foster","type":"Person","_key":"59779"} +{"label":"Colleen Matsuhara","version":14,"id":"150060","lastModified":"1301903127000","name":"Colleen Matsuhara","type":"Person","_key":"59780"} +{"label":"Christine Dunford","version":20,"id":"150061","lastModified":"1301903124000","name":"Christine Dunford","type":"Person","_key":"59781"} +{"label":"Boris Kodjoe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/718\/4ceff0ad5e73d66250000718\/boris-kodjoe-profile.jpg","biography":"<P class=MsoNormal style=\"MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'\"><FONT size=3>Boris Frederic Cecil Tay-Natey Ofuatey-Kodjoe was born on 8 March 1973 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Vienna<\/st1:City>, <st1:country-region w:st=\"on\">Austria<\/st1:country-region><\/st1:place>. He is fluent in French, English, German and some Spanish. Kodjoe attended <st1:place w:st=","version":39,"birthday":"100393200000","id":"80758","birthplace":"Vienna, Austria","lastModified":"1301901130000","name":"Boris Kodjoe","type":"Person","_key":"59782"} +{"label":"Erika Ringor","version":15,"id":"150062","lastModified":"1301903099000","name":"Erika Ringor","type":"Person","_key":"59783"} +{"label":"Madagascar Collection","description":"Madagascar is an animated film series produced by DreamWorks Animation. Voices of Ben Stiller, Jada Pinkett Smith, Chris Rock and David Schwimmer are featured in the films. The plot follows the adventures of story of four Central Park Zoo animals who have spent their lives in blissful captivity and are unexpectedly shipped back to Africa.","id":"14740","version":68,"lastModified":"1301904882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/606\/4bc9445b017a3c57fe01d606\/madagascar-collection-mid.jpg","title":"Madagascar Collection","language":"en","type":"Movie","_key":"59784"} +{"label":"The Goodbye Girl","description":"Paula McFadden knows: In romance, actors all follow the same stage instruction: Exit. Without warning, her actor boyfriend split today for a movie role and sublet their Manhattan apartment. The new tenant's name: Elliot Garfield. Profession: actor.\n\nRichard Dreyfuss and Marsha Mason deliver comedy, zingy repartee and bitter-to-best romance in The Goodbye Girl.","id":"14741","runtime":111,"imdbId":"tt0076095","version":146,"lastModified":"1301904083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60f\/4bc9445f017a3c57fe01d60f\/the-goodbye-girl-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"The Goodbye Girl","releaseDate":249696000000,"language":"en","type":"Movie","_key":"59785"} +{"label":"Quinn Cummings","version":20,"id":"77224","lastModified":"1301901609000","name":"Quinn Cummings","type":"Person","_key":"59786"} +{"label":"Barbara Rhoades","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4c24f4397b9aa1446b000128\/barbara-rhoades-profile.jpg","version":22,"id":"77225","lastModified":"1301901683000","name":"Barbara Rhoades","type":"Person","_key":"59787"} +{"label":"Michael Shawn","version":20,"id":"77227","lastModified":"1301902069000","name":"Michael Shawn","type":"Person","_key":"59788"} +{"label":"Patricia Pearcy","version":24,"id":"77228","lastModified":"1301901719000","name":"Patricia Pearcy","type":"Person","_key":"59789"} +{"label":"Gene Castle","version":20,"id":"77229","lastModified":"1301902069000","name":"Gene Castle","type":"Person","_key":"59790"} +{"label":"Daniel Levans","version":21,"id":"77230","lastModified":"1301902174000","name":"Daniel Levans","type":"Person","_key":"59791"} +{"label":"Anita Dangler","version":20,"id":"77231","lastModified":"1301902069000","name":"Anita Dangler","type":"Person","_key":"59792"} +{"label":"Victoria Boothby","version":20,"id":"77232","lastModified":"1301902069000","name":"Victoria Boothby","type":"Person","_key":"59793"} +{"label":"Pancho Gonz\u00e1lez","version":20,"id":"77233","lastModified":"1301902069000","name":"Pancho Gonz\u00e1lez","type":"Person","_key":"59794"} +{"label":"Night Shift","description":"A nebbish of a morgue attendant gets shunted back to the night shift where he is shackled with an obnoxious neophyte partner who dreams of the \"one great idea\" for success. His life takes a bizarre turn when a prostitute neighbour complains about the loss of her pimp. His partner, upon hearing the situation, suggests that they fill that opening themselves using the morgue at night .","id":"14742","runtime":106,"imdbId":"tt0084412","trailer":"http:\/\/www.youtube.com\/watch?v=967","version":139,"lastModified":"1301904517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4bc94465017a3c57fe01d635\/night-shift-mid.jpg","genre":"Comedy","title":"Night Shift","releaseDate":396835200000,"language":"en","type":"Movie","_key":"59795"} +{"label":"Gina Hecht","version":13,"id":"156818","lastModified":"1301903560000","name":"Gina Hecht","type":"Person","_key":"59796"} +{"label":"Nita Talbot","version":29,"id":"83436","lastModified":"1301902630000","name":"Nita Talbot","type":"Person","_key":"59797"} +{"label":"Basil Hoffman","version":20,"id":"91369","lastModified":"1301902301000","name":"Basil Hoffman","type":"Person","_key":"59798"} +{"label":"Tim Rossovich","version":13,"id":"157911","lastModified":"1301903581000","name":"Tim Rossovich","type":"Person","_key":"59799"} +{"label":"Cheryl Carter","version":13,"id":"168374","lastModified":"1301903439000","name":"Cheryl Carter","type":"Person","_key":"59800"} +{"label":"Becky Gonzalez","version":12,"id":"198996","lastModified":"1301903911000","name":"Becky Gonzalez","type":"Person","_key":"59801"} +{"label":"Corki Corman","version":8,"id":"226516","lastModified":"1301904021000","name":"Corki Corman","type":"Person","_key":"59802"} +{"label":"Jaid Barrymore","version":9,"id":"226517","lastModified":"1301904017000","name":"Jaid Barrymore","type":"Person","_key":"59803"} +{"label":"Dil Apna Punjabi","description":"Tips Films maiden Punjabi venture \"Dil Apna Punjabi\" produced by Kumar S. Taurani & Ramesh S. Taurani, written & directed by Manmohan Singh, is set in the lively village of modern day Punjab, where a joint family spanning over four generations lives under one roof a family which is united by values, tradition and warmth headed by Sardar Hardam Singh (Dara Singh).","id":"14743","runtime":0,"imdbId":"tt0810834","homepage":"http:\/\/www.dilapnapunjabi.in","version":55,"lastModified":"1301904571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4bc94469017a3c57fe01d657\/dil-apna-punjabi-mid.jpg","genre":"Drama","title":"Dil Apna Punjabi","releaseDate":1157241600000,"language":"en","type":"Movie","_key":"59804"} +{"label":"Harbhajan Mann","version":26,"id":"77238","lastModified":"1301901531000","name":"Harbhajan Mann","type":"Person","_key":"59805"} +{"label":"Neeru Bajwa","version":21,"id":"77239","lastModified":"1301901769000","name":"Neeru Bajwa","type":"Person","_key":"59806"} +{"label":"Gurpreet Guggi","version":27,"id":"77240","lastModified":"1301901713000","name":"Gurpreet Guggi","type":"Person","_key":"59807"} +{"label":"Kanwaljit Singh","version":21,"id":"77241","lastModified":"1301901713000","name":"Kanwaljit Singh","type":"Person","_key":"59808"} +{"label":"Manmohan Singh","version":32,"id":"82079","lastModified":"1301902053000","name":"Manmohan Singh","type":"Person","_key":"59809"} +{"label":"The Haunting of Molly Hartley","description":"Molly Hartley looks to put her troubled past behind her with a fresh start at a new school, where she sparks with one of the most popular students. But can her secrets stay buried, especially as she learns more about the horrific truth that awaits her once she turns 18? ","id":"14745","runtime":82,"imdbId":"tt1045655","version":254,"lastModified":"1301907570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66c\/4bc9446e017a3c57fe01d66c\/the-haunting-of-molly-hartley-mid.jpg","genre":"Drama","title":"The Haunting of Molly Hartley","releaseDate":1225411200000,"language":"en","type":"Movie","_key":"59810"} +{"label":"AnnaLynne McCord","version":24,"id":"82662","lastModified":"1301902069000","name":"AnnaLynne McCord","type":"Person","_key":"59811"} +{"label":"Mickey Liddell","version":29,"id":"48498","lastModified":"1301901696000","name":"Mickey Liddell","type":"Person","_key":"59812"} +{"label":"Streets of Fire","description":"Michael Par\u00e9 plays a biker who agrees to rescue his ex-girlfriend (a rocker played by Diane Lane) from kidnappers (led by Willem Dafoe). The ensuing battle against a nocturnal background of industrial blight, chrome, and loud music is like some fever dream of a Springsteen fan who listened to the song \"Born to Run\" far too often. The audacity of the film carries it a long way even after it becomes clear that Hill's experiment is crumbling under its own weight. Dafoe, who looked even spookier bac","id":"14746","runtime":93,"imdbId":"tt0088194","version":127,"lastModified":"1301905536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67d\/4bc94470017a3c57fe01d67d\/streets-of-fire-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Streets of Fire","releaseDate":454896000000,"language":"en","tagline":"Tonight is what it means to be young.","type":"Movie","_key":"59813"} +{"label":"Boy A","description":"The story of a young ex-con Jack, newly released from serving a prison sentence for a murder he committed as a child.","id":"14748","runtime":100,"imdbId":"tt1078188","homepage":"http:\/\/www.boyamovie.info\/","version":245,"lastModified":"1301903636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69c\/4bc94473017a3c57fe01d69c\/boy-a-mid.jpg","studio":"Film Four","genre":"Crime","title":"Boy A","releaseDate":1193529600000,"language":"en","type":"Movie","_key":"59814"} +{"label":"Shaun Evans","version":18,"id":"77265","lastModified":"1301901535000","name":"Shaun Evans","type":"Person","_key":"59815"} +{"label":"Katie Lyons","version":20,"id":"77266","lastModified":"1301901865000","name":"Katie Lyons","type":"Person","_key":"59816"} +{"label":"Alfie Owen","version":17,"id":"107128","lastModified":"1301902464000","name":"Alfie Owen","type":"Person","_key":"59817"} +{"label":"John Crowley","version":23,"id":"77269","lastModified":"1301901398000","name":"John Crowley","type":"Person","_key":"59818"} +{"label":"Space Buddies","description":"B-Dawg, Mudbud, Budderball, and all the rest of the Buddies are back, but this time, they're setting their sights even higher -- as in, the moon! With the help of their new pals Spudnick (voiced by Jason Earles) and Gravity, these pooches are go for launch. But to pull off their moon landing and make it home safely, our canine heroes will have to summon all their bravery and imagination...","id":"14749","runtime":84,"imdbId":"tt1164647","trailer":"http:\/\/www.youtube.com\/watch?v=W338J8XNHAc","version":193,"lastModified":"1301905037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b2\/4bc94475017a3c57fe01d6b2\/space-buddies-mid.jpg","studio":"Walt Disney Company","genre":"Adventure","title":"Space Buddies","releaseDate":1233619200000,"language":"en","type":"Movie","_key":"59819"} +{"label":"Mischief","description":"1956: The shy Jonathan's luck with girls changes when he wins the rebellious Gene as a friend in his last year of high school. Gene is adored by many girls and manages to teach Jonathan a few lessons. Gene himself would rather just be with one girl: his girlfriend Bunny. But since his father is poor, her parents don't accept him.","id":"14750","runtime":93,"imdbId":"tt0089601","trailer":"http:\/\/www.youtube.com\/watch?v=9EE5lEzNqsY","version":97,"lastModified":"1301905972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c7\/4bc94479017a3c57fe01d6c7\/mischief-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Mischief","releaseDate":476668800000,"language":"en","tagline":"The first time seems like the worst time, but it's the one time you'll never forget!","type":"Movie","_key":"59820"} +{"label":"Chris Nash","version":18,"id":"117148","lastModified":"1301903035000","name":"Chris Nash","type":"Person","_key":"59821"} +{"label":"Dasvidaniya","description":"The Best Goodbye Ever","id":"14751","runtime":117,"imdbId":"tt1288638","homepage":"http:\/\/www.dasvidaniya.in\/","version":69,"lastModified":"1301908389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e0\/4bc9447a017a3c57fe01d6e0\/dasvidaniya-mid.jpg","studio":"Lemon Tea Productions","genre":"Drama","title":"Dasvidaniya","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"59822"} +{"label":"Rajat Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b0\/4d2176117b9aa1280f0004b0\/rajat-kapoor-profile.jpg","version":27,"id":"78922","lastModified":"1301901446000","name":"Rajat Kapoor","type":"Person","_key":"59823"} +{"label":"Neha Dhupia","version":20,"id":"86083","lastModified":"1301902889000","name":"Neha Dhupia","type":"Person","_key":"59824"} +{"label":"Dil Chahta Hai","description":"Dil Chahta Hai is a 2001 Hindi language film written and directed by then-newcomer Farhan Akhtar, starring Aamir Khan, Saif Ali Khan, Akshaye Khanna, Preity Zinta, Sonali Kulkarni and Dimple Kapadia. It is set in modern-day urban Mumbai and focuses on a major period of transition in the lives of three young friends.","id":"14752","runtime":183,"imdbId":"tt0292490","version":102,"lastModified":"1301905678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4bc94480017a3c57fe01d71a\/dil-chahta-hai-mid.jpg","studio":"Excel Entertainment","genre":"Comedy","title":"Dil Chahta Hai","releaseDate":995932800000,"language":"en","tagline":"Welcome to a summer of their lives you will never forget.","type":"Movie","_key":"59825"} +{"label":"Farhan Akhtar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/139\/4c4f2a075e73d62ec6000139\/farhan-akhtar-profile.jpg","version":52,"id":"78916","lastModified":"1301901985000","name":"Farhan Akhtar","type":"Person","_key":"59826"} +{"label":"Sonali Kulkarni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a4\/4d2175837b9aa128860004a4\/sonali-kulkarni-profile.jpg","version":20,"id":"78920","lastModified":"1301902004000","name":"Sonali Kulkarni","type":"Person","_key":"59827"} +{"label":"Dimple Kapadia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a98\/4d2175a17b9aa17373002a98\/dimple-kapadia-profile.jpg","version":27,"id":"78921","lastModified":"1301901841000","name":"Dimple Kapadia","type":"Person","_key":"59828"} +{"label":"Suchitra Pillai-Malik","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a9d\/4d2176cd7b9aa17373002a9d\/suchitra-pillai-malik-profile.jpg","version":19,"id":"78923","lastModified":"1301902014000","name":"Suchitra Pillai-Malik","type":"Person","_key":"59829"} +{"label":"Ayub Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a36\/4d2177587b9aa1736b002a36\/ayub-khan-profile.jpg","version":22,"id":"78924","lastModified":"1301901525000","name":"Ayub Khan","type":"Person","_key":"59830"} +{"label":"Samantha Tremayne","version":18,"id":"78925","lastModified":"1301901937000","name":"Samantha Tremayne","type":"Person","_key":"59831"} +{"label":"Silk","description":"Based on the beloved, best-selling novel by Alessandro Baricco, this visually stunning film tells the story of a married French smuggler whose perilous and solitary travels lead him to the strange and captivating new world of the west to collect his materials. ","id":"14753","runtime":107,"imdbId":"tt0494834","version":146,"lastModified":"1301903299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/723\/4bc94481017a3c57fe01d723\/silk-mid.jpg","studio":"Rhombus Media","genre":"Drama","title":"Silk","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"59832"} +{"label":"The Deadly Affair","description":"Charles Dobbs is a British secret agent investigating the apparent suicide of Foreign Office official Samuel Fennan. Dobbs suspects that Fennan's wife, Elsa, a survivor of a Nazi Germany extermination camp, might have some clues, but other officials want Dobbs to drop the case. So Dobbs hires a retiring inspector, Mendel, to quietly make inquiries. As they uncover some horrible implications, Dobbs","id":"14755","runtime":115,"imdbId":"tt0061556","version":98,"lastModified":"1301906355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/728\/4bc94481017a3c57fe01d728\/the-deadly-affair-mid.jpg","studio":"Sidney Lumet Film Productions","genre":"Drama","title":"The Deadly Affair","releaseDate":-102643200000,"language":"en","type":"Movie","_key":"59833"} +{"label":"Max Adrian","version":23,"id":"77312","lastModified":"1301902127000","name":"Max Adrian","type":"Person","_key":"59834"} +{"label":"Leslie Sands","version":19,"id":"77314","lastModified":"1301901719000","name":"Leslie Sands","type":"Person","_key":"59835"} +{"label":"Ip Man","description":"A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.","id":"14756","runtime":105,"imdbId":"tt1220719","trailer":"http:\/\/www.youtube.com\/watch?v=YkHmYJmfuWg","version":302,"lastModified":"1301975713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/428\/4d03deba7b9aa11bbf001428\/ip-man-mid.jpg","studio":"Shanghai Film Studios","genre":"Action","title":"Ip Man","releaseDate":1229040000000,"language":"en","tagline":"The celebrated Kung Fu master of Bruce Lee.","type":"Movie","_key":"59836"} +{"label":"Yu Xing","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/098\/4bce36e7017a3c24c2000098\/xing-yu-profile.jpg","biography":"He was a 32nd generation martial monk at Shaolin Temple on Mount Song (\u5d69\u5c71\u5c11\u6797\u5bfa), gained his fame after playing the role of Coolie in the movie Kung Fu Hustle. He worked with Donnie Yen and Collin Chou in \"\u5c0e\u706b\u7dda\/Flash Point\".","version":25,"id":"78878","lastModified":"1301975713000","name":"Yu Xing","type":"Person","_key":"59837"} +{"label":"You-Nam Wong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7f9\/4d9aaf077b9aa164c00007f9\/you-nam-wong-profile.jpg","version":24,"id":"105422","lastModified":"1301975784000","name":"You-Nam Wong","type":"Person","_key":"59838"} +{"label":"Chen Zhi Hui","version":14,"id":"224927","lastModified":"1301975713000","name":"Chen Zhi Hui","type":"Person","_key":"59839"} +{"label":"Osama","description":"Teenage girl Osama cuts her hair and dresses like a boy to get a job and support her widowed mother and grandmother. When Osama is called by the Taliban to join school and military training she embarks on a terrifying and confusing journey as she tries to keep the Taliban from finding out her true identity.","id":"14757","runtime":83,"imdbId":"tt0368913","version":281,"lastModified":"1301417889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73e\/4bc94483017a3c57fe01d73e\/osama-mid.jpg","genre":"Drama","title":"Osama","releaseDate":1056672000000,"language":"en","type":"Movie","_key":"59840"} +{"label":"Siddiq Barmak","version":19,"id":"77273","lastModified":"1301902144000","name":"Siddiq Barmak","type":"Person","_key":"59841"} +{"label":"Marina Golbahari","version":19,"id":"77274","lastModified":"1301902144000","name":"Marina Golbahari","type":"Person","_key":"59842"} +{"label":"Arif Herati","version":19,"id":"77275","lastModified":"1301902144000","name":"Arif Herati","type":"Person","_key":"59843"} +{"label":"Zubaida Sahar","version":19,"id":"77276","lastModified":"1301902144000","name":"Zubaida Sahar","type":"Person","_key":"59844"} +{"label":"Good Dick","description":"Good Dick is a truly original, unconventional and funny love story. A solitary and troubled woman slinks into an independent video store to check out the latest in erotic offerings, catching the eye of one of the clerks from the moment she steps in. Taking it upon himself to break down her emotional barriers, the eccentric and loveable loser launches a quest to make her fall in love with him.","id":"14758","runtime":86,"imdbId":"tt0944101","homepage":"http:\/\/www.gooddickthefilm.com\/","version":263,"lastModified":"1301903507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d68\/4d4ea6085e73d617b7002d68\/good-dick-mid.jpg","studio":"Good Dick","genre":"Comedy","title":"Good Dick","releaseDate":1222992000000,"language":"en","type":"Movie","_key":"59845"} +{"label":"Marianna Palka","version":23,"id":"77775","lastModified":"1301901534000","name":"Marianna Palka","type":"Person","_key":"59846"} +{"label":"Amanda Barnett","version":19,"id":"77788","lastModified":"1301901719000","name":"Amanda Barnett","type":"Person","_key":"59847"} +{"label":"Amberlee Colson","version":20,"id":"77789","lastModified":"1301901811000","name":"Amberlee Colson","type":"Person","_key":"59848"} +{"label":"Jeremy Glazer","version":23,"id":"77777","lastModified":"1301901945000","name":"Jeremy Glazer","type":"Person","_key":"59849"} +{"label":"Josh Holt","version":20,"id":"77790","lastModified":"1301901946000","name":"Josh Holt","type":"Person","_key":"59850"} +{"label":"Dana LaRue","version":19,"id":"77791","lastModified":"1301901608000","name":"Dana LaRue","type":"Person","_key":"59851"} +{"label":"Marge Morgan","version":19,"id":"77792","lastModified":"1301901719000","name":"Marge Morgan","type":"Person","_key":"59852"} +{"label":"Hunter Stiebel","version":19,"id":"77793","lastModified":"1301901719000","name":"Hunter Stiebel","type":"Person","_key":"59853"} +{"label":"Elisabeth Waterston","version":23,"id":"77794","lastModified":"1301901719000","name":"Elisabeth Waterston","type":"Person","_key":"59854"} +{"label":"Bookies","description":"Four college friends become small-time bookies, only to find their world spinning dangerously out of control when their greed attracts the attention of organized crime.","id":"14759","runtime":88,"imdbId":"tt0302361","version":175,"lastModified":"1301904881000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/751\/4bc94487017a3c57fe01d751\/bookies-mid.jpg","genre":"Comedy","title":"Bookies","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"59855"} +{"label":"Eugene Conrad","version":161,"id":"143404","lastModified":"1301901200000","name":"Eugene Conrad","type":"Person","_key":"59856"} +{"label":"Gym Teacher","description":"Dave Stweie was America's hope for the gold in the 1988 Seoul Games.... until he ran face first into the vault.\n\nAfter Suffering humiliation on a global scale, Dave eventually faded into obscurity and became a gym teacher. A gym teacher with the drive of a former Champion, that is, who takes his job seriously. Very seriously!","id":"14760","runtime":0,"imdbId":"tt1167490","version":84,"lastModified":"1302021977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75f\/4bc94488017a3c57fe01d75f\/gym-teacher-mid.jpg","genre":"Comedy","title":"Gym Teacher","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59857"} +{"label":"Cocaine Cowboys","description":"In the 1980s, ruthless Colombian cocaine barons invaded Miami with a brand of violence unseen in this country since Prohibition-era Chicago - and it put the city on the map. \"Cocaine Cowboys\" is the true story of how Miami became the drug, murder and cash capital of the United States, told by the people who made it all happen.","id":"14761","runtime":118,"imdbId":"tt0380268","trailer":"http:\/\/www.youtube.com\/watch?v=3030","homepage":"http:\/\/www.magpictures.com\/profile.aspx?id=9833910c-fd4a-4fcb-a734-b3d252473a03","version":164,"lastModified":"1301905767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/768\/4bc94489017a3c57fe01d768\/cocaine-cowboys-mid.jpg","studio":"Rakontur","genre":"Documentary","title":"Cocaine Cowboys","releaseDate":1146009600000,"language":"en","tagline":"How Miami became the cocaine capital of the United States!","type":"Movie","_key":"59858"} +{"label":"Billy Corben","version":18,"id":"141475","lastModified":"1301902670000","name":"Billy Corben","type":"Person","_key":"59859"} +{"label":"Shadowless Sword","description":"A Wuxia adventure out of South Korea, The Legend of the Shadowless Sword is a handsome martial arts epic by Kim Yung-jun (Flying Warriors). The film's simple story allows for exceptionally creative action sequences about every three to four minutes, while simultaneously building a noble tale full of faith, love, and sacrifice. ","id":"14763","runtime":104,"imdbId":"tt0488763","version":87,"lastModified":"1301903330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77d\/4bc9448b017a3c57fe01d77d\/muyeong-geom-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"Shadowless Sword","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"59860"} +{"label":"Hyeon-jun Shin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e6\/4d253dce5e73d626bc0003e6\/hyeon-jun-shin-profile.jpg","version":38,"id":"77280","lastModified":"1301901199000","name":"Hyeon-jun Shin","type":"Person","_key":"59861"} +{"label":"Seo-jin Lee","version":21,"id":"77282","lastModified":"1301901779000","name":"Seo-jin Lee","type":"Person","_key":"59862"} +{"label":"Ki-yong Lee","version":24,"id":"77283","lastModified":"1301901855000","name":"Ki-yong Lee","type":"Person","_key":"59863"} +{"label":"Young-jun Kim","version":25,"id":"83628","lastModified":"1301902220000","name":"Young-jun Kim","type":"Person","_key":"59864"} +{"label":"The Last Deadly Mission","description":"A washed-up Marseilles cop (Auteuil) earns a chance at redemption by protecting a woman from the man who killed her parents as he is about to be released from prison.","id":"14765","runtime":125,"imdbId":"tt0920470","trailer":"http:\/\/www.youtube.com\/watch?v=d_LTyiM9uDw","version":123,"lastModified":"1301903553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79c\/4bc9448f017a3c57fe01d79c\/mr-73-mid.jpg","studio":"LGM Productions","genre":"Crime","title":"The Last Deadly Mission","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"59865"} +{"label":"G\u00e9rald Laroche","version":27,"id":"77284","lastModified":"1301901647000","name":"G\u00e9rald Laroche","type":"Person","_key":"59866"} +{"label":"Affinity","description":"A grieving upper class woman becomes a \"Lady Visitor\" at Millbank prison, hoping to escape her troubles and be a guiding figure in the lives of the female prisoners. Of all her friendships with prisoners, she is most fascinated by Selina - a medium. Set in the 1870s.","id":"14766","runtime":120,"imdbId":"tt1116182","version":124,"lastModified":"1301904919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a5\/4bc94490017a3c57fe01d7a5\/affinity-mid.jpg","studio":"Box TV","genre":"Drama","title":"Affinity","releaseDate":1230422400000,"language":"en","type":"Movie","_key":"59867"} +{"label":"Zoe Tapper","version":25,"id":"47733","lastModified":"1301901787000","name":"Zoe Tapper","type":"Person","_key":"59868"} +{"label":"Domini Blythe","version":20,"id":"77286","lastModified":"1301901586000","name":"Domini Blythe","type":"Person","_key":"59869"} +{"label":"Anne Reid","version":23,"id":"77287","lastModified":"1301901214000","name":"Anne Reid","type":"Person","_key":"59870"} +{"label":"Redemption: A Mile from Hell","description":"Can one act justify a lifetime of wickedness? Explore the darkest confines of the soul from Robert Conway's film, \"Redemption.\" A genre busting Western where there is no law, no good guys; only the bad and worse. Frank Harden is no stranger to the unlawful west, he is a killer. However, because of a tragic event he must battle his own worst enemy, himself. ","id":"14769","runtime":90,"imdbId":"tt1307002","version":60,"lastModified":"1301904268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ae\/4bc94495017a3c57fe01d7ae\/redemption-a-mile-from-hell-mid.jpg","studio":"Cas-Mor Productions","title":"Redemption: A Mile from Hell","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"59871"} +{"label":"Festival Express","description":"No overview found.","id":"14770","runtime":0,"imdbId":"tt0372279","version":311,"lastModified":"1301906838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc94496017a3c57fe01d7b7\/festival-express-mid.jpg","genre":"Documentary","title":"Festival Express","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"59872"} +{"label":"The Onion Movie","description":"Venerable newscaster Norm Archer (Len Cariou) reports the latest news in politics, health, culture and entertainment -- such as an automotive recall of decapitation-inducing \"neckbelts\" and a study finding that \"depression hits losers hardest.\" The compilation of bogus news stories, celebrity profiles and movie trailers comes courtesy of the ace satirists at The Onion.","id":"14771","runtime":80,"imdbId":"tt0392878","version":182,"lastModified":"1301903244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c0\/4bc94496017a3c57fe01d7c0\/the-onion-movie-mid.jpg","genre":"Comedy","title":"The Onion Movie","releaseDate":1212451200000,"language":"en","type":"Movie","_key":"59873"} +{"label":"The Memory Keeper's Daughter","description":"During a blizzard in 1964, Dr. David Henry (Dermot Mulroney) delivers his son Paul with the help of nurse Caroline (Emily Watson). But when Henry realizes his wife (Gretchen Mol) is also carrying a girl with Down syndrome, he hands the second child over to Caroline without his wife's knowledge. Henry's fateful decision yields grave consequences for his family over the next 20 years in this Emmy-no","id":"14772","runtime":90,"imdbId":"tt0955298","version":187,"lastModified":"1301907335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c9\/4bc94497017a3c57fe01d7c9\/the-memory-keeper-s-daughter-mid.jpg","studio":"Jaffe\/Braunstein Films","genre":"Drama","title":"The Memory Keeper's Daughter","releaseDate":1207958400000,"language":"en","type":"Movie","_key":"59874"} +{"label":"Krystal Hope Nausbaum","version":16,"id":"109879","lastModified":"1301902326000","name":"Krystal Hope Nausbaum","type":"Person","_key":"59875"} +{"label":"10 MPH","description":"Two guys quit stodgy corporate jobs, scrounged up all the savings they could, collected credit cards, and stepped - or better yet - scooted forward to follow their biggest dream: to become filmmakers. Josh Caldwell rode a Segway from Seattle to Boston, while his buddy Hunter Weeks directed a film they both shot about the experience and about the moments leading up to this crazy twist on the Americ","id":"14773","runtime":92,"imdbId":"tt0446083","version":134,"lastModified":"1301907095000","genre":"Documentary","title":"10 MPH","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59876"} +{"label":"Hunter Weeks","version":21,"id":"77306","lastModified":"1301901948000","name":"Hunter Weeks","type":"Person","_key":"59877"} +{"label":"Cheech & Chong's The Corsican Brothers","description":"Two brothers who can feel each others' pain and pleasure mess up the French revolution.","id":"14774","runtime":82,"imdbId":"tt0087042","version":169,"lastModified":"1301903553000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7da\/4bc94498017a3c57fe01d7da\/cheech-chong-s-the-corsican-brothers-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Cheech & Chong's The Corsican Brothers","releaseDate":459734400000,"language":"en","type":"Movie","_key":"59878"} +{"label":"Shelby Chong","version":28,"id":"87152","lastModified":"1301902028000","name":"Shelby Chong","type":"Person","_key":"59879"} +{"label":"Rikki Marin","version":21,"id":"87151","lastModified":"1301902767000","name":"Rikki Marin","type":"Person","_key":"59880"} +{"label":"Erskineville Kings","description":"No overview found.","id":"14775","runtime":90,"imdbId":"tt0212936","version":67,"lastModified":"1301906476000","studio":"Radical Media","title":"Erskineville Kings","releaseDate":938044800000,"language":"en","type":"Movie","_key":"59881"} +{"label":"How to Get Ahead in Advertising","description":"Dennis Dimbleby Bagley is a brilliant young advertising executive who can't come up with a slogan to sell a revolutionary new pimple cream. His obsessive worrying affects not only his relationship with his wife, his friends and his boss, but also his own body - when he grows a large stress-related boil on his shoulder. But when the boil grows eyes and a mouth and starts talking.","id":"14776","runtime":94,"imdbId":"tt0097531","version":141,"lastModified":"1301905381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7eb\/4bc94499017a3c57fe01d7eb\/how-to-get-ahead-in-advertising-mid.jpg","studio":"Handmade Films Ltd.","genre":"Comedy","title":"How to Get Ahead in Advertising","releaseDate":610329600000,"language":"en","type":"Movie","_key":"59882"} +{"label":"Just Visiting","description":"A knight and his valet are plagued by a witch, and to repair the damage they make use of the services of a wizard. However, something goes wrong and they are transported from the 12th century to the year 2000. There the knight meets some of his family and slowly learns what this new century is like. However, he still needs to get back to the 12th century to deal with the witch, so he starts looking for a wizard","id":"14777","runtime":88,"imdbId":"tt0189192","version":195,"lastModified":"1301902088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f9\/4bc9449a017a3c57fe01d7f9\/just-visiting-mid.jpg","studio":"Soci\u00e9t\u00e9 des Etablissements L. Gaumont","genre":"Comedy","title":"Just Visiting","releaseDate":986515200000,"language":"en","type":"Movie","_key":"59883"} +{"label":"Last Orders","description":"Jack Dodd was a London butcher who enjoyed a pint with his mates for over 50 years. When he died, he died as he lived, with a smile on his face watching a horse race on which he had bet, with borrowed money. But before he died he had a final request, 'Last Orders', that his ashes be scattered in the sea at Margate. The movie follows his mates, Ray, Lenny and Vic and his foster son Vince as they journey to the sea with the ashes. Along the way, the threads of their lives, their loves and their di","id":"14778","runtime":109,"imdbId":"tt0253200","version":190,"lastModified":"1301904880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0be\/4cdff35b7b9aa168af0000be\/last-orders-mid.jpg","studio":"Future Films Ltd.","genre":"Comedy","title":"Last Orders","releaseDate":1000080000000,"language":"en","type":"Movie","_key":"59884"} +{"label":"The Unsaid","description":"No overview found.","id":"14782","runtime":111,"imdbId":"tt0258967","version":127,"lastModified":"1301905195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80a\/4bc9449c017a3c57fe01d80a\/the-unsaid-mid.jpg","studio":"New Legend Media","genre":"Thriller","title":"The Unsaid","releaseDate":1000425600000,"language":"en","type":"Movie","_key":"59885"} +{"label":"Trevor Blumas","version":25,"id":"107040","lastModified":"1301902464000","name":"Trevor Blumas","type":"Person","_key":"59886"} +{"label":"David Millbern","version":27,"id":"97854","lastModified":"1301902516000","name":"David Millbern","type":"Person","_key":"59887"} +{"label":"The Fall","description":"In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story about 5 mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality starts to blur as the tale advances.","id":"14784","runtime":117,"imdbId":"tt0460791","trailer":"http:\/\/www.youtube.com\/watch?v=1346","version":250,"lastModified":"1301903052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/827\/4bc944a1017a3c57fe01d827\/the-fall-mid.jpg","studio":"Absolute Entertainment","genre":"Adventure","title":"The Fall","releaseDate":1157760000000,"language":"en","type":"Movie","_key":"59888"} +{"label":"Catinca Untaru","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/686\/4d5a63595e73d65e87000686\/catinca-untaru-profile.jpg","version":22,"id":"77289","lastModified":"1301901456000","name":"Catinca Untaru","type":"Person","_key":"59889"} +{"label":"Kim Uylenbroek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/701\/4d5a64395e73d65e99000701\/kim-uylenbroek-profile.jpg","version":22,"id":"77290","lastModified":"1301901511000","name":"Kim Uylenbroek","type":"Person","_key":"59890"} +{"label":"Aiden Lithgow","version":20,"id":"77291","lastModified":"1301901552000","name":"Aiden Lithgow","type":"Person","_key":"59891"} +{"label":"Sean Gilder","version":27,"id":"77292","lastModified":"1301901574000","name":"Sean Gilder","type":"Person","_key":"59892"} +{"label":"Bandit Queen","description":"No overview found.","id":"14785","runtime":119,"imdbId":"tt0109206","version":71,"lastModified":"1301649034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c6\/4c49be267b9aa115fc0000c6\/bandit-queen-mid.jpg","studio":"Channel Four Films","genre":"Drama","title":"Bandit Queen","releaseDate":779068800000,"language":"en","type":"Movie","_key":"59893"} +{"label":"Gotti","description":"John Gotti, the head of a small New York mafia crew breaks a few of the old family rules. He rises to become the head of the Gambino family and the most well-known mafia boss in America. Life is good, but suspicion creeps in, and greed, rule-breaking and his high public profile all threaten to topple him.","id":"14786","runtime":116,"imdbId":"tt0116441","trailer":"http:\/\/www.youtube.com\/watch?v=970","version":75,"lastModified":"1301903360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83e\/4bc944a2017a3c57fe01d83e\/gotti-mid.jpg","studio":"HBO Films","genre":"Crime","title":"Gotti","releaseDate":840240000000,"language":"en","type":"Movie","_key":"59894"} +{"label":"Tom and Jerry: The Magic Ring","description":"The world's favourite cat and mouse team bounds back into action in an all-new full-length animated adventure certain to cast its spell over the entire family\n\nLeft in charge of a priceless magical ring by his young wizard master, Tom is horrified when the ring gets stuck on Jerry's head, who then runs off into the city! Before you can say \"abracadabra\", the entire town is hot on our heroes' tails","id":"14787","runtime":62,"imdbId":"tt0303151","trailer":"http:\/\/www.youtube.com\/watch?v=971","version":110,"lastModified":"1301904180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/847\/4bc944a3017a3c57fe01d847\/tom-and-jerry-the-magic-ring-mid.jpg","genre":"Animation","title":"Tom and Jerry: The Magic Ring","releaseDate":1015891200000,"language":"en","type":"Movie","_key":"59895"} +{"label":"Charlie Schlatter","version":25,"id":"77293","lastModified":"1301901558000","name":"Charlie Schlatter","type":"Person","_key":"59896"} +{"label":"James T. Walker","version":20,"id":"77294","lastModified":"1301901865000","name":"James T. Walker","type":"Person","_key":"59897"} +{"label":"Bubble","description":"Set against the backdrop of a decaying Midwestern town, a murder becomes the focal point of three people who work in a doll factory.","id":"14788","runtime":73,"imdbId":"tt0454792","homepage":"http:\/\/www.bubblethefilm.com\/","version":134,"lastModified":"1301905952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85a\/4bc944a4017a3c57fe01d85a\/bubble-mid.jpg","genre":"Crime","title":"Bubble","releaseDate":1125705600000,"language":"en","type":"Movie","_key":"59898"} +{"label":"The Last Sentinel","description":"No emotion. No fear. No pain. They were the perfect soldiers to protect civilization until the drone police became the perfect enemy. With little hope left for mankind, Tallis, an electronically enhanced soldier, rescues a survivor from a failed resistance mission. She will have to learn to fight and think like a machine for the final battle to save the human race.","id":"14789","runtime":93,"imdbId":"tt0758762","version":317,"lastModified":"1301904514000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/863\/4bc944a5017a3c57fe01d863\/the-last-sentinel-mid.jpg","genre":"Action","title":"The Last Sentinel","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59899"} +{"label":"Michael McIntyre: Live & Laughing","description":"\nAcclaimed stand-up comedian Michael McIntyre delivers a hilarious performance to a receptive crowd at London's Hammersmith Apollo.","id":"14790","runtime":84,"imdbId":"tt1327937","homepage":"http:\/\/www.michaelmcintyre.co.uk\/","version":60,"lastModified":"1301904469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/870\/4bc944a7017a3c57fe01d870\/michael-mcintyre-live-laughing-mid.jpg","studio":"Open Mike Productions","genre":"Comedy","title":"Michael McIntyre: Live & Laughing","releaseDate":1226880000000,"language":"en","type":"Movie","_key":"59900"} +{"label":"Michael McIntyre","version":27,"id":"77297","lastModified":"1301901679000","name":"Michael McIntyre","type":"Person","_key":"59901"} +{"label":"Paul Wheeler","version":31,"id":"66124","lastModified":"1301901208000","name":"Paul Wheeler","type":"Person","_key":"59902"} +{"label":"Les deux mondes","description":"A French tradesman travels in time and liberates an oppressed tribe in another world.","id":"14791","runtime":105,"imdbId":"tt0808230","homepage":"http:\/\/www.lesdeuxmondes-lefilm.com\/","version":67,"lastModified":"1301903398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87d\/4bc944a8017a3c57fe01d87d\/les-deux-mondes-mid.jpg","studio":"Gaumont","title":"Les deux mondes","releaseDate":1195603200000,"language":"en","type":"Movie","_key":"59903"} +{"label":"Florence Loiret Caille","version":24,"id":"77310","lastModified":"1301901702000","name":"Florence Loiret Caille","type":"Person","_key":"59904"} +{"label":"Daniel Cohen","version":25,"id":"77309","lastModified":"1301901970000","name":"Daniel Cohen","type":"Person","_key":"59905"} +{"label":"George Lucas in Love","description":"1967 film student George Lucas has writer's block trying to finish his \"Space Wheat\" script, until a beautiful fellow student with a familiar hairstyle teaches him that the best stories are in plain sight.","id":"14792","runtime":8,"imdbId":"tt0203523","version":94,"lastModified":"1301906636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/886\/4bc944ab017a3c57fe01d886\/george-lucas-in-love-mid.jpg","studio":"Quality Films Entertainment","genre":"Comedy","title":"George Lucas in Love","releaseDate":937612800000,"language":"en","tagline":"Dozens of years ago, in a nearby galaxy...","type":"Movie","_key":"59906"} +{"label":"Jason Peck","version":18,"id":"132317","lastModified":"1301903010000","name":"Jason Peck","type":"Person","_key":"59907"} +{"label":"Jeff Wiens","version":17,"id":"132318","lastModified":"1301902749000","name":"Jeff Wiens","type":"Person","_key":"59908"} +{"label":"Patrick Kerr","version":17,"id":"132319","lastModified":"1301902749000","name":"Patrick Kerr","type":"Person","_key":"59909"} +{"label":"Heima","description":"In the summer of 2006, Sigur R\u00f3s returned home to play a series of free, unannounced concerts for the people of Iceland...","id":"14793","runtime":97,"imdbId":"tt1094594","trailer":"http:\/\/www.youtube.com\/watch?v=RZYIfUdIyfs","homepage":"http:\/\/www.heimafilm.com\/","version":100,"lastModified":"1301904180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88f\/4bc944ac017a3c57fe01d88f\/heima-mid.jpg","genre":"Music","title":"Heima","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"59910"} +{"label":"Jon Thor Birgisson","biography":"J\u00f3n \u201cJ\u00f3nsi\u201d \u00de\u00f3r Birgisson is the guitarist and vocalist for the Icelandic post-rock band Sigur R\u00f3s. He is known for his use of a cello bow on guitar and his falsetto voice. J\u00f3nsi is blind in his right eye. He is openly gay, and his boyfriend Alex Somers has done much of the graphic design for Sigur R\u00f3s. They also perform together as an art collaboration called J\u00f3nsi & Alex. They released their self-titled first book in November 2006, which was an embossed hardcover limited to 1000 copies, along ","version":18,"birthday":"167439600000","id":"123286","lastModified":"1301903069000","name":"Jon Thor Birgisson","type":"Person","_key":"59911"} +{"label":"Georg Holm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/338\/4c3b50327b9aa10ed9000338\/georg-holm-profile.jpg","biography":"Georg \"Goggi\" H\u00f3lm is the bassist of the Icelandic post-rock band Sigur R\u00f3s. H\u00f3lm is the most prominent member of Sigur R\u00f3s in the English press, as he does significantly more press than the other members due to his being the most fluent English-speaker in the band; part of Georg's fluency in English comes from briefly living in Brighton, England.","version":17,"birthday":"197593200000","id":"123294","lastModified":"1301903076000","name":"Georg Holm","type":"Person","_key":"59912"} +{"label":"Kjartan Sveinsson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/349\/4c3b50a67b9aa10edc000349\/kjartan-sveinsson-profile.jpg","biography":"Kjartan \"Kjarri\" Sveinsson is a keyboardist of the Icelandic post-rock band Sigur R\u00f3s. He joined the band in 1998. Being something of a multi-instrumentalist, he has also played such instruments as the flute, tin whistle, oboe and even the banjo, as well as many of the unorthodox instruments that contribute to Sigur R\u00f3s's distinctive sound. He also plays the guitar.","version":18,"id":"123288","lastModified":"1301902723000","name":"Kjartan Sveinsson","type":"Person","_key":"59913"} +{"label":"Orri P. Dyrason","biography":"Orri P\u00e1ll D\u00fdrason is the drummer for Sigur R\u00f3s. He joined the band in 1999, shortly after the recording of the studio album \u00c1g\u00e6tis byrjun, when the previous drummer, \u00c1g\u00fast \u00c6var Gunnarsson, left the band.","version":18,"birthday":"236818800000","id":"123295","lastModified":"1301903069000","name":"Orri P. Dyrason","type":"Person","_key":"59914"} +{"label":"Hildur \u00c1rs\u00e6lsd\u00f3ttir","version":20,"id":"123296","lastModified":"1301903036000","name":"Hildur \u00c1rs\u00e6lsd\u00f3ttir","type":"Person","_key":"59915"} +{"label":"Mar\u00eda Huld Markan Sigf\u00fasd\u00f3ttir","version":18,"id":"123297","lastModified":"1301902379000","name":"Mar\u00eda Huld Markan Sigf\u00fasd\u00f3ttir","type":"Person","_key":"59916"} +{"label":"Edda R\u00fan \u00d3lafsd\u00f3ttir","version":20,"id":"123298","lastModified":"1301903081000","name":"Edda R\u00fan \u00d3lafsd\u00f3ttir","type":"Person","_key":"59917"} +{"label":"S\u00f3lr\u00fan Sumarli\u00f0ad\u00f3ttir","version":18,"id":"123299","lastModified":"1301902723000","name":"S\u00f3lr\u00fan Sumarli\u00f0ad\u00f3ttir","type":"Person","_key":"59918"} +{"label":"If...","description":"In this allegorical story, a revolution lead by pupil Mick Travis takes place at an old established private school in England. ","id":"14794","runtime":111,"imdbId":"tt0063850","version":86,"lastModified":"1301902378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89d\/4bc944ad017a3c57fe01d89d\/if-mid.jpg","studio":"Memorial Enterprises","genre":"Drama","title":"If...","releaseDate":-10972800000,"language":"en","type":"Movie","_key":"59919"} +{"label":"Lindsay Anderson","version":22,"id":"78157","lastModified":"1301902144000","name":"Lindsay Anderson","type":"Person","_key":"59920"} +{"label":"Richard Warwick","version":20,"id":"138563","lastModified":"1301902736000","name":"Richard Warwick","type":"Person","_key":"59921"} +{"label":"Baby Blues","description":"On a secluded family farm, a mother suffers a psychotic break due to postpartum depression, forcing the eldest son to protect his sibling from the mother they have always known and loved.","id":"14795","runtime":85,"imdbId":"tt0972359","version":122,"lastModified":"1301702545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a6\/4bc944ad017a3c57fe01d8a6\/baby-blues-mid.jpg","genre":"Thriller","title":"Baby Blues","releaseDate":1217894400000,"language":"en","type":"Movie","_key":"59922"} +{"label":"Warriors of Heaven and Earth","description":"A Chinese emissary is sent to the Gobi desert to execute a renegade soldier. When a caravan transporting a Buddhist monk and a valuable treasure is threatened by thieves, however, the two warriors might unite to protect the travelers.","id":"14797","runtime":114,"imdbId":"tt0374330","homepage":"http:\/\/www.imdb.com\/title\/tt0374330\/","version":162,"lastModified":"1301904832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b3\/4bc944ae017a3c57fe01d8b3\/tian-di-ying-xiong-mid.jpg","genre":"Action","title":"Warriors of Heaven and Earth","releaseDate":1064275200000,"language":"en","type":"Movie","_key":"59923"} +{"label":"Xueqi Wang","version":28,"id":"77303","lastModified":"1301901456000","name":"Xueqi Wang","type":"Person","_key":"59924"} +{"label":"Ping He","version":22,"id":"77305","lastModified":"1301901493000","name":"Ping He","type":"Person","_key":"59925"} +{"label":"For Your Consideration","description":"Three actors learn that their respective performances in the film \"Home for Purim,\" a drama set in the mid-1940s American South, are generating award-season buzz.","id":"14799","runtime":83,"imdbId":"tt0470765","version":284,"lastModified":"1301905396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c4\/4d3ddd3e5e73d622d10002c4\/for-your-consideration-mid.jpg","studio":"Shangri-La Entertainment","genre":"Comedy","title":"For Your Consideration","releaseDate":1164153600000,"language":"en","type":"Movie","_key":"59926"} +{"label":"Colossus: The Forbin Project","description":"Forbin is the designer of an incredibly sophisticated computer that will run all of America's nuclear defenses. Shortly after being turned on, it detects the existence of Guardian, the Soviet counterpart, previously unknown to US Planners. Both computers insist that they be linked, and after taking safeguards to preserve confidential material, each side agrees to allow it. As soon as the link is e","id":"14801","runtime":100,"imdbId":"tt0064177","version":99,"lastModified":"1301904966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/409\/4cb1e6055e73d65b84000409\/colossus-the-forbin-project-mid.jpg","genre":"Action","title":"Colossus: The Forbin Project","releaseDate":8380800000,"language":"en","type":"Movie","_key":"59927"} +{"label":"Vitus","description":"Vitus tells the story of a highly-gifted boy (played by real-life piano prodigy Teo Gheorghiu) whose parents have demanding and ambitious plans for him.","id":"14804","runtime":100,"imdbId":"tt0478829","version":145,"lastModified":"1301907570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ee\/4bc944b2017a3c57fe01d8ee\/vitus-mid.jpg","genre":"Drama","title":"Vitus","releaseDate":1166745600000,"language":"en","type":"Movie","_key":"59928"} +{"label":"Teo Gheorghiu","version":16,"id":"143020","lastModified":"1301902499000","name":"Teo Gheorghiu","type":"Person","_key":"59929"} +{"label":"Fabrizio Borsani","version":16,"id":"143021","lastModified":"1301902411000","name":"Fabrizio Borsani","type":"Person","_key":"59930"} +{"label":"Urs Jucker","version":16,"id":"143022","lastModified":"1301902405000","name":"Urs Jucker","type":"Person","_key":"59931"} +{"label":"Fredi M. Murer","version":17,"id":"143018","lastModified":"1301902475000","name":"Fredi M. Murer","type":"Person","_key":"59932"} +{"label":"Bait","description":"An ex-con is used by police to lure a criminal out of hiding.","id":"14805","runtime":119,"imdbId":"tt0211938","version":136,"lastModified":"1301903664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f7\/4bc944b2017a3c57fe01d8f7\/bait-mid.jpg","genre":"Action","title":"Bait","releaseDate":968976000000,"language":"en","type":"Movie","_key":"59933"} +{"label":"Impulse","description":"Acting on impulse, Claire Dennison (Willa Ford), enjoys a brief fling with a sexy stranger (a dead ringer for her husband), only to realize that the object of her desire is a crazed, manipulative, and tenacious psychopath.","id":"14806","runtime":101,"imdbId":"tt1078899","version":133,"lastModified":"1301905631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/900\/4bc944b3017a3c57fe01d900\/impulse-mid.jpg","studio":"Montage Entertainment","genre":"Mystery","title":"Impulse","releaseDate":1208217600000,"language":"en","tagline":"Love Hurts. Lust Kills.","type":"Movie","_key":"59934"} +{"label":"Robert Moloney","version":23,"id":"77315","lastModified":"1301901695000","name":"Robert Moloney","type":"Person","_key":"59935"} +{"label":"Pablo Silveira","version":21,"id":"77316","lastModified":"1301902030000","name":"Pablo Silveira","type":"Person","_key":"59936"} +{"label":"The Long Good Friday","description":"Harold, a prosperous English gangster, is about to close a lucrative new deal when bombs start showing up in very inconvenient places. A mysterious syndicate is trying to muscle in on his action, and Harold wants to know who they are. He finds out soon enough, and bloody mayhem ensues.","id":"14807","runtime":114,"imdbId":"tt0081070","version":369,"lastModified":"1301903187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eef\/4d9320bf5e73d6225d000eef\/the-long-good-friday-mid.jpg","genre":"Crime","title":"The Long Good Friday","releaseDate":341884800000,"language":"en","type":"Movie","_key":"59937"} +{"label":"Battle of Wits","description":"In 370 B.C, China was separated as seven nations and several other small tribes, one of these being the city state of Liang. The nation of Zhao is led by the terrifying Xiang Yangzhong who orders his troops to conquer the small city. Leaping to the defense of the people of Liang is 'Ge Li' from the Mo-Tsu tribe, their last hope from the terrors of Yangzhong's troops.","id":"14808","runtime":133,"imdbId":"tt0485863","version":114,"lastModified":"1301904721000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/917\/4bc944b4017a3c57fe01d917\/muk-gong-mid.jpg","studio":"Boram Entertainment Inc.","genre":"Action","title":"Battle of Wits","releaseDate":1164240000000,"language":"en","type":"Movie","_key":"59938"} +{"label":"Si Won Choi","version":21,"id":"77318","lastModified":"1301902175000","name":"Si Won Choi","type":"Person","_key":"59939"} +{"label":"Zhiwen Wang","version":28,"birthday":"-111114000000","id":"109435","birthplace":"Shanghai, China","lastModified":"1301901597000","name":"Zhiwen Wang","type":"Person","_key":"59940"} +{"label":"Chi Leung 'Jacob' Cheung","version":21,"id":"77319","lastModified":"1301901581000","name":"Chi Leung 'Jacob' Cheung","type":"Person","_key":"59941"} +{"label":"Stark Raving Mad","description":"A grew runs a nightclub to cover up a bank robbery taking place in the basement of the club...","id":"14809","runtime":0,"imdbId":"tt0286152","version":129,"lastModified":"1301902730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/921\/4bc944b8017a3c57fe01d921\/stark-raving-mad-mid.jpg","genre":"Comedy","title":"Stark Raving Mad","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"59942"} +{"label":"Patrick Been","version":6,"id":"228953","lastModified":"1301904058000","name":"Patrick Been","type":"Person","_key":"59943"} +{"label":"John B. Crye","version":6,"id":"228954","lastModified":"1301904059000","name":"John B. Crye","type":"Person","_key":"59944"} +{"label":"Dave Foley","version":6,"id":"228955","lastModified":"1301904043000","name":"Dave Foley","type":"Person","_key":"59945"} +{"label":"Murder.com","description":"Devastated upon receiving news that her estranged sister has been brutally murdered and frustrated that local police refuse to offer much help, a promising South Beach lawyer unearths some sordid details about her late sibling in this thriller highlighting the dangers of online dating.","id":"14810","runtime":85,"imdbId":"tt1194606","homepage":"http:\/\/www.murderdotcom.com","version":77,"lastModified":"1301907190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92a\/4bc944b8017a3c57fe01d92a\/murder-com-mid.jpg","genre":"Mystery","title":"Murder.com","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"59946"} +{"label":"David Chokachi","version":20,"id":"77321","lastModified":"1301901779000","name":"David Chokachi","type":"Person","_key":"59947"} +{"label":"Robyn Lively","version":24,"id":"15905","lastModified":"1301901278000","name":"Robyn Lively","type":"Person","_key":"59948"} +{"label":"Rex Piano","version":23,"id":"77322","lastModified":"1301901948000","name":"Rex Piano","type":"Person","_key":"59949"} +{"label":"Fiddler On The Roof","description":"This lavishly produced and critically acclaimed screen adaptation of the international stage sensation tells the life-affirming story of Tevye (Topol), a poor milkman whose love, pride and faith help him face the oppression of turn-of-the-century Czarist Russia.\nNominated for eight Academy Awards.","id":"14811","runtime":181,"imdbId":"tt0067093","trailer":"http:\/\/www.youtube.com\/watch?v=DbZkIIhIGto","version":189,"lastModified":"1301906841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02a\/4c1b83427b9aa117a500002a\/fiddler-on-the-roof-mid.jpg","genre":"Drama","title":"Fiddler On The Roof","releaseDate":57974400000,"language":"en","type":"Movie","_key":"59950"} +{"label":"Norma Crane","version":21,"id":"129550","lastModified":"1301901815000","name":"Norma Crane","type":"Person","_key":"59951"} +{"label":"Leonard Frey","version":17,"id":"112253","lastModified":"1301901715000","name":"Leonard Frey","type":"Person","_key":"59952"} +{"label":"Molly Picon","version":20,"id":"129551","lastModified":"1301901560000","name":"Molly Picon","type":"Person","_key":"59953"} +{"label":"Hawaii, Oslo","description":"No overview found.","id":"14812","runtime":125,"imdbId":"tt0427339","version":102,"lastModified":"1301648026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/346\/4d615b0b5e73d60c62003346\/hawaii-oslo-mid.jpg","studio":"Paradox Spillefilm A\/S","genre":"Drama","title":"Hawaii, Oslo","releaseDate":1095984000000,"language":"en","type":"Movie","_key":"59954"} +{"label":"Mickey's Christmas Carol","description":"It is an adaptation of the Charles Dickens classic A Christmas Carol, featuring Scrooge McDuck as his namesake and inspiration Ebenezer Scrooge and Mickey Mouse as Bob Cratchit. This film was based on a 1972 audio musical entitled Disney's A Christmas Carol. It is a twenty-four minute animated short film produced by Walt Disney Productions as an accompaniment to a re-release of The Rescuers.\r\n","id":"14813","runtime":26,"imdbId":"tt0085936","version":142,"lastModified":"1301904229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/962\/4bc944bd017a3c57fe01d962\/mickey-s-christmas-carol-mid.jpg","studio":"Walt Disney Pictures","genre":"Family","title":"Mickey's Christmas Carol","releaseDate":440380800000,"language":"en","tagline":"He's back! Mickey Mouse - in his first new motion picture in 30 years","type":"Movie","_key":"59955"} +{"label":"Clarence Nash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b01\/4d28f9905e73d626be002b01\/clarence-nash-profile.jpg","version":112,"id":"78077","lastModified":"1301901371000","name":"Clarence Nash","type":"Person","_key":"59956"} +{"label":"Hal Smith","version":27,"id":"25627","lastModified":"1301901855000","name":"Hal Smith","type":"Person","_key":"59957"} +{"label":"Chemical Wedding","description":"A shy, stuttering professor brings satanist Aleister Crowley back to life.","id":"14814","runtime":106,"imdbId":"tt0974536","trailer":"http:\/\/www.youtube.com\/watch?v=972","homepage":"http:\/\/www.chemicalweddingmovie.co.uk\/","version":81,"lastModified":"1301905978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc944be017a3c57fe01d96b\/chemical-wedding-mid.jpg","studio":"Bill and Ben Productions","genre":"Horror","title":"Chemical Wedding","releaseDate":1209859200000,"language":"en","type":"Movie","_key":"59958"} +{"label":"Kal Weber","version":22,"id":"77324","lastModified":"1301901690000","name":"Kal Weber","type":"Person","_key":"59959"} +{"label":"Lucy Cudden","version":19,"id":"77325","lastModified":"1301901608000","name":"Lucy Cudden","type":"Person","_key":"59960"} +{"label":"Jud Charlton","version":19,"id":"77326","lastModified":"1301902069000","name":"Jud Charlton","type":"Person","_key":"59961"} +{"label":"Paul McDowell","version":19,"id":"77327","lastModified":"1301902069000","name":"Paul McDowell","type":"Person","_key":"59962"} +{"label":"Julian Doyle","version":31,"id":"10718","lastModified":"1299497602000","name":"Julian Doyle","type":"Person","_key":"59963"} +{"label":"The Wind and the Lion","description":"At the beginning of the 20th century an American woman is abducted in Morocco by Berbers. The attempts to free her range from diplomatic pressure to military intervention.","id":"14815","runtime":119,"imdbId":"tt0073906","version":127,"lastModified":"1301906100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/974\/4bc944be017a3c57fe01d974\/the-wind-and-the-lion-mid.jpg","genre":"Action","title":"The Wind and the Lion","releaseDate":183513600000,"language":"en","type":"Movie","_key":"59964"} +{"label":"Dog Bite Dog","description":"Dog Bite Dog is a 2006 Hong Kong action crime thriller directed by Soi Cheang and starring Edison Chen as a brutal Cambodian assassin, desperately trying to evade police after completing an assignment in Hong Kong.","id":"14816","runtime":109,"imdbId":"tt0819765","version":134,"lastModified":"1300979992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97d\/4bc944bf017a3c57fe01d97d\/dog-bite-dog-mid.jpg","genre":"Action","title":"Dog Bite Dog","releaseDate":1155772800000,"language":"en","type":"Movie","_key":"59965"} +{"label":"Good Burger","description":"School is out and Dexter Reed's plans for summer vacation is ruined after getting into a car accident with his teacher. To pay off his teacher's car, Dexter is forced to get a summer job at a fast food restaurant. While working at his summer job, Dexter meets a new friend Ed and the restaurant competes with a giant fast food chain across the street.","id":"14817","runtime":103,"imdbId":"tt0119215","version":106,"lastModified":"1301975116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/986\/4bc944bf017a3c57fe01d986\/good-burger-mid.jpg","studio":"Nickelodeon Movies","genre":"Comedy","title":"Good Burger","releaseDate":869788800000,"language":"en","tagline":"A comedy with everything on it.","type":"Movie","_key":"59966"} +{"label":"Dan Schneider","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fd\/4d9aad3f7b9aa164cc0007fd\/dan-schneider-profile.jpg","version":30,"id":"70804","lastModified":"1301975328000","name":"Dan Schneider","type":"Person","_key":"59967"} +{"label":"Dynamite Warrior","description":"No overview found.","id":"14818","runtime":103,"imdbId":"tt0963915","version":117,"lastModified":"1301907707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/994\/4bc944c3017a3c57fe01d994\/dynamite-warrior-mid.jpg","genre":"Action","title":"Dynamite Warrior","releaseDate":1166659200000,"language":"en","type":"Movie","_key":"59968"} +{"label":"Heavyweights","description":"Camp Hope is a summer retreat for overweight boys run by a kindly couple who make the campers feel comfortable with their extra pounds. But when tyrannical fitness guru Tony buys the camp, he puts the kids on a cruel regimen that goes too far. Sick of the endless weeks of \"all work and no play,\" the kids stage a coup and reclaim their summer of fun.","id":"14819","runtime":100,"imdbId":"tt0110006","version":108,"lastModified":"1301903781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/578\/4d3847e97b9aa17af800e578\/heavyweights-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"Heavyweights","releaseDate":792979200000,"language":"en","tagline":"They don't run the fastest. They don't jump the highest. But they sure are getting the last laugh. Heavyweights. They never met a hot dog they didn't like ... until now.","type":"Movie","_key":"59969"} +{"label":"Aaron Schwartz","version":20,"id":"77337","lastModified":"1301901719000","name":"Aaron Schwartz","type":"Person","_key":"59970"} +{"label":"Tom McGowan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e51\/4d934be57b9aa11991000e51\/tom-mcgowan-profile.jpg","version":22,"id":"77338","lastModified":"1301901865000","name":"Tom McGowan","type":"Person","_key":"59971"} +{"label":"Music Within","description":"The true story of the brilliant public speaker Richard Pimentel. He returned from Vietnam severely hearing -impaired and finds a new purpose in his landmark efforts on the behalf of Americans with disabilities.","id":"14820","runtime":94,"imdbId":"tt0422783","trailer":"http:\/\/www.youtube.com\/watch?v=1869","version":126,"lastModified":"1301903299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7e\/4d6632fe5e73d66a5c000f7e\/music-within-mid.jpg","genre":"Drama","title":"Music Within","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"59972"} +{"label":"John Livingston","version":22,"id":"77331","lastModified":"1301901940000","name":"John Livingston","type":"Person","_key":"59973"} +{"label":"Ridge Canipe","version":19,"id":"77332","lastModified":"1301901719000","name":"Ridge Canipe","type":"Person","_key":"59974"} +{"label":"Clint Jung","version":16,"id":"94121","lastModified":"1301902464000","name":"Clint Jung","type":"Person","_key":"59975"} +{"label":"Janssen Van De Yacht","version":16,"id":"94122","lastModified":"1301902634000","name":"Janssen Van De Yacht","type":"Person","_key":"59976"} +{"label":"Steven Sawalich","version":16,"id":"94120","lastModified":"1301901865000","name":"Steven Sawalich","type":"Person","_key":"59977"} +{"label":"Escape to Witch Mountain","description":"Tia and Tony are two orphaned youngsters with extraordinary powers. Lucas Deranian poses as their uncle in order to get the kids into the clutches of Deranian's megalomaniacal boss, evil millionaire Aristotle Bolt, who wants to exploit them. Jason, a cynical widower, helps Tia and Tony escape to witch mountain, while at the same time Tia and Tony help Jason escape the pain of the loss of his wife.","id":"14821","runtime":97,"imdbId":"tt0072951","version":125,"lastModified":"1301903589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b4\/4bc944c6017a3c57fe01d9b4\/escape-to-witch-mountain-mid.jpg","studio":"Buena Vista Pictures","genre":"Action","title":"Escape to Witch Mountain","releaseDate":164592000000,"language":"en","type":"Movie","_key":"59978"} +{"label":"John Hough","version":29,"id":"19032","lastModified":"1301995822000","name":"John Hough","type":"Person","_key":"59979"} +{"label":"Return From Witch Mountain","description":"In this sequal to \"Escape From Witch Mountain,\" Tia and Tony leave their safe refuge on witch mountain for a trip to Los Angeles. Tony is kidnapped by the evil Dr. Gannon and his spinster partner Letha and brainwashed into helping Gannon and Letha commit various crimes. It's up to Tia and a gang of truant kids to rescue Tony and prevent a major disaster.","id":"14822","runtime":95,"imdbId":"tt0078158","version":100,"lastModified":"1301905187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b9\/4bc944c6017a3c57fe01d9b9\/return-from-witch-mountain-mid.jpg","genre":"Action","title":"Return From Witch Mountain","releaseDate":258336000000,"language":"en","type":"Movie","_key":"59980"} +{"label":"Jack Soo","version":20,"id":"87067","lastModified":"1301902743000","name":"Jack Soo","type":"Person","_key":"59981"} +{"label":"London to Brighton","description":"It's 3:07am and two girls burst into a run down London toilet. Joanne is crying her eyes out and her clothing is ripped. Kelly's face is bruised and starting to swell. Duncan Allen lies in his bathroom bleeding to death. Duncan's son, Stuart, has found his father and wants answers. Derek, Kelly's pimp, needs to find Kelly or it will be him who pays.","id":"14823","runtime":85,"imdbId":"tt0490166","version":115,"lastModified":"1302039202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c6\/4bc944c7017a3c57fe01d9c6\/london-to-brighton-mid.jpg","studio":"Steel Mill Pictures","genre":"Action","title":"London to Brighton","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"59982"} +{"label":"Johnny Harris","version":21,"id":"32300","lastModified":"1301902016000","name":"Johnny Harris","type":"Person","_key":"59983"} +{"label":"Johnny Harris","version":22,"id":"85827","lastModified":"1301901701000","name":"Johnny Harris","type":"Person","_key":"59984"} +{"label":"Paul Andrew Williams","version":25,"id":"80384","lastModified":"1301902054000","name":"Paul Andrew Williams","type":"Person","_key":"59985"} +{"label":"G.P.S.","description":"College friends embark on a GPS treasure hunt in search of money. Instead of finding buried treasure, they find a buried coffin that contains photos of a kidnapped woman and GPS coordinates that lead deeper into the forest. Are the photos real or part of a game? ","id":"14825","runtime":96,"imdbId":"tt0464006","version":102,"lastModified":"1301905271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06a\/4c9c5a937b9aa1430f00006a\/g-p-s-mid.jpg","studio":"Fireshoe Productions","genre":"Thriller","title":"G.P.S.","releaseDate":1194912000000,"language":"en","type":"Movie","_key":"59986"} +{"label":"Tenchi Muy\u00f4! In Love 2: Haruka naru omoi","description":"One day, Tenchi disappears in the forest near his house. Six months later, Ayeka and Ryoko locate Tenchi living in a city, but with a mysterious woman. What's more, Tenchi appears to have aged several years. Whenever Ayeka and Ryoko catch up to him, he disappears into thin air, apparently existing in a fabricated alternate dimension where he has no knowledge of his past.","id":"14829","runtime":95,"imdbId":"tt0205451","version":39,"lastModified":"1301908293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9da\/4bc944c8017a3c57fe01d9da\/tenchi-muyo-in-love-2-haruka-naru-omoi-mid.jpg","title":"Tenchi Muy\u00f4! In Love 2: Haruka naru omoi","releaseDate":924912000000,"language":"en","type":"Movie","_key":"59987"} +{"label":"Richard Cansino","version":20,"id":"77333","lastModified":"1301902136000","name":"Richard Cansino","type":"Person","_key":"59988"} +{"label":"Doctor Strange: The Sorcerer Supreme","description":"Dr. Stephen Strange embarks on a wondrous journey to the heights of a Tibetan mountain, where he seeks healing at the feet of the mysterious Ancient One.","id":"14830","runtime":76,"imdbId":"tt0910865","version":180,"lastModified":"1301908002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e7\/4bc944c8017a3c57fe01d9e7\/doctor-strange-mid.jpg","genre":"Action","title":"Doctor Strange: The Sorcerer Supreme","releaseDate":1187049600000,"language":"en","type":"Movie","_key":"59989"} +{"label":"Paul Nakauchi","version":21,"id":"80122","lastModified":"1301901865000","name":"Paul Nakauchi","type":"Person","_key":"59990"} +{"label":"Michael Yama","version":23,"id":"80123","lastModified":"1301901845000","name":"Michael Yama","type":"Person","_key":"59991"} +{"label":"Patrick Archibald","version":14,"id":"179236","lastModified":"1301903307000","name":"Patrick Archibald","type":"Person","_key":"59992"} +{"label":"Richard Sebast","version":11,"id":"225632","lastModified":"1301903995000","name":"Richard Sebast","type":"Person","_key":"59993"} +{"label":"Help!","description":"This Beatles film has an obscure Asian cult, that believes in human sacrifice, chasing Ringo after he accidentally put on the their victim's ceremonial ring. He is pursued by the cult, a pair of mad scientists, a member of a side cult that no longer believes in human sacrifice, and the London police who are trying to help.","id":"14831","runtime":92,"imdbId":"tt0059260","version":138,"lastModified":"1301904880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f5\/4bc944c9017a3c57fe01d9f5\/help-mid.jpg","studio":"Maljack Productions","genre":"Comedy","title":"Help!","releaseDate":-137376000000,"language":"en","tagline":"Stop worrying! HELP! is on the way!","type":"Movie","_key":"59994"} +{"label":"The Cement Garden","description":"After the death of her husband, the mother of Julie, Jack, Sue and Tom begins to suffer from a mysterious illness. Aware that she is going to have to go into hospital she opens a bank account for the children, so that they can be financially self-sufficient and will be able to avoid being taken into care by the authorities. Unfortunately she also dies and Julie and Jack (the older, teenage children) decide to hide her body in the basement so that they can have free reign of their household. Soon","id":"14832","runtime":105,"imdbId":"tt0106535","trailer":"http:\/\/www.youtube.com\/watch?v=mBzAFD3kF3w","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-cement-garden","version":128,"lastModified":"1301903886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4d7bbd755e73d65ec1001377\/the-cement-garden-mid.jpg","genre":"Drama","title":"The Cement Garden","releaseDate":760924800000,"language":"en","tagline":"Love knows no limits.","type":"Movie","_key":"59995"} +{"label":"Andrew Birkin","version":42,"id":"2355","lastModified":"1299492932000","name":"Andrew Birkin","type":"Person","_key":"59996"} +{"label":"Alice Coulthard","version":18,"id":"143447","lastModified":"1301902496000","name":"Alice Coulthard","type":"Person","_key":"59997"} +{"label":"Ned Birkin","version":18,"id":"143448","lastModified":"1301902443000","name":"Ned Birkin","type":"Person","_key":"59998"} +{"label":"Gareth Brown","version":18,"id":"143449","lastModified":"1301902475000","name":"Gareth Brown","type":"Person","_key":"59999"} +{"label":"Dick Flockhart","version":18,"id":"143450","lastModified":"1301902475000","name":"Dick Flockhart","type":"Person","_key":"60000"} +{"label":"House","description":"Trying to recover from the nearly marriage-breaking stress following the death of their child, Jack (Reynaldo Rosales) and Stephanie (Heidi Dippold) spontaneously take off on a road trip. But when their car breaks down in a remote area, they find themselves in a horrific nightmare. Seeking shelter in a house, they soon realize that more danger lurks inside than outside in this spine-chiller based on Ted Dekker and Frank Peretti's best-seller.","id":"14833","runtime":101,"imdbId":"tt0837796","trailer":"http:\/\/www.youtube.com\/watch?v=973","homepage":"http:\/\/housethemovie.net\/","version":321,"lastModified":"1301903381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a0f\/4bc944ce017a3c57fe01da0f\/house-mid.jpg","studio":"Namesake Entertainment","genre":"Drama","title":"House","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"60001"} +{"label":"Reynaldo Rosales","version":19,"id":"77339","lastModified":"1301901534000","name":"Reynaldo Rosales","type":"Person","_key":"60002"} +{"label":"Heidi Dippold","version":19,"id":"77340","lastModified":"1301901719000","name":"Heidi Dippold","type":"Person","_key":"60003"} +{"label":"J.P. Davis","version":18,"id":"101187","lastModified":"1301902404000","name":"J.P. Davis","type":"Person","_key":"60004"} +{"label":"Not Easily Broken","description":"A car accident and shifting affections test the bond between a married couple. ","id":"14834","runtime":99,"imdbId":"tt0795438","homepage":"http:\/\/www.sonypictures.com\/movies\/noteasilybroken\/site\/","version":261,"lastModified":"1301904770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2f\/4bc944d0017a3c57fe01da2f\/not-easily-broken-mid.jpg","studio":"Screen Gems, Inc.","genre":"Drama","title":"Not Easily Broken","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"60005"} +{"label":"Bears","description":"From polar bears in the arctic tundra to black bears in the Northern Rockies, you'll see some of the most spectacular footage ever shot of these enterprising omnivores. Catch salmon with a group of hungry grizzlies on the McNeil River in Alaska. Crawl inside a den with a mother black bear and her cubs. Learn about the challenges facing each of these species as their habitat diminishes.","id":"14835","runtime":40,"imdbId":"tt0330044","version":185,"lastModified":"1301417350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3c\/4bc944d1017a3c57fe01da3c\/bears-mid.jpg","studio":"National Wildlife Federation","genre":"Documentary","title":"Bears","releaseDate":978307200000,"language":"en","type":"Movie","_key":"60006"} +{"label":"David Lickley","version":20,"id":"77341","lastModified":"1301901989000","name":"David Lickley","type":"Person","_key":"60007"} +{"label":"Coraline","description":"An adventurous girl finds another world that is a strangely idealized version of her frustrating home, but it has sinister secrets.","id":"14836","runtime":101,"imdbId":"tt0327597","homepage":"http:\/\/coraline.com\/","version":392,"lastModified":"1301901072000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5d\/4bc944d7017a3c57fe01da5d\/coraline-mid.jpg","studio":"Echo Lake Productions","genre":"Action","title":"Coraline","releaseDate":1233878400000,"language":"en","tagline":"Be careful what you wish for.","type":"Movie","_key":"60008"} +{"label":"John Hodgman","version":31,"id":"77344","lastModified":"1301901674000","name":"John Hodgman","type":"Person","_key":"60009"} +{"label":"Forty Guns","description":"An authoritarian rancher, Barbara Stanwyck, who rules an Arizona county with her private posse of hired guns. When a new Marshall arrives to set things straight, the cattle queen finds herself falling, brutally for the avowedly non-violent lawman. Both have itchy-fingered brothers, a female gunman enters the picture, and things go desperately wrong.","id":"14837","runtime":79,"imdbId":"tt0050407","version":69,"lastModified":"1301903581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03b\/4caf72b27b9aa1264000003b\/forty-guns-mid.jpg","studio":"Globe Enterprises","genre":"Western","title":"Forty Guns","releaseDate":-389232000000,"language":"en","type":"Movie","_key":"60010"} +{"label":"John Ericson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4caf72697b9aa1263e000037\/john-ericson-profile.jpg","version":23,"id":"41231","lastModified":"1302003639000","name":"John Ericson","type":"Person","_key":"60011"} +{"label":"Hit and Run","description":"Mary Murdock, a college student, thinks she's hit and killed a cat with her car driving home drunk from a party. She is horrified beyond words when she gets home and discovers a man's nearly dead body impaled on the bumper of her Jeep. Terrified and irrational, Mary is faced with a series of decisions that determine her fate.","id":"14838","runtime":84,"imdbId":"tt1199550","version":137,"lastModified":"1301905187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a78\/4bc944d9017a3c57fe01da78\/hit-and-run-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Hit and Run","releaseDate":1231804800000,"language":"en","type":"Movie","_key":"60012"} +{"label":"Enda McCallion","version":20,"id":"77345","lastModified":"1301901838000","name":"Enda McCallion","type":"Person","_key":"60013"} +{"label":"Christopher Shand","version":23,"id":"77347","lastModified":"1301901585000","name":"Christopher Shand","type":"Person","_key":"60014"} +{"label":"Joe Hansard","version":21,"id":"77348","lastModified":"1301901456000","name":"Joe Hansard","type":"Person","_key":"60015"} +{"label":"Blue Collar","description":"No overview found.","id":"14839","runtime":114,"imdbId":"tt0077248","trailer":"http:\/\/www.youtube.com\/watch?v=P1zuIEjgfzI","version":133,"lastModified":"1301906655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82e\/4d8887105e73d6750c00082e\/blue-collar-mid.jpg","studio":"TAT Communications Company","genre":"Drama","title":"Blue Collar","releaseDate":255916800000,"language":"en","tagline":"Whatever became of the \"American Dream\"?","type":"Movie","_key":"60016"} +{"label":"Lucy Saroyan","version":21,"id":"127735","lastModified":"1301902799000","name":"Lucy Saroyan","type":"Person","_key":"60017"} +{"label":"Lane Smith","version":48,"id":"7969","lastModified":"1301901533000","name":"Lane Smith","type":"Person","_key":"60018"} +{"label":"Borah Silver","version":21,"id":"127736","lastModified":"1301902762000","name":"Borah Silver","type":"Person","_key":"60019"} +{"label":"Chip Fields","version":21,"id":"127737","lastModified":"1301902762000","name":"Chip Fields","type":"Person","_key":"60020"} +{"label":"Harry Northup","version":21,"id":"127738","lastModified":"1301902916000","name":"Harry Northup","type":"Person","_key":"60021"} +{"label":"Milton Selzer","version":18,"id":"101901","lastModified":"1301902404000","name":"Milton Selzer","type":"Person","_key":"60022"} +{"label":"Sammy Warren","version":21,"id":"127740","lastModified":"1301902762000","name":"Sammy Warren","type":"Person","_key":"60023"} +{"label":"G\u00f6lge oyunu","description":"No overview found.","id":"14840","runtime":0,"imdbId":"tt0263388","version":26,"lastModified":"1301908587000","title":"G\u00f6lge oyunu","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60024"} +{"label":"44 Minutes: The North Hollywood Shoot-Out","description":"After a failed bank robbery, two heavily armed men hold the Los Angeles Police Department at bay for 44 minutes.","id":"14842","runtime":0,"imdbId":"tt0362389","version":90,"lastModified":"1301901764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f36\/4d610ce45e73d60c68002f36\/44-minutes-the-north-hollywood-shoot-out-mid.jpg","genre":"Documentary","title":"44 Minutes: The North Hollywood Shoot-Out","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"60025"} +{"label":"Douglas Spain","version":26,"id":"77350","lastModified":"1301901509000","name":"Douglas Spain","type":"Person","_key":"60026"} +{"label":"Ten Inch Hero","description":"Ten Inch Hero revolves around a group of friends working at a sandwich shop in Santa Cruz: Piper, Jen, Tish, and Priestly. The shop is owned by ageing hippie surfer Trucker, who is in love with Zo, the manager of the crystal shop across the street.","id":"14843","runtime":97,"imdbId":"tt0829297","homepage":"http:\/\/www.teninchhero.com","version":153,"lastModified":"1301908026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a98\/4bc944db017a3c57fe01da98\/ten-inch-hero-mid.jpg","genre":"Comedy","title":"Ten Inch Hero","releaseDate":1177459200000,"language":"en","type":"Movie","_key":"60027"} +{"label":"Chasing Liberty","description":"The President's daughter, unable to experience life like a normal 18 year-old, escapes from her entourage of Secret Service agents while traveling in Europe. She falls in love with a handsome British stranger, who also happens to be working undercover for her father.","id":"14844","runtime":111,"imdbId":"tt0360139","version":147,"lastModified":"1301902943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab2\/4bc944e0017a3c57fe01dab2\/chasing-liberty-mid.jpg","studio":"Alcon Entertainment","genre":"Comedy","title":"Chasing Liberty","releaseDate":1075680000000,"language":"en","tagline":"How do you fall in love with the whole world watching?","type":"Movie","_key":"60028"} +{"label":"Tony Jayawardena","version":21,"id":"80310","lastModified":"1301901608000","name":"Tony Jayawardena","type":"Person","_key":"60029"} +{"label":"Andy Cadiff","version":21,"id":"80307","lastModified":"1301902069000","name":"Andy Cadiff","type":"Person","_key":"60030"} +{"label":"Gray Matters","description":"They finish each other's sentences, dance like Fred and Ginger, and share the same downtown loft--the perfect couple? Not exactly. Gray and Sam, are a sister and brother so compatible and inseparable that people actually assume they are dating. Mortified, they both agree they must branch out and start searching for love. He'll look for a guy for her and she'll look for a gal for him.","id":"14845","runtime":96,"imdbId":"tt0375785","version":168,"lastModified":"1301903636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac3\/4bc944e1017a3c57fe01dac3\/gray-matters-mid.jpg","studio":"Archer Entertainment","genre":"Comedy","title":"Gray Matters","releaseDate":1161388800000,"language":"en","type":"Movie","_key":"60031"} +{"label":"Rachel Shelley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bca\/4d7ab5e05e73d62828000bca\/rachel-shelley-profile.jpg","version":26,"id":"80385","lastModified":"1301901444000","name":"Rachel Shelley","type":"Person","_key":"60032"} +{"label":"Bill Mondy","version":20,"id":"83959","lastModified":"1301902244000","name":"Bill Mondy","type":"Person","_key":"60033"} +{"label":"Sue Kramer","version":20,"id":"83957","lastModified":"1301901719000","name":"Sue Kramer","type":"Person","_key":"60034"} +{"label":"Little Black Book","description":"Determined to learn about her boyfriend's past relationships, Stacy -- who works for a talk show -- becomes a bona fide snoop. With her colleague, Barb, Stacy gets the names of Derek's ex-lovers and interviews them, supposedly for an upcoming show. But what she learns only adds to her confusion, and her plans begin to unravel when she befriends one of the women.","id":"14846","runtime":111,"imdbId":"tt0361841","version":185,"lastModified":"1301903910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4d4196cd7b9aa15bb000353f\/little-black-book-mid.jpg","studio":"Revolution Studios","genre":"Comedy","title":"Little Black Book","releaseDate":1091750400000,"language":"en","tagline":"Have you ever been tempted to look inside his...","type":"Movie","_key":"60035"} +{"label":"Rashida Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/052\/4d2058325e73d66b2b002052\/rashida-jones-profile.jpg","version":69,"id":"80591","lastModified":"1302061274000","name":"Rashida Jones","type":"Person","_key":"60036"} +{"label":"Jason Antoon","version":22,"id":"130749","lastModified":"1301902731000","name":"Jason Antoon","type":"Person","_key":"60037"} +{"label":"Miss Conception","description":"Georgina is an ambitious young London professional who learns she has only one month left in which to conceive a child. After exhausting all possibilities with her baby-phobic boyfriend, Georgina turns to her wildly optimistic friend Clem, with whom she sets out to identify and \"land\" the perfect father for her child.","id":"14847","runtime":104,"imdbId":"tt0985593","trailer":"http:\/\/www.youtube.com\/watch?v=1700","version":206,"lastModified":"1301903243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4bc944e4017a3c57fe01dae5\/miss-conception-mid.jpg","genre":"Comedy","title":"Miss Conception","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"60038"} +{"label":"Tom Ellis","version":13,"id":"192944","lastModified":"1301903154000","name":"Tom Ellis","type":"Person","_key":"60039"} +{"label":"Will Mellor","version":12,"id":"194961","lastModified":"1301903956000","name":"Will Mellor","type":"Person","_key":"60040"} +{"label":"Orlando Seale","version":24,"id":"83405","lastModified":"1301902141000","name":"Orlando Seale","type":"Person","_key":"60041"} +{"label":"Ruta Gedmintas","version":19,"id":"141892","lastModified":"1301902960000","name":"Ruta Gedmintas","type":"Person","_key":"60042"} +{"label":"Eric Styles","version":3,"id":"231521","lastModified":"1301777046000","name":"Eric Styles","type":"Person","_key":"60043"} +{"label":"The Dog Problem","description":"In the film, Solo is a down-on-his-luck writer who is encouraged by his psychiatrist to get a dog. Solo meets his love interest, who he assumes to be a dog owner when meeting her at a dog play park, but dog problems stand in their way.","id":"14848","runtime":88,"imdbId":"tt0486572","version":178,"lastModified":"1301905217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af6\/4bc944e5017a3c57fe01daf6\/the-dog-problem-mid.jpg","genre":"Comedy","title":"The Dog Problem","releaseDate":1157932800000,"language":"en","tagline":"Eat. Sleep. Therapy. Repeat.","type":"Movie","_key":"60044"} +{"label":"Dead Like Me: Life After Death","description":"When George and her colleagues get a new boss whose focus is on moving souls quickly and enjoying life without consequences, the team begins to break the strict reaper rules. While her friends fall victim to their desires for money, success, and fame, George breaks another rule by revealing her true identity to her living family.","id":"14849","runtime":87,"imdbId":"tt1079444","version":201,"lastModified":"1301908002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b13\/4bc944ea017a3c57fe01db13\/dead-like-me-life-after-death-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Dead Like Me: Life After Death","releaseDate":1234828800000,"language":"en","type":"Movie","_key":"60045"} +{"label":"Ellen Muth","version":23,"id":"77352","lastModified":"1301901608000","name":"Ellen Muth","type":"Person","_key":"60046"} +{"label":"Tripping the Rift: The Movie","description":"What begins for Chode and crew as a routine mission to protect a pissed-off princess will soon become a filth- splattered saga of dismembered royalty, indestructible clown assassins and desperately horny housewives.","id":"14850","runtime":75,"imdbId":"tt1212448","trailer":"http:\/\/www.youtube.com\/watch?v=h98NcX0Y1cM","version":136,"lastModified":"1301902591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b20\/4bc944eb017a3c57fe01db20\/tripping-the-rift-the-movie-mid.jpg","genre":"Animation","title":"Tripping the Rift: The Movie","releaseDate":1206403200000,"language":"en","type":"Movie","_key":"60047"} +{"label":"Gayle Garfinkle","version":21,"id":"77354","lastModified":"1301901534000","name":"Gayle Garfinkle","type":"Person","_key":"60048"} +{"label":"Rick Jones","version":21,"id":"77355","lastModified":"1301901534000","name":"Rick Jones","type":"Person","_key":"60049"} +{"label":"John Melendez","version":24,"id":"77356","lastModified":"1301901534000","name":"John Melendez","type":"Person","_key":"60050"} +{"label":"Bernie Denk","version":22,"id":"77366","lastModified":"1301901673000","name":"Bernie Denk","type":"Person","_key":"60051"} +{"label":"The Escapist","description":"Frank Perry is an institutionalized convict twelve years into a life sentence without parole. When his estranged daughter falls ill, he is determined he make peace with her before it's too late. He develops an ingenious escape plan, and recruits a dysfunctional band of escapists - misfits with a mutual dislike for one other but united by their desire to escape their hell hole of an existence.","id":"14851","runtime":102,"imdbId":"tt0961728","trailer":"http:\/\/www.youtube.com\/watch?v=qBBiLLjK5XY","homepage":"http:\/\/www.escapistthemovie.com\/","version":176,"lastModified":"1301903002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b32\/4bc944ec017a3c57fe01db32\/the-escapist-mid.jpg","studio":"Picture Farm","genre":"Action","title":"The Escapist","releaseDate":1213920000000,"language":"en","type":"Movie","_key":"60052"} +{"label":"Rupert Wyatt","version":29,"id":"77357","lastModified":"1301901865000","name":"Rupert Wyatt","type":"Person","_key":"60053"} +{"label":"Barney's Super Singing Circus","description":"Join Barney and all the kids as they put on their own circus, featuring clowns, ponies, flying squirrels, a strong man, a human cannonball, and much more. Includes fourteen songs including: \"Animal Fair,\" \" Puttin' On A Show\", \"When The Circus Comes To Town,\" \"Marching Song,\" \"The Rainbow Song,\" \"Laugh With Me,\" \"Boom Boom Ain't It Great To Be Crazy,\" \"The Squirrel On The Flying Trapeze\"","id":"14852","runtime":50,"imdbId":"tt0886458","version":39,"lastModified":"1301907894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4bc944ed017a3c57fe01db49\/barney-s-super-singing-circus-mid.jpg","genre":"Family","title":"Barney's Super Singing Circus","releaseDate":958435200000,"language":"en","type":"Movie","_key":"60054"} +{"label":"Jeff Ayers","version":19,"id":"109481","lastModified":"1301902723000","name":"Jeff Ayers","type":"Person","_key":"60055"} +{"label":"Julie Johnson","version":20,"id":"109483","lastModified":"1301902993000","name":"Julie Johnson","type":"Person","_key":"60056"} +{"label":"Tim Dever","version":17,"id":"109484","lastModified":"1301902889000","name":"Tim Dever","type":"Person","_key":"60057"} +{"label":"Patty Wirtz","version":20,"id":"109485","lastModified":"1301902993000","name":"Patty Wirtz","type":"Person","_key":"60058"} +{"label":"Leyda Aleyli","version":16,"id":"109486","lastModified":"1301902889000","name":"Leyda Aleyli","type":"Person","_key":"60059"} +{"label":"Screamers: The Hunting","description":"A group of humans arrive on Sirius 6-B to investigate an SOS signal sent out from the planet, which has been supposedly deserted since the destruction of the man-made weapons known as \"screamers.\" Once the squad arrives, they find a group of human survivors eking out an existence in an old military outpost.","id":"14853","runtime":94,"imdbId":"tt1214983","version":195,"lastModified":"1301904029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5c\/4bc944ef017a3c57fe01db5c\/screamers-the-hunting-mid.jpg","studio":"Pope Productions","genre":"Action","title":"Screamers: The Hunting","releaseDate":1237766400000,"language":"en","type":"Movie","_key":"60060"} +{"label":"Stephen Patrick Dunn","version":21,"id":"77360","lastModified":"1301901338000","name":"Stephen Patrick Dunn","type":"Person","_key":"60061"} +{"label":"Lynley Hall","version":21,"id":"77361","lastModified":"1301901474000","name":"Lynley Hall","type":"Person","_key":"60062"} +{"label":"Sheldon Wilson","version":31,"id":"77362","lastModified":"1301901647000","name":"Sheldon Wilson","type":"Person","_key":"60063"} +{"label":"Lone Wolf McQuade","description":"The archetypal renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates a martial arts showdown between the drug lord and the ranger, and involving the woman they both love. Written by Keith Loh {loh@sfu.ca","id":"14854","runtime":107,"imdbId":"tt0085862","version":135,"lastModified":"1301902977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b65\/4bc944ef017a3c57fe01db65\/lone-wolf-mcquade-mid.jpg","genre":"Action","title":"Lone Wolf McQuade","releaseDate":419212800000,"language":"en","tagline":"The 'Mad Dog' Criminal...The 'Lone Wolf' Lawman...The Ultimate Showdown.","type":"Movie","_key":"60064"} +{"label":"Steve Carver","version":21,"id":"102627","lastModified":"1301902554000","name":"Steve Carver","type":"Person","_key":"60065"} +{"label":"Personal Effects","description":"Walter is a rising star in the NCAA wrestling world until his life is ripped apart by the brutal murder of his sister. Returning home to console his mother Gloria he seeks vengeance on the man who is accused of the crime. A chance meeting with a beautiful mature woman gives him solace to the situation. Will this unlikely pairing bloom into a romance and heal a wound the world cannot see or will the loss of his sister push him over the edge?","id":"14857","runtime":110,"imdbId":"tt1138489","trailer":"http:\/\/www.youtube.com\/watch?v=Fuk72WMotn0","homepage":"http:\/\/www.imdb.com\/title\/tt1138489\/","version":236,"lastModified":"1301901909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d33\/4be55efb017a3c35b4000d33\/personal-effects-mid.jpg","studio":"Cin\u00e9film AG","genre":"Drama","title":"Personal Effects","releaseDate":1233878400000,"language":"en","tagline":"The space between loss and love.","type":"Movie","_key":"60066"} +{"label":"David Hollander","version":22,"id":"77363","lastModified":"1301901926000","name":"David Hollander","type":"Person","_key":"60067"} +{"label":"Spencer Hudson","version":21,"id":"117994","lastModified":"1301902123000","name":"Spencer Hudson","type":"Person","_key":"60068"} +{"label":"Aleks Paunovic","version":22,"id":"107810","lastModified":"1301902300000","name":"Aleks Paunovic","type":"Person","_key":"60069"} +{"label":"Alissa Skovbye","version":20,"id":"117995","lastModified":"1301902300000","name":"Alissa Skovbye","type":"Person","_key":"60070"} +{"label":"Kyle Toy","version":21,"id":"117996","lastModified":"1301902365000","name":"Kyle Toy","type":"Person","_key":"60071"} +{"label":"Dean Wray","version":21,"id":"117997","lastModified":"1301902365000","name":"Dean Wray","type":"Person","_key":"60072"} +{"label":"Brock Johnson","version":20,"id":"117998","lastModified":"1301902300000","name":"Brock Johnson","type":"Person","_key":"60073"} +{"label":"Jake LeDoux","version":20,"id":"117999","lastModified":"1301902475000","name":"Jake LeDoux","type":"Person","_key":"60074"} +{"label":"Gurdeep Beesla","version":20,"id":"118000","lastModified":"1301902300000","name":"Gurdeep Beesla","type":"Person","_key":"60075"} +{"label":"Michelle Hewitt-Williams","version":20,"id":"118001","lastModified":"1301902300000","name":"Michelle Hewitt-Williams","type":"Person","_key":"60076"} +{"label":"Tom Pickett","version":20,"id":"118002","lastModified":"1301902300000","name":"Tom Pickett","type":"Person","_key":"60077"} +{"label":"Gale Van Cott","version":20,"id":"118003","lastModified":"1301902300000","name":"Gale Van Cott","type":"Person","_key":"60078"} +{"label":"Bruce Harwood","version":20,"id":"118004","lastModified":"1301902475000","name":"Bruce Harwood","type":"Person","_key":"60079"} +{"label":"Anna Mae Routledge","version":20,"id":"118005","lastModified":"1301902475000","name":"Anna Mae Routledge","type":"Person","_key":"60080"} +{"label":"Nico McEown","version":20,"id":"118006","lastModified":"1301902475000","name":"Nico McEown","type":"Person","_key":"60081"} +{"label":"Forbes Angus","version":20,"id":"118007","lastModified":"1301902475000","name":"Forbes Angus","type":"Person","_key":"60082"} +{"label":"Justin Abdou","version":20,"id":"118008","lastModified":"1301902475000","name":"Justin Abdou","type":"Person","_key":"60083"} +{"label":"Stephen Dunlop","version":20,"id":"118009","lastModified":"1301902300000","name":"Stephen Dunlop","type":"Person","_key":"60084"} +{"label":"Jennifer Chan","version":20,"id":"118010","lastModified":"1301902475000","name":"Jennifer Chan","type":"Person","_key":"60085"} +{"label":"Joe Costa","version":20,"id":"118011","lastModified":"1301902300000","name":"Joe Costa","type":"Person","_key":"60086"} +{"label":"Sonal Chopria","version":20,"id":"118012","lastModified":"1301902300000","name":"Sonal Chopria","type":"Person","_key":"60087"} +{"label":"Steve Elliot","version":20,"id":"118013","lastModified":"1301902475000","name":"Steve Elliot","type":"Person","_key":"60088"} +{"label":"Chris Webb","version":36,"id":"113211","lastModified":"1301902300000","name":"Chris Webb","type":"Person","_key":"60089"} +{"label":"J.B. McEown","version":20,"id":"118014","lastModified":"1301902300000","name":"J.B. McEown","type":"Person","_key":"60090"} +{"label":"Keith","description":"Natalie (Elisabeth Harnois) is high school royalty, but her queen bee status falls apart when she falls for the new guy at school. Although Keith (Jesse McCartney) ignores her at first, they soon become friends -- even though Natalie suspects that Keith has something to hide. As the free-spirited Keith shows Natalie how to embrace what life offers, they grow closer -- until a secret tests the boun..","id":"14859","runtime":93,"imdbId":"tt0435679","version":200,"lastModified":"1301903990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/768\/4cb2fece5e73d65b82000768\/keith-mid.jpg","genre":"Drama","title":"Keith","releaseDate":1221264000000,"language":"en","tagline":"Love is a force you can't control.","type":"Movie","_key":"60091"} +{"label":"Todd Kessler","version":19,"id":"116802","lastModified":"1301903058000","name":"Todd Kessler","type":"Person","_key":"60092"} +{"label":"Jesse McCartney ","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a4\/4cc492ef7b9aa138da0022a4\/jesse-mccartney-profile.jpg","version":22,"id":"139867","lastModified":"1301903009000","name":"Jesse McCartney ","type":"Person","_key":"60093"} +{"label":"Ignacio Serricchio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32c\/4cc4930e7b9aa138d800232c\/ignacio-serricchio-profile.jpg","version":19,"id":"139868","lastModified":"1301902772000","name":"Ignacio Serricchio","type":"Person","_key":"60094"} +{"label":"La Onzieme Heure","description":"An ex-Navy SEAL, Michael Adams, (Matthew Reese) was captured during a raid to free Japanese prisoners from a North Korean prison camp. He endures the North Koreans torture for three years -- seen only as flashbacks -- then released back into civilian life.","id":"14861","runtime":94,"imdbId":"tt1129420","version":83,"lastModified":"1301906011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b80\/4bc944f4017a3c57fe01db80\/the-eleventh-hour-mid.jpg","studio":"action jackson","genre":"War","title":"La Onzieme Heure","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60095"} +{"label":"John Lyde","version":22,"id":"130791","lastModified":"1301902723000","name":"John Lyde","type":"Person","_key":"60096"} +{"label":"Adam Abram","version":18,"id":"130792","lastModified":"1301902643000","name":"Adam Abram","type":"Person","_key":"60097"} +{"label":"Johnny Ahn","version":19,"id":"130793","lastModified":"1301902704000","name":"Johnny Ahn","type":"Person","_key":"60098"} +{"label":"Britani Bateman","version":18,"id":"130794","lastModified":"1301902602000","name":"Britani Bateman","type":"Person","_key":"60099"} +{"label":"Sarah Bell","version":19,"id":"130795","lastModified":"1301902727000","name":"Sarah Bell","type":"Person","_key":"60100"} +{"label":"Lindsay Bird","version":18,"id":"130796","lastModified":"1301902582000","name":"Lindsay Bird","type":"Person","_key":"60101"} +{"label":"Joel Bishop","version":18,"id":"130797","lastModified":"1301902582000","name":"Joel Bishop","type":"Person","_key":"60102"} +{"label":"Scott Chun","version":18,"id":"130798","lastModified":"1301902584000","name":"Scott Chun","type":"Person","_key":"60103"} +{"label":"Kannika Coley","version":18,"id":"130799","lastModified":"1301902582000","name":"Kannika Coley","type":"Person","_key":"60104"} +{"label":"Jason Crockett","version":18,"id":"130800","lastModified":"1301902582000","name":"Jason Crockett","type":"Person","_key":"60105"} +{"label":"K. Danor Gerald","version":18,"id":"130801","lastModified":"1301902582000","name":"K. Danor Gerald","type":"Person","_key":"60106"} +{"label":"Paul D. Hunt","version":18,"id":"130802","lastModified":"1301902582000","name":"Paul D. Hunt","type":"Person","_key":"60107"} +{"label":"James Jamison","version":18,"id":"130803","lastModified":"1301902784000","name":"James Jamison","type":"Person","_key":"60108"} +{"label":"Jennifer Klekas","version":18,"id":"130804","lastModified":"1301902582000","name":"Jennifer Klekas","type":"Person","_key":"60109"} +{"label":"David Kranig","version":18,"id":"130805","lastModified":"1301902582000","name":"David Kranig","type":"Person","_key":"60110"} +{"label":"Kevin Lyde","version":18,"id":"130806","lastModified":"1301902582000","name":"Kevin Lyde","type":"Person","_key":"60111"} +{"label":"Michelle Money","version":18,"id":"130807","lastModified":"1301902421000","name":"Michelle Money","type":"Person","_key":"60112"} +{"label":"Sam Murphy","version":18,"id":"130808","lastModified":"1301902582000","name":"Sam Murphy","type":"Person","_key":"60113"} +{"label":"David Nibley","version":18,"id":"130809","lastModified":"1301902784000","name":"David Nibley","type":"Person","_key":"60114"} +{"label":"Jason Osmond","version":18,"id":"130810","lastModified":"1301902582000","name":"Jason Osmond","type":"Person","_key":"60115"} +{"label":"Matthew Reese","version":18,"id":"130813","lastModified":"1301902582000","name":"Matthew Reese","type":"Person","_key":"60116"} +{"label":"Rosemberg Salgado","version":19,"id":"130814","lastModified":"1301902682000","name":"Rosemberg Salgado","type":"Person","_key":"60117"} +{"label":"Nathan White","version":18,"id":"130815","lastModified":"1301902582000","name":"Nathan White","type":"Person","_key":"60118"} +{"label":"Michael Owen","version":19,"id":"92500","lastModified":"1301902908000","name":"Michael Owen","type":"Person","_key":"60119"} +{"label":"Nicole Pulliam","version":17,"id":"98811","lastModified":"1301902852000","name":"Nicole Pulliam","type":"Person","_key":"60120"} +{"label":"Killer Movie","description":"A reality TV director copes with a spoiled celebutante and a show gone haywire when a masked killer starts bumping off the crew in this slasher-movie satire.","id":"14862","runtime":93,"imdbId":"tt0988083","version":353,"lastModified":"1301904382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b89\/4bc944f4017a3c57fe01db89\/killer-movie-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Comedy","title":"Killer Movie","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60121"} +{"label":"Jeff Fisher","version":17,"id":"96788","lastModified":"1301902464000","name":"Jeff Fisher","type":"Person","_key":"60122"} +{"label":"Kaley Cuoco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ae\/4c0236a2017a3c70360013ae\/kaley-cuoco-profile.jpg","version":39,"id":"53862","lastModified":"1301982411000","name":"Kaley Cuoco","type":"Person","_key":"60123"} +{"label":"Leighton Meester","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c5\/4bfa6f8d017a3c702d0004c5\/leighton-meester-profile.jpg","version":39,"id":"85825","lastModified":"1301901667000","name":"Leighton Meester","type":"Person","_key":"60124"} +{"label":"Gloria Votsis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e40\/4d2820327b9aa134cf001e40\/gloria-votsis-profile.jpg","version":19,"id":"96790","lastModified":"1301902036000","name":"Gloria Votsis","type":"Person","_key":"60125"} +{"label":"Adriana DeMeo","version":16,"id":"96791","lastModified":"1301902464000","name":"Adriana DeMeo","type":"Person","_key":"60126"} +{"label":"Robert Buckley","version":21,"id":"96792","lastModified":"1301902673000","name":"Robert Buckley","type":"Person","_key":"60127"} +{"label":"Al Santos","version":16,"id":"96793","lastModified":"1301902464000","name":"Al Santos","type":"Person","_key":"60128"} +{"label":"Anaconda The Offspring","description":"Cancer-terminal tycoon Peter Murdoch's secret Wexel Hall Pharmaceuticals lab has developed a blood orchid extract cure. To examine why it works optimally in snakes, they also bread a super-anaconda strain. But the original pair escapes, leaving a bloody trail of corpses. Murdoch runs, instructing his staff to clean up. They keep failing and being eaten like unsuspecting locals, some alive, even after enlisting ruthless big game hunter Hammett. The fast-growing pregnant monster sheds its skin, th","id":"14863","runtime":91,"imdbId":"tt1137996","version":99,"lastModified":"1301905187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b97\/4bc944f5017a3c57fe01db97\/anaconda-the-offspring-mid.jpg","genre":"Action","title":"Anaconda The Offspring","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60129"} +{"label":"Crystal Allen","version":15,"id":"146783","lastModified":"1301902505000","name":"Crystal Allen","type":"Person","_key":"60130"} +{"label":"Ryan McCluskey","version":15,"id":"146784","lastModified":"1301902467000","name":"Ryan McCluskey","type":"Person","_key":"60131"} +{"label":"The Hot Spot","description":"A loner moves in to a small Texas town, finds himself a job, and sets about plotting to rob the local bank.","id":"14864","runtime":130,"imdbId":"tt0099797","trailer":"http:\/\/www.youtube.com\/watch?v=vmWLUAsas60","version":127,"lastModified":"1301907532000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba0\/4bc944f5017a3c57fe01dba0\/the-hot-spot-mid.jpg","studio":"Orion Pictures Corporation","genre":"Crime","title":"The Hot Spot","releaseDate":655689600000,"language":"en","type":"Movie","_key":"60132"} +{"label":"Virgil Frye","version":25,"id":"8954","lastModified":"1301901449000","name":"Virgil Frye","type":"Person","_key":"60133"} +{"label":"John Hawker","version":19,"id":"114976","lastModified":"1301902889000","name":"John Hawker","type":"Person","_key":"60134"} +{"label":"Margaret Bowman","version":19,"id":"114977","lastModified":"1301902889000","name":"Margaret Bowman","type":"Person","_key":"60135"} +{"label":"Debra Cole","version":19,"id":"114978","lastModified":"1301902889000","name":"Debra Cole","type":"Person","_key":"60136"} +{"label":"Karen Culley","version":19,"id":"114979","lastModified":"1301902889000","name":"Karen Culley","type":"Person","_key":"60137"} +{"label":"Cody Haynes","version":19,"id":"114980","lastModified":"1301902889000","name":"Cody Haynes","type":"Person","_key":"60138"} +{"label":"Glasdj\u00e4vulen","description":"No overview found.","id":"14865","runtime":0,"imdbId":"tt1251732","version":38,"lastModified":"1301908538000","title":"Glasdj\u00e4vulen","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60139"} +{"label":"Farmhouse","description":"Set in the modern day mid-west, the film focuses on a young couple trying to establish a new life. They become stranded in a very isolated vineyard. They are forced to face secrets from their own pasts and the malicous intents of the vineyard's inhabitant who turn out to be demons from hell.","id":"14866","runtime":92,"imdbId":"tt0996934","version":90,"lastModified":"1301907204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bae\/4bc944f6017a3c57fe01dbae\/farmhouse-mid.jpg","studio":"Alliance Entertainment","genre":"Horror","title":"Farmhouse","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60140"} +{"label":"Jamie Anne Allman","version":22,"id":"77368","lastModified":"1301901560000","name":"Jamie Anne Allman","type":"Person","_key":"60141"} +{"label":"Flynn Beck","version":19,"id":"77369","lastModified":"1301901608000","name":"Flynn Beck","type":"Person","_key":"60142"} +{"label":"Ryan Coughlin","version":19,"id":"77370","lastModified":"1301901608000","name":"Ryan Coughlin","type":"Person","_key":"60143"} +{"label":"Jack Donner","version":16,"id":"16052","lastModified":"1301901719000","name":"Jack Donner","type":"Person","_key":"60144"} +{"label":"Nick Heyman","version":19,"id":"77371","lastModified":"1301901430000","name":"Nick Heyman","type":"Person","_key":"60145"} +{"label":"Krystal Landrum","version":19,"id":"77372","lastModified":"1301902069000","name":"Krystal Landrum","type":"Person","_key":"60146"} +{"label":"The Rage in Placid Lake","description":"Placid Lake has always been different. As an odd fish in a sea of mediocrity, his brilliant ideas are bound to get him into more trouble than success. So when he finds himself flying off the school roof and breaking every bone in his body on graduation night, Placid decides to make a bid for the elusive normal life. To his parents' horror, he gets a normal job.","id":"14868","runtime":89,"imdbId":"tt0305999","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-rage-in-placid-lake","version":149,"lastModified":"1301904815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbb\/4bc944f7017a3c57fe01dbbb\/the-rage-in-placid-lake-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"The Rage in Placid Lake","releaseDate":1053129600000,"language":"en","type":"Movie","_key":"60147"} +{"label":"Jordan Brooking","version":20,"id":"77713","lastModified":"1301901719000","name":"Jordan Brooking","type":"Person","_key":"60148"} +{"label":"Ben Lee","version":20,"id":"77714","lastModified":"1301901534000","name":"Ben Lee","type":"Person","_key":"60149"} +{"label":"Lucas Fraccaro","version":20,"id":"77715","lastModified":"1301902069000","name":"Lucas Fraccaro","type":"Person","_key":"60150"} +{"label":"Zan Cross","version":20,"id":"77717","lastModified":"1301902069000","name":"Zan Cross","type":"Person","_key":"60151"} +{"label":"Cruise Moylan","version":20,"id":"77716","lastModified":"1301902069000","name":"Cruise Moylan","type":"Person","_key":"60152"} +{"label":"Eleeza Hooker","version":20,"id":"77718","lastModified":"1301902069000","name":"Eleeza Hooker","type":"Person","_key":"60153"} +{"label":"Jesse Spence","version":20,"id":"77719","lastModified":"1301902069000","name":"Jesse Spence","type":"Person","_key":"60154"} +{"label":"Simone Cullinan","version":20,"id":"77720","lastModified":"1301902069000","name":"Simone Cullinan","type":"Person","_key":"60155"} +{"label":"Toby Schmitz","version":20,"id":"77721","lastModified":"1301902069000","name":"Toby Schmitz","type":"Person","_key":"60156"} +{"label":"Tony McNamara","version":20,"id":"77723","lastModified":"1301901474000","name":"Tony McNamara","type":"Person","_key":"60157"} +{"label":"G.I. Joe: The Rise of Cobra","description":"From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.","id":"14869","runtime":107,"imdbId":"tt1046173","trailer":"http:\/\/www.youtube.com\/watch?v=MaNs64k_2xw","homepage":"http:\/\/www.gijoemovie.com\/","version":630,"lastModified":"1302020414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfc\/4c0b67d7017a3c3519000bfc\/g-i-joe-the-rise-of-cobra-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"G.I. Joe: The Rise of Cobra","releaseDate":1249516800000,"language":"en","tagline":"When all else fails, they don't.","type":"Movie","_key":"60158"} +{"label":"Tod einer Hostess","description":"No overview found.","id":"14870","runtime":0,"imdbId":"tt0379027","version":29,"lastModified":"1301908540000","title":"Tod einer Hostess","releaseDate":1083369600000,"language":"en","type":"Movie","_key":"60159"} +{"label":"Make it Happen","description":"Embarking on a journey to fulfill her dreams as a dancer, a young girl discovers a new style of dance that will prove to be the source of both conflict and self-discovery.","id":"14871","runtime":90,"imdbId":"tt0822868","version":136,"lastModified":"1301904616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c04\/4bc94503017a3c57fe01dc04\/make-it-happen-mid.jpg","studio":"The Mayhem Project","genre":"Drama","title":"Make it Happen","releaseDate":1218153600000,"language":"en","type":"Movie","_key":"60160"} +{"label":"Ashley Roberts","version":21,"id":"77438","lastModified":"1301901999000","name":"Ashley Roberts","type":"Person","_key":"60161"} +{"label":"Julissa Bermudez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dc\/4cadb68a5e73d650710000dc\/julissa-bermudez-profile.jpg","version":22,"id":"77439","lastModified":"1301901773000","name":"Julissa Bermudez","type":"Person","_key":"60162"} +{"label":"Karen LeBlanc","version":22,"id":"77440","lastModified":"1301901562000","name":"Karen LeBlanc","type":"Person","_key":"60163"} +{"label":"Darren Grant","version":20,"id":"77441","lastModified":"1301901493000","name":"Darren Grant","type":"Person","_key":"60164"} +{"label":"The Cutting Edge 2 - Going For The Gold","description":"Jackie Dorsey is the daughter of 1992 Winter Olympics Gold medalists Kate Moseley and Doug Dorsey. She grows up with ambitions of winning her own Olympic gold but that ambition seems to come to an end when she has a career threatening injury.","id":"14872","runtime":98,"imdbId":"tt0463953","version":70,"lastModified":"1301906193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0d\/4bc94503017a3c57fe01dc0d\/the-cutting-edge-2-going-for-the-gold-mid.jpg","genre":"Drama","title":"The Cutting Edge 2 - Going For The Gold","releaseDate":1139270400000,"language":"en","type":"Movie","_key":"60165"} +{"label":"Ross Thomas","version":23,"id":"77448","lastModified":"1301992520000","name":"Ross Thomas","type":"Person","_key":"60166"} +{"label":"Scott Thompson Baker","version":24,"id":"77450","lastModified":"1301901779000","name":"Scott Thompson Baker","type":"Person","_key":"60167"} +{"label":"Kim Kindrick","version":20,"id":"77452","lastModified":"1301901996000","name":"Kim Kindrick","type":"Person","_key":"60168"} +{"label":"The Jungle Book 2","description":"Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.","id":"14873","runtime":72,"imdbId":"tt0283426","version":186,"lastModified":"1301901933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c22\/4bc94504017a3c57fe01dc22\/the-jungle-book-2-mid.jpg","genre":"Adventure","title":"The Jungle Book 2","releaseDate":1045180800000,"language":"en","type":"Movie","_key":"60169"} +{"label":"Steve Trenbirth","version":17,"id":"142007","lastModified":"1301902299000","name":"Steve Trenbirth","type":"Person","_key":"60170"} +{"label":"Try Seventeen","description":"Teenager Jones has opted not to go to college and is instead renting a room in a boarding house to work on his writing skills. Soon, Jones finds himself dividing his time between two women: a young actress named Lisa and a photographer named Jane. After Jane's ex-boyfriend arrives to help her recover from a car accident, Jones begins to understand just how much he cares for her.","id":"14874","runtime":96,"imdbId":"tt0311941","version":78,"lastModified":"1301903847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2b\/4bc94505017a3c57fe01dc2b\/try-seventeen-mid.jpg","genre":"Comedy","title":"Try Seventeen","releaseDate":1031616000000,"language":"en","type":"Movie","_key":"60171"} +{"label":"Jeffrey Porter","version":21,"id":"123163","lastModified":"1301902699000","name":"Jeffrey Porter","type":"Person","_key":"60172"} +{"label":"Barney - Moving and Grooving","description":"Come join the gang as they learn about rhythm, create their own musical instruments and dance the day away with moves from the 'Baby Bop Hop' to the 'Dino Dance'.","id":"14876","runtime":41,"imdbId":"tt0878101","homepage":"http:\/\/www.barney.com","version":33,"lastModified":"1301905350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c39\/4bc94508017a3c57fe01dc39\/barney-moving-and-grooving-mid.jpg","title":"Barney - Moving and Grooving","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60173"} +{"label":"September Dawn","description":"A story set against the Mountain Meadows Massacre, the film is based upon the tragedy which occurred in Utah in 1857. A group of settlers, traveling on wagons, was murdered by the native Mormons. All together, about 140 souls of men, women and children, were taken. ","id":"14877","runtime":110,"imdbId":"tt0473700","trailer":"http:\/\/www.youtube.com\/watch?v=E0qxsaBkAiU","version":155,"lastModified":"1301905769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c46\/4bc9450c017a3c57fe01dc46\/september-dawn-mid.jpg","studio":"September Dawn","genre":"Drama","title":"September Dawn","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"60174"} +{"label":"The Objective","description":"A group of Special Ops Reservists on a mission in the harsh and hostile terrain of Afghanistan find themselves lost in a Middle Eastern \"Bermuda Triangle\" of ancient evil.","id":"14878","runtime":90,"imdbId":"tt0962711","trailer":"http:\/\/www.youtube.com\/watch?v=980","version":208,"lastModified":"1301903552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4c3598f07b9aa17daa00006f\/the-objective-mid.jpg","studio":"Gearhead Pictures","genre":"Action","title":"The Objective","releaseDate":1209340800000,"language":"en","type":"Movie","_key":"60175"} +{"label":"Jonas Ball","version":22,"id":"82124","lastModified":"1301902164000","name":"Jonas Ball","type":"Person","_key":"60176"} +{"label":"Matthew R. Anderson","version":29,"id":"24528","lastModified":"1301901288000","name":"Matthew R. Anderson","type":"Person","_key":"60177"} +{"label":"Sam Hunter","version":21,"id":"82125","lastModified":"1301902379000","name":"Sam Hunter","type":"Person","_key":"60178"} +{"label":"Jeff Prewett","version":21,"id":"82126","lastModified":"1301902379000","name":"Jeff Prewett","type":"Person","_key":"60179"} +{"label":"Nattrond","description":"No overview found.","id":"14880","runtime":0,"imdbId":"tt1043514","version":45,"lastModified":"1301204258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5c\/4bc9450d017a3c57fe01dc5c\/irene-huss-nattrond-mid.jpg","title":"Nattrond","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60180"} +{"label":"Joe Kidd","description":"A band of Mexicans find their U. S. land claims denied and all the records destroyed in a courthouse fire. Their leader, Louis Chama, encourages them to use force to regain their land. A wealthy landowner wanting the same decides to hire a gang of killers with Joe Kidd to track Chama.","id":"14881","runtime":88,"imdbId":"tt0068768","version":111,"lastModified":"1301908001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16b\/4c9a58a55e73d6561500016b\/joe-kidd-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Joe Kidd","releaseDate":79920000000,"language":"en","type":"Movie","_key":"60181"} +{"label":"Hounddog","description":"A drama set in the American South, where a precocious, troubled girl finds a safe haven in the music and movement of Elvis Presley.","id":"14882","runtime":102,"imdbId":"tt0415856","version":164,"lastModified":"1301905555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6e\/4bc9450f017a3c57fe01dc6e\/hounddog-mid.jpg","studio":"Deerjen Films","genre":"Drama","title":"Hounddog","releaseDate":1169424000000,"language":"en","type":"Movie","_key":"60182"} +{"label":"Deborah Kampmeier","version":21,"id":"77514","lastModified":"1301901811000","name":"Deborah Kampmeier","type":"Person","_key":"60183"} +{"label":"Oliver Clayton-Luce","version":19,"id":"77516","lastModified":"1301901688000","name":"Oliver Clayton-Luce","type":"Person","_key":"60184"} +{"label":"Isabelle Fuhrman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4fc\/4cf6ba235e73d6299a0014fc\/isabelle-fuhrman-profile.jpg","version":31,"id":"77517","lastModified":"1301901237000","name":"Isabelle Fuhrman","type":"Person","_key":"60185"} +{"label":"Cody Hanford","version":21,"id":"77518","lastModified":"1301902016000","name":"Cody Hanford","type":"Person","_key":"60186"} +{"label":"Ryan Pelton","version":21,"id":"77519","lastModified":"1301902204000","name":"Ryan Pelton","type":"Person","_key":"60187"} +{"label":"Ron Prather","version":21,"id":"77520","lastModified":"1301901833000","name":"Ron Prather","type":"Person","_key":"60188"} +{"label":"Christoph Sanders","version":26,"id":"77521","lastModified":"1301901416000","name":"Christoph Sanders","type":"Person","_key":"60189"} +{"label":"Jody Thompson","version":29,"id":"25414","lastModified":"1301901515000","name":"Jody Thompson","type":"Person","_key":"60190"} +{"label":"William Smith Yelton","version":22,"id":"76783","lastModified":"1301901843000","name":"William Smith Yelton","type":"Person","_key":"60191"} +{"label":"This Girl's Life","description":"\"Slice of life\" take on life of international porn celebrity, Moon, and her musings on modern life, love and loss. ","id":"14883","runtime":104,"imdbId":"tt0343095","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/this-girls-life","version":174,"lastModified":"1301903810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c77\/4bc9450f017a3c57fe01dc77\/this-girl-s-life-mid.jpg","studio":"Muse Productions","genre":"Drama","title":"This Girl's Life","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"60192"} +{"label":"Cheyenne Silver","version":20,"id":"77461","lastModified":"1301901865000","name":"Cheyenne Silver","type":"Person","_key":"60193"} +{"label":"Kam Heskin","version":30,"id":"77462","lastModified":"1301901297000","name":"Kam Heskin","type":"Person","_key":"60194"} +{"label":"Alexi Yulish","version":20,"id":"77463","lastModified":"1301902069000","name":"Alexi Yulish","type":"Person","_key":"60195"} +{"label":"Sean Douglas","version":20,"id":"77464","lastModified":"1301902069000","name":"Sean Douglas","type":"Person","_key":"60196"} +{"label":"Sherrie Rose","version":25,"id":"43068","lastModified":"1301901943000","name":"Sherrie Rose","type":"Person","_key":"60197"} +{"label":"Ash Baron-Cohen","version":22,"id":"77465","lastModified":"1301901642000","name":"Ash Baron-Cohen","type":"Person","_key":"60198"} +{"label":"Pooh's Heffalump Halloween Movie","description":"It's Halloween in the 100 Acre Wood, and Roo's best new friend, Lumpy, is looking forward to his first time trick-or-treating. That is, until Tigger warns them about the scary Gobloon, who'll turn them into jack-o'-lanterns if he catches them. But if Roo and Lumpy turn the tables on the Gobloon, they get to make a wish! Lumpy and Roo decide to be \"brave together, brave forever\" and catch the Gobloon so they can make their wishes come true.","id":"14885","runtime":67,"imdbId":"tt0457437","version":248,"lastModified":"1301904690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59d\/4d8f8e257b9aa1675500259d\/pooh-s-heffalump-halloween-movie-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Pooh's Heffalump Halloween Movie","releaseDate":1126569600000,"language":"en","tagline":"Celebrate Lumpy's First Halloween.","type":"Movie","_key":"60199"} +{"label":"Elliot M. Bour","version":19,"id":"77490","lastModified":"1301901646000","name":"Elliot M. Bour","type":"Person","_key":"60200"} +{"label":"The Last Detail","description":"Two Navy men are ordered to bring a young offender to prison but decide to show him one last good time along the way.","id":"14886","runtime":103,"imdbId":"tt0070290","version":134,"lastModified":"1301903297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8d\/4bc94510017a3c57fe01dc8d\/the-last-detail-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"The Last Detail","releaseDate":124502400000,"language":"en","type":"Movie","_key":"60201"} +{"label":"Otis Young","version":22,"id":"77483","lastModified":"1301901719000","name":"Otis Young","type":"Person","_key":"60202"} +{"label":"Luana Anders","version":30,"id":"77485","lastModified":"1301901559000","name":"Luana Anders","type":"Person","_key":"60203"} +{"label":"Gerry Salsberg","version":20,"id":"77486","lastModified":"1301901865000","name":"Gerry Salsberg","type":"Person","_key":"60204"} +{"label":"Don McGovern","version":20,"id":"77487","lastModified":"1301901865000","name":"Don McGovern","type":"Person","_key":"60205"} +{"label":"Bongwater","description":"David is an aspiring artist and a pot dealer, and he falls in love with constantly smoking Serena. Serena gets jealous and goes off to New York with heroin-addicted Tommy, and David wants her back.","id":"14887","runtime":97,"imdbId":"tt0125678","version":120,"lastModified":"1301906058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/707\/4d090ed27b9aa101d7000707\/bongwater-mid.jpg","studio":"Alliance Films","genre":"Comedy","title":"Bongwater","releaseDate":852076800000,"language":"en","tagline":"When everything in life goes to pot.","type":"Movie","_key":"60206"} +{"label":"Jakt och Fiske","description":"No overview found.","id":"14889","runtime":0,"version":13,"lastModified":"1300980018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c97\/4bc94513017a3c57fe01dc97\/jakt-och-fiske-mid.jpg","title":"Jakt och Fiske","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60207"} +{"label":"Bad Boys Collection","description":"2 Films about the cop duo nick named 'Bad Boys', blowing stuff up and crazy car chases. They get the job done but at an expensive cost.","id":"14890","version":126,"lastModified":"1301903604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca1\/4bc94514017a3c57fe01dca1\/bad-boys-mid.jpg","genre":"Action","title":"Bad Boys Collection","language":"en","type":"Movie","_key":"60208"} +{"label":"Dirty Sanchez: The Movie","description":"The Welsh nutters, Dirty Sanchez are making a movie: The concept of the film is that the Devil has heard about the dare devil nature of the Sanchez boys so he's set them the ultimate challenge, to complete stunts based on the 7 Deadly Sins or be damned to the gutter forever.","id":"14891","runtime":96,"imdbId":"tt0758743","homepage":"http:\/\/www.dirtysanchezthemovie.co.uk\/","version":77,"lastModified":"1301907000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb2\/4bc94515017a3c57fe01dcb2\/dirty-sanchez-the-movie-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"Dirty Sanchez: The Movie","releaseDate":1158883200000,"language":"en","type":"Movie","_key":"60209"} +{"label":"Lee Dainton","version":19,"id":"82998","lastModified":"1301902069000","name":"Lee Dainton","type":"Person","_key":"60210"} +{"label":"Matthew Pritchard","version":19,"id":"82997","lastModified":"1301902244000","name":"Matthew Pritchard","type":"Person","_key":"60211"} +{"label":"Mike Locke","version":17,"id":"95473","lastModified":"1301902634000","name":"Mike Locke","type":"Person","_key":"60212"} +{"label":"Dan Joyce","version":16,"id":"95474","lastModified":"1301902464000","name":"Dan Joyce","type":"Person","_key":"60213"} +{"label":"The Big Empty","description":"Would be-Hollywood actor John Person always considered his bizarre neighbor Neely a conspiracy theory nut-case. Still he accepts a simple task to wipe out his over $27,000 debt: delivering a blue suitcase to some Cowboy at Baker, in the empty desert. The place proves a nest of weirdos, including extremely jealous Randy and his girl Ruthie, who seduces John. He learns Neely was murdered, and FBI agent Banks grills him as prime suspect. Yet the weirdest is still to come once Cowboy turns up.","id":"14892","runtime":94,"imdbId":"tt0321442","homepage":"http:\/\/www.thebigempty.com\/","version":150,"lastModified":"1301903051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbb\/4bc94515017a3c57fe01dcbb\/the-big-empty-mid.jpg","studio":"Artisan Entertainment","genre":"Action","title":"The Big Empty","releaseDate":1068768000000,"language":"en","type":"Movie","_key":"60214"} +{"label":"Steve Anderson","version":25,"id":"77523","lastModified":"1301901945000","name":"Steve Anderson","type":"Person","_key":"60215"} +{"label":"En kort, en lang","description":"Jacob is a young man used to getting everything he wants. For several years, he has been living in a happy homosexual partnership with J\u00f8rgen, and one night Jacob decides to pop the big question to J\u00f8rgen. J\u00f8rgen happily accepts Jacobs marriage proposal, but then something happens: Jacob falls in love with a girl, and not just any girl. The girl is Caroline, married to J\u00f8rgens younger brother Tom.","id":"14893","runtime":98,"imdbId":"tt0273719","version":57,"lastModified":"1301904880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc9\/4bc94516017a3c57fe01dcc9\/en-kort-en-lang-mid.jpg","studio":"Angel films","genre":"Comedy","title":"En kort, en lang","releaseDate":1005868800000,"language":"en","type":"Movie","_key":"60216"} +{"label":"Charlotte Munck","version":21,"id":"77525","lastModified":"1301901492000","name":"Charlotte Munck","type":"Person","_key":"60217"} +{"label":"Hella Joof","version":28,"id":"77530","lastModified":"1301901778000","name":"Hella Joof","type":"Person","_key":"60218"} +{"label":"Roskilde","description":"Documentary about one of Europe's major music festivals, the Roskilde Festival.","id":"14895","runtime":93,"imdbId":"tt1237916","homepage":"http:\/\/www.roskilde-filmen.dk","version":27,"lastModified":"1300980020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce1\/4bc94517017a3c57fe01dce1\/roskilde-mid.jpg","studio":"Barok Film A\/S","genre":"Documentary","title":"Roskilde","releaseDate":1227571200000,"language":"en","type":"Movie","_key":"60219"} +{"label":"Ulrik Wivel","version":20,"id":"83254","lastModified":"1301902705000","name":"Ulrik Wivel","type":"Person","_key":"60220"} +{"label":"Rich Kids","description":"A story about a group of rich kids, from old money families, north of Copenhagen, from a world where people with ambition and power rule. Away from the superficiality and pretention of their social class, they live a secret life, in which power, money, sex, drugs and endless secrets dominate. A lifestyle only a few of them can survive and where most become scarred for life.","id":"14896","runtime":90,"imdbId":"tt1010445","version":89,"lastModified":"1301041123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf4\/4bc94518017a3c57fe01dcf4\/rich-kids-mid.jpg","genre":"Drama","title":"Rich Kids","releaseDate":1172707200000,"language":"en","type":"Movie","_key":"60221"} +{"label":"Simone Aagaard-Hansen","version":20,"id":"77533","lastModified":"1301902186000","name":"Simone Aagaard-Hansen","type":"Person","_key":"60222"} +{"label":"Lotte Arnsbjerg","version":20,"id":"77534","lastModified":"1301902179000","name":"Lotte Arnsbjerg","type":"Person","_key":"60223"} +{"label":"Frederikke Cecilie Berthelsen","version":20,"id":"77535","lastModified":"1301902204000","name":"Frederikke Cecilie Berthelsen","type":"Person","_key":"60224"} +{"label":"S\u00f8ren Bregendal","version":20,"id":"77536","lastModified":"1301901948000","name":"S\u00f8ren Bregendal","type":"Person","_key":"60225"} +{"label":"Rune Bendixen","version":21,"id":"77537","lastModified":"1301902204000","name":"Rune Bendixen","type":"Person","_key":"60226"} +{"label":"Nordkraft","description":"The intense, realistic and unflinching tale of Maria, Allan and Steso, who are struggling for survival in urban life, about drugs.","id":"14897","runtime":125,"imdbId":"tt0403360","version":59,"lastModified":"1301907144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d09\/4bc9451e017a3c57fe01dd09\/nordkraft-mid.jpg","genre":"Crime","title":"Nordkraft","releaseDate":1109894400000,"language":"en","type":"Movie","_key":"60227"} +{"label":"Claus Riis \u00d8stergaard","version":19,"id":"77539","lastModified":"1301902069000","name":"Claus Riis \u00d8stergaard","type":"Person","_key":"60228"} +{"label":"Farshad Kholghi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cfc\/4c0e75bd017a3c7e92000cfc\/farshad-kholghi-profile.jpg","version":20,"id":"77540","lastModified":"1301902069000","name":"Farshad Kholghi","type":"Person","_key":"60229"} +{"label":"Thomas L. Corneliussen","version":19,"id":"77541","lastModified":"1301902069000","name":"Thomas L. Corneliussen","type":"Person","_key":"60230"} +{"label":"Pernille Vallentin","version":23,"id":"82752","lastModified":"1301902504000","name":"Pernille Vallentin","type":"Person","_key":"60231"} +{"label":"Just Another Love Story","description":"Jonas is a Copenhagen homicide scene photographer, happily married, with two kids. One day, his car stalls, another car slams into him, runs head on into a third car and flips into the ditch. The other driver, Julia, is critically injured. He visits her in the hospital and is greeted by her family, who assumes he must be the Sebastian she told them about, the new fiance she met in Vietnam.","id":"14898","runtime":100,"imdbId":"tt1024942","version":86,"lastModified":"1301903968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/008\/4c3f3ac17b9aa14195000008\/krlighed-pa-film-mid.jpg","genre":"Crime","title":"Just Another Love Story","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"60232"} +{"label":"Charlotte Fich","version":24,"id":"77543","lastModified":"1301901594000","name":"Charlotte Fich","type":"Person","_key":"60233"} +{"label":"Three Dollars","description":"Eddie is a principled man, with a wife, a daughter and a mortgage and leads a seemingly stable and happy life as a government land assessor. Yet when the forces of economic and social change threaten this, he realises just how fragile his reality and security is. After losing his job, he checks his bank balance and finds he has only 'three dollars' to his name.","id":"14899","runtime":118,"imdbId":"tt0391493","version":273,"lastModified":"1301906190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1b\/4bc94520017a3c57fe01dd1b\/three-dollars-mid.jpg","studio":"Arena Films","genre":"Drama","title":"Three Dollars","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"60234"} +{"label":"Nico Billeam","version":20,"id":"77551","lastModified":"1301902174000","name":"Nico Billeam","type":"Person","_key":"60235"} +{"label":"Christopher Bunworth","version":19,"id":"77552","lastModified":"1301902069000","name":"Christopher Bunworth","type":"Person","_key":"60236"} +{"label":"David Roberts","version":22,"id":"77553","lastModified":"1301901474000","name":"David Roberts","type":"Person","_key":"60237"} +{"label":"Joanna Hunt-Prokhovnik","version":19,"id":"77554","lastModified":"1301902069000","name":"Joanna Hunt-Prokhovnik","type":"Person","_key":"60238"} +{"label":"Phillip Griffiths","version":19,"id":"77555","lastModified":"1301902069000","name":"Phillip Griffiths","type":"Person","_key":"60239"} +{"label":"Casey Petersen","version":19,"id":"77557","lastModified":"1301902069000","name":"Casey Petersen","type":"Person","_key":"60240"} +{"label":"Helen Fletcher","version":19,"id":"77558","lastModified":"1301902069000","name":"Helen Fletcher","type":"Person","_key":"60241"} +{"label":"Kieron O'Leary","version":19,"id":"77559","lastModified":"1301902069000","name":"Kieron O'Leary","type":"Person","_key":"60242"} +{"label":"Jamie Robertson","version":20,"id":"77560","lastModified":"1301902069000","name":"Jamie Robertson","type":"Person","_key":"60243"} +{"label":"John Flaus","version":19,"id":"77562","lastModified":"1301902069000","name":"John Flaus","type":"Person","_key":"60244"} +{"label":"Nicole Nabout","version":19,"id":"77563","lastModified":"1301902069000","name":"Nicole Nabout","type":"Person","_key":"60245"} +{"label":"Elspeth Ballantyne","version":19,"id":"77564","lastModified":"1301902069000","name":"Elspeth Ballantyne","type":"Person","_key":"60246"} +{"label":"Jim Alexander","version":19,"id":"77565","lastModified":"1301902069000","name":"Jim Alexander","type":"Person","_key":"60247"} +{"label":"Robert Connolly","version":22,"id":"75725","lastModified":"1301901720000","name":"Robert Connolly","type":"Person","_key":"60248"} +{"label":"The Great Muppet Caper","description":"In this second installment of the Muppet movies, Kermit, Fozzie, Gonzo, Miss Piggy, and the rest of the Muppets do their part to foil a jewel heist. ","id":"14900","runtime":95,"imdbId":"tt0082474","version":76,"lastModified":"1301904382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d28\/4bc94521017a3c57fe01dd28\/the-great-muppet-caper-mid.jpg","studio":"Jim Henson Productions","genre":"Family","title":"The Great Muppet Caper","releaseDate":362361600000,"language":"en","type":"Movie","_key":"60249"} +{"label":"1776","description":"The film focuses on the representatives of the Thirteen original colonies who participated in the Second Continental Congress. 1776 depicts the three months of deliberation (and, oftentimes, acrimonious debate) that led up to the signing of one of the most important documents in the History of the United States, the Declaration of Independence.","id":"14902","runtime":142,"imdbId":"tt0068156","trailer":"http:\/\/www.youtube.com\/watch?v=oPi__v2qFVY","version":104,"lastModified":"1301903911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d31\/4bc94522017a3c57fe01dd31\/1776-mid.jpg","genre":"Drama","title":"1776","releaseDate":90115200000,"language":"en","type":"Movie","_key":"60250"} +{"label":"Peter H. Hunt","version":20,"id":"129514","lastModified":"1301902800000","name":"Peter H. Hunt","type":"Person","_key":"60251"} +{"label":"Howard Da Silva","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/044\/4c2361317b9aa13f60000044\/howard-da-silva-profile.jpg","version":38,"id":"79247","lastModified":"1301901180000","name":"Howard Da Silva","type":"Person","_key":"60252"} +{"label":"Pooh's Grand Adventure: The Search for Christopher Robin","description":"Winnie the Pooh and Christopher Robin are best friends who wish they could be together forever","id":"14903","runtime":76,"imdbId":"tt0119918","version":101,"lastModified":"1301903332000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3e\/4bc94522017a3c57fe01dd3e\/pooh-s-grand-adventure-the-search-for-christopher-robin-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Pooh's Grand Adventure: The Search for Christopher Robin","releaseDate":870739200000,"language":"en","type":"Movie","_key":"60253"} +{"label":"Karl Geurs","version":37,"id":"77544","lastModified":"1301901450000","name":"Karl Geurs","type":"Person","_key":"60254"} +{"label":"Andre Stojka","version":26,"id":"77546","lastModified":"1301901673000","name":"Andre Stojka","type":"Person","_key":"60255"} +{"label":"Brady Bluhm","version":23,"id":"77547","lastModified":"1301901978000","name":"Brady Bluhm","type":"Person","_key":"60256"} +{"label":"Paul Winchell","version":23,"id":"77548","lastModified":"1301902175000","name":"Paul Winchell","type":"Person","_key":"60257"} +{"label":"Frankie J. Galasso","version":23,"id":"77549","lastModified":"1301901801000","name":"Frankie J. Galasso","type":"Person","_key":"60258"} +{"label":"Proof","description":"The life of a blind photographer who is looked after by a housekeeper is disrupted by the arrival of an agreeable restaurant worker.","id":"14904","runtime":86,"imdbId":"tt0102721","trailer":"http:\/\/www.youtube.com\/watch?v=AixgCHv2N7I","version":117,"lastModified":"1301903969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/435\/4c8935347b9aa1545b000435\/proof-mid.jpg","studio":"House & Moorhouse Films","genre":"Comedy","title":"Proof","releaseDate":673056000000,"language":"en","tagline":"Photographs don't lie, people do.","type":"Movie","_key":"60259"} +{"label":"Genevi\u00e8ve Picot","version":25,"id":"131775","lastModified":"1301902781000","name":"Genevi\u00e8ve Picot","type":"Person","_key":"60260"} +{"label":"Jeffrey Walker","version":25,"id":"131776","lastModified":"1301902781000","name":"Jeffrey Walker","type":"Person","_key":"60261"} +{"label":"Welcome to Sarajevo","description":"Follow a group of international journalists into the heart of the once cosmopolitan city of Sarajevo - now a danger zone of sniper and mortar attacks where residents still live. While reporting on an American aid worker who's trying to get children out of the country, a British correspondent decides to take an orphaned girl home to London. ","id":"14905","runtime":103,"imdbId":"tt0120490","version":150,"lastModified":"1301905394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d57\/4bc94528017a3c57fe01dd57\/welcome-to-sarajevo-mid.jpg","studio":"Channel Four Films","genre":"Drama","title":"Welcome to Sarajevo","releaseDate":898732800000,"language":"en","type":"Movie","_key":"60262"} +{"label":"Emira Nusevic","version":21,"id":"77603","lastModified":"1301901719000","name":"Emira Nusevic","type":"Person","_key":"60263"} +{"label":"Igor Dzambazov","version":21,"id":"77604","lastModified":"1301901865000","name":"Igor Dzambazov","type":"Person","_key":"60264"} +{"label":"Gordana Gadzic","version":21,"id":"77605","lastModified":"1301901865000","name":"Gordana Gadzic","type":"Person","_key":"60265"} +{"label":"Drazen Sivak","version":21,"id":"77606","lastModified":"1301901865000","name":"Drazen Sivak","type":"Person","_key":"60266"} +{"label":"Vesna Orel","version":21,"id":"77607","lastModified":"1301901865000","name":"Vesna Orel","type":"Person","_key":"60267"} +{"label":"Davor Janjic","version":20,"id":"77608","lastModified":"1301901865000","name":"Davor Janjic","type":"Person","_key":"60268"} +{"label":"Vladimir Jokanovic","version":21,"id":"77609","lastModified":"1301901865000","name":"Vladimir Jokanovic","type":"Person","_key":"60269"} +{"label":"Saludos Amigos","description":"Live-action segments show members of the Disney staff touring South America and recording their impressions in sketches. These segue into four animated sections: \"Lake Titicaca\" depicts tourist Donald Duck's troubles with a stubborn llama; and in \"Aquarela do Brasil,\" Jose Carioca shows Donald the sights and sound of Rio de Janeiro","id":"14906","runtime":71,"imdbId":"tt0036326","trailer":"http:\/\/www.youtube.com\/watch?v=3S1lgfZKdbY","version":121,"lastModified":"1301905541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d64\/4bc94528017a3c57fe01dd64\/saludos-amigos-mid.jpg","genre":"Animation","title":"Saludos Amigos","releaseDate":-883612800000,"language":"en","type":"Movie","_key":"60270"} +{"label":"Alien Apocalypse","description":"No overview found.","id":"14907","runtime":88,"imdbId":"tt0404756","version":142,"lastModified":"1301903969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d77\/4bc94529017a3c57fe01dd77\/alien-apocalypse-mid.jpg","genre":"Comedy","title":"Alien Apocalypse","releaseDate":1111795200000,"language":"en","type":"Movie","_key":"60271"} +{"label":"Ren\u00e9e O'Connor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/427\/4bfa6f4a017a3c7033000427\/renee-o-connor-profile.jpg","version":31,"id":"77624","lastModified":"1301901242000","name":"Ren\u00e9e O'Connor","type":"Person","_key":"60272"} +{"label":"Josh Becker","version":22,"id":"77625","lastModified":"1301904135000","name":"Josh Becker","type":"Person","_key":"60273"} +{"label":"McHale's Navy","description":"Retired Lieutenant Commander Quinton McHale spends his days puttering around the Caribbean in the old PT-73 selling homebrew, ice cream, and swimsuit calendars. He's brought out of retirement when his old nemesis turned the second best terrorist in the world, Major Vladikov, takes over the island of San Moreno and starts building a nuclear launch silo on it. With help from his old crew and hindrances from Captain Wallace B. Binghampton, who sank a cruise liner a while back, McHale tries to put V","id":"14908","runtime":108,"imdbId":"tt0119640","trailer":"http:\/\/www.youtube.com\/watch?v=B-LfGzpbhSg","version":153,"lastModified":"1301902626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7c\/4bc9452a017a3c57fe01dd7c\/mchale-s-navy-mid.jpg","studio":"Universal Studios","genre":"Action","title":"McHale's Navy","releaseDate":861321600000,"language":"en","tagline":"He's Under Siege and Out-of-Control.","type":"Movie","_key":"60274"} +{"label":"Mio","description":"Mio blir som barn skickad till Sverige f\u00f6r att tj\u00e4na ihop pengar till sin familj i Thailand. Men det g\u00e5r inte som f\u00f6r\u00e4ldrarna planerat. Under tre \u00e5r f\u00f6ljer regiss\u00f6r Jonas Embring Mio och hans g\u00e4ng p\u00e5 Henriksdalsberget utanf\u00f6r Stockholm. De lever i en h\u00e5rd vardag med kriminell identitet och v\u00e5ld. Till sist best\u00e4mmer sig Mio f\u00f6r att f\u00f6r\u00e4ndra sitt liv.","id":"14910","runtime":72,"trailer":"http:\/\/www.youtube.com\/watch?v=982","version":62,"lastModified":"1301906150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d91\/4bc9452c017a3c57fe01dd91\/mio-mid.jpg","studio":"Sveriges Television AB","genre":"Documentary","title":"Mio","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"60275"} +{"label":"Jonas Embring","version":15,"id":"77627","lastModified":"1301901646000","name":"Jonas Embring","type":"Person","_key":"60276"} +{"label":"Mio","version":15,"id":"77632","lastModified":"1301901948000","name":"Mio","type":"Person","_key":"60277"} +{"label":"Jeffrey","version":15,"id":"77633","lastModified":"1301901779000","name":"Jeffrey","type":"Person","_key":"60278"} +{"label":"Bat 21","description":"Lt. Col. Iceal \"Ham\" Hambleton is a weapons countermeasures expert and when his aircraft is shot over enemy territory the Air Force very much wants to get him back. Hambleton knows the area he's in is going to be carpet-bombed but a temporary shortage of helicopters causes a delay. Working with an Air Force reconnaissance pilot, Capt. Bartholomew Clark, he maps out an escape route.","id":"14911","runtime":105,"imdbId":"tt0094712","version":93,"lastModified":"1301903078000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d96\/4bc9452c017a3c57fe01dd96\/bat-21-mid.jpg","studio":"Eagle Pictures","genre":"Action","title":"Bat 21","releaseDate":593395200000,"language":"en","type":"Movie","_key":"60279"} +{"label":"18 Year Old Virgin","description":"In a series of sexual mishaps, a high school senior tries to lose her virginity on the last night before graduation.","id":"14912","runtime":86,"imdbId":"tt1294969","trailer":"http:\/\/www.youtube.com\/watch?v=OevBUN1tXGs","version":343,"lastModified":"1301903679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dae\/4bc94530017a3c57fe01ddae\/18-year-old-virgin-mid.jpg","genre":"Comedy","title":"18 Year Old Virgin","releaseDate":1232409600000,"language":"en","type":"Movie","_key":"60280"} +{"label":"Olivia Alaina May","version":17,"id":"78262","lastModified":"1301901646000","name":"Olivia Alaina May","type":"Person","_key":"60281"} +{"label":"Lauren Walsh","version":20,"id":"78263","lastModified":"1301901399000","name":"Lauren Walsh","type":"Person","_key":"60282"} +{"label":"Todd Leigh","version":17,"id":"78264","lastModified":"1301901779000","name":"Todd Leigh","type":"Person","_key":"60283"} +{"label":"Dustin Harnish","version":19,"id":"78265","lastModified":"1301901646000","name":"Dustin Harnish","type":"Person","_key":"60284"} +{"label":"Tamara Olson","version":17,"id":"93530","lastModified":"1301902326000","name":"Tamara Olson","type":"Person","_key":"60285"} +{"label":"Boogeyman 2","description":"A young woman attempts to cure her phobia of the boogeyman by checking herself into a mental health facility, only to realize too little too late that she is now helplessly trapped with her own greatest fear.","id":"14913","runtime":93,"imdbId":"tt0900357","trailer":"http:\/\/www.youtube.com\/watch?v=983","homepage":"http:\/\/www.sonypictures.com\/homevideo\/boogeyman2\/","version":256,"lastModified":"1301904616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db7\/4bc94531017a3c57fe01ddb7\/boogeyman-2-mid.jpg","genre":"Horror","title":"Boogeyman 2","releaseDate":1192838400000,"language":"en","type":"Movie","_key":"60286"} +{"label":"Flash of Genius","description":"In this David vs. Goliath drama based on a true story, college professor Robert Kearns (Greg Kinnear) goes up against the giants of the auto industry when they fail to give him credit for inventing intermittent windshield wipers. Kearns doggedly pursues recognition for his invention, as well as the much-deserved financial rewards for the sake of his wife (Lauren Graham) and six kids. Alan Alda and","id":"14914","runtime":119,"imdbId":"tt1054588","version":211,"lastModified":"1301903299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc9\/4bc94532017a3c57fe01ddc9\/flash-of-genius-mid.jpg","genre":"Drama","title":"Flash of Genius","releaseDate":1222992000000,"language":"en","type":"Movie","_key":"60287"} +{"label":"Marc Abraham","version":74,"id":"15219","lastModified":"1301901571000","name":"Marc Abraham","type":"Person","_key":"60288"} +{"label":"Dark Reel","description":"Murder, mystery and mayhem as B movie fan, Adam Waltz, wins Walk on Role in a film Featuring Scream Queen, Cassie Blue (Tiffany Shepis). Thinking his luck had changed for the better he steps into chaos with a killer loose and no one on the production safe.","id":"14915","runtime":108,"imdbId":"tt0883398","trailer":"http:\/\/www.youtube.com\/watch?v=984","homepage":"http:\/\/www.darkreel.com\/","version":223,"lastModified":"1301903892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4bc94534017a3c57fe01ddd7\/dark-reel-mid.jpg","studio":"Dark Reel Productions","genre":"Horror","title":"Dark Reel","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60289"} +{"label":"Daniel Wisler","version":20,"id":"81737","lastModified":"1301901534000","name":"Daniel Wisler","type":"Person","_key":"60290"} +{"label":"Tate Hanyok","version":20,"id":"81739","lastModified":"1301902244000","name":"Tate Hanyok","type":"Person","_key":"60291"} +{"label":"Josh Eisenstadt","version":20,"id":"81740","lastModified":"1301901474000","name":"Josh Eisenstadt","type":"Person","_key":"60292"} +{"label":"Moontrap","description":"The Space Shuttle returns to earth, but some of the equipment brought back on it begins to behave strangely. Scientists are unsure what is happening, and decide to take all necessary precautions.","id":"14916","runtime":92,"imdbId":"tt0097911","version":66,"lastModified":"1301906606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/387\/4cc8d4f45e73d65020000387\/moontrap-mid.jpg","genre":"Horror","title":"Moontrap","releaseDate":613267200000,"language":"en","type":"Movie","_key":"60293"} +{"label":"Robert Kurcz","version":22,"id":"77635","lastModified":"1301901580000","name":"Robert Kurcz","type":"Person","_key":"60294"} +{"label":"Leigh Lombardi","version":23,"id":"77634","lastModified":"1301901696000","name":"Leigh Lombardi","type":"Person","_key":"60295"} +{"label":"Robert Dyke","version":18,"id":"140249","lastModified":"1301902752000","name":"Robert Dyke","type":"Person","_key":"60296"} +{"label":"Batman: Mask of the Phantasm","description":"An old flame of Bruce Wayne's strolls into town, re-heating up the romance between the two. At the same time, a mass murderer with an axe for one hand begins systematically eliminating Gotham's crime bosses. Due to the person's dark appearance, he is mistaken for Batman. Now on the run, Batman must solve the mystery and deal with the roman and deal with the romance between him and Andrea Beaumont.","id":"14919","runtime":76,"imdbId":"tt0106364","trailer":"http:\/\/www.youtube.com\/watch?v=985","version":141,"lastModified":"1301902227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df1\/4bc94536017a3c57fe01ddf1\/batman-mask-of-the-phantasm-mid.jpg","genre":"Action","title":"Batman: Mask of the Phantasm","releaseDate":756777600000,"language":"en","type":"Movie","_key":"60297"} +{"label":"Bob Hastings","version":24,"id":"34973","lastModified":"1301901608000","name":"Bob Hastings","type":"Person","_key":"60298"} +{"label":"Three and Out","description":"Paul Callow (Mackenzie Crook) is fed up with city life and driving trains and when two people fall under his train in as many weeks, he really has had enough! Three fatal accidents in a month qualifies you for early retirement with 10 years salary... lump sum! Paul suddenly sees a way of clearing his debts and escaping to a better life and all he has to do is find a willing victim...","id":"14921","runtime":110,"imdbId":"tt1130980","homepage":"HTTP:\/\/www.threeandoutmovie.com","version":212,"lastModified":"1301906957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfa\/4bc94536017a3c57fe01ddfa\/three-and-out-mid.jpg","studio":"Worldwide Bonus Entertainment","genre":"Comedy","title":"Three and Out","releaseDate":1209081600000,"language":"en","type":"Movie","_key":"60299"} +{"label":"Antony Sher","version":25,"id":"77637","lastModified":"1301901356000","name":"Antony Sher","type":"Person","_key":"60300"} +{"label":"Mark Benton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a6\/4cf1b1445e73d61e3b0001a6\/mark-benton-profile.jpg","version":25,"id":"77638","lastModified":"1301901606000","name":"Mark Benton","type":"Person","_key":"60301"} +{"label":"Jonathan Gershfield","version":19,"id":"77639","lastModified":"1301901534000","name":"Jonathan Gershfield","type":"Person","_key":"60302"} +{"label":"Happy Endings","description":"An ensemble cast telling 10 stories with intertwining characters. One story is about a father and son who are dating the same woman . Another features a woman who long ago gave her baby up for adoption but is now being blackmailed by a documentary filmmaker who claims to know the now-grown child's whereabouts.","id":"14922","runtime":128,"imdbId":"tt0361693","version":225,"lastModified":"1301902857000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e03\/4bc94537017a3c57fe01de03\/happy-endings-mid.jpg","genre":"Comedy","title":"Happy Endings","releaseDate":1106179200000,"language":"en","type":"Movie","_key":"60303"} +{"label":"Run Ronnie Run","description":"A redneck with an uncanny knack for getting arrested becomes the star of his own reality program.","id":"14923","runtime":86,"imdbId":"tt0258100","version":114,"lastModified":"1301417852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e10\/4bc9453b017a3c57fe01de10\/run-ronnie-run-mid.jpg","genre":"Comedy","title":"Run Ronnie Run","releaseDate":1063670400000,"language":"en","type":"Movie","_key":"60304"} +{"label":"Sid & Nancy","description":"A lacerating love story, 'Sid & Nancy' chronicles the brief, intense attachment of two of punk's most notorious poster children, Sex Pistols bassist Sid Vicious and his girlfriend, Nancy Spungen.","id":"14924","runtime":112,"imdbId":"tt0091954","version":208,"lastModified":"1301903399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e29\/4bc9453d017a3c57fe01de29\/sid-nancy-mid.jpg","studio":"Initial Pictures","genre":"Drama","title":"Sid & Nancy","releaseDate":531705600000,"language":"en","tagline":"Love Kills.","type":"Movie","_key":"60305"} +{"label":"Debby Bishop","version":26,"id":"142844","lastModified":"1301902892000","name":"Debby Bishop","type":"Person","_key":"60306"} +{"label":"Andrew Schofield","version":25,"id":"90546","lastModified":"1301902953000","name":"Andrew Schofield","type":"Person","_key":"60307"} +{"label":"Tony London","version":17,"id":"109372","lastModified":"1301902431000","name":"Tony London","type":"Person","_key":"60308"} +{"label":"Uptown Girls","description":"Molly Gunn, the freewheeling daughter of a deceased rock legend, is forced to get a job when her manager steals her money. As nanny for precocious Ray, the oft ignored daughter of a music executive she learns what it means to be an adult while teaching Ray how to be a child.","id":"14926","runtime":92,"imdbId":"tt0263757","version":160,"lastModified":"1301907569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae7\/4d7987a97b9aa14cc0000ae7\/uptown-girls-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Uptown Girls","releaseDate":1060905600000,"language":"en","tagline":"They're about to teach each other how to act their age.","type":"Movie","_key":"60309"} +{"label":"Jesse Spencer","version":39,"id":"41422","lastModified":"1301901973000","name":"Jesse Spencer","type":"Person","_key":"60310"} +{"label":"Wynter Kullman","version":21,"id":"77644","lastModified":"1301901608000","name":"Wynter Kullman","type":"Person","_key":"60311"} +{"label":"Veggie Tales Sing Alongs: I Can Be Your Friend","description":"No overview found.","id":"14927","runtime":30,"version":34,"lastModified":"1300980035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cd\/4d1c2a537b9aa17a8f0001cd\/veggie-tales-sing-alongs-i-can-be-your-friend-mid.jpg","studio":"big idea","genre":"Animation","title":"Veggie Tales Sing Alongs: I Can Be Your Friend","releaseDate":1170720000000,"language":"en","type":"Movie","_key":"60312"} +{"label":"The Secrets","description":"In The Secrets, two brilliant young women discover their own voices in a repressive orthodox culture where females are forbidden to sing, let alone speak out. Naomi, the studious, devoutly religious daughter of a prominent rabbi, convinces her father to postpone her marriage for a year so that she might study at a Jewish seminary for women in the ancient Kabalistic seat of Safe.","id":"14928","runtime":120,"imdbId":"tt0782867","trailer":"http:\/\/www.youtube.com\/watch?v=986","homepage":"http:\/\/unitedking.co.il\/films\/The-secrets\/","version":182,"lastModified":"1301041626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e53\/4bc94541017a3c57fe01de53\/14928-mid.jpg","genre":"Drama","title":"The Secrets","releaseDate":1182297600000,"language":"en","type":"Movie","_key":"60313"} +{"label":"Ania Bukstein","version":21,"id":"77645","lastModified":"1301901840000","name":"Ania Bukstein","type":"Person","_key":"60314"} +{"label":"Mother's Day","description":"Three girls discover that two men are willing to do anything to impress Mother and what impresses Mother is watching her sons commit acts of rape and murder. Now these women are prisoners and lowered to pawns in the game of checkers between two dim wits and their Maniac Mommy and the question becomes, can any of them escape, alive?","id":"14929","runtime":90,"imdbId":"tt0081186","version":117,"lastModified":"1301414415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5c\/4bc94542017a3c57fe01de5c\/mother-s-day-mid.jpg","studio":"Duty Productions","genre":"Action","title":"Mother's Day","releaseDate":337478400000,"language":"en","type":"Movie","_key":"60315"} +{"label":"Relative Strangers","description":"On a mission to locate his biological parents, a tightly wound professional (Livingston) is befuddled to find that the couple who conceived him aren't exactly upper-class.","id":"14930","runtime":86,"imdbId":"tt0425395","version":163,"lastModified":"1301903922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6a\/4bc94543017a3c57fe01de6a\/relative-strangers-mid.jpg","genre":"Comedy","title":"Relative Strangers","releaseDate":1146441600000,"language":"en","type":"Movie","_key":"60316"} +{"label":"Greg Glienna","version":37,"id":"17869","lastModified":"1301901948000","name":"Greg Glienna","type":"Person","_key":"60317"} +{"label":"Miami Blues","description":"When Fred Frenger is released from prison he starts a violent one man crime wave in Miami. He meets up with naive college student\/prostitute Susie Waggoner who quickly falls in love with him. Sgt Hoke Moseley is on his tail and suffers for it. ","id":"14931","runtime":97,"imdbId":"tt0100143","version":114,"lastModified":"1301906841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e73\/4bc94544017a3c57fe01de73\/miami-blues-mid.jpg","studio":"Tristes Tropiques","genre":"Action","title":"Miami Blues","releaseDate":640569600000,"language":"en","type":"Movie","_key":"60318"} +{"label":"Cecilia P\u00e9rez-Cervera","version":21,"id":"129330","lastModified":"1301902686000","name":"Cecilia P\u00e9rez-Cervera","type":"Person","_key":"60319"} +{"label":"Georgie Cranford","version":17,"id":"93665","lastModified":"1301902863000","name":"Georgie Cranford","type":"Person","_key":"60320"} +{"label":"Edward Saxon","version":42,"id":"16297","lastModified":"1301901530000","name":"Edward Saxon","type":"Person","_key":"60321"} +{"label":"Jos\u00e9 P\u00e9rez","version":18,"id":"109145","lastModified":"1301902357000","name":"Jos\u00e9 P\u00e9rez","type":"Person","_key":"60322"} +{"label":"Matt Ingersoll","version":20,"id":"129331","lastModified":"1301902796000","name":"Matt Ingersoll","type":"Person","_key":"60323"} +{"label":"The Truth About Love","description":"A simple Valentine's Day card leads a couple to ponder the strength of their love.","id":"14933","runtime":100,"imdbId":"tt0407269","trailer":"http:\/\/www.youtube.com\/watch?v=-tLjyGaFJYY","version":141,"lastModified":"1301904819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e80\/4bc94548017a3c57fe01de80\/the-truth-about-love-mid.jpg","genre":"Comedy","title":"The Truth About Love","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"60324"} +{"label":"Kate Miles","version":22,"id":"131534","lastModified":"1301902401000","name":"Kate Miles","type":"Person","_key":"60325"} +{"label":"Stefan Dennis","version":19,"id":"131535","lastModified":"1301902421000","name":"Stefan Dennis","type":"Person","_key":"60326"} +{"label":"Stone","description":"In this classic Aussie counterculture flick, an undercover narc named Stone (Ken Shorter) is dispatched to infiltrate a satanic biker gang after one of its members witnesses a political assassination -- and the killer decides to take out the whole crew. Stone learns to live by a twisted code of honor based on fast riding and fast living but realizes that if his cover gets blown, his fellow riders ","id":"14937","runtime":103,"imdbId":"tt0072209","trailer":"http:\/\/www.youtube.com\/watch?v=ztTlfiaQNyw","version":207,"lastModified":"1301908001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea0\/4bc9454b017a3c57fe01dea0\/stone-mid.jpg","genre":"Action","title":"Stone","releaseDate":126230400000,"language":"en","type":"Movie","_key":"60327"} +{"label":"Sandy Harbutt","version":19,"id":"94804","lastModified":"1301902464000","name":"Sandy Harbutt","type":"Person","_key":"60328"} +{"label":"Ken Shorter","version":16,"id":"94807","lastModified":"1301902244000","name":"Ken Shorter","type":"Person","_key":"60329"} +{"label":"Deryck Barnes","version":16,"id":"94808","lastModified":"1301902244000","name":"Deryck Barnes","type":"Person","_key":"60330"} +{"label":"Roger Ward","version":17,"id":"94809","lastModified":"1301902361000","name":"Roger Ward","type":"Person","_key":"60331"} +{"label":"Dewey Hungerford","version":16,"id":"94810","lastModified":"1301902244000","name":"Dewey Hungerford","type":"Person","_key":"60332"} +{"label":"James Bowles","version":16,"id":"94811","lastModified":"1301902244000","name":"James Bowles","type":"Person","_key":"60333"} +{"label":"Bindi Williams","version":16,"id":"94812","lastModified":"1301902244000","name":"Bindi Williams","type":"Person","_key":"60334"} +{"label":"Rebecca Gilling","version":16,"id":"94813","lastModified":"1301902244000","name":"Rebecca Gilling","type":"Person","_key":"60335"} +{"label":"The Alibi","description":"A man who runs an alibi service for adulterous husbands gets into a jam with a new client. In trying to remedy the situation, he must rely on an alluring woman who gets his heart racing.","id":"14938","runtime":90,"imdbId":"tt0409681","version":105,"lastModified":"1301903660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eae\/4bc9454d017a3c57fe01deae\/the-alibi-mid.jpg","genre":"Comedy","title":"The Alibi","releaseDate":1137024000000,"language":"en","type":"Movie","_key":"60336"} +{"label":"Gigantic","description":"Young mattress salesman Brian decides to adopt a baby from China but is distracted when he forms a relationship with quirky, wealthy Harriet whom he meets at his mattress store. As their relationship flourishes, unbeknownst to them, a hitman is trying to kill Brian.","id":"14940","runtime":99,"imdbId":"tt1176251","homepage":"http:\/\/www.thegiganticmovie.com\/","version":151,"lastModified":"1301902677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08c\/4d0bc37c5e73d6370e00008c\/gigantic-mid.jpg","studio":"Killer Films","genre":"Comedy","title":"Gigantic","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"60337"} +{"label":"Matt Aselton","version":20,"id":"77651","lastModified":"1301901429000","name":"Matt Aselton","type":"Person","_key":"60338"} +{"label":"Thoughtcrimes","description":"Freya McAllister suddenly starts hearing voices in her head on the night of her High School Prom. One night Dr Michael Welles arrives telling Freya that she isn't crazy but that her voices are the thoughts of everyone around her. He teaches her to turn her telepathic powers into a powerful gift. What he doesn't say is that he works for the National Security Agency...","id":"14942","runtime":86,"imdbId":"tt0339785","version":105,"lastModified":"1301904995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee8\/4bc94556017a3c57fe01dee8\/thoughtcrimes-mid.jpg","genre":"Action","title":"Thoughtcrimes","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"60339"} +{"label":"Joe Flanigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/581\/4d366ec65e73d6334900c581\/joe-flanigan-profile.jpg","version":27,"id":"26066","lastModified":"1301901658000","name":"Joe Flanigan","type":"Person","_key":"60340"} +{"label":"Jocelyn Seagrave","version":23,"id":"77653","lastModified":"1301901948000","name":"Jocelyn Seagrave","type":"Person","_key":"60341"} +{"label":"Crows Zero","description":"The students of Suzuran High compete for the King of School title. An ex-graduate yakuza is sent to kill the son of a criminal group, but he can't make himself to do it as he reminds him of his youth. ","id":"14943","runtime":130,"imdbId":"tt1016290","version":162,"lastModified":"1301903552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef5\/4bc94556017a3c57fe01def5\/kurozu-zero-mid.jpg","studio":"Akita Publishing","title":"Crows Zero","releaseDate":1193443200000,"language":"en","type":"Movie","_key":"60342"} +{"label":"Ky\u00f4suke Yabe","version":24,"id":"94017","lastModified":"1301901948000","name":"Ky\u00f4suke Yabe","type":"Person","_key":"60343"} +{"label":"Origin: Spirits of the Past","description":"It is 300 years into the future. Earth's environment had been devastated by mankind's own foolish plans and humankind is beleaguered by the sentient forests which they have awoken. The world balance is tipped when a young boy named Agito stumbles across a machine that glowed in a strange blue hue inside a forbidden sanctuary. ","id":"14945","runtime":95,"imdbId":"tt0493247","trailer":"http:\/\/www.youtube.com\/watch?v=0kwpQG7k2zU","homepage":"http:\/\/www.gin-iro.jp\/","version":209,"lastModified":"1301907094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4d8bceb05e73d653d100102f\/gin-iro-no-kami-no-agito-mid.jpg","genre":"Animation","title":"Origin: Spirits of the Past","releaseDate":1136592000000,"language":"en","type":"Movie","_key":"60344"} +{"label":"Keiichi Sugiyama","version":9,"id":"227555","lastModified":"1301004492000","name":"Keiichi Sugiyama","type":"Person","_key":"60345"} +{"label":"Ryo Katsuji","version":26,"id":"96477","lastModified":"1301902969000","name":"Ryo Katsuji","type":"Person","_key":"60346"} +{"label":"Aoi Miyazaki","version":27,"id":"104522","lastModified":"1301902209000","name":"Aoi Miyazaki","type":"Person","_key":"60347"} +{"label":"Y\u00fbko Kotegawa","version":14,"id":"213474","lastModified":"1301903139000","name":"Y\u00fbko Kotegawa","type":"Person","_key":"60348"} +{"label":"Masaru Hamaguchi","version":3,"id":"230880","lastModified":"1301335872000","name":"Masaru Hamaguchi","type":"Person","_key":"60349"} +{"label":"Toshikazu Fukawa","version":3,"id":"230881","lastModified":"1301335890000","name":"Toshikazu Fukawa","type":"Person","_key":"60350"} +{"label":"Ren Ohsugi","version":24,"id":"137029","lastModified":"1301902464000","name":"Ren Ohsugi","type":"Person","_key":"60351"} +{"label":"Omi Minami","version":12,"id":"215122","lastModified":"1301903723000","name":"Omi Minami","type":"Person","_key":"60352"} +{"label":"Atsuko Yuya","version":21,"id":"101914","lastModified":"1301903070000","name":"Atsuko Yuya","type":"Person","_key":"60353"} +{"label":"Kurumi Mamiya","version":21,"id":"114918","lastModified":"1301902427000","name":"Kurumi Mamiya","type":"Person","_key":"60354"} +{"label":"Tomoko Kaneda","version":13,"id":"184460","lastModified":"1301903249000","name":"Tomoko Kaneda","type":"Person","_key":"60355"} +{"label":"Roman de gare","description":"A popular novelist researches unlikely sources to find characters for her next bestseller.","id":"14949","runtime":103,"imdbId":"tt0889652","homepage":"http:\/\/www.lesfilms13.com\/romandegare\/","version":269,"lastModified":"1301906479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f10\/4bc94558017a3c57fe01df10\/roman-de-gare-mid.jpg","genre":"Thriller","title":"Roman de gare","releaseDate":1182902400000,"language":"en","type":"Movie","_key":"60356"} +{"label":"Thumb Wars","description":"The hilarious story of a restless young farm-thumb, Loke Groundrunner,\nand his tasty companion, Princess Bunhead, who go on an quest to combat Black Helmet Man and the Evil Thumbpire.","id":"14962","runtime":29,"imdbId":"tt0206341","trailer":"http:\/\/www.youtube.com\/watch?v=989","version":157,"lastModified":"1301904702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4bc9455c017a3c57fe01df3c\/thumb-wars-the-phantom-cuticle-mid.jpg","studio":"O Entertainment","title":"Thumb Wars","releaseDate":915148800000,"language":"en","tagline":"Every Hand Has A Thumb...","type":"Movie","_key":"60357"} +{"label":"Andrea Fears","version":19,"id":"77654","lastModified":"1301901608000","name":"Andrea Fears","type":"Person","_key":"60358"} +{"label":"Ross Shafer","version":19,"id":"119762","lastModified":"1301902464000","name":"Ross Shafer","type":"Person","_key":"60359"} +{"label":"Jim Jackman","version":17,"id":"115032","lastModified":"1301902889000","name":"Jim Jackman","type":"Person","_key":"60360"} +{"label":"Jim Hope","version":19,"id":"119763","lastModified":"1301902889000","name":"Jim Hope","type":"Person","_key":"60361"} +{"label":"David Floyd","version":19,"id":"119764","lastModified":"1301902889000","name":"David Floyd","type":"Person","_key":"60362"} +{"label":"The Groomsmen","description":"No overview found.","id":"14963","runtime":98,"imdbId":"tt0455958","version":148,"lastModified":"1301907569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f49\/4bc9455d017a3c57fe01df49\/the-groomsmen-mid.jpg","genre":"Comedy","title":"The Groomsmen","releaseDate":1149811200000,"language":"en","type":"Movie","_key":"60363"} +{"label":"Welcome to Dongmakgol","description":"Based on the long running play by Jang Jin, the story is set in Korea during the Korean War in 1950. Soldiers from both the North and South, as well as an American pilot, find themselves in a secluded and naively idealistic village, its residents unaware of the outside world, including the war.","id":"14968","runtime":133,"imdbId":"tt0475783","homepage":"http:\/\/www.dongmakgol2005.co.kr\/","version":116,"lastModified":"1302038858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5f\/4bc94561017a3c57fe01df5f\/welcome-to-dongmakgol-mid.jpg","studio":"Film It Suda","genre":"Comedy","title":"Welcome to Dongmakgol","releaseDate":1123113600000,"language":"en","type":"Movie","_key":"60364"} +{"label":"Kwang-Hyun Park","version":17,"id":"117370","lastModified":"1301902519000","name":"Kwang-Hyun Park","type":"Person","_key":"60365"} +{"label":"Jae-yeong Jeong","version":24,"id":"83682","lastModified":"1301901634000","name":"Jae-yeong Jeong","type":"Person","_key":"60366"} +{"label":"Ha-ryong Lim","version":16,"id":"117375","lastModified":"1301902125000","name":"Ha-ryong Lim","type":"Person","_key":"60367"} +{"label":"Jae-kyeong Seo","version":16,"id":"117376","lastModified":"1301902302000","name":"Jae-kyeong Seo","type":"Person","_key":"60368"} +{"label":"Deok-Hwan Ryu","version":20,"id":"117377","lastModified":"1301902645000","name":"Deok-Hwan Ryu","type":"Person","_key":"60369"} +{"label":"Steve Taschler","version":16,"id":"117378","lastModified":"1301902645000","name":"Steve Taschler","type":"Person","_key":"60370"} +{"label":"The Colt","description":"During the heat of battle in the midst of the Civil War, a beguilingly innocent colt is born to Union Jim Rabb's beloved mare. Refusing the orders to shoot it, lest it prove a hindrance, Rabb keeps the colt as a consolation in these desperate times-a symbol of hope that leads the men of the First Cavalry on a journey of self-discovery and newfound brotherhood.","id":"14973","runtime":83,"imdbId":"tt0416654","trailer":"http:\/\/www.youtube.com\/watch?v=pQzp7G7HAJQ","version":155,"lastModified":"1301905952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f64\/4bc94561017a3c57fe01df64\/the-colt-mid.jpg","studio":"Hallmark Entertainment","genre":"Drama","title":"The Colt","releaseDate":1107648000000,"language":"en","type":"Movie","_key":"60371"} +{"label":"Darcy Belsher","version":18,"id":"138985","lastModified":"1301902959000","name":"Darcy Belsher","type":"Person","_key":"60372"} +{"label":"Yelena Lanskaya","version":16,"id":"139000","lastModified":"1301902585000","name":"Yelena Lanskaya","type":"Person","_key":"60373"} +{"label":"Noah's Arc: Jumping the Broom","description":"No overview found.","id":"14974","runtime":0,"imdbId":"tt0955306","version":161,"lastModified":"1300980043000","genre":"Drama","title":"Noah's Arc: Jumping the Broom","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60374"} +{"label":"Rachel Getting Married","description":"A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.","id":"14976","runtime":113,"imdbId":"tt1084950","version":220,"lastModified":"1301903298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f76\/4bc94562017a3c57fe01df76\/rachel-getting-married-mid.jpg","studio":"Clinica Estetico","genre":"Drama","title":"Rachel Getting Married","releaseDate":1220400000000,"language":"en","type":"Movie","_key":"60375"} +{"label":"Red Sands","description":"During a mission in the Middle East, a group of US soldiers destroy a statue out of boredom only to then be visited by something the next day.","id":"14977","runtime":89,"imdbId":"tt1103256","version":164,"lastModified":"1301904749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f88\/4bc94565017a3c57fe01df88\/red-sands-mid.jpg","studio":"Tricky Pictures","genre":"Action","title":"Red Sands","releaseDate":1235433600000,"language":"en","type":"Movie","_key":"60376"} +{"label":"Alex Turner","version":20,"id":"83857","lastModified":"1301902464000","name":"Alex Turner","type":"Person","_key":"60377"} +{"label":"Brendan Miller","version":20,"id":"83861","lastModified":"1301902634000","name":"Brendan Miller","type":"Person","_key":"60378"} +{"label":"Mercedes Mas\u00f6hn","version":20,"id":"83862","lastModified":"1301902634000","name":"Mercedes Mas\u00f6hn","type":"Person","_key":"60379"} +{"label":"Moog","description":"Documentary about Robert Moog who was an American pioneer of electronic music, best known as the inventor of the Moog synthesizer.","id":"14978","runtime":72,"imdbId":"tt0378378","version":109,"lastModified":"1301904302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f97\/4bc94566017a3c57fe01df97\/moog-mid.jpg","studio":"ZU33","genre":"Documentary","title":"Moog","releaseDate":1095379200000,"language":"en","type":"Movie","_key":"60380"} +{"label":"Hans Fjellestad","version":20,"id":"77657","lastModified":"1301901811000","name":"Hans Fjellestad","type":"Person","_key":"60381"} +{"label":"Thick as Thieves","description":"A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob. ","id":"14979","runtime":104,"imdbId":"tt1112782","version":129,"lastModified":"1301902063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa4\/4bc94567017a3c57fe01dfa4\/thick-as-thieves-mid.jpg","studio":"Nu Image Films","genre":"Crime","title":"Thick as Thieves","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"60382"} +{"label":"Michael Hayden","version":22,"id":"81829","lastModified":"1301901486000","name":"Michael Hayden","type":"Person","_key":"60383"} +{"label":"Gary Werntz","version":24,"id":"81830","lastModified":"1301901413000","name":"Gary Werntz","type":"Person","_key":"60384"} +{"label":"Rose Red","description":"A group of people with psychic powers are invited to spend the night in a haunted house.","id":"14980","runtime":254,"imdbId":"tt0259153","version":98,"lastModified":"1301904381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbd\/4bc9456c017a3c57fe01dfbd\/rose-red-mid.jpg","genre":"Drama","title":"Rose Red","releaseDate":1012089600000,"language":"en","type":"Movie","_key":"60385"} +{"label":"Welcome To Macintosh","description":"\"Welcome to Macintosh\" is a documentary that mixes history, criticism and an unapologetic revelry of all things Apple. Whether a long time Mac fanatic or new to computers, Welcome to Macintosh explores the many ways Apple Computer (now Apple, Inc.) has changed the world, from the early days of the Apple-I to the latest the company has to offer.","id":"14981","runtime":90,"imdbId":"tt1247703","trailer":"http:\/\/www.youtube.com\/watch?v=1560","version":129,"lastModified":"1301905115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fca\/4bc9456e017a3c57fe01dfca\/welcome-to-macintosh-mid.jpg","genre":"Documentary","title":"Welcome To Macintosh","releaseDate":1210032000000,"language":"en","type":"Movie","_key":"60386"} +{"label":"Wayne Bibbens","version":16,"id":"111458","lastModified":"1301902464000","name":"Wayne Bibbens","type":"Person","_key":"60387"} +{"label":"Vince Briel","version":16,"id":"111460","lastModified":"1301902464000","name":"Vince Briel","type":"Person","_key":"60388"} +{"label":"Charles DeVore","version":16,"id":"111461","lastModified":"1301902464000","name":"Charles DeVore","type":"Person","_key":"60389"} +{"label":"Robert Baca","version":16,"id":"111459","lastModified":"1301902464000","name":"Robert Baca","type":"Person","_key":"60390"} +{"label":"De Gales hus","description":"Based on the novel.","id":"14982","runtime":102,"imdbId":"tt1054110","homepage":"http:\/\/www.degaleshus.no","version":60,"lastModified":"1301907392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe0\/4bc94571017a3c57fe01dfe0\/de-gales-hus-mid.jpg","genre":"Drama","title":"De Gales hus","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"60391"} +{"label":"Carver","description":"Based on true events","id":"14983","runtime":97,"imdbId":"tt1001333","version":128,"lastModified":"1301903969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe9\/4bc94571017a3c57fe01dfe9\/carver-mid.jpg","studio":"Finney\/Thompson Entertainment","genre":"Horror","title":"Carver","releaseDate":1204588800000,"language":"en","type":"Movie","_key":"60392"} +{"label":"Matt Carmody","version":22,"id":"77659","lastModified":"1301902017000","name":"Matt Carmody","type":"Person","_key":"60393"} +{"label":"Savannah Costello","version":22,"id":"77660","lastModified":"1301901994000","name":"Savannah Costello","type":"Person","_key":"60394"} +{"label":"Erik Fones","version":22,"id":"77661","lastModified":"1301901810000","name":"Erik Fones","type":"Person","_key":"60395"} +{"label":"Chocolate","description":"An autistic woman with powerful martial art skills looks to settle her ailing mother's debts by seeking out the ruthless gangs that owe her family money.","id":"15003","runtime":110,"imdbId":"tt1183252","version":167,"lastModified":"1301902519000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00d\/4bc94577017a3c57fe01e00d\/chocolate-mid.jpg","studio":"Bam-Ram-Ewe","genre":"Action","title":"Chocolate","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60396"} +{"label":"Ammara Siripong","version":22,"id":"77668","lastModified":"1301904128000","name":"Ammara Siripong","type":"Person","_key":"60397"} +{"label":"JeeJa Yanin","version":20,"birthday":"449532000000","id":"135347","birthplace":"Thailand","lastModified":"1301903027000","name":"JeeJa Yanin","type":"Person","_key":"60398"} +{"label":"His Name Was Jason: 30 Years of Friday the13th","description":"12 films. 3 decades. Bad luck was never so bloody. ","id":"15004","runtime":90,"imdbId":"tt1282052","homepage":"http:\/\/www.fridaythe13thfilms.com","version":91,"lastModified":"1301903707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/016\/4bc94578017a3c57fe01e016\/his-name-was-jason-30-years-of-friday-the13th-mid.jpg","studio":"Masimedia","genre":"Documentary","title":"His Name Was Jason: 30 Years of Friday the13th","releaseDate":1233619200000,"language":"en","type":"Movie","_key":"60399"} +{"label":"Daniel Farrands","version":18,"id":"78136","lastModified":"1301902068000","name":"Daniel Farrands","type":"Person","_key":"60400"} +{"label":"Diane Almeida","version":19,"id":"83330","lastModified":"1301901865000","name":"Diane Almeida","type":"Person","_key":"60401"} +{"label":"Steven Barton","version":20,"id":"83331","lastModified":"1301902665000","name":"Steven Barton","type":"Person","_key":"60402"} +{"label":"Rachel Belofsky","version":19,"id":"83332","lastModified":"1301902634000","name":"Rachel Belofsky","type":"Person","_key":"60403"} +{"label":"Peter Bracke","version":19,"id":"83333","lastModified":"1301902633000","name":"Peter Bracke","type":"Person","_key":"60404"} +{"label":"Gloria Charles","version":19,"id":"83334","lastModified":"1301902634000","name":"Gloria Charles","type":"Person","_key":"60405"} +{"label":"Mike Cucinotta","version":19,"id":"83335","lastModified":"1301902464000","name":"Mike Cucinotta","type":"Person","_key":"60406"} +{"label":"Douglas Curtis","version":31,"id":"34968","lastModified":"1301901925000","name":"Douglas Curtis","type":"Person","_key":"60407"} +{"label":"Steve Dash","version":19,"id":"83336","lastModified":"1301902633000","name":"Steve Dash","type":"Person","_key":"60408"} +{"label":"Elissa Dowling","version":26,"id":"83338","lastModified":"1302031451000","name":"Elissa Dowling","type":"Person","_key":"60409"} +{"label":"One Night with the King","description":"This amazing biblical drama chronicles the brave and historic legend of Hadassah, a Jewish orphan with exceptional beauty who rises to become Queen Esther of Persia and saves Persian Jews from genocide. By revealing her heritage to the king, Esther thwarts the evil prime minister's plan to annihilate all Jews in the Persian Empire. The annual festival of Purim is inspired by her heroism.","id":"15005","runtime":123,"imdbId":"tt0430431","version":179,"lastModified":"1301903006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/030\/4bc9457a017a3c57fe01e030\/one-night-with-the-king-mid.jpg","studio":"Gener8Xion Entertainment","genre":"Drama","title":"One Night with the King","releaseDate":1160697600000,"language":"en","type":"Movie","_key":"60410"} +{"label":"Tiffany Dupont","version":20,"id":"87431","lastModified":"1301902028000","name":"Tiffany Dupont","type":"Person","_key":"60411"} +{"label":"Rails & Ties","description":"A deadly collision between a train and car lead to an unlikely bond between the train engineer and a young boy who escapes the carnage.","id":"15006","runtime":0,"imdbId":"tt0822849","version":153,"lastModified":"1301905393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4bc9457f017a3c57fe01e041\/rails-ties-mid.jpg","genre":"Drama","title":"Rails & Ties","releaseDate":1188604800000,"language":"en","type":"Movie","_key":"60412"} +{"label":"Miles Heizer","version":16,"id":"148096","lastModified":"1301903090000","name":"Miles Heizer","type":"Person","_key":"60413"} +{"label":"Bonnie Root","version":18,"id":"94516","lastModified":"1301902611000","name":"Bonnie Root","type":"Person","_key":"60414"} +{"label":"Number Seventeen","description":"A gang of thieves gather at a safe house following a robbery, but a detective is on their trail.","id":"15007","runtime":63,"imdbId":"tt0023285","version":137,"lastModified":"1301904028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4bc9457f017a3c57fe01e04a\/number-seventeen-mid.jpg","studio":"British International Pictures","title":"Number Seventeen","releaseDate":-1199232000000,"language":"en","type":"Movie","_key":"60415"} +{"label":"Leon M. Lion","version":18,"id":"77669","lastModified":"1301901997000","name":"Leon M. Lion","type":"Person","_key":"60416"} +{"label":"Anne Grey","version":20,"id":"77670","lastModified":"1301901831000","name":"Anne Grey","type":"Person","_key":"60417"} +{"label":"Ann Casson","version":20,"id":"77671","lastModified":"1301902008000","name":"Ann Casson","type":"Person","_key":"60418"} +{"label":"Henry Caine","version":20,"id":"77672","lastModified":"1301901998000","name":"Henry Caine","type":"Person","_key":"60419"} +{"label":"Garry Marsh","version":25,"id":"77673","lastModified":"1301901946000","name":"Garry Marsh","type":"Person","_key":"60420"} +{"label":"The Flying Scotsman","description":"Based on the incredible true story of amateur cyclist Graeme Obree, who breaks the world one-hour record on a bike he made out of washing machine parts.","id":"15008","runtime":0,"imdbId":"tt0472268","version":140,"lastModified":"1301906839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/053\/4bc94580017a3c57fe01e053\/the-flying-scotsman-mid.jpg","genre":"Drama","title":"The Flying Scotsman","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"60421"} +{"label":"West","description":"No overview found.","id":"15010","runtime":0,"imdbId":"tt0480053","version":460,"lastModified":"1301711798000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05c\/4bc94580017a3c57fe01e05c\/west-mid.jpg","title":"West","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60422"} +{"label":"Red Mist","description":"A young doctor in a US hospital administers a powerful and untested cocktail of drugs to a coma victim. But instead of curing him, it triggers a powerful \"out-of-body\" experience and enables the patient - a depraved and dangerous loner - to inhabit other people's bodies and, through them, take revenge on the bullying medical students who were accidentally responsible for his condition.","id":"15011","runtime":98,"imdbId":"tt1185264","version":114,"lastModified":"1301921847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbb\/4d4ea0425e73d617ba002bbb\/red-mist-mid.jpg","genre":"Horror","title":"Red Mist","releaseDate":1219363200000,"language":"en","tagline":"Do Not Resuscitate","type":"Movie","_key":"60423"} +{"label":"Linewatch","description":"\nAcademy Award Winner Cuba Gooding, Jr. is a Border Patrol Officer in the New Mexico desert with a secret past that is about to catch up with him. When his old gang leader tracks him down and forces him to smuggle drugs across the border, he must choose between the life he swore to leave behind and saving his family at any cost.","id":"15012","runtime":90,"imdbId":"tt1047832","version":165,"lastModified":"1302039200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/077\/4bc94583017a3c57fe01e077\/linewatch-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"Linewatch","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60424"} +{"label":"Wah-Wah","description":"Set at the end of the '60s, as Swaziland is about to receive independence from Great Britain, the film follows the young Ralph Compton, at 12, through his parents' traumatic separation, till he's 14.","id":"15013","runtime":120,"imdbId":"tt0419256","version":147,"lastModified":"1301903398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/080\/4bc94584017a3c57fe01e080\/wah-wah-mid.jpg","studio":"Scion Films Limited","genre":"Drama","title":"Wah-Wah","releaseDate":1150934400000,"language":"en","type":"Movie","_key":"60425"} +{"label":"Zac Fox","version":19,"id":"77680","lastModified":"1301901719000","name":"Zac Fox","type":"Person","_key":"60426"} +{"label":"John Matshikiza","version":22,"id":"77681","lastModified":"1301901593000","name":"John Matshikiza","type":"Person","_key":"60427"} +{"label":"John Carlisle","version":21,"id":"77682","lastModified":"1301901598000","name":"John Carlisle","type":"Person","_key":"60428"} +{"label":"Mathokoza Sibiya","version":19,"id":"77683","lastModified":"1301901608000","name":"Mathokoza Sibiya","type":"Person","_key":"60429"} +{"label":"Sindisiswe Nxumalo","version":19,"id":"77684","lastModified":"1301901719000","name":"Sindisiswe Nxumalo","type":"Person","_key":"60430"} +{"label":"Michael Richard","version":19,"id":"77685","lastModified":"1301901719000","name":"Michael Richard","type":"Person","_key":"60431"} +{"label":"Caroline Smart","version":19,"id":"77686","lastModified":"1301901608000","name":"Caroline Smart","type":"Person","_key":"60432"} +{"label":"Olivia Grant","version":19,"id":"77687","lastModified":"1301901719000","name":"Olivia Grant","type":"Person","_key":"60433"} +{"label":"Sibusiso Mamba","version":19,"id":"77688","lastModified":"1301901608000","name":"Sibusiso Mamba","type":"Person","_key":"60434"} +{"label":"Tony Hatton","version":19,"id":"77689","lastModified":"1301901719000","name":"Tony Hatton","type":"Person","_key":"60435"} +{"label":"Clare Marshall","version":19,"id":"77690","lastModified":"1301901719000","name":"Clare Marshall","type":"Person","_key":"60436"} +{"label":"Kim Borrell","version":20,"id":"77691","lastModified":"1301901811000","name":"Kim Borrell","type":"Person","_key":"60437"} +{"label":"Bianca","description":"No overview found.","id":"15014","runtime":0,"imdbId":"tt0085240","version":53,"lastModified":"1301194084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4cc7ee3f5e73d65024000145\/bianca-mid.jpg","title":"Bianca","releaseDate":441763200000,"language":"en","type":"Movie","_key":"60438"} +{"label":"Barbie as Rapunzel","description":"Long, long ago, in a time of magic and dragons, there lived a girl named Rapunzel who had the most beautiful radiant hair the world had ever seen. But Rapunzel's life was far from wonderful. She lived as a servant to Gothel, a jealous, scheming witch who kept her hidden deep in a forbidding forest, guarded by the enormous dragon Hugo and surrounded by an enchanted glass wall. However, in a twist of fate, Rapunzel's discovery of a magic paintbrush leads her on a journey that will unravel a web of","id":"15015","runtime":83,"imdbId":"tt0313255","trailer":"http:\/\/www.youtube.com\/watch?v=FdObIxS1CPk","version":121,"lastModified":"1301902962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08e\/4bc94585017a3c57fe01e08e\/barbie-as-rapunzel-mid.jpg","studio":"Rainmaker Entertainment","genre":"Animation","title":"Barbie as Rapunzel","releaseDate":1033430400000,"language":"en","type":"Movie","_key":"60439"} +{"label":"Barbie of Swan Lake","description":"Barbie comes to life in her third animated movie, based on the beloved fairy tale and set to the brilliant music of Tchaikovsky. Barbie as Odette, the young daughter of a baker, follows a unicorn into the Enchanted Forest and is transformed into a swan by an evil wizard intent on defeating the Fairy Queen.","id":"15016","runtime":81,"imdbId":"tt0383206","version":154,"lastModified":"1301903810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc94587017a3c57fe01e0a5\/barbie-of-swan-lake-mid.jpg","genre":"Animation","title":"Barbie of Swan Lake","releaseDate":1064880000000,"language":"en","type":"Movie","_key":"60440"} +{"label":"Maggie Wheeler","version":15,"id":"145345","lastModified":"1301902347000","name":"Maggie Wheeler","type":"Person","_key":"60441"} +{"label":"Blonde Ambition","description":"A young professional woman (Simpson) unwittingly becomes the pawn of two business executives in their bid to oust the head of a mega-conglomerate.","id":"15017","runtime":93,"imdbId":"tt0887719","version":172,"lastModified":"1301903135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc9458b017a3c57fe01e0b2\/blonde-ambition-mid.jpg","studio":"Millenium Films","genre":"Comedy","title":"Blonde Ambition","releaseDate":1198195200000,"language":"en","tagline":"Small-town girl. Big-time dreams.","type":"Movie","_key":"60442"} +{"label":"Scott Marshall Smith","version":27,"id":"69144","lastModified":"1301901791000","name":"Scott Marshall Smith","type":"Person","_key":"60443"} +{"label":"Thriller \u2013 A Cruel Picture","description":"A young woman, muted after a sexual assault as a child, is trained to seek violent revenge on those who have wronged her after being kidnapped and forced to work as a prostitute.","id":"15018","runtime":104,"imdbId":"tt0072285","trailer":"http:\/\/www.youtube.com\/watch?v=992","version":62,"lastModified":"1301903996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c8\/4bc9458d017a3c57fe01e0c8\/thriller-en-grym-film-mid.jpg","studio":"BAV Film","genre":"Horror","title":"Thriller \u2013 A Cruel Picture","releaseDate":139622400000,"language":"en","type":"Movie","_key":"60444"} +{"label":"Christina Lindberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e0\/4cba1f955e73d677810007e0\/christina-lindberg-profile.jpg","version":30,"id":"77707","lastModified":"1301901238000","name":"Christina Lindberg","type":"Person","_key":"60445"} +{"label":"Heinz Hopf","version":21,"id":"77708","lastModified":"1301901719000","name":"Heinz Hopf","type":"Person","_key":"60446"} +{"label":"Despina Tomazani","version":18,"id":"133716","lastModified":"1301902688000","name":"Despina Tomazani","type":"Person","_key":"60447"} +{"label":"Solveig Andersson","version":18,"id":"133717","lastModified":"1301902514000","name":"Solveig Andersson","type":"Person","_key":"60448"} +{"label":"Bj\u00f6rn Kristiansson","version":18,"id":"133718","lastModified":"1301902532000","name":"Bj\u00f6rn Kristiansson","type":"Person","_key":"60449"} +{"label":"Marie-Louise Mannervall","version":18,"id":"133719","lastModified":"1301902522000","name":"Marie-Louise Mannervall","type":"Person","_key":"60450"} +{"label":"Hildur Lindberg","version":17,"id":"133720","lastModified":"1301902477000","name":"Hildur Lindberg","type":"Person","_key":"60451"} +{"label":"Stig Lokrantz","version":17,"id":"133721","lastModified":"1301902466000","name":"Stig Lokrantz","type":"Person","_key":"60452"} +{"label":"Olle Nordlander","version":17,"id":"133722","lastModified":"1301902466000","name":"Olle Nordlander","type":"Person","_key":"60453"} +{"label":"Marshall McDough","version":18,"id":"133723","lastModified":"1301902544000","name":"Marshall McDough","type":"Person","_key":"60454"} +{"label":"Gunnar Palm","version":18,"id":"133724","lastModified":"1301902531000","name":"Gunnar Palm","type":"Person","_key":"60455"} +{"label":"Pamela Peth\u00f6-Galantai","version":17,"id":"133725","lastModified":"1301902423000","name":"Pamela Peth\u00f6-Galantai","type":"Person","_key":"60456"} +{"label":"Lennart Robertsson","version":17,"id":"133726","lastModified":"1301902403000","name":"Lennart Robertsson","type":"Person","_key":"60457"} +{"label":"Hans-Eric Stenborg","version":17,"id":"133727","lastModified":"1301902403000","name":"Hans-Eric Stenborg","type":"Person","_key":"60458"} +{"label":"Bo Arne Vibenius","version":23,"id":"77709","lastModified":"1301901474000","name":"Bo Arne Vibenius","type":"Person","_key":"60459"} +{"label":"I Could Never Be Your Woman","description":"This movie follows a mother who falls for a younger man while her daughter falls in love for the first time. Mother Nature messes with their fates.","id":"15019","runtime":97,"imdbId":"tt0466839","trailer":"http:\/\/www.youtube.com\/watch?v=vwGN7HVgE_M","version":221,"lastModified":"1301902152000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4bc9458e017a3c57fe01e0db\/i-could-never-be-your-woman-mid.jpg","studio":"I Could Never Ltd.","genre":"Comedy","title":"I Could Never Be Your Woman","releaseDate":1178841600000,"language":"en","type":"Movie","_key":"60460"} +{"label":"Sarah Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b3\/4cf678c75e73d6299d0011b3\/sarah-alexander-profile.jpg","version":22,"id":"84035","lastModified":"1301902212000","name":"Sarah Alexander","type":"Person","_key":"60461"} +{"label":"Yasmin Paige","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bc\/4cf679b05e73d6299e0011bc\/yasmin-paige-profile.jpg","version":25,"id":"81571","lastModified":"1301901119000","name":"Yasmin Paige","type":"Person","_key":"60462"} +{"label":"Ed Byrne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29a\/4cf683aa5e73d6299a00129a\/ed-byrne-profile.jpg","version":22,"id":"95664","lastModified":"1301902402000","name":"Ed Byrne","type":"Person","_key":"60463"} +{"label":"Poor Boy's Game","description":"No overview found.","id":"15020","runtime":104,"imdbId":"tt0816616","version":140,"lastModified":"1301907093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ee\/4bc94590017a3c57fe01e0ee\/poor-boy-s-game-mid.jpg","genre":"Drama","title":"Poor Boy's Game","releaseDate":1171152000000,"language":"en","type":"Movie","_key":"60464"} +{"label":"Flex Alexander","version":17,"id":"109686","lastModified":"1301902316000","name":"Flex Alexander","type":"Person","_key":"60465"} +{"label":"Greg Bryk","version":22,"id":"142225","lastModified":"1301902651000","name":"Greg Bryk","type":"Person","_key":"60466"} +{"label":"Stephen McHattie","version":22,"id":"142227","lastModified":"1301902718000","name":"Stephen McHattie","type":"Person","_key":"60467"} +{"label":"Dwain Murphy","version":19,"id":"80968","lastModified":"1301901608000","name":"Dwain Murphy","type":"Person","_key":"60468"} +{"label":"Pel\u00edculas para no dormir: La habitaci\u00f3n del ni\u00f1o","description":"No overview found.","id":"15021","runtime":77,"imdbId":"tt0430164","version":28,"lastModified":"1301416869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4bc94591017a3c57fe01e0f7\/peliculas-para-no-dormir-la-habitacion-del-nino-mid.jpg","studio":"Filmax Group","genre":"Horror","title":"Pel\u00edculas para no dormir: La habitaci\u00f3n del ni\u00f1o","releaseDate":1168560000000,"language":"en","type":"Movie","_key":"60469"} +{"label":"Dirty Deeds","description":"An American Pie-like teen comedy in which a high school senior tries to become the first student in years to complete the Dirty Deeds, an outrageous series of challenges that must be completed by the Homecoming banquet at 9 a.m.","id":"15022","runtime":87,"imdbId":"tt0407732","version":112,"lastModified":"1301903763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/105\/4bc94593017a3c57fe01e105\/dirty-deeds-mid.jpg","genre":"Comedy","title":"Dirty Deeds","releaseDate":1125014400000,"language":"en","type":"Movie","_key":"60470"} +{"label":"Park","description":"Park takes place all in one day in a public park in Los Angeles, as 11 disaffected Angelenos find both love and loss in unexpected ways","id":"15023","runtime":86,"imdbId":"tt0469519","version":279,"lastModified":"1301903763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10e\/4bc94596017a3c57fe01e10e\/park-mid.jpg","genre":"Comedy","title":"Park","releaseDate":1139443200000,"language":"en","type":"Movie","_key":"60471"} +{"label":"Kurt Voelker","version":21,"id":"19970","lastModified":"1301901920000","name":"Kurt Voelker","type":"Person","_key":"60472"} +{"label":"Dagney Kerr","version":19,"id":"80232","lastModified":"1301902068000","name":"Dagney Kerr","type":"Person","_key":"60473"} +{"label":"David Fenner","version":19,"id":"80233","lastModified":"1301902068000","name":"David Fenner","type":"Person","_key":"60474"} +{"label":"The Mists of Avalon","description":"A unique re-working of the Arthurian epic, based on the novel by Marion Zimmer Bradley, The Mists of Avalon tells the familiar tale but with an important twist: The story is told through the eyes of the women who wielded power behind King Arthur's throne. Filmed on location in Prague, The Mists of Avalon follows the women of Avalon through the ultimate fulfillment of their destinies.","id":"15024","runtime":183,"imdbId":"tt0244353","homepage":"http:\/\/alt.tnt.tv\/movies\/tntoriginals\/mists\/","version":176,"lastModified":"1301904435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/117\/4bc94597017a3c57fe01e117\/the-mists-of-avalon-mid.jpg","genre":"Action","title":"The Mists of Avalon","releaseDate":995155200000,"language":"en","type":"Movie","_key":"60475"} +{"label":"Projekt Gold - Eine deutsche Handball-WM","description":"No overview found.","id":"15025","runtime":106,"imdbId":"tt1063692","version":44,"lastModified":"1301904708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/120\/4bc94598017a3c57fe01e120\/projekt-gold-eine-deutsche-handball-wm-mid.jpg","genre":"Documentary","title":"Projekt Gold - Eine deutsche Handball-WM","releaseDate":1185753600000,"language":"en","type":"Movie","_key":"60476"} +{"label":"Guyver","description":"FBI agent Max Reed witnesses Dr. Tetsu Segawa - a researcher for the mysterious Chronos Corporation - being murdered. Dr. Segawa had stolen an alien device known as \"The Guyver\" from Chronos. College student Sean Barker, whose girlfriend's father was Dr. Segawa, finds the Guyver's hiding spot while watching the forensic team investigating the crime scene. Through further events, the Guyver fuses w","id":"15026","runtime":88,"imdbId":"tt0101988","version":118,"lastModified":"1301904381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/129\/4bc94599017a3c57fe01e129\/guyver-mid.jpg","genre":"Action","title":"Guyver","releaseDate":662688000000,"language":"en","type":"Movie","_key":"60477"} +{"label":"Jack Armstrong","version":19,"id":"77741","lastModified":"1301901474000","name":"Jack Armstrong","type":"Person","_key":"60478"} +{"label":"Greg Paik","version":19,"id":"77739","lastModified":"1301901534000","name":"Greg Paik","type":"Person","_key":"60479"} +{"label":"Spice Williams-Crosby","version":20,"id":"77740","lastModified":"1301902068000","name":"Spice Williams-Crosby","type":"Person","_key":"60480"} +{"label":"Johnnie Saiko","version":19,"id":"77742","lastModified":"1301902068000","name":"Johnnie Saiko","type":"Person","_key":"60481"} +{"label":"Deborah Gorman","version":19,"id":"77743","lastModified":"1301902068000","name":"Deborah Gorman","type":"Person","_key":"60482"} +{"label":"Danny Gibson","version":19,"id":"77744","lastModified":"1301902068000","name":"Danny Gibson","type":"Person","_key":"60483"} +{"label":"'Evil' Ted Smith","version":19,"id":"77745","lastModified":"1301901976000","name":"'Evil' Ted Smith","type":"Person","_key":"60484"} +{"label":"Doug Simpson","version":19,"id":"77746","lastModified":"1301902068000","name":"Doug Simpson","type":"Person","_key":"60485"} +{"label":"Clockstoppers","description":"Until now, Zak Gibbs' greatest challenge has been finding a way to buy a car. But when he discovers an odd wristwatch amidst his father's various inventions and slips it on, something very strange happens. The world around him seemingly comes to a stop; giving the effect that everyone has come to a stop. Zak quickly learns how to manipulate the device, and he and his quick-witted, beautiful new friend, Francesca, have some real fun. What they soon realize, though, is they are not alone in hypert","id":"15028","runtime":94,"imdbId":"tt0157472","version":179,"lastModified":"1301905037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4bc94599017a3c57fe01e136\/clockstoppers-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Clockstoppers","releaseDate":1016323200000,"language":"en","type":"Movie","_key":"60486"} +{"label":"Lindze Letherman","version":20,"id":"90423","lastModified":"1301902531000","name":"Lindze Letherman","type":"Person","_key":"60487"} +{"label":"Jason George","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/136\/4ceeb3905e73d65315000136\/jason-george-profile.jpg","version":24,"id":"95475","lastModified":"1301901849000","name":"Jason George","type":"Person","_key":"60488"} +{"label":"The Whoopee Boys","description":"No overview found.","id":"15029","runtime":0,"imdbId":"tt0092210","version":130,"lastModified":"1301907515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/147\/4bc9459b017a3c57fe01e147\/the-whoopee-boys-mid.jpg","genre":"Comedy","title":"The Whoopee Boys","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60489"} +{"label":"Deep Water","description":"DEEP WATER is the stunning true story of the fateful voyage of Donald Crowhurst, an amateur yachtsman who enters the most daring nautical challenge ever \u2013 the very first solo, non-stop, round-the-world boat race.","id":"15030","runtime":92,"imdbId":"tt0460766","version":122,"lastModified":"1301906256000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/155\/4bc9459c017a3c57fe01e155\/deep-water-mid.jpg","studio":"Darlow Smithson Productions","genre":"Documentary","title":"Deep Water","releaseDate":1166140800000,"language":"en","type":"Movie","_key":"60490"} +{"label":"Louise Osmond","version":20,"id":"78054","lastModified":"1301901686000","name":"Louise Osmond","type":"Person","_key":"60491"} +{"label":"Jerry Rothwell","version":19,"id":"78055","lastModified":"1301901646000","name":"Jerry Rothwell","type":"Person","_key":"60492"} +{"label":"The Breaks","description":"Derrick, a racially-confused Irishman raised in the hood by a black family is having the worst day ever. Determined to prove to his fed-up mother and would-be girlfriend that he's not a screw-up, he sets out to do one thing right (get some milk) and even that proves to be a challenge! Hilarious encounters with racist red-neck cops, local gangsters and 'flamboyant' pawn shop owners ensue, and along the way Derek shows that he can actually do things for others and maybe even get his own life tog","id":"15031","runtime":86,"imdbId":"tt0181322","version":240,"lastModified":"1301907158000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15a\/4bc9459c017a3c57fe01e15a\/the-breaks-mid.jpg","genre":"Comedy","title":"The Breaks","releaseDate":919987200000,"language":"en","type":"Movie","_key":"60493"} +{"label":"Mitch Mullany","version":20,"id":"77732","lastModified":"1301902174000","name":"Mitch Mullany","type":"Person","_key":"60494"} +{"label":"Eric Meza","version":21,"id":"77733","lastModified":"1301901991000","name":"Eric Meza","type":"Person","_key":"60495"} +{"label":"Constantine's Sword","description":"An exploration of the dark side of Christianity, following acclaimed author and former priest James Carroll on a journey of remembrance and reckoning.","id":"15033","runtime":0,"imdbId":"tt0902270","version":106,"lastModified":"1301417318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bc9459c017a3c57fe01e163\/constantine-s-sword-mid.jpg","genre":"Documentary","title":"Constantine's Sword","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60496"} +{"label":"Oren Jacoby","version":17,"id":"139825","lastModified":"1301902795000","name":"Oren Jacoby","type":"Person","_key":"60497"} +{"label":"Le S\u00e9minaire","description":"No overview found.","id":"15034","runtime":94,"imdbId":"tt1353040","homepage":"http:\/\/www.le-seminaire-camera-cafe-le-film.com\/","version":53,"lastModified":"1302112597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/174\/4bc9459e017a3c57fe01e174\/le-seminaire-mid.jpg","studio":"TFM Distribution","genre":"Comedy","title":"Le S\u00e9minaire","releaseDate":1234310400000,"language":"en","type":"Movie","_key":"60498"} +{"label":"Bruno Solo","version":36,"id":"77734","lastModified":"1301901467000","name":"Bruno Solo","type":"Person","_key":"60499"} +{"label":"Yvan Le Bolloc'h","version":21,"id":"77735","lastModified":"1301902172000","name":"Yvan Le Bolloc'h","type":"Person","_key":"60500"} +{"label":"Armelle","version":22,"id":"77736","lastModified":"1301901474000","name":"Armelle","type":"Person","_key":"60501"} +{"label":"Alain Bouzigues","version":20,"id":"77737","lastModified":"1301902068000","name":"Alain Bouzigues","type":"Person","_key":"60502"} +{"label":"Jeanne Savary","version":19,"id":"77738","lastModified":"1301902068000","name":"Jeanne Savary","type":"Person","_key":"60503"} +{"label":"Fire and Ice","description":"In this animated tale, a tiny village is destroyed by a surging glacier, which serves as the deadly domain for the evil Ice Lord, Nekron. The only survivor is a young warrior, Larn, who vows to avenge this act of destruction. The evil continues, however, as Nekron's palace of ice heads straight towards Fire Keep, the great fortress ruled by the good King Jarol. When Jarol's beautiful daughter, Teegra, is abducted by Nekron's sub-human ape-like creatures, Larn begins a daring search for her. What","id":"15035","runtime":81,"imdbId":"tt0085542","version":126,"lastModified":"1301904615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/191\/4bc945a4017a3c57fe01e191\/fire-and-ice-mid.jpg","genre":"Animation","title":"Fire and Ice","releaseDate":430704000000,"language":"en","tagline":"The end of mankind as we know it.","type":"Movie","_key":"60504"} +{"label":"Randy Norton","version":20,"id":"91620","lastModified":"1301902327000","name":"Randy Norton","type":"Person","_key":"60505"} +{"label":"Cynthia Leake","version":20,"id":"91621","lastModified":"1301902505000","name":"Cynthia Leake","type":"Person","_key":"60506"} +{"label":"Steve Sandor","version":22,"id":"15999","lastModified":"1301901562000","name":"Steve Sandor","type":"Person","_key":"60507"} +{"label":"Sean Hannon","version":20,"id":"91622","lastModified":"1301903034000","name":"Sean Hannon","type":"Person","_key":"60508"} +{"label":"Eden \u00e0 l'ouest","description":"No overview found.","id":"15036","runtime":110,"imdbId":"tt1158936","homepage":"http:\/\/www.edenalouest-lefilm.com\/","version":39,"lastModified":"1301906605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19a\/4bc945a5017a3c57fe01e19a\/eden-a-l-ouest-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Drama","title":"Eden \u00e0 l'ouest","releaseDate":1234310400000,"language":"en","type":"Movie","_key":"60509"} +{"label":"Can't Hardly Wait","description":"It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.","id":"15037","runtime":100,"imdbId":"tt0127723","version":174,"lastModified":"1301902842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4bc945a6017a3c57fe01e1ab\/can-t-hardly-wait-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Can't Hardly Wait","releaseDate":897609600000,"language":"en","type":"Movie","_key":"60510"} +{"label":"Harry Elfont","version":39,"id":"13615","lastModified":"1301901358000","name":"Harry Elfont","type":"Person","_key":"60511"} +{"label":"Deborah Kaplan","version":39,"id":"13614","lastModified":"1301901320000","name":"Deborah Kaplan","type":"Person","_key":"60512"} +{"label":"Against the Dark","description":"When most of the population of Earth is infected by a virus and transformed into flesh eaters and blood drinking creatures, a group of hunters lead by Tao and his sword chase the vampire zombies to eliminate them. Six non-infected survivors try to find the exit of an abandoned hospital crowded of the infected creatures. Meanwhile, the military is ready to bomb the whole area.","id":"15039","runtime":90,"imdbId":"tt1194271","version":168,"lastModified":"1301904381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b4\/4bc945a7017a3c57fe01e1b4\/against-the-dark-mid.jpg","studio":"Castel Film Romania","genre":"Action","title":"Against the Dark","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"60513"} +{"label":"Jenna Harrison","version":27,"id":"77749","lastModified":"1301901534000","name":"Jenna Harrison","type":"Person","_key":"60514"} +{"label":"Danny Midwinter","version":23,"id":"77821","lastModified":"1301901534000","name":"Danny Midwinter","type":"Person","_key":"60515"} +{"label":"Emma Catherwood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24e\/4cf1b96e5e73d61e3e00024e\/emma-catherwood-profile.jpg","version":32,"birthday":"376527600000","id":"77822","lastModified":"1301901283000","name":"Emma Catherwood","type":"Person","_key":"60516"} +{"label":"Stephen Hagan","version":23,"id":"77823","lastModified":"1301902244000","name":"Stephen Hagan","type":"Person","_key":"60517"} +{"label":"Tanoai Reed","version":25,"id":"77824","lastModified":"1301901608000","name":"Tanoai Reed","type":"Person","_key":"60518"} +{"label":"Richard Crudo","version":28,"id":"21588","lastModified":"1301903117000","name":"Richard Crudo","type":"Person","_key":"60519"} +{"label":"Big Money Hustlas","description":"Sugar Bear (Shaggy 2 Dope), a detective from Frisco is called down to NYC by police chief (John G. Brennan) to assist Officer Harry Cox (Harland Williams). The mission is to take down the corrupt crime ring controlled by Big Baby Sweets (Violent J) and his two right-hand little bitches Big Stank (Jamie Madrox) and Lil' Poot (Monoxide Child).","id":"15040","runtime":97,"imdbId":"tt0193007","homepage":"http:\/\/www.bigmoneyhustlas.com\/","version":168,"lastModified":"1301906470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/068\/4c20490e7b9aa1321e000068\/big-money-hustlas-mid.jpg","studio":"Non-Homogenized Productions Ltd.","genre":"Comedy","title":"Big Money Hustlas","releaseDate":963878400000,"language":"en","type":"Movie","_key":"60520"} +{"label":"John Cafiero","version":20,"id":"77752","lastModified":"1301901778000","name":"John Cafiero","type":"Person","_key":"60521"} +{"label":"Violent J","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17f\/4c275bae5e73d61d0a00017f\/joseph-bruce-profile.jpg","biography":"Despite being one of the most hated bands in the world, Insane Clown Posse have managed to release several Platinum Albums. They've also managed to create the third highest grossing wrestling organization in the country; managed to keep the longest running hip hop record in BillBoard Top 200 history; film their own full-length motion picture, wrestled in the WWF, WCW and ECW; founded their own record label (Psychopathic Records); as well as releasing their own highly successful line of comics, t","version":23,"id":"77755","birthplace":"Detroit, Michigan, USA","lastModified":"1301901523000","name":"Violent J","type":"Person","_key":"60522"} +{"label":"Shaggy 2 Dope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/164\/4c275c825e73d61d0b000164\/joe-utsler-profile.jpg","version":20,"id":"77759","lastModified":"1301901592000","name":"Shaggy 2 Dope","type":"Person","_key":"60523"} +{"label":"Monoxide","version":19,"id":"77760","lastModified":"1301901579000","name":"Monoxide","type":"Person","_key":"60524"} +{"label":"John G. Brennan","version":22,"id":"77761","lastModified":"1301901646000","name":"John G. Brennan","type":"Person","_key":"60525"} +{"label":"Myzery","version":17,"id":"77762","lastModified":"1301901348000","name":"Myzery","type":"Person","_key":"60526"} +{"label":"American Girl","description":"A pregnant teenager is determined to leave her trailer park home with the hope of living a happy family life.","id":"15041","runtime":88,"imdbId":"tt0329297","version":238,"lastModified":"1301302608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b9\/4bc945a7017a3c57fe01e1b9\/american-girl-mid.jpg","studio":"Tomorrow Film Corporation","title":"American Girl","releaseDate":1013299200000,"language":"en","type":"Movie","_key":"60527"} +{"label":"Harmony Blossom","version":22,"id":"77756","lastModified":"1301901444000","name":"Harmony Blossom","type":"Person","_key":"60528"} +{"label":"Hating Alison Ashley","description":"Classmates Erica Yurgen and Alison Ashley vie with each other to become the undisputed star of their class. ","id":"15042","runtime":100,"imdbId":"tt0402247","version":67,"lastModified":"1301908291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e71\/4d47c2b05e73d67063002e71\/hating-alison-ashley-mid.jpg","studio":"HAA Films Pty Ltd","genre":"Comedy","title":"Hating Alison Ashley","releaseDate":1111017600000,"language":"en","type":"Movie","_key":"60529"} +{"label":"Saskia Burmeister","version":20,"id":"77764","lastModified":"1301901865000","name":"Saskia Burmeister","type":"Person","_key":"60530"} +{"label":"Delta Goodrem","version":20,"id":"77765","lastModified":"1301901673000","name":"Delta Goodrem","type":"Person","_key":"60531"} +{"label":"Tracy Mann","version":20,"id":"77766","lastModified":"1301902174000","name":"Tracy Mann","type":"Person","_key":"60532"} +{"label":"Rachael Carpani","version":28,"id":"77767","lastModified":"1301901437000","name":"Rachael Carpani","type":"Person","_key":"60533"} +{"label":"Abigail Gudgeon","version":19,"id":"77768","lastModified":"1301902068000","name":"Abigail Gudgeon","type":"Person","_key":"60534"} +{"label":"Anthony Cleave","version":19,"id":"77769","lastModified":"1301902068000","name":"Anthony Cleave","type":"Person","_key":"60535"} +{"label":"Jean Kittson","version":19,"id":"77770","lastModified":"1301902068000","name":"Jean Kittson","type":"Person","_key":"60536"} +{"label":"Holly Myers","version":20,"id":"77772","lastModified":"1301902174000","name":"Holly Myers","type":"Person","_key":"60537"} +{"label":"Babs McMillan","version":20,"id":"77773","lastModified":"1301902174000","name":"Babs McMillan","type":"Person","_key":"60538"} +{"label":"Brink!","description":"No overview found.","id":"15043","runtime":99,"imdbId":"tt0162212","version":74,"lastModified":"1301905561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c2\/4bc945a8017a3c57fe01e1c2\/brink-mid.jpg","studio":"Brink Productions","genre":"Drama","title":"Brink!","releaseDate":904262400000,"language":"en","type":"Movie","_key":"60539"} +{"label":"Sam Horrigan","version":22,"id":"77796","lastModified":"1301901948000","name":"Sam Horrigan","type":"Person","_key":"60540"} +{"label":"Einstein and Eddington","description":"A look at the evolution of Albert Einstein's theory of relativity, and Einstein's relationship with British scientist Sir Arthur Eddington, the first physicist to understand his ideas.","id":"15044","runtime":90,"imdbId":"tt0995036","version":86,"lastModified":"1301906955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cf\/4bc945a9017a3c57fe01e1cf\/einstein-and-eddington-mid.jpg","genre":"Documentary","title":"Einstein and Eddington","releaseDate":1227916800000,"language":"en","type":"Movie","_key":"60541"} +{"label":"Jacob Theato","version":20,"id":"77797","lastModified":"1301901865000","name":"Jacob Theato","type":"Person","_key":"60542"} +{"label":"Callum Williams","version":20,"id":"77798","lastModified":"1301901534000","name":"Callum Williams","type":"Person","_key":"60543"} +{"label":"Philip Martin","version":21,"id":"80660","lastModified":"1301901608000","name":"Philip Martin","type":"Person","_key":"60544"} +{"label":"Fat Albert","description":"An obese boy named Fat Albert and his friends Rudy, Mushmouth, Bill, Dumb Donald, Russell, and Weird Harold, pulls into trouble when they \"fall\" out of their TV world into the real world, where Fat Albert tries to help a young girl, Doris, make friends. ","id":"15045","runtime":93,"imdbId":"tt0396592","version":158,"lastModified":"1301906226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dc\/4bc945ac017a3c57fe01e1dc\/fat-albert-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Fat Albert","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"60545"} +{"label":"Shedrack Anderson III","version":19,"id":"77799","lastModified":"1301901534000","name":"Shedrack Anderson III","type":"Person","_key":"60546"} +{"label":"Aaron Frazier","version":19,"id":"77800","lastModified":"1301901534000","name":"Aaron Frazier","type":"Person","_key":"60547"} +{"label":"Marques Houston","version":22,"id":"77801","lastModified":"1301901936000","name":"Marques Houston","type":"Person","_key":"60548"} +{"label":"Omarion Grandberry","version":19,"id":"77802","lastModified":"1301901534000","name":"Omarion Grandberry","type":"Person","_key":"60549"} +{"label":"7-10 Split","description":"An aspiring actor whose career is in the dumps, exploits his amazing bowling skills to take the PBA by storm and becomes rich and famous, only to lose his best girl and best friend...","id":"15046","runtime":90,"imdbId":"tt0784962","trailer":"http:\/\/www.youtube.com\/watch?v=28y7iMAQRDQ","version":86,"lastModified":"1301904879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e1\/4bc945ac017a3c57fe01e1e1\/7-10-split-mid.jpg","studio":"Wingman Productions","genre":"Comedy","title":"7-10 Split","releaseDate":1172016000000,"language":"en","type":"Movie","_key":"60550"} +{"label":"Tommy Reid","version":21,"id":"77804","lastModified":"1301902144000","name":"Tommy Reid","type":"Person","_key":"60551"} +{"label":"Ross Patterson","version":20,"id":"77809","lastModified":"1301901948000","name":"Ross Patterson","type":"Person","_key":"60552"} +{"label":"Beaufort","description":"BEAUFORT tells the story of LIRAZ LIBERTI, the 22 year-old outpost commander, and his troops in the months before Israel pulled out of Lebanon. This is not a story of war, but of retreat. This is a story with no enemy, only an amorphous entity that drops bombs from the skies while terrified young soldiers must find a way to carry out their mission until their very last minutes on that mountaintop.","id":"15048","runtime":131,"imdbId":"tt0758732","version":93,"lastModified":"1301907305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ea\/4bc945ad017a3c57fe01e1ea\/bufor-mid.jpg","studio":"Metro Communications","genre":"Drama","title":"Beaufort","releaseDate":1171411200000,"language":"en","type":"Movie","_key":"60553"} +{"label":"Joseph Cedar","version":24,"id":"77815","lastModified":"1301902358000","name":"Joseph Cedar","type":"Person","_key":"60554"} +{"label":"Oshri Cohen","version":28,"id":"77820","lastModified":"1301901453000","name":"Oshri Cohen","type":"Person","_key":"60555"} +{"label":"Bon Cop Bad Cop","description":"When the body of the executive of hockey Benoit Brisset is found on the billboard of the border of Quebec and Ontario, the jurisdiction of the crime is shared between the two police forces and detectives David Bouchard from Montreal and Martin Ward from Toronto are assigned to work together. With totally different styles, attitudes and languages.","id":"15049","runtime":116,"imdbId":"tt0479647","trailer":"http:\/\/www.youtube.com\/watch?v=1006","version":141,"lastModified":"1301902023000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32a\/4d44da8a5e73d6706300132a\/bon-cop-bad-cop-mid.jpg","genre":"Action","title":"Bon Cop Bad Cop","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"60556"} +{"label":"Michel Beaudry","version":20,"id":"77819","lastModified":"1301901719000","name":"Michel Beaudry","type":"Person","_key":"60557"} +{"label":"Brainstorm","description":"Brilliant researchers Lillian Reynolds and Michael Brace have developed a system of recording and playing back actual experiences of people. Once the capability of tapping into \"higher brain functions\" is added in, and you can literally jump into someone else's head and play back recordings of what he or she was thinking, feeling, seeing, etc.","id":"15050","runtime":106,"imdbId":"tt0085271","trailer":"http:\/\/www.youtube.com\/watch?v=2599","version":119,"lastModified":"1301904381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c8\/4c1686ef7b9aa108b40000c8\/brainstorm-mid.jpg","genre":"Science Fiction","title":"Brainstorm","releaseDate":441590400000,"language":"en","type":"Movie","_key":"60558"} +{"label":"The Lodger","description":"Contemporary adaptation of novel, The Lodger, by Marie Belloc Lowndes set in Los Angeles with two converging plot lines: The first involves an uneasy relationship between a psychologically unstable landlady and her enigmatic lodger; the second is about a troubled detective engaged in a cat-and-mouse game with the elusive killer","id":"15052","runtime":96,"imdbId":"tt0851530","version":197,"lastModified":"1301906203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d3\/4d4854f45e73d66f590032d3\/the-lodger-mid.jpg","title":"The Lodger","releaseDate":1228089600000,"language":"en","type":"Movie","_key":"60559"} +{"label":"Roy Werner","version":13,"id":"159480","lastModified":"1301903461000","name":"Roy Werner","type":"Person","_key":"60560"} +{"label":"Ernie Grunwald","version":13,"id":"165448","lastModified":"1301903527000","name":"Ernie Grunwald","type":"Person","_key":"60561"} +{"label":"Virginia Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10e\/4d8c9f625e73d65e2d00010e\/virginia-williams-profile.jpg","version":18,"birthday":"259110000000","id":"168986","birthplace":"Memphis, Tennessee, USA","lastModified":"1301903462000","name":"Virginia Williams","type":"Person","_key":"60562"} +{"label":"David Ondaatje","version":5,"id":"230353","lastModified":"1301904128000","name":"David Ondaatje","type":"Person","_key":"60563"} +{"label":"Sex and Breakfast","description":"Young couples experiment with anonymous group sex as a way to revitalize their troubled relationships. Through the experience they are forced to rethink the rudiments of a successful relationship: sex, love, and communication. Meet James and Heather. Their relationship isn't working. A cold distance has grown between them and their intimate moments feel forced","id":"15053","runtime":81,"imdbId":"tt0837803","version":207,"lastModified":"1301904615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4bc945b0017a3c57fe01e216\/sex-and-breakfast-mid.jpg","studio":"Brandman Productions","genre":"Comedy","title":"Sex and Breakfast","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"60564"} +{"label":"A Perfect Place","description":"No overview found.","id":"15054","runtime":25,"imdbId":"tt1177935","version":241,"lastModified":"1301908007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21b\/4bc945b0017a3c57fe01e21b\/a-perfect-place-mid.jpg","studio":"Fantoma Films","title":"A Perfect Place","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60565"} +{"label":"Suspension","description":"Daniel loses his wife and son in a car accident. While slowly recovering from his injuries, he rebuilds his son's video camera that was destroyed in the crash. Infused with power from the moment of the crash, the camera develops the ability to stop time when Daniel presses the pause button. ","id":"15055","runtime":95,"imdbId":"tt0989760","trailer":"http:\/\/www.youtube.com\/watch?v=1809","version":100,"lastModified":"1301904879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/224\/4bc945b1017a3c57fe01e224\/suspension-mid.jpg","studio":"EasyAction","genre":"Action","title":"Suspension","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60566"} +{"label":"Scott Cordes","version":19,"id":"77825","lastModified":"1301902244000","name":"Scott Cordes","type":"Person","_key":"60567"} +{"label":"Annie Tedesco","version":19,"id":"77826","lastModified":"1301902244000","name":"Annie Tedesco","type":"Person","_key":"60568"} +{"label":"Caroline Vinciguerra","version":19,"id":"77827","lastModified":"1301902244000","name":"Caroline Vinciguerra","type":"Person","_key":"60569"} +{"label":"Dan Nichols","version":19,"id":"83946","lastModified":"1301902633000","name":"Dan Nichols","type":"Person","_key":"60570"} +{"label":"David Fritts","version":19,"id":"83947","lastModified":"1301902633000","name":"David Fritts","type":"Person","_key":"60571"} +{"label":"Alec Joler","version":19,"id":"77828","lastModified":"1301902244000","name":"Alec Joler","type":"Person","_key":"60572"} +{"label":"Ethan Shaftel","version":19,"id":"77829","lastModified":"1301902244000","name":"Ethan Shaftel","type":"Person","_key":"60573"} +{"label":"The Curse of King Tut's Tomb","description":"Thousands of years ago, the great Child King Tutankhamen ruled. Few know the details of his life -- No one knows the secrets of his death. All that is about to change.Free -spirited archaeologist Danny Fremont (Casper Van Dien, Sleepy Hollow) is certain that if found, King Tut's Emerald Tablet would hold the power to control the world. Unfortunately, the only one who believes Fremont is his nemesis archaeologist Morgan Sinclair (Jonathan Hyde, Titanic), a member of a secret society who wants ","id":"15056","runtime":170,"imdbId":"tt0464799","version":115,"lastModified":"1301902762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cb\/4c015dcd017a3c702f0012cb\/the-curse-of-king-tut-s-tomb-mid.jpg","genre":"Action","title":"The Curse of King Tut's Tomb","releaseDate":1144713600000,"language":"en","type":"Movie","_key":"60574"} +{"label":"The Evil Woods","description":"Five high school teens take an impromptu weekend camping trip to a notorious desolate party spot.","id":"15057","runtime":83,"imdbId":"tt0968738","version":109,"lastModified":"1301632680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4bc945b2017a3c57fe01e231\/the-evil-woods-mid.jpg","studio":"Fixed Point Films","genre":"Horror","title":"The Evil Woods","releaseDate":1194739200000,"language":"en","type":"Movie","_key":"60575"} +{"label":"Speak","description":"Melinda is a high school outcast who has been stunned into silence by a traumatic event.","id":"15058","runtime":89,"imdbId":"tt0378793","trailer":"http:\/\/www.youtube.com\/watch?v=uSCzahFXMrs","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/speak","version":138,"lastModified":"1301903809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23e\/4bc945b3017a3c57fe01e23e\/speak-mid.jpg","studio":"Showtime Networks","genre":"Drama","title":"Speak","releaseDate":1074556800000,"language":"en","type":"Movie","_key":"60576"} +{"label":"Allison Siko","version":21,"id":"77830","lastModified":"1301901827000","name":"Allison Siko","type":"Person","_key":"60577"} +{"label":"Jessica Sharzer","version":21,"id":"77831","lastModified":"1301901524000","name":"Jessica Sharzer","type":"Person","_key":"60578"} +{"label":"The Loss of Sexual Innocence","description":"The story of the sexual development of a filmmaker through three stages of his life.","id":"15059","runtime":106,"imdbId":"tt0126859","version":98,"lastModified":"1302051262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/243\/4bc945b6017a3c57fe01e243\/the-loss-of-sexual-innocence-mid.jpg","studio":"Newmarket Capital Group","genre":"Drama","title":"The Loss of Sexual Innocence","releaseDate":925344000000,"language":"en","type":"Movie","_key":"60579"} +{"label":"John Cowey","version":20,"id":"77833","lastModified":"1301902244000","name":"John Cowey","type":"Person","_key":"60580"} +{"label":"Nina McKay","version":20,"id":"77834","lastModified":"1301902244000","name":"Nina McKay","type":"Person","_key":"60581"} +{"label":"Dickson Osa-Omorogbe","version":20,"id":"77835","lastModified":"1301902244000","name":"Dickson Osa-Omorogbe","type":"Person","_key":"60582"} +{"label":"Jock Gibson Cowl","version":20,"id":"77836","lastModified":"1301902244000","name":"Jock Gibson Cowl","type":"Person","_key":"60583"} +{"label":"Femi Ogunbanjo","version":20,"id":"77837","lastModified":"1301901865000","name":"Femi Ogunbanjo","type":"Person","_key":"60584"} +{"label":"Hanne Klintoe","version":20,"id":"77838","lastModified":"1301902244000","name":"Hanne Klintoe","type":"Person","_key":"60585"} +{"label":"Futurama: Into the Wild Green Yonder","description":"Futurama: Into the Wild Green Yonder is the last of a series of four straight-to-DVD Futurama movies. The movie was written by Ken Keeler, based on a story by Keeler and David X. Cohen, and directed by Peter Avanzino. Guest stars include Phil Hendrie, Penn Jillette (credited with Teller), Snoop Dogg and Seth MacFarlane, who sings the theme song. In the movie, Leela becomes an outlaw when she and a group of ecologically-minded feminists attempt to save an asteroid of primitive life forms and the ","id":"15060","runtime":90,"imdbId":"tt1054487","trailer":"http:\/\/www.youtube.com\/watch?v=1008","version":214,"lastModified":"1301901441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26d\/4bc945ba017a3c57fe01e26d\/futurama-into-the-wild-green-yonder-mid.jpg","studio":"20th Century Fox Television","genre":"Animation","title":"Futurama: Into the Wild Green Yonder","releaseDate":1235433600000,"language":"en","tagline":"All the other galaxies will be green with envy!","type":"Movie","_key":"60586"} +{"label":"Collective Soul: Home","description":"Multi-platinum recording artists release their first-ever live DVD. Recorded in April 2005, the shows were filmed in the band's hometown of Atlanta during two special sold-out performances featuring the Atlanta Symphony Youth Orchestra. The 20-song collection spans ninety minutes and encompasses hits from Collective Soul's seven studio albums, including their latest release, \"Youth\".","id":"15062","runtime":89,"homepage":"http:\/\/www.collectivesoul.com","version":113,"lastModified":"1301902794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28c\/4bc945c1017a3c57fe01e28c\/collective-soul-home-mid.jpg","genre":"Musical","title":"Collective Soul: Home","releaseDate":1139270400000,"language":"en","type":"Movie","_key":"60587"} +{"label":"Ed Roland","version":15,"id":"77839","lastModified":"1301901719000","name":"Ed Roland","type":"Person","_key":"60588"} +{"label":"Dean Roland","version":15,"id":"77840","lastModified":"1301901608000","name":"Dean Roland","type":"Person","_key":"60589"} +{"label":"Will Turpin","version":15,"id":"77841","lastModified":"1301901608000","name":"Will Turpin","type":"Person","_key":"60590"} +{"label":"Joel Kosche","version":15,"id":"77842","lastModified":"1301901865000","name":"Joel Kosche","type":"Person","_key":"60591"} +{"label":"Ryan Hoyle","version":15,"id":"77843","lastModified":"1301902068000","name":"Ryan Hoyle","type":"Person","_key":"60592"} +{"label":"Jere Flint","version":15,"id":"77844","lastModified":"1301902068000","name":"Jere Flint","type":"Person","_key":"60593"} +{"label":"Atlanta Symphony Youth Orchestra","version":15,"id":"77845","lastModified":"1301902244000","name":"Atlanta Symphony Youth Orchestra","type":"Person","_key":"60594"} +{"label":"Pierre Lamoureux","version":20,"id":"77846","lastModified":"1301901314000","name":"Pierre Lamoureux","type":"Person","_key":"60595"} +{"label":"Show: A Night In The Life of Matchbox Twenty","description":"Taped at the Philips Arena in Atlanta, Georgia on June 28, 2003, Matchbox Twenty's Show depicts a hard-working rock band in its prime and in its element. The full spectacle of Matchbox Twenty's More Than You Think You Are tour comes across, from the band's world-class lights to its lock-tight playing, recorded and mixed for 5.1-channel surround and shot in gloriously film-like HD video.","id":"15064","runtime":220,"imdbId":"tt0442840","version":74,"lastModified":"1301903651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/299\/4bc945c2017a3c57fe01e299\/show-a-night-in-the-life-of-matchbox-twenty-mid.jpg","genre":"Musical","title":"Show: A Night In The Life of Matchbox Twenty","releaseDate":1085443200000,"language":"en","type":"Movie","_key":"60596"} +{"label":"Rob Thomas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05e\/4ca396277b9aa16eda00005e\/rob-thomas-profile.jpg","version":22,"birthday":"66870000000","id":"77847","lastModified":"1301901380000","name":"Rob Thomas","type":"Person","_key":"60597"} +{"label":"Kyle Cook","version":19,"id":"77848","lastModified":"1301901474000","name":"Kyle Cook","type":"Person","_key":"60598"} +{"label":"Paul Doucette","version":20,"id":"77849","lastModified":"1301901490000","name":"Paul Doucette","type":"Person","_key":"60599"} +{"label":"Adam Gaynor","version":19,"id":"77850","lastModified":"1301901534000","name":"Adam Gaynor","type":"Person","_key":"60600"} +{"label":"Brian Yale","version":19,"id":"77851","lastModified":"1301902244000","name":"Brian Yale","type":"Person","_key":"60601"} +{"label":"Matt Beck","version":20,"id":"77852","lastModified":"1301902213000","name":"Matt Beck","type":"Person","_key":"60602"} +{"label":"Hamish Hamilton","version":30,"id":"77853","lastModified":"1301901348000","name":"Hamish Hamilton","type":"Person","_key":"60603"} +{"label":"Gillian Grisman","version":19,"id":"77854","lastModified":"1301901719000","name":"Gillian Grisman","type":"Person","_key":"60604"} +{"label":"Mit sechzehn bin ich weg","description":"No overview found.","id":"15065","runtime":30,"imdbId":"tt1177157","version":35,"lastModified":"1301907384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc945c2017a3c57fe01e2a2\/mit-sechzehn-bin-ich-weg-mid.jpg","title":"Mit sechzehn bin ich weg","releaseDate":1225843200000,"language":"en","type":"Movie","_key":"60605"} +{"label":"Claire Brodka","version":20,"id":"77857","lastModified":"1301901457000","name":"Claire Brodka","type":"Person","_key":"60606"} +{"label":"Anne-Rebekka D\u00fcsterh\u00f6ft","version":20,"id":"77858","lastModified":"1301901522000","name":"Anne-Rebekka D\u00fcsterh\u00f6ft","type":"Person","_key":"60607"} +{"label":"Walking Tall - The Payback","description":"No overview found.","id":"15066","runtime":88,"imdbId":"tt0804550","version":170,"lastModified":"1301905664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ab\/4bc945c3017a3c57fe01e2ab\/walking-tall-the-payback-mid.jpg","genre":"Action","title":"Walking Tall - The Payback","releaseDate":1139788800000,"language":"en","type":"Movie","_key":"60608"} +{"label":"Richard Dillard","version":25,"id":"77859","lastModified":"1301901948000","name":"Richard Dillard","type":"Person","_key":"60609"} +{"label":"The Good, The Bad, The Weird","description":"The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a Bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.","id":"15067","runtime":139,"imdbId":"tt0901487","trailer":"http:\/\/www.youtube.com\/watch?v=OzNnCK5cd8Q","version":216,"lastModified":"1301902518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4d2a63b47b9aa134dc00387e\/joheunnom-nabbeunnom-isanghannom-mid.jpg","studio":"CJ Entertainment","genre":"Action","title":"The Good, The Bad, The Weird","releaseDate":1216252800000,"language":"en","type":"Movie","_key":"60610"} +{"label":"Je-mun Yun","version":18,"id":"141541","lastModified":"1301902145000","name":"Je-mun Yun","type":"Person","_key":"60611"} +{"label":"Seung-su Ryu","version":18,"id":"141542","lastModified":"1301902145000","name":"Seung-su Ryu","type":"Person","_key":"60612"} +{"label":"Young-chang Song","version":36,"id":"88298","lastModified":"1301901806000","name":"Young-chang Song","type":"Person","_key":"60613"} +{"label":"Dal-su Oh","version":20,"id":"127987","lastModified":"1301902218000","name":"Dal-su Oh","type":"Person","_key":"60614"} +{"label":"Cheong-a Lee","version":22,"id":"126743","lastModified":"1301901854000","name":"Cheong-a Lee","type":"Person","_key":"60615"} +{"label":"Kwang-il Kim","version":18,"id":"141543","lastModified":"1301902359000","name":"Kwang-il Kim","type":"Person","_key":"60616"} +{"label":"Dong-seok Ma","version":18,"id":"141544","lastModified":"1302139633000","name":"Dong-seok Ma","type":"Person","_key":"60617"} +{"label":"Kyeong-hun Jo","version":17,"id":"141545","lastModified":"1301902214000","name":"Kyeong-hun Jo","type":"Person","_key":"60618"} +{"label":"Hang-soo Lee","version":17,"id":"141546","lastModified":"1301902219000","name":"Hang-soo Lee","type":"Person","_key":"60619"} +{"label":"Hyun Joong Kang","version":17,"id":"141547","lastModified":"1301902328000","name":"Hyun Joong Kang","type":"Person","_key":"60620"} +{"label":"Sung-min Lee","version":17,"id":"141548","lastModified":"1301902214000","name":"Sung-min Lee","type":"Person","_key":"60621"} +{"label":"80 Minutes","description":"80 minutes to live or die. Alex got injected with a high tech poison by his creditor and put on a time clock to pay his debt back in 1 hour and 20 minutes.\r\n\r\nWill he make it or even further will he stay loyal to his friends and relatives under a pressure like running out of time? \r\n","id":"15068","runtime":92,"imdbId":"tt1119178","version":139,"lastModified":"1301906470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d8\/4bc945c6017a3c57fe01e2d8\/80-minutes-mid.jpg","genre":"Action","title":"80 Minutes","releaseDate":1212710400000,"language":"en","type":"Movie","_key":"60622"} +{"label":"Oliver Kieran-Jones","version":20,"id":"77879","lastModified":"1301902007000","name":"Oliver Kieran-Jones","type":"Person","_key":"60623"} +{"label":"Joshua Dallas","version":29,"id":"77880","lastModified":"1301901641000","name":"Joshua Dallas","type":"Person","_key":"60624"} +{"label":"Francis Fulton-Smith","version":19,"id":"77881","lastModified":"1301901948000","name":"Francis Fulton-Smith","type":"Person","_key":"60625"} +{"label":"w Delta z","description":"A calculating killer coerces a detective to pay for his previous mistakes. Would you kill the one you love to save yourself from death?","id":"15069","runtime":104,"imdbId":"tt0804552","trailer":"http:\/\/www.youtube.com\/watch?v=1094","version":86,"lastModified":"1301903254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc945ca017a3c57fe01e2e5\/w-delta-z-mid.jpg","studio":"Vertigo Films","genre":"Crime","title":"w Delta z","releaseDate":1179532800000,"language":"en","type":"Movie","_key":"60626"} +{"label":"Tom Shankland","version":26,"id":"47724","lastModified":"1301902325000","name":"Tom Shankland","type":"Person","_key":"60627"} +{"label":"Undisputed","description":"Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. WHen these two giants collide in the same prison, they fight against each other disputing who is the real champion.","id":"15070","runtime":96,"imdbId":"tt0281322","trailer":"http:\/\/www.youtube.com\/watch?v=1569","version":187,"lastModified":"1301904082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f3\/4bc945cb017a3c57fe01e2f3\/undisputed-mid.jpg","studio":"Amen Ra Films","genre":"Action","title":"Undisputed","releaseDate":1022803200000,"language":"en","type":"Movie","_key":"60628"} +{"label":"The Contractor","description":"The film begins at the Montana ranch home of a former CIA Opperative - James Dial. One last time, he is coaxed back into action to kill a terrorist in London. It all goes wrong and he is forced into hiding where he meets and befriends a 12 year old girl.","id":"15071","runtime":105,"imdbId":"tt0770806","version":181,"lastModified":"1302077569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4bc945cc017a3c57fe01e306\/the-contractor-mid.jpg","studio":"April Productions","genre":"Action","title":"The Contractor","releaseDate":1184025600000,"language":"en","type":"Movie","_key":"60629"} +{"label":"Perfect moment - L'aventure continue","description":"No overview found.","id":"15072","runtime":0,"imdbId":"tt0386710","version":161,"lastModified":"1300980081000","title":"Perfect moment - L'aventure continue","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60630"} +{"label":"Cargo","description":"A young backpacker gets into some trouble in Africa and stows away on a cargo ship heading to Europe.","id":"15073","runtime":90,"imdbId":"tt0409793","trailer":"http:\/\/www.youtube.com\/watch?v=a-lfwbCJfL8","version":95,"lastModified":"1301903248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc945cd017a3c57fe01e31d\/cargo-mid.jpg","genre":"Indie","title":"Cargo","releaseDate":1138060800000,"language":"en","type":"Movie","_key":"60631"} +{"label":"Samuli Edelmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/724\/4c091933017a3c29a6000724\/samuli-edelmann-profile.jpg","version":25,"id":"92428","lastModified":"1301901843000","name":"Samuli Edelmann","type":"Person","_key":"60632"} +{"label":"Ricky Grover","version":18,"id":"109834","lastModified":"1301902558000","name":"Ricky Grover","type":"Person","_key":"60633"} +{"label":"Nikki Amuka-Bird","version":17,"id":"109319","lastModified":"1301902735000","name":"Nikki Amuka-Bird","type":"Person","_key":"60634"} +{"label":"Koen Balcaen","version":15,"id":"143928","lastModified":"1301902867000","name":"Koen Balcaen","type":"Person","_key":"60635"} +{"label":"Clive Gordon","version":15,"id":"143931","lastModified":"1301902476000","name":"Clive Gordon","type":"Person","_key":"60636"} +{"label":"Extreme Ops","description":"While filming an advertisement, some extreme sports enthusiasts unwittingly stop a group of terrorists.","id":"15074","runtime":93,"imdbId":"tt0283160","version":129,"lastModified":"1302077035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/326\/4bc945cd017a3c57fe01e326\/extreme-ops-mid.jpg","genre":"Action","title":"Extreme Ops","releaseDate":1038355200000,"language":"en","type":"Movie","_key":"60637"} +{"label":"One Last Thing...","description":"A young man with a terminal illness makes an unconventional request on local television.","id":"15075","runtime":96,"imdbId":"tt0452660","homepage":"http:\/\/www.onelastmovie.com\/","version":162,"lastModified":"1301903381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32f\/4bc945ce017a3c57fe01e32f\/one-last-thing-mid.jpg","studio":"2929 Productions","genre":"Crime","title":"One Last Thing...","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"60638"} +{"label":"Alex Steyermark","version":21,"id":"17862","lastModified":"1301901560000","name":"Alex Steyermark","type":"Person","_key":"60639"} +{"label":"Matt Bush","version":24,"id":"130227","lastModified":"1301901121000","name":"Matt Bush","type":"Person","_key":"60640"} +{"label":"Gideon Glick","version":21,"id":"130228","lastModified":"1301902760000","name":"Gideon Glick","type":"Person","_key":"60641"} +{"label":"Richie Rich","version":22,"id":"130229","lastModified":"1301903030000","name":"Richie Rich","type":"Person","_key":"60642"} +{"label":"Lucas Caleb Rooney","version":18,"id":"112264","lastModified":"1301902429000","name":"Lucas Caleb Rooney","type":"Person","_key":"60643"} +{"label":"George Seminara","version":18,"id":"107478","lastModified":"1301902319000","name":"George Seminara","type":"Person","_key":"60644"} +{"label":"Amanda Goodman","version":21,"id":"130230","lastModified":"1301902583000","name":"Amanda Goodman","type":"Person","_key":"60645"} +{"label":"Brian Stokes Mitchell","version":21,"id":"130231","lastModified":"1301902422000","name":"Brian Stokes Mitchell","type":"Person","_key":"60646"} +{"label":"Election II","description":"As election time nears, current Triad chairman Lok (Simon Yam) faces competition from his godsons. At the same time, Jimmy (Louis Koo) looks to increase his business relations with mainland China.","id":"15077","runtime":92,"imdbId":"tt0491244","version":176,"lastModified":"1301905731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/340\/4bc945cf017a3c57fe01e340\/hak-se-wui-yi-wo-wai-kwai-mid.jpg","studio":"China Star Entertainment","genre":"Crime","title":"Election II","releaseDate":1144108800000,"language":"en","tagline":"Even a criminal can serve his country","type":"Movie","_key":"60647"} +{"label":"Louis Koo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4bce1b50017a3c24cf00008f\/louis-koo-profile.jpg","version":61,"id":"78875","lastModified":"1301922444000","name":"Louis Koo","type":"Person","_key":"60648"} +{"label":"Tian-lin Wang","version":28,"id":"112988","lastModified":"1302052496000","name":"Tian-lin Wang","type":"Person","_key":"60649"} +{"label":"Only Yesterday","description":"A 27-year-old office worker travels to the countryside while reminiscing about her childhood, when she returns to the family farm she meets a young farmer who's the cousin of her brother-in-law. She is immediately taken with his hard-working, salt-of-the-earth ways.","id":"15080","runtime":118,"imdbId":"tt0102587","version":87,"lastModified":"1301907235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/357\/4bc945d4017a3c57fe01e357\/omohide-poro-poro-mid.jpg","studio":"Studio Ghibli","title":"Only Yesterday","releaseDate":677376000000,"language":"en","type":"Movie","_key":"60650"} +{"label":"The Three Lives of Thomasina","description":"Thomasina is the pet cat of Mary McDhui, the daughter of Scottish veterinarian Andrew McDhui. When Thomasina falls ill, McDhui declares that the pet should be put down. But when Mary and her father try to bury the cat, Lori MacGregor (Susan Hampshire), who is said to be a witch, shows up and attempts to steal it.","id":"15081","runtime":97,"imdbId":"tt0057579","version":108,"lastModified":"1301907286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35c\/4bc945d4017a3c57fe01e35c\/the-three-lives-of-thomasina-mid.jpg","studio":"Walt Disney Pictures","genre":"Drama","title":"The Three Lives of Thomasina","releaseDate":-175996800000,"language":"en","tagline":"I Am Thomasina \u2014 A Most Unusual Cat ... They Say I'm Enchanted, and I Am!","type":"Movie","_key":"60651"} +{"label":"Ushpizin","description":"An Orthodox Jewish couple's faith is tested after praying to the Lord for a child on the Succoth holiday.","id":"15083","runtime":90,"imdbId":"tt0426155","version":239,"lastModified":"1301906255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/116\/4d8ebf725e73d66362001116\/ha-ushpizin-mid.jpg","genre":"Comedy","title":"Ushpizin","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"60652"} +{"label":"Salaam Namaste","description":"Salaam Namaste is about two Indians who have left their houses to make a life on their own, and how they meet and how they tackle their own relationships and problems and overcome them themselves without their families","id":"15084","runtime":158,"imdbId":"tt0456165","version":150,"lastModified":"1301904575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/379\/4bc945d7017a3c57fe01e379\/salaam-namaste-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Salaam Namaste","releaseDate":1126224000000,"language":"en","type":"Movie","_key":"60653"} +{"label":"La Patinoire","description":"No overview found.","id":"15086","runtime":80,"imdbId":"tt0120785","version":44,"lastModified":"1301906154000","genre":"Comedy","title":"La Patinoire","releaseDate":909878400000,"language":"en","type":"Movie","_key":"60654"} +{"label":"Jean-Philippe Toussaint","version":19,"id":"77861","lastModified":"1301901779000","name":"Jean-Philippe Toussaint","type":"Person","_key":"60655"} +{"label":"Blue Planet","description":"From the unique vantage point of 200 miles above Earth's surface, we see how natural forces - volcanoes, earthquakes and hurricanes - affect our world, and how a powerful new force - humankind - has begun to alter the face of the planet. From Amazon rain forests to Serengeti grasslands, Blue Planet inspires a new appreciation of life on Earth, our only home.","id":"15087","runtime":40,"imdbId":"tt0099158","version":251,"lastModified":"1301903051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/387\/4bc945d8017a3c57fe01e387\/blue-planet-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Blue Planet","releaseDate":631152000000,"language":"en","type":"Movie","_key":"60656"} +{"label":"James Buchli","version":24,"id":"77862","lastModified":"1301901456000","name":"James Buchli","type":"Person","_key":"60657"} +{"label":"Toni Myers","version":32,"id":"77863","lastModified":"1301901379000","name":"Toni Myers","type":"Person","_key":"60658"} +{"label":"The Cutting Edge 3: Chasing the Dream","description":"No overview found.","id":"15088","runtime":90,"imdbId":"tt1110626","version":194,"lastModified":"1301904179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/38c\/4bc945d9017a3c57fe01e38c\/the-cutting-edge-3-chasing-the-dream-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Cutting Edge 3: Chasing the Dream","releaseDate":1205625600000,"language":"en","type":"Movie","_key":"60659"} +{"label":"Francia Raisa","version":23,"id":"77864","lastModified":"1301901577000","name":"Francia Raisa","type":"Person","_key":"60660"} +{"label":"Ben Hollingsworth","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e3\/4c51d2345e73d632bd0000e3\/ben-hollingsworth-profile.jpg","version":32,"id":"77865","lastModified":"1301901716000","name":"Ben Hollingsworth","type":"Person","_key":"60661"} +{"label":"Fighter Pilot: Operation Red Flag","description":"Fighter Pilot: Operation Red Flag follows American F-15 Eagle pilot John Stratton as he trains with some of the world\u2019s best pilots. The movie depicts Stratton\u2019s progression through the challenging and dangerous exercises of Operation Red Flag, the international training program for air forces of allied countries.","id":"15089","runtime":40,"imdbId":"tt0353168","trailer":"http:\/\/www.youtube.com\/watch?v=1010","homepage":"http:\/\/www.imax.com\/sacramento\/films\/fighterpilot.htm","version":106,"lastModified":"1301902494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a1\/4bc945db017a3c57fe01e3a1\/fighter-pilot-operation-red-flag-mid.jpg","studio":"K2 Communications","genre":"Documentary","title":"Fighter Pilot: Operation Red Flag","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"60662"} +{"label":"Icebreaker","description":"At the the Killington ski resort something has gone awry. Evil terrorists led by the sinister Greig have taken the resort hostage with a stolen nuclear device. It's up to Ski Patrol bum Matt Foster to save the day... and his fianc\u00e9.","id":"15090","runtime":90,"imdbId":"tt0179861","version":79,"lastModified":"1301905266000","studio":"Artist View Entertainment","genre":"Action","title":"Icebreaker","releaseDate":946684800000,"language":"en","type":"Movie","_key":"60663"} +{"label":"Suzanne Turner","version":20,"id":"77868","lastModified":"1301901678000","name":"Suzanne Turner","type":"Person","_key":"60664"} +{"label":"David Giancola","version":21,"id":"77869","lastModified":"1301901592000","name":"David Giancola","type":"Person","_key":"60665"} +{"label":"Korn Live at Montreux","description":"Korn came out of California in the early nineties and went on to become one of the most globally successful metal acts of their generation. They continue to play live to vast crowds and have record sales in the millions. This concert from Montreux in 2004 is their only performance at the festival to date.","id":"15091","runtime":75,"version":58,"lastModified":"1301904941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3aa\/4bc945dc017a3c57fe01e3aa\/korn-live-at-montreux-mid.jpg","title":"Korn Live at Montreux","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60666"} +{"label":"Crank: High Voltage","description":"Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.","id":"15092","runtime":96,"imdbId":"tt1121931","trailer":"http:\/\/www.youtube.com\/watch?v=mQSh9BtRZuA","homepage":"http:\/\/www.crankhighvoltage.com\/","version":458,"lastModified":"1302153559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/106\/4c56ab6c5e73d63a6f000106\/crank-high-voltage-mid.jpg","studio":"Lionsgate","genre":"Action","title":"Crank: High Voltage","releaseDate":1239926400000,"language":"en","type":"Movie","_key":"60667"} +{"label":"Glenn Howerton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/32d\/4ce1a2cc7b9aa168af00032d\/glenn-howerton-profile.jpg","version":36,"id":"77870","lastModified":"1301901469000","name":"Glenn Howerton","type":"Person","_key":"60668"} +{"label":"Over Alaska","description":"Come fly with us in OVER ALASKA as we take off on a breathtaking tour of our 49th state. Soar over Mt. McKinley and through the craggy crevasses of electric blue glaciers. Follow the Iditarod and kayakers as they navigate past icebergs. Then touch down to Earth and get as close to bears, whales and wildlife as humanly possible.","id":"15093","runtime":58,"version":140,"lastModified":"1302111200000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f2\/4bc945e5017a3c57fe01e3f2\/over-alaska-mid.jpg","studio":"KCTS Television","genre":"Documentary","title":"Over Alaska","releaseDate":1005350400000,"language":"en","type":"Movie","_key":"60669"} +{"label":"Nishi no majo ga shinda","description":"A 13-year-old girl named Mai refuses to go to school due to her asthma. Her parents send her to to stay with her British grandmother in the countryside. Thinking her grandmother is a witch, Mai asks for witch lessons. Her grandmother plays along, but instead ends up teaching Mai lessons which help her become more responsible and enjoy the simple aspects of life.","id":"15094","runtime":115,"imdbId":"tt1196210","trailer":"http:\/\/www.youtube.com\/watch?v=1013","homepage":"http:\/\/www.nishimajo.com\/","version":60,"lastModified":"1301908290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fb\/4bc945e5017a3c57fe01e3fb\/nishi-no-majo-ga-shinda-mid.jpg","studio":"Asahi Shimbunsha","genre":"Drama","title":"Nishi no majo ga shinda","releaseDate":1213920000000,"language":"en","type":"Movie","_key":"60670"} +{"label":"Mayu Takahashi","version":19,"id":"77871","lastModified":"1301902244000","name":"Mayu Takahashi","type":"Person","_key":"60671"} +{"label":"Y\u00fbichi Kimura","version":21,"id":"77872","lastModified":"1301902137000","name":"Y\u00fbichi Kimura","type":"Person","_key":"60672"} +{"label":"Sachi Parker","version":19,"id":"77874","lastModified":"1301902068000","name":"Sachi Parker","type":"Person","_key":"60673"} +{"label":"Katsumi Takahashi","version":22,"id":"77875","lastModified":"1301902126000","name":"Katsumi Takahashi","type":"Person","_key":"60674"} +{"label":"Shunichi Nagasaki","version":20,"id":"77873","lastModified":"1301901865000","name":"Shunichi Nagasaki","type":"Person","_key":"60675"} +{"label":"20 Million Miles to Earth","description":"When the first manned flight to Venus returns to Earth, the rocket crash-lands in the Mediterranean near a small Italian fishing village. The locals manage to save one of the astronauts Colonel Calder, the mission commander. A young boy also recovers what turns out to be a specimen of an alien creature. Growing at a fantastic rate, it manages to escape and eventually threatens the city of Rome.","id":"15096","runtime":82,"imdbId":"tt0050084","version":216,"lastModified":"1302072802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/409\/4bc945ea017a3c57fe01e409\/20-million-miles-to-earth-mid.jpg","studio":"Morningside Productions","genre":"Fantasy","title":"20 Million Miles to Earth","releaseDate":-406944000000,"language":"en","type":"Movie","_key":"60676"} +{"label":"Joan Taylor","version":17,"id":"106017","lastModified":"1301902889000","name":"Joan Taylor","type":"Person","_key":"60677"} +{"label":"Frank Puglia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/216\/4c51b5457b9aa13d4e000216\/frank-puglia-profile.jpg","version":37,"id":"89691","lastModified":"1301902744000","name":"Frank Puglia","type":"Person","_key":"60678"} +{"label":"John Zaremba","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/77b\/4cb851d87b9aa138d800077b\/john-zaremba-profile.jpg","version":26,"id":"82747","lastModified":"1301902055000","name":"John Zaremba","type":"Person","_key":"60679"} +{"label":"La Cit\u00e9 de la Peur","description":"No overview found.","id":"15097","runtime":93,"imdbId":"tt0109440","version":57,"lastModified":"1301904179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/412\/4bc945ea017a3c57fe01e412\/la-cite-de-la-peur-mid.jpg","genre":"Comedy","title":"La Cit\u00e9 de la Peur","releaseDate":763171200000,"language":"en","type":"Movie","_key":"60680"} +{"label":"Dominique Farrugia","version":39,"id":"27221","lastModified":"1301901287000","name":"Dominique Farrugia","type":"Person","_key":"60681"} +{"label":"Manic","description":"Lyle is filled with rage. After badly beating a classmate during a schoolyard fight, Lyle is committed to a juvenile mental institution in lieu of criminal prosecution. Inside the hospital, Lyle encounters a group of adolescents struggling with a variety of illnesses.","id":"15098","runtime":100,"imdbId":"tt0252684","homepage":"http:\/\/www.ifcfilms.com\/viewFilm.htm?filmId=245","version":128,"lastModified":"1301905540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41b\/4bc945ec017a3c57fe01e41b\/manic-mid.jpg","studio":"IFC Films","genre":"Drama","title":"Manic","releaseDate":980553600000,"language":"en","type":"Movie","_key":"60682"} +{"label":"Sara Rivas","version":20,"id":"77882","lastModified":"1301902371000","name":"Sara Rivas","type":"Person","_key":"60683"} +{"label":"Jordan Melamed","version":21,"id":"77883","lastModified":"1301902018000","name":"Jordan Melamed","type":"Person","_key":"60684"} +{"label":"Kaptein Sabeltann og hemmeligheten i Kjuttaviga","description":"Kaptein Sabeltann is back! And when the people of Kjuttaviga also find a parchment that says there is another treasure from the pirate Grusomme Gabriel in Kjuttaviga, things really become wild.","id":"15099","runtime":65,"imdbId":"tt0110241","version":34,"lastModified":"1301908206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/417\/4c52e7e27b9aa13d4a000417\/kaptein-sabeltann-og-hemmeligheten-i-kjuttaviga-mid.jpg","title":"Kaptein Sabeltann og hemmeligheten i Kjuttaviga","releaseDate":769392000000,"language":"en","type":"Movie","_key":"60685"} +{"label":"Terje Formoe","version":19,"id":"77889","lastModified":"1301901948000","name":"Terje Formoe","type":"Person","_key":"60686"} +{"label":"Janne Formoe","version":22,"id":"77890","lastModified":"1301902144000","name":"Janne Formoe","type":"Person","_key":"60687"} +{"label":"Audun Meling","version":19,"id":"77891","lastModified":"1301902326000","name":"Audun Meling","type":"Person","_key":"60688"} +{"label":"Endgame","description":"A story based on the covert discussions that brought down the Apartheid regime in South Africa.","id":"15102","runtime":109,"imdbId":"tt1217616","version":141,"lastModified":"1301940006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42d\/4bc945ee017a3c57fe01e42d\/endgame-mid.jpg","studio":"Film Afrika Worldwide","genre":"Crime","title":"Endgame","releaseDate":1232236800000,"language":"en","type":"Movie","_key":"60689"} +{"label":"Amelia Bullmore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/163\/4ceec92e5e73d654f9000163\/amelia-bullmore-profile.jpg","version":20,"id":"93713","lastModified":"1301901849000","name":"Amelia Bullmore","type":"Person","_key":"60690"} +{"label":"Kas Graham","version":16,"id":"93715","lastModified":"1301902068000","name":"Kas Graham","type":"Person","_key":"60691"} +{"label":"Dominik Danielewicz","version":17,"id":"93714","lastModified":"1301902464000","name":"Dominik Danielewicz","type":"Person","_key":"60692"} +{"label":"Tortilla Soup","description":"A Mexican-American master chef and father to three daughters has lost his taste for food but not for life.","id":"15104","runtime":103,"imdbId":"tt0255653","version":154,"lastModified":"1301904518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba7\/4d003a1f5e73d62999005ba7\/tortilla-soup-mid.jpg","genre":"Comedy","title":"Tortilla Soup","releaseDate":998352000000,"language":"en","type":"Movie","_key":"60693"} +{"label":"Tamara Mello","version":19,"id":"102313","lastModified":"1301902889000","name":"Tamara Mello","type":"Person","_key":"60694"} +{"label":"Judy Herrera","version":19,"id":"102314","lastModified":"1301902633000","name":"Judy Herrera","type":"Person","_key":"60695"} +{"label":"Constance Marie","version":23,"id":"92326","lastModified":"1301902889000","name":"Constance Marie","type":"Person","_key":"60696"} +{"label":"Troy Ruptash","version":25,"id":"102315","lastModified":"1301902243000","name":"Troy Ruptash","type":"Person","_key":"60697"} +{"label":"Marisabel Garc\u00eda","version":17,"id":"102316","lastModified":"1301902889000","name":"Marisabel Garc\u00eda","type":"Person","_key":"60698"} +{"label":"Louis Crugnali","version":19,"id":"102317","lastModified":"1301902633000","name":"Louis Crugnali","type":"Person","_key":"60699"} +{"label":"Ulises Cuadra","version":19,"id":"102318","lastModified":"1301902633000","name":"Ulises Cuadra","type":"Person","_key":"60700"} +{"label":"Mark de la Cruz","version":19,"id":"102319","lastModified":"1301902633000","name":"Mark de la Cruz","type":"Person","_key":"60701"} +{"label":"Eli Russell Linnetz","version":19,"id":"102320","lastModified":"1301902633000","name":"Eli Russell Linnetz","type":"Person","_key":"60702"} +{"label":"Karen Dyer","version":16,"id":"102321","lastModified":"1301902633000","name":"Karen Dyer","type":"Person","_key":"60703"} +{"label":"Mar\u00eda Ripoll","version":21,"id":"102329","lastModified":"1301902889000","name":"Mar\u00eda Ripoll","type":"Person","_key":"60704"} +{"label":"Still Waiting...","description":"After Shenaniganz loses all its hottest waitresses to new competitor Ta-Ta's Wing Shack -- where the scantily clad wait staff earns bigger tips -- the Shenaniganz staff aims to give Ta-Ta's its just desserts. This sequel to the 2005 indie-comedy hit welcomes back familiar faces, such as Nick (Andy Milonakis), Natasha (Vanessa Lengies) and Calvin (Rob Benedict), and features cameos by Justin Long, ","id":"15105","runtime":89,"imdbId":"tt1116186","trailer":"http:\/\/www.youtube.com\/watch?v=bwpmZYtKbjI","version":173,"lastModified":"1302070829000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/443\/4bc945f0017a3c57fe01e443\/still-waiting-mid.jpg","genre":"Comedy","title":"Still Waiting...","releaseDate":1230768000000,"language":"en","tagline":"The Saucy Sequel To \"Waiting ...\"","type":"Movie","_key":"60705"} +{"label":"Jeff Balis","version":16,"id":"150208","lastModified":"1301903095000","name":"Jeff Balis","type":"Person","_key":"60706"} +{"label":"Rob Kerkovich","version":16,"id":"150209","lastModified":"1301903093000","name":"Rob Kerkovich","type":"Person","_key":"60707"} +{"label":"Phillip Vaden","version":17,"id":"150210","lastModified":"1301903093000","name":"Phillip Vaden","type":"Person","_key":"60708"} +{"label":"Blue Man Group: How to Be a Megastar Live!","description":"How To Be A Megastar Tour 2.0. Blue Man Group s inventive new how-to-manual, which expands on the Rock Concert Manual concept from The Complex Rock Tour, will take you through the steps of a wildly clever and interactive show that offers unique all-ages appeal.","id":"15106","runtime":75,"imdbId":"tt1169808","version":68,"lastModified":"1301907830000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4bc945f1017a3c57fe01e44c\/blue-man-group-how-to-be-a-megastar-2-0-mid.jpg","title":"Blue Man Group: How to Be a Megastar Live!","releaseDate":1207008000000,"language":"en","type":"Movie","_key":"60709"} +{"label":"Babysitters","description":"Babysitters is a sexually charged, real-life story about the mesmerizing effect babysitters have on different people. Babysitters hosts an incredible roster of stars. Behind the manicured lawns and the double French doors, sexy babysitters are doing what they do best and it has NOTHING to do with babies!","id":"15108","runtime":130,"imdbId":"tt1116724","homepage":"http:\/\/www.digitalplayground.com","version":76,"lastModified":"1301903330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/455\/4bc945f1017a3c57fe01e455\/babysitters-mid.jpg","studio":"Digital Playground","genre":"Comedy","title":"Babysitters","releaseDate":1190937600000,"language":"en","tagline":"Knock, knock... \"Honey, the babysitter is here.\"","type":"Movie","_key":"60710"} +{"label":"Alektra Blue","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/60e\/4c5bd9055e73d63a7000060e\/alektra-blue-profile.jpg","version":55,"birthday":"423957600000","id":"127602","birthplace":"Scottsdale, Arizona, USA","lastModified":"1301901331000","name":"Alektra Blue","type":"Person","_key":"60711"} +{"label":"Angie Savage","version":21,"id":"140060","lastModified":"1301902470000","name":"Angie Savage","type":"Person","_key":"60712"} +{"label":"Gina Lynn","version":19,"id":"103849","lastModified":"1301902971000","name":"Gina Lynn","type":"Person","_key":"60713"} +{"label":"Lexxi Tyler","version":27,"id":"140061","lastModified":"1301943049000","name":"Lexxi Tyler","type":"Person","_key":"60714"} +{"label":"Nautica Thorn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/241\/4c46ef825e73d61efd000241\/nautica-thorn-profile.jpg","version":37,"id":"125574","lastModified":"1301902296000","name":"Nautica Thorn","type":"Person","_key":"60715"} +{"label":"Nikki Benz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00a\/4c33c29a5e73d64e2600000a\/nikki-benz-profile.jpg","version":38,"birthday":"376873200000","id":"123079","birthplace":"Ukraine","lastModified":"1302139465000","name":"Nikki Benz","type":"Person","_key":"60716"} +{"label":"Sammie Rhodes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4ca432315e73d636fc000134\/sammie-rhodes-profile.jpg","version":48,"birthday":"437266800000","id":"132337","birthplace":"New Haven, Connecticut, USA","lastModified":"1301901699000","name":"Sammie Rhodes","type":"Person","_key":"60717"} +{"label":"Sophia Santi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aad\/4d6a37565e73d66b27001aad\/sophia-santi-profile.jpg","version":54,"birthday":"361922400000","id":"43011","birthplace":"Winnipeg, Manitoba, Canada","lastModified":"1301943049000","name":"Sophia Santi","type":"Person","_key":"60718"} +{"label":"Jay Lassiter","version":18,"id":"140064","lastModified":"1301902678000","name":"Jay Lassiter","type":"Person","_key":"60719"} +{"label":"Jerry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/252\/4c4715395e73d61efb000252\/jerry-profile.jpg","version":69,"id":"125578","lastModified":"1301902221000","name":"Jerry","type":"Person","_key":"60720"} +{"label":"Sascha","version":43,"id":"132343","lastModified":"1301902738000","name":"Sascha","type":"Person","_key":"60721"} +{"label":"Tony DeSergio","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/258\/4c47175d5e73d61efb000258\/tony-de-sergio-profile.jpg","version":91,"id":"124044","lastModified":"1301901525000","name":"Tony DeSergio","type":"Person","_key":"60722"} +{"label":"Tyler Wood","version":19,"id":"140065","lastModified":"1301902716000","name":"Tyler Wood","type":"Person","_key":"60723"} +{"label":"Robby D.","version":121,"birthday":"-2189120400000","id":"88230","birthplace":"Long Beach, California, USA","lastModified":"1301943049000","name":"Robby D.","type":"Person","_key":"60724"} +{"label":"Turbo","description":"No overview found.","id":"15109","runtime":0,"version":206,"lastModified":"1301490946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45e\/4bc945f5017a3c57fe01e45e\/turbo-mid.jpg","genre":"Action","title":"Turbo","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60725"} +{"label":"Ready","description":"Absinthe remains committed to documenting these amazing riders with the most timeless and stylish medium: Film. Following up to last year\u2019s question \u2018Optimistic?\u2019, Absinthe answers with a crew of riders who overcome obstacles with spontaneity and skill in another full spectrum snowboard film that is down to have some more fun with snowboarding. Ready.","id":"15110","runtime":44,"homepage":"http:\/\/www.absinthe-films.com\/index.php?option=com_content&view=article&id=20%3Amovies&catid=2%3Amov","version":126,"lastModified":"1302069924000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/463\/4bc945f6017a3c57fe01e463\/ready-mid.jpg","studio":"Absinthe Films","genre":"Romance","title":"Ready","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"60726"} +{"label":"Kevin Pearce","version":17,"id":"93864","lastModified":"1301902996000","name":"Kevin Pearce","type":"Person","_key":"60727"} +{"label":"MFM","version":16,"id":"107134","lastModified":"1301903037000","name":"MFM","type":"Person","_key":"60728"} +{"label":"Romain deMarchi","version":17,"id":"93854","lastModified":"1301902683000","name":"Romain deMarchi","type":"Person","_key":"60729"} +{"label":"Scotty Lago","version":21,"id":"81943","lastModified":"1301902509000","name":"Scotty Lago","type":"Person","_key":"60730"} +{"label":"Annie Boulanger","version":17,"id":"93857","lastModified":"1301902683000","name":"Annie Boulanger","type":"Person","_key":"60731"} +{"label":"Keegan Valaika","version":18,"id":"107135","lastModified":"1301903037000","name":"Keegan Valaika","type":"Person","_key":"60732"} +{"label":"Matty Ryan","version":16,"id":"107136","lastModified":"1301902996000","name":"Matty Ryan","type":"Person","_key":"60733"} +{"label":"Cale Zima","version":17,"id":"93861","lastModified":"1301902683000","name":"Cale Zima","type":"Person","_key":"60734"} +{"label":"Marco Feichter","version":16,"id":"107137","lastModified":"1301902996000","name":"Marco Feichter","type":"Person","_key":"60735"} +{"label":"Jules Reymond","version":17,"id":"93859","lastModified":"1301902683000","name":"Jules Reymond","type":"Person","_key":"60736"} +{"label":"Blair Habenicht","version":16,"id":"107138","lastModified":"1301903037000","name":"Blair Habenicht","type":"Person","_key":"60737"} +{"label":"Justin Hostynek","version":21,"id":"93867","lastModified":"1301903070000","name":"Justin Hostynek","type":"Person","_key":"60738"} +{"label":"Patrick Armbruster","version":17,"id":"93868","lastModified":"1301903075000","name":"Patrick Armbruster","type":"Person","_key":"60739"} +{"label":"All Day Every Day","description":"No overview found.","id":"15111","runtime":0,"version":124,"lastModified":"1301905539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/468\/4bc945f7017a3c57fe01e468\/all-day-every-day-mid.jpg","title":"All Day Every Day","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60740"} +{"label":"It's Always Snowing Somewhere","description":"No overview found.","id":"15112","runtime":0,"version":102,"lastModified":"1300980091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46d\/4bc945f9017a3c57fe01e46d\/it-s-always-snowing-somewhere-mid.jpg","genre":"Action","title":"It's Always Snowing Somewhere","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60741"} +{"label":"Apples And Oranges","description":"No overview found.","id":"15113","runtime":0,"version":49,"lastModified":"1301465043000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/472\/4bc945fa017a3c57fe01e472\/apples-and-oranges-mid.jpg","title":"Apples And Oranges","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60742"} +{"label":"Double Decade","description":"DOUBLE DECADE marks MACK DAWG PRODUCTIONS' 20th anniversary of filmmaking. It is with great pride that we present this epic snowboarding film. DOUBLE DECADE is a look into the past, and a look into the future of freestyle snowboarding. This movie is so ill it can only be rated S for Sick.","id":"15114","runtime":0,"version":38,"lastModified":"1301464719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/477\/4bc945fb017a3c57fe01e477\/double-decade-mid.jpg","studio":"Mack Dawg Productions","title":"Double Decade","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60743"} +{"label":"Down With People","description":"No overview found.","id":"15115","runtime":0,"version":65,"lastModified":"1301908001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47c\/4bc945fc017a3c57fe01e47c\/down-with-people-mid.jpg","title":"Down With People","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60744"} +{"label":"For Right Or Wrong","description":"For For Right Or Wrong is a documentary feature made in conjunction with Burton Snowboards, which profiles several of the companies sponsored riders in their various snow board disciplines; Pipe, Street, Free Ride and Big Air. A large part of the action takes place around the snowboard wunderkind Shaun White, as he prepares to compete in the 2006 winter Olympic Games in Torino, Italy. The other various narrative strands follow the different paths of the individual boarders as we see them in acti","id":"15116","runtime":0,"imdbId":"tt0841021","version":60,"lastModified":"1301464088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/481\/4bc945fe017a3c57fe01e481\/for-right-or-wrong-mid.jpg","studio":"Burton Snowboards","genre":"Documentary","title":"For Right Or Wrong","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"60745"} +{"label":"Jake Burton","version":21,"id":"127961","lastModified":"1301903007000","name":"Jake Burton","type":"Person","_key":"60746"} +{"label":"George Burton Carpenter","version":20,"id":"127962","lastModified":"1301902798000","name":"George Burton Carpenter","type":"Person","_key":"60747"} +{"label":"Shaun White","version":22,"id":"127963","lastModified":"1301902675000","name":"Shaun White","type":"Person","_key":"60748"} +{"label":"Terje Haakonsen","version":21,"id":"81935","lastModified":"1301902063000","name":"Terje Haakonsen","type":"Person","_key":"60749"} +{"label":"REALTIME","description":"No overview found.","id":"15117","runtime":0,"version":247,"lastModified":"1301463711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/486\/4bc945fe017a3c57fe01e486\/realtime-mid.jpg","genre":"Action","title":"REALTIME","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60750"} +{"label":"The Journal","description":"No overview found.","id":"15118","runtime":0,"version":271,"lastModified":"1302067965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48b\/4bc945ff017a3c57fe01e48b\/the-journal-mid.jpg","title":"The Journal","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60751"} +{"label":"Shogun Assassin","description":"A Shogun who grew paranoid as he became senile sent his ninjas to kill his samurai. They failed but did kill the samurai\u2019s wife. The samurai swore to avenge the death of his wife and roams the countryside with his toddler son in search of vengeance.","id":"15119","runtime":86,"imdbId":"tt0081506","version":150,"lastModified":"1301936861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1af\/4c501c927b9aa136cd0001af\/shogun-assassin-mid.jpg","studio":"Toho Company","genre":"Action","title":"Shogun Assassin","releaseDate":342748800000,"language":"en","type":"Movie","_key":"60752"} +{"label":"Tomisaburo Wakayama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a9\/4c4ff86f7b9aa136d00000a9\/tomisaburo-wakayama-profile.jpg","version":42,"id":"73428","lastModified":"1301901845000","name":"Tomisaburo Wakayama","type":"Person","_key":"60753"} +{"label":"Akihiro Tomikawa","version":21,"id":"77892","lastModified":"1301902144000","name":"Akihiro Tomikawa","type":"Person","_key":"60754"} +{"label":"Smokey and the Bandit Part 3","description":"The Enos duo convince Cletus, aka The Bandit, to come out of hiding and help them promote their new restaurant. With a little coaxing, he agrees, producing an almost-creaky Trigger as his mode of transport. But his nemesis, Sheriff Buford T. Justice, is on the hunt, forcing Cletus and Trigger to hit the road. Can they steer clear of the vengeful sheriff?","id":"15120","runtime":85,"imdbId":"tt0086325","trailer":"http:\/\/www.youtube.com\/watch?v=Tu4Ht2opvqY","version":97,"lastModified":"1302067120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/806\/4d6a81fe7b9aa13636002806\/smokey-and-the-bandit-part-3-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Smokey and the Bandit Part 3","releaseDate":429494400000,"language":"en","tagline":"Smokey's Back! And The Bandit is at it again!","type":"Movie","_key":"60755"} +{"label":"The Sound Of Music","description":"Rodgers and Hammerstein's The Sound of Music is a 1965 American musical film directed by Robert Wise and starring Julie Andrews and Christopher Plummer. The film is based on the Broadway musical The Sound of Music, with songs written by Richard Rodgers and Oscar Hammerstein II. It was photographed in 70mm Todd-AO by Ted D. McCord. It won a total of five Academy Awards including Best Picture in 1965 and is one of the most popular musicals ever produced. The cast album was nominated for a Grammy A","id":"15121","runtime":174,"imdbId":"tt0059742","trailer":"http:\/\/www.youtube.com\/watch?v=KuWsQSntFf0","version":141,"lastModified":"1301901843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/292\/4d053d057b9aa11bc4002292\/the-sound-of-music-mid.jpg","studio":"20th Century Fox","genre":"Drama","title":"The Sound Of Music","releaseDate":-152582400000,"language":"en","tagline":"The happiest sound in all the world!","type":"Movie","_key":"60756"} +{"label":"Peggy Wood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2aa\/4bf7057b017a3c772c0002aa\/peggy-wood-profile.jpg","version":26,"id":"77895","lastModified":"1301902326000","name":"Peggy Wood","type":"Person","_key":"60757"} +{"label":"Love Stinks","description":"A movie about a relationship...that's worse than yours. Seth (Stewart), a sitcom writer-producer, meets Chelsea (Wilson), an interior decorator, at his best friend's (Bellamy) wedding. He's immediately sexually attracted to her while she's instantly attracted to his single-ness. They both ditch their wedding dates and start their own date that same night. The two become a couple, appearing very happy until after a couple of years of postponing a marriage proposal. When Chelsea realizes that Seth","id":"15122","runtime":94,"imdbId":"tt0188863","version":262,"lastModified":"1301903745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4af\/4bc94602017a3c57fe01e4af\/love-stinks-mid.jpg","genre":"Comedy","title":"Love Stinks","releaseDate":936921600000,"language":"en","type":"Movie","_key":"60758"} +{"label":"Jeff Franklin","version":22,"id":"60621","lastModified":"1301901948000","name":"Jeff Franklin","type":"Person","_key":"60759"} +{"label":"Jenifer - Masters of Horror","description":"No overview found.","id":"15123","runtime":58,"imdbId":"tt0643108","version":54,"lastModified":"1301904976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b8\/4bc94602017a3c57fe01e4b8\/jenifer-masters-of-horror-mid.jpg","studio":"Reunion Pictures","genre":"Horror","title":"Jenifer - Masters of Horror","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"60760"} +{"label":"Brenda James","version":21,"id":"77898","lastModified":"1301902367000","name":"Brenda James","type":"Person","_key":"60761"} +{"label":"Harris Allan","version":21,"id":"77899","lastModified":"1301902326000","name":"Harris Allan","type":"Person","_key":"60762"} +{"label":"A Little Trip To Heaven","description":"No overview found.","id":"15124","runtime":105,"imdbId":"tt0420740","version":170,"lastModified":"1301902067000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c1\/4bc94603017a3c57fe01e4c1\/a-little-trip-to-heaven-mid.jpg","genre":"Drama","title":"A Little Trip To Heaven","releaseDate":1173744000000,"language":"en","type":"Movie","_key":"60763"} +{"label":"Dante 01","description":"Dante 01, prison spatiale, d\u00e9rive dans l'atmosph\u00e8re suffocante de Dante, plan\u00e8te hostile, son seul horizon. \u00c0 l'int\u00e9rieur, six des plus dangereux criminels des mondes environnants servent de cobayes \u00e0 d'obscures exp\u00e9riences. Une r\u00e9sistance s'organise autour de C\u00e9sar, psychopathe manipulateur...","id":"15125","runtime":82,"imdbId":"tt0487928","homepage":"http:\/\/www.dante01.com\/","version":126,"lastModified":"1301902325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ce\/4bc94605017a3c57fe01e4ce\/dante-01-mid.jpg","studio":"Wild Bunch","genre":"Science Fiction","title":"Dante 01","releaseDate":1199232000000,"language":"en","type":"Movie","_key":"60764"} +{"label":"Simona Maicanescu","version":19,"id":"77902","lastModified":"1301901718000","name":"Simona Maicanescu","type":"Person","_key":"60765"} +{"label":"Fran\u00e7ois Hadji-Lazaro","version":20,"id":"77904","lastModified":"1301901940000","name":"Fran\u00e7ois Hadji-Lazaro","type":"Person","_key":"60766"} +{"label":"Lotfi Yahya Jedidi","version":19,"id":"77905","lastModified":"1301901608000","name":"Lotfi Yahya Jedidi","type":"Person","_key":"60767"} +{"label":"Antonin Maurel","version":19,"id":"77907","lastModified":"1301902244000","name":"Antonin Maurel","type":"Person","_key":"60768"} +{"label":"Eldorado","description":"Yvan finds a burglar in his house. After some consideration, Yvan decides not to call the police and to drop the lad near the nearby city but he ends up giving him a lift home to his parents. Together, they travel through Belgium and meet some extraordinary people and find themselves in ditto situations.","id":"15126","runtime":85,"imdbId":"tt1176954","version":120,"lastModified":"1301905017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4db\/4bc9460a017a3c57fe01e4db\/eldorado-mid.jpg","studio":"Lazennec Productions","genre":"Comedy","title":"Eldorado","releaseDate":1212537600000,"language":"en","type":"Movie","_key":"60769"} +{"label":"Fabrice Adde","version":20,"id":"77908","lastModified":"1301902244000","name":"Fabrice Adde","type":"Person","_key":"60770"} +{"label":"Didier Toupy","version":20,"id":"77909","lastModified":"1301902244000","name":"Didier Toupy","type":"Person","_key":"60771"} +{"label":"Fran\u00e7oise Chich\u00e9ry","version":20,"id":"77910","lastModified":"1301902244000","name":"Fran\u00e7oise Chich\u00e9ry","type":"Person","_key":"60772"} +{"label":"Speechless","description":"A romantic comedy. Michael Keaton and Geena Davis are speechwriters for competing political campaigns. Witty and amusing for the political junkies amongst us.","id":"15128","runtime":135,"imdbId":"tt0111256","version":97,"lastModified":"1302018606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e0\/4bc9460a017a3c57fe01e4e0\/speechless-mid.jpg","genre":"Comedy","title":"Speechless","releaseDate":757382400000,"language":"en","type":"Movie","_key":"60773"} +{"label":"Feast 3: The Happy Finish","description":"The survivors are saved by the mysterious prophet Shot Bus Gus, who seemingly has the ability to control the beasts. He leads them into the sewers as they travel to the big city. Along the way they get help from karate expert Jean-Claude Seagal and learn that the beasts originate from a place called The Hive. Armed with this knowledge, they decide to fight back and destroy the beasts.","id":"15135","runtime":79,"imdbId":"tt1104836","version":337,"lastModified":"1302065601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ed\/4bc9460b017a3c57fe01e4ed\/feast-3-the-happy-finish-mid.jpg","title":"Feast 3: The Happy Finish","releaseDate":1215129600000,"language":"en","type":"Movie","_key":"60774"} +{"label":"So Close","description":"A conflict of interest between two high-kicking assassin sisters is complicated as they're pursued by the criminals who hired them and an equally high-kicking female cop.","id":"15136","runtime":110,"imdbId":"tt0300620","trailer":"http:\/\/www.youtube.com\/watch?v=ai66j2DMhzQ","homepage":"http:\/\/www.so-close.com\/","version":208,"lastModified":"1301903911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f6\/4bc9460b017a3c57fe01e4f6\/so-close-mid.jpg","studio":"Columbia Pictures Film Production Asia","genre":"Action","title":"So Close","releaseDate":1031788800000,"language":"en","tagline":"Looks can be deceiving.","type":"Movie","_key":"60775"} +{"label":"Evangelion: 1.0 You Are (Not) Alone","description":"After the Second Impact, Tokyo-3 is being attacked by giant creatures called Angels that seek to eradicate humankind. The child Shinji's objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX's famous 1996 anime series.","id":"15137","runtime":97,"imdbId":"tt0923811","homepage":"http:\/\/www.funimation.com\/evangelion\/","version":182,"lastModified":"1301901890000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4bc94611017a3c57fe01e52e\/neon-genesis-evangelion-1-01-you-are-not-alone-mid.jpg","studio":"Gainax","genre":"Animation","title":"Evangelion: 1.0 You Are (Not) Alone","releaseDate":1203638400000,"language":"en","type":"Movie","_key":"60776"} +{"label":"Kazuya Tsurumaki","version":42,"id":"77923","lastModified":"1301902019000","name":"Kazuya Tsurumaki","type":"Person","_key":"60777"} +{"label":"Masayuki","version":39,"id":"77926","lastModified":"1301902010000","name":"Masayuki","type":"Person","_key":"60778"} +{"label":"Megumi Ogata","version":44,"id":"77927","lastModified":"1301901579000","name":"Megumi Ogata","type":"Person","_key":"60779"} +{"label":"Kotono Mitsuishi","version":44,"id":"77931","lastModified":"1301901809000","name":"Kotono Mitsuishi","type":"Person","_key":"60780"} +{"label":"Yuriko Yamaguchi","version":32,"id":"77933","lastModified":"1301901804000","name":"Yuriko Yamaguchi","type":"Person","_key":"60781"} +{"label":"Little Monsters","description":"A young boy is scared of the monster under his bed. He asks his 6th grade brother to swap rooms for the night as a bet that the monster really exists. Soon the brother becomes friends with the monster and discovers a whole new world of fun and games under his bed where pulling pranks on kids and other monsters is the main attraction","id":"15138","runtime":102,"imdbId":"tt0097758","trailer":"http:\/\/www.youtube.com\/watch?v=1015","version":275,"lastModified":"1301903452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/541\/4bc94614017a3c57fe01e541\/little-monsters-mid.jpg","genre":"Adventure","title":"Little Monsters","releaseDate":620006400000,"language":"en","type":"Movie","_key":"60782"} +{"label":"Howie Mandel","version":26,"id":"77920","lastModified":"1301901856000","name":"Howie Mandel","type":"Person","_key":"60783"} +{"label":"The Pagemaster","description":"Tyler knows a lot about accidents. So much so, he is scared to do anything that might endanger him, like riding his bike, or climbing into his treehouse. While in an old library, he is mystically transported into the unknown world of books, and he has to try and get home again. Along the way he meets some interesting characters, like Fantasy, Adventure, and Horror... Written by Colin Tinto ","id":"15139","runtime":80,"imdbId":"tt0110763","trailer":"http:\/\/www.youtube.com\/watch?v=V63IXsl1FXM","version":108,"lastModified":"1301903763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/877\/4d2d1a9d5e73d63a4e00b877\/the-pagemaster-mid.jpg","genre":"Family","title":"The Pagemaster","releaseDate":785548800000,"language":"en","type":"Movie","_key":"60784"} +{"label":"Pixote Hunt","version":24,"id":"74299","lastModified":"1301902144000","name":"Pixote Hunt","type":"Person","_key":"60785"} +{"label":"Fool Moon","description":"Une bande d'anciens copains de Sciences-Po, devenus de jeunes loups de la politique se retrouvent pour un week-end dans une maison isol\u00e9e en Bretagne avec pour seul mot d'ordre: se d\u00e9tendre et surtout ne jamais parler politique. Mais la pleine lune, des voisins adeptes de myst\u00e9rieux rites et le vieil Armagnac trouv\u00e9 dans la cave vont les faire d\u00e9savouer leur promesse, et tout va partir en live...","id":"15140","runtime":90,"imdbId":"tt1064951","version":49,"lastModified":"1301417318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bc94615017a3c57fe01e55c\/fool-moon-mid.jpg","studio":"AFCD Production","genre":"Comedy","title":"Fool Moon","releaseDate":1216166400000,"language":"en","type":"Movie","_key":"60786"} +{"label":"J\u00e9r\u00f4me L'hotsky","version":21,"id":"77924","lastModified":"1301901855000","name":"J\u00e9r\u00f4me L'hotsky","type":"Person","_key":"60787"} +{"label":"Bruno Salomone","version":26,"id":"77928","lastModified":"1301901700000","name":"Bruno Salomone","type":"Person","_key":"60788"} +{"label":"Fran\u00e7ois Morel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/471\/4d1951d55e73d6083400a471\/fran-ois-morel-profile.jpg","version":27,"id":"77929","lastModified":"1301901300000","name":"Fran\u00e7ois Morel","type":"Person","_key":"60789"} +{"label":"Elise Larnicol","version":21,"id":"77930","lastModified":"1301902068000","name":"Elise Larnicol","type":"Person","_key":"60790"} +{"label":"Christophe Al\u00e9v\u00eaque","version":19,"id":"77932","lastModified":"1301902244000","name":"Christophe Al\u00e9v\u00eaque","type":"Person","_key":"60791"} +{"label":"Dream a Little Dream","description":"Bobby Kellar has a crush on Lainie Diamond, girlfriend of school jerk Joel. Coleman is working on an experiment which will help him move into a place where Dreams are reality. When an accident occurs Coleman finds himself in Bobby's body and can only contact Bobby in his dreams.","id":"15142","runtime":114,"imdbId":"tt0097236","version":261,"lastModified":"1301905395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/565\/4bc94616017a3c57fe01e565\/dream-a-little-dream-mid.jpg","genre":"Comedy","title":"Dream a Little Dream","releaseDate":604886400000,"language":"en","type":"Movie","_key":"60792"} +{"label":"Some Kind of Wonderful","description":"A young tomboy, Watts, finds her feelings for her best friend, Keith, run deeper than just friendship when he gets a date with the most popular girl in school. Unfortunately, the girl's old boyfriend, who is from the rich section of town, is unable to let go of her, and plans to get back at Keith. ","id":"15143","runtime":95,"imdbId":"tt0094006","version":289,"lastModified":"1302063474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/578\/4bc9461b017a3c57fe01e578\/some-kind-of-wonderful-mid.jpg","genre":"Drama","title":"Some Kind of Wonderful","releaseDate":541382400000,"language":"en","type":"Movie","_key":"60793"} +{"label":"Chynna Phillips","version":23,"id":"77940","lastModified":"1301901346000","name":"Chynna Phillips","type":"Person","_key":"60794"} +{"label":"Sixteen Candles","description":"Samantha's life is going downhill fast. The fifteen-year-old has a crush on the most popular boy in school, and the geekiest boy in school has a crush on her. Her sister's getting married, and with all the excitement the rest of her family forgets her birthday! ","id":"15144","runtime":93,"imdbId":"tt0088128","trailer":"http:\/\/www.youtube.com\/watch?v=qw3pDu3WNJk","version":186,"lastModified":"1301902974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/596\/4bc9461f017a3c57fe01e596\/sixteen-candles-mid.jpg","genre":"Comedy","title":"Sixteen Candles","releaseDate":452476800000,"language":"en","tagline":"When you're just sixteen anything can happen!","type":"Movie","_key":"60795"} +{"label":"Michael Schoeffling","version":22,"id":"140777","lastModified":"1301902644000","name":"Michael Schoeffling","type":"Person","_key":"60796"} +{"label":"Billie Bird","version":18,"id":"140778","lastModified":"1301902416000","name":"Billie Bird","type":"Person","_key":"60797"} +{"label":"Edward Andrews","version":18,"id":"140779","lastModified":"1301902644000","name":"Edward Andrews","type":"Person","_key":"60798"} +{"label":"Max Showalter","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59d\/4be178ab017a3c35b500059d\/max-showalter-profile.jpg","version":27,"id":"85409","lastModified":"1301901683000","name":"Max Showalter","type":"Person","_key":"60799"} +{"label":"Eagles: Hell Freezes Over","description":"The Eagles perform in concert in celebration of the group's reunion, which was supposed to happen \"when hell freezes over.\"","id":"15145","runtime":99,"imdbId":"tt0123815","version":130,"lastModified":"1301903265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a9\/4bc94621017a3c57fe01e5a9\/eagles-hell-freezes-over-mid.jpg","genre":"Musical","title":"Eagles: Hell Freezes Over","releaseDate":757382400000,"language":"en","type":"Movie","_key":"60800"} +{"label":"Glenn Frey","version":22,"id":"77941","lastModified":"1301904134000","name":"Glenn Frey","type":"Person","_key":"60801"} +{"label":"Don Henley","version":22,"id":"77942","lastModified":"1301904134000","name":"Don Henley","type":"Person","_key":"60802"} +{"label":"Joe Walsh","version":22,"id":"77943","lastModified":"1301904134000","name":"Joe Walsh","type":"Person","_key":"60803"} +{"label":"Timothy B. Schmit","version":20,"id":"77944","lastModified":"1301904134000","name":"Timothy B. Schmit","type":"Person","_key":"60804"} +{"label":"Don Felder","version":20,"id":"77945","lastModified":"1301902193000","name":"Don Felder","type":"Person","_key":"60805"} +{"label":"Warren Miller's Cold Fusion","description":"Warren Miller's 52nd year of ski movies.","id":"15146","runtime":95,"imdbId":"tt0283291","version":92,"lastModified":"1301904275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ae\/4bc94621017a3c57fe01e5ae\/warren-miller-s-cold-fusion-mid.jpg","title":"Warren Miller's Cold Fusion","releaseDate":978307200000,"language":"en","type":"Movie","_key":"60806"} +{"label":"Warren Miller's Storm","description":"Warren Miller's 53rd annual ski movie","id":"15147","runtime":93,"imdbId":"tt0350165","version":98,"lastModified":"1301593749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b3\/4bc94621017a3c57fe01e5b3\/warren-miller-s-storm-mid.jpg","title":"Warren Miller's Storm","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"60807"} +{"label":"Man in the Chair","description":"The story of an aspiring young filmmaker's encounter with a grumpy fount of movie lore. ","id":"15148","runtime":107,"imdbId":"tt0489225","trailer":"http:\/\/www.youtube.com\/watch?v=Gwk3c9HmH0k","version":89,"lastModified":"1301905768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bc\/4bc94622017a3c57fe01e5bc\/man-in-the-chair-mid.jpg","studio":"Elbow Grease Pictures","genre":"Comedy","title":"Man in the Chair","releaseDate":1169856000000,"language":"en","type":"Movie","_key":"60808"} +{"label":"Michael Schroeder","version":22,"id":"77947","lastModified":"1301902221000","name":"Michael Schroeder","type":"Person","_key":"60809"} +{"label":"Bl\u00e5 M\u00e6nd","description":"Jesper Jensen is a successful IT salesman who stops at nothing, even if it means backstabbing his best friend. Being number one in the company and having a beautiful wife and a lovely home, Jesper seems to lead a perfect life, but one day his arrogance and self confidence hits him in the face like a boomerang and he loses everything overnight.","id":"15149","runtime":80,"imdbId":"tt1110209","homepage":"http:\/\/www.blaamaend.dk\/","version":41,"lastModified":"1301906605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c5\/4bc94623017a3c57fe01e5c5\/bla-mnd-mid.jpg","studio":"fridthjof film","genre":"Comedy","title":"Bl\u00e5 M\u00e6nd","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"60810"} +{"label":"Rasmus Heide","version":20,"id":"89955","lastModified":"1301901865000","name":"Rasmus Heide","type":"Person","_key":"60811"} +{"label":"Mick \u00d8gendahl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/84e\/4c0a1e28017a3c7e8700084e\/mick-gendahl-profile.jpg","version":29,"id":"83257","lastModified":"1301901562000","name":"Mick \u00d8gendahl","type":"Person","_key":"60812"} +{"label":"OSS 117: Cairo, Nest of Spies","description":"Secret agent OSS 117 foils Nazis, beds local beauties, and brings peace to the Middle East.","id":"15152","runtime":99,"imdbId":"tt0464913","homepage":"http:\/\/www.oss117.fr\/accueil.htm","version":150,"lastModified":"1301903809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d2\/4bc94629017a3c57fe01e5d2\/oss-117-le-caire-nid-d-espions-mid.jpg","studio":"Gaumont","genre":"Action","title":"OSS 117: Cairo, Nest of Spies","releaseDate":1149552000000,"language":"en","type":"Movie","_key":"60813"} +{"label":"B\u00e9r\u00e9nice Bejo","version":24,"id":"82923","lastModified":"1301902115000","name":"B\u00e9r\u00e9nice Bejo","type":"Person","_key":"60814"} +{"label":"Constantin Alexandrov","version":22,"id":"82924","lastModified":"1301902472000","name":"Constantin Alexandrov","type":"Person","_key":"60815"} +{"label":"Laurent Bateau","version":22,"id":"78479","lastModified":"1301901753000","name":"Laurent Bateau","type":"Person","_key":"60816"} +{"label":"Khalid Maadour","version":21,"id":"82925","lastModified":"1301902472000","name":"Khalid Maadour","type":"Person","_key":"60817"} +{"label":"Ars\u00e8ne Mosca","version":25,"id":"82926","lastModified":"1301901448000","name":"Ars\u00e8ne Mosca","type":"Person","_key":"60818"} +{"label":"Abdellah Moundy","version":19,"id":"82927","lastModified":"1301902472000","name":"Abdellah Moundy","type":"Person","_key":"60819"} +{"label":"Michel Hazanavicius","version":34,"id":"67717","lastModified":"1301901951000","name":"Michel Hazanavicius","type":"Person","_key":"60820"} +{"label":"G","description":"A young Hip Hop star named Summer G falls for a middle to upper class sister while in college. After she rejects him for a fellow social climber, Summer G spends ten years building a Hip Hop empire, then moves to the Hamptons where he finds the object of his affections. ","id":"15155","runtime":96,"imdbId":"tt0291928","version":151,"lastModified":"1301687955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e3\/4bc9462b017a3c57fe01e5e3\/g-mid.jpg","studio":"Andrew Lauren Productions (ALP)","genre":"Drama","title":"G","releaseDate":1020988800000,"language":"en","type":"Movie","_key":"60821"} +{"label":"Chenoa Maxwell","version":18,"id":"93129","lastModified":"1301902889000","name":"Chenoa Maxwell","type":"Person","_key":"60822"} +{"label":"Lalanya Masters","version":18,"id":"93130","lastModified":"1301902889000","name":"Lalanya Masters","type":"Person","_key":"60823"} +{"label":"Nicoye Banks","version":32,"id":"93131","lastModified":"1301901370000","name":"Nicoye Banks","type":"Person","_key":"60824"} +{"label":"Jillian Lindsey","version":18,"id":"93132","lastModified":"1301902889000","name":"Jillian Lindsey","type":"Person","_key":"60825"} +{"label":"Andrew Lauren","version":25,"id":"66264","lastModified":"1301902304000","name":"Andrew Lauren","type":"Person","_key":"60826"} +{"label":"Christopher Scott Cherot","version":22,"id":"93133","lastModified":"1301902889000","name":"Christopher Scott Cherot","type":"Person","_key":"60827"} +{"label":"Illegal Tender","description":"After the gangsters who killed his father come to settle a score, a teenage boy and his mother turn the tables on the killers - one Latino family's quest for honor and revenge as the hunted become the hunters.","id":"15156","runtime":108,"imdbId":"tt0775488","version":160,"lastModified":"1301903789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f8\/4bc9462d017a3c57fe01e5f8\/illegal-tender-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Illegal Tender","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"60828"} +{"label":"Gary Perez","version":16,"id":"96320","lastModified":"1301902244000","name":"Gary Perez","type":"Person","_key":"60829"} +{"label":"Tego Calderon","version":17,"id":"96321","lastModified":"1301902068000","name":"Tego Calderon","type":"Person","_key":"60830"} +{"label":"Another Cinderella Story","description":"A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.","id":"15157","runtime":90,"imdbId":"tt1071358","homepage":"http:\/\/anothercinderellastory.warnerbros.com\/","version":205,"lastModified":"1302059563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/612\/4bc9462f017a3c57fe01e612\/another-cinderella-story-mid.jpg","genre":"Comedy","title":"Another Cinderella Story","releaseDate":1220486400000,"language":"en","type":"Movie","_key":"60831"} +{"label":"Selena Gomez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/248\/4c794dd55e73d613d3000248\/selena-gomez-profile.jpg","version":46,"birthday":"711756000000","id":"77948","birthplace":"Grand Prairie, Texas, USA ","lastModified":"1301957662000","name":"Selena Gomez","type":"Person","_key":"60832"} +{"label":"Andrew Seeley","version":28,"id":"92619","lastModified":"1301902328000","name":"Andrew Seeley","type":"Person","_key":"60833"} +{"label":"Phantasm II","description":"Mike, after his release from a psychiatric hospital, teams up with his old pal Reggie to hunt down the Tall Man, who is at it again. A mysterious, beautiful girl has also become part of Mike's dreams, and they must find her before the Tall Man does.","id":"15158","runtime":97,"imdbId":"tt0095863","version":192,"lastModified":"1302058970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/623\/4bc94634017a3c57fe01e623\/phantasm-ii-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Phantasm II","releaseDate":584323200000,"language":"en","type":"Movie","_key":"60834"} +{"label":"Paula Irvine","version":19,"id":"87127","lastModified":"1301902947000","name":"Paula Irvine","type":"Person","_key":"60835"} +{"label":"Kenneth Tigar","version":19,"id":"87128","lastModified":"1301902658000","name":"Kenneth Tigar","type":"Person","_key":"60836"} +{"label":"Mark Anthony Major","version":19,"id":"87129","lastModified":"1301902658000","name":"Mark Anthony Major","type":"Person","_key":"60837"} +{"label":"The Pink Panther 2","description":"When legendary treasures from around the world are stolen, including the priceless Pink Panther Diamond, Chief Inspector Dreyfus is forced to assign Inspector Clouseau to a team of international detectives and experts charged with catching the thief and retrieving the stolen artifacts.","id":"15159","runtime":92,"imdbId":"tt0838232","trailer":"http:\/\/www.youtube.com\/watch?v=1266","homepage":"http:\/\/www.sonypictures.com\/movies\/thepinkpanther2\/","version":392,"lastModified":"1302058325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/649\/4bc94638017a3c57fe01e649\/the-pink-panther-2-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"The Pink Panther 2","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"60838"} +{"label":"Alice: Through the Looking Glass","description":"Once upon a time, Alice traveled to Wonderland. Now, she takes another journey and meets up with Tweedledum and Tweedledee, Humpty Dumpty, the Red King and Queen, Red and White Knights and Jabberwocky. Join the intrepid Alice on an enchanting magical adventure that will delight the whole family. Kate Beckinsale, Ian Holm and Penelope Wilton star in this live-action adaptation of Lewis Carroll's classic, directed by John Henderson.","id":"15162","runtime":0,"imdbId":"tt0167758","version":277,"lastModified":"1301906605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/653\/4bc94639017a3c57fe01e653\/alice-through-the-looking-glass-mid.jpg","genre":"Family","title":"Alice: Through the Looking Glass","releaseDate":883612800000,"language":"en","type":"Movie","_key":"60839"} +{"label":"Penelope Wilton","version":17,"id":"116407","lastModified":"1301901780000","name":"Penelope Wilton","type":"Person","_key":"60840"} +{"label":"Amazing Grace","description":"From the makers of \"Ray\" and acclaimed director Michael Apted, comes the inspiring story of how one man's passion and perseverance changed the world. Based on the true story of William Wilberforce, \"Amazing Grace\" follows his courageous quest to end the British slave trade. Along the way, Wilberforce meets intense opposition, but his minister, John Newton, urges him to see the cause through.","id":"15163","runtime":117,"imdbId":"tt0454776","version":198,"lastModified":"1301903030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0c\/4d742d775e73d676c2000c0c\/amazing-grace-mid.jpg","genre":"Drama","title":"Amazing Grace","releaseDate":1158364800000,"language":"en","type":"Movie","_key":"60841"} +{"label":"Baby Songs - ABC, 123, Colors & Shapes","description":"No overview found.","id":"15164","runtime":0,"version":45,"lastModified":"1301905697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66a\/4bc9463d017a3c57fe01e66a\/baby-songs-abc-123-colors-shapes-mid.jpg","genre":"Family","title":"Baby Songs - ABC, 123, Colors & Shapes","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60842"} +{"label":"Barbie as the Princess & the Pauper","description":"In her first animated musical featuring seven original songs, Barbie comes to life in this modern re-telling of a classic tale of mistaken identity and the power of friendship. Based on the story by Mark Twain,","id":"15165","runtime":85,"imdbId":"tt0426955","version":134,"lastModified":"1302056581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/678\/4bc9463e017a3c57fe01e678\/barbie-as-the-princess-the-pauper-mid.jpg","studio":"Rainmaker Entertainment","genre":"Animation","title":"Barbie as the Princess & the Pauper","releaseDate":1096329600000,"language":"en","type":"Movie","_key":"60843"} +{"label":"William Lau","version":26,"id":"80948","lastModified":"1301902138000","name":"William Lau","type":"Person","_key":"60844"} +{"label":"The Gene Generation","description":"In a futuristic world, Michelle lives everyday battling with DNA Hackers who use their skills to hack into people's bodies and kill them. She is an assassin, trying to keep her younger brother, Jackie, out of trouble. When Jackie gets involved in a petty crime of robbery, he propels himself into the world of DNA Hackers, Shylocks (Loan Sharks) and Gangs","id":"15166","runtime":95,"imdbId":"tt0438052","version":124,"lastModified":"1301903679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/681\/4bc9463e017a3c57fe01e681\/the-gene-generation-mid.jpg","genre":"Science Fiction","title":"The Gene Generation","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"60845"} +{"label":"Barbie in the Nutcracker","description":"\"Barbie\" stars as Clara in this animated retelling of the classic Christmas ballet, complete with Tchaikovsky soundtrack and ballet choreography.","id":"15167","runtime":78,"imdbId":"tt0288441","homepage":"http:\/\/barbie.everythinggirl.com\/Nutcracker\/","version":149,"lastModified":"1301902521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/692\/4bc94640017a3c57fe01e692\/barbie-in-the-nutcracker-mid.jpg","studio":"Rainmaker Entertainment","genre":"Animation","title":"Barbie in the Nutcracker","releaseDate":1001980800000,"language":"en","type":"Movie","_key":"60846"} +{"label":"Kirby Morrow","version":30,"id":"89025","lastModified":"1301902725000","name":"Kirby Morrow","type":"Person","_key":"60847"} +{"label":"Little David Presents Bible Songs","description":"No overview found.","id":"15168","runtime":0,"version":69,"lastModified":"1301907384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/697\/4bc94640017a3c57fe01e697\/little-david-presents-bible-songs-mid.jpg","title":"Little David Presents Bible Songs","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60848"} +{"label":"Bibleman: Powersource","description":"No overview found.","id":"15169","runtime":0,"version":13,"lastModified":"1301419107000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69c\/4bc94640017a3c57fe01e69c\/bibleman-powersource-mid.jpg","title":"Bibleman: Powersource","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60849"} +{"label":"Buddy","description":"An eccentric socialite raises a gorilla as her son.","id":"15170","runtime":84,"imdbId":"tt0118787","version":123,"lastModified":"1301905538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a1\/4bc94640017a3c57fe01e6a1\/buddy-mid.jpg","studio":"Jim Henson Company, The","genre":"Adventure","title":"Buddy","releaseDate":865555200000,"language":"en","tagline":"Welcome to a family that will make yours seem tame","type":"Movie","_key":"60850"} +{"label":"John Aylward","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c52\/4cf3f5065e73d62385000c52\/john-aylward-profile.jpg","version":33,"id":"103833","lastModified":"1301901498000","name":"John Aylward","type":"Person","_key":"60851"} +{"label":"Charlotte's Web","description":"Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.","id":"15171","runtime":94,"imdbId":"tt0070016","version":113,"lastModified":"1301902962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ae\/4bc94641017a3c57fe01e6ae\/charlotte-s-web-animated-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Animation","title":"Charlotte's Web","releaseDate":99792000000,"language":"en","type":"Movie","_key":"60852"} +{"label":"Rex Allen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01d\/4cb370ba7b9aa1345600001d\/rex-allen-profile.jpg","version":22,"id":"106830","lastModified":"1301901849000","name":"Rex Allen","type":"Person","_key":"60853"} +{"label":"Dave Madden","version":18,"id":"106833","lastModified":"1301902464000","name":"Dave Madden","type":"Person","_key":"60854"} +{"label":"Charles A. Nichols","version":32,"id":"106834","lastModified":"1301901422000","name":"Charles A. Nichols","type":"Person","_key":"60855"} +{"label":"Iwao Takamoto","version":17,"id":"106835","lastModified":"1301902464000","name":"Iwao Takamoto","type":"Person","_key":"60856"} +{"label":"Jonah: A VeggieTales Movie","description":"Get ready as Bob the Tomato, Larry the Cucumber and the rest of the Veggies set sail on a whale of an adventure in Big Idea's first full-length, 3-D animated feature film. This is the story of Jonah and the Whale as you've never seen it before - a story where we learn that one of the best gifts you can give - or get - is a second chance.","id":"15173","runtime":82,"imdbId":"tt0298388","version":184,"lastModified":"1301903029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bc\/4bc94641017a3c57fe01e6bc\/jonah-a-veggietales-movie-mid.jpg","studio":"Big Idea Productions","genre":"Action","title":"Jonah: A VeggieTales Movie","releaseDate":1033689600000,"language":"en","type":"Movie","_key":"60857"} +{"label":"Phil Vischer","version":23,"id":"78297","lastModified":"1301901562000","name":"Phil Vischer","type":"Person","_key":"60858"} +{"label":"Mike Nawrocki","version":24,"id":"78298","lastModified":"1301902144000","name":"Mike Nawrocki","type":"Person","_key":"60859"} +{"label":"Tim Hodge","version":21,"id":"80678","lastModified":"1301902143000","name":"Tim Hodge","type":"Person","_key":"60860"} +{"label":"Lisa Vischer","version":16,"id":"110801","lastModified":"1301902464000","name":"Lisa Vischer","type":"Person","_key":"60861"} +{"label":"Kristin Blegen","version":16,"id":"110802","lastModified":"1301902633000","name":"Kristin Blegen","type":"Person","_key":"60862"} +{"label":"Shelby Vischer","version":16,"id":"110803","lastModified":"1301902633000","name":"Shelby Vischer","type":"Person","_key":"60863"} +{"label":"Jim Poole","version":16,"id":"110804","lastModified":"1301902633000","name":"Jim Poole","type":"Person","_key":"60864"} +{"label":"Ron Smith","version":18,"id":"98982","lastModified":"1301902699000","name":"Ron Smith","type":"Person","_key":"60865"} +{"label":"Sarah Catherine Brooks","version":16,"id":"110805","lastModified":"1301902633000","name":"Sarah Catherine Brooks","type":"Person","_key":"60866"} +{"label":"Paige Craig","version":16,"id":"110806","lastModified":"1301902633000","name":"Paige Craig","type":"Person","_key":"60867"} +{"label":"Adam Frick","version":16,"id":"110807","lastModified":"1301902633000","name":"Adam Frick","type":"Person","_key":"60868"} +{"label":"Chris Geiger","version":16,"id":"110808","lastModified":"1301902633000","name":"Chris Geiger","type":"Person","_key":"60869"} +{"label":"Michael Harrison","version":17,"id":"110809","lastModified":"1301902633000","name":"Michael Harrison","type":"Person","_key":"60870"} +{"label":"Amy Howard","version":16,"id":"110810","lastModified":"1301902244000","name":"Amy Howard","type":"Person","_key":"60871"} +{"label":"Larry Boy: The Cartoon Adventures - The Yodelnapper!","description":"No overview found.","id":"15174","runtime":0,"imdbId":"tt0385828","version":70,"lastModified":"1300980105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c1\/4bc94642017a3c57fe01e6c1\/larryboy-the-cartoon-adventures-the-yodelnapper-mid.jpg","title":"Larry Boy: The Cartoon Adventures - The Yodelnapper!","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60872"} +{"label":"Buddy","description":"Kristoffer is a billboard hanger, 24 years old and carefree. When his girlfriend Elisabeth duimps him for the boss of her trend bureau, his life falls into pieces. He feels like a loser. By coincidence some of Kristoffer's video diaries end up with the producer of the popular talk show \"Karsten Tonight\" in TV2. A few weeks later Kristoffer's life has become TV entertaiment. People love the sequences from his commune at T\u00f8yen: Kristoffer's half-twisted view of his surroundings, his crazy best fre","id":"15177","runtime":104,"imdbId":"tt0371589","version":129,"lastModified":"1301906469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d3\/4bc94643017a3c57fe01e6d3\/buddy-mid.jpg","studio":"Happy Endings A\/S","genre":"Comedy","title":"Buddy","releaseDate":1062115200000,"language":"en","type":"Movie","_key":"60873"} +{"label":"Morten Tyldum","version":22,"id":"77965","lastModified":"1301902244000","name":"Morten Tyldum","type":"Person","_key":"60874"} +{"label":"Erik Settemsdal","version":21,"id":"77975","lastModified":"1301901608000","name":"Erik Settemsdal","type":"Person","_key":"60875"} +{"label":"Anders Baasmo Christiansen","version":26,"id":"77976","lastModified":"1301901454000","name":"Anders Baasmo Christiansen","type":"Person","_key":"60876"} +{"label":"Pia Tjelta","version":26,"id":"77977","lastModified":"1301902170000","name":"Pia Tjelta","type":"Person","_key":"60877"} +{"label":"Henrik Gi\u00e6ver","version":21,"id":"77978","lastModified":"1301901865000","name":"Henrik Gi\u00e6ver","type":"Person","_key":"60878"} +{"label":"Kim Haugen","version":22,"id":"77979","lastModified":"1301901865000","name":"Kim Haugen","type":"Person","_key":"60879"} +{"label":"H\u00e5vard Bakke","version":29,"id":"77980","lastModified":"1302005960000","name":"H\u00e5vard Bakke","type":"Person","_key":"60880"} +{"label":"Eivind Sander","version":23,"id":"77981","lastModified":"1301901865000","name":"Eivind Sander","type":"Person","_key":"60881"} +{"label":"Christian Skolmen","version":22,"id":"77982","lastModified":"1301902243000","name":"Christian Skolmen","type":"Person","_key":"60882"} +{"label":"Edward Schultheiss","version":21,"id":"77983","lastModified":"1301901865000","name":"Edward Schultheiss","type":"Person","_key":"60883"} +{"label":"Dagrun Anholt","version":21,"id":"77984","lastModified":"1301901608000","name":"Dagrun Anholt","type":"Person","_key":"60884"} +{"label":"Cathrin Gram","version":22,"id":"77985","lastModified":"1301901990000","name":"Cathrin Gram","type":"Person","_key":"60885"} +{"label":"Connie Barr","version":21,"id":"77986","lastModified":"1301902244000","name":"Connie Barr","type":"Person","_key":"60886"} +{"label":"Karita Bekkemellem Orheim","version":21,"id":"77987","lastModified":"1301902244000","name":"Karita Bekkemellem Orheim","type":"Person","_key":"60887"} +{"label":"Lars Joakim Ringom","version":21,"id":"77988","lastModified":"1301901719000","name":"Lars Joakim Ringom","type":"Person","_key":"60888"} +{"label":"Synn\u00f8ve Svab\u00f8","version":21,"id":"77989","lastModified":"1301901865000","name":"Synn\u00f8ve Svab\u00f8","type":"Person","_key":"60889"} +{"label":"Elin Tvedt","version":22,"id":"77990","lastModified":"1301902361000","name":"Elin Tvedt","type":"Person","_key":"60890"} +{"label":"Andre Iversen","version":21,"id":"77991","lastModified":"1301901865000","name":"Andre Iversen","type":"Person","_key":"60891"} +{"label":"Patrik Age 1.5","description":"Goran and Sven have been cleared for adoption and they have a possibility to adopt a Swedish orphan, Patrik 1,5. But when Patrik arrives he turns out to be someone else, not the little boy they were expecting. A comma had been misplaced, and in comes a 15-year-old homophobic with a criminal past.","id":"15179","runtime":103,"imdbId":"tt1067733","homepage":"http:\/\/www.patrikettkommafem.se\/","version":114,"lastModified":"1301904994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dc\/4bc94646017a3c57fe01e6dc\/patrik-1-5-mid.jpg","studio":"Filmlance International AB","genre":"Comedy","title":"Patrik Age 1.5","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"60892"} +{"label":"Thomas Ljungman","version":21,"id":"79269","lastModified":"1301901673000","name":"Thomas Ljungman","type":"Person","_key":"60893"} +{"label":"Annika Hallin","version":36,"id":"79270","lastModified":"1301901464000","name":"Annika Hallin","type":"Person","_key":"60894"} +{"label":"Amanda Davin","version":23,"id":"79271","lastModified":"1301902368000","name":"Amanda Davin","type":"Person","_key":"60895"} +{"label":"Ella Lemhagen","version":25,"id":"79272","lastModified":"1301901822000","name":"Ella Lemhagen","type":"Person","_key":"60896"} +{"label":"The Boston Strangler","description":"Boston, Mass. 1962. The dawn of the serial killer was at hand. Thirteen innocent women were brutally slaughtered by a faceless monster. Now, through the eyes of the killer himself, we are taken on a sadistic journey from the jail cell to the grave, reliving each terrifying event one murder at a time.","id":"15181","runtime":86,"imdbId":"tt0490817","trailer":"http:\/\/www.youtube.com\/watch?v=1649","version":85,"lastModified":"1301908290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e5\/4bc94647017a3c57fe01e6e5\/the-boston-strangler-mid.jpg","genre":"Crime","title":"The Boston Strangler","releaseDate":1142294400000,"language":"en","type":"Movie","_key":"60897"} +{"label":"Just Buried","description":"A young man inherits a nearly bankrupt funeral home from his estranged father. He falls in love with the alluring young mortician, only to find out she's offing people to keep the place in business!","id":"15182","runtime":94,"imdbId":"tt0906326","version":160,"lastModified":"1301906470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ee\/4bc94648017a3c57fe01e6ee\/just-buried-mid.jpg","studio":"RGM Entertainment","genre":"Comedy","title":"Just Buried","releaseDate":1189296000000,"language":"en","type":"Movie","_key":"60898"} +{"label":"Chaz Thorne","version":20,"id":"84460","lastModified":"1301902504000","name":"Chaz Thorne","type":"Person","_key":"60899"} +{"label":"A Good Woman","description":"Fleeing 1930s New York and leaving behind a chequered past, the giltzy divorcee Mrs Stella Erlynne travels to Italy's sun-dappled Amalfi coast. Mrs Erlynne's appearance causes a stir amongst the visiting aristocracy. Based on the Oscar Wilde play Lady Windemere's Fan","id":"15184","runtime":94,"imdbId":"tt0379306","version":131,"lastModified":"1301903653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ff\/4bc9464a017a3c57fe01e6ff\/a-good-woman-mid.jpg","genre":"Drama","title":"A Good Woman","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"60900"} +{"label":"Pierrepoint: The Last Hangman","description":"Following in his father's footsteps, Albert Pierrepoint becomes one of Britain's most prolific executioners, hiding his identity as a grocery deliveryman. But when his ambition to be the best inadvertently exposes his gruesome secret, he becomes a minor celebrity & faces a public outcry against the practice of hanging. Based on true events.","id":"15185","runtime":98,"imdbId":"tt0462477","trailer":"http:\/\/www.youtube.com\/watch?v=cPHSw2X22Eg","version":109,"lastModified":"1301905769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/708\/4bc9464b017a3c57fe01e708\/pierrepoint-the-last-hangman-mid.jpg","genre":"Drama","title":"Pierrepoint: The Last Hangman","releaseDate":1144368000000,"language":"en","type":"Movie","_key":"60901"} +{"label":"Full Frontal","description":"A contemporary comedy set in Los Angeles, Full Frontal traces the complicated relationship among seven friends as they deal with the fragile connections that bind them together. Full Frontal takes place during a twenty-four hour period - a day in the life of missed connections.","id":"15186","runtime":96,"imdbId":"tt0290212","trailer":"http:\/\/www.youtube.com\/watch?v=fiHGKVFoXio","version":141,"lastModified":"1301907571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/716\/4bc9464c017a3c57fe01e716\/full-frontal-mid.jpg","genre":"Comedy","title":"Full Frontal","releaseDate":1009843200000,"language":"en","tagline":"Everybody Needs A Release","type":"Movie","_key":"60902"} +{"label":"Monstertorsdag","description":"No overview found.","id":"15188","runtime":0,"imdbId":"tt0399365","version":48,"lastModified":"1301836090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71f\/4bc9464d017a3c57fe01e71f\/monstertorsdag-mid.jpg","studio":"Canal Plus","title":"Monstertorsdag","releaseDate":1097712000000,"language":"en","type":"Movie","_key":"60903"} +{"label":"Hotel for Dogs","description":"Two kids secretly take in nine stray dogs at a vacant house.","id":"15189","runtime":100,"imdbId":"tt0785006","trailer":"http:\/\/www.youtube.com\/watch?v=ObY7W7BVypA","version":243,"lastModified":"1301903082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72c\/4bc9464e017a3c57fe01e72c\/hotel-for-dogs-mid.jpg","studio":"DreamWorks SKG","genre":"Comedy","title":"Hotel for Dogs","releaseDate":1231977600000,"language":"en","type":"Movie","_key":"60904"} +{"label":"Thor Freudenthal","version":26,"id":"109857","lastModified":"1301902243000","name":"Thor Freudenthal","type":"Person","_key":"60905"} +{"label":"The Grey Zone","description":"A Nazi doctor, along with the Sonderkomando, Jews who are forced to work in the crematoria of Auschwitz against their fellow Jews, find themselves in a moral grey zone.","id":"15192","runtime":108,"imdbId":"tt0252480","version":118,"lastModified":"1301905397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4bc94653017a3c57fe01e742\/the-grey-zone-mid.jpg","studio":"The Goatsingers","genre":"Drama","title":"The Grey Zone","releaseDate":1000339200000,"language":"en","type":"Movie","_key":"60906"} +{"label":"Clue","description":"Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.","id":"15196","runtime":94,"imdbId":"tt0088930","trailer":"http:\/\/www.youtube.com\/watch?v=NHEpuz_gUGM","version":152,"lastModified":"1301906840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76a\/4bc94656017a3c57fe01e76a\/clue-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Clue","releaseDate":503280000000,"language":"en","tagline":"Seven Suspects, Six Weapons, Five Bodies and Three Endings.","type":"Movie","_key":"60907"} +{"label":"Lee Ving","version":24,"id":"80745","lastModified":"1301902307000","name":"Lee Ving","type":"Person","_key":"60908"} +{"label":"Jane Wiedlin","version":27,"id":"35157","lastModified":"1302133788000","name":"Jane Wiedlin","type":"Person","_key":"60909"} +{"label":"Mystery, Alaska","description":"This comedy is about the residents of a small town who get over-excited when their hockey team gets chosen to host a televised event","id":"15198","runtime":119,"imdbId":"tt0134618","version":101,"lastModified":"1301904769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77c\/4bc94658017a3c57fe01e77c\/mystery-alaska-mid.jpg","studio":"Hollywood Pictures","genre":"Comedy","title":"Mystery, Alaska","releaseDate":938736000000,"language":"en","type":"Movie","_key":"60910"} +{"label":"Ryan Northcott","version":22,"id":"100370","lastModified":"1301902724000","name":"Ryan Northcott","type":"Person","_key":"60911"} +{"label":"Michael Buie","version":28,"id":"85812","lastModified":"1301901424000","name":"Michael Buie","type":"Person","_key":"60912"} +{"label":"Rent: Filmed Live on Broadway","description":"Based on Puccini's opera La boh\u00e8me, Rent tells the story of a group of impoverished young artists struggling to survive and create in New York City in the 1990s. This is a live recording of Rent's final performance after more than 12 years and 5000 shows.","id":"15199","runtime":165,"imdbId":"tt1273675","version":222,"lastModified":"1301903838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/785\/4bc94659017a3c57fe01e785\/rent-filmed-live-on-broadway-mid.jpg","genre":"Musical","title":"Rent: Filmed Live on Broadway","releaseDate":1222214400000,"language":"en","type":"Movie","_key":"60913"} +{"label":"Michael John Warren","version":19,"id":"87926","lastModified":"1301902987000","name":"Michael John Warren","type":"Person","_key":"60914"} +{"label":"Will Chase","version":19,"id":"87927","lastModified":"1301902677000","name":"Will Chase","type":"Person","_key":"60915"} +{"label":"Adam Kantor","version":19,"id":"87928","lastModified":"1301902504000","name":"Adam Kantor","type":"Person","_key":"60916"} +{"label":"Rodney Hicks","version":19,"id":"87929","lastModified":"1301902504000","name":"Rodney Hicks","type":"Person","_key":"60917"} +{"label":"Justin Johnston","version":19,"id":"87930","lastModified":"1301902987000","name":"Justin Johnston","type":"Person","_key":"60918"} +{"label":"Tracy McDowell","version":19,"id":"87931","lastModified":"1301902504000","name":"Tracy McDowell","type":"Person","_key":"60919"} +{"label":"Renee Goldsberry","version":19,"id":"87932","lastModified":"1301901948000","name":"Renee Goldsberry","type":"Person","_key":"60920"} +{"label":"Demandez la permission aux enfants","description":"No overview found.","id":"15200","runtime":96,"imdbId":"tt0864751","version":64,"lastModified":"1301881850000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78e\/4bc94659017a3c57fe01e78e\/demandez-la-permission-aux-enfants-mid.jpg","studio":"TFM Distribution","title":"Demandez la permission aux enfants","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"60921"} +{"label":"Skin","description":"No overview found.","id":"15201","runtime":85,"imdbId":"tt1095427","version":172,"lastModified":"1301907479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/797\/4bc9465d017a3c57fe01e797\/skin-mid.jpg","genre":"Drama","title":"Skin","releaseDate":1205366400000,"language":"en","type":"Movie","_key":"60922"} +{"label":"500 Person Sex!","description":"No overview found.","id":"15202","runtime":0,"version":13,"lastModified":"1300980108000","genre":"Erotic","title":"500 Person Sex!","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60923"} +{"label":"Davitelj protiv davitelja","description":"No overview found.","id":"15203","runtime":93,"imdbId":"tt0087123","version":30,"lastModified":"1301908443000","title":"Davitelj protiv davitelja","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60924"} +{"label":"Fully Flared","description":"A skateboarding film featuring the Lakai team filmed over the course of 4 years.","id":"15205","runtime":129,"imdbId":"tt1199464","homepage":"http:\/\/www.lakai.com\/index.php","version":36,"lastModified":"1301419011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc94660017a3c57fe01e7b7\/fully-flared-mid.jpg","genre":"Documentary","title":"Fully Flared","releaseDate":1195171200000,"language":"en","type":"Movie","_key":"60925"} +{"label":"Ty Evans","version":20,"id":"77994","lastModified":"1301902363000","name":"Ty Evans","type":"Person","_key":"60926"} +{"label":"The Mother of Tears","description":"Part three of the \"Three Mothers\" trilogy which takes place in Rome and has to do with Mater Lachrymarum (The Third Mother).","id":"15206","runtime":102,"imdbId":"tt0804507","homepage":"http:\/\/www.laterzamadre.net\/","version":123,"lastModified":"1301904352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c0\/4bc94660017a3c57fe01e7c0\/la-terza-madre-mid.jpg","studio":"Film Commission Torino-Piemonte","genre":"Fantasy","title":"The Mother of Tears","releaseDate":1212710400000,"language":"en","type":"Movie","_key":"60927"} +{"label":"Moran Atias","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04e\/4cdc46287b9aa1380100004e\/moran-atias-profile.jpg","version":36,"id":"84261","lastModified":"1301901236000","name":"Moran Atias","type":"Person","_key":"60928"} +{"label":"Robert Madison","version":21,"id":"84262","lastModified":"1301902464000","name":"Robert Madison","type":"Person","_key":"60929"} +{"label":"Jun Ichikawa","version":24,"id":"84263","lastModified":"1301902404000","name":"Jun Ichikawa","type":"Person","_key":"60930"} +{"label":"Bathory","description":"Bathory is based on the legends surrounding the life and deeds of Countess Elizabeth Bathory known as the greatest murderess in the history of mankind. Contrary to popular belief, Elizabeth Bathory was a modern Renaissance woman who ultimately fell victim to mens aspirations for power and wealth.","id":"15208","runtime":138,"imdbId":"tt0469640","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/bathory","version":108,"lastModified":"1301903650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d6\/4bc94662017a3c57fe01e7d6\/bathory-mid.jpg","genre":"Drama","title":"Bathory","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"60931"} +{"label":"Bolek Pol\u00edvka","version":28,"birthday":"-739159200000","id":"30737","birthplace":"Vizovice, \u010ceskoslovensko","lastModified":"1301901472000","name":"Bolek Pol\u00edvka","type":"Person","_key":"60932"} +{"label":"Deana Horv\u00e1thov\u00e1","version":23,"id":"78000","lastModified":"1301902003000","name":"Deana Horv\u00e1thov\u00e1","type":"Person","_key":"60933"} +{"label":"Juraj Jakubisko","version":35,"id":"78001","lastModified":"1301901532000","name":"Juraj Jakubisko","type":"Person","_key":"60934"} +{"label":"Eight Days a Week","description":"No overview found.","id":"15209","runtime":92,"imdbId":"tt0119054","version":243,"lastModified":"1302166129000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7db\/4bc94662017a3c57fe01e7db\/eight-days-a-week-mid.jpg","genre":"Animation","title":"Eight Days a Week","releaseDate":919987200000,"language":"en","type":"Movie","_key":"60935"} +{"label":"Joshua Schaefer","version":20,"id":"78002","lastModified":"1301901820000","name":"Joshua Schaefer","type":"Person","_key":"60936"} +{"label":"Mark L. Taylor","version":21,"id":"78003","lastModified":"1301902214000","name":"Mark L. Taylor","type":"Person","_key":"60937"} +{"label":"Coronation Street: Out of Africa","description":"No overview found.","id":"15210","runtime":0,"imdbId":"tt1322288","version":49,"lastModified":"1300980109000","title":"Coronation Street: Out of Africa","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60938"} +{"label":"Species: The Awakening","description":"A scientist, Dr Holander, takes his niece Miranda to Mexico in an attempt to reverse the effects of the alien DNA he used to create her. However the treatment goes horribly wrong, and sets Miranda on a killing spree as she sets out to find a mate.","id":"15212","runtime":98,"imdbId":"tt0844894","version":189,"lastModified":"1301903135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e8\/4bc94662017a3c57fe01e7e8\/species-the-awakening-mid.jpg","studio":"360 Pictures","genre":"Horror","title":"Species: The Awakening","releaseDate":1192579200000,"language":"en","type":"Movie","_key":"60939"} +{"label":"Edy Arellano","version":23,"id":"78004","lastModified":"1301901608000","name":"Edy Arellano","type":"Person","_key":"60940"} +{"label":"Marco Bacuzzi","version":23,"id":"78005","lastModified":"1301901608000","name":"Marco Bacuzzi","type":"Person","_key":"60941"} +{"label":"Roger Cudney","version":24,"id":"78006","lastModified":"1301901719000","name":"Roger Cudney","type":"Person","_key":"60942"} +{"label":"Cynthia Francesconi","version":23,"id":"78007","lastModified":"1301901864000","name":"Cynthia Francesconi","type":"Person","_key":"60943"} +{"label":"Everyone's Hero","description":"\"Everyone's Hero\" is the heartwarming story of a young boy's journey to help Babe Ruth and the New York Yankees win the World Series.","id":"15213","runtime":88,"imdbId":"tt0430779","version":293,"lastModified":"1302143258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f6\/4bc94663017a3c57fe01e7f6\/everyone-s-hero-mid.jpg","genre":"Action","title":"Everyone's Hero","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"60944"} +{"label":"Colin Brady","version":20,"id":"78009","lastModified":"1301901673000","name":"Colin Brady","type":"Person","_key":"60945"} +{"label":"Dan St. Pierre","version":21,"id":"15780","lastModified":"1301901337000","name":"Dan St. Pierre","type":"Person","_key":"60946"} +{"label":"UFC 94: St-Pierre vs. Penn 2","description":"UFC 94: St-Pierre vs. Penn 2 was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on January 31, 2009.\r\n\r\nThe main event featured the rematch of the UFC Welterweight Champion Georges St-Pierre against the UFC Lightweight Champion BJ Penn for the UFC Welterweight Championship.","id":"15214","runtime":0,"imdbId":"tt1508358","version":89,"lastModified":"1302041907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ff\/4bc94664017a3c57fe01e7ff\/ufc-94-st-pierre-vs-penn-2-mid.jpg","title":"UFC 94: St-Pierre vs. Penn 2","releaseDate":1233360000000,"language":"en","type":"Movie","_key":"60947"} +{"label":"Nate Diaz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/012\/4c1df59e7b9aa12958000012\/nate-diaz-profile.jpg","version":47,"id":"83383","lastModified":"1301902537000","name":"Nate Diaz","type":"Person","_key":"60948"} +{"label":"Akihiro Gono","version":20,"id":"83385","lastModified":"1301902392000","name":"Akihiro Gono","type":"Person","_key":"60949"} +{"label":"Midnight Clear","description":"On Christmas Eve in the Arizona desert, a middle-aged man (Stephen Baldwin) and an old woman (K Callan) contemplate suicide. But through chance run-ins with strangers and perhaps some divine intervention, they cross paths and change each other's life forever.","id":"15216","runtime":103,"imdbId":"tt0795426","homepage":"http:\/\/midnightclearmovie.com\/","version":372,"lastModified":"1302041184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78e\/4d3f5d007b9aa15bab00178e\/midnight-clear-mid.jpg","studio":"# # Jenkins Entertainment","genre":"Drama","title":"Midnight Clear","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"60950"} +{"label":"Dallas Jenkins","version":20,"id":"78013","lastModified":"1301901948000","name":"Dallas Jenkins","type":"Person","_key":"60951"} +{"label":"Danny Kaye Collection","description":"No overview found.","id":"15223","runtime":0,"version":111,"lastModified":"1300980110000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81b\/4bc9466b017a3c57fe01e81b\/danny-kaye-collection-mid.jpg","title":"Danny Kaye Collection","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60952"} +{"label":"Galaxy Express 999","description":"In the future, one can achieve immortality by obtaining a mechanized body. Orphaned, young Tetsuro hitches a ride on the space train Galaxy Express 999 in the hope of obtaining a cyborg body to avenge his mother's death. Along the way, he meets Matael, who is the spitting image of his dead mother.","id":"15227","runtime":128,"imdbId":"tt0080772","version":72,"lastModified":"1302039767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82c\/4bc9466c017a3c57fe01e82c\/999-mid.jpg","studio":"The Ocean Group","genre":"Animation","title":"Galaxy Express 999","releaseDate":302572800000,"language":"en","type":"Movie","_key":"60953"} +{"label":"Masako Nozawa","version":77,"id":"90496","lastModified":"1301901454000","name":"Masako Nozawa","type":"Person","_key":"60954"} +{"label":"Masako Ikeda","version":21,"id":"90497","lastModified":"1301902705000","name":"Masako Ikeda","type":"Person","_key":"60955"} +{"label":"VeggieTales: The Ballad of Little Joe","description":"Join Little Joe (played by Larry the Cucumber) and his rootin' tootin' French pea brothers on an adventure that will take them from an abandoned mineshaft all the way to Dodge Ball City -- with Little Joe's faith being tested every step of the way!","id":"15231","runtime":0,"imdbId":"tt0395293","version":164,"lastModified":"1302164786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/843\/4bc9466d017a3c57fe01e843\/veggietales-the-ballad-of-little-joe-mid.jpg","title":"VeggieTales: The Ballad of Little Joe","releaseDate":1061078400000,"language":"en","type":"Movie","_key":"60956"} +{"label":"The Hunted","description":"Insurance investigator Samantha Clark goes deep into a Pacific Northwest forest to retrieve $12 million from a crashed airplane. While there she meets a mysterious mountain man who claims he can help her hunt down the money but instead he ends up hunting her. Written by mts77","id":"15233","runtime":93,"imdbId":"tt0150705","version":67,"lastModified":"1300980111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4ce0b6ec5e73d60f6c000271\/the-hunted-mid.jpg","genre":"Thriller","title":"The Hunted","releaseDate":886550400000,"language":"en","type":"Movie","_key":"60957"} +{"label":"The Hunted","description":"No overview found.","id":"15234","runtime":0,"imdbId":"tt0166221","version":64,"lastModified":"1301908565000","title":"The Hunted","releaseDate":852076800000,"language":"en","type":"Movie","_key":"60958"} +{"label":"Max Kleven","version":23,"id":"128179","lastModified":"1301902418000","name":"Max Kleven","type":"Person","_key":"60959"} +{"label":"De-Lovely","description":"De-Lovely is a 2004 American\/British musical biographical film directed by Irwin Winkler. The screenplay by Jay Cocks is based on the life and career of Cole Porter, from his first meeting with Linda Lee Thomas in 1918 until moments before his death in 1964.","id":"15237","runtime":125,"imdbId":"tt0352277","trailer":"http:\/\/www.youtube.com\/watch?v=1016","version":311,"lastModified":"1302021092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84c\/4bc9466e017a3c57fe01e84c\/de-lovely-mid.jpg","genre":"Documentary","title":"De-Lovely","releaseDate":1088726400000,"language":"en","type":"Movie","_key":"60960"} +{"label":"Allan Corduner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/064\/4ceeba795e73d654f5000064\/allan-corduner-profile.jpg","version":31,"id":"78018","lastModified":"1301901376000","name":"Allan Corduner","type":"Person","_key":"60961"} +{"label":"Peter Polycarpou","version":24,"id":"78019","lastModified":"1301901937000","name":"Peter Polycarpou","type":"Person","_key":"60962"} +{"label":"Peter Jessop","version":29,"id":"47872","lastModified":"1301902157000","name":"Peter Jessop","type":"Person","_key":"60963"} +{"label":"dorothy party","description":"No overview found.","id":"15238","runtime":0,"version":1101,"lastModified":"1302171589000","title":"dorothy party","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"60964"} +{"label":"The Toxic Avenger","description":"The Toxic Avenger is an American cult classic comedy horror film first released in 1984 by Troma Entertainment, known for producing low budget B-movies with campy concepts. Virtually ignored upon its first release, The Toxic Avenger caught on with moviegoers after a long and successful midnight movie engagement at the famed Bleecker Street Cinemas in New York City in late 1985.","id":"15239","runtime":87,"imdbId":"tt0090190","version":243,"lastModified":"1302020486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/859\/4bc9466f017a3c57fe01e859\/the-toxic-avenger-mid.jpg","studio":"Troma Entertainment","genre":"Action","title":"The Toxic Avenger","releaseDate":513561600000,"language":"en","type":"Movie","_key":"60965"} +{"label":"Mitch Cohen","version":21,"id":"78020","lastModified":"1301901474000","name":"Mitch Cohen","type":"Person","_key":"60966"} +{"label":"Michael Herz","version":30,"id":"78023","lastModified":"1301901491000","name":"Michael Herz","type":"Person","_key":"60967"} +{"label":"Snoopy, Come Home!","description":"When Snoopy receives a letter from his original owner Lila, he goes to visit her in the hospital while Charlie Brown and the gang are on the lookout for him. Suddenly, Snoopy feels that he must go live with Lila, but must say goodbye to all his friends. In his adventure to the hospital, he encounters numerous \"No Dogs Allowed\" signs, an annoying little girl who desires to keep him, and more!","id":"15242","runtime":81,"imdbId":"tt0069289","version":182,"lastModified":"1302170224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86c\/4bc94671017a3c57fe01e86c\/snoopy-come-home-mid.jpg","genre":"Family","title":"Snoopy, Come Home!","releaseDate":84758400000,"language":"en","type":"Movie","_key":"60968"} +{"label":"Chad Webber","version":22,"id":"124658","lastModified":"1301902690000","name":"Chad Webber","type":"Person","_key":"60969"} +{"label":"Robin Kohn","version":22,"id":"124659","lastModified":"1301902690000","name":"Robin Kohn","type":"Person","_key":"60970"} +{"label":"Stephen Shea","version":22,"id":"124049","lastModified":"1301902421000","name":"Stephen Shea","type":"Person","_key":"60971"} +{"label":"David Carey","version":18,"id":"130916","lastModified":"1301902988000","name":"David Carey","type":"Person","_key":"60972"} +{"label":"Johanna Baer","version":18,"id":"130917","lastModified":"1301902990000","name":"Johanna Baer","type":"Person","_key":"60973"} +{"label":"Hilary Momberger","version":22,"id":"124660","lastModified":"1301902688000","name":"Hilary Momberger","type":"Person","_key":"60974"} +{"label":"Linda Ercoli","version":22,"id":"124050","lastModified":"1301902413000","name":"Linda Ercoli","type":"Person","_key":"60975"} +{"label":"Lynda Mendelson","version":23,"id":"130918","lastModified":"1301903071000","name":"Lynda Mendelson","type":"Person","_key":"60976"} +{"label":"A Man Escaped","description":"French Resistance activist Andre Devigny is imprisoned by the Nazis, and devotes his waking hours to planning an elaborate escape. Then, on the same day, he is condemned to death, and given a new cellmate. Should he kill him, or risk revealing his plans to someone who may be a Gestapo informer?","id":"15244","runtime":99,"imdbId":"tt0049902","version":176,"lastModified":"1302163314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/875\/4bc94672017a3c57fe01e875\/un-condamne-a-mort-s-est-echappe-ou-le-vent-souffle-ou-il-veut-mid.jpg","genre":"Drama","title":"A Man Escaped","releaseDate":-414633600000,"language":"en","type":"Movie","_key":"60977"} +{"label":"Charles Le Clainche","version":20,"id":"96794","lastModified":"1301901690000","name":"Charles Le Clainche","type":"Person","_key":"60978"} +{"label":"Maurice Beerblock","version":19,"id":"96795","lastModified":"1301901646000","name":"Maurice Beerblock","type":"Person","_key":"60979"} +{"label":"Jacques Ertaud","version":19,"id":"96796","lastModified":"1301901779000","name":"Jacques Ertaud","type":"Person","_key":"60980"} +{"label":"Jean Paul Delhumeau","version":12,"id":"223218","lastModified":"1301903991000","name":"Jean Paul Delhumeau","type":"Person","_key":"60981"} +{"label":"Roger Treherne","version":12,"id":"223219","lastModified":"1301903987000","name":"Roger Treherne","type":"Person","_key":"60982"} +{"label":"Living Hell","description":"No overview found.","id":"15245","runtime":0,"imdbId":"tt0480912","version":69,"lastModified":"1302169434000","title":"Living Hell","releaseDate":1094688000000,"language":"en","type":"Movie","_key":"60983"} +{"label":"The Ipcress File","description":"This espionage thriller represents a landmark in spy movies introducing the sly, dry intelligence agent Harry Palmer. The story, centers on Palmer's investigation into British Intelligence security. He's soon enmeshed in a world of double-dealing, kidnap and murder and finds a traitor is operating at the heart of the secret service. Will the mysterious 'Ipcress File' reveal who the traitor is? ","id":"15247","runtime":109,"imdbId":"tt0059319","trailer":"http:\/\/www.youtube.com\/watch?v=Ui5ec35Toc4","version":121,"lastModified":"1302168974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4bc94675017a3c57fe01e87e\/the-ipcress-file-mid.jpg","genre":"Action","title":"The Ipcress File","releaseDate":-139363200000,"language":"en","type":"Movie","_key":"60984"} +{"label":"Aubrey Richards","version":18,"id":"107853","lastModified":"1301902750000","name":"Aubrey Richards","type":"Person","_key":"60985"} +{"label":"Frank Gatliff","version":17,"id":"141245","lastModified":"1301902576000","name":"Frank Gatliff","type":"Person","_key":"60986"} +{"label":"Oliver MacGreevy","version":17,"id":"141246","lastModified":"1301902576000","name":"Oliver MacGreevy","type":"Person","_key":"60987"} +{"label":"Freda Bamford","version":18,"id":"95251","lastModified":"1301902743000","name":"Freda Bamford","type":"Person","_key":"60988"} +{"label":"Pauline Winter","version":17,"id":"141247","lastModified":"1301902564000","name":"Pauline Winter","type":"Person","_key":"60989"} +{"label":"Anthony Blackshaw","version":17,"id":"141248","lastModified":"1301902564000","name":"Anthony Blackshaw","type":"Person","_key":"60990"} +{"label":"Barry Raymond","version":17,"id":"141249","lastModified":"1301902564000","name":"Barry Raymond","type":"Person","_key":"60991"} +{"label":"David Glover","version":17,"id":"141250","lastModified":"1301902564000","name":"David Glover","type":"Person","_key":"60992"} +{"label":"Stanley Meadows","version":24,"id":"129031","lastModified":"1301902768000","name":"Stanley Meadows","type":"Person","_key":"60993"} +{"label":"This Christmas","description":"This year Christmas with the Whitfields promises to be one they will never forget. All the siblings have come home for the first time in years and they've brought plenty of baggage with them. As the Christmas tree is trimmed and the lights are hung, secrets are revealed and family bonds are tested. As their lives converge, they join together and help each other discover the true meaning of family.","id":"15250","runtime":117,"imdbId":"tt0937375","version":236,"lastModified":"1302066661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/887\/4bc94676017a3c57fe01e887\/this-christmas-mid.jpg","genre":"Comedy","title":"This Christmas","releaseDate":1196121600000,"language":"en","type":"Movie","_key":"60994"} +{"label":"Chris Brown","version":41,"id":"15051","lastModified":"1301901575000","name":"Chris Brown","type":"Person","_key":"60995"} +{"label":"Eddie Murphy: Delirious","description":"Eddie Murphy's raunchy, raucous stand-up comedy routine is captured for posterity on this tape. Not for folks who dislike foul language.","id":"15251","runtime":69,"imdbId":"tt0085474","version":212,"lastModified":"1302066360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/445\/4cd713d55e73d676d3000445\/eddie-murphy-delirious-mid.jpg","genre":"Comedy","title":"Eddie Murphy: Delirious","releaseDate":410227200000,"language":"en","type":"Movie","_key":"60996"} +{"label":"Bruce Gowers","version":27,"id":"82234","lastModified":"1301901598000","name":"Bruce Gowers","type":"Person","_key":"60997"} +{"label":"Antarctica","description":"This large format film explores the last great wilderness on earth. It takes you to the coldest, driest, windiest continent, Antarctica. The film explores the life in Antarctica, both for the animals that live their and the scientist that work there.","id":"15254","runtime":40,"imdbId":"tt0101357","version":85,"lastModified":"1302167651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/498\/4d20e54f7b9aa17367002498\/antarctica-mid.jpg","genre":"Documentary","title":"Antarctica","releaseDate":667785600000,"language":"en","type":"Movie","_key":"60998"} +{"label":"Undisputed II: Last Man Standing","description":"Sequel to the 2002 film. This time, Heavyweight Champ George \"Iceman\" Chambers (White) is sent to a Russian jail on trumped-up drug charges. In order to win his freedom he must fight against the jailhouse fighting champ Uri Boyka (Adkins) in a battle to the death. This time he is not fighting for a title, he is fighting for his life!","id":"15255","runtime":93,"imdbId":"tt0443676","version":281,"lastModified":"1302167221000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b8\/4bc94679017a3c57fe01e8b8\/undisputed-ii-last-man-standing-mid.jpg","studio":"Millennium Films","genre":"Action","title":"Undisputed II: Last Man Standing","releaseDate":1144713600000,"language":"en","type":"Movie","_key":"60999"} +{"label":"Isaac Florentine","version":22,"id":"78108","lastModified":"1301901449000","name":"Isaac Florentine","type":"Person","_key":"61000"} +{"label":"Eli Danker","version":25,"id":"78111","lastModified":"1301901666000","name":"Eli Danker","type":"Person","_key":"61001"} +{"label":"200 Cigarettes","description":"A collection of twentysomethings try to cope with relationships, loneliness, desire and their individual neuroses.","id":"15256","runtime":101,"imdbId":"tt0137338","trailer":"http:\/\/www.youtube.com\/watch?v=AIKELk5Bt0M","version":149,"lastModified":"1302161618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cc\/4bc9467b017a3c57fe01e8cc\/200-cigarettes-mid.jpg","genre":"Comedy","title":"200 Cigarettes","releaseDate":915148800000,"language":"en","type":"Movie","_key":"61002"} +{"label":"Hulk vs. Wolverine","description":"Department H sends in Wolverine to track down a mysterious beast known by the US Military as the Hulk, who is rampaging across the Canadian wilderness. Surveying the extent of the damage to a destroyed town, Wolverine notices a toxic scent as well as the smell of gunpowder. He is then deployed to the wilderness to resume tracking the creature.","id":"15257","runtime":78,"imdbId":"tt1325753","trailer":"http:\/\/www.youtube.com\/watch?v=3144","version":127,"lastModified":"1302166015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23c\/4ca7d2dd7b9aa17aca00023c\/hulk-vs-wolverine-mid.jpg","studio":"Marvel Studios","genre":"Action","title":"Hulk vs. Wolverine","releaseDate":1233014400000,"language":"en","type":"Movie","_key":"61003"} +{"label":"Sam Liu","version":31,"id":"90367","lastModified":"1301902165000","name":"Sam Liu","type":"Person","_key":"61004"} +{"label":"Frank Paur","version":25,"id":"35268","lastModified":"1301901456000","name":"Frank Paur","type":"Person","_key":"61005"} +{"label":"Qayam Devji","version":20,"id":"109543","lastModified":"1301902533000","name":"Qayam Devji","type":"Person","_key":"61006"} +{"label":"Paul Dobson","version":28,"id":"52283","lastModified":"1301901685000","name":"Paul Dobson","type":"Person","_key":"61007"} +{"label":"The Aristocrats","description":"One hundred superstar comedians tell the same very, VERY dirty, filthy joke--one shared privately by comics since Vaudeville.","id":"15258","runtime":89,"imdbId":"tt0436078","version":221,"lastModified":"1302165483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8dc\/4d094d307b9aa101d70008dc\/the-aristocrats-mid.jpg","studio":"Mighty Cheese Productions","genre":"Comedy","title":"The Aristocrats","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"61008"} +{"label":"Paul Provenza","version":26,"id":"83339","lastModified":"1301901774000","name":"Paul Provenza","type":"Person","_key":"61009"} +{"label":"Chris Albrecht","version":19,"id":"83348","lastModified":"1301902464000","name":"Chris Albrecht","type":"Person","_key":"61010"} +{"label":"Steven Gary Banks","version":19,"id":"70114","lastModified":"1301902254000","name":"Steven Gary Banks","type":"Person","_key":"61011"} +{"label":"David Brenner","version":83,"id":"6051","lastModified":"1302078356000","name":"David Brenner","type":"Person","_key":"61012"} +{"label":"Mark Cohen","version":19,"id":"83350","lastModified":"1301902243000","name":"Mark Cohen","type":"Person","_key":"61013"} +{"label":"Breakin'","description":"A struggling young jazz dancer (Lucinda Dickey) meets up with two break-dancers. Together they become the sensation of the street crowds. Features ICE-T in his film debut as a club MC.","id":"15259","runtime":90,"imdbId":"tt0086998","version":319,"lastModified":"1302088932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4cf130465e73d61926000b78\/breakin-mid.jpg","genre":"Drama","title":"Breakin'","releaseDate":441763200000,"language":"en","type":"Movie","_key":"61014"} +{"label":"Joel Silberg","version":20,"id":"89620","lastModified":"1301902504000","name":"Joel Silberg","type":"Person","_key":"61015"} +{"label":"Lucinda Dickey","version":24,"id":"81895","lastModified":"1301901516000","name":"Lucinda Dickey","type":"Person","_key":"61016"} +{"label":"Adolfo Quinones","version":18,"id":"81896","lastModified":"1301901608000","name":"Adolfo Quinones","type":"Person","_key":"61017"} +{"label":"Michael Chambers","version":23,"id":"57392","lastModified":"1301901476000","name":"Michael Chambers","type":"Person","_key":"61018"} +{"label":"Ben Lokey","version":21,"id":"128128","lastModified":"1301902357000","name":"Ben Lokey","type":"Person","_key":"61019"} +{"label":"Phineas Newborn III","version":21,"id":"128129","lastModified":"1301902357000","name":"Phineas Newborn III","type":"Person","_key":"61020"} +{"label":"Joy Division","description":"A chronological account of the influential late 1970s English rock band. ","id":"15260","runtime":93,"imdbId":"tt1097239","version":342,"lastModified":"1302164257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/901\/4bc94681017a3c57fe01e901\/joy-division-mid.jpg","genre":"Documentary","title":"Joy Division","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61021"} +{"label":"Bring It On: In It To Win It","description":"Fourth 'Bring It On' movie is set at a cheerleader camp in Florida with a 'West Side Story' musical feel has the female captain of the West Side Sharks meeting and romancing a male member of the East Coast Jets amid their different team rivalries.","id":"15261","runtime":90,"imdbId":"tt0972785","version":372,"lastModified":"1302160394000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90f\/4bc94682017a3c57fe01e90f\/bring-it-on-in-it-to-win-it-mid.jpg","genre":"Comedy","title":"Bring It On: In It To Win It","releaseDate":1197417600000,"language":"en","type":"Movie","_key":"61022"} +{"label":"Ashley Benson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/292\/4c79793a5e73d613d3000292\/ashley-benson-profile.jpg","biography":"Ashley Victoria Benson was born on December 18, 1989. She has been dancing competitively since she was 2 with hip hop, jazz, ballet, tap and lyrical. She has been singing since she was about 5 and she hopes to pursue that along with her acting. Ashley started modeling at the age of 5 for dance catalogs. Ashley was then pursued by The Ford Modeling Agency at the age of 8. She worked steadily in print and is still with the Agency. At the age of 10, she wanted to pursue acting. Ashley went on to do","version":28,"birthday":"629938800000","id":"78030","birthplace":"Long Beach, California, USA","lastModified":"1301901429000","name":"Ashley Benson","type":"Person","_key":"61023"} +{"label":"Cassie Scerbo","version":24,"id":"78031","lastModified":"1301901608000","name":"Cassie Scerbo","type":"Person","_key":"61024"} +{"label":"Noel Areizaga","version":24,"id":"78032","lastModified":"1301901429000","name":"Noel Areizaga","type":"Person","_key":"61025"} +{"label":"Jennifer Tisdale","version":27,"id":"78033","lastModified":"1301901396000","name":"Jennifer Tisdale","type":"Person","_key":"61026"} +{"label":"Anniese Taylor Dendy","version":24,"id":"78034","lastModified":"1301901474000","name":"Anniese Taylor Dendy","type":"Person","_key":"61027"} +{"label":"Tanisha Harris","version":24,"id":"78035","lastModified":"1301901719000","name":"Tanisha Harris","type":"Person","_key":"61028"} +{"label":"Adam Vernier","version":24,"id":"78037","lastModified":"1301901864000","name":"Adam Vernier","type":"Person","_key":"61029"} +{"label":"Lisa Glaze","version":24,"id":"78038","lastModified":"1301901718000","name":"Lisa Glaze","type":"Person","_key":"61030"} +{"label":"Boogeyman 3","description":"When a college student witnesses the alleged suicide of her roommate, it sets into motion a series of horrific events that cause her to fear the supernatural entity. As she tries to convince the rest of her dorm that the Boogeyman does exist, the evil force grows stronger and her friends begin to pay the price. Now she must stop this ultimate evil before the entire campus falls prey.","id":"15262","runtime":94,"imdbId":"tt1204883","trailer":"http:\/\/www.youtube.com\/watch?v=1017","version":376,"lastModified":"1302145303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/918\/4bc94683017a3c57fe01e918\/boogeyman-3-mid.jpg","studio":"Ghost House Pictures","genre":"Horror","title":"Boogeyman 3","releaseDate":1224288000000,"language":"en","type":"Movie","_key":"61031"} +{"label":"Erin Cahill","version":21,"id":"78044","lastModified":"1301901646000","name":"Erin Cahill","type":"Person","_key":"61032"} +{"label":"Chuck Hittinger","version":19,"id":"78045","lastModified":"1301901646000","name":"Chuck Hittinger","type":"Person","_key":"61033"} +{"label":"Mimi Michaels","version":19,"id":"78046","lastModified":"1301901779000","name":"Mimi Michaels","type":"Person","_key":"61034"} +{"label":"Matt Rippy","version":19,"id":"78047","lastModified":"1301901646000","name":"Matt Rippy","type":"Person","_key":"61035"} +{"label":"Nikki Sanderson","version":19,"id":"78048","lastModified":"1301901948000","name":"Nikki Sanderson","type":"Person","_key":"61036"} +{"label":"W.B. Alexander","version":17,"id":"78049","lastModified":"1301901948000","name":"W.B. Alexander","type":"Person","_key":"61037"} +{"label":"Elyes Gabel","version":19,"id":"78050","lastModified":"1301901948000","name":"Elyes Gabel","type":"Person","_key":"61038"} +{"label":"George Maguire","version":20,"id":"78051","lastModified":"1301901948000","name":"George Maguire","type":"Person","_key":"61039"} +{"label":"McLintock!","description":"McLintock! is a 1963 comedy Western starring John Wayne and Maureen O'Hara, and loosely based on Shakespeare's The Taming of the Shrew. The film is famous (or infamous) for its two spanking scenes, in which mother and daughter are each paddled with coal shovels: the daughter by her suitor, the mother by her estranged husband.","id":"15263","runtime":127,"imdbId":"tt0057298","version":388,"lastModified":"1302159770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/921\/4bc94687017a3c57fe01e921\/mclintock-mid.jpg","studio":"Batjac Productions","genre":"Action","title":"McLintock!","releaseDate":-193622400000,"language":"en","type":"Movie","_key":"61040"} +{"label":"Tall in the Saddle","description":"When Rocklin (John Wayne) arrives in a western town he finds that the rancher who hired him as a foreman has been murdered. He is out to solve the murder and thwart the scheming to take the ranch from its rightful owner.","id":"15264","runtime":87,"imdbId":"tt0037343","version":150,"lastModified":"1302144243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92a\/4bc94687017a3c57fe01e92a\/tall-in-the-saddle-mid.jpg","studio":"RKO Radio Pictures","genre":"Western","title":"Tall in the Saddle","releaseDate":-797040000000,"language":"en","type":"Movie","_key":"61041"} +{"label":"Ella Raines","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4bd6f89b017a3c21f5000081\/ella-raines-profile.jpg","version":32,"id":"78052","lastModified":"1301901509000","name":"Ella Raines","type":"Person","_key":"61042"} +{"label":"George 'Gabby' Hayes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4c3c6fc07b9aa122510000f5\/george-gabby-hayes-profile.jpg","version":73,"id":"88978","lastModified":"1301901299000","name":"George 'Gabby' Hayes","type":"Person","_key":"61043"} +{"label":"Audrey Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d9\/4bf405d9017a3c32130006d9\/audrey-long-profile.jpg","version":19,"birthday":"-1505869200000","id":"111431","birthplace":"Orlando, Florida, USA","lastModified":"1301902941000","name":"Audrey Long","type":"Person","_key":"61044"} +{"label":"Edwin L. Marin","version":26,"id":"78053","lastModified":"1301901778000","name":"Edwin L. Marin","type":"Person","_key":"61045"} +{"label":"The Red Balloon","description":"In this deceptively simple, nearly wordless tale, a young boy discovers a stray balloon, which seems to have a mind of its own, on the streets of Paris. The two become inseparable, yet the world\u2019s harsh realities finally interfere. With its glorious palette and allegorical purity, the Academy Award\u2013winning The Red Balloon has enchanted movie lovers, young and old, for generations.","id":"15265","runtime":34,"imdbId":"tt0048980","version":127,"lastModified":"1301902769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/933\/4bc94688017a3c57fe01e933\/le-ballon-rouge-mid.jpg","studio":"Films Montsouris","genre":"Family","title":"The Red Balloon","releaseDate":-404265600000,"language":"en","type":"Movie","_key":"61046"} +{"label":"Albert Lamorisse","version":22,"id":"78185","lastModified":"1301901592000","name":"Albert Lamorisse","type":"Person","_key":"61047"} +{"label":"Pascal Lamorisse","version":18,"id":"78186","lastModified":"1301901948000","name":"Pascal Lamorisse","type":"Person","_key":"61048"} +{"label":"Georges Sellier","version":17,"id":"142935","lastModified":"1301902757000","name":"Georges Sellier","type":"Person","_key":"61049"} +{"label":"The Fighting Kentuckian","description":"John Breen (John Wayne), a Kentucky militiaman falls in love with French exile Fleurette De Marchand (Vera Ralston). He discovers a plot to steal the land that Fleurette's exiles plan to settle on and aims to foil it.","id":"15266","runtime":100,"imdbId":"tt0041361","version":269,"lastModified":"1302143204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93c\/4bc94689017a3c57fe01e93c\/the-fighting-kentuckian-mid.jpg","studio":"Republic Pictures","genre":"Western","title":"The Fighting Kentuckian","releaseDate":-640483200000,"language":"en","type":"Movie","_key":"61050"} +{"label":"Vera Ralston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ed\/4c9a58757b9aa122e10004ed\/vera-ralston-profile.jpg","version":24,"id":"78056","lastModified":"1301901713000","name":"Vera Ralston","type":"Person","_key":"61051"} +{"label":"Oliver Hardy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08f\/4c9332885e73d6369800008f\/oliver-hardy-profile.jpg","biography":"<font face=\"sans-serif\" size=\"3\"><span style=\"font-size: 13px; line-height: 19px;\"><b>Although his Scottish-English parents were never in show business, as a young boy Oliver Hardy was a gifted singer and, by age eight, was performing with minstrel shows. In 1910 he ran a movie theatre, which he preferred to studying law. In 1913 he became a comedy actor with the Lubin Company in Florida and began appearing in a long series of shorts; his debut film was Outwitting Dad (1914). He appeared in he 1","version":150,"birthday":"-2459984400000","id":"78057","birthplace":"Harlem, Georgia","lastModified":"1301901167000","name":"Oliver Hardy","type":"Person","_key":"61052"} +{"label":"The Beast of War","description":"During the war in Afghanistan a Soviet tank crew commanded by a tyrannical officer find themselves lost and in a struggle against a band of Mujahadeen guerrillas in the mountains.","id":"15267","runtime":111,"imdbId":"tt0094716","version":106,"lastModified":"1302142606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/945\/4bc94689017a3c57fe01e945\/the-beast-of-war-mid.jpg","studio":"Brightstar Films","genre":"Drama","title":"The Beast of War","releaseDate":590198400000,"language":"en","type":"Movie","_key":"61053"} +{"label":"Street Fighter: The Legend of Chun-Li","description":"Based on the popular video game franchise, female fighter Chun Li embarks on a quest for justice.","id":"15268","runtime":97,"imdbId":"tt0891592","trailer":"http:\/\/www.youtube.com\/watch?v=EctFEyCMDL0","version":258,"lastModified":"1302142220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/957\/4bc9468b017a3c57fe01e957\/street-fighter-the-legend-of-chun-li-mid.jpg","studio":"Hyde Park Films","genre":"Action","title":"Street Fighter: The Legend of Chun-Li","releaseDate":1235692800000,"language":"en","type":"Movie","_key":"61054"} +{"label":"Bright Young Things","description":"in the 1930\u2019s a social set known to the press \u2013 who follow their every move \u2013 as the \u201cBright Young Things.\u201d are Adam and his friends who are eccentric, wild and entirely shocking to the older generation. Amidst the madness, Adam, who is well connected but totally broke, is desperately trying to get enough money to marry the beautiful Nina. While his attempts to raise cash are constantly thwarted, their friends seem to self-destruct, one-by-one, in an endless search for newer and faster sensation","id":"15271","runtime":106,"imdbId":"tt0325123","version":134,"lastModified":"1302157955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/965\/4bc9468c017a3c57fe01e965\/bright-young-things-mid.jpg","studio":"The Film Consortium","genre":"Comedy","title":"Bright Young Things","releaseDate":1053043200000,"language":"en","type":"Movie","_key":"61055"} +{"label":"Julia McKenzie","version":23,"id":"83438","lastModified":"1301902419000","name":"Julia McKenzie","type":"Person","_key":"61056"} +{"label":"Up The Yangtze","description":"A luxury cruise boat motors up the Yangtze - navigating the mythic waterway known in China simply as \"The River.\" The Yangtze is about to be transformed by the biggest hydroelectric dam in history. At the river's edge - a young woman says goodbye to her family as the floodwaters rise towards their small homestead. The Three Gorges Dam - contested symbol of the Chinese economic miracle - provides the epic backdrop for Up the Yangtze, a dramatic feature documentary on life inside modern China.","id":"15272","runtime":93,"imdbId":"tt1114277","trailer":"http:\/\/www.youtube.com\/watch?v=1019","version":174,"lastModified":"1302141459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/983\/4bc94691017a3c57fe01e983\/up-the-yangtze-mid.jpg","genre":"Documentary","title":"Up The Yangtze","releaseDate":1191110400000,"language":"en","type":"Movie","_key":"61057"} +{"label":"Yung Chang","version":21,"id":"78059","lastModified":"1301901643000","name":"Yung Chang","type":"Person","_key":"61058"} +{"label":"Campbell Ping He","version":21,"id":"78065","lastModified":"1301901442000","name":"Campbell Ping He","type":"Person","_key":"61059"} +{"label":"Jerry Bo Yu Chen","version":21,"id":"78066","lastModified":"1301901942000","name":"Jerry Bo Yu Chen","type":"Person","_key":"61060"} +{"label":"Cindy Shui Yu","version":21,"id":"78067","lastModified":"1301901643000","name":"Cindy Shui Yu","type":"Person","_key":"61061"} +{"label":"Kvinnen i mitt liv","description":"Jakob has a superficial relationship to the women in his life. That is until he meets Nina. How will he cope with this new situation?\n\n","id":"15273","runtime":93,"imdbId":"tt0382134","version":86,"lastModified":"1302140787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98c\/4bc94691017a3c57fe01e98c\/kvinnen-i-mitt-liv-mid.jpg","studio":"Filmkameratene AS","genre":"Comedy","title":"Kvinnen i mitt liv","releaseDate":1069459200000,"language":"en","type":"Movie","_key":"61062"} +{"label":"Thomas Giertsen","version":19,"id":"78068","lastModified":"1301901948000","name":"Thomas Giertsen","type":"Person","_key":"61063"} +{"label":"After School Special","description":"Three high school guys attempt to make a porno movie.","id":"15276","runtime":90,"imdbId":"tt0302297","trailer":"http:\/\/www.youtube.com\/watch?v=JvaTaj9rxAc","version":129,"lastModified":"1302157863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a5\/4bc94693017a3c57fe01e9a5\/after-school-special-mid.jpg","genre":"Comedy","title":"After School Special","releaseDate":1052697600000,"language":"en","tagline":"They couldn't rent it, so they made it themselves.","type":"Movie","_key":"61064"} +{"label":"Daniel Farber","version":22,"id":"94642","lastModified":"1301902390000","name":"Daniel Farber","type":"Person","_key":"61065"} +{"label":"Sarah-Jane Potts","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c88\/4cf147505e73d61926000c88\/sarah-jane-potts-profile.jpg","version":30,"id":"80417","lastModified":"1301901424000","name":"Sarah-Jane Potts","type":"Person","_key":"61066"} +{"label":"Ashes of Time Redux","description":"A broken-hearted hit man moves to the desert where he finds skilled swordsmen to carry out his contract killings.","id":"15277","runtime":93,"imdbId":"tt0109688","trailer":"http:\/\/www.youtube.com\/watch?v=WyD_L5ubmL4","homepage":"http:\/\/www.sonyclassics.com\/ashesoftimeredux\/","version":162,"lastModified":"1302157333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ba\/4bc94695017a3c57fe01e9ba\/dung-che-sai-duk-redux-mid.jpg","studio":"Beijing Film","genre":"Action","title":"Ashes of Time Redux","releaseDate":816652800000,"language":"en","type":"Movie","_key":"61067"} +{"label":"Li Bai","version":22,"id":"125464","lastModified":"1301902519000","name":"Li Bai","type":"Person","_key":"61068"} +{"label":"Charlie Yeung","version":25,"id":"125465","lastModified":"1301902216000","name":"Charlie Yeung","type":"Person","_key":"61069"} +{"label":"CB4","description":"A \"rockumentary\", covering the rise to fame of MC Gusto, Stab Master Arson, and Dead Mike: members of the rap group \"CB4\". ","id":"15278","runtime":89,"imdbId":"tt0106500","trailer":"http:\/\/www.youtube.com\/watch?v=__aoalbyZWQ","version":130,"lastModified":"1302139667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bf\/4bc94695017a3c57fe01e9bf\/cb4-mid.jpg","genre":"Comedy","title":"CB4","releaseDate":731894400000,"language":"en","type":"Movie","_key":"61070"} +{"label":"Mexico","description":"Using text from Mexican novelist Carlos Fuentes and ancient Aztec and Mayan poetry, narrators Martin Sheen (in English) and Enrique Rocha (in Spanish) lead viewers on a visual journey through this country's rich and varied past and present. Stunning Giant Screen images and a dramatic musical score by Daniel Valdez create a vivid, insightful portrait of the Mexican people and their culture. ","id":"15279","runtime":43,"imdbId":"tt0245278","version":64,"lastModified":"1302139354000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c8\/4bc94695017a3c57fe01e9c8\/mexico-mid.jpg","title":"Mexico","releaseDate":949449600000,"language":"en","type":"Movie","_key":"61071"} +{"label":"OstPunk! Too much Future","description":"No overview found.","id":"15280","runtime":0,"imdbId":"tt0920884","homepage":"http:\/\/www.toomuchfuture.de","version":33,"lastModified":"1301908465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d1\/4bc94696017a3c57fe01e9d1\/ostpunk-too-much-future-mid.jpg","title":"OstPunk! Too much Future","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"61072"} +{"label":"King Corn","description":"King Corn is a feature documentary film released in October 2007 following college friends Ian Cheney and Curtis Ellis as they move from Boston to Greene, Iowa to grow and farm an acre of corn. In the process, Cheney and Ellis examine the role that the increasing production of corn has for American society.","id":"15281","runtime":88,"imdbId":"tt1112115","version":189,"lastModified":"1301904281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9da\/4bc94696017a3c57fe01e9da\/king-corn-mid.jpg","genre":"Documentary","title":"King Corn","releaseDate":1176422400000,"language":"en","tagline":"You Are What You Eat","type":"Movie","_key":"61073"} +{"label":"Aaron Woolf","version":8,"id":"229458","lastModified":"1301904034000","name":"Aaron Woolf","type":"Person","_key":"61074"} +{"label":"Ian Cheney","version":8,"id":"229459","lastModified":"1301904034000","name":"Ian Cheney","type":"Person","_key":"61075"} +{"label":"Curtis Ellis","version":8,"id":"229460","lastModified":"1301904034000","name":"Curtis Ellis","type":"Person","_key":"61076"} +{"label":"Earl L. Butz","version":6,"id":"229462","lastModified":"1301904046000","name":"Earl L. Butz","type":"Person","_key":"61077"} +{"label":"The Hide","description":"No overview found.","id":"15282","runtime":0,"imdbId":"tt1305816","version":252,"lastModified":"1301906209000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e3\/4bc94697017a3c57fe01e9e3\/the-hide-mid.jpg","title":"The Hide","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"61078"} +{"label":"Pom Poko","description":"As the human city development encroaches on the raccoon population's forest and meadow habitat, the raccoons find themselves faced with the very real possibility of extinction. In response, the raccoons engage in a desperate struggle to stop the construction and preserve their home.","id":"15283","runtime":119,"imdbId":"tt0110008","version":88,"lastModified":"1301903458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f0\/4bc94698017a3c57fe01e9f0\/heisei-tanuki-gassen-pompoko-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Pom Poko","releaseDate":1124150400000,"language":"en","type":"Movie","_key":"61079"} +{"label":"Shinch\u00f4 Kokontei","version":25,"id":"86856","lastModified":"1301901864000","name":"Shinch\u00f4 Kokontei","type":"Person","_key":"61080"} +{"label":"Makoto Nonomura","version":25,"id":"86857","lastModified":"1301902068000","name":"Makoto Nonomura","type":"Person","_key":"61081"} +{"label":"Norihei Miki","version":26,"id":"86858","lastModified":"1301902243000","name":"Norihei Miki","type":"Person","_key":"61082"} +{"label":"Nijiko Kiyokawa","version":32,"id":"86859","lastModified":"1301902464000","name":"Nijiko Kiyokawa","type":"Person","_key":"61083"} +{"label":"Udon","description":"Kosuke is 31, and tired of his hometown where nothing happens. On a whim, he departs for New York with dreams of making it big. 6 months later, he straggles home... defeated, and saddled with debt. Awaiting him are his old friends, a caring sister, a disgruntled father ...and a bowl of noodles. Namely, \"udon\" noodles. The town is built around udon, sustained by udon, nationally famous for udon. ","id":"15284","runtime":0,"imdbId":"tt0780167","version":40,"lastModified":"1301906725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f9\/4bc94699017a3c57fe01e9f9\/udon-mid.jpg","title":"Udon","releaseDate":1156550400000,"language":"en","type":"Movie","_key":"61084"} +{"label":"Katsuyuki Motohiro","version":27,"id":"88784","lastModified":"1301902192000","name":"Katsuyuki Motohiro","type":"Person","_key":"61085"} +{"label":"Growing Op","description":"The story of a teenage boy coming of age in a suburban grow-operation, where every day is paradise or fresh hell. But it's always a trip. Sheltered all his life and home-schooled by loving parents who are also committed criminals, Quinn Dawson yearns to experience the normalcy of the suburban world which surrounds him. ","id":"15285","runtime":0,"imdbId":"tt1105730","version":224,"lastModified":"1301418048000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a02\/4bc9469a017a3c57fe01ea02\/growing-op-mid.jpg","genre":"Comedy","title":"Growing Op","releaseDate":1227225600000,"language":"en","type":"Movie","_key":"61086"} +{"label":"Marine Boy","description":"Marine Boy is the story of a former national swimmer who finds himself in debt, and out of desperation is employed as a mule by a gangster boss, smuggling drugs by sea. ","id":"15286","runtime":118,"imdbId":"tt1380152","version":188,"lastModified":"1301907751000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4cd6c6887b9aa11b260002a1\/marin-boi-mid.jpg","studio":"CJ Entertainment","genre":"Action","title":"Marine Boy","releaseDate":1233792000000,"language":"en","type":"Movie","_key":"61087"} +{"label":"Jong-seok Yoon","version":21,"id":"84749","lastModified":"1301902633000","name":"Jong-seok Yoon","type":"Person","_key":"61088"} +{"label":"Kang-woo Kim","version":23,"id":"84751","lastModified":"1301902633000","name":"Kang-woo Kim","type":"Person","_key":"61089"} +{"label":"Si-hyeon Park","version":19,"id":"84752","lastModified":"1301902721000","name":"Si-hyeon Park","type":"Person","_key":"61090"} +{"label":"Babylon 5: The Lost Tales - Voices in the Dark","description":"This latest installment of Babylon 5 is in two parts: the first, is about an entity that has possessed a worker. It wants to be exorcised but Col. Lochley prevents the priest & sends it & the host both back to Earth. The second is about Galen trying to dupe President Sheridan into assassinating the future Centauri President to stop him possibly attacking Earth in 30 years time.","id":"15289","runtime":75,"imdbId":"tt0871427","version":155,"lastModified":"1301906929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a29\/4bc946a2017a3c57fe01ea29\/babylon-5-the-lost-tales-voices-in-the-dark-mid.jpg","studio":"Warner Bros. Entertainment","genre":"Action","title":"Babylon 5: The Lost Tales - Voices in the Dark","releaseDate":1185840000000,"language":"en","type":"Movie","_key":"61091"} +{"label":"Keegan MacIntosh","version":17,"id":"78105","lastModified":"1301902243000","name":"Keegan MacIntosh","type":"Person","_key":"61092"} +{"label":"J. Michael Straczynski","version":45,"id":"33045","lastModified":"1301901505000","name":"J. Michael Straczynski","type":"Person","_key":"61093"} +{"label":"Sara Barnes","version":17,"id":"78106","lastModified":"1301901864000","name":"Sara Barnes","type":"Person","_key":"61094"} +{"label":"SuicideGirls: The First Tour","description":"What Playboy magazine was to the 1950's, SuicideGirls is to the new millennium: a revolutionary lifestyle brand that combines the DIY attitude of underground culture with a vibrant, sex-positive community. ","id":"15290","runtime":110,"imdbId":"tt0481630","homepage":"http:\/\/suicidegirls.com\/","version":153,"lastModified":"1301905740000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2e\/4bc946a3017a3c57fe01ea2e\/suicidegirls-the-first-tour-mid.jpg","studio":"Epitaph Records","genre":"Documentary","title":"SuicideGirls: The First Tour","releaseDate":1125360000000,"language":"en","type":"Movie","_key":"61095"} +{"label":"Raven Isis","version":19,"id":"113296","lastModified":"1301902677000","name":"Raven Isis","type":"Person","_key":"61096"} +{"label":"Mike Marshall","version":17,"id":"112979","lastModified":"1301902504000","name":"Mike Marshall","type":"Person","_key":"61097"} +{"label":"Step into Liquid","description":"No special effects. No stuntmen. No stereotypes. No other feeling comes close. Surfers and secret spots from around the world are profiled in this documentary. ","id":"15292","runtime":87,"imdbId":"tt0308508","homepage":"http:\/\/www.stepintoliquid.com\/","version":156,"lastModified":"1302039242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dc\/4d0a91ef7b9aa162bf0006dc\/step-into-liquid-mid.jpg","genre":"Documentary","title":"Step into Liquid","releaseDate":1060041600000,"language":"en","type":"Movie","_key":"61098"} +{"label":"Rochelle Ballard","version":16,"id":"108322","lastModified":"1301902889000","name":"Rochelle Ballard","type":"Person","_key":"61099"} +{"label":"Shawn Barron","version":16,"id":"108323","lastModified":"1301902633000","name":"Shawn Barron","type":"Person","_key":"61100"} +{"label":"Layne Beachley","version":16,"id":"108324","lastModified":"1301902889000","name":"Layne Beachley","type":"Person","_key":"61101"} +{"label":"Bob Beaton","version":19,"id":"108325","lastModified":"1301902889000","name":"Bob Beaton","type":"Person","_key":"61102"} +{"label":"Jesse Brad Billauer","version":17,"id":"108326","lastModified":"1301902889000","name":"Jesse Brad Billauer","type":"Person","_key":"61103"} +{"label":"Taj Burrow","version":20,"id":"108268","lastModified":"1301902633000","name":"Taj Burrow","type":"Person","_key":"61104"} +{"label":"Ken Collins","version":17,"id":"108327","lastModified":"1301903034000","name":"Ken Collins","type":"Person","_key":"61105"} +{"label":"Ami DiCamillo","version":16,"id":"108328","lastModified":"1301902889000","name":"Ami DiCamillo","type":"Person","_key":"61106"} +{"label":"Brad Gerlach","version":18,"id":"108329","lastModified":"1301902888000","name":"Brad Gerlach","type":"Person","_key":"61107"} +{"label":"Keala Kennelly","version":17,"id":"108330","lastModified":"1301903034000","name":"Keala Kennelly","type":"Person","_key":"61108"} +{"label":"Alex Knost","version":16,"id":"108331","lastModified":"1301902888000","name":"Alex Knost","type":"Person","_key":"61109"} +{"label":"Jim Knost","version":16,"id":"108332","lastModified":"1301902888000","name":"Jim Knost","type":"Person","_key":"61110"} +{"label":"Rob Machado","version":21,"id":"108333","lastModified":"1301902068000","name":"Rob Machado","type":"Person","_key":"61111"} +{"label":"Chris Malloy","version":18,"id":"108334","lastModified":"1301903034000","name":"Chris Malloy","type":"Person","_key":"61112"} +{"label":"Dan Malloy","version":20,"id":"108335","lastModified":"1301903068000","name":"Dan Malloy","type":"Person","_key":"61113"} +{"label":"Keith Malloy","version":17,"id":"108336","lastModified":"1301902888000","name":"Keith Malloy","type":"Person","_key":"61114"} +{"label":"Andy Matthias","version":16,"id":"108337","lastModified":"1301902888000","name":"Andy Matthias","type":"Person","_key":"61115"} +{"label":"Peter Mel","version":17,"id":"108338","lastModified":"1301902888000","name":"Peter Mel","type":"Person","_key":"61116"} +{"label":"Mike Parsons","version":16,"id":"108339","lastModified":"1301902888000","name":"Mike Parsons","type":"Person","_key":"61117"} +{"label":"Mike Parsons","version":16,"id":"108340","lastModified":"1301902888000","name":"Mike Parsons","type":"Person","_key":"61118"} +{"label":"Mike Waltze","version":16,"id":"108341","lastModified":"1301902888000","name":"Mike Waltze","type":"Person","_key":"61119"} +{"label":"Robert 'Wingnut' Weaver","version":17,"id":"108343","lastModified":"1301902888000","name":"Robert 'Wingnut' Weaver","type":"Person","_key":"61120"} +{"label":"Larry Williams","version":17,"id":"108344","lastModified":"1301902888000","name":"Larry Williams","type":"Person","_key":"61121"} +{"label":"Word World: Rocket to the Moon","description":"In this colorful animated series for the pre-reading set, WordFriends -- animals whose bodies are composed of the letters that make up their names -- get into silly, sticky situations that can be resolved only by finding the right word.","id":"15294","runtime":51,"version":31,"lastModified":"1301908554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4d723c997b9aa17766000087\/word-world-rocket-to-the-moon-mid.jpg","title":"Word World: Rocket to the Moon","releaseDate":1200355200000,"language":"en","type":"Movie","_key":"61122"} +{"label":"Word World: The Race to Mystery Island","description":"Among the episodes in this compilation are \"Pig's Present,\" in which Pig discovers the benefits of patience, and \"The Race to Mystery Island,\" which finds Frog and Pig carrying competition too far.","id":"15298","runtime":51,"imdbId":"tt1234429","version":33,"lastModified":"1301908577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8d\/4bc946af017a3c57fe01ea8d\/word-world-the-race-to-mystery-island-mid.jpg","genre":"Animation","title":"Word World: The Race to Mystery Island","releaseDate":1229990400000,"language":"en","type":"Movie","_key":"61123"} +{"label":"Word World: Welcome to Word World","description":"No overview found.","id":"15299","runtime":0,"imdbId":"tt1097633","version":31,"lastModified":"1300980120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4bc946af017a3c57fe01ea96\/word-world-welcome-to-word-world-mid.jpg","genre":"Animation","title":"Word World: Welcome to Word World","releaseDate":1200355200000,"language":"en","type":"Movie","_key":"61124"} +{"label":"Newsies","description":"A week in the life of the exploited, child newspaper sellers in turn-of-the-century New York. When their publisher, Joseph Pulitzer, tries to squeeze a little more profit out of their labours, they organize a strike, only to be confronted with the Pulitzer's hard-ball tactics.","id":"15300","runtime":121,"imdbId":"tt0104990","version":150,"lastModified":"1301904614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4bc946b0017a3c57fe01eaa8\/newsies-mid.jpg","studio":"Walt Disney Company","genre":"Drama","title":"Newsies","releaseDate":702864000000,"language":"en","type":"Movie","_key":"61125"} +{"label":"Twilight Zone: The Movie","description":"Four directors collaborated to remake four episodes of the popular television series 'The Twilight Zone' for this movie. The episodes are updated slightly and in color (the television show was in black-and-white), but very true to the originals, where eerie and disturbing situations gradually spin out of control. \"A Quality of Mercy\", \"Kick the Can\", \"It's a Good Life\", and \"Nightmare at 20,000 Feet\".","id":"15301","runtime":101,"imdbId":"tt0086491","trailer":"http:\/\/www.youtube.com\/watch?v=6C_sKKTTMX4","version":267,"lastModified":"1301902643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aba\/4bc946b5017a3c57fe01eaba\/twilight-zone-the-movie-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Twilight Zone: The Movie","releaseDate":425260800000,"language":"en","type":"Movie","_key":"61126"} +{"label":"Vic Morrow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16d\/4c333ebd5e73d6496900016d\/vic-morrow-profile.jpg","version":33,"id":"83810","lastModified":"1301902515000","name":"Vic Morrow","type":"Person","_key":"61127"} +{"label":"The Pixar Story","description":"A look at the first years of Pixar Animation Studios - from the success of \"Toy Story\" and Pixar's promotion of talented people.","id":"15302","runtime":87,"imdbId":"tt1059955","version":108,"lastModified":"1301905028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac8\/4bc946b7017a3c57fe01eac8\/the-pixar-story-mid.jpg","genre":"Documentary","title":"The Pixar Story","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61128"} +{"label":"Mrtav 'ladan","description":"The basic plot revolves around a drug dealer Limini (Tin man) who is said to have no heart, and two men Lemi and Kiza who are trying to transport their dead grandfather for burial, until their car breaks down and they end up struggling to get him home onboard a train. This is when these two plots intersect and all hell breaks lose. You won't laugh so hard at the movies in a long time.","id":"15303","runtime":90,"imdbId":"tt0301634","version":87,"lastModified":"1301906186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad1\/4bc946b7017a3c57fe01ead1\/mrtav-ladan-mid.jpg","studio":"Viktoria Film","title":"Mrtav 'ladan","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"61129"} +{"label":"Nikola \u0110uri\u010dko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f5d\/4d63f6e05e73d60c68004f5d\/nikola-djuricko-profile.jpg","version":40,"id":"111058","lastModified":"1301902717000","name":"Nikola \u0110uri\u010dko","type":"Person","_key":"61130"} +{"label":"Sonja Kola\u010dari\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b48\/4d7cf44a7b9aa12e19010b48\/sonja-kola-ari-profile.jpg","version":22,"id":"80505","lastModified":"1301902349000","name":"Sonja Kola\u010dari\u0107","type":"Person","_key":"61131"} +{"label":"Tara Manic","version":18,"id":"111060","lastModified":"1301902997000","name":"Tara Manic","type":"Person","_key":"61132"} +{"label":"Nenad Jezdi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a0a\/4d7cf1a87b9aa1023b000a0a\/nenad-jezdic-profile.jpg","version":24,"id":"80506","lastModified":"1301902510000","name":"Nenad Jezdi\u0107","type":"Person","_key":"61133"} +{"label":"Slobodan Ninkovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4d63fa525e73d60c5a005075\/slobodan-ninkovic-profile.jpg","version":41,"id":"110969","lastModified":"1301902997000","name":"Slobodan Ninkovi\u0107","type":"Person","_key":"61134"} +{"label":"Nikola Pejakovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21e\/4d6402775e73d60c5c00521e\/nikola-pejakovic-profile.jpg","version":31,"id":"110996","lastModified":"1301901976000","name":"Nikola Pejakovi\u0107","type":"Person","_key":"61135"} +{"label":"Olivera Markovic","version":19,"id":"111061","lastModified":"1301903034000","name":"Olivera Markovic","type":"Person","_key":"61136"} +{"label":"Milica Mihajlovic","version":18,"id":"111062","lastModified":"1301903034000","name":"Milica Mihajlovic","type":"Person","_key":"61137"} +{"label":"Branislav Zeremski","version":17,"id":"111063","lastModified":"1301902997000","name":"Branislav Zeremski","type":"Person","_key":"61138"} +{"label":"Miodrag Krstovic","version":19,"id":"102385","lastModified":"1301902510000","name":"Miodrag Krstovic","type":"Person","_key":"61139"} +{"label":"Radmila \u017divkovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f2\/4d7d3b687b9aa11a140196f2\/radmila-ivkovi-profile.jpg","version":22,"id":"111064","lastModified":"1301902997000","name":"Radmila \u017divkovi\u0107","type":"Person","_key":"61140"} +{"label":"Mihajlo Bata Paskaljevi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4d7d4ac37b9aa12e190111cb\/mihajlo-bata-paskaljevi-profile.jpg","version":26,"birthday":"-1482109200000","id":"111068","lastModified":"1301903000000","name":"Mihajlo Bata Paskaljevi\u0107","type":"Person","_key":"61141"} +{"label":"The Jazz Singer","description":"Neil Diamond stars as Yussel in this tale of a young Jewish cantor who strives to make a career in music.","id":"15310","runtime":115,"imdbId":"tt0080948","version":115,"lastModified":"1301908356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adf\/4bc946b8017a3c57fe01eadf\/the-jazz-singer-mid.jpg","genre":"Drama","title":"The Jazz Singer","releaseDate":345859200000,"language":"en","type":"Movie","_key":"61142"} +{"label":"American Cousins","description":"Two American mafiosi, Gino and Settimo, take refuge in the Glasgow cafe owned by their Scottish\/Italian cousin, but he isn't the tough guy they'd expected. Gino and Settimo try to repay Roberto's hospitality by chasing off a debt collector who wants his property, but their strong arm tactics alarm him and he realises they aren't the PR consultants they claimed to be.","id":"15312","runtime":115,"imdbId":"tt0324992","homepage":"www.american-cousins.com","version":252,"lastModified":"1301417972000","genre":"Action","title":"American Cousins","releaseDate":1069977600000,"language":"en","type":"Movie","_key":"61143"} +{"label":"Gerald Lepkowski","version":19,"id":"78095","lastModified":"1301901864000","name":"Gerald Lepkowski","type":"Person","_key":"61144"} +{"label":"Eva Coutts","version":19,"id":"78096","lastModified":"1301902243000","name":"Eva Coutts","type":"Person","_key":"61145"} +{"label":"Russell Hunter","version":22,"id":"74637","lastModified":"1301902137000","name":"Russell Hunter","type":"Person","_key":"61146"} +{"label":"Stevan Rimkus","version":19,"id":"78097","lastModified":"1301902243000","name":"Stevan Rimkus","type":"Person","_key":"61147"} +{"label":"Alan McQueen","version":19,"id":"78098","lastModified":"1301902243000","name":"Alan McQueen","type":"Person","_key":"61148"} +{"label":"George McNeilage","version":19,"id":"78099","lastModified":"1301902243000","name":"George McNeilage","type":"Person","_key":"61149"} +{"label":"Rab Reilly","version":16,"id":"78100","lastModified":"1301902243000","name":"Rab Reilly","type":"Person","_key":"61150"} +{"label":"John Byrne","version":16,"id":"78101","lastModified":"1301902243000","name":"John Byrne","type":"Person","_key":"61151"} +{"label":"The Wrong Guy","description":"An executive (Dave Foley) after being passed over for a promotion to president storms into his office only to find the man who got the promotion dead. Assuming everyone will think he committed the crime he takes off as a fugitive... ","id":"15313","runtime":92,"imdbId":"tt0120536","version":125,"lastModified":"1301908290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aed\/4bc946b9017a3c57fe01eaed\/the-wrong-guy-mid.jpg","studio":"Handmade Films Ltd.","genre":"Action","title":"The Wrong Guy","releaseDate":870393600000,"language":"en","type":"Movie","_key":"61152"} +{"label":"David Anthony Higgins","version":17,"id":"78102","lastModified":"1301901992000","name":"David Anthony Higgins","type":"Person","_key":"61153"} +{"label":"David Steinberg","version":23,"id":"15452","lastModified":"1301901459000","name":"David Steinberg","type":"Person","_key":"61154"} +{"label":"Mini's First Time","description":"Desperate to be free from her drunken, unloving mother Diane, the beautiful, scheming young Mini seduces her stepfather Martin and soon convinces him to join her in a sadistic scheme to have Diane declared insane. But their conspiracy soon escalates to murder and when John Garson, a young detective starts investigating, Martin and Mini begin to turn on each other.","id":"15314","runtime":91,"imdbId":"tt0425253","version":228,"lastModified":"1301904303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afa\/4bc946bb017a3c57fe01eafa\/mini-s-first-time-mid.jpg","studio":"Bold Films","genre":"Comedy","title":"Mini's First Time","releaseDate":1146441600000,"language":"en","tagline":"Sex. Murder. Blackmail. There's a first time for everything.","type":"Movie","_key":"61155"} +{"label":"Good Time Max","description":"Two genius brothers grow up and grow apart as one becomes a successful surgeon and the other pursues a drug-fueled high life.","id":"15316","runtime":79,"imdbId":"tt0469913","version":173,"lastModified":"1301904903000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b15\/4bc946bd017a3c57fe01eb15\/good-time-max-mid.jpg","genre":"Drama","title":"Good Time Max","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61156"} +{"label":"Dora the Explorer - Dora Saves the Snow Princess","description":"It\u2019s Dora The Explorer in her biggest DVD release of 2008! Dora Saves The Snow Princess is an all-new, movie- length adventure, available only on DVD!","id":"15317","runtime":93,"imdbId":"tt1323515","trailer":"http:\/\/www.youtube.com\/watch?v=1023","version":164,"lastModified":"1301908635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b22\/4bc946be017a3c57fe01eb22\/dora-the-explorer-dora-saves-the-snow-princess-mid.jpg","studio":"Nickelodeon Movies","genre":"Animation","title":"Dora the Explorer - Dora Saves the Snow Princess","releaseDate":1222732800000,"language":"en","type":"Movie","_key":"61157"} +{"label":"The Taste of Tea","description":"The life of an eccentric family living in the Tochigi prefecture.","id":"15318","runtime":143,"imdbId":"tt0413893","trailer":"http:\/\/www.youtube.com\/watch?v=2NcBL6cYGL4","version":224,"lastModified":"1301905587000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b27\/4bc946be017a3c57fe01eb27\/cha-no-aji-mid.jpg","genre":"Comedy","title":"The Taste of Tea","releaseDate":1090022400000,"language":"en","type":"Movie","_key":"61158"} +{"label":"Katsuhito Ishii","version":18,"id":"107668","lastModified":"1301902218000","name":"Katsuhito Ishii","type":"Person","_key":"61159"} +{"label":"Anna Tsuchiya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/778\/4d4282d05e73d65385000778\/anna-tsuchiya-profile.jpg","version":19,"id":"131190","lastModified":"1301902421000","name":"Anna Tsuchiya","type":"Person","_key":"61160"} +{"label":"Takahiro Sato","version":23,"id":"132119","lastModified":"1301902840000","name":"Takahiro Sato","type":"Person","_key":"61161"} +{"label":"Maya Banno","version":21,"id":"132120","lastModified":"1301902864000","name":"Maya Banno","type":"Person","_key":"61162"} +{"label":"Satomi Tezuka","version":21,"id":"132121","lastModified":"1301902779000","name":"Satomi Tezuka","type":"Person","_key":"61163"} +{"label":"After the Rain","description":"A group of travelers is stranded in a small country inn when the river floods during heavy rains. As the bad weather continues, tensions rise amongst the travelers trapped at the inn. ","id":"15319","runtime":91,"imdbId":"tt0181960","version":112,"lastModified":"1301420973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2c\/4bc946be017a3c57fe01eb2c\/ame-agaru-mid.jpg","genre":"Drama","title":"After the Rain","releaseDate":940809600000,"language":"en","type":"Movie","_key":"61164"} +{"label":"Takashi Koizumi","version":19,"id":"78107","lastModified":"1301902023000","name":"Takashi Koizumi","type":"Person","_key":"61165"} +{"label":"I.O.U.S.A.","description":"With the country's debt growing out of control, Americans by and large are unaware of the looming financial crisis. This documentary examines several of the ways America can get its economy back on the right track. In addition to looking at the federal deficit and trade deficit, the film also closely explores the challenges of funding national entitlement programs such as Social Security, Medicare and Medicaid.","id":"15320","runtime":85,"imdbId":"tt0963807","version":121,"lastModified":"1302039228000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b35\/4bc946bf017a3c57fe01eb35\/i-o-u-s-a-mid.jpg","genre":"Documentary","title":"I.O.U.S.A.","releaseDate":1200700800000,"language":"en","type":"Movie","_key":"61166"} +{"label":"Patrick Creadon","version":19,"id":"116330","lastModified":"1301902504000","name":"Patrick Creadon","type":"Person","_key":"61167"} +{"label":"Robert Bixby","version":16,"id":"116344","lastModified":"1301902144000","name":"Robert Bixby","type":"Person","_key":"61168"} +{"label":"Warren Buffett","version":16,"id":"116345","lastModified":"1301902504000","name":"Warren Buffett","type":"Person","_key":"61169"} +{"label":"Douglas Durst","version":16,"id":"116346","lastModified":"1301901646000","name":"Douglas Durst","type":"Person","_key":"61170"} +{"label":"Alan Greenspan","version":16,"id":"116347","lastModified":"1301902504000","name":"Alan Greenspan","type":"Person","_key":"61171"} +{"label":"Twin Town","description":"Julian and Jeremy, two brothers known as the \"Lewis Twins\", prefer to spend their time on drugs and joyriding. When their father, Fatty Lewis, breaks his leg working for local bigwig Bryn Cartwright, they show up demanding compensation. Underestimating the vicious humour of the twins Bryn brusquely refuses to pay for the un-insured Fatty and unleashes a ferocious feud.","id":"15321","runtime":99,"imdbId":"tt0120394","version":106,"lastModified":"1301904915000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3a\/4bc946c2017a3c57fe01eb3a\/twin-town-mid.jpg","genre":"Comedy","title":"Twin Town","releaseDate":860716800000,"language":"en","type":"Movie","_key":"61172"} +{"label":"Llyr Ifans","version":15,"id":"147877","lastModified":"1301903084000","name":"Llyr Ifans","type":"Person","_key":"61173"} +{"label":"I.D.","description":"Four policemen go undercover and infiltrate a gang of football hooligans hoping to route out their leaders. For one of the four, the line between 'job' and 'yob' becomes more unclear as time passes . . . ","id":"15322","runtime":107,"imdbId":"tt0113375","version":204,"lastModified":"1301904946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b43\/4bc946c3017a3c57fe01eb43\/i-d-mid.jpg","genre":"Crime","title":"I.D.","releaseDate":799632000000,"language":"en","type":"Movie","_key":"61174"} +{"label":"Reece Dinsdale","version":22,"id":"81598","lastModified":"1301902504000","name":"Reece Dinsdale","type":"Person","_key":"61175"} +{"label":"Perry Fenwick","version":21,"id":"81600","lastModified":"1301901778000","name":"Perry Fenwick","type":"Person","_key":"61176"} +{"label":"Steal This Film II","description":"These are strange times indeed. While they continue to command so much attention in the mainstream media, the 'battles' between old and new modes of distribution, between the pirate and the institution of copyright, seem to many of us already lost and won. We know who the victors are. Why then say any more?","id":"15323","runtime":44,"imdbId":"tt1422758","homepage":"http:\/\/www.stealthisfilm.com\/Part2\/","version":88,"lastModified":"1301903874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4c\/4bc946c3017a3c57fe01eb4c\/steal-this-film-ii-mid.jpg","studio":"League of Noble Peers","genre":"Documentary","title":"Steal This Film II","releaseDate":1198800000000,"language":"en","type":"Movie","_key":"61177"} +{"label":"Steal This Film","description":"In 2006, a group of friends decided to make a film about filesharing that *we* would recognize. There have been a few documentaries by 'Old Media' crews who don't understand the net and see peer-to-peer organization as a threat to their livelihoods. They have no reason to represent the filesharing movement positively, and no capacity to represent it lucidly.","id":"15324","runtime":32,"imdbId":"tt1422757","homepage":"http:\/\/www.stealthisfilm.com\/","version":71,"lastModified":"1301904046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22d\/4bf6b3d7017a3c772b00022d\/steal-this-film-mid.jpg","studio":"League of Noble Peers","genre":"Documentary","title":"Steal This Film","releaseDate":1156118400000,"language":"en","type":"Movie","_key":"61178"} +{"label":"Rickard Falkvinge","version":16,"id":"96229","lastModified":"1301902996000","name":"Rickard Falkvinge","type":"Person","_key":"61179"} +{"label":"Gottfrid Svartholm","version":16,"id":"96230","lastModified":"1301902510000","name":"Gottfrid Svartholm","type":"Person","_key":"61180"} +{"label":"Fredrik Neij","version":16,"id":"96232","lastModified":"1301902996000","name":"Fredrik Neij","type":"Person","_key":"61181"} +{"label":"Jamie Thomas King","version":20,"id":"96231","lastModified":"1301902683000","name":"Jamie Thomas King","type":"Person","_key":"61182"} +{"label":"God Grew Tired of Us","description":"GOD GREW TIRED OF US explores the indomitable spirit of three \u201cLost Boys\u201d from the Sudan who leave their homeland, triumph over seemingly insurmountable adversities and move to America, where they build active and fulfilling new lives but remain deeply committed to helping the friends and family they have left behind. ","id":"15325","runtime":89,"imdbId":"tt0301555","homepage":"http:\/\/www.godgrewtiredofus.com\/","version":167,"lastModified":"1301905199000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b63\/4bc946c5017a3c57fe01eb63\/god-grew-tired-of-us-mid.jpg","studio":"National Geographic Films","genre":"Documentary","title":"God Grew Tired of Us","releaseDate":1157328000000,"language":"en","tagline":"The Story of Lost Boys of Sudan","type":"Movie","_key":"61183"} +{"label":"Christopher Dillon Quinn","version":17,"id":"78112","lastModified":"1301902144000","name":"Christopher Dillon Quinn","type":"Person","_key":"61184"} +{"label":"Tommy Walker","version":17,"id":"78113","lastModified":"1301902144000","name":"Tommy Walker","type":"Person","_key":"61185"} +{"label":"Ca ira mieux demain","description":"No overview found.","id":"15329","runtime":0,"imdbId":"tt0217168","version":133,"lastModified":"1300980124000","genre":"Comedy","title":"Ca ira mieux demain","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61186"} +{"label":"Ce que mes yeux ont vu","description":"Lucie, jeune \u00e9tudiante en histoire de l'art, enqu\u00eate sur les oeuvres du peintre Watteau. Elle est persuad\u00e9e que certaines de ses toiles cachent un sens encore jamais r\u00e9v\u00e9l\u00e9. Sa rencontre avec l'\u00e9nigmatique Vincent, muet de naissance, va bouleverser ses recherches, et la plonger au coeur d'une intrigue commenc\u00e9e il y a deux si\u00e8cles.","id":"15331","runtime":88,"imdbId":"tt0847487","version":105,"lastModified":"1301904817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afd\/4d866a217b9aa10d34001afd\/ce-que-mes-yeux-ont-vu-mid.jpg","title":"Ce que mes yeux ont vu","releaseDate":1196208000000,"language":"en","type":"Movie","_key":"61187"} +{"label":"Laurent de Bartillat","version":6,"id":"229566","lastModified":"1301904057000","name":"Laurent de Bartillat","type":"Person","_key":"61188"} +{"label":"Le Voyage aux Pyr\u00e9n\u00e9es","description":"No overview found.","id":"15333","runtime":102,"imdbId":"tt1160027","version":47,"lastModified":"1301906109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4d94aa047b9aa1199a0020f7\/le-voyage-aux-pyr-n-es-mid.jpg","studio":"Soudaine Compagnie","title":"Le Voyage aux Pyr\u00e9n\u00e9es","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"61189"} +{"label":"Par suite d'un arr\u00eat de travail...","description":"No overview found.","id":"15336","runtime":0,"imdbId":"tt1073671","version":37,"lastModified":"1301908307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f80\/4d624e227b9aa154cf005f80\/par-suite-d-un-arr-t-de-travail-mid.jpg","title":"Par suite d'un arr\u00eat de travail...","releaseDate":1214956800000,"language":"en","type":"Movie","_key":"61190"} +{"label":"Fr\u00e9d\u00e9ric Andrei","version":9,"id":"225891","lastModified":"1301904015000","name":"Fr\u00e9d\u00e9ric Andrei","type":"Person","_key":"61191"} +{"label":"Ace Ventura Jr: Pet Detective","description":"\"I will try to be normal\" 12-year-old Ace Ventura Jr. promises. Thats cool, except whats normal for him is finding missing mutts, kidnapped kitties or gone gators and creating hilarious chaos every step of the way.","id":"15338","runtime":93,"imdbId":"tt0844029","version":177,"lastModified":"1301904349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b90\/4bc946ca017a3c57fe01eb90\/ace-ventura-jr-pet-detective-mid.jpg","genre":"Comedy","title":"Ace Ventura Jr: Pet Detective","releaseDate":1236038400000,"language":"en","type":"Movie","_key":"61192"} +{"label":"Emma Lockhart","version":16,"id":"78114","lastModified":"1301901864000","name":"Emma Lockhart","type":"Person","_key":"61193"} +{"label":"Reed Alexander","version":16,"id":"78115","lastModified":"1301901608000","name":"Reed Alexander","type":"Person","_key":"61194"} +{"label":"William Haze","version":16,"id":"78116","lastModified":"1301902068000","name":"William Haze","type":"Person","_key":"61195"} +{"label":"Cullen Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/056\/4ca63a8f7b9aa17acd000056\/cullen-douglas-profile.jpg","version":18,"id":"78117","lastModified":"1301901857000","name":"Cullen Douglas","type":"Person","_key":"61196"} +{"label":"Born in 68","description":"Two young lovers change their lives drastically after the 1968 revolt, leading to choices that move them in different directions.","id":"15339","runtime":173,"imdbId":"tt1160015","version":111,"lastModified":"1301906348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/799\/4caa34537b9aa17acb000799\/nes-en-68-mid.jpg","studio":"Arte France","genre":"Drama","title":"Born in 68","releaseDate":1211328000000,"language":"en","tagline":"Nous nous aimerons jusqu'\u00e0 la mort (We'll love one another 'til death).","type":"Movie","_key":"61197"} +{"label":"Laetitia Casta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/296\/4c87c7675e73d66b5d000296\/laetitia-casta-profile.jpg","version":35,"birthday":"263689200000","id":"119499","lastModified":"1301901473000","name":"Laetitia Casta","type":"Person","_key":"61198"} +{"label":"L'Heure z\u00e9ro","description":"No overview found.","id":"15340","runtime":0,"imdbId":"tt0889606","version":486,"lastModified":"1302026456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e3\/4d6981507b9aa1362c0019e3\/l-heure-z-ro-mid.jpg","title":"L'Heure z\u00e9ro","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61199"} +{"label":"The Girl From Monaco","description":"No overview found.","id":"15342","runtime":95,"imdbId":"tt1139800","trailer":"http:\/\/www.youtube.com\/watch?v=bnQGv59WQgc","homepage":"http:\/\/www.lafilledemonaco-lefilm.com\/","version":245,"lastModified":"1301902610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb6\/4bc946ce017a3c57fe01ebb6\/la-fille-de-monaco-mid.jpg","studio":"Warner Bros. France","genre":"Comedy","title":"The Girl From Monaco","releaseDate":1219190400000,"language":"en","type":"Movie","_key":"61200"} +{"label":"Louise Bourgoin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13c\/4cef089e5e73d6625a00013c\/louise-bourgoin-profile.jpg","version":44,"id":"78216","lastModified":"1301904076000","name":"Louise Bourgoin","type":"Person","_key":"61201"} +{"label":"The Golden Boys","description":"Three retired sea captains living together in genteel squalor. They scheme to improve their fortunes by having one of them solicit a bride through an ad in a Boston newspaper. The loser of a coin toss must get married and take in the other two as boarders. But upon the arrival of the Nantucket woman selected from the applicants, the captains get cold feet.","id":"15346","runtime":97,"imdbId":"tt0882969","version":136,"lastModified":"1301903552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e3\/4d45b5555e73d65c840015e3\/the-golden-boys-mid.jpg","studio":"Roadside Attractions","genre":"Romance","title":"The Golden Boys","releaseDate":1239926400000,"language":"en","type":"Movie","_key":"61202"} +{"label":"Daniel Adams","version":16,"id":"78120","lastModified":"1301901779000","name":"Daniel Adams","type":"Person","_key":"61203"} +{"label":"Born Free","description":"Born Free (1966) is an Open Road Films Ltd.\/Columbia Pictures feature film starring Virginia McKenna and Bill Travers as Joy and George Adamson, a real-life couple who raised an orphaned lion cub to adulthood, and released her into the wilds of Kenya.","id":"15347","runtime":95,"imdbId":"tt0060182","trailer":"http:\/\/www.youtube.com\/watch?v=1027","version":176,"lastModified":"1301903410000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd2\/4bc946d7017a3c57fe01ebd2\/born-free-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"Born Free","releaseDate":-111369600000,"language":"en","type":"Movie","_key":"61204"} +{"label":"James Hill","version":27,"id":"126462","lastModified":"1302117928000","name":"James Hill","type":"Person","_key":"61205"} +{"label":"Peter Lukoye","version":17,"id":"78161","lastModified":"1301902068000","name":"Peter Lukoye","type":"Person","_key":"61206"} +{"label":"Omar Chambati","version":17,"id":"78162","lastModified":"1301902243000","name":"Omar Chambati","type":"Person","_key":"61207"} +{"label":"Bill Godden","version":17,"id":"78163","lastModified":"1301902243000","name":"Bill Godden","type":"Person","_key":"61208"} +{"label":"Robert S. Young","version":18,"id":"78164","lastModified":"1301902243000","name":"Robert S. Young","type":"Person","_key":"61209"} +{"label":"Bryan Epsom","version":17,"id":"78165","lastModified":"1301902243000","name":"Bryan Epsom","type":"Person","_key":"61210"} +{"label":"Geoffrey Best","version":17,"id":"78166","lastModified":"1301902243000","name":"Geoffrey Best","type":"Person","_key":"61211"} +{"label":"Robert Cheetham","version":17,"id":"78167","lastModified":"1301902243000","name":"Robert Cheetham","type":"Person","_key":"61212"} +{"label":"Surya Patel","version":17,"id":"78168","lastModified":"1301902243000","name":"Surya Patel","type":"Person","_key":"61213"} +{"label":"Soit je meurs, soit je vais mieux","description":"Apr\u00e8s que son p\u00e8re eut quitt\u00e9 le foyer pour une autre femme, Martial, 16 ans, doit d\u00e9m\u00e9nager avec sa m\u00e8re, Sabine, pour un appartement plus modeste. Nouveau quartier, nouveau lyc\u00e9e, Martial a du mal \u00e0 s'int\u00e9grer. Sa m\u00e8re propose de l'aider, mais maladroite et fantasque, elle ne fait qu'envenimer la situation...","id":"15352","runtime":113,"imdbId":"tt1266109","version":43,"lastModified":"1301905626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bec\/4bc946da017a3c57fe01ebec\/soit-je-meurs-soit-je-vais-mieux-mid.jpg","studio":"Bac Films","genre":"Drama","title":"Soit je meurs, soit je vais mieux","releaseDate":1216166400000,"language":"en","type":"Movie","_key":"61214"} +{"label":"Laurence Ferreira Barbosa","version":18,"id":"78121","lastModified":"1301902068000","name":"Laurence Ferreira Barbosa","type":"Person","_key":"61215"} +{"label":"Fran\u00e7ois Civil","version":17,"id":"78124","lastModified":"1301901474000","name":"Fran\u00e7ois Civil","type":"Person","_key":"61216"} +{"label":"Marine Barbosa","version":17,"id":"78125","lastModified":"1301904130000","name":"Marine Barbosa","type":"Person","_key":"61217"} +{"label":"Carine Barbosa","version":16,"id":"78126","lastModified":"1301902243000","name":"Carine Barbosa","type":"Person","_key":"61218"} +{"label":"Thomas Cerisola","version":16,"id":"78127","lastModified":"1301901864000","name":"Thomas Cerisola","type":"Person","_key":"61219"} +{"label":"Val\u00e9rie Lang","version":16,"id":"78128","lastModified":"1301901864000","name":"Val\u00e9rie Lang","type":"Person","_key":"61220"} +{"label":"Alice Aniel","version":17,"id":"78129","lastModified":"1301901864000","name":"Alice Aniel","type":"Person","_key":"61221"} +{"label":"Une chanson dans la t\u00eate","description":"Dans les ann\u00e9es 70 Bruno Caprice a connu un succ\u00e8s \u00e9ph\u00e9m\u00e8re avec \"Quand tu t'en vas\", son premier et unique 45 tours. Aujourd'hui oubli\u00e9, il gagne sa vie comme r\u00e9ceptionniste dans un grand h\u00f4tel parisien. Mais un coup de fil inattendu va changer le cours de sa vie...","id":"15355","runtime":98,"imdbId":"tt1056434","version":50,"lastModified":"1301904669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfe\/4bc946dc017a3c57fe01ebfe\/une-chanson-dans-la-tete-mid.jpg","studio":"Haut et Court","genre":"Comedy","title":"Une chanson dans la t\u00eate","releaseDate":1218585600000,"language":"en","type":"Movie","_key":"61222"} +{"label":"Hany Tamba","version":17,"id":"78130","lastModified":"1301902068000","name":"Hany Tamba","type":"Person","_key":"61223"} +{"label":"Pierrette Katrib","version":16,"id":"78132","lastModified":"1301901429000","name":"Pierrette Katrib","type":"Person","_key":"61224"} +{"label":"Gabriel Yammine","version":16,"id":"78133","lastModified":"1301902243000","name":"Gabriel Yammine","type":"Person","_key":"61225"} +{"label":"Julia Kassar","version":19,"id":"78134","lastModified":"1301902243000","name":"Julia Kassar","type":"Person","_key":"61226"} +{"label":"The Girl Next Door","description":"In a quiet suburban town in the summer of 1958, two recently orphaned sisters are placed in the care of their mentally unstable Aunt Ruth. But Ruth's depraved sense of discipline will soon lead to unspeakable acts of abuse and torture that involve her young sons, the neighborhood children, and one 12-year-old boy whose life will be changed forever.","id":"15356","runtime":91,"imdbId":"tt0830558","homepage":"http:\/\/www.thegirlnextdoorfilm.com\/","version":280,"lastModified":"1301904084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c07\/4bc946dd017a3c57fe01ec07\/the-girl-next-door-mid.jpg","studio":"Starz Home Entertainment","genre":"Crime","title":"The Girl Next Door","releaseDate":1191369600000,"language":"en","type":"Movie","_key":"61227"} +{"label":"Gregory Wilson","version":17,"id":"78135","lastModified":"1301901719000","name":"Gregory Wilson","type":"Person","_key":"61228"} +{"label":"Blythe Auffarth","version":17,"id":"78139","lastModified":"1301902068000","name":"Blythe Auffarth","type":"Person","_key":"61229"} +{"label":"Daniel Manche","version":18,"id":"78140","lastModified":"1301901930000","name":"Daniel Manche","type":"Person","_key":"61230"} +{"label":"Grant Show","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f0\/4ceea1085e73d653150000f0\/grant-show-profile.jpg","version":20,"id":"78141","lastModified":"1301902047000","name":"Grant Show","type":"Person","_key":"61231"} +{"label":"Graham Patrick Martin","version":17,"id":"78142","lastModified":"1301902068000","name":"Graham Patrick Martin","type":"Person","_key":"61232"} +{"label":"Benjamin Ross Kaplan","version":17,"id":"78143","lastModified":"1301902068000","name":"Benjamin Ross Kaplan","type":"Person","_key":"61233"} +{"label":"Austin Williams","version":18,"id":"78144","lastModified":"1301901943000","name":"Austin Williams","type":"Person","_key":"61234"} +{"label":"Gabrielle Howarth","version":17,"id":"78145","lastModified":"1301902068000","name":"Gabrielle Howarth","type":"Person","_key":"61235"} +{"label":"District 13: Ultimatum","description":"Damien and Leito return to District 13 on a mission to bring peace to the troubled sector that is controlled by five different gang bosses, before the city's secret services take drastic measures to solve the problem. ","id":"15357","runtime":98,"imdbId":"tt1247640","trailer":"http:\/\/www.youtube.com\/watch?v=jE9Mab6gJnE","homepage":"http:\/\/www.b13ultimatum-lefilm.com\/","version":362,"lastModified":"1301901012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2f\/4bc946e4017a3c57fe01ec2f\/banlieue-13-ultimatum-mid.jpg","studio":"EuropaCorp Distribution","genre":"Action","title":"District 13: Ultimatum","releaseDate":1234915200000,"language":"en","type":"Movie","_key":"61236"} +{"label":"Patrick Alessandrin","version":26,"id":"78146","lastModified":"1301902141000","name":"Patrick Alessandrin","type":"Person","_key":"61237"} +{"label":"Elodie Yung","version":22,"id":"78147","lastModified":"1301901776000","name":"Elodie Yung","type":"Person","_key":"61238"} +{"label":"Wonder Woman","description":"On the mystical island of Themyscira, a proud and fierce warrior race of Amazons have raised a daughter of untold beauty, grace and strength: Princess Diana. When an Army fighter pilot, Steve Trevor, crash-lands on the island, the rebellious and headstrong Diana defies Amazonian law by accompanying Trevor back to civilization.","id":"15359","runtime":74,"imdbId":"tt1186373","trailer":"http:\/\/www.youtube.com\/watch?v=1026","homepage":"http:\/\/warnervideo.com\/wonderwomanmovie\/","version":197,"lastModified":"1302071631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c45\/4bc946e6017a3c57fe01ec45\/wonder-woman-mid.jpg","studio":"Warner Bros. Animation","genre":"Action","title":"Wonder Woman","releaseDate":1236038400000,"language":"en","type":"Movie","_key":"61239"} +{"label":"Skye Arens","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f30\/4d2822ad7b9aa134e0001f30\/skye-arens-profile.jpg","version":23,"id":"113903","lastModified":"1302071629000","name":"Skye Arens","type":"Person","_key":"61240"} +{"label":"Julianne Grossman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e53\/4d2823127b9aa134cf001e53\/julianne-grossman-profile.jpg","version":22,"id":"113904","lastModified":"1302071629000","name":"Julianne Grossman","type":"Person","_key":"61241"} +{"label":"Jason Miller","version":22,"id":"124607","lastModified":"1302071631000","name":"Jason Miller","type":"Person","_key":"61242"} +{"label":"The Night Stalker","description":"Wisecracking reporter Carl Kolchak investigates a string of gruesome murders in Las Vegas. It seems that each victim has been bitten in the neck and drained of all their blood. Kolchak is sure that it is a vampire. He's hot on the trail, but nobody believes him. His editor thinks he's nuts and the police think he's a hindrance in the investigation, so Kolchak takes matters into his own hand.","id":"15360","runtime":74,"imdbId":"tt0067490","version":112,"lastModified":"1301907255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c58\/4bc946e7017a3c57fe01ec58\/the-night-stalker-mid.jpg","studio":"American Broadcasting Company (ABC)","genre":"Horror","title":"The Night Stalker","releaseDate":63936000000,"language":"en","type":"Movie","_key":"61243"} +{"label":"John Llewellyn Moxey","version":22,"id":"107331","lastModified":"1301902966000","name":"John Llewellyn Moxey","type":"Person","_key":"61244"} +{"label":"Larry Linville","version":19,"id":"55431","lastModified":"1301902068000","name":"Larry Linville","type":"Person","_key":"61245"} +{"label":"Jordan Rhodes","version":18,"id":"78385","lastModified":"1301902243000","name":"Jordan Rhodes","type":"Person","_key":"61246"} +{"label":"Barry Atwater","version":17,"id":"16125","lastModified":"1301901608000","name":"Barry Atwater","type":"Person","_key":"61247"} +{"label":"Edward Faulkner","version":20,"id":"78386","lastModified":"1301901864000","name":"Edward Faulkner","type":"Person","_key":"61248"} +{"label":"Buddy Joe Hooker","version":18,"id":"8432","lastModified":"1301901551000","name":"Buddy Joe Hooker","type":"Person","_key":"61249"} +{"label":"Shanghai Kiss","description":"Liam Liu unwittingly gets involved with a high school girl. He suddenly has to go to China after learning from his father that he has inherited his grandmother's home in Shanghai. He's not very appreciative of his Chinese roots and at first only wants to sell the house and get back to the U.S. as fast as possible. He gets a taste of the Chinese culture and ends up having some big decisions to make","id":"15361","runtime":106,"imdbId":"tt0469184","trailer":"http:\/\/www.youtube.com\/watch?v=7fFS6u5Om3s","version":218,"lastModified":"1301903074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c61\/4bc946eb017a3c57fe01ec61\/shanghai-kiss-mid.jpg","studio":"Bigfoot Entertainment","genre":"Comedy","title":"Shanghai Kiss","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61250"} +{"label":"Kathleen Lancaster","version":16,"id":"141514","lastModified":"1301902855000","name":"Kathleen Lancaster","type":"Person","_key":"61251"} +{"label":"Spencer Redford","version":16,"id":"141515","lastModified":"1301902767000","name":"Spencer Redford","type":"Person","_key":"61252"} +{"label":"Steve Connell","version":19,"id":"141516","lastModified":"1301902846000","name":"Steve Connell","type":"Person","_key":"61253"} +{"label":"Brian Gardner","version":16,"id":"141517","lastModified":"1301902846000","name":"Brian Gardner","type":"Person","_key":"61254"} +{"label":"Summer Altice","version":16,"id":"141518","lastModified":"1301902767000","name":"Summer Altice","type":"Person","_key":"61255"} +{"label":"Oliver Yan","version":16,"id":"141519","lastModified":"1301902732000","name":"Oliver Yan","type":"Person","_key":"61256"} +{"label":"Chen Li","version":20,"id":"130984","lastModified":"1301902582000","name":"Chen Li","type":"Person","_key":"61257"} +{"label":"Kern Konwiser","version":17,"id":"141511","lastModified":"1301903033000","name":"Kern Konwiser","type":"Person","_key":"61258"} +{"label":"David Ren","version":17,"id":"141512","lastModified":"1301902998000","name":"David Ren","type":"Person","_key":"61259"} +{"label":"Mesrine: Public Enemy No. 1","description":"The story of Jacques Mesrine, France's public enemy No. 1 during the 1970s. After nearly two decades of legendary criminal feats -- from multiple bank robberies and to prison breaks -- Mesrine was gunned down by the French police in Paris.","id":"15362","runtime":133,"imdbId":"tt0411272","version":128,"lastModified":"1301906528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7e\/4bc946ee017a3c57fe01ec7e\/mesrine-l-ennemi-public-no-1-mid.jpg","studio":"La Petite Reine","genre":"Crime","title":"Mesrine: Public Enemy No. 1","releaseDate":1227052800000,"language":"en","type":"Movie","_key":"61260"} +{"label":"Something New","description":"Kenya McQueen, a corporate lawyer finds love in the most unexpected place when she agrees to go on a blind date with Brian Kelly, a sexy and free-spirited landscaper.","id":"15363","runtime":99,"imdbId":"tt0437777","version":429,"lastModified":"1301904282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c94\/4bc946f0017a3c57fe01ec94\/something-new-mid.jpg","studio":"Gramercy Pictures","genre":"Comedy","title":"Something New","releaseDate":1138492800000,"language":"en","type":"Movie","_key":"61261"} +{"label":"Fuzzy Fantabulous","version":19,"id":"82947","lastModified":"1301902243000","name":"Fuzzy Fantabulous","type":"Person","_key":"61262"} +{"label":"Marcus Brown","version":19,"id":"82950","lastModified":"1301902464000","name":"Marcus Brown","type":"Person","_key":"61263"} +{"label":"Witless Protection","description":"The story centers on a small-town sheriff who witnesses what he believes is a kidnapping and rushes to rescue a woman. The kidnappers turn out to be FBI agents assigned to protect her and deliver her to a big Enron-type corruption trial in Chicago but are later found to be on the take and are villains who are bent on killing her","id":"15365","runtime":97,"imdbId":"tt1001562","version":202,"lastModified":"1301902581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e6\/4d6c71367b9aa136360044e6\/witless-protection-mid.jpg","studio":"Parallel Films","genre":"Action","title":"Witless Protection","releaseDate":1203638400000,"language":"en","type":"Movie","_key":"61264"} +{"label":"American Gun","description":"Seemingly disparate portraits of people -- among them a single mother, a high school principal, and an ace student -- Distinctly American -- all affected by the proliferation of guns in American society.","id":"15366","runtime":95,"imdbId":"tt0416471","version":120,"lastModified":"1301904513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cae\/4bc946f2017a3c57fe01ecae\/american-gun-mid.jpg","genre":"Drama","title":"American Gun","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"61265"} +{"label":"2012: Science or Superstition","description":"December 21, 2012: the end date of the sophisticated Long Count Calendar created by the ancient Maya in central America. Countless books and websites, magazine articles and newspaper headlines debate its meaning, with enthusiasts in two camps: those forecasting apocalypse the end of time and those who see a coming renewal, a rebirth of consciousness.","id":"15368","runtime":78,"imdbId":"tt1444675","homepage":"http:\/\/2012dvd.com","version":82,"lastModified":"1301906057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbb\/4bc946f4017a3c57fe01ecbb\/2012-science-or-superstition-mid.jpg","genre":"Documentary","title":"2012: Science or Superstition","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"61266"} +{"label":"The Cat Returns","description":"Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.","id":"15370","runtime":75,"imdbId":"tt0347618","version":135,"lastModified":"1301902436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdc\/4bc946f8017a3c57fe01ecdc\/neko-no-ongaeshi-mid.jpg","studio":"Studio Ghibli","genre":"Adventure","title":"The Cat Returns","releaseDate":1051833600000,"language":"en","tagline":"Journey to another world.","type":"Movie","_key":"61267"} +{"label":"Hiroyuki Morita","version":24,"id":"78173","lastModified":"1301901994000","name":"Hiroyuki Morita","type":"Person","_key":"61268"} +{"label":"Chizuru Ikewaki","version":31,"id":"118651","lastModified":"1301902224000","name":"Chizuru Ikewaki","type":"Person","_key":"61269"} +{"label":"Yoshihiko Hakamada","version":25,"id":"96569","lastModified":"1301902910000","name":"Yoshihiko Hakamada","type":"Person","_key":"61270"} +{"label":"Lupin the Third: The Castle of Cagliostro","description":"After a successful robbery leaves famed theif Lupin III and his partner Jigen with nothing but a large amount of fake money, the so called \"Goat Bills\", he decides to track down the counterfeiter responsible - and steal any other treasures he may find in the Castle of Cagliostro, including the 'damsel in distress' he finds imprisoned there.","id":"15371","runtime":110,"imdbId":"tt0079833","version":85,"lastModified":"1301902154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d07\/4bc946fe017a3c57fe01ed07\/rupan-sansei-kariosutoro-no-shiro-mid.jpg","studio":"Tokyo Movie Shinsha","genre":"Adventure","title":"Lupin the Third: The Castle of Cagliostro","releaseDate":283996800000,"language":"en","type":"Movie","_key":"61271"} +{"label":"Shigetsugu Yoshida","version":19,"id":"78371","lastModified":"1301901948000","name":"Shigetsugu Yoshida","type":"Person","_key":"61272"} +{"label":"Yasuo Yamada","version":17,"id":"109746","lastModified":"1301902058000","name":"Yasuo Yamada","type":"Person","_key":"61273"} +{"label":"Eiko Masuyama","version":17,"id":"109747","lastModified":"1301902431000","name":"Eiko Masuyama","type":"Person","_key":"61274"} +{"label":"Kiyoshi Kobayashi","version":22,"id":"82508","lastModified":"1301901608000","name":"Kiyoshi Kobayashi","type":"Person","_key":"61275"} +{"label":"Makio Inoue","version":16,"id":"54684","lastModified":"1301901533000","name":"Makio Inoue","type":"Person","_key":"61276"} +{"label":"Jimmy Carr: Comedian","description":"Recorded live at London's Bloomsbury theatre, the posh-suited gagster unleashes his rapid-fire wit upon his audience, with jokes that are just too rude for TV.","id":"15372","runtime":150,"imdbId":"tt1172061","version":62,"lastModified":"1301905589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d16\/4bc946ff017a3c57fe01ed16\/jimmy-carr-comedian-mid.jpg","genre":"Comedy","title":"Jimmy Carr: Comedian","releaseDate":1194220800000,"language":"en","type":"Movie","_key":"61277"} +{"label":"Role Models","description":"Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.","id":"15373","runtime":99,"imdbId":"tt0430922","trailer":"http:\/\/www.youtube.com\/watch?v=wtFESEqa9fA","version":340,"lastModified":"1302085738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/369\/4d82c40e7b9aa13b1c000369\/role-models-mid.jpg","studio":"Internationale Filmproduktion Stella-del-S\u00fcd","genre":"Comedy","title":"Role Models","releaseDate":1226016000000,"language":"en","tagline":"They're about to get more than they plea-bargained for.","type":"Movie","_key":"61278"} +{"label":"Ken Jeong","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3a4\/4c1fac4e5e73d606d00003a4\/ken-jeong-profile.jpg","version":99,"id":"83586","lastModified":"1302085737000","name":"Ken Jeong","type":"Person","_key":"61279"} +{"label":"A Boy Named Charlie Brown","description":"Poor Charlie Brown. He can't fly a kite, and he always loses in baseball. Having his faults projected onto a screen by Lucy doesn't help him much either. Against the sage advice and taunting of the girls in his class, he volunteers for the class spelling bee...and wins!","id":"15374","runtime":86,"imdbId":"tt0064107","version":192,"lastModified":"1301905122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d60\/4bc94709017a3c57fe01ed60\/a-boy-named-charlie-brown-mid.jpg","studio":"Cinema Center Films","genre":"Animation","title":"A Boy Named Charlie Brown","releaseDate":-2419200000,"language":"en","type":"Movie","_key":"61280"} +{"label":"Pamelyn Ferdin","version":18,"id":"16059","lastModified":"1301901559000","name":"Pamelyn Ferdin","type":"Person","_key":"61281"} +{"label":"Glenn Gilger","version":18,"id":"111648","lastModified":"1301902655000","name":"Glenn Gilger","type":"Person","_key":"61282"} +{"label":"Andy Pforsich","version":18,"id":"111649","lastModified":"1301902655000","name":"Andy Pforsich","type":"Person","_key":"61283"} +{"label":"Murder, Inc.","description":"Chronicles the rise and fall of the organised crime syndicate known as Murder, Incorporated, focusing on powerful boss Lepke and violent hit man Reles.","id":"15375","runtime":103,"imdbId":"tt0054102","version":105,"lastModified":"1301905664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d69\/4bc94709017a3c57fe01ed69\/murder-inc-mid.jpg","studio":"Princess Production Corporation","genre":"Action","title":"Murder, Inc.","releaseDate":-300153600000,"language":"en","type":"Movie","_key":"61284"} +{"label":"May Britt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/134\/4c24f51e7b9aa14469000134\/may-britt-profile.jpg","version":20,"id":"78181","lastModified":"1301901808000","name":"May Britt","type":"Person","_key":"61285"} +{"label":"Henry Morgan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/203\/4c51bd4e7b9aa13d4d000203\/henry-morgan-profile.jpg","version":17,"id":"78182","lastModified":"1301902057000","name":"Henry Morgan","type":"Person","_key":"61286"} +{"label":"David J. Stewart","version":20,"id":"126900","lastModified":"1301902987000","name":"David J. Stewart","type":"Person","_key":"61287"} +{"label":"Sarah Vaughan","version":21,"id":"126901","lastModified":"1301903006000","name":"Sarah Vaughan","type":"Person","_key":"61288"} +{"label":"Morey Amsterdam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/151\/4c51854a7b9aa13d4b000151\/morey-amsterdam-profile.jpg","version":22,"id":"105637","lastModified":"1301902757000","name":"Morey Amsterdam","type":"Person","_key":"61289"} +{"label":"Eli Mintz","version":21,"id":"126902","lastModified":"1301902529000","name":"Eli Mintz","type":"Person","_key":"61290"} +{"label":"Joseph Bernard","version":20,"id":"126903","lastModified":"1301902490000","name":"Joseph Bernard","type":"Person","_key":"61291"} +{"label":"Warren Finnerty","version":21,"id":"98204","lastModified":"1301902439000","name":"Warren Finnerty","type":"Person","_key":"61292"} +{"label":"Helen Waters","version":21,"id":"126904","lastModified":"1301902532000","name":"Helen Waters","type":"Person","_key":"61293"} +{"label":"Leon B. Stevens","version":20,"id":"126905","lastModified":"1301902217000","name":"Leon B. Stevens","type":"Person","_key":"61294"} +{"label":"Howard Smith","version":23,"id":"119381","lastModified":"1301902803000","name":"Howard Smith","type":"Person","_key":"61295"} +{"label":"Toute la m\u00e9moire du monde","description":"Toute la m\u00e9moire du monde is a documentary about the Biblioth\u00e8que Nationale in Paris. It presents the building, with its processes of cataloguing and preserving all sorts of printed material, as both a monument of cultural memory and as a monstrous, alien being.","id":"15377","runtime":21,"imdbId":"tt0049869","version":30,"lastModified":"1301904995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d72\/4bc9470a017a3c57fe01ed72\/toute-la-memoire-du-monde-mid.jpg","studio":"Films de la Pleiade","genre":"Documentary","title":"Toute la m\u00e9moire du monde","releaseDate":-441849600000,"language":"en","type":"Movie","_key":"61296"} +{"label":"The Grand","description":"The Grand is in the tradition of improvisational comedies like Best In Show and This Is Spinal Tap. The story is set in the world of professional poker and follows six players who reach the final table of the world\u2019s second most famous high stakes tournament, the Grand Championship of Poker.","id":"15378","runtime":104,"imdbId":"tt0427998","version":184,"lastModified":"1302078640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7b\/4bc9470e017a3c57fe01ed7b\/the-grand-mid.jpg","studio":"Insomnia Media Group","genre":"Comedy","title":"The Grand","releaseDate":1181174400000,"language":"en","type":"Movie","_key":"61297"} +{"label":"Zak Penn","version":81,"id":"11011","lastModified":"1302078639000","name":"Zak Penn","type":"Person","_key":"61298"} +{"label":"Missing in Action","description":"American servicemen are still being held captive in Vietnam and it's up to one man to bring them home in this blistering, fast-paced action\/adventure starring martial arts superstar Chuck Norris.Following a daring escape from a Vietnamese POW camp, Special Forces Colonel James Braddock (Norris) is on a mission to locate and save remaining MIAs.","id":"15379","runtime":101,"imdbId":"tt0087727","version":162,"lastModified":"1301902549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d84\/4bc9470f017a3c57fe01ed84\/missing-in-action-mid.jpg","studio":"Cannon Group","genre":"Action","title":"Missing in Action","releaseDate":469411200000,"language":"en","tagline":"The war's not over until the last man comes home.","type":"Movie","_key":"61299"} +{"label":"David Tress","version":20,"id":"78183","lastModified":"1301902365000","name":"David Tress","type":"Person","_key":"61300"} +{"label":"Lenore Kasdorf","version":19,"id":"78184","lastModified":"1301902151000","name":"Lenore Kasdorf","type":"Person","_key":"61301"} +{"label":"Ernie Ortega","version":17,"id":"136420","lastModified":"1301902852000","name":"Ernie Ortega","type":"Person","_key":"61302"} +{"label":"Joseph Carberry","version":22,"id":"90339","lastModified":"1301903031000","name":"Joseph Carberry","type":"Person","_key":"61303"} +{"label":"Avi Kleinberger","version":26,"id":"72546","lastModified":"1301902360000","name":"Avi Kleinberger","type":"Person","_key":"61304"} +{"label":"Willie Williams","version":18,"id":"136421","lastModified":"1301903050000","name":"Willie Williams","type":"Person","_key":"61305"} +{"label":"Ric Segreto","version":18,"id":"136422","lastModified":"1301903001000","name":"Ric Segreto","type":"Person","_key":"61306"} +{"label":"Bella Flores","version":17,"id":"136423","lastModified":"1301902893000","name":"Bella Flores","type":"Person","_key":"61307"} +{"label":"Gil Arceo","version":17,"id":"136424","lastModified":"1301902898000","name":"Gil Arceo","type":"Person","_key":"61308"} +{"label":"Roger Dantes","version":18,"id":"136425","lastModified":"1301902996000","name":"Roger Dantes","type":"Person","_key":"61309"} +{"label":"Weapons","description":"Weapons presents a series of brutal, seemingly random youth-related killings over the course of a weekend in a typical small town in America, and tragically reveals how they are all interrelated.","id":"15380","runtime":82,"imdbId":"tt0497470","version":274,"lastModified":"1301906958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d92\/4bc94711017a3c57fe01ed92\/weapons-mid.jpg","studio":"Pantry Films","genre":"Crime","title":"Weapons","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"61310"} +{"label":"Adam Bhala Lough","version":16,"id":"93019","lastModified":"1301902888000","name":"Adam Bhala Lough","type":"Person","_key":"61311"} +{"label":"Charlie & me","description":"When her beloved grandfather Charlie suddenly falls ill, twelve year-old Casey finds herself making some life or death decisions - and learning to live with the consequences.","id":"15381","runtime":0,"imdbId":"tt1118040","version":168,"lastModified":"1301906787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d97\/4bc94711017a3c57fe01ed97\/charlie-me-mid.jpg","genre":"Drama","title":"Charlie & me","releaseDate":1199491200000,"language":"en","type":"Movie","_key":"61312"} +{"label":"Tom Bosley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ac\/4cbe89767b9aa138d70017ac\/tom-bosley-profile.jpg","version":32,"birthday":"-1333414800000","id":"41217","birthplace":"Chicago, Illinois, USA ","lastModified":"1301901253000","name":"Tom Bosley","type":"Person","_key":"61313"} +{"label":"Crin blanc: Le cheval sauvage","description":"In the south of France, in a vast plain region called the Camargue, lives White Mane, a magnificent stallion and the leader of a herd of wild horses too proud to let themselves be broken by humans. Only Folco, a young fisherman, manages to tame him. A strong friendship grows between the boy and the horse, as the two go looking for the freedom that the world of men won\u2019t allow them.","id":"15382","runtime":47,"imdbId":"tt0044518","version":45,"lastModified":"1301903599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da0\/4bc94711017a3c57fe01eda0\/crin-blanc-le-cheval-sauvage-mid.jpg","studio":"Films Montsouris","genre":"Drama","title":"Crin blanc: Le cheval sauvage","releaseDate":-506044800000,"language":"en","type":"Movie","_key":"61314"} +{"label":"Alain Emery","version":17,"id":"78187","lastModified":"1301901673000","name":"Alain Emery","type":"Person","_key":"61315"} +{"label":"Army of Shadows","description":"Atmospheric and gripping, Army of Shadows is Jean-Pierre Melville\u2019s masterpiece about the French Resistance underground fighters who must grapple with their own brand of honor in their battle against Hitler\u2019s regime.","id":"15383","runtime":145,"imdbId":"tt0064040","trailer":"http:\/\/www.youtube.com\/watch?v=on38oTESbHU","version":154,"lastModified":"1302059162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dad\/4bc94713017a3c57fe01edad\/l-armee-des-ombres-mid.jpg","studio":"Les Films Corona","genre":"Drama","title":"Army of Shadows","releaseDate":-9590400000,"language":"en","type":"Movie","_key":"61316"} +{"label":"Red Cliff II","description":"In 208 A.D., in the final days of the Han Dynasty, shrewd Prime Minster Cao convinced the fickle Emperor Han the only way to unite all of China was to declare war on the kingdoms of Xu in the west and East Wu in the south. Thus began a military campaign of unprecedented scale. Left with no other hope for survival, the kingdoms of Xu and East Wu formed an unlikely alliance.","id":"15384","runtime":136,"imdbId":"tt1326972","trailer":"http:\/\/www.youtube.com\/watch?v=1083","version":116,"lastModified":"1301902293000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc3\/4bc94715017a3c57fe01edc3\/chi-bi-xia-jue-zhan-tian-xia-mid.jpg","studio":"Beijing Film Studio","genre":"Action","title":"Red Cliff II","releaseDate":1231286400000,"language":"en","type":"Movie","_key":"61317"} +{"label":"Bony a klid","description":"Hlavn\u00ed postavou p\u0159\u00edb\u011bhu je mlad\u00fd automechanik Martin Holec, kter\u00fd p\u0159ijede z Mlad\u00e9 Boleslavi do Prahy, aby tu sehnal marky, za kter\u00e9 chce koupit pro m\u00edstn\u00ed diskot\u00e9ku video. Nech\u00e1 se v\u0161ak p\u0159ekupn\u00edky nap\u00e1lit fale\u0161n\u00fdmi bankovkami. Aby \u0161kodu, kterou sv\u00fdm kamar\u00e1d\u016fm zp\u016fsobil nahradil, vr\u00e1t\u00ed se do Prahy a za\u010dne p\u00e1trat po Richardovi, kter\u00fd mu fale\u0161n\u00e9 pen\u00edze prodal.","id":"15386","runtime":90,"imdbId":"tt0092687","version":33,"lastModified":"1300980136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcd\/4bc94716017a3c57fe01edcd\/bony-a-klid-mid.jpg","title":"Bony a klid","releaseDate":536457600000,"language":"en","type":"Movie","_key":"61318"} +{"label":"Pelisky","description":"P\u0159\u00edb\u011bhy jedn\u00e9 historick\u00e9 generace. D\u011bj je zasazen do konce \u0161edes\u00e1t\u00fdch let - podzim 67 a\u017e l\u00e9to 68 s kr\u00e1tk\u00fdm epilogem p\u0159esahuj\u00edc\u00edm do let sedmdes\u00e1t\u00fdch. Pra\u017esk\u00e1 vilov\u00e1 \u010dtvr\u0165 Hanspaulka, jemn\u00e1 poetika a humorn\u00e1 nads\u00e1zka jsou charakteristick\u00e9 pro mozaikov\u00e9 vypr\u00e1v\u011bn\u00ed paraleln\u00edch \u017eivotn\u00edch osud\u016f t\u0159\u00ed generac\u00ed mu\u017e\u016f a \u017een ve zvl\u00e1\u0161tn\u00edm obdob\u00ed na\u0161ich d\u011bjin.","id":"15387","runtime":115,"imdbId":"tt0167331","version":49,"lastModified":"1301907385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd6\/4bc94716017a3c57fe01edd6\/pelisky-mid.jpg","title":"Pelisky","releaseDate":915148800000,"language":"en","type":"Movie","_key":"61319"} +{"label":"Cerni baroni","description":"Komedie v\u00e1s p\u0159esv\u011bd\u010d\u00ed o tom, \u017ee i na chmurn\u00e9 str\u00e1nky na\u0161\u00ed historie je mo\u017en\u00e9 se d\u00edvat s nadhledem a humorem. \u010co bolo, to bolo... Major Terazky vede sv\u016fj \u0161ik p\u00e9t\u00e9p\u00e1k\u016f od pr\u016f\u0161vihu k pr\u016f\u0161vihu vst\u0159\u00edc sv\u011btl\u00fdm z\u00edt\u0159k\u016fm. \u010cesk\u00e1 filmov\u00e1 komedie podle rom\u00e1nu Miloslava \u0160vandrl\u00edka.","id":"15388","runtime":99,"imdbId":"tt0103934","version":65,"lastModified":"1301904796000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddf\/4bc94717017a3c57fe01eddf\/cerni-baroni-mid.jpg","genre":"Comedy","title":"Cerni baroni","releaseDate":707616000000,"language":"en","type":"Movie","_key":"61320"} +{"label":"Zdenek Sirov\u00fd","version":23,"id":"145049","lastModified":"1301901636000","name":"Zdenek Sirov\u00fd","type":"Person","_key":"61321"} +{"label":"Bronislav Poloczek","version":16,"id":"213452","lastModified":"1301903137000","name":"Bronislav Poloczek","type":"Person","_key":"61322"} +{"label":"Alois \u0160vehl\u00edk","version":16,"id":"213453","lastModified":"1301903135000","name":"Alois \u0160vehl\u00edk","type":"Person","_key":"61323"} +{"label":"Ji\u0159\u00ed Schmitzer","version":22,"id":"140440","lastModified":"1301902407000","name":"Ji\u0159\u00ed Schmitzer","type":"Person","_key":"61324"} +{"label":"Miroslav Donutil","version":28,"id":"124141","lastModified":"1301902344000","name":"Miroslav Donutil","type":"Person","_key":"61325"} +{"label":"Vladim\u00edr Javorsk\u00fd","version":21,"id":"138828","lastModified":"1301903043000","name":"Vladim\u00edr Javorsk\u00fd","type":"Person","_key":"61326"} +{"label":"Daniel Landa","version":15,"id":"213454","lastModified":"1301903971000","name":"Daniel Landa","type":"Person","_key":"61327"} +{"label":"Boris R\u00f6sner","version":15,"id":"213455","lastModified":"1301903977000","name":"Boris R\u00f6sner","type":"Person","_key":"61328"} +{"label":"Rudolf Hru\u0161\u00ednsk\u00fd ml.","version":15,"id":"213456","lastModified":"1301903977000","name":"Rudolf Hru\u0161\u00ednsk\u00fd ml.","type":"Person","_key":"61329"} +{"label":"Metropolitan","description":"A sparkling comedic chronicle of a middle-class young man\u2019s romantic misadventures among New York City\u2019s debutante society. Stillman\u2019s deft, literate dialogue and hilariously highbrow observations earned this debut film an Academy Award nomination for Best Original Screenplay. Alongside the wit and sophistication, though, lies a tender tale of adolescent anxiety.","id":"15389","runtime":98,"imdbId":"tt0100142","version":107,"lastModified":"1301904615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de8\/4bc9471a017a3c57fe01ede8\/metropolitan-mid.jpg","studio":"Allagash Films","genre":"Comedy","title":"Metropolitan","releaseDate":649641600000,"language":"en","type":"Movie","_key":"61330"} +{"label":"Whit Stillman","version":19,"id":"78188","lastModified":"1301901948000","name":"Whit Stillman","type":"Person","_key":"61331"} +{"label":"Edward Clements","version":17,"id":"78189","lastModified":"1301901509000","name":"Edward Clements","type":"Person","_key":"61332"} +{"label":"Chris Eigeman","version":26,"id":"78190","lastModified":"1302130601000","name":"Chris Eigeman","type":"Person","_key":"61333"} +{"label":"Les Enfants terribles","description":"Writer Jean Cocteau and director Jean-Pierre Melville joined forces for this elegant adaptation of Cocteau\u2019s immensely popular, wicked novel about the wholly unholy relationship between a brother and sister.","id":"15390","runtime":105,"imdbId":"tt0042436","version":92,"lastModified":"1301903552000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df1\/4bc9471b017a3c57fe01edf1\/les-enfants-terribles-mid.jpg","studio":"Melville Productions","genre":"Drama","title":"Les Enfants terribles","releaseDate":-623635200000,"language":"en","type":"Movie","_key":"61334"} +{"label":"Nicole St\u00e9phane","version":19,"id":"78191","lastModified":"1301902011000","name":"Nicole St\u00e9phane","type":"Person","_key":"61335"} +{"label":"Ren\u00e9e Cosima","version":15,"id":"145449","lastModified":"1301903076000","name":"Ren\u00e9e Cosima","type":"Person","_key":"61336"} +{"label":"Jacques Bernard","version":15,"id":"145450","lastModified":"1301902733000","name":"Jacques Bernard","type":"Person","_key":"61337"} +{"label":"Obsession: Radical Islam's War Against the West","description":"Obsession is a film about the threat of Radical Islam to Western civilization. Using unique footage from Arab television, it reveals an 'insider's view' of the hatred the Radicals are teaching, their incitement of global jihad, and their goal of world domination. ","id":"15391","runtime":77,"imdbId":"tt0487116","homepage":"http:\/\/www.obsessionthemovie.com\/","version":52,"lastModified":"1301904368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfa\/4bc9471c017a3c57fe01edfa\/obsession-radical-islam-s-war-against-the-west-mid.jpg","genre":"Documentary","title":"Obsession: Radical Islam's War Against the West","releaseDate":1129852800000,"language":"en","type":"Movie","_key":"61338"} +{"label":"Wayne Kopping","version":18,"id":"78192","lastModified":"1301902326000","name":"Wayne Kopping","type":"Person","_key":"61339"} +{"label":"Crossroads","description":"Cult classic starring Ralph Macchio as a want-to-be blues guitar virtuoso who seeks a long-lost song by legendary musician Robert Johnson.","id":"15392","runtime":96,"imdbId":"tt0090888","version":197,"lastModified":"1301903637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e03\/4bc9471d017a3c57fe01ee03\/crossroads-mid.jpg","genre":"Drama","title":"Crossroads","releaseDate":511142400000,"language":"en","type":"Movie","_key":"61340"} +{"label":"Play Misty for Me","description":"A brief fling between a male disc jockey and an obsessed female fan takes a frightening, and perhaps even deadly turn when another woman enters the picture.","id":"15393","runtime":102,"imdbId":"tt0067588","trailer":"http:\/\/www.youtube.com\/watch?v=t9JAz9-Kxbk","version":212,"lastModified":"1301822191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e11\/4bc9471e017a3c57fe01ee11\/play-misty-for-me-mid.jpg","studio":"Universal Pictures","genre":"Crime","title":"Play Misty for Me","releaseDate":31536000000,"language":"en","type":"Movie","_key":"61341"} +{"label":"Jessica Walter","version":29,"id":"41232","lastModified":"1301901564000","name":"Jessica Walter","type":"Person","_key":"61342"} +{"label":"John Larch","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/148\/4c9cd6c67b9aa1430a000148\/john-larch-profile.jpg","version":24,"id":"95564","lastModified":"1301901124000","name":"John Larch","type":"Person","_key":"61343"} +{"label":"Owning Mahowny","description":"Dan Mahowny was a rising star at the Canadian Imperial Bank of Commerce. At twenty-four he was assistant manager of a major branch in the heart of Toronto's financial district. To his colleagues he was a workaholic. To his customers, he was astute, decisive and helpful. To his friends, he was a quiet, but humorous man who enjoyed watching sports on television. To his girlfriend, he was shy but engaging. None of them knew the other side of Dan Mahowny--the side that executed the largest single-ha","id":"15394","runtime":104,"imdbId":"tt0285861","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/owning-mahowny","version":157,"lastModified":"1301904283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1a\/4bc9471e017a3c57fe01ee1a\/owning-mahowny-mid.jpg","studio":"Falcon Studios","genre":"Drama","title":"Owning Mahowny","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"61344"} +{"label":"Jason Blicker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/236\/4cf2f91f5e73d62382000236\/jason-blicker-profile.jpg","version":29,"id":"44169","lastModified":"1301901529000","name":"Jason Blicker","type":"Person","_key":"61345"} +{"label":"Vince Corazza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/201\/4cf2f87c5e73d62385000201\/vince-corazza-profile.jpg","version":25,"id":"106711","lastModified":"1301901707000","name":"Vince Corazza","type":"Person","_key":"61346"} +{"label":"Love Liza","description":"Following the unexplained suicide of his wife Liza, website designer Wilson Joel (Philip Seymour Hoffman) turns to huffing gasoline fumes and remote control gaming while avoiding an inevitable conflict with his mother-in-law (Kathy Bates).","id":"15395","runtime":90,"imdbId":"tt0282698","version":152,"lastModified":"1301903298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e23\/4bc9471f017a3c57fe01ee23\/love-liza-mid.jpg","genre":"Comedy","title":"Love Liza","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"61347"} +{"label":"J.D. Walsh","version":16,"id":"93053","lastModified":"1301902464000","name":"J.D. Walsh","type":"Person","_key":"61348"} +{"label":"Jimmy Raskin","version":16,"id":"93054","lastModified":"1301902633000","name":"Jimmy Raskin","type":"Person","_key":"61349"} +{"label":"Sarah Koskoff","version":16,"id":"93055","lastModified":"1301902633000","name":"Sarah Koskoff","type":"Person","_key":"61350"} +{"label":"Annie Morgan","version":16,"id":"93056","lastModified":"1301902888000","name":"Annie Morgan","type":"Person","_key":"61351"} +{"label":"I Am David","description":"Based on Anne Holm's acclaimed young adult novel North to Freedom, I Am David chronicles the struggles of a 12-year-old boy (Ben Tibber) who manages to flee a Communist concentration camp on his own -- through sheer will and determination. All he has in his possession is a loaf of bread, a letter to deliver to someone in Denmark and a compass to help get him there.","id":"15397","runtime":90,"imdbId":"tt0327919","version":153,"lastModified":"1301907572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e35\/4bc94720017a3c57fe01ee35\/i-am-david-mid.jpg","genre":"Drama","title":"I Am David","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"61352"} +{"label":"Paul Fieg","version":5,"id":"227852","lastModified":"1299521786000","name":"Paul Fieg","type":"Person","_key":"61353"} +{"label":"Ben Tibber","version":12,"id":"195325","lastModified":"1301903952000","name":"Ben Tibber","type":"Person","_key":"61354"} +{"label":"Inside","description":"Alex has a disturbing hobby of following strangers\u2026 until one night he gets caught. Instead of calling the police, the couple\u2013fascinated by Alex's resemblance to their dead son\u2013asks him to stay, and Alex finds himself trapped in a horrifying existence.","id":"15398","runtime":106,"imdbId":"tt0425132","version":185,"lastModified":"1301904490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/498\/4ca880607b9aa17acf000498\/inside-mid.jpg","genre":"Drama","title":"Inside","releaseDate":1143331200000,"language":"en","tagline":"Some secrets don't stay buried.","type":"Movie","_key":"61355"} +{"label":"Jeff Mahler","version":19,"id":"133288","lastModified":"1301902792000","name":"Jeff Mahler","type":"Person","_key":"61356"} +{"label":"Cheryl White","version":17,"id":"133289","lastModified":"1301902792000","name":"Cheryl White","type":"Person","_key":"61357"} +{"label":"Kevin Kilner","version":29,"id":"114021","lastModified":"1301902904000","name":"Kevin Kilner","type":"Person","_key":"61358"} +{"label":"Barbara Allyne-Bennet","version":17,"id":"133290","lastModified":"1301902423000","name":"Barbara Allyne-Bennet","type":"Person","_key":"61359"} +{"label":"Betty McGuire","version":17,"id":"133291","lastModified":"1301902056000","name":"Betty McGuire","type":"Person","_key":"61360"} +{"label":"Ursula Whittaker","version":17,"id":"133292","lastModified":"1301902423000","name":"Ursula Whittaker","type":"Person","_key":"61361"} +{"label":"Mickey's Once Upon A Christmas","description":"Disney's biggest stars shine in a magical, heartwarming movie sure to become a holiday classic! Mickey, Minnie, and their famous friends Goofy, Donald, Daisy, and Pluto gather to reminisce about love, magic, and surprises in three wonder-filled stories of Christmas past. In the fine tradition of Disney's superb storytelling, Minnie and Mickey recall the year they both gave up what was most important to them for the sake of the other, making for one unforgettable Christmas. Goofy and Max retell w","id":"15400","runtime":66,"imdbId":"tt0238414","version":163,"lastModified":"1301904272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3e\/4bc94721017a3c57fe01ee3e\/mickey-s-once-upon-a-christmas-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Mickey's Once Upon A Christmas","releaseDate":944524800000,"language":"en","type":"Movie","_key":"61362"} +{"label":"Captain Kidd","description":"The unhistorical adventures of pirate Captain Kidd revolve around treasure and treachery.","id":"15401","runtime":90,"imdbId":"tt0037576","version":137,"lastModified":"1302051045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e47\/4bc94721017a3c57fe01ee47\/captain-kidd-mid.jpg","genre":"Action","title":"Captain Kidd","releaseDate":-788918400000,"language":"en","type":"Movie","_key":"61363"} +{"label":"William Farnum","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c6\/4ca600597b9aa16ed80004c6\/william-farnum-profile.jpg","version":24,"id":"78193","lastModified":"1301902221000","name":"William Farnum","type":"Person","_key":"61364"} +{"label":"Barbara Britton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4bd5eb5e017a3c657e000142\/barbara-britton-profile.jpg","version":28,"id":"78194","lastModified":"1301901607000","name":"Barbara Britton","type":"Person","_key":"61365"} +{"label":"The Notorious Bettie Page","description":"Bettie Page grew up in a conservative religious family in Tennessee and became a photo model sensation in 1950s New York. Bettie's legendary pin-up photos made her the target of a Senate investigation into pornography, and transformed her into an erotic icon who continues to enthrall fans to this day.","id":"15402","runtime":91,"imdbId":"tt0404802","version":158,"lastModified":"1301902944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aeb\/4d1ff2367b9aa17373001aeb\/the-notorious-bettie-page-mid.jpg","studio":"HBO Films","genre":"Drama","title":"The Notorious Bettie Page","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"61366"} +{"label":"Ben 10: Secret of the Omnitrix","description":"After a battle in a power plant, Ben notices something strange is happening with the omnitrix, but doesn't tell anyone. Tetrax arrives, and tells them the omnitrix is broadcasting a self destruct signal. Tetrax and Ben go to find the creator of the omnitrix to fix the omnitrix before it destroys itself and the universe along with it. Gwen stows away to help her cousin.","id":"15403","runtime":0,"imdbId":"tt1146431","version":116,"lastModified":"1301903969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e62\/4bc94724017a3c57fe01ee62\/ben-10-secret-of-the-omnitrix-mid.jpg","genre":"Animation","title":"Ben 10: Secret of the Omnitrix","releaseDate":1186704000000,"language":"en","type":"Movie","_key":"61367"} +{"label":"Meagan Smith","version":19,"id":"86005","lastModified":"1301902633000","name":"Meagan Smith","type":"Person","_key":"61368"} +{"label":"Paul Eiding","version":19,"id":"86006","lastModified":"1301902888000","name":"Paul Eiding","type":"Person","_key":"61369"} +{"label":"Jim Ward","version":20,"id":"86007","lastModified":"1301902774000","name":"Jim Ward","type":"Person","_key":"61370"} +{"label":"Bheja Fry","description":"Ranjeet Thadani (Rajat Kapoor), a bored, arrogant music company executive hurts his back the night he has found a prize catch for a weekly bring - your -idiot talent dinner hosted by his friends and him. He ends up spending the evening with this idiot, Bharat Bhushan (Vinay Pathak) who tries to help him get his wife (Sarika) back who left him earlier that day. The result is utter chaos let loose by the idiot, who cannot do a single thing without messing it up further. The plot turns around to be","id":"15411","runtime":95,"imdbId":"tt1014672","version":67,"lastModified":"1301006686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a2\/4c6f2be15e73d65f790006a2\/bheja-fry-mid.jpg","studio":"First Run Features","title":"Bheja Fry","releaseDate":1176422400000,"language":"en","type":"Movie","_key":"61371"} +{"label":"Sagar Ballary","version":20,"id":"89020","lastModified":"1301903036000","name":"Sagar Ballary","type":"Person","_key":"61372"} +{"label":"Khosla Ka Ghosla!","description":"Upon retirement, cranky control freak Kamal Kishore Khosla obsesses about procuring a plot of land in Delhi, where he plans to build his dream house. After investing his entire life's savings to acquire the land, he discovers the plot's been stolen by a greedy land shark. Now, Khosla must rely on his comically dysfunctional family to pull off a scam on the biggest goon in real estate and win back.","id":"15412","runtime":135,"imdbId":"tt0466460","version":70,"lastModified":"1301908364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8d\/4bc94729017a3c57fe01ee8d\/khosla-ka-ghosla-mid.jpg","genre":"Comedy","title":"Khosla Ka Ghosla!","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"61373"} +{"label":"Don't Tell Mom the Babysitter's Dead","description":"Five kids are left home when their mother leaves town on a three-month vacation, only to have their geriatric babysitter die of a heart attack, leading to the eldest teen, Sue Ellen, to scam her way into taking a job at a hip Los Angeles fashion company to feed and support her needy siblings.","id":"15413","runtime":102,"imdbId":"tt0101757","version":140,"lastModified":"1301902703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e0\/4d49ec517b9aa13aaf0003e0\/don-t-tell-mom-the-babysitter-s-dead-mid.jpg","studio":"Home Box Office (HBO)","genre":"Comedy","title":"Don't Tell Mom the Babysitter's Dead","releaseDate":676252800000,"language":"en","type":"Movie","_key":"61374"} +{"label":"Eda Reiss Merin","version":18,"id":"140796","lastModified":"1301902981000","name":"Eda Reiss Merin","type":"Person","_key":"61375"} +{"label":"Land of the Blind","description":"A soldier recounts his relationship with a famous political prisoner attempting to overthrow their country's authoritarian government.","id":"15414","runtime":110,"imdbId":"tt0433405","version":123,"lastModified":"1301905984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb3\/4bc9472c017a3c57fe01eeb3\/land-of-the-blind-mid.jpg","genre":"Drama","title":"Land of the Blind","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"61376"} +{"label":"Clarkson: Heaven and Hell","description":"Jeremy Clarkson reviews the cars of 2005 and judges them as 'sinners' or 'saints'.","id":"15416","runtime":72,"imdbId":"tt0940674","version":121,"lastModified":"1301904155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebc\/4bc9472d017a3c57fe01eebc\/clarkson-heaven-and-hell-mid.jpg","genre":"Documentary","title":"Clarkson: Heaven and Hell","releaseDate":1131321600000,"language":"en","type":"Movie","_key":"61377"} +{"label":"Jeremy Clarkson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4c1a25d65e73d67b0b000062\/jeremy-clarkson-profile.jpg","version":84,"birthday":"-306896400000","id":"81113","birthplace":"Doncaster","lastModified":"1301901149000","name":"Jeremy Clarkson","type":"Person","_key":"61378"} +{"label":"Every Which Way But Loose","description":"Philo Beddoe is your regular, easygoing, truck-driving guy. He's also the best bar-room brawler west of the Rockies. And he lives with a 165-pound orangutan named Clyde. Like other guys, Philo finally falls in love - with a flighty singer who leads him on a screwball chase across the American Southwest. Nothing's in the way except a motorcycle gang, and legendary brawler Tank Murdock.","id":"15417","runtime":110,"imdbId":"tt0077523","trailer":"http:\/\/www.youtube.com\/watch?v=HRj_wLGrRJs","version":236,"lastModified":"1301902186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecd\/4bc9472f017a3c57fe01eecd\/every-which-way-but-loose-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"Every Which Way But Loose","releaseDate":282960000000,"language":"en","type":"Movie","_key":"61379"} +{"label":"First Born","description":"Laura's expecting. Her husband, Steven's a loving guy but has little time for her. Her mom lives thousands of miles away. Forced to give up on her dreams, she's always been a bit edgy. A C-section drives her over the edge, making her see things in a different light. A creepy babysitter doesn't make things any better. She begins seeing things, trusts no one, as she goes into self-destruct mode.","id":"15418","runtime":95,"imdbId":"tt0470761","version":138,"lastModified":"1301904739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed7\/4bc94730017a3c57fe01eed7\/first-born-mid.jpg","genre":"Drama","title":"First Born","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61380"} +{"label":"Isaac Webb","version":15,"id":"148123","lastModified":"1301902688000","name":"Isaac Webb","type":"Person","_key":"61381"} +{"label":"Kabhi Haan Kabhi Naa","description":"No overview found.","id":"15419","runtime":0,"imdbId":"tt0110222","version":40,"lastModified":"1300980142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee0\/4bc94730017a3c57fe01eee0\/kabhi-haan-kabhi-naa-mid.jpg","title":"Kabhi Haan Kabhi Naa","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61382"} +{"label":"The Plague","description":"All the worldwide children of less than nine years fall in coma at the same time. Ten years later, Tom Russel is released from prison after killing a man in a fight, and returns to his home town, more specifically to his older brother home, who has a son in coma. Tom intends to rebuild his life, but his ex-wife Jean Raynor is hurt and does not want to see him.","id":"15420","runtime":88,"imdbId":"tt0479125","version":434,"lastModified":"1301908000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee9\/4bc94731017a3c57fe01eee9\/the-plague-mid.jpg","genre":"Horror","title":"The Plague","releaseDate":1157414400000,"language":"en","type":"Movie","_key":"61383"} +{"label":"Dee Wallace","version":24,"id":"62001","lastModified":"1301901293000","name":"Dee Wallace","type":"Person","_key":"61384"} +{"label":"Becket","description":"King Henry II of England has trouble with the Church. When the Archbishop of Canterbury dies, he has a brilliant idea. Rather than appoint another pious cleric loyal to Rome and the Church, he will appoint his old drinking and wenching buddy, Thomas Becket, technically a deacon of the church, to the post. Unfortunately, Becket takes the job seriously and provides abler opposition to Henry.","id":"15421","runtime":148,"imdbId":"tt0057877","version":121,"lastModified":"1302038893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17d\/4c6043ff5e73d6346000017d\/becket-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Becket","releaseDate":-183340800000,"language":"en","type":"Movie","_key":"61385"} +{"label":"David Weston","version":18,"id":"86658","lastModified":"1301902633000","name":"David Weston","type":"Person","_key":"61386"} +{"label":"Felix Aylmer","version":28,"id":"85345","lastModified":"1301986210000","name":"Felix Aylmer","type":"Person","_key":"61387"} +{"label":"Peter Glenville","version":20,"id":"86659","lastModified":"1301902633000","name":"Peter Glenville","type":"Person","_key":"61388"} +{"label":"Dark Ride","description":"Ten years after he brutally murdered two girls, a killer escapes from a mental institution and returns to his turf, the theme park attraction called Dark Ride. About to crash his path are a group of college kids on a road trip who stumble across the park. ","id":"15422","runtime":94,"imdbId":"tt0433963","version":157,"lastModified":"1301903522000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0b\/4bc94736017a3c57fe01ef0b\/dark-ride-mid.jpg","genre":"Horror","title":"Dark Ride","releaseDate":1136073600000,"language":"en","tagline":"The Last Ride You'll Ever Take...","type":"Movie","_key":"61389"} +{"label":"Jamie-Lynn Sigler","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1eb\/4d6c6c3c5e73d607290011eb\/jamie-lynn-sigler-profile.jpg","version":26,"id":"99241","lastModified":"1301927672000","name":"Jamie-Lynn Sigler","type":"Person","_key":"61390"} +{"label":"Brittney Coyle","version":16,"id":"117494","lastModified":"1301902243000","name":"Brittney Coyle","type":"Person","_key":"61391"} +{"label":"Chelsey Coyle","version":16,"id":"117495","lastModified":"1301902464000","name":"Chelsey Coyle","type":"Person","_key":"61392"} +{"label":"Dave Warden","version":16,"id":"117496","lastModified":"1301902068000","name":"Dave Warden","type":"Person","_key":"61393"} +{"label":"Craig Singer","version":26,"id":"82859","lastModified":"1301901766000","name":"Craig Singer","type":"Person","_key":"61394"} +{"label":"Hood Of Horror","description":"A hip hop horror anthology of three tales of terror told by the Hound of Hell (Snoop Dogg) that revolve around the residents of an inner-city neighborhood whose actions determine where they will go in the afterlife.","id":"15423","runtime":84,"imdbId":"tt0475298","version":136,"lastModified":"1301904149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f14\/4bc94736017a3c57fe01ef14\/hood-of-horror-mid.jpg","studio":"Social Capital","genre":"Comedy","title":"Hood Of Horror","releaseDate":1151366400000,"language":"en","tagline":"It AIN'T all good in da hood.","type":"Movie","_key":"61395"} +{"label":"Justice: A Cross The Universe","description":"Justice: A Cross The Universe! (Not to be confused with last year\u2019s Beatles tribute, Across the Universe) Co-directed by multi-award winning directors and intimate friends of the band, Romain Gavras (\u201dStress\u201d director) and So-Me (\u201dD.A.N.C.E.\u201d, \u201cDVNO\u201d) is a 60-minute acid-trip of a documentary features French, grammy-nominated, electro-rock band, Justice, and their first US Tour.","id":"15424","runtime":64,"imdbId":"tt1619014","trailer":"http:\/\/www.youtube.com\/watch?v=1031","version":77,"lastModified":"1301905241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1d\/4bc94737017a3c57fe01ef1d\/a-cross-the-universe-mid.jpg","genre":"Documentary","title":"Justice: A Cross The Universe","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"61396"} +{"label":"Romain Gavras","version":25,"id":"78207","lastModified":"1301902173000","name":"Romain Gavras","type":"Person","_key":"61397"} +{"label":"So-Me","version":17,"id":"78210","lastModified":"1301902144000","name":"So-Me","type":"Person","_key":"61398"} +{"label":"Gaspard Aug\u00e9","version":24,"id":"78211","lastModified":"1301902147000","name":"Gaspard Aug\u00e9","type":"Person","_key":"61399"} +{"label":"Xavier de Rosnay","version":17,"id":"78212","lastModified":"1301902144000","name":"Xavier de Rosnay","type":"Person","_key":"61400"} +{"label":"Tooth & Nail","description":"In a post-apocalyptic world, a small group of survivors, who call themselves Foragers, plan to rebuild civilization from their headquarters in an empty hospital based in what is left of Philadelphia. But they're soon forced into a face-off war with the Rovers, another gang of survivors whom are a brutal gang of cannibals.","id":"15425","runtime":94,"imdbId":"tt0922642","version":157,"lastModified":"1301904179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f26\/4bc94737017a3c57fe01ef26\/tooth-nail-mid.jpg","studio":"Morningstar Films","genre":"Horror","title":"Tooth & Nail","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61401"} +{"label":"Nicole DuPort","version":22,"id":"87185","lastModified":"1302118937000","name":"Nicole DuPort","type":"Person","_key":"61402"} +{"label":"Alexandra Barreto","version":20,"id":"87186","lastModified":"1301903034000","name":"Alexandra Barreto","type":"Person","_key":"61403"} +{"label":"Emily Catherine Young","version":26,"id":"87187","lastModified":"1301902787000","name":"Emily Catherine Young","type":"Person","_key":"61404"} +{"label":"Kevin E. Scott","version":20,"id":"87188","lastModified":"1301903034000","name":"Kevin E. Scott","type":"Person","_key":"61405"} +{"label":"Mark Young","version":18,"id":"87183","lastModified":"1301903042000","name":"Mark Young","type":"Person","_key":"61406"} +{"label":"Unearthed","description":"In the desert area of Hat Creek, cows are found partially devoured and the farmers believe that a wolf is attacking the cattle. The alcoholic Sheriff Annie Flynn is called by the local farmer Rob Horn to witness the remains of an animal to request reimbursement from the government and for an accident with a tank truck that is blocking the road.","id":"15426","runtime":93,"imdbId":"tt0475417","version":181,"lastModified":"1301904178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f33\/4bc94738017a3c57fe01ef33\/unearthed-mid.jpg","studio":"Ambush Entertainment","genre":"Action","title":"Unearthed","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61407"} +{"label":"Jimmy Carr: In Concert","description":"Britain's foremost multi award winning joke technician Jimmy Carr returns with his fourth live stand up DVD, Jimmy Carr In Concert.","id":"15429","runtime":87,"imdbId":"tt1346974","version":27,"lastModified":"1300980144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4bc94739017a3c57fe01ef3c\/jimmy-carr-in-concert-mid.jpg","genre":"Comedy","title":"Jimmy Carr: In Concert","releaseDate":1225670400000,"language":"en","type":"Movie","_key":"61408"} +{"label":"Frank Skinner: Stand-Up","description":"Frank Skinner has been in the stand-up game for well over 20 years and this DVD showcases him at the peak of his talents at the Birmingham's National Indoor Arena (NIA) in front of a packed audience as part of his 2007 tour. Since quitting TV 2 years ago, Skinner has focused on his stand-up and this show is the culmination of those efforts.","id":"15432","runtime":90,"homepage":"http:\/\/www.frankskinnerlive.com","version":35,"lastModified":"1301113454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f41\/4bc94739017a3c57fe01ef41\/frank-skinner-stand-up-mid.jpg","studio":"Avalon Television Ltd","genre":"Comedy","title":"Frank Skinner: Stand-Up","releaseDate":1226275200000,"language":"en","type":"Movie","_key":"61409"} +{"label":"Frank Skinner","version":16,"id":"91651","lastModified":"1301903047000","name":"Frank Skinner","type":"Person","_key":"61410"} +{"label":"The BFG","description":"Sophie is snatched from her orphanage early one morning by the BFG (Big Friendly Giant), whom she witnesses engaged in mysterious activities. She is soon put at ease, as she learns that BFG's job is to collect, catalog and deliver pleasant dreams to children. She joins him that night, but a mean giants follow them, planning to eat the children of the world.","id":"15433","runtime":87,"imdbId":"tt0096866","version":69,"lastModified":"1301904468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4a\/4bc9473d017a3c57fe01ef4a\/the-bfg-mid.jpg","genre":"Animation","title":"The BFG","releaseDate":724550400000,"language":"en","type":"Movie","_key":"61411"} +{"label":"Brian Cosgrove","version":20,"id":"122947","lastModified":"1301903013000","name":"Brian Cosgrove","type":"Person","_key":"61412"} +{"label":"Seed","description":"After surviving the electric chair, convicted serial killer Max Seed is buried alive. He digs himself out of the grave and goes on a killing spree. Taking revenge on the men who put him there and random unfortunates alike.","id":"15434","runtime":90,"imdbId":"tt0758781","version":146,"lastModified":"1301907092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f57\/4bc9473e017a3c57fe01ef57\/seed-mid.jpg","studio":"Boll Kino Beteiligungs GmbH & Co. KG","genre":"Horror","title":"Seed","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"61413"} +{"label":"Thea Gill","version":18,"id":"78237","lastModified":"1301901828000","name":"Thea Gill","type":"Person","_key":"61414"} +{"label":"Comme les autres","description":"They were the perfect loving couple, well, almost.Emmanuel wanted a child but Philippe didn't. One day, however, Emmanuel decides to take the plunge, at the risk of losing Philippe. But how do you make a child when you are gay?","id":"15435","runtime":90,"imdbId":"tt1093352","version":70,"lastModified":"1301908140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f60\/4bc9473f017a3c57fe01ef60\/comme-les-autres-mid.jpg","title":"Comme les autres","releaseDate":1220400000000,"language":"en","type":"Movie","_key":"61415"} +{"label":"Vincent Garenq","version":21,"id":"140518","lastModified":"1301902959000","name":"Vincent Garenq","type":"Person","_key":"61416"} +{"label":"Pilar L\u00f3pez de Ayala","version":22,"id":"98357","lastModified":"1301902589000","name":"Pilar L\u00f3pez de Ayala","type":"Person","_key":"61417"} +{"label":"Parlez-moi de la pluie","description":"Agathe Villanova, f\u00e9ministe nouvellement engag\u00e9e en politique, revient dans la maison de son enfance, aider sa soeur Florence \u00e0 ranger les affaires de leur m\u00e8re, d\u00e9c\u00e9d\u00e9e il y a un an.\nAgathe n'aime pas cette r\u00e9gion, mais les imp\u00e9ratifs de la parit\u00e9 l'ont parachut\u00e9e ici \u00e0 l'occasion des prochaines \u00e9l\u00e9ctions.","id":"15436","runtime":98,"imdbId":"tt1065332","homepage":"http:\/\/www.parlezmoidelapluie-lefilm.com\/","version":72,"lastModified":"1301903847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6d\/4bc94740017a3c57fe01ef6d\/parlez-moi-de-la-pluie-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Parlez-moi de la pluie","releaseDate":1221609600000,"language":"en","type":"Movie","_key":"61418"} +{"label":"Le crime est notre affaire","description":"No overview found.","id":"15437","runtime":0,"imdbId":"tt1206478","version":61,"lastModified":"1301415973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f86\/4bc94744017a3c57fe01ef86\/le-crime-est-notre-affaire-mid.jpg","title":"Le crime est notre affaire","releaseDate":1226707200000,"language":"en","type":"Movie","_key":"61419"} +{"label":"Mes stars et moi","description":"Passionn\u00e9 par les actrices, Robert est sans doute le fan le plus collant du cin\u00e9ma fran\u00e7ais. Agent de service la nuit dans une grande agence artistique, il consacre toutes ses journ\u00e9es \u00e0 \"ses\" stars, qu'il suit sans rel\u00e2che, et dont il n'h\u00e9site pas \u00e0 se m\u00ealer de la vie. R\u00e9unies sur un m\u00eame tournage, ses trois actrices pr\u00e9f\u00e9r\u00e9es d\u00e9couvrent un jour qu'elles ont le m\u00eame probl\u00e8me... avec le m\u00eame fan. Elles vont alors d\u00e9cider de s'unir pour lui r\u00e9gler son compte : elles \u00e9taient ses idoles... elles vo","id":"15438","runtime":88,"imdbId":"tt1213922","version":76,"lastModified":"1301418551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4bc94746017a3c57fe01ef93\/mes-stars-et-moi-mid.jpg","title":"Mes stars et moi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61420"} +{"label":"M\u00e9lanie Bernier","version":27,"id":"132431","lastModified":"1301903046000","name":"M\u00e9lanie Bernier","type":"Person","_key":"61421"} +{"label":"Cyprien","description":"No overview found.","id":"15439","runtime":98,"imdbId":"tt1302555","version":53,"lastModified":"1301904669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb2\/4bc94749017a3c57fe01efb2\/cyprien-mid.jpg","studio":"Mars Distribution","genre":"Comedy","title":"Cyprien","releaseDate":1235520000000,"language":"en","type":"Movie","_key":"61422"} +{"label":"David Charhon","version":16,"id":"78226","lastModified":"1301901864000","name":"David Charhon","type":"Person","_key":"61423"} +{"label":"Elisa Tovati","version":17,"id":"78224","lastModified":"1301901718000","name":"Elisa Tovati","type":"Person","_key":"61424"} +{"label":"Mouloud Achour","version":16,"id":"78225","lastModified":"1301901864000","name":"Mouloud Achour","type":"Person","_key":"61425"} +{"label":"Cold Prey II","description":"Jannicke wakes up in the hospital. All of her friends are dead. As she walks through the dark corridors, she thinks she is left alone. But the nightmare isn't over yet.","id":"15440","runtime":86,"imdbId":"tt1188990","homepage":"http:\/\/www.frittvilt2.com\/","version":121,"lastModified":"1301903140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc3\/4bc9474d017a3c57fe01efc3\/fritt-vilt-ll-mid.jpg","studio":"Fantefilm","genre":"Horror","title":"Cold Prey II","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"61426"} +{"label":"Ingrid Bols\u00f8 Berdal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e8\/4c46a51e7b9aa15de20001e8\/ingrid-bols-berdal-profile.jpg","version":34,"birthday":"320799600000","id":"87879","birthplace":"Levanger, Norway","lastModified":"1301907135000","name":"Ingrid Bols\u00f8 Berdal","type":"Person","_key":"61427"} +{"label":"Marthe Snorresdotter Rovik","version":23,"id":"87882","lastModified":"1301902464000","name":"Marthe Snorresdotter Rovik","type":"Person","_key":"61428"} +{"label":"Mats Stenberg","version":23,"id":"87883","lastModified":"1301901864000","name":"Mats Stenberg","type":"Person","_key":"61429"} +{"label":"Blackball","description":"Blackball follows the fortunes of Cliff Starkey, a working-class fine of lawn bowls with an exceptional talent. Wanting to take on the Aussies he manages to become regional champion, only to get banned. Sports agent Rich Schwartz picks him up and makes him so popular the Bowls Committee deem to lift the ban. Now the question is whether he can regain his form and his friends to beat the Aussies.","id":"15443","runtime":96,"imdbId":"tt0337879","version":146,"lastModified":"1301907415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcd\/4bc9474e017a3c57fe01efcd\/blackball-mid.jpg","studio":"Midfield Films","genre":"Comedy","title":"Blackball","releaseDate":1053216000000,"language":"en","type":"Movie","_key":"61430"} +{"label":"La Tour Montparnasse Infernale","description":"No overview found.","id":"15449","runtime":92,"imdbId":"tt0259060","version":187,"lastModified":"1301908537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4c821c407b9aa13b6a00009c\/la-tour-montparnasse-infernale-mid.jpg","title":"La Tour Montparnasse Infernale","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61431"} +{"label":"Michel Puterflam","version":17,"id":"78227","lastModified":"1301902144000","name":"Michel Puterflam","type":"Person","_key":"61432"} +{"label":"The Family That Preys","description":"Two families from different walks of life learn to work together.","id":"15450","runtime":111,"imdbId":"tt1142798","version":219,"lastModified":"1301907571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd6\/4bc9474f017a3c57fe01efd6\/the-family-that-preys-mid.jpg","genre":"Drama","title":"The Family That Preys","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"61433"} +{"label":"Tyler Perry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/73d\/4d7578f87b9aa1708800073d\/tyler-perry-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify\"><B><SPAN style=\"FONT-FAMILY: 'Gisha','sans-serif'; FONT-SIZE: 11pt; mso-bidi-font-size: 12.0pt; mso-ansi-language: EN\" lang=EN>Tyler Perry<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gisha','sans-serif'; FONT-SIZE: 11pt; mso-bidi-font-size: 12.0pt; mso-ansi-language: EN\" lang=EN> (born <B>Emmitt Perry, Jr.<\/B>; September 13, 1969) is an African-American actor, director, playwright, screenwriter, producer, author<SUP><A href=\"http:\/\/en.wikipedia.org\/wiki\/Tyler_Perry#cite_n","version":85,"birthday":"-9507600000","id":"80602","birthplace":"New Orleans, Louisiana, USA","lastModified":"1301901170000","name":"Tyler Perry","type":"Person","_key":"61434"} +{"label":"Revanche","description":"Ex-con Alex plans to flee to the South with his girl after a robbery. But something terrible happens and revenge seems inevitable.","id":"15451","runtime":121,"imdbId":"tt1173745","homepage":"http:\/\/www.revanche.at\/","version":177,"lastModified":"1302039495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffa\/4bc94751017a3c57fe01effa\/revanche-mid.jpg","genre":"Crime","title":"Revanche","releaseDate":1234396800000,"language":"en","tagline":"Whose fault is it if life doesn't go your way?","type":"Movie","_key":"61435"} +{"label":"Johannes Krisch","version":18,"id":"78231","lastModified":"1301901429000","name":"Johannes Krisch","type":"Person","_key":"61436"} +{"label":"Michael-Joachim Heiss","version":18,"id":"78232","lastModified":"1301901429000","name":"Michael-Joachim Heiss","type":"Person","_key":"61437"} +{"label":"Andreas Lust","version":20,"id":"78233","lastModified":"1301901474000","name":"Andreas Lust","type":"Person","_key":"61438"} +{"label":"Johannes Thanheiser","version":21,"id":"78234","lastModified":"1301902372000","name":"Johannes Thanheiser","type":"Person","_key":"61439"} +{"label":"G\u00f6tz Spielmann","version":21,"id":"100134","lastModified":"1301901718000","name":"G\u00f6tz Spielmann","type":"Person","_key":"61440"} +{"label":"Baby Blues","description":"Fabrizio et Alex forment un couple heureux, sans enfant. Poursuivant sa carri\u00e8re tambour battant, Alex se voit proposer un poste \u00e0 New York. Sentant poindre en elle un d\u00e9sir d'enfant, elle se trouve face \u00e0 un dilemme : la maternit\u00e9 lui semble incompatible avec l'avenir brillant qu'on lui pr\u00e9dit.","id":"15453","runtime":95,"imdbId":"tt1153099","version":115,"lastModified":"1301907493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bc94758017a3c57fe01f01d\/baby-blues-mid.jpg","studio":"Mars Distribution","genre":"Comedy","title":"Baby Blues","releaseDate":1227657600000,"language":"en","type":"Movie","_key":"61441"} +{"label":"Val\u00e9rie Benguigui","version":21,"id":"78420","lastModified":"1301901201000","name":"Val\u00e9rie Benguigui","type":"Person","_key":"61442"} +{"label":"Diane Bertrand","version":19,"id":"83185","lastModified":"1301902326000","name":"Diane Bertrand","type":"Person","_key":"61443"} +{"label":"Les murs porteurs","description":"No overview found.","id":"15455","runtime":92,"imdbId":"tt0485411","version":77,"lastModified":"1300980147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc94759017a3c57fe01f026\/les-murs-porteurs-mid.jpg","title":"Les murs porteurs","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61444"} +{"label":"Intrusions","description":"Pauline, une riche h\u00e9riti\u00e8re, a \u00e9t\u00e9 mari\u00e9e contre son gr\u00e9 par son p\u00e8re \u00e0 un de ses employ\u00e9s, Fran\u00e7ois, qui l'avait mise enceinte.Quand, quelques mois plus tard, son mari lui annonce qu'il veut la quitter, Pauline, furieuse, laisse sur le t\u00e9l\u00e9phone de ce dernier des menaces de mort.Alexis Target, un ouvrier qui travaille dans la maison de Pauline, entend la jeune femme prof\u00e9rer ces menaces.Fran\u00e7ois meurt, le soir m\u00eame, dans un accident de voiture.Le jour de l'enterrement, Alexis revient voir Paul","id":"15456","runtime":97,"imdbId":"tt1077083","version":45,"lastModified":"1300980147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4bc9475b017a3c57fe01f02f\/intrusions-mid.jpg","title":"Intrusions","releaseDate":1220400000000,"language":"en","type":"Movie","_key":"61445"} +{"label":"Emmanuel Bourdieu","version":24,"id":"56587","lastModified":"1301902055000","name":"Emmanuel Bourdieu","type":"Person","_key":"61446"} +{"label":"Fran\u00e7oise Gillard","version":15,"id":"149869","lastModified":"1301903102000","name":"Fran\u00e7oise Gillard","type":"Person","_key":"61447"} +{"label":"Francis Leplay","version":15,"id":"149870","lastModified":"1301903104000","name":"Francis Leplay","type":"Person","_key":"61448"} +{"label":"Simon Bakhouche","version":15,"id":"149871","lastModified":"1301903103000","name":"Simon Bakhouche","type":"Person","_key":"61449"} +{"label":"Volodia Serre","version":15,"id":"149872","lastModified":"1301903103000","name":"Volodia Serre","type":"Person","_key":"61450"} +{"label":"Botum Dupuis","version":15,"id":"149873","lastModified":"1301903100000","name":"Botum Dupuis","type":"Person","_key":"61451"} +{"label":"Faubourg 36","description":"A star is born in a time of both celebration and instability in this historical drama with music from director Christophe Barratier. In the spring of 1936, Paris is in a state of uncertainty; while the rise of the Third Reich in Germany worries many, a leftist union-oriented candidate, L\u00e9on Blum, has been voted into power, and organized labor is feeling its new power by standing up to management. ","id":"15457","runtime":120,"imdbId":"tt0948535","version":122,"lastModified":"1301906789000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/040\/4bc9475e017a3c57fe01f040\/faubourg-36-mid.jpg","title":"Faubourg 36","releaseDate":1222214400000,"language":"en","type":"Movie","_key":"61452"} +{"label":"Muttertag","description":"Vorbereitungen zu einem ganz normalen Muttertag bei den Neugebauers in einer heruntergekommenen Wiener Gemeindebau-Wohnung: Doch statt eines gew\u00f6hnlichen Familienfests wird ein Blick in die abgr\u00fcndigen Tiefen und Geheimnisse der Familie Neugebauer geworfen.","id":"15458","runtime":99,"imdbId":"tt0107625","version":54,"lastModified":"1301906605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/049\/4bc9475f017a3c57fe01f049\/muttertag-mid.png","genre":"Comedy","title":"Muttertag","releaseDate":760838400000,"language":"en","type":"Movie","_key":"61453"} +{"label":"Reinhard Nowak","version":16,"id":"78238","lastModified":"1301901864000","name":"Reinhard Nowak","type":"Person","_key":"61454"} +{"label":"Eva Billisich","version":16,"id":"78239","lastModified":"1301901864000","name":"Eva Billisich","type":"Person","_key":"61455"} +{"label":"Roland D\u00fcringer","version":26,"id":"78240","lastModified":"1301901940000","name":"Roland D\u00fcringer","type":"Person","_key":"61456"} +{"label":"Andrea H\u00e4ndler","version":17,"id":"78241","lastModified":"1301902243000","name":"Andrea H\u00e4ndler","type":"Person","_key":"61457"} +{"label":"Willi Resetarits","version":16,"id":"78242","lastModified":"1301901864000","name":"Willi Resetarits","type":"Person","_key":"61458"} +{"label":"Harald Sicheritz","version":26,"id":"48084","lastModified":"1301901939000","name":"Harald Sicheritz","type":"Person","_key":"61459"} +{"label":"UFC 95: Sanchez vs Stevenson","description":"The Ultimate Fighting Championship returns to London\u2019s O2 Arena on Saturday, February 21st, and in the UFC 95 main event, it will be one of the most intriguing bouts of the New Year as exciting welterweight contender Diego \u201cNightmare\u201d Sanchez makes his lightweight debut against former world title challenger Joe \u201cDaddy\u201d Stevenson.","id":"15459","runtime":152,"imdbId":"tt1389133","version":96,"lastModified":"1301907092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/056\/4bc94763017a3c57fe01f056\/ufc-95-sanchez-vs-stevenson-mid.jpg","genre":"Sports Film","title":"UFC 95: Sanchez vs Stevenson","releaseDate":1235174400000,"language":"en","type":"Movie","_key":"61460"} +{"label":"Dan Hardy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6c0\/4c092139017a3c7e890006c0\/dan-hardy-profile.jpg","version":29,"id":"83373","lastModified":"1301902348000","name":"Dan Hardy","type":"Person","_key":"61461"} +{"label":"Rory Markham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/219\/4c1dff527b9aa11815000219\/rory-markham-profile.jpg","version":20,"id":"83374","lastModified":"1301902706000","name":"Rory Markham","type":"Person","_key":"61462"} +{"label":"Paulo Thiago","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b19\/4c0a9bf0017a3c3519000b19\/paulo-thiago-profile.jpg","version":30,"id":"85573","lastModified":"1301902529000","name":"Paulo Thiago","type":"Person","_key":"61463"} +{"label":"Cliente","description":"Marco leads a double life. As Marco, he is a construction worker but rich ladies craving sexual excitation know him as Patrick. As Marco he is married to Fanny, an ambitious young woman who has opened her own hairdressing salon in partnership with her friend Rosalie. Marco\/Patrick is not a male prostitute at heart: in fact he does the job in order to support his wife's business. Which doesn't prevent Judith, an elegant tele-shopping presenter who buys his services, from falling in love with him.","id":"15460","runtime":105,"imdbId":"tt1091992","version":91,"lastModified":"1301904442000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bc94765017a3c57fe01f063\/cliente-mid.jpg","genre":"Drama","title":"Cliente","releaseDate":1223424000000,"language":"en","type":"Movie","_key":"61464"} +{"label":"Eric Caravaca","version":18,"id":"136315","lastModified":"1301902958000","name":"Eric Caravaca","type":"Person","_key":"61465"} +{"label":"Car Wash","description":"Car Wash covers the exploits of a close-knit group of employees at a Los Angeles Car Wash. In an episodic fashion, the film covers a full day, during which all manner of strange visitors make appearances.","id":"15462","runtime":97,"imdbId":"tt0074281","version":146,"lastModified":"1301903652000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4bc94769017a3c57fe01f07e\/car-wash-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"Car Wash","releaseDate":214790400000,"language":"en","type":"Movie","_key":"61466"} +{"label":"Darrow Igus","version":22,"id":"83104","lastModified":"1301902295000","name":"Darrow Igus","type":"Person","_key":"61467"} +{"label":"James Spinks","version":22,"id":"126352","lastModified":"1301902638000","name":"James Spinks","type":"Person","_key":"61468"} +{"label":"Antonio Fargas","version":32,"id":"84878","lastModified":"1301902218000","name":"Antonio Fargas","type":"Person","_key":"61469"} +{"label":"The Pointer Sisters","version":22,"id":"126353","lastModified":"1301902899000","name":"The Pointer Sisters","type":"Person","_key":"61470"} +{"label":"Clarence Muse","version":31,"id":"87825","lastModified":"1301903055000","name":"Clarence Muse","type":"Person","_key":"61471"} +{"label":"Tracy Reed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/347\/4c4d90f67b9aa1237e000347\/tracy-reed-profile.jpg","version":27,"id":"14254","lastModified":"1301902017000","name":"Tracy Reed","type":"Person","_key":"61472"} +{"label":"Ivan Dixon","version":23,"id":"95224","lastModified":"1301902319000","name":"Ivan Dixon","type":"Person","_key":"61473"} +{"label":"Ray Vitte","version":22,"id":"87474","lastModified":"1301902579000","name":"Ray Vitte","type":"Person","_key":"61474"} +{"label":"Garrett Morris","version":32,"id":"83187","lastModified":"1301902511000","name":"Garrett Morris","type":"Person","_key":"61475"} +{"label":"Leon Pinkney","version":22,"id":"130439","lastModified":"1301903078000","name":"Leon Pinkney","type":"Person","_key":"61476"} +{"label":"Renn Woods","version":22,"id":"130440","lastModified":"1301903025000","name":"Renn Woods","type":"Person","_key":"61477"} +{"label":"Lauren Jones","version":21,"id":"130441","lastModified":"1301902424000","name":"Lauren Jones","type":"Person","_key":"61478"} +{"label":"Shortcut to Justice","description":"No overview found.","id":"15463","runtime":41,"imdbId":"tt1660410","homepage":"http:\/\/www.roadside-dokumentarfilm.de","version":46,"lastModified":"1300980148000","title":"Shortcut to Justice","releaseDate":1220313600000,"language":"en","type":"Movie","_key":"61479"} +{"label":"EMI: Liya Hai To Chukana Padega","description":"No overview found.","id":"15464","runtime":128,"imdbId":"tt1221133","version":40,"lastModified":"1301417420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4bc94769017a3c57fe01f087\/emi-liya-hai-to-chukana-padega-mid.jpg","studio":"Balaji Motion Pictures","title":"EMI: Liya Hai To Chukana Padega","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"61480"} +{"label":"Bouquet final","description":"Recrut\u00e9 comme directeur commercial Paris d'une entreprise am\u00e9ricaine de pompes fun\u00e8bres, Gabriel part trois mois en stage sur le terrain. Il parvient \u00e0 dissimuler son nouveau job \u00e0 ses parents et \u00e0 son amoureuse, Claire, qui voient en lui un grand musicien, jusqu'au jour o\u00f9 il vend des obs\u00e8ques \u00e0 prix d'or \u00e0 un vieux monsieur qui n'est autre que le grand-p\u00e8re de Claire.","id":"15465","runtime":101,"imdbId":"tt1134801","version":126,"lastModified":"1301905120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4bc9476e017a3c57fe01f094\/bouquet-final-mid.jpg","studio":"Les Films du Worso","title":"Bouquet final","releaseDate":1225843200000,"language":"en","type":"Movie","_key":"61481"} +{"label":"Atlantis","description":"Atlantis is more visual art than nature film and a 'must see' for any Luc Besson fan. The film captures the feel of what it's actually like to swim underwater better than any film I've ever seen, perfectly illustrating the form and texture of sea water. Beautiful. Highly recommended for anyone interested in visual arts or diving. ","id":"15466","runtime":74,"imdbId":"tt0101376","version":63,"lastModified":"1301905267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4bc9476f017a3c57fe01f0a3\/atlantis-mid.jpg","studio":"Gaumont","genre":"Documentary","title":"Atlantis","releaseDate":682732800000,"language":"en","type":"Movie","_key":"61482"} +{"label":"Kismat Konnection","description":"This is a story about an architect Raj Malhotra. While he was a top student in his school and college days, he is not having much luck finding work, clients or projects. All he does seems to go wrong. Raj goes to a gypsy named Haseena Bano Jann who advises him that his luck is not good and he needs a lucky charm or a person who can change his life.","id":"15467","runtime":153,"imdbId":"tt1105733","trailer":"http:\/\/www.youtube.com\/watch?v=1032","homepage":"http:\/\/www.kismatkonnection.tips.in\/","version":56,"lastModified":"1301906605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ac\/4bc94770017a3c57fe01f0ac\/kismat-konnection-mid.jpg","studio":"Tips Industries","genre":"Drama","title":"Kismat Konnection","releaseDate":1216339200000,"language":"en","type":"Movie","_key":"61483"} +{"label":"Vishal Malhotra","version":19,"id":"78246","lastModified":"1301902306000","name":"Vishal Malhotra","type":"Person","_key":"61484"} +{"label":"Amit Varma","version":16,"id":"78247","lastModified":"1301901864000","name":"Amit Varma","type":"Person","_key":"61485"} +{"label":"Himani Shivpuri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d4\/4d217aae7b9aa1289f0004d4\/himani-shivpuri-profile.jpg","version":18,"id":"78248","lastModified":"1301901652000","name":"Himani Shivpuri","type":"Person","_key":"61486"} +{"label":"Karanvir Bohra","version":17,"id":"78249","lastModified":"1301901608000","name":"Karanvir Bohra","type":"Person","_key":"61487"} +{"label":"Dimple Sharma","version":17,"id":"78250","lastModified":"1301901864000","name":"Dimple Sharma","type":"Person","_key":"61488"} +{"label":"Espion, l\u00e8ve-toi","description":"A French espionage thriller playing in Z\u00fcrich.","id":"15468","runtime":98,"imdbId":"tt0082342","version":40,"lastModified":"1301419000000","title":"Espion, l\u00e8ve-toi","releaseDate":380937600000,"language":"en","type":"Movie","_key":"61489"} +{"label":"Five Miles to Midnight","description":"Immediately after Lisa (Loren) declares that she is leaving her immature, abusive, but easy-going husband Robert (Perkins), he is reported dead in a plane crash. Secretly still alive, he convinces her to collect his life insurance, although she knows that it's a bad idea. Lisa must contend with the complications of the scheme, which involve an aggressive suitor (Young), Robert's jealousy, and her own guilt.","id":"15469","runtime":110,"imdbId":"tt0056957","version":57,"lastModified":"1301908289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b1\/4bc94770017a3c57fe01f0b1\/la-couteau-dans-la-plaie-mid.jpg","genre":"Crime","title":"Five Miles to Midnight","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"61490"} +{"label":"La Lingerie","description":"La Lingerie concerns four women Miu, Donut, Celine and CC who\u2019s lives and loves are linked through a sexy lingerie shop where Donut works.","id":"15470","runtime":0,"imdbId":"tt1262141","version":63,"lastModified":"1301908289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0be\/4bc94772017a3c57fe01f0be\/noi-yee-sil-nui-mid.jpg","studio":"China Star Entertainment","genre":"Comedy","title":"La Lingerie","releaseDate":1218153600000,"language":"en","type":"Movie","_key":"61491"} +{"label":"Hing-Ka Chan","version":41,"id":"65932","lastModified":"1301901505000","name":"Hing-Ka Chan","type":"Person","_key":"61492"} +{"label":"Janet Chun","version":36,"id":"70900","lastModified":"1301901873000","name":"Janet Chun","type":"Person","_key":"61493"} +{"label":"Stephy Tang","version":23,"id":"78252","lastModified":"1301901578000","name":"Stephy Tang","type":"Person","_key":"61494"} +{"label":"Janice Man","version":22,"id":"78253","lastModified":"1301901864000","name":"Janice Man","type":"Person","_key":"61495"} +{"label":"J.J. Jia","version":23,"id":"78254","lastModified":"1301902174000","name":"J.J. Jia","type":"Person","_key":"61496"} +{"label":"Yee Tong","version":17,"id":"78255","lastModified":"1301902243000","name":"Yee Tong","type":"Person","_key":"61497"} +{"label":"Man-kwan Lee","version":19,"id":"78256","lastModified":"1301947553000","name":"Man-kwan Lee","type":"Person","_key":"61498"} +{"label":"Ronald Cheng","version":25,"id":"78257","lastModified":"1301901534000","name":"Ronald Cheng","type":"Person","_key":"61499"} +{"label":"The Girl with the Dragon Tattoo","description":"Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerstr\u00f6m. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece","id":"15472","runtime":150,"imdbId":"tt1132620","trailer":"http:\/\/www.youtube.com\/watch?v=JlF-hk3IJQE","version":396,"lastModified":"1301901030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4cd00d787b9aa16b9b000b82\/man-som-hatar-kvinnor-mid.jpg","studio":"Danish Filminstitute","genre":"Thriller","title":"The Girl with the Dragon Tattoo","releaseDate":1235692800000,"language":"en","type":"Movie","_key":"61500"} +{"label":"Noomi Rapace","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/606\/4d1de7fd5e73d66b3b000606\/noomi-rapace-profile.jpg","biography":"<P style=\"TEXT-ALIGN: justify; MARGIN: 0in 0in 0pt\"><FONT size=3><B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>Noomi Rapace<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\" lang=EN>, born <B>Noomi Nor\u00e9n<\/B>; 28 December 1979 in Hudiksvall, is a Swedish actress. She is best known for her portrayal of Lisbeth Salander in the Swedish\/Danish film adaptions of the \"Millennium Trilogy\": <I>The Girl with the Dragon Tattoo<\/I>, <I>The Girl Who Play","version":72,"birthday":"315183600000","id":"87722","lastModified":"1301904060000","name":"Noomi Rapace","type":"Person","_key":"61501"} +{"label":"Marika Lagercrantz","version":34,"id":"87724","lastModified":"1301901256000","name":"Marika Lagercrantz","type":"Person","_key":"61502"} +{"label":"Lena Endre","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/bcf\/4d2622f57b9aa134d8000bcf\/lena-endre-profile.jpg","version":84,"id":"79196","lastModified":"1302016368000","name":"Lena Endre","type":"Person","_key":"61503"} +{"label":"G\u00f6sta Bredefeldt","version":30,"id":"87725","lastModified":"1301901256000","name":"G\u00f6sta Bredefeldt","type":"Person","_key":"61504"} +{"label":"Willie Andr\u00e9ason","version":31,"id":"87726","lastModified":"1301901268000","name":"Willie Andr\u00e9ason","type":"Person","_key":"61505"} +{"label":"Tomas K\u00f6hler","version":30,"id":"87727","lastModified":"1301901281000","name":"Tomas K\u00f6hler","type":"Person","_key":"61506"} +{"label":"LD 50 Lethal Dose","description":"Re-formed by a coded message to their web site, a group of animal rights activists set off to free an imprisoned colleague from a terrifying ordeal. Their rescue mission leads them to a disused lab, but what should have been a simple raid turns into a series of twisted and mind bending incidents where the free and the caged switch places, in this tormented psychological horror.","id":"15473","runtime":97,"imdbId":"tt0337659","version":82,"lastModified":"1301418695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/121\/4bc94782017a3c57fe01f121\/ld-50-lethal-dose-mid.jpg","genre":"Horror","title":"LD 50 Lethal Dose","releaseDate":1045958400000,"language":"en","type":"Movie","_key":"61507"} +{"label":"Simon De Selva","version":17,"id":"139351","lastModified":"1301903068000","name":"Simon De Selva","type":"Person","_key":"61508"} +{"label":"Swimming Upstream","description":"A young man aspiring for recognition of his talents battles against his estranged father's sentiment towards him as the father deals with his own demons.","id":"15474","runtime":114,"imdbId":"tt0326664","trailer":"http:\/\/www.youtube.com\/watch?v=GAj7ruVkbo","version":152,"lastModified":"1301907494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12a\/4bc94783017a3c57fe01f12a\/swimming-upstream-mid.jpg","genre":"Drama","title":"Swimming Upstream","releaseDate":1116460800000,"language":"en","type":"Movie","_key":"61509"} +{"label":"Ferrari","description":"No overview found.","id":"15475","runtime":114,"imdbId":"tt0346946","trailer":"http:\/\/www.youtube.com\/watch?v=8BQyr34Ru-8","version":156,"lastModified":"1301908136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12f\/4bc94784017a3c57fe01f12f\/ferrari-mid.jpg","title":"Ferrari","releaseDate":1045353600000,"language":"en","type":"Movie","_key":"61510"} +{"label":"Mathew Bose","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c6\/4cd64da97b9aa11b250001c6\/mathew-bose-profile.jpg","version":17,"id":"141829","lastModified":"1301902766000","name":"Mathew Bose","type":"Person","_key":"61511"} +{"label":"Pietro Ragusa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cb\/4cd64ebf7b9aa11b250001cb\/pietro-ragusa-profile.jpg","version":18,"id":"141830","lastModified":"1301902766000","name":"Pietro Ragusa","type":"Person","_key":"61512"} +{"label":"Giampiero Judica","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/235\/4cd64f107b9aa11b24000235\/giampiero-judica-profile.jpg","version":25,"id":"128225","lastModified":"1301902766000","name":"Giampiero Judica","type":"Person","_key":"61513"} +{"label":"Michael Enright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cf\/4cd64fc07b9aa11b250001cf\/michael-enright-profile.jpg","version":17,"id":"141831","lastModified":"1301902766000","name":"Michael Enright","type":"Person","_key":"61514"} +{"label":"Matteo Angius","version":16,"id":"141832","lastModified":"1301902751000","name":"Matteo Angius","type":"Person","_key":"61515"} +{"label":"Jonathan Bailey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/235\/4cd6509d7b9aa11b27000235\/jonathan-bailey-profile.jpg","version":23,"id":"80860","lastModified":"1301902052000","name":"Jonathan Bailey","type":"Person","_key":"61516"} +{"label":"Thomas Crowther","version":16,"id":"141833","lastModified":"1301902751000","name":"Thomas Crowther","type":"Person","_key":"61517"} +{"label":"7eventy 5ive","description":"As another semester draws to a close at the University of Dreyskill, a simple game dreamt to help students avoid studying becomes a bloody battle for survival in this stalk-and-slash frightener from filmmaking duo Brian Hooks and Deon Taylor.","id":"15476","runtime":100,"imdbId":"tt0462160","version":71,"lastModified":"1301905209000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70c\/4cefe7275e73d6625500070c\/7eventy-5ive-mid.jpg","title":"7eventy 5ive","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"61518"} +{"label":"Love and a .45","description":"Watty has made a living out of robbing convenience stores, but after one of these job turned into murder by his partner, the psychopath Billy Mack, he is on the run with his fianc\u00e9 Starlene and with both Billy Mack, the police and some loansharks on his trail. Their plan is to go to Mexico but before they do that they want to get married and visit Starlenes parents.","id":"15477","runtime":96,"imdbId":"tt0110395","version":106,"lastModified":"1301906606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13d\/4bc94785017a3c57fe01f13d\/love-and-a-45-mid.jpg","genre":"Crime","title":"Love and a .45","releaseDate":757382400000,"language":"en","tagline":"This is one jagged twisting ride you'll never forget.","type":"Movie","_key":"61519"} +{"label":"C.M. Talkington","version":20,"id":"78258","lastModified":"1301901811000","name":"C.M. Talkington","type":"Person","_key":"61520"} +{"label":"The Abdication","description":"No overview found.","id":"15478","runtime":103,"imdbId":"tt0071096","version":50,"lastModified":"1301418602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4bc94785017a3c57fe01f142\/the-abdication-mid.jpg","title":"The Abdication","releaseDate":149990400000,"language":"en","type":"Movie","_key":"61521"} +{"label":"Adventures of Huckleberry Finn","description":"No overview found.","id":"15479","runtime":0,"imdbId":"tt0088677","version":376,"lastModified":"1301906635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/147\/4bc94785017a3c57fe01f147\/adventures-of-huckleberry-finn-mid.jpg","title":"Adventures of Huckleberry Finn","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61522"} +{"label":"M\u00fcllers B\u00fcro","description":"No overview found.","id":"15480","runtime":104,"imdbId":"tt0091594","version":36,"lastModified":"1301908263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4bc94785017a3c57fe01f14c\/mullers-buro-mid.jpg","title":"M\u00fcllers B\u00fcro","releaseDate":504921600000,"language":"en","type":"Movie","_key":"61523"} +{"label":"Rope of Sand","description":"Story of a South African diamond mine watch over by a sadistic policeman tasked with looking out for smugglers.","id":"15481","runtime":104,"imdbId":"tt0041822","version":225,"lastModified":"1301907182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/151\/4bc94786017a3c57fe01f151\/rope-of-sand-mid.jpg","genre":"Action","title":"Rope of Sand","releaseDate":-644198400000,"language":"en","type":"Movie","_key":"61524"} +{"label":"Corinne Calvet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04a\/4c2363ad7b9aa13f6000004a\/corinne-calvet-profile.jpg","version":23,"id":"83488","lastModified":"1301902025000","name":"Corinne Calvet","type":"Person","_key":"61525"} +{"label":"John Bromfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/895\/4bfc259f017a3c7036000895\/john-bromfield-profile.jpg","version":29,"id":"87750","lastModified":"1301901982000","name":"John Bromfield","type":"Person","_key":"61526"} +{"label":"Kenny Washington","version":16,"id":"132700","lastModified":"1301902777000","name":"Kenny Washington","type":"Person","_key":"61527"} +{"label":"Edmund Breon","version":27,"id":"81291","lastModified":"1301902047000","name":"Edmund Breon","type":"Person","_key":"61528"} +{"label":"David Thursby","version":16,"id":"132701","lastModified":"1301902777000","name":"David Thursby","type":"Person","_key":"61529"} +{"label":"Josef Marais","version":16,"id":"132702","lastModified":"1301902777000","name":"Josef Marais","type":"Person","_key":"61530"} +{"label":"Miranda Marais","version":16,"id":"132703","lastModified":"1301902777000","name":"Miranda Marais","type":"Person","_key":"61531"} +{"label":"Return of the Killer Tomatoes!","description":"Crazy old Professor Gangreen has developed a way to make tomatoes look human for a second invasion.","id":"15482","runtime":0,"imdbId":"tt0095989","version":184,"lastModified":"1301906469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15a\/4bc94786017a3c57fe01f15a\/return-of-the-killer-tomatoes-mid.jpg","studio":"New World Pictures","genre":"Comedy","title":"Return of the Killer Tomatoes!","releaseDate":567993600000,"language":"en","type":"Movie","_key":"61532"} +{"label":"Michael Villani","version":20,"id":"128267","lastModified":"1301902796000","name":"Michael Villani","type":"Person","_key":"61533"} +{"label":"Harvey Weber","version":20,"id":"128268","lastModified":"1301902796000","name":"Harvey Weber","type":"Person","_key":"61534"} +{"label":"Gordon Howard","version":18,"id":"128263","lastModified":"1301902585000","name":"Gordon Howard","type":"Person","_key":"61535"} +{"label":"Devlin","version":18,"id":"128271","lastModified":"1301902594000","name":"Devlin","type":"Person","_key":"61536"} +{"label":"Costa Dillon","version":20,"id":"22357","lastModified":"1301901777000","name":"Costa Dillon","type":"Person","_key":"61537"} +{"label":"Deborah Gates","version":20,"id":"128272","lastModified":"1301902585000","name":"Deborah Gates","type":"Person","_key":"61538"} +{"label":"Steve Lundquist","version":20,"id":"121816","lastModified":"1301902796000","name":"Steve Lundquist","type":"Person","_key":"61539"} +{"label":"Karen M. Waldron","version":19,"id":"106128","lastModified":"1301902557000","name":"Karen M. Waldron","type":"Person","_key":"61540"} +{"label":"Rick Rockwell","version":21,"id":"22358","lastModified":"1301901856000","name":"Rick Rockwell","type":"Person","_key":"61541"} +{"label":"Il cartaio","description":"Policewoman Anna Mari is forced to play a dangerous game with the title serial killer. If she loses, she witnesses the maniac's tortured victims having their throats cut in explicit close-up detail via webcam. She teams up with British cop John Brennan to find out the identity of the murderer.","id":"15483","runtime":103,"imdbId":"tt0330691","version":123,"lastModified":"1301903637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/164\/4bc94787017a3c57fe01f164\/cartaio-mid.jpg","genre":"Crime","title":"Il cartaio","releaseDate":1073001600000,"language":"en","tagline":"A serial killer with a vice for Video Poker","type":"Movie","_key":"61542"} +{"label":"Silvio Muccino","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/801\/4bfc0800017a3c7031000801\/silvio-muccino-profile.jpg","biography":"Silvio Muccino (Roma, 14 aprile 1982) \u00e8 un attore cinematografico, regista e sceneggiatore italiano.","version":25,"birthday":"387583200000","id":"87010","birthplace":"Roma, Italy","lastModified":"1301902366000","name":"Silvio Muccino","type":"Person","_key":"61543"} +{"label":"Shadows","description":"Shadows is an improvisation inspired film about interracial relations during the Beat Generation years in New York City, and was written and directed by John Cassavetes. The film stars Ben Carruthers, Lelia Goldoni, Hugh Hurd, and Anthony Ray. Many film scholars consider Shadows one of the highlights of independent film in the U.S. In 1960 the film won the Critics Award at the Venice Film Festival.","id":"15484","runtime":87,"imdbId":"tt0053270","version":241,"lastModified":"1302126292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4cd4a54e7b9aa113ac0001df\/shadows-mid.jpg","genre":"Drama","title":"Shadows","releaseDate":-320025600000,"language":"en","type":"Movie","_key":"61544"} +{"label":"Hugh Hurd","version":16,"id":"146707","lastModified":"1301902782000","name":"Hugh Hurd","type":"Person","_key":"61545"} +{"label":"Anthony Ray","version":16,"id":"146708","lastModified":"1301902731000","name":"Anthony Ray","type":"Person","_key":"61546"} +{"label":"Dennis Sallas","version":16,"id":"146709","lastModified":"1301903080000","name":"Dennis Sallas","type":"Person","_key":"61547"} +{"label":"Disney Princess Enchanted Tales Follow Your Dreams","description":"Your little princess will want to follow her dreams as she tags along on an adventure with two of Disney's most popular princesses in this new animated fairy tale. Aurora, star of the beloved classic Sleeping Beauty, and Jasmine, from the Academy Award-winning film Aladdin, journey to faraway lands and make new discoveries about themselves. ","id":"15485","runtime":56,"imdbId":"tt1135924","version":172,"lastModified":"1301908303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/172\/4bc9478b017a3c57fe01f172\/disney-princess-enchanted-tales-follow-your-dreams-mid.jpg","genre":"Animation","title":"Disney Princess Enchanted Tales Follow Your Dreams","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61548"} +{"label":"The Bank","description":"The Bank, a world ripe with avarice and corruption, where O'Reilly and his ilk can thrive and honest Aussie battlers lose everything.\nEnter Jim Doyle a maverick mathematician who has devised a formula to predict the fluctuations of the stock market. When he joins O'Reilly's fold, he must first prove his loyalty to the \"greed is good\" ethos. Which way will he go? What does he have to hide?\n","id":"15486","runtime":104,"imdbId":"tt0241223","version":82,"lastModified":"1301906840000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17b\/4bc9478c017a3c57fe01f17b\/the-bank-mid.jpg","studio":"Arena Films","genre":"Drama","title":"The Bank","releaseDate":992044800000,"language":"en","type":"Movie","_key":"61549"} +{"label":"Sibylla Budd","version":17,"id":"78260","lastModified":"1301901718000","name":"Sibylla Budd","type":"Person","_key":"61550"} +{"label":"Mandy McElhinney","version":17,"id":"78261","lastModified":"1301901718000","name":"Mandy McElhinney","type":"Person","_key":"61551"} +{"label":"The Greatest Game Ever Played","description":"The Greatest Game Ever Played is a 2005 biographical sports film based on the life of 20 year old Francis Ouimet who defeated his idol,1900 US Open Champion, Harry Vardon. The film is directed by Bill Paxton; Shia LaBeouf plays the role of Ouimet. It is distributed by Walt Disney Studios. The film' screenplay was adapted by Mark Frost from his book, The Greatest Game Ever Played: Harry Vardon, Francis Ouimet, and the Birth of Modern Golf. It was shot in Montreal, Quebec.The film opened at #9 at ","id":"15487","runtime":120,"imdbId":"tt0388980","version":208,"lastModified":"1301904770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9b\/4cf166285e73d61927000e9b\/the-greatest-game-ever-played-mid.jpg","genre":"Drama","title":"The Greatest Game Ever Played","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"61552"} +{"label":"Peyton List","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4e4\/4d808b5f5e73d6724f0004e4\/peyton-list-profile.jpg","biography":"Peyton List is an American actress and model, known for playing Jane Sterling on the AMC series Mad Men and Nicole Kirby on the ABC series FlashForward. In 1996, Peyton made her first big screen appearance in Washington Square. While working on As the World Turns, List was offered the small but significant role of Sarah Wallis in Bill Paxton's The Greatest Game Ever Played. The 2005 movie was a critical and box-office success. In 2008, she starred in two independent movies - action movie Deep Wi","version":16,"birthday":"523836000000","id":"229031","birthplace":"Baltimore, Maryland, USA","lastModified":"1301904032000","name":"Peyton List","type":"Person","_key":"61553"} +{"label":"Furnace","description":"No overview found.","id":"15488","runtime":90,"imdbId":"tt0497373","version":52,"lastModified":"1300980153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/196\/4bc9478d017a3c57fe01f196\/furnace-mid.jpg","title":"Furnace","releaseDate":1202774400000,"language":"en","type":"Movie","_key":"61554"} +{"label":"Snow Day","description":"When a school in upstate New York is snowed in, a group of students hi-jack a plow to keep the school closed..","id":"15489","runtime":89,"imdbId":"tt0184907","trailer":"http:\/\/www.youtube.com\/watch?v=C8ZMRDUd8F8","version":124,"lastModified":"1301905770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19b\/4bc9478e017a3c57fe01f19b\/snow-day-mid.jpg","genre":"Comedy","title":"Snow Day","releaseDate":950227200000,"language":"en","type":"Movie","_key":"61555"} +{"label":"Homam","description":"No overview found.","id":"15490","runtime":148,"imdbId":"tt1553000","version":32,"lastModified":"1300980153000","title":"Homam","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"61556"} +{"label":"Daniels Daughter","description":"No overview found.","id":"15492","runtime":0,"imdbId":"tt1145852","version":319,"lastModified":"1301006550000","genre":"Drama","title":"Daniels Daughter","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61557"} +{"label":"Star Wreck: In the Pirkinning","description":"Star Wreck: In the Pirkinning begins with Captain James B. Pirk of the starship Kickstart shipwrecked on the 21st century Earth with his crew. Originally from the distant future, Pirk and his crew travelled back in time to save the Earth from hostile aliens, but lost their ship and became stranded. Pirk's daily routine consists mainly of stuffing his face at the local fast food restaurant, and he is finding it difficult to convince the ladies he is, in fact, an intergalactic space hero from the ","id":"15493","runtime":103,"imdbId":"tt0472566","trailer":"http:\/\/www.youtube.com\/watch?v=p8oWyU-YWDQ","homepage":"http:\/\/www.starwreck.com\/","version":88,"lastModified":"1301903680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4bc9478e017a3c57fe01f1a4\/star-wreck-in-the-pirkinning-mid.jpg","studio":"Energia Productions","genre":"Science Fiction","title":"Star Wreck: In the Pirkinning","releaseDate":1124496000000,"language":"en","type":"Movie","_key":"61558"} +{"label":"Samuli Torssonen","version":22,"id":"66213","lastModified":"1301901439000","name":"Samuli Torssonen","type":"Person","_key":"61559"} +{"label":"Atte Joutsen","version":21,"id":"122383","lastModified":"1301901515000","name":"Atte Joutsen","type":"Person","_key":"61560"} +{"label":"Antti Satama","version":20,"id":"122387","lastModified":"1301902204000","name":"Antti Satama","type":"Person","_key":"61561"} +{"label":"Karoliina Blackburn","version":20,"id":"122388","lastModified":"1301903081000","name":"Karoliina Blackburn","type":"Person","_key":"61562"} +{"label":"Janos Honkonen","version":21,"id":"122389","lastModified":"1301903065000","name":"Janos Honkonen","type":"Person","_key":"61563"} +{"label":"Seppo Honkanen","version":20,"id":"122390","lastModified":"1301903081000","name":"Seppo Honkanen","type":"Person","_key":"61564"} +{"label":"Tiina Routamaa","version":20,"id":"122391","lastModified":"1301903081000","name":"Tiina Routamaa","type":"Person","_key":"61565"} +{"label":"Jari Ahola","version":20,"id":"122392","lastModified":"1301903081000","name":"Jari Ahola","type":"Person","_key":"61566"} +{"label":"Sonja Sj\u00f6blom","version":20,"id":"122393","lastModified":"1301903081000","name":"Sonja Sj\u00f6blom","type":"Person","_key":"61567"} +{"label":"Santeri Humina","version":20,"id":"122394","lastModified":"1301903081000","name":"Santeri Humina","type":"Person","_key":"61568"} +{"label":"Ville Vuorensola","version":20,"id":"122395","lastModified":"1301903013000","name":"Ville Vuorensola","type":"Person","_key":"61569"} +{"label":"Rudi Airisto","version":20,"id":"122396","lastModified":"1301903013000","name":"Rudi Airisto","type":"Person","_key":"61570"} +{"label":"Niklas Vainio","version":20,"id":"122397","lastModified":"1301903013000","name":"Niklas Vainio","type":"Person","_key":"61571"} +{"label":"Esa Jaatinen","version":20,"id":"122398","lastModified":"1301903069000","name":"Esa Jaatinen","type":"Person","_key":"61572"} +{"label":"Pasi Rantala","version":20,"id":"122399","lastModified":"1301903013000","name":"Pasi Rantala","type":"Person","_key":"61573"} +{"label":"Sami Vaittinen","version":20,"id":"122400","lastModified":"1301903013000","name":"Sami Vaittinen","type":"Person","_key":"61574"} +{"label":"Eeva Malmberg","version":20,"id":"122401","lastModified":"1301903013000","name":"Eeva Malmberg","type":"Person","_key":"61575"} +{"label":"Kari V\u00e4\u00e4n\u00e4nen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4c499d947b9aa115fc000059\/kari-vaananen-profile.jpg","version":23,"id":"122402","lastModified":"1301902295000","name":"Kari V\u00e4\u00e4n\u00e4nen","type":"Person","_key":"61576"} +{"label":"Starflight: The Plane That Couldn't Land","description":"This is the story of Starflight One, the world's first \"hypersonic plane,\" which flies faster and higher than any other commercial jet. On the night of its maiden flight from Los Angeles to Sydney, a freak accident incolving an unauthorized rocket launch sends Starflight One out of the atmosphere and into a decaying orbit around the Earth. With no heat shielding and limited oxygen, it is up to the bravery of the crew and the ingenuity of NASA and the plane's designers to save the passengers trap","id":"15494","runtime":105,"imdbId":"tt0086357","version":57,"lastModified":"1301908269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bb\/4be47df0017a3c35b50009bb\/starflight-the-plane-that-couldn-t-land-mid.jpg","title":"Starflight: The Plane That Couldn't Land","releaseDate":410227200000,"language":"en","type":"Movie","_key":"61577"} +{"label":"The Hamiltons","description":"The Hamilton's seem to be an ordinary American family, living in a small town in Northern California and dealing with the problems of everyday life. They've also been recently adjusting to the untimely death of their parents, but since have moved on. ","id":"15495","runtime":86,"imdbId":"tt0443527","version":191,"lastModified":"1301903678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ad\/4bc9478f017a3c57fe01f1ad\/the-hamiltons-mid.jpg","genre":"Drama","title":"The Hamiltons","releaseDate":1136073600000,"language":"en","tagline":"Every Family Has Its Secrets.","type":"Movie","_key":"61578"} +{"label":"Mitchell Altieri","version":19,"id":"94917","lastModified":"1301902677000","name":"Mitchell Altieri","type":"Person","_key":"61579"} +{"label":"Phil Flores","version":19,"id":"94916","lastModified":"1301902326000","name":"Phil Flores","type":"Person","_key":"61580"} +{"label":"Samuel Child","version":16,"id":"117509","lastModified":"1301902326000","name":"Samuel Child","type":"Person","_key":"61581"} +{"label":"Al Liner","version":16,"id":"117510","lastModified":"1301902326000","name":"Al Liner","type":"Person","_key":"61582"} +{"label":"Jena Hunt","version":16,"id":"117511","lastModified":"1301902326000","name":"Jena Hunt","type":"Person","_key":"61583"} +{"label":"Nicholas Fanella","version":16,"id":"117512","lastModified":"1301902326000","name":"Nicholas Fanella","type":"Person","_key":"61584"} +{"label":"Tokyo gomi onna","description":"Miyuki doesn't need to stalk the man she's crazy about, because he lives one floor down. He's Yoshinori, a not very successful long-haired musician. Miyuki, a coffee-shop waitress, nods when they pass on the stairs, but hasn't yet dared to strike up a conversation. Instead she slips out every night and helps herself to his trash.","id":"15496","runtime":88,"imdbId":"tt0269969","version":52,"lastModified":"1301907757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b6\/4bc9478f017a3c57fe01f1b6\/tokyo-gomi-onna-mid.jpg","studio":"Kino video","genre":"Comedy","title":"Tokyo gomi onna","releaseDate":946684800000,"language":"en","type":"Movie","_key":"61585"} +{"label":"Mami Nakamura","version":16,"id":"78266","lastModified":"1301902326000","name":"Mami Nakamura","type":"Person","_key":"61586"} +{"label":"Kazuma Suzuki","version":16,"id":"78267","lastModified":"1301902326000","name":"Kazuma Suzuki","type":"Person","_key":"61587"} +{"label":"Ryuichi Hiroki","version":17,"id":"78268","lastModified":"1301902144000","name":"Ryuichi Hiroki","type":"Person","_key":"61588"} +{"label":"Twelve O'Clock High","description":"In this story of the early days of daylight bombing raids over Germany, General Frank Savage must take command of a \"hard luck\" bomber group. Much of the story deals with his struggle to whip his group into a disciplined fighting unit in spite of heavy losses, and withering attacks by German fighters over their targets. --KC Hunt","id":"15497","runtime":132,"imdbId":"tt0041996","version":121,"lastModified":"1301902666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bf\/4bc94792017a3c57fe01f1bf\/twelve-o-clock-high-mid.jpg","genre":"Action","title":"Twelve O'Clock High","releaseDate":-632102400000,"language":"en","tagline":"A story of twelve men as their women never knew them...","type":"Movie","_key":"61589"} +{"label":"Robert Arthur","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/493\/4c9a0e3a7b9aa122df000493\/robert-arthur-profile.jpg","biography":"<span style=\"font-family: Arial, Helvetica, sans-serif; color: rgb(62, 62, 62); \">Robert Arthur (June 18, 1925 \u2013 October 1, 2008) was an American motion picture actor who appeared in dozens of films in the 1940s and 1950s. Born Robert Arthaud, Arthur appeared in the 1949 war film Twelve O'Clock High as the comic relief-providing Sgt. McIllhenny, in the 1951 Billy Wilder film, Ace in the Hole, and in the 1950s television program The Lone Ranger. Arthur was known for playing youthful teenage or yo","version":33,"id":"78304","lastModified":"1301901267000","name":"Robert Arthur","type":"Person","_key":"61590"} +{"label":"John Kellogg","version":28,"id":"78305","lastModified":"1301901134000","name":"John Kellogg","type":"Person","_key":"61591"} +{"label":"Robert Patten","version":20,"id":"78306","lastModified":"1301901990000","name":"Robert Patten","type":"Person","_key":"61592"} +{"label":"Lee MacGregor","version":19,"id":"78307","lastModified":"1301902068000","name":"Lee MacGregor","type":"Person","_key":"61593"} +{"label":"Roger Anderson","version":19,"id":"78308","lastModified":"1301901864000","name":"Roger Anderson","type":"Person","_key":"61594"} +{"label":"Paul Picerni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c8\/4c9a0e887b9aa122de0004c8\/paul-picerni-profile.jpg","version":36,"id":"78309","lastModified":"1301987197000","name":"Paul Picerni","type":"Person","_key":"61595"} +{"label":"The Olsen Gang's Big Score","description":"After his usual stay behind bars, Egon has another cunning plan involving millions. They rob over 4 million from a money transport. The gang keeps a low profile and hide the money. But it's stolen by \"Kongen\" and \"Kn\u00e6gten\", who immediately start living it up - in the penthouse suite at the Sheraton. The suitcase with the money changes hands several times, before Kongen's daughter takes of with all the money.","id":"15498","runtime":99,"imdbId":"tt0069042","version":62,"lastModified":"1301904435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cd\/4bc94793017a3c57fe01f1cd\/olsen-bandens-store-kup-mid.jpg","studio":"Nordic Film","genre":"Comedy","title":"The Olsen Gang's Big Score","releaseDate":87177600000,"language":"en","type":"Movie","_key":"61596"} +{"label":"The Olsen Gang Runs Amok","description":"When Egon Olsen gets out of Vridlose State Prision once again, his friends Benny and Kjeld do not want to know about his new ingenious plan: they are actually WORKING in a shop! Thus, he has to think of something else to get his hands on the money of some international gangster.","id":"15499","runtime":100,"imdbId":"tt0070474","version":64,"lastModified":"1301905266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1db\/4bc94794017a3c57fe01f1db\/olsen-banden-gar-amok-mid.jpg","studio":"Nordic Film","genre":"Comedy","title":"The Olsen Gang Runs Amok","releaseDate":118627200000,"language":"en","type":"Movie","_key":"61597"} +{"label":"Dane Cook: Vicious Circle","description":"Vicious Circle captures the hottest comic in America in his first HBO comedy event, a unique \"in the round\" performance before his hometown Boston fans.","id":"15501","runtime":132,"imdbId":"tt0867149","version":145,"lastModified":"1301905627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ea\/4bc94798017a3c57fe01f1ea\/dane-cooks-vicious-circle-mid.jpg","studio":"Home Box Office (HBO)","genre":"Comedy","title":"Dane Cook: Vicious Circle","releaseDate":1157328000000,"language":"en","type":"Movie","_key":"61598"} +{"label":"Dream.2: Middle Weight Grandprix 2008 1st Round","description":"Dream.2 Middle Weight Grandprix 2008 1st Round was a mixed martial arts event promoted by DREAM. It took place on Tuesday, April 29, 2008 at the Saitama Super Arena in Saitama City, Japan.\n\nThe event hosted the opening round of the promotion's Middleweight Grand Prix. All bouts were conducted under DREAM Rules, (1stR x 10 min, 2ndR x 5min) in an 84 kg\/185 lbs weight class.","id":"15502","runtime":172,"version":29,"lastModified":"1301908288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f3\/4bc94799017a3c57fe01f1f3\/dream-2-middle-weight-grandprix-2008-1st-round-mid.jpg","genre":"Sports Film","title":"Dream.2: Middle Weight Grandprix 2008 1st Round","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"61599"} +{"label":"Gegard Mousasi","version":21,"id":"78282","lastModified":"1301902187000","name":"Gegard Mousasi","type":"Person","_key":"61600"} +{"label":"Ronaldo \"Jacare\" Souza","version":20,"id":"78277","lastModified":"1301902200000","name":"Ronaldo \"Jacare\" Souza","type":"Person","_key":"61601"} +{"label":"Kazushi Sakuraba","version":23,"id":"78269","lastModified":"1301902324000","name":"Kazushi Sakuraba","type":"Person","_key":"61602"} +{"label":"Andrews Nakahara","version":15,"id":"78270","lastModified":"1301901864000","name":"Andrews Nakahara","type":"Person","_key":"61603"} +{"label":"Taiei Kin","version":15,"id":"78271","lastModified":"1301901864000","name":"Taiei Kin","type":"Person","_key":"61604"} +{"label":"Ikuhisa Minowa","version":16,"id":"78272","lastModified":"1301902243000","name":"Ikuhisa Minowa","type":"Person","_key":"61605"} +{"label":"Shungo Oyama","version":15,"id":"78273","lastModified":"1301901864000","name":"Shungo Oyama","type":"Person","_key":"61606"} +{"label":"Dong Sik Yoon","version":15,"id":"78274","lastModified":"1301901864000","name":"Dong Sik Yoon","type":"Person","_key":"61607"} +{"label":"Zelg Galesic","version":15,"id":"78275","lastModified":"1301901864000","name":"Zelg Galesic","type":"Person","_key":"61608"} +{"label":"Magomed Sultanakhmedov","version":15,"id":"78276","lastModified":"1301901864000","name":"Magomed Sultanakhmedov","type":"Person","_key":"61609"} +{"label":"Ian Murphy","version":15,"id":"78278","lastModified":"1301901864000","name":"Ian Murphy","type":"Person","_key":"61610"} +{"label":"Masakatsu Funaki","version":19,"id":"78279","lastModified":"1301902243000","name":"Masakatsu Funaki","type":"Person","_key":"61611"} +{"label":"Kiyoshi Tamura","version":15,"id":"78280","lastModified":"1301901864000","name":"Kiyoshi Tamura","type":"Person","_key":"61612"} +{"label":"Around The Bend","description":"A tale of four generations of men, all of whom have had their offspring at a young age: a great-grandfather, a grandfather, a father in his twenties and a son who is about 7 years old. When the oldest member passes away, the trio heads out on the road together in the Southwest to search out an old family secret that connects to their past.","id":"15503","runtime":85,"imdbId":"tt0384810","version":191,"lastModified":"1301904515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f8\/4bc94799017a3c57fe01f1f8\/around-the-bend-mid.jpg","studio":"Warner Independent Pictures","genre":"Drama","title":"Around The Bend","releaseDate":1097193600000,"language":"en","type":"Movie","_key":"61613"} +{"label":"Jordan Roberts","version":17,"id":"78600","lastModified":"1301901608000","name":"Jordan Roberts","type":"Person","_key":"61614"} +{"label":"Eva Blaylock","version":16,"id":"78607","lastModified":"1301902068000","name":"Eva Blaylock","type":"Person","_key":"61615"} +{"label":"Carlos A. Cabarcas","version":16,"id":"78601","lastModified":"1301902068000","name":"Carlos A. Cabarcas","type":"Person","_key":"61616"} +{"label":"Jean Effron","version":16,"id":"78602","lastModified":"1301902068000","name":"Jean Effron","type":"Person","_key":"61617"} +{"label":"Rick Negron","version":18,"id":"78603","lastModified":"1302040466000","name":"Rick Negron","type":"Person","_key":"61618"} +{"label":"David Marciano","version":19,"id":"74346","lastModified":"1301901718000","name":"David Marciano","type":"Person","_key":"61619"} +{"label":"Robert Douglas Washington","version":17,"id":"119309","lastModified":"1301902633000","name":"Robert Douglas Washington","type":"Person","_key":"61620"} +{"label":"Aasma: The Sky Is the Limit","description":"Aasma is a story about lives of six friends, set out on a mission : a mission to touch the sky with their brilliance, talent and sheer dedication. The success story of a theatre group that embodies the love and togetherness amongst these friends. It\u2019s a story of people who have faith in spite of the agonies and tribulations that life presents to each of them.","id":"15504","runtime":0,"imdbId":"tt1252594","version":170,"lastModified":"1300980155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/201\/4bc94799017a3c57fe01f201\/aasma-the-sky-is-the-limit-mid.jpg","genre":"Drama","title":"Aasma: The Sky Is the Limit","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61621"} +{"label":"Nauheed Cyrusi","version":17,"id":"78283","lastModified":"1301901778000","name":"Nauheed Cyrusi","type":"Person","_key":"61622"} +{"label":"Mansi Dovhal","version":16,"id":"78284","lastModified":"1301902326000","name":"Mansi Dovhal","type":"Person","_key":"61623"} +{"label":"HDNet Fights: Furious Finishes","description":" Furious FInishes - Best knockouts and submissions on HDNet Fights","id":"15505","runtime":84,"version":17,"lastModified":"1301908424000","genre":"Sports Film","title":"HDNet Fights: Furious Finishes","releaseDate":1201824000000,"language":"en","type":"Movie","_key":"61624"} +{"label":"Agnes Brown","description":"When Agnes Browne's husband died, she discovered something amazing... Herself.","id":"15506","runtime":92,"imdbId":"tt0160509","version":99,"lastModified":"1301904614000","studio":"Hell's Kitchen Films","title":"Agnes Brown","releaseDate":942019200000,"language":"en","type":"Movie","_key":"61625"} +{"label":"Marion O'Dwyer","version":19,"id":"78285","lastModified":"1301902134000","name":"Marion O'Dwyer","type":"Person","_key":"61626"} +{"label":"Niall O'Shea","version":17,"id":"78286","lastModified":"1301901718000","name":"Niall O'Shea","type":"Person","_key":"61627"} +{"label":"Roxanna Williams","version":17,"id":"78287","lastModified":"1301902243000","name":"Roxanna Williams","type":"Person","_key":"61628"} +{"label":"Carl Power","version":17,"id":"78288","lastModified":"1301902243000","name":"Carl Power","type":"Person","_key":"61629"} +{"label":"Mark Power","version":17,"id":"78289","lastModified":"1301902243000","name":"Mark Power","type":"Person","_key":"61630"} +{"label":"Gareth O'Connor","version":17,"id":"78290","lastModified":"1301902243000","name":"Gareth O'Connor","type":"Person","_key":"61631"} +{"label":"James Lappin","version":17,"id":"78291","lastModified":"1301902243000","name":"James Lappin","type":"Person","_key":"61632"} +{"label":"Arno Chevrier","version":18,"id":"78292","lastModified":"1301902324000","name":"Arno Chevrier","type":"Person","_key":"61633"} +{"label":"June Rodgers","version":17,"id":"78293","lastModified":"1301902243000","name":"June Rodgers","type":"Person","_key":"61634"} +{"label":"Jennifer Gibney","version":17,"id":"78294","lastModified":"1301902243000","name":"Jennifer Gibney","type":"Person","_key":"61635"} +{"label":"HDNet Fights IFL 2008-05-16","description":"No overview found.","id":"15507","runtime":0,"version":13,"lastModified":"1300980156000","title":"HDNet Fights IFL 2008-05-16","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61636"} +{"label":"HDNet Fights: IFL 2008-05-16","description":"IFL Live on HDNet May 16, 2008. 3 Belts on the line and also the comeback of Chris Horodecki who was upset by Ryan Schultz in the finals of the 2007 IFL Grand Prix, failing to become the first IFL Lightweight Champion.","id":"15508","runtime":114,"version":12,"lastModified":"1300980156000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/206\/4bc9479a017a3c57fe01f206\/hdnet-fights-ifl-2008-05-16-mid.jpg","title":"HDNet Fights: IFL 2008-05-16","releaseDate":1210896000000,"language":"en","type":"Movie","_key":"61637"} +{"label":"HDNet Fights: IFL 04 04 2008","description":"No overview found.","id":"15509","runtime":0,"version":14,"lastModified":"1301908612000","title":"HDNet Fights: IFL 04 04 2008","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61638"} +{"label":"Rage Against The Machine - The Battle Of Mexico City","description":"Outside Mexico City's Sports Pavilion, hundreds of young Rage fans rattle metal fences and throw rocks at the increasingly nervous police. Inside, a seething crowd of 5,000 lucky ticket holders cram into the cavernous pavilion chanting anti-government slogans and poking their middle fingers into the thick, sweaty air while waiting for Rage Against the Machine to storm the stage.","id":"15510","runtime":68,"imdbId":"tt0280059","version":49,"lastModified":"1301904469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4bc9479a017a3c57fe01f20f\/rage-against-the-machine-the-battle-of-mexico-city-mid.jpg","genre":"Documentary","title":"Rage Against The Machine - The Battle Of Mexico City","releaseDate":982627200000,"language":"en","type":"Movie","_key":"61639"} +{"label":"Zack De La Rocha","version":16,"id":"78295","lastModified":"1301901778000","name":"Zack De La Rocha","type":"Person","_key":"61640"} +{"label":"Tim Commerford","version":16,"id":"78296","lastModified":"1301902326000","name":"Tim Commerford","type":"Person","_key":"61641"} +{"label":"Tom Morello","version":16,"id":"78299","lastModified":"1301901778000","name":"Tom Morello","type":"Person","_key":"61642"} +{"label":"Brad Wilk","version":16,"id":"78300","lastModified":"1301902326000","name":"Brad Wilk","type":"Person","_key":"61643"} +{"label":"The Pirates Who Don't Do Anything: A VeggieTales Movie","description":"Set Sail For Adventure!\r\n\r\nA boatload of beloved VeggieTales pals embark on a fun and fresh pirate adventure with their trademark humor and silly songs in The Pirates Who Don't Do Anything - A VeggieTales Movie!\r\n\r\nLarry the Cucumber, Mr. Lunt and Pa Grape find themselves on the ride of their lives when they are mysteriously whisked back to the time when pirates ruled the high seas.","id":"15511","runtime":85,"imdbId":"tt0475998","version":178,"lastModified":"1301903637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21c\/4bc9479b017a3c57fe01f21c\/the-pirates-who-don-t-do-anything-a-veggietales-movie-mid.jpg","genre":"Action","title":"The Pirates Who Don't Do Anything: A VeggieTales Movie","releaseDate":1200009600000,"language":"en","type":"Movie","_key":"61644"} +{"label":"Monsters vs. Aliens","description":"When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...","id":"15512","runtime":93,"imdbId":"tt0892782","trailer":"http:\/\/www.youtube.com\/watch?v=bxLAH3M3ywM","homepage":"http:\/\/www.monstersvsaliens.com\/","version":339,"lastModified":"1301901295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/881\/4cbaa8d65e73d67782000881\/monsters-vs-aliens-mid.jpg","studio":"Paramount Pictures","genre":"Animation","title":"Monsters vs. Aliens","releaseDate":1238112000000,"language":"en","tagline":"When aliens attack, monsters fight back.","type":"Movie","_key":"61645"} +{"label":"Kissing a Fool","description":"No overview found.","id":"15513","runtime":93,"imdbId":"tt0120723","version":97,"lastModified":"1301904178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/290\/4bc947b2017a3c57fe01f290\/kissing-a-fool-mid.jpg","genre":"Comedy","title":"Kissing a Fool","releaseDate":888537600000,"language":"en","type":"Movie","_key":"61646"} +{"label":"Ik ook van jou","description":"While camping in France, Eric and Eddy fall in with two women. Eric talks to Silke, a Ugandan studying medicine in Holland. She tells him about her life and asks about the book he's writing: it's the story of his love affair with Reza. He tells her the story and we see it in flashbacks: Reza explodes into his boring life, she's unpredictable and their relationship becomes intense.","id":"15514","runtime":99,"imdbId":"tt0239060","trailer":"http:\/\/www.youtube.com\/watch?v=1908","version":58,"lastModified":"1300980157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4bc947b3017a3c57fe01f29d\/ik-ook-van-jou-mid.jpg","genre":"Drama","title":"Ik ook van jou","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61647"} +{"label":"Angela Schijf","version":17,"id":"78302","lastModified":"1301902172000","name":"Angela Schijf","type":"Person","_key":"61648"} +{"label":"Ruud van Hemert","version":21,"id":"87918","lastModified":"1301903041000","name":"Ruud van Hemert","type":"Person","_key":"61649"} +{"label":"The 7th Voyage of Sinbad","description":"When a princess is shrunken by an evil wizard, Sinbad must undertake a quest to an island of monsters to cure her and prevent a war.","id":"15515","runtime":88,"imdbId":"tt0051337","version":399,"lastModified":"1301903409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c2\/4bc947ba017a3c57fe01f2c2\/the-7th-voyage-of-sinbad-mid.jpg","studio":"Morningside Productions","genre":"Action","title":"The 7th Voyage of Sinbad","releaseDate":-349488000000,"language":"en","type":"Movie","_key":"61650"} +{"label":"Kerwin Mathews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04d\/4cb383c87b9aa1345800004d\/kerwin-mathews-profile.jpg","version":24,"id":"91638","lastModified":"1301901944000","name":"Kerwin Mathews","type":"Person","_key":"61651"} +{"label":"Richard Eyer","version":22,"id":"83315","lastModified":"1301902324000","name":"Richard Eyer","type":"Person","_key":"61652"} +{"label":"Alec Mango","version":20,"id":"94271","lastModified":"1301902660000","name":"Alec Mango","type":"Person","_key":"61653"} +{"label":"Alfred Brown","version":19,"id":"94272","lastModified":"1301902720000","name":"Alfred Brown","type":"Person","_key":"61654"} +{"label":"Nana DeHerrera","version":20,"id":"89778","lastModified":"1301902643000","name":"Nana DeHerrera","type":"Person","_key":"61655"} +{"label":"Nino Falanga","version":19,"id":"114648","lastModified":"1301902643000","name":"Nino Falanga","type":"Person","_key":"61656"} +{"label":"Luis Guedes","version":19,"id":"114649","lastModified":"1301902643000","name":"Luis Guedes","type":"Person","_key":"61657"} +{"label":"Virgilio Teixeira","version":18,"id":"103469","lastModified":"1301902478000","name":"Virgilio Teixeira","type":"Person","_key":"61658"} +{"label":"The Last House On The Left","description":"Mari and Phyllis go to the \"big city\" to see their favorite band BloodLust. Along the way they meet up with newly escaped convict Krug and his gang. ","id":"15516","runtime":84,"imdbId":"tt0068833","version":328,"lastModified":"1301903752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d0\/4bc947bc017a3c57fe01f2d0\/the-last-house-on-the-left-mid.jpg","genre":"Horror","title":"The Last House On The Left","releaseDate":63072000000,"language":"en","type":"Movie","_key":"61659"} +{"label":"Sandra Peabody","version":21,"id":"101582","lastModified":"1301902339000","name":"Sandra Peabody","type":"Person","_key":"61660"} +{"label":"Lucy Grantham","version":18,"id":"101583","lastModified":"1301902545000","name":"Lucy Grantham","type":"Person","_key":"61661"} +{"label":"Fred J. Lincoln","version":21,"id":"100267","lastModified":"1301902361000","name":"Fred J. Lincoln","type":"Person","_key":"61662"} +{"label":"Jeramie Rain","version":18,"id":"101584","lastModified":"1301902361000","name":"Jeramie Rain","type":"Person","_key":"61663"} +{"label":"Marc Sheffler","version":19,"id":"101585","lastModified":"1301902361000","name":"Marc Sheffler","type":"Person","_key":"61664"} +{"label":"Richard Towers","version":23,"id":"32997","lastModified":"1301901786000","name":"Richard Towers","type":"Person","_key":"61665"} +{"label":"Cynthia Carr","version":18,"id":"101586","lastModified":"1301902377000","name":"Cynthia Carr","type":"Person","_key":"61666"} +{"label":"seperated from god","description":"No overview found.","id":"15518","runtime":0,"version":87,"lastModified":"1300980158000","title":"seperated from god","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61667"} +{"label":"PNYC: Portishead - Roseland New York","description":"Portishead concert in the Roseland Ballroom, New York City, on the 24th July 1997 with tracks from the albums \"Dummy\" and \"Portishead\" played by the band and a 30 piece orchestra. Written by Marco Radke {radke@krypta.aball.de}","id":"15520","runtime":93,"imdbId":"tt0133157","version":60,"lastModified":"1301907660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d9\/4bc947bf017a3c57fe01f2d9\/pnyc-portishead-roseland-new-york-mid.jpg","genre":"Music","title":"PNYC: Portishead - Roseland New York","releaseDate":912211200000,"language":"en","type":"Movie","_key":"61668"} +{"label":"Beth Gibbons","version":16,"id":"78440","lastModified":"1301902144000","name":"Beth Gibbons","type":"Person","_key":"61669"} +{"label":"Geoff Barrow","version":16,"id":"78441","lastModified":"1301901948000","name":"Geoff Barrow","type":"Person","_key":"61670"} +{"label":"Adrian Utley","version":16,"id":"78442","lastModified":"1301902144000","name":"Adrian Utley","type":"Person","_key":"61671"} +{"label":"Dave MacDonald","version":16,"id":"78443","lastModified":"1301902144000","name":"Dave MacDonald","type":"Person","_key":"61672"} +{"label":"Van God Los","description":"Two small town Dutch boys whose socially unnatural friendship is so close, they care nothing for human or divine rules and lose all grip on reality, sliding into violent crime.","id":"15525","runtime":90,"imdbId":"tt0288861","version":71,"lastModified":"1301908045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bf\/4cd7fb3d7b9aa11b270004bf\/van-god-los-mid.jpg","genre":"Thriller","title":"Van God Los","releaseDate":1051142400000,"language":"en","type":"Movie","_key":"61673"} +{"label":"Otis","description":"After being captured and tortured by the psychopath Otis, teen cheerleader Riley Lawson escapes and informs her parents, who quickly sidestep sluggish FBI agents and take matters into their own hands. But the Lawsons' revenge plan hits a snag when Otis's unusual brother enters the picture. ","id":"15527","runtime":100,"imdbId":"tt0996967","version":179,"lastModified":"1301415720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e2\/4bc947c0017a3c57fe01f2e2\/otis-mid.jpg","genre":"Horror","title":"Otis","releaseDate":1213056000000,"language":"en","type":"Movie","_key":"61674"} +{"label":"Bostin Christopher","version":16,"id":"102996","lastModified":"1301902650000","name":"Bostin Christopher","type":"Person","_key":"61675"} +{"label":"Australia: Land Beyond Time","description":"Australia: Land Beyond Time takes viewers on a breathtaking journey back in time to witness the birth and evolution of a mysterious land that harbors remnants of Earth's earliest life and many of it's strangest creatures that exist nowhere else on the planet.","id":"15530","runtime":42,"imdbId":"tt0325033","version":123,"lastModified":"1301905711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2eb\/4bc947c1017a3c57fe01f2eb\/australia-land-beyond-time-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Australia: Land Beyond Time","releaseDate":1022284800000,"language":"en","type":"Movie","_key":"61676"} +{"label":"David Flatman","version":21,"id":"136284","lastModified":"1301902485000","name":"David Flatman","type":"Person","_key":"61677"} +{"label":"Get Smart's Bruce and Lloyd Out of Control","description":"A spin-off of the Get Smart movie, centered on Bruce, a techie at CONTROL, and his nerdy analyst cohort, Lloyd. Masi Oka, Nate Torrence.","id":"15531","runtime":71,"imdbId":"tt1018723","trailer":"http:\/\/www.youtube.com\/watch?v=cf79Ai61lS8","version":245,"lastModified":"1301902866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4bc947c1017a3c57fe01f2f4\/get-smart-s-bruce-and-lloyd-out-of-control-mid.jpg","studio":"Warner Premiere","genre":"Action","title":"Get Smart's Bruce and Lloyd Out of Control","releaseDate":1214870400000,"language":"en","tagline":"Loved Get Smart? Get more!","type":"Movie","_key":"61678"} +{"label":"Masi Oka","version":20,"id":"17273","lastModified":"1301901399000","name":"Masi Oka","type":"Person","_key":"61679"} +{"label":"Nate Torrence","version":23,"id":"41565","lastModified":"1301901778000","name":"Nate Torrence","type":"Person","_key":"61680"} +{"label":"Kelly Karbacz","version":21,"id":"78319","lastModified":"1301901994000","name":"Kelly Karbacz","type":"Person","_key":"61681"} +{"label":"Bryan Callen","version":36,"id":"78320","lastModified":"1302078677000","name":"Bryan Callen","type":"Person","_key":"61682"} +{"label":"Ruben Garfias","version":23,"id":"78321","lastModified":"1301901990000","name":"Ruben Garfias","type":"Person","_key":"61683"} +{"label":"Ek Vivah Aisa Bhi","description":"No overview found.","id":"15532","runtime":126,"imdbId":"tt1194608","version":46,"lastModified":"1301905626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/302\/4bc947c2017a3c57fe01f302\/ek-vivah-aisa-bhi-mid.jpg","studio":"Rajshri Productions Pvt Ltd","genre":"Drama","title":"Ek Vivah Aisa Bhi","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"61684"} +{"label":"Sonu Sood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9de\/4d2a2f005e73d626be0039de\/sonu-sood-profile.jpg","version":24,"id":"95750","lastModified":"1301902223000","name":"Sonu Sood","type":"Person","_key":"61685"} +{"label":"Kaushik Ghatak","version":17,"id":"95751","lastModified":"1301902527000","name":"Kaushik Ghatak","type":"Person","_key":"61686"} +{"label":"Jane Eyre","description":"The T.V. adaptation of Charlotte Bronte's novel Jane Eyre is about a young woman who becomes governess to the ward of Mr. Rochester, a brooding and enigmatic man. She falls in love with him. But what secrets lie in his past and threaten to enter his future?","id":"15533","runtime":202,"imdbId":"tt0780362","version":216,"lastModified":"1301905540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30b\/4bc947c3017a3c57fe01f30b\/jane-eyre-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Jane Eyre","releaseDate":1159056000000,"language":"en","type":"Movie","_key":"61687"} +{"label":"Ruth Wilson","version":21,"id":"47720","lastModified":"1301902144000","name":"Ruth Wilson","type":"Person","_key":"61688"} +{"label":"Lorraine Ashbourne","version":18,"id":"78329","lastModified":"1301901469000","name":"Lorraine Ashbourne","type":"Person","_key":"61689"} +{"label":"Ned Irish","version":17,"id":"78330","lastModified":"1301902386000","name":"Ned Irish","type":"Person","_key":"61690"} +{"label":"Cosima Littlewood","version":16,"id":"78332","lastModified":"1301902326000","name":"Cosima Littlewood","type":"Person","_key":"61691"} +{"label":"Elsa Mollien","version":16,"id":"78333","lastModified":"1301902325000","name":"Elsa Mollien","type":"Person","_key":"61692"} +{"label":"Rebekah Staton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/073\/4cdc50627b9aa137fe000073\/rebekah-staton-profile.jpg","version":29,"id":"78334","lastModified":"1301902051000","name":"Rebekah Staton","type":"Person","_key":"61693"} +{"label":"Griffin and Phoenix","description":"GRIFFIN & PHOENIX is a poignantly funny love story about two people who face a seemingly insurmountable obstacle that may stand between them and a last chance at love.","id":"15534","runtime":102,"imdbId":"tt0460812","version":104,"lastModified":"1301903075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/314\/4bc947c4017a3c57fe01f314\/griffin-phoenix-mid.jpg","genre":"Drama","title":"Griffin and Phoenix","releaseDate":1158019200000,"language":"en","type":"Movie","_key":"61694"} +{"label":"Ed Stone","version":22,"id":"124688","lastModified":"1301903076000","name":"Ed Stone","type":"Person","_key":"61695"} +{"label":"The Summit","description":"Set on the eve of the next G8 Summit, this miniseries follows a mother's desperate struggle to bring justice to her murdered son, fallen victim to a corrupt pharmaceutical company. \r\n","id":"15535","runtime":180,"imdbId":"tt1114706","version":280,"lastModified":"1301008753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc947c4017a3c57fe01f31d\/the-summit-mid.jpg","genre":"Drama","title":"The Summit","releaseDate":1213488000000,"language":"en","type":"Movie","_key":"61696"} +{"label":"Deadline Torp","description":"No overview found.","id":"15536","runtime":116,"imdbId":"tt0448189","version":58,"lastModified":"1301848684000","studio":"NRK Drama","title":"Deadline Torp","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61697"} +{"label":"Olsen-banden over alle bjerge","id":"15537","runtime":100,"imdbId":"tt0082842","version":50,"lastModified":"1301908288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/326\/4bc947c4017a3c57fe01f326\/olsen-banden-over-alle-bjerge-mid.jpg","studio":"Nordic Film","genre":"Comedy","title":"Olsen-banden over alle bjerge","releaseDate":378172800000,"language":"en","type":"Movie","_key":"61698"} +{"label":"UFC","description":"Ultimate Fighting Championship (UFC) is a U.S.-based mixed martial arts (MMA) organization, currently recognized as the largest MMA promotion in the world- The UFC is owned and operated by Zuffa, LLC, headquartered in Las Vegas, Nevada. The UFC focuses on the heavier weight classes in MMA, to where as its sister promotion, the WEC, focuses on the lighter weights.","id":"15538","homepage":"http:\/\/www.ufc.com\/index.cfm","version":155,"lastModified":"1301904331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/334\/4bc947c6017a3c57fe01f334\/ufc-mid.jpg","title":"UFC","language":"en","type":"Movie","_key":"61699"} +{"label":"Olsen-bandens flugt over plankev\u00e6rket","description":"As usual, Egon has an ingenious plan. And, as usual, it works just fine until one of the gang members makes some kind of funny error. This time, however, even Egon's life is in danger, for some international criminals try to get rid of him by throwing him into a container filled with acid.","id":"15539","runtime":100,"imdbId":"tt0082843","version":38,"lastModified":"1301907255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/342\/4bc947ca017a3c57fe01f342\/olsen-banden-flugt-over-plankevrket-mid.jpg","studio":"Nordic Film","genre":"Comedy","title":"Olsen-bandens flugt over plankev\u00e6rket","releaseDate":372038400000,"language":"en","type":"Movie","_key":"61700"} +{"label":"Affliction: Banned","description":"Affliction: Banned a mixed martial arts event co-promoted by Affliction Clothing and Adrenaline MMA. It took place on July 19, 2008 at the Honda Center in Anaheim, California. The card at Banned featured many of the top MMA heavyweight fighters. One of em is Fedor Emelianenko fighting against former UFC Heavyweight Champion Tim Sylvia.","id":"15540","runtime":0,"version":16,"lastModified":"1301906148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/350\/4bc947cb017a3c57fe01f350\/affliction-banned-mid.jpg","title":"Affliction: Banned","releaseDate":1213833600000,"language":"en","type":"Movie","_key":"61701"} +{"label":"Affliction: Day of Reckoning","description":"Affliction: Day of Reckoning a mixed martial arts event promoted by Affliction Entertainment on January 24, 2009, in Anaheim, California at the Honda Center. It was originally scheduled for October 11, 2008, at the Thomas and Mack Center in Las Vegas, Nevada with a different fight card.","id":"15541","runtime":179,"version":56,"lastModified":"1301416701000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35d\/4bc947cc017a3c57fe01f35d\/affliction-day-of-reckoning-mid.jpg","genre":"Sports Film","title":"Affliction: Day of Reckoning","releaseDate":1232755200000,"language":"en","type":"Movie","_key":"61702"} +{"label":"Fedor Emelianenko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6a1\/4cbef3807b9aa138d60016a1\/fedor-emelianenko-profile.jpg","version":28,"id":"78551","lastModified":"1301901670000","name":"Fedor Emelianenko","type":"Person","_key":"61703"} +{"label":"Josh Barnett","version":28,"id":"78553","lastModified":"1301902181000","name":"Josh Barnett","type":"Person","_key":"61704"} +{"label":"Gilbert Yvel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c6\/4c14710a7b9aa104580000c6\/gilbert-yvel-profile.jpg","version":25,"id":"78554","lastModified":"1301902362000","name":"Gilbert Yvel","type":"Person","_key":"61705"} +{"label":"Stiletto","description":"A methodical female assassin is stalking and killing members of a ruthless criminal organization. ","id":"15542","runtime":99,"imdbId":"tt1027747","trailer":"http:\/\/www.youtube.com\/watch?v=1036","version":144,"lastModified":"1301904558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4bc947cd017a3c57fe01f366\/stiletto-mid.jpg","studio":"Vallelonga Productions","genre":"Action","title":"Stiletto","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"61706"} +{"label":"Paul Sloan","version":17,"id":"78335","lastModified":"1301901718000","name":"Paul Sloan","type":"Person","_key":"61707"} +{"label":"Nick Vallelonga","version":17,"id":"78336","lastModified":"1301901718000","name":"Nick Vallelonga","type":"Person","_key":"61708"} +{"label":"Penny Dreadful","description":"Young Penny goes on a retreat with her psychologist; the intention is to help her overcome her phobia, an intense fear of cars. Unexpected events find her in a nightmarish situation where her worst fears come true.","id":"15543","runtime":92,"imdbId":"tt0454224","version":142,"lastModified":"1301904879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/386\/4bc947ce017a3c57fe01f386\/penny-dreadful-mid.jpg","studio":"Brandes Films International","genre":"Horror","title":"Penny Dreadful","releaseDate":1163808000000,"language":"en","type":"Movie","_key":"61709"} +{"label":"Richard Brandes","version":17,"id":"92559","lastModified":"1301902633000","name":"Richard Brandes","type":"Person","_key":"61710"} +{"label":"Extreme Movie","description":"A sketch comedy movie about the joys and embarrassments of teen sex. But mostly the embarrassments.","id":"15544","runtime":88,"imdbId":"tt0806147","version":218,"lastModified":"1302034196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/394\/4bc947d2017a3c57fe01f394\/extreme-movie-mid.jpg","studio":"FlipZide Pictures","genre":"Comedy","title":"Extreme Movie","releaseDate":1228435200000,"language":"en","tagline":"UNRATED. A film with many happy endings...","type":"Movie","_key":"61711"} +{"label":"Ryan Pinkston","version":21,"id":"78341","lastModified":"1301901493000","name":"Ryan Pinkston","type":"Person","_key":"61712"} +{"label":"Cherilyn Wilson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a1\/4bf20eb3017a3c320f0002a1\/cherilyn-wilson-profile.jpg","version":22,"id":"78342","lastModified":"1301902149000","name":"Cherilyn Wilson","type":"Person","_key":"61713"} +{"label":"Adam Jay Epstein","version":25,"id":"66514","lastModified":"1301901612000","name":"Adam Jay Epstein","type":"Person","_key":"61714"} +{"label":"Andrew Jacobson","version":25,"id":"66517","lastModified":"1301901875000","name":"Andrew Jacobson","type":"Person","_key":"61715"} +{"label":"Cirque du Soleil: Quidam","description":"A young girl has already seen everything there is to see and her world has lost all meaning. Her anger shatters her world and she finds herself in the universe of QUIDAM, where she is joined by a playful companion, as well as another mysterious character who attempts to seduce her with the marvelous, the unsettling and the terrifying.","id":"15546","runtime":90,"imdbId":"tt0219593","version":64,"lastModified":"1301903371000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b5\/4bc947d5017a3c57fe01f3b5\/cirque-du-soleil-quidam-mid.jpg","title":"Cirque du Soleil: Quidam","releaseDate":820454400000,"language":"en","type":"Movie","_key":"61716"} +{"label":"Cirque du Soleil: La Nouba","description":"No overview found.","id":"15547","runtime":0,"imdbId":"tt0783495","version":78,"lastModified":"1301901727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c7\/4bc947d6017a3c57fe01f3c7\/cirque-du-soleil-la-nouba-mid.jpg","title":"Cirque du Soleil: La Nouba","releaseDate":883612800000,"language":"en","type":"Movie","_key":"61717"} +{"label":"Cirque du Soleil: Dralion","description":"This program presents the dazzling nouveau circus troupe Cirque du Soleil in performance. Their 2001 edition of circus theater features extravagant costumes, lighting, and sets to thrill audiences accustomed to the company's unique productions. A troupe of Chinese acrobats are shown winning the admiration of the audience.","id":"15548","runtime":89,"imdbId":"tt0276866","version":61,"lastModified":"1301903579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d9\/4bc947d8017a3c57fe01f3d9\/cirque-du-soleil-dralion-mid.jpg","title":"Cirque du Soleil: Dralion","releaseDate":946684800000,"language":"en","type":"Movie","_key":"61718"} +{"label":"Cirque du Soleil: Alegria","description":"A far cry from the dialogue-free circus performances Cirque du Soleil is known for, Alegria chronicles the fate of a small boy who has been forced into slavery. Eventually, he learns that in order to free himself and the other children, he must defeat a fire-breathing or an equally tough but decidedly more philosophical inner dragon.","id":"15549","runtime":93,"imdbId":"tt0312571","version":97,"lastModified":"1301414869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e7\/4bc947d9017a3c57fe01f3e7\/cirque-du-soleil-alegria-mid.jpg","title":"Cirque du Soleil: Alegria","releaseDate":978307200000,"language":"en","type":"Movie","_key":"61719"} +{"label":"Cirque du Soleil: Saltimbanco","description":"From the Italian \"saltare in banco\", which literally means \"to jump on a bench\" - Saltimbanco explores the urban experience in all its myriad forms. Between whirlwind and lull, prowess and poetry, it takes spectators on an allegorical and acrobatic journey into the heart and soul of the modern city.","id":"15550","runtime":56,"imdbId":"tt0141799","version":128,"lastModified":"1301904267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/401\/4bc947db017a3c57fe01f401\/cirque-du-soleil-saltimbanco-mid.jpg","title":"Cirque du Soleil: Saltimbanco","releaseDate":852076800000,"language":"en","type":"Movie","_key":"61720"} +{"label":"Cirque du Soleil: Corteo","description":"Corteo, which means \"cortege\" in Italian, is a joyous procession, a festive parade imagined by a clown. The show brings together the passion of the actor with the grace and power of the acrobat to plunge the audience into a theatrical world of fun, comedy and spontaneity situated in a mysterious space between heaven and earth.","id":"15551","runtime":101,"imdbId":"tt1190708","version":96,"lastModified":"1301904420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/413\/4bc947df017a3c57fe01f413\/cirque-du-soleil-corteo-mid.jpg","title":"Cirque du Soleil: Corteo","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"61721"} +{"label":"Mauro Mozzani","version":20,"id":"80408","lastModified":"1301902185000","name":"Mauro Mozzani","type":"Person","_key":"61722"} +{"label":"Sean Lomax","version":20,"id":"80409","lastModified":"1301902544000","name":"Sean Lomax","type":"Person","_key":"61723"} +{"label":"Igor Issakov","version":20,"id":"80410","lastModified":"1301902374000","name":"Igor Issakov","type":"Person","_key":"61724"} +{"label":"Valentyna Pahlevanyan","version":20,"id":"80411","lastModified":"1301901990000","name":"Valentyna Pahlevanyan","type":"Person","_key":"61725"} +{"label":"Grigor Pahlevanyan","version":20,"id":"80412","lastModified":"1301901810000","name":"Grigor Pahlevanyan","type":"Person","_key":"61726"} +{"label":"Victorino Lujan","version":20,"id":"80413","lastModified":"1301902525000","name":"Victorino Lujan","type":"Person","_key":"61727"} +{"label":"Cirque du Soleil: Varekai","description":"Icarus (Anton Chelnokov) is the main character of Varekai, who falls to the ground, breaking his legs as he does. He is suddenly in a strange, new world full of creatures he has never seen before. \"Parachuted into the shadows of a magical forest, a kaleidoscopic world populated by fantastical creatures, this young man sets off on an adventure both absurd and extraordinary.","id":"15552","runtime":0,"imdbId":"tt0368647","version":223,"lastModified":"1301904426000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/420\/4bc947e0017a3c57fe01f420\/cirque-du-soleil-varekai-mid.jpg","title":"Cirque du Soleil: Varekai","releaseDate":1055548800000,"language":"en","type":"Movie","_key":"61728"} +{"label":"The Triumph of the Nerds: The Rise of Accidental Empires","description":"It happened more or less by accident; the people who made it happen were amateurs; and for the most part they still are. From his own Silicon Valley garage, author Bob Cringley puts PC bigshots and nerds on the spot, and tells their incredible true stories. Like the industry itself, the series is informative, funny and brash.","id":"15554","runtime":0,"imdbId":"tt0115398","version":34,"lastModified":"1301905310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42e\/4bc947e1017a3c57fe01f42e\/the-triumph-of-the-nerds-the-rise-of-accidental-empires-mid.jpg","title":"The Triumph of the Nerds: The Rise of Accidental Empires","releaseDate":835401600000,"language":"en","type":"Movie","_key":"61729"} +{"label":"Chop Shop","description":"Alejandro, a tough and ambitious Latino street orphan on the verge of adolescence, lives and works in an auto-body repair shop in a sprawling junkyard on the outskirts of Queens, New York. In this chaotic world of adults, young Alejandro struggles to make a better life for himself and his 16-year-old sister, Isamar.","id":"15555","runtime":84,"imdbId":"tt0990404","version":162,"lastModified":"1301905770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/440\/4bc947e2017a3c57fe01f440\/chop-shop-mid.jpg","genre":"Drama","title":"Chop Shop","releaseDate":1179705600000,"language":"en","type":"Movie","_key":"61730"} +{"label":"Alejandro Polanco","version":16,"id":"78379","lastModified":"1301902068000","name":"Alejandro Polanco","type":"Person","_key":"61731"} +{"label":"Isamar Gonzales","version":16,"id":"78380","lastModified":"1301902068000","name":"Isamar Gonzales","type":"Person","_key":"61732"} +{"label":"Carlos Zapata","version":16,"id":"78381","lastModified":"1301902068000","name":"Carlos Zapata","type":"Person","_key":"61733"} +{"label":"Rob Sowulski","version":16,"id":"78382","lastModified":"1301901864000","name":"Rob Sowulski","type":"Person","_key":"61734"} +{"label":"At First Sight","description":"A blind man has an operation to regain his sight at the urging of his girlfriend and must deal with the changes to his life. ","id":"15556","runtime":128,"imdbId":"tt0132512","version":149,"lastModified":"1301906258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae9\/4d4c78725e73d617c1001ae9\/at-first-sight-mid.jpg","genre":"Drama","title":"At First Sight","releaseDate":916358400000,"language":"en","type":"Movie","_key":"61735"} +{"label":"Grand Canyon Adventure: River at Risk","description":"A documentary about a 15-day river-rafting trip on the Colorado River aimed at highlighting water conservation issues.","id":"15557","runtime":44,"imdbId":"tt0858497","homepage":"http:\/\/www.grandcanyonadventurefilm.com\/","version":414,"lastModified":"1301902944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc947e4017a3c57fe01f469\/grand-canyon-adventure-river-at-risk-mid.jpg","studio":"MacGillivray Freeman Films","genre":"Adventure","title":"Grand Canyon Adventure: River at Risk","releaseDate":1205280000000,"language":"en","type":"Movie","_key":"61736"} +{"label":"Greg MacGillivray","version":32,"id":"90223","lastModified":"1301902141000","name":"Greg MacGillivray","type":"Person","_key":"61737"} +{"label":"Journey to the End of the Night","description":"In a dark and decadent area of S\u00e3o Paulo, the exiled Americans Sinatra and his son Paul own a brothel. Paul is a compulsive gambler addicted in cocaine and his father is married with the former prostitute Angie, and they have a little son. When a client is killed by his wife in their establishment, they find a suitcase with drugs.","id":"15558","runtime":88,"imdbId":"tt0454879","version":315,"lastModified":"1301905958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47a\/4bc947e5017a3c57fe01f47a\/journey-to-the-end-of-the-night-mid.jpg","genre":"Drama","title":"Journey to the End of the Night","releaseDate":1145577600000,"language":"en","type":"Movie","_key":"61738"} +{"label":"Eric Eason","version":15,"id":"151092","lastModified":"1301903412000","name":"Eric Eason","type":"Person","_key":"61739"} +{"label":"Ruy Polanah","version":5,"id":"229254","lastModified":"1300388000000","name":"Ruy Polanah","type":"Person","_key":"61740"} +{"label":"Destiny in Space","description":"Travel alongside the astronauts as they deploy and repair the Hubble Space Telescope, soar above Venus and Mars, and find proof of new planets and the possibility of other life forming around distant stars.","id":"15559","runtime":40,"imdbId":"tt0109609","version":63,"lastModified":"1301904615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/483\/4bc947e8017a3c57fe01f483\/destiny-in-space-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Destiny in Space","releaseDate":758764800000,"language":"en","type":"Movie","_key":"61741"} +{"label":"Mission to Mir","description":"This film shows how far we have come since the cold-war days of the 50s and 60s. Back then the Russians were our \"enemies\". And to them the Americans were their \"enemies\" who couldn't be trusted. Somewhere in all this a young girl in Oklahoma named Shannon set her sights on becoming one of those space explorers, even though she was told \"girls can't do that.\" But she did.","id":"15560","runtime":40,"imdbId":"tt0119682","version":68,"lastModified":"1301908615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48c\/4bc947e9017a3c57fe01f48c\/mission-to-mir-mid.jpg","title":"Mission to Mir","releaseDate":877046400000,"language":"en","type":"Movie","_key":"61742"} +{"label":"Straight Up: Helicopters in Action","description":"Straight Up: Helicopters in Action will take audiences on a series of aerial adventures. Fly along with skilled helicopter crews as they carry out sea and mountain rescues, apprehend drug smugglers, repair high voltage lines, save endangered animals, deliver humanitarian aid, and undertake a reconnaissance mission. Learn how helicopters are flown.","id":"15563","runtime":42,"imdbId":"tt0330936","version":324,"lastModified":"1301907384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a7\/4bc947eb017a3c57fe01f4a7\/straight-up-helicopters-in-action-mid.jpg","title":"Straight Up: Helicopters in Action","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61743"} +{"label":"Wolves","description":"A look at the great wolf debate with comments and views from people on both sides. It also contains footage of Natives dressing up & doing tribal dances. The link between wolves, bison, and Native Americans; as well as white man's reasoning behind their determination to eliminate bison and wolves from the landscape.","id":"15564","runtime":40,"imdbId":"tt0226648","version":365,"lastModified":"1301908306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b0\/4bc947ec017a3c57fe01f4b0\/wolves-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Wolves","releaseDate":920246400000,"language":"en","type":"Movie","_key":"61744"} +{"label":"David Douglas","version":25,"id":"95759","lastModified":"1301902185000","name":"David Douglas","type":"Person","_key":"61745"} +{"label":"Surviving Christmas","description":"Drew Latham is an executive leading an empty, shallow life with only wealth on his side. Facing another lonely Christmas ahead, Drew wants to revisit his old childhood home and possibly relive some old holiday memories. But when he arrives, he finds that the house he was raised in is no longer the home he grew up in. Inhabited by another family, Drew offers a nice financial reward that has the fam","id":"15566","runtime":91,"imdbId":"tt0252028","version":182,"lastModified":"1301903623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c2\/4bc947ed017a3c57fe01f4c2\/surviving-christmas-mid.jpg","genre":"Comedy","title":"Surviving Christmas","releaseDate":1098403200000,"language":"en","type":"Movie","_key":"61746"} +{"label":"Bill Macy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29c\/4cb5c6087b9aa138da00029c\/bill-macy-profile.jpg","version":27,"id":"17695","lastModified":"1301901553000","name":"Bill Macy","type":"Person","_key":"61747"} +{"label":"Tangie Ambrose","version":19,"id":"97260","lastModified":"1301902907000","name":"Tangie Ambrose","type":"Person","_key":"61748"} +{"label":"John 'B.J.' Bryant","version":19,"id":"97261","lastModified":"1301903065000","name":"John 'B.J.' Bryant","type":"Person","_key":"61749"} +{"label":"Stitch! The Movie","description":"The continuing adventures of Lilo, a little Hawaiian girl, and Stitch, the galaxy's most wanted extraterrestrial. Stitch, Pleakley, and Dr. Jumba are all part of the household now. But what Lilo and Stitch don't know is that Dr. Jumba brought one of his alien \"experiments\" to Hawaii.","id":"15567","runtime":60,"imdbId":"tt0348124","version":226,"lastModified":"1301903075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/626\/4d3904b77b9aa1614e000626\/stitch-the-movie-mid.jpg","genre":"Animation","title":"Stitch! The Movie","releaseDate":1061856000000,"language":"en","tagline":"Stitch was Experiment 626...meet the other 625!","type":"Movie","_key":"61750"} +{"label":"Gracie","description":"This is the story of a teenager named Gracie Bowen, who lives in South Orange, New Jersey, is crazy about soccer, as are her three brothers and former soccer star father. Although Gracie wants to join her brothers and father in the nightly practices, she is discouraged by everyone except her elder brother, Johnny. Her father does not believe that girls should play soccer and tells her that she is neither tough enough nor talented enough to play with the boys team. Undeterred, Gracie finds reserv","id":"15568","runtime":97,"imdbId":"tt0441007","version":212,"lastModified":"1301905398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e5\/4bc947f3017a3c57fe01f4e5\/gracie-mid.jpg","genre":"Drama","title":"Gracie","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"61751"} +{"label":"Jesse Lee Soffer","version":18,"id":"90743","lastModified":"1301902068000","name":"Jesse Lee Soffer","type":"Person","_key":"61752"} +{"label":"Karl Girolamo","version":17,"id":"90744","lastModified":"1301902361000","name":"Karl Girolamo","type":"Person","_key":"61753"} +{"label":"Vasilios Mantagas","version":16,"id":"90745","lastModified":"1301902243000","name":"Vasilios Mantagas","type":"Person","_key":"61754"} +{"label":"Donny Gray","version":16,"id":"90746","lastModified":"1301902464000","name":"Donny Gray","type":"Person","_key":"61755"} +{"label":"Emma Bell Clifton","version":19,"id":"89520","lastModified":"1301902322000","name":"Emma Bell Clifton","type":"Person","_key":"61756"} +{"label":"Hunter Schroeder","version":16,"id":"90747","lastModified":"1301902633000","name":"Hunter Schroeder","type":"Person","_key":"61757"} +{"label":"Trevor Heins","version":16,"id":"90748","lastModified":"1301902888000","name":"Trevor Heins","type":"Person","_key":"61758"} +{"label":"Andrew Shue","version":16,"id":"90749","lastModified":"1301902888000","name":"Andrew Shue","type":"Person","_key":"61759"} +{"label":"Bomb It","description":"Through interviews and guerilla footage of graffiti writers in action on five continents, the documentary tells the story of graffiti from its origins in prehistoric cave paintings thru its notorious explosion in New York City during the 70\u2019s and 80\u2019s, then follows the flames as they paint the globe.","id":"15570","runtime":93,"imdbId":"tt1002535","trailer":"http:\/\/www.youtube.com\/watch?v=oi1mo3ngfUs","homepage":"http:\/\/bombit-themovie.com\/","version":89,"lastModified":"1301908004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f7\/4bc947f4017a3c57fe01f4f7\/bomb-it-mid.jpg","studio":"Antidote Films","genre":"Documentary","title":"Bomb It","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"61760"} +{"label":"Jon Reiss","version":17,"id":"78391","lastModified":"1301902363000","name":"Jon Reiss","type":"Person","_key":"61761"} +{"label":"Deep Winter","description":"Maverick downhill racer, Tyler Crowe, reunites with best friend and renegade snowboarder, Mark Rider. It doesn't take long for the old friends to take on a new mission. Together they head to Alaska, where led by a veteran guide, the two attempt the most daring descent on snow ever caught on film. But with glory comes risk. And this challenge is no exception.","id":"15571","runtime":0,"imdbId":"tt0780500","version":163,"lastModified":"1301907501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fc\/4bc947f4017a3c57fe01f4fc\/deep-winter-mid.jpg","genre":"Action","title":"Deep Winter","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"61762"} +{"label":"The Cowboys","description":"When his cattle drivers abandon him for the gold fields, rancher Wil Andersen is forced to take on a collection of young boys as his drivers in order to get his herd to market in time to avoid financial disaster. The boys learn to do a man's job under Andersen's tutelage, however, neither Andersen nor the boys know that a gang of cattle thieves is stalking them.","id":"15573","runtime":131,"imdbId":"tt0068421","version":235,"lastModified":"1301903277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/501\/4bc947f5017a3c57fe01f501\/the-cowboys-mid.jpg","genre":"Action","title":"The Cowboys","releaseDate":67737600000,"language":"en","type":"Movie","_key":"61763"} +{"label":"Alfred Barker Jr.","version":18,"id":"78392","lastModified":"1301902191000","name":"Alfred Barker Jr.","type":"Person","_key":"61764"} +{"label":"Nicolas Beauvy","version":17,"id":"78393","lastModified":"1301902164000","name":"Nicolas Beauvy","type":"Person","_key":"61765"} +{"label":"Steve Benedict","version":17,"id":"78394","lastModified":"1301902164000","name":"Steve Benedict","type":"Person","_key":"61766"} +{"label":"Norman Howell","version":17,"id":"78395","lastModified":"1301902164000","name":"Norman Howell","type":"Person","_key":"61767"} +{"label":"Stephen R. Hudis","version":17,"id":"78396","lastModified":"1301902164000","name":"Stephen R. Hudis","type":"Person","_key":"61768"} +{"label":"Sean Kelly","version":19,"id":"78397","lastModified":"1301902164000","name":"Sean Kelly","type":"Person","_key":"61769"} +{"label":"A Martinez","version":25,"id":"78398","lastModified":"1301901572000","name":"A Martinez","type":"Person","_key":"61770"} +{"label":"Clay O'Brien","version":17,"id":"78399","lastModified":"1301902164000","name":"Clay O'Brien","type":"Person","_key":"61771"} +{"label":"Sam O'Brien","version":17,"id":"78400","lastModified":"1301902164000","name":"Sam O'Brien","type":"Person","_key":"61772"} +{"label":"Mike Pyeatt","version":17,"id":"78401","lastModified":"1301902164000","name":"Mike Pyeatt","type":"Person","_key":"61773"} +{"label":"Roy Jones Jr's Greatest Knockouts","description":"Roy Jones Jr's Host a look back on some of his knockout wins. More the most part this is Jones just beat the hell out of people I don't remember it once show Jones even getting hit back with good shots. A good watch if you like Jones style.","id":"15574","runtime":60,"imdbId":"tt0466251","version":68,"lastModified":"1300980167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50a\/4bc947f5017a3c57fe01f50a\/roy-jones-jr-s-greatest-knockouts-mid.jpg","genre":"Sports Film","title":"Roy Jones Jr's Greatest Knockouts","releaseDate":1115078400000,"language":"en","type":"Movie","_key":"61774"} +{"label":"Bleach: Memories of Nobody","description":"In Karakura Town, unidentifiable spirits begin appearing en mases. While attempting to deal with these strange souls, Ichigo Kurosaki and Rukia Kuchiki meet Senna, a mysterious shinigami who wipes out most of them. Senna refuses to answer any questions, so Ichigo is forced to follow her while Rukia tries to find out what's going on.","id":"15575","runtime":87,"imdbId":"tt1105263","homepage":"http:\/\/www.bleach-movie.com\/","version":190,"lastModified":"1301905469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/513\/4bc947f6017a3c57fe01f513\/bleach-memories-of-nobody-mid.jpg","studio":"Toho Company","genre":"Animation","title":"Bleach: Memories of Nobody","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"61775"} +{"label":"Masakazu Morita","version":23,"id":"78402","lastModified":"1301901835000","name":"Masakazu Morita","type":"Person","_key":"61776"} +{"label":"Fumiko Orikasa","version":28,"id":"23988","lastModified":"1301901562000","name":"Fumiko Orikasa","type":"Person","_key":"61777"} +{"label":"Chiwa Saito","version":33,"id":"81245","lastModified":"1301902488000","name":"Chiwa Saito","type":"Person","_key":"61778"} +{"label":"Masashi Ebara","version":13,"id":"216583","lastModified":"1301903972000","name":"Masashi Ebara","type":"Person","_key":"61779"} +{"label":"Tomoko Kawakami","version":21,"id":"124476","lastModified":"1301902573000","name":"Tomoko Kawakami","type":"Person","_key":"61780"} +{"label":"Keiji Okuda","version":13,"id":"222385","lastModified":"1301903972000","name":"Keiji Okuda","type":"Person","_key":"61781"} +{"label":"Mitsuaki Madono","version":15,"id":"222386","lastModified":"1301903973000","name":"Mitsuaki Madono","type":"Person","_key":"61782"} +{"label":"Hiroshi Matsumoto","version":13,"id":"215106","lastModified":"1301903972000","name":"Hiroshi Matsumoto","type":"Person","_key":"61783"} +{"label":"Yoko Soumi","version":17,"id":"148448","lastModified":"1301902665000","name":"Yoko Soumi","type":"Person","_key":"61784"} +{"label":"Daisuke Egawa","version":13,"id":"222387","lastModified":"1301903647000","name":"Daisuke Egawa","type":"Person","_key":"61785"} +{"label":"Hajime Iijima","version":13,"id":"222388","lastModified":"1301903647000","name":"Hajime Iijima","type":"Person","_key":"61786"} +{"label":"Takashi Kondo","version":13,"id":"222389","lastModified":"1301903647000","name":"Takashi Kondo","type":"Person","_key":"61787"} +{"label":"Kentarou Itou","version":13,"id":"222390","lastModified":"1301903647000","name":"Kentarou Itou","type":"Person","_key":"61788"} +{"label":"Jun Fukuyama","version":26,"id":"131563","lastModified":"1302042353000","name":"Jun Fukuyama","type":"Person","_key":"61789"} +{"label":"Taro Yamaguchi","version":33,"id":"83936","lastModified":"1302069086000","name":"Taro Yamaguchi","type":"Person","_key":"61790"} +{"label":"Takako Honda","version":47,"id":"79004","lastModified":"1301901985000","name":"Takako Honda","type":"Person","_key":"61791"} +{"label":"Katsuyuki Konishi","version":31,"id":"24647","lastModified":"1302042353000","name":"Katsuyuki Konishi","type":"Person","_key":"61792"} +{"label":"Romi Paku","version":15,"id":"222391","lastModified":"1301903972000","name":"Romi Paku","type":"Person","_key":"61793"} +{"label":"Rintarou Nishi","version":15,"id":"222392","lastModified":"1301903972000","name":"Rintarou Nishi","type":"Person","_key":"61794"} +{"label":"Noriaki Sugiyama","version":30,"id":"82056","lastModified":"1301901975000","name":"Noriaki Sugiyama","type":"Person","_key":"61795"} +{"label":"Tetsu Inada","version":32,"id":"126704","lastModified":"1301902803000","name":"Tetsu Inada","type":"Person","_key":"61796"} +{"label":"Ryotaro Okiayu","version":15,"id":"222393","lastModified":"1301903647000","name":"Ryotaro Okiayu","type":"Person","_key":"61797"} +{"label":"Tomoe Sakuragawa","version":13,"id":"216450","lastModified":"1301903647000","name":"Tomoe Sakuragawa","type":"Person","_key":"61798"} +{"label":"Ryusei Nakao","version":15,"id":"222394","lastModified":"1301903972000","name":"Ryusei Nakao","type":"Person","_key":"61799"} +{"label":"Hisayo Mochizuki","version":15,"id":"222395","lastModified":"1301903647000","name":"Hisayo Mochizuki","type":"Person","_key":"61800"} +{"label":"Akio Ootsuka","version":15,"id":"222396","lastModified":"1301903647000","name":"Akio Ootsuka","type":"Person","_key":"61801"} +{"label":"Nobuyuki Hiyama","version":26,"id":"90137","lastModified":"1301902650000","name":"Nobuyuki Hiyama","type":"Person","_key":"61802"} +{"label":"Kaya Matsutani","version":15,"id":"222398","lastModified":"1301903647000","name":"Kaya Matsutani","type":"Person","_key":"61803"} +{"label":"Hiroki Yasumoto","version":13,"id":"216448","lastModified":"1301903647000","name":"Hiroki Yasumoto","type":"Person","_key":"61804"} +{"label":"Miho Saiki","version":13,"id":"222399","lastModified":"1301903647000","name":"Miho Saiki","type":"Person","_key":"61805"} +{"label":"Kiyoyuki Yanada","version":13,"id":"216454","lastModified":"1301903647000","name":"Kiyoyuki Yanada","type":"Person","_key":"61806"} +{"label":"Noriko Shitaya","version":15,"id":"216451","lastModified":"1301903647000","name":"Noriko Shitaya","type":"Person","_key":"61807"} +{"label":"Hideo Ishikawa","version":13,"id":"222401","lastModified":"1301903647000","name":"Hideo Ishikawa","type":"Person","_key":"61808"} +{"label":"Aya Hisakawa","version":25,"id":"124478","lastModified":"1301902678000","name":"Aya Hisakawa","type":"Person","_key":"61809"} +{"label":"Shinichiro Miki","version":24,"id":"116676","lastModified":"1301902427000","name":"Shinichiro Miki","type":"Person","_key":"61810"} +{"label":"Masaaki Tsukada","version":32,"id":"126701","lastModified":"1301902804000","name":"Masaaki Tsukada","type":"Person","_key":"61811"} +{"label":"Noriyuki Abe","version":19,"id":"90048","lastModified":"1301902143000","name":"Noriyuki Abe","type":"Person","_key":"61812"} +{"label":"Bellamy","description":"A well known Parisian inspector becomes involved in an investigation while on holiday.","id":"15576","runtime":110,"imdbId":"tt1188983","version":130,"lastModified":"1301905768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/528\/4bc947f9017a3c57fe01f528\/bellamy-mid.jpg","studio":"TFM Distribution","genre":"Drama","title":"Bellamy","releaseDate":1235520000000,"language":"en","type":"Movie","_key":"61813"} +{"label":"Adrienne Pauly","version":16,"id":"78403","lastModified":"1301902243000","name":"Adrienne Pauly","type":"Person","_key":"61814"} +{"label":"Crossing Over","description":"Immigrants from around the world enter Los Angeles every day, with hopeful visions of a better life, but little notion of what that life may cost. Their desperate scenarios test the humanity of immigration enforcement officers. In Crossing Over, writer-director Wayne Kramer explores the allure of the American dream, and the reality that immigrants find \u2013 and create -- in 21st century L.A.","id":"15577","runtime":140,"imdbId":"tt0924129","trailer":"http:\/\/www.youtube.com\/watch?v=VDJZem3mq2M","version":219,"lastModified":"1301906217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/539\/4bc947fa017a3c57fe01f539\/crossing-over-mid.jpg","studio":"The Weinstein Company","genre":"Drama","title":"Crossing Over","releaseDate":1235692800000,"language":"en","type":"Movie","_key":"61815"} +{"label":"Melody Zara","version":21,"id":"78407","lastModified":"1301901511000","name":"Melody Zara","type":"Person","_key":"61816"} +{"label":"Merik Tadros","version":20,"id":"78408","lastModified":"1301901582000","name":"Merik Tadros","type":"Person","_key":"61817"} +{"label":"Rallybrudar","description":"\u201dRallybrudar\u201d utspelas i V\u00e4rmland p\u00e5 60-talet och handlar om Ulla och Birgitta som ger sig in i den manligaste av v\u00e4rldar \u2013 rally.","id":"15578","runtime":99,"imdbId":"tt1139805","version":67,"lastModified":"1302079170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/546\/4bc947ff017a3c57fe01f546\/rallybrudar-mid.jpg","studio":"Svenska Filminstitutet","genre":"Comedy","title":"Rallybrudar","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"61818"} +{"label":"Lena Koppel","version":26,"id":"78409","lastModified":"1302079169000","name":"Lena Koppel","type":"Person","_key":"61819"} +{"label":"Marie Robertson","version":22,"id":"79255","lastModified":"1302079169000","name":"Marie Robertson","type":"Person","_key":"61820"} +{"label":"Janne 'Loffe' Carlsson","version":22,"id":"79256","lastModified":"1302079169000","name":"Janne 'Loffe' Carlsson","type":"Person","_key":"61821"} +{"label":"Bj\u00f6rn Bengtsson","version":24,"id":"79257","lastModified":"1302079169000","name":"Bj\u00f6rn Bengtsson","type":"Person","_key":"61822"} +{"label":"Per Graffman","version":20,"id":"79258","lastModified":"1302079169000","name":"Per Graffman","type":"Person","_key":"61823"} +{"label":"Johan Hedenberg","version":29,"id":"79259","lastModified":"1302079169000","name":"Johan Hedenberg","type":"Person","_key":"61824"} +{"label":"Claes Malmberg","version":30,"id":"79260","lastModified":"1302079169000","name":"Claes Malmberg","type":"Person","_key":"61825"} +{"label":"Jesper Malm","version":21,"id":"79261","lastModified":"1302079169000","name":"Jesper Malm","type":"Person","_key":"61826"} +{"label":"Jens Nyqvist","version":20,"id":"79262","lastModified":"1302079169000","name":"Jens Nyqvist","type":"Person","_key":"61827"} +{"label":"Robert P. Olsson","version":20,"id":"79263","lastModified":"1302079169000","name":"Robert P. Olsson","type":"Person","_key":"61828"} +{"label":"Philip Panov","version":20,"id":"79264","lastModified":"1302079169000","name":"Philip Panov","type":"Person","_key":"61829"} +{"label":"Lena Str\u00f6mdahl","version":20,"id":"79265","lastModified":"1302079169000","name":"Lena Str\u00f6mdahl","type":"Person","_key":"61830"} +{"label":"Eva R\u00f6se","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e4\/4c51f1715e73d632bc0000e4\/eva-rose-profile.jpg","version":29,"id":"126936","lastModified":"1302079170000","name":"Eva R\u00f6se","type":"Person","_key":"61831"} +{"label":"The End Of America","description":"The End of America details the ten steps a country takes when it slides toward fascism. It's not a \"lefty\"tot tome, rather a historical look at trends in once-functioning democracies from modern history that are being repeated in our country today. It gives any reader (or viewer of the lecture) a much-needed history lesson and constitutional refresher. Most importantly, it puts the recent gradual ","id":"15580","runtime":73,"imdbId":"tt1294790","version":74,"lastModified":"1301905724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/561\/4bc94800017a3c57fe01f561\/the-end-of-america-mid.jpg","genre":"Documentary","title":"The End Of America","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"61832"} +{"label":"Who's Your Caddy?","description":"When \"street smart\" rapper Christopher \"C-Note\" Hawkins (Big Boi) applies for a membership to all-white Carolina Pines Country Club, the establishment's proprietors are hardly ready to oblige him. ","id":"15581","runtime":93,"imdbId":"tt0785077","version":155,"lastModified":"1301904518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56a\/4bc94801017a3c57fe01f56a\/who-s-your-caddy-mid.jpg","genre":"Comedy","title":"Who's Your Caddy?","releaseDate":1185494400000,"language":"en","type":"Movie","_key":"61833"} +{"label":"Mick Partridge","version":15,"id":"146598","lastModified":"1301902555000","name":"Mick Partridge","type":"Person","_key":"61834"} +{"label":"Sherri Shepherd","version":38,"id":"109561","lastModified":"1301902555000","name":"Sherri Shepherd","type":"Person","_key":"61835"} +{"label":"Teen Wolf Too","description":"Meet a college freshman who's having trouble fitting into his \"genes\" - family ones, that is - when he finds out his uncle and cousin are werewolves... and so is he! Now the clean cut science student is the star of the boxing team with a hair raising right hook and an animal attraction to his curvy coeds.","id":"15582","runtime":95,"imdbId":"tt0094118","version":78,"lastModified":"1302024685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14a\/4c4a01c77b9aa115fd00014a\/teen-wolf-too-mid.jpg","genre":"Comedy","title":"Teen Wolf Too","releaseDate":564364800000,"language":"en","type":"Movie","_key":"61836"} +{"label":"Estee Chandler","version":18,"id":"78413","lastModified":"1301902295000","name":"Estee Chandler","type":"Person","_key":"61837"} +{"label":"Robert Neary","version":18,"id":"78414","lastModified":"1301902295000","name":"Robert Neary","type":"Person","_key":"61838"} +{"label":"Stuart Fratkin","version":18,"id":"78415","lastModified":"1301902295000","name":"Stuart Fratkin","type":"Person","_key":"61839"} +{"label":"Paul Sand","version":20,"id":"78416","lastModified":"1301901900000","name":"Paul Sand","type":"Person","_key":"61840"} +{"label":"Christopher Leitch","version":28,"id":"57436","lastModified":"1301901634000","name":"Christopher Leitch","type":"Person","_key":"61841"} +{"label":"Nine Inch Nails: Live - Beside You in Time","description":"LIVE: BESIDE YOU IN TIME \r\n24 songs from the LIVE: With Teeth 2006 Tour, including: \"The Hand That Feeds\" \"Only\" \"Closer\" \"Head Like A Hole\" \"Hurt\" \"Wish\" \"Terrible Lie\" \"March Of Pigs\" \r\n\r\n\r\n","id":"15583","runtime":93,"imdbId":"tt0899161","trailer":"http:\/\/www.youtube.com\/watch?v=1038","homepage":"http:\/\/halo22.nin.com\/","version":128,"lastModified":"1301902637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/591\/4bc94805017a3c57fe01f591\/nine-inch-nails-live-beside-you-in-time-mid.jpg","studio":"Interscope Records","genre":"Music","title":"Nine Inch Nails: Live - Beside You in Time","releaseDate":1172534400000,"language":"en","type":"Movie","_key":"61842"} +{"label":"Trent Reznor","version":42,"id":"3186","lastModified":"1299612243000","name":"Trent Reznor","type":"Person","_key":"61843"} +{"label":"Aaron North","version":17,"id":"92953","lastModified":"1301902364000","name":"Aaron North","type":"Person","_key":"61844"} +{"label":"Alessandro Cortini","version":16,"id":"92955","lastModified":"1301901778000","name":"Alessandro Cortini","type":"Person","_key":"61845"} +{"label":"Josh Freese","version":17,"id":"92956","lastModified":"1301902325000","name":"Josh Freese","type":"Person","_key":"61846"} +{"label":"Jerome Dillon","version":20,"id":"92957","lastModified":"1301902504000","name":"Jerome Dillon","type":"Person","_key":"61847"} +{"label":"Dear Zachary: A Letter to a Son About His Father","description":"A filmmaker trying to memorialize his murdered friend discovers that the woman who killed him was pregnant with his late friend's son.","id":"15584","runtime":95,"imdbId":"tt1152758","trailer":"http:\/\/www.youtube.com\/watch?v=OtyY0CXdiNo","version":160,"lastModified":"1301904084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59e\/4bc9480a017a3c57fe01f59e\/dear-zachary-a-letter-to-a-son-about-his-father-mid.jpg","studio":"MSNBC Films","genre":"Crime","title":"Dear Zachary: A Letter to a Son About His Father","releaseDate":1225411200000,"language":"en","type":"Movie","_key":"61848"} +{"label":"Kurt Kuenne","version":19,"id":"80207","lastModified":"1301902504000","name":"Kurt Kuenne","type":"Person","_key":"61849"} +{"label":"The Barry Sheene Story","description":"Life Story - \nMade with his authorization and full participation, Barry shares his memories throughout with motor racing legend and friend Murray Walker. With further anecdotes from family and many celebrities from the world of racing.","id":"15585","runtime":0,"version":154,"lastModified":"1301906922000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc9480b017a3c57fe01f5af\/the-barry-sheene-story-mid.jpg","genre":"Sports Film","title":"The Barry Sheene Story","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61850"} +{"label":"Kaub\u00f4i bibappu","description":"No overview found.","id":"15586","runtime":0,"imdbId":"tt0213338","version":32,"lastModified":"1301908585000","title":"Kaub\u00f4i bibappu","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61851"} +{"label":"Safari","description":"Six touristes fran\u00e7ais ont d\u00e9cid\u00e9 de d\u00e9couvrir l'Afrique du Sud au cours d'un safari organis\u00e9 par Richard Dacier. Ils ignorent alors que leur guide n'a pas mis les pieds dans la brousse depuis 30 ans... Et qu'il a peur des animaux !","id":"15587","runtime":0,"imdbId":"tt1328642","version":93,"lastModified":"1301905266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bc\/4bc9480c017a3c57fe01f5bc\/safari-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Adventure","title":"Safari","releaseDate":1238544000000,"language":"en","type":"Movie","_key":"61852"} +{"label":"Yannick Noah","version":17,"id":"78422","lastModified":"1301902068000","name":"Yannick Noah","type":"Person","_key":"61853"} +{"label":"OSS 117 : Rio ne r\u00e9pond plus","description":"French top secret agent, Hubert Bonisseur de la Bath, is sent to Rio to buy microfilms from a running nazi. To do so, he has to team up with Mossad secret services.","id":"15588","runtime":100,"imdbId":"tt1167660","version":65,"lastModified":"1301903343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d6\/4c76441d5e73d604170000d6\/oss-117-rio-ne-repond-plus-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"OSS 117 : Rio ne r\u00e9pond plus","releaseDate":1240790400000,"language":"en","type":"Movie","_key":"61854"} +{"label":"Louise Monot","version":26,"id":"78425","lastModified":"1301901257000","name":"Louise Monot","type":"Person","_key":"61855"} +{"label":"Kada kien su karma","description":"No overview found.","id":"15589","runtime":97,"imdbId":"tt1002444","homepage":"http:\/\/www.kadakiensukarma.com.mx","version":68,"lastModified":"1300980170000","studio":"Taller de Luz, Producciones S.A de CV","genre":"Comedy","title":"Kada kien su karma","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"61856"} +{"label":"The Prince & Me 2 - The Royal Wedding","description":"With just weeks before their royal wedding, Paige and Edvard find their relationship and the Danish monarchy in jeopardy when an old law is brought to light, stating that an unmarried heir to the throne may marry only a woman of noble blood or else he must relinquish his crown.","id":"15590","runtime":96,"imdbId":"tt0477072","version":74,"lastModified":"1301902092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e2\/4bc94811017a3c57fe01f5e2\/the-prince-me-2-the-royal-wedding-mid.jpg","genre":"Comedy","title":"The Prince & Me 2 - The Royal Wedding","releaseDate":1140480000000,"language":"en","type":"Movie","_key":"61857"} +{"label":"Catherine Cyran","version":25,"id":"98940","lastModified":"1301902695000","name":"Catherine Cyran","type":"Person","_key":"61858"} +{"label":"Black Swarm","description":"No overview found.","id":"15591","runtime":0,"imdbId":"tt1090189","version":1692,"lastModified":"1302040677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2a\/4d4758ff5e73d66f59002c2a\/black-swarm-mid.jpg","genre":"Horror","title":"Black Swarm","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61859"} +{"label":"Beaches","description":"A privileged rich debutante and a cynical struggling entertainer share a turbulent, but strong childhood friendship over the years. ","id":"15592","runtime":123,"imdbId":"tt0094715","trailer":"http:\/\/www.youtube.com\/watch?v=2259","version":89,"lastModified":"1301903968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f0\/4bc94811017a3c57fe01f5f0\/beaches-mid.jpg","genre":"Comedy","title":"Beaches","releaseDate":598665600000,"language":"en","type":"Movie","_key":"61860"} +{"label":"Fingersmith","description":"Growing up as a foster child among a family of thieves, orphan Sue Trinder hopes to pay back that kindness by playing a key role in a swindle scheme devised by their leader, who is planning to con a fortune out of the naive Maud Lilly.\r\n","id":"15594","runtime":181,"imdbId":"tt0423651","version":141,"lastModified":"1301906355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/603\/4bc94817017a3c57fe01f603\/fingersmith-mid.jpg","genre":"Drama","title":"Fingersmith","releaseDate":1111881600000,"language":"en","type":"Movie","_key":"61861"} +{"label":"David Troughton","version":24,"id":"78427","lastModified":"1301902016000","name":"David Troughton","type":"Person","_key":"61862"} +{"label":"Careless","description":"Wiley Roth finds a severed human finger in his kitchen one night. Understandably freaked out, in a search across Los Angeles that brings them in contact with psychics, ineffectual police, crooked taxidermists, mysterious neighbors who might be on drugs, and a nine-fingered woman named Cheryl who might, improbably, end up being the girl of his dreams.","id":"15595","runtime":90,"imdbId":"tt0834900","version":140,"lastModified":"1301906612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/611\/4bc9481b017a3c57fe01f611\/careless-mid.jpg","genre":"Comedy","title":"Careless","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"61863"} +{"label":"Back to School","description":"Self-made millionaire, Thornton Melon (Rodney Dangerfield), owner of the Tall & Fat chain of clothing stores goes to college to show solidarity with his troubled son (Gordon) and learns that he cannot buy his education.","id":"15596","runtime":96,"imdbId":"tt0090685","trailer":"http:\/\/www.youtube.com\/watch?v=iRpUAdI_F_o","version":135,"lastModified":"1301902467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61a\/4bc9481c017a3c57fe01f61a\/back-to-school-mid.jpg","studio":"Paper Clip Productions","genre":"Action","title":"Back to School","releaseDate":519004800000,"language":"en","tagline":"Registration starts Friday, June 13, at theaters everywhere.","type":"Movie","_key":"61864"} +{"label":"Paxton Whitehead","version":29,"id":"129996","lastModified":"1301902583000","name":"Paxton Whitehead","type":"Person","_key":"61865"} +{"label":"The Amazing Screw-On Head","description":"President Abraham Lincoln's top spy is a bodyless head known only as Screw-On Head. When arch-fiend Emperor Zombie steals an artifact that will enable him to threaten all life on Earth, the task of stopping him is assigned to Screw-on Head. Fortunately, Screw-On Head is not alone on this perilous quest. He is aided by his multitalented manservant, Mr. Groin, by his talking canine cohort, Mr. Dog.","id":"15597","runtime":22,"imdbId":"tt0468445","version":93,"lastModified":"1301905854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/628\/4bc9481d017a3c57fe01f628\/the-amazing-screw-on-head-mid.jpg","studio":"Kickstart Productions","genre":"Animation","title":"The Amazing Screw-On Head","releaseDate":1156032000000,"language":"en","type":"Movie","_key":"61866"} +{"label":"Chris Prynoski","version":16,"id":"78438","lastModified":"1301901534000","name":"Chris Prynoski","type":"Person","_key":"61867"} +{"label":"Alfie","description":"The film tells the story of a young man who leads a promiscuous lifestyle until several life reversals make him rethink his purposes and goals in life.","id":"15598","runtime":114,"imdbId":"tt0060086","trailer":"http:\/\/www.youtube.com\/watch?v=tyShmXPoLJo","version":155,"lastModified":"1301906483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/631\/4bc9481e017a3c57fe01f631\/alfie-mid.jpg","studio":"Lewis Gilbert Productions","genre":"Comedy","title":"Alfie","releaseDate":-105926400000,"language":"en","type":"Movie","_key":"61868"} +{"label":"Millicent Martin","version":13,"id":"162896","lastModified":"1301903552000","name":"Millicent Martin","type":"Person","_key":"61869"} +{"label":"Armin Only Ahoy' 2007","description":"The second Armin Only event returned to Rotterdam\u2019s Ahoy Stadium on Saturday, November 11th. The debut in 2005 was an astonishing success on multiple fronts, which rightly called for a sequel. This year, the event drew again over 12,000 visitors who experienced an unforgettable night, which can best be described as an enchanting musical trip with dozens of surprises along the way","id":"15599","runtime":139,"imdbId":"tt1161633","version":143,"lastModified":"1301906468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64f\/4bc94821017a3c57fe01f64f\/armin-only-ahoy-2006-mid.jpg","genre":"Musical","title":"Armin Only Ahoy' 2007","releaseDate":1172448000000,"language":"en","type":"Movie","_key":"61870"} +{"label":"Missing","description":"Based on the real-life experiences of Ed Horman. A conservative American businessman travels to a South American country to investigate the sudden disappearance of his son after a right-wing military takeover. Accompanied by his son's wife he uncovers a trail of cover-ups that implicate the US State department which supports the right-wing dictatorship. ","id":"15600","runtime":122,"imdbId":"tt0084335","version":88,"lastModified":"1301904518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11c\/4d628d555e73d60c5c00411c\/missing-mid.jpg","genre":"Drama","title":"Missing","releaseDate":407635200000,"language":"en","type":"Movie","_key":"61871"} +{"label":"John Shea","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/83e\/4ca24ca65e73d67b5f00083e\/john-shea-profile.jpg","version":25,"id":"78439","lastModified":"1301901857000","name":"John Shea","type":"Person","_key":"61872"} +{"label":"Scooby-Doo And The Cyber Chase","description":"Scooby-Doo and the gang are trapped into a video game! So they follow up to Scooby Snacks to the last level and they met the cyber gang who just look like themselves. So, the cyber gang decided to help the gang to defeat the phantom virus.","id":"15601","runtime":75,"imdbId":"tt0290057","trailer":"http:\/\/www.youtube.com\/watch?v=Nmi7r5vfG5M","version":134,"lastModified":"1301905084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66a\/4bc94825017a3c57fe01f66a\/scooby-doo-and-the-cyber-chase-mid.jpg","genre":"Animation","title":"Scooby-Doo And The Cyber Chase","releaseDate":1002585600000,"language":"en","type":"Movie","_key":"61873"} +{"label":"Gary Anthony Sturgis","version":24,"id":"74614","lastModified":"1301901608000","name":"Gary Anthony Sturgis","type":"Person","_key":"61874"} +{"label":"B.J. Ward","version":26,"id":"88622","lastModified":"1302133788000","name":"B.J. Ward","type":"Person","_key":"61875"} +{"label":"Jim Stenstrum","version":26,"id":"88623","lastModified":"1302133787000","name":"Jim Stenstrum","type":"Person","_key":"61876"} +{"label":"Grumpier Old Men","description":"A family wedding reignites the ancient feud between next-door neighbors and fishing buddies John and Max. Meanwhile, a sultry Italian divorc\u00e9e opens a restaurant at the local bait shop, alarming the locals who worry she'll scare the fish away. But she's less interested in seafood than she is in cooking up a hot time with Max.","id":"15602","runtime":101,"imdbId":"tt0113228","version":136,"lastModified":"1301907571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb7\/4d40c2497b9aa15bbb002cb7\/grumpier-old-men-mid.jpg","genre":"Comedy","title":"Grumpier Old Men","releaseDate":819590400000,"language":"en","tagline":"Still Yelling. Still Fighting. Still Ready For Love.","type":"Movie","_key":"61877"} +{"label":"Fat Pizza","description":"Fat Pizza the Film is yet another slice of life at a dodgy suburban Sydney take away. Bobo Gigliotti the psychotic pizzeria owner\/pizza chef is awaiting the arrival of his mail-order refugee bride Lin Chow Bang, and a new pizza deliverer is on the block. Channel V's Jabba almost steals the show as token skip delivery boy Davo Dinkum, a stoner with a bong strapped to his face like a feedbag.\r\n\r\n","id":"15603","runtime":96,"imdbId":"tt0340110","version":87,"lastModified":"1301903233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68e\/4bc9482b017a3c57fe01f68e\/fat-pizza-mid.jpg","studio":"Village Roadshow Productions","genre":"Comedy","title":"Fat Pizza","releaseDate":1049932800000,"language":"en","type":"Movie","_key":"61878"} +{"label":"Paul Fenech","version":20,"id":"92712","lastModified":"1301902243000","name":"Paul Fenech","type":"Person","_key":"61879"} +{"label":"Paul Nakad","version":17,"id":"92713","lastModified":"1301902706000","name":"Paul Nakad","type":"Person","_key":"61880"} +{"label":"John Boxer","version":17,"id":"92714","lastModified":"1301902524000","name":"John Boxer","type":"Person","_key":"61881"} +{"label":"Tahir Bilgic","version":19,"id":"92715","lastModified":"1301901864000","name":"Tahir Bilgic","type":"Person","_key":"61882"} +{"label":"Annalise Braakensiek","version":17,"id":"92716","lastModified":"1301902705000","name":"Annalise Braakensiek","type":"Person","_key":"61883"} +{"label":"Undercover","description":"No overview found.","id":"15605","runtime":85,"imdbId":"tt0473714","version":542,"lastModified":"1301906911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/697\/4bc9482b017a3c57fe01f697\/undercover-mid.jpg","studio":"Vega Films","genre":"Comedy","title":"Undercover","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61884"} +{"label":"Anna Schinz","version":16,"id":"78444","lastModified":"1301902243000","name":"Anna Schinz","type":"Person","_key":"61885"} +{"label":"Nana Kr\u00fcger","version":16,"id":"78445","lastModified":"1301902243000","name":"Nana Kr\u00fcger","type":"Person","_key":"61886"} +{"label":"Sylvia Rohrer","version":19,"id":"54558","lastModified":"1301901864000","name":"Sylvia Rohrer","type":"Person","_key":"61887"} +{"label":"Roland Koch","version":16,"id":"78446","lastModified":"1301902243000","name":"Roland Koch","type":"Person","_key":"61888"} +{"label":"Stefano Viali","version":16,"id":"78447","lastModified":"1301902243000","name":"Stefano Viali","type":"Person","_key":"61889"} +{"label":"David Pietroni","version":16,"id":"78448","lastModified":"1301902068000","name":"David Pietroni","type":"Person","_key":"61890"} +{"label":"UFN 17 - Lauzon vs Stephens","description":"UFC Fight Night: Lauzon vs. Stephens, also referred to as UFC Fight Night 17 was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on February 7 2009. Originally named UFC Fight Night: Lauzon vs. Franca, Jeremy Stephens stepped up to take on Joe Lauzon after Hermes Franca suffered a torn ACL during training and could no longer participate in this event.Derek Downey replaced Amir Sadollah after he was sidelined with a broken clavicle. Dan Miller replaced Alessio Sakara w","id":"15606","runtime":81,"version":51,"lastModified":"1301908632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a0\/4bc9482c017a3c57fe01f6a0\/ufc-fight-night-17-mid.jpg","genre":"Sports Film","title":"UFN 17 - Lauzon vs Stephens","releaseDate":1233964800000,"language":"en","type":"Movie","_key":"61891"} +{"label":"Denis Stojnic","version":18,"id":"127342","lastModified":"1301902800000","name":"Denis Stojnic","type":"Person","_key":"61892"} +{"label":"Luigi Fioravanti","version":22,"id":"127343","lastModified":"1301903012000","name":"Luigi Fioravanti","type":"Person","_key":"61893"} +{"label":"Anthony Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00c\/4c1df7ad7b9aa1296200000c\/anthony-johnson-profile.jpg","version":27,"id":"91525","lastModified":"1301901812000","name":"Anthony Johnson","type":"Person","_key":"61894"} +{"label":"EliteXC\/CBS - Primetime 1","description":"EliteXC: Primetime The main card aired live on CBS, marking the first time a MMA event aired in primetime on major American network television. The most hyped fights was Kimbo Slice vs James Thompson, Robbie Lawler vs Scott Smith and Gina Carano vs Kaitlin Young.","id":"15607","runtime":128,"version":52,"lastModified":"1301414888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ad\/4bc9482e017a3c57fe01f6ad\/elitexc-cbs-primetime-1-mid.jpg","title":"EliteXC\/CBS - Primetime 1","releaseDate":1212192000000,"language":"en","type":"Movie","_key":"61895"} +{"label":"Gina Carano","version":20,"id":"78452","lastModified":"1301902243000","name":"Gina Carano","type":"Person","_key":"61896"} +{"label":"Kaitlin Young","version":15,"id":"78453","lastModified":"1301902243000","name":"Kaitlin Young","type":"Person","_key":"61897"} +{"label":"Robbie Lawler","version":35,"id":"78455","lastModified":"1301901981000","name":"Robbie Lawler","type":"Person","_key":"61898"} +{"label":"Kimbo Slice","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b8\/4c089392017a3c35190007b8\/kimbo-slice-profile.jpg","version":24,"id":"78456","lastModified":"1301901948000","name":"Kimbo Slice","type":"Person","_key":"61899"} +{"label":"James Thompson","version":15,"id":"78457","lastModified":"1301902243000","name":"James Thompson","type":"Person","_key":"61900"} +{"label":"Ti\u00ebsto in Concert","description":"Ti\u00ebsto In Concert is truly a groundbreaking event in the history of dance music! For the first time on our planet, one DJ, Ti\u00ebsto has filled a soccer stadium with 25,000 people for an 8 hour performance\/set. The show featured guest singers, live bands and performers, plus stunning visual effects.","id":"15608","runtime":200,"imdbId":"tt0410774","version":37,"lastModified":"1301414574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b6\/4bc9482f017a3c57fe01f6b6\/tiesto-in-concert-mid.jpg","studio":"Black Hole","genre":"Musical","title":"Ti\u00ebsto in Concert","releaseDate":1065398400000,"language":"en","type":"Movie","_key":"61901"} +{"label":"Aerosmith - You Gotta Move","description":"Aerosmith's first official live DVD is a slickly produced affair that was originally made for and cablecast on the Arts & Entertainment network. The commercially released version is available in clean and parental advisory editions (for language) and also includes five bonus songs in a separate \"extras\" section not seen on the television version. By Hal Horowitz","id":"15609","runtime":168,"imdbId":"tt0889166","version":237,"lastModified":"1301417590000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bf\/4bc9482f017a3c57fe01f6bf\/aerosmith-you-gotta-move-mid.jpg","title":"Aerosmith - You Gotta Move","releaseDate":1099267200000,"language":"en","type":"Movie","_key":"61902"} +{"label":"Tom Hamilton","version":16,"id":"78458","lastModified":"1301902243000","name":"Tom Hamilton","type":"Person","_key":"61903"} +{"label":"Brad Whitford","version":19,"id":"78460","lastModified":"1301902243000","name":"Brad Whitford","type":"Person","_key":"61904"} +{"label":"Joey Kramer","version":19,"id":"78461","lastModified":"1301902243000","name":"Joey Kramer","type":"Person","_key":"61905"} +{"label":"Mark Haefeli","version":17,"id":"78462","lastModified":"1301901864000","name":"Mark Haefeli","type":"Person","_key":"61906"} +{"label":"Do You Believe in Miracles? The Story of the 1980 U.S. Hockey Team","description":"At the Winter Olympics of 1980, after two tense weeks amidst growing Cold War fears, the U.S. Olympic hockey team found themselves playing improbably against the legendary unbeatable Soviet Army hockey team for Olympic Gold. From the live footage taken at Lake Placid, NY, and through interviews beginning with the team's assembly through the experience of winning the gold medal.","id":"15611","runtime":60,"imdbId":"tt0276918","version":261,"lastModified":"1300980176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14f\/4d47a7c87b9aa15bb500c14f\/do-you-believe-in-miracles-the-story-of-the-1980-u-s-hockey-team-mid.jpg","genre":"Documentary","title":"Do You Believe in Miracles? The Story of the 1980 U.S. Hockey Team","releaseDate":1010448000000,"language":"en","type":"Movie","_key":"61907"} +{"label":"Jack O'Callahan","version":13,"id":"223120","lastModified":"1301903645000","name":"Jack O'Callahan","type":"Person","_key":"61908"} +{"label":"Herb Brooks","version":13,"id":"223121","lastModified":"1301903646000","name":"Herb Brooks","type":"Person","_key":"61909"} +{"label":"Mike Eruzione","version":13,"id":"223122","lastModified":"1301903643000","name":"Mike Eruzione","type":"Person","_key":"61910"} +{"label":"Al Michaels","version":14,"id":"160028","lastModified":"1301903615000","name":"Al Michaels","type":"Person","_key":"61911"} +{"label":"Jim Craig","version":13,"id":"223123","lastModified":"1301903645000","name":"Jim Craig","type":"Person","_key":"61912"} +{"label":"Fire in the Sky","description":"A group of men who were clearing bush for the government arrive back in town, claiming that their friend was abducted by aliens. Nobody believes them, and despite a lack of motive and no evidence of foul play, their friends' disappearance is treated as murder.","id":"15613","runtime":109,"imdbId":"tt0106912","trailer":"http:\/\/www.youtube.com\/watch?v=9LhshgLJuuM","version":178,"lastModified":"1301902096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cc\/4bc94830017a3c57fe01f6cc\/fire-in-the-sky-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Fire in the Sky","releaseDate":731894400000,"language":"en","type":"Movie","_key":"61913"} +{"label":"Georgia Emelin","version":20,"id":"83780","lastModified":"1301902243000","name":"Georgia Emelin","type":"Person","_key":"61914"} +{"label":"Robert Covarrubias","version":20,"id":"83781","lastModified":"1301902243000","name":"Robert Covarrubias","type":"Person","_key":"61915"} +{"label":"Bruce Wright","version":20,"id":"83782","lastModified":"1301902243000","name":"Bruce Wright","type":"Person","_key":"61916"} +{"label":"Invasion","description":"Small rocks fall from the sky which, when touched, trigger a latent virus that has always existed in humans and begins mutating them into an alien species. Taking advantage of its hive mentality, the aliens are absolutely dedicated to transforming every human on Earth and do so with alarming swiftness. Only a small group of humans remain who have the medical knowledge to devise antibodies to reverse the effects of the virus.","id":"15614","runtime":175,"imdbId":"tt0118452","version":99,"lastModified":"1301907999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30d\/4d34d50c7b9aa178a700a30d\/invasion-mid.jpg","genre":"Drama","title":"Invasion","releaseDate":862704000000,"language":"en","type":"Movie","_key":"61917"} +{"label":"Major Movie Star","description":"When fluffy, bubble gum movie star Megan Valentine suddenly finds herself broke and humiliated in the public eye, she wanders from the wreckage of a car accident and witlessly enlists in the U.S. Army hoping in vain that it will change her life.","id":"15616","runtime":98,"imdbId":"tt1034320","version":119,"lastModified":"1301904439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a9\/4cae57e67b9aa121350000a9\/major-movie-star-mid.jpg","title":"Major Movie Star","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"61918"} +{"label":"Un homme, un vrai","description":"A strikingly original, offbeat comedy about reconciling married life with being oneself, with musical interludes and stunning locations in Ibiza and the Pyrenees.","id":"15617","runtime":120,"imdbId":"tt0329706","version":44,"lastModified":"1301905691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6da\/4bc94834017a3c57fe01f6da\/un-homme-un-vrai-mid.jpg","studio":"Canal Plus","genre":"Comedy","title":"Un homme, un vrai","releaseDate":1054080000000,"language":"en","type":"Movie","_key":"61919"} +{"label":"Robot Jox","description":"50 years after a nuclear war, the two superpowers handle territorial disputes in a different way. Each fields a giant robot to fight one-on-one battles in official matches, each piloted by a man inside, known as robot jockeys or jox. The contest for possession of Alaska will be fought by two of the best. The conscientious Achilles fights for the Americans. Opposing him is a Russian, Alexander.","id":"15618","runtime":85,"imdbId":"tt0102800","version":122,"lastModified":"1301903366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ef\/4bc94836017a3c57fe01f6ef\/robot-jox-mid.jpg","genre":"Science Fiction","title":"Robot Jox","releaseDate":659145600000,"language":"en","type":"Movie","_key":"61920"} +{"label":"Gary Graham","version":22,"id":"78463","lastModified":"1301902149000","name":"Gary Graham","type":"Person","_key":"61921"} +{"label":"Anne-Marie Johnson","version":22,"id":"82340","lastModified":"1301902335000","name":"Anne-Marie Johnson","type":"Person","_key":"61922"} +{"label":"Affaire de famille","description":"No overview found.","id":"15619","runtime":90,"imdbId":"tt1068676","version":60,"lastModified":"1301904941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/705\/4bc94839017a3c57fe01f705\/affaire-de-famille-mid.jpg","studio":"La Fabrique de Films","genre":"Comedy","title":"Affaire de famille","releaseDate":1212537600000,"language":"en","type":"Movie","_key":"61923"} +{"label":"Claus Drexel","version":19,"id":"78466","lastModified":"1301901896000","name":"Claus Drexel","type":"Person","_key":"61924"} +{"label":"Hande Kodja","version":17,"id":"78469","lastModified":"1301902243000","name":"Hande Kodja","type":"Person","_key":"61925"} +{"label":"Philippe H\u00e9risson","version":17,"id":"78470","lastModified":"1301902243000","name":"Philippe H\u00e9risson","type":"Person","_key":"61926"} +{"label":"Sylviane Goudal","version":17,"id":"78471","lastModified":"1301902243000","name":"Sylviane Goudal","type":"Person","_key":"61927"} +{"label":"Sandy Lakdar","version":17,"id":"78472","lastModified":"1301902243000","name":"Sandy Lakdar","type":"Person","_key":"61928"} +{"label":"Laurent Bariteau","version":17,"id":"78473","lastModified":"1301902243000","name":"Laurent Bariteau","type":"Person","_key":"61929"} +{"label":"Serge Gaborieau","version":17,"id":"78474","lastModified":"1301902243000","name":"Serge Gaborieau","type":"Person","_key":"61930"} +{"label":"Black Widow","description":"While most young girls dream of white picket fences and getting happily married when they grow up, Peyton (Stormy Daniels) always had other plans. At the age of 20, she meets Charles (Randy Spears), an older ... Full Descriptionman of wealth and status. After seducing him into marrying her, she deviously begins putting her plan into action.","id":"15621","runtime":0,"imdbId":"tt1096857","version":1087,"lastModified":"1302040473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc94839017a3c57fe01f70a\/black-widow-mid.jpg","genre":"Drama","title":"Black Widow","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61931"} +{"label":"Hinokio: Inter Galactic Love","description":"A recent accident has left Satoru Iwamoto, an elementary school student, temporarily wheelchair-ridden. In addition, the recent loss of his mother has thrown Satoru into a reclusive state, locking himself from the outside world. However, in an effort to help Satoru recover from his injuries, his father, Kaoru, has designed a remote-controlled robot that will go to school in his place and allow him to interact with people and do normal things.","id":"15622","runtime":111,"imdbId":"tt0466375","version":96,"lastModified":"1301905186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/713\/4bc9483a017a3c57fe01f713\/hinokio-mid.jpg","title":"Hinokio: Inter Galactic Love","releaseDate":1139529600000,"language":"en","type":"Movie","_key":"61932"} +{"label":"Conversations with Other Women","description":"When a man and woman flirt with each other at a wedding reception, the sexual tension seems spontaneous. As they break from the party to a hotel room, the flirtation turns into a night filled with passion and remorse.","id":"15624","runtime":84,"imdbId":"tt0435623","version":183,"lastModified":"1301903108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72d\/4bc9483c017a3c57fe01f72d\/conversations-with-other-women-mid.jpg","genre":"Comedy","title":"Conversations with Other Women","releaseDate":1125619200000,"language":"en","type":"Movie","_key":"61933"} +{"label":"Yury Tsykun","version":18,"id":"78483","lastModified":"1301902143000","name":"Yury Tsykun","type":"Person","_key":"61934"} +{"label":"Hans Canosa","version":18,"id":"78481","lastModified":"1301902144000","name":"Hans Canosa","type":"Person","_key":"61935"} +{"label":"\u00c7a se soigne?","description":"No overview found.","id":"15625","runtime":86,"imdbId":"tt1052344","homepage":"http:\/\/www.tfmdistribution.com\/casesoigne\/","version":50,"lastModified":"1301908424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/736\/4bc9483d017a3c57fe01f736\/ca-se-soigne-mid.jpg","studio":"Les Films Manuel Munz","genre":"Comedy","title":"\u00c7a se soigne?","releaseDate":1202256000000,"language":"en","type":"Movie","_key":"61936"} +{"label":"Isabelle G\u00e9linas","version":24,"id":"78475","lastModified":"1301901974000","name":"Isabelle G\u00e9linas","type":"Person","_key":"61937"} +{"label":"Elisabeth Quin","version":17,"id":"78477","lastModified":"1301902243000","name":"Elisabeth Quin","type":"Person","_key":"61938"} +{"label":"Philippe Tesson","version":17,"id":"78478","lastModified":"1301902068000","name":"Philippe Tesson","type":"Person","_key":"61939"} +{"label":"Sophie Mounicot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d6\/4bdfa933017a3c35bd0003d6\/sophie-mounicot-profile.jpg","version":20,"id":"78480","lastModified":"1301902361000","name":"Sophie Mounicot","type":"Person","_key":"61940"} +{"label":"Laurent Chouchan","version":21,"id":"20860","lastModified":"1301901935000","name":"Laurent Chouchan","type":"Person","_key":"61941"} +{"label":"Inside Ring","description":"The Malakian clan, a family of ruthless gangsters, controls the underworld of Southern France. At its head, the violent godfather Milo Malakian rules his world with an iron fist. His son and heir, Anton, dreams of breaking free and making his own choices. But the gang's inner circle is engraved in blood. To escape, not only does Anton have to counter his own destiny, but also the man who has sworn to bring his father down.","id":"15638","runtime":94,"imdbId":"tt1130993","version":148,"lastModified":"1301903061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/759\/4bc94843017a3c57fe01f759\/le-premier-cercle-mid.jpg","studio":"TFM Distribution","genre":"Thriller","title":"Inside Ring","releaseDate":1236124800000,"language":"en","type":"Movie","_key":"61942"} +{"label":"Isaac Sharry","version":25,"id":"78493","lastModified":"1301901718000","name":"Isaac Sharry","type":"Person","_key":"61943"} +{"label":"Larry The Cable Guy Health Inspector","description":"A slovenly cable repairman becomes a big-city health inspector and is tasked with uncovering the source of a food poisoning epidemic.","id":"15639","runtime":89,"imdbId":"tt0462395","version":122,"lastModified":"1301906254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75e\/4bc94844017a3c57fe01f75e\/larry-the-cable-guy-health-inspector-mid.jpg","genre":"Comedy","title":"Larry The Cable Guy Health Inspector","releaseDate":1143158400000,"language":"en","type":"Movie","_key":"61944"} +{"label":"Iris Bahr","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55f\/4d1154a67b9aa1148e00055f\/iris-bahr-profile.jpg","version":28,"id":"120249","lastModified":"1301901276000","name":"Iris Bahr","type":"Person","_key":"61945"} +{"label":"Trent Cooper","version":17,"id":"130822","lastModified":"1301902931000","name":"Trent Cooper","type":"Person","_key":"61946"} +{"label":"Mord ist mein Gesch\u00e4ft, Liebling","description":"No overview found.","id":"15640","runtime":109,"imdbId":"tt1135940","homepage":"http:\/\/wwws.warnerbros.de\/mord\/","version":49,"lastModified":"1301904669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/767\/4bc94844017a3c57fe01f767\/mord-ist-mein-geschaft-liebling-mid.jpg","studio":"Babelsberg Film GmbH","genre":"Comedy","title":"Mord ist mein Gesch\u00e4ft, Liebling","releaseDate":1235606400000,"language":"en","type":"Movie","_key":"61947"} +{"label":"Vacancy 2: The First Cut","description":"Three young people check into the Meadow View Inn for a night's rest, fully unaware of the inn's sick-minded employees and their nefarious intentions.","id":"15641","runtime":86,"imdbId":"tt1204979","version":163,"lastModified":"1301905861000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/770\/4bc94844017a3c57fe01f770\/vacancy-2-the-first-cut-mid.jpg","studio":"Stage 6 Films","genre":"Horror","title":"Vacancy 2: The First Cut","releaseDate":1231286400000,"language":"en","type":"Movie","_key":"61948"} +{"label":"Mein Name ist Eugen","description":"No overview found.","id":"15642","runtime":100,"imdbId":"tt0480558","version":80,"lastModified":"1301905540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4c7832565e73d613d4000018\/mein-name-ist-eugen-mid.jpg","genre":"Comedy","title":"Mein Name ist Eugen","releaseDate":1167264000000,"language":"en","type":"Movie","_key":"61949"} +{"label":"Manuel H\u00e4berli","version":16,"id":"93199","lastModified":"1301902464000","name":"Manuel H\u00e4berli","type":"Person","_key":"61950"} +{"label":"Janic Halioua","version":16,"id":"93200","lastModified":"1301902633000","name":"Janic Halioua","type":"Person","_key":"61951"} +{"label":"Dominic H\u00e4nni","version":16,"id":"93201","lastModified":"1301902464000","name":"Dominic H\u00e4nni","type":"Person","_key":"61952"} +{"label":"Alex Niederh\u00e4user","version":16,"id":"93202","lastModified":"1301902633000","name":"Alex Niederh\u00e4user","type":"Person","_key":"61953"} +{"label":"Patrick Frey","version":18,"id":"93203","lastModified":"1301902888000","name":"Patrick Frey","type":"Person","_key":"61954"} +{"label":"Beat Schlatter","version":17,"id":"90122","lastModified":"1301902888000","name":"Beat Schlatter","type":"Person","_key":"61955"} +{"label":"J\u00fcrg L\u00f6w","version":19,"id":"28396","lastModified":"1301901864000","name":"J\u00fcrg L\u00f6w","type":"Person","_key":"61956"} +{"label":"Stephanie Glaser","version":21,"id":"93204","lastModified":"1301902649000","name":"Stephanie Glaser","type":"Person","_key":"61957"} +{"label":"Nella Martinetti","version":16,"id":"93205","lastModified":"1301902633000","name":"Nella Martinetti","type":"Person","_key":"61958"} +{"label":"Paparazzi","description":"A rising Hollywood actor decides to take personal revenge against a group of four persistent photographers to make them pay for almost causing a personal tragedy involving his wife and son.","id":"15644","runtime":84,"imdbId":"tt0338325","version":138,"lastModified":"1301903445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79f\/4bc9484b017a3c57fe01f79f\/paparazzi-mid.jpg","genre":"Action","title":"Paparazzi","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"61959"} +{"label":"Evil Brain From Outer Space","description":"An evil brain from outer space unleashes monsters with deadly diseases on Earth with trying to conquer the universe. Superhero Starman must battle them all to save his planet.","id":"15645","runtime":78,"imdbId":"tt0058072","version":34,"lastModified":"1301905270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4bc9484d017a3c57fe01f7b5\/evil-brain-from-outer-space-mid.jpg","studio":"Fuji Eiga Company","genre":"Science Fiction","title":"Evil Brain From Outer Space","releaseDate":-189388800000,"language":"en","type":"Movie","_key":"61960"} +{"label":"Ken Utsui","version":18,"id":"78496","lastModified":"1301902325000","name":"Ken Utsui","type":"Person","_key":"61961"} +{"label":"Jugaad","description":"Film JUGAAD, produced by Sandiip Kapur under the banner of Promodome Films and directed by R. Anand Kumar, is RELEASING on 6th February 2009.R. Anand Kumar, who has directed successful Hindi movie DELHI HEIGHTS and around 40 ad commercials, is very upbeat about this comic caper.JUGAAD stars Manoj Bajpai, Hrishitaa Bhatt, Vijay Raz, Sanjay Mishra, Govind Namdeo and is introducing new artiste Nitin.","id":"15646","runtime":114,"version":50,"lastModified":"1301906718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c2\/4bc9484e017a3c57fe01f7c2\/jugaad-mid.jpg","studio":"Promodome Films","genre":"Comedy","title":"Jugaad","releaseDate":1234483200000,"language":"en","type":"Movie","_key":"61962"} +{"label":"Kissing Jessica Stein","description":"Jessica, a Jewish copyeditor living and working in New York City, is plagued by failed blind dates with men, and decides to answer a newspaper's personal advertisement. The advertisement has been placed by 'lesbian-curious' Helen Cooper (Heather Juergensen), a thirtysomething art gallerist. Written and co-produced by the film's stars, Jennifer Westfeldt and Heather Juergensen.","id":"15647","runtime":97,"imdbId":"tt0264761","version":156,"lastModified":"1301904494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d0\/4bc9484f017a3c57fe01f7d0\/kissing-jessica-stein-mid.jpg","genre":"Comedy","title":"Kissing Jessica Stein","releaseDate":987811200000,"language":"en","type":"Movie","_key":"61963"} +{"label":"The Perfect Man","description":"Holly is tired of moving every time her mom Jean breaks up with yet another second-rate guy. To distract her mother from her latest bad choice, Holly conceives the perfect plan for the perfect man, an imaginary secret admirer who will romance Jean and boost her self-esteem.","id":"15648","runtime":100,"imdbId":"tt0380623","version":139,"lastModified":"1301902945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b25\/4d5013b67b9aa13ab400bb25\/the-perfect-man-mid.jpg","studio":"Universal Pictures","genre":"Comedy","title":"The Perfect Man","releaseDate":1118966400000,"language":"en","tagline":"Is it all too good to be true?","type":"Movie","_key":"61964"} +{"label":"GOOF TROOP VOL1","description":"No overview found.","id":"15650","runtime":0,"imdbId":"tt0103428","version":43,"lastModified":"1301908111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7eb\/4bc94850017a3c57fe01f7eb\/goof-troop-vol1-mid.jpg","title":"GOOF TROOP VOL1","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"61965"} +{"label":"For the Bible Tells Me So","description":"An exploration of the intersection between religion and homosexuality in the U.S. and how the religious right has used its interpretation of the Bible to stigmatize the gay community.","id":"15651","runtime":0,"imdbId":"tt0912583","version":145,"lastModified":"1301417894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b6\/4cf54eb97b9aa151490005b6\/for-the-bible-tells-me-so-mid.jpg","genre":"Documentary","title":"For the Bible Tells Me So","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"61966"} +{"label":"Hoboken Hollow","description":"As Trevor drifts through Texas on collision course with a nightmare he is still haunted by the evils of the war he recently returned from and a promise he failed to keep. When a stranger offers a ride, Trevor finds himself battling the brutal homegrown evil of the Broderick family at Hoboken Hollow,a remote West Texas ranch that many visit but few ever leave.","id":"15652","runtime":98,"imdbId":"tt0455961","version":79,"lastModified":"1301418601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f5\/4bc94850017a3c57fe01f7f5\/hoboken-hollow-mid.jpg","genre":"Horror","title":"Hoboken Hollow","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"61967"} +{"label":"An Extremely Goofy Movie","description":"It's a big time in Max's life. He's college bound with his friends and finally free of his embarrassing father as he strives to be a top contender for the X-Games. Unfortunately, Goofy loses his job and learns that he cannot get another job without a college degree. To his son's mortification, Goofy decides to join him in his campus to get that degree. Desperate to distract his father, Max talks him into joining the competing Gamma Fraternity team and introduces him to a wonderful librarian who ","id":"15653","runtime":76,"imdbId":"tt0208185","version":93,"lastModified":"1301904344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4d49ff967b9aa13aba00051a\/an-extremely-goofy-movie-mid.jpg","genre":"Animation","title":"An Extremely Goofy Movie","releaseDate":946684800000,"language":"en","type":"Movie","_key":"61968"} +{"label":"Douglas McCarthy","version":18,"id":"147702","lastModified":"1301902465000","name":"Douglas McCarthy","type":"Person","_key":"61969"} +{"label":"Kabluey","description":"Inept Salman comes to help his sister-in-law tend to his holy terror nephews while Salman's brother is off fighting in Iraq. Salman must take a humiliating job as a giant blue corporate mascot in order to help make ends meet and hold the family together.","id":"15654","runtime":86,"imdbId":"tt0816545","version":210,"lastModified":"1301903911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/807\/4bc94851017a3c57fe01f807\/kabluey-mid.jpg","studio":"Whitewater Films","genre":"Comedy","title":"Kabluey","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"61970"} +{"label":"Scott Prendergast","version":18,"id":"78497","lastModified":"1301901778000","name":"Scott Prendergast","type":"Person","_key":"61971"} +{"label":"The Tigger Movie","description":"As it happens, everybody - Pooh, Piglet, Eeyore, Roo, Rabbit, Owl - is busy preparing a suitable winter home for Eeyore. When everything tehy do seems to get undone by Tigger's exuberant bouncing, Rabbit suggest Tigger go outside and find other tiggers to bounce with - a notion Tigger finds ridiculous because, after all, he's \"the onliest one\" Or is he?","id":"15655","runtime":77,"imdbId":"tt0220099","version":173,"lastModified":"1301902153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/555\/4d8f8cec7b9aa1675e002555\/the-tigger-movie-mid.jpg","studio":"Walt Disney Television","genre":"Animation","title":"The Tigger Movie","releaseDate":950227200000,"language":"en","type":"Movie","_key":"61972"} +{"label":"Jun Falkenstein","version":28,"id":"93301","lastModified":"1301902218000","name":"Jun Falkenstein","type":"Person","_key":"61973"} +{"label":"Tom Attenborough","version":18,"id":"105503","lastModified":"1301902464000","name":"Tom Attenborough","type":"Person","_key":"61974"} +{"label":"Tarzan II","description":"Experience the beginning of the legend with Disney's TARZAN II, a hilarious, all-new, animated motion picture loaded with laughs, irresistible new songs by Phil Collins, and the inspired voice talent of Glenn Close, George Carlin, and Emmy Award winner Brad Garrett. Before he was King of the Jungle, Tarzan was an awkward young kid just trying to fit in. When one of his missteps puts his family in jeopardy, Tarzan decides they would be better off without him. His thrilling new journey brings him ","id":"15657","runtime":72,"imdbId":"tt0437503","version":291,"lastModified":"1301902136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/821\/4bc94856017a3c57fe01f821\/tarzan-ii-mid.jpg","studio":"Walt Disney Pictures","genre":"Adventure","title":"Tarzan II","releaseDate":1118707200000,"language":"en","type":"Movie","_key":"61975"} +{"label":"Flowers in the Attic","description":"After the death of her husband, a mother takes her kids off to live with their grandparents in a huge, decrepit old mansion. However, the kids are kept hidden in a room just below the attic, visited only by their mother who becomes less and less concerned about them and their failing health, and more concerned about herself and the inheritence she plans to win back from her dying father.","id":"15658","runtime":93,"imdbId":"tt0093036","version":219,"lastModified":"1301906604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82a\/4bc94857017a3c57fe01f82a\/flowers-in-the-attic-mid.jpg","genre":"Drama","title":"Flowers in the Attic","releaseDate":564364800000,"language":"en","type":"Movie","_key":"61976"} +{"label":"Foul Play","description":"A shy San Francisco librarian and a bumbling cop fall in love as they solve a crime involving albinos, dwarves, and the Catholic Church.","id":"15659","runtime":116,"imdbId":"tt0077578","trailer":"http:\/\/www.youtube.com\/watch?v=elHoRhGrTiE","version":116,"lastModified":"1301903968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/833\/4bc94857017a3c57fe01f833\/foul-play-mid.jpg","genre":"Action","title":"Foul Play","releaseDate":269222400000,"language":"en","type":"Movie","_key":"61977"} +{"label":"Eugene Roche","version":24,"id":"35370","lastModified":"1301901776000","name":"Eugene Roche","type":"Person","_key":"61978"} +{"label":"Colin Higgins","version":31,"id":"4967","lastModified":"1301901241000","name":"Colin Higgins","type":"Person","_key":"61979"} +{"label":"Mommie Dearest","description":"Mommie Dearest, best selling memoir, turned motion picture, depicts the abusive and traumatic adoptive upbringing of Christina Crawford at the hands of her mother...screen queen Joan Crawford.","id":"15660","runtime":129,"imdbId":"tt0082766","version":296,"lastModified":"1301904771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83c\/4bc94858017a3c57fe01f83c\/mommie-dearest-mid.jpg","genre":"Drama","title":"Mommie Dearest","releaseDate":369619200000,"language":"en","type":"Movie","_key":"61980"} +{"label":"Frank Perry","version":23,"id":"113799","lastModified":"1301902400000","name":"Frank Perry","type":"Person","_key":"61981"} +{"label":"Noise","description":"A man who is being driven crazy by the noise in New York City decides to take vigilante action against it.","id":"15661","runtime":92,"imdbId":"tt0425308","version":395,"lastModified":"1301905771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4c34a45c7b9aa17cce000002\/noise-mid.jpg","genre":"Comedy","title":"Noise","releaseDate":1194307200000,"language":"en","type":"Movie","_key":"61982"} +{"label":"Quid Pro Quo","description":"A semi-paralyzed radio reporter is sent out to investigate a story that leads him into an odd subculture and on a journey of disturbing self-realization.","id":"15662","runtime":82,"imdbId":"tt0414426","version":211,"lastModified":"1301906842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/857\/4bc9485b017a3c57fe01f857\/quid-pro-quo-mid.jpg","studio":"HDNet Films","genre":"Drama","title":"Quid Pro Quo","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"61983"} +{"label":"Rachel Black","version":16,"id":"78520","lastModified":"1301901534000","name":"Rachel Black","type":"Person","_key":"61984"} +{"label":"Carlos Brooks","version":25,"id":"59432","lastModified":"1301902187000","name":"Carlos Brooks","type":"Person","_key":"61985"} +{"label":"Right at Your Door","description":"A dirty bomb goes off in Los Angeles, jamming freeways and spreading a toxic cloud.","id":"15664","runtime":96,"imdbId":"tt0458367","trailer":"http:\/\/www.youtube.com\/watch?v=WV32U3wq-wI","version":166,"lastModified":"1301904304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/860\/4bc9485c017a3c57fe01f860\/right-at-your-door-mid.jpg","studio":"Thousand Words","genre":"Drama","title":"Right at Your Door","releaseDate":1137974400000,"language":"en","type":"Movie","_key":"61986"} +{"label":"Chris Gorak","version":29,"id":"10855","lastModified":"1302059467000","name":"Chris Gorak","type":"Person","_key":"61987"} +{"label":"Tony Perez","version":17,"id":"78498","lastModified":"1301901534000","name":"Tony Perez","type":"Person","_key":"61988"} +{"label":"Scotty Noyd Jr.","version":16,"id":"78499","lastModified":"1301901718000","name":"Scotty Noyd Jr.","type":"Person","_key":"61989"} +{"label":"Will McCormack","version":21,"id":"78500","lastModified":"1301902140000","name":"Will McCormack","type":"Person","_key":"61990"} +{"label":"The Eyes of Tammy Faye","description":"A documentary look, mostly through the eyes of Tammy Faye Bakker Messner, at her rise and fall as a popular televangelist with husband Jim Bakker.","id":"15665","runtime":0,"imdbId":"tt0233687","version":157,"lastModified":"1301907999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/865\/4bc9485d017a3c57fe01f865\/the-eyes-of-tammy-faye-mid.jpg","genre":"Documentary","title":"The Eyes of Tammy Faye","releaseDate":946684800000,"language":"en","type":"Movie","_key":"61991"} +{"label":"The Last Winter","description":"In the Arctic region of Northern Alaska, an oil company's advance team struggles to establish a drilling base that will forever alter the pristine land. After one team member is found dead, a disorientation slowly claims the sanity of the others as each of them succumbs to a mysterious fear.","id":"15667","runtime":101,"imdbId":"tt0454864","version":203,"lastModified":"1301903833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4c78f9557b9aa176c000007e\/the-last-winter-mid.jpg","studio":"Antidote Films","genre":"Horror","title":"The Last Winter","releaseDate":1157932800000,"language":"en","tagline":"What if mankind only had one season left on Earth?","type":"Movie","_key":"61992"} +{"label":"Connie Britton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ca\/4d95db725e73d622510031ca\/connie-britton-profile.jpg","version":41,"id":"86310","lastModified":"1302130640000","name":"Connie Britton","type":"Person","_key":"61993"} +{"label":"Jamie Harrold","version":23,"id":"86919","lastModified":"1301901946000","name":"Jamie Harrold","type":"Person","_key":"61994"} +{"label":"Pato Hoffmann","version":20,"id":"86920","lastModified":"1301902633000","name":"Pato Hoffmann","type":"Person","_key":"61995"} +{"label":"Xanadu","description":"The Greek muses incarnate themselves on Earth to inspire men to achieve. One of them, incarnated as a girl named Kira, encounters an artist named Sonny Malone. With the help of Danny McGuire, a man Kira had inspired forty years earlier, Sonny builds a huge disco roller rink.","id":"15668","runtime":93,"imdbId":"tt0081777","version":251,"lastModified":"1301904084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/873\/4bc9485d017a3c57fe01f873\/xanadu-mid.jpg","studio":"Universal Pictures Corporation","genre":"Comedy","title":"Xanadu","releaseDate":334540800000,"language":"en","type":"Movie","_key":"61996"} +{"label":"The Final Season","description":"True story of Kent Stock, who in the early 90's, gives up a job and ditches his wedding plans to take over as head coach as the Norway High School baseball team. Kent must win over his players and convince them and himself that he can fill their former coach's shoes and that they can go out winners. In the summer of 1991 Norway High's baseball tradition ended on a triumphant but sombre note.","id":"15669","runtime":119,"imdbId":"tt0449018","version":169,"lastModified":"1301904303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/880\/4bc9485e017a3c57fe01f880\/the-final-season-mid.jpg","genre":"Drama","title":"The Final Season","releaseDate":1192147200000,"language":"en","tagline":"How Do You Want To Be Remembered?","type":"Movie","_key":"61997"} +{"label":"Madea Goes To Jail","description":"At long last, Madea returns to the big screen in TYLER PERRY'S MADEA GOES TO JAIL. This time America's favorite irreverent, pistol-packin' grandmomma is raising hell behind bars and lobbying for her freedom...Hallelujer! ","id":"15670","runtime":103,"imdbId":"tt1142800","trailer":"http:\/\/www.youtube.com\/watch?v=1043","homepage":"http:\/\/www.madeagoestojailmovie.com\/","version":402,"lastModified":"1301902297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89d\/4bc94864017a3c57fe01f89d\/madea-goes-to-jail-mid.jpg","studio":"Tyler Perry Company, The","title":"Madea Goes To Jail","releaseDate":1234742400000,"language":"en","type":"Movie","_key":"61998"} +{"label":"Keshia Knight Pulliam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d6\/4d8152c97b9aa12da60014d6\/keshia-knight-pulliam-profile.jpg","version":23,"id":"84206","lastModified":"1301901941000","name":"Keshia Knight Pulliam","type":"Person","_key":"61999"} +{"label":"Ion Overman","version":19,"id":"84208","lastModified":"1301902242000","name":"Ion Overman","type":"Person","_key":"62000"} +{"label":"David Mann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7fb\/4d8a774c7b9aa13ae10007fb\/david-mann-profile.jpg","version":23,"id":"78739","lastModified":"1301901506000","name":"David Mann","type":"Person","_key":"62001"} +{"label":"Tamela J. Mann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/809\/4d8a778f7b9aa13ae1000809\/tamela-j-mann-profile.jpg","version":21,"id":"78738","lastModified":"1301901646000","name":"Tamela J. Mann","type":"Person","_key":"62002"} +{"label":"RonReaco Lee","version":21,"id":"84209","lastModified":"1301902243000","name":"RonReaco Lee","type":"Person","_key":"62003"} +{"label":"Picture This","description":"A high school girl is invited to a party by the most popular boy in school - only trouble is, she's grounded.","id":"15671","runtime":93,"imdbId":"tt1076252","version":179,"lastModified":"1301903329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d3\/4bc9486b017a3c57fe01f8d3\/picture-this-mid.jpg","genre":"Comedy","title":"Picture This","releaseDate":1215907200000,"language":"en","type":"Movie","_key":"62004"} +{"label":"Robbie Amell","version":16,"id":"225735","lastModified":"1302163173000","name":"Robbie Amell","type":"Person","_key":"62005"} +{"label":"Shenae Grimes","version":20,"id":"88619","lastModified":"1301902987000","name":"Shenae Grimes","type":"Person","_key":"62006"} +{"label":"Lauren Collins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f6f\/4d2806697b9aa134d8001f6f\/lauren-collins-profile.jpg","version":20,"id":"88620","lastModified":"1301902207000","name":"Lauren Collins","type":"Person","_key":"62007"} +{"label":"Cindy Busby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f54\/4d2806c47b9aa134cb001f54\/cindy-busby-profile.jpg","version":21,"id":"111920","lastModified":"1301902395000","name":"Cindy Busby","type":"Person","_key":"62008"} +{"label":"Marie-Marguerite Sabongui","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f77\/4d2807bd7b9aa134d8001f77\/marie-marguerite-sabongui-profile.jpg","version":16,"id":"147891","lastModified":"1301902727000","name":"Marie-Marguerite Sabongui","type":"Person","_key":"62009"} +{"label":"Angela Galuppo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f4f\/4d2808427b9aa134dc001f4f\/angela-galuppo-profile.jpg","version":16,"id":"147892","lastModified":"1301902550000","name":"Angela Galuppo","type":"Person","_key":"62010"} +{"label":"Maxim Roy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f57\/4d2808bd7b9aa134dc001f57\/maxim-roy-profile.jpg","version":30,"id":"29880","lastModified":"1302081126000","name":"Maxim Roy","type":"Person","_key":"62011"} +{"label":"WEC 39: Brown vs. Garcia","description":"WEC 39: Brown vs. Garcia Took place on March 1, 2009 in Corpus Christi, Texas. The event aired live on the Versus Network.WEC Featherweight Champion Mike Brown made his first title defense against number one contender Leonard Garcia.","id":"15672","runtime":95,"version":135,"lastModified":"1301907441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d8\/4bc9486b017a3c57fe01f8d8\/wec-39-brown-vs-garcia-mid.jpg","genre":"Sports Film","title":"WEC 39: Brown vs. Garcia","releaseDate":1235865600000,"language":"en","type":"Movie","_key":"62012"} +{"label":"Bart Palaszewski","version":25,"id":"78504","lastModified":"1301902211000","name":"Bart Palaszewski","type":"Person","_key":"62013"} +{"label":"Ricardo Lamas","version":16,"id":"78505","lastModified":"1301902325000","name":"Ricardo Lamas","type":"Person","_key":"62014"} +{"label":"Jose Aldo","version":21,"id":"78506","lastModified":"1301901984000","name":"Jose Aldo","type":"Person","_key":"62015"} +{"label":"Chris Mickle","version":16,"id":"78507","lastModified":"1301902176000","name":"Chris Mickle","type":"Person","_key":"62016"} +{"label":"Rob McCullough","version":17,"id":"78508","lastModified":"1301901948000","name":"Rob McCullough","type":"Person","_key":"62017"} +{"label":"Marcus Hicks","version":15,"id":"78509","lastModified":"1301902325000","name":"Marcus Hicks","type":"Person","_key":"62018"} +{"label":"Connie and Carla","description":"After accidentally witnessing a mafia hit in the Windy City, gal pals Connie and Carla skip town for L.A., where they go way undercover as singers working the city's dinner theater circuit ... as drag queens. Now, it's not enough that they become big hits on the scene; things get extra-weird when Connie meets Jeff -- a guy she'd like to be a woman with","id":"15673","runtime":98,"imdbId":"tt0345074","version":194,"lastModified":"1301905769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e5\/4bc9486c017a3c57fe01f8e5\/connie-and-carla-mid.jpg","genre":"Comedy","title":"Connie and Carla","releaseDate":1089936000000,"language":"en","type":"Movie","_key":"62019"} +{"label":"Sabrina the Teenage Witch","description":"A girl, sent by her parents to live with her two eccentric aunts, finds out on her sixteenth birthday that she is a witch","id":"15674","runtime":91,"imdbId":"tt0117534","trailer":"http:\/\/www.youtube.com\/watch?v=-wQiHx37uJo","version":115,"lastModified":"1301906503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ee\/4bc9486f017a3c57fe01f8ee\/sabrina-the-teenage-witch-mid.jpg","genre":"Comedy","title":"Sabrina the Teenage Witch","releaseDate":828835200000,"language":"en","type":"Movie","_key":"62020"} +{"label":"Sherry Miller","version":23,"id":"43301","lastModified":"1301902131000","name":"Sherry Miller","type":"Person","_key":"62021"} +{"label":"Charlene Fernetz","version":17,"id":"96391","lastModified":"1301902722000","name":"Charlene Fernetz","type":"Person","_key":"62022"} +{"label":"Michelle Beaudoin","version":17,"id":"96392","lastModified":"1301902710000","name":"Michelle Beaudoin","type":"Person","_key":"62023"} +{"label":"Neil Young: Heart of Gold","description":"Heart of Gold is Jonathan Demme's intimate musical portrait of legendary singer \/ songwriter Neil Young, filmed on the occasion of the world premier of Young's \"Prairie Wind\" concert at Nashville's hallowed Ryman Auditorium in 2005. Young's music provides an emotionally rich view into this unique artists relationship to family, friends, mortality and the passage of time.","id":"15675","runtime":99,"imdbId":"tt0473692","version":166,"lastModified":"1301906255000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbd\/4d63905e5e73d60c62004cbd\/neil-young-heart-of-gold-mid.jpg","genre":"Documentary","title":"Neil Young: Heart of Gold","releaseDate":1139529600000,"language":"en","type":"Movie","_key":"62024"} +{"label":"Nobel Son","description":"Barkley Michaelson is in a deep life rut. He's struggling to finish his PhD thesis when his father, the learned Eli Michaelson, wins the Nobel Prize for Chemistry. On the eve of his father receiving the Nobel, Barkley is kidnapped and the requested ransom is the $2,000,000 in Nobel prize money. Needless to say, Eli refuses to pay it and so starts a venomous tale.","id":"15676","runtime":110,"imdbId":"tt0483756","version":216,"lastModified":"1301903187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/903\/4bc94873017a3c57fe01f903\/nobel-son-mid.jpg","studio":"Gimme Five Films","genre":"Comedy","title":"Nobel Son","releaseDate":1177718400000,"language":"en","type":"Movie","_key":"62025"} +{"label":"84 Charing Cross Road","description":"When a humorous script-reader in her New York apartment sees an ad in the Saturday Review of Literature for a bookstore in London that does mail order, she begins a very special correspondence and friendship with Frank Doel, the bookseller who works at Marks & Co., 84 Charing Cross Road.","id":"15677","runtime":100,"imdbId":"tt0090570","version":135,"lastModified":"1301904964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bd\/4caa845f7b9aa17acd0007bd\/84-charing-cross-road-mid.jpg","studio":"Brooksfilms Ltd.","genre":"Drama","title":"84 Charing Cross Road","releaseDate":540172800000,"language":"en","type":"Movie","_key":"62026"} +{"label":"David Hugh Jones","version":25,"id":"78514","lastModified":"1301901828000","name":"David Hugh Jones","type":"Person","_key":"62027"} +{"label":"Jean De Baer","version":18,"id":"78518","lastModified":"1301901864000","name":"Jean De Baer","type":"Person","_key":"62028"} +{"label":"WEC 9: Cold Blooded","description":"World Extreme Cagefighting returned to The Palace Indian Gaming Center in Lemoore, California for the ninth installment of promoters Scott Adams' and Reed Harris' emerging event. With a few big name guys and a packed stable of home grown talent, the WEC has started to make a push towards the top of the pack when it comes to regional events.","id":"15678","runtime":52,"version":17,"lastModified":"1301110823000","studio":"Zuffa","genre":"Sports Film","title":"WEC 9: Cold Blooded","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"62029"} +{"label":"WEC","description":"World Extreme Cagefighting (WEC) is an American mixed martial arts (MMA) promotion. It is the sister promotion to the Ultimate Fighting Championship (UFC), both owned and produced by Zuffa, with a focus on the lighter weight classes (155, 145, 135, & 125 lbs). The WEC uses the same rules as its older and much larger sibling, and holds its matches in a smaller octagonal cage.","id":"15679","homepage":"http:\/\/www.wec.tv\/","version":131,"lastModified":"1301416040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90c\/4bc94873017a3c57fe01f90c\/wec-mid.jpg","title":"WEC","language":"en","type":"Movie","_key":"62030"} +{"label":"Ex","description":"Commedia con episodi intrecciati che ruotano tutti intorno all\u2019argomento degli amori finiti. Gli ex sono come l\u2019Araba Fenice che rinasce dalle ceneri, non muoiono mai, sono l\u00ec in agguato, pronti a cambiare la tua vita. Con alcuni il rapporto si \u00e8 trasformato in odio, con altri in amicizia, con altri,invece, l\u2019amore \u00e8 ancora vivo. ","id":"15681","runtime":120,"imdbId":"tt1188988","version":159,"lastModified":"1301417316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/919\/4bc94874017a3c57fe01f919\/ex-mid.jpg","studio":"Italian International Film","genre":"Comedy","title":"Ex","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"62031"} +{"label":"Fausto Brizzi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c0e\/4d4e599e7b9aa13aaf009c0e\/fausto-brizzi-profile.jpg","version":25,"id":"78530","lastModified":"1301902068000","name":"Fausto Brizzi","type":"Person","_key":"62032"} +{"label":"Vincenzo Alfieri","version":16,"id":"78531","lastModified":"1301902068000","name":"Vincenzo Alfieri","type":"Person","_key":"62033"} +{"label":"Nancy Brilli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e6f\/4d4e651b7b9aa13ab4009e6f\/nancy-brilli-profile.jpg","version":27,"id":"78532","lastModified":"1301902133000","name":"Nancy Brilli","type":"Person","_key":"62034"} +{"label":"Cristiana Capotondi","version":24,"id":"78533","lastModified":"1301902068000","name":"Cristiana Capotondi","type":"Person","_key":"62035"} +{"label":"C\u00e9cile Cassel","version":22,"id":"78534","lastModified":"1301902222000","name":"C\u00e9cile Cassel","type":"Person","_key":"62036"} +{"label":"Fabio De Luigi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2d\/4d4e5aff7b9aa13ab8009c2d\/fabio-de-luigi-profile.jpg","version":29,"id":"78535","lastModified":"1301902224000","name":"Fabio De Luigi","type":"Person","_key":"62037"} +{"label":"Claudia Fiorentini","version":16,"id":"78536","lastModified":"1301902243000","name":"Claudia Fiorentini","type":"Person","_key":"62038"} +{"label":"Gianluca Grecchi","version":17,"id":"78537","lastModified":"1301902361000","name":"Gianluca Grecchi","type":"Person","_key":"62039"} +{"label":"Gianmarco Tognazzi","version":22,"id":"78538","lastModified":"1301902319000","name":"Gianmarco Tognazzi","type":"Person","_key":"62040"} +{"label":"Nitro Circus 5 ThrillBillies","description":"Travis and the Nitro Circus Crew head full throttle into the gears of insanity. Witness Travis\u2019 triumphant return to the Grand Canyon where he barely survives. Then watch the madness at the legendary Castaic shoot where dirt bikes, monster trucks, helicopters and a trophy truck hit the air in orchestrated chaos.","id":"15682","runtime":0,"version":22,"lastModified":"1301416872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91e\/4bc94874017a3c57fe01f91e\/nitro-circus-5-thrillbillies-mid.jpg","title":"Nitro Circus 5 ThrillBillies","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62041"} +{"label":"Riccardo III","description":"Riccardo III (da Shakespeare) secondo Carmelo Bene ","id":"15683","runtime":76,"imdbId":"tt0997259","version":43,"lastModified":"1300980187000","genre":"Comedy","title":"Riccardo III","releaseDate":376531200000,"language":"en","type":"Movie","_key":"62042"} +{"label":"Carmelo Bene","version":25,"id":"78539","lastModified":"1301902143000","name":"Carmelo Bene","type":"Person","_key":"62043"} +{"label":"Lydia Mancinelli","version":20,"id":"78540","lastModified":"1301902384000","name":"Lydia Mancinelli","type":"Person","_key":"62044"} +{"label":"Maria Grazia Grassini","version":16,"id":"78541","lastModified":"1301902325000","name":"Maria Grazia Grassini","type":"Person","_key":"62045"} +{"label":"Daniela Silverio","version":16,"id":"78542","lastModified":"1301902143000","name":"Daniela Silverio","type":"Person","_key":"62046"} +{"label":"Licia Dotti","version":16,"id":"78544","lastModified":"1301901778000","name":"Licia Dotti","type":"Person","_key":"62047"} +{"label":"Nitro Circus 4 Lock'n Load","description":"Look ma! No hands! It's loud. It's loose. It's the Nitro Circus. We've rounded up the crew packed the powder now it's time to 'Lock and Load' , and put the fire in the hole. Erratic, random chaos is the flavor. Straight doses of ADHD players is the source. It's our beloved Travis just being Travis. Anyone who is involved with this movie is freakin' nuts! You in? Caution idiots ahead. ","id":"15684","runtime":58,"imdbId":"tt0997477","homepage":"http:\/\/nitrocircus.com\/","version":45,"lastModified":"1301905625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/927\/4bc94875017a3c57fe01f927\/nitro-circus-4-lock-n-load-mid.jpg","genre":"Sports Film","title":"Nitro Circus 4 Lock'n Load","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"62048"} +{"label":"Travis Pastrana","version":32,"id":"79961","lastModified":"1301901948000","name":"Travis Pastrana","type":"Person","_key":"62049"} +{"label":"Ronnie Renner","version":21,"id":"79963","lastModified":"1301902503000","name":"Ronnie Renner","type":"Person","_key":"62050"} +{"label":"Kenny Bartram","version":21,"id":"79965","lastModified":"1301902503000","name":"Kenny Bartram","type":"Person","_key":"62051"} +{"label":"Nitro Circus 3","description":"NC3 is categorized as a Freestyle Motocross film. However, just like Travis Pastrana is much more than just a freestyle motocross star, the Nitro Circus series goes way beyond simply being a freestyle motocross film. It is a film about pushing the limits of human ability and spirit. Sometimes this comes across as heroic and other times as sheer insanity. ","id":"15685","runtime":0,"imdbId":"tt0811122","version":53,"lastModified":"1301684273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92c\/4bc94875017a3c57fe01f92c\/nitro-circus-3-mid.jpg","genre":"Action","title":"Nitro Circus 3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62052"} +{"label":"Travis Pastrana and The Nitro Circus","description":"Godfrey Entertainment and Travis and the Nitro Circus take freestyle motocross and other action sports to a whole new dimension. The jaw-dropping footage of questionable tricks and failed landings provide nonstop, mind-blowing entertainment.","id":"15686","runtime":51,"version":60,"lastModified":"1300980187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/931\/4bc94875017a3c57fe01f931\/travis-pastrana-and-the-nitro-circus-mid.jpg","title":"Travis Pastrana and The Nitro Circus","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62053"} +{"label":"Nitro Circus 6 Thrillbillies Doublewide","description":"Join Travis Pastrana and the Nitro Circus Thrillbillies gang as they invade and take over a motocross race in Costa Rica, compete in their own brand of Winter and Summer Olympics, and big wheel base jump ridiculous cliffs at Lake Powell! Travis also planes his motocross bike off of a floating ramp in the middle of a lake! Other adventures include Rally Car action with Ken Block, and an Evil Knievel tribute with guest, Johnny Knoxville. Plus, all the Nitro Circus non-sense you've come to expect. ","id":"15687","runtime":0,"version":24,"lastModified":"1301906685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4bc94875017a3c57fe01f936\/nitro-circus-6-thrillbillies-doublewide-mid.jpg","title":"Nitro Circus 6 Thrillbillies Doublewide","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62054"} +{"label":"Dead Meat","description":"Helena and Martins vacation to Ireland quickly transforms into a nightmare as a virus which turns humans into flesh-eating zombies is starting to spread.","id":"15689","runtime":80,"imdbId":"tt0369359","trailer":"http:\/\/www.youtube.com\/watch?v=1044","version":191,"lastModified":"1301903655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/943\/4bc94876017a3c57fe01f943\/dead-meat-mid.jpg","studio":"Three Way Productions","genre":"Action","title":"Dead Meat","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"62055"} +{"label":"Conor McMahon","version":18,"id":"78545","lastModified":"1301902174000","name":"Conor McMahon","type":"Person","_key":"62056"} +{"label":"Marian Araujo","version":17,"id":"78547","lastModified":"1301901778000","name":"Marian Araujo","type":"Person","_key":"62057"} +{"label":"David Muyllaert","version":16,"id":"78548","lastModified":"1301901778000","name":"David Muyllaert","type":"Person","_key":"62058"} +{"label":"Eoin Whelan","version":16,"id":"78549","lastModified":"1301901778000","name":"Eoin Whelan","type":"Person","_key":"62059"} +{"label":"David Ryan","version":17,"id":"78550","lastModified":"1301901815000","name":"David Ryan","type":"Person","_key":"62060"} +{"label":"EliteXC: Heat","description":"EliteXC: Heat a mixed martial arts event held by EliteXC on October 4, 2008 in Sunrise, Florida at the Bank Atlantic Center.It was the third and final EliteXC show to be featured on CBS and marked the return of fighters Jake Shields, Gina Carano, and Kimbo Slice. A last minute injury to Ken Shamrock the day of the show made him pull out from the main even. Kimbo fight Seth Petruzelli instead.","id":"15690","runtime":92,"version":30,"lastModified":"1301907254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/954\/4bc94879017a3c57fe01f954\/elitexc-heat-mid.jpg","genre":"Sports Film","title":"EliteXC: Heat","releaseDate":1223078400000,"language":"en","type":"Movie","_key":"62061"} +{"label":"Kelly Kobald","version":16,"id":"78557","lastModified":"1301901990000","name":"Kelly Kobald","type":"Person","_key":"62062"} +{"label":"Seth Petruzelli","version":16,"id":"78558","lastModified":"1301901718000","name":"Seth Petruzelli","type":"Person","_key":"62063"} +{"label":"Roy Nelson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1f4\/4c1df3867b9aa118150001f4\/roy-nelson-profile.jpg","version":20,"id":"78559","lastModified":"1301903118000","name":"Roy Nelson","type":"Person","_key":"62064"} +{"label":"Doctor Who","description":"The newly-regenerated Doctor takes on the Master on the turn of the millennium, 31 December 1999.","id":"15691","runtime":89,"imdbId":"tt0116118","version":100,"lastModified":"1301904692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95d\/4bc9487d017a3c57fe01f95d\/doctor-who-mid.jpg","studio":"Universal TV","genre":"Adventure","title":"Doctor Who","releaseDate":833155200000,"language":"en","type":"Movie","_key":"62065"} +{"label":"Daphne Ashbrook","version":20,"id":"80111","lastModified":"1301902133000","name":"Daphne Ashbrook","type":"Person","_key":"62066"} +{"label":"Sylvester McCoy","version":19,"id":"80112","lastModified":"1301902464000","name":"Sylvester McCoy","type":"Person","_key":"62067"} +{"label":"Elite XC","description":"EliteXC, was a U.S.-based mixed martial arts (MMA) organization. It was founded as a partnership between Showtime Networks Inc. and ProElite, Inc. and officially announced on December 14, 2006. It was headquartered in Los Angeles, California. The partnership to form EliteXC was announced on November 13, 2006. ProElite announced on October 20, 2008 that they would cease operations.","id":"15692","runtime":0,"version":65,"lastModified":"1301906676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/972\/4bc9487f017a3c57fe01f972\/elite-xc-mid.jpg","genre":"Sports Film","title":"Elite XC","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"62068"} +{"label":"HBO Boxing: Hatton vs. Malignaggi","description":"Las Vegas -- Ricky Hatton makes his return to the MGM Grand boxing ring in a 12-round match that has given his dedicated and noisy fan base another reason to depart Manchester, England, in early winter. His opponent will be Brooklyn fighter Paulie Malignaggi, who has also lost only once, in 26 fights, and who may have been most impressive in his 12-round loss in June 2006 to Miguel Cotto.","id":"15693","runtime":67,"version":18,"lastModified":"1301906150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98a\/4bc94880017a3c57fe01f98a\/hbo-boxing-hatton-vs-malignaggi-mid.jpg","genre":"Sports Film","title":"HBO Boxing: Hatton vs. Malignaggi","releaseDate":1227312000000,"language":"en","type":"Movie","_key":"62069"} +{"label":"Ricky Hatton","version":16,"id":"75887","lastModified":"1301902020000","name":"Ricky Hatton","type":"Person","_key":"62070"} +{"label":"Paulie Malignaggi","version":16,"id":"78560","lastModified":"1301902180000","name":"Paulie Malignaggi","type":"Person","_key":"62071"} +{"label":"HBO Boxing","description":"HBO Sports presents the fiercest competitors and the toughest battles right into your television screen. Boxing's greatest warriors battle in the ring in HBO specials. The fights can be seen on HBO Pay-per-view, HBO Boxing After Dark, or HBO World Championship Boxing.","id":"15694","runtime":0,"version":17,"lastModified":"1301904209000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ab\/4bc94883017a3c57fe01f9ab\/hbo-boxing-mid.jpg","genre":"Sports Film","title":"HBO Boxing","releaseDate":96508800000,"language":"en","type":"Movie","_key":"62072"} +{"label":"The Aquarium","description":"Blu-ray background video featuring footage of world-class Georgia Aquarium in Atlanta filmed on hi-vision cameras during a closed off personal session at the aquarium.","id":"15695","runtime":41,"version":89,"lastModified":"1301905186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b4\/4bc94884017a3c57fe01f9b4\/the-aquarium-mid.jpg","genre":"Documentary","title":"The Aquarium","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"62073"} +{"label":"A Canterbury Tale","description":"Three people arrive in a village in Southern England in the early years of World War 2. Alison Smith is a London girl who is due to start working on a farm as a 'Land Girl'. Peter Gibbs is an Englishman conscripted into the army, taking a few days leave before going abroad. Bob Johnson is a U.S. Army sergeant who wanted to go to Canterbury, but got off here by mistake. As they walk into the village, Alison is attacked by 'The Glue Man', a prankster who pours glue in women's hair. The three of th","id":"15696","runtime":124,"imdbId":"tt0036695","version":67,"lastModified":"1302023616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bd\/4bc94884017a3c57fe01f9bd\/a-canterbury-tale-mid.jpg","genre":"Comedy","title":"A Canterbury Tale","releaseDate":-800409600000,"language":"en","type":"Movie","_key":"62074"} +{"label":"Eric Portman","version":23,"id":"96994","lastModified":"1301901854000","name":"Eric Portman","type":"Person","_key":"62075"} +{"label":"Sheila Sim","version":23,"id":"121004","lastModified":"1301902713000","name":"Sheila Sim","type":"Person","_key":"62076"} +{"label":"Emeric Pressburger","version":66,"id":"37846","lastModified":"1302077695000","name":"Emeric Pressburger","type":"Person","_key":"62077"} +{"label":"Jailhouse Rock","description":"After serving time for manslaughter, young Vince Everett becomes a teenage rock star.","id":"15697","runtime":96,"imdbId":"tt0050556","version":217,"lastModified":"1301903361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d2\/4bc94889017a3c57fe01f9d2\/jailhouse-rock-mid.jpg","genre":"Drama","title":"Jailhouse Rock","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"62078"} +{"label":"Judy Tyler","version":21,"id":"83439","lastModified":"1301901864000","name":"Judy Tyler","type":"Person","_key":"62079"} +{"label":"Jennifer Holden","version":21,"id":"83440","lastModified":"1301902068000","name":"Jennifer Holden","type":"Person","_key":"62080"} +{"label":"Anne Neyland","version":21,"id":"83441","lastModified":"1301902464000","name":"Anne Neyland","type":"Person","_key":"62081"} +{"label":"Running Scared","description":"Gregory Hines and Billy Crystal star in the motion picture that asks the question, How come the bad guys always drive the good cars? The answer has them Running Scared in this lightning-paced comic thriller. ","id":"15698","runtime":107,"imdbId":"tt0091875","trailer":"http:\/\/www.youtube.com\/watch?v=INwvXCwLJ8s","version":141,"lastModified":"1301905950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9db\/4bc94889017a3c57fe01f9db\/running-scared-mid.jpg","genre":"Action","title":"Running Scared","releaseDate":504921600000,"language":"en","type":"Movie","_key":"62082"} +{"label":"Opal Dream","description":"Pobby & Dingan are invisible. They live in an opal town in Australia and are friends with Kellyanne, the 9 year-old daughter of an opal miner. The film tells the story of the bizarre and inexplicable disappearance of Pobby & Dingan, Kellyanne's imaginary friends, and the impact this has on her family and the whole town. The story is told through the eyes of Kellyanne's 11 years old brother Ashmol.","id":"15699","runtime":86,"imdbId":"tt0420835","version":137,"lastModified":"1301906257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f5\/4bc9488b017a3c57fe01f9f5\/opal-dream-mid.jpg","studio":"Renaissance Films","genre":"Drama","title":"Opal Dream","releaseDate":1164153600000,"language":"en","type":"Movie","_key":"62083"} +{"label":"Sapphire Boyce","version":16,"id":"78564","lastModified":"1301902068000","name":"Sapphire Boyce","type":"Person","_key":"62084"} +{"label":"Vince Colosimo","version":52,"id":"77496","lastModified":"1301901209000","name":"Vince Colosimo","type":"Person","_key":"62085"} +{"label":"Anna Linarello","version":16,"id":"78565","lastModified":"1301902242000","name":"Anna Linarello","type":"Person","_key":"62086"} +{"label":"Denise Roberts","version":16,"id":"78566","lastModified":"1301902068000","name":"Denise Roberts","type":"Person","_key":"62087"} +{"label":"Peter Callan","version":16,"id":"78567","lastModified":"1301902242000","name":"Peter Callan","type":"Person","_key":"62088"} +{"label":"C\u00e9line Dion: Opening Night Live Las Vegas","description":"Celine Dion: A New Day is a riveting, sumptuous front-row seat to the whole extravagant Las Vegas concert experience. Featuring no-expenses-spared production values and every song from Dion's famed discography, her substantial voice is in fine form, and sparkles on signature tunes. Impressive performances include the talented gymnasts, dancers, and backup singers Cirque du Soleil-style.","id":"15700","runtime":93,"imdbId":"tt0359126","version":34,"lastModified":"1301418749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a03\/4bc9488d017a3c57fe01fa03\/celine-dion-live-in-las-vegas-a-new-day-mid.jpg","genre":"Musical","title":"C\u00e9line Dion: Opening Night Live Las Vegas","releaseDate":1197331200000,"language":"en","type":"Movie","_key":"62089"} +{"label":"The Irrefutable Truth About Demons","description":"In the place between what you know, and what you fear,\ndemons rule.\nAll hope is stripped away as demonic forces overcome you.\nDr. Harry Ballard has just unearthed the essence of evil.\nHe\u2019s a marked man, a living sacrifice, thrown to the depths\nof the demon world.\nAt his side is a beautiful young woman \u2013 an ex-cult member\nwho\u2019s experienced their immeasurable power.","id":"15701","runtime":90,"imdbId":"tt0267601","homepage":"http:\/\/www.demons.co.nz\/","version":65,"lastModified":"1301905186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a10\/4bc9488f017a3c57fe01fa10\/the-irrefutable-truth-about-demons-mid.jpg","genre":"Horror","title":"The Irrefutable Truth About Demons","releaseDate":957139200000,"language":"en","type":"Movie","_key":"62090"} +{"label":"Glenn Standring","version":17,"id":"104999","lastModified":"1301902987000","name":"Glenn Standring","type":"Person","_key":"62091"} +{"label":"Peindre ou faire l'amour","description":"Mari\u00e9s depuis longtemps, William et Madeleine vivent en ville au pied des montagnes. Apr\u00e8s le d\u00e9part de leur fille unique, ils n'ont plus \u00e0 s'occuper que d'eux-m\u00eames.","id":"15702","runtime":100,"imdbId":"tt0431975","version":59,"lastModified":"1301414087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a21\/4bc94892017a3c57fe01fa21\/peindre-ou-faire-l-amour-mid.jpg","title":"Peindre ou faire l'amour","releaseDate":1124841600000,"language":"en","type":"Movie","_key":"62092"} +{"label":"Arnaud Larrieu","version":19,"id":"144782","lastModified":"1301903071000","name":"Arnaud Larrieu","type":"Person","_key":"62093"} +{"label":"Jean-Marie Larrieu","version":16,"id":"146169","lastModified":"1301903097000","name":"Jean-Marie Larrieu","type":"Person","_key":"62094"} +{"label":"Philippe Katerine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48d\/4d3858267b9aa178a700e48d\/philippe-katerine-profile.jpg","biography":"Philippe Katerine (de son vrai nom Philippe Blanchard), n\u00e9 le 8 d\u00e9cembre 1968 dans le d\u00e9partement des Deux-S\u00e8vres, est un auteur, compositeur, interpr\u00e8te, acteur, r\u00e9alisateur et \u00e9crivain fran\u00e7ais. Il a grandi en Vend\u00e9e \u00e0 Chantonnay.\n\nAu d\u00e9but de sa carri\u00e8re, son style fut parfois assimil\u00e9 au mouvement easy-listening en proposant une musique aux accents de bossa nova accompagn\u00e9s de textes souvent morbides ou angoiss\u00e9s et teint\u00e9s d'humour, le tout parfois entrecoup\u00e9 de collages audio. Toutefois, d","version":31,"id":"119501","lastModified":"1301902536000","name":"Philippe Katerine","type":"Person","_key":"62095"} +{"label":"Helene de Saint-P\u00e8re","version":16,"id":"146170","lastModified":"1301902814000","name":"Helene de Saint-P\u00e8re","type":"Person","_key":"62096"} +{"label":"Roger Mirmont","version":16,"id":"146171","lastModified":"1301903093000","name":"Roger Mirmont","type":"Person","_key":"62097"} +{"label":"Marie-Pierre Chaix","version":16,"id":"146172","lastModified":"1301903095000","name":"Marie-Pierre Chaix","type":"Person","_key":"62098"} +{"label":"Thiago Teles","version":16,"id":"146173","lastModified":"1301903096000","name":"Thiago Teles","type":"Person","_key":"62099"} +{"label":"All My Friends Are Leaving Brisbane","description":"Anthea is 25, single, hates her job \u2013 and all her friends are leaving Brisbane. Should she follow the herd to Sydney or London? Is there anything worth staying for now that her best friend Michael finally has a girlfriend? This film tells a universal story about finding your place and yourself...","id":"15703","runtime":76,"imdbId":"tt0818897","homepage":"allmyfriendsmovie.com","version":216,"lastModified":"1301906414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2a\/4bc94894017a3c57fe01fa2a\/all-my-friends-are-leaving-brisbane-mid.jpg","genre":"Comedy","title":"All My Friends Are Leaving Brisbane","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62100"} +{"label":"Charlotte Gregg","version":17,"id":"78568","lastModified":"1301901562000","name":"Charlotte Gregg","type":"Person","_key":"62101"} +{"label":"Matt Zeremes","version":16,"id":"78569","lastModified":"1301901778000","name":"Matt Zeremes","type":"Person","_key":"62102"} +{"label":"Ryan Johnson","version":16,"id":"78570","lastModified":"1301901948000","name":"Ryan Johnson","type":"Person","_key":"62103"} +{"label":"Cindy Nelson","version":16,"id":"78571","lastModified":"1301901778000","name":"Cindy Nelson","type":"Person","_key":"62104"} +{"label":"Romany Lee","version":16,"id":"78573","lastModified":"1301902143000","name":"Romany Lee","type":"Person","_key":"62105"} +{"label":"Sarah Kennedy","version":16,"id":"78574","lastModified":"1301901948000","name":"Sarah Kennedy","type":"Person","_key":"62106"} +{"label":"Incendiary","description":"An adulterous woman's life is torn apart when her husband and infant son are killed in a suicide bombing at a soccer match.","id":"15705","runtime":96,"imdbId":"tt0984200","trailer":"http:\/\/www.youtube.com\/watch?v=GRjkXY4TFKA","version":203,"lastModified":"1301902123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a33\/4bc94898017a3c57fe01fa33\/incendiary-mid.jpg","studio":"Aramid Entertainment Fund","genre":"Drama","title":"Incendiary","releaseDate":1200787200000,"language":"en","type":"Movie","_key":"62107"} +{"label":"Another Gay Sequel: Gays Gone Wild!","description":"ANOTHER GAY SEQUEL finds our heroes ANDY, NICO, JAROD and GRIFF reuniting at a gay resort in sunny Fort Lauderdale for Spring Break. They participate in a contest called 'Gays Gone Wild!' to determine who can attain the most \"buttlove\" over the course of the vacation.\n","id":"15706","runtime":90,"imdbId":"tt1051981","version":116,"lastModified":"1301907709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a44\/4bc9489e017a3c57fe01fa44\/another-gay-sequel-gays-gone-wild-mid.jpg","studio":"Luna Pictures","genre":"Comedy","title":"Another Gay Sequel: Gays Gone Wild!","releaseDate":1225929600000,"language":"en","type":"Movie","_key":"62108"} +{"label":"Jake Mosser","version":16,"id":"78584","lastModified":"1301901864000","name":"Jake Mosser","type":"Person","_key":"62109"} +{"label":"Aaron Michael Davies","version":19,"id":"78585","lastModified":"1301902068000","name":"Aaron Michael Davies","type":"Person","_key":"62110"} +{"label":"Jimmy Clabots","version":16,"id":"78586","lastModified":"1301901864000","name":"Jimmy Clabots","type":"Person","_key":"62111"} +{"label":"Euriamis Losada","version":16,"id":"78587","lastModified":"1301902068000","name":"Euriamis Losada","type":"Person","_key":"62112"} +{"label":"Perez Hilton","version":17,"id":"78588","lastModified":"1301902068000","name":"Perez Hilton","type":"Person","_key":"62113"} +{"label":"Will Wikle","version":16,"id":"78590","lastModified":"1301902068000","name":"Will Wikle","type":"Person","_key":"62114"} +{"label":"Brandon Lim","version":16,"id":"78591","lastModified":"1301902068000","name":"Brandon Lim","type":"Person","_key":"62115"} +{"label":"Isaac Webster","version":16,"id":"78592","lastModified":"1301902068000","name":"Isaac Webster","type":"Person","_key":"62116"} +{"label":"Man of Her Dreams","description":"Marcus seems to have the perfect marriage, but a surprise visit from his long-absent sister-in-law, Louise, threatens to disrupt his serene home. Louise brings along her adopted daughter, who professes her love for Marcus's son. The news forces Marcus to share his own long-buried secret in this film adaptation of Donald Gray's stage play - a secret that may destroy his family.","id":"15707","runtime":140,"imdbId":"tt1246723","version":107,"lastModified":"1301904178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a49\/4bc9489e017a3c57fe01fa49\/man-of-her-dreams-mid.jpg","genre":"Comedy","title":"Man of Her Dreams","releaseDate":1233619200000,"language":"en","type":"Movie","_key":"62117"} +{"label":"Jack\u00e9e Harry","version":26,"id":"78740","lastModified":"1301901120000","name":"Jack\u00e9e Harry","type":"Person","_key":"62118"} +{"label":"Dave Hollister","version":17,"id":"78741","lastModified":"1301901149000","name":"Dave Hollister","type":"Person","_key":"62119"} +{"label":"Christopher Williams","version":17,"id":"78742","lastModified":"1301901173000","name":"Christopher Williams","type":"Person","_key":"62120"} +{"label":"Latter Days","description":"Aaron Davis (Steve Sandvoss) and Christian Markelli (Wes Ramsey) are the two most opposite people in the world. Aaron is a young Elder (or a Mormon missionary) who wants to do his family proud and is quite passionate about his religion and film. Christian is a shallow WeHo waiter\/party boy who only looks forward to bedding a new guy every night. ","id":"15708","runtime":107,"imdbId":"tt0345551","version":394,"lastModified":"1301905768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc948a1017a3c57fe01fa5e\/latter-days-mid.jpg","studio":"Funny Boy Films","genre":"Comedy","title":"Latter Days","releaseDate":1088640000000,"language":"en","type":"Movie","_key":"62121"} +{"label":"C. Jay Cox","version":29,"id":"69737","lastModified":"1301901684000","name":"C. Jay Cox","type":"Person","_key":"62122"} +{"label":"Rebekah Johnson","version":19,"id":"78596","lastModified":"1301901708000","name":"Rebekah Johnson","type":"Person","_key":"62123"} +{"label":"Rob McElhenney","version":19,"id":"78597","lastModified":"1301901534000","name":"Rob McElhenney","type":"Person","_key":"62124"} +{"label":"Dave Power","version":18,"id":"78598","lastModified":"1301901708000","name":"Dave Power","type":"Person","_key":"62125"} +{"label":"De l'autre c\u00f4t\u00e9 du lit","description":"Ariane et Hugo d\u00e9cident d'\u00e9changer leur vie pour \u00e9chapper \u00e0 la routine, qui, apr\u00e8s dix ans de mariage, leur donne le sentiment d'\u00eatre des hamsters p\u00e9dalant dans une roue. Elle se retrouve du jour au lendemain \u00e0 la direction d'une entreprise de location de mat\u00e9riel de chantier. Et lui s'improvise vendeur de bijoux \u00e0 domicile... Mais la vie est-elle plus belle lorsqu'on la contemple de l'autre c\u00f4t\u00e9 ","id":"15709","runtime":93,"imdbId":"tt1275590","version":55,"lastModified":"1301906070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6b\/4bc948a2017a3c57fe01fa6b\/de-l-autre-cote-du-lit-mid.jpg","genre":"Comedy","title":"De l'autre c\u00f4t\u00e9 du lit","releaseDate":1231286400000,"language":"en","type":"Movie","_key":"62126"} +{"label":"Pascale Pouzadoux","version":21,"id":"144812","lastModified":"1301902399000","name":"Pascale Pouzadoux","type":"Person","_key":"62127"} +{"label":"The Lost","description":"Hanging out at some campgrounds one nice summer day, 19-year-old Ray Pye decides to murder two young women... ","id":"15711","runtime":119,"imdbId":"tt0451102","version":320,"lastModified":"1301907999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a89\/4bc948a5017a3c57fe01fa89\/the-lost-mid.jpg","genre":"Crime","title":"The Lost","releaseDate":1205798400000,"language":"en","tagline":"What's the worst thing you've ever done?","type":"Movie","_key":"62128"} +{"label":"Marc Senter","version":21,"id":"101808","lastModified":"1301901716000","name":"Marc Senter","type":"Person","_key":"62129"} +{"label":"Shay Astar","version":17,"id":"146564","lastModified":"1301902396000","name":"Shay Astar","type":"Person","_key":"62130"} +{"label":"Megan Henning","version":20,"id":"146565","lastModified":"1301902396000","name":"Megan Henning","type":"Person","_key":"62131"} +{"label":"Welcome","description":"Bilal is 17 years old, a Kurdish boy from Iraq. He sets off on an adventure-filled journey across Europe. He wants to get to England to see his love who lives there. Bilal finally reaches Calais, but how do you cover 32 kilometers of the English Channel when you can't swim? The boy soon discovers that his trip won't be as easy as he imagined... The community of struggling illegal aliens in Calais ","id":"15712","runtime":110,"imdbId":"tt1314280","version":251,"lastModified":"1301907570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a96\/4bc948a9017a3c57fe01fa96\/welcome-mid.jpg","studio":"Nord-Ouest Productions","genre":"Drama","title":"Welcome","releaseDate":1236729600000,"language":"en","type":"Movie","_key":"62132"} +{"label":"Firat Ayverdi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/057\/4c166a157b9aa108d6000057\/firat-ayverdi-profile.jpg","version":18,"id":"109890","lastModified":"1301901673000","name":"Firat Ayverdi","type":"Person","_key":"62133"} +{"label":"Audrey Dana","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4c166a567b9aa108ca000081\/audrey-dana-profile.jpg","biography":"Audrey Dana (born in 1979) is a French actress. She studied drama in Orl\u00e9ans and Paris. After two years in New York, she came back to France where she acted in various plays, especially in Nos amis, les humains by Bernard Werber. She was also cast in the movie adaptation Nos amis les Terriens, and Roman de Gare by Claude Lelouch. In 2008, she was nominated for this role to the C\u00e9sar for Most Promising Actress (meilleur espoir f\u00e9minin) and won the Prix Romy Schneider. She is married to French mov","version":32,"id":"84429","lastModified":"1301901598000","name":"Audrey Dana","type":"Person","_key":"62134"} +{"label":"La Premi\u00e8re \u00e9toile","description":"Jean-Gabriel, mari\u00e9 et p\u00e8re de trois enfants, vit de petits boulots et passe son temps au bar PMU du coin. Un jour, pour faire plaisir \u00e0 sa fille, il promet un peu vite \u00e0 toute la famille de les emmener en vacances au ski. Seul probl\u00e8me : cette fois-ci, s'il ne tient pas sa promesse, sa femme le quitte. Il va devoir faire preuve d'imagination sans limite pour y parvenir...","id":"15713","runtime":90,"imdbId":"tt1350940","version":70,"lastModified":"1301905628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa3\/4bc948ab017a3c57fe01faa3\/la-premiere-etoile-mid.jpg","genre":"Comedy","title":"La Premi\u00e8re \u00e9toile","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"62135"} +{"label":"Lucien Jean-Baptiste","version":18,"id":"136745","lastModified":"1301902405000","name":"Lucien Jean-Baptiste","type":"Person","_key":"62136"} +{"label":"Jimmy Woha","version":18,"id":"136747","lastModified":"1301902214000","name":"Jimmy Woha","type":"Person","_key":"62137"} +{"label":"Like Minds","description":"A forensic psychologist must determine if a minor should be charged with murder.","id":"15714","runtime":110,"imdbId":"tt0425196","version":111,"lastModified":"1301906528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aac\/4bc948ac017a3c57fe01faac\/like-minds-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Thriller","title":"Like Minds","releaseDate":1155168000000,"language":"en","type":"Movie","_key":"62138"} +{"label":"The Pirates of Penzance","description":"In spite of being apprenticed to a Pirate King as a child, Frederic has led a very sheltered life. So when he arrives in Penzance with his boisterous shipmates, there are a few surprises in store for him! It all ends happily, but not before he's dodged the Old Bill, fallen in love and made some rather inconvenient discoveries.","id":"15716","runtime":112,"imdbId":"tt0086112","version":158,"lastModified":"1301903874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61f\/4d39040b7b9aa1614e00061f\/the-pirates-of-penzance-mid.jpg","genre":"Comedy","title":"The Pirates of Penzance","releaseDate":414374400000,"language":"en","type":"Movie","_key":"62139"} +{"label":"Linda Ronstadt","version":20,"id":"87026","lastModified":"1301902529000","name":"Linda Ronstadt","type":"Person","_key":"62140"} +{"label":"George Rose","version":26,"id":"87027","lastModified":"1301902733000","name":"George Rose","type":"Person","_key":"62141"} +{"label":"Rex Smith","version":21,"id":"87028","lastModified":"1301902534000","name":"Rex Smith","type":"Person","_key":"62142"} +{"label":"Rockers","description":"Horsemouth, a drummer living in a ghetto of Kingston plans to make some extra money selling and distributing records. He buys a motorcycle to carry them to the sound systems around the island.","id":"15717","runtime":100,"imdbId":"tt0079815","version":386,"lastModified":"1301906057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70f\/4d046c5a7b9aa11bc300170f\/rockers-mid.jpg","studio":"Rockers Film Corporation","genre":"Musical","title":"Rockers","releaseDate":252460800000,"language":"en","type":"Movie","_key":"62143"} +{"label":"Leroy 'Horsemouth' Wallace","version":17,"id":"78605","lastModified":"1301901474000","name":"Leroy 'Horsemouth' Wallace","type":"Person","_key":"62144"} +{"label":"Richard 'Dirty Harry' Hall","version":19,"id":"78606","lastModified":"1301901993000","name":"Richard 'Dirty Harry' Hall","type":"Person","_key":"62145"} +{"label":"Gregory Isaacs","version":16,"id":"78608","lastModified":"1301902068000","name":"Gregory Isaacs","type":"Person","_key":"62146"} +{"label":"Monica Craig","version":16,"id":"78630","lastModified":"1301902242000","name":"Monica Craig","type":"Person","_key":"62147"} +{"label":"Marjorie Norman","version":16,"id":"78631","lastModified":"1301902242000","name":"Marjorie Norman","type":"Person","_key":"62148"} +{"label":"Jacob Miller","version":20,"id":"78609","lastModified":"1301901990000","name":"Jacob Miller","type":"Person","_key":"62149"} +{"label":"Winston Rodney","version":16,"id":"78612","lastModified":"1301902242000","name":"Winston Rodney","type":"Person","_key":"62150"} +{"label":"Frank Dowding","version":17,"id":"78611","lastModified":"1301902361000","name":"Frank Dowding","type":"Person","_key":"62151"} +{"label":"Robbie Shakespeare","version":20,"id":"78610","lastModified":"1301902242000","name":"Robbie Shakespeare","type":"Person","_key":"62152"} +{"label":"Big Youth","version":17,"id":"78613","lastModified":"1301902242000","name":"Big Youth","type":"Person","_key":"62153"} +{"label":"Leroy Smart","version":16,"id":"78632","lastModified":"1301902242000","name":"Leroy Smart","type":"Person","_key":"62154"} +{"label":"Lester Bullocks","version":16,"id":"78614","lastModified":"1301902242000","name":"Lester Bullocks","type":"Person","_key":"62155"} +{"label":"Ashley Harris","version":16,"id":"78633","lastModified":"1301902242000","name":"Ashley Harris","type":"Person","_key":"62156"} +{"label":"Peter Honiball","version":16,"id":"78634","lastModified":"1301902242000","name":"Peter Honiball","type":"Person","_key":"62157"} +{"label":"L. Lindo","version":16,"id":"78635","lastModified":"1301902242000","name":"L. Lindo","type":"Person","_key":"62158"} +{"label":"Trevor Douglas","version":16,"id":"78636","lastModified":"1301902242000","name":"Trevor Douglas","type":"Person","_key":"62159"} +{"label":"Herman Davis","version":16,"id":"78637","lastModified":"1301902242000","name":"Herman Davis","type":"Person","_key":"62160"} +{"label":"Raymond Hall","version":16,"id":"78638","lastModified":"1301902242000","name":"Raymond Hall","type":"Person","_key":"62161"} +{"label":"Junior Wilby","version":16,"id":"78639","lastModified":"1301902242000","name":"Junior Wilby","type":"Person","_key":"62162"} +{"label":"Robert Van Campbell","version":16,"id":"78640","lastModified":"1301902242000","name":"Robert Van Campbell","type":"Person","_key":"62163"} +{"label":"Errol Brown","version":16,"id":"78641","lastModified":"1301902242000","name":"Errol Brown","type":"Person","_key":"62164"} +{"label":"Syndrel Easington","version":16,"id":"78642","lastModified":"1301902242000","name":"Syndrel Easington","type":"Person","_key":"62165"} +{"label":"Berris Simpson","version":16,"id":"78643","lastModified":"1301902242000","name":"Berris Simpson","type":"Person","_key":"62166"} +{"label":"Theophilus Beckford","version":16,"id":"78644","lastModified":"1301902242000","name":"Theophilus Beckford","type":"Person","_key":"62167"} +{"label":"Phylip Richards","version":16,"id":"78645","lastModified":"1301902242000","name":"Phylip Richards","type":"Person","_key":"62168"} +{"label":"Winston Thompson","version":16,"id":"78646","lastModified":"1301902068000","name":"Winston Thompson","type":"Person","_key":"62169"} +{"label":"Sandy McLeod","version":21,"id":"78647","lastModified":"1301902313000","name":"Sandy McLeod","type":"Person","_key":"62170"} +{"label":"Joe Gibbs","version":16,"id":"78648","lastModified":"1301902242000","name":"Joe Gibbs","type":"Person","_key":"62171"} +{"label":"Monty Diamond","version":17,"id":"78652","lastModified":"1301902242000","name":"Monty Diamond","type":"Person","_key":"62172"} +{"label":"Garfield's Halloween Adventure","description":"Garfield and his pup pal Odie go trick-or-treating, only to wind up in a house haunted by ghostly pirates.","id":"15718","runtime":25,"imdbId":"tt0279830","version":76,"lastModified":"1301906468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19b\/4c853fa95e73d664d500019b\/garfield-s-halloween-adventure-mid.jpg","title":"Garfield's Halloween Adventure","releaseDate":499478400000,"language":"en","type":"Movie","_key":"62173"} +{"label":"C. Lindsay Workman","version":18,"id":"78623","lastModified":"1301901991000","name":"C. Lindsay Workman","type":"Person","_key":"62174"} +{"label":"Desir\u00e9e Goyette","version":18,"id":"78624","lastModified":"1301901948000","name":"Desir\u00e9e Goyette","type":"Person","_key":"62175"} +{"label":"Do Not Disturb","description":"Combining a family vacation with business, Walter Richmond (William Hurt) takes his wife (Jennifer Tilly) and their 10-year-old, mute daughter, Melissa (Francesca Brown), to the Netherlands -- where Melissa inadvertently witnesses a murder. Unable to tell anyone what she's seen, the frightened girl vanishes in an attempt to elude the killers. Meanwhile, her parents try desperately to piece together the puzzle leading to Melissa's disappearance.","id":"15719","runtime":94,"imdbId":"tt0185284","version":74,"lastModified":"1301906560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da3\/4d7453555e73d676c2000da3\/do-not-disturb-mid.jpg","title":"Do Not Disturb","releaseDate":941673600000,"language":"en","type":"Movie","_key":"62176"} +{"label":"The Man from Elysian Fields","description":"No overview found.","id":"15720","runtime":106,"imdbId":"tt0265307","version":230,"lastModified":"1301906842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac4\/4bc948ad017a3c57fe01fac4\/the-man-from-elysian-fields-mid.jpg","genre":"Drama","title":"The Man from Elysian Fields","releaseDate":1000339200000,"language":"en","type":"Movie","_key":"62177"} +{"label":"Roseanna's Grave","description":"No overview found.","id":"15721","runtime":98,"imdbId":"tt0120034","version":233,"lastModified":"1301905243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac9\/4bc948ae017a3c57fe01fac9\/roseanna-s-grave-mid.jpg","title":"Roseanna's Grave","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62178"} +{"label":"Sherlock Holmes and the Case of the Silk Stocking","description":"The corpse of a shabbily dressed young woman has been discovered in the mud flats of the Thames at low tide. Police assume she's a prostitute, but Dr. Watson suspects something more and goes to his old friend Holmes, now retired and at very loose ends.","id":"15722","runtime":99,"imdbId":"tt0429032","version":156,"lastModified":"1301906114000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ace\/4bc948ae017a3c57fe01face\/sherlock-holmes-and-the-case-of-the-silk-stocking-mid.jpg","genre":"Drama","title":"Sherlock Holmes and the Case of the Silk Stocking","releaseDate":1104019200000,"language":"en","type":"Movie","_key":"62179"} +{"label":"Simon Cellan Jones","version":12,"id":"212832","lastModified":"1301903742000","name":"Simon Cellan Jones","type":"Person","_key":"62180"} +{"label":"The Big Kahuna","description":"No overview found.","id":"15723","runtime":90,"imdbId":"tt0189584","version":133,"lastModified":"1301903945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad7\/4bc948af017a3c57fe01fad7\/the-big-kahuna-mid.jpg","studio":"Franchise Pictures","genre":"Comedy","title":"The Big Kahuna","releaseDate":937440000000,"language":"en","type":"Movie","_key":"62181"} +{"label":"Gui da gui","description":"Sammo is Courageous Cheung, a pedicab driver in a rural community who is known around town as the man who fears nothing. Well, this is proved false before the opening credits finish when he endures a particularly frightening nightmare of flesh-eating zombies. But, that's just the beginning of his run-ins with the supernatural...","id":"15724","runtime":102,"imdbId":"tt0080827","trailer":"http:\/\/www.youtube.com\/watch?v=1045","version":62,"lastModified":"1301905693000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4cfbc73d7b9aa1514b00323b\/gui-da-gui-mid.jpg","studio":"Golden Harvest Company","genre":"Comedy","title":"Gui da gui","releaseDate":346464000000,"language":"en","type":"Movie","_key":"62182"} +{"label":"Chasing Ghosts: Beyond the Arcade","description":"1982's Video Game World Champions share their philosophies on joysticks, groupies and life.","id":"15725","runtime":90,"imdbId":"tt0479879","homepage":"http:\/\/www.chasingghoststhemovie.com\/","version":89,"lastModified":"1301905090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae0\/4bc948af017a3c57fe01fae0\/chasing-ghosts-beyond-the-arcade-mid.jpg","studio":"Men at Work Pictures","genre":"Documentary","title":"Chasing Ghosts: Beyond the Arcade","releaseDate":1169424000000,"language":"en","tagline":"An arcade adventure.","type":"Movie","_key":"62183"} +{"label":"Lincoln Ruchti","version":22,"id":"110522","lastModified":"1301902633000","name":"Lincoln Ruchti","type":"Person","_key":"62184"} +{"label":"Todd Rogers","version":19,"id":"110541","lastModified":"1301902633000","name":"Todd Rogers","type":"Person","_key":"62185"} +{"label":"Ben Gold","version":18,"id":"110542","lastModified":"1301902633000","name":"Ben Gold","type":"Person","_key":"62186"} +{"label":"Darren Olsen","version":19,"id":"110543","lastModified":"1301902633000","name":"Darren Olsen","type":"Person","_key":"62187"} +{"label":"My Name is Bill W.","description":"Based on the true story of Bill W. (James Woods), a successful stock broker whose life falls apart after the stock crash of the 20's and how he comes to grips with his alcoholism. Along with a fellow alcoholic (James Garner) he forms a support group that would eventually become Alcoholics Anonymous.","id":"15727","runtime":100,"imdbId":"tt0097939","version":94,"lastModified":"1301907254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42a\/4cd7061c5e73d676d300042a\/my-name-is-bill-w-mid.jpg","genre":"Drama","title":"My Name is Bill W.","releaseDate":609897600000,"language":"en","type":"Movie","_key":"62188"} +{"label":"Boy Culture","description":"A successful male escort describes in a series of confessions his tangled romantic relationships with his two roommates and an older, enigmatic male client.","id":"15728","runtime":90,"imdbId":"tt0433350","version":206,"lastModified":"1301906258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aed\/4bc948b0017a3c57fe01faed\/boy-culture-mid.jpg","studio":"Boy Culture LLC","genre":"Drama","title":"Boy Culture","releaseDate":1170201600000,"language":"en","type":"Movie","_key":"62189"} +{"label":"Derek Magyar","version":18,"id":"78659","lastModified":"1301901982000","name":"Derek Magyar","type":"Person","_key":"62190"} +{"label":"George Jonson","version":16,"id":"78660","lastModified":"1301902068000","name":"George Jonson","type":"Person","_key":"62191"} +{"label":"Peyton Hinson","version":16,"id":"78661","lastModified":"1301901864000","name":"Peyton Hinson","type":"Person","_key":"62192"} +{"label":"Jonathon Trent","version":24,"id":"78662","lastModified":"1301901326000","name":"Jonathon Trent","type":"Person","_key":"62193"} +{"label":"Kyle Santler","version":16,"id":"78663","lastModified":"1301901864000","name":"Kyle Santler","type":"Person","_key":"62194"} +{"label":"Emily Brooke Hands","version":16,"id":"78664","lastModified":"1301901864000","name":"Emily Brooke Hands","type":"Person","_key":"62195"} +{"label":"Matt Riedy","version":16,"id":"78665","lastModified":"1301901864000","name":"Matt Riedy","type":"Person","_key":"62196"} +{"label":"Clifford Harrington","version":16,"id":"78666","lastModified":"1301901864000","name":"Clifford Harrington","type":"Person","_key":"62197"} +{"label":"Cover boy: L'ultima rivoluzione","description":"Cover-boy racconta l\u2019amicizia fra Ioan (Eduard Gabia) e Michele (Luca Lionello) l\u2019uno \nrumeno e l\u2019altro italiano. Due mondi che casualmente s\u2019incontrano: l\u2019esperienza \ndi chi, figlio della rivoluzione post comunista, \u00e8 fuggito dal proprio paese alla \nricerca di un futuro migliore e l\u2019esperienza di chi, precario, vive la crisi del lavoro \noccidentale.","id":"15729","runtime":93,"imdbId":"tt0494284","version":85,"lastModified":"1301906057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af2\/4bc948b1017a3c57fe01faf2\/cover-boy-mid.jpg","studio":"Paco Cinematografica","genre":"Drama","title":"Cover boy: L'ultima rivoluzione","releaseDate":1206057600000,"language":"en","type":"Movie","_key":"62198"} +{"label":"Carmine Amoroso","version":21,"id":"78667","lastModified":"1301901864000","name":"Carmine Amoroso","type":"Person","_key":"62199"} +{"label":"Walter D'Errico","version":19,"id":"78670","lastModified":"1301901608000","name":"Walter D'Errico","type":"Person","_key":"62200"} +{"label":"Francesco Domined\u00f2","version":18,"id":"78671","lastModified":"1301901608000","name":"Francesco Domined\u00f2","type":"Person","_key":"62201"} +{"label":"Eduard Gabia","version":18,"id":"78672","lastModified":"1301902068000","name":"Eduard Gabia","type":"Person","_key":"62202"} +{"label":"Susan Lay","version":18,"id":"78673","lastModified":"1301901864000","name":"Susan Lay","type":"Person","_key":"62203"} +{"label":"Luciana Littizzetto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e92\/4d4e66917b9aa13ab4009e92\/luciana-littizzetto-profile.jpg","version":31,"id":"78674","lastModified":"1301901858000","name":"Luciana Littizzetto","type":"Person","_key":"62204"} +{"label":"Love and human remains","description":"Dreary urban landscape of an anonymous Canadian city. Dark comedy about a group of twentysomethings looking for love and meaning in the '90s. The film focuses on roommates David, a gay waiter who has has given up on his acting career, and Candy, a book reviewer who is also David's ex-lover. David and Candy's lives are entangled with those of David's friends and Candy's dates.","id":"15730","runtime":100,"imdbId":"tt0107447","version":83,"lastModified":"1301908288000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b07\/4bc948b4017a3c57fe01fb07\/love-and-human-remains-mid.jpg","studio":"Atlantis Film","genre":"Comedy","title":"Love and human remains","releaseDate":803865600000,"language":"en","type":"Movie","_key":"62205"} +{"label":"Ruth Marshall","version":20,"id":"73296","lastModified":"1301902068000","name":"Ruth Marshall","type":"Person","_key":"62206"} +{"label":"Cameron Bancroft","version":19,"id":"78685","lastModified":"1301901718000","name":"Cameron Bancroft","type":"Person","_key":"62207"} +{"label":"Joanne Vannicola","version":18,"id":"78686","lastModified":"1301902242000","name":"Joanne Vannicola","type":"Person","_key":"62208"} +{"label":"Robert Higden","version":21,"id":"78687","lastModified":"1301902242000","name":"Robert Higden","type":"Person","_key":"62209"} +{"label":"Sylvain Morin","version":17,"id":"78688","lastModified":"1301902068000","name":"Sylvain Morin","type":"Person","_key":"62210"} +{"label":"Ben Watt","version":17,"id":"78689","lastModified":"1301902242000","name":"Ben Watt","type":"Person","_key":"62211"} +{"label":"Libera","description":"Film diviso in tre episodi, ognuno dei quali racconta tre storie di donne diverse: Aurora viene abbandonata dal marito, Carmela riabbraccia suo figlio appena uscito dal riformatorio e Libera, insospettita dalle continue malattie del marito, fa piazzare delle telecamere nascoste nella sua camera da letto...","id":"15732","runtime":0,"imdbId":"tt0107402","version":158,"lastModified":"1301417984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b14\/4bc948b5017a3c57fe01fb14\/libera-mid.jpg","genre":"Comedy","title":"Libera","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62212"} +{"label":"Cristina Donadio","version":17,"id":"78691","lastModified":"1301902375000","name":"Cristina Donadio","type":"Person","_key":"62213"} +{"label":"Ciro Piscopo","version":17,"id":"78693","lastModified":"1301902363000","name":"Ciro Piscopo","type":"Person","_key":"62214"} +{"label":"Enzo Moscato","version":18,"id":"78694","lastModified":"1301902363000","name":"Enzo Moscato","type":"Person","_key":"62215"} +{"label":"Antonino Bruschetta","version":19,"id":"78697","lastModified":"1301902387000","name":"Antonino Bruschetta","type":"Person","_key":"62216"} +{"label":"Cinzia Mirabella","version":17,"id":"78698","lastModified":"1301902378000","name":"Cinzia Mirabella","type":"Person","_key":"62217"} +{"label":"Vincenzo Peluso","version":16,"id":"78699","lastModified":"1301902308000","name":"Vincenzo Peluso","type":"Person","_key":"62218"} +{"label":"Fiorenzo Serra","version":16,"id":"78700","lastModified":"1301902308000","name":"Fiorenzo Serra","type":"Person","_key":"62219"} +{"label":"Pina Cipriani","version":16,"id":"78701","lastModified":"1301902308000","name":"Pina Cipriani","type":"Person","_key":"62220"} +{"label":"Fabiana Forte","version":16,"id":"78702","lastModified":"1301902308000","name":"Fabiana Forte","type":"Person","_key":"62221"} +{"label":"Anna Avitabile","version":16,"id":"78703","lastModified":"1301902308000","name":"Anna Avitabile","type":"Person","_key":"62222"} +{"label":"Paola Iovinella","version":16,"id":"78704","lastModified":"1301902308000","name":"Paola Iovinella","type":"Person","_key":"62223"} +{"label":"Marinella Anaclerio","version":16,"id":"78705","lastModified":"1301902308000","name":"Marinella Anaclerio","type":"Person","_key":"62224"} +{"label":"Paola Chiarelli","version":16,"id":"78706","lastModified":"1301902308000","name":"Paola Chiarelli","type":"Person","_key":"62225"} +{"label":"Tosca D'Aquino","version":21,"id":"78707","lastModified":"1301902311000","name":"Tosca D'Aquino","type":"Person","_key":"62226"} +{"label":"Vince Neil's Girls Girls Girls","description":"No overview found.","id":"15733","runtime":0,"imdbId":"tt0401442","version":247,"lastModified":"1301421326000","title":"Vince Neil's Girls Girls Girls","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62227"} +{"label":"Girls! Girls! Girls!","description":"Elvis plays Ross Carpenter, a fishing guide\/sailor who loves his life out on the sea. When he finds out his boss is retiring to Arizona, he has to find a way to buy the Westwind, a boat that he and his father built. He is also caught between two women: insensitive club singer Robin and sweet Laurel.","id":"15734","runtime":106,"imdbId":"tt0056023","trailer":"http:\/\/www.youtube.com\/watch?v=VpnAjxFSQuQ","version":98,"lastModified":"1301903809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1d\/4bc948b5017a3c57fe01fb1d\/girls-girls-girls-mid.jpg","genre":"Comedy","title":"Girls! Girls! Girls!","releaseDate":-224467200000,"language":"en","type":"Movie","_key":"62228"} +{"label":"Jeremy Slate","version":36,"id":"78690","lastModified":"1301901673000","name":"Jeremy Slate","type":"Person","_key":"62229"} +{"label":"Laurel Goodwin","version":19,"id":"78692","lastModified":"1301902384000","name":"Laurel Goodwin","type":"Person","_key":"62230"} +{"label":"Ginny Tiu","version":18,"id":"78695","lastModified":"1301901948000","name":"Ginny Tiu","type":"Person","_key":"62231"} +{"label":"Elizabeth Tiu","version":19,"id":"78696","lastModified":"1301901948000","name":"Elizabeth Tiu","type":"Person","_key":"62232"} +{"label":"Norman Taurog","version":58,"id":"82800","lastModified":"1302026378000","name":"Norman Taurog","type":"Person","_key":"62233"} +{"label":"Der Todesking","description":"Seven episodes, each taking place on a different day of the week, on the theme of suicide and violent death.","id":"15736","runtime":80,"imdbId":"tt0098486","version":65,"lastModified":"1301906056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b27\/4bc948b6017a3c57fe01fb27\/der-todesking-mid.jpg","genre":"Horror","title":"Der Todesking","releaseDate":633225600000,"language":"en","type":"Movie","_key":"62234"} +{"label":"Heinrich Ebber","version":16,"id":"78762","lastModified":"1301902242000","name":"Heinrich Ebber","type":"Person","_key":"62235"} +{"label":"Angelika Hoch","version":16,"id":"78763","lastModified":"1301902242000","name":"Angelika Hoch","type":"Person","_key":"62236"} +{"label":"Hermann Kopp","version":23,"id":"70606","lastModified":"1301902350000","name":"Hermann Kopp","type":"Person","_key":"62237"} +{"label":"Nicholas Petche","version":16,"id":"78764","lastModified":"1301901864000","name":"Nicholas Petche","type":"Person","_key":"62238"} +{"label":"Poco pi\u00f9 di un anno fa","description":"South of France: Riki Kandinski and his elder brother Fredrico, come back to their family castle for their father's funeral. Fredrico knows nothing about his younger brother, but he notices that he is making big money and living in luxury all for a few days work a week. By pure chance, Fredrico gets his hands on a gay porn magazine and sees his brother in it. ","id":"15737","runtime":105,"imdbId":"tt0357031","version":42,"lastModified":"1301906603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc948b7017a3c57fe01fb38\/poco-piu-di-un-anno-fa-mid.jpg","studio":"Zen Zero","genre":"Drama","title":"Poco pi\u00f9 di un anno fa","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"62239"} +{"label":"Marco Filiberti","version":18,"id":"78708","lastModified":"1301902067000","name":"Marco Filiberti","type":"Person","_key":"62240"} +{"label":"Alessandra Acciai","version":23,"id":"78710","lastModified":"1301902199000","name":"Alessandra Acciai","type":"Person","_key":"62241"} +{"label":"Francesca d'Aloja","version":18,"id":"78711","lastModified":"1301901864000","name":"Francesca d'Aloja","type":"Person","_key":"62242"} +{"label":"Claudio Vanni","version":17,"id":"78712","lastModified":"1301902163000","name":"Claudio Vanni","type":"Person","_key":"62243"} +{"label":"Caterina Guzzanti","version":18,"id":"78713","lastModified":"1301902213000","name":"Caterina Guzzanti","type":"Person","_key":"62244"} +{"label":"Cosimo Cinieri","version":20,"id":"78714","lastModified":"1301902303000","name":"Cosimo Cinieri","type":"Person","_key":"62245"} +{"label":"Franco Oppini","version":16,"id":"78715","lastModified":"1301902242000","name":"Franco Oppini","type":"Person","_key":"62246"} +{"label":"Alberto Alemanno","version":16,"id":"78716","lastModified":"1301902242000","name":"Alberto Alemanno","type":"Person","_key":"62247"} +{"label":"Storm of the Century","description":"A strange and powerful creature with the appearance of a man has come to the small town of Little Tall Island, Maine during the heaviest snow storm in the last 100 years. He brings with him the darkest secrets of all the townspeople and uses his knowledge to control and drive some of them to suicide and murder. ","id":"15738","runtime":240,"imdbId":"tt0135659","version":158,"lastModified":"1301903329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b50\/4bc948bb017a3c57fe01fb50\/storm-of-the-century-mid.jpg","studio":"Greengrass Productions","genre":"Drama","title":"Storm of the Century","releaseDate":918950400000,"language":"en","type":"Movie","_key":"62248"} +{"label":"Annie","description":"Broadway musical based on the Little Orphan Annie comic strip. A young orphan girls adventures in finding a family that will take her.","id":"15739","runtime":126,"imdbId":"tt0083564","trailer":"http:\/\/www.youtube.com\/watch?v=4VKWaHs0Ss4","version":185,"lastModified":"1301904557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b59\/4bc948bc017a3c57fe01fb59\/annie-mid.jpg","genre":"Drama","title":"Annie","releaseDate":393206400000,"language":"en","type":"Movie","_key":"62249"} +{"label":"Aileen Quinn","version":20,"id":"87933","lastModified":"1301901864000","name":"Aileen Quinn","type":"Person","_key":"62250"} +{"label":"Sarah, Plain and Tall","description":"The story is set in Kansas in the year 1910. Jacob Witting, a widowed farmer who is still saddened by the death of his wife during childbirth several years earlier, finds that the task of taking care of his farm and two children, Anna and Caleb, is too difficult to handle alone. He advertises in the newspaper for a mail-order bride. Sarah, from Maine, travels out to become his wife. But Sarah grow","id":"15740","runtime":98,"imdbId":"tt0102842","version":87,"lastModified":"1301904225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b62\/4bc948bd017a3c57fe01fb62\/sarah-plain-tall-mid.jpg","genre":"Drama","title":"Sarah, Plain and Tall","releaseDate":665539200000,"language":"en","type":"Movie","_key":"62251"} +{"label":"Lexi Randall","version":22,"id":"78717","lastModified":"1301902134000","name":"Lexi Randall","type":"Person","_key":"62252"} +{"label":"Malgorzata Zajaczkowska","version":19,"id":"78718","lastModified":"1301901864000","name":"Malgorzata Zajaczkowska","type":"Person","_key":"62253"} +{"label":"Jon DeVries","version":20,"id":"78719","lastModified":"1301902242000","name":"Jon DeVries","type":"Person","_key":"62254"} +{"label":"Woody Watson","version":19,"id":"78722","lastModified":"1301902242000","name":"Woody Watson","type":"Person","_key":"62255"} +{"label":"Betty Laird","version":18,"id":"78723","lastModified":"1301902242000","name":"Betty Laird","type":"Person","_key":"62256"} +{"label":"Kara Beth Taylor","version":18,"id":"78724","lastModified":"1301902242000","name":"Kara Beth Taylor","type":"Person","_key":"62257"} +{"label":"Dorothy Mills","description":"When a gloomy, God-fearing island community is rocked by the murder of a young child, a psychologist is called in to examine Dorothy Mills, the teenager accused of the crime. Despite the villagers' resistance, the therapist soon suspects that Dorothy suffers from multiple personality disorder...","id":"15741","runtime":102,"imdbId":"tt1034306","trailer":"http:\/\/www.youtube.com\/watch?v=1046","version":136,"lastModified":"1301903206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7b\/4bc948c0017a3c57fe01fb7b\/dorothy-mills-mid.jpg","studio":"Octagon Films","genre":"Mystery","title":"Dorothy Mills","releaseDate":1217980800000,"language":"en","type":"Movie","_key":"62258"} +{"label":"Agn\u00e8s Merlet","version":17,"id":"78725","lastModified":"1301901608000","name":"Agn\u00e8s Merlet","type":"Person","_key":"62259"} +{"label":"Jenn Murray","version":16,"id":"78727","lastModified":"1301901864000","name":"Jenn Murray","type":"Person","_key":"62260"} +{"label":"David Ganly","version":19,"id":"77505","lastModified":"1301902067000","name":"David Ganly","type":"Person","_key":"62261"} +{"label":"Rynagh O'Grady","version":16,"id":"78728","lastModified":"1301902067000","name":"Rynagh O'Grady","type":"Person","_key":"62262"} +{"label":"Taxidermia","description":"Gyorgy Palfi's grotesque tale of three generations of men, including an obese speed eater, an embalmer of gigantic cats, and a man who shoots fire out of his penis.","id":"15742","runtime":91,"imdbId":"tt0410730","homepage":"http:\/\/www.taxidermia.at","version":122,"lastModified":"1301904403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/593\/4d4197ed7b9aa15bbf003593\/taxidermia-mid.jpg","genre":"Drama","title":"Taxidermia","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"62263"} +{"label":"Gy\u00f6rgy P\u00e1lfi","version":20,"id":"81078","lastModified":"1301902504000","name":"Gy\u00f6rgy P\u00e1lfi","type":"Person","_key":"62264"} +{"label":"The Witchblade","description":"No overview found.","id":"15744","runtime":0,"imdbId":"tt0494292","homepage":"http:\/\/www.witchblade2009.com","version":79,"lastModified":"1301907097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b92\/4bc948c2017a3c57fe01fb92\/the-witchblade-mid.jpg","studio":"Platinum Media Group","title":"The Witchblade","releaseDate":1262304000000,"language":"en","type":"Movie","_key":"62265"} +{"label":"Made","description":"Two aspiring boxers lifelong friends get involved in a money-laundering scheme through a low-level organized crime group. ","id":"15745","runtime":94,"imdbId":"tt0227005","trailer":"http:\/\/www.youtube.com\/watch?v=jMl_uE9rRuc","version":171,"lastModified":"1301905396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9f\/4bc948c4017a3c57fe01fb9f\/made-mid.jpg","studio":"Artisan Entertainment","genre":"Comedy","title":"Made","releaseDate":994982400000,"language":"en","type":"Movie","_key":"62266"} +{"label":"The Bible Series","description":"No overview found.","id":"15747","runtime":0,"version":63,"lastModified":"1301908542000","title":"The Bible Series","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62267"} +{"label":"Bamse och den flygande mattan","description":"N\u00e4r Bamse \u00e4ter Farmors m\u00e4rkliga dunder-honung blir han v\u00e4rldens starkaste bj\u00f6rn. V\u00e4rldens sn\u00e4llaste bj\u00f6rn \u00e4r han alltid. Tillsammans med v\u00e4nnerna Lille Skutt och Skalman ger han sig ut p\u00e5 m\u00e5nga sp\u00e4nnande \u00e4ventyr. P\u00e5 Farmors vind hittar Bamse och Lille Skutt en flygande matta. Den flyger iv\u00e4g med dem till ok\u00e4nda platser. M\u00e5let f\u00f6r resan \u00e4r en borg ovanf\u00f6r molnen. D\u00e4r bor en elak trollkarl.","id":"15748","runtime":64,"version":28,"lastModified":"1301908117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bad\/4bc948c8017a3c57fe01fbad\/bamse-och-den-flygande-mattan-mid.jpg","genre":"Fantasy","title":"Bamse och den flygande mattan","releaseDate":63072000000,"language":"en","type":"Movie","_key":"62268"} +{"label":"Olof Thunberg","version":25,"id":"127473","lastModified":"1301902224000","name":"Olof Thunberg","type":"Person","_key":"62269"} +{"label":"While She Was Out","description":"Basinger plays a suburban housewife who is forced to fend for herself when she becomes stranded in a desolate forest with four murderous thugs.","id":"15749","runtime":88,"imdbId":"tt0887971","version":178,"lastModified":"1301902592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bba\/4bc948cc017a3c57fe01fbba\/while-she-was-out-mid.jpg","studio":"Angry Films","genre":"Action","title":"While She Was Out","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"62270"} +{"label":"Luke Gair","version":17,"id":"78318","lastModified":"1301901989000","name":"Luke Gair","type":"Person","_key":"62271"} +{"label":"Susan Montford","version":27,"id":"34970","lastModified":"1301901493000","name":"Susan Montford","type":"Person","_key":"62272"} +{"label":"Barenaked in America","description":"A rockumentary about the Canadian rock band Barenaked Ladies's life, in a nutshell.","id":"15752","runtime":0,"imdbId":"tt0211219","version":113,"lastModified":"1301907917000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc8\/4bc948ce017a3c57fe01fbc8\/barenaked-in-america-mid.jpg","genre":"Documentary","title":"Barenaked in America","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62273"} +{"label":"Windcroft","description":"On a remote farm in the sweeping hills of Pennsylvania, three lives are torn apart by love, abandonment, deception and murder.","id":"15753","runtime":94,"imdbId":"tt1024951","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/windcroft","version":101,"lastModified":"1301906733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcd\/4bc948ce017a3c57fe01fbcd\/windcroft-mid.jpg","genre":"Indie","title":"Windcroft","releaseDate":1184025600000,"language":"en","type":"Movie","_key":"62274"} +{"label":"Evan Meszaros","version":18,"id":"78737","lastModified":"1301902359000","name":"Evan Meszaros","type":"Person","_key":"62275"} +{"label":"Joe Ryan","version":12,"id":"195071","lastModified":"1301903955000","name":"Joe Ryan","type":"Person","_key":"62276"} +{"label":"What's Done In The Dark","description":"Stage and screen multi-hyphenate Tyler Perry returns to the helm for this lively tale of emergency room bedlam that finds a group of doctors, nurses, and patients desperately struggling to keep their secrets in the dark. Unfortunately for this crew, these things always find a way of coming to light.","id":"15754","runtime":140,"version":86,"lastModified":"1301420971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd2\/4bc948ce017a3c57fe01fbd2\/what-s-done-in-the-dark-mid.jpg","title":"What's Done In The Dark","releaseDate":1205280000000,"language":"en","type":"Movie","_key":"62277"} +{"label":"Bugs! A Rainforest Adventure","description":"Explore the extraordinary hidden world of insects, where a leaf weighs more than a car, rain drops feel like exploding hand grenades and a blade of grass soars like a skyscraper. Shot on location in the Borneo rainforest, Bugs! brings the beautiful and dangerous universe of its tiny stars up close and personal with cutting-edge technology that magnifies them up to 250,000 times their normal size.","id":"15755","runtime":40,"imdbId":"tt0337587","version":104,"lastModified":"1301907573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bdb\/4bc948cf017a3c57fe01fbdb\/bugs-mid.jpg","genre":"Documentary","title":"Bugs! A Rainforest Adventure","releaseDate":1059091200000,"language":"en","type":"Movie","_key":"62278"} +{"label":"Hurricane on the Bayou","description":"The film \"Hurricane on the Bayou\" is about the wetlands of Louisiana before and after Hurricane Katrina.","id":"15756","runtime":0,"imdbId":"tt0838265","version":151,"lastModified":"1301907572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be4\/4bc948d0017a3c57fe01fbe4\/hurricane-on-the-bayou-mid.jpg","genre":"Documentary","title":"Hurricane on the Bayou","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"62279"} +{"label":"Tab Benoit","version":19,"id":"119291","lastModified":"1301902504000","name":"Tab Benoit","type":"Person","_key":"62280"} +{"label":"Chubby Carrier","version":19,"id":"119292","lastModified":"1301902987000","name":"Chubby Carrier","type":"Person","_key":"62281"} +{"label":"Amanda Shaw","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/595\/4bf33c89017a3c3213000595\/amanda-shaw-profile.jpg","version":17,"id":"94986","lastModified":"1301902677000","name":"Amanda Shaw","type":"Person","_key":"62282"} +{"label":"Allen Toussaint","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/554\/4bf33cc2017a3c3217000554\/allen-toussaint-profile.jpg","version":19,"id":"119290","lastModified":"1301902677000","name":"Allen Toussaint","type":"Person","_key":"62283"} +{"label":"Skylark","description":"Jacob's farm is in trouble from a severe drought. Jacob and Sarah begin to wonder if Sarah can stay, and what will happen to Jacob if she and the children have to leave the farm.","id":"15759","runtime":95,"imdbId":"tt0108159","version":71,"lastModified":"1301907685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/690\/4cb27b9b5e73d65b84000690\/skylark-mid.jpg","genre":"Drama","title":"Skylark","releaseDate":729043200000,"language":"en","type":"Movie","_key":"62284"} +{"label":"Anne Swift","version":16,"id":"78746","lastModified":"1301902242000","name":"Anne Swift","type":"Person","_key":"62285"} +{"label":"Company","description":"Mallik is a henchman of Aslam Bhai, a Mumbai underworld kingpin. He inducts local hothead Chandu into the gang, and the two of them soon form a formidable faction within the gang, eventually displacing Aslam. As the empire grows, however, the two of them start drifting apart.","id":"15761","runtime":156,"imdbId":"tt0296574","version":132,"lastModified":"1301907108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/024\/4cadfd225e73d652ae000024\/company-mid.jpg","studio":"Eros Entertainment","genre":"Action","title":"Company","releaseDate":1017964800000,"language":"en","type":"Movie","_key":"62286"} +{"label":"Mohanlal","version":21,"id":"82732","lastModified":"1301902326000","name":"Mohanlal","type":"Person","_key":"62287"} +{"label":"Manisha Koirala","version":24,"id":"86077","lastModified":"1301902144000","name":"Manisha Koirala","type":"Person","_key":"62288"} +{"label":"Antara Mali","version":20,"id":"86078","lastModified":"1301903034000","name":"Antara Mali","type":"Person","_key":"62289"} +{"label":"Urmila Matondkar","version":36,"id":"86075","lastModified":"1301902580000","name":"Urmila Matondkar","type":"Person","_key":"62290"} +{"label":"Night of the Creeps","description":"In 1959, an alien experiment crashes to earth and infects a fraternity member. They freeze the body, but in the modern day, two geeks pledging a fraternity accidentally thaw the corpse, which proceeds to infect the campus with parasites that transform their hosts into killer zombies.","id":"15762","runtime":88,"imdbId":"tt0091630","version":173,"lastModified":"1301905950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf6\/4bc948d1017a3c57fe01fbf6\/night-of-the-creeps-mid.jpg","genre":"Horror","title":"Night of the Creeps","releaseDate":525052800000,"language":"en","type":"Movie","_key":"62291"} +{"label":"Steve Marshall","version":20,"id":"83095","lastModified":"1301901674000","name":"Steve Marshall","type":"Person","_key":"62292"} +{"label":"Jill Whitlow","version":20,"id":"83096","lastModified":"1301901514000","name":"Jill Whitlow","type":"Person","_key":"62293"} +{"label":"Sophie's Choice","description":"Sophie is the survivor of Nazi concentration camps who has found a reason to live in Nathan a sparkling if unsteady American Jew obsessed with the Holocaust. They befriend Stengo the movies narrator a young American writer new to New York City. But the happiness of Sophie and Nathan is endangered by her ghosts and his obsessions.","id":"15764","runtime":150,"imdbId":"tt0084707","version":158,"lastModified":"1301905054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bff\/4bc948d2017a3c57fe01fbff\/sophie-s-choice-mid.jpg","genre":"Drama","title":"Sophie's Choice","releaseDate":408153600000,"language":"en","type":"Movie","_key":"62294"} +{"label":"Rita Karin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/664\/4cc219845e73d67786001664\/rita-karin-profile.jpg","version":21,"id":"135170","lastModified":"1301902679000","name":"Rita Karin","type":"Person","_key":"62295"} +{"label":"Stephen D. Newman","version":21,"id":"135171","lastModified":"1301903003000","name":"Stephen D. Newman","type":"Person","_key":"62296"} +{"label":"What's Love Got to Do with It","description":"A film about the singer Tina Turner and how she rose to stardom with her abusive husband Ike Turner and how she gained the courage to break free.","id":"15765","runtime":118,"imdbId":"tt0108551","trailer":"http:\/\/www.youtube.com\/watch?v=Nbzbd2wUGao","version":87,"lastModified":"1301904517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c08\/4bc948d2017a3c57fe01fc08\/what-s-love-got-to-do-with-it-mid.jpg","genre":"Drama","title":"What's Love Got to Do with It","releaseDate":739584000000,"language":"en","type":"Movie","_key":"62297"} +{"label":"Ghidorah, the Three-Headed Monster","description":"A massive meteor falls to Earth, and from it emerges the three-headed King Ghidrah, who must defeat the combined forces of Godzilla, Rodan, and Mothra.","id":"15766","runtime":92,"imdbId":"tt0058544","version":81,"lastModified":"1301904178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07a\/4c1a9ef17b9aa1158100007a\/san-daikaiju-chikyu-saidai-no-kessen-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Ghidorah, the Three-Headed Monster","releaseDate":-158803200000,"language":"en","type":"Movie","_key":"62298"} +{"label":"Godzilla: Final Wars","description":"Evil Space Aliens called the Xilians unleashes all the Earth's monsters to lay waste to most of the world's major cities, including Tokyo, New York, Sydney, Shanghai and Paris. It is up to Godzilla and the Earth Defense Force to vanquish the monsters and aliens to rescue the world in the ultimate \"Save the Earth\" battle.","id":"15767","runtime":103,"imdbId":"tt0399102","trailer":"http:\/\/www.youtube.com\/watch?v=2182","version":153,"lastModified":"1301587088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2f\/4bc948d8017a3c57fe01fc2f\/15767-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Action","title":"Godzilla: Final Wars","releaseDate":1102118400000,"language":"en","type":"Movie","_key":"62299"} +{"label":"Masahiro Matsuoka","version":16,"id":"93888","lastModified":"1301902985000","name":"Masahiro Matsuoka","type":"Person","_key":"62300"} +{"label":"Rei Kikukawa","version":19,"id":"93889","lastModified":"1301902985000","name":"Rei Kikukawa","type":"Person","_key":"62301"} +{"label":"Don Frye","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/110\/4c1622be7b9aa105d7000110\/don-frye-profile.jpg","version":25,"id":"82042","lastModified":"1301902356000","name":"Don Frye","type":"Person","_key":"62302"} +{"label":"Maki Mizuno","version":16,"id":"93891","lastModified":"1301902985000","name":"Maki Mizuno","type":"Person","_key":"62303"} +{"label":"Masat\u00f4 Ibu","version":24,"id":"93892","lastModified":"1301902211000","name":"Masat\u00f4 Ibu","type":"Person","_key":"62304"} +{"label":"Masanobu Takashima","version":20,"id":"82866","lastModified":"1301902675000","name":"Masanobu Takashima","type":"Person","_key":"62305"} +{"label":"A Colbert Christmas: The Greatest Gift of All!","description":"No overview found.","id":"15768","runtime":60,"imdbId":"tt1322287","version":66,"lastModified":"1301906604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3d\/4bc948db017a3c57fe01fc3d\/a-colbert-christmas-the-greatest-gift-of-all-mid.jpg","studio":"Comedy Central","genre":"Comedy","title":"A Colbert Christmas: The Greatest Gift of All!","releaseDate":1227398400000,"language":"en","type":"Movie","_key":"62306"} +{"label":"Leslie Feist","version":16,"id":"96074","lastModified":"1301902633000","name":"Leslie Feist","type":"Person","_key":"62307"} +{"label":"Born to Defend","description":"Jet, a young soldier at the end of the second world war must overcome some abusive Americans who are bullying him as well as the Chinese people.","id":"15770","runtime":120,"imdbId":"tt0096507","version":43,"lastModified":"1301907383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c42\/4bc948db017a3c57fe01fc42\/zhong-hua-ying-xiong-mid.jpg","genre":"Action","title":"Born to Defend","releaseDate":504921600000,"language":"en","type":"Movie","_key":"62308"} +{"label":"Kurt Roland Petersson","version":21,"id":"89286","lastModified":"1301901778000","name":"Kurt Roland Petersson","type":"Person","_key":"62309"} +{"label":"Class Action","description":"An estranged daughter comes up against her father in a court of law.","id":"15771","runtime":105,"imdbId":"tt0101590","version":112,"lastModified":"1301904700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c47\/4bc948db017a3c57fe01fc47\/class-action-mid.jpg","genre":"Drama","title":"Class Action","releaseDate":662688000000,"language":"en","type":"Movie","_key":"62310"} +{"label":"Guru","description":"Guru (Hindi: \u0917\u0941\u0930\u0942 IPA: [g\u028a\u027eu\u02d0]) is a 2007 Hindi film directed by Mani Ratnam. It stars Abhishek Bachchan, Aishwarya Rai, R. Madhavan, Vidya Balan and Mithun Chakraborty in the leading roles. The movie also has Mallika Sherawat in a guest appearance. The movie was also dubbed in Tamil as Guru and in Telugu as Gurukanth. The film was released on January 12, 2007.","id":"15772","runtime":166,"imdbId":"tt0499375","version":201,"lastModified":"1301904379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c58\/4bc948dd017a3c57fe01fc58\/guru-mid.jpg","studio":"Madras Talkies","genre":"Drama","title":"Guru","releaseDate":1168560000000,"language":"en","type":"Movie","_key":"62311"} +{"label":"Mithun Chakraborty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e90\/4d22517f7b9aa12823000e90\/mithun-chakraborty-profile.jpg","version":31,"id":"85450","lastModified":"1301901671000","name":"Mithun Chakraborty","type":"Person","_key":"62312"} +{"label":"Arya Babbar","version":20,"id":"92692","lastModified":"1301902415000","name":"Arya Babbar","type":"Person","_key":"62313"} +{"label":"Mani Ratnam","version":25,"id":"78747","lastModified":"1301901858000","name":"Mani Ratnam","type":"Person","_key":"62314"} +{"label":"All The Rage","description":"No overview found.","id":"15773","runtime":105,"imdbId":"tt0118590","version":120,"lastModified":"1300980202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c61\/4bc948dd017a3c57fe01fc61\/all-the-rage-mid.jpg","genre":"Comedy","title":"All The Rage","releaseDate":865987200000,"language":"en","type":"Movie","_key":"62315"} +{"label":"John-Michael Lander","version":14,"id":"150413","lastModified":"1301903121000","name":"John-Michael Lander","type":"Person","_key":"62316"} +{"label":"Roland Tec","version":15,"id":"150412","lastModified":"1301903121000","name":"Roland Tec","type":"Person","_key":"62317"} +{"label":"Swades","description":"Set in modern day India, Swades is a film that tackles the issues that development throws up on a grass root level. It is to this India, which is colorful, heterogeneous and complex that Mohan Bhargava (Shah Rukh Khan), a bright young scientist working as a project manager in NASA, returns to on a quest to find his childhood nanny.","id":"15774","runtime":210,"imdbId":"tt0367110","trailer":"http:\/\/www.youtube.com\/watch?v=1047","version":100,"lastModified":"1301907192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6a\/4bc948de017a3c57fe01fc6a\/swades-mid.jpg","studio":"UTV Motion Pictures","genre":"Drama","title":"Swades","releaseDate":1103241600000,"language":"en","type":"Movie","_key":"62318"} +{"label":"Gayatri Joshi","version":16,"id":"78750","lastModified":"1301902242000","name":"Gayatri Joshi","type":"Person","_key":"62319"} +{"label":"If Only","description":"After his impetuous musician girlfriend, Samantha, dies in an accident shortly after they had a fight (and nearly broke up), a grief-stricken British businessman, Ian Wyndham, living in London gets a chance to relive the day all over again, in the hope of changing the events that led up to her getting killed.","id":"15775","runtime":92,"imdbId":"tt0332136","version":127,"lastModified":"1301903236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c73\/4bc948de017a3c57fe01fc73\/if-only-mid.jpg","studio":"Sony Pictures","genre":"Action","title":"If Only","releaseDate":1074816000000,"language":"en","type":"Movie","_key":"62320"} +{"label":"Paul Nicholls","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed5\/4d7e38907b9aa1023b001ed5\/paul-nicholls-profile.jpg","version":29,"id":"47734","lastModified":"1301902033000","name":"Paul Nicholls","type":"Person","_key":"62321"} +{"label":"Kunsten at gr\u00e6de i kor","description":"Allan er 11 \u00e5r, og livet i den s\u00f8nderjyske landsby i starten af 70'erne er ikke let. Faren er psykisk ustabil og truer med selvmord, n\u00e5r han kan komme til det, og moren har forl\u00e6ngst givet op. Derfor synes Allan, at han er n\u00f8dt til at holde sammen p\u00e5 tingene. Og da faren elsker at holde taler over de d\u00f8de, g\u00e5r Allan i gang med at s\u00f8rge for flere begravelser til at holde farens hum\u00f8r oppe.","id":"15776","runtime":106,"imdbId":"tt0495040","version":24,"lastModified":"1300980203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c86\/4bc948df017a3c57fe01fc86\/kunsten-at-grde-i-kor-mid.jpg","studio":"Final Cut Productions","genre":"Drama","title":"Kunsten at gr\u00e6de i kor","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"62322"} +{"label":"Dig og mig","description":"'Dig og mig' handler om tre pigers uafh\u00e6ngige historier p\u00e5 tre forskellige tidspunkter i deres liv. Om deres spinkle og sk\u00e6bnesvangre forhold til k\u00e6rlighed, og om deres m\u00f8de, da de st\u00e5r overfor deres livs st\u00f8rste udfordring.","id":"15777","runtime":89,"imdbId":"tt1221129","version":28,"lastModified":"1301904476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8f\/4bc948e0017a3c57fe01fc8f\/dig-og-mig-mid.jpg","studio":"Zentropa Productions","genre":"Drama","title":"Dig og mig","releaseDate":1217548800000,"language":"en","type":"Movie","_key":"62323"} +{"label":"Infinite Justice","description":"No overview found.","id":"15781","runtime":0,"imdbId":"tt0466845","version":868,"lastModified":"1302022749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c98\/4bc948e0017a3c57fe01fc98\/infinite-justice-mid.jpg","title":"Infinite Justice","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62324"} +{"label":"To See If I'm Smiling","description":"Israel is the only country in the world where 18-year-old girls are drafted for compulsory military service. The frank testimonials of six female Israeli soldiers stationed in Gaza and the West Bank sees the young women revisit their tours of duty in the occupied territories, and share shocking moments of negligence, flippancy, immaturity and power-tripping.","id":"15782","runtime":59,"imdbId":"tt1112866","version":78,"lastModified":"1301908287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca5\/4bc948e4017a3c57fe01fca5\/to-see-if-i-m-smiling-mid.jpg","studio":"First Hand Films","genre":"Documentary","title":"To See If I'm Smiling","releaseDate":1191110400000,"language":"en","type":"Movie","_key":"62325"} +{"label":"Tamar Yarom","version":16,"id":"78765","lastModified":"1301902242000","name":"Tamar Yarom","type":"Person","_key":"62326"} +{"label":"Denis Kacenga","version":20,"id":"128637","lastModified":"1301902794000","name":"Denis Kacenga","type":"Person","_key":"62327"} +{"label":"Babysitter Wanted","description":"Small-town college girl Angie is hired by Jim and Violet Stanton to babysit their son Sam. Aware of the recent reports of missing people, she believes someone is stalking her. Is it all in her head or is there something really out there. ","id":"15784","runtime":83,"imdbId":"tt0819755","version":101,"lastModified":"1301903134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb2\/4bc948e5017a3c57fe01fcb2\/babysitter-wanted-mid.jpg","studio":"Big Screen Entertainment Group","genre":"Horror","title":"Babysitter Wanted","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62328"} +{"label":"Jonas Barnes","version":31,"id":"79490","lastModified":"1301902508000","name":"Jonas Barnes","type":"Person","_key":"62329"} +{"label":"Michael Manasseri","version":25,"id":"79492","lastModified":"1301901788000","name":"Michael Manasseri","type":"Person","_key":"62330"} +{"label":"Tina Houtz","version":22,"id":"90032","lastModified":"1301901788000","name":"Tina Houtz","type":"Person","_key":"62331"} +{"label":"Matt Dallas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4ceebee35e73d654f50000a7\/matt-dallas-profile.jpg","version":40,"id":"79494","lastModified":"1301901253000","name":"Matt Dallas","type":"Person","_key":"62332"} +{"label":"Bruce Thomas","version":29,"id":"79497","lastModified":"1301901961000","name":"Bruce Thomas","type":"Person","_key":"62333"} +{"label":"Nana Visitor","version":27,"id":"74070","lastModified":"1301901961000","name":"Nana Visitor","type":"Person","_key":"62334"} +{"label":"Kai Caster","version":25,"id":"79498","lastModified":"1301902344000","name":"Kai Caster","type":"Person","_key":"62335"} +{"label":"Jillian Schmitz","version":24,"id":"79493","lastModified":"1301902344000","name":"Jillian Schmitz","type":"Person","_key":"62336"} +{"label":"Brett Claywell","version":26,"id":"79499","lastModified":"1301902156000","name":"Brett Claywell","type":"Person","_key":"62337"} +{"label":"Douglas Rowe","version":24,"id":"79496","lastModified":"1301901961000","name":"Douglas Rowe","type":"Person","_key":"62338"} +{"label":"Jeff Markey","version":24,"id":"79500","lastModified":"1301901788000","name":"Jeff Markey","type":"Person","_key":"62339"} +{"label":"Cristie Schoen","version":24,"id":"79501","lastModified":"1301902344000","name":"Cristie Schoen","type":"Person","_key":"62340"} +{"label":"Linda Neal","version":24,"id":"79495","lastModified":"1301902344000","name":"Linda Neal","type":"Person","_key":"62341"} +{"label":"Cherry 2000","description":"When successful businessman Sam Treadwell finds that his android wife, Cherry model 2000 has blown a fuse, he hires sexy renegade tracker E. Johnson to find her exact duplicate. But as their journey to replace his perfect mate leads them into the treacherous and lawless region of 'The Zone', Treadwell learns the hard way that the perfect woman is made not of computer chips and diodes.","id":"15785","runtime":99,"imdbId":"tt0092746","trailer":"http:\/\/www.youtube.com\/watch?v=kckEEQKXaCU","version":135,"lastModified":"1301903551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbb\/4bc948e6017a3c57fe01fcbb\/cherry-2000-mid.jpg","studio":"ERP Productions","genre":"Action","title":"Cherry 2000","releaseDate":563673600000,"language":"en","tagline":"Need A Bounty Hunter? She's Your Man.","type":"Movie","_key":"62342"} +{"label":"Steve De Jarnatt","version":22,"id":"84906","lastModified":"1301901988000","name":"Steve De Jarnatt","type":"Person","_key":"62343"} +{"label":"The Kennedys of Massachusetts","description":"No overview found.","id":"15786","runtime":0,"imdbId":"tt0098838","version":30,"lastModified":"1301908529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc4\/4bc948e6017a3c57fe01fcc4\/the-kennedys-of-massachusetts-mid.jpg","title":"The Kennedys of Massachusetts","releaseDate":635299200000,"language":"en","type":"Movie","_key":"62344"} +{"label":"The Delicate Delinquent","description":"Sidney Pythias (Jerry Lewis) is the a bumbling janitor picked up by cop Darren McGavin as a teenage gang member worth saving from delinquency. With McGavin's help, Sidney works his way through the Police Academy to become a cop too.","id":"15787","runtime":101,"imdbId":"tt0050301","version":83,"lastModified":"1301904562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccd\/4bc948e7017a3c57fe01fccd\/the-delicate-delinquent-mid.jpg","studio":"York Pictures Corporation","genre":"Comedy","title":"The Delicate Delinquent","releaseDate":-396748800000,"language":"en","type":"Movie","_key":"62345"} +{"label":"Robert Ivers","version":22,"id":"78772","lastModified":"1301902032000","name":"Robert Ivers","type":"Person","_key":"62346"} +{"label":"Horace McMahon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92f\/4cced08b7b9aa16b9e00092f\/horace-mcmahon-profile.jpg","version":23,"id":"78773","lastModified":"1301902171000","name":"Horace McMahon","type":"Person","_key":"62347"} +{"label":"Joseph Corey","version":17,"id":"78774","lastModified":"1301902067000","name":"Joseph Corey","type":"Person","_key":"62348"} +{"label":"Mary Webster","version":18,"id":"78775","lastModified":"1301902067000","name":"Mary Webster","type":"Person","_key":"62349"} +{"label":"Milton Frome","version":18,"id":"78776","lastModified":"1301902067000","name":"Milton Frome","type":"Person","_key":"62350"} +{"label":"Jefferson Dudley Searles","version":17,"id":"78777","lastModified":"1301902067000","name":"Jefferson Dudley Searles","type":"Person","_key":"62351"} +{"label":"Don McGuire","version":34,"id":"58093","lastModified":"1301901169000","name":"Don McGuire","type":"Person","_key":"62352"} +{"label":"The Bellboy","description":"Stanley is a bellboy at the Fountainbleau Hotel in Miami Beach. It is there that he performs his duties quietly and without a word to anyone. All that he displays are facial expressions and a comedic slapstick style. And anything that can go wrong - does go wrong when Stanley is involved. Then one day, Jerry Lewis, big star, arrives at the hotel and some of the staff notice the striking resemblanc","id":"15788","runtime":72,"imdbId":"tt0053644","version":77,"lastModified":"1301903709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd6\/4bc948e8017a3c57fe01fcd6\/the-bellboy-1960-mid.jpg","genre":"Comedy","title":"The Bellboy","releaseDate":-298252800000,"language":"en","type":"Movie","_key":"62353"} +{"label":"Alex Gerry","version":24,"id":"78778","lastModified":"1301902218000","name":"Alex Gerry","type":"Person","_key":"62354"} +{"label":"Bob Clayton","version":17,"id":"78779","lastModified":"1301902242000","name":"Bob Clayton","type":"Person","_key":"62355"} +{"label":"Sonnie Sands","version":17,"id":"78780","lastModified":"1301902242000","name":"Sonnie Sands","type":"Person","_key":"62356"} +{"label":"Eddie Shaeffer","version":17,"id":"78781","lastModified":"1301902242000","name":"Eddie Shaeffer","type":"Person","_key":"62357"} +{"label":"Herkie Styles","version":17,"id":"78782","lastModified":"1301902242000","name":"Herkie Styles","type":"Person","_key":"62358"} +{"label":"David Landfield","version":17,"id":"78783","lastModified":"1301902242000","name":"David Landfield","type":"Person","_key":"62359"} +{"label":"A Goofy Movie","description":"It's the last day of school, and Max wants to catch the eye of Roxanne, one of the more attractive girls in school. But how can you be cool when your dad's Goofy? Stage an impromptu concert at the final assembly, that's how! Or at least it sounded good until Principal Mazer found out. Goofy finds out about his son's antics (sort of), and decides a fishing trip, like his dad took him on, is the solution. Of course, he doesn't know that Max finally lands a date with Roxanne for a party thrown by t","id":"15789","runtime":78,"imdbId":"tt0113198","trailer":"http:\/\/www.youtube.com\/watch?v=1402","version":107,"lastModified":"1302035794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07d\/4d3121387b9aa1368c00007d\/a-goofy-movie-mid.jpg","genre":"Animation","title":"A Goofy Movie","releaseDate":797212800000,"language":"en","tagline":"It's the story of a father who couldn't be closer...to driving his son crazy.","type":"Movie","_key":"62360"} +{"label":"Diamond Dogs","description":"\"Diamond Dogs\" is the story of a group of American fortune hunters, who come to China looking for a long-lost-treasure. During the Soviet crack-down on religion in the 1930's, a priceless Buddhist artifact, a Tangka was taken across the border to China and hidden in the mountains. The diamonds alone, decorating this huge gold-inlaid textile, are thought to be worth $50 million. The fortune hunters","id":"15791","runtime":94,"imdbId":"tt0858433","version":196,"lastModified":"1301905298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce4\/4bc948e8017a3c57fe01fce4\/diamond-dogs-mid.jpg","genre":"Action","title":"Diamond Dogs","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"62361"} +{"label":"Xue Zuren","version":17,"id":"78785","lastModified":"1301901559000","name":"Xue Zuren","type":"Person","_key":"62362"} +{"label":"William Shriver","version":17,"id":"78786","lastModified":"1301902135000","name":"William Shriver","type":"Person","_key":"62363"} +{"label":"NuoMing Huari","version":17,"id":"78787","lastModified":"1301902316000","name":"NuoMing Huari","type":"Person","_key":"62364"} +{"label":"Samuel Dolhasca","version":15,"id":"147950","lastModified":"1301903096000","name":"Samuel Dolhasca","type":"Person","_key":"62365"} +{"label":"Love, Ludlow","description":"Myra Smuldanski has done the unthinkable. After years of shunning men she accepts a date with Reginald Baron, an account executive at the office where she temps. The only man in her life up to this point has been Ludlow, Myra's bi-polar younger brother who aspires to be the next Jackson Pollack. Lud is not to happy with the new man in Myra's life and tries his best to destroy any budding relations","id":"15792","runtime":86,"imdbId":"tt0436524","version":170,"lastModified":"1300980204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce9\/4bc948e8017a3c57fe01fce9\/love-ludlow-mid.jpg","genre":"Comedy","title":"Love, Ludlow","releaseDate":1139097600000,"language":"en","type":"Movie","_key":"62366"} +{"label":"Alicia Goranson","version":21,"id":"78788","lastModified":"1301902325000","name":"Alicia Goranson","type":"Person","_key":"62367"} +{"label":"Andrea Maulella","version":16,"id":"78790","lastModified":"1301902325000","name":"Andrea Maulella","type":"Person","_key":"62368"} +{"label":"White Heat","description":"A psychopathic criminal (Cagney) with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.","id":"15794","runtime":114,"imdbId":"tt0042041","trailer":"http:\/\/www.youtube.com\/watch?v=mTNqcqBabwk","version":149,"lastModified":"1301902626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf6\/4bc948e9017a3c57fe01fcf6\/white-heat-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"White Heat","releaseDate":-641606400000,"language":"en","tagline":"Pick up the pieces folks, Jimmy's in action again!","type":"Movie","_key":"62369"} +{"label":"Margaret Wycherly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4be\/4bfac11b017a3c702a0004be\/margaret-wycherly-profile.jpg","version":29,"id":"78791","lastModified":"1301901314000","name":"Margaret Wycherly","type":"Person","_key":"62370"} +{"label":"Steve Cochran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/160\/4bd5ab37017a3c2e7d000160\/steve-cochran-profile.jpg","version":37,"id":"78792","lastModified":"1301901452000","name":"Steve Cochran","type":"Person","_key":"62371"} +{"label":"John Archer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3d1\/4bf2ab20017a3c32120003d1\/john-archer-profile.jpg","version":33,"birthday":"-1724720400000","id":"78793","birthplace":"Osceola, Nebraska, USA","lastModified":"1301901290000","name":"John Archer","type":"Person","_key":"62372"} +{"label":"Wally Cassell","version":27,"id":"78794","lastModified":"1301901608000","name":"Wally Cassell","type":"Person","_key":"62373"} +{"label":"Raoul Walsh","version":68,"id":"8823","lastModified":"1301901190000","name":"Raoul Walsh","type":"Person","_key":"62374"} +{"label":"Insut\u00f4ru","description":"Aya stars as 17 year old Japanese schoolgirl Asako, who one day decides to play truant and ponder on what she wants to do in life. She chances upon 10 year old elementary schoolboy Aoki, who is extremely horny, and introduces her to the world of cybersex, and lucrative business of impersonating an online woman in a chat room.","id":"15795","runtime":94,"imdbId":"tt0439631","version":26,"lastModified":"1301416109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cff\/4bc948ed017a3c57fe01fcff\/insutoru-mid.jpg","title":"Insut\u00f4ru","releaseDate":1112659200000,"language":"en","type":"Movie","_key":"62375"} +{"label":"Jal sarabose","description":"No overview found.","id":"15796","runtime":120,"imdbId":"tt0891511","version":40,"lastModified":"1300980205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d04\/4bc948ed017a3c57fe01fd04\/jal-sarabose-mid.jpg","title":"Jal sarabose","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62376"} +{"label":"Only the Strong","description":"Former Green Beret Louis Stevens returns to his hometown of Miami after completing military service in Brazil, only to learn that his old high school has become a haven for gangs and drug dealers. After Stevens uses his capoeira skills to kick several drug dealers off of the school property, Kerrigan, one of Stevens' old teachers, sees the impact that Stevens has on the students. Kerrigan gives him the task of teaching Capoeira to a handful of the worst at-risk students at the school.","id":"15797","runtime":99,"imdbId":"tt0107750","trailer":"http:\/\/www.youtube.com\/watch?v=W-C03hEmqO8","version":106,"lastModified":"1301905669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0d\/4bc948ee017a3c57fe01fd0d\/only-the-strong-mid.jpg","genre":"Action","title":"Only the Strong","releaseDate":725846400000,"language":"en","type":"Movie","_key":"62377"} +{"label":"Bravo Two Zero","description":"This is the true story of the most highly decorated British patrol since the Boer war: an eight man SAS team inserted behind Iraqi lines during the Gulf War in January 1991. Their mission was to take out the scud missiles which Saddam Hussein was using to terrorize his enemies, as well as to sever strategic communication lines between Baghdad and North West Iraq.","id":"15799","runtime":115,"imdbId":"tt0120617","version":130,"lastModified":"1301904547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d23\/4bc948ef017a3c57fe01fd23\/bravo-two-zero-mid.jpg","studio":"BBC Films","genre":"Action","title":"Bravo Two Zero","releaseDate":939254400000,"language":"en","type":"Movie","_key":"62378"} +{"label":"Rick Warden","version":21,"id":"83137","lastModified":"1301901811000","name":"Rick Warden","type":"Person","_key":"62379"} +{"label":"Ian Curtis","version":22,"id":"83138","lastModified":"1301901673000","name":"Ian Curtis","type":"Person","_key":"62380"} +{"label":"Robert Hobbs","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4d24e91a5e73d626be000128\/robert-hobbs-profile.jpg","version":37,"id":"82190","lastModified":"1301904079000","name":"Robert Hobbs","type":"Person","_key":"62381"} +{"label":"Ron Senior Jr.","version":20,"id":"83139","lastModified":"1301901534000","name":"Ron Senior Jr.","type":"Person","_key":"62382"} +{"label":"Robert Whitehead","version":18,"id":"83140","lastModified":"1301901718000","name":"Robert Whitehead","type":"Person","_key":"62383"} +{"label":"Trekkies","description":"A hilarious look at the universe's most fervent fans.","id":"15800","runtime":86,"imdbId":"tt0120370","version":138,"lastModified":"1301903508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2c\/4bc948f0017a3c57fe01fd2c\/trekkies-mid.jpg","studio":"NEO Motion Pictures","genre":"Comedy","title":"Trekkies","releaseDate":877132800000,"language":"en","type":"Movie","_key":"62384"} +{"label":"Barbara Adams","version":16,"id":"91375","lastModified":"1301902464000","name":"Barbara Adams","type":"Person","_key":"62385"} +{"label":"Roger Nygard","version":21,"id":"63983","lastModified":"1301901644000","name":"Roger Nygard","type":"Person","_key":"62386"} +{"label":"What Doesn't Kill You","description":"What Doesn\u2019t Kill You stars Mark Ruffalo (Brian) and Ethan Hawke (Paulie) as friends who grew up like brothers on the gritty streets of south Boston. As petty crimes and misdemeanors grow into more serious offenses, they eventually fall prey to organized crime boss Pat Kelly, played by Brian Goodman.","id":"15801","runtime":100,"imdbId":"tt1133991","trailer":"http:\/\/www.youtube.com\/watch?v=1049","homepage":"http:\/\/www.whatdoesntkillyoumovie.com\/","version":275,"lastModified":"1301902703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d41\/4bc948f2017a3c57fe01fd41\/what-doesn-t-kill-you-mid.jpg","genre":"Action","title":"What Doesn't Kill You","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"62387"} +{"label":"Brian Goodman","version":17,"id":"80978","lastModified":"1301901864000","name":"Brian Goodman","type":"Person","_key":"62388"} +{"label":"Tokyo Decadence","description":"Purportedly based on lead actress Rinako Hirasawa's experiences, the film tells the story of a secretary who is led to the world of BDSM by her boss.","id":"15802","runtime":0,"imdbId":"tt0105622","version":56,"lastModified":"1301905625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4a\/4bc948f3017a3c57fe01fd4a\/15802-mid.jpg","genre":"Romance","title":"Tokyo Decadence","releaseDate":694656000000,"language":"en","type":"Movie","_key":"62389"} +{"label":"Ry\u00fb Murakami","version":23,"id":"68113","lastModified":"1301902182000","name":"Ry\u00fb Murakami","type":"Person","_key":"62390"} +{"label":"Multi-Facial","description":"No overview found.","id":"15803","runtime":0,"imdbId":"tt0226168","version":45,"lastModified":"1301908601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d53\/4bc948f3017a3c57fe01fd53\/multi-facial-mid.jpg","title":"Multi-Facial","releaseDate":757382400000,"language":"en","type":"Movie","_key":"62391"} +{"label":"A Brighter Summer Day","description":"Set in Taiwan during the year 1960, a talented but self-centered student refuses to compromise his moral standards with anyone - teachers, friends, parents or girlfriend.","id":"15804","runtime":237,"imdbId":"tt0101985","version":59,"lastModified":"1301907396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d58\/4bc948f4017a3c57fe01fd58\/15804-mid.jpg","genre":"Drama","title":"A Brighter Summer Day","releaseDate":684374400000,"language":"en","type":"Movie","_key":"62392"} +{"label":"Lisa Yang","version":14,"id":"150162","lastModified":"1301903126000","name":"Lisa Yang","type":"Person","_key":"62393"} +{"label":"Guozhu Zhang","version":14,"id":"150163","lastModified":"1301903126000","name":"Guozhu Zhang","type":"Person","_key":"62394"} +{"label":"Elaine Jin","version":24,"id":"103598","lastModified":"1301902547000","name":"Elaine Jin","type":"Person","_key":"62395"} +{"label":"Juan Wang","version":14,"id":"150164","lastModified":"1301903126000","name":"Juan Wang","type":"Person","_key":"62396"} +{"label":"Edward Yang","version":38,"id":"143035","lastModified":"1301901525000","name":"Edward Yang","type":"Person","_key":"62397"} +{"label":"Batman & Mr. Freeze: SubZero","description":"No overview found.","id":"15805","runtime":70,"imdbId":"tt0143127","version":156,"lastModified":"1301903938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc948f4017a3c57fe01fd61\/batman-mr-freeze-subzero-mid.jpg","genre":"Action","title":"Batman & Mr. Freeze: SubZero","releaseDate":890092800000,"language":"en","type":"Movie","_key":"62398"} +{"label":"Boyd Kirkland","version":29,"id":"35267","lastModified":"1301901767000","name":"Boyd Kirkland","type":"Person","_key":"62399"} +{"label":"Loren Lester","version":21,"id":"34979","lastModified":"1301901864000","name":"Loren Lester","type":"Person","_key":"62400"} +{"label":"Mari Devon","version":19,"id":"35363","lastModified":"1301901608000","name":"Mari Devon","type":"Person","_key":"62401"} +{"label":"Liane Schirmer","version":19,"id":"34977","lastModified":"1301901864000","name":"Liane Schirmer","type":"Person","_key":"62402"} +{"label":"Splinter","description":"A gang member, suffering from severe memory loss, searches for his brother's murderer. He secretly enlists the aid of the investigating Detective, while other members of his gang are mysteriously and sadistically murdered.","id":"15806","runtime":90,"imdbId":"tt0429115","version":221,"lastModified":"1301907091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6a\/4bc948f8017a3c57fe01fd6a\/splinter-mid.jpg","studio":"Splinter Films Ltd.","genre":"Thriller","title":"Splinter","releaseDate":1155772800000,"language":"en","type":"Movie","_key":"62403"} +{"label":"Enrique Almeida","version":22,"id":"78796","lastModified":"1301901348000","name":"Enrique Almeida","type":"Person","_key":"62404"} +{"label":"Michael D. Olmos","version":17,"id":"133790","lastModified":"1301902748000","name":"Michael D. Olmos","type":"Person","_key":"62405"} +{"label":"Air Force","description":"The crew of an Air Force bomber arrives in Pearl Harbor in the aftermath of the Japanese attack and is sent on to Manila to help with the defense of the Philippines.","id":"15807","runtime":124,"imdbId":"tt0035616","trailer":"http:\/\/www.youtube.com\/watch?v=akg74A0JF8k","version":92,"lastModified":"1301904614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d74\/4bc948f8017a3c57fe01fd74\/air-force-mid.jpg","genre":"Action","title":"Air Force","releaseDate":-845337600000,"language":"en","type":"Movie","_key":"62406"} +{"label":"Ward Wood","version":24,"id":"129502","lastModified":"1301902904000","name":"Ward Wood","type":"Person","_key":"62407"} +{"label":"Ray Montgomery","version":19,"id":"95017","lastModified":"1301902790000","name":"Ray Montgomery","type":"Person","_key":"62408"} +{"label":"John Garfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d8\/4bcc7006017a3c0f2a0000d8\/john-garfield-profile.jpg","version":48,"id":"81970","lastModified":"1301901358000","name":"John Garfield","type":"Person","_key":"62409"} +{"label":"Green Street Hooligans 2","description":"When the top players of the Green Street Elite are imprisoned following a deadly battle with their archenemies Millwall every day becomes a fight for survival. On the inside, rival firms and prison guards will stop at nothing to make their lives a living hell, leaving the lads with no choice but to stand their ground and fight. Find out what happens when the two most fearsome and notorious firms ","id":"15809","runtime":94,"imdbId":"tt1300853","version":253,"lastModified":"1301907997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d85\/4bc948f9017a3c57fe01fd85\/green-street-hooligans-2-mid.jpg","genre":"Action","title":"Green Street Hooligans 2","releaseDate":1237766400000,"language":"en","type":"Movie","_key":"62410"} +{"label":"The Tender Hook","description":"The story is about Iris' rise to the apex of a love\/power triangle that includes her roguish English lover, McHeath and Art, an earnest young boxer. Within the flawed moral landscape, each character struggles to establish their sovereignty.","id":"15810","runtime":0,"imdbId":"tt0452692","version":104,"lastModified":"1301905711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8e\/4bc948fa017a3c57fe01fd8e\/the-tender-hook-mid.jpg","genre":"Crime","title":"The Tender Hook","releaseDate":1221696000000,"language":"en","type":"Movie","_key":"62411"} +{"label":"Spion van Oranje","description":"The Netherlands are being threatened by a weird terrorist. The only one who can save The Netherlands from this terrorist seems to be Francois. He is a gay couturier who very much looks like the terrorist. They turn out to be twin brothers. Francois takes on the duty to pose as his brother to stop the terrorist activities.","id":"15811","runtime":91,"imdbId":"tt1208729","trailer":"http:\/\/www.youtube.com\/watch?v=1052","homepage":"http:\/\/www.spionvanoranjedefilm.nl\/","version":95,"lastModified":"1301906603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da3\/4bc948fc017a3c57fe01fda3\/spion-van-oranje-mid.jpg","genre":"Comedy","title":"Spion van Oranje","releaseDate":1233792000000,"language":"en","type":"Movie","_key":"62412"} +{"label":"Jennifer Hoffman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e2\/4cbf7f867b9aa138d60017e2\/jennifer-hoffman-profile.jpg","version":19,"birthday":"346374000000","id":"78801","birthplace":"Gouda","lastModified":"1301902170000","name":"Jennifer Hoffman","type":"Person","_key":"62413"} +{"label":"Fred Goessens","version":17,"id":"78802","lastModified":"1301902067000","name":"Fred Goessens","type":"Person","_key":"62414"} +{"label":"Hans Kesting","version":18,"id":"78803","lastModified":"1301901718000","name":"Hans Kesting","type":"Person","_key":"62415"} +{"label":"Tim Oliehoek","version":17,"id":"105666","lastModified":"1301901864000","name":"Tim Oliehoek","type":"Person","_key":"62416"} +{"label":"Dark Blue World","description":"March 15, 1939: Germany invades Czechoslovakia. Czech pilots flee to England, joining the RAF. After the war, back home, they are put in labor camps, suspected of anti-Communist ideas. This film cuts between a post-war camp where Franta is a prisoner and England during the war, where Franta is like a big brother to Karel, a very young pilot. On maneuvers, Karel crash lands by the rural home of Susan, an English woman whose husband is MIA. She spends one night with Karel, and he thinks he's found","id":"15813","runtime":112,"imdbId":"tt0244479","version":305,"lastModified":"1301902943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1c\/4d4b953c5e73d617b7000f1c\/tmavomodr-sv-t-mid.jpg","studio":"Biograf Jan Sverak Pictures","genre":"War","title":"Dark Blue World","releaseDate":1009497600000,"language":"en","type":"Movie","_key":"62417"} +{"label":"Ond\u0159ej Vetch\u00fd - don't use","version":19,"id":"130882","lastModified":"1301902516000","name":"Ond\u0159ej Vetch\u00fd - don't use","type":"Person","_key":"62418"} +{"label":"Kry\u0161tof H\u00e1dek","version":17,"id":"136796","lastModified":"1301902407000","name":"Kry\u0161tof H\u00e1dek","type":"Person","_key":"62419"} +{"label":"David Novotn\u00fd","version":24,"id":"127873","lastModified":"1301902586000","name":"David Novotn\u00fd","type":"Person","_key":"62420"} +{"label":"Linda Rybov\u00e1","version":22,"id":"127874","lastModified":"1301902733000","name":"Linda Rybov\u00e1","type":"Person","_key":"62421"} +{"label":"Luk\u00e1s Kantor","version":21,"id":"127875","lastModified":"1301902798000","name":"Luk\u00e1s Kantor","type":"Person","_key":"62422"} +{"label":"Juraj Bern\u00e1th","version":21,"id":"127877","lastModified":"1301902798000","name":"Juraj Bern\u00e1th","type":"Person","_key":"62423"} +{"label":"UFC 96: Jackson vs. Jardine","description":"UFC 96: Jackson vs. Jardine a mixed martial arts event held by the Ultimate Fighting Championship (UFC). It was held in Columbus, Ohio on March 7, 2009 at Nationwide Arena","id":"15814","runtime":177,"imdbId":"tt1510294","version":90,"lastModified":"1301903866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbd\/4bc948fe017a3c57fe01fdbd\/ufc-96-jackson-vs-jardine-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC 96: Jackson vs. Jardine","releaseDate":1236384000000,"language":"en","type":"Movie","_key":"62424"} +{"label":"Pete Sell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/177\/4c1dff067b9aa11e95000177\/pete-sell-profile.jpg","version":23,"id":"78889","lastModified":"1301901985000","name":"Pete Sell","type":"Person","_key":"62425"} +{"label":"Mark Munoz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d0\/4c0899bc017a3c35190007d0\/mark-munoz-profile.jpg","version":27,"id":"83372","lastModified":"1301902341000","name":"Mark Munoz","type":"Person","_key":"62426"} +{"label":"1:1","description":"In a Copenhagen suburb the 19-year-old Per is found unconscious after having been badly beaten up. He is taken to hospital in a coma. The police have no clues, but the air is thick with suspicion. His mother struggles to maintain her faith in his survival. His younger sister, Mie, begins to pick up rumors. Her boyfriend, Shadi, suspects that his elder brother is behind the assault but he cannot tell anyone. Many well-meaning people find themselves at sea in a fable about emotions leading us astr","id":"15815","runtime":91,"imdbId":"tt0465963","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/one-to-one","version":76,"lastModified":"1301903988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcb\/4bc948ff017a3c57fe01fdcb\/1-1-mid.jpg","genre":"Drama","title":"1:1","releaseDate":1138320000000,"language":"en","type":"Movie","_key":"62427"} +{"label":"2 ryk og 1 aflevering","description":"Fodbold eller piger? Det kan v\u00e6re sv\u00e6rt at v\u00e6lge. Specielt for 16-\u00e5rige Jakob, der holder den lurende kedsomhed i \u00c5rhus-forstaden p\u00e5 afstand med sine to store lidenskaber, piger og fodbold.","id":"15816","runtime":95,"imdbId":"tt0350485","version":36,"lastModified":"1300980208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd4\/4bc948ff017a3c57fe01fdd4\/2-ryk-og-1-aflevering-mid.jpg","title":"2 ryk og 1 aflevering","releaseDate":1065139200000,"language":"en","type":"Movie","_key":"62428"} +{"label":"500 Stenkastende Autonome Voldspsykopater Fra Helvede","description":"No overview found.","id":"15817","runtime":80,"imdbId":"tt0893575","version":36,"lastModified":"1300980208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddd\/4bc94903017a3c57fe01fddd\/500-stenkastende-autonome-voldspsykopater-fra-helvede-mid.jpg","title":"500 Stenkastende Autonome Voldspsykopater Fra Helvede","releaseDate":1192147200000,"language":"en","type":"Movie","_key":"62429"} +{"label":"Af banen!","description":"Torben er arbejdsl\u00f8s, fraskilt og ikke helt p\u00e5 b\u00f8lgel\u00e6ngde med sin 13-\u00e5rige s\u00f8n David. Men en dag f\u00e5r han chancen for at springe til som tr\u00e6ner for s\u00f8nnens fodboldhold, der ligger h\u00e5bl\u00f8st placeret i bunden af ligaen.","id":"15819","runtime":90,"imdbId":"tt0384194","version":33,"lastModified":"1301905715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/deb\/4bc94904017a3c57fe01fdeb\/af-banen-mid.jpg","title":"Af banen!","releaseDate":1110499200000,"language":"en","type":"Movie","_key":"62430"} +{"label":"AFR","description":"Danmarks statsminister Anders Fogh Rasmussen er blevet myrdet. Den hovedmist\u00e6nkte er statsministerens homoseksuelle elsker Emil. I tiden efter mordet m\u00f8der vi en lang r\u00e6kke af verdens politikere og magtfulde mennesker, fra Kofi Annan til Pia Kj\u00e6rsgaard. De forholder sig til mordet og ikke mindst til mennesket Anders Fogh Rasmussen.","id":"15820","runtime":83,"imdbId":"tt0369878","version":63,"lastModified":"1300980208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df4\/4bc94905017a3c57fe01fdf4\/afr-mid.jpg","genre":"Drama","title":"AFR","releaseDate":1177027200000,"language":"en","type":"Movie","_key":"62431"} +{"label":"Ambulancen","description":"Tim og Frank er br\u00f8dre. Deres mor er alvorligt syg, og kun en operation kan redde hendes liv. Men den koster penge, og br\u00f8drene beslutter derfor at beg\u00e5 et r\u00f8veri for at skaffe dem. Noget g\u00e5r dog galt, og de m\u00e5 flygte i en stj\u00e5len ambulance. Bag i ambulancen sidder en l\u00e6gepraktikant og en hjertepatient, som vil d\u00f8, hvis ikke han kommer p\u00e5 hospitalet i en fart. Av min arm!","id":"15821","runtime":80,"imdbId":"tt0400156","version":64,"lastModified":"1301907163000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfd\/4bc94906017a3c57fe01fdfd\/ambulancen-mid.jpg","title":"Ambulancen","releaseDate":1121385600000,"language":"en","type":"Movie","_key":"62432"} +{"label":"Anklaget","description":"Teenageren Stine bliver stadig mere indelukket og begynder at fort\u00e6lle skr\u00f8ner i skolen om, at hendes mor er syg, og at hendes far er voldelig. Helt galt g\u00e5r det, da Stine pludselig en dag anklager sin far for incest, og han efterf\u00f8lgende bliver hentet af politiet p\u00e5 sin arbejdsplads. Snart er sagen fuldst\u00e6ndig ude at kontrol, og det bliver langsomt klart, at Stine b\u00e6rer p\u00e5 en hemmelighed.","id":"15822","runtime":103,"imdbId":"tt0388727","version":60,"lastModified":"1301906052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e06\/4bc94907017a3c57fe01fe06\/anklaget-mid.jpg","title":"Anklaget","releaseDate":1106870400000,"language":"en","type":"Movie","_key":"62433"} +{"label":"Anton","description":"10-\u00e5rige Anton har et projekt. Hans far, der var pilot, er d\u00f8d i en ulykke, men Anton vil ikke tro, at han er s\u00e5dan rigtig d\u00f8d. I bagg\u00e5rdens garage bygger han sin egen propelflyver, s\u00e5 han kan flyve ud for at finde ham.","id":"15823","runtime":85,"imdbId":"tt0115553","version":69,"lastModified":"1301906611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0f\/4bc94908017a3c57fe01fe0f\/anton-mid.jpg","title":"Anton","releaseDate":823824000000,"language":"en","type":"Movie","_key":"62434"} +{"label":"Arven","description":"Christoffer lever lykkeligt i Stockholm, hvor han ejer en restaurant og er gift med skuespillerinden Maria. Han tilh\u00f8rer fjerde generation af ejerne af familien Borch M\u00f8llers st\u00e5lv\u00e6rk, og da hans far beg\u00e5r selvmord, insisterer hans mor p\u00e5, at han vender tilbage for at lede fabrikken. Christoffer indvilliger modstr\u00e6bende, og han m\u00e5 tage drastiske beslutninger for at redde selskabet fra konkurs.","id":"15824","runtime":116,"imdbId":"tt0328844","version":107,"lastModified":"1301907573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e18\/4bc94909017a3c57fe01fe18\/arven-mid.jpg","title":"Arven","releaseDate":1045785600000,"language":"en","type":"Movie","_key":"62435"} +{"label":"At klappe med een h\u00e5nd","description":"Den aldrende rigmand Svensson er p\u00e5 vej til Spanien med sin unge elskerinde efter at have holdt en temmelig us\u00e6dvanlig begravelse for sin afd\u00f8de kone. Ferien bliver forsinket, da han bliver pr\u00e6senteret for en faderskabsag. Med bedemanden som chauff\u00f8r i sin Jaguar begiver han sig af sted for at finde moderen og den 26-\u00e5rige, der h\u00e6vder at v\u00e6re hans datter.","id":"15825","runtime":85,"imdbId":"tt0289076","version":27,"lastModified":"1301906177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e25\/4bc9490b017a3c57fe01fe25\/at-klappe-med-een-hand-mid.jpg","title":"At klappe med een h\u00e5nd","releaseDate":998006400000,"language":"en","type":"Movie","_key":"62436"} +{"label":"Bag det stille ydre","description":"A young couple and their daughter move into an old house haunted by spirits.","id":"15826","runtime":90,"imdbId":"tt0400201","version":33,"lastModified":"1301906056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2e\/4bc9490c017a3c57fe01fe2e\/bag-det-stille-ydre-mid.jpg","title":"Bag det stille ydre","releaseDate":1117152000000,"language":"en","type":"Movie","_key":"62437"} +{"label":"Cortex","description":"Trapped in an old folks home where people keep going missing, an ex-cop must overcome his Alzheimers to find out who is killing people in this jigsaw thriller.","id":"15827","runtime":105,"imdbId":"tt0996925","trailer":"http:\/\/www.youtube.com\/watch?v=BJTYaiqRqDs","version":85,"lastModified":"1301905572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e37\/4bc9490d017a3c57fe01fe37\/cortex-mid.jpg","studio":"Les Films du Worso","genre":"Thriller","title":"Cortex","releaseDate":1201651200000,"language":"en","type":"Movie","_key":"62438"} +{"label":"Pascal Elb\u00e9","version":17,"id":"136317","lastModified":"1301902960000","name":"Pascal Elb\u00e9","type":"Person","_key":"62439"} +{"label":"Claude Perron","version":18,"id":"136318","lastModified":"1301902731000","name":"Claude Perron","type":"Person","_key":"62440"} +{"label":"Nicolas Boukhrief","version":25,"id":"8373","lastModified":"1301901564000","name":"Nicolas Boukhrief","type":"Person","_key":"62441"} +{"label":"Bagland","description":"A story of young love and early life choices.","id":"15828","runtime":85,"imdbId":"tt0373704","version":50,"lastModified":"1301907253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e45\/4bc9490f017a3c57fe01fe45\/bagland-mid.jpg","studio":"Nimbus Film Productions","genre":"Drama","title":"Bagland","releaseDate":1072310400000,"language":"en","type":"Movie","_key":"62442"} +{"label":"Biblen","description":"Oplev Biblen fortalt, som du aldrig har h\u00f8rt den f\u00f8r, i en blanding af skuespil, rap og komedy med tryllekunstneren Rune Klan, rapperne Bl\u00e6s Bukki og Tue Track, stand-up komikeren Linda P. og teaterdirekt\u00f8ren Jonatan Spang.","id":"15829","runtime":0,"version":22,"lastModified":"1301907383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4e\/4bc94910017a3c57fe01fe4e\/biblen-mid.jpg","genre":"Comedy","title":"Biblen","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"62443"} +{"label":"Kim Bjarke","version":16,"id":"89957","lastModified":"1301902518000","name":"Kim Bjarke","type":"Person","_key":"62444"} +{"label":"Rune Klan","version":21,"id":"89161","lastModified":"1301902716000","name":"Rune Klan","type":"Person","_key":"62445"} +{"label":"Jonatan Spang","version":32,"id":"82106","lastModified":"1301901646000","name":"Jonatan Spang","type":"Person","_key":"62446"} +{"label":"Tue Track","version":16,"id":"89958","lastModified":"1301902700000","name":"Tue Track","type":"Person","_key":"62447"} +{"label":"Linda P.","version":16,"id":"89959","lastModified":"1301902707000","name":"Linda P.","type":"Person","_key":"62448"} +{"label":"Bukki Bl\u00e6s","version":16,"id":"89960","lastModified":"1301903038000","name":"Bukki Bl\u00e6s","type":"Person","_key":"62449"} +{"label":"B\u00e6nken (The Bench)","description":"Kaj er en sut. Da den datter, han forlod for 19 \u00e5r siden, flytter ind for at undg\u00e5 at f\u00e5 t\u00e6sk af sin mand, pr\u00f8ver Kaj at beskytte hende og hendes s\u00f8n mod den voldelige mand. Samtidig fors\u00f8ger han med skiftende held at v\u00e6re den omsorgsfulde far, han ikke var, da datteren var barn.","id":"15830","runtime":93,"imdbId":"tt0245027","version":47,"lastModified":"1301908316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e57\/4bc94910017a3c57fe01fe57\/bnken-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"B\u00e6nken (The Bench)","releaseDate":972604800000,"language":"en","type":"Movie","_key":"62450"} +{"label":"Sarah Boberg","version":12,"id":"202578","lastModified":"1301903870000","name":"Sarah Boberg","type":"Person","_key":"62451"} +{"label":"Petrine Agger","version":22,"id":"135945","lastModified":"1301903079000","name":"Petrine Agger","type":"Person","_key":"62452"} +{"label":"Per Fly","version":26,"id":"126774","lastModified":"1301902733000","name":"Per Fly","type":"Person","_key":"62453"} +{"label":"Cecilie","description":"Cecilie har l\u00e6nge haft det skidt og f\u00f8lt sig utryg uden nogen klar grund. Sammen med sin mand flytter til provinsen for at f\u00e5 mere rolige og trygge omgivelser. Men knapt har Cecilie fundet sig til rette, f\u00f8rend hun begynder at opleve de m\u00e6rkeligste og uhyggelige ting i det nye hus. Enten er Cecile ved at blive bindegal, eller ogs\u00e5 vil nogen eller noget overnaturligt i kontakt med hende.","id":"15831","runtime":92,"imdbId":"tt0494216","version":68,"lastModified":"1301907253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e60\/4bc94911017a3c57fe01fe60\/cecilie-mid.jpg","genre":"Drama","title":"Cecilie","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"62454"} +{"label":"Cykelmyggen og Dansemyggen","description":"No overview found.","id":"15832","runtime":75,"imdbId":"tt0965409","version":27,"lastModified":"1301908592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e69\/4bc94912017a3c57fe01fe69\/cykelmyggen-og-dansemyggen-mid.jpg","title":"Cykelmyggen og Dansemyggen","releaseDate":1181260800000,"language":"en","type":"Movie","_key":"62455"} +{"label":"Faut que \u00e7a danse!","description":"Dans la famille Bellinsky : il y a Salomon le p\u00e8re, 80 ans, d\u00e9bordant de vie. Il se bat pour ne pas \u00eatre enterr\u00e9 trop vite, entre des cours de claquettes sous le haut patronage de Fred Astaire et la recherche d'une compagne...La m\u00e8re, Genevi\u00e8ve, ne r\u00eave que d'une chose : poursuivre tranquillement son infantilisation aupr\u00e8s de son aide m\u00e9nager, protecteur et ange gardien, Mr Mootoousamy.","id":"15833","runtime":100,"imdbId":"tt0864691","version":31,"lastModified":"1301905266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6e\/4bc94912017a3c57fe01fe6e\/faut-que-ca-danse-mid.jpg","studio":"Why Not Productions","genre":"Comedy","title":"Faut que \u00e7a danse!","releaseDate":1194998400000,"language":"en","type":"Movie","_key":"62456"} +{"label":"Fear Me Not","description":"Michael needs a change in his life, so when he hears about clinical trials for a new anti-depressant, he signs up to be a guinea pig - without telling his family. Because of dangerous side effects, the trial is subsequently abandoned but Michael continues to take the pills. Having lost all control, Michael's repressed instincts resurface with a force and violence that no-one could have predicted.","id":"15834","runtime":95,"imdbId":"tt1135922","trailer":"http:\/\/www.youtube.com\/watch?v=8SAJCMlCvsA","version":95,"lastModified":"1301905266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7b\/4bc94917017a3c57fe01fe7b\/den-du-frygter-mid.jpg","genre":"Drama","title":"Fear Me Not","releaseDate":1229644800000,"language":"en","type":"Movie","_key":"62457"} +{"label":"Emma Sehested H\u00f8eg","version":20,"id":"89962","lastModified":"1301902464000","name":"Emma Sehested H\u00f8eg","type":"Person","_key":"62458"} +{"label":"Den sidste viking","description":"Vikinges\u00f8nnen Harald bliver ladt alene tilbage i sin landsby med kvinder og b\u00f8rn, da hans h\u00f8vdingefar slutter sig til en gruppe opr\u00f8rere i protest mod, at kongen forlanger at f\u00e5 hans skib. Men kongen tager h\u00e6vn ved at lade en gruppe krigere bes\u00e6tte og tyrannisere byen.","id":"15835","runtime":88,"imdbId":"tt0117645","version":28,"lastModified":"1301419608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e84\/4bc94918017a3c57fe01fe84\/den-sidste-viking-mid.jpg","title":"Den sidste viking","releaseDate":853459200000,"language":"en","type":"Movie","_key":"62459"} +{"label":"Den sorte Madonna","description":"Kriminelle Kurt er oppe i \u00e5rene men skal lige have det sidste kup med. S\u00e5 han samler banden og stj\u00e6ler et kostbart ikon for en russisk samler med hang til ufine metoder. Hurtigt kommer politiet p\u00e5 sporet, s\u00e5 Kurt sender ikonet til sin datter Maria, som han ikke har set l\u00e6nge.","id":"15836","runtime":93,"imdbId":"tt0890886","version":60,"lastModified":"1301905625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e92\/4bc94919017a3c57fe01fe92\/den-sorte-madonna-mid.jpg","studio":"Nordisk Film","genre":"Action","title":"Den sorte Madonna","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"62460"} +{"label":"Miroslaw Zbrojewicz","version":20,"id":"85905","lastModified":"1301902648000","name":"Miroslaw Zbrojewicz","type":"Person","_key":"62461"} +{"label":"Det som ingen ved","description":"In this political thriller, a young woman is found drowned on a winter night by the sea. The dead woman's brother, Thomas, discovers that her death is connected to their father, now deceased, and his work in military intelligence. As Thomas digs deeper into the case his family is brought into sudden danger.","id":"15837","runtime":99,"imdbId":"tt0965411","trailer":"http:\/\/www.youtube.com\/watch?v=yHLgFpxZWtk","version":69,"lastModified":"1301906149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9b\/4bc94919017a3c57fe01fe9b\/det-som-ingen-ved-mid.jpg","genre":"Thriller","title":"Det som ingen ved","releaseDate":1213315200000,"language":"en","type":"Movie","_key":"62462"} +{"label":"Disco ormene","description":"Bjarne er en ung regnorm, der gerne s\u00e5 at livet b\u00f8d p\u00e5 andet og mere end h\u00e5bet om et job i kompostbunken. En dag h\u00f8rer han en discoplade og det er en \u00e5benbaring for den lille orm. Sammen med sine ormevenner beslutter Bjarne at danne et discoband og stille op i det store Melodi Grand Prix, der bliver sendt i hele haven. Men ikke alle havens insekter synes, disco er noget for regnorme.","id":"15838","runtime":79,"imdbId":"tt1087841","trailer":"http:\/\/www.youtube.com\/watch?v=oB4OJrnYeaM","version":88,"lastModified":"1301902900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea4\/4bc9491a017a3c57fe01fea4\/disco-ormene-mid.jpg","studio":"SF Film","genre":"Animation","title":"Disco ormene","releaseDate":1223596800000,"language":"en","type":"Movie","_key":"62463"} +{"label":"Thomas Borch Nielsen","version":18,"id":"108304","lastModified":"1301902710000","name":"Thomas Borch Nielsen","type":"Person","_key":"62464"} +{"label":"Peter Fr\u00f6din","version":23,"id":"77529","lastModified":"1301901592000","name":"Peter Fr\u00f6din","type":"Person","_key":"62465"} +{"label":"Lars Hjortsh\u00f8j","version":22,"id":"93108","lastModified":"1301902325000","name":"Lars Hjortsh\u00f8j","type":"Person","_key":"62466"} +{"label":"Peter Hesse Overgaard","version":21,"id":"119412","lastModified":"1301902521000","name":"Peter Hesse Overgaard","type":"Person","_key":"62467"} +{"label":"Dommeren","description":"Jens Christian er en str\u00f8mlinet karrieredreng og nyudn\u00e6vnt formand for Flygtningen\u00e6vnet. Arbejdet er livets omdrejningspunkt og alt er godt, indtil en bortadopteret s\u00f8n melder sin ankomst, og en us\u00e6dvanlig vanskelig asylsag lander p\u00e5 skrivebordet. Pludselig er det ikke rigtige valg ikke soleklart for Jens Christian, der st\u00e5r splittet mellem forpligtelser og f\u00f8lelser.","id":"15839","runtime":89,"imdbId":"tt0424965","version":26,"lastModified":"1300980212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ead\/4bc9491b017a3c57fe01fead\/dommeren-mid.jpg","title":"Dommeren","releaseDate":1131062400000,"language":"en","type":"Movie","_key":"62468"} +{"label":"Drabet (Manslaughter)","description":"No overview found.","id":"15840","runtime":100,"imdbId":"tt0424971","version":62,"lastModified":"1301908224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb6\/4bc9491c017a3c57fe01feb6\/drabet-mid.jpg","title":"Drabet (Manslaughter)","releaseDate":1125014400000,"language":"en","type":"Movie","_key":"62469"} +{"label":"Vibeke Hastrup","version":12,"id":"202575","lastModified":"1301903870000","name":"Vibeke Hastrup","type":"Person","_key":"62470"} +{"label":"Julie \u00d8lgaard","version":21,"id":"85910","lastModified":"1301902463000","name":"Julie \u00d8lgaard","type":"Person","_key":"62471"} +{"label":"Samy Andersen","version":12,"id":"202617","lastModified":"1301903869000","name":"Samy Andersen","type":"Person","_key":"62472"} +{"label":"En k\u00e6rlighedshistorie","description":"Kira and Mads try to work out their marriage, after Kira has been two years in a mental institution, but is she really ready for the real world?","id":"15842","runtime":93,"imdbId":"tt0285280","version":38,"lastModified":"1301905340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebf\/4bc9491d017a3c57fe01febf\/en-krlighedshistorie-mid.jpg","title":"En k\u00e6rlighedshistorie","releaseDate":1004054400000,"language":"en","type":"Movie","_key":"62473"} +{"label":"Ekko","description":"A divorced policeman loses custody of his young son, only to kidnap his boy and retreat to a remote cottage, where his plan soon turns into a nightmare.","id":"15843","runtime":80,"imdbId":"tt0838224","version":34,"lastModified":"1301906603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edc\/4bc94920017a3c57fe01fedc\/ekko-mid.jpg","title":"Ekko","releaseDate":1196985600000,"language":"en","type":"Movie","_key":"62474"} +{"label":"Villads Milthers Fritsche","version":19,"id":"82565","lastModified":"1301902067000","name":"Villads Milthers Fritsche","type":"Person","_key":"62475"} +{"label":"En mand kommer hjem","description":"A small provincial town is buzzing with excitement: the town's most illustrious son, a world-famous opera singer, is coming home. Meanwhile, Sebastian, a kitchen boy who is as good as married, falls head over heels in love with the new maid, Maria. Their love affair, along with rumours that the opera singer and the kitchen boy are related, turns the town upside down.","id":"15844","runtime":100,"imdbId":"tt0951288","version":87,"lastModified":"1301903355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee5\/4bc94921017a3c57fe01fee5\/en-mand-kommer-hjem-mid.jpg","title":"En mand kommer hjem","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"62476"} +{"label":"Oliver M\u00f8ller-Knauer","version":17,"id":"136772","lastModified":"1301903014000","name":"Oliver M\u00f8ller-Knauer","type":"Person","_key":"62477"} +{"label":"Ronja Mannov Olesen","version":17,"id":"136773","lastModified":"1301903014000","name":"Ronja Mannov Olesen","type":"Person","_key":"62478"} +{"label":"Helene Reingaard Neumann","version":17,"id":"136774","lastModified":"1301903014000","name":"Helene Reingaard Neumann","type":"Person","_key":"62479"} +{"label":"En soap","description":"A tragicomedy focused on the relationship between the owner of a beauty clinic and a transsexual.","id":"15845","runtime":105,"imdbId":"tt0419146","version":82,"lastModified":"1300980212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eee\/4bc94922017a3c57fe01feee\/en-soap-mid.jpg","title":"En soap","releaseDate":1144368000000,"language":"en","type":"Movie","_key":"62480"} +{"label":"The Burrowers","description":"It is 1879 in the Dakota Territories, a band of men who set out to find and recover a family of settlers that has mysteriously vanished from their home. Expecting the offenders to be a band of fierce natives, but they soon discover that the real enemy stalks them from below.","id":"15846","runtime":96,"imdbId":"tt0445939","trailer":"http:\/\/www.youtube.com\/watch?v=HaaMPMrg8oY","version":167,"lastModified":"1301903745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef7\/4bc94923017a3c57fe01fef7\/the-burrowers-mid.jpg","studio":"Blue Star Pictures","genre":"Action","title":"The Burrowers","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"62481"} +{"label":"Jocelin Donahue","version":17,"id":"78804","lastModified":"1301901928000","name":"Jocelin Donahue","type":"Person","_key":"62482"} +{"label":"Laura Leighton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e5\/4ceeaef85e73d653170000e5\/laura-leighton-profile.jpg","version":17,"id":"78805","lastModified":"1301902212000","name":"Laura Leighton","type":"Person","_key":"62483"} +{"label":"J.T. Petty","version":17,"id":"78806","lastModified":"1301901718000","name":"J.T. Petty","type":"Person","_key":"62484"} +{"label":"Generation Model","description":"No overview found.","id":"15847","runtime":82,"imdbId":"tt1219341","version":381,"lastModified":"1301418588000","genre":"Documentary","title":"Generation Model","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62485"} +{"label":"Kangaroos: Faces in the Mob","description":"Kangaroos: Faces in the Mob is a documentary that follows award-winning Australian filmmakers Dr. Jan Aldenhoven and Glen Carruthers as they live with a mob of Eastern Grey Kangaroos in the Australian bush.","id":"15848","runtime":58,"version":40,"lastModified":"1301908534000","studio":"Acorn Media","genre":"Documentary","title":"Kangaroos: Faces in the Mob","releaseDate":852076800000,"language":"en","type":"Movie","_key":"62486"} +{"label":"Glen Carruthers","version":16,"id":"78824","lastModified":"1301902179000","name":"Glen Carruthers","type":"Person","_key":"62487"} +{"label":"Jan Aldenhoven","version":16,"id":"78825","lastModified":"1301902180000","name":"Jan Aldenhoven","type":"Person","_key":"62488"} +{"label":"The Mummy","description":"An Ancient Egyptian priest called Imhotep is revived when an archaeological expedition finds Imhotep's mummy and one of the archaeologists accidentally reads an ancient life-giving spell. Imhotep escapes from the archaeologists and prowls Cairo seeking the reincarnation of the soul of his ancient lover, Princess Ankh-es-en-amon.","id":"15849","runtime":73,"imdbId":"tt0023245","version":159,"lastModified":"1301903030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f00\/4bc94927017a3c57fe01ff00\/the-mummy-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"The Mummy","releaseDate":-1168473600000,"language":"en","type":"Movie","_key":"62489"} +{"label":"Zita Johann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4cb\/4bfab10d017a3c702b0004cb\/zita-johann-profile.jpg","version":18,"id":"78828","lastModified":"1301901940000","name":"Zita Johann","type":"Person","_key":"62490"} +{"label":"Arthur Byron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a2\/4c64041c7b9aa172da0008a2\/arthur-byron-profile.jpg","version":20,"id":"78829","lastModified":"1301902224000","name":"Arthur Byron","type":"Person","_key":"62491"} +{"label":"Karl Freund","version":31,"id":"70","lastModified":"1299491958000","name":"Karl Freund","type":"Person","_key":"62492"} +{"label":"The Trip","description":"When 19-year-old gay-rights activist Tommy and 24-year-old Alan first meet in 1973, they find themselves on the opposite sides of the political coin...","id":"15850","runtime":95,"imdbId":"tt0250067","version":193,"lastModified":"1301906843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f09\/4bc94927017a3c57fe01ff09\/the-trip-mid.jpg","genre":"Drama","title":"The Trip","releaseDate":1036108800000,"language":"en","type":"Movie","_key":"62493"} +{"label":"Miles Swain","version":16,"id":"146811","lastModified":"1301903094000","name":"Miles Swain","type":"Person","_key":"62494"} +{"label":"Larry Sullivan","version":19,"id":"117087","lastModified":"1301903038000","name":"Larry Sullivan","type":"Person","_key":"62495"} +{"label":"Death to the Supermodels","description":"This sexy comedy finds the world's greatest, most eccentric supermodels gathered on a deserted island for the swimsuit photo shoot from hell","id":"15851","runtime":84,"imdbId":"tt0379754","version":115,"lastModified":"1301908308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f12\/4bc94928017a3c57fe01ff12\/death-to-the-supermodels-mid.jpg","genre":"Comedy","title":"Death to the Supermodels","releaseDate":1132876800000,"language":"en","type":"Movie","_key":"62496"} +{"label":"Joel Silverman","version":16,"id":"78835","lastModified":"1301902242000","name":"Joel Silverman","type":"Person","_key":"62497"} +{"label":"Brooke Burns","version":26,"id":"78837","lastModified":"1301901532000","name":"Brooke Burns","type":"Person","_key":"62498"} +{"label":"Jason Acu\u00f1a","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a4c\/4cf581be5e73d6299a000a4c\/jason-acuna-profile.jpg","version":29,"id":"78840","lastModified":"1301901424000","name":"Jason Acu\u00f1a","type":"Person","_key":"62499"} +{"label":"Marcelle Larice","version":16,"id":"78841","lastModified":"1301902242000","name":"Marcelle Larice","type":"Person","_key":"62500"} +{"label":"Kimberley Davies","version":16,"id":"78842","lastModified":"1301902242000","name":"Kimberley Davies","type":"Person","_key":"62501"} +{"label":"Maria Arc\u00e9","version":16,"id":"78843","lastModified":"1301902242000","name":"Maria Arc\u00e9","type":"Person","_key":"62502"} +{"label":"Kung Fu Panda: Secrets of the Furious Five","description":"Ordered to teach a martial arts class of rambunctious bunny kittens, Po tells stories of each of the Furious Five's pasts","id":"15854","runtime":25,"imdbId":"tt1287845","version":190,"lastModified":"1301902236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f65\/4d477e577b9aa15bb500bf65\/kung-fu-panda-secrets-of-the-furious-five-mid.jpg","genre":"Animation","title":"Kung Fu Panda: Secrets of the Furious Five","releaseDate":1226188800000,"language":"en","type":"Movie","_key":"62503"} +{"label":"Phantom of the Opera","description":"Pit violinist Claudin hopelessly loves rising operatic soprano Christine Dubois (as do baritone Anatole and police inspector Raoul) and secretly aids her career. But Claudin loses both his touch and his job, murders a rascally music publisher in a fit of madness, and has his face etched with acid. Soon, mysterious crimes plague the Paris Opera House, blamed on a legendary \"phantom\".","id":"15855","runtime":92,"imdbId":"tt0036261","version":182,"lastModified":"1301904178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f35\/4bc9492a017a3c57fe01ff35\/phantom-of-the-opera-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"Phantom of the Opera","releaseDate":-831513600000,"language":"en","type":"Movie","_key":"62504"} +{"label":"Nelson Eddy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/150\/4c5185c57b9aa13d4a000150\/nelson-eddy-profile.jpg","version":20,"id":"78847","lastModified":"1301901337000","name":"Nelson Eddy","type":"Person","_key":"62505"} +{"label":"Susanna Foster","version":18,"id":"78848","lastModified":"1301901916000","name":"Susanna Foster","type":"Person","_key":"62506"} +{"label":"Edgar Barrier","version":29,"id":"78849","lastModified":"1302162258000","name":"Edgar Barrier","type":"Person","_key":"62507"} +{"label":"Leo Carrillo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abc\/4be4ebf1017a3c35bb000abc\/leo-carrillo-profile.jpg","version":26,"id":"78850","lastModified":"1301901452000","name":"Leo Carrillo","type":"Person","_key":"62508"} +{"label":"House on Haunted Hill","description":"Frederick Loren has invited five strangers to a party of a lifetime. He is offering each of them $10,000 if they can stay the night in a house. But the house is no ordinary house. This house has reputation for murder. Frederick offers them each a gun for protection. They will all arrived in a hearse and will either leave in it $10,000 richer or leave in it dead!","id":"15856","runtime":75,"imdbId":"tt0051744","trailer":"http:\/\/www.youtube.com\/watch?v=dFtLw4lbgP8","version":179,"lastModified":"1301902507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f46\/4bc9492e017a3c57fe01ff46\/house-on-haunted-hill-mid.jpg","studio":"William Castle Productions","genre":"Comedy","title":"House on Haunted Hill","releaseDate":-343094400000,"language":"en","type":"Movie","_key":"62509"} +{"label":"Carolyn Craig","version":18,"birthday":"-1110243600000","id":"78851","lastModified":"1301901579000","name":"Carolyn Craig","type":"Person","_key":"62510"} +{"label":"Richard Long","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/062\/4c40b6e27b9aa14591000062\/richard-long-profile.jpg","version":27,"birthday":"-1326762000000","id":"78852","lastModified":"1301901594000","name":"Richard Long","type":"Person","_key":"62511"} +{"label":"Carol Ohmart","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/204\/4bf17e60017a3c3213000204\/carol-ohmart-profile.jpg","version":20,"birthday":"-1341190800000","id":"78853","lastModified":"1301902383000","name":"Carol Ohmart","type":"Person","_key":"62512"} +{"label":"Julie Mitchum","version":19,"birthday":"-1749690000000","id":"78855","lastModified":"1301901990000","name":"Julie Mitchum","type":"Person","_key":"62513"} +{"label":"Leona Anderson","version":19,"birthday":"-2674342800000","id":"78856","lastModified":"1301902174000","name":"Leona Anderson","type":"Person","_key":"62514"} +{"label":"Howard Hoffman","version":18,"birthday":"-2403306000000","id":"78857","lastModified":"1301901689000","name":"Howard Hoffman","type":"Person","_key":"62515"} +{"label":"William Castle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/432\/4cdd56ba7b9aa137fe000432\/william-castle-profile.jpg","version":66,"birthday":"-1757466000000","id":"12011","lastModified":"1301901349000","name":"William Castle","type":"Person","_key":"62516"} +{"label":"Earthstorm","description":"A massive asteroid impact on the moon begins causing storms on earth due to the sudden changes in ocean tides. But when further examination is conducted it's discovered that the moon's structure is now entirely unstable -- threatening all life on earth. With time running out, a team of scientists turn to one man, demolitions expert John Redding, in effort to find a solution and secure the moon.","id":"15858","runtime":90,"imdbId":"tt0491764","version":101,"lastModified":"1301907997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f58\/4bc94930017a3c57fe01ff58\/earthstorm-mid.jpg","genre":"Action","title":"Earthstorm","releaseDate":1150070400000,"language":"en","type":"Movie","_key":"62517"} +{"label":"Terry Cunningham","version":18,"id":"78860","lastModified":"1301902136000","name":"Terry Cunningham","type":"Person","_key":"62518"} +{"label":"Amy Price-Francis","version":17,"id":"78861","lastModified":"1301901942000","name":"Amy Price-Francis","type":"Person","_key":"62519"} +{"label":"Matt Gordon","version":20,"id":"43258","lastModified":"1301901608000","name":"Matt Gordon","type":"Person","_key":"62520"} +{"label":"Anna Silk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1c6\/4cf2eff85e73d623860001c6\/anna-silk-profile.jpg","version":19,"id":"78862","lastModified":"1301901641000","name":"Anna Silk","type":"Person","_key":"62521"} +{"label":"Jessica Heafey","version":16,"id":"78863","lastModified":"1301902067000","name":"Jessica Heafey","type":"Person","_key":"62522"} +{"label":"A Moment to Remember","description":"A Moment to Remember is a 2004 South Korean movie based on a 2001 Japanese television drama Pure Soul broadcasted by Yomiuri Telecasting Corporation. The movie was officially released on November 5, 2004 in South Korea.","id":"15859","runtime":144,"imdbId":"tt0428870","trailer":"http:\/\/www.youtube.com\/watch?v=2945","version":75,"lastModified":"1301901949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f61\/4bc94933017a3c57fe01ff61\/a-moment-to-remember-mid.jpg","genre":"Drama","title":"A Moment to Remember","releaseDate":1099612800000,"language":"en","type":"Movie","_key":"62523"} +{"label":"Jong-hak Baek","version":18,"id":"78865","lastModified":"1301901798000","name":"Jong-hak Baek","type":"Person","_key":"62524"} +{"label":"Ye-jin Son","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a7\/4d0577b07b9aa11bc10024a7\/ye-jin-son-profile.jpg","version":36,"id":"86889","lastModified":"1301901209000","name":"Ye-jin Son","type":"Person","_key":"62525"} +{"label":"John H. Lee","version":25,"id":"78866","lastModified":"1301901665000","name":"John H. Lee","type":"Person","_key":"62526"} +{"label":"Dragon Tiger Gate","description":"Dragon Tiger Gate (traditional Chinese: \u9f8d\u864e\u9580; simplified Chinese: \u9f99\u864e\u95e8) is a 2006 Hong Kong martial arts-action film directed by Wilson Yip and featuring fight choreography by Donnie Yen, who also stars in the film. The film is based on the popular Hong Kong manhua, Oriental Heroes, which bears the same Chinese name as the movie.","id":"15860","runtime":90,"imdbId":"tt0482930","version":150,"lastModified":"1301902165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6e\/4bc94934017a3c57fe01ff6e\/dragon-tiger-gate-mid.jpg","genre":"Action","title":"Dragon Tiger Gate","releaseDate":1153958400000,"language":"en","type":"Movie","_key":"62527"} +{"label":"Shawn Yue","biography":"<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \">Shawn Yu Man Lok was born on November 13, 1981. He started out in modeling and made his first movie appearance in an independent film called Leaving Sorrowfully (2001). Yu first gained popularity in Taiwan thanks to his work in the idol TV series Tomorrow, but in Hong Kong he was mainly known for being Candy<a href=\"http:\/\/wiki.d-addicts.com\/Candy_Lo\" tit","version":57,"birthday":"374454000000","id":"78869","birthplace":"Hong Kong","lastModified":"1301901181000","name":"Shawn Yue","type":"Person","_key":"62528"} +{"label":"Framed for Murder","description":"When a woman falsely accused of murdering her husband is released from prison after 8 years, she hires a private investigator, determined to find out who framed her. What she doesn't know, is that the killer is about to do it again.","id":"15861","runtime":0,"imdbId":"tt0878673","version":80,"lastModified":"1301414277000","genre":"Mystery","title":"Framed for Murder","releaseDate":1174176000000,"language":"en","type":"Movie","_key":"62529"} +{"label":"Bachna Ae Haseeno","description":"The film follows the journey of Raj Sharma (Ranbir Kapoor) from the age of 18 to 30 and how he meets three girls at different stages of his life : Mahi (Minissha Lamba) - a small-town girl from Punjab, Radhika (Bipasha Basu) - a model from Mumbai and Gayatri (Deepika Padukone) - a NRI taxi driver and student from Australia.","id":"15864","runtime":148,"imdbId":"tt1182972","trailer":"http:\/\/www.youtube.com\/watch?v=zxH9wBIauiI","version":156,"lastModified":"1301904878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8f\/4bc94936017a3c57fe01ff8f\/bachna-ae-haseeno-mid.jpg","studio":"Yash Raj Films","genre":"Romance","title":"Bachna Ae Haseeno","releaseDate":1218758400000,"language":"en","type":"Movie","_key":"62530"} +{"label":"Ranbir Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d9\/4bf106c5017a3c32120000d9\/ranbir-kapoor-profile.jpg","biography":"Ranbir Kapoor (Hindi: \u0930\u0923\u092c\u0940\u0930 \u0915\u092a\u0942\u0930, born 28 September 1982 in Mumbai, Maharashtra, India) is an Indian actor who appears in Bollywood movies. He first appeared in the 2007 film Saawariya for which he won a Filmfare Best Male Debut Award.\n\nBorn to actors Rishi Kapoor and Neetu Singh, Kapoor is the great grandson of Prithviraj Kapoor and the grandson of actor and filmmaker Raj Kapoor. He is the brother of Riddhima Kapoor and his uncles are Randhir Kapoor and Rajiv Kapoor. Other notable family membe","version":34,"id":"85034","lastModified":"1301901403000","name":"Ranbir Kapoor","type":"Person","_key":"62531"} +{"label":"Minissha Lamba","version":23,"id":"85036","lastModified":"1301902705000","name":"Minissha Lamba","type":"Person","_key":"62532"} +{"label":"Puneet Issar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/375\/4d6c47095e73d66b2b003375\/puneet-issar-profile.jpg","version":20,"id":"110144","lastModified":"1301902821000","name":"Puneet Issar","type":"Person","_key":"62533"} +{"label":"La Zona","description":"In Mexico City, a wealthy compound is surrounded by walls and surveillance system to protect the locals against the violence of the slums. During a stormy night, a billboard falls over the wall and three smalltime thieves cross the border through the breach to rob. They break into a house and kill an old lady; the residents organize militias to chase the delinquents. Two of them and one security guard are murdered by the vigilantes, but the sixteen year old Miguel hides in the basement of the te","id":"15865","runtime":97,"imdbId":"tt1039652","trailer":"http:\/\/www.youtube.com\/watch?v=iukxjrE_xFM","homepage":"http:\/\/www.lazona-lefilm.com\/","version":204,"lastModified":"1301415511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e4\/4d41a8c87b9aa15bbb0037e4\/la-zona-mid.jpg","studio":"Morena Films","genre":"Drama","title":"La Zona","releaseDate":1224374400000,"language":"en","type":"Movie","_key":"62534"} +{"label":"Rodrigo Pl\u00e1","version":17,"id":"78880","lastModified":"1301902143000","name":"Rodrigo Pl\u00e1","type":"Person","_key":"62535"} +{"label":"Alan Ch\u00e1vez","version":17,"id":"78881","lastModified":"1301902143000","name":"Alan Ch\u00e1vez","type":"Person","_key":"62536"} +{"label":"Carlos Bardem","version":27,"id":"78882","lastModified":"1301901951000","name":"Carlos Bardem","type":"Person","_key":"62537"} +{"label":"Marina de Tavira","version":17,"id":"78883","lastModified":"1301902325000","name":"Marina de Tavira","type":"Person","_key":"62538"} +{"label":"Bait Shop","description":"Its Barbershop for Rednecks. Bill is a bait shop owner who has to make a balloon payment of $15,000 or else the bank will close his shop. Unable to make the payment from the proceeds of the shop, Bill must compete in the annual Bass Tournament, which he pathetically loses every year, to win the money.","id":"15866","runtime":85,"imdbId":"tt1176725","version":124,"lastModified":"1301417513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f99\/4bc94937017a3c57fe01ff99\/bait-shop-mid.jpg","studio":"Parallel Pictures","genre":"Comedy","title":"Bait Shop","releaseDate":1220832000000,"language":"en","tagline":"Get Reel!","type":"Movie","_key":"62539"} +{"label":"Jim R. Coleman","version":17,"id":"78885","lastModified":"1301902133000","name":"Jim R. Coleman","type":"Person","_key":"62540"} +{"label":"Billy Ray Cyrus","version":32,"id":"78887","lastModified":"1301901096000","name":"Billy Ray Cyrus","type":"Person","_key":"62541"} +{"label":"Mary Rachel Dudley","version":20,"id":"78888","lastModified":"1301902010000","name":"Mary Rachel Dudley","type":"Person","_key":"62542"} +{"label":"C.B. Harding","version":19,"id":"118873","lastModified":"1301902633000","name":"C.B. Harding","type":"Person","_key":"62543"} +{"label":"Interiors","description":"Homage to Ingmar Bergman in this family drama involving a fashionable Long Island interior designer who tries to impose her overbearing, critical standards on her husband and her three grown daughters. The film is a realistic look at the relationships among one artistically-oriented family; one daughter is a successful writer; the second is looking for an artistic outlet; and the third is an actress. The mother has been deserted by her husband, their father. She thinks and hopes they may reconci","id":"15867","runtime":0,"imdbId":"tt0077742","version":264,"lastModified":"1301906468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa7\/4bc94937017a3c57fe01ffa7\/interiors-mid.jpg","genre":"Drama","title":"Interiors","releaseDate":270864000000,"language":"en","type":"Movie","_key":"62544"} +{"label":"Cheaters","id":"15868","runtime":0,"imdbId":"tt0270118","version":161,"lastModified":"1302040820000","genre":"Drama","title":"Cheaters","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62545"} +{"label":"Cheaters","description":"In the fall of 1994, a teacher at Chicago's run-down Steinmetz High recruits seven students for an academic decathlon team. They work long hours, preparing for the February regional event, won for ten straight years by a privileged, preppy school. Steinmetz finishes just well enough to be invited to the state meet.","id":"15869","runtime":108,"imdbId":"tt0218094","version":154,"lastModified":"1302040663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fac\/4bc94937017a3c57fe01ffac\/cheaters-mid.jpg","studio":"De Passe Entertainment","genre":"Comedy","title":"Cheaters","releaseDate":958780800000,"language":"en","type":"Movie","_key":"62546"} +{"label":"UFC: Ultimate Comebacks","description":"UFC's first blu ray release will be a \"best of comeback\" fights in which one fighter is getting beat and ends up winning in the end. 5 of them were also released on the \"Best of 2007\" dvd set and only 2 of them are unavailable anywhere due to Ultimate Fight Night events not being released.","id":"15871","runtime":124,"version":114,"lastModified":"1301418063000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb9\/4bc94938017a3c57fe01ffb9\/ufc-ultimate-comebacks-mid.jpg","studio":"First Look Pictures","genre":"Sports Film","title":"UFC: Ultimate Comebacks","releaseDate":1226966400000,"language":"en","type":"Movie","_key":"62547"} +{"label":"Russell Brand: Live","description":"At the Shepherd's Bush Empire, Russell Brand talks about sex and the ridiculous wording of tabloid newspaper stories.","id":"15872","runtime":60,"imdbId":"tt1300370","version":47,"lastModified":"1300980216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc7\/4bc94938017a3c57fe01ffc7\/russell-brand-live-mid.jpg","genre":"Comedy","title":"Russell Brand: Live","releaseDate":1163980800000,"language":"en","type":"Movie","_key":"62548"} +{"label":"The Bridge at Remagen","description":"In March of 1945, as the War in Europe is coming to a close, fighting erupts between German and American troops at the last remaining bridgehead across the Rhine.","id":"15873","runtime":117,"imdbId":"tt0064110","trailer":"http:\/\/www.youtube.com\/watch?v=iD8AxfE7ICA","version":144,"lastModified":"1301903659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a1\/4c5e9baa5e73d63a6f0008a1\/the-bridge-at-remagen-mid.jpg","studio":"Wolper Organization","genre":"Action","title":"The Bridge at Remagen","releaseDate":-16329600000,"language":"en","type":"Movie","_key":"62549"} +{"label":"Fritz Ford","version":17,"id":"78894","lastModified":"1301902362000","name":"Fritz Ford","type":"Person","_key":"62550"} +{"label":"VeggieTales: An Easter Carol","description":"Cavis and Millward (Bob & Larry) and Hope the Music Box Angel voiced by Grammy Award winning artist Rebecca St. James must convince Nezzer that Easter is about much more than candy and eggs.","id":"15874","runtime":49,"imdbId":"tt0410839","version":209,"lastModified":"1301906468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd4\/4bc9493c017a3c57fe01ffd4\/veggietales-an-easter-carol-mid.jpg","genre":"Drama","title":"VeggieTales: An Easter Carol","releaseDate":1076371200000,"language":"en","type":"Movie","_key":"62551"} +{"label":"Donovan's Reef","description":"'Guns' Donovan prefers carousing with his pals Doc Dedham and 'Boats' Gilhooley, until Dedham's high-society daughter Amelia shows up in their South Seas paradise.","id":"15875","runtime":108,"imdbId":"tt0057007","version":164,"lastModified":"1301904177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdd\/4bc9493c017a3c57fe01ffdd\/donovan-s-reef-mid.jpg","studio":"John Ford Productions","genre":"Action","title":"Donovan's Reef","releaseDate":-206928000000,"language":"en","type":"Movie","_key":"62552"} +{"label":"Elizabeth Allen","version":23,"id":"78896","lastModified":"1301901858000","name":"Elizabeth Allen","type":"Person","_key":"62553"} +{"label":"Jacqueline Malouf","version":17,"id":"78897","lastModified":"1301901864000","name":"Jacqueline Malouf","type":"Person","_key":"62554"} +{"label":"Cherylene Lee","version":17,"id":"78898","lastModified":"1301901864000","name":"Cherylene Lee","type":"Person","_key":"62555"} +{"label":"Jeffrey Byron","version":20,"id":"78899","lastModified":"1301902212000","name":"Jeffrey Byron","type":"Person","_key":"62556"} +{"label":"The Enemy Below","description":"The American destroyer escort, the USS Haynes commanded by Robert Mitchum, detects a German U-Boat, commanded by Curt J\u00fcrgens, resulting in a prolonged, deadly battle of wits.","id":"15876","runtime":97,"imdbId":"tt0050356","version":137,"lastModified":"1301903134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4a\/4d7faed07b9aa1023b003a4a\/the-enemy-below-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"The Enemy Below","releaseDate":-379296000000,"language":"en","type":"Movie","_key":"62557"} +{"label":"Kurt Kreuger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57d\/4c6d5dd47b9aa13ab900057d\/kurt-kreuger-profile.jpg","version":19,"id":"78901","lastModified":"1301901859000","name":"Kurt Kreuger","type":"Person","_key":"62558"} +{"label":"The Sky Crawlers","description":"Youngsters called Kildren, who are destined to live eternally in their adolescence. The Kildren are conscious that every day could be the last, because they fight a war as entertainment, organized and operated by adults. But as they embrace the reality they are faced with, they live their day-to-day lives to the full.","id":"15877","runtime":121,"imdbId":"tt1056437","homepage":"http:\/\/sky.crawlers.jp\/tsushin\/","version":166,"lastModified":"1301903134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/013\/4bc94940017a3c57fe020013\/sukai-kurora-mid.jpg","studio":"Nippon Film Development and Finance Inc.","genre":"Animation","title":"The Sky Crawlers","releaseDate":1220313600000,"language":"en","type":"Movie","_key":"62559"} +{"label":"Bryce Hitchcock","version":21,"id":"78906","lastModified":"1301902019000","name":"Bryce Hitchcock","type":"Person","_key":"62560"} +{"label":"A Snoodle's Tale","description":"Hear the touching story of Snoodle Doo, a lovable little character who learns not to be discouraged by others. In his creator's eyes he is wonderful and talented! Children of all ages will learn a valuable lesson in self-worth in memorable Suessical-style rhyme. In \"Dr. Jiggle & Mr. Sly,\" the Veggies learn to be be happy with how we are made. ","id":"15878","runtime":53,"imdbId":"tt0415280","homepage":"http:\/\/bigidea.com","version":81,"lastModified":"1301904605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bc94943017a3c57fe02001d\/a-snoodle-s-tale-mid.jpg","title":"A Snoodle's Tale","releaseDate":1084147200000,"language":"en","type":"Movie","_key":"62561"} +{"label":"Russell Brand: Doing Life","description":"Russell Brand displays his distinctive sense of humour live at Hackney Empire.","id":"15879","runtime":76,"imdbId":"tt1294207","version":82,"lastModified":"1301905625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc94944017a3c57fe020026\/russell-brand-doing-life-live-mid.jpg","genre":"Comedy","title":"Russell Brand: Doing Life","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"62562"} +{"label":"Mick Thomas","version":16,"id":"147115","lastModified":"1301903091000","name":"Mick Thomas","type":"Person","_key":"62563"} +{"label":"VeggieTales: Are You My Neighbor?","description":"The story of the Good Samaritan is brought to life in the \"Tale of Two Cities\". Children learn that loving your neighbor means helping those in need - even if they don't live next door! In \"The Gourds Must Be Crazy,\" join the USS Applepies crew as they boldly go where no Veggies have gone before! This sci-fi spoof shows kids that \"loving your neighbor\" means appreciating those who are different.","id":"15880","runtime":30,"imdbId":"tt0284604","homepage":"http:\/\/www.bigidea.com","version":61,"lastModified":"1301906734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4bc94944017a3c57fe02002f\/veggietales-are-you-my-neighbor-mid.jpg","studio":"Big Idea Productions","genre":"Animation","title":"VeggieTales: Are You My Neighbor?","releaseDate":1142294400000,"language":"en","type":"Movie","_key":"62564"} +{"label":"VeggieTales: Dave and the Giant Pickle","description":"Have you ever felt too small to do a really BIG job? That's what a little shepherd boy named Dave feels when his big brothers head off to defend their country, leaving him behind with the sheep. They're in for a surprise when they find out their foe is a 9-foot pickle! But wait! Who's that running out to challenge the mighty warrior? ...could it be? ...Dave?!? ","id":"15881","runtime":0,"version":185,"lastModified":"1301905186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4bc94945017a3c57fe020038\/veggietales-dave-and-the-giant-pickle-mid.jpg","title":"VeggieTales: Dave and the Giant Pickle","releaseDate":820454400000,"language":"en","type":"Movie","_key":"62565"} +{"label":"VeggieTales: Duke and the Great Pie War","description":"Meet sweet Princess Petunia as the Veggie friends get medieval in this timeless story of love, courage, and flying pies! Sweet Petunia, a charming young rhubarb, is forced to flee her home and live in a tree stump in a foreign land! When the Duke (Larry the Cucumber) learns of the Princess's plight, he risks his life to help her and learns that true love means thinking of others first.","id":"15882","runtime":0,"version":216,"lastModified":"1301906468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4bc94945017a3c57fe020041\/veggietales-duke-and-the-great-pie-war-mid.jpg","genre":"Family","title":"VeggieTales: Duke and the Great Pie War","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62566"} +{"label":"VeggieTales: Esther The Girl Who Became Queen","description":"The king needs a new queen, and a small town girl named Esther has been chosen! When Esther wakes up with the weight of the world on her shoulders and the fate of her people in her hands, can she find the courage to do what's right? Filled with the drama, humor, and great music, the story of Queen Esther teaches kids that you never need to be afraid to do what's right!","id":"15883","runtime":30,"imdbId":"tt0284605","version":255,"lastModified":"1301904474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4bc94946017a3c57fe02004a\/veggietales-esther-the-girl-who-became-queen-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales: Esther The Girl Who Became Queen","releaseDate":946684800000,"language":"en","type":"Movie","_key":"62567"} +{"label":"VeggieTales: Gideon Tuba Warrior","description":"Gideon is the amazing story based on one of the greatest biblical heroes of all time - a cucumber chosen to defend his people against an army of 30,000 excessively hairy pickles! Accompanied by a mere six carrots and six peas with trumpets, drums, tubas, trombones, and flashlights... will Gideon be able to stand against a mighty army of thousands? Learn about having true courage and trusting God!","id":"15884","runtime":45,"imdbId":"tt0843851","version":61,"lastModified":"1301908491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/053\/4bc94946017a3c57fe020053\/veggietales-gideon-tuba-warrior-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales: Gideon Tuba Warrior","releaseDate":1162598400000,"language":"en","type":"Movie","_key":"62568"} +{"label":"Brian Roberts","version":18,"id":"80677","lastModified":"1301902504000","name":"Brian Roberts","type":"Person","_key":"62569"} +{"label":"VeggieTales - God Wants Me To Forgive Them","description":"A three-hour boat tour takes a turn for the worse when first mate Larry crashes into an uncharted tropical island! Can Skipper Bob and the passengers forgive Larry for making such a huge blunder? Discover the real reasons God wants us to forgive!\n","id":"15885","runtime":30,"imdbId":"tt0284606","version":54,"lastModified":"1301906603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05c\/4bc94947017a3c57fe02005c\/veggietales-god-wants-me-to-forgive-them-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales - God Wants Me To Forgive Them","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62570"} +{"label":"VeggieTales: Josh and the Big Wall","description":"Surrounded by huge walls and bristling with really annoying little peas, no one gets to the Promised Land without going through Jericho first! But how? Joshua has God's directions, but they sound kind of ... weird. In the end, they have to decide whether it's better to do things their way or God's way!","id":"15886","runtime":30,"imdbId":"tt0284607","version":129,"lastModified":"1301906738000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4bc94947017a3c57fe020065\/veggietales-josh-and-the-big-wall-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales: Josh and the Big Wall","releaseDate":1234224000000,"language":"en","type":"Movie","_key":"62571"} +{"label":"VeggieTales: King George and the Ducky","description":"Once upon a time there lived a king. Unlike other kings, King George spends most of his time ... in the bathtub! That's where he plays with his favorite toy: his rubber ducky. But one ducky isn't enough for King George. He wants ALL the duckies in the whole kingdom! Discover what happens when this king makes a huge mistake: he decides that the most important person in the world is himself!","id":"15887","runtime":30,"imdbId":"tt0284608","version":231,"lastModified":"1301908145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4bc94948017a3c57fe02006e\/veggietales-king-george-and-the-ducky-mid.jpg","studio":"Big Idea Productions","genre":"Family","title":"VeggieTales: King George and the Ducky","releaseDate":946684800000,"language":"en","type":"Movie","_key":"62572"} +{"label":"Fishtales","description":"A Greek History Professor & his daughter travel to a Greek Island for one last chance to finish his thesis on ancient love spells before he loses his research grant. His daughter attempts to match her father with the local women without sucess until she meets a beautiful Mermaid with whose help the Professor might finally find true love for himself.\n","id":"15888","runtime":94,"imdbId":"tt0918628","version":107,"lastModified":"1301907997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/073\/4bc94948017a3c57fe020073\/fishtales-mid.jpg","studio":"Arokaria","genre":"Comedy","title":"Fishtales","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"62573"} +{"label":"Amber Savva","version":19,"id":"86464","lastModified":"1301902676000","name":"Amber Savva","type":"Person","_key":"62574"} +{"label":"VeggieTales: Lessons From The Sock Drawer","description":"Edmund's pet hamster disappears after he accidentally leaves the top off its cage, so he writes to Bob & Larry for advice. Find out how Larry helps poor Edmund with his hamster problem as we learn that \"a happy heart is good medicine and a cheerful mind works healing.\" Proverbs 17:22","id":"15889","runtime":79,"imdbId":"tt1355611","version":55,"lastModified":"1301906602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4bc94948017a3c57fe02007c\/veggietales-lessons-from-the-sock-drawer-mid.jpg","genre":"Animation","title":"VeggieTales: Lessons From The Sock Drawer","releaseDate":1209340800000,"language":"en","type":"Movie","_key":"62575"} +{"label":"VeggieTales: Lyle the Kindly Viking","description":"Archibald Aparagus and the French Peas attempt to produce \"the world's first all-vegetable staging of Shakespeare's Hamlet,\" the first-ever \"Classy Songs with Larry,\" and the world premiere of Gilbert and Sullivan's lost musical: Lyle the Kindly Viking!","id":"15890","runtime":0,"version":136,"lastModified":"1301286013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/085\/4bc94949017a3c57fe020085\/veggietales-lyle-the-kindly-viking-mid.jpg","genre":"Family","title":"VeggieTales: Lyle the Kindly Viking","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62576"} +{"label":"VeggieTales: Madame Blueberry","description":"This is the story of a very blue berry. Why so blue? Because Madame Blueberry wants MORE STUFF. Sure, she has everything she needs - good friends, plenty of food, a nice treehouse to live in - but some of her friends have a lot more stuff than she does. Join Madame Blueberry in learning that \"being greedy makes you grumpy -- but a thankful heart is a happy heart!\"","id":"15891","runtime":30,"imdbId":"tt0500166","version":141,"lastModified":"1301906064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4bc94949017a3c57fe02008f\/veggietales-madame-blueberry-mid.jpg","studio":"Big Idea Productions","genre":"Family","title":"VeggieTales: Madame Blueberry","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62577"} +{"label":"VeggieTales- Minnesota Cuke and the Search for Samson's Hairbrush","description":"Who will find the legendary hairbrush of Sampson? Trek accross the Globe from Moose Lake to Malta in this exciting adventure. See how Minnesota Cuke learns a lesson in dealing with bullies, and discovers the true source of Sampson's strength! ","id":"15892","runtime":43,"imdbId":"tt0471422","version":248,"lastModified":"1301906012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/098\/4bc94949017a3c57fe020098\/veggietales-minnesota-cuke-and-the-search-for-samson-s-hairbrush-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales- Minnesota Cuke and the Search for Samson's Hairbrush","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"62578"} +{"label":"VeggieTales: Moe and the Big Exit","description":"God gives Moe important directions to lead his people to freedom. Goin' undercover as The Lone Stranger, Moe implores the Mayor of Dodgeball city, \"Let My People Go!\" When the mayor refuses, a whole heap `o trouble comes to town. Can Moe keep followin' God's directions and help free his people from bondage? They need to git outa Dodgeball once`n fer all!","id":"15893","runtime":52,"imdbId":"tt1000730","version":352,"lastModified":"1301907997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a1\/4bc9494a017a3c57fe0200a1\/veggietales-moe-and-the-big-exit-mid.jpg","title":"VeggieTales: Moe and the Big Exit","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62579"} +{"label":"See you in Vegas","description":"A movie about Hans Klok and his Vegas adventure","id":"15894","runtime":81,"imdbId":"tt1114730","version":103,"lastModified":"1301907253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0aa\/4bc9494a017a3c57fe0200aa\/see-you-in-vegas-mid.jpg","genre":"Documentary","title":"See you in Vegas","releaseDate":1193875200000,"language":"en","type":"Movie","_key":"62580"} +{"label":"Hans Klok","version":18,"id":"78913","lastModified":"1301904136000","name":"Hans Klok","type":"Person","_key":"62581"} +{"label":"Deathstalker","description":"The warrior Deathstalker is tasked by an old witch lady to obtain and unite the three powers of creation - a chalice, an amulet, and a sword - lest the evil magician Munkar get them and use them for nefarious purposes. After obtaining the sword, Deathstalker joins with other travelers going to the Big Tournament to determine the strongest warrior. The false king holds the true princess in captivity, and plots to have Deathstalker killed, and Deathstalker must fight to free the princess.","id":"15895","runtime":80,"imdbId":"tt0087127","version":77,"lastModified":"1301906064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b3\/4bc9494a017a3c57fe0200b3\/deathstalker-mid.jpg","genre":"Action","title":"Deathstalker","releaseDate":431308800000,"language":"en","tagline":"Journey to an age of awesome magic.","type":"Movie","_key":"62582"} +{"label":"Rick Hill","version":21,"id":"78912","lastModified":"1301901934000","name":"Rick Hill","type":"Person","_key":"62583"} +{"label":"Barbi Benton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/60d\/4c5b1c9f7b9aa151f600060d\/barbi-benton-profile.jpg","version":19,"id":"105207","lastModified":"1301902425000","name":"Barbi Benton","type":"Person","_key":"62584"} +{"label":"Victor Bo","version":18,"id":"105208","lastModified":"1301902918000","name":"Victor Bo","type":"Person","_key":"62585"} +{"label":"Bernard Erhard","version":18,"id":"105209","lastModified":"1301902918000","name":"Bernard Erhard","type":"Person","_key":"62586"} +{"label":"James Sbardellati","version":21,"id":"86194","lastModified":"1301902561000","name":"James Sbardellati","type":"Person","_key":"62587"} +{"label":"Unstable Fables: 3 Pigs & a Baby","description":"When the three pigs find a tiny wolf cub on their doorstep, they decide to raise him as their own, unaware that they've played right into the plan of a special-ops team of wolves. As the newest addition to their family, Lucky grows into his teens not knowing his history, his role in the wolves plan or the difficult choice he will have to make about the family that raised him.","id":"15898","runtime":78,"imdbId":"tt1086797","version":100,"lastModified":"1301904271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4bc9494f017a3c57fe0200d2\/unstable-fables-3-pigs-a-baby-mid.jpg","title":"Unstable Fables: 3 Pigs & a Baby","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62588"} +{"label":"The Occult History of the Third Reich","description":"Four volume documentary set (\"Adolf Hitler\", \"The SS Blood and Soil\", \"The Enigma of the Swastika\", and \"Himmler The Mystic\") containing mainly B&W as well as some color archival footage, with narration explaining the influences of alternative belief systems (occult, paganism, mysticism, etc) on the Nazi ideology and Hitler's personal philosophy. Also documents the history and development of the ideas and symbols that would be used along with eugenicist racial politics to perpetrate the murder a","id":"15899","runtime":155,"imdbId":"tt0228660","version":133,"lastModified":"1301902727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e0\/4bc94950017a3c57fe0200e0\/the-occult-history-of-the-third-reich-mid.jpg","studio":"Castle Lamancha Co.","genre":"Documentary","title":"The Occult History of the Third Reich","releaseDate":915148800000,"language":"en","type":"Movie","_key":"62589"} +{"label":"Dave Flitton","version":18,"id":"138766","lastModified":"1301902508000","name":"Dave Flitton","type":"Person","_key":"62590"} +{"label":"Faces of Death II","description":"No overview found.","id":"15900","runtime":0,"imdbId":"tt0085518","version":122,"lastModified":"1301903848000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e9\/4bc94950017a3c57fe0200e9\/faces-of-death-2-mid.jpg","genre":"Horror","title":"Faces of Death II","releaseDate":347155200000,"language":"en","type":"Movie","_key":"62591"} +{"label":"Faces of Death III","description":"No overview found.","id":"15901","runtime":0,"imdbId":"tt0121261","version":202,"lastModified":"1301903724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f2\/4bc94951017a3c57fe0200f2\/faces-of-death-3-mid.jpg","title":"Faces of Death III","releaseDate":479260800000,"language":"en","type":"Movie","_key":"62592"} +{"label":"Faces of Death IV","description":"No overview found.","id":"15902","runtime":0,"imdbId":"tt0121262","version":189,"lastModified":"1301904010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fb\/4bc94951017a3c57fe0200fb\/faces-of-death-4-mid.jpg","title":"Faces of Death IV","releaseDate":659750400000,"language":"en","type":"Movie","_key":"62593"} +{"label":"Faces of Death V","description":"No overview found.","id":"15903","runtime":0,"imdbId":"tt0160303","version":152,"lastModified":"1301903865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d5\/4d94e6b95e73d6225d0022d5\/faces-of-death-v-mid.jpg","title":"Faces of Death V","releaseDate":813283200000,"language":"en","type":"Movie","_key":"62594"} +{"label":"Faces of Death VI","description":"No overview found.","id":"15904","runtime":0,"imdbId":"tt0223250","version":180,"lastModified":"1301904941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/104\/4bc94952017a3c57fe020104\/faces-of-death-6-mid.jpg","title":"Faces of Death VI","releaseDate":844387200000,"language":"en","type":"Movie","_key":"62595"} +{"label":"Barbie and the Magic of Pegasus","description":"Princess Annika (Barbie) escapes the clutches of the evil wizard, explores the wonders of Cloud Kingdom, and teams up with a magnificent winged horse - who turns out to be her sister, Princess Brietta - to defeat the wizard and break the spells that imprisoned her family.","id":"15906","runtime":83,"imdbId":"tt0480345","version":184,"lastModified":"1301902896000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/122\/4bc94954017a3c57fe020122\/barbie-and-the-magic-of-pegasus-mid.jpg","genre":"Action","title":"Barbie and the Magic of Pegasus","releaseDate":1128470400000,"language":"en","type":"Movie","_key":"62596"} +{"label":"Duma","description":"An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.","id":"15907","runtime":100,"imdbId":"tt0361715","homepage":"http:\/\/dumamovie.warnerbros.com\/","version":203,"lastModified":"1301903638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b06\/4d1b6a4c5e73d66598000b06\/duma-mid.jpg","studio":"Warner Bros Pictures","genre":"Action","title":"Duma","releaseDate":1114128000000,"language":"en","type":"Movie","_key":"62597"} +{"label":"Alex Michaeletos","version":16,"id":"111176","lastModified":"1301902633000","name":"Alex Michaeletos","type":"Person","_key":"62598"} +{"label":"Mary Makhatho","version":16,"id":"111177","lastModified":"1301902888000","name":"Mary Makhatho","type":"Person","_key":"62599"} +{"label":"Nthabiseng Kenoshi","version":16,"id":"111178","lastModified":"1301902633000","name":"Nthabiseng Kenoshi","type":"Person","_key":"62600"} +{"label":"Jennifer Steyn","version":18,"id":"111179","lastModified":"1301902561000","name":"Jennifer Steyn","type":"Person","_key":"62601"} +{"label":"Nicky Rebello","version":17,"id":"111180","lastModified":"1301902561000","name":"Nicky Rebello","type":"Person","_key":"62602"} +{"label":"Verf\u00fchrung in 6 G\u00e4ngen","description":"No overview found.","id":"15908","runtime":85,"imdbId":"tt0376301","version":35,"lastModified":"1300980222000","studio":"Ziegler Film","genre":"Comedy","title":"Verf\u00fchrung in 6 G\u00e4ngen","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"62603"} +{"label":"Kermit's Swamp Years","description":"At 12 years old, Kermit the Frog and best friends Goggles and Croaker travel outside their homes in the swamps of the Deep South to do something extraordinary with their lives.","id":"15909","runtime":82,"imdbId":"tt0304283","version":137,"lastModified":"1301908414000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4bc94956017a3c57fe020134\/kermit-s-swamp-years-mid.jpg","genre":"Family","title":"Kermit's Swamp Years","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62604"} +{"label":"Post Impact","description":"Meteor Bay-Leder 7 struck earth on October 18th, 2012. Causing earthquakes, tidal waves, and a dust cloud that soon covered most of the Northern hemisphere, it changed the face of our planet forever.","id":"15910","runtime":90,"imdbId":"tt0362942","version":303,"lastModified":"1301905839000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/139\/4bc94956017a3c57fe020139\/post-impact-mid.jpg","genre":"Action","title":"Post Impact","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"62605"} +{"label":"Joanna Taylor","version":19,"id":"78926","lastModified":"1301901718000","name":"Joanna Taylor","type":"Person","_key":"62606"} +{"label":"The Village Barbershop","description":"A fading smalltime barber is forced to hire the last person on earth he'd want working in his shop - a woman.","id":"15911","runtime":99,"imdbId":"tt0859644","homepage":"http:\/\/www.thevillagebarbershop.com\/","version":174,"lastModified":"1301615706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4bc94957017a3c57fe020142\/the-village-barbershop-mid.jpg","genre":"Comedy","title":"The Village Barbershop","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62607"} +{"label":"The Square","description":"Escaping the monotony of a loveless marriage, Raymond Yale becomes entangled in an affair with the beautiful and troubled Carla. Ray's moral limits are tested when Carla presents him with the proceeds of her controlling husband's latest crime. This is their chance: Take the money and run... If only it were that simple. ","id":"15912","runtime":105,"imdbId":"tt1085507","trailer":"http:\/\/www.youtube.com\/watch?v=3348","homepage":"http:\/\/www.squarethemovie.com\/","version":285,"lastModified":"1301902704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4c8171527b9aa13b6900004a\/the-square-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Crime","title":"The Square","releaseDate":1217462400000,"language":"en","type":"Movie","_key":"62608"} +{"label":"Claire van der Boom","version":21,"id":"114843","lastModified":"1301901718000","name":"Claire van der Boom","type":"Person","_key":"62609"} +{"label":"Un Monde \u00e0 nous","description":"No overview found.","id":"15913","runtime":91,"imdbId":"tt1266115","version":30,"lastModified":"1300980223000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15d\/4bc9495d017a3c57fe02015d\/un-monde-a-nous-mid.jpg","title":"Un Monde \u00e0 nous","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62610"} +{"label":"The Anniversary","description":"Cid is dumped by his girlfriend on the evening of their 15th anniversary due to his failure to propose. One year later, Cid is still reeling from the break up & deals with the social stigmas of being in your 30's and single. In his struggle to find his identity outside of a relationship, Cid balances the influences of Myron and Shannon, a happy married couple, & Manolis, a devout anti-monogamist.","id":"15914","runtime":0,"imdbId":"tt1388325","version":266,"lastModified":"1301615580000","studio":"Death Ray Films","title":"The Anniversary","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62611"} +{"label":"Jason Contini","version":16,"id":"78927","lastModified":"1301902242000","name":"Jason Contini","type":"Person","_key":"62612"} +{"label":"Manolis Zontanos","version":16,"id":"78928","lastModified":"1301902242000","name":"Manolis Zontanos","type":"Person","_key":"62613"} +{"label":"Ryan Patrick McGuffey","version":16,"id":"78929","lastModified":"1301902242000","name":"Ryan Patrick McGuffey","type":"Person","_key":"62614"} +{"label":"Ashley Oxford","version":16,"id":"78930","lastModified":"1301902242000","name":"Ashley Oxford","type":"Person","_key":"62615"} +{"label":"John Campea","version":19,"id":"78932","lastModified":"1301902242000","name":"John Campea","type":"Person","_key":"62616"} +{"label":"Le Pornographe","description":"Jacques Laurent est un r\u00e9alisateur de films pornographiques vieillissant et quelque peu n\u00e9vros\u00e9, qui a connu son heure de gloire dans les ann\u00e9es soixante-dix. Aujourd'hui, il est forc\u00e9 de reprendre son activit\u00e9 suite \u00e0 des probl\u00e8mes financiers.","id":"15915","runtime":108,"imdbId":"tt0262699","version":42,"lastModified":"1301904712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/166\/4bc9495d017a3c57fe020166\/le-pornographe-mid.jpg","genre":"Drama","title":"Le Pornographe","releaseDate":978307200000,"language":"en","type":"Movie","_key":"62617"} +{"label":"Ovidie","version":16,"id":"146436","lastModified":"1301903095000","name":"Ovidie","type":"Person","_key":"62618"} +{"label":"Bertrand Bonello","version":18,"id":"146438","lastModified":"1301903087000","name":"Bertrand Bonello","type":"Person","_key":"62619"} +{"label":"Angel's Egg","description":"Angel's Egg (\u5929\u4f7f\u306e\u305f\u307e\u3054 Tenshi no Tamago?) is a Japanese anime feature film produced by Tokuma Shoten in 1985. A collaboration between popular artist Yoshitaka Amano and director Mamoru Oshii, it incorporates surrealistic and existentialist qualities. It uses almost no little dialogue, making it a commonly cited example of progressive anime.","id":"15916","runtime":71,"imdbId":"tt0208502","version":52,"lastModified":"1301907393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/173\/4bc9495e017a3c57fe020173\/tenshi-no-tamago-mid.jpg","genre":"Animation","title":"Angel's Egg","releaseDate":504057600000,"language":"en","type":"Movie","_key":"62620"} +{"label":"Devdas","description":"Devdas is sent away by his father so he can improve himself but upon his return his father still doesn\u2019t welcome him back. Devdas and Paro are in love but Paro is a lower cast and is set to be married to an older widower. Devdas is devastated & leaves home. He becomes an alcoholic womanizer and falls in love with a courtesan. Paro tries to get Devdas away from drinking before he self destructs.","id":"15917","runtime":185,"imdbId":"tt0238936","version":138,"lastModified":"1301902528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/180\/4bc9495f017a3c57fe020180\/devdas-mid.jpg","studio":"Eros Entertainment","genre":"Drama","title":"Devdas","releaseDate":1026432000000,"language":"en","type":"Movie","_key":"62621"} +{"label":"Jackie Shroff","version":39,"id":"86014","lastModified":"1301902537000","name":"Jackie Shroff","type":"Person","_key":"62622"} +{"label":"Manoj Joshi","version":30,"id":"86018","lastModified":"1301902516000","name":"Manoj Joshi","type":"Person","_key":"62623"} +{"label":"Ananya Khare","version":20,"id":"128727","lastModified":"1301902794000","name":"Ananya Khare","type":"Person","_key":"62624"} +{"label":"Milind Gunaji","version":21,"id":"128728","lastModified":"1301902794000","name":"Milind Gunaji","type":"Person","_key":"62625"} +{"label":"Tiku Talsania","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35f\/4d6c4a2e5e73d66b2700335f\/tiku-talsania-profile.jpg","version":29,"id":"86228","lastModified":"1301902332000","name":"Tiku Talsania","type":"Person","_key":"62626"} +{"label":"Ava Mukherjee","version":19,"id":"128730","lastModified":"1301903027000","name":"Ava Mukherjee","type":"Person","_key":"62627"} +{"label":"Jaya Bhattacharya","version":20,"id":"128731","lastModified":"1301902794000","name":"Jaya Bhattacharya","type":"Person","_key":"62628"} +{"label":"Sunil Rege","version":20,"id":"128732","lastModified":"1301902761000","name":"Sunil Rege","type":"Person","_key":"62629"} +{"label":"Vijay Crishna","version":20,"id":"128733","lastModified":"1301902761000","name":"Vijay Crishna","type":"Person","_key":"62630"} +{"label":"Amardeep Jha","version":24,"id":"128734","lastModified":"1301903057000","name":"Amardeep Jha","type":"Person","_key":"62631"} +{"label":"Apara Mehta","version":20,"id":"128735","lastModified":"1301902761000","name":"Apara Mehta","type":"Person","_key":"62632"} +{"label":"Muni Jha","version":20,"id":"128736","lastModified":"1301902761000","name":"Muni Jha","type":"Person","_key":"62633"} +{"label":"Radhika Singh","version":20,"id":"128737","lastModified":"1301902761000","name":"Radhika Singh","type":"Person","_key":"62634"} +{"label":"Marty","description":"Marty, a butcher who lives in the Bronx with his mother is unmarried at 34. Good-natured but socially awkward he faces constant badgering from family and friends to get married but has reluctantly resigned himself to bachelorhood. Marty meets Clara, an unattractive school teacher, realising their emotional connection, he promises to call but family and friends try to convince him not to.","id":"15919","runtime":91,"imdbId":"tt0048356","trailer":"http:\/\/www.youtube.com\/watch?v=xIah4s6ePQo","version":164,"lastModified":"1301904177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4bc94960017a3c57fe020197\/marty-mid.jpg","studio":"Hill-Hecht-Lancaster Productions","genre":"Drama","title":"Marty","releaseDate":-464745600000,"language":"en","type":"Movie","_key":"62635"} +{"label":"Betsy Blair","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/123\/4bd724f4017a3c21f2000123\/betsy-blair-profile.jpg","version":30,"id":"78934","lastModified":"1301901456000","name":"Betsy Blair","type":"Person","_key":"62636"} +{"label":"Esther Minciotti","version":21,"id":"78935","lastModified":"1301901776000","name":"Esther Minciotti","type":"Person","_key":"62637"} +{"label":"Augusta Ciolli","version":16,"id":"78936","lastModified":"1301902242000","name":"Augusta Ciolli","type":"Person","_key":"62638"} +{"label":"Joe Mantell","version":18,"id":"78937","lastModified":"1301902361000","name":"Joe Mantell","type":"Person","_key":"62639"} +{"label":"Karen Steele","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/101\/4c24f5c47b9aa14549000101\/karen-steele-profile.jpg","version":23,"id":"15644","lastModified":"1302112815000","name":"Karen Steele","type":"Person","_key":"62640"} +{"label":"Bab\u00ed L\u00e9to","description":"A bittersweet comedy starring the great Vlastimil Brodsk\u00fd as Fanda, an old man who refuses to grow up. Despite pleas from his exasperated wife who wants him to make serious decisions about the future, Fanda ignores the nagging and spends his days seeking amusement and adventure.","id":"15920","runtime":95,"imdbId":"tt0286476","version":42,"lastModified":"1301906718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a0\/4bc94961017a3c57fe0201a0\/babi-leto-mid.jpg","genre":"Comedy","title":"Bab\u00ed L\u00e9to","releaseDate":1075334400000,"language":"en","type":"Movie","_key":"62641"} +{"label":"Starko!","description":"No overview found.","id":"15921","runtime":104,"imdbId":"tt1405401","version":35,"lastModified":"1301907116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a9\/4bc94962017a3c57fe0201a9\/starko-mid.jpg","genre":"Documentary","title":"Starko!","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62642"} +{"label":"Nicolas Sarkozy","version":17,"id":"78938","lastModified":"1301902014000","name":"Nicolas Sarkozy","type":"Person","_key":"62643"} +{"label":"Karl Zero","version":19,"id":"78939","lastModified":"1301902026000","name":"Karl Zero","type":"Person","_key":"62644"} +{"label":"All Roads Lead Home","description":"No overview found.","id":"15922","runtime":108,"imdbId":"tt0821810","version":108,"lastModified":"1301902786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b2\/4bc94963017a3c57fe0201b2\/all-roads-lead-home-mid.jpg","genre":"Drama","title":"All Roads Lead Home","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62645"} +{"label":"Bodyguard: A New Beginning","description":"No overview found.","id":"15923","runtime":95,"imdbId":"tt1081942","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/bodyguard","version":157,"lastModified":"1301902726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bc94964017a3c57fe0201c0\/bodyguard-a-new-beginning-mid.jpg","genre":"Action","title":"Bodyguard: A New Beginning","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62646"} +{"label":"Carl Ng","version":19,"id":"137146","lastModified":"1301902882000","name":"Carl Ng","type":"Person","_key":"62647"} +{"label":"Mark Strange","version":23,"id":"81671","lastModified":"1301902367000","name":"Mark Strange","type":"Person","_key":"62648"} +{"label":"Chee Keong Cheung","version":4,"id":"231084","lastModified":"1301904101000","name":"Chee Keong Cheung","type":"Person","_key":"62649"} +{"label":"633 Squadron","description":"When Norwegian resistance leader Lieutenant Erik Bergman reports the location of a German V-2 rocket fuel plant, the Royal Air Force's 633 Squadron is assigned the mission to destroy it. The plant is in a seemingly-impregnable location beneath an overhanging cliff at the end of a long, narrow fjord lined with anti-aircraft guns. The only way to destroy the plant is by collapsing the cliff on top of it.","id":"15925","runtime":102,"imdbId":"tt0057811","version":183,"lastModified":"1301905119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c9\/4bc94966017a3c57fe0201c9\/633-squadron-mid.jpg","genre":"Action","title":"633 Squadron","releaseDate":-180662400000,"language":"en","type":"Movie","_key":"62650"} +{"label":"John Bonney","version":18,"id":"78941","lastModified":"1301902138000","name":"John Bonney","type":"Person","_key":"62651"} +{"label":"John Church","version":16,"id":"78945","lastModified":"1301902242000","name":"John Church","type":"Person","_key":"62652"} +{"label":"Barbara Archer","version":16,"id":"78946","lastModified":"1301902242000","name":"Barbara Archer","type":"Person","_key":"62653"} +{"label":"Julian Sherrier","version":16,"id":"78947","lastModified":"1301902242000","name":"Julian Sherrier","type":"Person","_key":"62654"} +{"label":"Geoffrey Frederick","version":16,"id":"78948","lastModified":"1301902242000","name":"Geoffrey Frederick","type":"Person","_key":"62655"} +{"label":"Johnny Briggs","version":18,"id":"78950","lastModified":"1301902257000","name":"Johnny Briggs","type":"Person","_key":"62656"} +{"label":"Suzan Farmer","version":23,"id":"81246","lastModified":"1301901775000","name":"Suzan Farmer","type":"Person","_key":"62657"} +{"label":"Walter Grauman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f3e\/4d42736d5e73d65729000f3e\/walter-grauman-profile.jpg","version":22,"id":"101899","lastModified":"1301902437000","name":"Walter Grauman","type":"Person","_key":"62658"} +{"label":"Beer for My Horses","description":"\"Beer for My Horses\" tells the story of two best friends that work together as deputies in a small town. The two defy the Sheriff and head off on an outrageous road trip to save the protagonist's girlfriend from drug lord kidnappers.","id":"15926","runtime":0,"imdbId":"tt1178640","version":199,"lastModified":"1301904379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d2\/4bc94969017a3c57fe0201d2\/beer-for-my-horses-mid.jpg","genre":"Action","title":"Beer for My Horses","releaseDate":1218153600000,"language":"en","type":"Movie","_key":"62659"} +{"label":"A Passage to India","description":"The film is set during the period of growing influence of the Indian independence movement in the British Raj. It begins with the arrival in India of a British woman, Miss Adela Quested (Judy Davis), who is joining her fianc\u00e9, a city magistrate named Ronny Heaslop (Nigel Havers). She and Ronny's mother, Mrs. Moore (Peggy Ashcroft), befriend an Indian doctor, Aziz H. Ahmed (Victor Banerjee).","id":"15927","runtime":163,"imdbId":"tt0087892","trailer":"http:\/\/www.youtube.com\/watch?v=rBSbHInLQ3c","version":239,"lastModified":"1301904515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1df\/4bc9496a017a3c57fe0201df\/a-passage-to-india-mid.jpg","studio":"EMI Films Ltd.","genre":"Drama","title":"A Passage to India","releaseDate":471830400000,"language":"en","type":"Movie","_key":"62660"} +{"label":"Victor Banerjee","version":26,"id":"78951","lastModified":"1301902143000","name":"Victor Banerjee","type":"Person","_key":"62661"} +{"label":"Michael Culver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c9\/4c9f8cfe5e73d6704a0004c9\/michael-culver-profile.jpg","version":29,"id":"47520","lastModified":"1301902354000","name":"Michael Culver","type":"Person","_key":"62662"} +{"label":"Fidibus","description":"Kalle, a nice middleclass kid, who because of a debt and old friendship ends up as a 'fidibus', a gofer, for the hash baron Paten. But only until Paten is anything but innocently jailed and asks Kalle to mind the store while he is gone. No one touches Paten's money, Paten's car or, least of all, Paten's girl, Saby, who is dumber than water.","id":"15928","runtime":105,"imdbId":"tt0481995","version":53,"lastModified":"1301182522000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e8\/4bc9496b017a3c57fe0201e8\/fidibus-mid.jpg","title":"Fidibus","releaseDate":1160697600000,"language":"en","type":"Movie","_key":"62663"} +{"label":"Familien Gregersen","description":"An adaptation of Christian Kampmann's four novels about the two decades from 1954 to 1974 as experienced by the five sons and daughters of the Gregersen family.","id":"15929","runtime":210,"imdbId":"tt0391143","version":27,"lastModified":"1301908513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f1\/4bc9496c017a3c57fe0201f1\/familien-gregersen-mid.jpg","title":"Familien Gregersen","releaseDate":1103241600000,"language":"en","type":"Movie","_key":"62664"} +{"label":"Fighter","description":"Aicha, a high-school student, is a passionate kung fu fighter. Her Turkish parents expect her to get good grades so she can get into medical school, like her brother Ali. But school doesn't inspire her. Defying her family, Aicha starts secretly training at a professional, co-ed kung fu club. A boy, Emil, helps Aicha train for the club championship and they fall in love.","id":"15930","runtime":90,"imdbId":"tt0995029","version":122,"lastModified":"1301905996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fa\/4bc9496c017a3c57fe0201fa\/fighter-mid.jpg","genre":"Drama","title":"Fighter","releaseDate":1197590400000,"language":"en","type":"Movie","_key":"62665"} +{"label":"Natasha Arthy","version":16,"id":"141227","lastModified":"1301902416000","name":"Natasha Arthy","type":"Person","_key":"62666"} +{"label":"Semra Turan","version":16,"id":"141229","lastModified":"1301902406000","name":"Semra Turan","type":"Person","_key":"62667"} +{"label":"Nima Nabipour","version":16,"id":"141230","lastModified":"1301902406000","name":"Nima Nabipour","type":"Person","_key":"62668"} +{"label":"Cyron Bj\u00f8rn Melville","version":17,"id":"112733","lastModified":"1301902651000","name":"Cyron Bj\u00f8rn Melville","type":"Person","_key":"62669"} +{"label":"Molly Blixt Egelind","version":20,"id":"123637","lastModified":"1301902768000","name":"Molly Blixt Egelind","type":"Person","_key":"62670"} +{"label":"Sadi Tekelioglu","version":16,"id":"141231","lastModified":"1301902406000","name":"Sadi Tekelioglu","type":"Person","_key":"62671"} +{"label":"Behruz Banissi","version":16,"id":"141232","lastModified":"1301902406000","name":"Behruz Banissi","type":"Person","_key":"62672"} +{"label":"Denize Karabuda","version":17,"id":"95905","lastModified":"1301902609000","name":"Denize Karabuda","type":"Person","_key":"62673"} +{"label":"Ertugrul Yilan","version":16,"id":"141233","lastModified":"1301902406000","name":"Ertugrul Yilan","type":"Person","_key":"62674"} +{"label":"\u00d6zlem Saglanmak","version":16,"id":"141234","lastModified":"1301902403000","name":"\u00d6zlem Saglanmak","type":"Person","_key":"62675"} +{"label":"Y\u00fcksel Isik","version":16,"id":"141235","lastModified":"1301902415000","name":"Y\u00fcksel Isik","type":"Person","_key":"62676"} +{"label":"Nevin Rasmussen","version":16,"id":"141236","lastModified":"1301902415000","name":"Nevin Rasmussen","type":"Person","_key":"62677"} +{"label":"Mira Sarah Altshul","version":16,"id":"141237","lastModified":"1301902415000","name":"Mira Sarah Altshul","type":"Person","_key":"62678"} +{"label":"Trine Appel","version":16,"id":"141238","lastModified":"1301902415000","name":"Trine Appel","type":"Person","_key":"62679"} +{"label":"Inkasso","description":"Boxing trainer Claus works a second job as a collector for loan shark Holger in order to pay off his own debts. He is assisted by Igor, a 'Jaws'-like tough guy. Trouble arises when Claus falls in love with hot-tempered Laura.","id":"15931","runtime":86,"imdbId":"tt0400538","version":40,"lastModified":"1301908609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/208\/4bc9496e017a3c57fe020208\/inkasso-mid.jpg","title":"Inkasso","releaseDate":1098403200000,"language":"en","type":"Movie","_key":"62680"} +{"label":"Kandidaten","description":"Jonas Bechmann, a defense attorney, is a man of the system. Until the day he himself is accused of murder. Taking matters into his own hands, he throws himself into the hunt for a group of blackmailers who threaten to expose him as the killer. But nothing is what it appears to be, and the blackmail links back to his father's death under mysterious circumstances a year and a half earlier.","id":"15932","runtime":90,"imdbId":"tt1054113","version":57,"lastModified":"1301906470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/221\/4bc94970017a3c57fe020221\/kandidaten-mid.jpg","title":"Kandidaten","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"62681"} +{"label":"Laura Christensen","version":21,"id":"83011","lastModified":"1301902705000","name":"Laura Christensen","type":"Person","_key":"62682"} +{"label":"Birgitte Hjort S\u00f8rensen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00d\/4bca832b017a3c116a00000d\/birgitte-hjort-srensen-profile.jpg","biography":"Birgitte Hjort S\u00f8rensen is a danish actress, she has had minor roles in among other \u00d8rnen (The Eagle) and Kandidaten (The Candidate). She's most famous though in the world of musicals where she in 2007 had a role as Roxie Hart in the musical Chicago at Det Ny Teater (The New Theater), a role she also starred at february the 25th 2008 in the same musical at Cambridge Theater, London.","version":19,"birthday":"387756000000","id":"90514","birthplace":"Denmark","lastModified":"1301902524000","name":"Birgitte Hjort S\u00f8rensen","type":"Person","_key":"62683"} +{"label":"VeggieTales: Abe and the Amazing Promise","description":"Learn the story of Abraham and Sarah as they wait... and wait... and wait... for a promised child. Kids will learn God always keeps His promises, even if we have to wait awhile!","id":"15933","runtime":52,"imdbId":"tt1356548","version":201,"lastModified":"1301908608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4bc94972017a3c57fe020238\/veggietales-abe-and-the-amazing-promise-mid.jpg","genre":"Animation","title":"VeggieTales: Abe and the Amazing Promise","releaseDate":1233964800000,"language":"en","type":"Movie","_key":"62684"} +{"label":"El Cantante","description":"The rise and fall of salsa singer, H\u00e9ctor Lavoe (1946-1993), as told from the perspective of his wife Puchi, who looks back from 2002.","id":"15934","runtime":116,"imdbId":"tt0458522","version":143,"lastModified":"1301903637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4bc94973017a3c57fe020241\/el-cantante-mid.jpg","studio":"Nuyorican Productions","genre":"Documentary","title":"El Cantante","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"62685"} +{"label":"Leon Ichaso","version":21,"id":"78997","lastModified":"1301901713000","name":"Leon Ichaso","type":"Person","_key":"62686"} +{"label":"Bad Eggs","description":"Ben Kinnear and Mike Paddock are two undercover detectives with way too much publicity, who find they can no longer turn a blind eye to the corruption in the police force.","id":"15935","runtime":98,"imdbId":"tt0312409","version":128,"lastModified":"1301904289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24a\/4bc94976017a3c57fe02024a\/bad-eggs-mid.jpg","studio":"The Movie Network","genre":"Comedy","title":"Bad Eggs","releaseDate":1059004800000,"language":"en","type":"Movie","_key":"62687"} +{"label":"Brett Swain","version":17,"id":"78956","lastModified":"1301902067000","name":"Brett Swain","type":"Person","_key":"62688"} +{"label":"Denis Moore","version":16,"id":"78957","lastModified":"1301902067000","name":"Denis Moore","type":"Person","_key":"62689"} +{"label":"Chris Peters","version":16,"id":"78958","lastModified":"1301902067000","name":"Chris Peters","type":"Person","_key":"62690"} +{"label":"Peter Rowsthorn","version":20,"id":"78959","lastModified":"1301902241000","name":"Peter Rowsthorn","type":"Person","_key":"62691"} +{"label":"Lawrence Mooney","version":16,"id":"78960","lastModified":"1301902067000","name":"Lawrence Mooney","type":"Person","_key":"62692"} +{"label":"Gina Riley","version":17,"id":"78961","lastModified":"1301902067000","name":"Gina Riley","type":"Person","_key":"62693"} +{"label":"Andy McPhee","version":16,"id":"78962","lastModified":"1301902067000","name":"Andy McPhee","type":"Person","_key":"62694"} +{"label":"Just Add Water","description":"An offbeat romantic comedy about a decent guy, Ray Tuckby, with a dead-end life in the dead-end town of Trona, CA. After encouragement from a stranger whom he happens upon, Ray begins to dream again. He sheds the parasites in his life, musters the nerve to pursue his childhood love, and finally takes back his community by toppling the local teenage Meth-baron.","id":"15936","runtime":95,"imdbId":"tt0790723","version":194,"lastModified":"1301904291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/253\/4bc94977017a3c57fe020253\/just-add-water-mid.jpg","studio":"Bleeding Hart Films","genre":"Comedy","title":"Just Add Water","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"62695"} +{"label":"Room Service","description":"The Marx Brothers try and put on a play before their landlord finds out that they have run out of money. To confuse the landlord they pretend that the play's author has contracted some terrible disease and can't be moved. Originally a stage play, the setting shows it's origins, but this is vintage Marx Brothers","id":"15938","runtime":78,"imdbId":"tt0030696","version":83,"lastModified":"1301904714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25c\/4bc94978017a3c57fe02025c\/room-service-mid.jpg","genre":"Comedy","title":"Room Service","releaseDate":-986342400000,"language":"en","type":"Movie","_key":"62696"} +{"label":"William A. Seiter","version":26,"id":"108987","lastModified":"1302028606000","name":"William A. Seiter","type":"Person","_key":"62697"} +{"label":"Twins Mission","description":"Twins Mission is a 2007 Hong Kong martial arts-action-comedy film directed by action choreographer Kong Tao-Hoi and staring Gillian Chung, Charlene Choi and Sammo Hung among others. The film is a bit of a spoof of the popularity and success of the Twins and leaves the audience with a cliffhanger ending.","id":"15939","runtime":99,"imdbId":"tt0934949","version":85,"lastModified":"1301904878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/261\/4bc94978017a3c57fe020261\/twins-mission-mid.jpg","studio":"Emperor Motion Pictures","genre":"Action","title":"Twins Mission","releaseDate":1171497600000,"language":"en","type":"Movie","_key":"62698"} +{"label":"Jess Zhang","version":18,"id":"78987","lastModified":"1301902143000","name":"Jess Zhang","type":"Person","_key":"62699"} +{"label":"To-hoi Kong","version":20,"id":"78988","lastModified":"1301901816000","name":"To-hoi Kong","type":"Person","_key":"62700"} +{"label":"Beautiful Creatures","description":"When Petula and Dorothy cover up the accidental murder of one jerk boyfriend, they hatch a hilarious scheme to collect a huge ransom.","id":"15940","runtime":85,"imdbId":"tt0221889","version":95,"lastModified":"1301904033000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26a\/4bc94979017a3c57fe02026a\/beautiful-creatures-mid.jpg","studio":"Arts Council of England","genre":"Comedy","title":"Beautiful Creatures","releaseDate":978307200000,"language":"en","type":"Movie","_key":"62701"} +{"label":"Bill Eagles","version":18,"id":"78992","lastModified":"1301902018000","name":"Bill Eagles","type":"Person","_key":"62702"} +{"label":"Los Borgia","description":"A portrait of the bloody dynasty that spawned a pope, Alexander VI, as well as the role model for Machiavelli's \"The Prince,\" his son Cesare Borgia, and a legend of femme duplicity, daughter Lucrezia Borgia.","id":"15941","runtime":120,"imdbId":"tt0482473","homepage":"http:\/\/www.losborgia.com\/","version":75,"lastModified":"1301907980000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/273\/4bc9497a017a3c57fe020273\/los-borgia-mid.jpg","studio":"Antena 3 Televisi\u00f3n","genre":"Drama","title":"Los Borgia","releaseDate":1160092800000,"language":"en","type":"Movie","_key":"62703"} +{"label":"Sergio Peris-Mencheta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/311\/4c9f05e95e73d6704a000311\/sergio-peris-mencheta-profile.jpg","version":36,"id":"78994","lastModified":"1301901079000","name":"Sergio Peris-Mencheta","type":"Person","_key":"62704"} +{"label":"Antonio Valero","version":17,"id":"78995","lastModified":"1301902143000","name":"Antonio Valero","type":"Person","_key":"62705"} +{"label":"Antonio Hern\u00e1ndez","version":20,"id":"78996","lastModified":"1301901646000","name":"Antonio Hern\u00e1ndez","type":"Person","_key":"62706"} +{"label":"Go Fast","description":"Marek, a crime squad officer, sets out to avenge the death of his partner and best friend, who was killed by drug traffickers. He asks for a posting to a new undercover unit created to infiltrate a drug gang that imports hashish from Morocco using the \"Go Fast\" method. A fleet of high-powered speedboats and cars races across the Mediterranean to Spain and then France, loaded with drugs.","id":"15942","runtime":90,"imdbId":"tt1179855","homepage":"http:\/\/www.gofast-lefilm.com\/","version":126,"lastModified":"1301906351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/285\/4bc9497c017a3c57fe020285\/go-fast-mid.jpg","studio":"EuropaCorp Distribution","genre":"Action","title":"Go Fast","releaseDate":1222819200000,"language":"en","type":"Movie","_key":"62707"} +{"label":"The Shaggy D.A.","description":"Wilby Daniels, a successful lawyer running for District Attorney, suddenly finds himself being transformed into an English sheepdog. Somehow he has to keep his change a secret and find just what is causing it, all the while eluding the local dog catcher.","id":"15943","runtime":91,"imdbId":"tt0075200","version":71,"lastModified":"1301906056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28f\/4bc9497d017a3c57fe02028f\/the-shaggy-d-a-mid.jpg","genre":"Comedy","title":"The Shaggy D.A.","releaseDate":219628800000,"language":"en","type":"Movie","_key":"62708"} +{"label":"The Shaggy Dog","description":"Through an ancient spell, a boy changes into a sheepdog and back again. It seems to happen at inopportune times and the spell can only be broken by an act of bravery.... ","id":"15944","runtime":104,"imdbId":"tt0053271","version":74,"lastModified":"1301418670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/299\/4bc94981017a3c57fe020299\/the-shaggy-dog-mid.jpg","genre":"Comedy","title":"The Shaggy Dog","releaseDate":-340502400000,"language":"en","type":"Movie","_key":"62709"} +{"label":"The Way of War","description":"Paramilitary operative David Wolfe (Gooding Jr.) stumbles upon an international conspiracy connecting presidential cabinet members to a Middle Eastern terrorist plot. Wanting to expose the truth, Wolfe defies orders and returns to the US as an army of one fighting for American security and integrity","id":"15945","runtime":87,"imdbId":"tt1133995","version":152,"lastModified":"1301904826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02e\/4c3f56135e73d608a500002e\/the-way-of-war-mid.jpg","genre":"Action","title":"The Way of War","releaseDate":1235088000000,"language":"en","type":"Movie","_key":"62710"} +{"label":"The Three Caballeros","description":"For Donald's birthday he receives a box with three gifts inside. The gifts, a movie projector, a pop-up book, and a pinata, each take Donald on wild adventures through Mexico and South America.","id":"15947","runtime":69,"imdbId":"tt0038166","trailer":"http:\/\/www.youtube.com\/watch?v=s-P0DPNdZBc","version":206,"lastModified":"1301903776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a9\/4ce9e4037b9aa17c8d0005a9\/the-three-caballeros-mid.jpg","studio":"Walt Disney Feature Animation","genre":"Animation","title":"The Three Caballeros","releaseDate":-788918400000,"language":"en","type":"Movie","_key":"62711"} +{"label":"Aurora Miranda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/641\/4bf3e65a017a3c320d000641\/aurora-miranda-profile.jpg","biography":"Born sixteen years after her sister -- entertainer Carmen Miranda. Aurora is probably best known for appearing in the Disney film The Three Caballeros and in the classic film noir Phantom Lady. Her career in movies was short-lived due to her leaving the business to raise a family.","version":20,"id":"119300","lastModified":"1301902676000","name":"Aurora Miranda","type":"Person","_key":"62712"} +{"label":"Carmen Molina","version":22,"id":"119301","lastModified":"1301901986000","name":"Carmen Molina","type":"Person","_key":"62713"} +{"label":"Dora Luz","version":21,"id":"119302","lastModified":"1301901948000","name":"Dora Luz","type":"Person","_key":"62714"} +{"label":"Joaquin Garay","version":21,"id":"119303","lastModified":"1301902504000","name":"Joaquin Garay","type":"Person","_key":"62715"} +{"label":"La flaqueza del bolchevique","description":"After crashing into the rear of the car in front of him, Pablo Lopez starts arguing with the other driver, Sonsoles, who finally files for an injury claim against him. Therefore, the angry manager starts harassing her and observes her younger sister Maria in her schoolyard. When he gets to know the intelligent girl, his perception of life is changed totally...","id":"15948","runtime":95,"imdbId":"tt0385703","homepage":"http:\/\/www.laflaquezadelbolchevique.wanadoo.es\/","version":62,"lastModified":"1301908292000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c2\/4bc94984017a3c57fe0202c2\/la-flaqueza-del-bolchevique-mid.jpg","genre":"Drama","title":"La flaqueza del bolchevique","releaseDate":1067558400000,"language":"en","type":"Movie","_key":"62716"} +{"label":"Mar Regueras","version":17,"id":"78999","lastModified":"1301902361000","name":"Mar Regueras","type":"Person","_key":"62717"} +{"label":"Manuel Mart\u00edn Cuenca","version":18,"id":"79000","lastModified":"1301902143000","name":"Manuel Mart\u00edn Cuenca","type":"Person","_key":"62718"} +{"label":"Hannah Montana Miley Cyrus: Best of Both Worlds Concert Tour","description":"A 3-D concert film of the 2007 Hannah Montana\/Miley Cyrus tour.","id":"15949","runtime":82,"imdbId":"tt1127884","version":71,"lastModified":"1301904468000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4bc94986017a3c57fe0202d7\/hannah-montana-miley-cyrus-best-of-both-worlds-concert-tour-mid.jpg","genre":"Fantasy","title":"Hannah Montana Miley Cyrus: Best of Both Worlds Concert Tour","releaseDate":1219104000000,"language":"en","type":"Movie","_key":"62719"} +{"label":"Bruce Hendricks","version":31,"id":"2443","lastModified":"1299493595000","name":"Bruce Hendricks","type":"Person","_key":"62720"} +{"label":"VeggieTales: The Wonderful World of Auto-tainment","description":"Bob and Larry learn that God still loves them even when the future doesn't work out quite the way they had hoped.","id":"15950","runtime":0,"version":103,"lastModified":"1301908424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4bc94986017a3c57fe0202dc\/veggietales-the-wonderful-world-of-auto-tainment-mid.jpg","genre":"Family","title":"VeggieTales: The Wonderful World of Auto-tainment","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62721"} +{"label":"Drengen der ville g\u00f8re det umulige","description":"When a boy child is stolen by bears who raise him as their own, his human parents hunt the bears in despair, and the boy is faced with the dilemma of who and what he is.","id":"15951","runtime":75,"imdbId":"tt0322177","version":29,"lastModified":"1301905342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc94987017a3c57fe0202e5\/drengen-der-ville-gre-det-umulige-mid.jpg","title":"Drengen der ville g\u00f8re det umulige","releaseDate":1040169600000,"language":"en","type":"Movie","_key":"62722"} +{"label":"Frygtelig lykkelig","description":"\t\n\nRobert Hansen, 34, a young police officer from Copenhagen, is transferred against his will to the small town of Skarrild in Southern Jutland as a substitute Marshall. The transfer is Robert\u2019s chance to start over. Whether he is allowed to return to his job in Copenhagen, all depends on how well he performs in this frontier town.","id":"15952","runtime":90,"imdbId":"tt1087890","version":67,"lastModified":"1301905623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fe\/4bc94989017a3c57fe0202fe\/frygtelig-lykkelig-mid.jpg","genre":"Comedy","title":"Frygtelig lykkelig","releaseDate":1224806400000,"language":"en","type":"Movie","_key":"62723"} +{"label":"Henrik Ruben Genz","version":20,"id":"82351","lastModified":"1301902324000","name":"Henrik Ruben Genz","type":"Person","_key":"62724"} +{"label":"Lene Maria Christensen","version":19,"id":"82352","lastModified":"1301902067000","name":"Lene Maria Christensen","type":"Person","_key":"62725"} +{"label":"Fuera de carta","description":"Maxi thinks is life is perfect. He is a famous cook who own a top hype restaurant in Chueca. He is living is homosexual life without complex. But when is sons appears and come an new neighbor wich is an attractive ex famous argentinian soccer player, they will punch his regular life and change his valors.","id":"15953","runtime":111,"imdbId":"tt1020955","homepage":"http:\/\/www.fueradecarta.com","version":93,"lastModified":"1301905625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30b\/4bc9498a017a3c57fe02030b\/fuera-de-carta-mid.jpg","studio":"Antena 3 Televisi\u00f3n","genre":"Comedy","title":"Fuera de carta","releaseDate":1207872000000,"language":"en","type":"Movie","_key":"62726"} +{"label":"Benjam\u00edn Vicu\u00f1a","version":17,"id":"79001","lastModified":"1301902241000","name":"Benjam\u00edn Vicu\u00f1a","type":"Person","_key":"62727"} +{"label":"Nacho G. Velilla","version":21,"id":"79002","lastModified":"1301902241000","name":"Nacho G. Velilla","type":"Person","_key":"62728"} +{"label":"VeggieTales: Where's God When I'm S-Scared?","description":"After watching a scary Frankencelery movie, Junior Asparagus is reminded that there's no need to be scared of monsters because God is bigger than the boogie man!","id":"15954","runtime":0,"version":93,"lastModified":"1301759445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/310\/4bc9498d017a3c57fe020310\/veggietales-where-s-god-when-i-m-s-scared-mid.jpg","title":"VeggieTales: Where's God When I'm S-Scared?","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62729"} +{"label":"Fukssvansen","description":"Dennis and Carl are brothers who live on a small farm in the country. None too bright, Dennis wants a girlfriend for Christmas. Carl makes sure that Dennis gets just that when he meets Rita at the loc...( read more read more... )al pub. She is on the run from her husband and she doesn't turn down the chance to hide away at Carl and Dennis's place.","id":"15955","runtime":90,"imdbId":"tt0289195","version":72,"lastModified":"1301906602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/319\/4bc9498e017a3c57fe020319\/fukssvansen-mid.jpg","genre":"Comedy","title":"Fukssvansen","releaseDate":1004659200000,"language":"en","type":"Movie","_key":"62730"} +{"label":"Martin Buch","version":20,"id":"88543","lastModified":"1301902241000","name":"Martin Buch","type":"Person","_key":"62731"} +{"label":"Tommy Kenter","version":23,"id":"88544","lastModified":"1301902241000","name":"Tommy Kenter","type":"Person","_key":"62732"} +{"label":"Hjemve","description":"The tale of a troubled small town, and the brave few who made it their mission to keep the community together. As the citizens of a secluded Danish town gradually loose their trust in one and other, the sight of a naked man walking through town in the early hours of the morning sets off an unsettling wave of paranoia.","id":"15956","runtime":97,"imdbId":"tt0890879","version":80,"lastModified":"1301908533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/322\/4bc9498f017a3c57fe020322\/hjemve-mid.jpg","title":"Hjemve","releaseDate":1175212800000,"language":"en","type":"Movie","_key":"62733"} +{"label":"Hvid nat","description":"A psychological drama about Ulrich, a workaholic whose life takes a drastic turn when he is involved in a fatal accident. As his guilt grows, his life slowly crumbles around him. Next, an unpleasant event from his past rears its unforgiving head.","id":"15957","runtime":100,"imdbId":"tt1080695","version":28,"lastModified":"1300980230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32b\/4bc9498f017a3c57fe02032b\/hvid-nat-mid.jpg","title":"Hvid nat","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"62734"} +{"label":"VeggieTales: LarryBoy & The Fib From Outer Space!","description":"A little fib turns into a big problem for Junior Asparagus! With dad's favorite bowling plate in pieces, Junior is sure to be punished ... until a strange visitor advises him to cover his tracks with a little white lie.","id":"15958","runtime":0,"version":50,"lastModified":"1301130646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/330\/4bc94990017a3c57fe020330\/veggietales-larryboy-the-fib-from-outer-space-mid.jpg","title":"VeggieTales: LarryBoy & The Fib From Outer Space!","releaseDate":1084838400000,"language":"en","type":"Movie","_key":"62735"} +{"label":"Hvordan slipper vi af med alle de andre","description":"A satirical drama revealing the consequences of the Danish government's \"New Copenhagen Criteria\", a new policy aiming at securing the nation's survival. Citizens who fail to meet the criteria - those who have received more from society than what they have contributed - are eliminated.","id":"15959","runtime":94,"imdbId":"tt0478365","version":31,"lastModified":"1301906757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/339\/4bc94991017a3c57fe020339\/hvordan-slipper-vi-af-med-alle-de-andre-mid.jpg","title":"Hvordan slipper vi af med alle de andre","releaseDate":1169769600000,"language":"en","type":"Movie","_key":"62736"} +{"label":"VeggieTales: Sheerluck Holmes and the Golden Ruler","description":"When Sheerluck Holmes and his venerable sidekick Dr. Watson work together, their forensic fortitude can solve any crime. But Sheerluck won't stop hogging all the credit for the pair's sleuthing savvy! With this friendship on the fritz, the missing Golden Ruler may never be recovered! Will Sheerluck remember the Golden Rule in time to rescue the ruler and save this friendship?","id":"15960","runtime":52,"imdbId":"tt0795495","version":35,"lastModified":"1301907203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/342\/4bc94992017a3c57fe020342\/veggietales-sheerluck-holmes-and-the-golden-ruler-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales: Sheerluck Holmes and the Golden Ruler","releaseDate":1142035200000,"language":"en","type":"Movie","_key":"62737"} +{"label":"Kongekabale (Kings Game)","description":"Starting a new job as a political journalist at a leading newspaper, Ulrik Torp witnesses a brutal struggle for power in the Midparty's ranks -- a struggle that coincides with the charismatic party leader's involvement in a near fatal car accident. A flurry of lies and media speculation surrounds the incident. Gradually, Ulrik unearths a ruthless conspiracy involving the incumbent prime minister.","id":"15961","runtime":107,"imdbId":"tt0378215","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/kings-game","version":75,"lastModified":"1301907803000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/353\/4bc94993017a3c57fe020353\/kongekabale-mid.jpg","studio":"Nimbus Film Productions","title":"Kongekabale (Kings Game)","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"62738"} +{"label":"Jesper Langberg","version":13,"id":"209396","lastModified":"1301903783000","name":"Jesper Langberg","type":"Person","_key":"62739"} +{"label":"M\u00f8rke","description":"The psychological thriller \"Murk\" tells the story of Jacob, who is investigating into the circumstances surrounding his sister's death on her wedding night.","id":"15962","runtime":124,"imdbId":"tt0432972","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/murk","version":43,"lastModified":"1301908376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35c\/4bc94994017a3c57fe02035c\/mrke-mid.jpg","title":"M\u00f8rke","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"62740"} +{"label":"Lisbet Lundquist","version":18,"id":"107264","lastModified":"1301902831000","name":"Lisbet Lundquist","type":"Person","_key":"62741"} +{"label":"VeggieTales: The Toy That Saved Christmas","description":"Mr. Nezzer's TV commercials have convinced all of Dinkletown that \"Christmas is when you get stuff!\" With the children whining and begging for more toys, it's sure to be the worst Christmas ever ... until one brave little Buzz-Saw Louie doll decides to take matters into his own hands! The Toy That Saved Christmas teaches children that \"Christmas isn't about getting, it's about giving.","id":"15963","runtime":0,"version":90,"lastModified":"1301905326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/361\/4bc94994017a3c57fe020361\/veggietales-the-toy-that-saved-christmas-mid.jpg","genre":"Family","title":"VeggieTales: The Toy That Saved Christmas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62742"} +{"label":"The Christmas Miracle of Jonathan Toomey","description":"When a broken hearted boy loses the treasured wooden nativity set that links him to his dead father, his worried mother persuades a lonely ill-tempered woodcarver to create a replacement, and to allow her son to watch him work on it.","id":"15964","runtime":91,"imdbId":"tt0498361","version":113,"lastModified":"1301905271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4bc94995017a3c57fe020366\/the-christmas-miracle-of-jonathan-toomey-mid.jpg","genre":"Drama","title":"The Christmas Miracle of Jonathan Toomey","releaseDate":1193097600000,"language":"en","type":"Movie","_key":"62743"} +{"label":"Bill Clark","version":15,"id":"146788","lastModified":"1301903086000","name":"Bill Clark","type":"Person","_key":"62744"} +{"label":"Aran Bell","version":15,"id":"146789","lastModified":"1301903086000","name":"Aran Bell","type":"Person","_key":"62745"} +{"label":"Thomas Briggs","version":15,"id":"146790","lastModified":"1301903086000","name":"Thomas Briggs","type":"Person","_key":"62746"} +{"label":"Clare Burt","version":15,"id":"146791","lastModified":"1301903086000","name":"Clare Burt","type":"Person","_key":"62747"} +{"label":"Benji Compston","version":15,"id":"146792","lastModified":"1301903086000","name":"Benji Compston","type":"Person","_key":"62748"} +{"label":"...Og det var Danmark","description":"No overview found.","id":"15965","runtime":107,"imdbId":"tt1217553","version":29,"lastModified":"1301905717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc94996017a3c57fe020377\/og-det-var-danmark-mid.jpg","title":"...Og det var Danmark","releaseDate":1207699200000,"language":"en","type":"Movie","_key":"62749"} +{"label":"VeggieTales: Sumo of the Opera","description":"Get ready for the event of the century as The Italian Scallion (Larry the Cucumber) challenges Apollo Gourd for the World Veggie-Weight Title!","id":"15966","runtime":0,"version":185,"lastModified":"1301286664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37c\/4bc94996017a3c57fe02037c\/veggietales-sumo-of-the-opera-mid.jpg","title":"VeggieTales: Sumo of the Opera","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62750"} +{"label":"Regel nr. 1","description":"No overview found.","id":"15967","runtime":87,"imdbId":"tt0354934","version":125,"lastModified":"1300980231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/399\/4bc94999017a3c57fe020399\/regel-nr-1-mid.jpg","title":"Regel nr. 1","releaseDate":1067558400000,"language":"en","type":"Movie","_key":"62751"} +{"label":"VeggieTales: The Star of Christmas","description":"Cavis Appythart and Millward Phelps (Bob & Larry) are putting the finishing touches on their first Christmas musical. With more electric lights than London has ever seen, Cavis is sure his show will \"teach London how to love!\" Unfortunately, the local church Christmas pageant is scheduled for the same night. Which will London turn out to see? ","id":"15968","runtime":0,"version":66,"lastModified":"1301908287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39e\/4bc94999017a3c57fe02039e\/veggietales-the-star-of-christmas-mid.jpg","title":"VeggieTales: The Star of Christmas","releaseDate":1035849600000,"language":"en","type":"Movie","_key":"62752"} +{"label":"The Return of Jafar","description":"Aladdin is adjusting to his new life as part of the upper crust. He and Princess Jasmine may not be married yet, but the pressures of palace society have already begun. On top of that, Iago (the parrot pet of Sultan's ex-vizir turned genie, Jafar) appears asking for help and no one is happy to see him. But things begin to look up when Genie returns from his trip around the world. Meanwhile, Jafar's black lamp is discovered by an idiot crook called Abis Mal. By using Abis Mal, Jafar makes his way","id":"15969","runtime":69,"imdbId":"tt0107952","version":86,"lastModified":"1301902864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a7\/4bc9499c017a3c57fe0203a7\/the-return-of-jafar-mid.jpg","genre":"Animation","title":"The Return of Jafar","releaseDate":769392000000,"language":"en","tagline":"The Aladdin adventure continues...","type":"Movie","_key":"62753"} +{"label":"Toby Shelton","version":20,"id":"139851","lastModified":"1301902636000","name":"Toby Shelton","type":"Person","_key":"62754"} +{"label":"VeggieTales: Rack, Shack & Benny","description":"Trouble's brewing at the Chocolate Factory! Company president Nebby K. Nezzer announces that his workers may eat as many bunnies as they like! But Rack, Shack and Benny remember that their parents taught them not to eat too much candy.","id":"15971","runtime":30,"imdbId":"tt0284612","version":234,"lastModified":"1301907262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b0\/4bc9499f017a3c57fe0203b0\/veggietales-rack-shack-benny-mid.jpg","studio":"Big Idea Productions","title":"VeggieTales: Rack, Shack & Benny","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62755"} +{"label":"Varg Veum - Falne engler","description":"Jakob Aasen has hired his old friend, private investigator Varg Veum, to spy on his wife Rebecca, whom he suspects of infidelity. Against his better judgement Varg accepts the job, and in an ironic twist he and Rebecca rekindle their former love. Meanwhile a serial killer is targeting members of Jacob's band and their families...","id":"15973","runtime":95,"imdbId":"tt1010265","trailer":"http:\/\/www.youtube.com\/watch?v=3058","version":70,"lastModified":"1301905624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ca\/4bc949a4017a3c57fe0203ca\/varg-veum-falne-engler-mid.jpg","genre":"Crime","title":"Varg Veum - Falne engler","releaseDate":1207267200000,"language":"en","type":"Movie","_key":"62756"} +{"label":"Trond Espen Seim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/338\/4ce15e825e73d60f6c000338\/trond-espen-seim-profile.jpg","version":36,"birthday":"55378800000","id":"79332","birthplace":"Oslo","lastModified":"1301901381000","name":"Trond Espen Seim","type":"Person","_key":"62757"} +{"label":"Per Kjerstad Andersen","version":18,"id":"109925","lastModified":"1301903034000","name":"Per Kjerstad Andersen","type":"Person","_key":"62758"} +{"label":"Bhoothnath","description":"No overview found.","id":"15974","runtime":151,"imdbId":"tt0991346","homepage":"http:\/\/bhoothnath.erosentertainment.com\/flash.html","version":117,"lastModified":"1301904561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4bc949a5017a3c57fe0203df\/bhoothnath-mid.jpg","studio":"Eros Entertainment","genre":"Comedy","title":"Bhoothnath","releaseDate":1210291200000,"language":"en","type":"Movie","_key":"62759"} +{"label":"Aman Siddiqui","version":20,"id":"86621","lastModified":"1301903034000","name":"Aman Siddiqui","type":"Person","_key":"62760"} +{"label":"Priyanshu Chatterjee","version":24,"id":"86622","lastModified":"1301902750000","name":"Priyanshu Chatterjee","type":"Person","_key":"62761"} +{"label":"Oye Lucky! Lucky Oye!","description":"Inspired by the incredible true story of Lucky Singh, an extremely charismatic and fearless confident man and thief who socialized with the rich, famous and influential of Delhi society and then proceeded to rob them blind. He was the b\u00eate noire of the police and had stolen millions by the time he was caught.","id":"15975","runtime":0,"imdbId":"tt1292703","version":265,"lastModified":"1301903529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ec\/4bc949a6017a3c57fe0203ec\/oye-lucky-lucky-oye-mid.jpg","studio":"Freshwater Films","genre":"Comedy","title":"Oye Lucky! Lucky Oye!","releaseDate":1227830400000,"language":"en","type":"Movie","_key":"62762"} +{"label":"Abhay Deol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c12\/4d2166af5e73d66b2d002c12\/abhay-deol-profile.jpg","version":32,"id":"79003","lastModified":"1301901700000","name":"Abhay Deol","type":"Person","_key":"62763"} +{"label":"Paresh Rawal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a9\/4d34b4135e73d6334f0092a9\/paresh-rawal-profile.jpg","version":57,"id":"85033","lastModified":"1301902031000","name":"Paresh Rawal","type":"Person","_key":"62764"} +{"label":"Neetu Chandra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/311\/4d34b41f5e73d63356009311\/neetu-chandra-profile.jpg","version":25,"id":"85587","lastModified":"1301901954000","name":"Neetu Chandra","type":"Person","_key":"62765"} +{"label":"Richa Chadda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b4\/4d34b4325e73d6334f0092b4\/richa-chadda-profile.jpg","version":16,"id":"150471","lastModified":"1301903123000","name":"Richa Chadda","type":"Person","_key":"62766"} +{"label":"Dibakar Banerjee","version":21,"id":"116143","lastModified":"1301902949000","name":"Dibakar Banerjee","type":"Person","_key":"62767"} +{"label":"The Bubble","description":"The movie follows a group of young friends in the city of Tel Aviv and is as much a love song to the city as it is an exploration of the claim that people in Tel Aviv are isolated from the rest of the country and the turmoil it's going through. The movie looks at young people's lives in Tel Aviv through the POVs of gays and straights, Jews and Arabs, men and women.","id":"15976","runtime":90,"imdbId":"tt0476643","version":152,"lastModified":"1301906843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f5\/4bc949a6017a3c57fe0203f5\/15976-mid.jpg","genre":"Drama","title":"The Bubble","releaseDate":1151539200000,"language":"en","type":"Movie","_key":"62768"} +{"label":"Dev D","description":"Dev (Abhay Deol) is the son of a rich Punjabi Businessman. He and Paro (Mahi Gill) are childhood sweethearts. But Dev, being a typical insecure arrogant guy, instead of acknowledging her affection and care, nudges Paro over frivolous things.\n\nThe movie is based in the contemporary Punjab and Delhi, where familial ties are negotiated by the traditions of patriarchy and marriages are reduced to a ga","id":"15977","runtime":144,"imdbId":"tt1327035","homepage":"http:\/\/www.devdthefilm.com\/","version":260,"lastModified":"1301907306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fe\/4bc949a7017a3c57fe0203fe\/dev-d-mid.jpg","studio":"UTV Spotboy Motion Pictures","genre":"Drama","title":"Dev D","releaseDate":1233878400000,"language":"en","tagline":"Get Ready for Emotional Atyachar","type":"Movie","_key":"62769"} +{"label":"Mahie Gill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b7a\/4d2167315e73d66b27002b7a\/mahie-gill-profile.jpg","version":27,"id":"86085","lastModified":"1301901599000","name":"Mahie Gill","type":"Person","_key":"62770"} +{"label":"Kalki Koechlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c12\/4d2167805e73d66b34002c12\/kalki-koechlin-profile.jpg","version":21,"id":"146957","lastModified":"1301901844000","name":"Kalki Koechlin","type":"Person","_key":"62771"} +{"label":"Parakh Madan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c93\/4d2168545e73d66b2b002c93\/parakh-madan-profile.jpg","version":18,"id":"146958","lastModified":"1301902208000","name":"Parakh Madan","type":"Person","_key":"62772"} +{"label":"Kuldeep Singh","version":17,"id":"146959","lastModified":"1301903091000","name":"Kuldeep Singh","type":"Person","_key":"62773"} +{"label":"Gurkirtan","version":24,"id":"140637","lastModified":"1301902415000","name":"Gurkirtan","type":"Person","_key":"62774"} +{"label":"Sanjay Kumar","version":17,"id":"146960","lastModified":"1301903095000","name":"Sanjay Kumar","type":"Person","_key":"62775"} +{"label":"Aseem Sharma","version":17,"id":"146961","lastModified":"1301903091000","name":"Aseem Sharma","type":"Person","_key":"62776"} +{"label":"Satwant Kaur","version":17,"id":"146962","lastModified":"1301903091000","name":"Satwant Kaur","type":"Person","_key":"62777"} +{"label":"Shena Gamat","version":17,"id":"146963","lastModified":"1301903095000","name":"Shena Gamat","type":"Person","_key":"62778"} +{"label":"Anurag Kashyap","version":32,"id":"85670","lastModified":"1301902460000","name":"Anurag Kashyap","type":"Person","_key":"62779"} +{"label":"Naina","description":"On a day of solar eclipse, five year old, Naina, loses her eyesight and her parents in a road accident in London. Twenty years later, she is bestowed with the gift of sight thanks to the marvels of modern science. Her period of darkness is over; or is it? A horrifying period of darkness begins. What is this curse that has been upon her? Will she ever be able to escape it? Will this extraordinary s","id":"15978","runtime":0,"imdbId":"tt0443594","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/naina","version":61,"lastModified":"1301908091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40b\/4bc949a8017a3c57fe02040b\/naina-mid.jpg","genre":"Horror","title":"Naina","releaseDate":1116547200000,"language":"en","type":"Movie","_key":"62780"} +{"label":"Phoonk","description":"No overview found.","id":"15979","runtime":179,"imdbId":"tt1267500","version":67,"lastModified":"1301906707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41c\/4bc949a9017a3c57fe02041c\/phoonk-mid.jpg","studio":"One More Thought Entertainment","genre":"Horror","title":"Phoonk","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"62781"} +{"label":"Raaz - The Mystery Continues...","description":"A beautiful lady turns up in an architect's masterpiece.When he founds that she is real, he realizes that she is haunted and hunted by the reasons they have to find out","id":"15980","runtime":137,"imdbId":"tt1340838","homepage":"htt:\/\/www.raazthefilm.com\/","version":255,"lastModified":"1301757380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/432\/4bc949ae017a3c57fe020432\/raaz-the-mystery-continues-mid.jpg","studio":"Vishesh Films","genre":"Suspense","title":"Raaz - The Mystery Continues...","releaseDate":1232668800000,"language":"en","type":"Movie","_key":"62782"} +{"label":"Emraan Hashmi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d61\/4d223d7b7b9aa12886000d61\/emraan-hashmi-profile.jpg","version":37,"id":"85969","lastModified":"1301901644000","name":"Emraan Hashmi","type":"Person","_key":"62783"} +{"label":"Kangana Ranaut","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3af\/4d223d877b9aa173730033af\/kangana-ranaut-profile.jpg","version":41,"id":"85470","lastModified":"1301901420000","name":"Kangana Ranaut","type":"Person","_key":"62784"} +{"label":"Adhyayan Suman","version":20,"id":"85886","lastModified":"1301902665000","name":"Adhyayan Suman","type":"Person","_key":"62785"} +{"label":"Dead Leaves","description":"Pandy and Retro, two unlikely renegades, awaken naked on Earth with no recollection of their past. After embarking on a devastating crime spree for food, clothing and transportation in downtown Tokyo, they are captured by authorities and sent to the infamous lunar prison called Dead Leaves.","id":"15981","runtime":52,"imdbId":"tt0439533","version":203,"lastModified":"1301903972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/445\/4bc949af017a3c57fe020445\/dead-leaves-mid.jpg","studio":"Production I.G Inc.","genre":"Animation","title":"Dead Leaves","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"62786"} +{"label":"Kappei Yamaguchi","version":62,"id":"68472","lastModified":"1301901446000","name":"Kappei Yamaguchi","type":"Person","_key":"62787"} +{"label":"The Legend of Billie Jean","description":"Average Texas teen, Billie Jean Davy, is caught up in an odd fight for justice. She is usually followed and harrased around by local boys, who, one day, decide to trash her brother's scooter for fun. The boys' father refuses to pay them back the price of the scooter. The fight for \"fair is fair\" takes the teens around the state and produces an unlikely hero.","id":"15982","runtime":96,"imdbId":"tt0089470","trailer":"http:\/\/www.youtube.com\/watch?v=XSYRqoPUSto","version":91,"lastModified":"1301907098000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/456\/4bc949b0017a3c57fe020456\/the-legend-of-billie-jean-mid.jpg","genre":"Action","title":"The Legend of Billie Jean","releaseDate":490579200000,"language":"en","type":"Movie","_key":"62788"} +{"label":"Martha Gehman","version":20,"id":"79007","lastModified":"1301901849000","name":"Martha Gehman","type":"Person","_key":"62789"} +{"label":"Mona Lee Fultz","version":18,"id":"79008","lastModified":"1301902067000","name":"Mona Lee Fultz","type":"Person","_key":"62790"} +{"label":"Invasion U.S.A.","description":"A one-man army comes to the rescue of the United States when a spy attempts an invasion.","id":"15983","runtime":107,"imdbId":"tt0089348","version":143,"lastModified":"1301904278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc949b2017a3c57fe020469\/invasion-u-s-a-mid.jpg","studio":"Cannon Films","genre":"Action","title":"Invasion U.S.A.","releaseDate":473385600000,"language":"en","type":"Movie","_key":"62791"} +{"label":"Provoked: A True Story","description":"Provoked is the true story of Kiranjit Ahluwalia, a Punjabi woman who moved to London after her marriage with Deepak Ahluwalia. Her husband seemed caring at first but then began to beat her up. He started drinking a lot and sleeping around with other women. he also subjected her to spousal rape. After ten years and having two children with him, out of fear, she sets him on fire.","id":"15986","runtime":87,"imdbId":"tt0458072","version":43,"lastModified":"1301418987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/472\/4bc949b3017a3c57fe020472\/provoked-a-true-story-mid.jpg","title":"Provoked: A True Story","releaseDate":1175817600000,"language":"en","type":"Movie","_key":"62792"} +{"label":"The Lawless","description":"Two undercover narcotics officers' cover is blown and the Mexican cartel has kidnapped their families. To get them back they must do the unthinkable for the next 24 hours. The rules are simple: No guns, no bombs and no witnesses. They must become The Lawless.","id":"15987","runtime":86,"imdbId":"tt1108849","version":114,"lastModified":"1301495770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/477\/4bc949b3017a3c57fe020477\/the-lawless-mid.jpg","genre":"Action","title":"The Lawless","releaseDate":1192752000000,"language":"en","type":"Movie","_key":"62793"} +{"label":"Natalie Bell","version":16,"id":"79009","lastModified":"1301902326000","name":"Natalie Bell","type":"Person","_key":"62794"} +{"label":"Eryn Brooke","version":21,"id":"79010","lastModified":"1301902219000","name":"Eryn Brooke","type":"Person","_key":"62795"} +{"label":"William Burch","version":16,"id":"79011","lastModified":"1301902326000","name":"William Burch","type":"Person","_key":"62796"} +{"label":"Luis Caldeira","version":16,"id":"79012","lastModified":"1301902326000","name":"Luis Caldeira","type":"Person","_key":"62797"} +{"label":"Denton Blane Everett","version":16,"id":"112850","lastModified":"1301902987000","name":"Denton Blane Everett","type":"Person","_key":"62798"} +{"label":"Jason Riley Hoss","version":22,"id":"112851","lastModified":"1301902987000","name":"Jason Riley Hoss","type":"Person","_key":"62799"} +{"label":"Katedra","description":"The Cathedral (Polish: Katedra) is a 2002 short animated science fiction movie by Tomasz Bagi\u0144ski, based on a short story by Jacek Dukaj, winner of the Janusz A. Zajdel Award in 2000. The film was nominated in 2002 for the Academy Award for Animated Short Film for the 75th Academy Awards. ","id":"15990","runtime":6,"imdbId":"tt0351167","trailer":"http:\/\/www.youtube.com\/watch?v=1055","version":55,"lastModified":"1301905596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4bc949b8017a3c57fe020491\/katedra-mid.jpg","genre":"Animation","title":"Katedra","releaseDate":1034899200000,"language":"en","type":"Movie","_key":"62800"} +{"label":"Bad Biology","description":"Driven by biological excess, a young man and woman search for sexual fulfillment, unaware of each other's existence. Unfortunately, they eventually meet, and the bonding of these two very unusual human beings ends in an explosive and ultimately over-the-top sexual experience, resulting in a truly god awful love story....","id":"15991","runtime":85,"imdbId":"tt0974977","homepage":"http:\/\/www.kingrecords.co.jp\/bb\/","version":194,"lastModified":"1301905186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4af\/4bc949ba017a3c57fe0204af\/bad-biology-mid.jpg","studio":"Bad Biology","genre":"Fantasy","title":"Bad Biology","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"62801"} +{"label":"Charlee Danielson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cfb\/4d2633877b9aa134cb000cfb\/charlee-danielson-profile.jpg","version":22,"id":"86248","lastModified":"1301902038000","name":"Charlee Danielson","type":"Person","_key":"62802"} +{"label":"Anthony Sneed","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d03\/4d2634147b9aa134cb000d03\/anthony-sneed-profile.jpg","version":22,"id":"86249","lastModified":"1301902395000","name":"Anthony Sneed","type":"Person","_key":"62803"} +{"label":"Ginger Starr","version":16,"id":"147670","lastModified":"1301903094000","name":"Ginger Starr","type":"Person","_key":"62804"} +{"label":"Frank Henenlotter","version":35,"id":"86250","lastModified":"1301902375000","name":"Frank Henenlotter","type":"Person","_key":"62805"} +{"label":"Abandon","description":"A senior at an elite college, already under severe pressure to complete her thesis and land a prestigious job, must confront the sudden reappearance of her old boyfriend, after his two year, unexplained absence... ","id":"15992","runtime":99,"imdbId":"tt0267248","trailer":"http:\/\/www.youtube.com\/watch?v=S9l1hvbtl44","version":191,"lastModified":"1301904304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4bd4fb4c017a3c2e7500009d\/abandon-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Abandon","releaseDate":1034553600000,"language":"en","type":"Movie","_key":"62806"} +{"label":"Gen 13","description":"Caitlin Fairchild, a teenager offered a place in an institute for gifted children. She soon learns that the school isn't really a school, but rather a military project to turn children with a special genetic structure into super soldiers. After developing incredibly enhanced abilities, Caitlin rebels against the program that created her.","id":"15993","runtime":73,"imdbId":"tt0119185","version":75,"lastModified":"1301905185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c2\/4bc949bb017a3c57fe0204c2\/gen-13-mid.jpg","studio":"Aegis Entertainment","genre":"Action","title":"Gen 13","releaseDate":915148800000,"language":"en","type":"Movie","_key":"62807"} +{"label":"Kevin Altieri","version":20,"id":"35266","lastModified":"1301901562000","name":"Kevin Altieri","type":"Person","_key":"62808"} +{"label":"Lauren Lane","version":17,"id":"79013","lastModified":"1301902174000","name":"Lauren Lane","type":"Person","_key":"62809"} +{"label":"los","description":"Tom, een jonge, progressieve journalist, wil settelen met zijn vriendin, maar net dan kruist de beeldschone asielzoekster Nadia zijn pad. Ze haalt zijn emotionele leven volledig uit evenwicht. Op de krant vindt hij ook al geen evenwicht, want daar botsen zijn idealen meer en meer met de realiteit. Als dan ook nog een nieuw leidersfiguur onder de allochtone jongeren opstaat, slaat zijn wereld helem","id":"15994","runtime":100,"imdbId":"tt1086214","version":104,"lastModified":"1301908001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cb\/4bc949bc017a3c57fe0204cb\/los-mid.jpg","title":"los","releaseDate":1221609600000,"language":"en","type":"Movie","_key":"62810"} +{"label":"The Land Before Time II: The Great Valley Adventure","description":"No overview found.","id":"15997","runtime":73,"imdbId":"tt0110300","version":172,"lastModified":"1301902432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc949bc017a3c57fe0204d9\/the-land-before-time-ii-the-great-valley-adventure-mid.jpg","genre":"Animation","title":"The Land Before Time II: The Great Valley Adventure","releaseDate":757382400000,"language":"en","type":"Movie","_key":"62811"} +{"label":"Scott McAfee","version":18,"id":"79020","lastModified":"1301901474000","name":"Scott McAfee","type":"Person","_key":"62812"} +{"label":"Heather Hogan","version":18,"id":"79021","lastModified":"1301901608000","name":"Heather Hogan","type":"Person","_key":"62813"} +{"label":"Vampire Hunter D: Bloodlust","description":"D has been hired to track down Meier Link, a notoriously powerful vampire who has abducted a woman, Charlotte Elbourne. D's orders are strict - find Charlotte, at any cost. For the first time, D faces serious competition. The Markus Brothers, a family of Vampire Hunters, were hired for the same bounty. D Must intercept Meier and conquer hostile forces on all sides in a deadly race against time.","id":"15999","runtime":103,"imdbId":"tt0216651","version":131,"lastModified":"1301903235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e2\/4bc949bd017a3c57fe0204e2\/banpaia-hanta-d-mid.jpg","genre":"Animation","title":"Vampire Hunter D: Bloodlust","releaseDate":1001635200000,"language":"en","tagline":"\"When the Sun Sets... The Hunt Begins\u201d","type":"Movie","_key":"62814"} +{"label":"Andrew Philpot","version":17,"id":"79049","lastModified":"1301901362000","name":"Andrew Philpot","type":"Person","_key":"62815"} +{"label":"John Rafter Lee","version":17,"id":"79050","lastModified":"1301901674000","name":"John Rafter Lee","type":"Person","_key":"62816"} +{"label":"Wendee Lee","version":22,"id":"79051","lastModified":"1301901601000","name":"Wendee Lee","type":"Person","_key":"62817"} +{"label":"John Hostetter","version":17,"id":"79052","lastModified":"1301901953000","name":"John Hostetter","type":"Person","_key":"62818"} +{"label":"Alex Fernandez","version":18,"id":"79054","lastModified":"1301902334000","name":"Alex Fernandez","type":"Person","_key":"62819"} +{"label":"Ben 10: Race Against Time","description":"\"Ben 10: Race Against Time\" has Ben back in his hometown of Bellwood. Even though he's back in school and leaving his hero adventures behind him, it seems that Ben will be facing his greatest challenge yet.","id":"16000","runtime":67,"imdbId":"tt1037011","version":142,"lastModified":"1301904407000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f5\/4bc949c1017a3c57fe0204f5\/ben-10-race-against-time-mid.jpg","studio":"Cartoon Network","genre":"Science Fiction","title":"Ben 10: Race Against Time","releaseDate":1207612800000,"language":"en","type":"Movie","_key":"62820"} +{"label":"Beth Littleford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e06\/4cf5da425e73d6299a000e06\/beth-littleford-profile.jpg","version":22,"id":"79024","lastModified":"1301901707000","name":"Beth Littleford","type":"Person","_key":"62821"} +{"label":"Don McManus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/40f\/4ce1b8075e73d60f6d00040f\/don-mcmanus-profile.jpg","version":32,"id":"79025","lastModified":"1301901807000","name":"Don McManus","type":"Person","_key":"62822"} +{"label":"Kurt blir grusom","description":"Kurts kone tror at Kurt er snill. Kurts tre barn tror at Kurt er snill. Til og med Kurt tror at Kurt er snill. Men s\u00e5 blir Kurt grusom. ...","id":"16002","runtime":90,"imdbId":"tt1245891","homepage":"http:\/\/www.kurtblirgrusom.no\/","version":55,"lastModified":"1301908286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50b\/4bc949c3017a3c57fe02050b\/kurt-blir-grusom-mid.jpg","studio":"Qvisten Animation AS","genre":"Animation","title":"Kurt blir grusom","releaseDate":1225411200000,"language":"en","type":"Movie","_key":"62823"} +{"label":"Rasmus A. Sivertsen","version":19,"id":"81397","lastModified":"1301901534000","name":"Rasmus A. Sivertsen","type":"Person","_key":"62824"} +{"label":"Atle Antonsen","version":21,"id":"81401","lastModified":"1301901579000","name":"Atle Antonsen","type":"Person","_key":"62825"} +{"label":"Kristin Skogheim","version":19,"id":"81402","lastModified":"1301901534000","name":"Kristin Skogheim","type":"Person","_key":"62826"} +{"label":"Anders Bye","version":19,"id":"81403","lastModified":"1301901474000","name":"Anders Bye","type":"Person","_key":"62827"} +{"label":"Pernille S\u00f8rensen","version":20,"id":"81404","lastModified":"1301902316000","name":"Pernille S\u00f8rensen","type":"Person","_key":"62828"} +{"label":"Fredrik Steen","version":19,"id":"81405","lastModified":"1301902463000","name":"Fredrik Steen","type":"Person","_key":"62829"} +{"label":"Paul-Ottar Haga","version":20,"id":"81406","lastModified":"1301902463000","name":"Paul-Ottar Haga","type":"Person","_key":"62830"} +{"label":"Espen Sandvik","version":19,"id":"81407","lastModified":"1301902463000","name":"Espen Sandvik","type":"Person","_key":"62831"} +{"label":"J\u00e4garna","description":"A Policeman from Stockholm comes up to Norrland in Sweden, to join his brother, now when their parents are dead. While there he starts to work on a long-running case where Deers have been poached and soon discovers that his brother is involved...","id":"16003","runtime":113,"imdbId":"tt0116736","version":31,"lastModified":"1301417515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51c\/4bc949c4017a3c57fe02051c\/jagarna-mid.jpg","title":"J\u00e4garna","releaseDate":820454400000,"language":"en","type":"Movie","_key":"62832"} +{"label":"Love N' Dancing","description":"When a bored-with-life English teacher meets a West Coast Swing champion dancer, they have an instant connection. Both feel that the other can fulfill what was missing in their lives. Jake and Jessica must try to elude all obstacles, romantic or otherwise, to stay focused on the goal - winning the World Title and winning each other. Will they give in to the pressure or come out like champs?","id":"16004","runtime":100,"imdbId":"tt1028581","version":214,"lastModified":"1301904646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52f\/4bc949c5017a3c57fe02052f\/love-n-dancing-mid.jpg","genre":"Comedy","title":"Love N' Dancing","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62833"} +{"label":"Nicola Royston","version":22,"id":"88621","lastModified":"1301902542000","name":"Nicola Royston","type":"Person","_key":"62834"} +{"label":"The Lucky Ones","description":"The story revolves around three soldiers \u2014 Colee (Rachel McAdams), T.K. (Michael Pena) and Cheaver (Tim Robbins) \u2014 who return from the Iraq War after suffering injuries and learn that life has moved on without them. They end up on an unexpected road trip across the U.S.","id":"16005","runtime":113,"imdbId":"tt0981072","homepage":"http:\/\/www.theluckyonesmovie.com\/","version":213,"lastModified":"1301903401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/538\/4bc949c7017a3c57fe020538\/the-lucky-ones-mid.jpg","genre":"Comedy","title":"The Lucky Ones","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"62835"} +{"label":"You'll Get Over It","description":"When Vincent finds himself a victim of outing in his high school, he must accept to live with the drastic changes it provokes, and redefine his relationships with his friends and family.","id":"16006","runtime":86,"imdbId":"tt0311943","version":101,"lastModified":"1302113168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/545\/4bc949c8017a3c57fe020545\/a-cause-d-un-garcon-mid.jpg","studio":"Capa Drama","genre":"Drama","title":"You'll Get Over It","releaseDate":1015977600000,"language":"en","type":"Movie","_key":"62836"} +{"label":"Fabrice Cazeneuve","version":17,"id":"79029","lastModified":"1301902067000","name":"Fabrice Cazeneuve","type":"Person","_key":"62837"} +{"label":"Julien Baumgartner","version":17,"id":"79031","lastModified":"1301901608000","name":"Julien Baumgartner","type":"Person","_key":"62838"} +{"label":"Julia Maraval","version":18,"id":"79032","lastModified":"1301901864000","name":"Julia Maraval","type":"Person","_key":"62839"} +{"label":"J\u00e9r\u00e9mie Elka\u00efm","version":20,"id":"79033","lastModified":"1301901429000","name":"J\u00e9r\u00e9mie Elka\u00efm","type":"Person","_key":"62840"} +{"label":"Fran\u00e7ois Comar","version":17,"id":"79034","lastModified":"1301901864000","name":"Fran\u00e7ois Comar","type":"Person","_key":"62841"} +{"label":"Patrick Bonnel","version":17,"id":"79035","lastModified":"1301902067000","name":"Patrick Bonnel","type":"Person","_key":"62842"} +{"label":"Antoine Michel","version":17,"id":"79036","lastModified":"1301902067000","name":"Antoine Michel","type":"Person","_key":"62843"} +{"label":"Death Note","description":"Light Yagami finds the \"Death Note,\" a notebook with the power to kill, and decides to create a Utopia by killing the world's criminals, and soon the world's greatest detective, \"L,\" is hired to find the mysterious murderer. An all out battle between the two greatest minds on earth begins and the winner will control the world.","id":"16007","runtime":126,"imdbId":"tt0758742","version":186,"lastModified":"1301903495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/556\/4bc949cc017a3c57fe020556\/desu-noto-mid.jpg","genre":"Fantasy","title":"Death Note","releaseDate":1150502400000,"language":"en","type":"Movie","_key":"62844"} +{"label":"Ken'ichi Matsuyama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e6d\/4d2656457b9aa134e0000e6d\/ken-ichi-matsuyama-profile.jpg","version":38,"id":"79037","lastModified":"1301901192000","name":"Ken'ichi Matsuyama","type":"Person","_key":"62845"} +{"label":"Sota Aoyama","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a89\/4d90d69c7b9aa1674f003a89\/sota-aoyama-profile.jpg","version":26,"id":"79038","lastModified":"1301901778000","name":"Sota Aoyama","type":"Person","_key":"62846"} +{"label":"Shigeki Hosokawa","version":18,"id":"133945","lastModified":"1301902505000","name":"Shigeki Hosokawa","type":"Person","_key":"62847"} +{"label":"Erika Toda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4c92a39e7b9aa1073700002e\/erika-toda-profile.jpg","version":29,"id":"84620","lastModified":"1301902221000","name":"Erika Toda","type":"Person","_key":"62848"} +{"label":"Kollegiet","description":"Wanting to start a fresh, Katrine moves from the province into a dormitory in Copenhagen and enrolls at the University. But when she crosses conniving Sanne by getting together with Sanne's ex, all hell breaks loose. Sanne and her friends frighten Katrine with an old myth surrounding the ghost of a former resident. Yet the myth very soon becomes reality.","id":"16008","runtime":90,"imdbId":"tt1003005","version":62,"lastModified":"1301906056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/563\/4bc949ce017a3c57fe020563\/kollegiet-mid.jpg","studio":"Nordisk Film","genre":"Horror","title":"Kollegiet","releaseDate":1186704000000,"language":"en","type":"Movie","_key":"62849"} +{"label":"Neel R\u00f8nholt","version":19,"id":"85906","lastModified":"1301902888000","name":"Neel R\u00f8nholt","type":"Person","_key":"62850"} +{"label":"Mikkel Arendt","version":19,"id":"85907","lastModified":"1301902888000","name":"Mikkel Arendt","type":"Person","_key":"62851"} +{"label":"Mira Wanting","version":19,"id":"85911","lastModified":"1301902888000","name":"Mira Wanting","type":"Person","_key":"62852"} +{"label":"Jon Lange","version":19,"id":"85912","lastModified":"1301902633000","name":"Jon Lange","type":"Person","_key":"62853"} +{"label":"Rikke Lylloff","version":17,"id":"85913","lastModified":"1301902633000","name":"Rikke Lylloff","type":"Person","_key":"62854"} +{"label":"Offscreen","description":"Actor Nicolas Bro reigns supreme in the role of Nicolas Bro - a man intent on making a film about himself. After his director friend Christoffer Boe lends him a camera, his selfmonitoring is so hair-raisingly private that it becomes impossible to separate fact from fiction.","id":"16009","runtime":93,"imdbId":"tt0418982","version":54,"lastModified":"1301858466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56c\/4bc949cf017a3c57fe02056c\/offscreen-mid.jpg","title":"Offscreen","releaseDate":1155859200000,"language":"en","type":"Movie","_key":"62855"} +{"label":"R\u00e5zone","description":"Christina is living in a suburb to Copenhagen. With her class mates Cecilie, Trine and Pernille she slacks her school work, living mostly for the weekends of gate crashing, getting drunk, experimenting with drugs and scoring guys. But her world is turned upside down when Cecilie's boyfriend Shaid starts hitting on her, and Cecilie mistakenly believes the two of them are making out.","id":"16010","runtime":93,"imdbId":"tt0466500","version":26,"lastModified":"1301421347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/585\/4bc949d3017a3c57fe020585\/razone-mid.jpg","title":"R\u00e5zone","releaseDate":1152230400000,"language":"en","type":"Movie","_key":"62856"} +{"label":"Se til venstre, der er en svensker","description":"No overview found.","id":"16012","runtime":90,"imdbId":"tt0338418","version":44,"lastModified":"1301908416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a9\/4bc949d6017a3c57fe0205a9\/se-til-venstre-der-er-en-svensker-mid.jpg","title":"Se til venstre, der er en svensker","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62857"} +{"label":"Supervoksen","description":"No overview found.","id":"16013","runtime":90,"imdbId":"tt0776804","version":63,"lastModified":"1301907009000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ba\/4bc949d9017a3c57fe0205ba\/supervoksen-mid.jpg","title":"Supervoksen","releaseDate":1155254400000,"language":"en","type":"Movie","_key":"62858"} +{"label":"Spr\u00e6ngfarlig bombe","description":"Tony (Ulrich Thomsen) is angry and wants his money back after watching world-famous director, Claus Volter's (Nikolaj Lie Kaas) new film. Tony just got out of prison for violent behaviour.","id":"16014","runtime":90,"imdbId":"tt0484368","version":34,"lastModified":"1301905317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c3\/4bc949d9017a3c57fe0205c3\/sprngfarlig-bombe-mid.jpg","genre":"Comedy","title":"Spr\u00e6ngfarlig bombe","releaseDate":1156464000000,"language":"en","type":"Movie","_key":"62859"} +{"label":"To verdener","description":"The daughter of a Jehovah's Witness is forced to choose between religion and love when she falls for someone outside her faith.","id":"16015","runtime":116,"imdbId":"tt1065318","version":112,"lastModified":"1301907382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d0\/4bc949db017a3c57fe0205d0\/to-verdener-mid.jpg","studio":"Nordisk Film","title":"To verdener","releaseDate":1203638400000,"language":"en","type":"Movie","_key":"62860"} +{"label":"Johan Philip Asb\u00e6k","version":19,"id":"90060","lastModified":"1301902325000","name":"Johan Philip Asb\u00e6k","type":"Person","_key":"62861"} +{"label":"Rosalinde Mynster","version":16,"id":"90061","lastModified":"1301902677000","name":"Rosalinde Mynster","type":"Person","_key":"62862"} +{"label":"Rejsen til Saturn","description":"A Danish crew of misfits travel to Saturn in search for natural resources. However, the planet is colonized by a ruthless army of Aliens that turn their eye on Earth and invade Denmark. Thus, the crew change their mission to liberate Denmark.","id":"16016","runtime":90,"imdbId":"tt1095423","trailer":"http:\/\/www.youtube.com\/watch?v=b_8AqAYbyz0","version":67,"lastModified":"1301903875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dd\/4bc949df017a3c57fe0205dd\/rejsen-til-saturn-mid.jpg","studio":"Nordisk Film","genre":"Action","title":"Rejsen til Saturn","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"62863"} +{"label":"Frank Hvam","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4c82a23e7b9aa1419a000028\/frank-hvam-profile.jpg","version":32,"id":"89973","lastModified":"1301902056000","name":"Frank Hvam","type":"Person","_key":"62864"} +{"label":"Prag","description":"Christoffer and Maja's trip to Prague to bring back Chistoffer's deceased father, evolves into the story of a brake-up. With the dead father lurking in the background, secrets gradually emerge threatening to destroy their marriage.","id":"16017","runtime":92,"imdbId":"tt0855975","version":69,"lastModified":"1301906607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ea\/4bc949e1017a3c57fe0205ea\/prag-mid.jpg","title":"Prag","releaseDate":1162512000000,"language":"en","type":"Movie","_key":"62865"} +{"label":"Milan Duchek","version":18,"id":"79039","lastModified":"1301901864000","name":"Milan Duchek","type":"Person","_key":"62866"} +{"label":"American Hardcore","description":"Inspired by Steven Blush's book \"American Hardcore: A tribal history\" Paul Rachman's feature documentary debut is a chronicle of the underground hardcore punk years from 1979 to 1986. Interviews and rare live footage from artists such as Black Flag, Bad Brains, Minor Threat, SS Decontrol and the Dead Kennedys.","id":"16018","runtime":100,"imdbId":"tt0419434","homepage":"http:\/\/www.sonyclassics.com\/americanhardcore\/","version":214,"lastModified":"1301903399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f8\/4bc949e3017a3c57fe0205f8\/american-hardcore-mid.jpg","studio":"AHC Productions","genre":"Documentary","title":"American Hardcore","releaseDate":1136073600000,"language":"en","tagline":"The history of American Punk Rock 1980-1986","type":"Movie","_key":"62867"} +{"label":"Paul Rachman","version":19,"id":"109822","lastModified":"1301902357000","name":"Paul Rachman","type":"Person","_key":"62868"} +{"label":"Mike Patton","version":22,"id":"122451","lastModified":"1301903067000","name":"Mike Patton","type":"Person","_key":"62869"} +{"label":"Ian MacKaye","version":22,"id":"112254","lastModified":"1301902057000","name":"Ian MacKaye","type":"Person","_key":"62870"} +{"label":"Lost Islands","description":"\u05e1\u05d9\u05e4\u05d5\u05e8\u05dd \u05e9\u05dc \u05ea\u05d0\u05d5\u05de\u05d9\u05dd \u05d1\u05e0\u05d9 18, \u05d0\u05e8\u05d6 (\u05de\u05d9\u05db\u05d0\u05dc \u05de\u05d5\u05e9\u05d5\u05e0\u05d5\u05d1) \u05d5\u05e2\u05d5\u05e4\u05e8 (\u05d0\u05d5\u05e9\u05e8\u05d9 \u05db\u05d4\u05df), \u05e9\u05e0\u05d5\u05dc\u05d3\u05d5 \u05dc\u05de\u05e9\u05e4\u05d7\u05d4 \u05de\u05e8\u05d5\u05d1\u05ea \u05d9\u05dc\u05d3\u05d9\u05dd \u05d1\u05db\u05e4\u05e8 \u05e1\u05d1\u05d0 \u05e9\u05dc \u05e9\u05e0\u05d5\u05ea \u05d4-80. \u05e2\u05d5\u05e4\u05e8 \u05d4\u05d5\u05d0 \u05d4\u05d1\u05df \u05d4\u05de\u05d5\u05e2\u05d3\u05e3 \u05e2\u05dc \u05d0\u05d9\u05de\u05d0 (\u05d0\u05d5\u05e8\u05dc\u05d9 \u05d6\u05d9\u05dc\u05d1\u05e8\u05e9\u05e5), \u05d5\u05d0\u05e8\u05d6 \u05de\u05e0\u05e1\u05d4 \u05ea\u05de\u05d9\u05d3 \u05dc\u05e8\u05e6\u05d5\u05ea \u05d0\u05d5\u05ea\u05d4. \u05d3\u05d5\u05d3 (\u05e4\u05d9\u05e0\u05d9 \u05d8\u05d1\u05d2\u05e8) \u05d4\u05d1\u05df \u05d4\u05d1\u05db\u05d5\u05e8, \u05e4\u05d5\u05e2\u05dc \u05dc\u05d4\u05d2\u05e9\u05d9\u05dd \u05d0\u05ea \u05d7\u05dc\u05d5\u05de\u05d5 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d9\u05e0\u05e1\u05d8\u05dc\u05d8\u05d5\u05e8. \u05d4\u05ea\u05d0\u05d5\u05de\u05d9\u05dd \u05d9\u05d7\u05d3 \u05e2\u05dd \u05d7\u05d1\u05e8\u05dd \u05d4\u05d8\u05d5\u05d1, '\u05e1\u05d1\u05ea\u05d0' (\u05e2\u05e4\u05e8 \u05e9\u05db\u05d8\u05e8), \u05de\u05ea\u05d0\u05d4\u05d1\u05d9\u05dd \u05d1\u05e0\u05d8\u05e2 (\u05d9\u05d5\u05d1\u05dc \u05e9\u05e8\u05e3), \u05d1\u05d7\u05d5\u05e8\u05d4 \u05d1\u05ea \u05d2\u05d9\u05dc\u05dd, \u05ea\u05d5\u05e9\u05d1\u05ea \u05d7\u05d3\u05e9\u05d4 \u05d1\u05e9\u05db\u05d5\u05e0\u05ea\u05dd. \u05ea\u05d0\u05d5\u05e0\u05ea \u05d3\u05e8\u05db\u05d9\u05dd \u05de\u05e9\u05e0\u05d4 \u05d0\u05ea \u05d7\u05d9\u05d9\u05d4\u05dd \u05dc\u05e2\u05d5\u05dc\u05de\u05d9\u05dd.","id":"16019","runtime":101,"imdbId":"tt1210351","version":358,"lastModified":"1301803593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/601\/4bc949e4017a3c57fe020601\/16019-mid.jpg","genre":"Drama","title":"Lost Islands","releaseDate":1215043200000,"language":"en","type":"Movie","_key":"62871"} +{"label":"Reshef Levy","version":18,"id":"79046","lastModified":"1301902067000","name":"Reshef Levy","type":"Person","_key":"62872"} +{"label":"Day Zero","description":"The military draft is back. Three best friends are drafted and given 30 days to report for duty. In that time they're forced to confront everything they believe about courage, duty, love, friendship and honor. If called to serve, what would you do?","id":"16020","runtime":92,"imdbId":"tt0768183","version":235,"lastModified":"1301904517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60a\/4bc949e4017a3c57fe02060a\/day-zero-mid.jpg","genre":"Drama","title":"Day Zero","releaseDate":1177632000000,"language":"en","type":"Movie","_key":"62873"} +{"label":"Nine Lives","description":"Captives of the very relationships that define and sustain them, nine women resiliently meet the travails and disappointments of life.","id":"16022","runtime":115,"imdbId":"tt0420015","version":383,"lastModified":"1301903443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/613\/4bc949e5017a3c57fe020613\/nine-lives-mid.jpg","genre":"Drama","title":"Nine Lives","releaseDate":1106524800000,"language":"en","type":"Movie","_key":"62874"} +{"label":"South Park: Imaginationland","description":"Some of the boys in South Park elementary find themselves on a balloon ride to an imaginary land. At arrival they're faced with an unimaginably threat. ","id":"16023","runtime":67,"imdbId":"tt1308667","trailer":"http:\/\/www.youtube.com\/watch?v=3167","version":299,"lastModified":"1301902594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4bc949e7017a3c57fe020625\/south-park-imaginationland-mid.jpg","genre":"Animation","title":"South Park: Imaginationland","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"62875"} +{"label":"Adrien Beard","version":18,"id":"111465","lastModified":"1301902633000","name":"Adrien Beard","type":"Person","_key":"62876"} +{"label":"Mona Marshall","version":18,"id":"111466","lastModified":"1301902463000","name":"Mona Marshall","type":"Person","_key":"62877"} +{"label":"April Stewart","version":18,"id":"111467","lastModified":"1301902633000","name":"April Stewart","type":"Person","_key":"62878"} +{"label":"Unforgiven","description":"Unforgiven is the story of Ruth Slater (Suranne Jones),a woman released from prison on license after serving 15 years for the murder of two policemen.Ruth has spent half of her life imprisoned, and now faces the daunting prospect of rebuilding her life whilst being irresistibly drawn to the place that haunts her,Upper Hanging Stones Farm. In spite of trying to focus on the future and her new boyfr","id":"16025","runtime":180,"imdbId":"tt1315063","version":125,"lastModified":"1301908567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/638\/4bc949e8017a3c57fe020638\/unforgiven-mid.jpg","title":"Unforgiven","releaseDate":1232323200000,"language":"en","type":"Movie","_key":"62879"} +{"label":"S\u00e4llskapsresan","description":"Stig-Helmer Olsson isn't the fashionable jet-set type, but, for the first time in his life, he's going to travel abroad. He chooses a trip to the Canary Islands over Christmas. Before leaving, his doctor asks him to bring a package to a friend of his. Without Stig-Helmer knowing it, the package contains 50,000 SEK, which is illegal to bring out of the country. However, Stig-Helmer's bag with the package disappears at the airport. Dr. Levander's friend believes that Stig-Helmer has stolen the mon","id":"16026","runtime":107,"imdbId":"tt0081590","version":61,"lastModified":"1301904225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/641\/4bc949e8017a3c57fe020641\/sallskapsresan-mid.jpg","studio":"Svensk Filmindustri (SF)","genre":"Comedy","title":"S\u00e4llskapsresan","releaseDate":335750400000,"language":"en","type":"Movie","_key":"62880"} +{"label":"Lasse \u00c5berg","version":34,"id":"79056","lastModified":"1301901561000","name":"Lasse \u00c5berg","type":"Person","_key":"62881"} +{"label":"Jon Skolmen","version":27,"id":"79057","lastModified":"1301902033000","name":"Jon Skolmen","type":"Person","_key":"62882"} +{"label":"Sven Melander","version":18,"id":"79058","lastModified":"1301901474000","name":"Sven Melander","type":"Person","_key":"62883"} +{"label":"Weiron Holmberg","version":19,"id":"79059","lastModified":"1301902067000","name":"Weiron Holmberg","type":"Person","_key":"62884"} +{"label":"Lottie Ejebrant","version":18,"id":"79060","lastModified":"1301902067000","name":"Lottie Ejebrant","type":"Person","_key":"62885"} +{"label":"Kim Anderzon","version":20,"id":"79061","lastModified":"1301902393000","name":"Kim Anderzon","type":"Person","_key":"62886"} +{"label":"Roland Jansson","version":18,"id":"79062","lastModified":"1301902241000","name":"Roland Jansson","type":"Person","_key":"62887"} +{"label":"Peter Hald","version":20,"id":"79063","lastModified":"1301901534000","name":"Peter Hald","type":"Person","_key":"62888"} +{"label":"Vampire Diary","description":"Whilst making a documentary, filmmaker Holly meets the highly enigmatic and beautiful Vicki who claims she is a real-life vampire.","id":"16027","runtime":90,"imdbId":"tt0853267","homepage":"http:\/\/www.vampirediary.co.uk\/","version":457,"lastModified":"1301903483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64a\/4bc949ec017a3c57fe02064a\/vampire-diary-mid.jpg","genre":"Drama","title":"Vampire Diary","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62889"} +{"label":"They","description":"After witnessing a horrific and traumatic event, Julia Lund, a graduate student in psychology, gradually comes to the realization that everything which scared her as a child could be real. And what's worse, it might be coming back to get her..","id":"16028","runtime":89,"imdbId":"tt0283632","version":153,"lastModified":"1302010863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/657\/4bc949ec017a3c57fe020657\/they-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"They","releaseDate":1040947200000,"language":"en","type":"Movie","_key":"62890"} +{"label":"Tree of Knowledge","description":"As a group of Danish children pass into adolescence, gradually the most popular girl becomes an outcast, for trivial reasons that she never understands.","id":"16029","runtime":110,"imdbId":"tt0082633","version":37,"lastModified":"1301417357000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/669\/4bc949ee017a3c57fe020669\/kundskabens-tr-mid.jpg","genre":"Drama","title":"Tree of Knowledge","releaseDate":374457600000,"language":"en","type":"Movie","_key":"62891"} +{"label":"K\u00e6restesorger","description":"Jonas og Agnete er p\u00e5 mange m\u00e5der hinandens mods\u00e6tninger, da de allerede i 1.g bliver k\u00e6rester p\u00e5 Viborg Katedralskole i 1960'ernes Danmark. Jonas er den charmerende dreng, der er vellidt af alle, b\u00e5de kammerater og l\u00e6rere, men som ikke er videre arbejdsom i skolen. Agnete, derimod, er en akademisk ambiti\u00f8s og begavet pige, som til geng\u00e6ld ikke er s\u00e6rlig moden i livets andre forhold og som tynges af et ansp\u00e6ndt forhold til sin familie. Trods deres umiddelbare forskelle er de st\u00e6rkt draget af hin","id":"16030","runtime":116,"imdbId":"tt1087861","trailer":"http:\/\/www.youtube.com\/watch?v=vAEtPVPw2PE","version":37,"lastModified":"1300980242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67a\/4bc949f0017a3c57fe02067a\/krestesorger-mid.jpg","genre":"Drama","title":"K\u00e6restesorger","releaseDate":1236902400000,"language":"en","type":"Movie","_key":"62892"} +{"label":"Nils Malmros","version":22,"id":"121516","lastModified":"1301902310000","name":"Nils Malmros","type":"Person","_key":"62893"} +{"label":"Thomas Ernst","version":9,"id":"227122","lastModified":"1301904023000","name":"Thomas Ernst","type":"Person","_key":"62894"} +{"label":"Simone Tang","version":9,"id":"227123","lastModified":"1301904021000","name":"Simone Tang","type":"Person","_key":"62895"} +{"label":"Jesper Svane","version":9,"id":"227124","lastModified":"1301904023000","name":"Jesper Svane","type":"Person","_key":"62896"} +{"label":"Sofie Linde Lauridsen","version":9,"id":"227125","lastModified":"1301904019000","name":"Sofie Linde Lauridsen","type":"Person","_key":"62897"} +{"label":"Jacob Grosen Pedersen","version":9,"id":"227126","lastModified":"1301904021000","name":"Jacob Grosen Pedersen","type":"Person","_key":"62898"} +{"label":"Peter Schr\u00f8der","version":26,"id":"88145","lastModified":"1301902980000","name":"Peter Schr\u00f8der","type":"Person","_key":"62899"} +{"label":"Lille soldat","description":"A soldier returning from war is hired by her own father to drive his prostitutes around town. She calls upon herself to help one of them.","id":"16031","runtime":102,"imdbId":"tt1158889","version":48,"lastModified":"1301419750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/687\/4bc949f2017a3c57fe020687\/lille-soldat-mid.jpg","genre":"Drama","title":"Lille soldat","releaseDate":1226620800000,"language":"en","type":"Movie","_key":"62900"} +{"label":"Midsommer","description":"No overview found.","id":"16032","runtime":94,"imdbId":"tt0339385","version":48,"lastModified":"1300980242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/690\/4bc949f3017a3c57fe020690\/midsommer-mid.jpg","title":"Midsommer","releaseDate":1058486400000,"language":"en","type":"Movie","_key":"62901"} +{"label":"Nynne","description":"The life of Nynne is based on GUCCI bags and Chanel products, carpaccio and countless visits to caf\u00e9s, loose relationships with men who screams 'good luck!' when they cum, unused memberships to the local gym and a lenient relationship with mixing champagne, white wine, red wine, cognac, gin, tequila and beer. It goes with out saying: Nynne has yet to experience her Kodak moment.","id":"16033","runtime":94,"imdbId":"tt0425314","version":57,"lastModified":"1301801119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a1\/4bc949f4017a3c57fe0206a1\/nynne-mid.jpg","genre":"Comedy","title":"Nynne","releaseDate":1130457600000,"language":"en","type":"Movie","_key":"62902"} +{"label":"Remix","description":"Talented 16-year-old Ruben gets the chance to have what most teenagers want - fame and success. But what are the costs?","id":"16034","runtime":95,"imdbId":"tt0477823","version":105,"lastModified":"1301520862000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ae\/4bc949f6017a3c57fe0206ae\/remix-mid.jpg","studio":"Zeitgeist","title":"Remix","releaseDate":1201219200000,"language":"en","type":"Movie","_key":"62903"} +{"label":"Gui ma tian shi","description":"A Taoist priest is ordered to find a Cherry Boy to appease his temple's ancestors. The boy in question is a young man who lives with his grandmother, trying to protect a sacred writ from a bright red, snarling bad guy. And let's just say insanity follows!","id":"16036","runtime":95,"imdbId":"tt0085628","trailer":"http:\/\/www.youtube.com\/watch?v=1111","version":49,"lastModified":"1301907253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c5\/4bc949f7017a3c57fe0206c5\/gui-ma-tian-shi-mid.jpg","genre":"Eastern","title":"Gui ma tian shi","releaseDate":467856000000,"language":"en","type":"Movie","_key":"62904"} +{"label":"Til d\u00f8den os skiller","description":"Ordinary Jan has no easy life. He is by far the most unpopular employee at work. At home it's even worse. His marriage with the not so ordinary Bente is on the verge of a breakdown. Jan's boss finally sends him into group therapy where an unlikely friendship emerges between Jan and the two mechanics Rudy and Alf.","id":"16037","runtime":100,"imdbId":"tt0867609","version":36,"lastModified":"1301414892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6df\/4bc949fd017a3c57fe0206df\/til-dden-os-skiller-mid.jpg","title":"Til d\u00f8den os skiller","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"62905"} +{"label":"T\u00e6l til 100","description":"No overview found.","id":"16038","runtime":80,"imdbId":"tt0386835","version":25,"lastModified":"1301908622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ec\/4bc949fe017a3c57fe0206ec\/tl-til-100-mid.jpg","title":"T\u00e6l til 100","releaseDate":1076025600000,"language":"en","type":"Movie","_key":"62906"} +{"label":"Zappa","description":"Denmark, 1961. Bj\u00f8rn, a middle-class boy in his early teens, wants to be accepted by Steen, a bullying peer of his with wealthy but freezingly cold parents. Bj\u00f8rn's other good friend is Mulle, a cheerful and more childish working-class boy. All three seem friends at first, but gradually Steen starts pushing Mulle away while pulling the impressionable Bj\u00f8rn with him towards more and more violence.","id":"16039","runtime":103,"imdbId":"tt0088445","version":60,"lastModified":"1301907419000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f5\/4bc949ff017a3c57fe0206f5\/zappa-mid.jpg","title":"Zappa","releaseDate":415584000000,"language":"en","type":"Movie","_key":"62907"} +{"label":"Veninder","description":"No overview found.","id":"16040","runtime":85,"imdbId":"tt0473718","version":25,"lastModified":"1300980245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/702\/4bc94a00017a3c57fe020702\/veninder-mid.jpg","title":"Veninder","releaseDate":1122595200000,"language":"en","type":"Movie","_key":"62908"} +{"label":"AKA Tommy Chong","description":"Documentary about Tommy Chong's federal prosecution under the Bush administration for selling bongs over the Internet. [Material after the credits.]","id":"16042","runtime":84,"imdbId":"tt0478090","version":130,"lastModified":"1301905809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/713\/4bc94a02017a3c57fe020713\/aka-tommy-chong-mid.jpg","genre":"Documentary","title":"AKA Tommy Chong","releaseDate":1150243200000,"language":"en","type":"Movie","_key":"62909"} +{"label":"Josh Gilbert","version":19,"id":"136541","lastModified":"1301902699000","name":"Josh Gilbert","type":"Person","_key":"62910"} +{"label":"Tempelriddernes skat","description":"No overview found.","id":"16043","runtime":85,"imdbId":"tt0488059","version":46,"lastModified":"1301419760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/728\/4bc94a04017a3c57fe020728\/tempelriddernes-skat-mid.jpg","title":"Tempelriddernes skat","releaseDate":1138924800000,"language":"en","type":"Movie","_key":"62911"} +{"label":"Tempelriddernes skat II","description":"No overview found.","id":"16044","runtime":82,"imdbId":"tt0847764","version":30,"lastModified":"1301907437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73d\/4bc94a07017a3c57fe02073d\/tempelriddernes-skat-ii-mid.jpg","title":"Tempelriddernes skat II","releaseDate":1175212800000,"language":"en","type":"Movie","_key":"62912"} +{"label":"Tempelriddernes skat III: Mysteriet om slangekronen","description":"No overview found.","id":"16045","runtime":85,"imdbId":"tt1105743","version":50,"lastModified":"1301907203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/752\/4bc94a0a017a3c57fe020752\/tempelriddernes-skat-iii-mysteriet-om-slangekronen-mid.jpg","studio":"M&M Productions","title":"Tempelriddernes skat III: Mysteriet om slangekronen","releaseDate":1205452800000,"language":"en","type":"Movie","_key":"62913"} +{"label":"Giacomo Campeotto","version":21,"id":"121527","lastModified":"1301902700000","name":"Giacomo Campeotto","type":"Person","_key":"62914"} +{"label":"Julie Grundtvig Wester","version":18,"id":"102893","lastModified":"1301902325000","name":"Julie Grundtvig Wester","type":"Person","_key":"62915"} +{"label":"Christian Heldbo Wienberg","version":21,"id":"121539","lastModified":"1301902520000","name":"Christian Heldbo Wienberg","type":"Person","_key":"62916"} +{"label":"Nicklas Svale Andersen","version":20,"id":"121540","lastModified":"1301902676000","name":"Nicklas Svale Andersen","type":"Person","_key":"62917"} +{"label":"Frederikke Thomassen","version":20,"id":"121541","lastModified":"1301902504000","name":"Frederikke Thomassen","type":"Person","_key":"62918"} +{"label":"Emma Leth","version":20,"id":"121542","lastModified":"1301902987000","name":"Emma Leth","type":"Person","_key":"62919"} +{"label":"Peter Gilsfort","version":21,"id":"121543","lastModified":"1301903034000","name":"Peter Gilsfort","type":"Person","_key":"62920"} +{"label":"Cecilia Zwick-Nash","version":21,"id":"121544","lastModified":"1301903034000","name":"Cecilia Zwick-Nash","type":"Person","_key":"62921"} +{"label":"Monica Attard","version":20,"id":"121545","lastModified":"1301902987000","name":"Monica Attard","type":"Person","_key":"62922"} +{"label":"Manuel Cauchi","version":20,"id":"121546","lastModified":"1301902987000","name":"Manuel Cauchi","type":"Person","_key":"62923"} +{"label":"Rob Richards","version":20,"id":"121547","lastModified":"1301902987000","name":"Rob Richards","type":"Person","_key":"62924"} +{"label":"Silvio Catania","version":20,"id":"121548","lastModified":"1301902504000","name":"Silvio Catania","type":"Person","_key":"62925"} +{"label":"Malcolm Galea","version":20,"id":"121549","lastModified":"1301902987000","name":"Malcolm Galea","type":"Person","_key":"62926"} +{"label":"Christian Damsgaard","version":20,"id":"121550","lastModified":"1301902987000","name":"Christian Damsgaard","type":"Person","_key":"62927"} +{"label":"Donald Andersen","version":20,"id":"121551","lastModified":"1301902987000","name":"Donald Andersen","type":"Person","_key":"62928"} +{"label":"The Take","description":"In suburban Buenos Aires, thirty unemployed ceramics workers walk into their idle factory, roll out sleeping mats and refuse to leave. All they want is to re-start the silent machines. But this simple act - the take - has the power to turn the globalization debate on its head. Armed only with slingshots and an abiding faith in shop-floor democracy, the workers face off against the bosses, bankers and a whole system that sees their beloved factories as nothing more than scrap metal for sale.","id":"16046","runtime":87,"imdbId":"tt0426596","homepage":"http:\/\/www.thetake.org\/","version":200,"lastModified":"1301905289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbd\/4c747b725e73d65f7d000dbd\/the-take-mid.jpg","genre":"Documentary","title":"The Take","releaseDate":1110499200000,"language":"en","tagline":"Occupy. Resist. Produce.","type":"Movie","_key":"62929"} +{"label":"Avi Lewis","version":21,"id":"130135","lastModified":"1301902786000","name":"Avi Lewis","type":"Person","_key":"62930"} +{"label":"Matilde Adorno","version":21,"id":"130136","lastModified":"1301902786000","name":"Matilde Adorno","type":"Person","_key":"62931"} +{"label":"G\u00e5 med fred Jamil - Ma salama Jamil","description":"An Arabic tale that takes place in Scandinavia. About ancient religious hatred, about love, punishment, guilt and redemption, about being responsible for one's own actions and refusing a path of violence. Jamil stands in the middle. He is fighting the war of his life; a war within himself.","id":"16047","runtime":90,"imdbId":"tt0431842","version":26,"lastModified":"1300980246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/764\/4bc94a0c017a3c57fe020764\/ga-med-fred-jamil-ma-salama-jamil-mid.jpg","title":"G\u00e5 med fred Jamil - Ma salama Jamil","releaseDate":1212105600000,"language":"en","type":"Movie","_key":"62932"} +{"label":"All About Anna","description":"Anna is a young costume designer, focused on her job and wary of getting caught in romantic relationships. She has just found a new apartment, and is tempted to let her latest boyfriend, Frank, move in with her. Instead, she finds a tenant: The flamboyant, fun-loving Camilla, who shares Anna\u2019s views on love and commitment. For both of them, it\u2019s all about fun.","id":"16048","runtime":91,"imdbId":"tt0349080","version":94,"lastModified":"1301798820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/779\/4bc94a11017a3c57fe020779\/all-about-anna-mid.jpg","genre":"Drama","title":"All About Anna","releaseDate":1132790400000,"language":"en","type":"Movie","_key":"62933"} +{"label":"Gry Bay","version":16,"id":"101922","lastModified":"1301902463000","name":"Gry Bay","type":"Person","_key":"62934"} +{"label":"Adrian Bouchet","version":16,"id":"101923","lastModified":"1301902888000","name":"Adrian Bouchet","type":"Person","_key":"62935"} +{"label":"Eileen Daly","version":31,"id":"86333","lastModified":"1301902354000","name":"Eileen Daly","type":"Person","_key":"62936"} +{"label":"Thomas Raft","version":16,"id":"101924","lastModified":"1301902888000","name":"Thomas Raft","type":"Person","_key":"62937"} +{"label":"Jungledyret Hugo 3: Fr\u00e6k, flabet og fri","description":"Jungo is the rarest creature in the world, but also the most popular! Can his best buddies Rita the fox, Zik and Zak the monkeys, and an eager young puppy help him escape the clutches of a mad scientist intent on cloning him, a senseless psychologist who wants to analyze him, and a talk show hostess who wants Jungo to advertise her perfume?","id":"16049","runtime":72,"imdbId":"tt1087858","version":34,"lastModified":"1301906945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78a\/4bc94a13017a3c57fe02078a\/jungledyret-hugo-3-frk-flabet-og-fri-mid.jpg","title":"Jungledyret Hugo 3: Fr\u00e6k, flabet og fri","releaseDate":1198195200000,"language":"en","type":"Movie","_key":"62938"} +{"label":"Zoomerne","description":"No overview found.","id":"16050","runtime":0,"imdbId":"tt1324062","version":27,"lastModified":"1301907435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a9\/4bc94a17017a3c57fe0207a9\/zoomerne-mid.jpg","title":"Zoomerne","releaseDate":1244160000000,"language":"en","type":"Movie","_key":"62939"} +{"label":"Selena","description":"Selena Quintanilla was a major figure in Tejano music, a Grammy-winning recording artist, a beloved star in the American Southwest and Mexico, and seemed poised to cross over into mainstream popularity on the U.S. pop charts when she was murdered on March 31, 1995 by the president of her fan club. Written and directed by Gregory Nava, this biopic concentrates on Selena's relationship with her fami","id":"16052","runtime":127,"imdbId":"tt0120094","version":205,"lastModified":"1301904084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b7\/4bc94a18017a3c57fe0207b7\/selena-mid.jpg","studio":"Q Productions","genre":"Documentary","title":"Selena","releaseDate":858902400000,"language":"en","type":"Movie","_key":"62940"} +{"label":"The Good Student","description":"When Ally, a popular teen and local celebrity goes missing, her small suburban town erupts in panic.","id":"16053","runtime":90,"imdbId":"tt0478210","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/the-good-student","version":156,"lastModified":"1301903218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c5\/4bc94a19017a3c57fe0207c5\/the-good-student-mid.jpg","studio":"Screen Media Ventures","genre":"Comedy","title":"The Good Student","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"62941"} +{"label":"Paula Devicq","version":13,"id":"162496","lastModified":"1301903438000","name":"Paula Devicq","type":"Person","_key":"62942"} +{"label":"Mark Kassen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ada\/4d4c72d15e73d617b3001ada\/mark-kassen-profile.jpg","version":15,"id":"176557","lastModified":"1301903337000","name":"Mark Kassen","type":"Person","_key":"62943"} +{"label":"David Ostry","version":21,"id":"124337","lastModified":"1301902531000","name":"David Ostry","type":"Person","_key":"62944"} +{"label":"Barney - Now I Know My ABC's","description":"Kids everywhere flock to Barney for fun, dancing, and learning. Baby Bop is so excited to be able to write her name, and the kids are planning an art show of all the brightest hues, using their imaginations to learn about shapes and colors. Baby Bop is keeping everyone guessing as to what she will draw that's shaped like a rectangle: it's soft, yellow, and friendly for sure!","id":"16054","runtime":126,"imdbId":"tt0878102","version":68,"lastModified":"1301907412000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ce\/4bc94a1a017a3c57fe0207ce\/barney-now-i-know-my-abc-s-mid.jpg","studio":"HIT Entertainment","title":"Barney - Now I Know My ABC's","releaseDate":1089936000000,"language":"en","type":"Movie","_key":"62945"} +{"label":"2009 BCS Championship: Oklahoma vs. Florida","description":"With college football's national championship on the line, Heisman Trophy winning quarterbacks Tim Tebow and Sam Bradford square off as the top-ranked Florida Gators take on the second-ranked Oklahoma Sooners at Dolphin Stadium in Miami. After upsetting Alabama to claim the SEC championship, the Urban Meyer-coached Gators enter this contest looking to secure their second BCS title in 3 seasons.","id":"16055","runtime":129,"version":45,"lastModified":"1301908533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d3\/4bc94a1a017a3c57fe0207d3\/2009-bcs-championship-oklahoma-vs-florida-mid.jpg","studio":"20th Century Fox Television","genre":"Sports Film","title":"2009 BCS Championship: Oklahoma vs. Florida","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62946"} +{"label":"Tim Tebow","version":16,"id":"79065","lastModified":"1301902365000","name":"Tim Tebow","type":"Person","_key":"62947"} +{"label":"Florida Gators","version":16,"id":"79066","lastModified":"1301902357000","name":"Florida Gators","type":"Person","_key":"62948"} +{"label":"Sam Bradford","version":16,"id":"79067","lastModified":"1301902361000","name":"Sam Bradford","type":"Person","_key":"62949"} +{"label":"Oklahoma Sooners","version":16,"id":"79068","lastModified":"1301902357000","name":"Oklahoma Sooners","type":"Person","_key":"62950"} +{"label":"Winged Creatures","description":"A group of strangers form a unique relationship with each other after surviving a random shooting at a Los Angeles diner.","id":"16056","runtime":100,"imdbId":"tt0948547","trailer":"http:\/\/www.youtube.com\/watch?v=1056","homepage":"http:\/\/www.wingedcreatures.com\/","version":125,"lastModified":"1301903261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e4\/4bc94a1f017a3c57fe0207e4\/winged-creatures-mid.jpg","studio":"Artina Films","genre":"Crime","title":"Winged Creatures","releaseDate":1214265600000,"language":"en","type":"Movie","_key":"62951"} +{"label":"Ankur Bhatt","version":21,"id":"79070","lastModified":"1301901765000","name":"Ankur Bhatt","type":"Person","_key":"62952"} +{"label":"Michael Drummond","version":20,"id":"79071","lastModified":"1301901933000","name":"Michael Drummond","type":"Person","_key":"62953"} +{"label":"Gina Gallego","version":24,"id":"79073","lastModified":"1301901636000","name":"Gina Gallego","type":"Person","_key":"62954"} +{"label":"Ted Garcia","version":21,"id":"79074","lastModified":"1301901828000","name":"Ted Garcia","type":"Person","_key":"62955"} +{"label":"Gwen Holloway","version":21,"id":"79075","lastModified":"1301901813000","name":"Gwen Holloway","type":"Person","_key":"62956"} +{"label":"Cohl Klop","version":21,"id":"79076","lastModified":"1301901823000","name":"Cohl Klop","type":"Person","_key":"62957"} +{"label":"Mela Lee","version":20,"id":"79077","lastModified":"1301901765000","name":"Mela Lee","type":"Person","_key":"62958"} +{"label":"Brooke Mackenzie","version":21,"id":"79078","lastModified":"1301901933000","name":"Brooke Mackenzie","type":"Person","_key":"62959"} +{"label":"Jamie McShane","version":21,"id":"79079","lastModified":"1301901813000","name":"Jamie McShane","type":"Person","_key":"62960"} +{"label":"Debrah Neal","version":20,"id":"79080","lastModified":"1301901765000","name":"Debrah Neal","type":"Person","_key":"62961"} +{"label":"Lu Parker","version":20,"id":"79081","lastModified":"1301901765000","name":"Lu Parker","type":"Person","_key":"62962"} +{"label":"Randall Park","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d34\/4cf5caf75e73d6299e000d34\/randall-park-profile.jpg","version":35,"id":"79082","lastModified":"1301901489000","name":"Randall Park","type":"Person","_key":"62963"} +{"label":"Tarina Pouncy","version":21,"id":"79083","lastModified":"1301901814000","name":"Tarina Pouncy","type":"Person","_key":"62964"} +{"label":"Jeff Rector","version":32,"id":"79084","lastModified":"1301901394000","name":"Jeff Rector","type":"Person","_key":"62965"} +{"label":"Santos Reyes","version":20,"id":"79085","lastModified":"1301901765000","name":"Santos Reyes","type":"Person","_key":"62966"} +{"label":"Kent Shocknek","version":27,"id":"79086","lastModified":"1301901933000","name":"Kent Shocknek","type":"Person","_key":"62967"} +{"label":"Robin Weigert","version":23,"id":"79087","lastModified":"1301901636000","name":"Robin Weigert","type":"Person","_key":"62968"} +{"label":"Whittni Wright","version":21,"id":"79088","lastModified":"1301901765000","name":"Whittni Wright","type":"Person","_key":"62969"} +{"label":"The Last Confession of Alexander Pearce","description":"Eight men escape from the most isolated prison on earth. Only one man survives and the story he recounts shocks the British establishment to the core. This story is the last confession of Alexander Pearce.","id":"16057","runtime":60,"imdbId":"tt1099204","version":102,"lastModified":"1301905296000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f1\/4bc94a20017a3c57fe0207f1\/the-last-confession-of-alexander-pearce-mid.jpg","studio":"Essential Media Entertainment","genre":"History","title":"The Last Confession of Alexander Pearce","releaseDate":1233187200000,"language":"en","type":"Movie","_key":"62970"} +{"label":"Don Hany","version":19,"id":"79089","lastModified":"1301902123000","name":"Don Hany","type":"Person","_key":"62971"} +{"label":"Tony Llewellyn-Jones","version":17,"id":"79090","lastModified":"1301902175000","name":"Tony Llewellyn-Jones","type":"Person","_key":"62972"} +{"label":"Richard Green","version":18,"id":"79091","lastModified":"1301902196000","name":"Richard Green","type":"Person","_key":"62973"} +{"label":"Tony Goodfellow","version":16,"id":"79092","lastModified":"1301902123000","name":"Tony Goodfellow","type":"Person","_key":"62974"} +{"label":"Peter Dowling","version":16,"id":"79093","lastModified":"1301902123000","name":"Peter Dowling","type":"Person","_key":"62975"} +{"label":"Matthew Preston","version":16,"id":"79094","lastModified":"1301902123000","name":"Matthew Preston","type":"Person","_key":"62976"} +{"label":"Martin Jacobs","version":17,"id":"79095","lastModified":"1301902123000","name":"Martin Jacobs","type":"Person","_key":"62977"} +{"label":"Take Away","description":"Tony Stilano and Trev Spackneys both own, live over and work in adjoining take-away fish shops in Melbourne. Although they have fallen into a habitual rivalry based on a cause long forgotten, the pair unite when the multinational fast-food outlet \"Burgies\" unveils a new store directly opposite the twin fish & chips shops.","id":"16058","runtime":88,"imdbId":"tt0295718","version":106,"lastModified":"1301906805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fa\/4bc94a20017a3c57fe0207fa\/take-away-mid.jpg","studio":"MacQuarie Film Corporation","genre":"Comedy","title":"Take Away","releaseDate":1060819200000,"language":"en","type":"Movie","_key":"62978"} +{"label":"Matthew Dyktynski","version":16,"id":"79105","lastModified":"1301902241000","name":"Matthew Dyktynski","type":"Person","_key":"62979"} +{"label":"Matthew Green","version":17,"id":"79107","lastModified":"1301902174000","name":"Matthew Green","type":"Person","_key":"62980"} +{"label":"Andrew Maj","version":16,"id":"79108","lastModified":"1301902241000","name":"Andrew Maj","type":"Person","_key":"62981"} +{"label":"Marita Wilcox","version":16,"id":"79109","lastModified":"1301902241000","name":"Marita Wilcox","type":"Person","_key":"62982"} +{"label":"Ben Anderson","version":16,"id":"79110","lastModified":"1301902241000","name":"Ben Anderson","type":"Person","_key":"62983"} +{"label":"Marc Gracie","version":22,"id":"75990","lastModified":"1301901720000","name":"Marc Gracie","type":"Person","_key":"62984"} +{"label":"En enkelt til Kors\u00f8r","description":"No overview found.","id":"16059","runtime":104,"imdbId":"tt1301706","version":26,"lastModified":"1301908623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80b\/4bc94a22017a3c57fe02080b\/en-enkelt-til-korsr-mid.jpg","title":"En enkelt til Kors\u00f8r","releaseDate":1221696000000,"language":"en","type":"Movie","_key":"62985"} +{"label":"Wasted","description":"A group of high school friends reunite in their hometown for the funeral of an old buddy, 'Bender'; they will spend a weekend struggling to accept that Bender escaped what they can't - adulthood.","id":"16060","runtime":0,"imdbId":"tt0466787","version":114,"lastModified":"1301903875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/810\/4bc94a22017a3c57fe020810\/wasted-mid.jpg","genre":"Drama","title":"Wasted","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"62986"} +{"label":"Tokyo Gore Police","description":"Set in a future-world vision of Tokyo where the police have been privatized and bitter self-mutilation is so casual that advertising is often specially geared to the \"cutter\" demographic, this is the story of samurai-sword-wielding Ruka and her mission to avenge her father's assassination. Ruka is a cop from a squad who's mission is to destroy homicidal mutant humans known as \"engineers\" possessin","id":"16061","runtime":110,"imdbId":"tt1183732","homepage":"http:\/\/www.tokyogorepolice.com\/","version":129,"lastModified":"1301902301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4bc94a26017a3c57fe02081d\/tokyo-zankoku-keisatsu-mid.jpg","studio":"Fever Dreams","genre":"Action","title":"Tokyo Gore Police","releaseDate":1222992000000,"language":"en","type":"Movie","_key":"62987"} +{"label":"Yoshihiro Nishimura","version":26,"id":"112280","lastModified":"1301902463000","name":"Yoshihiro Nishimura","type":"Person","_key":"62988"} +{"label":"Yukihide Benny","version":20,"id":"112282","lastModified":"1301901608000","name":"Yukihide Benny","type":"Person","_key":"62989"} +{"label":"Jiji B\u00fb","version":21,"id":"112283","lastModified":"1301901608000","name":"Jiji B\u00fb","type":"Person","_key":"62990"} +{"label":"Cay Izumi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d4a\/4d27f8367b9aa134cf001d4a\/cay-izumi-profile.jpg","version":21,"id":"147888","lastModified":"1301901843000","name":"Cay Izumi","type":"Person","_key":"62991"} +{"label":"Ayano Yamamoto","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ebc\/4d28301e7b9aa134cf001ebc\/ayano-yamamoto-profile.jpg","version":17,"id":"147896","lastModified":"1301902036000","name":"Ayano Yamamoto","type":"Person","_key":"62992"} +{"label":"Tsugumi Nagasawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08d\/4d2830307b9aa134d800208d\/tsugumi-nagasawa-profile.jpg","version":20,"id":"133193","lastModified":"1301902395000","name":"Tsugumi Nagasawa","type":"Person","_key":"62993"} +{"label":"Lee Evans : The Ultimate Experience","description":"No overview found.","id":"16063","runtime":67,"version":143,"lastModified":"1301907144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b6\/4d35eabb7b9aa177db00b0b6\/lee-evans-the-ultimate-experience-mid.jpg","genre":"Comedy","title":"Lee Evans : The Ultimate Experience","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62994"} +{"label":"On the Road with Judas","description":"No overview found.","id":"16064","runtime":92,"imdbId":"tt0484224","homepage":"http:\/\/www.ontheroadwithjudas.com\/","version":134,"lastModified":"1301907079000","studio":"All Day Buffet Films","genre":"Comedy","title":"On the Road with Judas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"62995"} +{"label":"Oyster Farmer","description":"A love story about a young man who runs away up an isolated Australian river and gets a job with eighth generation oyster famers. ","id":"16066","runtime":91,"imdbId":"tt0379918","version":267,"lastModified":"1301906242000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82f\/4bc94a27017a3c57fe02082f\/oyster-farmer-mid.jpg","studio":"Anthony Buckley Films","genre":"Drama","title":"Oyster Farmer","releaseDate":1120089600000,"language":"en","type":"Movie","_key":"62996"} +{"label":"Claudia Harrison","version":16,"id":"79127","lastModified":"1301902241000","name":"Claudia Harrison","type":"Person","_key":"62997"} +{"label":"Alan Cinis","version":16,"id":"79128","lastModified":"1301902241000","name":"Alan Cinis","type":"Person","_key":"62998"} +{"label":"Brady Kitchingham","version":16,"id":"79129","lastModified":"1301902241000","name":"Brady Kitchingham","type":"Person","_key":"62999"} +{"label":"Gary Henderson","version":16,"id":"79130","lastModified":"1301902241000","name":"Gary Henderson","type":"Person","_key":"63000"} +{"label":"Bill Wisely","version":16,"id":"79131","lastModified":"1301902241000","name":"Bill Wisely","type":"Person","_key":"63001"} +{"label":"Anna Reeves","version":17,"id":"79132","lastModified":"1301901864000","name":"Anna Reeves","type":"Person","_key":"63002"} +{"label":"Final Days of Planet Earth","description":"An archaeologist discovers that aliens posing as government officials are secretly harvesting human bodies in a bid to take over earth.","id":"16067","runtime":170,"imdbId":"tt0478073","version":173,"lastModified":"1301905949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/838\/4bc94a28017a3c57fe020838\/final-days-of-planet-earth-mid.jpg","genre":"Action","title":"Final Days of Planet Earth","releaseDate":1142380800000,"language":"en","type":"Movie","_key":"63003"} +{"label":"Babylon 5: The Legend of the Rangers: To Live and Die in Starlight","description":"After being punished for retreat from combat, Ranger David Martel is given command of the Liandra, a haunted 20-year old Minbari fighting ship. He's escorting ambassadors to a secret archaeological site, the oldest city on record and a clue to a dangerous ancient race. ","id":"16068","runtime":90,"imdbId":"tt0280453","version":102,"lastModified":"1301905700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/841\/4bc94a28017a3c57fe020841\/babylon-5-the-legend-of-the-rangers-to-live-and-die-in-starlight-mid.jpg","studio":"Babylonian Productions","genre":"Science Fiction","title":"Babylon 5: The Legend of the Rangers: To Live and Die in Starlight","releaseDate":1011398400000,"language":"en","type":"Movie","_key":"63004"} +{"label":"Dylan Neal","version":24,"id":"79149","lastModified":"1301901304000","name":"Dylan Neal","type":"Person","_key":"63005"} +{"label":"Myriam Sirois","version":19,"id":"79150","lastModified":"1301902174000","name":"Myriam Sirois","type":"Person","_key":"63006"} +{"label":"Dean Marshall","version":18,"id":"79151","lastModified":"1301902143000","name":"Dean Marshall","type":"Person","_key":"63007"} +{"label":"Enid-Raye Adams","version":18,"id":"79152","lastModified":"1301901948000","name":"Enid-Raye Adams","type":"Person","_key":"63008"} +{"label":"This Film Is Not Yet Rated","description":"Kirby Dick's provocative documentary investigates the secretive and inconsistent process by which the Motion Picture Association of America rates films, revealing the organization's underhanded efforts to control culture. Dick questions whether certain studios get preferential treatment and exposes the discrepancies in how the MPAA views sex and violence.","id":"16070","runtime":97,"imdbId":"tt0493459","version":141,"lastModified":"1301903638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/857\/4bc94a2a017a3c57fe020857\/this-film-is-not-yet-rated-mid.jpg","genre":"Documentary","title":"This Film Is Not Yet Rated","releaseDate":1136073600000,"language":"en","tagline":"censorship, uncensored.","type":"Movie","_key":"63009"} +{"label":"Kirby Dick","version":20,"id":"112588","lastModified":"1301902480000","name":"Kirby Dick","type":"Person","_key":"63010"} +{"label":"The Cake Eaters","description":"Mary Stuart Masterson\u2019s directorial debut is a romantic drama set in a small town where the intimate secrets and tensions of two families force them to come to terms with life, love and death. Written by Jayce Bartok, the dynamic ensemble cast features Kristen Stewart, Aaron Stanford, Bruce Dern, Elizabeth Ashley and Melissa Leo. Original music composition by Tony Award Winner Duncan Sheik.","id":"16071","runtime":96,"imdbId":"tt0418586","version":192,"lastModified":"1301902944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/860\/4bc94a2b017a3c57fe020860\/the-cake-eaters-mid.jpg","genre":"Drama","title":"The Cake Eaters","releaseDate":1177804800000,"language":"en","type":"Movie","_key":"63011"} +{"label":"Gods and Generals","description":"The film centers mostly around the personal and professional life of Thomas \"Stonewall\" Jackson, a brilliant if eccentric Confederate general, from the outbreak of the American Civil War until its halfway point when Jackson is killed accidentally by his own soldiers in May 1863 during his greatest victory.","id":"16072","runtime":214,"imdbId":"tt0279111","version":223,"lastModified":"1301902626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/186\/4d9322cc5e73d623b0000186\/gods-and-generals-mid.jpg","genre":"Drama","title":"Gods and Generals","releaseDate":1045785600000,"language":"en","tagline":"An unforgettable story of the Civil War, from the Director of \"GETTYSBURG\"","type":"Movie","_key":"63012"} +{"label":"Murderous Intent","description":"No overview found.","id":"16073","runtime":0,"imdbId":"tt0113873","version":421,"lastModified":"1301907995000","genre":"Drama","title":"Murderous Intent","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63013"} +{"label":"Kekexili","description":"A moving true story about volunteers protecting antelope against poachers in the severe mountains of Tibet.","id":"16074","runtime":90,"imdbId":"tt0386651","version":131,"lastModified":"1301903763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/876\/4bc94a31017a3c57fe020876\/kekexili-mid.jpg","studio":"Columbia Pictures","genre":"Action","title":"Kekexili","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"63014"} +{"label":"Chuan Lu","version":18,"id":"79153","lastModified":"1301902241000","name":"Chuan Lu","type":"Person","_key":"63015"} +{"label":"Duobuji","version":16,"id":"79154","lastModified":"1301902241000","name":"Duobuji","type":"Person","_key":"63016"} +{"label":"Zhang Lei","version":16,"id":"79155","lastModified":"1301902241000","name":"Zhang Lei","type":"Person","_key":"63017"} +{"label":"Liang Qi","version":16,"id":"79156","lastModified":"1301902241000","name":"Liang Qi","type":"Person","_key":"63018"} +{"label":"Xueying Zhao","version":16,"id":"79157","lastModified":"1301902241000","name":"Xueying Zhao","type":"Person","_key":"63019"} +{"label":"Zhanlin Ma","version":19,"id":"79165","lastModified":"1301902241000","name":"Zhanlin Ma","type":"Person","_key":"63020"} +{"label":"Xueying Zhao","version":17,"id":"79166","lastModified":"1301902241000","name":"Xueying Zhao","type":"Person","_key":"63021"} +{"label":"Great Expectations","description":"No overview found.","id":"16075","runtime":0,"imdbId":"tt0167187","version":120,"lastModified":"1301905373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e7\/4d580f227b9aa16bc60023e7\/great-expectations-mid.jpg","title":"Great Expectations","releaseDate":915148800000,"language":"en","type":"Movie","_key":"63022"} +{"label":"Torsk p\u00e5 Tallinn","description":"Percy Nilegaard collects Swedish single men and embarks on a bus trip to Tallinn with a so-called \"highly-experienced driver\".","id":"16076","runtime":60,"imdbId":"tt0378893","version":47,"lastModified":"1301904941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/884\/4bc94a36017a3c57fe020884\/torsk-pa-tallinn-mid.jpg","studio":"Sveriges Television AB","genre":"Comedy","title":"Torsk p\u00e5 Tallinn","releaseDate":924739200000,"language":"en","type":"Movie","_key":"63023"} +{"label":"Claes Dietmann","version":19,"id":"79175","lastModified":"1301901534000","name":"Claes Dietmann","type":"Person","_key":"63024"} +{"label":"Jonas Inde","version":31,"id":"79168","lastModified":"1301901558000","name":"Jonas Inde","type":"Person","_key":"63025"} +{"label":"Johan Rheborg","version":31,"id":"79171","lastModified":"1301901578000","name":"Johan Rheborg","type":"Person","_key":"63026"} +{"label":"My Little Eye","description":"Five young people apply to live in an isolated house together for six months whilst their every move is filmed by numerous cameras.","id":"16077","runtime":95,"imdbId":"tt0280969","version":177,"lastModified":"1301903260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4c0203c8017a3c702d0014c8\/my-little-eye-mid.jpg","studio":"Studio Canal","genre":"Horror","title":"My Little Eye","releaseDate":1033689600000,"language":"en","type":"Movie","_key":"63027"} +{"label":"Sean Cw Johnson","version":19,"id":"79187","lastModified":"1301902124000","name":"Sean Cw Johnson","type":"Person","_key":"63028"} +{"label":"Stephen O'Reilly","version":22,"id":"79188","lastModified":"1301901926000","name":"Stephen O'Reilly","type":"Person","_key":"63029"} +{"label":"Jennifer Sky","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/295\/4c3122c27b9aa16663000295\/jennifer-sky-profile.jpg","version":17,"id":"20981","lastModified":"1301901689000","name":"Jennifer Sky","type":"Person","_key":"63030"} +{"label":"Nick Mennell","version":19,"id":"79189","lastModified":"1301902124000","name":"Nick Mennell","type":"Person","_key":"63031"} +{"label":"Cloak & Dagger","description":"No overview found.","id":"16078","runtime":0,"imdbId":"tt0087065","version":153,"lastModified":"1301903872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88d\/4bc94a37017a3c57fe02088d\/cloak-dagger-mid.jpg","genre":"Action","title":"Cloak & Dagger","releaseDate":454896000000,"language":"en","type":"Movie","_key":"63032"} +{"label":"Bes\u00f6karna","description":"Frank, Sara and their two children have recently moved into the house of their dreams on the countryside. Frank is disturbed by mysterious sounds and somebody tears down the wallpaper from the walls. He contacts a ghost-hunter, Allan, to find out the truth.","id":"16079","runtime":102,"imdbId":"tt0094730","version":50,"lastModified":"1301905624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52c\/4d593e4f7b9aa16bc600352c\/bes-karna-mid.jpg","studio":"Film 87 88 Bes\u00f6karna KB","genre":"Horror","title":"Bes\u00f6karna","releaseDate":578275200000,"language":"en","type":"Movie","_key":"63033"} +{"label":"Patrik Ersg\u00e5rd","version":22,"id":"79195","lastModified":"1301902067000","name":"Patrik Ersg\u00e5rd","type":"Person","_key":"63034"} +{"label":"Jack Ersgard","version":22,"id":"79193","lastModified":"1301902197000","name":"Jack Ersgard","type":"Person","_key":"63035"} +{"label":"Johannes Brost","version":23,"id":"79197","lastModified":"1301901992000","name":"Johannes Brost","type":"Person","_key":"63036"} +{"label":"Joanna Berglund","version":20,"id":"79198","lastModified":"1301902174000","name":"Joanna Berglund","type":"Person","_key":"63037"} +{"label":"Jonas Olsson","version":21,"id":"79199","lastModified":"1301902359000","name":"Jonas Olsson","type":"Person","_key":"63038"} +{"label":"Bernt Lundquist","version":19,"id":"79200","lastModified":"1301902067000","name":"Bernt Lundquist","type":"Person","_key":"63039"} +{"label":"Lena Lindblom","version":19,"id":"79201","lastModified":"1301902067000","name":"Lena Lindblom","type":"Person","_key":"63040"} +{"label":"P.G. Hyl\u00e9n","version":19,"id":"79202","lastModified":"1301902067000","name":"P.G. Hyl\u00e9n","type":"Person","_key":"63041"} +{"label":"Mats Lundberg","version":19,"id":"79203","lastModified":"1301902067000","name":"Mats Lundberg","type":"Person","_key":"63042"} +{"label":"Leif Gr\u00f6nvall","version":19,"id":"79204","lastModified":"1301902067000","name":"Leif Gr\u00f6nvall","type":"Person","_key":"63043"} +{"label":"Crazy Eights","description":"Six people are brought together at the funeral of a childhood friend. While settling the estate, they discover a map, which leads them on a search for a time capsule. What they discover reawakens childhood traumas and leads them on a journey through their abandoned childhood home: a home with a terrible secret and a mysterious dead girl who will lead them to their strange fates.","id":"16080","runtime":80,"imdbId":"tt0470993","version":144,"lastModified":"1301903694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/896\/4bc94a37017a3c57fe020896\/crazy-eights-mid.jpg","genre":"Horror","title":"Crazy Eights","releaseDate":1162252800000,"language":"en","tagline":"No secret stays locked away forever.","type":"Movie","_key":"63044"} +{"label":"James K. Jones","version":21,"id":"117486","lastModified":"1301902676000","name":"James K. Jones","type":"Person","_key":"63045"} +{"label":"Dan DeLuca","version":21,"id":"117487","lastModified":"1301902143000","name":"Dan DeLuca","type":"Person","_key":"63046"} +{"label":"Christine Eads","version":19,"id":"117489","lastModified":"1301902326000","name":"Christine Eads","type":"Person","_key":"63047"} +{"label":"Stephen Szibler","version":18,"id":"117490","lastModified":"1301902504000","name":"Stephen Szibler","type":"Person","_key":"63048"} +{"label":"Cheryl Scungio","version":18,"id":"117492","lastModified":"1301902504000","name":"Cheryl Scungio","type":"Person","_key":"63049"} +{"label":"Doctor Dolittle","description":"Get ready for the wildest adventure of a lifetime in the most ambitious production ever brought to film. Earning a 1967 Academy Award nomination for Best Picture, this dazzling fantasy turns both ordinary and exotic animals into talking, dancing and singing sensations! Rex Harrison is unforgettable in this inspiring adaptation of Hugh Lofting's classic stories.Step into the English country home of the good doctor as he performs remarkable treatments on the wildest variety of patients you could","id":"16081","runtime":152,"imdbId":"tt0061584","version":191,"lastModified":"1301903624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89f\/4bc94a38017a3c57fe02089f\/doctor-dolittle-mid.jpg","genre":"Action","title":"Doctor Dolittle","releaseDate":-64281600000,"language":"en","type":"Movie","_key":"63050"} +{"label":"White Nights","description":"An expatriate Russian dancer is on a plane forced to land on Soviet territory. He is taken to an apartment in which a black American who has married a Russian woman lives with her. He is to become a dancer for the Bolshoi again, but he wishes to escape, but can he trust the American?","id":"16082","runtime":136,"imdbId":"tt0090319","version":209,"lastModified":"1301904895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a8\/4bc94a39017a3c57fe0208a8\/white-nights-mid.jpg","genre":"Drama","title":"White Nights","releaseDate":501465600000,"language":"en","type":"Movie","_key":"63051"} +{"label":"Stefan Gryff","version":23,"id":"79954","lastModified":"1301902241000","name":"Stefan Gryff","type":"Person","_key":"63052"} +{"label":"Florence Faure","version":20,"id":"79955","lastModified":"1301902463000","name":"Florence Faure","type":"Person","_key":"63053"} +{"label":"David Savile","version":20,"id":"79956","lastModified":"1301902463000","name":"David Savile","type":"Person","_key":"63054"} +{"label":"Ian Liston","version":20,"id":"79957","lastModified":"1301902463000","name":"Ian Liston","type":"Person","_key":"63055"} +{"label":"Benny Young","version":20,"id":"79958","lastModified":"1301902463000","name":"Benny Young","type":"Person","_key":"63056"} +{"label":"Hilary Drake","version":20,"id":"79959","lastModified":"1301902463000","name":"Hilary Drake","type":"Person","_key":"63057"} +{"label":"First Snow","description":"A psychic's ominous reading sends a man into a tailspin.","id":"16083","runtime":101,"imdbId":"tt0432289","trailer":"http:\/\/www.youtube.com\/watch?v=t17DNurhOdY","version":229,"lastModified":"1301904302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8dd\/4bc94a41017a3c57fe0208dd\/first-snow-mid.jpg","studio":"Furst Films","genre":"Drama","title":"First Snow","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"63058"} +{"label":"Mark Fergus","version":24,"id":"79207","lastModified":"1301901459000","name":"Mark Fergus","type":"Person","_key":"63059"} +{"label":"Nicholas Ballas","version":20,"id":"79210","lastModified":"1301902124000","name":"Nicholas Ballas","type":"Person","_key":"63060"} +{"label":"David House","version":20,"id":"79211","lastModified":"1301901927000","name":"David House","type":"Person","_key":"63061"} +{"label":"Julie Gawkowski","version":20,"id":"79212","lastModified":"1301901634000","name":"Julie Gawkowski","type":"Person","_key":"63062"} +{"label":"Forrest Fyre","version":20,"id":"79213","lastModified":"1301901927000","name":"Forrest Fyre","type":"Person","_key":"63063"} +{"label":"Gurudarshan","version":20,"id":"79214","lastModified":"1301901927000","name":"Gurudarshan","type":"Person","_key":"63064"} +{"label":"Callie Anne Morgan","version":20,"id":"79215","lastModified":"1301901927000","name":"Callie Anne Morgan","type":"Person","_key":"63065"} +{"label":"Jo Ann Soto","version":20,"id":"79216","lastModified":"1301901927000","name":"Jo Ann Soto","type":"Person","_key":"63066"} +{"label":"Adriana Cordova","version":20,"id":"79217","lastModified":"1301901763000","name":"Adriana Cordova","type":"Person","_key":"63067"} +{"label":"Roy Costley","version":20,"id":"79228","lastModified":"1301901927000","name":"Roy Costley","type":"Person","_key":"63068"} +{"label":"Brian Keith Gamble","version":22,"id":"79230","lastModified":"1301901436000","name":"Brian Keith Gamble","type":"Person","_key":"63069"} +{"label":"John Burton Jr.","version":20,"id":"79232","lastModified":"1301901927000","name":"John Burton Jr.","type":"Person","_key":"63070"} +{"label":"Anthony Jordan Atler","version":20,"id":"79234","lastModified":"1301901762000","name":"Anthony Jordan Atler","type":"Person","_key":"63071"} +{"label":"Dave Colon","version":20,"id":"79236","lastModified":"1301901927000","name":"Dave Colon","type":"Person","_key":"63072"} +{"label":"Dave Mallow","version":20,"id":"79238","lastModified":"1301902301000","name":"Dave Mallow","type":"Person","_key":"63073"} +{"label":"Clark Sanchez","version":20,"id":"79239","lastModified":"1301901762000","name":"Clark Sanchez","type":"Person","_key":"63074"} +{"label":"Tavia Schwartz","version":20,"id":"79240","lastModified":"1301902124000","name":"Tavia Schwartz","type":"Person","_key":"63075"} +{"label":"Freaky Friday","description":"Schoolgirl Annabel is hassled by her mother, and Mrs. Andrews is annoyed with her daughter, Annabel. They both think that the other has an easy life. On a normal Friday morning, both complain about each other and wish they could have the easy life of their daughter\/mother for just one day and their wishes come true as a bit of magic puts Annabel in Mrs. Andrews' body and vice versa. They both have a Freaky Friday.","id":"16084","runtime":95,"imdbId":"tt0076054","version":116,"lastModified":"1301907271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cab\/4cbb89e05e73d67783000cab\/freaky-friday-mid.jpg","genre":"Comedy","title":"Freaky Friday","releaseDate":219628800000,"language":"en","tagline":"Annabel and her Mother are not quite themselves today - in fact, they're each other!","type":"Movie","_key":"63076"} +{"label":"Vicki Schreck","version":22,"id":"121353","lastModified":"1301902504000","name":"Vicki Schreck","type":"Person","_key":"63077"} +{"label":"Kaye Ballard","version":23,"id":"121354","lastModified":"1301902535000","name":"Kaye Ballard","type":"Person","_key":"63078"} +{"label":"Sparky Marcus","version":24,"id":"121355","lastModified":"1301902546000","name":"Sparky Marcus","type":"Person","_key":"63079"} +{"label":"Brooke Mills","version":24,"id":"121356","lastModified":"1301901778000","name":"Brooke Mills","type":"Person","_key":"63080"} +{"label":"Karen Smith","version":22,"id":"101967","lastModified":"1301902504000","name":"Karen Smith","type":"Person","_key":"63081"} +{"label":"Funny Girl","description":"The life of comedienne Fannie Brice, from her early days in the Jewish slums of the Lower East Side, to the height of her career with the Ziegfeld Follies, including her marriage to and eventual divorce from her first husband, Nick Arnstein.","id":"16085","runtime":149,"imdbId":"tt0062994","trailer":"http:\/\/www.youtube.com\/watch?v=AM3-mD_y7SA","version":241,"lastModified":"1301903284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/860\/4d05e6237b9aa11bc3002860\/funny-girl-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Funny Girl","releaseDate":-40521600000,"language":"en","type":"Movie","_key":"63082"} +{"label":"Zou!","description":"No overview found.","id":"16088","runtime":15,"version":65,"lastModified":"1301905624000","genre":"Thriller","title":"Zou!","releaseDate":1225670400000,"language":"en","type":"Movie","_key":"63083"} +{"label":"Robert Bittner","version":15,"id":"79218","lastModified":"1301902067000","name":"Robert Bittner","type":"Person","_key":"63084"} +{"label":"Charles Lemming","version":15,"id":"79219","lastModified":"1301901608000","name":"Charles Lemming","type":"Person","_key":"63085"} +{"label":"Raphael Rumpf","version":15,"id":"79220","lastModified":"1301901864000","name":"Raphael Rumpf","type":"Person","_key":"63086"} +{"label":"Love Nest","description":"Jim and Connie's postwar New York building troubles keep Jim from working on his novel. Ex-WAC from Jim's army days Roberta moves in, further upsetting Connie but pleasing Jim's friend Ed. Tenant Charley, who marries tenant Eadie, loans money to Jim to help him keep the building, money which this Casanova obtains from rich widows.","id":"16089","runtime":84,"imdbId":"tt0043759","trailer":"http:\/\/www.youtube.com\/watch?v=I4kmzb7bJ9I","version":87,"lastModified":"1301903951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f8\/4bc94a46017a3c57fe0208f8\/love-nest-mid.jpg","title":"Love Nest","releaseDate":-575251200000,"language":"en","type":"Movie","_key":"63087"} +{"label":"June Haver","version":9,"id":"226642","lastModified":"1301904015000","name":"June Haver","type":"Person","_key":"63088"} +{"label":"Frank Fay","version":18,"birthday":"-2465341200000","id":"118203","birthplace":"San Francisco, California, USA","lastModified":"1301903068000","name":"Frank Fay","type":"Person","_key":"63089"} +{"label":"Jack Paar","version":23,"id":"133074","lastModified":"1301902743000","name":"Jack Paar","type":"Person","_key":"63090"} +{"label":"The Blue Dahlia","description":"This film noir stars Alan Ladd as a war veteran framed for the murder of his own wife and follows his search for the real murderer. Veronica Lake plays the sultry femme fatale who provides unexpected help.","id":"16090","runtime":96,"imdbId":"tt0038369","trailer":"http:\/\/www.youtube.com\/watch?v=GzuaR5YuOdY","version":63,"lastModified":"1301903724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/901\/4bc94a47017a3c57fe020901\/the-blue-dahlia-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"The Blue Dahlia","releaseDate":-748051200000,"language":"en","type":"Movie","_key":"63091"} +{"label":"Doris Dowling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07d\/4bd6f826017a3c21f500007d\/doris-dowling-profile.jpg","version":29,"id":"79248","lastModified":"1301901166000","name":"Doris Dowling","type":"Person","_key":"63092"} +{"label":"Aftermath: Population Zero","description":"Aftermath: Population Zero investigates what would happen if every single person on Earth simply disappeared. Explore the interactive world without us.","id":"16091","runtime":90,"imdbId":"tt1264068","version":280,"lastModified":"1301907308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/912\/4bc94a48017a3c57fe020912\/aftermath-population-zero-mid.jpg","studio":"Cream Productions","genre":"Documentary","title":"Aftermath: Population Zero","releaseDate":1205020800000,"language":"en","type":"Movie","_key":"63093"} +{"label":"Aparecidos","description":"One night Malena and Pablo, a sister and brother traveling together in Argentina, discover a diary that details crimes committed twenty years ago.","id":"16092","runtime":104,"imdbId":"tt0836683","version":79,"lastModified":"1301904941000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91b\/4bc94a49017a3c57fe02091b\/aparecidos-mid.jpg","studio":"Film I Vast","genre":"Horror","title":"Aparecidos","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"63094"} +{"label":"Paco Cabezas","version":25,"id":"79279","lastModified":"1301902463000","name":"Paco Cabezas","type":"Person","_key":"63095"} +{"label":"Ruth D\u00edaz","version":21,"id":"79288","lastModified":"1301901239000","name":"Ruth D\u00edaz","type":"Person","_key":"63096"} +{"label":"Javier Pereira","version":21,"id":"79289","lastModified":"1301902174000","name":"Javier Pereira","type":"Person","_key":"63097"} +{"label":"H\u00e9ctor Bidonde","version":19,"id":"79290","lastModified":"1301902463000","name":"H\u00e9ctor Bidonde","type":"Person","_key":"63098"} +{"label":"Luciano C\u00e1ceres","version":19,"id":"79291","lastModified":"1301902463000","name":"Luciano C\u00e1ceres","type":"Person","_key":"63099"} +{"label":"D\u00e1maso Conde","version":19,"id":"79292","lastModified":"1301902463000","name":"D\u00e1maso Conde","type":"Person","_key":"63100"} +{"label":"Isabela Ritto","version":19,"id":"79293","lastModified":"1301902463000","name":"Isabela Ritto","type":"Person","_key":"63101"} +{"label":"Carnival of Souls","description":"After a traumatic accident, a woman becomes drawn to a mysterious abandoned carnival.","id":"16093","runtime":78,"imdbId":"tt0055830","version":157,"lastModified":"1301905540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/928\/4bc94a49017a3c57fe020928\/carnival-of-souls-mid.jpg","studio":"Harcourt Productions","genre":"Drama","title":"Carnival of Souls","releaseDate":-229305600000,"language":"en","type":"Movie","_key":"63102"} +{"label":"Herk Harvey","version":22,"id":"79294","lastModified":"1301902241000","name":"Herk Harvey","type":"Person","_key":"63103"} +{"label":"Candace Hilligoss","version":19,"id":"79298","lastModified":"1301902241000","name":"Candace Hilligoss","type":"Person","_key":"63104"} +{"label":"Frances Feist","version":19,"id":"79299","lastModified":"1301902241000","name":"Frances Feist","type":"Person","_key":"63105"} +{"label":"Sidney Berger","version":19,"id":"79300","lastModified":"1301902241000","name":"Sidney Berger","type":"Person","_key":"63106"} +{"label":"Art Ellison","version":19,"id":"79301","lastModified":"1301902241000","name":"Art Ellison","type":"Person","_key":"63107"} +{"label":"Stan Levitt","version":19,"id":"79302","lastModified":"1301902241000","name":"Stan Levitt","type":"Person","_key":"63108"} +{"label":"Tom McGinnis","version":19,"id":"79303","lastModified":"1301902463000","name":"Tom McGinnis","type":"Person","_key":"63109"} +{"label":"Forbes Caldwell","version":19,"id":"79304","lastModified":"1301902241000","name":"Forbes Caldwell","type":"Person","_key":"63110"} +{"label":"Dan Palmquist","version":19,"id":"79305","lastModified":"1301902241000","name":"Dan Palmquist","type":"Person","_key":"63111"} +{"label":"Bill de Jarnette","version":19,"id":"79306","lastModified":"1301902067000","name":"Bill de Jarnette","type":"Person","_key":"63112"} +{"label":"Steve Boozer","version":19,"id":"79307","lastModified":"1301902463000","name":"Steve Boozer","type":"Person","_key":"63113"} +{"label":"Pamela Ballard","version":19,"id":"79308","lastModified":"1301902241000","name":"Pamela Ballard","type":"Person","_key":"63114"} +{"label":"Larry Sneegas","version":19,"id":"79309","lastModified":"1301902241000","name":"Larry Sneegas","type":"Person","_key":"63115"} +{"label":"Cari Conboy","version":19,"id":"79310","lastModified":"1301902067000","name":"Cari Conboy","type":"Person","_key":"63116"} +{"label":"Karen Pyles","version":19,"id":"79311","lastModified":"1301902067000","name":"Karen Pyles","type":"Person","_key":"63117"} +{"label":"T.C. Adams","version":19,"id":"79312","lastModified":"1301902463000","name":"T.C. Adams","type":"Person","_key":"63118"} +{"label":"Sharon Scoville","version":19,"id":"79313","lastModified":"1301902241000","name":"Sharon Scoville","type":"Person","_key":"63119"} +{"label":"Mary Ann Harris","version":19,"id":"79314","lastModified":"1301902067000","name":"Mary Ann Harris","type":"Person","_key":"63120"} +{"label":"Peter Schnitzler","version":19,"id":"79315","lastModified":"1301902241000","name":"Peter Schnitzler","type":"Person","_key":"63121"} +{"label":"Bill Sollner","version":19,"id":"79316","lastModified":"1301902463000","name":"Bill Sollner","type":"Person","_key":"63122"} +{"label":"Reza Badiyi","version":19,"id":"79317","lastModified":"1301902241000","name":"Reza Badiyi","type":"Person","_key":"63123"} +{"label":"Ed Down","version":19,"id":"79318","lastModified":"1301902241000","name":"Ed Down","type":"Person","_key":"63124"} +{"label":"Wayne Shmille","version":19,"id":"79319","lastModified":"1301902463000","name":"Wayne Shmille","type":"Person","_key":"63125"} +{"label":"House Party","description":"Young Kid has been invited to a party at his friend Play's house. But after a fight at school, Kid's father grounds him. None the less, Kid sneaks out when his father falls asleep. But Kid doesn't know that three of the thugs at school has decided to give him a lesson in behaviour","id":"16094","runtime":100,"imdbId":"tt0099800","trailer":"http:\/\/www.youtube.com\/watch?v=1543","version":107,"lastModified":"1301902961000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/939\/4bc94a4f017a3c57fe020939\/house-party-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"House Party","releaseDate":631152000000,"language":"en","type":"Movie","_key":"63126"} +{"label":"Christopher Reid","version":26,"id":"79320","lastModified":"1301902390000","name":"Christopher Reid","type":"Person","_key":"63127"} +{"label":"Christopher Martin","version":26,"id":"79321","lastModified":"1301902022000","name":"Christopher Martin","type":"Person","_key":"63128"} +{"label":"A.J. Johnson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/90c\/4d8a880e7b9aa13aea00090c\/a-j-johnson-profile.jpg","version":23,"id":"88186","lastModified":"1301902531000","name":"A.J. Johnson","type":"Person","_key":"63129"} +{"label":"Troubled Water","description":"De Usynlige is the very sad story of a 4 years old boy, who disappears and gets killed 8 year before this story begins. We follow the murder, Jan Thomas on his way back to the real life, after his years in prison, and the film brings us into his version of what was happened. After a while, we get a new perspective, when the little boy's mother gives us her story with all the suffering and pain.","id":"16095","runtime":115,"imdbId":"tt0948544","version":290,"lastModified":"1301906602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94a\/4bc94a50017a3c57fe02094a\/deusynlige-mid.jpg","studio":"Paradox Spillefilm A\/S","genre":"Drama","title":"Troubled Water","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"63130"} +{"label":"Erik Poppe","version":23,"id":"79322","lastModified":"1301902012000","name":"Erik Poppe","type":"Person","_key":"63131"} +{"label":"Lene Bragli","version":21,"id":"79324","lastModified":"1301901864000","name":"Lene Bragli","type":"Person","_key":"63132"} +{"label":"Tone Danielsen","version":21,"id":"79325","lastModified":"1301902241000","name":"Tone Danielsen","type":"Person","_key":"63133"} +{"label":"Jon V\u00e5genes Eriksen","version":21,"id":"79326","lastModified":"1301901864000","name":"Jon V\u00e5genes Eriksen","type":"Person","_key":"63134"} +{"label":"Angelou Garcia","version":21,"id":"79327","lastModified":"1301902241000","name":"Angelou Garcia","type":"Person","_key":"63135"} +{"label":"Henriette Garcia","version":21,"id":"79328","lastModified":"1301902067000","name":"Henriette Garcia","type":"Person","_key":"63136"} +{"label":"Fredrik Gr\u00f8ndahl","version":21,"id":"79329","lastModified":"1301902463000","name":"Fredrik Gr\u00f8ndahl","type":"Person","_key":"63137"} +{"label":"Frank Kjos\u00e5s","version":21,"id":"79330","lastModified":"1301902463000","name":"Frank Kjos\u00e5s","type":"Person","_key":"63138"} +{"label":"Ellen Dorrit Petersen","version":22,"id":"79331","lastModified":"1301902495000","name":"Ellen Dorrit Petersen","type":"Person","_key":"63139"} +{"label":"Terje Str\u00f8mdahl","version":22,"id":"79333","lastModified":"1301902484000","name":"Terje Str\u00f8mdahl","type":"Person","_key":"63140"} +{"label":"House Party 2","description":"Kid'N'Play are going to college, well just mainly Kid, to leave the world and it's problems. While there Kid learns the lesson of responsibility....the hard way. Play gives the Kid's college money to a beautiful, yet crooked music promoter(Iman). And with Sidney(Tisha Campbell) wanting to see new people, Kid comes to Play with help and come up with a PAJAMA JAM PARTY.","id":"16096","runtime":94,"imdbId":"tt0102065","version":136,"lastModified":"1301905266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94f\/4bc94a50017a3c57fe02094f\/house-party-2-mid.jpg","genre":"Comedy","title":"House Party 2","releaseDate":688176000000,"language":"en","type":"Movie","_key":"63141"} +{"label":"George Jackson","version":16,"id":"141824","lastModified":"1301902678000","name":"George Jackson","type":"Person","_key":"63142"} +{"label":"Doug McHenry","version":24,"id":"67896","lastModified":"1301976020000","name":"Doug McHenry","type":"Person","_key":"63143"} +{"label":"House Party 3","description":"Hip Hop duo Kid & Play return in the second follow-up to their 1990 screen debut House Party. Kid (Christopher \\\"Kid\\\" Reid) is taking the plunge and marrying his girlfriend Veda (Angela Means), while his friend Play (Christopher Martin) is dipping his toes into the music business, managing a roughneck female rap act called Sex as a Weapon. Play books the ladies for a concert with heavy-hitting pr","id":"16097","runtime":100,"imdbId":"tt0110064","version":143,"lastModified":"1301904477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/958\/4bc94a51017a3c57fe020958\/house-party-3-mid.jpg","genre":"Comedy","title":"House Party 3","releaseDate":757382400000,"language":"en","type":"Movie","_key":"63144"} +{"label":"Angela Means","version":16,"id":"141827","lastModified":"1301902641000","name":"Angela Means","type":"Person","_key":"63145"} +{"label":"David Edwards","version":16,"id":"141828","lastModified":"1301902575000","name":"David Edwards","type":"Person","_key":"63146"} +{"label":"Jerome Jones","version":22,"id":"127932","lastModified":"1301902798000","name":"Jerome Jones","type":"Person","_key":"63147"} +{"label":"Freebird... The Movie","description":"No overview found.","id":"16100","runtime":0,"imdbId":"tt0116360","version":83,"lastModified":"1301739557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95d\/4bc94a53017a3c57fe02095d\/freebird-the-movie-mid.jpg","genre":"Documentary","title":"Freebird... The Movie","releaseDate":820454400000,"language":"en","type":"Movie","_key":"63148"} +{"label":"Hit poletja","description":"No overview found.","id":"16101","runtime":91,"imdbId":"tt1344616","version":34,"lastModified":"1301421344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/962\/4bc94a55017a3c57fe020962\/hit-poletja-mid.jpg","studio":"RTV Slovenija","title":"Hit poletja","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"63149"} +{"label":"The Day the Earth Stopped","description":"Hundreds of massive intergalactic robots appear in all of the world's major capitals with an ultimatum: Prove the value of human civilization or be destroyed.","id":"16102","runtime":90,"imdbId":"tt1290471","version":123,"lastModified":"1301904229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc94a55017a3c57fe02096b\/the-day-the-earth-stopped-mid.jpg","genre":"Action","title":"The Day the Earth Stopped","releaseDate":1228780800000,"language":"en","type":"Movie","_key":"63150"} +{"label":"The Loneliness of the Long Distance Runner","description":"A rebellious youth, sentenced to a boy's reformatory for robbing a bakery, rises through the ranks of the institution through his prowess as a long distance runner. During his solitary runs, reveries of his life and times before his incarceration lead him to re-evaluate his privileged status as the Governor's prize runner.","id":"16103","runtime":104,"imdbId":"tt0056194","version":158,"lastModified":"1301904304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97c\/4bc94a57017a3c57fe02097c\/the-loneliness-of-the-long-distance-runner-mid.jpg","studio":"Woodfall Film Productions","genre":"Drama","title":"The Loneliness of the Long Distance Runner","releaseDate":-229737600000,"language":"en","type":"Movie","_key":"63151"} +{"label":"Avis Bunnage","version":21,"id":"79356","lastModified":"1301902463000","name":"Avis Bunnage","type":"Person","_key":"63152"} +{"label":"James Bolam","version":25,"id":"79357","lastModified":"1301902241000","name":"James Bolam","type":"Person","_key":"63153"} +{"label":"Joe Robinson","version":21,"id":"79358","lastModified":"1301902524000","name":"Joe Robinson","type":"Person","_key":"63154"} +{"label":"Dervis Ward","version":20,"id":"79359","lastModified":"1301902463000","name":"Dervis Ward","type":"Person","_key":"63155"} +{"label":"Topsy Jane","version":20,"id":"79360","lastModified":"1301902463000","name":"Topsy Jane","type":"Person","_key":"63156"} +{"label":"Julia Foster","version":22,"id":"79361","lastModified":"1301902416000","name":"Julia Foster","type":"Person","_key":"63157"} +{"label":"Blue's Clues - Blue Takes You to School","description":"No overview found.","id":"16104","runtime":0,"version":70,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/981\/4bc94a57017a3c57fe020981\/blue-s-clues-blue-takes-you-to-school-mid.jpg","genre":"Family","title":"Blue's Clues - Blue Takes You to School","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63158"} +{"label":"Blue's Clues - Blue's First Holiday","description":"No overview found.","id":"16106","runtime":0,"version":44,"lastModified":"1301418940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98b\/4bc94a5b017a3c57fe02098b\/blue-s-clues-blue-s-first-holiday-mid.jpg","title":"Blue's Clues - Blue's First Holiday","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63159"} +{"label":"Blue's Clues - Shapes And Colors","description":"Blue's Clues: Adventures in Art, Blue's Clues: Colors Everywhere!, Blue's Clues: Shape Searchers, Blue's Clues: What Does Blue Want to Make?","id":"16107","runtime":96,"version":229,"lastModified":"1301907262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/990\/4bc94a5b017a3c57fe020990\/blue-s-clues-shapes-and-colors-mid.jpg","genre":"Family","title":"Blue's Clues - Shapes And Colors","releaseDate":1054598400000,"language":"en","type":"Movie","_key":"63160"} +{"label":"Bob The Builder - Bob's Bugle And Other Stories","description":"No overview found.","id":"16108","runtime":0,"version":19,"lastModified":"1301416121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/995\/4bc94a5b017a3c57fe020995\/bob-the-builder-bob-s-bugle-and-other-stories-mid.jpg","title":"Bob The Builder - Bob's Bugle And Other Stories","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63161"} +{"label":"Bob The Builder - Scoop Saves The Day And Other Stories","description":"No overview found.","id":"16109","runtime":0,"version":15,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99a\/4bc94a5b017a3c57fe02099a\/bob-the-builder-scoop-saves-the-day-and-other-stories-mid.jpg","title":"Bob The Builder - Scoop Saves The Day And Other Stories","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63162"} +{"label":"Thomas and the Magic Railroad","description":"Mr. Conductor's supply of magic gold dust, which allows him to travel between Shining Time and Thomas's island, is critically low. Unfortunately, he doesn't know how to get more. Meanwhile, Thomas is fending off attacks by the nasty diesel engines. Getting more gold dust will require help from Mr. C's slacker cousin, his new friend Lilly, and her morose grandfather, plus the secret engine.","id":"16110","runtime":85,"imdbId":"tt0205461","version":171,"lastModified":"1301904772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71c\/4d6655397b9aa12a0900271c\/thomas-and-the-magic-railroad-mid.jpg","genre":"Animation","title":"Thomas and the Magic Railroad","releaseDate":964569600000,"language":"en","tagline":"Little Engines CAN Do Big Things...","type":"Movie","_key":"63163"} +{"label":"Britt Allcroft","version":20,"id":"113733","lastModified":"1301902676000","name":"Britt Allcroft","type":"Person","_key":"63164"} +{"label":"Hanuman","description":"No overview found.","id":"16111","runtime":0,"imdbId":"tt0488836","version":298,"lastModified":"1302055217000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ad\/4bc94a5c017a3c57fe0209ad\/hanuman-mid.jpg","genre":"Animation","title":"Hanuman","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63165"} +{"label":"The Adventures of Elmo in Grouchland","description":"Elmo loves his fuzzy, blue blanket, and would never let anything happen to it. However, a tug-of-war with his friend Zoe sends his blanket to a faraway land, and Elmo in hot pursuit. Facing life without his cherished blanket, Elmo musters all of his determination and courage and heads off on an action-packed rescue mission that plunges him into Grouchland-a place full of grouchy creatures, stinky garbage and the villainous Huxley. Along the way, Elmo learns an important lesson about sharing, rea","id":"16112","runtime":73,"imdbId":"tt0159421","version":272,"lastModified":"1302055069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b6\/4bc94a5c017a3c57fe0209b6\/the-adventures-of-elmo-in-grouchland-mid.jpg","genre":"Family","title":"The Adventures of Elmo in Grouchland","releaseDate":938736000000,"language":"en","tagline":"The Good, The Bad and The Stinky.","type":"Movie","_key":"63166"} +{"label":"Gary Halvorson","version":16,"id":"150641","lastModified":"1301903124000","name":"Gary Halvorson","type":"Person","_key":"63167"} +{"label":"Kevin Clash","version":17,"id":"150644","lastModified":"1301903123000","name":"Kevin Clash","type":"Person","_key":"63168"} +{"label":"The Delta Force","description":"A 707 aircraft jetliner on its way from Athens to Rome and then to New York City is hijacked by Lebanese terrorists. The terrorists demand that the pilot take them to Beirut. What the terrorists don't realize is that an elite team of commandoes led by Major McCoy (Norris) and by Colonel Alexander (Marvin) has been called into service to eliminate all terrorists on the jetliner.","id":"16113","runtime":125,"imdbId":"tt0090927","version":157,"lastModified":"1301903912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4c1b873c7b9aa1178e000039\/the-delta-force-mid.jpg","studio":"Golan-Globus","genre":"Action","title":"The Delta Force","releaseDate":508723200000,"language":"en","type":"Movie","_key":"63169"} +{"label":"Feet of Flames","description":"No overview found.","id":"16114","runtime":0,"imdbId":"tt0208140","version":442,"lastModified":"1302054810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c0\/4bc94a5d017a3c57fe0209c0\/feet-of-flames-mid.jpg","title":"Feet of Flames","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63170"} +{"label":"Riverdance: The Show","description":"No overview found.","id":"16115","runtime":0,"imdbId":"tt0136491","version":338,"lastModified":"1302054707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c5\/4bc94a5d017a3c57fe0209c5\/riverdance-the-show-mid.jpg","title":"Riverdance: The Show","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63171"} +{"label":"Michael Flatley","version":20,"id":"79362","lastModified":"1301902404000","name":"Michael Flatley","type":"Person","_key":"63172"} +{"label":"American High School","description":"Small lives begin at the end of high school for this surreal society. A senior who married young must contend with her life, love, and pursuit of individuality and femininity in a narcissistic, misogynistic world of irony. Gwen Adams, her husband Holden, and school rival Hilary complete the love triangle as Principal Mann makes their lives living hell.","id":"16116","runtime":86,"imdbId":"tt1087517","version":164,"lastModified":"1301906467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ce\/4bc94a5d017a3c57fe0209ce\/american-high-school-mid.jpg","genre":"Comedy","title":"American High School","releaseDate":1239062400000,"language":"en","tagline":"Life Is What You Learn Between The Sheets","type":"Movie","_key":"63173"} +{"label":"Aubrey O'Day","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/028\/4c4f65b05e73d63039000028\/aubrey-o-day-profile.jpg","version":23,"id":"126511","lastModified":"1301902591000","name":"Aubrey O'Day","type":"Person","_key":"63174"} +{"label":"Nikki Schieler Ziering","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4c4f646c5e73d63039000021\/nikki-schieler-ziering-profile.jpg","version":23,"id":"126513","lastModified":"1301902591000","name":"Nikki Schieler Ziering","type":"Person","_key":"63175"} +{"label":"Alex Murrel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/016\/4c4f64b05e73d63035000016\/alex-murrel-profile.jpg","version":23,"id":"126514","lastModified":"1301902740000","name":"Alex Murrel","type":"Person","_key":"63176"} +{"label":"Davida Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/026\/4c4f64f65e73d63038000026\/davida-williams-profile.jpg","version":23,"id":"126515","lastModified":"1301902804000","name":"Davida Williams","type":"Person","_key":"63177"} +{"label":"Madison Dylan","version":27,"id":"126516","lastModified":"1301902764000","name":"Madison Dylan","type":"Person","_key":"63178"} +{"label":"Cameron Goodman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01a\/4c4f66115e73d6303700001a\/cameron-goodman-profile.jpg","version":24,"id":"95042","lastModified":"1301902225000","name":"Cameron Goodman","type":"Person","_key":"63179"} +{"label":"Jillian Murray","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11c\/4bebcf7d017a3c37a100011c\/jillian-murray-profile.jpg","version":26,"birthday":"455148000000","id":"118362","birthplace":"Reading, Pennsylvania, USA","lastModified":"1301902314000","name":"Jillian Murray","type":"Person","_key":"63180"} +{"label":"What Would Jesus Buy?","description":"A serious docu-comedy about the commercialization of Christmas. What Would Jesus Buy? follows Reverend Billy and the Church of Stop Shopping Gospel Choir as they go on a cross-country mission to save Christmas from the Shopocalypse: the end of mankind from consumerism, over-consumption and the fires of eternal debt!","id":"16117","runtime":91,"imdbId":"tt0939681","version":212,"lastModified":"1301906258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d7\/4bc94a5e017a3c57fe0209d7\/what-would-jesus-buy-mid.jpg","studio":"Palisades Pictures","genre":"Documentary","title":"What Would Jesus Buy?","releaseDate":1173571200000,"language":"en","type":"Movie","_key":"63181"} +{"label":"Rob VanAlkemade","version":19,"id":"87379","lastModified":"1301902504000","name":"Rob VanAlkemade","type":"Person","_key":"63182"} +{"label":"Reverend Billy","version":19,"id":"87380","lastModified":"1301902504000","name":"Reverend Billy","type":"Person","_key":"63183"} +{"label":"James Solomon Benn","version":16,"id":"132558","lastModified":"1301902777000","name":"James Solomon Benn","type":"Person","_key":"63184"} +{"label":"Dora The Explorer - Dora's Pirate Adventure","description":"Yo ho ho! Dora and all her friends are putting on a musical Pirate Play, and your part of the cast! But when the Pirate Piggies accidentally take Dora's treasure chest of costumes to Treasure Island, she and her friends need to set sail on a musical journey to get it back!","id":"16118","runtime":95,"version":61,"lastModified":"1301905328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e4\/4bc94a5e017a3c57fe0209e4\/dora-the-explorer-dora-s-pirate-adventure-mid.jpg","studio":"Paramount Pictures","title":"Dora The Explorer - Dora's Pirate Adventure","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"63185"} +{"label":"Cinderella III: A Twist in Time","description":"The evil stepmother conjures up a spell that reverses all of which the fairy godmother did. Everything that she had made (the dress, the horses and the carriage) which were the reasons why and how Cinderella went to \"The Ball\". So when all the magic is gone will there be a happily ever after all? What will Cinderella do? Find out in Cinderella III.","id":"16119","runtime":75,"imdbId":"tt0465940","version":188,"lastModified":"1302031997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f2\/4bc94a5f017a3c57fe0209f2\/cinderella-iii-a-twist-in-time-mid.jpg","genre":"Animation","title":"Cinderella III: A Twist in Time","releaseDate":1170720000000,"language":"en","type":"Movie","_key":"63186"} +{"label":"The Big Red One","description":"A veteran sergeant of the World War I leads a squad in World War II, always in the company of the survivors Pvt. Griff, the writer Pvt. Zab, the Sicilian Pvt. Vinci and Pvt. Johnson in Vichy French Africa, Sicily, D-Day at Omaha Beach, Belgium and France, ending in a concentration camp in Czechoslovakia where they face the true horror of war.","id":"16121","runtime":113,"imdbId":"tt0080437","version":167,"lastModified":"1302054012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a00\/4bc94a5f017a3c57fe020a00\/the-big-red-one-mid.jpg","studio":"Lorac Productions","genre":"Action","title":"The Big Red One","releaseDate":328320000000,"language":"en","type":"Movie","_key":"63187"} +{"label":"Playing Beatie Bow","description":"Abigail Kirk was an ordinary enough sixteen year old growing up in todays Sydney. An intriguing chain of events finds Abigail, through some eerie time shift, transported back one hundred years after watching some children playing a scary game called Beatie Bow.","id":"16122","runtime":93,"imdbId":"tt0091766","version":94,"lastModified":"1301906602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a09\/4bc94a60017a3c57fe020a09\/playing-beatie-bow-mid.jpg","studio":"South Australian Film Corporation","genre":"Fantasy","title":"Playing Beatie Bow","releaseDate":523756800000,"language":"en","type":"Movie","_key":"63188"} +{"label":"Peter Phelps","version":22,"id":"79363","lastModified":"1301902241000","name":"Peter Phelps","type":"Person","_key":"63189"} +{"label":"Imogen Annesley","version":19,"id":"79364","lastModified":"1301902463000","name":"Imogen Annesley","type":"Person","_key":"63190"} +{"label":"Mouche Phillips","version":19,"id":"79365","lastModified":"1301902241000","name":"Mouche Phillips","type":"Person","_key":"63191"} +{"label":"Nikki Coghill","version":19,"id":"79366","lastModified":"1301902241000","name":"Nikki Coghill","type":"Person","_key":"63192"} +{"label":"Moya O'Sullivan","version":19,"id":"79367","lastModified":"1301902463000","name":"Moya O'Sullivan","type":"Person","_key":"63193"} +{"label":"Don Barker","version":19,"id":"79368","lastModified":"1301902463000","name":"Don Barker","type":"Person","_key":"63194"} +{"label":"Lyndel Rowe","version":19,"id":"79369","lastModified":"1301902463000","name":"Lyndel Rowe","type":"Person","_key":"63195"} +{"label":"Damian Janko","version":19,"id":"79371","lastModified":"1301902463000","name":"Damian Janko","type":"Person","_key":"63196"} +{"label":"Barbara Stephens","version":19,"id":"79370","lastModified":"1301902463000","name":"Barbara Stephens","type":"Person","_key":"63197"} +{"label":"Phoebe Salter","version":19,"id":"79372","lastModified":"1301902463000","name":"Phoebe Salter","type":"Person","_key":"63198"} +{"label":"Jo England","version":19,"id":"79374","lastModified":"1301902463000","name":"Jo England","type":"Person","_key":"63199"} +{"label":"Henry Salter","version":19,"id":"79373","lastModified":"1301902463000","name":"Henry Salter","type":"Person","_key":"63200"} +{"label":"Edwin Hodgeman","version":20,"id":"79376","lastModified":"1301901864000","name":"Edwin Hodgeman","type":"Person","_key":"63201"} +{"label":"Edward Caddick","version":19,"id":"79375","lastModified":"1301902463000","name":"Edward Caddick","type":"Person","_key":"63202"} +{"label":"Glenn Boswell","version":35,"id":"9357","lastModified":"1302065745000","name":"Glenn Boswell","type":"Person","_key":"63203"} +{"label":"Richard Bou\u00e9","version":17,"id":"79377","lastModified":"1301902463000","name":"Richard Bou\u00e9","type":"Person","_key":"63204"} +{"label":"Michael Read","version":19,"id":"79378","lastModified":"1301902463000","name":"Michael Read","type":"Person","_key":"63205"} +{"label":"Tim Perry","version":19,"id":"79379","lastModified":"1301902463000","name":"Tim Perry","type":"Person","_key":"63206"} +{"label":"Perri Hamilton","version":19,"id":"79380","lastModified":"1301902463000","name":"Perri Hamilton","type":"Person","_key":"63207"} +{"label":"Donald Crombie","version":20,"id":"79381","lastModified":"1301901864000","name":"Donald Crombie","type":"Person","_key":"63208"} +{"label":"100 Million BC","description":"Modern scientists discover the deadly consequences of time travel when they retrieve a flesh-eating dinosaur and set it loose on an unsuspecting populace!","id":"16123","runtime":85,"imdbId":"tt1136683","trailer":"http:\/\/www.youtube.com\/watch?v=1059","homepage":"http:\/\/www.theasylum.cc\/product.php?id=138","version":223,"lastModified":"1302053744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a12\/4bc94a64017a3c57fe020a12\/100-million-bc-mid.jpg","genre":"Science Fiction","title":"100 Million BC","releaseDate":1217289600000,"language":"en","type":"Movie","_key":"63209"} +{"label":"Griff Furst","version":19,"id":"79391","lastModified":"1301901673000","name":"Griff Furst","type":"Person","_key":"63210"} +{"label":"Stephen Blackehart","version":31,"id":"85096","lastModified":"1301901948000","name":"Stephen Blackehart","type":"Person","_key":"63211"} +{"label":"Geoff Meed","version":38,"id":"86204","lastModified":"1301901192000","name":"Geoff Meed","type":"Person","_key":"63212"} +{"label":"Wendy Carter","version":23,"id":"86205","lastModified":"1301902989000","name":"Wendy Carter","type":"Person","_key":"63213"} +{"label":"Marie Westbrook","version":25,"id":"86206","lastModified":"1301901456000","name":"Marie Westbrook","type":"Person","_key":"63214"} +{"label":"Goodbye Pork Pie","description":"Gerry hires a car in Kaitaia with a stolen licence and travels to Invercargill with John, who's wife has just left him. The ultimate NZ roadtrip adventure.","id":"16124","runtime":105,"imdbId":"tt0082464","version":53,"lastModified":"1301905323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1b\/4bc94a65017a3c57fe020a1b\/goodbye-pork-pie-mid.jpg","studio":"New Zealand Film Commission","genre":"Adventure","title":"Goodbye Pork Pie","releaseDate":350179200000,"language":"en","type":"Movie","_key":"63215"} +{"label":"Kelly Johnson","version":20,"id":"79393","lastModified":"1301901581000","name":"Kelly Johnson","type":"Person","_key":"63216"} +{"label":"Claire Oberman","version":20,"id":"79394","lastModified":"1301901675000","name":"Claire Oberman","type":"Person","_key":"63217"} +{"label":"Shirley Gruar","version":20,"id":"79395","lastModified":"1301901991000","name":"Shirley Gruar","type":"Person","_key":"63218"} +{"label":"Flight of the Living Dead: Outbreak on a Plane","description":"On a flight from Los Angeles to Paris, a mad scientist on the run from the CIA is transporting a coffin containing the body of a colleague infected with a genetically modified virus. While the 747 crosses a violent thunderstorm, the instability of the aircraft allows the corpse to get out of its container.","id":"16126","runtime":89,"imdbId":"tt0780583","version":235,"lastModified":"1302053477000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a34\/4bc94a68017a3c57fe020a34\/flight-of-the-living-dead-outbreak-on-a-plane-mid.jpg","studio":"Imageworks Entertainment International","genre":"Comedy","title":"Flight of the Living Dead: Outbreak on a Plane","releaseDate":1175817600000,"language":"en","tagline":"At 30,000 feet, there's no where to run.","type":"Movie","_key":"63219"} +{"label":"David Chisum","version":25,"id":"79396","lastModified":"1301901644000","name":"David Chisum","type":"Person","_key":"63220"} +{"label":"Kristen Kerr","version":25,"id":"79397","lastModified":"1301901718000","name":"Kristen Kerr","type":"Person","_key":"63221"} +{"label":"Scott Thomas","version":33,"id":"32261","lastModified":"1301901714000","name":"Scott Thomas","type":"Person","_key":"63222"} +{"label":"Forbidden Zone","description":"A mysterious door in the basement of the Hercules house leads to the Sixth Dimension by way of a gigantic set of intestine. When Frenchy slips through the door, King Fausto falls in love with her. The jealous Queen Doris takes Frenchy prisoner, and it is up to the Hercules family and friend Squeezit Henderson to rescue her.","id":"16127","runtime":74,"imdbId":"tt0080752","version":118,"lastModified":"1301908286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3d\/4bc94a69017a3c57fe020a3d\/forbidden-zone-mid.jpg","genre":"Comedy","title":"Forbidden Zone","releaseDate":385516800000,"language":"en","type":"Movie","_key":"63223"} +{"label":"Fist of the Warrior","description":"First-class assassin Lee Choe (Pak) has spent years working for the mob. When his handler turns on him by killing his girlfriend and framing him for the murder, Lee stops at nothing to seek revenge. He fights back with a vengeance and violently punishes those who played a part in the death of his innocent love.","id":"16128","runtime":88,"imdbId":"tt1274418","version":138,"lastModified":"1301905443000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a47\/4bc94a6a017a3c57fe020a47\/fist-of-the-warrior-mid.jpg","studio":"Lionsgate","genre":"Action","title":"Fist of the Warrior","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"63224"} +{"label":"Ho-Sung Pak","version":23,"id":"84876","lastModified":"1301902241000","name":"Ho-Sung Pak","type":"Person","_key":"63225"} +{"label":"Robin Paul","version":21,"id":"84877","lastModified":"1301902524000","name":"Robin Paul","type":"Person","_key":"63226"} +{"label":"John Dye","version":20,"id":"84879","lastModified":"1301902633000","name":"John Dye","type":"Person","_key":"63227"} +{"label":"Gina St. John","version":20,"id":"84880","lastModified":"1301902633000","name":"Gina St. John","type":"Person","_key":"63228"} +{"label":"Wayne Kennedy","version":22,"id":"84881","lastModified":"1301902404000","name":"Wayne Kennedy","type":"Person","_key":"63229"} +{"label":"Last Night","description":"Writer\/director\/actor Don McKellar's take on the always intriguing \"end of the world\" concept is a thoughtful, engaging effort that uses dialogue instead of action to discuss this premise intellectually. The inhabitants of a Canadian city quietly accept the news that the world is going to end at the stroke of midnight on New Year's Day, 2000.","id":"16129","runtime":95,"imdbId":"tt0156729","version":327,"lastModified":"1301905372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a54\/4bc94a6b017a3c57fe020a54\/last-night-mid.jpg","studio":"Canadian Broadcasting Corporation","genre":"Drama","title":"Last Night","releaseDate":909100800000,"language":"en","type":"Movie","_key":"63230"} +{"label":"Trent McMullen","version":22,"id":"79399","lastModified":"1301902067000","name":"Trent McMullen","type":"Person","_key":"63231"} +{"label":"Charmion King","version":21,"id":"79400","lastModified":"1301902349000","name":"Charmion King","type":"Person","_key":"63232"} +{"label":"Jessica Booker","version":19,"id":"79401","lastModified":"1301902463000","name":"Jessica Booker","type":"Person","_key":"63233"} +{"label":"Tracy Wright","version":19,"id":"79402","lastModified":"1301902463000","name":"Tracy Wright","type":"Person","_key":"63234"} +{"label":"Karen Glave","version":19,"id":"79403","lastModified":"1301902463000","name":"Karen Glave","type":"Person","_key":"63235"} +{"label":"Chandra Muszka","version":19,"id":"79404","lastModified":"1301902463000","name":"Chandra Muszka","type":"Person","_key":"63236"} +{"label":"Bryan Renfro","version":19,"id":"79405","lastModified":"1301902463000","name":"Bryan Renfro","type":"Person","_key":"63237"} +{"label":"Daniel Iron","version":19,"id":"19948","lastModified":"1301901559000","name":"Daniel Iron","type":"Person","_key":"63238"} +{"label":"Michael McMurtry","version":19,"id":"79406","lastModified":"1301902463000","name":"Michael McMurtry","type":"Person","_key":"63239"} +{"label":"Pierre Elrick","version":19,"id":"79407","lastModified":"1301902463000","name":"Pierre Elrick","type":"Person","_key":"63240"} +{"label":"Regan Moore","version":19,"id":"79408","lastModified":"1301902463000","name":"Regan Moore","type":"Person","_key":"63241"} +{"label":"Darren O'Donnell","version":19,"id":"79409","lastModified":"1301902463000","name":"Darren O'Donnell","type":"Person","_key":"63242"} +{"label":"Bob Martin","version":19,"id":"79410","lastModified":"1301902463000","name":"Bob Martin","type":"Person","_key":"63243"} +{"label":"Nathalie Shats","version":19,"id":"79412","lastModified":"1301902463000","name":"Nathalie Shats","type":"Person","_key":"63244"} +{"label":"La classe am\u00e9ricaine","description":"Following the death of the world classiest man, George Abitbol, three journalists investigate to try to understand his last words: \"Monde de merde!\" La Classe Am\u00e9ricaine is a montage of scenes taken from the Warner Bros. catalog and dubbed to fit the narration.","id":"16130","runtime":72,"imdbId":"tt0321715","trailer":"http:\/\/www.youtube.com\/watch?v=XtOijCGdjsc","version":48,"lastModified":"1301902900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a67\/4bc94a6f017a3c57fe020a67\/la-classe-americaine-mid.jpg","studio":"Canal Plus","genre":"Comedy","title":"La classe am\u00e9ricaine","releaseDate":725846400000,"language":"en","type":"Movie","_key":"63245"} +{"label":"Dominique Mezerette","version":17,"id":"142989","lastModified":"1301902411000","name":"Dominique Mezerette","type":"Person","_key":"63246"} +{"label":"Undertow","description":"The Munns, father John and sons Chris and Tim, recede to the woods of rural Georgia. Their life together is forever changed with the arrival of Uncle Deel, though the tragedy that follows forces troubled Chris to become a man.","id":"16131","runtime":108,"imdbId":"tt0360130","homepage":"http:\/\/www.undertowmovie.com\/","version":360,"lastModified":"1301904519000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a70\/4bc94a70017a3c57fe020a70\/undertow-mid.jpg","studio":"United Artists","genre":"Drama","title":"Undertow","releaseDate":1084492800000,"language":"en","type":"Movie","_key":"63247"} +{"label":"Robert Longstreet","version":21,"id":"79416","lastModified":"1301901718000","name":"Robert Longstreet","type":"Person","_key":"63248"} +{"label":"Devon Alan","version":19,"id":"79418","lastModified":"1301902241000","name":"Devon Alan","type":"Person","_key":"63249"} +{"label":"Eddie Rouse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ef\/4c8cf01d5e73d606900004ef\/eddie-rouse-profile.jpg","version":26,"id":"79419","lastModified":"1302143775000","name":"Eddie Rouse","type":"Person","_key":"63250"} +{"label":"Patrice Johnson","version":19,"id":"79420","lastModified":"1301902067000","name":"Patrice Johnson","type":"Person","_key":"63251"} +{"label":"Charles 'Jester' Poston","version":19,"id":"79421","lastModified":"1301902067000","name":"Charles 'Jester' Poston","type":"Person","_key":"63252"} +{"label":"Mark Darby Robinson","version":19,"id":"79422","lastModified":"1301902241000","name":"Mark Darby Robinson","type":"Person","_key":"63253"} +{"label":"Leigh Hill","version":20,"id":"79423","lastModified":"1301902138000","name":"Leigh Hill","type":"Person","_key":"63254"} +{"label":"Alfred M. Jackson","version":19,"id":"79424","lastModified":"1301902067000","name":"Alfred M. Jackson","type":"Person","_key":"63255"} +{"label":"William D. Turner","version":19,"id":"79425","lastModified":"1301902241000","name":"William D. Turner","type":"Person","_key":"63256"} +{"label":"Carla Bessey","version":19,"id":"79426","lastModified":"1301902241000","name":"Carla Bessey","type":"Person","_key":"63257"} +{"label":"Damian Jewan Lee","version":19,"id":"79427","lastModified":"1301902240000","name":"Damian Jewan Lee","type":"Person","_key":"63258"} +{"label":"Michael Gulick","version":19,"id":"79428","lastModified":"1301902067000","name":"Michael Gulick","type":"Person","_key":"63259"} +{"label":"David Blazina","version":19,"id":"79429","lastModified":"1301902067000","name":"David Blazina","type":"Person","_key":"63260"} +{"label":"Carlos DeLoach","version":19,"id":"79430","lastModified":"1301902240000","name":"Carlos DeLoach","type":"Person","_key":"63261"} +{"label":"George Smith","version":19,"id":"79431","lastModified":"1301902067000","name":"George Smith","type":"Person","_key":"63262"} +{"label":"H.G. Green","version":19,"id":"79432","lastModified":"1301902240000","name":"H.G. Green","type":"Person","_key":"63263"} +{"label":"Jesse Scott Nelson","version":19,"id":"79433","lastModified":"1301902067000","name":"Jesse Scott Nelson","type":"Person","_key":"63264"} +{"label":"Craig Zobel","version":21,"id":"79434","lastModified":"1301902328000","name":"Craig Zobel","type":"Person","_key":"63265"} +{"label":"Sophia Lin","version":21,"id":"79415","lastModified":"1301902241000","name":"Sophia Lin","type":"Person","_key":"63266"} +{"label":"Anne Marie Dove","version":19,"id":"79435","lastModified":"1301902067000","name":"Anne Marie Dove","type":"Person","_key":"63267"} +{"label":"Thelma Louise Carter","version":19,"id":"79436","lastModified":"1301902240000","name":"Thelma Louise Carter","type":"Person","_key":"63268"} +{"label":"Josh Lucas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/774\/4cc3004d5e73d67786001774\/josh-lucas-profile.jpg","version":30,"id":"139718","lastModified":"1301901855000","name":"Josh Lucas","type":"Person","_key":"63269"} +{"label":"De Tweeling","description":"Twin Sisters is an epic love story based on the Dutch bestseller by Tessa de Loo that has been read by more than 3.5 million readers in Holland and Germany.","id":"16132","runtime":137,"imdbId":"tt0322674","version":88,"lastModified":"1301903707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb7\/4d22c5d05e73d66b30003bb7\/de-tweeling-mid.jpg","studio":"IdtV Film & Video Productions","genre":"Drama","title":"De Tweeling","releaseDate":1039651200000,"language":"en","type":"Movie","_key":"63270"} +{"label":"Sina Richardt","version":19,"id":"79445","lastModified":"1301901474000","name":"Sina Richardt","type":"Person","_key":"63271"} +{"label":"Julia Koopmans","version":19,"id":"79446","lastModified":"1301901474000","name":"Julia Koopmans","type":"Person","_key":"63272"} +{"label":"Ellen Vogel","version":19,"id":"79447","lastModified":"1301902462000","name":"Ellen Vogel","type":"Person","_key":"63273"} +{"label":"Betty Schuurman","version":23,"id":"79448","lastModified":"1301902507000","name":"Betty Schuurman","type":"Person","_key":"63274"} +{"label":"Margarita Broich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/36e\/4d9cd8127b9aa1072600036e\/margarita-broich-profile.jpg","version":21,"id":"79449","lastModified":"1302117363000","name":"Margarita Broich","type":"Person","_key":"63275"} +{"label":"Jeroen Spitzenberger","version":19,"id":"79450","lastModified":"1301902462000","name":"Jeroen Spitzenberger","type":"Person","_key":"63276"} +{"label":"Hans Somers","version":19,"id":"79451","lastModified":"1301902462000","name":"Hans Somers","type":"Person","_key":"63277"} +{"label":"Hans Trentelman","version":19,"id":"79452","lastModified":"1301902462000","name":"Hans Trentelman","type":"Person","_key":"63278"} +{"label":"Survive Style 5+","description":"A man continually trying and failing to get his wife to stay dead; a self-absorbed ad agency creative director who comes up with one unworkably inane idea after another; a Brittish hitman who only wants to know everyone's function in life; and an unfortunate office worker and father whose brain is left scrambled after a stage hypnotist is murdered in mid-performance.","id":"16133","runtime":120,"imdbId":"tt0430651","version":72,"lastModified":"1301905516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8e\/4bc94a73017a3c57fe020a8e\/survive-style-5+-mid.jpg","studio":"T\u00f4hoku Shinsha","genre":"Comedy","title":"Survive Style 5+","releaseDate":1096070400000,"language":"en","type":"Movie","_key":"63279"} +{"label":"Gen Sekiguchi","version":20,"id":"79453","lastModified":"1301902531000","name":"Gen Sekiguchi","type":"Person","_key":"63280"} +{"label":"Reika Hashimoto","version":20,"id":"79455","lastModified":"1301902504000","name":"Reika Hashimoto","type":"Person","_key":"63281"} +{"label":"Yumi As\u00f4","version":18,"id":"79457","lastModified":"1301902390000","name":"Yumi As\u00f4","type":"Person","_key":"63282"} +{"label":"Yoshiyuki Morishita","version":24,"id":"79458","lastModified":"1301902143000","name":"Yoshiyuki Morishita","type":"Person","_key":"63283"} +{"label":"YosiYosi Arakawa","version":21,"id":"79460","lastModified":"1301902143000","name":"YosiYosi Arakawa","type":"Person","_key":"63284"} +{"label":"Shihori Kanjiya","version":26,"id":"79461","lastModified":"1301902209000","name":"Shihori Kanjiya","type":"Person","_key":"63285"} +{"label":"The Star Wars Holiday Special","description":"Luke Skywalker and Han Solo battle evil Imperial forces to help Chewbacca reach his imperiled family on the Wookiee planet - in time for Life Day, their most important day of the year!","id":"16134","runtime":97,"imdbId":"tt0193524","trailer":"http:\/\/www.youtube.com\/watch?v=qwW6Wf7Ekr4","version":145,"lastModified":"1301904008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4d35215e5e73d63352009c52\/the-star-wars-holiday-special-mid.jpg","studio":"20th Century Fox Television","genre":"Adventure","title":"The Star Wars Holiday Special","releaseDate":280108800000,"language":"en","type":"Movie","_key":"63286"} +{"label":"David Acomba","version":20,"id":"79462","lastModified":"1301902319000","name":"David Acomba","type":"Person","_key":"63287"} +{"label":"Craig Chaquico","version":19,"id":"79474","lastModified":"1301902462000","name":"Craig Chaquico","type":"Person","_key":"63288"} +{"label":"David Freiberg","version":19,"id":"79475","lastModified":"1301902240000","name":"David Freiberg","type":"Person","_key":"63289"} +{"label":"Mickey Morton","version":16,"id":"16000","lastModified":"1301901718000","name":"Mickey Morton","type":"Person","_key":"63290"} +{"label":"Paul Gale","version":19,"id":"79476","lastModified":"1301902462000","name":"Paul Gale","type":"Person","_key":"63291"} +{"label":"Patty Maloney","version":20,"id":"35036","lastModified":"1301901864000","name":"Patty Maloney","type":"Person","_key":"63292"} +{"label":"Jack Rader","version":20,"id":"79477","lastModified":"1301902240000","name":"Jack Rader","type":"Person","_key":"63293"} +{"label":"Stephanie Stromer","version":19,"id":"79478","lastModified":"1301902067000","name":"Stephanie Stromer","type":"Person","_key":"63294"} +{"label":"Wazzan Troupe","version":19,"id":"79479","lastModified":"1301902462000","name":"Wazzan Troupe","type":"Person","_key":"63295"} +{"label":"Y\u00fbichi Sugiyama","version":19,"id":"79480","lastModified":"1301902462000","name":"Y\u00fbichi Sugiyama","type":"Person","_key":"63296"} +{"label":"Mum Brothers","version":19,"id":"79481","lastModified":"1301902462000","name":"Mum Brothers","type":"Person","_key":"63297"} +{"label":"Claude Woolman","version":19,"id":"79482","lastModified":"1301902240000","name":"Claude Woolman","type":"Person","_key":"63298"} +{"label":"Lev Mailer","version":19,"id":"79483","lastModified":"1301902462000","name":"Lev Mailer","type":"Person","_key":"63299"} +{"label":"Mary Ann Hay","version":19,"id":"79485","lastModified":"1301902462000","name":"Mary Ann Hay","type":"Person","_key":"63300"} +{"label":"Art James","version":19,"id":"79486","lastModified":"1301902240000","name":"Art James","type":"Person","_key":"63301"} +{"label":"Marcus Powell","version":19,"id":"79487","lastModified":"1301902240000","name":"Marcus Powell","type":"Person","_key":"63302"} +{"label":"Arthur Rowton","version":19,"id":"79488","lastModified":"1301902462000","name":"Arthur Rowton","type":"Person","_key":"63303"} +{"label":"Leslie Schofield","version":19,"id":"79489","lastModified":"1301902240000","name":"Leslie Schofield","type":"Person","_key":"63304"} +{"label":"Don Francks","version":28,"id":"87461","lastModified":"1301902721000","name":"Don Francks","type":"Person","_key":"63305"} +{"label":"Mister Lonely","description":"In Paris, a young American who works as a Michael Jackson lookalike meets Marilyn Monroe, who invites him to her commune in Scotland, where she lives with Charlie Chaplin and her daughter, Shirley Temple.","id":"16135","runtime":112,"imdbId":"tt0475984","trailer":"http:\/\/www.youtube.com\/watch?v=ckzRzhQDMrk","version":204,"lastModified":"1301904520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa0\/4bc94a77017a3c57fe020aa0\/mister-lonely-mid.jpg","studio":"Film4","genre":"Comedy","title":"Mister Lonely","releaseDate":1179792000000,"language":"en","type":"Movie","_key":"63306"} +{"label":"Harmony Korine","version":38,"id":"51918","lastModified":"1301901943000","name":"Harmony Korine","type":"Person","_key":"63307"} +{"label":"Richard Strange","version":19,"id":"79502","lastModified":"1301901718000","name":"Richard Strange","type":"Person","_key":"63308"} +{"label":"Jason Pennycooke","version":19,"id":"79503","lastModified":"1301901718000","name":"Jason Pennycooke","type":"Person","_key":"63309"} +{"label":"Rachel Korine","version":21,"id":"79504","lastModified":"1301901864000","name":"Rachel Korine","type":"Person","_key":"63310"} +{"label":"Joseph Morgan","version":20,"id":"79505","lastModified":"1301902120000","name":"Joseph Morgan","type":"Person","_key":"63311"} +{"label":"Melita Morgan","version":19,"id":"79506","lastModified":"1301902067000","name":"Melita Morgan","type":"Person","_key":"63312"} +{"label":"Daniel Rovai","version":19,"id":"79507","lastModified":"1301901864000","name":"Daniel Rovai","type":"Person","_key":"63313"} +{"label":"Nigel Cooper","version":19,"id":"79508","lastModified":"1301902067000","name":"Nigel Cooper","type":"Person","_key":"63314"} +{"label":"Mal Whiteley","version":19,"id":"79509","lastModified":"1301901864000","name":"Mal Whiteley","type":"Person","_key":"63315"} +{"label":"Esme Creed-Miles","version":19,"id":"79510","lastModified":"1301901864000","name":"Esme Creed-Miles","type":"Person","_key":"63316"} +{"label":"Michael-Joel David Stuart","version":17,"id":"79511","lastModified":"1301901864000","name":"Michael-Joel David Stuart","type":"Person","_key":"63317"} +{"label":"Cerrlera","version":19,"id":"79512","lastModified":"1301901718000","name":"Cerrlera","type":"Person","_key":"63318"} +{"label":"Britta Gartner","version":19,"id":"79513","lastModified":"1301901864000","name":"Britta Gartner","type":"Person","_key":"63319"} +{"label":"Camille De Pazzis","version":19,"id":"79514","lastModified":"1301901718000","name":"Camille De Pazzis","type":"Person","_key":"63320"} +{"label":"David Blaine","version":19,"id":"79515","lastModified":"1301901534000","name":"David Blaine","type":"Person","_key":"63321"} +{"label":"Eve Korine","version":19,"id":"79516","lastModified":"1301901864000","name":"Eve Korine","type":"Person","_key":"63322"} +{"label":"Elina Larrauga","version":19,"id":"79517","lastModified":"1301902240000","name":"Elina Larrauga","type":"Person","_key":"63323"} +{"label":"Loreto Barcelo","version":19,"id":"79518","lastModified":"1301901718000","name":"Loreto Barcelo","type":"Person","_key":"63324"} +{"label":"Gundula Hofer","version":19,"id":"79519","lastModified":"1301902240000","name":"Gundula Hofer","type":"Person","_key":"63325"} +{"label":"Sabina Ruiz","version":19,"id":"79520","lastModified":"1301901718000","name":"Sabina Ruiz","type":"Person","_key":"63326"} +{"label":"Lila Munro","version":19,"id":"79521","lastModified":"1301901718000","name":"Lila Munro","type":"Person","_key":"63327"} +{"label":"Leslie Aldredge","version":19,"id":"79522","lastModified":"1301901718000","name":"Leslie Aldredge","type":"Person","_key":"63328"} +{"label":"Louisa Jones","version":19,"id":"79523","lastModified":"1301901718000","name":"Louisa Jones","type":"Person","_key":"63329"} +{"label":"Aralelly Davidson","version":19,"id":"79524","lastModified":"1301901864000","name":"Aralelly Davidson","type":"Person","_key":"63330"} +{"label":"Anyury Trotman","version":19,"id":"79525","lastModified":"1301901608000","name":"Anyury Trotman","type":"Person","_key":"63331"} +{"label":"Mikeysha Calimoke","version":19,"id":"79526","lastModified":"1301902067000","name":"Mikeysha Calimoke","type":"Person","_key":"63332"} +{"label":"Sue Clark","version":19,"id":"79527","lastModified":"1301901864000","name":"Sue Clark","type":"Person","_key":"63333"} +{"label":"Macia Zapata","version":19,"id":"79528","lastModified":"1301901864000","name":"Macia Zapata","type":"Person","_key":"63334"} +{"label":"Eric Cornet","version":19,"id":"79529","lastModified":"1301902067000","name":"Eric Cornet","type":"Person","_key":"63335"} +{"label":"Franck Milhan","version":19,"id":"79530","lastModified":"1301901718000","name":"Franck Milhan","type":"Person","_key":"63336"} +{"label":"Alisa Grace Greaves","version":19,"id":"79531","lastModified":"1301901718000","name":"Alisa Grace Greaves","type":"Person","_key":"63337"} +{"label":"Quentin Grosset","version":21,"id":"79532","lastModified":"1301902067000","name":"Quentin Grosset","type":"Person","_key":"63338"} +{"label":"Juice","description":"Juice touches on the lives of four urban youths growing up in Harlem. It follows the day to day activities in the young men's lives starting out as innocent mischief but growing more serious as time passes by.","id":"16136","runtime":95,"imdbId":"tt0104573","version":106,"lastModified":"1302029994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa9\/4bc94a78017a3c57fe020aa9\/juice-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Juice","releaseDate":695606400000,"language":"en","type":"Movie","_key":"63339"} +{"label":"Khalil Kain","version":26,"id":"79538","lastModified":"1301901412000","name":"Khalil Kain","type":"Person","_key":"63340"} +{"label":"Jermaine 'Huggy' Hopkins","version":18,"id":"79539","lastModified":"1301901851000","name":"Jermaine 'Huggy' Hopkins","type":"Person","_key":"63341"} +{"label":"Fear(s) of the Dark","description":"Several scary black-and-white animated segments in different styles appeal to our fear(s) of the dark.","id":"16137","runtime":85,"imdbId":"tt0792986","trailer":"http:\/\/www.youtube.com\/watch?v=CrAQdV622Lg","version":156,"lastModified":"1301905265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab6\/4bc94a79017a3c57fe020ab6\/peur-s-du-noir-mid.jpg","studio":"Prima Lin\u00e9a Productions","genre":"Animation","title":"Fear(s) of the Dark","releaseDate":1192924800000,"language":"en","type":"Movie","_key":"63342"} +{"label":"Blutch","version":27,"id":"79541","lastModified":"1301901642000","name":"Blutch","type":"Person","_key":"63343"} +{"label":"Charles Burns","version":23,"id":"79542","lastModified":"1301901863000","name":"Charles Burns","type":"Person","_key":"63344"} +{"label":"Marie Caillou","version":20,"id":"79543","lastModified":"1301902067000","name":"Marie Caillou","type":"Person","_key":"63345"} +{"label":"Pierre Di Sciullo","version":23,"id":"79544","lastModified":"1301902240000","name":"Pierre Di Sciullo","type":"Person","_key":"63346"} +{"label":"Lorenzo Mattotti","version":20,"id":"79545","lastModified":"1301902240000","name":"Lorenzo Mattotti","type":"Person","_key":"63347"} +{"label":"Richard McGuire","version":23,"id":"79546","lastModified":"1301901718000","name":"Richard McGuire","type":"Person","_key":"63348"} +{"label":"Gil Alma","version":20,"id":"79550","lastModified":"1301901474000","name":"Gil Alma","type":"Person","_key":"63349"} +{"label":"Fran\u00e7ois Creton","version":20,"id":"79551","lastModified":"1301901608000","name":"Fran\u00e7ois Creton","type":"Person","_key":"63350"} +{"label":"Sarah-Laure Estragnat","version":20,"id":"24579","lastModified":"1301901608000","name":"Sarah-Laure Estragnat","type":"Person","_key":"63351"} +{"label":"Nicolas Feroumont","version":20,"id":"79552","lastModified":"1301901863000","name":"Nicolas Feroumont","type":"Person","_key":"63352"} +{"label":"Arthur H.","version":20,"id":"79553","lastModified":"1301901863000","name":"Arthur H.","type":"Person","_key":"63353"} +{"label":"Christian Hincker","version":20,"id":"79554","lastModified":"1301901863000","name":"Christian Hincker","type":"Person","_key":"63354"} +{"label":"Lino Hincker","version":20,"id":"79555","lastModified":"1301901863000","name":"Lino Hincker","type":"Person","_key":"63355"} +{"label":"Melaura Honnay","version":20,"id":"79556","lastModified":"1301901863000","name":"Melaura Honnay","type":"Person","_key":"63356"} +{"label":"Am\u00e9lie Lerma","version":21,"id":"79557","lastModified":"1301901863000","name":"Am\u00e9lie Lerma","type":"Person","_key":"63357"} +{"label":"Florence Maury","version":20,"id":"79558","lastModified":"1301901863000","name":"Florence Maury","type":"Person","_key":"63358"} +{"label":"Adriana Piasek-Wanski","version":20,"id":"79559","lastModified":"1301901863000","name":"Adriana Piasek-Wanski","type":"Person","_key":"63359"} +{"label":"Louisa Pili","version":20,"id":"79560","lastModified":"1301901863000","name":"Louisa Pili","type":"Person","_key":"63360"} +{"label":"Amaury Smets","version":20,"id":"79561","lastModified":"1301901863000","name":"Amaury Smets","type":"Person","_key":"63361"} +{"label":"Laurent Van den Rest","version":20,"id":"79562","lastModified":"1301901863000","name":"Laurent Van den Rest","type":"Person","_key":"63362"} +{"label":"Andreas Vuillet","version":20,"id":"79563","lastModified":"1301901863000","name":"Andreas Vuillet","type":"Person","_key":"63363"} +{"label":"R-Point","description":"On 07 January 1972, the South Korean base in Nah-Trang, Vietnam, receives a radio transmission from a missing platoon presumed dead.","id":"16138","runtime":107,"imdbId":"tt0417072","version":141,"lastModified":"1301958583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac3\/4bc94a7d017a3c57fe020ac3\/r-point-mid.jpg","studio":"CN Film","genre":"Action","title":"R-Point","releaseDate":1092355200000,"language":"en","type":"Movie","_key":"63364"} +{"label":"Su-chang Kong","version":29,"id":"79565","lastModified":"1301958583000","name":"Su-chang Kong","type":"Person","_key":"63365"} +{"label":"Woo-seong Kam","version":21,"id":"79572","lastModified":"1301958583000","name":"Woo-seong Kam","type":"Person","_key":"63366"} +{"label":"Won-sang Park","version":20,"id":"79574","lastModified":"1301958583000","name":"Won-sang Park","type":"Person","_key":"63367"} +{"label":"Seon-gyun Lee","version":20,"id":"79575","lastModified":"1301958583000","name":"Seon-gyun Lee","type":"Person","_key":"63368"} +{"label":"Jin-ho Song","version":20,"id":"79576","lastModified":"1301958583000","name":"Jin-ho Song","type":"Person","_key":"63369"} +{"label":"Byeong-cheol Kim","version":20,"id":"79577","lastModified":"1301958583000","name":"Byeong-cheol Kim","type":"Person","_key":"63370"} +{"label":"Kyeong-ho Jeong","version":22,"id":"79578","lastModified":"1301958583000","name":"Kyeong-ho Jeong","type":"Person","_key":"63371"} +{"label":"Yeong-dong Mun","version":21,"id":"79579","lastModified":"1301958583000","name":"Yeong-dong Mun","type":"Person","_key":"63372"} +{"label":"David Joseph Anselmo","version":20,"id":"79580","lastModified":"1301958583000","name":"David Joseph Anselmo","type":"Person","_key":"63373"} +{"label":"Phantasm III","description":"The Tall Man, that imposing menace from Morningside Mortuary, is back and once again haunting the thoughts of the now-adult Mike and his friend, ex-Ice Cream vendor Reggie. The two continue their hunt for the mysterious figure and in his path of destruction encounter a variety of dangerous situations, friends and enemies.","id":"16139","runtime":91,"imdbId":"tt0110823","version":119,"lastModified":"1301904748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/acc\/4bc94a7e017a3c57fe020acc\/phantasm-iii-mid.jpg","studio":"Starway International Inc.","genre":"Horror","title":"Phantasm III","releaseDate":768182400000,"language":"en","type":"Movie","_key":"63374"} +{"label":"Gloria Lynne Henry","version":19,"id":"79581","lastModified":"1301901761000","name":"Gloria Lynne Henry","type":"Person","_key":"63375"} +{"label":"Kevin Connors","version":19,"id":"79582","lastModified":"1301902474000","name":"Kevin Connors","type":"Person","_key":"63376"} +{"label":"Cindy Ambuehl","version":19,"id":"79583","lastModified":"1301902474000","name":"Cindy Ambuehl","type":"Person","_key":"63377"} +{"label":"Brooks Gardner","version":19,"id":"35162","lastModified":"1301901925000","name":"Brooks Gardner","type":"Person","_key":"63378"} +{"label":"Irene Roseen","version":19,"id":"79585","lastModified":"1301902474000","name":"Irene Roseen","type":"Person","_key":"63379"} +{"label":"Sarah Scott Davis","version":19,"id":"79586","lastModified":"1301902474000","name":"Sarah Scott Davis","type":"Person","_key":"63380"} +{"label":"Duane Tucker","version":19,"id":"79587","lastModified":"1301902474000","name":"Duane Tucker","type":"Person","_key":"63381"} +{"label":"Claire Benedek","version":19,"id":"79588","lastModified":"1301902474000","name":"Claire Benedek","type":"Person","_key":"63382"} +{"label":"Wendy Way","version":19,"id":"79589","lastModified":"1301902474000","name":"Wendy Way","type":"Person","_key":"63383"} +{"label":"Robert Beecher","version":19,"id":"79590","lastModified":"1301902474000","name":"Robert Beecher","type":"Person","_key":"63384"} +{"label":"Death Note 2: The Last Name","description":"In the second installment of the Death Note film franchise, Light Yagami meets a second Kira and faithful follower Misa Amane and her Shinigami named Rem. Light attempts to defeat L along with Teru Mikami (a Kira follower) and Kiyomi Takada (another Kira follower) but in the end will Light win? or will a Shinigami named Ryuk make all the difference in Light's victory or his ultimate death?","id":"16140","runtime":141,"imdbId":"tt0810827","version":235,"lastModified":"1301902643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ada\/4bc94a80017a3c57fe020ada\/desu-noto-the-last-name-mid.jpg","genre":"Fantasy","title":"Death Note 2: The Last Name","releaseDate":1161993600000,"language":"en","type":"Movie","_key":"63385"} +{"label":"Takeshi Kaga","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/539\/4d90d5da7b9aa16a24003539\/takeshi-kaga-profile.jpg","version":24,"id":"84619","lastModified":"1301902325000","name":"Takeshi Kaga","type":"Person","_key":"63386"} +{"label":"Shigeki Hosokawa","version":23,"id":"84621","lastModified":"1301902676000","name":"Shigeki Hosokawa","type":"Person","_key":"63387"} +{"label":"Shunji Fujimura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/911\/4d90d6397b9aa16755003911\/shunji-fujimura-profile.jpg","version":26,"id":"84622","lastModified":"1301901947000","name":"Shunji Fujimura","type":"Person","_key":"63388"} +{"label":"Shin Shimizu","version":24,"id":"84623","lastModified":"1301902705000","name":"Shin Shimizu","type":"Person","_key":"63389"} +{"label":"Nitro","description":"Max leads a good life with Alice and their son Th\u00e9o; that is until Alice is threatened with death while waiting for a heart transplant. Max promises Th\u00e9o that he will save Alice, but to keep his word he must find a heart, and fast. Since time is running out and he must find a solution, Max decides to reconnect with his troubled past. His decision will change his life in ways he could never imagine","id":"16143","runtime":90,"imdbId":"tt0790602","version":100,"lastModified":"1301905254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae3\/4bc94a80017a3c57fe020ae3\/nitro-mid.jpg","genre":"Action","title":"Nitro","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"63390"} +{"label":"Lucie Laurier","version":17,"id":"109619","lastModified":"1301903033000","name":"Lucie Laurier","type":"Person","_key":"63391"} +{"label":"Guillaume Lemay-Thivierge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd0\/4d4e99895e73d617bd002dd0\/guillaume-lemay-thivierge-profile.jpg","version":24,"id":"109620","lastModified":"1301901778000","name":"Guillaume Lemay-Thivierge","type":"Person","_key":"63392"} +{"label":"Phantasm IV","description":"Taking off immediately where the last one ended, in this episode Mike travels across dimensions and time fleeing from the Tall Man, at the same time he tries to find the origins of his enemy, and what really happened the night that his brother died. Meanwhile, Reggie battles the spheres and the undead in a quest to find Mike before the Tall Man can complete his transformation.","id":"16146","runtime":90,"imdbId":"tt0138703","version":157,"lastModified":"1302029215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aec\/4bc94a81017a3c57fe020aec\/phantasm-iv-mid.jpg","genre":"Horror","title":"Phantasm IV","releaseDate":908236800000,"language":"en","type":"Movie","_key":"63393"} +{"label":"Bob Ivy","version":24,"id":"79592","lastModified":"1301902137000","name":"Bob Ivy","type":"Person","_key":"63394"} +{"label":"Christopher L. Stone","version":31,"id":"28947","lastModified":"1301901760000","name":"Christopher L. Stone","type":"Person","_key":"63395"} +{"label":"Chloe Kay","version":19,"id":"79593","lastModified":"1301902240000","name":"Chloe Kay","type":"Person","_key":"63396"} +{"label":"Sylvia Flammer","version":19,"id":"79594","lastModified":"1301901863000","name":"Sylvia Flammer","type":"Person","_key":"63397"} +{"label":"David Gasster","version":19,"id":"79595","lastModified":"1301902462000","name":"David Gasster","type":"Person","_key":"63398"} +{"label":"Sasha Kassel","version":19,"id":"79596","lastModified":"1301901863000","name":"Sasha Kassel","type":"Person","_key":"63399"} +{"label":"Aidan Kassel","version":19,"id":"79597","lastModified":"1301902462000","name":"Aidan Kassel","type":"Person","_key":"63400"} +{"label":"Eric Avary","version":19,"id":"79598","lastModified":"1301902067000","name":"Eric Avary","type":"Person","_key":"63401"} +{"label":"Andy John","version":19,"id":"79599","lastModified":"1301902240000","name":"Andy John","type":"Person","_key":"63402"} +{"label":"George A. Craig","version":19,"id":"79600","lastModified":"1301902462000","name":"George A. Craig","type":"Person","_key":"63403"} +{"label":"Aurore","description":"After the sudden death of her mother, Aurore Gagnon is abused by her disturbed step-mother as her town remains in the silence followed by her death. Based on a true story.","id":"16147","runtime":115,"imdbId":"tt0430895","version":93,"lastModified":"1301923999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c72\/4cf27bd45e73d61e3c000c72\/aurore-mid.jpg","studio":"Cin\u00e9maginaire Inc.","genre":"Drama","title":"Aurore","releaseDate":1120780800000,"language":"en","type":"Movie","_key":"63404"} +{"label":"Luc Dionne","version":20,"id":"79602","lastModified":"1301901855000","name":"Luc Dionne","type":"Person","_key":"63405"} +{"label":"Marianne Fortier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d72\/4d7b331d5e73d65174000d72\/marianne-fortier-profile.jpg","biography":"Maman est chez le coiffeur\nAurore","version":26,"birthday":"752194800000","id":"79606","birthplace":"Qu\u00e9bec","lastModified":"1301901837000","name":"Marianne Fortier","type":"Person","_key":"63406"} +{"label":"Serge Postigo","version":19,"id":"79607","lastModified":"1301901778000","name":"Serge Postigo","type":"Person","_key":"63407"} +{"label":"H\u00e9l\u00e8ne Bourgeois Leclerc","version":21,"id":"79608","lastModified":"1301901646000","name":"H\u00e9l\u00e8ne Bourgeois Leclerc","type":"Person","_key":"63408"} +{"label":"St\u00e9phanie Lapointe","version":19,"id":"79609","lastModified":"1301902325000","name":"St\u00e9phanie Lapointe","type":"Person","_key":"63409"} +{"label":"Sarah-Jeanne Labrosse","version":19,"id":"79610","lastModified":"1301902325000","name":"Sarah-Jeanne Labrosse","type":"Person","_key":"63410"} +{"label":"Alice Morel-Michaud","version":19,"id":"79611","lastModified":"1301902325000","name":"Alice Morel-Michaud","type":"Person","_key":"63411"} +{"label":"Michel Forget","version":21,"id":"79612","lastModified":"1301902143000","name":"Michel Forget","type":"Person","_key":"63412"} +{"label":"Monique Spaziani","version":20,"id":"79613","lastModified":"1301902325000","name":"Monique Spaziani","type":"Person","_key":"63413"} +{"label":"Francine Ruel","version":19,"id":"79614","lastModified":"1301902325000","name":"Francine Ruel","type":"Person","_key":"63414"} +{"label":"Michel Barrette","version":19,"id":"79615","lastModified":"1301902143000","name":"Michel Barrette","type":"Person","_key":"63415"} +{"label":"Luc Senay","version":21,"id":"79616","lastModified":"1301902325000","name":"Luc Senay","type":"Person","_key":"63416"} +{"label":"Gaston Lepage","version":19,"id":"79617","lastModified":"1301902325000","name":"Gaston Lepage","type":"Person","_key":"63417"} +{"label":"Albert Millaire","version":19,"id":"79618","lastModified":"1301902143000","name":"Albert Millaire","type":"Person","_key":"63418"} +{"label":"No\u00e9mie Yelle","version":19,"id":"79619","lastModified":"1301902325000","name":"No\u00e9mie Yelle","type":"Person","_key":"63419"} +{"label":"Jean Marchand","version":21,"id":"79620","lastModified":"1301901778000","name":"Jean Marchand","type":"Person","_key":"63420"} +{"label":"Catherine Trudeau","version":19,"id":"79621","lastModified":"1301902325000","name":"Catherine Trudeau","type":"Person","_key":"63421"} +{"label":"Muriel Dutil","version":19,"id":"79622","lastModified":"1301902325000","name":"Muriel Dutil","type":"Person","_key":"63422"} +{"label":"No\u00ebl Burton","version":22,"id":"79623","lastModified":"1301901778000","name":"No\u00ebl Burton","type":"Person","_key":"63423"} +{"label":"Zero Effect","description":"Daryl Zero is a private investigator. Along with his assistant, Steve Arlo he solves impossible crimes and puzzles. Though a master investigator, when he is not working, Zero doesn't know what to do with himself. He has no social skills, writes bad music, and drives Arlo crazy. In his latest case, Zero must find out who is blackmailing a rich executive, and when his client won't tell him, why.","id":"16148","runtime":116,"imdbId":"tt0120906","version":140,"lastModified":"1302039340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afa\/4bc94a85017a3c57fe020afa\/zero-effect-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"Zero Effect","releaseDate":886118400000,"language":"en","type":"Movie","_key":"63424"} +{"label":"Hugh Ross","version":29,"id":"79648","lastModified":"1301902220000","name":"Hugh Ross","type":"Person","_key":"63425"} +{"label":"Sarah DeVincentis","version":19,"id":"79649","lastModified":"1301901718000","name":"Sarah DeVincentis","type":"Person","_key":"63426"} +{"label":"Matt O'Toole","version":19,"id":"79651","lastModified":"1301902067000","name":"Matt O'Toole","type":"Person","_key":"63427"} +{"label":"Michele Mariana","version":19,"id":"79653","lastModified":"1301901608000","name":"Michele Mariana","type":"Person","_key":"63428"} +{"label":"Robert Katims","version":19,"id":"79654","lastModified":"1301902067000","name":"Robert Katims","type":"Person","_key":"63429"} +{"label":"Tyrone Henry","version":19,"id":"79657","lastModified":"1301902240000","name":"Tyrone Henry","type":"Person","_key":"63430"} +{"label":"Aleta Barthell","version":19,"id":"79659","lastModified":"1301902067000","name":"Aleta Barthell","type":"Person","_key":"63431"} +{"label":"Tapp Watkins","version":19,"id":"79661","lastModified":"1301901863000","name":"Tapp Watkins","type":"Person","_key":"63432"} +{"label":"Wendy Westerwelle","version":19,"id":"79662","lastModified":"1301901534000","name":"Wendy Westerwelle","type":"Person","_key":"63433"} +{"label":"Lauren Hasson","version":19,"id":"79663","lastModified":"1301901863000","name":"Lauren Hasson","type":"Person","_key":"63434"} +{"label":"The Great Rock 'n' Roll Swindle","description":"A rather incoherent post-breakup Sex Pistols \"documentary\", told from the point of view of Pistols manager Malcolm McLaren, whose (arguable) position is that the Sex Pistols in particular and punk rock in general were an elaborate scam perpetrated by him in order to make \"a million pounds.\"","id":"16149","runtime":103,"imdbId":"tt0080813","version":91,"lastModified":"1301905265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b03\/4bc94a86017a3c57fe020b03\/the-great-rock-n-roll-swindle-mid.png","studio":"Boyd's Company","genre":"Comedy","title":"The Great Rock 'n' Roll Swindle","releaseDate":337478400000,"language":"en","type":"Movie","_key":"63435"} +{"label":"Malcolm McLaren","version":22,"id":"44732","lastModified":"1301916408000","name":"Malcolm McLaren","type":"Person","_key":"63436"} +{"label":"Paul Cook","version":20,"id":"79628","lastModified":"1301902462000","name":"Paul Cook","type":"Person","_key":"63437"} +{"label":"Sid Vicious","version":19,"id":"79629","lastModified":"1301902067000","name":"Sid Vicious","type":"Person","_key":"63438"} +{"label":"John Lydon","version":20,"id":"79630","lastModified":"1301902462000","name":"John Lydon","type":"Person","_key":"63439"} +{"label":"Ronald Biggs","version":19,"id":"79631","lastModified":"1301902462000","name":"Ronald Biggs","type":"Person","_key":"63440"} +{"label":"Liz Fraser","version":27,"id":"79632","lastModified":"1301902390000","name":"Liz Fraser","type":"Person","_key":"63441"} +{"label":"Jess Conrad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/abc\/4cf92c267b9aa1514b001abc\/jess-conrad-profile.jpg","version":22,"id":"79633","lastModified":"1301901443000","name":"Jess Conrad","type":"Person","_key":"63442"} +{"label":"Mary Millington","version":19,"id":"79634","lastModified":"1301902462000","name":"Mary Millington","type":"Person","_key":"63443"} +{"label":"Julian Holloway","version":30,"id":"79635","lastModified":"1301902497000","name":"Julian Holloway","type":"Person","_key":"63444"} +{"label":"Johnny Shannon","version":17,"id":"79636","lastModified":"1301902462000","name":"Johnny Shannon","type":"Person","_key":"63445"} +{"label":"Helen Wellington-Lloyd","version":19,"id":"79637","lastModified":"1301902462000","name":"Helen Wellington-Lloyd","type":"Person","_key":"63446"} +{"label":"Edward Tudor-Pole","version":21,"id":"79638","lastModified":"1301902462000","name":"Edward Tudor-Pole","type":"Person","_key":"63447"} +{"label":"Faye Hart","version":19,"id":"79639","lastModified":"1301902462000","name":"Faye Hart","type":"Person","_key":"63448"} +{"label":"Alan Jones","version":19,"id":"79640","lastModified":"1301902462000","name":"Alan Jones","type":"Person","_key":"63449"} +{"label":"Irene Handl","version":26,"id":"79641","lastModified":"1301902539000","name":"Irene Handl","type":"Person","_key":"63450"} +{"label":"Judy Croll","version":19,"id":"79642","lastModified":"1301902240000","name":"Judy Croll","type":"Person","_key":"63451"} +{"label":"Peter Dean","version":19,"id":"79643","lastModified":"1301902462000","name":"Peter Dean","type":"Person","_key":"63452"} +{"label":"Dave Dee","version":19,"id":"79644","lastModified":"1301902462000","name":"Dave Dee","type":"Person","_key":"63453"} +{"label":"Jerzimy","version":19,"id":"79645","lastModified":"1301902462000","name":"Jerzimy","type":"Person","_key":"63454"} +{"label":"James Jeter","version":22,"id":"79646","lastModified":"1301902131000","name":"James Jeter","type":"Person","_key":"63455"} +{"label":"Jordan","version":19,"id":"79647","lastModified":"1301902462000","name":"Jordan","type":"Person","_key":"63456"} +{"label":"Debbie Juvenile","version":19,"id":"79650","lastModified":"1301902462000","name":"Debbie Juvenile","type":"Person","_key":"63457"} +{"label":"Glen Matlock","version":19,"id":"79652","lastModified":"1301902462000","name":"Glen Matlock","type":"Person","_key":"63458"} +{"label":"Sophie Richmond","version":19,"id":"79655","lastModified":"1301902462000","name":"Sophie Richmond","type":"Person","_key":"63459"} +{"label":"Nancy Spungen","version":19,"id":"79658","lastModified":"1301902462000","name":"Nancy Spungen","type":"Person","_key":"63460"} +{"label":"Jean Warren","version":19,"id":"79660","lastModified":"1301902462000","name":"Jean Warren","type":"Person","_key":"63461"} +{"label":"Darkon","description":"Darkon is an award-winning feature-length documentary film that follows the real-life adventures of the Darkon Wargaming Club in Baltimore, Maryland, a group of fantasy live-action role-playing (LARP) gamers.","id":"16150","runtime":93,"imdbId":"tt0462246","version":142,"lastModified":"1301906257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0c\/4bc94a88017a3c57fe020b0c\/darkon-mid.jpg","studio":"SeeThink Films","genre":"Documentary","title":"Darkon","releaseDate":1158019200000,"language":"en","type":"Movie","_key":"63462"} +{"label":"Skip Lipman","version":19,"id":"79668","lastModified":"1301902504000","name":"Skip Lipman","type":"Person","_key":"63463"} +{"label":"Kenyon Wells","version":19,"id":"79669","lastModified":"1301902504000","name":"Kenyon Wells","type":"Person","_key":"63464"} +{"label":"Daniel McArthur","version":19,"id":"79670","lastModified":"1301902504000","name":"Daniel McArthur","type":"Person","_key":"63465"} +{"label":"Rebecca Thurmond","version":19,"id":"79671","lastModified":"1301902504000","name":"Rebecca Thurmond","type":"Person","_key":"63466"} +{"label":"James Iddings","version":19,"id":"79672","lastModified":"1301902504000","name":"James Iddings","type":"Person","_key":"63467"} +{"label":"Gary Black","version":19,"id":"79673","lastModified":"1301902504000","name":"Gary Black","type":"Person","_key":"63468"} +{"label":"Domenic Prince","version":19,"id":"79674","lastModified":"1301902503000","name":"Domenic Prince","type":"Person","_key":"63469"} +{"label":"Andrew Mattingly","version":19,"id":"79675","lastModified":"1301902504000","name":"Andrew Mattingly","type":"Person","_key":"63470"} +{"label":"Frank Kanach","version":19,"id":"79676","lastModified":"1301902503000","name":"Frank Kanach","type":"Person","_key":"63471"} +{"label":"Leah Kanach","version":19,"id":"79677","lastModified":"1301902503000","name":"Leah Kanach","type":"Person","_key":"63472"} +{"label":"Luke Meyer","version":20,"id":"79680","lastModified":"1301902503000","name":"Luke Meyer","type":"Person","_key":"63473"} +{"label":"Andrew Neel","version":21,"id":"79683","lastModified":"1301902503000","name":"Andrew Neel","type":"Person","_key":"63474"} +{"label":"Look Both Ways","description":"During one unusually hot weekend, four friends struggle after hearing some life-changing news.","id":"16151","runtime":100,"imdbId":"tt0382806","version":190,"lastModified":"1302050465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1d\/4bc94a89017a3c57fe020b1d\/look-both-ways-mid.jpg","studio":"Hibiscus Films","genre":"Drama","title":"Look Both Ways","releaseDate":1109808000000,"language":"en","type":"Movie","_key":"63475"} +{"label":"Sarah Watt","version":19,"id":"79684","lastModified":"1301902240000","name":"Sarah Watt","type":"Person","_key":"63476"} +{"label":"Mary Kostakidis","version":19,"id":"79691","lastModified":"1301902462000","name":"Mary Kostakidis","type":"Person","_key":"63477"} +{"label":"Robbie Hoad","version":19,"id":"79693","lastModified":"1301902462000","name":"Robbie Hoad","type":"Person","_key":"63478"} +{"label":"Leon Teague","version":19,"id":"79694","lastModified":"1301902462000","name":"Leon Teague","type":"Person","_key":"63479"} +{"label":"Andrew S. Gilbert","version":20,"id":"79695","lastModified":"1301902462000","name":"Andrew S. Gilbert","type":"Person","_key":"63480"} +{"label":"Elena Carapetis","version":19,"id":"79696","lastModified":"1301902462000","name":"Elena Carapetis","type":"Person","_key":"63481"} +{"label":"Tamara Lee","version":19,"id":"79697","lastModified":"1301902462000","name":"Tamara Lee","type":"Person","_key":"63482"} +{"label":"Andreas Sobik","version":19,"id":"79698","lastModified":"1301902462000","name":"Andreas Sobik","type":"Person","_key":"63483"} +{"label":"Lisa Flanagan","version":21,"id":"79699","lastModified":"1301902536000","name":"Lisa Flanagan","type":"Person","_key":"63484"} +{"label":"Irena Dangov","version":19,"id":"79700","lastModified":"1301902462000","name":"Irena Dangov","type":"Person","_key":"63485"} +{"label":"Jacquelynne Willcox","version":19,"id":"79701","lastModified":"1301902462000","name":"Jacquelynne Willcox","type":"Person","_key":"63486"} +{"label":"Laura Peisley","version":19,"id":"79702","lastModified":"1301902462000","name":"Laura Peisley","type":"Person","_key":"63487"} +{"label":"Alex Rafalowicz","version":19,"id":"79703","lastModified":"1301902462000","name":"Alex Rafalowicz","type":"Person","_key":"63488"} +{"label":"Violet Gilbert","version":19,"id":"79704","lastModified":"1301902462000","name":"Violet Gilbert","type":"Person","_key":"63489"} +{"label":"Jacqueline Cook","version":19,"id":"79705","lastModified":"1301902462000","name":"Jacqueline Cook","type":"Person","_key":"63490"} +{"label":"Olive Gilbert","version":19,"id":"79706","lastModified":"1301902462000","name":"Olive Gilbert","type":"Person","_key":"63491"} +{"label":"Miranda Gilbert","version":19,"id":"79707","lastModified":"1301902462000","name":"Miranda Gilbert","type":"Person","_key":"63492"} +{"label":"Lucia Mastrantone","version":19,"id":"79708","lastModified":"1301902462000","name":"Lucia Mastrantone","type":"Person","_key":"63493"} +{"label":"Isabella Reimer","version":19,"id":"79709","lastModified":"1301902462000","name":"Isabella Reimer","type":"Person","_key":"63494"} +{"label":"Jordan Leovic","version":19,"id":"79710","lastModified":"1301902462000","name":"Jordan Leovic","type":"Person","_key":"63495"} +{"label":"Joshua Clarke","version":19,"id":"79712","lastModified":"1301902462000","name":"Joshua Clarke","type":"Person","_key":"63496"} +{"label":"Sacha Horler","version":28,"id":"79713","lastModified":"1301902513000","name":"Sacha Horler","type":"Person","_key":"63497"} +{"label":"Alirio Zavarce","version":19,"id":"79714","lastModified":"1301902462000","name":"Alirio Zavarce","type":"Person","_key":"63498"} +{"label":"Craig Behenna","version":19,"id":"79715","lastModified":"1301902462000","name":"Craig Behenna","type":"Person","_key":"63499"} +{"label":"Taimi Allan","version":19,"id":"79716","lastModified":"1301902462000","name":"Taimi Allan","type":"Person","_key":"63500"} +{"label":"Eliza Lovell","version":20,"id":"79717","lastModified":"1301902416000","name":"Eliza Lovell","type":"Person","_key":"63501"} +{"label":"Carmel Johnson","version":19,"id":"79718","lastModified":"1301902462000","name":"Carmel Johnson","type":"Person","_key":"63502"} +{"label":"Rocky Feo","version":19,"id":"79719","lastModified":"1301902462000","name":"Rocky Feo","type":"Person","_key":"63503"} +{"label":"Philip Spruce","version":22,"id":"79720","lastModified":"1301902240000","name":"Philip Spruce","type":"Person","_key":"63504"} +{"label":"Aaron J. March","version":17,"id":"79721","lastModified":"1301902462000","name":"Aaron J. March","type":"Person","_key":"63505"} +{"label":"Anni Lindner","version":17,"id":"79722","lastModified":"1301902462000","name":"Anni Lindner","type":"Person","_key":"63506"} +{"label":"Daniel Whyte","version":19,"id":"79723","lastModified":"1301902462000","name":"Daniel Whyte","type":"Person","_key":"63507"} +{"label":"Evan Branford","version":19,"id":"79724","lastModified":"1301902462000","name":"Evan Branford","type":"Person","_key":"63508"} +{"label":"Joe Weber","version":19,"id":"79725","lastModified":"1301902461000","name":"Joe Weber","type":"Person","_key":"63509"} +{"label":"Alice Doesn't Live Here Anymore","description":"A recently widowed woman on the road with her precocious young son determined to make a new life for herself as a singer. Studio: Warner Home Video Release Date: 08\/17\/2004 Starring: Ellen Burstyn Harvey Keitel Run time: 112 minutes Rating: Pg Director: Martin Scorsese ","id":"16153","runtime":112,"imdbId":"tt0071115","version":155,"lastModified":"1301903206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2a\/4bc94a8d017a3c57fe020b2a\/alice-doesn-t-live-here-anymore-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"Alice Doesn't Live Here Anymore","releaseDate":155779200000,"language":"en","type":"Movie","_key":"63510"} +{"label":"Let's Scare Jessica to Death","description":"Something is after Jessica. Something very cold, very wet... and very dead... ","id":"16154","runtime":89,"imdbId":"tt0067341","trailer":"http:\/\/www.youtube.com\/watch?v=cX4eZD3GiL0","version":160,"lastModified":"1301905119000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3c\/4bc94a90017a3c57fe020b3c\/let-s-scare-jessica-to-death-mid.jpg","studio":"Paramount Pictures","genre":"Horror","title":"Let's Scare Jessica to Death","releaseDate":50284800000,"language":"en","type":"Movie","_key":"63511"} +{"label":"John D. Hancock","version":22,"id":"79726","lastModified":"1301901851000","name":"John D. Hancock","type":"Person","_key":"63512"} +{"label":"Zohra Lampert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1e7\/4c22468b7b9aa135f90001e7\/zohra-lampert-profile.jpg","version":27,"id":"79731","lastModified":"1301902173000","name":"Zohra Lampert","type":"Person","_key":"63513"} +{"label":"Gretchen Corbett","version":19,"id":"79734","lastModified":"1301901932000","name":"Gretchen Corbett","type":"Person","_key":"63514"} +{"label":"Alan Manson","version":20,"id":"79735","lastModified":"1301901932000","name":"Alan Manson","type":"Person","_key":"63515"} +{"label":"Mariclare Costello","version":22,"id":"79736","lastModified":"1301902126000","name":"Mariclare Costello","type":"Person","_key":"63516"} +{"label":"Safe Men","description":"Two untalented singers are mistaken for a pair of major league safe crackers in Providence, Rhode Island. The two are pressed into service by the local hoodlums and quickly find themselves in conflict with their professional colleagues. Romantic interest is added by the daughter of the underworld leader who won't date the men she knows are gangsters.","id":"16155","runtime":88,"imdbId":"tt0120813","version":569,"lastModified":"1301905762000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b45\/4bc94a90017a3c57fe020b45\/safe-men-mid.jpg","genre":"Comedy","title":"Safe Men","releaseDate":903312000000,"language":"en","type":"Movie","_key":"63517"} +{"label":"Sarah Silverman : Jesus Is Magic","description":"Sarah Silverman appears before an audience in Los Angeles with several sketches, taped outside the theater, intercut into the stand-up performance. Themes include race, sex, and religion. Her comic persona is a self-centered hipster, brash and clueless about her political incorrectness. A handful of musical numbers punctuate the performance.","id":"16156","runtime":72,"imdbId":"tt0422528","homepage":"http:\/\/www.jesusismagicthemovie.com\/","version":183,"lastModified":"1301949167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4e\/4bc94a91017a3c57fe020b4e\/sarah-silverman-jesus-is-magic-mid.jpg","genre":"Comedy","title":"Sarah Silverman : Jesus Is Magic","releaseDate":1108080000000,"language":"en","type":"Movie","_key":"63518"} +{"label":"Mobile Suit Gundam: Char's Counterattack","description":"In UC 0093 the Federation has recovered from its defeat and has created a new anti-colonial special forces unit to deal with rebel forces: Londo Bell. Elsewhere in space Char Aznable re-appears out of self imposed hiding with a declaration that he now commands his own Neo-Zeon movementand intends to force the emigration of Earth's inhabitants to space by bringing about an apocalypse.","id":"16157","runtime":124,"imdbId":"tt0095262","version":106,"lastModified":"1301903271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5b\/4bc94a91017a3c57fe020b5b\/mobile-suit-gundam-char-s-counterattack-mid.jpg","studio":"Sunrise","genre":"Action","title":"Mobile Suit Gundam: Char's Counterattack","releaseDate":574128000000,"language":"en","type":"Movie","_key":"63519"} +{"label":"Yoshiyuki Tomino","version":27,"id":"79737","lastModified":"1301901561000","name":"Yoshiyuki Tomino","type":"Person","_key":"63520"} +{"label":"Sh\u00fbichi Ikeda","version":18,"id":"90561","lastModified":"1301902230000","name":"Sh\u00fbichi Ikeda","type":"Person","_key":"63521"} +{"label":"The Wood","description":"In the panicky, uncertain hours before his wedding, a groom with prenuptial jitters and his two best friends reminisce about growing up together in the middle-class African-American neighborhood of Inglewood, California. Flashing back to the twenty-something trio's childhood exploits, the memories capture the mood and nostalgia of the '80s era.","id":"16158","runtime":106,"imdbId":"tt0161100","version":235,"lastModified":"1302049422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b68\/4bc94a93017a3c57fe020b68\/the-wood-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Wood","releaseDate":932083200000,"language":"en","type":"Movie","_key":"63522"} +{"label":"Duane Finley","version":17,"id":"93535","lastModified":"1301902361000","name":"Duane Finley","type":"Person","_key":"63523"} +{"label":"Rick Famuyiwa","version":26,"id":"51866","lastModified":"1301902143000","name":"Rick Famuyiwa","type":"Person","_key":"63524"} +{"label":"Sundown: The Vampire in Retreat","description":"Reclusive vampires lounge in a lonely American town. They wear sun cream to protect themselves. A descendant of Van Helsing arrives with hilarious consequences.","id":"16159","runtime":104,"imdbId":"tt0098412","version":93,"lastModified":"1301903929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b79\/4bc94a94017a3c57fe020b79\/sundown-the-vampire-in-retreat-mid.jpg","studio":"Vestron Pictures Ltd.","genre":"Comedy","title":"Sundown: The Vampire in Retreat","releaseDate":611452800000,"language":"en","type":"Movie","_key":"63525"} +{"label":"Morgan Brittany","version":22,"id":"79739","lastModified":"1301902024000","name":"Morgan Brittany","type":"Person","_key":"63526"} +{"label":"Jim Metzler","version":35,"id":"79740","lastModified":"1301998667000","name":"Jim Metzler","type":"Person","_key":"63527"} +{"label":"Deborah Foreman","version":30,"id":"79741","lastModified":"1301901797000","name":"Deborah Foreman","type":"Person","_key":"63528"} +{"label":"Dana Ashbrook","version":27,"id":"6715","lastModified":"1302116424000","name":"Dana Ashbrook","type":"Person","_key":"63529"} +{"label":"John Hancock","version":21,"id":"79742","lastModified":"1301902067000","name":"John Hancock","type":"Person","_key":"63530"} +{"label":"Marion Eaton","version":19,"id":"79743","lastModified":"1301902067000","name":"Marion Eaton","type":"Person","_key":"63531"} +{"label":"Helena Carroll","version":20,"id":"79745","lastModified":"1301901718000","name":"Helena Carroll","type":"Person","_key":"63532"} +{"label":"Alive or Dead","description":"While traveling down a desolate road, Maria comes upon an apparently abandoned school bus. A girl has written \u201cHelp Me\u201d in one of the windows, and Maria quickly discovers the messy secrets that lie in the back of the bus. Maria soon finds herself hidden and trapped with the girl as the killer takes them on the ride of their lives. Their journey leads to a bizarre medieval castle nestled in the des","id":"16160","runtime":0,"imdbId":"tt1224436","version":385,"lastModified":"1302049135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc94a98017a3c57fe020b82\/alive-or-dead-mid.jpg","genre":"Horror","title":"Alive or Dead","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63533"} +{"label":"Baby Boy","description":"Jody (Gibson) is a 20-year-old manchild who still lives with his mother (Johnson), has two children with two different women, no job, and cheats on his current girl, Yvette. Jody's life changes when his mother's boyfriend moves in. Melvin (Rhames), an ex-con who's been down the road Jody is heading, shows no tolerance for his attitude.","id":"16161","runtime":130,"imdbId":"tt0255819","version":224,"lastModified":"1302048910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/162\/4c6040835e73d63461000162\/baby-boy-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Baby Boy","releaseDate":993600000000,"language":"en","type":"Movie","_key":"63534"} +{"label":"Omar Gooding","version":21,"id":"88183","lastModified":"1301902143000","name":"Omar Gooding","type":"Person","_key":"63535"} +{"label":"The Best Man","description":"Diggs plays Harper, a writer who's about to explode into the mainstream. Leaving behind his girlfriend Robin (Lathan), he heads to New York City to serve as best man for his friend Lance's wedding (Chestnut). Once there, he reunites with the rest of his college circle: the girlfriend-whipped Murch (Perrineau), the aimless Quentin","id":"16162","runtime":120,"imdbId":"tt0168501","homepage":"http:\/\/www.universalpictures.com\/bestman\/","version":207,"lastModified":"1301905398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b94\/4bc94a99017a3c57fe020b94\/the-best-man-mid.jpg","genre":"Comedy","title":"The Best Man","releaseDate":940550400000,"language":"en","type":"Movie","_key":"63536"} +{"label":"Killshot","description":"Beautiful Carmen Colson and her ironworker husband Wayne are placed in the Federal Witness Protection program after witnessing an \"incident\". Thinking they are at last safe, they are targeted by an experienced hit man and a psychopathic young upstart killer. ","id":"16164","runtime":84,"imdbId":"tt0443559","version":246,"lastModified":"1302026466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbf\/4bc94a9e017a3c57fe020bbf\/killshot-mid.jpg","studio":"FilmColony","genre":"Action","title":"Killshot","releaseDate":1226534400000,"language":"en","type":"Movie","_key":"63537"} +{"label":"Brandon McGibbon","version":29,"id":"81801","lastModified":"1301901176000","name":"Brandon McGibbon","type":"Person","_key":"63538"} +{"label":"Peter Kelly Gaudreault","version":19,"id":"82134","lastModified":"1301902240000","name":"Peter Kelly Gaudreault","type":"Person","_key":"63539"} +{"label":"Michelle Arvizu","version":19,"id":"82135","lastModified":"1301901863000","name":"Michelle Arvizu","type":"Person","_key":"63540"} +{"label":"Richard Zeppieri","version":19,"id":"82136","lastModified":"1301902240000","name":"Richard Zeppieri","type":"Person","_key":"63541"} +{"label":"Alexis Butler","version":19,"id":"82137","lastModified":"1301901863000","name":"Alexis Butler","type":"Person","_key":"63542"} +{"label":"Robert Gow","version":19,"id":"82138","lastModified":"1301902240000","name":"Robert Gow","type":"Person","_key":"63543"} +{"label":"Catherine Hayos","version":19,"id":"82139","lastModified":"1301901718000","name":"Catherine Hayos","type":"Person","_key":"63544"} +{"label":"Craig Blair","version":21,"id":"82140","lastModified":"1301901863000","name":"Craig Blair","type":"Person","_key":"63545"} +{"label":"Lynne Deragon","version":20,"id":"82141","lastModified":"1301901937000","name":"Lynne Deragon","type":"Person","_key":"63546"} +{"label":"Sauna","description":"It is 1595. Brutal wars have just ended in an uneasy peace between Protestant Sweden and Orthodox Russia. We focus on the spiritual defeats of two conquered Finnish brothers, one a hardened near-psychopathic war hero, the other a gentle scientist in an age with no use for such men. They find themselves in the swampy interior, demarcating the new border with a unit of sadistic Russians.","id":"16166","runtime":85,"imdbId":"tt1124394","trailer":"http:\/\/www.youtube.com\/watch?v=Zl4NinKU6WA","version":242,"lastModified":"1302074832000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc8\/4bc94a9f017a3c57fe020bc8\/sauna-mid.jpg","studio":"Bronson Club","genre":"History","title":"Sauna","releaseDate":1217894400000,"language":"en","type":"Movie","_key":"63547"} +{"label":"Ville Virtanen","version":22,"id":"79757","lastModified":"1302074831000","name":"Ville Virtanen","type":"Person","_key":"63548"} +{"label":"Viktor Klimenko","version":20,"id":"79758","lastModified":"1302074831000","name":"Viktor Klimenko","type":"Person","_key":"63549"} +{"label":"Rain Tolk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/873\/4cb358ec5e73d65b86000873\/rain-tolk-profile.jpg","version":28,"birthday":"234658800000","id":"79759","lastModified":"1302074831000","name":"Rain Tolk","type":"Person","_key":"63550"} +{"label":"Kari Ketonen","version":21,"id":"79760","lastModified":"1302074831000","name":"Kari Ketonen","type":"Person","_key":"63551"} +{"label":"Sonja Pet\u00e4j\u00e4j\u00e4rvi","version":20,"id":"79761","lastModified":"1302074831000","name":"Sonja Pet\u00e4j\u00e4j\u00e4rvi","type":"Person","_key":"63552"} +{"label":"Vilhelmiina Virkkunen","version":20,"id":"79762","lastModified":"1302074831000","name":"Vilhelmiina Virkkunen","type":"Person","_key":"63553"} +{"label":"Taisto Reimaluoto","version":20,"id":"79763","lastModified":"1302074831000","name":"Taisto Reimaluoto","type":"Person","_key":"63554"} +{"label":"Ismo Kallio","version":21,"id":"79764","lastModified":"1302074831000","name":"Ismo Kallio","type":"Person","_key":"63555"} +{"label":"Dick Idman","version":21,"id":"79765","lastModified":"1302074831000","name":"Dick Idman","type":"Person","_key":"63556"} +{"label":"Ivo Kubecka","version":20,"id":"79766","lastModified":"1302074831000","name":"Ivo Kubecka","type":"Person","_key":"63557"} +{"label":"Elena Leeve","version":24,"id":"79767","lastModified":"1302074831000","name":"Elena Leeve","type":"Person","_key":"63558"} +{"label":"Elena Spirina","version":20,"id":"79768","lastModified":"1302074831000","name":"Elena Spirina","type":"Person","_key":"63559"} +{"label":"Peter Holmlund","version":20,"id":"79769","lastModified":"1302074831000","name":"Peter Holmlund","type":"Person","_key":"63560"} +{"label":"Asko Vainio","version":20,"id":"79770","lastModified":"1302074831000","name":"Asko Vainio","type":"Person","_key":"63561"} +{"label":"Timo Halonen","version":20,"id":"79771","lastModified":"1302074831000","name":"Timo Halonen","type":"Person","_key":"63562"} +{"label":"Eero Jaakkola","version":20,"id":"79772","lastModified":"1302074831000","name":"Eero Jaakkola","type":"Person","_key":"63563"} +{"label":"Aleksei Kettunen","version":20,"id":"79773","lastModified":"1302074831000","name":"Aleksei Kettunen","type":"Person","_key":"63564"} +{"label":"Juha Linna","version":20,"id":"79774","lastModified":"1302074831000","name":"Juha Linna","type":"Person","_key":"63565"} +{"label":"Stefano Pallanza","version":20,"id":"79775","lastModified":"1302074831000","name":"Stefano Pallanza","type":"Person","_key":"63566"} +{"label":"Antti Eskola","version":20,"id":"79776","lastModified":"1302074831000","name":"Antti Eskola","type":"Person","_key":"63567"} +{"label":"Markku Salo","version":20,"id":"79777","lastModified":"1302074831000","name":"Markku Salo","type":"Person","_key":"63568"} +{"label":"Heikki Tuomaala","version":20,"id":"79778","lastModified":"1302074832000","name":"Heikki Tuomaala","type":"Person","_key":"63569"} +{"label":"Ari Wirta","version":20,"id":"79779","lastModified":"1302074832000","name":"Ari Wirta","type":"Person","_key":"63570"} +{"label":"Tarmo Lepp\u00e4nen","version":20,"id":"79780","lastModified":"1302074832000","name":"Tarmo Lepp\u00e4nen","type":"Person","_key":"63571"} +{"label":"Kari Nurmi","version":20,"id":"79781","lastModified":"1302074832000","name":"Kari Nurmi","type":"Person","_key":"63572"} +{"label":"Olavi Kari","version":20,"id":"79782","lastModified":"1302074832000","name":"Olavi Kari","type":"Person","_key":"63573"} +{"label":"From Within","description":"The residents of a small American town begin to die one-by-one apparently by suicide...","id":"16167","runtime":89,"imdbId":"tt1063056","homepage":"http:\/\/www.fromwithinmovie.com","version":297,"lastModified":"1301946933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd1\/4bc94aa1017a3c57fe020bd1\/from-within-mid.jpg","studio":"Burgundy Films","genre":"Horror","title":"From Within","releaseDate":1209081600000,"language":"en","type":"Movie","_key":"63574"} +{"label":"Phedon Papamichael","version":62,"id":"432","lastModified":"1299947326000","name":"Phedon Papamichael","type":"Person","_key":"63575"} +{"label":"Elizabeth Rice","version":19,"id":"79791","lastModified":"1301901863000","name":"Elizabeth Rice","type":"Person","_key":"63576"} +{"label":"Thomas Dekker","version":48,"id":"34199","lastModified":"1301901255000","name":"Thomas Dekker","type":"Person","_key":"63577"} +{"label":"Laura Allen","version":28,"id":"79792","lastModified":"1301901594000","name":"Laura Allen","type":"Person","_key":"63578"} +{"label":"Margo Harshman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/757\/4cfa83a25e73d6299e002757\/margo-harshman-profile.jpg","version":30,"birthday":"510274800000","id":"79793","birthplace":"San Diego, CA","lastModified":"1301901375000","name":"Margo Harshman","type":"Person","_key":"63579"} +{"label":"Amanda Babin","version":19,"id":"79794","lastModified":"1301901863000","name":"Amanda Babin","type":"Person","_key":"63580"} +{"label":"Mark A. Cummins","version":19,"id":"79796","lastModified":"1301901863000","name":"Mark A. Cummins","type":"Person","_key":"63581"} +{"label":"David Ariniello","version":19,"id":"79797","lastModified":"1301901863000","name":"David Ariniello","type":"Person","_key":"63582"} +{"label":"Tim Colmus","version":19,"id":"79798","lastModified":"1301902066000","name":"Tim Colmus","type":"Person","_key":"63583"} +{"label":"Tyler Gatton","version":19,"id":"79799","lastModified":"1301901718000","name":"Tyler Gatton","type":"Person","_key":"63584"} +{"label":"Caitlin Gold","version":19,"id":"79800","lastModified":"1301901718000","name":"Caitlin Gold","type":"Person","_key":"63585"} +{"label":"Jamie Linck O'Brien","version":19,"id":"79801","lastModified":"1301901608000","name":"Jamie Linck O'Brien","type":"Person","_key":"63586"} +{"label":"Jonathan Orcutt","version":19,"id":"79802","lastModified":"1301901718000","name":"Jonathan Orcutt","type":"Person","_key":"63587"} +{"label":"Candace Scholz","version":19,"id":"79803","lastModified":"1301901863000","name":"Candace Scholz","type":"Person","_key":"63588"} +{"label":"Jim Barbour","version":19,"id":"79804","lastModified":"1301901608000","name":"Jim Barbour","type":"Person","_key":"63589"} +{"label":"Larry Carter","version":19,"id":"79805","lastModified":"1301901863000","name":"Larry Carter","type":"Person","_key":"63590"} +{"label":"John Doty","version":19,"id":"79806","lastModified":"1301901863000","name":"John Doty","type":"Person","_key":"63591"} +{"label":"Paul Fahrenkopf","version":19,"id":"79807","lastModified":"1301901718000","name":"Paul Fahrenkopf","type":"Person","_key":"63592"} +{"label":"Ponch Fenwick","version":19,"id":"79808","lastModified":"1301901863000","name":"Ponch Fenwick","type":"Person","_key":"63593"} +{"label":"Pete Karas","version":19,"id":"79809","lastModified":"1301901718000","name":"Pete Karas","type":"Person","_key":"63594"} +{"label":"Tom Townsend","version":19,"id":"79810","lastModified":"1301902066000","name":"Tom Townsend","type":"Person","_key":"63595"} +{"label":"M\u00fdrin","description":"A murder opens up a bleak trail of long buried secrets and small town corruption for a worn out police detective and his squad.","id":"16170","runtime":93,"imdbId":"tt0805576","version":83,"lastModified":"1301903707000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bde\/4bc94aa5017a3c57fe020bde\/myrin-mid.jpg","studio":"Degeto Film","genre":"Crime","title":"M\u00fdrin","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"63596"} +{"label":"\u00c1g\u00fasta Eva Erlendsd\u00f3ttir","version":25,"id":"79816","lastModified":"1301902066000","name":"\u00c1g\u00fasta Eva Erlendsd\u00f3ttir","type":"Person","_key":"63597"} +{"label":"\u00d3laf\u00eda Hr\u00f6nn J\u00f3nsd\u00f3ttir","version":22,"id":"79817","lastModified":"1301902066000","name":"\u00d3laf\u00eda Hr\u00f6nn J\u00f3nsd\u00f3ttir","type":"Person","_key":"63598"} +{"label":"Atli Rafn Sigur\u00f0sson","version":20,"id":"79818","lastModified":"1301902239000","name":"Atli Rafn Sigur\u00f0sson","type":"Person","_key":"63599"} +{"label":"Kristbj\u00f6rg Kjeld","version":23,"id":"79819","lastModified":"1301901516000","name":"Kristbj\u00f6rg Kjeld","type":"Person","_key":"63600"} +{"label":"\u00deorsteinn Gunnarsson","version":20,"id":"79820","lastModified":"1301902239000","name":"\u00deorsteinn Gunnarsson","type":"Person","_key":"63601"} +{"label":"The\u00f3d\u00f3r J\u00fal\u00edusson","version":20,"id":"79821","lastModified":"1301902239000","name":"The\u00f3d\u00f3r J\u00fal\u00edusson","type":"Person","_key":"63602"} +{"label":"\u00de\u00f3runn Magnea Magn\u00fasd\u00f3ttir","version":20,"id":"79822","lastModified":"1301902461000","name":"\u00de\u00f3runn Magnea Magn\u00fasd\u00f3ttir","type":"Person","_key":"63603"} +{"label":"Gu\u00f0munda El\u00edasd\u00f3ttir","version":20,"id":"79823","lastModified":"1301902461000","name":"Gu\u00f0munda El\u00edasd\u00f3ttir","type":"Person","_key":"63604"} +{"label":"Walter Gr\u00edmsson","version":20,"id":"79824","lastModified":"1301902461000","name":"Walter Gr\u00edmsson","type":"Person","_key":"63605"} +{"label":"Magn\u00fas Ragnarsson","version":20,"id":"79825","lastModified":"1301902239000","name":"Magn\u00fas Ragnarsson","type":"Person","_key":"63606"} +{"label":"Rafnhildur R\u00f3sa Atlad\u00f3tir","version":20,"id":"79826","lastModified":"1301902461000","name":"Rafnhildur R\u00f3sa Atlad\u00f3tir","type":"Person","_key":"63607"} +{"label":"J\u00f3n Sigurbj\u00f6rnsson","version":21,"id":"79827","lastModified":"1301901642000","name":"J\u00f3n Sigurbj\u00f6rnsson","type":"Person","_key":"63608"} +{"label":"Valdimar \u00d6rn Flygenring","version":20,"id":"79828","lastModified":"1301902461000","name":"Valdimar \u00d6rn Flygenring","type":"Person","_key":"63609"} +{"label":"\u00de\u00f3r Tulinius","version":20,"id":"79829","lastModified":"1301902239000","name":"\u00de\u00f3r Tulinius","type":"Person","_key":"63610"} +{"label":"\u00c1sa Hl\u00edn Svavarsd\u00f3ttir","version":20,"id":"79830","lastModified":"1301902461000","name":"\u00c1sa Hl\u00edn Svavarsd\u00f3ttir","type":"Person","_key":"63611"} +{"label":"Eyvindur Erlendsson","version":20,"id":"79831","lastModified":"1301902461000","name":"Eyvindur Erlendsson","type":"Person","_key":"63612"} +{"label":"Elma L\u00edsa Gunnarsd\u00f3ttir","version":20,"id":"79832","lastModified":"1301902461000","name":"Elma L\u00edsa Gunnarsd\u00f3ttir","type":"Person","_key":"63613"} +{"label":"Kristinn \u00c1g\u00fast Fri\u00f0finnsson","version":20,"id":"79833","lastModified":"1301902239000","name":"Kristinn \u00c1g\u00fast Fri\u00f0finnsson","type":"Person","_key":"63614"} +{"label":"K\u00e1ri Stef\u00e1nsson","version":20,"id":"79834","lastModified":"1301902239000","name":"K\u00e1ri Stef\u00e1nsson","type":"Person","_key":"63615"} +{"label":"\u00de\u00f3rhallur Gunnarsson","version":20,"id":"79835","lastModified":"1301902239000","name":"\u00de\u00f3rhallur Gunnarsson","type":"Person","_key":"63616"} +{"label":"Sigur\u00f0ur M\u00e1r \u00d3lafsson","version":20,"id":"79836","lastModified":"1301902461000","name":"Sigur\u00f0ur M\u00e1r \u00d3lafsson","type":"Person","_key":"63617"} +{"label":"Hjalti Gunnarsson","version":20,"id":"79837","lastModified":"1301902239000","name":"Hjalti Gunnarsson","type":"Person","_key":"63618"} +{"label":"J\u00f3n Vi\u00f0ar Arn\u00fe\u00f3rsson","version":20,"id":"79838","lastModified":"1301902461000","name":"J\u00f3n Vi\u00f0ar Arn\u00fe\u00f3rsson","type":"Person","_key":"63619"} +{"label":"Gu\u00f0r\u00fan Birna G\u00edslad\u00f3ttir","version":25,"id":"79839","lastModified":"1301902139000","name":"Gu\u00f0r\u00fan Birna G\u00edslad\u00f3ttir","type":"Person","_key":"63620"} +{"label":"Bjarni Geir Patric Alfre\u00f0sson","version":20,"id":"79840","lastModified":"1301902461000","name":"Bjarni Geir Patric Alfre\u00f0sson","type":"Person","_key":"63621"} +{"label":"Katr\u00edn \u00d3skarsson","version":20,"id":"79841","lastModified":"1301902461000","name":"Katr\u00edn \u00d3skarsson","type":"Person","_key":"63622"} +{"label":"R\u00f3sa Olafsd\u00f3ttir","version":20,"id":"79842","lastModified":"1301902239000","name":"R\u00f3sa Olafsd\u00f3ttir","type":"Person","_key":"63623"} +{"label":"Osk Gudmund\u00f3ottir","version":20,"id":"79843","lastModified":"1301902461000","name":"Osk Gudmund\u00f3ottir","type":"Person","_key":"63624"} +{"label":"Thorarinn Oskar Thorarinsson","version":20,"id":"79844","lastModified":"1301902239000","name":"Thorarinn Oskar Thorarinsson","type":"Person","_key":"63625"} +{"label":"\u00dalfur \u00cdsfeld R\u00f6gnvaldsson","version":20,"id":"79845","lastModified":"1301902239000","name":"\u00dalfur \u00cdsfeld R\u00f6gnvaldsson","type":"Person","_key":"63626"} +{"label":"S\u00f3lon \u00cdsfeld R\u00f6gnvaldsson","version":20,"id":"79846","lastModified":"1301902066000","name":"S\u00f3lon \u00cdsfeld R\u00f6gnvaldsson","type":"Person","_key":"63627"} +{"label":"Sverrir Einarsson","version":20,"id":"79847","lastModified":"1301902066000","name":"Sverrir Einarsson","type":"Person","_key":"63628"} +{"label":"Brynd\u00eds Valbjarnard\u00f3ttir","version":20,"id":"79848","lastModified":"1301902066000","name":"Brynd\u00eds Valbjarnard\u00f3ttir","type":"Person","_key":"63629"} +{"label":"Valger\u00f0ur Backman","version":20,"id":"79849","lastModified":"1301902239000","name":"Valger\u00f0ur Backman","type":"Person","_key":"63630"} +{"label":"Gu\u00f0laug Hermannsd\u00f3ttir","version":20,"id":"79850","lastModified":"1301902461000","name":"Gu\u00f0laug Hermannsd\u00f3ttir","type":"Person","_key":"63631"} +{"label":"Lalli Johns","version":20,"id":"79851","lastModified":"1301902239000","name":"Lalli Johns","type":"Person","_key":"63632"} +{"label":"The Nine Lives of Tomas Katz","description":"The last day of creation. A stranger arrives in London. No one knows who he is or where he has come from. By the time he leaves, the entire universe will have been erased.","id":"16171","runtime":87,"imdbId":"tt0235618","version":111,"lastModified":"1301906055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be7\/4bc94aa5017a3c57fe020be7\/the-nine-lives-of-tomas-katz-mid.jpg","studio":"G2 Films","genre":"Comedy","title":"The Nine Lives of Tomas Katz","releaseDate":951868800000,"language":"en","type":"Movie","_key":"63633"} +{"label":"Tony Maudsley","version":22,"id":"79856","lastModified":"1301901337000","name":"Tony Maudsley","type":"Person","_key":"63634"} +{"label":"William Keen","version":19,"id":"79857","lastModified":"1301901474000","name":"William Keen","type":"Person","_key":"63635"} +{"label":"Andrew Melville","version":19,"id":"79858","lastModified":"1301902461000","name":"Andrew Melville","type":"Person","_key":"63636"} +{"label":"Jamille Jinnah","version":17,"id":"79859","lastModified":"1301902239000","name":"Jamille Jinnah","type":"Person","_key":"63637"} +{"label":"Kris Krishnamma","version":19,"id":"79860","lastModified":"1301902461000","name":"Kris Krishnamma","type":"Person","_key":"63638"} +{"label":"Sophie Bevan","version":19,"id":"79861","lastModified":"1301902461000","name":"Sophie Bevan","type":"Person","_key":"63639"} +{"label":"Kiki Kendrick","version":19,"id":"79863","lastModified":"1301902461000","name":"Kiki Kendrick","type":"Person","_key":"63640"} +{"label":"Trevor Thomas","version":24,"id":"79864","lastModified":"1301983806000","name":"Trevor Thomas","type":"Person","_key":"63641"} +{"label":"Tilly Blackwood","version":19,"id":"79865","lastModified":"1301902461000","name":"Tilly Blackwood","type":"Person","_key":"63642"} +{"label":"David de Keyser","version":22,"id":"79866","lastModified":"1301902239000","name":"David de Keyser","type":"Person","_key":"63643"} +{"label":"John Ramm","version":19,"id":"79867","lastModified":"1301902461000","name":"John Ramm","type":"Person","_key":"63644"} +{"label":"Boyd Clack","version":20,"id":"79868","lastModified":"1301902066000","name":"Boyd Clack","type":"Person","_key":"63645"} +{"label":"Tara Savage","version":19,"id":"79869","lastModified":"1301902461000","name":"Tara Savage","type":"Person","_key":"63646"} +{"label":"Callum Savage","version":19,"id":"79870","lastModified":"1301902461000","name":"Callum Savage","type":"Person","_key":"63647"} +{"label":"Oliver Parkes","version":19,"id":"79871","lastModified":"1301902461000","name":"Oliver Parkes","type":"Person","_key":"63648"} +{"label":"Andrew Kotting","version":19,"id":"79872","lastModified":"1301902461000","name":"Andrew Kotting","type":"Person","_key":"63649"} +{"label":"Graham Lawson","version":19,"id":"79873","lastModified":"1301902461000","name":"Graham Lawson","type":"Person","_key":"63650"} +{"label":"Joseph Greig","version":19,"id":"79874","lastModified":"1301902461000","name":"Joseph Greig","type":"Person","_key":"63651"} +{"label":"Tim Barlow","version":20,"id":"79875","lastModified":"1301902461000","name":"Tim Barlow","type":"Person","_key":"63652"} +{"label":"Joan Oliver","version":19,"id":"79876","lastModified":"1301902461000","name":"Joan Oliver","type":"Person","_key":"63653"} +{"label":"Colin Wetherall","version":19,"id":"79877","lastModified":"1301902461000","name":"Colin Wetherall","type":"Person","_key":"63654"} +{"label":"Sean Albuquerque","version":19,"id":"79878","lastModified":"1301902461000","name":"Sean Albuquerque","type":"Person","_key":"63655"} +{"label":"Jason Thorpe","version":19,"id":"79879","lastModified":"1301902461000","name":"Jason Thorpe","type":"Person","_key":"63656"} +{"label":"Stephen Pye","version":19,"id":"79880","lastModified":"1301902461000","name":"Stephen Pye","type":"Person","_key":"63657"} +{"label":"Yvette Richardson","version":19,"id":"79881","lastModified":"1301902461000","name":"Yvette Richardson","type":"Person","_key":"63658"} +{"label":"Francesca Dowd","version":19,"id":"79882","lastModified":"1301902461000","name":"Francesca Dowd","type":"Person","_key":"63659"} +{"label":"Sadie Walters","version":19,"id":"79883","lastModified":"1301902461000","name":"Sadie Walters","type":"Person","_key":"63660"} +{"label":"Thomas Q. Napper","version":19,"id":"79884","lastModified":"1301902461000","name":"Thomas Q. Napper","type":"Person","_key":"63661"} +{"label":"David Farr","version":19,"id":"79886","lastModified":"1301902461000","name":"David Farr","type":"Person","_key":"63662"} +{"label":"Kim Noble","version":19,"id":"79887","lastModified":"1301902461000","name":"Kim Noble","type":"Person","_key":"63663"} +{"label":"Tim Potter","version":20,"id":"79888","lastModified":"1301902461000","name":"Tim Potter","type":"Person","_key":"63664"} +{"label":"Andy Harrison","version":19,"id":"79889","lastModified":"1301902461000","name":"Andy Harrison","type":"Person","_key":"63665"} +{"label":"India Martin","version":19,"id":"79890","lastModified":"1301902461000","name":"India Martin","type":"Person","_key":"63666"} +{"label":"Josh De La Mare","version":19,"id":"79891","lastModified":"1301902461000","name":"Josh De La Mare","type":"Person","_key":"63667"} +{"label":"Luke Morris","version":19,"id":"79892","lastModified":"1301902461000","name":"Luke Morris","type":"Person","_key":"63668"} +{"label":"Catherine Gosling","version":19,"id":"79893","lastModified":"1301902239000","name":"Catherine Gosling","type":"Person","_key":"63669"} +{"label":"Andy Lane","version":19,"id":"79894","lastModified":"1301902461000","name":"Andy Lane","type":"Person","_key":"63670"} +{"label":"Vito Rocco","version":20,"id":"79895","lastModified":"1301902239000","name":"Vito Rocco","type":"Person","_key":"63671"} +{"label":"Simply Irresistible","description":"A department store executive (Flanery) tries to resist falling in love with a young woman (Gellar), who he believes has possessed magical powers after inheriting a restaurant","id":"16172","runtime":94,"imdbId":"tt0145893","version":166,"lastModified":"1301946138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf8\/4bc94aa6017a3c57fe020bf8\/simply-irresistible-mid.jpg","studio":"Regency Enterprises","genre":"Romance","title":"Simply Irresistible","releaseDate":915148800000,"language":"en","tagline":"A Bewitching Romance.","type":"Movie","_key":"63672"} +{"label":"Mark Tarlov","version":29,"id":"18679","lastModified":"1301901547000","name":"Mark Tarlov","type":"Person","_key":"63673"} +{"label":"Dark Storm","description":"On a secret military base a group of scientists have made a discovery unequaled since the invention of the A-bomb; code-named Eruptor, it's a device that supercharges Dark Matter and uses it to change the molecular structure of its target, thereby eradicating it. But when the Eruptor malfunctions and a leading scientist on the project is blasted with Dark Matter, he receives incredible abilities","id":"16173","runtime":0,"imdbId":"tt0758740","version":139,"lastModified":"1301945784000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5b\/4d205c627b9aa1737b001e5b\/dark-storm-mid.jpg","genre":"Action","title":"Dark Storm","releaseDate":1150329600000,"language":"en","type":"Movie","_key":"63674"} +{"label":"The Snow Queen","description":"The Snow Queen is a powerful story of friendship and the triumph of love over wickedness. The story follows a young woman who is forced to battle the wicked snow queen in order to save the soul of the man she loves.","id":"16174","runtime":190,"imdbId":"tt0210294","version":130,"lastModified":"1301945427000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f3\/4d0e2e1b5e73d637130014f3\/the-snow-queen-mid.jpg","genre":"Adventure","title":"The Snow Queen","releaseDate":1010102400000,"language":"en","type":"Movie","_key":"63675"} +{"label":"Chelsea Hobbs","version":23,"id":"79896","lastModified":"1301902342000","name":"Chelsea Hobbs","type":"Person","_key":"63676"} +{"label":"The Diary of Ellen Rimbauer","description":"Set at the turn of the century, this is the tale of Ellen Rimbauer who just received this mysterious mansion as a wedding gift from her new husband...","id":"16175","runtime":88,"imdbId":"tt0350811","version":139,"lastModified":"1301905265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c01\/4bc94aa7017a3c57fe020c01\/the-diary-of-ellen-rimbauer-mid.jpg","studio":"Greengrass Productions","genre":"Drama","title":"The Diary of Ellen Rimbauer","releaseDate":1052784000000,"language":"en","type":"Movie","_key":"63677"} +{"label":"Tsidii Leloka","version":19,"id":"79901","lastModified":"1301902066000","name":"Tsidii Leloka","type":"Person","_key":"63678"} +{"label":"Hans Altwies","version":19,"id":"79902","lastModified":"1301902066000","name":"Hans Altwies","type":"Person","_key":"63679"} +{"label":"Jacob Pearce Guzman","version":19,"id":"79903","lastModified":"1301902066000","name":"Jacob Pearce Guzman","type":"Person","_key":"63680"} +{"label":"Karen Heaven","version":19,"id":"79904","lastModified":"1301902066000","name":"Karen Heaven","type":"Person","_key":"63681"} +{"label":"Betty Moyer","version":19,"id":"79905","lastModified":"1301902066000","name":"Betty Moyer","type":"Person","_key":"63682"} +{"label":"Kathryn Witt","version":21,"id":"79906","lastModified":"1301902239000","name":"Kathryn Witt","type":"Person","_key":"63683"} +{"label":"Tony Doupe","version":21,"id":"79907","lastModified":"1301901718000","name":"Tony Doupe","type":"Person","_key":"63684"} +{"label":"Amy Walton","version":19,"id":"79909","lastModified":"1301902066000","name":"Amy Walton","type":"Person","_key":"63685"} +{"label":"Deb Craig","version":19,"id":"79910","lastModified":"1301902066000","name":"Deb Craig","type":"Person","_key":"63686"} +{"label":"Jennifer Mercein","version":19,"id":"79911","lastModified":"1301902066000","name":"Jennifer Mercein","type":"Person","_key":"63687"} +{"label":"Frank Buxton","version":19,"id":"79912","lastModified":"1301902066000","name":"Frank Buxton","type":"Person","_key":"63688"} +{"label":"Shelly Lipkin","version":19,"id":"79913","lastModified":"1301902066000","name":"Shelly Lipkin","type":"Person","_key":"63689"} +{"label":"Claire Vardiel","version":19,"id":"79914","lastModified":"1301902066000","name":"Claire Vardiel","type":"Person","_key":"63690"} +{"label":"Secunda Smith","version":19,"id":"79915","lastModified":"1301902066000","name":"Secunda Smith","type":"Person","_key":"63691"} +{"label":"Michael Agostini","version":19,"id":"79916","lastModified":"1301902066000","name":"Michael Agostini","type":"Person","_key":"63692"} +{"label":"Ridley Pearson","version":20,"id":"79917","lastModified":"1301902174000","name":"Ridley Pearson","type":"Person","_key":"63693"} +{"label":"Phil Scroggs","version":19,"id":"79918","lastModified":"1301902066000","name":"Phil Scroggs","type":"Person","_key":"63694"} +{"label":"Kyle J.M. Thompson","version":19,"id":"79919","lastModified":"1301902066000","name":"Kyle J.M. Thompson","type":"Person","_key":"63695"} +{"label":"The Slipper and the Rose: The Story of Cinderella","description":"In the tiny kingdom of Euphrania, the King and his court are most anxious to get Prince Edward wed. But Edward wants to marry for love. Meanwhile, young Cinderella finds life drastically altered with her father's death as she's forced to be a servant in her own house. But a cheery fairy godmother helps her with her impossible tasks, and even gets her to take an evening out at the King's bride-fin","id":"16176","runtime":146,"imdbId":"tt0075232","version":116,"lastModified":"1301944820000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c06\/4bc94aaa017a3c57fe020c06\/the-slipper-and-the-rose-the-story-of-cinderella-mid.jpg","studio":"Paradine Co-Productions","genre":"Fantasy","title":"The Slipper and the Rose: The Story of Cinderella","releaseDate":215913600000,"language":"en","type":"Movie","_key":"63696"} +{"label":"Sherrie Hewson","version":19,"id":"79897","lastModified":"1301902461000","name":"Sherrie Hewson","type":"Person","_key":"63697"} +{"label":"Polly Williams","version":16,"id":"93324","lastModified":"1301902888000","name":"Polly Williams","type":"Person","_key":"63698"} +{"label":"Christopher Gable","version":16,"id":"93325","lastModified":"1301902888000","name":"Christopher Gable","type":"Person","_key":"63699"} +{"label":"Julian Orchard","version":19,"id":"92697","lastModified":"1301903033000","name":"Julian Orchard","type":"Person","_key":"63700"} +{"label":"Lally Bowers","version":16,"id":"93326","lastModified":"1301902888000","name":"Lally Bowers","type":"Person","_key":"63701"} +{"label":"Gemma Craven","version":16,"id":"93327","lastModified":"1301902888000","name":"Gemma Craven","type":"Person","_key":"63702"} +{"label":"Killer Babes","description":"No overview found.","id":"16177","runtime":100,"imdbId":"tt0948532","trailer":"http:\/\/www.youtube.com\/watch?v=http:\/\/www.youtube.com\/watch?v=24wV5J63ecg","homepage":"http:\/\/www.moordwijvendefilm.nl\/","version":49,"lastModified":"1301904277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1f\/4bc94aad017a3c57fe020c1f\/moordwijven-mid.jpg","title":"Killer Babes","releaseDate":1198108800000,"language":"en","type":"Movie","_key":"63703"} +{"label":"The Riddle","description":"A journalist investigates a series of murders that follows the discovery of an unpublished novel by Charles Dickens in the cellar of an old Thames-side-pub.","id":"16178","runtime":116,"imdbId":"tt0790741","version":176,"lastModified":"1301904613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c28\/4bc94aae017a3c57fe020c28\/the-riddle-mid.jpg","studio":"Grosvenor Park Productions","genre":"Drama","title":"The Riddle","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"63704"} +{"label":"Brendan Foley","version":21,"id":"81218","lastModified":"1301902143000","name":"Brendan Foley","type":"Person","_key":"63705"} +{"label":"Breathing Room","description":"Thrown naked into a desolate room with thirteen strangers, Tonya discovers that she is the final contestant in a deadly game. Restrained by lethal electronic collars, the players must utilize hints and tools from a box marked \"pieces\" to find both an exit and the reason for their abduction. One by one the players are eliminated as their \"curfew\" begins and the lights go out. With each dead body comes another clue, which they use to discover that one of them is the killer. The question is ... whi","id":"16179","runtime":89,"imdbId":"tt1220706","version":122,"lastModified":"1301904379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c31\/4bc94aae017a3c57fe020c31\/breathing-room-mid.jpg","studio":"New Artists Alliance","genre":"Horror","title":"Breathing Room","releaseDate":1222732800000,"language":"en","type":"Movie","_key":"63706"} +{"label":"Ailsa Marshall","version":24,"id":"121719","lastModified":"1301902325000","name":"Ailsa Marshall","type":"Person","_key":"63707"} +{"label":"Michael McLafferty","version":16,"id":"146837","lastModified":"1301902386000","name":"Michael McLafferty","type":"Person","_key":"63708"} +{"label":"David Higlen","version":16,"id":"146838","lastModified":"1301902208000","name":"David Higlen","type":"Person","_key":"63709"} +{"label":"John Suits","version":18,"id":"146836","lastModified":"1301902514000","name":"John Suits","type":"Person","_key":"63710"} +{"label":"Gabriel Cowan","version":24,"id":"107765","lastModified":"1301902433000","name":"Gabriel Cowan","type":"Person","_key":"63711"} +{"label":"The Legend of Hell House","description":"A team consisting of a physicist, his wife, a young female psychic and the only survivor of the previous visit are sent to the notorious Hell House to prove\/disprove survival after death. Previous visitors have either been killed or gone mad, and it is up to the team to survive a full week in isolation, and solve the mystery of the Hell House.","id":"16180","runtime":95,"imdbId":"tt0070294","version":178,"lastModified":"1302045693000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3a\/4bc94aaf017a3c57fe020c3a\/the-legend-of-hell-house-mid.jpg","studio":"Academy Pictures","genre":"Drama","title":"The Legend of Hell House","releaseDate":108950400000,"language":"en","type":"Movie","_key":"63712"} +{"label":"The Woman in Black","description":"When a friendless old widow dies in the seaside town of Crythin, a young solicitor is sent by his firm to settle the estate. The lawyer finds the townspeople reluctant to talk about or go near the woman's dreary home and no one will explain or even acknowledge the menacing woman in black he keeps seeing.","id":"16182","runtime":100,"imdbId":"tt0098672","version":83,"lastModified":"1301903871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4c\/4bc94ab0017a3c57fe020c4c\/the-woman-in-black-mid.jpg","studio":"Central Films Limited","genre":"Horror","title":"The Woman in Black","releaseDate":630460800000,"language":"en","type":"Movie","_key":"63713"} +{"label":"Herbert Wise","version":22,"id":"79925","lastModified":"1301902391000","name":"Herbert Wise","type":"Person","_key":"63714"} +{"label":"David Daker","version":19,"id":"79928","lastModified":"1301902503000","name":"David Daker","type":"Person","_key":"63715"} +{"label":"Pauline Moran","version":27,"id":"79929","lastModified":"1301902209000","name":"Pauline Moran","type":"Person","_key":"63716"} +{"label":"Clare Holman","version":20,"id":"47742","lastModified":"1301901948000","name":"Clare Holman","type":"Person","_key":"63717"} +{"label":"William Simons","version":20,"id":"79930","lastModified":"1301902534000","name":"William Simons","type":"Person","_key":"63718"} +{"label":"Caroline John","version":20,"id":"79931","lastModified":"1301902533000","name":"Caroline John","type":"Person","_key":"63719"} +{"label":"Joseph Upton","version":20,"id":"79932","lastModified":"1301901994000","name":"Joseph Upton","type":"Person","_key":"63720"} +{"label":"Robert Hamilton","version":20,"id":"79933","lastModified":"1301902535000","name":"Robert Hamilton","type":"Person","_key":"63721"} +{"label":"Trevor Cooper","version":22,"id":"79934","lastModified":"1301902143000","name":"Trevor Cooper","type":"Person","_key":"63722"} +{"label":"Alison King","version":20,"id":"79935","lastModified":"1301902524000","name":"Alison King","type":"Person","_key":"63723"} +{"label":"Timothy Block","version":19,"id":"79936","lastModified":"1301902503000","name":"Timothy Block","type":"Person","_key":"63724"} +{"label":"Mary Lawlor","version":19,"id":"79937","lastModified":"1301902325000","name":"Mary Lawlor","type":"Person","_key":"63725"} +{"label":"Clare Thomson","version":19,"id":"79938","lastModified":"1301902143000","name":"Clare Thomson","type":"Person","_key":"63726"} +{"label":"Tony Red Richards","version":20,"id":"79939","lastModified":"1301902535000","name":"Tony Red Richards","type":"Person","_key":"63727"} +{"label":"Crime Partners","description":"No overview found.","id":"16183","runtime":0,"imdbId":"tt0265133","version":436,"lastModified":"1302045190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c51\/4bc94ab0017a3c57fe020c51\/crime-partners-mid.jpg","genre":"Drama","title":"Crime Partners","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63728"} +{"label":"The Happiness of the Katakuris","description":"The Katakuri family has just opened their guest house in the mountains. Unfortunately their first guest commits suicide and in order to avoid trouble they decide to bury him in the backyard. Things get way more complicated when their second guest, a famous sumo wrestler, dies while having sex with his underage girlfriend and the grave behind the house starts to fill up more and more.","id":"16184","runtime":113,"imdbId":"tt0304262","version":243,"lastModified":"1302022728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6f\/4bc94ab5017a3c57fe020c6f\/16184-mid.jpg","studio":"Katakuri-ke no K\u00f4fuku Seisaku Iinkai","genre":"Comedy","title":"The Happiness of the Katakuris","releaseDate":1004486400000,"language":"en","type":"Movie","_key":"63729"} +{"label":"Kenji Sawada","version":21,"id":"79944","lastModified":"1301902324000","name":"Kenji Sawada","type":"Person","_key":"63730"} +{"label":"Keiko Matsuzaka","version":23,"id":"79945","lastModified":"1301901645000","name":"Keiko Matsuzaka","type":"Person","_key":"63731"} +{"label":"Shinji Takeda","version":23,"id":"27791","lastModified":"1301901777000","name":"Shinji Takeda","type":"Person","_key":"63732"} +{"label":"Kiyoshiro Imawano","version":21,"id":"79946","lastModified":"1301902525000","name":"Kiyoshiro Imawano","type":"Person","_key":"63733"} +{"label":"Tamaki Miyazaki","version":20,"id":"79947","lastModified":"1301902502000","name":"Tamaki Miyazaki","type":"Person","_key":"63734"} +{"label":"Takashi Matsuzaki","version":20,"id":"79948","lastModified":"1301902502000","name":"Takashi Matsuzaki","type":"Person","_key":"63735"} +{"label":"Chihiro Asakawa","version":20,"id":"79949","lastModified":"1301902502000","name":"Chihiro Asakawa","type":"Person","_key":"63736"} +{"label":"Yumeki Kanazawa","version":20,"id":"79950","lastModified":"1301902502000","name":"Yumeki Kanazawa","type":"Person","_key":"63737"} +{"label":"Tokitoshi Shiota","version":20,"id":"79951","lastModified":"1301902502000","name":"Tokitoshi Shiota","type":"Person","_key":"63738"} +{"label":"Diary of a Tired Black Man","description":"Diary of a Tired Black Man is a simple story about the complex relationships between black men and black women.","id":"16185","runtime":108,"imdbId":"tt1291183","version":187,"lastModified":"1301906467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c84\/4bc94ab7017a3c57fe020c84\/diary-of-a-tired-black-man-mid.jpg","studio":"Magnolia Pictures","genre":"Comedy","title":"Diary of a Tired Black Man","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"63739"} +{"label":"Tim Alexander","version":17,"id":"93610","lastModified":"1301902503000","name":"Tim Alexander","type":"Person","_key":"63740"} +{"label":"Jimmy Jean-Louis","version":18,"id":"93611","lastModified":"1301902415000","name":"Jimmy Jean-Louis","type":"Person","_key":"63741"} +{"label":"Paula Lema","version":16,"id":"93612","lastModified":"1301902503000","name":"Paula Lema","type":"Person","_key":"63742"} +{"label":"Diary of a Mad Black Woman","description":"Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.","id":"16186","runtime":116,"imdbId":"tt0422093","version":191,"lastModified":"1302022067000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c91\/4bc94ab8017a3c57fe020c91\/diary-of-a-mad-black-woman-mid.jpg","studio":"The Tyler Perry Company Inc.","genre":"Comedy","title":"Diary of a Mad Black Woman","releaseDate":1109289600000,"language":"en","type":"Movie","_key":"63743"} +{"label":"Shemar Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3fc\/4d856a607b9aa12ee10023fc\/shemar-moore-profile.jpg","version":24,"birthday":"9414000000","id":"50266","birthplace":"Oakland, California","lastModified":"1301902323000","name":"Shemar Moore","type":"Person","_key":"63744"} +{"label":"Buzz Lightyear of Star Command: The Adventure Begins","description":"To infinity and beyond! Buzz Lightyear, everyone's favorite Space Ranger from the Academy Award-winning Toy Story movies, is here with an exciting interstellar space adventure all his own. Joined by Star Command team members Mira Nova, the psychic princess, bumbling newbie Booster and XR, the experimental robot, Buzz defends the planet of the Little Green Men against the devious plots of the evil Emperor Zurg.","id":"16187","runtime":67,"imdbId":"tt0181196","version":148,"lastModified":"1302021689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/049\/4c124ff17b9aa17ec1000049\/buzz-lightyear-of-star-command-the-adventure-begins-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Buzz Lightyear of Star Command: The Adventure Begins","releaseDate":965692800000,"language":"en","type":"Movie","_key":"63745"} +{"label":"9\/Tenths","description":"A wealthy couple battles a poor laborer over the rights to a small ranch house, but events take a shocking turn after an enormous terrorist attack cuts the three off from civilization.","id":"16188","runtime":98,"imdbId":"tt0421539","version":78,"lastModified":"1301905870000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9f\/4bc94ab9017a3c57fe020c9f\/9-tenths-mid.jpg","genre":"Drama","title":"9\/Tenths","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63746"} +{"label":"Zizek!","description":"ZIZEK! trails the thinker as he crisscrosses the globe, racing from New York City lecture halls, through the streets of Buenos Aires, and even stopping at home in Ljubljana, Slovenia. All the while Zizek obsessively reveals the invisible workings of ideology through his unique blend of Lacanian psychoanalysis, Marxism, and critique of pop culture.","id":"16190","runtime":71,"imdbId":"tt0478338","homepage":"http:\/\/www.zizekthemovie.com\/","version":76,"lastModified":"1302043432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca8\/4bc94aba017a3c57fe020ca8\/zizek-mid.jpg","studio":"Zeitgeist","genre":"Documentary","title":"Zizek!","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"63747"} +{"label":"Slavoj Zizek","version":17,"id":"112200","lastModified":"1301902325000","name":"Slavoj Zizek","type":"Person","_key":"63748"} +{"label":"Astra Taylor","version":17,"id":"112206","lastModified":"1301902503000","name":"Astra Taylor","type":"Person","_key":"63749"} +{"label":"Highway to Hell","description":"Charlie and Rachel run away from home to get married in Las Vegas. But they get attacked by a zombie who takes Rachel with him to hell, where she will become one of Satan's brides","id":"16191","runtime":94,"imdbId":"tt0104418","version":67,"lastModified":"1302173639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15b\/4c713ac95e73d66ff800015b\/highway-to-hell-mid.jpg","studio":"Goodman \/ Rosen Productions","genre":"Comedy","title":"Highway to Hell","releaseDate":700444800000,"language":"en","type":"Movie","_key":"63750"} +{"label":"Travis Pastrana and The Nitro Circus Vol 2","description":"Sure, the Nitro Circus isn't a real circus. But that doesn't stop this reel of hard-core motocross stunts from being one of the greatest shows on earth, a chance to bask in the insanity that only the Nitro crew can bring. In addition to ringleader Travis Pastrana, featured motocross daredevils include Gregg Godfrey, Andy Bell, \"Cowboy\" Kenny Bartram and Ronnie Renner.\r\n","id":"16192","runtime":56,"version":20,"lastModified":"1301906717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb1\/4bc94aba017a3c57fe020cb1\/travis-pastrana-and-the-nitro-circus-vol-2-mid.jpg","title":"Travis Pastrana and The Nitro Circus Vol 2","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63751"} +{"label":"Andy Bell","version":17,"id":"79962","lastModified":"1301902325000","name":"Andy Bell","type":"Person","_key":"63752"} +{"label":"Gregg Godfrey","version":28,"id":"79964","lastModified":"1301902325000","name":"Gregg Godfrey","type":"Person","_key":"63753"} +{"label":"U-900","description":"No overview found.","id":"16193","runtime":98,"imdbId":"tt1151831","homepage":"http:\/\/wwws.warnerbros.de\/u900\/","version":37,"lastModified":"1302172974000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cba\/4bc94abb017a3c57fe020cba\/u-900-mid.jpg","genre":"Comedy","title":"U-900","releaseDate":1223510400000,"language":"en","type":"Movie","_key":"63754"} +{"label":"Not Quite Hollywood","description":"Documentary on the 70's and 80's \"Ozploitation\" movies. A period when the Australian genre movie industry exploded with sex, violence, horror and action.","id":"16194","runtime":103,"imdbId":"tt0996966","trailer":"http:\/\/www.youtube.com\/watch?v=BXX3e8jARTE","version":118,"lastModified":"1302172718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc3\/4bc94abe017a3c57fe020cc3\/not-quite-hollywood-mid.jpg","genre":"Documentary","title":"Not Quite Hollywood","releaseDate":1219881600000,"language":"en","type":"Movie","_key":"63755"} +{"label":"Mark Hartley","version":21,"id":"113876","lastModified":"1301902383000","name":"Mark Hartley","type":"Person","_key":"63756"} +{"label":"Phillip Adams","version":20,"id":"113878","lastModified":"1301903033000","name":"Phillip Adams","type":"Person","_key":"63757"} +{"label":"Glory Annen","version":19,"id":"113879","lastModified":"1301902503000","name":"Glory Annen","type":"Person","_key":"63758"} +{"label":"Briony Behets","version":20,"id":"113552","lastModified":"1301902325000","name":"Briony Behets","type":"Person","_key":"63759"} +{"label":"Graeme Blundell","version":23,"id":"85351","lastModified":"1301902143000","name":"Graeme Blundell","type":"Person","_key":"63760"} +{"label":"Russell Boyd","version":52,"id":"31027","lastModified":"1301901503000","name":"Russell Boyd","type":"Person","_key":"63761"} +{"label":"Richard Brennan","version":20,"id":"113880","lastModified":"1301903033000","name":"Richard Brennan","type":"Person","_key":"63762"} +{"label":"Tom Burstall","version":19,"id":"113881","lastModified":"1301902987000","name":"Tom Burstall","type":"Person","_key":"63763"} +{"label":"Dan Burstall","version":19,"id":"113882","lastModified":"1301902987000","name":"Dan Burstall","type":"Person","_key":"63764"} +{"label":"Robin Copping","version":20,"id":"113548","lastModified":"1301902987000","name":"Robin Copping","type":"Person","_key":"63765"} +{"label":"Barry Crocker","version":18,"id":"107650","lastModified":"1301903066000","name":"Barry Crocker","type":"Person","_key":"63766"} +{"label":"Cassandra Delaney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/46c\/4cd7275b5e73d676d300046c\/cassandra-delaney-profile.jpg","version":22,"id":"113883","lastModified":"1301902414000","name":"Cassandra Delaney","type":"Person","_key":"63767"} +{"label":"Lynda Stoner","version":19,"id":"113884","lastModified":"1301902987000","name":"Lynda Stoner","type":"Person","_key":"63768"} +{"label":"Deborah Gray","version":20,"id":"113885","lastModified":"1301902987000","name":"Deborah Gray","type":"Person","_key":"63769"} +{"label":"Aa Ab","description":"No overview found.","id":"16195","runtime":0,"version":47,"lastModified":"1302172479000","title":"Aa Ab","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63770"} +{"label":"Dating the Enemy","description":"One messy science journalist (Tash) and a neat television host (Brett). Two very different people whose relationship is nose diving to get the opportunity to experience life in their partners shoes when they wake up one morning in each others bodies. Valuable lessons are learned by each as they both have to adjust to very different lives.","id":"16197","runtime":97,"imdbId":"tt0116036","version":52,"lastModified":"1301905868000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc8\/4bc94abf017a3c57fe020cc8\/dating-the-enemy-mid.jpg","genre":"Comedy","title":"Dating the Enemy","releaseDate":843091200000,"language":"en","type":"Movie","_key":"63771"} +{"label":"My Neighbors the Yamadas","description":"The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humourous to the heartbreaking, we see this family cope with life's little conflicts, problems and joys in their own way. ","id":"16198","runtime":104,"imdbId":"tt0206013","version":158,"lastModified":"1301903578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc9\/4d2177ec5e73d66b34002cc9\/h-hokekyo-tonari-no-yamada-kun-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"My Neighbors the Yamadas","releaseDate":932169600000,"language":"en","type":"Movie","_key":"63772"} +{"label":"Hayato Isobata","version":18,"id":"120801","lastModified":"1301902503000","name":"Hayato Isobata","type":"Person","_key":"63773"} +{"label":"Masako Araki","version":22,"id":"120802","lastModified":"1301902503000","name":"Masako Araki","type":"Person","_key":"63774"} +{"label":"Naomi Uno","version":22,"id":"120803","lastModified":"1301902503000","name":"Naomi Uno","type":"Person","_key":"63775"} +{"label":"T\u00f4ru Masuoka","version":23,"id":"120804","lastModified":"1301902503000","name":"T\u00f4ru Masuoka","type":"Person","_key":"63776"} +{"label":"Yukiji Asaoka","version":26,"id":"81242","lastModified":"1301901795000","name":"Yukiji Asaoka","type":"Person","_key":"63777"} +{"label":"Kosanji Yanagiya","version":18,"id":"120805","lastModified":"1301902676000","name":"Kosanji Yanagiya","type":"Person","_key":"63778"} +{"label":"Storm Cell","description":"A brother and sister are torn apart when their parents die tragically in a tornado. While he moves to Seattle to be away from the memory, she devotes her life to studying storms and weather patterns. When she discovers the threat of a powerful series of tornadoes are heading for Seattle, she must convince her brother and the entire city that she is not crazy; and they are in grave danger","id":"16200","runtime":0,"imdbId":"tt0983922","version":273,"lastModified":"1302171691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdb\/4bc94abf017a3c57fe020cdb\/storm-cell-mid.jpg","genre":"Action","title":"Storm Cell","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"63779"} +{"label":"Armbryterskan fr\u00e5n Ensamheten","description":"The tiny village in the far north of Sweden called Ensamheten (Solitude) has sixteen inhabitants. They all share an unusual passion - armwrestling.","id":"16201","runtime":78,"imdbId":"tt0443723","version":44,"lastModified":"1301904711000","studio":"Migma Film AB","genre":"Documentary","title":"Armbryterskan fr\u00e5n Ensamheten","releaseDate":1096588800000,"language":"en","type":"Movie","_key":"63780"} +{"label":"Helen Ahlsson","version":22,"id":"79967","lastModified":"1301902503000","name":"Helen Ahlsson","type":"Person","_key":"63781"} +{"label":"Lisa Munthe","version":20,"id":"79968","lastModified":"1301902524000","name":"Lisa Munthe","type":"Person","_key":"63782"} +{"label":"Heidi Andersson","version":19,"id":"79976","lastModified":"1301902503000","name":"Heidi Andersson","type":"Person","_key":"63783"} +{"label":"Jeanette Andersson","version":19,"id":"79977","lastModified":"1301902503000","name":"Jeanette Andersson","type":"Person","_key":"63784"} +{"label":"Kent Andersson","version":19,"id":"79978","lastModified":"1301902503000","name":"Kent Andersson","type":"Person","_key":"63785"} +{"label":"Bj\u00f6rn Ferry","version":19,"id":"79979","lastModified":"1301902503000","name":"Bj\u00f6rn Ferry","type":"Person","_key":"63786"} +{"label":"Cedric the Entertainer: Starting Lineup","description":"Comedian Cedric the Entertainer uses his considerable appeal to introduce some up-and-coming young stand-up comedians. Cedric himself takes on topics such as Bill Clinton, the death penalty, reality television, fast-food chicken, church etiquette, and much more. The other comedians are a mixed lot: Roland Powell amusingly mocks insecure boyfriends and sings a singles bar pick-up song and Juan Villareal gets some laughs out of food stamps and The Blair Witch Project, while Tony Luewellyn flounder","id":"16202","runtime":0,"imdbId":"tt0354445","version":121,"lastModified":"1301906096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce8\/4bc94ac0017a3c57fe020ce8\/cedric-the-entertainer-starting-line-up-mid.jpg","genre":"Comedy","title":"Cedric the Entertainer: Starting Lineup","releaseDate":1033430400000,"language":"en","type":"Movie","_key":"63787"} +{"label":"Space Is the Place","description":"Sun Ra and his Solar Myth Arkestra return to Earth after several years in space. Ra proclaims himself \"the alter-destiny\", meets with inner-city youths and battles with the devil himself to save the black race.","id":"16203","runtime":85,"imdbId":"tt0072195","version":55,"lastModified":"1302170753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf1\/4bc94ac1017a3c57fe020cf1\/space-is-the-place-mid.jpg","genre":"Action","title":"Space Is the Place","releaseDate":126230400000,"language":"en","type":"Movie","_key":"63788"} +{"label":"John Coney","version":19,"id":"79980","lastModified":"1301902316000","name":"John Coney","type":"Person","_key":"63789"} +{"label":"Sun Ra","version":19,"id":"79981","lastModified":"1301902316000","name":"Sun Ra","type":"Person","_key":"63790"} +{"label":"Raymond Johnson","version":21,"id":"79982","lastModified":"1301902488000","name":"Raymond Johnson","type":"Person","_key":"63791"} +{"label":"The Girl in the Park","description":"A mother, enduringly traumatized by the disappearance of her three-year old daughter 15 years ago, has cut herself off from her ex-husband and son. However, when a troubled young woman with a checkered past enters her life, old psychic wounds painfully resurface, as does the illogical and increasingly irrational hope that the young woman may be the daughter she lost so long ago. ","id":"16204","runtime":109,"imdbId":"tt0847167","version":136,"lastModified":"1302170421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfe\/4bc94ac2017a3c57fe020cfe\/the-girl-in-the-park-mid.jpg","studio":"Furst Films","genre":"Drama","title":"The Girl in the Park","releaseDate":1189296000000,"language":"en","type":"Movie","_key":"63792"} +{"label":"David Auburn","version":40,"id":"21032","lastModified":"1302065009000","name":"David Auburn","type":"Person","_key":"63793"} +{"label":"Felipe Bonilla","version":19,"id":"79984","lastModified":"1301902239000","name":"Felipe Bonilla","type":"Person","_key":"63794"} +{"label":"Samantha Gallo","version":19,"id":"79985","lastModified":"1301902066000","name":"Samantha Gallo","type":"Person","_key":"63795"} +{"label":"Mark Gerrard","version":17,"id":"79986","lastModified":"1301902066000","name":"Mark Gerrard","type":"Person","_key":"63796"} +{"label":"Maury Ginsberg","version":19,"id":"79987","lastModified":"1301902461000","name":"Maury Ginsberg","type":"Person","_key":"63797"} +{"label":"Seiko Higuma","version":17,"id":"79988","lastModified":"1301902066000","name":"Seiko Higuma","type":"Person","_key":"63798"} +{"label":"Jeffrey Joseph","version":19,"id":"79989","lastModified":"1301902239000","name":"Jeffrey Joseph","type":"Person","_key":"63799"} +{"label":"Jeremy Kareken","version":19,"id":"79990","lastModified":"1301902066000","name":"Jeremy Kareken","type":"Person","_key":"63800"} +{"label":"Stephen Kunken","version":19,"id":"79991","lastModified":"1301902066000","name":"Stephen Kunken","type":"Person","_key":"63801"} +{"label":"Ian McWethy","version":19,"id":"79992","lastModified":"1301902066000","name":"Ian McWethy","type":"Person","_key":"63802"} +{"label":"Flaco Navaja","version":19,"id":"79993","lastModified":"1301902066000","name":"Flaco Navaja","type":"Person","_key":"63803"} +{"label":"Elizabeth Newman","version":19,"id":"79994","lastModified":"1301902239000","name":"Elizabeth Newman","type":"Person","_key":"63804"} +{"label":"Michael Patterson","version":17,"id":"79995","lastModified":"1301902066000","name":"Michael Patterson","type":"Person","_key":"63805"} +{"label":"Katharine Powell","version":19,"id":"79996","lastModified":"1301902066000","name":"Katharine Powell","type":"Person","_key":"63806"} +{"label":"Tijuana Ricks","version":19,"id":"79997","lastModified":"1301902239000","name":"Tijuana Ricks","type":"Person","_key":"63807"} +{"label":"Rich Rothbell","version":19,"id":"79998","lastModified":"1301902239000","name":"Rich Rothbell","type":"Person","_key":"63808"} +{"label":"Kristen Ruhlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4c7563515e73d60415000013\/kristen-ruhlin-profile.jpg","version":27,"birthday":"456098400000","id":"79999","birthplace":"Charleston, West Virginia","lastModified":"1301901429000","name":"Kristen Ruhlin","type":"Person","_key":"63809"} +{"label":"Bill Sorice","version":19,"id":"80000","lastModified":"1301902239000","name":"Bill Sorice","type":"Person","_key":"63810"} +{"label":"Andrew Stewart-Jones","version":19,"id":"80001","lastModified":"1301902066000","name":"Andrew Stewart-Jones","type":"Person","_key":"63811"} +{"label":"Daisy Tahan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af4\/4d146b0e7b9aa1147a001af4\/daisy-tahan-profile.jpg","version":40,"id":"80002","lastModified":"1301901208000","name":"Daisy Tahan","type":"Person","_key":"63812"} +{"label":"Sarah Megan Thomas","version":19,"id":"80003","lastModified":"1301902066000","name":"Sarah Megan Thomas","type":"Person","_key":"63813"} +{"label":"Stacey Yen","version":19,"id":"80004","lastModified":"1301902066000","name":"Stacey Yen","type":"Person","_key":"63814"} +{"label":"Jack Brooks: Monster Slayer","description":"As a child Jack Brooks witnessed the brutal murder of his family. Now a young man he struggles with a pestering girlfriend, therapy sessions that resolve nothing, and night classes that barely hold his interest. After unleashing an ancient curse, Jack's Professor undergoes a transformation into something not-quite- human, and Jack is forced to confront some old demons... along with a few new ones.","id":"16205","runtime":85,"imdbId":"tt0816539","version":210,"lastModified":"1302170008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d14\/4bc94ac7017a3c57fe020d14\/jack-brooks-monster-slayer-mid.jpg","studio":"Brookstreet Pictures","genre":"Action","title":"Jack Brooks: Monster Slayer","releaseDate":1191888000000,"language":"en","tagline":"...I used to be a plumber ","type":"Movie","_key":"63815"} +{"label":"Jon Knautz","version":24,"id":"80005","lastModified":"1301902202000","name":"Jon Knautz","type":"Person","_key":"63816"} +{"label":"Trevor Matthews","version":21,"id":"80016","lastModified":"1301902011000","name":"Trevor Matthews","type":"Person","_key":"63817"} +{"label":"Dean Hawes","version":21,"id":"80017","lastModified":"1301902203000","name":"Dean Hawes","type":"Person","_key":"63818"} +{"label":"Rachel Skarsten","version":21,"id":"80018","lastModified":"1301902543000","name":"Rachel Skarsten","type":"Person","_key":"63819"} +{"label":"James A. Woods","version":28,"id":"80019","lastModified":"1301902197000","name":"James A. Woods","type":"Person","_key":"63820"} +{"label":"Ashley Bryant","version":21,"id":"80020","lastModified":"1301902360000","name":"Ashley Bryant","type":"Person","_key":"63821"} +{"label":"Stefanie Drummond","version":21,"id":"80021","lastModified":"1301902201000","name":"Stefanie Drummond","type":"Person","_key":"63822"} +{"label":"Chad Harber","version":21,"id":"80022","lastModified":"1301902390000","name":"Chad Harber","type":"Person","_key":"63823"} +{"label":"Patrick Henry","version":21,"id":"80023","lastModified":"1301902200000","name":"Patrick Henry","type":"Person","_key":"63824"} +{"label":"Meghanne Kessels","version":21,"id":"80024","lastModified":"1301902543000","name":"Meghanne Kessels","type":"Person","_key":"63825"} +{"label":"Meg Charette","version":21,"id":"80025","lastModified":"1301902543000","name":"Meg Charette","type":"Person","_key":"63826"} +{"label":"Kristyn Butcher","version":21,"id":"80026","lastModified":"1301902389000","name":"Kristyn Butcher","type":"Person","_key":"63827"} +{"label":"Andrew Butcher","version":21,"id":"80027","lastModified":"1301902543000","name":"Andrew Butcher","type":"Person","_key":"63828"} +{"label":"Simon Rainville","version":21,"id":"80028","lastModified":"1301902389000","name":"Simon Rainville","type":"Person","_key":"63829"} +{"label":"Matthew Stefiuk","version":21,"id":"80029","lastModified":"1301902515000","name":"Matthew Stefiuk","type":"Person","_key":"63830"} +{"label":"Brennan Delaney","version":21,"id":"80030","lastModified":"1301902169000","name":"Brennan Delaney","type":"Person","_key":"63831"} +{"label":"Valerie Casault","version":21,"id":"80031","lastModified":"1301901983000","name":"Valerie Casault","type":"Person","_key":"63832"} +{"label":"Austin Macdonald","version":21,"id":"80032","lastModified":"1301902353000","name":"Austin Macdonald","type":"Person","_key":"63833"} +{"label":"Evan Gilchrist","version":21,"id":"80033","lastModified":"1301901983000","name":"Evan Gilchrist","type":"Person","_key":"63834"} +{"label":"Victoria Fodor","version":21,"id":"80034","lastModified":"1301902388000","name":"Victoria Fodor","type":"Person","_key":"63835"} +{"label":"Derrick Damon Reeve","version":21,"id":"80035","lastModified":"1301902353000","name":"Derrick Damon Reeve","type":"Person","_key":"63836"} +{"label":"Danielle Kind","version":23,"id":"80036","lastModified":"1301902353000","name":"Danielle Kind","type":"Person","_key":"63837"} +{"label":"Joshua Bogues","version":21,"id":"80037","lastModified":"1301902011000","name":"Joshua Bogues","type":"Person","_key":"63838"} +{"label":"Brad Gibb","version":21,"id":"80038","lastModified":"1301902185000","name":"Brad Gibb","type":"Person","_key":"63839"} +{"label":"Rick Bramucci","version":21,"id":"80039","lastModified":"1301902379000","name":"Rick Bramucci","type":"Person","_key":"63840"} +{"label":"Steve Stransman","version":21,"id":"80040","lastModified":"1301902169000","name":"Steve Stransman","type":"Person","_key":"63841"} +{"label":"Christina Sauv\u00e9","version":21,"id":"80041","lastModified":"1301902169000","name":"Christina Sauv\u00e9","type":"Person","_key":"63842"} +{"label":"Melinda Gilhen","version":21,"id":"80042","lastModified":"1301902169000","name":"Melinda Gilhen","type":"Person","_key":"63843"} +{"label":"Monica White","version":21,"id":"80043","lastModified":"1301902169000","name":"Monica White","type":"Person","_key":"63844"} +{"label":"Allisa Boardley","version":21,"id":"80044","lastModified":"1301902168000","name":"Allisa Boardley","type":"Person","_key":"63845"} +{"label":"Catherine Grgicakuk","version":21,"id":"80045","lastModified":"1301902353000","name":"Catherine Grgicakuk","type":"Person","_key":"63846"} +{"label":"Blue","version":21,"id":"80046","lastModified":"1301902529000","name":"Blue","type":"Person","_key":"63847"} +{"label":"Dark Honeymoon","description":"Dark Honeymoon follows a man who marries a seductive woman after a brief and passionate relationship. During their honeymoon, on the Pacific coast, terrible truths unfold as those around them die mysterious deaths.","id":"16207","runtime":0,"imdbId":"tt0783501","version":268,"lastModified":"1302169566000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1d\/4bc94ac7017a3c57fe020d1d\/dark-honeymoon-mid.jpg","genre":"Horror","title":"Dark Honeymoon","releaseDate":1216684800000,"language":"en","type":"Movie","_key":"63848"} +{"label":"David O'Malley","version":13,"id":"151096","lastModified":"1301903423000","name":"David O'Malley","type":"Person","_key":"63849"} +{"label":"Dead Mary","description":"No overview found.","id":"16208","runtime":103,"imdbId":"tt0892047","version":205,"lastModified":"1302162963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d26\/4bc94ac8017a3c57fe020d26\/dead-mary-mid.jpg","genre":"Horror","title":"Dead Mary","releaseDate":1204502400000,"language":"en","tagline":"Life after college can be murder","type":"Movie","_key":"63850"} +{"label":"Jesus Christ Vampire Hunter","description":"The first testament says \"an eye for an eye.\" - The second testament says \"love thy neighbour.\" - The third testament ... Kicks Ass!!!","id":"16209","runtime":85,"imdbId":"tt0311361","version":194,"lastModified":"1302162704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2f\/4bc94ac9017a3c57fe020d2f\/jesus-christ-vampire-hunter-mid.jpg","studio":"Odessa Filmworks","genre":"Action","title":"Jesus Christ Vampire Hunter","releaseDate":979516800000,"language":"en","type":"Movie","_key":"63851"} +{"label":"Lee Demarbre","version":26,"id":"80047","lastModified":"1301902138000","name":"Lee Demarbre","type":"Person","_key":"63852"} +{"label":"Phil Caracas","version":20,"id":"80050","lastModified":"1301901990000","name":"Phil Caracas","type":"Person","_key":"63853"} +{"label":"Murielle Varhelyi","version":19,"id":"80051","lastModified":"1301902239000","name":"Murielle Varhelyi","type":"Person","_key":"63854"} +{"label":"Maria Moulton","version":19,"id":"80052","lastModified":"1301902239000","name":"Maria Moulton","type":"Person","_key":"63855"} +{"label":"Tim Devries","version":19,"id":"80053","lastModified":"1301902066000","name":"Tim Devries","type":"Person","_key":"63856"} +{"label":"Ian Driscoll","version":23,"id":"80048","lastModified":"1301902239000","name":"Ian Driscoll","type":"Person","_key":"63857"} +{"label":"Josh Grace","version":19,"id":"80054","lastModified":"1301902460000","name":"Josh Grace","type":"Person","_key":"63858"} +{"label":"Tracy Lance","version":19,"id":"80055","lastModified":"1301902460000","name":"Tracy Lance","type":"Person","_key":"63859"} +{"label":"Glen Jones","version":19,"id":"80056","lastModified":"1301902460000","name":"Glen Jones","type":"Person","_key":"63860"} +{"label":"Mike Funk","version":19,"id":"80057","lastModified":"1301902460000","name":"Mike Funk","type":"Person","_key":"63861"} +{"label":"Lucky Ron","version":19,"id":"80058","lastModified":"1301902460000","name":"Lucky Ron","type":"Person","_key":"63862"} +{"label":"Jeff Moffet","version":19,"id":"80059","lastModified":"1301902460000","name":"Jeff Moffet","type":"Person","_key":"63863"} +{"label":"Ivan Freud","version":19,"id":"80060","lastModified":"1301902460000","name":"Ivan Freud","type":"Person","_key":"63864"} +{"label":"Erica Murton","version":19,"id":"80061","lastModified":"1301902460000","name":"Erica Murton","type":"Person","_key":"63865"} +{"label":"Alex Godin","version":19,"id":"80062","lastModified":"1301902460000","name":"Alex Godin","type":"Person","_key":"63866"} +{"label":"Shelly Pederson","version":17,"id":"80063","lastModified":"1301902460000","name":"Shelly Pederson","type":"Person","_key":"63867"} +{"label":"Thetis Bernard","version":19,"id":"80064","lastModified":"1301902460000","name":"Thetis Bernard","type":"Person","_key":"63868"} +{"label":"Adel Croteau","version":19,"id":"80065","lastModified":"1301902460000","name":"Adel Croteau","type":"Person","_key":"63869"} +{"label":"Karen Friis","version":19,"id":"80066","lastModified":"1301902460000","name":"Karen Friis","type":"Person","_key":"63870"} +{"label":"Marlene Friis","version":19,"id":"80067","lastModified":"1301902239000","name":"Marlene Friis","type":"Person","_key":"63871"} +{"label":"Guen Douglas","version":19,"id":"80068","lastModified":"1301902460000","name":"Guen Douglas","type":"Person","_key":"63872"} +{"label":"Sarah Levitin","version":19,"id":"80069","lastModified":"1301902460000","name":"Sarah Levitin","type":"Person","_key":"63873"} +{"label":"Eva Colpaart","version":19,"id":"80070","lastModified":"1301902460000","name":"Eva Colpaart","type":"Person","_key":"63874"} +{"label":"Ranita Raggo","version":19,"id":"80071","lastModified":"1301902460000","name":"Ranita Raggo","type":"Person","_key":"63875"} +{"label":"Christopher R. Bugg","version":19,"id":"80072","lastModified":"1301902460000","name":"Christopher R. Bugg","type":"Person","_key":"63876"} +{"label":"Ean Murphy","version":19,"id":"80073","lastModified":"1301902460000","name":"Ean Murphy","type":"Person","_key":"63877"} +{"label":"Graham Collins","version":21,"id":"80049","lastModified":"1301902460000","name":"Graham Collins","type":"Person","_key":"63878"} +{"label":"Elinor Quesnel","version":19,"id":"80074","lastModified":"1301902460000","name":"Elinor Quesnel","type":"Person","_key":"63879"} +{"label":"Christine Demarbre","version":19,"id":"80075","lastModified":"1301902460000","name":"Christine Demarbre","type":"Person","_key":"63880"} +{"label":"Andy Smith","version":19,"id":"80076","lastModified":"1301902460000","name":"Andy Smith","type":"Person","_key":"63881"} +{"label":"Marc Charron","version":19,"id":"80077","lastModified":"1301902460000","name":"Marc Charron","type":"Person","_key":"63882"} +{"label":"Jose Sanchez","version":19,"id":"80078","lastModified":"1301902460000","name":"Jose Sanchez","type":"Person","_key":"63883"} +{"label":"Sophie","version":19,"id":"80079","lastModified":"1301902460000","name":"Sophie","type":"Person","_key":"63884"} +{"label":"Jay Stone","version":19,"id":"80080","lastModified":"1301902460000","name":"Jay Stone","type":"Person","_key":"63885"} +{"label":"Petr Maur","version":19,"id":"80081","lastModified":"1301902460000","name":"Petr Maur","type":"Person","_key":"63886"} +{"label":"Lyn Guerin","version":19,"id":"80082","lastModified":"1301901863000","name":"Lyn Guerin","type":"Person","_key":"63887"} +{"label":"Alana Ragbir","version":19,"id":"80083","lastModified":"1301902460000","name":"Alana Ragbir","type":"Person","_key":"63888"} +{"label":"Stu Hutchings","version":19,"id":"80084","lastModified":"1301902460000","name":"Stu Hutchings","type":"Person","_key":"63889"} +{"label":"Rayna Farr-Dutchin","version":19,"id":"80085","lastModified":"1301902460000","name":"Rayna Farr-Dutchin","type":"Person","_key":"63890"} +{"label":"Harry Knuckles","version":19,"id":"80086","lastModified":"1301902460000","name":"Harry Knuckles","type":"Person","_key":"63891"} +{"label":"Jenny Coutts","version":19,"id":"80087","lastModified":"1301902460000","name":"Jenny Coutts","type":"Person","_key":"63892"} +{"label":"Nancy Riehle","version":19,"id":"80088","lastModified":"1301902460000","name":"Nancy Riehle","type":"Person","_key":"63893"} +{"label":"Milo","version":19,"id":"80089","lastModified":"1301902460000","name":"Milo","type":"Person","_key":"63894"} +{"label":"Mark Cayer","version":19,"id":"80090","lastModified":"1301902460000","name":"Mark Cayer","type":"Person","_key":"63895"} +{"label":"Olga Chrzanowska","version":19,"id":"80091","lastModified":"1301902460000","name":"Olga Chrzanowska","type":"Person","_key":"63896"} +{"label":"Eric Demarbre","version":19,"id":"80092","lastModified":"1301902460000","name":"Eric Demarbre","type":"Person","_key":"63897"} +{"label":"Miles Finlayson","version":19,"id":"80093","lastModified":"1301902460000","name":"Miles Finlayson","type":"Person","_key":"63898"} +{"label":"Stephanie Halin","version":22,"id":"80094","lastModified":"1301902212000","name":"Stephanie Halin","type":"Person","_key":"63899"} +{"label":"Claudia Jurt","version":22,"id":"80095","lastModified":"1301901858000","name":"Claudia Jurt","type":"Person","_key":"63900"} +{"label":"Yves Macra","version":19,"id":"80096","lastModified":"1301902460000","name":"Yves Macra","type":"Person","_key":"63901"} +{"label":"Jason McMaster","version":19,"id":"80097","lastModified":"1301902066000","name":"Jason McMaster","type":"Person","_key":"63902"} +{"label":"Karm Parker","version":19,"id":"80098","lastModified":"1301902460000","name":"Karm Parker","type":"Person","_key":"63903"} +{"label":"Mark Pollesel","version":19,"id":"80099","lastModified":"1301902460000","name":"Mark Pollesel","type":"Person","_key":"63904"} +{"label":"Steve Sauve","version":19,"id":"80100","lastModified":"1301902460000","name":"Steve Sauve","type":"Person","_key":"63905"} +{"label":"Casey Tourangeau","version":19,"id":"80101","lastModified":"1301902460000","name":"Casey Tourangeau","type":"Person","_key":"63906"} +{"label":"The Sons of Katie Elder","description":"The Elder boys return to Clearwater, Texas for their Mother's funeral. John the eldest is a well known gunfighter and trouble follows him wherever he goes. The boys try to get back their ranch from the towns gunsmith who won it from their father in a card game with which he was shortly murdered there after but not before getting through the troubles that come with the Elders name","id":"16211","runtime":122,"imdbId":"tt0059740","version":200,"lastModified":"1302064586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d38\/4bc94acc017a3c57fe020d38\/the-sons-of-katie-elder-mid.jpg","studio":"Hall & Wallis Productions","genre":"Action","title":"The Sons of Katie Elder","releaseDate":-126748800000,"language":"en","tagline":"From the four winds they came, the four brothers, their eyes smoking and their fingers itching...","type":"Movie","_key":"63907"} +{"label":"Eddie Izzard: Live at the Ambassadors","description":"Eddie Izzard made his West End debut in 1993 at the Ambassadors Theatre. The show originally had a 4 week run, which was extended twice due to the popularity of the performance. Later released as his first video, titled \"Live at the Ambassadors\", the show lead to Izzard being invited to the Just For Laughs Montreal Comedy Festival, awarded a British Comedy Award for \"Top Stand Up Comedian\", and receiving an Olivier Award nomination for \"Outstanding Achievement\". Live at the Ambassadors is an exa","id":"16212","runtime":87,"imdbId":"tt0107429","version":48,"lastModified":"1301905661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3d\/4bc94acd017a3c57fe020d3d\/eddie-izzard-live-at-the-ambassadors-mid.jpg","genre":"Comedy","title":"Eddie Izzard: Live at the Ambassadors","releaseDate":725846400000,"language":"en","type":"Movie","_key":"63908"} +{"label":"Christopher Titus - Norman Rockwell is Bleeding","description":"A stand-up comic, Chris Titus, special.","id":"16213","runtime":90,"imdbId":"tt0414324","version":36,"lastModified":"1301903724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d46\/4bc94acd017a3c57fe020d46\/norman-rockwell-is-bleeding-mid.jpg","studio":"Deranged Entertainment","genre":"Comedy","title":"Christopher Titus - Norman Rockwell is Bleeding","releaseDate":1086480000000,"language":"en","type":"Movie","_key":"63909"} +{"label":"Christopher Titus","version":29,"id":"80103","lastModified":"1301901531000","name":"Christopher Titus","type":"Person","_key":"63910"} +{"label":"Jack Kenny","version":21,"id":"80104","lastModified":"1301901948000","name":"Jack Kenny","type":"Person","_key":"63911"} +{"label":"Hooper","description":"\nBurt Reynolds plays a legendary stunt man known as Sonny Hooper, who remains one of the top men in his field, but due to too many stressful impacts to the spine and the need to pop pain killers several times a day, he knows he should get out of the industry before he ends up permanently disabled.","id":"16214","runtime":99,"imdbId":"tt0077696","version":102,"lastModified":"1302139727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4f\/4bc94ace017a3c57fe020d4f\/hooper-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Hooper","releaseDate":270432000000,"language":"en","type":"Movie","_key":"63912"} +{"label":"Jack and Jill vs. the World","description":"Jack and Jill's Manifesto of Rules to Live By\n\nRule 1 Be honest\nRule 2 Believe in fairy tales\nRule 3 Accept time as our friend\nRule 4 Make sure the nooky is good\nRule 5 Promote beauty. Wage a sustained campaign against ugliness\nRule 6 Abandon the pursuit of happiness and its false promise\nRule 7 Show compassion, except to pirates\nRule 8 Less TV\nRule 9 Always be willing to admit when you're wrong","id":"16216","runtime":89,"imdbId":"tt0475252","homepage":"http:\/\/www.jackandjillvstheworld.com\/","version":126,"lastModified":"1302063300000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d74\/4bc94ad1017a3c57fe020d74\/jack-and-jill-vs-the-world-mid.jpg","genre":"Comedy","title":"Jack and Jill vs. the World","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"63913"} +{"label":"The Big Steal","description":"Danny wants two things in life more than anything else, one is a Jaguar and the other is Joanna Johnson. After Danny's parents give him their beloved Nissan Cedric, Danny works up the courage to ask Joanna out on a date.... One problem! He tells her that he owns a Jaguar, and to prove otherwise, he trades in the Cedric for an early model Jag. At the car yard he is conned into believing he is getti","id":"16217","runtime":99,"imdbId":"tt0099138","version":65,"lastModified":"1302165126000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d87\/4bc94ad2017a3c57fe020d87\/the-big-steal-mid.jpg","genre":"Comedy","title":"The Big Steal","releaseDate":653788800000,"language":"en","type":"Movie","_key":"63914"} +{"label":"The Big Bang","description":"In 1995, Italy annihilates Libya, which destroys Israel. Africa bombs Germany, which in turn attacks France. Luxembourg conquers England. Sweden, Monte Carlo and Switzerland immolate themselves.The Russians decide to liquidate the Americans, who unleash their nuclear fleet, leaving only two continents on the verge of World War IV.","id":"16218","runtime":76,"imdbId":"tt0086964","version":71,"lastModified":"1301906611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d90\/4bc94ad2017a3c57fe020d90\/the-big-bang-mid.jpg","genre":"Animation","title":"The Big Bang","releaseDate":543024000000,"language":"en","type":"Movie","_key":"63915"} +{"label":"Gladiator","description":"A story of two teenagers trapped in the world of illegal underground boxing. One is fighting to save his fathers life and using the money pay off gambling debts accumulated by his father. The second is fighting for the money to get out of the ghettos. While being exploited by a boxing promoter the two teens become friends. An explosive ending puts the two friends in the ring against each other.","id":"16219","runtime":101,"imdbId":"tt0104346","version":134,"lastModified":"1302138934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d99\/4bc94ad3017a3c57fe020d99\/gladiator-mid.jpg","genre":"Action","title":"Gladiator","releaseDate":699840000000,"language":"en","type":"Movie","_key":"63916"} +{"label":"Wizards","description":"An ambiguous battle between good and evil wages in a post-apocalyptic earth populated by netherworld creatures who have re-emerged after the nuclear winter. Two wizard twin brothers - the evil Blackwolf and the good Avatar - battle for supremacy. The war turns in Blackwolf's favor when he discovers the methods of warfare used by the ill-fated humans of the past.","id":"16220","runtime":80,"imdbId":"tt0076929","version":121,"lastModified":"1302138628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dab\/4bc94ad6017a3c57fe020dab\/wizards-mid.jpg","genre":"Animation","title":"Wizards","releaseDate":224294400000,"language":"en","tagline":"An epic fantasy of peace and magic.","type":"Movie","_key":"63917"} +{"label":"Jesse Welles","version":19,"id":"109010","lastModified":"1301901778000","name":"Jesse Welles","type":"Person","_key":"63918"} +{"label":"Dororo","description":"A female warrior (Shibasaki) who was raised as a man joins a young samurai's quest to recover his body parts from demons and restore his dad's natural form.","id":"16221","runtime":139,"imdbId":"tt0780503","trailer":"http:\/\/www.youtube.com\/watch?v=lCmOoDhrUa8","version":147,"lastModified":"1302146167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db8\/4bc94ad7017a3c57fe020db8\/dororo-mid.jpg","studio":"Toho Company","genre":"Action","title":"Dororo","releaseDate":1173916800000,"language":"en","tagline":"Fueled by hate, entwined by fate... their paths begin to unravel.","type":"Movie","_key":"63919"} +{"label":"Akihiko Shiota","version":24,"id":"80107","lastModified":"1301901778000","name":"Akihiko Shiota","type":"Person","_key":"63920"} +{"label":"Satoshi Tsumabuki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92d\/4d8b0e345e73d653ce00092d\/satoshi-tsumabuki-profile.jpg","version":26,"id":"80108","lastModified":"1301901947000","name":"Satoshi Tsumabuki","type":"Person","_key":"63921"} +{"label":"Whatever It Takes","description":"Ryan's dreams for catching the eye of the 'goddess of the high school hallway' has a chance of becoming true when her cousin (Chris) offers to make him a deal. All he has to do is help Chris to win the heart of his best friend, the beautiful enigmatic Maggie. This sparks off a damned cute comedy as 'boy helps boy to get girl'.","id":"16222","runtime":94,"imdbId":"tt0202402","trailer":"http:\/\/www.youtube.com\/watch?v=6CNEdM7ob8E","version":159,"lastModified":"1302160065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/792\/4d50ab1a7b9aa13ab800e792\/whatever-it-takes-mid.jpg","genre":"Comedy","title":"Whatever It Takes","releaseDate":954460800000,"language":"en","tagline":"How low will they go to get the girls of their dreams?","type":"Movie","_key":"63922"} +{"label":"David Raynr","version":20,"id":"139872","lastModified":"1301902253000","name":"David Raynr","type":"Person","_key":"63923"} +{"label":"Hatley High","description":"The Canadian teen comedy Hatley High sends up high school sports rituals by placing a most unlikely competitive game at the center of its story: that of chess. Tommy (Nicholas Wright) is a new arrival in his parents' hometown of Hatley, whose mother recently died. He discovers, after the fact, that his mom was once a chess pro and thus a legend in the community. Tommy's chess-fixated peers accept him almost instantly, inferring that he must have inherited his dear mother's skills, but in time To","id":"16223","runtime":0,"imdbId":"tt0340149","version":81,"lastModified":"1302162888000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f5\/4cb0ec335e73d65b810001f5\/hatley-high-mid.jpg","genre":"Comedy","title":"Hatley High","releaseDate":1064275200000,"language":"en","type":"Movie","_key":"63924"} +{"label":"Phil Price","version":16,"id":"137408","lastModified":"1301902917000","name":"Phil Price","type":"Person","_key":"63925"} +{"label":"Nwamiko Madden","version":17,"id":"137409","lastModified":"1301903038000","name":"Nwamiko Madden","type":"Person","_key":"63926"} +{"label":"Purasuchikku ritoru","description":"Tita, the captain of the good ship Cha Cha Maru (that's a real Ship, not a space ship), and her crew rescue a girl being chased by a villain with really huge shoulder pads and the small army at his control. They decide to put an end to this fellow's machinations and lots of action ensues. Urushihara's specialty.","id":"16224","runtime":55,"imdbId":"tt0110845","version":37,"lastModified":"1300980277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dca\/4bc94ad8017a3c57fe020dca\/purasuchikku-ritoru-mid.jpg","genre":"Animation","title":"Purasuchikku ritoru","releaseDate":776476800000,"language":"en","type":"Movie","_key":"63927"} +{"label":"Heavy Metal 2000","description":"Upon discovery of a shard of what could be the Loc-Nar, a miner named Tyler becomes possessed with an insatiable hunger for power and a thirst for immortality. On his way to the planet of youth, Tyler wipes out most of a space colony and kidnaps a beautiful young woman. His only mistake is that he doesn't kill her sister, Julie, who then sets out on a mission of rescue and revenge.","id":"16225","runtime":88,"imdbId":"tt0119273","version":367,"lastModified":"1302143741000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ca\/4d7d3d6b5e73d628280029ca\/heavy-metal-2000-mid.jpg","genre":"Action","title":"Heavy Metal 2000","releaseDate":957398400000,"language":"en","type":"Movie","_key":"63928"} +{"label":"Billy Idol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d6\/4ca2c5e57b9aa168ba0001d6\/billy-idol-profile.jpg","biography":"<b>William Michael Albert Broad<\/b> (born November 30, 1955), better known by his stage name <b>Billy Idol<\/b>, is an English <a href=\"http:\/\/en.wikipedia.org\/wiki\/Rock_music\" title=\"Rock music\">rock<\/a> <a href=\"http:\/\/en.wikipedia.org\/wiki\/Musician\" title=\"Musician\">musician<\/a>. He first achieved fame in the <a href=\"http:\/\/en.wikipedia.org\/wiki\/Punk_rock\" title=\"Punk rock\">punk rock<\/a> era as a member of the band <a href=\"http:\/\/en.wikipedia.org\/wiki\/Generation_X_%28band%29\" title=\"Generati","version":28,"birthday":"-444618000000","id":"80117","birthplace":"Middlesex, England, UK","lastModified":"1301901714000","name":"Billy Idol","type":"Person","_key":"63929"} +{"label":"Lady Death","description":"The movie begins in 15th century Sweden, where Hope, the beautiful daughter of Matthias, a skilled mercenary who is in actuality a demon, is accused of being the devil's consort. Sentenced by the town priest to be burned at the stake, Matthias, through his proxy, the jester Pagan, offers her life if she surrenders herself to him and join him in Hell.","id":"16226","runtime":80,"imdbId":"tt0354690","trailer":"http:\/\/www.youtube.com\/watch?v=1064","homepage":"http:\/\/www.ladydeathuniverse.com\/","version":137,"lastModified":"1302137019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ded\/4bc94adb017a3c57fe020ded\/lady-death-mid.jpg","studio":"ADV Films","genre":"Action","title":"Lady Death","releaseDate":1096934400000,"language":"en","type":"Movie","_key":"63930"} +{"label":"Mike Kleinhenz","version":19,"id":"80119","lastModified":"1301901778000","name":"Mike Kleinhenz","type":"Person","_key":"63931"} +{"label":"Andy McAvin","version":20,"id":"80120","lastModified":"1301901646000","name":"Andy McAvin","type":"Person","_key":"63932"} +{"label":"Dark Passage","description":"Bogart is Vincent Parry, a prison escapee framed for murder who emerges from plastic surgery with a new face. Bacall is Irene Jansen, his lone ally.","id":"16227","runtime":106,"imdbId":"tt0039302","trailer":"http:\/\/www.youtube.com\/watch?v=Md1QKTQHQBc","version":129,"lastModified":"1302136672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df6\/4bc94adc017a3c57fe020df6\/dark-passage-mid.jpg","genre":"Crime","title":"Dark Passage","releaseDate":-694742400000,"language":"en","type":"Movie","_key":"63933"} +{"label":"Tom D'Andrea","version":20,"id":"94334","lastModified":"1301902987000","name":"Tom D'Andrea","type":"Person","_key":"63934"} +{"label":"Clifton Young","version":22,"id":"95735","lastModified":"1301902987000","name":"Clifton Young","type":"Person","_key":"63935"} +{"label":"Douglas Kennedy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10a\/4ca217817b9aa168e000010a\/douglas-kennedy-profile.jpg","version":26,"id":"95734","lastModified":"1301902509000","name":"Douglas Kennedy","type":"Person","_key":"63936"} +{"label":"Rory Mallinson","version":23,"id":"95733","lastModified":"1301902744000","name":"Rory Mallinson","type":"Person","_key":"63937"} +{"label":"Houseley Stevenson","version":27,"id":"99217","lastModified":"1301902676000","name":"Houseley Stevenson","type":"Person","_key":"63938"} +{"label":"Street Fighter Alpha: Generations","description":"When Ryu returns to pay homage to his deceased mentor, Gouken, he is tormented by disturbing memories of his master's killer (Gouki). In a quest to become a true martial arts master, he sets out to hone his street fighting skills and deliver himself from the haunting legacy of the dark hadou.","id":"16228","runtime":45,"imdbId":"tt0495900","version":113,"lastModified":"1302142168000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e04\/4bc94ae0017a3c57fe020e04\/street-fighter-alpha-generations-mid.jpg","genre":"Animation","title":"Street Fighter Alpha: Generations","releaseDate":1130198400000,"language":"en","type":"Movie","_key":"63939"} +{"label":"Prozac Nation","description":"Elizabeth is on the verge of losing her grip on life after she leaves her emotionally fraught home to start college. Quickly, her life takes a turn for the worse: She clashes with her roommate and decides her boyfriend, Rafe, is her sole salvation. Her psychiatrist prescribes Prozac \u2026 but is that her only choice?","id":"16229","runtime":95,"imdbId":"tt0236640","version":93,"lastModified":"1302136073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c83\/4d588c537b9aa16bca002c83\/prozac-nation-mid.jpg","genre":"Drama","title":"Prozac Nation","releaseDate":1061510400000,"language":"en","tagline":"Pledge allegiance. Life's a drag.","type":"Movie","_key":"63940"} +{"label":"Erik Skjoldbj\u00e6rg","version":19,"id":"95760","lastModified":"1301902524000","name":"Erik Skjoldbj\u00e6rg","type":"Person","_key":"63941"} +{"label":"UFC: Best of 2008","description":"First Look has announced plans to bring the Ultimate Fighting Championship's year-end bash 'UFC: The Best of 2008' to Blu-ray this March.\n\nOriginally airing on Spike TV, 'The Best of 2008' is a nearly three-hour extravaganza of the UFC's craziest bouts of the year, featuring bone-crunching highlights of now-famous matches between its biggest stars.","id":"16230","runtime":140,"version":68,"lastModified":"1302157813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1b\/4bc94ae2017a3c57fe020e1b\/ufc-best-of-2008-mid.jpg","studio":"Zuffa","genre":"Sports Film","title":"UFC: Best of 2008","releaseDate":1237852800000,"language":"en","type":"Movie","_key":"63942"} +{"label":"Wild Zero","description":"When a zombie outbreak takes over Japan, three members of the band Guitar Wolf are here to help clean up with their brand of Jet Rock-n-Roll","id":"16231","runtime":98,"imdbId":"tt0267116","trailer":"http:\/\/www.youtube.com\/watch?v=1065","version":187,"lastModified":"1302157436000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e24\/4bc94ae2017a3c57fe020e24\/wild-zero-mid.jpg","studio":"Dragon Pictures","genre":"Horror","title":"Wild Zero","releaseDate":973036800000,"language":"en","type":"Movie","_key":"63943"} +{"label":"Guitar Wolf","version":17,"id":"80124","lastModified":"1301901493000","name":"Guitar Wolf","type":"Person","_key":"63944"} +{"label":"Bass Wolf","version":19,"id":"80125","lastModified":"1301901646000","name":"Bass Wolf","type":"Person","_key":"63945"} +{"label":"Drum Wolf","version":19,"id":"80126","lastModified":"1301901493000","name":"Drum Wolf","type":"Person","_key":"63946"} +{"label":"Masashi End\u00f4","version":19,"id":"80127","lastModified":"1301901444000","name":"Masashi End\u00f4","type":"Person","_key":"63947"} +{"label":"Kwancharu Shitichai","version":19,"id":"80128","lastModified":"1301902325000","name":"Kwancharu Shitichai","type":"Person","_key":"63948"} +{"label":"Makoto Inamiya","version":19,"id":"80129","lastModified":"1301902503000","name":"Makoto Inamiya","type":"Person","_key":"63949"} +{"label":"Haruka Nakajo","version":19,"id":"80130","lastModified":"1301902503000","name":"Haruka Nakajo","type":"Person","_key":"63950"} +{"label":"Shir\u00f4 Namiki","version":19,"id":"80131","lastModified":"1301902503000","name":"Shir\u00f4 Namiki","type":"Person","_key":"63951"} +{"label":"Taneko","version":19,"id":"80132","lastModified":"1301902503000","name":"Taneko","type":"Person","_key":"63952"} +{"label":"Masao","version":19,"id":"80133","lastModified":"1301902503000","name":"Masao","type":"Person","_key":"63953"} +{"label":"Mr. 3000","description":"Aging baseball star who goes by the nickname, Mr. 3000, finds out many years after retirement that he didn't quite reach 3,000 hits. Now at age 47 he's back to try and reach that goal.","id":"16232","runtime":104,"imdbId":"tt0339412","trailer":"http:\/\/www.youtube.com\/watch?v=-EQobqroFY8","version":256,"lastModified":"1302140457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e31\/4bc94ae3017a3c57fe020e31\/mr-3000-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"Mr. 3000","releaseDate":1095379200000,"language":"en","type":"Movie","_key":"63954"} +{"label":"Tromeo and Juliet","description":"A modern, punk adaptation of Shakespeare's classic. Told irreverently, this film attempts to impact the viewer in the same way theatre-goers were effected in Shakespeare's time. Bawdy, Violent, Humorous, and Romantic.","id":"16233","runtime":107,"imdbId":"tt0114733","version":169,"lastModified":"1302156481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3a\/4bc94ae5017a3c57fe020e3a\/tromeo-and-juliet-mid.jpg","studio":"Troma Entertainment","title":"Tromeo and Juliet","releaseDate":857001600000,"language":"en","type":"Movie","_key":"63955"} +{"label":"Jane Jensen","version":17,"id":"98652","lastModified":"1301902460000","name":"Jane Jensen","type":"Person","_key":"63956"} +{"label":"Valentine Miele","version":17,"id":"98653","lastModified":"1301902888000","name":"Valentine Miele","type":"Person","_key":"63957"} +{"label":"William Beckwith","version":17,"id":"98654","lastModified":"1301902633000","name":"William Beckwith","type":"Person","_key":"63958"} +{"label":"Steve Gibbons","version":17,"id":"98655","lastModified":"1301902632000","name":"Steve Gibbons","type":"Person","_key":"63959"} +{"label":"Flip Brown","version":17,"id":"98656","lastModified":"1301902632000","name":"Flip Brown","type":"Person","_key":"63960"} +{"label":"Jason Green","version":20,"id":"98651","lastModified":"1301902633000","name":"Jason Green","type":"Person","_key":"63961"} +{"label":"Batman Beyond: Return of the Joker","description":"The clown prince of crime is back with his own unique brand of havoc and mayhem. While trying to uncover the Joker's secrets, the new Batman, Terry McGinnis, discovers the greatest mystery in the life of the original caped crusader, what happened the night he fought The Joker for the last time.","id":"16234","runtime":74,"imdbId":"tt0233298","trailer":"http:\/\/www.youtube.com\/watch?v=1433","version":382,"lastModified":"1302155949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e48\/4bc94ae6017a3c57fe020e48\/batman-beyond-return-of-the-joker-mid.jpg","genre":"Action","title":"Batman Beyond: Return of the Joker","releaseDate":976579200000,"language":"en","type":"Movie","_key":"63962"} +{"label":"Amityville II: The Possession","description":"The night of February 5, 1976, Goerge and Kathleen Lutz and their three children fled their home in Amityville, New York. They got out alive! Their living nightmare shocked audiences around the world in \"The Amityville Horror\". But before them, another family lived in this house and were caught by the original evil. They weren't so lucky... this is their story!","id":"16235","runtime":104,"imdbId":"tt0083550","version":202,"lastModified":"1301904325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e51\/4bc94ae7017a3c57fe020e51\/amityville-ii-the-possession-mid.jpg","genre":"Horror","title":"Amityville II: The Possession","releaseDate":401673600000,"language":"en","tagline":"If these walls could talk...they would SHRIEK!","type":"Movie","_key":"63963"} +{"label":"Jack Magner","version":22,"id":"80136","lastModified":"1301902528000","name":"Jack Magner","type":"Person","_key":"63964"} +{"label":"Erika Katz","version":22,"id":"80138","lastModified":"1301902525000","name":"Erika Katz","type":"Person","_key":"63965"} +{"label":"Brent Katz","version":22,"id":"80139","lastModified":"1301902524000","name":"Brent Katz","type":"Person","_key":"63966"} +{"label":"Danny Aiello III","version":42,"id":"27513","lastModified":"1301901670000","name":"Danny Aiello III","type":"Person","_key":"63967"} +{"label":"Gilbert Stafford","version":22,"id":"80140","lastModified":"1301902535000","name":"Gilbert Stafford","type":"Person","_key":"63968"} +{"label":"Petra Lea","version":22,"id":"80141","lastModified":"1301902529000","name":"Petra Lea","type":"Person","_key":"63969"} +{"label":"Alan Dellay","version":22,"id":"80143","lastModified":"1301902539000","name":"Alan Dellay","type":"Person","_key":"63970"} +{"label":"Martin Donegan","version":22,"id":"80146","lastModified":"1301902538000","name":"Martin Donegan","type":"Person","_key":"63971"} +{"label":"John Ring","version":22,"id":"80148","lastModified":"1301902542000","name":"John Ring","type":"Person","_key":"63972"} +{"label":"Peter Radon","version":22,"id":"80150","lastModified":"1301902542000","name":"Peter Radon","type":"Person","_key":"63973"} +{"label":"Lawrence Bolen","version":22,"id":"80151","lastModified":"1301902516000","name":"Lawrence Bolen","type":"Person","_key":"63974"} +{"label":"Tony Boschetti","version":22,"id":"80152","lastModified":"1301902516000","name":"Tony Boschetti","type":"Person","_key":"63975"} +{"label":"John Clohessy","version":22,"id":"80153","lastModified":"1301902516000","name":"John Clohessy","type":"Person","_key":"63976"} +{"label":"Hollis Granville","version":23,"id":"80155","lastModified":"1301902516000","name":"Hollis Granville","type":"Person","_key":"63977"} +{"label":"Frank Patton","version":22,"id":"80156","lastModified":"1301902535000","name":"Frank Patton","type":"Person","_key":"63978"} +{"label":"Kim H. Ornitz","version":22,"id":"80157","lastModified":"1301902516000","name":"Kim H. Ornitz","type":"Person","_key":"63979"} +{"label":"Lindsay Hill","version":22,"id":"80158","lastModified":"1301902516000","name":"Lindsay Hill","type":"Person","_key":"63980"} +{"label":"Rudy Jones","version":22,"id":"80159","lastModified":"1301902516000","name":"Rudy Jones","type":"Person","_key":"63981"} +{"label":"Todd Jamie","version":22,"id":"80160","lastModified":"1301902516000","name":"Todd Jamie","type":"Person","_key":"63982"} +{"label":"Ken Smith","version":22,"id":"80162","lastModified":"1301902516000","name":"Ken Smith","type":"Person","_key":"63983"} +{"label":"Anita Keal","version":22,"id":"80163","lastModified":"1301902516000","name":"Anita Keal","type":"Person","_key":"63984"} +{"label":"Sondra Lee","version":22,"id":"80164","lastModified":"1301902528000","name":"Sondra Lee","type":"Person","_key":"63985"} +{"label":"Alice Playten","version":22,"id":"80165","lastModified":"1301902482000","name":"Alice Playten","type":"Person","_key":"63986"} +{"label":"Tony Devon","version":22,"id":"80167","lastModified":"1301902516000","name":"Tony Devon","type":"Person","_key":"63987"} +{"label":"Mansfield Park","description":"In Mansfield Park, poverty-stricken Fanny Price (Billie Piper) is sent away to live with her wealthy uncle and aunt at Mansfield Park. As she struggles to adapt to her new lifestyle she begins to attract the attentions of suitors, learning about the sexual politics of high society along the way.","id":"16236","runtime":120,"imdbId":"tt0847182","version":147,"lastModified":"1301905948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5a\/4bc94aeb017a3c57fe020e5a\/mansfield-park-mid.jpg","studio":"ITV Productions","genre":"Drama","title":"Mansfield Park","releaseDate":1174262400000,"language":"en","type":"Movie","_key":"63988"} +{"label":"Billie Piper","version":29,"id":"26076","lastModified":"1301901819000","name":"Billie Piper","type":"Person","_key":"63989"} +{"label":"Jemma Redgrave","version":23,"id":"80145","lastModified":"1301902052000","name":"Jemma Redgrave","type":"Person","_key":"63990"} +{"label":"Maggie O'Neill","version":21,"id":"80147","lastModified":"1301901855000","name":"Maggie O'Neill","type":"Person","_key":"63991"} +{"label":"Douglas Hodge","version":29,"id":"80149","lastModified":"1301902165000","name":"Douglas Hodge","type":"Person","_key":"63992"} +{"label":"Blake Ritson","version":22,"id":"80154","lastModified":"1301901778000","name":"Blake Ritson","type":"Person","_key":"63993"} +{"label":"Iain B. MacDonald","version":21,"id":"80161","lastModified":"1301902360000","name":"Iain B. MacDonald","type":"Person","_key":"63994"} +{"label":"Teen Titans: Trouble in Tokyo","description":"America's coolest heroes, the Teen Titans, go to Tokyo to track down the mysterious Japanese criminal Brushogun.","id":"16237","runtime":0,"imdbId":"tt0816671","trailer":"http:\/\/www.youtube.com\/watch?v=zPQei7nDZUE","version":171,"lastModified":"1301906466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e68\/4bc94aec017a3c57fe020e68\/teen-titans-trouble-in-tokyo-mid.jpg","genre":"Action","title":"Teen Titans: Trouble in Tokyo","releaseDate":1170720000000,"language":"en","type":"Movie","_key":"63995"} +{"label":"Michael Chang","version":20,"id":"127380","lastModified":"1301902425000","name":"Michael Chang","type":"Person","_key":"63996"} +{"label":"Ben Jones","version":20,"id":"127381","lastModified":"1301902589000","name":"Ben Jones","type":"Person","_key":"63997"} +{"label":"Matt Youngberg","version":20,"id":"127382","lastModified":"1301902425000","name":"Matt Youngberg","type":"Person","_key":"63998"} +{"label":"Greg Cipes","version":20,"id":"127384","lastModified":"1301902589000","name":"Greg Cipes","type":"Person","_key":"63999"} +{"label":"Robert Ito","version":22,"id":"122154","lastModified":"1301902713000","name":"Robert Ito","type":"Person","_key":"64000"} +{"label":"Janice Kawaye","version":20,"id":"127386","lastModified":"1301902487000","name":"Janice Kawaye","type":"Person","_key":"64001"} +{"label":"Yuri Lowenthal","version":33,"id":"127387","lastModified":"1302003353000","name":"Yuri Lowenthal","type":"Person","_key":"64002"} +{"label":"Keone Young","version":19,"id":"91387","lastModified":"1301902561000","name":"Keone Young","type":"Person","_key":"64003"} +{"label":"Jak rozp\u0119ta\u0142em II wojn\u0119 \u015bwiatow\u0105","description":"Jak rozp\u0119ta\u0142em drug\u0105 wojn\u0119 \u015bwiatow\u0105 (How I unleashed World War II) is a Polish feature film made in 1969, based on Kazimierz S\u0142awi\u0144ski's novel \"Przygody kanoniera Dolasa\" (The adventures of Dolas the cannoneer). The film was divided into three parts: Ucieczka (The escape), Za broni\u0105 (Following the arms) and W\u015br\u00f3d swoich (Among friends).","id":"16238","runtime":224,"imdbId":"tt0065908","version":42,"lastModified":"1301905218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/230\/4c02277c017a3c702a001230\/jak-rozpetaem-ii-wojne-swiatowa-mid.jpg","genre":"Comedy","title":"Jak rozp\u0119ta\u0142em II wojn\u0119 \u015bwiatow\u0105","releaseDate":7862400000,"language":"en","type":"Movie","_key":"64004"} +{"label":"Marian Kociniak","version":19,"id":"80168","lastModified":"1301902503000","name":"Marian Kociniak","type":"Person","_key":"64005"} +{"label":"Emil Karewicz","version":21,"id":"80169","lastModified":"1301902396000","name":"Emil Karewicz","type":"Person","_key":"64006"} +{"label":"Tadeusz Chmielewski","version":19,"id":"80170","lastModified":"1301902503000","name":"Tadeusz Chmielewski","type":"Person","_key":"64007"} +{"label":"You're Welcome America - A Final Night With George W Bush","description":"Comedian \/ Actor Will Ferrell stars as George W. Bush in this take on the former President of the United States. After playing George W. Bush on Saturday Night Live for many years, funny man Will Ferrell brings his impression to Broadway to send up the 43rd President of the United States of America.","id":"16239","runtime":90,"imdbId":"tt1386011","version":163,"lastModified":"1301902603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e79\/4bc94aee017a3c57fe020e79\/will-ferrell-you-re-welcome-america-a-final-night-with-george-w-bush-mid.jpg","studio":"Funny Business Productions","genre":"Comedy","title":"You're Welcome America - A Final Night With George W Bush","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"64008"} +{"label":"Pia Glenn","version":17,"id":"94600","lastModified":"1301901162000","name":"Pia Glenn","type":"Person","_key":"64009"} +{"label":"Patrick Ferrell","version":17,"id":"94601","lastModified":"1301901129000","name":"Patrick Ferrell","type":"Person","_key":"64010"} +{"label":"Michael Delaney","version":17,"id":"94602","lastModified":"1301901090000","name":"Michael Delaney","type":"Person","_key":"64011"} +{"label":"Breakfast With Scot","description":"Eric and Sam have been in a committed relationship for four years. Eric's a former hockey player turned sportscaster and Sam's a sport's lawyer. But when Sam's adventure seeking brother Billy, takes a job in South America, his ex-girlfriend, Julie, is discovered dead from a drug overdose leaving her son Scot (not Billy's son) to Billy.","id":"16240","runtime":95,"imdbId":"tt0910847","trailer":"http:\/\/www.youtube.com\/watch?v=1066","homepage":"http:\/\/www.breakfastwithscotmovie.com\/","version":172,"lastModified":"1301417002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc94aee017a3c57fe020e82\/breakfast-with-scot-mid.jpg","genre":"Drama","title":"Breakfast With Scot","releaseDate":1195171200000,"language":"en","type":"Movie","_key":"64012"} +{"label":"Cameron Ansell","version":20,"id":"80177","lastModified":"1301902066000","name":"Cameron Ansell","type":"Person","_key":"64013"} +{"label":"Benz Antoine","version":23,"id":"80178","lastModified":"1301901491000","name":"Benz Antoine","type":"Person","_key":"64014"} +{"label":"Noah Bernett","version":20,"id":"80179","lastModified":"1301902239000","name":"Noah Bernett","type":"Person","_key":"64015"} +{"label":"Robin Br\u00fbl\u00e9","version":26,"id":"80180","lastModified":"1301901534000","name":"Robin Br\u00fbl\u00e9","type":"Person","_key":"64016"} +{"label":"Dylan Everett","version":21,"id":"43244","lastModified":"1301901559000","name":"Dylan Everett","type":"Person","_key":"64017"} +{"label":"Travis Ferris","version":20,"id":"80181","lastModified":"1301901863000","name":"Travis Ferris","type":"Person","_key":"64018"} +{"label":"The Boys From Brazil","description":"A Nazi hunter in Paraguay discovers a sinister and bizarre plot to rekindle the Third Reich","id":"16241","runtime":125,"imdbId":"tt0077269","trailer":"http:\/\/www.youtube.com\/watch?v=RhpqqNZMx50","version":183,"lastModified":"1301904130000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e2\/4c70971e5e73d65f7b0008e2\/the-boys-from-brazil-mid.jpg","studio":"Incorporated Television Company","genre":"Drama","title":"The Boys From Brazil","releaseDate":276393600000,"language":"en","type":"Movie","_key":"64019"} +{"label":"Uta Hagen","version":21,"id":"93051","lastModified":"1301902726000","name":"Uta Hagen","type":"Person","_key":"64020"} +{"label":"Les patriotes","description":"Ariel, un jeune Juif fran\u00e7ais, d\u00e9cide de quitter sa famille pour partir en Isra\u00ebl et devenir un agent du Mossad, les services secrets isra\u00e9liens. En participant \u00e0 des missions \u00e0 Paris, Tel Aviv et Washington, il sera initi\u00e9 \u00e0 l'art d\u00e9licat de la manipulation.","id":"16242","runtime":142,"imdbId":"tt0110796","version":120,"lastModified":"1301008560000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e90\/4bc94aef017a3c57fe020e90\/patriotes-les-mid.jpg","genre":"Drama","title":"Les patriotes","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64021"} +{"label":"Richard Masur","version":20,"id":"137039","lastModified":"1301903042000","name":"Richard Masur","type":"Person","_key":"64022"} +{"label":"Yossi Banai","version":17,"id":"137040","lastModified":"1301902911000","name":"Yossi Banai","type":"Person","_key":"64023"} +{"label":"Nancy Allen","version":18,"id":"137041","lastModified":"1301903058000","name":"Nancy Allen","type":"Person","_key":"64024"} +{"label":"The Best of Elmo","description":"No overview found.","id":"16243","runtime":0,"imdbId":"tt0182784","version":113,"lastModified":"1301904910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e99\/4bc94aef017a3c57fe020e99\/the-best-of-elmo-mid.jpg","title":"The Best of Elmo","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64025"} +{"label":"Gone in 60 Seconds","description":"Insurance investigator Maindrian Pace and his team lead double-lives as unstoppable car thieves. When a South American drug lord pays Pace to steal 48 cars for him, all but one, a 1973 Ford Mustang, are in the bag. As Pace prepares to rip-off the fastback, codenamed \"Eleanor\", in Long Beach, he is unaware that his boss has tipped off the police after a business dispute.","id":"16246","runtime":105,"imdbId":"tt0071571","version":89,"lastModified":"1301905447000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4bc94af3017a3c57fe020eab\/gone-in-60-seconds-mid.jpg","studio":"H.B. Halicki Mercantile Co.","genre":"Action","title":"Gone in 60 Seconds","releaseDate":144201600000,"language":"en","type":"Movie","_key":"64026"} +{"label":"H.B. Halicki","version":37,"id":"58499","lastModified":"1301901484000","name":"H.B. Halicki","type":"Person","_key":"64027"} +{"label":"Marion Busia","version":20,"id":"80191","lastModified":"1301902460000","name":"Marion Busia","type":"Person","_key":"64028"} +{"label":"Jerry Daugirda","version":20,"id":"80192","lastModified":"1301902460000","name":"Jerry Daugirda","type":"Person","_key":"64029"} +{"label":"James McIntyre","version":20,"id":"80193","lastModified":"1301902239000","name":"James McIntyre","type":"Person","_key":"64030"} +{"label":"Ronald Halicki","version":23,"id":"80194","lastModified":"1301902460000","name":"Ronald Halicki","type":"Person","_key":"64031"} +{"label":"Markos Kotsikos","version":20,"id":"80195","lastModified":"1301902066000","name":"Markos Kotsikos","type":"Person","_key":"64032"} +{"label":"Butch Stockton","version":20,"id":"80196","lastModified":"1301902066000","name":"Butch Stockton","type":"Person","_key":"64033"} +{"label":"Phil Woods","version":20,"id":"80197","lastModified":"1301902066000","name":"Phil Woods","type":"Person","_key":"64034"} +{"label":"Steve Peterson","version":22,"id":"80202","lastModified":"1301902239000","name":"Steve Peterson","type":"Person","_key":"64035"} +{"label":"Festival","description":"No overview found.","id":"16247","runtime":107,"imdbId":"tt0468736","version":435,"lastModified":"1301908047000","genre":"Comedy","title":"Festival","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64036"} +{"label":"Kevin Mason","version":5,"id":"224991","lastModified":"1301904092000","name":"Kevin Mason","type":"Person","_key":"64037"} +{"label":"Paddy Conner","version":12,"id":"219272","lastModified":"1301903678000","name":"Paddy Conner","type":"Person","_key":"64038"} +{"label":"Anne Griffin","version":17,"id":"138260","lastModified":"1301902813000","name":"Anne Griffin","type":"Person","_key":"64039"} +{"label":"D.A.R.Y.L.","description":"A young boy is found wandering without any memory of who he is. A family takes him in and begin to look for clues to help him find his way home. In the meantime, they notice that the boy seems to have certain special abilities, not usually found in kids his age, or even fully-grown adults.","id":"16248","runtime":99,"imdbId":"tt0088979","version":116,"lastModified":"1301906118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb9\/4bc94af3017a3c57fe020eb9\/d-a-r-y-l-mid.jpg","studio":"Paramount Pictures","genre":"Family","title":"D.A.R.Y.L.","releaseDate":487555200000,"language":"en","type":"Movie","_key":"64040"} +{"label":"Barret Oliver","version":30,"id":"29508","lastModified":"1301901207000","name":"Barret Oliver","type":"Person","_key":"64041"} +{"label":"Amy Linker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1cd\/4c79784f5e73d613d80001cd\/amy-linker-profile.jpg","version":21,"id":"80204","lastModified":"1301902421000","name":"Amy Linker","type":"Person","_key":"64042"} +{"label":"Danny Corkill","version":23,"id":"80205","lastModified":"1301902009000","name":"Danny Corkill","type":"Person","_key":"64043"} +{"label":"Kathryn Walker","version":22,"id":"84762","lastModified":"1301901812000","name":"Kathryn Walker","type":"Person","_key":"64044"} +{"label":"Blackbeard's Ghost","description":"Blackbeard's Ghost was one of the first Disney productions released after Walt's death. Peter Ustinov stars as the eponymous wraith, who returns to Earth to aid his descendant, elderly Elsa Lanchester. The villains want to kick Lanchester and her friends out of their group home so that they can build a crooked casino. Good guy Dean Jones evokes the spirit of Blackbeard to thwart the bad guys.","id":"16249","runtime":107,"imdbId":"tt0062737","version":149,"lastModified":"1301905567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec3\/4bc94af4017a3c57fe020ec3\/blackbeard-s-ghost-mid.jpg","studio":"Walt Disney Productions","genre":"Comedy","title":"Blackbeard's Ghost","releaseDate":-59875200000,"language":"en","type":"Movie","_key":"64045"} +{"label":"Richard Deacon","version":22,"id":"80206","lastModified":"1301901646000","name":"Richard Deacon","type":"Person","_key":"64046"} +{"label":"Love Comes Softly","description":"Marty is a 19 year old pioneer woman, recently married. She goes west with her husband Clem, hoping to start a new life. But Clem unexpectedly dies, and Marty finds herself alone, two months pregnant. Clark Davis, a widower, offers her a marriage of convenience: she needs food and money, and he needs someone to take care of his daughter Missie. She accepts his proposal as a temporary solution.","id":"16250","runtime":88,"imdbId":"tt0345591","version":157,"lastModified":"1301904051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed6\/4bc94af5017a3c57fe020ed6\/love-comes-softly-mid.jpg","genre":"Drama","title":"Love Comes Softly","releaseDate":1050192000000,"language":"en","type":"Movie","_key":"64047"} +{"label":"Oliver Macready","version":20,"id":"80209","lastModified":"1301901991000","name":"Oliver Macready","type":"Person","_key":"64048"} +{"label":"Be Live","description":"No overview found.","id":"16251","runtime":0,"version":485,"lastModified":"1302039967000","title":"Be Live","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64049"} +{"label":"Entertainer","description":"No overview found.","id":"16256","runtime":0,"version":51,"lastModified":"1301906613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee8\/4bc94af6017a3c57fe020ee8\/entertainer-mid.jpg","title":"Entertainer","releaseDate":1310169600000,"language":"en","type":"Movie","_key":"64050"} +{"label":"Street Fighter IV: The Ties That Bind","description":"Released as part of the Collector's Edition of the Street Fighter IV home console release, \"The Ties That Bind\" is the prologue for the video game. The movie primarily follows Ken, Cammy, Chun-Li, and Guile as they search for answers behind a rash of martial artist kidnappings and their relation to a powerful new experimental weapon.","id":"16257","runtime":65,"imdbId":"tt1394259","version":82,"lastModified":"1301904420000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efe\/4bc94af8017a3c57fe020efe\/street-fighter-iv-the-ties-that-bind-mid.jpg","studio":"Studio 4\u00b0C","genre":"Animation","title":"Street Fighter IV: The Ties That Bind","releaseDate":1234828800000,"language":"en","type":"Movie","_key":"64051"} +{"label":"Jir\u00f4 Kanai","version":20,"id":"80210","lastModified":"1301902325000","name":"Jir\u00f4 Kanai","type":"Person","_key":"64052"} +{"label":"The Butterfly Effect 3: Revelations","description":"The story revolves around a man trying to uncover the mysterious death of his girlfriend and save an innocent man from the death chamber in the process, by using his unique power to time travel. However in attempting to do this, he also frees a spiteful serial-killer.","id":"16258","runtime":90,"imdbId":"tt1234541","version":212,"lastModified":"1301919972000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f15\/4bc94afc017a3c57fe020f15\/butterfly-effect-revelations-mid.jpg","studio":"After Dark Films","genre":"Mystery","title":"The Butterfly Effect 3: Revelations","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"64053"} +{"label":"Seth Grossman","version":27,"id":"87438","lastModified":"1301919972000","name":"Seth Grossman","type":"Person","_key":"64054"} +{"label":"Melissa Jones","version":25,"id":"87441","lastModified":"1301919972000","name":"Melissa Jones","type":"Person","_key":"64055"} +{"label":"Kevin Yon","version":25,"id":"87442","lastModified":"1301919972000","name":"Kevin Yon","type":"Person","_key":"64056"} +{"label":"Lynch R. Travis","version":25,"id":"87443","lastModified":"1301919972000","name":"Lynch R. Travis","type":"Person","_key":"64057"} +{"label":"Sarah Habel","version":33,"id":"87444","lastModified":"1301919972000","name":"Sarah Habel","type":"Person","_key":"64058"} +{"label":"Mia Serafino","version":25,"id":"87445","lastModified":"1301919972000","name":"Mia Serafino","type":"Person","_key":"64059"} +{"label":"Chantel Giacalone","version":25,"id":"87446","lastModified":"1301919972000","name":"Chantel Giacalone","type":"Person","_key":"64060"} +{"label":"Hugh Maguire","version":25,"id":"87447","lastModified":"1301919972000","name":"Hugh Maguire","type":"Person","_key":"64061"} +{"label":"Ten Dead Men","description":"You can\u2019t outrun your past. That is the extremely painful lesson that Ryan (Brendan Carr)is learning right now, as spectres of his past life of crime have returned to haunt him, destroying the only person he holds dear, and nearly killing him in the process. Ryan decides that if he cannot escape then he must confront them head-on in what can only be called a desperate suicide run.","id":"16259","runtime":90,"imdbId":"tt0854679","homepage":"http:\/\/www.tendeadmen.co.uk","version":106,"lastModified":"1301904633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1e\/4bc94afd017a3c57fe020f1e\/ten-dead-men-mid.jpg","studio":"Modern Life","genre":"Thriller","title":"Ten Dead Men","releaseDate":1209168000000,"language":"en","type":"Movie","_key":"64062"} +{"label":"Ross Boyask","version":19,"id":"80217","lastModified":"1301902325000","name":"Ross Boyask","type":"Person","_key":"64063"} +{"label":"Brendan Carr","version":20,"id":"80218","lastModified":"1301902173000","name":"Brendan Carr","type":"Person","_key":"64064"} +{"label":"Repli-Kate","description":"A scientist and his sidekick accidentally clone a journalist and decide to turn the mistake into Repli-Kate, their idea of the perfect woman, who loves, beer, football, and frat parties. ","id":"16261","runtime":96,"imdbId":"tt0260320","version":148,"lastModified":"1302126490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23b\/4d9cfb805e73d6559800023b\/repli-kate-mid.jpg","studio":"Helkon Media AG","genre":"Comedy","title":"Repli-Kate","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"64065"} +{"label":"James Roday","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/aec\/4cf3d3355e73d62385000aec\/james-roday-profile.jpg","version":69,"id":"80219","lastModified":"1302126489000","name":"James Roday","type":"Person","_key":"64066"} +{"label":"Todd Robert Anderson","version":21,"id":"80220","lastModified":"1302126490000","name":"Todd Robert Anderson","type":"Person","_key":"64067"} +{"label":"Aimee Allen","version":21,"id":"80221","lastModified":"1302126490000","name":"Aimee Allen","type":"Person","_key":"64068"} +{"label":"Amandah Reyne","version":21,"id":"80222","lastModified":"1302126490000","name":"Amandah Reyne","type":"Person","_key":"64069"} +{"label":"Melissa Greenspan","version":21,"id":"80223","lastModified":"1302126490000","name":"Melissa Greenspan","type":"Person","_key":"64070"} +{"label":"Ned Brower","version":21,"id":"80224","lastModified":"1302126490000","name":"Ned Brower","type":"Person","_key":"64071"} +{"label":"Kent Davis","version":21,"id":"80225","lastModified":"1302126490000","name":"Kent Davis","type":"Person","_key":"64072"} +{"label":"Frank Longo","version":21,"id":"80226","lastModified":"1302126490000","name":"Frank Longo","type":"Person","_key":"64073"} +{"label":"Il Commisario Lo Gatto","description":"Dopo essere stato trasferito nella remota isola di Favignana dopo aver accusato Papa Giovanni Paolo II di omicido, l'incorruttibile commissario Lo Gatto, aiutato dal fido agente Gridelli, dovra' far luce sulla misteriosa scomparsa di Wilma Cerulli.","id":"16262","runtime":0,"imdbId":"tt0092770","version":41,"lastModified":"1301907383000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3a\/4bc94aff017a3c57fe020f3a\/il-commisario-lo-gatto-mid.jpg","title":"Il Commisario Lo Gatto","releaseDate":536457600000,"language":"en","type":"Movie","_key":"64074"} +{"label":"Lino Banfi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/266\/4bf1a4d3017a3c3217000266\/lino-banfi-profile.jpg","biography":"Lino Banfi, pseudonimo di Pasquale Zagaria (Andria, 11 luglio 1936), \u00e8 un attore italiano e ambasciatore dell'UNICEF.\nReso popolare per la sua parlata con forte accento barese, \u00e8 tra gli attori italiani pi\u00f9 caratteristici e distintivi del dopoguerra.\nLino Banfi, insieme a Lando Buzzanca, Renzo Montagnani, Mario Carotenuto, Carlo Giuffr\u00e8, Gianfranco D'Angelo, Aldo Maccione e Alvaro Vitali, rappresenta uno dei mostri sacri delle commedie erotiche degli anni settanta, che furono criticate a quel te","version":43,"birthday":"-1046134800000","id":"80230","birthplace":"Andria, Italy","lastModified":"1301901671000","name":"Lino Banfi","type":"Person","_key":"64075"} +{"label":"Maurizio Ferrini","version":21,"id":"80636","lastModified":"1301902361000","name":"Maurizio Ferrini","type":"Person","_key":"64076"} +{"label":"Dino Risi","version":40,"id":"57641","lastModified":"1301902052000","name":"Dino Risi","type":"Person","_key":"64077"} +{"label":"Girls Just Want to Have Fun","description":"Janey is new in town, and soon meets Lynne, who shares her passion for dancing in general, and \"Dance TV\" in particular. When a competition is announced to find a new Dance TV regular couple, Janey and Lynne are determined to audition. The only problem is that Janey's father doesn't approve of that kind of thing.","id":"16263","runtime":90,"imdbId":"tt0089208","version":120,"lastModified":"1301903551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4de\/4d4de1917b9aa13aba0094de\/girls-just-want-to-have-fun-mid.jpg","genre":"Comedy","title":"Girls Just Want to Have Fun","releaseDate":482112000000,"language":"en","tagline":"Getting into trouble is easy but getting out of it is all the fun!","type":"Movie","_key":"64078"} +{"label":"Badi","description":"A boy befriends an alien in this Turkish rip-off of E.T.","id":"16264","runtime":0,"imdbId":"tt0334917","version":34,"lastModified":"1301418404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f51\/4bc94b00017a3c57fe020f51\/badi-mid.jpg","title":"Badi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64079"} +{"label":"2012 Doomsday","description":"On December 21, 2012 four strangers on a journey of faith are drawn to an ancient temple in the heart of Mexico. For the Mayans it is the last recorded day. For NASA scientists it is a cataclysmic polar shift. For the rest of us, it is Doomsday.","id":"16266","runtime":92,"imdbId":"tt1132130","version":161,"lastModified":"1301902599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5f\/4bc94b01017a3c57fe020f5f\/2012-doomsday-mid.jpg","genre":"Action","title":"2012 Doomsday","releaseDate":1202774400000,"language":"en","type":"Movie","_key":"64080"} +{"label":"Ami Dolenz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/99d\/4d47814b5e73d6538500399d\/ami-dolenz-profile.jpg","version":30,"id":"41273","lastModified":"1301901346000","name":"Ami Dolenz","type":"Person","_key":"64081"} +{"label":"Danae Nason","version":16,"id":"95982","lastModified":"1301901608000","name":"Danae Nason","type":"Person","_key":"64082"} +{"label":"Joshua Lee","version":16,"id":"95983","lastModified":"1301902066000","name":"Joshua Lee","type":"Person","_key":"64083"} +{"label":"Sara Tomko","version":18,"id":"95984","lastModified":"1301901863000","name":"Sara Tomko","type":"Person","_key":"64084"} +{"label":"Caroline Amiguet","version":16,"id":"95985","lastModified":"1301902239000","name":"Caroline Amiguet","type":"Person","_key":"64085"} +{"label":"Shirley Raun","version":16,"id":"95986","lastModified":"1301901863000","name":"Shirley Raun","type":"Person","_key":"64086"} +{"label":"Louis Graham","version":16,"id":"95987","lastModified":"1301901863000","name":"Louis Graham","type":"Person","_key":"64087"} +{"label":"Jonathan Nation","version":19,"id":"95988","lastModified":"1301901608000","name":"Jonathan Nation","type":"Person","_key":"64088"} +{"label":"Mark Hengst","version":24,"id":"87597","lastModified":"1301901608000","name":"Mark Hengst","type":"Person","_key":"64089"} +{"label":"Gilberto Canto","version":18,"id":"95989","lastModified":"1301901673000","name":"Gilberto Canto","type":"Person","_key":"64090"} +{"label":"Omar Mora","version":16,"id":"95990","lastModified":"1301901863000","name":"Omar Mora","type":"Person","_key":"64091"} +{"label":"Wil Omar Sanchez","version":16,"id":"95991","lastModified":"1301901863000","name":"Wil Omar Sanchez","type":"Person","_key":"64092"} +{"label":"Jason S. Gray","version":18,"id":"91335","lastModified":"1301902066000","name":"Jason S. Gray","type":"Person","_key":"64093"} +{"label":"War of the Worlds 2","description":"Two years after the Martian invasion, George Herbert's worst fears are realized: The Aliens have returned. As a second wave of Martian walkers lay waste to what's left of Earth, an alliance of military forces prepares a daring attack on the Red Planet itself. Once again, the future of mankind hangs in the balance.","id":"16268","runtime":90,"imdbId":"tt1183733","version":85,"lastModified":"1302108909000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f64\/4bc94b01017a3c57fe020f64\/war-of-the-worlds-2-mid.jpg","studio":"Anthill Productions","genre":"Action","title":"War of the Worlds 2","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"64094"} +{"label":"Zack Beseda","version":18,"id":"93190","lastModified":"1301901493000","name":"Zack Beseda","type":"Person","_key":"64095"} +{"label":"God of Gamblers","description":"Chow Yun-Fat plays Ko Chun, an extremely talented and well known gambler. On the eve of a big confrontation with a famous Singaporean gambler, Ko walks into a trap set by Knife, an avid but a so-so gambler (Andy Lau), meant for an Indian servant. Struck on the head, Ko suffers from amnesia and regresses to a child-like state. Knife takes care of Ko and begins to exploit Ko's gambling talents.","id":"16269","runtime":126,"imdbId":"tt0097244","trailer":"http:\/\/www.youtube.com\/watch?v=6FlagebnYnc","version":72,"lastModified":"1301903236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e4\/4d1ae85f5e73d6084200b6e4\/du-shen-mid.jpg","studio":"Win's Movie Productions Ltd.","genre":"Action","title":"God of Gamblers","releaseDate":629596800000,"language":"en","type":"Movie","_key":"64096"} +{"label":"Fong Lung","version":11,"id":"224925","lastModified":"1301903984000","name":"Fong Lung","type":"Person","_key":"64097"} +{"label":"Career Opportunities","description":"Josie, the daughter of the town's wealthiest businessman, faces problems at home and wishes to leave town but is disoriented. Her decision is finalized after she falls asleep in a Target dressing room. She awakens to find herself locked in the store overnight with the janitor, Jim, the town \"no hoper\" and liar.","id":"16270","runtime":83,"imdbId":"tt0101545","version":122,"lastModified":"1301903877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7a\/4bc94b07017a3c57fe020f7a\/career-opportunities-mid.jpg","studio":"Hughes Entertainment","genre":"Comedy","title":"Career Opportunities","releaseDate":670204800000,"language":"en","tagline":"He took the job that no one wanted... and got the girl that everyone did.","type":"Movie","_key":"64098"} +{"label":"Kieran Mulroney","version":25,"id":"53806","lastModified":"1301902054000","name":"Kieran Mulroney","type":"Person","_key":"64099"} +{"label":"Reid Binion","version":16,"id":"136905","lastModified":"1301902481000","name":"Reid Binion","type":"Person","_key":"64100"} +{"label":"Marc Clement","version":17,"id":"136906","lastModified":"1301902533000","name":"Marc Clement","type":"Person","_key":"64101"} +{"label":"Andrew Winton","version":17,"id":"136907","lastModified":"1301902531000","name":"Andrew Winton","type":"Person","_key":"64102"} +{"label":"Bryan Gordon","version":21,"id":"122583","lastModified":"1301901988000","name":"Bryan Gordon","type":"Person","_key":"64103"} +{"label":"Massacre at Central High","description":"A high school transfer student, pushed to the edge by a trio of brutal bullies, resorts to murder to reclaim the school from oppression, and later turns against the students wanting to fill the vacuum of their oppressors.","id":"16271","runtime":87,"imdbId":"tt0074875","version":369,"lastModified":"1300980289000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7f\/4bc94b09017a3c57fe020f7f\/massacre-at-central-high-mid.jpg","title":"Massacre at Central High","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64104"} +{"label":"M\u00e4nnersache","description":"No overview found.","id":"16272","runtime":90,"imdbId":"tt1263757","homepage":"http:\/\/www.maennersache.film.de\/","version":42,"lastModified":"1301906546000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f94\/4bc94b0c017a3c57fe020f94\/mannersache-mid.jpg","studio":"Constantin Film Produktion GmbH","title":"M\u00e4nnersache","releaseDate":1237420800000,"language":"en","type":"Movie","_key":"64105"} +{"label":"Dieter Tappert","version":22,"id":"89715","lastModified":"1301902888000","name":"Dieter Tappert","type":"Person","_key":"64106"} +{"label":"Holiday","description":"Johnny Cose (Cary Grant), a freethinking financier, has finally found the girl of his dreams \u2014 Julia Seton (Doris Nolan), the spoiled daughter of a socially prominent millionaire \u2014 and she's agreed to marry him. \r\n\r\nBut when Johnny plans a holiday for the two to enjoy life while they are still young, his fianc\u00e9e has other plans & that is for Johnny to work in her father's bank!\r\n","id":"16274","runtime":96,"imdbId":"tt0030241","version":184,"lastModified":"1301905539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03b\/4c7850035e73d613d500003b\/holiday-mid.jpg","genre":"Comedy","title":"Holiday","releaseDate":-995587200000,"language":"en","type":"Movie","_key":"64107"} +{"label":"Doris Nolan","version":24,"id":"80234","lastModified":"1301902543000","name":"Doris Nolan","type":"Person","_key":"64108"} +{"label":"Henry Kolker","version":39,"id":"80236","lastModified":"1301901956000","name":"Henry Kolker","type":"Person","_key":"64109"} +{"label":"Binnie Barnes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2c\/4be49ba2017a3c35b4000c2c\/binnie-barnes-profile.jpg","version":33,"id":"80237","lastModified":"1301902034000","name":"Binnie Barnes","type":"Person","_key":"64110"} +{"label":"Dave Chappelle: Killin' Them Softly","description":"Dave Chappelle returns to D.C. and riffs on politics, police, race relations, drugs, Sesame Street and more.","id":"16275","runtime":57,"imdbId":"tt0251654","version":124,"lastModified":"1301905333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb7\/4bc94b0e017a3c57fe020fb7\/dave-chappelle-killin-them-softly-mid.jpg","genre":"Comedy","title":"Dave Chappelle: Killin' Them Softly","releaseDate":946684800000,"language":"en","type":"Movie","_key":"64111"} +{"label":"The Tiger Brigades","description":"No overview found.","id":"16276","runtime":125,"imdbId":"tt0462667","version":63,"lastModified":"1301905947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc9\/4bc94b10017a3c57fe020fc9\/les-brigades-du-tigre-mid.jpg","title":"The Tiger Brigades","releaseDate":1144972800000,"language":"en","type":"Movie","_key":"64112"} +{"label":"La Journ\u00e9e de la Jupe","description":"A troubled and emotionally fragile woman finds herself at the center of a firestorm, in this gut-wrenching psychological drama.","id":"16277","runtime":88,"imdbId":"tt1286809","homepage":"http:\/\/www.rezofilms.com\/distribution\/la-journee-de-la-jupe","version":67,"lastModified":"1301905467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fda\/4bc94b11017a3c57fe020fda\/la-journee-de-la-jupe-mid.jpg","genre":"Drama","title":"La Journ\u00e9e de la Jupe","releaseDate":1237939200000,"language":"en","type":"Movie","_key":"64113"} +{"label":"Jackie Berroyer","version":28,"id":"82288","lastModified":"1301901849000","name":"Jackie Berroyer","type":"Person","_key":"64114"} +{"label":"Jean-Paul Lilienfeld","version":23,"id":"82289","lastModified":"1301901863000","name":"Jean-Paul Lilienfeld","type":"Person","_key":"64115"} +{"label":"A Place To Be Loved","description":"No overview found.","id":"16278","runtime":88,"imdbId":"tt0107833","version":32,"lastModified":"1300980291000","title":"A Place To Be Loved","releaseDate":733881600000,"language":"en","type":"Movie","_key":"64116"} +{"label":"Linda Kelsey","version":20,"id":"80241","lastModified":"1301902500000","name":"Linda Kelsey","type":"Person","_key":"64117"} +{"label":"The Great Buck Howard","description":"When a law school dropout answers an advertisement to be a personal assistant he unknowingly signs on to work for a belligerent has-been magician struggling to resurrect his career. This leads to a journey across the country staging the comeback of a lifetime.","id":"16279","runtime":87,"imdbId":"tt0460810","trailer":"http:\/\/www.youtube.com\/watch?v=1627","homepage":"http:\/\/greatbuckhowardmovie.com\/","version":202,"lastModified":"1301906257000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe7\/4bc94b15017a3c57fe020fe7\/the-great-buck-howard-mid.jpg","studio":"Magnolia Pictures","genre":"Comedy","title":"The Great Buck Howard","releaseDate":1199145600000,"language":"en","tagline":"Greatness is a state of mind.","type":"Movie","_key":"64118"} +{"label":"Conan O'Brien","version":26,"id":"81200","lastModified":"1301902066000","name":"Conan O'Brien","type":"Person","_key":"64119"} +{"label":"Sean McGinly","version":28,"id":"81199","lastModified":"1301902239000","name":"Sean McGinly","type":"Person","_key":"64120"} +{"label":"13 Hours in a Warehouse","description":"As five underworld heavies settle in for an all night stay at an abandoned warehouse and former film studio, a series of bizarre and unsettling occurrences quickly lead them to believe they are not alone. It was supposed to be a simple night of babysitting a single hostage, but when a series of numbers began to appear on the walls things soon took a dark turn. Later, after the hostage escapes, the perplexed thugs not only learn that there is a rat in the ranks, but also discover the unsettling n","id":"16280","runtime":92,"imdbId":"tt1065060","version":145,"lastModified":"1301905638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff0\/4bc94b16017a3c57fe020ff0\/13-hours-in-a-warehouse-mid.jpg","genre":"Horror","title":"13 Hours in a Warehouse","releaseDate":1225152000000,"language":"en","type":"Movie","_key":"64121"} +{"label":"Dav Kaufman","version":17,"id":"133912","lastModified":"1301903029000","name":"Dav Kaufman","type":"Person","_key":"64122"} +{"label":"Creepshow","description":"Inspired by the E.C. comics of the 1950s, George A.Romero and Stephen King bring five tales of terror to the screen.","id":"16281","runtime":120,"imdbId":"tt0083767","trailer":"http:\/\/www.youtube.com\/watch?v=1819","version":182,"lastModified":"1301904069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffd\/4bc94b19017a3c57fe020ffd\/creepshow-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Creepshow","releaseDate":405907200000,"language":"en","type":"Movie","_key":"64123"} +{"label":"Saawariya","description":"Orphaned and homeless Ranbir Raj re-locates to a small town and orders a glass of milk in the RK Bar. He befriends a prostitute by the name of Gulabji, who invites him to spend the night with her, and when he refuses, she re-directs him to Lillian who rents out rooms. Ranbir meets with Lillian, who has been living alone for 37 years after her son, Vincent, left to join the army and did not return.","id":"16283","runtime":142,"imdbId":"tt0758053","homepage":"http:\/\/www.saawariyafilm.com\/","version":196,"lastModified":"1301905399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4bc94b1e017a3c57fe02101f\/saawariya-mid.jpg","studio":"SLB Films Pvt. Ltd.","genre":"Drama","title":"Saawariya","releaseDate":1194393600000,"language":"en","type":"Movie","_key":"64124"} +{"label":"Sonam Kapoor","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/116\/4c7909fb5e73d613d4000116\/sonam-kapoor-profile.jpg","version":25,"id":"85040","lastModified":"1301901715000","name":"Sonam Kapoor","type":"Person","_key":"64125"} +{"label":"Begum Para","version":20,"id":"130604","lastModified":"1301902421000","name":"Begum Para","type":"Person","_key":"64126"} +{"label":"Ice Cold In Alex","description":"A group of army personnel and nurses attempt a dangerous and arduous trek across the deserts of North Africa during the second world war. The leader of the team dreams of his ice cold beer when he reaches Alexandria","id":"16284","runtime":124,"imdbId":"tt0053935","version":40,"lastModified":"1301908531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4bc94b1f017a3c57fe02102d\/ice-cold-in-alex-mid.jpg","studio":"Associated British Picture Corporation","genre":"Drama","title":"Ice Cold In Alex","releaseDate":-363657600000,"language":"en","type":"Movie","_key":"64127"} +{"label":"The Blue Elephant","description":"No overview found.","id":"16285","runtime":0,"imdbId":"tt1288581","version":401,"lastModified":"1302024746000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4bc94b21017a3c57fe021042\/the-blue-elephant-mid.jpg","genre":"Animation","title":"The Blue Elephant","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64128"} +{"label":"Afro Ninja","description":"No overview found.","id":"16287","runtime":88,"imdbId":"tt1368855","version":414,"lastModified":"1301905969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/058\/4bc94b25017a3c57fe021058\/afro-ninja-destiny-mid.jpg","title":"Afro Ninja","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64129"} +{"label":"Mark Hicks","version":20,"id":"80242","lastModified":"1301902239000","name":"Mark Hicks","type":"Person","_key":"64130"} +{"label":"Creepshow 2","description":"EC Comics-inspired weirdness returns with three tales. In the first, a wooden statue of a Native American comes to life...to exact vengeance on the murderer of his elderly owners. In the second, four teens are stranded on a raft on a lake with a blob that is hungry. And in the third, a hit and run woman is terrorized by the hitchhiker she accidentally killed...or did she really kill him?","id":"16288","runtime":92,"imdbId":"tt0092796","version":171,"lastModified":"1301903520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4c1b63647b9aa1158100010c\/creepshow-2-mid.jpg","studio":"Laurel Entertainment","genre":"Horror","title":"Creepshow 2","releaseDate":546825600000,"language":"en","type":"Movie","_key":"64131"} +{"label":"Michael Gornick","version":39,"id":"15056","lastModified":"1301901670000","name":"Michael Gornick","type":"Person","_key":"64132"} +{"label":"Frank Salsedo","version":17,"id":"92903","lastModified":"1301902477000","name":"Frank Salsedo","type":"Person","_key":"64133"} +{"label":"Daniel Beer","version":17,"id":"107368","lastModified":"1301903071000","name":"Daniel Beer","type":"Person","_key":"64134"} +{"label":"Jeremy Green","version":16,"id":"107369","lastModified":"1301902647000","name":"Jeremy Green","type":"Person","_key":"64135"} +{"label":"Page Hannah","version":17,"id":"107370","lastModified":"1301902927000","name":"Page Hannah","type":"Person","_key":"64136"} +{"label":"David Beecroft","version":17,"id":"107371","lastModified":"1301902920000","name":"David Beecroft","type":"Person","_key":"64137"} +{"label":"Armin Only: The Next Level","description":"More than 12,000 clubbers packed Rotterdam's Ahoy Stadium for this epic set by DJ Armin van Buuren, in which the Dutch trance superstar electrified audiences for nine hours. Highlights from the unforgettable evening in November 2005 include many of Armin's own tracks -- including \"Zocalo,\" \"Hymne\" and \"Sail\" -- as well as beats by Arctic Quest, Inertia and others.","id":"16289","runtime":100,"imdbId":"tt0791064","version":68,"lastModified":"1301904940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/089\/4bc94b28017a3c57fe021089\/armin-only-the-next-level-mid.jpg","genre":"Musical","title":"Armin Only: The Next Level","releaseDate":1139184000000,"language":"en","type":"Movie","_key":"64138"} +{"label":"Jackass 3","description":"Jackass 3D is a 3-D film and the third movie of the Jackass series. It follows the same premise as the first two movies, as well as the TV series. It is a compilation of various pranks, stunts and skits. Before the movie begins, a brief introduction is made by Beavis and Butt-head explaining the 3D technology behind the movie. The intro features the cast lining up and then being attacked by various objects in slow-motion. The movie marks the 10th anniversary of the franchise, started in 2000.","id":"16290","runtime":94,"imdbId":"tt1116184","trailer":"http:\/\/www.youtube.com\/watch?v=fKwjU_pSSW4","version":377,"lastModified":"1301969866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4d5124047b9aa13ab4010134\/jackass-3-mid.jpg","studio":"MTV Films","genre":"Comedy","title":"Jackass 3","releaseDate":1287100800000,"language":"en","type":"Movie","_key":"64139"} +{"label":"Ryan Dunn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/652\/4d78c1a27b9aa157ba000652\/ryan-dunn-profile.jpg","version":24,"id":"136429","lastModified":"1301901673000","name":"Ryan Dunn","type":"Person","_key":"64140"} +{"label":"Ripple Effect","description":"Believing that bad karma is keeping him from realizing his dream, hip clothing designer Amer Atrash (Philippe Caland) attempts to orchestrate salvation -- with unexpected results -- in this indie drama. Pushed to the edge of financial disaster and facing marital woes, Atrash resolves to right a wrong he committed years earlier when his car accidentally struck Philip Blackman (Forest Whitaker), leaving him paralyzed.","id":"16294","runtime":83,"imdbId":"tt0479140","version":97,"lastModified":"1301908088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc94b28017a3c57fe021093\/ripple-effect-mid.jpg","genre":"Drama","title":"Ripple Effect","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"64141"} +{"label":"Higher Learning","description":"Malik (Omar Epps) is an African-American student attending on a track scholarship; academics are not his strong suit, and he goes in thinking that his athletic abilities will earn him a free ride through college. Fudge (Ice Cube), a \"professional student\" who has been at Columbus for six years so far, becomes friendly with Malik and challenges his views about race and politics in America.","id":"16295","runtime":127,"imdbId":"tt0113305","version":171,"lastModified":"1301903400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4bc94b2a017a3c57fe0210a0\/higher-learning-mid.jpg","genre":"Drama","title":"Higher Learning","releaseDate":788918400000,"language":"en","type":"Movie","_key":"64142"} +{"label":"Killer Klowns from Outer Space","description":"Aliens, who look like clowns, arrive on Earth to capture and harvest people in order to use them as sustenance.","id":"16296","runtime":88,"imdbId":"tt0095444","version":270,"lastModified":"1301902716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc94b2f017a3c57fe0210b2\/killer-klowns-from-outer-space-mid.jpg","studio":"Chiodo Brothers Productions","genre":"Comedy","title":"Killer Klowns from Outer Space","releaseDate":580694400000,"language":"en","tagline":"In space, no one can eat ice cream.","type":"Movie","_key":"64143"} +{"label":"John Allen Nelson","version":24,"id":"80246","lastModified":"1301901667000","name":"John Allen Nelson","type":"Person","_key":"64144"} +{"label":"Stephen Chiodo","version":29,"id":"80247","lastModified":"1301901608000","name":"Stephen Chiodo","type":"Person","_key":"64145"} +{"label":"With Honors","description":"Convinced he'll graduate with honors because of his thesis paper, a stuffy Harvard student finds his paper being held hostage by a homeless man, who might be the guy to school the young man in life.","id":"16297","runtime":103,"imdbId":"tt0111732","version":139,"lastModified":"1301417370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4bc94b30017a3c57fe0210bb\/with-honors-mid.jpg","genre":"Drama","title":"With Honors","releaseDate":767577600000,"language":"en","type":"Movie","_key":"64146"} +{"label":"The Stupids","description":"An incredibly dull-witted family unknowingly stumble upon an illegal weapons deal while on the trail of their \"stolen\" garbage. ","id":"16299","runtime":94,"imdbId":"tt0117768","version":92,"lastModified":"1301906940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c0\/4bc94b30017a3c57fe0210c0\/the-stupids-mid.jpg","genre":"Comedy","title":"The Stupids","releaseDate":841363200000,"language":"en","type":"Movie","_key":"64147"} +{"label":"Down to Earth","description":"After dying before his time, an aspiring comic gets a second shot at life... by being reincarnated as a wealthy but un-likable businessman.","id":"16300","runtime":87,"imdbId":"tt0231775","version":168,"lastModified":"1301904772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c9\/4bc94b30017a3c57fe0210c9\/down-to-earth-mid.jpg","studio":"3 Art Entertainment","genre":"Comedy","title":"Down to Earth","releaseDate":978307200000,"language":"en","type":"Movie","_key":"64148"} +{"label":"Bryetta Calloway","version":23,"id":"126650","lastModified":"1301902388000","name":"Bryetta Calloway","type":"Person","_key":"64149"} +{"label":"Martha Chaves","version":22,"id":"126651","lastModified":"1301902591000","name":"Martha Chaves","type":"Person","_key":"64150"} +{"label":"Brian Rhodes","version":22,"id":"126652","lastModified":"1301902591000","name":"Brian Rhodes","type":"Person","_key":"64151"} +{"label":"End of the Century: The Story of the Ramones","description":"The story of the punk rock band The Ramones.","id":"16301","runtime":110,"imdbId":"tt0368711","version":117,"lastModified":"1301904878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d2\/4bc94b31017a3c57fe0210d2\/end-of-the-century-the-story-of-the-ramones-mid.jpg","title":"End of the Century: The Story of the Ramones","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"64152"} +{"label":"Michael Gramaglia","version":21,"id":"80488","lastModified":"1301902527000","name":"Michael Gramaglia","type":"Person","_key":"64153"} +{"label":"Jim Fields","version":21,"id":"80489","lastModified":"1301902531000","name":"Jim Fields","type":"Person","_key":"64154"} +{"label":"Marky Ramone","version":26,"id":"80487","lastModified":"1301902143000","name":"Marky Ramone","type":"Person","_key":"64155"} +{"label":"Dee Dee Ramone","version":24,"id":"80490","lastModified":"1301902325000","name":"Dee Dee Ramone","type":"Person","_key":"64156"} +{"label":"Tommy Ramone","version":21,"id":"80491","lastModified":"1301902535000","name":"Tommy Ramone","type":"Person","_key":"64157"} +{"label":"Joey Ramone","version":24,"id":"80492","lastModified":"1301902325000","name":"Joey Ramone","type":"Person","_key":"64158"} +{"label":"Richie Ramone","version":21,"id":"80493","lastModified":"1301902381000","name":"Richie Ramone","type":"Person","_key":"64159"} +{"label":"Battle Royale","description":"In a nightmarish near future, school children in Japan are forced to compete in the ultimate reality show: a battle royale where the last one standing is the winner.","id":"16302","version":167,"lastModified":"1301904251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c8\/4d2e4fc97b9aa125f50000c8\/battle-royale-mid.jpg","studio":"Tohei","genre":"Action","title":"Battle Royale","language":"en","type":"Movie","_key":"64160"} +{"label":"The Loved One","description":"No overview found.","id":"16303","runtime":122,"imdbId":"tt0059410","version":110,"lastModified":"1301904139000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d7\/4bc94b32017a3c57fe0210d7\/the-loved-one-mid.jpg","studio":"Filmways Pictures","genre":"Comedy","title":"The Loved One","releaseDate":-133315200000,"language":"en","tagline":"The motion picture with something to offend everyone.","type":"Movie","_key":"64161"} +{"label":"Anjanette Comer","version":24,"id":"80253","lastModified":"1301902368000","name":"Anjanette Comer","type":"Person","_key":"64162"} +{"label":"Liberace","version":20,"id":"80256","lastModified":"1301902460000","name":"Liberace","type":"Person","_key":"64163"} +{"label":"Bernie Kopell","version":25,"id":"80257","lastModified":"1301902500000","name":"Bernie Kopell","type":"Person","_key":"64164"} +{"label":"Chick Hearn","version":20,"id":"80258","lastModified":"1301902460000","name":"Chick Hearn","type":"Person","_key":"64165"} +{"label":"Creepshow 3","description":"This follow-up to the George Romero\/Stephen King-launched anthology series features five new tales of horror and a wraparound. The main stories deal with alternative realities (\"Alice\"), possessed communication devices (\"The Radio\"), vampires and serial killers in lust (\"Call Girl\"), mad inventors (\"The Professor's Wife\"), and hauntings from beyond the grave (\"Haunted Dog\").","id":"16304","runtime":104,"imdbId":"tt0478125","version":193,"lastModified":"1301907261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e4\/4bc94b32017a3c57fe0210e4\/creepshow-3-mid.jpg","studio":"Creepy Film Productions","title":"Creepshow 3","releaseDate":1179187200000,"language":"en","type":"Movie","_key":"64166"} +{"label":"Sullivan's Travels","description":"Sullivan is a successful, spoiled, and naive director of fluff films, with a heart-o-gold, who decides he wants to make a film about the troubles of the downtrodden poor. Much to the chagrin of his producers, he sets off in tramp's clothing with a single dime in his pocket to experience poverty first-hand, and gets a reality shock...","id":"16305","runtime":90,"imdbId":"tt0034240","version":141,"lastModified":"1301905465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f1\/4bc94b33017a3c57fe0210f1\/sullivan-s-travels-mid.jpg","genre":"Comedy","title":"Sullivan's Travels","releaseDate":-915148800000,"language":"en","tagline":"The Creator of \"Lady Eve\" brings you his latest and most lilting laugh-fest!","type":"Movie","_key":"64167"} +{"label":"Byron Foulger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/193\/4c51830b7b9aa13d4f000193\/byron-foulger-profile.jpg","version":30,"birthday":"-2219965200000","id":"96722","birthplace":"Ogden, Utah, USA","lastModified":"1301902424000","name":"Byron Foulger","type":"Person","_key":"64168"} +{"label":"Margaret Hayes","version":28,"id":"81283","lastModified":"1301902540000","name":"Margaret Hayes","type":"Person","_key":"64169"} +{"label":"Victor Potel","version":19,"id":"99468","lastModified":"1301903025000","name":"Victor Potel","type":"Person","_key":"64170"} +{"label":"Fantastic Planet","description":"This film takes place on a faraway planet where giants rule, and tiny humanoids must fight for their lives and their equality. A surrealist story based on the Soviet occupation of Czechoslovakia.","id":"16306","runtime":72,"imdbId":"tt0070544","version":93,"lastModified":"1301904970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ff\/4bc94b34017a3c57fe0210ff\/la-planete-sauvage-mid.jpg","studio":"Argos Films S.A.","genre":"Animation","title":"Fantastic Planet","releaseDate":95644800000,"language":"en","type":"Movie","_key":"64171"} +{"label":"Ren\u00e9 Laloux","version":24,"id":"80260","lastModified":"1301901988000","name":"Ren\u00e9 Laloux","type":"Person","_key":"64172"} +{"label":"Jennifer Drake","version":17,"id":"131376","lastModified":"1301902787000","name":"Jennifer Drake","type":"Person","_key":"64173"} +{"label":"Eric Baugin","version":17,"id":"131377","lastModified":"1301902787000","name":"Eric Baugin","type":"Person","_key":"64174"} +{"label":"Sylvie Lenoir","version":18,"id":"131378","lastModified":"1301902716000","name":"Sylvie Lenoir","type":"Person","_key":"64175"} +{"label":"Mich\u00e8le Chahan","version":17,"id":"131379","lastModified":"1301902563000","name":"Mich\u00e8le Chahan","type":"Person","_key":"64176"} +{"label":"G\u00e9rard Hernandez","version":20,"id":"131380","lastModified":"1301902563000","name":"G\u00e9rard Hernandez","type":"Person","_key":"64177"} +{"label":"Claude Joseph","version":17,"id":"131381","lastModified":"1301902644000","name":"Claude Joseph","type":"Person","_key":"64178"} +{"label":"Jacques Ruisseau","version":18,"id":"131382","lastModified":"1301902716000","name":"Jacques Ruisseau","type":"Person","_key":"64179"} +{"label":"The Wicker Man","description":"Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.","id":"16307","runtime":100,"imdbId":"tt0070917","trailer":"http:\/\/www.youtube.com\/watch?v=tN4OFxx_gdg","version":121,"lastModified":"1302024535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4bc94b35017a3c57fe02110c\/the-wicker-man-mid.jpg","studio":"British Lion Film Corporation","genre":"Horror","title":"The Wicker Man","releaseDate":123552000000,"language":"en","tagline":"Flesh to touch... Flesh to burn! Don't keep the Wicker Man waiting!","type":"Movie","_key":"64180"} +{"label":"Robin Hardy","version":21,"id":"80261","lastModified":"1301901780000","name":"Robin Hardy","type":"Person","_key":"64181"} +{"label":"Ingrid Pitt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/102\/4c76687d7b9aa16a09000102\/ingrid-pitt-profile.jpg","biography":"<P>Best known as Hammer Films most seductive female vampire of the early 1970s, the Polish born Pitt possessed dark, alluring features and a sexy figure that made her just right for Gothic horror! Ingrid Pitt (born Ingoushka Petrov) survived WWII and became a well known actress on the East Berlin stage, however she didn't appear on screen until well into her twenties. She appeared in several minor roles <\/P>","version":37,"id":"83739","lastModified":"1301901604000","name":"Ingrid Pitt","type":"Person","_key":"64182"} +{"label":"Lindsay Kemp","version":21,"id":"119942","lastModified":"1301902532000","name":"Lindsay Kemp","type":"Person","_key":"64183"} +{"label":"Russell Waters","version":22,"id":"114837","lastModified":"1301902678000","name":"Russell Waters","type":"Person","_key":"64184"} +{"label":"Mobile Suit Gundam F91","description":"The story of Gundam F91 revolves around teenage space colonist Seabook Arno, his girlfriend Cecily Fairchild, and the efforts of the Crossbone Vanguard militia, led by Cecily's grandfather Meitzer Ronah, to establish an aristocracy known as \"Cosmo Babylonia\". The civilian Seabook is forced by circumstance to pilot the F91 Gundam, coincidentally designed in part by his mother Dr. Monica Arno.","id":"16308","runtime":115,"imdbId":"tt0159568","version":61,"lastModified":"1301906020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/115\/4bc94b35017a3c57fe021115\/mobile-suit-gundam-f91-mid.jpg","studio":"Sunrise","genre":"Animation","title":"Mobile Suit Gundam F91","releaseDate":1101168000000,"language":"en","type":"Movie","_key":"64185"} +{"label":"Monster","description":"Monster is an Asylum a knockoff of Cloverfield. Two wanna-be documentary filmmakers (both ladies), find themselves trapped in a monster plagued Toyko. Oh yeah, the year is 2003.","id":"16309","runtime":86,"imdbId":"tt1148277","version":135,"lastModified":"1301905043000","studio":"The Global Asylum","genre":"Action","title":"Monster","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"64186"} +{"label":"Erik Estenberg","version":19,"id":"87448","lastModified":"1301902987000","name":"Erik Estenberg","type":"Person","_key":"64187"} +{"label":"Sarah Lynch","version":19,"id":"87451","lastModified":"1301902987000","name":"Sarah Lynch","type":"Person","_key":"64188"} +{"label":"Erin Evans","version":17,"id":"87452","lastModified":"1301902987000","name":"Erin Evans","type":"Person","_key":"64189"} +{"label":"Justin L. Jones","version":19,"id":"87453","lastModified":"1301902987000","name":"Justin L. Jones","type":"Person","_key":"64190"} +{"label":"The Hard Word","description":"Three fraternal bank robbers languishing in jail, discover a profitable (if not dodgy) way to spend their time. Crime can most certainly pay, if you \"know wot I mean?\" However when sex and greed rear-up between the good crims and the bad cops, the consequences are both bizarre and fatal. ","id":"16311","runtime":102,"imdbId":"tt0280490","trailer":"http:\/\/www.youtube.com\/watch?v=ncOV7QTFHqo","version":198,"lastModified":"1301902846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f4\/4d0e55887b9aa102540028f4\/the-hard-word-mid.jpg","studio":"Wildheart Films","genre":"Action","title":"The Hard Word","releaseDate":1022716800000,"language":"en","tagline":"In a word, they're gone","type":"Movie","_key":"64191"} +{"label":"Damien Richardson","version":22,"id":"80264","lastModified":"1301902066000","name":"Damien Richardson","type":"Person","_key":"64192"} +{"label":"Rhondda Findleton","version":21,"id":"80265","lastModified":"1301902460000","name":"Rhondda Findleton","type":"Person","_key":"64193"} +{"label":"Kate Atkinson","version":22,"id":"80266","lastModified":"1301902460000","name":"Kate Atkinson","type":"Person","_key":"64194"} +{"label":"Paul Sonkkila","version":25,"id":"80267","lastModified":"1301902513000","name":"Paul Sonkkila","type":"Person","_key":"64195"} +{"label":"Dorian Nkono","version":21,"id":"80268","lastModified":"1301902460000","name":"Dorian Nkono","type":"Person","_key":"64196"} +{"label":"Stephen Whittaker","version":21,"id":"80269","lastModified":"1301902460000","name":"Stephen Whittaker","type":"Person","_key":"64197"} +{"label":"Don Bridges","version":21,"id":"80270","lastModified":"1301902460000","name":"Don Bridges","type":"Person","_key":"64198"} +{"label":"Doug Bowles","version":21,"id":"80271","lastModified":"1301902460000","name":"Doug Bowles","type":"Person","_key":"64199"} +{"label":"Greg Fleet","version":21,"id":"80272","lastModified":"1301902460000","name":"Greg Fleet","type":"Person","_key":"64200"} +{"label":"Scott Roberts","version":21,"id":"80273","lastModified":"1301901863000","name":"Scott Roberts","type":"Person","_key":"64201"} +{"label":"Mercy Mission: The Rescue of Flight 771","description":"No overview found.","id":"16312","runtime":95,"imdbId":"tt0107556","version":53,"lastModified":"1301905699000","studio":"Anasazi Productions","genre":"Drama","title":"Mercy Mission: The Rescue of Flight 771","releaseDate":755740800000,"language":"en","type":"Movie","_key":"64202"} +{"label":"Rebecca Rigg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/340\/4bf9e6a6017a3c702f000340\/rebecca-rigg-profile.jpg","version":32,"id":"80278","lastModified":"1301901493000","name":"Rebecca Rigg","type":"Person","_key":"64203"} +{"label":"Alan Fletcher","version":20,"id":"80279","lastModified":"1301902357000","name":"Alan Fletcher","type":"Person","_key":"64204"} +{"label":"Coming Soon","description":"What kind of scenes in a horror film scares you the most? When a ghost appears totally unexpectedly? When the main character does not see the ghost sneaking up behind him? When at the very end you find out that the main character was actually a ghost all along? But none of this compares to the feeling of arriving home alone and suddenly being stuck by a feeling of deja-vu.","id":"16313","runtime":95,"imdbId":"tt1307057","homepage":"http:\/\/www.comingsoonmovie-th.com\/","version":77,"lastModified":"1300980298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4bc94b3a017a3c57fe02112b\/16313-mid.jpg","studio":"GMM Tai Hub (GTH)","genre":"Horror","title":"Coming Soon","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"64205"} +{"label":"Sopon Sukdapisit","version":18,"id":"111481","lastModified":"1301902987000","name":"Sopon Sukdapisit","type":"Person","_key":"64206"} +{"label":"Chantavit Dhanasevi","version":19,"id":"111482","lastModified":"1301902503000","name":"Chantavit Dhanasevi","type":"Person","_key":"64207"} +{"label":"3 Ninjas","description":"Each year, three brothers Samuel, Jeffrey and Michael Douglas visits their Japanese grandfather, Mori Shintaro whom the boys affectionately refer to as Grandpa, for the summer. Mori is a highly skilled in the fields of Martial arts and Ninjutsu, and for years he has trained the boys in his techniques. After an organized crime ring proves to be too much for the FBI, it's time for the 3 brother NINJAS! To use their martial arts skills, they team up to battle the crime ring and outwit some very per","id":"16314","runtime":84,"imdbId":"tt0103596","version":266,"lastModified":"1302024453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bc94b3a017a3c57fe021138\/3-ninjas-mid.jpg","genre":"Adventure","title":"3 Ninjas","releaseDate":748137600000,"language":"en","tagline":"Crosses Teenage Mutant Ninja Turtles and Home Alone!","type":"Movie","_key":"64208"} +{"label":"Michael Treanor","version":23,"id":"80280","lastModified":"1301902386000","name":"Michael Treanor","type":"Person","_key":"64209"} +{"label":"Chad Power","version":23,"id":"80281","lastModified":"1301902392000","name":"Chad Power","type":"Person","_key":"64210"} +{"label":"Rand Kingsley","version":21,"id":"80282","lastModified":"1301902392000","name":"Rand Kingsley","type":"Person","_key":"64211"} +{"label":"Alan McRae","version":21,"id":"80283","lastModified":"1301902546000","name":"Alan McRae","type":"Person","_key":"64212"} +{"label":"Margarita Franco","version":21,"id":"80284","lastModified":"1301902392000","name":"Margarita Franco","type":"Person","_key":"64213"} +{"label":"Kate Sargeant","version":21,"id":"80285","lastModified":"1301902392000","name":"Kate Sargeant","type":"Person","_key":"64214"} +{"label":"Campfire Tales","description":"Anthology of famous, scary urban legends done with a modern twist.","id":"16315","runtime":88,"imdbId":"tt0115813","version":174,"lastModified":"1301906055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/142\/4bc94b3a017a3c57fe021142\/campfire-tales-mid.jpg","studio":"Campfire LLC","genre":"Horror","title":"Campfire Tales","releaseDate":863740800000,"language":"en","type":"Movie","_key":"64215"} +{"label":"Matt Cooper","version":29,"id":"72622","lastModified":"1301901475000","name":"Matt Cooper","type":"Person","_key":"64216"} +{"label":"Martin Kunert","version":23,"id":"80286","lastModified":"1301901863000","name":"Martin Kunert","type":"Person","_key":"64217"} +{"label":"David Semel","version":18,"id":"17272","lastModified":"1301901608000","name":"David Semel","type":"Person","_key":"64218"} +{"label":"Jay R. Ferguson","version":20,"id":"80289","lastModified":"1301901718000","name":"Jay R. Ferguson","type":"Person","_key":"64219"} +{"label":"Kim Murphy","version":20,"id":"42059","lastModified":"1301901863000","name":"Kim Murphy","type":"Person","_key":"64220"} +{"label":"Alex McKenna","version":20,"id":"80290","lastModified":"1301902460000","name":"Alex McKenna","type":"Person","_key":"64221"} +{"label":"Devon Odessa","version":20,"id":"54456","lastModified":"1301902066000","name":"Devon Odessa","type":"Person","_key":"64222"} +{"label":"Jonathan Fuller","version":29,"id":"80291","lastModified":"1301902510000","name":"Jonathan Fuller","type":"Person","_key":"64223"} +{"label":"Glenn Quinn","version":23,"id":"80292","lastModified":"1301901863000","name":"Glenn Quinn","type":"Person","_key":"64224"} +{"label":"Rick Lawrence","version":21,"id":"80293","lastModified":"1301902524000","name":"Rick Lawrence","type":"Person","_key":"64225"} +{"label":"Stewart J. Zully","version":20,"id":"80294","lastModified":"1301902460000","name":"Stewart J. Zully","type":"Person","_key":"64226"} +{"label":"Paul Salamoff","version":23,"id":"80296","lastModified":"1301902066000","name":"Paul Salamoff","type":"Person","_key":"64227"} +{"label":"Bill Zahn","version":20,"id":"80297","lastModified":"1301902460000","name":"Bill Zahn","type":"Person","_key":"64228"} +{"label":"Gary Jensen","version":20,"id":"80298","lastModified":"1301902460000","name":"Gary Jensen","type":"Person","_key":"64229"} +{"label":"Ben Jensen","version":20,"id":"80299","lastModified":"1301902460000","name":"Ben Jensen","type":"Person","_key":"64230"} +{"label":"Suzanne Goddard-Smythe","version":20,"id":"80300","lastModified":"1301902460000","name":"Suzanne Goddard-Smythe","type":"Person","_key":"64231"} +{"label":"Otin","version":20,"id":"80302","lastModified":"1301902460000","name":"Otin","type":"Person","_key":"64232"} +{"label":"Denny Arnold","version":20,"id":"80303","lastModified":"1301902460000","name":"Denny Arnold","type":"Person","_key":"64233"} +{"label":"Meleva Barbula","version":20,"id":"80304","lastModified":"1301902460000","name":"Meleva Barbula","type":"Person","_key":"64234"} +{"label":"David Cooper","version":23,"id":"72621","lastModified":"1301902076000","name":"David Cooper","type":"Person","_key":"64235"} +{"label":"Eric Fleeks","version":20,"id":"80305","lastModified":"1301902460000","name":"Eric Fleeks","type":"Person","_key":"64236"} +{"label":"Mike Terner","version":20,"id":"80306","lastModified":"1301902460000","name":"Mike Terner","type":"Person","_key":"64237"} +{"label":"Larry Weinberg","version":25,"id":"72623","lastModified":"1301901872000","name":"Larry Weinberg","type":"Person","_key":"64238"} +{"label":"Sex is Zero","description":"Raunchy comedy\/drama starring pop idol Lim Chang-jung (see JAKARTA) as a hapless college schlub who falls for Miss Popularity, who conveniently happens to be dating the biggest prick on campus and is therefore blind to Lim's hopeless overtures until she gets knocked up and beaten silly by her embarrassed mother.\n\nOften feels like an idealized male-centric filmization of the director's unrequited c","id":"16318","runtime":96,"imdbId":"tt0341555","version":100,"lastModified":"1301906338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14b\/4bc94b3b017a3c57fe02114b\/16318-mid.jpg","studio":"Doosaboo Film","genre":"Comedy","title":"Sex is Zero","releaseDate":1039651200000,"language":"en","type":"Movie","_key":"64239"} +{"label":"Je-gyun Yun","version":22,"id":"87537","lastModified":"1301902325000","name":"Je-gyun Yun","type":"Person","_key":"64240"} +{"label":"Chang Jung Lim","version":24,"id":"87540","lastModified":"1301902332000","name":"Chang Jung Lim","type":"Person","_key":"64241"} +{"label":"Ji-won Ha","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f9\/4d3915127b9aa1614b0006f9\/ji-won-ha-profile.jpg","version":39,"id":"83220","lastModified":"1301902167000","name":"Ji-won Ha","type":"Person","_key":"64242"} +{"label":"Chae-yeong Yu","version":20,"id":"87541","lastModified":"1301902506000","name":"Chae-yeong Yu","type":"Person","_key":"64243"} +{"label":"Jae-yeong Jin","version":19,"id":"87542","lastModified":"1301902503000","name":"Jae-yeong Jin","type":"Person","_key":"64244"} +{"label":"Ti\u00ebsto in Concert 2","description":"Once again, Ti\u00ebsto has left his mark on the history of dance music when he returns with a new installment of Ti\u00ebsto In Concert. This time he has outdone himself by doing 2 shows in Arnhem, Holland (October 29th and 30th, 2004) and a show in Hasselt, Belgium (November 6th, 2004), sharing his music and vision with over 70,000 fans!","id":"16319","runtime":184,"imdbId":"tt0914822","version":95,"lastModified":"1301907918000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/154\/4bc94b3b017a3c57fe021154\/tiesto-in-concert-2-mid.jpg","studio":"Black Hole Recordings","genre":"Musical","title":"Ti\u00ebsto in Concert 2","releaseDate":1108425600000,"language":"en","type":"Movie","_key":"64245"} +{"label":"Serenity","description":"When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything - or anyone - to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But, the greatest danger of all may be on their ship. ","id":"16320","runtime":119,"imdbId":"tt0379786","trailer":"http:\/\/www.youtube.com\/watch?v=JY3u7bB7dZk","version":422,"lastModified":"1301900894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17f\/4bc94b42017a3c57fe02117f\/serenity-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Serenity","releaseDate":1124928000000,"language":"en","tagline":"Can't stop the signal.","type":"Movie","_key":"64246"} +{"label":"Morena Baccarin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24c\/4bdf285c017a3c35c100024c\/morena-baccarin-profile.jpg","biography":"<SPAN lang=EN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-ansi-language: EN\"><FONT size=3>Morena Baccarin was born in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Rio de Janeiro<\/st1:City>, <st1:country-region w:st=\"on\">Brazil<\/st1:country-region><\/st1:place> on June 2, 1979. When she was 7, Baccarin moved with her family to <st1:place w:st=\"on\"><st1:City w:st=\"on\">Greenwich Village<\/st1:City>, <st1:State w:st=\"on\">New York","version":51,"id":"54882","lastModified":"1302128942000","name":"Morena Baccarin","type":"Person","_key":"64247"} +{"label":"Jewel Staite","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/249\/4bdf2884017a3c35b9000249\/jewel-staite-profile.jpg","version":57,"birthday":"391816800000","id":"72092","birthplace":"White Rock, BC, Kanada","lastModified":"1301901512000","name":"Jewel Staite","type":"Person","_key":"64248"} +{"label":"Sean Maher","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/284\/4bdf28d8017a3c35bd000284\/sean-maher-profile.jpg","version":43,"id":"55148","lastModified":"1301901996000","name":"Sean Maher","type":"Person","_key":"64249"} +{"label":"Summer Glau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c0\/4bdf28a0017a3c35b40002c0\/summer-glau-profile.jpg","version":54,"birthday":"364773600000","id":"54881","birthplace":"San Antonio, Texas, USA","lastModified":"1301901173000","name":"Summer Glau","type":"Person","_key":"64250"} +{"label":"Yan Feldman","version":25,"id":"80426","lastModified":"1301901640000","name":"Yan Feldman","type":"Person","_key":"64251"} +{"label":"Rafael Feldman","version":25,"id":"80427","lastModified":"1301901345000","name":"Rafael Feldman","type":"Person","_key":"64252"} +{"label":"Tamara Taylor","version":28,"id":"39464","lastModified":"1301901361000","name":"Tamara Taylor","type":"Person","_key":"64253"} +{"label":"Hunter Ansley Wryn","version":26,"id":"80428","lastModified":"1301901673000","name":"Hunter Ansley Wryn","type":"Person","_key":"64254"} +{"label":"Logan O'Brien","version":25,"id":"80429","lastModified":"1301901345000","name":"Logan O'Brien","type":"Person","_key":"64255"} +{"label":"Erik Erotas","version":26,"id":"80430","lastModified":"1301901362000","name":"Erik Erotas","type":"Person","_key":"64256"} +{"label":"Demetra Raven","version":25,"id":"80431","lastModified":"1301901345000","name":"Demetra Raven","type":"Person","_key":"64257"} +{"label":"Jessica Huang","version":25,"id":"80432","lastModified":"1301901345000","name":"Jessica Huang","type":"Person","_key":"64258"} +{"label":"Marley McClean","version":25,"id":"80433","lastModified":"1301901345000","name":"Marley McClean","type":"Person","_key":"64259"} +{"label":"Scott Kinworthy","version":25,"id":"80434","lastModified":"1301901640000","name":"Scott Kinworthy","type":"Person","_key":"64260"} +{"label":"Erik Weiner","version":25,"id":"80435","lastModified":"1301901640000","name":"Erik Weiner","type":"Person","_key":"64261"} +{"label":"Conor O'Brien","version":25,"id":"80436","lastModified":"1301901345000","name":"Conor O'Brien","type":"Person","_key":"64262"} +{"label":"Peter James Smith","version":25,"id":"80437","lastModified":"1301901640000","name":"Peter James Smith","type":"Person","_key":"64263"} +{"label":"Weston Nathanson","version":25,"id":"80438","lastModified":"1301901640000","name":"Weston Nathanson","type":"Person","_key":"64264"} +{"label":"Carrie 'CeCe' Cline","version":25,"id":"80439","lastModified":"1301901345000","name":"Carrie 'CeCe' Cline","type":"Person","_key":"64265"} +{"label":"Chuck O'Neil","version":25,"id":"80440","lastModified":"1301901345000","name":"Chuck O'Neil","type":"Person","_key":"64266"} +{"label":"Amy Wieczorek","version":25,"id":"80441","lastModified":"1301901640000","name":"Amy Wieczorek","type":"Person","_key":"64267"} +{"label":"Tristan Jarred","version":25,"id":"80442","lastModified":"1301901640000","name":"Tristan Jarred","type":"Person","_key":"64268"} +{"label":"Elaine Mani Lee","version":23,"id":"80443","lastModified":"1301901345000","name":"Elaine Mani Lee","type":"Person","_key":"64269"} +{"label":"Brian O'Hare","version":25,"id":"80444","lastModified":"1301901345000","name":"Brian O'Hare","type":"Person","_key":"64270"} +{"label":"Ryan Tasz","version":25,"id":"80445","lastModified":"1301901640000","name":"Ryan Tasz","type":"Person","_key":"64271"} +{"label":"Colin Patrick Lynch","version":28,"id":"56459","lastModified":"1301901312000","name":"Colin Patrick Lynch","type":"Person","_key":"64272"} +{"label":"Terrell Tilford","version":25,"id":"80446","lastModified":"1301901640000","name":"Terrell Tilford","type":"Person","_key":"64273"} +{"label":"Joshua Michael Kwiat","version":25,"id":"80447","lastModified":"1301901394000","name":"Joshua Michael Kwiat","type":"Person","_key":"64274"} +{"label":"Antonio Rufino","version":25,"id":"80448","lastModified":"1301901312000","name":"Antonio Rufino","type":"Person","_key":"64275"} +{"label":"Linda Wang","version":25,"id":"43470","lastModified":"1301901282000","name":"Linda Wang","type":"Person","_key":"64276"} +{"label":"Mark Winn","version":25,"id":"80449","lastModified":"1301901394000","name":"Mark Winn","type":"Person","_key":"64277"} +{"label":"The legend of Zu","description":"King Sky (Ekin Cheng), the sole disciple of the Kun Lun Sect, falls in love with his master Dawn (Cecilia Cheung). Dawn is killed when Insomnia destroys the Kin Lun Mountain. King Sky waits for two hundred years and meets Enigma (Cecilia Cheung), who is the reincarnation of Dawn, and in love with her again. However, Insomnia's Blood Clouds is ready to destroy Zu...","id":"16321","runtime":104,"imdbId":"tt0286098","version":172,"lastModified":"1301904032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4bdd46aa017a3c20ca00017e\/the-legend-of-zu-mid.jpg","studio":"China Film Co-Production Corporation","genre":"Fantasy","title":"The legend of Zu","releaseDate":997315200000,"language":"en","tagline":"Surrender Your Illusion , Fight For Your Destiny","type":"Movie","_key":"64278"} +{"label":"Patrick Tam","version":32,"id":"80374","lastModified":"1301947477000","name":"Patrick Tam","type":"Person","_key":"64279"} +{"label":"Jacky Wu","version":28,"id":"107345","lastModified":"1301902203000","name":"Jacky Wu","type":"Person","_key":"64280"} +{"label":"Lan Shun","version":18,"id":"117253","lastModified":"1301903067000","name":"Lan Shun","type":"Person","_key":"64281"} +{"label":"Sea Monsters: A Prehistoric Adventure","description":"Journey 80 million years back in time to an age when mighty dinosaurs dominated the land - and an equally astonishing assortment of ferocious creatures swam, hunted, and fought for survival beneath the vast, mysterious prehistoric seas.","id":"16322","runtime":40,"imdbId":"tt1027743","version":98,"lastModified":"1301906841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a0\/4bc94b47017a3c57fe0211a0\/sea-monsters-a-prehistoric-adventure-mid.jpg","genre":"Documentary","title":"Sea Monsters: A Prehistoric Adventure","releaseDate":1214265600000,"language":"en","type":"Movie","_key":"64282"} +{"label":"The Rose","description":"The story of the tragic life of a self destructive female rock star, modeled after Janis Joplin.","id":"16323","runtime":125,"imdbId":"tt0079826","version":89,"lastModified":"1301904715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a5\/4bc94b47017a3c57fe0211a5\/the-rose-mid.jpg","genre":"Drama","title":"The Rose","releaseDate":310780800000,"language":"en","type":"Movie","_key":"64283"} +{"label":"Fatso","description":"The 30-year-old virgin.","id":"16324","runtime":91,"imdbId":"tt1145446","version":60,"lastModified":"1301908307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ba\/4bc94b49017a3c57fe0211ba\/fatso-mid.jpg","genre":"Comedy","title":"Fatso","releaseDate":1224806400000,"language":"en","type":"Movie","_key":"64284"} +{"label":"Echelon Conspiracy","description":"Mysterious cell phone messages promise a young American engineer untold wealth - then make him the target of a deadly international plot. Dangerous security operatives chase the engineer across the globe, while a powerful government official pursues a mysterious agenda that threatens the stability of the entire world.","id":"16325","runtime":105,"imdbId":"tt1124039","trailer":"http:\/\/www.youtube.com\/watch?v=1074","homepage":"http:\/\/www.echelonconspiracy.com\/","version":234,"lastModified":"1301901665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/420\/4d480f435e73d65ee4001420\/echelon-conspiracy-mid.jpg","studio":"Zinc Entertainment Ltd","genre":"Action","title":"Echelon Conspiracy","releaseDate":1235692800000,"language":"en","type":"Movie","_key":"64285"} +{"label":"Steven Elder","version":28,"id":"80371","lastModified":"1301902053000","name":"Steven Elder","type":"Person","_key":"64286"} +{"label":"Sandra De Sousa","version":23,"id":"80373","lastModified":"1301902378000","name":"Sandra De Sousa","type":"Person","_key":"64287"} +{"label":"Dark Secrets: Inside Bohemian Grove","description":"A revealing look into Bohemian Grove and the practices that take place there.","id":"16326","runtime":123,"imdbId":"tt0379237","version":37,"lastModified":"1301906703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ea\/4bc94b51017a3c57fe0211ea\/dark-secrets-inside-bohemian-grove-mid.jpg","genre":"Documentary","title":"Dark Secrets: Inside Bohemian Grove","releaseDate":970358400000,"language":"en","type":"Movie","_key":"64288"} +{"label":"Hercules Returns","description":"When Brad gets fired from his job, he goes to reopen an old cinema, he enlists his frends to help him show the last film the cinema aired before it closed... Only they don't know, the film is in Italian. With everyone sitting ready they begin to dub the movie... on the fly!","id":"16327","runtime":82,"imdbId":"tt0107103","version":67,"lastModified":"1301906576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f3\/4bc94b51017a3c57fe0211f3\/hercules-returns-mid.jpg","studio":"Philm Productions","genre":"Comedy","title":"Hercules Returns","releaseDate":748137600000,"language":"en","type":"Movie","_key":"64289"} +{"label":"Johnny Got His Gun","description":"Joe, a young American soldier, is hit by a mortar shell on the last day of World War I. He lies in a hospital bed in a fate worse than death - a quadruple amputee who has lost his arms, legs, eyes, ears, mouth and nose. Unbeknown to his doctors, he remains conscious and able to think, thereby reliving his life through strange dreams and memories and unable to distinguish whether he is awake or dreaming. He remains frustrated by his situation, until one day when Joe discovers a unique way to comm","id":"16328","runtime":111,"imdbId":"tt0067277","version":129,"lastModified":"1301903508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fc\/4bc94b52017a3c57fe0211fc\/johnny-got-his-gun-mid.png","genre":"War","title":"Johnny Got His Gun","releaseDate":50112000000,"language":"en","tagline":"The most shattering experience you'll ever live.","type":"Movie","_key":"64290"} +{"label":"Dalton Trumbo","version":52,"birthday":"-2021677200000","id":"11993","birthplace":"Montrose, Colorado, USA","lastModified":"1301901500000","name":"Dalton Trumbo","type":"Person","_key":"64291"} +{"label":"The Jack Bull","description":"The Jack Bull tells the story of Myrl Redding, a Wyoming horse trader who clashes with Henry Ballard, a fellow rancher, after Ballard abuses two of Myrl's horses and their Crow Indian caretaker, Billy. When Judge Wilkins throws out Myrl's complaint, the war he wages to force Ballard to nurse the emaciated animals back to health escalates into a vigilante manhunt, murder and the possible defeat","id":"16331","runtime":116,"imdbId":"tt0171410","version":82,"lastModified":"1301908181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20f\/4bc94b54017a3c57fe02120f\/the-jack-bull-mid.jpg","studio":"HBO Films","genre":"Action","title":"The Jack Bull","releaseDate":924307200000,"language":"en","type":"Movie","_key":"64292"} +{"label":"Walled In","description":"A young woman who recently graduated from engineering school travels to a remote location to supervise the demolition of a mysterious building. She soon discovers the horrifying secrets of the building & its past inhabitants, many of whom were victims of a vicious murderer who entombed his prey alive within its walls. Now she must turn the tables on the killer before she becomes his latest victim.","id":"16335","runtime":92,"imdbId":"tt1104006","version":135,"lastModified":"1301903234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/218\/4bc94b54017a3c57fe021218\/walled-in-mid.jpg","genre":"Drama","title":"Walled In","releaseDate":1245369600000,"language":"en","type":"Movie","_key":"64293"} +{"label":"Gilles Paquet-Brenner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/893\/4d0cdae95e73d6370e000893\/gilles-paquet-brenner-profile.jpg","version":19,"id":"144519","lastModified":"1301901827000","name":"Gilles Paquet-Brenner","type":"Person","_key":"64294"} +{"label":"Ein Mann, ein Fjord!","description":"No overview found.","id":"16336","runtime":0,"imdbId":"tt1245474","version":31,"lastModified":"1301418963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21d\/4bc94b55017a3c57fe02121d\/ein-mann-ein-fjord-mid.jpg","title":"Ein Mann, ein Fjord!","releaseDate":1232496000000,"language":"en","type":"Movie","_key":"64295"} +{"label":"The Texas Chainsaw Massacre 2","description":"No overview found.","id":"16337","runtime":89,"imdbId":"tt0092076","version":228,"lastModified":"1301904907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/226\/4bc94b55017a3c57fe021226\/the-texas-chainsaw-massacre-2-mid.jpg","studio":"Cannon Films","genre":"Horror","title":"The Texas Chainsaw Massacre 2","releaseDate":525052800000,"language":"en","type":"Movie","_key":"64296"} +{"label":"Barney: Let's Go To The Farm","description":"Through the power of imagination, Barney takes BJ, Baby Bop, Rachel and Jackson to visit a real farm! Once there, they get a chance to see how crops are grown and how real animals are taken care of. They also meet Farmer Dooley and his wife, who involve them in a varety of fun activities - including preparing for a big barn dance.","id":"16339","runtime":50,"imdbId":"tt1002957","version":59,"lastModified":"1301908620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22f\/4bc94b56017a3c57fe02122f\/barney-let-s-go-to-the-farm-mid.jpg","studio":"HIT Entertainment","title":"Barney: Let's Go To The Farm","releaseDate":1109635200000,"language":"en","type":"Movie","_key":"64297"} +{"label":"Rugrats in Paris","description":"Rugrats in Paris: The Movie, also known as The Rugrats Movie 2: Rugrats in Paris and Rugrats in Paris: The Movie - Rugrats II, is 2000 American animated film, and the sequel to the 1998 film The Rugrats Movie that follows the continuing adventures of the Rugrats.[1]In the film, Chuckie Finster takes the lead character role as he searches to find a new mother. The film was produced by Paramount Pictures, Nickelodeon Movies, and Klasky Csupo. It was originally released in selected theaters on Nove","id":"16340","runtime":78,"imdbId":"tt0213203","version":163,"lastModified":"1301904192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/234\/4bc94b5a017a3c57fe021234\/rugrats-in-paris-the-movie-rugrats-ii-mid.jpg","studio":"Paramount Pictures","genre":"Animation","title":"Rugrats in Paris","releaseDate":968889600000,"language":"en","tagline":"Ooo la la! Paris will never be the same!","type":"Movie","_key":"64298"} +{"label":"Stig Bergqvist","version":24,"id":"80540","lastModified":"1301901841000","name":"Stig Bergqvist","type":"Person","_key":"64299"} +{"label":"Barney: Let's Go To The Fair","description":"It's time for a musical adventure! Barney, BJ and Baby Bop have a new dino friend RIFF who knows how to find music everywhere! When a little girl named Melanie dreams of playing her violin in a tlent show, Barney and his friend help her raise her dreams and they discover that some dreams are even bigger than they imagine. So come on everyone Let's Go To The Fair!","id":"16341","runtime":56,"version":54,"lastModified":"1301419322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23d\/4bc94b5b017a3c57fe02123d\/barney-let-s-go-to-the-fair-mid.jpg","studio":"HIT Entertainment","title":"Barney: Let's Go To The Fair","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64300"} +{"label":"The Children","description":"A relaxing Christmas vacation turns into a terrifying fight for survival as the children begin to turn on their parents","id":"16342","runtime":84,"imdbId":"tt1172571","trailer":"http:\/\/www.youtube.com\/watch?v=1075","homepage":"http:\/\/www.thechildrenmovie.com\/","version":217,"lastModified":"1301904395000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24e\/4bc94b5c017a3c57fe02124e\/the-children-mid.jpg","studio":"Vertigo Films","genre":"Horror","title":"The Children","releaseDate":1228435200000,"language":"en","tagline":"You brought them into this world. Now ... They will take you out.","type":"Movie","_key":"64301"} +{"label":"Rose","description":"No overview found.","id":"16343","runtime":93,"imdbId":"tt0461701","version":792,"lastModified":"1301656071000","title":"Rose","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64302"} +{"label":"Luck By Chance","description":"A struggling actor comes from Delhi to Bombay and enters the Hindi film industry. This gives the audience an in sight into what sometimes happens when making a movie and what happens in the industry and more when it involves the opposite sex and when you are working together. Zoya Akhtar, sister to Farhan Akhtar and daughter of Javed Akhtar, has done a superb job in her directorial debut in showin","id":"16344","runtime":155,"imdbId":"tt0886539","version":175,"lastModified":"1301904940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25c\/4bc94b5d017a3c57fe02125c\/luck-by-chance-mid.jpg","genre":"Comedy","title":"Luck By Chance","releaseDate":1238112000000,"language":"en","type":"Movie","_key":"64303"} +{"label":"Isha Sharvani","version":17,"id":"85667","lastModified":"1301902632000","name":"Isha Sharvani","type":"Person","_key":"64304"} +{"label":"Mohsin Akhtar","version":19,"id":"85678","lastModified":"1301902632000","name":"Mohsin Akhtar","type":"Person","_key":"64305"} +{"label":"Dia Mirza","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/98a\/4d21f4627b9aa1282300098a\/diya-mirza-profile.jpg","version":34,"id":"85669","lastModified":"1301901508000","name":"Dia Mirza","type":"Person","_key":"64306"} +{"label":"Mushtaq Sheikh","version":21,"id":"85671","lastModified":"1301902723000","name":"Mushtaq Sheikh","type":"Person","_key":"64307"} +{"label":"Billu","description":"A remake of the hugely successful Malayalam film Kadha Parayumbol, Billu (formerly \"Billu Barber\") is the story of a small town man, Billu (Irrfan Khan) who mentions to his family that he was once a friend of superstar; Sahir Khan (Shahrukh Khan). Sahir Khan happens to come to the village to shoot a film and Billu's children spread the rumor that their father is his childhood friend. The villagers","id":"16345","runtime":137,"imdbId":"tt1230448","homepage":"http:\/\/billu.redchillies.com\/","version":100,"lastModified":"1301905574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/010\/4c509ec05e73d632bd000010\/billu-mid.jpg","studio":"Red Chillies Entertainment","genre":"Comedy","title":"Billu","releaseDate":1234483200000,"language":"en","type":"Movie","_key":"64308"} +{"label":"Mitali Mayekar","version":18,"id":"123322","lastModified":"1301903044000","name":"Mitali Mayekar","type":"Person","_key":"64309"} +{"label":"Pratik Dalvi","version":20,"id":"123324","lastModified":"1301903071000","name":"Pratik Dalvi","type":"Person","_key":"64310"} +{"label":"Rishikesh Sharma","version":18,"id":"123325","lastModified":"1301903033000","name":"Rishikesh Sharma","type":"Person","_key":"64311"} +{"label":"Priyadarshan","version":29,"id":"80387","lastModified":"1301901825000","name":"Priyadarshan","type":"Person","_key":"64312"} +{"label":"Center Stage: Turn It Up","description":"All self-taught dancer Kate Parker has ever wanted to do was perform with the American Academy of Ballet. But when she doesnt make it after auditioning, she learns that it takes more than precision and perfection to succeed in the dance world.","id":"16346","runtime":95,"imdbId":"tt1145144","trailer":"http:\/\/www.youtube.com\/watch?v=1898","version":182,"lastModified":"1301902418000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27f\/4bc94b60017a3c57fe02127f\/center-stage-turn-it-up-mid.jpg","genre":"Drama","title":"Center Stage: Turn It Up","releaseDate":1225324800000,"language":"en","type":"Movie","_key":"64313"} +{"label":"Rachele Brooke Smith","version":25,"id":"83274","lastModified":"1301901101000","name":"Rachele Brooke Smith","type":"Person","_key":"64314"} +{"label":"Kenny Wormald","version":20,"id":"83276","lastModified":"1301902197000","name":"Kenny Wormald","type":"Person","_key":"64315"} +{"label":"Sarah Jayne Jensen","version":20,"id":"83277","lastModified":"1301902197000","name":"Sarah Jayne Jensen","type":"Person","_key":"64316"} +{"label":"Steven Jacobson","version":20,"id":"83275","lastModified":"1301902172000","name":"Steven Jacobson","type":"Person","_key":"64317"} +{"label":"Auntie Mame","description":"An orphan goes to live with his free-spirited aunt. Conflict ensues when the executor of his father's estate objects to the aunt's lifestyle.","id":"16347","runtime":143,"imdbId":"tt0051383","version":182,"lastModified":"1301905185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/288\/4bc94b64017a3c57fe021288\/auntie-mame-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Auntie Mame","releaseDate":-347587200000,"language":"en","type":"Movie","_key":"64318"} +{"label":"Coral Browne","version":27,"id":"87513","lastModified":"1301902987000","name":"Coral Browne","type":"Person","_key":"64319"} +{"label":"Roger Smith","version":21,"id":"87514","lastModified":"1301902769000","name":"Roger Smith","type":"Person","_key":"64320"} +{"label":"Jan Handzlik","version":21,"id":"87515","lastModified":"1301903070000","name":"Jan Handzlik","type":"Person","_key":"64321"} +{"label":"Peggy Cass","version":21,"id":"87516","lastModified":"1301903033000","name":"Peggy Cass","type":"Person","_key":"64322"} +{"label":"Willard Waterman","version":20,"id":"87517","lastModified":"1301902987000","name":"Willard Waterman","type":"Person","_key":"64323"} +{"label":"Robin Hughes","version":23,"id":"87518","lastModified":"1301902769000","name":"Robin Hughes","type":"Person","_key":"64324"} +{"label":"Connie Gilchrist","version":32,"id":"87519","lastModified":"1301902503000","name":"Connie Gilchrist","type":"Person","_key":"64325"} +{"label":"Yuki Shimoda","version":22,"id":"87520","lastModified":"1301902987000","name":"Yuki Shimoda","type":"Person","_key":"64326"} +{"label":"Morton DaCosta","version":21,"id":"87521","lastModified":"1301903033000","name":"Morton DaCosta","type":"Person","_key":"64327"} +{"label":"Ja '\u00e4 inte bitter","description":"No overview found.","id":"16348","runtime":140,"version":16,"lastModified":"1301416854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/291\/4bc94b64017a3c57fe021291\/ja-a-inte-bitter-mid.jpg","studio":"SVT","genre":"Comedy","title":"Ja '\u00e4 inte bitter","releaseDate":1142467200000,"language":"en","type":"Movie","_key":"64328"} +{"label":"Fullpackat!","description":"No overview found.","id":"16349","runtime":170,"version":18,"lastModified":"1301907360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6c\/4c73c0377b9aa13ab9000e6c\/fullpackat-mid.jpg","studio":"Pan Vision","genre":"Comedy","title":"Fullpackat!","releaseDate":1215561600000,"language":"en","type":"Movie","_key":"64329"} +{"label":"Vinyan","description":"A couple leaves the civilized world behind and descends into a living nightmare in this chilling horror thriller. Six months after losing her only child in the Southeast Asia tsunami, Jeanne (Emmanuelle Beart, Mission: Impossible) is convinced she sees him in a film about orphans living in the jungles ","id":"16350","runtime":96,"imdbId":"tt1029241","version":182,"lastModified":"1301903885000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc94b66017a3c57fe0212a2\/vinyan-mid.jpg","studio":"The Film","genre":"Horror","title":"Vinyan","releaseDate":1220054400000,"language":"en","type":"Movie","_key":"64330"} +{"label":"Josse De Pauw","version":13,"id":"222942","lastModified":"1301903990000","name":"Josse De Pauw","type":"Person","_key":"64331"} +{"label":"Ararat","description":"Interrogated by a customs officer, a young man recounts how his life was changed during the making of a film about the Armenian genocide claims.","id":"16351","runtime":115,"imdbId":"tt0273435","version":133,"lastModified":"1301905054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e60\/4be81caa017a3c35b5000e60\/ararat-mid.jpg","genre":"Drama","title":"Ararat","releaseDate":1021852800000,"language":"en","type":"Movie","_key":"64332"} +{"label":"Good Night","description":"Madan Mohan Khullar, a lover of old Hindi films and music, has decided to start his life afresh. However, to begin a new day, one has to pass through a long night, and so must he.","id":"16352","runtime":30,"imdbId":"tt1353170","version":1132,"lastModified":"1302024086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bf\/4bc94b69017a3c57fe0212bf\/good-night-mid.jpg","studio":"Also Ran Films","genre":"Drama","title":"Good Night","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64333"} +{"label":"Vinod Nagpal","version":21,"id":"80389","lastModified":"1301902361000","name":"Vinod Nagpal","type":"Person","_key":"64334"} +{"label":"Shivam Pradhan","version":19,"id":"80390","lastModified":"1301902239000","name":"Shivam Pradhan","type":"Person","_key":"64335"} +{"label":"Manish Narang","version":19,"id":"80391","lastModified":"1301901608000","name":"Manish Narang","type":"Person","_key":"64336"} +{"label":"Abhijeet Banerjee","version":19,"id":"80392","lastModified":"1301902460000","name":"Abhijeet Banerjee","type":"Person","_key":"64337"} +{"label":"Geetika Narang","version":22,"id":"80394","lastModified":"1301901863000","name":"Geetika Narang","type":"Person","_key":"64338"} +{"label":"Ong Bak 2","description":"Moments from death a young man is rescued by a renowned warrior. Realizing unsurpassed physical potential in the young boy he trains him into the most dangerous man alive. As he becomes a young man he goes on a lone mission of vengeance against the vicious slave traders who enslaved him as a youth and the treacherous warlord who killed his father.","id":"16353","runtime":110,"imdbId":"tt0785035","trailer":"http:\/\/www.youtube.com\/watch?v=hIVOv1JQgsk","homepage":"http:\/\/www.ongbak2themovie.com\/","version":256,"lastModified":"1302005230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/135\/4ce75c265e73d6258e000135\/ong-bak-2-mid.jpg","studio":"Iyara Films","genre":"Action","title":"Ong Bak 2","releaseDate":1228348800000,"language":"en","tagline":"Warrior. Conqueror. Legend.","type":"Movie","_key":"64339"} +{"label":"Primorata Dejudom","version":18,"id":"149861","lastModified":"1301903105000","name":"Primorata Dejudom","type":"Person","_key":"64340"} +{"label":"Pride 34: Kamikaze","description":"No overview found.","id":"16354","runtime":0,"version":66,"lastModified":"1301905678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e3\/4bc94b6e017a3c57fe0212e3\/pride-34-kamikaze-mid.jpg","genre":"Sports Film","title":"Pride 34: Kamikaze","releaseDate":1177804800000,"language":"en","type":"Movie","_key":"64341"} +{"label":"Sonic The Hedgehog: The Movie","description":"Sonic's arch nemesis Dr Robotnik has been banished from the Land of Darkness by an evil Metal Robotnik. The devious doctor tells Sonic that the Robot Generator has been sabotaged and will blow Planet Freedom to kingdom come. It's not until the President's beautiful daughter Sara turns on the charm that Sonic springs into action. Tails and Knuckles join Sonic as he investigates.","id":"16355","runtime":60,"imdbId":"tt0237765","version":95,"lastModified":"1301904705000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/301\/4bc94b70017a3c57fe021301\/sonic-the-hedgehog-the-movie-mid.jpg","studio":"General Entertainment Co. LTD","genre":"Animation","title":"Sonic The Hedgehog: The Movie","releaseDate":936835200000,"language":"en","type":"Movie","_key":"64342"} +{"label":"Riverworld","description":"A movie for the Sci Fi Channel based on the book series by Philip Jos\u00e9 Farmer. The location is Riverworld, a mysterious & treacherous land where every human who died between the years 99,000 BC and 2,200 AD has been resurrected on the banks of a huge river.","id":"16356","runtime":86,"imdbId":"tt0310952","version":77,"lastModified":"1301903928000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/306\/4bc94b70017a3c57fe021306\/riverworld-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Fantasy","title":"Riverworld","releaseDate":1048291200000,"language":"en","type":"Movie","_key":"64343"} +{"label":"Karen Holness","version":26,"id":"80405","lastModified":"1301901346000","name":"Karen Holness","type":"Person","_key":"64344"} +{"label":"Kevin Smith","version":20,"id":"80406","lastModified":"1301901429000","name":"Kevin Smith","type":"Person","_key":"64345"} +{"label":"Cameron Daddo","version":40,"id":"80407","lastModified":"1301901325000","name":"Cameron Daddo","type":"Person","_key":"64346"} +{"label":"Eulogy","description":"A black comedy that follows three generations of a family, who come together for the funeral of the patriarch - unveiling a litany of family secrets and covert relationships.","id":"16358","runtime":91,"imdbId":"tt0349416","version":113,"lastModified":"1301906108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4bc94b71017a3c57fe02130f\/eulogy-mid.jpg","genre":"Comedy","title":"Eulogy","releaseDate":1109203200000,"language":"en","type":"Movie","_key":"64347"} +{"label":"Michael Clancy","version":25,"id":"4910","lastModified":"1302070450000","name":"Michael Clancy","type":"Person","_key":"64348"} +{"label":"Vox Populi","description":"Vox Populi is a black comedy about an experienced politician suffering from a midlife crisis. When he comes into contact with the common-man's logic of his new in-laws, this has a far-reaching effect on both his political and his personal life.","id":"16359","runtime":100,"imdbId":"tt0847770","homepage":"http:\/\/www.voxpopuli.nl","version":57,"lastModified":"1301417670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/318\/4bc94b71017a3c57fe021318\/vox-populi-mid.jpg","genre":"Comedy","title":"Vox Populi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64349"} +{"label":"Eddy Terstall","version":22,"id":"81717","lastModified":"1301902346000","name":"Eddy Terstall","type":"Person","_key":"64350"} +{"label":"Pride 33: The Second Coming","description":"Pride 33: The Second Coming was a mixed martial arts event held by Pride Fighting Championships on February 24, 2007 at the Thomas & Mack Center in Las Vegas, Nevada.","id":"16360","runtime":0,"version":61,"lastModified":"1301907167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31d\/4bc94b71017a3c57fe02131d\/pride-33-the-second-coming-mid.jpg","genre":"Sports Film","title":"Pride 33: The Second Coming","releaseDate":1172275200000,"language":"en","type":"Movie","_key":"64351"} +{"label":"Pride Shockwave 2006","description":"Pride Shockwave 2006 was a mixed martial arts event held by Pride Fighting Championships on December 31, 2006. In Japan, this event was called Pride Otoko Matsuri 2006: Fumetsu","id":"16361","runtime":0,"version":146,"lastModified":"1301420967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/327\/4bc94b72017a3c57fe021327\/pride-shockwave-2006-mid.jpg","genre":"Sports Film","title":"Pride Shockwave 2006","releaseDate":1167523200000,"language":"en","type":"Movie","_key":"64352"} +{"label":"Bryan Kest Power Yoga","description":"No overview found.","id":"16362","runtime":162,"version":142,"lastModified":"1300980308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32c\/4bc94b72017a3c57fe02132c\/bryan-kest-power-yoga-mid.jpg","title":"Bryan Kest Power Yoga","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64353"} +{"label":"The Best Little Whorehouse in Texas","description":"The Best Little Whorehouse in Texas is a musical with a book by Texas author Larry L. King and Peter Masterson. It is based on a story by King that was inspired by the real-life Chicken Ranch in La Grange, Texas. Reynolds is the local sheriff who is more interested in keeping the town's most popular business open than carrying out the letter of the law.Parton is the whorehouse madame who also happens to hold the sheriff's interest.It is the late 1970s, a brothel that has been operating outside o","id":"16363","runtime":114,"imdbId":"tt0083642","trailer":"http:\/\/www.youtube.com\/watch?v=z3uX58tQ7mQ","version":144,"lastModified":"1301905837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/339\/4bc94b73017a3c57fe021339\/the-best-little-whorehouse-in-texas-mid.jpg","studio":"RKO Radio Pictures","genre":"Action","title":"The Best Little Whorehouse in Texas","releaseDate":396230400000,"language":"en","tagline":"With Burt and Dolly this much fun just couldn't be legal!","type":"Movie","_key":"64354"} +{"label":"Lois Nettleton","version":25,"id":"89043","lastModified":"1301902632000","name":"Lois Nettleton","type":"Person","_key":"64355"} +{"label":"Robert Mandan","version":20,"id":"115766","lastModified":"1301902677000","name":"Robert Mandan","type":"Person","_key":"64356"} +{"label":"Mary Jo Catlett","version":22,"id":"80634","lastModified":"1301902321000","name":"Mary Jo Catlett","type":"Person","_key":"64357"} +{"label":"Mary Louise Wilson","version":17,"id":"115767","lastModified":"1301902459000","name":"Mary Louise Wilson","type":"Person","_key":"64358"} +{"label":"Howard K. Smith","version":17,"id":"115768","lastModified":"1301902888000","name":"Howard K. Smith","type":"Person","_key":"64359"} +{"label":"Robotech: The Shadow Chronicles","description":"Picking up where the orginal series left off, Scott Bernard continues his search for Rick Hunter and the fate of the SDF-3","id":"16364","runtime":88,"imdbId":"tt0443771","homepage":"http:\/\/www.theshadowchronicles.com\/","version":150,"lastModified":"1301907995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/405\/4bf7a7b0017a3c772a000405\/robotech-the-shadow-chronicles-mid.jpg","genre":"Action","title":"Robotech: The Shadow Chronicles","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"64360"} +{"label":"Eddie Frierson","version":18,"id":"146186","lastModified":"1301902396000","name":"Eddie Frierson","type":"Person","_key":"64361"} +{"label":"Alexandra Kenworthy","version":20,"id":"144105","lastModified":"1301902400000","name":"Alexandra Kenworthy","type":"Person","_key":"64362"} +{"label":"Kari Wahlgren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce2\/4d7c0ca15e73d6282a001ce2\/kari-wahlgren-profile.jpg","version":22,"id":"116315","lastModified":"1301902961000","name":"Kari Wahlgren","type":"Person","_key":"64363"} +{"label":"Iona Morris","version":20,"id":"144107","lastModified":"1301902506000","name":"Iona Morris","type":"Person","_key":"64364"} +{"label":"Future Sport","description":"In the not too distant future, a new deadly sport is the only way to stop a war that will kill millions. Fix (Snipes) is the creator of the sport, but the spotlight has always been on Ramzey (Cain), this hothead must use this game to stop the Revolution. ","id":"16365","runtime":91,"imdbId":"tt0158409","version":59,"lastModified":"1301907277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/353\/4bc94b75017a3c57fe021353\/future-sport-mid.jpg","genre":"Action","title":"Future Sport","releaseDate":884390400000,"language":"en","type":"Movie","_key":"64365"} +{"label":"Joseph King of Dreams","description":"With his gift of dream interpretation and his brilliantly colored coat, Joseph inspires jealousy in his brothers and is sold into slavery. This animated retelling of the story from the Bible's Book of Genesis boasts first-rate animation and excellent voice work from Affleck, Mark Hamill and Jody Benson. Wholesome without being preachy, Joseph: King of Dreams will delight the entire family.","id":"16366","runtime":74,"imdbId":"tt0264734","version":98,"lastModified":"1301907464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/368\/4bc94b79017a3c57fe021368\/joseph-king-of-dreams-mid.jpg","studio":"DreamWorks Home Entertainment","genre":"Family","title":"Joseph King of Dreams","releaseDate":972604800000,"language":"en","type":"Movie","_key":"64366"} +{"label":"Maureen McGovern","version":21,"id":"80414","lastModified":"1301902299000","name":"Maureen McGovern","type":"Person","_key":"64367"} +{"label":"Judith Light","version":21,"id":"80415","lastModified":"1301902474000","name":"Judith Light","type":"Person","_key":"64368"} +{"label":"James Eckhouse","version":21,"id":"19151","lastModified":"1301901942000","name":"James Eckhouse","type":"Person","_key":"64369"} +{"label":"Richard McGonagle","version":21,"id":"80416","lastModified":"1301902474000","name":"Richard McGonagle","type":"Person","_key":"64370"} +{"label":"Rob LaDuca","version":28,"id":"80698","lastModified":"1301902186000","name":"Rob LaDuca","type":"Person","_key":"64371"} +{"label":"Robert C. Ramirez","version":23,"id":"85716","lastModified":"1301902299000","name":"Robert C. Ramirez","type":"Person","_key":"64372"} +{"label":"Kinky Boots","description":"A drag queen comes to the rescue of a man who, after inheriting his father's shoe factory, needs to diversify his product if he wants to keep the business afloat.","id":"16367","runtime":107,"imdbId":"tt0434124","version":186,"lastModified":"1301903246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/371\/4bc94b79017a3c57fe021371\/kinky-boots-mid.jpg","studio":"Harbour Pictures","genre":"Comedy","title":"Kinky Boots","releaseDate":1137715200000,"language":"en","tagline":"How Far Would You Go To Save The Family Business?","type":"Movie","_key":"64373"} +{"label":"Ewan Hooper","version":21,"id":"80418","lastModified":"1301902367000","name":"Ewan Hooper","type":"Person","_key":"64374"} +{"label":"Kellie Bright","version":21,"id":"80419","lastModified":"1301902366000","name":"Kellie Bright","type":"Person","_key":"64375"} +{"label":"Geoffrey Streatfield","version":21,"id":"80420","lastModified":"1301902383000","name":"Geoffrey Streatfield","type":"Person","_key":"64376"} +{"label":"Gwenllian Davies","version":20,"id":"80421","lastModified":"1301902307000","name":"Gwenllian Davies","type":"Person","_key":"64377"} +{"label":"Sk8terday","description":"No overview found.","id":"16369","runtime":0,"version":13,"lastModified":"1301908553000","title":"Sk8terday","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64378"} +{"label":"Aspen Extreme","description":"No overview found.","id":"16370","runtime":113,"imdbId":"tt0106315","version":259,"lastModified":"1301905621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4bc94b79017a3c57fe021376\/aspen-extreme-mid.jpg","studio":"Hollywood Pictures","genre":"Drama","title":"Aspen Extreme","releaseDate":727660800000,"language":"en","type":"Movie","_key":"64379"} +{"label":"Tell Me Something","description":"In Seoul, parts not matching of severed copses of three men are found in cars and bags left in public spaces...","id":"16371","runtime":118,"imdbId":"tt0220806","version":88,"lastModified":"1301904053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/387\/4bc94b7a017a3c57fe021387\/telmisseomding-mid.jpg","studio":"Koo & Cee Film","genre":"Crime","title":"Tell Me Something","releaseDate":942451200000,"language":"en","type":"Movie","_key":"64380"} +{"label":"Yoon-Hyun Chang","version":30,"id":"80450","lastModified":"1301902323000","name":"Yoon-Hyun Chang","type":"Person","_key":"64381"} +{"label":"Eun-ha Shim","version":24,"id":"80458","lastModified":"1301901863000","name":"Eun-ha Shim","type":"Person","_key":"64382"} +{"label":"Hang-Seon Jang","version":22,"id":"80459","lastModified":"1301902112000","name":"Hang-Seon Jang","type":"Person","_key":"64383"} +{"label":"Jung-ah Yum","version":29,"id":"80460","lastModified":"1301902169000","name":"Jung-ah Yum","type":"Person","_key":"64384"} +{"label":"Jun-Sang Yu","version":25,"id":"80461","lastModified":"1301901775000","name":"Jun-Sang Yu","type":"Person","_key":"64385"} +{"label":"The Innocents","description":"A young governess for two children becomes convinced that the house and grounds are haunted.","id":"16372","runtime":100,"imdbId":"tt0055018","version":131,"lastModified":"1301902970000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f2\/4cf514de7b9aa151490002f2\/the-innocents-mid.jpg","studio":"Achilles","genre":"Drama","title":"The Innocents","releaseDate":-253065600000,"language":"en","type":"Movie","_key":"64386"} +{"label":"Clytie Jessop","version":19,"id":"80463","lastModified":"1301902239000","name":"Clytie Jessop","type":"Person","_key":"64387"} +{"label":"Isla Cameron","version":19,"id":"80464","lastModified":"1301902459000","name":"Isla Cameron","type":"Person","_key":"64388"} +{"label":"Eric Woodburn","version":20,"id":"80465","lastModified":"1301902459000","name":"Eric Woodburn","type":"Person","_key":"64389"} +{"label":"The Uninvited","description":"A brother and sister move into an old seaside house they find abandoned for many years on the English coast. Their original enchantment with the house diminishes as they hear stories of the previous owners and meet their daughter (now a young woman) who now lives as a neighbor with her grandfather. Also heard are unexplained sounds during the night. It becomes obvious that the house is haunted.","id":"16373","runtime":99,"imdbId":"tt0037415","trailer":"http:\/\/www.youtube.com\/watch?v=2658","version":90,"lastModified":"1301902593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/399\/4bc94b7b017a3c57fe021399\/the-uninvited-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Uninvited","releaseDate":-817084800000,"language":"en","type":"Movie","_key":"64390"} +{"label":"Lewis M. Allen","version":28,"id":"18754","lastModified":"1301901783000","name":"Lewis M. Allen","type":"Person","_key":"64391"} +{"label":"Cornelia Otis Skinner","version":20,"id":"80467","lastModified":"1301901863000","name":"Cornelia Otis Skinner","type":"Person","_key":"64392"} +{"label":"Dorothy Stickney","version":20,"id":"80468","lastModified":"1301901863000","name":"Dorothy Stickney","type":"Person","_key":"64393"} +{"label":"Gail Russell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4c3cad917b9aa12643000018\/gail-russell-profile.jpg","version":30,"id":"80469","lastModified":"1301901524000","name":"Gail Russell","type":"Person","_key":"64394"} +{"label":"Sometimes in April","description":"Debra Winger, Oris Erhuero and Idris Elba star in this drama framed by the Rwandan genocide.","id":"16374","runtime":140,"imdbId":"tt0400063","version":134,"lastModified":"1301904940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a2\/4bc94b80017a3c57fe0213a2\/sometimes-in-april-mid.jpg","studio":"CINEFACTO","genre":"Drama","title":"Sometimes in April","releaseDate":1108598400000,"language":"en","type":"Movie","_key":"64395"} +{"label":"Pamela Nomvete","version":20,"id":"80472","lastModified":"1301901718000","name":"Pamela Nomvete","type":"Person","_key":"64396"} +{"label":"Oris Erhuero","version":19,"id":"80473","lastModified":"1301902239000","name":"Oris Erhuero","type":"Person","_key":"64397"} +{"label":"Cleophas Kabasita","version":19,"id":"80474","lastModified":"1301902459000","name":"Cleophas Kabasita","type":"Person","_key":"64398"} +{"label":"Peninah Abatoni","version":19,"id":"80475","lastModified":"1301902459000","name":"Peninah Abatoni","type":"Person","_key":"64399"} +{"label":"Ashani Alles","version":19,"id":"80476","lastModified":"1301902459000","name":"Ashani Alles","type":"Person","_key":"64400"} +{"label":"Hope Azeda","version":19,"id":"80477","lastModified":"1301902459000","name":"Hope Azeda","type":"Person","_key":"64401"} +{"label":"Th\u00e9og\u00e8ne Barasa","version":19,"id":"80478","lastModified":"1301902239000","name":"Th\u00e9og\u00e8ne Barasa","type":"Person","_key":"64402"} +{"label":"Dan Barlow","version":19,"id":"80479","lastModified":"1301902459000","name":"Dan Barlow","type":"Person","_key":"64403"} +{"label":"Johannes Bausch","version":19,"id":"80480","lastModified":"1301902459000","name":"Johannes Bausch","type":"Person","_key":"64404"} +{"label":"Schizopolis","description":"Fletcher Munson is a lethargic, passive worker for a Scientology-like self-help corporation called Eventualism... ","id":"16375","runtime":96,"imdbId":"tt0117561","version":126,"lastModified":"1301903690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b0\/4bc94b82017a3c57fe0213b0\/schizopolis-mid.jpg","studio":".406 Production","genre":"Comedy","title":"Schizopolis","releaseDate":842572800000,"language":"en","type":"Movie","_key":"64405"} +{"label":"Scott Allen","version":20,"id":"80481","lastModified":"1301902199000","name":"Scott Allen","type":"Person","_key":"64406"} +{"label":"Jeff Wayne's Musical Version of 'The War of the Worlds'","description":"Features The War of the Worlds performed live on stage.","id":"16377","runtime":110,"imdbId":"tt0829440","homepage":"http:\/\/www.thewaroftheworlds.com","version":50,"lastModified":"1301417759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bd\/4bc94b83017a3c57fe0213bd\/jeff-wayne-s-musical-version-of-the-war-of-the-worlds-mid.jpg","title":"Jeff Wayne's Musical Version of 'The War of the Worlds'","releaseDate":1162771200000,"language":"en","type":"Movie","_key":"64407"} +{"label":"The Rutles: All You Need Is Cash","description":"A mockumentary of a Beatles-like singing group called the Rutles, The Rutles is a collaboration between Monty Python alumnus Eric Idle and Saturday Night Live filmmaker Gary Weis. The members of the \"pre-Fab Four\" are Nasty, Barry, Stig, and Dirk. There really isn't any plot, just a series of vignettes, unctuously narrated by Idle, which mercilessly skewer the Beatles mythology. ","id":"16378","runtime":76,"imdbId":"tt0077147","version":92,"lastModified":"1301907252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c6\/4bc94b84017a3c57fe0213c6\/the-rutles-all-you-need-is-cash-mid.jpg","title":"The Rutles: All You Need Is Cash","releaseDate":259372800000,"language":"en","type":"Movie","_key":"64408"} +{"label":"Gary Weis","version":21,"id":"80482","lastModified":"1301902318000","name":"Gary Weis","type":"Person","_key":"64409"} +{"label":"John Halsey","version":20,"id":"80483","lastModified":"1301901863000","name":"John Halsey","type":"Person","_key":"64410"} +{"label":"Ricky Fataar","version":20,"id":"80484","lastModified":"1301901863000","name":"Ricky Fataar","type":"Person","_key":"64411"} +{"label":"Bianca Jagger","version":20,"id":"80486","lastModified":"1301902459000","name":"Bianca Jagger","type":"Person","_key":"64412"} +{"label":"The Mod Squad","description":"Three minor delinquints (Danes, Ribisi, and Epps) are recruited by a cop (Farina) working undercover to bust a cop\/drug ring. When the officer who recruited them is killed, they go above and beyond the call of duty to solve the murder; and bust the drug ring. Suffering the jibes, and ridicule of fellow officers; they struggle to save their names, and that of their deceased benefactor.","id":"16379","runtime":92,"imdbId":"tt0120757","version":151,"lastModified":"1301906843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d4\/4bc94b86017a3c57fe0213d4\/the-mod-squad-mid.jpg","genre":"Action","title":"The Mod Squad","releaseDate":922406400000,"language":"en","tagline":"First they broke the law. Now they are the law.","type":"Movie","_key":"64413"} +{"label":"Scott Silver","version":44,"id":"324","lastModified":"1299950868000","name":"Scott Silver","type":"Person","_key":"64414"} +{"label":"When Worlds Collide","description":"When a group of astronomers calculate a star is on a course to slam into Earth, a few days before, it's accompanying planet will first pass close enough to the Earth to cause havoc on land and sea. They set about building a rocket so a few selected individuals can escape to the planet.","id":"16380","runtime":83,"imdbId":"tt0044207","trailer":"http:\/\/www.youtube.com\/watch?v=KcLaMyc4ecE","version":146,"lastModified":"1301903422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4c3ff3b67b9aa1428300006b\/when-worlds-collide-mid.jpg","genre":"Action","title":"When Worlds Collide","releaseDate":-581299200000,"language":"en","type":"Movie","_key":"64415"} +{"label":"Rudolph Mat\u00e9","version":42,"id":"11593","lastModified":"1299669126000","name":"Rudolph Mat\u00e9","type":"Person","_key":"64416"} +{"label":"Macross Zero","description":"Taking place one year before the events of the original Macross series, Macross Zero chronicles the final days of the war between the U.N. Spacy and anti-U.N. factions. After being shot down by the anti-U.N.'s newest fighter plane, ace pilot Shin Kudo finds himself on the remote island of Mayan, where technology is almost non-existent. While Shin stays on the island to heal his wounds, the tranquility of the island is shattered by a battle that involves the UN's newest fighter - the VF-0.","id":"16381","runtime":159,"imdbId":"tt0353685","homepage":"http:\/\/www.macross.co.jp\/zero\/","version":527,"lastModified":"1301903329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/75d\/4cb3439f5e73d65b8400075d\/macross-zero-mid.jpg","genre":"Animation","title":"Macross Zero","releaseDate":1040428800000,"language":"en","type":"Movie","_key":"64417"} +{"label":"Arr\u00e1ncame la vida","description":"A young girl recounts her girlhood and eventual marriage to a general of the Mexican revolution. by one of the most outstanding writers of the new feminist Mexican literature, it is at once a haunting novel of one woman's life and a powerful account of post-revolutionary Mexico from a female perspective. ","id":"16382","runtime":107,"imdbId":"tt1130981","homepage":"http:\/\/www.arrancamelavida.com\/","version":75,"lastModified":"1301416801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f4\/4bc94b8c017a3c57fe0213f4\/arrancame-la-vida-mid.jpg","studio":"Alta Vista Films","title":"Arr\u00e1ncame la vida","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"64418"} +{"label":"Jos\u00e9 Mar\u00eda de Tavira","version":17,"id":"80494","lastModified":"1301902143000","name":"Jos\u00e9 Mar\u00eda de Tavira","type":"Person","_key":"64419"} +{"label":"Maharathi","description":"The caption of the movie says, \"How would you murder a man who has already committed suicide\". The story revolves around 6 characters a one time famous film director, his wife (a one time actor in his films), a chauffeur, a confidante lawyer, a caretaker and an ACP all trying to outwit each other. At stake is a life insurance policy worth Rs. 24 crores.","id":"16383","runtime":0,"imdbId":"tt1334254","homepage":"http:\/\/www.maharathithefilm.com\/","version":55,"lastModified":"1301907996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40d\/4bc94b8f017a3c57fe02140d\/maharathi-mid.jpg","genre":"Thriller","title":"Maharathi","releaseDate":1228435200000,"language":"en","type":"Movie","_key":"64420"} +{"label":"My Blue Heaven","description":"FBI agent Barney Coopersmith is assigned to protect former Mafia figure turned informant Vincent Antonelli. In the witness protection program one is supposed to keep a low profile, but that is something that Antonelli has trouble doing. Coopersmith certainly has his hands full keeping Antonelli away from the Mafia hitmen who want to stop him testifying, not to mention the nightclubs... ","id":"16384","runtime":97,"imdbId":"tt0100212","version":203,"lastModified":"1301903986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/425\/4bc94b91017a3c57fe021425\/my-blue-heaven-mid.jpg","genre":"Comedy","title":"My Blue Heaven","releaseDate":631152000000,"language":"en","type":"Movie","_key":"64421"} +{"label":"Melanie Mayron","version":26,"id":"83313","lastModified":"1301902459000","name":"Melanie Mayron","type":"Person","_key":"64422"} +{"label":"Pride","description":"In this uplifting film based on a true story, coach Jim Ellis (Terrence Howard) shocks the community and changes lives when, aided by a local janitor (Bernie Mac), he sets out to form Philadelphia's first black swim team. But the odds are against them as they battle rigid rules, racism and more.","id":"16385","runtime":104,"imdbId":"tt0475355","version":151,"lastModified":"1301905055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/438\/4bc94b92017a3c57fe021438\/pride-mid.jpg","genre":"Drama","title":"Pride","releaseDate":1174608000000,"language":"en","type":"Movie","_key":"64423"} +{"label":"Daleks' Invasion Earth: 2150 A.D.","description":"Dr. Who and his companions are hurled into the future and make a horrifying discovery: the Daleks have conquered Earth! The metal fiends have devastated entire continents and turned the survivors into Robomen.","id":"16387","runtime":81,"imdbId":"tt0060278","trailer":"http:\/\/www.youtube.com\/watch?v=A0MafSMrjkk","version":108,"lastModified":"1301905838000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/441\/4bc94b93017a3c57fe021441\/daleks-invasion-earth-2150-a-d-mid.jpg","genre":"Science Fiction","title":"Daleks' Invasion Earth: 2150 A.D.","releaseDate":-107568000000,"language":"en","type":"Movie","_key":"64424"} +{"label":"Ray Brooks","version":23,"id":"80495","lastModified":"1301901675000","name":"Ray Brooks","type":"Person","_key":"64425"} +{"label":"Roberta Tovey","version":25,"id":"80496","lastModified":"1301902319000","name":"Roberta Tovey","type":"Person","_key":"64426"} +{"label":"Jill Curzon","version":19,"id":"80497","lastModified":"1301902239000","name":"Jill Curzon","type":"Person","_key":"64427"} +{"label":"Geoffrey Cheshire","version":19,"id":"24335","lastModified":"1301901863000","name":"Geoffrey Cheshire","type":"Person","_key":"64428"} +{"label":"Keith Marsh","version":19,"id":"80498","lastModified":"1301902239000","name":"Keith Marsh","type":"Person","_key":"64429"} +{"label":"Philip Madoc","version":25,"id":"80499","lastModified":"1301902419000","name":"Philip Madoc","type":"Person","_key":"64430"} +{"label":"Steve Peters","version":19,"id":"80500","lastModified":"1301902239000","name":"Steve Peters","type":"Person","_key":"64431"} +{"label":"Eddie Powell","version":19,"id":"80501","lastModified":"1301902239000","name":"Eddie Powell","type":"Person","_key":"64432"} +{"label":"Gordon Flemyng","version":26,"id":"134136","lastModified":"1301902736000","name":"Gordon Flemyng","type":"Person","_key":"64433"} +{"label":"The Brothers McMullen","description":"Deals with the lives of the three Irish Catholic McMullen brothers from Long Island, New York, over three months, as they grapple with basic ideas and values \u2014 love, sex, marriage, religion and family \u2014 in the 1990s. Directed, written, produced by and starring Edward Burns. ","id":"16388","runtime":98,"imdbId":"tt0112585","version":273,"lastModified":"1301907573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44a\/4bc94b94017a3c57fe02144a\/the-brothers-mcmullen-mid.jpg","genre":"Comedy","title":"The Brothers McMullen","releaseDate":807926400000,"language":"en","type":"Movie","_key":"64434"} +{"label":"Shari Albert","version":20,"id":"86308","lastModified":"1301903029000","name":"Shari Albert","type":"Person","_key":"64435"} +{"label":"Catharine Bolz","version":20,"id":"86309","lastModified":"1301903059000","name":"Catharine Bolz","type":"Person","_key":"64436"} +{"label":"Peter Johansen","version":20,"id":"86311","lastModified":"1301903036000","name":"Peter Johansen","type":"Person","_key":"64437"} +{"label":"Elizabeth McKay","version":20,"id":"86312","lastModified":"1301903034000","name":"Elizabeth McKay","type":"Person","_key":"64438"} +{"label":"Jack Mulcahy","version":19,"id":"86313","lastModified":"1301902987000","name":"Jack Mulcahy","type":"Person","_key":"64439"} +{"label":"National Lampoon's Barely Legal","description":"Deacon, Matt and Fred will do anything for even a glimpse of sex and spend their mornings pirating porno movies from Fred's after school job at the video store. But when Fred is fired, the well runs dry, and our heroes come up with a new plan: make their own \"adult\" film.","id":"16389","runtime":82,"imdbId":"tt0853229","version":140,"lastModified":"1301908554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/322\/4bf1db29017a3c3213000322\/barely-legal-mid.jpg","title":"National Lampoon's Barely Legal","releaseDate":1052697600000,"language":"en","type":"Movie","_key":"64440"} +{"label":"Scooby-Doo and the Samurai Sword","description":"The gang of Mystery Inc. take a trip to Japan and find themselves circling Asia and the Pacific in a treasure hunt, racing against the vengeful Black Samurai and his Ninja warriors to find the legendary Sword of Fate, an ancient blade fabled to possess extraordinary supernatural powers.","id":"16390","runtime":74,"imdbId":"tt1421378","version":149,"lastModified":"1301905091000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44f\/4bc94b94017a3c57fe02144f\/scooby-doo-and-the-samurai-sword-mid.jpg","genre":"Animation","title":"Scooby-Doo and the Samurai Sword","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"64441"} +{"label":"Christopher Berkeley","version":13,"id":"209181","lastModified":"1301903785000","name":"Christopher Berkeley","type":"Person","_key":"64442"} +{"label":"Black Narcissus","description":"based on the novel of the same name by Rumer Godden. It is a psychological drama about the emotional tensions within a convent of nuns in an isolated Himalayan valley","id":"16391","runtime":100,"imdbId":"tt0039192","trailer":"http:\/\/www.youtube.com\/watch?v=CZRzcLK1Ar0","version":119,"lastModified":"1301904519000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/460\/4bc94b99017a3c57fe021460\/black-narcissus-mid.jpg","genre":"Drama","title":"Black Narcissus","releaseDate":-713318400000,"language":"en","type":"Movie","_key":"64443"} +{"label":"Redline","description":"A gorgeous young automobile fanatic--and front to the hottest unsigned band on the West coast--finds herself caught up in illegal drag-racing competitions organized by exotic car fanatics","id":"16392","runtime":95,"imdbId":"tt0780595","version":111,"lastModified":"1301906843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46d\/4bc94b9c017a3c57fe02146d\/redline-mid.jpg","genre":"Action","title":"Redline","releaseDate":1176422400000,"language":"en","type":"Movie","_key":"64444"} +{"label":"Nadia Bjorlin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a7\/4cc93bce7b9aa16b9c0001a7\/nadia-bjorlin-profile.jpg","biography":"<h3><span class=\"mw-headline\" id=\"Early_life\">Early life<\/span><\/h3>\n<p>Bj\u00f6rlin was born in Bethel, CT but lived in Sweden until the age of 7. Her father was the Swedish composer and conductor <a href=\"http:\/\/en.wikipedia.org\/wiki\/Ulf_Bj%C3%B6rlin\" title=\"Ulf Bj\u00f6rlin\">Ulf Bj\u00f6rlin<\/a> (1933\u20131993).<sup id=\"cite_ref-dn_0-0\" class=\"reference\"><a href=\"http:\/\/en.wikipedia.org\/wiki\/Nadia_Bjorlin#cite_note-dn-0\"><span>[<\/span>1<span>]<\/span><\/a><\/sup> Her mother, Fary, is an interior decorator from Ira","version":21,"id":"82573","birthplace":"Newport, Rhode Island, USA","lastModified":"1301902220000","name":"Nadia Bjorlin","type":"Person","_key":"64445"} +{"label":"Jesse Johnson","version":17,"id":"82577","lastModified":"1301902239000","name":"Jesse Johnson","type":"Person","_key":"64446"} +{"label":"Winnie the Pooh: Springtime with Roo","description":"Spring has sprung, and baby Roo is excited to get out and explore and make new friends. But Rabbit seems preoccupied with spring cleaning, instead of embracing his usual role of playing Easter Bunny. Leave it to Roo to show Rabbit -- through love -- that it's more important who you love and not who's in charge.","id":"16394","runtime":65,"imdbId":"tt0384696","version":138,"lastModified":"1301903968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/573\/4d8f8c327b9aa16755002573\/winnie-the-pooh-springtime-with-roo-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Winnie the Pooh: Springtime with Roo","releaseDate":1078790400000,"language":"en","type":"Movie","_key":"64447"} +{"label":"Inferno","description":"Semi-sequal to 'Suspiria' has a American college student in Rome, and his sister in New York investigating a series of killings in both locations where their resident addresses are the domain of two covens of witches.","id":"16395","runtime":107,"imdbId":"tt0080923","version":90,"lastModified":"1302030601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a3\/4bc94ba0017a3c57fe0214a3\/inferno-mid.jpg","studio":"Produzioni Intersound","genre":"Horror","title":"Inferno","releaseDate":315532800000,"language":"en","type":"Movie","_key":"64448"} +{"label":"Leigh McCloskey","version":21,"id":"80502","lastModified":"1301902164000","name":"Leigh McCloskey","type":"Person","_key":"64449"} +{"label":"Gabriele Lavia","version":28,"id":"80503","lastModified":"1301901531000","name":"Gabriele Lavia","type":"Person","_key":"64450"} +{"label":"Dragonquest","description":"When an ancient warlord summons a mythological beast, a young hero must complete a series of quests to awaken the dragon that will defeat the monster.","id":"16398","runtime":90,"imdbId":"tt1353997","version":110,"lastModified":"1301905948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ac\/4bc94ba0017a3c57fe0214ac\/dragonquest-mid.jpg","studio":"Asylum, The","genre":"Fantasy","title":"Dragonquest","releaseDate":1238457600000,"language":"en","type":"Movie","_key":"64451"} +{"label":"Marc Singer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad6\/4d9718b65e73d6225d004ad6\/marc-singer-profile.jpg","version":37,"id":"35350","lastModified":"1301901522000","name":"Marc Singer","type":"Person","_key":"64452"} +{"label":"Commandments","description":"No overview found.","id":"16399","runtime":88,"imdbId":"tt0115927","version":61,"lastModified":"1301907092000","genre":"Comedy","title":"Commandments","releaseDate":862531200000,"language":"en","type":"Movie","_key":"64453"} +{"label":"Patlabor The Movie 3: WXIII","description":"Set in the year 2000 (between the events of Patlabor and Patlabor 2), two police detectives and the Metropolitan Police Department's famous SV2 unit investigate a series of mysterious acts of deadly destruction and attacks on Labor units occuring in and around Tokyo Bay.","id":"16402","runtime":107,"imdbId":"tt0318819","trailer":"http:\/\/www.youtube.com\/watch?v=1920","version":75,"lastModified":"1301904356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d90\/4cc333397b9aa138da001d90\/kido-keisatsu-patoreba-the-movie-3-wxiii-mid.jpg","genre":"Animation","title":"Patlabor The Movie 3: WXIII","releaseDate":1017446400000,"language":"en","type":"Movie","_key":"64454"} +{"label":"\u010carlston za Ognjenku","description":"No overview found.","id":"16403","runtime":86,"imdbId":"tt0380249","trailer":"http:\/\/www.youtube.com\/watch?v=1078","homepage":"http:\/\/www.bluepen.net","version":53,"lastModified":"1301906601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4de\/4bc94ba8017a3c57fe0214de\/carlston-za-ognjenku-mid.jpg","studio":"Europa Corp.","genre":"Drama","title":"\u010carlston za Ognjenku","releaseDate":1201651200000,"language":"en","type":"Movie","_key":"64455"} +{"label":"Katarina Radivojevi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2ef\/4d7cf51b7b9aa13f870012ef\/katarina-radivojevi-profile.jpg","version":27,"id":"80504","lastModified":"1301902542000","name":"Katarina Radivojevi\u0107","type":"Person","_key":"64456"} +{"label":"Stefan Kapicic","version":19,"id":"80507","lastModified":"1301902459000","name":"Stefan Kapicic","type":"Person","_key":"64457"} +{"label":"Uros Stojanovic","version":19,"id":"80508","lastModified":"1301902459000","name":"Uros Stojanovic","type":"Person","_key":"64458"} +{"label":"Flying Warriors","description":"No overview found.","id":"16404","runtime":118,"imdbId":"tt0278351","version":59,"lastModified":"1301906148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f1\/4bc94ba9017a3c57fe0214f1\/bichunmoo-mid.jpg","title":"Flying Warriors","releaseDate":962409600000,"language":"en","type":"Movie","_key":"64459"} +{"label":"Jin-yeong Jeong","version":25,"id":"96484","lastModified":"1301903044000","name":"Jin-yeong Jeong","type":"Person","_key":"64460"} +{"label":"Dong-jik Jang","version":20,"id":"96485","lastModified":"1301902503000","name":"Dong-jik Jang","type":"Person","_key":"64461"} +{"label":"Dust","description":"No overview found.","id":"16405","runtime":127,"imdbId":"tt0243232","version":95,"lastModified":"1301004321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f6\/4bc94ba9017a3c57fe0214f6\/dust-mid.jpg","studio":"Alta Films S.A.","genre":"Action","title":"Dust","releaseDate":999043200000,"language":"en","type":"Movie","_key":"64462"} +{"label":"Milcho Manchevski","version":27,"id":"80515","lastModified":"1301901444000","name":"Milcho Manchevski","type":"Person","_key":"64463"} +{"label":"Nikolina Kujaca","version":19,"id":"80516","lastModified":"1301902066000","name":"Nikolina Kujaca","type":"Person","_key":"64464"} +{"label":"Dick","description":"Comedy about two high school girls who wander off during a class trip to the White House and meet President Richard Nixon. They become the official dog walkers for Nixon's dog Checkers, and become his secret advisors during the Watergate scandal.","id":"16406","runtime":94,"imdbId":"tt0144168","trailer":"http:\/\/www.youtube.com\/watch?v=-wVcSSQGpL4","version":127,"lastModified":"1301907993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/503\/4bc94baa017a3c57fe021503\/dick-mid.jpg","genre":"Comedy","title":"Dick","releaseDate":933724800000,"language":"en","type":"Movie","_key":"64465"} +{"label":"Dragon Lord","description":"Dragon and his madcap pal Cowboy spend their days getting into mischief, frustrating the elders, chasing girls, and competing in the village sport. When Dragon overhears a fiendish plot by smugglers to sell China's national treasures overseas, the pair leap into action. Also, Cowboy's wealthy father is kidnapped by the villainous and lethal Big Boss, and the scene is set for a furious martial arts showdown.","id":"16407","runtime":86,"imdbId":"tt0084266","version":72,"lastModified":"1301904331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/511\/4bc94bab017a3c57fe021511\/long-xiao-ye-mid.jpg","genre":"Action","title":"Dragon Lord","releaseDate":378691200000,"language":"en","type":"Movie","_key":"64466"} +{"label":"Wai-Man Chan","version":28,"id":"83358","lastModified":"1301902168000","name":"Wai-Man Chan","type":"Person","_key":"64467"} +{"label":"Kang-Yeh Cheng","version":21,"id":"83359","lastModified":"1301902459000","name":"Kang-Yeh Cheng","type":"Person","_key":"64468"} +{"label":"Last Chance Harvey","description":"In London for his daughter's wedding, a struggling jingle-writer, Harvey Shine, misses his plane to New York, and thus loses his job. While drowning his sorrows in the airport pub, Harvey meets Kate, a British government worker stuck in an endless cycle of work, phone calls from her mother, and blind dates. A connection forms between the unhappy pair, who soon find themselves falling in love.","id":"16409","runtime":92,"imdbId":"tt1046947","version":232,"lastModified":"1302039218000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc94bad017a3c57fe021527\/last-chance-harvey-mid.jpg","studio":"Overture Films","genre":"Drama","title":"Last Chance Harvey","releaseDate":1230163200000,"language":"en","type":"Movie","_key":"64469"} +{"label":"Joel Hopkins","version":30,"id":"81256","lastModified":"1301901776000","name":"Joel Hopkins","type":"Person","_key":"64470"} +{"label":"Hobson's Choice","description":"Henry Hobson owns and tyrannically runs a successful Victorian boot maker\u2019s shop in Salford, England. A stingy widower with a weakness for overindulging in the local Moonraker Pubic House, he exploits his three daughters as cheap labour. When he declares that there will be \u2018no marriages\u2019 to avoid the expense of marriage settlements at \u00a3500 each, his eldest daughter Maggie rebels.","id":"16410","runtime":107,"imdbId":"tt0047094","version":106,"lastModified":"1301904305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/530\/4bc94bb0017a3c57fe021530\/hobson-s-choice-mid.jpg","studio":"London Film Productions","genre":"Comedy","title":"Hobson's Choice","releaseDate":-495590400000,"language":"en","type":"Movie","_key":"64471"} +{"label":"Initial D","description":"After winning his first competition, Takumi focuses his attention on drift racing, a sport he has unknowingly perfected while delivering tofu in his father's Toyota AE86.","id":"16411","runtime":95,"imdbId":"tt0439630","version":116,"lastModified":"1301903433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/541\/4bc94bb1017a3c57fe021541\/tau-man-ji-d-mid.jpg","studio":"Media Asia Film","genre":"Action","title":"Initial D","releaseDate":1115856000000,"language":"en","type":"Movie","_key":"64472"} +{"label":"Chasing Christmas","description":"Jack Cameron is a single dad that decides not to observe Christmas because his wife left him around that time. The ghosts of Christmas past and present try and get Jack to relent, but they screw up their jobs and send themselves on a wild ride through time showing up at various times in Jack's past. As they try and rectify the timeline and get back to the real present, some things are not what they used to be.","id":"16412","runtime":81,"imdbId":"tt0480008","version":110,"lastModified":"1301906351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bb\/4ca8057d7b9aa17ace0002bb\/chasing-christmas-mid.jpg","studio":"Insight Film Studios","genre":"Comedy","title":"Chasing Christmas","releaseDate":1133654400000,"language":"en","type":"Movie","_key":"64473"} +{"label":"Ron Oliver","version":26,"id":"80523","lastModified":"1301902218000","name":"Ron Oliver","type":"Person","_key":"64474"} +{"label":"Panic Mechanic","description":"When Hanky Pranky (alias Schucks), star of a candid camera TV show, loses his job to affirmative action, he applies for a job at a stress academy. It\u00b4s not long before Schucks discovers his new boss, Jack Paddaman, is as crooked as they come, but it\u00b4s too late: the employment contract is signed and sealed.A year passes, and Schucks is no better off. However, his candid camera videos, which poke fun at all sectors of post-1994 South Africa, prove a big hit with stressed-out government ministers.","id":"16413","runtime":100,"imdbId":"tt0846057","version":63,"lastModified":"1301905264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/557\/4bc94bb3017a3c57fe021557\/panic-mechanic-mid.jpg","genre":"Comedy","title":"Panic Mechanic","releaseDate":852076800000,"language":"en","type":"Movie","_key":"64475"} +{"label":"Leon Schuster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/07c\/4ca3aa217b9aa16eda00007c\/leon-schuster-profile.jpg","biography":"Leon Ernest \"Schuks\" Schuster is a South African filmmaker, comedian, actor, presenter and singer.","version":31,"birthday":"-587523600000","id":"80524","birthplace":"Vereeniging, South Africa","lastModified":"1301901379000","name":"Leon Schuster","type":"Person","_key":"64476"} +{"label":"Tolla Van Der Merwe","version":18,"id":"80525","lastModified":"1301901811000","name":"Tolla Van Der Merwe","type":"Person","_key":"64477"} +{"label":"Oh Schucks.... It's Schuster!","description":"No overview found.","id":"16414","runtime":84,"version":23,"lastModified":"1300980319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bc94bb3017a3c57fe02155c\/oh-schucks-it-s-schuster-mid.jpg","genre":"Comedy","title":"Oh Schucks.... It's Schuster!","releaseDate":599616000000,"language":"en","type":"Movie","_key":"64478"} +{"label":"Sweet 'n Short","description":"No overview found.","id":"16415","runtime":90,"imdbId":"tt0293625","version":43,"lastModified":"1300980319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/561\/4bc94bb4017a3c57fe021561\/sweet-n-short-mid.jpg","genre":"Comedy","title":"Sweet 'n Short","releaseDate":662688000000,"language":"en","type":"Movie","_key":"64479"} +{"label":"Gray Hofmeyr","version":21,"id":"80526","lastModified":"1301902404000","name":"Gray Hofmeyr","type":"Person","_key":"64480"} +{"label":"Alfred Ntombela","version":22,"id":"80527","lastModified":"1301902387000","name":"Alfred Ntombela","type":"Person","_key":"64481"} +{"label":"Casper De Vries","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/060\/4ca3a90d7b9aa16ed6000060\/casper-de-vries-profile.jpg","biography":"Casper De Vries is a South African actor, comedian, entertainer, composer, director, producer and author of sketches famous for his Afrikaans one man shows.","version":24,"birthday":"-176259600000","id":"80528","birthplace":"Johannesburg, South Africa","lastModified":"1301901807000","name":"Casper De Vries","type":"Person","_key":"64482"} +{"label":"You Must Be Joking!","description":"No overview found.","id":"16416","runtime":96,"imdbId":"tt0092267","version":39,"lastModified":"1301418969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/566\/4bc94bb4017a3c57fe021566\/you-must-be-joking-mid.jpg","genre":"Comedy","title":"You Must Be Joking!","releaseDate":504921600000,"language":"en","type":"Movie","_key":"64483"} +{"label":"Elmo De Witt","version":20,"id":"80529","lastModified":"1301902363000","name":"Elmo De Witt","type":"Person","_key":"64484"} +{"label":"Mike Schutte","version":8,"id":"224792","lastModified":"1301904024000","name":"Mike Schutte","type":"Person","_key":"64485"} +{"label":"Janine Pretorius","version":8,"id":"224793","lastModified":"1301904021000","name":"Janine Pretorius","type":"Person","_key":"64486"} +{"label":"There's a Zulu on My Stoep","description":"No overview found.","id":"16417","runtime":100,"imdbId":"tt0111787","version":45,"lastModified":"1301908530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56b\/4bc94bb5017a3c57fe02156b\/there-s-a-zulu-on-my-stoep-mid.jpg","genre":"Comedy","title":"There's a Zulu on My Stoep","releaseDate":725846400000,"language":"en","type":"Movie","_key":"64487"} +{"label":"Michelle Bowes","version":19,"id":"80530","lastModified":"1301902325000","name":"Michelle Bowes","type":"Person","_key":"64488"} +{"label":"Barbie Presents: Thumbelina","description":"Meet a tiny girl named Thumbelina who lives in harmony with nature in the magical world of the Twillerbees that's hidden among the wildflowers. At the whim of a spoiled young girl named Makena, Thumbelina and her two friends have their patch of wildflowers uprooted and are transported to a lavish apartment in the city.","id":"16418","runtime":75,"imdbId":"tt1398940","homepage":"http:\/\/barbie.everythinggirl.com\/thumbelina\/","version":116,"lastModified":"1301905456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/574\/4bc94bb5017a3c57fe021574\/barbie-presents-thumbelina-mid.jpg","studio":"Rainmaker Entertainment","genre":"Animation","title":"Barbie Presents: Thumbelina","releaseDate":1235433600000,"language":"en","type":"Movie","_key":"64489"} +{"label":"Conrad Helten","version":22,"id":"92125","lastModified":"1301901967000","name":"Conrad Helten","type":"Person","_key":"64490"} +{"label":"Anna Cummer","version":18,"id":"94477","lastModified":"1301902535000","name":"Anna Cummer","type":"Person","_key":"64491"} +{"label":"Kelly Metzger","version":18,"id":"94478","lastModified":"1301902203000","name":"Kelly Metzger","type":"Person","_key":"64492"} +{"label":"Cathy Weseluck","version":18,"id":"94479","lastModified":"1301903037000","name":"Cathy Weseluck","type":"Person","_key":"64493"} +{"label":"Peter New","version":22,"id":"83424","lastModified":"1301901673000","name":"Peter New","type":"Person","_key":"64494"} +{"label":"France Perras","version":18,"id":"94480","lastModified":"1301902707000","name":"France Perras","type":"Person","_key":"64495"} +{"label":"Ashleigh Ball","version":18,"id":"94481","lastModified":"1301902706000","name":"Ashleigh Ball","type":"Person","_key":"64496"} +{"label":"Natasha Calis","version":23,"id":"94482","lastModified":"1301902376000","name":"Natasha Calis","type":"Person","_key":"64497"} +{"label":"Sean Thomson","version":18,"id":"94483","lastModified":"1301902682000","name":"Sean Thomson","type":"Person","_key":"64498"} +{"label":"Allison Cohen","version":18,"id":"94484","lastModified":"1301902682000","name":"Allison Cohen","type":"Person","_key":"64499"} +{"label":"Oh Schucks... here comes UNTAG!","description":"No overview found.","id":"16419","runtime":92,"imdbId":"tt0099961","version":32,"lastModified":"1301908530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/579\/4bc94bb6017a3c57fe021579\/oh-schucks-here-comes-untag-mid.jpg","genre":"Comedy","title":"Oh Schucks... here comes UNTAG!","releaseDate":631152000000,"language":"en","type":"Movie","_key":"64500"} +{"label":"Bill Flynn","version":20,"id":"80531","lastModified":"1301901824000","name":"Bill Flynn","type":"Person","_key":"64501"} +{"label":"Othello","description":"The evil Iago pretends to be friend of Othello in order to manipulate him to serve his own end in the film version of this Shakespeare classic.","id":"16420","runtime":123,"imdbId":"tt0114057","trailer":"http:\/\/www.youtube.com\/watch?v=RAYuASqrs94","version":109,"lastModified":"1302128247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57e\/4bc94bb6017a3c57fe02157e\/othello-mid.jpg","studio":"Castle Rock Entertainment","genre":"Drama","title":"Othello","releaseDate":818985600000,"language":"en","type":"Movie","_key":"64502"} +{"label":"Indra Ov\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/736\/4d9d02737b9aa10720000736\/indra-ov-profile.jpg","version":9,"id":"232174","birthplace":"London, United Kingdom","lastModified":"1302128249000","name":"Indra Ov\u00e9","type":"Person","_key":"64503"} +{"label":"Die Eylandt Recherche","description":"No overview found.","id":"16421","runtime":0,"imdbId":"tt1299360","version":67,"lastModified":"1301908360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/587\/4bc94bb7017a3c57fe021587\/die-eylandt-recherche-mid.jpg","title":"Die Eylandt Recherche","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64504"} +{"label":"The Caller","description":"Jimmy Stevens, a senior VP at an international energy firm, blows the whistle on his company's deadly and corrupt practices in Latin America. Knowing he will be assassinated for his betrayal, he places an anonymous call securing the services of private detective Frank Turlotte to trail him from a distance.","id":"16422","runtime":95,"imdbId":"tt1049956","version":123,"lastModified":"1301904613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/598\/4bc94bbb017a3c57fe021598\/the-caller-mid.jpg","studio":"Belladonna Productions","genre":"Drama","title":"The Caller","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"64505"} +{"label":"Richard Ledes","version":19,"id":"80532","lastModified":"1301901863000","name":"Richard Ledes","type":"Person","_key":"64506"} +{"label":"Les Aimants","description":"No overview found.","id":"16423","runtime":91,"imdbId":"tt0409673","version":98,"lastModified":"1301904015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1e\/4d84fbf55e73d653aa002f1e\/les-aimants-mid.jpg","title":"Les Aimants","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"64507"} +{"label":"St\u00e9phane Gagnon","version":6,"id":"229424","lastModified":"1301904059000","name":"St\u00e9phane Gagnon","type":"Person","_key":"64508"} +{"label":"Emmanuel Bilodeau","version":23,"id":"123926","lastModified":"1301902534000","name":"Emmanuel Bilodeau","type":"Person","_key":"64509"} +{"label":"Jos\u00e9e Desch\u00eanes","version":5,"id":"229425","lastModified":"1301904095000","name":"Jos\u00e9e Desch\u00eanes","type":"Person","_key":"64510"} +{"label":"Isabelle Blais","version":22,"id":"90676","lastModified":"1301902995000","name":"Isabelle Blais","type":"Person","_key":"64511"} +{"label":"Sylvie Moreau","version":26,"id":"84583","lastModified":"1301902057000","name":"Sylvie Moreau","type":"Person","_key":"64512"} +{"label":"David Savard","version":19,"id":"132830","lastModified":"1301903005000","name":"David Savard","type":"Person","_key":"64513"} +{"label":"Yves Pelletier","version":21,"id":"123925","lastModified":"1301902538000","name":"Yves Pelletier","type":"Person","_key":"64514"} +{"label":"Bob the Builder: On Site - Skyscrapers","description":"No overview found.","id":"16424","runtime":0,"version":67,"lastModified":"1301908379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a1\/4bc94bbc017a3c57fe0215a1\/bob-the-builder-on-site-skyscrapers-mid.jpg","genre":"Animation","title":"Bob the Builder: On Site - Skyscrapers","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64515"} +{"label":"Assassination Tango","description":"John J. is a seasoned hit man sent on a job to Argentina. When the General he's sent to kill delays his return to the country, John passes the time with Manuela, a beautiful dancer who becomes his teacher and guide into Argentina's sensual world of the tango.","id":"16425","runtime":114,"imdbId":"tt0283897","version":198,"lastModified":"1301905969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc94bbd017a3c57fe0215af\/assassination-tango-mid.jpg","studio":"American Zoetrope","genre":"Drama","title":"Assassination Tango","releaseDate":1062633600000,"language":"en","type":"Movie","_key":"64516"} +{"label":"Luciana Pedraza","version":19,"id":"87189","lastModified":"1301902459000","name":"Luciana Pedraza","type":"Person","_key":"64517"} +{"label":"100 Mile Rule","description":"No overview found.","id":"16426","runtime":98,"imdbId":"tt0299422","version":117,"lastModified":"1301906055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b4\/4bc94bbd017a3c57fe0215b4\/100-mile-rule-mid.jpg","genre":"Comedy","title":"100 Mile Rule","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"64518"} +{"label":"A Day Without a Mexican","description":"One morning, California wakes up to find that one-third of its population -- the Hispanic third -- has disappeared. A strange pink fog envelops the state, and communication outside its boundaries is completely cut off. The economic, political and social implications of this disaster threaten California's way of life, and for a group of disparate people (all white, except for one Latina), the cracks in their private lives are forced wide open.","id":"16427","runtime":100,"imdbId":"tt0377744","version":127,"lastModified":"1301907573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/513\/4cea22cd5e73d62590000513\/a-day-without-a-mexican-mid.jpg","genre":"Comedy","title":"A Day Without a Mexican","releaseDate":1091750400000,"language":"en","type":"Movie","_key":"64519"} +{"label":"Sergio Arau","version":21,"id":"120871","lastModified":"1301903034000","name":"Sergio Arau","type":"Person","_key":"64520"} +{"label":"Melinda Allen","version":20,"id":"120874","lastModified":"1301902986000","name":"Melinda Allen","type":"Person","_key":"64521"} +{"label":"Frankie J. Allison","version":20,"id":"120875","lastModified":"1301902986000","name":"Frankie J. Allison","type":"Person","_key":"64522"} +{"label":"Breakin' All the Rules","description":"Inspired by his fianc\u00e9e (who dumped him), a man publishes a break-up handbook for men, becoming a bestselling author in the process.","id":"16428","runtime":85,"imdbId":"tt0349169","version":139,"lastModified":"1301902626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c2\/4bc94bbd017a3c57fe0215c2\/breakin-all-the-rules-mid.jpg","studio":"Screen Gems","genre":"Comedy","title":"Breakin' All the Rules","releaseDate":1084492800000,"language":"en","tagline":"When it comes to getting dumped... He wrote the book.","type":"Movie","_key":"64523"} +{"label":"Daniel Taplitz","version":26,"id":"74063","lastModified":"1301901780000","name":"Daniel Taplitz","type":"Person","_key":"64524"} +{"label":"Brothers of the Head","description":"In the 1970s a music promoter plucks Siamese twins from obscurity and grooms them into a freakish rock'n'roll act. A dark tale of sex, strangeness and rock music.","id":"16429","runtime":93,"imdbId":"tt0432260","version":120,"lastModified":"1301908047000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d3\/4bc94bbf017a3c57fe0215d3\/brothers-of-the-head-mid.jpg","genre":"Drama","title":"Brothers of the Head","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"64525"} +{"label":"Dandelion","description":"In a small town of rolling fields and endless skies, isolated 16 year old Mason lives in a world where families exist in fragmented silence and love seems to have gone missing. Then Mason meets Danny, a sensitive and troubled girl, and their tender bond is soon tested after a fatal accident and a series of complications takes Mason away for something he didn't do. ","id":"16430","runtime":93,"imdbId":"tt0338133","version":94,"lastModified":"1301905463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dc\/4bc94bc0017a3c57fe0215dc\/dandelion-mid.jpg","title":"Dandelion","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"64526"} +{"label":"Dark Heaven","description":"No overview found.","id":"16431","runtime":87,"imdbId":"tt0391044","version":1153,"lastModified":"1301846806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e1\/4bc94bc0017a3c57fe0215e1\/dark-heaven-mid.jpg","genre":"Science Fiction","title":"Dark Heaven","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64527"} +{"label":"Day of Wrath","description":"At the height of the Spanish Inquisition, high-ranking noblemen begin dropping like flies, with alarming frequency and unexplained violence. But can local 16th-century sheriff Ruy de Mendoza (Christopher Lambert) discern who's responsible when no one wants to cooperate? After all, before Mendoza can even identify the bodies, the crime scenes are mysteriously cleared -- and the villagers pretend the murders never happened.","id":"16432","runtime":109,"imdbId":"tt0353357","version":236,"lastModified":"1301418285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e6\/4bc94bc0017a3c57fe0215e6\/day-of-wrath-mid.jpg","genre":"Action","title":"Day of Wrath","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"64528"} +{"label":"Grand Theft Parsons","description":"No overview found.","id":"16433","runtime":88,"imdbId":"tt0338075","version":102,"lastModified":"1301906466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f5\/4bc94bc1017a3c57fe0215f5\/grand-theft-parsons-mid.jpg","title":"Grand Theft Parsons","releaseDate":1087516800000,"language":"en","type":"Movie","_key":"64529"} +{"label":"Speaking of Sex","description":"A female marriage counselor and a male depression expert try to solve the marital problems of a troubled couple.","id":"16435","runtime":96,"imdbId":"tt0243575","trailer":"http:\/\/www.youtube.com\/watch?v=r5WZzC6vMZ0","version":302,"lastModified":"1301906466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/603\/4bc94bc1017a3c57fe021603\/speaking-of-sex-mid.jpg","studio":"Canal Plus","genre":"Comedy","title":"Speaking of Sex","releaseDate":1032480000000,"language":"en","type":"Movie","_key":"64530"} +{"label":"North Face","description":"North Face tells the story of two German climbers Toni Kurz and Andreas Hinterstoisser and their attempt to scale the deadly North Face of the Eiger.","id":"16436","runtime":121,"imdbId":"tt0844457","trailer":"http:\/\/www.youtube.com\/watch?v=Of9fd6smarA","homepage":"http:\/\/www.nordwand-film.de\/","version":192,"lastModified":"1301904521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/619\/4bc94bc6017a3c57fe021619\/nordwand-mid.jpg","studio":"Dor Film Produktionsgesellschaft GmbH","genre":"Action","title":"North Face","releaseDate":1224720000000,"language":"en","type":"Movie","_key":"64531"} +{"label":"Peter Zumstein","version":22,"id":"113503","lastModified":"1301902459000","name":"Peter Zumstein","type":"Person","_key":"64532"} +{"label":"Martin Schick","version":21,"id":"90523","lastModified":"1301902141000","name":"Martin Schick","type":"Person","_key":"64533"} +{"label":"Philipp St\u00f6lzl","version":24,"id":"113500","lastModified":"1301902723000","name":"Philipp St\u00f6lzl","type":"Person","_key":"64534"} +{"label":"Cyborg 2","description":"It's high-tech corporate warfare in the year 2074, when cyborgs (robots in human form) have replaced humans at all levels. A malicious American cyborg manufacturing company plots to take over their chief competitor by liquidating their entire chain of command. The coporation's scheme is lethal; inject one of their own cyborgs, beautiful Cash Resse (Angelina Jolie), with a powerful new liquid explosive that detonates her and everyone in sight.\r<br>\r<br>\rBut the wise and benevolet tech-master Me","id":"16437","runtime":99,"imdbId":"tt0106639","version":292,"lastModified":"1302113927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00e\/4c1b68d47b9aa117a400000e\/cyborg-2-mid.jpg","genre":"Action","title":"Cyborg 2","releaseDate":732240000000,"language":"en","type":"Movie","_key":"64535"} +{"label":"Venkovsk\u00fd u\u010ditel","description":"A gifted and well-qualified young teacher takes a job teaching natural sciences at a grammar school in the country. Here he makes the acquaintance of a woman and her troubled 17-year old son. The teac... read more read more...her has no romantic interest in the woman but they quickly form a strong friendship, each recognizing the other's uncertainties, hopes and longing for love.","id":"16439","runtime":117,"imdbId":"tt1284526","version":49,"lastModified":"1300980327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62b\/4bc94bc7017a3c57fe02162b\/venkovsky-ucitel-mid.jpg","genre":"Drama","title":"Venkovsk\u00fd u\u010ditel","releaseDate":1238112000000,"language":"en","type":"Movie","_key":"64536"} +{"label":"Barbora Hrz\u00e1nov\u00e1","version":20,"id":"83878","lastModified":"1301901946000","name":"Barbora Hrz\u00e1nov\u00e1","type":"Person","_key":"64537"} +{"label":"Bohdan Sl\u00e1ma","version":21,"id":"111216","lastModified":"1301902953000","name":"Bohdan Sl\u00e1ma","type":"Person","_key":"64538"} +{"label":"Tales of the Black Freighter","description":"A mariner survives an attack from the dreaded pirates of the Black Freighter, but his struggle to return home to warn it has a horrific cost.","id":"16440","runtime":26,"imdbId":"tt1295071","trailer":"http:\/\/www.youtube.com\/watch?v=Hp8Fw8ARNqk","version":213,"lastModified":"1301903050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/634\/4bc94bc8017a3c57fe021634\/tales-of-the-black-freighter-mid.jpg","genre":"Action","title":"Tales of the Black Freighter","releaseDate":1237852800000,"language":"en","type":"Movie","_key":"64539"} +{"label":"The Beastmaster","description":"Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals. After that, Dar begins his quest for revenge in this Conan-like movie.","id":"16441","runtime":118,"imdbId":"tt0083630","version":121,"lastModified":"1301904346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64f\/4bc94bcb017a3c57fe02164f\/the-beastmaster-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"The Beastmaster","releaseDate":398649600000,"language":"en","type":"Movie","_key":"64540"} +{"label":"Sergeant York","description":"Alvin York a hillbilly sharpshooter transforms himself from ruffian to religious pacifist. He is then called to serve his country and despite deep religious and moral objections to fighting becomes one of the most celebrated American heroes of WWI.","id":"16442","runtime":134,"imdbId":"tt0034167","version":81,"lastModified":"1301903808000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/667\/4bc94bd0017a3c57fe021667\/sergeant-york-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Sergeant York","releaseDate":-891907200000,"language":"en","type":"Movie","_key":"64541"} +{"label":"First of the Few","description":"This 1942 fictionalized biopic chronicles the true story of how two of the most remarkable men in aviation history - visionary Spitfire designer R.J. Mitchell and his test pilot Geoffrey Crisp - designed a streamlined monoplane that led to the development of the Spitfire.","id":"16444","runtime":118,"imdbId":"tt0034734","version":90,"lastModified":"1301905623000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4bc94bd0017a3c57fe021670\/the-first-of-the-few-mid.jpg","studio":"British Aviation Pictures","genre":"History","title":"First of the Few","releaseDate":-861494400000,"language":"en","type":"Movie","_key":"64542"} +{"label":"Rosamund John","version":19,"birthday":"-1773622800000","id":"104300","birthplace":"London, England","lastModified":"1301902459000","name":"Rosamund John","type":"Person","_key":"64543"} +{"label":"Anne Firth","version":18,"birthday":"-1622685600000","id":"119341","birthplace":"Westcliff-on-Sea, Essex, England","lastModified":"1301902632000","name":"Anne Firth","type":"Person","_key":"64544"} +{"label":"David Horne","version":18,"birthday":"-2255302800000","id":"119342","birthplace":"Balcombe, Sussex, England","lastModified":"1301902632000","name":"David Horne","type":"Person","_key":"64545"} +{"label":"Rosalyn Boulter","version":18,"birthday":"-1669856400000","id":"119343","birthplace":"Burton-on-Trent, Staffordshire, England","lastModified":"1301902632000","name":"Rosalyn Boulter","type":"Person","_key":"64546"} +{"label":"Herbert Cameron","version":18,"birthday":"-2833664400000","id":"119344","lastModified":"1301902632000","name":"Herbert Cameron","type":"Person","_key":"64547"} +{"label":"Toni Edgar-Bruce","version":19,"birthday":"-2448061200000","id":"119345","birthplace":"London, England","lastModified":"1301902632000","name":"Toni Edgar-Bruce","type":"Person","_key":"64548"} +{"label":"Gordon McLeod","version":19,"birthday":"-2493421200000","id":"109850","birthplace":"Market Giffard, Ivybridge, Devonshire, England","lastModified":"1301902632000","name":"Gordon McLeod","type":"Person","_key":"64549"} +{"label":"George Skillan","version":18,"birthday":"-2406070800000","id":"119347","birthplace":"Woodford, England","lastModified":"1301902632000","name":"George Skillan","type":"Person","_key":"64550"} +{"label":"Erik Freund","version":21,"id":"119353","lastModified":"1301902632000","name":"Erik Freund","type":"Person","_key":"64551"} +{"label":"Fritz Wendhausen","version":20,"id":"119357","lastModified":"1301902632000","name":"Fritz Wendhausen","type":"Person","_key":"64552"} +{"label":"Victor Beaumont","version":19,"birthday":"-1551056400000","id":"119360","birthplace":"Berlin, Germany","lastModified":"1301902632000","name":"Victor Beaumont","type":"Person","_key":"64553"} +{"label":"Suzanne Clair","version":18,"id":"119361","lastModified":"1301902887000","name":"Suzanne Clair","type":"Person","_key":"64554"} +{"label":"Filippo Del Giudice","version":18,"birthday":"-2454109200000","id":"119362","birthplace":"Trani, Apulia, Italy","lastModified":"1301902632000","name":"Filippo Del Giudice","type":"Person","_key":"64555"} +{"label":"Brefni O'Rorke","version":20,"birthday":"-2540854800000","id":"119363","birthplace":"Dublin, Ireland","lastModified":"1301902632000","name":"Brefni O'Rorke","type":"Person","_key":"64556"} +{"label":"Gerry Wilmot","version":18,"birthday":"-1413680400000","id":"119364","birthplace":"England","lastModified":"1301902632000","name":"Gerry Wilmot","type":"Person","_key":"64557"} +{"label":"Jack Peach","version":22,"id":"119365","lastModified":"1301902698000","name":"Jack Peach","type":"Person","_key":"64558"} +{"label":"The Woods Have Eyes","description":"When a group of young campers wander into the backwoods of upstate New York to see if Cappy's Cabin--a place they think exists only in urban legend--is real, they find themselves in a twisted game of predator and prey as night begins to fall. All they have to do is survive until dawn, but Cappy is very, very real, and night has only just begun...","id":"16445","runtime":90,"imdbId":"tt0835384","version":60,"lastModified":"1301908284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/675\/4bc94bd1017a3c57fe021675\/the-woods-have-eyes-mid.jpg","genre":"Indie","title":"The Woods Have Eyes","releaseDate":1192492800000,"language":"en","type":"Movie","_key":"64559"} +{"label":"Yeojaneun namjaui miraeda","description":"No overview found.","id":"16447","runtime":88,"imdbId":"tt0403692","version":27,"lastModified":"1300980328000","title":"Yeojaneun namjaui miraeda","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64560"} +{"label":"Waiting For Guffman","description":"Corky St. Clair is a director, actor and dancer in Blaine, Missouri. When it comes time to celebrate Blaine's 150th anniversary, Corky resolves to bring down the house in Broadway style in this hilarious mockumentary from the people who brought you \"This is Spinal Tap!\"","id":"16448","runtime":84,"imdbId":"tt0118111","version":131,"lastModified":"1301905763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4d3688725e73d6335b00c55c\/waiting-for-guffman-mid.jpg","genre":"Comedy","title":"Waiting For Guffman","releaseDate":840585600000,"language":"en","tagline":"There are reasons some talent remains undiscovered.","type":"Movie","_key":"64561"} +{"label":"Tin shui wai dik yat yu ye","description":"No overview found.","id":"16449","runtime":90,"imdbId":"tt1233499","version":41,"lastModified":"1300980328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/688\/4bc94bd6017a3c57fe021688\/tin-shui-wai-dik-yat-yu-ye-mid.jpg","title":"Tin shui wai dik yat yu ye","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64562"} +{"label":"Hero Wanted","description":"Liam Case is a garbage man whose life hasn't quite turned out the way he expected it would. In order to impress the girl of his dreams, Liam plans an elaborate heist that will culminate with him jumping in to save the day at the last minute. When the day of the heist arrives, however, the plan takes an unexpected turn and Liam winds up in the hospital.","id":"16450","runtime":95,"imdbId":"tt0977214","trailer":"http:\/\/www.youtube.com\/watch?v=1233","version":224,"lastModified":"1301902364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a86\/4d0e70ba7b9aa10254002a86\/hero-wanted-mid.jpg","studio":"Heroic Productions","genre":"Action","title":"Hero Wanted","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"64563"} +{"label":"Brian Smrz","version":27,"id":"15335","lastModified":"1301901691000","name":"Brian Smrz","type":"Person","_key":"64564"} +{"label":"The Comedians of Comedy","description":"The Comedians of Comedy is an occasional stand-up comedy tour featuring Patton Oswalt, Zach Galifianakis, Brian Posehn and Maria Bamford that was documented in a 2005 film and 2005 Comedy Central television series of the same name, both directed by Michael Blieden.","id":"16452","runtime":103,"imdbId":"tt0451021","version":146,"lastModified":"1301905348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a7\/4bc94bd8017a3c57fe0216a7\/the-comedians-of-comedy-mid.jpg","genre":"Comedy","title":"The Comedians of Comedy","releaseDate":1109635200000,"language":"en","type":"Movie","_key":"64565"} +{"label":"Zach Galifianakis: Live at the Purple Onion","description":"From an inauspicious beginning performing comedy routines in the back of a burger joint in New York, unorthodox stand-up star Zach Galifianakis has made a splash on the scene with his inimitable brand of humor. In this live show filmed at San Francisco's Purple Onion nightclub, the versatile funnyman serves up a healthy dose of his signature wit.","id":"16453","runtime":0,"imdbId":"tt0804558","version":290,"lastModified":"1301905184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b4\/4bc94bd8017a3c57fe0216b4\/zach-galifianakis-live-at-the-purple-onion-mid.jpg","genre":"Comedy","title":"Zach Galifianakis: Live at the Purple Onion","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"64566"} +{"label":"Zach Galifianakis - Look Who It Isn't","description":"Self-released DVD showcasing a variety of Zach Galifianakis' comedy routines. Includes clips from VH-1's \"Late World with Zach\" and some of Zach's stand-up appearances.","id":"16454","runtime":68,"version":33,"lastModified":"1301904711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bd\/4bc94bd9017a3c57fe0216bd\/zach-galifianakis-look-who-it-isn-t-mid.jpg","title":"Zach Galifianakis - Look Who It Isn't","releaseDate":1117584000000,"language":"en","type":"Movie","_key":"64567"} +{"label":"The Magic Roundabout","description":"A shaggy, candy-loving puppy named Dougal along with a group of friends embarks on a dangerous journey in an effort to imprison their oppressor -- the evil ice sorcerer ZeeBad (Zebedee's evil twin). As the world is placed in mortal danger Zeebad who wants to turn the world to ice. Doogal and his friends must recover 3 diamonds that are needed to stop him.","id":"16455","runtime":85,"imdbId":"tt0339334","homepage":"http:\/\/www.the-magic-roundabout.com","version":116,"lastModified":"1301903996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c6\/4bc94bd9017a3c57fe0216c6\/the-magic-roundabout-mid.jpg","studio":"Action Films","genre":"Animation","title":"The Magic Roundabout","releaseDate":1107302400000,"language":"en","type":"Movie","_key":"64568"} +{"label":"Robbie Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/865\/4cccba1c5e73d65022000865\/robbie-williams-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Robert Peter \"Robbie\" Williams<\/b><sup id=\"cite_ref-0\" class=\"reference\" style=\"line-height: 1em; font-weight: normal; font-style: normal; \"><a href=\"http:\/\/en.wikipedia.org\/wiki\/Robbie_Williams#cite_note-0\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; white-space: nowrap; b","version":29,"id":"80535","lastModified":"1301901855000","name":"Robbie Williams","type":"Person","_key":"64569"} +{"label":"Dave Borthwick","version":21,"id":"80537","lastModified":"1301902053000","name":"Dave Borthwick","type":"Person","_key":"64570"} +{"label":"Jean Duval","version":19,"id":"80538","lastModified":"1301901863000","name":"Jean Duval","type":"Person","_key":"64571"} +{"label":"Frank Passingham","version":33,"id":"53332","lastModified":"1301902151000","name":"Frank Passingham","type":"Person","_key":"64572"} +{"label":"The Crow: Wicked Prayer","description":"Jimmy Cuervo is a down-on-his-luck ex-con living in a polluted mining town on a reservation that would run him out of town if not for the remainder of his probation. With his time nearly finished, he plans to start a new life with his girlfriend Lily , and leave the town for good. But Luc Crash and Lola Byrne head up a local gang of local Satanists who murder Jimmy and Lily in a brutal ritual.","id":"16456","runtime":99,"imdbId":"tt0353324","trailer":"http:\/\/www.youtube.com\/watch?v=SKHTr5wGU4E","version":170,"lastModified":"1301904389000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cf\/4bc94bda017a3c57fe0216cf\/the-crow-wicked-prayer-mid.jpg","genre":"Action","title":"The Crow: Wicked Prayer","releaseDate":1126656000000,"language":"en","type":"Movie","_key":"64573"} +{"label":"Lance Mungia","version":23,"id":"116653","lastModified":"1301902614000","name":"Lance Mungia","type":"Person","_key":"64574"} +{"label":"Little Britain Live","description":"The many hilarious characters of Little Britain are taken to the stage in this brilliant live performance by Matt Lucas and David Walliams.","id":"16458","runtime":79,"imdbId":"tt0928147","homepage":"http:\/\/www.bbc.co.uk\/comedy\/littlebritain\/","version":130,"lastModified":"1301906350000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d4\/4bc94bda017a3c57fe0216d4\/little-britain-live-mid.jpg","genre":"Comedy","title":"Little Britain Live","releaseDate":1163376000000,"language":"en","type":"Movie","_key":"64575"} +{"label":"David Walliams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2cb\/4cf1c3255e73d61e3b0002cb\/david-walliams-profile.jpg","version":32,"id":"80536","lastModified":"1301901376000","name":"David Walliams","type":"Person","_key":"64576"} +{"label":"Garfield Gets Real","description":"Garfield is back with a new look. Tired with his routine as a comic strip star, Garfield escapes the page and heads into the \"real world.\" While living the low-key life of a real housecat, he learns his comic will be cancelled if he doesn't return before the newspaper goes to print. The video games will follow the storyline as Garfield plows through obstacles to make his way back home. ","id":"16460","runtime":75,"imdbId":"tt1059793","homepage":"http:\/\/garfield.com\/d2v\/index.html","version":293,"lastModified":"1301903433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dd\/4bc94bda017a3c57fe0216dd\/garfield-gets-real-mid.jpg","studio":"Wonderworld Studios","genre":"Animation","title":"Garfield Gets Real","releaseDate":1191196800000,"language":"en","type":"Movie","_key":"64577"} +{"label":"Roundhay Garden Scene","description":"No overview found.","id":"16463","runtime":0,"imdbId":"tt0392728","version":142,"lastModified":"1301904573000","title":"Roundhay Garden Scene","releaseDate":-2587680000000,"language":"en","type":"Movie","_key":"64578"} +{"label":"Harriet Hartley","version":19,"id":"80643","lastModified":"1301901947000","name":"Harriet Hartley","type":"Person","_key":"64579"} +{"label":"Adolphe Le Prince","version":19,"id":"80644","lastModified":"1301901947000","name":"Adolphe Le Prince","type":"Person","_key":"64580"} +{"label":"Joseph Whitley","version":20,"id":"80645","lastModified":"1301901673000","name":"Joseph Whitley","type":"Person","_key":"64581"} +{"label":"Sarah Whitley","version":19,"id":"80646","lastModified":"1301901778000","name":"Sarah Whitley","type":"Person","_key":"64582"} +{"label":"Traffic Crossing Leeds Bridge","description":"No overview found.","id":"16464","runtime":0,"imdbId":"tt0343112","version":79,"lastModified":"1302120138000","title":"Traffic Crossing Leeds Bridge","releaseDate":-2587680000000,"language":"en","type":"Movie","_key":"64583"} +{"label":"Le chaudron infernal","description":"No overview found.","id":"16465","runtime":2,"imdbId":"tt0135180","version":48,"lastModified":"1301908467000","genre":"Fantasy","title":"Le chaudron infernal","releaseDate":-2089411200000,"language":"en","type":"Movie","_key":"64584"} +{"label":"Modern Problems","description":"Jealous, harried air traffic controller Max Fielder, recently dumped by his girlfriend, comes into contact with nuclear waste and is granted the power of telekinesis, which he uses to not only win her back, but to gain a little revenge.","id":"16471","runtime":89,"imdbId":"tt0082763","version":156,"lastModified":"1301903677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4c629eda7b9aa172de000542\/modern-problems-mid.jpg","genre":"Comedy","title":"Modern Problems","releaseDate":378086400000,"language":"en","type":"Movie","_key":"64585"} +{"label":"Nell Carter","version":24,"id":"80866","lastModified":"1301902398000","name":"Nell Carter","type":"Person","_key":"64586"} +{"label":"Mitch Kreindel","version":20,"id":"128602","lastModified":"1301902794000","name":"Mitch Kreindel","type":"Person","_key":"64587"} +{"label":"Arthur Sellers","version":21,"id":"128600","lastModified":"1301902572000","name":"Arthur Sellers","type":"Person","_key":"64588"} +{"label":"Neil Thompson","version":20,"id":"128603","lastModified":"1301902794000","name":"Neil Thompson","type":"Person","_key":"64589"} +{"label":"Carl Irwin","version":20,"id":"128604","lastModified":"1301902585000","name":"Carl Irwin","type":"Person","_key":"64590"} +{"label":"Ken Shapiro","version":21,"id":"99339","lastModified":"1301902668000","name":"Ken Shapiro","type":"Person","_key":"64591"} +{"label":"The Spirit of Christmas","description":"Four children, all but one of whom go unnamed, build a snowman which comes to life and threatens their town.","id":"16486","runtime":4,"imdbId":"tt0144618","version":71,"lastModified":"1301906014000","studio":"Avenging Conscience","genre":"Animation","title":"The Spirit of Christmas","releaseDate":723168000000,"language":"en","type":"Movie","_key":"64592"} +{"label":"The Spirit of Christmas","description":"No overview found.","id":"16487","runtime":5,"imdbId":"tt0122264","version":62,"lastModified":"1301904037000","studio":"Avenging Conscience","genre":"Animation","title":"The Spirit of Christmas","releaseDate":788918400000,"language":"en","type":"Movie","_key":"64593"} +{"label":"Doug's 1st Movie","description":"No overview found.","id":"16508","runtime":77,"imdbId":"tt0187819","version":75,"lastModified":"1301904187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e8\/4d224a125e73d66b270036e8\/doug-s-1st-movie-mid.jpg","genre":"Animation","title":"Doug's 1st Movie","releaseDate":922406400000,"language":"en","type":"Movie","_key":"64594"} +{"label":"Confessions of a Superhero","description":"CONFESSIONS OF A SUPERHERO is a feature length documentary chronicling the lives of three mortal men and one woman who make their living working as superhero characters on the sidewalks of Hollywood Boulevard. This deeply personal view into their daily routines reveals their hardships, and triumphs, as they pursue and achieve their own kind of fame.\tThe Hulk sold his Super Nintendo for a bus ticket to LA; Wonder Woman was a mid-western homecoming queen; Batman struggles with his anger, while Sup","id":"16509","runtime":92,"imdbId":"tt1016164","version":127,"lastModified":"1301905951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/068\/4ce6a47c7b9aa17c8c000068\/confessions-of-a-superhero-mid.jpg","genre":"Documentary","title":"Confessions of a Superhero","releaseDate":1193961600000,"language":"en","type":"Movie","_key":"64595"} +{"label":"The Deal: Sexy Backstage","description":"Charlie Berns (William H. Macy) is a veteran Hollywood movie producer who has given up on his career and life. That is until his idealistic screenwriter nephew (Jason Ritter) comes bearing the script of a lifetime and Charlie decides to give his career one final shot. The only thing standing in his way is Diedre Hearn (Meg Ryan), a sharp-witted studio executive brought in to keep Charlie in line. ","id":"16511","runtime":98,"imdbId":"tt0848281","trailer":"http:\/\/www.youtube.com\/watch?v=1082","homepage":"http:\/\/www.thedeal-movie.com\/","version":174,"lastModified":"1301905111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f7\/4bc94bdf017a3c57fe0216f7\/the-deal-mid.jpg","studio":"Peace Arch Entertainment Group","genre":"Comedy","title":"The Deal: Sexy Backstage","language":"en","type":"Movie","_key":"64596"} +{"label":"Steven Schachter","version":41,"id":"80548","lastModified":"1301902364000","name":"Steven Schachter","type":"Person","_key":"64597"} +{"label":"Loufa-I4","description":"\u039c\u03b9\u03b1 \u03c0\u03b1\u03c1\u03ad\u03b1 \u03bd\u03b5\u03bf\u03c3\u03cd\u03bb\u03bb\u03b5\u03ba\u03c4\u03c9\u03bd -\u03c0\u03bf\u03c5 \u03bf \u03ba\u03b1\u03b8\u03ad\u03bd\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c4\u03bf\u03c5 \u03bb\u03cc\u03b3\u03bf\u03c5\u03c2 \u03b8\u03ad\u03bb\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03b9 \u03b1\u03c0\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03c4\u03c1\u03b1\u03c4\u03cc- \u03b1\u03bd\u03b1\u03b3\u03ba\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c9\u03c2 \u03994. \u0397 \u03c0\u03b1\u03c1\u03ad\u03b1 \u03b8\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c3' \u03ad\u03bd\u03b1 \u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc \u03bd\u03b7\u03c3\u03af \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c4\u03b5\u03c4\u03b1\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1: \u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03af\u03be\u03bf\u03c5\u03bd \u03c4\u03bf\u03c5\u03c2 \"\u03bb\u03b1\u03b3\u03bf\u03cd\u03c2\" \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b7\u03c0\u03ac\u03c1\u03be\u03bf\u03c5\u03bd \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03bf\u03ba\u03b1\u03c4\u03b6\u03ae\u03b4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b5\u03c4\u03bf\u03b9\u03bc\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03bc\u03af\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ac\u03c3\u03ba\u03b7\u03c3\u03b7.","id":"16513","runtime":94,"homepage":"http:\/\/www.loufa-i4.gr\/","version":30,"lastModified":"1301908284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70c\/4bc94be2017a3c57fe02170c\/loufa-i4-mid.jpg","studio":"Odeon Film","genre":"Action","title":"Loufa-I4","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64598"} +{"label":"\u0392\u03b1\u03c3\u03af\u03bb\u03b7\u03c2 \u039a\u03b1\u03c4\u03c3\u03b9\u03ba\u03b7\u03c2","version":15,"id":"80551","lastModified":"1301902066000","name":"\u0392\u03b1\u03c3\u03af\u03bb\u03b7\u03c2 \u039a\u03b1\u03c4\u03c3\u03b9\u03ba\u03b7\u03c2","type":"Person","_key":"64599"} +{"label":"\u0398\u03b1\u03bd\u03ac\u03c3\u03b7\u03c2 \u03a4\u03c3\u03b1\u03bb\u03c4\u03b1\u03bc\u03c0\u03ac\u03c3\u03b7\u03c2","version":15,"id":"80553","lastModified":"1301902239000","name":"\u0398\u03b1\u03bd\u03ac\u03c3\u03b7\u03c2 \u03a4\u03c3\u03b1\u03bb\u03c4\u03b1\u03bc\u03c0\u03ac\u03c3\u03b7\u03c2","type":"Person","_key":"64600"} +{"label":"\u03a3\u03c4\u03ac\u03b8\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03c9\u03c4\u03af\u03b4\u03b7\u03c2","version":15,"id":"80554","lastModified":"1301902459000","name":"\u03a3\u03c4\u03ac\u03b8\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03c9\u03c4\u03af\u03b4\u03b7\u03c2","type":"Person","_key":"64601"} +{"label":"\u03a7\u03ac\u03c1\u03b7\u03c2 \u039c\u03b1\u03c5\u03c1\u03bf\u03c5\u03b4\u03ae\u03c2","version":15,"id":"80555","lastModified":"1301902459000","name":"\u03a7\u03ac\u03c1\u03b7\u03c2 \u039c\u03b1\u03c5\u03c1\u03bf\u03c5\u03b4\u03ae\u03c2","type":"Person","_key":"64602"} +{"label":"\u03a0\u03ad\u03c4\u03c1\u03bf\u03c2 \u039b\u03b1\u03b3\u03bf\u03cd\u03c4\u03b7\u03c2","version":15,"id":"80556","lastModified":"1301902066000","name":"\u03a0\u03ad\u03c4\u03c1\u03bf\u03c2 \u039b\u03b1\u03b3\u03bf\u03cd\u03c4\u03b7\u03c2","type":"Person","_key":"64603"} +{"label":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u039a\u03b9\u03bc\u03bf\u03cd\u03bb\u03b7\u03c2","version":15,"id":"80557","lastModified":"1301902459000","name":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u039a\u03b9\u03bc\u03bf\u03cd\u03bb\u03b7\u03c2","type":"Person","_key":"64604"} +{"label":"\u039c\u03ac\u03bd\u03bf\u03c2 \u0393\u03b1\u03b2\u03c1\u03ac\u03c2","version":15,"id":"80558","lastModified":"1301902066000","name":"\u039c\u03ac\u03bd\u03bf\u03c2 \u0393\u03b1\u03b2\u03c1\u03ac\u03c2","type":"Person","_key":"64605"} +{"label":"\u039d\u03af\u03ba\u03bf\u03c2 \u0392\u03bf\u03c5\u03c1\u03bb\u03b9\u03ce\u03c4\u03b7\u03c2","version":15,"id":"80559","lastModified":"1301902066000","name":"\u039d\u03af\u03ba\u03bf\u03c2 \u0392\u03bf\u03c5\u03c1\u03bb\u03b9\u03ce\u03c4\u03b7\u03c2","type":"Person","_key":"64606"} +{"label":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03c4\u03cc\u03bc\u03bf\u03c5","version":15,"id":"80560","lastModified":"1301902459000","name":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03c4\u03cc\u03bc\u03bf\u03c5","type":"Person","_key":"64607"} +{"label":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u039a\u03bf\u03c8\u03b9\u03b4\u03ac\u03c2","version":15,"id":"80561","lastModified":"1301902459000","name":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u039a\u03bf\u03c8\u03b9\u03b4\u03ac\u03c2","type":"Person","_key":"64608"} +{"label":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u03a7\u03c1\u03b1\u03bd\u03b9\u03ce\u03c4\u03b7\u03c2","version":15,"id":"80562","lastModified":"1301902066000","name":"\u0393\u03b9\u03ce\u03c1\u03b3\u03bf\u03c2 \u03a7\u03c1\u03b1\u03bd\u03b9\u03ce\u03c4\u03b7\u03c2","type":"Person","_key":"64609"} +{"label":"\u039c\u03b1\u03c1\u03af\u03b1 \u039a\u03bf\u03c1\u03b9\u03bd\u03b8\u03af\u03bf\u03c5","version":15,"id":"80563","lastModified":"1301902066000","name":"\u039c\u03b1\u03c1\u03af\u03b1 \u039a\u03bf\u03c1\u03b9\u03bd\u03b8\u03af\u03bf\u03c5","type":"Person","_key":"64610"} +{"label":"\u0399\u03b6\u03b1\u03bc\u03c0\u03ad\u03bb\u03b1 \u039a\u03bf\u03b3\u03b9\u03b5\u03b2\u03af\u03bd\u03b1","version":15,"id":"80564","lastModified":"1301902066000","name":"\u0399\u03b6\u03b1\u03bc\u03c0\u03ad\u03bb\u03b1 \u039a\u03bf\u03b3\u03b9\u03b5\u03b2\u03af\u03bd\u03b1","type":"Person","_key":"64611"} +{"label":"\u0394\u03ce\u03c1\u03b1 \u03a3\u03b1\u03bc\u03c8\u03c9\u03bd\u03ac","version":15,"id":"80565","lastModified":"1301902066000","name":"\u0394\u03ce\u03c1\u03b1 \u03a3\u03b1\u03bc\u03c8\u03c9\u03bd\u03ac","type":"Person","_key":"64612"} +{"label":"To Hell and Back","description":"True-life account of the military career of Audie Murphy, the most decorated soldier in WWII.","id":"16514","runtime":106,"imdbId":"tt0048729","version":67,"lastModified":"1301905264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71a\/4bc94be2017a3c57fe02171a\/to-hell-and-back-mid.jpg","studio":"Universal International Pictures","genre":"Drama","title":"To Hell and Back","releaseDate":-450576000000,"language":"en","type":"Movie","_key":"64613"} +{"label":"Jesse Hibbs","version":19,"id":"80568","lastModified":"1301901947000","name":"Jesse Hibbs","type":"Person","_key":"64614"} +{"label":"Captains Courageous","description":"Harvey, the arrogant and spoiled son of an indulgent absentee-father, falls overboard from a transatlantic steamship and is rescued by a fishing vessel on the Grand Banks. Harvey fails to persuade them to take him ashore, nor convince the crew of his wealth. The captain offers him a low-paid job, until they return to port, as part of the crew that turns him into a mature, considerate young man.","id":"16515","runtime":115,"imdbId":"tt0028691","version":106,"lastModified":"1301906003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/723\/4bc94be3017a3c57fe021723\/captains-courageous-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Captains Courageous","releaseDate":-1030147200000,"language":"en","type":"Movie","_key":"64615"} +{"label":"Freddie Bartholomew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2fe\/4c475c867b9aa15de10002fe\/freddie-bartholomew-profile.jpg","version":24,"id":"80567","lastModified":"1301902141000","name":"Freddie Bartholomew","type":"Person","_key":"64616"} +{"label":"Oscar O'Shea","version":24,"id":"80569","lastModified":"1301902239000","name":"Oscar O'Shea","type":"Person","_key":"64617"} +{"label":"Clannad The Motion Picture","description":"Clannad is set in a high-school located in some Japanese town. Okazaki Tomoya is a third-year student who doesn't take his studies seriously. Always late for class, he's seen as a delinquent by the rest of his classmates who are busy preparing for their entrance examinations. Needless to say, he hasn't too many close friends either.","id":"16516","runtime":0,"trailer":"http:\/\/www.youtube.com\/watch?v=lOWFsJpC7z8","version":44,"lastModified":"1301908285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72c\/4bc94be4017a3c57fe02172c\/clannad-the-motion-picture-mid.jpg","title":"Clannad The Motion Picture","releaseDate":1190160000000,"language":"en","type":"Movie","_key":"64618"} +{"label":"Kenji Nojima","version":31,"id":"126698","lastModified":"1301902772000","name":"Kenji Nojima","type":"Person","_key":"64619"} +{"label":"Mai Nakahara","version":12,"id":"220709","lastModified":"1301903663000","name":"Mai Nakahara","type":"Person","_key":"64620"} +{"label":"Ry\u014d Hirohashi","version":5,"id":"230747","lastModified":"1301904093000","name":"Ry\u014d Hirohashi","type":"Person","_key":"64621"} +{"label":"Houko Kuwashima","version":12,"id":"220710","lastModified":"1301903663000","name":"Houko Kuwashima","type":"Person","_key":"64622"} +{"label":"Osamu Dezaki","version":29,"id":"97288","lastModified":"1301901805000","name":"Osamu Dezaki","type":"Person","_key":"64623"} +{"label":"Gympl","description":"P\u0159\u00edb\u011bh party student\u016f gymn\u00e1zia, kte\u0159\u00ed se v\u011bnuj\u00ed malov\u00e1n\u00ed graffiti, na pozad\u00ed se ale odkr\u00fdvaj\u00ed probl\u00e9my mlad\u00e9 generace, konflikt mezi konformitou a naprostou svobodou, odpov\u011bdnost\u00ed a \u017eivotem okam\u017eiku, konflikt mezi \u0161kolou, kter\u00e1 je odcizen\u00e1 realit\u011b, a studenty, kte\u0159\u00ed cht\u011bj\u00ed d\u011blat skute\u010dn\u00e9 v\u011bci. ","id":"16517","runtime":110,"imdbId":"tt0471725","version":53,"lastModified":"1300980331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73a\/4bc94be4017a3c57fe02173a\/gympl-mid.jpg","title":"Gympl","releaseDate":1190851200000,"language":"en","type":"Movie","_key":"64624"} +{"label":"The King and I","description":"Musical about a widow who accepts a job as a live-in governess of the King of Siam's children.","id":"16520","runtime":133,"imdbId":"tt0049408","version":94,"lastModified":"1301903234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/743\/4bc94be5017a3c57fe021743\/the-king-and-i-mid.jpg","genre":"Adventure","title":"The King and I","releaseDate":-426297600000,"language":"en","type":"Movie","_key":"64625"} +{"label":"Walter Lang","version":39,"id":"80570","lastModified":"1301901584000","name":"Walter Lang","type":"Person","_key":"64626"} +{"label":"Terry Saunders","version":22,"id":"80573","lastModified":"1301902360000","name":"Terry Saunders","type":"Person","_key":"64627"} +{"label":"Rex Thompson","version":19,"id":"80574","lastModified":"1301902239000","name":"Rex Thompson","type":"Person","_key":"64628"} +{"label":"Patrick Adiarte","version":23,"id":"80575","lastModified":"1301902391000","name":"Patrick Adiarte","type":"Person","_key":"64629"} +{"label":"Where the Wild Things Are","description":"Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.","id":"16523","runtime":101,"imdbId":"tt0386117","trailer":"http:\/\/www.youtube.com\/watch?v=hcBPzqxBnRU","homepage":"http:\/\/wherethewildthingsare.warnerbros.com\/","version":287,"lastModified":"1302062931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58e\/4d044aa15e73d621a100258e\/where-the-wild-things-are-mid.jpg","studio":"Legendary Pictures","genre":"Adventure","title":"Where the Wild Things Are","releaseDate":1255651200000,"language":"en","tagline":"There's one in all of us.","type":"Movie","_key":"64630"} +{"label":"Max Records","version":34,"id":"80576","lastModified":"1302062929000","name":"Max Records","type":"Person","_key":"64631"} +{"label":"Pepita Emmerichs","version":29,"id":"113495","lastModified":"1302062930000","name":"Pepita Emmerichs","type":"Person","_key":"64632"} +{"label":"A Time to Revenge","description":"No overview found.","id":"16524","runtime":0,"imdbId":"tt0130314","version":61,"lastModified":"1301905338000","genre":"Action","title":"A Time to Revenge","releaseDate":852076800000,"language":"en","type":"Movie","_key":"64633"} +{"label":"John Harwood","version":18,"id":"95971","lastModified":"1301902775000","name":"John Harwood","type":"Person","_key":"64634"} +{"label":"Clowning Around","description":"No overview found.","id":"16526","runtime":0,"imdbId":"tt0144834","version":60,"lastModified":"1300980332000","title":"Clowning Around","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64635"} +{"label":"Pocket Ninjas","description":"No overview found.","id":"16530","runtime":80,"imdbId":"tt0107838","version":81,"lastModified":"1301904458000","genre":"Action","title":"Pocket Ninjas","releaseDate":859248000000,"language":"en","type":"Movie","_key":"64636"} +{"label":"Richard Rabago","version":19,"id":"80580","lastModified":"1301901947000","name":"Richard Rabago","type":"Person","_key":"64637"} +{"label":"Sondi","version":19,"id":"80581","lastModified":"1301902143000","name":"Sondi","type":"Person","_key":"64638"} +{"label":"Brad Bufanda","version":19,"id":"80582","lastModified":"1301902503000","name":"Brad Bufanda","type":"Person","_key":"64639"} +{"label":"Zebra Force","description":"No overview found.","id":"16532","runtime":0,"imdbId":"tt0075456","version":43,"lastModified":"1301906718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/132\/4bf930ab017a3c7033000132\/zebra-force-mid.jpg","title":"Zebra Force","releaseDate":441763200000,"language":"en","type":"Movie","_key":"64640"} +{"label":"Joe Tornatore","version":23,"id":"84978","lastModified":"1301902415000","name":"Joe Tornatore","type":"Person","_key":"64641"} +{"label":"Titanic","description":"Unhappily married, Julia Sturges decides to go to America with her two children on the unsinkable Titanic. Her husband, Richard also arranges passage on the luxury liner so as to have custody of their two children. All this fades to insignificance once the ship hits an iceberg.","id":"16535","runtime":98,"imdbId":"tt0046435","version":107,"lastModified":"1301906466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4bc94bf5017a3c57fe021784\/titanic-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Titanic","releaseDate":-527385600000,"language":"en","type":"Movie","_key":"64642"} +{"label":"Audrey Dalton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22f\/4ca4a3267b9aa16ed700022f\/audrey-dalton-profile.jpg","version":24,"id":"80600","lastModified":"1301901712000","name":"Audrey Dalton","type":"Person","_key":"64643"} +{"label":"Mumbai Meri Jaan","description":"Shortly after 1800 hours, 11 July 2006, Mumbai was shattered by seven bomb blasts on Western Railway stations: Matunga, Mahim, Khar, Bandra, Jogeshwari, Borivali, and Bhayandar. It took the Police and ambulance over an hour to attend at various sites. This incident changes lives of Thomas, originally from Chennai, who sells tea from his bike; Rupali Joshi, a TV News reporter, who has to deal with the death of her to-be spouse, Ajay Kumar Pradhan; Suresh, in debt, starts to suspect all Muslims, e","id":"16537","runtime":0,"imdbId":"tt1266583","version":89,"lastModified":"1301905632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42d\/4d8260967b9aa17f6c00042d\/mumbai-meri-jaan-mid.jpg","genre":"Drama","title":"Mumbai Meri Jaan","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"64644"} +{"label":"Kay Kay Menon","version":32,"id":"86020","lastModified":"1301902187000","name":"Kay Kay Menon","type":"Person","_key":"64645"} +{"label":"Nishikant Kamat","version":4,"id":"229252","lastModified":"1301904112000","name":"Nishikant Kamat","type":"Person","_key":"64646"} +{"label":"I Love You, Man","description":"Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward \"man-dates,\" before meeting Sydney Fife.","id":"16538","runtime":105,"imdbId":"tt1155056","trailer":"http:\/\/www.youtube.com\/watch?v=Y6K0h8E6bCI","version":222,"lastModified":"1301901392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4c8c0caa5e73d609ed0000ea\/i-love-you-man-mid.jpg","studio":"De Line Pictures","genre":"Comedy","title":"I Love You, Man","releaseDate":1237507200000,"language":"en","tagline":"Are You Man Enough To Say It?","type":"Movie","_key":"64647"} +{"label":"Sarah Burns","version":22,"id":"80592","lastModified":"1301901111000","name":"Sarah Burns","type":"Person","_key":"64648"} +{"label":"Greg Levine","version":22,"id":"80593","lastModified":"1301901129000","name":"Greg Levine","type":"Person","_key":"64649"} +{"label":"Jean Villepique","version":23,"id":"80594","lastModified":"1301901123000","name":"Jean Villepique","type":"Person","_key":"64650"} +{"label":"Colleen Crabtree","version":24,"id":"80596","lastModified":"1301901136000","name":"Colleen Crabtree","type":"Person","_key":"64651"} +{"label":"Zus & zo","description":"Als Nino (Jacob Derwig) zijn zussen Wanda, Sonja en Michelle vertelt dat hij gaat trouwen met zijn vriendin Bo, zijn ze alledrie sprakeloos. Niet alleen omdat ze dachten dat hij homo was, maar ook omdat hij door te trouwen hotel Paraiso in Portugal erft. Het hotel waar ze allemaal recht op dachten te hebben\u2026 De drie zussen smeden een plan om de bruiloft te saboteren totdat ze uitgenodigd worden door Bo om haar te helpen bij de bruiloft.","id":"16539","runtime":106,"imdbId":"tt0245157","version":80,"lastModified":"1301904007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e15\/4d219d9f5e73d66b34002e15\/zus-zo-mid.jpg","title":"Zus & zo","releaseDate":978307200000,"language":"en","type":"Movie","_key":"64652"} +{"label":"Elias og Kongeskipet","description":"I Elias og Kongeskipet m\u00f8ter vi Elias trygt til kai i Lunvik, men snart f\u00e5r Elias nye utfordringer og farvann \u00e5 bryne seg p\u00e5. Kongeskipet er savnet og sammen med marinen blir Elias rekruttert for \u00e5 l\u00f8se mysteriet. Oppdraget lar seg ikke l\u00f8se s\u00e5 lett og Elias blir tatt ut av operasjonen - nedbrutt seiler Elias sin egen sj\u00f8, men da alt ser som m\u00f8rkest ut st\u00f8ter han p\u00e5 et velkjent skip.","id":"16541","runtime":76,"imdbId":"tt0811605","version":49,"lastModified":"1301906749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d8\/4bc94c12017a3c57fe0217d8\/elias-og-kongeskipet-mid.jpg","genre":"Animation","title":"Elias og Kongeskipet","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"64653"} +{"label":"Watchmen: The Complete Motion Comic","description":"The most celebrated graphic novel of all time that broke the conventional mold continues to break new ground WATCHMEN illustrator Dave Gibbons oversees this digital version of the graphic novel that adds limited motion, voice and sound to the books strikingly drawn panels. ","id":"16542","runtime":325,"imdbId":"tt1322240","version":52,"lastModified":"1301908548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f2\/4bc94c1d017a3c57fe0217f2\/watchmen-the-complete-motion-comic-mid.jpg","title":"Watchmen: The Complete Motion Comic","releaseDate":1216252800000,"language":"en","type":"Movie","_key":"64654"} +{"label":"Shogun","description":"Based on the adventures of English navigator William Adams. The series follows Pilot John Blackthorne's experiences in Japan in the early 1600's. After his ship is wrecked along the coast of Japan, Blackthorne must juggle his identity as an Englishman associated with other Europeans, namely Portuguese traders and Jesuit priests, and the Japanese culture into which he is thrust.","id":"16544","runtime":547,"imdbId":"tt0080274","version":130,"lastModified":"1301906505000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fb\/4bc94c1f017a3c57fe0217fb\/shogun-mid.jpg","genre":"Adventure","title":"Shogun","releaseDate":337824000000,"language":"en","type":"Movie","_key":"64655"} +{"label":"Y\u00f4ko Shimada","version":20,"id":"80607","lastModified":"1301902066000","name":"Y\u00f4ko Shimada","type":"Person","_key":"64656"} +{"label":"Frankie Sakai","version":19,"id":"80608","lastModified":"1301902239000","name":"Frankie Sakai","type":"Person","_key":"64657"} +{"label":"Jerry London","version":21,"id":"80609","lastModified":"1301902163000","name":"Jerry London","type":"Person","_key":"64658"} +{"label":"I Vicer\u00e8","description":"No overview found.","id":"16545","runtime":120,"imdbId":"tt0196186","version":233,"lastModified":"1301907995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/805\/4bc94c22017a3c57fe021805\/i-vicere-mid.jpg","studio":"Jean Vigo Italia","genre":"Drama","title":"I Vicer\u00e8","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64659"} +{"label":"Roberto Faenza","version":25,"id":"80586","lastModified":"1301902337000","name":"Roberto Faenza","type":"Person","_key":"64660"} +{"label":"Guido Caprino","version":19,"id":"80589","lastModified":"1301902239000","name":"Guido Caprino","type":"Person","_key":"64661"} +{"label":"Sebastiano Lo Monaco","version":20,"id":"80590","lastModified":"1301902459000","name":"Sebastiano Lo Monaco","type":"Person","_key":"64662"} +{"label":"Ellie parker","description":"Naomi Watts is brilliant in this clever comic portrait of a struggling young actress in Hollywood searching for a good role. As she desperately rushes from audition to audition encountering endless Hollywood-types, she strives to keep her acting dream alive while her personal life steadily falls apart.\r\n","id":"16548","runtime":95,"imdbId":"tt0436262","version":143,"lastModified":"1301905397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80e\/4bc94c25017a3c57fe02180e\/ellie-parker-mid.jpg","genre":"Comedy","title":"Ellie parker","releaseDate":1106265600000,"language":"en","type":"Movie","_key":"64663"} +{"label":"Greg Freitas","version":19,"id":"113858","lastModified":"1301902459000","name":"Greg Freitas","type":"Person","_key":"64664"} +{"label":"Gaye Pope","version":19,"id":"9396","lastModified":"1301901929000","name":"Gaye Pope","type":"Person","_key":"64665"} +{"label":"Blair Mastbaum","version":19,"id":"113859","lastModified":"1301902459000","name":"Blair Mastbaum","type":"Person","_key":"64666"} +{"label":"Storytelling","description":"College and high school serve as the backdrop for two stories about dysfunction and personal turmoil.","id":"16550","runtime":87,"imdbId":"tt0250081","version":163,"lastModified":"1301904133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82a\/4bc94c2d017a3c57fe02182a\/storytelling-mid.jpg","studio":"New Line Cinema","genre":"Comedy","title":"Storytelling","releaseDate":1005177600000,"language":"en","tagline":"from the director of HAPPINESS and WELCOME TO THE DOLLHOUSE","type":"Movie","_key":"64667"} +{"label":"Devorah Rose","version":21,"id":"84921","lastModified":"1301902632000","name":"Devorah Rose","type":"Person","_key":"64668"} +{"label":"Nancy Anne Ridder","version":21,"id":"84922","lastModified":"1301902632000","name":"Nancy Anne Ridder","type":"Person","_key":"64669"} +{"label":"Steve Rosen","version":21,"id":"84923","lastModified":"1301902632000","name":"Steve Rosen","type":"Person","_key":"64670"} +{"label":"Rhinestone","description":"After a big-time country singer brags that she can turn anybody in to a country-singin' star, she's out to prove she can live up to her talk when she recruits a cab-driver as a country singer. He's scheduled to sing at a big-time NYC country night club and she puts her ample powers to work in preparing her protege.","id":"16551","runtime":111,"imdbId":"tt0088001","version":104,"lastModified":"1301904011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/833\/4bc94c2f017a3c57fe021833\/rhinestone-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"Rhinestone","releaseDate":474163200000,"language":"en","type":"Movie","_key":"64671"} +{"label":"Steve Peck","version":23,"id":"80598","lastModified":"1301902053000","name":"Steve Peck","type":"Person","_key":"64672"} +{"label":"Penny Santon","version":22,"id":"80599","lastModified":"1301902066000","name":"Penny Santon","type":"Person","_key":"64673"} +{"label":"Mount Pleasant","description":"Three couples find their destinies irrevocably intertwined in a fusion of obsession and fragile love when a six-year-old girl finds a junkie's discarded needle while playing in her backyard.","id":"16552","runtime":87,"imdbId":"tt0785032","version":54,"lastModified":"1301905998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4a\/4cbb29305e73d67782000b4a\/mount-pleasant-mid.jpg","genre":"Drama","title":"Mount Pleasant","releaseDate":1160179200000,"language":"en","type":"Movie","_key":"64674"} +{"label":"Ross Weber","version":16,"id":"139070","lastModified":"1301902894000","name":"Ross Weber","type":"Person","_key":"64675"} +{"label":"Mike Bennett","version":17,"id":"139072","lastModified":"1301903064000","name":"Mike Bennett","type":"Person","_key":"64676"} +{"label":"Bryant H. Boesen","version":17,"id":"139073","lastModified":"1301903081000","name":"Bryant H. Boesen","type":"Person","_key":"64677"} +{"label":"Katie Boland","version":24,"id":"128150","lastModified":"1301903008000","name":"Katie Boland","type":"Person","_key":"64678"} +{"label":"Little Manhattan","description":"Ten-year-old Gabe was just a normal kid growing up in Manhattan, until Rosemary Telesco walked into his life actually into his karate class. But, before Gabe can tell Rosemary how he feels, she tells him she will not being going to public school any more. Gabe has a lot more to learn about life, love and girls.","id":"16553","runtime":84,"imdbId":"tt0412922","trailer":"http:\/\/www.youtube.com\/watch?v=1924","version":227,"lastModified":"1301904086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f25\/4d4d2e355e73d617ba001f25\/little-manhattan-mid.jpg","studio":"New Regency Pictures","genre":"Comedy","title":"Little Manhattan","releaseDate":1128038400000,"language":"en","type":"Movie","_key":"64679"} +{"label":"Charlie Ray","version":20,"id":"88496","lastModified":"1301902676000","name":"Charlie Ray","type":"Person","_key":"64680"} +{"label":"Heimatkunde","description":"Former \"Titanic\" satire magazine editor Martin Sonneborn takes an undercover trip around Berlin and discovers the East-German mentality and what is left of the socialist German Democratic Republic.","id":"16554","runtime":94,"imdbId":"tt1281299","version":39,"lastModified":"1301419801000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84a\/4bc94c39017a3c57fe02184a\/heimatkunde-mid.jpg","title":"Heimatkunde","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"64681"} +{"label":"Daddy's Little Girls","description":"Monty is a mechanic struggling to make ends meet as he raises his three young daughters. When the court awards custody of his daughters to his shady ex-wife, Monty desperately tries to win them back with the help of Julia, a beautiful, Ivy League-educated attorney. Monty and Julia couldn't be less alike, but a flame is ignited...touching off a firestorm of love and conflict.","id":"16555","runtime":100,"imdbId":"tt0778661","trailer":"http:\/\/www.youtube.com\/watch?v=1084","homepage":"http:\/\/www.daddyslittlegirlsmovie.com\/","version":189,"lastModified":"1301902502000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/863\/4bc94c40017a3c57fe021863\/daddy-s-little-girls-mid.jpg","studio":"Tyler Perry Company, The","genre":"Comedy","title":"Daddy's Little Girls","releaseDate":1171411200000,"language":"en","type":"Movie","_key":"64682"} +{"label":"Tracee Ellis Ross","version":27,"id":"74611","lastModified":"1301901863000","name":"Tracee Ellis Ross","type":"Person","_key":"64683"} +{"label":"Cassi Davis","version":25,"id":"80611","lastModified":"1301902066000","name":"Cassi Davis","type":"Person","_key":"64684"} +{"label":"Sierra Aylina McClain","version":20,"id":"80612","lastModified":"1301902459000","name":"Sierra Aylina McClain","type":"Person","_key":"64685"} +{"label":"China Anne McClain","version":20,"id":"80613","lastModified":"1301901863000","name":"China Anne McClain","type":"Person","_key":"64686"} +{"label":"Lauryn Alisa McClain","version":20,"id":"80614","lastModified":"1301902239000","name":"Lauryn Alisa McClain","type":"Person","_key":"64687"} +{"label":"Juanita Jennings","version":21,"id":"80615","lastModified":"1301902239000","name":"Juanita Jennings","type":"Person","_key":"64688"} +{"label":"Maria Howell","version":20,"id":"80616","lastModified":"1301902459000","name":"Maria Howell","type":"Person","_key":"64689"} +{"label":"Rochelle Dewberry","version":20,"id":"80617","lastModified":"1301902066000","name":"Rochelle Dewberry","type":"Person","_key":"64690"} +{"label":"L. Warren Young","version":20,"id":"80618","lastModified":"1301902459000","name":"L. Warren Young","type":"Person","_key":"64691"} +{"label":"Steve Coulter","version":20,"id":"80619","lastModified":"1301902459000","name":"Steve Coulter","type":"Person","_key":"64692"} +{"label":"Duplicity","description":"Two romantically engaged corporate spies (Owen and Roberts) team up to manipulate a corporate race to corner the market on a medical innovation that will reap huge profits and enable them to lead an extravagant lifestyle together.","id":"16558","runtime":125,"imdbId":"tt1135487","homepage":"http:\/\/www.universalstudiosentertainment.com\/duplicity\/","version":252,"lastModified":"1301901641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a2\/4bc94c58017a3c57fe0218a2\/duplicity-mid.jpg","studio":"Universal Pictures Corporation","genre":"Action","title":"Duplicity","releaseDate":1237507200000,"language":"en","type":"Movie","_key":"64693"} +{"label":"The Picture of Dorian Gray","description":"Dorian Gray, wishing to remain young and handsome for eternity, essentially sells his soul so that a portrait can age instead of him. Over the course of the years, Dorian commits every sort of sin, heavily influenced by his friend Lord Henry Wotton. But as his life goes on, he slowly realises the emptiness and evil which he has succumbed to.","id":"16559","runtime":110,"imdbId":"tt0037988","version":184,"lastModified":"1301903268000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b0\/4bc94c5d017a3c57fe0218b0\/the-picture-of-dorian-gray-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Picture of Dorian Gray","releaseDate":-783820800000,"language":"en","type":"Movie","_key":"64694"} +{"label":"Hurd Hatfield","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/605\/4c07f759017a3c7e8f000605\/hurd-hatfield-profile.jpg","version":33,"id":"80620","lastModified":"1301901493000","name":"Hurd Hatfield","type":"Person","_key":"64695"} +{"label":"Lowell Gilmore","version":25,"id":"80621","lastModified":"1301902194000","name":"Lowell Gilmore","type":"Person","_key":"64696"} +{"label":"Albert Lewin","version":25,"id":"30252","lastModified":"1301901778000","name":"Albert Lewin","type":"Person","_key":"64697"} +{"label":"Tap","description":"Max Washington has just been released from prison after serving time for burglary. He returns to his old hangout, a hoofer club. His old girl friend, Amy, who still works at the club as a Tap instructor, is less than thrilled to see him. Her father, Little Mo, is happy to see him, because he has plans for a show involving Max. In addition, Max's old partners in crime have another job for him.","id":"16560","runtime":111,"imdbId":"tt0098442","version":209,"lastModified":"1301904668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b9\/4bc94c60017a3c57fe0218b9\/tap-mid.jpg","studio":"Tristar Pictures","genre":"Action","title":"Tap","releaseDate":603244800000,"language":"en","type":"Movie","_key":"64698"} +{"label":"Suzzanne Douglas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92a\/4d8a886f7b9aa13ae100092a\/suzzanne-douglas-profile.jpg","version":23,"id":"80622","lastModified":"1301902193000","name":"Suzzanne Douglas","type":"Person","_key":"64699"} +{"label":"Savion Glover","version":21,"id":"80623","lastModified":"1301901493000","name":"Savion Glover","type":"Person","_key":"64700"} +{"label":"Terrence E. McNally","version":19,"id":"22672","lastModified":"1301903119000","name":"Terrence E. McNally","type":"Person","_key":"64701"} +{"label":"The Sunshine Boys","description":"Lewis and Clark, aka The Sunshine Boys, were famous comedians during the vaudeville era, but off-stage they couldn't stand each other and haven't spoken in over 20 years of retirement. Willy Clark's nephew is the producer of a TV variety show that wants to feature the reunion this classic duo. It is up to him to try to get the Sunshine Boys back together again for the show.","id":"16561","runtime":111,"imdbId":"tt0073766","version":104,"lastModified":"1301906955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c2\/4bc94c65017a3c57fe0218c2\/the-sunshine-boys-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"The Sunshine Boys","releaseDate":184464000000,"language":"en","type":"Movie","_key":"64702"} +{"label":"George Burns","version":31,"id":"80625","lastModified":"1301901644000","name":"George Burns","type":"Person","_key":"64703"} +{"label":"Lee Meredith","version":23,"id":"71898","lastModified":"1301902305000","name":"Lee Meredith","type":"Person","_key":"64704"} +{"label":"Carol Arthur","version":19,"id":"80626","lastModified":"1301902459000","name":"Carol Arthur","type":"Person","_key":"64705"} +{"label":"James Cranna","version":21,"id":"80627","lastModified":"1301901932000","name":"James Cranna","type":"Person","_key":"64706"} +{"label":"The Cutting Edge","description":"Two former Olympians, one a figure skater and the other a hockey player, pin their hopes of one last shot at Olympic glory on one another. That is, of course, if they can keep from killing each other in the process...","id":"16562","runtime":101,"imdbId":"tt0104040","trailer":"http:\/\/www.youtube.com\/watch?v=1085","version":102,"lastModified":"1301903400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8cb\/4bc94c67017a3c57fe0218cb\/the-cutting-edge-mid.jpg","studio":"Interscope Communications","genre":"Action","title":"The Cutting Edge","releaseDate":701654400000,"language":"en","tagline":"The King of the Rink is about to meet America's Ice Queen.","type":"Movie","_key":"64707"} +{"label":"Seven Brides for Seven Brothers","description":"Things are different for the Pontipee men now that big brother Adam's fetched a bride and brought her to their cabin. Indeed, the unwed brothers are so inspired they raid the town and carry off brides of their own!","id":"16563","runtime":102,"imdbId":"tt0047472","trailer":"http:\/\/www.youtube.com\/watch?v=7u-MIo51zAQ","version":403,"lastModified":"1301902715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e02\/4d16d7287b9aa1147c002e02\/seven-brides-for-seven-brothers-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Comedy","title":"Seven Brides for Seven Brothers","releaseDate":-487468800000,"language":"en","type":"Movie","_key":"64708"} +{"label":"Jane Powell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6f5\/4ca9f0607b9aa17acc0006f5\/jane-powell-profile.jpg","version":24,"id":"82405","lastModified":"1301902325000","name":"Jane Powell","type":"Person","_key":"64709"} +{"label":"Winter in Wartime","description":"The Netherlands 1944\/1945, The Second World War is still in full swing during this freezing winter. The western Netherlands are in the grip of a famine, causing many people to move east in order to provide for their families. 14 year old Michiel can't wait to be part of the Dutch resistance, to the dismay of his father, who, as mayor, works to prevent escalations in the village.\n","id":"16564","runtime":103,"imdbId":"tt0795441","trailer":"http:\/\/www.youtube.com\/watch?v=1220","homepage":"http:\/\/www.oorlogswinterdefilm.nl","version":155,"lastModified":"1301906821000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f1\/4bc94c71017a3c57fe0218f1\/oorlogswinter-mid.jpg","studio":"Fu Works","genre":"Drama","title":"Winter in Wartime","releaseDate":1226880000000,"language":"en","type":"Movie","_key":"64710"} +{"label":"Martijn Lakemeier","version":20,"id":"80631","lastModified":"1301901718000","name":"Martijn Lakemeier","type":"Person","_key":"64711"} +{"label":"Melody Klaver","version":21,"id":"83355","lastModified":"1301901534000","name":"Melody Klaver","type":"Person","_key":"64712"} +{"label":"Raymond Thiry","version":20,"id":"83357","lastModified":"1301902459000","name":"Raymond Thiry","type":"Person","_key":"64713"} +{"label":"Ab Tak Chhappan","description":"No overview found.","id":"16566","runtime":0,"imdbId":"tt0402014","version":43,"lastModified":"1300980337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ff\/4bc94c72017a3c57fe0218ff\/ab-tak-chhappan-mid.jpg","genre":"Drama","title":"Ab Tak Chhappan","releaseDate":1077840000000,"language":"en","type":"Movie","_key":"64714"} +{"label":"Cheeni Kum","description":"The movie, featuring Amitabh Bachchan in yet another brilliant performance, not just entertains you with its sarcastic humour, it also touches your heart with its emotional moments. The film has no pretension of being a laugh riot. It charts a narrow course by telling a bittersweet tale of romance between a 64-year-old man and a 34 year-old woman.","id":"16576","runtime":136,"imdbId":"tt0976026","homepage":"http:\/\/www.erosentertainment.com\/cheenikum\/","version":108,"lastModified":"1301905013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/908\/4bc94c73017a3c57fe021908\/cheeni-kum-mid.jpg","studio":"Eros Entertainment","genre":"Romance","title":"Cheeni Kum","releaseDate":1180051200000,"language":"en","type":"Movie","_key":"64715"} +{"label":"Swini Khera","version":19,"id":"85528","lastModified":"1301902704000","name":"Swini Khera","type":"Person","_key":"64716"} +{"label":"Vinay Jain","version":22,"id":"85529","lastModified":"1301902188000","name":"Vinay Jain","type":"Person","_key":"64717"} +{"label":"R. Balki","version":19,"id":"85530","lastModified":"1301902705000","name":"R. Balki","type":"Person","_key":"64718"} +{"label":"Astro Boy","description":"Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers. Powered by positive \"blue\" energy, he is endowed with super strength, x-ray vision, high speed and flight. Through his adventures, he learns the joys and emotions of being human, and embraces his destiny. Learning his friends and family are in danger, Astro Boy must try and save everything he cares about.","id":"16577","runtime":94,"imdbId":"tt0375568","trailer":"http:\/\/www.youtube.com\/watch?v=W5zJZQjP094","homepage":"http:\/\/www.astroboy-themovie.com\/","version":368,"lastModified":"1301901353000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/517\/4c559a1d5e73d632bc000517\/astro-boy-mid.jpg","studio":"Tezuka Production Company Ltd.","genre":"Action","title":"Astro Boy","releaseDate":1256256000000,"language":"en","tagline":"Have a blast.","type":"Movie","_key":"64719"} +{"label":"Sterling Beaumon","version":25,"id":"80641","lastModified":"1301901176000","name":"Sterling Beaumon","type":"Person","_key":"64720"} +{"label":"Hell's Bells","description":"No overview found.","id":"16591","runtime":6,"imdbId":"tt0019975","version":41,"lastModified":"1301904264000","title":"Hell's Bells","releaseDate":-1265846400000,"language":"en","type":"Movie","_key":"64721"} +{"label":"Little Boy Blue","description":"No overview found.","id":"16592","runtime":7,"imdbId":"tt0027355","version":69,"lastModified":"1301904711000","studio":"Celebrity Productions","genre":"Animation","title":"Little Boy Blue","releaseDate":-1054771200000,"language":"en","type":"Movie","_key":"64722"} +{"label":"Dick Whittington's Cat","description":"No overview found.","id":"16593","runtime":8,"imdbId":"tt0146624","version":28,"lastModified":"1301905323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/949\/4bc94c7e017a3c57fe021949\/dick-whittington-s-cat-mid.jpg","studio":"Celebrity Productions","title":"Dick Whittington's Cat","releaseDate":-1060041600000,"language":"en","type":"Movie","_key":"64723"} +{"label":"Along Came Auntie","description":"A divorced couple try to pretend they are still happily married in order to get $100,000 from the woman's divorce-disapproving aunt.","id":"16599","runtime":23,"imdbId":"tt0016600","version":43,"lastModified":"1301906054000","genre":"Comedy","title":"Along Came Auntie","releaseDate":-1370822400000,"language":"en","type":"Movie","_key":"64724"} +{"label":"Glenn Tryon","version":21,"id":"80647","lastModified":"1301902528000","name":"Glenn Tryon","type":"Person","_key":"64725"} +{"label":"Vivien Oakland","version":22,"id":"80648","lastModified":"1301902416000","name":"Vivien Oakland","type":"Person","_key":"64726"} +{"label":"Tyler Brooke","version":20,"id":"80649","lastModified":"1301902525000","name":"Tyler Brooke","type":"Person","_key":"64727"} +{"label":"Martha Sleeper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14b\/4bd86b88017a3c1c0500014b\/martha-sleeper-profile.jpg","version":29,"id":"80650","lastModified":"1301901414000","name":"Martha Sleeper","type":"Person","_key":"64728"} +{"label":"Fred Guiol","version":29,"id":"18740","lastModified":"1301903110000","name":"Fred Guiol","type":"Person","_key":"64729"} +{"label":"Richard Wallace","version":21,"birthday":"-2377818000000","id":"95723","birthplace":"Sacramento, California, USA","lastModified":"1301902561000","name":"Richard Wallace","type":"Person","_key":"64730"} +{"label":"Super Rhino","description":"This short begins with the star canine and his owner Penny in peril from \"The Man with the Green Eye\", trapped within his fortress protected by overwhelming defenses, tied up and suspended high above a bottomless pit that's surrounded by fire. So Penny's father transforms Rhino into a super hamster to save the day. ","id":"16604","runtime":5,"imdbId":"tt1368151","version":85,"lastModified":"1301905272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/963\/4bc94c84017a3c57fe021963\/super-rhino-mid.jpg","genre":"Animation","title":"Super Rhino","releaseDate":1227225600000,"language":"en","type":"Movie","_key":"64731"} +{"label":"Somersault","description":"16 year-old Heidi runs away from home after being caught making out with her mother\u2019s boyfriend. She ends up in an off-season ski resort, seeking love from anyone who will give it to her.","id":"16605","runtime":106,"imdbId":"tt0381429","trailer":"http:\/\/www.youtube.com\/watch?v=2160","homepage":"http:\/\/www.magpictures.com\/profile.aspx?id=a6ef8a42-a4f9-47ed-ae35-d9dfd0e5b110","version":115,"lastModified":"1301907536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/978\/4bc94c85017a3c57fe021978\/somersault-mid.jpg","studio":"Magnolia Pictures","genre":"Drama","title":"Somersault","releaseDate":1084752000000,"language":"en","type":"Movie","_key":"64732"} +{"label":"Erik Thomson","version":20,"id":"91399","lastModified":"1301901673000","name":"Erik Thomson","type":"Person","_key":"64733"} +{"label":"Cate Shortland","version":17,"id":"93286","lastModified":"1301902561000","name":"Cate Shortland","type":"Person","_key":"64734"} +{"label":"Attack the Gas Station","description":"A quartet of disaffected Korean youths have robbed a Seoul gas station. After taking the gas station over, their wacky antics ensue; forcing the manager to sing, kidnapping customers that complain about the service, and staging fist-fights between street gang members and gas station employees; all of these reflect their own gripes against society.","id":"16606","runtime":120,"imdbId":"tt0262246","version":85,"lastModified":"1301904225000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/985\/4bc94c87017a3c57fe021985\/juyuso-seubgyuksageun-mid.jpg","studio":"Fun and Happiness","genre":"Comedy","title":"Attack the Gas Station","releaseDate":985910400000,"language":"en","tagline":"Just when you wanted to laugh, here they come.","type":"Movie","_key":"64735"} +{"label":"Sang-Jin Kim","version":20,"id":"80651","lastModified":"1301902053000","name":"Sang-Jin Kim","type":"Person","_key":"64736"} +{"label":"Sung-jae Lee","version":19,"id":"80653","lastModified":"1301901718000","name":"Sung-jae Lee","type":"Person","_key":"64737"} +{"label":"Oh-seong Yu","version":27,"id":"80654","lastModified":"1301901974000","name":"Oh-seong Yu","type":"Person","_key":"64738"} +{"label":"Seong-jin Kang","version":20,"id":"80655","lastModified":"1301901714000","name":"Seong-jin Kang","type":"Person","_key":"64739"} +{"label":"Yeong-gyu Park","version":19,"id":"80656","lastModified":"1301902238000","name":"Yeong-gyu Park","type":"Person","_key":"64740"} +{"label":"Jun Jeong","version":21,"id":"80657","lastModified":"1301902376000","name":"Jun Jeong","type":"Person","_key":"64741"} +{"label":"Yu-won Lee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/124\/4d7260195e73d669a8000124\/yu-won-lee-profile.jpg","version":26,"birthday":"324079200000","id":"80658","birthplace":"Seoul, South Korea","lastModified":"1301901559000","name":"Yu-won Lee","type":"Person","_key":"64742"} +{"label":"Jeong-ho Lee","version":19,"id":"80659","lastModified":"1301902238000","name":"Jeong-ho Lee","type":"Person","_key":"64743"} +{"label":"The Proposition","description":"Set in the Australian outback in the 1880s, the movie follows the series of events following the horrific rape and murder of the Hopkins family, allegedly committed by the infamous Burns brothers gang. Captain Morris Stanley captures Charlie Burns and gives him 9 days to kill his older dangerous psychopathic brother, or else they'll hang his younger mentally slow brother on Christmas Day.","id":"16608","runtime":104,"imdbId":"tt0421238","trailer":"http:\/\/www.youtube.com\/watch?v=1088","version":332,"lastModified":"1301903001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99b\/4bc94c8c017a3c57fe02199b\/the-proposition-mid.jpg","studio":"UK Film Council","genre":"Action","title":"The Proposition","releaseDate":1128556800000,"language":"en","type":"Movie","_key":"64744"} +{"label":"John Hillcoat","version":30,"id":"53333","lastModified":"1301901311000","name":"John Hillcoat","type":"Person","_key":"64745"} +{"label":"Der Traum","description":"No overview found.","id":"16610","runtime":4,"imdbId":"tt0923950","version":30,"lastModified":"1301908474000","title":"Der Traum","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64746"} +{"label":"Blackout","description":"Three people from different walks of life find themselves trapped inside a stalled elevator. What at first seems like an inconvenience rapidly escalates into a nightmare.","id":"16611","runtime":0,"imdbId":"tt0844666","version":409,"lastModified":"1301904804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bd\/4bc94c8f017a3c57fe0219bd\/blackout-2004-mid.jpg","genre":"Drama","title":"Blackout","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"64747"} +{"label":"Carmencita","description":"No overview found.","id":"16612","runtime":1,"imdbId":"tt0000001","version":36,"lastModified":"1301905702000","title":"Carmencita","releaseDate":-2398291200000,"language":"en","type":"Movie","_key":"64748"} +{"label":"Le Clown et ses chiens","description":"No overview found.","id":"16613","runtime":0,"imdbId":"tt0000002","version":49,"lastModified":"1301906716000","title":"Le Clown et ses chiens","releaseDate":-2435443200000,"language":"en","type":"Movie","_key":"64749"} +{"label":"Adventureland","description":"A comedy set in the summer of 1987 and centered around a recent college grad (Eisenberg) who takes a nowhere job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.","id":"16614","runtime":107,"imdbId":"tt1091722","trailer":"http:\/\/www.youtube.com\/watch?v=N0fCB4eDq08","homepage":"http:\/\/www.adventurelandthefilm.com\/","version":249,"lastModified":"1301901557000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cb\/4c9ca81c7b9aa1430b0000cb\/adventureland-mid.jpg","studio":"Sidney Kimmel Entertainment","genre":"Comedy","title":"Adventureland","releaseDate":1238716800000,"language":"en","tagline":"Nothing brings people together like a crappy summer job.","type":"Movie","_key":"64750"} +{"label":"Michael Zegen","version":31,"id":"80661","lastModified":"1301904080000","name":"Michael Zegen","type":"Person","_key":"64751"} +{"label":"Kelsey Ford","version":29,"id":"129022","lastModified":"1301901104000","name":"Kelsey Ford","type":"Person","_key":"64752"} +{"label":"Ryan McFarland","version":17,"id":"136030","lastModified":"1301901107000","name":"Ryan McFarland","type":"Person","_key":"64753"} +{"label":"Wendie Malick","version":17,"id":"136031","lastModified":"1301901121000","name":"Wendie Malick","type":"Person","_key":"64754"} +{"label":"Todd Cioppa","version":18,"id":"136032","lastModified":"1301901113000","name":"Todd Cioppa","type":"Person","_key":"64755"} +{"label":"Stephen Mast","version":17,"id":"136033","lastModified":"1301901107000","name":"Stephen Mast","type":"Person","_key":"64756"} +{"label":"Adam Kroloff","version":17,"id":"136034","lastModified":"1301901117000","name":"Adam Kroloff","type":"Person","_key":"64757"} +{"label":"Mindhunters","description":"Sequestered on a remote island, a training program for a nefarious FBI division called the Mindhunters is in full swing. These handpicked agents are an advanced psychological profiling group adept at cornering serial killers. But when it's discovered that one of the agents is actually a serial killer ready to strike, will the remaining six agents be able to finger the killer in time?","id":"16617","runtime":106,"imdbId":"tt0297284","trailer":"http:\/\/www.youtube.com\/watch?v=Zy4z7hk-FYs","homepage":"http:\/\/www.mindhunters-thefilm.com\/","version":310,"lastModified":"1301902213000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4c187e7b7b9aa108d700029d\/mind-hunters-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Mindhunters","releaseDate":1084406400000,"language":"en","tagline":"For seven elite profilers, finding a serial killer is a process of elimination. Their own.","type":"Movie","_key":"64758"} +{"label":"Dani\u00ebl Boissevain","version":21,"id":"117200","lastModified":"1301902992000","name":"Dani\u00ebl Boissevain","type":"Person","_key":"64759"} +{"label":"Jasmine Sendar","version":19,"id":"117201","lastModified":"1301902650000","name":"Jasmine Sendar","type":"Person","_key":"64760"} +{"label":"Trevor Rabin","version":125,"id":"894","lastModified":"1299779003000","name":"Trevor Rabin","type":"Person","_key":"64761"} +{"label":"Cassandra Bell","version":29,"id":"128290","lastModified":"1301902558000","name":"Cassandra Bell","type":"Person","_key":"64762"} +{"label":"Hans Christian Andersen","description":"The inimitable Danny Kaye stars as famed storyteller Hans Christian Andersen in this charming fictionalized biopic that blends music, romance, comedy and fantasy to trace the life of Denmark's literary hero. A small-town shoemaker with a knack for spinning yarns, Hans encounters happiness and heartbreak on his road to becoming a full-fledged writer.","id":"16618","runtime":112,"imdbId":"tt0044685","version":134,"lastModified":"1301908451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ee\/4bc94c97017a3c57fe0219ee\/hans-christian-andersen-mid.jpg","title":"Hans Christian Andersen","releaseDate":-517017600000,"language":"en","type":"Movie","_key":"64763"} +{"label":"Ordinary People","description":"Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.","id":"16619","runtime":124,"imdbId":"tt0081283","version":229,"lastModified":"1301903415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fb\/4bc94c98017a3c57fe0219fb\/ordinary-people-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Ordinary People","releaseDate":352080000000,"language":"en","tagline":"Everything is in its proper place...except the past.","type":"Movie","_key":"64764"} +{"label":"Scott Doebler","version":18,"id":"91370","lastModified":"1301902238000","name":"Scott Doebler","type":"Person","_key":"64765"} +{"label":"Quinn K. Redeker","version":20,"id":"91371","lastModified":"1301902743000","name":"Quinn K. Redeker","type":"Person","_key":"64766"} +{"label":"Meg Mundy","version":18,"id":"91372","lastModified":"1301902632000","name":"Meg Mundy","type":"Person","_key":"64767"} +{"label":"Elizabeth Hubbard","version":18,"id":"91373","lastModified":"1301902459000","name":"Elizabeth Hubbard","type":"Person","_key":"64768"} +{"label":"Richard Whiting","version":18,"id":"91374","lastModified":"1301902238000","name":"Richard Whiting","type":"Person","_key":"64769"} +{"label":"La Bamba","description":"Biographical story of the rise from nowhere of singer Ritchie Valens whose life was cut short by a plane crash.","id":"16620","runtime":108,"imdbId":"tt0093378","version":146,"lastModified":"1301902773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4d1519ff7b9aa1147c00214c\/la-bamba-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"La Bamba","releaseDate":551491200000,"language":"en","type":"Movie","_key":"64770"} +{"label":"Luis Valdez","version":20,"id":"82219","lastModified":"1301901778000","name":"Luis Valdez","type":"Person","_key":"64771"} +{"label":"Danielle von Zerneck","version":22,"id":"82220","lastModified":"1301901681000","name":"Danielle von Zerneck","type":"Person","_key":"64772"} +{"label":"Un bon bock","description":"No overview found.","id":"16622","runtime":0,"imdbId":"tt0000004","version":57,"lastModified":"1301907382000","title":"Un bon bock","releaseDate":-2435443200000,"language":"en","type":"Movie","_key":"64773"} +{"label":"Blacksmith Scene","description":"No overview found.","id":"16624","runtime":1,"imdbId":"tt0000005","version":48,"lastModified":"1301906716000","title":"Blacksmith Scene","releaseDate":-2429827200000,"language":"en","type":"Movie","_key":"64774"} +{"label":"100 Days With Mr. Arrogant","description":"After being dumped by her boyfriend just before their 100 day anniversary, Ha-Young, meets a college guy named Hyung-Joon when she accidentally kicks a can that hits him in the face and causes him to scratch his Lexus. He demands she pay him $3000 on the spot. She escapes from him, leaving her wallet behind.Hyung-Joon stalks her, demanding money to pay for his car. Since she is a poor high school student Hyung-Joon writes up a \"Enslavement Agreement\" for Ha-Young in order to pay for the damage t","id":"16632","runtime":0,"imdbId":"tt0395677","version":68,"lastModified":"1301906020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4bf03caf017a3c7f99000009\/naesarang-ssagaji-mid.jpg","genre":"Comedy","title":"100 Days With Mr. Arrogant","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"64775"} +{"label":"Dong-yeob Shin","version":19,"id":"118688","lastModified":"1301902143000","name":"Dong-yeob Shin","type":"Person","_key":"64776"} +{"label":"Jae-Won Kim","version":19,"id":"118692","lastModified":"1301902143000","name":"Jae-Won Kim","type":"Person","_key":"64777"} +{"label":"Tae-hyeon Kim","version":19,"id":"118694","lastModified":"1301901947000","name":"Tae-hyeon Kim","type":"Person","_key":"64778"} +{"label":"Min Han","version":19,"id":"118695","lastModified":"1301902325000","name":"Min Han","type":"Person","_key":"64779"} +{"label":"Somewhere in Time","description":"A Chicago playwright uses self-hypnosis to find the actress whose vintage portrait hangs in a grand hotel. ","id":"16633","runtime":103,"imdbId":"tt0081534","version":200,"lastModified":"1301903551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66c\/4cd8cf675e73d676d300066c\/somewhere-in-time-mid.jpg","genre":"Action","title":"Somewhere in Time","releaseDate":339379200000,"language":"en","type":"Movie","_key":"64780"} +{"label":"Bill Erwin","version":21,"id":"26044","lastModified":"1301901860000","name":"Bill Erwin","type":"Person","_key":"64781"} +{"label":"Alien Trespass","description":"In 1957 a fiery object crashes into a mountaintop in the California desert, bringing the threat of disaster to Earth. Out of the flying saucer escapes a murderous creature, the Ghota, bent on destroying all life forms on the planet. A benevolent alien from the spaceship, Urp, inhabits the body of Ted Lewis, an astronomer and with the help of Tammy, a diner waitress, sets out to save mankind.","id":"16634","runtime":90,"imdbId":"tt1122836","trailer":"http:\/\/www.youtube.com\/watch?v=1090","homepage":"http:\/\/www.alientrespass.com","version":207,"lastModified":"1301904306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4a\/4bc94ca3017a3c57fe021a4a\/alien-trespass-mid.jpg","studio":"Rangeland Productions","genre":"Action","title":"Alien Trespass","releaseDate":1238716800000,"language":"en","type":"Movie","_key":"64782"} +{"label":"Jenni Baird","version":19,"id":"80664","lastModified":"1301901947000","name":"Jenni Baird","type":"Person","_key":"64783"} +{"label":"R.W. Goodwin","version":19,"id":"80665","lastModified":"1301901646000","name":"R.W. Goodwin","type":"Person","_key":"64784"} +{"label":"In My Country","description":"Two reporters searching for truth and reconciliation with each other and with the dark history of a ravaged country.","id":"16635","runtime":105,"imdbId":"tt0349260","version":124,"lastModified":"1301904774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a53\/4bc94ca4017a3c57fe021a53\/in-my-country-mid.jpg","studio":"Film Afrika","genre":"Documentary","title":"In My Country","releaseDate":1083888000000,"language":"en","type":"Movie","_key":"64785"} +{"label":"Spellbound","description":"Spellbound follows eight teenagers on their quest to win the 1999 National Spelling Bee.","id":"16636","runtime":0,"imdbId":"tt0334405","version":136,"lastModified":"1301906679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01f\/4cec6b517b9aa12f6b00001f\/spellbound-mid.jpg","genre":"Documentary","title":"Spellbound","releaseDate":1037145600000,"language":"en","type":"Movie","_key":"64786"} +{"label":"El Cid","description":"Epic film of the legendary Spanish hero, Rodrigo Diaz (\"El Cid\" to his followers), who, without compromising his strict sense of honour, still succeeds in taking the initiative and driving the Moors from Spain.","id":"16638","runtime":182,"imdbId":"tt0054847","trailer":"http:\/\/www.youtube.com\/watch?v=1ZzCrkIf5Sc","version":145,"lastModified":"1301903958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/19e\/4c605cce5e73d6346300019e\/el-cid-mid.jpg","studio":"The Rank Organisation Film Productions","genre":"Action","title":"El Cid","releaseDate":-254016000000,"language":"en","type":"Movie","_key":"64787"} +{"label":"Ralph Truman","version":20,"id":"89064","lastModified":"1301902887000","name":"Ralph Truman","type":"Person","_key":"64788"} +{"label":"Douglas Wilmer","version":27,"id":"89065","lastModified":"1301902558000","name":"Douglas Wilmer","type":"Person","_key":"64789"} +{"label":"Fri os fra det onde","description":"In search of a new lifestyle, Johannes and his wife Pernille leave the city and move with their two children to Johannes\u2019 childhood town in the country. When Johannes\u2019 drunken brother Lars accidently runs over Anna, a local, and plants false evidence pointing at the emigrant Alain, Johannes stands up to defend Alain. But it comes with a price.","id":"16639","runtime":100,"imdbId":"tt1272012","trailer":"http:\/\/www.youtube.com\/watch?v=IiV3Q5_3N5Q","version":57,"lastModified":"1301904130000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8a\/4bc94cad017a3c57fe021a8a\/fri-os-fra-det-onde-mid.jpg","title":"Fri os fra det onde","releaseDate":1238716800000,"language":"en","type":"Movie","_key":"64790"} +{"label":"Lene Nystr\u00f8m","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b4\/4ce1643c5e73d60f700003b4\/lene-nystrm-profile.jpg","version":31,"birthday":"118364400000","id":"82753","birthplace":"T\u00f8nsberg, Norway","lastModified":"1301901409000","name":"Lene Nystr\u00f8m","type":"Person","_key":"64791"} +{"label":"Pirates of the Great Salt Lake","description":"No overview found.","id":"16640","runtime":86,"imdbId":"tt0477065","version":143,"lastModified":"1301908492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a93\/4bc94cae017a3c57fe021a93\/pirates-of-the-great-salt-lake-mid.jpg","studio":"Blueshift Entertainment","genre":"Action","title":"Pirates of the Great Salt Lake","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"64792"} +{"label":"Cirque du Soleil: Journey of Man","description":"No overview found.","id":"16641","runtime":39,"imdbId":"tt0213749","version":109,"lastModified":"1301413883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9c\/4bc94caf017a3c57fe021a9c\/cirque-du-soleil-journey-of-man-mid.jpg","title":"Cirque du Soleil: Journey of Man","releaseDate":957484800000,"language":"en","type":"Movie","_key":"64793"} +{"label":"Days of Heaven","description":"In 1910, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer. A love triangle, a swarm of locusts, a hellish fire\u2014Malick captures it all with dreamlike authenticity, creating at once a timeless American idyll and a gritty evocation of turn-of-the-century labor.","id":"16642","runtime":94,"imdbId":"tt0077405","trailer":"http:\/\/www.youtube.com\/watch?v=LlZDsMCW0U4","version":178,"lastModified":"1301903010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa5\/4bc94caf017a3c57fe021aa5\/days-of-heaven-mid.jpg","genre":"Drama","title":"Days of Heaven","releaseDate":252460800000,"language":"en","type":"Movie","_key":"64794"} +{"label":"Life or Something Like It","description":"Angelina Jolie and Edward Burns sizzle in this romantic comedy about making choices, making friends and making a mess. Lanie (Jolie) is a beautiful, ambitious newscaster who thinks that having the perfect hair, perfect boyfriend and perfect apartment adds up to the perfect life, until an encounter with a street psychic throws her world into chaos. ","id":"16643","runtime":103,"imdbId":"tt0282687","version":131,"lastModified":"1301902945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab7\/4bc94cb0017a3c57fe021ab7\/life-or-something-like-it-mid.jpg","studio":"Regency Enterprises","genre":"Comedy","title":"Life or Something Like It","releaseDate":1019779200000,"language":"en","type":"Movie","_key":"64795"} +{"label":"Christopher Shyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/47f\/4d10c83c5e73d6083e00047f\/christopher-shyer-profile.jpg","version":24,"id":"83777","lastModified":"1301902045000","name":"Christopher Shyer","type":"Person","_key":"64796"} +{"label":"Emma Smith: My Story","description":"By the side of a founder of a new faith was a woman of undeniable courage.","id":"16644","runtime":98,"imdbId":"tt1091225","homepage":"http:\/\/www.emmasmithmovie.com\/","version":134,"lastModified":"1301905214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aca\/4bc94cb1017a3c57fe021aca\/emma-smith-my-story-mid.jpg","genre":"Drama","title":"Emma Smith: My Story","releaseDate":1207872000000,"language":"en","tagline":"By the side of a founder of a new faith was a woman of undeniable courage.","type":"Movie","_key":"64797"} +{"label":"Russian Ark","description":"A visually hypnotizing cinematic feat, RUSSIAN ARK is a spellbinding ode to St. Petersburg's State Hermitage Museum. Shot in one fluid take, the camera floats & careens through the lavish corridors of the museum, following the ghost-like narrator & The \"Marquis\" through different time periods and events, from the 1700s to the present, interacting with a period dressed cast of 867 actors.","id":"16646","runtime":99,"imdbId":"tt0318034","version":121,"lastModified":"1301908092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d5\/4d1370485e73d608340016d5\/russkiy-kovcheg-mid.jpg","genre":"Drama","title":"Russian Ark","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"64798"} +{"label":"Sergei Dontsov","version":29,"id":"107761","lastModified":"1301902513000","name":"Sergei Dontsov","type":"Person","_key":"64799"} +{"label":"Aleksandr Sokurov","version":41,"id":"107762","lastModified":"1301902964000","name":"Aleksandr Sokurov","type":"Person","_key":"64800"} +{"label":"VeggieTales: The Wonderful Wizard of Ha's","description":"Darby is willing to sacrifice everything to reach a magical world where the wizard can make all his dreams come true. But once he gets there, he discovers that life over the rainbow is not quite as colorful as he imagined. Delightful songs and a story combine with the parable of the prodigal son to teach children important lessons about the value of home, family and forgiveness.","id":"16647","runtime":45,"imdbId":"tt1187355","version":28,"lastModified":"1301418944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adc\/4bc94cb2017a3c57fe021adc\/veggietales-the-wonderful-wizard-of-ha-s-mid.jpg","studio":"Big Idea Productions","genre":"Family","title":"VeggieTales: The Wonderful Wizard of Ha's","releaseDate":1191888000000,"language":"en","type":"Movie","_key":"64801"} +{"label":"The Other Side of Heaven","description":"John H. Groberg, a middle class kid from Idaho Falls, crosses the Pacific to become a Mormon missionary in the remote and exotic Tongan island kingdom during the 1950's. He leaves behind a loving family and the true love of his life, Jean. Through letters and musings across the miles, John shares his humbling and sometimes hilarious adventures with \"the girl back home\", and her letters buoy up his spirits in difficult times. John must struggle to overcome language barriers, physical hardship and","id":"16651","runtime":113,"imdbId":"tt0250371","version":147,"lastModified":"1301904085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae5\/4bc94cb3017a3c57fe021ae5\/the-other-side-of-heaven-mid.jpg","studio":"3Mark Entertainment","genre":"Adventure","title":"The Other Side of Heaven","releaseDate":1018569600000,"language":"en","tagline":"An Epic Journey.","type":"Movie","_key":"64802"} +{"label":"Mitch Davis","version":23,"id":"86164","lastModified":"1301902983000","name":"Mitch Davis","type":"Person","_key":"64803"} +{"label":"Happily N'Ever After 2","description":"Fairy tales collide when Mambo and Munk tip the scales of good and evil once again.","id":"16652","runtime":75,"imdbId":"tt1235837","version":286,"lastModified":"1301903479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aee\/4bc94cb3017a3c57fe021aee\/happily-n-ever-after-2-mid.jpg","genre":"Family","title":"Happily N'Ever After 2","releaseDate":1237852800000,"language":"en","type":"Movie","_key":"64804"} +{"label":"The Singles Ward","description":"When Jonathan Jordan gets divorced he's thrust back into the world of being a single Mormon - a world who's ultimate goal is eternal marriage. Struggling to fit in, Jonathan decides to stop going to church only to be pursued by the members of the local singles ward who want to reactivate him. Nothing works until Jonathan falls for Cammie Giles, the ward activities director. Suddenly, going to church becomes much more appealing. But his he going for the right reasons?","id":"16653","runtime":102,"imdbId":"tt0306069","version":93,"lastModified":"1301907399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc94cb4017a3c57fe021af7\/the-singles-ward-mid.jpg","genre":"Comedy","title":"The Singles Ward","releaseDate":1012348800000,"language":"en","type":"Movie","_key":"64805"} +{"label":"John Mayer: Any Given Thursday","description":"Any Given Thursday is a live CD\/DVD by John Mayer, recorded in Birmingham, Alabama at the Oak Mountain Amphitheater on September 12, 2002, during the Room for Squares tour. The album quickly peaked at #17 on the Billboard 200 chart. It features mostly songs from Room for Squares.","id":"16654","runtime":120,"imdbId":"tt0362415","version":58,"lastModified":"1301903362000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0c\/4bc94cb9017a3c57fe021b0c\/john-mayer-any-given-thursday-mid.jpg","genre":"Music","title":"John Mayer: Any Given Thursday","releaseDate":1044921600000,"language":"en","type":"Movie","_key":"64806"} +{"label":"John Mayer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4c4b0a135e73d62a41000014\/john-mayer-profile.jpg","biography":"John Clayton Mayer (born October 16, 1977) is an American musician. Raised in Fairfield, Connecticut, he attended Berklee College of Music in Boston before moving to Atlanta, Georgia in 1997, where he refined his skills and gained a following. His first two studio albums, Room for Squares and Heavier Things, did well commercially, achieving multi-platinum status. In 2003, he won a Best Male Pop Vocal Performance Grammy Award for \"Your Body Is a Wonderland\".","version":25,"birthday":"245804400000","id":"85930","birthplace":"Bridgeport, Connecticut, USA","lastModified":"1301902212000","name":"John Mayer","type":"Person","_key":"64807"} +{"label":"Prot\u00e9g\u00e9","description":"Undercover officer Nick had spent the last seven years penetrating into the core of a drug ring working his way up from a street dealer post to the managerial position handling cargo deliveries for Kwan - the biggest player in the local heroin market. When the ailing Kwan makes Nick his prot\u00e9g\u00e9, Nick could not but sway before money and power and starts to perform his role like a real drug trafficker. This, together with his affair with heroin-addict Jane, causes Nick to becomes more and more con","id":"16657","runtime":106,"imdbId":"tt0841150","version":78,"lastModified":"1301904034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1f\/4bc94cba017a3c57fe021b1f\/moon-to-mid.jpg","studio":"Artforce International","genre":"Drama","title":"Prot\u00e9g\u00e9","releaseDate":1176422400000,"language":"en","type":"Movie","_key":"64808"} +{"label":"Tung-Shing Yee","version":42,"id":"85562","lastModified":"1301922444000","name":"Tung-Shing Yee","type":"Person","_key":"64809"} +{"label":"Nirut Sirichanya","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/152\/4cdff38b5e73d60f6c000152\/nirut-sirichanya-profile.jpg","version":22,"id":"116421","lastModified":"1301902757000","name":"Nirut Sirichanya","type":"Person","_key":"64810"} +{"label":"Mei-tian He","version":18,"id":"116422","lastModified":"1301902316000","name":"Mei-tian He","type":"Person","_key":"64811"} +{"label":"Kai Chi Liu","version":27,"id":"116423","lastModified":"1301903003000","name":"Kai Chi Liu","type":"Person","_key":"64812"} +{"label":"My Brilliant Career","description":"A young woman who is determined to maintain her independence finds herself at odds with her family who wants her to tame her wild side and get married.","id":"16659","runtime":100,"imdbId":"tt0079596","version":115,"lastModified":"1301907697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b28\/4bc94cbb017a3c57fe021b28\/my-brilliant-career-mid.jpg","genre":"Drama","title":"My Brilliant Career","releaseDate":308016000000,"language":"en","type":"Movie","_key":"64813"} +{"label":"Robert Grubb","version":20,"id":"127135","lastModified":"1301902802000","name":"Robert Grubb","type":"Person","_key":"64814"} +{"label":"Aileen Britton","version":20,"id":"127136","lastModified":"1301902802000","name":"Aileen Britton","type":"Person","_key":"64815"} +{"label":"Peter Whitford","version":23,"id":"127137","lastModified":"1301902590000","name":"Peter Whitford","type":"Person","_key":"64816"} +{"label":"Patricia Kennedy","version":20,"id":"127138","lastModified":"1301902802000","name":"Patricia Kennedy","type":"Person","_key":"64817"} +{"label":"Marion Shad","version":20,"id":"127139","lastModified":"1301902802000","name":"Marion Shad","type":"Person","_key":"64818"} +{"label":"Aaron Wood","version":20,"id":"127140","lastModified":"1301902802000","name":"Aaron Wood","type":"Person","_key":"64819"} +{"label":"Sue Davies","version":20,"id":"127141","lastModified":"1301902802000","name":"Sue Davies","type":"Person","_key":"64820"} +{"label":"Gordon Piper","version":20,"id":"127142","lastModified":"1301902802000","name":"Gordon Piper","type":"Person","_key":"64821"} +{"label":"Tilt: The Battle to Save Pinball","description":"THE SITUATION facing the pinball designers at Williams Electronic Games in 1998: come up with something new, or see the world's largest pinball manufacturer be shut down forever.\n\nAnd Williams' designers did come up with something amazing: a brand new kind of pinball machine\u2014\"Pinball 2000\"\u2014that fused video with classic pinball gameplay, preserving what was great about pinball yet opening up all-ne","id":"16660","runtime":58,"imdbId":"tt0918519","trailer":"http:\/\/www.youtube.com\/watch?v=2105","homepage":"http:\/\/www.tilt-movie.com\/","version":47,"lastModified":"1301907251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b31\/4bc94cbc017a3c57fe021b31\/the-future-of-pinball-mid.jpg","genre":"Documentary","title":"Tilt: The Battle to Save Pinball","releaseDate":1147564800000,"language":"en","type":"Movie","_key":"64822"} +{"label":"Greg Maletic","version":17,"id":"92629","lastModified":"1301902459000","name":"Greg Maletic","type":"Person","_key":"64823"} +{"label":"George Gomez","version":17,"id":"92632","lastModified":"1301902632000","name":"George Gomez","type":"Person","_key":"64824"} +{"label":"Pat Lawlor","version":17,"id":"92633","lastModified":"1301902459000","name":"Pat Lawlor","type":"Person","_key":"64825"} +{"label":"Larry DeMar","version":17,"id":"92634","lastModified":"1301902887000","name":"Larry DeMar","type":"Person","_key":"64826"} +{"label":"Tom Uban","version":17,"id":"92635","lastModified":"1301902459000","name":"Tom Uban","type":"Person","_key":"64827"} +{"label":"Cameron Silver","version":17,"id":"92636","lastModified":"1301902459000","name":"Cameron Silver","type":"Person","_key":"64828"} +{"label":"Duncan Brown","version":17,"id":"92637","lastModified":"1301902459000","name":"Duncan Brown","type":"Person","_key":"64829"} +{"label":"Louis Koziarz","version":17,"id":"92638","lastModified":"1301902887000","name":"Louis Koziarz","type":"Person","_key":"64830"} +{"label":"Jim Patla","version":17,"id":"92639","lastModified":"1301902459000","name":"Jim Patla","type":"Person","_key":"64831"} +{"label":"Roger Sharpe","version":17,"id":"92640","lastModified":"1301902459000","name":"Roger Sharpe","type":"Person","_key":"64832"} +{"label":"Steve Kordek","version":17,"id":"92641","lastModified":"1301902459000","name":"Steve Kordek","type":"Person","_key":"64833"} +{"label":"Lyman Sheats","version":17,"id":"92642","lastModified":"1301902459000","name":"Lyman Sheats","type":"Person","_key":"64834"} +{"label":"The Kid Brother","description":"The most important family in Hickoryville is (naturally enough) the Hickorys, with sheriff Jim and his tough manly sons Leo and Olin. The timid youngest son, Harold, doesn't have the muscles to match up to them, so he has to use his wits to win the respect of his strong father and also the love of beautiful Mary.","id":"16661","runtime":82,"imdbId":"tt0018051","version":83,"lastModified":"1301907090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/963\/4c5da28e7b9aa151f3000963\/the-kid-brother-mid.jpg","genre":"Comedy","title":"The Kid Brother","releaseDate":-1355616000000,"language":"en","type":"Movie","_key":"64835"} +{"label":"Harold Lloyd","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/96a\/4be47fd6017a3c35c100096a\/harold-lloyd-profile.jpg","biography":"Harold Lloyd has been called the cinema\u2019s \u201cfirst man in space.\u201d He was a product of the film industry. His comedy wasn\u2019t imported from Vaudeville or the British Music Hall like his contemporaries, Charlie Chaplin and Buster Keaton. Harold learned to use the camera the way other comics used a bowler hat or a funny walk. \n\nIn 1917 he shed the comedic clown personas prevalent in comedy for hundreds of years and pioneered romantic comedy by putting the ordinary guy up on the screen \u2013- a guy with fau","version":153,"birthday":"-2420413200000","id":"88953","birthplace":" Burchard, Nebraska USA","lastModified":"1301901082000","name":"Harold Lloyd","type":"Person","_key":"64836"} +{"label":"Jobyna Ralston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/362\/4c47aff37b9aa15de0000362\/jobyna-ralston-profile.jpg","version":39,"birthday":"-2212534800000","id":"102501","lastModified":"1301901607000","name":"Jobyna Ralston","type":"Person","_key":"64837"} +{"label":"Walter James","version":18,"id":"97996","lastModified":"1301902735000","name":"Walter James","type":"Person","_key":"64838"} +{"label":"Leo Willis","version":19,"id":"141140","lastModified":"1301902579000","name":"Leo Willis","type":"Person","_key":"64839"} +{"label":"Olin Francis","version":15,"id":"148401","lastModified":"1301903095000","name":"Olin Francis","type":"Person","_key":"64840"} +{"label":"Constantine Romanoff","version":15,"id":"148402","lastModified":"1301903095000","name":"Constantine Romanoff","type":"Person","_key":"64841"} +{"label":"Frank Lanning","version":18,"id":"98000","lastModified":"1301902690000","name":"Frank Lanning","type":"Person","_key":"64842"} +{"label":"Ralph Yearsley","version":15,"id":"148403","lastModified":"1301903095000","name":"Ralph Yearsley","type":"Person","_key":"64843"} +{"label":"Ted Wilde","version":20,"id":"143558","lastModified":"1301902394000","name":"Ted Wilde","type":"Person","_key":"64844"} +{"label":"J.A. Howe","version":15,"id":"143559","lastModified":"1301902419000","name":"J.A. Howe","type":"Person","_key":"64845"} +{"label":"Resa dei conti, La","description":"Tomas Milian played Cuchillo who is a charming rogue accused of rape and murder. Van Cleef as Jonathan Corbett hunts him down to help further his own political ambitions. But all is not what it seems.","id":"16662","runtime":105,"imdbId":"tt0063501","version":58,"lastModified":"1301908284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b43\/4bc94cbd017a3c57fe021b43\/resa-dei-conti-la-mid.jpg","studio":"Produzioni Europee Associati","genre":"Western","title":"Resa dei conti, La","releaseDate":-97545600000,"language":"en","type":"Movie","_key":"64846"} +{"label":"G\u00e9rard Herter","version":18,"id":"80692","lastModified":"1301902479000","name":"G\u00e9rard Herter","type":"Person","_key":"64847"} +{"label":"Mar\u00eda Granada","version":19,"id":"80693","lastModified":"1301902459000","name":"Mar\u00eda Granada","type":"Person","_key":"64848"} +{"label":"All About Lily Chou-Chou","description":"All About Lily Chou-Chou follows two childhood friends, Shusuke Hoshino and Yuichi Hasumi, from the end of their junior high school run until the beginning of high school. The film has a discontinuous storyline, starting midway through the story, just after high school begins, then flashes back to junior high and summer vacation, and then skips back to the present.In junior high, Hoshino was the best student in school, but was picked on by his classmates. He was skilled at kendo, and had an attr","id":"16664","runtime":146,"imdbId":"tt0297721","version":99,"lastModified":"1301905773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4c\/4bc94cbe017a3c57fe021b4c\/16664-mid.jpg","genre":"Comedy","title":"All About Lily Chou-Chou","releaseDate":999820800000,"language":"en","type":"Movie","_key":"64849"} +{"label":"Hayato Ichihara","version":25,"id":"96472","lastModified":"1301902584000","name":"Hayato Ichihara","type":"Person","_key":"64850"} +{"label":"Sh\u00fbgo Oshinari","version":20,"id":"96473","lastModified":"1301902632000","name":"Sh\u00fbgo Oshinari","type":"Person","_key":"64851"} +{"label":"Miwako Ichikawa","version":17,"id":"96474","lastModified":"1301902632000","name":"Miwako Ichikawa","type":"Person","_key":"64852"} +{"label":"Izumi Inamori","version":19,"id":"96475","lastModified":"1301902487000","name":"Izumi Inamori","type":"Person","_key":"64853"} +{"label":"Kazusa Matsuda","version":17,"id":"96476","lastModified":"1301902632000","name":"Kazusa Matsuda","type":"Person","_key":"64854"} +{"label":"Whisky Galore!","description":"Based on a true story. The name of the real ship, that sunk Feb 5 1941 - during WWII - was S\/S Politician. Having left Liverpool two days earlier, heading for Jamaica, it sank outside Eriskay, The Outer Hebrides, Scotland, in bad weather, containing 250,000 bottles of whisky. The locals gathered as many bottles as they could, before the proper authorities arrived, and even today, bottles are found in the sand or in the sea every other year.","id":"16665","runtime":0,"imdbId":"tt0042040","version":95,"lastModified":"1301907644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b55\/4bc94cbe017a3c57fe021b55\/whisky-galore-mid.jpg","genre":"Comedy","title":"Whisky Galore!","releaseDate":-631756800000,"language":"en","type":"Movie","_key":"64855"} +{"label":"Catherine Lacey","version":19,"id":"101723","lastModified":"1301902728000","name":"Catherine Lacey","type":"Person","_key":"64856"} +{"label":"Bruce Seton","version":20,"id":"95614","lastModified":"1301902967000","name":"Bruce Seton","type":"Person","_key":"64857"} +{"label":"War Dance","description":"Three children living in a displacement camp in northern Uganda compete in their country's national music and dance festival.","id":"16666","runtime":0,"imdbId":"tt0912599","version":1217,"lastModified":"1302021729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5e\/4bc94cbf017a3c57fe021b5e\/war-dance-mid.jpg","genre":"Documentary","title":"War Dance","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64858"} +{"label":"The Best Two Years","description":"No overview found.","id":"16668","runtime":112,"imdbId":"tt0377038","homepage":"http:\/\/www.halestormentertainment.com\/movies\/best2years\/index.html","version":134,"lastModified":"1301906258000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b67\/4bc94cbf017a3c57fe021b67\/the-best-two-years-mid.jpg","studio":"Harvest Films","genre":"Comedy","title":"The Best Two Years","releaseDate":1077235200000,"language":"en","type":"Movie","_key":"64859"} +{"label":"Cameron Hopkin","version":19,"id":"87802","lastModified":"1301902459000","name":"Cameron Hopkin","type":"Person","_key":"64860"} +{"label":"David Nibley","version":20,"id":"87803","lastModified":"1301902459000","name":"David Nibley","type":"Person","_key":"64861"} +{"label":"Scott Christopher","version":21,"id":"87804","lastModified":"1301902975000","name":"Scott Christopher","type":"Person","_key":"64862"} +{"label":"Ineke den Hollander","version":19,"id":"87805","lastModified":"1301902459000","name":"Ineke den Hollander","type":"Person","_key":"64863"} +{"label":"Jaime Anderson","version":19,"id":"87806","lastModified":"1301902459000","name":"Jaime Anderson","type":"Person","_key":"64864"} +{"label":"Andrea Anderson","version":19,"id":"87807","lastModified":"1301902632000","name":"Andrea Anderson","type":"Person","_key":"64865"} +{"label":"Homme qui plantait des arbres, L'","description":"No overview found.","id":"16669","runtime":30,"imdbId":"tt0093488","version":31,"lastModified":"1300980346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b70\/4bc94cc0017a3c57fe021b70\/homme-qui-plantait-des-arbres-l-mid.jpg","title":"Homme qui plantait des arbres, L'","releaseDate":536457600000,"language":"en","type":"Movie","_key":"64866"} +{"label":"PilotsEYE.tv Nordpol Sonderflug LTU A330","description":"No overview found.","id":"16670","runtime":82,"imdbId":"tt1371581","homepage":"www.pilotseye.tv","version":32,"lastModified":"1301904708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b79\/4bc94cc0017a3c57fe021b79\/pilotseye-tv-nordpol-sonderflug-ltu-a330-mid.jpg","studio":"AignerMedia","genre":"Documentary","title":"PilotsEYE.tv Nordpol Sonderflug LTU A330","releaseDate":1185926400000,"language":"en","type":"Movie","_key":"64867"} +{"label":"Thomas Aigner","version":21,"id":"80696","lastModified":"1301902334000","name":"Thomas Aigner","type":"Person","_key":"64868"} +{"label":"PilotsEYE.tv: Malediven","description":"No overview found.","id":"16671","runtime":70,"imdbId":"tt1521041","homepage":"http:\/\/www.pilotseye.tv","version":31,"lastModified":"1301904999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc94cc3017a3c57fe021b82\/pilotseye-tv-malediven-ltu-a330-mid.jpg","studio":"AignerMedia","genre":"Documentary","title":"PilotsEYE.tv: Malediven","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"64869"} +{"label":"Joe Moser","version":17,"id":"80694","lastModified":"1301902334000","name":"Joe Moser","type":"Person","_key":"64870"} +{"label":"Stefan Kater","version":16,"id":"80697","lastModified":"1301902535000","name":"Stefan Kater","type":"Person","_key":"64871"} +{"label":"Woman in the Dunes","description":"No overview found.","id":"16672","runtime":123,"imdbId":"tt0058625","version":80,"lastModified":"1301906601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9b\/4bc94cc7017a3c57fe021b9b\/suna-no-onna-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Drama","title":"Woman in the Dunes","releaseDate":-185500800000,"language":"en","type":"Movie","_key":"64872"} +{"label":"Hiroshi Teshigahara","version":29,"id":"96801","lastModified":"1301901372000","name":"Hiroshi Teshigahara","type":"Person","_key":"64873"} +{"label":"Hiroko Ito","version":18,"id":"96803","lastModified":"1301902459000","name":"Hiroko Ito","type":"Person","_key":"64874"} +{"label":"K\u00f4ji Mitsui","version":20,"id":"96804","lastModified":"1301902459000","name":"K\u00f4ji Mitsui","type":"Person","_key":"64875"} +{"label":"Sen Yano","version":23,"id":"96805","lastModified":"1301902510000","name":"Sen Yano","type":"Person","_key":"64876"} +{"label":"Ginz\u00f4 Sekiguchi","version":18,"id":"96806","lastModified":"1301902459000","name":"Ginz\u00f4 Sekiguchi","type":"Person","_key":"64877"} +{"label":"Ky\u00f4ko Kishida","version":24,"id":"94188","lastModified":"1301902544000","name":"Ky\u00f4ko Kishida","type":"Person","_key":"64878"} +{"label":"No Alibi","description":"Cain is Bob Lessing, a successful businessman who becomes amorously entangled with a dangerous and mysterious woman (Doig). What Lessing doesn't realize is that she has been sent by her powerful criminal boyfriend Vic Haddock (Roberts) to collect a large sum of drug money owed to him by Bob's murdered brother. ","id":"16673","runtime":90,"imdbId":"tt0192719","version":86,"lastModified":"1301904555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba0\/4bc94cc8017a3c57fe021ba0\/no-alibi-mid.jpg","genre":"Crime","title":"No Alibi","releaseDate":953856000000,"language":"en","type":"Movie","_key":"64879"} +{"label":"48 heures par jour","description":"Promise \u00e0 un brillant avenir professionnel mais fatigu\u00e9e de plafonner dans sa carri\u00e8re parce qu'elle doit aussi s'occuper de ses enfants, Marianne r\u00eaverait d'inverser les r\u00f4les avec son mari Bruno pour qu'il rentre plus t\u00f4t s'occuper du foyer et qu'elle puisse \u00e0 son tour se consacrer davantage \u00e0 son job !","id":"16675","runtime":89,"imdbId":"tt1179820","homepage":"http:\/\/www.48heuresparjour-lefilm.com\/","version":39,"lastModified":"1301905317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba9\/4bc94cc8017a3c57fe021ba9\/48-heures-par-jour-mid.jpg","studio":"TF1 Films Productions","genre":"Comedy","title":"48 heures par jour","releaseDate":1212537600000,"language":"en","type":"Movie","_key":"64880"} +{"label":"Catherine Castel","version":23,"id":"81748","lastModified":"1301902143000","name":"Catherine Castel","type":"Person","_key":"64881"} +{"label":"Mickey's Great Clubhouse Hunt","description":"Mickey Mouse needs your help. His clubhouse has mysteriously broken into pieces and now it's floating away with his pals Minnie, Donald, Goofy and Daisy inside. And to top it off, he's been planning a big party. Help Mickey save his friends and his clubhouse and join in on the party fun.","id":"16676","runtime":48,"imdbId":"tt0974599","version":66,"lastModified":"1301902709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bae\/4bc94cc9017a3c57fe021bae\/mickey-s-great-clubhouse-hunt-mid.jpg","studio":"Disney Channel","title":"Mickey's Great Clubhouse Hunt","releaseDate":1174348800000,"language":"en","type":"Movie","_key":"64882"} +{"label":"Howy Parkins","version":26,"id":"80699","lastModified":"1302014858000","name":"Howy Parkins","type":"Person","_key":"64883"} +{"label":"Barney - Riff's Musical Zoo","description":"Barney has a tee-Riff-ic surprise for BJ and Baby Bop - their cousin Riff is moving to town! Riff surprises everyone with his awesome musical abilities and super-fun personality. Everyone is very excited that Riff will be in town for good.\r\nRiff is a little shy at first but with the help of new friends BJ and Baby Bop, Riff fits right into Barney's world of fun and imagination.","id":"16682","runtime":79,"imdbId":"tt1108033","version":43,"lastModified":"1301908601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb7\/4bc94cc9017a3c57fe021bb7\/barney-riff-s-musical-zoo-mid.jpg","studio":"HIT Entertainment","title":"Barney - Riff's Musical Zoo","releaseDate":1192147200000,"language":"en","type":"Movie","_key":"64884"} +{"label":"Varg Veum - Tornerose","description":"After extricating 17-year-old Lisa Halle from a life of prostitution in Copenhagen, private investigator Varg Veum becomes ensnared in a tangle of parental neglect and bad love when he is hired to locate Lisa's boyfriend, Peter Werner.","id":"16685","runtime":90,"imdbId":"tt1181936","trailer":"http:\/\/www.youtube.com\/watch?v=3056","version":68,"lastModified":"1301904007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc9\/4bc94cca017a3c57fe021bc9\/varg-veum-tornerose-mid.jpg","studio":"SF Norge","genre":"Crime","title":"Varg Veum - Tornerose","releaseDate":1200182400000,"language":"en","type":"Movie","_key":"64885"} +{"label":"Kathrine Fagerland","version":19,"id":"107741","lastModified":"1301902887000","name":"Kathrine Fagerland","type":"Person","_key":"64886"} +{"label":"Endre Hellestveit","version":22,"id":"107740","lastModified":"1301901863000","name":"Endre Hellestveit","type":"Person","_key":"64887"} +{"label":"Julie Rusti","version":22,"id":"109914","lastModified":"1301903033000","name":"Julie Rusti","type":"Person","_key":"64888"} +{"label":"Marianne Nielsen","version":17,"id":"109915","lastModified":"1301903033000","name":"Marianne Nielsen","type":"Person","_key":"64889"} +{"label":"Bj\u00f8rn Willberg Andersen","version":16,"id":"109916","lastModified":"1301902887000","name":"Bj\u00f8rn Willberg Andersen","type":"Person","_key":"64890"} +{"label":"\u00c5got Sendstad","version":16,"id":"109917","lastModified":"1301902887000","name":"\u00c5got Sendstad","type":"Person","_key":"64891"} +{"label":"Erik Richter Strand","version":17,"id":"109918","lastModified":"1301902459000","name":"Erik Richter Strand","type":"Person","_key":"64892"} +{"label":"Varg Veum - Bitre Blomster","description":"Karsten Aslaksen, chief engineer of a large chemical company, disappears without trace. His married lover, a successful Christian politician named Vibeke Farang, approaches private investigator Varg Veum to track him down discreetly.","id":"16686","runtime":90,"imdbId":"tt0844948","trailer":"http:\/\/www.youtube.com\/watch?v=3057","version":104,"lastModified":"1301906054000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd2\/4bc94ccc017a3c57fe021bd2\/varg-veum-bitre-blomster-mid.jpg","studio":"SF Norge","genre":"Action","title":"Varg Veum - Bitre Blomster","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"64893"} +{"label":"Per Jansen","version":18,"id":"107745","lastModified":"1301902313000","name":"Per Jansen","type":"Person","_key":"64894"} +{"label":"\u00d8yvind Gran","version":16,"id":"107746","lastModified":"1301902632000","name":"\u00d8yvind Gran","type":"Person","_key":"64895"} +{"label":"Anders Dale","version":16,"id":"107747","lastModified":"1301902887000","name":"Anders Dale","type":"Person","_key":"64896"} +{"label":"Ove Andreassen","version":17,"id":"109919","lastModified":"1301902675000","name":"Ove Andreassen","type":"Person","_key":"64897"} +{"label":"Belinda Braza","version":16,"id":"109920","lastModified":"1301902632000","name":"Belinda Braza","type":"Person","_key":"64898"} +{"label":"Glenn Andre Kaada","version":17,"id":"109921","lastModified":"1301902459000","name":"Glenn Andre Kaada","type":"Person","_key":"64899"} +{"label":"Julie Fl\u00f8ysand","version":16,"id":"109922","lastModified":"1301902887000","name":"Julie Fl\u00f8ysand","type":"Person","_key":"64900"} +{"label":"Tor Andre Rundhaug","version":16,"id":"109923","lastModified":"1301902887000","name":"Tor Andre Rundhaug","type":"Person","_key":"64901"} +{"label":"Ulrik Imtiaz Rolfsen","version":16,"id":"109924","lastModified":"1301902887000","name":"Ulrik Imtiaz Rolfsen","type":"Person","_key":"64902"} +{"label":"Wushu","description":"Ten years ago, five students joined a martial arts school and learned the disciplines of Wushu and the bonds of friendship. Today, both will be put to the test after they and a former student stumble into a child kidnapping ring","id":"16687","runtime":104,"imdbId":"tt0790786","trailer":"http:\/\/www.youtube.com\/watch?v=50GWQuX3mWY","homepage":"http:\/\/ent.sina.com.cn\/f\/m\/wushu\/index.shtml","version":114,"lastModified":"1301907711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd7\/4bc94ccc017a3c57fe021bd7\/wushu-mid.jpg","genre":"Action","title":"Wushu","releaseDate":1238803200000,"language":"en","type":"Movie","_key":"64903"} +{"label":"Antony Szeto","version":13,"id":"223533","lastModified":"1301903985000","name":"Antony Szeto","type":"Person","_key":"64904"} +{"label":"Fengchao Liu","version":13,"id":"223535","lastModified":"1301903985000","name":"Fengchao Liu","type":"Person","_key":"64905"} +{"label":"Wenjie Wang","version":13,"id":"223536","lastModified":"1301903984000","name":"Wenjie Wang","type":"Person","_key":"64906"} +{"label":"Return to Never Land","description":"The classic tale of 'Peter Pan' continues in Disney's sequel 'Return to Never Land'. In 1940 on a world besieged by World War II, Wendy, now grown up, has two children, one of them is her daughter, Jane.","id":"16690","runtime":72,"imdbId":"tt0280030","trailer":"http:\/\/www.youtube.com\/watch?v=2803","version":143,"lastModified":"1301902187000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf5\/4bc94cd2017a3c57fe021bf5\/return-to-never-land-mid.jpg","studio":"Disney Toon Studio","genre":"Animation","title":"Return to Never Land","releaseDate":1013731200000,"language":"en","type":"Movie","_key":"64907"} +{"label":"Harriet Owen","version":16,"id":"107358","lastModified":"1301903114000","name":"Harriet Owen","type":"Person","_key":"64908"} +{"label":"Blayne Weaver","version":27,"id":"77885","lastModified":"1301901516000","name":"Blayne Weaver","type":"Person","_key":"64909"} +{"label":"The Tale of Zatoichi","description":"The adventures of a blind, gambling masseur who also happens to be a master swordsman.","id":"16692","runtime":96,"imdbId":"tt0056714","version":116,"lastModified":"1301903520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c23\/4bc94cd5017a3c57fe021c23\/zatoichi-monogatari-mid.jpg","studio":"Daiei Motion Picture Company","genre":"Action","title":"The Tale of Zatoichi","releaseDate":-243216000000,"language":"en","type":"Movie","_key":"64910"} +{"label":"Kenji Misumi","version":41,"id":"80702","lastModified":"1301901842000","name":"Kenji Misumi","type":"Person","_key":"64911"} +{"label":"Shintar\u00f4 Katsu","version":75,"id":"80704","lastModified":"1301901420000","name":"Shintar\u00f4 Katsu","type":"Person","_key":"64912"} +{"label":"Masayo Banri","version":27,"id":"80705","lastModified":"1301902065000","name":"Masayo Banri","type":"Person","_key":"64913"} +{"label":"Ryuzo Shimada","version":26,"id":"80706","lastModified":"1301902204000","name":"Ryuzo Shimada","type":"Person","_key":"64914"} +{"label":"Hajime Mitamura","version":24,"id":"80707","lastModified":"1301902065000","name":"Hajime Mitamura","type":"Person","_key":"64915"} +{"label":"Shigeru Amachi","version":25,"id":"80708","lastModified":"1301902065000","name":"Shigeru Amachi","type":"Person","_key":"64916"} +{"label":"The Tale of Zatoichi Continues","description":"Returning to the village where a year before he had killed Hirate, a much-admired opponent, Zatoichi encounters another swordsman and former rival in love: his own brother. He must face in combat not only the pursuing retainers but his own flesh-and-blood.","id":"16693","runtime":72,"imdbId":"tt0200309","version":81,"lastModified":"1301903521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c40\/4bc94cd9017a3c57fe021c40\/zoku-zatoichi-monogatari-mid.jpg","studio":"Daiei Motion Picture Company","genre":"Action","title":"The Tale of Zatoichi Continues","releaseDate":-227923200000,"language":"en","type":"Movie","_key":"64917"} +{"label":"Kazuo Mori","version":23,"id":"80709","lastModified":"1301901842000","name":"Kazuo Mori","type":"Person","_key":"64918"} +{"label":"Yaeko Mizutani","version":18,"id":"80712","lastModified":"1301902459000","name":"Yaeko Mizutani","type":"Person","_key":"64919"} +{"label":"Yutaka Nakamura","version":20,"id":"80713","lastModified":"1301902459000","name":"Yutaka Nakamura","type":"Person","_key":"64920"} +{"label":"Sonosuke Sawamura","version":20,"id":"80714","lastModified":"1301902459000","name":"Sonosuke Sawamura","type":"Person","_key":"64921"} +{"label":"Sh\u00f4saku Sugiyama","version":21,"id":"80715","lastModified":"1301902515000","name":"Sh\u00f4saku Sugiyama","type":"Person","_key":"64922"} +{"label":"Tamiemon Arashi","version":20,"id":"80716","lastModified":"1301902459000","name":"Tamiemon Arashi","type":"Person","_key":"64923"} +{"label":"Yoshito Yamaji","version":20,"id":"80717","lastModified":"1301902459000","name":"Yoshito Yamaji","type":"Person","_key":"64924"} +{"label":"Thomas & Friends: 10 Years","description":"No overview found.","id":"16694","runtime":63,"version":60,"lastModified":"1300980348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/410\/4d7bc1315e73d65ec6001410\/10-years-of-thomas-friends-mid.jpg","genre":"Animation","title":"Thomas & Friends: 10 Years","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"64925"} +{"label":"David Mitton","version":17,"id":"80718","lastModified":"1301902365000","name":"David Mitton","type":"Person","_key":"64926"} +{"label":"Bring It On Collection","description":"The \"Bring It On\" franchise is a collection of films about two competing high school cheerleading squads.","id":"16698","version":34,"lastModified":"1301906166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c49\/4bc94cda017a3c57fe021c49\/bring-it-on-collection-mid.jpg","title":"Bring It On Collection","language":"en","type":"Movie","_key":"64927"} +{"label":"Smother","description":"After he's fired from his job, an everyday guy faces pressure from his wife to have a baby and from his mom, who has decided to move in with the young couple.","id":"16699","runtime":92,"imdbId":"tt0867591","version":155,"lastModified":"1301906065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c52\/4bc94cda017a3c57fe021c52\/smother-mid.jpg","studio":"Carsey-Werner Company","genre":"Comedy","title":"Smother","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"64928"} +{"label":"Vince Di Meglio","version":32,"id":"29012","lastModified":"1301901452000","name":"Vince Di Meglio","type":"Person","_key":"64929"} +{"label":"Sarah Lancaster","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04f\/4c02b526017a3c7e8b00004f\/sarah-lancaster-profile.jpg","version":19,"id":"81217","lastModified":"1301902325000","name":"Sarah Lancaster","type":"Person","_key":"64930"} +{"label":"Bonneville","description":"Three women take a road trip to Santa Barbara in order to deliver the ashes of one of their dead husbands to his resentful daughter. Faced with the decision of a lifetime, Arvilla Holden hijacks her two best friends and sets off in a vintage '66 Bonneville convertible.","id":"16700","runtime":93,"imdbId":"tt0487195","version":215,"lastModified":"1301907464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/040\/4bf04fa3017a3c2d36000040\/bonneville-mid.jpg","studio":"SenArt Films","genre":"Drama","title":"Bonneville","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"64931"} +{"label":"Christopher N. Rowley","version":21,"id":"126467","lastModified":"1301902225000","name":"Christopher N. Rowley","type":"Person","_key":"64932"} +{"label":"Evan May","version":22,"id":"126472","lastModified":"1301903017000","name":"Evan May","type":"Person","_key":"64933"} +{"label":"Erin May","version":21,"id":"126473","lastModified":"1301902804000","name":"Erin May","type":"Person","_key":"64934"} +{"label":"Tom Wopat","version":23,"id":"114293","lastModified":"1301902545000","name":"Tom Wopat","type":"Person","_key":"64935"} +{"label":"F\u00f6rortsungar","description":"No overview found.","id":"16701","runtime":96,"imdbId":"tt0882771","version":57,"lastModified":"1300980349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c64\/4bc94cdc017a3c57fe021c64\/forortsungar-mid.jpg","studio":"Gilda Film","title":"F\u00f6rortsungar","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64936"} +{"label":"Catti Edfeldt","version":22,"id":"80721","lastModified":"1301902459000","name":"Catti Edfeldt","type":"Person","_key":"64937"} +{"label":"Ylva Gustavsson","version":19,"id":"80722","lastModified":"1301902066000","name":"Ylva Gustavsson","type":"Person","_key":"64938"} +{"label":"Hamosad Hasagur","description":"No overview found.","id":"16702","runtime":40,"imdbId":"tt1248976","version":26,"lastModified":"1300980349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6d\/4bc94cdd017a3c57fe021c6d\/hamosad-hasagur-mid.jpg","title":"Hamosad Hasagur","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64939"} +{"label":"This Gun for Hire","description":"Hit man, Raven, is double crossed by nightclub owner Willard Gates who acts as a middleman for a traitorous industrialist, the president of Nitro Chemical, Alvin Brewster. Travelling to Los Angeles to kill his his betrayers, Raven meets up with Ellen Graham a nightclub magician and singer who has just landed a job with Gates. Ellen's fianc\u00e9e, policeman Lt. Michael Crane is on the trail of Raven. ","id":"16703","runtime":80,"imdbId":"tt0035432","trailer":"http:\/\/www.youtube.com\/watch?v=GSx-CiuC-QA","version":96,"lastModified":"1301905947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c76\/4bc94cde017a3c57fe021c76\/this-gun-for-hire-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"This Gun for Hire","releaseDate":-872208000000,"language":"en","type":"Movie","_key":"64940"} +{"label":"Laird Cregar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4bd5b8f8017a3c657d000006\/laird-cregar-profile.jpg","version":28,"id":"80726","lastModified":"1301902167000","name":"Laird Cregar","type":"Person","_key":"64941"} +{"label":"Roger Imhof","version":19,"id":"112364","lastModified":"1301902772000","name":"Roger Imhof","type":"Person","_key":"64942"} +{"label":"Pamela Blake","version":17,"id":"140180","lastModified":"1301902771000","name":"Pamela Blake","type":"Person","_key":"64943"} +{"label":"Patricia Farr","version":19,"id":"140181","lastModified":"1301902755000","name":"Patricia Farr","type":"Person","_key":"64944"} +{"label":"Mikhail Rasumny","version":22,"id":"121318","lastModified":"1301902771000","name":"Mikhail Rasumny","type":"Person","_key":"64945"} +{"label":"Frank Tuttle","version":24,"id":"80727","lastModified":"1301901608000","name":"Frank Tuttle","type":"Person","_key":"64946"} +{"label":"Hasar menuha","description":"No overview found.","id":"16705","runtime":100,"imdbId":"tt1075644","version":26,"lastModified":"1300980349000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7f\/4bc94cde017a3c57fe021c7f\/hasar-menuha-mid.jpg","studio":"Pie Films","title":"Hasar menuha","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64947"} +{"label":"Meet the Browns","description":"A single mother living in inner city Chicago, Brenda has been struggling for years to make ends meet and keep her three kids off the street.But when she's laid off with no warning, she starts losing hope for the first time - until a letter arrives announcing the death of a father she's never met.Desperate for any kind of help, Brenda takes her family to Georgia for the funeral. But nothing could have prepared her for the Browns, her father's fun-loving, crass Southern clan. In a small-town world","id":"16710","runtime":100,"imdbId":"tt1047494","version":240,"lastModified":"1301905771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c82\/4d5677cc5e73d617ba006c82\/meet-the-browns-mid.jpg","studio":"Tyler Perry Company, The","genre":"Comedy","title":"Meet the Browns","releaseDate":1206057600000,"language":"en","tagline":"Check your baggage at the door.","type":"Movie","_key":"64948"} +{"label":"Lance Gross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ef5\/4d7667755e73d6646e000ef5\/lance-gross-profile.jpg","biography":"<FONT size=3><B style=\"mso-bidi-font-weight: normal\"><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-bidi-font-family: Arial\">Lance Darnell Gross<\/SPAN><\/B><SPAN style=\"FONT-FAMILY: 'Gill Sans MT'; mso-bidi-font-family: Arial\"> was born on July 8, 1981 in <?xml:namespace prefix = st1 ns = \"urn:schemas-microsoft-com:office:smarttags\" \/><st1:place w:st=\"on\"><st1:City w:st=\"on\">Oakland<\/st1:City> <st1:State w:st=\"on\">California<\/st1:State><\/st1:place>. Gross t<SPAN style=\"COLOR: #333333\">urned down t","version":25,"birthday":"363391200000","id":"112566","birthplace":"California","lastModified":"1301902300000","name":"Lance Gross","type":"Person","_key":"64949"} +{"label":"Chloe Bailey","version":23,"id":"86800","lastModified":"1301902702000","name":"Chloe Bailey","type":"Person","_key":"64950"} +{"label":"Mariana Tolbert","version":17,"id":"137178","lastModified":"1301902560000","name":"Mariana Tolbert","type":"Person","_key":"64951"} +{"label":"The Hottie and the Nottie","description":"Nate moves to L.A. to track down Cristabel, the woman he's been in love with since childhood, only to discover that his plan to woo her only has one hurdle to overcome: what to do with June, Cristabel's ever-present, not-so-hot best friend? What's even more complicating is Nate's growing feelings for June, whose true beauty starts to emerge","id":"16712","runtime":91,"imdbId":"tt0804492","version":169,"lastModified":"1301904503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c91\/4bc94ce1017a3c57fe021c91\/the-hottie-and-the-nottie-mid.jpg","studio":"Purple Pictures","genre":"Action","title":"The Hottie and the Nottie","releaseDate":1203552000000,"language":"en","type":"Movie","_key":"64952"} +{"label":"Tom Putnam","version":15,"id":"146536","lastModified":"1301903097000","name":"Tom Putnam","type":"Person","_key":"64953"} +{"label":"A Christmas Carol","description":"Scrooge is a miserly old businessman in 1840's London. One Christmas Eve he is visited by the ghost of Marley, his dead business partner. Marley foretells that Scrooge will be visited by three spirits, each of whom will attempt to show Scrooge the error of his ways. Will Scrooge reform his ways in time to celebrate Christmas? Written by Mike Konczewski ","id":"16716","runtime":95,"imdbId":"tt0216621","trailer":"http:\/\/www.youtube.com\/watch?v=upAYkFugbco","version":113,"lastModified":"1301905337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9e\/4bc94ce5017a3c57fe021c9e\/a-christmas-carol-mid.jpg","genre":"Drama","title":"A Christmas Carol","releaseDate":944352000000,"language":"en","type":"Movie","_key":"64954"} +{"label":"The Telling","description":"In this horror anthology film, three girls pledge the most popular - and cruelest - sorority on campus. For their final task, they must tell the scariest story they know. Containing three distinct stories - one featuring a murderous doll, one a has-been actress and her run in with a film crew of the undead and, finally, a hunt-and-kill fright-fest. ","id":"16722","runtime":0,"imdbId":"tt1298721","homepage":"http:\/\/www.thetellingmovie.com\/","version":157,"lastModified":"1301905947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca5\/4d4609255e73d65385002ca5\/the-telling-mid.jpg","genre":"Horror","title":"The Telling","releaseDate":1239667200000,"language":"en","tagline":"Everyone's dying to be them.","type":"Movie","_key":"64955"} +{"label":"Bridget Marquardt","version":20,"id":"80731","lastModified":"1301902325000","name":"Bridget Marquardt","type":"Person","_key":"64956"} +{"label":"Holly Madison","version":20,"id":"80730","lastModified":"1301902325000","name":"Holly Madison","type":"Person","_key":"64957"} +{"label":"Jean Louise O'Sullivan","version":20,"id":"80732","lastModified":"1301902503000","name":"Jean Louise O'Sullivan","type":"Person","_key":"64958"} +{"label":"Sugar and Spice","description":"A popular high school cheerleader becomes pregnant with the star quarterback's child, only to find herself turning to crime to support the lifestyle she wants to live","id":"16723","runtime":81,"imdbId":"tt0186589","version":367,"lastModified":"1301902923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc5\/4bc94ce7017a3c57fe021cc5\/sugar-and-spice-mid.jpg","genre":"Comedy","title":"Sugar and Spice","releaseDate":980467200000,"language":"en","type":"Movie","_key":"64959"} +{"label":"Sara Marsh","version":21,"id":"84781","lastModified":"1301902360000","name":"Sara Marsh","type":"Person","_key":"64960"} +{"label":"Francine McDougall","version":22,"id":"84782","lastModified":"1301902524000","name":"Francine McDougall","type":"Person","_key":"64961"} +{"label":"The Tracey Fragments","description":"Tracey Berkowitz, 15, a self-described normal girl, loses her 9-year old brother, Sonny. In flashbacks and fragments, we meet her overbearing parents and the sweet, clueless Sonny. We watch Tracey navigate high school, friendless, picked on and teased. She develops a thing for Billy Zero, a new student, imagining he's her boyfriend. We see the day she loses Sonny and we watch her try to find him.","id":"16725","runtime":77,"imdbId":"tt0801526","version":165,"lastModified":"1301903911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ccf\/4bc94ce8017a3c57fe021ccf\/the-tracey-fragments-mid.jpg","genre":"Drama","title":"The Tracey Fragments","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"64962"} +{"label":"Ari Cohen","version":16,"id":"107185","lastModified":"1301902485000","name":"Ari Cohen","type":"Person","_key":"64963"} +{"label":"Erin McMurtry","version":16,"id":"107186","lastModified":"1301902655000","name":"Erin McMurtry","type":"Person","_key":"64964"} +{"label":"Chaiya","description":"No overview found.","id":"16726","runtime":0,"imdbId":"tt1090782","homepage":"http:\/\/www.muaythaichaiyathemovie.com\/","version":94,"lastModified":"1301903355000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdc\/4bc94ce9017a3c57fe021cdc\/chaiya-mid.jpg","title":"Chaiya","releaseDate":1188432000000,"language":"en","type":"Movie","_key":"64965"} +{"label":"Kongkiat Khomsiri","version":29,"id":"80733","lastModified":"1301902365000","name":"Kongkiat Khomsiri","type":"Person","_key":"64966"} +{"label":"Akara Amarttayakul","version":23,"id":"80734","lastModified":"1301902524000","name":"Akara Amarttayakul","type":"Person","_key":"64967"} +{"label":"The Namesake","description":"American-born Gogol, the son of Indian immigrants, wants to fit in among his fellow New Yorkers, despite his family's unwillingness to let go of their traditional ways.","id":"16727","runtime":122,"imdbId":"tt0433416","version":195,"lastModified":"1301904758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4bc94cea017a3c57fe021cea\/the-namesake-mid.jpg","genre":"Drama","title":"The Namesake","releaseDate":1173398400000,"language":"en","type":"Movie","_key":"64968"} +{"label":"Sahira Nair","version":22,"id":"128707","lastModified":"1301902056000","name":"Sahira Nair","type":"Person","_key":"64969"} +{"label":"Ruma Guha Thakurta","version":22,"id":"128708","lastModified":"1301902056000","name":"Ruma Guha Thakurta","type":"Person","_key":"64970"} +{"label":"Sabyasachi Chakraborty","version":22,"id":"128709","lastModified":"1301902051000","name":"Sabyasachi Chakraborty","type":"Person","_key":"64971"} +{"label":"Supriya Choudhury","version":20,"id":"128710","lastModified":"1301902056000","name":"Supriya Choudhury","type":"Person","_key":"64972"} +{"label":"Metallica: Cliff 'Em All!","description":"No overview found.","id":"16728","runtime":90,"imdbId":"tt0368653","version":212,"lastModified":"1301908440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf3\/4bc94cea017a3c57fe021cf3\/metallica-cliff-em-all-mid.jpg","title":"Metallica: Cliff 'Em All!","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"64973"} +{"label":"Cliff Burton","version":19,"id":"80735","lastModified":"1301902488000","name":"Cliff Burton","type":"Person","_key":"64974"} +{"label":"Non ti muovere","description":"No overview found.","id":"16729","runtime":125,"imdbId":"tt0330702","version":51,"lastModified":"1301419556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfc\/4bc94ceb017a3c57fe021cfc\/non-ti-muovere-mid.jpg","studio":"Cattleya","title":"Non ti muovere","releaseDate":1079049600000,"language":"en","type":"Movie","_key":"64975"} +{"label":"Massa'ot James Be'eretz Hakodesh","description":"No overview found.","id":"16730","runtime":91,"imdbId":"tt0305178","version":35,"lastModified":"1301908529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d05\/4bc94cec017a3c57fe021d05\/massa-ot-james-be-eretz-hakodesh-mid.jpg","studio":"Lama Productions","title":"Massa'ot James Be'eretz Hakodesh","releaseDate":1073520000000,"language":"en","type":"Movie","_key":"64976"} +{"label":"Shnat Effes","description":"No overview found.","id":"16731","runtime":131,"imdbId":"tt0426213","version":43,"lastModified":"1300980352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc94ced017a3c57fe021d0e\/shnat-effes-mid.jpg","title":"Shnat Effes","releaseDate":1136937600000,"language":"en","type":"Movie","_key":"64977"} +{"label":"Five Minutes of Heaven","description":"The story of former UVF member Alistair Little. Twenty-five years after Little killed Joe Griffen's brother, the media arrange an auspicious meeting between the two.","id":"16759","runtime":89,"imdbId":"tt1238291","trailer":"http:\/\/www.youtube.com\/watch?v=LODsCo7XA6Q","version":289,"lastModified":"1301904305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48c\/4d460bee5e73d6108f00048c\/five-minutes-of-heaven-mid.jpg","genre":"Crime","title":"Five Minutes of Heaven","releaseDate":1232323200000,"language":"en","tagline":"To face the future, they must face the past.","type":"Movie","_key":"64978"} +{"label":"Una Pel\u00edcula de Huevos","description":"A small egg named Toto decides that he wants to fulfill his purpose in life and become a chicken instead of dying in a frying pan; so he starts a quest to return to the farms along with his new friend, the noisy egg Willy and a crazy bacon stripe. The three friends will face lot of obstacles in their quest.","id":"16761","runtime":90,"imdbId":"tt0824696","homepage":"http:\/\/www.unapeliculadehuevos.com\/","version":51,"lastModified":"1301421166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/096\/4cdf2f8d5e73d60f71000096\/una-pelicula-de-huevos-mid.jpg","genre":"Animation","title":"Una Pel\u00edcula de Huevos","releaseDate":1145577600000,"language":"en","tagline":"Una pelicula de huevos \" es la historia de dos huevitos. Toto y Willy, que escapan de una cocina, en compania de un tocino crudo, para no ser convertidos en huevos motulenos. En el camino combatiran a una pandilla de huevos de reptil y mas .","type":"Movie","_key":"64979"} +{"label":"Carlos Espejel","version":22,"id":"80737","lastModified":"1301901981000","name":"Carlos Espejel","type":"Person","_key":"64980"} +{"label":"Ang\u00e9lica Vale","version":22,"id":"80738","lastModified":"1301901981000","name":"Ang\u00e9lica Vale","type":"Person","_key":"64981"} +{"label":"Rodolfo Riva Palacio Alatriste","version":24,"id":"80739","lastModified":"1301901981000","name":"Rodolfo Riva Palacio Alatriste","type":"Person","_key":"64982"} +{"label":"Gabriel Riva Palacio Alatriste","version":24,"id":"80740","lastModified":"1301901981000","name":"Gabriel Riva Palacio Alatriste","type":"Person","_key":"64983"} +{"label":"Humberto Velez","version":22,"id":"80741","lastModified":"1301901981000","name":"Humberto Velez","type":"Person","_key":"64984"} +{"label":"Joy Ride: Dead Ahead","description":"While driving to Las Vegas for the bachelor party of her sister Melissa and her fiance Bobby, Kayla stops the car in the gas station to meet her date, Nik, a guy she met on the internet. Nik convinces her to take a secondary road under the protest of Bobby but the car breaks down. They find a house in the middle of nowhere and decide to take the car parked in the house's garage to the next city...","id":"16763","runtime":91,"imdbId":"tt1140941","version":220,"lastModified":"1302039335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4a\/4bc94cf9017a3c57fe021d4a\/joy-ride-dead-ahead-mid.jpg","genre":"Horror","title":"Joy Ride: Dead Ahead","releaseDate":1223337600000,"language":"en","type":"Movie","_key":"64985"} +{"label":"Nick Zano","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c56\/4d52d5fa7b9aa13aba011c56\/nick-zano-profile.jpg","version":32,"id":"84076","lastModified":"1302078461000","name":"Nick Zano","type":"Person","_key":"64986"} +{"label":"Toolbox Murders","description":"A historic Hollywood hotel houses a supernatural evil. It's been subdued for decades - but when renovations start, a series of murders take place. It's up to our heroine to solve the mystery.","id":"16764","runtime":0,"imdbId":"tt0367153","version":95,"lastModified":"1301417003000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4f\/4bc94cfa017a3c57fe021d4f\/toolbox-murders-mid.jpg","genre":"Horror","title":"Toolbox Murders","releaseDate":1081555200000,"language":"en","tagline":"Another legacy begins.","type":"Movie","_key":"64987"} +{"label":"Bukowski - Born into This","description":"No overview found.","id":"16765","runtime":138,"imdbId":"tt0342150","version":235,"lastModified":"1301907626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d54\/4bc94cfc017a3c57fe021d54\/bukowski-born-into-this-mid.jpg","genre":"Documentary","title":"Bukowski - Born into This","releaseDate":1042848000000,"language":"en","type":"Movie","_key":"64988"} +{"label":"Nihon chinbotsu","description":"Japan sinks! Proving once again that Japan will never cease to find inventive ways to destroy itself on screen, this summer's blockbuster Sinking of Japan brings apocalypse through tectonics. Based on Sakyo Komatsu's best-selling novel, Sinking of Japan was first put on the big screen in Moritani Shiro's 1973 classic. In 2006, director Higuchi Shinji remakes the disaster movie, taking the story to","id":"16766","runtime":133,"imdbId":"tt0473064","version":91,"lastModified":"1301904007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc94d00017a3c57fe021d61\/16766-mid.jpg","genre":"Disaster","title":"Nihon chinbotsu","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"64989"} +{"label":"Shinji Higuchi","version":24,"id":"80752","lastModified":"1301902341000","name":"Shinji Higuchi","type":"Person","_key":"64990"} +{"label":"Tsuyoshi Kusanagi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/779\/4d90bbc27b9aa1675e003779\/tsuyoshi-kusanagi-profile.jpg","version":24,"id":"80753","lastModified":"1301902341000","name":"Tsuyoshi Kusanagi","type":"Person","_key":"64991"} +{"label":"Etsushi Toyokawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37b\/4d90bc167b9aa16a2400337b\/etsushi-toyokawa-profile.jpg","version":30,"id":"80754","lastModified":"1301902035000","name":"Etsushi Toyokawa","type":"Person","_key":"64992"} +{"label":"Mao Daichi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7be\/4d90bc707b9aa1675b0037be\/mao-daichi-profile.jpg","version":21,"id":"80755","lastModified":"1301902185000","name":"Mao Daichi","type":"Person","_key":"64993"} +{"label":"Spriggan","description":"Akham is a secret, worldwide organization investigating artifacts from a lost civilization. When three of their investigators go to Mt. Ararat, in Turkey, they discover what they believe is the wreck of Noah's Ark. Their joy is short-lived, and so are they-the relic projects a powerful, destructive energy which wipes out not only the team but three Pentagon satellites as well. Quickly, Akham and t","id":"16767","runtime":90,"imdbId":"tt0164917","version":93,"lastModified":"1301904144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6e\/4bc94d04017a3c57fe021d6e\/spriggan-mid.jpg","studio":"Bandai Visual Company (JAPAN)","genre":"Action","title":"Spriggan","releaseDate":883612800000,"language":"en","type":"Movie","_key":"64994"} +{"label":"Hirotsugu Kawasaki","version":26,"id":"80751","lastModified":"1301902528000","name":"Hirotsugu Kawasaki","type":"Person","_key":"64995"} +{"label":"An Evening with Kevin Smith 2: Evening Harder","description":"No overview found.","id":"16768","runtime":239,"imdbId":"tt0910873","version":134,"lastModified":"1301905622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d81\/4bc94d09017a3c57fe021d81\/an-evening-with-kevin-smith-2-evening-harder-mid.jpg","genre":"Comedy","title":"An Evening with Kevin Smith 2: Evening Harder","releaseDate":1164672000000,"language":"en","type":"Movie","_key":"64996"} +{"label":"Coal Miner's Daughter","description":"No overview found.","id":"16769","runtime":125,"imdbId":"tt0080549","version":163,"lastModified":"1301905538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8a\/4bc94d0c017a3c57fe021d8a\/coal-miner-s-daughter-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"Coal Miner's Daughter","releaseDate":321235200000,"language":"en","type":"Movie","_key":"64997"} +{"label":"Phyllis Boyens","version":17,"id":"97787","lastModified":"1301902174000","name":"Phyllis Boyens","type":"Person","_key":"64998"} +{"label":"Bill Anderson Jr.","version":17,"id":"97788","lastModified":"1301902524000","name":"Bill Anderson Jr.","type":"Person","_key":"64999"} +{"label":"Foister Dickerson","version":16,"id":"97789","lastModified":"1301902632000","name":"Foister Dickerson","type":"Person","_key":"65000"} +{"label":"Malla McCown","version":16,"id":"97790","lastModified":"1301902459000","name":"Malla McCown","type":"Person","_key":"65001"} +{"label":"Pamela McCown","version":16,"id":"97791","lastModified":"1301902632000","name":"Pamela McCown","type":"Person","_key":"65002"} +{"label":"Kevin Salvilla","version":16,"id":"97792","lastModified":"1301902238000","name":"Kevin Salvilla","type":"Person","_key":"65003"} +{"label":"Sissy Lucas","version":16,"id":"97793","lastModified":"1301902459000","name":"Sissy Lucas","type":"Person","_key":"65004"} +{"label":"Brian Warf","version":16,"id":"97794","lastModified":"1301902458000","name":"Brian Warf","type":"Person","_key":"65005"} +{"label":"Elizabeth Watson","version":16,"id":"97795","lastModified":"1301902458000","name":"Elizabeth Watson","type":"Person","_key":"65006"} +{"label":"Barcelona","description":"Chicago salesman, Ted Boynton, lives and works in Barcelona in the 1980s. Ted's cousin Fred, a naval officer, unexpectedly comes to stay with him at the beginning of the film and they develop relationships with various, single Barcelona women, and experience the negative reaction of some of Barcelona's residents to Fred's presence. ","id":"16771","runtime":101,"imdbId":"tt0109219","version":103,"lastModified":"1301905851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d93\/4bc94d0e017a3c57fe021d93\/barcelona-mid.jpg","genre":"Comedy","title":"Barcelona","releaseDate":775440000000,"language":"en","type":"Movie","_key":"65007"} +{"label":"Hellboy Animated: Sword of Storms","description":"A professor of folklore opens a forbidden scroll and becomes possessed by the ancient Japanese demons of Thunder and Lightning, who seek to return and dominate our world. The Bureau for Paranormal Research and Defense sends Hellboy and a team of agents to investigate, but when Hellboy picks up a samurai sword, he literally disappears into a weird wonderland of Japanese legends, ghosts and monsters","id":"16774","runtime":73,"imdbId":"tt0810895","version":122,"lastModified":"1301904470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9c\/4bc94d14017a3c57fe021d9c\/hellboy-sword-of-storms-mid.jpg","studio":"IDT Entertainment","genre":"Animation","title":"Hellboy Animated: Sword of Storms","releaseDate":1161993600000,"language":"en","type":"Movie","_key":"65008"} +{"label":"Phil Weinstein","version":21,"id":"90638","lastModified":"1301901675000","name":"Phil Weinstein","type":"Person","_key":"65009"} +{"label":"The Return of the Texas Chainsaw Massacre","description":"Everyone's favorite chainsaw-wielding psychopath, Leatherface, is back for more prom-night gore, and this time he's joined by his bloodthirsty family. Four stranded yet carefree teens are taken in by a backwoods family, clueless of their host family's grisly habits. The terrified youths, including sweet Jenny, try to escape from Leatherface and his crazed clan, including the bionic Vilmer.","id":"16780","runtime":95,"imdbId":"tt0110978","version":82,"lastModified":"1301903706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c74\/4d5023c87b9aa13aba00bc74\/the-return-of-the-texas-chainsaw-massacre-mid.jpg","studio":"Genre Pictures","genre":"Comedy","title":"The Return of the Texas Chainsaw Massacre","releaseDate":757382400000,"language":"en","tagline":"If looks could kill he woudn't need a chainsaw.","type":"Movie","_key":"65010"} +{"label":"Madea's Family Reunion","description":"Based upon Tyler Perry's acclaimed stage production, Madea's Family Reunion continues the adventures of Southern matriarch Madea. She has just been court ordered to be in charge of Nikki, a rebellious runaway, her nieces, Lisa and Vanessa, are suffering relationship trouble, and through it all, she has to organize her family reunion.","id":"16781","runtime":110,"imdbId":"tt0455612","version":286,"lastModified":"1301905264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcf\/4bc94d2c017a3c57fe021dcf\/madea-s-family-reunion-mid.jpg","studio":"Lions Gate Films","genre":"Comedy","title":"Madea's Family Reunion","releaseDate":1140739200000,"language":"en","type":"Movie","_key":"65011"} +{"label":"Lisa Arrindell Anderson","version":19,"id":"80759","lastModified":"1301902459000","name":"Lisa Arrindell Anderson","type":"Person","_key":"65012"} +{"label":"Rochelle Aytes","version":21,"id":"80760","lastModified":"1301902127000","name":"Rochelle Aytes","type":"Person","_key":"65013"} +{"label":"Tangi Miller","version":26,"id":"80761","lastModified":"1301902404000","name":"Tangi Miller","type":"Person","_key":"65014"} +{"label":"Akhil Jackson","version":19,"id":"80767","lastModified":"1301902065000","name":"Akhil Jackson","type":"Person","_key":"65015"} +{"label":"Alonzo Millsap","version":19,"id":"80768","lastModified":"1301902065000","name":"Alonzo Millsap","type":"Person","_key":"65016"} +{"label":"Georgia Allen","version":19,"id":"80769","lastModified":"1301902065000","name":"Georgia Allen","type":"Person","_key":"65017"} +{"label":"Leon Lamar","version":19,"id":"80770","lastModified":"1301902065000","name":"Leon Lamar","type":"Person","_key":"65018"} +{"label":"John Lawhorn","version":19,"id":"80771","lastModified":"1301902065000","name":"John Lawhorn","type":"Person","_key":"65019"} +{"label":"Ryan Gentles","version":19,"id":"80772","lastModified":"1301902065000","name":"Ryan Gentles","type":"Person","_key":"65020"} +{"label":"Mablean Ephriam","version":19,"id":"80773","lastModified":"1301902458000","name":"Mablean Ephriam","type":"Person","_key":"65021"} +{"label":"Richard Reed","version":19,"id":"80774","lastModified":"1301902065000","name":"Richard Reed","type":"Person","_key":"65022"} +{"label":"Dale Neal","version":19,"id":"80775","lastModified":"1301902065000","name":"Dale Neal","type":"Person","_key":"65023"} +{"label":"Michelle Griffin","version":19,"id":"80776","lastModified":"1301902238000","name":"Michelle Griffin","type":"Person","_key":"65024"} +{"label":"Cedric Pendleton","version":19,"id":"80777","lastModified":"1301902458000","name":"Cedric Pendleton","type":"Person","_key":"65025"} +{"label":"Deanna Dawn","version":19,"id":"80778","lastModified":"1301902065000","name":"Deanna Dawn","type":"Person","_key":"65026"} +{"label":"Enoch King","version":19,"id":"80779","lastModified":"1301902065000","name":"Enoch King","type":"Person","_key":"65027"} +{"label":"Ginnie Randall","version":19,"id":"80780","lastModified":"1301902065000","name":"Ginnie Randall","type":"Person","_key":"65028"} +{"label":"C.O.C.O. Brown","version":19,"id":"80781","lastModified":"1301902065000","name":"C.O.C.O. Brown","type":"Person","_key":"65029"} +{"label":"Jennifer Sears","version":19,"id":"80782","lastModified":"1301902238000","name":"Jennifer Sears","type":"Person","_key":"65030"} +{"label":"Tre Rogers","version":19,"id":"80783","lastModified":"1301902065000","name":"Tre Rogers","type":"Person","_key":"65031"} +{"label":"Shannon Eubanks","version":19,"id":"80784","lastModified":"1301902458000","name":"Shannon Eubanks","type":"Person","_key":"65032"} +{"label":"Emmbre Perry","version":19,"id":"80785","lastModified":"1301902458000","name":"Emmbre Perry","type":"Person","_key":"65033"} +{"label":"Jeronn C. Williams","version":19,"id":"80786","lastModified":"1301902458000","name":"Jeronn C. Williams","type":"Person","_key":"65034"} +{"label":"Dale C. Bronner","version":19,"id":"80787","lastModified":"1301902238000","name":"Dale C. Bronner","type":"Person","_key":"65035"} +{"label":"National Lampoon Presents Electric Apricot: Quest for Festeroo","description":"Electric Apricot is a spoof of jam bands centered around the band, Electric Apricot, in the style of \"This Is Spinal Tap\"","id":"16783","runtime":92,"imdbId":"tt0482499","version":79,"lastModified":"1301905539000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddd\/4bc94d34017a3c57fe021ddd\/national-lampoon-presents-electric-apricot-quest-for-festeroo-mid.jpg","studio":"National Lampoon Productions","genre":"Comedy","title":"National Lampoon Presents Electric Apricot: Quest for Festeroo","releaseDate":1194566400000,"language":"en","type":"Movie","_key":"65036"} +{"label":"Arj Barker","version":32,"id":"87272","lastModified":"1301902676000","name":"Arj Barker","type":"Person","_key":"65037"} +{"label":"Lawrence Brooke","version":20,"id":"87273","lastModified":"1301902524000","name":"Lawrence Brooke","type":"Person","_key":"65038"} +{"label":"Les Claypool","version":21,"id":"87274","lastModified":"1301902485000","name":"Les Claypool","type":"Person","_key":"65039"} +{"label":"Oz Fritz","version":19,"id":"87277","lastModified":"1301902986000","name":"Oz Fritz","type":"Person","_key":"65040"} +{"label":"Adam Gates","version":19,"id":"87278","lastModified":"1301902986000","name":"Adam Gates","type":"Person","_key":"65041"} +{"label":"Mike Gordon","version":21,"id":"87279","lastModified":"1301902503000","name":"Mike Gordon","type":"Person","_key":"65042"} +{"label":"Welcome to Mooseport","description":"A US president (Gene Hackman) who has retired after two terms in office returns to his hometown of Mooseport, Maine and decides to run for Mayor against another local candidate (Ray Romano).","id":"16784","runtime":110,"imdbId":"tt0361925","trailer":"http:\/\/www.youtube.com\/watch?v=ydxisYfODz4","version":243,"lastModified":"1301905771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de6\/4bc94d37017a3c57fe021de6\/welcome-to-mooseport-mid.jpg","studio":"TheWeinstien Compnay","genre":"Comedy","title":"Welcome to Mooseport","releaseDate":1077580800000,"language":"en","type":"Movie","_key":"65043"} +{"label":"Zonbi Jietai","description":"When a UFO crashes and releases radiation, the dead begin to rise in a cannibalistic frenzy. A group of soldiers and civilians make their way to a hotel and must fend off the zombie hordes.","id":"16785","runtime":76,"imdbId":"tt0879265","trailer":"http:\/\/www.youtube.com\/watch?v=1095","version":50,"lastModified":"1301906716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/deb\/4bc94d39017a3c57fe021deb\/zonbi-jietai-mid.jpg","studio":"Filmworks Movie King","genre":"Horror","title":"Zonbi Jietai","releaseDate":1145923200000,"language":"en","type":"Movie","_key":"65044"} +{"label":"Naoyuki Tomomatsu","version":20,"id":"80762","lastModified":"1301902503000","name":"Naoyuki Tomomatsu","type":"Person","_key":"65045"} +{"label":"Miy\u00fb Watase","version":17,"id":"80789","lastModified":"1301902143000","name":"Miy\u00fb Watase","type":"Person","_key":"65046"} +{"label":"Jun Yamasaki","version":17,"id":"80790","lastModified":"1301902325000","name":"Jun Yamasaki","type":"Person","_key":"65047"} +{"label":"Mihiro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c8\/4c90e4b77b9aa17caf0000c8\/mihiro-profile.jpg","version":22,"id":"80792","lastModified":"1301902222000","name":"Mihiro","type":"Person","_key":"65048"} +{"label":"Kenji Arai","version":19,"id":"80794","lastModified":"1301901947000","name":"Kenji Arai","type":"Person","_key":"65049"} +{"label":"Action Man - Past Performance","description":"Action Man returns to the Everglades to face his past after finding out that he was once a skullman working for Dr X. Action Man's lost memory holds the code to rid them of the missiles Dr X plans to re-activate. Includes 'Soul Of Evil' and 'We Come In Peace'.","id":"16788","runtime":0,"version":949,"lastModified":"1301419950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df9\/4bc94d3d017a3c57fe021df9\/action-man-past-performance-mid.jpg","genre":"Action","title":"Action Man - Past Performance","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65050"} +{"label":"Rolf Leenders","version":16,"id":"80858","lastModified":"1301902537000","name":"Rolf Leenders","type":"Person","_key":"65051"} +{"label":"Action Man - The Outside Edge","description":"After being disbanded by the new Secretary General, Action Man and his team try to clear Norris from being branded a traitor when he is arrested for treason. Includes 'Skynap' and 'Crack Of Doom'.","id":"16789","runtime":0,"version":52,"lastModified":"1302020983000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfe\/4bc94d3f017a3c57fe021dfe\/action-man-the-outside-edge-mid.jpg","genre":"Action","title":"Action Man - The Outside Edge","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65052"} +{"label":"Rolf Leenders","version":16,"id":"80859","lastModified":"1301902178000","name":"Rolf Leenders","type":"Person","_key":"65053"} +{"label":"Bingo","description":"Bingo, the runaway circus dog, is off the leash and saving Chuckie's life! Bingo and the boy become the best of friends in this canine comedy featuring doggy disguises and skateboarding, pinball and prison. Chuckie and his parents (Cindy Williams and David Rasche) are moving house, a thousand miles away, but Bingo won't be allowed to join them. Chuckie and Bingo's determination to be reunited is t","id":"16790","runtime":0,"imdbId":"tt0101455","version":127,"lastModified":"1301908555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0c\/4bc94d43017a3c57fe021e0c\/bingo-mid.jpg","genre":"Action","title":"Bingo","releaseDate":684288000000,"language":"en","type":"Movie","_key":"65054"} +{"label":"Five Children and It","description":"A Psammead is 'It', an ancient, irritable, ugly sand fairy, which five children find one day in a gravel pit. As a reward for finding him, It grants the children one wish a day, the results of which will last until sunset.","id":"16791","runtime":88,"imdbId":"tt0366450","version":127,"lastModified":"1301903037000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4d7139657b9aa12253000002\/five-children-and-it-mid.jpg","genre":"Adventure","title":"Five Children and It","releaseDate":1097798400000,"language":"en","type":"Movie","_key":"65055"} +{"label":"Jessica Claridge","version":23,"id":"80861","lastModified":"1301902529000","name":"Jessica Claridge","type":"Person","_key":"65056"} +{"label":"Roman Polanski: Wanted and Desired","description":"No overview found.","id":"16800","runtime":99,"imdbId":"tt1157705","trailer":"http:\/\/www.youtube.com\/watch?v=1968","version":235,"lastModified":"1301906842000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e38\/4bc94d50017a3c57fe021e38\/roman-polanski-wanted-and-desired-mid.jpg","studio":"Antidote Films","genre":"Documentary","title":"Roman Polanski: Wanted and Desired","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"65057"} +{"label":"Forbidden","description":"At his bachelor party, Jason has a one-night fling with Nikki, a radiant beauty with whom he forms an immediate bond. They agree to keep their secret locked away forever. Two years later, Jason, his wife, Andy and his fiancee plan a reunion weekend. Jason is shocked to discover that Andy's fiancee is Nikki. Now, secret and passionate affairs are played out.","id":"16802","runtime":84,"imdbId":"tt0347014","version":506,"lastModified":"1302096665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/263\/4d9c85e05e73d64b9c000263\/forbidden-mid.jpg","studio":"Fat Face Productions","genre":"Drama","title":"Forbidden","releaseDate":1024963200000,"language":"en","tagline":"What you can't have.... You desire most","type":"Movie","_key":"65058"} +{"label":"Dillon Morgan Silver","version":5,"id":"232151","lastModified":"1302096519000","name":"Dillon Morgan Silver","type":"Person","_key":"65059"} +{"label":"Jeniffer Kush","version":5,"id":"232152","lastModified":"1302096519000","name":"Jeniffer Kush","type":"Person","_key":"65060"} +{"label":"Kiss of Life","id":"16803","runtime":99,"imdbId":"tt1092002","homepage":"http:\/\/villageproductions.gr\/tofilitiszois\/movie.php","version":139,"lastModified":"1301908565000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e49\/4bc94d55017a3c57fe021e49\/16803-mid.jpg","genre":"Comedy","title":"Kiss of Life","releaseDate":1194480000000,"language":"en","type":"Movie","_key":"65061"} +{"label":"Katerina Papoutsaki","version":18,"id":"80876","lastModified":"1301902333000","name":"Katerina Papoutsaki","type":"Person","_key":"65062"} +{"label":"Laertis Malkotsis","version":18,"id":"80877","lastModified":"1301901953000","name":"Laertis Malkotsis","type":"Person","_key":"65063"} +{"label":"Zeta Douka","version":18,"id":"80879","lastModified":"1301902507000","name":"Zeta Douka","type":"Person","_key":"65064"} +{"label":"Nikos Zapatinas","version":18,"id":"80878","lastModified":"1301902149000","name":"Nikos Zapatinas","type":"Person","_key":"65065"} +{"label":"Departures","description":"Daigo, a cellist, is laid off from his orchestra and moves with his wife back to his small hometown where the living is cheaper. Thinking he\u2019s applying for a job at a travel agency he finds he\u2019s being interviewed for work with departures of a more permanent nature \u2013 as an undertaker\u2019s assistant.","id":"16804","runtime":130,"imdbId":"tt1069238","trailer":"http:\/\/www.youtube.com\/watch?v=MtdENmR6jKw","homepage":"http:\/\/www.departures-themovie.com\/","version":187,"lastModified":"1301902529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e65\/4bc94d60017a3c57fe021e65\/okuribito-mid.jpg","studio":"Amuse Soft Entertainment","genre":"Drama","title":"Departures","releaseDate":1221264000000,"language":"en","type":"Movie","_key":"65066"} +{"label":"Masahiro Motoki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/383\/4d197d525e73d6083e00a383\/masahiro-motoki-profile.jpg","biography":"<p><b>Masahiro Motoki<\/b> (\u672c\u6728\u3000\u96c5\u5f18 <i>Motoki Masahiro<\/i>, born December 21, 1965 in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Okegawa,_Saitama\" title=\"Okegawa, Saitama\">Okegawa<\/a>, <a href=\"http:\/\/en.wikipedia.org\/wiki\/Japan\" title=\"Japan\">Japan<\/a>) is a Japanese <a href=\"http:\/\/en.wikipedia.org\/wiki\/Actor\" title=\"Actor\">actor<\/a>. He portrayed protagonist Daigo Kobayashi in <i><a href=\"http:\/\/en.wikipedia.org\/wiki\/Departures_%28film%29\" title=\"Departures (film)\">Departures<\/a><\/i>, which won the <","version":33,"id":"80863","lastModified":"1301901467000","name":"Masahiro Motoki","type":"Person","_key":"65067"} +{"label":"Kimiko Yo","version":26,"id":"80864","lastModified":"1301902482000","name":"Kimiko Yo","type":"Person","_key":"65068"} +{"label":"Takashi Sasano","version":27,"id":"80865","lastModified":"1301902458000","name":"Takashi Sasano","type":"Person","_key":"65069"} +{"label":"Johnny Dangerously","description":"Set in the 1930's, an honest, goodhearted man is forced to turn to a life of crime to finance his neurotic mother's skyrocketing medical bills.","id":"16806","runtime":90,"imdbId":"tt0087507","version":134,"lastModified":"1301903123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37e\/4c19823e5e73d64a2200037e\/johnny-dangerously-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Johnny Dangerously","releaseDate":472435200000,"language":"en","type":"Movie","_key":"65070"} +{"label":"Joe Piscopo","version":26,"id":"80868","lastModified":"1301902153000","name":"Joe Piscopo","type":"Person","_key":"65071"} +{"label":"Pokemon Ranger and the Temple of the Sea","description":"No overview found.","id":"16808","runtime":105,"imdbId":"tt1016011","homepage":"http:\/\/www.pokemon.com\/us\/movies\/movie-pokemon-ranger-and-the-temple-of-the-sea-2007\/","version":159,"lastModified":"1301906556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e72\/4bc94d64017a3c57fe021e72\/pokemon-ranger-and-the-temple-of-the-sea-mid.jpg","genre":"Animation","title":"Pokemon Ranger and the Temple of the Sea","releaseDate":1174608000000,"language":"en","type":"Movie","_key":"65072"} +{"label":"Love & Sex","description":"No overview found.","id":"16809","runtime":0,"version":284,"lastModified":"1302020845000","genre":"Comedy","title":"Love & Sex","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65073"} +{"label":"Crazy People","description":"A bitter ad executive who has reached his breaking point, finds himself in a mental institution where his career actually begins to thrive with the help of the hospital's patients.","id":"16814","runtime":90,"imdbId":"tt0099316","version":98,"lastModified":"1301905858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e80\/4bc94d68017a3c57fe021e80\/crazy-people-mid.jpg","genre":"Comedy","title":"Crazy People","releaseDate":631152000000,"language":"en","type":"Movie","_key":"65074"} +{"label":"F\/X2","description":"Sequel to the special effcts movie FX. Rollie is asked to help find a killer, all is well until both the killer and the cop who asked him to help are both killed.........","id":"16820","runtime":108,"imdbId":"tt0101846","version":77,"lastModified":"1301904434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e89\/4bc94d6b017a3c57fe021e89\/f-x2-mid.jpg","studio":"Dodi Fayed - Jack Wiener","genre":"Action","title":"F\/X2","releaseDate":674006400000,"language":"en","type":"Movie","_key":"65075"} +{"label":"Tom Mason","version":24,"id":"80874","lastModified":"1301901818000","name":"Tom Mason","type":"Person","_key":"65076"} +{"label":"A Casa da M\u00e3e Joana","description":"Quatro amigos que s\u00f3 pensam em curtir a vida, com grandes farras, mulheres e bebidas, s\u00e3o surpreendidos com uma a\u00e7\u00e3o de despejo. Precisando de dinheiro, a turma \u00e9 obrigada a pensar naquilo que mais abominam: trabalhar! A confus\u00e3o est\u00e1 formada quando cada um busca um meio f\u00e1cil de conseguir dinheiro, com o m\u00ednimo de esfor\u00e7o. Os dias se passam as confus\u00f5es hil\u00e1rias s\u00f3 aumentam!","id":"16821","runtime":93,"imdbId":"tt0831904","version":36,"lastModified":"1301905703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c90\/4d2a5ede5e73d626be003c90\/a-casa-da-m-e-joana-mid.jpg","genre":"Comedy","title":"A Casa da M\u00e3e Joana","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65077"} +{"label":"Caramuru","description":"No overview found.","id":"16822","runtime":0,"version":35,"lastModified":"1301184529000","title":"Caramuru","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65078"} +{"label":"Blank","description":"No overview found.","id":"16824","runtime":32,"imdbId":"tt0369284","version":568,"lastModified":"1302091820000","title":"Blank","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65079"} +{"label":"La coda dello scorpione","description":"The Case of the Scorpion's Tail begins with the mysterious death of a millionaire and spirals into the murder of his suddenly rich wife, which draws the attention of a dogged investigator, who follows a trail of blood to the bitter end.","id":"16825","runtime":90,"imdbId":"tt0066924","version":84,"lastModified":"1302091671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9e\/4bc94d71017a3c57fe021e9e\/la-coda-dello-scorpione-mid.jpg","genre":"Horror","title":"La coda dello scorpione","releaseDate":51148800000,"language":"en","type":"Movie","_key":"65080"} +{"label":"George Hilton","version":31,"id":"80875","lastModified":"1301901415000","name":"George Hilton","type":"Person","_key":"65081"} +{"label":"Anita Strindberg","version":19,"id":"80933","lastModified":"1301901434000","name":"Anita Strindberg","type":"Person","_key":"65082"} +{"label":"Lisa Leonardi","version":17,"id":"98771","lastModified":"1301902472000","name":"Lisa Leonardi","type":"Person","_key":"65083"} +{"label":"Tom\u00e1s Pic\u00f3","version":19,"id":"98773","lastModified":"1302089864000","name":"Tom\u00e1s Pic\u00f3","type":"Person","_key":"65084"} +{"label":"Fulvio Mingozzi","version":17,"id":"98774","lastModified":"1301902479000","name":"Fulvio Mingozzi","type":"Person","_key":"65085"} +{"label":"Dirty Love","description":"No overview found.","id":"16833","runtime":86,"imdbId":"tt1530883","version":1003,"lastModified":"1302020735000","genre":"Comedy","title":"Dirty Love","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65086"} +{"label":"G:MT Greenwich Mean Time","description":"Six London school-leavers attempt to make it in the world, balancing the challenge of trying to make a name for themselves in the music industry against the pressures and tragedies of everyday life.","id":"16839","runtime":117,"imdbId":"tt0179835","version":352,"lastModified":"1301906465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea8\/4bc94d75017a3c57fe021ea8\/g-mt-greenwich-mean-time-mid.jpg","genre":"Crime","title":"G:MT Greenwich Mean Time","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65087"} +{"label":"John Strickland","version":21,"id":"47634","lastModified":"1301902143000","name":"John Strickland","type":"Person","_key":"65088"} +{"label":"V\u00e1clav","description":"Vaclav, the village loser, in his 40's bordering on autism, lives with his widowed mother on the outskirts of the village. He is seen by villagers as the local fool, nothing but a constant pain for them, but there is a skeleton in the village closet concerning his father's death.","id":"16841","runtime":100,"imdbId":"tt0955352","version":43,"lastModified":"1301908606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eba\/4bc94d76017a3c57fe021eba\/vaclav-mid.jpg","title":"V\u00e1clav","releaseDate":1196899200000,"language":"en","type":"Movie","_key":"65089"} +{"label":"Hell's Gate","description":"Eighteen years after the murder of her parents, Sara Tobias searches for the meaning of the numbers '11:11' that was scratched in blood beside her mother's body. Following three sudden murders, supernatural events are unleashed as she gets closer to the truth.","id":"16843","runtime":0,"imdbId":"tt0396401","version":124,"lastModified":"1301907993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec8\/4bc94d79017a3c57fe021ec8\/hell-s-gate-mid.jpg","title":"Hell's Gate","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"65090"} +{"label":"Gingerdead Man 2: Passion of the Crust","description":"No overview found.","id":"16846","runtime":82,"imdbId":"tt1161646","version":102,"lastModified":"1302091097000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed1\/4bc94d79017a3c57fe021ed1\/gingerdead-man-2-passion-of-the-crust-mid.jpg","genre":"Comedy","title":"Gingerdead Man 2: Passion of the Crust","releaseDate":1215129600000,"language":"en","type":"Movie","_key":"65091"} +{"label":"Pieter Christian Colson","version":19,"id":"80880","lastModified":"1301902457000","name":"Pieter Christian Colson","type":"Person","_key":"65092"} +{"label":"Silvia St. Croix","version":16,"id":"97903","lastModified":"1301902065000","name":"Silvia St. Croix","type":"Person","_key":"65093"} +{"label":"K-von","version":16,"id":"97904","lastModified":"1301902238000","name":"K-von","type":"Person","_key":"65094"} +{"label":"Frank Nicotero","version":16,"id":"97905","lastModified":"1301902632000","name":"Frank Nicotero","type":"Person","_key":"65095"} +{"label":"John Vulich","version":22,"id":"91319","lastModified":"1301901936000","name":"John Vulich","type":"Person","_key":"65096"} +{"label":"Kenneth J. Hall","version":25,"id":"97860","lastModified":"1301902925000","name":"Kenneth J. Hall","type":"Person","_key":"65097"} +{"label":"David Sivits","version":19,"id":"80882","lastModified":"1301902065000","name":"David Sivits","type":"Person","_key":"65098"} +{"label":"Kelsey Sanders","version":19,"id":"80883","lastModified":"1301902238000","name":"Kelsey Sanders","type":"Person","_key":"65099"} +{"label":"Joseph Porter","version":21,"id":"80881","lastModified":"1301902402000","name":"Joseph Porter","type":"Person","_key":"65100"} +{"label":"Nine Inch Nails: Closure","description":"No overview found.","id":"16847","runtime":0,"imdbId":"tt0150153","version":71,"lastModified":"1301902901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eda\/4bc94d7c017a3c57fe021eda\/nine-inch-nails-closure-mid.jpg","genre":"Music","title":"Nine Inch Nails: Closure","releaseDate":880416000000,"language":"en","type":"Movie","_key":"65101"} +{"label":"Robin Finck","version":22,"id":"80885","lastModified":"1301904134000","name":"Robin Finck","type":"Person","_key":"65102"} +{"label":"Charlie Clouser","version":48,"id":"2148","lastModified":"1299551834000","name":"Charlie Clouser","type":"Person","_key":"65103"} +{"label":"Danny Lohner","version":20,"id":"80886","lastModified":"1301904134000","name":"Danny Lohner","type":"Person","_key":"65104"} +{"label":"Richard Patrick","version":20,"id":"80888","lastModified":"1301901326000","name":"Richard Patrick","type":"Person","_key":"65105"} +{"label":"Chris Vrenna","version":20,"id":"80889","lastModified":"1301901273000","name":"Chris Vrenna","type":"Person","_key":"65106"} +{"label":"Ginger Fish","version":22,"id":"80890","lastModified":"1301901278000","name":"Ginger Fish","type":"Person","_key":"65107"} +{"label":"Bob Flanagan","version":20,"id":"80891","lastModified":"1301901296000","name":"Bob Flanagan","type":"Person","_key":"65108"} +{"label":"Madonna Wayne Gacy","version":20,"id":"80892","lastModified":"1301901200000","name":"Madonna Wayne Gacy","type":"Person","_key":"65109"} +{"label":"Jessicka","version":20,"id":"80893","lastModified":"1301901268000","name":"Jessicka","type":"Person","_key":"65110"} +{"label":"Zim Zum","version":20,"id":"80894","lastModified":"1301901238000","name":"Zim Zum","type":"Person","_key":"65111"} +{"label":"B\u00e9b\u00e9 the Circus Queen","version":19,"id":"80895","lastModified":"1301901313000","name":"B\u00e9b\u00e9 the Circus Queen","type":"Person","_key":"65112"} +{"label":"Jonathan Rach","version":19,"id":"80887","lastModified":"1301901157000","name":"Jonathan Rach","type":"Person","_key":"65113"} +{"label":"Love & Dance","description":"No overview found.","id":"16849","runtime":90,"imdbId":"tt0814197","version":86,"lastModified":"1302090914000","genre":"Drama","title":"Love & Dance","releaseDate":1147219200000,"language":"en","type":"Movie","_key":"65114"} +{"label":"Avi Kushnir","version":21,"id":"80896","lastModified":"1301902325000","name":"Avi Kushnir","type":"Person","_key":"65115"} +{"label":"Jenya Dodina","version":20,"id":"95541","lastModified":"1301902499000","name":"Jenya Dodina","type":"Person","_key":"65116"} +{"label":"Eitan Anner","version":21,"id":"80898","lastModified":"1301902503000","name":"Eitan Anner","type":"Person","_key":"65117"} +{"label":"The Heroes of Telemark","description":"Set in German-occupied Norway, this is an embellished account of the remarkable efforts of the Norwegian resistance to sabotage the German development of the atomic bomb. Resistance fighter Knut Straud enlists the reluctant physicist Rolf Pedersen in an effort to destroy the German heavy water production plant near the village of Rjukan in rural Telemark. In the process, Pedersen discovers that hi","id":"16850","runtime":131,"imdbId":"tt0059263","version":81,"lastModified":"1302090827000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eec\/4bc94d7e017a3c57fe021eec\/the-heroes-of-telemark-mid.jpg","studio":"Benton Film Productions","genre":"Action","title":"The Heroes of Telemark","releaseDate":-123638400000,"language":"en","type":"Movie","_key":"65118"} +{"label":"Yo-Yo Girl Cop","description":"Recruited by a clandestine police organization, \"K\" must stop a plot by student radicals to create anarchy in Japan. Armed with a hi-tech steel yo-yo, and a new name (Asamiya Saki), she must infiltrate an elite high school to find the terrorists but finds an even more sinister plan is about to unfold.","id":"16851","runtime":98,"imdbId":"tt0781084","trailer":"http:\/\/www.youtube.com\/watch?v=1097","homepage":"http:\/\/www.sukeban.jp","version":96,"lastModified":"1301903808000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef1\/4bc94d7e017a3c57fe021ef1\/sukeban-deka-kodo-nemu-asamiya-saki-mid.jpg","studio":"Fukasaku-gumi","genre":"Action","title":"Yo-Yo Girl Cop","releaseDate":1159574400000,"language":"en","type":"Movie","_key":"65119"} +{"label":"Megumi Sawada","version":20,"id":"80910","lastModified":"1301902303000","name":"Megumi Sawada","type":"Person","_key":"65120"} +{"label":"Aya Matsuura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/344\/4c2220607b9aa130e5000344\/aya-matsuura-profile.jpg","version":21,"id":"122991","lastModified":"1301903012000","name":"Aya Matsuura","type":"Person","_key":"65121"} +{"label":"Rika Ishikawa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/106\/4c2222ab7b9aa13753000106\/rika-ishikawa-profile.jpg","version":20,"id":"123000","lastModified":"1301902573000","name":"Rika Ishikawa","type":"Person","_key":"65122"} +{"label":"Erika Miyoshi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/351\/4c22234d7b9aa130e5000351\/erika-miyoshi-profile.jpg","version":20,"id":"123001","lastModified":"1301902765000","name":"Erika Miyoshi","type":"Person","_key":"65123"} +{"label":"Yui Okada","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10d\/4c2224057b9aa1375300010d\/yui-okada-profile.jpg","version":20,"id":"123002","lastModified":"1301902303000","name":"Yui Okada","type":"Person","_key":"65124"} +{"label":"Yuki Sait\u00f4","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4d2831267b9aa134d800209a\/yuki-sait-profile.jpg","version":16,"id":"147897","lastModified":"1301902036000","name":"Yuki Sait\u00f4","type":"Person","_key":"65125"} +{"label":"Nicole Dionne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/081\/4d2832007b9aa134cb002081\/nicole-dionne-profile.jpg","version":18,"id":"147898","lastModified":"1301902036000","name":"Nicole Dionne","type":"Person","_key":"65126"} +{"label":"Hrafninn fl\u00fdgur","description":"Vikings pillage Ireland, seeking silver and slaves, slaying men and women in the process. A young boy is spared when a Viking takes pity on him instead of killing him. Twenty years later the boy returns to Iceland take his revenge.","id":"16852","runtime":109,"imdbId":"tt0087432","version":48,"lastModified":"1301905345000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef6\/4bc94d7f017a3c57fe021ef6\/hrafninn-flygur-mid.jpg","studio":"Svenska Filminstitutet","genre":"Action","title":"Hrafninn fl\u00fdgur","releaseDate":444700800000,"language":"en","type":"Movie","_key":"65127"} +{"label":"Edda Bj\u00f6rgvinsd\u00f3ttir","version":21,"id":"80911","lastModified":"1301901812000","name":"Edda Bj\u00f6rgvinsd\u00f3ttir","type":"Person","_key":"65128"} +{"label":"Flosi \u00d3lafsson","version":20,"id":"80914","lastModified":"1301902348000","name":"Flosi \u00d3lafsson","type":"Person","_key":"65129"} +{"label":"Jakob \u00de\u00f3r Einarsson","version":20,"id":"80915","lastModified":"1301902163000","name":"Jakob \u00de\u00f3r Einarsson","type":"Person","_key":"65130"} +{"label":"Egill \u00d3lafsson","version":22,"id":"80921","lastModified":"1301902510000","name":"Egill \u00d3lafsson","type":"Person","_key":"65131"} +{"label":"Gotti Sigurdarson","version":17,"id":"96853","lastModified":"1301902705000","name":"Gotti Sigurdarson","type":"Person","_key":"65132"} +{"label":"Hrafn Gunnlaugsson","version":22,"id":"80919","lastModified":"1301902163000","name":"Hrafn Gunnlaugsson","type":"Person","_key":"65133"} +{"label":"\u00cd skugga hrafnsins","description":"Trausti returns to Iceland just in time to be entangled in a family feud over a stranded whale-cadaver. His mother (the family head) is mortally wounded and Grim kills Erikur; the other clan leader. Isold, daughter of Erikur now takes his place. Isold and Trausti are attracted to each other, but Isold was promised to Hjoerleifur - the son of the Bishop (of Iceland) and his powerful wife. However, ","id":"16853","runtime":124,"imdbId":"tt0095346","version":39,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f00\/4bc94d80017a3c57fe021f00\/i-skugga-hrafnsins-mid.jpg","genre":"Drama","title":"\u00cd skugga hrafnsins","releaseDate":593568000000,"language":"en","type":"Movie","_key":"65134"} +{"label":"Tinna Gunnlaugsd\u00f3ttir","version":20,"id":"80920","lastModified":"1301902177000","name":"Tinna Gunnlaugsd\u00f3ttir","type":"Person","_key":"65135"} +{"label":"Sune Mangs","version":20,"id":"80922","lastModified":"1301902197000","name":"Sune Mangs","type":"Person","_key":"65136"} +{"label":"Snapphanar","description":"No overview found.","id":"16854","runtime":174,"imdbId":"tt0820010","version":43,"lastModified":"1301906716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f05\/4bc94d83017a3c57fe021f05\/snapphanar-mid.jpg","studio":"Sveriges Television (SVT)","genre":"Action","title":"Snapphanar","releaseDate":1164153600000,"language":"en","type":"Movie","_key":"65137"} +{"label":"Bj\u00f6rn Stein","version":27,"id":"80924","lastModified":"1301901857000","name":"Bj\u00f6rn Stein","type":"Person","_key":"65138"} +{"label":"M\u00e5ns M\u00e5rlind","version":29,"id":"80923","lastModified":"1301902055000","name":"M\u00e5ns M\u00e5rlind","type":"Person","_key":"65139"} +{"label":"Anders Ekborg","version":21,"id":"80926","lastModified":"1301902143000","name":"Anders Ekborg","type":"Person","_key":"65140"} +{"label":"Urospredere","description":"Urospredere er en norsk dokumentarfilm om fildeling og piratkopiering. Meningen med filmen er \u00e5 skape en \u00e5pen debatt om ulovlig fildeling i Norge. I filmen \u00f8nsker Urospredere \u00e5 slippe til partenes ulike meninger, og derme skape forst\u00e5else. Dokumentarfilmen vil blant annet fokusere p\u00e5 hvordan fildeling kan gj\u00f8res lovlig, hvilke lovendringer som m\u00e5 til, og hvordan ville det fungere. En annen interes","id":"16855","runtime":0,"homepage":"http:\/\/www.urospredere.no\/","version":20,"lastModified":"1301908435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0e\/4bc94d84017a3c57fe021f0e\/urospredere-mid.jpg","genre":"Documentary","title":"Urospredere","releaseDate":1240617600000,"language":"en","type":"Movie","_key":"65141"} +{"label":"Qlimax","description":"Qlimax is an annual hardstyle event, held at the Gelredome, in Arnhem, Netherlands. It is one of the leading events within the hardstyle community, and one of the major attractions held by Q-Dance. The Dutch edition of Qlimax is held in the third or fourth weekend of November every year.","id":"16856","runtime":112,"trailer":"http:\/\/www.youtube.com\/watch?v=1098","homepage":"http:\/\/events.q-dance.nl\/2008-11_22-november_qlimax\/video\/","version":29,"lastModified":"1301904270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f17\/4bc94d84017a3c57fe021f17\/qlimax-mid.png","title":"Qlimax","releaseDate":1227312000000,"language":"en","type":"Movie","_key":"65142"} +{"label":"The Dangerous Lives of Altar Boys","description":"A group of Catholic school friends, after being caught drawing an obscene comic book, plan a heist that will outdo their previous prank and make them local legends.","id":"16857","runtime":104,"imdbId":"tt0238924","version":155,"lastModified":"1301904770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f25\/4bc94d87017a3c57fe021f25\/the-dangerous-lives-of-altar-boys-mid.jpg","genre":"Comedy","title":"The Dangerous Lives of Altar Boys","releaseDate":1021593600000,"language":"en","type":"Movie","_key":"65143"} +{"label":"All That Jazz","description":"Bob Fosse's semi-autobiographical film celebrates show business stripped of glitz or giddy illusions. Joe Gideon (Roy Scheider) is at the top of the heap, one of the most successful directors and choreographers in musical theatre. But he can feel his world slowly collapsing around him--his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.","id":"16858","runtime":123,"imdbId":"tt0078754","version":152,"lastModified":"1301903959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f2e\/4bc94d88017a3c57fe021f2e\/all-that-jazz-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"All That Jazz","releaseDate":314496000000,"language":"en","type":"Movie","_key":"65144"} +{"label":"Leland Palmer","version":20,"id":"80927","lastModified":"1301902065000","name":"Leland Palmer","type":"Person","_key":"65145"} +{"label":"Ann Reinking","version":21,"id":"80928","lastModified":"1301902135000","name":"Ann Reinking","type":"Person","_key":"65146"} +{"label":"Kiki's Delivery Service","description":"A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.","id":"16859","runtime":103,"imdbId":"tt0097814","version":121,"lastModified":"1301992561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f37\/4bc94d89017a3c57fe021f37\/16859-mid.jpg","studio":"Studio Ghibli","genre":"Animation","title":"Kiki's Delivery Service","releaseDate":617673600000,"language":"en","type":"Movie","_key":"65147"} +{"label":"RahXephon: Pluralitas Concentio","description":"Ayato and Haruka are middle-school sweethearts whose lives take a dire turn when the mysterious Mu invade Tokyo in the year 2012. Protecting humanity from the Mu may be Ayato's destiny, but what he really wants is to regain the relationship he once had with Haruka... a love that will have to transcend space, time, and reality itself.","id":"16860","runtime":120,"imdbId":"tt1047518","homepage":"http:\/\/www.mediafactory.co.jp\/anime\/rahxephon\/movie\/","version":62,"lastModified":"1300980360000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f3c\/4bc94d89017a3c57fe021f3c\/rahxephon-pluralitas-concentio-mid.jpg","studio":"Bones Studio","genre":"Animation","title":"RahXephon: Pluralitas Concentio","releaseDate":1050710400000,"language":"en","type":"Movie","_key":"65148"} +{"label":"Tomoki Ky\u00f4da","version":18,"id":"80931","lastModified":"1301902330000","name":"Tomoki Ky\u00f4da","type":"Person","_key":"65149"} +{"label":"Yutaka Izubuchi","version":21,"id":"80930","lastModified":"1301902330000","name":"Yutaka Izubuchi","type":"Person","_key":"65150"} +{"label":"Kicking the Dog","description":"Twelve friends spend one last great summer together, partying and reminiscing, ultimately realizing they will soon go their separate ways in life","id":"16861","runtime":91,"imdbId":"tt1326945","trailer":"http:\/\/www.youtube.com\/watch?v=1099","homepage":"http:\/\/www.kickingthedog.com\/","version":100,"lastModified":"1301903656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f49\/4bc94d8a017a3c57fe021f49\/kicking-the-dog-mid.jpg","studio":"Jackbird Productions","genre":"Comedy","title":"Kicking the Dog","releaseDate":1240272000000,"language":"en","type":"Movie","_key":"65151"} +{"label":"Randy Scooter Lammey","version":17,"id":"84499","lastModified":"1301902238000","name":"Randy Scooter Lammey","type":"Person","_key":"65152"} +{"label":"Carl T. Evans","version":20,"id":"84500","lastModified":"1301902323000","name":"Carl T. Evans","type":"Person","_key":"65153"} +{"label":"Jarrod Pistilli","version":19,"id":"84501","lastModified":"1301902065000","name":"Jarrod Pistilli","type":"Person","_key":"65154"} +{"label":"Elizabeth Schmidt","version":19,"id":"84502","lastModified":"1301902065000","name":"Elizabeth Schmidt","type":"Person","_key":"65155"} +{"label":"Crash Test Dummies","description":"No overview found.","id":"16863","runtime":0,"imdbId":"tt0460756","version":109,"lastModified":"1302089463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/569\/4d581c1a7b9aa16bca002569\/crash-test-dummies-mid.jpg","title":"Crash Test Dummies","releaseDate":1110672000000,"language":"en","type":"Movie","_key":"65156"} +{"label":"J\u00f6rg Kalt","version":22,"id":"28619","lastModified":"1301902189000","name":"J\u00f6rg Kalt","type":"Person","_key":"65157"} +{"label":"Meet the Raisins!","description":"No overview found.","id":"16864","runtime":22,"imdbId":"tt0261062","version":30,"lastModified":"1301908529000","studio":"Will Vinton Studios","genre":"Animation","title":"Meet the Raisins!","releaseDate":594604800000,"language":"en","type":"Movie","_key":"65158"} +{"label":"Will Vinton","version":28,"id":"60220","lastModified":"1302066195000","name":"Will Vinton","type":"Person","_key":"65159"} +{"label":"Raisins Sold Out: The California Raisins II","description":"No overview found.","id":"16865","runtime":0,"imdbId":"tt0261220","version":43,"lastModified":"1301907382000","studio":"Will Vinton Studios","genre":"Animation","title":"Raisins Sold Out: The California Raisins II","releaseDate":652147200000,"language":"en","type":"Movie","_key":"65160"} +{"label":"Planet 51","description":"When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.","id":"16866","runtime":91,"imdbId":"tt0762125","trailer":"http:\/\/www.youtube.com\/watch?v=_4LSg8s5XF4","homepage":"http:\/\/www.sonypictures.com\/movies\/planet51\/","version":275,"lastModified":"1302089090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ac\/4c2560547b9aa144700001ac\/planet-51-mid.jpg","studio":"Ilion Animation Studios","genre":"Adventure","title":"Planet 51","releaseDate":1258588800000,"language":"en","tagline":"Something strange is coming to their planet...Us!","type":"Movie","_key":"65161"} +{"label":"Jorge Blanco","version":23,"id":"117052","lastModified":"1301901389000","name":"Jorge Blanco","type":"Person","_key":"65162"} +{"label":"Gardens of the Night","description":"An 8-year-old girl is taken from her home and convinced that her family does not want her anymore. After enduring 9 years of horror, she and her fellow victim are dumped by their captures. Now, 17 years old and no one to turn to, except each other they do their best to survive life on the streets, until one day she finally accepts the help of a shelter counselor to find her way home. ","id":"16867","runtime":110,"imdbId":"tt0833960","version":158,"lastModified":"1301904307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf0\/4d4c8d2c5e73d617b3001bf0\/gardens-of-the-night-mid.jpg","studio":"Station3","genre":"Crime","title":"Gardens of the Night","releaseDate":1227225600000,"language":"en","type":"Movie","_key":"65163"} +{"label":"Jermaine Scooter Smith","version":16,"id":"94099","lastModified":"1301902632000","name":"Jermaine Scooter Smith","type":"Person","_key":"65164"} +{"label":"Cornelia Guest","version":16,"id":"94100","lastModified":"1301902632000","name":"Cornelia Guest","type":"Person","_key":"65165"} +{"label":"Natalie May","version":16,"id":"94101","lastModified":"1301902458000","name":"Natalie May","type":"Person","_key":"65166"} +{"label":"Ben Lin","version":16,"id":"94102","lastModified":"1301902632000","name":"Ben Lin","type":"Person","_key":"65167"} +{"label":"Alice Lo","version":21,"id":"61116","lastModified":"1301901475000","name":"Alice Lo","type":"Person","_key":"65168"} +{"label":"Landall Goolsby","version":16,"id":"94104","lastModified":"1301902238000","name":"Landall Goolsby","type":"Person","_key":"65169"} +{"label":"Inglourious Basterds","description":"In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.","id":"16869","runtime":153,"imdbId":"tt0361748","trailer":"http:\/\/www.youtube.com\/watch?v=5sQhTVz5IjQ","homepage":"http:\/\/www.inglouriousbasterds-movie.com\/","version":526,"lastModified":"1302088708000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/595\/4c8d542a5e73d60691000595\/inglourious-basterds-mid.jpg","studio":"Universal","genre":"Action","title":"Inglourious Basterds","releaseDate":1250812800000,"language":"en","tagline":"Once upon a time in Nazi occupied France...","type":"Movie","_key":"65170"} +{"label":"B.J. Novak","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/878\/4cf1942b7b9aa13ef2000878\/b-j-novak-profile.jpg","version":46,"id":"107770","lastModified":"1301901282000","name":"B.J. Novak","type":"Person","_key":"65171"} +{"label":"Paul Rust","version":33,"id":"85236","lastModified":"1301901156000","name":"Paul Rust","type":"Person","_key":"65172"} +{"label":"Carlos Fidel","version":27,"id":"107771","lastModified":"1301901178000","name":"Carlos Fidel","type":"Person","_key":"65173"} +{"label":"Denis Menochet","version":34,"id":"81125","lastModified":"1301901124000","name":"Denis Menochet","type":"Person","_key":"65174"} +{"label":"Soenke M\u00f6hring","version":27,"id":"107772","lastModified":"1301901169000","name":"Soenke M\u00f6hring","type":"Person","_key":"65175"} +{"label":"Martin Wuttke","version":32,"id":"71636","lastModified":"1301901156000","name":"Martin Wuttke","type":"Person","_key":"65176"} +{"label":"Drag Me to Hell","description":"After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.","id":"16871","runtime":139,"imdbId":"tt1127180","trailer":"http:\/\/www.youtube.com\/watch?v=BUZTybLlWKI","homepage":"http:\/\/www.dragmetohell.net\/","version":1230,"lastModified":"1302170176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22e\/4d12e24f5e73d6083400122e\/drag-me-to-hell-mid.jpg","studio":"Buckaroo Entertainment","genre":"Horror","title":"Drag Me to Hell","releaseDate":1243555200000,"language":"en","tagline":"Christine Brown has a good job, a great boyfriend, and a brigth future. But in three days, she's going to hell.","type":"Movie","_key":"65177"} +{"label":"Lorna Raver","version":22,"id":"95696","lastModified":"1301901082000","name":"Lorna Raver","type":"Person","_key":"65178"} +{"label":"Kevin Foster","version":22,"id":"95698","lastModified":"1301901163000","name":"Kevin Foster","type":"Person","_key":"65179"} +{"label":"Battle for Terra","description":"A peaceful alien planet faces annihilation, as the homeless remainder of the human race sets its eyes on Terra. Mala, a rebellious Terrian teenager, will do everything she can to stop it.","id":"16873","runtime":85,"imdbId":"tt0858486","trailer":"http:\/\/www.youtube.com\/watch?v=pNJjvh9yOks","homepage":"http:\/\/www.battleforterra.com\/","version":240,"lastModified":"1301901905000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4bc94daa017a3c57fe022023\/battle-for-terra-mid.jpg","studio":"MeniThings LLC","genre":"Action","title":"Battle for Terra","releaseDate":1189209600000,"language":"en","tagline":"Their world is mankind's only hope for survival.","type":"Movie","_key":"65180"} +{"label":"Aristomenis Tsirbas","version":33,"id":"80949","lastModified":"1301901834000","name":"Aristomenis Tsirbas","type":"Person","_key":"65181"} +{"label":"The Wog Boy","description":"Steve liked Celia from the moment they met. But following a clash with her boss, Raelene Beagle-Thorpe, Minister for Employment, he finds himself on national television branded as Australia's biggest dole bludger. Now Steve has to prove to Celia, to himself, and to the whole country, that there's more to him than meets the eye. With a little help from his friends, he might just do it.","id":"16874","runtime":92,"imdbId":"tt0216417","version":57,"lastModified":"1301905373000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/030\/4bc94dab017a3c57fe022030\/the-wog-boy-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Comedy","title":"The Wog Boy","releaseDate":951350400000,"language":"en","type":"Movie","_key":"65182"} +{"label":"Nick Giannopoulos","version":36,"id":"80950","lastModified":"1301901849000","name":"Nick Giannopoulos","type":"Person","_key":"65183"} +{"label":"Lucy Bell","version":20,"id":"80951","lastModified":"1301902457000","name":"Lucy Bell","type":"Person","_key":"65184"} +{"label":"Abi Tucker","version":19,"id":"80952","lastModified":"1301902457000","name":"Abi Tucker","type":"Person","_key":"65185"} +{"label":"Geraldine Turner","version":22,"id":"80953","lastModified":"1301902513000","name":"Geraldine Turner","type":"Person","_key":"65186"} +{"label":"John Barresi","version":19,"id":"80954","lastModified":"1301902238000","name":"John Barresi","type":"Person","_key":"65187"} +{"label":"Vince D'Amico","version":19,"id":"80955","lastModified":"1301902457000","name":"Vince D'Amico","type":"Person","_key":"65188"} +{"label":"Derryn Hinch","version":19,"id":"80956","lastModified":"1301902457000","name":"Derryn Hinch","type":"Person","_key":"65189"} +{"label":"Aleksi Vellis","version":19,"id":"80957","lastModified":"1301902457000","name":"Aleksi Vellis","type":"Person","_key":"65190"} +{"label":"Cheats","description":"While other kids buy into countless hours of studying just so they can get a mark in some teacher's report book, Handsome Davis sees it as nothing more than a system of control over your mind. That's why Handsome and his three best friends Sammy, Victor and the cribsheet genius Applebee have banded together and found ways to cheat on their tests all through their school years.","id":"16875","runtime":86,"imdbId":"tt0250292","version":170,"lastModified":"1301904823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4bc94dab017a3c57fe022035\/cheats-mid.png","genre":"Comedy","title":"Cheats","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"65191"} +{"label":"Kathryn Anderson","version":16,"id":"132345","lastModified":"1301902580000","name":"Kathryn Anderson","type":"Person","_key":"65192"} +{"label":"Dixon Cohee","version":16,"id":"132346","lastModified":"1301902905000","name":"Dixon Cohee","type":"Person","_key":"65193"} +{"label":"Casey Dubois","version":16,"id":"132347","lastModified":"1301902923000","name":"Casey Dubois","type":"Person","_key":"65194"} +{"label":"Andrew Gurland","version":35,"id":"120247","lastModified":"1301902418000","name":"Andrew Gurland","type":"Person","_key":"65195"} +{"label":"Bang Bang You're Dead","description":"Trevor is a troubled high school student, thanks to the effects of bullying. This is the story of his fight to break free.","id":"16876","runtime":87,"imdbId":"tt0288439","version":129,"lastModified":"1302087899000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03a\/4bc94dac017a3c57fe02203a\/bang-bang-you-re-dead-mid.jpg","studio":"Every Guy Productions","genre":"Drama","title":"Bang Bang You're Dead","releaseDate":1023408000000,"language":"en","type":"Movie","_key":"65196"} +{"label":"Randy Harrison","version":19,"id":"80965","lastModified":"1301901863000","name":"Randy Harrison","type":"Person","_key":"65197"} +{"label":"Janel Moloney","version":21,"id":"80966","lastModified":"1302117604000","name":"Janel Moloney","type":"Person","_key":"65198"} +{"label":"The 39 Steps","description":"Based on the beloved spy thriller by John Buchan, and first brought to the screen in 1935 by Alfred Hitchcock, THE 39 STEPS is a timeless tale of action, intrigue, romance and suspense. This television adaptation stars Rupert Penry Jones (BURN UP, SPOOKS) as Richard Hannay, an ordinary man caught up in extraordinary events. ","id":"16877","runtime":90,"imdbId":"tt1282016","version":266,"lastModified":"1301907730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/043\/4bc94dac017a3c57fe022043\/the-39-steps-mid.jpg","genre":"Action","title":"The 39 Steps","releaseDate":1230422400000,"language":"en","type":"Movie","_key":"65199"} +{"label":"Lydia Leonard","version":20,"id":"82807","lastModified":"1301902064000","name":"Lydia Leonard","type":"Person","_key":"65200"} +{"label":"Peter Stark","version":19,"id":"85828","lastModified":"1301902238000","name":"Peter Stark","type":"Person","_key":"65201"} +{"label":"Saving God","description":"Ex Con Armstrong Cane (Ving Rhames) returns to home a changed man looking to take over his father's old church and congregation. The neighborhood though is full of drugs and gangs. \n\nThose who are able are leaving for more prosperous areas and falling in with a slick preacher (Ricardo Chivara). Even with a dangerous gang leader (Dean McDermott) threatening his flock, Armstrong won't give up.","id":"16878","runtime":101,"imdbId":"tt1187046","homepage":"http:\/\/www.savinggodmovie.com","version":143,"lastModified":"1301908413000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4bc94dac017a3c57fe022048\/saving-god-mid.jpg","studio":"Cloud Ten Pictures","genre":"Drama","title":"Saving God","releaseDate":1224288000000,"language":"en","type":"Movie","_key":"65202"} +{"label":"Ricardo Chavira","version":22,"id":"80967","lastModified":"1301901429000","name":"Ricardo Chavira","type":"Person","_key":"65203"} +{"label":"Genelle Williams","version":30,"id":"80969","lastModified":"1301902490000","name":"Genelle Williams","type":"Person","_key":"65204"} +{"label":"Duane Crichton","version":18,"id":"80972","lastModified":"1301901863000","name":"Duane Crichton","type":"Person","_key":"65205"} +{"label":"2 Hitmen","description":"Two odd-ball best friends lead a team of wanna-be hitmen as they attempt to become something more in their lives. They will practice and train to be the best hitmen possible, but at the end of the day. They stumble their way into trouble and learn the hard way about the world of killing for hire.","id":"16881","runtime":86,"imdbId":"tt1105716","version":170,"lastModified":"1301908283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4cff39ad7b9aa1514a006019\/2-hitmen-mid.jpg","genre":"Comedy","title":"2 Hitmen","releaseDate":1194739200000,"language":"en","type":"Movie","_key":"65206"} +{"label":"The Guardpost","description":"The plot concerns Guard Point 506, where an entire squad of soldiers have been killed in mysterious circumstances, bar one survivor who's in a coma. Military Investigators are dispatched to the base, and discover they're dealing with a virus that turns humans into ravenous flesh-eating killers! ","id":"16882","runtime":121,"imdbId":"tt1064953","trailer":"http:\/\/www.youtube.com\/watch?v=1102","version":86,"lastModified":"1302087291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4bc94dad017a3c57fe022051\/g-p-506-mid.jpg","studio":"Motis Productions","genre":"Horror","title":"The Guardpost","releaseDate":1207180800000,"language":"en","type":"Movie","_key":"65207"} +{"label":"Young-hoon Lee","version":18,"id":"80984","lastModified":"1301902316000","name":"Young-hoon Lee","type":"Person","_key":"65208"} +{"label":"Jeong-heon Lee","version":17,"id":"80985","lastModified":"1301902064000","name":"Jeong-heon Lee","type":"Person","_key":"65209"} +{"label":"Anden p\u00e5 coke?","description":"Den seneste stand-up dvd fra Danmarks st\u00f8rste komiker. \u201dAnden paa coke?\u201d turnerede rundt i hele landet i 2006 og blev set live af over 100.000 mennesker.Anden tager stand-up comedy genren videre til et niveau ikke tidligere set herhjemme. Der er kulisser, der er scenografi, der er multimedia men i bund og grund er det alligevel bare stand-up, n\u00e5r det er allerbedst!","id":"16884","runtime":112,"imdbId":"tt0949330","version":52,"lastModified":"1301906600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bc94db0017a3c57fe022063\/anden-pa-coke-mid.jpg","genre":"Comedy","title":"Anden p\u00e5 coke?","releaseDate":1163462400000,"language":"en","type":"Movie","_key":"65210"} +{"label":"The General","description":"In a twenty-year career marked by obsessive secrecy, brutality and meticulous planning, Cahill netted over \u00a340 million. He was untouchable - until a bullet from an IRA hitman ended it all.","id":"16885","runtime":124,"imdbId":"tt0120706","version":117,"lastModified":"1301417599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/070\/4bc94db4017a3c57fe022070\/the-general-mid.jpg","studio":"J & M","genre":"Crime","title":"The General","releaseDate":893980800000,"language":"en","type":"Movie","_key":"65211"} +{"label":"Franti\u0161ek je d\u011bvka\u0159","description":"Franti\u0161ek Soukenick\u00fd trp\u00ed slabost\u00ed na \u017eeny. Je to d\u011bvka\u0159. Tu ho zaujme \u017eena ladn\u00fdch tvar\u016f, tu zase \u017eena d\u016fvtipn\u00e1 a bystr\u00e1. Franti\u0161ek je st\u0159\u00edd\u00e1 jako na b\u011b\u017e\u00edc\u00edm p\u00e1su. Nen\u00ed divu, kdy\u017e ho jednoho dne \u017eena vyhod\u00ed z domu, na kter\u00fd si pr\u00e1v\u011b vzal hypot\u00e9ku. A aby to nebylo m\u00e1lo, je mu odebr\u00e1na licence psychiatra. Po mnoha letech je nucen vr\u00e1tit se ke sv\u00e9 matce. Ta sv\u00e9ho syna nekriticky adoruje, co\u017e nem\u016f\u017ee vyst\u00e1t Milo\u0161, Franti\u0161k\u016fv star\u0161\u00ed bratr. Franti\u0161ek zjist\u00ed, jak t\u011b\u017ek\u00e9 je pro odstaven\u00e9ho psychiatra nal","id":"16886","runtime":81,"imdbId":"tt1318023","homepage":"http:\/\/http:\/\/www.frantisekjedevkar.cz\/","version":41,"lastModified":"1301418363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ff\/4cbcd3477b9aa138d50013ff\/frantisek-je-devkar-mid.jpg","studio":"Evolution Films","genre":"Comedy","title":"Franti\u0161ek je d\u011bvka\u0159","releaseDate":1212624000000,"language":"en","type":"Movie","_key":"65212"} +{"label":"Jan Pru\u0161inovsk\u00fd","version":17,"id":"139245","lastModified":"1301902909000","name":"Jan Pru\u0161inovsk\u00fd","type":"Person","_key":"65213"} +{"label":"Sans etat d'\u00e2me","description":"Une prostitu\u00e9e de luxe, un juge d'instruction arriviste, une journaliste id\u00e9aliste... Trois cultures diff\u00e9rentes, trois \u00eatres n'ayant pas les m\u00eames valeurs. A travers une histoire et un milieu o\u00f9 la v\u00e9rit\u00e9 n'est pas toujours belle \u00e0 conna\u00eetre, l'amour que ces trois personnes \u00e9prouvent les uns pour les autres va devenir meurtrier.","id":"16887","runtime":97,"imdbId":"tt1064980","version":45,"lastModified":"1301908150000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07a\/4bc94db5017a3c57fe02207a\/sans-etat-d-ame-mid.jpg","title":"Sans etat d'\u00e2me","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65214"} +{"label":"Thierry Fr\u00e9mont","version":33,"id":"96413","lastModified":"1301901947000","name":"Thierry Fr\u00e9mont","type":"Person","_key":"65215"} +{"label":"The Ladies Man","description":"Because of his salacious language, late-night radio advice-show host Leon Phelps, along with his sweet and loyal producer Julie, is fired from his Chicago gig. Leon gets a letter from a former lover promising a life of wealth, but he doesn't know who she is. Can Leon find his secret sugar-mama? What about Julie?","id":"16888","runtime":84,"imdbId":"tt0213790","version":371,"lastModified":"1301905046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a1\/4d83bafa7b9aa12ed40002a1\/the-ladies-man-mid.jpg","studio":"SNL Studios","genre":"Comedy","title":"The Ladies Man","releaseDate":971395200000,"language":"en","tagline":"He's cool. He's clean. He's a love machine.","type":"Movie","_key":"65216"} +{"label":"Karyn Parsons","version":22,"id":"80987","lastModified":"1301901999000","name":"Karyn Parsons","type":"Person","_key":"65217"} +{"label":"Sofia Milos","version":23,"id":"52628","lastModified":"1301904129000","name":"Sofia Milos","type":"Person","_key":"65218"} +{"label":"Revenge of the Nerds II: Nerds in Paradise","description":"The rising college nerds set out to a convention is Florida, but are unwelcomed by the Alpha Beta representatives.","id":"16889","runtime":98,"imdbId":"tt0093857","trailer":"http:\/\/www.youtube.com\/watch?v=h1XXfRwh66w","version":110,"lastModified":"1301905772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/012\/4c12d7d07b9aa102f9000012\/revenge-of-the-nerds-ii-nerds-in-paradise-mid.jpg","genre":"Comedy","title":"Revenge of the Nerds II: Nerds in Paradise","releaseDate":552873600000,"language":"en","tagline":"They're Back!","type":"Movie","_key":"65219"} +{"label":"The Guitar","description":"The life of a woman is transformed after she is diagnosed with a terminal disease, fired from her job and abandoned by her boyfriend. Given two months to live, she throws caution to the wind to pursue her dreams.","id":"16890","runtime":95,"imdbId":"tt0942891","trailer":"http:\/\/www.youtube.com\/watch?v=1103","homepage":"http:\/\/www.theguitarthemovie.com\/","version":180,"lastModified":"1302086220000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a2\/4bc94db9017a3c57fe0220a2\/the-guitar-mid.jpg","studio":"Apple Creek Productions","genre":"Drama","title":"The Guitar","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"65220"} +{"label":"Amy Redford","version":21,"id":"80988","lastModified":"1301902503000","name":"Amy Redford","type":"Person","_key":"65221"} +{"label":"Nems Bond","description":"No overview found.","id":"16891","runtime":115,"imdbId":"tt1596777","version":39,"lastModified":"1301907813000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a7\/4bc94db9017a3c57fe0220a7\/nims-bond-mid.jpg","title":"Nems Bond","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65222"} +{"label":"Akele Hum Akele Tum","description":"Rohit and wealthy Kiran Dayal meet each other and fall in love. They intend to marry, but Kiran's parents will not permit her to marry beneath her class. Kiran is adamant, and the marriage goes through without the blessings of the Dayals. They live in harmony for months, even after Kiran gives birth to Sunil. Then they start to have differences, which are minor at present, and then snowball...","id":"16894","runtime":160,"imdbId":"tt0112313","version":81,"lastModified":"1301907742000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b0\/4bc94db9017a3c57fe0220b0\/akele-hum-akele-tum-mid.jpg","studio":"Eros Entertainment","genre":"Drama","title":"Akele Hum Akele Tum","releaseDate":817689600000,"language":"en","type":"Movie","_key":"65223"} +{"label":"Mansoor Khan","version":24,"id":"88441","lastModified":"1301902169000","name":"Mansoor Khan","type":"Person","_key":"65224"} +{"label":"Easy Virtue","description":"A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.","id":"16899","runtime":93,"imdbId":"tt0808244","homepage":"http:\/\/www.easyvirtuethemovie.co.uk\/","version":358,"lastModified":"1302085572000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c6\/4bc94dbb017a3c57fe0220c6\/easy-virtue-mid.jpg","genre":"Comedy","title":"Easy Virtue","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65225"} +{"label":"Kimberley Nixon","version":30,"id":"124828","lastModified":"1301901174000","name":"Kimberley Nixon","type":"Person","_key":"65226"} +{"label":"Truth In 24","description":"It's 24 hours of pure exhilaration, complete exhaustion, and it's not for the faint of heart or the ill-prepared. It is the legendary 24 Hours of Le Mans. But before you win it, you have to master finishing it. This film chronicles the dedication, the determination and the spirit required to not just survive 3,000 grueling miles, but to be in a position to win one of the greatest races in history.","id":"16900","runtime":95,"imdbId":"tt1320302","homepage":"http:\/\/www.truthin24.com\/","version":54,"lastModified":"1301907251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0db\/4bc94dbe017a3c57fe0220db\/truth-in-24-mid.jpg","studio":"NFL Films","genre":"Documentary","title":"Truth In 24","releaseDate":1225929600000,"language":"en","type":"Movie","_key":"65227"} +{"label":"Keith Cossrow","version":19,"id":"80992","lastModified":"1301902457000","name":"Keith Cossrow","type":"Person","_key":"65228"} +{"label":"Bennett Viseltear","version":19,"id":"80993","lastModified":"1301902238000","name":"Bennett Viseltear","type":"Person","_key":"65229"} +{"label":"Truman","description":"Biographical account of America's President for the latter part of WWII. Shows Truman's rise from small-town nobody to leader of the USA, his decision to use the Atomic Bomb against Japan, and subsequent election as the US' post-war President.","id":"16901","runtime":135,"imdbId":"tt0114738","version":147,"lastModified":"1301904694000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e0\/4bc94dc1017a3c57fe0220e0\/truman-mid.jpg","studio":"HBO Pictures","genre":"Drama","title":"Truman","releaseDate":810604800000,"language":"en","type":"Movie","_key":"65230"} +{"label":"Amelia Campbell","version":19,"id":"80989","lastModified":"1301902473000","name":"Amelia Campbell","type":"Person","_key":"65231"} +{"label":"Virginia Capers","version":19,"id":"80990","lastModified":"1301902473000","name":"Virginia Capers","type":"Person","_key":"65232"} +{"label":"David Lansbury","version":21,"id":"80991","lastModified":"1301902416000","name":"David Lansbury","type":"Person","_key":"65233"} +{"label":"The Private Lives of Elizabeth and Essex","description":"This period drama frames the tumultuous affair between Queen Elizabeth I and the man who would be King of England.","id":"16902","runtime":106,"imdbId":"tt0031826","version":130,"lastModified":"1301906337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4bc94dc2017a3c57fe0220e5\/the-private-lives-of-elizabeth-and-essex-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"The Private Lives of Elizabeth and Essex","releaseDate":-951177600000,"language":"en","type":"Movie","_key":"65234"} +{"label":"Blue Murder at St. Trinian's","description":"St. Trinian's contrives to win a competition which has a European trip as the prize, in order for the Girls of the Flash Harry St Trinian's Marriage Bureau to meet a rich Roman royal.","id":"16904","runtime":86,"imdbId":"tt0051423","version":127,"lastModified":"1301904988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4bc94dc2017a3c57fe0220ea\/blue-murder-at-st-trinian-s-mid.jpg","studio":"British Lion Film Corporation","title":"Blue Murder at St. Trinian's","releaseDate":-380592000000,"language":"en","type":"Movie","_key":"65235"} +{"label":"Captain Blood","description":"Errol Flynn leads a group of slaves to freedom and piracy.","id":"16905","runtime":119,"imdbId":"tt0026174","trailer":"http:\/\/www.youtube.com\/watch?v=MXb1QqmrRNc","version":229,"lastModified":"1301903169000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/105\/4bc94dc5017a3c57fe022105\/captain-blood-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Captain Blood","releaseDate":-1074124800000,"language":"en","type":"Movie","_key":"65236"} +{"label":"Lione Atwill","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09a\/4ca3aa185e73d636f700009a\/lione-atwill-profile.jpg","version":18,"id":"134866","lastModified":"1301902683000","name":"Lione Atwill","type":"Person","_key":"65237"} +{"label":"Ross Alexander","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/094\/4ca3aa795e73d636fc000094\/ross-alexander-profile.jpg","version":17,"id":"134867","lastModified":"1301902775000","name":"Ross Alexander","type":"Person","_key":"65238"} +{"label":"Henry Stephenson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9a6\/4be45492017a3c35b90009a6\/henry-stephenson-profile.jpg","version":46,"id":"81934","lastModified":"1301901603000","name":"Henry Stephenson","type":"Person","_key":"65239"} +{"label":"Robert Barrat","version":36,"id":"88672","lastModified":"1301903071000","name":"Robert Barrat","type":"Person","_key":"65240"} +{"label":"Hobart Cavanaugh","version":24,"id":"85897","lastModified":"1301902379000","name":"Hobart Cavanaugh","type":"Person","_key":"65241"} +{"label":"Frank McGlynn Sr.","version":16,"id":"134868","lastModified":"1301902853000","name":"Frank McGlynn Sr.","type":"Person","_key":"65242"} +{"label":"Pedro de Cordoba","version":24,"id":"103493","lastModified":"1301902766000","name":"Pedro de Cordoba","type":"Person","_key":"65243"} +{"label":"George Hassell","version":17,"id":"134869","lastModified":"1301903050000","name":"George Hassell","type":"Person","_key":"65244"} +{"label":"Leonard Mudie","version":16,"id":"134870","lastModified":"1301902906000","name":"Leonard Mudie","type":"Person","_key":"65245"} +{"label":"Ivan F. Simpson","version":21,"id":"132536","lastModified":"1301903077000","name":"Ivan F. Simpson","type":"Person","_key":"65246"} +{"label":"Stuart Casey","version":16,"id":"134871","lastModified":"1301902733000","name":"Stuart Casey","type":"Person","_key":"65247"} +{"label":"David Cavendish","version":16,"id":"134872","lastModified":"1301902754000","name":"David Cavendish","type":"Person","_key":"65248"} +{"label":"Mary Forbes","version":23,"id":"81941","lastModified":"1301902034000","name":"Mary Forbes","type":"Person","_key":"65249"} +{"label":"E. E. Clive","version":16,"id":"134873","lastModified":"1301902737000","name":"E. E. Clive","type":"Person","_key":"65250"} +{"label":"Colin Kenny","version":18,"birthday":"-2558480400000","id":"120445","birthplace":"Dublin, Ireland","lastModified":"1301903076000","name":"Colin Kenny","type":"Person","_key":"65251"} +{"label":"Maude Leslie","version":18,"id":"134874","lastModified":"1301902999000","name":"Maude Leslie","type":"Person","_key":"65252"} +{"label":"Gardner James","version":16,"id":"134875","lastModified":"1301902746000","name":"Gardner James","type":"Person","_key":"65253"} +{"label":"Vernon Steele","version":16,"id":"134876","lastModified":"1301902917000","name":"Vernon Steele","type":"Person","_key":"65254"} +{"label":"Naruto the Movie: Ninja Clash in the Land of Snow","description":"An icy land... A missing princess... And one high-spirited ninja!\n\nA land forever covered in ice... A princess missing for ten years... And one high-spirited ninja named Naruto!\n\nNaruto and his team are sent on a mission to guard Yukie Fujikaze, a popular actress starring in the hit movie \"The Adventures of Princess Gale.\" The crew is heading toward the Land of Snow, a land forever covered in snow","id":"16907","runtime":82,"imdbId":"tt0476680","homepage":"http:\/\/pierrot.jp\/title\/naruto\/movie\/","version":99,"lastModified":"1302084597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10e\/4bc94dc6017a3c57fe02210e\/gekijo-ban-naruto-daikatsugeki-yukihime-ninpocho-dattebayo-mid.jpg","studio":"Aniplex","genre":"Action","title":"Naruto the Movie: Ninja Clash in the Land of Snow","releaseDate":1093046400000,"language":"en","type":"Movie","_key":"65255"} +{"label":"Junko Takeuchi","version":44,"id":"82055","lastModified":"1301901454000","name":"Junko Takeuchi","type":"Person","_key":"65256"} +{"label":"Chie Nakamura","version":44,"id":"82057","lastModified":"1301901455000","name":"Chie Nakamura","type":"Person","_key":"65257"} +{"label":"Skyggen","description":"J.B. (Lars Bom) - an ultra-talented Webmaster of an illicit cyber-domain known for massive amounts of illegal money transfers is captured and is put under suspicion by the cyber-domain boss named Stoiss (J\u00f8rgen Kiil) when an intruder hacks into the system and steals the Stoiss\u2019s money. Stoiss sticks a heart controller device on J.B. and gives him 35 hours to find who took his money or he dies.","id":"16909","runtime":97,"imdbId":"tt0136535","version":61,"lastModified":"1301908528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/117\/4bc94dc6017a3c57fe022117\/skyggen-mid.jpg","studio":"Zeitgeist","genre":"Science Fiction","title":"Skyggen","releaseDate":904262400000,"language":"en","type":"Movie","_key":"65258"} +{"label":"Lars Bom","version":17,"id":"98062","lastModified":"1301902986000","name":"Lars Bom","type":"Person","_key":"65259"} +{"label":"Puk Scharbau","version":18,"id":"108305","lastModified":"1301902708000","name":"Puk Scharbau","type":"Person","_key":"65260"} +{"label":"Karin R\u00f8rbeck","version":18,"id":"108306","lastModified":"1301902375000","name":"Karin R\u00f8rbeck","type":"Person","_key":"65261"} +{"label":"Naruto the Movie 2: Legend of the Stone of Gelel","description":"Naruto, Shikamaru, and Sakura are executing their mission of delivering a lost pet to a certain village. However, right in the midst of things, troops led by the mysterious knight, Temujin, attack them. In the violent battle, the three become separated. Temujin challenges Naruto to a fight and at the end of the fierce battle, both fall together from a high cliff...","id":"16910","runtime":96,"imdbId":"tt0791188","homepage":"http:\/\/pierrot.jp\/title\/naruto\/movie2005\/index.html","version":43,"lastModified":"1301905724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/120\/4bc94dc7017a3c57fe022120\/gekijo-ban-naruto-daigekitotsu-maboroshi-no-chitei-iseki-dattebayo-mid.jpg","studio":"Aniplex","genre":"Adventure","title":"Naruto the Movie 2: Legend of the Stone of Gelel","releaseDate":1123286400000,"language":"en","type":"Movie","_key":"65262"} +{"label":"Gaamon Kai","version":22,"id":"89970","lastModified":"1301903059000","name":"Gaamon Kai","type":"Person","_key":"65263"} +{"label":"Akira Ishida","version":23,"id":"81244","lastModified":"1301902510000","name":"Akira Ishida","type":"Person","_key":"65264"} +{"label":"The Inhabited Island","description":"2157 \u2013 the era of the flourishing of human civilization. The pilots of the Group free search slot of the universe. The main character, Max Kamerrer, force-landed on the planet Saraksh, but after a few minutes, his ship is destroyed, but the hero would be a prisoner unknown planet. Soon, Max is faced with the human civilization.\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0435\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c \u0441 \u0434\u0430\u0432\u043d\u043e \u043c\u0438\u043d\u0443","id":"16911","runtime":115,"imdbId":"tt0972558","homepage":"http:\/\/oostrov.ru","version":152,"lastModified":"1301903115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/131\/4bc94dc8017a3c57fe022131\/16911-mid.jpg","studio":"Art Pictures Studio","genre":"Action","title":"The Inhabited Island","releaseDate":1229558400000,"language":"en","type":"Movie","_key":"65265"} +{"label":"Vasily Stepanov","version":28,"id":"80996","lastModified":"1301901635000","name":"Vasily Stepanov","type":"Person","_key":"65266"} +{"label":"Pyotr Fyodorov","version":30,"id":"80997","lastModified":"1301902126000","name":"Pyotr Fyodorov","type":"Person","_key":"65267"} +{"label":"Yuliya Snigir","version":28,"id":"80998","lastModified":"1301902126000","name":"Yuliya Snigir","type":"Person","_key":"65268"} +{"label":"Andrey Merzlikin","version":26,"id":"81001","lastModified":"1301902126000","name":"Andrey Merzlikin","type":"Person","_key":"65269"} +{"label":"Mikhail Evlanov","version":26,"id":"81002","lastModified":"1301902476000","name":"Mikhail Evlanov","type":"Person","_key":"65270"} +{"label":"Anna Mikhalkova","version":23,"id":"81003","lastModified":"1301902365000","name":"Anna Mikhalkova","type":"Person","_key":"65271"} +{"label":"Sergei Barkovsky","version":30,"id":"81004","lastModified":"1301901765000","name":"Sergei Barkovsky","type":"Person","_key":"65272"} +{"label":"Maksim Sukhanov","version":32,"id":"81005","lastModified":"1301902486000","name":"Maksim Sukhanov","type":"Person","_key":"65273"} +{"label":"Ignat Akrachkov","version":23,"id":"81007","lastModified":"1301902360000","name":"Ignat Akrachkov","type":"Person","_key":"65274"} +{"label":"The Colditz Story","description":"Allied prisoners attempt to excape from an \"escape-proof\" German POW camp - Colditz Castle, during WWII. Classic British War drama.","id":"16912","runtime":94,"imdbId":"tt0047945","version":47,"lastModified":"1301908315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13a\/4bc94dcb017a3c57fe02213a\/the-colditz-story-mid.jpg","studio":"British Lion Film Corporation","title":"The Colditz Story","releaseDate":-471312000000,"language":"en","type":"Movie","_key":"65275"} +{"label":"Christopher Rhodes","version":22,"id":"81010","lastModified":"1301902366000","name":"Christopher Rhodes","type":"Person","_key":"65276"} +{"label":"The Cruel Sea","description":"At the start of World War II, Cmdr. Ericson is assigned to convoy escort HMS Compass Rose with inexperienced officers and men just out of training. The winter seas make life miserable enough, but the men must also harden themselves to rescuing survivors of U-Boat attacks, while seldom able to strike back. Traumatic events afloat and ashore create a warm bond between the skipper and his first officer","id":"16914","runtime":126,"imdbId":"tt0045659","version":109,"lastModified":"1302083927000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4c46c67a5e73d61efb000231\/the-cruel-sea-mid.jpg","studio":"Ealing Studios","genre":"Drama","title":"The Cruel Sea","releaseDate":-531792000000,"language":"en","type":"Movie","_key":"65277"} +{"label":"Charles Frend","version":30,"id":"27920","lastModified":"1301901707000","name":"Charles Frend","type":"Person","_key":"65278"} +{"label":"Gutterballs","description":"A brutally sadistic rape leads to a series of bizarre gory murders during a midnight disco bowl-a-rama at a popular bowling alley. One by one, players of two teams meet blood-drenched gruesome deaths at the hand of a black bowling-gloved masked killer. This alley runs red with blood by sunrise.","id":"16915","runtime":94,"imdbId":"tt1087853","version":80,"lastModified":"1301903433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f6\/4c3f1a137b9aa13dc70000f6\/gutterballs-mid.jpg","studio":"Plotdigger Films","genre":"Horror","title":"Gutterballs","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65279"} +{"label":"Ryan Nicholson","version":21,"id":"97617","lastModified":"1301902361000","name":"Ryan Nicholson","type":"Person","_key":"65280"} +{"label":"Mihola Terzic","version":5,"id":"231080","lastModified":"1301904135000","name":"Mihola Terzic","type":"Person","_key":"65281"} +{"label":"Nathan Witte","version":5,"id":"231081","lastModified":"1301904136000","name":"Nathan Witte","type":"Person","_key":"65282"} +{"label":"Wade Gibb","version":19,"id":"97615","lastModified":"1301903036000","name":"Wade Gibb","type":"Person","_key":"65283"} +{"label":"Candice Lewald","version":19,"id":"97616","lastModified":"1301902706000","name":"Candice Lewald","type":"Person","_key":"65284"} +{"label":"Jeremy Beland","version":4,"id":"231082","lastModified":"1301503094000","name":"Jeremy Beland","type":"Person","_key":"65285"} +{"label":"Trevor Gemma","version":4,"id":"231083","lastModified":"1301503094000","name":"Trevor Gemma","type":"Person","_key":"65286"} +{"label":"Un novio para mi mujer","description":"No overview found.","id":"16916","runtime":100,"imdbId":"tt1280534","version":66,"lastModified":"1302083633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/157\/4bc94dcd017a3c57fe022157\/un-novio-para-mi-mujer-mid.jpg","title":"Un novio para mi mujer","releaseDate":1218672000000,"language":"en","type":"Movie","_key":"65287"} +{"label":"Gabriel Goity","version":20,"id":"81011","lastModified":"1301902324000","name":"Gabriel Goity","type":"Person","_key":"65288"} +{"label":"Adri\u00e1n Suar","version":26,"id":"81012","lastModified":"1301902143000","name":"Adri\u00e1n Suar","type":"Person","_key":"65289"} +{"label":"Juan Taratuto","version":20,"id":"81013","lastModified":"1301902524000","name":"Juan Taratuto","type":"Person","_key":"65290"} +{"label":"Global Metal","description":"In GLOBAL METAL, directors Scot McFadyen and Sam Dunn set out to discover how the West's most maligned musical genre - heavy metal - has impacted the world's cultures beyond Europe and North America. The film follows metal fan and anthropologist Sam Dunn on a whirlwind journey through Asia, South America and the Middle East as he explores the underbelly of the world's emerging extreme music scenes; from Indonesian death metal to Chinese black metal to Iranian thrash metal. GLOBAL METAL reveals a","id":"16919","runtime":93,"imdbId":"tt1249171","trailer":"http:\/\/www.youtube.com\/watch?v=2858","homepage":"http:\/\/www.globalmetalfilm.com\/","version":152,"lastModified":"1302083494000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/160\/4bc94dce017a3c57fe022160\/global-metal-mid.jpg","studio":"Banger Productions","genre":"Documentary","title":"Global Metal","releaseDate":1213920000000,"language":"en","type":"Movie","_key":"65291"} +{"label":"Sam Dunn","version":27,"id":"84110","lastModified":"1301901474000","name":"Sam Dunn","type":"Person","_key":"65292"} +{"label":"Autopsy","description":"Emily Johnson, her boyfriend Bobby and their friends Clare and Jude are recent college grads driving cross-country, taking a last vacation together before they face the \"real\" world. An accident leaves them hurt and stranded on a lonely Louisiana road. When the ambulance arrives, it whisks them to Mercy Hospital.","id":"16921","runtime":84,"imdbId":"tt0443435","version":191,"lastModified":"1301903677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/185\/4bc94dd0017a3c57fe022185\/autopsy-mid.jpg","studio":"FlipZide Pictures","genre":"Horror","title":"Autopsy","releaseDate":1199836800000,"language":"en","type":"Movie","_key":"65293"} +{"label":"Jessica Lowndes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be1\/4d7ab9ef5e73d62836000be1\/jessica-lowndes-profile.jpg","version":27,"id":"84698","lastModified":"1301901558000","name":"Jessica Lowndes","type":"Person","_key":"65294"} +{"label":"Ross Kohn","version":21,"id":"84699","lastModified":"1301902704000","name":"Ross Kohn","type":"Person","_key":"65295"} +{"label":"Ashley Schneider","version":22,"id":"84700","lastModified":"1301902064000","name":"Ashley Schneider","type":"Person","_key":"65296"} +{"label":"Arcadiy Golubovich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e96\/4d2803ce7b9aa134d3001e96\/arcadiy-golubovich-profile.jpg","version":23,"id":"84701","lastModified":"1301901863000","name":"Arcadiy Golubovich","type":"Person","_key":"65297"} +{"label":"Gregg Brazzel","version":24,"id":"84702","lastModified":"1301902507000","name":"Gregg Brazzel","type":"Person","_key":"65298"} +{"label":"Elijah Hardy","version":20,"id":"84703","lastModified":"1301902632000","name":"Elijah Hardy","type":"Person","_key":"65299"} +{"label":"Tatyana Kanavka","version":20,"id":"84704","lastModified":"1301902632000","name":"Tatyana Kanavka","type":"Person","_key":"65300"} +{"label":"Janine Venable","version":20,"id":"84705","lastModified":"1301902632000","name":"Janine Venable","type":"Person","_key":"65301"} +{"label":"Heatstroke","description":"An ex-model teams up with a soldier to thwart aliens who are propelling global warming to make Earth habitable for their species ","id":"16922","runtime":0,"imdbId":"tt0925245","version":45,"lastModified":"1301907408000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/193\/4bc94dd1017a3c57fe022193\/heatstroke-mid.jpg","title":"Heatstroke","releaseDate":1212192000000,"language":"en","type":"Movie","_key":"65302"} +{"label":"Merlin and the War of the Dragons","description":"In 5th Century Britian, a young Merlin struggles for his place in his known land under the tutelage of The Mage, a local wizard whom sees the young man's potential for magic, as well as face off against his evil former friend, Vendiger, whom plots with a feudal warlord king to conquer all of Britian using an army of flying dragons, and only Merlin with the alliance of the local Prince Uther and Ingraine and a pair of mystical goddesses, can have the power to stop the evil from taking over the la","id":"16923","runtime":90,"imdbId":"tt1294699","version":105,"lastModified":"1302016315000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a5\/4bc94dd6017a3c57fe0221a5\/merlin-and-the-war-of-the-dragons-mid.jpg","genre":"Comedy","title":"Merlin and the War of the Dragons","releaseDate":1227571200000,"language":"en","type":"Movie","_key":"65303"} +{"label":"Jon Macy","version":24,"id":"81298","lastModified":"1301902457000","name":"Jon Macy","type":"Person","_key":"65304"} +{"label":"Nia Ann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf3\/4d27ec0c7b9aa134cf001cf3\/nia-ann-profile.jpg","version":21,"id":"81299","lastModified":"1301902036000","name":"Nia Ann","type":"Person","_key":"65305"} +{"label":"Ceri Bostock","version":20,"id":"81300","lastModified":"1301902238000","name":"Ceri Bostock","type":"Person","_key":"65306"} +{"label":"Simon Lloyd-Roberts","version":18,"id":"81301","lastModified":"1301902238000","name":"Simon Lloyd-Roberts","type":"Person","_key":"65307"} +{"label":"Hefin Wyn","version":20,"id":"81302","lastModified":"1301902457000","name":"Hefin Wyn","type":"Person","_key":"65308"} +{"label":"Carys Eleri","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/df0\/4d27ed0a7b9aa134e0001df0\/carys-eleri-profile.jpg","version":16,"id":"147885","lastModified":"1301902395000","name":"Carys Eleri","type":"Person","_key":"65309"} +{"label":"Iona Thonger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e97\/4d27ed8b7b9aa134cb001e97\/iona-thonger-profile.jpg","version":16,"id":"147886","lastModified":"1301902395000","name":"Iona Thonger","type":"Person","_key":"65310"} +{"label":"Scourge","description":"An ancient pestilence called The Scourge has been set free in a small town after being entombed in a church's masonry for a century and a half. As bodies rapidly pile up, nothing stands between the spawning Scourge and the rest of the town except our young heroes Scott and Jessie who rediscover their love for each other in the process","id":"16925","runtime":92,"imdbId":"tt1137477","version":317,"lastModified":"1302082854000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ae\/4bc94dd7017a3c57fe0221ae\/scourge-mid.jpg","genre":"Drama","title":"Scourge","releaseDate":1201737600000,"language":"en","type":"Movie","_key":"65311"} +{"label":"Prairie Fever","description":"No overview found.","id":"16926","runtime":81,"imdbId":"tt1160018","version":221,"lastModified":"1302082620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b7\/4bc94dd8017a3c57fe0221b7\/prairie-fever-mid.jpg","studio":"Grand Army Entertainment","genre":"Action","title":"Prairie Fever","releaseDate":1206748800000,"language":"en","type":"Movie","_key":"65312"} +{"label":"Lucy Lee Flippin","version":23,"id":"81689","lastModified":"1301902457000","name":"Lucy Lee Flippin","type":"Person","_key":"65313"} +{"label":"Don Swayze","version":21,"id":"81690","lastModified":"1301902064000","name":"Don Swayze","type":"Person","_key":"65314"} +{"label":"Chris McKenna","version":28,"id":"81691","lastModified":"1301901681000","name":"Chris McKenna","type":"Person","_key":"65315"} +{"label":"David S. Cass Sr.","version":24,"id":"81693","lastModified":"1301902476000","name":"David S. Cass Sr.","type":"Person","_key":"65316"} +{"label":"The Box Collector","description":"An overprotective mother tries to stop her son's budding relationship with a flirtatious young divorce.","id":"16927","runtime":0,"imdbId":"tt1038680","version":72,"lastModified":"1301902639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bc94dd9017a3c57fe0221c0\/the-box-collector-mid.jpg","title":"The Box Collector","releaseDate":1201824000000,"language":"en","type":"Movie","_key":"65317"} +{"label":"Black & White","description":"Rajan Mathur (Anil Kapoor) is a Professor in Urdu literature in Dr. Zakir Hussain's College. He resides in Chandni Chowk with his activist wife, Roma Mathur (Shefali Shah).\n\nProfessor Mathur comes across a young boy called Numair Qazi (Anurag Sinha) who introduces himself as a victim of communal riots in Gujarat. ","id":"16928","runtime":120,"version":214,"lastModified":"1302082032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c9\/4bc94dd9017a3c57fe0221c9\/black-white-mid.jpg","genre":"Action","title":"Black & White","releaseDate":1201824000000,"language":"en","type":"Movie","_key":"65318"} +{"label":"Journey to the Center of the Earth (V)","description":"Set in the late 1870's - A woman hires an anthropologist\/adventurer to track down her husband, who has disappeared while searching for an elusive passage to the center of the earth","id":"16929","runtime":90,"imdbId":"tt1156454","version":135,"lastModified":"1301904711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d2\/4bc94dd9017a3c57fe0221d2\/journey-to-the-center-of-the-earth-v-mid.jpg","genre":"Action","title":"Journey to the Center of the Earth (V)","releaseDate":1169856000000,"language":"en","type":"Movie","_key":"65319"} +{"label":"Steven Grayhm","version":21,"id":"81014","lastModified":"1301902172000","name":"Steven Grayhm","type":"Person","_key":"65320"} +{"label":"T.J. Scott","version":17,"id":"20976","lastModified":"1301901672000","name":"T.J. Scott","type":"Person","_key":"65321"} +{"label":"Les Clefs De Bagnole","description":"No overview found.","id":"16930","runtime":0,"imdbId":"tt0383995","version":50,"lastModified":"1302081207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4bc94dd9017a3c57fe0221d7\/les-clefs-de-bagnole-mid.jpg","title":"Les Clefs De Bagnole","releaseDate":1071014400000,"language":"en","type":"Movie","_key":"65322"} +{"label":"Into the Blue 2: The Reef","description":"A pair of professional divers are hired to find Columbus' hidden treasure.","id":"16931","runtime":92,"imdbId":"tt0865907","trailer":"http:\/\/www.youtube.com\/watch?v=1110","version":168,"lastModified":"1301902715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bf565db017a3c7732000092\/into-the-blue-2-the-reef-mid.jpg","studio":"Brookwell-McNamara Entertainment","genre":"Action","title":"Into the Blue 2: The Reef","releaseDate":1240272000000,"language":"en","type":"Movie","_key":"65323"} +{"label":"Audrina Patridge","version":23,"id":"81015","lastModified":"1301902064000","name":"Audrina Patridge","type":"Person","_key":"65324"} +{"label":"David Anders","version":22,"id":"40632","lastModified":"1301901528000","name":"David Anders","type":"Person","_key":"65325"} +{"label":"Mircea Monroe","version":18,"id":"81017","lastModified":"1301901863000","name":"Mircea Monroe","type":"Person","_key":"65326"} +{"label":"After You","description":"Antoine is a maitre d' in a Paris brasserie, Chez Jean, and is so full of being of service to others that he can't say 'no'. Late for dinner with his girlfriend, Christine, he takes a shortcut home through the park but finds a stranger, Louis, in the act of committing suicide by hanging. Louis is distraught by the loss of his girlfriend, Blanche, and is so grateful that he attaches himself to Antoine. Antoine arranges a job for Louis - as a sommelier at Chez Jean and sets about trying to repair ","id":"16932","runtime":110,"imdbId":"tt0344604","version":73,"lastModified":"1300980375000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e5\/4bc94dda017a3c57fe0221e5\/apres-vous-mid.jpg","genre":"Comedy","title":"After You","releaseDate":1097280000000,"language":"en","type":"Movie","_key":"65327"} +{"label":"Sandrine Kiberlain","version":34,"id":"81821","lastModified":"1301902041000","name":"Sandrine Kiberlain","type":"Person","_key":"65328"} +{"label":"They Drive by Night","description":"Joe (George Raft) and Paul Fabrini (Humphrey Bogart) are Wildcat or, independent truck drivers who have their own small one truck business. The Fabrini boys constantly battle distributors, rivals and loan collectors, while trying to make a success of their transport company.","id":"16933","runtime":96,"imdbId":"tt0033149","trailer":"http:\/\/www.youtube.com\/watch?v=cdM5gW2LTAc","version":122,"lastModified":"1301907331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ee\/4bc94ddb017a3c57fe0221ee\/they-drive-by-night-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"They Drive by Night","releaseDate":-928800000000,"language":"en","type":"Movie","_key":"65329"} +{"label":"Gale Page","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/967\/4be4447c017a3c35b7000967\/gale-page-profile.jpg","version":23,"id":"81018","lastModified":"1301902386000","name":"Gale Page","type":"Person","_key":"65330"} +{"label":"The Young Poisoner's Handbook","description":"A sinister tale of genius gone wrong, The Young Poisoner's Handbook chronicles a young man's descent into madness against the absurd backdrop of suburban English life. Hugh O'Conor plays Graham Young, a schoolboy from the London suburbs whose deadly obsession with toxic substances causes him to dabble in experimental murder.","id":"16934","runtime":99,"imdbId":"tt0115033","version":96,"lastModified":"1301903509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f7\/4bc94ddb017a3c57fe0221f7\/the-young-poisoner-s-handbook-mid.jpg","studio":"Bavaria Film and Television Fund","genre":"Crime","title":"The Young Poisoner's Handbook","releaseDate":790560000000,"language":"en","type":"Movie","_key":"65331"} +{"label":"Benjamin Ross","version":23,"id":"81020","lastModified":"1301901849000","name":"Benjamin Ross","type":"Person","_key":"65332"} +{"label":"Tobias Arnold","version":19,"id":"81023","lastModified":"1301902238000","name":"Tobias Arnold","type":"Person","_key":"65333"} +{"label":"Norman Caro","version":19,"id":"81025","lastModified":"1301902064000","name":"Norman Caro","type":"Person","_key":"65334"} +{"label":"Dorothea Alexander","version":19,"id":"81026","lastModified":"1301902064000","name":"Dorothea Alexander","type":"Person","_key":"65335"} +{"label":"Samantha Edmonds","version":19,"id":"81027","lastModified":"1301902238000","name":"Samantha Edmonds","type":"Person","_key":"65336"} +{"label":"Robert Demeger","version":19,"id":"81028","lastModified":"1301902064000","name":"Robert Demeger","type":"Person","_key":"65337"} +{"label":"Jack Deam","version":19,"id":"81029","lastModified":"1301902064000","name":"Jack Deam","type":"Person","_key":"65338"} +{"label":"Peter Pacey","version":19,"id":"81030","lastModified":"1301902064000","name":"Peter Pacey","type":"Person","_key":"65339"} +{"label":"Vilma Hollingbery","version":19,"id":"81031","lastModified":"1301902064000","name":"Vilma Hollingbery","type":"Person","_key":"65340"} +{"label":"Black Christmas","description":"A sorority house is terrorized by a stranger who makes frightening phone calls and then murders the sorority sisters during Christmas break.","id":"16938","runtime":98,"imdbId":"tt0071222","trailer":"http:\/\/www.youtube.com\/watch?v=ysBKrRtBuag","version":287,"lastModified":"1301903402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4d45bcea7b9aa15bb50079e8\/black-christmas-mid.jpg","studio":"Film Funding Ltd. of Canada","genre":"Horror","title":"Black Christmas","releaseDate":150681600000,"language":"en","tagline":"If this movie doesn\u2019t make your skin crawl, it\u2019s on too tight!","type":"Movie","_key":"65341"} +{"label":"Marian Waldman","version":22,"id":"81055","lastModified":"1301902238000","name":"Marian Waldman","type":"Person","_key":"65342"} +{"label":"James Edmond","version":22,"id":"81056","lastModified":"1301902457000","name":"James Edmond","type":"Person","_key":"65343"} +{"label":"Lynne Griffin","version":23,"id":"34917","lastModified":"1301901777000","name":"Lynne Griffin","type":"Person","_key":"65344"} +{"label":"Michael Rapport","version":22,"id":"81057","lastModified":"1301901474000","name":"Michael Rapport","type":"Person","_key":"65345"} +{"label":"Martha Gibson","version":22,"id":"81058","lastModified":"1301902064000","name":"Martha Gibson","type":"Person","_key":"65346"} +{"label":"John Rutter","version":23,"id":"81059","lastModified":"1301902403000","name":"John Rutter","type":"Person","_key":"65347"} +{"label":"Robert Warner","version":22,"id":"81060","lastModified":"1301902064000","name":"Robert Warner","type":"Person","_key":"65348"} +{"label":"Last Holiday","description":"George Bird is a salesman of agricultural machinery who finds out that he hasn't long to live.","id":"16939","runtime":88,"imdbId":"tt0042665","version":65,"lastModified":"1301905210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52d\/4ce9aba87b9aa17c8f00052d\/last-holiday-mid.jpg","genre":"Comedy","title":"Last Holiday","releaseDate":-603849600000,"language":"en","type":"Movie","_key":"65349"} +{"label":"Beatrice Campbell","version":16,"id":"117146","lastModified":"1301902986000","name":"Beatrice Campbell","type":"Person","_key":"65350"} +{"label":"Henry Cass","version":20,"id":"117147","lastModified":"1301902986000","name":"Henry Cass","type":"Person","_key":"65351"} +{"label":"Intermission","description":"A raucous story of the interweaving lives and loves of small-town delinquents, shady cops, pretty good girls and very bad boys. With Irish guts and grit, lives collide, preconceptions shatter and romance is tested to the extreme. An ill-timed and poorly executed couple's break-up sets off a chain of events affecting everyone in town.","id":"16941","runtime":105,"imdbId":"tt0332658","trailer":"http:\/\/www.youtube.com\/watch?v=MplooC8g3R0","version":128,"lastModified":"1301904771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/212\/4bc94de1017a3c57fe022212\/intermission-mid.jpg","studio":"Company of Wolves","genre":"Comedy","title":"Intermission","releaseDate":1062115200000,"language":"en","tagline":"Life is what happens in between.","type":"Movie","_key":"65352"} +{"label":"Um Tiro no Escuro","description":"No overview found.","id":"16956","runtime":105,"imdbId":"tt0457182","trailer":"http:\/\/www.youtube.com\/watch?v=1151","version":53,"lastModified":"1301908540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/220\/4bc94de2017a3c57fe022220\/um-tiro-no-escuro-mid.jpg","studio":"Cine Studio Filmes","genre":"Action","title":"Um Tiro no Escuro","releaseDate":-174268800000,"language":"en","type":"Movie","_key":"65353"} +{"label":"The Asphalt Jungle","description":"Recently paroled from prison, legendary burglar \"Doc\" Riedenschneider, with funding from Alonzo Emmerich, a crooked lawyer, gathers a small group of veteran criminals together in the Midwest for a big jewel heist.","id":"16958","runtime":122,"imdbId":"tt0042208","trailer":"http:\/\/www.youtube.com\/watch?v=uB5pQeYDqn0","version":131,"lastModified":"1301902631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/231\/4bc94de4017a3c57fe022231\/the-asphalt-jungle-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"The Asphalt Jungle","releaseDate":-618883200000,"language":"en","tagline":"The City Under the City","type":"Movie","_key":"65354"} +{"label":"Barry Kelley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7b7\/4be2f474017a3c35b70007b7\/barry-kelley-profile.jpg","version":39,"birthday":"-1936659600000","id":"89834","birthplace":"Chicago, Illinois, USA","lastModified":"1301901127000","name":"Barry Kelley","type":"Person","_key":"65355"} +{"label":"Teresa Celli","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/25c\/4c51b4787b9aa13d4c00025c\/teresa-celli-profile.jpg","version":22,"id":"96139","lastModified":"1301902425000","name":"Teresa Celli","type":"Person","_key":"65356"} +{"label":"William 'Wee Willie' Davis","version":28,"id":"96140","lastModified":"1301902470000","name":"William 'Wee Willie' Davis","type":"Person","_key":"65357"} +{"label":"Dorothy Tree","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/312\/4cb5d9297b9aa138d8000312\/dorothy-tree-profile.jpg","version":28,"id":"96141","lastModified":"1301902515000","name":"Dorothy Tree","type":"Person","_key":"65358"} +{"label":"John Maxwell","version":30,"id":"89658","lastModified":"1301901981000","name":"John Maxwell","type":"Person","_key":"65359"} +{"label":"Barbie Fairytopia Magic of the Rainbow","description":"Elina goes to a fairy school to learn dancing and fairy magic. The spring of the fairy land is soon threatened by evil Laverna who intends to prevent fairies from performing the annual vital rainbow dance. Elina must stop quarreling with her fellow students and unite them to save the first bud of the spring.","id":"16962","runtime":75,"imdbId":"tt1007920","version":116,"lastModified":"1301903967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24e\/4bc94de7017a3c57fe02224e\/barbie-fairytopia-magic-of-the-rainbow-mid.jpg","genre":"Animation","title":"Barbie Fairytopia Magic of the Rainbow","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"65360"} +{"label":"Sharon Alexander","version":17,"id":"90201","lastModified":"1301901178000","name":"Sharon Alexander","type":"Person","_key":"65361"} +{"label":"My Friends Tigger & Pooh Super Sleuth Christmas Movie","description":"Christmas comes tomorrow, and Pooh and his pals can hardly wait! But they might wind up waiting much longer than just one day when Santa's magic toy sack goes missing along with a little lost reindeer. Now it s up to the problem-solving \"Super Sleuths\" to work together and follow the clues to reach the North Pole in time to help Santa deliver his presents.","id":"16963","runtime":44,"imdbId":"tt1284495","version":78,"lastModified":"1301905323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/257\/4bc94dec017a3c57fe022257\/my-friends-tigger-pooh-super-sleuth-christmas-movie-mid.jpg","studio":"Walt Disney Studios Home Entertainment","genre":"Animation","title":"My Friends Tigger & Pooh Super Sleuth Christmas Movie","releaseDate":1195516800000,"language":"en","type":"Movie","_key":"65362"} +{"label":"Travis Oates","version":25,"id":"81082","lastModified":"1301901947000","name":"Travis Oates","type":"Person","_key":"65363"} +{"label":"Max Burkholder","version":23,"id":"81083","lastModified":"1301901947000","name":"Max Burkholder","type":"Person","_key":"65364"} +{"label":"Oliver Dillon","version":21,"id":"81084","lastModified":"1301901858000","name":"Oliver Dillon","type":"Person","_key":"65365"} +{"label":"City Heat","description":"Set in Kansas City in 1933, Eastwood plays a police lieutenant known simply by his last name, Speer. Reynolds plays a former cop turned private eye named Mike Murphy. Both Speer and Murphy served on the force together and were once good friends, but are now bitter enemies. When Murphy's partner is slain they team up again to fight the mob.","id":"16969","runtime":93,"imdbId":"tt0087062","trailer":"http:\/\/www.youtube.com\/watch?v=r21kmhEqVDo","version":143,"lastModified":"1301904303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/276\/4bc94df1017a3c57fe022276\/city-heat-mid.jpg","studio":"The Malpaso Company","genre":"Action","title":"City Heat","releaseDate":471052800000,"language":"en","type":"Movie","_key":"65366"} +{"label":"The Meerkats","description":"A BBC nature documentary that reveals the daily struggles of a clan of meerkats in the Kalahari Desert.","id":"16971","runtime":83,"imdbId":"tt0892391","homepage":"http:\/\/www.bbc.co.uk\/bbcfilms\/comingsoon\/themeerkats.shtml","version":100,"lastModified":"1302078671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28d\/4bc94df4017a3c57fe02228d\/the-meerkats-mid.jpg","genre":"Documentary","title":"The Meerkats","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65367"} +{"label":"James Honeyborne","version":21,"id":"81225","lastModified":"1301902202000","name":"James Honeyborne","type":"Person","_key":"65368"} +{"label":"The Frisco Kid","description":"Rabbi Avram arrives in Philadelphia from Poland en route to San Francisco where he will be a congregation's new rabbi. An innocent and inexperienced traveller, he is tricked by con men to pay for the trip to go west, then they leave him and his belongings scattered along a deserted road. He is befriended by a stranger, Tommy, who is a bank robber and have many adventures during their journey.","id":"16972","runtime":114,"imdbId":"tt0079180","version":93,"lastModified":"1301905055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29b\/4bc94df5017a3c57fe02229b\/the-frisco-kid-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The Frisco Kid","releaseDate":300067200000,"language":"en","type":"Movie","_key":"65369"} +{"label":"Love Object","description":"The twisted tale of Kenneth, socially insecure technical writer who forms an obsessive relationship with \"Nikki\", an anatomically accurate silicone sex doll he orders over the Internet. ","id":"16973","runtime":88,"imdbId":"tt0328077","version":135,"lastModified":"1301905774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07b\/4c390d3c5e73d671d000007b\/love-object-mid.jpg","studio":"Base 12 Productions","genre":"Comedy","title":"Love Object","releaseDate":1049500800000,"language":"en","type":"Movie","_key":"65370"} +{"label":"Robert Parigi","version":21,"id":"81104","lastModified":"1301902352000","name":"Robert Parigi","type":"Person","_key":"65371"} +{"label":"Camille Guaty","version":21,"id":"81106","lastModified":"1301902538000","name":"Camille Guaty","type":"Person","_key":"65372"} +{"label":"9 souls","description":"After discovering a hole in their crowded cell, nine prisoners escape their confinement to track down the key of the universe, which a fellow prisoner known as the Counterfeit King said he had hidden.","id":"16976","runtime":120,"imdbId":"tt0370244","version":84,"lastModified":"1301907164000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a5\/4bc94df7017a3c57fe0222a5\/9-souls-mid.jpg","genre":"Comedy","title":"9 souls","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"65373"} +{"label":"Toshiaki Toyoda","version":32,"id":"81107","lastModified":"1301902143000","name":"Toshiaki Toyoda","type":"Person","_key":"65374"} +{"label":"Yoshio Harada","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/934\/4d2763097b9aa134d3001934\/yoshio-harada-profile.jpg","version":29,"id":"81108","lastModified":"1301901526000","name":"Yoshio Harada","type":"Person","_key":"65375"} +{"label":"Akumul\u00e1tor 1","description":"Jan Sv\u011br\u00e1k v\u00e1s ve fantastick\u00e9, \u017e\u00e1nrov\u011b t\u011b\u017eko definovateln\u00e9 pod\u00edvan\u00e9 zve do sv\u011bta za televizn\u00ed obrazovkou, kde se to hem\u017e\u00ed lidsk\u00fdmi obrazy \u017eij\u00edc\u00edmi z na\u0161\u00ed energie. Nesm\u011bl\u00fd outsider Olda je jednou z ob\u011bt\u00ed. Celkov\u00e1 ztr\u00e1ta energie se ned\u00e1 l\u00e9\u010dit aspirinem, a tak Oldovi pos\u00edlen\u00e9mu energi\u00ed ze strom\u016f a ne\u010dekanou prvn\u00ed l\u00e1skou nezb\u00fdv\u00e1 jin\u00e9 v\u00fdchodisko, ne\u017e tasit ovlada\u010d, zav\u011b\u0161en\u00fd proklat\u011b n\u00edzko u boku. Po vzoru americk\u00fdch Termin\u00e1tor\u016f, Likvid\u00e1tor\u016f a Pred\u00e1tor\u016f se pou\u0161t\u00ed do boje s neporazitelnou televizn\u00ed hyd","id":"16977","runtime":102,"imdbId":"tt0109071","version":83,"lastModified":"1300980378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2aa\/4bc94df7017a3c57fe0222aa\/akumulator-1-mid.jpg","studio":"Heureka PF","genre":"Comedy","title":"Akumul\u00e1tor 1","releaseDate":757382400000,"language":"en","type":"Movie","_key":"65376"} +{"label":"Tereza Pergnerov\u00e1","version":17,"id":"138550","lastModified":"1301903080000","name":"Tereza Pergnerov\u00e1","type":"Person","_key":"65377"} +{"label":"Ji\u0159\u00ed Kodet","version":18,"id":"138551","lastModified":"1301902030000","name":"Ji\u0159\u00ed Kodet","type":"Person","_key":"65378"} +{"label":"Fars Bedste B\u00f8rn","description":"No overview found.","id":"16978","runtime":0,"version":85,"lastModified":"1301908579000","title":"Fars Bedste B\u00f8rn","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65379"} +{"label":"The Last Days of Disco","description":"The Last Days of Disco loosely depicts the \"last days\" at a disco palace, where drugs, sex and weirdness ran rampant. The story centers around a group of friends who frequent the disco and each other. All the characters are searching for something to make their lives more fulfilling. Some are searching for everlasting love and some are just wanting something different. ","id":"16980","runtime":113,"imdbId":"tt0120728","version":146,"lastModified":"1301902757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b3\/4bc94df8017a3c57fe0222b3\/the-last-days-of-disco-mid.jpg","studio":"Castle Rock Entertainment","genre":"Comedy","title":"The Last Days of Disco","releaseDate":896400000000,"language":"en","type":"Movie","_key":"65380"} +{"label":"Spotswood","description":"Wallace is an efficiency expert, managing the high-profile downsizing of a major auto parts factory. But when he is hired to evaluate a small moccasin factory which seems from another era, Wallace has to reconsider the rapid modernization he advocates, as he is confronted by the human faces such plans hurt.","id":"16982","runtime":95,"imdbId":"tt0102969","version":89,"lastModified":"1301908393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c1\/4bc94df9017a3c57fe0222c1\/spotswood-mid.jpg","title":"Spotswood","releaseDate":718588800000,"language":"en","type":"Movie","_key":"65381"} +{"label":"Ben Mendelsohn","version":15,"id":"147125","lastModified":"1301903093000","name":"Ben Mendelsohn","type":"Person","_key":"65382"} +{"label":"Alwyn Kurts","version":15,"id":"147126","lastModified":"1301903093000","name":"Alwyn Kurts","type":"Person","_key":"65383"} +{"label":"Bruno Lawrence","version":15,"id":"147127","lastModified":"1301903089000","name":"Bruno Lawrence","type":"Person","_key":"65384"} +{"label":"John Walton","version":15,"id":"147128","lastModified":"1301903093000","name":"John Walton","type":"Person","_key":"65385"} +{"label":"Rebecca Rigg","version":15,"id":"147129","lastModified":"1301903086000","name":"Rebecca Rigg","type":"Person","_key":"65386"} +{"label":"Dan Wyllie","version":15,"id":"147133","lastModified":"1301903086000","name":"Dan Wyllie","type":"Person","_key":"65387"} +{"label":"John Flaus","version":15,"id":"147134","lastModified":"1301903086000","name":"John Flaus","type":"Person","_key":"65388"} +{"label":"Gary Adams","version":15,"id":"147137","lastModified":"1301903091000","name":"Gary Adams","type":"Person","_key":"65389"} +{"label":"Jeff Truman","version":15,"id":"147138","lastModified":"1301903091000","name":"Jeff Truman","type":"Person","_key":"65390"} +{"label":"Toni Lamond","version":15,"id":"147139","lastModified":"1301903086000","name":"Toni Lamond","type":"Person","_key":"65391"} +{"label":"Clarkson: Supercar Showdown","description":"Jeremy Clarkson compares a series of supercars such as the Ferrari F430 and Lamborghini Gallardo at a racetrace in Spain.","id":"16983","runtime":77,"imdbId":"tt1140858","version":40,"lastModified":"1301905698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ca\/4bc94df9017a3c57fe0222ca\/clarkson-supercar-showdown-mid.jpg","genre":"Documentary","title":"Clarkson: Supercar Showdown","releaseDate":1194220800000,"language":"en","type":"Movie","_key":"65392"} +{"label":"Sabine Schmitz","version":22,"id":"81114","lastModified":"1301902143000","name":"Sabine Schmitz","type":"Person","_key":"65393"} +{"label":"The Stig","version":27,"id":"81115","lastModified":"1301901947000","name":"The Stig","type":"Person","_key":"65394"} +{"label":"Brian Klein","version":33,"id":"84633","lastModified":"1301902678000","name":"Brian Klein","type":"Person","_key":"65395"} +{"label":"Clarkson: The Good The Bad The Ugly","description":"This year Jezza takes the cream of Europes super-cars to the USA to pit them against America's finest...","id":"16984","runtime":80,"imdbId":"tt0940677","version":108,"lastModified":"1301419075000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4bc94dfd017a3c57fe0222d7\/clarkson-the-good-the-bad-the-ugly-mid.jpg","genre":"Documentary","title":"Clarkson: The Good The Bad The Ugly","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"65396"} +{"label":"Legally Blondes","description":"Moving from England to California, the youngest cousins of Elle Woods must defend themselves when their schools reigning forces turn on the girls and try to frame them for a crime.","id":"16985","runtime":88,"imdbId":"tt1015999","version":198,"lastModified":"1302076907000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc94dfd017a3c57fe0222e5\/legally-blondes-mid.jpg","genre":"Comedy","title":"Legally Blondes","releaseDate":1240876800000,"language":"en","type":"Movie","_key":"65397"} +{"label":"Milly Rosso","version":16,"id":"134247","lastModified":"1301902214000","name":"Milly Rosso","type":"Person","_key":"65398"} +{"label":"Becky Rosso","version":16,"id":"134248","lastModified":"1301902214000","name":"Becky Rosso","type":"Person","_key":"65399"} +{"label":"Brittany Curran","version":28,"id":"88072","lastModified":"1301902124000","name":"Brittany Curran","type":"Person","_key":"65400"} +{"label":"The Obama Deception","description":"Who Obama works for, what lies he has told, and his real agenda. If you want to know the facts and cut through all the hype, this is the film for you. \n","id":"16986","runtime":111,"imdbId":"tt1558865","version":91,"lastModified":"1301941869000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ee\/4bc94dfe017a3c57fe0222ee\/the-obama-deception-mid.jpg","studio":"Alex Jones Productions","genre":"Documentary","title":"The Obama Deception","releaseDate":1237075200000,"language":"en","type":"Movie","_key":"65401"} +{"label":"Barack Obama","version":20,"id":"102786","lastModified":"1301903050000","name":"Barack Obama","type":"Person","_key":"65402"} +{"label":"Webster Tarpley","version":17,"id":"102788","lastModified":"1301903033000","name":"Webster Tarpley","type":"Person","_key":"65403"} +{"label":"Daniel Estulin","version":17,"id":"102789","lastModified":"1301903033000","name":"Daniel Estulin","type":"Person","_key":"65404"} +{"label":"KRS-One","version":17,"id":"102792","lastModified":"1301903027000","name":"KRS-One","type":"Person","_key":"65405"} +{"label":"Kaho Naa... Pyaar Hai","description":"No overview found.","id":"16987","runtime":0,"imdbId":"tt0234000","version":71,"lastModified":"1301907090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/300\/4bc94dff017a3c57fe022300\/kaho-naa-pyaar-hai-mid.jpg","genre":"Drama","title":"Kaho Naa... Pyaar Hai","releaseDate":947808000000,"language":"en","type":"Movie","_key":"65406"} +{"label":"Mohnish Bahl","version":25,"id":"85683","lastModified":"1301901808000","name":"Mohnish Bahl","type":"Person","_key":"65407"} +{"label":"Ashish Vidyarthi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9e2\/4d28eecf5e73d626bc0029e2\/ashish-vidyarthi-profile.jpg","version":22,"id":"85684","lastModified":"1301902164000","name":"Ashish Vidyarthi","type":"Person","_key":"65408"} +{"label":"Tanaaz Currim Irani","version":22,"id":"85686","lastModified":"1301902542000","name":"Tanaaz Currim Irani","type":"Person","_key":"65409"} +{"label":"How She Move","description":"After the death of Raya Green's(Rutina Wesley) sister, she gets out from her classes at school, and sees a stomp crew practicing. She meets Bishop(Dwain Murphy) which is the dance crew leader. She then meets Michelle and does a stomp battle with her. They become enemies then friends later on. Her uptight mom pushes her to pass the test to get into Medical school, but she thinks she failed....","id":"16988","runtime":94,"imdbId":"tt0770810","version":222,"lastModified":"1301906260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/309\/4bc94e00017a3c57fe022309\/how-she-move-mid.jpg","genre":"Drama","title":"How She Move","releaseDate":1207785600000,"language":"en","type":"Movie","_key":"65410"} +{"label":"Lifting del Corazon","description":"Antonio, un prestigioso cirujano pl\u00e1stico espa\u00f1ol, casado y con dos hijos, viaja a un congreso en Buenos Aires con una asistente personal mucho m\u00e1s joven. All\u00ed, los dos se sienten atra\u00eddos mutuamente y, luego de perder el avi\u00f3n de vuelta, se entregan a la pasi\u00f3n. Una vez vuelto a su pa\u00eds, debe decidir entre su esposa y su amante.","id":"16989","runtime":90,"imdbId":"tt0459883","version":49,"lastModified":"1300980379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30e\/4bc94e00017a3c57fe02230e\/lifting-del-corazon-mid.jpg","genre":"Comedy","title":"Lifting del Corazon","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65411"} +{"label":"Eliseo Subiela","version":25,"id":"81116","lastModified":"1301902420000","name":"Eliseo Subiela","type":"Person","_key":"65412"} +{"label":"Escaflowne: The Movie","description":"High school student Hitomi Kanzaki, depressed and despondent, wishes to disappear from her world. Magically, Hitomi is suddenly transported to Gaea and is bestowed with the power to decide its ultimate fate. A grim retelling of the television series \"The Vision of Escaflowne\".","id":"16990","runtime":98,"imdbId":"tt0270933","trailer":"http:\/\/www.youtube.com\/watch?v=eBhEn93jdM8","homepage":"http:\/\/www.b-ch.com\/cgi-bin\/contents\/ttl\/det.cgi?ttl_c=238","version":118,"lastModified":"1302075459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4c8f40e77b9aa176860000a5\/escaflowne-mid.jpg","studio":"Bandai Visual Company (JAPAN)","genre":"Action","title":"Escaflowne: The Movie","releaseDate":1011916800000,"language":"en","tagline":"One will wake it. One will destroy it.","type":"Movie","_key":"65413"} +{"label":"Kazuki Akane","version":17,"id":"90695","lastModified":"1301902477000","name":"Kazuki Akane","type":"Person","_key":"65414"} +{"label":"Yoshiyuki Takei","version":17,"id":"90696","lastModified":"1301902918000","name":"Yoshiyuki Takei","type":"Person","_key":"65415"} +{"label":"Tomokazu Seki","version":19,"id":"90567","lastModified":"1301902317000","name":"Tomokazu Seki","type":"Person","_key":"65416"} +{"label":"Minami Takayama","version":42,"id":"68470","lastModified":"1301901566000","name":"Minami Takayama","type":"Person","_key":"65417"} +{"label":"K\u00f4ji Tsujitani","version":20,"id":"121711","lastModified":"1301902477000","name":"K\u00f4ji Tsujitani","type":"Person","_key":"65418"} +{"label":"Shinichir\u00f4 Miki","version":29,"id":"62318","lastModified":"1301901983000","name":"Shinichir\u00f4 Miki","type":"Person","_key":"65419"} +{"label":"Yoshiko Kamei","version":20,"id":"121712","lastModified":"1301902477000","name":"Yoshiko Kamei","type":"Person","_key":"65420"} +{"label":"Sylvia Zaradic","version":20,"id":"121713","lastModified":"1301902647000","name":"Sylvia Zaradic","type":"Person","_key":"65421"} +{"label":"Jocelyne Loewen","version":23,"id":"121714","lastModified":"1301902706000","name":"Jocelyne Loewen","type":"Person","_key":"65422"} +{"label":"Brian Dobson","version":25,"id":"89547","lastModified":"1301902646000","name":"Brian Dobson","type":"Person","_key":"65423"} +{"label":"Ward Perry","version":21,"id":"89561","lastModified":"1301902646000","name":"Ward Perry","type":"Person","_key":"65424"} +{"label":"J\u00f4ji Nakata","version":31,"id":"23987","lastModified":"1301901712000","name":"J\u00f4ji Nakata","type":"Person","_key":"65425"} +{"label":"Observe and Report","description":"Bi-polar mall security guard Ronnie Barnhardt is called into action to stop a flasher from turning shopper's paradise into his personal peep show. But when Barnhardt can't bring the culprit to justice, a surly police detective, is recruited to close the case.","id":"16991","runtime":86,"imdbId":"tt1197628","trailer":"http:\/\/www.youtube.com\/watch?v=1112","homepage":"http:\/\/observe-and-report.warnerbros.com\/","version":488,"lastModified":"1302138810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21f\/4c578bd15e73d63a7100021f\/observe-and-report-mid.jpg","studio":"De Line Pictures","genre":"Action","title":"Observe and Report","releaseDate":1239321600000,"language":"en","type":"Movie","_key":"65426"} +{"label":"Collette Wolfe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/54a\/4ce3fef87b9aa168b000054a\/collette-wolfe-profile.jpg","version":32,"id":"86624","lastModified":"1301901424000","name":"Collette Wolfe","type":"Person","_key":"65427"} +{"label":"Aziz Ansari","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/531\/4ce3ff507b9aa168b3000531\/aziz-ansari-profile.jpg","version":25,"id":"86626","lastModified":"1301902208000","name":"Aziz Ansari","type":"Person","_key":"65428"} +{"label":"The Boxer","description":"Danny Flynn, a promising Irish boxer who was imprisoned for 14 years at age 18 for associating with the IRA, returns to his Belfast neighborhood just as IRA leader Joe Hamill is trying to negotiate peace with the British. Despite wanting to return to boxing and stay out of trouble, Danny is drawn back into turmoil when he reunites with old girlfriend Maggie, who's married to an imprisoned IRA man.","id":"16992","runtime":114,"imdbId":"tt0118760","version":156,"lastModified":"1301904488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/344\/4bc94e08017a3c57fe022344\/the-boxer-mid.jpg","genre":"Drama","title":"The Boxer","releaseDate":883526400000,"language":"en","type":"Movie","_key":"65429"} +{"label":"Fat City","description":"FAT CITY is a classic story of the American underdog, brilliantly and unflinchingly portraying the lives of a group of born losers. Stacy Keach is Tully, a down-on-his-luck alcoholic boxer living in a flophouse and earning money as a field worker while trying for a comeback. Jeff Bridges is Ernie, his 18-year-old protege who is setting himself up for the same hard-luck life.","id":"16993","runtime":100,"imdbId":"tt0068575","version":114,"lastModified":"1301903034000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34d\/4bc94e08017a3c57fe02234d\/fat-city-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"Fat City","releaseDate":80956800000,"language":"en","type":"Movie","_key":"65430"} +{"label":"Les grandes personnes","description":"Chaque \u00e9t\u00e9 pour l'anniversaire de sa fille Jeanne, Albert l'emm\u00e8ne visiter un nouveau pays d'Europe. Pour ses dix sept ans, il choisit une petite \u00eele su\u00e9doise, convaincu d'y trouver le tr\u00e9sor perdu d'un Viking l\u00e9gendaire. Mais voil\u00e0 que la maison lou\u00e9e pour leur s\u00e9jour est d\u00e9j\u00e0 occup\u00e9e par deux femmes : Annika, la propri\u00e9taire des lieux et Christine, une amie fran\u00e7aise. Les vacances soigneusement organis\u00e9es par Albert vont alors prendre un tout autre tournant, ce qui est loin de d\u00e9plaire \u00e0 Jeann","id":"16994","runtime":84,"imdbId":"tt1087851","version":87,"lastModified":"1301851513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35e\/4bc94e0a017a3c57fe02235e\/les-grandes-personnes-mid.jpg","title":"Les grandes personnes","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65431"} +{"label":"Ana\u00efs Demoustier","version":17,"id":"136756","lastModified":"1301903043000","name":"Ana\u00efs Demoustier","type":"Person","_key":"65432"} +{"label":"Judith Henry","version":17,"id":"136757","lastModified":"1301903013000","name":"Judith Henry","type":"Person","_key":"65433"} +{"label":"Lia Boysen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b9\/4d2a2f875e73d626bc0039b9\/lia-boysen-profile.jpg","version":19,"id":"136758","lastModified":"1301901857000","name":"Lia Boysen","type":"Person","_key":"65434"} +{"label":"State of Play","description":"Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant\/mistress is brutally murdered and buried secrets come tumbling out.","id":"16995","runtime":127,"imdbId":"tt0473705","trailer":"http:\/\/www.youtube.com\/watch?v=0xEqK8mJQhE","homepage":"http:\/\/www.stateofplaymovie.net\/","version":249,"lastModified":"1302077283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc94e0d017a3c57fe022377\/state-of-play-mid.jpg","studio":"Andell Entertainment","genre":"Crime","title":"State of Play","releaseDate":1239926400000,"language":"en","type":"Movie","_key":"65435"} +{"label":"Michael Berresse","version":25,"id":"81867","lastModified":"1302077283000","name":"Michael Berresse","type":"Person","_key":"65436"} +{"label":"Sarah Lord","version":25,"id":"81868","lastModified":"1302077283000","name":"Sarah Lord","type":"Person","_key":"65437"} +{"label":"17 Again","description":"On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.","id":"16996","runtime":102,"imdbId":"tt0974661","trailer":"http:\/\/www.youtube.com\/watch?v=iKr8QhDmsPU","homepage":"http:\/\/www.17againmovie.com\/","version":281,"lastModified":"1302121184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/399\/4bc94e13017a3c57fe022399\/17-again-mid.jpg","studio":"Offspring Entertainment","genre":"Comedy","title":"17 Again","releaseDate":1239926400000,"language":"en","tagline":"Who says you're only young once?","type":"Movie","_key":"65438"} +{"label":"Sterling Knight","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/db7\/4d06d9685e73d621a4003db7\/sterling-knight-profile.jpg","biography":"Sterling Sandmann Knight enjoys playing the guitar, golfing and snowboarding. He \nbegan acting at the age of 10, and appeared in productions such as \"On Golden \nPond,\" \"Lost in Yonkers,\" \"Bye Bye Birdie\" and \"Mad Adventures of Mr. Toad.\" His \nbreakout role was in the movie 17 Again, where he played Zac Efron\/Matthew \nPerry's son, Alex. He currently stars as pretentious teen heartthrob Chad Dylan \nCooper on the popular Disney Channel Television series \"Sonny With a Chance\". He \nalso recently star","version":32,"birthday":"605055600000","id":"87741","birthplace":"Houston, Texas, USA","lastModified":"1301901118000","name":"Sterling Knight","type":"Person","_key":"65439"} +{"label":"The Man Who Came Back","description":"Framed for murder and left for dead, a local legend comes back to make the guilty pay as he seeks revenge on those who killed his family, in this traditional Western about one man who stood against injustice.","id":"16997","runtime":122,"imdbId":"tt1013651","version":150,"lastModified":"1301906678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4cb4bf935e73d67784000035\/the-man-who-came-back-mid.jpg","genre":"Action","title":"The Man Who Came Back","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65440"} +{"label":"James Patrick Stuart","version":27,"id":"105641","lastModified":"1301902143000","name":"James Patrick Stuart","type":"Person","_key":"65441"} +{"label":"Glen Pitre","version":17,"id":"107181","lastModified":"1301902909000","name":"Glen Pitre","type":"Person","_key":"65442"} +{"label":"La moustache","description":"One day, on a whim, Marc decides to shave off the mustache he's worn all of his adult life. He waits patiently for his wife's reaction, but neither she nor his friends seem to notice. Stranger still, when he finally tells them, they all insist he never had a mustache. Is Marc going mad? Is he the victim of some elaborate conspiracy? Or has something in the world's order gone terribly awry? ","id":"16998","runtime":87,"imdbId":"tt0428856","version":149,"lastModified":"1301906244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ac\/4bc94e14017a3c57fe0223ac\/la-moustache-mid.jpg","studio":"Les Films des Tournelles","genre":"Drama","title":"La moustache","releaseDate":1116115200000,"language":"en","type":"Movie","_key":"65443"} +{"label":"Emmanuel Carr\u00e8re","version":25,"id":"81118","lastModified":"1301902064000","name":"Emmanuel Carr\u00e8re","type":"Person","_key":"65444"} +{"label":"Cylia Malki","version":25,"id":"81120","lastModified":"1301902064000","name":"Cylia Malki","type":"Person","_key":"65445"} +{"label":"Macha Polikarpova","version":21,"id":"81121","lastModified":"1301902524000","name":"Macha Polikarpova","type":"Person","_key":"65446"} +{"label":"Fantine Camus","version":20,"id":"81122","lastModified":"1301902457000","name":"Fantine Camus","type":"Person","_key":"65447"} +{"label":"Fr\u00e9d\u00e9ric Imberty","version":20,"id":"81123","lastModified":"1301902457000","name":"Fr\u00e9d\u00e9ric Imberty","type":"Person","_key":"65448"} +{"label":"Brigitte B\u00e9mol","version":20,"id":"81124","lastModified":"1301902457000","name":"Brigitte B\u00e9mol","type":"Person","_key":"65449"} +{"label":"Franck Richard","version":24,"id":"81126","lastModified":"1301902543000","name":"Franck Richard","type":"Person","_key":"65450"} +{"label":"Elizabeth Marre","version":20,"id":"81127","lastModified":"1301902457000","name":"Elizabeth Marre","type":"Person","_key":"65451"} +{"label":"Teresa Li","version":20,"id":"81128","lastModified":"1301902238000","name":"Teresa Li","type":"Person","_key":"65452"} +{"label":"Fire & Ice","description":"Princess Luisa and knight Gabriel must face a dragon to save their kingdom.","id":"16999","runtime":126,"imdbId":"tt1135493","version":166,"lastModified":"1301903650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b5\/4bc94e15017a3c57fe0223b5\/fire-ice-mid.jpg","studio":"Media Pro Pictures","genre":"Fantasy","title":"Fire & Ice","releaseDate":1221696000000,"language":"en","type":"Movie","_key":"65453"} +{"label":"Amy Acker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4af\/4ce1c8cd5e73d60f6e0004af\/amy-acker-profile.jpg","biography":"<p>Born and raised in Dallas, Texas, where she graduated Lake Highlands \nHigh School, Amy Acker is the oldest of four children, three daughters \nand one son, of Robert Acker, a lawyer, and Sandra Bruyere, a housewife,\n and the cousin of Joel Jeffrey Acker. An acting major at Southern \nMethodist University, Amy acted in several college theater productions. \nShe appeared in various roles during the fantasy segments for the \npopular <a href=\"http:\/\/www.imdb.com\/search\/name?bio=award\">award<\/a>-winn","version":26,"birthday":"218588400000","id":"81133","birthplace":"Dallas, Texas, USA","lastModified":"1301901687000","name":"Amy Acker","type":"Person","_key":"65454"} +{"label":"Oana Pellea","version":22,"id":"81134","lastModified":"1301901534000","name":"Oana Pellea","type":"Person","_key":"65455"} +{"label":"Cabral Ibacka","version":21,"id":"81135","lastModified":"1301901863000","name":"Cabral Ibacka","type":"Person","_key":"65456"} +{"label":"Ovidiu Niculescu","version":22,"id":"81136","lastModified":"1301901774000","name":"Ovidiu Niculescu","type":"Person","_key":"65457"} +{"label":"Loredana Groza","version":22,"id":"81137","lastModified":"1301902360000","name":"Loredana Groza","type":"Person","_key":"65458"} +{"label":"Coldplay Live 2003","description":"Features Coldplay in a 90 minute live DVD shoot taken from their performances at the Horden Pavilion in Sydney, Australia, in July 21st and 22nd, 2003. Tracks include the hits \"Politik\", \"Yellow\", \"Trouble\", \"Clocks\" and many more. Also features 2 previously unreleased live tracks: \"The One I Love\" and \"Moses\".","id":"17000","runtime":90,"imdbId":"tt0391872","version":347,"lastModified":"1301903076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17e\/4c4a2d037b9aa115fc00017e\/coldplay-live-2003-mid.jpg","studio":"EMI","genre":"Music","title":"Coldplay Live 2003","releaseDate":1067904000000,"language":"en","type":"Movie","_key":"65459"} +{"label":"Guy Berryman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c4afcb65e73d62a3f000001\/guy-berryman-profile.jpg","biography":"Guy Rupert Berryman (12 April 1978, in Kirkcaldy, Scotland) is a Scottish multi-instrumentalist best known as the bassist for the group Coldplay.","version":21,"birthday":"261183600000","id":"81130","birthplace":"Kirkcaldy, Scotland","lastModified":"1301902109000","name":"Guy Berryman","type":"Person","_key":"65460"} +{"label":"Jon Buckland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c4afb765e73d62a3e000001\/jonny-buckland-profile.jpg","biography":"Jonathan Mark Buckland (born 11 September 1977), known as Jonny Buckland, is an English guitarist and musician, best known as the lead guitarist of the band Coldplay.","version":23,"birthday":"242780400000","id":"81131","birthplace":"Islington, London, England","lastModified":"1301901900000","name":"Jon Buckland","type":"Person","_key":"65461"} +{"label":"Will Champion","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4c4afd4b5e73d62a42000001\/will-champion-profile.jpg","biography":"William \"Will\" Champion (born 31 July 1978) is an English multi-instrumentalist and the drummer of rock band Coldplay.","version":21,"birthday":"270687600000","id":"81132","birthplace":"Southampton, Hampshire, England","lastModified":"1301901900000","name":"Will Champion","type":"Person","_key":"65462"} +{"label":"Chris Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d8\/4c4af9c45e73d627110001d8\/chris-martin-profile.jpg","biography":"Christopher Anthony John \"Chris\" Martin (born on 2 March 1977) is an English singer-songwriter and instrumentalist, best known as the lead vocalist of the band Coldplay. He is married to American actress Gwyneth Paltrow, with whom he has two children.","version":24,"birthday":"226105200000","id":"81129","birthplace":"Exeter, Devon, England","lastModified":"1301902109000","name":"Chris Martin","type":"Person","_key":"65463"} +{"label":"Any Way the Wind Blows","description":"Antwerp, at the beginning of June. On a sunny Friday, eight people dream of having a different life. There's wind and music, police and paranoia, gossip and fighting. There's an old virus, an astrayed frisbee, a dead horse, and a mysterious person called Windman. In the evening there's a party \u2026","id":"17001","runtime":127,"imdbId":"tt0331175","homepage":"http:\/\/www.anywaythewindblows.com\/","version":79,"lastModified":"1302071689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e40\/4be81c54017a3c35bb000e40\/any-way-the-wind-blows-mid.jpg","studio":"Corridor","genre":"Drama","title":"Any Way the Wind Blows","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"65465"} +{"label":"Tom Barman","version":19,"id":"81140","lastModified":"1301902325000","name":"Tom Barman","type":"Person","_key":"65466"} +{"label":"Frank Vercruyssen","version":19,"id":"81141","lastModified":"1301902143000","name":"Frank Vercruyssen","type":"Person","_key":"65467"} +{"label":"Diane De Belder","version":19,"id":"85799","lastModified":"1301902676000","name":"Diane De Belder","type":"Person","_key":"65468"} +{"label":"Eric Kloeck","version":19,"id":"85800","lastModified":"1301902676000","name":"Eric Kloeck","type":"Person","_key":"65469"} +{"label":"Natali Broods","version":19,"id":"85802","lastModified":"1301902676000","name":"Natali Broods","type":"Person","_key":"65470"} +{"label":"Leur morale... et la n\u00f4tre","description":"On peut \u00eatre un couple de bons Fran\u00e7ais, toujours amoureux, parents mod\u00e8les, travailleurs et \u00e9conomes jusqu'\u00e0 la manie et \u00e9couler au noir dans le sous-sol de sa villa de B\u00e9ziers hyper s\u00e9curis\u00e9e, des godasses de son ancien magasin et des produits \" satisfaits ou rembours\u00e9s \" qu'on d\u00e9tourne dans tous les supermarch\u00e9s de la r\u00e9gion.A chacun sa morale !","id":"17002","runtime":100,"imdbId":"tt1064964","version":65,"lastModified":"1301905622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d3\/4bc94e1c017a3c57fe0223d3\/leur-morale-et-la-notre-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Leur morale... et la n\u00f4tre","releaseDate":1219795200000,"language":"en","type":"Movie","_key":"65471"} +{"label":"Florence Quentin","version":27,"id":"35904","lastModified":"1301901568000","name":"Florence Quentin","type":"Person","_key":"65472"} +{"label":"Micha Lescot","version":20,"id":"81144","lastModified":"1301902238000","name":"Micha Lescot","type":"Person","_key":"65473"} +{"label":"Rapha\u00ebl Mezrahi","version":19,"id":"81146","lastModified":"1301902238000","name":"Rapha\u00ebl Mezrahi","type":"Person","_key":"65474"} +{"label":"Sugar","description":"Dominican baseball star Miguel \"Sugar\" Santos is recruited to play in the U.S. minor-leagues.","id":"17003","runtime":120,"imdbId":"tt0990413","homepage":"http:\/\/www.sonyclassics.com\/sugar","version":142,"lastModified":"1301905364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dc\/4bc94e1d017a3c57fe0223dc\/sugar-mid.jpg","genre":"Drama","title":"Sugar","releaseDate":1238716800000,"language":"en","type":"Movie","_key":"65475"} +{"label":"Anna Boden","version":33,"id":"53069","lastModified":"1301901493000","name":"Anna Boden","type":"Person","_key":"65476"} +{"label":"Algenis Perez Soto","version":20,"id":"86381","lastModified":"1301902530000","name":"Algenis Perez Soto","type":"Person","_key":"65477"} +{"label":"Ba'al","description":"A world-renowned archaeologist must reawaken the storm god Ba'al by collecting four ancient amulets scattered around the world. As each amulet is uncovered, Ba'al's fury threatens to destroy everything in its path with the most powerful storm mankind has ever seen.","id":"17004","runtime":0,"imdbId":"tt1122761","trailer":"http:\/\/www.youtube.com\/watch?v=1115","version":91,"lastModified":"1301905184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e1\/4bc94e1d017a3c57fe0223e1\/ba-al-mid.jpg","genre":"Drama","title":"Ba'al","releaseDate":1221264000000,"language":"en","type":"Movie","_key":"65478"} +{"label":"Derek Anderson","version":20,"id":"81142","lastModified":"1301902177000","name":"Derek Anderson","type":"Person","_key":"65479"} +{"label":"Stephanie von Pfetten","version":17,"id":"133127","lastModified":"1301902546000","name":"Stephanie von Pfetten","type":"Person","_key":"65480"} +{"label":"Bitten","description":"A lovelorn paramedic rescues a woman left for dead after a deadly assault. When she refuses to go to the hospital, he takes her in, nurses her back to health and soon falls in love with her. Before long the mysterious woman suffers withdrawal symptoms, leaving the paramedic to believe his newfound love is a drug addict. Coming home to find a blood-drained corpse on his floor, he learns she does indeed have an addiction problem but it's not to drugs...","id":"17005","runtime":89,"imdbId":"tt1249294","version":151,"lastModified":"1302070449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4bc94e1e017a3c57fe0223ea\/bitten-mid.jpg","studio":"Once Bitten Films","genre":"Comedy","title":"Bitten","releaseDate":1214697600000,"language":"en","tagline":"Relationships can be draining.","type":"Movie","_key":"65481"} +{"label":"Erica Cox","version":22,"id":"109679","lastModified":"1301902532000","name":"Erica Cox","type":"Person","_key":"65482"} +{"label":"Richard Fitzpatrick","version":40,"id":"44103","lastModified":"1301901238000","name":"Richard Fitzpatrick","type":"Person","_key":"65483"} +{"label":"I'm Gonna Git You Sucka","description":"Jack Spade returns from the army in his old ghetto neighbourhood when his brother, June Bug, dies. Jack declares war on Mr. Big, powerful local crimelord. His army is led by John Slade, his childhood idol who used to fight bad guys in the 70s.","id":"17006","runtime":88,"imdbId":"tt0095348","version":165,"lastModified":"1302039540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/150\/4d1043d07b9aa1147c000150\/i-m-gonna-git-you-sucka-mid.jpg","genre":"Action","title":"I'm Gonna Git You Sucka","releaseDate":598060800000,"language":"en","type":"Movie","_key":"65484"} +{"label":"Call Me Claus (TV)","description":"If She's Going To Save Christmas, She's Got Some Big Shoes To Fill.","id":"17007","runtime":90,"imdbId":"tt0272018","trailer":"http:\/\/www.youtube.com\/watch?v=1117","version":129,"lastModified":"1301936775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f8\/4bc94e1f017a3c57fe0223f8\/call-me-claus-tv-mid.jpg","genre":"Comedy","title":"Call Me Claus (TV)","releaseDate":1007251200000,"language":"en","type":"Movie","_key":"65485"} +{"label":"Die Geschichte vom Brandner Kaspar","description":"No overview found.","id":"17008","runtime":105,"imdbId":"tt1148770","homepage":"http:\/\/www.brandnerkaspar-derfilm.de\/","version":55,"lastModified":"1301908529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/401\/4bc94e1f017a3c57fe022401\/die-geschichte-vom-brandner-kaspar-mid.jpg","studio":"Clasart Film","genre":"Comedy","title":"Die Geschichte vom Brandner Kaspar","releaseDate":1224115200000,"language":"en","type":"Movie","_key":"65486"} +{"label":"Franz-Xaver Kroetz","version":20,"id":"81145","lastModified":"1301901994000","name":"Franz-Xaver Kroetz","type":"Person","_key":"65487"} +{"label":"Jetsons: The Movie","description":"George Jetson is forced to uproot his family when Mr. Spacely promotes him to take charge of a new factory on a distant planet.","id":"17009","runtime":82,"imdbId":"tt0099878","version":183,"lastModified":"1301903234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40a\/4bc94e20017a3c57fe02240a\/jetsons-the-movie-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Animation","title":"Jetsons: The Movie","releaseDate":644630400000,"language":"en","type":"Movie","_key":"65488"} +{"label":"Joseph Barbera","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3c1\/4d20af625e73d66b270023c1\/joseph-barbera-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>Joseph Roland \"Joe\" Barbera<\/b> was an influential American <a href=\"http:\/\/en.wikipedia.org\/wiki\/Animator\" title=\"Animator\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; \">animator<\/a>, ","version":113,"birthday":"-1854838800000","id":"13594","birthplace":"New York City, New York, USA","lastModified":"1301901276000","name":"Joseph Barbera","type":"Person","_key":"65489"} +{"label":"William Hanna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ac\/4d20ae745e73d66b270023ac\/william-hanna-profile.jpg","biography":"<span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \"><b>William Denby<\/b> \"<b>Bill<\/b>\" <b>Hanna<\/b> (July 14, 1910 \u2013 March 22, 2001) was an American <a href=\"http:\/\/en.wikipedia.org\/wiki\/Animator\" title=\"Animator\" style=\"text-decoration: none; color: rgb(6, 69, 173); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; backgrou","version":84,"id":"13620","lastModified":"1301901333000","name":"William Hanna","type":"Person","_key":"65490"} +{"label":"Tiffany","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e2\/4d9ba8c45e73d64a8f0000e2\/tiffany-profile.jpg","version":17,"id":"148120","lastModified":"1302039716000","name":"Tiffany","type":"Person","_key":"65491"} +{"label":"Patric Zimmerman","version":15,"id":"148121","lastModified":"1301902991000","name":"Patric Zimmerman","type":"Person","_key":"65492"} +{"label":"Jean Vander Pyl","version":18,"id":"140828","lastModified":"1301902207000","name":"Jean Vander Pyl","type":"Person","_key":"65493"} +{"label":"Hip Hip Hora!","description":"A teenager's reputation is destroyed when she falls asleep drunk at a party and some boys take provocative photos of her.","id":"17010","runtime":90,"imdbId":"tt0385751","version":116,"lastModified":"1301908136000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/413\/4bc94e20017a3c57fe022413\/hip-hip-hora-mid.jpg","title":"Hip Hip Hora!","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"65494"} +{"label":"Mini Punjab","description":"The Film Pans not just through the various shades of an emotional drama, but all the spicy sprinklings of Love, Hate, Comedy, Action and Tragedy. The sparkle of Love at Mini Punjab has dimmed by the shadows of social evils, be it racial discrimination, hatred, revenge or jealousy. And the ditch between hearts of the people here seems to be only widening.....","id":"17011","runtime":128,"imdbId":"tt1510275","homepage":"http:\/\/www.minipunjabthemovie.com\/","version":40,"lastModified":"1301417682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/434\/4bc94e25017a3c57fe022434\/mini-punjab-mid.jpg","title":"Mini Punjab","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65495"} +{"label":"Gurdas Mann","version":22,"id":"81151","lastModified":"1301901583000","name":"Gurdas Mann","type":"Person","_key":"65496"} +{"label":"Jividha Astha","version":19,"id":"81153","lastModified":"1301902322000","name":"Jividha Astha","type":"Person","_key":"65497"} +{"label":"Cafe de los maestros","description":"No overview found.","id":"17012","runtime":90,"imdbId":"tt1185589","version":125,"lastModified":"1301848074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/439\/4bc94e26017a3c57fe022439\/cafe-de-los-maestros-mid.jpg","genre":"Documentary","title":"Cafe de los maestros","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65498"} +{"label":"Miguel Kohan","version":20,"id":"81152","lastModified":"1301902174000","name":"Miguel Kohan","type":"Person","_key":"65499"} +{"label":"Futuro perfecto","description":"No overview found.","id":"17013","runtime":84,"imdbId":"tt0826218","version":33,"lastModified":"1301908528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43e\/4bc94e26017a3c57fe02243e\/futuro-perfecto-mid.jpg","title":"Futuro perfecto","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65500"} +{"label":"Mariano Galperin","version":17,"id":"81154","lastModified":"1301902503000","name":"Mariano Galperin","type":"Person","_key":"65501"} +{"label":"Guillermo Pfening","version":19,"id":"81155","lastModified":"1301902503000","name":"Guillermo Pfening","type":"Person","_key":"65502"} +{"label":"Pablo Ini","version":19,"id":"81156","lastModified":"1301902503000","name":"Pablo Ini","type":"Person","_key":"65503"} +{"label":"Sebasti\u00e1n Borensztein","version":19,"id":"81157","lastModified":"1301902503000","name":"Sebasti\u00e1n Borensztein","type":"Person","_key":"65504"} +{"label":"Lucrecia Oviedo","version":19,"id":"81158","lastModified":"1301902503000","name":"Lucrecia Oviedo","type":"Person","_key":"65505"} +{"label":"Persuasion","description":"This film adaptation of Jane Austen's last novel follows Anne Elliot, the daughter of a financially troubled aristocratic family, who is persuaded to break her engagement to Frederick Wentworth, a young sea captain of meager means. Years later, money troubles force Anne's father to rent out the family estate to Admiral Croft, and Anne is again thrown into company with Frederick -- who is now rich, successful and perhaps still in love with Anne.","id":"17015","runtime":104,"imdbId":"tt0114117","version":168,"lastModified":"1301904521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4cb608d45e73d67783000216\/persuasion-mid.jpg","genre":"Drama","title":"Persuasion","releaseDate":788918400000,"language":"en","type":"Movie","_key":"65506"} +{"label":"Susan Fleetwood","version":30,"id":"87415","lastModified":"1301902577000","name":"Susan Fleetwood","type":"Person","_key":"65507"} +{"label":"Corin Redgrave","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35f\/4cb7138c5e73d6778600035f\/corin-redgrave-profile.jpg","version":21,"id":"138229","lastModified":"1301902773000","name":"Corin Redgrave","type":"Person","_key":"65508"} +{"label":"La leyenda","description":"No overview found.","id":"17017","runtime":92,"imdbId":"tt1236438","version":536,"lastModified":"1302215735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/451\/4bc94e27017a3c57fe022451\/la-leyenda-mid.jpg","title":"La leyenda","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65509"} +{"label":"Sebasti\u00e1n Pivotto","version":20,"id":"81161","lastModified":"1301902532000","name":"Sebasti\u00e1n Pivotto","type":"Person","_key":"65510"} +{"label":"La camara oscura","description":"En una colonia de Entre R\u00edos, a fines del siglo diecinueve, descubrimos la historia de Gertrudis, una mujer que seg\u00fan el parecer de su familia nace fea, crece siendo una ni\u00f1a poco agraciada y finalmente se convierte en una mujer insignificante. Sin embargo, no renuncia por ello a ver el mundo que la rodea con un inter\u00e9s por esos signos de belleza que percibimos si nos detenemos a contemplarlos.","id":"17019","runtime":88,"imdbId":"tt0977645","version":149,"lastModified":"1302200264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/456\/4bc94e27017a3c57fe022456\/la-camara-oscura-mid.jpg","title":"La camara oscura","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65511"} +{"label":"Adam & Steve","description":"Follows two New York city couples -- one heterosexual(Posey, Kattan) and one gay (Chester, Gets) who explore the peaks and the valleys of their respective relationships. ","id":"17021","runtime":99,"imdbId":"tt0372122","version":111,"lastModified":"1302067836000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46c\/4bc94e28017a3c57fe02246c\/adam-steve-mid.jpg","genre":"Comedy","title":"Adam & Steve","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"65512"} +{"label":"Craig Chester","version":21,"id":"82769","lastModified":"1301902504000","name":"Craig Chester","type":"Person","_key":"65513"} +{"label":"Malcolm Gets","version":21,"id":"82771","lastModified":"1301902396000","name":"Malcolm Gets","type":"Person","_key":"65514"} +{"label":"Michael Jackson: Number Ones","description":"Pop king Michael Jackson solidifies his title with this release of fifteen past number one hits. Songs include \"Don't Stop 'Til You Get Enough,\" \"Thriller,\" \"Black or White,\" and \"Blood on the Dancefloor.\"","id":"17022","runtime":79,"imdbId":"tt0768131","version":223,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/475\/4bc94e29017a3c57fe022475\/michael-jackson-number-ones-mid.jpg","genre":"Musical","title":"Michael Jackson: Number Ones","releaseDate":1069113600000,"language":"en","type":"Movie","_key":"65515"} +{"label":"Billy Joel: Live from the River of Dreams","description":"Previously only available in the \"Billy Joel: My Lives\" box set, this DVD features one of Billy's best concerts: Billy Joel live in Frankfurt, Germany in 1994 on the \"River of Dreams\" tour.","id":"17023","runtime":77,"imdbId":"tt0854117","version":27,"lastModified":"1301417781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47a\/4bc94e29017a3c57fe02247a\/billy-joel-live-from-the-river-of-dreams-mid.jpg","genre":"Musical","title":"Billy Joel: Live from the River of Dreams","releaseDate":1132617600000,"language":"en","type":"Movie","_key":"65516"} +{"label":"Slutty Summer","description":"No overview found.","id":"17024","runtime":85,"imdbId":"tt0411883","version":124,"lastModified":"1302199577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/483\/4bc94e2a017a3c57fe022483\/slutty-summer-mid.jpg","genre":"Comedy","title":"Slutty Summer","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"65517"} +{"label":"Look","description":"No overview found.","id":"17025","runtime":98,"imdbId":"tt0810951","version":135,"lastModified":"1301905772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48c\/4bc94e2b017a3c57fe02248c\/look-mid.jpg","genre":"Drama","title":"Look","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"65518"} +{"label":"Shuttle","description":"When two friends return from a girls weekend vacation in Mexico, they find themselves stranded at the airport. Trying to get home safely, they board an airport shuttle for the short trip. But once their feet cross the threshold of the shuttle, a night that had started like any other turns terrifying, and the ride home becomes a descent into darkness.","id":"17027","runtime":107,"imdbId":"tt0880648","version":165,"lastModified":"1301412866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a5\/4bc94e2c017a3c57fe0224a5\/shuttle-mid.jpg","genre":"Crime","title":"Shuttle","releaseDate":1204934400000,"language":"en","type":"Movie","_key":"65519"} +{"label":"Edward Anderson","version":22,"id":"135426","lastModified":"1301902774000","name":"Edward Anderson","type":"Person","_key":"65520"} +{"label":"Kaylan Tracey","version":16,"id":"135427","lastModified":"1301902469000","name":"Kaylan Tracey","type":"Person","_key":"65521"} +{"label":"Jen Alison Lewis","version":16,"id":"135428","lastModified":"1301902405000","name":"Jen Alison Lewis","type":"Person","_key":"65522"} +{"label":"James Ryen","version":16,"id":"135429","lastModified":"1301902559000","name":"James Ryen","type":"Person","_key":"65523"} +{"label":"Jackie Cowls","version":16,"id":"135430","lastModified":"1301902403000","name":"Jackie Cowls","type":"Person","_key":"65524"} +{"label":"Roy Souza","version":16,"id":"135431","lastModified":"1301902403000","name":"Roy Souza","type":"Person","_key":"65525"} +{"label":"Eating Out 2: Sloppy seconds","description":"After Marc dumps him, Kyle unites with Gwen and Tiffani to land sexually confused art model Troy by pretending to be straight. However, Marc wants Troy, too, and members from a notorious \"ex-gay\" group are slipping for the both of them. ","id":"17028","runtime":79,"imdbId":"tt0795376","version":128,"lastModified":"1302198791000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ba\/4bc94e2d017a3c57fe0224ba\/eating-out-2-sloppy-seconds-mid.jpg","genre":"Indie","title":"Eating Out 2: Sloppy seconds","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"65526"} +{"label":"Player 5150","description":"Joey (Ethan Embry, Can't Hardly Wait) is a successful day trader at a high-end brokerage house, he has a beautiful fianc\u00e9e and a home on the beach. He has it all and a lot to lose. Now the gambling addiction that has plagued him for years has him on the run and he must put everything on the line...including his life.","id":"17029","runtime":91,"imdbId":"tt0906773","trailer":"http:\/\/www.youtube.com\/watch?v=1738","version":155,"lastModified":"1301906673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bf\/4bc94e30017a3c57fe0224bf\/player-5150-mid.jpg","genre":"Action","title":"Player 5150","releaseDate":1199664000000,"language":"en","type":"Movie","_key":"65527"} +{"label":"David Michael O'Neill","version":20,"id":"81163","lastModified":"1301901718000","name":"David Michael O'Neill","type":"Person","_key":"65528"} +{"label":"The Petrified Forest","description":"Hitchhiker Alan Squier, who sees himself as a failed writer, wanders into a roadside diner. The diner is run by Jason Maple, his daughter Gabby, and her grandfather. Duke Mantee, \"world famous killer\" and his gang appear, and hold everyone hostage. When Gabby is out of the room, Alan signs over an insurance policy on his life to Gabby and asks Duke to shoot him. ","id":"17030","runtime":82,"imdbId":"tt0028096","version":99,"lastModified":"1301905184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4bc94e31017a3c57fe0224c8\/the-petrified-forest-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Petrified Forest","releaseDate":-1069891200000,"language":"en","type":"Movie","_key":"65529"} +{"label":"Archie Mayo","version":30,"id":"81165","lastModified":"1301902138000","name":"Archie Mayo","type":"Person","_key":"65530"} +{"label":"Genevieve Tobin","version":21,"id":"81167","lastModified":"1301902064000","name":"Genevieve Tobin","type":"Person","_key":"65531"} +{"label":"Dick Foran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/302\/4c47562f7b9aa15dde000302\/dick-foran-profile.jpg","version":31,"birthday":"-1878944400000","id":"81168","birthplace":"Flemington, New Jersey, USA","lastModified":"1301901443000","name":"Dick Foran","type":"Person","_key":"65532"} +{"label":"Dragonlance: Dragons Of Autumn Twilight","description":"After five years apart, searching the world of Krynn for proof of the existence of the true gods, a group of adventurers reach their goal in the form of a barbarian woman carrying a miraculous blue crystal staff. Soon they are thrust into war as an army of dragons overtakes their homeland.","id":"17031","runtime":90,"imdbId":"tt0825245","trailer":"http:\/\/www.youtube.com\/watch?v=UHrOfJ8_D0o","homepage":"http:\/\/www.dragonlance-movie.com\/","version":243,"lastModified":"1302198171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e5\/4bc94e33017a3c57fe0224e5\/dragonlance-dragons-of-autumn-twilight-mid.jpg","genre":"Action","title":"Dragonlance: Dragons Of Autumn Twilight","releaseDate":1200355200000,"language":"en","type":"Movie","_key":"65533"} +{"label":"The Amateurs","description":"Sex sells in America and these guys know it. The Amateurs follows a small town band of loveable losers who hit upon an idea that can make their dreams and fantasies come true. Thinking they've found the road to riches and fame they decide to make the world's most innocent adult film. Everyman's fantasy turns into a hilarious misadventure when they find they're in way over their heads.","id":"17035","runtime":96,"imdbId":"tt0405163","trailer":"http:\/\/www.youtube.com\/watch?v=1607","version":149,"lastModified":"1302213312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f6\/4bc94e35017a3c57fe0224f6\/the-moguls-mid.jpg","genre":"Comedy","title":"The Amateurs","releaseDate":1107648000000,"language":"en","type":"Movie","_key":"65534"} +{"label":"Michael Traeger","version":25,"id":"86300","lastModified":"1302213221000","name":"Michael Traeger","type":"Person","_key":"65535"} +{"label":"Moguls","description":"No overview found.","id":"17036","runtime":0,"imdbId":"tt1555283","version":61,"lastModified":"1301595291000","title":"Moguls","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65536"} +{"label":"I'll Be Home for Christmas","description":"Somewhere between L.A. and N.Y. Jake found the meaning of Christmas.","id":"17037","runtime":86,"imdbId":"tt0155753","version":170,"lastModified":"1301904086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fb\/4bc94e35017a3c57fe0224fb\/i-ll-be-home-for-christmas-mid.jpg","genre":"Comedy","title":"I'll Be Home for Christmas","releaseDate":910915200000,"language":"en","type":"Movie","_key":"65537"} +{"label":"Lauren Maltby","version":23,"id":"81170","lastModified":"1301902064000","name":"Lauren Maltby","type":"Person","_key":"65538"} +{"label":"Lake Placid 2","description":"A sequel to horror movie Lake Placid (1999).","id":"17038","runtime":88,"imdbId":"tt0974583","version":200,"lastModified":"1302197330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/500\/4bc94e35017a3c57fe022500\/lake-placid-2-mid.jpg","genre":"Action","title":"Lake Placid 2","releaseDate":1177718400000,"language":"en","type":"Movie","_key":"65539"} +{"label":"Turok: Son of Stone","description":"Turok is exiled from the village in which he was born, twenty years later he returns to find that a tyrant has slaughtered his family and friends. Seeking revenge Turok crosses into the Lost Land pursuing the ruthless warlord named Chichak.","id":"17040","runtime":73,"imdbId":"tt0968765","version":209,"lastModified":"1302197070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50d\/4bc94e36017a3c57fe02250d\/turok-son-of-stone-mid.jpg","genre":"Animation","title":"Turok: Son of Stone","releaseDate":1202169600000,"language":"en","type":"Movie","_key":"65540"} +{"label":"Dan Riba","version":22,"id":"34921","lastModified":"1301901608000","name":"Dan Riba","type":"Person","_key":"65541"} +{"label":"Sold Out: A Threevening with Kevin Smith","description":"Kevin Smith brings his famous and \"infamous\" Q&A back to his hometown of Red Bank, New Jersey for his 37th birthday.","id":"17041","runtime":223,"imdbId":"tt1083858","version":178,"lastModified":"1301904614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc94e37017a3c57fe02251a\/sold-out-a-threevening-with-kevin-smith-mid.jpg","studio":"View Askew Productions","genre":"Comedy","title":"Sold Out: A Threevening with Kevin Smith","releaseDate":1224633600000,"language":"en","type":"Movie","_key":"65542"} +{"label":"The Crocodile Hunter: Collision Course","description":"The Crocodile Hunter mistakes some CIA agents for poachers and sets out to stop them from capturing a wily croc which, unbeknownst to him, has swallowed a tracking drone. ","id":"17043","runtime":90,"imdbId":"tt0305396","trailer":"http:\/\/www.youtube.com\/watch?v=1134","version":114,"lastModified":"1301903638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/523\/4bc94e37017a3c57fe022523\/the-crocodile-hunter-collision-course-mid.jpg","genre":"Action","title":"The Crocodile Hunter: Collision Course","releaseDate":1027641600000,"language":"en","type":"Movie","_key":"65543"} +{"label":"Land Girls","description":"The story of three young women and the events that would change their lives... The friendships that would stay with them forever... and the loves that would change their hearts. ","id":"17044","runtime":111,"imdbId":"tt0119494","version":223,"lastModified":"1302196396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/528\/4bc94e3a017a3c57fe022528\/land-girls-mid.jpg","title":"Land Girls","releaseDate":906681600000,"language":"en","type":"Movie","_key":"65544"} +{"label":"Skellig: The Owl Man","description":"An ordinary boy named Michael is going through some extraordinary changes in his life. His family has just moved into an unfamiliar house, and his brand new baby sister has fallen ill. One day, while cleaning out the garden shed, he stumbles across something mysterious, a strange creature huddled in the corner; weak of body but strong of will. This is Skellig.","id":"17046","runtime":98,"imdbId":"tt0382301","trailer":"http:\/\/www.youtube.com\/watch?v=1138","homepage":"http:\/\/www.sky1.co.uk\/skellig\/","version":173,"lastModified":"1301905853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/535\/4bc94e3b017a3c57fe022535\/skellig-mid.jpg","studio":"Feel Films","genre":"Drama","title":"Skellig: The Owl Man","releaseDate":1239494400000,"language":"en","type":"Movie","_key":"65545"} +{"label":"Navin Chowdhry","version":21,"id":"81267","lastModified":"1301902238000","name":"Navin Chowdhry","type":"Person","_key":"65546"} +{"label":"Jermain Allen","version":21,"id":"81268","lastModified":"1301902238000","name":"Jermain Allen","type":"Person","_key":"65547"} +{"label":"Eros Vlahos","version":21,"id":"81269","lastModified":"1301902238000","name":"Eros Vlahos","type":"Person","_key":"65548"} +{"label":"Agent Cody Banks 2: Destination London","description":"With all-new gadgets, high-flying action, exciting chases and a wisecracking new handler, Derek (Anthony Anderson), Cody has to retrieve the device before the world's leaders fall under the evil control of a diabolical villain.","id":"17047","runtime":100,"imdbId":"tt0358349","homepage":"http:\/\/www.mgm.com\/view\/Movie\/33\/","version":165,"lastModified":"1301903763000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54e\/4bc94e3d017a3c57fe02254e\/agent-cody-banks-2-destination-london-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"Agent Cody Banks 2: Destination London","releaseDate":1102032000000,"language":"en","type":"Movie","_key":"65549"} +{"label":"Kua yue shi kong de xiao zi","description":"Three young boys learn the art of kung fu from their grandfather, a martial arts expert, and are able to hold their own on a trip to the city.","id":"17048","runtime":90,"imdbId":"tt0091360","version":55,"lastModified":"1301906716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/553\/4bc94e3e017a3c57fe022553\/kua-yue-shi-kong-de-xiao-zi-mid.jpg","genre":"Eastern","title":"Kua yue shi kong de xiao zi","releaseDate":536457600000,"language":"en","type":"Movie","_key":"65550"} +{"label":"Aan Jing-Kwok","version":17,"id":"81174","lastModified":"1301901947000","name":"Aan Jing-Kwok","type":"Person","_key":"65551"} +{"label":"Tam Ngaai-Jan","version":17,"id":"81175","lastModified":"1301901947000","name":"Tam Ngaai-Jan","type":"Person","_key":"65552"} +{"label":"Chong Rong Chen","version":17,"id":"81176","lastModified":"1301902324000","name":"Chong Rong Chen","type":"Person","_key":"65553"} +{"label":"Peng-I Chang","version":19,"id":"81177","lastModified":"1301902324000","name":"Peng-I Chang","type":"Person","_key":"65554"} +{"label":"Homeworld","description":"The year: 3037. Earth is at war with aliens called Mendax. They have remarkable mental abilities and are determined to wipe out all mankind","id":"17053","runtime":104,"imdbId":"tt1230538","version":53,"lastModified":"1301419718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55c\/4bc94e3f017a3c57fe02255c\/homeworld-mid.jpg","title":"Homeworld","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65555"} +{"label":"In a Lonely Place","description":"Dixon 'Dix' Steele, a down-on-his-luck screenwriter needs to adapt a trashy novel. At a night club, the hat-check girl, Mildred Atkinson is engrossed reading it. Too tired to read the novel, he asks Mildred to go home with him, to explain the plot. Later that night, Mildred is murdered and Steele is a prime suspect, his record of violence when angry goes against him.","id":"17057","runtime":94,"imdbId":"tt0042593","trailer":"http:\/\/www.youtube.com\/watch?v=Fu8E3LooDZo","version":141,"lastModified":"1301903328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/569\/4bc94e41017a3c57fe022569\/in-a-lonely-place-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Drama","title":"In a Lonely Place","releaseDate":-619401600000,"language":"en","tagline":"The Bogart suspense picture with the surprise finish -","type":"Movie","_key":"65556"} +{"label":"Frank Lovejoy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/087\/4c1f6d327b9aa13009000087\/frank-lovejoy-profile.jpg","version":39,"id":"81179","lastModified":"1301987197000","name":"Frank Lovejoy","type":"Person","_key":"65557"} +{"label":"Carl Benton Reid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1d8\/4bd98f2d017a3c1c000001d8\/carl-benton-reid-profile.jpg","version":31,"id":"81180","lastModified":"1301902360000","name":"Carl Benton Reid","type":"Person","_key":"65558"} +{"label":"Martha Stewart","version":23,"id":"81181","lastModified":"1301902315000","name":"Martha Stewart","type":"Person","_key":"65559"} +{"label":"Morris Ankrum","version":61,"birthday":"-2282950800000","id":"81182","birthplace":"Danville, Illinois, USA","lastModified":"1301901600000","name":"Morris Ankrum","type":"Person","_key":"65560"} +{"label":"William Ching","version":24,"id":"81183","lastModified":"1301902323000","name":"William Ching","type":"Person","_key":"65561"} +{"label":"Hadda Brooks","version":22,"id":"129681","lastModified":"1301902760000","name":"Hadda Brooks","type":"Person","_key":"65562"} +{"label":"Scarlet Street","description":"A man in mid-life crisis befriends a young woman after rescuing her from an attack. She believes he is rich and her boyfriend persuades her to con him out of his fortune.","id":"17058","runtime":103,"imdbId":"tt0038057","version":433,"lastModified":"1302194612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/577\/4bc94e42017a3c57fe022577\/scarlet-street-mid.jpg","studio":"Fritz Lang Productions","genre":"Film Noir","title":"Scarlet Street","releaseDate":-757728000000,"language":"en","type":"Movie","_key":"65563"} +{"label":"Jess Barker","version":23,"id":"81187","lastModified":"1301902393000","name":"Jess Barker","type":"Person","_key":"65564"} +{"label":"Rosalind Ivan","version":29,"id":"81188","lastModified":"1301901778000","name":"Rosalind Ivan","type":"Person","_key":"65565"} +{"label":"Aa Dekhen Zara","description":"A photographer (Ray) has nothing going for him, until he inherits a camera from his grandfather. This changes his life in a way that he could not have ever imagined in his wildest dreams.","id":"17059","runtime":117,"imdbId":"tt1372681","homepage":"http:\/\/aadekhenzara.erosentertainment.com\/","version":125,"lastModified":"1302194205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/580\/4bc94e46017a3c57fe022580\/aa-dekhen-zara-mid.jpg","studio":"Eros Entertainment","genre":"Action","title":"Aa Dekhen Zara","releaseDate":1238112000000,"language":"en","type":"Movie","_key":"65566"} +{"label":"Jehangir Surti","version":20,"id":"81189","lastModified":"1301901608000","name":"Jehangir Surti","type":"Person","_key":"65567"} +{"label":"Neil Nitin Mukesh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d4\/4c4f16515e73d62ec50000d4\/neil-nitin-mukesh-profile.jpg","version":30,"id":"85045","lastModified":"1301902140000","name":"Neil Nitin Mukesh","type":"Person","_key":"65568"} +{"label":"Sophie Chaudhary","version":23,"id":"85369","lastModified":"1301902333000","name":"Sophie Chaudhary","type":"Person","_key":"65569"} +{"label":"Bobby Vatsa","version":20,"id":"85370","lastModified":"1301902457000","name":"Bobby Vatsa","type":"Person","_key":"65570"} +{"label":"Srivas Naidu","version":18,"id":"85371","lastModified":"1301902632000","name":"Srivas Naidu","type":"Person","_key":"65571"} +{"label":"Deepak Dhariwal","version":20,"id":"85372","lastModified":"1301902632000","name":"Deepak Dhariwal","type":"Person","_key":"65572"} +{"label":"Biswajeet Chatterjee","version":20,"id":"85373","lastModified":"1301902632000","name":"Biswajeet Chatterjee","type":"Person","_key":"65573"} +{"label":"Thamapat Seengamrat","version":18,"id":"85374","lastModified":"1301902238000","name":"Thamapat Seengamrat","type":"Person","_key":"65574"} +{"label":"Sameer Siddiqui","version":20,"id":"85375","lastModified":"1301902632000","name":"Sameer Siddiqui","type":"Person","_key":"65575"} +{"label":"American Swing","description":"No overview found.","id":"17073","runtime":0,"imdbId":"tt1058058","version":632,"lastModified":"1302233465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/557\/4d3de2aa5e73d622cf000557\/american-swing-mid.jpg","genre":"Documentary","title":"American Swing","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65576"} +{"label":"The Batman Superman Movie: World's Finest","description":"Joker goes to Metropolis with an offer and plan to kill Superman for Lex Luthor while Batman pursues the clown to Superman's turf","id":"17074","runtime":64,"imdbId":"tt0169590","version":101,"lastModified":"1302193490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59d\/4bc94e49017a3c57fe02259d\/the-batman-superman-movie-mid.jpg","genre":"Action","title":"The Batman Superman Movie: World's Finest","releaseDate":903398400000,"language":"en","type":"Movie","_key":"65577"} +{"label":"Toshihiko Masuda","version":23,"id":"34928","lastModified":"1301901718000","name":"Toshihiko Masuda","type":"Person","_key":"65578"} +{"label":"Arleen Sorkin","version":28,"id":"34978","lastModified":"1301901956000","name":"Arleen Sorkin","type":"Person","_key":"65579"} +{"label":"Lisa Edelstein","version":37,"id":"41420","lastModified":"1301901738000","name":"Lisa Edelstein","type":"Person","_key":"65580"} +{"label":"Owl and the Sparrow","description":"In modern-day Saigon, three lonely strangers form a unique family as a ten-year old orphan plays matchmaker to a zookeeper and a beautiful flight attendant.","id":"17075","runtime":97,"imdbId":"tt0971162","homepage":"http:\/\/www.owlandthesparrow.com\/","version":115,"lastModified":"1302193206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a2\/4bc94e49017a3c57fe0225a2\/cu-va-chim-se-se-mid.jpg","genre":"Drama","title":"Owl and the Sparrow","releaseDate":1170288000000,"language":"en","type":"Movie","_key":"65581"} +{"label":"Stephane Gauger","version":25,"id":"81192","lastModified":"1301901778000","name":"Stephane Gauger","type":"Person","_key":"65582"} +{"label":"Cat Ly","version":21,"id":"81194","lastModified":"1301902324000","name":"Cat Ly","type":"Person","_key":"65583"} +{"label":"The Lu Le","version":20,"id":"81195","lastModified":"1301902676000","name":"The Lu Le","type":"Person","_key":"65584"} +{"label":"Han Thi Pham","version":20,"id":"81196","lastModified":"1301902676000","name":"Han Thi Pham","type":"Person","_key":"65585"} +{"label":"Everlasting Moments","description":"In a time of social change and unrest, war and poverty, a young working class woman, Maria, wins a camera in a lottery. The decision to keep it alters her whole life.","id":"17077","runtime":131,"imdbId":"tt0961066","version":87,"lastModified":"1302192911000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ab\/4bc94e49017a3c57fe0225ab\/maria-larssons-eviga-ogonblick-mid.jpg","genre":"Drama","title":"Everlasting Moments","releaseDate":1222214400000,"language":"en","type":"Movie","_key":"65586"} +{"label":"Emil Jensen","version":20,"id":"81208","lastModified":"1301902238000","name":"Emil Jensen","type":"Person","_key":"65587"} +{"label":"Rang-e khoda","description":"The story revolves around a blind boy named Mohammed who is released from his special school in Tehran for summer vacation. His father, shamed and burdened by Mohammed's blindness, arrives late to pick him up and then tries to convince the headmaster to keep Mohammed over the summer. The headmaster refuses, so Mohammed's father eventually takes him home.","id":"17078","runtime":90,"imdbId":"tt0191043","version":42,"lastModified":"1302192509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5be\/4bc94e4a017a3c57fe0225be\/rang-e-khoda-mid.jpg","title":"Rang-e khoda","language":"en","type":"Movie","_key":"65588"} +{"label":"Majid Majidi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/461\/4ca8c7495e73d643eb000461\/majid-majidi-profile.jpg","version":28,"id":"110695","lastModified":"1301902205000","name":"Majid Majidi","type":"Person","_key":"65589"} +{"label":"Pistvakt","description":"No overview found.","id":"17080","runtime":91,"imdbId":"tt0451160","version":39,"lastModified":"1301417691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c3\/4bc94e4b017a3c57fe0225c3\/pistvakt-mid.jpg","studio":"SVT","genre":"Comedy","title":"Pistvakt","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"65590"} +{"label":"Stephan Apelgren","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9bb\/4d5ac0f55e73d65e870009bb\/stephan-apelgren-profile.jpg","version":39,"id":"81210","lastModified":"1301902578000","name":"Stephan Apelgren","type":"Person","_key":"65591"} +{"label":"Jacob Nordenson","version":20,"id":"81212","lastModified":"1301902704000","name":"Jacob Nordenson","type":"Person","_key":"65592"} +{"label":"Barbro Oborg","version":20,"id":"81213","lastModified":"1301902360000","name":"Barbro Oborg","type":"Person","_key":"65593"} +{"label":"Pierre Lindstedt","version":23,"id":"81214","lastModified":"1301902706000","name":"Pierre Lindstedt","type":"Person","_key":"65594"} +{"label":"Carl Magnus Dellow","version":19,"id":"81215","lastModified":"1301902324000","name":"Carl Magnus Dellow","type":"Person","_key":"65595"} +{"label":"Amanda Uusitalo","version":19,"id":"81216","lastModified":"1301902676000","name":"Amanda Uusitalo","type":"Person","_key":"65596"} +{"label":"Final Approach","description":"FBI hostage rescue team leader Jack Bender has been sacked for not being a team player, and months later he finds himself in the ultimate hostage nightmare: stuck aboard a plane that's been taken over by a group of well-armed terrorists who threaten to detonate a nuclear weapon unless they receive a billion dollars","id":"17081","runtime":170,"imdbId":"tt0929858","version":239,"lastModified":"1302240041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cc\/4bc94e4f017a3c57fe0225cc\/final-approach-mid.jpg","genre":"Thriller","title":"Final Approach","releaseDate":1211587200000,"language":"en","tagline":"High altitude. Higher pressure.","type":"Movie","_key":"65597"} +{"label":"The Sniper","description":"Prize: Top Shooter of the Hong Kong Police's Sniper Team. Quality: Aplomb, endurance, one-upmanship, precision. Routine: Hiding, advancing, killing, retreating. Signature: A shot at the dead center of the forehead.\r\n\r\n","id":"17082","runtime":90,"imdbId":"tt1194624","homepage":"http:\/\/www.mediaasia.com\/thesniper\/","version":211,"lastModified":"1302191336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dd\/4bc94e50017a3c57fe0225dd\/sun-cheung-sau-mid.jpg","genre":"Action","title":"The Sniper","releaseDate":1243814400000,"language":"en","type":"Movie","_key":"65598"} +{"label":"Dante Lam","version":40,"id":"81220","lastModified":"1301901531000","name":"Dante Lam","type":"Person","_key":"65599"} +{"label":"Gletscherblut","description":"No overview found.","id":"17083","runtime":0,"imdbId":"tt1272015","version":26,"lastModified":"1300980398000","title":"Gletscherblut","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65600"} +{"label":"The Reality of Bob Burnquist","description":"No overview found.","id":"17084","runtime":0,"imdbId":"tt0819382","version":86,"lastModified":"1302239527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5eb\/4bc94e50017a3c57fe0225eb\/the-reality-of-bob-burnquist-mid.jpg","genre":"Action","title":"The Reality of Bob Burnquist","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65601"} +{"label":"UFC 97: Redemption","description":"UFC 97: Redemption (not to be confused with UFC 17: Redemption) was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on April 18, 2009 in Montreal, Quebec, Canada.","id":"17085","runtime":0,"imdbId":"tt1510295","version":77,"lastModified":"1302239282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f4\/4bc94e51017a3c57fe0225f4\/ufc-97-redemption-mid.jpg","title":"UFC 97: Redemption","releaseDate":1240012800000,"language":"en","type":"Movie","_key":"65602"} +{"label":"Krzysztof Soszynski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4c1dfba97b9aa1295800001c\/krzysztof-soszynski-profile.jpg","version":27,"id":"83367","lastModified":"1301901986000","name":"Krzysztof Soszynski","type":"Person","_key":"65603"} +{"label":"Brian Stann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/046\/4c1dfeaa7b9aa12962000046\/brian-stann-profile.jpg","version":24,"id":"83368","lastModified":"1301902175000","name":"Brian Stann","type":"Person","_key":"65604"} +{"label":"Chromophobia","description":"A soap opera set amoungst London's rich. Steven, a gay art historian, is friends with Iona who is devoted to shopping and yoga; his father is a high court judge.","id":"17086","runtime":136,"imdbId":"tt0419641","version":78,"lastModified":"1301906465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f6\/4cac9e395e73d64dd10002f6\/chromophobia-mid.jpg","genre":"Drama","title":"Chromophobia","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"65605"} +{"label":"Martha Fiennes","version":20,"id":"96854","lastModified":"1301902378000","name":"Martha Fiennes","type":"Person","_key":"65606"} +{"label":"Banned from TV","description":"No overview found.","id":"17088","runtime":0,"imdbId":"tt0396483","version":131,"lastModified":"1302239027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fe\/4bc94e51017a3c57fe0225fe\/banned-from-tv-mid.jpg","title":"Banned from TV","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65607"} +{"label":"Barney: Let's Play School","description":"This is a special episode never before seen on television, and Barney is having a grand old time at Baby Bop's school. There's a surprise in every lesson and lots of singing, reading, eating macaroni and cheese and even an afternoon nap.","id":"17089","runtime":60,"version":77,"lastModified":"1302238493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4bc94e52017a3c57fe022607\/barney-let-s-play-school-mid.jpg","studio":"HIT Entertainment","genre":"Family","title":"Barney: Let's Play School","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65608"} +{"label":"The Casino Job","description":"Barry Kaylin is living the dream. Not yet 40, he owns four Las Vegas casinos and lives the life of the bachelor to the fullest. One night, while meeting with two potential business associates, he hires five local dancers to flirt and lounge around his mansion and lagoon pool. ","id":"17090","runtime":80,"imdbId":"tt0831279","version":108,"lastModified":"1302189947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/610\/4bc94e52017a3c57fe022610\/the-casino-job-mid.jpg","genre":"Action","title":"The Casino Job","releaseDate":1235001600000,"language":"en","type":"Movie","_key":"65609"} +{"label":"Amylia Joiner","version":19,"id":"81226","lastModified":"1301901778000","name":"Amylia Joiner","type":"Person","_key":"65610"} +{"label":"Deanna Minerva","version":17,"id":"99204","lastModified":"1301902986000","name":"Deanna Minerva","type":"Person","_key":"65611"} +{"label":"Att ang\u00f6ra en brygga","description":"No overview found.","id":"17091","runtime":101,"imdbId":"tt0058926","version":39,"lastModified":"1300980399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/615\/4bc94e52017a3c57fe022615\/att-angora-en-brygga-mid.jpg","studio":"AB Svenska Ord","genre":"Comedy","title":"Att ang\u00f6ra en brygga","releaseDate":-126748800000,"language":"en","type":"Movie","_key":"65612"} +{"label":"Monica Zetterlund","version":20,"id":"81231","lastModified":"1301902503000","name":"Monica Zetterlund","type":"Person","_key":"65613"} +{"label":"Lars Ekborg","version":23,"id":"81232","lastModified":"1301902503000","name":"Lars Ekborg","type":"Person","_key":"65614"} +{"label":"Katie Rolfsen","version":19,"id":"81233","lastModified":"1301902503000","name":"Katie Rolfsen","type":"Person","_key":"65615"} +{"label":"Hatte Furuhagen","version":19,"id":"81234","lastModified":"1301902503000","name":"Hatte Furuhagen","type":"Person","_key":"65616"} +{"label":"Turneja","description":"No overview found.","id":"17094","runtime":102,"imdbId":"tt0996982","version":62,"lastModified":"1301908528000","studio":"Balkan Film","genre":"Adventure","title":"Turneja","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65617"} +{"label":"Tihomir Stanic","version":19,"id":"81235","lastModified":"1301902350000","name":"Tihomir Stanic","type":"Person","_key":"65618"} +{"label":"Jelena Djokic","version":24,"id":"81236","lastModified":"1301902361000","name":"Jelena Djokic","type":"Person","_key":"65619"} +{"label":"After Sex","description":"After Sex is an edgy relationship comedy that uses sex as a background to examine intimacy and vulnerability. It's a humorous, yet honest look at the complexity of modern day relationships told through nine separate couples.","id":"17097","runtime":78,"imdbId":"tt0465375","version":217,"lastModified":"1302238145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/622\/4bc94e53017a3c57fe022622\/after-sex-mid.jpg","studio":"NALA Films","genre":"Comedy","title":"After Sex","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"65620"} +{"label":"Eric Amadio","version":25,"id":"83048","lastModified":"1301901399000","name":"Eric Amadio","type":"Person","_key":"65621"} +{"label":"X - The Movie","description":"The story takes place in 1999, the Year of Destiny, and the beginning of the end of the world. The future of the universe rests on one young man, Kamui Shiro, who must destroy either the Dragons of Earth or the Dragons of Heaven - two opposing armies.","id":"17098","runtime":97,"imdbId":"tt0184041","homepage":"http:\/\/www.madhouse.co.jp\/works\/1997-1994\/works_movie_x.html","version":115,"lastModified":"1302237943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62c\/4bc94e54017a3c57fe02262c\/x-the-movie-mid.jpg","studio":"Bandai Visual Company","genre":"Action","title":"X - The Movie","releaseDate":839030400000,"language":"en","type":"Movie","_key":"65622"} +{"label":"Ken Narita","version":16,"id":"90565","lastModified":"1301902064000","name":"Ken Narita","type":"Person","_key":"65623"} +{"label":"T\u00f4ru Furusawa","version":17,"id":"90566","lastModified":"1301902064000","name":"T\u00f4ru Furusawa","type":"Person","_key":"65624"} +{"label":"Issei Miyazaki","version":16,"id":"90568","lastModified":"1301902457000","name":"Issei Miyazaki","type":"Person","_key":"65625"} +{"label":"Y\u00fbko Minaguchi","version":25,"id":"90569","lastModified":"1301902540000","name":"Y\u00fbko Minaguchi","type":"Person","_key":"65626"} +{"label":"Atsuko Takahata","version":16,"id":"90570","lastModified":"1301902632000","name":"Atsuko Takahata","type":"Person","_key":"65627"} +{"label":"Hideyuki Tanaka","version":25,"id":"67471","lastModified":"1301902203000","name":"Hideyuki Tanaka","type":"Person","_key":"65628"} +{"label":"Toshihiko Seki","version":21,"id":"90571","lastModified":"1301902673000","name":"Toshihiko Seki","type":"Person","_key":"65629"} +{"label":"Yukana Nogami","version":23,"id":"90572","lastModified":"1301902632000","name":"Yukana Nogami","type":"Person","_key":"65630"} +{"label":"Hanzo the Razor: Sword of Justice","description":"Fearless Edo-period police inspector Hanzo Itami (Katsu), nicknamed The Razor, has developed his own unique way of extracting information for his inquiries. His first adventure sees him investigating his superior officer's mistress, whom he suspects of having ties with a reputed criminal on the loose.","id":"17099","runtime":108,"imdbId":"tt0068650","version":81,"lastModified":"1302237794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/639\/4bc94e58017a3c57fe022639\/goyokiba-mid.jpg","genre":"Action","title":"Hanzo the Razor: Sword of Justice","releaseDate":94521600000,"language":"en","type":"Movie","_key":"65631"} +{"label":"Trucks","description":"Based on the short story by Stephen King, this tells the tale of trucks suddenly coming to life and attacking their owners.","id":"17100","runtime":95,"imdbId":"tt0120380","version":282,"lastModified":"1302237724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/642\/4bc94e59017a3c57fe022642\/trucks-mid.jpg","studio":"Credo Entertainment Group","genre":"Drama","title":"Trucks","releaseDate":852076800000,"language":"en","type":"Movie","_key":"65632"} +{"label":"Chris Thomson","version":19,"id":"81237","lastModified":"1301902238000","name":"Chris Thomson","type":"Person","_key":"65633"} +{"label":"Victor Cowie","version":19,"id":"81238","lastModified":"1301902457000","name":"Victor Cowie","type":"Person","_key":"65634"} +{"label":"Sharon Bajer","version":19,"id":"81239","lastModified":"1301902457000","name":"Sharon Bajer","type":"Person","_key":"65635"} +{"label":"Bleach: The DiamondDust Rebellion","description":"When an artifact known as the \"King's Seal\" is stolen during transport from Soul Society, Hitsugaya Toushirou is assigned to retrieve it. Toushirou goes missing after a battle with the thieves, leading Seireitei to suspect him of treachery. They order his immediate capture and execution. Unwilling to believe him capable of such a crime, Ichigo, Rangiku, Rukia, and Renji set out to find Toushirou.","id":"17101","runtime":95,"imdbId":"tt1148261","homepage":"http:\/\/www.tv-tokyo.co.jp\/bleach\/2007\/index.html","version":89,"lastModified":"1302237655000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64b\/4bc94e59017a3c57fe02264b\/bleach-the-diamonddust-rebellion-mid.jpg","studio":"Dentsu Inc.","genre":"Action","title":"Bleach: The DiamondDust Rebellion","releaseDate":1198281600000,"language":"en","type":"Movie","_key":"65636"} +{"label":"Dracula : Prince of Darkness","description":"Four English travellers - the brothers Charles and Alan Kent and their wives - are stranded and find themselves guests at the castle of Dracula, whose servant Klove informs them that his late Master left instructions for visitors always to be welcomed. That night, he kidnaps Alan and uses his blood to resurrect Count Dracula from his ashes.","id":"17102","runtime":90,"imdbId":"tt0059127","version":147,"lastModified":"1302187269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/659\/4bc94e5a017a3c57fe022659\/dracula-prince-of-darkness-mid.jpg","studio":"Hammer Film Productions","genre":"Horror","title":"Dracula : Prince of Darkness","releaseDate":-125539200000,"language":"en","type":"Movie","_key":"65637"} +{"label":"Philip Latham","version":22,"id":"81247","lastModified":"1301902479000","name":"Philip Latham","type":"Person","_key":"65638"} +{"label":"Numb","description":"Hudson Milbank (Matthew Perry) is convinced that he's going insane. But he's just met the perfect girl (Lynn Collins, The Lake House) and struggles to be his most charming self. Meanwhile, he frantically seeks a cure for his anxieties and goes through a string of therapists who turn out to be crazier than him. Co-starring Kevin Pollak (The Usual Suspects) and Mary Steenburgen as a hilarious lusty ","id":"17106","runtime":93,"imdbId":"tt0795439","version":227,"lastModified":"1302237440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/126\/4d7cd53c5e73d65174002126\/numb-mid.jpg","studio":"Insight Film Studios","genre":"Comedy","title":"Numb","releaseDate":1213401600000,"language":"en","type":"Movie","_key":"65639"} +{"label":"Harris Goldberg","version":32,"id":"66564","lastModified":"1302070575000","name":"Harris Goldberg","type":"Person","_key":"65640"} +{"label":"Kung Fu Dunk","description":"Shi-Jie is a brilliant martial artist from the Kung Fu School. One day, he encounters a group of youths playing basketball and shows off how easy it is for him, with his martial arts training, to do a Slam Dunk. Watching him was Chen-Li, a shrewd businessman, who recruits him to play varsity basketball at the local university.","id":"17108","runtime":100,"imdbId":"tt0848538","homepage":"http:\/\/kungfudunk.scholarfilms.com.tw\/","version":146,"lastModified":"1302237370000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4bc94e5c017a3c57fe022670\/gong-fu-guan-lan-mid.jpg","genre":"Eastern","title":"Kung Fu Dunk","releaseDate":1202342400000,"language":"en","type":"Movie","_key":"65641"} +{"label":"Yen-ping Chu","version":32,"id":"83567","lastModified":"1301901804000","name":"Yen-ping Chu","type":"Person","_key":"65642"} +{"label":"Rush - Exit... Stage Left","description":"Rush perform at the Montreal Forum, Quebec. Filmed on March 27 1981 during their Moving Pictures tour, Rush recreate many of their classic tracks. At this stage in their career, Rush were just becoming the early 80's unlikely supergroup. The enigmatic Canadian rockers make a good attempt at capturing their live performance and atmosphere, but fall a little short of truly recreating a Rush concert.","id":"17109","runtime":0,"imdbId":"tt0391138","version":83,"lastModified":"1301907241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67e\/4bc94e5d017a3c57fe02267e\/rush-exit-stage-left-mid.jpg","genre":"Music","title":"Rush - Exit... Stage Left","releaseDate":378691200000,"language":"en","type":"Movie","_key":"65643"} +{"label":"Alex Lifeson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5cd\/4ca938077b9aa17acc0005cd\/alex-lifeson-profile.jpg","version":26,"id":"81248","lastModified":"1301901798000","name":"Alex Lifeson","type":"Person","_key":"65644"} +{"label":"Geddy Lee","version":26,"id":"81249","lastModified":"1301902164000","name":"Geddy Lee","type":"Person","_key":"65645"} +{"label":"Neil Peart","version":29,"id":"81250","lastModified":"1301902164000","name":"Neil Peart","type":"Person","_key":"65646"} +{"label":"One Point O","description":"Paranoid computer programmer Simon wakes up to find a package in his room one day. Despite attempts at securing his apartment, the packages keep arriving. While cameras watch Simon's every move, he struggles to find the answers to the mysterious forces taking over his life.","id":"17110","runtime":92,"imdbId":"tt0317042","trailer":"http:\/\/www.youtube.com\/watch?v=rw3V_VnRoaA","version":126,"lastModified":"1302237103000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/687\/4bc94e5e017a3c57fe022687\/one-point-o-mid.jpg","genre":"Science Fiction","title":"One Point O","releaseDate":1079654400000,"language":"en","type":"Movie","_key":"65647"} +{"label":"Shutter","description":"Shutter (Thai: \u0e0a\u0e31\u0e15\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e01\u0e14\u0e15\u0e34\u0e14\u0e27\u0e34\u0e0d\u0e0d\u0e32\u0e13) is a 2004 Thai horror film by Banjong Pisanthanakun and Parkpoom Wongpoom; starring Ananda Everingham, Natthaweeranuch Thongmee, and Achita Sikamana. It focuses on mysterious images seen in developed pictures.The film was remade in the United States in 2008 under the same title.","id":"17111","runtime":97,"imdbId":"tt0440803","version":122,"lastModified":"1302098536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/694\/4bc94e5f017a3c57fe022694\/shutter-mid.jpg","studio":"GMM Pictures Co.","genre":"Fantasy","title":"Shutter","releaseDate":1094688000000,"language":"en","type":"Movie","_key":"65648"} +{"label":"Banjong Pisanthanakun","version":23,"id":"81251","lastModified":"1301902053000","name":"Banjong Pisanthanakun","type":"Person","_key":"65649"} +{"label":"Parkpoom Wongpoom","version":25,"id":"81252","lastModified":"1301902238000","name":"Parkpoom Wongpoom","type":"Person","_key":"65650"} +{"label":"Natthaweeranuch Thongmee","version":19,"id":"81254","lastModified":"1301902457000","name":"Natthaweeranuch Thongmee","type":"Person","_key":"65651"} +{"label":"Unnop Chanpaibool","version":19,"id":"81255","lastModified":"1301902064000","name":"Unnop Chanpaibool","type":"Person","_key":"65652"} +{"label":"Rush: Chronicles","description":"Whilst Rush have always been considered one of Rock's greatest hidden treasures, with complex, intricate musicianship, it can never be said that Music Video was their fort\u00e9. With this collection of 'hit' videos from Rush we can see why. Almost befittingly, Rush's best videos appear to be those that simply demonstrate their playing. Studio footage of Rush is rare and welcomed on this DVD.","id":"17112","runtime":63,"imdbId":"tt1438502","version":61,"lastModified":"1302122898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/699\/4bc94e5f017a3c57fe022699\/rush-chronicles-mid.jpg","genre":"Music","title":"Rush: Chronicles","releaseDate":631152000000,"language":"en","type":"Movie","_key":"65653"} +{"label":"The Ballad of Jack and Rose","description":"No overview found.","id":"17113","runtime":112,"imdbId":"tt0357110","version":149,"lastModified":"1302184503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69e\/4bc94e5f017a3c57fe02269e\/the-ballad-of-jack-and-rose-mid.jpg","genre":"Drama","title":"The Ballad of Jack and Rose","releaseDate":1107648000000,"language":"en","type":"Movie","_key":"65654"} +{"label":"Rush: A Show of Hands","description":"By 1988, Rush had reached the pinnacle of their success. Internationally acclaimed as one of the world's greatest live acts, Rush remained an enigma. With little airplay or MTV coverage, yet arenas of fans, Rush capture 3 nights of their Hold Your Fire tour at the NEC, UK during April 1988. This third attempt to capture their live atmosphere still doesn't quite hit the mark.","id":"17114","runtime":0,"imdbId":"tt0391450","version":103,"lastModified":"1302183912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b4\/4bc94e64017a3c57fe0226b4\/rush-a-show-of-hands-mid.jpg","genre":"Music","title":"Rush: A Show of Hands","releaseDate":599616000000,"language":"en","type":"Movie","_key":"65655"} +{"label":"Rush: R30","description":"After their 5 year hiatus due to tragic events in drummer Neil Peart's life, Rush regrouped. 30 years with the same line-up was cause for celebration - and Rush duly did so with the R30 world tour. Here Rush capture their stage show well. Recorded in Frankfurt, 24 September 2004, we are offered a great mix of material from their latest offering Vapor Trails, way back to their much earlier material","id":"17118","runtime":120,"imdbId":"tt0497527","version":105,"lastModified":"1301947264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6bd\/4bc94e65017a3c57fe0226bd\/rush-r30-mid.jpg","genre":"Music","title":"Rush: R30","releaseDate":1133136000000,"language":"en","type":"Movie","_key":"65656"} +{"label":"Rush: Grace Under Pressure Tour 1984","description":"By 1984, Rush were becoming the world's most popular 'underground' band. The world was also in a sombre mood, perhaps reflecting on George Orwell's 1984 thoughts. Rush's music from the Grace Under Pressure album captured this mood well, and their footage of the Maple Leaf Gardens concert in their home town Toronto on 21 September 1984 covers many of the stunning tracks from that album.","id":"17119","runtime":0,"imdbId":"tt0477434","version":94,"lastModified":"1302097614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ce\/4bc94e67017a3c57fe0226ce\/rush-grace-under-pressure-mid.jpg","genre":"Music","title":"Rush: Grace Under Pressure Tour 1984","releaseDate":441763200000,"language":"en","type":"Movie","_key":"65657"} +{"label":"Bless This House","description":"1970s English suburbia: middle-aged home-owner Sid Abbot just wants to get on with building his illegal whisky still, but is frustrated by his work-shy son, and otherworldly daughter. Then the rude and arrogant Ronald Baines and his family move in next door. Garden-fence hostilities soon commence.","id":"17120","runtime":87,"imdbId":"tt0068285","version":260,"lastModified":"1302236409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d3\/4bc94e67017a3c57fe0226d3\/bless-this-house-mid.jpg","genre":"Comedy","title":"Bless This House","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65658"} +{"label":"Y2K","description":"No overview found.","id":"17122","runtime":106,"imdbId":"tt0196221","version":62,"lastModified":"1301946380000","title":"Y2K","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65659"} +{"label":"Wild Things 3","description":"Once again set in the oceanfront Florida city of Blue Bay, \"Wild Things 3\" tells the tale of snobby rich girl Marie Clifton. Although she lives the life of luxury, Marie's distraught over her stepfather not giving her a pair of diamonds, valued at over $4 million, that are entitled to her in her late mother's will. That is, until one of her classmates, the local bad girl Elena Sandoval, accuses her stepfather of rape. Soon, it's deja Vi all over again as Detective Michael Morrison and probation ","id":"17124","runtime":87,"imdbId":"tt0448179","trailer":"http:\/\/www.youtube.com\/watch?v=1139","version":159,"lastModified":"1302236235000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dc\/4bc94e68017a3c57fe0226dc\/wild-things-3-mid.jpg","studio":"Lightning Entertainment","genre":"Drama","title":"Wild Things 3","releaseDate":1108771200000,"language":"en","tagline":"Diamonds in the Rough","type":"Movie","_key":"65660"} +{"label":"Serah D'Laine","version":21,"id":"81270","lastModified":"1301901381000","name":"Serah D'Laine","type":"Person","_key":"65661"} +{"label":"Jay Lowi","version":22,"id":"81272","lastModified":"1301902238000","name":"Jay Lowi","type":"Person","_key":"65662"} +{"label":"Satisfaction","description":"When a young rock group called The Mystery gets its first gig at a club, it's an opportunity to see what life is all about! Fresh out of high school, the rockers are hired by an exclusive beach resort thanks to a faded '60s songwriter. There, they meet with romance and adventure. But street-smart lead singer Jennie Lee faces a dilemma: pursue her budding career or finish high school.","id":"17126","runtime":92,"imdbId":"tt0096037","version":117,"lastModified":"1302121467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e6\/4bc94e68017a3c57fe0226e6\/satisfaction-mid.jpg","genre":"Comedy","title":"Satisfaction","releaseDate":571622400000,"language":"en","type":"Movie","_key":"65663"} +{"label":"The Object of My Affection","description":"A pregnant New York social worker begins to develop romantic feelings for her gay best friend, and decides she'd rather raise her child with him, much to the dismay of her overbearing boyfriend.","id":"17127","runtime":111,"imdbId":"tt0120772","trailer":"http:\/\/www.youtube.com\/watch?v=c_lNnxTPB9A","version":143,"lastModified":"1302235782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f0\/4bc94e68017a3c57fe0226f0\/the-object-of-my-affection-mid.jpg","genre":"Comedy","title":"The Object of My Affection","releaseDate":892771200000,"language":"en","tagline":"Sometimes The Most Desirable Relationship Is The One You Can't Have","type":"Movie","_key":"65664"} +{"label":"Hanzo the Razor: The Snare","description":"Against the backdrop of the Edo treasury devaluing currency and driving many into poverty, Hanzo Itami enforces the law without regard to status. He shows inadequate respect to the treasurer, who wants him dead.","id":"17128","runtime":89,"imdbId":"tt0174707","version":65,"lastModified":"1302043620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fd\/4bc94e6b017a3c57fe0226fd\/goyokiba-kamisori-hanzo-jigoku-zeme-mid.jpg","genre":"Action","title":"Hanzo the Razor: The Snare","releaseDate":113875200000,"language":"en","type":"Movie","_key":"65665"} +{"label":"Yasuzo Masumura","version":26,"id":"81273","lastModified":"1301902347000","name":"Yasuzo Masumura","type":"Person","_key":"65666"} +{"label":"Hanzo the Razor: Who's Got the Gold?","description":"Hanzo extracts a confession from a ghost using his assaulting methods, foils thieves, connects with Heisuke Takei a friend from his youth, offers protection to a forward-thinking physician Genan Sugino who has defamed his ruler, discovers a pleasure ring of young wives and a blind music teacher, and cuckolds a corrupt official under his very nose.","id":"17129","runtime":84,"imdbId":"tt0174708","version":95,"lastModified":"1301944959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc94e6c017a3c57fe02270a\/goyokiba-oni-no-hanzo-yawahada-koban-mid.jpg","genre":"Action","title":"Hanzo the Razor: Who's Got the Gold?","releaseDate":129600000000,"language":"en","type":"Movie","_key":"65667"} +{"label":"Yoshio Inoue","version":21,"id":"81275","lastModified":"1301902376000","name":"Yoshio Inoue","type":"Person","_key":"65668"} +{"label":"Mako Midori","version":21,"id":"81276","lastModified":"1301902186000","name":"Mako Midori","type":"Person","_key":"65669"} +{"label":"Mikio Narita","version":24,"id":"81277","lastModified":"1301902225000","name":"Mikio Narita","type":"Person","_key":"65670"} +{"label":"Asao Koike","version":24,"id":"81278","lastModified":"1301902419000","name":"Asao Koike","type":"Person","_key":"65671"} +{"label":"Etsushi Takahashi","version":26,"id":"81279","lastModified":"1301902349000","name":"Etsushi Takahashi","type":"Person","_key":"65672"} +{"label":"Daigo Kusano","version":21,"id":"81280","lastModified":"1301902508000","name":"Daigo Kusano","type":"Person","_key":"65673"} +{"label":"Keiz\u00f4 Kani'e","version":23,"id":"81281","lastModified":"1301902510000","name":"Keiz\u00f4 Kani'e","type":"Person","_key":"65674"} +{"label":"Crossroads","description":"Three friends get together and bury a box making a pact to open it at midnight at their high school graduation. In the little town in Georgia that they live in, things soon change. One is little miss perfect, one is an engaged prom queen, and the other is a pregnant outcast. The night of graduation, they open the box and they strike up a conversation. All of a sudden, one brings up the topic of ..","id":"17130","runtime":93,"imdbId":"tt0275022","version":190,"lastModified":"1302042665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fc\/4d654fe95e73d66a5c0008fc\/crossroads-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Crossroads","releaseDate":1013731200000,"language":"en","tagline":"Dreams change. Friends are forever","type":"Movie","_key":"65675"} +{"label":"Britney Spears","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9b6\/4c0bb5b3017a3c7e890009b6\/britney-spears-profile.jpg","version":29,"birthday":"376095600000","id":"111946","birthplace":"McComb, Mississippi, United States","lastModified":"1301901648000","name":"Britney Spears","type":"Person","_key":"65676"} +{"label":"The Glass Key","description":"When a corrupt politician Paul Madvig (Brian Donlevy) is accused of murder, his friend and right hand man Ed Beaumont (Alan Ladd) is determined to track down the real killer. Fending off amorous advances from his boss\u2019 fianc\u00e9e Janet Henry (Veronica Lake) and attacks from gangsters with nothing to lose, Beaumont\u2019s loyalty is severely tested.","id":"17131","runtime":85,"imdbId":"tt0034798","trailer":"http:\/\/www.youtube.com\/watch?v=Aywg8MVnc1s","version":114,"lastModified":"1302120551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71d\/4bc94e72017a3c57fe02271d\/the-glass-key-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Glass Key","releaseDate":-858902400000,"language":"en","type":"Movie","_key":"65677"} +{"label":"Frances Gifford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c0\/4bf1b244017a3c32130002c0\/frances-gifford-profile.jpg","version":24,"id":"81282","lastModified":"1301902390000","name":"Frances Gifford","type":"Person","_key":"65678"} +{"label":"Eddie Marr","version":30,"id":"81284","lastModified":"1301902420000","name":"Eddie Marr","type":"Person","_key":"65679"} +{"label":"Stuart Heisler","version":26,"id":"81285","lastModified":"1302056463000","name":"Stuart Heisler","type":"Person","_key":"65680"} +{"label":"Savannah Smiles","description":"No overview found.","id":"17132","runtime":105,"imdbId":"tt0084633","version":196,"lastModified":"1302235397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/722\/4bc94e72017a3c57fe022722\/savannah-smiles-mid.jpg","genre":"Family","title":"Savannah Smiles","releaseDate":378691200000,"language":"en","type":"Movie","_key":"65681"} +{"label":"Homegrown","description":"Three laborers on a Northern California marijuana plantation become increasingly paranoid when they learn that their boss has been murdered. They know enough to run, taking with them enough of the crop to pay them for services rendered. Hooking up with go-between Lucy in the next town, they plot their next move. ","id":"17133","runtime":102,"imdbId":"tt0119305","version":197,"lastModified":"1302120073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/727\/4bc94e73017a3c57fe022727\/homegrown-mid.jpg","studio":"Tri Star","genre":"Comedy","title":"Homegrown","releaseDate":883612800000,"language":"en","type":"Movie","_key":"65682"} +{"label":"12 Rounds","description":"A New Orleans police detective's girlfriend is kidnapped. WWE champion John Cena is New Orleans Police Detective Danny Fisher. When Baxter stops a brilliant thief from getting away with a multi-million-dollar heist, the thiefs girlfriend is accidentally killed. After escaping from prison, the criminal mastermind enacts his revenge, taunting the cop with a series of near-impossible puzzles and tasks 12 rounds that Baxter must somehow complete to save the life of his fianc\u00e9e.","id":"17134","runtime":108,"imdbId":"tt1160368","trailer":"http:\/\/www.youtube.com\/watch?v=Mp3Aqe8FrNE","homepage":"http:\/\/www.12rounds-movie.com\/","version":363,"lastModified":"1302215663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/744\/4bc94e75017a3c57fe022744\/12-rounds-mid.jpg","studio":"The Mark Gordon Company","genre":"Action","title":"12 Rounds","releaseDate":1237420800000,"language":"en","type":"Movie","_key":"65683"} +{"label":"Gonzalo Menendez","version":26,"id":"84754","lastModified":"1301901133000","name":"Gonzalo Menendez","type":"Person","_key":"65684"} +{"label":"Taylor Cole","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b88\/4d92f5875e73d62277000b88\/taylor-cole-profile.jpg","version":32,"id":"54182","lastModified":"1301901592000","name":"Taylor Cole","type":"Person","_key":"65685"} +{"label":"Kyle Russell Clements","version":25,"id":"84756","lastModified":"1301901123000","name":"Kyle Russell Clements","type":"Person","_key":"65686"} +{"label":"Peter Navy Tuiasosopo","version":25,"id":"84757","lastModified":"1301901134000","name":"Peter Navy Tuiasosopo","type":"Person","_key":"65687"} +{"label":"Travis Davis","version":25,"id":"84759","lastModified":"1301901144000","name":"Travis Davis","type":"Person","_key":"65688"} +{"label":"Nick Gomez","version":25,"id":"84760","lastModified":"1301901128000","name":"Nick Gomez","type":"Person","_key":"65689"} +{"label":"Omega Doom","description":"After earth is taken over by an army of robots, the small number of humans left are forced into hiding. In the nuclear winter, only droids walk the face of the earth, in fear of the rumored human resurgence, and in search of a hidden cache of weapons. One robot, his evil circuits destroyed, enters a small town where a robot civil war is taking place.","id":"17135","runtime":84,"imdbId":"tt0117238","version":91,"lastModified":"1302039598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/762\/4bc94e7b017a3c57fe022762\/omega-doom-mid.jpg","genre":"Science Fiction","title":"Omega Doom","releaseDate":820454400000,"language":"en","tagline":"Robots rule the Earth. Only one man can stop them.","type":"Movie","_key":"65690"} +{"label":"Shannon Whirry","version":25,"id":"81287","lastModified":"1301970819000","name":"Shannon Whirry","type":"Person","_key":"65691"} +{"label":"The Woman in the Window","description":"A seductive woman gets an innocent professor mixed up in murder.","id":"17136","runtime":99,"imdbId":"tt0037469","trailer":"http:\/\/www.youtube.com\/watch?v=QO_O8v5JEew","version":124,"lastModified":"1302070024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76b\/4bc94e7b017a3c57fe02276b\/the-woman-in-the-window-mid.jpg","studio":"International Pictures","genre":"Drama","title":"The Woman in the Window","releaseDate":-794016000000,"language":"en","type":"Movie","_key":"65692"} +{"label":"Thomas E. Jackson","version":29,"id":"81292","lastModified":"1301901421000","name":"Thomas E. Jackson","type":"Person","_key":"65693"} +{"label":"Dorothy Peterson","version":28,"id":"81293","lastModified":"1301902238000","name":"Dorothy Peterson","type":"Person","_key":"65694"} +{"label":"What We Do Is Secret","description":"A biopic of punk legend Darby Crash and his band, the Germs.","id":"17137","runtime":92,"imdbId":"tt0384683","homepage":"http:\/\/www.whatwedoissecretthemovie.com\/","version":205,"lastModified":"1302234987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/788\/4bc94e82017a3c57fe022788\/what-we-do-is-secret-mid.jpg","genre":"Drama","title":"What We Do Is Secret","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65695"} +{"label":"Rodger Grossman","version":20,"id":"81296","lastModified":"1301902238000","name":"Rodger Grossman","type":"Person","_key":"65696"} +{"label":"The 8th Plague","description":"The 8th Plague is the story of a woman named Launa who is investigating the disappearance of her sister, Nikki. Nikki had gone camping in the mountain town of Halcyon Springs and never came back. Becoming more and more frustrated, Launa realizes that she must find her sister on her own with the help of Mason, a mysterious local man with a shadowed past.","id":"17138","runtime":95,"imdbId":"tt0479219","version":272,"lastModified":"1302234782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/792\/4bc94e84017a3c57fe022792\/the-8th-plague-mid.jpg","studio":"Two for Flinching Productions LLC","genre":"Action","title":"The 8th Plague","releaseDate":1157328000000,"language":"en","type":"Movie","_key":"65697"} +{"label":"Franklin Guerrero Jr.","version":22,"id":"77662","lastModified":"1301901562000","name":"Franklin Guerrero Jr.","type":"Person","_key":"65698"} +{"label":"Leslie Anne Valenza","version":17,"id":"81306","lastModified":"1301902238000","name":"Leslie Anne Valenza","type":"Person","_key":"65699"} +{"label":"Terry Jernigan","version":20,"id":"81307","lastModified":"1301902238000","name":"Terry Jernigan","type":"Person","_key":"65700"} +{"label":"Charles Edwin Powell","version":19,"id":"81308","lastModified":"1301902457000","name":"Charles Edwin Powell","type":"Person","_key":"65701"} +{"label":"Nitin Adsul","version":19,"id":"81309","lastModified":"1301902238000","name":"Nitin Adsul","type":"Person","_key":"65702"} +{"label":"Hollis McLachlan","version":19,"id":"81310","lastModified":"1301902457000","name":"Hollis McLachlan","type":"Person","_key":"65703"} +{"label":"Jonathan Rockett","version":19,"id":"81311","lastModified":"1301902238000","name":"Jonathan Rockett","type":"Person","_key":"65704"} +{"label":"Laura Chaves","version":19,"id":"81312","lastModified":"1301902238000","name":"Laura Chaves","type":"Person","_key":"65705"} +{"label":"Paul Bugelski","version":19,"id":"81313","lastModified":"1301902238000","name":"Paul Bugelski","type":"Person","_key":"65706"} +{"label":"Syn DeVil","version":23,"id":"81314","lastModified":"1301902493000","name":"Syn DeVil","type":"Person","_key":"65707"} +{"label":"Bryant Sullivan","version":19,"id":"81315","lastModified":"1301902238000","name":"Bryant Sullivan","type":"Person","_key":"65708"} +{"label":"Character ","description":"J.W. Katadreuffe is the son of Joba Katadreuffe and A.B. Drevenhaven. Though fully neglected by Joba, Dreverhaven ensures the succesfull career of his son. Mostly unseen, though he sues his son a few times. The son Katadreuffe succeeds, but at great costs.","id":"17139","runtime":122,"imdbId":"tt0119448","version":104,"lastModified":"1302175024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79b\/4bc94e85017a3c57fe02279b\/karakter-mid.jpg","studio":"First Floor Features","genre":"Drama","title":"Character ","releaseDate":861235200000,"language":"en","type":"Movie","_key":"65709"} +{"label":"Mike van Diem","version":22,"id":"123150","lastModified":"1301902651000","name":"Mike van Diem","type":"Person","_key":"65710"} +{"label":"Tamar van den Dop","version":18,"id":"143010","lastModified":"1301902351000","name":"Tamar van den Dop","type":"Person","_key":"65711"} +{"label":"The Attic Expeditions","description":"Trevor is a young man who has been sentenced to a long stay in a mental hospital after brutally killing his girlfriend. However, the longer Trevor is in stir, the more he wonders if the murder ever really happened, or if it's all just a horrible fantasy implanted in his brain by Dr. Ek, the sinister director of the asylum.","id":"17140","runtime":100,"imdbId":"tt0118652","version":110,"lastModified":"1302234605000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a0\/4bc94e85017a3c57fe0227a0\/the-attic-expeditions-mid.jpg","studio":"Tse Tse Fly Productions","genre":"Horror","title":"The Attic Expeditions","releaseDate":1080691200000,"language":"en","type":"Movie","_key":"65712"} +{"label":"Jeremy Kasten","version":19,"id":"81322","lastModified":"1301902238000","name":"Jeremy Kasten","type":"Person","_key":"65713"} +{"label":"Wendy Robie","version":17,"id":"15855","lastModified":"1301901645000","name":"Wendy Robie","type":"Person","_key":"65714"} +{"label":"Beth Bates","version":20,"id":"81324","lastModified":"1301902524000","name":"Beth Bates","type":"Person","_key":"65715"} +{"label":"Shannon Hart Cleary","version":19,"id":"81325","lastModified":"1301902457000","name":"Shannon Hart Cleary","type":"Person","_key":"65716"} +{"label":"Jerry Hauck","version":19,"id":"81326","lastModified":"1301902457000","name":"Jerry Hauck","type":"Person","_key":"65717"} +{"label":"Blood Car","description":"In the near future, gas prices are at an astronomical high. One man is determined to find an alternate fuel source. That alternate fuel source turns out to be blood...HUMAN BLOOD.","id":"17141","runtime":76,"imdbId":"tt0780485","homepage":"http:\/\/www.bloodcar.com\/","version":262,"lastModified":"1302234406000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a9\/4bc94e86017a3c57fe0227a9\/blood-car-mid.jpg","studio":"FWW Films","genre":"Comedy","title":"Blood Car","releaseDate":1186617600000,"language":"en","type":"Movie","_key":"65718"} +{"label":"Alex Orr","version":19,"id":"81334","lastModified":"1301901947000","name":"Alex Orr","type":"Person","_key":"65719"} +{"label":"Mike Brune","version":19,"id":"81341","lastModified":"1301901778000","name":"Mike Brune","type":"Person","_key":"65720"} +{"label":"Katie Rowlett","version":19,"id":"81342","lastModified":"1301901646000","name":"Katie Rowlett","type":"Person","_key":"65721"} +{"label":"Matt Hutchinson","version":19,"id":"81343","lastModified":"1301901947000","name":"Matt Hutchinson","type":"Person","_key":"65722"} +{"label":"Freebird","description":"A Rock and Roll Road Movie Comedy set in Wales","id":"17142","runtime":89,"imdbId":"tt0478154","version":59,"lastModified":"1302020770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b2\/4bc94e87017a3c57fe0227b2\/freebird-mid.jpg","genre":"Comedy","title":"Freebird","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65723"} +{"label":"Laila Rouass","version":22,"id":"81346","lastModified":"1301901778000","name":"Laila Rouass","type":"Person","_key":"65724"} +{"label":"Fast Track: No Limits","description":"An action movie centered around a group of street racers.","id":"17143","runtime":96,"imdbId":"tt1043635","version":233,"lastModified":"1302173278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d67\/4d4cec875e73d617ba001d67\/fast-track-no-limits-mid.jpg","genre":"Action","title":"Fast Track: No Limits","releaseDate":1203552000000,"language":"en","tagline":"This street race is about to get deadly","type":"Movie","_key":"65725"} +{"label":"Andrew W. Walker","version":18,"id":"134673","lastModified":"1301903077000","name":"Andrew W. Walker","type":"Person","_key":"65726"} +{"label":"Exit Speed","description":"On Christmas Eve, ten strangers board a bus traveling across Texas. Far out in the wilds they collide with a meth-addicted biker","id":"17144","runtime":91,"imdbId":"tt1042497","version":163,"lastModified":"1302233204000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e6\/4bc94e8b017a3c57fe0227e6\/exit-speed-mid.jpg","genre":"Action","title":"Exit Speed","releaseDate":1219708800000,"language":"en","type":"Movie","_key":"65727"} +{"label":"Julie Mond","version":19,"id":"81349","lastModified":"1301901474000","name":"Julie Mond","type":"Person","_key":"65728"} +{"label":"20-seiki sh\u00f4nen","description":"Kenji and his friends in the club created an amateur comic book that imagined an apocalyptic future in which strange illnesses and bands of armed insurgents threatened to destroy the world. A fanatical cult known as Friend found the book and they've made it their business to turn it into a reality, and now Kenji and his old friends have to infiltrate the cult and stop them before it's too late.","id":"17149","homepage":"http:\/\/www.4digitalmedia.com\/20cb\/","version":156,"lastModified":"1302233111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ef\/4bc94e8f017a3c57fe0227ef\/20-seiki-shonen-mid.jpg","title":"20-seiki sh\u00f4nen","language":"en","type":"Movie","_key":"65729"} +{"label":"Cactus","description":"A man is kidnapped from his city home in the quiet hours of the night and, the kidnapper, John Kelly, embarks on a journey into the Australian Outback towards the place where his hostage is due for delivery. As time and distance roll by, the strength and endurance of both men will be tested to the very end.","id":"17152","runtime":90,"imdbId":"tt1039949","version":102,"lastModified":"1302019457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/801\/4bc94e90017a3c57fe022801\/cactus-mid.jpg","studio":"Open Space Films","genre":"Thriller","title":"Cactus","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"65730"} +{"label":"Daniel Krige","version":19,"id":"84555","lastModified":"1301902632000","name":"Daniel Krige","type":"Person","_key":"65731"} +{"label":"Celia Ireland","version":19,"id":"84556","lastModified":"1301902632000","name":"Celia Ireland","type":"Person","_key":"65732"} +{"label":"Jasmine Yuen Carrucan","version":20,"id":"84557","lastModified":"1301902047000","name":"Jasmine Yuen Carrucan","type":"Person","_key":"65733"} +{"label":"Botched","description":"Ritchie Donovan is a professional thief whose luck has just run out. The only survivor from a heist that goes terribly wrong, Ritchie is forced to take the rap and is sent to Russia to steal a priceless antique cross locked in a safe on the penthouse floor of a Moscow skyscraper.","id":"17153","runtime":95,"imdbId":"tt0790590","version":137,"lastModified":"1302019049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/80a\/4bc94e91017a3c57fe02280a\/botched-mid.jpg","title":"Botched","releaseDate":1208476800000,"language":"en","type":"Movie","_key":"65734"} +{"label":"Kit Ryan","version":21,"id":"81353","lastModified":"1301902324000","name":"Kit Ryan","type":"Person","_key":"65735"} +{"label":"Black Ribbon","description":"No overview found.","id":"17154","runtime":0,"imdbId":"tt1077236","version":1858,"lastModified":"1302232429000","genre":"Horror","title":"Black Ribbon","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65736"} +{"label":"Bigga Than Ben","description":"Spiker & Cobakka are two self-confessed 'pieces of Moscow scum' who come to London to rip it off. This is their guide.","id":"17155","runtime":82,"imdbId":"tt0831275","version":139,"lastModified":"1302231703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/813\/4bc94e91017a3c57fe022813\/bigga-than-ben-mid.jpg","title":"Bigga Than Ben","releaseDate":1226966400000,"language":"en","type":"Movie","_key":"65737"} +{"label":"Suzie Halewood","version":22,"id":"81357","lastModified":"1301902388000","name":"Suzie Halewood","type":"Person","_key":"65738"} +{"label":"Andrey Chadov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/eaf\/4d7c52185e73d62828001eaf\/andrey-chadov-profile.jpg","version":26,"id":"82718","lastModified":"1301902535000","name":"Andrey Chadov","type":"Person","_key":"65739"} +{"label":"The Anna Nicole Smith Story","description":"Born Vickie Lynn Hogan, she had a son at 18, became a stripper at 20, and married a billionaire at 26. Sheer determination turned her into Anna Nicole Smith, playmate, model and a household name.","id":"17156","runtime":83,"imdbId":"tt1009012","version":383,"lastModified":"1302231604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f35\/4d962dd35e73d62274003f35\/the-anna-nicole-smith-story-mid.jpg","title":"The Anna Nicole Smith Story","releaseDate":1188432000000,"language":"en","tagline":"From stripper to Playmate to household name.","type":"Movie","_key":"65740"} +{"label":"Patrick Ryan Anderson","version":3,"id":"231401","lastModified":"1301680599000","name":"Patrick Ryan Anderson","type":"Person","_key":"65741"} +{"label":"Ace of Hearts","description":"Officer Daniel Harding is a distinguished member of the K-9 police unit. His partner and best friend is Ace, a police dog. When Ace is accused of mauling a suspect, an overzealous DA convinces police authorities that Ace should be euthanized.","id":"17157","runtime":100,"imdbId":"tt1032746","version":166,"lastModified":"1302169361000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/820\/4bc94e92017a3c57fe022820\/ace-of-hearts-mid.jpg","genre":"Drama","title":"Ace of Hearts","releaseDate":1210032000000,"language":"en","tagline":"Based on a true story of K9 heroism & family loyalty","type":"Movie","_key":"65742"} +{"label":"They Wait","description":"A young mother and her six-year-old son come face to face with the mysteries of two murders and a great crime against the Chinese community into which they have recently arrived from Shanghai.","id":"17158","runtime":99,"imdbId":"tt0869152","version":118,"lastModified":"1302066308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/825\/4bc94e93017a3c57fe022825\/they-wait-mid.jpg","genre":"Horror","title":"They Wait","releaseDate":1167609600000,"language":"en","tagline":"They wait... to ensure the past is not forgotten.","type":"Movie","_key":"65743"} +{"label":"Eddie Murphy: Raw","description":"After achieving fame with Saturday Night Live and Beverly Hills Cop, Eddie Murphy released a film version of one of his live stand-up performances. He mainly focuses on the topics of divorce and relations between the sexes, but also goes into some of the problems he's encountered because of fame, including offended listeners and fans who continually greet him with his unprintable catch phrases.","id":"17159","runtime":93,"imdbId":"tt0092948","trailer":"http:\/\/www.youtube.com\/watch?v=1141","version":184,"lastModified":"1302168593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51b\/4c61df227b9aa172da00051b\/eddie-murphy-raw-mid.jpg","studio":"Eddie Murphy Productions","genre":"Comedy","title":"Eddie Murphy: Raw","releaseDate":564796800000,"language":"en","type":"Movie","_key":"65744"} +{"label":"Billie Allen","version":15,"id":"171029","lastModified":"1301903565000","name":"Billie Allen","type":"Person","_key":"65745"} +{"label":"James Brown III","version":6,"id":"230430","lastModified":"1301904128000","name":"James Brown III","type":"Person","_key":"65746"} +{"label":"Eyde Byrde","version":19,"id":"90187","lastModified":"1301902871000","name":"Eyde Byrde","type":"Person","_key":"65747"} +{"label":"Michelle Davison","version":13,"id":"157050","lastModified":"1301903577000","name":"Michelle Davison","type":"Person","_key":"65748"} +{"label":"Clebert Ford","version":13,"id":"171149","lastModified":"1301903584000","name":"Clebert Ford","type":"Person","_key":"65749"} +{"label":"Geri Gibson","version":4,"id":"230434","lastModified":"1301904122000","name":"Geri Gibson","type":"Person","_key":"65750"} +{"label":"Birdie M. Hale","version":13,"id":"192602","lastModified":"1301903158000","name":"Birdie M. Hale","type":"Person","_key":"65751"} +{"label":"J. D. Hall","version":4,"id":"230435","lastModified":"1301904128000","name":"J. D. Hall","type":"Person","_key":"65752"} +{"label":"Tiger Haynes","version":17,"id":"90186","lastModified":"1301902871000","name":"Tiger Haynes","type":"Person","_key":"65753"} +{"label":"Barbara Iley","version":4,"id":"230436","lastModified":"1301904123000","name":"Barbara Iley","type":"Person","_key":"65754"} +{"label":"Jody Jones","version":13,"id":"190368","lastModified":"1301903184000","name":"Jody Jones","type":"Person","_key":"65755"} +{"label":"WWE: Greatest Wrestling Stars of the '90s","description":"This retrospective program takes a look back on the most dramatic and memorable professional wrestling moments of the 1990s, with profiles on some of the greatest wrestling stars of the decade, and an account of the feud between WCW and the WWE.","id":"17160","runtime":540,"imdbId":"tt1393836","version":44,"lastModified":"1301908622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/833\/4bc94e93017a3c57fe022833\/wwe-greatest-wrestling-stars-of-the-90s-mid.jpg","title":"WWE: Greatest Wrestling Stars of the '90s","releaseDate":1239667200000,"language":"en","type":"Movie","_key":"65756"} +{"label":"WWE - TLC: Tables Ladders Chairs","description":"TLC features some of the most amazing prop matches ever in the WWF, as wrestlers use tables, chairs, and ladders in endlessly inventive maneuvers that always causes some serious damage to their opponents.","id":"17161","runtime":60,"imdbId":"tt1459018","version":52,"lastModified":"1301904028000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83c\/4bc94e94017a3c57fe02283c\/wwe-tlc-tables-ladders-chairs-mid.jpg","genre":"Sports Film","title":"WWE - TLC: Tables Ladders Chairs","releaseDate":1012867200000,"language":"en","type":"Movie","_key":"65757"} +{"label":"Jag Jeondeyan De Mele","description":"Fortunate are those who are able to live the rest of their lives with whom they first fall in love with. \"Baljit Singh Deo\" The film reflects a journey of a young man Abahijot (Harbhajan Mann), which holds so much excitement, dreams, sadness, happiness, hate and love. Parting from your loved ones is only a phase everyone goes through but the love remains strong in the hearts of those who are left","id":"17164","runtime":160,"imdbId":"tt1500815","homepage":"http:\/\/www.jjdmthemovie.com\/","version":75,"lastModified":"1302230986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/855\/4bc94e97017a3c57fe022855\/jag-jeondeyan-de-mele-mid.jpg","genre":"Drama","title":"Jag Jeondeyan De Mele","releaseDate":1235088000000,"language":"en","type":"Movie","_key":"65758"} +{"label":"Tulip Joshi","version":21,"id":"87703","lastModified":"1301902219000","name":"Tulip Joshi","type":"Person","_key":"65759"} +{"label":"Baljit Singh Deo","version":16,"id":"140721","lastModified":"1301902770000","name":"Baljit Singh Deo","type":"Person","_key":"65760"} +{"label":"Bleach: Fade to Black","description":"A mysterious reiatsu (spiritual particle) explosion occurs in the center of Seireitei in Soul Society, causing it to be destroyed. At the exact same time, a major change overwhelms Kuchiki Rukia, which leaves her losing something important inside. Urahara Kisuke sends Kurosaki Ichigo to Soul Society to investigate the disturbance. Upon reaching Seireitei, Ichigo is attacked by his ally shinigamis","id":"17165","runtime":94,"imdbId":"tt1339302","trailer":"http:\/\/www.youtube.com\/watch?v=1142","homepage":"http:\/\/www.bleach-movie.com\/","version":99,"lastModified":"1302230802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86b\/4bc94e9b017a3c57fe02286b\/bleach-fade-to-black-mid.jpg","studio":"Dentsu Inc.","genre":"Action","title":"Bleach: Fade to Black","releaseDate":1229126400000,"language":"en","type":"Movie","_key":"65761"} +{"label":"Kentar\u00f4 It\u00f4","version":21,"id":"81363","lastModified":"1301902376000","name":"Kentar\u00f4 It\u00f4","type":"Person","_key":"65762"} +{"label":"Aya Hirano","version":21,"id":"144650","lastModified":"1302042353000","name":"Aya Hirano","type":"Person","_key":"65763"} +{"label":"Hiroshi Kamiya","version":36,"id":"93801","lastModified":"1302042353000","name":"Hiroshi Kamiya","type":"Person","_key":"65764"} +{"label":"Shouto Kashii","version":13,"id":"222404","lastModified":"1301903973000","name":"Shouto Kashii","type":"Person","_key":"65765"} +{"label":"Satsuki Yukino","version":22,"id":"112205","lastModified":"1301902991000","name":"Satsuki Yukino","type":"Person","_key":"65766"} +{"label":"Kouki Miyata","version":13,"id":"221771","lastModified":"1301903974000","name":"Kouki Miyata","type":"Person","_key":"65767"} +{"label":"Insanitarium","description":"After he's institutionalized in order to cover for his sister, a young man encounters a doctor who is turning his patients into flesh-eating psychopaths","id":"17166","runtime":89,"imdbId":"tt1103984","version":158,"lastModified":"1302166598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4bc94e9c017a3c57fe02287e\/insanitarium-mid.jpg","studio":"Bender-Spink Inc.","genre":"Horror","title":"Insanitarium","releaseDate":1216080000000,"language":"en","type":"Movie","_key":"65768"} +{"label":"Jeff Buhler","version":26,"id":"67359","lastModified":"1301901973000","name":"Jeff Buhler","type":"Person","_key":"65769"} +{"label":"Kurt Caceres","version":20,"id":"59889","lastModified":"1301902365000","name":"Kurt Caceres","type":"Person","_key":"65770"} +{"label":"Dale Waddington","version":18,"id":"81365","lastModified":"1301902529000","name":"Dale Waddington","type":"Person","_key":"65771"} +{"label":"Juncture","description":"When Anna Carter (Kristine Blackport) is diagnosed with a terminal illness, she sees her final three months as an opportunity to enact some vigilante justice. Racing her deteriorating health and trying to stay one step ahead of the police, Carter furiously tracks down vicious criminals whom she feels unjustly eluded jail time. ","id":"17167","runtime":106,"imdbId":"tt0765462","version":99,"lastModified":"1302165990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/887\/4bc94e9d017a3c57fe022887\/juncture-mid.jpg","studio":"Front Range Films","genre":"Action","title":"Juncture","releaseDate":1191628800000,"language":"en","type":"Movie","_key":"65772"} +{"label":"Robert Gosnell","version":20,"id":"73766","lastModified":"1301902304000","name":"Robert Gosnell","type":"Person","_key":"65773"} +{"label":"Kristine Blackport","version":19,"id":"81366","lastModified":"1301902457000","name":"Kristine Blackport","type":"Person","_key":"65774"} +{"label":"Jason Coviello","version":19,"id":"81367","lastModified":"1301902457000","name":"Jason Coviello","type":"Person","_key":"65775"} +{"label":"Bill LeVasseur","version":19,"id":"81368","lastModified":"1301902457000","name":"Bill LeVasseur","type":"Person","_key":"65776"} +{"label":"Tom Doyle","version":19,"id":"81369","lastModified":"1301902457000","name":"Tom Doyle","type":"Person","_key":"65777"} +{"label":"Jeff Nicholson","version":21,"id":"81370","lastModified":"1301902457000","name":"Jeff Nicholson","type":"Person","_key":"65778"} +{"label":"Nadiya A. Jackson","version":19,"id":"81371","lastModified":"1301902457000","name":"Nadiya A. Jackson","type":"Person","_key":"65779"} +{"label":"The Temp","description":"A series of mysterious accidents at a food company lead a manager to suspect his impressive new temporary secretary. ","id":"17168","runtime":99,"imdbId":"tt0108311","version":106,"lastModified":"1302165483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/890\/4bc94e9d017a3c57fe022890\/the-temp-mid.jpg","studio":"Columbus Circle Films","genre":"Drama","title":"The Temp","releaseDate":729475200000,"language":"en","type":"Movie","_key":"65780"} +{"label":"Colleen Flynn","version":19,"id":"81375","lastModified":"1301902457000","name":"Colleen Flynn","type":"Person","_key":"65781"} +{"label":"Michael Winters","version":19,"id":"55548","lastModified":"1301902238000","name":"Michael Winters","type":"Person","_key":"65782"} +{"label":"Daniel C. Swanson","version":19,"id":"81376","lastModified":"1301902457000","name":"Daniel C. Swanson","type":"Person","_key":"65783"} +{"label":"Demene E. Hall","version":28,"id":"81377","lastModified":"1301902170000","name":"Demene E. Hall","type":"Person","_key":"65784"} +{"label":"Any Which Way You Can","description":"Philo takes part in a bare knuckle fight - as he does - to make some more money than he can earn from his car repair business. He decides to retire from fighting, but when the Mafia come along and arrange another fight, he is pushed into it. A motorcycle gang and an orangutan called Clyde all add to the 'fun'.","id":"17169","runtime":115,"imdbId":"tt0080377","trailer":"http:\/\/www.youtube.com\/watch?v=HRj_wLGrRJs","version":167,"lastModified":"1302165050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89e\/4bc94e9e017a3c57fe02289e\/any-which-way-you-can-mid.jpg","genre":"Action","title":"Any Which Way You Can","releaseDate":345859200000,"language":"en","type":"Movie","_key":"65785"} +{"label":"Bright Lights, Big City","description":"A young kid from Kansas moves to New York to work on a magazine. He gets caught up in the world of drink and drugs, and starts a steady decline. The only hope is the cousin of one of his drinking partners, can she pull him through it ? ","id":"17170","runtime":107,"imdbId":"tt0094799","version":123,"lastModified":"1302164476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a8\/4bc94ea0017a3c57fe0228a8\/bright-lights-big-city-mid.jpg","genre":"Drama","title":"Bright Lights, Big City","releaseDate":575856000000,"language":"en","type":"Movie","_key":"65786"} +{"label":"The Assassination of Jesse James: Death of an Outlaw","description":"Explores the true story of the notorious Jesse James, how the myth developed during his lifetime, and how the legends have persisted over 100 years after his death at the hands of his former friend, Robert Ford.","id":"17171","runtime":32,"imdbId":"tt1201984","version":34,"lastModified":"1301907380000","title":"The Assassination of Jesse James: Death of an Outlaw","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65787"} +{"label":"S.O.S. - En segels\u00e4llskapsresa","description":"The landlubber Stig-Helmer and his Norwegian friend Ole get on a barge by mistake. They arrive at an archipelago and have to spend Midsummer among the fancy rich boat people, their yachts and summer houses.","id":"17172","runtime":104,"imdbId":"tt0096022","version":54,"lastModified":"1301905698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b1\/4bc94ea1017a3c57fe0228b1\/s-o-s-en-segelsallskapsresa-mid.jpg","studio":"Svensk Filmindustri (SF)","title":"S.O.S. - En segels\u00e4llskapsresa","releaseDate":599011200000,"language":"en","type":"Movie","_key":"65788"} +{"label":"Kibakichi","description":"A werewolf samurai walks the countryside, finding himself in the middle of a village of monsters who feed on human flesh.","id":"17173","runtime":0,"imdbId":"tt0470132","version":70,"lastModified":"1302163337000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ba\/4bc94ea1017a3c57fe0228ba\/kibakichi-mid.jpg","title":"Kibakichi","releaseDate":1076112000000,"language":"en","type":"Movie","_key":"65789"} +{"label":"The Neighbor","description":"A businessman (Modine) watches as his life begins to unravel after learning his ex-wife is going to marry his best friend. A distracting battle of wills with a real estate developer, however, might just be the thing that turns his life around.","id":"17174","runtime":98,"imdbId":"tt0978670","trailer":"http:\/\/www.youtube.com\/watch?v=3221","version":170,"lastModified":"1302163134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bf\/4bc94ea1017a3c57fe0228bf\/the-neighbor-mid.jpg","genre":"Comedy","title":"The Neighbor","releaseDate":1227830400000,"language":"en","type":"Movie","_key":"65790"} +{"label":"Eddie O'Flaherty","version":18,"id":"112632","lastModified":"1301901851000","name":"Eddie O'Flaherty","type":"Person","_key":"65791"} +{"label":"The Last Word","description":"An odd-but-gifted poet, Evan Merck (Wes Bentley, 'American Beauty') makes his living writing suicide notes for the soon-to-be departed. So when he meets Charlotte (Winona Ryder, 'Girl, Interrupted'), the free-spirited sister of his latest client, Evan has no choice but to lie about his relationship to her late, lamented brother.","id":"17175","runtime":90,"imdbId":"tt0876233","version":284,"lastModified":"1302162883000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c8\/4bc94ea2017a3c57fe0228c8\/the-last-word-mid.jpg","studio":"Deviant Films","genre":"Documentary","title":"The Last Word","releaseDate":1208649600000,"language":"en","type":"Movie","_key":"65792"} +{"label":"Geoffrey Haley","version":20,"id":"82169","lastModified":"1301902178000","name":"Geoffrey Haley","type":"Person","_key":"65793"} +{"label":"Jackass Collection","description":"The Jackass movies feature people performing various dangerous, crude, ridiculous, and self-injuring stunts and pranks.","id":"17178","version":306,"lastModified":"1302229356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d6\/4bc94ea5017a3c57fe0228d6\/jackass-collection-mid.jpg","title":"Jackass Collection","language":"en","type":"Movie","_key":"65794"} +{"label":"Two Weeks","description":"In this bittersweet comedy, four adult siblings gather at their dying mother's house in North Carolina for what they expect to be a quick, last goodbye. Instead, they find themselves trapped — together — for two weeks.","id":"17179","runtime":102,"imdbId":"tt0448166","version":189,"lastModified":"1301906261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8df\/4bc94ea6017a3c57fe0228df\/two-weeks-mid.jpg","genre":"Comedy","title":"Two Weeks","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"65795"} +{"label":"Steve Stockman","version":11,"id":"223456","lastModified":"1301903984000","name":"Steve Stockman","type":"Person","_key":"65796"} +{"label":"The Princess Blade","description":"No overview found.","id":"17180","runtime":95,"imdbId":"tt0310149","version":146,"lastModified":"1302228894000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f2\/4bc94ea6017a3c57fe0228f2\/the-princess-blade-mid.jpg","genre":"Action","title":"The Princess Blade","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"65797"} +{"label":"Nanking","description":"The story of the rape of Nanking, one of the most tragic events in history. In 1937, the invading Japanese army murdered over 200,000 and raped tens of thousands of Chinese. In the midst of this horror, a small group of Western expatriates banded together to save 250,000. Nanking shows the tremendous impact individuals can make on the course of history.","id":"17181","runtime":88,"imdbId":"tt0893356","version":209,"lastModified":"1302231008000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fb\/4bc94ea7017a3c57fe0228fb\/nanking-mid.jpg","studio":"HBO Documentary Films","genre":"Documentary","title":"Nanking","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"65798"} +{"label":"Dan Sturman","version":19,"id":"87094","lastModified":"1301901863000","name":"Dan Sturman","type":"Person","_key":"65799"} +{"label":"Bill Guttentag","version":29,"id":"87091","lastModified":"1301902064000","name":"Bill Guttentag","type":"Person","_key":"65800"} +{"label":"Hugo Armstrong","version":19,"id":"87095","lastModified":"1301902632000","name":"Hugo Armstrong","type":"Person","_key":"65801"} +{"label":"Rosalind Chao","version":23,"id":"74073","lastModified":"1301901777000","name":"Rosalind Chao","type":"Person","_key":"65802"} +{"label":"Eye For An Eye","description":"No overview found.","id":"17182","runtime":101,"imdbId":"tt0116260","version":165,"lastModified":"1302201864000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a3\/4ce6f4d55e73d6258e0000a3\/eye-for-an-eye-mid.jpg","genre":"Drama","title":"Eye For An Eye","releaseDate":821404800000,"language":"en","type":"Movie","_key":"65803"} +{"label":"Crest of the Stars: Vol 1","description":"No overview found.","id":"17183","runtime":0,"version":177,"lastModified":"1302228429000","title":"Crest of the Stars: Vol 1","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65804"} +{"label":"Advise & Consent","description":"Senate investigation into the President's newly nominated Secretary of State, gives light to a secret from the past, which may not only ruin the candidate, but the President's character as well.","id":"17185","runtime":139,"imdbId":"tt0055728","version":147,"lastModified":"1302227329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/917\/4bc94ea9017a3c57fe022917\/advise-consent-mid.jpg","studio":"Otto Preminger Films","genre":"Drama","title":"Advise & Consent","releaseDate":-238982400000,"language":"en","type":"Movie","_key":"65805"} +{"label":"Eddie Hodges","version":22,"id":"81387","lastModified":"1301902404000","name":"Eddie Hodges","type":"Person","_key":"65806"} +{"label":"Supercross","description":"Faced with the suspicious death of their father, two brothers must motivate one another to get back on their bikes and take the Las Vegas Motocross Championships by storm.","id":"17186","runtime":80,"imdbId":"tt0403016","version":215,"lastModified":"1302134700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/924\/4bc94eaa017a3c57fe022924\/supercross-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Supercross","releaseDate":1124064000000,"language":"en","type":"Movie","_key":"65807"} +{"label":"Ian Michael Kintzle","version":17,"id":"81389","lastModified":"1301902457000","name":"Ian Michael Kintzle","type":"Person","_key":"65808"} +{"label":"Aaron Carter","version":19,"id":"81390","lastModified":"1301902457000","name":"Aaron Carter","type":"Person","_key":"65809"} +{"label":"J.D. Pardo","version":17,"id":"81391","lastModified":"1301902457000","name":"J.D. Pardo","type":"Person","_key":"65810"} +{"label":"Jamie Little","version":19,"id":"81392","lastModified":"1301902457000","name":"Jamie Little","type":"Person","_key":"65811"} +{"label":"Ricky Johnson","version":17,"id":"81393","lastModified":"1301902457000","name":"Ricky Johnson","type":"Person","_key":"65812"} +{"label":"Erin Lear","version":19,"id":"81394","lastModified":"1301902457000","name":"Erin Lear","type":"Person","_key":"65813"} +{"label":"Alana Austin","version":20,"id":"81395","lastModified":"1301902457000","name":"Alana Austin","type":"Person","_key":"65814"} +{"label":"The Emperor's Club","description":"An idealistic prep school teacher attempts to redeem an incorrigable student.","id":"17187","runtime":108,"imdbId":"tt0283530","version":169,"lastModified":"1302227069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/931\/4bc94eab017a3c57fe022931\/the-emperor-s-club-mid.jpg","studio":"Universal Pictures","genre":"Drama","title":"The Emperor's Club","releaseDate":1037923200000,"language":"en","type":"Movie","_key":"65815"} +{"label":"Battle Angel Alita","description":"Battle Angel Alita tells the story of Alita (\"Gally\" in the original Japanese version), an amnesiac female cyborg. This cyborg's intact head and upper torso are found in a state of suspended animation by the cybermedic expert Daisuke Ido while he is out searching for useful scrap.","id":"17189","runtime":54,"imdbId":"tt0107061","version":35,"lastModified":"1301906767000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/405\/4c0253ab017a3c7036001405\/battle-angel-alita-mid.jpg","title":"Battle Angel Alita","releaseDate":725846400000,"language":"en","type":"Movie","_key":"65816"} +{"label":"Gross Anatomy","description":"It Takes Hard Work, Discipline And Commitment To Get Through Med School. But Joe's Never Done Anything By The Book.\r\n\r\nMatthew Modine stars as Joe Slovak, a brilliant first-year med student whose casual, nonconforming approach to life gets tested when he enrolls in Gross Anatomy, the toughest course in med school. ","id":"17190","runtime":109,"imdbId":"tt0097458","version":92,"lastModified":"1301908283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/668\/4c0277cd017a3c702d001668\/gross-anatomy-mid.jpg","genre":"Comedy","title":"Gross Anatomy","releaseDate":624844800000,"language":"en","type":"Movie","_key":"65817"} +{"label":"In The Womb","description":"In The Womb is a 2005 National Geographic Channel documentary that focus on studying and showing the development of the embryo in the uterus. The show makes extensive use of Computer-generated imagery to recreate the real stages of the process.","id":"17191","runtime":120,"version":125,"lastModified":"1302226619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/960\/4bc94eb1017a3c57fe022960\/in-the-womb-mid.jpg","genre":"Documentary","title":"In The Womb","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"65818"} +{"label":"Apartheid's Last Stand","description":"This is the story of a country trying to reinvent itself. Mandela now needs to persuade his supporters of the need for compromise, as does President FW De Klerk of his constituency.","id":"17192","runtime":52,"version":24,"lastModified":"1302226406000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/965\/4bc94eb1017a3c57fe022965\/apartheid-s-last-stand-mid.jpg","title":"Apartheid's Last Stand","releaseDate":725846400000,"language":"en","type":"Movie","_key":"65819"} +{"label":"Ma Fille Mon Ange","description":"Nathalie Dagenais is a 19 year old girl studying to be a lawyer. New to the city of Montreal, she will soon discover the world of porn. One day, her father (Michel C\u00f4t\u00e9) comes across her picture on the Internet and wants to find her and before she makes what he thinks is a mistake. \nThe story goes from past to present, when a police officer investigates the death of Max, a man who Nathalie knew.","id":"17193","runtime":85,"imdbId":"tt0456521","version":51,"lastModified":"1301908372000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96e\/4bc94eb2017a3c57fe02296e\/ma-fille-mon-ange-mid.jpg","title":"Ma Fille Mon Ange","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"65820"} +{"label":"Karine Vanasse","version":23,"id":"81418","lastModified":"1301901946000","name":"Karine Vanasse","type":"Person","_key":"65821"} +{"label":"Christian B\u00e9gin","version":19,"id":"81419","lastModified":"1301902141000","name":"Christian B\u00e9gin","type":"Person","_key":"65822"} +{"label":"The Cell Phone Revolution","description":"The Cell Phone Revolution is a revealing look at the enormous impact this small device has had on the way we live -- and the surprising dead ends and detours it took along the way. From a futuristic dream at the 1939 World's Fair -- the cell phone became a reality some thirty years later. ","id":"17195","runtime":60,"imdbId":"tt0964989","version":52,"lastModified":"1302226192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/973\/4bc94eb2017a3c57fe022973\/the-cell-phone-revolution-mid.jpg","title":"The Cell Phone Revolution","releaseDate":1204934400000,"language":"en","type":"Movie","_key":"65823"} +{"label":"Ding et Dong Le Film","description":"Two harum-scarums who think they are good stand-up comics try to make a career in showbiz, partly for the career, partly to seduce women. They try alternatively the scene, a movie set and TV. They only succeed in making a fool of themselves","id":"17196","runtime":96,"imdbId":"tt0099432","version":42,"lastModified":"1301905892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97c\/4bc94eb3017a3c57fe02297c\/ding-et-dong-le-film-mid.jpg","genre":"Comedy","title":"Ding et Dong Le Film","releaseDate":631152000000,"language":"en","type":"Movie","_key":"65824"} +{"label":"Serge Th\u00e9riault","version":18,"id":"81422","lastModified":"1301902143000","name":"Serge Th\u00e9riault","type":"Person","_key":"65825"} +{"label":"Claude Meunier","version":19,"id":"81423","lastModified":"1301902324000","name":"Claude Meunier","type":"Person","_key":"65826"} +{"label":"The Mating Habits of the Earthbound Human","description":"David Hyde Pierce, playing an alien (credited as infinity-cubed in the opening credits), narrates a courtship in a late-20th century American city as an extraterrestrial nature documentary. The relationship \"footage\" is played straight, while the voice-over (with its most often wildly inaccurate theories) and elaborate visual metaphors add comedy.","id":"17198","runtime":88,"imdbId":"tt0165874","version":122,"lastModified":"1302225932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/981\/4bc94eb3017a3c57fe022981\/the-mating-habits-of-the-earthbound-human-mid.jpg","studio":"Earthbound Human Productions Inc.","genre":"Comedy","title":"The Mating Habits of the Earthbound Human","releaseDate":920937600000,"language":"en","type":"Movie","_key":"65827"} +{"label":"Jeff Abugov","version":20,"id":"81421","lastModified":"1301902366000","name":"Jeff Abugov","type":"Person","_key":"65828"} +{"label":"La Moiti\u00e9 Gauche Du Frigo","description":"Christophe agrees to be filmed by his roommate St\u00e9phane, while he is searching for a meaningful engineering job. Since he voluntarily resigned his job when he was to be moved to quality control, he does not get unemployment benefits, and goes to classes on how to contest the decision.","id":"17199","runtime":90,"imdbId":"tt0260193","version":94,"lastModified":"1302225755000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98a\/4bc94eb4017a3c57fe02298a\/la-moitie-gauche-du-frigo-mid.jpg","title":"La Moiti\u00e9 Gauche Du Frigo","releaseDate":968803200000,"language":"en","type":"Movie","_key":"65829"} +{"label":"Paul Ahmarani","version":21,"id":"81427","lastModified":"1301902176000","name":"Paul Ahmarani","type":"Person","_key":"65830"} +{"label":"St\u00e9phane Demers","version":26,"id":"81430","lastModified":"1301902046000","name":"St\u00e9phane Demers","type":"Person","_key":"65831"} +{"label":"Genevi\u00e8ve N\u00e9ron","version":20,"id":"81431","lastModified":"1301902542000","name":"Genevi\u00e8ve N\u00e9ron","type":"Person","_key":"65832"} +{"label":"Philippe Falardeau","version":23,"id":"81437","lastModified":"1301902513000","name":"Philippe Falardeau","type":"Person","_key":"65833"} +{"label":"Helter Skelter","description":"The investigation of two horrific mass murders leads to the capture and trial of the psychotic pseudo-hippie Charles Manson and his \"family\".","id":"17200","runtime":119,"imdbId":"tt0074621","version":127,"lastModified":"1301908391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a7\/4bc94eb7017a3c57fe0229a7\/helter-skelter-mid.png","studio":"Lorimar Productions","genre":"Animation","title":"Helter Skelter","releaseDate":197164800000,"language":"en","type":"Movie","_key":"65834"} +{"label":"Nancy Wolfe","version":19,"id":"81442","lastModified":"1301902064000","name":"Nancy Wolfe","type":"Person","_key":"65835"} +{"label":"Marilyn Burns","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1aa\/4bf17939017a3c32170001aa\/marilyn-burns-profile.jpg","version":25,"id":"27798","lastModified":"1301901520000","name":"Marilyn Burns","type":"Person","_key":"65836"} +{"label":"Christina Hart","version":19,"id":"81443","lastModified":"1301902457000","name":"Christina Hart","type":"Person","_key":"65837"} +{"label":"Cathey Paine","version":19,"id":"81444","lastModified":"1301902457000","name":"Cathey Paine","type":"Person","_key":"65838"} +{"label":"Rudy Ramos","version":19,"id":"81445","lastModified":"1301902457000","name":"Rudy Ramos","type":"Person","_key":"65839"} +{"label":"Sondra Blake","version":19,"id":"81446","lastModified":"1301902457000","name":"Sondra Blake","type":"Person","_key":"65840"} +{"label":"Why Did I Get Married","description":"The film is about the difficulty of maintaining a solid relationship in modern times. Eight married college friends plus one other non-friend (all of whom have achieved middle to upper class economic status) go to Colorado for their annual week-long reunion, but the mood shifts when one couple's infidelity comes to light. Secrets are revealed and each couple begins to question their own marriage","id":"17202","runtime":113,"imdbId":"tt0906108","version":286,"lastModified":"1302215664000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e5\/4c4c51785e73d62a410000e5\/why-did-i-get-married-mid.jpg","genre":"Comedy","title":"Why Did I Get Married","releaseDate":1192147200000,"language":"en","tagline":"Because we complete each other's sentences","type":"Movie","_key":"65841"} +{"label":"Blow Dry","description":"The annual British Hairdressing Championship comes to Keighley, a town where Phil and son Brian run a barbershop and Phil's ex-wife Shelly and her lover Sandra run a beauty salon.","id":"17203","runtime":91,"imdbId":"tt0212380","trailer":"http:\/\/www.youtube.com\/watch?v=Mss3o1hz5To","version":186,"lastModified":"1302225073000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c3\/4bc94ebd017a3c57fe0229c3\/blow-dry-mid.jpg","genre":"Comedy","title":"Blow Dry","releaseDate":983923200000,"language":"en","tagline":"An outrageous new comedy for anyone who's ever had hair.","type":"Movie","_key":"65842"} +{"label":"Paradise Lost: The Child Murders at Robin Hood Hills","description":"A horrific triple child murder leads to an indictment and trial of three nonconformist boys based on questionable evidence.","id":"17204","runtime":150,"imdbId":"tt0117293","version":107,"lastModified":"1302224880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c8\/4bc94ebe017a3c57fe0229c8\/paradise-lost-the-child-murders-at-robin-hood-hills-mid.jpg","studio":"Home Box Office (HBO)","genre":"Documentary","title":"Paradise Lost: The Child Murders at Robin Hood Hills","releaseDate":834364800000,"language":"en","type":"Movie","_key":"65843"} +{"label":"Jessie Miskelly","version":21,"id":"81447","lastModified":"1301902527000","name":"Jessie Miskelly","type":"Person","_key":"65844"} +{"label":"Jason Baldwin","version":20,"id":"81448","lastModified":"1301902406000","name":"Jason Baldwin","type":"Person","_key":"65845"} +{"label":"Damien Wayne Echols","version":20,"id":"81449","lastModified":"1301902407000","name":"Damien Wayne Echols","type":"Person","_key":"65846"} +{"label":"Enter The Ninja","description":"After completing his training of ninjutsu within Japan, an American Vietnam veteran by the name of Cole (Franco Nero) visits his war buddy Frank Landers (Alex Courtney) and his newly wed wife Mary Ann Landers (Susan George), who are the owners of a large piece of farming land in the Philippines. Cole soon finds that the Landers are being repeatedly harassed by a CEO named Charles Venarius.","id":"17205","runtime":101,"imdbId":"tt0082332","version":61,"lastModified":"1301904399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d1\/4bc94ebe017a3c57fe0229d1\/enter-the-ninja-mid.jpg","studio":"City Film","genre":"Eastern","title":"Enter The Ninja","releaseDate":372643200000,"language":"en","type":"Movie","_key":"65847"} +{"label":"Houseguest","description":"No overview found.","id":"17207","runtime":113,"imdbId":"tt0110066","version":193,"lastModified":"1302224622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/684\/4d9298eb7b9aa1199a000684\/houseguest-mid.jpg","genre":"Comedy","title":"Houseguest","releaseDate":789350400000,"language":"en","type":"Movie","_key":"65848"} +{"label":"Paradise Lost 2: Revelations","description":"Paradise Lost 2: Revelations revisits the 1994 Arkansas murder of three 8-year-old boys and the three teenagers convicted of the crime. A follow up to Paradise Lost, Revelations features new interviews with the convicted men, as well as with the original judge and police investigators. ","id":"17208","runtime":130,"imdbId":"tt0239894","version":141,"lastModified":"1301905465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34b\/4cc6d0f25e73d64e6200034b\/paradise-lost-2-revelations-mid.jpg","studio":"Creative Thinking International Ltd.","genre":"Documentary","title":"Paradise Lost 2: Revelations","releaseDate":964742400000,"language":"en","type":"Movie","_key":"65849"} +{"label":"Kathy Bakken","version":19,"id":"81450","lastModified":"1301902238000","name":"Kathy Bakken","type":"Person","_key":"65850"} +{"label":"Steven Branch","version":19,"id":"81452","lastModified":"1301902457000","name":"Steven Branch","type":"Person","_key":"65851"} +{"label":"Christopher Byers","version":19,"id":"81453","lastModified":"1301902457000","name":"Christopher Byers","type":"Person","_key":"65852"} +{"label":"John Mark Byers","version":19,"id":"81454","lastModified":"1301902457000","name":"John Mark Byers","type":"Person","_key":"65853"} +{"label":"Melissa Byers","version":19,"id":"81455","lastModified":"1301902457000","name":"Melissa Byers","type":"Person","_key":"65854"} +{"label":"Pam Echols","version":19,"id":"81457","lastModified":"1301902457000","name":"Pam Echols","type":"Person","_key":"65855"} +{"label":"Jessie Miskelly Sr.","version":19,"id":"81458","lastModified":"1301902457000","name":"Jessie Miskelly Sr.","type":"Person","_key":"65856"} +{"label":"Madhouse","description":"A young psychiatric intern unearths secrets about the mental health facility in which he works.","id":"17209","runtime":91,"imdbId":"tt0363276","version":300,"lastModified":"1301903807000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9df\/4bc94ec0017a3c57fe0229df\/madhouse-mid.jpg","studio":"Lakeshore Entertainment","genre":"Horror","title":"Madhouse","releaseDate":1091145600000,"language":"en","tagline":"Let the insanity begin.","type":"Movie","_key":"65857"} +{"label":"Dendrie Taylor","version":39,"id":"81462","lastModified":"1301901268000","name":"Dendrie Taylor","type":"Person","_key":"65858"} +{"label":"William Butler","version":43,"id":"81460","lastModified":"1301902148000","name":"William Butler","type":"Person","_key":"65859"} +{"label":"Journey to the Edge of the Universe","description":"In one single, epic camera move we journey from Earth's surface to the outermost reaches of the universe on a grand tour of the cosmos, to explore newborn stars, distant planets, black holes and beyond.\r\n\r\n","id":"17210","runtime":91,"imdbId":"tt1363109","homepage":"http:\/\/channel.nationalgeographic.com\/episode\/journey-to-the-edge-of-the-universe-3023#tab-Overview","version":206,"lastModified":"1301420086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4bc94ec1017a3c57fe0229e8\/journey-to-the-edge-of-the-universe-mid.jpg","genre":"Documentary","title":"Journey to the Edge of the Universe","releaseDate":1228608000000,"language":"en","type":"Movie","_key":"65860"} +{"label":"Yavar Abbas","version":19,"id":"88027","lastModified":"1301901947000","name":"Yavar Abbas","type":"Person","_key":"65861"} +{"label":"Patrick","description":"A comatose hospital patient harasses and kills though his powers of telekinesis to claim his private nurse as his own.","id":"17212","runtime":112,"imdbId":"tt0078067","version":80,"lastModified":"1301904432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ff\/4bc94ec3017a3c57fe0229ff\/patrick-mid.jpg","studio":"Filmways Australasian","genre":"Horror","title":"Patrick","releaseDate":276048000000,"language":"en","type":"Movie","_key":"65862"} +{"label":"Bruce Barry","version":19,"id":"81464","lastModified":"1301902238000","name":"Bruce Barry","type":"Person","_key":"65863"} +{"label":"Helen Hemingway","version":19,"id":"81465","lastModified":"1301902238000","name":"Helen Hemingway","type":"Person","_key":"65864"} +{"label":"Robert Thompson","version":22,"id":"81466","lastModified":"1301902166000","name":"Robert Thompson","type":"Person","_key":"65865"} +{"label":"Gaz Bar Blues","description":"This is the story of Mr. Brochu, whose friends like to call \"the Boss\". He runs his gas station the best he can and tries to stay happy no matter what happens. This movie relates all the small tragedies surrounding the gaz bar, such as hold-ups, competition from the big companies invading the neighbourhood, and the fact that is sons don't seem to be interested in the gas station.","id":"17213","runtime":115,"imdbId":"tt0379298","version":129,"lastModified":"1300980416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a08\/4bc94ec4017a3c57fe022a08\/gaz-bar-blues-mid.jpg","genre":"Comedy","title":"Gaz Bar Blues","releaseDate":1062720000000,"language":"en","type":"Movie","_key":"65866"} +{"label":"Gilles Renaud","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cde\/4d4e9a135e73d617c1002cde\/gilles-renaud-profile.jpg","version":23,"id":"81467","lastModified":"1301902238000","name":"Gilles Renaud","type":"Person","_key":"65867"} +{"label":"Fanny Mallette","version":24,"id":"81468","lastModified":"1301901717000","name":"Fanny Mallette","type":"Person","_key":"65868"} +{"label":"S\u00e9bastien Delorme","version":19,"id":"81469","lastModified":"1301902457000","name":"S\u00e9bastien Delorme","type":"Person","_key":"65869"} +{"label":"Louis B\u00e9langer","version":22,"id":"81471","lastModified":"1301902457000","name":"Louis B\u00e9langer","type":"Person","_key":"65870"} +{"label":"Pel\u00edculas para no dormir: Para entrar a vivir","description":"A strange building becomes an evil trap for an unsuspecting couple.","id":"17214","runtime":68,"imdbId":"tt0477311","version":41,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a11\/4bc94ec5017a3c57fe022a11\/peliculas-para-no-dormir-para-entrar-a-vivir-mid.jpg","studio":"Filmax Group","genre":"Horror","title":"Pel\u00edculas para no dormir: Para entrar a vivir","releaseDate":1142899200000,"language":"en","type":"Movie","_key":"65871"} +{"label":"Nuria Gonz\u00e1lez","version":20,"id":"81472","lastModified":"1301901862000","name":"Nuria Gonz\u00e1lez","type":"Person","_key":"65872"} +{"label":"Adri\u00e0 Collado","version":24,"id":"81473","lastModified":"1301901492000","name":"Adri\u00e0 Collado","type":"Person","_key":"65873"} +{"label":"Roberto Romero","version":19,"id":"81474","lastModified":"1301902064000","name":"Roberto Romero","type":"Person","_key":"65874"} +{"label":"David Sandanya","version":19,"id":"81475","lastModified":"1301902064000","name":"David Sandanya","type":"Person","_key":"65875"} +{"label":"Rx","description":"What is meant to be a weekend party across the border soon becomes a heartbreaking journey that tests the boundaries of companionship, romantic love and personal ethics.","id":"17216","runtime":89,"imdbId":"tt0357182","version":94,"lastModified":"1301902773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b2\/4c94e37d5e73d63a750002b2\/rx-mid.jpg","studio":"Inscription Films","genre":"Action","title":"Rx","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"65876"} +{"label":"Ariel Vromen","version":21,"id":"81476","lastModified":"1301901493000","name":"Ariel Vromen","type":"Person","_key":"65877"} +{"label":"Lulu Molina","version":19,"id":"81479","lastModified":"1301902503000","name":"Lulu Molina","type":"Person","_key":"65878"} +{"label":"Ori Pfeffer","version":19,"id":"81480","lastModified":"1301902503000","name":"Ori Pfeffer","type":"Person","_key":"65879"} +{"label":"Jani gal","description":"\r\n\r\n\r\nAn Iraqi Kurdish man is released from jail. He has been arrested by mistake when he went to find a midwife to help his pregnant wife, years ago. As he has been arrested during a demonstration the authorities thought he is one of the opposition group leaders.\r\n","id":"17217","runtime":100,"imdbId":"tt1130841","version":38,"lastModified":"1301905323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a16\/4bc94ec5017a3c57fe022a16\/jani-gal-mid.jpg","title":"Jani gal","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65880"} +{"label":"The Set-Up","description":"Stoker Thompson is a 35-year-old has-been boxer. His once-promising fighting career has come crashing to the end. Tiny, Stoker's manager, is sure he will continue to lose fights, so he takes money for a \"dive\" from a mobster, but is so sure that Thompson will lose that he doesn't tell the boxer about the set-up. At the beginning of the last round of the vicious boxing match he learns of the fix.","id":"17218","runtime":72,"imdbId":"tt0041859","version":159,"lastModified":"1302171993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a1f\/4bc94ec9017a3c57fe022a1f\/the-set-up-mid.jpg","studio":"RKO Radio Pictures","genre":"Crime","title":"The Set-Up","releaseDate":-655171200000,"language":"en","tagline":"I want a man...not a human punching bag!","type":"Movie","_key":"65881"} +{"label":"Darryl Hickman","version":27,"id":"81481","lastModified":"1302171993000","name":"Darryl Hickman","type":"Person","_key":"65882"} +{"label":"Where the Sidewalk Ends","description":"\nTough NYC police detective Dixon misses out on a promotion because of his record of roughing up suspects. When accidentally kills a suspect in a murder case he plants clues to absolve himself. But when the father of a woman he recently fell in love is accused of the crime his plan looks like back firing.","id":"17221","runtime":95,"imdbId":"tt0043132","version":114,"lastModified":"1301903068000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a28\/4bc94ec9017a3c57fe022a28\/where-the-sidewalk-ends-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Crime","title":"Where the Sidewalk Ends","releaseDate":-615945600000,"language":"en","type":"Movie","_key":"65883"} +{"label":"Two Tigers","description":"No overview found.","id":"17223","runtime":0,"imdbId":"tt0867205","version":662,"lastModified":"1301906794000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2bd\/4bfa14d6017a3c70370002bd\/two-tigers-mid.jpg","genre":"Action","title":"Two Tigers","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65884"} +{"label":"Jacquou le croquant","description":"Jacquou le Croquant is a 2007 French historical film. Set in the Dordogne during the Bourbon Restoration, it tells the story of a young peasant who leads a revolt against an evil nobleman.","id":"17227","runtime":140,"imdbId":"tt0418758","version":102,"lastModified":"1301906612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a40\/4bc94ecc017a3c57fe022a40\/jacquou-le-croquant-mid.jpg","title":"Jacquou le croquant","releaseDate":1168992000000,"language":"en","type":"Movie","_key":"65885"} +{"label":"Masked Mobsters","description":"From petty theft on the benches of Belleville to the over-publicised hold-ups of the large Parisian banks, this is the spectacular rise of Simon and his gang. They are capable of emptying a series of safes under the very nose of the police who are bewildered by the calm audacity shown by the group.","id":"17228","runtime":125,"imdbId":"tt0871509","version":33,"lastModified":"1301907248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a49\/4bc94ecc017a3c57fe022a49\/le-dernier-gang-mid.jpg","title":"Masked Mobsters","releaseDate":1193788800000,"language":"en","type":"Movie","_key":"65886"} +{"label":"Bill Maher: The Decider","description":"Superstar comedian\/writer Bill Maher, one of the most highly credited comic minds today, is back in an all-new solo HBO comedy special performed live. Maher, known for his sharp wit, offers his candid and hilarious opinions on a wide range of social and political issues including sex, drugs, Iraq, immigration, President Bush, and much more in this can't miss special. Live show from Berklee Performance Center, Boston, Massachusetts","id":"17229","runtime":60,"imdbId":"tt1039915","version":279,"lastModified":"1301908147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a52\/4bc94ecd017a3c57fe022a52\/bill-maher-the-decider-mid.jpg","genre":"Comedy","title":"Bill Maher: The Decider","releaseDate":1184976000000,"language":"en","tagline":"I'm putting the \"ex\" back in Texas!","type":"Movie","_key":"65887"} +{"label":"Wham! in China: Foreign Skies","description":"Best known for their radio staples \"Wake Me Up Before You Go-Go\" and \"Careless Whisper,\" the seminal 80s pop group Wham! (George Michael and Andrew Ridgeley) shot Wham! In China: Foreign Skies circa 1985. In the resulting film, the group performs 12 numbers, including the aforementioned hits, \"Ray Of Sunshine,\" \"Blue,\" and \"Young Guns (Go for It!)\".","id":"17230","runtime":62,"imdbId":"tt0206409","version":72,"lastModified":"1301905632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5b\/4bc94ecd017a3c57fe022a5b\/wham-in-china-foreign-skies-mid.jpg","studio":"CBS Productions","genre":"Documentary","title":"Wham! in China: Foreign Skies","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65888"} +{"label":"George Michael","version":23,"id":"81487","lastModified":"1301901491000","name":"George Michael","type":"Person","_key":"65889"} +{"label":"Andrew Ridgeley","version":19,"id":"81488","lastModified":"1301901863000","name":"Andrew Ridgeley","type":"Person","_key":"65890"} +{"label":"Kappa no ku to natsu yasumi","description":"A small, lone Kappa miraculously survives over 200 years into modern day Tokyo, Japan when he is found by young Koichi. Coo, who is secretly adopted by Koichi's family, searches with his new human friend for unpopulated places in hopes of finding any remaining of his kind.","id":"17234","runtime":138,"imdbId":"tt1179773","version":31,"lastModified":"1301908531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a64\/4bc94ece017a3c57fe022a64\/kappa-no-ku-to-natsu-yasumi-mid.jpg","studio":"Dentsu Inc.","genre":"Animation","title":"Kappa no ku to natsu yasumi","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65891"} +{"label":"Hellboy Collection","description":"The character Hellboy is a demon who fights for the U.S. government and himself against dark forces including Nazis and Baba Yaga, in a series of tales that have their roots in folklore, pulp magazines, vintage adventure, and horror fiction.","id":"17235","homepage":"www.hellboy.com","version":117,"lastModified":"1302215278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a77\/4bc94ed0017a3c57fe022a77\/hellboy-collection-mid.jpg","title":"Hellboy Collection","language":"en","type":"Movie","_key":"65892"} +{"label":"Whirlygirl","description":"After a run in with a hot exotic dancer one wintry night straight-laced prep school student James will find himself on the ride of his life. Risking his future he follows this mysterious woman to New York City - ditching school dodging cops and partying at hot nightclubs along the way. ","id":"17236","runtime":99,"imdbId":"tt0364745","version":85,"lastModified":"1302119717000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7c\/4bc94ed0017a3c57fe022a7c\/whirlygirl-mid.jpg","studio":"All the Way Round","genre":"Drama","title":"Whirlygirl","releaseDate":1146528000000,"language":"en","type":"Movie","_key":"65893"} +{"label":"J.A.Q.","version":19,"id":"81503","lastModified":"1301901718000","name":"J.A.Q.","type":"Person","_key":"65894"} +{"label":"Johnny Pruitt","version":19,"id":"81504","lastModified":"1301901862000","name":"Johnny Pruitt","type":"Person","_key":"65895"} +{"label":"Rob Sullivan","version":19,"id":"81505","lastModified":"1301902064000","name":"Rob Sullivan","type":"Person","_key":"65896"} +{"label":"The Moon and the Stars","description":"Together in Rome to shoot a film, a German actress (McCormack) and an English actor (Pryce) contend with forces that complicate their romance as well as the production itself.","id":"17237","runtime":102,"imdbId":"tt0460873","version":79,"lastModified":"1301906344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03d\/4c9c24687b9aa1430d00003d\/the-moon-and-the-stars-mid.jpg","studio":"Box Film","genre":"Drama","title":"The Moon and the Stars","releaseDate":1170374400000,"language":"en","type":"Movie","_key":"65897"} +{"label":"Roberto Purvis","version":19,"id":"81508","lastModified":"1301902457000","name":"Roberto Purvis","type":"Person","_key":"65898"} +{"label":"Surama De Castro","version":19,"id":"81509","lastModified":"1301902457000","name":"Surama De Castro","type":"Person","_key":"65899"} +{"label":"Niccol\u00f2 Senni","version":20,"id":"81510","lastModified":"1301902471000","name":"Niccol\u00f2 Senni","type":"Person","_key":"65900"} +{"label":"P\u00e1l M\u00e1csai","version":21,"id":"81511","lastModified":"1301902047000","name":"P\u00e1l M\u00e1csai","type":"Person","_key":"65901"} +{"label":"Ignazio Oliva","version":23,"id":"81512","lastModified":"1301902423000","name":"Ignazio Oliva","type":"Person","_key":"65902"} +{"label":"Andr\u00e1s M\u00e1rton","version":19,"id":"81513","lastModified":"1301902457000","name":"Andr\u00e1s M\u00e1rton","type":"Person","_key":"65903"} +{"label":"The Belly of an Architect","description":"An American architect arrives in Italy, supervising an exhibiton for a French architect, Boull\u00e9e, who is famous for his oval structures. Through the course of 9 months he becomes obsessed with his belly, suffers severe stomach pains, loses his his wife, exhibition, his unborn child and finally his own life. ","id":"17238","runtime":118,"imdbId":"tt0092637","version":269,"lastModified":"1301904877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4d3ddec15e73d622d80003ea\/the-belly-of-an-architect-mid.jpg","genre":"Drama","title":"The Belly of an Architect","releaseDate":560044800000,"language":"en","type":"Movie","_key":"65904"} +{"label":"UFC 46: Supernatural","description":"UFC 46: Supernatural was a mixed martial arts event held by the Ultimate Fighting Championship on January 31, 2004, at the Mandalay Bay Events Center in Las Vegas, Nevada. Headlining the card was a Light Heavyweight championship bout between Randy Couture and Vitor Belfort. The evening marked the UFC debut of future welterweight champion Georges St-Pierre.","id":"17239","runtime":0,"imdbId":"tt0479193","version":69,"lastModified":"1301905304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8e\/4bc94ed2017a3c57fe022a8e\/ufc-46-supernatural-mid.jpg","genre":"Sports Film","title":"UFC 46: Supernatural","releaseDate":1075507200000,"language":"en","type":"Movie","_key":"65905"} +{"label":"Vitor Belfort","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4c1624657b9aa108a9000024\/vitor-belfort-profile.jpg","biography":"V\u00edtor Vieira Belfort is a Brazilian mixed martial artist and former UFC Light Heavyweight Champion. Belfort was born in Rio de Janeiro and studied jiu-jitsu with the Gracie family, namely Carlson Gracie. He received a black belt under Carlson and currently trains with Xtreme Couture.<b><\/b>","version":41,"birthday":"228697200000","id":"81514","birthplace":"Rio de Janeiro","lastModified":"1301901809000","name":"Vitor Belfort","type":"Person","_key":"65906"} +{"label":"Wes Sims","version":20,"id":"85682","lastModified":"1301902479000","name":"Wes Sims","type":"Person","_key":"65907"} +{"label":"Hermes Franca","version":18,"id":"89243","lastModified":"1301902650000","name":"Hermes Franca","type":"Person","_key":"65908"} +{"label":"Renato Verissimo","version":20,"id":"86123","lastModified":"1301902926000","name":"Renato Verissimo","type":"Person","_key":"65909"} +{"label":"Carlos Newton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f5\/4c1627917b9aa105e00000f5\/carlos-newton-profile.jpg","version":25,"id":"84984","lastModified":"1301902356000","name":"Carlos Newton","type":"Person","_key":"65910"} +{"label":"Slaughter","description":"A young woman looks to escape her abusive life by moving to her family's farm near Atlanta. Unfortunately, she learns her place of supposed comfort offers more terrifying forms of abuse.","id":"17240","runtime":96,"imdbId":"tt1230206","version":324,"lastModified":"1301903550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea4\/4d45d9515e73d67063001ea4\/slaughter-mid.jpg","studio":"After Dark Films","genre":"Horror","title":"Slaughter","releaseDate":1230768000000,"language":"en","tagline":"Find a good hiding place.","type":"Movie","_key":"65911"} +{"label":"Stewart Hopewell","version":17,"id":"117652","lastModified":"1301902324000","name":"Stewart Hopewell","type":"Person","_key":"65912"} +{"label":"Lucy Holt","version":16,"id":"117653","lastModified":"1301902143000","name":"Lucy Holt","type":"Person","_key":"65913"} +{"label":"Amy Shiels","version":22,"id":"85719","lastModified":"1301901646000","name":"Amy Shiels","type":"Person","_key":"65914"} +{"label":"Andrei Araditz","version":17,"id":"117655","lastModified":"1301902356000","name":"Andrei Araditz","type":"Person","_key":"65915"} +{"label":"Ingrid Bisu","version":16,"id":"117656","lastModified":"1301902502000","name":"Ingrid Bisu","type":"Person","_key":"65916"} +{"label":"Vance Daniels","version":17,"id":"117657","lastModified":"1301902704000","name":"Vance Daniels","type":"Person","_key":"65917"} +{"label":"Cristi Hogas","version":16,"id":"117658","lastModified":"1301902324000","name":"Cristi Hogas","type":"Person","_key":"65918"} +{"label":"Maxim Knight","version":16,"id":"117659","lastModified":"1301902676000","name":"Maxim Knight","type":"Person","_key":"65919"} +{"label":"The Tenth Circle","description":"Based on Jodi Picoult's best-selling novel, \"The Tenth Circle\" tells the powerful story that probes the unbreakable bond between parent and child. ","id":"17241","runtime":120,"imdbId":"tt1132288","version":104,"lastModified":"1301906013000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/233\/4d9657245e73d62274004233\/the-tenth-circle-mid.jpg","genre":"Drama","title":"The Tenth Circle","releaseDate":1214611200000,"language":"en","type":"Movie","_key":"65920"} +{"label":"Jamie Johnston","version":20,"id":"84627","lastModified":"1301902718000","name":"Jamie Johnston","type":"Person","_key":"65921"} +{"label":"The Third Nail","description":"A young man is sentenced to life in prison for killing two children, a crime he didn't commit. DNA evidence sets him free, but there is no hiding from the prison gang that wants him dead. When his own daughter is abducted and apparently murdered, he seeks revenge. How far will he go and is it ever too late for redemption? ","id":"17242","runtime":91,"imdbId":"tt0482613","homepage":"http:\/\/www.thethirdnail.com\/","version":65,"lastModified":"1301905968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa4\/4bc94ed6017a3c57fe022aa4\/the-third-nail-mid.jpg","studio":"Luly Productions Inc.","genre":"Crime","title":"The Third Nail","releaseDate":1202428800000,"language":"en","type":"Movie","_key":"65922"} +{"label":"Kevin Lewis","version":21,"id":"86967","lastModified":"1301902705000","name":"Kevin Lewis","type":"Person","_key":"65923"} +{"label":"Huntley Ritter","version":20,"id":"86969","lastModified":"1301902676000","name":"Huntley Ritter","type":"Person","_key":"65924"} +{"label":"Lee Evans - Big - Live At The O2","description":"Lee Evans returns to the stage with another hilarious stand-up routine, this time at London's 02 arena. ","id":"17243","runtime":145,"imdbId":"tt1388779","version":31,"lastModified":"1301906015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab1\/4bc94ed8017a3c57fe022ab1\/lee-evans-big-live-at-the-o2-mid.jpg","studio":"Universal Pictures","title":"Lee Evans - Big - Live At The O2","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"65925"} +{"label":"Behind the Planet of the Apes","description":"This documentary was shown as part of the American Movie Classics (AMC) cable TV channel's celebration of the 30th anniversary of the release of Planet of the Apes (1968). We learn how the original French novel was transformed into the first film.","id":"17244","runtime":127,"imdbId":"tt0207332","version":240,"lastModified":"1301906606000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abf\/4bc94ed9017a3c57fe022abf\/behind-the-planet-of-the-apes-mid.jpg","genre":"Documentary","title":"Behind the Planet of the Apes","releaseDate":905040000000,"language":"en","tagline":"Journey Back To The Planet Of The Apes!","type":"Movie","_key":"65926"} +{"label":"Kevin Burns","version":33,"id":"6868","lastModified":"1301901276000","name":"Kevin Burns","type":"Person","_key":"65927"} +{"label":"David Comtois","version":13,"id":"223804","lastModified":"1301903645000","name":"David Comtois","type":"Person","_key":"65928"} +{"label":"Mulberry Street","description":"A mysterious virus, carried by mutant rats, creates pandemonium in New York City in which rat-bite victims turn into homicidal rat-mutants. This movie centers on six tenants of a small apartment complex on the Lower East Side Mulberry Street as they fight to survive the night against the rats and rapidly multiplying cannibal mutants.","id":"17245","runtime":84,"imdbId":"tt0473514","version":177,"lastModified":"1301905031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac8\/4bc94ed9017a3c57fe022ac8\/mulberry-street-mid.jpg","studio":"Belladonna Productions","genre":"Horror","title":"Mulberry Street","releaseDate":1148342400000,"language":"en","type":"Movie","_key":"65929"} +{"label":"Tim House","version":19,"id":"82851","lastModified":"1301902237000","name":"Tim House","type":"Person","_key":"65930"} +{"label":"Larry Fleischman","version":19,"id":"82852","lastModified":"1301902457000","name":"Larry Fleischman","type":"Person","_key":"65931"} +{"label":"Bo Corre","version":19,"id":"82853","lastModified":"1301902457000","name":"Bo Corre","type":"Person","_key":"65932"} +{"label":"Kim Blair","version":18,"id":"101534","lastModified":"1301902477000","name":"Kim Blair","type":"Person","_key":"65933"} +{"label":"Rodney Gray","version":23,"id":"98226","lastModified":"1301902676000","name":"Rodney Gray","type":"Person","_key":"65934"} +{"label":"Devon Mikolas","version":16,"id":"101535","lastModified":"1301901862000","name":"Devon Mikolas","type":"Person","_key":"65935"} +{"label":"Jim Mickle","version":21,"id":"87082","lastModified":"1301901862000","name":"Jim Mickle","type":"Person","_key":"65936"} +{"label":"Battle in Heaven","description":"Set in Mexico City, Carlos Reygadas's sexually explicit drama centers on a man in turmoil over his past actions. Chauffer Marcos feels compelled to reveal a dark secret to his boss's daughter, Ana, a wealthy woman who works as a prostitute just for the thrill of it. Marcos confesses that he and his wife committed a crime that ended in horrible tragedy. Haunted by his past, Marcos searches for redemption.","id":"17247","runtime":96,"imdbId":"tt0387055","version":115,"lastModified":"1302039066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ada\/4bc94eda017a3c57fe022ada\/batalla-en-el-cielo-mid.jpg","genre":"Drama","title":"Battle in Heaven","releaseDate":1140393600000,"language":"en","type":"Movie","_key":"65937"} +{"label":"Marcos Hern\u00e1ndez","version":23,"id":"86511","lastModified":"1301902716000","name":"Marcos Hern\u00e1ndez","type":"Person","_key":"65938"} +{"label":"Anapola Mushkadiz","version":22,"id":"86512","lastModified":"1301902324000","name":"Anapola Mushkadiz","type":"Person","_key":"65939"} +{"label":"Bertha Ruiz","version":22,"id":"86513","lastModified":"1301902324000","name":"Bertha Ruiz","type":"Person","_key":"65940"} +{"label":"Beyond The Ring","description":"A professional fighter, now retired, is forced back to the ring because of his daughter medical bills stocking up. ","id":"17251","runtime":86,"imdbId":"tt0910993","version":74,"lastModified":"1301905032000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/304\/4c5753bc7b9aa151f4000304\/beyond-the-ring-mid.jpg","genre":"Action","title":"Beyond The Ring","releaseDate":1199750400000,"language":"en","tagline":"To save a life, he must fight ... Again.","type":"Movie","_key":"65941"} +{"label":"Andr\u00e9 Lima","version":22,"id":"127478","lastModified":"1301904130000","name":"Andr\u00e9 Lima","type":"Person","_key":"65942"} +{"label":"Resident Evil Collection","description":"The Umbrella Corporation is the most powerful and influential commercial entity in the world. It holds its public dealings in medicine and health care. Secretly however, it holds its goldmine in military applications and bio weaponry. After the release of the deadly T-virus that turns its victims into mindless zombie like killers project Alice is activated with unforeseen consequences.","id":"17255","version":129,"lastModified":"1302215488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f1\/4c310fc65e73d63ccd0001f1\/resident-evil-collection-mid.jpg","title":"Resident Evil Collection","language":"en","type":"Movie","_key":"65943"} +{"label":"The Pick-Up Artist","description":"A womanizer meets his match when he falls for the daughter of a mobster.","id":"17258","runtime":81,"imdbId":"tt0093737","trailer":"http:\/\/www.youtube.com\/watch?v=8iGfAFIQVxI","version":94,"lastModified":"1302129523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af1\/4bc94edb017a3c57fe022af1\/the-pick-up-artist-mid.jpg","genre":"Comedy","title":"The Pick-Up Artist","releaseDate":558921600000,"language":"en","tagline":"The Pick-Up Artist... has finally met his match.","type":"Movie","_key":"65944"} +{"label":"National Geographic Ultimate Shark","description":"The world's first MRI scan of a great white shark reveals the extreme engineering and hunting abilities of one of nature's most perfect predators.","id":"17262","runtime":0,"version":18,"lastModified":"1300980421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b11\/4bc94ede017a3c57fe022b11\/national-geographic-ultimate-shark-mid.jpg","title":"National Geographic Ultimate Shark","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"65945"} +{"label":"A Murder of Crows","description":"After a lawyer gets disbared, he goes off to write a book about his experience. He meets a man who lets him read his manuscript. The man dies and the lawyer passes the book off as his. Just when the book becomes a big success. He gets arrested for the true life murders of the five lawyers in his book. He then finds himself, trying to prove that he is innocent of the murders","id":"17263","runtime":102,"imdbId":"tt0133985","version":95,"lastModified":"1301416712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1a\/4bc94edf017a3c57fe022b1a\/a-murder-of-crows-mid.jpg","studio":"Franchise Pictures","genre":"Action","title":"A Murder of Crows","releaseDate":913420800000,"language":"en","type":"Movie","_key":"65946"} +{"label":"The Black Stallion","description":"When a shipwreck leaves Alec--a courageous young boy--and \"The Black\"--a wild Arabian stallion--stranded on a desolate island, the two share a frightening adventure of survival which forges a lasting bond of friendship between them. Upon their rescue, Alec and the magnificent horse continue their adventures when they join forces with ex-jockey and horse trainer, Henry Dailey (Mickey Rooney).","id":"17264","runtime":118,"imdbId":"tt0078872","version":349,"lastModified":"1301902666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d31\/4d201e185e73d66b3b001d31\/the-black-stallion-mid.jpg","studio":"Omni Zoetrope Studios","genre":"Adventure","title":"The Black Stallion","releaseDate":308966400000,"language":"en","type":"Movie","_key":"65947"} +{"label":"Kelly Reno","version":23,"id":"81544","lastModified":"1301902139000","name":"Kelly Reno","type":"Person","_key":"65948"} +{"label":"Ed McNamara","version":14,"id":"150238","lastModified":"1301903122000","name":"Ed McNamara","type":"Person","_key":"65949"} +{"label":"The Odyssey","description":"This lavish small-screen adaptation of Homer's ancient epic--replete with exotic Maltese and Turkish locations, state-of-the-art special effects, and many bronzed muscles gleaming with sweat--chronicles the voyage home of a Trojan hero, Odysseus, and includes many more scenes of his faithful, beautiful wife dodging leering suitors at home than Homer ever composed.","id":"17266","runtime":176,"imdbId":"tt0118414","version":107,"lastModified":"1301905264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2c\/4bc94ee3017a3c57fe022b2c\/the-odyssey-mid.jpg","genre":"Action","title":"The Odyssey","releaseDate":863913600000,"language":"en","type":"Movie","_key":"65950"} +{"label":"Adoni Anastassopoulos","version":19,"id":"81568","lastModified":"1301902457000","name":"Adoni Anastassopoulos","type":"Person","_key":"65951"} +{"label":"Tooth","description":"A star-studded cast make up this British fairy tale comedy. The story follows the adventures of Tooth, a mischievous fairy who has become fed up with the way most of the other fairies have forgotten how to use their magical powers. After stirring things up, her plans go wrong by making Fairytopia bankrupt.","id":"17271","runtime":91,"imdbId":"tt0365852","version":133,"lastModified":"1301906612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b44\/4bc94ee4017a3c57fe022b44\/tooth-mid.jpg","genre":"Drama","title":"Tooth","releaseDate":1076630400000,"language":"en","type":"Movie","_key":"65952"} +{"label":"Ali G - Bling Bling","description":"Bling Bling is an assortment of Ali G's interviews; a couple of them with possibly the last people in Britain who didn't realise that someone was pulling their leg and several with American grandees of various sorts, including economist JK Galbraith and former CIA director Admiral Stansfield Turner. The real selling point, however, is Ali G's undeniably spectacular Comic Relief interview ","id":"17272","runtime":142,"imdbId":"tt0303621","version":47,"lastModified":"1301903598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4d\/4bc94ee5017a3c57fe022b4d\/ali-g-bling-bling-mid.jpg","genre":"Comedy","title":"Ali G - Bling Bling","releaseDate":1004572800000,"language":"en","type":"Movie","_key":"65953"} +{"label":"American Pastime","description":"American Pastime tells a poignant story set against the Japanese-American internment camps during World War II. Rounded up and uprooted from their everyday lives, they remained loyal to the United States and ironically turned to that most American of sports - baseball - as a way to deal with their plight.","id":"17274","runtime":105,"imdbId":"tt0825225","version":204,"lastModified":"1301904253000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b56\/4bc94ee5017a3c57fe022b56\/american-pastime-mid.jpg","genre":"Drama","title":"American Pastime","releaseDate":1179100800000,"language":"en","type":"Movie","_key":"65954"} +{"label":"The All Together","description":"No overview found.","id":"17275","runtime":84,"imdbId":"tt0450238","version":74,"lastModified":"1301904284000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5f\/4bc94ee6017a3c57fe022b5f\/the-all-together-mid.jpg","genre":"Comedy","title":"The All Together","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"65955"} +{"label":"Carry On Up The Jungle","description":"The Carry On team send up the Tarzan tradition in great style. Lady Evelyn Bagley mounts an expedition to find her long-lost baby. Bill Boosey is the fearless hunter and guide. Prof. Tinkle is searching for the rare Oozalum bird. Everything is going swimmingly until a gorilla enters the camp, and then the party is captured by an all female tribe from Aphrodisia... Written by Simon N. McIntosh-Smit","id":"17276","runtime":89,"imdbId":"tt0065525","trailer":"http:\/\/www.youtube.com\/watch?v=focYRKPQQMQ","version":164,"lastModified":"1301908283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b68\/4bc94ee6017a3c57fe022b68\/carry-on-up-the-jungle-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Carry On Up The Jungle","releaseDate":172800000,"language":"en","type":"Movie","_key":"65956"} +{"label":"Jacki Piper","version":19,"id":"95098","lastModified":"1301902632000","name":"Jacki Piper","type":"Person","_key":"65957"} +{"label":"Valerie Leon","version":20,"id":"95099","lastModified":"1301902704000","name":"Valerie Leon","type":"Person","_key":"65958"} +{"label":"Reuben Martin","version":17,"id":"117539","lastModified":"1301903033000","name":"Reuben Martin","type":"Person","_key":"65959"} +{"label":"Edwina Carroll","version":16,"id":"117540","lastModified":"1301902887000","name":"Edwina Carroll","type":"Person","_key":"65960"} +{"label":"Valerie Moore","version":16,"id":"117541","lastModified":"1301902887000","name":"Valerie Moore","type":"Person","_key":"65961"} +{"label":"Cathi March","version":16,"id":"117542","lastModified":"1301902632000","name":"Cathi March","type":"Person","_key":"65962"} +{"label":"Danny Daniels","version":17,"id":"93952","lastModified":"1301902887000","name":"Danny Daniels","type":"Person","_key":"65963"} +{"label":"Yemi Ajibadi","version":16,"id":"117543","lastModified":"1301902887000","name":"Yemi Ajibadi","type":"Person","_key":"65964"} +{"label":"The Fall of the Roman Empire","description":"Drawn from the same events that later inspired Gladiator, the film charts the power-hungry greed and father-son betrayal that led to Rome's collapse at the bloody hands of the Barbarians.","id":"17277","runtime":188,"imdbId":"tt0058085","version":157,"lastModified":"1301905946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d6\/4d8154005e73d6724f0010d6\/the-fall-of-the-roman-empire-mid.jpg","studio":"Samuel Bronston Productions","genre":"Drama","title":"The Fall of the Roman Empire","releaseDate":-182044800000,"language":"en","type":"Movie","_key":"65965"} +{"label":"George Murcell","version":19,"id":"90625","lastModified":"1301902907000","name":"George Murcell","type":"Person","_key":"65966"} +{"label":"Mad Monster Party","description":"When Dr Frankenstein decides to retire from the monster-making business, he calls an international roster of monsters to a creepy convention to elect his successor. Everyone is there including Dracula, The Werewolf, The Creature, Dr Jekyll & Mr Hyde and many more. But Frankenstein's title is not all that is at stake. The famous doctor has also discovered the secret of total destruction that must n","id":"17278","runtime":95,"imdbId":"tt0061931","version":144,"lastModified":"1302024689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7e\/4bc94ee8017a3c57fe022b7e\/mad-monster-party-mid.jpg","genre":"Comedy","title":"Mad Monster Party","releaseDate":-88992000000,"language":"en","type":"Movie","_key":"65967"} +{"label":"Allen Swift","version":21,"id":"120310","lastModified":"1301902986000","name":"Allen Swift","type":"Person","_key":"65968"} +{"label":"Gale Garnett","version":20,"id":"120311","lastModified":"1301902986000","name":"Gale Garnett","type":"Person","_key":"65969"} +{"label":"Gigi","description":"\nA home, a motorcar, servants, the latest fashions: the most eligible and most finicky bachelor (Louis Jourdan) in Paris offers them all to Gigi (Leslie Caron). But she, who's gone from girlish gawkishness to cultured glamour before our eyes, yearns for that wonderful something money can't buy.","id":"17281","runtime":116,"imdbId":"tt0051658","trailer":"http:\/\/www.youtube.com\/watch?v=tJ2qDCyEiFs","version":170,"lastModified":"1301903561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b90\/4bc94eea017a3c57fe022b90\/gigi-mid.jpg","genre":"Musical","title":"Gigi","releaseDate":-367113600000,"language":"en","type":"Movie","_key":"65970"} +{"label":"Maurice Chevalier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1fe\/4c60438c7b9aa172de0001fe\/maurice-chevalier-profile.jpg","version":26,"id":"112972","lastModified":"1301901469000","name":"Maurice Chevalier","type":"Person","_key":"65971"} +{"label":"Rage of Honor","description":"A Japanese cop, Shiro, and his partner Ray are after a bunch of drug dealers. But they are betrayed by an insider and Ray is killed. Shiro follows the murderer, a sadistic drug lord, up to Singapore.","id":"17282","runtime":0,"imdbId":"tt0093820","version":478,"lastModified":"1301905946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/529\/4d8048567b9aa12da6000529\/rage-of-honor-mid.jpg","genre":"Action","title":"Rage of Honor","releaseDate":539136000000,"language":"en","type":"Movie","_key":"65972"} +{"label":"Gordon Hessler","version":31,"id":"82505","lastModified":"1301902004000","name":"Gordon Hessler","type":"Person","_key":"65973"} +{"label":"Sh\u00f4 Kosugi","version":24,"id":"99846","lastModified":"1301903079000","name":"Sh\u00f4 Kosugi","type":"Person","_key":"65974"} +{"label":"Richard Wiley","version":6,"id":"229023","lastModified":"1301904032000","name":"Richard Wiley","type":"Person","_key":"65975"} +{"label":"Lewis Van Bergen","version":18,"id":"104331","lastModified":"1301903024000","name":"Lewis Van Bergen","type":"Person","_key":"65976"} +{"label":"La guerre sans nom","description":"Documentary on the French-Algerian conflict 1954-1962 which was never officially called a \"war\", including interviews with some of the survivors.","id":"17283","runtime":240,"imdbId":"tt0104374","version":131,"lastModified":"1300980423000","studio":"G.M.T. Productions","title":"La guerre sans nom","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"65977"} +{"label":"Patrick Rotman","version":20,"id":"81572","lastModified":"1301902174000","name":"Patrick Rotman","type":"Person","_key":"65978"} +{"label":"Kill Buljo - The Movie","description":"No overview found.","id":"17285","runtime":92,"imdbId":"tt0913401","trailer":"http:\/\/www.youtube.com\/watch?v=MGuXf2W0T9k","homepage":"http:\/\/www.google.no\/url?sa=t&source=web&ct=res&cd=3&url=http%3A%2F%2Fkampanje.filmweb.no%2Forofilm%","version":201,"lastModified":"1301417310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b99\/4bc94eec017a3c57fe022b99\/kill-buljo-the-movie-mid.jpg","title":"Kill Buljo - The Movie","releaseDate":1174608000000,"language":"en","type":"Movie","_key":"65979"} +{"label":"Kiss Me Deadly","description":"Settled into a cozy home life in Milan with his boyfriend Paolo and his daughter Julia, photographer and ex-spy Jacob Keane is suddenly drawn back into the espionage world when his old partner Marta reappears with her memory erased.","id":"17286","runtime":87,"imdbId":"tt1043839","version":120,"lastModified":"1301906465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba2\/4bc94ef0017a3c57fe022ba2\/kiss-me-deadly-mid.jpg","studio":"Regent Entertainment","title":"Kiss Me Deadly","releaseDate":1209686400000,"language":"en","type":"Movie","_key":"65980"} +{"label":"Robert Gant","version":18,"id":"15283","lastModified":"1301902000000","name":"Robert Gant","type":"Person","_key":"65981"} +{"label":"Fraser Brown","version":19,"id":"81573","lastModified":"1301902502000","name":"Fraser Brown","type":"Person","_key":"65982"} +{"label":"Nathan Whitaker","version":19,"id":"81574","lastModified":"1301902502000","name":"Nathan Whitaker","type":"Person","_key":"65983"} +{"label":"Katherine Kennard","version":19,"id":"81575","lastModified":"1301902502000","name":"Katherine Kennard","type":"Person","_key":"65984"} +{"label":"Alessandra Muir","version":19,"id":"81576","lastModified":"1301902143000","name":"Alessandra Muir","type":"Person","_key":"65985"} +{"label":"Poultrygeist: Night of the Chicken Dead","description":"Humans... the other white meat... Unless you're black, then it's dark meat... Or if you are Asian, then it's yellow meat... Or if you are Native American, it's red meat...","id":"17287","runtime":103,"imdbId":"tt0462485","version":140,"lastModified":"1301907302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb5\/4bc94ef2017a3c57fe022bb5\/poultrygeist-night-of-the-chicken-dead-mid.jpg","studio":"Troma Entertainment","genre":"Comedy","title":"Poultrygeist: Night of the Chicken Dead","releaseDate":1167091200000,"language":"en","type":"Movie","_key":"65986"} +{"label":"Jason Yachanin","version":19,"id":"81577","lastModified":"1301902122000","name":"Jason Yachanin","type":"Person","_key":"65987"} +{"label":"Kate Graham","version":19,"id":"81578","lastModified":"1301901925000","name":"Kate Graham","type":"Person","_key":"65988"} +{"label":"Allyson Sereboff","version":19,"id":"81579","lastModified":"1301901925000","name":"Allyson Sereboff","type":"Person","_key":"65989"} +{"label":"Robin L. Watkins","version":17,"id":"84274","lastModified":"1301902122000","name":"Robin L. Watkins","type":"Person","_key":"65990"} +{"label":"Joshua Olatunde","version":19,"id":"84275","lastModified":"1301902299000","name":"Joshua Olatunde","type":"Person","_key":"65991"} +{"label":"Caleb Emerson","version":26,"id":"84276","lastModified":"1301902338000","name":"Caleb Emerson","type":"Person","_key":"65992"} +{"label":"Rose Ghavami","version":17,"id":"98333","lastModified":"1301902644000","name":"Rose Ghavami","type":"Person","_key":"65993"} +{"label":"Khalid Rivera","version":16,"id":"98334","lastModified":"1301902644000","name":"Khalid Rivera","type":"Person","_key":"65994"} +{"label":"Gabriel Friedman","version":25,"id":"84271","lastModified":"1301901760000","name":"Gabriel Friedman","type":"Person","_key":"65995"} +{"label":"John Karyus","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/054\/4bd3e835017a3c7fa6000054\/john-karyus-profile.jpg","version":26,"id":"112863","lastModified":"1301902545000","name":"John Karyus","type":"Person","_key":"65996"} +{"label":"Korkusuz","description":"No overview found.","id":"17288","runtime":73,"imdbId":"tt1355207","version":48,"lastModified":"1301908527000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc3\/4bc94ef3017a3c57fe022bc3\/korkusuz-mid.jpg","title":"Korkusuz","releaseDate":504921600000,"language":"en","type":"Movie","_key":"65997"} +{"label":"Serdar Kebap\u00e7ilar","version":18,"id":"81580","lastModified":"1301901811000","name":"Serdar Kebap\u00e7ilar","type":"Person","_key":"65998"} +{"label":"The Battle of Algiers","description":"The French Colonel...who was forced even to torture! One of the many women...who stopped at nothing to win! The Algerian Street Boy...who became a rebel hero!","id":"17295","runtime":121,"imdbId":"tt0058946","version":99,"lastModified":"1302039153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bcc\/4bc94ef4017a3c57fe022bcc\/la-battaglia-di-algeri-mid.jpg","studio":"Igor Film","genre":"War","title":"The Battle of Algiers","releaseDate":-72662400000,"language":"en","type":"Movie","_key":"65999"} +{"label":"Gillo Pontecorvo","version":20,"id":"90694","lastModified":"1301902416000","name":"Gillo Pontecorvo","type":"Person","_key":"66000"} +{"label":"Brahim Hadjadj","version":16,"id":"140996","lastModified":"1301902577000","name":"Brahim Hadjadj","type":"Person","_key":"66001"} +{"label":"The Firm","description":"This is the story of rival \"Firms\" of football (soccer) supporters, and how one man has a wish to team them up for the European Championships of 1988. However, when this is discussed, the opposing leaders are not happy, as they believe this is a challenge to their authority. This Film shows how football violence has progressed from pure violence to a form of organized crime, to the extent that all the leaders know each others home phone \/ mobile phone numbers.","id":"17300","runtime":70,"imdbId":"tt0095158","version":55,"lastModified":"1301906101000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd5\/4bc94ef4017a3c57fe022bd5\/the-firm-mid.jpg","title":"The Firm","releaseDate":567993600000,"language":"en","type":"Movie","_key":"66002"} +{"label":"Alan Clarke","version":24,"id":"82714","lastModified":"1301902378000","name":"Alan Clarke","type":"Person","_key":"66003"} +{"label":"The Art of Football from A to Z","description":"No overview found.","id":"17302","runtime":84,"imdbId":"tt0804228","version":27,"lastModified":"1300980424000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bde\/4bc94ef5017a3c57fe022bde\/the-art-of-football-from-a-to-z-mid.jpg","title":"The Art of Football from A to Z","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66004"} +{"label":"Tom Konkle","version":20,"id":"81581","lastModified":"1301901991000","name":"Tom Konkle","type":"Person","_key":"66005"} +{"label":"The Devil Dared Me To","description":"This is the story of daredevil stuntman Randy Cambell and his quest to follow in his late father's footsteps and become New Zealand's greatest daredevil stuntman by performing the ultimate daredevil stunt: jumping across Cook Strait in a rocket car!","id":"17303","runtime":75,"imdbId":"tt0970529","trailer":"http:\/\/www.youtube.com\/watch?v=2392","version":278,"lastModified":"1301906604000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be7\/4bc94ef5017a3c57fe022be7\/the-devil-dared-me-to-mid.jpg","studio":"New Zealand Film Commission","genre":"Action","title":"The Devil Dared Me To","releaseDate":1192060800000,"language":"en","type":"Movie","_key":"66006"} +{"label":"Chris Stapp","version":22,"id":"81582","lastModified":"1301902457000","name":"Chris Stapp","type":"Person","_key":"66007"} +{"label":"Matt Heath","version":21,"id":"81584","lastModified":"1301902457000","name":"Matt Heath","type":"Person","_key":"66008"} +{"label":"Phil Brough","version":19,"id":"81585","lastModified":"1301902457000","name":"Phil Brough","type":"Person","_key":"66009"} +{"label":"Billy and Mandy's Big Boogey Adventure","description":"When the Boogey Man causes Grim to lose his powers, rank, and title in the Underworld Court for misusing his powers, he plots to seek out Horror's Hand and take over the world. It's up to Billy, Mandy, Irwin, and Grim to get to Horror's Hand before the Boogey Man does.","id":"17305","runtime":80,"imdbId":"tt1000070","version":343,"lastModified":"1301417591000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bec\/4bc94ef6017a3c57fe022bec\/billy-and-mandy-s-big-boogey-adventure-mid.jpg","studio":"Cartoon Network","title":"Billy and Mandy's Big Boogey Adventure","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66010"} +{"label":"Shaun Cashman","version":21,"id":"54909","lastModified":"1301902299000","name":"Shaun Cashman","type":"Person","_key":"66011"} +{"label":"Phil Cummings","version":20,"id":"81588","lastModified":"1301902524000","name":"Phil Cummings","type":"Person","_key":"66012"} +{"label":"Matt Engstrom","version":19,"id":"81589","lastModified":"1301902474000","name":"Matt Engstrom","type":"Person","_key":"66013"} +{"label":"Eddy Houchins","version":19,"id":"81590","lastModified":"1301902474000","name":"Eddy Houchins","type":"Person","_key":"66014"} +{"label":"Gordon Kent","version":19,"id":"81591","lastModified":"1301902299000","name":"Gordon Kent","type":"Person","_key":"66015"} +{"label":"Christine Kolosov","version":19,"id":"81592","lastModified":"1301902474000","name":"Christine Kolosov","type":"Person","_key":"66016"} +{"label":"Michel Lyman","version":19,"id":"81593","lastModified":"1301902474000","name":"Michel Lyman","type":"Person","_key":"66017"} +{"label":"Sue Perrotto","version":19,"id":"81594","lastModified":"1301902474000","name":"Sue Perrotto","type":"Person","_key":"66018"} +{"label":"Kris Sherwood","version":19,"id":"81595","lastModified":"1301902474000","name":"Kris Sherwood","type":"Person","_key":"66019"} +{"label":"Russell Calabrese","version":19,"id":"81587","lastModified":"1301902474000","name":"Russell Calabrese","type":"Person","_key":"66020"} +{"label":"Juli Hashiguchi","version":19,"id":"81658","lastModified":"1301902473000","name":"Juli Hashiguchi","type":"Person","_key":"66021"} +{"label":"Robert Alvarez","version":19,"id":"81586","lastModified":"1301902474000","name":"Robert Alvarez","type":"Person","_key":"66022"} +{"label":"Richard Steven Horvitz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d96\/4cf5d94e5e73d6299d000d96\/richard-steven-horvitz-profile.jpg","version":22,"id":"81662","lastModified":"1301901602000","name":"Richard Steven Horvitz","type":"Person","_key":"66023"} +{"label":"Vanessa Marshall","version":21,"id":"81663","lastModified":"1301902473000","name":"Vanessa Marshall","type":"Person","_key":"66024"} +{"label":"Maxwell Atoms","version":19,"id":"81597","lastModified":"1301902473000","name":"Maxwell Atoms","type":"Person","_key":"66025"} +{"label":"George Ball","version":19,"id":"81664","lastModified":"1301902473000","name":"George Ball","type":"Person","_key":"66026"} +{"label":"Bart Flynn","version":19,"id":"81665","lastModified":"1301902473000","name":"Bart Flynn","type":"Person","_key":"66027"} +{"label":"C.H. Greenblatt","version":20,"id":"81666","lastModified":"1301902492000","name":"C.H. Greenblatt","type":"Person","_key":"66028"} +{"label":"Rachael MacFarlane","version":19,"id":"81668","lastModified":"1301902473000","name":"Rachael MacFarlane","type":"Person","_key":"66029"} +{"label":"James Silverman","version":20,"id":"81619","lastModified":"1301902473000","name":"James Silverman","type":"Person","_key":"66030"} +{"label":"Ice Spiders","description":"A scientific experiment goes haywire, creating an arachnophobic nightmare. If there's a way to stop them, somebody better find it soon before they kill everything in sight!","id":"17306","runtime":90,"imdbId":"tt0840304","version":189,"lastModified":"1301906677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf5\/4bc94ef9017a3c57fe022bf5\/ice-spiders-mid.jpg","studio":"Regent Entertainment","genre":"Horror","title":"Ice Spiders","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66031"} +{"label":"Thomas Calabro","version":26,"id":"81596","lastModified":"1301902516000","name":"Thomas Calabro","type":"Person","_key":"66032"} +{"label":"Flavors","description":"Flavors is a 2003 romantic comedy film concerning Indian immigrants in America. It was written and directed by Raj Nidimoru.The film tracks the love lives of several people that have immigrated from India to America. Principally, it focuses on the wedding of a WASP Jenni (played by Vicky Schnee) and Rad (Anupam Mittal).\r\n\r\n","id":"17309","runtime":0,"imdbId":"tt0361625","version":81,"lastModified":"1301907994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfa\/4bc94efa017a3c57fe022bfa\/flavors-mid.jpg","genre":"Comedy","title":"Flavors","releaseDate":1089936000000,"language":"en","type":"Movie","_key":"66033"} +{"label":"Krishna D.K.","version":23,"id":"81675","lastModified":"1301902202000","name":"Krishna D.K.","type":"Person","_key":"66034"} +{"label":"Raj Nidimoru","version":20,"id":"81676","lastModified":"1301902544000","name":"Raj Nidimoru","type":"Person","_key":"66035"} +{"label":"Reef Karim","version":19,"id":"81677","lastModified":"1301902502000","name":"Reef Karim","type":"Person","_key":"66036"} +{"label":"Pooja Kumar","version":19,"id":"81678","lastModified":"1301902502000","name":"Pooja Kumar","type":"Person","_key":"66037"} +{"label":"Jicky Schnee","version":20,"id":"81679","lastModified":"1301902502000","name":"Jicky Schnee","type":"Person","_key":"66038"} +{"label":"Anupam Mittal","version":20,"id":"81680","lastModified":"1301902502000","name":"Anupam Mittal","type":"Person","_key":"66039"} +{"label":"Pistol Whipped","description":"Steven Seagal stars in this gritty, no-holds barred action film as an elite ex-cop with a gambling problem and a mountain of debt. When a mysterious man offers to clear his debts in exchange for the assassination of the city's most notorious gangsters, he make s decision that will change his life - forever.","id":"17314","runtime":92,"imdbId":"tt1014801","version":164,"lastModified":"1301904877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c07\/4bc94efa017a3c57fe022c07\/pistol-whipped-mid.jpg","genre":"Action","title":"Pistol Whipped","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"66040"} +{"label":"Urban Justice","description":"Seagal plays a man with a dark and violent past, who seeks revenge for the murder of his son.","id":"17317","runtime":96,"imdbId":"tt0910934","version":146,"lastModified":"1301903677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6c\/4c0cd511017a3c7e8f000b6c\/urban-justice-mid.jpg","genre":"Action","title":"Urban Justice","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66041"} +{"label":"Underground","description":"No overview found.","id":"17318","runtime":95,"imdbId":"tt0870209","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/underground","version":92,"lastModified":"1301417509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c19\/4bc94efb017a3c57fe022c19\/underground-mid.jpg","title":"Underground","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66042"} +{"label":"Nathan Lewis","version":33,"id":"81672","lastModified":"1301901206000","name":"Nathan Lewis","type":"Person","_key":"66043"} +{"label":"El Mascarado Massacre","description":"No overview found.","id":"17319","runtime":75,"imdbId":"tt0497477","version":52,"lastModified":"1301907759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c22\/4bc94efb017a3c57fe022c22\/el-mascarado-massacre-mid.jpg","title":"El Mascarado Massacre","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"66044"} +{"label":"Rey Misterio Sr.","version":19,"id":"81673","lastModified":"1301902502000","name":"Rey Misterio Sr.","type":"Person","_key":"66045"} +{"label":"Leyla Milani","version":19,"id":"81674","lastModified":"1301901947000","name":"Leyla Milani","type":"Person","_key":"66046"} +{"label":"The TV Set","description":"As a writer named Mike struggles to shepherd his semi-autobiographical sitcom into development, his vision is slowly eroded by a domineering network executive named Lenny who favors trashy reality programming. The irony, of course, is that every crass suggestion Lenny makes improves the show's response from test audiences and brings the show a step closer to getting on the air.","id":"17320","runtime":87,"imdbId":"tt0473709","version":155,"lastModified":"1301904294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c2b\/4bc94efc017a3c57fe022c2b\/the-tv-set-mid.jpg","studio":"Thinkfilm","genre":"Comedy","title":"The TV Set","releaseDate":1146182400000,"language":"en","type":"Movie","_key":"66047"} +{"label":"Justine Bateman","version":18,"id":"105647","lastModified":"1301902064000","name":"Justine Bateman","type":"Person","_key":"66048"} +{"label":"Nat Faxon","version":18,"id":"105648","lastModified":"1301902237000","name":"Nat Faxon","type":"Person","_key":"66049"} +{"label":"Nebe\u0161t\u00ed jezdci","description":"Podzim roku 1942. Pos\u00e1dku bombard\u00e9ru typu Wellington tvo\u0159\u00ed prvn\u00ed pilot a kapit\u00e1n letadla \u010cechoslov\u00e1k Pavel, druh\u00fd pilot Angli\u010dan Frank, navig\u00e1tor Angli\u010dan George, telegrafista Kana\u010fan Tommy a palubn\u00ed st\u0159elci \u0160tudent a Prcek, oba \u010cechoslov\u00e1ci. No\u010dn\u00ed n\u00e1let na D\u00fcsseldorf skon\u010d\u00ed \u00fasp\u011b\u0161n\u011b a jejich letoun se vrac\u00ed \u0161\u0165astn\u011b na z\u00e1kladnu. Takov\u00e9 \u0161t\u011bst\u00ed u\u017e v\u0161ak nem\u011bla pos\u00e1dka dal\u0161\u00edho letounu, kter\u00fd byl nucen nouzov\u011b p\u0159ist\u00e1t na mo\u0159i a je pova\u017eov\u00e1n za ztracen\u00fd. Mladi\u010dk\u00e1 p\u0159\u00edslu\u0161nice WAAF Patricia odv\u00e1\u017e\u00ed pos\u00e1dk","id":"17322","runtime":91,"imdbId":"tt0127043","version":38,"lastModified":"1301420308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c34\/4bc94efd017a3c57fe022c34\/nebesti-jezdci-mid.jpg","genre":"Drama","title":"Nebe\u0161t\u00ed jezdci","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66050"} +{"label":"Didine","description":"No overview found.","id":"17323","runtime":0,"imdbId":"tt1000091","version":48,"lastModified":"1301902791000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c41\/4bc94efe017a3c57fe022c41\/didine-mid.jpg","title":"Didine","releaseDate":1201046400000,"language":"en","type":"Movie","_key":"66051"} +{"label":"Benjamin Biolay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/243\/4d96f1687b9aa1199a004243\/benjamin-biolay-profile.jpg","version":19,"id":"145871","lastModified":"1301902632000","name":"Benjamin Biolay","type":"Person","_key":"66052"} +{"label":"Vincent Dietschy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/24d\/4d96f1cf7b9aa1199a00424d\/vincent-dietschy-profile.jpg","version":19,"id":"19930","lastModified":"1301901405000","name":"Vincent Dietschy","type":"Person","_key":"66053"} +{"label":"Big Dreams Little Tokyo","description":"Big Dreams Little Tokyo is the story of Boyd, an American with an uncanny ability to speak Japanese. Boyd aspires to succeed in the world of Japanese business but finds himself mostly on the outside looking in. Meanwhile, his roommate Jerome, is a Japanese American who has always felt too American to be Japanese but too Japanese to be American. He aspires to be a sumo wrestler but finds his weight and blood pressure are thwarting his dreams. Together they struggle to find their place in a world ","id":"17326","runtime":86,"imdbId":"tt0486554","homepage":"http:\/\/www.bigdreamslittletokyo.com\/index2.php","version":211,"lastModified":"1301905946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a6\/4c6fe5ea5e73d65f7b0007a6\/big-dreams-little-tokyo-mid.jpg","genre":"Comedy","title":"Big Dreams Little Tokyo","releaseDate":1136073600000,"language":"en","tagline":"Because a fish out of water is best served with ginger and wasabi.","type":"Movie","_key":"66054"} +{"label":"Dave Boyle","version":22,"id":"129768","lastModified":"1301902750000","name":"Dave Boyle","type":"Person","_key":"66055"} +{"label":"Dave Boyle","version":24,"id":"129769","lastModified":"1301902750000","name":"Dave Boyle","type":"Person","_key":"66056"} +{"label":"Jayson Watabe","version":16,"id":"145698","lastModified":"1301903093000","name":"Jayson Watabe","type":"Person","_key":"66057"} +{"label":"Rachel Morihiro","version":16,"id":"145699","lastModified":"1301903089000","name":"Rachel Morihiro","type":"Person","_key":"66058"} +{"label":"James Kyson-Lee","version":21,"id":"105830","lastModified":"1301902316000","name":"James Kyson-Lee","type":"Person","_key":"66059"} +{"label":"Eiga: Kurosagi","description":"No overview found.","id":"17330","runtime":127,"imdbId":"tt1159502","version":63,"lastModified":"1301906770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c53\/4bc94eff017a3c57fe022c53\/eiga-kurosagi-mid.jpg","studio":"Dreamax Television","title":"Eiga: Kurosagi","releaseDate":1204934400000,"language":"en","type":"Movie","_key":"66060"} +{"label":"Suck my geek","description":"No overview found.","id":"17331","runtime":52,"imdbId":"tt1169168","homepage":"http:\/\/suckmygeek.com\/","version":102,"lastModified":"1301905698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/620\/4d991c865e73d6225d006620\/suck-my-geek-mid.jpg","studio":"Empreinte Digitale","title":"Suck my geek","releaseDate":1196380800000,"language":"en","type":"Movie","_key":"66061"} +{"label":"Xavier Sayanoff","version":4,"id":"231777","lastModified":"1301872807000","name":"Xavier Sayanoff","type":"Person","_key":"66062"} +{"label":"Tristan Schulmann","version":4,"id":"231778","lastModified":"1301872807000","name":"Tristan Schulmann","type":"Person","_key":"66063"} +{"label":"The Soloist","description":"Journalist Steve Lopez discovers Nathaniel Anthony Ayers, a former classical music prodigy, playing his violin on the streets of L.A. As Lopez endeavors to help the homeless man find his way back, a unique friendship is formed, one that transforms both their lives.","id":"17332","runtime":109,"imdbId":"tt0821642","trailer":"http:\/\/www.youtube.com\/watch?v=q5GvsB3NfD0","homepage":"http:\/\/www.soloistmovie.com","version":300,"lastModified":"1302065990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/070\/4cd4a37c5e73d676ce000070\/the-soloist-mid.jpg","studio":"DreamWorks SKG","genre":"Drama","title":"The Soloist","releaseDate":1240531200000,"language":"en","type":"Movie","_key":"66064"} +{"label":"Nelsan Ellis","version":27,"id":"81697","lastModified":"1302065990000","name":"Nelsan Ellis","type":"Person","_key":"66065"} +{"label":"Michael Bunin","version":25,"id":"81698","lastModified":"1302065990000","name":"Michael Bunin","type":"Person","_key":"66066"} +{"label":"The Other End Of The Line","description":"An employee at an Indian call-center travels to San Francisco to be with a guy she falls for over the phone","id":"17334","runtime":106,"imdbId":"tt1049405","version":156,"lastModified":"1301905637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c85\/4bc94f08017a3c57fe022c85\/the-other-end-of-the-line-mid.jpg","genre":"Comedy","title":"The Other End Of The Line","releaseDate":1234396800000,"language":"en","type":"Movie","_key":"66067"} +{"label":"Shriya Saran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8a6\/4d2105505e73d66b340028a6\/shriya-saran-profile.jpg","version":25,"id":"145628","lastModified":"1301901599000","name":"Shriya Saran","type":"Person","_key":"66068"} +{"label":"Obsessed","description":"Derek Charles, a successful asset manager who has just received a huge promotion, is blissfully happy in his career and in his marriage to the beautiful Beth. But when Lisa, a temp worker, starts stalking Derek, everything he's worked so hard for, are placed in jeopardy. ","id":"17335","runtime":105,"imdbId":"tt1198138","trailer":"http:\/\/www.youtube.com\/watch?v=JBq8clz1nvQ","homepage":"http:\/\/www.areyouobsessed.com","version":228,"lastModified":"1301902520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca6\/4bc94f0c017a3c57fe022ca6\/obsessed-mid.jpg","studio":"Sony Pictures Releasing","genre":"Drama","title":"Obsessed","releaseDate":1240531200000,"language":"en","type":"Movie","_key":"66069"} +{"label":"Steve Shill","version":24,"id":"80747","lastModified":"1301901609000","name":"Steve Shill","type":"Person","_key":"66070"} +{"label":"Fighting","description":"Small-town boy Shawn MacArthur has come to New York City with nothing. Barely earning a living selling counterfeit goods on the streets, his luck changes when scam artist Harvey Boarden sees that he has a natural talent for streetfighting. When Harvey offers Shawn help at making the real cash, the two form an uneasy partnership.","id":"17336","runtime":105,"imdbId":"tt1082601","trailer":"http:\/\/www.youtube.com\/watch?v=O6o6EBdhGGA","homepage":"http:\/\/www.fightingmovie.net","version":333,"lastModified":"1301903516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd5\/4bc94f13017a3c57fe022cd5\/fighting-mid.jpg","studio":"Misher Films","genre":"Crime","title":"Fighting","releaseDate":1240531200000,"language":"en","type":"Movie","_key":"66071"} +{"label":"Zulay Henao","version":21,"id":"81703","lastModified":"1301901608000","name":"Zulay Henao","type":"Person","_key":"66072"} +{"label":"The Land Before Time VI: The Secret of Saurus Rock","description":"Legends claim that Saurus Rock keeps bad luck out of the Great Valley. Is it really true? Could the mysterious Longneck named Doe be the famous Lone Dinosaur, who can defeat a Sharptooth with his lasso-like tail? To find out, Littlefoot and company must cross theiGreat Valley and face a dangerous Sharptooth themselves!\r\n\r\n","id":"17337","runtime":77,"imdbId":"tt0167247","version":328,"lastModified":"1301903352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce3\/4bc94f17017a3c57fe022ce3\/the-land-before-time-vi-the-secret-of-saurus-rock-mid.jpg","genre":"Family","title":"The Land Before Time VI: The Secret of Saurus Rock","releaseDate":912470400000,"language":"en","type":"Movie","_key":"66073"} +{"label":"Charles Grosvenor","version":30,"id":"90864","lastModified":"1301902489000","name":"Charles Grosvenor","type":"Person","_key":"66074"} +{"label":"Anndi McAfee","version":27,"id":"35224","lastModified":"1301901708000","name":"Anndi McAfee","type":"Person","_key":"66075"} +{"label":"Aria Noelle Curzon","version":22,"id":"91022","lastModified":"1301902456000","name":"Aria Noelle Curzon","type":"Person","_key":"66076"} +{"label":"Sandy Fox","version":20,"id":"91023","lastModified":"1301903033000","name":"Sandy Fox","type":"Person","_key":"66077"} +{"label":"Another Lady Innocent","description":"Faye, the beautiful and innocent daughter of a wealthy land owner, made friends with her maid Sophia and her friend John. But when she was sent to a school she left John in the care of Sophia, now she's finally back, and it seems to be the end of her innocent days.","id":"17338","runtime":30,"trailer":"http:\/\/www.youtube.com\/watch?v=1147","version":29,"lastModified":"1301908526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cec\/4bc94f18017a3c57fe022cec\/another-lady-innocent-mid.jpg","studio":"ADR Productions","genre":"Drama","title":"Another Lady Innocent","releaseDate":1100131200000,"language":"en","type":"Movie","_key":"66078"} +{"label":"Kinji Yoshimoto","version":16,"id":"81705","lastModified":"1301901947000","name":"Kinji Yoshimoto","type":"Person","_key":"66079"} +{"label":"Satoshi Urushihara","version":17,"id":"81706","lastModified":"1301902143000","name":"Satoshi Urushihara","type":"Person","_key":"66080"} +{"label":"Burton Halli","version":15,"id":"81711","lastModified":"1301902324000","name":"Burton Halli","type":"Person","_key":"66081"} +{"label":"Pete Meat","version":16,"id":"81712","lastModified":"1301902030000","name":"Pete Meat","type":"Person","_key":"66082"} +{"label":"Force 10 from Navarone","description":"Mallory and Miller are back. Mallory and Miller are sent on a mission along with a unit called Force 10, which is led by Colonel Barnsby, Force 10 has a mission of their own which Mallory and Miller know nothing about.","id":"17339","runtime":118,"imdbId":"tt0077572","trailer":"http:\/\/www.youtube.com\/watch?v=Ho6FFhtTfkI","version":149,"lastModified":"1301906261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/120\/4c2f09bc7b9aa16660000120\/force-10-from-navarone-mid.jpg","genre":"Action","title":"Force 10 from Navarone","releaseDate":281923200000,"language":"en","type":"Movie","_key":"66083"} +{"label":"Petar Buntic","version":20,"id":"113900","lastModified":"1301902913000","name":"Petar Buntic","type":"Person","_key":"66084"} +{"label":"Ye Che","description":"Wu Hongyan, woman executioner in her thirties, works at the court in the province of Shaanxi in China, where she carries out executions on women. Wu Hongyan travels every weekend to a town to join parties organized by a marriage bureau. The result of her dating is mediocre, until she meets the mysterious Li Jun. She could not have suspected that Li Jun's wife was the last woman she has executed","id":"17342","runtime":94,"imdbId":"tt1032941","homepage":"http:\/\/www.trigon-film.ch\/en\/movies\/Night_Train","version":57,"lastModified":"1301906184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0c\/4bc94f1f017a3c57fe022d0c\/ye-che-mid.jpg","genre":"Drama","title":"Ye Che","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66085"} +{"label":"Vampiros lesbos","description":"An erotic horror tale about a vixen vampiress seducing and killing women to appease her insatiable thirst for female blood.","id":"17343","runtime":89,"imdbId":"tt0066380","version":54,"lastModified":"1301904698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d15\/4bc94f20017a3c57fe022d15\/vampiros-lesbos-mid.jpg","genre":"Erotic","title":"Vampiros lesbos","releaseDate":48384000000,"language":"en","type":"Movie","_key":"66086"} +{"label":"Andr\u00e9s Monales","version":22,"id":"81716","lastModified":"1301901999000","name":"Andr\u00e9s Monales","type":"Person","_key":"66087"} +{"label":"Heidrun Kussin","version":16,"id":"100732","lastModified":"1301902914000","name":"Heidrun Kussin","type":"Person","_key":"66088"} +{"label":"Michael Berling","version":18,"id":"100733","lastModified":"1301902914000","name":"Michael Berling","type":"Person","_key":"66089"} +{"label":"Beni Cardoso","version":20,"id":"100321","lastModified":"1301902534000","name":"Beni Cardoso","type":"Person","_key":"66090"} +{"label":"Nicole Guettard","version":25,"id":"44410","lastModified":"1301902007000","name":"Nicole Guettard","type":"Person","_key":"66091"} +{"label":"Flywheel","description":"Jay Austin wants to sell you a used car, but watch out! Many victims have fallen prey to his smiling face and hasty promises. Austin does everything his way until his dishonesty and manipulation are exposed. Like many men, he becomes disgusted by the masks he wears and the lies he tells. In every man's life, there can be a turning point. When Jay makes his turn, he never looks back.","id":"17345","runtime":120,"imdbId":"tt0425027","version":135,"lastModified":"1301905307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e69\/4bff0ea0017a3c7031000e69\/flywheel-mid.jpg","genre":"Drama","title":"Flywheel","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"66092"} +{"label":"Grey Gardens","description":"An old mother and her middle-aged daughter, the aunt and cousin of Jacqueline Kennedy Onassis, live their eccentric lives in a filthy, decaying mansion in East Hampton.","id":"17346","runtime":100,"imdbId":"tt0073076","version":109,"lastModified":"1301904087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1e\/4bc94f20017a3c57fe022d1e\/grey-gardens-mid.jpg","genre":"Documentary","title":"Grey Gardens","releaseDate":157766400000,"language":"en","type":"Movie","_key":"66093"} +{"label":"Edith Bouvier Beale","version":21,"id":"83047","lastModified":"1301902224000","name":"Edith Bouvier Beale","type":"Person","_key":"66094"} +{"label":"Bride flight","description":"The story of the women on the KLM flight that won the 1953 Air Race from London to Christchurch, New Zealand.","id":"17347","runtime":130,"imdbId":"tt1094241","homepage":"http:\/\/www.brideflight.com","version":98,"lastModified":"1301904007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d27\/4bc94f21017a3c57fe022d27\/bride-flight-mid.jpg","genre":"Drama","title":"Bride flight","releaseDate":1224115200000,"language":"en","type":"Movie","_key":"66095"} +{"label":"Karina Smulders","version":21,"id":"87674","lastModified":"1301901812000","name":"Karina Smulders","type":"Person","_key":"66096"} +{"label":"Anna Drijver","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ed\/4c04cf30017a3c7e890001ed\/anna-drijver-profile.jpg","version":20,"id":"87676","lastModified":"1301901493000","name":"Anna Drijver","type":"Person","_key":"66097"} +{"label":"Petra Laseur","version":21,"id":"87677","lastModified":"1301902691000","name":"Petra Laseur","type":"Person","_key":"66098"} +{"label":"Elise Schaap","version":19,"id":"87678","lastModified":"1301902502000","name":"Elise Schaap","type":"Person","_key":"66099"} +{"label":"Brice de Nice","description":"Brice Agostini m\u00e8ne la belle vie \u00e0 Nice. Fan du film Point Break, il passe son temps \u00e0 attendre qu'une vague g\u00e9ante d\u00e9ferle sur les rives de Nice, comme cela a eu lieu une fois, en 1979. En attendant, il n'y a pas une seule vague \u00e0 Nice qui permette de surfer. Son passe-temps est d'organiser des soir\u00e9es festives, appel\u00e9es \"Yellow\" o\u00f9 il participe \u00e0 des joutes verbales.","id":"17350","runtime":98,"imdbId":"tt0412535","version":74,"lastModified":"1301906313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3c\/4bc94f22017a3c57fe022d3c\/brice-de-nice-mid.jpg","studio":"Mandarin Cin\u00e9ma","genre":"Comedy","title":"Brice de Nice","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"66100"} +{"label":"Elodie Bouchez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e4b\/4d7b55e25e73d65ec6000e4b\/elodie-bouchez-profile.jpg","version":23,"id":"140379","lastModified":"1301902475000","name":"Elodie Bouchez","type":"Person","_key":"66101"} +{"label":"Alexandra Lamy","version":18,"id":"136861","lastModified":"1301902660000","name":"Alexandra Lamy","type":"Person","_key":"66102"} +{"label":"Mathias Mlekuz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4d753e735e73d664620000b5\/mathias-mlekuz-profile.jpg","version":27,"id":"82187","lastModified":"1301901526000","name":"Mathias Mlekuz","type":"Person","_key":"66103"} +{"label":"Delphine Chaneac","version":16,"id":"146819","lastModified":"1301902641000","name":"Delphine Chaneac","type":"Person","_key":"66104"} +{"label":"Lannick Gautry","version":25,"id":"84433","lastModified":"1301902554000","name":"Lannick Gautry","type":"Person","_key":"66105"} +{"label":"South Pacific","description":"While waiting for action in the war in the South Pacific, sailors and nurses put on a musical comedy show. Can Nellie Forbush, a military nurse, find happiness with a Frenchman she got to know one enchanted evening away from the military hospital? Will Lt. Joseph Cable USMC pursue the beautiful island girl he has fallen in love with. It is the middle of war and nothing is certain.","id":"17352","runtime":151,"imdbId":"tt0052225","version":153,"lastModified":"1301902877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4e\/4bc94f23017a3c57fe022d4e\/south-pacific-mid.jpg","studio":"Magna Corporation","genre":"Musical","title":"South Pacific","releaseDate":-372038400000,"language":"en","type":"Movie","_key":"66106"} +{"label":"Mitzi Gaynor","version":21,"id":"99662","lastModified":"1301902327000","name":"Mitzi Gaynor","type":"Person","_key":"66107"} +{"label":"John Kerr","version":26,"id":"62881","lastModified":"1301902324000","name":"John Kerr","type":"Person","_key":"66108"} +{"label":"Juanita Hall","version":18,"id":"99663","lastModified":"1301903080000","name":"Juanita Hall","type":"Person","_key":"66109"} +{"label":"France Nuyen","version":19,"id":"16096","lastModified":"1301901971000","name":"France Nuyen","type":"Person","_key":"66110"} +{"label":"Zeca Pagodinho - Ac\u00fastico MTV","description":"No overview found.","id":"17354","runtime":0,"imdbId":"tt0391564","version":32,"lastModified":"1301907381000","studio":"MTV Films","title":"Zeca Pagodinho - Ac\u00fastico MTV","releaseDate":1069977600000,"language":"en","type":"Movie","_key":"66111"} +{"label":"Arlindo Cruz","version":17,"id":"81723","lastModified":"1301902502000","name":"Arlindo Cruz","type":"Person","_key":"66112"} +{"label":"Zeca Pagodinho","version":19,"id":"81724","lastModified":"1301902502000","name":"Zeca Pagodinho","type":"Person","_key":"66113"} +{"label":"A Partilha","description":"No overview found.","id":"17355","runtime":96,"imdbId":"tt0287625","version":44,"lastModified":"1301421291000","studio":"Globo Filmes","title":"A Partilha","releaseDate":978307200000,"language":"en","type":"Movie","_key":"66114"} +{"label":"Evanescence: Anywhere But Home","description":"Famed music video director Hamish Hamilton (Madonna, U2) captures in this spectacular 14 camera shoot the energy of Grammy-winning rock group Evanescence in a live performance from the band's concert at the Zenith in Paris, France, on May 25th, 2004. The set list includes: \"Haunted\", \"Going Under\", \"Taking Over Me\", \"Everybody's Fool\", \"Thoughtless\", \"My Last Breath\", \"Farther Away\", \"Breathe no More\", \"My Immortal\", \"Bring Me to Life\", \"Tourniquet\", \"Imaginary\", and \"Whisper\".","id":"17356","runtime":57,"imdbId":"tt0472522","version":116,"lastModified":"1301903347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d60\/4bc94f25017a3c57fe022d60\/evanescence-anywhere-but-home-mid.jpg","studio":"Wind-Up Records","genre":"Comedy","title":"Evanescence: Anywhere But Home","releaseDate":1101168000000,"language":"en","type":"Movie","_key":"66115"} +{"label":"Amy Lee","version":18,"id":"92858","lastModified":"1301901991000","name":"Amy Lee","type":"Person","_key":"66116"} +{"label":"William Boyd","version":18,"id":"92860","lastModified":"1301901581000","name":"William Boyd","type":"Person","_key":"66117"} +{"label":"John LeCompt","version":17,"id":"92862","lastModified":"1301901778000","name":"John LeCompt","type":"Person","_key":"66118"} +{"label":"Terry Balsamo","version":17,"id":"92863","lastModified":"1301902142000","name":"Terry Balsamo","type":"Person","_key":"66119"} +{"label":"Rocky Gray","version":17,"id":"92864","lastModified":"1301902986000","name":"Rocky Gray","type":"Person","_key":"66120"} +{"label":"Colts vs. Patriots - AFC Championship Game","description":"In this classic matchup, Tom Brady and the Patriots seemed to be on their way to avenging their regular season loss as they jumped out to an early 21-3 lead. However, Peyton Manning led Indianpolis back in the largest comeback ever in an AFC Championship game. The Colts would go on to win Super Bowl XLI.","id":"17357","runtime":131,"version":13,"lastModified":"1300980430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d69\/4bc94f25017a3c57fe022d69\/colts-vs-patriots-afc-championship-game-mid.jpg","genre":"Sports Film","title":"Colts vs. Patriots - AFC Championship Game","releaseDate":1169337600000,"language":"en","type":"Movie","_key":"66121"} +{"label":"My Name Ain't Johnny","description":"In the 90's, In Rio de Janeiro, the middle-class Jo\u00e3o Guilherme Estrella is introduced to the world of drugs consuming maconha and cocaine first and later becoming a drug-dealer with many connections inclusive in Europe. However, he spends all the money he makes in his addiction, parties with clients and friends and travels, never structuring or organizing a network or saving money. When he is arrested, he is sent to the prison first and later to the judicial asylum for treatment, reintegrating ","id":"17358","runtime":124,"imdbId":"tt1092016","version":118,"lastModified":"1301907189000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d72\/4bc94f29017a3c57fe022d72\/meu-nome-nao-e-johnny-mid.jpg","studio":"Atitude Produ\u00e7\u00f5es e Empreendimentos","genre":"Crime","title":"My Name Ain't Johnny","releaseDate":1199404800000,"language":"en","type":"Movie","_key":"66122"} +{"label":"J\u00falia Lemmertz","version":22,"id":"115172","lastModified":"1301902224000","name":"J\u00falia Lemmertz","type":"Person","_key":"66123"} +{"label":"Felipe Severo","version":21,"id":"127650","lastModified":"1301902647000","name":"Felipe Severo","type":"Person","_key":"66124"} +{"label":"Breno Guimar\u00e3es","version":22,"id":"127651","lastModified":"1301902697000","name":"Breno Guimar\u00e3es","type":"Person","_key":"66125"} +{"label":"Ellan Lustosa","version":22,"id":"127652","lastModified":"1301902718000","name":"Ellan Lustosa","type":"Person","_key":"66126"} +{"label":"Gillray Coutinho","version":22,"id":"127653","lastModified":"1301902726000","name":"Gillray Coutinho","type":"Person","_key":"66127"} +{"label":"Cl\u00e9o Pires","version":23,"id":"127654","lastModified":"1301902412000","name":"Cl\u00e9o Pires","type":"Person","_key":"66128"} +{"label":"Arthur Lopes","version":21,"id":"127655","lastModified":"1301902632000","name":"Arthur Lopes","type":"Person","_key":"66129"} +{"label":"Victor Lisboa Gorgulho","version":21,"id":"127656","lastModified":"1301902589000","name":"Victor Lisboa Gorgulho","type":"Person","_key":"66130"} +{"label":"Daniel Torres","version":21,"id":"127657","lastModified":"1301902602000","name":"Daniel Torres","type":"Person","_key":"66131"} +{"label":"Rodrigo Amarante","version":21,"id":"127658","lastModified":"1301902644000","name":"Rodrigo Amarante","type":"Person","_key":"66132"} +{"label":"Tammy Di Calafiori","version":21,"id":"127659","lastModified":"1301902676000","name":"Tammy Di Calafiori","type":"Person","_key":"66133"} +{"label":"\u00c2ngelo Paes Leme","version":23,"id":"127660","lastModified":"1301902591000","name":"\u00c2ngelo Paes Leme","type":"Person","_key":"66134"} +{"label":"Fl\u00e1vio Pardal","version":21,"id":"127661","lastModified":"1301902572000","name":"Fl\u00e1vio Pardal","type":"Person","_key":"66135"} +{"label":"Rafaela Mandelli","version":21,"id":"127662","lastModified":"1301902572000","name":"Rafaela Mandelli","type":"Person","_key":"66136"} +{"label":"Dan Klabin","version":21,"id":"127663","lastModified":"1301902572000","name":"Dan Klabin","type":"Person","_key":"66137"} +{"label":"Luciano Vidigal","version":21,"id":"127665","lastModified":"1301902984000","name":"Luciano Vidigal","type":"Person","_key":"66138"} +{"label":"Eva Todor","version":21,"id":"127666","lastModified":"1301902572000","name":"Eva Todor","type":"Person","_key":"66139"} +{"label":"Ant\u00f4nio S\u00e9rgio Firmino","version":22,"id":"127667","lastModified":"1301902688000","name":"Ant\u00f4nio S\u00e9rgio Firmino","type":"Person","_key":"66140"} +{"label":"Marcelo Vindicato","version":22,"id":"127668","lastModified":"1301902713000","name":"Marcelo Vindicato","type":"Person","_key":"66141"} +{"label":"Regina Sampaio","version":22,"id":"127669","lastModified":"1301902713000","name":"Regina Sampaio","type":"Person","_key":"66142"} +{"label":"Kiko Mascarenhas","version":22,"id":"127670","lastModified":"1301902997000","name":"Kiko Mascarenhas","type":"Person","_key":"66143"} +{"label":"Giulio Lopes","version":17,"id":"90217","lastModified":"1301902616000","name":"Giulio Lopes","type":"Person","_key":"66144"} +{"label":"Selton Mello","version":32,"birthday":"1293663600000","id":"87341","birthplace":"Passos","lastModified":"1301902221000","name":"Selton Mello","type":"Person","_key":"66145"} +{"label":"Aramis Trindade","version":24,"id":"123761","lastModified":"1301903071000","name":"Aramis Trindade","type":"Person","_key":"66146"} +{"label":"Mauro Lima","version":22,"id":"127673","lastModified":"1301903012000","name":"Mauro Lima","type":"Person","_key":"66147"} +{"label":"Not\u00edcias de uma Guerra Particular","description":"No overview found.","id":"17359","runtime":57,"imdbId":"tt0296108","version":30,"lastModified":"1301907373000","studio":"VideoFilmes","title":"Not\u00edcias de uma Guerra Particular","releaseDate":915148800000,"language":"en","type":"Movie","_key":"66148"} +{"label":"Victory","description":"A group of POWs in a German prison camp during World War II play the German National Soccer Team in this powerful film depicting the role of prisoners during wartime.","id":"17360","runtime":116,"imdbId":"tt0083284","trailer":"http:\/\/www.youtube.com\/watch?v=xOxj26vcwMI","version":132,"lastModified":"1301904212000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36c\/4bf75c01017a3c773200036c\/victory-mid.jpg","genre":"Action","title":"Victory","releaseDate":365299200000,"language":"en","tagline":"Their goal was freedom...","type":"Movie","_key":"66149"} +{"label":"Pel\u00e9","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0bb\/4cc838c17b9aa16b9d0000bb\/pele-profile.jpg","version":18,"id":"140152","lastModified":"1301902220000","name":"Pel\u00e9","type":"Person","_key":"66150"} +{"label":"Bobby Moore","version":18,"id":"140153","lastModified":"1301903027000","name":"Bobby Moore","type":"Person","_key":"66151"} +{"label":"Osvaldo Ardiles","version":17,"id":"140154","lastModified":"1301902772000","name":"Osvaldo Ardiles","type":"Person","_key":"66152"} +{"label":"Paul Van Himst","version":18,"id":"140155","lastModified":"1301903012000","name":"Paul Van Himst","type":"Person","_key":"66153"} +{"label":"Kazimierz Deyna","version":18,"id":"140156","lastModified":"1301902993000","name":"Kazimierz Deyna","type":"Person","_key":"66154"} +{"label":"Hallvar Thoresen","version":18,"id":"140157","lastModified":"1301902993000","name":"Hallvar Thoresen","type":"Person","_key":"66155"} +{"label":"Mike Summerbee","version":17,"id":"140158","lastModified":"1301902771000","name":"Mike Summerbee","type":"Person","_key":"66156"} +{"label":"Co Prins","version":17,"id":"140159","lastModified":"1301902755000","name":"Co Prins","type":"Person","_key":"66157"} +{"label":"Russell Osman","version":17,"id":"140160","lastModified":"1301902771000","name":"Russell Osman","type":"Person","_key":"66158"} +{"label":"John Wark","version":17,"id":"140161","lastModified":"1301902771000","name":"John Wark","type":"Person","_key":"66159"} +{"label":"S\u00f8ren Lindsted","version":17,"id":"140162","lastModified":"1301902771000","name":"S\u00f8ren Lindsted","type":"Person","_key":"66160"} +{"label":"Kevin O'Callaghan","version":17,"id":"140163","lastModified":"1301902771000","name":"Kevin O'Callaghan","type":"Person","_key":"66161"} +{"label":"Gary Waldhorn","version":17,"id":"140164","lastModified":"1301902771000","name":"Gary Waldhorn","type":"Person","_key":"66162"} +{"label":"Laurie Sivell","version":17,"id":"140165","lastModified":"1301902868000","name":"Laurie Sivell","type":"Person","_key":"66163"} +{"label":"Loverboy","description":"Randy Bodek works as a pizza delivery boy at Senor Pizza to make a few extra bucks. Some customers are special, though: When the order is for a pizza with extra anchovies, it means the female customers are looking for some loving. \"Loverboy's\" reputation soon makes him very popular, but when Mom Bodek suddenly feels like some extra anchovies, things are looking grim for young Randy","id":"17362","runtime":0,"imdbId":"tt0097790","version":231,"lastModified":"1301905945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8c\/4bc94f2c017a3c57fe022d8c\/loverboy-mid.jpg","genre":"Comedy","title":"Loverboy","releaseDate":609724800000,"language":"en","type":"Movie","_key":"66164"} +{"label":"Kate Jackson","version":17,"id":"105747","lastModified":"1301902375000","name":"Kate Jackson","type":"Person","_key":"66165"} +{"label":"Their Eyes Were Watching God","description":"A drama set in the 1920s, where free-spirited Janie Crawford's search for happiness leads her through several different marriages, challenging the morals of her small town. Based on the novel by Zora Neale Hurston.","id":"17364","runtime":113,"imdbId":"tt0406265","version":259,"lastModified":"1301904254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d95\/4bc94f2d017a3c57fe022d95\/their-eyes-were-watching-god-mid.jpg","studio":"American Broadcasting Company (ABC)","genre":"Drama","title":"Their Eyes Were Watching God","releaseDate":1110067200000,"language":"en","type":"Movie","_key":"66166"} +{"label":"Nicki Micheaux","version":32,"id":"81725","lastModified":"1301902526000","name":"Nicki Micheaux","type":"Person","_key":"66167"} +{"label":"Lorraine Toussaint","version":21,"id":"81726","lastModified":"1301902542000","name":"Lorraine Toussaint","type":"Person","_key":"66168"} +{"label":"The Parallax View","description":"The story concerns a reporter's dangerous investigation into an obscure organization, the Parallax Corporation, whose primary, but not ostensible, enterprise is political assassination.","id":"17365","runtime":102,"imdbId":"tt0071970","version":408,"lastModified":"1301903510000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/147\/4c38f80b7b9aa10edc000147\/the-parallax-view-mid.jpg","studio":"Doubleday Productions","genre":"Crime","title":"The Parallax View","releaseDate":140400000000,"language":"en","type":"Movie","_key":"66169"} +{"label":"Walter McGinn","version":20,"id":"81734","lastModified":"1301902539000","name":"Walter McGinn","type":"Person","_key":"66170"} +{"label":"Kelly Thordsen","version":24,"id":"81735","lastModified":"1301902542000","name":"Kelly Thordsen","type":"Person","_key":"66171"} +{"label":"24 mesures","description":"Le temps d\u2019une nuit, quatre destins se t\u00e9lescopent. Une prostitu\u00e9e, un chauffeur de taxi mystique, une jeune lesbienne et un musicien de jazz : tous ont des comptes \u00e0 r\u00e9gler avec la vie. La question est : y arriveront-ils \u00e0 temps?","id":"17366","runtime":82,"imdbId":"tt0935030","homepage":"http:\/\/www.24mesures-lefilm.com\/","version":72,"lastModified":"1301903871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daf\/4bc94f2f017a3c57fe022daf\/24-mesures-mid.jpg","studio":"WY Productions","genre":"Drama","title":"24 mesures","releaseDate":1196812800000,"language":"en","type":"Movie","_key":"66172"} +{"label":"Archie Shepp","version":20,"id":"81745","lastModified":"1301902204000","name":"Archie Shepp","type":"Person","_key":"66173"} +{"label":"Steve Mac Graven","version":20,"id":"81746","lastModified":"1301902360000","name":"Steve Mac Graven","type":"Person","_key":"66174"} +{"label":"Aur\u00e9lia Thi\u00e9rr\u00e9e","version":18,"id":"81747","lastModified":"1301902025000","name":"Aur\u00e9lia Thi\u00e9rr\u00e9e","type":"Person","_key":"66175"} +{"label":"Belle toujours","description":"Deux des personnages \u00e9tranges du film de Luis Bu\u00f1uel, Belle de jour retraversent \u2013trente-huit ans apr\u00e8s\u2013 le myst\u00e8re d\u2019un secret que seul le personnage masculin d\u00e9tient et dont la r\u00e9v\u00e9lation est essentielle au personnage f\u00e9minin.\r\nIls se croisent \u00e0 nouveau. Elle essaie \u00e0 tous prix de l\u2019\u00e9viter. Mais lui insiste et tente de la convaincre de le revoir.","id":"17367","runtime":70,"imdbId":"tt0475224","version":83,"lastModified":"1300980433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc1\/4bc94f32017a3c57fe022dc1\/belle-toujours-mid.jpg","studio":"Les Films d'Ici","genre":"Drama","title":"Belle toujours","releaseDate":1176249600000,"language":"en","type":"Movie","_key":"66176"} +{"label":"Manoel de Oliveira","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ed7\/4d3ec1d77b9aa15bad000ed7\/manoel-de-oliveira-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; \">Manoel de Oliveira was born in Porto, Portugal on December 11, 1908, to Francisco Jos\u00e9 de Oliveira and C\u00e2ndida Ferreira Pinto. His family were wealthy industrialists. O<\/span><span style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; \">liveira attended school in Galicia, Spain and his goal as a teenager was to become an actor. He enrolled in Italian film-maker Rino Lup","version":44,"id":"81749","lastModified":"1301901606000","name":"Manoel de Oliveira","type":"Person","_key":"66177"} +{"label":"The Sisterhood of the Traveling Pants Collection","description":"Four best girlfriends pass around a pair of secondhand jeans that fits each of their bodies perfectly.","id":"17368","title":"The Sisterhood of the Traveling Pants Collection","language":"en","lastModified":"1301905010000","version":44,"type":"Movie","_key":"66178"} +{"label":"Rolling","description":"No overview found.","id":"17375","runtime":90,"imdbId":"tt0469966","version":88,"lastModified":"1301907672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dce\/4bc94f33017a3c57fe022dce\/rolling-mid.jpg","studio":"Believe Entertainment","genre":"Drama","title":"Rolling","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"66179"} +{"label":"Anna M","description":"Atteinte de l'illusion d\u00e9lirante d'\u00eatre aim\u00e9e, Anna, jeune femme douce et r\u00e9serv\u00e9e, se persuade que le docteur Zanevsky est amoureux d'elle. D\u00e8s lors, rien, jamais, n'entamera sa conviction... Mais apr\u00e8s l'espoir, viendra le d\u00e9pit, puis la haine... \r\n","id":"17376","runtime":106,"imdbId":"tt0814659","version":52,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd7\/4bc94f35017a3c57fe022dd7\/anna-m-mid.jpg","studio":"Ex Nihilo","genre":"Drama","title":"Anna M","releaseDate":1176249600000,"language":"en","type":"Movie","_key":"66180"} +{"label":"Last Holiday","description":"After she's diagnosed with a terminal illness, a shy woman decides to take a European vacation.","id":"17379","runtime":112,"imdbId":"tt0408985","version":469,"lastModified":"1301904087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f55\/4cff2b915e73d62999004f55\/last-holiday-mid.jpg","genre":"Adventure","title":"Last Holiday","releaseDate":1137110400000,"language":"en","tagline":"She always thought she was somebody special... and she was.","type":"Movie","_key":"66181"} +{"label":"BMX Bandits","description":"Two BMX expert bikers and a friend of theirs (Kidman) become entangled with a group of bank robbers after discovering a carton of walkie-talkies. ","id":"17381","runtime":88,"imdbId":"tt0085204","version":406,"lastModified":"1301904148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de5\/4bc94f3a017a3c57fe022de5\/bmx-bandits-mid.jpg","genre":"Action","title":"BMX Bandits","releaseDate":441504000000,"language":"en","type":"Movie","_key":"66182"} +{"label":"James Lugton","version":17,"id":"139780","lastModified":"1301903052000","name":"James Lugton","type":"Person","_key":"66183"} +{"label":"Angelo D'Angelo","version":18,"id":"139782","lastModified":"1301903051000","name":"Angelo D'Angelo","type":"Person","_key":"66184"} +{"label":"David Argue","version":18,"id":"94786","lastModified":"1301902442000","name":"David Argue","type":"Person","_key":"66185"} +{"label":"John Ley","version":16,"id":"139785","lastModified":"1301902740000","name":"John Ley","type":"Person","_key":"66186"} +{"label":"Brian Trenchard-Smith","biography":"<meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 17px; \">Brian Trenchard-Smith is an Anglo Australian film and television director, producer, and writer, with a reputation for large scale movies on small scale budgets, many of which display a quirky sense of humor that has earned him a cult following. Quentin Tarantino referred to him in Entertainment Weekly as one of his favorite directors. H","version":52,"id":"84981","birthplace":"England","lastModified":"1301901429000","name":"Brian Trenchard-Smith","type":"Person","_key":"66187"} +{"label":"They Died With Their Boots On","description":"The story follows General George Armstrong Custer's adventures from his West Point days to his death. He defies orders during the Civil War, trains the 7th Cavalry, appeases Chief Crazy Horse and later engages in bloody battle with the Sioux nation.","id":"17382","runtime":140,"imdbId":"tt0034277","version":120,"lastModified":"1301906465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dea\/4bc94f3a017a3c57fe022dea\/they-died-with-their-boots-on-mid.jpg","studio":"Warner Bros. Pictures","title":"They Died With Their Boots On","releaseDate":-883612800000,"language":"en","type":"Movie","_key":"66188"} +{"label":"A New Journey: Live at Slane Castle","description":"Celtic Woman, the PBS sensation, returns for 2007 in A New Journey: Live at Slane Castle, Ireland. Most of the elements return as well: vocalists Chloe, Meav, Lisa, and Orla; fiery fiddler Mairead; music director David Downes; chorus and orchestra. New for this show is New Zealand vocalist Hayley Westenra, a picturesque outdoor location, and an almost entirely new song list.","id":"17384","runtime":0,"imdbId":"tt1089731","version":257,"lastModified":"1301418595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfb\/4bc94f3b017a3c57fe022dfb\/a-new-journey-live-at-slane-castle-mid.jpg","title":"A New Journey: Live at Slane Castle","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66189"} +{"label":"Chlo\u00eb Agnew","version":19,"id":"81803","lastModified":"1301902457000","name":"Chlo\u00eb Agnew","type":"Person","_key":"66190"} +{"label":"\u00d3rla Fallon","version":19,"id":"81804","lastModified":"1301902457000","name":"\u00d3rla Fallon","type":"Person","_key":"66191"} +{"label":"Lisa Kelly","version":19,"id":"81805","lastModified":"1301902457000","name":"Lisa Kelly","type":"Person","_key":"66192"} +{"label":"M\u00e1ir\u00e9ad Nesbitt","version":20,"id":"81806","lastModified":"1301902404000","name":"M\u00e1ir\u00e9ad Nesbitt","type":"Person","_key":"66193"} +{"label":"M\u00e9av N\u00ed Mhaolchatha","version":19,"id":"81807","lastModified":"1301902457000","name":"M\u00e9av N\u00ed Mhaolchatha","type":"Person","_key":"66194"} +{"label":"Hayley Westenra","version":19,"id":"81808","lastModified":"1301902457000","name":"Hayley Westenra","type":"Person","_key":"66195"} +{"label":"Declan Lowney","version":20,"id":"81809","lastModified":"1301902394000","name":"Declan Lowney","type":"Person","_key":"66196"} +{"label":"David Downes","version":19,"id":"81810","lastModified":"1301902457000","name":"David Downes","type":"Person","_key":"66197"} +{"label":"Revenge of the Ninja","description":"After his family is killed in Japan by ninjas, Cho and his son Kane come to America to start a new life. He opens a doll shop but is unwittingly importing heroin in the dolls. When he finds out that his friend has betrayed him, Cho must prepare for the ultimate battle he has ever been involved in.","id":"17386","runtime":90,"imdbId":"tt0086192","trailer":"http:\/\/www.youtube.com\/watch?v=1814","version":270,"lastModified":"1301908308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e08\/4bc94f3c017a3c57fe022e08\/revenge-of-the-ninja-mid.jpg","studio":"Cannon Group","genre":"Action","title":"Revenge of the Ninja","releaseDate":432518400000,"language":"en","type":"Movie","_key":"66198"} +{"label":"The Italian","description":"Set in 2002, an abandoned 5-year-old boy living in a rundown orphanage in a small Russian village is adopted by an Italian family.","id":"17388","runtime":90,"imdbId":"tt0450450","version":244,"lastModified":"1301902733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/154\/4c76ef745e73d60418000154\/italianetz-mid.jpg","studio":"Lenfilm Studio","genre":"Drama","title":"The Italian","releaseDate":1177459200000,"language":"en","type":"Movie","_key":"66199"} +{"label":"Kolya Spiridonov","version":21,"id":"81750","lastModified":"1301901811000","name":"Kolya Spiridonov","type":"Person","_key":"66200"} +{"label":"Mariya Kuznetsova","version":24,"id":"81751","lastModified":"1301901811000","name":"Mariya Kuznetsova","type":"Person","_key":"66201"} +{"label":"Nikolay Reutov","version":21,"id":"81752","lastModified":"1301901811000","name":"Nikolay Reutov","type":"Person","_key":"66202"} +{"label":"Jurij Ickov","version":21,"id":"81753","lastModified":"1301901810000","name":"Jurij Ickov","type":"Person","_key":"66203"} +{"label":"Denis Moiseenko","version":20,"id":"81754","lastModified":"1301902456000","name":"Denis Moiseenko","type":"Person","_key":"66204"} +{"label":"Sasha Sirotkin","version":20,"id":"81755","lastModified":"1301902456000","name":"Sasha Sirotkin","type":"Person","_key":"66205"} +{"label":"Polina Vorobieva","version":20,"id":"81756","lastModified":"1301902064000","name":"Polina Vorobieva","type":"Person","_key":"66206"} +{"label":"Olga Shuvalova","version":20,"id":"81757","lastModified":"1301902456000","name":"Olga Shuvalova","type":"Person","_key":"66207"} +{"label":"Dima Zemlyanko","version":20,"id":"81758","lastModified":"1301902456000","name":"Dima Zemlyanko","type":"Person","_key":"66208"} +{"label":"Dariya Lesnikova","version":20,"id":"81759","lastModified":"1301902064000","name":"Dariya Lesnikova","type":"Person","_key":"66209"} +{"label":"Rudolf Kuld","version":20,"id":"81760","lastModified":"1301902064000","name":"Rudolf Kuld","type":"Person","_key":"66210"} +{"label":"Kylie: Showgirl","description":"\"Showgirl\" features an amazing cross-section of Kylie hits some performed in a brand new style. The DVD features 26 songs a 22 minute behind the scenes documentary multi-angle features and ROM section. \"Showgirl\" represents Kylie's finest moments in music performance and style and is an homage to the showgirl one of the most exotic decadent and sensual icons of our times.","id":"17398","runtime":144,"version":37,"lastModified":"1301417954000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1e\/4bc94f3d017a3c57fe022e1e\/kylie-showgirl-mid.jpg","genre":"Musical","title":"Kylie: Showgirl","releaseDate":1133222400000,"language":"en","type":"Movie","_key":"66211"} +{"label":"Zappa Plays Zappa","description":"Zappa Plays Zappa is the name of a concert tour and band led by Dweezil Zappa, the oldest son of the late composer and musician Frank Zappa. The show is a collection of Frank Zappa's rock-oriented compositions from 1960s to 1980s. Features Dweezil on lead guitar, Napoleon Murphy Brock (sax, flute, vocals), drummer\/singer Terry Bozzio and electric guitarist Steve Vai.","id":"17399","runtime":0,"imdbId":"tt1423476","version":422,"lastModified":"1301907943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2c\/4bc94f3e017a3c57fe022e2c\/zappa-plays-zappa-mid.jpg","genre":"Musical","title":"Zappa Plays Zappa","releaseDate":1191542400000,"language":"en","type":"Movie","_key":"66212"} +{"label":"Avril Lavigne: The Best Damn Tour - Live in Toronto","description":"Pop-punk princess Avril Lavigne plays the hits that earned her legions of screaming fans (and launched a thousand ringtones) on The Best Damn Tour, a full-length presentation of her 2008 concert in Toronto. Opening with monster hit \"Girlfriend,\" Lavigne rocks through every one of her major singles, including \"Complicated,\" \"My Happy Ending,\" and the ubiquitous \"Sk8R BOI.\"","id":"17400","runtime":75,"imdbId":"tt1289777","version":158,"lastModified":"1301905863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e35\/4bc94f3f017a3c57fe022e35\/avril-lavigne-the-best-damn-tour-live-in-toronto-mid.jpg","genre":"Musical","title":"Avril Lavigne: The Best Damn Tour - Live in Toronto","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"66213"} +{"label":"Blue Water, White Death","description":"Peter Gimbel and a team of photographers set out on an expedition to find and Film, for the very first time, Carcharodon carcharias....The Great White Shark. The Expedition took over nine months and traveled from Durban, South Africa, across the Indian Ocean and finally to South Australia.","id":"17401","runtime":99,"imdbId":"tt0146496","trailer":"http:\/\/www.youtube.com\/watch?v=1152","version":94,"lastModified":"1301906313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e42\/4bc94f40017a3c57fe022e42\/blue-water-white-death-mid.jpg","studio":"Cinema Center Films","genre":"Documentary","title":"Blue Water, White Death","releaseDate":44582400000,"language":"en","type":"Movie","_key":"66214"} +{"label":"Tom Chapin","version":20,"id":"60992","lastModified":"1301901822000","name":"Tom Chapin","type":"Person","_key":"66215"} +{"label":"Valerie Taylor","version":19,"id":"81774","lastModified":"1301901947000","name":"Valerie Taylor","type":"Person","_key":"66216"} +{"label":"Peter Gimbel","version":20,"id":"81775","lastModified":"1301901778000","name":"Peter Gimbel","type":"Person","_key":"66217"} +{"label":"Ron Taylor","version":19,"id":"81776","lastModified":"1301901947000","name":"Ron Taylor","type":"Person","_key":"66218"} +{"label":"James Lipscomb","version":20,"id":"81779","lastModified":"1301904134000","name":"James Lipscomb","type":"Person","_key":"66219"} +{"label":"Miami Rhapsody","description":"Gwyn Marcus has always wanted a marriage like her parents. She has just accepted the proposal of her boyfriend Matt, but she has misgivings about their future together. Her fear of commitment grows as she learns of the various affairs that her family is having. With her sister getting married and her brother already married, her mother is growing concerned about Gwyn's being the last single person in the family. But the more she thinks about marriage, the more she must search for the balance bet","id":"17402","runtime":95,"imdbId":"tt0113808","version":120,"lastModified":"1301906845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4d681d745e73d66b30000176\/miami-rhapsody-mid.jpg","genre":"Comedy","title":"Miami Rhapsody","releaseDate":791164800000,"language":"en","type":"Movie","_key":"66220"} +{"label":"How to Deal","description":"Mandy Moore stars as Halley, a young hip high school student who's convinced true love doesn't exist based on the crazy relationships around her. Her mother is divorcing her father who is dating a younger woman Halley can't stand. Her crazed sister is planning a wedding but has second thoughts and her best friend has fallen madly in love for the first time leaving Halley to feel even more alone.","id":"17403","runtime":101,"imdbId":"tt0319524","version":219,"lastModified":"1301904520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e54\/4bc94f46017a3c57fe022e54\/how-to-deal-mid.jpg","studio":"Focus Features","genre":"Comedy","title":"How to Deal","releaseDate":1058486400000,"language":"en","tagline":"Rule #1 There are no rules.","type":"Movie","_key":"66221"} +{"label":"Celle que j'aime","description":" Isabelle est une trentenaire c\u00e9libataire (depuis qu'elle est divorc\u00e9e). Elle est belle, sexy, dr\u00f4le, \u00e9mouvante, intelligente... Irr\u00e9sistible ! Elle est num\u00e9ro 2 d'un journal qu'elle a cr\u00e9\u00e9 avec Brice son partenaire et qu'elle dirige d'une main de fer m\u00eame pas recouverte d'un gant de velours ! Tous les hommes sont fous d'elle. Tous !\nTrois en particuliers ! Son fils, Achille, 10 ans, qui depuis le","id":"17407","runtime":103,"imdbId":"tt1324050","homepage":"http:\/\/www.cellequejaime.com\/","version":44,"lastModified":"1301904667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e71\/4bc94f4a017a3c57fe022e71\/celle-que-j-aime-mid.jpg","studio":"Mars Films","genre":"Comedy","title":"Celle que j'aime","releaseDate":1240358400000,"language":"en","type":"Movie","_key":"66222"} +{"label":"Elie Chouraqui","version":22,"id":"81782","lastModified":"1301902056000","name":"Elie Chouraqui","type":"Person","_key":"66223"} +{"label":"Barbara Schulz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/604\/4d1ca8a85e73d6082e00c604\/barbara-schulz-profile.jpg","version":36,"id":"81786","lastModified":"1301901702000","name":"Barbara Schulz","type":"Person","_key":"66224"} +{"label":"Anton Balekdjian","version":19,"id":"81787","lastModified":"1301902237000","name":"Anton Balekdjian","type":"Person","_key":"66225"} +{"label":"Humains","description":"No overview found.","id":"17408","runtime":87,"imdbId":"tt1109478","version":70,"lastModified":"1301906935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e8a\/4bc94f4e017a3c57fe022e8a\/humains-mid.jpg","studio":"La Fabrique de Films","genre":"Adventure","title":"Humains","releaseDate":1240358400000,"language":"en","type":"Movie","_key":"66226"} +{"label":"Jacques-Olivier Molon","version":22,"id":"81788","lastModified":"1301902064000","name":"Jacques-Olivier Molon","type":"Person","_key":"66227"} +{"label":"Pierre-Olivier Thevenin","version":20,"id":"81789","lastModified":"1301902237000","name":"Pierre-Olivier Thevenin","type":"Person","_key":"66228"} +{"label":"\u00c9lise Otzenberger","version":20,"id":"81792","lastModified":"1301902064000","name":"\u00c9lise Otzenberger","type":"Person","_key":"66229"} +{"label":"Manon Tournier","version":22,"id":"81793","lastModified":"1301902064000","name":"Manon Tournier","type":"Person","_key":"66230"} +{"label":"The Gunfighter","description":"Gregory Peck stars as an aging notorious gunslinger, Johnny Ringo. Sick of killing he tries to avoid trouble, but when a cocksure young man named Eddie draws on him, Ringo has no choice but to kill him. Now Eddie's three brothers are after him. Ringo decides to return East to see his estranged wife and young son before the brothers catch up with him.","id":"17409","runtime":85,"imdbId":"tt0042531","trailer":"http:\/\/www.youtube.com\/watch?v=2401","version":82,"lastModified":"1301903528000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e93\/4bc94f4f017a3c57fe022e93\/the-gunfighter-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Western","title":"The Gunfighter","releaseDate":-616204800000,"language":"en","type":"Movie","_key":"66231"} +{"label":"Jean Parker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4a9\/4c5994ea7b9aa151f50004a9\/jean-parker-profile.jpg","version":34,"birthday":"-1716512400000","id":"81798","birthplace":"Deer Lodge, Montana, USA","lastModified":"1301901238000","name":"Jean Parker","type":"Person","_key":"66232"} +{"label":"Incognito","description":"No overview found.","id":"17413","runtime":94,"imdbId":"tt1315883","version":73,"lastModified":"1301908282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb1\/4bc94f55017a3c57fe022eb1\/incognito-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"Incognito","releaseDate":1240963200000,"language":"en","type":"Movie","_key":"66233"} +{"label":"Eric Lavaine","version":22,"id":"121588","lastModified":"1301902402000","name":"Eric Lavaine","type":"Person","_key":"66234"} +{"label":"B\u00e9nabar","version":21,"id":"81797","lastModified":"1301901718000","name":"B\u00e9nabar","type":"Person","_key":"66235"} +{"label":"Dunston Checks In","description":"Hotel manager Robert Grant is forced by his boss to postpone his family vacation when a hotel critic checks in. Trouble is, the critic is really a villainous jewel thief with an orangutan assistant named Dunston. When Dunston gets loose and tries to escape a life of crime -- aided by Robert's sons -- havoc, hijinks and lots of laughs abound!","id":"17414","runtime":88,"imdbId":"tt0116151","trailer":"http:\/\/www.youtube.com\/watch?v=4DLwYtsG_5A","version":234,"lastModified":"1301905055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fcc\/4d4cb7ab7b9aa13ab8007fcc\/dunston-checks-in-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"Dunston Checks In","releaseDate":821404800000,"language":"en","tagline":"He's about to turn a Five Star Hotel into a three ring circus.","type":"Movie","_key":"66236"} +{"label":"The Wiggles: Go Bananas","description":"The wiggles are up to their old tricks, Kylie minouge makes a special apperance in the opening song","id":"17415","runtime":47,"version":149,"lastModified":"1301904367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecb\/4bc94f56017a3c57fe022ecb\/the-wiggles-go-bananas-mid.jpg","title":"The Wiggles: Go Bananas","releaseDate":1247529600000,"language":"en","type":"Movie","_key":"66237"} +{"label":"Le Missionnaire","description":"This deeply irreverent shaggy dog farce from French director Roger Delattre follows the exploits of Mario Diccara, a criminal who finishes a seven-year stretch in prison. Upon release, he discovers that his affairs with the underworld aren't completely settled, so he asks his brother Patrick to help him find a hideout where he can stay incognito and survive the dangerous elements that threaten him until the conflict blows over. A local priest named Patrick offers to let Mario stay with elderly F","id":"17417","runtime":90,"imdbId":"tt1308736","homepage":"http:\/\/www.lemissionnaire-lefilm.com\/","version":108,"lastModified":"1302122017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee4\/4bc94f59017a3c57fe022ee4\/le-missionnaire-mid.jpg","studio":"EuropaCorp Distribution","genre":"Comedy","title":"Le Missionnaire","releaseDate":1240963200000,"language":"en","type":"Movie","_key":"66238"} +{"label":"Roger Delattre","version":22,"id":"81811","lastModified":"1301902456000","name":"Roger Delattre","type":"Person","_key":"66239"} +{"label":"Jean-Marie Bigard","version":29,"id":"81812","lastModified":"1301902317000","name":"Jean-Marie Bigard","type":"Person","_key":"66240"} +{"label":"David Strajmayster","version":22,"id":"81814","lastModified":"1301902237000","name":"David Strajmayster","type":"Person","_key":"66241"} +{"label":"Michel Chesneau","version":22,"id":"81815","lastModified":"1301902064000","name":"Michel Chesneau","type":"Person","_key":"66242"} +{"label":"Benjamin Feitelson","version":22,"id":"81816","lastModified":"1301901862000","name":"Benjamin Feitelson","type":"Person","_key":"66243"} +{"label":"Jean-Gilles Barbier","version":22,"id":"81817","lastModified":"1301902064000","name":"Jean-Gilles Barbier","type":"Person","_key":"66244"} +{"label":"Romaine par moins 30","description":"No overview found.","id":"17418","runtime":85,"imdbId":"tt1388912","version":58,"lastModified":"1301417508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef5\/4bc94f5c017a3c57fe022ef5\/romaine-par-moins-30-mid.jpg","studio":"UGC","genre":"Comedy","title":"Romaine par moins 30","releaseDate":1240963200000,"language":"en","type":"Movie","_key":"66245"} +{"label":"Agn\u00e8s Obadia","version":21,"id":"81818","lastModified":"1301902456000","name":"Agn\u00e8s Obadia","type":"Person","_key":"66246"} +{"label":"Pierre-Luc Brillant","version":25,"id":"81822","lastModified":"1301902509000","name":"Pierre-Luc Brillant","type":"Person","_key":"66247"} +{"label":"Louis Morissette","version":20,"id":"81823","lastModified":"1301902456000","name":"Louis Morissette","type":"Person","_key":"66248"} +{"label":"G.I. Joe: The Movie","description":"G.I. Joe faces a new enemy as an ancient society of snake people known as Cobra-La try to forcefully take back the earth from those who drove them underground eons ago.","id":"17421","runtime":93,"imdbId":"tt0093066","version":201,"lastModified":"1301904348000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0a\/4bc94f61017a3c57fe022f0a\/g-i-joe-the-movie-mid.png","studio":"Sunbow Productions","genre":"Action","title":"G.I. Joe: The Movie","releaseDate":536457600000,"language":"en","type":"Movie","_key":"66249"} +{"label":"Charles Adler","version":24,"id":"81178","lastModified":"1301901559000","name":"Charles Adler","type":"Person","_key":"66250"} +{"label":"Shuko Akune","version":21,"id":"81824","lastModified":"1301901534000","name":"Shuko Akune","type":"Person","_key":"66251"} +{"label":"William Callaway","version":20,"id":"81841","lastModified":"1301902456000","name":"William Callaway","type":"Person","_key":"66252"} +{"label":"Brian Cummings","version":21,"id":"81842","lastModified":"1301902456000","name":"Brian Cummings","type":"Person","_key":"66253"} +{"label":"Jennifer Darling","version":20,"id":"81843","lastModified":"1301902456000","name":"Jennifer Darling","type":"Person","_key":"66254"} +{"label":"Laurie Faso","version":20,"id":"81844","lastModified":"1301902456000","name":"Laurie Faso","type":"Person","_key":"66255"} +{"label":"Hank Garret","version":20,"id":"81845","lastModified":"1301902456000","name":"Hank Garret","type":"Person","_key":"66256"} +{"label":"Richard Gautier","version":22,"id":"81846","lastModified":"1301901718000","name":"Richard Gautier","type":"Person","_key":"66257"} +{"label":"Dan Gilvezan","version":21,"id":"81847","lastModified":"1301902524000","name":"Dan Gilvezan","type":"Person","_key":"66258"} +{"label":"Don Jurwich","version":20,"id":"81825","lastModified":"1301901608000","name":"Don Jurwich","type":"Person","_key":"66259"} +{"label":"Yihe Yuan","description":"No overview found.","id":"17422","runtime":0,"imdbId":"tt0794374","version":94,"lastModified":"1301906094000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0f\/4bc94f64017a3c57fe022f0f\/yihe-yuan-mid.jpg","title":"Yihe Yuan","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66260"} +{"label":"The Collective","description":"Jessica (Wynn Everett) travels to New York City to help her sister but she is nowhere to be found. As she delves into a world of darkness and lies surrounding a spiritually depraved community calling itself 'The Collective' with her friend Tyler (Kelly Overton) she has to decide if she will risk her life to save her sister. ","id":"17428","runtime":85,"imdbId":"tt1185235","version":138,"lastModified":"1301908038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f25\/4bc94f68017a3c57fe022f25\/the-collective-mid.jpg","genre":"Indie","title":"The Collective","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"66261"} +{"label":"Shane McRae","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/355\/4d59dc007b9aa122bf000355\/shane-mcrae-profile.jpg","version":29,"id":"83222","lastModified":"1301902705000","name":"Shane McRae","type":"Person","_key":"66262"} +{"label":"Donnie Keshawarz","version":20,"id":"83223","lastModified":"1301902709000","name":"Donnie Keshawarz","type":"Person","_key":"66263"} +{"label":"El Maestro de esgrima","description":"A fencing master in pre-revolution Spain is hired to teach fencing to a beautiful young woman. Although he has never taught a woman before he is fascinated by her and agrees. She wishes to learn a particular thrust which he is famous for. When a local nobleman becomes involved with her the intrigue begins.","id":"17430","runtime":88,"imdbId":"tt0104788","version":57,"lastModified":"1301904711000","studio":"Altube Films","genre":"History","title":"El Maestro de esgrima","releaseDate":722044800000,"language":"en","type":"Movie","_key":"66264"} +{"label":"Miguel Rell\u00e1n","version":24,"id":"81848","lastModified":"1301928309000","name":"Miguel Rell\u00e1n","type":"Person","_key":"66265"} +{"label":"Pedro Olea","version":19,"id":"81849","lastModified":"1301901947000","name":"Pedro Olea","type":"Person","_key":"66266"} +{"label":"Moon","description":"An astronaut has been mining Helium 3 on the moon for the last three years by himself. With only two weeks before he returns home, Sam begins seeing and hearing things.","id":"17431","runtime":97,"imdbId":"tt1182345","trailer":"http:\/\/www.youtube.com\/watch?v=twuScTcDP_Q","homepage":"http:\/\/www.sonyclassics.com\/moon\/","version":584,"lastModified":"1301901216000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f61\/4bc94f71017a3c57fe022f61\/moon-mid.jpg","studio":"Liberty Films UK","genre":"Drama","title":"Moon","releaseDate":1244764800000,"language":"en","tagline":"The last place you'd ever expect to find yourself.","type":"Movie","_key":"66267"} +{"label":"Rosie Shaw","version":22,"id":"115147","lastModified":"1301901239000","name":"Rosie Shaw","type":"Person","_key":"66268"} +{"label":"Adrienne Shaw","version":22,"id":"115149","lastModified":"1301901484000","name":"Adrienne Shaw","type":"Person","_key":"66269"} +{"label":"Kaya Scodelario","version":30,"id":"115150","lastModified":"1301901762000","name":"Kaya Scodelario","type":"Person","_key":"66270"} +{"label":"Matthew Berry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0db\/4ceea9415e73d653170000db\/matthew-berry-profile.jpg","version":36,"id":"57149","lastModified":"1301901240000","name":"Matthew Berry","type":"Person","_key":"66271"} +{"label":"Robin Chalk","version":23,"id":"115151","lastModified":"1301901456000","name":"Robin Chalk","type":"Person","_key":"66272"} +{"label":"Duncan Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4c3\/4cf1ebac5e73d61e3e0004c3\/duncan-jones-profile.jpg","version":34,"id":"81850","lastModified":"1302180841000","name":"Duncan Jones","type":"Person","_key":"66273"} +{"label":"My Friend Ganesha","description":"No overview found.","id":"17432","runtime":190,"imdbId":"tt1065099","version":245,"lastModified":"1301655210000","title":"My Friend Ganesha","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66274"} +{"label":"Street Fighter Alpha: The Movie","description":"Increasingly disturbed by the dark energies building within him, Ryu is confronted by Shun, a boy claiming to be the brother he never knew. But before Ryu can consider whether Shun's timely appearance might be more than coincidental, Shun is kidnapped by Shadowlaw. To recover Shun, Ryu must undertake the ultimate journey of self-discovery and learn to control the power threatening to consume him.","id":"17433","runtime":100,"imdbId":"tt0185708","version":59,"lastModified":"1301908526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7e\/4bc94f76017a3c57fe022f7e\/street-fighter-zero-the-animation-mid.jpg","genre":"Animation","title":"Street Fighter Alpha: The Movie","releaseDate":945820800000,"language":"en","type":"Movie","_key":"66275"} +{"label":"Shigeyasu Yamauchi","version":21,"id":"81853","lastModified":"1301901645000","name":"Shigeyasu Yamauchi","type":"Person","_key":"66276"} +{"label":"Kazuya Ichij\u00f4","version":22,"id":"81857","lastModified":"1301901509000","name":"Kazuya Ichij\u00f4","type":"Person","_key":"66277"} +{"label":"Yumi T\u00f4ma","version":22,"id":"81858","lastModified":"1301901493000","name":"Yumi T\u00f4ma","type":"Person","_key":"66278"} +{"label":"Ai Orikasa","version":23,"id":"81860","lastModified":"1301902537000","name":"Ai Orikasa","type":"Person","_key":"66279"} +{"label":"Chiaki \u00d4sawa","version":21,"id":"81861","lastModified":"1301901947000","name":"Chiaki \u00d4sawa","type":"Person","_key":"66280"} +{"label":"Reiko Kiuchi","version":21,"id":"81862","lastModified":"1301902142000","name":"Reiko Kiuchi","type":"Person","_key":"66281"} +{"label":"Ken Yamaguchi","version":21,"id":"81863","lastModified":"1301901947000","name":"Ken Yamaguchi","type":"Person","_key":"66282"} +{"label":"Kazuyuki Ishikawa","version":21,"id":"81864","lastModified":"1301902324000","name":"Kazuyuki Ishikawa","type":"Person","_key":"66283"} +{"label":"Hidenari Ugaki","version":21,"id":"81865","lastModified":"1301902141000","name":"Hidenari Ugaki","type":"Person","_key":"66284"} +{"label":"Daiki Nakamura","version":21,"id":"81866","lastModified":"1301902502000","name":"Daiki Nakamura","type":"Person","_key":"66285"} +{"label":"El Norte","description":"Brother and sister Enrique and Rosa flee persecution at home in Guatemala and journey north, through Mexico and on to the United States, with the dream of starting a new life.","id":"17435","runtime":141,"imdbId":"tt0085482","version":204,"lastModified":"1301904973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4bc94f78017a3c57fe022f93\/el-norte-mid.jpg","genre":"Drama","title":"El Norte","releaseDate":410227200000,"language":"en","type":"Movie","_key":"66286"} +{"label":"David Villalpando","version":15,"id":"146797","lastModified":"1301902641000","name":"David Villalpando","type":"Person","_key":"66287"} +{"label":"Trinidad Silva","version":15,"id":"146798","lastModified":"1301902671000","name":"Trinidad Silva","type":"Person","_key":"66288"} +{"label":"The Informers","description":"A multi-strand narrative set in early 1980's Los Angeles, that deftly balances a vast array of characters who represent both the top of the heap and the bottom. Connecting the intertwining strands are a group of beautiful, blonde young men and women who sleep all day and party all night, doing drugs and one another with abandon, never realising that they are dancing on the edge of a volcano.","id":"17436","runtime":98,"imdbId":"tt0865554","trailer":"http:\/\/www.youtube.com\/watch?v=HxkvJkSIOGk","homepage":"http:\/\/www.theinformers.com\/","version":433,"lastModified":"1302078851000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa4\/4bc94f79017a3c57fe022fa4\/the-informers-mid.jpg","studio":"Senator Entertainment Co","genre":"Action","title":"The Informers","releaseDate":1232582400000,"language":"en","tagline":"Greed is good. Sex is easy. Youth is forever.","type":"Movie","_key":"66289"} +{"label":"SpongeBob SquarePants: WhoBob WhatPants?","description":"SpongeBob wakes up on a normal day as usual and wants to spend time with his friends; however, he ends up upsetting them. He nearly kills the mailman, accidentally breaks Gary's shell, crushes Patrick's cake, disturbs Squidward's sleep, ruins Sandy's robot and deep fries Mr. Krabs' money. SpongeBob decides to leave Bikini Bottom, as all his friends are angry with him (and calling him \"idiot boy\").","id":"17437","runtime":0,"imdbId":"tt1279299","version":45,"lastModified":"1301905703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fad\/4bc94f7a017a3c57fe022fad\/spongebob-squarepants-whobob-whatpants-mid.jpg","title":"SpongeBob SquarePants: WhoBob WhatPants?","releaseDate":1223942400000,"language":"en","type":"Movie","_key":"66290"} +{"label":"Diggers","description":"Diggers is a coming-of-age story directed by Katherine Dieckmann. It portrays four working-class friends who grow up in The Hamptons, on the South Shore of Long Island, New York, as clam diggers in 1976. Their fathers were clam diggers as well as their grandfathers before them. They must cope with and learn to face the changing times in both their personal lives and their neighborhood.","id":"17439","runtime":96,"imdbId":"tt0469897","trailer":"http:\/\/www.youtube.com\/watch?v=1159","homepage":"http:\/\/www.diggersmovie.com\/","version":123,"lastModified":"1301904285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe2\/4bc94f88017a3c57fe022fe2\/diggers-mid.jpg","genre":"Comedy","title":"Diggers","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"66291"} +{"label":"... And Justice for All.","description":"An ethical Baltimore defense lawyer disgusted with rampant legal corruption is asked to defend a judge he despises in a rape trial. But if he doesn't do it, the judge will have him disbarred.","id":"17443","runtime":119,"imdbId":"tt0078718","version":602,"lastModified":"1301904804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/feb\/4bc94f89017a3c57fe022feb\/and-justice-for-all-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Crime","title":"... And Justice for All.","releaseDate":314928000000,"language":"en","type":"Movie","_key":"66292"} +{"label":"Green Lantern: First Flight","description":"Test pilot Hal Jordan finds himself recruited as the newest member of the intergalactic police force, The Green Lantern Corps.","id":"17445","runtime":75,"imdbId":"tt1384590","homepage":"http:\/\/www.warnervideo.com\/greenlanterndvd\/","version":572,"lastModified":"1301907703000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffe\/4bc94f8c017a3c57fe022ffe\/green-lantern-first-flight-mid.jpg","studio":"DC Comics","genre":"Action","title":"Green Lantern: First Flight","releaseDate":1248134400000,"language":"en","type":"Movie","_key":"66293"} +{"label":"Jeffrey","description":"Jeffery, a young gay man in New York, decides that sex is too much and decided to become celibate. He immediately meets the man of his dreams and must decide whether or not love is worth the danger of a boyfriend dying.","id":"17447","runtime":92,"imdbId":"tt0113464","version":154,"lastModified":"1301905399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/003\/4bc94f8c017a3c57fe023003\/jeffrey-mid.jpg","genre":"Comedy","title":"Jeffrey","releaseDate":808704000000,"language":"en","type":"Movie","_key":"66294"} +{"label":"Afona","description":"No overview found.","id":"17448","runtime":0,"version":13,"lastModified":"1300980441000","title":"Afona","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66295"} +{"label":"Pennies From Heaven","description":"No overview found.","id":"17450","runtime":108,"imdbId":"tt0082894","version":142,"lastModified":"1301906844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00c\/4bc94f90017a3c57fe02300c\/pennies-from-heaven-mid.jpg","genre":"Drama","title":"Pennies From Heaven","releaseDate":376876800000,"language":"en","type":"Movie","_key":"66296"} +{"label":"Here Come The Teletubbies","description":"Here Come the Teletubbies - our favourite Teletubbies are shown dancing through Teletubby Land with a few of their friends and, of course, their many rabbits. The \"Stepping and Standing Dance\" leads things off, followed by the \"Walking Dance\", \"Running Away Dance\", \"Splashing Dance\", and so forth.","id":"17451","runtime":60,"imdbId":"tt0250037","version":422,"lastModified":"1301906364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/015\/4bc94f90017a3c57fe023015\/here-come-the-teletubbies-mid.jpg","title":"Here Come The Teletubbies","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66297"} +{"label":"Pride","description":"The story of Suki, a lioness cub, who rebels against her mother and her Pride to mate with an unsuitable lion from the other side of the river. Her journey to less a comfortable environment teaches her much. She re-crosses the river to defend her Pride from invading wanderers led by her former suitor.","id":"17452","runtime":90,"imdbId":"tt0363908","version":319,"lastModified":"1300990438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01e\/4bc94f91017a3c57fe02301e\/pride-mid.jpg","studio":"British Broadcasting Corporation (BBC)","genre":"Comedy","title":"Pride","releaseDate":1087776000000,"language":"en","type":"Movie","_key":"66298"} +{"label":"John Downer","version":20,"id":"81911","lastModified":"1301901829000","name":"John Downer","type":"Person","_key":"66299"} +{"label":"Hellraiser: Deader","description":"In London, after investigating crack addicted junkies for an article in her newspaper, Amy Klein watches a bizarre videotape where an underground group of youngsters in Bucharest apparently becoming zombies. Amy finds Marla dead with a puzzle cube in her hands. She brings the object to her hotel room, and opens it, beginning her journey to hell.","id":"17455","runtime":88,"imdbId":"tt0337636","version":173,"lastModified":"1301903254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/027\/4bc94f91017a3c57fe023027\/hellraiser-deader-mid.jpg","studio":"Dimension Films","genre":"Horror","title":"Hellraiser: Deader","releaseDate":1118102400000,"language":"en","type":"Movie","_key":"66300"} +{"label":"Maria Pintea","version":19,"id":"86781","lastModified":"1301902237000","name":"Maria Pintea","type":"Person","_key":"66301"} +{"label":"BloodRayne: Deliverance","description":"Rayne, a half-human half-vampire warrior, is in the America's 1880's Wild West to stop the vampired Billy the Kid and his posse of vampire cowboys.","id":"17456","runtime":99,"imdbId":"tt0896036","version":151,"lastModified":"1301902416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/038\/4bc94f93017a3c57fe023038\/bloodrayne-2-deliverance-mid.jpg","studio":"Boll Kino Beteiligungs GmbH & Co. KG","genre":"Action","title":"BloodRayne: Deliverance","releaseDate":1216857600000,"language":"en","type":"Movie","_key":"66302"} +{"label":"The Twins Effect","description":"An evil Duke attempts to kill and collect the blood of a royal family of European vampires in order to become all powerful. The only surviving member of the family travels to Hong Kong, only to complicate his struggle by falling in love with a mortal girl who just happens to have a vampire hunter for a brother.","id":"17457","runtime":107,"imdbId":"tt0351887","version":105,"lastModified":"1301907745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/041\/4bc94f94017a3c57fe023041\/chin-gei-bin-mid.jpg","studio":"Emperor Multimedia Group (EMG)","genre":"Action","title":"The Twins Effect","releaseDate":1047081600000,"language":"en","type":"Movie","_key":"66303"} +{"label":"La faute \u00e0 Fidel!","description":"A 9-year-old girl weathers big changes in her household as her parents become radical political activists in 1970-71 Paris. ","id":"17460","runtime":99,"imdbId":"tt0792966","version":42,"lastModified":"1301904011000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04a\/4bc94f95017a3c57fe02304a\/la-faute-a-fidel-mid.jpg","studio":"Gaumont","genre":"Drama","title":"La faute \u00e0 Fidel!","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"66304"} +{"label":"Nina Kervel-Bey","version":21,"id":"81873","lastModified":"1301902192000","name":"Nina Kervel-Bey","type":"Person","_key":"66305"} +{"label":"Julie Gavras","version":21,"id":"81874","lastModified":"1301902362000","name":"Julie Gavras","type":"Person","_key":"66306"} +{"label":"Breakin' 2: Electric Boogaloo","description":"A developer tries to bulldoze a community recreation center. The local breakdancers try to stop it.","id":"17464","runtime":94,"imdbId":"tt0086999","version":509,"lastModified":"1301904554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/057\/4bc94f95017a3c57fe023057\/breakin-2-electric-boogaloo-mid.jpg","studio":"Cannon Group","genre":"Drama","title":"Breakin' 2: Electric Boogaloo","releaseDate":473558400000,"language":"en","type":"Movie","_key":"66307"} +{"label":"Susie Coelho","version":20,"id":"81897","lastModified":"1301902237000","name":"Susie Coelho","type":"Person","_key":"66308"} +{"label":"Jo De Winter","version":19,"id":"81898","lastModified":"1301902064000","name":"Jo De Winter","type":"Person","_key":"66309"} +{"label":"John Christy Ewing","version":19,"id":"81899","lastModified":"1301902064000","name":"John Christy Ewing","type":"Person","_key":"66310"} +{"label":"Steve Notario","version":19,"id":"81900","lastModified":"1301902064000","name":"Steve Notario","type":"Person","_key":"66311"} +{"label":"Sabrina Garc\u00eda","version":19,"id":"81901","lastModified":"1301902064000","name":"Sabrina Garc\u00eda","type":"Person","_key":"66312"} +{"label":"Ken Olfson","version":19,"id":"81902","lastModified":"1301902064000","name":"Ken Olfson","type":"Person","_key":"66313"} +{"label":"Herb Mitchell","version":20,"id":"81903","lastModified":"1301902164000","name":"Herb Mitchell","type":"Person","_key":"66314"} +{"label":"William Cort","version":19,"id":"81905","lastModified":"1301902063000","name":"William Cort","type":"Person","_key":"66315"} +{"label":"Youngblood","description":"A skilled young hockey prospect hoping to attract the attention of professional scouts is pressured to show that he can fight if challenged during his stay in a Canadian minor hockey town. His on-ice activities are complicated by his relationship with the coach's daughter.","id":"17465","runtime":110,"imdbId":"tt0092272","version":323,"lastModified":"1302023515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/065\/4bc94f9a017a3c57fe023065\/youngblood-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"Youngblood","releaseDate":507513600000,"language":"en","type":"Movie","_key":"66316"} +{"label":"Death Warrant","description":"The Canadian policeman Louis Burke is assigned in a jail to investigate in some murders of prisoners and jailors. When in jail, Lois, using his outstandings martial arts is able to save his life and make himself respected in that violent world. At least, helped by two another prisoners, he succeded in finding the truth about the dreadful crimes. ","id":"17466","runtime":93,"imdbId":"tt0099385","trailer":"http:\/\/www.youtube.com\/watch?v=h4FAO5TrRvA","version":171,"lastModified":"1301905183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4bc94f9b017a3c57fe02306e\/death-warrant-mid.jpg","studio":"Path\u00e9 Pictures International","genre":"Action","title":"Death Warrant","releaseDate":659232000000,"language":"en","type":"Movie","_key":"66317"} +{"label":"Riki-Oh: The Story of Ricky","description":"Hard man Ricky is incarcerated in a futuristic prison where ultra-violence is his only means of survival in the corrupt, sadistic system. He must battle his way quite literally 'through' the feared 'gang of four', and undergo multiple tortures before facing the governor in one of the goriest climaxes ever seen.","id":"17467","runtime":90,"imdbId":"tt0102293","version":98,"lastModified":"1301906661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4bc94f9d017a3c57fe02307c\/17467-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"Riki-Oh: The Story of Ricky","releaseDate":671155200000,"language":"en","type":"Movie","_key":"66318"} +{"label":"Siu-Wong Fan","version":31,"id":"81669","lastModified":"1302207661000","name":"Siu-Wong Fan","type":"Person","_key":"66319"} +{"label":"Yukari \u00d4shima","version":23,"id":"81670","lastModified":"1301902506000","name":"Yukari \u00d4shima","type":"Person","_key":"66320"} +{"label":"Frankie Chin","version":23,"id":"81906","lastModified":"1301902506000","name":"Frankie Chin","type":"Person","_key":"66321"} +{"label":"Ngai Kai Lam","version":21,"id":"81913","lastModified":"1301901708000","name":"Ngai Kai Lam","type":"Person","_key":"66322"} +{"label":"The Cradle","description":"When Frank and Julie move to a small isolated town with their son Sam, both Julie and Sam become ill. Driven by terrifying nightmares of torture that come true Frank begs a local midwife Helen to care for Sam as he desperately searches for a way to stop this curse on his family. ","id":"17469","runtime":92,"imdbId":"tt0871020","version":138,"lastModified":"1301904378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/085\/4bc94f9e017a3c57fe023085\/the-cradle-mid.png","genre":"Horror","title":"The Cradle","releaseDate":1185840000000,"language":"en","type":"Movie","_key":"66323"} +{"label":"Tim Brown","version":26,"id":"81907","lastModified":"1301901862000","name":"Tim Brown","type":"Person","_key":"66324"} +{"label":"Arc","description":"No overview found.","id":"17470","runtime":113,"imdbId":"tt0756618","version":126,"lastModified":"1301904458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc94f9f017a3c57fe023093\/arc-mid.jpg","genre":"Drama","title":"Arc","releaseDate":1161302400000,"language":"en","type":"Movie","_key":"66325"} +{"label":"Robert Ethan Gunnerson","version":20,"id":"81910","lastModified":"1301902175000","name":"Robert Ethan Gunnerson","type":"Person","_key":"66326"} +{"label":"The Room","description":"An American black comedy about love and passion, betrayal and lies. It depicts the depths of friendship and relationships in one's life and raises life's real and most asked question: \"Can you ever really trust anyone?...Are you ready to see reflections of your life?\"","id":"17473","runtime":99,"imdbId":"tt0368226","homepage":"http:\/\/www.theroommovie.com\/","version":505,"lastModified":"1301905745000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4bc94fa0017a3c57fe02309c\/the-room-mid.jpg","studio":"Chloe Productions","genre":"Comedy","title":"The Room","releaseDate":1056672000000,"language":"en","type":"Movie","_key":"66327"} +{"label":"Tommy Wiseau","version":20,"id":"81916","lastModified":"1301902045000","name":"Tommy Wiseau","type":"Person","_key":"66328"} +{"label":"Juliette Danielle","version":19,"id":"81917","lastModified":"1301902237000","name":"Juliette Danielle","type":"Person","_key":"66329"} +{"label":"Greg Sestero","version":20,"id":"81918","lastModified":"1301902360000","name":"Greg Sestero","type":"Person","_key":"66330"} +{"label":"Philip Haldiman","version":20,"id":"81919","lastModified":"1301902360000","name":"Philip Haldiman","type":"Person","_key":"66331"} +{"label":"Carolyn Minnott","version":19,"id":"81920","lastModified":"1301902237000","name":"Carolyn Minnott","type":"Person","_key":"66332"} +{"label":"Robyn Paris","version":19,"id":"81921","lastModified":"1301902237000","name":"Robyn Paris","type":"Person","_key":"66333"} +{"label":"Mike Holmes","version":19,"id":"81922","lastModified":"1301902237000","name":"Mike Holmes","type":"Person","_key":"66334"} +{"label":"Kyle Vogt","version":19,"id":"81923","lastModified":"1301902237000","name":"Kyle Vogt","type":"Person","_key":"66335"} +{"label":"Greg Ellery","version":19,"id":"81924","lastModified":"1301902237000","name":"Greg Ellery","type":"Person","_key":"66336"} +{"label":"Dan Janjigian","version":19,"id":"81925","lastModified":"1301902237000","name":"Dan Janjigian","type":"Person","_key":"66337"} +{"label":"The Man In The Moon","description":"After handsome 17-year-old Court Foster moves back into the long vacant Foster ranch, 14-year-old Dani Trant falls in love for the first time, while her older sister Maureen discovers true love.","id":"17474","runtime":99,"imdbId":"tt0102388","version":197,"lastModified":"1301907310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a9\/4bc94fa1017a3c57fe0230a9\/the-man-in-the-moon-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Man In The Moon","releaseDate":686188800000,"language":"en","type":"Movie","_key":"66338"} +{"label":"Dhoom","description":"A gang of bikers headed by the cool-headed and arrogant Kabir is on a robbing spree in Mumbai. They rob establishments and then zip away on their superbikes. ACP Jai Dixit is the case in-charge and he recruits a bumbling bike mechanic and racer named Ali to chase the gang on a bike and help Jai nab them. Kabir accepts the challenge, and pulls off another robbery amidst a function. This causes Jai and Ali to call it off. Jai resigns from the police force and Ali goes back to his daily job. Meanwh","id":"17478","runtime":124,"imdbId":"tt0422091","homepage":"http:\/\/www.yashrajfilms.com\/microsites\/dhoom\/dhoommicro\/microflash.htm","version":92,"lastModified":"1301903876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc94fa2017a3c57fe0230b2\/dhoom-mid.jpg","studio":"Yash Raj Films","genre":"Action","title":"Dhoom","releaseDate":1093564800000,"language":"en","tagline":"One brave cop... one smart thief... one cool biker... together they create... Dhoom","type":"Movie","_key":"66339"} +{"label":"Esha Deol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c43\/4d216cca5e73d66b34002c43\/esha-deol-profile.jpg","version":30,"id":"81926","lastModified":"1301901448000","name":"Esha Deol","type":"Person","_key":"66340"} +{"label":"Aleksandra","description":"An elderly woman takes a train trip to visit her grandson at his army camp inside Chechnya.","id":"17479","runtime":95,"imdbId":"tt1034427","version":58,"lastModified":"1301906844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4bc94fa2017a3c57fe0230bb\/aleksandra-mid.jpg","studio":"Proline Film","title":"Aleksandra","releaseDate":1190764800000,"language":"en","type":"Movie","_key":"66341"} +{"label":"Galina Vishnevskaya","version":16,"id":"150017","lastModified":"1301903102000","name":"Galina Vishnevskaya","type":"Person","_key":"66342"} +{"label":"Vasily Shevtsov","version":16,"id":"150018","lastModified":"1301903106000","name":"Vasily Shevtsov","type":"Person","_key":"66343"} +{"label":"Raisa Gichaeva","version":16,"id":"150019","lastModified":"1301903098000","name":"Raisa Gichaeva","type":"Person","_key":"66344"} +{"label":"That's It, That's All","description":"Dedicated to everything snowboarding, Travis Rice and a dream team crew set out on a seek-and-destroy operation for the new zone, the new trick and the new perspective on the sport. Aspiring to bring you closer, the Hi Def, 35mm, super16 footage answers the question why Trice and his friends have poured blood, sweat, tears and soul into a simple thing like snowboarding.","id":"17480","runtime":60,"imdbId":"tt1347100","homepage":"http:\/\/www.thatsit-thatsall.com","version":97,"lastModified":"1301904876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4bc94fa6017a3c57fe0230c4\/that-s-it-that-s-all-mid.jpg","studio":"Brain Farm","genre":"Sports Film","title":"That's It, That's All","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"66345"} +{"label":"Kyle Clancy","version":19,"id":"81929","lastModified":"1301902237000","name":"Kyle Clancy","type":"Person","_key":"66346"} +{"label":"Bryan Iguchi","version":20,"id":"81937","lastModified":"1301902063000","name":"Bryan Iguchi","type":"Person","_key":"66347"} +{"label":"Jermey Jones","version":19,"id":"81939","lastModified":"1301902456000","name":"Jermey Jones","type":"Person","_key":"66348"} +{"label":"Curt Morgan","version":20,"id":"81950","lastModified":"1301902063000","name":"Curt Morgan","type":"Person","_key":"66349"} +{"label":"The Adventures of Sherlock Holmes","description":"Professor Moriarity has a scheme for stealing the crown jewels from the Tower of London. To get Holmes involved, he persuades a gaucho flute player to murder a girl.","id":"17481","runtime":85,"imdbId":"tt0031022","version":161,"lastModified":"1301906844000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d6\/4bc94fa9017a3c57fe0230d6\/the-adventures-of-sherlock-holmes-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Crime","title":"The Adventures of Sherlock Holmes","releaseDate":-957312000000,"language":"en","type":"Movie","_key":"66350"} +{"label":"Alfred L. Werker","version":27,"id":"81930","lastModified":"1301901442000","name":"Alfred L. Werker","type":"Person","_key":"66351"} +{"label":"Terry Kilburn","version":22,"id":"81933","lastModified":"1301901862000","name":"Terry Kilburn","type":"Person","_key":"66352"} +{"label":"E.E. Clive","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c2e\/4be70c49017a3c35bf000c2e\/e-e-clive-profile.jpg","version":36,"birthday":"-2851030800000","id":"2930","birthplace":"Monmouthshire, Wales, UK","lastModified":"1301901522000","name":"E.E. Clive","type":"Person","_key":"66353"} +{"label":"Peter Willes","version":21,"id":"81938","lastModified":"1301902456000","name":"Peter Willes","type":"Person","_key":"66354"} +{"label":"Frank Dawson","version":20,"id":"81942","lastModified":"1301902456000","name":"Frank Dawson","type":"Person","_key":"66355"} +{"label":"Anthony Kemble-Cooper","version":20,"id":"81944","lastModified":"1301902456000","name":"Anthony Kemble-Cooper","type":"Person","_key":"66356"} +{"label":"May Beatty","version":25,"id":"87699","lastModified":"1301902548000","name":"May Beatty","type":"Person","_key":"66357"} +{"label":"Dark Remains","description":"After their daughter is brutally murdered in their home, a grieving young couple, Allena and Julie Pkye; escape the city to find solace in the mountains. Julie photographs an abandoned prison she finds in the woods. Upon developing the prints, she becomes convinced her dead daughter is contacting her through the photographs.\r\n","id":"17482","runtime":91,"imdbId":"tt0433360","version":444,"lastModified":"1301906481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0df\/4bc94faa017a3c57fe0230df\/dark-remains-mid.jpg","studio":"Avenet Images Productions","genre":"Horror","title":"Dark Remains","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"66358"} +{"label":"Shelter","description":"Forced to give up his dreams of art school, Zach works dead-end jobs to support his sister and her son. Questioning his life, he paints, surfs and hangs out with his best friend, Gabe. When Gabe's older brother returns home for the summer, Zach suddenly finds himself drawn into a relationship he didn't expect.","id":"17483","runtime":97,"imdbId":"tt0942384","version":158,"lastModified":"1301992537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f0\/4bc94fac017a3c57fe0230f0\/shelter-mid.jpg","studio":"GP Pictures","genre":"Drama","title":"Shelter","releaseDate":1181952000000,"language":"en","type":"Movie","_key":"66359"} +{"label":"Tricia Pierce","version":20,"id":"81951","lastModified":"1301992520000","name":"Tricia Pierce","type":"Person","_key":"66360"} +{"label":"Brad Rowe","version":26,"id":"65475","lastModified":"1301992520000","name":"Brad Rowe","type":"Person","_key":"66361"} +{"label":"Jackson Wurth","version":20,"id":"81952","lastModified":"1301992520000","name":"Jackson Wurth","type":"Person","_key":"66362"} +{"label":"Katie Walder","version":20,"id":"81953","lastModified":"1301992520000","name":"Katie Walder","type":"Person","_key":"66363"} +{"label":"Albert Reed","version":20,"id":"81954","lastModified":"1301992520000","name":"Albert Reed","type":"Person","_key":"66364"} +{"label":"Joy Gohring","version":20,"id":"81955","lastModified":"1301992520000","name":"Joy Gohring","type":"Person","_key":"66365"} +{"label":"Don Margolin","version":20,"id":"81956","lastModified":"1301992520000","name":"Don Margolin","type":"Person","_key":"66366"} +{"label":"Caitlin Crosby","version":20,"id":"81958","lastModified":"1301992520000","name":"Caitlin Crosby","type":"Person","_key":"66367"} +{"label":"Alicia Sixtos","version":20,"id":"81959","lastModified":"1301992520000","name":"Alicia Sixtos","type":"Person","_key":"66368"} +{"label":"Tarek Zohdy","version":20,"id":"81960","lastModified":"1301992520000","name":"Tarek Zohdy","type":"Person","_key":"66369"} +{"label":"Dominic Figlio","version":21,"id":"81961","lastModified":"1301992520000","name":"Dominic Figlio","type":"Person","_key":"66370"} +{"label":"Christina Blevins","version":20,"id":"81962","lastModified":"1301992520000","name":"Christina Blevins","type":"Person","_key":"66371"} +{"label":"Jonah Markowitz","version":21,"id":"81963","lastModified":"1301992520000","name":"Jonah Markowitz","type":"Person","_key":"66372"} +{"label":"Craig Ferguson: A Wee Bit o' Revolution","description":"Craig Ferguson, the Scotland-born host of the Emmy-nominated \"The Late Late Show,\" takes the stage at Boston's Wilbur Theatre for this performance captured during the East Coast leg of his 2008 stand-up tour. Known for his amusing observations and wry humor, the newly anointed United States citizen takes a swing at a variety of pop culture topics.","id":"17485","runtime":80,"imdbId":"tt1395034","version":143,"lastModified":"1301906065000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f9\/4bc94fad017a3c57fe0230f9\/craig-ferguson-a-wee-bit-o-revolution-mid.jpg","genre":"Comedy","title":"Craig Ferguson: A Wee Bit o' Revolution","releaseDate":1237680000000,"language":"en","type":"Movie","_key":"66373"} +{"label":"Soeur Sourire","description":"No overview found.","id":"17486","runtime":120,"imdbId":"tt1381112","version":59,"lastModified":"1301908282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/112\/4bc94fb3017a3c57fe023112\/soeur-sourire-mid.jpg","studio":"Ocean Films","genre":"Drama","title":"Soeur Sourire","releaseDate":1240963200000,"language":"en","type":"Movie","_key":"66374"} +{"label":"Stijn Coninx","version":35,"id":"81964","lastModified":"1301901862000","name":"Stijn Coninx","type":"Person","_key":"66375"} +{"label":"Sandrine Blancke","version":20,"id":"81968","lastModified":"1301901942000","name":"Sandrine Blancke","type":"Person","_key":"66376"} +{"label":"Chris Lomme","version":19,"id":"81969","lastModified":"1301902456000","name":"Chris Lomme","type":"Person","_key":"66377"} +{"label":"Body and Soul","description":"Charley Davis, against the wishes of his mother, becomes a boxer. As he becomes more successful the fighter becomes surrounded by shady characters, including an unethical promoter named Roberts, who tempt the man with a number of vices. Charley finds himself faced with increasingly difficult choices.","id":"17487","runtime":104,"imdbId":"tt0039204","version":111,"lastModified":"1301902858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11b\/4bc94fb4017a3c57fe02311b\/body-and-soul-mid.jpg","studio":"Enterprise Productions","genre":"Drama","title":"Body and Soul","releaseDate":-705715200000,"language":"en","type":"Movie","_key":"66378"} +{"label":"Hazel Brooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16f\/4bd5a785017a3c2e7900016f\/hazel-brooks-profile.jpg","version":20,"id":"81971","lastModified":"1301901829000","name":"Hazel Brooks","type":"Person","_key":"66379"} +{"label":"Peter Virgo","version":21,"id":"81973","lastModified":"1301995580000","name":"Peter Virgo","type":"Person","_key":"66380"} +{"label":"Joe Devlin","version":19,"birthday":"-2395098000000","id":"81974","birthplace":"Manhattan, New York, USA","lastModified":"1301902133000","name":"Joe Devlin","type":"Person","_key":"66381"} +{"label":"Shimen Ruskin","version":23,"id":"81975","lastModified":"1301902481000","name":"Shimen Ruskin","type":"Person","_key":"66382"} +{"label":"Unlawful Entry","description":"After a break-in at their house, a couple gets help from one of the cops that answered their call. He helps them install the security system, and begins dropping by on short notice and unofficial patrol, and spends a lot of time discussing the couple's problems with the wife. The husband begins wondering if they're getting too much help.","id":"17494","runtime":117,"imdbId":"tt0105699","version":186,"lastModified":"1301903473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/128\/4bc94fb5017a3c57fe023128\/unlawful-entry-mid.jpg","genre":"Suspense","title":"Unlawful Entry","releaseDate":720403200000,"language":"en","type":"Movie","_key":"66383"} +{"label":"Whatever Lola wants","description":"A New York postal worker travels to Egypt to take belly dancing lessons from a legendary instructor","id":"17495","runtime":115,"imdbId":"tt0758799","version":87,"lastModified":"1302199540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12d\/4bc94fb6017a3c57fe02312d\/whatever-lola-wants-mid.jpg","genre":"Drama","title":"Whatever Lola wants","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66384"} +{"label":"Achmed Akkabi","version":20,"id":"93259","lastModified":"1301901593000","name":"Achmed Akkabi","type":"Person","_key":"66385"} +{"label":"Milia Ayache","version":20,"id":"124512","lastModified":"1301902022000","name":"Milia Ayache","type":"Person","_key":"66386"} +{"label":"Urban Cowboy","description":"John Travolta stars as a young man from the country who learns about life and love in a Houston bar.","id":"17496","runtime":132,"imdbId":"tt0081696","version":332,"lastModified":"1301903686000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b6d\/4d798d157b9aa14cbc000b6d\/urban-cowboy-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Urban Cowboy","releaseDate":329097600000,"language":"en","type":"Movie","_key":"66387"} +{"label":"UFC 1: The Beginning","description":"The Ultimate Fighting Championship (later renamed UFC 1: The Beginning) was the first mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC), occurring at the McNichols Sports Arena in Denver, Colorado, on November 12, 1993. The event was broadcast live on pay-per-view, and later released on home video.","id":"17497","runtime":89,"imdbId":"tt0487977","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=2","version":62,"lastModified":"1302223841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4c\/4d4c6a3b7b9aa13aab007c4c\/ufc-1-the-beginning-mid.jpg","studio":"SEG Sports","genre":"Sporting Event","title":"UFC 1: The Beginning","releaseDate":753062400000,"language":"en","type":"Movie","_key":"66388"} +{"label":"Gerard Gordeau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/29c\/4cd439c75e73d6734c00029c\/gerard-gordeau-profile.jpg","version":22,"id":"81987","lastModified":"1301902218000","name":"Gerard Gordeau","type":"Person","_key":"66389"} +{"label":"Art Jimmerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/246\/4cd43a345e73d6734a000246\/art-jimmerson-profile.jpg","version":22,"id":"81988","lastModified":"1301902312000","name":"Art Jimmerson","type":"Person","_key":"66390"} +{"label":"Pat Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4cd43b535e73d676cd000001\/pat-smith-profile.jpg","version":23,"id":"81989","lastModified":"1301902218000","name":"Pat Smith","type":"Person","_key":"66391"} +{"label":"Jason Delucia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/001\/4cd43e375e73d676d3000001\/jason-delucia-profile.jpg","version":22,"id":"81990","lastModified":"1301902456000","name":"Jason Delucia","type":"Person","_key":"66392"} +{"label":"Trent Jenkins","version":19,"id":"81991","lastModified":"1301902237000","name":"Trent Jenkins","type":"Person","_key":"66393"} +{"label":"Taylor Wily","version":21,"id":"81992","lastModified":"1301902524000","name":"Taylor Wily","type":"Person","_key":"66394"} +{"label":"Kevin Rosier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/005\/4cd43ea75e73d676d3000005\/kevin-rosier-profile.jpg","version":23,"id":"81993","lastModified":"1301902218000","name":"Kevin Rosier","type":"Person","_key":"66395"} +{"label":"Zane Frazier","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/007\/4cd43f275e73d676cd000007\/zane-frazier-profile.jpg","version":23,"id":"81994","lastModified":"1301901854000","name":"Zane Frazier","type":"Person","_key":"66396"} +{"label":"UFC 2: No Way Out","description":"UFC 2: No Way Out (later renamed UFC 2 or The Ultimate Fighting Championship 2) was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC) on March 11, 1994, at Mammoth Gardens in Denver, Colorado. The event was seen live on pay-per-view in the United States, and was later released on home video.","id":"17499","runtime":90,"imdbId":"tt0487978","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=3","version":76,"lastModified":"1301907331000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/afd\/4d4c62107b9aa13aba007afd\/ufc-2-no-way-out-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 2: No Way Out","releaseDate":763344000000,"language":"en","type":"Movie","_key":"66397"} +{"label":"Remco Pardoel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00b\/4cd440045e73d676d300000b\/remco-pardoel-profile.jpg","version":22,"id":"81995","lastModified":"1301902052000","name":"Remco Pardoel","type":"Person","_key":"66398"} +{"label":"Johnny Rhodes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/017\/4cd442885e73d676cf000017\/johnny-rhodes-profile.jpg","version":20,"id":"81996","lastModified":"1301902414000","name":"Johnny Rhodes","type":"Person","_key":"66399"} +{"label":"Scott Morris","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/048\/4cd46ad85e73d676d2000048\/scott-morris-profile.jpg","version":21,"id":"81997","lastModified":"1301902414000","name":"Scott Morris","type":"Person","_key":"66400"} +{"label":"Fred Ettish","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/04d\/4cd46edf5e73d676d100004d\/fred-ettish-profile.jpg","version":20,"id":"81998","lastModified":"1301902218000","name":"Fred Ettish","type":"Person","_key":"66401"} +{"label":"Minoki Ichihara","version":19,"id":"82000","lastModified":"1301902237000","name":"Minoki Ichihara","type":"Person","_key":"66402"} +{"label":"Ray Wizard","version":15,"id":"82001","lastModified":"1301902063000","name":"Ray Wizard","type":"Person","_key":"66403"} +{"label":"David Levicki","version":15,"id":"82002","lastModified":"1301902456000","name":"David Levicki","type":"Person","_key":"66404"} +{"label":"Alberto Cerro Leon","version":15,"id":"82004","lastModified":"1301902237000","name":"Alberto Cerro Leon","type":"Person","_key":"66405"} +{"label":"Sean Daughtery","version":15,"id":"82005","lastModified":"1301902237000","name":"Sean Daughtery","type":"Person","_key":"66406"} +{"label":"Frank Hamaker","version":15,"id":"82006","lastModified":"1301902063000","name":"Frank Hamaker","type":"Person","_key":"66407"} +{"label":"Thaddeus Luster","version":15,"id":"82007","lastModified":"1301902456000","name":"Thaddeus Luster","type":"Person","_key":"66408"} +{"label":"Robert Lucarelli","version":15,"id":"82008","lastModified":"1301902063000","name":"Robert Lucarelli","type":"Person","_key":"66409"} +{"label":"Scott Baker","version":15,"id":"82009","lastModified":"1301902456000","name":"Scott Baker","type":"Person","_key":"66410"} +{"label":"Orlando Weit","version":16,"id":"141615","lastModified":"1301902831000","name":"Orlando Weit","type":"Person","_key":"66411"} +{"label":"Sputnik Declassified","description":"NOVA details the story of the technological and political mistakes that made the U.S. lose out to the Soviet's bleeping electronic basketball.","id":"17500","version":214,"lastModified":"1301416698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/153\/4bc94fb7017a3c57fe023153\/sputnik-declassified-mid.jpg","title":"Sputnik Declassified","language":"en","type":"Movie","_key":"66412"} +{"label":"Don","description":"A huge Indian contingent embarks on a dangerous cat-and-mouse trail of capturing DON (Shah Rukh Khan) - the ruthless drug mafia in Malaysia.When DON gets seriously injured in a police encounter, the word that he is dead begins to do the rounds. The reality, of course, is that DON is held captive in a secret location, while his bumpkin of a look-alike, Vijay, is polished and sent to take down DON's gang.In a bizarre twist of fate, when the man shielding the humble and streetwise Vijay, is killed,","id":"17501","runtime":178,"imdbId":"tt0461936","trailer":"http:\/\/www.youtube.com\/watch?v=UgbQ1On8vxw","homepage":"http:\/\/www.donthefilm.com\/","version":223,"lastModified":"1301904176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16c\/4bc94fbb017a3c57fe02316c\/don-the-chase-begins-again-mid.jpg","studio":"Excel Entertainment","genre":"Action","title":"Don","releaseDate":1161302400000,"language":"en","tagline":"The Chase Begins Again","type":"Movie","_key":"66413"} +{"label":"Diwakar Pundir","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/979\/4d2a36045e73d626b0003979\/diwakar-pundir-profile.jpg","version":22,"id":"81980","lastModified":"1301901525000","name":"Diwakar Pundir","type":"Person","_key":"66414"} +{"label":"Rajesh Khattar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a82\/4d2a35fc5e73d626be003a82\/rajesh-khattar-profile.jpg","version":22,"id":"81981","lastModified":"1301901598000","name":"Rajesh Khattar","type":"Person","_key":"66415"} +{"label":"Tanay Chheda","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/974\/4d2a35ed5e73d626b0003974\/tanay-chheda-profile.jpg","version":24,"id":"52771","lastModified":"1301901372000","name":"Tanay Chheda","type":"Person","_key":"66416"} +{"label":"Sushma Reddy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a7d\/4d2a35e25e73d626be003a7d\/sushma-reddy-profile.jpg","version":25,"id":"81982","lastModified":"1301901209000","name":"Sushma Reddy","type":"Person","_key":"66417"} +{"label":"Chunky Pandey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/970\/4d2a35df5e73d626b0003970\/chunky-pandey-profile.jpg","version":31,"id":"81983","lastModified":"1301901777000","name":"Chunky Pandey","type":"Person","_key":"66418"} +{"label":"UFC 3: The American Dream","description":"UFC 3: The American Dream was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC) on September 9, 1994, at Grady Cole Center in Charlotte, North Carolina. The event was seen live on pay-per-view in the United States, and was later released on home video.","id":"17507","runtime":89,"imdbId":"tt0487979","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=4","version":49,"lastModified":"1301906599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/171\/4bc94fbc017a3c57fe023171\/ufc-3-the-american-dream-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 3: The American Dream","releaseDate":779068800000,"language":"en","type":"Movie","_key":"66419"} +{"label":"Steve Jennum","version":22,"id":"82010","lastModified":"1301902237000","name":"Steve Jennum","type":"Person","_key":"66420"} +{"label":"Harold Howard","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a1\/4cd439475e73d6734b0002a1\/harold-howard-profile.jpg","version":21,"id":"82011","lastModified":"1301901718000","name":"Harold Howard","type":"Person","_key":"66421"} +{"label":"Felix Mitchell","version":20,"id":"82012","lastModified":"1301902502000","name":"Felix Mitchell","type":"Person","_key":"66422"} +{"label":"Kimo Leopoldo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bb\/4c16256d7b9aa104ee0001bb\/kimo-leopoldo-profile.jpg","version":25,"id":"82013","lastModified":"1301902536000","name":"Kimo Leopoldo","type":"Person","_key":"66423"} +{"label":"Roland Payne","version":15,"id":"82014","lastModified":"1301902456000","name":"Roland Payne","type":"Person","_key":"66424"} +{"label":"Christophe Leininger","version":16,"id":"82015","lastModified":"1301902456000","name":"Christophe Leininger","type":"Person","_key":"66425"} +{"label":"Keith Hackney","version":22,"id":"82016","lastModified":"1301902237000","name":"Keith Hackney","type":"Person","_key":"66426"} +{"label":"Emanuel Yarbrough","version":17,"id":"82017","lastModified":"1301902237000","name":"Emanuel Yarbrough","type":"Person","_key":"66427"} +{"label":"UFC 4: Revenge Of The Warriors","description":"UFC 4: Revenge of the Warriors was a mixed martial arts (MMA) event held by the Ultimate Fighting Championship (UFC) on December 16, 1994, at the Expo Center Pavilion in Tulsa, Oklahoma. The event was seen live on pay-per-view, and later released on home video.","id":"17508","runtime":99,"imdbId":"tt0487980","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=5","version":43,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17b\/4bc94fbc017a3c57fe02317b\/ufc-4-revenge-of-the-warriors-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 4: Revenge Of The Warriors","releaseDate":787536000000,"language":"en","type":"Movie","_key":"66428"} +{"label":"Dan Severn","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1a8\/4c161fd87b9aa105860001a8\/dan-severn-profile.jpg","version":28,"id":"82018","lastModified":"1301901809000","name":"Dan Severn","type":"Person","_key":"66429"} +{"label":"Marcus Bossett","version":21,"id":"82020","lastModified":"1301902456000","name":"Marcus Bossett","type":"Person","_key":"66430"} +{"label":"Ron Van Clief","version":20,"id":"82021","lastModified":"1301902524000","name":"Ron Van Clief","type":"Person","_key":"66431"} +{"label":"Joe Son","version":20,"id":"82022","lastModified":"1301902174000","name":"Joe Son","type":"Person","_key":"66432"} +{"label":"Melton Bowen","version":15,"id":"82023","lastModified":"1301902063000","name":"Melton Bowen","type":"Person","_key":"66433"} +{"label":"Anthony Macias","version":20,"id":"82024","lastModified":"1301902456000","name":"Anthony Macias","type":"Person","_key":"66434"} +{"label":"Eldo Dias Xavier","version":15,"id":"82025","lastModified":"1301902063000","name":"Eldo Dias Xavier","type":"Person","_key":"66435"} +{"label":"Guy Mezger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4c1625457b9aa105e00000ec\/guy-mezger-profile.jpg","version":23,"id":"82026","lastModified":"1301902546000","name":"Guy Mezger","type":"Person","_key":"66436"} +{"label":"Jason Fairn","version":19,"id":"82027","lastModified":"1301902456000","name":"Jason Fairn","type":"Person","_key":"66437"} +{"label":"Joe Charles","version":24,"id":"82030","lastModified":"1301902188000","name":"Joe Charles","type":"Person","_key":"66438"} +{"label":"UFC 5: Return Of The Beast","description":"UFC 5: The Return of the Beast was a mixed martial arts event held by the Ultimate Fighting Championship on April 7, 1995, at the Independence Arena in Charlotte, North Carolina. The event was seen live on pay per view in the United States, and later released on home video.","id":"17509","runtime":120,"imdbId":"tt0487981","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=6","version":45,"lastModified":"1301905621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18d\/4bc94fbd017a3c57fe02318d\/ufc-5-return-of-the-beast-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 5: Return Of The Beast","releaseDate":797212800000,"language":"en","type":"Movie","_key":"66439"} +{"label":"Dave Beneteau","version":23,"id":"82028","lastModified":"1301902502000","name":"Dave Beneteau","type":"Person","_key":"66440"} +{"label":"Todd Medina","version":19,"id":"82029","lastModified":"1301902456000","name":"Todd Medina","type":"Person","_key":"66441"} +{"label":"Ernie Verdicia","version":15,"id":"82031","lastModified":"1301902456000","name":"Ernie Verdicia","type":"Person","_key":"66442"} +{"label":"Larry Cureton","version":16,"id":"82032","lastModified":"1301902237000","name":"Larry Cureton","type":"Person","_key":"66443"} +{"label":"Jon Hess","version":21,"id":"82033","lastModified":"1301902189000","name":"Jon Hess","type":"Person","_key":"66444"} +{"label":"Andy Anderson","version":15,"id":"82034","lastModified":"1301902456000","name":"Andy Anderson","type":"Person","_key":"66445"} +{"label":"Asbel Cancio","version":15,"id":"82035","lastModified":"1301902456000","name":"Asbel Cancio","type":"Person","_key":"66446"} +{"label":"John Dowdy","version":15,"id":"82036","lastModified":"1301902456000","name":"John Dowdy","type":"Person","_key":"66447"} +{"label":"UFC 6: Clash Of The Titans","description":"UFC 6: Clash of the Titans was the sixth mixed martial arts event held by the Ultimate Fighting Championship on July 14, 1995, at the Casper Events Center in Casper, Wyoming. The event was seen live on pay per view in the United States, and later released on home video.","id":"17510","runtime":114,"imdbId":"tt0115910","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=7","version":44,"lastModified":"1301907250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4bc94fbe017a3c57fe023197\/ufc-6-clash-of-the-titans-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 6: Clash Of The Titans","releaseDate":805680000000,"language":"en","type":"Movie","_key":"66448"} +{"label":"David Abbott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4c1624917b9aa105860001ae\/tank-abbott-profile.jpg","version":33,"id":"82037","lastModified":"1301902518000","name":"David Abbott","type":"Person","_key":"66449"} +{"label":"Paul Varelans","version":25,"id":"82038","lastModified":"1301902456000","name":"Paul Varelans","type":"Person","_key":"66450"} +{"label":"John Matua","version":20,"id":"82058","lastModified":"1301902524000","name":"John Matua","type":"Person","_key":"66451"} +{"label":"Cal Worsham","version":22,"id":"82059","lastModified":"1301902456000","name":"Cal Worsham","type":"Person","_key":"66452"} +{"label":"Rudyard Moncayo","version":19,"id":"82060","lastModified":"1301902456000","name":"Rudyard Moncayo","type":"Person","_key":"66453"} +{"label":"He-Man Gipson","version":19,"id":"82061","lastModified":"1301902456000","name":"He-Man Gipson","type":"Person","_key":"66454"} +{"label":"Joel Sutton","version":20,"id":"82062","lastModified":"1301902456000","name":"Joel Sutton","type":"Person","_key":"66455"} +{"label":"Jack McGlaughlin","version":19,"id":"82063","lastModified":"1301902456000","name":"Jack McGlaughlin","type":"Person","_key":"66456"} +{"label":"UFC 7: The Brawl In Buffalo","description":"UFC 7: The Brawl in Buffalo was a mixed martial arts event held by the Ultimate Fighting Championship on September 8, 1995, at the Memorial Auditorium in Buffalo, New York. The event was seen live on pay per view in the United States, and later released on home video.","id":"17511","runtime":118,"imdbId":"tt0115745","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=8","version":42,"lastModified":"1300980449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a1\/4bc94fbe017a3c57fe0231a1\/ufc-7-the-brawl-in-buffalo-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 7: The Brawl In Buffalo","releaseDate":810518400000,"language":"en","type":"Movie","_key":"66457"} +{"label":"Marco Ruas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/128\/4c162a0f7b9aa105d7000128\/marco-ruas-profile.jpg","version":23,"id":"82039","lastModified":"1301901990000","name":"Marco Ruas","type":"Person","_key":"66458"} +{"label":"Mark Hall","version":25,"id":"82040","lastModified":"1301902502000","name":"Mark Hall","type":"Person","_key":"66459"} +{"label":"Gerry Harris","version":15,"id":"82041","lastModified":"1301902456000","name":"Gerry Harris","type":"Person","_key":"66460"} +{"label":"Ryan Parker","version":15,"id":"82064","lastModified":"1301902456000","name":"Ryan Parker","type":"Person","_key":"66461"} +{"label":"Onassis Parungao","version":15,"id":"82065","lastModified":"1301902456000","name":"Onassis Parungao","type":"Person","_key":"66462"} +{"label":"Francesco Maturi","version":15,"id":"82066","lastModified":"1301902456000","name":"Francesco Maturi","type":"Person","_key":"66463"} +{"label":"Geza Kahlman Jr","version":16,"id":"82067","lastModified":"1301902502000","name":"Geza Kahlman Jr","type":"Person","_key":"66464"} +{"label":"Scott Bessac","version":17,"id":"82068","lastModified":"1301902237000","name":"Scott Bessac","type":"Person","_key":"66465"} +{"label":"David Hood","version":20,"id":"82069","lastModified":"1301902456000","name":"David Hood","type":"Person","_key":"66466"} +{"label":"UFC 8: David vs. Goliath","description":"UFC 8: David vs. Goliath was a mixed martial arts event held by Ultimate Fighting Championship on February 16, 1996, at Ruben Rodriguez Coliseum in San Juan, Puerto Rico. The event was broadcast live on pay per view in the United States, and later released on home video.","id":"17512","runtime":90,"imdbId":"tt0487982","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=10","version":40,"lastModified":"1301418593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4bc94fc2017a3c57fe0231ab\/ufc-8-david-vs-goliath-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 8: David vs. Goliath","releaseDate":824428800000,"language":"en","type":"Movie","_key":"66467"} +{"label":"Gary Goodridge","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e7\/4c16234e7b9aa105e00000e7\/gary-goodridge-profile.jpg","version":25,"id":"82043","lastModified":"1301902356000","name":"Gary Goodridge","type":"Person","_key":"66468"} +{"label":"Jerry Bohlander","version":22,"id":"82044","lastModified":"1301902502000","name":"Jerry Bohlander","type":"Person","_key":"66469"} +{"label":"Sam Adkins","version":21,"id":"82045","lastModified":"1301902502000","name":"Sam Adkins","type":"Person","_key":"66470"} +{"label":"Paul Herrera","version":20,"id":"82046","lastModified":"1301902524000","name":"Paul Herrera","type":"Person","_key":"66471"} +{"label":"Scott Ferrozzo","version":21,"id":"82047","lastModified":"1301902502000","name":"Scott Ferrozzo","type":"Person","_key":"66472"} +{"label":"Joe Moreira","version":20,"id":"82048","lastModified":"1301902456000","name":"Joe Moreira","type":"Person","_key":"66473"} +{"label":"Thomas Ramirez","version":15,"id":"82049","lastModified":"1301902456000","name":"Thomas Ramirez","type":"Person","_key":"66474"} +{"label":"Keith Mielke","version":15,"id":"82050","lastModified":"1301902456000","name":"Keith Mielke","type":"Person","_key":"66475"} +{"label":"UFC 9: Motor City Madness","description":"UFC 9: Motor City Madness was a mixed martial arts event held by the Ultimate Fighting Championship on May 17, 1996, at the Cobo Arena in Detroit, Michigan. The event was seen live on pay per view in the United States, and later released on home video.","id":"17513","runtime":118,"imdbId":"tt0487983","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=11","version":80,"lastModified":"1301416695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b0\/4bc94fc2017a3c57fe0231b0\/ufc-9-motor-city-madness-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 9: Motor City Madness","releaseDate":832291200000,"language":"en","type":"Movie","_key":"66476"} +{"label":"Amaury Bitteti","version":15,"id":"82070","lastModified":"1301902456000","name":"Amaury Bitteti","type":"Person","_key":"66477"} +{"label":"Koji Kitao","version":15,"id":"82071","lastModified":"1301902237000","name":"Koji Kitao","type":"Person","_key":"66478"} +{"label":"Mark Schultz","version":15,"id":"82072","lastModified":"1301902456000","name":"Mark Schultz","type":"Person","_key":"66479"} +{"label":"Rafael Carino","version":15,"id":"82073","lastModified":"1301902237000","name":"Rafael Carino","type":"Person","_key":"66480"} +{"label":"Matt Andersen","version":15,"id":"82084","lastModified":"1301902237000","name":"Matt Andersen","type":"Person","_key":"66481"} +{"label":"Steve Nelmark","version":21,"id":"82085","lastModified":"1301902237000","name":"Steve Nelmark","type":"Person","_key":"66482"} +{"label":"Tai Bowden","version":15,"id":"82086","lastModified":"1301902237000","name":"Tai Bowden","type":"Person","_key":"66483"} +{"label":"UFC 10: The Tournament","description":"UFC 10: The Tournament was a mixed martial arts event held by the Ultimate Fighting Championship on July 12th, 1996, at the Fairgrounds Arena in Birmingham, Alabama. The event was seen live on pay per view in the United States, and later released on home video.","id":"17514","runtime":119,"imdbId":"tt0487974","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=12","version":59,"lastModified":"1301420100000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b5\/4bc94fc2017a3c57fe0231b5\/ufc-10-the-tournament-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 10: The Tournament","releaseDate":837129600000,"language":"en","type":"Movie","_key":"66484"} +{"label":"Brian Johnston","version":23,"id":"82087","lastModified":"1301902502000","name":"Brian Johnston","type":"Person","_key":"66485"} +{"label":"John Campetella","version":15,"id":"82088","lastModified":"1301902502000","name":"John Campetella","type":"Person","_key":"66486"} +{"label":"Moti Horenstein","version":16,"id":"82089","lastModified":"1301902502000","name":"Moti Horenstein","type":"Person","_key":"66487"} +{"label":"Scott Fielder","version":15,"id":"82090","lastModified":"1301902502000","name":"Scott Fielder","type":"Person","_key":"66488"} +{"label":"Dieusel Berto","version":16,"id":"82091","lastModified":"1301902524000","name":"Dieusel Berto","type":"Person","_key":"66489"} +{"label":"UFC 11: The Proving Ground","description":"UFC 11: The Proving Ground was a mixed martial arts event held by the Ultimate Fighting Championship on September 20th, 1996, at the Augusta Civic Center in Augusta, Georgia. The event was broadcast live on pay-per-view in the United States, and later released on home video.","id":"17515","runtime":151,"imdbId":"tt0487975","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=13","version":39,"lastModified":"1300980449000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ba\/4bc94fc2017a3c57fe0231ba\/ufc-11-the-proving-ground-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 11: The Proving Ground","releaseDate":843177600000,"language":"en","type":"Movie","_key":"66490"} +{"label":"Julian Sanchez","version":16,"id":"82366","lastModified":"1301902524000","name":"Julian Sanchez","type":"Person","_key":"66491"} +{"label":"Reza Nazri","version":16,"id":"82367","lastModified":"1301902524000","name":"Reza Nazri","type":"Person","_key":"66492"} +{"label":"Fabio Gurgel","version":20,"id":"82368","lastModified":"1301902524000","name":"Fabio Gurgel","type":"Person","_key":"66493"} +{"label":"Sam Fulton","version":17,"id":"82369","lastModified":"1301902174000","name":"Sam Fulton","type":"Person","_key":"66494"} +{"label":"Roberto Traven","version":16,"id":"82370","lastModified":"1301902502000","name":"Roberto Traven","type":"Person","_key":"66495"} +{"label":"Dave Berry","version":15,"id":"82371","lastModified":"1301902502000","name":"Dave Berry","type":"Person","_key":"66496"} +{"label":"UFC 12: Judgement Day","description":"UFC 12: Judgement Day was a mixed martial arts event held by the Ultimate Fighting Championship on February 7, 1997 at the Dothan Civic Center in Dothan, Alabama. The event was seen live on pay per view in the United States, and later released on home video.","id":"17516","runtime":0,"imdbId":"tt0487976","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=1127","version":86,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bf\/4bc94fc2017a3c57fe0231bf\/ufc-12-judgement-day-mid.jpg","title":"UFC 12: Judgement Day","releaseDate":855273600000,"language":"en","type":"Movie","_key":"66497"} +{"label":"Jim Mullen","version":15,"id":"89491","lastModified":"1301902885000","name":"Jim Mullen","type":"Person","_key":"66498"} +{"label":"Justin Martin","version":15,"id":"89492","lastModified":"1301902885000","name":"Justin Martin","type":"Person","_key":"66499"} +{"label":"Nick Sanzo","version":15,"id":"89493","lastModified":"1301902885000","name":"Nick Sanzo","type":"Person","_key":"66500"} +{"label":"Yoshiki Takahashi","version":15,"id":"89494","lastModified":"1301902885000","name":"Yoshiki Takahashi","type":"Person","_key":"66501"} +{"label":"Wallid Ismail","version":15,"id":"89495","lastModified":"1301902885000","name":"Wallid Ismail","type":"Person","_key":"66502"} +{"label":"Rainy Martinez","version":15,"id":"89496","lastModified":"1301902885000","name":"Rainy Martinez","type":"Person","_key":"66503"} +{"label":"Jackie Lee","version":15,"id":"89497","lastModified":"1301902885000","name":"Jackie Lee","type":"Person","_key":"66504"} +{"label":"UFC 13: The Ultimate Force","description":"UFC 13: Ultimate Force was a mixed martial arts event held by the Ultimate Fighting Championship on May 30, 1997 in Augusta, Georgia. The event was seen live on pay per view in the United States, and later released on home video.","id":"17517","runtime":0,"imdbId":"tt0485279","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=16","version":52,"lastModified":"1301418593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4bc94fc3017a3c57fe0231c4\/ufc-13-the-ultimate-force-mid.jpg","title":"UFC 13: The Ultimate Force","releaseDate":864950400000,"language":"en","type":"Movie","_key":"66505"} +{"label":"Tony Halme","version":15,"id":"89485","lastModified":"1301902631000","name":"Tony Halme","type":"Person","_key":"66506"} +{"label":"Dmitri Stepanov","version":15,"id":"89486","lastModified":"1301902631000","name":"Dmitri Stepanov","type":"Person","_key":"66507"} +{"label":"Enson Inoue","version":15,"id":"89487","lastModified":"1301902631000","name":"Enson Inoue","type":"Person","_key":"66508"} +{"label":"Royce Alger","version":16,"id":"89399","lastModified":"1301902885000","name":"Royce Alger","type":"Person","_key":"66509"} +{"label":"Jack Nillson","version":15,"id":"89488","lastModified":"1301902631000","name":"Jack Nillson","type":"Person","_key":"66510"} +{"label":"Saeed Hosseini","version":15,"id":"89489","lastModified":"1301902631000","name":"Saeed Hosseini","type":"Person","_key":"66511"} +{"label":"Wes Albritton","version":15,"id":"89490","lastModified":"1301902631000","name":"Wes Albritton","type":"Person","_key":"66512"} +{"label":"UFC 14: Showdown","description":"UFC 14: Showdown was a mixed martial arts event held by the Ultimate Fighting Championship on July 27, 1997 in Birmingham, Alabama. The event was seen live on pay-per-view in the United States, and later released on home video.","id":"17518","runtime":0,"imdbId":"tt0485280","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=17","version":39,"lastModified":"1300980450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c9\/4bc94fc3017a3c57fe0231c9\/ufc-14-showdown-mid.jpg","title":"UFC 14: Showdown","releaseDate":869961600000,"language":"en","type":"Movie","_key":"66513"} +{"label":"Maurice Smith","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/00e\/4c16240d7b9aa108b400000e\/maurice-smith-profile.jpg","version":26,"id":"89337","lastModified":"1301903013000","name":"Maurice Smith","type":"Person","_key":"66514"} +{"label":"Mark Kerr","version":21,"id":"89473","lastModified":"1301902986000","name":"Mark Kerr","type":"Person","_key":"66515"} +{"label":"Dan Bobish","version":15,"id":"89479","lastModified":"1301902456000","name":"Dan Bobish","type":"Person","_key":"66516"} +{"label":"Alex Hunter","version":16,"id":"89478","lastModified":"1301902986000","name":"Alex Hunter","type":"Person","_key":"66517"} +{"label":"Kevin Jackson","version":18,"id":"89471","lastModified":"1301902397000","name":"Kevin Jackson","type":"Person","_key":"66518"} +{"label":"Anthony Fryklund","version":15,"id":"89480","lastModified":"1301902885000","name":"Anthony Fryklund","type":"Person","_key":"66519"} +{"label":"Todd Butler","version":15,"id":"89481","lastModified":"1301902456000","name":"Todd Butler","type":"Person","_key":"66520"} +{"label":"Yuri Vaulin","version":15,"id":"89482","lastModified":"1301902456000","name":"Yuri Vaulin","type":"Person","_key":"66521"} +{"label":"Donnie Chappell","version":15,"id":"89483","lastModified":"1301902456000","name":"Donnie Chappell","type":"Person","_key":"66522"} +{"label":"UFC 15: Collision Course","description":"UFC 15: Collision Course was a mixed martial arts event held by the Ultimate Fighting Championship on October 17, 1997, in Bay St. Louis, Mississippi. The event was seen live on pay per view in the United States, and later released on home video","id":"17519","runtime":0,"imdbId":"tt0485281","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=18","version":39,"lastModified":"1300980450000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bc94fc3017a3c57fe0231ce\/ufc-15-collision-course-mid.jpg","title":"UFC 15: Collision Course","releaseDate":877046400000,"language":"en","type":"Movie","_key":"66523"} +{"label":"Dwayne Cason","version":16,"id":"89474","lastModified":"1301903032000","name":"Dwayne Cason","type":"Person","_key":"66524"} +{"label":"Carlos Barreto","version":16,"id":"89475","lastModified":"1301903032000","name":"Carlos Barreto","type":"Person","_key":"66525"} +{"label":"Greg Stott","version":15,"id":"89476","lastModified":"1301902986000","name":"Greg Stott","type":"Person","_key":"66526"} +{"label":"Houston Dorr","version":15,"id":"89477","lastModified":"1301902986000","name":"Houston Dorr","type":"Person","_key":"66527"} +{"label":"Harry Moskowitz","version":16,"id":"89446","lastModified":"1301902986000","name":"Harry Moskowitz","type":"Person","_key":"66528"} +{"label":"UFC 16: Battle In The Bayou","description":"UFC 16: Battle in the Bayou was a mixed martial arts event held by the Ultimate Fighting Championship on March 13, 1998 in New Orleans, Louisiana. The event was seen live on pay per view in the United States, and later released on home video.","id":"17520","runtime":0,"imdbId":"tt0485282","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=20","version":36,"lastModified":"1301908526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d3\/4bc94fc3017a3c57fe0231d3\/ufc-16-battle-in-the-bayou-mid.jpg","title":"UFC 16: Battle In The Bayou","releaseDate":889747200000,"language":"en","type":"Movie","_key":"66529"} +{"label":"Pat Miletich","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02d\/4c16265f7b9aa108a900002d\/pat-miletich-profile.jpg","version":28,"id":"83573","lastModified":"1301901687000","name":"Pat Miletich","type":"Person","_key":"66530"} +{"label":"Chris Brennan","version":17,"id":"89325","lastModified":"1301902986000","name":"Chris Brennan","type":"Person","_key":"66531"} +{"label":"Townsend Saunders","version":16,"id":"89434","lastModified":"1301902986000","name":"Townsend Saunders","type":"Person","_key":"66532"} +{"label":"Mikey Burnett","version":21,"id":"89433","lastModified":"1301902986000","name":"Mikey Burnett","type":"Person","_key":"66533"} +{"label":"Eugenio Tadeu","version":15,"id":"89447","lastModified":"1301902986000","name":"Eugenio Tadeu","type":"Person","_key":"66534"} +{"label":"Laverne Clark","version":19,"id":"89340","lastModified":"1301902986000","name":"Laverne Clark","type":"Person","_key":"66535"} +{"label":"Courtney Turner","version":16,"id":"89448","lastModified":"1301903032000","name":"Courtney Turner","type":"Person","_key":"66536"} +{"label":"Josh Stewart","version":15,"id":"89449","lastModified":"1301902676000","name":"Josh Stewart","type":"Person","_key":"66537"} +{"label":"UFC 17: Redemption","description":"UFC 17: Redemption was a mixed martial arts event held by the Ultimate Fighting Championship on May 15th, 1998 at the Mobile Civic Center, in Mobile, Alabama. The event was seen live on pay per view in the United States, and later released on home video.","id":"17521","runtime":0,"imdbId":"tt0485283","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=21","version":42,"lastModified":"1301906714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d8\/4bc94fc3017a3c57fe0231d8\/ufc-17-redemption-mid.jpg","title":"UFC 17: Redemption","releaseDate":895190400000,"language":"en","type":"Movie","_key":"66538"} +{"label":"Bob Gilstrap","version":16,"id":"89443","lastModified":"1301903032000","name":"Bob Gilstrap","type":"Person","_key":"66539"} +{"label":"Allan Goes","version":16,"id":"89444","lastModified":"1301903032000","name":"Allan Goes","type":"Person","_key":"66540"} +{"label":"Noe Hernandez","version":15,"id":"89445","lastModified":"1301902676000","name":"Noe Hernandez","type":"Person","_key":"66541"} +{"label":"Andre Roberts","version":17,"id":"89400","lastModified":"1301902141000","name":"Andre Roberts","type":"Person","_key":"66542"} +{"label":"UFC 18: Road To The Heavyweight Title","description":"UFC 18: The Road to the Heavyweight Title was a mixed martial arts event held by the Ultimate Fighting Championship on January 8, 1999 in New Orleans, Louisiana. The event was seen live on pay per view in the United States, and later released on home video.","id":"17522","runtime":0,"imdbId":"tt0483513","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=23","version":44,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bc94fc3017a3c57fe0231dd\/ufc-18-road-to-the-heavyweight-title-mid.jpg","title":"UFC 18: Road To The Heavyweight Title","releaseDate":915753600000,"language":"en","type":"Movie","_key":"66543"} +{"label":"Jorge Patino","version":15,"id":"89432","lastModified":"1301902631000","name":"Jorge Patino","type":"Person","_key":"66544"} +{"label":"Pedro Rizzo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/018\/4c16280d7b9aa108ae000018\/pedro-rizzo-profile.jpg","version":32,"id":"83571","lastModified":"1301902518000","name":"Pedro Rizzo","type":"Person","_key":"66545"} +{"label":"Bas Rutten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4c1629527b9aa105e00000fe\/bas-rutten-profile.jpg","version":25,"id":"89402","lastModified":"1301901990000","name":"Bas Rutten","type":"Person","_key":"66546"} +{"label":"Tsuyoshi Kohsaka","version":20,"id":"89362","lastModified":"1301902960000","name":"Tsuyoshi Kohsaka","type":"Person","_key":"66547"} +{"label":"Darrel Gholar","version":15,"id":"89435","lastModified":"1301902885000","name":"Darrel Gholar","type":"Person","_key":"66548"} +{"label":"Frank Caracci","version":15,"id":"89436","lastModified":"1301902885000","name":"Frank Caracci","type":"Person","_key":"66549"} +{"label":"UFC 19: Young Guns","description":"UFC 19: Ultimate Young Guns was a mixed martial arts event held by the Ultimate Fighting Championship on March 5, 1999 at the Casino Magic in Bay St. Louis, Mississippi. The event was seen live on pay per view in the United States, and later released on home video.","id":"17523","runtime":0,"imdbId":"tt0483514","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=24","version":46,"lastModified":"1301907250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e2\/4bc94fc3017a3c57fe0231e2\/ufc-19-young-guns-mid.jpg","title":"UFC 19: Young Guns","releaseDate":920592000000,"language":"en","type":"Movie","_key":"66550"} +{"label":"Kevin Randleman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4c1629907b9aa108b4000029\/kevin-randleman-profile.jpg","version":27,"id":"89324","lastModified":"1301902171000","name":"Kevin Randleman","type":"Person","_key":"66551"} +{"label":"Valeri Ignatov","version":16,"id":"89370","lastModified":"1301902456000","name":"Valeri Ignatov","type":"Person","_key":"66552"} +{"label":"Pete Williams","version":25,"id":"83576","lastModified":"1301902662000","name":"Pete Williams","type":"Person","_key":"66553"} +{"label":"Jason Godsey","version":16,"id":"89367","lastModified":"1301902631000","name":"Jason Godsey","type":"Person","_key":"66554"} +{"label":"Sione Latu","version":15,"id":"89407","lastModified":"1301902631000","name":"Sione Latu","type":"Person","_key":"66555"} +{"label":"UFC 20: Battle For The Gold","description":"UFC 20: Battle for the Gold was a mixed martial arts event held by the Ultimate Fighting Championship on May 7, 1999 at the Boutwell Auditorium in Birmingham, Alabama. The event was seen live on pay per view in the United States, and later released on home video.","id":"17524","runtime":0,"imdbId":"tt0483515","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=25","version":43,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e7\/4bc94fc4017a3c57fe0231e7\/ufc-20-battle-for-the-gold-mid.jpg","title":"UFC 20: Battle For The Gold","releaseDate":926035200000,"language":"en","type":"Movie","_key":"66556"} +{"label":"Travis Fulton","version":16,"id":"89401","lastModified":"1301902885000","name":"Travis Fulton","type":"Person","_key":"66557"} +{"label":"Tony Petarra","version":15,"id":"89403","lastModified":"1301902885000","name":"Tony Petarra","type":"Person","_key":"66558"} +{"label":"Marcelo Mello","version":15,"id":"89404","lastModified":"1301902885000","name":"Marcelo Mello","type":"Person","_key":"66559"} +{"label":"David Roberts","version":15,"id":"89405","lastModified":"1301902885000","name":"David Roberts","type":"Person","_key":"66560"} +{"label":"Fabiano Iha","version":23,"id":"89327","lastModified":"1301902885000","name":"Fabiano Iha","type":"Person","_key":"66561"} +{"label":"Ron Waterman","version":18,"id":"89354","lastModified":"1301902885000","name":"Ron Waterman","type":"Person","_key":"66562"} +{"label":"Chris Condo","version":16,"id":"89406","lastModified":"1301903032000","name":"Chris Condo","type":"Person","_key":"66563"} +{"label":"UFC 21: Return Of The Champions","description":"UFC 21: Return of the Champions was a mixed martial arts event held by the Ultimate Fighting Championship on July 16, 1999 at the Five Seasons Events Center in Cedar Rapids, Iowa. The event was seen live on pay per view in the United States, and later released on home video.","id":"17525","runtime":0,"imdbId":"tt0483516","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=26","version":42,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4bc94fc4017a3c57fe0231ec\/ufc-21-return-of-the-champions-mid.jpg","title":"UFC 21: Return Of The Champions","releaseDate":932083200000,"language":"en","type":"Movie","_key":"66564"} +{"label":"Andre Pederneiras","version":16,"id":"89397","lastModified":"1301903032000","name":"Andre Pederneiras","type":"Person","_key":"66565"} +{"label":"Daiju Takase","version":17,"id":"89336","lastModified":"1301902885000","name":"Daiju Takase","type":"Person","_key":"66566"} +{"label":"Paul Jones","version":20,"id":"89369","lastModified":"1301902885000","name":"Paul Jones","type":"Person","_key":"66567"} +{"label":"Flavio Luiz Moura","version":15,"id":"89398","lastModified":"1301902885000","name":"Flavio Luiz Moura","type":"Person","_key":"66568"} +{"label":"Tim Lajcik","version":17,"id":"89344","lastModified":"1301902885000","name":"Tim Lajcik","type":"Person","_key":"66569"} +{"label":"David Dodd","version":16,"id":"89346","lastModified":"1301902885000","name":"David Dodd","type":"Person","_key":"66570"} +{"label":"UFC 22: There Can Be Only One Champion","description":"UFC 22: Only One Can be Champion was a mixed martial arts event held by the Ultimate Fighting Championship on September 24, 1999 at the Lake Charles Civic Center in Lake Charles, Louisiana.","id":"17526","runtime":0,"imdbId":"tt0483517","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=27","version":43,"lastModified":"1301906599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f1\/4bc94fc4017a3c57fe0231f1\/ufc-22-there-can-be-only-one-champion-mid.jpg","title":"UFC 22: There Can Be Only One Champion","releaseDate":938131200000,"language":"en","type":"Movie","_key":"66571"} +{"label":"Frank Shamrock","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01f\/4c1627e37b9aa108b400001f\/frank-shamrock-profile.jpg","version":28,"id":"89366","lastModified":"1301902706000","name":"Frank Shamrock","type":"Person","_key":"66572"} +{"label":"Brad Kohler","version":16,"id":"89368","lastModified":"1301902501000","name":"Brad Kohler","type":"Person","_key":"66573"} +{"label":"Steve Judson","version":16,"id":"89357","lastModified":"1301902885000","name":"Steve Judson","type":"Person","_key":"66574"} +{"label":"John Lewis","version":22,"id":"89339","lastModified":"1301902522000","name":"John Lewis","type":"Person","_key":"66575"} +{"label":"Lowell Anderson","version":16,"id":"89371","lastModified":"1301903032000","name":"Lowell Anderson","type":"Person","_key":"66576"} +{"label":"Alfonso Alcarez","version":16,"id":"89372","lastModified":"1301903032000","name":"Alfonso Alcarez","type":"Person","_key":"66577"} +{"label":"UFC 23: Ultimate Japan 2","description":"UFC 23: Ultimate Japan 2 was a mixed martial arts event held by the Ultimate Fighting Championship on November 19, 1999 at Tokyo Bay NK Hall in Tokyo, Japan.","id":"17527","runtime":0,"imdbId":"tt0482623","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=28","version":49,"lastModified":"1301907250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f6\/4bc94fc4017a3c57fe0231f6\/ufc-23-ultimate-japan-2-mid.jpg","title":"UFC 23: Ultimate Japan 2","releaseDate":942969600000,"language":"en","type":"Movie","_key":"66578"} +{"label":"Joe Slick","version":16,"id":"89356","lastModified":"1301902631000","name":"Joe Slick","type":"Person","_key":"66579"} +{"label":"Keiichiro Yamamiya","version":16,"id":"89363","lastModified":"1301902704000","name":"Keiichiro Yamamiya","type":"Person","_key":"66580"} +{"label":"Katsuhisa Fujii","version":15,"id":"89364","lastModified":"1301902631000","name":"Katsuhisa Fujii","type":"Person","_key":"66581"} +{"label":"Masutatsu Yano","version":15,"id":"89365","lastModified":"1301902631000","name":"Masutatsu Yano","type":"Person","_key":"66582"} +{"label":"Kenichi Yamamoto","version":16,"id":"89334","lastModified":"1301902885000","name":"Kenichi Yamamoto","type":"Person","_key":"66583"} +{"label":"UFC 24: First Defense","description":"UFC 24: First Defense was a mixed martial arts event held by the Ultimate Fighting Championship on March 10, 2000 at the Lake Charles Civic Center in Lake Charles, Louisiana.","id":"17528","runtime":0,"imdbId":"tt0482624","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=29","version":43,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc94fc8017a3c57fe0231fb\/ufc-24-first-defense-mid.jpg","title":"UFC 24: First Defense","releaseDate":952646400000,"language":"en","type":"Movie","_key":"66584"} +{"label":"Tedd Williams","version":16,"id":"89341","lastModified":"1301902885000","name":"Tedd Williams","type":"Person","_key":"66585"} +{"label":"Lance Gibson","version":17,"id":"44924","lastModified":"1301902237000","name":"Lance Gibson","type":"Person","_key":"66586"} +{"label":"Jermaine Andre","version":23,"id":"89358","lastModified":"1301902885000","name":"Jermaine Andre","type":"Person","_key":"66587"} +{"label":"Dave Menne","version":18,"id":"89245","lastModified":"1301902885000","name":"Dave Menne","type":"Person","_key":"66588"} +{"label":"Bob Cook","version":20,"id":"89359","lastModified":"1301902315000","name":"Bob Cook","type":"Person","_key":"66589"} +{"label":"Tiki Ghosn","version":18,"id":"89242","lastModified":"1301902885000","name":"Tiki Ghosn","type":"Person","_key":"66590"} +{"label":"David Velasquez","version":16,"id":"89360","lastModified":"1301902524000","name":"David Velasquez","type":"Person","_key":"66591"} +{"label":"Brad Gumm","version":16,"id":"89342","lastModified":"1301902885000","name":"Brad Gumm","type":"Person","_key":"66592"} +{"label":"Scott Adams","version":16,"id":"89361","lastModified":"1301902524000","name":"Scott Adams","type":"Person","_key":"66593"} +{"label":"Ian Freeman","version":23,"id":"85680","lastModified":"1301902631000","name":"Ian Freeman","type":"Person","_key":"66594"} +{"label":"True Grit","description":"The murder of her father sends a teenage tomboy, Mattie Ross (Kim Darby), on a mission of \"justice\", which involves avenging her father's death. She recruits a tough old marshal, \"Rooster\" Cogburn (John Wayne), because he has \"grit\", and a reputation of getting the job done. The two are joined by a Texas Ranger, La Boeuf (Glen Campbell), who is looking for the same man (Jeff Corey) for a separate murder in Texas. Their odyssey takes them from Fort Smith, Arkansas, deep into the Indian Territory ","id":"17529","runtime":128,"imdbId":"tt0065126","trailer":"http:\/\/www.youtube.com\/watch?v=tN-j4GDqjv4","version":349,"lastModified":"1301902146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/208\/4bc94fc9017a3c57fe023208\/true-grit-mid.jpg","genre":"Action","title":"True Grit","releaseDate":-345600000,"language":"en","tagline":"The strangest trio ever to track a killer","type":"Movie","_key":"66595"} +{"label":"Glen Campbell","version":35,"id":"86110","lastModified":"1301902221000","name":"Glen Campbell","type":"Person","_key":"66596"} +{"label":"UFC 25: Ultimate Japan 3","description":"UFC 25: Ultimate Japan 3 was a mixed martial arts event held by the Ultimate Fighting Championship on April 14, 2000 at the Yoyogi National Gymnasium in Tokyo, Japan.","id":"17530","runtime":0,"imdbId":"tt0482625","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=30","version":46,"lastModified":"1301907250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20d\/4bc94fc9017a3c57fe02320d\/ufc-25-ultimate-japan-3-mid.jpg","title":"UFC 25: Ultimate Japan 3","releaseDate":955670400000,"language":"en","type":"Movie","_key":"66597"} +{"label":"Murilo Bustamante","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/103\/4c162a567b9aa105e0000103\/murilo-bustamante-profile.jpg","version":19,"id":"89321","lastModified":"1301902704000","name":"Murilo Bustamante","type":"Person","_key":"66598"} +{"label":"Yoji Anjo","version":17,"id":"89335","lastModified":"1301902501000","name":"Yoji Anjo","type":"Person","_key":"66599"} +{"label":"Sanae Kikuta","version":16,"id":"89353","lastModified":"1301903032000","name":"Sanae Kikuta","type":"Person","_key":"66600"} +{"label":"Satoshi Honma","version":15,"id":"89355","lastModified":"1301902885000","name":"Satoshi Honma","type":"Person","_key":"66601"} +{"label":"S. Darko","description":"S. Darko follows Samantha Darko, the younger sister of Donnie, the protagonist of Donnie Darko, and her friend Corey. On their way to California, their car breaks down, forcing them to wait in a small town until it is fixed. While there, Samantha begins to have dreams that warn her of the end of the universe.","id":"17532","runtime":103,"imdbId":"tt1231277","homepage":"http:\/\/www.sdarko.com\/","version":287,"lastModified":"1301904612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22e\/4bc94fcc017a3c57fe02322e\/s-darko-mid.jpg","studio":"Silver Nitrate Films","genre":"Crime","title":"S. Darko","releaseDate":1240876800000,"language":"en","type":"Movie","_key":"66602"} +{"label":"James Lafferty","version":18,"id":"98050","lastModified":"1301902184000","name":"James Lafferty","type":"Person","_key":"66603"} +{"label":"Bret Roberts","version":18,"id":"98051","lastModified":"1301902237000","name":"Bret Roberts","type":"Person","_key":"66604"} +{"label":"Chris Fisher","version":22,"id":"65817","lastModified":"1301901381000","name":"Chris Fisher","type":"Person","_key":"66605"} +{"label":"UFC 26: Ultimate Field Of Dreams","description":"UFC 26: Ultimate Field Of Dreams was a mixed martial arts event held by the Ultimate Fighting Championship on June 9, 2000 in Cedar Rapids, Iowa.","id":"17533","runtime":0,"imdbId":"tt0482626","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=31","version":43,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/233\/4bc94fcc017a3c57fe023233\/ufc-26-ultimate-field-of-dreams-mid.jpg","title":"UFC 26: Ultimate Field Of Dreams","releaseDate":960508800000,"language":"en","type":"Movie","_key":"66606"} +{"label":"Tyrone Roberts","version":15,"id":"89345","lastModified":"1301902885000","name":"Tyrone Roberts","type":"Person","_key":"66607"} +{"label":"Amaury Bitetti","version":15,"id":"89347","lastModified":"1301902885000","name":"Amaury Bitetti","type":"Person","_key":"66608"} +{"label":"Alex Andrade","version":15,"id":"89348","lastModified":"1301902885000","name":"Alex Andrade","type":"Person","_key":"66609"} +{"label":"Marcelo Aguiar","version":15,"id":"89349","lastModified":"1301902885000","name":"Marcelo Aguiar","type":"Person","_key":"66610"} +{"label":"Joao Roque","version":15,"id":"89350","lastModified":"1301902885000","name":"Joao Roque","type":"Person","_key":"66611"} +{"label":"Nate Schroeder","version":15,"id":"89351","lastModified":"1301902885000","name":"Nate Schroeder","type":"Person","_key":"66612"} +{"label":"Adrian Serrano","version":15,"id":"89352","lastModified":"1301902885000","name":"Adrian Serrano","type":"Person","_key":"66613"} +{"label":"UFC 27: Ultimate Bad Boyz","description":"UFC 27: Ultimate Bad Boyz was a mixed martial arts event held by the Ultimate Fighting Championship on September 22, 2000 at Lake Front Arena in New Orleans, Louisiana.","id":"17534","runtime":0,"imdbId":"tt0482627","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=32","version":45,"lastModified":"1301907250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/238\/4bc94fcc017a3c57fe023238\/ufc-27-ultimate-bad-boyz-mid.jpg","title":"UFC 27: Ultimate Bad Boyz","releaseDate":969580800000,"language":"en","type":"Movie","_key":"66614"} +{"label":"Bobby Hoffman","version":17,"id":"84986","lastModified":"1301902456000","name":"Bobby Hoffman","type":"Person","_key":"66615"} +{"label":"Yuki Kondo","version":17,"id":"89329","lastModified":"1301902885000","name":"Yuki Kondo","type":"Person","_key":"66616"} +{"label":"Alexandre Dantas","version":16,"id":"85624","lastModified":"1301902631000","name":"Alexandre Dantas","type":"Person","_key":"66617"} +{"label":"CJ Fernandes","version":15,"id":"89343","lastModified":"1301902885000","name":"CJ Fernandes","type":"Person","_key":"66618"} +{"label":"UFC 28: High Stakes","description":"UFC 28: High Stakes was a mixed martial arts event held by the Ultimate Fighting Championship on November 17, 2000 at the Trump Taj Mahal in Atlantic City, New Jersey","id":"17535","runtime":0,"imdbId":"tt0482628","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=33","version":77,"lastModified":"1301906714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23d\/4bc94fcd017a3c57fe02323d\/ufc-28-high-stakes-mid.jpg","title":"UFC 28: High Stakes","releaseDate":974419200000,"language":"en","type":"Movie","_key":"66619"} +{"label":"Gan McGee","version":23,"id":"85625","lastModified":"1301902676000","name":"Gan McGee","type":"Person","_key":"66620"} +{"label":"Aaron Brink","version":16,"id":"89338","lastModified":"1301903032000","name":"Aaron Brink","type":"Person","_key":"66621"} +{"label":"UFC 29: Defense Of The Belts","description":"UFC 29: Defense of the Belts was a mixed martial arts event held by the Ultimate Fighting Championship on December 16, 2000 at Differ Ariake Arena in Tokyo, Japan.","id":"17536","runtime":0,"imdbId":"tt0481645","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=34","version":41,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/242\/4bc94fcd017a3c57fe023242\/ufc-29-defense-of-the-belts-mid.jpg","title":"UFC 29: Defense Of The Belts","releaseDate":976924800000,"language":"en","type":"Movie","_key":"66622"} +{"label":"UFC 30: The Battle On The Boardwalk","description":"UFC 30: Battle on the Boardwalk was a mixed martial arts event held by the Ultimate Fighting Championship at the Trump Taj Mahal in Atlantic City, New Jersey on February 23, 2001. UFC 30 was also the first UFC event since UFC 22 to see a home video release.","id":"17537","runtime":0,"imdbId":"tt0481646","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=35","version":53,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/247\/4bc94fd0017a3c57fe023247\/ufc-30-the-battle-on-the-boardwalk-mid.jpg","title":"UFC 30: The Battle On The Boardwalk","releaseDate":982886400000,"language":"en","type":"Movie","_key":"66623"} +{"label":"Caol Uno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22e\/4c1dfd507b9aa117c800022e\/caol-uno-profile.jpg","version":27,"id":"84060","lastModified":"1301902171000","name":"Caol Uno","type":"Person","_key":"66624"} +{"label":"Phil Johns","version":16,"id":"89332","lastModified":"1301902704000","name":"Phil Johns","type":"Person","_key":"66625"} +{"label":"Mark Robinson","version":16,"id":"89333","lastModified":"1301902704000","name":"Mark Robinson","type":"Person","_key":"66626"} +{"label":"Phil Baroni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/014\/4c1df8d27b9aa12962000014\/phil-baroni-profile.jpg","version":28,"id":"84988","lastModified":"1301902355000","name":"Phil Baroni","type":"Person","_key":"66627"} +{"label":"Curtis Stout","version":16,"id":"89241","lastModified":"1301902456000","name":"Curtis Stout","type":"Person","_key":"66628"} +{"label":"Rooster Cogburn","description":"A small village in the Indian Nation that is run by a Minister Goodnight and his daughter Eula is overrun by a band of drunken thugs. They kill and rape the people of the village. Miss Goodnight then teams up with the ruthless Marshal Rooster J. Cogburn who goes after them and bring them to justice.","id":"17538","runtime":108,"imdbId":"tt0073636","version":229,"lastModified":"1301904554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/088\/4c4b91225e73d62a41000088\/rooster-cogburn-mid.jpg","genre":"Action","title":"Rooster Cogburn","releaseDate":182736000000,"language":"en","tagline":"The man of \"True Grit\" is back and look who's got him!","type":"Movie","_key":"66629"} +{"label":"Richard Romancito","version":21,"id":"121427","lastModified":"1301903048000","name":"Richard Romancito","type":"Person","_key":"66630"} +{"label":"Stuart Millar","version":25,"id":"13779","lastModified":"1301901676000","name":"Stuart Millar","type":"Person","_key":"66631"} +{"label":"Billy's Hollywood Screen Kiss","description":"Billy, a struggling young gay photographer (who likes Polaroids), tired of being the \"other man\", falls in love with Gabriel, a waiter and aspiring musician who is probably straight but possibly gay or at least curious. Billy tries to get Gabriel to model for his latest project, a series of remakes of famous Hollywood screen kisses, featuring male couples, while also trying to win his affections.","id":"17539","runtime":92,"imdbId":"tt0137386","version":130,"lastModified":"1302022816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cc\/4bde3465017a3c35bb0000cc\/billy-s-hollywood-screen-kiss-mid.jpg","genre":"Comedy","title":"Billy's Hollywood Screen Kiss","releaseDate":901238400000,"language":"en","type":"Movie","_key":"66632"} +{"label":"UFC 31: Locked & Loaded","description":"UFC 31: Locked and Loaded was a mixed martial arts event held by the Ultimate Fighting Championship at the Trump Taj Mahal in Atlantic City, New Jersey on May 4, 2001. The event was seen live on pay per view in the United States, and later released on home video.","id":"17540","runtime":0,"imdbId":"tt0481647","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=36","version":45,"lastModified":"1301418593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/250\/4bc94fd1017a3c57fe023250\/ufc-31-locked-loaded-mid.jpg","title":"UFC 31: Locked & Loaded","releaseDate":988934400000,"language":"en","type":"Movie","_key":"66633"} +{"label":"Semmy Schilt","version":17,"id":"89328","lastModified":"1301902885000","name":"Semmy Schilt","type":"Person","_key":"66634"} +{"label":"Joey Gilbert","version":15,"id":"89330","lastModified":"1301902885000","name":"Joey Gilbert","type":"Person","_key":"66635"} +{"label":"Tony de Souza","version":15,"id":"89331","lastModified":"1301902885000","name":"Tony de Souza","type":"Person","_key":"66636"} +{"label":"Steve Berger","version":17,"id":"89317","lastModified":"1301902885000","name":"Steve Berger","type":"Person","_key":"66637"} +{"label":"UFC 32: Showdown In The Meadowlands","description":"UFC 32: Showdown in the Meadowlands was a mixed martial arts event held by the Ultimate Fighting Championship at the Continental Airlines Arena in East Rutherford, New Jersey on June 29, 2001. The event was seen live on pay per view in the United States, and later released on home video.","id":"17541","runtime":0,"imdbId":"tt0480036","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=37","version":42,"lastModified":"1301421165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/255\/4bc94fd1017a3c57fe023255\/ufc-32-showdown-in-the-meadowlands-mid.jpg","title":"UFC 32: Showdown In The Meadowlands","releaseDate":993772800000,"language":"en","type":"Movie","_key":"66638"} +{"label":"Vladimir Matyushenko","version":25,"id":"85623","lastModified":"1301902631000","name":"Vladimir Matyushenko","type":"Person","_key":"66639"} +{"label":"Ricco Rodriguez","version":24,"id":"84985","lastModified":"1301902456000","name":"Ricco Rodriguez","type":"Person","_key":"66640"} +{"label":"UFC 33: Victory In Vegas","description":"UFC 33: Victory in Vegas was a mixed martial arts event held by the Ultimate Fighting Championship at the Mandalay Bay Events Center on the Las Vegas Strip in Las Vegas, Nevada on September 28, 2001. The event was seen live on pay per view in the United States, and later released on home video.","id":"17542","runtime":0,"imdbId":"tt0480037","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=38","version":50,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25a\/4bc94fd1017a3c57fe02325a\/ufc-33-victory-in-vegas-mid.jpg","title":"UFC 33: Victory In Vegas","releaseDate":1001635200000,"language":"en","type":"Movie","_key":"66641"} +{"label":"Gil Castillo","version":17,"id":"89244","lastModified":"1301902885000","name":"Gil Castillo","type":"Person","_key":"66642"} +{"label":"Jutaro Nakao","version":17,"id":"83578","lastModified":"1301902704000","name":"Jutaro Nakao","type":"Person","_key":"66643"} +{"label":"UFC 34: High Voltage","description":"UFC 34: High Voltage was a mixed martial arts event held by the Ultimate Fighting Championship at the MGM Grand Arena on the Las Vegas Strip in Paradise, Nevada on November 2, 2001. The card was headlined by two Championship Bouts, Randy Couture faced Pedro Rizzo for the Heavyweight Title, and Matt Hughes faced Carlos Newton for the Welterweight Title.","id":"17543","runtime":0,"imdbId":"tt0480038","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=39","version":55,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25f\/4bc94fd2017a3c57fe02325f\/ufc-34-high-voltage-mid.jpg","genre":"Sports Film","title":"UFC 34: High Voltage","releaseDate":1004659200000,"language":"en","type":"Movie","_key":"66644"} +{"label":"Homer Moore","version":20,"id":"84987","lastModified":"1301902704000","name":"Homer Moore","type":"Person","_key":"66645"} +{"label":"UFC 35: Throwdown","description":"UFC 35: Throwdown was a mixed martial arts event held by the Ultimate Fighting Championship at the Mohegan Sun Arena in Uncasville, Connecticut on January 11, 2002. The event was seen live on pay per view in the United States, and later released on home video.","id":"17544","runtime":0,"imdbId":"tt0480039","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=40","version":41,"lastModified":"1300980453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/264\/4bc94fd2017a3c57fe023264\/ufc-35-throwdown-mid.jpg","title":"UFC 35: Throwdown","releaseDate":1010707200000,"language":"en","type":"Movie","_key":"66646"} +{"label":"Amar Suloev","version":17,"id":"89322","lastModified":"1301903032000","name":"Amar Suloev","type":"Person","_key":"66647"} +{"label":"Andrei Semenov","version":16,"id":"89323","lastModified":"1301902885000","name":"Andrei Semenov","type":"Person","_key":"66648"} +{"label":"Keith Rockel","version":16,"id":"89326","lastModified":"1301903032000","name":"Keith Rockel","type":"Person","_key":"66649"} +{"label":"UFC 36: Worlds Collide","description":"UFC 36: Worlds Collide was a mixed martial arts event held by the Ultimate Fighting Championship at the MGM Grand Arena on the Las Vegas Strip in Paradise, Nevada on March 22, 2002. The main event was a Heavyweight Championship Bout between Josh Barnett and the holder, Randy Couture.","id":"17545","runtime":0,"imdbId":"tt0480040","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=41","version":46,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/269\/4bc94fd2017a3c57fe023269\/ufc-36-worlds-collide-mid.jpg","genre":"Sports Film","title":"UFC 36: Worlds Collide","releaseDate":1016755200000,"language":"en","type":"Movie","_key":"66650"} +{"label":"Hayato Sakurai","version":19,"id":"83570","lastModified":"1301902631000","name":"Hayato Sakurai","type":"Person","_key":"66651"} +{"label":"Kelly Dullanty","version":15,"id":"83577","lastModified":"1301902631000","name":"Kelly Dullanty","type":"Person","_key":"66652"} +{"label":"UFC 37: High Impact","description":"UFC 37: High Impact was a mixed martial arts event held by the Ultimate Fighting Championship at the CenturyTel Center in Bossier City, Louisiana on May 10, 2002. The event was seen live on pay per view in the United States, and was later released on home video.","id":"17546","runtime":0,"imdbId":"tt0480042","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=42","version":66,"lastModified":"1300980453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/26e\/4bc94fd2017a3c57fe02326e\/ufc-37-high-impact-mid.jpg","title":"UFC 37: High Impact","releaseDate":1020988800000,"language":"en","type":"Movie","_key":"66653"} +{"label":"Tsuyoshi Kohsaka","version":15,"id":"89722","lastModified":"1301902885000","name":"Tsuyoshi Kohsaka","type":"Person","_key":"66654"} +{"label":"Paul Creighton","version":15,"id":"89723","lastModified":"1301902631000","name":"Paul Creighton","type":"Person","_key":"66655"} +{"label":"Benji Radach","version":18,"id":"89314","lastModified":"1301902730000","name":"Benji Radach","type":"Person","_key":"66656"} +{"label":"Aaron Riley","version":21,"id":"87252","lastModified":"1301902646000","name":"Aaron Riley","type":"Person","_key":"66657"} +{"label":"UFC 37.5 :As Real As It Gets","description":"UFC 37.5: As Real As It Gets was a mixed martial arts event held by the Ultimate Fighting Championship at the Bellagio Hotel and Casino in Las Vegas, Nevada on June 22, 2002.","id":"17547","runtime":0,"imdbId":"tt0480041","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=381","version":37,"lastModified":"1300980454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/273\/4bc94fd2017a3c57fe023273\/ufc-37-5-as-real-as-it-gets-mid.jpg","title":"UFC 37.5 :As Real As It Gets","releaseDate":1024704000000,"language":"en","type":"Movie","_key":"66658"} +{"label":"Nick Serra","version":15,"id":"89315","lastModified":"1301902470000","name":"Nick Serra","type":"Person","_key":"66659"} +{"label":"Zach Light","version":15,"id":"89316","lastModified":"1301902885000","name":"Zach Light","type":"Person","_key":"66660"} +{"label":"Pete Spratt","version":21,"id":"86139","lastModified":"1301902885000","name":"Pete Spratt","type":"Person","_key":"66661"} +{"label":"Tony Fryklund","version":17,"id":"86124","lastModified":"1301902631000","name":"Tony Fryklund","type":"Person","_key":"66662"} +{"label":"Rodrigo Ruas","version":16,"id":"89318","lastModified":"1301902524000","name":"Rodrigo Ruas","type":"Person","_key":"66663"} +{"label":"Joao Marcos Pierini","version":15,"id":"89319","lastModified":"1301902456000","name":"Joao Marcos Pierini","type":"Person","_key":"66664"} +{"label":"UFC 38: Brawl At The Hall","description":"UFC 38: Brawl at the Hall was a mixed martial arts event held by the Ultimate Fighting Championship. It took place at the Royal Albert Hall in London, England, on July 13, 2002. The event was seen on pay per view in the United States, and was later released on home video.","id":"17548","runtime":0,"imdbId":"tt0480043","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=44","version":36,"lastModified":"1300980454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/282\/4bc94fd3017a3c57fe023282\/ufc-38-brawl-at-the-hall-mid.jpg","title":"UFC 38: Brawl At The Hall","releaseDate":1026518400000,"language":"en","type":"Movie","_key":"66665"} +{"label":"Phillip Miller","version":15,"id":"89310","lastModified":"1301902631000","name":"Phillip Miller","type":"Person","_key":"66666"} +{"label":"James Zikic","version":15,"id":"89311","lastModified":"1301902631000","name":"James Zikic","type":"Person","_key":"66667"} +{"label":"Leigh Remedios","version":15,"id":"89312","lastModified":"1301902631000","name":"Leigh Remedios","type":"Person","_key":"66668"} +{"label":"Genki Sudo","version":16,"id":"86145","lastModified":"1301902631000","name":"Genki Sudo","type":"Person","_key":"66669"} +{"label":"Mark Weir","version":16,"id":"86148","lastModified":"1301902885000","name":"Mark Weir","type":"Person","_key":"66670"} +{"label":"UFC 39: The Warriors Return","description":"UFC 39: The Warriors Return was a mixed martial arts event held by the Ultimate Fighting Championship on September 27, 2002, at the Mohegan Sun Arena in Uncasville, Connecticut. The event was broadcast live on pay per view in the United States, and was the first UFC event to be released on DVD.","id":"17549","runtime":0,"imdbId":"tt0480044","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=45","version":40,"lastModified":"1301908281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/287\/4bc94fd4017a3c57fe023287\/ufc-39-the-warriors-return-mid.jpg","title":"UFC 39: The Warriors Return","releaseDate":1033084800000,"language":"en","type":"Movie","_key":"66671"} +{"label":"Wesley Correira","version":18,"id":"86140","lastModified":"1301902885000","name":"Wesley Correira","type":"Person","_key":"66672"} +{"label":"UFC 40: Vendetta","description":"UFC 40: Vendetta was a mixed martial arts event held by the Ultimate Fighting Championship on November 22, 2002, at the MGM Grand Arena on the Las Vegas Strip in Paradise, Nevada. The event was broadcast live on pay per view in the United States, and later released on DVD.","id":"17550","runtime":0,"imdbId":"tt0479188","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=46","version":38,"lastModified":"1300980454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28c\/4bc94fd4017a3c57fe02328c\/ufc-40-vendetta-mid.jpg","title":"UFC 40: Vendetta","releaseDate":1037923200000,"language":"en","type":"Movie","_key":"66673"} +{"label":"Miguel Torres","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fa0\/4d2362d77b9aa1736b003fa0\/miguel-torres-profile.jpg","version":36,"id":"108397","lastModified":"1301901299000","name":"Miguel Torres","type":"Person","_key":"66674"} +{"label":"UFC 41: Onslaught","description":"UFC 41: Onslaught was a mixed martial arts event held by the Ultimate Fighting Championship at the Boardwalk Hall in Atlantic City, New Jersey. UFC 41 featured two championship bouts, a Heavyweight Championship Bout between Ricco Rodriguez and Tim Sylvia, and a Lightweight Championship Bout between BJ Penn and Caol Uno. The event also marked the return of Tank Abbott to the UFC","id":"17551","runtime":0,"imdbId":"tt0479189","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=48","version":46,"lastModified":"1301908280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/295\/4bc94fd7017a3c57fe023295\/ufc-41-onslaught-mid.jpg","genre":"Sports Film","title":"UFC 41: Onslaught","releaseDate":1046390400000,"language":"en","type":"Movie","_key":"66675"} +{"label":"UFC 42: Sudden Impact","description":"UFC 42: Sudden Impact was a mixed martial arts event held by the Ultimate Fighting Championship at the American Airlines Arena in Miami, Florida. UFC 42 was the first UFC event to take place in Florida. Headlining the event was a Welterweight Title bout between Matt Hughes and Sean Sherk. UFC 42 also marked the first UFC appearance of future Middleweight Champion Rich Franklin.","id":"17552","runtime":0,"imdbId":"tt0479190","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=63","version":44,"lastModified":"1301908280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29e\/4bc94fd8017a3c57fe02329e\/ufc-42-sudden-impact-mid.jpg","title":"UFC 42: Sudden Impact","releaseDate":1051228800000,"language":"en","type":"Movie","_key":"66676"} +{"label":"Sean Alvarez","version":16,"id":"86141","lastModified":"1301902704000","name":"Sean Alvarez","type":"Person","_key":"66677"} +{"label":"Dave Strasser","version":16,"id":"86144","lastModified":"1301902885000","name":"Dave Strasser","type":"Person","_key":"66678"} +{"label":"Duane Ludwig","version":27,"id":"86146","lastModified":"1301903029000","name":"Duane Ludwig","type":"Person","_key":"66679"} +{"label":"Richard Crunkilton","version":20,"id":"86147","lastModified":"1301902631000","name":"Richard Crunkilton","type":"Person","_key":"66680"} +{"label":"Romie Aram","version":15,"id":"86142","lastModified":"1301902631000","name":"Romie Aram","type":"Person","_key":"66681"} +{"label":"UFC 43: Meltdown","description":"UFC 43: Meltdown was a mixed martial arts event held by the Ultimate Fighting Championship on June 6, 2003, at the Thomas and Mack Center in Las Vegas, Nevada. Headlining the card was the Interim Light Heavyweight Championship match between Randy Couture and Chuck Liddell.","id":"17553","runtime":0,"imdbId":"tt0472573","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=72","version":55,"lastModified":"1300980454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc94fd9017a3c57fe0232a7\/ufc-43-meltdown-mid.jpg","genre":"Sports Film","title":"UFC 43: Meltdown","releaseDate":1054857600000,"language":"en","type":"Movie","_key":"66682"} +{"label":"Vernon White","version":21,"id":"85681","lastModified":"1301902631000","name":"Vernon White","type":"Person","_key":"66683"} +{"label":"Eddie Ruiz","version":19,"id":"85685","lastModified":"1301902631000","name":"Eddie Ruiz","type":"Person","_key":"66684"} +{"label":"Falaniko Vitale","version":20,"id":"85687","lastModified":"1301902631000","name":"Falaniko Vitale","type":"Person","_key":"66685"} +{"label":"UFC 44: Undisputed","description":"UFC 44: Undisputed was a mixed martial arts event held by the Ultimate Fighting Championship at the Mandalay Bay Events Center on the Las Vegas Strip in Paradise, Nevada. Headlining the card was a light heavyweight championship unification bout between Tito Ortiz and Randy Couture.","id":"17554","runtime":0,"imdbId":"tt0479191","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=80","version":54,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ac\/4bc94fd9017a3c57fe0232ac\/ufc-44-undisputed-mid.jpg","genre":"Sports Film","title":"UFC 44: Undisputed","releaseDate":1064534400000,"language":"en","type":"Movie","_key":"66686"} +{"label":"Edwin DeWees","version":18,"id":"86649","lastModified":"1301902456000","name":"Edwin DeWees","type":"Person","_key":"66687"} +{"label":"Jeremy Jackson","version":20,"id":"86650","lastModified":"1301902456000","name":"Jeremy Jackson","type":"Person","_key":"66688"} +{"label":"Gerald Strebendt","version":15,"id":"86651","lastModified":"1301902456000","name":"Gerald Strebendt","type":"Person","_key":"66689"} +{"label":"Josh Thomson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/81b\/4cbefafd7b9aa138d700181b\/josh-thomson-profile.jpg","version":28,"id":"86150","lastModified":"1301902578000","name":"Josh Thomson","type":"Person","_key":"66690"} +{"label":"UFC 45: Revolution","description":"UFC 45: Revolution was a mixed martial arts event held by the Ultimate Fighting Championship at the Mohegan Sun Casino in Uncasville, Connecticut. This event marked the 10th anniversary of the UFC and to celebrate the anniversary the UFC inaugurated its Hall of Fame, with Royce Gracie and Ken Shamrock as the first inductees.","id":"17555","runtime":0,"imdbId":"tt0479192","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=81","version":56,"lastModified":"1301906053000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b5\/4bc94fd9017a3c57fe0232b5\/ufc-45-revolution-mid.jpg","genre":"Sports Film","title":"UFC 45: Revolution","releaseDate":1069372800000,"language":"en","type":"Movie","_key":"66691"} +{"label":"UFC 47: It's On!","description":"UFC 47: It's On! was a mixed martial arts event held by the Ultimate Fighting Championship at the Mandalay Bay Events Center in Las Vegas, Nevada. The title \"It's On!\" refers to Chuck Liddell and Tito Ortiz' long running negotiations leading up to the fight.","id":"17556","runtime":0,"imdbId":"tt0451252","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=91","version":62,"lastModified":"1301418593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2be\/4bc94fd9017a3c57fe0232be\/ufc-47-it-s-on-mid.jpg","genre":"Sports Film","title":"UFC 47: It's On!","releaseDate":1080864000000,"language":"en","type":"Movie","_key":"66692"} +{"label":"UFC 48: Payback","description":"UFC 48: Payback was a mixed martial arts event held by the Ultimate Fighting Championship at the Mandalay Bay Events Center in Las Vegas, Nevada. The featured contestants of the evening were Ken Shamrock and Kimo Leopoldo, who had met once before in 1996 at UFC 8, with Shamrock reigning victorious.","id":"17557","runtime":0,"imdbId":"tt0479194","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=94","version":81,"lastModified":"1301060352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c3\/4bc94fd9017a3c57fe0232c3\/ufc-48-payback-mid.jpg","genre":"Sports Film","title":"UFC 48: Payback","releaseDate":1087603200000,"language":"en","type":"Movie","_key":"66693"} +{"label":"Jay Hieron","version":16,"id":"89239","lastModified":"1301902456000","name":"Jay Hieron","type":"Person","_key":"66694"} +{"label":"Ivan Menjivar","version":15,"id":"89240","lastModified":"1301902456000","name":"Ivan Menjivar","type":"Person","_key":"66695"} +{"label":"UFC 49: Unfinished Business","description":"UFC 49: Unfinished Business was a mixed martial arts event held by the Ultimate Fighting Championship at the MGM Grand Arena in Las Vegas, Nevada. It featured the anticipated rubber match between Light Heavyweight Champion Vitor Belfort and Randy Couture, following a disappointing doctor's stoppage in their last encounter at UFC 46.","id":"17558","runtime":0,"imdbId":"tt0477905","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=95","version":49,"lastModified":"1300980454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c8\/4bc94fda017a3c57fe0232c8\/ufc-49-unfinished-business-mid.jpg","title":"UFC 49: Unfinished Business","releaseDate":1093046400000,"language":"en","type":"Movie","_key":"66696"} +{"label":"David Terrell","version":20,"id":"85190","lastModified":"1301902647000","name":"David Terrell","type":"Person","_key":"66697"} +{"label":"Mike Kyle","version":19,"id":"85197","lastModified":"1301902548000","name":"Mike Kyle","type":"Person","_key":"66698"} +{"label":"Ronald Jhun","version":16,"id":"86149","lastModified":"1301902885000","name":"Ronald Jhun","type":"Person","_key":"66699"} +{"label":"UFC 50: The War of 04","description":"UFC 50: The War of '04 was a mixed martial arts event held by the Ultimate Fighting Championship at the Trump Plaza in Atlantic City, New Jersey. Headlining the card were Tito Ortiz and Patrick C\u00f4t\u00e9. C\u00f4t\u00e9 was a late replacement for Lion's Den fighter Guy Mezger, who pulled out of the event due to a medical condition. It also featured the Middleweight debut of future champion Rich Franklin.","id":"17559","runtime":0,"imdbId":"tt0478308","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=96","version":85,"lastModified":"1301418592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cd\/4bc94fda017a3c57fe0232cd\/ufc-50-the-war-of-04-mid.jpg","genre":"Sports Film","title":"UFC 50: The War of 04","releaseDate":1098403200000,"language":"en","type":"Movie","_key":"66700"} +{"label":"UFC 51: Super Saturday","description":"UFC 51: Super Saturday was a mixed martial arts event held by the Ultimate Fighting Championship on February 5, 2005 (Super Bowl weekend) at the Mandalay Bay Events Center in Las Vegas, Nevada.","id":"17561","runtime":180,"imdbId":"tt0477906","version":73,"lastModified":"1300980455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d2\/4bc94fda017a3c57fe0232d2\/ufc-51-super-saturday-mid.jpg","genre":"Sports Film","title":"UFC 51: Super Saturday","releaseDate":1107561600000,"language":"en","type":"Movie","_key":"66701"} +{"label":"Gideon Ray","version":20,"id":"85196","lastModified":"1301902706000","name":"Gideon Ray","type":"Person","_key":"66702"} +{"label":"UFC 52: Couture vs. Liddell II","description":"UFC 52: Couture vs. Liddell 2 was a mixed martial arts event held by the Ultimate Fighting Championship on April 16, 2005, at the MGM Grand Arena in Las Vegas, Nevada. The event was broadcast live on pay-per-view in the United States and Canada, and later released on DVD.","id":"17562","runtime":0,"imdbId":"tt0477907","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=99","version":49,"lastModified":"1301908280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4bc94fda017a3c57fe0232d7\/ufc-52-couture-vs-liddell-ii-mid.jpg","title":"UFC 52: Couture vs. Liddell II","releaseDate":1113609600000,"language":"en","type":"Movie","_key":"66703"} +{"label":"Travis Wiuff","version":15,"id":"89235","lastModified":"1301902885000","name":"Travis Wiuff","type":"Person","_key":"66704"} +{"label":"John Marsh","version":15,"id":"89236","lastModified":"1301902885000","name":"John Marsh","type":"Person","_key":"66705"} +{"label":"Bureibu sut\u014dr\u012b","description":"Jr. High School Student Wataru and his friends like playing in an abandond building and looking for ghosts. However it seems he is not the only one. Another mysterious student Mitsuru shows Wataru that there is a magical door to another world where one can go and get the Goddess of Fortune to grant one wish! When tragedy strikes Wataru's family he decides to open the door for himself.","id":"17566","runtime":108,"imdbId":"tt0778631","version":168,"lastModified":"1301905015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e5\/4bc94fde017a3c57fe0232e5\/brave-story-mid.jpg","studio":"Gonzo","genre":"Animation","title":"Bureibu sut\u014dr\u012b","releaseDate":1148256000000,"language":"en","type":"Movie","_key":"66706"} +{"label":"Battle Planet","description":"In the not-so-distant future, Captain Jordan Strider, a Special Forces Officer in the New World Alliance, is chosen for a top-secret mission. Sent to a desolate planet, Terra 219, to arrest possible traitors to the Alliance, Strider must survive with only a government issued experimental suit as protection. He quickly learns of a plan to end all humanity.","id":"17571","runtime":85,"imdbId":"tt1016024","homepage":"http:\/\/www.battleplanetmovie.com\/","version":148,"lastModified":"1301907089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2fe\/4bc94fe1017a3c57fe0232fe\/battle-planet-mid.jpg","studio":"Night Light Films","genre":"Action","title":"Battle Planet","releaseDate":1225584000000,"language":"en","type":"Movie","_key":"66707"} +{"label":"Greg Aronowitz","version":25,"id":"85137","lastModified":"1301901492000","name":"Greg Aronowitz","type":"Person","_key":"66708"} +{"label":"Monica May","version":17,"id":"102692","lastModified":"1301901608000","name":"Monica May","type":"Person","_key":"66709"} +{"label":"Colleen Smith","version":17,"id":"102693","lastModified":"1301901608000","name":"Colleen Smith","type":"Person","_key":"66710"} +{"label":"Stephen Settgast","version":17,"id":"102694","lastModified":"1301902631000","name":"Stephen Settgast","type":"Person","_key":"66711"} +{"label":"Meg Cionni","version":17,"id":"102695","lastModified":"1301902237000","name":"Meg Cionni","type":"Person","_key":"66712"} +{"label":"Only Clouds Move the Stars","description":"Eleven year old Maria has lost her little brother to cancer. Having disappeared into herself, her mother is no longer there for Maria and her father struggles to keep the family together. Maria meets Jacob, who is the same age as she, but with a completely different attitude. Jacob is outgoing, exciting, funny and has wisdom way beyond his tender years. He gradually pulls Maria out of her shell and enables her to come to decisions which will affect her entire life.Only Clouds Move the Stars tack","id":"17575","runtime":98,"imdbId":"tt0157356","version":52,"lastModified":"1302101792000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ea\/4d9c99d35e73d64ba20003ea\/bare-skyer-beveger-stjernene-mid.jpg","title":"Only Clouds Move the Stars","releaseDate":903916800000,"language":"en","type":"Movie","_key":"66713"} +{"label":"Thea Sofie Rusten","version":22,"id":"82053","lastModified":"1302101700000","name":"Thea Sofie Rusten","type":"Person","_key":"66714"} +{"label":"Jan Tore Kristoffersen","version":22,"id":"82054","lastModified":"1302101700000","name":"Jan Tore Kristoffersen","type":"Person","_key":"66715"} +{"label":"The Devil's Tomb","description":"Captain Mack leads an elite military unit on a search for a missing scientist, and comes face-to-face with an an ancient evil lying beneath the Middle Eastern desert. Evil that is not of this world. Evil that should never be unearthed.","id":"17577","runtime":91,"imdbId":"tt1147687","version":147,"lastModified":"1302215668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/324\/4bc94fe4017a3c57fe023324\/the-devil-s-tomb-mid.jpg","studio":"Ice Cold Productions","genre":"Action","title":"The Devil's Tomb","releaseDate":1243296000000,"language":"en","type":"Movie","_key":"66716"} +{"label":"The Adventures of Tintin: The Secret of the Unicorn","description":"No overview found.","id":"17578","runtime":0,"imdbId":"tt0983193","version":92,"lastModified":"1301904635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c5d\/4d7f5bc05e73d62828003c5d\/the-adventures-of-tintin-the-secret-of-the-unicorn-mid.jpg","studio":"Amblin Entertainment","genre":"Family","title":"The Adventures of Tintin: The Secret of the Unicorn","releaseDate":1319587200000,"language":"en","type":"Movie","_key":"66717"} +{"label":"Phillip Rhys","version":18,"id":"104802","lastModified":"1301902838000","name":"Phillip Rhys","type":"Person","_key":"66718"} +{"label":"Crusty Demons Vol. 13","description":"CRUSTY 13 takes you on a journey throughout CANADA, USA, AUSTRALIA & NEW ZEALAND. Witness the Crusty crew \"SMASHING the rules of GRAVITY\" by breaking world record distances, 360's, tsunami flips and double backflips!! This film is NATIONAL GEOGRAPHIC meets MAYHEM!!\r\nNominated for the 2008 Impact Video Xtremey Awards, in the Best Freestyle MX category. ","id":"17580","runtime":75,"trailer":"http:\/\/www.youtube.com\/watch?v=1182","homepage":"http:\/\/www.crusty.com\/","version":27,"lastModified":"1301908525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32d\/4bc94fe4017a3c57fe02332d\/crusty-demons-vol-13-mid.jpg","genre":"Action","title":"Crusty Demons Vol. 13","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66719"} +{"label":"Brian Deegan","version":20,"id":"82522","lastModified":"1301902324000","name":"Brian Deegan","type":"Person","_key":"66720"} +{"label":"Nate Adams","version":16,"id":"82523","lastModified":"1301902357000","name":"Nate Adams","type":"Person","_key":"66721"} +{"label":"Naruto Shippuden Movie 2: Bonds","description":"A mysterious group of ninjas makes a surprise attack on the Konohagakure, which takes great damage. The nightmare of another Shinobi World War could become a reality. Sasuke, who was still a missing nin from Konoha trying to kill his brother, Itachi, appears for the second time in front of Naruto at an unknown location to prevent it from happening.","id":"17581","runtime":90,"imdbId":"tt1160524","homepage":"http:\/\/www.naruto-movie.com\/","version":50,"lastModified":"1301902902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/33a\/4bc94fe8017a3c57fe02333a\/naruto-shippuden-bonds-mid.jpg","studio":"Aniplex","genre":"Animation","title":"Naruto Shippuden Movie 2: Bonds","releaseDate":1217635200000,"language":"en","type":"Movie","_key":"66722"} +{"label":"Khamsa","description":"No overview found.","id":"17582","runtime":110,"imdbId":"tt1280566","version":53,"lastModified":"1301908282000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/348\/4bc94feb017a3c57fe023348\/khamsa-mid.jpg","genre":"Drama","title":"Khamsa","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66723"} +{"label":"Blue Hill Avenue","description":"A child of a middle class home with solid moral values is lured into a world of crime and corruption.","id":"17584","runtime":128,"imdbId":"tt0283952","version":156,"lastModified":"1301907089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7d\/4d44c5615e73d602b2000d7d\/blue-hill-avenue-mid.jpg","studio":"Artisan Entertainment","genre":"Crime","title":"Blue Hill Avenue","releaseDate":978307200000,"language":"en","type":"Movie","_key":"66724"} +{"label":"Angelle Brooks","version":16,"id":"92931","lastModified":"1301902631000","name":"Angelle Brooks","type":"Person","_key":"66725"} +{"label":"Aaron D. Spears","version":16,"id":"92932","lastModified":"1301902631000","name":"Aaron D. Spears","type":"Person","_key":"66726"} +{"label":"Craig Ross Jr.","version":18,"id":"92933","lastModified":"1301902493000","name":"Craig Ross Jr.","type":"Person","_key":"66727"} +{"label":"Surviving the Game","description":"Mason is a man down on his luck with nothing to lose when he's approached to lead a group of wealthy hunters on an expedition in the Pacific Northwest. But things get really twisted when Mason discovers the group isn't after wild animals -- they're after him.","id":"17585","runtime":96,"imdbId":"tt0111323","version":209,"lastModified":"1301903312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41a\/4d44fe6c7b9aa103c800141a\/surviving-the-game-mid.jpg","genre":"Action","title":"Surviving the Game","releaseDate":766368000000,"language":"en","tagline":"The ultimate manhunt.","type":"Movie","_key":"66728"} +{"label":"Legends - Live At Montreux","description":"Legends is one of the most musically accomplished groups of all time. With Eric Clapton on guitar, Joe Sample of The Crusaders on keyboards, virtuoso saxophone player David Sanborn and super session players Steve Gadd on drums and Marcus Miller on bass, the group's pedigree is extraordinary. They never made an album and this concert at Montreux is the only record of their stunning collaboration.","id":"17586","runtime":107,"version":49,"lastModified":"1301903367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37a\/4bc94fee017a3c57fe02337a\/legends-live-at-montreux-mid.jpg","title":"Legends - Live At Montreux","releaseDate":852076800000,"language":"en","type":"Movie","_key":"66729"} +{"label":"Mrs Brown","description":"Queen Victoria is deeply depressed after the death of her husband, disappearing from public. Her servant Brown, who adores her, through caress and admiration brings her back to life, but that relationship creates scandalous situation and is likely to lead to monarchy crisis.","id":"17589","runtime":105,"imdbId":"tt0119280","version":456,"lastModified":"1301903317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/785\/4ccbab6d5e73d65023000785\/mrs-brown-mid.jpg","studio":"Ecosse Films","genre":"Drama","title":"Mrs Brown","releaseDate":869184000000,"language":"en","type":"Movie","_key":"66730"} +{"label":"Richard Pasco","version":22,"id":"85628","lastModified":"1301902477000","name":"Richard Pasco","type":"Person","_key":"66731"} +{"label":"David Westhead","version":22,"id":"85629","lastModified":"1301902384000","name":"David Westhead","type":"Person","_key":"66732"} +{"label":"Deathtrap","description":"A Broadway playwright puts murder in his plan to take credit for a student's script.","id":"17590","runtime":116,"imdbId":"tt0083806","version":145,"lastModified":"1301904378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac5\/4d609db35e73d60c68002ac5\/deathtrap-mid.jpg","genre":"Comedy","title":"Deathtrap","releaseDate":385344000000,"language":"en","type":"Movie","_key":"66733"} +{"label":"The Battle of the River Plate","description":"Set during the early years of World War II, the War in the Atlantic. The Royal Navy was fighting a desperate battle to keep the convoy routes open to keep the British Isles supplied. One great danger was the surface raiders, huge cruisers called \"pocket battleships\" that slipped out of German waters just before war was declared. The \"Bismarck\", The \"Scharnhorst\", The \"Gneissau\" and The \"Graf Spee\" were supplied by tanker & could strike anywhere. This is the story of how 3 lightly armed cruisers ","id":"17591","runtime":119,"imdbId":"tt0048990","version":208,"lastModified":"1301905439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/395\/4bc94ff0017a3c57fe023395\/the-battle-of-the-river-plate-mid.jpg","studio":"Archers, The","genre":"War","title":"The Battle of the River Plate","releaseDate":-383961600000,"language":"en","tagline":"The tremendous story of the victory over the Graf Spee.","type":"Movie","_key":"66734"} +{"label":"John Gregson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0e1\/4c49c7f77b9aa115fe0000e1\/john-gregson-profile.jpg","version":30,"id":"90624","lastModified":"1301902509000","name":"John Gregson","type":"Person","_key":"66735"} +{"label":"Lionel Murton","version":17,"id":"141494","lastModified":"1301902236000","name":"Lionel Murton","type":"Person","_key":"66736"} +{"label":"Peter Illing","version":20,"id":"109849","lastModified":"1301903013000","name":"Peter Illing","type":"Person","_key":"66737"} +{"label":"The Wild Parrots of Telegraph Hill","description":"A homeless musician finds meaning to his life when he starts a friendship with dozens of parrots.","id":"17592","runtime":83,"imdbId":"tt0424565","homepage":"http:\/\/www.wildparrotsfilm.com","version":196,"lastModified":"1301006729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b90\/4d2c90a35e73d63a5a002b90\/the-wild-parrots-of-telegraph-hill-mid.jpg","genre":"Documentary","title":"The Wild Parrots of Telegraph Hill","releaseDate":1127347200000,"language":"en","type":"Movie","_key":"66738"} +{"label":"Rough Cut","description":"Gang-pae is #2 gangster in his organization who longs to become an actor. Su-ta is a superstar actor who takes on the role of a gangster in an action movie called Rough Cut. When another actor leaves the set due to Su-tas violent ways, the production is on the verge of shutting down. Su-ta asks Gang-pae, whom he met by chance, to play alongside him in the movie in order to save the production.","id":"17593","runtime":113,"imdbId":"tt1345734","trailer":"http:\/\/www.youtube.com\/watch?v=1371","version":252,"lastModified":"1301056858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a2\/4bc94ff1017a3c57fe0233a2\/rough-cut-mid.png","genre":"Action","title":"Rough Cut","releaseDate":1221091200000,"language":"en","type":"Movie","_key":"66739"} +{"label":"Afterbang","description":"Afterbang is the story of a talented group of athletes that have a vision to portray the fun and creative side of snowboarding. In the ever-changing world of this sport it seems to have regressed into a not so changing slump of predictable and numbing films that are cut to the same mold year after year. Afterbang is a fresh and honest look at what snowboarding means to this group.","id":"17594","runtime":31,"version":20,"lastModified":"1301908525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3af\/4bc94ff3017a3c57fe0233af\/afterbang-mid.jpg","studio":"Robot Food","genre":"Sports Film","title":"Afterbang","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"66740"} +{"label":"Jussi Oksanen","version":16,"id":"94720","lastModified":"1301902986000","name":"Jussi Oksanen","type":"Person","_key":"66741"} +{"label":"David Benedek","version":16,"id":"108965","lastModified":"1301903008000","name":"David Benedek","type":"Person","_key":"66742"} +{"label":"Travis Parker","version":17,"id":"108966","lastModified":"1301903008000","name":"Travis Parker","type":"Person","_key":"66743"} +{"label":"Cowards Bend the Knee","description":"No overview found.","id":"17595","runtime":0,"imdbId":"tt0346800","version":97,"lastModified":"1301417896000","genre":"Drama","title":"Cowards Bend the Knee","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"66744"} +{"label":"The Hindenburg","description":"A highly speculative thriller, The Hindenburg depicts a conspiracy leading to the destruction of the airship. In reality, while the Zeppelins were certainly used as a propaganda symbol by the Third Reich, and anti-Nazi forces might have had the motivation for sabotage, the theory of sabotage was investigated at the time, and no firm evidence for such sabotage was ever put forward. The possibility of Boerth's (i.e. Spehl's) deliberate sabotage is one theory of the fire that had been the subject o","id":"17599","runtime":125,"imdbId":"tt0073113","version":331,"lastModified":"1301905181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d2\/4d9185385e73d65f110034d2\/the-hindenburg-mid.jpg","genre":"Action","title":"The Hindenburg","releaseDate":188697600000,"language":"en","type":"Movie","_key":"66745"} +{"label":"Spanking the Monkey","description":"Raymond Aibelli is a promising pre-med student home briefly before leaving again for a prestigious summer internship. His plans however evaporate when his father insists he stay home to care for his mother who is recovering from a broken leg. There, he distracts himself with masturbation and lots of long walks, and even a half-hearted courtship of a much younger girl.","id":"17600","runtime":100,"imdbId":"tt0111252","trailer":"http:\/\/www.youtube.com\/watch?v=zCxlFPnsEU4","version":125,"lastModified":"1301907749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e1\/4c8cf7225e73d606910004e1\/spanking-the-monkey-mid.jpg","studio":"Fine Line Features","genre":"Comedy","title":"Spanking the Monkey","releaseDate":774230400000,"language":"en","tagline":"A gripping comedy about letting go.","type":"Movie","_key":"66746"} +{"label":"Elizabeth Newett","version":22,"id":"128427","lastModified":"1301902795000","name":"Elizabeth Newett","type":"Person","_key":"66747"} +{"label":"Benjamin Hendrickson","version":22,"id":"128428","lastModified":"1301902762000","name":"Benjamin Hendrickson","type":"Person","_key":"66748"} +{"label":"Munde U.K. De","description":"This is the story of two British born Punjabi boys who visit Punjab for the first time and fall in love. They find it very difficult to win over the girls here because of their typical British attitude. It is very interesting to see how they adopt themselves to Punjabi traditions and win over the hearts of everybody. Their interaction with Punjabi youth is very entertaining as humor comes out.....","id":"17601","runtime":149,"imdbId":"tt1577854","homepage":"http:\/\/www.mundeukde.com","version":77,"lastModified":"1301904982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cc\/4bc94ff9017a3c57fe0233cc\/munde-u-k-de-mid.jpg","genre":"Drama","title":"Munde U.K. De","releaseDate":1241740800000,"language":"en","type":"Movie","_key":"66749"} +{"label":"Amrinder Gill","version":20,"id":"82074","lastModified":"1301902359000","name":"Amrinder Gill","type":"Person","_key":"66750"} +{"label":"Deep Dhillon","version":27,"id":"82075","lastModified":"1301901855000","name":"Deep Dhillon","type":"Person","_key":"66751"} +{"label":"Arun Bali","version":21,"id":"82076","lastModified":"1301902336000","name":"Arun Bali","type":"Person","_key":"66752"} +{"label":"Rana Ranbir","version":27,"id":"82077","lastModified":"1301902416000","name":"Rana Ranbir","type":"Person","_key":"66753"} +{"label":"Khushboo","version":15,"id":"82078","lastModified":"1301901936000","name":"Khushboo","type":"Person","_key":"66754"} +{"label":"Macheads","description":"A exploration of the fanaticism that surrounds the Apple brand, featuring interviews with Mac evangelists and members of the Mac community.","id":"17602","runtime":54,"imdbId":"tt1379667","trailer":"http:\/\/www.youtube.com\/watch?v=1161","version":79,"lastModified":"1301903846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e4\/4bc94ffa017a3c57fe0233e4\/macheads-mid.jpg","genre":"Documentary","title":"Macheads","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"66755"} +{"label":"She","description":"No overview found.","id":"17604","runtime":0,"imdbId":"tt0059710","version":168,"lastModified":"1301903432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d0\/4d0c88715e73d6370a0005d0\/she-mid.jpg","title":"She","releaseDate":-141436800000,"language":"en","tagline":"SHE who must be obeyed! ...SHE who must be loved! ...SHE who must be possessed!","type":"Movie","_key":"66756"} +{"label":"Stella","description":"1977. Stella entre en sixi\u00e8me, dans un grand lyc\u00e9e parisien. \nStella entre dans le monde... Un nouveau monde, \u00e0 l'oppos\u00e9 de celui qu'elle conna\u00eet. Presque un miracle. \nElle, elle vit dans un caf\u00e9, un caf\u00e9 d'ouvrier, \u00e0 la fronti\u00e8re de Paris.\nCette rentr\u00e9e va changer sa vie.","id":"17605","runtime":103,"imdbId":"tt1174047","version":84,"lastModified":"1301417525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3fa\/4bc94ffb017a3c57fe0233fa\/stella-mid.jpg","studio":"Diaphana Films","genre":"Drama","title":"Stella","releaseDate":1226448000000,"language":"en","type":"Movie","_key":"66757"} +{"label":"The Other Man","description":"The story of a husband who suspects his wife of adultery, and sets out to track down the other man in her life.","id":"17606","runtime":90,"imdbId":"tt0974613","version":286,"lastModified":"1302215433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/718\/4cd9e33b7b9aa11b22000718\/the-other-man-mid.jpg","studio":"Rainmark Films","genre":"Drama","title":"The Other Man","releaseDate":1230163200000,"language":"en","type":"Movie","_key":"66758"} +{"label":"La tr\u00e8s tr\u00e8s grande entreprise","description":"No overview found.","id":"17607","runtime":0,"imdbId":"tt1156170","version":125,"lastModified":"1301417526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fe\/4cd9669c5e73d676d20007fe\/la-tres-tres-grande-entreprise-mid.jpg","title":"La tr\u00e8s tr\u00e8s grande entreprise","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"66759"} +{"label":"Rhys Darby Live - Imagine That!","description":"Rhys Darby Live \u2013 Imagine That! is Rhys\u2019 first stand-up DVD and was filmed in early 2008 in Los Angeles.","id":"17608","runtime":81,"version":61,"lastModified":"1301907214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc95003017a3c57fe02341e\/rhys-darby-live-imagine-that-mid.jpg","studio":"Warner Music Entertainment","title":"Rhys Darby Live - Imagine That!","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"66760"} +{"label":"Antichrist","description":"A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.","id":"17609","runtime":100,"imdbId":"tt0870984","trailer":"http:\/\/www.youtube.com\/watch?v=BO_wu_M2xjc","version":359,"lastModified":"1301901956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e0\/4d0b30275e73d646a40001e0\/antichrist-mid.jpg","studio":"Zentropa Entertainments","genre":"Drama","title":"Antichrist","releaseDate":1243555200000,"language":"en","type":"Movie","_key":"66761"} +{"label":"Year One","description":"When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.","id":"17610","runtime":100,"imdbId":"tt1045778","trailer":"http:\/\/www.youtube.com\/watch?v=1162","homepage":"http:\/\/www.yearone-movie.com\/","version":269,"lastModified":"1301901923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44c\/4bc95009017a3c57fe02344c\/year-one-mid.jpg","studio":"Columbia Pictures","genre":"Comedy","title":"Year One","releaseDate":1245369600000,"language":"en","tagline":"Meet your ancestors ","type":"Movie","_key":"66762"} +{"label":"Lost and Delirious","description":"Lost and Delirious is the story of three adolescent girls' first love, their discovery of sexual passion, and their search for identities. Set in a posh, private boarding school surrounded by luxuriant, green forest, Lost and Delirious moves swiftly from academic routine, homesickness, and girlish silliness to the darker region of lover's intrigue.","id":"17612","runtime":103,"imdbId":"tt0245238","version":236,"lastModified":"1301903402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46b\/4bc95011017a3c57fe02346b\/lost-and-delirious-mid.jpg","genre":"Drama","title":"Lost and Delirious","releaseDate":980035200000,"language":"en","type":"Movie","_key":"66763"} +{"label":"Emily VanCamp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ce7\/4cf3f2185e73d62387000ce7\/emily-vancamp-profile.jpg","version":31,"id":"84247","lastModified":"1301970567000","name":"Emily VanCamp","type":"Person","_key":"66764"} +{"label":"L\u00e9a Pool","version":20,"id":"135534","lastModified":"1301902742000","name":"L\u00e9a Pool","type":"Person","_key":"66765"} +{"label":"\u05dc\u05d4\u05e6\u05d9\u05dc \u05d0\u05ea \u05d0\u05d9\u05e9 \u05d4\u05de\u05e2\u05e8\u05d5\u05ea","description":"\u05d4\u05d4\u05e6\u05d2\u05d4 \u05e2\u05d8\u05d5\u05e8\u05ea \u05d4\u05ea\u05d4\u05d9\u05dc\u05d4 \u05d5\u05d4\u05e9\u05d1\u05d7\u05d9\u05dd \u05de\u05d0\u05ea \u05e8\u05d5\u05d1 \u05d1\u05e7\u05e8 \u05e2\u05d5\u05e1\u05e7\u05ea \u05d1\u05d6\u05d5\u05d2\u05d9\u05d5\u05ea. \u05d2\u05d1\u05e8, \u05d0\u05d9\u05e9\u05d4, \u05d4\u05e9\u05d5\u05e0\u05d9 \u05d1\u05d9\u05e0\u05d9\u05d4\u05dd, \u05d4\u05d0\u05d4\u05d1\u05d4 \u05d5\u05d4\u05de\u05dc\u05d7\u05de\u05d4.\n\u05d0\u05d1\u05d9 \u05e7\u05d5\u05e9\u05e0\u05d9\u05e8 \u05dc\u05d5\u05e7\u05d7 \u05d0\u05d5\u05ea\u05e0\u05d5 \u05dc\u05de\u05e1\u05e2 \u05d1\u05d6\u05de\u05df \u05d5\u05de\u05d2\u05d9\u05e2 \u05dc\u05de\u05e1\u05e7\u05e0\u05d4 \u05e9\u05de\u05d3\u05d5\u05d1\u05e8 \u05d1\u05e9\u05ea\u05d9 \u05ea\u05e8\u05d1\u05d5\u05d9\u05d5\u05ea \u05e9\u05d5\u05e0\u05d5\u05ea, \u05ea\u05e8\u05d1\u05d5\u05ea \u05e0\u05e9\u05d9\u05dd \u05d5\u05ea\u05e8\u05d1\u05d5\u05ea \u05d2\u05d1\u05e8\u05d9\u05dd. ","id":"17613","runtime":80,"version":14,"lastModified":"1300980460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/470\/4bc95011017a3c57fe023470\/17613-mid.jpg","genre":"Comedy","title":"\u05dc\u05d4\u05e6\u05d9\u05dc \u05d0\u05ea \u05d0\u05d9\u05e9 \u05d4\u05de\u05e2\u05e8\u05d5\u05ea","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66766"} +{"label":"Yossi & Jagger","description":"A sociological study of two men in the Israeli army who are lovers. The others in the unit react to their situation, suspecting, but not always understanding. One will leave the military soon, a few months away, as a snowy and desolete outpost is guarded from attack.","id":"17614","runtime":65,"imdbId":"tt0334754","version":123,"lastModified":"1301904305000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/479\/4bc95011017a3c57fe023479\/17614-mid.jpg","genre":"Drama","title":"Yossi & Jagger","releaseDate":1028160000000,"language":"en","type":"Movie","_key":"66767"} +{"label":"Ohad Knoller","version":24,"id":"82097","lastModified":"1301902543000","name":"Ohad Knoller","type":"Person","_key":"66768"} +{"label":"Yehuda Levi","version":21,"id":"82098","lastModified":"1301902455000","name":"Yehuda Levi","type":"Person","_key":"66769"} +{"label":"Assi Cohen","version":28,"id":"82099","lastModified":"1301902388000","name":"Assi Cohen","type":"Person","_key":"66770"} +{"label":"Aya Steinovitz","version":24,"id":"82100","lastModified":"1301902354000","name":"Aya Steinovitz","type":"Person","_key":"66771"} +{"label":"Laid To Rest","description":"A terrifying story of a young girl who wakes up in a casket with a traumatic head injury and no memory of her identity. She quickly realizes she was abducted by a Deranged Serial Murderer and in an isolated rural town she must survive the night and outsmart the technologically inclined killer who is hellbent on finishing what he started.","id":"17618","runtime":90,"imdbId":"tt1228933","homepage":"http:\/\/www.laidtorestmovie.com\/","version":159,"lastModified":"1301904612000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48f\/4bc95014017a3c57fe02348f\/laid-to-rest-mid.jpg","studio":"Dry County Films","genre":"Horror","title":"Laid To Rest","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"66772"} +{"label":"Robert Hall","version":25,"id":"82101","lastModified":"1301902382000","name":"Robert Hall","type":"Person","_key":"66773"} +{"label":"Bobbi Sue Luther","version":24,"id":"82102","lastModified":"1301902202000","name":"Bobbi Sue Luther","type":"Person","_key":"66774"} +{"label":"Fifty Dead Men Walking","description":"Based on Martin McGartland's real life story as a informant for the British Police to spy on the IRA. Taking place from 1987-1991, Martin (Jim Sturgess) works his way up the ranks of the IRA, while keeping his informant with the police Fergis (Ben Kingsley) at bay. In the process he saved numerous lives and is still in hiding from the IRA today.","id":"17622","runtime":117,"imdbId":"tt1097643","version":374,"lastModified":"1301902946000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49d\/4bc95016017a3c57fe02349d\/fifty-dead-men-walking-mid.jpg","genre":"Thriller","title":"Fifty Dead Men Walking","releaseDate":1250812800000,"language":"en","type":"Movie","_key":"66775"} +{"label":"Tom Collins","version":21,"id":"84864","lastModified":"1301901862000","name":"Tom Collins","type":"Person","_key":"66776"} +{"label":"Jonatan Spang: Damer","description":"I efter\u00e5ret 2005 tournerede Jonatan Spang landet rundt med sit f\u00f8rste one (wo)man comedy show \u201dDAMER\u201d. Showet er optaget i Store Vega i K\u00f8benhavn. Hvorfor har gr\u00e6ske statuer s\u00e5 sm\u00e5 tissem\u00e6nd? Hvorfor er k\u00f8nsrolledebatten kun sp\u00e6ndende, n\u00e5r man kalder koner for k\u00e6llinger?","id":"17626","runtime":130,"imdbId":"tt0787052","version":32,"lastModified":"1301905698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a6\/4bc95016017a3c57fe0234a6\/jonatan-spang-damer-mid.jpg","title":"Jonatan Spang: Damer","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"66777"} +{"label":"City Rats","description":"Welcome to the world of the City Rats where eight lives collide in a Pulp Fiction style blend that reveals London\u2018s true dark and twisted underbelly.","id":"17627","runtime":100,"imdbId":"tt1090646","version":162,"lastModified":"1301417973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c8\/4bc9501d017a3c57fe0234c8\/city-rats-mid.jpg","studio":"Face Films","genre":"Drama","title":"City Rats","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"66778"} +{"label":"Ray Panthaki","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4cf1a7d15e73d61e3b0000ec\/ray-panthaki-profile.jpg","version":20,"id":"82107","lastModified":"1301902194000","name":"Ray Panthaki","type":"Person","_key":"66779"} +{"label":"Steve Kelly","version":19,"id":"82108","lastModified":"1301902237000","name":"Steve Kelly","type":"Person","_key":"66780"} +{"label":"I Am a Sex Addict","description":"Just moments before his third wedding, Zahedi relates with utter sincerity and astonishing candor his obsession with prostitutes. He retraces his romantic and sexual history, including his ideological commitment to open relationships, that led to two disastrous marriages and several very pissed off ex-girlfriends. I Am a Sex Addict is Zahedi's unique brand of comedy at its confessional best.","id":"17628","runtime":98,"imdbId":"tt0428649","homepage":"http:\/\/www.iamasexaddictthemovie.com\/home.html","version":159,"lastModified":"1301904771000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d1\/4bc9501e017a3c57fe0234d1\/i-am-a-sex-addict-mid.jpg","studio":"Reinventing the Wheel","genre":"Comedy","title":"I Am a Sex Addict","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"66781"} +{"label":"Rebecca Lord","version":19,"id":"82112","lastModified":"1301901381000","name":"Rebecca Lord","type":"Person","_key":"66782"} +{"label":"Emily Morse","version":19,"id":"82113","lastModified":"1301901717000","name":"Emily Morse","type":"Person","_key":"66783"} +{"label":"Amanda Henderson","version":19,"id":"82114","lastModified":"1301901717000","name":"Amanda Henderson","type":"Person","_key":"66784"} +{"label":"Hamilton","description":"Swedish agent Carl Hamilton (Peter Stormare) and Finnish \u00c5ke St\u00e5lhandske (Mats L\u00e5ngbacka) are ordered to stop Russian smugglers. The smuggled goods is a nuclear missile. It's an SS 20, 1,5 megatons, \"enough to turn Paris, Washington or New York to ashes\". The American villain is Mike Hawkins (Mark Hamill).","id":"17629","runtime":122,"imdbId":"tt0119249","version":93,"lastModified":"1301904947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4da\/4bc9501f017a3c57fe0234da\/hamilton-mid.jpg","genre":"Action","title":"Hamilton","releaseDate":886118400000,"language":"en","type":"Movie","_key":"66785"} +{"label":"Vilaine","description":"No overview found.","id":"17630","runtime":93,"imdbId":"tt1132608","version":50,"lastModified":"1301905323000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e3\/4bc9501f017a3c57fe0234e3\/vilaine-mid.jpg","studio":"SND","genre":"Comedy","title":"Vilaine","releaseDate":1226448000000,"language":"en","type":"Movie","_key":"66786"} +{"label":"Allan Mauduit","version":21,"id":"82117","lastModified":"1301902522000","name":"Allan Mauduit","type":"Person","_key":"66787"} +{"label":"Pranzo di ferragosto","description":"Gianni, 50 ans et des poussi\u00e8res, vit avec sa maman dans un grand appartement au coeur de Rome, o\u00f9 il s'occupe de tout : cuisine, m\u00e9nage et courses. Accul\u00e9s par les dettes, l'ensemble de la copropri\u00e9t\u00e9 menace de les expulser car ils n'ont pas pay\u00e9 leurs charges depuis plusieurs ann\u00e9es.Le syndic d'immeuble, Alfonso, propose alors \u00e0 Gianni un march\u00e9 insolite : garder sa m\u00e8re pendant le week-end du 15 ao\u00fbt, contre l'effacement de cette dette. Le jour dit, Gianni voit arriver non seulement la m\u00e8re d","id":"17631","runtime":75,"imdbId":"tt1277728","version":112,"lastModified":"1301903749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e4\/4d94c7257b9aa119940021e4\/pranzo-di-ferragosto-mid.jpg","genre":"Comedy","title":"Pranzo di ferragosto","releaseDate":1209513600000,"language":"en","type":"Movie","_key":"66788"} +{"label":"Gianni Di Gregorio","version":33,"id":"72769","lastModified":"1301901619000","name":"Gianni Di Gregorio","type":"Person","_key":"66789"} +{"label":"Valeria De Franciscis","version":21,"id":"118661","lastModified":"1301902591000","name":"Valeria De Franciscis","type":"Person","_key":"66790"} +{"label":"Maria Cal\u00ec","version":18,"id":"118663","lastModified":"1301902591000","name":"Maria Cal\u00ec","type":"Person","_key":"66791"} +{"label":"Marina Cacciotti","version":20,"id":"118662","lastModified":"1301902591000","name":"Marina Cacciotti","type":"Person","_key":"66792"} +{"label":"Grazia Cesarini Sforza","version":20,"id":"118664","lastModified":"1301902591000","name":"Grazia Cesarini Sforza","type":"Person","_key":"66793"} +{"label":"Luigi Marchetti","version":20,"id":"118665","lastModified":"1301902591000","name":"Luigi Marchetti","type":"Person","_key":"66794"} +{"label":"Marcello Ottolenghi","version":20,"id":"118666","lastModified":"1301902225000","name":"Marcello Ottolenghi","type":"Person","_key":"66795"} +{"label":"The Hunt for Gollum","description":"The great events of the war of the ring are about to unfold and the priority for Strider and Gandalf is to keep the Ring secret. Sauron is preparing to unleash his armies and Gollum is creeping around Middle Earth with crucial knowledge of the Ring's location. He must be found.","id":"17632","runtime":38,"imdbId":"tt1323925","trailer":"http:\/\/www.youtube.com\/watch?v=1163","homepage":"http:\/\/www.thehuntforgollum.com\/","version":130,"lastModified":"1301906464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed4\/4c73d5c67b9aa13ab9000ed4\/the-hunt-for-gollum-mid.jpg","studio":"Independent Online Cinema","genre":"Action","title":"The Hunt for Gollum","releaseDate":1241395200000,"language":"en","tagline":"Not all who wander are lost...","type":"Movie","_key":"66796"} +{"label":"Adrian Webster","version":21,"id":"82120","lastModified":"1301901842000","name":"Adrian Webster","type":"Person","_key":"66797"} +{"label":"Patrick O'Connor","version":19,"id":"82121","lastModified":"1301902203000","name":"Patrick O'Connor","type":"Person","_key":"66798"} +{"label":"Arin Alldridge","version":21,"id":"84293","lastModified":"1301902391000","name":"Arin Alldridge","type":"Person","_key":"66799"} +{"label":"Rita Ramnani","version":23,"id":"84295","lastModified":"1301902546000","name":"Rita Ramnani","type":"Person","_key":"66800"} +{"label":"Gareth Brough","version":23,"id":"84296","lastModified":"1301902726000","name":"Gareth Brough","type":"Person","_key":"66801"} +{"label":"Jason Perino","version":21,"id":"84297","lastModified":"1301902546000","name":"Jason Perino","type":"Person","_key":"66802"} +{"label":"Christopher Dingli","version":21,"id":"84298","lastModified":"1301902546000","name":"Christopher Dingli","type":"Person","_key":"66803"} +{"label":"Max Bracey","version":21,"id":"123409","lastModified":"1301903074000","name":"Max Bracey","type":"Person","_key":"66804"} +{"label":"Dan Styles","version":21,"id":"123410","lastModified":"1301903077000","name":"Dan Styles","type":"Person","_key":"66805"} +{"label":"Joshua Kennedy","version":21,"id":"123411","lastModified":"1301903069000","name":"Joshua Kennedy","type":"Person","_key":"66806"} +{"label":"Ross Morrisson","version":21,"id":"123412","lastModified":"1301903078000","name":"Ross Morrisson","type":"Person","_key":"66807"} +{"label":"Emma Hunt","version":21,"id":"123413","lastModified":"1301903069000","name":"Emma Hunt","type":"Person","_key":"66808"} +{"label":"Lisa Rost-Welling","version":22,"id":"123414","lastModified":"1301902896000","name":"Lisa Rost-Welling","type":"Person","_key":"66809"} +{"label":"Tina Barnes","version":21,"id":"123415","lastModified":"1301903077000","name":"Tina Barnes","type":"Person","_key":"66810"} +{"label":"Will Boyd","version":21,"id":"123416","lastModified":"1301903034000","name":"Will Boyd","type":"Person","_key":"66811"} +{"label":"Ronan Carr","version":21,"id":"123417","lastModified":"1301903078000","name":"Ronan Carr","type":"Person","_key":"66812"} +{"label":"Spencer Duru","version":21,"id":"123418","lastModified":"1301903065000","name":"Spencer Duru","type":"Person","_key":"66813"} +{"label":"Brian Lavery","version":20,"id":"123419","lastModified":"1301902914000","name":"Brian Lavery","type":"Person","_key":"66814"} +{"label":"Melanie Mahabir","version":20,"id":"123420","lastModified":"1301902914000","name":"Melanie Mahabir","type":"Person","_key":"66815"} +{"label":"Samantha Parry","version":20,"id":"123421","lastModified":"1301902914000","name":"Samantha Parry","type":"Person","_key":"66816"} +{"label":"Fransesco San Juan","version":20,"id":"123422","lastModified":"1301902914000","name":"Fransesco San Juan","type":"Person","_key":"66817"} +{"label":"Gladys San Juan","version":21,"id":"123423","lastModified":"1301903065000","name":"Gladys San Juan","type":"Person","_key":"66818"} +{"label":"Daniel Tyler-Smith","version":21,"id":"123424","lastModified":"1301903073000","name":"Daniel Tyler-Smith","type":"Person","_key":"66819"} +{"label":"Carli Vallance","version":21,"id":"123425","lastModified":"1301903073000","name":"Carli Vallance","type":"Person","_key":"66820"} +{"label":"Ivan Wilkinson","version":20,"id":"123426","lastModified":"1301902914000","name":"Ivan Wilkinson","type":"Person","_key":"66821"} +{"label":"Matthew Cunningham","version":21,"id":"123427","lastModified":"1301903079000","name":"Matthew Cunningham","type":"Person","_key":"66822"} +{"label":"Greg Draven","version":21,"id":"123428","lastModified":"1301903079000","name":"Greg Draven","type":"Person","_key":"66823"} +{"label":"Chris Bouchard","version":21,"id":"84286","lastModified":"1301902031000","name":"Chris Bouchard","type":"Person","_key":"66824"} +{"label":"Daylight Robbery","description":"Alex masterminds an ambitious plan to steal millions of untraceable cash that is stacked in the underground vaults of The London Exchange Bank, waiting for its last journey, Incineration. Lucky, Matty, Terry, Chubby, Norman and Jay make up his unlikely gang of robbers. Setting up their alibi, the gang check in for a flight and join in with thousands of England supporters that are part of a mass exodus to The World Cup Tournament in Germany.","id":"17635","runtime":90,"imdbId":"tt0893401","version":150,"lastModified":"1301904825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50f\/4bc95023017a3c57fe02350f\/daylight-robbery-mid.jpg","genre":"Crime","title":"Daylight Robbery","releaseDate":1219968000000,"language":"en","tagline":"7 Men..1 Bank..90 Minutes..THE FUSE IS LIT","type":"Movie","_key":"66825"} +{"label":"Paris Leonti","version":8,"id":"227333","lastModified":"1301904021000","name":"Paris Leonti","type":"Person","_key":"66826"} +{"label":"Baby Einstein - Meet the Orchestra - First Instruments","description":"Adults may think it's too early to teach a baby the difference between a trumpet and a bugle, but Baby Einstein: Meet the Orchestra--First Instruments entertains children with its next music installment. Relying on its tried-and-true formula of bright colors, quick-paced format, and almost no dialogue except to repeat names and identify groups by section: brass, woodwinds, strings, and so forth.","id":"17636","runtime":41,"imdbId":"tt0810023","version":83,"lastModified":"1301905263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/518\/4bc95026017a3c57fe023518\/baby-einstein-meet-the-orchestra-first-instruments-mid.jpg","genre":"Family","title":"Baby Einstein - Meet the Orchestra - First Instruments","releaseDate":1141689600000,"language":"en","type":"Movie","_key":"66827"} +{"label":"Untamed","description":"When the great potato famine hits Ireland, the diaspora begins as thousands emigrate. Among those leaving the Emerald Isle is Katie O'Neill and her husband, who decide that the promised land is South Africa and make their way there. Once there, they discover the hardships that are the reality of the homesteader experience.","id":"17637","runtime":0,"imdbId":"tt0048767","version":104,"lastModified":"1301907308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/499\/4ca5f1777b9aa16eda000499\/untamed-mid.jpg","genre":"Action","title":"Untamed","releaseDate":-468288000000,"language":"en","type":"Movie","_key":"66828"} +{"label":"Richard Egan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0f9\/4c2b52747b9aa15e9a0000f9\/richard-egan-profile.jpg","version":40,"id":"93105","lastModified":"1301901606000","name":"Richard Egan","type":"Person","_key":"66829"} +{"label":"Hope Emerson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4bd5c4ce017a3c6580000029\/hope-emerson-profile.jpg","version":29,"id":"85449","lastModified":"1301902191000","name":"Hope Emerson","type":"Person","_key":"66830"} +{"label":"Trial by Fire","description":"No overview found.","id":"17638","runtime":93,"imdbId":"tt1068282","version":47,"lastModified":"1301908581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/525\/4bc95027017a3c57fe023525\/trial-by-fire-mid.jpg","studio":"Deep In Productions","title":"Trial by Fire","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"66831"} +{"label":"Silent Night","description":"Fact-based World War II story set on Christmas Eve, 1944, finds a German Mother and her son seeking refuge in a cabin on the war front. When she is invaded by three American soldiers and then three German soldiers, she successfully convinces the soldiers to put aside their differences for one evening and share a Christmas dinner.","id":"17639","runtime":100,"imdbId":"tt0338434","version":332,"lastModified":"1301418281000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e6\/4cf47ba87b9aa149c90008e6\/silent-night-mid.jpg","studio":"Hallmark Productions","genre":"Drama","title":"Silent Night","releaseDate":1039824000000,"language":"en","type":"Movie","_key":"66832"} +{"label":"Mark Antony Krupa","version":19,"id":"131336","lastModified":"1301902517000","name":"Mark Antony Krupa","type":"Person","_key":"66833"} +{"label":"It's Always Fair Weather","description":"Three World War II buddies promise to meet at a specified place and time 10 years after the war. They keep their word only to discover how far apart they've grown. But the reunion sparks memories of youthful dreams that haven't been fulfilled -- and slowly, the three men reevaluate their lives and try to find a way to renew their friendship.","id":"17640","runtime":102,"imdbId":"tt0048216","version":103,"lastModified":"1301906768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52e\/4bc95027017a3c57fe02352e\/it-s-always-fair-weather-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Musical","title":"It's Always Fair Weather","releaseDate":-470016000000,"language":"en","type":"Movie","_key":"66834"} +{"label":"Dan Dailey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08e\/4c49b1777b9aa1160100008e\/dan-dailey-profile.jpg","version":24,"id":"82129","lastModified":"1301902507000","name":"Dan Dailey","type":"Person","_key":"66835"} +{"label":"Cyd Charisse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac6\/4be5da07017a3c35bf000ac6\/cyd-charisse-profile.jpg","version":37,"id":"41226","lastModified":"1301901361000","name":"Cyd Charisse","type":"Person","_key":"66836"} +{"label":"Michael Kidd","version":20,"id":"82130","lastModified":"1301902324000","name":"Michael Kidd","type":"Person","_key":"66837"} +{"label":"National Velvet","description":"Mi Taylor was a young wanderer and opportunist whose father had given him \"all the roads in the Kingdom\" to travel. One of the roads, and a notation in his father's journal, leads him to the quiet English country-side home of the Brown family. The youngest daughter, Velvet, has a passion for horses and when she wins the spirited steed Pie in a town lottery, Mi is encouraged to train the horse...","id":"17641","runtime":123,"imdbId":"tt0037120","trailer":"http:\/\/www.youtube.com\/watch?v=4NYsONLJUTQ","version":233,"lastModified":"1301905734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53b\/4bc95029017a3c57fe02353b\/national-velvet-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"National Velvet","releaseDate":-786758400000,"language":"en","type":"Movie","_key":"66838"} +{"label":"Clarence Brown","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5d6\/4c5ada8a7b9aa151f20005d6\/clarence-brown-profile.jpg","version":37,"id":"84034","lastModified":"1301902211000","name":"Clarence Brown","type":"Person","_key":"66839"} +{"label":"The Leopard Son","description":"The true story of the birth, growth and coming of age of a leopard cub in Africa's Serengeti plain. The journey of \"The Leopard Son\" begins at his mother's side where he discovers, through play, essential skills for survival in the wild. As it is with humans, there inevitably comes the day when a child must leave his mother to go out on his own.","id":"17642","runtime":87,"imdbId":"tt0116859","version":52,"lastModified":"1301908525000","studio":"Discovery Channel Productions","title":"The Leopard Son","releaseDate":843782400000,"language":"en","type":"Movie","_key":"66840"} +{"label":"Barney Songs","description":"No overview found.","id":"17643","runtime":47,"version":89,"lastModified":"1301908267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/540\/4bc95029017a3c57fe023540\/barney-songs-mid.jpg","title":"Barney Songs","releaseDate":694224000000,"language":"en","type":"Movie","_key":"66841"} +{"label":"Barney's Great Adventure","description":"No overview found.","id":"17644","runtime":76,"imdbId":"tt0120598","version":144,"lastModified":"1301907088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/545\/4bc95029017a3c57fe023545\/barney-s-great-adventure-mid.jpg","title":"Barney's Great Adventure","releaseDate":883612800000,"language":"en","type":"Movie","_key":"66842"} +{"label":"Leave Her to Heaven","description":"A young novelist, Richard Harland, meets beautiful Ellen Berent on a train where they fall in love and are soon married. When tragedies take first his handicapped young brother, then his unborn son from him, Harland gradually realises that his wife's insane jealousy may be the cause of the tragedies in his life. Yet another shock awaits them all, as Ellen's emotions become uncontrollable.","id":"17645","runtime":110,"imdbId":"tt0037865","version":152,"lastModified":"1301904773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/557\/4bc9502a017a3c57fe023557\/leave-her-to-heaven-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Drama","title":"Leave Her to Heaven","releaseDate":-758505600000,"language":"en","type":"Movie","_key":"66843"} +{"label":"Jeanne Crain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3da\/4be03729017a3c35b70003da\/jeanne-crain-profile.jpg","version":29,"id":"82170","lastModified":"1301901366000","name":"Jeanne Crain","type":"Person","_key":"66844"} +{"label":"Reed Hadley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/077\/4bf5986f017a3c7730000077\/reed-hadley-profile.jpg","version":37,"id":"34046","lastModified":"1301901685000","name":"Reed Hadley","type":"Person","_key":"66845"} +{"label":"John M. Stahl","version":23,"id":"82171","lastModified":"1301901856000","name":"John M. Stahl","type":"Person","_key":"66846"} +{"label":"Oasis:... There and Then","description":"Oasis was on top of the world during the mid 1990's. This video captures the band playing the largest European indoor gig ever at Earls Court, London England November 4th and 5th 1995. Also featured in the video are tracks from Oasis' largest headlining gig of the (What's the Story) Morning Glory? tour at Maine Road football stadium in Manchester England on April 28th 1996.","id":"17646","runtime":85,"imdbId":"tt0168101","version":310,"lastModified":"1301904224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/568\/4bc9502e017a3c57fe023568\/oasis-there-and-then-mid.jpg","genre":"Musical","title":"Oasis:... There and Then","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66847"} +{"label":"Liam Gallagher","version":26,"id":"82990","lastModified":"1301904135000","name":"Liam Gallagher","type":"Person","_key":"66848"} +{"label":"Noel Gallagher","version":23,"id":"1110","lastModified":"1299492489000","name":"Noel Gallagher","type":"Person","_key":"66849"} +{"label":"Alan White","version":21,"id":"82991","lastModified":"1301901862000","name":"Alan White","type":"Person","_key":"66850"} +{"label":"Paul Arthurs","version":19,"id":"82992","lastModified":"1301902063000","name":"Paul Arthurs","type":"Person","_key":"66851"} +{"label":"Paul McGuigan","version":19,"id":"82993","lastModified":"1301902456000","name":"Paul McGuigan","type":"Person","_key":"66852"} +{"label":"Dora the Explorer - Summer Explorer","description":"No overview found.","id":"17647","runtime":0,"version":56,"lastModified":"1300980464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/571\/4bc9502e017a3c57fe023571\/dora-the-explorer-summer-explorer-mid.jpg","title":"Dora the Explorer - Summer Explorer","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66853"} +{"label":"Dora the Explorer - Dora Saves the Mermaids","description":"Dora Saves the Mermaid features a double length direct-to-video episode and two new to DVD episodes. In this release Dora and Boots take preschoolers on exciting under water adventures to help save the mermaid\u2019s kingdom, travel to the bottom of the ocean and find a hidden treasure chest on Treasure Island!","id":"17648","runtime":30,"imdbId":"tt0235917","version":199,"lastModified":"1301904439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/582\/4bc9502f017a3c57fe023582\/dora-the-explorer-dora-saves-the-mermaids-mid.jpg","genre":"Animation","title":"Dora the Explorer - Dora Saves the Mermaids","releaseDate":1190678400000,"language":"en","type":"Movie","_key":"66854"} +{"label":"My Little Pony - Pinkie Pie's Special Day","description":"No overview found.","id":"17649","runtime":0,"version":20,"lastModified":"1300980464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/587\/4bc9502f017a3c57fe023587\/my-little-pony-pinkie-pie-s-special-day-mid.jpg","title":"My Little Pony - Pinkie Pie's Special Day","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66855"} +{"label":"Barney Songs from the Park","description":"No overview found.","id":"17650","runtime":45,"imdbId":"tt0878099","version":309,"lastModified":"1301905666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58c\/4bc9502f017a3c57fe02358c\/barney-songs-from-the-park-mid.jpg","genre":"Family","title":"Barney Songs from the Park","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66856"} +{"label":"Poster Boy","description":"The gay son of a powerful right-wing Senator has finally come out\u2026but only at his college. His father\u2019s campaign is threatened when his son\u2019s secret is revealed.","id":"17651","runtime":0,"imdbId":"tt0297389","version":248,"lastModified":"1301904087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/595\/4bc95033017a3c57fe023595\/poster-boy-mid.jpg","genre":"Comedy","title":"Poster Boy","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"66857"} +{"label":"Matthew Newton","version":20,"id":"26061","lastModified":"1301902173000","name":"Matthew Newton","type":"Person","_key":"66858"} +{"label":"The Dark Side of the Rainbow","description":"Pink Floyd's Dark Side of the Moon album synced with The Wizard of Oz.","id":"17652","runtime":102,"version":32,"lastModified":"1301904692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/221\/4c9e87375e73d6704a000221\/the-dark-side-of-the-rainbow-mid.jpg","title":"The Dark Side of the Rainbow","releaseDate":-978307200000,"language":"en","type":"Movie","_key":"66859"} +{"label":"The Legend of Fong Sai-Yuk","description":"This Hong Kong martial-arts extravaganza tells of evil emperors and true love. The secret Red Lotus Flower Society is committed to the overthrow of the evil Manchu Emperor and his minions. One of his Governors is sent on a mission to retrieve a list of members of that secret society. Meanwhile, Canton kung fu practitioner Fong Sai-Yuk falls in love with the beautiful daughter of a rich merchant.","id":"17653","runtime":106,"imdbId":"tt0106936","trailer":"http:\/\/www.youtube.com\/watch?v=1168","version":278,"lastModified":"1301904432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b3\/4bc95035017a3c57fe0235b3\/fong-sai-yuk-mid.jpg","studio":"Eastern Productions","genre":"Action","title":"The Legend of Fong Sai-Yuk","releaseDate":731203200000,"language":"en","type":"Movie","_key":"66860"} +{"label":"Josephine Siao","version":25,"id":"82177","lastModified":"1301901684000","name":"Josephine Siao","type":"Person","_key":"66861"} +{"label":"Sung Young Chen","version":21,"id":"82399","lastModified":"1301901980000","name":"Sung Young Chen","type":"Person","_key":"66862"} +{"label":"Man Cheuk Chiu","version":26,"id":"82400","lastModified":"1301901776000","name":"Man Cheuk Chiu","type":"Person","_key":"66863"} +{"label":"Lung Chan","version":23,"id":"82178","lastModified":"1301902376000","name":"Lung Chan","type":"Person","_key":"66864"} +{"label":"Adam Cheng","version":33,"id":"82401","lastModified":"1301901980000","name":"Adam Cheng","type":"Person","_key":"66865"} +{"label":"District 9","description":"Aliens land in South Africa and have no way home. Years later after living in a slum and wearing out their welcome the \"Non-Humans\" are being moved to a new tent city overseen by Multi-National United (MNU). The movie follows an MNU employee tasked with leading the relocation and his relationship with one of the alien leaders.","id":"17654","runtime":112,"imdbId":"tt1136608","trailer":"http:\/\/www.youtube.com\/watch?v=d6PDlMggROA","homepage":"http:\/\/www.d-9.com\/","version":629,"lastModified":"1301900824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eec\/4d2648c85e73d626c4000eec\/district-9-mid.jpg","studio":"Tristar Pictures","genre":"Drama","title":"District 9","releaseDate":1250121600000,"language":"en","tagline":"You are not welcome here.","type":"Movie","_key":"66866"} +{"label":"Sharlto Copley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/006\/4c17ea5f5e73d67562000006\/sharlto-copley-profile.jpg","version":52,"id":"82191","lastModified":"1302233270000","name":"Sharlto Copley","type":"Person","_key":"66867"} +{"label":"Jason Cope","version":36,"id":"82193","lastModified":"1302233270000","name":"Jason Cope","type":"Person","_key":"66868"} +{"label":"Vanessa Haywood","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/157\/4d24e9d95e73d626bc000157\/vanessa-haywood-profile.jpg","version":31,"id":"82192","lastModified":"1302233270000","name":"Vanessa Haywood","type":"Person","_key":"66869"} +{"label":"Neill Blomkamp","version":43,"id":"82194","lastModified":"1302233270000","name":"Neill Blomkamp","type":"Person","_key":"66870"} +{"label":"Ice Station Zebra","description":"A top-secret Soviet spy satellite -- using stolen Western technology -- malfunctions and then goes into a descent that lands it near an isolated Arctic research encampment called Ice Station Zebra, belonging to the British, which starts sending out distress signals before falling silent. The atomic submarine Tigerfish, commanded by Cmdr. James Ferraday (Rock Hudson), is dispatched to save them.","id":"17657","runtime":148,"imdbId":"tt0063121","trailer":"http:\/\/www.youtube.com\/watch?v=Du7ls7v2uYQ","version":236,"lastModified":"1301902757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f2\/4bc9503f017a3c57fe0235f2\/ice-station-zebra-mid.jpg","studio":"Filmways Pictures","genre":"Action","title":"Ice Station Zebra","releaseDate":-37584000000,"language":"en","type":"Movie","_key":"66871"} +{"label":"Je l'aimais","description":"One night, Pierre decides to reveal his painful secret to his daughter-in-law, who's just been abandoned by her husband. Pierre's secret is about his secret love to Mathilde, the woman he left to instead follow an easier path in life.","id":"17658","runtime":112,"imdbId":"tt1258141","version":111,"lastModified":"1301908280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4bc95042017a3c57fe023607\/je-l-aimais-mid.jpg","studio":"SND","genre":"Drama","title":"Je l'aimais","releaseDate":1241568000000,"language":"en","type":"Movie","_key":"66872"} +{"label":"Olivia Ross","version":19,"id":"82183","lastModified":"1301901862000","name":"Olivia Ross","type":"Person","_key":"66873"} +{"label":"Commis d'office","description":"No overview found.","id":"17659","runtime":91,"imdbId":"tt1179836","homepage":"http:\/\/www.commisdoffice-lefilm.com\/","version":57,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/618\/4bc95044017a3c57fe023618\/commis-d-office-mid.jpg","studio":"Bac Films","genre":"Thriller","title":"Commis d'office","releaseDate":1241568000000,"language":"en","type":"Movie","_key":"66874"} +{"label":"Hannelore Cayre","version":20,"id":"82184","lastModified":"1301902456000","name":"Hannelore Cayre","type":"Person","_key":"66875"} +{"label":"Sophie Guillemin","version":31,"id":"67902","lastModified":"1302234487000","name":"Sophie Guillemin","type":"Person","_key":"66876"} +{"label":"Jean-Pierre Martins","version":30,"id":"82188","lastModified":"1301901434000","name":"Jean-Pierre Martins","type":"Person","_key":"66877"} +{"label":"Dodge City","description":"Michael Curtiz's epic Western stars Errol Flynn as Wade Hatton, a wagon master turned sheriff who tames a cow town at the end of a railroad line.","id":"17660","runtime":104,"imdbId":"tt0031235","version":242,"lastModified":"1301416908000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/625\/4bc95045017a3c57fe023625\/dodge-city-mid.jpg","studio":"Warner Bros. Pictures","genre":"Western","title":"Dodge City","releaseDate":-970531200000,"language":"en","type":"Movie","_key":"66878"} +{"label":"Going My Way","description":"Youthful Father Chuck O'Malley (Bing Crosby) led a colourful life of sports, song, and romance before joining the Roman Catholic clergy. After being appointed to a run-down New York parish , O'Malley's worldly knowledge helps him connect with a gang of boys looking for direction, eventually winning over the aging, conventional Parish priest (Barry Fitzgerald).","id":"17661","runtime":130,"imdbId":"tt0036872","trailer":"http:\/\/www.youtube.com\/watch?v=UZ-clrkwsGM","version":116,"lastModified":"1301903638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62e\/4bc9504a017a3c57fe02362e\/going-my-way-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"Going My Way","releaseDate":-809913600000,"language":"en","type":"Movie","_key":"66879"} +{"label":"Anne of Green Gables","description":"At the turn of the century on Prince Edward Island, Matthew Cuthbert and his sister Marilla decide to take on an orphan boy as help for their farm. But they get an unexpected jolt when they're mistakenly sent a girl instead: Anne Shirley. Anne's a dreamer with an unusual point of view, far removed from Marilla's pragmatic ways, and it's only on trial that Marilla agrees to keep Anne.","id":"17663","runtime":199,"imdbId":"tt0088727","version":161,"lastModified":"1301904804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/076\/4c393d185e73d671d3000076\/anne-of-green-gables-mid.jpg","genre":"Drama","title":"Anne of Green Gables","releaseDate":508982400000,"language":"en","type":"Movie","_key":"66880"} +{"label":"The Horse Soldiers","description":"A Union Cavalry outfit is sent behind confederate lines in strength to destroy a rail\/supply centre. Along with them is sent a doctor who causes instant antipathy between him and the commander. The secret plan for the mission is overheard by a southern belle who must be taken along to assure her silence.","id":"17664","runtime":115,"imdbId":"tt0052902","version":158,"lastModified":"1301902792000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/64a\/4bc9504c017a3c57fe02364a\/the-horse-soldiers-mid.jpg","studio":"The Mirisch Corporation","genre":"Action","title":"The Horse Soldiers","releaseDate":-333158400000,"language":"en","type":"Movie","_key":"66881"} +{"label":"Judson Pratt","version":23,"id":"82189","lastModified":"1301902455000","name":"Judson Pratt","type":"Person","_key":"66882"} +{"label":"The Shoes of the Fisherman","description":"No overview found.","id":"17665","runtime":156,"imdbId":"tt0063599","trailer":"http:\/\/www.youtube.com\/watch?v=ngN2y6i_SOc","version":198,"lastModified":"1301906066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0cf\/4c5110687b9aa13d4e0000cf\/the-shoes-of-the-fisherman-mid.jpg","genre":"Drama","title":"The Shoes of the Fisherman","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"66883"} +{"label":"Beat Street","description":"An aspiring DJ, from the South Bronx, and his best friend, a promoter, try to get into show business by exposing people to hip-hop music and culture.","id":"17667","runtime":105,"imdbId":"tt0086946","version":321,"lastModified":"1301903472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/663\/4bc9504e017a3c57fe023663\/beat-street-mid.png","genre":"Drama","title":"Beat Street","releaseDate":455500800000,"language":"en","type":"Movie","_key":"66884"} +{"label":"Stan Lathan","version":24,"id":"60473","lastModified":"1301901614000","name":"Stan Lathan","type":"Person","_key":"66885"} +{"label":"Guy Davis","version":19,"id":"82217","lastModified":"1301901862000","name":"Guy Davis","type":"Person","_key":"66886"} +{"label":"Jon Chardiet","version":19,"id":"82218","lastModified":"1301901717000","name":"Jon Chardiet","type":"Person","_key":"66887"} +{"label":"Ben Harper: Pleasure and Pain","description":"Documentary on roots rocker Ben Harper and his band, the Innocent Criminals - featuring music from his album \"Pleasure and Pain\".","id":"17668","runtime":89,"imdbId":"tt0344212","version":165,"lastModified":"1301420058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/668\/4bc95050017a3c57fe023668\/ben-harper-pleasure-and-pain-mid.jpg","genre":"Documentary","title":"Ben Harper: Pleasure and Pain","releaseDate":1037232000000,"language":"en","type":"Movie","_key":"66888"} +{"label":"Danny Clinch","version":21,"id":"82200","lastModified":"1301902467000","name":"Danny Clinch","type":"Person","_key":"66889"} +{"label":"Ben Harper","version":24,"id":"82205","lastModified":"1301902516000","name":"Ben Harper","type":"Person","_key":"66890"} +{"label":"Dean Butterworth","version":19,"id":"82207","lastModified":"1301902455000","name":"Dean Butterworth","type":"Person","_key":"66891"} +{"label":"Juan D. Nelson","version":19,"id":"82208","lastModified":"1301902455000","name":"Juan D. Nelson","type":"Person","_key":"66892"} +{"label":"Juan D. Nelson","version":19,"id":"82209","lastModified":"1301902455000","name":"Juan D. Nelson","type":"Person","_key":"66893"} +{"label":"Ellen Verdries Chase Harper","version":19,"id":"82210","lastModified":"1301902455000","name":"Ellen Verdries Chase Harper","type":"Person","_key":"66894"} +{"label":"Charles Chase","version":19,"id":"82211","lastModified":"1301902455000","name":"Charles Chase","type":"Person","_key":"66895"} +{"label":"Dorothy Chase","version":19,"id":"82212","lastModified":"1301902455000","name":"Dorothy Chase","type":"Person","_key":"66896"} +{"label":"Christopher 'Evil Vince' May","version":19,"id":"82213","lastModified":"1301902455000","name":"Christopher 'Evil Vince' May","type":"Person","_key":"66897"} +{"label":"Scott Cadwallader","version":19,"id":"82214","lastModified":"1301902455000","name":"Scott Cadwallader","type":"Person","_key":"66898"} +{"label":"Oliver Darbois","version":19,"id":"82215","lastModified":"1301902455000","name":"Oliver Darbois","type":"Person","_key":"66899"} +{"label":"The Last Templar","description":"An adaptation of Raymond Khoury's novel about a New York archaeologist researching the lost secrets of the medieval Knights Templar","id":"17669","runtime":120,"imdbId":"tt1197580","trailer":"http:\/\/www.youtube.com\/watch?v=fwXdHej3B-o","version":186,"lastModified":"1301906475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/675\/4bc95050017a3c57fe023675\/the-last-templar-mid.jpg","genre":"Drama","title":"The Last Templar","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"66900"} +{"label":"Anthony Lemke","version":24,"id":"44098","lastModified":"1301901648000","name":"Anthony Lemke","type":"Person","_key":"66901"} +{"label":"Rebecca Windheim","version":23,"id":"113891","lastModified":"1301902631000","name":"Rebecca Windheim","type":"Person","_key":"66902"} +{"label":"Paul-Antoine Taillefer","version":23,"id":"113892","lastModified":"1301902631000","name":"Paul-Antoine Taillefer","type":"Person","_key":"66903"} +{"label":"Christian Grenier","version":23,"id":"113893","lastModified":"1301902631000","name":"Christian Grenier","type":"Person","_key":"66904"} +{"label":"Mario Davignon","version":23,"id":"113894","lastModified":"1301902631000","name":"Mario Davignon","type":"Person","_key":"66905"} +{"label":"Adam Bramble","version":23,"id":"113895","lastModified":"1301902631000","name":"Adam Bramble","type":"Person","_key":"66906"} +{"label":"Danny Blanco Hall","version":23,"id":"105499","lastModified":"1301902312000","name":"Danny Blanco Hall","type":"Person","_key":"66907"} +{"label":"Paolo Barzman","version":26,"id":"113889","lastModified":"1301902949000","name":"Paolo Barzman","type":"Person","_key":"66908"} +{"label":"Ben Harper and the Innocent Criminals: Live at the Hollywood Bowl","description":"Ben Harper playing with the Innocent Criminals at the Hollywood Bowl in 2003","id":"17670","runtime":113,"imdbId":"tt0470115","version":75,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/683\/4bc95051017a3c57fe023683\/ben-harper-and-the-innocent-criminals-live-at-the-hollywood-bowl-mid.jpg","studio":"Virgin Records America","genre":"Musical","title":"Ben Harper and the Innocent Criminals: Live at the Hollywood Bowl","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"66909"} +{"label":"Oliver Charles","version":19,"id":"82230","lastModified":"1301902455000","name":"Oliver Charles","type":"Person","_key":"66910"} +{"label":"Juan Nelson","version":19,"id":"82228","lastModified":"1301902237000","name":"Juan Nelson","type":"Person","_key":"66911"} +{"label":"Marc Ford","version":19,"id":"82229","lastModified":"1301902455000","name":"Marc Ford","type":"Person","_key":"66912"} +{"label":"Leon Mobley","version":19,"id":"82231","lastModified":"1301902455000","name":"Leon Mobley","type":"Person","_key":"66913"} +{"label":"Jason Yates","version":20,"id":"82232","lastModified":"1301902486000","name":"Jason Yates","type":"Person","_key":"66914"} +{"label":"Jeremy Nelson","version":19,"id":"82233","lastModified":"1301902237000","name":"Jeremy Nelson","type":"Person","_key":"66915"} +{"label":"Fleetwood Mac - The Dance","description":"The long-awaited reunion of the \"Rumours\" version of Fleetwood Mac. At this live MTV concert, they perform their greatest hits, and a few new songs. The classic songs performed on this special are: \"Rhiannon\", \"Everywhere\", \"Dreams\", \"Don't Stop\", and \"Landslide\".","id":"17671","runtime":90,"imdbId":"tt0123073","version":234,"lastModified":"1301419432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68c\/4bc95055017a3c57fe02368c\/fleetwood-mac-the-dance-mid.jpg","studio":"MTV Concerts","genre":"Documentary","title":"Fleetwood Mac - The Dance","releaseDate":871344000000,"language":"en","type":"Movie","_key":"66916"} +{"label":"Lindsey Buckingham","version":20,"id":"82240","lastModified":"1301902237000","name":"Lindsey Buckingham","type":"Person","_key":"66917"} +{"label":"Christine McVie","version":20,"id":"82241","lastModified":"1301902455000","name":"Christine McVie","type":"Person","_key":"66918"} +{"label":"Stevie Nicks","version":22,"id":"82242","lastModified":"1301902455000","name":"Stevie Nicks","type":"Person","_key":"66919"} +{"label":"John McVie","version":20,"id":"82243","lastModified":"1301902455000","name":"John McVie","type":"Person","_key":"66920"} +{"label":"John Fogerty: The Long Road Home in Concert","description":"John Fogerty performing solo on his \"Long Road Home\" Tour.","id":"17672","runtime":98,"imdbId":"tt0823181","version":74,"lastModified":"1301908593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/691\/4bc95056017a3c57fe023691\/john-fogerty-the-long-road-home-in-concert-mid.jpg","studio":"Parallel 28 Equip","genre":"Musical","title":"John Fogerty: The Long Road Home in Concert","releaseDate":1129161600000,"language":"en","type":"Movie","_key":"66921"} +{"label":"Martyn Atkins","version":21,"id":"82244","lastModified":"1301902360000","name":"Martyn Atkins","type":"Person","_key":"66922"} +{"label":"John Fogerty","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/be5\/4cbb9c4e5e73d67785000be5\/john-fogerty-profile.jpg","version":27,"id":"72860","lastModified":"1301901646000","name":"John Fogerty","type":"Person","_key":"66923"} +{"label":"Neil Diamond: Greatest Hits Live","description":"Neil Diamond performing his greatest hits at the Aquarius Theatre in Los Angeles, California.","id":"17673","runtime":60,"imdbId":"tt0168093","version":96,"lastModified":"1301905621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/696\/4bc95056017a3c57fe023696\/neil-diamond-greatest-hits-live-mid.jpg","studio":"Arch Angel Television Productions","genre":"Documentary","title":"Neil Diamond: Greatest Hits Live","releaseDate":583632000000,"language":"en","type":"Movie","_key":"66924"} +{"label":"Richard Rodney Bennett","version":38,"id":"10724","lastModified":"1301901446000","name":"Richard Rodney Bennett","type":"Person","_key":"66925"} +{"label":"Vince Charles","version":19,"id":"82248","lastModified":"1301902455000","name":"Vince Charles","type":"Person","_key":"66926"} +{"label":"King Errisson","version":19,"id":"82249","lastModified":"1301902455000","name":"King Errisson","type":"Person","_key":"66927"} +{"label":"Tom Hensley","version":19,"id":"82250","lastModified":"1301902455000","name":"Tom Hensley","type":"Person","_key":"66928"} +{"label":"Alan E. Lindgren","version":19,"id":"82251","lastModified":"1301902455000","name":"Alan E. Lindgren","type":"Person","_key":"66929"} +{"label":"Linda Press","version":19,"id":"82252","lastModified":"1301902455000","name":"Linda Press","type":"Person","_key":"66930"} +{"label":"Reinie Press","version":19,"id":"82253","lastModified":"1301902455000","name":"Reinie Press","type":"Person","_key":"66931"} +{"label":"Doug Rhone","version":19,"id":"82254","lastModified":"1301902455000","name":"Doug Rhone","type":"Person","_key":"66932"} +{"label":"Dwight Hemion","version":24,"id":"79469","lastModified":"1301901864000","name":"Dwight Hemion","type":"Person","_key":"66933"} +{"label":"Peter Israelson","version":20,"id":"82255","lastModified":"1301902208000","name":"Peter Israelson","type":"Person","_key":"66934"} +{"label":"Roy Orbison and Friends: A Black and White Night","description":"Singer Roy Orbison performs with such musicians as Bruce Springsteen and Tom Waits, among others, in a 1940s-type nightclub setting.","id":"17674","runtime":64,"imdbId":"tt0500183","version":397,"lastModified":"1301905263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69f\/4bc95057017a3c57fe02369f\/roy-orbison-and-friends-a-black-and-white-night-mid.jpg","genre":"Musical","title":"Roy Orbison and Friends: A Black and White Night","releaseDate":595209600000,"language":"en","type":"Movie","_key":"66935"} +{"label":"Jackson Browne","version":19,"id":"14397","lastModified":"1301901697000","name":"Jackson Browne","type":"Person","_key":"66936"} +{"label":"T-Bone Burnett","version":25,"id":"1483","lastModified":"1299898805000","name":"T-Bone Burnett","type":"Person","_key":"66937"} +{"label":"J. Steven Soles","version":19,"id":"82271","lastModified":"1301902455000","name":"J. Steven Soles","type":"Person","_key":"66938"} +{"label":"Bonnie Raitt","version":22,"id":"82270","lastModified":"1301901862000","name":"Bonnie Raitt","type":"Person","_key":"66939"} +{"label":"Bruce Springsteen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd8\/4d0daf965e73d63713000fd8\/bruce-springsteen-profile.jpg","biography":"Bruce Springsteen released his first album in 1973, but it was his second album, <i>The Wild, The Innocent & The E Street Shuffle<\/i> in 1974 that led a rock critic to call him \"the future of rock'n'roll.\" A year later Springsteen released <i>Born to Run<\/i> to critical and popular success, and he was a bona fide rock star, nicknamed \"The Boss.\" In the '80s he released <i>The River<\/i> to huge success, and his 1984 album, <i>Born in the U.S.A.<\/i>\n was on top of the charts for seven weeks. I","version":39,"birthday":"-639799200000","id":"3284","birthplace":"Freehold, New Jersey, USA","lastModified":"1301901226000","name":"Bruce Springsteen","type":"Person","_key":"66940"} +{"label":"J.D. Souther","version":20,"id":"82272","lastModified":"1301902174000","name":"J.D. Souther","type":"Person","_key":"66941"} +{"label":"Jennifer Warnes","version":19,"id":"82273","lastModified":"1301902237000","name":"Jennifer Warnes","type":"Person","_key":"66942"} +{"label":"Alex Acuna","version":19,"id":"82274","lastModified":"1301902063000","name":"Alex Acuna","type":"Person","_key":"66943"} +{"label":"Glen D. Hardin","version":19,"id":"82276","lastModified":"1301902237000","name":"Glen D. Hardin","type":"Person","_key":"66944"} +{"label":"James Burton","version":19,"id":"82275","lastModified":"1301902455000","name":"James Burton","type":"Person","_key":"66945"} +{"label":"Jerry Scheff","version":19,"id":"82277","lastModified":"1301902455000","name":"Jerry Scheff","type":"Person","_key":"66946"} +{"label":"Ronnie Tutt","version":19,"id":"82278","lastModified":"1301902455000","name":"Ronnie Tutt","type":"Person","_key":"66947"} +{"label":"Mike Utley","version":19,"id":"82279","lastModified":"1301901862000","name":"Mike Utley","type":"Person","_key":"66948"} +{"label":"K.D. Lang","version":19,"id":"108988","lastModified":"1301902131000","name":"K.D. Lang","type":"Person","_key":"66949"} +{"label":"Idol Country","description":"No overview found.","id":"17675","runtime":0,"version":312,"lastModified":"1302239214000","title":"Idol Country","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66950"} +{"label":"The Five Pennies","description":"The musical biopic of jazz great Red Nichols features a healthy dose of melodrama along with the melodies. As the famed Dixieland cornetist, he runs into opposition to his sound, but breaks through to success. He marries a warm, patient woman (Bel Geddes) and even finds time to raise a family. Then tragedy strikes when their daughter contracts polio. The jazzman puts down his horn to stand by her.","id":"17677","runtime":117,"imdbId":"tt0052809","version":145,"lastModified":"1301905219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a8\/4bc95058017a3c57fe0236a8\/the-five-pennies-mid.jpg","studio":"Paramount Pictures","genre":"Drama","title":"The Five Pennies","releaseDate":-332640000000,"language":"en","type":"Movie","_key":"66951"} +{"label":"Ghost Rider Goes Crazy In Europe","description":"With the Swedish police on his tail the Ghost Rider takes to the streets for another insane mission. Reaching speeds of at 200mph, the authorities have little hope of catching him. Over three hours of pure adrenaline!","id":"17678","runtime":180,"homepage":"http:\/\/www.ghostridermovie.net","version":82,"lastModified":"1300980469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ad\/4bc95059017a3c57fe0236ad\/ghost-rider-3-goes-crazy-in-europe-mid.jpg","studio":"Team Ghost Rider","genre":"Sports Film","title":"Ghost Rider Goes Crazy In Europe","releaseDate":1160352000000,"language":"en","type":"Movie","_key":"66952"} +{"label":"Ghost Rider","version":18,"id":"114851","lastModified":"1301902324000","name":"Ghost Rider","type":"Person","_key":"66953"} +{"label":"The Murder Room","description":"London's Dupayne Museum is in danger of closing since one of the trustees feels that the money expended on preserving the past could be better spent addressing the problems of living people. One of the museum's collections concerns murders committed between the world wars. When a killing that reflects one of the cases on display occurs, history seems to be repeating itself.","id":"17679","runtime":180,"imdbId":"tt0432327","version":204,"lastModified":"1301904939000","genre":"Crime","title":"The Murder Room","releaseDate":1099180800000,"language":"en","type":"Movie","_key":"66954"} +{"label":"Janie Dee","version":16,"id":"143170","lastModified":"1301902214000","name":"Janie Dee","type":"Person","_key":"66955"} +{"label":"The Girlfriend Experience","description":"GFE is five days in the life of an ultra high-end Manhattan call girl who thinks she has her life totally under control. She feels her future is secure because she runs her own business her own way, makes $2000 an hour, and has a devoted boyfriend who accepts her lifestyle. But when youre in the business of meeting people, you never know who youre going to meet ","id":"17680","runtime":77,"imdbId":"tt1103982","trailer":"http:\/\/www.youtube.com\/watch?v=euwBlSZVrtQ","version":287,"lastModified":"1302078535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c2\/4bc9505c017a3c57fe0236c2\/the-girlfriend-experience-mid.jpg","studio":"2929 Productions","genre":"Comedy","title":"The Girlfriend Experience","releaseDate":1232409600000,"language":"en","type":"Movie","_key":"66956"} +{"label":"Chris Santos","version":20,"id":"82281","lastModified":"1302078534000","name":"Chris Santos","type":"Person","_key":"66957"} +{"label":"Peter Zizzo","version":20,"id":"82282","lastModified":"1302078534000","name":"Peter Zizzo","type":"Person","_key":"66958"} +{"label":"Timothy J. Cox","version":20,"id":"82283","lastModified":"1302078534000","name":"Timothy J. Cox","type":"Person","_key":"66959"} +{"label":"Timothy Davis","version":20,"id":"82284","lastModified":"1302078534000","name":"Timothy Davis","type":"Person","_key":"66960"} +{"label":"Jeff Grossman","version":20,"id":"82285","lastModified":"1302078534000","name":"Jeff Grossman","type":"Person","_key":"66961"} +{"label":"Ted Jessup","version":20,"id":"82287","lastModified":"1302078534000","name":"Ted Jessup","type":"Person","_key":"66962"} +{"label":"Kimberly Magness","version":20,"id":"82290","lastModified":"1302078534000","name":"Kimberly Magness","type":"Person","_key":"66963"} +{"label":"Ken Myers","version":20,"id":"82291","lastModified":"1302078534000","name":"Ken Myers","type":"Person","_key":"66964"} +{"label":"Bridget Storm","version":20,"id":"82292","lastModified":"1302078534000","name":"Bridget Storm","type":"Person","_key":"66965"} +{"label":"Scooby-Doo and the Witch's Ghost","description":"A famous horror writer, Ben Ravencroft invites the Scooby gang to his home town of Oakhaven where they find the ghost of \"witch\" Sarah Ravencroft, a relative of Ben's, is haunting the town.","id":"17681","runtime":70,"imdbId":"tt0196931","version":223,"lastModified":"1302133900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cb\/4bc9505d017a3c57fe0236cb\/scooby-doo-and-the-witch-s-ghost-mid.jpg","studio":"Hanna-Barbera Productions","genre":"Animation","title":"Scooby-Doo and the Witch's Ghost","releaseDate":941760000000,"language":"en","type":"Movie","_key":"66966"} +{"label":"CIA - America's Secret Warriors","description":"No overview found.","id":"17682","runtime":155,"imdbId":"tt0271410","version":39,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d0\/4bc95060017a3c57fe0236d0\/cia-america-s-secret-warriors-mid.jpg","studio":"Discovery Channel Productions","genre":"Documentary","title":"CIA - America's Secret Warriors","releaseDate":852076800000,"language":"en","type":"Movie","_key":"66967"} +{"label":"Chouchou","description":"Choukri, alias Chouchou, a transvestite Maghrebi with clear eyes, comes illegally to Paris to find his nephew. Hired as an assistant by a psychotherapist, known for his good mood, he also work as a waiter in a transvestite cabaret of Clichy where he meets Stanislas.","id":"17684","runtime":105,"imdbId":"tt0328955","homepage":"http:\/\/www.warnerbros.fr\/movies\/chouchou\/","version":96,"lastModified":"1301903254000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d9\/4bc95060017a3c57fe0236d9\/chouchou-mid.jpg","studio":"Warner Bros. France","genre":"Comedy","title":"Chouchou","releaseDate":1048032000000,"language":"en","type":"Movie","_key":"66968"} +{"label":"Ari\u00e9 Elmaleh","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/33f\/4d7292d17b9aa10f5400033f\/ari-elmaleh-profile.jpg","version":23,"id":"82302","lastModified":"1301902063000","name":"Ari\u00e9 Elmaleh","type":"Person","_key":"66969"} +{"label":"Yacine Mesbah","version":19,"id":"82303","lastModified":"1301902455000","name":"Yacine Mesbah","type":"Person","_key":"66970"} +{"label":"Olivia Dessolin","version":20,"id":"82305","lastModified":"1301902523000","name":"Olivia Dessolin","type":"Person","_key":"66971"} +{"label":"Charlotte Kady","version":22,"id":"82306","lastModified":"1301902170000","name":"Charlotte Kady","type":"Person","_key":"66972"} +{"label":"Merzak Allouache","version":26,"id":"82307","lastModified":"1301901708000","name":"Merzak Allouache","type":"Person","_key":"66973"} +{"label":"Le roi de coeur","description":"An ornithologist mistaken for an explosives expert is sent alone into a small French town during WWI to investigate a garbled report from the resistance about a bomb which the departing Germans have set to blow up a weapons cache.","id":"17685","runtime":102,"imdbId":"tt0060908","version":94,"lastModified":"1300980470000","title":"Le roi de coeur","releaseDate":-80092800000,"language":"en","type":"Movie","_key":"66974"} +{"label":"The Age of Terror: A Survey of Modern Terrorism","description":"No overview found.","id":"17686","runtime":200,"imdbId":"tt0836828","version":39,"lastModified":"1300980470000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e2\/4bc95061017a3c57fe0236e2\/the-age-of-terror-a-survey-of-modern-terrorism-mid.jpg","studio":"3BM Television","genre":"Documentary","title":"The Age of Terror: A Survey of Modern Terrorism","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"66975"} +{"label":"Polly Williams","version":20,"id":"82296","lastModified":"1301902528000","name":"Polly Williams","type":"Person","_key":"66976"} +{"label":"Daniel Korn","version":20,"id":"82295","lastModified":"1301902199000","name":"Daniel Korn","type":"Person","_key":"66977"} +{"label":"Jon Blair","version":21,"id":"82293","lastModified":"1301902167000","name":"Jon Blair","type":"Person","_key":"66978"} +{"label":"The Public Enemy","description":"James Cagney star's as Tom Powers, a trouble-ridden individual who rises from the position of cheap thug to that of a powerful Prohibition gangster. When his best friend is murdered, Powers self-destructively seeks deadly retaliation.","id":"17687","runtime":83,"imdbId":"tt0022286","trailer":"http:\/\/www.youtube.com\/watch?v=r2hDKOhS7KM","version":175,"lastModified":"1301903509000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4bc95062017a3c57fe0236eb\/the-public-enemy-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Public Enemy","releaseDate":-1221091200000,"language":"en","type":"Movie","_key":"66979"} +{"label":"Jean Harlow","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e5\/4c615e2e7b9aa172dd0003e5\/jean-harlow-profile.jpg","version":40,"id":"82315","lastModified":"1301901603000","name":"Jean Harlow","type":"Person","_key":"66980"} +{"label":"Edward Woods","version":22,"id":"82316","lastModified":"1301902174000","name":"Edward Woods","type":"Person","_key":"66981"} +{"label":"Donald Cook","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b97\/4cc197247b9aa138d8001b97\/donald-cook-profile.jpg","version":21,"id":"97775","lastModified":"1301902516000","name":"Donald Cook","type":"Person","_key":"66982"} +{"label":"Leslie Fenton","version":20,"id":"95771","lastModified":"1301902231000","name":"Leslie Fenton","type":"Person","_key":"66983"} +{"label":"Murray Kinnell","version":27,"id":"120537","lastModified":"1301902488000","name":"Murray Kinnell","type":"Person","_key":"66984"} +{"label":"Polly Walters","version":22,"id":"128360","lastModified":"1301902855000","name":"Polly Walters","type":"Person","_key":"66985"} +{"label":"The Gauntlet","description":"Phoenix cop Ben Shockley is well on his way to becoming a derelict when he is assigned to transport a witness named Gus Mally from Vegas. Mally turns out to be a belligerent prostitute with mob ties and incriminating information regarding a high-placed figure.","id":"17689","runtime":109,"imdbId":"tt0076070","version":649,"lastModified":"1301903401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/614\/4d7953227b9aa14cb8000614\/the-gauntlet-mid.jpg","studio":"Malpaso Productions","genre":"Action","title":"The Gauntlet","releaseDate":251510400000,"language":"en","type":"Movie","_key":"66986"} +{"label":"Michael Cavanaugh","version":20,"id":"101172","lastModified":"1301902631000","name":"Michael Cavanaugh","type":"Person","_key":"66987"} +{"label":"4 for Texas","description":"Frank Sinatra plays a tough guy who hooks up with fellow rat packer Dean Martin to open a casino in this western.","id":"17691","runtime":124,"imdbId":"tt0057071","version":173,"lastModified":"1301904673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc95064017a3c57fe02370a\/4-for-texas-mid.jpg","genre":"Comedy","title":"4 for Texas","releaseDate":-189993600000,"language":"en","type":"Movie","_key":"66988"} +{"label":"Jaws 3-D","description":"This third film in the series follows a group of marine biologists attempting to capture a young great white shark that has wandered into Florida's Sea World Park. However, later it is discovered that the shark's 35-foot mother is also a guest at Sea World. What follows is the shark reeking havoc on the visitors in the park.","id":"17692","runtime":99,"imdbId":"tt0085750","trailer":"http:\/\/www.youtube.com\/watch?v=zMlx33ov82c","version":229,"lastModified":"1301903328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/717\/4bc95065017a3c57fe023717\/jaws-3-d-mid.jpg","genre":"Horror","title":"Jaws 3-D","releaseDate":427680000000,"language":"en","type":"Movie","_key":"66989"} +{"label":"GA-byeo-woon Cham","description":"Sixteen-year-old Yeo Lin used to have a boyfriend and normal life, but everything changed when she lost both her parents two years ago. To support her siblings, she sells her body. Quietly bearing wounds and responsibilities beyond her age, she faces the cruel trials of love, friendship, and premature adulthood, and she does it all in seeming detachment. Always tired, Yeo Lin suffers from chronic ","id":"17693","runtime":96,"version":13,"lastModified":"1300980471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/721\/4bc95066017a3c57fe023721\/ga-byeo-woon-cham-mid.jpg","title":"GA-byeo-woon Cham","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"66990"} +{"label":"John Pinette - I'm Starvin'!","description":"Fresh from his role in the Broadway musical hit \"Hairspray,\" self-effacing stand-up funnyman John Pinette delivers nonstop laughs at the Montreal Comedy Festival. An all-new routine covers topics from health food to family get-togethers, and backstage footage and hilarious outtakes add to the fun. Pinette's successful acting career extends to TV and the big screen as well as the stage; his films include Duets, Dear God and Junior.","id":"17695","runtime":73,"imdbId":"tt1073499","version":214,"lastModified":"1301908507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73d\/4bc9506c017a3c57fe02373d\/john-pinette-i-m-starvin-mid.jpg","genre":"Comedy","title":"John Pinette - I'm Starvin'!","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"66991"} +{"label":"John Pinette","version":26,"birthday":"-182307600000","id":"82415","birthplace":"Boston, Massachusetts, USA","lastModified":"1301901594000","name":"John Pinette","type":"Person","_key":"66992"} +{"label":"Robin and the 7 Hoods","description":"In prohibition-era Chicago, the corrupt sheriff and Guy Gisborne, a south-side racketeer, knock off the boss Big Jim. Everyone falls in line behind Guy except Robbo, who controls the north side. Although he's out-gunned, Robbo wants to keep his own territory. A pool-playing dude from Indiana and the director of a boys' orphanage join forces with Robbo; and, when he gives some money to the orphanage, he becomes the toast of the town as a hood like Robin Hood. Meanwhile, Guy schemes to get rid of ","id":"17696","runtime":123,"imdbId":"tt0058529","version":154,"lastModified":"1301903706000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/742\/4bc9506c017a3c57fe023742\/robin-and-the-7-hoods-mid.jpg","genre":"Action","title":"Robin and the 7 Hoods","releaseDate":-174268800000,"language":"en","tagline":"Like we've taken the Robin Hood legend and changed the bows and arrows to machine guns!... Like with songs yet!... Like WILD!","type":"Movie","_key":"66993"} +{"label":"Russell Peters - Show Me the Funny","description":"Russell Peters lays it down on the Comedy Now stage in this one hour special.","id":"17698","runtime":46,"imdbId":"tt1426486","version":47,"lastModified":"1301904650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74b\/4bc9506d017a3c57fe02374b\/russell-peters-show-me-the-funny-mid.jpg","genre":"Comedy","title":"Russell Peters - Show Me the Funny","releaseDate":992131200000,"language":"en","type":"Movie","_key":"66994"} +{"label":"Russell Peters","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fe\/4d5c1f2a7b9aa112350010fe\/russell-peters-profile.jpg","version":31,"id":"82417","lastModified":"1302180841000","name":"Russell Peters","type":"Person","_key":"66995"} +{"label":"IMAX: Coral Reef Adventure","description":"Coral Reef Adventure follows the real-life expedition of ocean explorers and underwater filmmakers Howard and Michele Hall. Using large-format cameras, the Halls guide us to the islands and sun-drenched waters of the South Pacific to document the health and beauty of coral reefs. Featuring songs written and recorded by Crosby, Stills & Nash.","id":"17699","runtime":45,"imdbId":"tt0270291","trailer":"http:\/\/www.youtube.com\/watch?v=G0UOP0H-9X8","version":162,"lastModified":"1301903764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/760\/4bc9506e017a3c57fe023760\/coral-reef-adventure-mid.jpg","genre":"Documentary","title":"IMAX: Coral Reef Adventure","releaseDate":1045180800000,"language":"en","type":"Movie","_key":"66996"} +{"label":"Deep Sea 3D","description":"Sea life in a whole new way. Deep Sea 3D, an underwater adventure from the filmmakers behind the successful IMAX\u00ae 3D film Into the Deep, transports audiences deep below the ocean surface. Through the magic of IMAX\u00ae; and IMAX 3D, moviegoers will swim with some of the planets most unique, dangerous and colorful creatures, and understand this inspiring underworld.","id":"17700","runtime":41,"imdbId":"tt0424942","version":152,"lastModified":"1301908444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/771\/4bc9506f017a3c57fe023771\/deep-sea-3d-mid.jpg","genre":"Documentary","title":"Deep Sea 3D","releaseDate":1141344000000,"language":"en","type":"Movie","_key":"66997"} +{"label":"Howard Hall","version":31,"id":"130143","lastModified":"1301908444000","name":"Howard Hall","type":"Person","_key":"66998"} +{"label":"Galapagos: The Enchanted Voyage","description":"Retrace the groundbreaking footsteps of Charles Darwin with a young scientist as she explores the biological diversity and unique geologic history of the Galapagos archipelago. Using the magic of IMAX\u00ae and IMAX\u00ae 3D technology, plunge 3,000 feet into underground lava tubes, soar over the peaks of 5,000 foot volcanoes and encounter an abundance of marine life.","id":"17701","runtime":40,"imdbId":"tt0163639","version":95,"lastModified":"1301904343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77f\/4bc95070017a3c57fe02377f\/galapagos-the-enchanted-voyage-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Galapagos: The Enchanted Voyage","releaseDate":940982400000,"language":"en","tagline":"Explore a world full of mystery and wonder.","type":"Movie","_key":"66999"} +{"label":"David Clark","version":23,"id":"96883","lastModified":"1301902773000","name":"David Clark","type":"Person","_key":"67000"} +{"label":"Al Giddings","version":19,"id":"96884","lastModified":"1301902973000","name":"Al Giddings","type":"Person","_key":"67001"} +{"label":"Carole Baldwin","version":19,"id":"136047","lastModified":"1301903023000","name":"Carole Baldwin","type":"Person","_key":"67002"} +{"label":"John E. McCosker","version":19,"id":"136048","lastModified":"1301903035000","name":"John E. McCosker","type":"Person","_key":"67003"} +{"label":"David Pawson","version":18,"id":"136049","lastModified":"1301902901000","name":"David Pawson","type":"Person","_key":"67004"} +{"label":"Mathias Espinosa","version":19,"id":"136050","lastModified":"1301903006000","name":"Mathias Espinosa","type":"Person","_key":"67005"} +{"label":"Don Liberatore","version":19,"id":"136051","lastModified":"1301903002000","name":"Don Liberatore","type":"Person","_key":"67006"} +{"label":"Nova - The Elegant Universe","description":"One of the most ambitious and exciting theories ever proposed\u2014one that may be the long-sought \"theory of everything,\" which eluded even Einstein\u2014gets a masterful, lavishly computer-animated explanation from bestselling author-physicist Brian Greene, when NOVA presents the nuts, bolts, and sometimes outright nuttiness of string theory.","id":"17702","runtime":0,"imdbId":"tt0377171","version":130,"lastModified":"1300980472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4bc95071017a3c57fe023784\/nova-the-elegant-universe-mid.jpg","title":"Nova - The Elegant Universe","releaseDate":1067299200000,"language":"en","type":"Movie","_key":"67007"} +{"label":"Brian Greene","version":19,"id":"82531","lastModified":"1301902141000","name":"Brian Greene","type":"Person","_key":"67008"} +{"label":"Ring of Fire","description":"Ring of Fire is about the immense natural force of the great circle of volcanoes and seismic activity that rings the Pacific Ocean and the varied people and cultures who coexist with them. Spectacular volcanic eruptions are featured, including Mount St. Helens, Navidad in Chile, Sakurajima in Japan, and Mount Merapi in Indonesia.","id":"17703","runtime":40,"imdbId":"tt0102794","version":291,"lastModified":"1301904440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78d\/4bc95071017a3c57fe02378d\/ring-of-fire-mid.jpg","studio":"IMAX","genre":"Action","title":"Ring of Fire","releaseDate":664243200000,"language":"en","type":"Movie","_key":"67009"} +{"label":"Norman Banks","version":19,"id":"136262","lastModified":"1301903013000","name":"Norman Banks","type":"Person","_key":"67010"} +{"label":"Lawrence Blair","version":21,"id":"136258","lastModified":"1301902732000","name":"Lawrence Blair","type":"Person","_key":"67011"} +{"label":"Gary Rosenquist","version":18,"id":"136263","lastModified":"1301902913000","name":"Gary Rosenquist","type":"Person","_key":"67012"} +{"label":"The Living Sea","description":"The Living Sea, a film about the world's oceans, increases sensitivity among peoples around the world to the beautiful, powerful, productive, but ultimately fragile, marine environment. Through the exciting use of marine technology, this vast scientific frontier will be explored with the people who are building a healthy coexistence with Earth's oceans.","id":"17704","runtime":40,"imdbId":"tt0113676","version":198,"lastModified":"1301414222000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a2\/4bc95073017a3c57fe0237a2\/the-living-sea-mid.jpg","studio":"IMAX","genre":"Short","title":"The Living Sea","releaseDate":791596800000,"language":"en","type":"Movie","_key":"67013"} +{"label":"Tropical Rainforest","description":"The story of the evolution of tropical rain forests, their recent and rapid destruction, and the intense efforts of scientists to understand them even as they disappear. This film gives viewers a better appreciation of the importance of tropical rain forests on a global scale.","id":"17705","runtime":40,"imdbId":"tt0105644","version":93,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7af\/4bc95078017a3c57fe0237af\/tropical-rainforest-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Tropical Rainforest","releaseDate":694224000000,"language":"en","type":"Movie","_key":"67014"} +{"label":"Ben Shedd","version":18,"id":"136238","lastModified":"1301902745000","name":"Ben Shedd","type":"Person","_key":"67015"} +{"label":"Two Years In Galapagos","description":"Take two award-winning wildlife film-makers and one three year old daughter. Add 99 pieces of luggage and equipment. Mix together with a range of exotic animal species and stunning scenery. Then place them all together for 'Two Years in Galapagos'.","id":"17706","runtime":0,"version":20,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b4\/4bc95078017a3c57fe0237b4\/two-years-in-galapagos-mid.jpg","title":"Two Years In Galapagos","releaseDate":940377600000,"language":"en","type":"Movie","_key":"67016"} +{"label":"Brokedown Palace","description":"Alice and Darlene, best friends, decide to take a trip to Thailand to celebrate high-school graduation. While there, they are befriended by charming Australian rogue Nick Parks. Nick convinces them to take a weekend side trip to Hong Kong, but at the airport, they are busted for smuggling drugs. They are convicted in a show trial and sentenced to 33 years; in desperation, they contact Yankee Hank.","id":"17707","runtime":100,"imdbId":"tt0120620","trailer":"http:\/\/www.youtube.com\/watch?v=p-xXGVsYOyM","version":217,"lastModified":"1301903384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bd\/4bc95078017a3c57fe0237bd\/brokedown-palace-mid.jpg","genre":"Drama","title":"Brokedown Palace","releaseDate":934502400000,"language":"en","type":"Movie","_key":"67017"} +{"label":"Corky Romano","description":"Corky Romano is a bumbling, simpleton, veterinarian and the youngest, outcast son of an aging gangster, named Pops Romano, who calls upon Corky to infiltrate the local FBI and retrieve and destroy evidence being used to incriminate Pops for racketeering charges.","id":"17708","runtime":86,"imdbId":"tt0250310","version":181,"lastModified":"1301906259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cb\/4bc95079017a3c57fe0237cb\/corky-romano-mid.jpg","genre":"Comedy","title":"Corky Romano","releaseDate":1002844800000,"language":"en","tagline":"Undercover and Out The Way!","type":"Movie","_key":"67018"} +{"label":"Rob Pritts","version":22,"id":"123694","lastModified":"1301902691000","name":"Rob Pritts","type":"Person","_key":"67019"} +{"label":"Dudley Do-Right","description":"Based on the 60's-era cartoon of the same name. Royal Canadian Mountie Dudley Do-right is busy keeping the peace in his small mountain town when his old rival, Snidely Whiplash, comes up with a plot to buy all the property in town, then start a phony gold rush by seeding the river with gold nuggets. Can this well-meaning (though completely incompetent) Mountie stop Whiplash's evil plan?","id":"17709","runtime":77,"imdbId":"tt0160236","trailer":"http:\/\/www.youtube.com\/watch?v=sgUDShPYos8","version":145,"lastModified":"1301903691000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7dd\/4bc9507b017a3c57fe0237dd\/dudley-do-right-mid.jpg","genre":"Family","title":"Dudley Do-Right","releaseDate":935712000000,"language":"en","tagline":"From the creator of \"George of the Jungle\" comes a new kind of hero.","type":"Movie","_key":"67020"} +{"label":"Hey Arnold","description":"Hey Arnold!: The Movie is a 2002 animated film based on the 1996-2004 Nickelodeon animated television series Hey Arnold! The film was released in theaters on June 28, 2002 from Paramount Pictures and Nickelodeon Movies.This is also Nickelodeon's first PG-rated animated film, for thematic elements.The show stars 4th-grader, Arnold, who lives with his paternal grandparents, Phil and Gertrude, proprietors of the Sunset Arms boarding house. In each episode, Arnold often helps a schoolmate solve a pe","id":"17710","runtime":76,"imdbId":"tt0314166","trailer":"http:\/\/www.youtube.com\/watch?v=AclAdQGF3EI","version":325,"lastModified":"1301903747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ea\/4bc9507c017a3c57fe0237ea\/hey-arnold-the-movie-mid.jpg","studio":"Nickelodeon Movies","genre":"Animation","title":"Hey Arnold","releaseDate":1025222400000,"language":"en","tagline":"A Big Problem Calls For a Big Head","type":"Movie","_key":"67021"} +{"label":"Spencer Klein","version":21,"id":"82528","lastModified":"1301901717000","name":"Spencer Klein","type":"Person","_key":"67022"} +{"label":"Francesca Smith","version":21,"id":"35093","lastModified":"1301901608000","name":"Francesca Smith","type":"Person","_key":"67023"} +{"label":"Jamil Walker Smith","version":23,"id":"82529","lastModified":"1301901717000","name":"Jamil Walker Smith","type":"Person","_key":"67024"} +{"label":"The Adventures of Rocky & Bullwinkle","description":"Rocky and Bullwinkle have been living off the finances made from the reruns of their cartoon show. Boris and Natasha somehow manage to crossover into reality and team up with Fearless Leader, an evil criminal turned media mogul with some evil plans up his sleeve. Rocky and Bullwinkle must stop the three of them before they wreak havoc.","id":"17711","runtime":88,"imdbId":"tt0131704","trailer":"http:\/\/www.youtube.com\/watch?v=sQXEny-BzKc","version":136,"lastModified":"1301903764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b02\/4cf136765e73d61929000b02\/the-adventures-of-rocky-bullwinkle-mid.jpg","genre":"Action","title":"The Adventures of Rocky & Bullwinkle","releaseDate":962323200000,"language":"en","type":"Movie","_key":"67025"} +{"label":"Lisa Lampanelli: Dirty Girl","description":"Lisa Lampanelli's shocking and hilarious appearances on television from \"The Tonight Show\" to Comedy Central roasts have made her the hottest comic in the country. Now her second Comedy Central special, \"Dirty Girl,\" is presented on CD and DVD. \"Comedy's Lovable Queen of Mean\" (New York Times) gets down and dirty on Dirty Girl \"No Protection,\" and it is filthy funny.","id":"17712","runtime":66,"imdbId":"tt0887148","version":148,"lastModified":"1301904433000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/823\/4d4def265e73d617c1002823\/lisa-lampanelli-dirty-girl-no-protection-mid.jpg","genre":"Comedy","title":"Lisa Lampanelli: Dirty Girl","releaseDate":1169942400000,"language":"en","type":"Movie","_key":"67026"} +{"label":"Dunkirk","description":"A British Corporal in France finds himself responsible for the lives of his men when their officer is killed. He has to get them back to Britain somehow. Meanwhile, British civilians are being dragged into the war with Operation Dynamo, the scheme to get the French and British forces back from the Dunkirk beaches. Some come forward to help, others were less willing.","id":"17720","runtime":134,"imdbId":"tt0051565","version":63,"lastModified":"1301417526000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fd\/4bc9507d017a3c57fe0237fd\/dunkirk-mid.jpg","studio":"Ealing Studios","genre":"Action","title":"Dunkirk","releaseDate":-371520000000,"language":"en","type":"Movie","_key":"67027"} +{"label":"Leslie Norman","version":23,"id":"82334","lastModified":"1301902054000","name":"Leslie Norman","type":"Person","_key":"67028"} +{"label":"Grow Your Own","description":"An English community gets testy when a refuge family is granted a plot of land on which to grow vegetables.","id":"17725","runtime":97,"imdbId":"tt0847830","version":90,"lastModified":"1301906614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4bc9507d017a3c57fe023802\/grow-your-own-mid.jpg","genre":"Comedy","title":"Grow Your Own","releaseDate":1181865600000,"language":"en","type":"Movie","_key":"67029"} +{"label":"Alan Williams","version":20,"id":"122589","lastModified":"1301902718000","name":"Alan Williams","type":"Person","_key":"67030"} +{"label":"Pearce Quigley","version":32,"id":"119415","lastModified":"1301902365000","name":"Pearce Quigley","type":"Person","_key":"67031"} +{"label":"Richard Laxton","version":20,"id":"122590","lastModified":"1301902710000","name":"Richard Laxton","type":"Person","_key":"67032"} +{"label":"Wieners","description":"A road trip comedy about three friends who travel across the country in a Wiener Wagon to beat up a popular daytime talk show therapist.","id":"17728","runtime":89,"imdbId":"tt0800268","version":151,"lastModified":"1301903805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/807\/4bc9507d017a3c57fe023807\/wieners-mid.jpg","genre":"Comedy","title":"Wieners","releaseDate":1212451200000,"language":"en","type":"Movie","_key":"67033"} +{"label":"Mark Steilen","version":4,"id":"230773","lastModified":"1301904120000","name":"Mark Steilen","type":"Person","_key":"67034"} +{"label":"The Glenn Miller Story","description":"The great Jimmy Stewart and June Allyson star in this vibrant tribute to one of America's legendary bandleaders, charting Miller's rise from obscurity and poverty to fame and wealth in the early 1940's.","id":"17729","runtime":115,"imdbId":"tt0047030","version":212,"lastModified":"1301904230000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/814\/4bc9507f017a3c57fe023814\/the-glenn-miller-story-mid.jpg","studio":"Universal Pictures","title":"The Glenn Miller Story","releaseDate":-504316800000,"language":"en","type":"Movie","_key":"67035"} +{"label":"June Allyson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/590\/4c53f08a7b9aa13d4a000590\/june-allyson-profile.jpg","version":30,"birthday":"-1647565200000","id":"41216","birthplace":"Bronx, New York, USA","lastModified":"1301901223000","name":"June Allyson","type":"Person","_key":"67036"} +{"label":"The Fluffer","description":"The story, set in the world of adult entertainment, centers around three characters: Johnny Rebel, a straight man who has become a star in the world of gay porn; Johnny's stripper girlfriend Babylon; and Sean, a naive young man in love with Johnny, who ends up becoming Johnny's \"fluffer\". ","id":"17731","runtime":95,"imdbId":"tt0245115","trailer":"http:\/\/www.youtube.com\/watch?v=1165","homepage":"http:\/\/www.fluffer.com","version":209,"lastModified":"1301904306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/81d\/4bc95080017a3c57fe02381d\/the-fluffer-mid.jpg","studio":"Fluff and Fold LLC","genre":"Comedy","title":"The Fluffer","releaseDate":981849600000,"language":"en","type":"Movie","_key":"67037"} +{"label":"Richard Glatzer","version":20,"id":"82335","lastModified":"1301902455000","name":"Richard Glatzer","type":"Person","_key":"67038"} +{"label":"Wash Westmoreland","version":20,"id":"82336","lastModified":"1301902455000","name":"Wash Westmoreland","type":"Person","_key":"67039"} +{"label":"Michael Cunio","version":20,"id":"82338","lastModified":"1301902237000","name":"Michael Cunio","type":"Person","_key":"67040"} +{"label":"Roxanne Day","version":20,"id":"82339","lastModified":"1301902237000","name":"Roxanne Day","type":"Person","_key":"67041"} +{"label":"Thirteen Conversations About One Thing","description":"The lives of a lawyer, an actuary, a housecleaner, a professor, and the people around them intersect as they ponder order and happiness in the face of life's cold unpredictability.","id":"17734","runtime":104,"imdbId":"tt0268690","version":152,"lastModified":"1301905038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/826\/4bc95083017a3c57fe023826\/thirteen-conversations-about-one-thing-mid.jpg","title":"Thirteen Conversations About One Thing","releaseDate":1017360000000,"language":"en","type":"Movie","_key":"67042"} +{"label":"Where The Day Takes You","description":"A group of teen-age runaways try to survive in the streets of Los Angeles. Drugs, prostitution, violence and bureaucratic indifference all pose threats to the kids, who nevertheless prefer this harsh life to going back to their families. Heather, somewhat older, provides some leadership and mothering to the kids.","id":"17736","runtime":105,"imdbId":"tt0105810","version":379,"lastModified":"1301904774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/830\/4bc95085017a3c57fe023830\/where-the-day-takes-you-mid.jpg","studio":"Cinetel Films","genre":"Drama","title":"Where The Day Takes You","releaseDate":716169600000,"language":"en","type":"Movie","_key":"67043"} +{"label":"Nancy McKeon","version":35,"id":"121639","lastModified":"1301902681000","name":"Nancy McKeon","type":"Person","_key":"67044"} +{"label":"Debbie James","version":18,"id":"101870","lastModified":"1301902604000","name":"Debbie James","type":"Person","_key":"67045"} +{"label":"Stan Lee Presents: The Condor","description":"After his parents are murdered and his legs crippled, Tony Valdez uses their technology and becomes a skateboarding superhero.","id":"17738","runtime":74,"imdbId":"tt0993750","version":106,"lastModified":"1300980475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f0\/4ca68b887b9aa17acf0000f0\/the-condor-mid.jpg","studio":"Film Roman Productions","genre":"Animation","title":"Stan Lee Presents: The Condor","releaseDate":1174435200000,"language":"en","type":"Movie","_key":"67046"} +{"label":"Cusse Mankuma","version":17,"id":"135521","lastModified":"1301902940000","name":"Cusse Mankuma","type":"Person","_key":"67047"} +{"label":"Powder Blue","description":"Several Angelenos meet on Christmas Eve through chance, tragedy and divine intervention. Swayze will play the sleazy owner of the strip club where Biel's character dances. Redmayne will portray a mortician who falls in love with her. Kristofferson will play the head of a corporate crime organization who tries to convince his former employee (Liotta) not to seek vengeance on his former co-workers. ","id":"17740","runtime":108,"imdbId":"tt1032819","trailer":"http:\/\/www.youtube.com\/watch?v=1166","version":260,"lastModified":"1301903301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/841\/4bc95087017a3c57fe023841\/powder-blue-mid.jpg","studio":"Grosvenor Park Media Ltd.","genre":"Action","title":"Powder Blue","releaseDate":1241740800000,"language":"en","type":"Movie","_key":"67048"} +{"label":"Timothy Linh Bui","version":17,"id":"145627","lastModified":"1301904129000","name":"Timothy Linh Bui","type":"Person","_key":"67049"} +{"label":"Stoned","description":"A chronicle of the sordid life and suspicious death of Rolling Stones co-founder Brian Jones, who was found in the bottom of his swimming pool weeks after being let go from the band.","id":"17741","runtime":102,"imdbId":"tt0426627","version":478,"lastModified":"1301905750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84a\/4bc95088017a3c57fe02384a\/stoned-mid.jpg","genre":"Drama","title":"Stoned","releaseDate":1132272000000,"language":"en","type":"Movie","_key":"67050"} +{"label":"The Bedford Incident","description":"Richard Widmark plays a hardened cold-war warrior and captain of the American destroyer USS Bedford. Sidney Poitier is a reporter given permission to interview the captain during a routine patrol. Poitier gets more than he bargained for when the Bedford discovers a Soviet sub in the depths and the captain begins a relentless pursuit, pushing his crew, and the on-screen tension, to breaking point in this chilling cold-war tale of cat and mouse.","id":"17744","runtime":102,"imdbId":"tt0058962","version":147,"lastModified":"1301988024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84f\/4bc95089017a3c57fe02384f\/the-bedford-incident-mid.jpg","genre":"Action","title":"The Bedford Incident","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"67051"} +{"label":"James B. Harris","version":32,"id":"3349","lastModified":"1301901278000","name":"James B. Harris","type":"Person","_key":"67052"} +{"label":"Camp Nowhere","description":"Morris \"Mud\" Himmel has a problem. His parents desperately want to send him away to summer camp. He hates going to summer camp, and would do anything to get out of it. Talking to his friends, he realizes that they are all facing the same sentence: a boring summer camp. Together with his friends, he hatches a plan to trick all the parents into sending them to a camp of their own design.","id":"17745","runtime":96,"imdbId":"tt0109369","version":164,"lastModified":"1301903207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/858\/4bc95089017a3c57fe023858\/camp-nowhere-mid.jpg","genre":"Comedy","title":"Camp Nowhere","releaseDate":777859200000,"language":"en","type":"Movie","_key":"67053"} +{"label":"Melody Kay","version":22,"id":"57236","lastModified":"1301901862000","name":"Melody Kay","type":"Person","_key":"67054"} +{"label":"Hillary Tuck","version":19,"id":"82341","lastModified":"1301902455000","name":"Hillary Tuck","type":"Person","_key":"67055"} +{"label":"Devin Oatway","version":17,"id":"82342","lastModified":"1301902455000","name":"Devin Oatway","type":"Person","_key":"67056"} +{"label":"Ian Christopher Scott","version":19,"id":"82343","lastModified":"1301902455000","name":"Ian Christopher Scott","type":"Person","_key":"67057"} +{"label":"Romy Windsor","version":24,"id":"82344","lastModified":"1301902455000","name":"Romy Windsor","type":"Person","_key":"67058"} +{"label":"Jonathan Prince","version":19,"id":"82346","lastModified":"1301902237000","name":"Jonathan Prince","type":"Person","_key":"67059"} +{"label":"The Wiz","description":"No overview found.","id":"17746","runtime":45,"imdbId":"tt0135708","version":398,"lastModified":"1300980476000","genre":"Family","title":"The Wiz","releaseDate":252460800000,"language":"en","type":"Movie","_key":"67060"} +{"label":"The High and the Mighty","description":"Dan roman is a veteran pilot haunted by a tragic past. Now relegated to second-in-command cockpit assignments he finds himself on a routine honolulu-to-san francisco flight - one that takes a terrifying suspense-building turn when disaster strikes high above the pacific ocean at the point of no return.","id":"17761","runtime":154,"imdbId":"tt0047086","version":145,"lastModified":"1301903550000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/881\/4bc9508d017a3c57fe023881\/the-high-and-the-mighty-mid.jpg","studio":"Wayne-Fellows Productions","genre":"Action","title":"The High and the Mighty","releaseDate":-489110400000,"language":"en","type":"Movie","_key":"67061"} +{"label":"Laraine Day","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/327\/4bd1f27f017a3c63f5000327\/laraine-day-profile.jpg","version":36,"id":"41245","lastModified":"1302031589000","name":"Laraine Day","type":"Person","_key":"67062"} +{"label":"David Brian","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/603\/4bfac0c4017a3c7031000603\/david-brian-profile.jpg","version":28,"id":"16016","lastModified":"1301987197000","name":"David Brian","type":"Person","_key":"67063"} +{"label":"Paul Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ba\/4bd5e454017a3c657d0000ba\/paul-kelly-profile.jpg","version":37,"birthday":"-2221520400000","id":"82348","birthplace":"Brooklyn, New York, USA","lastModified":"1301901599000","name":"Paul Kelly","type":"Person","_key":"67064"} +{"label":"Julie Bishop","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12e\/4c7e629d7b9aa10d9700012e\/julie-bishop-profile.jpg","version":32,"id":"82349","lastModified":"1301901181000","name":"Julie Bishop","type":"Person","_key":"67065"} +{"label":"Geisha Assassin","description":"One rainy night in the Edo period, Kotono (a geisha) confronts samurais who killed her father. The samurais attack her one after another, but she fights hard against samurais with her sword. Kotono tries to chase the samurais who scramble to escape. Yet now three ninjas stand up against her. Kotono drops her sword by their wave of assaults. Can she beat them?","id":"17762","runtime":0,"imdbId":"tt1298760","homepage":"http:\/\/www.geisha-vs-ninjas.jp\/","version":77,"lastModified":"1301908280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88a\/4bc95092017a3c57fe02388a\/geisha-vs-ninja-mid.jpg","genre":"Action","title":"Geisha Assassin","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"67066"} +{"label":"The Scratch","description":"Jake, a rookie private eye, spends each day minding a small private investigation office and filing papers...","id":"17764","runtime":92,"imdbId":"tt1308664","version":177,"lastModified":"1301906957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/893\/4bc95093017a3c57fe023893\/the-scratch-mid.jpg","genre":"Action","title":"The Scratch","releaseDate":1234051200000,"language":"en","type":"Movie","_key":"67067"} +{"label":"Jorge Suarez","version":17,"id":"105887","lastModified":"1301902502000","name":"Jorge Suarez","type":"Person","_key":"67068"} +{"label":"Kristen Nedopak","version":16,"id":"105891","lastModified":"1301902986000","name":"Kristen Nedopak","type":"Person","_key":"67069"} +{"label":"Jason Adkins","version":18,"id":"105894","lastModified":"1301902986000","name":"Jason Adkins","type":"Person","_key":"67070"} +{"label":"Filipe da Costa","version":16,"id":"105895","lastModified":"1301902324000","name":"Filipe da Costa","type":"Person","_key":"67071"} +{"label":"Brian Forrest","version":17,"id":"105896","lastModified":"1301902502000","name":"Brian Forrest","type":"Person","_key":"67072"} +{"label":"whitechapel","description":"Set in 2008 and against the hugely atmospheric background of Whitechapel, London, a modern police force are fighting an old adversary. A series of bloody, tragic and impossible crimes would suggest someone is carrying out copycat Jack the Ripper murders. The murders are investigated by our three unlikely heroes: Chandler (Penry-Jones), a fast-tracked, media savvy DI on his first big murder case","id":"17765","runtime":136,"imdbId":"tt1186356","version":45,"lastModified":"1300980476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/89c\/4bc95093017a3c57fe02389c\/whitechapel-mid.jpg","title":"whitechapel","releaseDate":1233532800000,"language":"en","type":"Movie","_key":"67073"} +{"label":"Cachorro","description":"Pedro, a gay man with an active social life and big circle of friends, takes in his nephew Bernardo for a couple weeks. When it appears as though it might become a permanent arrangement, however, Pedro turns to his friends for guidance as he and 9-year-old Bernardo begin to forge a household together.","id":"17766","runtime":98,"imdbId":"tt0359045","version":83,"lastModified":"1301906889000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a5\/4bc95093017a3c57fe0238a5\/cachorro-mid.jpg","studio":"Hispanocine Producciones","genre":"Drama","title":"Cachorro","releaseDate":1077840000000,"language":"en","type":"Movie","_key":"67074"} +{"label":"David Castillo","version":20,"id":"82350","lastModified":"1301901645000","name":"David Castillo","type":"Person","_key":"67075"} +{"label":"Empar Ferrer","version":20,"id":"82353","lastModified":"1301902502000","name":"Empar Ferrer","type":"Person","_key":"67076"} +{"label":"Elvira Lindo","version":20,"id":"82354","lastModified":"1301902502000","name":"Elvira Lindo","type":"Person","_key":"67077"} +{"label":"Mario Arias","version":19,"id":"82355","lastModified":"1301902324000","name":"Mario Arias","type":"Person","_key":"67078"} +{"label":"Miguel Albaladejo","version":17,"id":"212677","lastModified":"1301903744000","name":"Miguel Albaladejo","type":"Person","_key":"67079"} +{"label":"Robbie Williams Live at the Albert","description":"Experience the triumphs, the tears, the traumas and the trousers when Robert Peter Williams blows into London Town for one night only. Rub shoulder pads with a star-studded audience as Mr Success and his 58 piece orchestra serenade you with the songs that make the young girls crazy. Recorded on 10th October 2001 in the Royal Albert Hall.","id":"17767","runtime":73,"imdbId":"tt0301686","version":78,"lastModified":"1301903458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ae\/4bc95094017a3c57fe0238ae\/robbie-williams-live-at-the-albert-mid.jpg","studio":"Chrysalis Records","genre":"Music","title":"Robbie Williams Live at the Albert","releaseDate":1002672000000,"language":"en","type":"Movie","_key":"67080"} +{"label":"A Funny Thing Happened on the Way to the Forum","description":"A wily slave must unite a virgin courtesan and his young smitten master to earn his freedom.","id":"17768","runtime":99,"imdbId":"tt0060438","trailer":"http:\/\/www.youtube.com\/watch?v=eVFQr5zPyAY","version":166,"lastModified":"1301905183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bd\/4bc95095017a3c57fe0238bd\/a-funny-thing-happened-on-the-way-to-the-forum-mid.jpg","studio":"Quadrangle Films S.A.","genre":"Comedy","title":"A Funny Thing Happened on the Way to the Forum","releaseDate":-101347200000,"language":"en","type":"Movie","_key":"67081"} +{"label":"Annette Andre","version":21,"id":"84334","lastModified":"1301902576000","name":"Annette Andre","type":"Person","_key":"67082"} +{"label":"Between Love & Goodbye","description":"A modern gay drama about falling in and out of love, and the rocky road in between.","id":"17769","runtime":97,"imdbId":"tt1137437","version":178,"lastModified":"1301906464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ca\/4bc95097017a3c57fe0238ca\/between-love-goodbye-mid.jpg","genre":"Drama","title":"Between Love & Goodbye","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67083"} +{"label":"Casper Andreas","version":22,"id":"94264","lastModified":"1301902507000","name":"Casper Andreas","type":"Person","_key":"67084"} +{"label":"Simon Miller","version":19,"id":"94266","lastModified":"1301902690000","name":"Simon Miller","type":"Person","_key":"67085"} +{"label":"Justin Tensen","version":18,"id":"94267","lastModified":"1301902767000","name":"Justin Tensen","type":"Person","_key":"67086"} +{"label":"Trial and Error","description":"An actor poses as a lawyer to help his sick friend, and problems develop.","id":"17770","runtime":98,"imdbId":"tt0120373","version":138,"lastModified":"1301907768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d3\/4bc95097017a3c57fe0238d3\/trial-and-error-mid.jpg","genre":"Comedy","title":"Trial and Error","releaseDate":864950400000,"language":"en","type":"Movie","_key":"67087"} +{"label":"Alexandra Wentworth","version":18,"id":"104998","lastModified":"1301903009000","name":"Alexandra Wentworth","type":"Person","_key":"67088"} +{"label":"Sunshine","description":"No overview found.","id":"17771","runtime":181,"imdbId":"tt0145503","trailer":"http:\/\/www.youtube.com\/watch?v=2718","version":194,"lastModified":"1301904773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ec\/4bc9509d017a3c57fe0238ec\/sunshine-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Drama","title":"Sunshine","releaseDate":937180800000,"language":"en","type":"Movie","_key":"67089"} +{"label":"Wit Licht","description":"Eduard Zuiderwijk (Marco Borsato) runs a restaurant in Africa. When his wife (Ricky Koole) suddenly dies, he is left to take care of his son Thomas (Siebe Schoneveld) on his own. When his son's best friend Abu (Andrew Kintu) is abducted by a rebel leader to be trained as a child soldier, Eduard goes in pursuit to save the boy and regain his son's respect.","id":"17772","runtime":115,"imdbId":"tt1189008","version":61,"lastModified":"1301421252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90a\/4bc950a2017a3c57fe02390a\/wit-licht-mid.jpg","genre":"Drama","title":"Wit Licht","releaseDate":1228953600000,"language":"en","type":"Movie","_key":"67090"} +{"label":"Marco Borsato","version":19,"id":"82589","lastModified":"1301902455000","name":"Marco Borsato","type":"Person","_key":"67091"} +{"label":"Crazy Girls Undercover","description":"The film is about a group of Las Vegas sexy showgirls who are undercover agents working with a former C.I.A. agent (Robertson) to stop a terrorist attack.","id":"17773","runtime":0,"imdbId":"tt1350917","version":107,"lastModified":"1301906478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/913\/4bc950a4017a3c57fe023913\/crazy-girls-undercover-mid.jpg","genre":"Action","title":"Crazy Girls Undercover","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"67092"} +{"label":"Derailed","description":"NATO undercover operative Jack Logan (Van Damme) must cut a family vacation short when he's called away for a top secret assignment involving a sexy and much sought-after international thief, Galina Konstantin, who wants to get past the Slovakian border and safely into Frankfurt. Things seem to be going smoothly as Jack and Galina board the train posing as a couple,but soon, all hell breaks loose.","id":"17774","runtime":89,"imdbId":"tt0298296","version":170,"lastModified":"1302195438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/004\/4d722d8c7b9aa1776e000004\/derailed-mid.jpg","studio":"Millennium Films","genre":"Action","title":"Derailed","releaseDate":1021766400000,"language":"en","type":"Movie","_key":"67093"} +{"label":"Bob Misiorowski","version":24,"id":"127542","lastModified":"1301902034000","name":"Bob Misiorowski","type":"Person","_key":"67094"} +{"label":"Toronto Stories","description":"Various lives intersect over the course of 48 hours in Canada's largest and most culturally diverse city.","id":"17775","runtime":89,"imdbId":"tt1113827","version":159,"lastModified":"1302215295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/925\/4bc950a5017a3c57fe023925\/toronto-stories-mid.jpg","genre":"Drama","title":"Toronto Stories","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"67095"} +{"label":"We Are the Strange","description":"Two outcasts fight for survival in a sinister fantasy world. Their lives are constantly in jeopardy after they're caught in the middle of a deadly battle between bizarre monsters on their way to the ice cream shop.","id":"17778","runtime":94,"imdbId":"tt0923985","homepage":"http:\/\/www.wearethestrange.com","version":209,"lastModified":"1300980478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4bc950a7017a3c57fe023936\/we-are-the-strange-mid.jpg","studio":"Str8nime","genre":"Animation","title":"We Are the Strange","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"67096"} +{"label":"M. dot Strange","version":22,"id":"82372","lastModified":"1301902237000","name":"M. dot Strange","type":"Person","_key":"67097"} +{"label":"Halleh Seddighzadeh","version":20,"id":"82373","lastModified":"1301901810000","name":"Halleh Seddighzadeh","type":"Person","_key":"67098"} +{"label":"Stuart Mahoney","version":19,"id":"82375","lastModified":"1301902063000","name":"Stuart Mahoney","type":"Person","_key":"67099"} +{"label":"David Choe","version":19,"id":"82376","lastModified":"1301901717000","name":"David Choe","type":"Person","_key":"67100"} +{"label":"Chaylon Blancett","version":19,"id":"82377","lastModified":"1301902237000","name":"Chaylon Blancett","type":"Person","_key":"67101"} +{"label":"Here Come the ABCs","description":"Learn the ABC's the fun way with The Grammy\u00ae - winning rock legends: THEY MIGHT BE GIANTS 'HERE COME THE ABCs' CD + DVD features 24 New Songs PLUS 24 Music Videos. Enjoy both the CD and DVD in this package. The DVD contains over 45 minutes of animations, the wonderful puppets of the Deeply Felt Puppet Theater and performances!","id":"17779","runtime":49,"version":67,"lastModified":"1300980479000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93f\/4bc950a7017a3c57fe02393f\/here-come-the-abcs-mid.jpg","genre":"Music","title":"Here Come the ABCs","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"67102"} +{"label":"John Linnell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/115\/4d21044d5e73d659b7000115\/john-linnell-profile.jpg","version":17,"id":"93463","lastModified":"1301901700000","name":"John Linnell","type":"Person","_key":"67103"} +{"label":"John Flansburgh","version":17,"id":"143817","lastModified":"1301901993000","name":"John Flansburgh","type":"Person","_key":"67104"} +{"label":"Valami Amerika 2","description":"A lott\u00f3nyerem\u00e9nynek h\u00e1la, Tam\u00e1s megcsin\u00e1lhatta a filmj\u00e9t, ami azonban a v\u00e1rakoz\u00e1sokkal ellent\u00e9tben nagyot bukott. A h\u00e1rom fi\u00fa egy k\u00e9peslap r\u00e9v\u00e9n Alex nyom\u00e1ra jut, aki most szabadult a dutyib\u00f3l Amerik\u00e1ban \u00e9s megint csak \u00e1ln\u00e9ven, egy sz\u00edndarab jogait akarja megszerezni. A fi\u00fak azt rem\u00e9lik, hogy megtal\u00e1lj\u00e1k Alexet, megveszik el\u0151le a jogokat \u00e9s v\u00e9gre visszaszerzik a hatvan milli\u00f3jukat, amivel a f\u00e9rfi lel\u00e9pett. Ir\u00e1ny Amerika! \u00c1m term\u00e9szetesen a dolgok megint nem az elk\u00e9pzel\u00e9sek szerint alakulnak. V\u00e9g","id":"17780","runtime":110,"imdbId":"tt1235075","homepage":"http:\/\/www.valamiamerika.hu","version":75,"lastModified":"1301417568000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94c\/4bc950ab017a3c57fe02394c\/valami-amerika-2-mid.jpg","studio":"Skyfilm","genre":"Comedy","title":"Valami Amerika 2","releaseDate":1229558400000,"language":"en","type":"Movie","_key":"67105"} +{"label":"Tibor Szerv\u00e9t","version":23,"id":"82358","lastModified":"1301902390000","name":"Tibor Szerv\u00e9t","type":"Person","_key":"67106"} +{"label":"Ferenc Hujber","version":23,"id":"82359","lastModified":"1301902392000","name":"Ferenc Hujber","type":"Person","_key":"67107"} +{"label":"Eszter \u00d3nodi","version":23,"id":"82360","lastModified":"1301902528000","name":"Eszter \u00d3nodi","type":"Person","_key":"67108"} +{"label":"K\u00e1tya Tompos","version":20,"id":"82361","lastModified":"1301902063000","name":"K\u00e1tya Tompos","type":"Person","_key":"67109"} +{"label":"Lucia Brawley","version":20,"id":"82362","lastModified":"1301902237000","name":"Lucia Brawley","type":"Person","_key":"67110"} +{"label":"Szonja Oroszl\u00e1n","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4cd51abb7b9aa11b260000b5\/szonja-oroszlan-profile.jpg","version":25,"id":"82363","lastModified":"1301901901000","name":"Szonja Oroszl\u00e1n","type":"Person","_key":"67111"} +{"label":"Imre Csuja","version":28,"id":"82364","lastModified":"1301902468000","name":"Imre Csuja","type":"Person","_key":"67112"} +{"label":"G\u00e1bor Herendi","version":26,"id":"123970","lastModified":"1301902905000","name":"G\u00e1bor Herendi","type":"Person","_key":"67113"} +{"label":"So Proudly We Hail","description":"Story which centres around a nurse during World War II in charge of her detail in the Pacific where she tirelessly mends the wounded and bolsters morale.","id":"17781","runtime":126,"imdbId":"tt0036367","version":90,"lastModified":"1300980479000","studio":"Paramount Pictures","genre":"Action","title":"So Proudly We Hail","releaseDate":-837216000000,"language":"en","type":"Movie","_key":"67114"} +{"label":"UFC 11.5 Ultimate Ultimate 2","description":"The Ultimate Ultimate 2 (also referred to as \"Ultimate Ultimate 1996\" and \"UFC 11.5\") was a mixed martial arts event held by the Ultimate Fighting Championship on December 7, 1996. The event took place at the Fair Park Arena in Birmingham, Alabama, and was broadcast live on pay-per-view in the United States, and released on home video.","id":"17785","runtime":0,"imdbId":"tt0487985","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=14","version":44,"lastModified":"1301907249000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/955\/4bc950ac017a3c57fe023955\/ufc-11-5-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 11.5 Ultimate Ultimate 2","releaseDate":849916800000,"language":"en","type":"Movie","_key":"67115"} +{"label":"Li mi de cai xiang","description":"No overview found.","id":"17789","runtime":96,"imdbId":"tt1299370","version":37,"lastModified":"1301908556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95e\/4bc950ad017a3c57fe02395e\/li-mi-de-cai-xiang-mid.jpg","studio":"Huayi Brothers","title":"Li mi de cai xiang","releaseDate":1221696000000,"language":"en","type":"Movie","_key":"67116"} +{"label":"Zone Troopers","description":"In Italy during WW II, a patrol of American soldiers discover a space ship that has crash-landed in the woods, and they come across its alien crew. A nearby Nazi unit also finds out about the alien craft, and sends a patrol to capture it and the Americans.","id":"17790","runtime":86,"imdbId":"tt0092298","version":202,"lastModified":"1301415393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/967\/4bc950ad017a3c57fe023967\/zone-troopers-mid.jpg","genre":"Science Fiction","title":"Zone Troopers","releaseDate":496972800000,"language":"en","type":"Movie","_key":"67117"} +{"label":"UFC 7.5 Ultimate Ultimate","description":"The Ultimate Ultimate (also referred to as \"Ultimate Ultimate 1995\" and \"UFC 7.5\") was a mixed martial arts event held by the Ultimate Fighting Championship on December 16, 1995, at the Mammoth Gardens in Denver, Colorado. The event was seen live on pay per view in the United States, and later released on home video.","id":"17791","runtime":180,"imdbId":"tt0487984","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventdetail.fightCard&eid=9","version":43,"lastModified":"1301908279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96c\/4bc950ad017a3c57fe02396c\/ufc-7-5-mid.jpg","studio":"SEG Sports","genre":"Sports Film","title":"UFC 7.5 Ultimate Ultimate","releaseDate":819072000000,"language":"en","type":"Movie","_key":"67118"} +{"label":"Omen IV: The Awakening","description":"Damien Thorn is dead, but his prophecy is reborn in a girl named Delia, who is adopted by two attorneys, Gene & Karen York. When Karen realises her baby was born under suspicious circumstances, she hires a private investigator to find Delia's real parents. A series of bizarre accidents occur, and Karen begins to suspect everyone of conspiring her as she unravels the truth about her baby.\n","id":"17792","runtime":97,"imdbId":"tt0102585","version":114,"lastModified":"1301903432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/971\/4bc950ad017a3c57fe023971\/omen-iv-the-awakening-mid.jpg","studio":"FNM Films","genre":"Horror","title":"Omen IV: The Awakening","releaseDate":674697600000,"language":"en","type":"Movie","_key":"67119"} +{"label":"Rollin Sydan","description":"No overview found.","id":"17794","runtime":78,"imdbId":"tt0796232","homepage":"http:\/\/www.rollinsydan.com\/","version":60,"lastModified":"1302142589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97e\/4bc950ae017a3c57fe02397e\/rollin-sydan-mid.jpg","studio":"Matila R\u00f6hr Productions Oy","genre":"Animation","title":"Rollin Sydan","releaseDate":1197590400000,"language":"en","type":"Movie","_key":"67120"} +{"label":"Allu Tuppurainen","version":3,"id":"232299","lastModified":"1302142345000","name":"Allu Tuppurainen","type":"Person","_key":"67121"} +{"label":"Saija Lentonen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/6d1\/4d2a17ff5e73d626ac0036d1\/saija-lentonen-profile.jpg","version":17,"id":"148336","lastModified":"1302142384000","name":"Saija Lentonen","type":"Person","_key":"67122"} +{"label":"Pekka Lehtosaari","version":19,"id":"148010","lastModified":"1302143620000","name":"Pekka Lehtosaari","type":"Person","_key":"67123"} +{"label":"My Fellow Americans","description":"They used to run the country. Now they're running for their lives! Two on-the-lam former Presidents of the United States. Framed in a scandal by the current President and pursued by armed agents, the two squabbling political foes plunge into a desperately frantic search for the evidence that will establish their innocence. ","id":"17795","runtime":101,"imdbId":"tt0117119","version":151,"lastModified":"1301903328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7d\/4d4267677b9aa15bb0003f7d\/my-fellow-americans-mid.jpg","genre":"Comedy","title":"My Fellow Americans","releaseDate":851040000000,"language":"en","tagline":"A comedy about life, liberty and the pursuit of two ex-presidents.","type":"Movie","_key":"67124"} +{"label":"Freaked","description":"A vain actor, his best friend, and an activist end up at a mutant freak farm run by a weirdo scientist.","id":"17796","runtime":86,"imdbId":"tt0109838","version":91,"lastModified":"1301903912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36f\/4c77db9f5e73d6041700036f\/freaked-mid.jpg","studio":"Tommy","genre":"Comedy","title":"Freaked","releaseDate":747705600000,"language":"en","type":"Movie","_key":"67125"} +{"label":"Tom Stern","version":56,"id":"460","lastModified":"1300054677000","name":"Tom Stern","type":"Person","_key":"67126"} +{"label":"Into the West","description":"Steven Spielberg executive produced this TNT miniseries about American Westward expansion during the 19th century. Told from both the perspective of the white Wheeler family and the Native American Lakota tribe, the 12-hour epic follows the clans as they struggle to find their place in a country confounded by turmoil and change. ","id":"17800","runtime":552,"imdbId":"tt0409572","version":100,"lastModified":"1301907473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/996\/4bc950af017a3c57fe023996\/into-the-west-mid.jpg","genre":"Adventure","title":"Into the West","releaseDate":1118361600000,"language":"en","type":"Movie","_key":"67127"} +{"label":"Tonantzin Carmelo","version":21,"id":"82381","lastModified":"1301902187000","name":"Tonantzin Carmelo","type":"Person","_key":"67128"} +{"label":"The Letter","description":"The wife of a rubber plantation administrator shoots a man to death claiming he \"tried to make love to me\" and killed him to save her honour. When a damning letter she wrote on the day of the shooting turns up in the hands of her attorney he becomes suspicious.","id":"17801","runtime":95,"imdbId":"tt0032701","trailer":"http:\/\/www.youtube.com\/watch?v=F-1sgvur72o","version":124,"lastModified":"1301903663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99f\/4bc950b0017a3c57fe02399f\/the-letter-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"The Letter","releaseDate":-918604800000,"language":"en","type":"Movie","_key":"67129"} +{"label":"James Stephenson","version":23,"id":"82382","lastModified":"1301901717000","name":"James Stephenson","type":"Person","_key":"67130"} +{"label":"Frieda Inescort","version":28,"id":"82383","lastModified":"1301902224000","name":"Frieda Inescort","type":"Person","_key":"67131"} +{"label":"Bruce Lester","version":24,"id":"82384","lastModified":"1301902455000","name":"Bruce Lester","type":"Person","_key":"67132"} +{"label":"Victor Sen Yung","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ea\/4c0211ea017a3c702a0011ea\/victor-sen-yung-profile.jpg","version":37,"birthday":"-1710637200000","id":"82385","lastModified":"1301901972000","name":"Victor Sen Yung","type":"Person","_key":"67133"} +{"label":"1201","description":"Tautly directed by Jack Sholder (A Nightmare on Elm Street Part 2: Freddy's Revenge, The Hidden) and co-starring Academy Award\u00ae winner Martin Landau (Crimes and Misdemeanors), 12:01 is a spirited sci-fi thriller you'll enjoy again and again! It's Back to the Future meets Groundhog Day!","id":"17803","runtime":94,"imdbId":"tt0106188","version":59,"lastModified":"1301906064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a8\/4bc950b1017a3c57fe0239a8\/1201-mid.jpg","studio":"Chanticleer Films","genre":"Science Fiction","title":"1201","releaseDate":741830400000,"language":"en","type":"Movie","_key":"67134"} +{"label":"Nicolas Surovy","version":19,"id":"82433","lastModified":"1301902455000","name":"Nicolas Surovy","type":"Person","_key":"67135"} +{"label":"The Paleface","description":"Bob Hope stars in this laugh-packed wild west spoof co-starring Jane Russell as a sexy Calamity Jane, Hope is a meek frontier dentist, \"Painless\" Peter Potter, who finds himself gunslinging alongside the fearless Calamity as she fights off outlaws and Indians.","id":"17804","runtime":91,"imdbId":"tt0040679","version":89,"lastModified":"1301904875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b1\/4bc950b1017a3c57fe0239b1\/the-paleface-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Paleface","releaseDate":-663379200000,"language":"en","type":"Movie","_key":"67136"} +{"label":"Bobby Watson","version":16,"id":"141408","lastModified":"1301902473000","name":"Bobby Watson","type":"Person","_key":"67137"} +{"label":"Jackie Searl","version":17,"id":"103622","lastModified":"1301902229000","name":"Jackie Searl","type":"Person","_key":"67138"} +{"label":"Joseph Vitale","version":20,"id":"97282","lastModified":"1301902946000","name":"Joseph Vitale","type":"Person","_key":"67139"} +{"label":"Charles Trowbridge","version":33,"id":"96721","lastModified":"1301902400000","name":"Charles Trowbridge","type":"Person","_key":"67140"} +{"label":"Clem Bevans","version":19,"id":"136895","lastModified":"1301985766000","name":"Clem Bevans","type":"Person","_key":"67141"} +{"label":"Wade Crosby","version":21,"id":"83398","lastModified":"1301902576000","name":"Wade Crosby","type":"Person","_key":"67142"} +{"label":"Iron Eyes Cody","version":21,"id":"127032","lastModified":"1301902415000","name":"Iron Eyes Cody","type":"Person","_key":"67143"} +{"label":"John Maxwell","version":20,"id":"7385","lastModified":"1301901526000","name":"John Maxwell","type":"Person","_key":"67144"} +{"label":"Alien Tracker","description":"In a galaxy far away, alien criminals organize a spectacular prison break. Pursued by their home planet's authorities, their leader Zin decides there's only one place to go: through a wormhole that allows instantaneous travel to Earth. Cole is the Alien Tracker who's in hot pursuit of the escaped convicts.","id":"17805","runtime":103,"imdbId":"tt0481932","version":392,"lastModified":"1301907516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ba\/4bc950b2017a3c57fe0239ba\/alien-tracker-mid.jpg","genre":"Action","title":"Alien Tracker","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67145"} +{"label":"Leanne Wilson","version":19,"id":"82390","lastModified":"1301902491000","name":"Leanne Wilson","type":"Person","_key":"67146"} +{"label":"Richard Yearwood","version":19,"id":"82391","lastModified":"1301902491000","name":"Richard Yearwood","type":"Person","_key":"67147"} +{"label":"Forever Lulu","description":"A schizophrenic romantic tracks down her college sweetheart to help her find their son she gave up for adoption sixteen years ago to the dismay of his new wife.","id":"17806","runtime":95,"imdbId":"tt0196723","version":129,"lastModified":"1302237081000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d4\/4d6679f95e73d66a5c0011d4\/forever-lulu-mid.jpg","title":"Forever Lulu","releaseDate":946684800000,"language":"en","type":"Movie","_key":"67148"} +{"label":"John Kaye","version":20,"id":"82394","lastModified":"1301902204000","name":"John Kaye","type":"Person","_key":"67149"} +{"label":"Painted Skin","description":"Painted Skin is based on one of Pu Songling's classic short stories in Strange Stories from a Chinese Studio. Zhou Xun stars as Xiao Wei, a fox spirit that feasts on human hearts in order to maintain her lovely, youthful appearance. When General Wang Sheng (Chen Kun) 'rescues' her from a band of bandits and brings her home, trouble brews as the demon falls in love with the general.","id":"17808","runtime":103,"imdbId":"tt1055300","version":71,"lastModified":"1301904967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9dd\/4bc950ba017a3c57fe0239dd\/wa-pei-mid.jpg","studio":"Golden Sun Films","genre":"Action","title":"Painted Skin","releaseDate":1222300800000,"language":"en","type":"Movie","_key":"67150"} +{"label":"Fist of Legend","description":"Chen Zhen, a Chinese engineering student in Kyoto, who braves the insults and abuse of his Japanse fellow students for his local love Mitsuko Yamada, daughter of the director, returns in 1937 to his native Shangai, under Japanse protectorate -in fact military occupation- after reading about the death of his kung-fu master Hou Ting-An in a fight against the Japanese champion Ryuichi Akutagawa.","id":"17809","runtime":103,"imdbId":"tt0110200","trailer":"http:\/\/www.youtube.com\/watch?v=1169","version":123,"lastModified":"1301903625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f7\/4bc950bd017a3c57fe0239f7\/jing-wu-ying-xiong-mid.jpg","studio":"Eastern Productions","genre":"Action","title":"Fist of Legend","releaseDate":788054400000,"language":"en","type":"Movie","_key":"67151"} +{"label":"Shinobu Nakayama","version":22,"id":"82396","lastModified":"1301901862000","name":"Shinobu Nakayama","type":"Person","_key":"67152"} +{"label":"Paul Chun","version":39,"id":"87733","lastModified":"1301902535000","name":"Paul Chun","type":"Person","_key":"67153"} +{"label":"Lone Wolf and Cub: Baby Cart at the River Styx","description":"Lone Wolf & Cub return in their second adventure.\nAfter a betrayal by the evil Yagyu clan, Ogami Itto is forced to leave his post at the Royal Court and become assassin for hire. Along with his infant son Daigoro, they are now Lone Wolf and Cub. \nTracked by a band of female ninja and facing the deadly 'Three Gods of Death' Lone Wolf and Cub are drawn into one of their bloodiest confrontations yet.","id":"17810","runtime":81,"imdbId":"tt0068816","version":73,"lastModified":"1301903846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a04\/4bc950be017a3c57fe023a04\/kozure-okami-sanzu-no-kawa-no-ubaguruma-mid.jpg","genre":"Eastern","title":"Lone Wolf and Cub: Baby Cart at the River Styx","releaseDate":63072000000,"language":"en","type":"Movie","_key":"67154"} +{"label":"The Legend II","description":"The hero Fong Sai Yuk becomes involved in the secret brotherhood \"The Red Flower\", who are trying to overthrow the Manchurian emperor and re-establishing the Ming dynasty. The social upheaval is combined with Sai Yuk's personal moral conflict about how to conform to the rigid regime of the brotherhood and on top of that sort out his difficult love life, saddled with two presumptive wives.","id":"17811","runtime":96,"imdbId":"tt0106937","trailer":"http:\/\/www.youtube.com\/watch?v=1167","version":213,"lastModified":"1301906464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a09\/4bc950be017a3c57fe023a09\/fong-sai-yuk-ii-mid.jpg","studio":"Eastern Productions","genre":"Action","title":"The Legend II","releaseDate":736214400000,"language":"en","type":"Movie","_key":"67155"} +{"label":"El c\u00e1rtel","description":"Based on Mexico's current criminal climate, EL C\u00c1RTEL is a rare look into the values and practices of the world's most intriguing and enigmatic industry - the multi-billion dollar business of drug trafficking. When Jules Land, a na\u00efve business journalist, approaches Mexico's most notorious drug cartel and requests an audience with its leader, a one-time-priest turned murderous cutthroat, he quickl","id":"17812","runtime":90,"imdbId":"tt0493463","homepage":"http:\/\/latino.myspace.com\/elcartelpelicula","version":66,"lastModified":"1301903939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb4\/4d5091015e73d617bd003eb4\/el-c-rtel-mid.jpg","genre":"Drama","title":"El c\u00e1rtel","releaseDate":1242086400000,"language":"en","type":"Movie","_key":"67156"} +{"label":"Brian J. Bagley","version":17,"id":"133756","lastModified":"1301902589000","name":"Brian J. Bagley","type":"Person","_key":"67157"} +{"label":"Jos\u00e9 Luis Franco","version":17,"id":"133758","lastModified":"1301902560000","name":"Jos\u00e9 Luis Franco","type":"Person","_key":"67158"} +{"label":"Mauricio Islas","version":17,"id":"133759","lastModified":"1301902560000","name":"Mauricio Islas","type":"Person","_key":"67159"} +{"label":"Tania Arredondo","version":17,"id":"133760","lastModified":"1301902560000","name":"Tania Arredondo","type":"Person","_key":"67160"} +{"label":"Howard Gibson","version":18,"id":"133761","lastModified":"1301902739000","name":"Howard Gibson","type":"Person","_key":"67161"} +{"label":"Miguel Rodarte","version":17,"id":"133762","lastModified":"1301902739000","name":"Miguel Rodarte","type":"Person","_key":"67162"} +{"label":"Rafael Oliveira","version":17,"id":"133763","lastModified":"1301902739000","name":"Rafael Oliveira","type":"Person","_key":"67163"} +{"label":"Alejandro de la Madrid","version":19,"id":"133764","lastModified":"1301903066000","name":"Alejandro de la Madrid","type":"Person","_key":"67164"} +{"label":"Khotan","version":17,"id":"133765","lastModified":"1301902799000","name":"Khotan","type":"Person","_key":"67165"} +{"label":"Hector Kotsifakis","version":17,"id":"133766","lastModified":"1301902799000","name":"Hector Kotsifakis","type":"Person","_key":"67166"} +{"label":"Humberto Elizondo","version":17,"id":"133767","lastModified":"1301902811000","name":"Humberto Elizondo","type":"Person","_key":"67167"} +{"label":"Tom Martino","version":17,"id":"133768","lastModified":"1301902811000","name":"Tom Martino","type":"Person","_key":"67168"} +{"label":"Alex & Emma","description":"Alex is an author whose writer's block and gambling debts have landed him in a jam. In order get loan sharks off his back, he must finish his novel in 30 days or wind up dead. To help him complete his manuscript he hires stenographer Emma. As Alex begins to dictate his tale of a romantic love triangle to the charming yet somewhat opinionated stenographer, Emma challenges his ideas at every turn. Her unsolicited yet intriguing input begins to inadvertently influence Alex and his story and soon re","id":"17813","runtime":96,"imdbId":"tt0318283","homepage":"http:\/\/alexandemmamovie.warnerbros.com\/","version":229,"lastModified":"1301904773000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a30\/4bc950c4017a3c57fe023a30\/alex-emma-mid.jpg","genre":"Action","title":"Alex & Emma","releaseDate":1055721600000,"language":"en","tagline":"Is it love... or are they just imagining things?","type":"Movie","_key":"67169"} +{"label":"Assault on Precinct 13","description":"The lone inhabitants of an abandoned police station are under attack by the overwhelming numbers of a seemingly unstoppable street gang.","id":"17814","runtime":91,"imdbId":"tt0074156","trailer":"http:\/\/www.youtube.com\/watch?v=3109","version":345,"lastModified":"1301903595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06f\/4c13f83d7b9aa1045a00006f\/assault-on-precinct-13-mid.jpg","studio":"The CKK Corporation","genre":"Action","title":"Assault on Precinct 13","releaseDate":216000000000,"language":"en","type":"Movie","_key":"67170"} +{"label":"Austin Stoker","version":22,"id":"103707","lastModified":"1301902491000","name":"Austin Stoker","type":"Person","_key":"67171"} +{"label":"Darwin Joston","version":20,"id":"105624","lastModified":"1301902540000","name":"Darwin Joston","type":"Person","_key":"67172"} +{"label":"Laurie Zimmer","version":19,"id":"109944","lastModified":"1301902540000","name":"Laurie Zimmer","type":"Person","_key":"67173"} +{"label":"Martin West","version":19,"id":"109945","lastModified":"1301902544000","name":"Martin West","type":"Person","_key":"67174"} +{"label":"Peter Bruni","version":18,"id":"109946","lastModified":"1301902651000","name":"Peter Bruni","type":"Person","_key":"67175"} +{"label":"John J. Fox","version":18,"id":"109947","lastModified":"1301902480000","name":"John J. Fox","type":"Person","_key":"67176"} +{"label":"Marc Ross","version":18,"id":"109948","lastModified":"1301902308000","name":"Marc Ross","type":"Person","_key":"67177"} +{"label":"Alan Koss","version":18,"id":"109949","lastModified":"1301902480000","name":"Alan Koss","type":"Person","_key":"67178"} +{"label":"Gilbert De la Pena","version":18,"id":"109950","lastModified":"1301902480000","name":"Gilbert De la Pena","type":"Person","_key":"67179"} +{"label":"Peter Frankland","version":22,"id":"109954","lastModified":"1301902480000","name":"Peter Frankland","type":"Person","_key":"67180"} +{"label":"Al Nakauchi","version":18,"id":"109955","lastModified":"1301902651000","name":"Al Nakauchi","type":"Person","_key":"67181"} +{"label":"Gilman Rankin","version":18,"id":"109957","lastModified":"1301902480000","name":"Gilman Rankin","type":"Person","_key":"67182"} +{"label":"Cliff Battuello","version":18,"id":"109958","lastModified":"1301902480000","name":"Cliff Battuello","type":"Person","_key":"67183"} +{"label":"Horace Johnson","version":18,"id":"109959","lastModified":"1301902480000","name":"Horace Johnson","type":"Person","_key":"67184"} +{"label":"Valentine Villareal","version":18,"id":"109960","lastModified":"1301902480000","name":"Valentine Villareal","type":"Person","_key":"67185"} +{"label":"Kenny Miyamoto","version":18,"id":"109961","lastModified":"1301902480000","name":"Kenny Miyamoto","type":"Person","_key":"67186"} +{"label":"Jerry Viramontes","version":18,"id":"109962","lastModified":"1301902651000","name":"Jerry Viramontes","type":"Person","_key":"67187"} +{"label":"Len Whitaker","version":19,"id":"109963","lastModified":"1301902720000","name":"Len Whitaker","type":"Person","_key":"67188"} +{"label":"Kris Young","version":18,"id":"109964","lastModified":"1301902480000","name":"Kris Young","type":"Person","_key":"67189"} +{"label":"Randy Moore","version":23,"id":"20786","lastModified":"1301901771000","name":"Randy Moore","type":"Person","_key":"67190"} +{"label":"Warren Bradley III","version":18,"id":"109965","lastModified":"1301902480000","name":"Warren Bradley III","type":"Person","_key":"67191"} +{"label":"Joe Woo Jr.","version":18,"id":"109966","lastModified":"1301902651000","name":"Joe Woo Jr.","type":"Person","_key":"67192"} +{"label":"Brent Keast","version":18,"id":"109967","lastModified":"1301902651000","name":"Brent Keast","type":"Person","_key":"67193"} +{"label":"Maynard Smith","version":18,"id":"109968","lastModified":"1301902480000","name":"Maynard Smith","type":"Person","_key":"67194"} +{"label":"James Johnson","version":20,"id":"102259","lastModified":"1301902647000","name":"James Johnson","type":"Person","_key":"67195"} +{"label":"San Antonio","description":"Rancher Clay Hardin arrives in San Antonio to search for and capture Roy Stuart, notorious leader of a gang of cattle rustlers. The vicious outlaw is indeed in the Texan town, intent on winning the affections of a beautiful chanteuse named Jeanne Starr. When the lovely lady meets and falls in love with the charismatic Hardin, the stakes for both men become higher.","id":"17818","runtime":109,"imdbId":"tt0038048","version":60,"lastModified":"1301908279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a50\/4bc950c7017a3c57fe023a50\/san-antonio-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"San Antonio","releaseDate":-757728000000,"language":"en","type":"Movie","_key":"67196"} +{"label":"Her Alibi","description":"A writer of BAD detective novels is in full writers' block. He pretends to be the alibi of a beautiful woman who was arrested for murder at first thinking her innocent, but as she shows more and more interesting abilities (such as knife throwing) he begins to doubt his first assessment.","id":"17819","runtime":94,"imdbId":"tt0097500","version":255,"lastModified":"1301905860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a59\/4bc950c8017a3c57fe023a59\/her-alibi-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Her Alibi","releaseDate":602467200000,"language":"en","type":"Movie","_key":"67197"} +{"label":"Paulina Porizkova","version":23,"id":"82406","lastModified":"1301902520000","name":"Paulina Porizkova","type":"Person","_key":"67198"} +{"label":"Show Boat","description":"A dashing Mississippi river gambler wins the affections of the daughter of the owner of the Show Boat.","id":"17820","runtime":107,"imdbId":"tt0044030","version":372,"lastModified":"1302027524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/32b\/4c5439b67b9aa147f400032b\/show-boat-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Musical","title":"Show Boat","releaseDate":-582940800000,"language":"en","type":"Movie","_key":"67199"} +{"label":"Kathryn Grayson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/196\/4c5190387b9aa13d4a000196\/kathryn-grayson-profile.jpg","version":31,"id":"82407","lastModified":"1302026300000","name":"Kathryn Grayson","type":"Person","_key":"67200"} +{"label":"Crossworlds","description":"College good guy Joe is drawn into a battle to save the world from arch-enemy Ferris. Joe's heirloom pendant just happens to be the key to the staff that opens doors to the Crossworlds. When Laura shows up to check on the key and Ferris' goons begin their assaults, they run to semi-retired adventurer A.T. for help and guidance.","id":"17821","runtime":90,"imdbId":"tt0115985","version":285,"lastModified":"1301906614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc950c8017a3c57fe023a5e\/crossworlds-mid.jpg","genre":"Action","title":"Crossworlds","releaseDate":854928000000,"language":"en","type":"Movie","_key":"67201"} +{"label":"Private Resort","description":"Jack (Depp) and his buddy ben (Morrow) check in at a posh Florida resort, planning to spend every hour in hot pursuit of gorgeous babes. But their plans hit a major detour when they try to bed the wife of a conniving jewel theif (Ector Elizondo). They'll have to outsmart him, a nasty security guard and an obnovious jock if they're ever going to get a moment alone with the girls of their dreams!","id":"17824","runtime":82,"imdbId":"tt0089839","trailer":"http:\/\/www.youtube.com\/watch?v=o_TSNE9MRBQ","version":195,"lastModified":"1301904474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a63\/4bc950c8017a3c57fe023a63\/private-resort-mid.jpg","genre":"Comedy","title":"Private Resort","releaseDate":473385600000,"language":"en","tagline":"Spend a weekend with no reservations!","type":"Movie","_key":"67202"} +{"label":"The 11 Commandments","description":"No overview found.","id":"17825","runtime":85,"imdbId":"tt0386695","version":116,"lastModified":"1301907517000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a68\/4bc950c8017a3c57fe023a68\/les-11-commandements-mid.jpg","studio":"M6 Films","title":"The 11 Commandments","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67203"} +{"label":"Benjamin Morgaine","version":16,"id":"146604","lastModified":"1301902540000","name":"Benjamin Morgaine","type":"Person","_key":"67204"} +{"label":"A Song Is Born","description":"The story of seven scholars (including Danny Kaye and Benny Goodman) in search of an expert to teach them about swing music. They seem to have found the perfect candidate in winsome nightclub singer Honey Swanson (Virginia Mayo). But Honey's gangster boyfriend doesn't want to give her up.","id":"17829","runtime":113,"imdbId":"tt0040820","version":214,"lastModified":"1301905351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a71\/4bc950c9017a3c57fe023a71\/a-song-is-born-mid.jpg","studio":"Metro-Goldwyn-Mayer","title":"A Song Is Born","releaseDate":-669081600000,"language":"en","type":"Movie","_key":"67205"} +{"label":"Benny Goodman","version":24,"id":"82408","lastModified":"1301901443000","name":"Benny Goodman","type":"Person","_key":"67206"} +{"label":"Tekken: The Motion Picture","description":"All of your favorite Tekken characters are here as they battle their way through each other to win the Iron Fist tournament, where fighters of unequaled strength from around the world gather to test their strength in the gladitorial arena. Of course, intrigue and danger abound, with professional assassins, champions of justice, and those whose prowess earns them fear and respect facing off.","id":"17830","runtime":60,"imdbId":"tt0272880","version":93,"lastModified":"1301908277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7e\/4bc950ce017a3c57fe023a7e\/tekken-the-motion-picture-mid.jpg","genre":"Animation","title":"Tekken: The Motion Picture","releaseDate":852076800000,"language":"en","type":"Movie","_key":"67207"} +{"label":"A Tale Of Two Cities","description":"The exciting story of Dr. Manette, who escapes the horrors of the infamous Bastille prison in Paris. The action switches between London and Paris on the eve of the revolution where we witness 'the best of times and the worst of times' - love, hope, the uncaring French Aristocrats and the terror of a revolutionary citizen's army intent on exacting revenge.","id":"17831","runtime":128,"imdbId":"tt0027075","version":312,"lastModified":"1301908314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a87\/4bc950ce017a3c57fe023a87\/a-tale-of-two-cities-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Action","title":"A Tale Of Two Cities","releaseDate":-1073606400000,"language":"en","type":"Movie","_key":"67208"} +{"label":"Edna May Oliver","version":30,"id":"82412","lastModified":"1301902031000","name":"Edna May Oliver","type":"Person","_key":"67209"} +{"label":"Jack Conway","version":28,"id":"82413","lastModified":"1301901946000","name":"Jack Conway","type":"Person","_key":"67210"} +{"label":"Kull the Conqueror","description":"A barbarian named Kull becomes ruler after defeating the old king in battle, thus receiving his crown. But direct heirs of the king, trying to topple Kull and regain the throne, bring an old witch queen Akivasha back to life. Their plan backfires, however, as Akivasha plans to have her demon lords rule the kingdom alone. The only thing that can stop her is the breath of the god Volka, and Kull.","id":"17832","runtime":95,"imdbId":"tt0119484","version":220,"lastModified":"1301905438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8c\/4bc950cf017a3c57fe023a8c\/kull-the-conqueror-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"Kull the Conqueror","releaseDate":872812800000,"language":"en","type":"Movie","_key":"67211"} +{"label":"Joe Shaw","version":21,"id":"82409","lastModified":"1301902063000","name":"Joe Shaw","type":"Person","_key":"67212"} +{"label":"Terry O'Neill","version":20,"id":"82410","lastModified":"1301902063000","name":"Terry O'Neill","type":"Person","_key":"67213"} +{"label":"Peter Petruna","version":20,"id":"82411","lastModified":"1301902063000","name":"Peter Petruna","type":"Person","_key":"67214"} +{"label":"John Nicolella","version":22,"id":"70765","lastModified":"1301902254000","name":"John Nicolella","type":"Person","_key":"67215"} +{"label":"A Simple Wish","description":"Murray is a male fairy godmother, and he is trying to help 8-year-old Anabel to fulfil her \"simple wish\" - that her father Oliver, who is a cab driver, would win the leading role in a Broadway musical. Unfortunately, Murray's magic wand is broken and the fairies convention is threatened by evil witches Claudia and Boots.","id":"17834","runtime":86,"imdbId":"tt0120133","version":129,"lastModified":"1301904499000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a95\/4bc950cf017a3c57fe023a95\/a-simple-wish-mid.jpg","genre":"Action","title":"A Simple Wish","releaseDate":877046400000,"language":"en","type":"Movie","_key":"67216"} +{"label":"Deborah Odell","version":21,"id":"43247","lastModified":"1301901491000","name":"Deborah Odell","type":"Person","_key":"67217"} +{"label":"Threads","description":"Documentary style account of a nuclear holocaust and its effect on the working class city of Sheffield, England; and the eventual long run effects of nuclear war on civilization.","id":"17835","runtime":112,"imdbId":"tt0090163","version":163,"lastModified":"1301906599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9e\/4bc950d0017a3c57fe023a9e\/threads-mid.jpg","genre":"Drama","title":"Threads","releaseDate":464745600000,"language":"en","type":"Movie","_key":"67218"} +{"label":"Karen Meagher","version":26,"id":"82414","lastModified":"1301902392000","name":"Karen Meagher","type":"Person","_key":"67219"} +{"label":"Virginia City","description":"Union officer Kerry Bradford escapes from a Confederate prison and races to intercept $5 million in gold destined for Confederate coffers. A Confederate sympathizer and a Mexican bandit, each with their own stake in the loot, stand in his way.","id":"17836","runtime":121,"imdbId":"tt0033226","version":71,"lastModified":"1301905335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa3\/4bc950d0017a3c57fe023aa3\/virginia-city-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"Virginia City","releaseDate":-939686400000,"language":"en","type":"Movie","_key":"67220"} +{"label":"Pride Bushido 13","description":"No overview found.","id":"17837","runtime":0,"version":26,"lastModified":"1300980487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4bc950d0017a3c57fe023aa8\/pride-bushido-13-mid.jpg","title":"Pride Bushido 13","releaseDate":1162684800000,"language":"en","type":"Movie","_key":"67221"} +{"label":"Pride Bushido 13","description":"No overview found.","id":"17838","runtime":0,"version":247,"lastModified":"1302215472000","title":"Pride Bushido 13","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67222"} +{"label":"Pride 32: The Real Deal","description":"No overview found.","id":"17840","runtime":0,"version":39,"lastModified":"1301908467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab2\/4bc950d1017a3c57fe023ab2\/pride-32-the-real-deal-mid.jpg","title":"Pride 32: The Real Deal","releaseDate":1161388800000,"language":"en","type":"Movie","_key":"67223"} +{"label":"please delete me, I'm a duplicate","description":"No overview found.","id":"17841","runtime":0,"version":43,"lastModified":"1300980487000","title":"please delete me, I'm a duplicate","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67224"} +{"label":"Pride Final Conflict Absolute","description":"No overview found.","id":"17842","runtime":0,"version":126,"lastModified":"1301417507000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab7\/4bc950d1017a3c57fe023ab7\/pride-final-conflict-absolute-mid.jpg","title":"Pride Final Conflict Absolute","releaseDate":1157846400000,"language":"en","type":"Movie","_key":"67225"} +{"label":"Pride Bushido 12","description":"No overview found.","id":"17843","runtime":0,"version":46,"lastModified":"1300980487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abc\/4bc950d1017a3c57fe023abc\/pride-bushido-12-mid.jpg","title":"Pride Bushido 12","releaseDate":1156636800000,"language":"en","type":"Movie","_key":"67226"} +{"label":"Pride Critical Countdown Absolute","description":"No overview found.","id":"17844","runtime":0,"version":20,"lastModified":"1301418406000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac6\/4bc950d1017a3c57fe023ac6\/pride-critical-countdown-absolute-mid.jpg","title":"Pride Critical Countdown Absolute","releaseDate":1151712000000,"language":"en","type":"Movie","_key":"67227"} +{"label":"Loft","description":"Five close friends, all of them married, share a loft to meet their mistresses. One day they find the body of a young woman in the loft. Since there are only five keys to the loft, the five men begin to suspect each other of murder.","id":"17845","runtime":118,"imdbId":"tt0926762","trailer":"http:\/\/www.youtube.com\/watch?v=OVp8-7OTiH8","homepage":"http:\/\/www.loftdefilm.be\/","version":118,"lastModified":"1301901942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae0\/4bc950d3017a3c57fe023ae0\/loft-mid.jpg","studio":"woestijnvis","genre":"Thriller","title":"Loft","releaseDate":1224633600000,"language":"en","tagline":"Five friends, one loft, one dead body","type":"Movie","_key":"67228"} +{"label":"Erik Van Looy","version":27,"id":"82418","lastModified":"1301901945000","name":"Erik Van Looy","type":"Person","_key":"67229"} +{"label":"Koen De Bouw","version":29,"id":"82420","lastModified":"1301901643000","name":"Koen De Bouw","type":"Person","_key":"67230"} +{"label":"Bruno Vanden Broucke","version":21,"id":"82421","lastModified":"1301902237000","name":"Bruno Vanden Broucke","type":"Person","_key":"67231"} +{"label":"Koen De Graeve","version":27,"id":"82422","lastModified":"1301901941000","name":"Koen De Graeve","type":"Person","_key":"67232"} +{"label":"Veerle Baetens","version":22,"id":"82423","lastModified":"1301902323000","name":"Veerle Baetens","type":"Person","_key":"67233"} +{"label":"Pride Bushido 11","description":"No overview found.","id":"17846","runtime":0,"version":88,"lastModified":"1300980488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aef\/4bc950d7017a3c57fe023aef\/pride-bushido-11-mid.jpg","title":"Pride Bushido 11","releaseDate":1149379200000,"language":"en","type":"Movie","_key":"67234"} +{"label":"Pride Total Elimination Absolute","description":"No overview found.","id":"17847","runtime":0,"version":29,"lastModified":"1300980488000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc950d7017a3c57fe023af9\/pride-total-elimination-absolute-mid.jpg","title":"Pride Total Elimination Absolute","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"67235"} +{"label":"Pride Bushido 10","description":"No overview found.","id":"17848","runtime":0,"version":84,"lastModified":"1301106144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b08\/4bc950d8017a3c57fe023b08\/pride-bushido-10-mid.jpg","title":"Pride Bushido 10","releaseDate":1143936000000,"language":"en","type":"Movie","_key":"67236"} +{"label":"Pride 31: Unbreakable","description":"No overview found.","id":"17849","runtime":0,"version":93,"lastModified":"1301907381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0d\/4bc950d8017a3c57fe023b0d\/pride-31-unbreakable-mid.jpg","title":"Pride 31: Unbreakable","releaseDate":1140912000000,"language":"en","type":"Movie","_key":"67237"} +{"label":"Pride Shockwave 2005","description":"No overview found.","id":"17851","runtime":0,"version":177,"lastModified":"1302216901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b12\/4bc950d8017a3c57fe023b12\/pride-shockwave-2005-mid.jpg","title":"Pride Shockwave 2005","releaseDate":1135987200000,"language":"en","type":"Movie","_key":"67238"} +{"label":"Pride 30: Fully Loaded","description":"Pride 30: Starting Over (also promoted as Fully Loaded outside Japan) was a mixed martial arts event held by Pride Fighting Championships on October 23, 2005 at the Saitama Super Arena in Saitama, Japan.","id":"17852","runtime":0,"version":52,"lastModified":"1301908529000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b17\/4bc950d8017a3c57fe023b17\/pride-30-fully-loaded-mid.jpg","title":"Pride 30: Fully Loaded","releaseDate":1130025600000,"language":"en","type":"Movie","_key":"67239"} +{"label":"Pride Bushido 9","description":"Pride Bushido 9 was a mixed martial arts event held by Pride Fighting Championships. This event held the quarterfinal and semifinal rounds of the first ever Welterweight tournament and Lightweight tournament. It took place at the Ariake Coliseum in Tokyo, Japan on September 25, 2005. Under BUSHIDO rules, matches are 2 rounds only.","id":"17853","runtime":0,"version":71,"lastModified":"1301905951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b1c\/4bc950d8017a3c57fe023b1c\/pride-bushido-9-mid.jpg","title":"Pride Bushido 9","releaseDate":1127606400000,"language":"en","type":"Movie","_key":"67240"} +{"label":"Pride Final Conflict 2005","description":"Pride Final Conflict 2005 was a mixed martial arts event held by the Pride Fighting Championships. This event featured the much anticipated heavyweight title fight between Fedor Emelianenko and Mirko Cro Cop and also comprised of the final round of the 2005 Middleweight Tournament. It took place on August 28th, 2005, at the Saitama Super Arena in Saitama, Japan.","id":"17854","runtime":0,"version":190,"lastModified":"1302216739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b21\/4bc950d8017a3c57fe023b21\/pride-final-conflict-2005-mid.jpg","title":"Pride Final Conflict 2005","releaseDate":1125187200000,"language":"en","type":"Movie","_key":"67241"} +{"label":"Ali G, Aiii","description":"Clips from Da Ali G Show with unaired sketches from the show.","id":"17856","runtime":103,"imdbId":"tt0284838","version":77,"lastModified":"1301904435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2f\/4bc950d9017a3c57fe023b2f\/ali-g-aiii-mid.jpg","studio":"Channel 4 Television Corporation","genre":"Comedy","title":"Ali G, Aiii","releaseDate":974678400000,"language":"en","type":"Movie","_key":"67242"} +{"label":"John Henry","version":19,"id":"82567","lastModified":"1301902502000","name":"John Henry","type":"Person","_key":"67243"} +{"label":"Gail Porter","version":20,"id":"26222","lastModified":"1301902172000","name":"Gail Porter","type":"Person","_key":"67244"} +{"label":"James Bobin","version":19,"id":"26205","lastModified":"1301902141000","name":"James Bobin","type":"Person","_key":"67245"} +{"label":"Steve Smith","version":19,"id":"26204","lastModified":"1301902141000","name":"Steve Smith","type":"Person","_key":"67246"} +{"label":"Vertigo 2005: U2 Live from Chicago","description":"The DVD features 23 electric performances, with songs drawn from across the bands entire career - from first album fan favorites such as \"Electric Co,\" through U2 classics such as \"Pride...,\" \"New Years Day\" and \"Where the Streets Have No Name\" and right up to date with \"Vertigo\" the smash hit that launched this years #1 studio album \"How To Dismantle An Atomic Bomb.\"","id":"17868","runtime":139,"imdbId":"tt0488664","version":128,"lastModified":"1301903351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b40\/4bc950da017a3c57fe023b40\/vertigo-2005-u2-live-from-chicago-mid.jpg","studio":"Line by Line Productions","genre":"Musical","title":"Vertigo 2005: U2 Live from Chicago","releaseDate":1131926400000,"language":"en","type":"Movie","_key":"67247"} +{"label":"Bono","version":40,"id":"33684","lastModified":"1301901135000","name":"Bono","type":"Person","_key":"67248"} +{"label":"The Edge","version":33,"id":"82426","lastModified":"1301901134000","name":"The Edge","type":"Person","_key":"67249"} +{"label":"Adam Clayton","version":28,"id":"82427","lastModified":"1301904129000","name":"Adam Clayton","type":"Person","_key":"67250"} +{"label":"Larry Mullen Jr.","version":29,"id":"82428","lastModified":"1301904130000","name":"Larry Mullen Jr.","type":"Person","_key":"67251"} +{"label":"Gavin Friday","version":23,"id":"62641","lastModified":"1301901579000","name":"Gavin Friday","type":"Person","_key":"67252"} +{"label":"Chris Rock: Bigger and Blacker","description":"Chris Rock brings his critically acclaimed brand of social commentary-themed humor to this 1999 standup comedy presentation from HBO. Also released as an album, Chris Rock: Bigger & Blacker features Rock on-stage extolling his razor-sharp wit and wisdom on such topics as gun control, President Clinton, homophobia, racism, black leaders, and relationships.","id":"17870","runtime":65,"imdbId":"tt0206636","version":289,"lastModified":"1301906074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4d\/4bc950db017a3c57fe023b4d\/chris-rock-bigger-and-blacker-mid.jpg","studio":"3 Art Entertainment","genre":"Comedy","title":"Chris Rock: Bigger and Blacker","releaseDate":931564800000,"language":"en","type":"Movie","_key":"67253"} +{"label":"Slick Rick","version":22,"id":"82431","lastModified":"1301901991000","name":"Slick Rick","type":"Person","_key":"67254"} +{"label":"Keith Truesdell","version":26,"id":"87670","lastModified":"1301902012000","name":"Keith Truesdell","type":"Person","_key":"67255"} +{"label":"Chris Rock: Never Scared","description":"Chris Rock, the three-time Emmy Award-winner, comedian, actor, and host of HBO's acclaimed The Chris Show, stars in his fourth solo stand up special for HBO, Chris Rock: Never Scared. Featuring his unique, insightful, and hilarious views on a host of social, political and, celebrity issues, Rock confirms his stature as the leading comic of our time. Filmed at DAR Constitution Hall in Washington, D","id":"17871","runtime":91,"imdbId":"tt0405832","version":288,"lastModified":"1302043997000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5b\/4bc950dc017a3c57fe023b5b\/chris-rock-never-scared-mid.jpg","genre":"Comedy","title":"Chris Rock: Never Scared","releaseDate":1082160000000,"language":"en","type":"Movie","_key":"67256"} +{"label":"Laserblast","description":"Loner teenager Billy Duncan (Kim Milford) stumbles across a lost alien ray gun while wandering the desert one day. Billy uses the destructive weapon to get revenge on his enemies, but quickly finds himself beginning to turn into a violent, alien creature who destroys anyone who offends him.","id":"17874","runtime":85,"imdbId":"tt0077834","trailer":"http:\/\/www.youtube.com\/watch?v=1173","version":115,"lastModified":"1301904975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b77\/4bc950dd017a3c57fe023b77\/laserblast-mid.jpg","studio":"Selected Pictures","genre":"Animation","title":"Laserblast","releaseDate":257558400000,"language":"en","type":"Movie","_key":"67257"} +{"label":"The Hellstrom Chronicle","description":"A scientist explains how the savagery and efficiency of the insect world could result in their taking over the world.","id":"17875","runtime":90,"imdbId":"tt0067197","version":60,"lastModified":"1301221190000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88e\/4d53976b7b9aa13aba01288e\/the-hellstrom-chronicle-mid.jpg","genre":"Documentary","title":"The Hellstrom Chronicle","releaseDate":46915200000,"language":"en","type":"Movie","_key":"67258"} +{"label":"Walon Green","version":42,"id":"7765","lastModified":"1302075821000","name":"Walon Green","type":"Person","_key":"67259"} +{"label":"Ed Spiegel","version":22,"id":"82444","lastModified":"1301902508000","name":"Ed Spiegel","type":"Person","_key":"67260"} +{"label":"Because of Winn-Dixie","description":"A girl, abandoned by her mother when she was three, moves to a small town in Florida with her father. There, she adopts an orphaned dog she names Winn-Dixie. The bond between the girl and her special companion brings together the people in a small Florida town and heals her own troubled relationship with her father. Based on the children's novel 'Because of Winn-Dixie' (2000) by Kate DiCamillo. ","id":"17880","runtime":106,"imdbId":"tt0317132","version":328,"lastModified":"1301904523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06a\/4d8bd9555e73d653cb00106a\/because-of-winn-dixie-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Because of Winn-Dixie","releaseDate":1108684800000,"language":"en","type":"Movie","_key":"67261"} +{"label":"Courtney Jines","version":20,"id":"84481","lastModified":"1301902631000","name":"Courtney Jines","type":"Person","_key":"67262"} +{"label":"Luke Benward","version":28,"id":"84482","lastModified":"1301902319000","name":"Luke Benward","type":"Person","_key":"67263"} +{"label":"B.J. Hopper","version":20,"id":"84483","lastModified":"1301902631000","name":"B.J. Hopper","type":"Person","_key":"67264"} +{"label":"Marca Price","version":20,"id":"84484","lastModified":"1301902631000","name":"Marca Price","type":"Person","_key":"67265"} +{"label":"UFC 15.5: Ultimate Japan 1","description":"UFC Japan: Ultimate Japan (also known as UFC 15.5) was a mixed martial arts event held by the Ultimate Fighting Championship on December 21, 1997, in Yokohama, Japan. The event was seen on pay per view in the United States, on cable TV in Japan, and was later released on home video.","id":"17881","runtime":0,"imdbId":"tt0485285","version":40,"lastModified":"1301419904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba3\/4bc950e3017a3c57fe023ba3\/ufc-15-5-ultimate-japan-1-mid.jpg","title":"UFC 15.5: Ultimate Japan 1","releaseDate":882662400000,"language":"en","type":"Movie","_key":"67266"} +{"label":"Marcus Silveira","version":20,"id":"89472","lastModified":"1301903032000","name":"Marcus Silveira","type":"Person","_key":"67267"} +{"label":"Best of the Best","description":"The US national team travels to South Korea to compete in an international martial arts competition. Once there, a brash young member of the American squad goes out seeking revenge against the Korean champ who killed his brother in a previous match.","id":"17882","runtime":97,"imdbId":"tt0096913","version":132,"lastModified":"1301907264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02d\/4bddca49017a3c35bd00002d\/best-of-the-best-mid.jpg","genre":"Action","title":"Best of the Best","releaseDate":626659200000,"language":"en","type":"Movie","_key":"67268"} +{"label":"Phillip Rhee","version":21,"id":"82442","lastModified":"1301902141000","name":"Phillip Rhee","type":"Person","_key":"67269"} +{"label":"Robert Radler","version":21,"id":"82443","lastModified":"1301902141000","name":"Robert Radler","type":"Person","_key":"67270"} +{"label":"Iron Man - Marvel \/ Jetix Animation DVD","description":"No overview found.","id":"17883","runtime":0,"version":100,"lastModified":"1301907380000","title":"Iron Man - Marvel \/ Jetix Animation DVD","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67271"} +{"label":"Iron Man - Marvel and Jetix Animated DVD","description":"Iron man, On the Inside. Distant Boundaries. Armor Wars - part One. Armor Wars - part Two. Empowreed. Hulkbuster. Hands of the Mandarin - Part One. Hands of the Mandarin - Part Two. Plus two bonus episodes from the original 60's series: Double Disaster. Enter Hawkeye.","id":"17884","version":84,"lastModified":"1300980490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bac\/4bc950e4017a3c57fe023bac\/iron-man-marvel-and-jetix-animated-dvd-mid.jpg","title":"Iron Man - Marvel and Jetix Animated DVD","language":"en","type":"Movie","_key":"67272"} +{"label":"The Amazing Dr. Clitterhouse","description":"Dr. Clitterhouse (Edward G. Robinson) is a wealthy society doctor in New York City who decides to research the medical aspects of criminal behaviour directly by becoming one. He joins a gang of thieves headed by 'Rocks' Valentine (Humphrey Bogart). As \"The Professor\", he proceeds to wrest leadership of the gang away from Rocks, making Rocks extremely resentful.","id":"17885","runtime":87,"imdbId":"tt0029864","version":103,"lastModified":"1301907248000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bb5\/4bc950e5017a3c57fe023bb5\/the-amazing-dr-clitterhouse-mid.jpg","studio":"First National Pictures","genre":"Action","title":"The Amazing Dr. Clitterhouse","releaseDate":-992563200000,"language":"en","type":"Movie","_key":"67273"} +{"label":"Mutants","description":"A nasty virus has spread throughout the human race turning the population into something\u2026 else. After a brief setup (and a messy hit and run) we\u2019re introduced to an ambulance and its four occupants. Sonia (Helene de Fougerolles) and Marco (Francis Renaud) are together and riding with two police officers. Tensions rise between them as they head for a mythical research facility called NOAH that is reportedly infection free and working on a cure, and circumstances lead to Sonia and Marco holing up ","id":"17886","runtime":85,"imdbId":"tt1146320","version":152,"lastModified":"1301903419000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/248\/4d9239075e73d62251000248\/mutants-mid.jpg","studio":"Sombrero Films","genre":"Horror","title":"Mutants","releaseDate":1241568000000,"language":"en","type":"Movie","_key":"67274"} +{"label":"David Morlet","version":18,"id":"82446","lastModified":"1301902237000","name":"David Morlet","type":"Person","_key":"67275"} +{"label":"Dida Diafat","version":20,"id":"82450","lastModified":"1301902237000","name":"Dida Diafat","type":"Person","_key":"67276"} +{"label":"Luz Mandon","version":20,"id":"82451","lastModified":"1301902455000","name":"Luz Mandon","type":"Person","_key":"67277"} +{"label":"Driss Ramdi","version":20,"id":"82452","lastModified":"1301902455000","name":"Driss Ramdi","type":"Person","_key":"67278"} +{"label":"Barefoot in the Park","description":"Corie (Jane Fonda) is the young housewife trying to keep life exciting while making a home for her and her husband, Paul (Robert Redford), on the fifth floor of a Greenwich Village walkup apartment. He's working hard at starting his career as lawyer; she's eager to be romantic and spontaneous; and the two have plenty to squabble about.","id":"17887","runtime":106,"imdbId":"tt0061385","version":193,"lastModified":"1301903031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/023\/4cd347987b9aa113ac000023\/barefoot-in-the-park-mid.jpg","genre":"Comedy","title":"Barefoot in the Park","releaseDate":-82252800000,"language":"en","type":"Movie","_key":"67279"} +{"label":"Dasavatharam","description":"Dhasavathaaram (Dus Avtar - in Hindi meaning 10 reincarnations of Lord Vishnu) has Padmashree Kamal Haasan donning 10 different roles ranging from a 12th Century priest to a genius Bio-Scientist and the President of United States. The story starts with an incident taking place in 12th century during the rule of the Chozha dynasty when Hindus were divided into Saivites and Vaishnavites...","id":"17888","runtime":189,"imdbId":"tt0479651","version":97,"lastModified":"1301908525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4bc950ee017a3c57fe023be8\/dasavatharam-mid.jpg","title":"Dasavatharam","releaseDate":1213228800000,"language":"en","type":"Movie","_key":"67280"} +{"label":"K.S. Ravikumar","version":17,"id":"93194","lastModified":"1301902324000","name":"K.S. Ravikumar","type":"Person","_key":"67281"} +{"label":"Anchors Aweigh","description":"Two sailors, Joe (Kelly) and Clarence (Sinatra) have four days shore leave in spend their shore leave trying to get a girl for Clarence. Clarence has his eye on a girl with musical aspirations, and before Joe can stop him, promises to get her an audition with Jos\u00e9 Iturbi. But the trouble really starts when Joe realizes he's falling for his buddy's girl.","id":"17889","runtime":143,"imdbId":"tt0037514","trailer":"http:\/\/www.youtube.com\/watch?v=ksPmGBC8Wk4","version":169,"lastModified":"1301904875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf6\/4bc950f0017a3c57fe023bf6\/anchors-aweigh-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Musical","title":"Anchors Aweigh","releaseDate":-772156800000,"language":"en","type":"Movie","_key":"67282"} +{"label":"Jos\u00e9 Iturbi","version":21,"id":"129512","lastModified":"1301902760000","name":"Jos\u00e9 Iturbi","type":"Person","_key":"67283"} +{"label":"Pamela Britton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4bd846ba017a3c1c090000ff\/pamela-britton-profile.jpg","version":23,"id":"34516","lastModified":"1301901822000","name":"Pamela Britton","type":"Person","_key":"67284"} +{"label":"UFC 17.5: Ultimate Brazil","description":"UFC Brazil: Ultimate Brazil (also known as UFC 17.5) was a mixed martial arts event held by the Ultimate Fighting Championship in S\u00e3o Paulo, Brazil on October 16th, 1998. The event was seen on pay per view in the United States and Brazil, and was later released on home video.","id":"17890","runtime":105,"imdbId":"tt0469851","version":47,"lastModified":"1301908452000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfb\/4bc950f0017a3c57fe023bfb\/ufc-17-5-ultimate-brazil-mid.jpg","title":"UFC 17.5: Ultimate Brazil","releaseDate":908496000000,"language":"en","type":"Movie","_key":"67285"} +{"label":"John Lober","version":19,"id":"89437","lastModified":"1301902489000","name":"John Lober","type":"Person","_key":"67286"} +{"label":"Ebenezer Fontes Braga","version":20,"id":"89438","lastModified":"1301903032000","name":"Ebenezer Fontes Braga","type":"Person","_key":"67287"} +{"label":"Cesar Marscucci","version":16,"id":"89439","lastModified":"1301903032000","name":"Cesar Marscucci","type":"Person","_key":"67288"} +{"label":"Paulo Santos","version":15,"id":"89440","lastModified":"1301902960000","name":"Paulo Santos","type":"Person","_key":"67289"} +{"label":"Tulio Palhares","version":16,"id":"89441","lastModified":"1301903057000","name":"Tulio Palhares","type":"Person","_key":"67290"} +{"label":"Adriano Santos","version":15,"id":"89442","lastModified":"1301902662000","name":"Adriano Santos","type":"Person","_key":"67291"} +{"label":"Radeloos","description":"In Radeloos heeft Yara al een poosje een oogje op Paco, die bij haar op school zit en als DJ plaatjes draait op feesten. Maar Paco heeft wat met Floor en ziet haar niet staan. Komt het misschien omdat ze te dik is? Yara's moeder wil dat haar dochter fotomodel wordt maar eigenlijk wil Yara naar de kunstacademie. Ze besluit af te vallen door minder te gaan eten. Zo slaat ze twee vliegen in \u00e9\u00e9n klap:","id":"17892","runtime":115,"imdbId":"tt1189004","homepage":"http:\/\/www.radeloosdefilm.nl\/","version":47,"lastModified":"1301906714000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c08\/4bc950f1017a3c57fe023c08\/radeloos-mid.jpg","genre":"Drama","title":"Radeloos","releaseDate":1222905600000,"language":"en","type":"Movie","_key":"67292"} +{"label":"Marius Gottlieb","version":19,"id":"82493","lastModified":"1301902502000","name":"Marius Gottlieb","type":"Person","_key":"67293"} +{"label":"Marloes van der Wel","version":19,"id":"82494","lastModified":"1301902502000","name":"Marloes van der Wel","type":"Person","_key":"67294"} +{"label":"Camino","description":"Inspirada en hechos reales, CAMINO es una aventura emocional en torno a una extraordinaria ni\u00f1a de once a\u00f1os que se enfrenta al mismo tiempo a dos acontecimientos que son completamente nuevos para ella: enamorarse y morir.","id":"17893","runtime":143,"imdbId":"tt1206285","version":176,"lastModified":"1301906112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c11\/4bc950f2017a3c57fe023c11\/camino-mid.jpg","genre":"Drama","title":"Camino","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"67295"} +{"label":"Nerea Camacho","version":19,"id":"82455","lastModified":"1301902323000","name":"Nerea Camacho","type":"Person","_key":"67296"} +{"label":"The Beautician and the Beast","description":"The story follows the misadventures of a New York City beautician who is mistakenly hired as the school teacher for the children of the president of a small Eastern European country.","id":"17894","runtime":105,"imdbId":"tt0118691","version":163,"lastModified":"1301607469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1a\/4bc950f2017a3c57fe023c1a\/the-beautician-and-the-beast-mid.jpg","genre":"Comedy","title":"The Beautician and the Beast","releaseDate":855273600000,"language":"en","type":"Movie","_key":"67297"} +{"label":"Antarctica","description":"Two Japanese scientists, Ushioda and Ochi, develop a bond with their sled dogs while on an expedition in Antarctica...","id":"17895","runtime":143,"imdbId":"tt0085991","version":74,"lastModified":"1302093132000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4c92bd137b9aa10737000033\/nankyoku-monogatari-mid.jpg","genre":"Adventure","title":"Antarctica","releaseDate":427766400000,"language":"en","type":"Movie","_key":"67298"} +{"label":"Tsunehiko Watase","version":21,"id":"82963","lastModified":"1302052174000","name":"Tsunehiko Watase","type":"Person","_key":"67299"} +{"label":"Masako Natsume","version":21,"id":"82967","lastModified":"1302052174000","name":"Masako Natsume","type":"Person","_key":"67300"} +{"label":"Keiko Oginome","version":21,"id":"82968","lastModified":"1302052174000","name":"Keiko Oginome","type":"Person","_key":"67301"} +{"label":"Takeshi Kusaka","version":31,"id":"82969","lastModified":"1302052174000","name":"Takeshi Kusaka","type":"Person","_key":"67302"} +{"label":"Jun Et\u00f4","version":19,"id":"82970","lastModified":"1302052174000","name":"Jun Et\u00f4","type":"Person","_key":"67303"} +{"label":"Shin Kishida","version":25,"id":"82971","lastModified":"1302052174000","name":"Shin Kishida","type":"Person","_key":"67304"} +{"label":"Takeshi \u00d4bayashi","version":21,"id":"82972","lastModified":"1302052174000","name":"Takeshi \u00d4bayashi","type":"Person","_key":"67305"} +{"label":"Shinji Kanai","version":21,"id":"82973","lastModified":"1302052174000","name":"Shinji Kanai","type":"Person","_key":"67306"} +{"label":"Koreyoshi Kurahara","version":21,"id":"82949","lastModified":"1302052174000","name":"Koreyoshi Kurahara","type":"Person","_key":"67307"} +{"label":"The Golden Voyage of Sinbad","description":"Sinbad and his crew intercept a homunculus carrying a golden tablet. Koura, the creator of the homunculus and practitioner of evil magic, wants the tablet back and pursues Sinbad. Meanwhile Sinbad meets the Vizier who has another part of the interlocking golden map, and they mount a quest across the seas to solve the riddle of the map.","id":"17897","runtime":105,"imdbId":"tt0071569","trailer":"http:\/\/www.youtube.com\/watch?v=1179","version":178,"lastModified":"1301903363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3d\/4bc950f8017a3c57fe023c3d\/the-golden-voyage-of-sinbad-mid.jpg","genre":"Action","title":"The Golden Voyage of Sinbad","releaseDate":134956800000,"language":"en","type":"Movie","_key":"67308"} +{"label":"Kurt Christian","version":20,"id":"114644","lastModified":"1301903069000","name":"Kurt Christian","type":"Person","_key":"67309"} +{"label":"David Garfield","version":25,"id":"31463","lastModified":"1301901670000","name":"David Garfield","type":"Person","_key":"67310"} +{"label":"Ferdinando Poggi","version":20,"id":"114645","lastModified":"1301903046000","name":"Ferdinando Poggi","type":"Person","_key":"67311"} +{"label":"Silver Bullet","description":"The small city of Tarker's Mill is startled by a series of sadistic murders. The population fears that this is the work of a maniac. During a search a mysterious, hairy creature is observed. This strange appearance is noticed once a month. People lock themselves up at night, but there's one boy who's still outside, he's preparing the barbecue.","id":"17898","runtime":95,"imdbId":"tt0090021","version":208,"lastModified":"1301903318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4d10e6875e73d6083800053f\/silver-bullet-mid.jpg","studio":"Dino De Laurentiis Company","genre":"Drama","title":"Silver Bullet","releaseDate":497836800000,"language":"en","tagline":"It started in May. In a small town. And every month after that whenever the moon was full... it came back.","type":"Movie","_key":"67312"} +{"label":"Mentiras y gordas","description":"Se cuentan las relaciones personales y amorosas de un grupo de chicos inmersos en el ambiente de las discotecas y las drogas, cuyas vidas se entrecruzan en una confusi\u00f3n de sexo, alcohol, noche y fiesta. No son conscientes de las consecuencias de este desenfreno veraniego y que una vez comenzado no se puede dar marcha atr\u00e1s, descubriendo que amar puede significar sufrimiento.Es una historia coral protagonizada por una serie de j\u00f3venes que viven sus historias adolescentes con episodios de amor, c","id":"17899","runtime":0,"imdbId":"tt0822833","version":100,"lastModified":"1302079986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4bf6cde4017a3c772c00025e\/mentiras-y-gordas-mid.jpg","title":"Mentiras y gordas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67313"} +{"label":"Alfonso Albacete","version":15,"id":"148084","lastModified":"1301903097000","name":"Alfonso Albacete","type":"Person","_key":"67314"} +{"label":"Albert Fish: In Sin He Found Salvation","description":"Albert Fish, the horrific true story of elderly cannibal, sadomasochist, and serial killer, who lured children to their deaths in Depression-era New York City. Distorting biblical tales, Albert Fish takes the themes of pain, torture, atonement and suffering literally as he preys on victims to torture and sacrifice. ","id":"17901","runtime":86,"imdbId":"tt0486544","version":36,"lastModified":"1301908279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c58\/4bc950fa017a3c57fe023c58\/albert-fish-in-sin-he-found-salvation-mid.jpg","genre":"Crime","title":"Albert Fish: In Sin He Found Salvation","releaseDate":1186963200000,"language":"en","type":"Movie","_key":"67315"} +{"label":"Oto Brezina","version":17,"id":"82481","lastModified":"1301902237000","name":"Oto Brezina","type":"Person","_key":"67316"} +{"label":"Windkracht 10: Koksijde Rescue","description":"Na een \u2018incidentje\u2019 tijdens een receptie voor de hoogste legertop wordt duiker Rick Symons naar het 40ste Search and Rescue smaldeel in Koksijde gestuurd. Rick wordt er opgenomen in een even competente als aparte Sea King crew. Zijn grootste verrassing is Alex, de vrouwelijke medic, waarmee hij eerder al een kleine schermutseling heeft gehad. De overplaatsing naar Koksijde dwingt Rick tot nog een ","id":"17902","runtime":0,"imdbId":"tt0480854","version":43,"lastModified":"1301330344000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c61\/4bc950fa017a3c57fe023c61\/windkracht-10-koksijde-rescue-mid.jpg","title":"Windkracht 10: Koksijde Rescue","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"67317"} +{"label":"A Frozen Flower","description":"Under the dominance of Yuan Dynasty China, the king of Goryeo Dynasty Korea is pressured to produce a successor to the throne. Unable to make love to his queen because he is in love with his bodyguard, Hong Lim, the king asks the two of them to sleep together instead. This sexual contact formulates a forbidden love between Hong Lim and the Queen.","id":"17903","runtime":133,"imdbId":"tt1155053","homepage":"http:\/\/www.ssanghwa.co.kr\/","version":109,"lastModified":"1301904029000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c72\/4bc950fc017a3c57fe023c72\/ssang-hwa-jeom-mid.jpg","genre":"Drama","title":"A Frozen Flower","releaseDate":1230595200000,"language":"en","type":"Movie","_key":"67318"} +{"label":"Ha Yoo","version":17,"id":"150959","lastModified":"1301903130000","name":"Ha Yoo","type":"Person","_key":"67319"} +{"label":"In-seong Jo","version":22,"id":"127564","lastModified":"1301902225000","name":"In-seong Jo","type":"Person","_key":"67320"} +{"label":"Ji-hyo Song","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4d3e50015e73d622cf0041ae\/ji-hyo-song-profile.jpg","version":24,"id":"85174","lastModified":"1301901815000","name":"Ji-hyo Song","type":"Person","_key":"67321"} +{"label":"Ji-ho Shim","version":20,"id":"105612","lastModified":"1301903057000","name":"Ji-ho Shim","type":"Person","_key":"67322"} +{"label":"10 Minute Solution - Fat Blasting Dance Mix","description":"No overview found.","id":"17904","runtime":0,"version":64,"lastModified":"1301628753000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c87\/4bc950fc017a3c57fe023c87\/10-minute-solution-fat-blasting-dance-mix-mid.jpg","title":"10 Minute Solution - Fat Blasting Dance Mix","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67323"} +{"label":"Branded to Kill","description":"After botching his latest assignment, a third-ranked Japanese hit man becomes the target of another assassin.","id":"17905","runtime":98,"imdbId":"tt0061882","version":111,"lastModified":"1301906243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c94\/4bc950fd017a3c57fe023c94\/koroshi-no-rakuin-mid.jpg","studio":"Nikkatsu","genre":"Action","title":"Branded to Kill","releaseDate":-80438400000,"language":"en","type":"Movie","_key":"67324"} +{"label":"Seijun Suzuki","version":29,"birthday":"-1470877200000","id":"82461","lastModified":"1301901490000","name":"Seijun Suzuki","type":"Person","_key":"67325"} +{"label":"Masami Kuzuu","version":19,"id":"82472","lastModified":"1301901608000","name":"Masami Kuzuu","type":"Person","_key":"67326"} +{"label":"Jo Shishido","version":22,"id":"82474","lastModified":"1301902313000","name":"Jo Shishido","type":"Person","_key":"67327"} +{"label":"Mariko Ogawa","version":19,"id":"82475","lastModified":"1301901862000","name":"Mariko Ogawa","type":"Person","_key":"67328"} +{"label":"Anne Mari","version":19,"id":"82476","lastModified":"1301902063000","name":"Anne Mari","type":"Person","_key":"67329"} +{"label":"K\u00f4ji Nanbara","version":21,"id":"82477","lastModified":"1301902455000","name":"K\u00f4ji Nanbara","type":"Person","_key":"67330"} +{"label":"Isao Tamagawa","version":21,"id":"82478","lastModified":"1301902455000","name":"Isao Tamagawa","type":"Person","_key":"67331"} +{"label":"Hiroshi Minami","version":19,"id":"82479","lastModified":"1301902455000","name":"Hiroshi Minami","type":"Person","_key":"67332"} +{"label":"Franz Gruber","version":19,"id":"82480","lastModified":"1301902454000","name":"Franz Gruber","type":"Person","_key":"67333"} +{"label":"Dummy","description":"An ex-office worker becomes a ventriloquist, leading to a date with his unemployment counselor; but his quirky family and a gauche female friend may thwart his new career and love life.","id":"17906","runtime":91,"imdbId":"tt0246592","version":162,"lastModified":"1301496105000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9d\/4bc950fe017a3c57fe023c9d\/dummy-mid.jpg","studio":"Lionsgate","genre":"Comedy","title":"Dummy","releaseDate":1031788800000,"language":"en","type":"Movie","_key":"67334"} +{"label":"Greg Pritikin","version":18,"id":"82482","lastModified":"1301902237000","name":"Greg Pritikin","type":"Person","_key":"67335"} +{"label":"Helen Hanft","version":20,"id":"82487","lastModified":"1301902454000","name":"Helen Hanft","type":"Person","_key":"67336"} +{"label":"The Raven","description":"The Raven (1935) is a horror film directed by Lew Landers. It revolves around Edgar Allan Poe's famous poem, featuring B\u00e9la Lugosi as a Poe-obsessed mad surgeon with a torture chamber in his basement and Boris Karloff as a fugitive murderer desperately on the run from the police.","id":"17907","runtime":61,"imdbId":"tt0026912","version":81,"lastModified":"1301491002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca6\/4bc95102017a3c57fe023ca6\/the-raven-mid.jpg","studio":"Universal Pictures","genre":"Horror","title":"The Raven","releaseDate":-1088294400000,"language":"en","type":"Movie","_key":"67337"} +{"label":"Lester Matthews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e5b\/4be876d5017a3c35c1000e5b\/lester-matthews-profile.jpg","version":33,"id":"82488","lastModified":"1301901712000","name":"Lester Matthews","type":"Person","_key":"67338"} +{"label":"Irene Ware","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/690\/4be1ec78017a3c35c1000690\/irene-ware-profile.jpg","version":22,"id":"82489","lastModified":"1301902528000","name":"Irene Ware","type":"Person","_key":"67339"} +{"label":"Maidel Turner","version":19,"id":"82490","lastModified":"1301902237000","name":"Maidel Turner","type":"Person","_key":"67340"} +{"label":"Lew Landers","version":27,"birthday":"-2177370000000","id":"82491","birthplace":"New York City, New York, USA","lastModified":"1301901643000","name":"Lew Landers","type":"Person","_key":"67341"} +{"label":"My Dog Skip","description":"A shy boy is unable to make friends in Yazoo City, Mississippi in 1942, until his parents give him a terrier puppy for his ninth birthday. The dog, which he names Skip, becomes well known and loved throughout the community and enriches the life of the boy, Willie, as he grows into manhood. Based on the best-selling Mississippi memoir by the late Willie Morris.","id":"17908","runtime":95,"imdbId":"tt0156812","trailer":"http:\/\/www.youtube.com\/watch?v=1174","homepage":"http:\/\/mydogskip.warnerbros.com\/","version":351,"lastModified":"1301904306000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/caf\/4bc95103017a3c57fe023caf\/my-dog-skip-mid.jpg","studio":"Alcon Entertainment","genre":"Comedy","title":"My Dog Skip","releaseDate":947289600000,"language":"en","type":"Movie","_key":"67342"} +{"label":"Ko to tamo peva","description":"On April 5, 1941, a date Serbs will recognize, men on a country road board Krstic's bus for Belgrade: two Gypsies who occasionally sing about misery, an aging war vet, a Nazi sympathizer, a dapper singer, a consumptive, and a man with a shotgun. Krstic is a world-weary cynic, out for a buck; the driver is his son, the simple, cheerful Misko. En route they pick up a priest and young newlyweds going","id":"17909","runtime":86,"imdbId":"tt0076276","trailer":"http:\/\/www.youtube.com\/watch?v=1175","version":54,"lastModified":"1302003042000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb8\/4bc95103017a3c57fe023cb8\/ko-to-tamo-peva-mid.jpg","studio":"Centar Film","genre":"Comedy","title":"Ko to tamo peva","releaseDate":-1577923200000,"language":"en","type":"Movie","_key":"67343"} +{"label":"Pavle Vujisic","version":21,"id":"82496","lastModified":"1302003042000","name":"Pavle Vujisic","type":"Person","_key":"67344"} +{"label":"Danilo Bata Stojkovi\u0107","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/35d\/4d642fff7b9aa1297e00035d\/danilo-bata-stojkovi-profile.jpg","version":21,"birthday":"-1116896400000","id":"226302","birthplace":"Beograd","lastModified":"1302003042000","name":"Danilo Bata Stojkovi\u0107","type":"Person","_key":"67345"} +{"label":"Gnaw","description":"In this dark, tongue in cheek, British Horror, six friends take a holiday in the heart of the English countryside which turns into a culinary nightmare when they discover that their hosts are a sadistic family of cannibals, set on turning their guests into their next meal! It's nice to have your friends for dinner","id":"17910","runtime":90,"imdbId":"tt1268208","homepage":"http:\/\/www.gnaw-movie.com\/","version":150,"lastModified":"1302078127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc1\/4bc95104017a3c57fe023cc1\/gnaw-mid.jpg","studio":"Straightwire Films","genre":"Horror","title":"Gnaw","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"67346"} +{"label":"Hiram Bleetman","version":20,"id":"82669","lastModified":"1301901862000","name":"Hiram Bleetman","type":"Person","_key":"67347"} +{"label":"Carrie Cohen","version":21,"id":"82670","lastModified":"1301902479000","name":"Carrie Cohen","type":"Person","_key":"67348"} +{"label":"Nigel Croft-Adams","version":20,"id":"82671","lastModified":"1301902454000","name":"Nigel Croft-Adams","type":"Person","_key":"67349"} +{"label":"Sara Dylan","version":20,"id":"82672","lastModified":"1301902454000","name":"Sara Dylan","type":"Person","_key":"67350"} +{"label":"Sara Dylan","version":20,"id":"82673","lastModified":"1301902454000","name":"Sara Dylan","type":"Person","_key":"67351"} +{"label":"Rachel Mitchem","version":20,"id":"82675","lastModified":"1301902454000","name":"Rachel Mitchem","type":"Person","_key":"67352"} +{"label":"Gary Faulkner","version":20,"id":"82674","lastModified":"1301902454000","name":"Gary Faulkner","type":"Person","_key":"67353"} +{"label":"Mega Shark vs. Giant Octopus","description":"No overview found.","id":"17911","runtime":90,"imdbId":"tt1350498","version":163,"lastModified":"1301905819000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd8\/4bc95105017a3c57fe023cd8\/mega-shark-vs-giant-octopus-mid.jpg","genre":"Action","title":"Mega Shark vs. Giant Octopus","releaseDate":1242691200000,"language":"en","type":"Movie","_key":"67354"} +{"label":"Lorenzo Lamas","version":31,"id":"11366","lastModified":"1301901350000","name":"Lorenzo Lamas","type":"Person","_key":"67355"} +{"label":"Deborah Gibson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/107\/4d9ba8d65e73d64a86000107\/deborah-gibson-profile.jpg","version":24,"id":"82497","lastModified":"1302039734000","name":"Deborah Gibson","type":"Person","_key":"67356"} +{"label":"Gypsy","description":"Based on the autobiography of Gypsy Rose Lee, this made-for-TV movie - previously a Broadway smash and a 1962 film - depicts the life and times of a stripper and her domineering mother.","id":"17912","runtime":153,"imdbId":"tt0107065","version":91,"lastModified":"1301903472000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce1\/4bc95106017a3c57fe023ce1\/gypsy-mid.jpg","studio":"RHI Entertainment","genre":"Comedy","title":"Gypsy","releaseDate":755654400000,"language":"en","type":"Movie","_key":"67357"} +{"label":"Anna McNeely","version":19,"id":"82499","lastModified":"1301902063000","name":"Anna McNeely","type":"Person","_key":"67358"} +{"label":"Jennifer Rae Beck","version":19,"id":"82500","lastModified":"1301902063000","name":"Jennifer Rae Beck","type":"Person","_key":"67359"} +{"label":"Jeffrey Broadhurst","version":19,"id":"82501","lastModified":"1301902063000","name":"Jeffrey Broadhurst","type":"Person","_key":"67360"} +{"label":"Rachel Sweet","version":19,"id":"82502","lastModified":"1301902063000","name":"Rachel Sweet","type":"Person","_key":"67361"} +{"label":"Tri karte za Hollywood","description":"No overview found.","id":"17913","runtime":118,"imdbId":"tt0181080","trailer":"http:\/\/www.youtube.com\/watch?v=1177","version":25,"lastModified":"1300980496000","title":"Tri karte za Hollywood","releaseDate":725846400000,"language":"en","type":"Movie","_key":"67362"} +{"label":"Safe Sex","description":"A satire of life in modern Greece, presented through a series of different stories about sex. We see several couples and their relation with sex in parallel stories that come together in a hilarious way as the film progresses.","id":"17914","runtime":100,"imdbId":"tt0220016","trailer":"http:\/\/www.youtube.com\/watch?v=1178","version":54,"lastModified":"1301903367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cef\/4bc95107017a3c57fe023cef\/safe-sex-mid.jpg","genre":"Comedy","title":"Safe Sex","releaseDate":915148800000,"language":"en","type":"Movie","_key":"67363"} +{"label":"Mina Adamaki","version":19,"id":"82503","lastModified":"1301901947000","name":"Mina Adamaki","type":"Person","_key":"67364"} +{"label":"Alexandros Antonopoulos","version":19,"id":"82504","lastModified":"1301902324000","name":"Alexandros Antonopoulos","type":"Person","_key":"67365"} +{"label":"Dance With Me","description":"Young Cuban Rafael just buried his mother, and comes to Houston to meet his father John for the first time. The difficult part is that John doesn't know he is Rafael's father. John runs a dance studio, and everyone prepares for the World Open Dance championship in Las Vegas. It soon becomes clear Rafael is a very good dancer, and Ruby is the biggest hope for the studio at the championship.","id":"17915","runtime":126,"imdbId":"tt0120576","version":160,"lastModified":"1301905772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfc\/4bc95108017a3c57fe023cfc\/dance-with-me-mid.jpg","genre":"Drama","title":"Dance With Me","releaseDate":903657600000,"language":"en","type":"Movie","_key":"67366"} +{"label":"Elton John: Tantrums & Tiaras","description":"No overview found.","id":"17916","runtime":0,"imdbId":"tt0124158","version":230,"lastModified":"1301903233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d05\/4bc95109017a3c57fe023d05\/elton-john-tantrums-tiaras-mid.jpg","genre":"Documentary","title":"Elton John: Tantrums & Tiaras","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67367"} +{"label":"Oliver!","description":"Oliver! is a British musical, with music and lyrics by Lionel Bart. The musical is based upon the novel Oliver Twist by Charles Dickens.","id":"17917","runtime":153,"imdbId":"tt0063385","trailer":"http:\/\/www.youtube.com\/watch?v=cw_ETnxuBys","version":271,"lastModified":"1301905046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d12\/4bc9510d017a3c57fe023d12\/oliver-mid.jpg","studio":"Warwick Film Productions","genre":"Drama","title":"Oliver!","releaseDate":-39916800000,"language":"en","type":"Movie","_key":"67368"} +{"label":"Shani Wallis","version":21,"id":"129437","lastModified":"1301903072000","name":"Shani Wallis","type":"Person","_key":"67369"} +{"label":"Swamp Thing","description":"Dr. Alec Holland, hidden away in the depths of a murky swamp, is trying to create a new species - a combination of animal and plant capable of adapting and thriving in the harshest conditions. Unfortunately he becomes subject of his own creation and is transformed. Arcane, desperate for the formula, attempts to capture the Swamp Thing. An explosive chase ensues that ultimately ends with a confrontation between Holland and a changed Arcane...","id":"17918","runtime":91,"imdbId":"tt0084745","version":276,"lastModified":"1302234809000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1b\/4bc9510e017a3c57fe023d1b\/swamp-thing-mid.jpg","genre":"Action","title":"Swamp Thing","releaseDate":382924800000,"language":"en","tagline":"Science changed him into a monster. Love changed him even more!","type":"Movie","_key":"67370"} +{"label":"Al Ruban","version":22,"id":"11415","lastModified":"1301901603000","name":"Al Ruban","type":"Person","_key":"67371"} +{"label":"Dick Durock","version":24,"id":"82507","lastModified":"1301902522000","name":"Dick Durock","type":"Person","_key":"67372"} +{"label":"Human Trafficking","description":"When a sixteen-year-old girl from the Ukraine, a single mother from Russia, an orphaned seventeen-year-old girl from Romania, and a twelve-year-old American tourist become the victims of international sex slave traffickers, a specialized team of Immigration and Customs Enforcement (ICE) struggles to expose the worldwide network that has enslaved them.","id":"17919","runtime":176,"imdbId":"tt0461872","trailer":"http:\/\/www.youtube.com\/watch?v=1545","version":137,"lastModified":"1302076403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d24\/4bc9510f017a3c57fe023d24\/human-trafficking-mid.jpg","studio":"Muse Productions","genre":"Crime","title":"Human Trafficking","releaseDate":1130112000000,"language":"en","type":"Movie","_key":"67373"} +{"label":"I Capture the Castle","description":"A love story set in 1930s England that follows 17-year-old Cassandra Mortmain, and the fortunes of her eccentric family, struggling to survive in a decaying English castle","id":"17920","runtime":113,"imdbId":"tt0300015","version":205,"lastModified":"1302076099000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2d\/4bc95110017a3c57fe023d2d\/i-capture-the-castle-mid.jpg","genre":"Drama","title":"I Capture the Castle","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"67374"} +{"label":"Joe Sowerbutts","version":17,"id":"137937","lastModified":"1301902950000","name":"Joe Sowerbutts","type":"Person","_key":"67375"} +{"label":"Planet of the Vampires","description":"No overview found.","id":"17921","runtime":88,"imdbId":"tt0059792","version":252,"lastModified":"1301418280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d32\/4bc95110017a3c57fe023d32\/terrore-nello-spazio-mid.jpg","studio":"American International Pictures","genre":"Horror","title":"Planet of the Vampires","releaseDate":-135561600000,"language":"en","type":"Movie","_key":"67376"} +{"label":"\u00c1ngel Aranda","version":19,"id":"98487","lastModified":"1301902378000","name":"\u00c1ngel Aranda","type":"Person","_key":"67377"} +{"label":"Evi Marandi","version":18,"id":"98488","lastModified":"1301902359000","name":"Evi Marandi","type":"Person","_key":"67378"} +{"label":"Franco Andrei","version":18,"id":"98490","lastModified":"1301902361000","name":"Franco Andrei","type":"Person","_key":"67379"} +{"label":"Fernando Villena","version":24,"id":"23604","lastModified":"1301901681000","name":"Fernando Villena","type":"Person","_key":"67380"} +{"label":"Mario Morales","version":18,"id":"98491","lastModified":"1301903058000","name":"Mario Morales","type":"Person","_key":"67381"} +{"label":"Federico Boido","version":18,"id":"98492","lastModified":"1301902720000","name":"Federico Boido","type":"Person","_key":"67382"} +{"label":"Alberto Cevenini","version":18,"id":"98493","lastModified":"1301903066000","name":"Alberto Cevenini","type":"Person","_key":"67383"} +{"label":"Massimo Righi","version":23,"id":"98494","lastModified":"1301901824000","name":"Massimo Righi","type":"Person","_key":"67384"} +{"label":"The Professional: Golgo 13","description":"Indestructible to his enemies and irresistible to women, the professional assassin codenamed Golgo 13 is shrouded in mystery and anonymity. If you're on his hit list, you're already dead. Always hired on his reputation alone, Golgo never breaks a contract. Can he survive the combined forces of the FBI, CIA, the Pentagon and the U.S. Army? Has the nameless agent finally met his match against the superhuman powers of the Snake and the twin evils of the psychopathic mercenaries, Gold and Silver?","id":"17922","runtime":91,"imdbId":"tt0086148","version":69,"lastModified":"1301417597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4c\/4bc95112017a3c57fe023d4c\/the-professional-golgo-13-mid.jpg","genre":"Action","title":"The Professional: Golgo 13","releaseDate":421113600000,"language":"en","tagline":"He shoots...he scores...he'll blow you away!","type":"Movie","_key":"67385"} +{"label":"Tetsur\u00f4 Sagawa","version":18,"id":"82509","lastModified":"1301901862000","name":"Tetsur\u00f4 Sagawa","type":"Person","_key":"67386"} +{"label":"Mausoleum","description":"Traumatized by her mother's death, young Susan is becoming possessed by the same demon that possessed her mother before she died. More and more her husband and psychiatrist are noticing the strange changes","id":"17923","runtime":96,"imdbId":"tt0085918","version":126,"lastModified":"1301907404000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d55\/4bc95112017a3c57fe023d55\/mausoleum-mid.jpg","genre":"Horror","title":"Mausoleum","releaseDate":420595200000,"language":"en","type":"Movie","_key":"67387"} +{"label":"Michael Dugan","version":19,"id":"82510","lastModified":"1301902141000","name":"Michael Dugan","type":"Person","_key":"67388"} +{"label":"Mister Magoo's Christmas Carol","description":"An animated, magical, musical version of Dickens' timeless classic \"A Christmas Carol.\" The nearsighted Mr. Magoo doesn't have a ghost of a chance as Ebenezer Scrooge, unless he learns the true meaning of Christmas from the three spirits who haunt him one Christmas Eve.","id":"17924","runtime":53,"imdbId":"tt0123179","version":86,"lastModified":"1301905325000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5e\/4bc95113017a3c57fe023d5e\/mister-magoo-s-christmas-carol-mid.jpg","genre":"Animation","title":"Mister Magoo's Christmas Carol","releaseDate":-222134400000,"language":"en","type":"Movie","_key":"67389"} +{"label":"D\u00e9sengagement","description":"No overview found.","id":"17925","runtime":0,"imdbId":"tt0871512","version":45,"lastModified":"1301908643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d67\/4bc95113017a3c57fe023d67\/desengagement-mid.jpg","title":"D\u00e9sengagement","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"67390"} +{"label":"Undiscovered","description":"A group of aspiring entertainers try to establish careers for themselves in the city of Los Angeles","id":"17926","runtime":97,"imdbId":"tt0434424","version":167,"lastModified":"1301939975000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6c\/4bc95113017a3c57fe023d6c\/undiscovered-mid.jpg","genre":"Comedy","title":"Undiscovered","releaseDate":1125014400000,"language":"en","type":"Movie","_key":"67391"} +{"label":"Fired Up!","description":"2 Guys. 300 Girls. You Do the Math.\nThe two most popular guys in high school decide to ditch football camp for cheerleader camp. For the girls and for the glory.","id":"17927","runtime":90,"imdbId":"tt1083456","trailer":"http:\/\/www.youtube.com\/watch?v=1508","version":306,"lastModified":"1302234493000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d9a\/4bc95119017a3c57fe023d9a\/fired-up-mid.jpg","genre":"Comedy","title":"Fired Up!","releaseDate":1235088000000,"language":"en","type":"Movie","_key":"67392"} +{"label":"Will Gluck","version":27,"id":"82511","lastModified":"1301901202000","name":"Will Gluck","type":"Person","_key":"67393"} +{"label":"David Walton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/76c\/4ce59a977b9aa168b300076c\/david-walton-profile.jpg","version":28,"id":"83231","lastModified":"1301901247000","name":"David Walton","type":"Person","_key":"67394"} +{"label":"Mor 3 Pee 4","description":"No overview found.","id":"17933","runtime":0,"trailer":"http:\/\/www.youtube.com\/watch?v=0mQdyRstnvw","version":331,"lastModified":"1301106667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/523\/4d5167cc7b9aa13aba010523\/mor-3-pee-4-mid.jpg","title":"Mor 3 Pee 4","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67395"} +{"label":"Taras Bulba","description":" \u041f\u043e \u043c\u043e\u0442\u0438\u0432\u0430\u043c \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u043f\u043e\u0432\u0435\u0441\u0442\u0435\u0439 \u041d\u0438\u043a\u043e\u043b\u0430\u044f \u0413\u043e\u0433\u043e\u043b\u044f \u00ab\u0422\u0430\u0440\u0430\u0441 \u0411\u0443\u043b\u044c\u0431\u0430\u00bb. \u0421\u043e\u0431\u044b\u0442\u0438\u044f \u00ab\u0417\u0430\u043f\u043e\u0440\u043e\u0436\u0441\u043a\u043e\u0439 \u0441\u0435\u0447\u0438\u00bb \u043e\u0442\u0441\u044b\u043b\u0430\u044e\u0442 \u043a \u0442\u044f\u0436\u0435\u043b\u043e\u043c\u0443 \u043f\u0435\u0440\u0438\u043e\u0434\u0443 \u0432 \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u043a\u0430\u0437\u0430\u0447\u0435\u0441\u0442\u0432\u0430, \u043a\u043e\u0433\u0434\u0430 \u0437\u0430\u043f\u043e\u0440\u043e\u0436\u0446\u044b \u043f\u043e\u0434\u043d\u044f\u043b\u0438\u0441\u044c \u043d\u0430 \u0431\u043e\u0440\u044c\u0431\u0443 \u0441 \u0420\u0435\u0447\u044c\u044e \u041f\u043e\u0441\u043f\u043e\u043b\u0438\u0442\u043e\u0439.\r\n\u0412 \u0441\u0430\u043c\u043e\u043c \u0446\u0435\u043d\u0442\u0440\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0438\u043d\u0442\u0440\u0438\u0433 \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0441\u0435\u043c\u044c\u044f \u0443\u0432\u0430\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u0430\u0437\u0430\u043a\u0430 \u0422\u0430\u0440\u0430\u0441\u0430 \u0411\u0443\u043b\u044c\u0431\u044b, \u043f\u0435\u0440\u0435\u0436\u0438\u0432\u0430\u044e\u0449\u0435\u0433\u043e \u0433\u043b\u0443\u0431\u043e\u043a\u0443\u044e \u043b\u0438\u0447\u043d\u0443\u044e \u0434\u0440\u0430\u043c\u0443. \u0415\u0433\u043e \u0441\u044b\u043d \u0410\u043d\u0434\u0440\u0438\u0439 \u043f\u043e\u043b\u044e\u0431\u0438\u043b \u043f\u043e\u043b\u044c\u0441\u043a\u0443\u044e \u0430\u0440\u0438\u0441\u0442\u043e\u043a\u0440\u0430\u0442\u043a\u0443 \u0438 \u0445\u043e\u0447\u0435\u0442 \u0431\u0435\u0436\u0430\u0442\u044c \u0438\u0437 \u0421\u0435\u0447","id":"17935","runtime":130,"imdbId":"tt1242457","trailer":"http:\/\/www.youtube.com\/watch?v=1180","homepage":"http:\/\/www.tarasbulbafilm.ru\/","version":91,"lastModified":"1301904573000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dcb\/4bc95121017a3c57fe023dcb\/taras-bulba-mid.jpg","studio":"\u0426\u0435\u043d\u0442\u0440\u0430\u043b \u041f\u0430\u0440\u0442\u043d\u0435\u0440\u0448\u0438\u043f","genre":"Drama","title":"Taras Bulba","releaseDate":1238630400000,"language":"en","type":"Movie","_key":"67396"} +{"label":"Magdalena Mielcarz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/291\/4ca4e0ad5e73d636fc000291\/magdalena-mielcarz-profile.jpg","version":24,"id":"82514","lastModified":"1301958356000","name":"Magdalena Mielcarz","type":"Person","_key":"67397"} +{"label":"Bogdan Stupka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/05d\/4c7de2a45e73d648e100005d\/bogdan-stupka-profile.jpg","version":25,"id":"82513","lastModified":"1301950697000","name":"Bogdan Stupka","type":"Person","_key":"67398"} +{"label":"Vladimir Bortko","version":30,"id":"82516","lastModified":"1301901977000","name":"Vladimir Bortko","type":"Person","_key":"67399"} +{"label":"First Spaceship on Venus","description":"A mysterious magnetic spool found during a construction project is discovered to have originated from Venus. A rocket expedition to Venus is launched to discover the origin of the spool and the race that created it.","id":"17938","runtime":79,"imdbId":"tt0053250","trailer":"http:\/\/www.youtube.com\/watch?v=r9PJdae6QrA","version":334,"lastModified":"1302073132000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd9\/4bc95122017a3c57fe023dd9\/der-schweigende-stern-mid.jpg","genre":"Science Fiction","title":"First Spaceship on Venus","releaseDate":-310780800000,"language":"en","type":"Movie","_key":"67400"} +{"label":"Yoko Tani","version":21,"id":"28576","lastModified":"1301901474000","name":"Yoko Tani","type":"Person","_key":"67401"} +{"label":"Oldrich Lukes","version":21,"id":"28570","lastModified":"1301901429000","name":"Oldrich Lukes","type":"Person","_key":"67402"} +{"label":"Ignacy Machowski","version":21,"id":"28571","lastModified":"1301901337000","name":"Ignacy Machowski","type":"Person","_key":"67403"} +{"label":"Julius Ongewe","version":21,"id":"28573","lastModified":"1301901534000","name":"Julius Ongewe","type":"Person","_key":"67404"} +{"label":"Michail N. Postnikow","version":21,"id":"28574","lastModified":"1301902063000","name":"Michail N. Postnikow","type":"Person","_key":"67405"} +{"label":"Kurt Rackelmann","version":21,"id":"28575","lastModified":"1301902063000","name":"Kurt Rackelmann","type":"Person","_key":"67406"} +{"label":"Tang Hua-Ta","version":19,"id":"28566","lastModified":"1301902063000","name":"Tang Hua-Ta","type":"Person","_key":"67407"} +{"label":"Lucyna Winnicka","version":20,"id":"114424","lastModified":"1301902884000","name":"Lucyna Winnicka","type":"Person","_key":"67408"} +{"label":"Android Apocalypse","description":"Machines have taken over, but left humans thinking that they are still the ones in charge. The androids need humans because of the human brain fluid; without it the android brains can't work. Until the mad scientist finds out how to make this brain fluid artificially that is.","id":"17940","runtime":95,"imdbId":"tt0470023","version":161,"lastModified":"1301903676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de7\/4bc95123017a3c57fe023de7\/android-apocalypse-mid.jpg","genre":"Science Fiction","title":"Android Apocalypse","releaseDate":1151107200000,"language":"en","type":"Movie","_key":"67409"} +{"label":"Paul Ziller","version":27,"id":"82518","lastModified":"1301901525000","name":"Paul Ziller","type":"Person","_key":"67410"} +{"label":"Darla Middlebrook","version":21,"id":"82520","lastModified":"1301901674000","name":"Darla Middlebrook","type":"Person","_key":"67411"} +{"label":"Hush","description":"A young woman's dream romance turns into a nightmare when she meets the overprotective (to the extreme) mother of her fiancee.","id":"17941","runtime":96,"imdbId":"tt0118744","version":253,"lastModified":"1301903765000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df0\/4bc95123017a3c57fe023df0\/hush-mid.jpg","genre":"Drama","title":"Hush","releaseDate":889142400000,"language":"en","type":"Movie","_key":"67412"} +{"label":"The Pest","description":"Miami scam artist Pest Vargas (John Leguizamo) is on the run from the Scottish mob and a German headhunter, the mob after 50,000 dollars, the German guy after his head. Pest dons many disguises in an attempt to evade their clutches.","id":"17949","runtime":84,"imdbId":"tt0119887","version":221,"lastModified":"1302200287000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dfd\/4bc95124017a3c57fe023dfd\/the-pest-mid.jpg","genre":"Action","title":"The Pest","releaseDate":855273600000,"language":"en","type":"Movie","_key":"67413"} +{"label":"R. Paul Miller","version":23,"id":"60865","lastModified":"1301902193000","name":"R. Paul Miller","type":"Person","_key":"67414"} +{"label":"Crusty Demons","description":"No overview found.","id":"17950","homepage":"http:\/\/www.crusty.com\/","version":335,"lastModified":"1302200016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e1f\/4bc9512c017a3c57fe023e1f\/crusty-demons-mid.jpg","title":"Crusty Demons","language":"en","type":"Movie","_key":"67415"} +{"label":"In The Mix","description":"A successful DJ named Darrel (Usher), managed to rescue a powerful mobster one night. In order to repay Darrell, the mobster, Frank Pacelli, gives him the task of protecting his daughter, Dolly (Chriqui)","id":"17952","runtime":95,"imdbId":"tt0426615","trailer":"http:\/\/www.youtube.com\/watch?v=hrAJ4s8Uqzw","version":216,"lastModified":"1302199863000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e28\/4bc9512e017a3c57fe023e28\/in-the-mix-mid.jpg","genre":"Action","title":"In The Mix","releaseDate":1132704000000,"language":"en","type":"Movie","_key":"67416"} +{"label":"Living & Dying","description":"Four desperate bank robbers are forced to abandon their lucrative heist plans and become the reluctant heroes when two of their hostages turn out to be psychotic killers who won't stop until everyone in the bank has been ruthlessly slaughtered. As the police surround the building and the killers begin methodically executing the hostages.","id":"17954","runtime":89,"imdbId":"tt0479948","version":132,"lastModified":"1302199504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e36\/4bc9512f017a3c57fe023e36\/living-dying-mid.jpg","studio":"Highland Myst Entertainment","genre":"Action","title":"Living & Dying","releaseDate":1175212800000,"language":"en","type":"Movie","_key":"67417"} +{"label":"Tom Zembrod","version":21,"id":"82525","lastModified":"1301901991000","name":"Tom Zembrod","type":"Person","_key":"67418"} +{"label":"He Said, She Said","description":"No overview found.","id":"17955","runtime":3,"imdbId":"tt1499434","version":87,"lastModified":"1302199302000","genre":"Comedy","title":"He Said, She Said","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"67419"} +{"label":"He Said, She Said","description":"Womanising, right-wing Dan Hanson and quiet, liberal Lorie Bryer work for the Baltimore Sun. Rivals for the job of new writer of a vacant column, the paper ends up instead printing their very different opinions alongside each other, which leads to a similarly combative local TV show. At the same time their initial indifference to each other looks like it may evolve into something more romantic.","id":"17956","runtime":115,"imdbId":"tt0102011","version":111,"lastModified":"1302199154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e3f\/4bc95130017a3c57fe023e3f\/he-said-she-said-mid.jpg","genre":"Comedy","title":"He Said, She Said","releaseDate":667180800000,"language":"en","type":"Movie","_key":"67420"} +{"label":"Finn & Jacob - ...p\u00e5 vejen igen","description":"No overview found.","id":"17958","runtime":65,"imdbId":"tt0189524","version":30,"lastModified":"1301908524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e44\/4bc95130017a3c57fe023e44\/finn-jacob-pa-vejen-igen-mid.jpg","genre":"Comedy","title":"Finn & Jacob - ...p\u00e5 vejen igen","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67421"} +{"label":"Finn N\u00f8rbyg\u00e5rd","version":21,"id":"82530","lastModified":"1301902502000","name":"Finn N\u00f8rbyg\u00e5rd","type":"Person","_key":"67422"} +{"label":"Jacob Haugaard","version":23,"id":"64790","lastModified":"1301902037000","name":"Jacob Haugaard","type":"Person","_key":"67423"} +{"label":"Sorte kugler","description":"No overview found.","id":"17959","runtime":82,"imdbId":"tt1363140","trailer":"http:\/\/www.youtube.com\/watch?v=LktDarAOPkQ","homepage":"http:\/\/www.sortekugler.dk","version":56,"lastModified":"1302198799000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e4d\/4bc95131017a3c57fe023e4d\/sorte-kugler-mid.jpg","studio":"Nimbus Film Productions","genre":"Comedy","title":"Sorte kugler","releaseDate":1244764800000,"language":"en","type":"Movie","_key":"67424"} +{"label":"S\u00f8ren Rislund","version":19,"id":"82533","lastModified":"1301902237000","name":"S\u00f8ren Rislund","type":"Person","_key":"67425"} +{"label":"Iben Dorner","version":17,"id":"82534","lastModified":"1301902063000","name":"Iben Dorner","type":"Person","_key":"67426"} +{"label":"Malou Batz","version":19,"id":"82535","lastModified":"1301901862000","name":"Malou Batz","type":"Person","_key":"67427"} +{"label":"Thomas Hartmann","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/145\/4c9ce8497b9aa1430e000145\/thomas-hartmann-profile.jpg","version":31,"id":"82536","lastModified":"1301901809000","name":"Thomas Hartmann","type":"Person","_key":"67428"} +{"label":"S\u00f8ren Malling","version":29,"id":"82537","lastModified":"1301902506000","name":"S\u00f8ren Malling","type":"Person","_key":"67429"} +{"label":"Jakob Fauerby","version":19,"id":"82538","lastModified":"1301902237000","name":"Jakob Fauerby","type":"Person","_key":"67430"} +{"label":"Linda Pedersen","version":35,"id":"82539","lastModified":"1301901859000","name":"Linda Pedersen","type":"Person","_key":"67431"} +{"label":"l'Enfer","description":"Three sisters share a connection to a violent incident from their childhood reunite to for the chance to come to terms with their past.","id":"17960","runtime":98,"imdbId":"tt0430224","version":53,"lastModified":"1302198613000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e5b\/4bc95133017a3c57fe023e5b\/l-enfer-mid.jpg","genre":"Drama","title":"l'Enfer","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"67432"} +{"label":"Hell","description":"Paul, an irritable and stressed-out hotel manager, begins to gradually develop paranoid delusions about his wife's infidelity...","id":"17961","runtime":100,"imdbId":"tt0109731","version":110,"lastModified":"1301643465000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e64\/4bc95134017a3c57fe023e64\/l-enfer-mid.jpg","genre":"Drama","title":"Hell","releaseDate":761356800000,"language":"en","type":"Movie","_key":"67433"} +{"label":"After Life","description":"After people die, they spend a week with counselors, also dead, who help them pick one memory, the only memory they can take to eternity...","id":"17962","runtime":118,"imdbId":"tt0165078","version":258,"lastModified":"1302198259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6d\/4bc95134017a3c57fe023e6d\/wandafuru-raifu-mid.jpg","genre":"Drama","title":"After Life","releaseDate":883612800000,"language":"en","type":"Movie","_key":"67434"} +{"label":"Arata","version":27,"id":"82540","lastModified":"1301902311000","name":"Arata","type":"Person","_key":"67435"} +{"label":"Erika Oda","version":24,"id":"82541","lastModified":"1301902174000","name":"Erika Oda","type":"Person","_key":"67436"} +{"label":"Kei Tani","version":24,"id":"82542","lastModified":"1301902135000","name":"Kei Tani","type":"Person","_key":"67437"} +{"label":"Gone Nutty","description":"Scrat tries to finish his rather large collection of acorns when things start going nutty.","id":"17963","runtime":5,"imdbId":"tt0342965","version":55,"lastModified":"1301904440000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7e\/4bc95135017a3c57fe023e7e\/gone-nutty-mid.jpg","studio":"Blue Sky Studios","genre":"Animation","title":"Gone Nutty","releaseDate":1038268800000,"language":"en","type":"Movie","_key":"67438"} +{"label":"Svensson Svensson - filmen","description":"The Svensson family moves to Stockholm because Lena got a new job.","id":"17964","runtime":0,"imdbId":"tt0120253","homepage":"81","version":33,"lastModified":"1302197872000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/320\/4bf24ef7017a3c320a000320\/svensson-svensson-filmen-mid.jpg","studio":"SVT Drama","title":"Svensson Svensson - filmen","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67439"} +{"label":"Allan Svensson","version":29,"id":"82543","lastModified":"1301902414000","name":"Allan Svensson","type":"Person","_key":"67440"} +{"label":"Chelsie Bell Dickson","version":19,"id":"82545","lastModified":"1301902502000","name":"Chelsie Bell Dickson","type":"Person","_key":"67441"} +{"label":"Gabriel Odenhammar","version":21,"id":"82546","lastModified":"1302077440000","name":"Gabriel Odenhammar","type":"Person","_key":"67442"} +{"label":"The Abominable Dr. Phibes","description":"Famous organist Anton Phibes is horribly disfigured in an automobile accident while rushing to the side of his sick wife and presumed to be dead. Once Phibes learns that his wife died on the operating table, he is convinced the doctor's are responsible and begins exacting his revenge on all those involved. ","id":"17965","runtime":94,"imdbId":"tt0066740","trailer":"http:\/\/www.youtube.com\/watch?v=1187","version":202,"lastModified":"1301903270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e87\/4bc95139017a3c57fe023e87\/the-abominable-dr-phibes-mid.jpg","studio":"American International Pictures","genre":"Horror","title":"The Abominable Dr. Phibes","releaseDate":43372800000,"language":"en","type":"Movie","_key":"67443"} +{"label":"Susan Travers","version":21,"id":"82544","lastModified":"1301902480000","name":"Susan Travers","type":"Person","_key":"67444"} +{"label":"Edward Burnham","version":23,"id":"82547","lastModified":"1301902480000","name":"Edward Burnham","type":"Person","_key":"67445"} +{"label":"Norman Jones","version":22,"id":"82550","lastModified":"1301902523000","name":"Norman Jones","type":"Person","_key":"67446"} +{"label":"Alan Zipson","version":21,"id":"82551","lastModified":"1301902308000","name":"Alan Zipson","type":"Person","_key":"67447"} +{"label":"Dallas Adams","version":21,"id":"82552","lastModified":"1301902480000","name":"Dallas Adams","type":"Person","_key":"67448"} +{"label":"James Grout","version":22,"id":"82553","lastModified":"1301902541000","name":"James Grout","type":"Person","_key":"67449"} +{"label":"Alister Williamson","version":24,"id":"82554","lastModified":"1301902308000","name":"Alister Williamson","type":"Person","_key":"67450"} +{"label":"Ian Marter","version":22,"id":"82555","lastModified":"1301902523000","name":"Ian Marter","type":"Person","_key":"67451"} +{"label":"Julian Grant","version":22,"id":"82556","lastModified":"1301902539000","name":"Julian Grant","type":"Person","_key":"67452"} +{"label":"Barbara Keogh","version":22,"id":"82557","lastModified":"1301902539000","name":"Barbara Keogh","type":"Person","_key":"67453"} +{"label":"Charles Farrell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a77\/4be53f06017a3c35b7000a77\/charles-farrell-profile.jpg","version":26,"id":"82558","lastModified":"1301902524000","name":"Charles Farrell","type":"Person","_key":"67454"} +{"label":"John Franklyn","version":22,"id":"82559","lastModified":"1301902212000","name":"John Franklyn","type":"Person","_key":"67455"} +{"label":"Walter Horsbrugh","version":21,"id":"82560","lastModified":"1301902480000","name":"Walter Horsbrugh","type":"Person","_key":"67456"} +{"label":"Smart Money","description":"Silver-screen icons Edward G. Robinson and James Cagney star in this classic drama as Nick and Jack Venizelos, two brothers whose fateful trip to the big city to do a little gambling results in a tragic turn of events. Directed by filmmaker Alfred E. Green, this film marks the only time in Robinson and Cagney's historic careers that the pair would team up on-screen.\r\n\r\n","id":"17966","runtime":81,"imdbId":"tt0022403","version":91,"lastModified":"1301904549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e94\/4bc9513a017a3c57fe023e94\/smart-money-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Smart Money","releaseDate":-1214265600000,"language":"en","type":"Movie","_key":"67457"} +{"label":"Evalyn Knapp","version":18,"id":"103500","lastModified":"1301902948000","name":"Evalyn Knapp","type":"Person","_key":"67458"} +{"label":"Ralf Harolde","version":24,"id":"101886","lastModified":"1301902765000","name":"Ralf Harolde","type":"Person","_key":"67459"} +{"label":"Noel Francis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ca\/4c615c747b9aa172d90003ca\/noel-francis-profile.jpg","biography":"Noel Francis was born in Temple, Texas on November 21, 1906, and by age 20 was appearing in the Ziegfeld Follies working opposite the comedy team of Wheeler and Woolsey. Eventually Fox scouts noticed her and in 1929 she was signed to a Hollywood contract. Because of her Follies background, Fox intended to develop Noel as a musical and dance star. Unfortunately, musicals were on the wane at the time (they did rebound) and her contract was dropped. Luckily, she was picked up by Warner Brothers, an","version":20,"id":"104800","lastModified":"1301902423000","name":"Noel Francis","type":"Person","_key":"67460"} +{"label":"Maurice Black","version":20,"id":"101890","lastModified":"1301902796000","name":"Maurice Black","type":"Person","_key":"67461"} +{"label":"Paul Porcasi","version":21,"id":"115770","lastModified":"1301902794000","name":"Paul Porcasi","type":"Person","_key":"67462"} +{"label":"Gladys Lloyd","version":17,"id":"96070","lastModified":"1301902857000","name":"Gladys Lloyd","type":"Person","_key":"67463"} +{"label":"Alfred E. Green","version":32,"id":"97774","lastModified":"1301902394000","name":"Alfred E. Green","type":"Person","_key":"67464"} +{"label":"De Scheepsjongens Van Bontekoe","description":"A ripping adventure yarn about teenage boys who join the crew of a ship of the Dutch East India Company in the 17th century. After a dramatic shipwreck and escape from an attack by natives, they must make their way to safety by themselves.","id":"17968","runtime":135,"imdbId":"tt0403483","version":102,"lastModified":"1302197266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eb1\/4bc9513e017a3c57fe023eb1\/de-scheepsjongens-van-bontekoe-mid.jpg","studio":"Bridge Films","genre":"Adventure","title":"De Scheepsjongens Van Bontekoe","releaseDate":1195689600000,"language":"en","type":"Movie","_key":"67465"} +{"label":"Pim Wessels","version":19,"id":"84819","lastModified":"1301902237000","name":"Pim Wessels","type":"Person","_key":"67466"} +{"label":"Martijn Hendrickx","version":19,"id":"84820","lastModified":"1301902631000","name":"Martijn Hendrickx","type":"Person","_key":"67467"} +{"label":"Billy Zomerdijk","version":19,"id":"84821","lastModified":"1301902237000","name":"Billy Zomerdijk","type":"Person","_key":"67468"} +{"label":"Reena Giasi","version":19,"id":"84823","lastModified":"1301902454000","name":"Reena Giasi","type":"Person","_key":"67469"} +{"label":"Peter Tuinman","version":20,"id":"84824","lastModified":"1301902237000","name":"Peter Tuinman","type":"Person","_key":"67470"} +{"label":"Sanneke Bos","version":19,"id":"84825","lastModified":"1301902454000","name":"Sanneke Bos","type":"Person","_key":"67471"} +{"label":"Cees Geel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/208\/4c04db73017a3c7e89000208\/cees-geel-profile.jpg","version":27,"id":"84638","lastModified":"1301901963000","name":"Cees Geel","type":"Person","_key":"67472"} +{"label":"Chris Zegers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/19b\/4c04d93a017a3c33d900019b\/chris-zegers-profile.jpg","version":21,"id":"84826","lastModified":"1301901941000","name":"Chris Zegers","type":"Person","_key":"67473"} +{"label":"Steven de Jong","version":26,"id":"84827","lastModified":"1301902497000","name":"Steven de Jong","type":"Person","_key":"67474"} +{"label":"Ben Folds and Waso Live in Perth","description":"Take a piano geek who, at times, plays what can best be described as heavy metal piano, throw in a 90-piece orchestra and you've got Ben Folds and WASO - Live in Perth, a new DVD music release on Epic.","id":"17969","runtime":80,"imdbId":"tt0853087","version":116,"lastModified":"1301665504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eba\/4bc95141017a3c57fe023eba\/ben-folds-and-waso-live-in-perth-mid.jpg","studio":"Sony BMG","title":"Ben Folds and Waso Live in Perth","releaseDate":1133827200000,"language":"en","type":"Movie","_key":"67475"} +{"label":"Ray Black","version":16,"id":"82727","lastModified":"1301902713000","name":"Ray Black","type":"Person","_key":"67476"} +{"label":"Ben Folds","version":19,"id":"82731","lastModified":"1301902502000","name":"Ben Folds","type":"Person","_key":"67477"} +{"label":"Midnight Madness","description":"A genius grad student organizes an all-night treasure hunt in which five rival teams composed of colorful oddballs furiously match wits with one another while trying to locate and decipher various cryptic clues planted ingeniously around Los Angeles.","id":"17971","runtime":112,"imdbId":"tt0081159","version":171,"lastModified":"1302196785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebf\/4bc95141017a3c57fe023ebf\/midnight-madness-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"Midnight Madness","releaseDate":318816000000,"language":"en","type":"Movie","_key":"67478"} +{"label":"Michael Nankin","version":23,"id":"44481","lastModified":"1301901947000","name":"Michael Nankin","type":"Person","_key":"67479"} +{"label":"David Wechter","version":23,"id":"57109","lastModified":"1301901561000","name":"David Wechter","type":"Person","_key":"67480"} +{"label":"Maggie Roswell","version":18,"id":"6007","lastModified":"1301901459000","name":"Maggie Roswell","type":"Person","_key":"67481"} +{"label":"Signore & Signori","description":"No overview found.","id":"17974","runtime":0,"imdbId":"tt0062271","version":59,"lastModified":"1301907379000","title":"Signore & Signori","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"67482"} +{"label":"Pietro Germi","version":28,"id":"95040","lastModified":"1301902534000","name":"Pietro Germi","type":"Person","_key":"67483"} +{"label":"Olga Villi","version":3,"id":"227244","lastModified":"1298979651000","name":"Olga Villi","type":"Person","_key":"67484"} +{"label":"Something's Got to Give","description":"Unfinished remake of \"My Favorite Wife\", due to the firing of Marilyn Monroe from the film. She was eventually re-hired, but died in August, 1962. Film was never completed.","id":"17976","runtime":37,"imdbId":"tt0217055","version":44,"lastModified":"1302067126000","studio":"Twentieth Century-Fox Film Corporation","title":"Something's Got to Give","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"67485"} +{"label":"The Great White Hope","description":"No overview found.","id":"17978","runtime":103,"imdbId":"tt0065797","version":83,"lastModified":"1302196108000","genre":"Drama","title":"The Great White Hope","releaseDate":24451200000,"language":"en","type":"Movie","_key":"67486"} +{"label":"A Christmas Carol","description":"Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.","id":"17979","runtime":96,"imdbId":"tt1067106","trailer":"http:\/\/www.youtube.com\/watch?v=6YAOYs3ObzI","version":356,"lastModified":"1302195843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f0\/4d7cf81e5e73d628280025f0\/a-christmas-carol-mid.jpg","studio":"Walt Disney Pictures","genre":"Fantasy","title":"A Christmas Carol","releaseDate":1257206400000,"language":"en","tagline":"Season's Greedings","type":"Movie","_key":"67487"} +{"label":"Jonatan Spangs familie","description":"No overview found.","id":"17983","runtime":100,"imdbId":"tt1515837","version":33,"lastModified":"1302195295000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee8\/4bc9514b017a3c57fe023ee8\/jonatan-spangs-familie-mid.jpg","genre":"Comedy","title":"Jonatan Spangs familie","releaseDate":1226966400000,"language":"en","type":"Movie","_key":"67488"} +{"label":"The Absent-Minded Professor","description":"Hailed as one of Walt Disney's most hilarious comedies, The Absent-Minded Professor contains two essential elements for laughter - Fred MacMurray and Flubber, his gravity-defying formula for flying rubber!","id":"17984","runtime":96,"imdbId":"tt0054594","version":142,"lastModified":"1302195002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef1\/4bc9514c017a3c57fe023ef1\/the-absent-minded-professor-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"The Absent-Minded Professor","releaseDate":-277603200000,"language":"en","type":"Movie","_key":"67489"} +{"label":"Bleeder","description":"No overview found.","id":"17985","runtime":98,"imdbId":"tt0161292","version":63,"lastModified":"1301904040000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef6\/4bc9514c017a3c57fe023ef6\/bleeder-mid.jpg","studio":"Kamikaze","genre":"Drama","title":"Bleeder","releaseDate":933897600000,"language":"en","type":"Movie","_key":"67490"} +{"label":"Liv Corfixen","version":21,"id":"82564","lastModified":"1301902360000","name":"Liv Corfixen","type":"Person","_key":"67491"} +{"label":"The Most Beautiful","description":"No overview found.","id":"17988","runtime":85,"imdbId":"tt0036947","version":51,"lastModified":"1302194444000","title":"The Most Beautiful","releaseDate":-820540800000,"language":"en","type":"Movie","_key":"67492"} +{"label":"Impromptu","description":"In 1830s France, pianist\/composer Fr\u00e9d\u00e9ric Chopin is pursued romantically by the determined, individualistic woman who uses the name George Sand.","id":"17990","runtime":107,"imdbId":"tt0102103","version":309,"lastModified":"1302194166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ee\/4cd788a85e73d676d30004ee\/impromptu-mid.jpg","genre":"Comedy","title":"Impromptu","releaseDate":671414400000,"language":"en","type":"Movie","_key":"67493"} +{"label":"Jams Lapine","version":18,"id":"141970","lastModified":"1301902695000","name":"Jams Lapine","type":"Person","_key":"67494"} +{"label":"Tetsuo II: Body Hammer","description":"No overview found.","id":"17991","runtime":83,"imdbId":"tt0105569","version":140,"lastModified":"1302240545000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/efb\/4bc9514c017a3c57fe023efb\/ii-body-hammer-mid.jpg","genre":"Drama","title":"Tetsuo II: Body Hammer","releaseDate":694224000000,"language":"en","type":"Movie","_key":"67495"} +{"label":"Crusty Demons of Dirt 2","description":"Crusty Demons of Dirt, Vol. 2 features many of the top riders in motocross performing some of their riskiest jumps and tricks. Seth Enslow, Joel Albrecht, Jeff Emig, and Ryan Hughes all ride their favorite bikes in such locales as California, Oregon, Nevada, South Africa, and Namibia. Additional stunts and skits are also performed by Jeff Matiasevich, Brian Deegan, and Mike Metzger. The cameras ar","id":"17992","runtime":40,"version":43,"lastModified":"1301904432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f04\/4bc9514d017a3c57fe023f04\/crusty-demons-of-dirt-2-mid.jpg","studio":"Fleshwound Films","genre":"Road Movie","title":"Crusty Demons of Dirt 2","releaseDate":820454400000,"language":"en","type":"Movie","_key":"67496"} +{"label":"Seth Enslow","version":22,"id":"82574","lastModified":"1301901284000","name":"Seth Enslow","type":"Person","_key":"67497"} +{"label":"Mike Metzger","version":20,"id":"82575","lastModified":"1301902305000","name":"Mike Metzger","type":"Person","_key":"67498"} +{"label":"Phil Lawrence","version":15,"id":"82576","lastModified":"1301902063000","name":"Phil Lawrence","type":"Person","_key":"67499"} +{"label":"Henry & June","description":"1931'de Paris'te Anais Nin (Maria de Medeiros), Henry Miller (Fred Ward)ve e\u015fi June (Uma Thurman) ile tan\u0131\u015f\u0131yor. \u0130kisinden de etkilenen Nin, kocas\u0131 Hugo (Richard E.Grant), Henry ve ba\u015fkalar\u0131yla cinselli\u011fini ke\u015ffediyor. June, Paris ve New York aras\u0131nda i\u015f gezileri yaparken Henry de bir kitap yaz\u0131yor. Hugo ve Nin kitab\u0131 finanse ediyorlar ama June Henry'nin nin'e kar\u015f\u0131 olan davran\u0131\u015flar\u0131ndan rahats\u0131zl\u0131k duyuyor. Nin ve Henry de yazma stilleri konusunda devaml\u0131 kavga ediyorlar.","id":"17993","runtime":136,"imdbId":"tt0099762","version":128,"lastModified":"1302193324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b5\/4bda04f0017a3c1bfb0003b5\/henry-june-mid.jpg","genre":"Documentary","title":"Henry & June","releaseDate":655084800000,"language":"en","type":"Movie","_key":"67500"} +{"label":"Sylvie Huguel","version":19,"id":"94693","lastModified":"1301902707000","name":"Sylvie Huguel","type":"Person","_key":"67501"} +{"label":"Witchboard","description":"Playing around with a Ouija board, a trio of friends succeeds in contacting the spirit of a young boy. Trouble begins when the evil spirit, Malfeitor, takes over one of their bodies.","id":"17994","runtime":98,"imdbId":"tt0090327","version":70,"lastModified":"1301905719000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0d\/4bc9514e017a3c57fe023f0d\/witchboard-mid.jpg","genre":"Horror","title":"Witchboard","releaseDate":542592000000,"language":"en","type":"Movie","_key":"67502"} +{"label":"Kevin Tenney","version":28,"id":"82579","lastModified":"1301901399000","name":"Kevin Tenney","type":"Person","_key":"67503"} +{"label":"Stephen Nichols","version":21,"id":"82580","lastModified":"1301902174000","name":"Stephen Nichols","type":"Person","_key":"67504"} +{"label":"DysFunktional Family","description":"Documentary on comedian Eddie Griffin who heads back home to a family reunion, which includes two uncles - one a porn director and the other an ex-pimp","id":"17995","runtime":89,"imdbId":"tt0337996","version":99,"lastModified":"1302240155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f16\/4bc9514e017a3c57fe023f16\/dysfunktional-family-mid.jpg","genre":"Comedy","title":"DysFunktional Family","releaseDate":1049414400000,"language":"en","type":"Movie","_key":"67505"} +{"label":"Joe Howard","version":20,"id":"82581","lastModified":"1301902174000","name":"Joe Howard","type":"Person","_key":"67506"} +{"label":"Matthew Brent","version":20,"id":"82582","lastModified":"1301901989000","name":"Matthew Brent","type":"Person","_key":"67507"} +{"label":"Robert Noble","version":20,"id":"82583","lastModified":"1301902021000","name":"Robert Noble","type":"Person","_key":"67508"} +{"label":"Gryphon","description":"In a mystical land torn apart by civil war, a warrior princess must team up with a rival warrior prince to hunt down an evil sorcerer who has summoned a giant flying demon which is terrorizing their land.","id":"17997","runtime":89,"imdbId":"tt0494206","version":125,"lastModified":"1302064134000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f1f\/4bc9514f017a3c57fe023f1f\/gryphon-mid.jpg","studio":"Media Pro Pictures","genre":"Action","title":"Gryphon","releaseDate":1169856000000,"language":"en","type":"Movie","_key":"67509"} +{"label":"Andrew Prowse","version":24,"id":"79387","lastModified":"1301901864000","name":"Andrew Prowse","type":"Person","_key":"67510"} +{"label":"Jonathan LaPaglia","version":21,"id":"49326","lastModified":"1301901717000","name":"Jonathan LaPaglia","type":"Person","_key":"67511"} +{"label":"Douglas Roberts","version":20,"id":"82585","lastModified":"1301902454000","name":"Douglas Roberts","type":"Person","_key":"67512"} +{"label":"Don't Trip ... He Ain't Through with Me Yet","description":"Steve Harvey, one of the Original Kings of Comedy, leaves his blue material at home in this stand-up performance in front of church-folk at the Phillips Arena in Atlanta, Georgia","id":"18001","runtime":90,"imdbId":"tt0760310","version":161,"lastModified":"1302191804000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f28\/4bc9514f017a3c57fe023f28\/don-t-trip-he-ain-t-through-with-me-yet-mid.jpg","studio":"Codeblack Entertainment","genre":"Comedy","title":"Don't Trip ... He Ain't Through with Me Yet","releaseDate":1142553600000,"language":"en","type":"Movie","_key":"67513"} +{"label":"Leslie Small","version":25,"id":"82586","lastModified":"1301901862000","name":"Leslie Small","type":"Person","_key":"67514"} +{"label":"Steve Harvey","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7e3\/4d0ccfa75e73d6370a0007e3\/steve-harvey-profile.jpg","version":29,"id":"82587","lastModified":"1301901398000","name":"Steve Harvey","type":"Person","_key":"67515"} +{"label":"Love, Honour and Obey","description":"Jonny (JLM) dreams of leaving his dead-end job as a courier. Through his childhood best friend (JL), nephew of the notorious crime lord Ray Kreed (RW), he wins his way into the toughest gang in North London. Hungry for some real gangster action, Jonny sparks a feud between Ray's gang and rival firm in South London headed by drug kingpin Sean (SP) and his sidekick Matthew (RI). ","id":"18002","runtime":103,"imdbId":"tt0199727","trailer":"http:\/\/www.youtube.com\/watch?v=oybfiOGc_PY","version":297,"lastModified":"1302239942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f31\/4bc95150017a3c57fe023f31\/love-honour-and-obey-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"Love, Honour and Obey","releaseDate":955065600000,"language":"en","type":"Movie","_key":"67516"} +{"label":"Ray Burdis","version":22,"id":"82805","lastModified":"1301902054000","name":"Ray Burdis","type":"Person","_key":"67517"} +{"label":"Dominic Anciano","version":22,"id":"82804","lastModified":"1301902220000","name":"Dominic Anciano","type":"Person","_key":"67518"} +{"label":"John Beckett","version":17,"id":"138038","lastModified":"1301902403000","name":"John Beckett","type":"Person","_key":"67519"} +{"label":"Laila Morse","version":22,"id":"113523","lastModified":"1301902519000","name":"Laila Morse","type":"Person","_key":"67520"} +{"label":"Leprechaun 2","description":"An evil leprechaun is to take the daughter of his slave as a bride, but loses her when the slave sacrifices his life for her. One thousand years later, the leprechaun is determined to take the beautiful descendant of the woman for his bride.","id":"18009","runtime":85,"imdbId":"tt0110329","version":146,"lastModified":"1302191059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f48\/4bc95154017a3c57fe023f48\/leprechaun-2-mid.jpg","studio":"Trimark Pictures","genre":"Comedy","title":"Leprechaun 2","releaseDate":765763200000,"language":"en","type":"Movie","_key":"67521"} +{"label":"Charlie Heath","version":20,"id":"82593","lastModified":"1301901862000","name":"Charlie Heath","type":"Person","_key":"67522"} +{"label":"Shevonne Durkin","version":20,"id":"82594","lastModified":"1301901717000","name":"Shevonne Durkin","type":"Person","_key":"67523"} +{"label":"Adam Biesk","version":14,"id":"166876","lastModified":"1301903529000","name":"Adam Biesk","type":"Person","_key":"67524"} +{"label":"James Lancaster","version":13,"id":"178557","lastModified":"1301903315000","name":"James Lancaster","type":"Person","_key":"67525"} +{"label":"Linda Hopkins","version":13,"id":"178776","lastModified":"1301903312000","name":"Linda Hopkins","type":"Person","_key":"67526"} +{"label":"Leprechaun in the Hood","description":"The Leprechaun ends up in the inner city, Compton, CA. More comedy than horror fill this installment.","id":"18011","runtime":90,"imdbId":"tt0209095","version":324,"lastModified":"1301904482000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4d\/4bc95154017a3c57fe023f4d\/leprechaun-in-the-hood-mid.jpg","studio":"Trimark Pictures","genre":"Horror","title":"Leprechaun in the Hood","releaseDate":954201600000,"language":"en","type":"Movie","_key":"67527"} +{"label":"Rob Spera","version":22,"id":"84982","lastModified":"1301902700000","name":"Rob Spera","type":"Person","_key":"67528"} +{"label":"Anthony Montgomery","version":13,"id":"151377","lastModified":"1301903415000","name":"Anthony Montgomery","type":"Person","_key":"67529"} +{"label":"Rashaan Nall","version":18,"id":"94646","lastModified":"1301902610000","name":"Rashaan Nall","type":"Person","_key":"67530"} +{"label":"Red Grant","version":3,"id":"231287","lastModified":"1301609372000","name":"Red Grant","type":"Person","_key":"67531"} +{"label":"Christmas Unwrapped: The History of Christmas","description":"Christmas abounds with traditions, from neighborhood carolers to lovingly decorated trees, but from where did all these rituals emerge? This enlightening program looks at the origins of the Western world's most popular Christmas traditions -- from the significance of December 25th and its relationship to winter solstice to the enchanting legend of Santa Claus and Prince Albert's 1841 unveiling of the Christmas tree.","id":"18012","runtime":60,"imdbId":"tt0251021","version":92,"lastModified":"1302239599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f52\/4bc95154017a3c57fe023f52\/christmas-unwrapped-the-history-of-christmas-mid.jpg","genre":"Documentary","title":"Christmas Unwrapped: The History of Christmas","releaseDate":1114473600000,"language":"en","type":"Movie","_key":"67532"} +{"label":"Harry Smith","version":22,"id":"82596","lastModified":"1301902174000","name":"Harry Smith","type":"Person","_key":"67533"} +{"label":"Shark Attack 3: Megalodon","description":"When two researchers discover a colossal shark's tooth off the Mexican coast their worst fears surface - the most menacing beast to ever rule the waters is still alive and mercilessly feeding on anything that crosses its path. Now they must hunt the fierce killer and destroy it... before there is no one left to stop it","id":"18015","runtime":94,"imdbId":"tt0313597","version":278,"lastModified":"1302190736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d5\/4c5c6c427b9aa151f20008d5\/shark-attack-3-mid.jpg","studio":"Nu Image Films","genre":"Horror","title":"Shark Attack 3: Megalodon","releaseDate":1038268800000,"language":"en","tagline":"Terror has surfaced...","type":"Movie","_key":"67534"} +{"label":"John Barrowman","version":22,"id":"82599","lastModified":"1301901993000","name":"John Barrowman","type":"Person","_key":"67535"} +{"label":"A Sister's Secret","description":"When Katherine (Alexandra Paul) finds out her father's company is about to close the paper mill they own in her hometown in rural Pennsylvania, she comes up with a plan to save it. Needing the approval of the city council, she goes back and runs into someone from her past: Jane (Cynthia Preston). Years ago, in high school, Katherine dated Jane's twin brother Sean, who subsequently committed suicid","id":"18016","runtime":0,"imdbId":"tt1276106","version":119,"lastModified":"1302239480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/926\/4d654a3a5e73d66a6b000926\/a-sister-s-secret-mid.jpg","title":"A Sister's Secret","releaseDate":1229817600000,"language":"en","type":"Movie","_key":"67536"} +{"label":"Yolngu Boy","description":"After committing a crime for which he is likely to be jailed, a Yolngu teenager convinces two of his childhood friends to join him on a journey from North East Arnhem Land to Darwin to seek help from a tribal leader.","id":"18017","runtime":85,"imdbId":"tt0266078","version":178,"lastModified":"1302239227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01b\/4c855c047b9aa1532f00001b\/yolngu-boy-mid.jpg","studio":"Burrundi Productions","genre":"Drama","title":"Yolngu Boy","releaseDate":985219200000,"language":"en","type":"Movie","_key":"67537"} +{"label":"Backstreet Boys - Live From the O2 Arena, London","description":"From the O2 Arena in London, Backstreet Boys deliver an electric live show with energetic performances of best-loved favorites such as \u201cI Want It That Way\u201d and \u201cEverybody (Backstreet\u2019s Back)\u201d, as well as new tracks \u201cInconsolable\u201d and \u201cHelpless When She Smiles,\u201d from the current Unbreakable album.","id":"18018","runtime":0,"version":21,"lastModified":"1301904667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f69\/4bc95155017a3c57fe023f69\/backstreet-boys-live-from-the-o2-arena-london-mid.jpg","title":"Backstreet Boys - Live From the O2 Arena, London","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67538"} +{"label":"Brian Littrell","version":17,"id":"82601","lastModified":"1301902237000","name":"Brian Littrell","type":"Person","_key":"67539"} +{"label":"Nick Carter","version":19,"id":"82602","lastModified":"1301901602000","name":"Nick Carter","type":"Person","_key":"67540"} +{"label":"A.J. McLean","version":17,"id":"82603","lastModified":"1301902237000","name":"A.J. McLean","type":"Person","_key":"67541"} +{"label":"Howie Dorough","version":17,"id":"82604","lastModified":"1301902454000","name":"Howie Dorough","type":"Person","_key":"67542"} +{"label":"Julius Caesar","description":"No overview found.","id":"18019","runtime":120,"imdbId":"tt0045943","version":121,"lastModified":"1302238543000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f76\/4bc95156017a3c57fe023f76\/julius-caesar-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Documentary","title":"Julius Caesar","releaseDate":-523152000000,"language":"en","type":"Movie","_key":"67543"} +{"label":"Greer Garson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4f7\/4bf2e3ea017a3c32170004f7\/greer-garson-profile.jpg","version":31,"id":"93805","lastModified":"1301901838000","name":"Greer Garson","type":"Person","_key":"67544"} +{"label":"Dying Breed","description":"In the depths of the Tasmanian wilderness a group of hikers looking for a Tasmanian Tiger. They encounter a group of cannibals descended from Alexander Pearce, who was hung for cannibalism in 1824, out to find fresh breeding stock.","id":"18029","runtime":91,"imdbId":"tt1064744","trailer":"http:\/\/www.youtube.com\/watch?v=dtnPGuvmnug","homepage":"http:\/\/www.dyingbreed.com.au\/","version":140,"lastModified":"1302189673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f83\/4bc95157017a3c57fe023f83\/dying-breed-mid.jpg","studio":"Ambience Entertainment","genre":"Horror","title":"Dying Breed","releaseDate":1209168000000,"language":"en","tagline":"Some species are better off dead.","type":"Movie","_key":"67545"} +{"label":"Mirrah Foulkes","version":20,"id":"82605","lastModified":"1301902454000","name":"Mirrah Foulkes","type":"Person","_key":"67546"} +{"label":"Melanie Vallejo","version":20,"id":"82606","lastModified":"1301902237000","name":"Melanie Vallejo","type":"Person","_key":"67547"} +{"label":"Peter Docker","version":20,"id":"82607","lastModified":"1301902063000","name":"Peter Docker","type":"Person","_key":"67548"} +{"label":"Brendan Donoghue","version":21,"id":"82608","lastModified":"1301902063000","name":"Brendan Donoghue","type":"Person","_key":"67549"} +{"label":"Jody Dwyer","version":20,"id":"82609","lastModified":"1301902454000","name":"Jody Dwyer","type":"Person","_key":"67550"} +{"label":"Kiss Me Deadly","description":"One evening, Hammer gives a ride to Christina, an attractive hitchhiker on a lonely country road, who has escaped from the nearby lunatic asylum. Thugs waylay them and force his car to crash. When Hammer returns to semi-consciousness, he hears Christina being tortured until she dies. Hammer, both for vengeance and in hopes that \"something big\" is behind it all, decides to pursue the case.","id":"18030","runtime":106,"imdbId":"tt0048261","trailer":"http:\/\/www.youtube.com\/watch?v=qCuhR_SyH8k","version":122,"lastModified":"1302189405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f91\/4bc95158017a3c57fe023f91\/kiss-me-deadly-mid.jpg","studio":"Parklane Pictures Inc.","genre":"Drama","title":"Kiss Me Deadly","releaseDate":-461548800000,"language":"en","tagline":"Blood red kisses! White hot thrills! Mickey Spillane's latest H-bomb...","type":"Movie","_key":"67551"} +{"label":"Juano Hernandez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/45e\/4bf2d813017a3c320a00045e\/juano-hernandez-profile.jpg","version":25,"id":"82613","lastModified":"1301902483000","name":"Juano Hernandez","type":"Person","_key":"67552"} +{"label":"Marian Carr","version":28,"id":"82614","lastModified":"1301901862000","name":"Marian Carr","type":"Person","_key":"67553"} +{"label":"Maxine Cooper","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/109\/4bd70c92017a3c21f2000109\/maxine-cooper-profile.jpg","version":24,"id":"82615","lastModified":"1301902525000","name":"Maxine Cooper","type":"Person","_key":"67554"} +{"label":"Gaby Rodgers","version":19,"id":"140300","lastModified":"1301902898000","name":"Gaby Rodgers","type":"Person","_key":"67555"} +{"label":"Jerry Zinneman","version":19,"id":"140301","lastModified":"1301902946000","name":"Jerry Zinneman","type":"Person","_key":"67556"} +{"label":"Leigh Snowden","version":21,"id":"140302","lastModified":"1301902736000","name":"Leigh Snowden","type":"Person","_key":"67557"} +{"label":"Dark Matter","description":"Liu Xing a brilliant Chinese student, arrives at University and makes the transition into American life with the help of Joanna Silver. Xing joins a cosmology group working to create a model of the origins of the universe. He is obsessed with the study of dark matter and a theory that conflicts with the group's model. When he begins to make breakthroughs of his own, he encounters obstructions.","id":"18031","runtime":90,"imdbId":"tt0416675","homepage":"http:\/\/www.darkmatterthefilm.com\/","version":152,"lastModified":"1301927569000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa2\/4bc9515d017a3c57fe023fa2\/dark-matter-mid.jpg","studio":"Myriad Pictures","genre":"Drama","title":"Dark Matter","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"67558"} +{"label":"Peng Chi","version":15,"id":"148093","lastModified":"1301902716000","name":"Peng Chi","type":"Person","_key":"67559"} +{"label":"The Secret of Moonacre","description":"When 13 year old Maria Merryweather's father dies, leaving her orphaned and homeless, she is forced to leave her luxurious London life to go and live with Sir Benjamin, an eccentric uncle she didn't know she had, at the mysterious Moonacre Manor.","id":"18032","runtime":103,"imdbId":"tt0396707","version":216,"lastModified":"1302188594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb7\/4bc9515f017a3c57fe023fb7\/the-secret-of-moonacre-mid.jpg","studio":"Forgan-Smith Entertainment","genre":"Adventure","title":"The Secret of Moonacre","releaseDate":1220659200000,"language":"en","type":"Movie","_key":"67560"} +{"label":"Montana Sky","description":"The wealthy stock dealer bequeaths his Montana farm to the three daughters provided they would live there together at least for a year.","id":"18033","runtime":96,"imdbId":"tt0860467","version":148,"lastModified":"1302237978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc0\/4bc95160017a3c57fe023fc0\/montana-sky-mid.jpg","studio":"Mandalay Entertainment","genre":"Drama","title":"Montana Sky","releaseDate":1170633600000,"language":"en","type":"Movie","_key":"67561"} +{"label":"Mike Robe","version":19,"id":"82618","lastModified":"1301902237000","name":"Mike Robe","type":"Person","_key":"67562"} +{"label":"Charlotte Ross","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4d76bbe37b9aa15c7c00023e\/charlotte-ross-profile.jpg","version":23,"id":"82622","lastModified":"1301902236000","name":"Charlotte Ross","type":"Person","_key":"67563"} +{"label":"Ashley Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a3b\/4d6682dd7b9aa12a09002a3b\/ashley-williams-profile.jpg","biography":"<meta charset=\"utf-8\"><span style=\"font-family: Arial, sans-serif; font-size: 13px; \">Williams was born in Westchester County, New York. Her father, Gurney Williams, is a freelance medical journalist and her mother, Linda, is a fundraiser for The Michael J. Fox Foundation for Parkinson's Research. She is the younger sister of Kimberly Williams-Paisley, who is also an actress, and sister-in-law to country music star Brad Paisley. Williams attended Rye High School in Rye, New York. She has a ","version":41,"birthday":"279673200000","id":"122888","birthplace":"Rye, New York","lastModified":"1302075875000","name":"Ashley Williams","type":"Person","_key":"67564"} +{"label":"A Bunch of Amateurs","description":"No overview found.","id":"18034","runtime":96,"imdbId":"tt1171226","version":101,"lastModified":"1302237878000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc9\/4bc95160017a3c57fe023fc9\/a-bunch-of-amateurs-mid.jpg","genre":"Comedy","title":"A Bunch of Amateurs","releaseDate":1226880000000,"language":"en","type":"Movie","_key":"67565"} +{"label":"Moving McAllister","description":"Rick Robinson is a ladder-climbing law intern from Miami with four days until the Bar Exam. Desperate to score points with his boss (McAllister)..","id":"18035","runtime":89,"imdbId":"tt0444672","version":175,"lastModified":"1302237722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fdb\/4bc95162017a3c57fe023fdb\/moving-mcallister-mid.jpg","studio":"Revelations Entertainment","genre":"Comedy","title":"Moving McAllister","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"67566"} +{"label":"Andrew Black","version":21,"id":"82623","lastModified":"1301901777000","name":"Andrew Black","type":"Person","_key":"67567"} +{"label":"Hubbel Palmer","version":19,"id":"82624","lastModified":"1301901717000","name":"Hubbel Palmer","type":"Person","_key":"67568"} +{"label":"Varg Veum - Begravde Hunder","description":"Racial tension is running high in Bergen after a young black asylum seeker dies at the hands of the Police. Shortly afterwards, a right-wing politician is targeted by a gunman at a public rally and his wife is fatally wounded. Another member of the right-wing party, Marit Holm, approaches private investigator Varg Veum, insisting she is being stalked.","id":"18037","runtime":90,"imdbId":"tt1296458","version":51,"lastModified":"1301906598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff0\/4bc95163017a3c57fe023ff0\/varg-veum-begravde-hunder-mid.jpg","studio":"Miso Film","genre":"Thriller","title":"Varg Veum - Begravde Hunder","releaseDate":1224028800000,"language":"en","type":"Movie","_key":"67569"} +{"label":"Andreas Cappelen","version":16,"id":"107764","lastModified":"1301902631000","name":"Andreas Cappelen","type":"Person","_key":"67570"} +{"label":"Thanksgiving Family Reunion","description":"All Mitch Snider wants for his family is a traditional holiday feast with the relatives. The problem is that he doesn't have any..","id":"18038","runtime":91,"imdbId":"tt0374275","version":68,"lastModified":"1301905263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4bc95164017a3c57fe023ff9\/thanksgiving-family-reunion-mid.jpg","genre":"Comedy","title":"Thanksgiving Family Reunion","releaseDate":1069545600000,"language":"en","type":"Movie","_key":"67571"} +{"label":"Hallie Todd","version":22,"id":"82625","lastModified":"1301901862000","name":"Hallie Todd","type":"Person","_key":"67572"} +{"label":"Calum Worthy","version":20,"id":"82626","lastModified":"1301902063000","name":"Calum Worthy","type":"Person","_key":"67573"} +{"label":"Night Skies","description":"On March 13th, 1997 one of the largest UFO sightings ever recorded took place across the southwestern United States...","id":"18040","runtime":90,"imdbId":"tt0460883","version":150,"lastModified":"1302232834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/002\/4bc95168017a3c57fe024002\/night-skies-mid.jpg","studio":"Ringleader Studios","genre":"Drama","title":"Night Skies","releaseDate":1169510400000,"language":"en","type":"Movie","_key":"67574"} +{"label":"Roy Knyrim","version":24,"id":"82627","lastModified":"1302118937000","name":"Roy Knyrim","type":"Person","_key":"67575"} +{"label":"George Stults","version":25,"id":"82629","lastModified":"1301901643000","name":"George Stults","type":"Person","_key":"67576"} +{"label":"Ashley Peldon","version":23,"id":"82630","lastModified":"1301902486000","name":"Ashley Peldon","type":"Person","_key":"67577"} +{"label":"Joseph Sikora","version":19,"id":"82631","lastModified":"1301902454000","name":"Joseph Sikora","type":"Person","_key":"67578"} +{"label":"Jerry L. Jackson","version":19,"id":"82632","lastModified":"1301902454000","name":"Jerry L. Jackson","type":"Person","_key":"67579"} +{"label":"Gossip","description":"On a beautiful college campus, something ugly is about to be spread around. A bit of gossip that was told is starting to take a frightening turn. Who could it have offended and how far will the person on the other side of the gossip handle the embarrassing situation.","id":"18041","runtime":90,"imdbId":"tt0176783","version":165,"lastModified":"1302237294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00b\/4bc9516a017a3c57fe02400b\/gossip-mid.jpg","genre":"Drama","title":"Gossip","releaseDate":946684800000,"language":"en","type":"Movie","_key":"67580"} +{"label":"Popcorn","description":"Too insecure to approach the girl of his dreams, Danny takes a job at the local multiplex where she works","id":"18043","runtime":90,"imdbId":"tt0483776","version":110,"lastModified":"1302237197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/014\/4bc9516b017a3c57fe024014\/popcorn-mid.jpg","studio":"DMS Films Limited","genre":"Comedy","title":"Popcorn","releaseDate":1172793600000,"language":"en","type":"Movie","_key":"67581"} +{"label":"Jack Ryder","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/146\/4cf1ae5f5e73d61e3f000146\/jack-ryder-profile.jpg","version":20,"id":"82633","lastModified":"1301901651000","name":"Jack Ryder","type":"Person","_key":"67582"} +{"label":"Jodi Albert","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/162\/4cf1adfa5e73d61e3c000162\/jodi-albert-profile.jpg","version":20,"id":"82634","lastModified":"1301901369000","name":"Jodi Albert","type":"Person","_key":"67583"} +{"label":"Laura Aikman","version":17,"id":"82638","lastModified":"1301901534000","name":"Laura Aikman","type":"Person","_key":"67584"} +{"label":"Ophelia Lovibond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/427\/4d03e4397b9aa11bc2001427\/ophelia-lovibond-profile.jpg","biography":"Ophelia had a part in the John Lennon biopic Nowhere Boy[1] as well as the TV series FM. She played a leading role in the film 4.3.2.1[2] as Shannon and had roles in the 2011 films London Boulevard, No Strings Attached and Mr Popper's Pengiuns.","version":51,"id":"82639","lastModified":"1302184508000","name":"Ophelia Lovibond","type":"Person","_key":"67585"} +{"label":"Colette Brown","version":20,"id":"82637","lastModified":"1301902237000","name":"Colette Brown","type":"Person","_key":"67586"} +{"label":"Darren Fisher","version":21,"id":"82640","lastModified":"1301901862000","name":"Darren Fisher","type":"Person","_key":"67587"} +{"label":"Ogre","description":"A vicious Ogre rules over a town that has been stuck in time since the 1800's.","id":"18044","runtime":90,"imdbId":"tt0923824","version":113,"lastModified":"1302237121000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4bc9516d017a3c57fe024019\/ogre-mid.jpg","studio":"Cinetel Films","genre":"Horror","title":"Ogre","releaseDate":1204934400000,"language":"en","type":"Movie","_key":"67588"} +{"label":"Andrew Wheeler","version":19,"id":"102748","lastModified":"1301902631000","name":"Andrew Wheeler","type":"Person","_key":"67589"} +{"label":"Kimberley Warnat","version":19,"id":"102749","lastModified":"1301902631000","name":"Kimberley Warnat","type":"Person","_key":"67590"} +{"label":"Chilton Crane","version":22,"id":"86530","lastModified":"1301902140000","name":"Chilton Crane","type":"Person","_key":"67591"} +{"label":"Tyler Johnston","version":17,"id":"102750","lastModified":"1301902884000","name":"Tyler Johnston","type":"Person","_key":"67592"} +{"label":"John Wardlow","version":17,"id":"102751","lastModified":"1301902631000","name":"John Wardlow","type":"Person","_key":"67593"} +{"label":"Steven R. Monroe","version":37,"id":"88039","lastModified":"1301901957000","name":"Steven R. Monroe","type":"Person","_key":"67594"} +{"label":"The Dark Hours","description":"Dr. Samantha Goodman is a beautiful, young psychiatrist. Burnt out, she drives to the family\u2019s winter cottage to spend time with her husband and sister. A relaxing weekend is jarringly interrupted when a terrifying and unexpected guest arrives. What follows is an extraordinary night of terror and evil mind games where escape is not an option. ","id":"18045","runtime":80,"imdbId":"tt0402249","version":123,"lastModified":"1302237044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc9516e017a3c57fe024026\/the-dark-hours-mid.jpg","studio":"Calder Road Film","genre":"Horror","title":"The Dark Hours","releaseDate":1131667200000,"language":"en","type":"Movie","_key":"67595"} +{"label":"Iris Graham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fbd\/4d4d01095e73d617c7001fbd\/iris-graham-profile.jpg","version":22,"birthday":"486252000000","id":"82643","birthplace":"Campbell Riveer, British Columbia, Canada","lastModified":"1301902454000","name":"Iris Graham","type":"Person","_key":"67596"} +{"label":"David Calderisi","version":20,"id":"82644","lastModified":"1301902454000","name":"David Calderisi","type":"Person","_key":"67597"} +{"label":"Jeff Seymour","version":17,"id":"82645","lastModified":"1301902063000","name":"Jeff Seymour","type":"Person","_key":"67598"} +{"label":"Trevor Hayes","version":21,"id":"82646","lastModified":"1301902213000","name":"Trevor Hayes","type":"Person","_key":"67599"} +{"label":"Bruce McFee","version":21,"id":"82647","lastModified":"1301902404000","name":"Bruce McFee","type":"Person","_key":"67600"} +{"label":"Blue Gold: World Water Wars","description":"Wars of the future will be fought over water as they are over oil today, as the source of human survival enters the global marketplace and political arena. Corporate giants, private investors, and corrupt governments vie for control of our dwindling supply, prompting protests, lawsuits, and revolutions from citizens fighting for the right to survive.","id":"18046","runtime":90,"imdbId":"tt1137439","homepage":"http:\/\/www.bluegold-worldwaterwars.com\/","version":209,"lastModified":"1302184027000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/033\/4bc9516f017a3c57fe024033\/blue-gold-world-water-wars-mid.jpg","studio":"Purple Turtle Films","genre":"Documentary","title":"Blue Gold: World Water Wars","releaseDate":1223510400000,"language":"en","type":"Movie","_key":"67601"} +{"label":"Sam Bozzo","version":33,"id":"82648","lastModified":"1301901994000","name":"Sam Bozzo","type":"Person","_key":"67602"} +{"label":"Brian's Song","description":"Based on the real-life relationship between teammates Brian Piccolo and Gale Sayers and the bond established when Piccolo discovers that he is dying.","id":"18047","runtime":73,"imdbId":"tt0068315","trailer":"http:\/\/www.youtube.com\/watch?v=Lnt-BqOjaTQ","version":188,"lastModified":"1302183673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03c\/4bc9516f017a3c57fe02403c\/brian-s-song-mid.jpg","genre":"Drama","title":"Brian's Song","releaseDate":60307200000,"language":"en","type":"Movie","_key":"67603"} +{"label":"Brian's Song","description":"The story of professional football players Gale Sayes and Brian Piccolo, and how their friendship on and off the field was affected when Piccolo contracted a fatal disease","id":"18048","runtime":88,"imdbId":"tt0289873","version":114,"lastModified":"1301883206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/045\/4bc95170017a3c57fe024045\/brian-s-song-mid.jpg","genre":"Action","title":"Brian's Song","releaseDate":1007251200000,"language":"en","type":"Movie","_key":"67604"} +{"label":"The Keys of the Kingdom","description":"After losing his parents and his childhood sweetheart to tragedy, Francis Chisholm (Peck) joins the priesthood and devotes himself to a life of service and compassion. But Chisholm's unorthodox beliefs raise eyebrows among his superiors, especially Bishop Angus Mealy (Vincent Price). ","id":"18050","runtime":137,"imdbId":"tt0036983","version":72,"lastModified":"1302052640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a3\/4d7d384e5e73d628360029a3\/the-keys-of-the-kingdom-mid.jpg","title":"The Keys of the Kingdom","releaseDate":-790387200000,"language":"en","type":"Movie","_key":"67605"} +{"label":"Timecop: The Berlin Decision","description":"20 years after a set of events, the Time Enforcement Commission (TEC), is still going strong. Now Brandon Miller a TEC operative, believes that they have a responsibility to change history hoping that the world will be better but Ryan Chan another Tec operative stops him but kills the woman he loves in the process.","id":"18051","runtime":81,"imdbId":"tt0318763","version":107,"lastModified":"1302236624000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/052\/4bc95171017a3c57fe024052\/timecop-the-berlin-decision-mid.jpg","studio":"Capital Arts Entertainment","genre":"Action","title":"Timecop: The Berlin Decision","releaseDate":1064880000000,"language":"en","type":"Movie","_key":"67606"} +{"label":"Mary Page Keller","version":26,"id":"82653","lastModified":"1301902177000","name":"Mary Page Keller","type":"Person","_key":"67607"} +{"label":"Cereal Killerz","description":"Cereal Killerz is a culmination of snapshots compiled to form an intimate look into the lives of ten of the most influential pro paintball players of today. The captivating imagery takes you deep into the personalities that drive these pro players to excel at the top level.","id":"18052","runtime":0,"version":16,"lastModified":"1301906147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/057\/4bc95171017a3c57fe024057\/cereal-killerz-mid.jpg","title":"Cereal Killerz","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67608"} +{"label":"Heroes For A Day","description":"\u201cHeroes for a Day\u201d is a documentary that follows a group of Professional paintball players, some former champions, who form a team to take down the current world champs. A two-year emotional and physical battle ensues on and off the field, as they travel around the globe juggling real life and the paintball world in the continuing quest to win redefining their emerging sport.","id":"18053","runtime":0,"version":343,"lastModified":"1302236326000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/060\/4bc95172017a3c57fe024060\/heroes-for-a-day-mid.jpg","title":"Heroes For A Day","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67609"} +{"label":"One With The Gun","description":"Splat Magazine Presents \"One With The Gun: Tournament Paintball Techniques\" starring Maximus Lundqvist of Team Joy Division. For the first time ever, world-class paintballer Maximus Lundqvist, star player from the legendary team Joy Division, shares with viewers the tactics and techniques that make him one of the most feared players on the field today.","id":"18054","runtime":0,"version":205,"lastModified":"1302236050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/069\/4bc95172017a3c57fe024069\/one-with-the-gun-mid.jpg","title":"One With The Gun","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67610"} +{"label":"Gallipoli: The Untold Stories","description":"This program provides, through 1st hand accounts & contemporary films & photographs, a rare insight into what really happened. Together with meticulously researched stories, it provides a unique analysis of the Gallipoli campaign, including never-seen before interviews with the last 10 Gallipoli Anzacs, rare film footage showing the beach & trenches at Gallipoli. ","id":"18055","runtime":0,"imdbId":"tt1570356","version":43,"lastModified":"1302235824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06e\/4bc95173017a3c57fe02406e\/gallipoli-the-untold-stories-mid.jpg","genre":"Documentary","title":"Gallipoli: The Untold Stories","releaseDate":1114473600000,"language":"en","type":"Movie","_key":"67611"} +{"label":"Bill Leimbach","version":19,"id":"82654","lastModified":"1301902139000","name":"Bill Leimbach","type":"Person","_key":"67612"} +{"label":"The Take","description":"No overview found.","id":"18056","runtime":96,"imdbId":"tt0828158","version":154,"lastModified":"1301906846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b7\/4c8b4b867b9aa167460000b7\/the-take-mid.jpg","genre":"Action","title":"The Take","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"67613"} +{"label":"The Beast Stalker","description":"Sergeant Tong is wracked with guilt after he unwittingly kills a young girl whilst capuring a criminal named Cheung. When the girl's sister is later kidnapped in a ploy to get Cheung released, Sergeant Tong vows to find and rescue her before she comes to harm.","id":"18060","runtime":109,"imdbId":"tt1330525","version":110,"lastModified":"1302235642000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07c\/4bc95174017a3c57fe02407c\/ching-yan-mid.jpg","genre":"Action","title":"The Beast Stalker","releaseDate":1227744000000,"language":"en","type":"Movie","_key":"67614"} +{"label":"Zulu Dawn","description":"In 1879, the British suffer a great loss at the Battle of Isandlwana due to incompetent leadership. Cy Endfield co-wrote the epic prequel Zulu Dawn 15 years after his enormously popular Zulu. Set in 1879, this film depicts the catastrophic Battle of Isandhlwana, which remains the worst defeat of the British army by natives, with the British contingent outnumbered 16-to-1 by the Zulu tribesmen. The film's opinion of events is made immediately clear in its title sequence: ebullient African village","id":"18061","runtime":113,"imdbId":"tt0080180","version":165,"lastModified":"1301947667000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/085\/4bc95179017a3c57fe024085\/zulu-dawn-mid.jpg","studio":"Lamitas","genre":"Action","title":"Zulu Dawn","releaseDate":295574400000,"language":"en","tagline":"The sun dawned bloodied...two great armies met face to face...and the earth trembled to the sound of the Zulu death chant!","type":"Movie","_key":"67615"} +{"label":"Douglas Hickox","version":19,"id":"100979","lastModified":"1301902697000","name":"Douglas Hickox","type":"Person","_key":"67616"} +{"label":"Gallipoli - The Frontline Experience","description":"The Gallipoli campaign of World War I was so controversial & devastating, it changed the face of battle forever. Using diaries, letters, photographs and memoirs, acclaimed director, Tolga Ornek, traces the personal journeys of Australian, New Zealand, British and Turkish soldiers, from innocence and patriotism to hardship and heartbreak.","id":"18063","runtime":119,"imdbId":"tt0450426","version":33,"lastModified":"1301906599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08e\/4bc9517a017a3c57fe02408e\/gallipoli-the-frontline-experience-mid.jpg","genre":"Documentary","title":"Gallipoli - The Frontline Experience","releaseDate":1111104000000,"language":"en","type":"Movie","_key":"67617"} +{"label":"Tolga \u00d6rnek","version":25,"id":"82655","lastModified":"1301902414000","name":"Tolga \u00d6rnek","type":"Person","_key":"67618"} +{"label":"Japan's War in Colour","description":"It was assumed no color films existed in Japan until the victorious U.S. forces arrived in 1945. This DVD is remarkable proof that those assumptions were verifiably false. Now you can discover the story of a nation at war from its rare color films, plus letters and diaries from those who lived through it.","id":"18064","runtime":94,"imdbId":"tt0939626","version":115,"lastModified":"1302235298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc9517b017a3c57fe024093\/japan-s-war-in-colour-mid.jpg","genre":"Documentary","title":"Japan's War in Colour","releaseDate":1126569600000,"language":"en","type":"Movie","_key":"67619"} +{"label":"Next Day Air","description":"Two inept criminals are mistakenly delivered a package of cocaine and think they've hit the jackpot, triggering a series of events that changes ten people's lives forever.","id":"18065","runtime":84,"imdbId":"tt1097013","trailer":"http:\/\/www.youtube.com\/watch?v=1188","homepage":"http:\/\/nextdayair-movie.com\/","version":176,"lastModified":"1302023026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/013\/4c8ff5a45e73d61ee9000013\/next-day-air-mid.jpg","studio":"Melee Entertainment","genre":"Action","title":"Next Day Air","releaseDate":1241740800000,"language":"en","type":"Movie","_key":"67620"} +{"label":"Benny Boom","version":28,"id":"134129","lastModified":"1301902134000","name":"Benny Boom","type":"Person","_key":"67621"} +{"label":"The Gunpowder Plot: Exploding the Legend","description":"The Gunpowder Plot: Exploding The Legend was a British television show, hosted by Richard Hammond, that tried to recreate the Gunpowder Plot in which Guy Fawkes attempted to blow up the Houses of Parliament.","id":"18066","runtime":95,"imdbId":"tt0492459","version":59,"lastModified":"1301908523000","genre":"Documentary","title":"The Gunpowder Plot: Exploding the Legend","releaseDate":1130803200000,"language":"en","type":"Movie","_key":"67622"} +{"label":"Mike Slee","version":20,"id":"82657","lastModified":"1301902535000","name":"Mike Slee","type":"Person","_key":"67623"} +{"label":"Richard Hammond","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ad\/4c1a26e75e73d6793b0000ad\/richard-hammond-profile.jpg","version":50,"birthday":"-1126800000","id":"82658","birthplace":"Birmingham, England","lastModified":"1301901454000","name":"Richard Hammond","type":"Person","_key":"67624"} +{"label":"Tallulah Boote-Bond","version":20,"id":"82659","lastModified":"1301902522000","name":"Tallulah Boote-Bond","type":"Person","_key":"67625"} +{"label":"Henry Douthwaite","version":20,"id":"82660","lastModified":"1301902522000","name":"Henry Douthwaite","type":"Person","_key":"67626"} +{"label":"Babar King of the Elephants","description":"Babar is a young elephant in the great forest. Whilst out with his mother a hunter kills his mother and he flees to escape the same fate. He eventually finds himself in a human city and experiences the many differences between city and forest life. Treated as an outsider he is taken in by an elderly woman, dressed in fancy suits, taught to write and count and is brought up in human culture.","id":"18068","runtime":80,"imdbId":"tt0166090","version":137,"lastModified":"1302234859000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ad\/4bc9517d017a3c57fe0240ad\/babar-king-of-the-elephants-mid.jpg","genre":"Family","title":"Babar King of the Elephants","releaseDate":973900800000,"language":"en","type":"Movie","_key":"67627"} +{"label":"8 Seconds","description":"This film chronicles the life of Lane Frost, 1987 PRCA Bull Riding World Champion, his marriage and his friendships with Tuff Hedeman (three-time World Champion) and Cody Lambert.","id":"18069","runtime":105,"imdbId":"tt0109021","trailer":"http:\/\/www.youtube.com\/watch?v=CzKFjjeWQI4","version":106,"lastModified":"1302176299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc9517d017a3c57fe0240b2\/8-seconds-mid.jpg","genre":"Drama","title":"8 Seconds","releaseDate":757382400000,"language":"en","type":"Movie","_key":"67628"} +{"label":"Black Dawn","description":"Jonathan Cold returns, this time he goes Undercover to stop a group of Terrorists before they bomb Los Angeles.","id":"18070","runtime":96,"imdbId":"tt0443450","version":161,"lastModified":"1302175882000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4bc9517e017a3c57fe0240c4\/black-dawn-mid.jpg","studio":"Sony Pictures Home Entertainment","genre":"Action","title":"Black Dawn","releaseDate":1104537600000,"language":"en","tagline":"It's always darkest before dawn.","type":"Movie","_key":"67629"} +{"label":"John Pyper-Ferguson","version":35,"id":"95638","lastModified":"1302068189000","name":"John Pyper-Ferguson","type":"Person","_key":"67630"} +{"label":"Julian Stone","version":17,"id":"95639","lastModified":"1301902236000","name":"Julian Stone","type":"Person","_key":"67631"} +{"label":"Nicholas Davidoff","version":18,"id":"95640","lastModified":"1301902677000","name":"Nicholas Davidoff","type":"Person","_key":"67632"} +{"label":"Roman Varshavsky","version":17,"id":"95641","lastModified":"1301902631000","name":"Roman Varshavsky","type":"Person","_key":"67633"} +{"label":"Noa Hegesh","version":19,"id":"95642","lastModified":"1301902631000","name":"Noa Hegesh","type":"Person","_key":"67634"} +{"label":"Warren Derosa","version":22,"id":"93719","lastModified":"1301902320000","name":"Warren Derosa","type":"Person","_key":"67635"} +{"label":"Angela Gots","version":18,"id":"95643","lastModified":"1301902767000","name":"Angela Gots","type":"Person","_key":"67636"} +{"label":"Don Franklin","version":25,"id":"49327","lastModified":"1301901974000","name":"Don Franklin","type":"Person","_key":"67637"} +{"label":"Eddie Velez","version":25,"id":"88031","lastModified":"1301902499000","name":"Eddie Velez","type":"Person","_key":"67638"} +{"label":"Ryan Bollman","version":21,"id":"95645","lastModified":"1301901862000","name":"Ryan Bollman","type":"Person","_key":"67639"} +{"label":"Alexander Gruszynski","version":38,"id":"33651","lastModified":"1301901407000","name":"Alexander Gruszynski","type":"Person","_key":"67640"} +{"label":"Pure","description":"A young boy trying to deal with his mother's heroin addiction befriends a waitress who helps him cope with the tough situation.","id":"18072","runtime":96,"imdbId":"tt0308772","version":265,"lastModified":"1302234246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d9\/4bc95180017a3c57fe0240d9\/pure-mid.jpg","studio":"A Bad Way Ltd","genre":"Drama","title":"Pure","releaseDate":1118361600000,"language":"en","type":"Movie","_key":"67641"} +{"label":"Vinnie Hunter","version":20,"id":"82661","lastModified":"1301902063000","name":"Vinnie Hunter","type":"Person","_key":"67642"} +{"label":"Dave Matthews & Tim Reynolds: Live at Radio City","description":"In April 2007, Dave Matthews and Tim Reynolds embarked on a 3-city theatre tour, culminating with a performance in the intimate confines of Radio City Music Hall in New York City. ","id":"18073","runtime":214,"imdbId":"tt1506439","version":95,"lastModified":"1301945186000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ec\/4bc95185017a3c57fe0240ec\/dave-matthews-and-tim-reynolds-live-at-radio-city-mid.jpg","genre":"Music","title":"Dave Matthews & Tim Reynolds: Live at Radio City","releaseDate":1186963200000,"language":"en","type":"Movie","_key":"67643"} +{"label":"Duets","description":"Duets is a road-trip comedy which revolves around the little known world of karaoke and the whimsical characters who inhabit it. All roads lead to Omaha, site of a national karaoke competition where this motley group of singers and stars come together for a blow-out sing-off.","id":"18074","runtime":112,"imdbId":"tt0134630","version":138,"lastModified":"1301944939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f5\/4bc95186017a3c57fe0240f5\/duets-mid.jpg","genre":"Drama","title":"Duets","releaseDate":981590400000,"language":"en","type":"Movie","_key":"67644"} +{"label":"Huey Lewis","version":13,"id":"168702","lastModified":"1301903581000","name":"Huey Lewis","type":"Person","_key":"67645"} +{"label":"Bruce Paltrow","version":13,"id":"173607","lastModified":"1301903368000","name":"Bruce Paltrow","type":"Person","_key":"67646"} +{"label":"Nine Queens","description":"An Argentinian crime drama revolving around a sheet of rare stamps (the Nine Queens).","id":"18079","runtime":115,"imdbId":"tt0247586","trailer":"http:\/\/www.youtube.com\/watch?v=M9Les56e22c","version":149,"lastModified":"1302173299000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/387\/4d7b81a75e73d6282a001387\/nueve-reinas-mid.jpg","genre":"Drama","title":"Nine Queens","releaseDate":946684800000,"language":"en","type":"Movie","_key":"67647"} +{"label":"Gast\u00f3n Pauls","version":21,"id":"119671","lastModified":"1301901717000","name":"Gast\u00f3n Pauls","type":"Person","_key":"67648"} +{"label":"Out to Sea","description":"Care-free Charlie (Walter Matthau) cons his widower brother-in-law Herb (Jack Lemmon) into an expenses-paid luxury cruise in search of rich, lonely ladies. The catch is that they are required to be dance hosts! With a tyrannical cruise director, and the luscious Liz and lovely Vivian, our heroes have lots of mis-adventures before they finally return to port.","id":"18080","runtime":106,"imdbId":"tt0119848","version":111,"lastModified":"1302172992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10c\/4bc95189017a3c57fe02410c\/out-to-sea-mid.jpg","genre":"Comedy","title":"Out to Sea","releaseDate":872121600000,"language":"en","type":"Movie","_key":"67649"} +{"label":"Tired of Kissing Frogs","description":"Cuenta el retrato de Martha (Ana Serradilla), una joven y atractiva dise\u00f1adora de interiores de 27 a\u00f1os que como cualquier mujer sue\u00f1a con encontrar a su hombre perfecto, a su pr\u00edncipe azul.","id":"18082","runtime":95,"imdbId":"tt0806938","version":89,"lastModified":"1302233492000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/115\/4bc95189017a3c57fe024115\/cansada-de-besar-sapos-mid.jpg","genre":"Comedy","title":"Tired of Kissing Frogs","releaseDate":1166572800000,"language":"en","type":"Movie","_key":"67650"} +{"label":"Ana Serradilla","version":22,"id":"82667","lastModified":"1301902520000","name":"Ana Serradilla","type":"Person","_key":"67651"} +{"label":"Jorge Colon","version":20,"id":"83174","lastModified":"1301902717000","name":"Jorge Colon","type":"Person","_key":"67652"} +{"label":"MythBusters - Mega Movie Myths","description":"Special effects experts Adam Savage and Jamie Hyneman test some of the outrageous stunts seen on the silver screen to determine if they really work in this edition of the Discovery Channel's popular series. Taking exciting moments from movies including Indiana Jones and the Temple of Doom and The Dukes of Hazzard, the duo tries to verify whether an awning can break a fall from a great height, if a","id":"18084","runtime":100,"imdbId":"tt0852842","version":200,"lastModified":"1302172385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/123\/4bc9518b017a3c57fe024123\/mythbusters-mega-movie-myths-mid.jpg","title":"MythBusters - Mega Movie Myths","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"67653"} +{"label":"Adam Savage","version":20,"id":"83097","lastModified":"1301902527000","name":"Adam Savage","type":"Person","_key":"67654"} +{"label":"Jamie Hyneman","version":19,"id":"83098","lastModified":"1301902502000","name":"Jamie Hyneman","type":"Person","_key":"67655"} +{"label":"Roving Mars","description":"A pair of uncrewed vehicles transmit images from Mars.","id":"18085","runtime":40,"imdbId":"tt0436595","version":127,"lastModified":"1302172133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/130\/4bc9518c017a3c57fe024130\/roving-mars-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Roving Mars","releaseDate":1144281600000,"language":"en","type":"Movie","_key":"67656"} +{"label":"Fright Night Part II","description":"Four vampires move into a large house in an American town. Led by the seducive Regina, they seem to be particularly interested in Charlie and his girlfriend Alex, since Charlie killed Regina's brother. Charlie is bitten by her and transformed into a vampire. She kidnaps him and takes him to the house. Is this the end for Charlie?","id":"18086","runtime":104,"imdbId":"tt0097390","trailer":"http:\/\/www.youtube.com\/watch?v=W83ZB-TMm4o","version":127,"lastModified":"1302232710000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13e\/4bc9518c017a3c57fe02413e\/fright-night-part-ii-mid.jpg","studio":"Tri Star","genre":"Comedy","title":"Fright Night Part II","releaseDate":597542400000,"language":"en","type":"Movie","_key":"67657"} +{"label":"Tommy Lee Wallace","version":4,"id":"229335","lastModified":"1301904110000","name":"Tommy Lee Wallace","type":"Person","_key":"67658"} +{"label":"Pride and Prejudice","description":"No overview found.","id":"18087","runtime":0,"imdbId":"tt0366920","version":144,"lastModified":"1302171384000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14c\/4bc9518d017a3c57fe02414c\/pride-and-prejudice-2003-mid.jpg","genre":"Comedy","title":"Pride and Prejudice","releaseDate":1070582400000,"language":"en","type":"Movie","_key":"67659"} +{"label":"Late Night Shopping","description":"Four friends Sean, Vincent, Lenny and Jody find themselves at something of a deadend. Trapped in a twilight world of permanent night shift work, they hang out together in the local cafe, drinking coffee and entertaining themselves by observing Vincent's unwavering success in pulling women. There seems to be little prospect of change...until Vincent accidently sleeps with Sean's girlfriend.\r\n","id":"18088","runtime":91,"imdbId":"tt0250491","trailer":"http:\/\/www.youtube.com\/watch?v=gIPhE6r_SUU","version":168,"lastModified":"1302232435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ae\/4cee818e5e73d653160000ae\/late-night-shopping-mid.jpg","genre":"Comedy","title":"Late Night Shopping","releaseDate":993168000000,"language":"en","type":"Movie","_key":"67660"} +{"label":"Miss Austen Regrets","description":"No overview found.","id":"18089","runtime":90,"imdbId":"tt1076240","trailer":"http:\/\/www.youtube.com\/watch?v=3254","version":127,"lastModified":"1302231760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/155\/4bc9518d017a3c57fe024155\/miss-austen-regrets-mid.jpg","studio":"BBC Films","genre":"Drama","title":"Miss Austen Regrets","releaseDate":1201996800000,"language":"en","type":"Movie","_key":"67661"} +{"label":"Jeremy Lovering","version":19,"id":"113273","lastModified":"1301902914000","name":"Jeremy Lovering","type":"Person","_key":"67662"} +{"label":"Under The Greenwood Tree","description":"Set in a rustic English village in the mid 19th century, Under The Greenwood Tree tells the story of a poor young man who falls for a middle-class schoolteacher and attempts to win her over.","id":"18091","runtime":93,"imdbId":"tt0465653","version":115,"lastModified":"1302231464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15e\/4bc9518e017a3c57fe02415e\/under-the-greenwood-tree-mid.jpg","studio":"BBC","genre":"British","title":"Under The Greenwood Tree","releaseDate":1135555200000,"language":"en","type":"Movie","_key":"67663"} +{"label":"Nicholas Laughland","version":15,"id":"150545","lastModified":"1301903130000","name":"Nicholas Laughland","type":"Person","_key":"67664"} +{"label":"Terry Mortimer","version":15,"id":"150549","lastModified":"1301903131000","name":"Terry Mortimer","type":"Person","_key":"67665"} +{"label":"Northanger Abbey","description":"When Catherine Morland is given the opportunity to stay with the childless Allen family in Bath, she is hoping for an adventure of the type she has been reading in novels. Soon introduced to society, she meets Isabella Thorpe and her brother John, a good friend of her own brother, James. She also meets Henry Tilney, a handsome young man from a good family and his sister, Eleanor. Invited to visit the Tilney estate, Northanger Abbey, she has thoughts of romance but soon learns that status, class ","id":"18093","runtime":93,"imdbId":"tt0844794","version":137,"lastModified":"1302231301000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16b\/4bc9518f017a3c57fe02416b\/northanger-abbey-mid.jpg","studio":"Granada Television","genre":"Drama","title":"Northanger Abbey","releaseDate":1174780800000,"language":"en","type":"Movie","_key":"67666"} +{"label":"Jon Jones","version":27,"id":"120930","lastModified":"1301901250000","name":"Jon Jones","type":"Person","_key":"67667"} +{"label":"Anvil! The Story of Anvil","description":"At 14, best friends Robb Reiner and Lips made a pact to rock together forever. Their band, Anvil, hailed as the \"demi-gods of Canadian metal, \" influenced a musical generation that includes Metallica, Slayer, and Anthrax,. Following a calamitous European tour, Lips and Robb, now in their fifties, set off to record their 13th album in one last attempt to fulfill their boyhood dreams","id":"18094","runtime":90,"imdbId":"tt1157605","version":159,"lastModified":"1301904523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17c\/4bc95194017a3c57fe02417c\/anvil-the-story-of-anvil-mid.jpg","genre":"Documentary","title":"Anvil! The Story of Anvil","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"67668"} +{"label":"Sacha Gervasi","version":26,"id":"8686","lastModified":"1301901389000","name":"Sacha Gervasi","type":"Person","_key":"67669"} +{"label":"Steve 'Lips' Kudlow","version":17,"id":"103207","lastModified":"1301902454000","name":"Steve 'Lips' Kudlow","type":"Person","_key":"67670"} +{"label":"Robb Reiner","version":17,"id":"103209","lastModified":"1301902454000","name":"Robb Reiner","type":"Person","_key":"67671"} +{"label":"Kevin Goocher","version":17,"id":"103210","lastModified":"1301902631000","name":"Kevin Goocher","type":"Person","_key":"67672"} +{"label":"Glenn Gyorffy","version":17,"id":"103214","lastModified":"1301902631000","name":"Glenn Gyorffy","type":"Person","_key":"67673"} +{"label":"William Howell","version":17,"id":"103215","lastModified":"1301902884000","name":"William Howell","type":"Person","_key":"67674"} +{"label":"Tiziana Arrigoni","version":17,"id":"103217","lastModified":"1301902631000","name":"Tiziana Arrigoni","type":"Person","_key":"67675"} +{"label":"Dragon Ball GT - A Hero's Legacy","description":"Son Goku Jr. is the grand-grandson of the legendary warrior Son Goku, unlike his predecessor he's not a brave fighter. He's constantly picked on by school bullies, his grandmother Pan sees this and she's worried, but even tough Goku is not a strong and powerful saiyan, he has a kind heart, and Pan loves him. When Pan gets sick Goku Jr. realizes he must do something if he doesn't want to lose Pan. Then he will remember about the legends of the Dragon Spheres. It was told they granted a wish to th","id":"18095","runtime":46,"imdbId":"tt0142232","version":67,"lastModified":"1302168541000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ed\/4bcc36d2017a3c0f2c0000ed\/dragon-ball-gt-a-hero-s-legacy-mid.jpg","studio":"Toei Animation","genre":"Animation","title":"Dragon Ball GT - A Hero's Legacy","releaseDate":859334400000,"language":"en","type":"Movie","_key":"67676"} +{"label":"The Gray Man","description":"Early 20th century. Albert Fish, a seemingly benevolent father and grandfather who reared his family by himself after his wife deserted them, turns out to be a serial child molester and murderer. Based on a true story.","id":"18096","runtime":97,"imdbId":"tt0478329","version":120,"lastModified":"1302231050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18e\/4bc95195017a3c57fe02418e\/the-gray-man-mid.jpg","genre":"Crime","title":"The Gray Man","releaseDate":1188518400000,"language":"en","type":"Movie","_key":"67677"} +{"label":"Fantasia chez les ploucs","description":"Sagamore Noonan vit reclu dans une ferme de l'Alabama o\u00f9 il distille de la gn\u00f4le au temps de la prohibition. Il re\u00e7oit la visite de son fr\u00e8re Doc Noonan et de son fils Billy. Une jeune strip-teaseuse et son compagnon gangster viennent troubler leur tranquillit\u00e9.","id":"18097","runtime":83,"imdbId":"tt0150505","version":30,"lastModified":"1301907379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4bc95199017a3c57fe024197\/fantasia-chez-les-ploucs-mid.jpg","studio":"Capitole Films","genre":"Comedy","title":"Fantasia chez les ploucs","releaseDate":32745600000,"language":"en","type":"Movie","_key":"67678"} +{"label":"Arabian Nights","description":"Scheherezade puts herself in danger to save Sultan Schariar, her childhood friend, from the madness that has gripped him since the death of his cheating wife at his own hands. ","id":"18098","runtime":175,"imdbId":"tt0181199","trailer":"http:\/\/www.youtube.com\/watch?v=1189","version":151,"lastModified":"1302230865000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4bc9519a017a3c57fe0241a4\/arabian-nights-mid.jpg","genre":"Drama","title":"Arabian Nights","releaseDate":957052800000,"language":"en","type":"Movie","_key":"67679"} +{"label":"Vanessa Mae","version":20,"id":"82668","lastModified":"1301902384000","name":"Vanessa Mae","type":"Person","_key":"67680"} +{"label":"Dr. Renault's Secret","description":"A remake of the 1927 horror film \"The Wizard\". Dr. Larry Forbes(Sheppard Strudwick)arrives in a remote French village to visit his fiancee (Lynne Roberts) who lives with her scientist father Dr. Renault (George Zucco) and his Ape-like manservant Noel. Several Murders coincide with Dr Forbes arrival, with clues pointing in multiple directions.","id":"18100","runtime":58,"imdbId":"tt0034681","version":76,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a9\/4bc9519a017a3c57fe0241a9\/dr-renault-s-secret-mid.jpg","studio":"20th Century Fox","genre":"Horror","title":"Dr. Renault's Secret","releaseDate":-858470400000,"language":"en","type":"Movie","_key":"67681"} +{"label":"Shepperd Strudwick","version":25,"id":"82676","lastModified":"1301901691000","name":"Shepperd Strudwick","type":"Person","_key":"67682"} +{"label":"Lynne Roberts","version":30,"id":"82677","lastModified":"1301901844000","name":"Lynne Roberts","type":"Person","_key":"67683"} +{"label":"Harry Lachman","version":33,"id":"82678","lastModified":"1301901569000","name":"Harry Lachman","type":"Person","_key":"67684"} +{"label":"Bride of Re-Animator","description":"Herbert West once again revives the dead. This time, he brings Dan's ex-girlfriend's heart back inside a 'perfect' body. Dr. Hill returns as the evil nemesis who lost his head.","id":"18111","runtime":96,"imdbId":"tt0099180","trailer":"http:\/\/www.youtube.com\/watch?v=Exlq-vbjxOI","version":142,"lastModified":"1302230685000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/104\/4d9a6c887b9aa164c9000104\/bride-of-re-animator-mid.jpg","genre":"Comedy","title":"Bride of Re-Animator","releaseDate":631152000000,"language":"en","type":"Movie","_key":"67685"} +{"label":"Claude Earl Jones","version":24,"id":"82684","lastModified":"1301958739000","name":"Claude Earl Jones","type":"Person","_key":"67686"} +{"label":"Mel Stewart","version":21,"id":"82685","lastModified":"1301958739000","name":"Mel Stewart","type":"Person","_key":"67687"} +{"label":"Michael Strasser","version":21,"id":"82687","lastModified":"1301958739000","name":"Michael Strasser","type":"Person","_key":"67688"} +{"label":"Mary Sheldon","version":21,"id":"82688","lastModified":"1301958739000","name":"Mary Sheldon","type":"Person","_key":"67689"} +{"label":"Boogie Man: The Lee Atwater Story","description":"Boogie Man is a comprehensive look at Lee Atwater, the blues-playing rogue whose rambunctious rise from the South to Chairman of the GOP made him a household name. He mentored Karl Rove and George W. Bush and played a key role in the elections of Reagan and George H.W. Bush. He wrote the Republican Party\u2019s winning playbook which the McCain campaign is currently using.","id":"18112","runtime":86,"imdbId":"tt1262863","version":191,"lastModified":"1302165454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/144\/4cb0543b7b9aa1263e000144\/boogie-man-the-lee-atwater-story-mid.jpg","studio":"InterPositive Media","genre":"Documentary","title":"Boogie Man: The Lee Atwater Story","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"67690"} +{"label":"Tom DeLay","version":17,"id":"117535","lastModified":"1301901580000","name":"Tom DeLay","type":"Person","_key":"67691"} +{"label":"Michael Dukakis","version":16,"id":"117536","lastModified":"1301902137000","name":"Michael Dukakis","type":"Person","_key":"67692"} +{"label":"Ishmael Reed","version":16,"id":"117537","lastModified":"1301902318000","name":"Ishmael Reed","type":"Person","_key":"67693"} +{"label":"Sam Donaldson","version":16,"id":"117538","lastModified":"1301901775000","name":"Sam Donaldson","type":"Person","_key":"67694"} +{"label":"Dorm Daze","description":"Chaos and misunderstandings ensue in a coed dorm","id":"18113","runtime":96,"imdbId":"tt0362511","version":99,"lastModified":"1302164962000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1db\/4bc951a2017a3c57fe0241db\/dorm-daze-mid.jpg","title":"Dorm Daze","releaseDate":1092960000000,"language":"en","type":"Movie","_key":"67695"} +{"label":"American Zombie","description":"Documents the daily lives of a small community of the living deceased who make their home in Los Angeles.","id":"18116","runtime":90,"imdbId":"tt0765430","version":253,"lastModified":"1302231381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4bc951a3017a3c57fe0241ec\/american-zombie-mid.jpg","studio":"Lee Lee Films","genre":"Comedy","title":"American Zombie","releaseDate":1169078400000,"language":"en","tagline":"We're here. We're dead. Get used to it!","type":"Movie","_key":"67696"} +{"label":"Grace Lee","version":19,"id":"108929","lastModified":"1301902237000","name":"Grace Lee","type":"Person","_key":"67697"} +{"label":"Dean Spanley","description":"Set in Edwardian England where upper lips are always stiff and men from the Colonies are not entirely to be trusted, Fisk Senior has little time or affection for his son, but when the pair visit an eccentric Indian, they start a strange journey that eventually allows the old man to find his heart.","id":"18117","runtime":100,"imdbId":"tt1135968","version":111,"lastModified":"1302229425000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f1\/4bc951a4017a3c57fe0241f1\/dean-spanley-mid.jpg","genre":"Comedy","title":"Dean Spanley","releaseDate":1220659200000,"language":"en","type":"Movie","_key":"67698"} +{"label":"Mackenna's Gold","description":"The gangster Colorado kidnaps Marshal McKenna. He believes that McKenna has seen a map which leads to a rich vein of gold in the mountains and forces him to show him the way. But they're not the only ones who're after the gold; soon they meet a group of \"honorable\" citizens and the cavalry crosses their way too - and that is even before they enter Indian territory.","id":"18118","runtime":128,"imdbId":"tt0064615","version":148,"lastModified":"1301902715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/795\/4c559d2a7b9aa13d4d000795\/mackenna-s-gold-mid.jpg","studio":"Columbia Films Productions","genre":"Western","title":"Mackenna's Gold","releaseDate":-31536000000,"language":"en","tagline":"A GIANT OF A MOVIE","type":"Movie","_key":"67699"} +{"label":"Julie Newmar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11b\/4c24f62d7b9aa1446a00011b\/julie-newmar-profile.jpg","version":24,"id":"15973","lastModified":"1301901325000","name":"Julie Newmar","type":"Person","_key":"67700"} +{"label":"Crusty Demons of Dirt, Vol. 3","description":"Motocross stars Mike Metzger and Seth Enslow are among the many riders featured in this homage to their favorite sport. Background music is provided by such groups as White Zombie, the Offspring, Agent Orange, and Ministry. The stunts, tricks, and skits these riders perform take place in Florida, California, Nevada, and Brazil. Many of the rides include the types of jumps and other maneuvers that.","id":"18119","runtime":0,"imdbId":"tt0444999","homepage":"http:\/\/www.crusty.com","version":39,"lastModified":"1301907318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fe\/4bc951a5017a3c57fe0241fe\/crusty-demons-of-dirt-3-mid.jpg","genre":"Road Movie","title":"Crusty Demons of Dirt, Vol. 3","releaseDate":1002585600000,"language":"en","type":"Movie","_key":"67701"} +{"label":"Carey Hart","version":20,"id":"82697","lastModified":"1301902385000","name":"Carey Hart","type":"Person","_key":"67702"} +{"label":"Fuga de Cerebros","description":"En un humilde Instituto de barrio estudia Emilio, un chico timido y con una media de cinco, que lleva toda su vida enamorado en secreto de Natalia, la chica guapa y lista de la clase. Cuando el ultimo dia de curso, por fin se decide a declararse, a Natalia le conceden una beca para estudiar Medicina en Oxford. Todo parece perdido para no para Emilio y sus colegas marginados.","id":"18120","runtime":105,"imdbId":"tt1272013","trailer":"http:\/\/www.youtube.com\/watch?v=1191","homepage":"http:\/\/www.fugadecerebros.com\/","version":77,"lastModified":"1302229086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/213\/4bc951a6017a3c57fe024213\/fuga-de-cerebros-mid.jpg","studio":"Antena 3 Televisi\u00f3n","genre":"Comedy","title":"Fuga de Cerebros","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"67703"} +{"label":"Gorka Lasaosa","version":20,"id":"82698","lastModified":"1301902631000","name":"Gorka Lasaosa","type":"Person","_key":"67704"} +{"label":"Mario Casas","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b48\/4cfcfd7c7b9aa15149003b48\/mario-casas-profile.jpg","version":22,"id":"82700","lastModified":"1301901529000","name":"Mario Casas","type":"Person","_key":"67705"} +{"label":"Jos\u00e9 Luis Gil","version":20,"id":"82701","lastModified":"1301902631000","name":"Jos\u00e9 Luis Gil","type":"Person","_key":"67706"} +{"label":"Fernando Gonz\u00e1lez Molina","version":23,"id":"82724","lastModified":"1301902046000","name":"Fernando Gonz\u00e1lez Molina","type":"Person","_key":"67707"} +{"label":"The Inhabited Island 2: Rebellion","description":"2157. Humanity creates the space group, called GSP - a group of free search. Now any earthling, getting the spacecraft and to register your route, free to travel to the stars. So come and Maxim Kammerer, not suspecting that he will be wrecked on a distant planet from falling into captivity, and have one on one with a hostile alien world.","id":"18122","runtime":99,"imdbId":"tt1399952","version":228,"lastModified":"1302228933000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/229\/4bc951ab017a3c57fe024229\/18122-mid.jpg","studio":"Art Pictures Studio","genre":"Action","title":"The Inhabited Island 2: Rebellion","releaseDate":1240444800000,"language":"en","type":"Movie","_key":"67708"} +{"label":"Believe in me","description":"In a conservative small town, a young man's wish to coach high school basketball are tweaked by a school board decision that makes him the new coach of the girls' team.","id":"18123","runtime":131,"imdbId":"tt0419491","homepage":"http:\/\/www.believeinmemovie.com\/","version":127,"lastModified":"1302227059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ea\/4d3ddd895e73d622d10002ea\/believe-in-me-mid.jpg","genre":"Drama","title":"Believe in me","releaseDate":1157587200000,"language":"en","type":"Movie","_key":"67709"} +{"label":"Robert Collector","version":21,"id":"26977","lastModified":"1301901910000","name":"Robert Collector","type":"Person","_key":"67710"} +{"label":"Rita, Sue and Bob Too","description":"Realistic story of working class Yorkshire life. Two schoolgirls have a sexual fling with a married man. Serious and light-hearted by turns.","id":"18125","runtime":93,"imdbId":"tt0091859","version":112,"lastModified":"1302100177000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4bc951ad017a3c57fe024240\/rita-sue-and-bob-too-mid.jpg","studio":"Channel Four Films","genre":"Comedy","title":"Rita, Sue and Bob Too","releaseDate":504921600000,"language":"en","type":"Movie","_key":"67711"} +{"label":"Michelle Holmes","version":19,"id":"82710","lastModified":"1301902237000","name":"Michelle Holmes","type":"Person","_key":"67712"} +{"label":"Siobhan Finneran","version":20,"id":"82711","lastModified":"1301902454000","name":"Siobhan Finneran","type":"Person","_key":"67713"} +{"label":"George Costigan","version":23,"id":"82712","lastModified":"1301902495000","name":"George Costigan","type":"Person","_key":"67714"} +{"label":"Hannah Montana: The Movie","description":"As Hannah Montana's popularity begins to take over her life, Miley Stewart, on the urging from her father takes a trip to her hometown of Crowley Corners, Tennessee to get some perspective on what matters in life the most.","id":"18126","runtime":102,"imdbId":"tt1114677","homepage":"http:\/\/disney.go.com\/disneypictures\/hannahmontanamovie\/","version":261,"lastModified":"1302202876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18d\/4d54d8c95e73d617b700618d\/hannah-montana-the-movie-mid.jpg","studio":"It's a Laugh Productions","genre":"Family","title":"Hannah Montana: The Movie","releaseDate":1239321600000,"language":"en","type":"Movie","_key":"67715"} +{"label":"Emily Osment","version":28,"id":"82785","lastModified":"1301901130000","name":"Emily Osment","type":"Person","_key":"67716"} +{"label":"Derelictica","description":"Featuring jaw-dropping freestyles, ridiculous cliff drops and incredible rail and jib tricks, director Sean Johnson's high-octane snowboarding video captures some of the most mind-blowing action ever caught on film","id":"18127","runtime":33,"version":41,"lastModified":"1301906713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25a\/4bc951af017a3c57fe02425a\/derelictica-mid.jpg","studio":"Defective Films","genre":"Sports Film","title":"Derelictica","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"67717"} +{"label":"Eddie Wall","version":16,"id":"82716","lastModified":"1301902523000","name":"Eddie Wall","type":"Person","_key":"67718"} +{"label":"Simon Chamberlain","version":16,"id":"82717","lastModified":"1301902529000","name":"Simon Chamberlain","type":"Person","_key":"67719"} +{"label":"Sean Johnson","version":16,"id":"103506","lastModified":"1301903042000","name":"Sean Johnson","type":"Person","_key":"67720"} +{"label":"Chris Rock: Bring the Pain","description":"A true equal-opportunity offender, Chris Rock's brand of humor will make you think after you're done laughing.","id":"18128","runtime":58,"imdbId":"tt0200529","version":129,"lastModified":"1302228484000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/263\/4bc951b0017a3c57fe024263\/chris-rock-bring-the-pain-mid.jpg","genre":"Comedy","title":"Chris Rock: Bring the Pain","releaseDate":833587200000,"language":"en","type":"Movie","_key":"67721"} +{"label":"The Grifters","description":"Based on the pulp novel by Jim Thompson, this neo-noir film tells the story of Lilly Dillon, a long-time female con artist who begins to rethink her life when her son Roy, also a grifter, suffers an almost-fatal injury when he is beaten after a failed scam.","id":"18129","runtime":110,"imdbId":"tt0099703","trailer":"http:\/\/www.youtube.com\/watch?v=mFFysyqCPhQ","version":179,"lastModified":"1302225649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/270\/4bc951b1017a3c57fe024270\/the-grifters-mid.jpg","studio":"Cineplex-Odeon Films","genre":"Comedy","title":"The Grifters","releaseDate":653270400000,"language":"en","type":"Movie","_key":"67722"} +{"label":"Jan Munroe","version":18,"id":"109762","lastModified":"1302002302000","name":"Jan Munroe","type":"Person","_key":"67723"} +{"label":"Robert Weems","version":18,"id":"109763","lastModified":"1302002302000","name":"Robert Weems","type":"Person","_key":"67724"} +{"label":"Jimmy Noonan","version":18,"id":"109764","lastModified":"1302002302000","name":"Jimmy Noonan","type":"Person","_key":"67725"} +{"label":"Richard Holden","version":18,"id":"109765","lastModified":"1302002302000","name":"Richard Holden","type":"Person","_key":"67726"} +{"label":"Noelle Harling","version":18,"id":"109766","lastModified":"1302002302000","name":"Noelle Harling","type":"Person","_key":"67727"} +{"label":"Ivette Soler","version":18,"id":"109767","lastModified":"1302002302000","name":"Ivette Soler","type":"Person","_key":"67728"} +{"label":"David Sinaiko","version":18,"id":"109768","lastModified":"1302002303000","name":"David Sinaiko","type":"Person","_key":"67729"} +{"label":"Teresa Gilmore","version":18,"id":"109770","lastModified":"1302002303000","name":"Teresa Gilmore","type":"Person","_key":"67730"} +{"label":"Elizabeth Ann Feeley","version":18,"id":"109771","lastModified":"1302002303000","name":"Elizabeth Ann Feeley","type":"Person","_key":"67731"} +{"label":"Billy Ray Sharkey","version":19,"id":"95682","lastModified":"1302002303000","name":"Billy Ray Sharkey","type":"Person","_key":"67732"} +{"label":"Baby on Board","description":"The story of Angela -an ambitious, image-conscious businesswoman working for over-demanding boss Mary. When Angela becomes unexpectedly pregnant at the peak of her career, her life with her divorce attorney husband, Curtis, is turned upside-down.","id":"18131","runtime":95,"imdbId":"tt1186788","version":229,"lastModified":"1302201712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27d\/4bc951b5017a3c57fe02427d\/baby-on-board-mid.jpg","studio":"A Plus Entertainment","genre":"Comedy","title":"Baby on Board","releaseDate":1244505600000,"language":"en","type":"Movie","_key":"67733"} +{"label":"Brian Sills","version":25,"id":"85135","lastModified":"1301902716000","name":"Brian Sills","type":"Person","_key":"67734"} +{"label":"Brian Herzlinger","version":26,"id":"85563","lastModified":"1301901493000","name":"Brian Herzlinger","type":"Person","_key":"67735"} +{"label":"Izzat","description":"The three young immigrant boys Wasim, Riaz and Munawar are growing up in the east end of Oslo, Norway. They find school extremely boring and become attracted to the hard boiled gang East Side Crew, which is run by the brothers Sadiq and Khalid. Petty theft soon develops in to drug dealing, violence and murder.","id":"18132","runtime":107,"imdbId":"tt0469443","version":51,"lastModified":"1302140749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/286\/4bc951b6017a3c57fe024286\/izzat-mid.jpg","title":"Izzat","releaseDate":1128643200000,"language":"en","type":"Movie","_key":"67736"} +{"label":"Leon Bashir","version":22,"birthday":"287708400000","id":"114728","lastModified":"1301901561000","name":"Leon Bashir","type":"Person","_key":"67737"} +{"label":"Yngvild St\u00f8en Grotmol","version":16,"id":"116356","lastModified":"1301902675000","name":"Yngvild St\u00f8en Grotmol","type":"Person","_key":"67738"} +{"label":"The Program","description":"Several players from different backgrounds try to cope with the pressures of playing football at a major university. Each deals with the pressure differently, some turn to drinking, others to drugs, and some to studying.","id":"18133","runtime":112,"imdbId":"tt0107889","version":160,"lastModified":"1302224730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28b\/4bc951b6017a3c57fe02428b\/the-program-mid.jpg","studio":"Touchstone Pictures","genre":"Drama","title":"The Program","releaseDate":748828800000,"language":"en","type":"Movie","_key":"67739"} +{"label":"Jon Pennell","version":19,"id":"82719","lastModified":"1301902631000","name":"Jon Pennell","type":"Person","_key":"67740"} +{"label":"Michael Flippo","version":19,"id":"82720","lastModified":"1301902631000","name":"Michael Flippo","type":"Person","_key":"67741"} +{"label":"Ernest Dixon","version":19,"id":"82721","lastModified":"1301902631000","name":"Ernest Dixon","type":"Person","_key":"67742"} +{"label":"Obecn\u00e1 \u0161kola","description":"Je kr\u00e1tce po v\u00e1lce a do chlapeck\u00e9 t\u0159\u00eddy jedn\u00e9 ze \u0161kol na p\u0159edm\u011bstst\u00ed Prahy chod\u00ed tak\u00e9 desetilet\u00fd Eda Sou\u010dek se sv\u00fdm kamar\u00e1dem Tondou. Stejn\u011b jako ostatn\u00ed spolu\u017e\u00e1ci, tak\u00e9 Eda s Tondou zcela ignoruj\u00ed pokusy rezignovan\u00e9 u\u010ditelky Maxov\u00e9 o v\u00fduku a sp\u00ed\u0161 ne\u017e o u\u010divo se zaj\u00edmaj\u00ed o barvu jej\u00edch kalhotek. Nen\u00ed divu, \u017ee se u\u010ditelka jednoho dne zbl\u00e1zn\u00ed a na jej\u00ed m\u00edsto nastoup\u00ed nov\u00fd u\u010ditel. Jmenuje se Igor Hn\u00edzdo a vymyk\u00e1 se v\u0161em u\u010ditel\u016fm, kter\u00e9 kluci do t\u00e9 doby poznali.","id":"18141","runtime":100,"imdbId":"tt0102571","version":39,"lastModified":"1301908525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/299\/4bc951b7017a3c57fe024299\/obecna-skola-mid.jpg","title":"Obecn\u00e1 \u0161kola","releaseDate":662688000000,"language":"en","type":"Movie","_key":"67743"} +{"label":"Repm\u00e5nad","description":"Kabelmannen Helge Jonsson blir inkallad till rep\u00f6vning p\u00e5 sitt gamla regemente. D\u00e4r tr\u00e4ffar han sina gamla kompisar i den l\u00e4tta kabelbilgruppen, L\u00f6vgren, Tallrot, Gurkan, \u00d6berg, och gruppchefen Larsson. En kvinnlig journalist, Bea, f\u00f6ljer med \u00f6vningen f\u00f6r att skriva ett reportage under t\u00e4ckmantel som marketenterska och hon blir f\u00f6rtjust i den blyge Jonsson. ","id":"18142","runtime":85,"imdbId":"tt0079794","version":46,"lastModified":"1300980534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a2\/4bc951b7017a3c57fe0242a2\/repmanad-mid.jpg","studio":"Europafilm","genre":"Comedy","title":"Repm\u00e5nad","releaseDate":288576000000,"language":"en","type":"Movie","_key":"67744"} +{"label":"Ted \u00c5str\u00f6m","version":20,"id":"84278","lastModified":"1301902454000","name":"Ted \u00c5str\u00f6m","type":"Person","_key":"67745"} +{"label":"Lasse Haldenberg","version":21,"id":"84279","lastModified":"1301902651000","name":"Lasse Haldenberg","type":"Person","_key":"67746"} +{"label":"Lennart Skoogh","version":19,"id":"84280","lastModified":"1301902631000","name":"Lennart Skoogh","type":"Person","_key":"67747"} +{"label":"Ingvar Andersson","version":19,"id":"84281","lastModified":"1301902631000","name":"Ingvar Andersson","type":"Person","_key":"67748"} +{"label":"Lena-Maria G\u00e5rden\u00e4s-Lawton","version":19,"id":"84282","lastModified":"1301902631000","name":"Lena-Maria G\u00e5rden\u00e4s-Lawton","type":"Person","_key":"67749"} +{"label":"She and Her Cat","description":"No overview found.","id":"18143","runtime":5,"imdbId":"tt0373960","version":106,"lastModified":"1302227523000","title":"She and Her Cat","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67750"} +{"label":"Handy Manny: Manny's Green Team","description":"Manny and his boisterous tools are not only dedicated to fixing things right, but also to conserving and preserving the Earth's valuable resources. In Manny and his boisterous tools are not only dedicated to fixing things right, but also to conserving and preserving the Earth's valuable resources. ","id":"18145","runtime":58,"version":46,"lastModified":"1302227205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a7\/4bc951b7017a3c57fe0242a7\/handy-manny-manny-s-green-team-mid.jpg","genre":"Animation","title":"Handy Manny: Manny's Green Team","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67751"} +{"label":"Up Periscope","description":"Lieutenant Braden discovers that Sally, the woman he's been falling in love with, has actually been checking out his qualifications to be a U.S. Navy frogman. He must put his personal life behind him after being assigned to be smuggled into a Japanese-held island via submarine to photograph radio codes.","id":"18146","runtime":112,"imdbId":"tt0053399","version":102,"lastModified":"1302226998000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ac\/4bc951b8017a3c57fe0242ac\/up-periscope-mid.jpg","genre":"Action","title":"Up Periscope","releaseDate":-341798400000,"language":"en","type":"Movie","_key":"67752"} +{"label":"Unaccompanied Minors","description":"Five disparate kids snowed in at the airport on Christmas Eve learn some lessons about friendship when they launch a bid to get back to their families and outsmart a disgruntled airport official who wants to keep them grounded.","id":"18147","runtime":90,"imdbId":"tt0488658","version":180,"lastModified":"1301903640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/009\/4d5090fc7b9aa13aba00e009\/unaccompanied-minors-mid.jpg","genre":"Comedy","title":"Unaccompanied Minors","releaseDate":1165536000000,"language":"en","tagline":"No plane, no parents, no problem!","type":"Movie","_key":"67753"} +{"label":"Paul Feig","version":20,"id":"116805","lastModified":"1301902985000","name":"Paul Feig","type":"Person","_key":"67754"} +{"label":"Tokyo Story","description":"An old couple visit their children and grandchildren in the city; but the children have little time for them.","id":"18148","runtime":136,"imdbId":"tt0046438","trailer":"http:\/\/www.youtube.com\/watch?v=iNUzimUStwg","version":137,"lastModified":"1302174236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c6\/4bc951bb017a3c57fe0242c6\/18148-mid.jpg","genre":"Drama","title":"Tokyo Story","releaseDate":-510019200000,"language":"en","type":"Movie","_key":"67755"} +{"label":"Chieko Higashiyama","version":19,"id":"134307","lastModified":"1302174234000","name":"Chieko Higashiyama","type":"Person","_key":"67756"} +{"label":"Setsuko Hara","version":33,"id":"95504","lastModified":"1302174395000","name":"Setsuko Hara","type":"Person","_key":"67757"} +{"label":"Haruko Sugimura","version":27,"id":"131013","lastModified":"1302174234000","name":"Haruko Sugimura","type":"Person","_key":"67758"} +{"label":"Kuniko Miyake","version":26,"id":"131016","lastModified":"1302174234000","name":"Kuniko Miyake","type":"Person","_key":"67759"} +{"label":"Shir\u00f4 Osaka","version":20,"id":"142469","lastModified":"1302174234000","name":"Shir\u00f4 Osaka","type":"Person","_key":"67760"} +{"label":"Hisao Toake","version":22,"id":"134346","lastModified":"1302174234000","name":"Hisao Toake","type":"Person","_key":"67761"} +{"label":"Teruko Nagaoka","version":20,"id":"136381","lastModified":"1302174234000","name":"Teruko Nagaoka","type":"Person","_key":"67762"} +{"label":"Yasujir\u00f4 Ozu","version":102,"id":"95501","lastModified":"1302174396000","name":"Yasujir\u00f4 Ozu","type":"Person","_key":"67763"} +{"label":"Vandanam","description":"Mohanlal plays the role of a police officer, Unnikrishnan, who is sent to track down s dangerous criminal played by Nedumudi Venu. Along with his friend (played by Mukesh), he performs surveillance on Nedumudi Venu's daughter who lives in a flat with her aunt, to gather details on the whereabouts of her criminal father. The rest of the story is about how Unnikrishnan gets to the criminal.","id":"18149","runtime":178,"imdbId":"tt0255668","version":38,"lastModified":"1301907379000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d0\/4bc951bc017a3c57fe0242d0\/vandanam-mid.jpg","title":"Vandanam","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67764"} +{"label":"Mukesh","version":20,"id":"82733","lastModified":"1301902324000","name":"Mukesh","type":"Person","_key":"67765"} +{"label":"Girija","version":19,"id":"82734","lastModified":"1301902675000","name":"Girija","type":"Person","_key":"67766"} +{"label":"Nedumudi Venu","version":19,"id":"82735","lastModified":"1301902675000","name":"Nedumudi Venu","type":"Person","_key":"67767"} +{"label":"Planet B-Boy","description":"Think breakdancing died in the eighties? Think again. PLANET B-BOY is a feature-length, theatrical documentary that re-discovers one of the most incredible dance phenomena the world has ever seen. Originally known as \"B-boying\", breakdancing was an urban dance form that originated from the streets of New York City during the seventies.","id":"18150","runtime":95,"imdbId":"tt0770796","version":121,"lastModified":"1301906462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d9\/4bc951bd017a3c57fe0242d9\/planet-b-boy-mid.jpg","genre":"Documentary","title":"Planet B-Boy","releaseDate":1206057600000,"language":"en","type":"Movie","_key":"67768"} +{"label":"Shadow Company","description":"No overview found.","id":"18151","runtime":0,"imdbId":"tt0762133","version":132,"lastModified":"1302226044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e2\/4bc951be017a3c57fe0242e2\/shadow-company-mid.jpg","genre":"Documentary","title":"Shadow Company","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"67769"} +{"label":"Occupation 101","description":"A thought-provoking documentary on the current and historical causes of the Israeli-Palestinian conflict and U.S. political involvement.","id":"18152","runtime":0,"imdbId":"tt0807956","version":40,"lastModified":"1302225786000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2eb\/4bc951be017a3c57fe0242eb\/occupation-101-mid.jpg","genre":"Documentary","title":"Occupation 101","releaseDate":1143244800000,"language":"en","type":"Movie","_key":"67770"} +{"label":"Abdallah Omeish","version":20,"id":"86496","lastModified":"1301902523000","name":"Abdallah Omeish","type":"Person","_key":"67771"} +{"label":"Sufyan Omeish","version":19,"id":"86497","lastModified":"1301902501000","name":"Sufyan Omeish","type":"Person","_key":"67772"} +{"label":"Steal This Movie","description":"Five years after Yippie founder Abbie Hoffman goes underground to avoid a drug-related prison sentence, he contacts a reporter to get out the story of the FBI's covert spying, harassment and inciting of violence they then blame on the Left. ","id":"18153","runtime":107,"imdbId":"tt0161216","trailer":"http:\/\/www.youtube.com\/watch?v=IxulvgFgTQo","version":292,"lastModified":"1301927219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f4\/4bc951c2017a3c57fe0242f4\/steal-this-movie-mid.png","studio":"Ardent Films","genre":"Drama","title":"Steal This Movie","releaseDate":966556800000,"language":"en","type":"Movie","_key":"67773"} +{"label":"The Deviants","description":"A comedy about a matchmaker for people with hilarious dating problems.","id":"18154","runtime":80,"imdbId":"tt0322005","version":165,"lastModified":"1302225480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f9\/4bc951c3017a3c57fe0242f9\/the-deviants-mid.jpg","studio":"Green Band Pictures","genre":"Comedy","title":"The Deviants","releaseDate":1085788800000,"language":"en","type":"Movie","_key":"67774"} +{"label":"Reid Waterer","version":19,"id":"82739","lastModified":"1301902236000","name":"Reid Waterer","type":"Person","_key":"67775"} +{"label":"Doug Dezzani","version":19,"id":"82741","lastModified":"1301902631000","name":"Doug Dezzani","type":"Person","_key":"67776"} +{"label":"Angel Boris Reed","version":29,"id":"82745","lastModified":"1301902718000","name":"Angel Boris Reed","type":"Person","_key":"67777"} +{"label":"Tamara 'Gingir' Curry","version":19,"id":"82746","lastModified":"1301902631000","name":"Tamara 'Gingir' Curry","type":"Person","_key":"67778"} +{"label":"Journal of a Contract Killer","description":"No overview found.","id":"18155","runtime":90,"imdbId":"tt1043695","version":83,"lastModified":"1302225386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/302\/4bc951c4017a3c57fe024302\/journal-of-a-contract-killer-mid.jpg","studio":"MJ Films","genre":"Action","title":"Journal of a Contract Killer","releaseDate":1204329600000,"language":"en","type":"Movie","_key":"67779"} +{"label":"Justine Powell","version":21,"id":"82737","lastModified":"1301902707000","name":"Justine Powell","type":"Person","_key":"67780"} +{"label":"Adam Leese","version":23,"id":"82738","lastModified":"1301902675000","name":"Adam Leese","type":"Person","_key":"67781"} +{"label":"Tester","description":"No overview found.","id":"18156","runtime":0,"version":18,"lastModified":"1300980536000","title":"Tester","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67782"} +{"label":"Earth vs. the Flying Saucers","description":"After aliens fail to effectively manage their time-space communications devices and botch an attempt to contact rocket scientist Dr. Russell Marvin and his charming wife Carol, they start to destroy Earth targets, suck the knowledge out of military brains, and issue ultimatums. Fortunately, Dr. Marvin and his fellow scientists have a few tricks of their own.","id":"18158","runtime":83,"imdbId":"tt0049169","trailer":"http:\/\/www.youtube.com\/watch?v=2o4fdX8gUMY","version":168,"lastModified":"1301904874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/313\/4bc951c6017a3c57fe024313\/earth-vs-the-flying-saucers-mid.jpg","studio":"Clover Productions","genre":"Horror","title":"Earth vs. the Flying Saucers","releaseDate":-426124800000,"language":"en","type":"Movie","_key":"67783"} +{"label":"Thomas Browne Henry","version":24,"id":"82748","lastModified":"1301902454000","name":"Thomas Browne Henry","type":"Person","_key":"67784"} +{"label":"Grandon Rhodes","version":28,"id":"82749","lastModified":"1301902671000","name":"Grandon Rhodes","type":"Person","_key":"67785"} +{"label":"Larry J. Blake","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/013\/4c754ba87b9aa16a08000013\/larry-j-blake-profile.jpg","version":33,"id":"82750","lastModified":"1301902223000","name":"Larry J. Blake","type":"Person","_key":"67786"} +{"label":"Fred F. Sears","version":26,"id":"82751","lastModified":"1301902221000","name":"Fred F. Sears","type":"Person","_key":"67787"} +{"label":"U2: Rattle and Hum","description":"A concert movie on an unprecedented scale, Rattle And Hum captures U2 - on and off the stage - during their triumphant Joshua Tree tour. From the giant technicolour stadium celebrations to the black-and-white intensity of the indoor shows, this is U2 at their best. Follow the group across America, exploring new influences, playing with the legandary B.B. King from Dublin to Graceland.","id":"18161","runtime":98,"imdbId":"tt0096328","version":117,"lastModified":"1301416025000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4bc951c7017a3c57fe02431c\/u2-rattle-and-hum-mid.jpg","genre":"Documentary","title":"U2: Rattle and Hum","releaseDate":594604800000,"language":"en","type":"Movie","_key":"67788"} +{"label":"Land of the Lost","description":"On his latest expedition, Dr. Rick Marshall is sucked into a space-time vortex alongside his research assistant and a redneck survivalist. In this alternate universe, the trio make friends with a primate named Chaka, their only ally in a world full of dinosaurs and other fantastic creatures.","id":"18162","runtime":101,"imdbId":"tt0457400","trailer":"http:\/\/www.youtube.com\/watch?v=5yhScgyVEks","version":1000,"lastModified":"1302230393000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0a\/4d4ca6b35e73d617b7001d0a\/land-of-the-lost-mid.jpg","studio":"Mosaic Media Group","genre":"Action","title":"Land of the Lost","releaseDate":1244160000000,"language":"en","tagline":"Right place. Wrong time.","type":"Movie","_key":"67789"} +{"label":"Matt Lauer","version":17,"id":"141525","lastModified":"1301901162000","name":"Matt Lauer","type":"Person","_key":"67790"} +{"label":"Sierra McCormick","version":17,"id":"141526","lastModified":"1301901161000","name":"Sierra McCormick","type":"Person","_key":"67791"} +{"label":"Shannon Lemke","version":17,"id":"141527","lastModified":"1301901144000","name":"Shannon Lemke","type":"Person","_key":"67792"} +{"label":"Stevie Wash Jr.","version":17,"id":"141528","lastModified":"1301901150000","name":"Stevie Wash Jr.","type":"Person","_key":"67793"} +{"label":"Kevin Buitrago","version":17,"id":"141529","lastModified":"1301901150000","name":"Kevin Buitrago","type":"Person","_key":"67794"} +{"label":"Jon Kent Ethridge","version":22,"id":"141531","lastModified":"1301901150000","name":"Jon Kent Ethridge","type":"Person","_key":"67795"} +{"label":"Logan Manus","version":17,"id":"141532","lastModified":"1301901150000","name":"Logan Manus","type":"Person","_key":"67796"} +{"label":"Twelve and Holding","description":"Three pre-adolescents with virginal and eager-of-signals naivety, hit headlong against monstrous and inhospitable loneliness, in the incandescent fire among the ashes of their own inocence.","id":"18164","runtime":94,"imdbId":"tt0417385","homepage":"http:\/\/www.12andholdingmovie.com\/","version":170,"lastModified":"1301903764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/345\/4bc951cb017a3c57fe024345\/twelve-and-holding-mid.jpg","studio":"Echo Lake Productions","genre":"Drama","title":"Twelve and Holding","releaseDate":1126396800000,"language":"en","type":"Movie","_key":"67797"} +{"label":"Conor Donovan","version":27,"id":"82754","lastModified":"1302068189000","name":"Conor Donovan","type":"Person","_key":"67798"} +{"label":"Jesse Camacho","version":19,"id":"82755","lastModified":"1301902063000","name":"Jesse Camacho","type":"Person","_key":"67799"} +{"label":"The 24th Day","description":"A casual gay pickup turns into a nightmare.","id":"18165","runtime":96,"imdbId":"tt0246404","version":175,"lastModified":"1301904312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34e\/4bc951cc017a3c57fe02434e\/the-24th-day-mid.jpg","genre":"Drama","title":"The 24th Day","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"67800"} +{"label":"Tony Piccirillo","version":20,"id":"85496","lastModified":"1301901675000","name":"Tony Piccirillo","type":"Person","_key":"67801"} +{"label":"3 Needles","description":"A three-paneled look at the worldwide AIDS crisis: in Montreal, a porn actor (Ashmore) schemes to pass his mandatory blood test; a young nun (Sevigny) makes a personal sacrifice for the benefit of a South African village; in rural China, a black market operative (Liu) posing as a goverment-sanctioned blood drawer jeopardizes an entire village's safety","id":"18166","runtime":127,"imdbId":"tt0395424","homepage":"http:\/\/www.3-needles.com\/","version":129,"lastModified":"1301906845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/357\/4bc951d0017a3c57fe024357\/3-needles-mid.jpg","studio":"Bigfoot Entertainment","genre":"Drama","title":"3 Needles","releaseDate":1164931200000,"language":"en","type":"Movie","_key":"67802"} +{"label":"Simone-Elise Girard","version":24,"id":"87460","lastModified":"1301902330000","name":"Simone-Elise Girard","type":"Person","_key":"67803"} +{"label":"Love in Paris","description":"John flies over to Paris to find out his girlfriend Elizabeth. He finds a mysterious fashion designer named Lea and her assistant Claire, and it turns out that Lea was Elizabeth's friend in Paris. Lea says to John that Elizabeth married and moved away. The passion starts to appear between John and Lea, when Lea's business partner Vittorio tells John another version of Elizabeth's fate.","id":"18167","runtime":105,"imdbId":"tt0119576","version":80,"lastModified":"1301905030000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/360\/4bc951d1017a3c57fe024360\/love-in-paris-mid.png","genre":"Romance","title":"Love in Paris","releaseDate":878601600000,"language":"en","type":"Movie","_key":"67804"} +{"label":"About Adam","description":"No overview found.","id":"18168","runtime":105,"imdbId":"tt0199314","version":110,"lastModified":"1302193324000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36e\/4bc951d2017a3c57fe02436e\/about-adam-mid.jpg","genre":"Comedy","title":"About Adam","releaseDate":949017600000,"language":"en","type":"Movie","_key":"67805"} +{"label":"Tommy Tiernan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/049\/4c4b3c815e73d62a3f000049\/tommy-tiernan-profile.jpg","biography":"<b>Tommy Tiernan<\/b> (born 16 June 1969) is an Irish comedian, actor and writer.","version":35,"id":"107682","lastModified":"1302192198000","name":"Tommy Tiernan","type":"Person","_key":"67806"} +{"label":"About Last Night...","description":"Rob Lowe doesn't want to get serious. Demi Moore doesn't want to get used. Together they are an unforgettable couple in the sexy, contemporary comedy ABOUT LAST NIGHT. After drinks at a favourite Chicago hang out, Danny(LOWE) and Debbie (MOORE) head to Danny's place to indulge in the predictable singles quest - the one night stand. ","id":"18169","runtime":113,"imdbId":"tt0090583","version":162,"lastModified":"1301905183000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc951d2017a3c57fe024377\/about-last-night-mid.jpg","genre":"Comedy","title":"About Last Night...","releaseDate":520646400000,"language":"en","type":"Movie","_key":"67807"} +{"label":"All God's Children Can Dance","description":"In Korea Town Los Angeles, a young man, Kengo, believes he's the son of God - that's what his mother told him since he was a young boy. He spends his days working his dead-end job and figuring out his complex feelings for his girlfriend until, one day, he sees a one-eared man who could be his father and decides to follow him around Los Angeles.","id":"18171","runtime":85,"imdbId":"tt0847214","homepage":"http:\/\/www.myspace.com\/allgodschildrencandance","version":87,"lastModified":"1301908278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c6\/4bd8b786017a3c1bfc0001c6\/all-god-s-children-can-dance-mid.jpg","title":"All God's Children Can Dance","releaseDate":1225929600000,"language":"en","type":"Movie","_key":"67808"} +{"label":"All the Right Moves","description":"Sensitive study of a headstrong high school football star who dreams of getting out of his small Western Pennsylvania steel town with a football scholarship. His equally ambitious coach aims at a college position, resulting in a clash which could crush the player's dreams","id":"18172","runtime":91,"imdbId":"tt0085154","trailer":"http:\/\/www.youtube.com\/watch?v=JPhbQLhy4fQ","version":135,"lastModified":"1301904774000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/414\/4cb655df7b9aa138d8000414\/all-the-right-moves-mid.jpg","genre":"Drama","title":"All the Right Moves","releaseDate":435542400000,"language":"en","type":"Movie","_key":"67809"} +{"label":"The Connecticut Poop Movie","description":"After graduating college, things didn't quite work out the way Russ planned. Now he's back home, with miserable jobs, no girl, and little chance of the future he always dreamed of.","id":"18173","runtime":95,"imdbId":"tt0829421","version":371,"lastModified":"1302155483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/556\/4c5a9e875e73d63a6d000556\/the-connecticut-poop-movie-mid.jpg","genre":"Comedy","title":"The Connecticut Poop Movie","releaseDate":1141430400000,"language":"en","type":"Movie","_key":"67810"} +{"label":"Joe Kingsley","version":3,"id":"232253","lastModified":"1302132269000","name":"Joe Kingsley","type":"Person","_key":"67811"} +{"label":"Ross Kidder","version":3,"id":"232255","lastModified":"1302132325000","name":"Ross Kidder","type":"Person","_key":"67812"} +{"label":"Amelia Morck","version":3,"id":"232256","lastModified":"1302132347000","name":"Amelia Morck","type":"Person","_key":"67813"} +{"label":"An Inspector Calls","description":"Based on a famous stage play and set in the year 1912, an upper crust English family dinner is interrupted by a police inspector who brings news that a girl known to everyone present has died in suspicious circumstances. It seems that any or all of them could have had a hand in her death. But who is the mysterious Inspector and what can he want of them?","id":"18174","runtime":80,"imdbId":"tt0047119","version":75,"lastModified":"1301907166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4d26f56d5e73d626ac001491\/an-inspector-calls-mid.jpg","genre":"Crime","title":"An Inspector Calls","releaseDate":-476582400000,"language":"en","type":"Movie","_key":"67814"} +{"label":"Jane Wenham","version":15,"id":"147751","lastModified":"1301903085000","name":"Jane Wenham","type":"Person","_key":"67815"} +{"label":"Brian Worth","version":17,"id":"101853","lastModified":"1301902846000","name":"Brian Worth","type":"Person","_key":"67816"} +{"label":"Eileen Moore","version":21,"id":"130057","lastModified":"1301902787000","name":"Eileen Moore","type":"Person","_key":"67817"} +{"label":"The Art of Travel","description":"High school grad. Conner Layne is about to marry his first love, but when wedding plans fail, he goes solo on his honeymoon to Central America, finding adventure with a ragtag group of foreigners who attempt to cross the Darien Gap in record time.","id":"18175","runtime":100,"imdbId":"tt0448993","homepage":"http:\/\/www.theartoftravelmovie.com\/","version":222,"lastModified":"1301906463000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ab\/4c410d327b9aa145900000ab\/the-art-of-travel-mid.jpg","genre":"Action","title":"The Art of Travel","releaseDate":1199750400000,"language":"en","tagline":"The art of travel is to deviate from the current plan.","type":"Movie","_key":"67818"} +{"label":"Thomas Whelan","version":22,"id":"124908","lastModified":"1301902367000","name":"Thomas Whelan","type":"Person","_key":"67819"} +{"label":"Assassination of a High School President","description":"High School. Four of the most important years of your life. But it isn't always dances and keg parties and sucking face in your parents' mini-van. Sometimes it's ugly and hard and complicated. As complicated as a conspiracy to overthrow the president\n","id":"18176","runtime":93,"imdbId":"tt1018818","version":206,"lastModified":"1302039231000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b1\/4bc951d7017a3c57fe0243b1\/assassination-of-a-high-school-president-mid.jpg","studio":"Vertigo Entertainment","genre":"Comedy","title":"Assassination of a High School President","releaseDate":1200528000000,"language":"en","type":"Movie","_key":"67820"} +{"label":"Emily Brownell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/93f\/4d6b37825e73d66b2e00293f\/emily-brownell-profile.jpg","version":20,"id":"110346","lastModified":"1301901534000","name":"Emily Brownell","type":"Person","_key":"67821"} +{"label":"Brett Simon","version":19,"id":"110343","lastModified":"1301901862000","name":"Brett Simon","type":"Person","_key":"67822"} +{"label":"Automaton Transfusion","description":"Three teens find themselves in a town over run with zombies. Deciding to fight back, they go on a punch you in the throat, action packed, non stop ride through the city, woods, and schools.","id":"18177","runtime":75,"imdbId":"tt0469683","trailer":"http:\/\/www.youtube.com\/watch?v=sk6N69lXWBs","version":123,"lastModified":"1302018015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ba\/4bc951db017a3c57fe0243ba\/automaton-transfusion-mid.jpg","genre":"Horror","title":"Automaton Transfusion","releaseDate":1211155200000,"language":"en","tagline":"Blood...Will...Run","type":"Movie","_key":"67823"} +{"label":"Anna Mae Routledge","version":38,"id":"143329","lastModified":"1302018015000","name":"Anna Mae Routledge","type":"Person","_key":"67824"} +{"label":"Juliet Reeves","version":19,"id":"103290","lastModified":"1302018015000","name":"Juliet Reeves","type":"Person","_key":"67825"} +{"label":"Senki","description":"A successful young doctor with a beautiful wife, a happy child, and a comfortable house finds his life suddenly changed in ways he never thought possible after being injured in a serious car accident. To the outside eye Lazar Perkov has everything -- indeed his friends and colleagues have even gone so far as to christen him with the nickname \"Lucky.\" But appearances can sometimes be... ","id":"18178","runtime":120,"imdbId":"tt0834102","trailer":"http:\/\/www.youtube.com\/watch?v=1192","version":45,"lastModified":"1300980538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3bf\/4bc951db017a3c57fe0243bf\/senki-mid.jpg","studio":"Tornasol Films S.A.","title":"Senki","releaseDate":1189296000000,"language":"en","type":"Movie","_key":"67826"} +{"label":"Borce Nacev","version":20,"id":"82758","lastModified":"1301902387000","name":"Borce Nacev","type":"Person","_key":"67827"} +{"label":"Vesna Stanojevska","version":20,"id":"82759","lastModified":"1301902382000","name":"Vesna Stanojevska","type":"Person","_key":"67828"} +{"label":"Almost Round Three - The Almost Video","description":"No overview found.","id":"18179","runtime":0,"imdbId":"tt0447404","version":142,"lastModified":"1301770070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c76\/4d80c2577b9aa12dac000c76\/almost-round-three-the-almost-video-mid.jpg","title":"Almost Round Three - The Almost Video","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67829"} +{"label":"Chris Haslam","version":3,"id":"229074","lastModified":"1300280404000","name":"Chris Haslam","type":"Person","_key":"67830"} +{"label":"Cooper Wilt","version":3,"id":"229075","lastModified":"1300280412000","name":"Cooper Wilt","type":"Person","_key":"67831"} +{"label":"Daewon Song","version":17,"id":"96822","lastModified":"1301902379000","name":"Daewon Song","type":"Person","_key":"67832"} +{"label":"Greg Lutzka","version":3,"id":"229076","lastModified":"1300280445000","name":"Greg Lutzka","type":"Person","_key":"67833"} +{"label":"Ryan Sheckler","version":28,"id":"116131","lastModified":"1301902375000","name":"Ryan Sheckler","type":"Person","_key":"67834"} +{"label":"Wee Sing in Sillyville","description":"No overview found.","id":"18180","runtime":59,"imdbId":"tt0383050","version":89,"lastModified":"1301905262000","genre":"Family","title":"Wee Sing in Sillyville","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"67835"} +{"label":"Manda Bala (Send a Bullet)","description":"Manda Bala (Send a Bullet) is a cinematic bullet into the cerebral cortex, a documentary that unflinchingly exploring the cycles of violence that plague Brazil's upper and lower economic classes in fits of rampant corruption and violent kidnappings. The film chronicles these cycles by utilizing highly personalized stories that reflect the growing truth about Brazil's huge economic disparities.","id":"18181","runtime":85,"imdbId":"tt0912590","trailer":"http:\/\/www.youtube.com\/watch?v=QF6eKo41X9s","homepage":"http:\/\/www.mandabala.com\/","version":132,"lastModified":"1301907575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3b\/4d1fdb587b9aa17373001a3b\/manda-bala-send-a-bullet-mid.jpg","genre":"Documentary","title":"Manda Bala (Send a Bullet)","releaseDate":1169251200000,"language":"en","type":"Movie","_key":"67836"} +{"label":"An American Girl: Chrissa Stands Strong","description":"A fourth grader and her friends deal with bullying from a more popular girl in their class.","id":"18182","runtime":91,"imdbId":"tt1340418","version":104,"lastModified":"1301904153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3cd\/4bc951dc017a3c57fe0243cd\/an-american-girl-chrissa-stands-strong-mid.jpg","title":"An American Girl: Chrissa Stands Strong","releaseDate":1231113600000,"language":"en","type":"Movie","_key":"67837"} +{"label":"Austin Thomas","version":20,"id":"82762","lastModified":"1301902709000","name":"Austin Thomas","type":"Person","_key":"67838"} +{"label":"Adair Tishler","version":21,"id":"82763","lastModified":"1301901493000","name":"Adair Tishler","type":"Person","_key":"67839"} +{"label":"Ariela Barer","version":19,"id":"82764","lastModified":"1301902501000","name":"Ariela Barer","type":"Person","_key":"67840"} +{"label":"Kaitlyn Dever","version":19,"id":"82765","lastModified":"1301902501000","name":"Kaitlyn Dever","type":"Person","_key":"67841"} +{"label":"Kaylin Stewart","version":20,"id":"82766","lastModified":"1301902709000","name":"Kaylin Stewart","type":"Person","_key":"67842"} +{"label":"Como agua para chocolate","description":"Tita and Pedro are passionately in love. But their love is forbidden by an ancient family tradition. To be near Tita, Pedro marries her sister. And Tita, as the family cook, expresses her passion for Pedro through preparing delectable dishes. Now, in Tita's kitchen, ordinary spices become a recipe for passion. Her creations bring on tears of longing, heated desire, or chronic pain.","id":"18183","runtime":123,"imdbId":"tt0103994","version":56,"lastModified":"1301903724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ade\/4d1cfba25e73d6082e00cade\/como-agua-para-chocolate-mid.jpg","genre":"Drama","title":"Como agua para chocolate","releaseDate":703382400000,"language":"en","type":"Movie","_key":"67843"} +{"label":"The Beyonc\u00e9 Experience: Live","description":"Beyonc\u00e9's sophomore release B'Day is a celebration and a milestone released worldwide on her 25th birthday. To highlight this release, The Beyonc\u00e9 Experience Live DVD is the full concert performance shot in Los Angleles during her international tour, as one og the world's biggest female entertainers...Beyonc\u00e9 mesmerizes the audience with hits from her number 1 records.","id":"18185","runtime":130,"imdbId":"tt1176411","trailer":"http:\/\/www.youtube.com\/watch?v=1193","version":54,"lastModified":"1301907203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e3\/4bc951de017a3c57fe0243e3\/the-beyonce-experience-live-mid.jpg","title":"The Beyonc\u00e9 Experience: Live","releaseDate":1195516800000,"language":"en","type":"Movie","_key":"67844"} +{"label":"Flow: For Love of Water","description":"From both local and global perspectives, this documentary examines the harsh realities behind the mounting water crisis. Learn how politics, pollution and human rights are intertwined in this important issue that affects every being on Earth. With water drying up around the world and the future of human lives at stake, the film urges a call to arms before more of our most precious natural resource evaporates.","id":"18187","runtime":84,"imdbId":"tt1149583","trailer":"http:\/\/www.youtube.com\/watch?v=1194","homepage":"http:\/\/www.flowthefilm.com\/","version":106,"lastModified":"1301906641000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3ec\/4bc951de017a3c57fe0243ec\/flow-for-love-of-water-mid.jpg","genre":"Documentary","title":"Flow: For Love of Water","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"67845"} +{"label":"Irena Salina","version":19,"id":"82767","lastModified":"1301902141000","name":"Irena Salina","type":"Person","_key":"67846"} +{"label":"Digby, the Biggest Dog in the World","description":"Digby consumes a bowl of Project X, a liquid growth formula. Soon, he becomes a sheepdog of gigantic size!","id":"18188","runtime":88,"imdbId":"tt0069974","version":41,"lastModified":"1301905318000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f5\/4bc951df017a3c57fe0243f5\/digby-the-biggest-dog-in-the-world-mid.jpg","studio":"Walter Shenson Films","title":"Digby, the Biggest Dog in the World","releaseDate":123552000000,"language":"en","type":"Movie","_key":"67847"} +{"label":"Dirty Love","description":"A modern day Cinderella story which sees disaster prone Rebecca embark on a journey in search of true love. Betrayed by her boyfriend, Richard and following a palm reader's psychic prophecy, Rebecca goes in search of her one true soul mate.","id":"18189","runtime":91,"imdbId":"tt0327643","homepage":"http:\/\/www.wildsideproject.com\/site\/dirtylove\/","version":132,"lastModified":"1301005597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42e\/4bc951e5017a3c57fe02442e\/dirty-love-mid.jpg","genre":"Comedy","title":"Dirty Love","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"67848"} +{"label":"Dream Lover","description":"Ray is young, charming, successful and the owner of a prosperous architect company. However, he has recently gone trough a very painful divorce. His friends try to cheer him up by showing him the positive sides of being single but for Ray marriage and stability is just too important. But when he meets Lena his gloom is quickly forgotten.","id":"18190","runtime":103,"imdbId":"tt0109665","version":76,"lastModified":"1301414653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/437\/4bc951e6017a3c57fe024437\/dream-lover-mid.jpg","genre":"Drama","title":"Dream Lover","releaseDate":784512000000,"language":"en","type":"Movie","_key":"67849"} +{"label":"Nicholas Kazan","version":38,"id":"20213","lastModified":"1301901399000","name":"Nicholas Kazan","type":"Person","_key":"67850"} +{"label":"Edmond","description":"A man in a suit at a Manhattan firm leaves work on Friday; he looks unhappy. He stops at a fortune teller's for a Tarot reading: \"You are not where you belong,\" she tells him. That evening he quits his marriage and walks the streets of New York, passing from a classy bar to a gentleman's club, then to a high-class bordello, a mugging, a pawnshop, and a diner where someone does listen.","id":"18191","runtime":82,"imdbId":"tt0443496","trailer":"http:\/\/www.youtube.com\/watch?v=JZVkLqcqmGk","homepage":"http:\/\/www.edmondthefilm.com\/","version":152,"lastModified":"1301905400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/440\/4bc951e7017a3c57fe024440\/edmond-mid.jpg","studio":"First Independent Pictures","genre":"Drama","title":"Edmond","releaseDate":1152835200000,"language":"en","type":"Movie","_key":"67851"} +{"label":"Focus","description":"In the waning months of World War II, a man and his wife are mistakenly identified as Jews by their anti-Semitic Brooklyn neighbors. Suddenly the victims of religious and racial persecution, they find themselves aligned with a local Jewish immigrant in a struggle for dignity and survival.","id":"18192","runtime":106,"imdbId":"tt0246628","homepage":"http:\/\/www.paramountclassics.com\/focus\/","version":138,"lastModified":"1301735120000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82f\/4ccc96785e73d6502500082f\/focus-mid.jpg","title":"Focus","releaseDate":1020297600000,"language":"en","type":"Movie","_key":"67852"} +{"label":"Head","description":"The Monkees are tossed about in a psychedelic, surrealist, plotless, circular bit of fun fluff.","id":"18193","runtime":86,"imdbId":"tt0063049","trailer":"http:\/\/www.youtube.com\/watch?v=0x0SPL4jbe8","version":121,"lastModified":"1301904611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/498\/4d2988497b9aa10529000498\/head-mid.jpg","genre":"Musical","title":"Head","releaseDate":-36374400000,"language":"en","type":"Movie","_key":"67853"} +{"label":"Peter Tork","version":21,"id":"82772","lastModified":"1301902508000","name":"Peter Tork","type":"Person","_key":"67854"} +{"label":"Davy Jones","version":21,"id":"82773","lastModified":"1301902154000","name":"Davy Jones","type":"Person","_key":"67855"} +{"label":"Michael Nesmith","version":23,"id":"82776","lastModified":"1301902154000","name":"Michael Nesmith","type":"Person","_key":"67856"} +{"label":"Annette Funicello","version":31,"id":"82777","lastModified":"1301902394000","name":"Annette Funicello","type":"Person","_key":"67857"} +{"label":"Logan Ramsey","version":18,"id":"16031","lastModified":"1301901652000","name":"Logan Ramsey","type":"Person","_key":"67858"} +{"label":"Vito Scotti","version":26,"id":"82779","lastModified":"1301902508000","name":"Vito Scotti","type":"Person","_key":"67859"} +{"label":"Charles Macaulay","version":18,"id":"15719","lastModified":"1301901959000","name":"Charles Macaulay","type":"Person","_key":"67860"} +{"label":"T.C. Jones","version":21,"id":"82781","lastModified":"1301902681000","name":"T.C. Jones","type":"Person","_key":"67861"} +{"label":"Charles Irving","version":21,"id":"82782","lastModified":"1301902681000","name":"Charles Irving","type":"Person","_key":"67862"} +{"label":"William Bagdad","version":22,"id":"82783","lastModified":"1301902681000","name":"William Bagdad","type":"Person","_key":"67863"} +{"label":"Sonny Liston","version":21,"id":"123526","lastModified":"1301903033000","name":"Sonny Liston","type":"Person","_key":"67864"} +{"label":"Ray Nitschke","version":21,"id":"123527","lastModified":"1301903055000","name":"Ray Nitschke","type":"Person","_key":"67865"} +{"label":"Carol Doda","version":21,"id":"123528","lastModified":"1301903028000","name":"Carol Doda","type":"Person","_key":"67866"} +{"label":"Frank Zappa","version":21,"id":"98539","lastModified":"1301901810000","name":"Frank Zappa","type":"Person","_key":"67867"} +{"label":"June Fairchild","version":22,"id":"123529","lastModified":"1301903055000","name":"June Fairchild","type":"Person","_key":"67868"} +{"label":"I.J. Jefferson","version":21,"id":"123530","lastModified":"1301903040000","name":"I.J. Jefferson","type":"Person","_key":"67869"} +{"label":"The Sentinel","description":"Alison Parker is a successful top model, living with the lawyer Michael Lerman in his apartment. She tried to commit suicide twice in the past: the first time, when she was a teenager and saw her father cheating her mother with two women in her home, and then when Michael's wife died. Since then, she left Christ and the Catholic Church behind. Alison wants to live alone in her own apartment and wi","id":"18196","runtime":92,"imdbId":"tt0076683","trailer":"http:\/\/www.youtube.com\/watch?v=ZTPkDC11sEw","version":138,"lastModified":"1301905019000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/452\/4bc951eb017a3c57fe024452\/the-sentinel-mid.jpg","genre":"Action","title":"The Sentinel","releaseDate":221443200000,"language":"en","type":"Movie","_key":"67870"} +{"label":"Deborah Raffin","version":26,"id":"87120","lastModified":"1301902506000","name":"Deborah Raffin","type":"Person","_key":"67871"} +{"label":"Hank Garrett","version":22,"id":"129663","lastModified":"1301902364000","name":"Hank Garrett","type":"Person","_key":"67872"} +{"label":"Gary Allen","version":22,"id":"129665","lastModified":"1301902422000","name":"Gary Allen","type":"Person","_key":"67873"} +{"label":"Running On Empty","description":"The Popes are a family who haven't been able to use their real identity for years. In the late sixties, the parents set a weapons lab afire in an effort to hinder the government's Vietnam war campaign. Ever since then, the Popes have been on the run with the authorities never far behind. ","id":"18197","runtime":116,"imdbId":"tt0096018","version":94,"lastModified":"1301906462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/457\/4bc951eb017a3c57fe024457\/running-on-empty-mid.jpg","studio":"Lorimar Film Entertainment","genre":"Drama","title":"Running On Empty","releaseDate":589593600000,"language":"en","type":"Movie","_key":"67874"} +{"label":"Jonas Abry","version":21,"id":"82787","lastModified":"1301902701000","name":"Jonas Abry","type":"Person","_key":"67875"} +{"label":"Barbie Mariposa and Her Butterfly Fairy Friends","description":"Elina, heroine of the Fairytopia films tells her friend Bibble the story of Flutterfield, a faraway kingdom populated by fairies with butterfly wings. Henna, the evil butterfly fairy has poisoned the queen of Flutterfield in an attempt to take over the kingdom.","id":"18198","runtime":75,"imdbId":"tt1201561","version":57,"lastModified":"1301902593000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc951ec017a3c57fe024469\/barbie-mariposa-and-her-butterfly-fairy-friends-mid.jpg","genre":"Animation","title":"Barbie Mariposa and Her Butterfly Fairy Friends","releaseDate":1203984000000,"language":"en","type":"Movie","_key":"67876"} +{"label":"Frankie Boyle: Live","description":"Critically acclaimed comedian Frankie Boyle presents his hotly-anticipated first live stand-up DVD. Recorded live during his sell-out shows at London's Hackney Empire, Frankie's unique brand of observational comedy and brutal but perfectly constructed one-liners prove he is one of the best gag writers in the business.","id":"18199","runtime":90,"imdbId":"tt1350491","version":76,"lastModified":"1301904994000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/472\/4bc951ec017a3c57fe024472\/frankie-boyle-live-mid.jpg","studio":"Angst","genre":"Comedy","title":"Frankie Boyle: Live","releaseDate":1226275200000,"language":"en","type":"Movie","_key":"67877"} +{"label":"Frankie Boyle","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fc\/4cee9d9f5e73d653140000fc\/frankie-boyle-profile.jpg","version":35,"id":"82788","lastModified":"1302010533000","name":"Frankie Boyle","type":"Person","_key":"67878"} +{"label":"13 Rue Madeleine","description":"Bob Sharkey, an instructor of would-be spies for the Allied Office of Strategic Services, becomes suspicious of one of the latest batch of students, Bill O'Connell, who is too good at espionage. His boss, Charles Gibson confirms that O'Connell is really a top German agent, but tells Sharkey to pass him, as they intend to feed the mole false information about the impending D-Day invasion.","id":"18200","runtime":95,"imdbId":"tt0038279","version":103,"lastModified":"1301908278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/483\/4bc951ef017a3c57fe024483\/13-rue-madeleine-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Thriller","title":"13 Rue Madeleine","releaseDate":-724636800000,"language":"en","type":"Movie","_key":"67879"} +{"label":"Annabella","version":23,"id":"82789","lastModified":"1301902509000","name":"Annabella","type":"Person","_key":"67880"} +{"label":"Merlin's Apprentice","description":"The great sorcerer Merlin has returned to Camelot, a kingdom now vulnerable to ill fates and war since the theft of the Holy Grail, its greatest gift and protection. With the help of Jack, an irascible young beggar-thief imbued with his own unruly magic, the fight against unknown dangers begins-to find the Grail, restore it to its rightful place, and bring Camelot back to its glory days.","id":"18202","runtime":176,"imdbId":"tt0463826","trailer":"http:\/\/www.youtube.com\/watch?v=iRiw6Mm5acQ","version":107,"lastModified":"1301903151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48c\/4bc951f2017a3c57fe02448c\/merlin-s-apprentice-mid.jpg","genre":"Fantasy","title":"Merlin's Apprentice","releaseDate":1144972800000,"language":"en","tagline":"The search for the Holy Grail.","type":"Movie","_key":"67881"} +{"label":"Tegan Moss","version":34,"id":"52291","lastModified":"1301901948000","name":"Tegan Moss","type":"Person","_key":"67882"} +{"label":"Alexander Kalugin","version":18,"id":"142295","lastModified":"1301902916000","name":"Alexander Kalugin","type":"Person","_key":"67883"} +{"label":"Teach Grant","version":26,"id":"129985","lastModified":"1301902760000","name":"Teach Grant","type":"Person","_key":"67884"} +{"label":"Mark Gibbon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ec\/4d9508e35e73d6225d0024ec\/mark-gibbon-profile.jpg","version":28,"id":"118459","lastModified":"1302011754000","name":"Mark Gibbon","type":"Person","_key":"67885"} +{"label":"David Wu","version":45,"id":"29693","lastModified":"1301901984000","name":"David Wu","type":"Person","_key":"67886"} +{"label":"Big Night","description":"Primo & Secondo, two immigrant brothers, pin their hopes on a banquet honoring Louis Prima to save their struggling restaurant.","id":"18203","runtime":107,"imdbId":"tt0115678","trailer":"http:\/\/www.youtube.com\/watch?v=JtmOTYmVNII","version":136,"lastModified":"1301903735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/495\/4bc951f3017a3c57fe024495\/big-night-mid.jpg","genre":"Drama","title":"Big Night","releaseDate":843177600000,"language":"en","type":"Movie","_key":"67887"} +{"label":"Willi und die Wunder dieser Welt","description":"No overview found.","id":"18204","runtime":78,"imdbId":"tt1316029","version":40,"lastModified":"1300980543000","genre":"Documentary","title":"Willi und die Wunder dieser Welt","releaseDate":1236211200000,"language":"en","type":"Movie","_key":"67888"} +{"label":"Arne Sinnwell","version":20,"id":"57695","lastModified":"1301902324000","name":"Arne Sinnwell","type":"Person","_key":"67889"} +{"label":"Willi Weitzel","version":16,"id":"108345","lastModified":"1301902985000","name":"Willi Weitzel","type":"Person","_key":"67890"} +{"label":"El callej\u00f3n de los milagros","description":"The lives of the inhabitants of El Callejon de los Milagros, in downtown Mexico City, are closely knitted as the threads of a rug. Fifty-something Don Ru (Gomez Cruz) owns a small \"cantina\" where all the men spend afternoons playing domino. He's tired of his longtime marriage with Eusebia (Casanova) and has recently discovered new feelings inside his heart. ","id":"18205","runtime":140,"imdbId":"tt0112619","version":54,"lastModified":"1301415966000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49e\/4bc951f6017a3c57fe02449e\/el-callejon-de-los-milagros-mid.jpg","studio":"Alameda Films","title":"El callej\u00f3n de los milagros","releaseDate":889142400000,"language":"en","type":"Movie","_key":"67891"} +{"label":"Mar\u00eda Rojo","version":21,"id":"112207","lastModified":"1301902582000","name":"Mar\u00eda Rojo","type":"Person","_key":"67892"} +{"label":"Claudio Obreg\u00f3n","version":17,"id":"112208","lastModified":"1301902454000","name":"Claudio Obreg\u00f3n","type":"Person","_key":"67893"} +{"label":"Juan Manuel Bernal","version":17,"id":"112209","lastModified":"1301902454000","name":"Juan Manuel Bernal","type":"Person","_key":"67894"} +{"label":"Abel Woolrich","version":18,"id":"104391","lastModified":"1301902884000","name":"Abel Woolrich","type":"Person","_key":"67895"} +{"label":"Luis Felipe Tovar","version":17,"id":"112210","lastModified":"1301902454000","name":"Luis Felipe Tovar","type":"Person","_key":"67896"} +{"label":"Gina Morett","version":17,"id":"112211","lastModified":"1301902454000","name":"Gina Morett","type":"Person","_key":"67897"} +{"label":"\u00d3scar Yoldi","version":17,"id":"112212","lastModified":"1301902454000","name":"\u00d3scar Yoldi","type":"Person","_key":"67898"} +{"label":"Esteban Soberanes","version":17,"id":"112213","lastModified":"1301902454000","name":"Esteban Soberanes","type":"Person","_key":"67899"} +{"label":"Eugenia Le\u00f1ero","version":17,"id":"112214","lastModified":"1301902454000","name":"Eugenia Le\u00f1ero","type":"Person","_key":"67900"} +{"label":"Alone with Her","description":"In Los Angeles, the psychopath Doug stalks the sexy Latin woman Amy is a park and follows her. Later he breaks in her apartment and bugs it with surveillance cameras, learning her taste in movies, rock bands and books, and uses the collected information to approach to her in a cafeteria.","id":"18206","runtime":78,"imdbId":"tt0472259","trailer":"http:\/\/www.youtube.com\/watch?v=CapONa1mjUM","version":127,"lastModified":"1301905366000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4af\/4bc951f8017a3c57fe0244af\/alone-with-her-mid.jpg","genre":"Crime","title":"Alone with Her","releaseDate":1215129600000,"language":"en","type":"Movie","_key":"67901"} +{"label":"Eric Nicholas","version":17,"id":"103031","lastModified":"1301902766000","name":"Eric Nicholas","type":"Person","_key":"67902"} +{"label":"Tony Armatrading","version":16,"id":"103033","lastModified":"1301902454000","name":"Tony Armatrading","type":"Person","_key":"67903"} +{"label":"Beautiful Ohio","description":"No overview found.","id":"18208","runtime":91,"imdbId":"tt0479275","version":95,"lastModified":"1301907088000","genre":"Drama","title":"Beautiful Ohio","releaseDate":1163116800000,"language":"en","type":"Movie","_key":"67904"} +{"label":"Brett Davern","version":19,"id":"116295","lastModified":"1302129235000","name":"Brett Davern","type":"Person","_key":"67905"} +{"label":"David Call","version":24,"id":"118076","lastModified":"1301902675000","name":"David Call","type":"Person","_key":"67906"} +{"label":"Bedazzled","description":"Stanley is infatuated with Margaret, the statuesque waitress who works with him. He meets George Spiggott AKA the devil and sells his soul for 7 wishes, which Stanley uses to try and make Margaret his own first as an intellectual, then as a rock star, then as a wealthy industrialist. As each fails, he becomes more aware of how empty his life had been and how much more he has to live for.","id":"18209","runtime":103,"imdbId":"tt0061391","version":100,"lastModified":"1301907088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c4\/4bc951f9017a3c57fe0244c4\/bedazzled-mid.jpg","genre":"Comedy","title":"Bedazzled","releaseDate":-65059200000,"language":"en","type":"Movie","_key":"67907"} +{"label":"Alba","version":17,"id":"107498","lastModified":"1301902237000","name":"Alba","type":"Person","_key":"67908"} +{"label":"Parnell McGarry","version":17,"id":"107499","lastModified":"1301902063000","name":"Parnell McGarry","type":"Person","_key":"67909"} +{"label":"Dani\u00e8le No\u00ebl","version":17,"id":"107500","lastModified":"1301902454000","name":"Dani\u00e8le No\u00ebl","type":"Person","_key":"67910"} +{"label":"Beneath Still Waters","description":"No overview found.","id":"18210","runtime":92,"imdbId":"tt0371572","trailer":"http:\/\/www.youtube.com\/watch?v=cpomTDR1L2Q","version":137,"lastModified":"1301416486000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/078\/4d1793855e73d60842009078\/beneath-still-waters-mid.jpg","genre":"Horror","title":"Beneath Still Waters","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"67911"} +{"label":"Berkeley","description":"Berkeley is the story of Ben Sweet, an eighteen year old boy who comes to UC Berkeley in 1968 to study accounting and avoid the draft. There begins an odyssey through sex, drugs, rock and roll, and political activism which turns his world upside down and leaves him on a path of exploration and self-discovery, far from the life of his father, Sy Sweet.","id":"18211","runtime":88,"imdbId":"tt0430918","homepage":"http:\/\/berkeleythefilm.com\/","version":70,"lastModified":"1301908278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6f\/4d12c0587b9aa11482000d6f\/berkeley-mid.jpg","genre":"Drama","title":"Berkeley","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"67912"} +{"label":"Better Than Chocolate","description":"Two attractive young lesbians, Maggie and Kim, meet in Vancouver, develop a passionate romance, and move in together. Complications ensue as Maggie's well-meaning but naive mother Lila also moves in and learns the truth about Maggie and Kim.","id":"18212","runtime":101,"imdbId":"tt0168987","version":145,"lastModified":"1301903965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4bc951fa017a3c57fe0244d9\/better-than-chocolate-mid.jpg","genre":"Drama","title":"Better Than Chocolate","releaseDate":931392000000,"language":"en","type":"Movie","_key":"67913"} +{"label":"Karyn Dwyer","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0fd\/4c32a8e95e73d649680000fd\/karyn-dwyer-profile.jpg","version":17,"id":"104151","lastModified":"1301902033000","name":"Karyn Dwyer","type":"Person","_key":"67914"} +{"label":"Ann-Marie MacDonald","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ec\/4c32ab165e73d649690000ec\/ann-marie-macdonald-profile.jpg","version":17,"id":"104156","lastModified":"1301902004000","name":"Ann-Marie MacDonald","type":"Person","_key":"67915"} +{"label":"Bikini Bloodbath","description":"No overview found.","id":"18213","runtime":0,"imdbId":"tt0874869","version":93,"lastModified":"1301908278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e2\/4bc951fb017a3c57fe0244e2\/bikini-bloodbath-mid.jpg","genre":"Horror","title":"Bikini Bloodbath","releaseDate":1158364800000,"language":"en","type":"Movie","_key":"67916"} +{"label":"Johnathan Gorman","version":23,"id":"98339","lastModified":"1301902668000","name":"Johnathan Gorman","type":"Person","_key":"67917"} +{"label":"Thomas Edward Seymour","version":24,"id":"98340","lastModified":"1301902971000","name":"Thomas Edward Seymour","type":"Person","_key":"67918"} +{"label":"Russ Russo","version":20,"id":"98351","lastModified":"1301902494000","name":"Russ Russo","type":"Person","_key":"67919"} +{"label":"Leah Ford","version":16,"id":"98352","lastModified":"1301902237000","name":"Leah Ford","type":"Person","_key":"67920"} +{"label":"Margaret Rose Champagne","version":17,"id":"98346","lastModified":"1301902971000","name":"Margaret Rose Champagne","type":"Person","_key":"67921"} +{"label":"Carmine Capobianco","version":17,"id":"98345","lastModified":"1301902494000","name":"Carmine Capobianco","type":"Person","_key":"67922"} +{"label":"Robert Cosgrove Jr.","version":19,"id":"98347","lastModified":"1301902494000","name":"Robert Cosgrove Jr.","type":"Person","_key":"67923"} +{"label":"Dana Fay Ensalata","version":16,"id":"98354","lastModified":"1301902454000","name":"Dana Fay Ensalata","type":"Person","_key":"67924"} +{"label":"Sheri Lynn","version":20,"id":"98341","lastModified":"1301902319000","name":"Sheri Lynn","type":"Person","_key":"67925"} +{"label":"Anna-Karin Eskilsson","version":16,"id":"98355","lastModified":"1301902884000","name":"Anna-Karin Eskilsson","type":"Person","_key":"67926"} +{"label":"Olja Hrustic","version":19,"id":"98356","lastModified":"1301902364000","name":"Olja Hrustic","type":"Person","_key":"67927"} +{"label":"Phil Hall","version":18,"id":"98343","lastModified":"1301902174000","name":"Phil Hall","type":"Person","_key":"67928"} +{"label":"Dick Boland","version":18,"id":"98344","lastModified":"1301902523000","name":"Dick Boland","type":"Person","_key":"67929"} +{"label":"Black Eagle","description":"One of the US Air Force's most modern tactical aircrafts, a F-100 with a new laser guidance system, crashes into the sea near Malta - a region where the Soviet forces are highly present, too. The CIA immediately sends out their best secret agent, Ken Tami, to salvage the system before it falls into enemy hands. To ensure his loyalty, they bring his two young sons to a nearby hotel on the island.","id":"18214","runtime":93,"imdbId":"tt0094750","version":120,"lastModified":"1301904422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4eb\/4bc951ff017a3c57fe0244eb\/black-eagle-mid.jpg","genre":"Action","title":"Black Eagle","releaseDate":578448000000,"language":"en","type":"Movie","_key":"67930"} +{"label":"Eric Karson","version":31,"id":"57665","lastModified":"1301902018000","name":"Eric Karson","type":"Person","_key":"67931"} +{"label":"Boxing Helena","description":"A top surgeon is besotted with a beautiful woman who once ditched him. Unable to come to terms with life without her, he tries to convince her that they need each other. She has other ideas, but an horrific accident leaves her at his mercy. The plot is bizarre and perhaps sick at times, ending abruptly and with a twist. ","id":"18215","runtime":107,"imdbId":"tt0106471","homepage":"http:\/\/www.mgm.com\/title_title.do?title_star=BOXINGHE","version":269,"lastModified":"1301902957000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f4\/4bc951ff017a3c57fe0244f4\/boxing-helena-mid.jpg","genre":"Drama","title":"Boxing Helena","releaseDate":740361600000,"language":"en","tagline":"Beyond love, beyond obsession, there hides something beyond reason.","type":"Movie","_key":"67932"} +{"label":"Brutal Massacre: A Comedy","description":"No overview found.","id":"18216","runtime":94,"imdbId":"tt0995060","version":92,"lastModified":"1301907991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/505\/4bc95201017a3c57fe024505\/brutal-massacre-a-comedy-mid.jpg","genre":"Comedy","title":"Brutal Massacre: A Comedy","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"67933"} +{"label":"Buried Alive","description":"A college prank at an abandoned house accidentally awakens a frightening spirit.","id":"18217","runtime":94,"imdbId":"tt0479199","version":188,"lastModified":"1302215405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4c11f3c35e73d6392a000042\/buried-alive-mid.jpg","studio":"Odd Lot Entertainment","genre":"Horror","title":"Buried Alive","releaseDate":1223424000000,"language":"en","type":"Movie","_key":"67934"} +{"label":"Leah Rachel","version":18,"id":"121821","lastModified":"1301903006000","name":"Leah Rachel","type":"Person","_key":"67935"} +{"label":"Erin Reese","version":18,"id":"121822","lastModified":"1301903006000","name":"Erin Reese","type":"Person","_key":"67936"} +{"label":"Steve Sandvoss","version":19,"id":"121824","lastModified":"1301902696000","name":"Steve Sandvoss","type":"Person","_key":"67937"} +{"label":"Germaine De Leon","version":18,"id":"121825","lastModified":"1301903015000","name":"Germaine De Leon","type":"Person","_key":"67938"} +{"label":"The Business of Being Born","description":"Director Abby Epstein's controversial documentary takes a hard look at America's maternity care system, juxtaposing hospital deliveries against the growing popularity of at-home, natural childbirths that some expectant parents are opting for. Former talk show host Ricki Lake was inspired to produce this compelling expos\u00e9 after a dissatisfying birthing experience with her first child left her with many unanswered questions.","id":"18218","runtime":87,"imdbId":"tt0995061","homepage":"http:\/\/www.thebusinessofbeingborn.com","version":157,"lastModified":"1301906260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51a\/4bc95203017a3c57fe02451a\/the-business-of-being-born-mid.jpg","genre":"Documentary","title":"The Business of Being Born","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"67939"} +{"label":"Abby Epstein","version":19,"id":"150385","lastModified":"1301903126000","name":"Abby Epstein","type":"Person","_key":"67940"} +{"label":"Julia Barnett Tracy","version":16,"id":"150386","lastModified":"1301903125000","name":"Julia Barnett Tracy","type":"Person","_key":"67941"} +{"label":"Ina May Gaskin","version":16,"id":"150387","lastModified":"1301903125000","name":"Ina May Gaskin","type":"Person","_key":"67942"} +{"label":"Don't tell","description":"Sabina has a regular life. She is satisfied with her job and her love for Franco. Lately nightmares start disturbing her, and almost in the same time she discovers to be pregnant. Step by step she remembers her childhood spent within a severe middle-class family. But a big secret is hidden within her heart. Sabina wants to contact again her brother, a University teacher in the US, to try to understand what is happened in their past. What is the secret? She is determined to bring clarity and sere","id":"18219","runtime":116,"imdbId":"tt0443446","version":152,"lastModified":"1301904378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d19\/4cc1ff655e73d63506000d19\/la-bestia-nel-cuore-mid.jpg","studio":"Acquimia Cinema","genre":"Drama","title":"Don't tell","releaseDate":1111017600000,"language":"en","type":"Movie","_key":"67943"} +{"label":"Lucy Akhurst","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d0\/4d13aae05e73d608380018d0\/lucy-akhurst-profile.jpg","version":25,"id":"130391","lastModified":"1301901600000","name":"Lucy Akhurst","type":"Person","_key":"67944"} +{"label":"Francesca Inaudi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/92f\/4d13a67c5e73d6083400192f\/francesca-inaudi-profile.jpg","version":37,"id":"119366","lastModified":"1301901374000","name":"Francesca Inaudi","type":"Person","_key":"67945"} +{"label":"Alessandra Mastronardi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/89a\/4d13a7545e73d6083800189a\/alessandra-mastronardi-profile.jpg","version":16,"id":"145326","lastModified":"1301901468000","name":"Alessandra Mastronardi","type":"Person","_key":"67946"} +{"label":"Poison Ivy II","description":"A young and naive college art student becomes obsessed with assuming the identity and personality of a departed coed who used to live in her room, and in so doing causes complications that result in two men, a student and her art professor, lusting after her. ","id":"18220","runtime":106,"imdbId":"tt0114151","version":108,"lastModified":"1301906067000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc95204017a3c57fe024527\/poison-ivy-ii-mid.jpg","genre":"Drama","title":"Poison Ivy II","releaseDate":820454400000,"language":"en","type":"Movie","_key":"67947"} +{"label":"Space Station 3D","description":"Some 220 miles above Earth lies the International Space Station, a one-of-a-kind outer space laboratory that 16 nations came together to build. Get a behind-the-scenes look at the making of this extraordinary structure in this spectacular IMAX film. Viewers will blast off from Florida's Kennedy Space Center and the Baikonur Cosmodrome in Russia for this incredible journey -- IMAX's first-ever space film. Tom Cruise narrates.","id":"18221","runtime":47,"imdbId":"tt0290296","trailer":"http:\/\/www.youtube.com\/watch?v=XXjuIfIyrp0","version":138,"lastModified":"1301903174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc2\/4d69720e5e73d66b23000fc2\/space-station-3d-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Space Station 3D","releaseDate":1019865600000,"language":"en","tagline":"A Select Few Have Been Aboard... Now It's Your Turn!","type":"Movie","_key":"67948"} +{"label":"Poison Ivy: The New Seduction","description":"Ivy's sister, Violet, comes to visit the Greer residence in this third installment of the franchise. It does not take long for the family to be turned upside down as Violet uses her body and skills of manipulation to throw the household into a state of panic and deceit. ","id":"18222","runtime":93,"imdbId":"tt0119908","version":125,"lastModified":"1301906615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/542\/4bc95205017a3c57fe024542\/poison-ivy-the-new-seduction-mid.jpg","genre":"Thriller","title":"Poison Ivy: The New Seduction","releaseDate":852076800000,"language":"en","type":"Movie","_key":"67949"} +{"label":"Poison Ivy: The Secret Society","description":"After a mysterious death of a young college student occurs late one night at a prestigious New England college...","id":"18223","runtime":95,"imdbId":"tt1131749","version":128,"lastModified":"1301907991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54f\/4bc95206017a3c57fe02454f\/poison-ivy-the-secret-society-mid.jpg","title":"Poison Ivy: The Secret Society","releaseDate":1217116800000,"language":"en","type":"Movie","_key":"67950"} +{"label":"Miriam McDonald","version":21,"id":"82794","lastModified":"1301902675000","name":"Miriam McDonald","type":"Person","_key":"67951"} +{"label":"Bionicle 3: Web of Shadows","description":"The Web of Shadows concerns the return of the heroic Toa to Metru Nui. There, they find an old enemy has overtaken the great city with the help of Visorak--robotic spiders that can quickly encase anything or anybody in near-indestructible webs. The Toa undergo a bizarre metamorphosis while sealed within strange cocoons, and emerge as clunky-looking machines made up of mismatched parts.","id":"18224","runtime":74,"imdbId":"tt0471588","version":99,"lastModified":"1301905182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55d\/4bc95207017a3c57fe02455d\/bionicle-3-web-of-shadows-mid.jpg","genre":"Action","title":"Bionicle 3: Web of Shadows","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"67952"} +{"label":"David Molina","version":22,"id":"82813","lastModified":"1301902063000","name":"David Molina","type":"Person","_key":"67953"} +{"label":"Terry Shakespeare","version":22,"id":"82815","lastModified":"1301901608000","name":"Terry Shakespeare","type":"Person","_key":"67954"} +{"label":"Trevor Devall","version":26,"id":"82816","lastModified":"1301901496000","name":"Trevor Devall","type":"Person","_key":"67955"} +{"label":"French Tickner","version":24,"id":"82818","lastModified":"1301901946000","name":"French Tickner","type":"Person","_key":"67956"} +{"label":"Hundtricket - The movie","description":"No overview found.","id":"18225","runtime":106,"imdbId":"tt0268374","version":61,"lastModified":"1301906766000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d3\/4d1cb3835e73d665a60019d3\/hundtricket-the-movie-mid.jpg","title":"Hundtricket - The movie","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"67957"} +{"label":"Josefine Bornebusch","version":16,"id":"140818","lastModified":"1301902564000","name":"Josefine Bornebusch","type":"Person","_key":"67958"} +{"label":"Linus Wahlgren","version":16,"id":"140819","lastModified":"1301902559000","name":"Linus Wahlgren","type":"Person","_key":"67959"} +{"label":"Ivan Nikcevic","version":16,"id":"140820","lastModified":"1301902564000","name":"Ivan Nikcevic","type":"Person","_key":"67960"} +{"label":"Sibirskiy tsiryulnik","description":"Douglas is a foreign entrepreneur, who ventures to Russia in 1885 with dreams of selling a new, experimental steam-driven timber harvester in the wilds of Siberia. Jane is his assistant, who falls in love with a young Russian officer, Andr\u00e9, and spends the next 10 years perfecting the harvester and pursuing her love, who has been exiled to Siberia.","id":"18226","runtime":179,"imdbId":"tt0120125","version":54,"lastModified":"1301904006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/566\/4bc95208017a3c57fe024566\/sibirskiy-tsiryulnik-mid.jpg","studio":"Three T Productions","genre":"Comedy","title":"Sibirskiy tsiryulnik","releaseDate":909705600000,"language":"en","type":"Movie","_key":"67961"} +{"label":"Oleg Menshikov","version":35,"id":"82795","lastModified":"1301902318000","name":"Oleg Menshikov","type":"Person","_key":"67962"} +{"label":"Nikita Mikhalkov","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/01c\/4c13cc867b9aa1045900001c\/nikita-mikhalkov-profile.jpg","biography":"Nikita Mikhalkov was born Nikita Sergeyevich Mikhalkov-Konchalovsky on the 21st of October 1945 at the close of the \u201cGreat Patriotic War\u201d against Nazi Germany. His father Sergei Vladimirovich is a revered poet and author who wrote the lyrics of the USSR\u2019s national anthem, revised it in 1977, and re-wrote it for the new Russian Federation in 2000. Mikhalkov traces his family lineage back through centuries of Russian intelligentsia including Pushkin, Tolstoy, Dostoyevsky, Gogol , the painter Vasil","version":90,"birthday":"-763610400000","id":"82796","birthplace":"Moscow","lastModified":"1301901338000","name":"Nikita Mikhalkov","type":"Person","_key":"67963"} +{"label":"Blue Hawaii","description":"Chad Gates has just gotten out of the Army, and is happy to be back in Hawaii with his surf-board, his beach buddies, and his girlfriend.","id":"18228","runtime":102,"imdbId":"tt0054692","trailer":"http:\/\/www.youtube.com\/watch?v=HILG-gqiuvY","version":170,"lastModified":"1301903549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/573\/4bc9520d017a3c57fe024573\/blue-hawaii-mid.jpg","studio":"Hal Wallis Productions","genre":"Comedy","title":"Blue Hawaii","releaseDate":-255916800000,"language":"en","type":"Movie","_key":"67964"} +{"label":"Joan Blackman","version":22,"id":"83443","lastModified":"1301902631000","name":"Joan Blackman","type":"Person","_key":"67965"} +{"label":"Nancy Walters","version":20,"id":"83821","lastModified":"1301902631000","name":"Nancy Walters","type":"Person","_key":"67966"} +{"label":"Roland Winters","version":28,"id":"83822","lastModified":"1301902688000","name":"Roland Winters","type":"Person","_key":"67967"} +{"label":"Christian Kay","version":20,"id":"83823","lastModified":"1301902631000","name":"Christian Kay","type":"Person","_key":"67968"} +{"label":"Passage to Marseille","description":"Matrac (Humphrey Bogart) is a freedom-loving French journalist who sacrifices his happiness and security to battle Nazi tyranny. ","id":"18229","runtime":109,"imdbId":"tt0037166","trailer":"http:\/\/www.youtube.com\/watch?v=2_c20fCNMuY","version":99,"lastModified":"1301904005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/585\/4bc9520e017a3c57fe024585\/passage-to-marseille-mid.jpg","studio":"Warner Bros. Pictures","genre":"Adventure","title":"Passage to Marseille","releaseDate":-816566400000,"language":"en","type":"Movie","_key":"67969"} +{"label":"Corinna Mura","version":19,"id":"82803","lastModified":"1301902236000","name":"Corinna Mura","type":"Person","_key":"67970"} +{"label":"Supervolcano","description":"Yellowstone is a park, but it's also the deadliest volcano on Earth. Beneath it, a sleeping 'dragon' is stirring. When an earthquake opens a crack for magma to seep through, other warning signs of an eruption start popping up, but they are ignored or dismissed as 'minor'. But when they learn an eruption will happen, panic breaks out through people of the USA and the world.","id":"18230","runtime":120,"imdbId":"tt0419372","version":61,"lastModified":"1301906692000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/592\/4bc95210017a3c57fe024592\/supervolcano-mid.jpg","studio":"Big Blast Productions","genre":"Action","title":"Supervolcano","releaseDate":1113091200000,"language":"en","type":"Movie","_key":"67971"} +{"label":"Star Trek: Of Gods And Men","description":"[Fan film] The year is 2306\u2026 12 years ago, Captain Kirk was swept away by the Nexus. One year later, Commander Scott was reported missing along with the USS Jenolen. The remaining USS Enterprise crew have split. Captain Spock and Doctor McCoy are on Khitomer, continuing their work towards peace the Klingon Empire. Captain Sulu and the Excelsior are on a mission beyond the Alpha Quadrant. Captain Chekov, feels his career has stalled, leaving him to ponder retirement. Captain Uhura, Director of St","id":"18231","runtime":87,"imdbId":"tt0835378","homepage":"http:\/\/www.startrekofgodsandmen.com\/","version":87,"lastModified":"1301905438000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59b\/4bc95210017a3c57fe02459b\/star-trek-of-gods-and-men-mid.jpg","genre":"Science Fiction","title":"Star Trek: Of Gods And Men","releaseDate":1198281600000,"language":"en","type":"Movie","_key":"67972"} +{"label":"Garrett Wang","version":19,"id":"74064","lastModified":"1301901862000","name":"Garrett Wang","type":"Person","_key":"67973"} +{"label":"William Wellman Jr.","version":20,"id":"96308","lastModified":"1301902648000","name":"William Wellman Jr.","type":"Person","_key":"67974"} +{"label":"Tim Russ","version":21,"id":"55538","lastModified":"1301902063000","name":"Tim Russ","type":"Person","_key":"67975"} +{"label":"Chase Masterson","version":17,"id":"96309","lastModified":"1301902658000","name":"Chase Masterson","type":"Person","_key":"67976"} +{"label":"Daamen J. Krall","version":16,"id":"96310","lastModified":"1301902631000","name":"Daamen J. Krall","type":"Person","_key":"67977"} +{"label":"Cirroc Lofton","version":19,"id":"74071","lastModified":"1301902236000","name":"Cirroc Lofton","type":"Person","_key":"67978"} +{"label":"If You Are the One","description":"Qin Fen, a funny, honest, single inventor, met a girl called Smiley, who was in agony of her boyfriend's betrayal. They traveled to Hokkaido, tried to help Smiley cure her pain in heart, and both of them gradually found their true love and life redemption during the journey.","id":"18232","runtime":130,"imdbId":"tt1330607","version":379,"lastModified":"1301903518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ac\/4bc95211017a3c57fe0245ac\/18232-mid.jpg","genre":"Comedy","title":"If You Are the One","releaseDate":1229904000000,"language":"en","type":"Movie","_key":"67979"} +{"label":"Wei Fan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ac0\/4d04dc305e73d621a5002ac0\/wei-fan-profile.jpg","version":20,"id":"134029","lastModified":"1301902401000","name":"Wei Fan","type":"Person","_key":"67980"} +{"label":"Xiao Che","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b45\/4d04ded85e73d621a1002b45\/xiao-che-profile.jpg","version":16,"id":"143845","lastModified":"1301901848000","name":"Xiao Che","type":"Person","_key":"67981"} +{"label":"Yuanzheng Feng","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ad3\/4d04de405e73d621a5002ad3\/yuanzheng-feng-profile.jpg","version":21,"id":"112563","lastModified":"1301902212000","name":"Yuanzheng Feng","type":"Person","_key":"67982"} +{"label":"Jiayi He","version":15,"id":"143858","lastModified":"1301903057000","name":"Jiayi He","type":"Person","_key":"67983"} +{"label":"The No 1 Ladies' Detective Agency","description":"A Botswanan woman starts up the country's first female-owned detective agency. Based on the series of novels by Alexander McCall Smith.","id":"18237","runtime":60,"imdbId":"tt0874957","trailer":"http:\/\/www.youtube.com\/watch?v=zGoDTlCwrgc","homepage":"http:\/\/www.hbo.com\/no1ladiesdetectiveagency\/","version":38,"lastModified":"1300980549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ba\/4bc95213017a3c57fe0245ba\/the-no-1-ladies-detective-agency-mid.jpg","studio":"The Weinstein Company","genre":"Comedy","title":"The No 1 Ladies' Detective Agency","releaseDate":1206230400000,"language":"en","type":"Movie","_key":"67984"} +{"label":"Lesbian Vampire Killers","description":"With their women having been enslaved by a pack of lesbian vampires, the remaining menfolk of a rural town send two hapless young lads out onto the moors as a sacrifice.","id":"18238","runtime":86,"imdbId":"tt1020885","trailer":"http:\/\/www.youtube.com\/watch?v=bOIRq4hSIMw","homepage":"http:\/\/www.lesbianvampirekillersmovie.com\/","version":235,"lastModified":"1301901516000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5eb\/4bc9521a017a3c57fe0245eb\/lesbian-vampire-killers-mid.jpg","studio":"AV Pictures","genre":"Comedy","title":"Lesbian Vampire Killers","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"67985"} +{"label":"Mathew Horne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02f\/4d282d7e7b9aa134dc00202f\/mathew-horne-profile.jpg","version":21,"id":"82806","lastModified":"1301902035000","name":"Mathew Horne","type":"Person","_key":"67986"} +{"label":"Vera Filatova","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f58\/4d282b6b7b9aa134e0001f58\/vera-filatova-profile.jpg","version":18,"id":"137325","lastModified":"1301902394000","name":"Vera Filatova","type":"Person","_key":"67987"} +{"label":"Louise Dylan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03c\/4d282bb27b9aa134cb00203c\/louise-dylan-profile.jpg","version":18,"id":"141534","lastModified":"1301902218000","name":"Louise Dylan","type":"Person","_key":"67988"} +{"label":"Ashley Mulheron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f71\/4d282c267b9aa134d3001f71\/ashley-mulheron-profile.jpg","version":18,"id":"141535","lastModified":"1301902323000","name":"Ashley Mulheron","type":"Person","_key":"67989"} +{"label":"Tiffany Mulheron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/114\/4ceea1ad5e73d65313000114\/tiffany-mulheron-profile.jpg","version":23,"id":"85979","lastModified":"1301902401000","name":"Tiffany Mulheron","type":"Person","_key":"67990"} +{"label":"Emer Kenny","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/043\/4d282c7e7b9aa134cb002043\/emer-kenny-profile.jpg","version":18,"id":"141536","lastModified":"1301902206000","name":"Emer Kenny","type":"Person","_key":"67991"} +{"label":"John Pierce Jones","version":17,"id":"141537","lastModified":"1301902692000","name":"John Pierce Jones","type":"Person","_key":"67992"} +{"label":"Emma Clifford","version":17,"id":"141538","lastModified":"1301902516000","name":"Emma Clifford","type":"Person","_key":"67993"} +{"label":"Travis Oliver","version":16,"id":"141539","lastModified":"1301902575000","name":"Travis Oliver","type":"Person","_key":"67994"} +{"label":"Susie Amy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e95\/4d282ce77b9aa134cf001e95\/susie-amy-profile.jpg","version":20,"id":"141540","lastModified":"1301902206000","name":"Susie Amy","type":"Person","_key":"67995"} +{"label":"Phil Claydon","version":22,"id":"82822","lastModified":"1301902165000","name":"Phil Claydon","type":"Person","_key":"67996"} +{"label":"The Twilight Saga: New Moon","description":"Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.","id":"18239","runtime":130,"imdbId":"tt1259571","trailer":"http:\/\/www.youtube.com\/watch?v=KYBF3HKzrmE","homepage":"http:\/\/www.twilightthemovie.com\/","version":390,"lastModified":"1301900900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/136\/4cf487705e73d62385001136\/the-twilight-saga-new-moon-mid.jpg","studio":"Summit Entertainment, LLC","genre":"Drama","title":"The Twilight Saga: New Moon","releaseDate":1258502400000,"language":"en","tagline":"The Next Chapter Begins.","type":"Movie","_key":"67997"} +{"label":"Christian Serratos","version":61,"id":"84224","lastModified":"1301901149000","name":"Christian Serratos","type":"Person","_key":"67998"} +{"label":"Bronson Pelletier","version":34,"id":"84216","lastModified":"1301901362000","name":"Bronson Pelletier","type":"Person","_key":"67999"} +{"label":"Alex Meraz","version":34,"id":"84217","lastModified":"1301901413000","name":"Alex Meraz","type":"Person","_key":"68000"} +{"label":"Kiowa Gordon","version":34,"id":"84218","lastModified":"1301901413000","name":"Kiowa Gordon","type":"Person","_key":"68001"} +{"label":"Chaske Spencer","version":34,"id":"84219","lastModified":"1301901415000","name":"Chaske Spencer","type":"Person","_key":"68002"} +{"label":"Gil Birmingham","version":64,"id":"84225","lastModified":"1301901142000","name":"Gil Birmingham","type":"Person","_key":"68003"} +{"label":"Charlie Bewley","version":35,"id":"84221","lastModified":"1301901412000","name":"Charlie Bewley","type":"Person","_key":"68004"} +{"label":"Daniel Cudmore","version":49,"id":"84222","lastModified":"1301901189000","name":"Daniel Cudmore","type":"Person","_key":"68005"} +{"label":"Noot Seear","version":34,"id":"84226","lastModified":"1301901220000","name":"Noot Seear","type":"Person","_key":"68006"} +{"label":"Justine Wachsberger","version":37,"id":"84227","lastModified":"1301901366000","name":"Justine Wachsberger","type":"Person","_key":"68007"} +{"label":"Hugo Steele","version":34,"id":"84228","lastModified":"1301901219000","name":"Hugo Steele","type":"Person","_key":"68008"} +{"label":"The Proposal","description":"When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.","id":"18240","runtime":107,"imdbId":"tt1041829","trailer":"http:\/\/www.youtube.com\/watch?v=RFL8b1p1ELY","homepage":"http:\/\/www.myspace.com\/proposalmovie","version":323,"lastModified":"1301901340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58e\/4d1abc555e73d6084200b58e\/the-proposal-mid.jpg","studio":"Touchstone Pictures","genre":"Comedy","title":"The Proposal","releaseDate":1245369600000,"language":"en","tagline":"Here comes the bribe...","type":"Movie","_key":"68009"} +{"label":"Dale Place","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0dd\/4cdc6c847b9aa138030000dd\/dale-place-profile.jpg","version":30,"id":"84436","lastModified":"1301901709000","name":"Dale Place","type":"Person","_key":"68010"} +{"label":"The Secret Adventures of Tom Thumb","description":"A boy born the size of a small doll is kidnapped by a genetic lab and must find a way back to his father in this inventive adventure filmed using stop motion animation techniques.","id":"18242","runtime":61,"imdbId":"tt0108069","version":102,"lastModified":"1301906538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cec\/4cbbc6f15e73d67783000cec\/the-secret-adventures-of-tom-thumb-mid.jpg","studio":"Bolex Brothers","genre":"Animation","title":"The Secret Adventures of Tom Thumb","releaseDate":789955200000,"language":"en","tagline":"A nursery crime of epic proportions...","type":"Movie","_key":"68011"} +{"label":"Nick Upton","version":16,"id":"138939","lastModified":"1301902906000","name":"Nick Upton","type":"Person","_key":"68012"} +{"label":"Deborah Collard","version":16,"id":"138940","lastModified":"1301902927000","name":"Deborah Collard","type":"Person","_key":"68013"} +{"label":"True True Lie","description":"True True Lie is 2006 thriller film directed by Eric Styles. The film follows Dana, who after 12 years in an asylum, is reunited with her family and childhood friends Nathalie and Paige. Dana slowly begins to realize that the events that led to her stay there may not have been imaginary. True True Lie stars Jaime King as Nathalie, Lydia Leonard as Dana and Annabelle Wallis as Paige.","id":"18245","runtime":90,"imdbId":"tt0493419","homepage":"http:\/\/en.wikipedia.org\/wiki\/True_True_Lie","version":842,"lastModified":"1302215339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b4\/4bc95244017a3c57fe0246b4\/true-true-lie-mid.jpg","genre":"Comedy","title":"True True Lie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68014"} +{"label":"Jason Durr","version":23,"id":"82808","lastModified":"1301901862000","name":"Jason Durr","type":"Person","_key":"68015"} +{"label":"Annabelle Wallis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/883\/4d7ab7105e73d65ec6000883\/annabelle-wallis-profile.jpg","version":25,"id":"82809","lastModified":"1301901641000","name":"Annabelle Wallis","type":"Person","_key":"68016"} +{"label":"STRONG: The Movie","description":"Tucked away in an industrial park in northern New Jersey, there is a gym where extraordinary people gather.\r\nAlthough these people come from different walks of life, they all share one common bond.\r\nWhether it's through physical demonstration or their ability to overcome adversity they are all unbelievably strong.","id":"18246","runtime":54,"trailer":"http:\/\/www.youtube.com\/watch?v=1197","homepage":"http:\/\/www.strongmovie.com\/","version":921,"lastModified":"1302215302000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b9\/4bc95244017a3c57fe0246b9\/strong-the-movie-mid.jpg","genre":"Documentary","title":"STRONG: The Movie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68017"} +{"label":"Joe Defranco","version":16,"id":"82811","lastModified":"1301902704000","name":"Joe Defranco","type":"Person","_key":"68018"} +{"label":"George Defranco","version":15,"id":"82812","lastModified":"1301902324000","name":"George Defranco","type":"Person","_key":"68019"} +{"label":"Spectacular!","description":"A high school choir is fading in popularity, as it continues to lose most of its' members one by one. A wannabe rock singer is convinced to join the choir, in hopes of winning the upcoming competition and cash prize.","id":"18247","runtime":0,"imdbId":"tt1212986","version":165,"lastModified":"1301908033000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6be\/4bc95244017a3c57fe0246be\/spectacular-mid.jpg","genre":"Drama","title":"Spectacular!","releaseDate":1234742400000,"language":"en","type":"Movie","_key":"68020"} +{"label":"Brittney Irvin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/130\/4ceeb1e35e73d65315000130\/brittney-irvin-profile.jpg","version":24,"id":"62866","lastModified":"1301901469000","name":"Brittney Irvin","type":"Person","_key":"68021"} +{"label":"Tammin Sursok ","version":7,"id":"228448","lastModified":"1301904026000","name":"Tammin Sursok ","type":"Person","_key":"68022"} +{"label":"Victoria Justice","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02e\/4d9b58695e73d64a2f00002e\/victoria-justice-profile.jpg","version":15,"id":"191228","lastModified":"1302019146000","name":"Victoria Justice","type":"Person","_key":"68023"} +{"label":"Andrea Lewis","version":12,"id":"197335","lastModified":"1301903929000","name":"Andrea Lewis","type":"Person","_key":"68024"} +{"label":"The Foreigner","description":"This story is about a freelance agent (Seagal) who is the courier of a package from France to Germany. He soon finds that many people want to get their hands on it.","id":"18248","runtime":96,"imdbId":"tt0312700","version":114,"lastModified":"1301906666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6cb\/4bc95245017a3c57fe0246cb\/the-foreigner-mid.jpg","studio":"franchise pictures","genre":"Action","title":"The Foreigner","releaseDate":1054425600000,"language":"en","type":"Movie","_key":"68025"} +{"label":"Jeffrey Pierce","version":21,"id":"82821","lastModified":"1301902383000","name":"Jeffrey Pierce","type":"Person","_key":"68026"} +{"label":"Michael Oblowitz","version":24,"id":"82829","lastModified":"1301902204000","name":"Michael Oblowitz","type":"Person","_key":"68027"} +{"label":"Dr. Phibes Rises Again","description":"The vengeful Doctor rises again, seeking the Scrolls of Life in an attempt to resurrect his deceased wife.","id":"18250","runtime":89,"imdbId":"tt0068503","version":274,"lastModified":"1301906462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d4\/4bc95245017a3c57fe0246d4\/dr-phibes-rises-again-mid.jpg","studio":"American International Pictures (AIP)","genre":"Horror","title":"Dr. Phibes Rises Again","releaseDate":78796800000,"language":"en","tagline":"Flesh crawls! Blood curdles! Phibes lives!","type":"Movie","_key":"68028"} +{"label":"Robert Quarry","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/438\/4cb60f4d7b9aa138d7000438\/robert-quarry-profile.jpg","version":42,"id":"82830","lastModified":"1301901570000","name":"Robert Quarry","type":"Person","_key":"68029"} +{"label":"Beryl Reid","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2f9\/4ca520d45e73d636fc0002f9\/beryl-reid-profile.jpg","version":30,"id":"42572","lastModified":"1301901808000","name":"Beryl Reid","type":"Person","_key":"68030"} +{"label":"My Science Project","description":"Michael and Ellie break into a military junkyard to find a science project for Michael's class, and discover a strange glowing orb which absorbs electricity. When the orb begins to blend past, present, and future, its up to Michael and Ellie to stop the orb and save mankind.","id":"18252","runtime":94,"imdbId":"tt0089652","version":80,"lastModified":"1301903252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/176\/4bf65790017a3c772c000176\/my-science-project-mid.jpg","genre":"Comedy","title":"My Science Project","releaseDate":492393600000,"language":"en","type":"Movie","_key":"68031"} +{"label":"Mythen Wunder Emotionen","description":"No overview found.","id":"18253","runtime":70,"homepage":"http:\/\/www.hannover-indians.de","version":16,"lastModified":"1301906112000","genre":"Sports Film","title":"Mythen Wunder Emotionen","releaseDate":1240617600000,"language":"en","type":"Movie","_key":"68032"} +{"label":"Reds","description":"This movie tells the true story of John Reed, a radical American journalist around the time of World War I. He soon meets Louise Bryant, a respectable married woman, who dumps her husband for Reed and becomes an important feminist and radical in her own right. After involvement with labor and political disputes in the US, they go to Russia in time for the October Revolution in 1917, when the Comm","id":"18254","runtime":194,"imdbId":"tt0082979","trailer":"http:\/\/www.youtube.com\/watch?v=WjjRDJ039FI","version":119,"lastModified":"1301905206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6eb\/4bc9524b017a3c57fe0246eb\/reds-mid.jpg","genre":"Drama","title":"Reds","releaseDate":376272000000,"language":"en","type":"Movie","_key":"68033"} +{"label":"Castle Freak","description":"John has inherited a castle and Italy and he moves there with his wife Susan and their blind daughter Rebecca. What they don't realize is that there is somebody else in the castle. An abused child left to die in the basement who has now become the castle freak and is out to wreak havoc.","id":"18256","runtime":95,"imdbId":"tt0112643","version":87,"lastModified":"1301418280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6fc\/4bc9524c017a3c57fe0246fc\/castle-freak-mid.jpg","studio":"Full Moon Entertainment","genre":"Horror","title":"Castle Freak","releaseDate":816307200000,"language":"en","type":"Movie","_key":"68034"} +{"label":"Jessica Dollarhide","version":16,"id":"105645","lastModified":"1301902977000","name":"Jessica Dollarhide","type":"Person","_key":"68035"} +{"label":"Black Belt Jones","description":"When the mob puts pressure on an African-American karate school to close down, an African-American federal agent is asked to intervene.","id":"18257","runtime":87,"imdbId":"tt0071221","trailer":"http:\/\/www.youtube.com\/watch?v=VU-5fOSXW3A","version":76,"lastModified":"1301908138000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc9524c017a3c57fe02470a\/black-belt-jones-mid.jpg","genre":"Action","title":"Black Belt Jones","releaseDate":143424000000,"language":"en","type":"Movie","_key":"68036"} +{"label":"Eric Laneuville","version":21,"id":"47020","lastModified":"1301902213000","name":"Eric Laneuville","type":"Person","_key":"68037"} +{"label":"Alan Weeks","version":20,"id":"88344","lastModified":"1301902980000","name":"Alan Weeks","type":"Person","_key":"68038"} +{"label":"Andre Philippe","version":17,"id":"96915","lastModified":"1301902576000","name":"Andre Philippe","type":"Person","_key":"68039"} +{"label":"Vincent Barbi","version":17,"id":"104601","lastModified":"1301902839000","name":"Vincent Barbi","type":"Person","_key":"68040"} +{"label":"Mel Novak","version":20,"id":"119887","lastModified":"1301902654000","name":"Mel Novak","type":"Person","_key":"68041"} +{"label":"Malik Carter","version":16,"id":"141264","lastModified":"1301902792000","name":"Malik Carter","type":"Person","_key":"68042"} +{"label":"Eddie Smith","version":19,"id":"15529","lastModified":"1301901976000","name":"Eddie Smith","type":"Person","_key":"68043"} +{"label":"Alex Brown","version":16,"id":"141267","lastModified":"1301902751000","name":"Alex Brown","type":"Person","_key":"68044"} +{"label":"Clarence Barnes","version":16,"id":"141269","lastModified":"1301902751000","name":"Clarence Barnes","type":"Person","_key":"68045"} +{"label":"Earl Jolly Brown","version":16,"id":"141270","lastModified":"1301902751000","name":"Earl Jolly Brown","type":"Person","_key":"68046"} +{"label":"Jac Emil","version":16,"id":"141271","lastModified":"1301902751000","name":"Jac Emil","type":"Person","_key":"68047"} +{"label":"Wayne Musgrove","version":16,"id":"141272","lastModified":"1301902751000","name":"Wayne Musgrove","type":"Person","_key":"68048"} +{"label":"Black Samurai","description":"Robert Sand, agent of D.R.A.G.O.N. (Defense Reserve Agency Guardian Of Nations), is playing tennis on his vacation with a beautiful black girl, when his commanding officers ask him to save a Chinese girl who happens to be Sand's girlfriend, and the daughter of a top Eastern Ambassador. The ransom for the abduction was the secret for a terrific new weapon - the freeze bomb. ","id":"18259","runtime":88,"imdbId":"tt0074213","version":68,"lastModified":"1300980554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/714\/4bc9524d017a3c57fe024714\/black-samurai-mid.jpg","genre":"Eastern","title":"Black Samurai","releaseDate":224812800000,"language":"en","type":"Movie","_key":"68049"} +{"label":"Bill Roy","version":17,"id":"103794","lastModified":"1301903046000","name":"Bill Roy","type":"Person","_key":"68050"} +{"label":"Roberto Contreras","version":17,"id":"103795","lastModified":"1301901997000","name":"Roberto Contreras","type":"Person","_key":"68051"} +{"label":"Essie Lin Chia","version":17,"id":"103796","lastModified":"1301902379000","name":"Essie Lin Chia","type":"Person","_key":"68052"} +{"label":"Kiss Tomorrow Goodbye","description":"James Cagney plays Ralph Cotter, a career criminal who escapes from prison, then murders his partner in crime. Along they way he attempts to woo his ex partner's sister (Barbara Payton) by threatening to expose her role in his escape. Cotter quickly gets back into the crime business only to be shaken down by local corrupt cops.","id":"18262","runtime":102,"imdbId":"tt0042648","trailer":"http:\/\/www.youtube.com\/watch?v=I1EVMx-p-_g","version":66,"lastModified":"1301908140000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72a\/4bc9524e017a3c57fe02472a\/kiss-tomorrow-goodbye-mid.jpg","studio":"William Cagney Productions","genre":"Crime","title":"Kiss Tomorrow Goodbye","releaseDate":-612576000000,"language":"en","type":"Movie","_key":"68053"} +{"label":"Barbara Payton","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13b\/4bcc6971017a3c0f2c00013b\/barbara-payton-profile.jpg","version":22,"birthday":"-1329440400000","id":"82833","birthplace":"Cloquet, Minnesota, USA","lastModified":"1301901579000","name":"Barbara Payton","type":"Person","_key":"68054"} +{"label":"Helena Carter","version":23,"id":"82834","lastModified":"1301902126000","name":"Helena Carter","type":"Person","_key":"68055"} +{"label":"Rhys Williams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/945\/4be2c8ca017a3c35b4000945\/rhys-williams-profile.jpg","version":42,"id":"82835","lastModified":"1301902167000","name":"Rhys Williams","type":"Person","_key":"68056"} +{"label":"Herbert Heyes","version":24,"id":"82836","lastModified":"1301902236000","name":"Herbert Heyes","type":"Person","_key":"68057"} +{"label":"Robert Karnes","version":22,"id":"82837","lastModified":"1301902631000","name":"Robert Karnes","type":"Person","_key":"68058"} +{"label":"The Man from Laramie","description":"Will Lockhart (James Stewart) becomes entangled in the happenings of Coronado, an isolated western town, after delivering supplies there. He is especially involved with the Waggomans, an influential ranching family, and begins his search for someone selling rifles to the local Apaches, only to find out it is the son of the most powerful man in the area. It is at this point that his troubles begin.","id":"18264","runtime":104,"imdbId":"tt0048342","trailer":"http:\/\/www.youtube.com\/watch?v=Kihrk4zSBTk","version":172,"lastModified":"1301904377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73d\/4bc9524f017a3c57fe02473d\/the-man-from-laramie-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"The Man from Laramie","releaseDate":-452476800000,"language":"en","type":"Movie","_key":"68059"} +{"label":"Alex Nicol","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/448\/4cb356a57b9aa12cf7000448\/alex-nicol-profile.jpg","version":22,"id":"109846","lastModified":"1301956429000","name":"Alex Nicol","type":"Person","_key":"68060"} +{"label":"John War Eagle","version":18,"id":"137003","lastModified":"1301902534000","name":"John War Eagle","type":"Person","_key":"68061"} +{"label":"James Millican","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/053\/4cdc3ed57b9aa13803000053\/james-millican-profile.jpg","version":32,"birthday":"-1889398800000","id":"100945","birthplace":"Palisades, New Jersey, USA","lastModified":"1301985766000","name":"James Millican","type":"Person","_key":"68062"} +{"label":"Gregg Barton","version":18,"id":"137004","lastModified":"1301902540000","name":"Gregg Barton","type":"Person","_key":"68063"} +{"label":"Boyd Stockman","version":17,"id":"137005","lastModified":"1301902504000","name":"Boyd Stockman","type":"Person","_key":"68064"} +{"label":"S\u00f3d\u00f3ma Reykjav\u00edk","description":"Since his mother wants to watch TV, Axel, a young auto-mechanic, must recover her remote control, accidentally taken by his punk sister Maja. During his quest, he becomes involved in the conflict between Moli, the liquor smuggler, and Aggi, a night club owner who wants to be Iceland's first mafia boss.","id":"18265","runtime":78,"imdbId":"tt0108176","version":36,"lastModified":"1301906713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/746\/4bc95250017a3c57fe024746\/sodoma-reykjavik-mid.jpg","title":"S\u00f3d\u00f3ma Reykjav\u00edk","releaseDate":718502400000,"language":"en","type":"Movie","_key":"68065"} +{"label":"Bj\u00f6rn J\u00f6rundur Fri\u00f0bj\u00f6rnsson","version":17,"id":"82848","lastModified":"1301902141000","name":"Bj\u00f6rn J\u00f6rundur Fri\u00f0bj\u00f6rnsson","type":"Person","_key":"68066"} +{"label":"Lady and the Tramp II: Scamp's Adventure","description":"Seeking the freedom to be a wild dog, the son of Lady and the Tramp runs away to join a gang of junkyard dogs.","id":"18269","runtime":69,"imdbId":"tt0249677","version":123,"lastModified":"1301907133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74f\/4bc95250017a3c57fe02474f\/lady-and-the-tramp-ii-scamp-s-adventure-mid.jpg","studio":"Walt Disney Pictures","genre":"Family","title":"Lady and the Tramp II: Scamp's Adventure","releaseDate":982454400000,"language":"en","type":"Movie","_key":"68067"} +{"label":"Henry Rollins: Live in the Conversation Pit","description":"The first ever Henry Rollins Spoken Word DVD filmed entirely in Australia! \"I made my 26th trip to Australia for some talking shows. The first three dates were in Sydney. We rolled film on the performances and some post-show interviews as well. This DVD is what made the final cut. ","id":"18272","runtime":153,"version":65,"lastModified":"1300980555000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/754\/4bc95251017a3c57fe024754\/henry-rollins-live-in-the-conversation-pit-mid.jpg","title":"Henry Rollins: Live in the Conversation Pit","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68068"} +{"label":"Downloading Nancy","description":"Sick of her life, housewife Nancy (Bello) just wants it to be over and done with, but rather than kill herself, she hires a stranger from the Internet to do the job for her. But fate takes a strange turn when she meets her killer and the two fall in love. Of course, Nancy realizes that love and murder do not naturally go hand in hand.","id":"18273","runtime":0,"imdbId":"tt0411323","version":145,"lastModified":"1301904196000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/765\/4bc95255017a3c57fe024765\/downloading-nancy-mid.jpg","studio":"Tule River Films","genre":"Drama","title":"Downloading Nancy","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"68069"} +{"label":"Frogs","description":"No overview found.","id":"18274","runtime":91,"imdbId":"tt0068615","version":302,"lastModified":"1301907661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/76e\/4bc95257017a3c57fe02476e\/frogs-mid.jpg","studio":"American International Pictures (AIP)","genre":"Horror","title":"Frogs","releaseDate":69033600000,"language":"en","type":"Movie","_key":"68070"} +{"label":"Joan Van Ark","version":16,"id":"101947","lastModified":"1301902631000","name":"Joan Van Ark","type":"Person","_key":"68071"} +{"label":"Judy Pace","version":16,"id":"101948","lastModified":"1301902884000","name":"Judy Pace","type":"Person","_key":"68072"} +{"label":"Lynn Borden","version":23,"id":"101756","lastModified":"1301995822000","name":"Lynn Borden","type":"Person","_key":"68073"} +{"label":"David Gilliam","version":17,"id":"101949","lastModified":"1301903032000","name":"David Gilliam","type":"Person","_key":"68074"} +{"label":"Nicholas Cortland","version":18,"id":"101950","lastModified":"1301902884000","name":"Nicholas Cortland","type":"Person","_key":"68075"} +{"label":"Hoot","description":"No overview found.","id":"18276","runtime":91,"imdbId":"tt0453494","version":115,"lastModified":"1301904822000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77b\/4bc95258017a3c57fe02477b\/hoot-mid.jpg","genre":"Drama","title":"Hoot","releaseDate":1146787200000,"language":"en","type":"Movie","_key":"68076"} +{"label":"Cody Linley","version":22,"id":"88076","lastModified":"1301902509000","name":"Cody Linley","type":"Person","_key":"68077"} +{"label":"Perkins' 14","description":"Ronald Perkins builds an army of 14 people brainwashed through cult-like methods to protect him from his parents' killers. When Perkins is imprisoned, the police unwittingly unleash his followers on a small town and they've only got one thing on their mind: \"Kill for Mr. Perkins.\" ","id":"18278","runtime":95,"imdbId":"tt1230211","version":116,"lastModified":"1301905182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/784\/4bc95259017a3c57fe024784\/perkins-14-mid.jpg","studio":"After Dark Films","genre":"Horror","title":"Perkins' 14","releaseDate":1231459200000,"language":"en","tagline":"Years have gone by... not heard from, nor seen. Destined to KILL. Its...","type":"Movie","_key":"68078"} +{"label":"Patrick O'Kane","version":20,"id":"82854","lastModified":"1301902454000","name":"Patrick O'Kane","type":"Person","_key":"68079"} +{"label":"Shayla Beesley","version":20,"id":"82855","lastModified":"1301902454000","name":"Shayla Beesley","type":"Person","_key":"68080"} +{"label":"Mihaela Mihut","version":20,"id":"82856","lastModified":"1301902454000","name":"Mihaela Mihut","type":"Person","_key":"68081"} +{"label":"Michale Graves","version":21,"id":"82858","lastModified":"1301902647000","name":"Michale Graves","type":"Person","_key":"68082"} +{"label":"Paha Maa","description":"When a schoolteacher is sacked, he projects his bad mood at his troubled teenage son. The son, in turn, buys a CD player from a pawnshop with counterfeit money. This starts a chain reaction of misery as every victim projects his problems on to another person. ","id":"18279","runtime":127,"imdbId":"tt0388318","trailer":"http:\/\/www.youtube.com\/watch?v=1203","homepage":"http:\/\/www.solarfilms.com\/elokuvat\/kaikki\/pahamaa\/en_GB\/frozenland\/","version":59,"lastModified":"1301902989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78d\/4bc95259017a3c57fe02478d\/paha-maa-mid.jpg","studio":"Solar Films","genre":"Drama","title":"Paha Maa","releaseDate":1105660800000,"language":"en","type":"Movie","_key":"68083"} +{"label":"Jasper P\u00e4\u00e4kk\u00f6nen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87b\/4d28c3585e73d626c400287b\/jasper-p-kk-nen-profile.jpg","version":34,"id":"82857","lastModified":"1302235947000","name":"Jasper P\u00e4\u00e4kk\u00f6nen","type":"Person","_key":"68084"} +{"label":"Aku Louhimies","version":27,"id":"87322","lastModified":"1301903110000","name":"Aku Louhimies","type":"Person","_key":"68085"} +{"label":"Journey into Amazing Caves","description":"Journey into Amazing Caves is an extraordinary IMAX adventure into the depths of the earth to uncover the secrets to life underground.","id":"18280","runtime":39,"imdbId":"tt0270444","trailer":"http:\/\/www.youtube.com\/watch?v=vnA5_8s34nM","homepage":"http:\/\/www.amazingcaves.com\/","version":198,"lastModified":"1301416487000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/796\/4bc9525a017a3c57fe024796\/journey-into-amazing-caves-mid.jpg","studio":"MacGillivray Freeman Films","genre":"Documentary","title":"Journey into Amazing Caves","releaseDate":983404800000,"language":"en","type":"Movie","_key":"68086"} +{"label":"Side Street","description":"A struggling young father-to-be gives in to temptation and impulsively steals an envelope of money from the office of a corrupt attorney. Instead of a few hundred dollars it contains $30,000 and when he decides to return the money things go wrong and that is only the beginning of his troubles.","id":"18281","runtime":83,"imdbId":"tt0042960","trailer":"http:\/\/www.youtube.com\/watch?v=zR7gRki-XKM","version":83,"lastModified":"1301905621000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79f\/4bc9525b017a3c57fe02479f\/side-street-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Side Street","releaseDate":-624153600000,"language":"en","type":"Movie","_key":"68087"} +{"label":"James Craig","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ae\/4bd5ab67017a3c2e710001ae\/james-craig-profile.jpg","version":35,"id":"82860","lastModified":"1301901804000","name":"James Craig","type":"Person","_key":"68088"} +{"label":"Edwin Max","version":21,"id":"82861","lastModified":"1301902400000","name":"Edwin Max","type":"Person","_key":"68089"} +{"label":"John Gallaudet","version":27,"id":"95666","lastModified":"1301903004000","name":"John Gallaudet","type":"Person","_key":"68090"} +{"label":"Esther Somers","version":17,"id":"95667","lastModified":"1301902884000","name":"Esther Somers","type":"Person","_key":"68091"} +{"label":"Harry Antrim","version":28,"birthday":"-2693264400000","id":"95668","birthplace":"Chicago, Illinois, USA","lastModified":"1301902719000","name":"Harry Antrim","type":"Person","_key":"68092"} +{"label":"One Crazy Summer","description":"No overview found.","id":"18282","runtime":89,"imdbId":"tt0091680","version":140,"lastModified":"1301904176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7bb\/4bc9525d017a3c57fe0247bb\/one-crazy-summer-mid.jpg","genre":"Comedy","title":"One Crazy Summer","releaseDate":523843200000,"language":"en","type":"Movie","_key":"68093"} +{"label":"Brigadoon","description":"Americans Jeff and Tommy, hunting in Scotland, stumble upon a village - Brigadoon. They soon learn that the town appears once every 100 years in order to preserve its peace and special beauty. The citizens go to bed at night and when they wake up, it's 100 years later. Tommy falls in love with a beautiful young woman, Fiona, and is torn between staying or going back to his hectic life in New York.","id":"18283","runtime":108,"imdbId":"tt0046807","trailer":"http:\/\/www.youtube.com\/watch?v=BcfIVJnKzZI","version":107,"lastModified":"1301904175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c4\/4bc9525e017a3c57fe0247c4\/brigadoon-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Musical","title":"Brigadoon","releaseDate":-483321600000,"language":"en","type":"Movie","_key":"68094"} +{"label":"The Legend of Zelda Retrospective","description":"No overview found.","id":"18286","runtime":0,"version":129,"lastModified":"1300980557000","title":"The Legend of Zelda Retrospective","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68095"} +{"label":"Support Your Local Gunfighter","description":"A con artist arrives in a mining town controlled by two competing companies. Both companies think he's a famous gunfighter and try to hire him to drive the other out of town.","id":"18287","runtime":91,"imdbId":"tt0067809","version":138,"lastModified":"1301904377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d1\/4bc95262017a3c57fe0247d1\/support-your-local-gunfighter-mid.jpg","genre":"Action","title":"Support Your Local Gunfighter","releaseDate":44064000000,"language":"en","type":"Movie","_key":"68096"} +{"label":"John Dehner","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/16e\/4c405ca57b9aa1428300016e\/john-dehner-profile.jpg","version":38,"id":"82863","lastModified":"1301902056000","name":"John Dehner","type":"Person","_key":"68097"} +{"label":"Godzilla vs. Biollante","description":"Dr. Shiragami combines the DNA of roses with some extracted from Godzilla's cells. He names his creation \"Biollante\".","id":"18289","runtime":105,"imdbId":"tt0097444","trailer":"http:\/\/www.youtube.com\/watch?v=1206","version":154,"lastModified":"1301904251000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e2\/4bc95264017a3c57fe0247e2\/gojira-vs-biorante-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Godzilla vs. Biollante","releaseDate":629769600000,"language":"en","type":"Movie","_key":"68098"} +{"label":"Kunihiko Mitamura","version":19,"id":"82865","lastModified":"1301902646000","name":"Kunihiko Mitamura","type":"Person","_key":"68099"} +{"label":"Koji Takahashi","version":27,"id":"82867","lastModified":"1301902559000","name":"Koji Takahashi","type":"Person","_key":"68100"} +{"label":"T\u00f4ru Minegishi","version":19,"id":"82868","lastModified":"1301902646000","name":"T\u00f4ru Minegishi","type":"Person","_key":"68101"} +{"label":"Toshiyuki Nagashima","version":19,"id":"82869","lastModified":"1301902646000","name":"Toshiyuki Nagashima","type":"Person","_key":"68102"} +{"label":"Ryunosuke Kaneda","version":20,"id":"82870","lastModified":"1301902704000","name":"Ryunosuke Kaneda","type":"Person","_key":"68103"} +{"label":"Kazuma Matsubara","version":19,"id":"82871","lastModified":"1301902646000","name":"Kazuma Matsubara","type":"Person","_key":"68104"} +{"label":"Yasunori Yuge","version":19,"id":"82872","lastModified":"1301902646000","name":"Yasunori Yuge","type":"Person","_key":"68105"} +{"label":"Yoshiko Kuga","version":25,"id":"82873","lastModified":"1301902579000","name":"Yoshiko Kuga","type":"Person","_key":"68106"} +{"label":"Haruko Sagara","version":19,"id":"82874","lastModified":"1301902646000","name":"Haruko Sagara","type":"Person","_key":"68107"} +{"label":"Kosuke Toyohara","version":24,"id":"82875","lastModified":"1302106500000","name":"Kosuke Toyohara","type":"Person","_key":"68108"} +{"label":"Katsuhiko Sasaki","version":21,"id":"82876","lastModified":"1301902685000","name":"Katsuhiko Sasaki","type":"Person","_key":"68109"} +{"label":"Hirohisa Nakata","version":19,"id":"82877","lastModified":"1301902646000","name":"Hirohisa Nakata","type":"Person","_key":"68110"} +{"label":"Kenzo Hagiwara","version":19,"id":"82878","lastModified":"1301902646000","name":"Kenzo Hagiwara","type":"Person","_key":"68111"} +{"label":"Kenpachiro Satsuma","version":19,"id":"82879","lastModified":"1301902646000","name":"Kenpachiro Satsuma","type":"Person","_key":"68112"} +{"label":"Masashi Takegumi","version":19,"id":"82880","lastModified":"1301901932000","name":"Masashi Takegumi","type":"Person","_key":"68113"} +{"label":"Yoshitaka Kimura","version":19,"id":"82881","lastModified":"1301902646000","name":"Yoshitaka Kimura","type":"Person","_key":"68114"} +{"label":"Shigeru Shibazaki","version":19,"id":"82882","lastModified":"1301902646000","name":"Shigeru Shibazaki","type":"Person","_key":"68115"} +{"label":"D\u00eamon Kogure","version":19,"id":"82883","lastModified":"1301902476000","name":"D\u00eamon Kogure","type":"Person","_key":"68116"} +{"label":"Kurt Cramer","version":19,"id":"82884","lastModified":"1301902476000","name":"Kurt Cramer","type":"Person","_key":"68117"} +{"label":"Derrick Holmes","version":19,"id":"82887","lastModified":"1301902476000","name":"Derrick Holmes","type":"Person","_key":"68118"} +{"label":"Beth Blatt","version":19,"id":"82888","lastModified":"1301902476000","name":"Beth Blatt","type":"Person","_key":"68119"} +{"label":"Robert Corner","version":19,"id":"82889","lastModified":"1301902646000","name":"Robert Corner","type":"Person","_key":"68120"} +{"label":"Abdallah Helal","version":19,"id":"82890","lastModified":"1301902646000","name":"Abdallah Helal","type":"Person","_key":"68121"} +{"label":"Manjot Beoi","version":19,"id":"82891","lastModified":"1301902476000","name":"Manjot Beoi","type":"Person","_key":"68122"} +{"label":"Brien Uhl","version":19,"id":"82892","lastModified":"1301902646000","name":"Brien Uhl","type":"Person","_key":"68123"} +{"label":"Kenji Hunt","version":19,"id":"82893","lastModified":"1301902303000","name":"Kenji Hunt","type":"Person","_key":"68124"} +{"label":"Hiroshi Inoue","version":21,"id":"82894","lastModified":"1301902646000","name":"Hiroshi Inoue","type":"Person","_key":"68125"} +{"label":"Tetsu Kawai","version":19,"id":"82895","lastModified":"1301902303000","name":"Tetsu Kawai","type":"Person","_key":"68126"} +{"label":"Makiyo Kuroiwa","version":19,"id":"82896","lastModified":"1301902476000","name":"Makiyo Kuroiwa","type":"Person","_key":"68127"} +{"label":"Hiromi Matsukawa","version":19,"id":"82897","lastModified":"1301902646000","name":"Hiromi Matsukawa","type":"Person","_key":"68128"} +{"label":"Ky\u00f4ka Suzuki","version":21,"id":"82898","lastModified":"1301902054000","name":"Ky\u00f4ka Suzuki","type":"Person","_key":"68129"} +{"label":"Isao Takeno","version":19,"id":"82899","lastModified":"1301902646000","name":"Isao Takeno","type":"Person","_key":"68130"} +{"label":"Shin Tatsuma","version":19,"id":"82900","lastModified":"1301902646000","name":"Shin Tatsuma","type":"Person","_key":"68131"} +{"label":"Koji Yamanaka","version":19,"id":"82901","lastModified":"1301902476000","name":"Koji Yamanaka","type":"Person","_key":"68132"} +{"label":"Iden Yamanral","version":19,"id":"82902","lastModified":"1301902303000","name":"Iden Yamanral","type":"Person","_key":"68133"} +{"label":"Ryota Yoshimitsu","version":19,"id":"82903","lastModified":"1301902303000","name":"Ryota Yoshimitsu","type":"Person","_key":"68134"} +{"label":"Yasunori Yumiya","version":19,"id":"82904","lastModified":"1301902646000","name":"Yasunori Yumiya","type":"Person","_key":"68135"} +{"label":"Kazuki Omori","version":27,"id":"72823","lastModified":"1301902350000","name":"Kazuki Omori","type":"Person","_key":"68136"} +{"label":"Arranged","description":"ARRANGED centers on the friendship between an Orthodox Jewish woman and a Muslim woman who meet as first-year teachers at a public school in Brooklyn. Over the course of the year they learn they share much in common - not least of which is that they are both going through the process of arranged marriages.","id":"18290","runtime":90,"imdbId":"tt0848542","version":115,"lastModified":"1301906052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7eb\/4bc95264017a3c57fe0247eb\/arranged-mid.jpg","genre":"Comedy","title":"Arranged","releaseDate":1231459200000,"language":"en","type":"Movie","_key":"68137"} +{"label":"Zoe Lister Jones","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b57\/4d06a5445e73d621a4003b57\/zoe-lister-jones-profile.jpg","version":43,"id":"82885","lastModified":"1302117682000","name":"Zoe Lister Jones","type":"Person","_key":"68138"} +{"label":"Francis Benhamou","version":20,"id":"82886","lastModified":"1301902367000","name":"Francis Benhamou","type":"Person","_key":"68139"} +{"label":"Cyborg Soldier","description":"A cyborg escapes the facility where he was created. With the help of a local sheriff, he tries to run from the dangerous scientists that created him.","id":"18291","runtime":84,"imdbId":"tt1151928","version":158,"lastModified":"1301904310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f4\/4bc95265017a3c57fe0247f4\/cyborg-soldier-mid.jpg","genre":"Action","title":"Cyborg Soldier","releaseDate":1215648000000,"language":"en","type":"Movie","_key":"68140"} +{"label":"John Stead","version":38,"id":"126257","lastModified":"1301901163000","name":"John Stead","type":"Person","_key":"68141"} +{"label":"Kevin Rushton","version":14,"id":"180954","lastModified":"1301903288000","name":"Kevin Rushton","type":"Person","_key":"68142"} +{"label":"Jim Annan","version":5,"id":"230794","lastModified":"1301904130000","name":"Jim Annan","type":"Person","_key":"68143"} +{"label":"George Washington","description":"A delicately told and deceptively simple story of a group of children in a depressed small town who band together to cover up a tragic mistake.","id":"18292","runtime":89,"imdbId":"tt0262432","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/george-washington","version":150,"lastModified":"1301908041000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fd\/4bc95265017a3c57fe0247fd\/george-washington-mid.jpg","genre":"Drama","title":"George Washington","releaseDate":970358400000,"language":"en","type":"Movie","_key":"68144"} +{"label":"Janet Taylor","version":21,"id":"73719","lastModified":"1301902331000","name":"Janet Taylor","type":"Person","_key":"68145"} +{"label":"The Axis of Evil Comedy Tour","description":"4 of the best Arab American stand up comedians hit the road for their tour, from Orange County, California,every comedian of the 4 of them had to go through a metal detector first with an African American woman checking them, Dean Obeidallah starts off the show, entertaining the people, and talking about his heritage, and his family, then Ahmed Ahmed takes over talking about Airplanes, Dubai, etc.","id":"18293","runtime":63,"imdbId":"tt1018867","version":112,"lastModified":"1301907192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/806\/4bc95266017a3c57fe024806\/axis-of-evil-comedy-tour-mid.jpg","genre":"Comedy","title":"The Axis of Evil Comedy Tour","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68146"} +{"label":"Hannibal-Albtraum Roms","description":"No overview found.","id":"18294","runtime":0,"version":30,"lastModified":"1302215282000","title":"Hannibal-Albtraum Roms","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68147"} +{"label":"Rire et ch\u00e2timent","description":"No overview found.","id":"18295","runtime":0,"imdbId":"tt0316494","version":39,"lastModified":"1301907662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09e\/4d8e00127b9aa1675500109e\/rire-et-ch-timent-mid.jpg","title":"Rire et ch\u00e2timent","releaseDate":1043712000000,"language":"en","type":"Movie","_key":"68148"} +{"label":"Philippe Uchan","version":24,"id":"113603","lastModified":"1301903027000","name":"Philippe Uchan","type":"Person","_key":"68149"} +{"label":"isabelle doval","version":6,"id":"230541","lastModified":"1301148439000","name":"isabelle doval","type":"Person","_key":"68150"} +{"label":"15 ao\u00fbt","description":"Max, Raoul et Vincent sont trois p\u00e8res de famille qui rejoignent, le week-end du 15 ao\u00fbt, leurs femmes \u00e0 La Baule. Cependant, les \u00e9pouses, lass\u00e9es par quinze jours de pluie et de garde d'enfants, se sont eclips\u00e9es. Ce week-end tant attendu va r\u00e9server \u00e0 ces maris largu\u00e9s quelques surprises.","id":"18296","runtime":92,"imdbId":"tt0271935","version":85,"lastModified":"1301907695000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ca\/4d4bd5cb5e73d617c70011ca\/15-ao-t-mid.jpg","studio":"Europa Corp.","genre":"Comedy","title":"15 ao\u00fbt","releaseDate":987552000000,"language":"en","type":"Movie","_key":"68151"} +{"label":"Selma El Mouissi","version":12,"id":"223472","lastModified":"1301903987000","name":"Selma El Mouissi","type":"Person","_key":"68152"} +{"label":"Manon Gaurin","version":12,"id":"223473","lastModified":"1301903987000","name":"Manon Gaurin","type":"Person","_key":"68153"} +{"label":"Les Rois mages","description":"Et si les Roi Mages \u00e9taient victimes d'un ph\u00e9nom\u00e8ne spatio-temporel ? Projet\u00e9s 2000 ans apr\u00e8s J-C, Bethl\u00e9em en t\u00eate, Gaspard, Melchior et Balthazar se retrouvent \u00e0 Paris. Laissant la providence guider leur pas, na\u00efvement pris au pi\u00e8ge par un magnat de la T\u00e9l\u00e9, retrouveront-ils leur Messie ?","id":"18298","runtime":102,"imdbId":"tt0286009","version":63,"lastModified":"1301908055000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4bf92c7d017a3c70370000e6\/les-rois-mages-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"Les Rois mages","releaseDate":1008115200000,"language":"en","type":"Movie","_key":"68154"} +{"label":"Love in the Afternoon","description":"A middle-aged playboy is fascinated by the daughter of a private detective who has been hired to entrap him.","id":"18299","runtime":0,"imdbId":"tt0050658","trailer":"http:\/\/www.youtube.com\/watch?v=rSeGFCl5fWY","version":134,"lastModified":"1301904307000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/837\/4bc9526d017a3c57fe024837\/love-in-the-afternoon-mid.jpg","genre":"Comedy","title":"Love in the Afternoon","releaseDate":-394675200000,"language":"en","type":"Movie","_key":"68155"} +{"label":"Jet Lag","description":"At Charles de Gaulle Airport in Paris, a beautician on her way to a new job in Mexico accidentally meets a cook who is on his way back from America. Labor strikes, bad weather, and pure luck cause the two of them to share a room overnight at the airport Hilton hotel. Will their initial mutual indifference and downright hostility turn into a one night stand or perhaps something more?","id":"18300","runtime":91,"imdbId":"tt0293116","version":133,"lastModified":"1301903639000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/844\/4bc9526f017a3c57fe024844\/decalage-horaire-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Jet Lag","releaseDate":1030924800000,"language":"en","type":"Movie","_key":"68156"} +{"label":"My Little Business","description":"No overview found.","id":"18301","runtime":96,"imdbId":"tt0210163","version":272,"lastModified":"1301002354000","genre":"Comedy","title":"My Little Business","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68157"} +{"label":"Painted Fire","description":"No overview found.","id":"18302","runtime":120,"imdbId":"tt0317234","homepage":"http:\/\/www.chihwaseon.com\/","version":77,"lastModified":"1301905967000","genre":"Drama","title":"Painted Fire","releaseDate":1020988800000,"language":"en","type":"Movie","_key":"68158"} +{"label":"Ho-jeong Yu","version":20,"id":"87552","lastModified":"1301902991000","name":"Ho-jeong Yu","type":"Person","_key":"68159"} +{"label":"Yeo-jin Kim","version":24,"id":"87553","lastModified":"1301902415000","name":"Yeo-jin Kim","type":"Person","_key":"68160"} +{"label":"Kwon-taek Im","version":24,"id":"87554","lastModified":"1301902680000","name":"Kwon-taek Im","type":"Person","_key":"68161"} +{"label":"If I Were a Rich Man","description":"Between Alice, a hospital nurse and Aldo, a shampoo sales representative, things have turned sour of late. Alice blames her husband for lacking ambition and contemplates divorce.One day Aldo wins the ten million euro lotto prize. But, unwilling to share the bonanza, he keeps mum about it, all the more as he finds out Alice has an affair with G\u00e9rard, Aldo's former friend and ... new boss. However, Aldo, leading a double life, starts spending his money ...","id":"18303","runtime":105,"imdbId":"tt0315152","version":61,"lastModified":"1301904002000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4d4593175e73d65c84001366\/ah-si-j-tais-riche-mid.jpg","genre":"Comedy","title":"If I Were a Rich Man","releaseDate":1038355200000,"language":"en","type":"Movie","_key":"68162"} +{"label":"G\u00e9rard Bitton","version":17,"id":"146484","lastModified":"1301903095000","name":"G\u00e9rard Bitton","type":"Person","_key":"68163"} +{"label":"Michel Munz","version":17,"id":"146481","lastModified":"1301903095000","name":"Michel Munz","type":"Person","_key":"68164"} +{"label":"A Better Tomorrow II","description":"A restaurant owner his ex-con brother and a policeman team up to avenge the murder of his old friends daughter by the Triad.","id":"18305","runtime":105,"imdbId":"tt0094357","trailer":"http:\/\/www.youtube.com\/watch?v=6F6bD3vYuw0","version":104,"lastModified":"1301903457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87e\/4bc95273017a3c57fe02487e\/ii-mid.jpg","genre":"Crime","title":"A Better Tomorrow II","releaseDate":566697600000,"language":"en","type":"Movie","_key":"68165"} +{"label":"Regina Kent","version":22,"id":"113923","lastModified":"1301902453000","name":"Regina Kent","type":"Person","_key":"68166"} +{"label":"Ming Yan Lung","version":21,"id":"113924","lastModified":"1301901429000","name":"Ming Yan Lung","type":"Person","_key":"68167"} +{"label":"Getting Played","description":"No overview found.","id":"18307","runtime":81,"imdbId":"tt0396032","version":113,"lastModified":"1301904705000","genre":"Comedy","title":"Getting Played","releaseDate":1134172800000,"language":"en","type":"Movie","_key":"68168"} +{"label":"Days of Being Wild","description":"The movie is set in Hong Kong and the Philippines in 1960. Yuddy, or 'York' in English (Leslie Cheung), is a playboy in Hong Kong and is well-known for stealing girls' hearts and breaking them. His first victim is Li Zhen (Maggie Cheung) who suffered emotional and mental depression as a result of Yuddy's wayward attitude. Li Zhen eventually seeks much-needed solace from a sympathetic policeman named Tide (Andy Lau). Their near-romance is often hinted at but never materialises.","id":"18311","runtime":91,"imdbId":"tt0101258","trailer":"http:\/\/www.youtube.com\/watch?v=1207","version":90,"lastModified":"1301903416000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b6\/4bc9527b017a3c57fe0248b6\/a-fei-zheng-chuan-mid.jpg","studio":"Rim","genre":"Drama","title":"Days of Being Wild","releaseDate":661219200000,"language":"en","type":"Movie","_key":"68169"} +{"label":"Endgame: Blueprint for Global Enslavement","description":"For the New World Order, a world government is just the beginning. Once in place they can engage their plan to exterminate 80% of the world's population, while enabling the \"elites\" to live forever with the aid of advanced technology. For the first time, crusading filmmaker ALEX JONES reveals their secret plan for humanity's extermination: Operation ENDGAME.","id":"18312","runtime":139,"imdbId":"tt1135489","homepage":"http:\/\/infowars-shop.stores.yahoo.net\/endgamedvd.html","version":95,"lastModified":"1301904673000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bf\/4bc9527c017a3c57fe0248bf\/endgame-blueprint-for-global-enslavement-mid.jpg","genre":"Documentary","title":"Endgame: Blueprint for Global Enslavement","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68170"} +{"label":"UFC 98: Evans vs. Machida","description":"With a combined record of 32-0-1, light heavyweight stars \"Sugar\" Rashad Evans and Lyoto \"The Dragon\" Machida have left a trail of destruction behind them that includes some of the greatest fighters in UFC history. Now in the main event of UFC 98, the two will meet in an epic showdown pitting champion Evans against challenger Machida to not only determine the best 205-pound fighter on the planet","id":"18314","runtime":173,"imdbId":"tt1510296","homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventDetail.FightCard&eid=2001","version":87,"lastModified":"1301904377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c8\/4bc9527c017a3c57fe0248c8\/ufc-98-evans-vs-machida-mid.jpg","title":"UFC 98: Evans vs. Machida","releaseDate":1243036800000,"language":"en","type":"Movie","_key":"68171"} +{"label":"Xavier Foupa-Pokam","version":20,"id":"82919","lastModified":"1301902709000","name":"Xavier Foupa-Pokam","type":"Person","_key":"68172"} +{"label":"Dan Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/09b\/4c0307b5017a3c7e8600009b\/dan-miller-profile.jpg","version":25,"id":"82917","lastModified":"1301902175000","name":"Dan Miller","type":"Person","_key":"68173"} +{"label":"Black Dog","description":"An ex-con takes a job driving a truck cross country. What he doesn't know is that the truck is filled with illegal weapons and now he must fight to survive and save his family.","id":"18316","runtime":88,"imdbId":"tt0120610","version":167,"lastModified":"1301903402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d1\/4bc95280017a3c57fe0248d1\/black-dog-mid.jpg","genre":"Action","title":"Black Dog","releaseDate":893980800000,"language":"en","type":"Movie","_key":"68174"} +{"label":"Brian Vincent","version":18,"id":"101395","lastModified":"1301903063000","name":"Brian Vincent","type":"Person","_key":"68175"} +{"label":"Brenda Strong","version":19,"id":"101396","lastModified":"1301903081000","name":"Brenda Strong","type":"Person","_key":"68176"} +{"label":"Rusty De Wees","version":17,"id":"101397","lastModified":"1301903072000","name":"Rusty De Wees","type":"Person","_key":"68177"} +{"label":"Erin Broderick","version":17,"id":"101398","lastModified":"1301903042000","name":"Erin Broderick","type":"Person","_key":"68178"} +{"label":"Truly Madly Deeply","description":"Nina is totally heartbroken at the death of her boyfriend Jamie, but is even more unprepared for his return as a ghost. At first it's almost as good as it used to be - hey, even the rats that infested her house have disappeared. But Jamie starts bringing ghostly friends home and behaving more and more oddly.","id":"18317","runtime":106,"imdbId":"tt0103129","version":117,"lastModified":"1301907161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8de\/4bc95281017a3c57fe0248de\/truly-madly-deeply-mid.jpg","title":"Truly Madly Deeply","releaseDate":631152000000,"language":"en","type":"Movie","_key":"68179"} +{"label":"The Young Victoria","description":"A dramatization of the turbulent first years of Queen Victoria's rule, and her enduring romance with Prince Albert.","id":"18320","runtime":100,"imdbId":"tt0962736","homepage":"http:\/\/www.theyoungvictoriamovie.com\/","version":245,"lastModified":"1302038663000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/900\/4bc95284017a3c57fe024900\/the-young-victoria-mid.jpg","studio":"GK Films","genre":"Drama","title":"The Young Victoria","releaseDate":1236297600000,"language":"en","tagline":"Love rules all","type":"Movie","_key":"68180"} +{"label":"Within Temptation: Black Symphony","description":"No overview found.","id":"18321","runtime":127,"imdbId":"tt1362561","version":58,"lastModified":"1301903474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/916\/4bc95289017a3c57fe024916\/within-temptation-black-symphony-mid.jpg","studio":"AT Productions","genre":"Music","title":"Within Temptation: Black Symphony","releaseDate":1221782400000,"language":"en","type":"Movie","_key":"68181"} +{"label":"Sharon den Adel","version":16,"id":"92660","lastModified":"1301901947000","name":"Sharon den Adel","type":"Person","_key":"68182"} +{"label":"Robert Westerholt","version":16,"id":"92662","lastModified":"1301902675000","name":"Robert Westerholt","type":"Person","_key":"68183"} +{"label":"Martijn Spierenburg","version":16,"id":"92663","lastModified":"1301902324000","name":"Martijn Spierenburg","type":"Person","_key":"68184"} +{"label":"Ruud Jolie","version":16,"id":"92664","lastModified":"1301902675000","name":"Ruud Jolie","type":"Person","_key":"68185"} +{"label":"Stephen van Haestregt","version":16,"id":"92666","lastModified":"1301902675000","name":"Stephen van Haestregt","type":"Person","_key":"68186"} +{"label":"Jeroen van Veen","version":16,"id":"92667","lastModified":"1301902501000","name":"Jeroen van Veen","type":"Person","_key":"68187"} +{"label":"Keith Caputo","version":16,"id":"92668","lastModified":"1301902675000","name":"Keith Caputo","type":"Person","_key":"68188"} +{"label":"Anneke van Giersbergen","version":18,"id":"92669","lastModified":"1301902675000","name":"Anneke van Giersbergen","type":"Person","_key":"68189"} +{"label":"George Oosthoek","version":16,"id":"92670","lastModified":"1301902675000","name":"George Oosthoek","type":"Person","_key":"68190"} +{"label":"Hans Pannecoucke","version":16,"id":"92671","lastModified":"1301902501000","name":"Hans Pannecoucke","type":"Person","_key":"68191"} +{"label":"Joshua","description":"When Joshua moves to the outskirts of Auburn, he awakens the curiosity of the sleepy town. They don\u2019t know who he is or where he came from, but no one can shake the feeling they\u2019ve known him for years. Despite his benevolence and selfless work in the community, some remain suspicious. Just what exactly is Joshua up to?","id":"18323","runtime":91,"imdbId":"tt0271582","trailer":"http:\/\/www.youtube.com\/watch?v=1208","version":117,"lastModified":"1301905056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92f\/4bc9528b017a3c57fe02492f\/joshua-mid.jpg","genre":"Drama","title":"Joshua","releaseDate":1019174400000,"language":"en","type":"Movie","_key":"68192"} +{"label":"Jon Purdy","version":21,"id":"77747","lastModified":"1301901414000","name":"Jon Purdy","type":"Person","_key":"68193"} +{"label":"Giai Cuu Than Chet","description":"No overview found.","id":"18327","runtime":0,"version":141,"lastModified":"1301907264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/934\/4bc9528c017a3c57fe024934\/giai-cuu-than-chet-mid.jpg","title":"Giai Cuu Than Chet","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68194"} +{"label":"Nu Hon Than Chet","description":"No overview found.","id":"18328","runtime":0,"version":17,"lastModified":"1300980561000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94d\/4bc9528d017a3c57fe02494d\/nu-hon-than-chet-mid.jpg","title":"Nu Hon Than Chet","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"68195"} +{"label":"Johnny Tri N","version":15,"id":"83481","lastModified":"1301901862000","name":"Johnny Tri N","type":"Person","_key":"68196"} +{"label":"Thanh Hang","version":15,"id":"83482","lastModified":"1301901862000","name":"Thanh Hang","type":"Person","_key":"68197"} +{"label":"Phuong Thanh","version":15,"id":"83483","lastModified":"1301902630000","name":"Phuong Thanh","type":"Person","_key":"68198"} +{"label":"Thanh Lo","version":15,"id":"83484","lastModified":"1301902630000","name":"Thanh Lo","type":"Person","_key":"68199"} +{"label":"Tommy Tra","version":15,"id":"83485","lastModified":"1301902631000","name":"Tommy Tra","type":"Person","_key":"68200"} +{"label":"Happy Together","description":"Yiu-Fai and Po-Wing arrive in Argentina from Hong Kong and take to the road for a holiday. Something is wrong and their relationship goes adrift. A disillusioned Yiu-Fai starts working at a tango bar to save up for his trip home. When a beaten and bruised Po-Wing reappears, Yiu-Fai is empathetic but is unable to enter a more intimate relationship. After all, Po-Wing is not ready to settle down. Yiu-Fai now works in a Chinese restaurant and meets the youthful Chang from Taiwan. Yiu-Fai's life tak","id":"18329","runtime":91,"imdbId":"tt0118845","version":150,"lastModified":"1302085967000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e4\/4d9c5d447b9aa176d70002e4\/chun-gwong-cha-sit-mid.jpg","studio":"Black Monday Film Services","genre":"Drama","title":"Happy Together","releaseDate":862272000000,"language":"en","type":"Movie","_key":"68201"} +{"label":"Gregory Dayton","version":16,"id":"133825","lastModified":"1301902835000","name":"Gregory Dayton","type":"Person","_key":"68202"} +{"label":"Shirley Kwan","version":16,"id":"133826","lastModified":"1301902835000","name":"Shirley Kwan","type":"Person","_key":"68203"} +{"label":"The Nutty Professor","description":"Jerry Lewis directed, co-wrote and starred in this riotously funny movie that set a new standard for screen comedy and inspired the hit remake. Lewis plays a timid, nearsighted chemistry teacher who discovers a magical potion that can transform him into a suave and handsome Romeo.\nThe Jekyll and Hyde game works well enough until the concoction starts to wear off at the most embarrassing times.","id":"18331","runtime":107,"imdbId":"tt0057372","version":97,"lastModified":"1301904459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/982\/4bc95296017a3c57fe024982\/the-nutty-professor-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"The Nutty Professor","releaseDate":-207619200000,"language":"en","type":"Movie","_key":"68204"} +{"label":"Hour of the Wolf","description":"An artist in crisis is haunted by nightmares from the past in Ingmar Bergman's only horror film, which takes place on a windy island. During \"the hour of the wolf\" - between midnight and dawn - he tells his wife about his most painful memories.","id":"18333","runtime":99,"imdbId":"tt0063759","version":89,"lastModified":"1301904215000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c34\/4cba4f987b9aa138d8000c34\/vargtimmen-mid.jpg","studio":"AB Svensk Filmindustri","genre":"Drama","title":"Hour of the Wolf","releaseDate":-58924800000,"language":"en","type":"Movie","_key":"68205"} +{"label":"Guinea Pig: Devil's Experiment","description":"No overview found.","id":"18334","runtime":43,"imdbId":"tt0161634","version":65,"lastModified":"1301908277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/987\/4bc95296017a3c57fe024987\/gini-piggu-akuma-no-jikken-mid.jpg","studio":"Sai Enterprise","genre":"Horror","title":"Guinea Pig: Devil's Experiment","releaseDate":494726400000,"language":"en","type":"Movie","_key":"68206"} +{"label":"Satoru Ogura","version":23,"id":"102187","lastModified":"1301902985000","name":"Satoru Ogura","type":"Person","_key":"68207"} +{"label":"Brum and the Stopwatch Botch","description":"No overview found.","id":"18336","runtime":0,"version":14,"lastModified":"1300980562000","title":"Brum and the Stopwatch Botch","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68208"} +{"label":"Brum - Stopwatch Botch","description":"No overview found.","id":"18337","runtime":0,"version":12,"lastModified":"1300980562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/998\/4bc95298017a3c57fe024998\/brum-stopwatch-botch-mid.jpg","title":"Brum - Stopwatch Botch","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68209"} +{"label":"The Mailman","description":"A cunning psychopath with more than an axe to grind murders the kindly Mailman in a small, placid suburban town. Darius Foxx scarred for life as a young boy by seeing his parents brutally murdered, comes back to town as the new Mailman to torment his younger brother, Daniel, and Daniel's adopted family.","id":"18338","runtime":82,"imdbId":"tt0425218","version":96,"lastModified":"1301905262000","studio":"Rolling Pictures Inc.","genre":"Horror","title":"The Mailman","releaseDate":1089676800000,"language":"en","type":"Movie","_key":"68210"} +{"label":"Tony Mark","version":25,"id":"19449","lastModified":"1301901663000","name":"Tony Mark","type":"Person","_key":"68211"} +{"label":"Rob Arbogast","version":19,"id":"82929","lastModified":"1301901645000","name":"Rob Arbogast","type":"Person","_key":"68212"} +{"label":"Ari Tinnen","version":19,"id":"82930","lastModified":"1301901947000","name":"Ari Tinnen","type":"Person","_key":"68213"} +{"label":"Bryan Lukasik","version":19,"id":"82931","lastModified":"1301902675000","name":"Bryan Lukasik","type":"Person","_key":"68214"} +{"label":"Jesse Merrill","version":19,"id":"82932","lastModified":"1301901561000","name":"Jesse Merrill","type":"Person","_key":"68215"} +{"label":"Gil Zuniga","version":19,"id":"82933","lastModified":"1301902324000","name":"Gil Zuniga","type":"Person","_key":"68216"} +{"label":"Mari Smookler","version":19,"id":"82934","lastModified":"1301902324000","name":"Mari Smookler","type":"Person","_key":"68217"} +{"label":"Jamielyn Kane","version":19,"id":"82935","lastModified":"1301902324000","name":"Jamielyn Kane","type":"Person","_key":"68218"} +{"label":"Gordon Anthony Davis","version":19,"id":"82936","lastModified":"1301902675000","name":"Gordon Anthony Davis","type":"Person","_key":"68219"} +{"label":"In The Night Garden - Hello Makka Pakka","description":"No overview found.","id":"18341","runtime":0,"version":27,"lastModified":"1300980562000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b3\/4bc9529a017a3c57fe0249b3\/in-the-night-garden-hello-makka-pakka-mid.jpg","title":"In The Night Garden - Hello Makka Pakka","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68220"} +{"label":"Tommy Cooper - A Feztival Of Fun With Tommy Cooper","description":"No overview found.","id":"18343","runtime":0,"version":14,"lastModified":"1301908530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bc\/4bc9529b017a3c57fe0249bc\/tommy-cooper-a-feztival-of-fun-with-tommy-cooper-mid.jpg","title":"Tommy Cooper - A Feztival Of Fun With Tommy Cooper","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68221"} +{"label":"The Cremator","description":"Konec 30. let: Pan Karel Kopfrkingl je ob\u011btav\u00fd zam\u011bstnanec pra\u017esk\u00e9ho krematoria a vzorn\u00fd otec rodiny, kter\u00fd d\u016fsledn\u011b db\u00e1 o \u0159\u00e1dn\u00fd chod dom\u00e1cnosti a v\u0161estrannou v\u00fdchovu sv\u00fdch d\u011bt\u00ed. R\u00e1d p\u0159ed\u010d\u00edt\u00e1 ze sv\u00e9 obl\u00edben\u00e9 knihy o Tibetu. T\u00ed\u017eiv\u00e1 atmosf\u00e9ra napjat\u00e9 doby n\u00e1sob\u00ed v\u0161eobecn\u00fd strach. V m\u011b\u0161\u0165\u00e1ck\u00e9m stereotypu \u017eij\u00edc\u00ed Kopfrkingl spolupracuje s nacistick\u00fdmi okupanty a s obludnou samoz\u0159ejmost\u00ed se zbavuje v\u0161eho nebezpe\u010dn\u00e9ho ve sv\u00e9m okol\u00ed, v\u010detn\u011b \u010dlen\u016f vlastn\u00ed rodiny. Jeho velk\u00e1 a nebezpe\u010dn\u00e1 kari\u00e9ra za\u010d\u00edn\u00e1...","id":"18352","runtime":95,"imdbId":"tt0063633","version":112,"lastModified":"1301907500000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c5\/4bc9529c017a3c57fe0249c5\/spalovac-mrtvol-mid.jpg","genre":"Drama","title":"The Cremator","language":"en","type":"Movie","_key":"68222"} +{"label":"Juraj Herz","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fa4\/4cfbf0e65e73d6299b002fa4\/juraj-herz-profile.jpg","version":27,"id":"83998","lastModified":"1302240163000","name":"Juraj Herz","type":"Person","_key":"68223"} +{"label":"The Assignment","description":"Jack Shaw (DONALD SUTHERLAND) has experienced the terror first-hand. He's a top CIA agent who's tracked international killer-for-hire Carlos \"The Jackal\" Sanchez for over twenty years and barely survived Carlos' devastating bombing of a Parisian cafe.\r\n\r\nNow, he finally gets a break when he discovers Carlos' dead ringer: American naval officer and dedicated family man Annibal Ramirez (AIDAN QUINN)","id":"18355","runtime":119,"imdbId":"tt0118647","version":123,"lastModified":"1301904089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9dc\/4bc9529d017a3c57fe0249dc\/the-assignment-mid.jpg","genre":"Action","title":"The Assignment","releaseDate":875404800000,"language":"en","type":"Movie","_key":"68224"} +{"label":"The Country Bears","description":"Based on an attraction at Disneyland, the Country Bear Jamboree, \"The Country Bears\" is one in a long line of live action Disney family films. A satirical, behind-the-music look at rock & roll bands. Beary, a young bear raised by a human family in a world where humans and talking bears coexist, attempts to trace his roots. He meets up with the Country Bears, a long-since broken-up band.","id":"18357","runtime":88,"imdbId":"tt0276033","version":132,"lastModified":"1301904743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f2\/4bc9529f017a3c57fe0249f2\/the-country-bears-mid.jpg","studio":"Walt Disney Pictures","genre":"Comedy","title":"The Country Bears","releaseDate":1027209600000,"language":"en","type":"Movie","_key":"68225"} +{"label":"Candy Ford","version":19,"id":"82987","lastModified":"1301901862000","name":"Candy Ford","type":"Person","_key":"68226"} +{"label":"Meagen Fay","version":25,"id":"82988","lastModified":"1301902545000","name":"Meagen Fay","type":"Person","_key":"68227"} +{"label":"Peter Hastings","version":20,"id":"64149","lastModified":"1301902236000","name":"Peter Hastings","type":"Person","_key":"68228"} +{"label":"To Kill a King","description":"A recounting of the relationship between General Fairfax and Oliver Cromwell, as they try to cope with the consequences of deposing King Charles I.","id":"18359","runtime":102,"imdbId":"tt0302436","version":93,"lastModified":"1302024807000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a04\/4bc952a4017a3c57fe024a04\/to-kill-a-king-mid.jpg","studio":"Film Four","genre":"Action","title":"To Kill a King","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"68229"} +{"label":"Night at the Museum: Battle of the Smithsonian","description":"Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.","id":"18360","runtime":105,"imdbId":"tt1078912","trailer":"http:\/\/www.youtube.com\/watch?v=l9OL-5xcqCQ","homepage":"http:\/\/www.nightatthemuseummovie.com","version":235,"lastModified":"1301901422000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/06b\/4c3eabc47b9aa13dc700006b\/night-at-the-museum-battle-of-the-smithsonian-mid.jpg","studio":"20th Century Fox","genre":"Adventure","title":"Night at the Museum: Battle of the Smithsonian","releaseDate":1242950400000,"language":"en","tagline":"When the lights go off the battle is on.","type":"Movie","_key":"68230"} +{"label":"Doug Stanhope: No Refunds","description":" Not all stand-up comedy is spot-cleaned and pre-packaged for the masses. Like the legends who were born out of smokey, booze-soaked nightclubs of decades past, Doug Stanhope spews his own brand of moral outrage in an unmatched style that borders on self-destruction. Nothing is sacred, no subject off-limits and most importantly nothing is contrived.\n\nFrom critically acclaimed appearances at the Ed","id":"18362","runtime":61,"imdbId":"tt1047610","version":119,"lastModified":"1301905274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3f\/4bc952ae017a3c57fe024a3f\/doug-stanhope-no-refunds-mid.jpg","genre":"Comedy","title":"Doug Stanhope: No Refunds","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"68231"} +{"label":"Doug Stanhope","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2bd\/4bd1ada9017a3c63f30002bd\/doug-stanhope-profile.jpg","version":27,"id":"82994","lastModified":"1301902167000","name":"Doug Stanhope","type":"Person","_key":"68232"} +{"label":"Milton Lage","version":21,"id":"82996","lastModified":"1301902141000","name":"Milton Lage","type":"Person","_key":"68233"} +{"label":"Blackbeard","description":"In the Golden Age of Piracy, at the dawn of the 18th century, Blackbeard stood out among the lawless rogues as the most fearsome and notorious seafarer of them all. He killed for the reputation, and his reputation has become legend. Now, for the first time, comes the true story of pirate Edward Teach, the man who terrorized the seas.","id":"18365","runtime":169,"imdbId":"tt0472242","version":124,"lastModified":"1301905670000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a44\/4bc952af017a3c57fe024a44\/blackbeard-mid.jpg","studio":"Hallmark Entertainment Distribution","genre":"Action","title":"Blackbeard","releaseDate":1150502400000,"language":"en","type":"Movie","_key":"68234"} +{"label":"Mark Umbers","version":20,"id":"83001","lastModified":"1301901717000","name":"Mark Umbers","type":"Person","_key":"68235"} +{"label":"Anthony Green","version":20,"id":"83003","lastModified":"1301902236000","name":"Anthony Green","type":"Person","_key":"68236"} +{"label":"Bill Fellows","version":20,"id":"83004","lastModified":"1301902454000","name":"Bill Fellows","type":"Person","_key":"68237"} +{"label":"Jasper Britton","version":20,"id":"83005","lastModified":"1301902063000","name":"Jasper Britton","type":"Person","_key":"68238"} +{"label":"Robert Willox","version":18,"id":"83006","lastModified":"1301901862000","name":"Robert Willox","type":"Person","_key":"68239"} +{"label":"Alan Shearman","version":29,"id":"52327","lastModified":"1301902054000","name":"Alan Shearman","type":"Person","_key":"68240"} +{"label":"Niko Nicotera","version":20,"id":"83008","lastModified":"1301902063000","name":"Niko Nicotera","type":"Person","_key":"68241"} +{"label":"C\u00e9libataires","description":"Ben, 35 ans, profite des 30 ans de Karine pour lui faire ce qu'elle n'attendait plus. Sa d\u00e9claration d'amour, la totale : mariage, vie \u00e0 deux, appart', enfants, chien, ou l'inverse. Une petite r\u00e9volution pour Ben, fermement accroch\u00e9 depuis trois ans \u00e0 son ind\u00e9pendance.\nMais il est trop tard, Karine profite de ce d\u00eener anniversaire pour lui annoncer que c'est fini. Pour Ben l'angoisse commence.","id":"18366","runtime":93,"imdbId":"tt0455093","version":43,"lastModified":"1300980564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4d\/4bc952af017a3c57fe024a4d\/celibataires-mid.jpg","studio":"JRT Production","genre":"Comedy","title":"C\u00e9libataires","releaseDate":1141171200000,"language":"en","type":"Movie","_key":"68242"} +{"label":"Cartouche","version":19,"id":"83009","lastModified":"1301902501000","name":"Cartouche","type":"Person","_key":"68243"} +{"label":"Jean-Michel Verner","version":19,"id":"83010","lastModified":"1301902501000","name":"Jean-Michel Verner","type":"Person","_key":"68244"} +{"label":"Nursery Rhymes","description":"No overview found.","id":"18368","runtime":0,"version":96,"lastModified":"1301907341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc952b1017a3c57fe024a5e\/nursery-rhymes-mid.jpg","title":"Nursery Rhymes","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68245"} +{"label":"Jillian Michaels 30 Day Shred","description":"Jillian Michaels winning trainer on NBC's \"The Biggest Loser\" helps you lose big--up to 20 pounds in 30 days! Her 30-Day Shred DVD includes three 20-minute circuit-training workouts that burn mega calories and build strong lean muscle. Each workout is progressively harder so start with the Level 1 and when you are ready progress to Level 2 and then Level 3. Each level contains a 20-minute workout ","id":"18369","runtime":60,"version":62,"lastModified":"1301907260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6b\/4bc952b2017a3c57fe024a6b\/jillian-michaels-30-day-shred-mid.jpg","title":"Jillian Michaels 30 Day Shred","releaseDate":1205798400000,"language":"en","type":"Movie","_key":"68246"} +{"label":"Jedes Jahr im April","description":"No overview found.","id":"18370","runtime":0,"version":36,"lastModified":"1301906147000","title":"Jedes Jahr im April","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68247"} +{"label":"My Tutor Friend","description":"This is a touching story of two completely different students from two completely different worlds. One is a rich male repeating his third year of high school and the other a poor girl in her second year of university struggling to make ends meet.","id":"18371","runtime":110,"imdbId":"tt0348591","version":64,"lastModified":"1302094020000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/157\/4cd54bfc5e73d676ce000157\/donggabnaegi-gwawoehagi-mid.jpg","studio":"CJ Entertainment","genre":"Comedy","title":"My Tutor Friend","releaseDate":1043884800000,"language":"en","type":"Movie","_key":"68248"} +{"label":"Ha-Neul Kim","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b6f\/4d90fad07b9aa16755003b6f\/ha-neul-kim-profile.jpg","version":34,"id":"83012","lastModified":"1301901649000","name":"Ha-Neul Kim","type":"Person","_key":"68249"} +{"label":"Sang-woo Kwone","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/668\/4d39105d7b9aa16149000668\/sang-woo-kwone-profile.jpg","version":23,"id":"83013","lastModified":"1301902501000","name":"Sang-woo Kwone","type":"Person","_key":"68250"} +{"label":"Kyeong-hyeong Kim","version":24,"id":"85037","lastModified":"1301902141000","name":"Kyeong-hyeong Kim","type":"Person","_key":"68251"} +{"label":"Don't Believe Her","description":"Even in this world of distrust, it would be difficult for any man to resist the charms and superb beauty that Yong-ju has in this romantic comedy. But despite her sweet appearance, she is actually an expert con artist. After being released from prison, she encounters her new victim on her way to Pusan on a train: an unsophisticated pharmacist named Hui-chol. First, he is severely beaten after being misunderstood that he sexually harassed her. After the brawl, he finds that his bag is switched wi","id":"18372","runtime":115,"imdbId":"tt0390042","version":52,"lastModified":"1301907192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9e\/4bc952b8017a3c57fe024a9e\/18372-mid.jpg","studio":"Cinema Service","genre":"Comedy","title":"Don't Believe Her","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"68252"} +{"label":"Dong-won Kang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/710\/4d3917fa7b9aa1614b000710\/dong-won-kang-profile.jpg","version":31,"id":"83014","lastModified":"1301902354000","name":"Dong-won Kang","type":"Person","_key":"68253"} +{"label":"Hyeong-jun Bae","version":22,"id":"127791","lastModified":"1301903012000","name":"Hyeong-jun Bae","type":"Person","_key":"68254"} +{"label":"The Family Way","description":"No overview found.","id":"18373","runtime":115,"imdbId":"tt0060395","version":61,"lastModified":"1301908625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa7\/4bc952b8017a3c57fe024aa7\/the-family-way-mid.jpg","studio":"Jambox","genre":"Comedy","title":"The Family Way","releaseDate":-95904000000,"language":"en","type":"Movie","_key":"68255"} +{"label":"My Girlfriend is an Agent","description":"Disguised as a travel agent, \u201cSu-ji\u201d is a government spy with six years\u2019 experience who can\u2019t reveal her career to her boyfriend \u201cJae-joon.\u201d After she lies again, her boyfriend breaks up with her and leaves without notice, leaving her struggling alone with her sadness. Three years later, while chasing an industrial spy in disguise as a cleaning lady, she happens to run into Jae-joon. He\u2019s become an international certified accountant, and seeing him throws her feelings into doubt.Lying is part of","id":"18374","runtime":112,"imdbId":"tt1432078","version":57,"lastModified":"1301906902000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/abc\/4bc952ba017a3c57fe024abc\/7-mid.jpg","genre":"Action","title":"My Girlfriend is an Agent","releaseDate":1240358400000,"language":"en","type":"Movie","_key":"68256"} +{"label":"Ji-Hwan Kang","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b8a\/4d90fb367b9aa1675e003b8a\/ji-hwan-kang-profile.jpg","version":23,"id":"83015","lastModified":"1301902704000","name":"Ji-Hwan Kang","type":"Person","_key":"68257"} +{"label":"Terra Shin","version":22,"id":"83016","lastModified":"1301902507000","name":"Terra Shin","type":"Person","_key":"68258"} +{"label":"A Stranger's Heart","description":"No overview found.","id":"18375","runtime":0,"imdbId":"tt0938291","version":144,"lastModified":"1301906347000","genre":"Drama","title":"A Stranger's Heart","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68259"} +{"label":"Ice Rain","description":"No overview found.","id":"18376","runtime":105,"imdbId":"tt0389805","version":45,"lastModified":"1301417919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac6\/4bc952bb017a3c57fe024ac6\/18376-mid.jpg","title":"Ice Rain","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"68260"} +{"label":"Eun-seok Kim","version":18,"id":"83018","lastModified":"1301902675000","name":"Eun-seok Kim","type":"Person","_key":"68261"} +{"label":"Sung-jae Lee","version":18,"id":"83019","lastModified":"1301902501000","name":"Sung-jae Lee","type":"Person","_key":"68262"} +{"label":"Seung-heon Song","version":22,"id":"83020","lastModified":"1301902478000","name":"Seung-heon Song","type":"Person","_key":"68263"} +{"label":"200 Pounds Beauty","description":"Based on a Japanese manga, \"Kanna-San, Daiseikou Desu,\" this story revolves around Kang Han-na (Kim Ah-jung), an overweight phone sex employee and a secret vocalist for Ammy, a famous Korean pop singer who actually lip syncs as she cannot sing. After getting humilitated publicly by an ungrateful Ammy, Han-na undergoes an extreme makeover to become a pop sensation herself.","id":"18377","runtime":120,"imdbId":"tt0940642","version":90,"lastModified":"1301908277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2f\/4d66cd2b7b9aa12975002e2f\/minyeo-neun-goerowo-mid.jpg","studio":"KM Culture Co.","genre":"Comedy","title":"200 Pounds Beauty","releaseDate":1166054400000,"language":"en","type":"Movie","_key":"68264"} +{"label":"Yong-hwa Kim","version":21,"id":"84969","lastModified":"1301902454000","name":"Yong-hwa Kim","type":"Person","_key":"68265"} +{"label":"Ah-jung Kim","version":21,"id":"84973","lastModified":"1301902454000","name":"Ah-jung Kim","type":"Person","_key":"68266"} +{"label":"Tout est parfait","description":"Josh is an ordinary teen living in an ordinary suburb. One morning he finds his friend's dead body. Next, he discovers that three more friends also have killed themselves, leaving him out of their pact. As the sole survivor, Josh becomes more and more detached from the world around him. It is a modern portrait of today's teens: invincible yet fragile, clear-thinking yet confused...","id":"18379","runtime":118,"imdbId":"tt1043749","version":60,"lastModified":"1301907118000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aee\/4bc952bd017a3c57fe024aee\/tout-est-parfait-mid.jpg","genre":"Drama","title":"Tout est parfait","releaseDate":1204329600000,"language":"en","type":"Movie","_key":"68267"} +{"label":"Babine","description":"As scripted by Quebecois raconteur Fred Pellerin and directed by Luc Picard, this offbeat fantasy comedy details the adventures of Babine (Vincent Guillaume Otis), the son of a witch and a village pariah, as he ventures forth into the world and narrowly evades death.","id":"18380","runtime":110,"imdbId":"tt1275521","homepage":"http:\/\/www.vivafilm.com\/fr\/28\/details\/display\/11919\/","version":70,"lastModified":"1301905262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af7\/4bc952be017a3c57fe024af7\/babine-mid.jpg","genre":"Comedy","title":"Babine","releaseDate":1227830400000,"language":"en","type":"Movie","_key":"68268"} +{"label":"Antoine Bertrand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e01\/4d4e9bb75e73d617bd002e01\/antoine-bertrand-profile.jpg","version":23,"id":"90681","lastModified":"1301902509000","name":"Antoine Bertrand","type":"Person","_key":"68269"} +{"label":"Marie Brassard","version":16,"id":"95950","lastModified":"1301902630000","name":"Marie Brassard","type":"Person","_key":"68270"} +{"label":"Ren\u00e9 Richard Cyr","version":16,"id":"95951","lastModified":"1301902630000","name":"Ren\u00e9 Richard Cyr","type":"Person","_key":"68271"} +{"label":"Maude Laurendeau","version":16,"id":"95952","lastModified":"1301902630000","name":"Maude Laurendeau","type":"Person","_key":"68272"} +{"label":"Alexis Martin","version":20,"id":"95953","lastModified":"1301902561000","name":"Alexis Martin","type":"Person","_key":"68273"} +{"label":"Vincent-Guillaume Otis","version":16,"id":"95954","lastModified":"1301902630000","name":"Vincent-Guillaume Otis","type":"Person","_key":"68274"} +{"label":"Fred Pellerin","version":16,"id":"95955","lastModified":"1301902454000","name":"Fred Pellerin","type":"Person","_key":"68275"} +{"label":"Marie-Chantal Perron","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e2f\/4d4e9f135e73d617b3002e2f\/marie-chantal-perron-profile.jpg","version":22,"id":"90680","lastModified":"1301902682000","name":"Marie-Chantal Perron","type":"Person","_key":"68276"} +{"label":"Luc Picard","version":30,"id":"95956","lastModified":"1301902051000","name":"Luc Picard","type":"Person","_key":"68277"} +{"label":"It's Not Me, I Swear!","description":"L\u00e9on is ten years old, has lots of problems and an overly fertile imagination. Of course, there is mom and dad who are always fighting, and those annoying neighbors who get to spend the summer at the beach. And then, there's L\u00e9a, the exasperating girl who's always right about everything. In the summer of '68, when mom decides to leave everything behind to start a new life in Greece, L\u00e9on is prepared to do anything to kill the pain. Destroy the neighbors' house, become a professional liar and eve","id":"18381","runtime":110,"imdbId":"tt1163752","homepage":"http:\/\/www.cestpasmoijelejure.com","version":116,"lastModified":"1301905147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b08\/4bc952c3017a3c57fe024b08\/c-est-pas-moi-je-le-jure-mid.jpg","genre":"Comedy","title":"It's Not Me, I Swear!","releaseDate":1222387200000,"language":"en","type":"Movie","_key":"68278"} +{"label":"Antoine L'\u00c9cuyer","version":4,"id":"227598","lastModified":"1301904121000","name":"Antoine L'\u00c9cuyer","type":"Person","_key":"68279"} +{"label":"Suzanne Cl\u00e9ment","version":18,"id":"142689","lastModified":"1301902403000","name":"Suzanne Cl\u00e9ment","type":"Person","_key":"68280"} +{"label":"Daniel Bri\u00e8re","version":22,"id":"83182","lastModified":"1301902630000","name":"Daniel Bri\u00e8re","type":"Person","_key":"68281"} +{"label":"Catherine Faucher","version":4,"id":"227599","lastModified":"1301904120000","name":"Catherine Faucher","type":"Person","_key":"68282"} +{"label":"Gabriel Maill\u00e9","version":3,"id":"227600","lastModified":"1299329258000","name":"Gabriel Maill\u00e9","type":"Person","_key":"68283"} +{"label":"Jules Philip","version":3,"id":"227601","lastModified":"1299329274000","name":"Jules Philip","type":"Person","_key":"68284"} +{"label":"Micheline Bernard","version":3,"id":"227602","lastModified":"1299329288000","name":"Micheline Bernard","type":"Person","_key":"68285"} +{"label":"Jean Maheux","version":3,"id":"227603","lastModified":"1299329303000","name":"Jean Maheux","type":"Person","_key":"68286"} +{"label":"Denis Gravereaux","version":3,"id":"227604","lastModified":"1299329320000","name":"Denis Gravereaux","type":"Person","_key":"68287"} +{"label":"Evelyne Rompr\u00e9","version":3,"id":"227605","lastModified":"1299329334000","name":"Evelyne Rompr\u00e9","type":"Person","_key":"68288"} +{"label":"Pascale Desrochers","version":3,"id":"227606","lastModified":"1299329347000","name":"Pascale Desrochers","type":"Person","_key":"68289"} +{"label":"Catherine Proulx-Lemay","version":3,"id":"227607","lastModified":"1299329363000","name":"Catherine Proulx-Lemay","type":"Person","_key":"68290"} +{"label":"Bruno Marcil","version":3,"id":"227608","lastModified":"1299329378000","name":"Bruno Marcil","type":"Person","_key":"68291"} +{"label":"High Octane 3","description":"No overview found.","id":"18382","runtime":0,"imdbId":"tt0368780","version":66,"lastModified":"1301418043000","title":"High Octane 3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68292"} +{"label":"Almost Love","description":"Ji-hwan yet a stunt who's dreaming to be an action star like Jackie Chan and Dalrae who is another actress wannabe have been friends for 11 years. But as Ji-hwan comes dating with a different girl, their relationship starts seesawing between a mere friendship and a love.","id":"18383","runtime":116,"imdbId":"tt0777808","version":89,"lastModified":"1300980567000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0d\/4bc952c3017a3c57fe024b0d\/18383-mid.jpg","studio":"Showbox","genre":"Romance","title":"Almost Love","releaseDate":1143331200000,"language":"en","type":"Movie","_key":"68293"} +{"label":"Han Lee","version":20,"id":"83030","lastModified":"1301902542000","name":"Han Lee","type":"Person","_key":"68294"} +{"label":"Mi-ne Jang","version":18,"id":"83033","lastModified":"1301902501000","name":"Mi-ne Jang","type":"Person","_key":"68295"} +{"label":"Sang-woo Kwone","version":21,"id":"83034","lastModified":"1301901947000","name":"Sang-woo Kwone","type":"Person","_key":"68296"} +{"label":"Speed Scandal","description":"Former teen idol Nam Hyeon-soo is now in his thirties and working as a radio DJ. One day a young woman named Jeong-nam shows up and claims to be his own daughter. She also has a son whom she claims to be Hyeon-soo's grandson. Their relation is proven via DNA tests by Hyeon-soo's brother. This leads to Hyeon-soo attempting to avoid a scandal concerning him having children \"unknown\" to the media.","id":"18384","runtime":108,"imdbId":"tt1360795","version":190,"lastModified":"1301905744000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4c6bf1825e73d65f790002ce\/kwasok-scandle-mid.jpg","genre":"Comedy","title":"Speed Scandal","releaseDate":1228262400000,"language":"en","type":"Movie","_key":"68297"} +{"label":"Bo-yeong Park","version":20,"id":"83036","lastModified":"1301902063000","name":"Bo-yeong Park","type":"Person","_key":"68298"} +{"label":"Hyeong-Cheol Kang","version":20,"id":"84976","lastModified":"1301902454000","name":"Hyeong-Cheol Kang","type":"Person","_key":"68299"} +{"label":"Together","description":"When a violin prodigy Xiaochun and his father head to Beijing seeking fame and fortune, they soon discover a fierce world of cutthroat ambition. But when Xiaochun is \"adopted\" by a famous music tutor, success finally seems within reach - until a shocking discovery begins to unravel his entire world, and the boy must make the most difficult choice of his life. Can he achieve the fame his father had always hoped for without losing the extraordinary passion that sets him apart?","id":"18385","runtime":116,"imdbId":"tt0332639","version":445,"lastModified":"1301907503000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b2f\/4bc952c5017a3c57fe024b2f\/he-ni-zai-yi-qi-mid.jpg","genre":"Drama","title":"Together","releaseDate":1054252800000,"language":"en","type":"Movie","_key":"68300"} +{"label":"Yun Tang","version":22,"id":"125571","lastModified":"1301902904000","name":"Yun Tang","type":"Person","_key":"68301"} +{"label":"Peiqi Liu","version":25,"id":"125572","lastModified":"1301903061000","name":"Peiqi Liu","type":"Person","_key":"68302"} +{"label":"Hye-ri Kim","version":22,"id":"125573","lastModified":"1301902904000","name":"Hye-ri Kim","type":"Person","_key":"68303"} +{"label":"Big Wednesday","description":"'Big Wednesday' is a gentle rites-of-passage movie that covers many years in the lives of three friends as they grow up but never entirely grow apart. Both touching and humorous, the film authentically recreates the spirit of 60s and 70s America, looking at the big issues of the time through the eyes of three ordinary young men.","id":"18387","runtime":120,"imdbId":"tt0077235","version":94,"lastModified":"1301903965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b38\/4bc952c5017a3c57fe024b38\/big-wednesday-mid.jpg","genre":"Drama","title":"Big Wednesday","releaseDate":252460800000,"language":"en","type":"Movie","_key":"68304"} +{"label":"Jan-Michael Vincent","version":35,"id":"83037","lastModified":"1301901659000","name":"Jan-Michael Vincent","type":"Person","_key":"68305"} +{"label":"Lee Purcell","version":25,"id":"41246","lastModified":"1301901717000","name":"Lee Purcell","type":"Person","_key":"68306"} +{"label":"The Lighthorsemen","description":"Palestine, 1917. The British advance has been stopped by the Turkish line running from Gaza to Beersheba. The latest attack on Gaza has failed. The attacking forces included a regiment of Australian mounted infantry, the Light Horse... Lighthorseman Frank is wounded in a skirmish with Bedouin. He is replaced by a young soldier, Dave, who proves to be a crack shot, but reluctant to fire at the enemy. Dave proves himself during a German biplane attack. Recuperating in hospital, he meets a sympathe","id":"18389","runtime":131,"imdbId":"tt0093416","version":85,"lastModified":"1301904649000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b41\/4bc952c6017a3c57fe024b41\/the-lighthorsemen-mid.jpg","studio":"The Australian Film Commission","genre":"History","title":"The Lighthorsemen","releaseDate":576460800000,"language":"en","tagline":"They did what they were told... They didn't know it was impossible!","type":"Movie","_key":"68307"} +{"label":"Nick Waters","version":22,"id":"119142","lastModified":"1301902122000","name":"Nick Waters","type":"Person","_key":"68308"} +{"label":"John Larking","version":18,"id":"131068","lastModified":"1301902428000","name":"John Larking","type":"Person","_key":"68309"} +{"label":"John Haywood","version":18,"id":"131069","lastModified":"1301902406000","name":"John Haywood","type":"Person","_key":"68310"} +{"label":"Di O'Connor","version":18,"id":"138813","lastModified":"1301903079000","name":"Di O'Connor","type":"Person","_key":"68311"} +{"label":"Simon Wincer","version":22,"id":"123735","lastModified":"1301902217000","name":"Simon Wincer","type":"Person","_key":"68312"} +{"label":"Easy Money","description":"To inherit his mother-in-law's colossal fortune, a hard living, gambling addict must change his unhealthy ways before it gets the best of him.","id":"18391","runtime":95,"imdbId":"tt0085470","version":271,"lastModified":"1302024533000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7ee\/4be30efb017a3c35b70007ee\/easy-money-mid.jpg","studio":"Orion Pictures Corporation","genre":"Comedy","title":"Easy Money","releaseDate":430099200000,"language":"en","tagline":"No cheating! No gambling! No booze! No smoking! No pizza! No nothin'! We are taking all the fun out of life... and putting it into a movie!","type":"Movie","_key":"68313"} +{"label":"Lili Haydn","version":21,"id":"119233","lastModified":"1301902884000","name":"Lili Haydn","type":"Person","_key":"68314"} +{"label":"Embrace of the Vampire","description":"An 18-year-old college freshman is seduced by a handsome vampire lover who introduce her to a dark world of carnal desires.","id":"18392","runtime":92,"imdbId":"tt0109723","version":80,"lastModified":"1301902727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b53\/4bc952c7017a3c57fe024b53\/embrace-of-the-vampire-mid.jpg","genre":"Horror","title":"Embrace of the Vampire","releaseDate":788918400000,"language":"en","type":"Movie","_key":"68315"} +{"label":"Martin Kemp","version":25,"id":"47652","lastModified":"1301901646000","name":"Martin Kemp","type":"Person","_key":"68316"} +{"label":"Harold Pruett","version":16,"id":"94286","lastModified":"1301902063000","name":"Harold Pruett","type":"Person","_key":"68317"} +{"label":"Essex Boys","description":"The film is based loosely around events in December 1995 that culminated in the murders of three drug dealers in Rettendon, Essex, UK. On 6th December Patrick Tate, Craig Rolfe and Tony Tucker, three drug dealers well known to the police, were lured to Workhouse Lane, Rettendon. There they were blasted to death with a shot gun while sitting in their Range Rover. They had been lured to their deaths on the pretext of a lucrative drugs deal. The three bodies were found the following morning, Decemb","id":"18394","runtime":102,"imdbId":"tt0191996","version":119,"lastModified":"1301905369000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3df\/4c6cb2745e73d65f7c0003df\/essex-boys-mid.jpg","studio":"Granada Film Productions","genre":"Action","title":"Essex Boys","releaseDate":963532800000,"language":"en","tagline":"Some lines should never be crossed.","type":"Movie","_key":"68318"} +{"label":"Alex Kingston","version":27,"id":"83701","lastModified":"1301901947000","name":"Alex Kingston","type":"Person","_key":"68319"} +{"label":"Gareth Milne","version":16,"id":"136037","lastModified":"1301902678000","name":"Gareth Milne","type":"Person","_key":"68320"} +{"label":"Amelia Lowdell","version":16,"id":"136038","lastModified":"1301902589000","name":"Amelia Lowdell","type":"Person","_key":"68321"} +{"label":"Larry Lamb","version":16,"id":"136039","lastModified":"1301902565000","name":"Larry Lamb","type":"Person","_key":"68322"} +{"label":"Michael McKell","version":16,"id":"136040","lastModified":"1301902560000","name":"Michael McKell","type":"Person","_key":"68323"} +{"label":"Sally Hurst","version":17,"id":"136041","lastModified":"1301902688000","name":"Sally Hurst","type":"Person","_key":"68324"} +{"label":"Louise Landon","version":17,"id":"136042","lastModified":"1301902703000","name":"Louise Landon","type":"Person","_key":"68325"} +{"label":"Gary Love","version":21,"id":"87418","lastModified":"1301902623000","name":"Gary Love","type":"Person","_key":"68326"} +{"label":"Michael Andrew","version":17,"id":"136043","lastModified":"1301902696000","name":"Michael Andrew","type":"Person","_key":"68327"} +{"label":"Philip Howard","version":16,"id":"136044","lastModified":"1301902601000","name":"Philip Howard","type":"Person","_key":"68328"} +{"label":"Terry Winsor","version":20,"id":"129119","lastModified":"1301902213000","name":"Terry Winsor","type":"Person","_key":"68329"} +{"label":"Exit to Eden","description":"Elliot is going to the island of Eden to live out his submissive fantasies, but inadvertently photographs diamond smugglers at work. Smugglers, and detectives, follow him to the island, where they try to retrieve the film. Elliot begins falling in love with Lisa, the head mistress of the island, and Lisa must evaluate her feelings about Elliot and her own motivations.","id":"18395","runtime":113,"imdbId":"tt0109758","version":110,"lastModified":"1302118501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78a\/4d1f7bbe5e73d66b3400178a\/exit-to-eden-mid.jpg","genre":"Comedy","title":"Exit to Eden","releaseDate":805075200000,"language":"en","type":"Movie","_key":"68330"} +{"label":"Fall Down Dead","description":"No overview found.","id":"18397","runtime":93,"imdbId":"tt0834539","homepage":"http:\/\/falldowndead.newfilmsint.com\/","version":52,"lastModified":"1301903474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b78\/4bc952cd017a3c57fe024b78\/fall-down-dead-mid.jpg","studio":"Highland Myst Entertainment","genre":"Horror","title":"Fall Down Dead","releaseDate":1170892800000,"language":"en","type":"Movie","_key":"68331"} +{"label":"Suddenly","description":"The tranquility of a small town is marred only by sheriff Tod Shaw's unsuccessful courtship of widow Ellen Benson, a pacifist who can't abide guns and those who use them. But violence descends on Ellen's household willy-nilly when the U.S. President passes through town... and slightly psycho hired assassin John Baron finds the Benson home ideal for an ambush.","id":"18398","runtime":75,"imdbId":"tt0047542","version":184,"lastModified":"1301908312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7d\/4bc952ce017a3c57fe024b7d\/suddenly-mid.jpg","genre":"Drama","title":"Suddenly","releaseDate":-480816000000,"language":"en","type":"Movie","_key":"68332"} +{"label":"Lewis Allen","version":25,"id":"93975","lastModified":"1301902386000","name":"Lewis Allen","type":"Person","_key":"68333"} +{"label":"Ch\u00eemu bachisuta no eik\u00f4","description":"No overview found.","id":"18399","runtime":0,"imdbId":"tt1167825","version":28,"lastModified":"1301418761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc952ce017a3c57fe024b82\/18399-mid.jpg","title":"Ch\u00eemu bachisuta no eik\u00f4","releaseDate":1202515200000,"language":"en","type":"Movie","_key":"68334"} +{"label":"Hello Goodbye","description":"No overview found.","id":"18400","runtime":99,"imdbId":"tt1160012","version":594,"lastModified":"1301905633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b93\/4bc952cf017a3c57fe024b93\/hello-goodbye-mid.jpg","genre":"Comedy","title":"Hello Goodbye","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68335"} +{"label":"Something to Talk About","description":"In one of her best-ever roles, Julia Roberts is Grace, whose reaction to the infidelities of Eddie (Dennis Quaid) turns the lives and loves of the people around her into something like falling dominoes. Robert Duvall, Gena Rowlands, Kyra Sedgwick and others in \"the year's best ensemble of characters\" (Jack Matthews, 'Newsday') co-star in this juicy, truthful story written by Callie Khouri","id":"18402","runtime":106,"imdbId":"tt0114496","version":118,"lastModified":"1301904697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9c\/4bc952d0017a3c57fe024b9c\/something-to-talk-about-mid.jpg","genre":"Comedy","title":"Something to Talk About","releaseDate":797299200000,"language":"en","type":"Movie","_key":"68336"} +{"label":"The Babe","description":"No overview found.","id":"18403","runtime":115,"imdbId":"tt0103747","version":111,"lastModified":"1301904610000","genre":"Drama","title":"The Babe","releaseDate":703468800000,"language":"en","type":"Movie","_key":"68337"} +{"label":"Cattle Call","description":"A guy starts a fake casting agency in hopes that he will meet his soul mate.","id":"18404","runtime":83,"imdbId":"tt0398839","version":130,"lastModified":"1301904874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ec\/4d5341395e73d617b30054ec\/cattle-call-mid.jpg","genre":"Comedy","title":"Cattle Call","releaseDate":1210636800000,"language":"en","type":"Movie","_key":"68338"} +{"label":"Martin Guigui","version":18,"id":"146801","lastModified":"1301902698000","name":"Martin Guigui","type":"Person","_key":"68339"} +{"label":"The Last House on the Left","description":"Last House on the Left follows a group of teenage girls heading into the city when they hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge. ","id":"18405","runtime":110,"imdbId":"tt0844708","trailer":"http:\/\/www.youtube.com\/watch?v=SqXnowJjfDc","homepage":"http:\/\/www.thelasthouseontheleft.com\/","version":298,"lastModified":"1301902340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/409\/4d8444b95e73d653aa001409\/the-last-house-on-the-left-mid.jpg","studio":"Rogue Pictures","genre":"Crime","title":"The Last House on the Left","releaseDate":1236902400000,"language":"en","tagline":"If bad people hurt someone you love, how far would you go to hurt them back?","type":"Movie","_key":"68340"} +{"label":"Aaron Paul","version":27,"id":"84497","lastModified":"1301901809000","name":"Aaron Paul","type":"Person","_key":"68341"} +{"label":"Dennis Iliadis","version":21,"id":"94108","lastModified":"1301902236000","name":"Dennis Iliadis","type":"Person","_key":"68342"} +{"label":"Chained Heat","description":"No overview found.","id":"18406","runtime":99,"imdbId":"tt0085318","version":67,"lastModified":"1301906598000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03b\/4c1a40227b9aa1158100003b\/chained-heat-mid.jpg","genre":"Action","title":"Chained Heat","releaseDate":422841600000,"language":"en","tagline":"What these women did to get into prison, is nothing compared to what they'll do to get out.","type":"Movie","_key":"68343"} +{"label":"Paul Nicholas","version":21,"id":"122913","lastModified":"1301902721000","name":"Paul Nicholas","type":"Person","_key":"68344"} +{"label":"Cherish (2002)","description":"After a martini-induced rampage, a fantasy-prone young woman is placed under house arrest.","id":"18408","runtime":99,"imdbId":"tt0298798","version":86,"lastModified":"1301905399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4bc952d8017a3c57fe024be8\/cherish-2002-mid.jpg","title":"Cherish (2002)","releaseDate":1011225600000,"language":"en","type":"Movie","_key":"68345"} +{"label":"L'incomparable mademoiselle C","description":"No overview found.","id":"18409","runtime":105,"imdbId":"tt0385779","version":43,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c01\/4bc952da017a3c57fe024c01\/l-incomparable-mademoiselle-c-mid.jpg","title":"L'incomparable mademoiselle C","releaseDate":1082678400000,"language":"en","type":"Movie","_key":"68346"} +{"label":"Project X","description":"A young inductee into the military is given the task of looking after some chimpanzees used in the mysterious \"Project X\". Getting to know the chimps fairly well, he begins to suspect there is more to the secret project than he is being told.","id":"18410","runtime":108,"imdbId":"tt0093793","trailer":"http:\/\/www.youtube.com\/watch?v=YE9vPWswOog","version":99,"lastModified":"1301907191000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0a\/4bc952db017a3c57fe024c0a\/project-x-mid.jpg","studio":"20th Century Fox","genre":"Action","title":"Project X","releaseDate":545616000000,"language":"en","tagline":"When the Air Force assigned Jimmy Garrett to a top secret project, he didn't know what he was in for. Neither did they.","type":"Movie","_key":"68347"} +{"label":"Willie","version":19,"id":"90544","lastModified":"1301902180000","name":"Willie","type":"Person","_key":"68348"} +{"label":"Bat Thumb","description":"Super hero Wuce Bane (a.k.a. Bat Thumb) and his trusty sidekick, Blue Jay, are called upon to save Gaaathumb City from the evil, despicable, and poorly dressed \"No Face.\" Will the city survive? Will Bat Thumb's true identity be revealed? Will Vicky Nail learn to control her unruly waves? Find out the answers to all these questions in this latest comic adventure from master storyteller Steve O.","id":"18411","runtime":25,"imdbId":"tt0331189","trailer":"http:\/\/www.youtube.com\/watch?v=1210","version":119,"lastModified":"1301908635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0f\/4bc952db017a3c57fe024c0f\/bat-thumb-mid.jpg","genre":"Action","title":"Bat Thumb","releaseDate":994636800000,"language":"en","type":"Movie","_key":"68349"} +{"label":"Beyond Hatred","description":"In this deeply moving, award-winning French documentary, a family reflects on the murder of their 29-year-old son and tries to move beyond feelings of hatred and revenge.","id":"18412","runtime":86,"imdbId":"tt0783665","version":85,"lastModified":"1301907434000","genre":"Documentary","title":"Beyond Hatred","releaseDate":1119139200000,"language":"en","type":"Movie","_key":"68350"} +{"label":"The Blair Thumb","description":"A trio of eager and intrepid college student filmmakers venture into the woods to make a documentary about the legendary Blair Thumb. Naturally, they get hopelessly lost and find themselves in considerable jeopardy.","id":"18413","runtime":28,"imdbId":"tt0309369","version":72,"lastModified":"1301416628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b67\/4d6233ab5e73d60c5a003b67\/the-blair-thumb-mid.jpg","studio":"Thumb Studios","genre":"Comedy","title":"The Blair Thumb","releaseDate":1009929600000,"language":"en","type":"Movie","_key":"68351"} +{"label":"Kids in the Hall Brain candy","description":"A pharmaceutical scientist creates a pill that makes people remember their happiest memory, and although it's successful, it has unfortunate side effects.","id":"18414","runtime":89,"imdbId":"tt0116768","version":132,"lastModified":"1301906626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c25\/4bc952dc017a3c57fe024c25\/kids-in-the-hall-brain-candy-mid.jpg","genre":"Comedy","title":"Kids in the Hall Brain candy","releaseDate":828403200000,"language":"en","type":"Movie","_key":"68352"} +{"label":"Gummo","description":"Solomon and Tummler are two teenagers killing time in Xenia, Ohio, a small town that has never recovered from the tornado that ravaged the community in the 1970s.","id":"18415","runtime":89,"imdbId":"tt0119237","trailer":"http:\/\/www.youtube.com\/watch?v=HvXSDfC7PLc","homepage":"http:\/\/www.harmony-korine.com\/paper\/index\/i_gummo.html","version":135,"lastModified":"1301904645000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3e\/4bc952e0017a3c57fe024c3e\/gummo-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"Gummo","releaseDate":877046400000,"language":"en","type":"Movie","_key":"68353"} +{"label":"Jacob Sewell","version":19,"id":"83050","lastModified":"1301902454000","name":"Jacob Sewell","type":"Person","_key":"68354"} +{"label":"Darby Dougherty","version":40,"id":"143310","lastModified":"1301902050000","name":"Darby Dougherty","type":"Person","_key":"68355"} +{"label":"James Lawhorn","version":45,"id":"143311","lastModified":"1301902216000","name":"James Lawhorn","type":"Person","_key":"68356"} +{"label":"The Other Sister","description":"A mentally retarded girl proves herself to be every bit as capable as her \"perfect\" sister when she moves into an apartment and begins going to college.","id":"18417","runtime":130,"imdbId":"tt0123209","version":146,"lastModified":"1301907397000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c59\/4bc952e4017a3c57fe024c59\/the-other-sister-mid.jpg","studio":"Mandeville Films","genre":"Drama","title":"The Other Sister","releaseDate":919987200000,"language":"en","type":"Movie","_key":"68357"} +{"label":"Linda Thorson","version":21,"id":"83052","lastModified":"1301902529000","name":"Linda Thorson","type":"Person","_key":"68358"} +{"label":"Hope Alexander-Willis","version":20,"id":"83053","lastModified":"1301902725000","name":"Hope Alexander-Willis","type":"Person","_key":"68359"} +{"label":"Almayvonne","version":18,"id":"83055","lastModified":"1301902714000","name":"Almayvonne","type":"Person","_key":"68360"} +{"label":"Marvin Braverman","version":20,"id":"83056","lastModified":"1301902533000","name":"Marvin Braverman","type":"Person","_key":"68361"} +{"label":"Jamie Marshall","version":20,"id":"83069","lastModified":"1301902332000","name":"Jamie Marshall","type":"Person","_key":"68362"} +{"label":"Ellen H. Schwartz","version":32,"id":"38416","lastModified":"1301901665000","name":"Ellen H. Schwartz","type":"Person","_key":"68363"} +{"label":"David H. Venghaus Jr.","version":20,"id":"83071","lastModified":"1301902332000","name":"David H. Venghaus Jr.","type":"Person","_key":"68364"} +{"label":"3 z\u00e9ros","description":"A Fleury-M\u00e9rogis, un match de foot a lieu dans la cour de prison. Tibor Kovacs, un jeune Hongrois, fait des prodiges avec le ballon. V\u00e9ritable virtuose du football, il r\u00eave de jouer en \u00e9quipe de France. Pour Manu, son compagnon de cellule, Tibor est un cadeau du ciel.\nA la veille de leur sortie de prison, les deux comp\u00e8res d\u00e9cident d'unir leurs destins : Tibor deviendra le plus grand joueur du mon","id":"18419","runtime":97,"imdbId":"tt0295736","version":52,"lastModified":"1301906052000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c66\/4bc952e5017a3c57fe024c66\/3-zeros-mid.jpg","studio":"Bac Films","genre":"Comedy","title":"3 z\u00e9ros","releaseDate":1019606400000,"language":"en","type":"Movie","_key":"68365"} +{"label":"City of Industry","description":"No overview found.","id":"18420","runtime":97,"imdbId":"tt0118859","homepage":"http:\/\/www.orionpictures.com\/cityofindustry\/","version":87,"lastModified":"1301905535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6b\/4bc952e6017a3c57fe024c6b\/city-of-industry-mid.jpg","genre":"Action","title":"City of Industry","releaseDate":867974400000,"language":"en","type":"Movie","_key":"68366"} +{"label":"Climates","description":"Man was made to be happy for simple reasons and unhappy for even simpler ones \u2013 just as he is born for simple reasons and dies for even simpler ones... Isa and Bahar are two lonely figures dragged through the ever-changing climate of their inner selves in pursuit of a happiness that no longer belongs to them.","id":"18421","runtime":101,"imdbId":"tt0498097","homepage":"http:\/\/www.climatesmovie.com\/","version":76,"lastModified":"1301908418000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c70\/4bc952e7017a3c57fe024c70\/iklimler-mid.jpg","title":"Climates","releaseDate":1170979200000,"language":"en","type":"Movie","_key":"68367"} +{"label":"Sad Movie","description":"No overview found.","id":"18422","runtime":108,"imdbId":"tt0475711","version":129,"lastModified":"1301907149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/694\/4ceb013e5e73d6258f000694\/saedeu-mubi-mid.jpg","title":"Sad Movie","releaseDate":1129766400000,"language":"en","type":"Movie","_key":"68368"} +{"label":"B.A.P.S.","description":"Can two clueless Georgia homegirls with big hearts -- and even bigger hair -- find happiness, fame and thrills in the swank hills of Beverly? Anything is possible when you are B.A.P.'s. They revive Blakemore's interest for life, and he teaches them to be \"Black American Princesses\" in return.","id":"18423","runtime":90,"imdbId":"tt0118663","version":143,"lastModified":"1301907575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c88\/4bc952eb017a3c57fe024c88\/b-a-p-s-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"B.A.P.S.","releaseDate":859507200000,"language":"en","type":"Movie","_key":"68369"} +{"label":"Natalie Desselle","version":19,"id":"83099","lastModified":"1301902063000","name":"Natalie Desselle","type":"Person","_key":"68370"} +{"label":"Jonathan Fried","version":17,"id":"83100","lastModified":"1301902630000","name":"Jonathan Fried","type":"Person","_key":"68371"} +{"label":"Darrel Heath","version":19,"id":"83102","lastModified":"1301902630000","name":"Darrel Heath","type":"Person","_key":"68372"} +{"label":"Vince Cooke","version":19,"id":"83103","lastModified":"1301902630000","name":"Vince Cooke","type":"Person","_key":"68373"} +{"label":"Debra Wilson","version":20,"id":"83105","lastModified":"1301902630000","name":"Debra Wilson","type":"Person","_key":"68374"} +{"label":"Robin Van Sharner","version":19,"id":"83106","lastModified":"1301902630000","name":"Robin Van Sharner","type":"Person","_key":"68375"} +{"label":"Jessica Page","version":19,"id":"83107","lastModified":"1301902630000","name":"Jessica Page","type":"Person","_key":"68376"} +{"label":"Eric Poppick","version":19,"id":"83109","lastModified":"1301902630000","name":"Eric Poppick","type":"Person","_key":"68377"} +{"label":"Downtown Julie Brown","version":20,"id":"83110","lastModified":"1301902630000","name":"Downtown Julie Brown","type":"Person","_key":"68378"} +{"label":"Howard Hewett","version":19,"id":"83111","lastModified":"1301902630000","name":"Howard Hewett","type":"Person","_key":"68379"} +{"label":"Jolane Lentz","version":19,"id":"83113","lastModified":"1301902630000","name":"Jolane Lentz","type":"Person","_key":"68380"} +{"label":"Sam Sako","version":19,"id":"83114","lastModified":"1301902630000","name":"Sam Sako","type":"Person","_key":"68381"} +{"label":"Barry Sobel","version":19,"id":"83115","lastModified":"1301902630000","name":"Barry Sobel","type":"Person","_key":"68382"} +{"label":"Cloud 9","description":"Has-been sports promoter Billy Cole gets a second shot at fame and fortune when he puts together a women's volleyball team, comprised of exotic dancers...","id":"18424","runtime":93,"imdbId":"tt0403946","version":138,"lastModified":"1301906616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/432\/4c596b6f5e73d63a70000432\/cloud-9-mid.jpg","genre":"Comedy","title":"Cloud 9","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"68383"} +{"label":"Clubland","description":"The shy son of an aging comedienne tries to find a balance between his demanding home life, his new girlfriend, and his mother's second chance at fame.","id":"18425","runtime":105,"imdbId":"tt0432264","version":82,"lastModified":"1301903476000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8d\/4bc952ec017a3c57fe024c8d\/clubland-mid.jpg","genre":"Comedy","title":"Clubland","releaseDate":1186099200000,"language":"en","type":"Movie","_key":"68384"} +{"label":"Rebecca Gibney","version":21,"id":"95266","lastModified":"1301902141000","name":"Rebecca Gibney","type":"Person","_key":"68385"} +{"label":"Cherie Nowlan","version":22,"id":"118471","lastModified":"1301901813000","name":"Cherie Nowlan","type":"Person","_key":"68386"} +{"label":"Daisy","description":"\"Daisy\" is a story about the inevitable showdown between a detective and a killer who fall in love with the same woman. In the story, Jeon plays a street artist who dreams of opening her own exhibition someday, while Jeong portrays a killer who loves her but cannot confess his love to her because of his profession.","id":"18426","runtime":110,"imdbId":"tt0468704","trailer":"http:\/\/www.youtube.com\/watch?v=ks3vY9Xz098","version":133,"lastModified":"1302093343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e86\/4d12f02c7b9aa1148e000e86\/daisy-mid.jpg","genre":"Drama","title":"Daisy","releaseDate":1141862400000,"language":"en","type":"Movie","_key":"68387"} +{"label":"Wai Keung Lau","version":15,"id":"145303","lastModified":"1301902685000","name":"Wai Keung Lau","type":"Person","_key":"68388"} +{"label":"Cold Heart Canyon","description":"No overview found.","id":"18427","runtime":96,"imdbId":"tt1118043","version":114,"lastModified":"1301907113000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/184\/4bdb9f0b017a3c5d93000184\/cold-heart-canyon-mid.jpg","title":"Cold Heart Canyon","releaseDate":1214870400000,"language":"en","tagline":"Love can be the ultimate deception","type":"Movie","_key":"68389"} +{"label":"Janine Gosselin","version":17,"id":"117082","lastModified":"1301902539000","name":"Janine Gosselin","type":"Person","_key":"68390"} +{"label":"Confess","description":"political thriller that charts the exploits of disillusioned ex-hacker Terell Lessor. A return to New York, coupled with a humiliating attempt at getting a new job, serves as the catalyst for him to take action against those who slighted him in the past. Employing strategically placed spy-cams, and operating in tandem with backer, strategist and lover Olivia, he captures compromising footage and broadcasts the edited clips via a newly-minted website. Recognizing the power of their model, the two","id":"18428","runtime":90,"imdbId":"tt0391877","version":269,"lastModified":"1301908312000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01a\/4cdda4cc5e73d60e0b00001a\/confess-mid.jpg","genre":"Action","title":"Confess","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"68391"} +{"label":"Stefan C. Schaefer","version":6,"id":"227945","lastModified":"1301904054000","name":"Stefan C. Schaefer","type":"Person","_key":"68392"} +{"label":"Consignment","description":"No overview found.","id":"18429","runtime":87,"imdbId":"tt1105270","version":60,"lastModified":"1301906525000","genre":"Action","title":"Consignment","releaseDate":1194912000000,"language":"en","type":"Movie","_key":"68393"} +{"label":"Forever the Moment","description":"Korea and Denmark had shared four Olympic titles for women\u2019s handball from 1988 to 2000, with the Danes winning the latter two. The two dueling teams met again as finalists in 2004, and the pulsating game continued long and hard with a tie score leading to two killer overtimes and a penalty throw showdown.Korea lost, but won what many call a silver medal that shines more brightly than the gold. At the time, Korean women\u2019s handball was at its worst state ever, and players who should have been ret","id":"18431","runtime":124,"imdbId":"tt1232162","version":241,"lastModified":"1300980575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca3\/4bc952f0017a3c57fe024ca3\/18431-mid.jpg","genre":"Drama","title":"Forever the Moment","language":"en","type":"Movie","_key":"68394"} +{"label":"So-ri Moon","version":21,"id":"83122","lastModified":"1301902215000","name":"So-ri Moon","type":"Person","_key":"68395"} +{"label":"Jeong-eun Kim","version":21,"id":"83123","lastModified":"1301902033000","name":"Jeong-eun Kim","type":"Person","_key":"68396"} +{"label":"Soonrye Yim","version":21,"id":"120643","lastModified":"1301902543000","name":"Soonrye Yim","type":"Person","_key":"68397"} +{"label":"Corporate Affairs","description":"A family man (Meyer) recent promoted to middle management at work immerses himself in a world of questionable personal and professional ethics by a colleague (Scott). ","id":"18432","runtime":98,"imdbId":"tt0494279","version":77,"lastModified":"1301905637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21a\/4c86ace65e73d66b5e00021a\/corporate-affairs-mid.jpg","title":"Corporate Affairs","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"68398"} +{"label":"Dan Cohen","version":18,"id":"95187","lastModified":"1301902496000","name":"Dan Cohen","type":"Person","_key":"68399"} +{"label":"Adrian Martinez","version":21,"id":"94432","lastModified":"1301901603000","name":"Adrian Martinez","type":"Person","_key":"68400"} +{"label":"Crazy","description":"No overview found.","id":"18434","runtime":106,"imdbId":"tt0443474","version":373,"lastModified":"1301906262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb4\/4bc952f2017a3c57fe024cb4\/crazy-mid.jpg","genre":"Drama","title":"Crazy","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"68401"} +{"label":"Crush","description":"Three 40-something women in a small English town meet weekly for a ritual of gin, cigarettes, and sweets -- and swapped stories arguing which of them has the most pathetic love life. Kate is headmistress at the local school; her best friends are the town's police chief and a cynical, thrice-divorced doctor.","id":"18435","runtime":112,"imdbId":"tt0245407","homepage":"http:\/\/www.sonyclassics.com\/crush\/","version":110,"lastModified":"1301421015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb9\/4bc952f2017a3c57fe024cb9\/crush-mid.jpg","genre":"Comedy","title":"Crush","releaseDate":1023408000000,"language":"en","type":"Movie","_key":"68402"} +{"label":"John McKay","version":18,"id":"110169","lastModified":"1301902536000","name":"John McKay","type":"Person","_key":"68403"} +{"label":"Dangerous Parking","description":"No overview found.","id":"18436","runtime":110,"imdbId":"tt0417586","version":77,"lastModified":"1301908367000","genre":"Drama","title":"Dangerous Parking","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"68404"} +{"label":"The Darwin Awards","description":"Based on four best-selling non-fiction books of over 700 Darwin Award cases, The Darwin Awards takes a darkly comic view at the people who risk their lives pursuing a crazy idea... only to end up improving the human race by removing themselves from the gene pool and thus earning a 'Darwin' award. ","id":"18437","runtime":94,"imdbId":"tt0428446","version":143,"lastModified":"1301905401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cca\/4bc952f4017a3c57fe024cca\/the-darwin-awards-mid.jpg","genre":"Comedy","title":"The Darwin Awards","releaseDate":1152057600000,"language":"en","type":"Movie","_key":"68405"} +{"label":"Finn Taylor","version":21,"id":"84692","lastModified":"1301902063000","name":"Finn Taylor","type":"Person","_key":"68406"} +{"label":"Castaway on the Moon","description":"Mr. Kim is jobless, lost in debt and has been dumped by his girlfriend. He decides to end it all by jumping into the Han River - only to find himself washed up on a small, mid-river island. He soon abandons thoughts of suicide or rescue and begins a new life as a castaway. His antics catch the attention of a young woman whose apartment overlooks the river. Her discovery changes both their lives.","id":"18438","runtime":116,"imdbId":"tt1499666","version":101,"lastModified":"1302151574000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d2\/4c8ced237b9aa167470002d2\/kimssi-pyoryugi-mid.jpg","genre":"Drama","title":"Castaway on the Moon","releaseDate":1242259200000,"language":"en","type":"Movie","_key":"68407"} +{"label":"Ryeo-won Jeong","version":19,"id":"108535","lastModified":"1301902063000","name":"Ryeo-won Jeong","type":"Person","_key":"68408"} +{"label":"Hae-jun Lee","version":19,"id":"108536","lastModified":"1301902236000","name":"Hae-jun Lee","type":"Person","_key":"68409"} +{"label":"Days of Darkness","description":"The world watches as a comet looms over the earth for days. The masses were told there is nothing to worry about...","id":"18440","runtime":89,"imdbId":"tt0499456","homepage":"http:\/\/www.daysofdarknessthemovie.com\/","version":368,"lastModified":"1301418316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ab\/4c99164b7b9aa127580001ab\/days-of-darkness-mid.jpg","genre":"Action","title":"Days of Darkness","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68410"} +{"label":"Sabrina Gennarino","version":19,"id":"133386","lastModified":"1301902591000","name":"Sabrina Gennarino","type":"Person","_key":"68411"} +{"label":"Tom Eplin","version":19,"id":"133387","lastModified":"1301902637000","name":"Tom Eplin","type":"Person","_key":"68412"} +{"label":"Jake Kennedy","version":19,"id":"105976","lastModified":"1301902771000","name":"Jake Kennedy","type":"Person","_key":"68413"} +{"label":"Death of a Ghost Hunter","description":"Renowned \"ghost hunter\", Carter Simms is paid to conduct a paranormal investigation of a supposedly haunted house. Along with a cameraman, a reporter, and a spiritual advocate, she embarks on a three night journey into terror.","id":"18441","runtime":107,"imdbId":"tt1160317","version":154,"lastModified":"1302124900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86b\/4c64e5dc7b9aa172de00086b\/death-of-a-ghost-hunter-mid.jpg","studio":"Ominous Productions","genre":"Horror","title":"Death of a Ghost Hunter","releaseDate":1193529600000,"language":"en","type":"Movie","_key":"68414"} +{"label":"Mike Marsh","version":20,"id":"128949","lastModified":"1302124766000","name":"Mike Marsh","type":"Person","_key":"68415"} +{"label":"Davina Joy","version":19,"id":"128950","lastModified":"1302124056000","name":"Davina Joy","type":"Person","_key":"68416"} +{"label":"Lindsay Page","version":19,"id":"128951","lastModified":"1302124056000","name":"Lindsay Page","type":"Person","_key":"68417"} +{"label":"Patti Tindall","version":19,"id":"128952","lastModified":"1302124056000","name":"Patti Tindall","type":"Person","_key":"68418"} +{"label":"Sean Tretta","version":3,"id":"232229","lastModified":"1302124738000","name":"Sean Tretta","type":"Person","_key":"68419"} +{"label":"Decoys","description":"Luke and Roger are just another couple of college guys trying to lose their virginity. But when Luke sees something unusual, he begins to suspect that the girls on campus aren't exactly...human.","id":"18442","runtime":95,"imdbId":"tt0357585","version":135,"lastModified":"1301904341000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce1\/4bc952f5017a3c57fe024ce1\/decoys-mid.jpg","studio":"T\u00e9l\u00e9film Canada","genre":"Horror","title":"Decoys","releaseDate":1077840000000,"language":"en","tagline":"They can seduce anyone... Prey it isn't you!","type":"Movie","_key":"68420"} +{"label":"Ennis Esmer","version":18,"id":"101251","lastModified":"1301902709000","name":"Ennis Esmer","type":"Person","_key":"68421"} +{"label":"Krista Morin","version":18,"id":"101252","lastModified":"1301902704000","name":"Krista Morin","type":"Person","_key":"68422"} +{"label":"Marc Trottier","version":19,"id":"101253","lastModified":"1301902709000","name":"Marc Trottier","type":"Person","_key":"68423"} +{"label":"Carrie Colak","version":18,"id":"101254","lastModified":"1301902707000","name":"Carrie Colak","type":"Person","_key":"68424"} +{"label":"Decoys 2: Alien Seduction","description":"No overview found.","id":"18443","runtime":94,"imdbId":"tt0400347","version":152,"lastModified":"1301417558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cea\/4bc952f6017a3c57fe024cea\/decoys-2-alien-seduction-mid.jpg","title":"Decoys 2: Alien Seduction","releaseDate":1173139200000,"language":"en","type":"Movie","_key":"68425"} +{"label":"Jeffery Scott Lando","version":20,"id":"95407","lastModified":"1301902196000","name":"Jeffery Scott Lando","type":"Person","_key":"68426"} +{"label":"Tyler Johnston","version":17,"id":"101256","lastModified":"1301901717000","name":"Tyler Johnston","type":"Person","_key":"68427"} +{"label":"Kailin See","version":22,"id":"89247","lastModified":"1301901492000","name":"Kailin See","type":"Person","_key":"68428"} +{"label":"Swiss Family Robinson","description":"A new world of excitement is yours as a man, his wife, and their sons--bonded by courage and strengthened by love--turn a wild tropic jungle into an exotic island paradise!","id":"18444","runtime":126,"imdbId":"tt0054357","version":120,"lastModified":"1301904549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfd\/4bc952fa017a3c57fe024cfd\/swiss-family-robinson-mid.jpg","studio":"Walt Disney Productions","genre":"Action","title":"Swiss Family Robinson","releaseDate":-284947200000,"language":"en","tagline":"THE ADVENTURE OF ADVENTURES!","type":"Movie","_key":"68429"} +{"label":"Janet Munro","version":25,"id":"83129","lastModified":"1301901561000","name":"Janet Munro","type":"Person","_key":"68430"} +{"label":"Tommy Kirk","version":28,"id":"83130","lastModified":"1301902385000","name":"Tommy Kirk","type":"Person","_key":"68431"} +{"label":"Kevin Corcoran","version":29,"id":"83131","lastModified":"1301902527000","name":"Kevin Corcoran","type":"Person","_key":"68432"} +{"label":"Andy Ho","version":20,"id":"83132","lastModified":"1301902650000","name":"Andy Ho","type":"Person","_key":"68433"} +{"label":"Milton Reid","version":20,"id":"83133","lastModified":"1301902650000","name":"Milton Reid","type":"Person","_key":"68434"} +{"label":"Larry Taylor","version":23,"id":"83134","lastModified":"1301902712000","name":"Larry Taylor","type":"Person","_key":"68435"} +{"label":"The Russell Girl","description":"Sarah Russell (Tamblyn), a 23-year-old aspiring medical school student, visits her loving family to share some important news, but instead finds herself attempting to finally confront a difficult period from her past.","id":"18445","runtime":120,"imdbId":"tt1097649","version":219,"lastModified":"1301906959000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc952fb017a3c57fe024d0e\/the-russell-girl-mid.jpg","title":"The Russell Girl","releaseDate":1230336000000,"language":"en","type":"Movie","_key":"68436"} +{"label":"Swing Shift","description":"In 1941 America Kay and her husband are happy enough until he enlists after Pearl Harbor. Against his wishes, his wife takes a job at the local aircraft plant where she meets Hazel, the singer from across the way the two soon become firm friends and with the other girls become increasingly expert workers. As the war drags on Kay finally dates her trumpet playing foreman and life gets complicated","id":"18446","runtime":100,"imdbId":"tt0088213","version":149,"lastModified":"1301907267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d17\/4bc952fc017a3c57fe024d17\/swing-shift-mid.jpg","genre":"Comedy","title":"Swing Shift","releaseDate":450662400000,"language":"en","type":"Movie","_key":"68437"} +{"label":"The Young Land","description":"An American gunslinger kills a Mexican man in California immediately after the Mexican-American war. The killer is arrested and put on trial for murder with the Hispanic population waiting to learn of American justice.","id":"18447","runtime":89,"imdbId":"tt0053461","version":81,"lastModified":"1301908309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d1c\/4bc952fc017a3c57fe024d1c\/the-young-land-mid.jpg","genre":"Drama","title":"The Young Land","releaseDate":-336787200000,"language":"en","type":"Movie","_key":"68438"} +{"label":"Roberto De La Madrid","version":20,"id":"83148","lastModified":"1301902542000","name":"Roberto De La Madrid","type":"Person","_key":"68439"} +{"label":"Yasagure anego den: s\u00f4katsu rinchi","description":"No overview found.","id":"18448","runtime":86,"imdbId":"tt0142998","version":27,"lastModified":"1300980577000","title":"Yasagure anego den: s\u00f4katsu rinchi","releaseDate":108259200000,"language":"en","type":"Movie","_key":"68440"} +{"label":"The Deadly Companions","description":"Ex-army officer accidentally kills a woman's son, tries to make up for it by escorting the funeral procession through dangerous Indian territory.","id":"18449","runtime":93,"imdbId":"tt0054795","version":70,"lastModified":"1301418462000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d25\/4bc952fd017a3c57fe024d25\/the-deadly-companions-mid.jpg","genre":"Action","title":"The Deadly Companions","releaseDate":-270518400000,"language":"en","type":"Movie","_key":"68441"} +{"label":"Zorro","description":"A newly arrived governor finds his province under the control of the corrupt Colonel Huerta. To avoid assassination by Huerta, he pretends to be weak and indecisive so Huerta will believe he poses no threat. But secretly he masquerades as Zorro, and joins the monk Francisco and the beautiful aristocrat Hortensia in their fight for justice against Huerta and his soldiers.","id":"18450","runtime":0,"imdbId":"tt0072448","version":78,"lastModified":"1301906067000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2a\/4bc952fd017a3c57fe024d2a\/zorro-mid.png","title":"Zorro","releaseDate":202435200000,"language":"en","type":"Movie","_key":"68442"} +{"label":"Enzo Cerusico","version":20,"id":"83146","lastModified":"1301902505000","name":"Enzo Cerusico","type":"Person","_key":"68443"} +{"label":"The Whole Wide World","description":"Based on her acclaimed autobiographical book, THE WHOLE WIDE WORLD tells the story of Novalyne Price, an attractive feisty West Texas schoolteacher and her bittersweet, romantic and turbulent relationship with Robert E. Howard, the great pulp fiction writer of the 1930's.","id":"18451","runtime":106,"imdbId":"tt0118163","trailer":"http:\/\/www.youtube.com\/watch?v=1212","version":107,"lastModified":"1301906846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d43\/4bc95301017a3c57fe024d43\/the-whole-wide-world-mid.jpg","genre":"Drama","title":"The Whole Wide World","releaseDate":851040000000,"language":"en","type":"Movie","_key":"68444"} +{"label":"Dan Ireland","version":24,"id":"69099","lastModified":"1301901772000","name":"Dan Ireland","type":"Person","_key":"68445"} +{"label":"Ann Wedgeworth","version":24,"id":"83145","lastModified":"1302174848000","name":"Ann Wedgeworth","type":"Person","_key":"68446"} +{"label":"Bamse i trollskogen","description":"Bamse is a good-hearted bear whose grandmother cooks a special kind of honey, that gives him superpowers. When someone starts transforming the bear's friends into balloons and other things, Bamse and his friends Skalman (a turtle) and Lille Skutt (a rabbit) must journey through the woods to stop this person.","id":"18452","runtime":0,"imdbId":"tt0236009","version":47,"lastModified":"1301906731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4d\/4bc95304017a3c57fe024d4d\/bamse-i-trollskogen-mid.jpg","genre":"Animation","title":"Bamse i trollskogen","releaseDate":662688000000,"language":"en","type":"Movie","_key":"68447"} +{"label":"Fly, Daddy, Fly","description":"No overview found.","id":"18454","runtime":121,"imdbId":"tt0455490","version":50,"lastModified":"1301418893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d5b\/4bc95305017a3c57fe024d5b\/18454-mid.jpg","title":"Fly, Daddy, Fly","releaseDate":1120867200000,"language":"en","type":"Movie","_key":"68448"} +{"label":"Bamse och den lilla \u00c5snan","description":"Bamse r\u00e4ddar en liten \u00e5sna fr\u00e5n en elak man. Tillsammans med v\u00e4nnerna bygger han ett stall \u00e5t den. Informationen kopierad fr\u00e5n disc shop.se! \u00d6ver 18.000 titlar i lager. Best\u00e4ll f\u00f6re 16:00, leverans n\u00e4sta dag. \u00c5snan springer fort som t\u00e5get, s\u00e5 Bamse anm\u00e4ler den till Stora Travm\u00e4sterskapet. D\u00e4r ska den t\u00e4vla mot Kr\u00f6sus Sorks snabba h\u00e4st Svarta Blixten. Kr\u00f6sus tar till alla tricks f\u00f6r att vinna. \r\n","id":"18455","runtime":52,"version":21,"lastModified":"1301908092000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d60\/4bc95305017a3c57fe024d60\/bamse-och-den-lilla-asnan-mid.jpg","genre":"Fantasy","title":"Bamse och den lilla \u00c5snan","releaseDate":315532800000,"language":"en","type":"Movie","_key":"68449"} +{"label":"Adolphe","description":"No overview found.","id":"18456","runtime":102,"imdbId":"tt0307923","version":44,"lastModified":"1300980578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6d\/4bc95306017a3c57fe024d6d\/adolphe-mid.jpg","genre":"Drama","title":"Adolphe","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68450"} +{"label":"Le Boulet","description":"Molt\u00e8s, un d\u00e9tenu, joue chaque semaine au loto. C'est Reggio, un gardien de prison maladroit, qui valide ses bulletins. Un jour, Molt\u00e8s apprend qu'il a gagn\u00e9 le jackpot : quinze barres !!!","id":"18457","runtime":107,"imdbId":"tt0283957","version":95,"lastModified":"1301903535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91a\/4d6555495e73d66a5e00091a\/le-boulet-mid.jpg","studio":"France 2 Cin\u00e9ma","genre":"Comedy","title":"Le Boulet","releaseDate":1018396800000,"language":"en","type":"Movie","_key":"68451"} +{"label":"Rowan Atkinson: Not Just a Pretty Face","description":"Rowan Atkinson and Angus Deayton in Boston doing a live performance of the same styles of humor we've seen in Mr. Bean and Blackadder. Included are lessons on Shakespearean acting, a school headmaster meeting with the father of a boy he's beaten to death, and tips for having a successful date.","id":"18458","runtime":65,"imdbId":"tt0163186","version":43,"lastModified":"1301903343000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d7f\/4bc95308017a3c57fe024d7f\/rowan-atkinson-live-mid.jpg","genre":"Comedy","title":"Rowan Atkinson: Not Just a Pretty Face","releaseDate":702950400000,"language":"en","type":"Movie","_key":"68452"} +{"label":"Angus Deayton","version":22,"id":"83150","lastModified":"1301902141000","name":"Angus Deayton","type":"Person","_key":"68453"} +{"label":"La Nouvelle Eve","description":"No overview found.","id":"18460","runtime":94,"imdbId":"tt0186397","version":42,"lastModified":"1300980578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8c\/4bc95309017a3c57fe024d8c\/la-nouvelle-eve-mid.jpg","title":"La Nouvelle Eve","releaseDate":917395200000,"language":"en","type":"Movie","_key":"68454"} +{"label":"Les Sentiments","description":"Jacques, m\u00e9decin, et Carole, son \u00e9pouse, habitent une maison en r\u00e9gion parisienne. Dans la maison voisine s'installent Fran\u00e7ois et Edith. Ce dernier doit succ\u00e9der \u00e0 Jacques et reprendre sa client\u00e8le.","id":"18461","runtime":94,"imdbId":"tt0329584","version":67,"lastModified":"1301415858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d99\/4bc9530b017a3c57fe024d99\/les-sentiments-mid.jpg","title":"Les Sentiments","releaseDate":1062374400000,"language":"en","type":"Movie","_key":"68455"} +{"label":"Night of the Comet","description":"Two girls from the Valley wake up to find that a passing comet has eradicated their world and left behind a mysterious red-dust and a pack of cannibal mutants. With the help of a friendly truck driver, the girls save the earth from a villainous \"think tank,\" karate chop their way through flesh-eating zombies, and, of course, find time to go to the mall. ","id":"18462","runtime":95,"imdbId":"tt0087799","trailer":"http:\/\/www.youtube.com\/watch?v=P_sJDW19UZA","version":294,"lastModified":"1301902669000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da2\/4bc9530c017a3c57fe024da2\/night-of-the-comet-mid.jpg","genre":"Action","title":"Night of the Comet","releaseDate":441763200000,"language":"en","tagline":"They came. They Shopped. They saved the world!","type":"Movie","_key":"68456"} +{"label":"Robert Beltran","version":24,"id":"50880","lastModified":"1301901394000","name":"Robert Beltran","type":"Person","_key":"68457"} +{"label":"Kelli Maroney","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c0\/4c87cc9e7b9aa1545c0002c0\/kelli-maroney-profile.jpg","version":28,"id":"83151","lastModified":"1301901775000","name":"Kelli Maroney","type":"Person","_key":"68458"} +{"label":"Peter Fox","version":17,"id":"100559","lastModified":"1301902884000","name":"Peter Fox","type":"Person","_key":"68459"} +{"label":"RUSH: Snakes & Arrows Live","description":"Filmed over two performances in Rotterdam, Holland in October of 2007, Rush's new DVD Snakes & Arrows Live captures the legendary band in peak form, performing classic Rush material and nine new songs from their critically acclaimed 2007 CD Snakes & Arrows.","id":"18463","runtime":221,"imdbId":"tt1439478","version":61,"lastModified":"1301904459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/daf\/4bc9530e017a3c57fe024daf\/rush-snakes-arrows-live-mid.png","genre":"Musical","title":"RUSH: Snakes & Arrows Live","releaseDate":1227830400000,"language":"en","type":"Movie","_key":"68460"} +{"label":"Lovers of 6 Years","description":"No overview found.","id":"18464","runtime":112,"imdbId":"tt1233458","version":47,"lastModified":"1300980579000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbc\/4bc9530f017a3c57fe024dbc\/6-mid.jpg","title":"Lovers of 6 Years","releaseDate":1202169600000,"language":"en","type":"Movie","_key":"68461"} +{"label":"Gye-sang Yun","version":18,"id":"83152","lastModified":"1301902175000","name":"Gye-sang Yun","type":"Person","_key":"68462"} +{"label":"Hyeon-jin Park","version":17,"id":"83153","lastModified":"1301902175000","name":"Hyeon-jin Park","type":"Person","_key":"68463"} +{"label":"La jeune fille et les loups","description":"Au sortir de la Grande Guerre, Ang\u00e8le, 20 ans, est d\u00e9termin\u00e9e \u00e0 devenir la premi\u00e8re femme v\u00e9t\u00e9rinaire. A travers son destin aventureux, elle sera l'objet d'une rivalit\u00e9 sans merci entre son promis, un industriel visionnaire mais sans scrupule, et un homme simple, retir\u00e9 dans la montagne, pr\u00e8s des loups et loin de la folie des hommes. Ang\u00e8le va exploiter au mieux cette rivalit\u00e9 pour atteindre son v\u00e9ritable objectif : sauver les loups.","id":"18465","runtime":110,"imdbId":"tt0996952","version":54,"lastModified":"1301907172000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dca\/4bc95310017a3c57fe024dca\/la-jeune-fille-et-les-loups-mid.jpg","title":"La jeune fille et les loups","releaseDate":1202860800000,"language":"en","type":"Movie","_key":"68464"} +{"label":"Stefano Accorsi","version":18,"id":"136188","lastModified":"1301902407000","name":"Stefano Accorsi","type":"Person","_key":"68465"} +{"label":"Notre univers impitoyable","description":"Pour Margot et Victor, tout va pour le mieux dans le meilleur des mondes. Ils sont beaux, jeunes, cadres dynamiques dans le m\u00eame cabinet d'avocats d'affaires et surtout, ils filent le parfait amour.Mais rien ne va plus le jour o\u00f9 Nicolas Bervesier, leur patron, est contraint de nommer un nouvel associ\u00e9 pour l'\u00e9pauler. Uni dans la vie, le couple se retrouve bien malgr\u00e9 lui en concurrence frontale.","id":"18466","runtime":87,"imdbId":"tt1003027","version":65,"lastModified":"1301907770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd3\/4bc95310017a3c57fe024dd3\/notre-univers-impitoyable-mid.jpg","studio":"Canal Plus","title":"Notre univers impitoyable","releaseDate":1202860800000,"language":"en","type":"Movie","_key":"68466"} +{"label":"Pascale Arbillot","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0b5\/4d753f295e73d664660000b5\/pascale-arbillot-profile.jpg","version":34,"id":"83966","lastModified":"1301901700000","name":"Pascale Arbillot","type":"Person","_key":"68467"} +{"label":"L\u00e9a Fazer","version":21,"id":"138370","lastModified":"1301903052000","name":"L\u00e9a Fazer","type":"Person","_key":"68468"} +{"label":"Spiral","description":"A reclusive telemarketer has only one semblance of a friend: His telecommuter boss. But the telemarketer's social circle seems to improve greatly when a whimsical co-worker enters his life. Only, as he begins to sketch his new friend's portrait, disturbing \"voices\" from the phone man's past threaten to lead him into a network of destruction","id":"18467","runtime":90,"imdbId":"tt0491162","trailer":"http:\/\/www.youtube.com\/watch?v=riL5PAtYNIk","version":174,"lastModified":"1301905454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ddc\/4bc95314017a3c57fe024ddc\/spiral-mid.jpg","genre":"Drama","title":"Spiral","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68469"} +{"label":"David Muller","version":19,"id":"83154","lastModified":"1301902630000","name":"David Muller","type":"Person","_key":"68470"} +{"label":"Annie Neal","version":19,"id":"83155","lastModified":"1301902454000","name":"Annie Neal","type":"Person","_key":"68471"} +{"label":"Momma's Man","description":"In Momma's Man an adult decides to escape the pressures of life and return to his old bedroom at his parents' house. An odd premise, but executed with skill and tenderness. ","id":"18468","runtime":94,"imdbId":"tt1122599","version":231,"lastModified":"1302214994000","genre":"Drama","title":"Momma's Man","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"68472"} +{"label":"Driven To Kill","description":"A former Russian mobster named Ruslan, who is now a crime novelist, returns home and discovers his daughter is marrying his arch nemesis. His past also comes back to haunt him when his family is threatened. Hungry for justice, Ruslan returns to the life he once knew...with a vengeance.","id":"18472","runtime":98,"imdbId":"tt1227177","version":136,"lastModified":"1301903965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de9\/4bc95315017a3c57fe024de9\/driven-to-kill-mid.jpg","studio":"Insight Film Studios","genre":"Action","title":"Driven To Kill","releaseDate":1241136000000,"language":"en","type":"Movie","_key":"68473"} +{"label":"Alexander Rafalski","version":17,"id":"107809","lastModified":"1301902884000","name":"Alexander Rafalski","type":"Person","_key":"68474"} +{"label":"Ingrid Torrance","version":17,"id":"107811","lastModified":"1301902884000","name":"Ingrid Torrance","type":"Person","_key":"68475"} +{"label":"The Cookout","description":"When Todd Anderson signs a $30 million deal with his hometown team, the New Jersey Nets, he knows that his life is set for a big change. To keep things real, he decides to throw a barbeque at his place -- just like the ones his family used to have. But when you have new and old friends, family, agents, and product reps in the same house, things are bound to get crazy.","id":"18475","runtime":97,"imdbId":"tt0380277","version":192,"lastModified":"1301905731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e04\/4bc95317017a3c57fe024e04\/the-cookout-mid.jpg","studio":"Cookout Productions","genre":"Comedy","title":"The Cookout","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"68476"} +{"label":"The Horsemen","description":"A recently widowed detective still grieving over his wife's death discovers a shocking connection between himself and the suspects in a serial killing spree linked to the Four Horsemen of the Apocalypse.","id":"18476","runtime":110,"imdbId":"tt0892767","trailer":"http:\/\/www.youtube.com\/watch?v=1213","version":406,"lastModified":"1301906461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e19\/4bc95319017a3c57fe024e19\/horsemen-mid.jpg","studio":"Mandate Pictures","genre":"Crime","title":"The Horsemen","releaseDate":1233878400000,"language":"en","type":"Movie","_key":"68477"} +{"label":"Arne MacPherson","version":26,"id":"83853","lastModified":"1301901607000","name":"Arne MacPherson","type":"Person","_key":"68478"} +{"label":"David Dastmalchian","version":23,"id":"83854","lastModified":"1301901862000","name":"David Dastmalchian","type":"Person","_key":"68479"} +{"label":"Thomas Mitchell","version":25,"id":"131546","lastModified":"1301902143000","name":"Thomas Mitchell","type":"Person","_key":"68480"} +{"label":"The Hills Have Eyes Part II","description":"A group of young and wild motocross racers venture through the desert and are stranded at an old mining ranch. They soon realize that they are being watched by a group of savage cannibals unknown to the civilized world. The film is full of flashbacks to the original film; even the dog has a flashback.","id":"18477","runtime":86,"imdbId":"tt0089274","version":96,"lastModified":"1301907247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e28\/4bc9531b017a3c57fe024e28\/the-hills-have-eyes-part-ii-mid.jpg","genre":"Horror","title":"The Hills Have Eyes Part II","releaseDate":491788800000,"language":"en","type":"Movie","_key":"68481"} +{"label":"Crusty 4: Gold Bless the Freaks","description":"Continuing the popular series from Fleshwound Films, this highlight video shows some of the more insane things people have tried to do with motorcycles. Filled with death defying leaps from motocross events and off track leaps and hill climbs, this film moves at a frenetic pace. Several professional motocross riders, including Seth Enslow, pull off some amazing stunts and jumps","id":"18478","runtime":60,"version":22,"lastModified":"1301907378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e31\/4bc9531e017a3c57fe024e31\/crusty-4-gold-bless-the-freaks-mid.jpg","studio":"Fleshwound Films","genre":"Action","title":"Crusty 4: Gold Bless the Freaks","releaseDate":912470400000,"language":"en","type":"Movie","_key":"68482"} +{"label":"Dana Nicholson","version":23,"id":"82571","lastModified":"1301901946000","name":"Dana Nicholson","type":"Person","_key":"68483"} +{"label":"Jon Freeman","version":23,"id":"82572","lastModified":"1301902141000","name":"Jon Freeman","type":"Person","_key":"68484"} +{"label":"Br\u00fcno","description":"Flamboyantly gay Austrian television reporter Bruno (Sacha Baron Cohen) stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.","id":"18480","runtime":83,"imdbId":"tt0889583","trailer":"http:\/\/www.youtube.com\/watch?v=NwaMAkL2XA8","version":167,"lastModified":"1301908180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/923\/4c709e9d5e73d65f7e000923\/bruno-mid.jpg","studio":"Media Rights Capital","genre":"Comedy","title":"Br\u00fcno","releaseDate":1247184000000,"language":"en","tagline":"Borat was so 2006","type":"Movie","_key":"68485"} +{"label":"Richard Bey","version":21,"id":"83247","lastModified":"1301901490000","name":"Richard Bey","type":"Person","_key":"68486"} +{"label":"Ron Paul","version":22,"id":"83248","lastModified":"1301901496000","name":"Ron Paul","type":"Person","_key":"68487"} +{"label":"Wassup Rockers","description":"Instead of adhering to the norms of their South Central neighborhood, a group of skater boys opt to bus into Hollywood and Beverly Hills, where they attract local rich girls - and plenty of trouble with the police, jealous boyfriends, and nervous parents.","id":"18484","runtime":111,"imdbId":"tt0413466","homepage":"http:\/\/www.wassuprockers.net\/","version":167,"lastModified":"1302038866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00d\/4c93a9937b9aa10d5800000d\/wassup-rockers-mid.jpg","studio":"Capital Arts Entertainment","genre":"Drama","title":"Wassup Rockers","releaseDate":1126483200000,"language":"en","type":"Movie","_key":"68488"} +{"label":"Jonathan Velasquez","version":4,"id":"231786","lastModified":"1301904135000","name":"Jonathan Velasquez","type":"Person","_key":"68489"} +{"label":"Francisco Pedrasa","version":4,"id":"231787","lastModified":"1301904129000","name":"Francisco Pedrasa","type":"Person","_key":"68490"} +{"label":"Milton Velasquez","version":4,"id":"231788","lastModified":"1301904128000","name":"Milton Velasquez","type":"Person","_key":"68491"} +{"label":"Yunior Usualdo Panameno","version":4,"id":"231789","lastModified":"1301904102000","name":"Yunior Usualdo Panameno","type":"Person","_key":"68492"} +{"label":"Eddie Velasquez","version":4,"id":"231790","lastModified":"1301904102000","name":"Eddie Velasquez","type":"Person","_key":"68493"} +{"label":"Fan Chan","description":"Jeab hears that his childhood sweetheart Noi-Naa is to be married, so he makes the trip back home to his provincial village. As he does so, the memories come flooding back to his childhood in 1980s Thailand. He remembers always being late to school, so his father would have to give him a ride on the back of the motorcycle. After school, he would always play with Noi-Naa and her girlfriends while the neighborhood boys rode their bicycles and played football and Chinese fantasy characters.","id":"18486","runtime":100,"imdbId":"tt0399040","version":44,"lastModified":"1301906932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e50\/4bc95321017a3c57fe024e50\/fan-chan-mid.jpg","genre":"Comedy","title":"Fan Chan","releaseDate":1065139200000,"language":"en","type":"Movie","_key":"68494"} +{"label":"Charlie Trairat","version":22,"id":"83157","lastModified":"1301902395000","name":"Charlie Trairat","type":"Person","_key":"68495"} +{"label":"Focus Jirakul","version":19,"id":"83158","lastModified":"1301902630000","name":"Focus Jirakul","type":"Person","_key":"68496"} +{"label":"Charwin Jitsomboon","version":19,"id":"83159","lastModified":"1301902630000","name":"Charwin Jitsomboon","type":"Person","_key":"68497"} +{"label":"Arnudsara Jantarangsri","version":19,"id":"83161","lastModified":"1301902236000","name":"Arnudsara Jantarangsri","type":"Person","_key":"68498"} +{"label":"Preecha Chanapai","version":19,"id":"83163","lastModified":"1301902630000","name":"Preecha Chanapai","type":"Person","_key":"68499"} +{"label":"Nipawan Taveepornsawan","version":19,"id":"83164","lastModified":"1301902454000","name":"Nipawan Taveepornsawan","type":"Person","_key":"68500"} +{"label":"Chaleumpol Tikumpornteerawong","version":19,"id":"83165","lastModified":"1301902630000","name":"Chaleumpol Tikumpornteerawong","type":"Person","_key":"68501"} +{"label":"Aphichan Chaleumchainuwong","version":19,"id":"83166","lastModified":"1301901862000","name":"Aphichan Chaleumchainuwong","type":"Person","_key":"68502"} +{"label":"Anyarit Pitakkul","version":19,"id":"83167","lastModified":"1301902454000","name":"Anyarit Pitakkul","type":"Person","_key":"68503"} +{"label":"Yok Teeranitayatarn","version":19,"id":"83168","lastModified":"1301902454000","name":"Yok Teeranitayatarn","type":"Person","_key":"68504"} +{"label":"Thana Vichayasuranan","version":19,"id":"83169","lastModified":"1301902454000","name":"Thana Vichayasuranan","type":"Person","_key":"68505"} +{"label":"Wongsakorn Rassamitat","version":19,"id":"83160","lastModified":"1301902236000","name":"Wongsakorn Rassamitat","type":"Person","_key":"68506"} +{"label":"The Taking of Pelham 123","description":"Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.","id":"18487","runtime":121,"imdbId":"tt1111422","trailer":"http:\/\/www.youtube.com\/watch?v=9WTMFghxvXo","homepage":"http:\/\/catchthetrain.com\/","version":277,"lastModified":"1301905775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e80\/4bc95329017a3c57fe024e80\/the-taking-of-pelham-1-2-3-mid.jpg","studio":"Relativity Media","genre":"Action","title":"The Taking of Pelham 123","releaseDate":1244764800000,"language":"en","tagline":"I can't get it out of my head. I'm gonna die today.","type":"Movie","_key":"68507"} +{"label":"Victor Gojcaj","version":26,"id":"84318","lastModified":"1301901297000","name":"Victor Gojcaj","type":"Person","_key":"68508"} +{"label":"The Yes Men Fix the World","description":"THE YES MEN FIX THE WORLD is a screwball true story about two gonzo political activists who, posing as top executives of giant corporations, lie their way into big business conferences and pull off the world's most outrageous pranks.","id":"18489","runtime":87,"imdbId":"tt1352852","trailer":"http:\/\/www.youtube.com\/watch?v=QnQX09DZLYE","homepage":"http:\/\/theyesmenfixtheworld.com\/","version":179,"lastModified":"1301906800000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9a\/4bc9532d017a3c57fe024e9a\/the-yes-men-fix-the-world-mid.jpg","genre":"Documentary","title":"The Yes Men Fix the World","releaseDate":1232236800000,"language":"en","tagline":"Sometimes it takes a lie to expose the truth","type":"Movie","_key":"68509"} +{"label":"Neon Genesis Evangelion: The End of Evangelion","description":"NERV faces a brutal attack from SEELE, but with Asuka in a coma, and Shinji in a nervous breakdown, things soon turn into the surreal. This movie provides an concurrent ending to the final two episodes of the show \"Neon Genesis Evangelion\"","id":"18491","runtime":87,"imdbId":"tt0169858","version":84,"lastModified":"1301903327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ebe\/4bc95331017a3c57fe024ebe\/the-end-of-evangelion-mid.jpg","studio":"Gainax","genre":"Animation","title":"Neon Genesis Evangelion: The End of Evangelion","releaseDate":869270400000,"language":"en","type":"Movie","_key":"68510"} +{"label":"Hideaki Anno","version":45,"id":"77921","lastModified":"1301901449000","name":"Hideaki Anno","type":"Person","_key":"68511"} +{"label":"Y\u00fbko Miyamura","version":27,"id":"83768","lastModified":"1301902361000","name":"Y\u00fbko Miyamura","type":"Person","_key":"68512"} +{"label":"Killer Tattoo","description":"No overview found.","id":"18492","runtime":114,"imdbId":"tt0282658","version":233,"lastModified":"1300980582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec8\/4bc95335017a3c57fe024ec8\/killer-tattoo-mid.jpg","genre":"Action","title":"Killer Tattoo","releaseDate":986428800000,"language":"en","type":"Movie","_key":"68513"} +{"label":"Suthep Po-ngam","version":20,"id":"83171","lastModified":"1301902704000","name":"Suthep Po-ngam","type":"Person","_key":"68514"} +{"label":"Somchai Kemglad","version":21,"id":"83172","lastModified":"1301902704000","name":"Somchai Kemglad","type":"Person","_key":"68515"} +{"label":"Yuthlert Sippapak","version":23,"id":"83173","lastModified":"1301902395000","name":"Yuthlert Sippapak","type":"Person","_key":"68516"} +{"label":"Chronos","description":"A Visual and Musical Journey Through Time","id":"18493","runtime":43,"imdbId":"tt0088919","trailer":"http:\/\/www.youtube.com\/watch?v=1363","version":142,"lastModified":"1301418587000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed1\/4bc95335017a3c57fe024ed1\/chronos-mid.jpg","genre":"Documentary","title":"Chronos","releaseDate":473385600000,"language":"en","type":"Movie","_key":"68517"} +{"label":"Folks!","description":"A slightly self absorbed yuppie takes in his parents including his senile father, after their home burns down. But his personal and professional life fall apart soon after.","id":"18495","runtime":107,"imdbId":"tt0104283","version":90,"lastModified":"1301908252000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee8\/4bc95337017a3c57fe024ee8\/folks-mid.jpg","genre":"Comedy","title":"Folks!","releaseDate":704678400000,"language":"en","type":"Movie","_key":"68518"} +{"label":"The Cellar Door","description":"Having developed an uncontrollable obsession with the beautiful young Rudy (Michelle Tomlinson), crazed serial killer Herman (James DuMont) kidnaps her and locks her in a cage in his basement. The only way for Rudy to survive this nightmare is to outsmart her psychopathic tormentor. But Herman has experience on his side: He's entrapped and tortured other women before, playing sick and twisted mind games with his frightened victims.","id":"18496","runtime":85,"imdbId":"tt0878657","version":104,"lastModified":"1301906730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4c94ee735e73d63a7600030f\/the-cellar-door-mid.jpg","genre":"Horror","title":"The Cellar Door","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"68519"} +{"label":"Exils","description":"This movie is a odyssey of sorts. Both Zano, played by Romain Duris, and Naima (Lubna Azabal) live in France, but have ties that draw them back to Algeria. The film follows their slow but determined trip southward.Since they are traveling without funds--or even a map--they naturally need help from others along the way. These interactions with the people they meet on the road are fascinating. The two characters are not exactly role models for today's youth, but you have to admire their tenacity a","id":"18497","runtime":104,"imdbId":"tt0400420","version":97,"lastModified":"1301906601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eed\/4bc95337017a3c57fe024eed\/exils-mid.jpg","studio":"Princes Films","genre":"Adventure","title":"Exils","releaseDate":1084924800000,"language":"en","type":"Movie","_key":"68520"} +{"label":"Zouhir Gacem","version":20,"id":"83177","lastModified":"1301902704000","name":"Zouhir Gacem","type":"Person","_key":"68521"} +{"label":"Leila Makhlouf","version":19,"id":"83178","lastModified":"1301902630000","name":"Leila Makhlouf","type":"Person","_key":"68522"} +{"label":"Habib Cheik","version":19,"id":"83179","lastModified":"1301902630000","name":"Habib Cheik","type":"Person","_key":"68523"} +{"label":"Ghoulies","description":"A young man and his girlfriend move into thre man's old mansion home, where he becomes possessed by a need to control ancient demons.","id":"18498","runtime":81,"imdbId":"tt0089200","trailer":"http:\/\/www.youtube.com\/watch?v=gTZPOh21q2Q","version":86,"lastModified":"1301905629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef6\/4bc95337017a3c57fe024ef6\/ghoulies-mid.jpg","genre":"Comedy","title":"Ghoulies","releaseDate":486259200000,"language":"en","tagline":"They'll get you in the end.","type":"Movie","_key":"68524"} +{"label":"Peter Liapis","version":20,"id":"104926","lastModified":"1301902735000","name":"Peter Liapis","type":"Person","_key":"68525"} +{"label":"The Decline of the American Empire","description":"Four very different Montreal university teachers gather at a rambling country house to prepare a dinner. Remy (married), Claude (a homosexual), Pierre (involved with a girlfriend) and Alain (a bachelor) discuss sex, the female body and their affairs with them. Meanwhile, their four female guests, Louise (Remy's wife of 15 years), Dominique (a spinster), Diane (a divorc\u00e9e) and Danielle (Pierre's girlfriend) are spending the time at a downtown health gym. They also discuss sex, the female body and","id":"18499","runtime":101,"imdbId":"tt0090985","version":162,"lastModified":"1301906776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f04\/4bc95338017a3c57fe024f04\/le-declin-de-l-empire-americain-mid.jpg","studio":"T\u00e9l\u00e9film Canada","genre":"Comedy","title":"The Decline of the American Empire","releaseDate":519523200000,"language":"en","type":"Movie","_key":"68526"} +{"label":"Genevi\u00e8ve Rioux","version":21,"id":"83181","lastModified":"1301902236000","name":"Genevi\u00e8ve Rioux","type":"Person","_key":"68527"} +{"label":"Gabriel Arcand","version":24,"id":"83183","lastModified":"1301902630000","name":"Gabriel Arcand","type":"Person","_key":"68528"} +{"label":"The Sandlot 2","description":"A decade has passed in the small town where the original Sandlot gang banded together during the summer of \u201962 to play baseball and battle the Beast. Now comes the sequel, a campy romp back to the dugout where nine new kids descend on the diamond only to discover that a descendant of the Beast lives in Mr. Mertle\u2019s backyard--a monster of mythical proportions known as \"The Great Fear.\" ","id":"18500","runtime":97,"imdbId":"tt0418131","version":350,"lastModified":"1301903973000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f09\/4bc95338017a3c57fe024f09\/the-sandlot-2-mid.jpg","genre":"Comedy","title":"The Sandlot 2","releaseDate":1115078400000,"language":"en","type":"Movie","_key":"68529"} +{"label":"Max Lloyd-Jones","version":20,"id":"83186","lastModified":"1301902383000","name":"Max Lloyd-Jones","type":"Person","_key":"68530"} +{"label":"Gamer","description":"Mind-control technology has taken society by a storm, a multiplayer on-line game called \"Slayers\" allows players to control human prisoners in mass-scale. Simon (Lerman) controls Kable (Butler), the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind (Hall).","id":"18501","runtime":95,"imdbId":"tt1034032","trailer":"http:\/\/www.youtube.com\/watch?v=P2g94xQmtHw","homepage":"http:\/\/gamerthemovie.com","version":458,"lastModified":"1301901459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94c\/4c0b7146017a3c7e8700094c\/gamer-mid.jpg","studio":"Lakeshore Entertainment","genre":"Action","title":"Gamer","releaseDate":1251936000000,"language":"en","tagline":"In the near future, you don't live to play... you'll play to live.","type":"Movie","_key":"68531"} +{"label":"Michael C. Hall","version":31,"id":"53820","lastModified":"1301901334000","name":"Michael C. Hall","type":"Person","_key":"68532"} +{"label":"The Stuff","description":"Weird yummy goo erupts from the earth and is discovered by a couple of miners. They taste it and decide to market it because it tastes so good. The American public literally eats up the new dessert sensation now known as the Stuff but, unfortunately, it takes over the brains of those who eat it, turning them into zombie-like creatures. It is up to ex-FBI agent David Rutherford and a kid named Jason to stop the spread of the mind-devouring dessert.","id":"18502","runtime":93,"imdbId":"tt0090094","trailer":"http:\/\/www.youtube.com\/watch?v=uE6Z1nBqLwo","version":100,"lastModified":"1301905401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/169\/4c7a264b7b9aa176c0000169\/the-stuff-mid.jpg","genre":"Comedy","title":"The Stuff","releaseDate":487555200000,"language":"en","type":"Movie","_key":"68533"} +{"label":"Scott Bloom","version":24,"id":"83188","lastModified":"1302141506000","name":"Scott Bloom","type":"Person","_key":"68534"} +{"label":"Caterina in the Big City","description":"When her father, Giancarlo is transferred to Rome from the small country town of Montalto Di Castro, Caterina, a 12 years old girl, will discover her new classmates, a totally new world, an ambient extremely divided politically. ","id":"18503","runtime":105,"imdbId":"tt0366287","version":90,"lastModified":"1302023471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f6e\/4bc95349017a3c57fe024f6e\/caterina-va-in-citta-mid.jpg","studio":"Cattleya","genre":"Comedy","title":"Caterina in the Big City","releaseDate":1069632000000,"language":"en","type":"Movie","_key":"68535"} +{"label":"Paolo Virz\u00ec","version":33,"id":"83189","lastModified":"1301901856000","name":"Paolo Virz\u00ec","type":"Person","_key":"68536"} +{"label":"Alice Teghil","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fa9\/4cfd1a555e73d6299a003fa9\/alice-teghil-profile.jpg","version":22,"id":"83190","lastModified":"1301901315000","name":"Alice Teghil","type":"Person","_key":"68537"} +{"label":"C'est pas tout \u00e0 fait la vie dont j'avais r\u00eav\u00e9","description":"Un homme partage sa vie entre l'appartement qu'il habite avec sa femme, celui qu'il occupe avec son ma\u00eetresse, et son club.\nAvec la complicit\u00e9 de sa domestique, il d\u00e9pouille l'une pour faire des cadeaux \u00e0 l'autre. A l'une, il n'offre que des parties de Scrabble jou\u00e9es dans le silence, \u00e0 l'autre, d\u00e9clarations et bouquets de fleurs quotidiens.","id":"18504","runtime":75,"imdbId":"tt0428304","version":42,"lastModified":"1301906713000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f73\/4bc95349017a3c57fe024f73\/c-est-pas-tout-a-fait-la-vie-dont-j-avais-reve-mid.jpg","title":"C'est pas tout \u00e0 fait la vie dont j'avais r\u00eav\u00e9","releaseDate":1137542400000,"language":"en","type":"Movie","_key":"68538"} +{"label":"Roger Jendly","version":20,"id":"83191","lastModified":"1301902546000","name":"Roger Jendly","type":"Person","_key":"68539"} +{"label":"Mich\u00e8le Gleizer","version":20,"id":"83192","lastModified":"1301902716000","name":"Mich\u00e8le Gleizer","type":"Person","_key":"68540"} +{"label":"Grizzly Park","description":"A giant grizzly bear stalks 8 troubled young adults and a park ranger in a forest reserve called Grizzly Park after making the demise of an escaped serial killer.","id":"18505","runtime":91,"imdbId":"tt0915460","trailer":"http:\/\/www.youtube.com\/watch?v=1216","version":172,"lastModified":"1301907265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f7c\/4bc9534a017a3c57fe024f7c\/grizzly-park-mid.jpg","genre":"Horror","title":"Grizzly Park","releaseDate":1202342400000,"language":"en","type":"Movie","_key":"68541"} +{"label":"Once Upon A Mattress","description":"Queen Aggravain has ruled that none may marry until her son, Prince Dauntless marries. However, she has managed to sabotage every princess that come along. When Sir Harry and Lady Larken learn that they are going to be parents, wed or not, he goes off to the swamps and brings back Princess Winnifred (\"Fred\" to her friends). ","id":"18506","runtime":90,"imdbId":"tt0426148","version":114,"lastModified":"1300980585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f81\/4bc9534a017a3c57fe024f81\/once-upon-a-mattress-mid.jpg","genre":"Comedy","title":"Once Upon A Mattress","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"68542"} +{"label":"Tu\u00a3sday","description":"Four career criminals, two glamorous bank workers and one over-the-hill has-been all happen to be planning a robbery on a London bank on the same day, by sheer coincidence. The two investigating detectives must try and deduce how these seemingly unrelated people came to be in the area and which were responsible for the lifting a priceless emerald.","id":"18507","runtime":79,"imdbId":"tt1042570","trailer":"http:\/\/www.youtube.com\/watch?v=XaBwVs9hya0","version":74,"lastModified":"1301908314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8a\/4bc9534b017a3c57fe024f8a\/tuesday-mid.jpg","genre":"Crime","title":"Tu\u00a3sday","releaseDate":1223596800000,"language":"en","tagline":"Same Bank. Same Day. Different Story.","type":"Movie","_key":"68543"} +{"label":"Sacha Bennett","version":19,"id":"107039","lastModified":"1301902884000","name":"Sacha Bennett","type":"Person","_key":"68544"} +{"label":"UNO","description":"No overview found.","id":"18508","runtime":103,"imdbId":"tt0384639","version":108,"lastModified":"1301908313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f93\/4bc9534b017a3c57fe024f93\/uno-mid.jpg","genre":"Drama","title":"UNO","releaseDate":1094774400000,"language":"en","type":"Movie","_key":"68545"} +{"label":"Espen Juul Kristiansen","version":19,"id":"83232","lastModified":"1301901862000","name":"Espen Juul Kristiansen","type":"Person","_key":"68546"} +{"label":"Ahmed Zeyan","version":20,"id":"83233","lastModified":"1301901773000","name":"Ahmed Zeyan","type":"Person","_key":"68547"} +{"label":"Martin Skaug","version":19,"id":"83234","lastModified":"1301901862000","name":"Martin Skaug","type":"Person","_key":"68548"} +{"label":"John Andreas Andersen","version":25,"id":"7746","lastModified":"1301901307000","name":"John Andreas Andersen","type":"Person","_key":"68549"} +{"label":"Caddyshack II","description":"When a crass new-money tycoon's membership application is turned down at a snooty country club, he retaliates by buying the club and turning it into a tacky amusement park.","id":"18509","runtime":98,"imdbId":"tt0094824","trailer":"http:\/\/www.youtube.com\/watch?v=saREFwdhKH0","version":195,"lastModified":"1302023391000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9c\/4bc9534c017a3c57fe024f9c\/caddyshack-ii-mid.jpg","genre":"Comedy","title":"Caddyshack II","releaseDate":585532800000,"language":"en","type":"Movie","_key":"68550"} +{"label":"Jackie Mason","version":20,"id":"83194","lastModified":"1301902063000","name":"Jackie Mason","type":"Person","_key":"68551"} +{"label":"Marsha Warfield","version":20,"id":"83195","lastModified":"1301901717000","name":"Marsha Warfield","type":"Person","_key":"68552"} +{"label":"Anthony Mockus Sr.","version":20,"id":"83197","lastModified":"1301902236000","name":"Anthony Mockus Sr.","type":"Person","_key":"68553"} +{"label":"Allan Arkush","version":35,"id":"83198","lastModified":"1301901487000","name":"Allan Arkush","type":"Person","_key":"68554"} +{"label":"New Tale of Zatoichi","description":"Like most of the films in the series, New Tale of Zatoichi opens with the blind swordsman embroiled in trouble demanding his lighting-quick skills. Of course, Zatoichi regrets the necessity of the fight, since his past sins are once again rearing their ugly heads. Though victorious, Zatoichi is deeply troubled. Will he ever be free of his past?\n","id":"18510","runtime":91,"imdbId":"tt0057503","version":254,"lastModified":"1301907247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fb6\/4bc95352017a3c57fe024fb6\/new-tale-of-zatoichi-mid.jpg","studio":"Daiei Motion Picture Company","genre":"Action","title":"New Tale of Zatoichi","releaseDate":-214617600000,"language":"en","type":"Movie","_key":"68555"} +{"label":"Mikiko Tsubouchi","version":26,"id":"83201","lastModified":"1301902204000","name":"Mikiko Tsubouchi","type":"Person","_key":"68556"} +{"label":"Seizabur\u00f4 Kawazu","version":25,"id":"83202","lastModified":"1301902047000","name":"Seizabur\u00f4 Kawazu","type":"Person","_key":"68557"} +{"label":"Fujio Suga","version":21,"id":"83203","lastModified":"1301902453000","name":"Fujio Suga","type":"Person","_key":"68558"} +{"label":"Mieko Kondo","version":20,"id":"83204","lastModified":"1301902630000","name":"Mieko Kondo","type":"Person","_key":"68559"} +{"label":"Tatsuo End\u00f4","version":22,"id":"83205","lastModified":"1301902236000","name":"Tatsuo End\u00f4","type":"Person","_key":"68560"} +{"label":"Gen Kimura","version":22,"id":"83206","lastModified":"1301902204000","name":"Gen Kimura","type":"Person","_key":"68561"} +{"label":"Tokuz\u00f4 Tanaka","version":30,"id":"83199","lastModified":"1301902319000","name":"Tokuz\u00f4 Tanaka","type":"Person","_key":"68562"} +{"label":"Zatoichi the Fugitive","description":"After arriving in the town of Shimonita, Ichi finds that a price has been put on his head by a local yakuza boss. He's drawn into a trap, but after hearing of the slaying of a former love, Ichi furiously fights his way through the entire clan to face the killer, a hired ronin.","id":"18511","runtime":86,"imdbId":"tt0057715","trailer":"http:\/\/www.youtube.com\/watch?v=1217","version":148,"lastModified":"1301907247000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe3\/4bc95356017a3c57fe024fe3\/zatoichi-kyojo-tabi-mid.jpg","studio":"Daiei Motion Picture Company","genre":"Drama","title":"Zatoichi the Fugitive","releaseDate":-201830400000,"language":"en","type":"Movie","_key":"68563"} +{"label":"Miwa Takada","version":24,"id":"83207","lastModified":"1301902204000","name":"Miwa Takada","type":"Person","_key":"68564"} +{"label":"Junichiro Narita","version":15,"id":"150246","lastModified":"1301903122000","name":"Junichiro Narita","type":"Person","_key":"68565"} +{"label":"Katsuhiko Kobayashi","version":24,"id":"128025","lastModified":"1301902727000","name":"Katsuhiko Kobayashi","type":"Person","_key":"68566"} +{"label":"Sergeants 3","description":"No overview found.","id":"18512","runtime":112,"imdbId":"tt0056470","version":80,"lastModified":"1301904995000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe8\/4bc95357017a3c57fe024fe8\/sergeants-3-mid.jpg","title":"Sergeants 3","releaseDate":-249004800000,"language":"en","type":"Movie","_key":"68567"} +{"label":"The Naked Prey","description":"A group of men are on safari. One of the party refuses to give a gift to a tribe they encounter. The tribe is offended, seizes the party, and one-by-one, kills all but one of the safari members in various creative and horrifying ways. The last surviving member is given \"The Lion's Chance\" by the tribal leader to be hunted down by a party of tribal warriors.","id":"18513","runtime":96,"imdbId":"tt0060736","version":116,"lastModified":"1301420285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cf\/4c3afc445e73d671d20001cf\/the-naked-prey-mid.jpg","genre":"Action","title":"The Naked Prey","releaseDate":-122169600000,"language":"en","type":"Movie","_key":"68568"} +{"label":"Gert Van den Bergh","version":20,"id":"88921","lastModified":"1301903017000","name":"Gert Van den Bergh","type":"Person","_key":"68569"} +{"label":"Patrick Mynhardt","version":21,"id":"83619","lastModified":"1301902675000","name":"Patrick Mynhardt","type":"Person","_key":"68570"} +{"label":"Bella Randles","version":20,"id":"88922","lastModified":"1301903070000","name":"Bella Randles","type":"Person","_key":"68571"} +{"label":"Morrison Gampu","version":20,"id":"88924","lastModified":"1301903023000","name":"Morrison Gampu","type":"Person","_key":"68572"} +{"label":"Never Forever","description":"Sophie Lee has been trying unsuccessfully to get pregnant. Her husband's family, devout Korean Catholics, prays for the couple. His failure to have a child is deeply shameful to him, so when he attempts suicide, Sophie tries something extreme: she follows an undocumented immigrant from a fertility clinic to his apartment in New York City where she proposes to hire him to sire her child.","id":"18514","runtime":90,"imdbId":"tt0817544","version":148,"lastModified":"1301907576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be5\/4d13fd465e73d60838001be5\/never-forever-mid.jpg","genre":"Drama","title":"Never Forever","releaseDate":1169078400000,"language":"en","type":"Movie","_key":"68573"} +{"label":"Gina Kim","version":15,"id":"145359","lastModified":"1301902517000","name":"Gina Kim","type":"Person","_key":"68574"} +{"label":"David Lee McInnis","version":15,"id":"145360","lastModified":"1301902397000","name":"David Lee McInnis","type":"Person","_key":"68575"} +{"label":"Joseph Y. Kim","version":15,"id":"145361","lastModified":"1301902397000","name":"Joseph Y. Kim","type":"Person","_key":"68576"} +{"label":"Shirley Roeca","version":15,"id":"145362","lastModified":"1301902468000","name":"Shirley Roeca","type":"Person","_key":"68577"} +{"label":"Adam Resurrected","description":"Before the war, in Berlin, Adam Swas an entertainer- cabaret impresario, magician, musician-loved by all until he finds himself in a concentration camp, confronted by Commandant Klein. Adam survives the camp by becoming the Klein's \"dog\", entertaining him while his wife and daughter are sent off to die. \"Adam Resurrected\" is the story of a man who once was a dog who meets a dog who once was a boy.","id":"18516","runtime":106,"imdbId":"tt0479341","version":245,"lastModified":"1302038925000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ffd\/4bc9535b017a3c57fe024ffd\/adam-resurrected-mid.jpg","studio":"July August Productions","genre":"Drama","title":"Adam Resurrected","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"68578"} +{"label":"Idan Alterman","version":16,"id":"98305","lastModified":"1301902630000","name":"Idan Alterman","type":"Person","_key":"68579"} +{"label":"Mr. Fix It","description":"Lance Valenteen (David Boreanaz) makes a living as \"Mr. Fix It,\" a man who gets hired by men that have just recently been dumped by their girlfriend. Lance dates the guys' ex-girlfriend and becomes the worst date possible, sending the girl back into her ex-boyfriends arms. But when Lance gets hired by Bill Smith (Pat Healy) to get Sophia Fiori (Alana De La Garza) back, Lance, for the first time, starts falling for one of his marks.","id":"18517","runtime":93,"imdbId":"tt0416051","version":175,"lastModified":"1301907758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00b\/4bc9535c017a3c57fe02500b\/mr-fix-it-mid.jpg","genre":"Comedy","title":"Mr. Fix It","releaseDate":1136073600000,"language":"en","tagline":"A man who tricks women into returning to their ex-boyfriends soon finds himself falling for one of his marks.","type":"Movie","_key":"68580"} +{"label":"Free Willy 3: The Rescue","description":"Willy the whale is back, this time threatened by illegal whalers making money off sushi. Jesse, now 16, has taken a job on an orca-researching ship, along with old friend Randolph and a sarcastic scientist, Drew. On the whaler's ship is captain John Wesley and his son, Max, who isn't really pleased about his father's job, but doesn't have the gut to say so. Along the way, Willy reunites with Jesse","id":"18519","runtime":86,"imdbId":"tt0119152","version":120,"lastModified":"1301905776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/014\/4bc9535d017a3c57fe025014\/free-willy-3-the-rescue-mid.jpg","genre":"Drama","title":"Free Willy 3: The Rescue","releaseDate":870998400000,"language":"en","type":"Movie","_key":"68581"} +{"label":"Vincent Berry","version":22,"id":"83209","lastModified":"1301902544000","name":"Vincent Berry","type":"Person","_key":"68582"} +{"label":"Tasha Simms","version":22,"id":"83211","lastModified":"1301902537000","name":"Tasha Simms","type":"Person","_key":"68583"} +{"label":"Al Franken - God Spoke","description":"Join filmmaking duo Chris Hegedus and Nick Doob as their cameras follow Franken to book signings, campaign rallies and the launch of Air America Radio, documenting his transformation from irreverent funnyman to political pundit. ","id":"18520","runtime":84,"imdbId":"tt0799916","version":147,"lastModified":"1301906260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/019\/4bc9535d017a3c57fe025019\/al-franken-god-spoke-mid.jpg","genre":"Documentary","title":"Al Franken - God Spoke","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68584"} +{"label":"The Celestine Prophecy","description":"Based on James Redfield's worldwide best-selling novel, The Celestine Prophecy is a spiritual adventure film chronicling the discovery of ancient scrolls in the rainforests of Peru. The prophecy and its nine key insights predict a worldwide awakening, arising within all religious traditions, that moves humanity toward a deeper experience of spirituality.","id":"18524","runtime":99,"imdbId":"tt0398842","homepage":"http:\/\/www.celestinevision.com\/celestine\/","version":235,"lastModified":"1301904308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02f\/4bc9535e017a3c57fe02502f\/the-celestine-prophecy-mid.jpg","genre":"Action","title":"The Celestine Prophecy","releaseDate":1149120000000,"language":"en","type":"Movie","_key":"68585"} +{"label":"Miracle Of Giving Fool","description":"Ji-ho is a promising pianist who has been studying and playing abroad for years, but her career takes a blow when she is struck with stage fright. Returning home, Ji-ho is reunited with her old school friend, Seung-ryong, who, although now in his twenties, has been left with the mind of a six year old following an accident.Seung-ryong's only family is his younger sister, Ji-in, and he takes care of her by trying to sell toast outside her school, much to her embarrassment. Ji-in later becomes ill","id":"18526","runtime":99,"imdbId":"tt1233461","version":59,"lastModified":"1301905818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/050\/4bc95364017a3c57fe025050\/ba-bo-mid.jpg","title":"Miracle Of Giving Fool","releaseDate":1204156800000,"language":"en","type":"Movie","_key":"68586"} +{"label":"Hee-soon Park","version":39,"id":"93999","lastModified":"1301902513000","name":"Hee-soon Park","type":"Person","_key":"68587"} +{"label":"Ha-seon Park","version":19,"id":"125730","lastModified":"1301903005000","name":"Ha-seon Park","type":"Person","_key":"68588"} +{"label":"Grina Park","version":19,"id":"125731","lastModified":"1301903005000","name":"Grina Park","type":"Person","_key":"68589"} +{"label":"Hyeong-gook Im","version":19,"id":"125732","lastModified":"1301903005000","name":"Hyeong-gook Im","type":"Person","_key":"68590"} +{"label":"Mi-seon Jeon","version":19,"id":"125733","lastModified":"1301903005000","name":"Mi-seon Jeon","type":"Person","_key":"68591"} +{"label":"Gi-yeong Lee","version":21,"id":"125734","lastModified":"1301903005000","name":"Gi-yeong Lee","type":"Person","_key":"68592"} +{"label":"Hie-sun Park","version":19,"id":"125735","lastModified":"1301903005000","name":"Hie-sun Park","type":"Person","_key":"68593"} +{"label":"Seol-ri Choi","version":19,"id":"125736","lastModified":"1301903005000","name":"Seol-ri Choi","type":"Person","_key":"68594"} +{"label":"Jeong-kwon Kim","version":19,"id":"125729","lastModified":"1301902583000","name":"Jeong-kwon Kim","type":"Person","_key":"68595"} +{"label":"Madonna: The Confessions Tour","description":"The Confessions Tour was the seventh world concert tour by American singer-songwriter Madonna to support her album Confessions on a Dance Floor. According to Billboard The tour grossed over US$194.7 million, becoming the highest grossing tour ever for a female artist. Madonna broke her own record in 2008, with her Sticky & Sweet Tour.","id":"18527","runtime":89,"imdbId":"tt0902306","homepage":"http:\/\/www.madonna.com","version":74,"lastModified":"1301903457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/059\/4bc95364017a3c57fe025059\/madonna-confessions-tour-mid.jpg","studio":"Warner Music Entertainment","genre":"Musical","title":"Madonna: The Confessions Tour","releaseDate":1164153600000,"language":"en","type":"Movie","_key":"68596"} +{"label":"Happy Ero Christmas","description":"No overview found.","id":"18528","runtime":109,"imdbId":"tt0385737","trailer":"http:\/\/www.youtube.com\/watch?v=jszu1X0o8VY","version":80,"lastModified":"1301908399000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/063\/4bc95366017a3c57fe025063\/18528-mid.jpg","title":"Happy Ero Christmas","releaseDate":1071619200000,"language":"en","type":"Movie","_key":"68597"} +{"label":"Seon-a Kim","version":19,"id":"83221","lastModified":"1301902675000","name":"Seon-a Kim","type":"Person","_key":"68598"} +{"label":"Crips and Bloods: Made in America","description":"With a first-person look at the notorious Crips and Bloods, this film examines the conditions that have lead to decades of devastating gang violence among young African Americans growing up in South Los Angeles.","id":"18529","runtime":93,"imdbId":"tt0479044","homepage":"http:\/\/www.cripsandbloodsmovie.com\/","version":240,"lastModified":"1301904193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/075\/4bc95367017a3c57fe025075\/crips-and-bloods-made-in-america-mid.jpg","genre":"Documentary","title":"Crips and Bloods: Made in America","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"68599"} +{"label":"The Cry of the Owl","description":"A troubled young man retreats from the big city and his ex-wife for the tranquility of a small town. He is drawn into a relationship with a young woman whose boyfriend ends up dead, leaving the new arrival as a suspect.","id":"18530","runtime":101,"imdbId":"tt1034302","version":225,"lastModified":"1301904611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4bc95369017a3c57fe025087\/cry-of-the-owl-mid.jpg","genre":"Drama","title":"The Cry of the Owl","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"68600"} +{"label":"Jamie Thraves","version":21,"id":"83224","lastModified":"1301902364000","name":"Jamie Thraves","type":"Person","_key":"68601"} +{"label":"Beautiful Dreamer","description":"A pilot (Egglesfield) gets shot down and gets amnesia, later on his stricken-with-grief wife (Langton) finds him in a small town and his shocked that he doesn't remember her.","id":"18531","runtime":90,"imdbId":"tt0440961","version":66,"lastModified":"1301903790000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/090\/4bc95369017a3c57fe025090\/beautiful-dreamer-mid.jpg","genre":"Drama","title":"Beautiful Dreamer","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"68602"} +{"label":"Colin Egglesfield","version":19,"id":"83225","lastModified":"1301902501000","name":"Colin Egglesfield","type":"Person","_key":"68603"} +{"label":"Terri Farley-Teruel","version":19,"id":"83226","lastModified":"1301902324000","name":"Terri Farley-Teruel","type":"Person","_key":"68604"} +{"label":"Ron White: Behavioral Problems","description":"In this special, White riffs on such wide-ranging topics such as the unintended consequences of excessive drinking, his unique approach to funding the war and the joys of a bidet. White proves that he still hasn't solved his \"behavioral problems.\"","id":"18532","runtime":71,"imdbId":"tt1402213","version":138,"lastModified":"1301908313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09d\/4bc9536a017a3c57fe02509d\/ron-white-behavioral-problems-mid.jpg","genre":"Comedy","title":"Ron White: Behavioral Problems","releaseDate":1240099200000,"language":"en","type":"Movie","_key":"68605"} +{"label":"Ron White","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c9a\/4c0fb12c017a3c7e87000c9a\/ron-white-profile.jpg","version":34,"id":"83227","lastModified":"1301901984000","name":"Ron White","type":"Person","_key":"68606"} +{"label":"C.B. Harding","version":17,"id":"108214","lastModified":"1301903032000","name":"C.B. Harding","type":"Person","_key":"68607"} +{"label":"Bronson","description":"A young man who was sentenced to 7 years on prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.","id":"18533","runtime":92,"imdbId":"tt1172570","homepage":"www.bronsonthemovie.com","version":297,"lastModified":"1301903895000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc9536c017a3c57fe0250b2\/bronson-mid.jpg","studio":"Vertigo Films","genre":"Drama","title":"Bronson","releaseDate":1236902400000,"language":"en","type":"Movie","_key":"68608"} +{"label":"Kelly Adams","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ff\/4cf1aa205e73d61e3e0000ff\/kelly-adams-profile.jpg","version":24,"id":"125718","lastModified":"1301902047000","name":"Kelly Adams","type":"Person","_key":"68609"} +{"label":"Raising Flagg","description":"A comedy centered on a handyman (Arkin) and his lifelong competition with his neighbor (Pendleton.)","id":"18534","runtime":103,"imdbId":"tt0302498","version":102,"lastModified":"1301905986000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4bc9536c017a3c57fe0250bb\/raising-flagg-mid.jpg","genre":"Comedy","title":"Raising Flagg","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"68610"} +{"label":"Barbara Dana","version":20,"id":"83230","lastModified":"1301902141000","name":"Barbara Dana","type":"Person","_key":"68611"} +{"label":"Neal Miller","version":19,"id":"83229","lastModified":"1301902324000","name":"Neal Miller","type":"Person","_key":"68612"} +{"label":"Loving You","description":"Deke Rivers is a delivery man who is discovered by publicist Glenda Markle and country-western musician Tex Warner who want to promote the talented newcomer to fame and fortune, giving him every break he deserves. Romantic complications arise as Susan, another singer in the group, offers him devoted admiration as Glenda leads him on with promises of a golden future.","id":"18535","runtime":101,"imdbId":"tt0050659","version":98,"lastModified":"1301904563000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4bc95370017a3c57fe0250c4\/loving-you-mid.jpg","genre":"Drama","title":"Loving You","releaseDate":-388713600000,"language":"en","type":"Movie","_key":"68613"} +{"label":"Lizabeth Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/08b\/4bd5e753017a3c658900008b\/lizabeth-scott-profile.jpg","version":40,"id":"83796","lastModified":"1301901105000","name":"Lizabeth Scott","type":"Person","_key":"68614"} +{"label":"Dolores Hart","version":22,"id":"83391","lastModified":"1301902236000","name":"Dolores Hart","type":"Person","_key":"68615"} +{"label":"Paul Smith","version":20,"id":"83802","lastModified":"1301902453000","name":"Paul Smith","type":"Person","_key":"68616"} +{"label":"Kenneth Becker","version":22,"birthday":"-1200013200000","id":"83804","birthplace":"Long Beach, California, USA","lastModified":"1301902701000","name":"Kenneth Becker","type":"Person","_key":"68617"} +{"label":"Hal Kanter","version":23,"id":"3376","lastModified":"1301901366000","name":"Hal Kanter","type":"Person","_key":"68618"} +{"label":"The Company","description":"A mini-series that traces CIA activities over a 40-year period, from the beginning of the Cold War through the demise of the Soviet Union.","id":"18537","runtime":286,"imdbId":"tt0488352","version":154,"lastModified":"1301418698000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0eb\/4bc95373017a3c57fe0250eb\/the-company-mid.jpg","genre":"Drama","title":"The Company","releaseDate":1186272000000,"language":"en","type":"Movie","_key":"68619"} +{"label":"Dot the I","description":"No overview found.","id":"18538","runtime":92,"imdbId":"tt0326835","version":149,"lastModified":"1301904873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f8\/4bc95374017a3c57fe0250f8\/dot-the-i-mid.jpg","studio":"Summit Entertainment","genre":"Comedy","title":"Dot the I","releaseDate":1042848000000,"language":"en","type":"Movie","_key":"68620"} +{"label":"Tobacco Road","description":"Shiftless Jeeter Lester and his family of hillbilly stereotypes live in a rural backwater where their ancestors were once wealthy planters. Their slapstick existence is threatened by a bank's plans to take over the land for more profitable farming.","id":"18539","runtime":84,"imdbId":"tt0034297","version":62,"lastModified":"1301906597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/101\/4bc95375017a3c57fe025101\/tobacco-road-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Comedy","title":"Tobacco Road","releaseDate":-910828800000,"language":"en","type":"Movie","_key":"68621"} +{"label":"Marjorie Rambeau","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/173\/4c518b8e7b9aa13d4b000173\/marjorie-rambeau-profile.jpg","version":31,"id":"83235","lastModified":"1301901715000","name":"Marjorie Rambeau","type":"Person","_key":"68622"} +{"label":"William Tracy","version":27,"id":"83236","lastModified":"1301983210000","name":"William Tracy","type":"Person","_key":"68623"} +{"label":"Elizabeth Patterson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7c6\/4cf913197b9aa15c8e0007c6\/elizabeth-patterson-profile.jpg","version":29,"id":"83237","lastModified":"1301901529000","name":"Elizabeth Patterson","type":"Person","_key":"68624"} +{"label":"Freezer Burn","description":"A brilliant scientist falls for his wife's 14-year-old art student and, using the technology from his research, he figures out a way for them to be together.","id":"18540","runtime":94,"imdbId":"tt0496304","homepage":"http:\/\/www.freezerburnmovie.com\/","version":95,"lastModified":"1301907764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/10a\/4bc95375017a3c57fe02510a\/freezer-burn-mid.jpg","studio":"HCP Productions","genre":"Comedy","title":"Freezer Burn","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68625"} +{"label":"Robert Harriell","version":20,"id":"83240","lastModified":"1301902710000","name":"Robert Harriell","type":"Person","_key":"68626"} +{"label":"Michael Consiglio","version":20,"id":"83241","lastModified":"1301902533000","name":"Michael Consiglio","type":"Person","_key":"68627"} +{"label":"Ivo Velon","version":40,"id":"83242","lastModified":"1301901151000","name":"Ivo Velon","type":"Person","_key":"68628"} +{"label":"C.C. Seymour","version":19,"id":"83243","lastModified":"1301902675000","name":"C.C. Seymour","type":"Person","_key":"68629"} +{"label":"Ella Rae Peck","version":19,"id":"83244","lastModified":"1301902675000","name":"Ella Rae Peck","type":"Person","_key":"68630"} +{"label":"Charles Hood","version":20,"id":"83245","lastModified":"1301902533000","name":"Charles Hood","type":"Person","_key":"68631"} +{"label":"Revenge of the Nerds III: The Next Generation","description":"The nerds are now in control of the university, as a result of Lewis Skolnick and the rest's actions in the two previous movies. A new generation of sportsmen arrive, however, determined on winning the school back. The principle, himself an ex-nerd fighter, helps them, and the nerds return to suppression. Harold Skolnick needs help from his uncle Lewis, the hero of the first two movies. Lewis, however, are not too proud of his nerd past, and won't reveal any of it, much less help his nephew. How","id":"18543","runtime":93,"imdbId":"tt0105251","version":118,"lastModified":"1301904441000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/113\/4bc95376017a3c57fe025113\/revenge-of-the-nerds-iii-the-next-generation-mid.png","genre":"Comedy","title":"Revenge of the Nerds III: The Next Generation","releaseDate":710985600000,"language":"en","type":"Movie","_key":"68632"} +{"label":"Roland Mesa","version":19,"id":"117662","lastModified":"1301902705000","name":"Roland Mesa","type":"Person","_key":"68633"} +{"label":"Crusty Demons: A Bloodthirsty Saga","description":"Another year and another amazing Crusty adventure. This time we feature the world's best fmx riders going head to head for the world's most mind blowing world records. From double back flips to insande long distance jumps, the Crusty team travels the world through the extremes of Alaska, the head of Mexico and some of the best secret riding compounds of the world. Also journey throughout Australia","id":"18545","runtime":0,"version":22,"lastModified":"1301907246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/121\/4bc95379017a3c57fe025121\/crusty-demons-a-bloodthirsty-saga-mid.jpg","studio":"Fleshwound Films","genre":"Action","title":"Crusty Demons: A Bloodthirsty Saga","releaseDate":1228089600000,"language":"en","type":"Movie","_key":"68634"} +{"label":"Scott Murray","version":15,"id":"83249","lastModified":"1301902236000","name":"Scott Murray","type":"Person","_key":"68635"} +{"label":"Robbie Maddison","version":15,"id":"83250","lastModified":"1301902453000","name":"Robbie Maddison","type":"Person","_key":"68636"} +{"label":"The Ferryman","description":"No overview found.","id":"18547","runtime":100,"imdbId":"tt0808265","version":214,"lastModified":"1301417340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12a\/4bc9537a017a3c57fe02512a\/the-ferryman-mid.jpg","genre":"Horror","title":"The Ferryman","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68637"} +{"label":"Filth and Wisdom","description":"No overview found.","id":"18548","runtime":81,"imdbId":"tt1042499","version":167,"lastModified":"1301905761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13b\/4bc9537b017a3c57fe02513b\/filth-and-wisdom-mid.jpg","genre":"Comedy","title":"Filth and Wisdom","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"68638"} +{"label":"Holly Weston","version":13,"id":"182085","lastModified":"1301903275000","name":"Holly Weston","type":"Person","_key":"68639"} +{"label":"Vicky McClure","version":16,"id":"148139","lastModified":"1301903094000","name":"Vicky McClure","type":"Person","_key":"68640"} +{"label":"Flannel Pajamas","description":"A study of a relationship that starts quickly, burns bright, and then gets rocky, not from any one thing, but from an accumulation of civilization and its discontents. Stuart is glib and generous, Nicole is shy and forthright. Is love enough to see them through?","id":"18549","runtime":124,"imdbId":"tt0432290","version":167,"lastModified":"1301906347000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14e\/4bc95380017a3c57fe02514e\/flannel-pajamas-mid.jpg","studio":"Gigantic Pictures","genre":"Drama","title":"Flannel Pajamas","releaseDate":1163721600000,"language":"en","type":"Movie","_key":"68641"} +{"label":"Fled","description":"Two prisoners chained together flee during an escape attempt gone bad.","id":"18550","runtime":105,"imdbId":"tt0116320","version":112,"lastModified":"1301905818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/163\/4bc95382017a3c57fe025163\/fled-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Action","title":"Fled","releaseDate":837734400000,"language":"en","type":"Movie","_key":"68642"} +{"label":"Robert Hooks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3ea\/4ca0b0c47b9aa15e3c0003ea\/robert-hooks-profile.jpg","version":26,"id":"88094","lastModified":"1301901857000","name":"Robert Hooks","type":"Person","_key":"68643"} +{"label":"Michael Nader","version":17,"id":"95938","lastModified":"1301902630000","name":"Michael Nader","type":"Person","_key":"68644"} +{"label":"Steve Carlisle","version":17,"id":"95940","lastModified":"1301902884000","name":"Steve Carlisle","type":"Person","_key":"68645"} +{"label":"J. Don Ferguson","version":19,"id":"95941","lastModified":"1301902884000","name":"J. Don Ferguson","type":"Person","_key":"68646"} +{"label":"Kathy Payne","version":17,"id":"95942","lastModified":"1301902884000","name":"Kathy Payne","type":"Person","_key":"68647"} +{"label":"Flesh and Bone","description":"Arlis Sweeney (Dennis Quaid) leads a life as simple and unchanging as his native West Texas plains. He stocks vending machines, moving from town to town and from one familiar lover to another. Kay Davies (Meg Ryan) also calls the road her home. Running from a broken marriage, she doesn't know where she's headed, but any place is better than where she's been. Fate brings them together and gives them a future, until a figure from the past \u2013 Arlis's father (James Caan) \u2013 awakens a memory as deep an","id":"18551","runtime":126,"imdbId":"tt0106926","version":110,"lastModified":"1301906185000","genre":"Drama","title":"Flesh and Bone","releaseDate":752457600000,"language":"en","type":"Movie","_key":"68648"} +{"label":"Flirting with Danger","description":"No overview found.","id":"18552","runtime":0,"version":451,"lastModified":"1301735049000","title":"Flirting with Danger","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68649"} +{"label":"Forever Mine","description":"A hotel cabana boy falls for the wife of a powerful politico. But when she confesses to the affair, her husband determines to end it forever. Starring Ray Liotta, Joseph Fiennes and Gretchen Mol.","id":"18553","runtime":115,"imdbId":"tt0179182","version":86,"lastModified":"1301907733000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/174\/4bc95384017a3c57fe025174\/forever-mine-mid.jpg","genre":"Crime","title":"Forever Mine","releaseDate":944697600000,"language":"en","type":"Movie","_key":"68650"} +{"label":"Myk Watford","version":22,"id":"84955","lastModified":"1301902627000","name":"Myk Watford","type":"Person","_key":"68651"} +{"label":"Forgiving the Franklins","description":"No overview found.","id":"18554","runtime":0,"imdbId":"tt0443512","homepage":"http:\/\/www.forgivingthefranklins.com\/","version":105,"lastModified":"1301004286000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92d\/4d4d69987b9aa13ab800892d\/forgiving-the-franklins-mid.jpg","genre":"Comedy","title":"Forgiving the Franklins","releaseDate":1136073600000,"language":"en","tagline":"The Religious Sex Comedy That Believes In Odd","type":"Movie","_key":"68652"} +{"label":"Foxfire","description":"The story of five teenage girls who form an unlikely bond after beating up a teacher who has sexually harassed them. They build a solid friendship but their wild ways begin to get out of control.","id":"18555","runtime":102,"imdbId":"tt0116353","version":108,"lastModified":"1301905181000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17d\/4bc95385017a3c57fe02517d\/foxfire-mid.jpg","genre":"Action","title":"Foxfire","releaseDate":840758400000,"language":"en","tagline":"It took them 17 years to learn the rules. And one week to break them all.","type":"Movie","_key":"68653"} +{"label":"Annette Haywood-Carter","version":20,"id":"119310","lastModified":"1301902675000","name":"Annette Haywood-Carter","type":"Person","_key":"68654"} +{"label":"Hedy Burress","version":27,"id":"41558","lastModified":"1301901575000","name":"Hedy Burress","type":"Person","_key":"68655"} +{"label":"Jenny Shimizu","version":20,"id":"119311","lastModified":"1301902324000","name":"Jenny Shimizu","type":"Person","_key":"68656"} +{"label":"Sarah Rosenberg","version":21,"id":"119312","lastModified":"1301902534000","name":"Sarah Rosenberg","type":"Person","_key":"68657"} +{"label":"Steel Trap","description":"A who-is-it setting in the claustrophobic corridors of an abandoned and locked-off office building that has several guests invited to a party by their mysterious, unknown host. Only it is they who are the victims of their crimes. Suspense and mistrust are not the only stalker in this cat and mouse game of wits and fear. Who is the stalker? Why is he killing? And what is it exactly that everyone here has in common?","id":"18556","runtime":89,"imdbId":"tt0973790","version":135,"lastModified":"1301905570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/562\/4d07f3c45e73d621a5004562\/steel-trap-mid.jpg","genre":"Horror","title":"Steel Trap","releaseDate":1167609600000,"language":"en","tagline":"Surviving Each Floor Is The Name Of The Game.","type":"Movie","_key":"68658"} +{"label":"Pascal Langdale","version":20,"id":"102374","lastModified":"1301902838000","name":"Pascal Langdale","type":"Person","_key":"68659"} +{"label":"Georgia Mackenzie","version":17,"id":"144289","lastModified":"1301902295000","name":"Georgia Mackenzie","type":"Person","_key":"68660"} +{"label":"Julia Ballard","version":16,"id":"144290","lastModified":"1301902234000","name":"Julia Ballard","type":"Person","_key":"68661"} +{"label":"Joanna Bobin","version":16,"id":"144291","lastModified":"1301902153000","name":"Joanna Bobin","type":"Person","_key":"68662"} +{"label":"Adam Rayner","version":16,"id":"144292","lastModified":"1301902151000","name":"Adam Rayner","type":"Person","_key":"68663"} +{"label":"Acolytes","description":"Three teenagers blackmail a serial killer.","id":"18557","runtime":91,"imdbId":"tt0902952","version":276,"lastModified":"1301905321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/186\/4bc95385017a3c57fe025186\/acolytes-mid.jpg","genre":"Horror","title":"Acolytes","releaseDate":1210809600000,"language":"en","type":"Movie","_key":"68664"} +{"label":"Scenes of a Sexual Nature","description":"Sex and love. Some seek it, some need it, some spurn it and some pay for it, but we're all involved in it. Set on one afternoon on Hampstead Heath, London, the film investigates the minutiae of seven couples. What makes us tick?","id":"18558","runtime":91,"imdbId":"tt0475380","version":157,"lastModified":"1301904377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f6\/4c5649147b9aa151f30000f6\/scenes-of-a-sexual-nature-mid.jpg","studio":"Tin Pan Films","genre":"Comedy","title":"Scenes of a Sexual Nature","releaseDate":1162512000000,"language":"en","type":"Movie","_key":"68665"} +{"label":"Holly Aird","version":23,"id":"47590","lastModified":"1301902141000","name":"Holly Aird","type":"Person","_key":"68666"} +{"label":"Elle Mckenzie","version":20,"id":"84925","lastModified":"1301902630000","name":"Elle Mckenzie","type":"Person","_key":"68667"} +{"label":"Eglantine Rembauville-Nicolle","version":24,"id":"84926","lastModified":"1301902557000","name":"Eglantine Rembauville-Nicolle","type":"Person","_key":"68668"} +{"label":"Benjamin Whitrow","version":18,"id":"84927","lastModified":"1301902630000","name":"Benjamin Whitrow","type":"Person","_key":"68669"} +{"label":"Nicholas Sidi","version":20,"id":"84928","lastModified":"1301902630000","name":"Nicholas Sidi","type":"Person","_key":"68670"} +{"label":"Ed Blum","version":20,"id":"84929","lastModified":"1301901862000","name":"Ed Blum","type":"Person","_key":"68671"} +{"label":"Johnny and the dead","description":"No overview found.","id":"18559","runtime":0,"imdbId":"tt0294117","version":314,"lastModified":"1301908387000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18b\/4bc95385017a3c57fe02518b\/johnny-and-the-dead-mid.jpg","genre":"Family","title":"Johnny and the dead","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68672"} +{"label":"Jotham Annan","version":20,"id":"83251","lastModified":"1301902542000","name":"Jotham Annan","type":"Person","_key":"68673"} +{"label":"Paul Child","version":19,"id":"83252","lastModified":"1301902675000","name":"Paul Child","type":"Person","_key":"68674"} +{"label":"Frank Ellis","version":20,"id":"34165","lastModified":"1301901777000","name":"Frank Ellis","type":"Person","_key":"68675"} +{"label":"Soul Music","description":"The young druid Imp y Celyn comes to Ankh-Morpork to become a famous musician, but a new guitar from a mysterious shop possesses him with a new kind of music - the Music with Rocks In. To make matters worse, Death, saddened by the death of his adopted daughter, has gone away to try and forget, and his granddaughter Susan suddenly has the family duty passed on to her.","id":"18560","runtime":159,"imdbId":"tt0159914","trailer":"http:\/\/www.youtube.com\/watch?v=1832","version":76,"lastModified":"1301904828000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8a\/4d1fcd0b5e73d66b30001b8a\/soul-music-mid.jpg","studio":"Acorn Media","title":"Soul Music","releaseDate":863395200000,"language":"en","type":"Movie","_key":"68676"} +{"label":"Oxygen","description":"A masochistic cop, who hides her predilection from her cop husband, gets involved in pursuing a kidnapper nicknamed Harry for Harry Houdini","id":"18561","runtime":92,"imdbId":"tt0160620","version":92,"lastModified":"1301908642000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b7d\/4c71b14a7b9aa13ab9000b7d\/oxygen-mid.jpg","title":"Oxygen","releaseDate":942364800000,"language":"en","type":"Movie","_key":"68677"} +{"label":"Gung Ho!","description":"No overview found.","id":"18562","runtime":88,"imdbId":"tt0035958","version":214,"lastModified":"1301906615000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/199\/4bc95386017a3c57fe025199\/gung-ho-mid.jpg","genre":"Action","title":"Gung Ho!","releaseDate":-821577600000,"language":"en","type":"Movie","_key":"68678"} +{"label":"Alan Curtis","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/699\/4bf3e5d8017a3c320b000699\/alan-curtis-profile.jpg","version":31,"id":"83253","lastModified":"1301901493000","name":"Alan Curtis","type":"Person","_key":"68679"} +{"label":"Adrenaline Rush: The Science of Risk","description":"Adrenaline Rush: the Science of Risk takes audiences on a breathtaking journey from extraordinary heights, featuring spectacular footage of extreme skydiving while delving into both the biology of risk-taking and the physics that make human flight possible","id":"18563","runtime":40,"imdbId":"tt0353164","version":85,"lastModified":"1301906513000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a7\/4bc95387017a3c57fe0251a7\/adrenaline-rush-the-science-of-risk-mid.jpg","studio":"Sky High Entertainment","genre":"Documentary","title":"Adrenaline Rush: The Science of Risk","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"68680"} +{"label":"Uffe Holms Flash back","description":"Mere end 100 min stand-up hvor en veloplagt Uffe Holm reflekterer over udviklingen de sidste 30 \u00e5r.\r\n\r\nUffe er ikke blevet en bitter gammel mand - han synes m\u00e5ske bare at det er lidt fejt, at der ikke var en eneste pige i klassen der var glatbarberet i 91.\r\n\r\nVil du se en af Danmarks bedste komikere skyde med skarpt fra sit nostalgiske hj\u00f8rne, s\u00e5 st\u00e5r du med den helt rigtige dvd i h\u00e5nden.","id":"18564","runtime":100,"version":18,"lastModified":"1301904725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1b0\/4bc95387017a3c57fe0251b0\/uffe-holms-flashback-mid.jpg","title":"Uffe Holms Flash back","releaseDate":1192752000000,"language":"en","type":"Movie","_key":"68681"} +{"label":"Uffe Holm","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/365\/4c6c37647b9aa13ab9000365\/uffe-holm-profile.jpg","version":30,"id":"91748","lastModified":"1301902671000","name":"Uffe Holm","type":"Person","_key":"68682"} +{"label":"Mick \u00d8gendahl - UNDSKYLD!","description":"Mick \u00d8gendahl's \"cinema comedy show\" from his 2006 tour, a hybrid of live stand-up and fiction featuring Kim Bodnia.","id":"18565","runtime":110,"imdbId":"tt0949566","version":31,"lastModified":"1301904993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1bf\/4bc95388017a3c57fe0251bf\/mick-gendahl-undskyld-mid.jpg","title":"Mick \u00d8gendahl - UNDSKYLD!","releaseDate":1160352000000,"language":"en","type":"Movie","_key":"68683"} +{"label":"Mick \u00d8gendahl - T\u00e5fr\u00e6ser","description":"Comedy show featuring Danish stand-up comedian Mick \u00d8gendahl.","id":"18566","runtime":123,"imdbId":"tt0425249","version":35,"lastModified":"1301905697000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4bc95388017a3c57fe0251c4\/mick-gendahl-tafrser-mid.jpg","title":"Mick \u00d8gendahl - T\u00e5fr\u00e6ser","releaseDate":1099872000000,"language":"en","type":"Movie","_key":"68684"} +{"label":"Min s\u00f8sters b\u00f8rn v\u00e6lter byen","description":"Politiassistent M\u00f8ller\u00b4og psykiateren Dr. Mogensen f\u00e5r noget at se til, da Pusle til alles overraskelse finder ud af, at hun kan trylle. P\u00e5 sin f\u00f8dselsdag f\u00e5r hun tilsendt en gammel, magisk figur fra sin onkel I Sydamerika. Samme dag m\u00e5 Pusles for\u00e6ldre rejse til London, og den store b\u00f8rneflok er nu overladt til strikse tante Alma.","id":"18567","runtime":95,"imdbId":"tt0063304","version":28,"lastModified":"1301905322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c9\/4bc9538b017a3c57fe0251c9\/min-ssters-brn-vlter-byen-mid.jpg","studio":"Saga Film","title":"Min s\u00f8sters b\u00f8rn v\u00e6lter byen","releaseDate":-38620800000,"language":"en","type":"Movie","_key":"68685"} +{"label":"Annelise Reenberg","version":44,"id":"83258","lastModified":"1301902571000","name":"Annelise Reenberg","type":"Person","_key":"68686"} +{"label":"Un uomo da rispettare","description":"No overview found.","id":"18568","runtime":0,"imdbId":"tt0069446","version":31,"lastModified":"1301418879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ce\/4bc9538b017a3c57fe0251ce\/un-uomo-da-rispettare-mid.png","title":"Un uomo da rispettare","releaseDate":92620800000,"language":"en","type":"Movie","_key":"68687"} +{"label":"Florinda Bolkan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/5e7\/4ca0a4745e73d670490005e7\/florinda-bolkan-profile.jpg","version":34,"id":"83259","lastModified":"1301902419000","name":"Florinda Bolkan","type":"Person","_key":"68688"} +{"label":"Made for Each Other","description":"A couple struggle to find happiness after a whirlwind courtship.","id":"18569","runtime":92,"imdbId":"tt0031602","version":107,"lastModified":"1301906939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4bc9538d017a3c57fe0251d7\/made-for-each-other-mid.jpg","genre":"Drama","title":"Made for Each Other","releaseDate":-974851200000,"language":"en","type":"Movie","_key":"68689"} +{"label":"Food, Inc.","description":"The current method of raw food production is largely a response to the growth of the fast food industry since the 1950s. The production of food overall has more drastically changed since that time than the several thousand years prior. Controlled primarily by a handful of multinational corporations, the global food production business \u2013 with an emphasis on the business \u2013 has as its unwritten goals production of large quantities of food at low direct inputs (most often subsidized) resulting in en","id":"18570","runtime":94,"imdbId":"tt1286537","trailer":"http:\/\/www.youtube.com\/watch?v=IJDGUxqEdYY","version":232,"lastModified":"1301902266000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e4\/4bc9538f017a3c57fe0251e4\/food-inc-mid.jpg","studio":"Magnolia Pictures","genre":"Documentary","title":"Food, Inc.","releaseDate":1220745600000,"language":"en","tagline":"You'll never look at dinner the same way again.","type":"Movie","_key":"68690"} +{"label":"Michael Pollan","version":22,"id":"83261","lastModified":"1301901579000","name":"Michael Pollan","type":"Person","_key":"68691"} +{"label":"Eric Schlosser","version":23,"id":"54758","lastModified":"1301916408000","name":"Eric Schlosser","type":"Person","_key":"68692"} +{"label":"Robert Kenner","version":17,"id":"95687","lastModified":"1301901862000","name":"Robert Kenner","type":"Person","_key":"68693"} +{"label":"Phantom Punch","description":"From his discovery by a priest while serving time at the Missouri State Penitentiary to the infamous 'Phantom Punch' by Cassius Clay which effectively ended his career, the movie spans the years from 1950 to Liston's mysterious and untimely death in 1971.","id":"18571","runtime":105,"imdbId":"tt1131747","version":149,"lastModified":"1301904873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/032\/4bd3def0017a3c7fac000032\/phantom-punch-mid.jpg","title":"Phantom Punch","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"68694"} +{"label":"House of Wax","description":"A horribly disfigured sculptor opens up the House of Wax in New York, using the wax-covered bodies of his victims as his displays.","id":"18573","runtime":90,"imdbId":"tt0045888","version":272,"lastModified":"1301985259000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/202\/4bc95391017a3c57fe025202\/house-of-wax-mid.jpg","studio":"Bryan Foy Productions","genre":"Crime","title":"House of Wax","releaseDate":-526608000000,"language":"en","type":"Movie","_key":"68695"} +{"label":"Phyllis Kirk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/26d\/4c77bcca7b9aa16a0a00026d\/phyllis-kirk-profile.jpg","version":26,"id":"83262","lastModified":"1301985258000","name":"Phyllis Kirk","type":"Person","_key":"68696"} +{"label":"Ubu kr\u00f3l","description":"No overview found.","id":"18574","runtime":90,"imdbId":"tt0380779","version":35,"lastModified":"1301907246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20b\/4bc95392017a3c57fe02520b\/ubu-krol-mid.jpg","studio":"Eurofilm","title":"Ubu kr\u00f3l","releaseDate":1074211200000,"language":"en","type":"Movie","_key":"68697"} +{"label":"Piotr Szulkin","version":19,"id":"83263","lastModified":"1301902630000","name":"Piotr Szulkin","type":"Person","_key":"68698"} +{"label":"Katarzyna Figura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06b\/4c7deaf25e73d648df00006b\/katarzyna-figura-profile.jpg","version":21,"birthday":"-245552400000","id":"83264","birthplace":"Warsaw, Poland","lastModified":"1301901990000","name":"Katarzyna Figura","type":"Person","_key":"68699"} +{"label":"Marek Siudym","version":19,"id":"83265","lastModified":"1301902630000","name":"Marek Siudym","type":"Person","_key":"68700"} +{"label":"Psy","description":"No overview found.","id":"18575","runtime":104,"imdbId":"tt0105185","version":191,"lastModified":"1301905657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08d\/4bcc0d14017a3c0f2700008d\/psy-mid.jpg","title":"Psy","releaseDate":722217600000,"language":"en","type":"Movie","_key":"68701"} +{"label":"Cezary Pazura","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/061\/4c7de9ad5e73d648df000061\/cezary-pazura-profile.jpg","version":25,"id":"83266","lastModified":"1301901838000","name":"Cezary Pazura","type":"Person","_key":"68702"} +{"label":"Wladyslaw Pasikowski","version":25,"id":"82310","lastModified":"1301901776000","name":"Wladyslaw Pasikowski","type":"Person","_key":"68703"} +{"label":"The World of Eric Carle","description":"No overview found.","id":"18576","runtime":32,"imdbId":"tt0426381","version":32,"lastModified":"1301907417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/214\/4bc95392017a3c57fe025214\/the-world-of-eric-carle-mid.jpg","title":"The World of Eric Carle","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68704"} +{"label":"The Ramen Girl","description":"An American woman is stranded in Tokyo after breaking up with her boyfriend. Searching for direction in life, she trains to be a r\u00e2men chef under a tyrannical Japanese master.","id":"18585","runtime":122,"imdbId":"tt0806165","version":227,"lastModified":"1301907115000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a0\/4c7876c35e73d613d50000a0\/the-ramen-girl-mid.jpg","genre":"Comedy","title":"The Ramen Girl","releaseDate":1242086400000,"language":"en","type":"Movie","_key":"68705"} +{"label":"Robert Allan Ackerman","version":19,"id":"83588","lastModified":"1301901946000","name":"Robert Allan Ackerman","type":"Person","_key":"68706"} +{"label":"The Hottest State","description":"A young actor from Texas tries to make it in New York while struggling in his relationship with a beautiful singer\/songwriter.","id":"18586","runtime":117,"imdbId":"tt0496319","version":175,"lastModified":"1301905057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/226\/4bc95393017a3c57fe025226\/the-hottest-state-mid.jpg","genre":"Drama","title":"The Hottest State","releaseDate":1187913600000,"language":"en","type":"Movie","_key":"68707"} +{"label":"Daniel Ross","version":21,"id":"83270","lastModified":"1301902528000","name":"Daniel Ross","type":"Person","_key":"68708"} +{"label":"Glen Powell","version":19,"id":"83271","lastModified":"1301902388000","name":"Glen Powell","type":"Person","_key":"68709"} +{"label":"Cherami Leigh","version":24,"id":"83272","lastModified":"1301902191000","name":"Cherami Leigh","type":"Person","_key":"68710"} +{"label":"Anne Clarke","version":21,"id":"83273","lastModified":"1301902527000","name":"Anne Clarke","type":"Person","_key":"68711"} +{"label":"10 to Midnight","description":"Veteran cop Leo Kessler (Charles Bronson) tracks down a serial killer and places fake evidence trying to convict him. This is discovered and the killer is released. Who then goes after Kessler's daughter for revenge.","id":"18587","runtime":101,"imdbId":"tt0085121","trailer":"http:\/\/www.youtube.com\/watch?v=REunhylAolM","version":293,"lastModified":"1301905858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/237\/4bc95395017a3c57fe025237\/10-to-midnight-mid.jpg","genre":"Action","title":"10 to Midnight","releaseDate":410227200000,"language":"en","tagline":"Forget what\u2019s legal...do what\u2019s right!","type":"Movie","_key":"68712"} +{"label":"Gene Davis","version":17,"id":"94766","lastModified":"1301902236000","name":"Gene Davis","type":"Person","_key":"68713"} +{"label":"52 Pick-Up","description":"Harry Mitchell is a successful Los Angeles manufacturer whose wife is running for city council. His life is turned upside down when three blackmailers confront him with a video tape of him with his young mistress and demand $100,000. Fearing that the story will hurt his wife's political campaign if he goes to the police, Harry pretends that he will pay the men, but does not follow through.","id":"18588","runtime":110,"imdbId":"tt0090567","version":123,"lastModified":"1302038718000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/240\/4bc9539a017a3c57fe025240\/52-pick-up-mid.jpg","genre":"Suspense","title":"52 Pick-Up","releaseDate":504921600000,"language":"en","type":"Movie","_key":"68714"} +{"label":"Robert Trebor","version":19,"id":"114271","lastModified":"1301902884000","name":"Robert Trebor","type":"Person","_key":"68715"} +{"label":"Lonny Chapman","version":20,"id":"95598","lastModified":"1301902990000","name":"Lonny Chapman","type":"Person","_key":"68716"} +{"label":"Alex Henteloff","version":19,"id":"114272","lastModified":"1301902884000","name":"Alex Henteloff","type":"Person","_key":"68717"} +{"label":"Michelle Walker","version":19,"id":"114273","lastModified":"1301902884000","name":"Michelle Walker","type":"Person","_key":"68718"} +{"label":"Philip Bartko","version":21,"id":"114274","lastModified":"1301902884000","name":"Philip Bartko","type":"Person","_key":"68719"} +{"label":"Tom Byron","version":18,"id":"106895","lastModified":"1301902490000","name":"Tom Byron","type":"Person","_key":"68720"} +{"label":"Amber Lynn","version":25,"id":"112298","lastModified":"1301902630000","name":"Amber Lynn","type":"Person","_key":"68721"} +{"label":"Sharon Mitchell","version":23,"id":"99606","lastModified":"1301901554000","name":"Sharon Mitchell","type":"Person","_key":"68722"} +{"label":"Ines Ochoa","version":19,"id":"114275","lastModified":"1301902630000","name":"Ines Ochoa","type":"Person","_key":"68723"} +{"label":"Allyson Palmeter","version":19,"id":"114276","lastModified":"1301902884000","name":"Allyson Palmeter","type":"Person","_key":"68724"} +{"label":"Katherine Poland","version":19,"id":"114277","lastModified":"1301902884000","name":"Katherine Poland","type":"Person","_key":"68725"} +{"label":"Debra Satell","version":19,"id":"114278","lastModified":"1301902630000","name":"Debra Satell","type":"Person","_key":"68726"} +{"label":"Amy White","version":19,"id":"114279","lastModified":"1301902884000","name":"Amy White","type":"Person","_key":"68727"} +{"label":"The Abductors","description":"No overview found.","id":"18589","runtime":90,"imdbId":"tt0068164","version":101,"lastModified":"1300980597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4c13e3e47b9aa10456000048\/the-abductors-mid.jpg","genre":"Action","title":"The Abductors","releaseDate":63072000000,"language":"en","type":"Movie","_key":"68728"} +{"label":"The Architect","description":"An architect engages in conflict with an activist who lives in a dangerous complex the architect designed.","id":"18590","runtime":82,"imdbId":"tt0466665","version":144,"lastModified":"1301906846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e6\/4c1f47dc5e73d60bb10000e6\/the-architect-mid.jpg","genre":"Drama","title":"The Architect","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"68729"} +{"label":"Uncovered","description":"While restoring an old painting showing a woman and two men playing chess, Julia discovers the text \"Who killed the knight\" underneath the paint. The owner of the painting tells her that one of his forefathers was killed, the painting might identify the murderer. When Julia's friend is killed she understands that there is more to it. She consults Domenec, a chess genius who reconstructs the game","id":"18591","runtime":112,"imdbId":"tt0111549","version":83,"lastModified":"1301904461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d8\/4d667f4d5e73d66a670011d8\/uncovered-mid.jpg","genre":"Action","title":"Uncovered","releaseDate":757382400000,"language":"en","type":"Movie","_key":"68730"} +{"label":"John Wood","version":19,"id":"91989","lastModified":"1301902561000","name":"John Wood","type":"Person","_key":"68731"} +{"label":"Sinead Cusack","version":17,"id":"147481","lastModified":"1301902305000","name":"Sinead Cusack","type":"Person","_key":"68732"} +{"label":"Around the Fire","description":"No overview found.","id":"18592","runtime":106,"imdbId":"tt0139030","version":165,"lastModified":"1301907764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4bc9539d017a3c57fe02525e\/around-the-fire-mid.jpg","genre":"Drama","title":"Around the Fire","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68733"} +{"label":"Barbarellas","description":"No overview found.","id":"18593","runtime":0,"version":22,"lastModified":"1300980598000","title":"Barbarellas","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68734"} +{"label":"Garage","description":"A tragicomedy set in the world of gas stations in rural Ireland, where over-diligent employee of the garage searches for intimacy during the course of a life-changing summer.","id":"18595","runtime":85,"imdbId":"tt0878674","version":67,"lastModified":"1301416127000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/270\/4bc9539e017a3c57fe025270\/garage-mid.jpg","genre":"Comedy","title":"Garage","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68735"} +{"label":"Pat Shortt","version":22,"id":"83278","lastModified":"1301901588000","name":"Pat Shortt","type":"Person","_key":"68736"} +{"label":"Conor Ryan","version":19,"id":"83279","lastModified":"1301901645000","name":"Conor Ryan","type":"Person","_key":"68737"} +{"label":"Tommy Fitzgerald","version":19,"id":"83280","lastModified":"1301901645000","name":"Tommy Fitzgerald","type":"Person","_key":"68738"} +{"label":"Leonard Abrahamson","version":19,"id":"83281","lastModified":"1301902324000","name":"Leonard Abrahamson","type":"Person","_key":"68739"} +{"label":"The Jammed","description":"A thriller about trafficking, governmental deportation and the sex slave trade in Melbourne, Australia.","id":"18596","runtime":89,"imdbId":"tt0791178","version":75,"lastModified":"1301907088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/279\/4bc9539e017a3c57fe025279\/the-jammed-mid.jpg","genre":"Drama","title":"The Jammed","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"68740"} +{"label":"Veronica Sywak","version":19,"id":"83282","lastModified":"1301902236000","name":"Veronica Sywak","type":"Person","_key":"68741"} +{"label":"Masa Yamaguchi","version":19,"id":"83283","lastModified":"1301902236000","name":"Masa Yamaguchi","type":"Person","_key":"68742"} +{"label":"Dee McLachlan","version":19,"id":"83284","lastModified":"1301902236000","name":"Dee McLachlan","type":"Person","_key":"68743"} +{"label":"Jimmy Carr: Live","description":"With his first ever DVD, Jimmy\u2019s unique brand of humour demonstrates the observations he makes on life\u2019s taboos using witty one-liners and offensive putdowns. Recorded during the acclaimed comedian\u2019s sell out shows at London\u2019s Bloomsbury theatre. ","id":"18597","runtime":75,"imdbId":"tt0810916","homepage":"http:\/\/www.jimmycarr.com","version":76,"lastModified":"1301906051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4bc9539f017a3c57fe02527e\/jimmy-carr-live-mid.jpg","studio":"Ealing Studios","genre":"Comedy","title":"Jimmy Carr: Live","releaseDate":1099872000000,"language":"en","type":"Movie","_key":"68744"} +{"label":"Her Best Move","description":"15 year-old soccer prodigy, Sara Davis, has a chance to join the U.S. National Team, but she must juggle high school, romance, sports, and parental pressure while deciding her own priorities.","id":"18598","runtime":96,"imdbId":"tt0469429","version":437,"lastModified":"1301908016000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/296\/4bc953a1017a3c57fe025296\/her-best-move-mid.jpg","studio":"Summertime Films","genre":"Comedy","title":"Her Best Move","releaseDate":1175299200000,"language":"en","type":"Movie","_key":"68745"} +{"label":"Leah Pipes","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/120\/4ceea1fe5e73d65314000120\/leah-pipes-profile.jpg","version":24,"id":"83285","lastModified":"1301901602000","name":"Leah Pipes","type":"Person","_key":"68746"} +{"label":"Lisa Darr","version":20,"id":"83286","lastModified":"1301902719000","name":"Lisa Darr","type":"Person","_key":"68747"} +{"label":"Morvern Callar","description":"Following her boyfriend's suicide, supermarket clerk Morvern Callar passes off his unpublished novel as her own... ","id":"18602","runtime":97,"imdbId":"tt0300214","version":125,"lastModified":"1301905401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29f\/4bc953a1017a3c57fe02529f\/morvern-callar-mid.jpg","genre":"Drama","title":"Morvern Callar","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"68748"} +{"label":"Lynne Ramsay","version":22,"id":"83287","lastModified":"1301902333000","name":"Lynne Ramsay","type":"Person","_key":"68749"} +{"label":"Hands on a Hard Body: The Documentary","description":"Hands on a Hard Body: The Documentary is a 1997 film documenting an endurance competition that took place in Longview, Texas. The yearly competition pits twenty-four contestants against each other to see who can keep their hand on a pickup truck for the longest amount of time. Whoever endures the longest without leaning on the truck or squatting wins the truck.","id":"18603","runtime":0,"imdbId":"tt0116481","version":40,"lastModified":"1300980599000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a4\/4bc953a4017a3c57fe0252a4\/hands-on-a-hard-body-the-documentary-mid.jpg","title":"Hands on a Hard Body: The Documentary","releaseDate":865123200000,"language":"en","type":"Movie","_key":"68750"} +{"label":"A Global Warning?","description":"Global warming in context. What the climate of the past tells us about the climate of the future.","id":"18604","runtime":90,"imdbId":"tt1308644","version":57,"lastModified":"1301905843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c5\/4bc953a6017a3c57fe0252c5\/a-global-warning-mid.jpg","studio":"Pioneer Productions","genre":"Documentary","title":"A Global Warning?","releaseDate":1194739200000,"language":"en","type":"Movie","_key":"68751"} +{"label":"Alien Planet","description":"The dynamic meeting of solid science and futuristic simulation culminates in a dramatic exploration to another inhabited planet seven light years away. Alien Planet creates a realistic depiction of creatures on another world, where life is possible, if not provable, according to scientists' theories. Take this fascinating journey created by state-of-the-art animation and photo-realistic effects.","id":"18606","runtime":94,"imdbId":"tt0453446","homepage":"http:\/\/dsc.discovery.com\/convergence\/alienplanet\/splash.html","version":117,"lastModified":"1301903457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ce\/4bc953a7017a3c57fe0252ce\/alien-planet-mid.jpg","studio":"Discovery Channel Productions","genre":"Animation","title":"Alien Planet","releaseDate":1116028800000,"language":"en","type":"Movie","_key":"68752"} +{"label":"Pierre de Lespinois","version":23,"id":"83291","lastModified":"1301901429000","name":"Pierre de Lespinois","type":"Person","_key":"68753"} +{"label":"Wayne D. Barlowe","version":21,"id":"83293","lastModified":"1301901306000","name":"Wayne D. Barlowe","type":"Person","_key":"68754"} +{"label":"Curtis Clark","version":20,"id":"83294","lastModified":"1301901412000","name":"Curtis Clark","type":"Person","_key":"68755"} +{"label":"James Garvin","version":19,"id":"83295","lastModified":"1301901306000","name":"James Garvin","type":"Person","_key":"68756"} +{"label":"Jamie Haines","version":19,"id":"83296","lastModified":"1301901429000","name":"Jamie Haines","type":"Person","_key":"68757"} +{"label":"Jack Horner","version":19,"id":"83297","lastModified":"1301901717000","name":"Jack Horner","type":"Person","_key":"68758"} +{"label":"Joan Horvath","version":19,"id":"83298","lastModified":"1301902063000","name":"Joan Horvath","type":"Person","_key":"68759"} +{"label":"Michio Kaku","version":19,"id":"83299","lastModified":"1301901717000","name":"Michio Kaku","type":"Person","_key":"68760"} +{"label":"James Kirkland","version":19,"id":"83300","lastModified":"1301901717000","name":"James Kirkland","type":"Person","_key":"68761"} +{"label":"Victoria Meadows","version":19,"id":"83301","lastModified":"1301902063000","name":"Victoria Meadows","type":"Person","_key":"68762"} +{"label":"David Moriarty","version":19,"id":"83302","lastModified":"1301901717000","name":"David Moriarty","type":"Person","_key":"68763"} +{"label":"Randy Pollock","version":19,"id":"83303","lastModified":"1301901717000","name":"Randy Pollock","type":"Person","_key":"68764"} +{"label":"J. Craig Venter","version":19,"id":"83304","lastModified":"1301901717000","name":"J. Craig Venter","type":"Person","_key":"68765"} +{"label":"Comme t'y es belle","description":"No overview found.","id":"18607","runtime":85,"imdbId":"tt0469055","version":40,"lastModified":"1300980600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e1\/4bc953ab017a3c57fe0252e1\/comme-t-y-es-belle-mid.jpg","title":"Comme t'y es belle","releaseDate":1147219200000,"language":"en","type":"Movie","_key":"68766"} +{"label":"Shaurya","description":"Shaurya, revolves around the lives of two close friends, both lawyers in the Indian army.Maj. Siddhant Chaudhary and Maj. Akash Kapoor.Siddhant is defending and Aakash is prosecuting a soldier,convicted for killing his commanding officer.An unwilling participant at first, Siddhant only begins to take his role as a defence lawyer seriously when he meets a spirited journalist Kavya who makes him rea","id":"18609","runtime":149,"imdbId":"tt1101665","version":49,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/175\/4cd232c35e73d65020001175\/shaurya-mid.jpg","studio":"Moser Baer","genre":"Drama","title":"Shaurya","releaseDate":1207267200000,"language":"en","type":"Movie","_key":"68767"} +{"label":"One Two Three","description":"Laxminarayan lives a poor lifestyle in Mumbai along with his widowed mother, Kanta, who wants him to be a successful gangster like Batlabhai, and would like him to kill a few people, make enough money, then get married to Khujli's daughter, Meena. In order to fulfill his mother's wish, Laxminarayan accepts a contract to kill D'Mello Yadav, a Pondi-based gangster, who has stolen a diamond from Batl","id":"18610","runtime":135,"imdbId":"tt1176960","version":127,"lastModified":"1301907087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2ee\/4bc953ac017a3c57fe0252ee\/one-two-three-mid.jpg","studio":"Big Screen Entertainment","genre":"Comedy","title":"One Two Three","releaseDate":1206662400000,"language":"en","type":"Movie","_key":"68768"} +{"label":"Frostbite","description":"A group of misfit slackers battle a group of egotistical snobs for snowboarding rights to a ski mountain.","id":"18611","runtime":83,"imdbId":"tt0431074","version":232,"lastModified":"1301415965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f7\/4bc953ad017a3c57fe0252f7\/frostbite-mid.jpg","title":"Frostbite","releaseDate":1139961600000,"language":"en","type":"Movie","_key":"68769"} +{"label":"The Desperate Hours","description":"No overview found.","id":"18612","runtime":112,"imdbId":"tt0047985","version":114,"lastModified":"1301906435000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/300\/4bc953ae017a3c57fe025300\/the-desperate-hours-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"The Desperate Hours","releaseDate":-449452800000,"language":"en","type":"Movie","_key":"68770"} +{"label":"Fugitive Pieces","description":"A child escapes from Poland during World War II and first heads to Greece before coming of age in Canada.","id":"18613","runtime":104,"imdbId":"tt0765451","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/fugitive-pieces","version":314,"lastModified":"1301904757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/345\/4bc953b6017a3c57fe025345\/fugitive-pieces-mid.jpg","studio":"Serendipity Point Films","genre":"Drama","title":"Fugitive Pieces","releaseDate":1189036800000,"language":"en","type":"Movie","_key":"68771"} +{"label":"Jeremy Podeswa","version":34,"id":"88391","lastModified":"1301901429000","name":"Jeremy Podeswa","type":"Person","_key":"68772"} +{"label":"Robbie Kay","version":24,"id":"88392","lastModified":"1301954555000","name":"Robbie Kay","type":"Person","_key":"68773"} +{"label":"Przes\u0142uchanie","description":"No overview found.","id":"18614","runtime":111,"imdbId":"tt0084548","version":42,"lastModified":"1301907445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d4\/4c18830a5e73d65ddf0000d4\/przesuchanie-mid.jpg","studio":"Zesp\u00f3\u0142 Filmowy \"X\"","title":"Przes\u0142uchanie","releaseDate":629510400000,"language":"en","type":"Movie","_key":"68774"} +{"label":"Ryszard Bugajski","version":20,"id":"83319","lastModified":"1301902545000","name":"Ryszard Bugajski","type":"Person","_key":"68775"} +{"label":"Fur: An Imaginary Portrait of Diane Arbus","description":"Turning her back on her wealthy, established family, Diane Arbus falls in love with Lionel Sweeney, an enigmatic mentor who introduces Arbus to the marginalized people who help her become one of the most revered photographers of the twentieth century.","id":"18615","runtime":122,"imdbId":"tt0422295","homepage":"http:\/\/www.furmovie.com\/","version":146,"lastModified":"1301907575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/366\/4bc953ba017a3c57fe025366\/fur-an-imaginary-portrait-of-diane-arbus-mid.jpg","genre":"Drama","title":"Fur: An Imaginary Portrait of Diane Arbus","releaseDate":1174003200000,"language":"en","type":"Movie","_key":"68776"} +{"label":"No Man's Land: The Rise of Reeker","description":"A sheriff and his son who are tracking down a group of bank robbers on their way to Mexico, only to discover that they are being stalked by a far more deadly enemy \u2014 The Reeker.","id":"18616","runtime":88,"imdbId":"tt1090671","version":181,"lastModified":"1301903788000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c68\/4d8ca2877b9aa13ae1002c68\/no-man-s-land-the-rise-of-reeker-mid.jpg","studio":"Institution, The","genre":"Horror","title":"No Man's Land: The Rise of Reeker","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"68777"} +{"label":"Stephen Martines","version":20,"id":"83351","lastModified":"1301902324000","name":"Stephen Martines","type":"Person","_key":"68778"} +{"label":"Mircea Monroe","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fc8\/4d28161e7b9aa134cb001fc8\/mircea-monroe-profile.jpg","version":30,"id":"83352","lastModified":"1301901222000","name":"Mircea Monroe","type":"Person","_key":"68779"} +{"label":"Michael Robert Brandon","version":20,"id":"83353","lastModified":"1301902704000","name":"Michael Robert Brandon","type":"Person","_key":"68780"} +{"label":"David Stanbra","version":20,"id":"83354","lastModified":"1301902703000","name":"David Stanbra","type":"Person","_key":"68781"} +{"label":"Gettin It","description":"No overview found.","id":"18618","runtime":93,"imdbId":"tt0483631","version":599,"lastModified":"1301907990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/389\/4bc953c0017a3c57fe025389\/gettin-it-mid.jpg","genre":"Comedy","title":"Gettin It","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68782"} +{"label":"Ghetto","description":"No overview found.","id":"18619","runtime":0,"imdbId":"tt0783522","version":89,"lastModified":"1301907266000","title":"Ghetto","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"68783"} +{"label":"Audrius Juzenas","version":17,"id":"109515","lastModified":"1301903042000","name":"Audrius Juzenas","type":"Person","_key":"68784"} +{"label":"Go Fish","description":"Max is a trendy, pretty, young lesbian, who is having trouble finding love. A friend sets her up with Ely, whom Max likes, but Ely is frumpy, homely, and older. Nor do they have much in common. Can Max learn to look past the packaging?","id":"18620","runtime":83,"imdbId":"tt0109913","version":104,"lastModified":"1302022298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/034\/4cdf1fe05e73d60f6c000034\/go-fish-mid.jpg","genre":"Drama","title":"Go Fish","releaseDate":757382400000,"language":"en","type":"Movie","_key":"68785"} +{"label":"Best Laid Plans","description":"A seemingly simple plan to steal money goes increasingly awry.","id":"18621","runtime":92,"imdbId":"tt0133412","version":201,"lastModified":"1301905776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94a\/4d654e505e73d66a6b00094a\/best-laid-plans-mid.jpg","genre":"Suspense","title":"Best Laid Plans","releaseDate":936921600000,"language":"en","type":"Movie","_key":"68786"} +{"label":"Zatoichi on the Road","description":"Back from the slight slump that was The Fugitive, Ichi returns in Grade A form. Here, he's sworn to protect the life of a young girl. As is usually the set-up for the Zatoichi series, without any real allies, Ichi finds himself in the middle of a bloody turf war. Normally, he's hesitant to get involved, but this time he plays ball and, in the end, turns in one of the greatest climax battles.","id":"18624","runtime":85,"imdbId":"tt0057714","version":81,"lastModified":"1301904005000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dc\/4bc953c9017a3c57fe0253dc\/zatoichi-kenka-tabi-mid.jpg","genre":"Action","title":"Zatoichi on the Road","releaseDate":-192153600000,"language":"en","type":"Movie","_key":"68787"} +{"label":"Kimiyoshi Yasuda","version":26,"id":"83360","lastModified":"1301902204000","name":"Kimiyoshi Yasuda","type":"Person","_key":"68788"} +{"label":"Shiho Fujimura","version":25,"id":"128024","lastModified":"1301902547000","name":"Shiho Fujimura","type":"Person","_key":"68789"} +{"label":"Reiko Fujiwara","version":14,"id":"150247","lastModified":"1301903122000","name":"Reiko Fujiwara","type":"Person","_key":"68790"} +{"label":"Matasaburo Niwa","version":14,"id":"150248","lastModified":"1301903126000","name":"Matasaburo Niwa","type":"Person","_key":"68791"} +{"label":"The Triumphant Return of General Rouge","description":"A year after the celebrated cracking of \u201cThe Glorious Team Batista\u201d case, the talented medical staff at Tojo University Hospital once again finds itself embroiled in a web of intrigue and scandal.The scandal occurs this time in the ER when a mysterious letter arrives for Dr. Kimiko Taguichi (Yuko Takeuchi). The letter reads: \u201cChief Surgeon Hayami of the Emergency Center has a collusive relationship with a medical supplies maker. And the head nurse is in on it with him.\u201d An unimaginable truth the","id":"18626","runtime":123,"imdbId":"tt1332696","version":38,"lastModified":"1302092439000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d7\/4d9c76a97b9aa16d0d0012d7\/jeneraru-r-ju-no-gaisen-mid.jpg","title":"The Triumphant Return of General Rouge","releaseDate":1236384000000,"language":"en","type":"Movie","_key":"68792"} +{"label":"Son of Godzilla","description":"On a tropical island, scientists are conducting weather experiments and encounter gigantic mantises and a giant spider that are attacking the son of Godzilla, who arrives to defend his offspring.","id":"18627","runtime":86,"imdbId":"tt0061856","version":115,"lastModified":"1301905944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f7\/4bc953cc017a3c57fe0253f7\/kaijuto-no-kessen-gojira-no-musuko-mid.jpg","studio":"Toho Company","genre":"Science Fiction","title":"Son of Godzilla","releaseDate":-64540800000,"language":"en","type":"Movie","_key":"68793"} +{"label":"Bibari Maeda","version":20,"id":"83361","lastModified":"1301902378000","name":"Bibari Maeda","type":"Person","_key":"68794"} +{"label":"Alexandre le Bienheureux","description":"Alexandre est cultivateur dans une petite ferme fran\u00e7aise, mais sa femme le pousse \u00e0 bout de force en lui imposant chaque jour une liste de travaux d\u00e9mesur\u00e9e. Devenu brutalement veuf, il \u00e9prouve un grand soulagement et se sent lib\u00e9r\u00e9 de son labeur : il d\u00e9cide de s'accorder un repos qu'il juge m\u00e9rit\u00e9, afin de prendre le temps de savourer la vie. ","id":"18628","runtime":100,"imdbId":"tt0061343","version":57,"lastModified":"1301907378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/400\/4bc953cc017a3c57fe025400\/alexandre-le-bienheureux-mid.jpg","studio":"Les Productions de la Gu\u00e9ville","genre":"Comedy","title":"Alexandre le Bienheureux","releaseDate":-41990400000,"language":"en","type":"Movie","_key":"68795"} +{"label":"Morrissey: Who Put the M in Manchester","description":"No overview found.","id":"18629","runtime":0,"imdbId":"tt0846042","version":47,"lastModified":"1301905338000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/405\/4bc953cc017a3c57fe025405\/morrissey-who-put-the-m-in-manchester-mid.jpg","title":"Morrissey: Who Put the M in Manchester","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68796"} +{"label":"Sharpe's Waterloo","description":"No overview found.","id":"18630","runtime":0,"imdbId":"tt0120111","version":239,"lastModified":"1300980603000","title":"Sharpe's Waterloo","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68797"} +{"label":"Beyond the Law","description":"Dan Saxon is an undercover cop who infiltrates a biker gang to nail the scum behind a drug-smuggling operation. In order to maintain the trust of the gang's leader, he must commit ever more dangerous and heinous crimes. Just how far 'beyond the law' will Saxon go?","id":"18631","runtime":108,"imdbId":"tt0103805","version":164,"lastModified":"1301905537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/40e\/4bc953cd017a3c57fe02540e\/beyond-the-law-mid.jpg","genre":"Drama","title":"Beyond the Law","releaseDate":735436800000,"language":"en","type":"Movie","_key":"68798"} +{"label":"Larry Ferguson","version":34,"id":"912","lastModified":"1299493053000","name":"Larry Ferguson","type":"Person","_key":"68799"} +{"label":"Lyndsay Riddell","version":21,"id":"83363","lastModified":"1301902630000","name":"Lyndsay Riddell","type":"Person","_key":"68800"} +{"label":"Rino Thunder","version":21,"id":"83364","lastModified":"1301902630000","name":"Rino Thunder","type":"Person","_key":"68801"} +{"label":"A Dog's Breakfast","description":"A dysfunctional man living a secluded life believes that he has accidentally killed his sister's TV star fianc\u00e9.","id":"18632","runtime":88,"imdbId":"tt0796314","trailer":"http:\/\/www.youtube.com\/watch?v=wmN6u8iYFlI","homepage":"http:\/\/www.adogsbreakfastmovie.com\/","version":294,"lastModified":"1301904211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/417\/4bc953ce017a3c57fe025417\/a-dog-s-breakfast-mid.jpg","genre":"Comedy","title":"A Dog's Breakfast","releaseDate":1172880000000,"language":"en","type":"Movie","_key":"68802"} +{"label":"Kate Hewlett","version":22,"birthday":"219625200000","id":"73204","birthplace":"Toronto, Ontario, Canada","lastModified":"1301902176000","name":"Kate Hewlett","type":"Person","_key":"68803"} +{"label":"Rachel Luttrell","version":25,"id":"26067","lastModified":"1301901777000","name":"Rachel Luttrell","type":"Person","_key":"68804"} +{"label":"Amanda Byram","version":16,"id":"141780","lastModified":"1301902766000","name":"Amanda Byram","type":"Person","_key":"68805"} +{"label":"Michael Lenic","version":16,"id":"141781","lastModified":"1301902766000","name":"Michael Lenic","type":"Person","_key":"68806"} +{"label":"Slipstream","description":"Aging screenwriter Felix Bonhoeffer has lived his life in two states of existence: in reality and his own interior world. While working on a murder mystery script, and unaware that his brain is on the verge of implosion, Felix is baffled when his characters start to appear in his life, and vice versa.","id":"18633","runtime":96,"imdbId":"tt0499570","version":166,"lastModified":"1301903430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/424\/4bc953cf017a3c57fe025424\/slipstream-mid.jpg","studio":"Destination Films","genre":"Comedy","title":"Slipstream","releaseDate":1171065600000,"language":"en","type":"Movie","_key":"68807"} +{"label":"Stella Arroyave","version":21,"id":"87227","lastModified":"1301902685000","name":"Stella Arroyave","type":"Person","_key":"68808"} +{"label":"Lana Antonova","version":22,"id":"87228","lastModified":"1301901798000","name":"Lana Antonova","type":"Person","_key":"68809"} +{"label":"Lindsay Barth","version":21,"id":"87229","lastModified":"1301902685000","name":"Lindsay Barth","type":"Person","_key":"68810"} +{"label":"Puzzlehead","description":"In a post apocalyptic world where technology is outlawed, Walter, a reclusive scientist, secretly creates a self-aware android, \"Puzzlehead\". Jealously erupts when Puzzlehead wins the affection of Julia, the beautiful shopgirl that Walter has longed for. The resulting Sci-Fi love triangle is a Frankensteinian fable that traps all three in a web of deception and the ultimate betrayal.","id":"18634","runtime":81,"imdbId":"tt0450367","version":73,"lastModified":"1301904188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42d\/4bc953cf017a3c57fe02542d\/puzzlehead-mid.jpg","studio":"Zero Sum Productions","genre":"Indie","title":"Puzzlehead","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"68811"} +{"label":"Stephen Galaida","version":19,"id":"113304","lastModified":"1301902675000","name":"Stephen Galaida","type":"Person","_key":"68812"} +{"label":"One Week","description":"Ben Tyler (Joshua Jackson) has been diagnosed with cancer. With a grim chance of survival in the best case scenario even if he immediately begins treatment, he instead decides to take a motorcycle trip from Toronto through the Canadian prairies to British Columbia.","id":"18635","runtime":94,"imdbId":"tt1104806","homepage":"http:\/\/www.oneweek.ca","version":224,"lastModified":"1301904175000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/436\/4bc953d0017a3c57fe025436\/one-week-mid.jpg","studio":"Mulmur Feed Co.","genre":"Adventure","title":"One Week","releaseDate":1236297600000,"language":"en","type":"Movie","_key":"68813"} +{"label":"Michael McGowan","version":25,"id":"83415","lastModified":"1301902063000","name":"Michael McGowan","type":"Person","_key":"68814"} +{"label":"Private Call","description":"PRIVATE CALL follows the debaucherous activities of an exclusive club where money can buy you sex--and blackmail.","id":"18637","runtime":80,"version":26,"lastModified":"1301903871000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43f\/4bc953d4017a3c57fe02543f\/private-call-mid.jpg","studio":"Unipix","title":"Private Call","releaseDate":1001894400000,"language":"en","type":"Movie","_key":"68815"} +{"label":"Brad Bartrum","version":15,"id":"83388","lastModified":"1301901284000","name":"Brad Bartrum","type":"Person","_key":"68816"} +{"label":"Faith of My Fathers","description":"Faith of My Fathers is based on the story of Lieutenant Commander John McCain's experiences as a prisoner of war in North Vietnam for five and a half years during the Vietnam War, interleaved with his memories of growing up in a heritage rich with military service.","id":"18638","runtime":90,"imdbId":"tt0444626","version":281,"lastModified":"1301904174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/444\/4bc953d4017a3c57fe025444\/faith-of-my-fathers-mid.jpg","genre":"Documentary","title":"Faith of My Fathers","releaseDate":1117411200000,"language":"en","type":"Movie","_key":"68817"} +{"label":"Flaming Star","description":"Sam Burton's second wife Neddy is Indian, their son Pacer a half-breed. As struggle starts between the whites and the Kiowas, the Burton family is split between loyalties.","id":"18639","runtime":101,"imdbId":"tt0053825","version":165,"lastModified":"1301903806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44d\/4bc953d5017a3c57fe02544d\/flaming-star-mid.jpg","genre":"Action","title":"Flaming Star","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"68818"} +{"label":"Ford Rainey","version":20,"id":"83812","lastModified":"1301902630000","name":"Ford Rainey","type":"Person","_key":"68819"} +{"label":"Michael D. Moore","version":27,"id":"83791","lastModified":"1299502898000","name":"Michael D. Moore","type":"Person","_key":"68820"} +{"label":"G.I. Blues","description":"In Frankfurt, the G.I. Tulsa McLean (Elvis Presley) bets all the money his friends Cookie (Robert Ivers) and Rick (James Douglas) and he are saving to buy a night-club of their own in USA that his mate Dynamite will seduce and spend a night with the untouchable cabaret dancer Lili (Juliet Prowse). When Dynamite is transferred to Alaska, Tulsa has to replace him in the bet.","id":"18642","runtime":104,"imdbId":"tt0053848","trailer":"http:\/\/www.youtube.com\/watch?v=jT2EAWTTqD8","version":136,"lastModified":"1301905852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46c\/4bc953d8017a3c57fe02546c\/g-i-blues-mid.jpg","genre":"Comedy","title":"G.I. Blues","releaseDate":-287366400000,"language":"en","type":"Movie","_key":"68821"} +{"label":"Juliet Prowse","version":21,"id":"83389","lastModified":"1301902539000","name":"Juliet Prowse","type":"Person","_key":"68822"} +{"label":"Sigrid Maier","version":21,"id":"83805","lastModified":"1301902719000","name":"Sigrid Maier","type":"Person","_key":"68823"} +{"label":"Arch Johnson","version":26,"id":"83806","lastModified":"1301902196000","name":"Arch Johnson","type":"Person","_key":"68824"} +{"label":"John Hudson","version":26,"id":"83807","lastModified":"1301901695000","name":"John Hudson","type":"Person","_key":"68825"} +{"label":"Follow That Dream","description":"When the Kwimper family car runs out of gas on a new Florida highway and an officous state supervisor tries to run them off, Pop Kwimper digs in his heels and decides to do a little homesteading. He and his son Toby and their \"adopted\" children - Holly, Ariadne and the twins - start their own little community along a strip of the roadside. ","id":"18643","runtime":109,"imdbId":"tt0055992","trailer":"http:\/\/www.youtube.com\/watch?v=NwDQetm6NUI","version":166,"lastModified":"1301905329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/475\/4bc953d9017a3c57fe025475\/follow-that-dream-mid.jpg","genre":"Comedy","title":"Follow That Dream","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"68826"} +{"label":"Anne Helm","version":22,"id":"83390","lastModified":"1301902361000","name":"Anne Helm","type":"Person","_key":"68827"} +{"label":"King Creole","description":"Danny Fisher, young delinquent, flunks out of high school. He quits his job as a busboy in a nightclub, and one night he gets the chance to perform. Success is imminent and the local crime boss Maxie Fields wants to hire him to perform at his night club The Blue Shade. Danny refuses, but Fields won't take no for an answer.","id":"18644","runtime":116,"imdbId":"tt0051818","version":130,"lastModified":"1301904949000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47e\/4bc953da017a3c57fe02547e\/king-creole-mid.jpg","genre":"Drama","title":"King Creole","releaseDate":-362966400000,"language":"en","type":"Movie","_key":"68828"} +{"label":"Liliane Montevecchi","version":25,"id":"83809","lastModified":"1301902353000","name":"Liliane Montevecchi","type":"Person","_key":"68829"} +{"label":"Jan Shepard","version":22,"id":"83811","lastModified":"1301902630000","name":"Jan Shepard","type":"Person","_key":"68830"} +{"label":"Tickle Me","description":"Elvis is a singing rodeo rider who drifts into an expensive dude ranch patronized by wealthy glamour girls. The owner, Vera Radford, hires Elvis as a stable man. Pretty physical fitness trainer Pam Merritt has a letter from her late grandfather directing her to a cache of gold in the ghost town of Silverado. The sheriff and his gang learn of the letter and plot to take it away from her.","id":"18645","runtime":90,"imdbId":"tt0056585","version":126,"lastModified":"1301906108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/490\/4bc953dc017a3c57fe025490\/tickle-me-mid.jpg","genre":"Comedy","title":"Tickle Me","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"68831"} +{"label":"Royal Wedding","description":"Fred Astaire (Tom) and Jane Powell (Ellen) are asked to perform as a dance team in England at the time of Princess Elizabeth's wedding. As brother and sister, each develops a British love interest, Ellen with Lord John Brindale (Peter Lawford) and Tom with dancer Anne Ashmond (Sarah Churchill--Winston's daughter). ","id":"18646","runtime":93,"imdbId":"tt0043983","version":88,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49e\/4bc953de017a3c57fe02549e\/royal-wedding-mid.jpg","genre":"Comedy","title":"Royal Wedding","releaseDate":-599616000000,"language":"en","type":"Movie","_key":"68832"} +{"label":"Ellen Bowen","version":16,"id":"83392","lastModified":"1301902502000","name":"Ellen Bowen","type":"Person","_key":"68833"} +{"label":"One Eyed Jacks","description":"Running from the law after a bank robbery in Mexico, Dad Longworth finds an opportunity to take the stolen gold and leave his partner Rio to be captured. Years later, Rio escapes from the prison where he has been since, and hunts down Dad for revenge. Dad is now a respectable sheriff in California, and has been living in fear of Rio's return.","id":"18647","runtime":141,"imdbId":"tt0055257","version":123,"lastModified":"1301418017000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ab\/4bc953e2017a3c57fe0254ab\/one-eyed-jacks-mid.jpg","genre":"Action","title":"One Eyed Jacks","releaseDate":-276393600000,"language":"en","type":"Movie","_key":"68834"} +{"label":"Pina Pellicer","version":20,"id":"83394","lastModified":"1301902630000","name":"Pina Pellicer","type":"Person","_key":"68835"} +{"label":"Under California Stars","description":"Rancher Roy and his boys track down a gang who have stolen Trigger and are holding him for ransom.","id":"18648","runtime":70,"imdbId":"tt0040915","version":242,"lastModified":"1301042904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b5\/4bc953e3017a3c57fe0254b5\/under-california-stars-mid.png","genre":"Western","title":"Under California Stars","releaseDate":-683942400000,"language":"en","type":"Movie","_key":"68836"} +{"label":"Roy Rogers","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/27f\/4c0519f4017a3c7e8700027f\/roy-rogers-profile.jpg","version":45,"id":"83395","lastModified":"1301901276000","name":"Roy Rogers","type":"Person","_key":"68837"} +{"label":"Jane Frazee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b2d\/4cc17b477b9aa138d8001b2d\/jane-frazee-profile.jpg","version":23,"id":"83396","lastModified":"1301902545000","name":"Jane Frazee","type":"Person","_key":"68838"} +{"label":"George Lloyd","version":21,"id":"83397","lastModified":"1301902481000","name":"George Lloyd","type":"Person","_key":"68839"} +{"label":"Trigger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/21b\/4c0519bc017a3c29a600021b\/trigger-profile.jpg","version":37,"id":"89916","lastModified":"1301902553000","name":"Trigger","type":"Person","_key":"68840"} +{"label":"My Favorite Brunette","description":"Baby photographer Ronnie Jackson, on death row in San Quentin, tells reporters how he got there: taking care of his private-eye neighbor's office, Ronnie is asked by the irresistible Baroness Montay to find the missing Baron. There follow confusing but sinister doings in a gloomy mansion and a private sanatorium, with every plot twist a parody of thriller cliches.","id":"18649","runtime":87,"imdbId":"tt0039645","version":133,"lastModified":"1301905262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ad\/4c5ad0cc7b9aa151f20005ad\/my-favorite-brunette-mid.jpg","genre":"Comedy","title":"My Favorite Brunette","releaseDate":-717811200000,"language":"en","type":"Movie","_key":"68841"} +{"label":"Elliott Nugent","version":27,"id":"89914","lastModified":"1301902002000","name":"Elliott Nugent","type":"Person","_key":"68842"} +{"label":"Miss Julie","description":"No overview found.","id":"18650","runtime":0,"version":209,"lastModified":"1301906845000","genre":"Comedy","title":"Miss Julie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"68843"} +{"label":"The Story of Vernon and Irene Castle","description":"In 1911, Vernon Castle, minor stage comic meets stage-struck Irene Foote. A few misadventures later, they're married. They abandon comedy to attempt a dancing career, which lands them in Paris without a sou. Fortunately, agent Maggie Sutton hears them rehearse and starts them on their brilliant career as the world's foremost ballroom dancers. But at the height of their fame, World War I begins...","id":"18651","runtime":93,"imdbId":"tt0031983","version":91,"lastModified":"1301907145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4cd\/4bc953e9017a3c57fe0254cd\/the-story-of-vernon-and-irene-castle-mid.jpg","genre":"Drama","title":"The Story of Vernon and Irene Castle","releaseDate":-978307200000,"language":"en","type":"Movie","_key":"68844"} +{"label":"H.C. Potter","version":30,"id":"83399","lastModified":"1301902501000","name":"H.C. Potter","type":"Person","_key":"68845"} +{"label":"Street Thief","description":"Kaspar Carr is a professional burglar who lives and works in Chicago. Carr loves his job and is good at it, and two documentary filmmakers are granted access to his private world when he agrees to let them make a film about him.","id":"18652","runtime":86,"imdbId":"tt0872224","trailer":"http:\/\/www.youtube.com\/watch?v=1222","homepage":"http:\/\/www.myspace.com\/streetthief","version":144,"lastModified":"1301417319000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d2\/4bc953e9017a3c57fe0254d2\/street-thief-mid.jpg","genre":"Crime","title":"Street Thief","releaseDate":1154908800000,"language":"en","type":"Movie","_key":"68846"} +{"label":"Frank Zieger","version":29,"id":"83401","lastModified":"1302068190000","name":"Frank Zieger","type":"Person","_key":"68847"} +{"label":"Wesley Walker","version":20,"id":"83402","lastModified":"1301902423000","name":"Wesley Walker","type":"Person","_key":"68848"} +{"label":"Malik Bader","version":20,"id":"83403","lastModified":"1301902717000","name":"Malik Bader","type":"Person","_key":"68849"} +{"label":"The Beyonce Experience","description":"No overview found.","id":"18653","runtime":130,"imdbId":"tt1144865","version":135,"lastModified":"1301905620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4eb\/4bc953ec017a3c57fe0254eb\/the-beyonce-experience-mid.jpg","studio":"Sony Music Entertainmant","genre":"Musical","title":"The Beyonce Experience","releaseDate":1195516800000,"language":"en","type":"Movie","_key":"68850"} +{"label":"Caffeine","description":"A fanciful battle of the sexes ensues when the relationships of the staff and patrons of a quirky London caf\u00e9 are unexpectedly turned upside down by sudden revelations of terribly embarrassing secrets having to do with their sexual misadventures.","id":"18654","runtime":92,"imdbId":"tt0460732","version":155,"lastModified":"1301904892000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f4\/4bc953ed017a3c57fe0254f4\/caffeine-mid.jpg","genre":"Comedy","title":"Caffeine","releaseDate":1174003200000,"language":"en","type":"Movie","_key":"68851"} +{"label":"Roz Witt","version":20,"id":"83404","lastModified":"1301902453000","name":"Roz Witt","type":"Person","_key":"68852"} +{"label":"Brian J. Watson","version":20,"id":"83406","lastModified":"1301901717000","name":"Brian J. Watson","type":"Person","_key":"68853"} +{"label":"Daz Crawford","version":19,"id":"10846","lastModified":"1301901376000","name":"Daz Crawford","type":"Person","_key":"68854"} +{"label":"Andrew Ableson","version":21,"id":"83407","lastModified":"1301902316000","name":"Andrew Ableson","type":"Person","_key":"68855"} +{"label":"Clean Slate","description":"Pogue is a private eye with a problem: every morning when he wakes up, he has total amnesia, waking up with a 'blank slate'. Since he is in the middle of a hot investigation and has a developing romance, this is less than convenient.","id":"18658","runtime":107,"imdbId":"tt0109443","version":114,"lastModified":"1301906935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f9\/4bc953ed017a3c57fe0254f9\/clean-slate-mid.jpg","genre":"Comedy","title":"Clean Slate","releaseDate":765590400000,"language":"en","type":"Movie","_key":"68856"} +{"label":"Timothy Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dec\/4d9947457b9aa119a0006dec\/timothy-scott-profile.jpg","version":22,"id":"83411","lastModified":"1301902453000","name":"Timothy Scott","type":"Person","_key":"68857"} +{"label":"The Apple Dumpling Gang","description":"A roving bachelor gets saddled with three children and a wealth of trouble when the youngsters stumble upon a huge gold nugget. They join forces with two bumbling outlaws to fend off the greedy townspeople and soon find themselves facing a surly gang of sharpshooters.","id":"18660","runtime":100,"imdbId":"tt0072653","version":131,"lastModified":"1301906260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/502\/4bc953ee017a3c57fe025502\/the-apple-dumpling-gang-mid.jpg","studio":"Walt Disney Productions","genre":"Comedy","title":"The Apple Dumpling Gang","releaseDate":173404800000,"language":"en","tagline":"Wanted: For chicanery, skulduggery, tomfoolery and habitual bungling!","type":"Movie","_key":"68858"} +{"label":"Norman Tokar","version":33,"id":"83413","lastModified":"1301902543000","name":"Norman Tokar","type":"Person","_key":"68859"} +{"label":"Bill Bixby","version":25,"birthday":"-1134262800000","id":"19138","birthplace":"San Francisco, California, USA","lastModified":"1301901946000","name":"Bill Bixby","type":"Person","_key":"68860"} +{"label":"Meltdown","description":"After failing to save his wife from 'The Doctor', Kit Li is working as a bodyguard and secret stunt double for the cowardly martial arts film star Frankie Lane.","id":"18665","runtime":101,"imdbId":"tt0114437","version":58,"lastModified":"1301907162000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/507\/4bc953ee017a3c57fe025507\/shu-dan-long-wei-mid.jpg","genre":"Action","title":"Meltdown","releaseDate":804556800000,"language":"en","tagline":"He Redefines Revenge.","type":"Movie","_key":"68861"} +{"label":"Lun Ah","version":21,"id":"83417","lastModified":"1301902379000","name":"Lun Ah","type":"Person","_key":"68862"} +{"label":"New Fist of Fury","description":"A brother and sister escape from Japanese-occupied Shanghai to Japanese-occupied Taiwan, to stay with their grandfather who runs a Kung-Fu school there. However, the master of a Japanese Kung-Fu school in Taiwan has designs on bringing all other schools on the island under his domination, and part of his plan involves the murder of the siblings' grandfather.","id":"18666","runtime":114,"imdbId":"tt0075439","version":85,"lastModified":"1301904208000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/510\/4bc953f2017a3c57fe025510\/xin-jing-wu-men-mid.jpg","studio":"Goldfish Pictures","genre":"Action","title":"New Fist of Fury","releaseDate":205632000000,"language":"en","type":"Movie","_key":"68863"} +{"label":"Shen Lin Chang","version":22,"id":"83419","lastModified":"1301902361000","name":"Shen Lin Chang","type":"Person","_key":"68864"} +{"label":"Ming Cheng Chang","version":22,"id":"83418","lastModified":"1301902380000","name":"Ming Cheng Chang","type":"Person","_key":"68865"} +{"label":"The East Is Red","description":"A royal official accompanies a Portuguese warship to the Black Cliffs to see the site of the defeat of the evil Invincible Asia, who attained supernatural abilities by following the sacred scroll and castrating himself.","id":"18667","runtime":93,"imdbId":"tt0105655","version":65,"lastModified":"1301908135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/519\/4bc953f3017a3c57fe025519\/dung-fong-bat-baai-fung-wan-joi-hei-mid.jpg","genre":"Action","title":"The East Is Red","releaseDate":725846400000,"language":"en","type":"Movie","_key":"68866"} +{"label":"Raymond Lee","version":25,"id":"130367","lastModified":"1301902421000","name":"Raymond Lee","type":"Person","_key":"68867"} +{"label":"The Villain","description":"The cowboy Handsome Stranger will escort miss Charming Jones to get a large sum of money from her father, Parody Jones. But the rich Avery Jones wants to lay his hands on the money and hires and old cowboy, Cactus Jack, to rob them when they ride back from her father. However, Cactus Jack is not very good at robbing people.","id":"18669","runtime":89,"imdbId":"tt0080097","version":107,"lastModified":"1301905825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/527\/4bc953f4017a3c57fe025527\/the-villain-mid.jpg","studio":"Rastar Pictures","genre":"Action","title":"The Villain","releaseDate":301276800000,"language":"en","type":"Movie","_key":"68868"} +{"label":"Red Dragon","description":"A young father and his infant son are beset by forces of evil and corruption. ","id":"18670","runtime":95,"imdbId":"tt0110054","version":102,"lastModified":"1301903965000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/535\/4bc953f5017a3c57fe025535\/hong-xi-guan-zhi-shao-lin-wu-zu-mid.jpg","genre":"Action","title":"Red Dragon","releaseDate":760406400000,"language":"en","type":"Movie","_key":"68869"} +{"label":"Chuen-Hua Chi","version":11,"id":"224932","lastModified":"1301903986000","name":"Chuen-Hua Chi","type":"Person","_key":"68870"} +{"label":"Miu Tse","version":24,"id":"83487","lastModified":"1301901862000","name":"Miu Tse","type":"Person","_key":"68871"} +{"label":"Deadly Is the Female","description":"Bart Tare is an ex-Army man who has a lifelong fixation with guns, he meets a kindred spirit in sharpshooter Annie Starr and goes to work at a carnival. After upsetting the carnival owner who lusts after Starr, they both get fired. Soon, on Starr's behest, they embark on a crime spree for cash. Subjects of a manhunt, they are tracked by police in the hills Tare enjoyed as a boy.","id":"18671","runtime":86,"imdbId":"tt0042530","version":66,"lastModified":"1301904431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/132\/4c7e63827b9aa10d97000132\/deadly-is-the-female-mid.jpg","studio":"United Artists","genre":"Thriller","title":"Deadly Is the Female","releaseDate":-629510400000,"language":"en","tagline":"THRILL CRAZY... KILL CRAZY...","type":"Movie","_key":"68872"} +{"label":"Peggy Cummins","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d2\/4bd6fee7017a3c21f20000d2\/peggy-cummins-profile.jpg","version":28,"id":"86001","lastModified":"1301901712000","name":"Peggy Cummins","type":"Person","_key":"68873"} +{"label":"Berry Kroeger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e05\/4cd2c7fa7b9aa16b9d000e05\/berry-kroeger-profile.jpg","version":37,"id":"85988","lastModified":"1301902561000","name":"Berry Kroeger","type":"Person","_key":"68874"} +{"label":"Anabel Shaw","version":25,"id":"86002","lastModified":"1301902513000","name":"Anabel Shaw","type":"Person","_key":"68875"} +{"label":"Harry Lewis","version":22,"id":"86003","lastModified":"1301902630000","name":"Harry Lewis","type":"Person","_key":"68876"} +{"label":"Nedrick Young","version":31,"id":"69319","lastModified":"1301902323000","name":"Nedrick Young","type":"Person","_key":"68877"} +{"label":"Joseph H. Lewis","version":36,"id":"86004","lastModified":"1301902352000","name":"Joseph H. Lewis","type":"Person","_key":"68878"} +{"label":"Swordsman II","description":"Jet Li plays Ling, a student from the Blue Mountain school of martial arts, who, along with fellow students and Kiddo, find themselves embroiled in a country-wide political\/clan war with the Highlander clan in the forefront of the battle.","id":"18672","runtime":107,"imdbId":"tt0103295","version":175,"lastModified":"1301904342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54b\/4bc953f7017a3c57fe02554b\/xiao-ao-jiang-hu-zhi-dong-fang-bu-bai-mid.jpg","genre":"Action","title":"Swordsman II","releaseDate":716860800000,"language":"en","type":"Movie","_key":"68879"} +{"label":"8x10 Tasveer","description":"8X10 Tasveer is a story about young man named Jai Puri, (Akshay Kumar), who possesses supernatural powers. Jai is of Indian origin who works as a forest ranger in Canada. His life is shattered by a loss of a very important person in his life. This personal tragedy leads him to use his unique supernatural power to unravel the mystery behind the murder.","id":"18673","runtime":119,"imdbId":"tt1105709","trailer":"http:\/\/www.youtube.com\/watch?v=1228","homepage":"http:\/\/www.8x10tasveerthefilm.com\/","version":93,"lastModified":"1301905261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/554\/4bc953f8017a3c57fe025554\/8x10-tasveer-mid.jpg","studio":"Percept Picture Company","genre":"Thriller","title":"8x10 Tasveer","releaseDate":1238716800000,"language":"en","type":"Movie","_key":"68880"} +{"label":"Ayesha Takia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/365\/4d34ca055e73d6335b009365\/ayesha-takia-profile.jpg","version":32,"id":"83591","lastModified":"1301901837000","name":"Ayesha Takia","type":"Person","_key":"68881"} +{"label":"Girish Karnad","version":28,"id":"83593","lastModified":"1301902453000","name":"Girish Karnad","type":"Person","_key":"68882"} +{"label":"Nagesh Kukunoor","version":25,"id":"83594","lastModified":"1301902453000","name":"Nagesh Kukunoor","type":"Person","_key":"68883"} +{"label":"The Defender","description":"A corrupt businessman commits a murder and the only witness is the girlfriend of another businessman with close connections to the Chinese government, so a bodyguard from Beijing is dispatched to help two Hong Kong cops protect the witness.","id":"18674","runtime":92,"imdbId":"tt0111835","version":78,"lastModified":"1301904012000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/086\/4bdcbd75017a3c20cd000086\/zhong-nan-hai-bao-biao-mid.jpg","studio":"Eastern Productions","genre":"Action","title":"The Defender","releaseDate":775353600000,"language":"en","type":"Movie","_key":"68884"} +{"label":"Kazuya Konaka","version":22,"id":"117158","lastModified":"1301903007000","name":"Kazuya Konaka","type":"Person","_key":"68885"} +{"label":"The Lost Treasure of the Grand Canyon","description":"A team of Smithsonian researchers have stumbled across a lost walled Aztec city guarded by some evil spirits, including a \"great flying serpent of death.\" As days turn to weeks, Susan Jordan, the daughter of the professor leading the expedition, assembles a team to rescue her father and his colleagues from the clutches of the ancient Aztec warriors and their horrible serpent god.","id":"18676","runtime":90,"imdbId":"tt1229370","version":114,"lastModified":"1301902592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/562\/4bc953f9017a3c57fe025562\/the-lost-treasure-of-the-grand-canyon-mid.jpg","genre":"Drama","title":"The Lost Treasure of the Grand Canyon","releaseDate":1229731200000,"language":"en","type":"Movie","_key":"68886"} +{"label":"Toby Berner","version":19,"id":"83422","lastModified":"1301901717000","name":"Toby Berner","type":"Person","_key":"68887"} +{"label":"Heather Doerksen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3dd\/4c487e587b9aa15ddd0003dd\/heather-doerksen-profile.jpg","version":24,"id":"83423","lastModified":"1301902639000","name":"Heather Doerksen","type":"Person","_key":"68888"} +{"label":"UFN 18 - Condit vs Kampmann","description":"UFC Fight Night: Condit vs. Kampmann, also referred to as UFC Fight Night 18, was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on April 1, 2009. The event was broadcast on Spike TV, as a prelude to the premiere of The Ultimate Fighter: United States vs. United Kingdom","id":"18679","runtime":0,"homepage":"http:\/\/www.ufc.com\/index.cfm?fa=eventDetail.FightCard&eid=1919","version":42,"lastModified":"1301908276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56b\/4bc953fd017a3c57fe02556b\/ufc-fight-night-18-mid.jpg","genre":"Sports Film","title":"UFN 18 - Condit vs Kampmann","releaseDate":1238544000000,"language":"en","type":"Movie","_key":"68889"} +{"label":"Carlos Condit","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ee\/4c1471fe7b9aa104570000ee\/carlos-condit-profile.jpg","version":24,"id":"83426","lastModified":"1301902420000","name":"Carlos Condit","type":"Person","_key":"68890"} +{"label":"Ryan Bader","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/87f\/4c0a995f017a3c7e8900087f\/ryan-bader-profile.jpg","version":29,"id":"83427","lastModified":"1301902630000","name":"Ryan Bader","type":"Person","_key":"68891"} +{"label":"Cole Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/207\/4c1dfde67b9aa11826000207\/cole-miller-profile.jpg","version":21,"id":"83429","lastModified":"1301902706000","name":"Cole Miller","type":"Person","_key":"68892"} +{"label":"Junie Browning","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03e\/4c1dfe0f7b9aa1296200003e\/junie-browning-profile.jpg","version":17,"id":"83430","lastModified":"1301902704000","name":"Junie Browning","type":"Person","_key":"68893"} +{"label":"Rafael dos Anjos","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/895\/4c0898b9017a3c7e86000895\/rafael-dos-anjos-profile.jpg","version":20,"id":"83432","lastModified":"1301902527000","name":"Rafael dos Anjos","type":"Person","_key":"68894"} +{"label":"Fear City","description":"Tom Berenger plays an ex-boxer and \"talent\" agent who finds his life closing in around him when a psychopathic martial artist starts stabbing and slashing strippers on their way home from nightclubs.","id":"18680","runtime":96,"imdbId":"tt0087247","trailer":"http:\/\/www.youtube.com\/watch?v=N4Ex4tGrnQg","version":107,"lastModified":"1301907153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/46b\/4bf2ad5c017a3c321300046b\/fear-city-mid.jpg","genre":"Mystery","title":"Fear City","releaseDate":458956800000,"language":"en","type":"Movie","_key":"68895"} +{"label":"Eye of the Beholder","description":"\"L'Oeil\", un agent des services secrets britanniques, enqu\u00eate sur le chantage dont serait victime le fils d'un s\u00e9nateur am\u00e9ricain. Une certaine Joanna, aussi belle que dangereuse, serait le suspect num\u00e9ro un. Lorsqu'elle commet son premier crime, la sc\u00e8ne est si rapide que l'Oeil a juste le temps de la photographier. Le choc qu'il ressent n'est pas tant celui du meurtre qu'il d\u00e9couvre mais plut\u00f4t le d\u00e9veloppement de la photo, quand se superpose l'image fant\u00f4matique de sa propre fille.","id":"18681","runtime":109,"imdbId":"tt0120662","version":207,"lastModified":"1301905374000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/060\/4cc75b625e73d65024000060\/eye-of-the-beholder-mid.jpg","genre":"Thriller","title":"Eye of the Beholder","releaseDate":915148800000,"language":"en","type":"Movie","_key":"68896"} +{"label":"Girl Happy","description":"A Chicago mobster hires a rock and roll singer and his band to keep an eye on his daughter during Spring Break in Fort Lauderdale, Florida.","id":"18682","runtime":96,"imdbId":"tt0059224","trailer":"http:\/\/www.youtube.com\/watch?v=V7xo31LXKEw","version":283,"lastModified":"1301905537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/574\/4bc953fe017a3c57fe025574\/girl-happy-mid.jpg","genre":"Comedy","title":"Girl Happy","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"68897"} +{"label":"Gary Crosby","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/30c\/4c475d417b9aa15de200030c\/gary-crosby-profile.jpg","version":22,"id":"83434","lastModified":"1301902470000","name":"Gary Crosby","type":"Person","_key":"68898"} +{"label":"Joby Baker","version":22,"id":"83435","lastModified":"1301902523000","name":"Joby Baker","type":"Person","_key":"68899"} +{"label":"Shirley Valentine","description":"Wondering what has happened to herself, now feeling stagnant and in a rut, Shirley Valentine finds herself regularly talking to the wall while preparing her husband's chips and egg. When her best friend wins a trip-for-two to Greece Shirley begins to see the world, and herself, in a different light.","id":"18683","runtime":108,"imdbId":"tt0098319","version":160,"lastModified":"1301904608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57e\/4bc953ff017a3c57fe02557e\/shirley-valentine-mid.jpg","genre":"Comedy","title":"Shirley Valentine","releaseDate":625449600000,"language":"en","type":"Movie","_key":"68900"} +{"label":"Pauline Collins","version":38,"id":"83437","lastModified":"1301901703000","name":"Pauline Collins","type":"Person","_key":"68901"} +{"label":"Kid Galahad","description":"Kid Galahad is a 1962 musical film starring Elvis Presley as a boxer.\n\nThe movie was filmed on location in Idyllwild, California and is noted for having a strong supporting cast. Most critics rate it as one of Presley's best performances.\n\nThe film is a remake of the 1937 original version starring Edward G. Robinson, Bette Davis, and Humphrey Bogart. ","id":"18684","runtime":95,"imdbId":"tt0056138","version":134,"lastModified":"1301906461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/58b\/4bc95400017a3c57fe02558b\/kid-galahad-mid.jpg","genre":"Comedy","title":"Kid Galahad","releaseDate":-223776000000,"language":"en","type":"Movie","_key":"68902"} +{"label":"Lola Albright","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e11\/4bfe7b5b017a3c702d000e11\/lola-albright-profile.jpg","version":26,"id":"83442","lastModified":"1301902653000","name":"Lola Albright","type":"Person","_key":"68903"} +{"label":"Robert Emhardt","version":29,"id":"83826","lastModified":"1301902580000","name":"Robert Emhardt","type":"Person","_key":"68904"} +{"label":"Live a Little, Love a Little","description":"Pin-up photographer, who doesn't want to get pinned down, comes up against a girl who won't take no for an answer. ","id":"18686","runtime":90,"imdbId":"tt0063231","version":128,"lastModified":"1301905125000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/594\/4bc95401017a3c57fe025594\/live-a-little-love-a-little-mid.jpg","genre":"Comedy","title":"Live a Little, Love a Little","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"68905"} +{"label":"Rudy Vallee","version":34,"birthday":"-2159485200000","id":"83452","birthplace":"Island Pond, Vermont, USA","lastModified":"1301902146000","name":"Rudy Vallee","type":"Person","_key":"68906"} +{"label":"Charro!","description":"Jess Wade is innocently accused of having stolen a cannon from the Mexican revolutionary forces. He tries to find the real culprits, a gang of criminals.","id":"18688","runtime":98,"imdbId":"tt0064155","version":130,"lastModified":"1301907990000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/59d\/4bc95402017a3c57fe02559d\/charro-mid.jpg","genre":"Drama","title":"Charro!","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"68907"} +{"label":"Victor French","version":31,"id":"83453","lastModified":"1301902167000","name":"Victor French","type":"Person","_key":"68908"} +{"label":"Charles Marquis Warren","version":23,"id":"83455","lastModified":"1302126838000","name":"Charles Marquis Warren","type":"Person","_key":"68909"} +{"label":"Spinout","description":"Band singer\/race driver Mike McCoy must choose between marrying a beautiful rich girl and driving her father's car in a prestigious race.","id":"18690","runtime":90,"imdbId":"tt0061015","version":88,"lastModified":"1301908313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a6\/4bc95403017a3c57fe0255a6\/spinout-mid.jpg","genre":"Comedy","title":"Spinout","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"68910"} +{"label":"Diane McBain","version":25,"id":"83462","lastModified":"1301902676000","name":"Diane McBain","type":"Person","_key":"68911"} +{"label":"Frankie and Johnny","description":"Elvis plays Johnny, a riverboat entertainer with a big gambling problem. Donna Douglas plays Johnny's girl, Frankie. A fortune teller tells Johnny how he can change his luck. Enter a new lady luck played by Nancy Kovack and the cat fight begins.","id":"18691","runtime":87,"imdbId":"tt0060429","trailer":"http:\/\/www.youtube.com\/watch?v=9JTT8I-B5Ag","version":94,"lastModified":"1301905537000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc95404017a3c57fe0255af\/frankie-and-johnny-mid.jpg","genre":"Comedy","title":"Frankie and Johnny","releaseDate":-105840000000,"language":"en","type":"Movie","_key":"68912"} +{"label":"Donna Douglas","version":24,"id":"83457","lastModified":"1301902191000","name":"Donna Douglas","type":"Person","_key":"68913"} +{"label":"Audrey Christie","version":25,"id":"83566","lastModified":"1301902721000","name":"Audrey Christie","type":"Person","_key":"68914"} +{"label":"Fun in Acapulco","description":"Mike works on a boat in Acapulco. When the bratty daughter of the boat owner gets him fired, Mike must find new work. Little boy Rauol helps him get a job as a lifeguard and singer at a local hotel. Clashes abound when Mike runs into the rival lifeguard, who is the champion diver of Mexico. ","id":"18692","runtime":97,"imdbId":"tt0057083","trailer":"http:\/\/www.youtube.com\/watch?v=_rTncah2ZgU","version":91,"lastModified":"1301907087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c1\/4bc95405017a3c57fe0255c1\/fun-in-acapulco-mid.jpg","genre":"Comedy","title":"Fun in Acapulco","releaseDate":-220924800000,"language":"en","type":"Movie","_key":"68915"} +{"label":"Speedway","description":"No overview found.","id":"18693","runtime":94,"imdbId":"tt0063634","version":242,"lastModified":"1301906616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d3\/4bc9540b017a3c57fe0255d3\/speedway-mid.jpg","genre":"Action","title":"Speedway","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"68916"} +{"label":"Nancy Sinatra","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0a7\/4c811a9f7b9aa118f00000a7\/nancy-sinatra-profile.jpg","version":24,"id":"83463","lastModified":"1301901715000","name":"Nancy Sinatra","type":"Person","_key":"68917"} +{"label":"Change of Habit","description":"Only a few songs as Elvis plays it straight as Dr John Carpenter. Mary Tyler Moore stars opposite as an incognito nun with a mission to help Dr Elvis clean up the ghetto he lives in. Can the King compete against God for Mary's heart?","id":"18694","runtime":93,"imdbId":"tt0065537","version":97,"lastModified":"1301906051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e0\/4bc9540c017a3c57fe0255e0\/change-of-habit-mid.jpg","genre":"Drama","title":"Change of Habit","releaseDate":-4492800000,"language":"en","type":"Movie","_key":"68918"} +{"label":"Barbara McNair","version":24,"id":"83824","lastModified":"1301902453000","name":"Barbara McNair","type":"Person","_key":"68919"} +{"label":"Jane Elliot","version":19,"id":"83825","lastModified":"1301902630000","name":"Jane Elliot","type":"Person","_key":"68920"} +{"label":"Thieves of Fortune","description":"In this action-packed romantic adventure story, a beautiful woman must perform feats of bravery in order to inherit a $28 million fortune and win the man she loves. Lots of stunts featuring planes, motorcycles, cliff diving, alligator wrestling and gun battles.","id":"18695","runtime":100,"imdbId":"tt0100771","version":53,"lastModified":"1301417687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e5\/4bc9540d017a3c57fe0255e5\/thieves-of-fortune-mid.jpg","title":"Thieves of Fortune","releaseDate":631152000000,"language":"en","type":"Movie","_key":"68921"} +{"label":"Shawn Weatherly","version":20,"id":"83459","lastModified":"1301902713000","name":"Shawn Weatherly","type":"Person","_key":"68922"} +{"label":"Craig Gardner","version":20,"id":"83460","lastModified":"1301902699000","name":"Craig Gardner","type":"Person","_key":"68923"} +{"label":"La battaglia di Maratona","description":"No overview found.","id":"18696","runtime":90,"imdbId":"tt0052604","version":33,"lastModified":"1301906146000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ea\/4bc9540d017a3c57fe0255ea\/la-battaglia-di-maratona-mid.jpg","title":"La battaglia di Maratona","releaseDate":-318124800000,"language":"en","type":"Movie","_key":"68924"} +{"label":"Daniela Rocca","version":21,"id":"83461","lastModified":"1301902324000","name":"Daniela Rocca","type":"Person","_key":"68925"} +{"label":"Jack and the Beanstalk","description":"Abbott & Costello's version of the famous fairy tale, about a young boy who trades the family cow for magic beans.","id":"18698","runtime":70,"imdbId":"tt0044762","version":79,"lastModified":"1301905944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5f8\/4bc9540f017a3c57fe0255f8\/jack-and-the-beanstalk-mid.png","genre":"Comedy","title":"Jack and the Beanstalk","releaseDate":-559267200000,"language":"en","type":"Movie","_key":"68926"} +{"label":"Buddy Baer","version":26,"id":"83468","lastModified":"1301902453000","name":"Buddy Baer","type":"Person","_key":"68927"} +{"label":"Shaye Cogan","version":20,"id":"83469","lastModified":"1301902523000","name":"Shaye Cogan","type":"Person","_key":"68928"} +{"label":"James Alexander","version":19,"id":"83470","lastModified":"1301902453000","name":"James Alexander","type":"Person","_key":"68929"} +{"label":"Jean Yarbrough","version":27,"id":"89745","lastModified":"1301902400000","name":"Jean Yarbrough","type":"Person","_key":"68930"} +{"label":"Till the Clouds Roll By","description":"Light bio-pic of American Broadway pioneer Jerome Kern, featuring renditions of the famous songs from his musical plays by contemporary stage artists, including a condensed production of his most famous: 'Showboat'.","id":"18700","runtime":132,"imdbId":"tt0039035","version":167,"lastModified":"1301908313000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/607\/4bc95413017a3c57fe025607\/till-the-clouds-roll-by-mid.png","studio":"Metro-Goldwyn-Mayer (MGM)","title":"Till the Clouds Roll By","releaseDate":-728179200000,"language":"en","type":"Movie","_key":"68931"} +{"label":"Being Julia","description":"Set in '30s London, the film involves stage actors and their experiences with love and revenge.","id":"18701","runtime":104,"imdbId":"tt0340012","version":173,"lastModified":"1301906262000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e21\/4cbd27e75e73d67782000e21\/being-julia-mid.jpg","studio":"Serendipity Point Films","genre":"Comedy","title":"Being Julia","releaseDate":1094169600000,"language":"en","type":"Movie","_key":"68932"} +{"label":"Pot o' Gold","description":"Jimmy, the owner of a failed music shop, goes to work with his uncle, the owner of a food factory. Before he gets there, he befriends an Irish family who happens to be his uncle's worst enemy because of their love for music and in-house band who constantly practices. Soon, Jimmy finds himself trying to help the band by getting them gigs and trying to reconcile the family with his uncle.","id":"18702","runtime":86,"imdbId":"tt0034055","version":132,"lastModified":"1301735044000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/615\/4bc95414017a3c57fe025615\/pot-o-gold-mid.jpg","genre":"Musical","title":"Pot o' Gold","releaseDate":-907200000000,"language":"en","type":"Movie","_key":"68933"} +{"label":"Horace Heidt","version":19,"id":"83473","lastModified":"1301902501000","name":"Horace Heidt","type":"Person","_key":"68934"} +{"label":"Charles Winninger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a83\/4be456ef017a3c35bd000a83\/charles-winninger-profile.jpg","version":24,"birthday":"-2701299600000","id":"83474","birthplace":"Athens, Wisconsin, USA","lastModified":"1301902353000","name":"Charles Winninger","type":"Person","_key":"68935"} +{"label":"My Dear Secretary","description":"A budding young writer thinks it's her lucky day when she is chosen to be the new secretary for Owen Waterbury, famous novelist. She is soon disppointed, however, when he turns out to be an erratic, immature playboy. Opposites attract, of course, but not without sub-plots that touch on competitiveness within marriage and responsibility.","id":"18703","runtime":94,"imdbId":"tt0040626","version":88,"lastModified":"1301036712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61a\/4bc95415017a3c57fe02561a\/my-dear-secretary-mid.png","studio":"Cardinal Pictures","title":"My Dear Secretary","releaseDate":-661737600000,"language":"en","type":"Movie","_key":"68936"} +{"label":"Helen Walker","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bf\/4bd725e0017a3c21f10001bf\/helen-walker-profile.jpg","version":29,"id":"83475","lastModified":"1301902352000","name":"Helen Walker","type":"Person","_key":"68937"} +{"label":"Charles Martin","version":19,"id":"96403","lastModified":"1301902884000","name":"Charles Martin","type":"Person","_key":"68938"} +{"label":"Failan","description":"After losing both her parents, Failan (Cecilia Cheung) emmigrates to Korea to seek her only remaining relatives. Once she reaches Korea, she finds out that her relatives have moved to Canada well over a year ago. Desperate to stay and make a living in Korea, Failan is forced to have an arranged marriage through a match-making agency.","id":"18704","runtime":115,"imdbId":"tt0289181","version":82,"lastModified":"1301908311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/623\/4bc95417017a3c57fe025623\/failan-mid.jpg","studio":"Tube Pictures","genre":"Drama","title":"Failan","releaseDate":988416000000,"language":"en","type":"Movie","_key":"68939"} +{"label":"Hae-sung Song","version":23,"id":"127531","lastModified":"1301902558000","name":"Hae-sung Song","type":"Person","_key":"68940"} +{"label":"Mr. Moto's Last Warning","description":"A Japanese man claiming to be Mr. Moto, of the International Police, is abducted and murdered soon after disembarking from a ship at Port Said in Egypt. The real Mr. Moto is already in Port Said, investigating a conspiracy against the British and French governments.","id":"18705","runtime":71,"imdbId":"tt0031678","version":83,"lastModified":"1301904589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/62c\/4bc95417017a3c57fe02562c\/mr-moto-s-last-warning-mid.jpg","genre":"Mystery","title":"Mr. Moto's Last Warning","releaseDate":-976665600000,"language":"en","type":"Movie","_key":"68941"} +{"label":"Ricardo Cortez","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2a3\/4c053058017a3c7e870002a3\/ricardo-cortez-profile.jpg","biography":"Ricardo Cortez (September 19, 1900 \u2013 April 28, 1977) was an American film actor who began his career during the silent film era.\n\nBorn Jacob Krantz in New York City into a Jewish family, he worked on Wall Street in a broker's office and as a boxer before his looks got him into the film business. Hollywood executives changed his name to Cortez to appeal to film-goers as a \"Latin lover\" to compete with such highly popular actors of the era as Rudolph Valentino, Ramon Novarro and Antonio Moreno. Wh","version":31,"birthday":"-2186442000000","id":"83476","birthplace":"New York City, New York, USA","lastModified":"1301901120000","name":"Ricardo Cortez","type":"Person","_key":"68942"} +{"label":"Virginia Field","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/235\/4bf16ff7017a3c320b000235\/virginia-field-profile.jpg","version":30,"id":"83477","lastModified":"1301901147000","name":"Virginia Field","type":"Person","_key":"68943"} +{"label":"Robert Coote","version":32,"birthday":"-1922058000000","id":"92908","lastModified":"1301902419000","name":"Robert Coote","type":"Person","_key":"68944"} +{"label":"Margaret Irving","version":18,"id":"99458","lastModified":"1301902630000","name":"Margaret Irving","type":"Person","_key":"68945"} +{"label":"Norman Foster","version":53,"id":"87459","lastModified":"1302162258000","name":"Norman Foster","type":"Person","_key":"68946"} +{"label":"Sherlock Holmes and the Secret Weapon","description":"Starting in Switzerland, Sherlock Holmes rescues the inventor of a bomb-sight which the allies want to keep from the Nazis. Back in London it seems that the inventor is not all that he seemed.","id":"18706","runtime":68,"imdbId":"tt0035317","trailer":"http:\/\/www.youtube.com\/watch?v=siLAqW1vG_Y","version":219,"lastModified":"1302239277000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/635\/4bc95418017a3c57fe025635\/sherlock-holmes-and-the-secret-weapon-mid.png","genre":"Action","title":"Sherlock Holmes and the Secret Weapon","releaseDate":-848448000000,"language":"en","type":"Movie","_key":"68947"} +{"label":"Kaaren Verne","version":24,"id":"83478","lastModified":"1302186130000","name":"Kaaren Verne","type":"Person","_key":"68948"} +{"label":"William Post Jr.","version":25,"id":"83479","lastModified":"1301902724000","name":"William Post Jr.","type":"Person","_key":"68949"} +{"label":"Twinkle, Twinkle, Lucky Stars","description":"The third installment in the Lucky Stars series, following Winners and Sinners (1983) and My Lucky Stars (1985)... The team are released from prison to play detective in order to stop a ruthless gang from ruining their reputations, taking their lives, and that of a key witness in an upcoming trial. They must battle their way through and with the help of Muscles, take down the bad guys.","id":"18707","runtime":105,"imdbId":"tt0090342","version":79,"lastModified":"1301903219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/643\/4bc9541e017a3c57fe025643\/xia-ri-fu-xing-mid.jpg","genre":"Action","title":"Twinkle, Twinkle, Lucky Stars","releaseDate":492912000000,"language":"en","type":"Movie","_key":"68950"} +{"label":"Capone","description":"The story of the rise and fall of the infamous Chicago gangster Al Capone and the control he exhibited over the city during the prohibition years. Unusually, briefly covering the years after Capone was imprisoned. ","id":"18710","runtime":101,"imdbId":"tt0072761","version":104,"lastModified":"1301906051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18b\/4c7ecaa45e73d648df00018b\/capone-mid.jpg","genre":"Crime","title":"Capone","releaseDate":166838400000,"language":"en","type":"Movie","_key":"68951"} +{"label":"Silver City","description":"The discovery of a corpse threatens to unravel a bumbling local politician's campaign for governor of Colorado.","id":"18711","runtime":128,"imdbId":"tt0376890","version":146,"lastModified":"1300980615000","genre":"Comedy","title":"Silver City","releaseDate":1095379200000,"language":"en","type":"Movie","_key":"68952"} +{"label":"Sands Of Iwo Jima","description":"The relationship between Sergeant Stryker and a group of rebellious recruits is made difficult by the Sergeant's tough training tactics. At Tarawa, the leathernecks have a chance to see Stryker in action, and begin to appreciate him.","id":"18712","runtime":100,"imdbId":"tt0041841","version":64,"lastModified":"1301904036000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/651\/4bc95420017a3c57fe025651\/sands-of-iwo-jima-mid.jpg","studio":"Republic Pictures","genre":"Action","title":"Sands Of Iwo Jima","releaseDate":-632707200000,"language":"en","type":"Movie","_key":"68953"} +{"label":"Allan Dwan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/452\/4cb35a817b9aa12cf7000452\/allan-dwan-profile.jpg","version":22,"id":"93905","lastModified":"1301902137000","name":"Allan Dwan","type":"Person","_key":"68954"} +{"label":"Jerky Boys: The Movie","description":"When two unemployed telephone pranksters decide to use their vocal \"talents\" to impersonate a Chicago mob boss and curry favor with organized crime in New York, the trouble begins. It isn't long before Johnny and Kamal (the \"Jerky Boys\" of crank call fame) are wanted by the local mafia, the police, and their neighbor.","id":"18713","runtime":82,"imdbId":"tt0110189","version":117,"lastModified":"1301904898000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25d\/4d6ac0075e73d6073300025d\/jerky-boys-the-movie-mid.jpg","studio":"Caravan Pictures","genre":"Comedy","title":"Jerky Boys: The Movie","releaseDate":791769600000,"language":"en","type":"Movie","_key":"68955"} +{"label":"Kamal Ahmed","version":22,"id":"83480","lastModified":"1301902324000","name":"Kamal Ahmed","type":"Person","_key":"68956"} +{"label":"James Melkonian","version":31,"id":"73668","lastModified":"1301902372000","name":"James Melkonian","type":"Person","_key":"68957"} +{"label":"Second Hand Wedding","description":"No overview found.","id":"18714","runtime":98,"imdbId":"tt1210359","version":83,"lastModified":"1301905261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08f\/4c8371e47b9aa1428f00008f\/second-hand-wedding-mid.jpg","studio":"Garage Sale Productions","title":"Second Hand Wedding","releaseDate":1210118400000,"language":"en","type":"Movie","_key":"68958"} +{"label":"Giai Cuu Than Chet","description":"No overview found.","id":"18715","runtime":0,"version":15,"lastModified":"1301908109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/670\/4bc95423017a3c57fe025670\/giai-cuu-than-chet-mid.jpg","title":"Giai Cuu Than Chet","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"68959"} +{"label":"The Far Country","description":"A self-minded adventurer (Jeff Webster) locks horns with a crooked lawman (Mr. Gannon) while driving cattle to Dawson.","id":"18721","runtime":97,"imdbId":"tt0048055","trailer":"http:\/\/www.youtube.com\/watch?v=gHNo7dRDomw","version":88,"lastModified":"1301905346000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/67f\/4bc95424017a3c57fe02567f\/the-far-country-mid.jpg","studio":"Universal Pictures","genre":"Action","title":"The Far Country","releaseDate":-462931200000,"language":"en","type":"Movie","_key":"68960"} +{"label":"Mr. Baseball","description":"Jack Elliot, a one-time MVP for the New York Yankees is now on the down side of his baseball career. With a falling batting average, does he have one good year left and can the manager of the Chunichi Dragons, a Japanese Central baseball league find it in him?","id":"18722","runtime":108,"imdbId":"tt0104926","version":120,"lastModified":"1302106501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/688\/4bc95424017a3c57fe025688\/mr-baseball-mid.jpg","genre":"Comedy","title":"Mr. Baseball","releaseDate":717984000000,"language":"en","type":"Movie","_key":"68961"} +{"label":"Aya Takanashi","version":23,"id":"91289","lastModified":"1302106500000","name":"Aya Takanashi","type":"Person","_key":"68962"} +{"label":"Toshi Shioya","version":21,"id":"119774","lastModified":"1302106500000","name":"Toshi Shioya","type":"Person","_key":"68963"} +{"label":"Attack of the 50 Foot Woman","description":"When an abused wife grows to giant size because of an alien encounter and an aborted murder attempt, she goes after her cheating husband with revenge on her mind.","id":"18724","runtime":65,"imdbId":"tt0051380","trailer":"http:\/\/www.youtube.com\/watch?v=F2cLmbCyzhE","version":89,"lastModified":"1301906616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/365\/4cb71e525e73d67786000365\/attack-of-the-50-foot-woman-mid.jpg","genre":"Action","title":"Attack of the 50 Foot Woman","releaseDate":-366768000000,"language":"en","type":"Movie","_key":"68964"} +{"label":"Jet Li's The Enforcer","description":"Li plays an undercover Chinese cop sent to track down a notorious criminal in Hong Kong. There, he ultimately teams with his young son, an incredible kung fu master in the making! Together, they lay down the law.","id":"18725","runtime":104,"imdbId":"tt0113153","version":65,"lastModified":"1301904224000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69e\/4bc95427017a3c57fe02569e\/gei-ba-ba-de-xin-mid.jpg","genre":"Action","title":"Jet Li's The Enforcer","releaseDate":793065600000,"language":"en","type":"Movie","_key":"68965"} +{"label":"Perfect Creature","description":"The vampire myth is given a stylish 1960s treatment, where a human cop partners with a vampire cop to stop a vamp bent on creating a war between the two \"separate but equal\" races.","id":"18726","runtime":88,"imdbId":"tt0403407","version":156,"lastModified":"1301906226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ac\/4bc95428017a3c57fe0256ac\/perfect-creature-mid.jpg","genre":"Action","title":"Perfect Creature","releaseDate":1145836800000,"language":"en","type":"Movie","_key":"68966"} +{"label":"Heaven Can Wait","description":"Henry Van Cleve presents himself at the gates of Hell only to find he is closely vetted on his qualifications for entry. Surprised there is any question on his suitability, he recounts his lively life and the women he has known from his mother onwards, but mainly concentrating on his happy but sometimes difficult twenty-five years of marriage to Martha.","id":"18727","runtime":112,"imdbId":"tt0035979","version":128,"lastModified":"1301904610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6b5\/4bc95429017a3c57fe0256b5\/heaven-can-wait-mid.jpg","genre":"Comedy","title":"Heaven Can Wait","releaseDate":-832896000000,"language":"en","type":"Movie","_key":"68967"} +{"label":"North and South","description":"No overview found.","id":"18729","runtime":561,"imdbId":"tt0088583","version":96,"lastModified":"1301908164000","genre":"Drama","title":"North and South","releaseDate":499824000000,"language":"en","type":"Movie","_key":"68968"} +{"label":"Last Hero in China","description":"Jet Li stars in this comic spectacle as a Chinese \"Robin Hood\" who stumbles upon a kidnapping scheme after unwittingly opening a martial arts school next to a brothel! ","id":"18731","runtime":111,"imdbId":"tt0108593","version":85,"lastModified":"1301903155000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6c7\/4bc9542e017a3c57fe0256c7\/wong-fei-hung-chi-tit-gai-dau-neung-gung-mid.jpg","genre":"Action","title":"Last Hero in China","releaseDate":733622400000,"language":"en","type":"Movie","_key":"68969"} +{"label":"Dicky Cheung","version":24,"id":"83489","lastModified":"1301902063000","name":"Dicky Cheung","type":"Person","_key":"68970"} +{"label":"Pak-cheung Chan","version":24,"id":"83490","lastModified":"1301902195000","name":"Pak-cheung Chan","type":"Person","_key":"68971"} +{"label":"Happy Flight","description":"No overview found.","id":"18733","runtime":103,"imdbId":"tt1156447","version":97,"lastModified":"1302238783000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d4\/4bc95432017a3c57fe0256d4\/18733-mid.jpg","title":"Happy Flight","releaseDate":1226707200000,"language":"en","type":"Movie","_key":"68972"} +{"label":"Shinobu Yaguchi","version":26,"id":"83524","lastModified":"1301902489000","name":"Shinobu Yaguchi","type":"Person","_key":"68973"} +{"label":"Haruka Ayase","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a88\/4d0cfc165e73d6371c000a88\/haruka-ayase-profile.jpg","version":37,"id":"83526","lastModified":"1301902021000","name":"Haruka Ayase","type":"Person","_key":"68974"} +{"label":"Noriko Eguchi","version":23,"id":"83528","lastModified":"1301902536000","name":"Noriko Eguchi","type":"Person","_key":"68975"} +{"label":"Sabur\u00f4 Tokit\u00f4","version":21,"id":"83529","lastModified":"1301902063000","name":"Sabur\u00f4 Tokit\u00f4","type":"Person","_key":"68976"} +{"label":"L.I.E.","description":"In this biting and disturbing coming-of-age tale from writer-director Michael Cuesta, life is bittersweet along the L.I.E., also known as the Long Island Expressway, as suburban teen Howie Blitzer learns all too clearly. In the space of a week, he loses nearly everything and everyone he knows and is left to navigate his adolescence virtually unsupervised.","id":"18734","runtime":97,"imdbId":"tt0242587","homepage":"http:\/\/tartanvideo.com\/film.asp?ProjectID={C668EA2C-810D-4E33-AB5C-9B8B00FA4B8A}","version":148,"lastModified":"1301907576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e2\/4bc95433017a3c57fe0256e2\/l-i-e-mid.jpg","genre":"Drama","title":"L.I.E.","releaseDate":979948800000,"language":"en","type":"Movie","_key":"68977"} +{"label":"Michael Cuesta","version":23,"id":"84931","lastModified":"1301902501000","name":"Michael Cuesta","type":"Person","_key":"68978"} +{"label":"Magnificent Bodyguards","description":"Chan is asked by a young, wealthy lady to take her sick brother to a particular doctor in order to be cured. To reach this doctor, Chan and a handful of travelling companions must pass through bandit-infested wild country. They meet and kung-fu-fight several gangs of thugs along the way.","id":"18735","runtime":101,"imdbId":"tt0077541","version":84,"lastModified":"1301904421000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ef\/4bc95434017a3c57fe0256ef\/fei-du-juan-yun-shan-mid.jpg","genre":"Action","title":"Magnificent Bodyguards","releaseDate":262483200000,"language":"en","type":"Movie","_key":"68979"} +{"label":"Siu-Lung Leung","version":25,"id":"83491","lastModified":"1301902648000","name":"Siu-Lung Leung","type":"Person","_key":"68980"} +{"label":"The Lizzie McGuire Movie","description":"Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy.","id":"18736","runtime":104,"imdbId":"tt0306841","trailer":"http:\/\/www.youtube.com\/watch?v=b-1GHBDy6us","homepage":"http:\/\/disneydvd.disney.go.com\/the-lizzie-mcguire-movie.html","version":232,"lastModified":"1301904521000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad6\/4d18c3f25e73d6083e009ad6\/the-lizzie-mcguire-movie-mid.jpg","genre":"Adventure","title":"The Lizzie McGuire Movie","releaseDate":1051315200000,"language":"en","type":"Movie","_key":"68981"} +{"label":"Adam Lamberg","version":19,"id":"143330","lastModified":"1301902569000","name":"Adam Lamberg","type":"Person","_key":"68982"} +{"label":"Yani Gellman","version":22,"id":"130936","lastModified":"1301902916000","name":"Yani Gellman","type":"Person","_key":"68983"} +{"label":"Daniel Escobar","version":37,"id":"143331","lastModified":"1301902756000","name":"Daniel Escobar","type":"Person","_key":"68984"} +{"label":"Peter Kelamis","version":24,"id":"89551","lastModified":"1301902872000","name":"Peter Kelamis","type":"Person","_key":"68985"} +{"label":"Katy Louise Saunders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8bc\/4bfc2a57017a3c70360008bc\/katy-louise-saunders-profile.jpg","biography":"Katy Louise Saunders (Londra, 21 luglio 1984) \u00e8 un'attrice inglese che vive e lavora in Italia.","version":22,"birthday":"459208800000","id":"88082","birthplace":"London, England","lastModified":"1301902482000","name":"Katy Louise Saunders","type":"Person","_key":"68986"} +{"label":"Antonio Cupo","version":21,"id":"96555","lastModified":"1301902775000","name":"Antonio Cupo","type":"Person","_key":"68987"} +{"label":"Marcus Hondro","version":19,"id":"143333","lastModified":"1301902756000","name":"Marcus Hondro","type":"Person","_key":"68988"} +{"label":"Ilaria Tommasino","version":19,"id":"143334","lastModified":"1301902731000","name":"Ilaria Tommasino","type":"Person","_key":"68989"} +{"label":"Aaron Douglas","version":41,"id":"77222","lastModified":"1301901803000","name":"Aaron Douglas","type":"Person","_key":"68990"} +{"label":"Heather Laura Gray","version":19,"id":"143335","lastModified":"1301902756000","name":"Heather Laura Gray","type":"Person","_key":"68991"} +{"label":"Morgan Tanner","version":19,"id":"143336","lastModified":"1301902756000","name":"Morgan Tanner","type":"Person","_key":"68992"} +{"label":"Evangeline Lilly","version":26,"id":"122543","lastModified":"1301902528000","name":"Evangeline Lilly","type":"Person","_key":"68993"} +{"label":"Faintheart","description":"A romantic comedy set in the world of battle re-enactments, about an irresponsible guy who has to shape up in order to win back his wife.","id":"18739","runtime":90,"imdbId":"tt1080012","trailer":"http:\/\/www.youtube.com\/watch?v=Ci_Q-j6FzLQ","version":77,"lastModified":"1301904006000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/701\/4bc95435017a3c57fe025701\/faintheart-mid.jpg","genre":"Comedy","title":"Faintheart","releaseDate":1233014400000,"language":"en","type":"Movie","_key":"68994"} +{"label":"Fearless Hyena Part II","description":"A pair of evil kung-fu artists, Heaven and Earth, are slaughtering the entire Yin-Yang brotherhood. ","id":"18741","runtime":92,"imdbId":"tt0085864","version":101,"lastModified":"1301906597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/70a\/4bc95436017a3c57fe02570a\/long-teng-hu-yue-mid.jpg","genre":"Action","title":"Fearless Hyena Part II","releaseDate":415584000000,"language":"en","type":"Movie","_key":"68995"} +{"label":"Austin Wai","version":22,"id":"83492","lastModified":"1301902688000","name":"Austin Wai","type":"Person","_key":"68996"} +{"label":"Chuan Chen","version":22,"id":"119437","lastModified":"1301902483000","name":"Chuan Chen","type":"Person","_key":"68997"} +{"label":"The House Next Door","description":"No overview found.","id":"18742","runtime":0,"imdbId":"tt0863080","version":420,"lastModified":"1302126734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f9d\/4d989a735e73d62274005f9d\/the-house-next-door-mid.jpg","genre":"Suspense","title":"The House Next Door","releaseDate":1162166400000,"language":"en","type":"Movie","_key":"68998"} +{"label":"Colin Ferguson","version":15,"id":"231645","lastModified":"1302126712000","name":"Colin Ferguson","type":"Person","_key":"68999"} +{"label":"Noam Jenkins","version":15,"id":"231646","lastModified":"1302126712000","name":"Noam Jenkins","type":"Person","_key":"69000"} +{"label":"Julie Stewart","version":21,"id":"188923","lastModified":"1302126712000","name":"Julie Stewart","type":"Person","_key":"69001"} +{"label":"Heather Hanson","version":21,"id":"175696","lastModified":"1302126712000","name":"Heather Hanson","type":"Person","_key":"69002"} +{"label":"Charlotte Sullivan","version":29,"id":"111441","lastModified":"1302126712000","name":"Charlotte Sullivan","type":"Person","_key":"69003"} +{"label":"Natalie Lisinska","version":35,"id":"125580","lastModified":"1302126712000","name":"Natalie Lisinska","type":"Person","_key":"69004"} +{"label":"Election","description":"A drama-thriller centered on a democratic election within an organized crime society.","id":"18747","runtime":101,"imdbId":"tt0434008","version":168,"lastModified":"1301903912000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71b\/4bc95437017a3c57fe02571b\/hak-se-wui-mid.jpg","studio":"China Star Entertainment","genre":"Action","title":"Election","releaseDate":1129766400000,"language":"en","type":"Movie","_key":"69005"} +{"label":"Bloodline","description":"One man's journey into the world of the so-called 'Bloodline' conspiracy, at the heart of Dan Brown's The Da Vinci Code, where a secret society, the Priory of Sion, claims to have guarded evidence of the marriage of Mary Magdalene and Jesus Christ, their children and their descendants down through the centuries.","id":"18749","runtime":118,"imdbId":"tt1190537","homepage":"http:\/\/www.bloodline-themovie.com\/","version":281,"lastModified":"1301908297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4bc95437017a3c57fe025725\/bloodline-mid.jpg","genre":"Documentary","title":"Bloodline","releaseDate":1199491200000,"language":"en","type":"Movie","_key":"69006"} +{"label":"Bruce Burgess","version":21,"id":"83504","lastModified":"1301902174000","name":"Bruce Burgess","type":"Person","_key":"69007"} +{"label":"Gabriel Barkay","version":20,"id":"83505","lastModified":"1301902141000","name":"Gabriel Barkay","type":"Person","_key":"69008"} +{"label":"Da uomo a uomo","description":"As a child, Bill witnesses the murder of his family by four robbers. Fifteen years later, he embarks on his revenge. During his quest, he crosses paths with Ryan, an ex-con who wants the money the robbers owe him.","id":"18752","runtime":114,"imdbId":"tt0064208","version":54,"lastModified":"1301904939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72e\/4bc9543c017a3c57fe02572e\/da-uomo-a-uomo-mid.jpg","studio":"United Artists","genre":"Western","title":"Da uomo a uomo","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"69009"} +{"label":"Mysterious Island","description":"No overview found.","id":"18754","runtime":0,"version":1147,"lastModified":"1302140960000","genre":"Action","title":"Mysterious Island","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69010"} +{"label":"Pigs","description":"A college ladies man accepts a challenge from his dorm buddies - sleep with the entire alphabet, A through Z, before graduation. The rules are simple: the rarer the first letter of the girl's last name, the higher the payout. All goes well until he falls for the \"X\". Now he's torn between his feelings for the girl and winning the bet for his friends.","id":"18755","runtime":85,"imdbId":"tt1065106","trailer":"http:\/\/www.youtube.com\/watch?v=1223","homepage":"http:\/\/www.pigsthemovie.com\/","version":119,"lastModified":"1301905473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/740\/4bc9543f017a3c57fe025740\/pigs-mid.jpg","genre":"Comedy","title":"Pigs","releaseDate":1194220800000,"language":"en","type":"Movie","_key":"69011"} +{"label":"Jefferson Brown","version":22,"id":"83530","lastModified":"1301902373000","name":"Jefferson Brown","type":"Person","_key":"69012"} +{"label":"Darryn Lucio","version":22,"id":"83531","lastModified":"1301902193000","name":"Darryn Lucio","type":"Person","_key":"69013"} +{"label":"Christopher Elliott","version":19,"id":"83532","lastModified":"1301902063000","name":"Christopher Elliott","type":"Person","_key":"69014"} +{"label":"Melanie Marden","version":19,"id":"83533","lastModified":"1301902453000","name":"Melanie Marden","type":"Person","_key":"69015"} +{"label":"Karl DiPelino","version":19,"id":"83534","lastModified":"1301902236000","name":"Karl DiPelino","type":"Person","_key":"69016"} +{"label":"Le plaisir de chanter","description":"Agents des services secrets, Muriel et Philippe forment un improbable duo amoureux. Dans leur nouvelle mission, ils sont charg\u00e9s de mettre la main sur une cl\u00e9 usb cach\u00e9e par Constance, la veuve d'un trafiquant d'uranium fra\u00eechement assassin\u00e9. Cette jeune bourgeoise \u00e9trangement ing\u00e9nue conduira le duo dans un cours de chant lyrique o\u00f9 s'entrem\u00ealent d'autres espions aux voix ensorcelantes. ","id":"18756","runtime":99,"imdbId":"tt1105739","trailer":"http:\/\/www.youtube.com\/watch?v=1225","version":79,"lastModified":"1301907246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74d\/4bc95440017a3c57fe02574d\/le-plaisir-de-chanter-mid.jpg","studio":"Pyramide Distribution","genre":"Comedy","title":"Le plaisir de chanter","releaseDate":1227657600000,"language":"en","type":"Movie","_key":"69017"} +{"label":"Ilan Duran Cohen","version":22,"id":"84470","lastModified":"1301902685000","name":"Ilan Duran Cohen","type":"Person","_key":"69018"} +{"label":"To Kill with Intrigue","description":"Young master Cao Le chases his pregnant girlfriend away from the family castle. He does it in order to save her from vicious bandits who are going to murder his family. ","id":"18758","runtime":106,"imdbId":"tt0076227","version":88,"lastModified":"1301903992000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/756\/4bc95440017a3c57fe025756\/jian-hua-yan-yu-jiang-nan-mid.jpg","genre":"Action","title":"To Kill with Intrigue","releaseDate":238377600000,"language":"en","type":"Movie","_key":"69019"} +{"label":"Feng Hsu","version":21,"id":"83535","lastModified":"1301902712000","name":"Feng Hsu","type":"Person","_key":"69020"} +{"label":"Ching Hsia Chiang","version":22,"id":"125301","lastModified":"1301902687000","name":"Ching Hsia Chiang","type":"Person","_key":"69021"} +{"label":"Kuo Wang","version":22,"id":"125302","lastModified":"1301902687000","name":"Kuo Wang","type":"Person","_key":"69022"} +{"label":"The Cell 2","description":"The Cusp is a serial killer who kills his victims and then brings them back to life; over and over again; until they beg to die! Maya is a psychic investigator who gained her powers after a 1 year coma after she was the Cusp's first victim! Now the Cusp Killer is back and Maya has little time to do what she has never done before: go into the mind of a killer unprotected and save his latest victim.","id":"18759","runtime":94,"imdbId":"tt1185837","trailer":"http:\/\/www.youtube.com\/watch?v=2314","version":169,"lastModified":"1301904610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/768\/4bc95442017a3c57fe025768\/the-cell-2-mid.jpg","genre":"Horror","title":"The Cell 2","releaseDate":1235692800000,"language":"en","type":"Movie","_key":"69023"} +{"label":"Tim Iacofano","version":19,"id":"25874","lastModified":"1301902063000","name":"Tim Iacofano","type":"Person","_key":"69024"} +{"label":"Tessie Santiago","version":19,"id":"83536","lastModified":"1301902063000","name":"Tessie Santiago","type":"Person","_key":"69025"} +{"label":"Chris Bruno","version":20,"id":"128346","lastModified":"1301902423000","name":"Chris Bruno","type":"Person","_key":"69026"} +{"label":"Spiritual Kung Fu","description":"Jackie Chan plays the part of the class clown in a shaolin temple whose deadliest secret is stolen. All is lost until Jackie's character discovers dancing blue ghosts with bright red hair who haunt the library. ","id":"18760","runtime":94,"imdbId":"tt0078128","version":97,"lastModified":"1301903079000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/775\/4bc95443017a3c57fe025775\/quan-jing-mid.jpg","genre":"Action","title":"Spiritual Kung Fu","releaseDate":280627200000,"language":"en","type":"Movie","_key":"69027"} +{"label":"Chih-ping Chiang","version":21,"id":"125296","lastModified":"1301902573000","name":"Chih-ping Chiang","type":"Person","_key":"69028"} +{"label":"Hsiu-yi Fang","version":21,"id":"125297","lastModified":"1301902764000","name":"Hsiu-yi Fang","type":"Person","_key":"69029"} +{"label":"Rozygrysh","description":"Remake film. Russian drama school domination. In the last quarter of graduating class comes a new student, violating all classifications, and an affront to the leader. That, in turn, is ready to do anything not to give up this title until the end of school days. How badly would not have had to deal with those who stand in his path to goal.","id":"18761","runtime":84,"imdbId":"tt1440278","version":40,"lastModified":"1301908275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/77a\/4bc95443017a3c57fe02577a\/18761-mid.jpg","studio":"Studio Pavla Lungina","genre":"Drama","title":"Rozygrysh","language":"en","type":"Movie","_key":"69030"} +{"label":"Andrei Kudinenko","version":20,"id":"83537","lastModified":"1301902236000","name":"Andrei Kudinenko","type":"Person","_key":"69031"} +{"label":"Yevgeni Dmitriyev","version":20,"id":"83538","lastModified":"1301902236000","name":"Yevgeni Dmitriyev","type":"Person","_key":"69032"} +{"label":"Dmitriy Dyuzhev","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d7\/4d45c0ce5e73d653850028d7\/dmitriy-dyuzhev-profile.jpg","version":24,"id":"83539","lastModified":"1301901607000","name":"Dmitriy Dyuzhev","type":"Person","_key":"69033"} +{"label":"Yevdokiya Germanova","version":20,"id":"83540","lastModified":"1301901862000","name":"Yevdokiya Germanova","type":"Person","_key":"69034"} +{"label":"Mariya Gorban","version":18,"id":"83543","lastModified":"1301902236000","name":"Mariya Gorban","type":"Person","_key":"69035"} +{"label":"Dmitri Kharatyan","version":20,"id":"83544","lastModified":"1301902063000","name":"Dmitri Kharatyan","type":"Person","_key":"69036"} +{"label":"Klavdiya Korshunova","version":29,"id":"83545","lastModified":"1301902236000","name":"Klavdiya Korshunova","type":"Person","_key":"69037"} +{"label":"Ivan Alekseev","version":18,"id":"83546","lastModified":"1301902630000","name":"Ivan Alekseev","type":"Person","_key":"69038"} +{"label":"Blue Juice","description":"JC (Pertwee) is the hero of the Cornish surfing community. Staring thirty hard in the face, he fears that the wave that has carried him through a prolonged adolescence is heading for the rocks as his girlfriend pressures him for commitment and his friends contemplate growing up.","id":"18762","runtime":90,"imdbId":"tt0112537","version":313,"lastModified":"1301905536000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/783\/4bc95444017a3c57fe025783\/blue-juice-mid.jpg","studio":"Skreba Films","genre":"Comedy","title":"Blue Juice","releaseDate":811123200000,"language":"en","type":"Movie","_key":"69039"} +{"label":"Peter Gunn","version":19,"id":"83548","lastModified":"1301902063000","name":"Peter Gunn","type":"Person","_key":"69040"} +{"label":"Michelle Chadwick","version":19,"id":"83549","lastModified":"1301902453000","name":"Michelle Chadwick","type":"Person","_key":"69041"} +{"label":"Robin Soans","version":19,"id":"83550","lastModified":"1301902453000","name":"Robin Soans","type":"Person","_key":"69042"} +{"label":"Guy Leverton","version":19,"id":"83551","lastModified":"1301902453000","name":"Guy Leverton","type":"Person","_key":"69043"} +{"label":"Mark Frost","version":19,"id":"83552","lastModified":"1301902063000","name":"Mark Frost","type":"Person","_key":"69044"} +{"label":"Paul Reynolds","version":20,"id":"83553","lastModified":"1301902453000","name":"Paul Reynolds","type":"Person","_key":"69045"} +{"label":"Edwin Starr","version":19,"id":"83554","lastModified":"1301902236000","name":"Edwin Starr","type":"Person","_key":"69046"} +{"label":"Carl Prechezer","version":20,"id":"83555","lastModified":"1301902063000","name":"Carl Prechezer","type":"Person","_key":"69047"} +{"label":"Heart of Dragon","description":"Story of a cop who forsakes his dreams of sailing around the world so that he can care for his mentally retarded brother. Innocently caught up in a gangland fight, the brother is kidnapped to force the cop to turn over a police informant. ","id":"18763","runtime":91,"imdbId":"tt0091427","version":273,"lastModified":"1301903311000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/790\/4bc95448017a3c57fe025790\/long-de-xin-mid.jpg","genre":"Action","title":"Heart of Dragon","releaseDate":496972800000,"language":"en","type":"Movie","_key":"69048"} +{"label":"Hoi Mang","version":19,"id":"83556","lastModified":"1301901717000","name":"Hoi Mang","type":"Person","_key":"69049"} +{"label":"Twin Dragons","description":"Twins, separated at birth, end up as a Hong Kong gangster and a New York concert pianist. When the pianist travels to Hong Kong for a concert, the two inevitably get mistaken for each other. ","id":"18764","runtime":89,"imdbId":"tt0105399","version":109,"lastModified":"1301904250000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/79e\/4bc95449017a3c57fe02579e\/shuang-long-hui-mid.jpg","studio":"Dimension Films","genre":"Action","title":"Twin Dragons","releaseDate":695433600000,"language":"en","tagline":"Twice the action!","type":"Movie","_key":"69050"} +{"label":"Teddy Robin Kwan","version":35,"id":"26729","lastModified":"1301901981000","name":"Teddy Robin Kwan","type":"Person","_key":"69051"} +{"label":"Anthony Chan","version":26,"id":"83560","lastModified":"1301902383000","name":"Anthony Chan","type":"Person","_key":"69052"} +{"label":"Ben Hogan: The Golf Swing","description":"Jim McLean has worked with many of the best PGA Tour Professionals but his dedication to the Amateur player is what sets him apart. His reputation as one of the premier instructors in the game is enhanced even more as he breaks down the fundamentals of Ben Hogan's golf swing. Using never-before-seen footage, he explains step-by-step the elements that makes Hogan's swing.","id":"18766","runtime":91,"version":146,"lastModified":"1301107352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a3\/4bc9544a017a3c57fe0257a3\/ben-hogan-the-golf-swing-mid.jpg","title":"Ben Hogan: The Golf Swing","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69053"} +{"label":"Island of Fire","description":"Someone in a prison run by a corrupt warden fakes the deaths of convicts to later use them as expendable assassins. A police officer is sent into the prison to gather evidence of the corruption. ","id":"18767","runtime":95,"imdbId":"tt0099812","version":78,"lastModified":"1301903233000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0dd\/4c7620f27b9aa16a090000dd\/huo-shao-dao-mid.jpg","genre":"Action","title":"Island of Fire","releaseDate":631152000000,"language":"en","tagline":"When you're looking for the living dead you start your search in hell!","type":"Movie","_key":"69054"} +{"label":"Yu Wang","version":29,"id":"71062","lastModified":"1301901981000","name":"Yu Wang","type":"Person","_key":"69055"} +{"label":"45 Diese Frau will Rache","description":"No overview found.","id":"18768","runtime":0,"version":22,"lastModified":"1300980621000","title":"45 Diese Frau will Rache","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69056"} +{"label":"Thirty Seconds Over Tokyo","description":"In the wake of Pearl Harbor, a young lieutenant leaves his expectant wife to volunteer for a secret bombing mission which will take the war to the Japanese homeland.","id":"18770","runtime":138,"imdbId":"tt0037366","version":79,"lastModified":"1301906056000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7be\/4bc9544c017a3c57fe0257be\/thirty-seconds-over-tokyo-mid.jpg","genre":"Drama","title":"Thirty Seconds Over Tokyo","releaseDate":-792979200000,"language":"en","type":"Movie","_key":"69057"} +{"label":"They Were Expendable","description":"A dramatized account of the role of the American PT Boats in the defense of the Philippines in World War II.","id":"18771","runtime":135,"imdbId":"tt0038160","version":137,"lastModified":"1301906644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7c7\/4bc9544c017a3c57fe0257c7\/they-were-expendable-mid.jpg","genre":"Action","title":"They Were Expendable","releaseDate":-758419200000,"language":"en","type":"Movie","_key":"69058"} +{"label":"Superman II The Richard Donner Cut","description":"Superman agrees to sacrifice his powers to marry Lois, unaware that three Kryptonian criminals he inadvertently released are conquering Earth.","id":"18772","runtime":115,"imdbId":"tt0839995","version":121,"lastModified":"1301903045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2dc\/4ce840fc5e73d625900002dc\/superman-ii-the-richard-donner-cut-mid.jpg","genre":"Action","title":"Superman II The Richard Donner Cut","releaseDate":1164499200000,"language":"en","type":"Movie","_key":"69059"} +{"label":"Doppelganger","description":"A woman moves from NYC to LA after a murder, in which she is implicated. She is followed by what is apparently her evil alter- ego. She moves into a room for rent by a writer, and he begins having an affair with her, but after some strange things happen, he's not so sure if the affair is with her or her doppelganger.","id":"18773","runtime":104,"imdbId":"tt0106753","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/doppelganger","version":134,"lastModified":"1301905330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1dd\/4bf662d7017a3c77320001dd\/doppelganger-mid.jpg","genre":"Horror","title":"Doppelganger","releaseDate":751334400000,"language":"en","type":"Movie","_key":"69060"} +{"label":"Leslie Hope","version":16,"id":"146306","lastModified":"1301903087000","name":"Leslie Hope","type":"Person","_key":"69061"} +{"label":"Avi Nesher","version":26,"id":"95550","lastModified":"1301901983000","name":"Avi Nesher","type":"Person","_key":"69062"} +{"label":"This Sporting Life","description":"In Northern England in the early 1960s, Frank Machin is mean, tough and ambitious enough to become an immediate star in the rugby league team run by local employer Weaver.","id":"18774","runtime":134,"imdbId":"tt0057578","version":116,"lastModified":"1301905776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e2\/4bc9544f017a3c57fe0257e2\/this-sporting-life-mid.jpg","genre":"Drama","title":"This Sporting Life","releaseDate":-203990400000,"language":"en","type":"Movie","_key":"69063"} +{"label":"Demon Seed","description":"A scientist creates Proteus, an organic super computer with artificial intelligence which becomes obsessed with human beings, and in particular the creators wife.","id":"18775","runtime":94,"imdbId":"tt0075931","version":94,"lastModified":"1301903964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7eb\/4bc9544f017a3c57fe0257eb\/demon-seed-mid.jpg","genre":"Horror","title":"Demon Seed","releaseDate":244425600000,"language":"en","type":"Movie","_key":"69064"} +{"label":"Alfred Dennis","version":23,"id":"127536","lastModified":"1301902799000","name":"Alfred Dennis","type":"Person","_key":"69065"} +{"label":"Donald Cammell","version":34,"id":"95462","lastModified":"1301902495000","name":"Donald Cammell","type":"Person","_key":"69066"} +{"label":"The Spirit of St. Louis","description":"Charles 'Slim' Lindbergh struggles to finance and design an airplane that will make his New York to Paris flight the first solo transatlantic crossing.","id":"18776","runtime":135,"imdbId":"tt0051003","trailer":"http:\/\/www.youtube.com\/watch?v=pADw8x4zjsk","version":145,"lastModified":"1301905402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f0\/4bc9544f017a3c57fe0257f0\/the-spirit-of-st-louis-mid.jpg","genre":"Action","title":"The Spirit of St. Louis","releaseDate":-400809600000,"language":"en","type":"Movie","_key":"69067"} +{"label":"Patricia Smith","version":22,"id":"129994","lastModified":"1301902787000","name":"Patricia Smith","type":"Person","_key":"69068"} +{"label":"Bartlett Robinson","version":22,"id":"129995","lastModified":"1301902787000","name":"Bartlett Robinson","type":"Person","_key":"69069"} +{"label":"Slow Burn","description":"A district attorney (Ray Liotta) is involved in a 24-hour showdown with a gang leader (LL Cool J) and is, at the same time, being manipulated by an attractive assistant district attorney (Jolene Blalock) and a cryptic stranger.","id":"18777","runtime":93,"imdbId":"tt0376196","version":162,"lastModified":"1301904750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f9\/4bc95450017a3c57fe0257f9\/slow-burn-mid.jpg","genre":"Crime","title":"Slow Burn","releaseDate":1176422400000,"language":"en","type":"Movie","_key":"69070"} +{"label":"Wayne Beach","version":30,"id":"58667","lastModified":"1301902179000","name":"Wayne Beach","type":"Person","_key":"69071"} +{"label":"God's Army","description":"No overview found.","id":"18778","runtime":108,"imdbId":"tt0238247","version":68,"lastModified":"1301414785000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/998\/4be39fd0017a3c35bd000998\/god-s-army-mid.jpg","genre":"Drama","title":"God's Army","releaseDate":952646400000,"language":"en","type":"Movie","_key":"69072"} +{"label":"Death on Demand","description":"No overview found.","id":"18779","runtime":90,"imdbId":"tt0902274","homepage":"http:\/\/www.evil-twins.net\/","version":117,"lastModified":"1301418696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f8\/4cef2c1b5e73d6625a0001f8\/death-on-demand-mid.jpg","genre":"Horror","title":"Death on Demand","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"69073"} +{"label":"Kerstii Allum","version":15,"id":"143369","lastModified":"1301902756000","name":"Kerstii Allum","type":"Person","_key":"69074"} +{"label":"Sink the Bismarck!","description":"A true WW2 story: the British Navy must find and destroy a powerful German warship.Chronicles the breakout of the Bismarck during the early days of World War Two. Seen both from the point of view of the many naval vessels on both sides and from the central headquarters of the British where the search for the super battleship was controlled.","id":"18780","runtime":97,"imdbId":"tt0054310","version":141,"lastModified":"1301414787000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4bc95451017a3c57fe025802\/sink-the-bismarck-mid.jpg","genre":"Action","title":"Sink the Bismarck!","releaseDate":-312076800000,"language":"en","type":"Movie","_key":"69075"} +{"label":"Jack Watling","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b57\/4cf948847b9aa1514b001b57\/jack-watling-profile.jpg","version":22,"id":"123905","lastModified":"1301901848000","name":"Jack Watling","type":"Person","_key":"69076"} +{"label":"Mark Dignam","version":24,"id":"93967","lastModified":"1301902558000","name":"Mark Dignam","type":"Person","_key":"69077"} +{"label":"Ernest Clark ","version":17,"id":"139765","lastModified":"1301903006000","name":"Ernest Clark ","type":"Person","_key":"69078"} +{"label":"John Horsley","version":25,"id":"47569","lastModified":"1301901848000","name":"John Horsley","type":"Person","_key":"69079"} +{"label":"Walter Hudd","version":24,"id":"85936","lastModified":"1301902625000","name":"Walter Hudd","type":"Person","_key":"69080"} +{"label":"The Haunting in Connecticut","description":"When the Campbell family moves to upstate Connecticut, they soon learn that their charming Victorian home has a disturbing history: not only was the house a transformed funeral parlor where inconceivable acts occurred, but the owner's clairvoyant son Jonah served as a demonic messenger, providing a gateway for spiritual entities to crossover.","id":"18781","runtime":92,"imdbId":"tt0492044","trailer":"http:\/\/www.youtube.com\/watch?v=MRJA3lN0xCQ","homepage":"http:\/\/www.hauntinginconnecticut.com\/","version":396,"lastModified":"1301902405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/246\/4c8723cb5e73d66b5c000246\/the-haunting-in-connecticut-mid.jpg","studio":"Gold Circle Films","genre":"Drama","title":"The Haunting in Connecticut","releaseDate":1238112000000,"language":"en","type":"Movie","_key":"69081"} +{"label":"Sophi Knight","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e35\/4d281df07b9aa134cf001e35\/sophi-knight-profile.jpg","version":25,"id":"83568","lastModified":"1301902192000","name":"Sophi Knight","type":"Person","_key":"69082"} +{"label":"Erik J. Berg","version":24,"id":"83569","lastModified":"1301902363000","name":"Erik J. Berg","type":"Person","_key":"69083"} +{"label":"Looney Tunes: Golden Collection Vol. 6","description":"The concluding release from the Golden Collection Series is a 4-disc set with 60 more of the most looneytic Looney Tunes ever unleashed. Plus, 15 bonus shorts to make this the biggest collection of Looney Tunes ever! Indeed, some have never before been on home video!","id":"18782","runtime":413,"version":29,"lastModified":"1301908600000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/838\/4bc9545a017a3c57fe025838\/looney-tunes-golden-collection-volume-6-mid.jpg","studio":"Warner Home Video","genre":"Animation","title":"Looney Tunes: Golden Collection Vol. 6","releaseDate":1224547200000,"language":"en","tagline":"We\u2019ve saved the best for last\u2026 more of your favorite Looney Tunes\u2026your wish is our command.","type":"Movie","_key":"69084"} +{"label":"Sahara","description":"Sergeant Joe Gunn and his tank crew pick up five British soldiers, a Frenchman and a Sudanese man with an Italian prisoner crossing the Libyan Desert to rejoin their command after the fall of Tobruk. Tambul, the Sudanese leads them to an abandoned desert fortress where they hope to find water. Soon a detachment of German soldiers arrives and attempts to barter food for water, but Gunn and his followers refuse. When the Germans attack, Gunn leads his desert-weary men in a desperate battle, hoping","id":"18783","runtime":97,"imdbId":"tt0036323","version":124,"lastModified":"1301905671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/846\/4bc9545b017a3c57fe025846\/sahara-mid.jpg","genre":"Action","title":"Sahara","releaseDate":-824947200000,"language":"en","type":"Movie","_key":"69085"} +{"label":"Run Silent, Run Deep","description":"A U.S. sub commander, obsessed with sinking a certain Japanese ship, butts heads with his first officer and crew. ","id":"18784","runtime":93,"imdbId":"tt0052151","version":113,"lastModified":"1301905640000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84f\/4bc9545c017a3c57fe02584f\/run-silent-run-deep-mid.jpg","genre":"Action","title":"Run Silent, Run Deep","releaseDate":-371347200000,"language":"en","type":"Movie","_key":"69086"} +{"label":"The Hangover","description":"A Las Vegas-set comedy centered around three groomsmen who lose their about-to-be-wed buddy during their drunken misadventures, then must retrace their steps in order to find him. ","id":"18785","runtime":100,"imdbId":"tt1119646","trailer":"http:\/\/www.youtube.com\/watch?v=jj6wcUes1no","homepage":"http:\/\/www.hangovermovie.com\/","version":366,"lastModified":"1302078678000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/064\/4c7de5655e73d648e0000064\/the-hangover-mid.jpg","studio":"Legendary Pictures","genre":"Comedy","title":"The Hangover","releaseDate":1244160000000,"language":"en","tagline":"Some guys just can't handle Vegas.","type":"Movie","_key":"69087"} +{"label":"Sasha Barrese","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/037\/4c91594d7b9aa10211000037\/sasha-barrese-profile.jpg","version":43,"id":"83585","lastModified":"1302078677000","name":"Sasha Barrese","type":"Person","_key":"69088"} +{"label":"Finish Line","description":"No overview found.","id":"18787","runtime":93,"imdbId":"tt1112784","version":104,"lastModified":"1301904576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/696\/4d5064da7b9aa13ab400d696\/finish-line-mid.jpg","genre":"Action","title":"Finish Line","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"69089"} +{"label":"Across the Pacific","description":"Bogart plays a U.S. officer of artillery who is court martialled in disgrace (in 1941) and who leaves the country. He gets a job offer in central America with a stop off in Panama. While there he discovers Japanese plot to attack the Panama Canal along with the Pearl Harbor attack.","id":"18790","runtime":97,"imdbId":"tt0034428","version":85,"lastModified":"1301903451000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ac\/4bc9546c017a3c57fe0258ac\/across-the-pacific-mid.jpg","genre":"Action","title":"Across the Pacific","releaseDate":-862272000000,"language":"en","type":"Movie","_key":"69090"} +{"label":"Handphone","description":"Talent manager Seung-min sees YOON Jin-ah, a rising actress, as his one last hope to turn his life around. Just as Jin-ah is on the path to stardom, he receives a threat from her former lover and gets her sex clip on his phone. Seung-min tracks down the culprit and retrieves the tape but ends up losing his phone. He realizes there is one last evidence of the sex tape on his phone...","id":"18791","runtime":137,"imdbId":"tt1452542","version":32,"lastModified":"1300980627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b5\/4bc9546d017a3c57fe0258b5\/handphone-2009-mid.jpg","genre":"Thriller","title":"Handphone","releaseDate":1235001600000,"language":"en","type":"Movie","_key":"69091"} +{"label":"Ahista Ahista","description":"No overview found.","id":"18799","runtime":0,"imdbId":"tt0831840","version":62,"lastModified":"1301908294000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8be\/4bc9546e017a3c57fe0258be\/ahista-ahista-mid.jpg","studio":"Anjum Rizvi Film Company","genre":"Drama","title":"Ahista Ahista","releaseDate":1155859200000,"language":"en","type":"Movie","_key":"69092"} +{"label":"Haunted","description":"After the accidental death of his twin sister, David and his family move back to the United States. In 1928, David returns to England to teach at Cambridge. Besides teaching, David is an author who exposes false mediums and spiritualist. While he has never found a person who can communicate with the \"dearly departed\", his continues to accept challenges.","id":"18801","runtime":108,"imdbId":"tt0113269","version":100,"lastModified":"1301905668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d1\/4bc9546f017a3c57fe0258d1\/haunted-mid.jpg","genre":"Horror","title":"Haunted","releaseDate":814752000000,"language":"en","type":"Movie","_key":"69093"} +{"label":"Hope & Redemption: The Lena Baker Story","description":"Based on true events, The Lena Baker Story recounts one African-American womans struggle to rise above the challenges of her life, to face the choices she makes, and to ultimately triumph over her...Lena Baker was the first and only woman to be sentenced to death by the electric chair in the state of Georgia and was executed in 1945. She was pardoned posthumously in 2005.","id":"18802","runtime":100,"imdbId":"tt1139662","trailer":"http:\/\/www.youtube.com\/watch?v=1229","homepage":"http:\/\/www.lenabakerthemovie.com\/","version":93,"lastModified":"1301906050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8da\/4bc95472017a3c57fe0258da\/hope-redemption-the-lena-baker-story-mid.jpg","genre":"Drama","title":"Hope & Redemption: The Lena Baker Story","releaseDate":1225929600000,"language":"en","type":"Movie","_key":"69094"} +{"label":"Tichina Arnold","version":20,"id":"83600","lastModified":"1301902664000","name":"Tichina Arnold","type":"Person","_key":"69095"} +{"label":"Dwayne Boyd","version":19,"id":"83602","lastModified":"1301902236000","name":"Dwayne Boyd","type":"Person","_key":"69096"} +{"label":"Kenny Cook","version":19,"id":"83603","lastModified":"1301902630000","name":"Kenny Cook","type":"Person","_key":"69097"} +{"label":"Jasmine Farmer","version":19,"id":"83604","lastModified":"1301902630000","name":"Jasmine Farmer","type":"Person","_key":"69098"} +{"label":"Mike Hickman","version":19,"id":"83605","lastModified":"1301902629000","name":"Mike Hickman","type":"Person","_key":"69099"} +{"label":"Tom Huff","version":19,"id":"83606","lastModified":"1301902629000","name":"Tom Huff","type":"Person","_key":"69100"} +{"label":"Ralph Wilcox","version":20,"id":"83610","lastModified":"1301902236000","name":"Ralph Wilcox","type":"Person","_key":"69101"} +{"label":"Expired","description":"The film revolves around Claire, a kind soul who resents having to enforce the law at all times, and Jay, an angry Traffic Officer who loves his job, being the perfect outlet for his anger and frustrations. Coming both from a place of despair and loneliness, Jay and Claire meet and engage in a tumultuous relationship which will eventually teach them that love can spread redemption.","id":"18803","runtime":107,"imdbId":"tt0488535","trailer":"http:\/\/www.youtube.com\/watch?v=1503","version":124,"lastModified":"1301906261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e3\/4bc95473017a3c57fe0258e3\/expired-mid.jpg","genre":"Comedy","title":"Expired","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"69102"} +{"label":"Sonia Iris Lozada","version":20,"id":"83598","lastModified":"1301902703000","name":"Sonia Iris Lozada","type":"Person","_key":"69103"} +{"label":"Jonny Mack","version":20,"id":"83599","lastModified":"1301902704000","name":"Jonny Mack","type":"Person","_key":"69104"} +{"label":"Cecilia Miniucchi","version":21,"id":"84352","lastModified":"1301901862000","name":"Cecilia Miniucchi","type":"Person","_key":"69105"} +{"label":"Head in the Clouds","description":"A romantic drama set in 1930's England, Paris, and Spain. Gilda Bess\u00e9 shares her Paris apartment with an Irish schoolteacher, Guy Malyon, and Mia, a refugee from Spain. As the world drifts toward war, Gilda defiantly pursues her hedonistic lifestyle and her burgeoning career as a photographer. But Guy and Mia feel impelled to join the fight against fascism, and the three friends are separated.","id":"18804","runtime":121,"imdbId":"tt0338097","homepage":"http:\/\/www.sonyclassics.com\/headintheclouds\/","version":162,"lastModified":"1301902459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92c\/4bc9547b017a3c57fe02592c\/head-in-the-clouds-mid.jpg","genre":"Drama","title":"Head in the Clouds","releaseDate":1099094400000,"language":"en","type":"Movie","_key":"69106"} +{"label":"Peter Cockett","version":21,"id":"123973","lastModified":"1301902929000","name":"Peter Cockett","type":"Person","_key":"69107"} +{"label":"Gabriel Hogan","version":16,"id":"148125","lastModified":"1301903097000","name":"Gabriel Hogan","type":"Person","_key":"69108"} +{"label":"The Jackals","description":"Bandits target a gold miner and his granddaughter in 19th century South Africa. Robert Gunnar is the bandit with a heart of gold, who is after Price's cache of gold, but falls in love with Diana Ivarson, who has hair of gold (bleach).","id":"18805","runtime":96,"imdbId":"tt0061832","version":216,"lastModified":"1301906651000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/936\/4bc9547c017a3c57fe025936\/the-jackals-mid.png","genre":"Action","title":"The Jackals","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"69109"} +{"label":"Diana Ivarson","version":20,"id":"83617","lastModified":"1301902197000","name":"Diana Ivarson","type":"Person","_key":"69110"} +{"label":"Bob Courtney","version":24,"id":"83618","lastModified":"1301902199000","name":"Bob Courtney","type":"Person","_key":"69111"} +{"label":"Robert D. Webb","version":27,"id":"89216","lastModified":"1301901859000","name":"Robert D. Webb","type":"Person","_key":"69112"} +{"label":"Bells of San Angelo","description":"Gridley is mining silver from an old Mexican mine and bringing it into the USA thru a passage into his worthless mine. Border guard Rogers suspects Gridley and finally finds the secret entrance to the Mexican mine. He sends Lee Madison for help only to have her captured by Gridley. Trigger brings help that takes care of Gridley's men and now Roy has to rescue Madison.","id":"18806","runtime":0,"imdbId":"tt0039180","version":221,"lastModified":"1301907989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/943\/4bc9547f017a3c57fe025943\/bells-of-san-angelo-mid.jpg","genre":"Action","title":"Bells of San Angelo","releaseDate":-716860800000,"language":"en","type":"Movie","_key":"69113"} +{"label":"Dale Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/015\/4cb37a7b7b9aa13459000015\/dale-evans-profile.jpg","version":27,"id":"83620","lastModified":"1301901598000","name":"Dale Evans","type":"Person","_key":"69114"} +{"label":"John McGuire","version":26,"id":"83621","lastModified":"1301902675000","name":"John McGuire","type":"Person","_key":"69115"} +{"label":"Kansas Pacific","description":"Just before the Civil War (but after the South has seceded), Southern saboteurs try to prevent railroad construction from crossing Kansas to the frontier; army captain Nelson is sent out to oppose them. As the tracks push westward, Nelson must contend with increasingly violent sabotage, while trying to romance the foreman's pretty daughter Barbara.","id":"18807","runtime":73,"imdbId":"tt0045954","version":84,"lastModified":"1301908314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94c\/4bc95480017a3c57fe02594c\/kansas-pacific-mid.jpg","title":"Kansas Pacific","releaseDate":-531964800000,"language":"en","type":"Movie","_key":"69116"} +{"label":"Eve Miller","version":27,"id":"83622","lastModified":"1301902558000","name":"Eve Miller","type":"Person","_key":"69117"} +{"label":"Highway","description":"Jack is caught with the wife of his employer, a Vegas thug. The thug sends goons after Jack, who convinces his best friend, Pilot, to flee with him. Pilot insists that they head for Seattle, but doesn't tell Jack why. The goons learn from Pilot's drug source where the youths are headed, and they follow, hell bent on breaking Jack's feet. On the road, Jack and Pilot give a ride to Cassie, a distressed young woman. She and Jack hit it off. They pick up an aging stoner headed to Seattle for Kurt Co","id":"18808","runtime":97,"imdbId":"tt0165361","trailer":"http:\/\/www.youtube.com\/watch?v=U4C57_31GiE","version":191,"lastModified":"1301904174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/955\/4bc95481017a3c57fe025955\/highway-mid.jpg","genre":"Drama","title":"Highway","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"69118"} +{"label":"How to Irritate People","description":"Mockumentary lead by John Cleese who through a series of sketches explains the ins and outs of properly irritating people.","id":"18809","runtime":68,"imdbId":"tt0063100","version":123,"lastModified":"1301905825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/962\/4bc95482017a3c57fe025962\/how-to-irritate-people-mid.jpg","studio":"David Paradine Productions","genre":"Comedy","title":"How to Irritate People","releaseDate":-29808000000,"language":"en","type":"Movie","_key":"69119"} +{"label":"Ian Fordyce","version":15,"id":"149977","lastModified":"1301903107000","name":"Ian Fordyce","type":"Person","_key":"69120"} +{"label":"Gillian Lind","version":15,"id":"149978","lastModified":"1301903102000","name":"Gillian Lind","type":"Person","_key":"69121"} +{"label":"Connie Booth","version":21,"id":"149979","lastModified":"1301903105000","name":"Connie Booth","type":"Person","_key":"69122"} +{"label":"Dick Vosburgh","version":15,"id":"149980","lastModified":"1301903098000","name":"Dick Vosburgh","type":"Person","_key":"69123"} +{"label":"Xian si jue","description":"One of the last of the Old School Hong Kong martial arts flicks, this one deals with a legendary competition in swordplay and fighting that ends up being fought between two great warriors, a Chinese man and a Japanese man, who, over the course of the film, have become friends. ","id":"18810","runtime":108,"imdbId":"tt0084924","version":43,"lastModified":"1301905592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96b\/4bc95484017a3c57fe02596b\/xian-si-jue-mid.jpg","genre":"Action","title":"Xian si jue","releaseDate":411264000000,"language":"en","type":"Movie","_key":"69124"} +{"label":"Flora Cheung","version":19,"id":"83625","lastModified":"1301902665000","name":"Flora Cheung","type":"Person","_key":"69125"} +{"label":"Magnificent Butcher","description":"A plump butcher student of 'Wong Fei Hung', Lam Sai-Wing (Sammo) gets into trouble with a rival kung-fu school known as 'Five Dragons'. He is accused of raping the Head of that school's goddaughter and killing his son. Now Ko, the Head of Five Dragons, wants revenge. ","id":"18812","runtime":108,"imdbId":"tt0079472","trailer":"http:\/\/www.youtube.com\/watch?v=ZYyBbuIxpTc","version":143,"lastModified":"1301906050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/974\/4bc95488017a3c57fe025974\/lin-shi-rong-mid.jpg","genre":"Action","title":"Magnificent Butcher","releaseDate":648777600000,"language":"en","type":"Movie","_key":"69126"} +{"label":"Tak-Hing Kwan","version":20,"id":"83627","lastModified":"1301902640000","name":"Tak-Hing Kwan","type":"Person","_key":"69127"} +{"label":"Long zhi ren zhe","description":"Two rival warriors, a Japanese and a Chinese, are forced to work together after their master has been killed by a mighty enemy.","id":"18813","runtime":95,"imdbId":"tt0084267","version":47,"lastModified":"1301907246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/97d\/4bc95489017a3c57fe02597d\/long-zhi-ren-zhe-mid.jpg","genre":"Action","title":"Long zhi ren zhe","releaseDate":451872000000,"language":"en","type":"Movie","_key":"69128"} +{"label":"Po Tai","version":19,"id":"83629","lastModified":"1301902629000","name":"Po Tai","type":"Person","_key":"69129"} +{"label":"Liu zhi qin mo","description":"A young security man must prove himself worthy by defending the one object wanted by all the masters of the Martial Arts world - the Magic Lyre!","id":"18814","runtime":91,"imdbId":"tt0107428","version":69,"lastModified":"1301907246000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/986\/4bc9548a017a3c57fe025986\/liu-zhi-qin-mo-mid.jpg","genre":"Fantasy","title":"Liu zhi qin mo","releaseDate":774921600000,"language":"en","type":"Movie","_key":"69130"} +{"label":"Wai Lam","version":20,"id":"83630","lastModified":"1301902453000","name":"Wai Lam","type":"Person","_key":"69131"} +{"label":"Elvis Tsui","version":24,"id":"83631","lastModified":"1301902583000","name":"Elvis Tsui","type":"Person","_key":"69132"} +{"label":"Min Kan Ng","version":17,"id":"83632","lastModified":"1301902629000","name":"Min Kan Ng","type":"Person","_key":"69133"} +{"label":"Glowing Stars","description":"Jenna \u00e4r fjorton \u00e5r och borde bara beh\u00f6va oroa sig f\u00f6r br\u00f6sten som aldrig v\u00e4xer, varf\u00f6r hon inte \u00e4r lika popul\u00e4r som Ullis-Knullis och hur hon ska f\u00e5 Sakke snygg snygg snygg att bli k\u00e4r i henne, eller \u00e5tminstone uppt\u00e4cka att hon finns. Men hemma hos Jenna finns en jobbig mormor och en \u00e4lskad cancersjuk mamma. Och i Jennas ficka ligger en bortgl\u00f6md dikt: \"Om du d\u00f6r mamma, d\u00e5 tar jag livet av mig\".","id":"18815","runtime":90,"imdbId":"tt1286151","homepage":"http:\/\/www.itaketlyserstjarnorna.se\/","version":81,"lastModified":"1301908205000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98f\/4bc9548b017a3c57fe02598f\/i-taket-lyser-stjarnorna-mid.png","studio":"Filmlance International AB","genre":"Drama","title":"Glowing Stars","releaseDate":1233273600000,"language":"en","type":"Movie","_key":"69134"} +{"label":"Lisa Siwe","version":19,"id":"115927","lastModified":"1301903036000","name":"Lisa Siwe","type":"Person","_key":"69135"} +{"label":"Josefine Mattsson","version":16,"id":"115930","lastModified":"1301902985000","name":"Josefine Mattsson","type":"Person","_key":"69136"} +{"label":"Mika Berndtsdotter Ahlen","version":16,"id":"115931","lastModified":"1301902985000","name":"Mika Berndtsdotter Ahlen","type":"Person","_key":"69137"} +{"label":"Samuel Haus","version":18,"id":"97027","lastModified":"1301904134000","name":"Samuel Haus","type":"Person","_key":"69138"} +{"label":"Mang lung","description":"Interpol agents and gangsters battle in Hong Kong. ","id":"18816","runtime":110,"imdbId":"tt0446313","version":56,"lastModified":"1301908275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99d\/4bc9548c017a3c57fe02599d\/mang-lung-mid.jpg","genre":"Action","title":"Mang lung","releaseDate":1131580800000,"language":"en","type":"Movie","_key":"69139"} +{"label":"Yu Xia","version":25,"id":"83634","lastModified":"1301902703000","name":"Yu Xia","type":"Person","_key":"69140"} +{"label":"Jun-ho Heo","version":26,"id":"83637","lastModified":"1301901984000","name":"Jun-ho Heo","type":"Person","_key":"69141"} +{"label":"The Bride with White Hair","description":"The sensitive swordsman Cho Yi-Hang is tired of his life. He is the unwilling successor to the Wu-Tang clan throne and the unsure commander of the clan's forces in a war against foreign tribes and an evil cult. One day, he meets the beautiful Lien, a killer for the evil cult who is equally unsatisfied with her situation, but their love angers both the Wu-Tang clan and the evil cult. ","id":"18817","runtime":92,"imdbId":"tt0106342","version":81,"lastModified":"1301906722000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a6\/4bc9548d017a3c57fe0259a6\/bai-fa-mo-nu-zhuan-mid.jpg","genre":"Action","title":"The Bride with White Hair","releaseDate":748915200000,"language":"en","type":"Movie","_key":"69142"} +{"label":"Elaine Lui","version":21,"id":"83638","lastModified":"1301902360000","name":"Elaine Lui","type":"Person","_key":"69143"} +{"label":"Lady Snowblood 2: Love Song of Vengeance","description":"Lady Snowblood (Shurayuki-hime) is caught by the police and sentenced to death for her crimes (in Lady Snowblood I). As she is sent to the gallows she is rescued by the secret police who offer her a deal to assassinate some revolutionaries. ","id":"18818","runtime":89,"imdbId":"tt0072157","version":82,"lastModified":"1301905923000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9af\/4bc9548e017a3c57fe0259af\/shura-yuki-hime-urami-renga-mid.jpg","genre":"Drama","title":"Lady Snowblood 2: Love Song of Vengeance","releaseDate":126230400000,"language":"en","type":"Movie","_key":"69144"} +{"label":"T\u00f4ru Abe","version":20,"id":"83640","lastModified":"1302040399000","name":"T\u00f4ru Abe","type":"Person","_key":"69145"} +{"label":"Rinichi Yamamoto","version":20,"id":"83641","lastModified":"1301902629000","name":"Rinichi Yamamoto","type":"Person","_key":"69146"} +{"label":"Toshiya Fujita","version":22,"id":"25467","lastModified":"1301902134000","name":"Toshiya Fujita","type":"Person","_key":"69147"} +{"label":"The Hunt for Eagle One","description":"A group of US Marines are sent to rescue captured a US Marine and a Filipino Captain while stopping a group of Al-Qaeda-backed local rebels from launching biological weapons.","id":"18819","runtime":88,"imdbId":"tt0486597","version":121,"lastModified":"1301905583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/094\/4bedccb5017a3c4596000094\/the-hunt-for-eagle-one-mid.jpg","genre":"Action","title":"The Hunt for Eagle One","releaseDate":1137456000000,"language":"en","type":"Movie","_key":"69148"} +{"label":"I Really Hate My Job","description":"'Every day is another day closer to the day I'll never have to do this again.' Five women, one restaurant, one night, one birthday, one breakdown. Then the phone rings. A famous actor is coming for dinner. I Really Hate My Job is the story of an evening in a caf\u00e9 in London's Soho.","id":"18820","runtime":90,"imdbId":"tt0831299","homepage":"http:\/\/www.ireallyhatemyjobthemovie.com\/","version":145,"lastModified":"1301904951000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c0\/4bc95490017a3c57fe0259c0\/i-really-hate-my-job-mid.jpg","genre":"Comedy","title":"I Really Hate My Job","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"69149"} +{"label":"Xilu xiang","description":"In 1997, Little Cheung is a street-wise nine-year-old boy living in a bustling neighbourhood of Hong Kong, just before the reunification with China.","id":"18822","runtime":118,"imdbId":"tt0234116","version":47,"lastModified":"1301907378000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d1\/4bc95492017a3c57fe0259d1\/xilu-xiang-mid.jpg","genre":"Drama","title":"Xilu xiang","releaseDate":998611200000,"language":"en","type":"Movie","_key":"69150"} +{"label":"Yuet-Ming Yiu","version":20,"id":"83647","lastModified":"1301902524000","name":"Yuet-Ming Yiu","type":"Person","_key":"69151"} +{"label":"Wai-Fan Mak","version":20,"id":"83648","lastModified":"1301902529000","name":"Wai-Fan Mak","type":"Person","_key":"69152"} +{"label":"Yuet-Man Mak","version":20,"id":"83649","lastModified":"1301902523000","name":"Yuet-Man Mak","type":"Person","_key":"69153"} +{"label":"Sun-yau Chu","version":20,"id":"83650","lastModified":"1301902523000","name":"Sun-yau Chu","type":"Person","_key":"69154"} +{"label":"Gary Lai","version":20,"id":"83651","lastModified":"1301902529000","name":"Gary Lai","type":"Person","_key":"69155"} +{"label":"Teoh Chang","version":20,"id":"83652","lastModified":"1301902530000","name":"Teoh Chang","type":"Person","_key":"69156"} +{"label":"Clash of the Titans","description":"Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.","id":"18823","runtime":118,"imdbId":"tt0800320","trailer":"http:\/\/www.youtube.com\/watch?v=IfCrx25NHr4","homepage":"http:\/\/www.clash-of-the-titans.com\/","version":476,"lastModified":"1301901035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96f\/4cfac2285e73d6299b00296f\/clash-of-the-titans-mid.jpg","studio":"Legendary Pictures","genre":"Action","title":"Clash of the Titans","releaseDate":1270166400000,"language":"en","tagline":"Titans will clash.","type":"Movie","_key":"69157"} +{"label":"Tine Stapelfeldt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dd8\/4d2651a07b9aa134cf000dd8\/tine-stapelfeldt-profile.jpg","version":27,"id":"114018","lastModified":"1301901222000","name":"Tine Stapelfeldt","type":"Person","_key":"69158"} +{"label":"Luke Evans","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e37\/4d26520f7b9aa134e0000e37\/luke-evans-profile.jpg","version":30,"id":"114019","lastModified":"1301901179000","name":"Luke Evans","type":"Person","_key":"69159"} +{"label":"Espace d\u00e9tente","description":"Au fond de la Veule, imaginaire province fran\u00e7aise, vivote la Geug\u00e8ne Electro Stim, une moyenne entreprise, qui survit gr\u00e2ce \u00e0 la fabrication et \u00e0 la vente de la C14, appareil de stimulation \u00e9lectrique ancien, mais peu cher.","id":"18825","runtime":102,"imdbId":"tt0409937","version":32,"lastModified":"1301904711000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a13\/4bc9549d017a3c57fe025a13\/espace-detente-mid.jpg","genre":"Comedy","title":"Espace d\u00e9tente","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"69160"} +{"label":"Spring Breakdown","description":"Three women in their thirties head to a popular Spring Break destination and try to relive the Spring Break they never had.","id":"18826","runtime":84,"imdbId":"tt0814331","version":216,"lastModified":"1301903549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a20\/4bc9549e017a3c57fe025a20\/spring-breakdown-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"Spring Breakdown","releaseDate":1243900800000,"language":"en","type":"Movie","_key":"69161"} +{"label":"Michael Viglietta","version":19,"id":"83656","lastModified":"1301902063000","name":"Michael Viglietta","type":"Person","_key":"69162"} +{"label":"Ryan Shiraki","version":21,"id":"83653","lastModified":"1301902477000","name":"Ryan Shiraki","type":"Person","_key":"69163"} +{"label":"Double Take","description":"The governor of a Mexican state is assassinated. Soon after, junior executive Daryl Chase's life turns upside down: after he flags a huge transfer of funds from a Mexican account as probably illegal, he's attacked in his apartment, rescued by a CIA agent, finds his secretary shot dead, and witnesses two cops get killed. He calls the CIA guy who tells him to grab the next train to Mexico. Leaving M","id":"18828","runtime":88,"imdbId":"tt0238948","version":328,"lastModified":"1301905400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a2e\/4bc9549f017a3c57fe025a2e\/double-take-mid.jpg","genre":"Action","title":"Double Take","releaseDate":979257600000,"language":"en","type":"Movie","_key":"69164"} +{"label":"Private School","description":"Christine (Phoebe Cates), a student at an exclusive all-girls private school, is in love with Jim, who attends an academy for boys nearby. Christine's arch rival Jordan also has her eye on Jim, and she is willing to do whatever she can to steal him away. Jim's uber-slob buddy Bubba is going with Betsy, Christine's cynical friend, though he would probably be unfaithful if any other woman were willing to get near him. Bubba and his pals sneak into the girls' school dressed in drag in hopes of reac","id":"18835","runtime":89,"imdbId":"tt0086143","version":210,"lastModified":"1301906330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a51\/4bc954a1017a3c57fe025a51\/private-school-mid.jpg","genre":"Comedy","title":"Private School","releaseDate":428284800000,"language":"en","tagline":"You won't believe what goes on and what comes off in...","type":"Movie","_key":"69165"} +{"label":"Michael Zorek","version":23,"id":"124133","lastModified":"1301902196000","name":"Michael Zorek","type":"Person","_key":"69166"} +{"label":"Noel Black","version":20,"id":"109876","lastModified":"1301902387000","name":"Noel Black","type":"Person","_key":"69167"} +{"label":"The Quickie","description":"A crime soap opera about a Russian mobster retiring from \"the business\" on New Year's Eve, only to discover he has been targeted for death by a rival mobster.","id":"18836","runtime":99,"imdbId":"tt0247645","version":96,"lastModified":"1301906198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d59\/4cd1f51b7b9aa16b9f000d59\/the-quickie-mid.jpg","studio":"Pandora Filmproduktion","genre":"Drama","title":"The Quickie","releaseDate":996019200000,"language":"en","type":"Movie","_key":"69168"} +{"label":"Sergey Bodrov","version":25,"id":"130938","lastModified":"1301902768000","name":"Sergey Bodrov","type":"Person","_key":"69169"} +{"label":"Macross Plus","description":"Three decades after the great war between the humans and the Zentradi, the U.N. government is developing new technologies to use in their transforming fighter aircraft by running tests on the colony planet Eden. Military test pilots and former childhood friends, loose cannon Isamu Alva Dyson and the Zentradi mixed race Guld Goa Bowman, are selected to each pilot a new aircraft (Shinsei Industries' YF-19 & General Galaxy's YF-21) for Project Super Nova, to choose the newest successor to the VF-11","id":"18837","runtime":115,"imdbId":"tt0110426","homepage":"http:\/\/www.macross.co.jp\/","version":106,"lastModified":"1301417671000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5e\/4bc954a3017a3c57fe025a5e\/macross-plus-mid.jpg","studio":"Bandai Visual Company (JAPAN)","title":"Macross Plus","releaseDate":793929600000,"language":"en","type":"Movie","_key":"69170"} +{"label":"Ghost in the Shell: Stand Alone Complex - The Laughing Man","description":"The year is 2030 and six years have passed since a criminal known only as \"The Laughing Man\" swept through top medical nanotechnology firms committing acts of cyber-terrorism, kidnapping, and espionage leaving no known suspects. New information is revealed, Section 9 into the hunt for a suspect capable of unfathomable actions.","id":"18839","runtime":160,"imdbId":"tt1024215","homepage":"http:\/\/www.productionig.com\/contents\/works_sp\/03_\/index.html","version":114,"lastModified":"1302152336000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a6b\/4bc954a4017a3c57fe025a6b\/kokaku-kidotai-stand-alone-complex-the-laughing-man-mid.jpg","studio":"Production I.G.","genre":"Science Fiction","title":"Ghost in the Shell: Stand Alone Complex - The Laughing Man","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"69171"} +{"label":"Kenji Kamiyama","version":56,"id":"16137","lastModified":"1302069086000","name":"Kenji Kamiyama","type":"Person","_key":"69172"} +{"label":"Akio \u00d4tsuka","version":24,"id":"127255","lastModified":"1302069086000","name":"Akio \u00d4tsuka","type":"Person","_key":"69173"} +{"label":"K\u00f4ichi Yamadera","version":24,"id":"127256","lastModified":"1302069086000","name":"K\u00f4ichi Yamadera","type":"Person","_key":"69174"} +{"label":"Osamu Saka","version":31,"id":"83932","lastModified":"1302069086000","name":"Osamu Saka","type":"Person","_key":"69175"} +{"label":"K\u00f4ichi Yamadera","version":24,"id":"127257","lastModified":"1302069086000","name":"K\u00f4ichi Yamadera","type":"Person","_key":"69176"} +{"label":"Yutaka Nakano","version":30,"id":"83933","lastModified":"1302069086000","name":"Yutaka Nakano","type":"Person","_key":"69177"} +{"label":"T\u00f4ru \u00d4kawa","version":24,"id":"127259","lastModified":"1302069086000","name":"T\u00f4ru \u00d4kawa","type":"Person","_key":"69178"} +{"label":"Sakiko Tamagawa","version":29,"id":"83937","lastModified":"1302069086000","name":"Sakiko Tamagawa","type":"Person","_key":"69179"} +{"label":"The White Countess","description":"The last movie from the team of Ismail Merchant, James Ivory, and Kazuo Ishiguro. Set in 1930s Shanghai, \"The White Countess\" is both Sofia (Natasha Richardson), a fallen member of the Russian aristocracy, and a nightclub created by a blind American diplomat named Jackson (Ralph Fiennes), who asks Sofia to be the centerpiece of the world he wants to create.","id":"18840","runtime":135,"imdbId":"tt0384686","version":167,"lastModified":"1301904309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a74\/4bc954a7017a3c57fe025a74\/the-white-countess-mid.jpg","genre":"Drama","title":"The White Countess","releaseDate":1130630400000,"language":"en","type":"Movie","_key":"69180"} +{"label":"Madeleine Potter","version":26,"id":"83665","lastModified":"1301902386000","name":"Madeleine Potter","type":"Person","_key":"69181"} +{"label":"Madeleine Daly","version":21,"id":"83666","lastModified":"1301902703000","name":"Madeleine Daly","type":"Person","_key":"69182"} +{"label":"The Lost Skeleton of Cadavra","description":"Remember the good old days when anyone with a camera and a few thousand bucks could schlep up to Bronson canyon and quickly make a cheap sci-fi\/horror B-movie? Well, they're back! The Lost Skeleton of Cadavra is an affectionate, meticulous re-creation of those notoriously cheesy clunkers, as a gaggle of beloved stereotypes pursue \"that rarest of radioactive elements - atmospherium.\"","id":"18841","runtime":90,"imdbId":"tt0307109","version":139,"lastModified":"1301904776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a79\/4bc954a8017a3c57fe025a79\/the-lost-skeleton-of-cadavra-mid.jpg","genre":"Comedy","title":"The Lost Skeleton of Cadavra","releaseDate":1000252800000,"language":"en","type":"Movie","_key":"69183"} +{"label":"Larry Blamire","version":34,"id":"88837","lastModified":"1301902236000","name":"Larry Blamire","type":"Person","_key":"69184"} +{"label":"Andrew Parks","version":21,"id":"88838","lastModified":"1301902629000","name":"Andrew Parks","type":"Person","_key":"69185"} +{"label":"Susan McConnell","version":21,"id":"88839","lastModified":"1301902453000","name":"Susan McConnell","type":"Person","_key":"69186"} +{"label":"Jennifer Blaire","version":29,"id":"88840","lastModified":"1301901144000","name":"Jennifer Blaire","type":"Person","_key":"69187"} +{"label":"Dan Conroy","version":19,"id":"88841","lastModified":"1301902884000","name":"Dan Conroy","type":"Person","_key":"69188"} +{"label":"Robert Deveau","version":20,"id":"88842","lastModified":"1301902884000","name":"Robert Deveau","type":"Person","_key":"69189"} +{"label":"Darrin Reed","version":19,"id":"88843","lastModified":"1301902884000","name":"Darrin Reed","type":"Person","_key":"69190"} +{"label":"Little Einsteins - Our Big Huge Adventure","description":"Get ready to blast off with the premiere of DISNEY'S LITTLE EINSTEINS(TM)! Created by Disney and the award-winning Baby Einstein Company, this all-new movie will take your child on a thrilling musical adventure in the real world in order to complete an important mission and learn along the way. In OUR [BIG] HUGE ADVENTURE, Leo, June, Quincy, Annie, Rocket, and your child will blast off on their fi","id":"18842","runtime":61,"imdbId":"tt0756522","version":43,"lastModified":"1301908518000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a82\/4bc954a9017a3c57fe025a82\/little-einsteins-our-big-huge-adventure-mid.jpg","genre":"Animation","title":"Little Einsteins - Our Big Huge Adventure","releaseDate":1124755200000,"language":"en","type":"Movie","_key":"69191"} +{"label":"Dr. Dolittle 3","description":"Lisa Dolittle sends her daughter to 'Durango', a Dude Ranch, to find herself. While there, she uses her talent to talk to the animals in order to save Durango from being taken over by a neighboring Ranch.","id":"18843","runtime":95,"imdbId":"tt0481513","version":136,"lastModified":"1301903934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a8b\/4bc954ab017a3c57fe025a8b\/dr-dolittle-3-mid.jpg","studio":"20th Century Fox","genre":"Comedy","title":"Dr. Dolittle 3","releaseDate":1145923200000,"language":"en","type":"Movie","_key":"69192"} +{"label":"Walker Howard","version":21,"id":"84272","lastModified":"1301901813000","name":"Walker Howard","type":"Person","_key":"69193"} +{"label":"Rich Thorne","version":13,"id":"180576","lastModified":"1301903292000","name":"Rich Thorne","type":"Person","_key":"69194"} +{"label":"Musse r\u00e4ddar jultomten","description":"This holiday, pack the sleigh, hitch up the reindeer, and celebrate the season with Mickey and all his friends in a fun-filled adventure. When Santa's sleigh breaks down at the top of Mistletoe Mountain, Mickey and Donald race to his rescue. The gang plays a game of hide-and-seek with the world's greatest hider -- Donald Duck! And Goofy needs help returning a lost baby bird to its mother in the fo","id":"18844","runtime":30,"imdbId":"tt0784896","version":54,"lastModified":"1301901824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a94\/4bc954ac017a3c57fe025a94\/mickey-mouse-clubhouse-mickey-saves-santa-mid.jpg","genre":"Animation","title":"Musse r\u00e4ddar jultomten","releaseDate":1163462400000,"language":"en","type":"Movie","_key":"69195"} +{"label":"The Wiggles: Pop Go the Wiggles!","description":"For generations children have delighted in nursery rhymes, and now for the first time The Wiggles perform some of their favorite nursery rhymes to delight a new generation in Pop Go The Wiggles. The Wiggles' professional experience as early childhood educators has taught them that children learn best through play. Pop Go The Wiggles includes 31 of the most beloved and classic nursery rhymes set to","id":"18845","runtime":30,"imdbId":"tt1383257","version":168,"lastModified":"1301908275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9d\/4bc954ac017a3c57fe025a9d\/the-wiggles-pop-go-the-wiggles-mid.jpg","genre":"Animation","title":"The Wiggles: Pop Go the Wiggles!","releaseDate":1205193600000,"language":"en","type":"Movie","_key":"69196"} +{"label":"The Little Drummer Boy","description":"In this touching christmas classic a young orphaned drummer boy is kidnapped. After he escapes he searches for his camel and finds him in the manger of the baby jesus. He gives baby jesus the only gift he has a song on his drum. This song is the only gift baby jesus responds to.","id":"18846","runtime":25,"imdbId":"tt0063230","version":255,"lastModified":"1301908432000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa6\/4bc954ad017a3c57fe025aa6\/the-little-drummer-boy-mid.jpg","genre":"Animation","title":"The Little Drummer Boy","releaseDate":-32659200000,"language":"en","type":"Movie","_key":"69197"} +{"label":"The Inner Life of Martin Frost","description":"No overview found.","id":"18848","runtime":94,"imdbId":"tt0479074","version":96,"lastModified":"1301417093000","genre":"Drama","title":"The Inner Life of Martin Frost","releaseDate":1192060800000,"language":"en","type":"Movie","_key":"69198"} +{"label":"Kill Kill Faster Faster","description":"Recently paroled after serving a long stretch for his wife's murder, Joey One-Way aligns himself with a producer who has optioned the play he wrote in prison. As he sets about adapting his work for the big screen, Joey falls for his new pal's ex-con wife, and enters into a doomed affair.","id":"18849","runtime":97,"imdbId":"tt0785016","homepage":"http:\/\/www.killkillfasterfaster.com\/","version":112,"lastModified":"1301905620000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08a\/4bcc539a017a3c0f2a00008a\/kill-kill-faster-faster-mid.jpg","genre":"Drama","title":"Kill Kill Faster Faster","releaseDate":1208304000000,"language":"en","type":"Movie","_key":"69199"} +{"label":"Stephen Lord","version":30,"id":"83674","lastModified":"1301902671000","name":"Stephen Lord","type":"Person","_key":"69200"} +{"label":"Do\u00f1a Croll","version":21,"id":"83675","lastModified":"1301902629000","name":"Do\u00f1a Croll","type":"Person","_key":"69201"} +{"label":"Gareth Maxwell Roberts","version":19,"id":"84354","lastModified":"1301902629000","name":"Gareth Maxwell Roberts","type":"Person","_key":"69202"} +{"label":"The Cat and the Canary","description":"Ten years have passed since the death of millionaire, Cyrus Norman. Cosby, Cyrus' attorney, has gathered Cyrus' 6 remaining relatives to his New Orleans' mansion for Cyrus' \"reading of the will\". To the others disappointment, Joyce is the sole heir, but, due to a streak of insanity running in the family, a second will has been made in case Joyce falls victim to it. This puts Joyce in danger. Suddenly, Miss Lu, Cyrus' maid, appears and warns them that the spirits have told her that one of them wi","id":"18851","runtime":72,"imdbId":"tt0031143","version":250,"lastModified":"1301905445000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad7\/4bc954b0017a3c57fe025ad7\/the-cat-and-the-canary-mid.jpg","genre":"Mystery","title":"The Cat and the Canary","releaseDate":-951264000000,"language":"en","type":"Movie","_key":"69203"} +{"label":"John Beal","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cb\/4cc6e5187b9aa15b250000cb\/john-beal-profile.jpg","version":25,"id":"97314","lastModified":"1301902204000","name":"John Beal","type":"Person","_key":"69204"} +{"label":"Douglass Montgomery","version":27,"id":"118802","lastModified":"1301902704000","name":"Douglass Montgomery","type":"Person","_key":"69205"} +{"label":"Huo Yuan-Jia","description":"This is a powerful, yet fictionalized life story of Huo Yuan Chia, a real kung fu master in Southern China who brought respect to the populace and allowed kung fu to be taught to all Chinese during a time of revolt and low morale in the country's history.","id":"18852","runtime":89,"imdbId":"tt0084105","version":39,"lastModified":"1301906597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae0\/4bc954b1017a3c57fe025ae0\/huo-yuan-jia-mid.jpg","genre":"Action","title":"Huo Yuan-Jia","releaseDate":378691200000,"language":"en","type":"Movie","_key":"69206"} +{"label":"Feng Feng","version":19,"id":"83677","lastModified":"1301902453000","name":"Feng Feng","type":"Person","_key":"69207"} +{"label":"Yao Lin Chen","version":21,"id":"83676","lastModified":"1301902479000","name":"Yao Lin Chen","type":"Person","_key":"69208"} +{"label":"Yeh Fang","version":17,"id":"83678","lastModified":"1301902629000","name":"Yeh Fang","type":"Person","_key":"69209"} +{"label":"Yat Chor Yuen","version":20,"id":"83679","lastModified":"1301902496000","name":"Yat Chor Yuen","type":"Person","_key":"69210"} +{"label":"Phillip Ko","version":22,"id":"83680","lastModified":"1301902629000","name":"Phillip Ko","type":"Person","_key":"69211"} +{"label":"Windham Hill in Concert","description":"\"The Impending Death Of The Virgin Spirit,\" \"Visiting,\" \"The Bricklayer's Beautiful Daughter,\" \"Silent Anticipations,\" \"Woman Of The World,\" \"Because It's There,\" \"Follow Through,\" \"Aerial Boundaries,\" \"Vashon Poem,\" \"The Orangutan Gang,\" \"What Goes Around,\" \"New Electric India\" and \"Streetnoise.\" \r\n","id":"18853","runtime":0,"version":355,"lastModified":"1301739692000","title":"Windham Hill in Concert","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69212"} +{"label":"Shin ge jeon","description":"An historical, epic tale of Korea's creation of Singijeon, a variation of the Chinese fire arrow.","id":"18854","runtime":134,"imdbId":"tt1185594","version":60,"lastModified":"1301907770000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc954b7017a3c57fe025af9\/shin-ge-jeon-mid.jpg","genre":"Drama","title":"Shin ge jeon","releaseDate":1220486400000,"language":"en","type":"Movie","_key":"69213"} +{"label":"Yu-jin Kim","version":23,"id":"83681","lastModified":"1301902498000","name":"Yu-jin Kim","type":"Person","_key":"69214"} +{"label":"Eun-jeong Han","version":21,"id":"83683","lastModified":"1301901807000","name":"Eun-jeong Han","type":"Person","_key":"69215"} +{"label":"Jie zi zhan shi","description":"A dreamy comic book artist discovers himself on the kicking end of real life after rescuing a fragile woman from a prostitution ring.","id":"18855","runtime":99,"imdbId":"tt0102159","version":155,"lastModified":"1300980638000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b07\/4bc954b8017a3c57fe025b07\/jie-zi-zhan-shi-mid.jpg","genre":"Action","title":"Jie zi zhan shi","releaseDate":716083200000,"language":"en","type":"Movie","_key":"69216"} +{"label":"Kar Lok Chin","version":20,"id":"83684","lastModified":"1301902314000","name":"Kar Lok Chin","type":"Person","_key":"69217"} +{"label":"Jung Yuen","version":19,"id":"83685","lastModified":"1301902486000","name":"Jung Yuen","type":"Person","_key":"69218"} +{"label":"May Lo Mei-Mei","version":19,"id":"83686","lastModified":"1301902486000","name":"May Lo Mei-Mei","type":"Person","_key":"69219"} +{"label":"Jean Pol","version":19,"id":"83687","lastModified":"1301902486000","name":"Jean Pol","type":"Person","_key":"69220"} +{"label":"David Lai","version":19,"id":"83688","lastModified":"1301902486000","name":"David Lai","type":"Person","_key":"69221"} +{"label":"The Invisible Circus","description":"A teenage girl travels to Paris in the 1970s trying to find out about her sister's suicide, and falls in love with her dead sister's boyfriend.","id":"18856","runtime":93,"imdbId":"tt0178642","homepage":"http:\/\/www.invisible-circus.com\/","version":252,"lastModified":"1301905400000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b10\/4bc954b9017a3c57fe025b10\/the-invisible-circus-mid.jpg","studio":"Fine Line Features","genre":"Drama","title":"The Invisible Circus","releaseDate":982886400000,"language":"en","type":"Movie","_key":"69222"} +{"label":"Philipp Weissert","version":20,"id":"84255","lastModified":"1301902453000","name":"Philipp Weissert","type":"Person","_key":"69223"} +{"label":"Nikola Obermann","version":20,"id":"84256","lastModified":"1301902453000","name":"Nikola Obermann","type":"Person","_key":"69224"} +{"label":"Robert Getter","version":20,"id":"84257","lastModified":"1301902063000","name":"Robert Getter","type":"Person","_key":"69225"} +{"label":"Crime Story","description":"A dark and handsome true-crime thriller about kidnapping and police corruption in Hong Kong. One of Jackie Chan's most serious roles, but still overflowing with spectacular acrobatic sequences. ","id":"18857","runtime":103,"imdbId":"tt0108656","trailer":"http:\/\/www.youtube.com\/watch?v=G-CiwZKFuo4","version":144,"lastModified":"1301903430000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b19\/4bc954bb017a3c57fe025b19\/zhong-an-zu-mid.jpg","genre":"Action","title":"Crime Story","releaseDate":740880000000,"language":"en","tagline":"The world's toughest city needs more than an army to stop the mob\u2026 They need one man!","type":"Movie","_key":"69226"} +{"label":"Christine Ng","version":23,"id":"83689","lastModified":"1301902542000","name":"Christine Ng","type":"Person","_key":"69227"} +{"label":"Law Hang Kang","version":23,"id":"83690","lastModified":"1301902722000","name":"Law Hang Kang","type":"Person","_key":"69228"} +{"label":"Puishan Auyeung","version":23,"id":"83691","lastModified":"1301902727000","name":"Puishan Auyeung","type":"Person","_key":"69229"} +{"label":"Leng-Leng Phua","version":23,"id":"83692","lastModified":"1301902679000","name":"Leng-Leng Phua","type":"Person","_key":"69230"} +{"label":"Sau Leung 'Blacky' Ko","version":23,"id":"83693","lastModified":"1301902507000","name":"Sau Leung 'Blacky' Ko","type":"Person","_key":"69231"} +{"label":"Fat Wan","version":23,"id":"83694","lastModified":"1301902679000","name":"Fat Wan","type":"Person","_key":"69232"} +{"label":"Irresistible","description":"A wife and mother is consumed by the thought that her husband's co-worker is trying to win him away from her and their family. ","id":"18858","runtime":103,"imdbId":"tt0448564","homepage":"http:\/\/www.movieirresistible.com\/","version":306,"lastModified":"1301906460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b32\/4bc954be017a3c57fe025b32\/irresistible-mid.jpg","genre":"Mystery","title":"Irresistible","releaseDate":1153353600000,"language":"en","type":"Movie","_key":"69233"} +{"label":"Swordsman","description":"When a scroll containing valuable martial arts secrets is stolen from the Emperor, an army detachment is sent to recover it. It is based on the novel The Smiling, Proud Wanderer by Jinyong.","id":"18860","runtime":120,"imdbId":"tt0100973","version":82,"lastModified":"1301653124000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3b\/4bc954bf017a3c57fe025b3b\/18860-mid.jpg","studio":"Film Workshop","genre":"Action","title":"Swordsman","releaseDate":639273600000,"language":"en","type":"Movie","_key":"69234"} +{"label":"Cecilia Yip","version":24,"id":"83696","lastModified":"1301902216000","name":"Cecilia Yip","type":"Person","_key":"69235"} +{"label":"Ming Man Cheung","version":21,"id":"83697","lastModified":"1301902629000","name":"Ming Man Cheung","type":"Person","_key":"69236"} +{"label":"Ann Hui","version":34,"id":"123199","lastModified":"1301902208000","name":"Ann Hui","type":"Person","_key":"69237"} +{"label":"King Hu","version":31,"id":"83698","lastModified":"1301901683000","name":"King Hu","type":"Person","_key":"69238"} +{"label":"Naruto the Movie 3: Guardians of the Crescent Moon Kingdom","description":"Naruto Uzumaki, Kakashi Hatake, Sakura Haruno, and Rock Lee are assigned to protect the prince of the Land of the Moon, Michiru, during his world trip; other escorts had been hired, but quit due to being treated poorly. The Land of the Moon is a very wealthy nation, so Michiru tends to buy whatever he wants, and has a very materialistic worldview. His Hikaru, also acts in much the same manner.","id":"18861","runtime":95,"imdbId":"tt1071815","homepage":"http:\/\/www.naruto-movie.com\/","version":39,"lastModified":"1301905709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b40\/4bc954bf017a3c57fe025b40\/gekijo-ban-naruto-daikofun-mikazukijima-no-animaru-panikku-dattebayo-mid.jpg","studio":"Studio Pierrot","genre":"Animation","title":"Naruto the Movie 3: Guardians of the Crescent Moon Kingdom","releaseDate":1154736000000,"language":"en","type":"Movie","_key":"69239"} +{"label":"Toshiyuki Tsuru","version":25,"id":"84196","lastModified":"1301902507000","name":"Toshiyuki Tsuru","type":"Person","_key":"69240"} +{"label":"Yoichi Masukawa","version":22,"id":"89971","lastModified":"1301902681000","name":"Yoichi Masukawa","type":"Person","_key":"69241"} +{"label":"House Arrest","description":"High-schooler Grover Beindorf and his younger sister Stacy decide that their parents, Janet and Ned, are acting childishly when they decide to divorce after 18 years of marriage, so they lock them up in the basement until they'll sort out their problems. Their school friends also decide to do the same with their parents to solve their respective problems ","id":"18862","runtime":108,"imdbId":"tt0116571","version":207,"lastModified":"1301907087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b49\/4bc954c0017a3c57fe025b49\/house-arrest-mid.png","genre":"Comedy","title":"House Arrest","releaseDate":839980800000,"language":"en","type":"Movie","_key":"69242"} +{"label":"Kyle Howard","version":22,"id":"83699","lastModified":"1301901799000","name":"Kyle Howard","type":"Person","_key":"69243"} +{"label":"Herbert Russell","version":15,"id":"148114","lastModified":"1301903090000","name":"Herbert Russell","type":"Person","_key":"69244"} +{"label":"The Art of Eric Gill","description":"No overview found.","id":"18864","runtime":0,"version":62,"lastModified":"1300980640000","title":"The Art of Eric Gill","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69245"} +{"label":"Crashing","description":"It sounds like a budding writer's dream: a bestselling first novel, a luxurious house in Malibu, and a trophy wife... But it all unravels when writer's block and a failed marriage send Richard McMurray (Campbell Scott, The Exorcism of Emily Rose) out into the streets.","id":"18865","runtime":80,"imdbId":"tt0475243","version":130,"lastModified":"1301906665000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b4e\/4bc954c4017a3c57fe025b4e\/crashing-mid.jpg","studio":"Existential Films","genre":"Comedy","title":"Crashing","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"69246"} +{"label":"Caleigh White","version":19,"id":"83700","lastModified":"1301901862000","name":"Caleigh White","type":"Person","_key":"69247"} +{"label":"Devin Barry","version":19,"id":"83702","lastModified":"1301902453000","name":"Devin Barry","type":"Person","_key":"69248"} +{"label":"Holly Reiser","version":19,"id":"83703","lastModified":"1301902063000","name":"Holly Reiser","type":"Person","_key":"69249"} +{"label":"Alexandra Safford","version":19,"id":"83704","lastModified":"1301901862000","name":"Alexandra Safford","type":"Person","_key":"69250"} +{"label":"Alayna Corrick","version":20,"id":"83705","lastModified":"1301902453000","name":"Alayna Corrick","type":"Person","_key":"69251"} +{"label":"Duane Clark","version":19,"id":"83706","lastModified":"1301902453000","name":"Duane Clark","type":"Person","_key":"69252"} +{"label":"Randall Hastings","version":19,"id":"83707","lastModified":"1301902453000","name":"Randall Hastings","type":"Person","_key":"69253"} +{"label":"Nora Kirkpatrick","version":21,"id":"83708","lastModified":"1301902236000","name":"Nora Kirkpatrick","type":"Person","_key":"69254"} +{"label":"Nash Garrison","version":19,"id":"83709","lastModified":"1301902063000","name":"Nash Garrison","type":"Person","_key":"69255"} +{"label":"Patrick Graves","version":19,"id":"83710","lastModified":"1301902453000","name":"Patrick Graves","type":"Person","_key":"69256"} +{"label":"Gary Walkow","version":19,"id":"83711","lastModified":"1301902236000","name":"Gary Walkow","type":"Person","_key":"69257"} +{"label":"Knots","description":"A male-centric take on contemporary relationships, where three guy friends look for love and commitment.","id":"18866","runtime":93,"imdbId":"tt0361805","version":111,"lastModified":"1301905833000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b53\/4bc954c4017a3c57fe025b53\/knots-mid.jpg","studio":"Lions Gate Films","genre":"Comedy","title":"Knots","releaseDate":1082419200000,"language":"en","type":"Movie","_key":"69258"} +{"label":"Greg Lombardo","version":20,"id":"83716","lastModified":"1301902629000","name":"Greg Lombardo","type":"Person","_key":"69259"} +{"label":"Scott Cohen","version":26,"id":"83721","lastModified":"1301902361000","name":"Scott Cohen","type":"Person","_key":"69260"} +{"label":"Michael Leydon Campbell","version":21,"id":"83722","lastModified":"1301902323000","name":"Michael Leydon Campbell","type":"Person","_key":"69261"} +{"label":"Sarah Litzsinger","version":19,"id":"83723","lastModified":"1301902453000","name":"Sarah Litzsinger","type":"Person","_key":"69262"} +{"label":"Eric Zuckerman","version":19,"id":"83724","lastModified":"1301902629000","name":"Eric Zuckerman","type":"Person","_key":"69263"} +{"label":"John Heinlein","version":19,"id":"83725","lastModified":"1301902629000","name":"John Heinlein","type":"Person","_key":"69264"} +{"label":"Elliot Villar","version":19,"id":"83726","lastModified":"1301902629000","name":"Elliot Villar","type":"Person","_key":"69265"} +{"label":"Mike Taranto","version":19,"id":"83727","lastModified":"1301902629000","name":"Mike Taranto","type":"Person","_key":"69266"} +{"label":"Katie Orenstein","version":19,"id":"83728","lastModified":"1301902629000","name":"Katie Orenstein","type":"Person","_key":"69267"} +{"label":"Kathleen Truitt","version":19,"id":"83729","lastModified":"1301902629000","name":"Kathleen Truitt","type":"Person","_key":"69268"} +{"label":"Half a Loaf of Kung Fu","description":"Mostly a Kung-fu showcase; a loose script describes Jackie Chan's character learning Kung-fu from a beggar-master and his pupil while guarding a caravan from bandits. Chan's early comedic beginnings are shown here. ","id":"18867","runtime":97,"imdbId":"tt0080623","version":83,"lastModified":"1301903549000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b5c\/4bc954c5017a3c57fe025b5c\/dian-zhi-gong-fu-gan-chian-chan-mid.jpg","studio":"Lo Wei Motion Picture Co.","genre":"Action","title":"Half a Loaf of Kung Fu","releaseDate":331257600000,"language":"en","type":"Movie","_key":"69269"} +{"label":"Kang Chin","version":27,"id":"83713","lastModified":"1301901604000","name":"Kang Chin","type":"Person","_key":"69270"} +{"label":"Ching Lan Chin","version":25,"id":"83714","lastModified":"1301902190000","name":"Ching Lan Chin","type":"Person","_key":"69271"} +{"label":"Sae Ok Kim","version":23,"id":"83715","lastModified":"1301902352000","name":"Sae Ok Kim","type":"Person","_key":"69272"} +{"label":"Chi-Hwa Chen","version":30,"id":"83736","lastModified":"1301901380000","name":"Chi-Hwa Chen","type":"Person","_key":"69273"} +{"label":"Clarkson: No Limits","description":"No overview found.","id":"18868","runtime":0,"imdbId":"tt1139580","version":46,"lastModified":"1301418000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b71\/4bc954c7017a3c57fe025b71\/clarkson-no-limits-mid.jpg","title":"Clarkson: No Limits","releaseDate":1036972800000,"language":"en","type":"Movie","_key":"69274"} +{"label":"Jimmy and Judy","description":"Two misunderstood suburban kids challenge society and run from the police while documenting all of their deeds with a digital camera.","id":"18869","runtime":99,"imdbId":"tt0425151","trailer":"http:\/\/www.youtube.com\/watch?v=2122","homepage":"http:\/\/www.jimmyandjudymovie.com\/","version":124,"lastModified":"1301903728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b82\/4bc954c9017a3c57fe025b82\/jimmy-and-judy-mid.jpg","studio":"Hairy Productions","genre":"Action","title":"Jimmy and Judy","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69275"} +{"label":"Randall Rubin","version":17,"id":"92834","lastModified":"1301902350000","name":"Randall Rubin","type":"Person","_key":"69276"} +{"label":"Jon Schroder","version":17,"id":"92837","lastModified":"1301902686000","name":"Jon Schroder","type":"Person","_key":"69277"} +{"label":"Minotaur","description":"No overview found.","id":"18870","runtime":93,"imdbId":"tt0415160","version":400,"lastModified":"1301906656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b8b\/4bc954c9017a3c57fe025b8b\/minotaur-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"Minotaur","releaseDate":1142035200000,"language":"en","type":"Movie","_key":"69278"} +{"label":"Jonathan English","version":25,"id":"83730","lastModified":"1301902133000","name":"Jonathan English","type":"Person","_key":"69279"} +{"label":"Michelle Van Der Water","version":19,"id":"83733","lastModified":"1301902301000","name":"Michelle Van Der Water","type":"Person","_key":"69280"} +{"label":"Jonathan Readwin","version":24,"id":"83734","lastModified":"1301902645000","name":"Jonathan Readwin","type":"Person","_key":"69281"} +{"label":"Maimie McCoy","version":19,"id":"83735","lastModified":"1301902645000","name":"Maimie McCoy","type":"Person","_key":"69282"} +{"label":"James Bradshaw","version":19,"id":"35922","lastModified":"1301901927000","name":"James Bradshaw","type":"Person","_key":"69283"} +{"label":"Fiona Maclaine","version":19,"id":"83737","lastModified":"1301902645000","name":"Fiona Maclaine","type":"Person","_key":"69284"} +{"label":"Claire Murphy","version":19,"id":"83738","lastModified":"1301902645000","name":"Claire Murphy","type":"Person","_key":"69285"} +{"label":"Ciaran Murtagh","version":19,"id":"83740","lastModified":"1301902645000","name":"Ciaran Murtagh","type":"Person","_key":"69286"} +{"label":"Angela Furtado","version":19,"id":"83741","lastModified":"1301902645000","name":"Angela Furtado","type":"Person","_key":"69287"} +{"label":"Donata Janietz","version":19,"id":"83742","lastModified":"1301902644000","name":"Donata Janietz","type":"Person","_key":"69288"} +{"label":"Ride the Pink Horse","description":"An ex-GI known only as Gagin travels to San Pablo, a rural New Mexican town, to revenge the death of his old war time buddy. As a man devoid of identity, some of the villagers refer to Gagin as \"the man with no place.\"","id":"18871","runtime":101,"imdbId":"tt0039768","trailer":"http:\/\/www.youtube.com\/watch?v=nVcdFIWT6zA","version":50,"lastModified":"1301907743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b94\/4bc954ca017a3c57fe025b94\/ride-the-pink-horse-mid.jpg","studio":"Universal International Pictures","genre":"Crime","title":"Ride the Pink Horse","releaseDate":-701654400000,"language":"en","type":"Movie","_key":"69289"} +{"label":"Wanda Hendrix","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2b4\/4c473c3e7b9aa15de10002b4\/wanda-hendrix-profile.jpg","version":22,"birthday":"-1298941200000","id":"83743","birthplace":"Jacksonville, Florida, USA","lastModified":"1301902054000","name":"Wanda Hendrix","type":"Person","_key":"69290"} +{"label":"Rita Conde","version":21,"id":"83744","lastModified":"1301902647000","name":"Rita Conde","type":"Person","_key":"69291"} +{"label":"Iris Flores","version":22,"id":"83745","lastModified":"1301902167000","name":"Iris Flores","type":"Person","_key":"69292"} +{"label":"Maborosi","description":"No overview found.","id":"18872","runtime":110,"imdbId":"tt0113725","version":58,"lastModified":"1301908272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b9d\/4bc954cb017a3c57fe025b9d\/maboroshi-no-hikari-mid.jpg","genre":"Drama","title":"Maborosi","releaseDate":788918400000,"language":"en","type":"Movie","_key":"69293"} +{"label":"Makiko Esumi","version":23,"id":"83746","lastModified":"1301902324000","name":"Makiko Esumi","type":"Person","_key":"69294"} +{"label":"Ghost in the Shell: Stand Alone Complex - Solid State Society","description":"The story takes place in the year 2034, two years after the events in Ghost in the Shell: S.A.C. 2nd GIG. Female cyborg Major Motoko Kusanagi has left Public Security Section 9, an elite counter-terrorist and anti-crime unit specializing in cyber-warfare, which has expanded to a team of 20 field operatives with Togusa acting as the field lead.","id":"18874","runtime":108,"imdbId":"tt0856797","homepage":"http:\/\/production-ig.com\/contents\/works_sp\/47_\/s00_\/000481.html","version":106,"lastModified":"1302067700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/baf\/4bc954cf017a3c57fe025baf\/kokaku-kidotai-stand-alone-complex-solid-state-society-mid.jpg","studio":"Production I.G ","genre":"Action","title":"Ghost in the Shell: Stand Alone Complex - Solid State Society","releaseDate":1157068800000,"language":"en","type":"Movie","_key":"69295"} +{"label":"T\u00f4ru \u00d4kawa","version":23,"id":"83934","lastModified":"1301902173000","name":"T\u00f4ru \u00d4kawa","type":"Person","_key":"69296"} +{"label":"Takashi Onozuka","version":22,"id":"83935","lastModified":"1301902130000","name":"Takashi Onozuka","type":"Person","_key":"69297"} +{"label":"Making 'The Shining'","description":"A look behind the scenes during the making of Stanley Kubrick's The Shining.","id":"18875","runtime":35,"imdbId":"tt0203667","version":74,"lastModified":"1301905697000","studio":"Eagle Film SS","genre":"Documentary","title":"Making 'The Shining'","releaseDate":315532800000,"language":"en","type":"Movie","_key":"69298"} +{"label":"Gert Kubrick","version":19,"id":"83747","lastModified":"1301902675000","name":"Gert Kubrick","type":"Person","_key":"69299"} +{"label":"Vivian Kubrick","version":22,"id":"8645","lastModified":"1301901342000","name":"Vivian Kubrick","type":"Person","_key":"69300"} +{"label":"Confession of Pain","description":"A detective helps a friend investigate the mysterious death of his father.","id":"18877","runtime":110,"imdbId":"tt0834902","version":80,"lastModified":"1301906328000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bbc\/4bc954d1017a3c57fe025bbc\/18877-mid.jpg","studio":"Media Asia Film","genre":"Crime","title":"Confession of Pain","releaseDate":1166659200000,"language":"en","type":"Movie","_key":"69301"} +{"label":"Super\u0e41\u0e2b\u0e1a \u0e41\u0e2a\u0e1a-\u0e2a\u0e30\u0e1a\u0e31\u0e14","description":"\u0e17\u0e48\u0e32\u0e21\u0e01\u0e25\u0e32\u0e07\u0e01\u0e23\u0e30\u0e41\u0e2a\u0e40\u0e1e\u0e25\u0e07\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e21\u0e32\u0e41\u0e23\u0e07 \u0e04\u0e48\u0e32\u0e22\u0e40\u0e1e\u0e25\u0e07 (\u0e43\u0e01\u0e25\u0e49\u0e40\u0e08\u0e4a\u0e07) \u0e02\u0e2d\u0e07\u0e40\u0e08\u0e4a\u0e40\u0e07\u0e47\u0e01 \u0e2a\u0e48\u0e07\u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e1c\u0e2a\u0e21 \u0e44\u0e17\u0e22-\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 \u0e1c\u0e2a\u0e21\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\u2013\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19 \u201c\u0e15\u0e07 \u0e25\u0e35 \u0e40\u0e2e\u201d \u0e19\u0e31\u0e01 \u0e23\u0e49\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e34\u0e28\u0e40\u0e25\u0e2d\u0e40\u0e1f\u0e2d\u0e23\u0e4c\u0e40\u0e1f\u0e04\u0e44\u0e1b\u0e0b\u0e30\u0e2b\u0e21\u0e14 \u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e2b\u0e25\u0e48\u0e2d\u0e42\u0e2e\u0e01 \u0e40\u0e2a\u0e35\u0e22\u0e07\u0e23\u0e49\u0e2d\u0e07\u0e21\u0e2b\u0e31\u0e28\u0e08\u0e23\u0e23\u0e22\u0e4c \u0e41\u0e04\u0e48\u0e0b\u0e34\u0e07\u0e40\u0e01\u0e34\u0e25\u0e41\u0e23\u0e01\u0e01\u0e47\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e17\u0e38\u0e01\u0e2a\u0e16\u0e32\u0e19\u0e35 \u0e14\u0e31\u0e07\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e44\u0e1b\u0e17\u0e31\u0e48\u0e27\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28 \u0e04\u0e27\u0e32\u0e21\u0e08\u0e23\u0e34\u0e07\u0e02\u0e2d\u0e07 \u0e15\u0e49\u0e2d\u0e21 \u0e15\u0e36\u0e4b\u0e07 \u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e2a\u0e39\u0e08\u0e19\u0e4c\u0e14\u0e49\u0e27\u0e22 \u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e14\u0e49\u0e27\u0e22\u0e2a\u0e32\u0e22\u0e15\u0e32 \u0e2b\u0e23\u0e37\u0e2d\u0e23\u0e31\u0e1a\u0e1f\u0e31\u0e07\u0e14\u0e49\u0e27\u0e22 \u0e2b\u0e31\u0e27\u0e43\u0e08 \u0e40\u0e1b\u0e34\u0e14\u0e43\u0e08\u0e43\u0e2b\u0e49\u0e01\u0e27\u0e49\u0e32\u0e07 \u0e23\u0e48\u0e27\u0e21\u0e04\u0e49\u0e19\u0e2b\u0e32 \u0e04\u0e27\u0e32\u0e21\u0e2a\u0e19\u0e38\u0e01\u0e02\u0e2d\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e21\u0e32\u0e04\u0e39\u0e48\u0e01\u0e31\u0e19 ","id":"18878","runtime":0,"homepage":"http:\/\/www.superhapthemovie.com\/","version":22,"lastModified":"1301908274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bce\/4bc954d2017a3c57fe025bce\/super-mid.jpg","title":"Super\u0e41\u0e2b\u0e1a \u0e41\u0e2a\u0e1a-\u0e2a\u0e30\u0e1a\u0e31\u0e14","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69302"} +{"label":"Sena Hoy","version":15,"id":"85205","lastModified":"1301902629000","name":"Sena Hoy","type":"Person","_key":"69303"} +{"label":"The Plank","description":"Classic short British comedy, full of stars, about two workmen delivering planks to a building site. This is done with music and a sort of \"wordless dialogue\" which consists of a few mumbled sounds to convey the appropriate emotion.","id":"18879","runtime":55,"imdbId":"tt0062133","version":56,"lastModified":"1301907245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd7\/4bc954d3017a3c57fe025bd7\/the-plank-mid.jpg","studio":"Associated London Films","genre":"Comedy","title":"The Plank","releaseDate":-80956800000,"language":"en","type":"Movie","_key":"69304"} +{"label":"Tommy Cooper","version":19,"id":"83752","lastModified":"1301902063000","name":"Tommy Cooper","type":"Person","_key":"69305"} +{"label":"Jimmy Edwards","version":19,"id":"83753","lastModified":"1301902063000","name":"Jimmy Edwards","type":"Person","_key":"69306"} +{"label":"Roy Castle","version":29,"id":"83754","lastModified":"1301902319000","name":"Roy Castle","type":"Person","_key":"69307"} +{"label":"Jimmy Tarbuck","version":19,"id":"83755","lastModified":"1301902453000","name":"Jimmy Tarbuck","type":"Person","_key":"69308"} +{"label":"Rex Garner","version":19,"id":"83756","lastModified":"1301902453000","name":"Rex Garner","type":"Person","_key":"69309"} +{"label":"Libby Morris","version":19,"id":"83757","lastModified":"1301902453000","name":"Libby Morris","type":"Person","_key":"69310"} +{"label":"Joan Young","version":20,"id":"83758","lastModified":"1301902453000","name":"Joan Young","type":"Person","_key":"69311"} +{"label":"Barney Gilbraith","version":19,"id":"83759","lastModified":"1301902062000","name":"Barney Gilbraith","type":"Person","_key":"69312"} +{"label":"Clovissa Newcombe","version":19,"id":"83760","lastModified":"1301902453000","name":"Clovissa Newcombe","type":"Person","_key":"69313"} +{"label":"Villa Paranoia","description":"Med stjerner som Frits Helmuth, Sonja Richter, Sidse Babett Knudsen og selvf\u00f8lgelig Erik Clausen selv p\u00e5 plakaten, er der lagt i h\u00f8nseg\u00e5rden til et af Clausens s\u00e6dvanlige humoristiske og satiriske \u00f8jebliksbilleder af dagens Danmark. \r\n\r\nAnna har meget lidt succes med sit liv og skuespilkarriere, da h\u00f8nsefarmeren J\u00f8rgen overtaler hende til at passe sin alderdomssv\u00e6kkede og krakilske far, Hr. Walent","id":"18880","runtime":106,"imdbId":"tt0386850","version":59,"lastModified":"1301906617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be0\/4bc954d3017a3c57fe025be0\/villa-paranoia-mid.jpg","studio":"Sandrew Metronome","title":"Villa Paranoia","releaseDate":1079049600000,"language":"en","type":"Movie","_key":"69314"} +{"label":"Erik Clausen","version":21,"id":"83761","lastModified":"1301902211000","name":"Erik Clausen","type":"Person","_key":"69315"} +{"label":"Kite","description":"Sawa may seem innocent and naive, but don\u2019t be fooled. She is a cold-blooded killer, and if you\u2019re on the wrong side of the law, you may be her next target. Not content to just watch as the imperfect justice system lets more and more criminals go loose every day, a detective decides to train the young Sawa to be his instrument of justice.","id":"18881","runtime":50,"imdbId":"tt0246734","version":103,"lastModified":"1301908275000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be9\/4bc954d4017a3c57fe025be9\/kite-mid.jpg","studio":"Beam Entertainment","genre":"Animation","title":"Kite","releaseDate":883612800000,"language":"en","type":"Movie","_key":"69316"} +{"label":"Yasuomi Umetsu","version":31,"id":"83762","lastModified":"1301901603000","name":"Yasuomi Umetsu","type":"Person","_key":"69317"} +{"label":"Man-Thing","description":"Agents of an oil tycoon vanish while exploring a swamp marked for drilling. The local sheriff investigates and faces a Seminole legend come to life: Man-Thing, a shambling swamp-monster whose touch burns those who feel fear.","id":"18882","runtime":97,"imdbId":"tt0290747","version":214,"lastModified":"1301903525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf2\/4bc954d4017a3c57fe025bf2\/man-thing-mid.jpg","studio":"Artisan Entertainment","genre":"Action","title":"Man-Thing","releaseDate":1114041600000,"language":"en","type":"Movie","_key":"69318"} +{"label":"Patrick Thompson","version":19,"id":"83770","lastModified":"1301902629000","name":"Patrick Thompson","type":"Person","_key":"69319"} +{"label":"William Zappa","version":23,"id":"83771","lastModified":"1301902513000","name":"William Zappa","type":"Person","_key":"69320"} +{"label":"Imogen Bailey","version":19,"id":"83773","lastModified":"1301902629000","name":"Imogen Bailey","type":"Person","_key":"69321"} +{"label":"James Coyne","version":19,"id":"83774","lastModified":"1301902629000","name":"James Coyne","type":"Person","_key":"69322"} +{"label":"Cheryl Craig","version":19,"id":"83775","lastModified":"1301902629000","name":"Cheryl Craig","type":"Person","_key":"69323"} +{"label":"Nuremberg","description":"Nuremberg is a 2000 Canadian\/United States television docudrama, based on the book Nuremberg: Infamy on Trial by Joseph E. Persico, that tells the story of the Nuremberg Trials; The dramatized account of the war crime trials following the defeat of Nazi Germany in World War II.","id":"18884","runtime":180,"imdbId":"tt0208629","version":193,"lastModified":"1301904376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bf7\/4bc954d5017a3c57fe025bf7\/nuremberg-mid.jpg","studio":"Alliance Atlantis Communications","genre":"Documentary","title":"Nuremberg","releaseDate":963705600000,"language":"en","type":"Movie","_key":"69324"} +{"label":"Jill Hennessy","version":25,"id":"50877","lastModified":"1301901534000","name":"Jill Hennessy","type":"Person","_key":"69325"} +{"label":"Roger Dunn","version":21,"id":"83776","lastModified":"1301902703000","name":"Roger Dunn","type":"Person","_key":"69326"} +{"label":"3 Ninjas Kick Back","description":"During a championship baseball match, the three brothers hear that their grandfather in Japan is in trouble, and head out to help him, conceding the match. When they arrive in Japan, they must use all their powers to defend him against his ancient enemy, who has returned to exact revenge.","id":"18885","runtime":93,"imdbId":"tt0109015","version":205,"lastModified":"1301903050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfc\/4bc954d5017a3c57fe025bfc\/3-ninjas-kick-back-mid.jpg","genre":"Action","title":"3 Ninjas Kick Back","releaseDate":768182400000,"language":"en","type":"Movie","_key":"69327"} +{"label":"Charles T. Kanganis","version":24,"id":"36147","lastModified":"1301901699000","name":"Charles T. Kanganis","type":"Person","_key":"69328"} +{"label":"Sean Fox","version":15,"id":"148101","lastModified":"1301903096000","name":"Sean Fox","type":"Person","_key":"69329"} +{"label":"Caroline Junko King","version":15,"id":"148102","lastModified":"1301903093000","name":"Caroline Junko King","type":"Person","_key":"69330"} +{"label":"Flight of the Intruder","description":"After his bombardier is killed, Jake Grafton, a carrier-based Intruder pilot, questions the purpose of Navy bombing missions...","id":"18886","runtime":115,"imdbId":"tt0099587","version":220,"lastModified":"1301904631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c05\/4bc954d6017a3c57fe025c05\/flight-of-the-intruder-mid.jpg","studio":"Paramount Pictures","genre":"Action","title":"Flight of the Intruder","releaseDate":664156800000,"language":"en","type":"Movie","_key":"69331"} +{"label":"Darby O'Gill and the Little People","description":"Take a wee bit of ancient folklore, mix in some spectacular special effects and a magical cast (including Sean Connery) -- and you've got one of the most enchanting fantasies of all time! A frisky old storyteller named Darby O'Gill is desperately seeking the proverbial pot of gold. There's just one tiny thing standing in his way: a 21-inch leprechaun named King Brian. In order to get the gold, Darby must match his wits against the shrewd little trickster -- which proves no small task, indeed! Fa","id":"18887","runtime":93,"imdbId":"tt0052722","version":247,"lastModified":"1301904210000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c0e\/4bc954d6017a3c57fe025c0e\/darby-o-gill-and-the-little-people-mid.jpg","genre":"Action","title":"Darby O'Gill and the Little People","releaseDate":-331948800000,"language":"en","type":"Movie","_key":"69332"} +{"label":"Albert Sharpe","version":24,"id":"83783","lastModified":"1301902194000","name":"Albert Sharpe","type":"Person","_key":"69333"} +{"label":"Zamilovan\u00e9 Maso","description":"Two meaty characters meet, fall in love, and exprience a heartbreaking ending to their love story.","id":"18888","runtime":1,"imdbId":"tt0170232","version":35,"lastModified":"1301906712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/686\/4d88569a5e73d67510000686\/zamilovan-maso-mid.jpg","studio":"Koninck Studios","genre":"Comedy","title":"Zamilovan\u00e9 Maso","releaseDate":599616000000,"language":"en","type":"Movie","_key":"69334"} +{"label":"Jan Svankmajer","version":79,"id":"83784","lastModified":"1301901561000","name":"Jan Svankmajer","type":"Person","_key":"69335"} +{"label":"Control Room","description":"A chronicle which provides a rare window into the international perception of the Iraq War, courtesy of Al Jazeera, the Arab world's most popular news outlet. Roundly criticized by Cabinet members and Pentagon officials for reporting with a pro-Iraqi bias, and strongly condemned for frequently airing civilian causalities as well as footage of American POWs, the station has revealed (and continues to show the world) everything about the Iraq War that the Bush administration did not want it to see","id":"18889","runtime":84,"imdbId":"tt0391024","version":189,"lastModified":"1301907576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c13\/4bc954d9017a3c57fe025c13\/control-room-mid.jpg","genre":"Documentary","title":"Control Room","releaseDate":1074124800000,"language":"en","tagline":"Different channels. Different truths.","type":"Movie","_key":"69336"} +{"label":"We're Back! A Dinosaur's Story","description":"Captain New Eyes travels back in time and feeds dinosaurs his Brain Grain cereal, which makes them intelligent and non-violent. They agree to go to the Middle Future in order to grant the wishes of children in New York city. They are to meet Dr. Bleeb of the Museum of Natural History, but get sidetracked with their new children friends and run into the Captain's evil brother, Professor ","id":"18890","runtime":64,"imdbId":"tt0108526","version":262,"lastModified":"1302019340000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/056\/4d9b59237b9aa16d0a000056\/we-re-back-a-dinosaur-s-story-mid.jpg","genre":"Animation","title":"We're Back! A Dinosaur's Story","releaseDate":754099200000,"language":"en","type":"Movie","_key":"69337"} +{"label":"Walter Cronkite","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0c2\/4c766a377b9aa16a0c0000c2\/walter-cronkite-profile.jpg","version":29,"id":"83786","lastModified":"1301902356000","name":"Walter Cronkite","type":"Person","_key":"69338"} +{"label":"My Eyes Won't Dry","description":"No overview found.","id":"18891","runtime":0,"version":277,"lastModified":"1301465328000","title":"My Eyes Won't Dry","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69339"} +{"label":"Jawbreaker","description":"3 of Reagan High School's most popular girls pretend to kidnap their friend by shoving a jawbreaker into the victim's mouth to keep her from screaming. Their plan goes awry when the girl swallows the jawbreaker, choking to death. Now the leader of the pack will do anything to keep the accident a secret.","id":"18892","runtime":87,"imdbId":"tt0155776","trailer":"http:\/\/www.youtube.com\/watch?v=2170","version":511,"lastModified":"1301903749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c39\/4bc954dc017a3c57fe025c39\/jawbreaker-mid.jpg","genre":"Comedy","title":"Jawbreaker","releaseDate":919382400000,"language":"en","type":"Movie","_key":"69340"} +{"label":"Joe Strummer: The Future Is Unwritten","description":"No overview found.","id":"18893","runtime":123,"imdbId":"tt0800099","homepage":"http:\/\/www.joestrummerthemovie.com\/","version":206,"lastModified":"1301904524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c57\/4bc954df017a3c57fe025c57\/joe-strummer-the-future-is-unwritten-mid.jpg","title":"Joe Strummer: The Future Is Unwritten","releaseDate":1179446400000,"language":"en","type":"Movie","_key":"69341"} +{"label":"Paradise, Hawaiian Style","description":"Blacklisted by the major airlines for endlessly chasing female staff, pilot Rick Richards returns to Hawaii to set up a helicopter charter company with his friend Danny. Having a girl on every island is a good way to get business but it becomes clear that romance and flying don't always mix. ","id":"18894","runtime":91,"imdbId":"tt0059563","version":102,"lastModified":"1301905575000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c60\/4bc954e0017a3c57fe025c60\/paradise-hawaiian-style-mid.jpg","genre":"Comedy","title":"Paradise, Hawaiian Style","releaseDate":-111974400000,"language":"en","type":"Movie","_key":"69342"} +{"label":"Donna Butterworth","version":22,"id":"83787","lastModified":"1301902629000","name":"Donna Butterworth","type":"Person","_key":"69343"} +{"label":"Irene Tsu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/67d\/4c5b19577b9aa151f200067d\/irene-tsu-profile.jpg","version":24,"id":"83788","lastModified":"1301902421000","name":"Irene Tsu","type":"Person","_key":"69344"} +{"label":"Linda Wong","version":20,"id":"83789","lastModified":"1301902629000","name":"Linda Wong","type":"Person","_key":"69345"} +{"label":"Julie Parrish","version":21,"id":"83790","lastModified":"1301902629000","name":"Julie Parrish","type":"Person","_key":"69346"} +{"label":"The French Kissers","description":"Herv\u00e9 and his mulleted best mate Camel are fourteen and in possession of some serious hormones. They're forever fantasising over the girls in their class, but can barely work up the guts to talk to them. So when Herv\u00e9 inexplicably catches the eye of cool-girl Aurore, he\u00b9s suddenly pushed straight into the strange world of hand-holding, tongue-kissing and heavy petting. But his first girlfriend, his unquenchable libido, and his best friend are set on a collision course, and before long Herv\u00e9 is f","id":"18896","runtime":90,"imdbId":"tt1314237","version":85,"lastModified":"1301907035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c6d\/4bc954e1017a3c57fe025c6d\/les-beaux-gosses-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"The French Kissers","releaseDate":1244592000000,"language":"en","type":"Movie","_key":"69347"} +{"label":"Riad Sattouf","version":25,"id":"83793","lastModified":"1301902062000","name":"Riad Sattouf","type":"Person","_key":"69348"} +{"label":"Vincent Lacoste","version":23,"id":"83797","lastModified":"1301902236000","name":"Vincent Lacoste","type":"Person","_key":"69349"} +{"label":"Anthony Sonigo","version":22,"id":"83798","lastModified":"1301901862000","name":"Anthony Sonigo","type":"Person","_key":"69350"} +{"label":"Alice Tr\u00e9moli\u00e8re","version":20,"id":"83799","lastModified":"1301901717000","name":"Alice Tr\u00e9moli\u00e8re","type":"Person","_key":"69351"} +{"label":"Julie Scheibling","version":22,"id":"83800","lastModified":"1301902236000","name":"Julie Scheibling","type":"Person","_key":"69352"} +{"label":"Lorele\u00ef Chenet","version":20,"id":"83803","lastModified":"1301902236000","name":"Lorele\u00ef Chenet","type":"Person","_key":"69353"} +{"label":"Don't Look Back","description":"Jeanne, plong\u00e9e dans l'\u00e9criture d'un premier roman, constate des changements myst\u00e9rieux autour d'elle et voit son corps se transformer... Son entourage ne semble pas s'en apercevoir.\nTroubl\u00e9e, elle d\u00e9couvre chez sa m\u00e8re une photographie qui la met sur la trace d'une femme, en Italie. Jeanne, d\u00e9sormais transform\u00e9e, y trouvera la clef d'un \u00e9trange pass\u00e9...","id":"18897","runtime":111,"imdbId":"tt1075113","trailer":"http:\/\/www.youtube.com\/watch?v=2932","homepage":"http:\/\/www.neteretournepas-lefilm.com","version":152,"lastModified":"1301903160000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c86\/4bc954e7017a3c57fe025c86\/ne-te-retourne-pas-mid.jpg","studio":"Wild Bunch Distribution","genre":"Drama","title":"Don't Look Back","releaseDate":1243987200000,"language":"en","type":"Movie","_key":"69354"} +{"label":"Thierry Neuvic","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/075\/4cdc4c117b9aa13803000075\/thierry-neuvic-profile.jpg","version":41,"id":"83813","lastModified":"1301902051000","name":"Thierry Neuvic","type":"Person","_key":"69355"} +{"label":"Looking for Eric","description":"A man trying to put his life back on track gets some advice from an unexpected benefactor (the ex football player Eric Cantona) in this comedy-drama from acclaimed British director Ken Loach.","id":"18898","runtime":119,"imdbId":"tt1242545","trailer":"http:\/\/www.youtube.com\/watch?v=j852L4afUJs","homepage":"http:\/\/www.lookingforeric.fr\/","version":301,"lastModified":"1301904632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ca4\/4bc954ec017a3c57fe025ca4\/looking-for-eric-mid.jpg","studio":"Diaphana Films","genre":"Comedy","title":"Looking for Eric","releaseDate":1243382400000,"language":"en","type":"Movie","_key":"69356"} +{"label":"Steve Evets","version":22,"id":"83814","lastModified":"1301901378000","name":"Steve Evets","type":"Person","_key":"69357"} +{"label":"Stephanie Bishop","version":22,"id":"83815","lastModified":"1301901460000","name":"Stephanie Bishop","type":"Person","_key":"69358"} +{"label":"Stefan Gumbs","version":22,"id":"83818","lastModified":"1301901585000","name":"Stefan Gumbs","type":"Person","_key":"69359"} +{"label":"Lucy-Jo Hudson","version":22,"id":"83819","lastModified":"1301901588000","name":"Lucy-Jo Hudson","type":"Person","_key":"69360"} +{"label":"Vengeance","description":"Fran\u00e7ois Costello arrives in Hong Kong to avenge the death of his daughter and her family, who were murdered by hired killers. Twenty years before, Costello was a professional hitman... As Costello's memory is fading away, three professional killers, Kwai, Chu and Lok, are sought to help him complete his revenge plan.","id":"18899","runtime":108,"imdbId":"tt1329454","version":320,"lastModified":"1301904291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb9\/4bc954ee017a3c57fe025cb9\/vengeance-mid.jpg","studio":"ARP S\u00e9lection","genre":"Action","title":"Vengeance","releaseDate":1242777600000,"language":"en","type":"Movie","_key":"69361"} +{"label":"In Cold Blood","description":"In Cold Blood is a 1967 film based on Truman Capote's book of the same name. Richard Brooks prepared the adaptation and directed the film. Some scenes were filmed on the locations of the original events, in Garden City and Holcomb, Kansas including the Clutter residence, the site of the murders.","id":"18900","runtime":134,"imdbId":"tt0061809","version":179,"lastModified":"1301903834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cd6\/4bc954f3017a3c57fe025cd6\/in-cold-blood-mid.jpg","genre":"Crime","title":"In Cold Blood","releaseDate":-64713600000,"language":"en","type":"Movie","_key":"69362"} +{"label":"Pinchcliffe Grand Prix","description":"100 miles north, a bit east and up, is Fl\u00e5klypa... home of bicycle repairman Reodor Felgen and his two assistants - Solan Gundersen, morning bird and natural born optimist, and Ludvig who is a true pessimist. Sponsored by oil sheik Ben Redic Fy Fazan, they build the car \"Il Tempo Gigante\" and the race of the decade is a fact.","id":"18901","runtime":88,"imdbId":"tt0073000","version":60,"lastModified":"1301904971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cdf\/4bc954f4017a3c57fe025cdf\/flaklypa-grand-prix-mid.jpg","studio":"Caprino Filmcenter a\/s","genre":"Animation","title":"Pinchcliffe Grand Prix","releaseDate":213580800000,"language":"en","type":"Movie","_key":"69363"} +{"label":"Frank Robert","version":22,"id":"92047","lastModified":"1301903036000","name":"Frank Robert","type":"Person","_key":"69364"} +{"label":"Toralv Maurstad","version":23,"id":"92048","lastModified":"1301903054000","name":"Toralv Maurstad","type":"Person","_key":"69365"} +{"label":"Rolf Just Nilsen","version":33,"id":"92049","lastModified":"1301902690000","name":"Rolf Just Nilsen","type":"Person","_key":"69366"} +{"label":"Harald Heide-Steen Jr.","version":38,"id":"92050","lastModified":"1301902515000","name":"Harald Heide-Steen Jr.","type":"Person","_key":"69367"} +{"label":"Per Theodor Haugen","version":20,"id":"92051","lastModified":"1301903039000","name":"Per Theodor Haugen","type":"Person","_key":"69368"} +{"label":"Wenche Foss","version":23,"id":"92052","lastModified":"1301902716000","name":"Wenche Foss","type":"Person","_key":"69369"} +{"label":"Henki Kolstad","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/06c\/4bd531bd017a3c2e7800006c\/henki-kolstad-profile.jpg","version":27,"id":"92053","lastModified":"1301902515000","name":"Henki Kolstad","type":"Person","_key":"69370"} +{"label":"Leif Juster","version":25,"id":"92054","lastModified":"1301902704000","name":"Leif Juster","type":"Person","_key":"69371"} +{"label":"Ivo Caprino","version":25,"id":"117949","lastModified":"1301902373000","name":"Ivo Caprino","type":"Person","_key":"69372"} +{"label":"Zoo","description":"No overview found.","id":"18902","runtime":76,"imdbId":"tt0874423","version":124,"lastModified":"1301906194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce4\/4bc954f4017a3c57fe025ce4\/zoo-mid.jpg","studio":"Thinkfilm","genre":"Documentary","title":"Zoo","releaseDate":1169251200000,"language":"en","type":"Movie","_key":"69373"} +{"label":"Red Pearls of Love","description":"Maria is young and beautiful. Her life resembles a fairy tale, in which the wishes come true if by magic. She has a smart, loving husband. And all that can be bought for money. Maria wants a child but could not bear it. She lives, but does not feel life. She is very unhappy.","id":"18903","runtime":82,"imdbId":"tt1671634","version":64,"lastModified":"1301906597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce9\/4bc954f5017a3c57fe025ce9\/18903-mid.jpg","studio":"Filmokom","genre":"Drama","title":"Red Pearls of Love","releaseDate":1210204800000,"language":"en","type":"Movie","_key":"69374"} +{"label":"Andres Puustusmaa","version":23,"id":"83828","lastModified":"1301902062000","name":"Andres Puustusmaa","type":"Person","_key":"69375"} +{"label":"Oksana Fandera","version":21,"id":"83835","lastModified":"1301902236000","name":"Oksana Fandera","type":"Person","_key":"69376"} +{"label":"Yevgeni Tsyganov","version":20,"id":"83836","lastModified":"1301902515000","name":"Yevgeni Tsyganov","type":"Person","_key":"69377"} +{"label":"Igor Yatsko","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ccf\/4be6f706017a3c35b5000ccf\/igor-yatsko-profile.jpg","version":20,"birthday":"-168483600000","id":"83837","birthplace":"Russia","lastModified":"1301902704000","name":"Igor Yatsko","type":"Person","_key":"69378"} +{"label":"Yuri Stepanov","version":17,"id":"83838","lastModified":"1301902453000","name":"Yuri Stepanov","type":"Person","_key":"69379"} +{"label":"A Summer Place","description":"A self-made businessman rekindles a romance with a former flame while their two teenage children begin a romance of their own with drastic consequences for both couples.","id":"18904","imdbId":"tt0053320","trailer":"http:\/\/www.youtube.com\/watch?v=SObmfB9o9gQ","version":198,"lastModified":"1301515329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf2\/4bc954f6017a3c57fe025cf2\/a-summer-place-mid.jpg","studio":"Warner Bros. Pictures","genre":"Drama","title":"A Summer Place","releaseDate":-319420800000,"language":"en","type":"Movie","_key":"69380"} +{"label":"Sandra Dee","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3e1\/4c28de407b9aa1446c0003e1\/sandra-dee-profile.jpg","version":34,"id":"89808","lastModified":"1301902422000","name":"Sandra Dee","type":"Person","_key":"69381"} +{"label":"Caveman","description":"In this comedy, Atouk becomes leader of the misfit cavemen. Disgraced and cast out of his tribe for lusting after Lana, the mate of tribe's head muscle man, Atouk stumbles along gathering other misfits and learning a bit about the world outside of his cave. Eventually he and friends Lar, and Tala learn the secrets of fire, cooked meat, and how to defend themselves from the brutal, yet very stupid","id":"18905","runtime":91,"imdbId":"tt0082146","version":286,"lastModified":"1301903403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cfb\/4bc954f6017a3c57fe025cfb\/caveman-mid.jpg","studio":"David Foster Productions","genre":"Action","title":"Caveman","releaseDate":356313600000,"language":"en","type":"Movie","_key":"69382"} +{"label":"Cork Hubbert","version":22,"id":"83839","lastModified":"1301902349000","name":"Cork Hubbert","type":"Person","_key":"69383"} +{"label":"Paco Morayta","version":19,"id":"83841","lastModified":"1301902236000","name":"Paco Morayta","type":"Person","_key":"69384"} +{"label":"Mus\u00e9e haut, mus\u00e9e bas","description":"Un conservateur terroris\u00e9 par les plantes vertes, une m\u00e8re plastifi\u00e9e pour \u00eatre expos\u00e9e, un ballet de Saintes Vierges, des gardiens \u00e9puis\u00e9s par Rodin, un ministre perdu dans une exposition de sexes, une voiture disparue au parking Rembrandt, des provinciaux amoureux des Impressionnistes, touristes galopins galopant d'une salle \u00e0 l'autre, passager clandestin dans l'art premier, Picasso, Gauguin, Warhol, ils sont tous l\u00e0 dans ce petit monde qui ressemble au grand, dans ce mus\u00e9e pas si imaginaire q","id":"18906","runtime":93,"imdbId":"tt1082051","version":54,"lastModified":"1301418586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d09\/4bc954f8017a3c57fe025d09\/musee-haut-musee-bas-mid.jpg","studio":"Warner Bros. France","genre":"Comedy","title":"Mus\u00e9e haut, mus\u00e9e bas","releaseDate":1227052800000,"language":"en","type":"Movie","_key":"69385"} +{"label":"Jean-Michel Ribes","version":21,"id":"83842","lastModified":"1301902404000","name":"Jean-Michel Ribes","type":"Person","_key":"69386"} +{"label":"Jean-Damien Barbin","version":19,"id":"83844","lastModified":"1301902236000","name":"Jean-Damien Barbin","type":"Person","_key":"69387"} +{"label":"Lo\u00efc Corbery","version":17,"id":"83845","lastModified":"1301902236000","name":"Lo\u00efc Corbery","type":"Person","_key":"69388"} +{"label":"Xavier Gallais","version":19,"id":"83846","lastModified":"1301902236000","name":"Xavier Gallais","type":"Person","_key":"69389"} +{"label":"Annie Gr\u00e9gorio","version":19,"id":"83847","lastModified":"1301902453000","name":"Annie Gr\u00e9gorio","type":"Person","_key":"69390"} +{"label":"Patrick Haudecoeur","version":20,"id":"83848","lastModified":"1301902236000","name":"Patrick Haudecoeur","type":"Person","_key":"69391"} +{"label":"Transformers: Resparked","description":"No overview found.","id":"18907","runtime":122,"homepage":"http:\/\/fanedit.org\/459\/","version":26,"lastModified":"1301906178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc954f9017a3c57fe025d0e\/transformers-resparked-mid.jpg","title":"Transformers: Resparked","releaseDate":1205020800000,"language":"en","type":"Movie","_key":"69392"} +{"label":"Den eneste ene","description":"Niller og Lizzie bor sammen og har det fuldst\u00e6ndig, som Lizzie gerne vi ha' det, s\u00e5 alt er godt. Bortset fra at Lizzie gerne vil ha' et barn sammen med Niller, og at Lizzies s\u00f8ster gerne vil ha' Niller. Niller vil bare gerne have et barn, n\u00e5r Lizzie vil, men der er lige det med s\u00e6dkvaliteten... Sus arbejder i en sk\u00f8nhedsklinik sammen med Stella, som er ret god til det der med m\u00e6nd, Stella mangler ","id":"18908","runtime":106,"imdbId":"tt0167137","version":61,"lastModified":"1301904938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d13\/4bc954f9017a3c57fe025d13\/den-eneste-ene-mid.jpg","studio":"Sandrew Metronome","genre":"Comedy","title":"Den eneste ene","releaseDate":922924800000,"language":"en","type":"Movie","_key":"69393"} +{"label":"S\u00f8s Egelind","version":20,"id":"83849","lastModified":"1301902652000","name":"S\u00f8s Egelind","type":"Person","_key":"69394"} +{"label":"Breeding Ian Jay","description":"No overview found.","id":"18909","runtime":0,"version":24,"lastModified":"1300980648000","title":"Breeding Ian Jay","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69395"} +{"label":"The Ninth Configuration","description":"A new commanding officer arrives at a remote castle serving as an insane asylum for crazy and AWOL U.S. Army soldiers where he attempts to rehabilitate them by allowing them to live out their crazy fantasies while combating his own long-suppressed insanity.","id":"18910","runtime":118,"imdbId":"tt0081237","version":100,"lastModified":"1301905261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d21\/4bc954fa017a3c57fe025d21\/the-ninth-configuration-mid.jpg","studio":"Ninth Configuration","genre":"Comedy","title":"The Ninth Configuration","releaseDate":320630400000,"language":"en","type":"Movie","_key":"69396"} +{"label":"Alejandro Rey","version":23,"id":"83851","lastModified":"1301901862000","name":"Alejandro Rey","type":"Person","_key":"69397"} +{"label":"Tomb Raider: Ascension","description":"West Midlands based filmmaker Stephen Reynolds\u2019 latest 60 minute feature, Tomb Raider Ascension. Shot in 7 days with a budget of \u00a310,000, Stephen directs Anna Tyrie in his own spin on the Tomb Raider franchise, taking the story back to the beginning of Lara Croft\u2019s journey and showing her rise to become \u2018Tomb Raider\u2019","id":"18911","runtime":60,"imdbId":"tt1629741","homepage":"http:\/\/www.tombraiderascension.com","version":58,"lastModified":"1301908401000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2a\/4bc954fd017a3c57fe025d2a\/tomb-raider-ascension-mid.jpg","genre":"Action","title":"Tomb Raider: Ascension","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"69398"} +{"label":"Anna Tyrie","version":24,"id":"83855","lastModified":"1301901460000","name":"Anna Tyrie","type":"Person","_key":"69399"} +{"label":"Peter Wear","version":21,"id":"108489","lastModified":"1301902477000","name":"Peter Wear","type":"Person","_key":"69400"} +{"label":"Ava Hunt","version":20,"id":"108490","lastModified":"1301902919000","name":"Ava Hunt","type":"Person","_key":"69401"} +{"label":"Hugh Hemmings","version":20,"id":"108491","lastModified":"1301902647000","name":"Hugh Hemmings","type":"Person","_key":"69402"} +{"label":"Jamie Duncombe","version":20,"id":"108492","lastModified":"1301902919000","name":"Jamie Duncombe","type":"Person","_key":"69403"} +{"label":"Philip Goldacre","version":20,"id":"108494","lastModified":"1301902919000","name":"Philip Goldacre","type":"Person","_key":"69404"} +{"label":"Stephen Reynolds","version":30,"id":"108486","lastModified":"1301902580000","name":"Stephen Reynolds","type":"Person","_key":"69405"} +{"label":"Angst","description":"A man is released from prison after serving four years for murdering an elderly woman. He quickly begins to feel the compulsion to kill again.","id":"18912","runtime":94,"imdbId":"tt0165623","version":65,"lastModified":"1301907267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d38\/4bc954ff017a3c57fe025d38\/angst-mid.jpg","studio":"Gerald Kargl","genre":"Crime","title":"Angst","releaseDate":410227200000,"language":"en","type":"Movie","_key":"69406"} +{"label":"Gerald Kargl","version":20,"id":"83863","lastModified":"1301902675000","name":"Gerald Kargl","type":"Person","_key":"69407"} +{"label":"Robert Hunger-B\u00fchler","version":19,"id":"83866","lastModified":"1301902675000","name":"Robert Hunger-B\u00fchler","type":"Person","_key":"69408"} +{"label":"Silvia Rabenreither","version":19,"id":"83867","lastModified":"1301901777000","name":"Silvia Rabenreither","type":"Person","_key":"69409"} +{"label":"Karin Springer","version":19,"id":"83868","lastModified":"1301902675000","name":"Karin Springer","type":"Person","_key":"69410"} +{"label":"Edith Rosset","version":19,"id":"83869","lastModified":"1301902675000","name":"Edith Rosset","type":"Person","_key":"69411"} +{"label":"Josefine Lakatha","version":19,"id":"83870","lastModified":"1301902501000","name":"Josefine Lakatha","type":"Person","_key":"69412"} +{"label":"Rudolf G\u00f6tz","version":19,"id":"83871","lastModified":"1301902675000","name":"Rudolf G\u00f6tz","type":"Person","_key":"69413"} +{"label":"Betsy's Wedding","description":"Offbeat fashion student Betsy Hopper and her straight-laced investment-banker fianc\u00e9, Dylan Walsh, just want an intimate little wedding reception, but Betsy's father, Eddie, a Long Island construction contractor, feels so threatened by Jake's rich WASP parents that he blows the ceremony up into a bank-breaking showpiece, sending his wife, Lola, into a financial panic.","id":"18913","runtime":94,"imdbId":"tt0099128","version":112,"lastModified":"1301906064000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3d\/4bc954ff017a3c57fe025d3d\/betsy-s-wedding-mid.jpg","studio":"Silver Screen Partners IV","genre":"Comedy","title":"Betsy's Wedding","releaseDate":646012800000,"language":"en","type":"Movie","_key":"69414"} +{"label":"L'emmerdeur","description":"An unlikely friendship develops between a hitman and a suicidal guy who have both checked into the same hotel for different reasons.","id":"18916","runtime":86,"imdbId":"tt1182924","version":61,"lastModified":"1301906971000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4a\/4bc95500017a3c57fe025d4a\/l-emmerdeur-mid.jpg","studio":"TFM Distribution","genre":"Comedy","title":"L'emmerdeur","releaseDate":1226275200000,"language":"en","type":"Movie","_key":"69415"} +{"label":"N\u011bco z Alenky","description":"A memorably bizarre screen version of Lewis Carroll's novel 'Alice's Adventures in Wonderland'. The original story is followed reasonably faithfully, though those familiar with this director's other films won't be the least bit surprised by the numerous digressions into Svankmajer territory, living slabs of meat and all. As the opening narration says, it's a film made for children... perhaps?","id":"18917","runtime":86,"imdbId":"tt0095715","version":37,"lastModified":"1301904263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4f\/4bc95500017a3c57fe025d4f\/neco-z-alenky-mid.jpg","studio":"Channel Four Films","genre":"Animation","title":"N\u011bco z Alenky","releaseDate":586569600000,"language":"en","type":"Movie","_key":"69416"} +{"label":"Krist\u00fdna Kohoutov\u00e1","version":20,"id":"83876","lastModified":"1301902527000","name":"Krist\u00fdna Kohoutov\u00e1","type":"Person","_key":"69417"} +{"label":"Spiklenci slasti","description":"Six outwardly average individuals have elaborate fetishes they indulge with surreptitious care.","id":"18918","runtime":85,"imdbId":"tt0117715","version":42,"lastModified":"1301908311000","studio":"Athanor","genre":"Animation","title":"Spiklenci slasti","releaseDate":845510400000,"language":"en","type":"Movie","_key":"69418"} +{"label":"Petr Meissel","version":20,"id":"80325","lastModified":"1301902359000","name":"Petr Meissel","type":"Person","_key":"69419"} +{"label":"Gabriela Wilhelmov\u00e1","version":19,"id":"83877","lastModified":"1301902141000","name":"Gabriela Wilhelmov\u00e1","type":"Person","_key":"69420"} +{"label":"Anna Wetlinsk\u00e1","version":20,"id":"83879","lastModified":"1301902324000","name":"Anna Wetlinsk\u00e1","type":"Person","_key":"69421"} +{"label":"Pavel Nov\u00fd","version":26,"id":"83880","lastModified":"1301902173000","name":"Pavel Nov\u00fd","type":"Person","_key":"69422"} +{"label":"Faust","description":"A very free adaptation of Marlowe's 'Doctor Faustus', Goethe's 'Faust' and various other treatments of the old legend of the man who sold his soul to the devil. Svankmajer's Faust is a nondescript man who, after being lured by a strange map into a sinister puppet theatre, finds himself immersed in an indescribably weird version of the play, blending live actors, clay animation and giant puppets.","id":"18919","runtime":97,"imdbId":"tt0109781","trailer":"http:\/\/www.youtube.com\/watch?v=5T6MeOnGSBM","version":109,"lastModified":"1301906460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bf\/4d0134215e73d621a40000bf\/faust-mid.jpg","studio":"Athanor","genre":"Animation","title":"Faust","releaseDate":779155200000,"language":"en","type":"Movie","_key":"69423"} +{"label":"Petr \u010cepek","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/cf6\/4cfbb85e5e73d6299e002cf6\/petr-cepek-profile.jpg","biography":"<P>\u200bZamlkl\u00fd tajupln\u00fd herec s temn\u00fdm pohledem bude nav\u017edy pat\u0159it do historie \u010desk\u00e9ho divadla a filmu. Petr \u010cepek se narodil v z\u00e1\u0159\u00ed 1940, v rodin\u011b man\u017eel\u016f Karla a Milu\u0161ky \u010cepkov\u00fdch. Oba jeho rodi\u010de poch\u00e1zeli z obce Hrab\u016fvka v Beskydech. Maminka m\u011bla hudebn\u00ed vzd\u011bl\u00e1n\u00ed, otec miloval divadlo. O dva roky pozd\u011bji do rodiny p\u0159ibyl druh\u00fd syn \u2013 Karel. Kdy\u017e byly Petrovi asi t\u0159i roky, jeho otec um\u00edr\u00e1. P\u0159i operaci jej zastihla osudn\u00e1 plicn\u00ed embolie. D\u011bti i s maminkou se st\u011bhuj\u00ed k babi\u010dce do Hrab\u016fvek. Petr zde","version":33,"birthday":"-924400800000","id":"83882","birthplace":"Praha","lastModified":"1301901209000","name":"Petr \u010cepek","type":"Person","_key":"69424"} +{"label":"Vi hade i alla fall tur med v\u00e4dret","description":"The Backlund family is going on a caravanning holiday. According to the father G\u00f6sta it is the best way to see Sweden. The son Johan does not want to do anything but bathing and the daugther Lotta don't even want to come along. You get to see the Backlunds in resturants, beaches and caravan sites. G\u00f6sta likes to rule his family but it does not go very well.","id":"18920","runtime":57,"imdbId":"tt0081712","version":37,"lastModified":"1301904993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d58\/4bc95500017a3c57fe025d58\/vi-hade-i-alla-fall-tur-med-vadret-mid.jpg","studio":"Sveriges Television AB","genre":"Comedy","title":"Vi hade i alla fall tur med v\u00e4dret","releaseDate":320457600000,"language":"en","type":"Movie","_key":"69425"} +{"label":"Claire Wikholm","version":23,"id":"83885","lastModified":"1302068886000","name":"Claire Wikholm","type":"Person","_key":"69426"} +{"label":"Gunnar 'Knas' Lindkvist","version":20,"id":"83886","lastModified":"1301902705000","name":"Gunnar 'Knas' Lindkvist","type":"Person","_key":"69427"} +{"label":"Lotta Thomsen","version":20,"id":"83887","lastModified":"1301902175000","name":"Lotta Thomsen","type":"Person","_key":"69428"} +{"label":"Johan \u00d6hman","version":19,"id":"83888","lastModified":"1301902675000","name":"Johan \u00d6hman","type":"Person","_key":"69429"} +{"label":"Vi hade i alla fall tur med v\u00e4dret - Igen","description":"Almost 30 years has passed and G\u00f6sta and Gun are retired. This summer they're going on a trip to their sons wedding in G\u00f6stas new RV.","id":"18921","runtime":95,"imdbId":"tt1307466","version":49,"lastModified":"1302068886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d61\/4bc95501017a3c57fe025d61\/vi-hade-i-alla-fall-tur-med-vadret-igen-mid.jpg","studio":"The Chimney Pot","genre":"Comedy","title":"Vi hade i alla fall tur med v\u00e4dret - Igen","releaseDate":1228435200000,"language":"en","type":"Movie","_key":"69430"} +{"label":"Kjell-\u00c5ke Andersson","version":27,"id":"83883","lastModified":"1302068886000","name":"Kjell-\u00c5ke Andersson","type":"Person","_key":"69431"} +{"label":"Mikaela Knapp","version":20,"id":"83892","lastModified":"1302068886000","name":"Mikaela Knapp","type":"Person","_key":"69432"} +{"label":"Gustav Berg","version":20,"id":"83893","lastModified":"1302068886000","name":"Gustav Berg","type":"Person","_key":"69433"} +{"label":"Magdalena in de Betou","version":20,"id":"83894","lastModified":"1302068886000","name":"Magdalena in de Betou","type":"Person","_key":"69434"} +{"label":"Jacob Ericksson","version":28,"id":"83895","lastModified":"1302068886000","name":"Jacob Ericksson","type":"Person","_key":"69435"} +{"label":"Robin Stegmar","version":20,"id":"83896","lastModified":"1302068886000","name":"Robin Stegmar","type":"Person","_key":"69436"} +{"label":"Ellen Mattsson","version":20,"id":"83897","lastModified":"1302068886000","name":"Ellen Mattsson","type":"Person","_key":"69437"} +{"label":"Johan Glans","version":25,"id":"83898","lastModified":"1302068886000","name":"Johan Glans","type":"Person","_key":"69438"} +{"label":"Sofia Ledarp","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b0e\/4d2623337b9aa134cf000b0e\/sofia-ledarp-profile.jpg","version":39,"id":"83899","lastModified":"1302068886000","name":"Sofia Ledarp","type":"Person","_key":"69439"} +{"label":"Comme un poisson hors de l'eau","description":"No overview found.","id":"18922","runtime":90,"imdbId":"tt0164008","version":34,"lastModified":"1301908520000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d66\/4bc95501017a3c57fe025d66\/comme-un-poisson-hors-de-l-eau-mid.jpg","studio":"Canal Plus","genre":"Comedy","title":"Comme un poisson hors de l'eau","releaseDate":925862400000,"language":"en","type":"Movie","_key":"69440"} +{"label":"Herv\u00e9 Hadmar","version":17,"id":"83900","lastModified":"1301902675000","name":"Herv\u00e9 Hadmar","type":"Person","_key":"69441"} +{"label":"A Home at the End of the World","description":"Three friends form a bond over the year, Johnathan is gay, Clare is straight and Bobby is neither, instead he loves the people he loves. As their lives go on there is tention and tears which culminate in a strong yet fragile frienship between the three.","id":"18923","runtime":96,"imdbId":"tt0359423","version":221,"lastModified":"1301904088000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6f\/4bc95502017a3c57fe025d6f\/a-home-at-the-end-of-the-world-mid.jpg","genre":"Drama","title":"A Home at the End of the World","releaseDate":1090540800000,"language":"en","type":"Movie","_key":"69442"} +{"label":"Facing the Giants","description":"From the award-winning producers of FLYWHEEL comes a new, action-packed, family-friendly drama about a high school football coach who draws up a new game plan for his team \u2026 and himself. ","id":"18925","runtime":111,"imdbId":"tt0805526","trailer":"http:\/\/www.youtube.com\/watch?v=zciqppDGzGo","homepage":"http:\/\/www.facingthegiants.com\/","version":315,"lastModified":"1301903403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/332\/4d06f67a7b9aa11bbf003332\/facing-the-giants-mid.jpg","genre":"Drama","title":"Facing the Giants","releaseDate":1159488000000,"language":"en","type":"Movie","_key":"69443"} +{"label":"James Blackwell","version":21,"id":"83902","lastModified":"1301901813000","name":"James Blackwell","type":"Person","_key":"69444"} +{"label":"Shannen Fields","version":17,"id":"135798","lastModified":"1301902617000","name":"Shannen Fields","type":"Person","_key":"69445"} +{"label":"Chris WIllis","version":18,"id":"135799","lastModified":"1301902724000","name":"Chris WIllis","type":"Person","_key":"69446"} +{"label":"Tracy Goode","version":18,"id":"135800","lastModified":"1301902706000","name":"Tracy Goode","type":"Person","_key":"69447"} +{"label":"Boomerang!","description":"The true story of a prosecutor's fight to prove the innocence of a man accused of a notorious murder.","id":"18926","runtime":88,"imdbId":"tt0039208","version":73,"lastModified":"1301903806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8a\/4bc95508017a3c57fe025d8a\/boomerang-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Crime","title":"Boomerang!","releaseDate":-720403200000,"language":"en","type":"Movie","_key":"69448"} +{"label":"Stander","description":"\"Stander\" is based on the true story of Andr\u00e9 Stander, a South African homicide\/robbery police captain who became one of the most notorious bank robbers in the country.","id":"18927","runtime":116,"imdbId":"tt0326208","version":198,"lastModified":"1301906845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d8f\/4bc95508017a3c57fe025d8f\/stander-mid.jpg","genre":"Crime","title":"Stander","releaseDate":1041379200000,"language":"en","tagline":"Good cop. Great criminal.","type":"Movie","_key":"69449"} +{"label":"Run Man Run","description":"The legendary Tomas Milian stars as Cuchillo, a knife-throwing thief on the run from murderous bandits, sadistic American agents, his hot-blooded fianc\u00e9e and a sheriff turned bounty hunter, all of whom are gunning for a hidden fortune in gold that could finance the Mexican Revolution.","id":"18928","runtime":121,"imdbId":"tt0062825","version":90,"lastModified":"1301903570000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d94\/4bc95508017a3c57fe025d94\/corri-uomo-corri-mid.jpg","genre":"Action","title":"Run Man Run","releaseDate":-42336000000,"language":"en","type":"Movie","_key":"69450"} +{"label":"The Entertainer","description":"Archie Rice, an old-time British vaudeville performer sinking into final defeat, schemes to stay in show business.","id":"18929","runtime":96,"imdbId":"tt0053796","version":120,"lastModified":"1301730000000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/887\/4d4b4d627b9aa13aaf006887\/the-entertainer-mid.jpg","genre":"Drama","title":"The Entertainer","releaseDate":-297820800000,"language":"en","type":"Movie","_key":"69451"} +{"label":"Roger Livesey","version":23,"id":"83907","lastModified":"1301901284000","name":"Roger Livesey","type":"Person","_key":"69452"} +{"label":"Daniel Massey","version":26,"id":"83908","lastModified":"1301901941000","name":"Daniel Massey","type":"Person","_key":"69453"} +{"label":"Shirley Anne Field","version":22,"id":"83909","lastModified":"1301902675000","name":"Shirley Anne Field","type":"Person","_key":"69454"} +{"label":"Thora Hird","version":23,"id":"83910","lastModified":"1301902501000","name":"Thora Hird","type":"Person","_key":"69455"} +{"label":"Murder by Contract","description":"Claude is a ruthless and efficient contract killer. His next target, a woman, is the most difficult.","id":"18930","runtime":81,"imdbId":"tt0051959","trailer":"http:\/\/www.youtube.com\/watch?v=Mnc-aN5nRRQ","version":65,"lastModified":"1301907845000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da2\/4bc9550a017a3c57fe025da2\/murder-by-contract-mid.jpg","studio":"Orbit Productions","genre":"Crime","title":"Murder by Contract","releaseDate":-349833600000,"language":"en","type":"Movie","_key":"69456"} +{"label":"Phillip Pine","version":22,"id":"16126","lastModified":"1301901662000","name":"Phillip Pine","type":"Person","_key":"69457"} +{"label":"Caprice Toriel","version":19,"id":"83911","lastModified":"1301902629000","name":"Caprice Toriel","type":"Person","_key":"69458"} +{"label":"Michael Granger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7cd\/4caa40f47b9aa17acb0007cd\/michael-granger-profile.jpg","version":26,"id":"83912","lastModified":"1301902353000","name":"Michael Granger","type":"Person","_key":"69459"} +{"label":"Kathie Browne","version":18,"id":"16090","lastModified":"1301901773000","name":"Kathie Browne","type":"Person","_key":"69460"} +{"label":"Joseph Mell","version":21,"id":"83913","lastModified":"1301902313000","name":"Joseph Mell","type":"Person","_key":"69461"} +{"label":"Frances Osborne","version":21,"id":"83914","lastModified":"1301902725000","name":"Frances Osborne","type":"Person","_key":"69462"} +{"label":"Steven Ritch","version":26,"id":"83915","lastModified":"1301902516000","name":"Steven Ritch","type":"Person","_key":"69463"} +{"label":"Don Garrett","version":20,"id":"83916","lastModified":"1301902236000","name":"Don Garrett","type":"Person","_key":"69464"} +{"label":"Gloria Victor","version":20,"id":"83917","lastModified":"1301902236000","name":"Gloria Victor","type":"Person","_key":"69465"} +{"label":"Irving Lerner","version":21,"id":"83918","lastModified":"1301901642000","name":"Irving Lerner","type":"Person","_key":"69466"} +{"label":"Knock Knock","description":"Knock Knock is a horror film that combines fear with revenge, hate with justice and responsibility with sacrifice. The bible says an \"Eye for an Eye.\" Rico was just a big fun loving son of a hard working neighborhood business man. The problem is his dad is an undertaker. Some popular high school Students thought he was weird because of it. Rico kept to himself...","id":"18932","runtime":92,"imdbId":"tt0471011","version":111,"lastModified":"1301904610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dab\/4bc9550a017a3c57fe025dab\/knock-knock-mid.jpg","studio":"Ariola Productions. Inc.","genre":"Horror","title":"Knock Knock","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"69467"} +{"label":"Nicole Abisinio","version":19,"id":"83920","lastModified":"1301902324000","name":"Nicole Abisinio","type":"Person","_key":"69468"} +{"label":"Chris Bashinelli","version":24,"id":"83921","lastModified":"1301902501000","name":"Chris Bashinelli","type":"Person","_key":"69469"} +{"label":"Joseph Ariola","version":19,"id":"83922","lastModified":"1301902675000","name":"Joseph Ariola","type":"Person","_key":"69470"} +{"label":"Arthur's Missing Pal","description":"No overview found.","id":"18934","runtime":68,"imdbId":"tt0356371","version":76,"lastModified":"1301594649000","title":"Arthur's Missing Pal","releaseDate":1156204800000,"language":"en","type":"Movie","_key":"69471"} +{"label":"Ernest Goes to Camp","description":"A group of juvenile criminals is sent for vacation to Kamp Kikakee. The clumsy Ernest has to care for them, although he doesn't even know how to take care of himself. The other children at the camp show enmity against them, but the group knows very well how to defend themselves. They do also help the Indian owner of the camp when a brutal mining corporation wants to tear down the camp to mine...","id":"18935","runtime":92,"imdbId":"tt0092974","version":99,"lastModified":"1301594280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbe\/4bc9550b017a3c57fe025dbe\/ernest-goes-to-camp-mid.jpg","genre":"Comedy","title":"Ernest Goes to Camp","releaseDate":548640000000,"language":"en","type":"Movie","_key":"69472"} +{"label":"Victoria Racimo","version":20,"id":"136105","lastModified":"1301902765000","name":"Victoria Racimo","type":"Person","_key":"69473"} +{"label":"Daniel Butler","version":17,"id":"142104","lastModified":"1301902745000","name":"Daniel Butler","type":"Person","_key":"69474"} +{"label":"Lyle Alzado","version":17,"id":"142106","lastModified":"1301902751000","name":"Lyle Alzado","type":"Person","_key":"69475"} +{"label":"John R. Cherry III","version":26,"id":"83961","lastModified":"1301902389000","name":"John R. Cherry III","type":"Person","_key":"69476"} +{"label":"Blue Man Group: The Complex Rock Tour","description":"The Complex Rock Tour Live is a live DVD by Blue Man Group in support of their album, The Complex with footage from their shows in Dallas, Texas.","id":"18936","runtime":77,"imdbId":"tt0389869","version":252,"lastModified":"1301904727000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dc7\/4bc9550c017a3c57fe025dc7\/blue-man-group-the-complex-rock-tour-mid.jpg","title":"Blue Man Group: The Complex Rock Tour","releaseDate":1069718400000,"language":"en","type":"Movie","_key":"69477"} +{"label":"Matthew Banks","version":15,"id":"143319","lastModified":"1301902397000","name":"Matthew Banks","type":"Person","_key":"69478"} +{"label":"Tracy Bonham","version":15,"id":"143320","lastModified":"1301902411000","name":"Tracy Bonham","type":"Person","_key":"69479"} +{"label":"Jeff Turlik","version":15,"id":"143321","lastModified":"1301902411000","name":"Jeff Turlik","type":"Person","_key":"69480"} +{"label":"Quest for Camelot","description":"During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.","id":"18937","runtime":86,"imdbId":"tt0120800","version":221,"lastModified":"1301904089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dd0\/4bc9550c017a3c57fe025dd0\/quest-for-camelot-mid.jpg","genre":"Animation","title":"Quest for Camelot","releaseDate":895190400000,"language":"en","type":"Movie","_key":"69481"} +{"label":"Little Otik","description":"When a childless couple learn that they cannot have children, it causes great distress. To ease his wife's pain, the man finds a piece of root in the backyard and chops it and varnishes it into the shape of a child. However the woman takes the root as her baby and starts to pretend that it is real.","id":"18939","runtime":132,"imdbId":"tt0228687","version":108,"lastModified":"1301904276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31e\/4c9b3d265e73d6554a00031e\/otesanek-mid.jpg","studio":"Athanor","genre":"Animation","title":"Little Otik","releaseDate":968284800000,"language":"en","type":"Movie","_key":"69482"} +{"label":"Veronika Zilkov\u00e1","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2e3\/4d94ef555e73d622770022e3\/veronika-zilkov-profile.jpg","version":24,"id":"83951","lastModified":"1301902359000","name":"Veronika Zilkov\u00e1","type":"Person","_key":"69483"} +{"label":"Jan Hartl","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/59c\/4d94ef725e73d623b000159c\/jan-hartl-profile.jpg","version":24,"id":"83952","lastModified":"1301902523000","name":"Jan Hartl","type":"Person","_key":"69484"} +{"label":"Jaroslava Kretschmerov\u00e1","version":23,"id":"83953","lastModified":"1301902703000","name":"Jaroslava Kretschmerov\u00e1","type":"Person","_key":"69485"} +{"label":"Kristina Adamcov\u00e1","version":23,"id":"83954","lastModified":"1301902703000","name":"Kristina Adamcov\u00e1","type":"Person","_key":"69486"} +{"label":"Dagmar Str\u00edbrn\u00e1","version":23,"id":"83955","lastModified":"1301902703000","name":"Dagmar Str\u00edbrn\u00e1","type":"Person","_key":"69487"} +{"label":"Zdenek Koz\u00e1k","version":23,"id":"83956","lastModified":"1301902703000","name":"Zdenek Koz\u00e1k","type":"Person","_key":"69488"} +{"label":"Gustav Vondracek","version":18,"id":"133558","lastModified":"1301903028000","name":"Gustav Vondracek","type":"Person","_key":"69489"} +{"label":"Arnost Goldflam","version":17,"id":"133559","lastModified":"1301902738000","name":"Arnost Goldflam","type":"Person","_key":"69490"} +{"label":"Jitka Smutn\u00e1","version":17,"id":"133560","lastModified":"1301902738000","name":"Jitka Smutn\u00e1","type":"Person","_key":"69491"} +{"label":"Radek Holub","version":17,"id":"133561","lastModified":"1301902743000","name":"Radek Holub","type":"Person","_key":"69492"} +{"label":"Jan Jir\u00e1n","version":17,"id":"133562","lastModified":"1301902916000","name":"Jan Jir\u00e1n","type":"Person","_key":"69493"} +{"label":"Zdenek Palusga","version":17,"id":"133563","lastModified":"1301902917000","name":"Zdenek Palusga","type":"Person","_key":"69494"} +{"label":"Frantisek Polata","version":17,"id":"133564","lastModified":"1301902798000","name":"Frantisek Polata","type":"Person","_key":"69495"} +{"label":"Vaclav Jezek","version":17,"id":"133565","lastModified":"1301902944000","name":"Vaclav Jezek","type":"Person","_key":"69496"} +{"label":"Joseph Cahill","version":17,"id":"133566","lastModified":"1301902743000","name":"Joseph Cahill","type":"Person","_key":"69497"} +{"label":"Tom\u00e1s Han\u00e1k","version":17,"id":"133567","lastModified":"1301902803000","name":"Tom\u00e1s Han\u00e1k","type":"Person","_key":"69498"} +{"label":"Secrets Of State","description":"Diane, jeune recrue de la DGSE et Pierre, jeune recrue de l'islamisme radical, sont pris dans l'engrenage de la guerre entre les terroristes et les services secrets.","id":"18940","runtime":100,"imdbId":"tt1003052","homepage":"http:\/\/www.secretdefense-lefilm.com\/","version":156,"lastModified":"1301902991000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de1\/4bc9550e017a3c57fe025de1\/secret-defense-mid.jpg","studio":"UGC Distribution","genre":"Action","title":"Secrets Of State","releaseDate":1228867200000,"language":"en","type":"Movie","_key":"69499"} +{"label":"Marion Bridge","description":"Three estranged sisters reunite to care for their dying mother and old conflicts and secrets return to the surface.","id":"18941","runtime":90,"imdbId":"tt0329355","version":284,"lastModified":"1301905380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/def\/4bc95513017a3c57fe025def\/marion-bridge-mid.jpg","studio":"Idlewild Films","genre":"Drama","title":"Marion Bridge","releaseDate":1050624000000,"language":"en","type":"Movie","_key":"69500"} +{"label":"Rebecca Jenkins","version":22,"id":"113286","lastModified":"1301903035000","name":"Rebecca Jenkins","type":"Person","_key":"69501"} +{"label":"Stacey Smith","version":19,"id":"113287","lastModified":"1301902884000","name":"Stacey Smith","type":"Person","_key":"69502"} +{"label":"Hollis McLaren","version":20,"id":"113288","lastModified":"1301902949000","name":"Hollis McLaren","type":"Person","_key":"69503"} +{"label":"Emmy Alcorn","version":19,"id":"113289","lastModified":"1301902884000","name":"Emmy Alcorn","type":"Person","_key":"69504"} +{"label":"Wiebke von Carolsfeld","version":19,"id":"113290","lastModified":"1301902884000","name":"Wiebke von Carolsfeld","type":"Person","_key":"69505"} +{"label":"Nirvana: MTV Unplugged in New York","description":"MTV Unplugged in New York is a live album by the American grunge band Nirvana. It features an acoustic performance taped at Sony Music Studios in New York City on November 18, 1993 for the television series MTV Unplugged. As opposed to traditional practice on the television series, Nirvana played a setlist composed of mainly lesser-known material and cover versions of songs.","id":"18942","runtime":66,"version":32,"lastModified":"1301908274000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df8\/4bc95513017a3c57fe025df8\/nirvana-mtv-unplugged-in-new-york-mid.jpg","genre":"Music","title":"Nirvana: MTV Unplugged in New York","releaseDate":785116800000,"language":"en","type":"Movie","_key":"69506"} +{"label":"Krist Novoselic","version":21,"id":"95076","lastModified":"1301901560000","name":"Krist Novoselic","type":"Person","_key":"69507"} +{"label":"David Grohl","version":21,"id":"95077","lastModified":"1301901944000","name":"David Grohl","type":"Person","_key":"69508"} +{"label":"Lori Goldston","version":15,"id":"100428","lastModified":"1301902453000","name":"Lori Goldston","type":"Person","_key":"69509"} +{"label":"Curt Kirkwood","version":15,"id":"100430","lastModified":"1301902453000","name":"Curt Kirkwood","type":"Person","_key":"69510"} +{"label":"Cris Kirkwood","version":15,"id":"100429","lastModified":"1301902453000","name":"Cris Kirkwood","type":"Person","_key":"69511"} +{"label":"Ernest goes to Jail","description":"Bumbling Ernest P. Worrell is assigned to jury duty, where a crooked lawyer notices a resemblance with crime boss Mr. Nash, and arranges a switch. Nash assumes Ernest's job as a bank employee, while Ernest undergoes Nash's sentence to the electric chair. But instead of killing him, the electrocution gives Ernest superhuman powers, enabling him to escape from jail and foil Nash's attempt to rob...","id":"18943","runtime":81,"imdbId":"tt0099512","version":94,"lastModified":"1301902409000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f4\/4d76ad8a7b9aa15c720001f4\/ernest-goes-to-jail-mid.jpg","genre":"Comedy","title":"Ernest goes to Jail","releaseDate":639360000000,"language":"en","type":"Movie","_key":"69512"} +{"label":"Rolling Stones Rock and Roll Circus","description":"No overview found.","id":"18944","runtime":65,"imdbId":"tt0122689","version":79,"lastModified":"1301906597000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e0a\/4bc95515017a3c57fe025e0a\/rolling-stones-rock-and-roll-circus-mid.jpg","title":"Rolling Stones Rock and Roll Circus","releaseDate":820454400000,"language":"en","type":"Movie","_key":"69513"} +{"label":"Souvenir of Canada","description":"No overview found.","id":"18946","runtime":70,"imdbId":"tt0439820","version":207,"lastModified":"1301907483000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e13\/4bc95515017a3c57fe025e13\/souvenir-of-canada-mid.jpg","genre":"Documentary","title":"Souvenir of Canada","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69514"} +{"label":"The Boat That Rocked","description":"The Boat That Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that, incomprehensibly, prefers jazz.","id":"18947","runtime":129,"imdbId":"tt1131729","trailer":"http:\/\/www.youtube.com\/watch?v=qX1SSiFWF-s","homepage":"http:\/\/www.theboatthatrocked.net\/","version":161,"lastModified":"1301901475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e2f\/4bc95517017a3c57fe025e2f\/the-boat-that-rocked-mid.jpg","studio":"Working Title Films","genre":"Comedy","title":"The Boat That Rocked","releaseDate":1258070400000,"language":"en","tagline":"On air. Off shore. Out of control.","type":"Movie","_key":"69515"} +{"label":"Tom Sturridge","version":30,"id":"90451","lastModified":"1301901412000","name":"Tom Sturridge","type":"Person","_key":"69516"} +{"label":"FernGully 2: The Magical Rescue","description":"Pips wants to see more of the outside world. Batty arrives in a panic, announcing that two human poachers are right behind him. Poachers show up with their dogs and promptly capture the three baby animals. Pips and the Beetle Boys volunteer to follow the humans to town and rescue the babies, convincing Batty to be their guide.","id":"18948","runtime":75,"imdbId":"tt0129924","version":74,"lastModified":"1301906050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e38\/4bc95518017a3c57fe025e38\/ferngully-2-the-magical-rescue-mid.jpg","genre":"Animation","title":"FernGully 2: The Magical Rescue","releaseDate":890092800000,"language":"en","type":"Movie","_key":"69517"} +{"label":"Dave Marshall","version":19,"id":"84977","lastModified":"1301902324000","name":"Dave Marshall","type":"Person","_key":"69518"} +{"label":"Posledn\u00ed trik pana Schwarcewalldea a pana Edgara","description":"Two magicians, Mr.Schwarzwald and Mr.Edgar, try to outdo each other in performing elaborate magic tricks, leading to a violent ending.","id":"18949","runtime":12,"imdbId":"tt0058486","version":29,"lastModified":"1300980652000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Posledn\u00ed trik pana Schwarcewalldea a pana Edgara","releaseDate":-189388800000,"language":"en","type":"Movie","_key":"69519"} +{"label":"Hra s kameny","description":"No overview found.","id":"18950","runtime":8,"imdbId":"tt0059746","version":41,"lastModified":"1300980652000","studio":"Studio A","genre":"Animation","title":"Hra s kameny","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"69520"} +{"label":"Johann Sebastian Bach: Fantasia G-moll","description":"A man plays the Bach piece of the title on the organ, accompanied by images of stone walls with cracks and holes that grow and shrink, intercut with images of doors and wire-meshed windows.","id":"18952","runtime":10,"imdbId":"tt0059335","version":31,"lastModified":"1301908519000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Johann Sebastian Bach: Fantasia G-moll","releaseDate":-157766400000,"language":"en","type":"Movie","_key":"69521"} +{"label":"Et Cetera","description":"A small, animated figure learns how to use a whip, a pair of wings and a house.","id":"18953","runtime":8,"imdbId":"tt0060383","version":44,"lastModified":"1301908520000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Et Cetera","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"69522"} +{"label":"Rakvickarna","description":"Two puppets, Punch and Judy, do battle to the death over the custody of a live guinea pig.","id":"18954","runtime":10,"imdbId":"tt0060883","version":44,"lastModified":"1301908520000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Rakvickarna","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"69523"} +{"label":"Nad'a Munzarov\u00e1","version":20,"id":"83963","lastModified":"1301902375000","name":"Nad'a Munzarov\u00e1","type":"Person","_key":"69524"} +{"label":"Jir\u00ed Proch\u00e1zka","version":20,"id":"83964","lastModified":"1301902529000","name":"Jir\u00ed Proch\u00e1zka","type":"Person","_key":"69525"} +{"label":"Bohuslav Sr\u00e1mek","version":19,"id":"83965","lastModified":"1301902324000","name":"Bohuslav Sr\u00e1mek","type":"Person","_key":"69526"} +{"label":"Coco","description":"No overview found.","id":"18955","runtime":95,"imdbId":"tt1262877","version":235,"lastModified":"1301903886000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e66\/4bc95520017a3c57fe025e66\/coco-mid.jpg","studio":"Studio Canal","genre":"Comedy","title":"Coco","releaseDate":1248134400000,"language":"en","type":"Movie","_key":"69527"} +{"label":"Manu Payet","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/f85\/4cd1747b5e73d65022000f85\/manu-payet-profile.jpg","version":26,"id":"83967","lastModified":"1301902053000","name":"Manu Payet","type":"Person","_key":"69528"} +{"label":"Ary Abittan","version":23,"id":"83969","lastModified":"1301901580000","name":"Ary Abittan","type":"Person","_key":"69529"} +{"label":"Gladys Cohen","version":20,"id":"83970","lastModified":"1301902453000","name":"Gladys Cohen","type":"Person","_key":"69530"} +{"label":"Nicolas Jouxtel","version":20,"id":"83971","lastModified":"1301902453000","name":"Nicolas Jouxtel","type":"Person","_key":"69531"} +{"label":"L\u00e9ane Grimaud","version":20,"id":"83972","lastModified":"1301902453000","name":"L\u00e9ane Grimaud","type":"Person","_key":"69532"} +{"label":"Enrico Macias","version":20,"id":"83973","lastModified":"1301902453000","name":"Enrico Macias","type":"Person","_key":"69533"} +{"label":"Love at First Bite","description":"Dracula and Renefield relocate to 70's era New York in search of Cindy Sondheim (the reincarnation of Dracula's one true love, Mina Harker). \"Trouble adjusting\" is a wild understatement for the Count as he battles Cindy's psychiatrist, Jeffrey Rosenberg (a descendant of Van Helsing who changed his name for professional reasons?), who may almost certainly, possibly, may be in love with Cindy too.","id":"18966","runtime":96,"imdbId":"tt0079489","version":76,"lastModified":"1301906459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6f\/4bc95521017a3c57fe025e6f\/love-at-first-bite-mid.jpg","studio":"Melvin Simon Productions","genre":"Comedy","title":"Love at First Bite","releaseDate":294019200000,"language":"en","type":"Movie","_key":"69534"} +{"label":"Susan Saint James","version":21,"id":"83974","lastModified":"1301902324000","name":"Susan Saint James","type":"Person","_key":"69535"} +{"label":"Sherman Hemsley","version":24,"id":"83976","lastModified":"1301902675000","name":"Sherman Hemsley","type":"Person","_key":"69536"} +{"label":"Pearl Jam- Immagine in Cornice","description":"Concert Film Chronicling Five Dynamic Pearl Jam Shows in Italy From September 2006. Shot In Hi-Def By Noted Photographer Danny Clinch, DVD Gives An Intimate Look At Pearl Jam's Amazing Live Performances And Behind-The-Scenes Footage From The Tour. Concerts were shot partially in hi-def in Bologna, Verona, Milan, Torino, and Pistoia, Italy in September 2006. DVD captures Pearl Jam's phenomenal live performances, as well as exclusive behind-the scenes footage of the band on tour.Directed by renown","id":"18968","runtime":92,"imdbId":"tt1169158","version":51,"lastModified":"1301908625000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e74\/4bc95521017a3c57fe025e74\/pearl-jam-immagine-in-cornice-mid.jpg","genre":"Musical","title":"Pearl Jam- Immagine in Cornice","releaseDate":1190678400000,"language":"en","type":"Movie","_key":"69537"} +{"label":"Eddie Vedder","version":31,"id":"46590","lastModified":"1302063844000","name":"Eddie Vedder","type":"Person","_key":"69538"} +{"label":"Mike McCready","version":25,"id":"83979","lastModified":"1301902530000","name":"Mike McCready","type":"Person","_key":"69539"} +{"label":"Stone Gossard","version":25,"id":"83980","lastModified":"1301902362000","name":"Stone Gossard","type":"Person","_key":"69540"} +{"label":"Jeff Ament","version":25,"id":"83981","lastModified":"1301902694000","name":"Jeff Ament","type":"Person","_key":"69541"} +{"label":"Matt Cameron","version":25,"id":"83982","lastModified":"1301902694000","name":"Matt Cameron","type":"Person","_key":"69542"} +{"label":"Demon Hunter","description":"After resolving a situation of exorcism, the half-breed demon hunter Jake Greyman (Sean Patrick Flanery) reports to Cardinal White (William Bassett) and they realize that the demon Asmodeus (Billy Drago) is impregnating many mortals trying to raise offspring. Cardinal White calls Sister Sarah Ryan (Colleen Porch) to assist Jake in his hunting for Asmodeus and his women.","id":"18969","runtime":78,"imdbId":"tt0435631","version":103,"lastModified":"1301420285000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e7d\/4bc95521017a3c57fe025e7d\/demon-hunter-mid.jpg","genre":"Horror","title":"Demon Hunter","releaseDate":1117584000000,"language":"en","type":"Movie","_key":"69543"} +{"label":"Colleen Porch","version":20,"id":"83983","lastModified":"1301902501000","name":"Colleen Porch","type":"Person","_key":"69544"} +{"label":"Tania Deighton","version":20,"id":"83984","lastModified":"1301902173000","name":"Tania Deighton","type":"Person","_key":"69545"} +{"label":"Bam Margera Presents: Where the Fuck Is Santa?","description":"In the midst of a trip to Finland to find the perfect Christmas gift for his wife, Missy, skateboarding superstar MTV personality Bam Margera is struck by inspiration to find the elusive Santa clause.","id":"18970","runtime":90,"imdbId":"tt1291051","version":41,"lastModified":"1301906157000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e82\/4bc95522017a3c57fe025e82\/bam-margera-presents-where-the-fuck-is-santa-mid.jpg","genre":"Comedy","title":"Bam Margera Presents: Where the Fuck Is Santa?","releaseDate":1228176000000,"language":"en","type":"Movie","_key":"69546"} +{"label":"Rosencrantz and Guildenstern Are Dead","description":"Two minor characters from the play, \"Hamlet\" stumble around unaware of their scripted lives and unable to deviate from them.","id":"18971","runtime":117,"imdbId":"tt0100519","version":179,"lastModified":"1301903245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/256\/4c801af15e73d648dd000256\/rosencrantz-and-guildenstern-are-dead-mid.jpg","studio":"Brandenberg","genre":"Comedy","title":"Rosencrantz and Guildenstern Are Dead","releaseDate":665971200000,"language":"en","type":"Movie","_key":"69547"} +{"label":"Tom Stoppard","version":40,"id":"372","lastModified":"1300031819000","name":"Tom Stoppard","type":"Person","_key":"69548"} +{"label":"Livio Badurina","version":17,"id":"134249","lastModified":"1301902897000","name":"Livio Badurina","type":"Person","_key":"69549"} +{"label":"Tomislav Maretic","version":19,"id":"134250","lastModified":"1301903001000","name":"Tomislav Maretic","type":"Person","_key":"69550"} +{"label":"Mare Mlacnik","version":17,"id":"134251","lastModified":"1301902738000","name":"Mare Mlacnik","type":"Person","_key":"69551"} +{"label":"The Undefeated","description":"The Civil War is over, and Colonel John Henry Thomas (John Wayne) of the Union Army is bound for Mexico to trade horses; his opponent, Confederate Colonel James Langdon (Rock Hudson), is also heading south to help build a new settlement. When a Mexican general threatens their safety, the two join forces in spite of their original alliances.","id":"18972","runtime":119,"imdbId":"tt0065150","version":114,"lastModified":"1301905402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9e\/4bc95528017a3c57fe025e9e\/the-undefeated-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"The Undefeated","releaseDate":-7689600000,"language":"en","type":"Movie","_key":"69552"} +{"label":"Cinderfella","description":"No overview found.","id":"18973","runtime":0,"imdbId":"tt0053716","version":162,"lastModified":"1301415935000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/eab\/4bc95529017a3c57fe025eab\/cinderfella-mid.jpg","genre":"Romance","title":"Cinderfella","releaseDate":-285206400000,"language":"en","type":"Movie","_key":"69553"} +{"label":"The 3 Worlds of Gulliver","description":"No overview found.","id":"18974","runtime":100,"imdbId":"tt0053882","version":141,"lastModified":"1301928368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/290\/4c991a037b9aa12337000290\/the-3-worlds-of-gulliver-mid.jpg","genre":"Action","title":"The 3 Worlds of Gulliver","releaseDate":-285379200000,"language":"en","type":"Movie","_key":"69554"} +{"label":"The Adventures of Pinocchio","description":"One of puppet-maker Geppetto's creations comes magically to life. This puppet, Pinocchio, has one major desire and that is to become a real boy someday. In order to accomplish this goal he has to learn to act responsibly. This film shows you the adventures on which he learns valuable lessons.","id":"18975","runtime":90,"imdbId":"tt0115472","version":195,"lastModified":"1301906263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c7\/4d23e4387b9aa13f870001c7\/the-adventures-of-pinocchio-mid.jpg","genre":"Family","title":"The Adventures of Pinocchio","releaseDate":820454400000,"language":"en","type":"Movie","_key":"69555"} +{"label":"Attila","description":"A romanced story of Attila the Hun, since his childhood, when he lost his parents until his death. Attila is disclosed as a great leader, strategist and lover and the movie shows his respect to the great Roman strategist Flavius Aetius, his loves and passions, the gossips, intrigues and betrayals in Rome, all of these feelings evolved by magic and mysticism.","id":"18976","runtime":177,"imdbId":"tt0259127","version":197,"lastModified":"1301927877000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ec0\/4bc9552a017a3c57fe025ec0\/attila-mid.jpg","studio":"Alphaville Films","genre":"Action","title":"Attila","releaseDate":980812800000,"language":"en","type":"Movie","_key":"69556"} +{"label":"The Boy and the Pirates","description":"No overview found.","id":"18977","runtime":82,"imdbId":"tt0053672","version":304,"lastModified":"1302018595000","genre":"Family","title":"The Boy and the Pirates","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69557"} +{"label":"Camelot","description":"King Arthur establishes the ideals and laws of Camelot but is tragically forced to enforce these laws against his own wife. ","id":"18978","runtime":179,"imdbId":"tt0061439","version":165,"lastModified":"1301905279000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ecd\/4bc9552b017a3c57fe025ecd\/camelot-mid.jpg","genre":"Musical","title":"Camelot","releaseDate":-69033600000,"language":"en","type":"Movie","_key":"69558"} +{"label":"Captain Kronos: Vampire Hunter","description":"No overview found.","id":"18979","runtime":91,"imdbId":"tt0071276","version":147,"lastModified":"1301907245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed6\/4bc9552b017a3c57fe025ed6\/captain-kronos-vampire-hunter-mid.jpg","studio":"Hammer Film Productions","genre":"Action","title":"Captain Kronos: Vampire Hunter","releaseDate":134524800000,"language":"en","type":"Movie","_key":"69559"} +{"label":"Brian Clemens","version":26,"id":"26128","lastModified":"1301901687000","name":"Brian Clemens","type":"Person","_key":"69560"} +{"label":"Horst Janson","version":20,"id":"100095","lastModified":"1301902209000","name":"Horst Janson","type":"Person","_key":"69561"} +{"label":"John Carson","version":16,"id":"100097","lastModified":"1301902629000","name":"John Carson","type":"Person","_key":"69562"} +{"label":"Lois Daine","biography":"Mother of actor Aran Bell, who was born prematurely, weighing just 3lb 13oz. Her pregnancy prevented her from taking the lead part with her real-life husband Tom Bell in a BBC television play, Cottage For Sale.","version":18,"birthday":"60735600000","id":"100098","birthplace":"Bolton, Lancashire, England, UK ","lastModified":"1301902313000","name":"Lois Daine","type":"Person","_key":"69563"} +{"label":"Wanda Ventham","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14b\/4ceeb0435e73d6531300014b\/wanda-ventham-profile.jpg","version":20,"id":"100099","lastModified":"1301902212000","name":"Wanda Ventham","type":"Person","_key":"69564"} +{"label":"William Hobbs","version":16,"id":"100100","lastModified":"1301902629000","name":"William Hobbs","type":"Person","_key":"69565"} +{"label":"Brian Tully","version":16,"id":"100101","lastModified":"1301902453000","name":"Brian Tully","type":"Person","_key":"69566"} +{"label":"Lisa Collings","version":17,"id":"100102","lastModified":"1301902629000","name":"Lisa Collings","type":"Person","_key":"69567"} +{"label":"Olga Anthony","version":17,"id":"100103","lastModified":"1301902629000","name":"Olga Anthony","type":"Person","_key":"69568"} +{"label":"The Christmas Stallion","description":"No overview found.","id":"18980","runtime":0,"imdbId":"tt0103960","version":601,"lastModified":"1301416944000","title":"The Christmas Stallion","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69569"} +{"label":"The Wiggles: Here Comes The Big Red Car","description":"No overview found.","id":"18981","runtime":72,"version":79,"lastModified":"1301953418000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee3\/4bc9552d017a3c57fe025ee3\/the-wiggles-here-comes-the-big-red-car-mid.jpg","title":"The Wiggles: Here Comes The Big Red Car","releaseDate":1191888000000,"language":"en","type":"Movie","_key":"69570"} +{"label":"Godzilla, King of the Monsters!","description":"No overview found.","id":"18983","runtime":80,"imdbId":"tt0197521","version":120,"lastModified":"1301953229000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ef0\/4bc9552d017a3c57fe025ef0\/godzilla-king-of-the-monsters-mid.jpg","studio":"Toho Company","genre":"Science Fiction","title":"Godzilla, King of the Monsters!","releaseDate":-431740800000,"language":"en","type":"Movie","_key":"69571"} +{"label":"Scratch","description":"A feature-length documentary film about hip-hop DJing, otherwise known as turntablism. From the South Bronx in the 1970s to San Francisco now, the world's best scratchers, beat-diggers, party-rockers, and producers wax poetic on beats, breaks, battles, and the infinite possibilities of vinyl.","id":"18984","runtime":92,"imdbId":"tt0143861","version":157,"lastModified":"1301927082000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f0d\/4bc9552f017a3c57fe025f0d\/scratch-mid.jpg","genre":"Documentary","title":"Scratch","releaseDate":1005091200000,"language":"en","type":"Movie","_key":"69572"} +{"label":"Green Grass of Wyoming","description":"No overview found.","id":"18985","runtime":89,"imdbId":"tt0040402","version":40,"lastModified":"1301908580000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f16\/4bc9552f017a3c57fe025f16\/green-grass-of-wyoming-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","title":"Green Grass of Wyoming","releaseDate":-681004800000,"language":"en","type":"Movie","_key":"69573"} +{"label":"Geraldine Wall","version":24,"birthday":"-1815267600000","id":"105462","birthplace":"Chicago, Illinois, USA","lastModified":"1301902356000","name":"Geraldine Wall","type":"Person","_key":"69574"} +{"label":"H.G. Wells' The War of the Worlds","description":"No overview found.","id":"18986","runtime":0,"imdbId":"tt0880456","version":190,"lastModified":"1301952772000","title":"H.G. Wells' The War of the Worlds","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69575"} +{"label":"The Hunchback of Notre Dame","description":"Hunchback's story revolves around a beautiful gypsy dancer, Esmeralda (Patsy Ruth Miller) and the men in the life. Esmeralda's possessive guardian is Clopin, King of the Beggars (Ernest Torrence). He is willing to barter her to advance his interests and those of his impoverished followers. She loves and is loved in turn by Phoebus de Chateaupers (Norman Kerry) a cavalier of King Louis XI (Tully Marshall). Esmeralda is also the obsessive object of Jehan (Brandon Hurst) the villainous brother o","id":"18987","runtime":95,"imdbId":"tt0014142","version":379,"lastModified":"1302104038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f27\/4bc95534017a3c57fe025f27\/notre-dame-de-paris-mid.jpg","genre":"Drama","title":"The Hunchback of Notre Dame","releaseDate":-1483228800000,"language":"en","type":"Movie","_key":"69576"} +{"label":"Wallace Worsley","version":22,"id":"98019","lastModified":"1301902494000","name":"Wallace Worsley","type":"Person","_key":"69577"} +{"label":"Patsy Ruth Miller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/23e\/4c604e187b9aa172d900023e\/patsy-ruth-miller-profile.jpg","version":19,"id":"98031","lastModified":"1301901855000","name":"Patsy Ruth Miller","type":"Person","_key":"69578"} +{"label":"Kate Lester","version":18,"id":"98032","lastModified":"1301902295000","name":"Kate Lester","type":"Person","_key":"69579"} +{"label":"Winifred Bryson","version":18,"id":"98033","lastModified":"1301902469000","name":"Winifred Bryson","type":"Person","_key":"69580"} +{"label":"Ernest Torrence","version":22,"id":"98034","lastModified":"1301902493000","name":"Ernest Torrence","type":"Person","_key":"69581"} +{"label":"Harry von Meter","version":18,"id":"98035","lastModified":"1301902295000","name":"Harry von Meter","type":"Person","_key":"69582"} +{"label":"Raymond Hatton","version":26,"id":"90333","lastModified":"1301902321000","name":"Raymond Hatton","type":"Person","_key":"69583"} +{"label":"Nick De Ruiz","version":20,"id":"97998","lastModified":"1301902719000","name":"Nick De Ruiz","type":"Person","_key":"69584"} +{"label":"Eulalie Jensen","version":18,"id":"98036","lastModified":"1301902638000","name":"Eulalie Jensen","type":"Person","_key":"69585"} +{"label":"Roy Laidlaw","version":19,"id":"98037","lastModified":"1301902667000","name":"Roy Laidlaw","type":"Person","_key":"69586"} +{"label":"Ray Myers","version":18,"id":"98038","lastModified":"1301902638000","name":"Ray Myers","type":"Person","_key":"69587"} +{"label":"William Parke","version":19,"id":"98039","lastModified":"1301902712000","name":"William Parke","type":"Person","_key":"69588"} +{"label":"Gladys Brockwell","version":18,"id":"98040","lastModified":"1301902638000","name":"Gladys Brockwell","type":"Person","_key":"69589"} +{"label":"John Cossar","version":18,"id":"98041","lastModified":"1301902638000","name":"John Cossar","type":"Person","_key":"69590"} +{"label":"Edwin Wallock","version":19,"id":"98042","lastModified":"1301902667000","name":"Edwin Wallock","type":"Person","_key":"69591"} +{"label":"The Lion in Winter","description":"1183 AD: King Henry II's three sons all want to inherit the throne, but he won't commit to a choice. They and his wife variously plot to force him.","id":"18988","runtime":134,"imdbId":"tt0063227","version":214,"lastModified":"1301952339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cc2\/4d8d03415e73d653ce001cc2\/the-lion-in-winter-mid.jpg","genre":"Drama","title":"The Lion in Winter","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"69592"} +{"label":"Anthony Harvey","version":25,"id":"12009","lastModified":"1301901485000","name":"Anthony Harvey","type":"Person","_key":"69593"} +{"label":"Jane Merrow","version":19,"id":"102858","lastModified":"1301902528000","name":"Jane Merrow","type":"Person","_key":"69594"} +{"label":"Kenneth Ives","version":20,"id":"143394","lastModified":"1301904088000","name":"Kenneth Ives","type":"Person","_key":"69595"} +{"label":"Moll Flanders","description":"The daughter of a thief, young Moll is placed in the care of a nunnery after the execution of her mother. However, the actions of an abusive priest lead Moll to rebel as a teenager, escaping to the dangerous streets of London. Further misfortunes drive her to accept a job as a prostitute from the conniving Mrs. Allworthy. It is there that Moll first meets Hibble, who is working as Allworthy's servant but takes a special interest in the young woman's well-being. With his help, she retains hope fo","id":"18989","runtime":123,"imdbId":"tt0117071","version":311,"lastModified":"1301972351000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f45\/4bc95536017a3c57fe025f45\/moll-flanders-mid.jpg","genre":"Drama","title":"Moll Flanders","releaseDate":820454400000,"language":"en","type":"Movie","_key":"69596"} +{"label":"Pen Densham","version":21,"id":"2182","lastModified":"1299494029000","name":"Pen Densham","type":"Person","_key":"69597"} +{"label":"The Mummy","description":"No overview found.","id":"18990","runtime":88,"imdbId":"tt0053085","version":114,"lastModified":"1301904609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f4e\/4bc95536017a3c57fe025f4e\/the-mummy-mid.jpg","genre":"Horror","title":"The Mummy","releaseDate":-347155200000,"language":"en","type":"Movie","_key":"69598"} +{"label":"My Friend Flicka","description":"No overview found.","id":"18992","runtime":89,"imdbId":"tt0036182","version":175,"lastModified":"1301907989000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/569\/4d1f70727b9aa17375001569\/my-friend-flicka-mid.jpg","genre":"Action","title":"My Friend Flicka","releaseDate":-852076800000,"language":"en","type":"Movie","_key":"69599"} +{"label":"Harold D. Schuster","version":20,"id":"9082","lastModified":"1301901488000","name":"Harold D. Schuster","type":"Person","_key":"69600"} +{"label":"Rita Johnson","version":27,"id":"85358","lastModified":"1301902045000","name":"Rita Johnson","type":"Person","_key":"69601"} +{"label":"James Bell","version":44,"id":"84935","lastModified":"1301902405000","name":"James Bell","type":"Person","_key":"69602"} +{"label":"Patti Hale","version":17,"id":"133207","lastModified":"1301902997000","name":"Patti Hale","type":"Person","_key":"69603"} +{"label":"Mysterious Island","description":"During the US Civil War, Union POWs escape in a balloon and end up stranded on a South Pacific island, inhabited by giant plants and animals. They must use their ingenuity to survive the dangers, and to devise a way to return home. Sequel to '20,000 Leagues Under the Sea' .","id":"18993","runtime":101,"imdbId":"tt0055207","trailer":"http:\/\/www.youtube.com\/watch?v=OkOwlPYMcKQ","version":197,"lastModified":"1301951495000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f5b\/4bc95537017a3c57fe025f5b\/mysterious-island-mid.jpg","genre":"Action","title":"Mysterious Island","releaseDate":-283996800000,"language":"en","tagline":"A world beyond imagination! Adventure beyond belief!","type":"Movie","_key":"69604"} +{"label":"Beth Rogan","version":22,"id":"119587","lastModified":"1301902703000","name":"Beth Rogan","type":"Person","_key":"69605"} +{"label":"Dan Jackson","version":22,"id":"119588","lastModified":"1301903031000","name":"Dan Jackson","type":"Person","_key":"69606"} +{"label":"Tarzan and His Mate","description":"Harry Holt returns to Africa to head up a large ivory expedition. This time he brings his womanizing friend Marlin Arlington. Holt also harbors ideas about convincing Jane to return to London. When Holt and Arlington show Jane some of the modern clothes and perfumes they brought from civilization, she is impressed but not enough to return.","id":"18994","runtime":104,"imdbId":"tt0025862","version":59,"lastModified":"1301924322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f68\/4bc95538017a3c57fe025f68\/tarzan-and-his-mate-mid.jpg","genre":"Adventure","title":"Tarzan and His Mate","releaseDate":-1126656000000,"language":"en","type":"Movie","_key":"69607"} +{"label":"Johnny Weissmuller","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/002\/4c6970897b9aa138e6000002\/johnny-weissmuller-profile.jpg","version":29,"id":"94936","lastModified":"1302077712000","name":"Johnny Weissmuller","type":"Person","_key":"69608"} +{"label":"Nathan Curry","version":12,"id":"223294","lastModified":"1301903636000","name":"Nathan Curry","type":"Person","_key":"69609"} +{"label":"Cedric Gibbons","version":71,"id":"9062","lastModified":"1301996336000","name":"Cedric Gibbons","type":"Person","_key":"69610"} +{"label":"D.O.A.","description":"Frank Bigelow, told he's been poisoned and has only a few days to live, tries to find out who killed him and why.","id":"18995","runtime":83,"imdbId":"tt0042369","version":139,"lastModified":"1301951085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f71\/4bc95539017a3c57fe025f71\/d-o-a-mid.jpg","studio":"Cardinal Pictures","genre":"Crime","title":"D.O.A.","releaseDate":-620870400000,"language":"en","type":"Movie","_key":"69611"} +{"label":"Beverly Garland","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/103\/4bd846fa017a3c1c09000103\/beverly-garland-profile.jpg","version":38,"id":"83987","lastModified":"1301901596000","name":"Beverly Garland","type":"Person","_key":"69612"} +{"label":"Lynn Baggett","version":22,"id":"83988","lastModified":"1301902703000","name":"Lynn Baggett","type":"Person","_key":"69613"} +{"label":"Henry Hart","version":20,"id":"83989","lastModified":"1301902704000","name":"Henry Hart","type":"Person","_key":"69614"} +{"label":"Laurette Luez","version":20,"id":"83990","lastModified":"1301902563000","name":"Laurette Luez","type":"Person","_key":"69615"} +{"label":"Jess Kirkpatrick","version":21,"id":"83991","lastModified":"1301902675000","name":"Jess Kirkpatrick","type":"Person","_key":"69616"} +{"label":"Cay Forrester","version":24,"id":"83992","lastModified":"1302185406000","name":"Cay Forrester","type":"Person","_key":"69617"} +{"label":"Frank Jaquet","version":26,"id":"83993","lastModified":"1301902675000","name":"Frank Jaquet","type":"Person","_key":"69618"} +{"label":"Frank Gerstle","version":25,"id":"83994","lastModified":"1301901946000","name":"Frank Gerstle","type":"Person","_key":"69619"} +{"label":"Brian Regan: I Walked on the Moon","description":"Brian Regan's second stand-up comedy DVD. Performed at the Irvine Improv Comedy Club in Irvine, California.","id":"18996","runtime":55,"imdbId":"tt0808179","version":65,"lastModified":"1301906617000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/725\/4cd9eefd7b9aa11b22000725\/brian-regan-i-walked-on-the-moon-mid.jpg","genre":"Comedy","title":"Brian Regan: I Walked on the Moon","releaseDate":1101859200000,"language":"en","type":"Movie","_key":"69620"} +{"label":"Brian Regan","version":21,"id":"83995","lastModified":"1301902501000","name":"Brian Regan","type":"Person","_key":"69621"} +{"label":"John Brenkus","version":19,"id":"84972","lastModified":"1301902675000","name":"John Brenkus","type":"Person","_key":"69622"} +{"label":"Half-Life: Escape from City-17","description":"The film is set during the events of Half-Life 2: Episode One. Isaac Kleiner is making his \"Kleinercasts\" on City 17's PA system, warning that the Citadel is set to explode at any moment, destroying much of the surrounding area. Members of the Resistance are fighting their way out of the city as Civil Protection holds them back.","id":"18997","runtime":6,"trailer":"http:\/\/www.youtube.com\/watch?v=2221","version":29,"lastModified":"1301416567000","genre":"Science Fiction","title":"Half-Life: Escape from City-17","releaseDate":1234483200000,"language":"en","type":"Movie","_key":"69623"} +{"label":"Darkman II: The Return of Durant","description":"Darkman and Durant return and they hate each other as much as ever. This time, Durant has plans to take over the city's drug trade using high-tech weaponry. Darkman must step in and try to stop Durant once and for all.","id":"18998","runtime":93,"imdbId":"tt0109552","version":132,"lastModified":"1301905182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f8c\/4bc9553f017a3c57fe025f8c\/darkman-ii-the-return-of-durant-mid.jpg","genre":"Action","title":"Darkman II: The Return of Durant","releaseDate":805420800000,"language":"en","type":"Movie","_key":"69624"} +{"label":"Bradford May","version":26,"id":"83996","lastModified":"1301901651000","name":"Bradford May","type":"Person","_key":"69625"} +{"label":"Historia Naturae, Suita","description":"A eight-part animatied portrait of various species, accompanied by a different style of music - the various parts are: Aquatilia (foxtrot), Hexapoda (bolero), Pisces (blues), Reptilia (tarantella), Aves (tango), Mammalia (minuet), Simiae (polka) and Homo (waltz). Each animation mixes drawings, pictures, real animals and animated skeletons.","id":"19001","runtime":9,"imdbId":"tt0061766","version":31,"lastModified":"1301908522000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Historia Naturae, Suita","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"69626"} +{"label":"Darkman III: Die Darkman Die","description":"Darkman, needing money to continue his experiments on synthetic skin, steals a crate of cash from drug lord Peter Rooker...","id":"19002","runtime":87,"imdbId":"tt0116033","version":135,"lastModified":"1301904976000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f99\/4bc95540017a3c57fe025f99\/darkman-iii-die-darkman-die-mid.jpg","title":"Darkman III: Die Darkman Die","releaseDate":840499200000,"language":"en","tagline":"One fights for justice. The other for power. Only one can survive.","type":"Movie","_key":"69627"} +{"label":"Alicia Panetta","version":21,"id":"125542","lastModified":"1301902904000","name":"Alicia Panetta","type":"Person","_key":"69628"} +{"label":"The Mars Underground","description":"No overview found.","id":"19003","runtime":84,"imdbId":"tt0437325","version":57,"lastModified":"1301922363000","title":"The Mars Underground","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"69629"} +{"label":"The Land Before Time III: The Time of the Great Giving","description":"No overview found.","id":"19004","runtime":71,"imdbId":"tt0113596","version":90,"lastModified":"1301922129000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fa2\/4bc95540017a3c57fe025fa2\/the-land-before-time-iii-the-time-of-the-great-giving-mid.jpg","genre":"Family","title":"The Land Before Time III: The Time of the Great Giving","releaseDate":818985600000,"language":"en","type":"Movie","_key":"69630"} +{"label":"Byt","description":"A nondescript man is trapped in a sinister flat, where nothing seems to obey the laws of nature.","id":"19006","runtime":13,"imdbId":"tt0062770","version":47,"lastModified":"1301418866000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/edc\/4d839a777b9aa14454000edc\/byt-mid.jpg","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Byt","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"69631"} +{"label":"Ivan Kraus","version":21,"id":"83997","lastModified":"1301902182000","name":"Ivan Kraus","type":"Person","_key":"69632"} +{"label":"Z\u00e1hrada","description":"No overview found.","id":"19008","runtime":99,"imdbId":"tt0115040","version":27,"lastModified":"1300980659000","genre":"Comedy","title":"Z\u00e1hrada","releaseDate":802656000000,"language":"en","type":"Movie","_key":"69633"} +{"label":"Zahrada","description":"Frank visits his friend Josef, who introduces him to his pedigree rabbits and his wife Mary. Frank is more interested in the slightly unsettling fact that Josef and Mary's garden fence is entirely made up of living people holding hands. Finally, Frank asks Josef how he manages to keep the fence together..","id":"19009","runtime":17,"imdbId":"tt0063833","version":59,"lastModified":"1301908313000","studio":"Kr\u00e1tk\u00fd Film Praha","title":"Zahrada","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"69634"} +{"label":"Jir\u00ed H\u00e1lek","version":19,"id":"83999","lastModified":"1301902675000","name":"Jir\u00ed H\u00e1lek","type":"Person","_key":"69635"} +{"label":"Ludek Kopriva","version":19,"id":"84000","lastModified":"1301902675000","name":"Ludek Kopriva","type":"Person","_key":"69636"} +{"label":"V\u00e1clav Borovicka","version":20,"id":"84001","lastModified":"1301902675000","name":"V\u00e1clav Borovicka","type":"Person","_key":"69637"} +{"label":"Frantisek Hus\u00e1k","version":19,"id":"84002","lastModified":"1301902675000","name":"Frantisek Hus\u00e1k","type":"Person","_key":"69638"} +{"label":"Deep Evil","description":"An alien microbe lands in remote Siberia in the 1950's. In the year 2004, US scientist working at a top secret underground lab in Alaska clone the microbe. A garbled distress signal is heard from the lab just before a complete lock down of the facility. This is the last word sent out from the scientists. A team of scientists and military personnel are in charge of finding out what went wrong.","id":"19010","runtime":90,"imdbId":"tt0389912","version":141,"lastModified":"1301921026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fab\/4bc95542017a3c57fe025fab\/deep-evil-mid.jpg","genre":"Science Fiction","title":"Deep Evil","releaseDate":1088121600000,"language":"en","type":"Movie","_key":"69639"} +{"label":"Pat Williams","version":16,"id":"106964","lastModified":"1301902884000","name":"Pat Williams","type":"Person","_key":"69640"} +{"label":"Picknick mit Weissmann","description":"In one of Jan Svankmajer's many mind-blowing, deliberately weird short films, a picnic consists of a suit sunbathing, a phonograph playing records, a shovel digging holes, and a camera taking pictures.","id":"19011","runtime":13,"imdbId":"tt0063427","version":47,"lastModified":"1300980659000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/943\/4d88e2657b9aa1036b000943\/picknick-mit-weissmann-mid.jpg","studio":"Studio A","genre":"Animation","title":"Picknick mit Weissmann","releaseDate":-63158400000,"language":"en","type":"Movie","_key":"69641"} +{"label":"Thomas & Friends: Calling All Engines!","description":"No overview found.","id":"19012","runtime":150,"imdbId":"tt1286514","version":75,"lastModified":"1301907393000","title":"Thomas & Friends: Calling All Engines!","releaseDate":1125964800000,"language":"en","type":"Movie","_key":"69642"} +{"label":"Tich\u00fd t\u00fdden v dom\u011b","description":"A man, apparently on the run, takes shelter in a dilapidated house. Every day, he drills a hole through a wall and looks into one of the rooms, each time seeing a different surreal vision...","id":"19013","runtime":20,"imdbId":"tt0065101","version":35,"lastModified":"1301908278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90c\/4d88df807b9aa1036b00090c\/tich-t-den-v-dom-mid.jpg","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Tich\u00fd t\u00fdden v dom\u011b","releaseDate":-31536000000,"language":"en","type":"Movie","_key":"69643"} +{"label":"Rustlers' Rhapsody","description":"While the audience watches a black and white horse opera, a narrator's voice wonders what such a movie would be like today. Rex O'Herlehan, The Singing Cowboy, finds himself in color and enters a cliche ridden town, in which the evil cattle baron (Andy Griffith) and the new Italian cowboys (who always wear raincoats no matter how hot it gets) join forces to get him and the sheep ranchers to leave.","id":"19014","runtime":88,"imdbId":"tt0089945","version":121,"lastModified":"1301908392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fc0\/4bc95543017a3c57fe025fc0\/rustlers-rhapsody-mid.jpg","genre":"Action","title":"Rustlers' Rhapsody","releaseDate":484531200000,"language":"en","type":"Movie","_key":"69644"} +{"label":"Clifford's Really Big Movie","description":"Clifford overhears Mr. Bleakman say that feeding him must cost a lot of money. A carnival act called \"Larry's Amazing Animals\" has just been in town, and the animals in the show told Clifford about an animal contest with a prize of a lifetime supply of Tummy Yummies. So he decides to run away along with Cleo and T-Bone, join the carnival act, win the contest, and bring the food back.","id":"19016","runtime":73,"imdbId":"tt0398872","version":154,"lastModified":"1301905775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fce\/4bc95543017a3c57fe025fce\/clifford-s-really-big-movie-mid.jpg","genre":"Adventure","title":"Clifford's Really Big Movie","releaseDate":1082678400000,"language":"en","tagline":"Get ready for Clifford's Biggest, Reddest, Most Amazing Movie!","type":"Movie","_key":"69645"} +{"label":"Dirty Mary Crazy Larry","description":"Two lovers, Mary and Larry, in their Dodge Charger are chased by the police after robbing a grocery store.","id":"19017","runtime":93,"imdbId":"tt0071424","trailer":"http:\/\/www.youtube.com\/watch?v=1267","version":150,"lastModified":"1301995822000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe6\/4bc95545017a3c57fe025fe6\/dirty-mary-crazy-larry-mid.jpg","genre":"Action","title":"Dirty Mary Crazy Larry","releaseDate":126230400000,"language":"en","type":"Movie","_key":"69646"} +{"label":"Eugene Daniels","version":17,"id":"141395","lastModified":"1301995822000","name":"Eugene Daniels","type":"Person","_key":"69647"} +{"label":"Janear Hines","version":17,"id":"141396","lastModified":"1301995822000","name":"Janear Hines","type":"Person","_key":"69648"} +{"label":"Elizabeth James","version":17,"id":"141397","lastModified":"1301995822000","name":"Elizabeth James","type":"Person","_key":"69649"} +{"label":"Adrianne Herman","version":17,"id":"141398","lastModified":"1301995822000","name":"Adrianne Herman","type":"Person","_key":"69650"} +{"label":"T.J. Castronova","version":17,"id":"141399","lastModified":"1301995822000","name":"T.J. Castronova","type":"Person","_key":"69651"} +{"label":"James W. Gavin","version":17,"id":"141400","lastModified":"1301995822000","name":"James W. Gavin","type":"Person","_key":"69652"} +{"label":"Al Rossi","version":17,"id":"141401","lastModified":"1301995822000","name":"Al Rossi","type":"Person","_key":"69653"} +{"label":"Ben Niems","version":17,"id":"141402","lastModified":"1301995822000","name":"Ben Niems","type":"Person","_key":"69654"} +{"label":"George Westcott","version":17,"id":"141403","lastModified":"1301995822000","name":"George Westcott","type":"Person","_key":"69655"} +{"label":"Tom O'Neill","version":17,"id":"141404","lastModified":"1301995822000","name":"Tom O'Neill","type":"Person","_key":"69656"} +{"label":"Care Bears: Big Wish Movie","description":"Feeling sad that her fellow Care Bears don't seem to appreciate her wishes, Wish Bear uses her wish star, Twinkers, to find some bears who love wishing as much as she does. That's when three new bears move to Care-a-lot...with some very unexpected results.","id":"19018","runtime":75,"imdbId":"tt0472221","version":81,"lastModified":"1301947135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ff9\/4bc9554b017a3c57fe025ff9\/care-bears-big-wish-movie-mid.png","genre":"Family","title":"Care Bears: Big Wish Movie","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"69657"} +{"label":"Don Sanche","description":"The age-old story of Don Juan, played by giant puppets.","id":"19019","runtime":30,"imdbId":"tt0065654","version":38,"lastModified":"1301907164000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Don Sanche","releaseDate":55123200000,"language":"en","type":"Movie","_key":"69658"} +{"label":"Kostnice","description":"A non-narrative voyage round Sedlec Ossuary, which has been constructed from over 50,000 human skeletons (victims of the Black Death).","id":"19020","runtime":10,"imdbId":"tt0065947","version":44,"lastModified":"1301908521000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Kostnice","releaseDate":773020800000,"language":"en","type":"Movie","_key":"69659"} +{"label":"\u017dvahlav aneb \u0160ati\u010dky Slam\u011bn\u00e9ho Huberta","description":"Lewis Carroll's poem is read and followed by a free-form animated depiction of images and toys from childhood, repeatedly overturned by a live cat.","id":"19021","runtime":14,"imdbId":"tt0067259","version":33,"lastModified":"1301908521000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"\u017dvahlav aneb \u0160ati\u010dky Slam\u011bn\u00e9ho Huberta","releaseDate":31536000000,"language":"en","type":"Movie","_key":"69660"} +{"label":"Bhool Bhulaiyaa","description":"From racy America to his hometown in the interiors of India, it was a long journey indeed for Siddharth (Shiney Ahuja). But nothing could match the mind-boggling journey that now lay in front of him. For it was a journey into an astounding maze in which each step meant mystery, discovery, surprise, shock and revelation.","id":"19025","runtime":151,"imdbId":"tt0995031","homepage":"http:\/\/bhoolbhulaiyaa.erosentertainment.com\/","version":89,"lastModified":"1301946122000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00f\/4bc9554d017a3c57fe02600f\/bhool-bhulaiyaa-mid.jpg","studio":"Eros Entertainment","genre":"Comedy","title":"Bhool Bhulaiyaa","releaseDate":1192147200000,"language":"en","type":"Movie","_key":"69661"} +{"label":"Azur et Asmar","description":"Il y a bien longtemps, deux enfants \u00e9taient berc\u00e9s par la m\u00eame femme. Azur, blond aux yeux bleus, fils du ch\u00e2telain, et Asmar, brun aux yeux noirs, fils de la nourrice. Elev\u00e9s comme deux fr\u00e8res, les enfants sont s\u00e9par\u00e9s brutalement.\r\nMais Azur, marqu\u00e9 par la l\u00e9gende de la F\u00e9e des Djins que lui racontait sa nourrice, n'aura de cesse de la retrouver, au-del\u00e0 des mers.","id":"19026","runtime":99,"imdbId":"tt0439123","trailer":"http:\/\/www.youtube.com\/watch?v=2914","version":94,"lastModified":"1301906051000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/018\/4bc9554e017a3c57fe026018\/azur-et-asmar-mid.jpg","genre":"Animation","title":"Azur et Asmar","releaseDate":1161734400000,"language":"en","type":"Movie","_key":"69662"} +{"label":"AC\/DC: Live at Donington","description":"Filmed coverage of legendary Australian band AC\/DC's third headlining show at the \"Monsters of Rock\" festival in Castle Donington, UK.","id":"19027","runtime":120,"imdbId":"tt0337566","trailer":"http:\/\/www.youtube.com\/watch?v=1235","version":86,"lastModified":"1301945525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/035\/4bc95550017a3c57fe026035\/ac-dc-live-at-donington-mid.jpg","studio":"Leidseplein Presse","genre":"Music","title":"AC\/DC: Live at Donington","releaseDate":718416000000,"language":"en","type":"Movie","_key":"69663"} +{"label":"Angus Young","version":20,"id":"84006","lastModified":"1301901534000","name":"Angus Young","type":"Person","_key":"69664"} +{"label":"Malcolm Young","version":18,"id":"84010","lastModified":"1301901534000","name":"Malcolm Young","type":"Person","_key":"69665"} +{"label":"Brian Johnson","version":20,"id":"84008","lastModified":"1301901717000","name":"Brian Johnson","type":"Person","_key":"69666"} +{"label":"Cliff Williams","version":20,"id":"84009","lastModified":"1301901534000","name":"Cliff Williams","type":"Person","_key":"69667"} +{"label":"Chris Slade","version":19,"id":"84011","lastModified":"1301901717000","name":"Chris Slade","type":"Person","_key":"69668"} +{"label":"When Nietzsche Wept","description":"Viennese doctor Josef Bruer meets with philosopher Friedrich Nietzsche to help him deal with his despair.","id":"19029","runtime":105,"imdbId":"tt0760188","version":139,"lastModified":"1302235841000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03a\/4bc95550017a3c57fe02603a\/when-nietzsche-wept-mid.jpg","genre":"Drama","title":"When Nietzsche Wept","releaseDate":1186012800000,"language":"en","type":"Movie","_key":"69669"} +{"label":"Andreas Beckett","version":20,"id":"84012","lastModified":"1301902324000","name":"Andreas Beckett","type":"Person","_key":"69670"} +{"label":"Pinchas Perry","version":20,"id":"84013","lastModified":"1301902675000","name":"Pinchas Perry","type":"Person","_key":"69671"} +{"label":"Leonarduv denik","description":"Animated drawings inspired by Leonardo da Vinci are intercut with seemingly unrelated (but in fact strangely similar) live-action scenes.","id":"19031","runtime":12,"imdbId":"tt0068844","version":28,"lastModified":"1300980662000","studio":"Corona Cinematografica","genre":"Animation","title":"Leonarduv denik","releaseDate":63072000000,"language":"en","type":"Movie","_key":"69672"} +{"label":"Otrantsk\u00fd z\u00e1mek","description":"\"The Castle of Otranto\" is animation\/short\/mocumentary based on \"The Castle of Otranto\", a 1764 novel by Horace Walpole, the first Gothic novel. The novel takes place in Otranto in southern Italy. In Jan Svankmajer's mocumentary, the amateur archaeologist Dr Voz\u00e1b has set to prove that the supernatural ghost love story takes place not in Italy but in Otranto Castle near Nachod in Czechoslovakia.","id":"19032","runtime":15,"imdbId":"tt0075817","version":35,"lastModified":"1301908519000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Otrantsk\u00fd z\u00e1mek","releaseDate":220924800000,"language":"en","type":"Movie","_key":"69673"} +{"label":"Milos Fr\u00fdba","version":20,"id":"84015","lastModified":"1301902173000","name":"Milos Fr\u00fdba","type":"Person","_key":"69674"} +{"label":"Jaroslav Voz\u00e1b","version":20,"id":"84016","lastModified":"1301902711000","name":"Jaroslav Voz\u00e1b","type":"Person","_key":"69675"} +{"label":"The Sasquatch Gang","description":"From the guys that brought you Napoleon Dynamite comes this hilarious Napoleon-topping award-winning comedy. Super-nerdy Gavin Gore and his friends stumble on some huge footprints in the woods. A local cop, reporter and a renowned Sasquatch authority investigate, while two of Gavin's stoner neighbours hatch a scheme to profit from the situation ","id":"19033","runtime":84,"imdbId":"tt0460925","version":151,"lastModified":"1302179194000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4bc95552017a3c57fe026051\/the-sasquatch-gang-mid.jpg","genre":"Comedy","title":"The Sasquatch Gang","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69676"} +{"label":"Joey Kern","version":28,"id":"84763","lastModified":"1301901691000","name":"Joey Kern","type":"Person","_key":"69677"} +{"label":"Tim Skousen","version":20,"id":"85488","lastModified":"1301902708000","name":"Tim Skousen","type":"Person","_key":"69678"} +{"label":"Z\u00e1nik domu Usher\u016f","description":"In this animated version of Edgar Allan Poe's story, a traveller arrives at the Usher mansion to find that the sibling inhabitants are living under a mysterious family curse: The brother's senses have become painfully acute, while his sister has become nearly catatonic. ","id":"19034","runtime":15,"imdbId":"tt0082357","version":33,"lastModified":"1300980662000","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Z\u00e1nik domu Usher\u016f","releaseDate":347155200000,"language":"en","type":"Movie","_key":"69679"} +{"label":"Mo\u017enosti dialogu","description":"A three-part depiction of various forms of communication.","id":"19035","runtime":12,"imdbId":"tt0084362","version":32,"lastModified":"1301419001000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f76\/4d839a067b9aa14261000f76\/mo-nosti-dialogu-mid.jpg","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Mo\u017enosti dialogu","releaseDate":378691200000,"language":"en","type":"Movie","_key":"69680"} +{"label":"Another Kind of Love","description":"No overview found.","id":"19036","runtime":4,"imdbId":"tt0169562","version":29,"lastModified":"1300980662000","studio":"Koninck Studios","genre":"Animation","title":"Another Kind of Love","releaseDate":567993600000,"language":"en","type":"Movie","_key":"69681"} +{"label":"Muzn\u00e9 hry","description":"A man sits down to watch a football match, which seems to consist of the players being violently mutilated in various inventive ways. The players then leave the football pitch and invade the spectator's flat...","id":"19037","runtime":17,"imdbId":"tt0095683","version":36,"lastModified":"1301907116000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/905\/4d88dec17b9aa1036f000905\/muzn-hry-mid.jpg","studio":"Kr\u00e1tk\u00fd Film Praha","genre":"Animation","title":"Muzn\u00e9 hry","releaseDate":567993600000,"language":"en","type":"Movie","_key":"69682"} +{"label":"Miroslav Kuchar","version":19,"id":"84026","lastModified":"1301902501000","name":"Miroslav Kuchar","type":"Person","_key":"69683"} +{"label":"Zumba Fitness Cardio Party Workout","description":"Shed pounds and have a blast in the process with the Zumba Fitness Total Body Transformation System DVD set. Loaded with red-hot dance steps, pulsating Latin rhythms, and easy-to-follow routines, this invigorating dance-fitness \"party\" will have you movin', groovin', and shakin' the weight off to the sexy, exotic rhythms of salsa, cumbia, samba, merengue, and more. Each routine features interval training sessions that combine fast and slow rhythms with resistance training, helping sculpt and ton","id":"19038","runtime":0,"version":250,"lastModified":"1302235195000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3e\/4d64a9ff7b9aa12975000b3e\/zumba-fitness-cardio-party-workout-mid.jpg","genre":"Documentary","title":"Zumba Fitness Cardio Party Workout","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"69684"} +{"label":"The Conclave","description":"In 1458, five years after the fall of Constantinople to the Moslems, eighteen cardinals meet to elect a new pope. Rodrigo Borgia, a 27 year old cardinal learns to play a very dangerous game.","id":"19039","runtime":0,"imdbId":"tt0452011","version":139,"lastModified":"1302002303000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05a\/4bc95553017a3c57fe02605a\/the-conclave-mid.jpg","title":"The Conclave","releaseDate":1160179200000,"language":"en","type":"Movie","_key":"69685"} +{"label":"Manu Fullola","version":19,"id":"84031","lastModified":"1301902677000","name":"Manu Fullola","type":"Person","_key":"69686"} +{"label":"Pearl Jam - Single Video Theory","description":"This video is not your typical collection of music videos. Rather than being simply a straightforward presentation of videos, SINGLE VIDEO THEORY also contains footage of the band members recording their album in the studio. The camera captures the actual recording sessions as well as the band members chatting candidly about their concept and ideas for the music.","id":"19040","runtime":45,"imdbId":"tt0216214","version":83,"lastModified":"1302176679000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/05f\/4bc95553017a3c57fe02605f\/pearl-jam-single-video-theory-mid.jpg","genre":"Musical","title":"Pearl Jam - Single Video Theory","releaseDate":902188800000,"language":"en","type":"Movie","_key":"69687"} +{"label":"UFC 99: The Comeback","description":"UFC 99: The Comeback was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on June 13, 2009 in Cologne, Germany. It was the first UFC event held in Germany, as well as the first in mainland Europe (events have previously been held in both the U.K. and Ireland).","id":"19041","runtime":180,"imdbId":"tt1509279","version":78,"lastModified":"1302235024000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/068\/4bc95556017a3c57fe026068\/ufc-99-the-comeback-mid.jpg","studio":"Zuffa","genre":"Comedy","title":"UFC 99: The Comeback","releaseDate":1244851200000,"language":"en","type":"Movie","_key":"69688"} +{"label":"Ben Saunders","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/75f\/4c0922dc017a3c7e8f00075f\/ben-saunders-profile.jpg","version":23,"id":"84033","lastModified":"1301902175000","name":"Ben Saunders","type":"Person","_key":"69689"} +{"label":"Mostapha Al Turk","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/03a\/4c1dfd2a7b9aa1296200003a\/mostapha-al-turk-profile.jpg","version":18,"id":"84054","lastModified":"1301902695000","name":"Mostapha Al Turk","type":"Person","_key":"69690"} +{"label":"All Dogs Go to Heaven 2","description":"No overview found.","id":"19042","runtime":82,"imdbId":"tt0115509","version":118,"lastModified":"1302175802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4bc95557017a3c57fe026071\/all-dogs-go-to-heaven-2-mid.jpg","genre":"Animation","title":"All Dogs Go to Heaven 2","releaseDate":828057600000,"language":"en","type":"Movie","_key":"69691"} +{"label":"Koi no Mon","description":"Live-action adaptation of a madcap manga about art, opposites, love and a whole lot of cosplay.","id":"19043","runtime":114,"imdbId":"tt0435107","version":100,"lastModified":"1302234739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07a\/4bc95557017a3c57fe02607a\/koi-no-mon-mid.jpg","genre":"Comedy","title":"Koi no Mon","releaseDate":1098230400000,"language":"en","type":"Movie","_key":"69692"} +{"label":"Koi no mon","description":"No overview found.","id":"19044","runtime":0,"version":203,"lastModified":"1302234522000","title":"Koi no mon","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69693"} +{"label":"Noodle Boxer","description":"\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e19\u0e31\u0e01\u0e25\u0e27\u0e01\u0e01\u0e4b\u0e27\u0e22\u0e40\u0e15\u0e35\u0e4b\u0e22\u0e27\u0e21\u0e37\u0e2d\u0e42\u0e1b\u0e23\u0e02\u0e2d\u0e40\u0e1b\u0e47\u0e19\u0e19\u0e31\u0e01\u0e0a\u0e01\u0e21\u0e37\u0e2d\u0e09\u0e21\u0e31\u0e07 \u0e08\u0e32\u0e01\u0e1e\u0e48\u0e2d\u0e04\u0e49\u0e32\u0e02\u0e32\u0e22\u0e01\u0e4b\u0e27\u0e22\u0e40\u0e15\u0e35\u0e4b\u0e22\u0e27\u0e43\u0e1d\u0e48\u0e1d\u0e31\u0e19\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e19\u0e31\u0e01\u0e21\u0e27\u0e22 \u201c\u0e2a\u0e19\u0e34\u0e17\u201d \u0e08\u0e36\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e41\u0e04\u0e48\u0e19\u0e31\u0e01\u0e21\u0e27\u0e22\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e2a\u0e31\u0e21\u0e1c\u0e31\u0e2a\u0e0a\u0e31\u0e22\u0e0a\u0e19\u0e30 \u0e08\u0e31\u0e01\u0e01\u0e23\u0e30\u0e41\u0e23\u0e49\u0e21\u0e35\u0e44\u0e27\u0e49\u0e2b\u0e19\u0e35\u0e1a \u0e01\u0e31\u0e1a\u0e44\u0e27\u0e49\u0e14\u0e21 \u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e44\u0e14\u0e49\u0e0a\u0e39\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e0a\u0e19\u0e30\u0e01\u0e31\u0e1a\u0e43\u0e04\u0e23\u0e40\u0e02\u0e32\u0e40\u0e25\u0e22 \u0e0a\u0e37\u0e48\u0e2d\u0e0a\u0e01\u0e21\u0e27\u0e22\u0e17\u0e35\u0e48\u0e15\u0e31\u0e49\u0e07\u0e44\u0e27\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e48\u0e32\u0e40\u0e01\u0e23\u0e07\u0e02\u0e32\u0e21 \u201c\u0e41\u0e2a\u0e1a\u0e2a\u0e19\u0e34\u0e17 \u0e28\u0e34\u0e29\u0e22\u0e4c\u0e2a\u0e48\u0e32\u0e22\u0e2b\u0e19\u0e49\u0e32\u201d \u0e16\u0e39\u0e01\u0e04\u0e19\u0e14\u0e39\u0e15\u0e31\u0e49\u0e07\u0e09\u0e32\u0e22\u0e32\u0e43\u0e2b\u0e49\u0e43\u0e2b\u0e21\u0e48\u0e40\u0e1b\u0e47\u0e19 \u201c\u0e2b\u0e25\u0e31\u0e1a\u0e2a\u0e19\u0e34\u0e17 \u0e28\u0e34\u0e29\u0e22\u0e4c\u0e2b\u0e32\u0e21\u0e25\u0e07\u201d \u0e19\u0e31\u0e01\u0e21\u0e27\u0e22\u0e17\u0e35\u0e48\u0e41\u0e1e\u0e49\u0e15\u0e25\u0e2d\u0e14\u0e01\u0e32\u0e25\n","id":"19048","runtime":95,"imdbId":"tt0975728","version":35,"lastModified":"1301906596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07f\/4bc95558017a3c57fe02607f\/19048-mid.jpg","genre":"Comedy","title":"Noodle Boxer","releaseDate":1196380800000,"language":"en","type":"Movie","_key":"69694"} +{"label":"Woravej Danuwong","version":18,"id":"84041","lastModified":"1301902629000","name":"Woravej Danuwong","type":"Person","_key":"69695"} +{"label":"Natthaweeranuch Thongmee","version":18,"id":"84043","lastModified":"1301902629000","name":"Natthaweeranuch Thongmee","type":"Person","_key":"69696"} +{"label":"Rerkchai Paungpetch","version":18,"id":"84042","lastModified":"1301902629000","name":"Rerkchai Paungpetch","type":"Person","_key":"69697"} +{"label":"The Yearling","description":"Jody convinces his parents to allow him to adopt a young deer, but what will happen if the deer misbehaves?","id":"19049","runtime":128,"imdbId":"tt0039111","version":95,"lastModified":"1301906069000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11f\/4d89eea57b9aa11def00111f\/the-yearling-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Drama","title":"The Yearling","releaseDate":-727056000000,"language":"en","type":"Movie","_key":"69698"} +{"label":"The Bad News Bears in Breaking Training","description":"Sentimental sequel film finds the Bears, somehow, the little league champions of California. As a result, the team is invited to play a between-games exhibition at the Houston Astrodome with the local champs, the Toros. Kelly Leak, the Bears' star player, decides to rejoin the team and go with them to Houston to make amends with his estranged father, Mike","id":"19050","runtime":100,"imdbId":"tt0075718","version":66,"lastModified":"1301908515000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/092\/4bc95559017a3c57fe026092\/the-bad-news-bears-in-breaking-training-mid.jpg","genre":"Comedy","title":"The Bad News Bears in Breaking Training","releaseDate":237168000000,"language":"en","type":"Movie","_key":"69699"} +{"label":"The New Adventures of Pippi Longstocking","description":"After her father's ship is carried off by a sudden storm, the spunky Pippi Longstocking is stranded with her horse, Alfonso,and her pet monkey, Mr. Neilson, and takes up residence in the old family home, which is thought by neighborhood children to be haunted. Soon, two children, Tommy and his sister Anika, venture into the house only to meet up with Pippi. The three soon become friends and get into various adventures together, including cleaning the floor with scrubbing shoes, dodging the \"splu","id":"19051","runtime":100,"imdbId":"tt0093744","version":112,"lastModified":"1301906460000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/17a\/4d38b19f7b9aa1613d00017a\/the-new-adventures-of-pippi-longstocking-mid.jpg","genre":"Fantasy","title":"The New Adventures of Pippi Longstocking","releaseDate":586137600000,"language":"en","type":"Movie","_key":"69700"} +{"label":"Tami Erin","version":17,"id":"137182","lastModified":"1301903065000","name":"Tami Erin","type":"Person","_key":"69701"} +{"label":"David Seaman","version":17,"id":"137183","lastModified":"1301903039000","name":"David Seaman","type":"Person","_key":"69702"} +{"label":"Cory Crow","version":17,"id":"137184","lastModified":"1301903053000","name":"Cory Crow","type":"Person","_key":"69703"} +{"label":"Dianne Hull","version":20,"id":"97947","lastModified":"1301902772000","name":"Dianne Hull","type":"Person","_key":"69704"} +{"label":"Light It Up","description":"On a winter day in a southside Queens high school, events collide and six students are suddenly in an armed standoff with the NYPD. At the school, classrooms freeze, teachers come and go, resources are scant.","id":"19052","runtime":99,"imdbId":"tt0172726","version":155,"lastModified":"1302233880000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d1\/4bf15762017a3c32150001d1\/light-it-up-mid.jpg","genre":"Drama","title":"Light It Up","releaseDate":941673600000,"language":"en","type":"Movie","_key":"69705"} +{"label":"Valley Girl","description":"Valley Girl is, like--Omigod!--one of the most \"tubular\" teen comedies of the early 1980s. This movie launched Nicolas Cage's career, and it's easy to see why: Cage is perfectly cast as a Hollywood punk who instantly falls for Julie, a San Fernando \"Valley Girl\"","id":"19053","runtime":99,"imdbId":"tt0086525","trailer":"http:\/\/www.youtube.com\/watch?v=DHtbrlPI07E","version":381,"lastModified":"1302232283000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b5\/4cb829387b9aa138d70007b5\/valley-girl-mid.jpg","genre":"Comedy","title":"Valley Girl","releaseDate":418608000000,"language":"en","tagline":"When punk meets prom the fun begins!","type":"Movie","_key":"69706"} +{"label":"The London Nobody Knows","description":"Based on Geoffrey Fletcher\u2019s book, this captivating documentary exposes the real London of the swinging sixties. Turning its back on familiar sights, the film explores the hidden details of a crumbling metropolis. With James Mason as our Guide, we are led on an tour of the weird and wonderful pockets of London from abandoned music-halls to egg breaking factories.","id":"19054","runtime":53,"imdbId":"tt0061914","version":62,"lastModified":"1301908519000","title":"The London Nobody Knows","releaseDate":-94694400000,"language":"en","type":"Movie","_key":"69707"} +{"label":"Norman Cohen","version":21,"id":"84036","lastModified":"1301902675000","name":"Norman Cohen","type":"Person","_key":"69708"} +{"label":"Blue's Clues - Blue's Room - World Travelers","description":"No overview found.","id":"19056","runtime":100,"imdbId":"tt0427004","version":115,"lastModified":"1302233396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0e1\/4bc9555f017a3c57fe0260e1\/blue-s-clues-blue-s-room-world-travelers-mid.jpg","studio":"Nickelodeon Movies","genre":"Animation","title":"Blue's Clues - Blue's Room - World Travelers","releaseDate":1194912000000,"language":"en","type":"Movie","_key":"69709"} +{"label":"Down","description":"There is a dangerous secret presence occurring in a mysterious elevator in New York City's Millennium building, and the death toll is rising. When a mechanic and a reporter (Naomi Watts) go to investigate, they find a vicious enemy and a previously unknown secret that puts them in great peril. ","id":"19058","runtime":111,"imdbId":"tt0247303","version":615,"lastModified":"1302171551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ea\/4bc95560017a3c57fe0260ea\/down-mid.jpg","studio":"First Floor Features","genre":"Action","title":"Down","releaseDate":999734400000,"language":"en","type":"Movie","_key":"69710"} +{"label":"Kathryn Meisle","version":18,"id":"99035","lastModified":"1301903032000","name":"Kathryn Meisle","type":"Person","_key":"69711"} +{"label":"John Cariani","version":4,"id":"229794","lastModified":"1301904119000","name":"John Cariani","type":"Person","_key":"69712"} +{"label":"David Gwillim","version":13,"id":"158837","lastModified":"1301903622000","name":"David Gwillim","type":"Person","_key":"69713"} +{"label":"Peter Banks","version":4,"id":"229795","lastModified":"1301904128000","name":"Peter Banks","type":"Person","_key":"69714"} +{"label":"Pieter Walther Boer","version":12,"id":"209888","lastModified":"1301903776000","name":"Pieter Walther Boer","type":"Person","_key":"69715"} +{"label":"Hessel Haak","version":4,"id":"229815","lastModified":"1301904123000","name":"Hessel Haak","type":"Person","_key":"69716"} +{"label":"Sam Hoffman","version":21,"id":"52991","lastModified":"1301901538000","name":"Sam Hoffman","type":"Person","_key":"69717"} +{"label":"Natasja Loturco","version":5,"id":"229797","lastModified":"1301904120000","name":"Natasja Loturco","type":"Person","_key":"69718"} +{"label":"Michael Pitt","version":4,"id":"229816","lastModified":"1301904111000","name":"Michael Pitt","type":"Person","_key":"69719"} +{"label":"Rick Waney","version":4,"id":"229817","lastModified":"1301904121000","name":"Rick Waney","type":"Person","_key":"69720"} +{"label":"Dead Fish","description":"Gary Oldman is Lynch, a strangely charming hit man in this explosively funny dark comedy in the tradition of Snatch and Lock, Stock and Two Smoking Barrels. With an all-star cast including Terence Stamp, Elena Anaya, Robert Carlyle and Billy Zane, Dead Fish is a chaotic tale of criminals looking for love, money and revenge that will have you falling out of your chair laughing!","id":"19059","runtime":94,"imdbId":"tt0379240","version":211,"lastModified":"1302232752000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ef\/4bc95560017a3c57fe0260ef\/dead-fish-mid.jpg","genre":"Action","title":"Dead Fish","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"69721"} +{"label":"Charley Stadler","version":16,"id":"139728","lastModified":"1301902891000","name":"Charley Stadler","type":"Person","_key":"69722"} +{"label":"Ikigami","description":"In an attempt to spur citizens into taking more productive roles in society, the Japanese government issues death messages, or \"ikigami\", informing them that they have only 24 hours left to live. The film follows a young man tasked with delivering these messages, as well as the victims.","id":"19063","runtime":133,"imdbId":"tt1194661","version":73,"lastModified":"1302170317000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/523\/4d9b98407b9aa16d13000523\/ikigami-mid.jpg","title":"Ikigami","releaseDate":1222473600000,"language":"en","type":"Movie","_key":"69723"} +{"label":"Shota Matsuda","version":23,"id":"84044","lastModified":"1301902376000","name":"Shota Matsuda","type":"Person","_key":"69724"} +{"label":"K\u00f4ji Tsukamoto","version":22,"id":"84045","lastModified":"1301902213000","name":"K\u00f4ji Tsukamoto","type":"Person","_key":"69725"} +{"label":"Riko Narumi","version":23,"id":"84046","lastModified":"1301902639000","name":"Riko Narumi","type":"Person","_key":"69726"} +{"label":"Once Bitten","description":"The Countess has a problem. She is a 400 year old vampire who will cease to look young unless she is able to feed on a virgin three times before Holloween, a week away. She sends Sebastian, her servant and all of her lesser vampires out to find one. Finding a virgin is difficult in Los Angeles. Mark has a problem. He wants to 'do it' with Robin in the worst way, but she wants to wait. Jamie and Russ, Mark's goofy friends convince him to go to a Hollywood pick up spot where Mark meets the Countes","id":"19064","runtime":94,"imdbId":"tt0089730","version":142,"lastModified":"1302066388000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4e\/4d6efd007b9aa12ff1000a4e\/once-bitten-mid.jpg","genre":"Comedy","title":"Once Bitten","releaseDate":500860800000,"language":"en","tagline":"A one-night stand with eternal complications!","type":"Movie","_key":"69727"} +{"label":"Howard Storm","version":20,"id":"84047","lastModified":"1301902236000","name":"Howard Storm","type":"Person","_key":"69728"} +{"label":"Pure Luck","description":"The daughter of a wealthy businessman has disappeared in Mexico, and all the efforts to find her have been unsuccessful. A psychologist, knowing that the girl has an ultra bad luck, persuades her father to send to Mexico one of his employees, an accountant with super bad luck, to find her. Perhaps he will be lucky, and his bad luck could help to find the unlucky girl.","id":"19065","runtime":96,"imdbId":"tt0102729","version":72,"lastModified":"1302232418000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/110\/4bc95563017a3c57fe026110\/pure-luck-mid.jpg","title":"Pure Luck","releaseDate":681696000000,"language":"en","type":"Movie","_key":"69729"} +{"label":"Rest Stop: Don't Look Back","description":"One year after running away from home, Nicole and Jesse are still missing. When Jesse's brother, Tom, returns home from active duty, he sets out with his friends Marilyn and Jared to locate the lost couple. Their search leads them to the stretch of old highway with a mysterious Rest Stop, where they find themselves in the same predicament as Nicole and Jesse: confronting a madman.","id":"19066","runtime":89,"imdbId":"tt0995863","version":283,"lastModified":"1302232111000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4bc95564017a3c57fe026119\/rest-stop-don-t-look-back-mid.jpg","genre":"Horror","title":"Rest Stop: Don't Look Back","releaseDate":1222732800000,"language":"en","type":"Movie","_key":"69730"} +{"label":"Shawn Papazian","version":21,"id":"59828","lastModified":"1301902141000","name":"Shawn Papazian","type":"Person","_key":"69731"} +{"label":"The Duellists","description":"Set during the Napoleonic Wars, it features two French Hussar officers, Armand d'Hubert (Keith Carradine) and Gabriel F\u00e9raud (Harvey Keitel). A misunderstanding between them over an initially minor incident becomes a quarrel that turns into a bitter, long-drawn out feud over the following fifteen years, interwoven with the larger conflict that provides its backdrop.","id":"19067","runtime":100,"imdbId":"tt0075968","trailer":"http:\/\/www.youtube.com\/watch?v=ChuhXe0G5lY","version":126,"lastModified":"1302206879000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/122\/4bc95564017a3c57fe026122\/the-duellists-mid.jpg","genre":"Drama","title":"The Duellists","releaseDate":241833600000,"language":"en","type":"Movie","_key":"69732"} +{"label":"Lost in Plainview","description":"No overview found.","id":"19071","runtime":91,"imdbId":"tt0449062","version":64,"lastModified":"1302168481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/005\/4bcd4346017a3c6043000005\/lost-in-plainview-mid.jpg","genre":"Thriller","title":"Lost in Plainview","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"69733"} +{"label":"Layla Alexander","version":21,"id":"84049","lastModified":"1301901989000","name":"Layla Alexander","type":"Person","_key":"69734"} +{"label":"Eric Chambers","version":21,"id":"84050","lastModified":"1301902360000","name":"Eric Chambers","type":"Person","_key":"69735"} +{"label":"Blithe Spirit","description":"An English mystery novelist invites a medium over for dinner in the hopes of gathering enough material for his latest book, as well as exposing her as a charlatan. However, a series of incidents occur during the course of the evening, which result in a chain of supernatural events being set in motion which wreak havoc on his present marriage.","id":"19072","runtime":96,"imdbId":"tt0038363","version":323,"lastModified":"1302230165000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4bc95565017a3c57fe02612b\/blithe-spirit-mid.jpg","studio":"Noel Coward-Cineguild","genre":"Drama","title":"Blithe Spirit","releaseDate":-777427200000,"language":"en","tagline":"One Wife Too Many","type":"Movie","_key":"69736"} +{"label":"Kay Hammond","version":21,"id":"87858","lastModified":"1301903077000","name":"Kay Hammond","type":"Person","_key":"69737"} +{"label":"Jacqueline Clarke","version":20,"id":"87859","lastModified":"1301903053000","name":"Jacqueline Clarke","type":"Person","_key":"69738"} +{"label":"A Love Story","description":"What if you met the woman you wanted to make your wife after you married someone else? Ian Montes (Aga Muhlach) is a picture of success. Despite being a son of a shipping tycoon, Ian refused to just ride in his father's empire. He built his own real estate company and earned his first million at a very young age. He never looked back since then. Driven by his ambition to become better, if not as g","id":"19073","runtime":0,"imdbId":"tt0990433","homepage":"http:\/\/www.amazon.com\/Love-Story-Angelica-Panganiban-Philippine\/dp\/B000WM3P26\/ref=sr_1_1?ie=UTF8&s=d","version":541,"lastModified":"1302231291000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a6\/4d6bf1dc7b9aa132fe0012a6\/a-love-story-mid.jpg","genre":"Drama","title":"A Love Story","releaseDate":1187481600000,"language":"en","type":"Movie","_key":"69739"} +{"label":"Aga Muhlach","version":21,"id":"84057","lastModified":"1301902359000","name":"Aga Muhlach","type":"Person","_key":"69740"} +{"label":"Maricel Soriano","version":19,"id":"84058","lastModified":"1301902323000","name":"Maricel Soriano","type":"Person","_key":"69741"} +{"label":"Angelica Panganiban","version":24,"id":"84059","lastModified":"1301902332000","name":"Angelica Panganiban","type":"Person","_key":"69742"} +{"label":"Minghags","description":"A guy who invented this thing called the garbage juicer. You can take garbage and mash it into the trash can, and it has three spouts. You can choose delicious root beer, grapefruit juice or kerosene. This businessman steals the invention from him so the guy spends the whole time trying to dick the businessman over.","id":"19074","runtime":96,"imdbId":"tt1022877","homepage":"http:\/\/minghags.com\/","version":67,"lastModified":"1300980668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/134\/4bc95566017a3c57fe026134\/minghags-mid.jpg","genre":"Comedy","title":"Minghags","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"69743"} +{"label":"Ryan Dunn","version":21,"id":"110068","lastModified":"1301902984000","name":"Ryan Dunn","type":"Person","_key":"69744"} +{"label":"Mark the Bagger","version":18,"id":"110069","lastModified":"1301902359000","name":"Mark the Bagger","type":"Person","_key":"69745"} +{"label":"A Midsummer Night's Dream","description":"No overview found.","id":"19075","runtime":133,"imdbId":"tt0026714","version":89,"lastModified":"1302064167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/13d\/4bc95566017a3c57fe02613d\/a-midsummer-night-s-dream-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"A Midsummer Night's Dream","releaseDate":-1080259200000,"language":"en","type":"Movie","_key":"69746"} +{"label":"The Affair of the Necklace","description":"In pre-Revolutionary France, a young aristocratic woman left penniless by the political unrest in the country, must avenge her family's fall from grace by scheming to steal a priceless necklace.","id":"19076","runtime":118,"imdbId":"tt0242252","version":194,"lastModified":"1302230823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/146\/4bc95567017a3c57fe026146\/the-affair-of-the-necklace-mid.jpg","studio":"Alcon Entertainment","genre":"Drama","title":"The Affair of the Necklace","releaseDate":1006214400000,"language":"en","type":"Movie","_key":"69747"} +{"label":"Simon Shackleton","version":17,"id":"112022","lastModified":"1301902884000","name":"Simon Shackleton","type":"Person","_key":"69748"} +{"label":"UFC 101: Declaration","description":"UFC 101: Declaration was a mixed martial arts event held by the Ultimate Fighting Championship (UFC) on August 8, 2009 in Philadelphia, Pennsylvania.","id":"19078","runtime":180,"imdbId":"tt1509278","version":115,"lastModified":"1302230434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/14f\/4bc9556a017a3c57fe02614f\/ufc-101-declaration-mid.jpg","genre":"Sports Film","title":"UFC 101: Declaration","releaseDate":1249689600000,"language":"en","type":"Movie","_key":"69749"} +{"label":"Shane Nelson","version":15,"id":"87251","lastModified":"1301902917000","name":"Shane Nelson","type":"Person","_key":"69750"} +{"label":"Amir Sadollah","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1df\/4c1df5ec7b9aa118260001df\/amir-sadollah-profile.jpg","version":29,"id":"87253","lastModified":"1301903013000","name":"Amir Sadollah","type":"Person","_key":"69751"} +{"label":"Johny Hendricks","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/021\/4c1dfc067b9aa12958000021\/johny-hendricks-profile.jpg","version":21,"id":"87254","lastModified":"1301903012000","name":"Johny Hendricks","type":"Person","_key":"69752"} +{"label":"Phoebe in Wonderland","description":"The fantastical tale of a little girl who won't - or can't - follow the rules. Confounded by her clashes with the rule-obsessed world around her, Phoebe seeks enlightenment from her unconventional drama teacher, even as her brilliant but anguished mother looks to Phoebe herself for inspiration.","id":"19079","runtime":96,"imdbId":"tt1034325","version":256,"lastModified":"1302117456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15c\/4bc9556b017a3c57fe02615c\/phoebe-in-wonderland-mid.jpg","studio":"Thinkfilm","genre":"Drama","title":"Phoebe in Wonderland","releaseDate":1200787200000,"language":"en","type":"Movie","_key":"69753"} +{"label":"Daniel Barnz","version":26,"id":"84061","lastModified":"1301901921000","name":"Daniel Barnz","type":"Person","_key":"69754"} +{"label":"The Wingless Bird","description":"No overview found.","id":"19080","runtime":60,"imdbId":"tt0141988","version":61,"lastModified":"1302164121000","genre":"Drama","title":"The Wingless Bird","releaseDate":886896000000,"language":"en","type":"Movie","_key":"69755"} +{"label":"No Direction Home","description":"A chronicle of Bob Dylan's strange evolution between 1961 and 1966 from folk singer to protest singer to \"voice of a generation\" to rock star.","id":"19082","runtime":208,"imdbId":"tt0367555","version":134,"lastModified":"1302182940000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16a\/4bc9556c017a3c57fe02616a\/no-direction-home-mid.jpg","genre":"Documentary","title":"No Direction Home","releaseDate":1121904000000,"language":"en","type":"Movie","_key":"69756"} +{"label":"Strays","description":"Rick (Diesel) is frustrated by the repetitious grind of one-night stands and aimless hustling. Whilst looking for more to his life he meets Heather (Lanza), a neighbour. Rick takes the opportunity to escape his boring life style with her, but soon finds that his volatile behaviour threatens to finish their relationship before it even really begins.","id":"19083","runtime":105,"imdbId":"tt0149171","version":172,"lastModified":"1302204480000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16f\/4bc9556d017a3c57fe02616f\/strays-mid.jpg","genre":"Drama","title":"Strays","releaseDate":853545600000,"language":"en","type":"Movie","_key":"69757"} +{"label":"Mihaela Tudorof","version":19,"id":"84062","lastModified":"1301901862000","name":"Mihaela Tudorof","type":"Person","_key":"69758"} +{"label":"Joey Dedio","version":20,"id":"84063","lastModified":"1301901942000","name":"Joey Dedio","type":"Person","_key":"69759"} +{"label":"F. Valentino Morales","version":20,"id":"84064","lastModified":"1301902062000","name":"F. Valentino Morales","type":"Person","_key":"69760"} +{"label":"Johnson Family Vacation","description":"No overview found.","id":"19084","runtime":97,"imdbId":"tt0359517","version":218,"lastModified":"1302229559000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/178\/4bc9556d017a3c57fe026178\/johnson-family-vacation-mid.jpg","genre":"Comedy","title":"Johnson Family Vacation","releaseDate":1081296000000,"language":"en","type":"Movie","_key":"69761"} +{"label":"Vulgar","description":"Vulgar is about a man who is a childrens clown but has not been getting much luck lately. He lives in a cheap apartment wich he can't even afford. Bums are constantly sleeping in his run down car and crashing on his lawn.He has a nagging mother who lives in a nursing home, and his best friend is a moocher.One day he comes up with the idea to become a bachelor clown.","id":"19085","runtime":87,"imdbId":"tt0120467","trailer":"http:\/\/www.youtube.com\/watch?v=YLjXcYWKnJg","version":336,"lastModified":"1302137779000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/186\/4bc95570017a3c57fe026186\/vulgar-mid.jpg","studio":"View Askew Productions","genre":"Comedy","title":"Vulgar","releaseDate":1019779200000,"language":"en","tagline":"Everyone loves a clown... some more than others.","type":"Movie","_key":"69762"} +{"label":"Delta Force 2 - The Colombian Connection","description":"When DEA agents are taken captive by a ruthless South American kingpin, the Delta Force is reunited to rescue them in this sequel to the 1986 film.","id":"19086","runtime":111,"imdbId":"tt0099399","version":123,"lastModified":"1302143633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18b\/4bc95571017a3c57fe02618b\/delta-force-2-the-colombian-connection-mid.jpg","studio":"Cannon Group","genre":"Action","title":"Delta Force 2 - The Colombian Connection","releaseDate":651456000000,"language":"en","type":"Movie","_key":"69763"} +{"label":"LadyBugs","description":"To climb the corporate ladder to success, a guy agrees to coach the company's all girl soccer team with the help of his secret weapon: his fiancee's son.","id":"19087","runtime":90,"imdbId":"tt0104670","version":149,"lastModified":"1302143046000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/194\/4bc95572017a3c57fe026194\/ladybugs-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"LadyBugs","releaseDate":701654400000,"language":"en","type":"Movie","_key":"69764"} +{"label":"Ilene Graff","version":20,"id":"84066","lastModified":"1301902531000","name":"Ilene Graff","type":"Person","_key":"69765"} +{"label":"Metallica - The Videos 1989-2004","description":"This is a collection of Metallica's videos ending with those shot for St. Anger.","id":"19089","runtime":141,"imdbId":"tt1054496","version":73,"lastModified":"1302202977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/199\/4bc95572017a3c57fe026199\/metallica-the-videos-1989-2004-mid.jpg","studio":"E%2FM Ventures","title":"Metallica - The Videos 1989-2004","releaseDate":1165190400000,"language":"en","type":"Movie","_key":"69766"} +{"label":"Demetri Martin. Person.","description":"\"Demetri Martin. Person.\" is a 2007 Comedy Central special featuring comedian Demetri Martin. It was directed by Jay Karas. It was filmed in Austin, Texas. It first aired on January 14, 2007. A DVD was released by Paramount Home Video and Comedy Central on September 4, 2007.","id":"19090","runtime":0,"imdbId":"tt0954327","version":139,"lastModified":"1302229151000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a2\/4bc95574017a3c57fe0261a2\/demetri-martin-person-mid.jpg","genre":"Comedy","title":"Demetri Martin. Person.","releaseDate":1168732800000,"language":"en","type":"Movie","_key":"69767"} +{"label":"Jay Karas","version":20,"id":"84074","lastModified":"1301902361000","name":"Jay Karas","type":"Person","_key":"69768"} +{"label":"Demetri Martin","version":22,"id":"84075","lastModified":"1301902359000","name":"Demetri Martin","type":"Person","_key":"69769"} +{"label":"Above The Rim","description":"Story of a promising high school basketball star and his relationships with his two brothers, one a drug dealer and the other a former basketball star fallen on hard times and now employed as a security guard.","id":"19092","runtime":96,"imdbId":"tt0109035","version":177,"lastModified":"1302225929000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c0\/4bc95577017a3c57fe0261c0\/above-the-rim-mid.jpg","studio":"New Line Cinema","genre":"Crime","title":"Above The Rim","releaseDate":764380800000,"language":"en","type":"Movie","_key":"69770"} +{"label":"Duane Martin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/487\/4d814f4d7b9aa12db7001487\/duane-martin-profile.jpg","version":26,"id":"84077","lastModified":"1301902062000","name":"Duane Martin","type":"Person","_key":"69771"} +{"label":"1990: I guerrieri del Bronx","description":"No overview found.","id":"19093","runtime":0,"imdbId":"tt0085124","version":190,"lastModified":"1302228461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fc\/4bf423b1017a3c320f0005fc\/1990-i-guerrieri-del-bronx-mid.jpg","title":"1990: I guerrieri del Bronx","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69772"} +{"label":"Sordid Lives","description":"\"Sordid Lives\" is about a family in a small Texas town preparing for the funeral of the mother. Among the characters are the grandson trying to find his identity in West Hollywood, the son who has spent the past twenty-three years dressed as Tammy Wynette, the sister and her best friend (who live in delightfully kitschy homes), and the two daughters (one strait-laced and one quite a bit looser).","id":"19094","runtime":111,"imdbId":"tt0204640","version":183,"lastModified":"1302201657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1d7\/4bc9557c017a3c57fe0261d7\/sordid-lives-mid.jpg","genre":"Comedy","title":"Sordid Lives","releaseDate":989539200000,"language":"en","type":"Movie","_key":"69773"} +{"label":"Kirk Geiger","version":19,"id":"84079","lastModified":"1301902453000","name":"Kirk Geiger","type":"Person","_key":"69774"} +{"label":"Newell Alexander","version":21,"id":"84080","lastModified":"1301902304000","name":"Newell Alexander","type":"Person","_key":"69775"} +{"label":"Earl Houston Bullock","version":19,"id":"84081","lastModified":"1301902453000","name":"Earl Houston Bullock","type":"Person","_key":"69776"} +{"label":"Sharron Alexis","version":19,"id":"84083","lastModified":"1301902453000","name":"Sharron Alexis","type":"Person","_key":"69777"} +{"label":"Ann Walker","version":19,"id":"84084","lastModified":"1301902453000","name":"Ann Walker","type":"Person","_key":"69778"} +{"label":"Mary Margaret Lewis","version":19,"id":"84085","lastModified":"1301902453000","name":"Mary Margaret Lewis","type":"Person","_key":"69779"} +{"label":"Rosemary Alexander","version":19,"id":"84086","lastModified":"1301902453000","name":"Rosemary Alexander","type":"Person","_key":"69780"} +{"label":"Christina, princesse de l'\u00e9rotisme","description":"No overview found.","id":"19095","runtime":0,"imdbId":"tt0066914","version":225,"lastModified":"1302227715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e0\/4bc9557d017a3c57fe0261e0\/christina-princesse-de-l-erotisme-mid.jpg","title":"Christina, princesse de l'\u00e9rotisme","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69781"} +{"label":"Back To Bataan","description":"An Army colonel leads a guerrilla campaign against the Japanese in the Philippines.","id":"19096","runtime":0,"imdbId":"tt0037522","version":180,"lastModified":"1302227508000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1e9\/4bc9557d017a3c57fe0261e9\/back-to-bataan-mid.jpg","genre":"Action","title":"Back To Bataan","releaseDate":-788918400000,"language":"en","type":"Movie","_key":"69782"} +{"label":"Derri\u00e8re moi","description":"The twenty-something Betty comes to a remote small town and strikes a friendship with the fourteen-year old local girl Lea, who is fascinated by her new friend's tales of partying and living in the fast lane in the big city. Betty has ulterior motives for befriending the young girl, however.","id":"19097","runtime":87,"imdbId":"tt1289391","version":62,"lastModified":"1302227392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/203\/4bc9557f017a3c57fe026203\/derriere-moi-mid.jpg","studio":"Estfilmindustri","genre":"Drama","title":"Derri\u00e8re moi","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"69783"} +{"label":"Carina Caputo","version":19,"id":"84087","lastModified":"1301901534000","name":"Carina Caputo","type":"Person","_key":"69784"} +{"label":"Charlotte Legault","version":19,"id":"84088","lastModified":"1301902453000","name":"Charlotte Legault","type":"Person","_key":"69785"} +{"label":"\u00c9liane Gagnon","version":19,"id":"84089","lastModified":"1301902062000","name":"\u00c9liane Gagnon","type":"Person","_key":"69786"} +{"label":"Patrice Dubois","version":19,"id":"84090","lastModified":"1301902453000","name":"Patrice Dubois","type":"Person","_key":"69787"} +{"label":"Marie-Fr\u00e9d\u00e9rique Ouellet","version":19,"id":"84091","lastModified":"1301902062000","name":"Marie-Fr\u00e9d\u00e9rique Ouellet","type":"Person","_key":"69788"} +{"label":"Thomas Michaud-Morin","version":19,"id":"84092","lastModified":"1301902062000","name":"Thomas Michaud-Morin","type":"Person","_key":"69789"} +{"label":"Et toi t'es sur qui?","description":"Three teenage friends bond during thier last summer together after high school.","id":"19098","runtime":82,"imdbId":"tt0830545","version":57,"lastModified":"1301904817000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20c\/4bc9557f017a3c57fe02620c\/et-toi-t-es-sur-qui-mid.jpg","title":"Et toi t'es sur qui?","releaseDate":1181692800000,"language":"en","type":"Movie","_key":"69790"} +{"label":"Lola Doillon","version":14,"id":"222212","lastModified":"1301903647000","name":"Lola Doillon","type":"Person","_key":"69791"} +{"label":"Lucie Desclozeaux","version":5,"id":"230939","lastModified":"1301904134000","name":"Lucie Desclozeaux","type":"Person","_key":"69792"} +{"label":"Christa Theret","version":19,"id":"91355","lastModified":"1301902449000","name":"Christa Theret","type":"Person","_key":"69793"} +{"label":"Ga\u00ebl Tavares","version":5,"id":"230940","lastModified":"1301904130000","name":"Ga\u00ebl Tavares","type":"Person","_key":"69794"} +{"label":"Shomron Haddad","version":4,"id":"230941","lastModified":"1301349871000","name":"Shomron Haddad","type":"Person","_key":"69795"} +{"label":"Elo\u00efse Etrillard","version":4,"id":"230942","lastModified":"1301349871000","name":"Elo\u00efse Etrillard","type":"Person","_key":"69796"} +{"label":"Vincent Romeuf","version":4,"id":"230943","lastModified":"1301349871000","name":"Vincent Romeuf","type":"Person","_key":"69797"} +{"label":"Le Coeur des hommes","description":"The life of four best friends in Paris: Antoine (a gym school teacher), Jeff (director of a monthly journal), Alex (Jeff's associate in the monthly journal and a Don Juan) and Manu (owner of fine food store). Their time is shared between their respective jobs, their relationship with women (their own and others...) and the times they meet together to discuss about life and play sport lottery.","id":"19099","runtime":100,"imdbId":"tt0349225","version":107,"lastModified":"1302227112000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/215\/4bc95580017a3c57fe026215\/le-coeur-des-hommes-mid.jpg","title":"Le Coeur des hommes","releaseDate":1049241600000,"language":"en","type":"Movie","_key":"69798"} +{"label":"Nos jours heureux","description":"Un homme, qui dirige pour la premi\u00e8re fois une colonie de vacances, se voit contraint de g\u00e9rer non seulement des enfants intenables mais \u00e9galement des animateurs pas toujours professionnels.","id":"19100","runtime":103,"imdbId":"tt0478566","version":83,"lastModified":"1302226999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/21e\/4bc95580017a3c57fe02621e\/nos-jours-heureux-mid.jpg","title":"Nos jours heureux","releaseDate":1151452800000,"language":"en","type":"Movie","_key":"69799"} +{"label":"A Little Princess","description":"When her father enlists to fight for the British in WWI, young Sara Crewe goes to New York to attend the same boarding school her late mother attended. She soon clashes with the severe headmistress, Miss Minchin, who attempts to stifle Sara's creativity and sense of self- worth.","id":"19101","runtime":97,"imdbId":"tt0113670","trailer":"http:\/\/www.youtube.com\/watch?v=r_44NI1AOvs","version":169,"lastModified":"1302226875000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/227\/4bc95581017a3c57fe026227\/a-little-princess-mid.jpg","studio":"Warner Bros. Family Entertainment","genre":"Drama","title":"A Little Princess","releaseDate":800064000000,"language":"en","tagline":"Every girl everwhere is a princess.","type":"Movie","_key":"69800"} +{"label":"Liesel Matthews","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4ad\/4d4c2ae45e73d617b70014ad\/liesel-matthews-profile.jpg","version":23,"id":"84093","lastModified":"1301901862000","name":"Liesel Matthews","type":"Person","_key":"69801"} +{"label":"As You Like It","description":"Witty, playful and utterly magical, the story is a compelling romantic adventure in which Rosalind and Orlando's celebrated courtship is played out against a backdrop of political rivalry, banishment and exile in the Forest of Arden - set in 19th-century Japan.","id":"19103","runtime":127,"imdbId":"tt0450972","homepage":"http:\/\/www.hbo.com\/films\/asyoulikeit\/","version":175,"lastModified":"1302226423000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4d741dd85e73d6397d00001d\/as-you-like-it-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"As You Like It","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69802"} +{"label":"Iron Maiden: Flight 666","description":"A chronological account of the heavy metal band Iron Maiden's 2008 world tour through India, Australia, Japan, USA, Canada, Mexico and South America in a jet piloted by the band's front man, Bruce Dickinson. Features interviews with the musicians, their road crew and fans.","id":"19105","runtime":112,"imdbId":"tt1361558","trailer":"http:\/\/www.youtube.com\/watch?v=1244","homepage":"http:\/\/www.ironmaiden.com\/flight666\/","version":150,"lastModified":"1301901968000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23d\/4bc95586017a3c57fe02623d\/iron-maiden-flight-666-mid.jpg","studio":"EMI","genre":"Documentary","title":"Iron Maiden: Flight 666","releaseDate":1240272000000,"language":"en","type":"Movie","_key":"69803"} +{"label":"Bruce Dickinson","version":21,"id":"77328","lastModified":"1301901474000","name":"Bruce Dickinson","type":"Person","_key":"69804"} +{"label":"Steve Harris","version":20,"id":"84096","lastModified":"1301901579000","name":"Steve Harris","type":"Person","_key":"69805"} +{"label":"Nicko McBrain","version":19,"id":"84094","lastModified":"1301902236000","name":"Nicko McBrain","type":"Person","_key":"69806"} +{"label":"Dave Murray","version":20,"id":"84095","lastModified":"1301902139000","name":"Dave Murray","type":"Person","_key":"69807"} +{"label":"Adrian Smith","version":19,"id":"84099","lastModified":"1301902236000","name":"Adrian Smith","type":"Person","_key":"69808"} +{"label":"Janick Gers","version":19,"id":"84101","lastModified":"1301902629000","name":"Janick Gers","type":"Person","_key":"69809"} +{"label":"Ronnie James Dio","version":22,"id":"22304","lastModified":"1302077757000","name":"Ronnie James Dio","type":"Person","_key":"69810"} +{"label":"Scot McFadyen","version":21,"id":"84111","lastModified":"1301902236000","name":"Scot McFadyen","type":"Person","_key":"69811"} +{"label":"Lascars","description":"Cond\u00e9-sur-Ginette, en p\u00e9riph\u00e9rie d'une grande ville, \u00e0 mille lieux du sable chaud, des cocotiers et du bleu oc\u00e9an des Cara\u00efbes. C'est l'\u00e9t\u00e9. Le soleil br\u00fble le chrome des mobylettes, r\u00e9chauffe le bitume des tours, asphyxie les halls d'immeubles et crame les esprits. Ici, tout le monde r\u00eave des plages de Santo Rico. Certains plus que d'autres. Pour Tony Merguez et Jos\u00e9 Frelate, les deux MC's du qua","id":"19106","runtime":96,"imdbId":"tt1043852","homepage":"http:\/\/www.lascars-lefilm.com\/","version":94,"lastModified":"1302226093000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4bc9558b017a3c57fe02625e\/lascars-mid.jpg","studio":"Bac Films","genre":"Animation","title":"Lascars","releaseDate":1245196800000,"language":"en","type":"Movie","_key":"69812"} +{"label":"Emmanuel Klotz","version":19,"id":"84097","lastModified":"1301902236000","name":"Emmanuel Klotz","type":"Person","_key":"69813"} +{"label":"Albert Pereira-Lazaro","version":17,"id":"84098","lastModified":"1301902453000","name":"Albert Pereira-Lazaro","type":"Person","_key":"69814"} +{"label":"Dido - Live At Brixton Academy","description":"Recorded at London's Brixton Academy in 2004, Dido Live draws on material from 1999 debut No Angel and 2003 follow-up Life for Rent. As she notes early in the show, \"It's very nice to be in a place where I've seen hundreds and thousands of gigs.\" Dido and five-piece band--including two percussionists--proceed to execute a tight 14-song set, touching on favorites like \"Thank You\".","id":"19107","runtime":91,"imdbId":"tt0772226","version":255,"lastModified":"1302225978000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/267\/4bc9558c017a3c57fe026267\/dido-live-at-brixton-academy-mid.jpg","studio":"Sony BMG","genre":"Musical","title":"Dido - Live At Brixton Academy","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"69815"} +{"label":"Dido","version":21,"id":"84534","lastModified":"1301901862000","name":"Dido","type":"Person","_key":"69816"} +{"label":"Vini Miranda","version":19,"id":"84535","lastModified":"1301902236000","name":"Vini Miranda","type":"Person","_key":"69817"} +{"label":"Keith Golden","version":19,"id":"84536","lastModified":"1301901862000","name":"Keith Golden","type":"Person","_key":"69818"} +{"label":"Alex Alexander","version":19,"id":"84538","lastModified":"1301902062000","name":"Alex Alexander","type":"Person","_key":"69819"} +{"label":"Jody Linscott","version":19,"id":"84539","lastModified":"1301902629000","name":"Jody Linscott","type":"Person","_key":"69820"} +{"label":"John Deley","version":19,"id":"84550","lastModified":"1301902629000","name":"John Deley","type":"Person","_key":"69821"} +{"label":"David Barnard","version":30,"id":"84551","lastModified":"1302178106000","name":"David Barnard","type":"Person","_key":"69822"} +{"label":"Breaker! Breaker!","description":"Truck driver searches for his brother, who has disappeared in a town run by a corrupt judge.","id":"19108","runtime":86,"imdbId":"tt0075783","version":112,"lastModified":"1302225837000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/271\/4bc9558d017a3c57fe026271\/breaker-breaker-mid.jpg","studio":"Paragon Films Ltd","genre":"Action","title":"Breaker! Breaker!","releaseDate":231724800000,"language":"en","type":"Movie","_key":"69823"} +{"label":"Don Hulette","version":20,"id":"84102","lastModified":"1301901839000","name":"Don Hulette","type":"Person","_key":"69824"} +{"label":"The Long Weekend","description":"Cooper is an actor who sees life as one big party, while Ed is in advertising and takes life too seriously. When Ed gets stressed over a deadline he has to meet, his brother Cooper works hard in trying to get his brother hooked up with a girl, thus a long weekend of stress and beautiful women, culminating in Ed meeting, and making love to, the woman of his dreams.","id":"19109","runtime":85,"imdbId":"tt0385057","trailer":"http:\/\/www.youtube.com\/watch?v=2158","version":146,"lastModified":"1302225681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27a\/4bc9558d017a3c57fe02627a\/the-long-weekend-mid.jpg","studio":"Gold Circle Films","genre":"Comedy","title":"The Long Weekend","releaseDate":1123200000000,"language":"en","tagline":"Two Brothers. One Weekend. No Shame.","type":"Movie","_key":"69825"} +{"label":"Pat Holden","version":22,"id":"88323","lastModified":"1301902323000","name":"Pat Holden","type":"Person","_key":"69826"} +{"label":"Une approche positive du comportement des perroquets","description":"Un outil inestimable pour comprendre votre oiseau et pour modifier ou \u00e9viter les comportements inappropri\u00e9s.\n\nChapitres:\nComportement inn\u00e9 vs comportement acquis\nEnrichissement du milieu\nTaille de plumes\nMorsures\nCris\nLe picage\nAttachement exclusif \u00e0 une personne\n","id":"19111","runtime":0,"version":16,"lastModified":"1301908109000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/287\/4bc9558e017a3c57fe026287\/une-approche-positive-du-comportement-des-perroquets-mid.jpg","title":"Une approche positive du comportement des perroquets","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"69827"} +{"label":"The End of Suburbia: Oil Depletion and the Collapse of the American Dream","description":"Since World War II North Americans have invested much of their newfound wealth in suburbia. It has promised a sense of space, affordability, family life and upward mobility. As the population of suburban sprawl has exploded in the past 50 years Suburbia, and all it promises, has become the American Dream. But as we enter the 21st century, serious questions are beginning to emerge...","id":"19112","runtime":78,"imdbId":"tt0446320","homepage":"http:\/\/www.endofsuburbia.com\/","version":117,"lastModified":"1301908314000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/295\/4bc9558f017a3c57fe026295\/the-end-of-suburbia-oil-depletion-and-the-collapse-of-the-american-dream-mid.jpg","title":"The End of Suburbia: Oil Depletion and the Collapse of the American Dream","releaseDate":1083715200000,"language":"en","type":"Movie","_key":"69828"} +{"label":"Gregory Greene","version":21,"id":"130145","lastModified":"1301902422000","name":"Gregory Greene","type":"Person","_key":"69829"} +{"label":"Endless Love","description":"Two young kids fall in love with each other. But the passion is too consuming for the parents of Jade. The parents try to stop them from seeing each other. But when this doesn't work, David burns down the house and is sent away. This doesn't stop him from seeing her. When he gets out he goes to look for her. But the passion for his first love is too strong and she has to leave.","id":"19114","runtime":116,"imdbId":"tt0082329","version":84,"lastModified":"1302230504000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29a\/4bc9558f017a3c57fe02629a\/endless-love-mid.jpg","studio":"PolyGram Filmed Entertainment","genre":"Romance","title":"Endless Love","releaseDate":364176000000,"language":"en","type":"Movie","_key":"69830"} +{"label":"Guns 'N' Roses - On Film","description":"20 years on from their major label debut, Guns n' Roses are rising from the ashes once more. On Film brings you the best broadcast full length performances of a sensational career, alongside the candid reflections and insights of band members, industry insiders and the best music critics in the business.","id":"19115","runtime":110,"version":45,"lastModified":"1302225161000","title":"Guns 'N' Roses - On Film","releaseDate":1201478400000,"language":"en","type":"Movie","_key":"69831"} +{"label":"Asylum","description":"The teenager Madison McBride is traumatized by the loss of her deranged father when she was nine years old and the suicide of her beloved brother Brandon one year ago. She decides to join the Richard Miller University, where Brandon committed suicide, to overcome her demons. While walking to her dorm, she meets the weird janitor Wilbur Mackey that tells her that the place is haunted. Madison befri","id":"19116","runtime":93,"imdbId":"tt0804443","version":151,"lastModified":"1302224948000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29f\/4bc95593017a3c57fe02629f\/asylum-mid.jpg","genre":"Horror","title":"Asylum","releaseDate":1216080000000,"language":"en","type":"Movie","_key":"69832"} +{"label":"Ellen Hollman","version":22,"id":"83218","lastModified":"1301902723000","name":"Ellen Hollman","type":"Person","_key":"69833"} +{"label":"Carolina Garcia","version":17,"id":"116910","lastModified":"1301902983000","name":"Carolina Garcia","type":"Person","_key":"69834"} +{"label":"Let It Ride","description":"A gambler used to losing is having a very good day.","id":"19118","runtime":90,"imdbId":"tt0097731","version":119,"lastModified":"1301907087000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2a4\/4bc95594017a3c57fe0262a4\/let-it-ride-mid.jpg","genre":"Comedy","title":"Let It Ride","releaseDate":619401600000,"language":"en","tagline":"He drinks. He smokes. He gambles. He curses. He thinks about committing adultery. You'll love him.","type":"Movie","_key":"69835"} +{"label":"Edward Walsh","version":21,"birthday":"-1303693200000","id":"101747","birthplace":"New York City, New York, USA","lastModified":"1301902996000","name":"Edward Walsh","type":"Person","_key":"69836"} +{"label":"Richard Dimitri","version":18,"id":"138427","lastModified":"1301903061000","name":"Richard Dimitri","type":"Person","_key":"69837"} +{"label":"Night and the City","description":"Night and the City (1950) is a film noir based on the novel by Gerald Kersh, directed by Jules Dassin, and starring Richard Widmark and Gene Tierney. Shot on location in London, the plot evolves around an ambitious hustler whose plans keep going wrong.","id":"19119","runtime":101,"imdbId":"tt0042788","trailer":"http:\/\/www.youtube.com\/watch?v=kTQw_tNGA7Q","version":103,"lastModified":"1302224662000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b9\/4bc95596017a3c57fe0262b9\/night-and-the-city-mid.jpg","studio":"Twentieth Century-Fox Productions","genre":"Drama","title":"Night and the City","releaseDate":-623376000000,"language":"en","type":"Movie","_key":"69838"} +{"label":"Francis L. Sullivan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/adc\/4c0d098b017a3c7e87000adc\/francis-l-sullivan-profile.jpg","version":18,"id":"93900","lastModified":"1301902135000","name":"Francis L. Sullivan","type":"Person","_key":"69839"} +{"label":"Juliet of the Spirits","description":"Visions, memories, and mysticism all help a 40-something woman to find the strength to leave her cheating husband.","id":"19120","runtime":137,"imdbId":"tt0059229","version":81,"lastModified":"1301908316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d68\/4cf85c955e73d6299a001d68\/giulietta-degli-spiriti-mid.jpg","genre":"Comedy","title":"Juliet of the Spirits","releaseDate":-131328000000,"language":"en","type":"Movie","_key":"69840"} +{"label":"Friedrich von Ledebur","version":22,"id":"91971","lastModified":"1301902320000","name":"Friedrich von Ledebur","type":"Person","_key":"69841"} +{"label":"What's New Scooby Doo? Space Ape at the Cape","description":"Scooby-Doo and the world's most famous meddling kids launch their crime-busting, spook-chasing exploits into the 21st centry in these four fun-filled mystery adventures!<br><br>When the contestants at a way-cool showboarding contest are suspiciously sidelined, Scooby-Doo and the kids investigate - and discover the chilling fact that \"There's No Creature Like Snow Creature\"! Then there's dino-sized mystery afoot in Costa Rica when a fearsome Gigantosaurus jumps off a movie screen and goes on a r","id":"19121","runtime":85,"imdbId":"tt0306274","version":37,"lastModified":"1301904471000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27e\/4c3a398e7b9aa10ede00027e\/what-s-new-scooby-doo-space-ape-at-the-cape-mid.jpg","title":"What's New Scooby Doo? Space Ape at the Cape","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"69842"} +{"label":"Doctor Zhivago","description":"Young and beautiful Lara is loved by three men: a revolutionary, a mogul, and a doctor. Their lives become intertwined with the drama of Russian revolution. Doctor Zhivago is still married when he meets Lara. Their love story is unfolding against the backdrop of revolution which affects the doctor's career, his family, and his love to Lara.","id":"19122","runtime":226,"imdbId":"tt0324937","version":154,"lastModified":"1301906459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/513\/4d019dcd5e73d621a1000513\/doctor-zhivago-mid.jpg","genre":"Drama","title":"Doctor Zhivago","releaseDate":1038096000000,"language":"en","type":"Movie","_key":"69843"} +{"label":"Giacomo Campiotti","version":17,"id":"143468","lastModified":"1301902152000","name":"Giacomo Campiotti","type":"Person","_key":"69844"} +{"label":"Sam MacLintock","version":16,"id":"143469","lastModified":"1301902203000","name":"Sam MacLintock","type":"Person","_key":"69845"} +{"label":"La Ch\u00e8vre","description":"When the boss' unlucky daughter is missing in South America, Campana is sent to watch the boss' most unlucky employee who is sent as a private detective in hopes he can duplicate the daughter's mistakes.","id":"19123","runtime":81,"imdbId":"tt0082183","version":67,"lastModified":"1301905635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9b\/4cd0d8165e73d65023000e9b\/la-chevre-mid.jpg","genre":"Adventure","title":"La Ch\u00e8vre","releaseDate":376704000000,"language":"en","type":"Movie","_key":"69846"} +{"label":"Blind Fury","description":"A blind Vietnam vet, trained as a swordfighter, comes to America and helps to rescue the son of a fellow soldier.","id":"19124","runtime":86,"imdbId":"tt0096945","trailer":"http:\/\/www.youtube.com\/watch?v=CY5cY2DIa6w","version":182,"lastModified":"1301902363000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d4\/4bc95598017a3c57fe0262d4\/blind-fury-mid.jpg","studio":"Tristar Pictures","genre":"Action","title":"Blind Fury","releaseDate":619315200000,"language":"en","tagline":"He may be blind, but he don't need no dog.","type":"Movie","_key":"69847"} +{"label":"Brandon Call","version":22,"id":"84112","lastModified":"1301902535000","name":"Brandon Call","type":"Person","_key":"69848"} +{"label":"Paul James Vasquez","version":17,"id":"116043","lastModified":"1301902917000","name":"Paul James Vasquez","type":"Person","_key":"69849"} +{"label":"Julia Gonz\u00e1lez","version":17,"id":"116044","lastModified":"1301902917000","name":"Julia Gonz\u00e1lez","type":"Person","_key":"69850"} +{"label":"Even Money","description":"Oscar winners Kin Basinger and Forest Witaker join Danny DeVito and an all-star cast in this compelling thriller that follows the lives of nine individuals as their fates become increasingly entwined in a web of addiction and gambling, culminating at one critical moment where their lives will be lost or reclaimed.\r\n\r\nStruggling writer Kate (Basinger) loses her family's savings at a casino; a washe","id":"19126","runtime":113,"imdbId":"tt0404163","version":152,"lastModified":"1301904523000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e2\/4bc9559a017a3c57fe0262e2\/even-money-mid.jpg","genre":"Crime","title":"Even Money","releaseDate":1141171200000,"language":"en","type":"Movie","_key":"69851"} +{"label":"Water","description":"Michael Caine stars as Baxter Thwaites, the laid-back Governor of the sleepy British colony of Cascara. But when American oil drillers accidentally strike a gusher of ultra-delicious mineral water, the forgotten Caribbean out-post becomes a global hotbed of political and economic chaos.","id":"19127","runtime":94,"imdbId":"tt0090297","version":107,"lastModified":"1301907086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2eb\/4bc9559b017a3c57fe0262eb\/water-mid.jpg","genre":"Adventure","title":"Water","releaseDate":504921600000,"language":"en","type":"Movie","_key":"69852"} +{"label":"Die 1000 Augen des Dr. Mabuse","description":"No overview found.","id":"19128","runtime":99,"imdbId":"tt0054371","version":55,"lastModified":"1301904710000","genre":"Crime","title":"Die 1000 Augen des Dr. Mabuse","releaseDate":-315619200000,"language":"en","type":"Movie","_key":"69853"} +{"label":"Im Stahlnetz des Dr. Mabuse","description":"No overview found.","id":"19129","runtime":85,"imdbId":"tt0055008","version":66,"lastModified":"1301905312000","genre":"Crime","title":"Im Stahlnetz des Dr. Mabuse","releaseDate":-283996800000,"language":"en","type":"Movie","_key":"69854"} +{"label":"Die unsichtbaren Krallen des Dr. Mabuse","description":"No overview found.","id":"19130","runtime":85,"imdbId":"tt0056639","version":41,"lastModified":"1301904467000","genre":"Crime","title":"Die unsichtbaren Krallen des Dr. Mabuse","releaseDate":-252460800000,"language":"en","type":"Movie","_key":"69855"} +{"label":"Dr. Mabuse vs. Scotland Yard","description":"The spirit of the evil Dr. Mabuse takes over the body of a famous professor. The professor\/Dr. Mabuse then begins a new crime wave that terrorizes the city.","id":"19131","runtime":87,"imdbId":"tt0057479","version":50,"lastModified":"1301908504000","genre":"Crime","title":"Dr. Mabuse vs. Scotland Yard","releaseDate":-220924800000,"language":"en","type":"Movie","_key":"69856"} +{"label":"Sabine Bethmann","version":21,"id":"84128","lastModified":"1301902675000","name":"Sabine Bethmann","type":"Person","_key":"69857"} +{"label":"Die Todesstrahlen des Dr. Mabuse","description":"No overview found.","id":"19132","runtime":87,"imdbId":"tt0058667","version":37,"lastModified":"1301906146000","genre":"Crime","title":"Die Todesstrahlen des Dr. Mabuse","releaseDate":-189388800000,"language":"en","type":"Movie","_key":"69858"} +{"label":"The Big Bus","description":"The ultimate disaster film parody. A nuclear powered bus is making it's maiden non-stop trip from New York to Denver. The journey is plagued by disasters due to the machinations of a mysterious group allied with the oil lobby. Will the down on his luck driver, with a reputation for eating his passengers, be able to complete the journey?","id":"19133","runtime":0,"imdbId":"tt0074205","homepage":"85","version":65,"lastModified":"1301905603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/308\/4bc9559f017a3c57fe026308\/the-big-bus-mid.jpg","genre":"Action","title":"The Big Bus","releaseDate":189302400000,"language":"en","type":"Movie","_key":"69859"} +{"label":"Hellzapoppin'","description":"No overview found.","id":"19136","runtime":80,"imdbId":"tt0033704","version":72,"lastModified":"1301904461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/537\/4d5fd7107b9aa154cb003537\/hellzapoppin-mid.jpg","genre":"Comedy","title":"Hellzapoppin'","releaseDate":-883612800000,"language":"en","type":"Movie","_key":"69860"} +{"label":"Ole Olsen","version":23,"id":"29031","lastModified":"1301902164000","name":"Ole Olsen","type":"Person","_key":"69861"} +{"label":"Chic Johnson","version":21,"id":"84129","lastModified":"1301902323000","name":"Chic Johnson","type":"Person","_key":"69862"} +{"label":"After The Fox","description":"The Fox (Peter Sellers) a criminal mastermind pretends to be a director making a film in order to smuggle in to Italy a stolen gold shipment.","id":"19137","runtime":108,"imdbId":"tt0060200","trailer":"http:\/\/www.youtube.com\/watch?v=InAduv2MUSY","version":84,"lastModified":"1301905310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/322\/4bc955a2017a3c57fe026322\/caccia-alla-volpe-mid.jpg","genre":"Comedy","title":"After The Fox","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"69863"} +{"label":"Nicht Fummeln, Liebling","description":"No overview found.","id":"19138","runtime":87,"imdbId":"tt0066137","version":32,"lastModified":"1301906712000","genre":"Comedy","title":"Nicht Fummeln, Liebling","releaseDate":691200000,"language":"en","type":"Movie","_key":"69864"} +{"label":"Goal! III","description":"In the third installment of the football drama trilogy Goal!, Kuno Becker returns as Mexican footballer Santiago Mu\u00f1ez, who, along with his best friends and England national team players Charlie Braithwaite (Leo Gregory) and Liam Adams (JJ Feild), are selected for their respective national teams at the 2006 FIFA World Cup Finals in Germany.","id":"19139","runtime":91,"imdbId":"tt0499487","version":64,"lastModified":"1301904352000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/337\/4bc955a3017a3c57fe026337\/goal-iii-mid.png","genre":"Drama","title":"Goal! III","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"69865"} +{"label":"The Pride of the Yankees","description":"The story of the life and career of the famed baseball player, Lou Gehrig.","id":"19140","runtime":128,"imdbId":"tt0035211","version":150,"lastModified":"1301905057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/341\/4bc955a4017a3c57fe026341\/the-pride-of-the-yankees-mid.jpg","genre":"Sports Film","title":"The Pride of the Yankees","releaseDate":-846633600000,"language":"en","type":"Movie","_key":"69866"} +{"label":"Babe Ruth","version":24,"id":"88960","lastModified":"1301903038000","name":"Babe Ruth","type":"Person","_key":"69867"} +{"label":"Elsa Janssen","version":22,"id":"99750","lastModified":"1301903004000","name":"Elsa Janssen","type":"Person","_key":"69868"} +{"label":"The Collective","description":"The Collective is a group of filmmakers photographers and mountain bikers - Drawing on the experience expertise and creative energy of every member of the team - The Collective has created a film that portrays the newest cutting edge images of the freeride progression while exploring the thoughts and personalities of the riders leading that progression","id":"19141","runtime":70,"homepage":"www.thecollectivefilm.com","version":70,"lastModified":"1301907086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/34a\/4bc955a5017a3c57fe02634a\/the-collective-mid.jpg","studio":"The Collective","genre":"Sports Film","title":"The Collective","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"69869"} +{"label":"Geoff Gulevich","version":18,"id":"84131","lastModified":"1301902331000","name":"Geoff Gulevich","type":"Person","_key":"69870"} +{"label":"Steve Romaniuk","version":17,"id":"84132","lastModified":"1301902331000","name":"Steve Romaniuk","type":"Person","_key":"69871"} +{"label":"Matt Hunter","version":18,"id":"84133","lastModified":"1301902506000","name":"Matt Hunter","type":"Person","_key":"69872"} +{"label":"Ryan Leech","version":18,"id":"84135","lastModified":"1301902678000","name":"Ryan Leech","type":"Person","_key":"69873"} +{"label":"Jordie Lunn","version":17,"id":"84136","lastModified":"1301902678000","name":"Jordie Lunn","type":"Person","_key":"69874"} +{"label":"Thomas Vanderham","version":18,"id":"84138","lastModified":"1301902678000","name":"Thomas Vanderham","type":"Person","_key":"69875"} +{"label":"Darcy Wittenburg","version":18,"id":"84139","lastModified":"1301902331000","name":"Darcy Wittenburg","type":"Person","_key":"69876"} +{"label":"Jamie Houssian","version":20,"id":"84148","lastModified":"1301902147000","name":"Jamie Houssian","type":"Person","_key":"69877"} +{"label":"The Return of Swamp Thing","description":"The Swamp Thing returns to battle the evil Dr. Arcane, who has a new science lab full of creatures transformed by genetic mutation, and chooses Heather Locklear as his new object of affection.","id":"19142","runtime":84,"imdbId":"tt0098193","version":96,"lastModified":"1301904646000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/353\/4bc955a6017a3c57fe026353\/the-return-of-swamp-thing-mid.jpg","genre":"Horror","title":"The Return of Swamp Thing","releaseDate":610934400000,"language":"en","tagline":"Why can't men be more like plants?","type":"Movie","_key":"69878"} +{"label":"Diggstown","description":"Gabriel Caine has just been released from prison when he sets up a bet with a business man. The business man owns most of a boxing-mad town called Diggstown. The bet is that Gabe can find a boxer that will knock out 10 Diggstown men, in a boxing ring, within 24 hours. \"Honey\" Roy Palmer is that man - although at 48, many say he is too old.","id":"19143","runtime":98,"imdbId":"tt0104107","trailer":"http:\/\/www.youtube.com\/watch?v=Vr007U4Pekk","version":247,"lastModified":"1301904950000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35c\/4bc955a6017a3c57fe02635c\/diggstown-mid.jpg","genre":"Action","title":"Diggstown","releaseDate":713750400000,"language":"en","type":"Movie","_key":"69879"} +{"label":"Seasons","description":"Seasons is a film that follows seven of the worlds top mountain bikers through the course of four seasons of one year - The film explores what it means to be a full time rider as told through the lives of downhill racers\/slopestyle competitors and big mountain freeriders","id":"19144","runtime":60,"trailer":"http:\/\/www.youtube.com\/watch?v=2539","homepage":"http:\/\/www.thecollectivefilm.com\/seasons\/","version":78,"lastModified":"1300980677000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/365\/4bc955a7017a3c57fe026365\/seasons-mid.jpg","studio":"The Collective","genre":"Sports Film","title":"Seasons","releaseDate":1209600000000,"language":"en","type":"Movie","_key":"69880"} +{"label":"Cameron McCaul","version":20,"id":"84143","lastModified":"1301902512000","name":"Cameron McCaul","type":"Person","_key":"69881"} +{"label":"Andrew Shandro","version":16,"id":"84145","lastModified":"1301902629000","name":"Andrew Shandro","type":"Person","_key":"69882"} +{"label":"Steve Peat","version":20,"id":"84146","lastModified":"1301902679000","name":"Steve Peat","type":"Person","_key":"69883"} +{"label":"Steve Smith","version":15,"id":"84147","lastModified":"1301902629000","name":"Steve Smith","type":"Person","_key":"69884"} +{"label":"O Homem Que Desafiou o Diabo","description":"Z\u00e9 Ara\u00fajo (Marcos Palmeira) \u00e9 um homem bo\u00eamio, que gosta de frequentar cabar\u00e9s e ouvir cantadores de viola. Ap\u00f3s tirar a virgindade de uma turca, ele \u00e9 obrigado pelo pai dela a se casar. Durante anos Z\u00e9 passa por seguidas humilha\u00e7\u00f5es, provocadas por sua esposa. Um dia, ao ouvir uma piada sobre sua situa\u00e7\u00e3o, ele se revolta, destr\u00f3i o armaz\u00e9m do sogro e ainda d\u00e1 uma surra na esposa.","id":"19147","runtime":106,"imdbId":"tt0933033","trailer":"http:\/\/www.youtube.com\/watch?v=1245","homepage":"www.warnerbros.com\/ohomemquedesafiouodiabo","version":80,"lastModified":"1301417142000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36e\/4bc955aa017a3c57fe02636e\/o-homem-que-desafiou-o-diabo-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"O Homem Que Desafiou o Diabo","releaseDate":1190937600000,"language":"en","type":"Movie","_key":"69885"} +{"label":"Marcos Palmeira","version":19,"id":"84149","lastModified":"1301902629000","name":"Marcos Palmeira","type":"Person","_key":"69886"} +{"label":"Fl\u00e1via Alessandra","version":17,"id":"84154","lastModified":"1301902629000","name":"Fl\u00e1via Alessandra","type":"Person","_key":"69887"} +{"label":"Fernanda Paes Leme","version":19,"id":"84155","lastModified":"1301902629000","name":"Fernanda Paes Leme","type":"Person","_key":"69888"} +{"label":"L\u00edvia Falc\u00e3o","version":17,"id":"84156","lastModified":"1301902629000","name":"L\u00edvia Falc\u00e3o","type":"Person","_key":"69889"} +{"label":"Moacyr G\u00f3es","version":17,"id":"84157","lastModified":"1301902629000","name":"Moacyr G\u00f3es","type":"Person","_key":"69890"} +{"label":"Roam","description":"Roam is a 16mm Mountain Bike film from the Collective. The most anticipated Mountain Bike movie in history - starring: Andrew Shandro, Wade Simmons, Thomas Vanderham, Cam McCaul, Darren Berrecloth, Ryder Kasprick, Geoff Gulevich, Matt Hunter, Tyler Klassen, Ryan Leech, Jordie Lunn, Tyler Morland, Steve Peat, Nathan Rennie and Steve Romaniuk.","id":"19148","runtime":70,"version":70,"lastModified":"1301904609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/377\/4bc955ab017a3c57fe026377\/roam-mid.jpg","studio":"The Collective","genre":"Sports Film","title":"Roam","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69891"} +{"label":"Ryder Kasprick","version":15,"id":"84150","lastModified":"1301902236000","name":"Ryder Kasprick","type":"Person","_key":"69892"} +{"label":"Tyler Morland","version":15,"id":"84151","lastModified":"1301902629000","name":"Tyler Morland","type":"Person","_key":"69893"} +{"label":"Nathan Rennie","version":18,"id":"84152","lastModified":"1301902453000","name":"Nathan Rennie","type":"Person","_key":"69894"} +{"label":"The Crew","description":"Four retired mobsters plan one last crime to save their retirement home.","id":"19150","runtime":88,"imdbId":"tt0198386","version":134,"lastModified":"1301907148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/380\/4bc955ac017a3c57fe026380\/the-crew-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"The Crew","releaseDate":966816000000,"language":"en","type":"Movie","_key":"69895"} +{"label":"Jeremy Ratchford","version":21,"id":"44205","lastModified":"1301901943000","name":"Jeremy Ratchford","type":"Person","_key":"69896"} +{"label":"Michael Dinner","version":24,"id":"84165","lastModified":"1301902214000","name":"Michael Dinner","type":"Person","_key":"69897"} +{"label":"East Side Story","description":"Dutiful grandson Diego Campos helps run the family restaurant, hides his gay relationships from his traditional Latino family and faces cultural changes to his ethnic enclave in this film festival favorite set in East Los Angeles. Diego finds himself navigating uncharted territory when his amorous aunt puts the moves on his boyfriend and an influx of gay white men moves into the neighborhood.","id":"19151","runtime":88,"imdbId":"tt0437171","trailer":"http:\/\/www.youtube.com\/watch?v=1246","version":120,"lastModified":"1301905853000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/385\/4bc955ac017a3c57fe026385\/east-side-story-mid.jpg","genre":"Comedy","title":"East Side Story","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69898"} +{"label":"Carlos Portugal","version":22,"id":"84167","lastModified":"1301902453000","name":"Carlos Portugal","type":"Person","_key":"69899"} +{"label":"Luis Accinelli","version":19,"id":"84170","lastModified":"1301902453000","name":"Luis Accinelli","type":"Person","_key":"69900"} +{"label":"Ren\u00e9 Alvarado","version":19,"id":"84171","lastModified":"1301902236000","name":"Ren\u00e9 Alvarado","type":"Person","_key":"69901"} +{"label":"David Ber\u00f3n","version":20,"id":"84172","lastModified":"1301902453000","name":"David Ber\u00f3n","type":"Person","_key":"69902"} +{"label":"Steve Callahan","version":23,"id":"84173","lastModified":"1301901989000","name":"Steve Callahan","type":"Person","_key":"69903"} +{"label":"Michael Cassady","version":19,"id":"84174","lastModified":"1301902453000","name":"Michael Cassady","type":"Person","_key":"69904"} +{"label":"Dominic Ceci","version":19,"id":"84175","lastModified":"1301902629000","name":"Dominic Ceci","type":"Person","_key":"69905"} +{"label":"Irene DeBari","version":19,"id":"84176","lastModified":"1301902453000","name":"Irene DeBari","type":"Person","_key":"69906"} +{"label":"Yelyna De Leon","version":19,"id":"84177","lastModified":"1301902453000","name":"Yelyna De Leon","type":"Person","_key":"69907"} +{"label":"Carl Donelson","version":19,"id":"84178","lastModified":"1301902629000","name":"Carl Donelson","type":"Person","_key":"69908"} +{"label":"Anthony Fitzgerald","version":19,"id":"84179","lastModified":"1301902629000","name":"Anthony Fitzgerald","type":"Person","_key":"69909"} +{"label":"Gladys Jimenez","version":24,"id":"84180","lastModified":"1302049061000","name":"Gladys Jimenez","type":"Person","_key":"69910"} +{"label":"Shannon Kemp","version":19,"id":"84181","lastModified":"1301902629000","name":"Shannon Kemp","type":"Person","_key":"69911"} +{"label":"Luis Raul","version":19,"id":"84182","lastModified":"1301902629000","name":"Luis Raul","type":"Person","_key":"69912"} +{"label":"Cory Schneider","version":19,"id":"84183","lastModified":"1301902453000","name":"Cory Schneider","type":"Person","_key":"69913"} +{"label":"Andrea Zafra","version":19,"id":"84184","lastModified":"1301902453000","name":"Andrea Zafra","type":"Person","_key":"69914"} +{"label":"Zift","description":"Moth is freed on parole after spending time in prison on wrongful conviction of murder. Jailed shortly before the Bulgarian communist coup of 1944, he now finds himself in a new and alien world - the totalitarian Sofia of the 60s. His first night of freedom draws the map of a diabolical city full of decaying neighborhoods, gloomy streets and a bizarre parade of characters.","id":"19152","runtime":92,"imdbId":"tt1264914","trailer":"http:\/\/www.youtube.com\/watch?v=rR4EiUSoCqQ","homepage":"http:\/\/www.ziftthemovie.com\/","version":106,"lastModified":"1301905635000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/095\/4c93e8c75e73d63a78000095\/zift-mid.jpg","studio":"Miramar","genre":"Drama","title":"Zift","releaseDate":1214524800000,"language":"en","tagline":"The night of the man who chewed asphalt.","type":"Movie","_key":"69915"} +{"label":"Zahary Baharov","version":33,"id":"84197","lastModified":"1301901697000","name":"Zahary Baharov","type":"Person","_key":"69916"} +{"label":"Tanya Ilieva","version":24,"id":"84198","lastModified":"1301902703000","name":"Tanya Ilieva","type":"Person","_key":"69917"} +{"label":"Vladimir Penev","version":23,"id":"84199","lastModified":"1301902674000","name":"Vladimir Penev","type":"Person","_key":"69918"} +{"label":"Javor Gardev","version":23,"id":"84200","lastModified":"1301902674000","name":"Javor Gardev","type":"Person","_key":"69919"} +{"label":"The Real Cancun","description":"Sixteen American college students drink, flirt, fight and canoodle during their Spring Break vacation in Cancun, Mexico.","id":"19153","runtime":96,"imdbId":"tt0360916","version":106,"lastModified":"1301903611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3af\/4bc955ae017a3c57fe0263af\/the-real-cancun-mid.jpg","genre":"Indie","title":"The Real Cancun","releaseDate":1051056000000,"language":"en","type":"Movie","_key":"69920"} +{"label":"The Second Arrival","description":"After Zane Ziminski is found dead five people received envelopes with details of an alien invasion. This group of five includes 3 scientists, Zane's brother Jack, and a reporter. Quickly, the group is down to three and then Jack and Bridget, the reporter. With a small piece of alien technology, they must escape from the aliens, who take human form, and try to convince others that aliens exist.","id":"19154","runtime":101,"imdbId":"tt0122961","version":318,"lastModified":"1301905619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b8\/4bc955b2017a3c57fe0263b8\/the-second-arrival-mid.jpg","studio":"Rootbeer Films","genre":"Action","title":"The Second Arrival","releaseDate":910310400000,"language":"en","type":"Movie","_key":"69921"} +{"label":"Matthew Jemus","version":17,"id":"92212","lastModified":"1301901429000","name":"Matthew Jemus","type":"Person","_key":"69922"} +{"label":"Emilie Malo","version":17,"id":"92213","lastModified":"1301901429000","name":"Emilie Malo","type":"Person","_key":"69923"} +{"label":"Jane Sibbett","version":23,"id":"92255","lastModified":"1301901396000","name":"Jane Sibbett","type":"Person","_key":"69924"} +{"label":"Catherine Blythe","version":17,"id":"92256","lastModified":"1301901474000","name":"Catherine Blythe","type":"Person","_key":"69925"} +{"label":"Michael Scherer","version":18,"id":"90354","lastModified":"1301901717000","name":"Michael Scherer","type":"Person","_key":"69926"} +{"label":"Emidio Michetti","version":17,"id":"92257","lastModified":"1301902062000","name":"Emidio Michetti","type":"Person","_key":"69927"} +{"label":"St\u00e9phane Blanchette","version":17,"id":"92258","lastModified":"1301902062000","name":"St\u00e9phane Blanchette","type":"Person","_key":"69928"} +{"label":"Mark Trafford","version":17,"id":"92259","lastModified":"1301902062000","name":"Mark Trafford","type":"Person","_key":"69929"} +{"label":"Lisa Kagan","version":17,"id":"92260","lastModified":"1301902062000","name":"Lisa Kagan","type":"Person","_key":"69930"} +{"label":"Karen Elkin","version":21,"id":"92261","lastModified":"1301902062000","name":"Karen Elkin","type":"Person","_key":"69931"} +{"label":"Sophie L\u00e9ger","version":17,"id":"92262","lastModified":"1301902062000","name":"Sophie L\u00e9ger","type":"Person","_key":"69932"} +{"label":"Don Jordan","version":19,"id":"92263","lastModified":"1301902062000","name":"Don Jordan","type":"Person","_key":"69933"} +{"label":"Sean Devine","version":17,"id":"92264","lastModified":"1301902062000","name":"Sean Devine","type":"Person","_key":"69934"} +{"label":"Laurel Paetz","version":17,"id":"92265","lastModified":"1301902062000","name":"Laurel Paetz","type":"Person","_key":"69935"} +{"label":"Chad Beamish","version":17,"id":"92266","lastModified":"1301902062000","name":"Chad Beamish","type":"Person","_key":"69936"} +{"label":"Lila Feng","version":17,"id":"92267","lastModified":"1301902062000","name":"Lila Feng","type":"Person","_key":"69937"} +{"label":"John Sanford Moore","version":17,"id":"92268","lastModified":"1301901862000","name":"John Sanford Moore","type":"Person","_key":"69938"} +{"label":"Liz MacRae","version":17,"id":"92269","lastModified":"1301902062000","name":"Liz MacRae","type":"Person","_key":"69939"} +{"label":"Wei Feng Tang","version":17,"id":"92270","lastModified":"1301902062000","name":"Wei Feng Tang","type":"Person","_key":"69940"} +{"label":"Bill Corday","version":17,"id":"92271","lastModified":"1301902062000","name":"Bill Corday","type":"Person","_key":"69941"} +{"label":"Dean Patrick Fleming","version":17,"id":"92274","lastModified":"1301902062000","name":"Dean Patrick Fleming","type":"Person","_key":"69942"} +{"label":"Dennis Michael Tenney","version":21,"id":"92275","lastModified":"1301901862000","name":"Dennis Michael Tenney","type":"Person","_key":"69943"} +{"label":"Before the Rain","description":"The circularity of violence seen in a story that circles on itself. In Macedonia, during war in Bosnia, Christians hunt an ethnic Albanian girl who may have murdered one of their own. A young monk who's taken a vow of silence offers her protection. In London, a photographic editor who's pregnant needs to talk it out with her estranged husband and chooses a toney restaurant.","id":"19155","runtime":113,"imdbId":"tt0110882","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/before-the-rain","version":111,"lastModified":"1301905180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c6\/4bc955b3017a3c57fe0263c6\/pred-dozhdot-mid.jpg","genre":"Drama","title":"Before the Rain","releaseDate":784944000000,"language":"en","type":"Movie","_key":"69944"} +{"label":"Gr\u00e9goire Colin","version":21,"id":"136170","lastModified":"1301902448000","name":"Gr\u00e9goire Colin","type":"Person","_key":"69945"} +{"label":"Labina Mitevska","version":24,"id":"113758","lastModified":"1301902812000","name":"Labina Mitevska","type":"Person","_key":"69946"} +{"label":"Legendary Weapons of China","description":"Legendary Weapons of China is a martial arts fantasy film taking place during the late Qing Dynasty when Empress Dowager Cixi dispatches her agents to various factions of the Boxer Rebellion in order find supernatural martial artists that are invulnerable to western bullets. When one of the leaders of these groups disbands his forces, assassins from the remaining factions are sent out to kill him.","id":"19156","runtime":109,"imdbId":"tt0084671","version":202,"lastModified":"1301907310000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d4\/4bc955b5017a3c57fe0263d4\/shi-ba-ban-wu-yi-mid.jpg","studio":"Shaw Brothers Studio","genre":"Action","title":"Legendary Weapons of China","releaseDate":378691200000,"language":"en","type":"Movie","_key":"69947"} +{"label":"Chia-Liang Liu","version":29,"id":"84202","lastModified":"1302134230000","name":"Chia-Liang Liu","type":"Person","_key":"69948"} +{"label":"Kara Hui","version":27,"id":"84205","lastModified":"1301902707000","name":"Kara Hui","type":"Person","_key":"69949"} +{"label":"Hou Hsiao","version":21,"id":"96394","lastModified":"1301902408000","name":"Hou Hsiao","type":"Person","_key":"69950"} +{"label":"Going Overboard","description":"A struggling young comedian takes a menial job on a cruise ship where he hopes for his big chance to make it in the world of cruise ship comedy.","id":"19157","runtime":99,"imdbId":"tt0096870","version":294,"lastModified":"1301904938000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dd\/4bc955b5017a3c57fe0263dd\/going-overboard-mid.jpg","genre":"Comedy","title":"Going Overboard","releaseDate":610848000000,"language":"en","type":"Movie","_key":"69951"} +{"label":"Valerie Breiman","version":22,"id":"84211","lastModified":"1301902141000","name":"Valerie Breiman","type":"Person","_key":"69952"} +{"label":"Scott LaRose","version":20,"id":"84212","lastModified":"1301902359000","name":"Scott LaRose","type":"Person","_key":"69953"} +{"label":"Graveyard Shift","description":"Based on Stephen King's short story about a Maine textile mill, where it's workers come into contact with something far more gruesome than anyone might expect.","id":"19158","runtime":89,"imdbId":"tt0099697","version":155,"lastModified":"1301905276000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e2\/4bc955b5017a3c57fe0263e2\/graveyard-shift-mid.jpg","studio":"Graveyard Productions","genre":"Drama","title":"Graveyard Shift","releaseDate":656899200000,"language":"en","type":"Movie","_key":"69954"} +{"label":"Ralph S. Singleton","version":21,"id":"18855","lastModified":"1301903109000","name":"Ralph S. Singleton","type":"Person","_key":"69955"} +{"label":"Kelly Wolf","version":21,"id":"86474","lastModified":"1301902722000","name":"Kelly Wolf","type":"Person","_key":"69956"} +{"label":"Robert Alan Beuth","version":21,"id":"86475","lastModified":"1301903075000","name":"Robert Alan Beuth","type":"Person","_key":"69957"} +{"label":"Dancehall Queen","description":"Street vendor Marcia is scraping together a living in the ghetto section of Kingston, Jamaica. Her young daughter is being hounded by a rich sugar daddy who has been supporting the family; her brother's life is being threatened by a local thug. So, when the licentious patron threatens to abandon the family, and her brother breaks down under pressure, Marcia hits bottom. She needs to escape to a haven where she can get lost in fantasy; Marcia, don in sex-me-up clothing and outrageous glamour, fin","id":"19159","runtime":98,"imdbId":"tt0127497","version":273,"lastModified":"1301418392000","genre":"Drama","title":"Dancehall Queen","releaseDate":876441600000,"language":"en","type":"Movie","_key":"69958"} +{"label":"Don Letts","version":20,"id":"92073","lastModified":"1301902056000","name":"Don Letts","type":"Person","_key":"69959"} +{"label":"Audrey Reid","version":20,"id":"137218","lastModified":"1301902646000","name":"Audrey Reid","type":"Person","_key":"69960"} +{"label":"Carl Davis","version":29,"id":"24717","lastModified":"1301901796000","name":"Carl Davis","type":"Person","_key":"69961"} +{"label":"Mark Danvers","version":21,"id":"137217","lastModified":"1301902540000","name":"Mark Danvers","type":"Person","_key":"69962"} +{"label":"Henry Brown","version":18,"id":"106738","lastModified":"1301902832000","name":"Henry Brown","type":"Person","_key":"69963"} +{"label":"Marlon King","version":20,"id":"137254","lastModified":"1301902738000","name":"Marlon King","type":"Person","_key":"69964"} +{"label":"FernGully Collection","description":"No overview found.","id":"19160","title":"FernGully Collection","language":"en","lastModified":"1301416131000","version":77,"type":"Movie","_key":"69965"} +{"label":"The Art of War Collection","description":"No overview found.","id":"19161","version":65,"lastModified":"1300980679000","title":"The Art of War Collection","language":"en","type":"Movie","_key":"69966"} +{"label":"8MM Collection","description":"No overview found.","id":"19162","title":"8MM Collection","language":"en","lastModified":"1301906035000","version":113,"type":"Movie","_key":"69967"} +{"label":"The Land Before Time Collection","description":"No overview found.","id":"19163","version":178,"lastModified":"1301904938000","title":"The Land Before Time Collection","language":"en","type":"Movie","_key":"69968"} +{"label":"The Land Before Time IV: Journey Through the Mists","description":"No overview found.","id":"19164","runtime":74,"imdbId":"tt0116817","version":69,"lastModified":"1301903154000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3eb\/4bc955b9017a3c57fe0263eb\/the-land-before-time-iv-journey-through-the-mists-mid.jpg","genre":"Family","title":"The Land Before Time IV: Journey Through the Mists","releaseDate":850176000000,"language":"en","type":"Movie","_key":"69969"} +{"label":"The Land Before Time V: The Mysterious Island","description":"No overview found.","id":"19165","runtime":74,"imdbId":"tt0123950","version":119,"lastModified":"1301904015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f9\/4bc955ba017a3c57fe0263f9\/the-land-before-time-v-the-mysterious-island-mid.jpg","genre":"Family","title":"The Land Before Time V: The Mysterious Island","releaseDate":881625600000,"language":"en","type":"Movie","_key":"69970"} +{"label":"House Of 9","description":"Nine strangers wake up in a house with no recollection how they got there and no way out. The voice on the PA introduces them to a grisly game they must play. The prize is $5 million and their life.\n","id":"19166","runtime":86,"imdbId":"tt0395585","trailer":"http:\/\/www.youtube.com\/watch?v=Pl0GnMDdEF8","version":165,"lastModified":"1301903377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/407\/4bc955bb017a3c57fe026407\/house-of-9-mid.jpg","genre":"Drama","title":"House Of 9","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"69971"} +{"label":"Raffaello Degruttola","version":17,"id":"94137","lastModified":"1301902496000","name":"Raffaello Degruttola","type":"Person","_key":"69972"} +{"label":"Morven Christie","version":15,"id":"147884","lastModified":"1301903012000","name":"Morven Christie","type":"Person","_key":"69973"} +{"label":"Second in Command","description":"Armed insurgents attempt a coup d'etat in a troubled Eastern European country, and the president flees to the U.S. embassy for protection. When the U.S. ambassador is murdered by the ruthless and gun-happy rebels, it comes down to the second-in-command of the embassy, Sam Keenan, played by Belgian kickboxer Jean-Claude Van Damme, to use his amazing martial arts technique to defend the besieged.","id":"19167","runtime":91,"imdbId":"tt0458471","version":149,"lastModified":"1301904057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/415\/4bc955bc017a3c57fe026415\/second-in-command-mid.jpg","genre":"Action","title":"Second in Command","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"69974"} +{"label":"Alan Mckenna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22c\/4bf1ac0b017a3c320a00022c\/alan-mckenna-profile.jpg","version":23,"id":"86441","lastModified":"1301901861000","name":"Alan Mckenna","type":"Person","_key":"69975"} +{"label":"Perforama","description":"No overview found.","id":"19168","runtime":0,"imdbId":"tt0338645","version":32,"lastModified":"1300980680000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/367\/4d4f31605e73d617b7003367\/perforama-mid.jpg","title":"Perforama","releaseDate":1012953600000,"language":"en","type":"Movie","_key":"69976"} +{"label":"Nightmare Alley","description":"The movie follows the rise and fall of a con man \u2014 a story that begins and ends at a seedy travelling carnival. Stanton Carlisle (Tyrone Power) joins the carnival, working with \"Mademoiselle Zeena\" (Joan Blondell) and her alcoholic husband, Pete (Ian Keith).","id":"19169","runtime":110,"imdbId":"tt0039661","trailer":"http:\/\/www.youtube.com\/watch?v=idlYaKQ1yjw","version":73,"lastModified":"1301904581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/41e\/4bc955bd017a3c57fe02641e\/nightmare-alley-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Drama","title":"Nightmare Alley","releaseDate":-701568000000,"language":"en","type":"Movie","_key":"69977"} +{"label":"Ian Keith","version":25,"id":"84230","lastModified":"1301902141000","name":"Ian Keith","type":"Person","_key":"69978"} +{"label":"Mystery Street","description":"When the skeletal remains of a pregnant prostitute turn up on a Massachusetts beach the Barnstable cop Peter Morales (Montalban) teams up with Boston police and uses forensics with the help of Dr. McAdoo, a Harvard doctor (Bennett), to figure out who the woman is. The cop then tries to figure out how she died and, later, who killed her.","id":"19170","runtime":93,"imdbId":"tt0042771","version":56,"lastModified":"1301908273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/427\/4bc955be017a3c57fe026427\/mystery-street-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Crime","title":"Mystery Street","releaseDate":-613180800000,"language":"en","type":"Movie","_key":"69979"} +{"label":"Marshall Thompson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/22d\/4bf16f5b017a3c320b00022d\/marshall-thompson-profile.jpg","version":49,"id":"84233","lastModified":"1301901112000","name":"Marshall Thompson","type":"Person","_key":"69980"} +{"label":"Wally Maher","version":20,"id":"84234","lastModified":"1301902703000","name":"Wally Maher","type":"Person","_key":"69981"} +{"label":"Sudden Fear","description":"Myra Hudson (Crawford) is a successful Broadway playwright who rejects Lester Blaine (Palance) as the lead in her new play. Later, she meets Lester, is swept off her feet, and, after a brief courtship, marries him. When Lester learns Myra is writing her will and plans to leave the bulk of her fortune to a foundation, he plots her murder in cahoots with Irene Neves (Grahame), an old girlfriend.","id":"19171","runtime":110,"imdbId":"tt0045205","version":71,"lastModified":"1301904644000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/430\/4bc955bf017a3c57fe026430\/sudden-fear-mid.jpg","studio":"Joseph Kaufmann Productions","genre":"Film Noir","title":"Sudden Fear","releaseDate":-549676800000,"language":"en","type":"Movie","_key":"69982"} +{"label":"Diary of a Nymphomaniac","description":"A chronicle of the life of a middle-class French girl's sexual adventures, her then fall into prostitution, and her ultimate redemption.","id":"19173","runtime":95,"imdbId":"tt1111890","homepage":"http:\/\/www.diariodeunaninfomanalapelicula.com\/","version":94,"lastModified":"1301901843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43d\/4bc955c0017a3c57fe02643d\/diario-de-una-ninfomana-mid.jpg","studio":"IFC Films","genre":"Drama","title":"Diary of a Nymphomaniac","releaseDate":1224201600000,"language":"en","type":"Movie","_key":"69983"} +{"label":"Christian Molina","version":25,"id":"81159","lastModified":"1301902144000","name":"Christian Molina","type":"Person","_key":"69984"} +{"label":"Bel\u00e9n Fabra","version":26,"id":"81160","lastModified":"1301901560000","name":"Bel\u00e9n Fabra","type":"Person","_key":"69985"} +{"label":"Pedro Guti\u00e9rrez","version":22,"id":"84772","lastModified":"1301901862000","name":"Pedro Guti\u00e9rrez","type":"Person","_key":"69986"} +{"label":"Jos\u00e9 Chaves","version":22,"id":"84773","lastModified":"1301901862000","name":"Jos\u00e9 Chaves","type":"Person","_key":"69987"} +{"label":"Jorge Yaman","version":22,"id":"84774","lastModified":"1301901862000","name":"Jorge Yaman","type":"Person","_key":"69988"} +{"label":"Jaume Garc\u00eda Arija","version":22,"id":"84776","lastModified":"1301901862000","name":"Jaume Garc\u00eda Arija","type":"Person","_key":"69989"} +{"label":"Antonio Garrido","version":23,"id":"84775","lastModified":"1301901862000","name":"Antonio Garrido","type":"Person","_key":"69990"} +{"label":"Judith Diakhate","version":23,"id":"84777","lastModified":"1301901862000","name":"Judith Diakhate","type":"Person","_key":"69991"} +{"label":"Natasha Yarovenko","version":33,"id":"84778","lastModified":"1301901474000","name":"Natasha Yarovenko","type":"Person","_key":"69992"} +{"label":"Mariona Tena","version":22,"id":"84780","lastModified":"1301901717000","name":"Mariona Tena","type":"Person","_key":"69993"} +{"label":"Laura De Pedro","version":23,"id":"84779","lastModified":"1301901717000","name":"Laura De Pedro","type":"Person","_key":"69994"} +{"label":"Dolemite","description":"Dolemite is a pimp who was set up by Willie Greene and the cops, who have planted drugs, stolen furs, and guns in his trunk and got him sentenced to 20 years in jail. One day, Queen B and a warden planned to get him out of Jail and get Willie Green and Mitchell busted for what they did to him.","id":"19174","runtime":90,"imdbId":"tt0072895","trailer":"http:\/\/www.youtube.com\/watch?v=SIUEHsyt54I","version":104,"lastModified":"1301908581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4c1bb4d77b9aa117c0000071\/dolemite-mid.jpg","genre":"Action","title":"Dolemite","releaseDate":173404800000,"language":"en","type":"Movie","_key":"69995"} +{"label":"D'Urville Martin","version":21,"id":"109086","lastModified":"1301903076000","name":"D'Urville Martin","type":"Person","_key":"69996"} +{"label":"Lady Reed","version":18,"id":"108867","lastModified":"1301903068000","name":"Lady Reed","type":"Person","_key":"69997"} +{"label":"The Cowboy Way","description":"Two championship rodeo partners travel to New York to find their missing friend, Nacho Salazar who went missing there.","id":"19176","runtime":102,"imdbId":"tt0109493","version":117,"lastModified":"1301906660000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/453\/4bc955c5017a3c57fe026453\/the-cowboy-way-mid.jpg","studio":"Imagine Entertainment","genre":"Action","title":"The Cowboy Way","releaseDate":770601600000,"language":"en","type":"Movie","_key":"69998"} +{"label":"Angel Caban","version":20,"id":"84239","lastModified":"1301902540000","name":"Angel Caban","type":"Person","_key":"69999"} +{"label":"Joaqu\u00edn Mart\u00ednez","version":23,"id":"84240","lastModified":"1301902418000","name":"Joaqu\u00edn Mart\u00ednez","type":"Person","_key":"70000"} +{"label":"Gregg Champion","version":27,"id":"27236","lastModified":"1301901830000","name":"Gregg Champion","type":"Person","_key":"70001"} +{"label":"Anja & Viktor - I medgang og modgang","description":"I 'Anja og Viktor \u2013 I medgang og modgang', den femte Anja og Viktor-film, er parret kommet i pengemangel.\r\nDe bor sammen med deres lille datter i vennernes ramponerede \u00f8velokale i Sydhavnen, men da kommunens ivrige mand afsl\u00f8rer dem i at bruge \u00f8velokalet som bolig, og de nu regul\u00e6rt st\u00e5r p\u00e5 gaden, hvis de ikke skaffer penge til lejligheden, er familien i en presset situation.\r\n","id":"19177","runtime":100,"imdbId":"tt1266539","version":34,"lastModified":"1301416690000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/45c\/4bc955c6017a3c57fe02645c\/anja-viktor-i-medgang-og-modgang-mid.jpg","studio":"Nordisk Film","genre":"Comedy","title":"Anja & Viktor - I medgang og modgang","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"70002"} +{"label":"Vicki Berlin","version":19,"id":"84241","lastModified":"1301902628000","name":"Vicki Berlin","type":"Person","_key":"70003"} +{"label":"Karl Bille","version":19,"id":"84242","lastModified":"1301902453000","name":"Karl Bille","type":"Person","_key":"70004"} +{"label":"Amalie Bruun","version":19,"id":"84243","lastModified":"1301902628000","name":"Amalie Bruun","type":"Person","_key":"70005"} +{"label":"Helena Faurbye L\u00f8fgren","version":19,"id":"84245","lastModified":"1301902453000","name":"Helena Faurbye L\u00f8fgren","type":"Person","_key":"70006"} +{"label":"Sofie Lassen-Kahlke","version":22,"id":"84244","lastModified":"1301901849000","name":"Sofie Lassen-Kahlke","type":"Person","_key":"70007"} +{"label":"S\u00f8ren Frellesen","version":30,"id":"84246","lastModified":"1301902676000","name":"S\u00f8ren Frellesen","type":"Person","_key":"70008"} +{"label":"Four Bags Full","description":"No overview found.","id":"19178","runtime":80,"imdbId":"tt0049877","version":54,"lastModified":"1302057874000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0d9\/4c8a5ca97b9aa164990000d9\/la-traversee-de-paris-mid.jpg","title":"Four Bags Full","releaseDate":-396662400000,"language":"en","type":"Movie","_key":"70009"} +{"label":"Jeannette Batti","version":5,"id":"228810","lastModified":"1301904096000","name":"Jeannette Batti","type":"Person","_key":"70010"} +{"label":"A Different Loyalty","description":"No overview found.","id":"19180","runtime":96,"imdbId":"tt0326828","version":275,"lastModified":"1301904609000","genre":"Drama","title":"A Different Loyalty","releaseDate":1084665600000,"language":"en","type":"Movie","_key":"70011"} +{"label":"Damir Andrei","version":22,"id":"84248","lastModified":"1301902483000","name":"Damir Andrei","type":"Person","_key":"70012"} +{"label":"Edward Hibbert","version":22,"id":"84249","lastModified":"1301901925000","name":"Edward Hibbert","type":"Person","_key":"70013"} +{"label":"S\u00e4llskapsresan 2 - Snowroller","description":"Stig-Helmer takes another vacation with his norwegian friend Ole. This time it's time for a skiing vacation in the Alps. Of course, Stig-Helmer has never learnt downhill skiing, but he attends a ski school. And together they manage to charm two women also on vacation.","id":"19181","runtime":91,"imdbId":"tt0090115","version":52,"lastModified":"1302208214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/475\/4bc955c9017a3c57fe026475\/sallskapsresan-2-snowroller-mid.jpg","studio":"Svensk Filmindustri (SF)","title":"S\u00e4llskapsresan 2 - Snowroller","releaseDate":497232000000,"language":"en","type":"Movie","_key":"70014"} +{"label":"Lasse \u00c5berg","version":18,"id":"116511","lastModified":"1301902977000","name":"Lasse \u00c5berg","type":"Person","_key":"70015"} +{"label":"The Derby Stallion","description":"An alcoholic former horse-trainer perceives in a fifteen-year-old boy a unique gift of horsemanship and makes it possible for the boy to conceive his dream and pursue it.","id":"19183","runtime":98,"imdbId":"tt0451038","version":130,"lastModified":"1301004496000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/049\/4bf55d79017a3c7726000049\/the-derby-stallion-mid.jpg","genre":"Drama","title":"The Derby Stallion","releaseDate":1120435200000,"language":"en","type":"Movie","_key":"70016"} +{"label":"Le dernier combat","description":"The plot explores the devastation of civilization and issues of brutality, hostility and isolation. Pierre Jolivet stars as the main character (identified only as \"The Man\" in the end credits) who is menaced by \"The Brute\" (played by Jean Reno) on his journey through a world filled by people rendered nearly mute by some unknown incident.","id":"19184","runtime":90,"imdbId":"tt0085426","version":70,"lastModified":"1301904485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/48a\/4bc955cb017a3c57fe02648a\/le-dernier-combat-mid.jpg","studio":"Les Films du Loup","genre":"Action","title":"Le dernier combat","releaseDate":418435200000,"language":"en","type":"Movie","_key":"70017"} +{"label":"Maurice Lamy","version":17,"id":"94154","lastModified":"1301902884000","name":"Maurice Lamy","type":"Person","_key":"70018"} +{"label":"The Night of the Living Dead","description":"In this remake of the original classic film, a group of people are trapped inside a farmhouse as legions of the walking dead try to get inside and use them for food.","id":"19185","runtime":92,"imdbId":"tt0100258","version":125,"lastModified":"1301904457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49c\/4bc955cc017a3c57fe02649c\/night-of-the-living-dead-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Horror","title":"The Night of the Living Dead","releaseDate":656294400000,"language":"en","type":"Movie","_key":"70019"} +{"label":"McKee Anderson","version":18,"id":"90653","lastModified":"1301902453000","name":"McKee Anderson","type":"Person","_key":"70020"} +{"label":"The Parent Trap","description":"Hayley Mills plays twins who, unknown to their divorced parents, meet at a summer camp. Products of single parent households, they switch places (surprise!) so as to meet the parent they never knew, and then contrive to reunite them.","id":"19186","runtime":129,"imdbId":"tt0055277","version":101,"lastModified":"1301904278000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4a5\/4bc955cd017a3c57fe0264a5\/the-parent-trap-mid.jpg","genre":"Comedy","title":"The Parent Trap","releaseDate":-269222400000,"language":"en","type":"Movie","_key":"70021"} +{"label":"The Hebrew Hammer","description":"A Jewish blaxploitation hero saves Hanukkah from the clutches of Santa Claus's evil son.","id":"19187","runtime":85,"imdbId":"tt0317640","version":127,"lastModified":"1301907985000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b6\/4bc955d2017a3c57fe0264b6\/the-hebrew-hammer-mid.jpg","genre":"Action","title":"The Hebrew Hammer","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"70022"} +{"label":"Thuy Nga - PARIS BY NIGHT 89: In Korea KARAOKE 63","description":"No overview found.","id":"19188","runtime":0,"version":15,"lastModified":"1301906714000","title":"Thuy Nga - PARIS BY NIGHT 89: In Korea KARAOKE 63","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70023"} +{"label":"Excellent Cadavers","description":"Fact based story about the political battle that was waged against the Mafia in Sicily during the late 1980's and early 1990's. Chazz Palminteri plays Giovanni Falcone, a crusading prosecutor who tried to use money trails as a way to attack the mobsters. He is aided by a former mobster (F. Murray Abraham) who volunteers to turn state's evidence after his sons are killed by a renegade mob chief. Wi","id":"19189","runtime":86,"imdbId":"tt0151734","version":147,"lastModified":"1301904818000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d10\/4d7e08c87b9aa12e19011d10\/excellent-cadavers-mid.jpg","genre":"Documentary","title":"Excellent Cadavers","releaseDate":915148800000,"language":"en","type":"Movie","_key":"70024"} +{"label":"Arnoldo Fo\u00e0","version":29,"id":"84250","lastModified":"1301902318000","name":"Arnoldo Fo\u00e0","type":"Person","_key":"70025"} +{"label":"Ivo Garrani","version":27,"id":"84251","lastModified":"1301902224000","name":"Ivo Garrani","type":"Person","_key":"70026"} +{"label":"Francesco Benigno","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/275\/4c0148ab017a3c702b001275\/francesco-benigno-profile.jpg","biography":"Francesco Benigno (Palermo, 4 ottobre 1967) \u00e8 un attore italiano.","version":31,"birthday":"-70851600000","id":"84252","birthplace":"Palermo, Italy","lastModified":"1301902494000","name":"Francesco Benigno","type":"Person","_key":"70027"} +{"label":"Der Schatz der Azteken","description":"No overview found.","id":"19194","runtime":101,"imdbId":"tt0059682","version":41,"lastModified":"1301904226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/106\/4cabbe805e73d64dce000106\/der-schatz-der-azteken-mid.jpg","genre":"Adventure","title":"Der Schatz der Azteken","releaseDate":-152409600000,"language":"en","type":"Movie","_key":"70028"} +{"label":"Theresa Lorca","version":19,"id":"84260","lastModified":"1301902674000","name":"Theresa Lorca","type":"Person","_key":"70029"} +{"label":"Die Pyramide des Sonnengottes","description":"No overview found.","id":"19195","runtime":98,"imdbId":"tt0059621","version":38,"lastModified":"1301905580000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4cabbb975e73d64dcf00011e\/die-pyramide-des-sonnengottes-mid.jpg","genre":"Adventure","title":"Die Pyramide des Sonnengottes","releaseDate":-148608000000,"language":"en","type":"Movie","_key":"70030"} +{"label":"Kelo Henderson","version":20,"id":"84264","lastModified":"1301902703000","name":"Kelo Henderson","type":"Person","_key":"70031"} +{"label":"Durchs Wilde Kurdistan","description":"No overview found.","id":"19196","runtime":103,"imdbId":"tt0059139","version":48,"lastModified":"1302167602000","genre":"Adventure","title":"Durchs Wilde Kurdistan","releaseDate":-134438400000,"language":"en","type":"Movie","_key":"70032"} +{"label":"Mum & Dad","description":"Mum and Dad, and their 'adopted' children, Birdie & Elbie, work at the airport. The family live off whatever they scavenge from cargo holds, offices and hotels - including a steady stream of transient workers who populate the airport's soulless hub. When Lena, a young Polish office cleaner, is befriended by Birdie, she gets drawn into a nightmarish world of torture, murder and perversity.","id":"19197","runtime":84,"imdbId":"tt1129428","version":176,"lastModified":"1301907576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d0\/4bc955d5017a3c57fe0264d0\/mum-dad-mid.jpg","studio":"2am Films","genre":"Horror","title":"Mum & Dad","releaseDate":1230249600000,"language":"en","type":"Movie","_key":"70033"} +{"label":"Steven Sheil","version":19,"id":"84265","lastModified":"1301902675000","name":"Steven Sheil","type":"Person","_key":"70034"} +{"label":"Dido Miles","version":19,"id":"84267","lastModified":"1301902323000","name":"Dido Miles","type":"Person","_key":"70035"} +{"label":"Olga Fedori","version":19,"id":"84268","lastModified":"1301902323000","name":"Olga Fedori","type":"Person","_key":"70036"} +{"label":"Ainsley Howard","version":19,"id":"84269","lastModified":"1301902323000","name":"Ainsley Howard","type":"Person","_key":"70037"} +{"label":"Im Reiche des silbernen L\u00f6wen","description":"No overview found.","id":"19198","runtime":95,"imdbId":"tt0059308","version":51,"lastModified":"1301906727000","genre":"Adventure","title":"Im Reiche des silbernen L\u00f6wen","releaseDate":-126316800000,"language":"en","type":"Movie","_key":"70038"} +{"label":"Der \u00d6lprinz","description":"No overview found.","id":"19199","runtime":89,"imdbId":"tt0059958","version":38,"lastModified":"1301905321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/78f\/4caa5b765e73d643f000078f\/der-olprinz-mid.jpg","genre":"Adventure","title":"Der \u00d6lprinz","releaseDate":429494400000,"language":"en","type":"Movie","_key":"70039"} +{"label":"Shadows and Fog","description":"With a serial strangler on the loose, a bookkeeper wanders around town searching for the vigilante group intent on catching the killer.","id":"19200","runtime":85,"imdbId":"tt0105378","version":301,"lastModified":"1301905270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4dd\/4bc955d5017a3c57fe0264dd\/shadows-and-fog-mid.jpg","genre":"Comedy","title":"Shadows and Fog","releaseDate":699148800000,"language":"en","type":"Movie","_key":"70040"} +{"label":"Captain Clegg","description":"Captian Collier (Patrick Allen) arrives in and English coastal town with his band of navy men to investigate reports of illegal smuggling and bootlegging, only to find that he must also investigate reports of \"Marsh Phantoms,\" being said to ride on phantom horses through the marshes spreading terror to any who encounter them. ","id":"19201","runtime":80,"imdbId":"tt0056277","version":71,"lastModified":"1301907244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e7\/4bc955d6017a3c57fe0264e7\/captain-clegg-mid.jpg","studio":"Hammer Film Productions","genre":"Adventure","title":"Captain Clegg","releaseDate":-238377600000,"language":"en","type":"Movie","_key":"70041"} +{"label":"Peter Graham Scott","version":23,"id":"73984","lastModified":"1301901777000","name":"Peter Graham Scott","type":"Person","_key":"70042"} +{"label":"Yvonne Romain","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/12f\/4c24f7b77b9aa1446b00012f\/yvonne-romain-profile.jpg","version":28,"id":"84285","lastModified":"1301901985000","name":"Yvonne Romain","type":"Person","_key":"70043"} +{"label":"Graduation","description":"Four best friends, about to graduate from high school, must find a way to raise money to help a family member in need. When one of them discovers her banker father having an affair, the foursome plots to rob his bank during graduation ceremonies. When things don't go according to plan, they end up learning more about themselves in one day than they ever did in school.","id":"19203","runtime":89,"imdbId":"tt0475286","version":113,"lastModified":"1301907988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4f5\/4bc955d8017a3c57fe0264f5\/graduation-mid.jpg","studio":"Blumhouse Productions","genre":"Action","title":"Graduation","releaseDate":1177372800000,"language":"en","type":"Movie","_key":"70044"} +{"label":"Shannon Lucio","version":20,"id":"84299","lastModified":"1301902161000","name":"Shannon Lucio","type":"Person","_key":"70045"} +{"label":"Chris Lowell","version":20,"id":"84300","lastModified":"1301902528000","name":"Chris Lowell","type":"Person","_key":"70046"} +{"label":"The Beyond","description":"Behind this doorway lie the terrifying and unspeakable secrets of hell. No one who sees it lives to describe it. And you shall live in darkness for all eternity.","id":"19204","runtime":87,"imdbId":"tt0082307","trailer":"http:\/\/www.youtube.com\/watch?v=ViI4-CY1aT4","version":183,"lastModified":"1301903676000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/08a\/4c2b01c57b9aa15e9b00008a\/e-tu-vivrai-nel-terrore-l-aldila-mid.jpg","studio":"Fulvia Film","genre":"Horror","title":"The Beyond","releaseDate":357350400000,"language":"en","type":"Movie","_key":"70047"} +{"label":"Anthony Flees","version":20,"id":"84302","lastModified":"1301902382000","name":"Anthony Flees","type":"Person","_key":"70048"} +{"label":"Giovanni De Nava","version":21,"id":"84304","lastModified":"1301902725000","name":"Giovanni De Nava","type":"Person","_key":"70049"} +{"label":"Michele Mirabella","version":22,"id":"84306","lastModified":"1301902359000","name":"Michele Mirabella","type":"Person","_key":"70050"} +{"label":"Gianpaolo Saccarola","version":23,"id":"84309","lastModified":"1301902711000","name":"Gianpaolo Saccarola","type":"Person","_key":"70051"} +{"label":"Cthulhu","description":"A Seattle history professor, drawn back to his estranged family on the Oregon coast to execute his late mother's estate, is reaquainted with his best friend from childhood, with whom he has a long-awaited tryst. Caught in an accelerating series of events, he discovers aspects of his father's New Age cult which take on a dangerous and apocalyptic significance.","id":"19205","runtime":100,"imdbId":"tt0478126","version":121,"lastModified":"1301905402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50c\/4bc955da017a3c57fe02650c\/cthulhu-mid.jpg","genre":"Horror","title":"Cthulhu","releaseDate":1175299200000,"language":"en","type":"Movie","_key":"70052"} +{"label":"Dan Gildark","version":19,"id":"84303","lastModified":"1301902628000","name":"Dan Gildark","type":"Person","_key":"70053"} +{"label":"Casey Curran","version":19,"id":"84305","lastModified":"1301902628000","name":"Casey Curran","type":"Person","_key":"70054"} +{"label":"Hunter Stroud","version":19,"id":"84307","lastModified":"1301902628000","name":"Hunter Stroud","type":"Person","_key":"70055"} +{"label":"Rob Hamm","version":19,"id":"84308","lastModified":"1301902236000","name":"Rob Hamm","type":"Person","_key":"70056"} +{"label":"The Perfect Sleep","description":"In a timeless city, a man with no name returns to the violent, brutal domain of assassins he left ten years before \u2013 back when they dubbed him The Mad Monk for his disregard for his own life and his intense devotion to one woman, Porphyria; a beautiful, luminescent woman; the girl he grew up with; the love of his life; the one thing he has ever wanted; the one thing he can never have.","id":"19206","runtime":99,"imdbId":"tt0435716","version":165,"lastModified":"1301414656000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/52d\/4bc955e2017a3c57fe02652d\/the-perfect-sleep-mid.jpg","genre":"Action","title":"The Perfect Sleep","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"70057"} +{"label":"Anton Pardoe","version":19,"id":"9389","lastModified":"1301901763000","name":"Anton Pardoe","type":"Person","_key":"70058"} +{"label":"Sam Thakur","version":20,"id":"84310","lastModified":"1301902537000","name":"Sam Thakur","type":"Person","_key":"70059"} +{"label":"Dominiquie Vandenberg","version":21,"id":"84311","lastModified":"1301902300000","name":"Dominiquie Vandenberg","type":"Person","_key":"70060"} +{"label":"John Fleck","version":20,"id":"84312","lastModified":"1301902533000","name":"John Fleck","type":"Person","_key":"70061"} +{"label":"Anthony Dilio","version":19,"id":"84313","lastModified":"1301902475000","name":"Anthony Dilio","type":"Person","_key":"70062"} +{"label":"Keith Allan","version":19,"id":"84314","lastModified":"1301902475000","name":"Keith Allan","type":"Person","_key":"70063"} +{"label":"Jeremy Alter","version":21,"id":"9388","lastModified":"1301901437000","name":"Jeremy Alter","type":"Person","_key":"70064"} +{"label":"The Combination","description":"Set in the maligned western suburbs of Sydney, Lebanese-Australian John gets out of gaol to discover his younger brother Charlie is caught up with drugs, hookers and crime. Charlie oscillates between the streets and school. Daily clashes between Scott and Charlie's gang escalate. This feud spills into the streets in a territory and identity battle that turns bloody.","id":"19208","runtime":96,"imdbId":"tt1347515","version":164,"lastModified":"1301906491000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/53f\/4bc955e4017a3c57fe02653f\/the-combination-mid.jpg","studio":"See Thru Films","genre":"Drama","title":"The Combination","releaseDate":1235606400000,"language":"en","type":"Movie","_key":"70065"} +{"label":"George Basha","version":19,"id":"85009","lastModified":"1301902235000","name":"George Basha","type":"Person","_key":"70066"} +{"label":"Ali Haider","version":19,"id":"85010","lastModified":"1301902062000","name":"Ali Haider","type":"Person","_key":"70067"} +{"label":"Clare Bowen","version":21,"id":"85011","lastModified":"1301902628000","name":"Clare Bowen","type":"Person","_key":"70068"} +{"label":"White Water Summer","description":"The story of a shy boy who gets convinced by his parents to spend a few summer days in the mountains. So, he joins a group, and the vacation begins! Unfortunately, things turn out to be a little tough for our small friend.","id":"19209","runtime":90,"imdbId":"tt0094318","version":130,"lastModified":"1301906547000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/54d\/4bc955e5017a3c57fe02654d\/white-water-summer-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Action","title":"White Water Summer","releaseDate":552096000000,"language":"en","type":"Movie","_key":"70069"} +{"label":"National Lampoon Adam & Eve","description":"In the tradition of National Lampoon's Animal House and National Lampoon's Van Wilder comes this wildly hilarious comedy about a guy who wants to date a girl who wants to wait. Adam (Cameron Douglas) is a typical college-aged guy, which is to say he wants sex 24 hours a day. But when he meets, and falls for, Eve (Emmanuelle Chriqui) a scorchingly hot co-ed who's still very attached to her virginity, the waiting game is on! While his college buddies score right and left, and campus hotties make t","id":"19211","runtime":0,"imdbId":"tt0391728","version":38,"lastModified":"1301907244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/556\/4bc955e5017a3c57fe026556\/national-lampoon-adam-eve-mid.jpg","title":"National Lampoon Adam & Eve","releaseDate":1206057600000,"language":"en","type":"Movie","_key":"70070"} +{"label":"Cameron Douglas","version":22,"id":"84315","lastModified":"1301901946000","name":"Cameron Douglas","type":"Person","_key":"70071"} +{"label":"A Simple Promise","description":"No overview found.","id":"19212","runtime":95,"imdbId":"tt0800203","version":75,"lastModified":"1301418850000","genre":"Drama","title":"A Simple Promise","releaseDate":1211846400000,"language":"en","type":"Movie","_key":"70072"} +{"label":"Layla Kayleigh","version":19,"id":"84316","lastModified":"1301902674000","name":"Layla Kayleigh","type":"Person","_key":"70073"} +{"label":"Wallace Demarria","version":19,"id":"84317","lastModified":"1301902674000","name":"Wallace Demarria","type":"Person","_key":"70074"} +{"label":"National Lampoon's Pledge This","description":"No overview found.","id":"19213","runtime":91,"imdbId":"tt0417056","version":168,"lastModified":"1301904984000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55f\/4bc955e9017a3c57fe02655f\/national-lampoon-s-pledge-this-mid.jpg","genre":"Comedy","title":"National Lampoon's Pledge This","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"70075"} +{"label":"William Heins","version":20,"id":"87193","lastModified":"1301902707000","name":"William Heins","type":"Person","_key":"70076"} +{"label":"Passion of Mind","description":"When Marie, a widow in Provence with two daughters, locks her bedroom door and goes to sleep, she dreams about Marty, a literary agent in Manhattan who dreams equally vividly about Marie. The women look alike. Marie meets William who begins to court her. Marty meets Aaron, an accountant, becomes his friend and then his lover. Both women tell their lovers about their dream life. William is jealous, Aaron is accepting. Even though they've become lovers, Marie won't fall asleep next to William. Mar","id":"19214","runtime":105,"imdbId":"tt0160644","version":124,"lastModified":"1301905058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/568\/4bc955ea017a3c57fe026568\/passion-of-mind-mid.jpg","studio":"Lakeshore Entertainment","genre":"Drama","title":"Passion of Mind","releaseDate":947203200000,"language":"en","tagline":"What if you had two lives at once. What if you knew that one life took place only in your dreams. What if you didn't know which life was real.","type":"Movie","_key":"70077"} +{"label":"Alain Berliner","version":22,"id":"96972","lastModified":"1301902138000","name":"Alain Berliner","type":"Person","_key":"70078"} +{"label":"After Innocence","description":"A moving account of the experiences of men exonerated after years, and sometimes decades, in prison following newly found DNA evidence.","id":"19215","runtime":95,"imdbId":"tt0436039","version":140,"lastModified":"1302023623000","genre":"Documentary","title":"After Innocence","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70079"} +{"label":"The Prisoner of Second Avenue","description":"Mel Edison has just lost his job after many years and now has to cope with being unemployed at middle age during an intense NYC heat wave.","id":"19221","runtime":98,"imdbId":"tt0072034","version":117,"lastModified":"1302128776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/571\/4bc955eb017a3c57fe026571\/the-prisoner-of-second-avenue-mid.jpg","studio":"Warner Bros. Pictures","genre":"Comedy","title":"The Prisoner of Second Avenue","releaseDate":163987200000,"language":"en","type":"Movie","_key":"70080"} +{"label":"Florence Stanley","version":23,"id":"84323","lastModified":"1301902628000","name":"Florence Stanley","type":"Person","_key":"70081"} +{"label":"Maxine Stuart","version":20,"id":"84324","lastModified":"1301902628000","name":"Maxine Stuart","type":"Person","_key":"70082"} +{"label":"Ed Peck","version":20,"id":"84325","lastModified":"1301902628000","name":"Ed Peck","type":"Person","_key":"70083"} +{"label":"Gene Blakely","version":24,"id":"84326","lastModified":"1301902695000","name":"Gene Blakely","type":"Person","_key":"70084"} +{"label":"Ivor Francis","version":20,"id":"84327","lastModified":"1301902628000","name":"Ivor Francis","type":"Person","_key":"70085"} +{"label":"Stack Pierce","version":22,"id":"84328","lastModified":"1301902664000","name":"Stack Pierce","type":"Person","_key":"70086"} +{"label":"Patricia Marshall","version":20,"id":"84329","lastModified":"1301902628000","name":"Patricia Marshall","type":"Person","_key":"70087"} +{"label":"Dee Carroll","version":20,"id":"84330","lastModified":"1301902628000","name":"Dee Carroll","type":"Person","_key":"70088"} +{"label":"Ketty Lester","version":20,"id":"84331","lastModified":"1301902628000","name":"Ketty Lester","type":"Person","_key":"70089"} +{"label":"Parasomnia","description":"Laura Baxter is a young woman, literally a \"sleeping beauty,\" who suffers from a medical condition called \"parasomnia.\" A childhood accident victim, she is actually sleeping her life away, awakening briefly on rare occasions. Art student Danny Sloan falls in love with her, unaware that her hospital neighbor, a terrifying mass murderer and mesmerist named Byron Volpe has other, more sinister plans.","id":"19222","runtime":0,"imdbId":"tt0922547","version":172,"lastModified":"1302039542000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35a\/4bf20d28017a3c320d00035a\/parasomnia-mid.jpg","genre":"Horror","title":"Parasomnia","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"70090"} +{"label":"Dylan Purcell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/308\/4bf20e77017a3c3212000308\/dylan-purcell-profile.jpg","version":16,"id":"96590","lastModified":"1301902883000","name":"Dylan Purcell","type":"Person","_key":"70091"} +{"label":"Alison Brie","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/029\/4bd3ea2d017a3c7fb2000029\/alison-brie-profile.jpg","biography":"Alison Brie was born in Pasadena, California. Her mother is Jewish and Brie began her career acting onstage at the Jewish Community Center in Southern California. She graduated from the California Institute of the Arts with a bachelor's in theater. Prior to becoming a television actress, Brie had worked as a clown at birthday parties, and performed in local theatrical plays in California.\n\nOne of Brie's first television roles was the minor character Nina, a novice hairdresser, on Hannah Montana.","version":21,"birthday":"441500400000","id":"88029","birthplace":"Pasadena, California","lastModified":"1301902712000","name":"Alison Brie","type":"Person","_key":"70092"} +{"label":"Kathryn Leigh Scott","version":16,"id":"101336","lastModified":"1301902884000","name":"Kathryn Leigh Scott","type":"Person","_key":"70093"} +{"label":"Janet Tracy Keijser","version":18,"id":"98871","lastModified":"1301902665000","name":"Janet Tracy Keijser","type":"Person","_key":"70094"} +{"label":"A Pure Formality","description":"Onoff (Depardieu,) is a famous writer, now a recluse. The Inspector (Polanski,) is suspicious when Onoff is brought into the station one night, disoriented and suffering a kind of amnesia. In an isolated, rural police station, the Inspector tries to establish the events surrounding a killing, to reach a startling resolution.","id":"19223","runtime":108,"imdbId":"tt0110917","version":66,"lastModified":"1301903724000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57f\/4bc955ec017a3c57fe02657f\/una-pura-formalita-mid.jpg","studio":"Cecchi Gori Group Tiger Cinematografica","genre":"Crime","title":"A Pure Formality","releaseDate":769219200000,"language":"en","type":"Movie","_key":"70095"} +{"label":"Dog Tags","description":"Raised in a single parent family by his mother Nate Merritt, develops a friendship with a gay man whilst on leave from the US marines.","id":"19235","runtime":90,"imdbId":"tt1212408","homepage":"http:\/\/www.tlavideo.com\/product\/2-0-264800_dog-tags.html?sn=1","version":150,"lastModified":"1301904004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/588\/4bc955ed017a3c57fe026588\/dog-tags-mid.jpg","studio":"TLA Releasing","genre":"Drama","title":"Dog Tags","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"70096"} +{"label":"Amy Lindsay","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1ee\/4bf17bb0017a3c32130001ee\/amy-lindsay-profile.jpg","version":24,"id":"84343","lastModified":"1302049015000","name":"Amy Lindsay","type":"Person","_key":"70097"} +{"label":"Paul Preiss","version":20,"id":"84344","lastModified":"1302031021000","name":"Paul Preiss","type":"Person","_key":"70098"} +{"label":"Hoyt Richards","version":19,"id":"84785","lastModified":"1301902235000","name":"Hoyt Richards","type":"Person","_key":"70099"} +{"label":"Keythe Farley","version":17,"id":"84789","lastModified":"1301902062000","name":"Keythe Farley","type":"Person","_key":"70100"} +{"label":"Diane Davisson","version":19,"id":"84790","lastModified":"1301902235000","name":"Diane Davisson","type":"Person","_key":"70101"} +{"label":"Bart Fletcher","version":21,"id":"84791","lastModified":"1301902537000","name":"Bart Fletcher","type":"Person","_key":"70102"} +{"label":"Barry J. Ratcliffe","version":17,"id":"84792","lastModified":"1301902062000","name":"Barry J. Ratcliffe","type":"Person","_key":"70103"} +{"label":"Chris Carlisle","version":20,"id":"84560","lastModified":"1301901946000","name":"Chris Carlisle","type":"Person","_key":"70104"} +{"label":"Bobby Zelsdorf","version":17,"id":"84795","lastModified":"1301902062000","name":"Bobby Zelsdorf","type":"Person","_key":"70105"} +{"label":"Damion Dietz","version":20,"id":"84793","lastModified":"1301901534000","name":"Damion Dietz","type":"Person","_key":"70106"} +{"label":"Santa Sangre","description":"A young man is confined in a mental hospital. Through a flashback we see that he was traumatized as a child, when he and his family were circus performers: he saw his father cut off the arms of his mother, a religious fanatic and leader of the heretical church of Santa Sangre (\"Holy Blood\"), and then commit suicide. Back in the present, he escapes and rejoins his surviving and armless mother.","id":"19236","runtime":123,"imdbId":"tt0098253","trailer":"http:\/\/www.youtube.com\/watch?v=zJjXq6oj7Tg","version":139,"lastModified":"1301905058000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/599\/4bc955ee017a3c57fe026599\/santa-sangre-mid.jpg","studio":"Productora F%C3%ADlmica Real","genre":"Drama","title":"Santa Sangre","releaseDate":609984000000,"language":"en","tagline":"Forget Everything You Have Ever Seen","type":"Movie","_key":"70107"} +{"label":"Axel Jodorowsky","version":17,"id":"143443","lastModified":"1301902543000","name":"Axel Jodorowsky","type":"Person","_key":"70108"} +{"label":"Blanca Guerra","version":29,"id":"86489","lastModified":"1301902508000","name":"Blanca Guerra","type":"Person","_key":"70109"} +{"label":"Guy Stockwell","version":21,"id":"93655","lastModified":"1301902547000","name":"Guy Stockwell","type":"Person","_key":"70110"} +{"label":"Thelma Tixou","version":17,"id":"143444","lastModified":"1301902516000","name":"Thelma Tixou","type":"Person","_key":"70111"} +{"label":"Sabrina Dennison","version":17,"id":"143445","lastModified":"1301902516000","name":"Sabrina Dennison","type":"Person","_key":"70112"} +{"label":"Faviola Elenka Tapia","version":17,"id":"143446","lastModified":"1301902547000","name":"Faviola Elenka Tapia","type":"Person","_key":"70113"} +{"label":"Kill Theory","description":"Whilst celebrating a graduation at a secluded vacation home, a group of college students find themselves targeted by a sadistic killer who forces them to play a deadly game of killing one another in order to survive.","id":"19237","runtime":82,"imdbId":"tt0893532","version":123,"lastModified":"1301904873000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ac\/4bc955ef017a3c57fe0265ac\/kill-theory-mid.jpg","studio":"Bender-Spink Inc.","genre":"Horror","title":"Kill Theory","releaseDate":1264723200000,"language":"en","type":"Movie","_key":"70114"} +{"label":"Chris Moore","version":40,"id":"6627","lastModified":"1302166588000","name":"Chris Moore","type":"Person","_key":"70115"} +{"label":"Ryanne Duzich","version":17,"id":"115728","lastModified":"1301902524000","name":"Ryanne Duzich","type":"Person","_key":"70116"} +{"label":"Teddy Dunn","version":16,"id":"115729","lastModified":"1301902141000","name":"Teddy Dunn","type":"Person","_key":"70117"} +{"label":"Patrick John Flueger","version":18,"id":"115730","lastModified":"1301903064000","name":"Patrick John Flueger","type":"Person","_key":"70118"} +{"label":"Steffi Wickens","version":16,"id":"115731","lastModified":"1301902984000","name":"Steffi Wickens","type":"Person","_key":"70119"} +{"label":"Table for Three","description":"A suddenly single guy invites what he thinks is a perfect couple to move into his apartment, only to discover they quickly insert themselves into all aspects of his life.","id":"19238","runtime":93,"imdbId":"tt1238304","version":134,"lastModified":"1301904952000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b9\/4bc955f0017a3c57fe0265b9\/table-for-three-mid.jpg","genre":"Comedy","title":"Table for Three","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"70120"} +{"label":"Backwoods","description":"While camping in Jasper Park up North California, the couple Tom Alan Smithee and Gwen Marie Holden are attacked by a group of strangers; Tom is immediately killed and Gwen is abducted by the men to an underground facility to breed.","id":"19241","runtime":85,"imdbId":"tt1153100","version":272,"lastModified":"1301416050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c2\/4bc955f4017a3c57fe0265c2\/backwoods-mid.jpg","genre":"Horror","title":"Backwoods","releaseDate":1199318400000,"language":"en","type":"Movie","_key":"70121"} +{"label":"On The Buses","description":"Stan gets a little annoyed when his Mum and Sister keep buying expensive items on hire purchase, but the money he earns for overtime working as a bus driver means that he can afford it... just! His job is secure, as bus drivers are hard to come by, and his overtime prospects are good, until the bus company decide to revoke a long standing rule and employ women bus drivers. Aghast at the thought of","id":"19243","runtime":88,"imdbId":"tt0067528","version":86,"lastModified":"1302023506000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d3\/4bc955f5017a3c57fe0265d3\/on-the-buses-mid.jpg","genre":"Comedy","title":"On The Buses","releaseDate":47174400000,"language":"en","type":"Movie","_key":"70122"} +{"label":"Michael Robbins","version":20,"id":"84359","lastModified":"1301902235000","name":"Michael Robbins","type":"Person","_key":"70123"} +{"label":"Anna Karen","version":21,"id":"84360","lastModified":"1301902235000","name":"Anna Karen","type":"Person","_key":"70124"} +{"label":"Stephen Lewis","version":20,"id":"84362","lastModified":"1301902235000","name":"Stephen Lewis","type":"Person","_key":"70125"} +{"label":"Bob Grant","version":20,"id":"84364","lastModified":"1301902628000","name":"Bob Grant","type":"Person","_key":"70126"} +{"label":"Harry Booth","version":19,"id":"84365","lastModified":"1301902628000","name":"Harry Booth","type":"Person","_key":"70127"} +{"label":"Mr. Untouchable","description":"The true-life story of a Harlem's notorious Nicky Barnes, a junkie turned multimillionaire drug-lord. Follow his life story from his rough childhood to the last days of his life.","id":"19244","runtime":92,"imdbId":"tt1086340","homepage":"http:\/\/www.blowbackproductions.com\/mr_untouchable.shtml","version":192,"lastModified":"1302215018000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dc\/4bc955f6017a3c57fe0265dc\/mr-untouchable-mid.jpg","studio":"Blowback Productions","genre":"Crime","title":"Mr. Untouchable","releaseDate":1193356800000,"language":"en","type":"Movie","_key":"70128"} +{"label":"Marc Levin","version":23,"id":"82286","lastModified":"1301901645000","name":"Marc Levin","type":"Person","_key":"70129"} +{"label":"Leroy 'Nicky' Barnes","version":17,"id":"84391","lastModified":"1301902235000","name":"Leroy 'Nicky' Barnes","type":"Person","_key":"70130"} +{"label":"Don Ferrarone","version":19,"id":"84392","lastModified":"1301902235000","name":"Don Ferrarone","type":"Person","_key":"70131"} +{"label":"Thelma Grant","version":19,"id":"84393","lastModified":"1301901862000","name":"Thelma Grant","type":"Person","_key":"70132"} +{"label":"Carol Hawkins-Williams","version":19,"id":"84394","lastModified":"1301902235000","name":"Carol Hawkins-Williams","type":"Person","_key":"70133"} +{"label":"Joseph Jazz Hayden","version":19,"id":"84395","lastModified":"1301902628000","name":"Joseph Jazz Hayden","type":"Person","_key":"70134"} +{"label":"Leon Scrap Batts","version":19,"id":"84396","lastModified":"1301902628000","name":"Leon Scrap Batts","type":"Person","_key":"70135"} +{"label":"Animalympics","description":"Animalympics is all about the Animal Olympics Contest where all the animals around the world gather to take part in everything from skiing in North America to the very long marathon race in humid conditions. With lively music provided by Graham Gouldman, the film is very different to other cartoons, being more of a drama-comedy than cartoon. ","id":"19247","runtime":78,"imdbId":"tt0078780","version":50,"lastModified":"1301905682000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e5\/4bc955f6017a3c57fe0265e5\/animalympics-mid.jpg","genre":"Animation","title":"Animalympics","releaseDate":318211200000,"language":"en","type":"Movie","_key":"70136"} +{"label":"Holiday On The Buses","description":"Due to a female passenger falling out of her top whilst running for the bus Stan is distracted and crashes the bus resulting in the depot managers car being written off. As a result Stan, Jack and Blakey are fired. Stan and Jack soon get new jobs as a bus crew at a Pontins holiday resort but discover that Blakey has also gotten a job there as the chief security guard.","id":"19249","runtime":85,"imdbId":"tt0071613","version":67,"lastModified":"1301905280000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5ee\/4bc955f7017a3c57fe0265ee\/holiday-on-the-buses-mid.jpg","genre":"Comedy","title":"Holiday On The Buses","releaseDate":125712000000,"language":"en","type":"Movie","_key":"70137"} +{"label":"Bryan Izzard","version":19,"id":"84397","lastModified":"1301902235000","name":"Bryan Izzard","type":"Person","_key":"70138"} +{"label":"The Memory Thief","description":"A Los Angeles tollbooth clerk becomes obsessed with the Holocaust after meeting a survivor.","id":"19251","runtime":0,"imdbId":"tt0437250","version":109,"lastModified":"1301905777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5fc\/4bc955f8017a3c57fe0265fc\/the-memory-thief-mid.jpg","genre":"Drama","title":"The Memory Thief","releaseDate":1176508800000,"language":"en","type":"Movie","_key":"70139"} +{"label":"Carry On Abroad","description":"A group of holidaymakers head for the Spanish resort of Elsbels for a 4-day visit. When they get there, they find the Hotel still hasn't been finished being built, and the weather is awful. And there is something strange about the staff. They all look very similar. To top it all off, the weather seems to be having an adverse affect on the Hotel's foundations... ","id":"19252","runtime":88,"imdbId":"tt0069847","trailer":"http:\/\/www.youtube.com\/watch?v=0phJGVh1mM0","version":123,"lastModified":"1301906171000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/605\/4bc955f8017a3c57fe026605\/carry-on-abroad-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Carry On Abroad","releaseDate":92016000000,"language":"en","type":"Movie","_key":"70140"} +{"label":"Jimmy Logan","version":23,"id":"84398","lastModified":"1301902537000","name":"Jimmy Logan","type":"Person","_key":"70141"} +{"label":"June Whitfield","version":24,"id":"47743","lastModified":"1301902185000","name":"June Whitfield","type":"Person","_key":"70142"} +{"label":"Sally Geeson","version":19,"id":"95131","lastModified":"1301902699000","name":"Sally Geeson","type":"Person","_key":"70143"} +{"label":"Carol Hawkins","version":18,"id":"117547","lastModified":"1301902712000","name":"Carol Hawkins","type":"Person","_key":"70144"} +{"label":"Carry On Cabby","description":"Speedee Taxis is a great success, which means its workaholic owner Charlie starts neglecting Peggy, his wife. Suddenly a fleet of rival taxis appears from nowhere and start pinching all the fares. The rivals are Glamcabs, and they have a secret weapon. All their drivers are very attractive women! Who's behind Glamcabs? It's open warfare and only one fleet can survive!","id":"19254","runtime":91,"imdbId":"tt0056912","trailer":"http:\/\/www.youtube.com\/watch?v=Oh_etDcImtg","version":76,"lastModified":"1301908273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/60e\/4bc955f9017a3c57fe02660e\/carry-on-cabby-mid.jpg","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Cabby","releaseDate":-207878400000,"language":"en","type":"Movie","_key":"70145"} +{"label":"Esma Cannon","version":24,"id":"84404","lastModified":"1301902515000","name":"Esma Cannon","type":"Person","_key":"70146"} +{"label":"Bill Owen","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/072\/4c21b8487b9aa13753000072\/bill-owen-profile.jpg","biography":"This Britisher was born of humble, working class beginnings and became well-known for playing the same kind of blokes on both film and TV. Born William Rowbotham, he was the son of a tram driver and laundress. He knew early on that entertaining was the life for him. He worked in odd jobs as a printer's apprentice and band vocalist to make do and, when he became of legal age, started playing drums in London nightclubs and toured music halls with his own cabaret act to pay for acting classes. He e","version":31,"id":"84405","lastModified":"1301901985000","name":"Bill Owen","type":"Person","_key":"70147"} +{"label":"Judith Furse","version":21,"id":"40947","lastModified":"1301901862000","name":"Judith Furse","type":"Person","_key":"70148"} +{"label":"Ambrosine Phillpotts","version":19,"id":"84406","lastModified":"1301902628000","name":"Ambrosine Phillpotts","type":"Person","_key":"70149"} +{"label":"Away We Go","description":"Verona De Tessant (Rudolph) and Burt Farlander (Krasinski) moved to Colorado to be close to Burt's Parents. Now six months pregnant Verona and Burt are shocked to hear that his parents are moving to Belgium leaving them with no support structure in a place they hate to live. They set off on a whirlwind tour of the country, visiting old acquaintances to see where they'd like to settle down to raise a family. Along the way they realize that the journey is less about discovering where they want ","id":"19255","runtime":98,"imdbId":"tt1176740","trailer":"http:\/\/www.youtube.com\/watch?v=fhTXo-FJMY4","version":199,"lastModified":"1301902050000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/61f\/4bc955fe017a3c57fe02661f\/away-we-go-mid.jpg","studio":"Big Beach Productions","genre":"Comedy","title":"Away We Go","releaseDate":1245974400000,"language":"en","type":"Movie","_key":"70150"} +{"label":"Jim Gaffigan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/39f\/4c7a442a5e73d613d600039f\/jim-gaffigan-profile.jpg","biography":"<div>Jim  has proven himself a major talent  beloved to a wide range of audiences after achieving milestones in stand-up, acting<\/div><div>and writing. As approachable as he is edgy, JIm is responsible for some of the funniest and most memorable moment in recent television (primetime,\u2028cable and late-night circuit and film. \u2028\u2028As a stand-up comedian, Gaffigan\u2019s clever, quiet style has earned him an unprecedented number of appearances on both CBS\u2019 LATE SHOW WITH DAVID LETTERMAN\u2028and NBC\u2019s ","version":34,"id":"84407","lastModified":"1301901279000","name":"Jim Gaffigan","type":"Person","_key":"70151"} +{"label":"Samantha Pryor","version":24,"id":"84408","lastModified":"1301902391000","name":"Samantha Pryor","type":"Person","_key":"70152"} +{"label":"Conor Carroll","version":27,"id":"84409","lastModified":"1301901940000","name":"Conor Carroll","type":"Person","_key":"70153"} +{"label":"Bailey Harkins","version":24,"id":"84410","lastModified":"1301902202000","name":"Bailey Harkins","type":"Person","_key":"70154"} +{"label":"Brendan Spitz","version":24,"id":"84411","lastModified":"1301902375000","name":"Brendan Spitz","type":"Person","_key":"70155"} +{"label":"Jaden Spitz","version":24,"id":"84412","lastModified":"1301902523000","name":"Jaden Spitz","type":"Person","_key":"70156"} +{"label":"Mobile Suit Zeta Gundam A New Translation I: Heirs to the Stars","description":"The first of 3 digitally remastered compilation movies of the Zeta Gundam TV series, Heirs to the Stars takes place in UC 0087, 7 years after the end of the One Year War and following the events of Operation Stardust, the Earth Federation establishes the elite counter-insurgency division called the Titans to hunt down remaining pockets of Zeon resistance.","id":"19256","runtime":94,"imdbId":"tt0435202","homepage":"http:\/\/www.z-gundam.net\/z1","version":31,"lastModified":"1301905244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/631\/4bc95600017a3c57fe026631\/kido-senshi-z-gandamu-hoshi-o-tsugu-mono-mid.jpg","title":"Mobile Suit Zeta Gundam A New Translation I: Heirs to the Stars","releaseDate":1117238400000,"language":"en","type":"Movie","_key":"70157"} +{"label":"Mobile Suit Zeta Gundam A New Translation II: Lovers","description":"87 years since the day when mankind first immigrated into space colony along the orbit of Earth, militarism had etched into the corrupting Federal government, once victorious in the One-year War, 7 years ago. In response to this situation, an initially anti-earth collision, A.E.U.G., started its moves against the Earth Federation's elite Titans force.","id":"19257","runtime":98,"imdbId":"tt0468812","homepage":"http:\/\/www.z-gundam.net\/z2","version":30,"lastModified":"1301418858000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/63f\/4bc95602017a3c57fe02663f\/kido-senshi-z-gandamu-ii-koibito-tachi-mid.jpg","title":"Mobile Suit Zeta Gundam A New Translation II: Lovers","releaseDate":1130544000000,"language":"en","type":"Movie","_key":"70158"} +{"label":"Stroker Ace","description":"Stroker Ace, a champion NASCAR driver, is standing at the top of his career, but is getting fed up with having to do as he's told. In between rebelling against his sponsor (a fried chicken chain)'s promotion gimmicks (like making him dress up in giant chicken suit) he spends the rest of the movie trying to bed the buxom Pembrook.","id":"19258","runtime":96,"imdbId":"tt0086379","version":106,"lastModified":"1301907988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/429\/4cb29abe7b9aa12640000429\/stroker-ace-mid.jpg","genre":"Action","title":"Stroker Ace","releaseDate":410227200000,"language":"en","type":"Movie","_key":"70159"} +{"label":"John Byner","version":21,"id":"84400","lastModified":"1301902674000","name":"John Byner","type":"Person","_key":"70160"} +{"label":"Frank O. Hill","version":20,"id":"84401","lastModified":"1301902707000","name":"Frank O. Hill","type":"Person","_key":"70161"} +{"label":"Volunteers","description":"Lawrence is a rich kid with a bad accent and a large debt. After his father refuses to help him out, Lawrence escapes his angry debtors by jumping on a Peace Corp flight to Southeast Asia, where he is assigned to build a bridge for the local villagers with American-As-Apple-Pie WSU Grad Tom Tuttle and the beautiful and down-to earth Beth Wexler.","id":"19259","runtime":107,"imdbId":"tt0090274","version":99,"lastModified":"1301904904000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c4\/4cd23a8e5e73d650210011c4\/volunteers-mid.jpg","genre":"Comedy","title":"Volunteers","releaseDate":492998400000,"language":"en","tagline":"Ready or not, here they come.","type":"Movie","_key":"70162"} +{"label":"Ghost in the Shell: S.A.C. 2nd GIG - Individual Eleven","description":"Terrorist incidents tied to an underclass of Asian refugees from World War IV threaten to ignite a political powder keg inside Japan. Kusanagi, Batou, and even Chief Aramaki complain about being conscripted to protect Prime Minister Kayabuki from assassination attempts--until they uncover a link between the murderers and the terrorism campaign. The threats lead to The Individual Eleven...","id":"19261","runtime":160,"imdbId":"tt1024214","homepage":"http:\/\/www.productionig.com\/contents\/works_sp\/39_\/s08_\/index.html","version":41,"lastModified":"1301904267000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/65d\/4bc95604017a3c57fe02665d\/kokaku-kidotai-stand-alone-complex-individual-eleven-mid.jpg","studio":"Production I.G ","genre":"Science Fiction","title":"Ghost in the Shell: S.A.C. 2nd GIG - Individual Eleven","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"70163"} +{"label":"Trapped in the Closet","description":"\"Trapped in the Closet\" is a story set of 22 chapters released by contemporary R&B singer R. Kelly in 2005 and 2007. It features one melodic theme with varying lyrics, which relate an ongoing narrative, which Kelly and Jive Records promoted by releasing each chapter to radio stations one at a time.","id":"19262","runtime":90,"imdbId":"tt0456695","version":88,"lastModified":"1301907245000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84e\/4d32d9765e73d6334f00184e\/trapped-in-the-closet-mid.jpg","title":"Trapped in the Closet","releaseDate":1186358400000,"language":"en","type":"Movie","_key":"70164"} +{"label":"R. Kelly","version":19,"id":"94158","lastModified":"1301902496000","name":"R. Kelly","type":"Person","_key":"70165"} +{"label":"Initial D: Battle Stage 2","description":"Initial D Battle Stage 2 summarizes the major street races from the recent Fourth Stage TV series. Additionally, two races that were previously seen only in the manga were animated specially for the feature.","id":"19263","runtime":77,"version":24,"lastModified":"1301908631000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66f\/4bc95605017a3c57fe02666f\/initial-d-battle-stage-2-mid.jpg","studio":"Frontline","title":"Initial D: Battle Stage 2","releaseDate":1180483200000,"language":"en","type":"Movie","_key":"70166"} +{"label":"Tsuneo Tominaga","version":23,"id":"84413","lastModified":"1301901823000","name":"Tsuneo Tominaga","type":"Person","_key":"70167"} +{"label":"Whatever Works","description":"A highly eccentric character played by Larry David runs into a young girl from the South and soon after, her mother and soon after, her father. The three of them, along with Larry David's crazy Greenwich Village friends, get into a series of highly improbable, far out, romantic entanglements.","id":"19265","runtime":92,"imdbId":"tt1178663","homepage":"http:\/\/www.sonypictures.com\/classics\/whateverworks\/","version":227,"lastModified":"1301903035000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/68d\/4bc9560e017a3c57fe02668d\/whatever-works-mid.jpg","studio":"Wild Bunch","genre":"Comedy","title":"Whatever Works","releaseDate":1245369600000,"language":"en","tagline":"a new comedy","type":"Movie","_key":"70168"} +{"label":"Lyle Kanouse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/476\/4c43af0a5e73d60f38000476\/lyle-kanouse-profile.jpg","version":28,"id":"84421","lastModified":"1301902166000","name":"Lyle Kanouse","type":"Person","_key":"70169"} +{"label":"Carolyn McCormick","version":24,"id":"84422","lastModified":"1301902062000","name":"Carolyn McCormick","type":"Person","_key":"70170"} +{"label":"Conleth Hill","version":23,"id":"84423","lastModified":"1301902185000","name":"Conleth Hill","type":"Person","_key":"70171"} +{"label":"Nicole Patrick","version":22,"id":"84424","lastModified":"1301901717000","name":"Nicole Patrick","type":"Person","_key":"70172"} +{"label":"3000 Miles","description":"Tony Hawk and the stars of MTVs 'Jackass' race 3000 miles around the world from London to Los Angeles in just 8 days against 120 supercars in the famous Gumball 3000 Rally. '3000 Miles' follows the action, adventure and Jackass style antics along the way, with fast driving, crashes and sabotage adding to the drama and mayhem. Burt Reynolds eat your heart out!","id":"19266","runtime":105,"imdbId":"tt0859164","version":80,"lastModified":"1301905261000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/692\/4bc9560e017a3c57fe026692\/3000-miles-mid.jpg","genre":"Action","title":"3000 Miles","releaseDate":1177372800000,"language":"en","type":"Movie","_key":"70173"} +{"label":"The Big Brawl","description":"A Korean man seeks fame and fortune in 1930s America when he enters an all-comers martial arts competition despite the opposition of the Mob, his father and several imposing opponents.","id":"19267","runtime":95,"imdbId":"tt0080436","version":80,"lastModified":"1301903077000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/69b\/4bc9560f017a3c57fe02669b\/the-big-brawl-mid.jpg","studio":"Golden Harvest Company","genre":"Action","title":"The Big Brawl","releaseDate":337392000000,"language":"en","type":"Movie","_key":"70174"} +{"label":"Ron Max","version":19,"id":"114627","lastModified":"1301902984000","name":"Ron Max","type":"Person","_key":"70175"} +{"label":"Lenny Montana","version":17,"id":"106811","lastModified":"1301902984000","name":"Lenny Montana","type":"Person","_key":"70176"} +{"label":"Pat E. Johnson","version":20,"id":"114628","lastModified":"1301903033000","name":"Pat E. Johnson","type":"Person","_key":"70177"} +{"label":"Tellement proches","description":"Famille : Groupe de personnes r\u00e9unies par des liens de parent\u00e9 et un fort sentiment de solidarit\u00e9 morale et mat\u00e9rielle. Quand Alain a \u00e9pous\u00e9 Nathalie, il ne savait pas qu'il \u00e9pouserait aussi sa famille. Ce samedi, comme toutes les semaines, ils sont invit\u00e9s \u00e0 d\u00eener chez son beau-fr\u00e8re, Jean-Pierre \u00e0 Cr\u00e9teil. C'est vrai, Alain en a marre de ces d\u00eeners familiaux, mais il ne sait pas encore ce qui l'attend v\u00e9ritablement ce soir-l\u00e0... Ni les jours qui suivent","id":"19268","runtime":102,"imdbId":"tt1404082","homepage":"http:\/\/www.tellement-proches.com\/","version":76,"lastModified":"1301906668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a4\/4bc95610017a3c57fe0266a4\/tellement-proches-mid.jpg","studio":"Mars Distribution","genre":"Comedy","title":"Tellement proches","releaseDate":1245196800000,"language":"en","type":"Movie","_key":"70178"} +{"label":"Olivier Nakache","version":22,"id":"84426","lastModified":"1301902557000","name":"Olivier Nakache","type":"Person","_key":"70179"} +{"label":"Eric Toledano","version":22,"id":"84425","lastModified":"1301902557000","name":"Eric Toledano","type":"Person","_key":"70180"} +{"label":"Jos\u00e9phine de Meaux","version":20,"id":"84430","lastModified":"1301902628000","name":"Jos\u00e9phine de Meaux","type":"Person","_key":"70181"} +{"label":"Max Clavelly","version":20,"id":"84431","lastModified":"1301902628000","name":"Max Clavelly","type":"Person","_key":"70182"} +{"label":"Wahid Bouzidi","version":20,"id":"84434","lastModified":"1301902628000","name":"Wahid Bouzidi","type":"Person","_key":"70183"} +{"label":"Blank","description":"Johnny (DAngelo Midili) is a young boy witnesses the violent death of his parents and older sister. Twenty years later he finds himself involved with organized crime with his adoptive father a small local crime boss. While watching a poker game with men who work for his adoptive father he overhears who murdered his family and the wheels start turning in his mind set on revenge. Over the next twent","id":"19269","runtime":94,"imdbId":"tt1326196","homepage":"http:\/\/www.blank-movie.com\/","version":90,"lastModified":"1302215061000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc6\/4d45f6635e73d65385002bc6\/blank-mid.jpg","title":"Blank","releaseDate":1237593600000,"language":"en","type":"Movie","_key":"70184"} +{"label":"D'Angelo Midili","version":19,"id":"110026","lastModified":"1301903067000","name":"D'Angelo Midili","type":"Person","_key":"70185"} +{"label":"Darlene Sellers","version":18,"id":"110027","lastModified":"1301902706000","name":"Darlene Sellers","type":"Person","_key":"70186"} +{"label":"Rick L. Winters","version":17,"id":"110028","lastModified":"1301902919000","name":"Rick L. Winters","type":"Person","_key":"70187"} +{"label":"BoyTown","description":"\"Boytown\" concerns a successful 80s boy band of the same name reforming their band in contemporary times in the hope that they can capture some of their former glory and that the fans will still be interested. Tommy, Corey, Benny and two others try to reform Boytown in 2005, but now they are all in the late 30s and are not sure whether people will still be interested in them.","id":"19271","runtime":88,"imdbId":"tt0472615","version":98,"lastModified":"1301908273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09a\/4c8f29a37b9aa1768a00009a\/boytown-mid.jpg","genre":"Comedy","title":"BoyTown","releaseDate":1161216000000,"language":"en","tagline":"Population Five","type":"Movie","_key":"70188"} +{"label":"Glenn Robbins","version":20,"id":"104427","lastModified":"1301902894000","name":"Glenn Robbins","type":"Person","_key":"70189"} +{"label":"Gary Eck","version":20,"id":"104428","lastModified":"1301902523000","name":"Gary Eck","type":"Person","_key":"70190"} +{"label":"Dr. Dolittle: Million Dollar Mutts","description":"No overview found.","id":"19273","runtime":90,"imdbId":"tt1080926","version":185,"lastModified":"1301905943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6dc\/4bc95614017a3c57fe0266dc\/dr-dolittle-million-dollar-mutts-mid.jpg","genre":"Comedy","title":"Dr. Dolittle: Million Dollar Mutts","releaseDate":1239148800000,"language":"en","type":"Movie","_key":"70191"} +{"label":"Jason Bryden","version":15,"id":"144560","lastModified":"1301901775000","name":"Jason Bryden","type":"Person","_key":"70192"} +{"label":"Curtis Caravaggio","version":15,"id":"144561","lastModified":"1301901931000","name":"Curtis Caravaggio","type":"Person","_key":"70193"} +{"label":"Mark Hillson","version":15,"id":"144562","lastModified":"1301901994000","name":"Mark Hillson","type":"Person","_key":"70194"} +{"label":"Elizabeth Thai","version":20,"id":"43297","lastModified":"1301901862000","name":"Elizabeth Thai","type":"Person","_key":"70195"} +{"label":"Ian Thompson","version":15,"id":"144564","lastModified":"1301901847000","name":"Ian Thompson","type":"Person","_key":"70196"} +{"label":"Alex Zamm","version":26,"id":"88077","lastModified":"1301902211000","name":"Alex Zamm","type":"Person","_key":"70197"} +{"label":"Fearless Hyena","description":"Jackie Chan is a youngster, living in a remote vllage with his grandfather who teaches him Kong-Fu (naturally). He keeps getting into fights, even though his grandfather warns him not to show their Kong-Fu to others. Jackie, though, is tempted by some thugs he beat up to act as the master of a Kong-Fu school. This school's name apparently spreads far, as an old enemy of Jackie's grandfather (who t","id":"19274","runtime":92,"imdbId":"tt0079315","version":93,"lastModified":"1301904469000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6e5\/4bc95615017a3c57fe0266e5\/the-fearless-hyena-mid.jpg","genre":"Comedy","title":"Fearless Hyena","releaseDate":288057600000,"language":"en","type":"Movie","_key":"70198"} +{"label":"Kun Li","version":23,"id":"125288","lastModified":"1301902687000","name":"Kun Li","type":"Person","_key":"70199"} +{"label":"Tien-chi Cheng","version":23,"id":"125289","lastModified":"1301902687000","name":"Tien-chi Cheng","type":"Person","_key":"70200"} +{"label":"Future by Design","description":"Future by Design shares the life and far-reaching vision of Jacque Fresco, considered by many to be a modern day Da Vinci. Peer to Einstein and Buckminster Fuller, Jacque is a self-taught futurist who describes himself most often as a \"generalist\" or multi-disciplinarian -- a student of many inter-related fields.","id":"19275","runtime":86,"imdbId":"tt0870112","homepage":"http:\/\/www.futurebydesignthemovie.com\/","version":90,"lastModified":"1301904481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ee\/4bc95615017a3c57fe0266ee\/future-by-design-mid.jpg","genre":"Documentary","title":"Future by Design","releaseDate":1149897600000,"language":"en","type":"Movie","_key":"70201"} +{"label":"Jacque Fresco","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/142\/4cc035fe5e73d67785001142\/jacque-fresco-profile.jpg","biography":"Jacque Fresco <span style=\"font-family: sans-serif; font-size: 13px; line-height: 19px; \">is a self-educated social engineer, industrial designer, author, lecturer, futurist, inventor, and the creator of The Venus Project. Fresco has worked as both designer and inventor in a wide range of fields spanning biomedical innovations and integrated social systems. He believes his ideas would maximally benefit the greatest number of people and he states some of his influence stems from hi","version":23,"birthday":"-1697936400000","id":"139536","lastModified":"1301901714000","name":"Jacque Fresco","type":"Person","_key":"70202"} +{"label":"Roxanne Meadows","version":20,"id":"139538","lastModified":"1301902363000","name":"Roxanne Meadows","type":"Person","_key":"70203"} +{"label":"William Gazecki","version":19,"id":"139537","lastModified":"1301902473000","name":"William Gazecki","type":"Person","_key":"70204"} +{"label":"Dhoondte Reh Jaoge","description":"Anand Pawar (Kunal Khemu) and Raj Chopra (Paresh Rawal) are perhaps the two most extreme individuals that have walked the city of Mumbai. While Anand is an idealist chartered accountant, Raj is an idle film producer.\r\n","id":"19276","runtime":135,"imdbId":"tt1391544","version":49,"lastModified":"1301908564000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6f7\/4bc95616017a3c57fe0266f7\/dhoondte-reh-jaoge-mid.jpg","studio":"UTV Motion Pictures","genre":"Comedy","title":"Dhoondte Reh Jaoge","releaseDate":1236297600000,"language":"en","type":"Movie","_key":"70205"} +{"label":"In Hell","description":"A man must survive a prison where hardened criminals battle to the death for the warden's entertainment.","id":"19277","runtime":96,"imdbId":"tt0339135","trailer":"http:\/\/www.youtube.com\/watch?v=yQ139icQk6E","version":111,"lastModified":"1301905943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e9\/4d722ad47b9aa114930003e9\/in-hell-mid.jpg","genre":"Action","title":"In Hell","releaseDate":1069718400000,"language":"en","type":"Movie","_key":"70206"} +{"label":"The Sharp End","description":"The Sharp End is an adrenaline-soaked journey up the world's most challenging walls: the French Alps, the Eiger, the Utah desert, the Diamond of Colorado, Indian Kashmir, Yosimite Granite, and the sandstone spires of the Czech Republic. Run-out routes, scary high-ball boulder problems, ice-covered alpine walls and all-or-nothing free-solo ascents will keep your palms perspiring.","id":"19278","runtime":63,"imdbId":"tt1462651","homepage":"www.senderfilms.com","version":114,"lastModified":"1300980696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/709\/4bc95616017a3c57fe026709\/the-sharp-end-mid.jpg","studio":"Sender Films","genre":"Documentary","title":"The Sharp End","releaseDate":1170892800000,"language":"en","type":"Movie","_key":"70207"} +{"label":"Hank Caylor","version":16,"id":"109826","lastModified":"1301902883000","name":"Hank Caylor","type":"Person","_key":"70208"} +{"label":"Johnny Copp","version":16,"id":"109827","lastModified":"1301902883000","name":"Johnny Copp","type":"Person","_key":"70209"} +{"label":"Micah Dash","version":16,"id":"109828","lastModified":"1301902883000","name":"Micah Dash","type":"Person","_key":"70210"} +{"label":"Nick Rosen","version":18,"id":"109829","lastModified":"1301902654000","name":"Nick Rosen","type":"Person","_key":"70211"} +{"label":"Alien Agent","description":"A lawman from another galaxy must stop an invading force from building a gateway to planet Earth.","id":"19279","runtime":95,"imdbId":"tt0820466","trailer":"http:\/\/www.youtube.com\/watch?v=1925","version":73,"lastModified":"1301905015000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/713\/4bc95617017a3c57fe026713\/alien-agent-mid.jpg","studio":"Alien Films","genre":"Action","title":"Alien Agent","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70212"} +{"label":"Emma Lahana","version":22,"id":"85955","lastModified":"1301902697000","name":"Emma Lahana","type":"Person","_key":"70213"} +{"label":"Kiss Of The Vampire","description":"A coven of Sexy, modern Day vampires ravage the American Midwest with the thirst for blood, while a romantic twist puts the vampires at odds among themselves and with the murderous Illuminati that seek to gain their immortality.","id":"19281","runtime":100,"imdbId":"tt0758755","version":92,"lastModified":"1301905330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/71c\/4bc95618017a3c57fe02671c\/kiss-of-the-vampire-mid.jpg","title":"Kiss Of The Vampire","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"70214"} +{"label":"Leprechaun Series","description":"No overview found.","id":"19285","imdbId":"tt0107387","version":37,"lastModified":"1301905820000","title":"Leprechaun Series","language":"en","type":"Movie","_key":"70215"} +{"label":"Leprechaun 3","description":"It was a normal night in Las Vegas, Nevada, all the lights were flashing brightly, until a man with one hand, one eye, and one leg walks into a pawn shop with a statue of a hideous looking Leprechaun. The owner claims it's a good luck charm. The statue also wore a medallion around it's neck. The careless pawn shop owner took off the medallion setting the Leprechaun free...","id":"19286","runtime":90,"imdbId":"tt0113636","version":172,"lastModified":"1301903417000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/721\/4bc95618017a3c57fe026721\/leprechaun-3-mid.jpg","studio":"Trimark Pictures","genre":"Comedy","title":"Leprechaun 3","releaseDate":795225600000,"language":"en","type":"Movie","_key":"70216"} +{"label":"Lee Armstrong","version":21,"id":"86922","lastModified":"1301901595000","name":"Lee Armstrong","type":"Person","_key":"70217"} +{"label":"Caroline Williams","version":26,"id":"86923","lastModified":"1301901458000","name":"Caroline Williams","type":"Person","_key":"70218"} +{"label":"Leigh Allyn Baker","version":25,"id":"86924","lastModified":"1301901983000","name":"Leigh Allyn Baker","type":"Person","_key":"70219"} +{"label":"Terry Lee Crisp","version":21,"id":"86925","lastModified":"1301902528000","name":"Terry Lee Crisp","type":"Person","_key":"70220"} +{"label":"Leprechaun 4: In Space","description":"Our deadly leprechaun is in space to woo a beautiful princess who is impressed with his gold and desires to separate him from it.","id":"19287","runtime":95,"imdbId":"tt0116861","version":105,"lastModified":"1301904643000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/726\/4bc95618017a3c57fe026726\/leprechaun-4-in-space-mid.jpg","studio":"Front Street Studios","genre":"Comedy","title":"Leprechaun 4: In Space","releaseDate":856828800000,"language":"en","type":"Movie","_key":"70221"} +{"label":"Brent Jasmer","version":21,"id":"86928","lastModified":"1301901561000","name":"Brent Jasmer","type":"Person","_key":"70222"} +{"label":"Jessica Collins","version":22,"id":"86929","lastModified":"1301901645000","name":"Jessica Collins","type":"Person","_key":"70223"} +{"label":"Gary Grossman","version":21,"id":"86930","lastModified":"1301902141000","name":"Gary Grossman","type":"Person","_key":"70224"} +{"label":"Leprechaun: Back 2 tha Hood","description":"When Emily Woodrow and her friends happen on a treasure chest full of gold coins, they fail to to heed the warnings of a wise old psychic who had foretold that they would encounter trouble with a very nasty and protective Leprechaun.","id":"19288","runtime":90,"imdbId":"tt0339294","version":159,"lastModified":"1301905535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/72b\/4bc95618017a3c57fe02672b\/leprechaun-back-2-tha-hood-mid.jpg","studio":"Lions Gate Films","genre":"Horror","title":"Leprechaun: Back 2 tha Hood","releaseDate":1072742400000,"language":"en","type":"Movie","_key":"70225"} +{"label":"Steven Ayromlooi","version":23,"id":"84983","lastModified":"1301901988000","name":"Steven Ayromlooi","type":"Person","_key":"70226"} +{"label":"Page Kennedy","version":13,"id":"177214","lastModified":"1301903329000","name":"Page Kennedy","type":"Person","_key":"70227"} +{"label":"Sherrie Jackson","version":12,"id":"208331","lastModified":"1301903794000","name":"Sherrie Jackson","type":"Person","_key":"70228"} +{"label":"Donzaleigh Abernathy","version":13,"id":"155940","lastModified":"1301903522000","name":"Donzaleigh Abernathy","type":"Person","_key":"70229"} +{"label":"Shiek Mahmud-Bey","version":21,"id":"134529","lastModified":"1301902748000","name":"Shiek Mahmud-Bey","type":"Person","_key":"70230"} +{"label":"Carry On Again Doctor","description":"Dr Nookey is disgraced and sent to a remote island hospital. He is given a secret slimming potion by a member of staff, Gladstone Screwer, and he flies back to England to fame and fortune. But others want to cash in on his good fortunes, and some just want him brought down a peg or two. ","id":"19293","runtime":89,"imdbId":"tt0064132","trailer":"http:\/\/www.youtube.com\/watch?v=qsqpuyedURg","version":61,"lastModified":"1301907244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/738\/4bc95619017a3c57fe026738\/carry-on-again-doctor-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Carry On Again Doctor","releaseDate":-2592000000,"language":"en","type":"Movie","_key":"70231"} +{"label":"Patsy Rowlands","version":24,"id":"84441","lastModified":"1301902628000","name":"Patsy Rowlands","type":"Person","_key":"70232"} +{"label":"Elizabeth Knight","version":18,"id":"106094","lastModified":"1301903031000","name":"Elizabeth Knight","type":"Person","_key":"70233"} +{"label":"Alexandra Dane","version":17,"id":"117398","lastModified":"1301902883000","name":"Alexandra Dane","type":"Person","_key":"70234"} +{"label":"30 Days Until I'm Famous","description":"No overview found.","id":"19294","runtime":90,"imdbId":"tt0389721","version":110,"lastModified":"1301420956000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/73d\/4bc9561a017a3c57fe02673d\/30-days-until-i-m-famous-mid.jpg","genre":"Comedy","title":"30 Days Until I'm Famous","releaseDate":1083888000000,"language":"en","type":"Movie","_key":"70235"} +{"label":"Gabriela Tagliavini","version":20,"id":"84437","lastModified":"1301902674000","name":"Gabriela Tagliavini","type":"Person","_key":"70236"} +{"label":"Power Raiders","description":"No overview found.","id":"19295","runtime":0,"version":374,"lastModified":"1301520480000","title":"Power Raiders","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70237"} +{"label":"Legend of the Bog","description":"When the dead start to mysteriously re-animate from an ancient bog an eccentric hunter, embarks on a crusade to hunt down the forsaken beasts. But when a ferocious Bog Man emerges from the murk, a powerful and ancient evil is released and the Hunter becomes the hunted.","id":"19296","runtime":90,"imdbId":"tt0928375","trailer":"http:\/\/www.youtube.com\/watch?v=1274","homepage":"http:\/\/www.bogbodiesthemovie.com\/","version":269,"lastModified":"1301907086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/74a\/4bc9561f017a3c57fe02674a\/legend-of-the-bog-mid.jpg","studio":"Grindstone Entertainment Group","genre":"Drama","title":"Legend of the Bog","releaseDate":1245715200000,"language":"en","type":"Movie","_key":"70238"} +{"label":"Amy Huberman","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/773\/4ceff40c5e73d66255000773\/amy-huberman-profile.jpg","version":21,"id":"84645","lastModified":"1301901645000","name":"Amy Huberman","type":"Person","_key":"70239"} +{"label":"Gavin Kelty","version":20,"id":"84644","lastModified":"1301902546000","name":"Gavin Kelty","type":"Person","_key":"70240"} +{"label":"Shelly Goldstein","version":19,"id":"84646","lastModified":"1301902501000","name":"Shelly Goldstein","type":"Person","_key":"70241"} +{"label":"Olga Wehrly","version":19,"id":"84647","lastModified":"1301902501000","name":"Olga Wehrly","type":"Person","_key":"70242"} +{"label":"Carry On At Your Convenience","description":"This is the tale of industrial strife at WC Boggs' Lavatory factory. Vic Spanner is the union representative who calls a strike at the drop of a hat; eventually everyone has to get fed up with him. This is also the ideal opportunity for lots of lavatorial jokes... ","id":"19297","runtime":90,"imdbId":"tt0066895","trailer":"http:\/\/www.youtube.com\/watch?v=5UrPqOUIsSA","version":113,"lastModified":"1301906049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/753\/4bc9561f017a3c57fe026753\/carry-on-at-your-convenience-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Carry On At Your Convenience","releaseDate":60393600000,"language":"en","type":"Movie","_key":"70243"} +{"label":"Kenneth Cope","version":18,"id":"106992","lastModified":"1301902883000","name":"Kenneth Cope","type":"Person","_key":"70244"} +{"label":"Richard O'Callaghan","version":20,"id":"113697","lastModified":"1301902883000","name":"Richard O'Callaghan","type":"Person","_key":"70245"} +{"label":"Bill Maynard","version":27,"id":"86105","lastModified":"1301902354000","name":"Bill Maynard","type":"Person","_key":"70246"} +{"label":"Davy Kaye","version":17,"id":"117546","lastModified":"1301903027000","name":"Davy Kaye","type":"Person","_key":"70247"} +{"label":"Margaret Nolan","version":19,"id":"95129","lastModified":"1301902977000","name":"Margaret Nolan","type":"Person","_key":"70248"} +{"label":"Stagknight","description":"No overview found.","id":"19298","runtime":90,"imdbId":"tt0465616","version":54,"lastModified":"1300980699000","genre":"Horror","title":"Stagknight","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70249"} +{"label":"Vanvittig forelsket","description":"Daniel is a very talented piano student and loves Sofie, but he is terrified by the thought of loosing her and accuses her of seeing another man. Everybody says he is wrong, but the suspicion grows as does an uncontrollable side of Daniel.","id":"19299","runtime":94,"imdbId":"tt1454577","version":61,"lastModified":"1301905260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/764\/4bc95621017a3c57fe026764\/vanvittig-forelsket-mid.jpg","studio":"Danish Filminstitute","genre":"Drama","title":"Vanvittig forelsket","releaseDate":1248998400000,"language":"en","type":"Movie","_key":"70250"} +{"label":"Morten Giese","version":18,"id":"112732","lastModified":"1301902628000","name":"Morten Giese","type":"Person","_key":"70251"} +{"label":"Sara Hjort Ditlevsen","version":16,"id":"112734","lastModified":"1301902883000","name":"Sara Hjort Ditlevsen","type":"Person","_key":"70252"} +{"label":"Rasmus Botoft","version":16,"id":"112735","lastModified":"1301902883000","name":"Rasmus Botoft","type":"Person","_key":"70253"} +{"label":"David Dencik","version":24,"id":"93236","lastModified":"1301902321000","name":"David Dencik","type":"Person","_key":"70254"} +{"label":"Benjamin Hasselflug Katzmann","version":16,"id":"112736","lastModified":"1301902883000","name":"Benjamin Hasselflug Katzmann","type":"Person","_key":"70255"} +{"label":"Tim Hvolgaard","version":16,"id":"112737","lastModified":"1301902883000","name":"Tim Hvolgaard","type":"Person","_key":"70256"} +{"label":"Carry On Behind","description":"The Carry on Gang doing archaeology at a camping site.","id":"19300","runtime":90,"imdbId":"tt0072764","trailer":"http:\/\/www.youtube.com\/watch?v=dSjJQUZPxg8","version":86,"lastModified":"1301908273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/771\/4bc95623017a3c57fe026771\/carry-on-behind-mid.jpg","studio":"Rank Organisation","genre":"Comedy","title":"Carry On Behind","releaseDate":186624000000,"language":"en","type":"Movie","_key":"70257"} +{"label":"Jack Douglas","version":23,"id":"84443","lastModified":"1301902628000","name":"Jack Douglas","type":"Person","_key":"70258"} +{"label":"Windsor Davies","version":23,"id":"86108","lastModified":"1301902695000","name":"Windsor Davies","type":"Person","_key":"70259"} +{"label":"Ian Lavender","version":20,"id":"85534","lastModified":"1301902453000","name":"Ian Lavender","type":"Person","_key":"70260"} +{"label":"Adrienne Posta","version":21,"id":"117549","lastModified":"1301902750000","name":"Adrienne Posta","type":"Person","_key":"70261"} +{"label":"Patricia Franklin","version":16,"id":"117550","lastModified":"1301902883000","name":"Patricia Franklin","type":"Person","_key":"70262"} +{"label":"Donald Hewlett","version":16,"id":"117551","lastModified":"1301902883000","name":"Donald Hewlett","type":"Person","_key":"70263"} +{"label":"Se min kjole","description":"Four girls in rehab is on tour from their treatment centers and it becomes their life stories. The girls run off in a stolen Volvo and soon learns to know the freedom of good and evil. Both the fantastic feeling to be master of its own destiny, but also the heavy feeling of responsibility when you have to figure out what to do with his life. Before long, the girls learn that they can not continue ","id":"19301","runtime":88,"imdbId":"tt1337060","version":58,"lastModified":"1301908273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/782\/4bc95625017a3c57fe026782\/se-min-kjole-mid.jpg","studio":"Fine & Mellow Productions","genre":"Drama","title":"Se min kjole","releaseDate":1246579200000,"language":"en","type":"Movie","_key":"70264"} +{"label":"Stephanie Leon","version":16,"id":"102887","lastModified":"1301902883000","name":"Stephanie Leon","type":"Person","_key":"70265"} +{"label":"Malou Reymann","version":16,"id":"102890","lastModified":"1301902883000","name":"Malou Reymann","type":"Person","_key":"70266"} +{"label":"Honey Shain","version":16,"id":"102892","lastModified":"1301902883000","name":"Honey Shain","type":"Person","_key":"70267"} +{"label":"Baby Einstein Discovering Shapes","description":"Discovering Shapes playfully introduces five basic forms - circle, oval, triangle, square, and rectangle - as each appears in the context of toys, nature, and everyday objects.","id":"19303","runtime":31,"imdbId":"tt1082578","version":71,"lastModified":"1301906145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/794\/4bc95627017a3c57fe026794\/baby-einstein-discovering-shapes-mid.jpg","genre":"Family","title":"Baby Einstein Discovering Shapes","releaseDate":1185235200000,"language":"en","type":"Movie","_key":"70268"} +{"label":"Monsterj\u00e6gerne","description":"No overview found.","id":"19304","runtime":0,"imdbId":"tt1331318","version":35,"lastModified":"1300980702000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7a9\/4bc9562c017a3c57fe0267a9\/monsterjgerne-mid.jpg","title":"Monsterj\u00e6gerne","releaseDate":1255046400000,"language":"en","type":"Movie","_key":"70269"} +{"label":"Applaus","description":"When the critically acclaimed, tough and coming of age actress Thea Barfoed ends her rehab, she confronts a hard choice. During her heavy drinking period she divorced and lost custody of her two boys. Now she wants them to be a part of her life again.","id":"19305","runtime":85,"imdbId":"tt1314269","version":47,"lastModified":"1301906145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7b6\/4bc9562e017a3c57fe0267b6\/applaus-mid.jpg","studio":"Koncern TV- og Filmproduktion","genre":"Drama","title":"Applaus","releaseDate":1253836800000,"language":"en","type":"Movie","_key":"70270"} +{"label":"Martin Zandvliet","version":20,"id":"114540","lastModified":"1301902984000","name":"Martin Zandvliet","type":"Person","_key":"70271"} +{"label":"Michael Falch","version":20,"id":"114542","lastModified":"1301902985000","name":"Michael Falch","type":"Person","_key":"70272"} +{"label":"Otto Leonardo Steen Rieks","version":19,"id":"114543","lastModified":"1301902984000","name":"Otto Leonardo Steen Rieks","type":"Person","_key":"70273"} +{"label":"Noel Koch-S\u00f8feldt","version":19,"id":"114544","lastModified":"1301902984000","name":"Noel Koch-S\u00f8feldt","type":"Person","_key":"70274"} +{"label":"Ved verdens ende","description":"An english tv-team discovers a special white flower in the indonesian rainforest, but they never get to investegate it further, before the danish recluse Severin has shot them down. A danish special enforcement with a psychiatrist in front is sent off, and they find out, that Severin claims, that he is 129 years old, and it's the flower, which keeps him young. Soon all hunts the white flower, which apparently gives eternal life.","id":"19306","runtime":99,"imdbId":"tt1242527","trailer":"http:\/\/www.youtube.com\/watch?v=bRum-FvVS2o","homepage":"http:\/\/www.vedverdensende.dk\/","version":71,"lastModified":"1301906049000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b0\/4bca4d27017a3c0e950000b0\/ved-verdens-ende-mid.jpg","genre":"Action","title":"Ved verdens ende","releaseDate":1255046400000,"language":"en","type":"Movie","_key":"70275"} +{"label":"Blerim Destani","version":19,"id":"90515","lastModified":"1301901862000","name":"Blerim Destani","type":"Person","_key":"70276"} +{"label":"Carry On Camping","description":"Sid and Bernie keep having their amorous intentions snubbed by their girlfriends Joan and Anthea. The boys suggest a camping holiday, secretly intending to take them to a nudist camp. Of course they end up in the wrong place, and meet up with the weirdest bunch of campers you can imagine! Coach loads of sex-starved schoolgirls and bands of hippies all add to the laughs","id":"19307","runtime":88,"imdbId":"tt0064133","trailer":"http:\/\/www.youtube.com\/watch?v=lFGWrL5FJ9Q","version":97,"lastModified":"1301906456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7cb\/4bc95631017a3c57fe0267cb\/carry-on-camping-mid.jpg","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Camping","releaseDate":-18748800000,"language":"en","type":"Movie","_key":"70277"} +{"label":"Dilys Laye","version":23,"id":"40946","lastModified":"1301901862000","name":"Dilys Laye","type":"Person","_key":"70278"} +{"label":"Betty Marsden","version":17,"id":"117450","lastModified":"1301903051000","name":"Betty Marsden","type":"Person","_key":"70279"} +{"label":"Spectres of the Spectrum","description":"BooBoo, a young telepath, and her father, Yogi, are revolutionaries pitted against the \"New Electromagnetic Order\". Their story, set in the year 2007 in a blighted Nevada outpost, is interwoven with a history of the development of electromagnetic technologies, from X-rays to atom bombs, from television to the Internet. ","id":"19310","runtime":94,"imdbId":"tt0224156","version":87,"lastModified":"1301907244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7d4\/4bc95632017a3c57fe0267d4\/spectres-of-the-spectrum-mid.jpg","studio":"Other Cinema","genre":"Horror","title":"Spectres of the Spectrum","releaseDate":953251200000,"language":"en","type":"Movie","_key":"70280"} +{"label":"Craig Baldwin","version":21,"id":"84445","lastModified":"1301902674000","name":"Craig Baldwin","type":"Person","_key":"70281"} +{"label":"Sean Kilkoyne","version":17,"id":"84455","lastModified":"1301902674000","name":"Sean Kilkoyne","type":"Person","_key":"70282"} +{"label":"Caroline Koebel","version":19,"id":"84456","lastModified":"1301902674000","name":"Caroline Koebel","type":"Person","_key":"70283"} +{"label":"$9.99","description":"Have you ever wondered \"What is the meaning of life? Why do we exist?\" The answer to this vexing question is now within your reach! You'll find it in a small yet amazing booklet, which will explain, in easy to follow, simple terms your reason for being! The booklet, printed on the finest paper, contains illuminating, exquisite colour pictures, and could be yours for a mere $9.99.","id":"19311","runtime":78,"imdbId":"tt0790799","trailer":"http:\/\/www.youtube.com\/watch?v=1265","homepage":"http:\/\/www.9dollars99movie.com\/","version":152,"lastModified":"1301904775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7e5\/4bc95634017a3c57fe0267e5\/9-99-mid.jpg","studio":"Australian Film Finance Corporation","genre":"Animation","title":"$9.99","releaseDate":1240963200000,"language":"en","type":"Movie","_key":"70284"} +{"label":"Tatia Rosenthal","version":20,"id":"84448","lastModified":"1301901608000","name":"Tatia Rosenthal","type":"Person","_key":"70285"} +{"label":"Josef Ber","version":20,"id":"84450","lastModified":"1301901717000","name":"Josef Ber","type":"Person","_key":"70286"} +{"label":"Leon Ford","version":21,"id":"84451","lastModified":"1301902053000","name":"Leon Ford","type":"Person","_key":"70287"} +{"label":"Jamie Katsamatsas","version":20,"id":"84452","lastModified":"1301902235000","name":"Jamie Katsamatsas","type":"Person","_key":"70288"} +{"label":"The Black Hole","description":"It's 2 A.M. in St. Louis when a routine scientific experiment goes terribly wrong and an explosion shakes the city. A scientific team investigates, clashing with an intergalactic, voltage-devouring creature that vaporizes them.","id":"19312","runtime":90,"imdbId":"tt0433883","version":134,"lastModified":"1301906219000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7f4\/4bc95636017a3c57fe0267f4\/the-black-hole-mid.jpg","genre":"Horror","title":"The Black Hole","releaseDate":1149897600000,"language":"en","tagline":"No force from this world can stop it!","type":"Movie","_key":"70289"} +{"label":"Saving Face","description":"A Chinese-American lesbian and her traditionalist mother are reluctant to go public with secret loves that clash against cultural expectations.","id":"19316","runtime":91,"imdbId":"tt0384504","version":174,"lastModified":"1301906847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4bc95637017a3c57fe026802\/saving-face-mid.jpg","studio":"Sony Pictures Classics","genre":"Comedy","title":"Saving Face","releaseDate":1094947200000,"language":"en","type":"Movie","_key":"70290"} +{"label":"Alice Wu","version":19,"id":"84461","lastModified":"1301902501000","name":"Alice Wu","type":"Person","_key":"70291"} +{"label":"Lynn Chen","version":20,"id":"84462","lastModified":"1301902323000","name":"Lynn Chen","type":"Person","_key":"70292"} +{"label":"Zorro, The Gay Blade","description":"George Hamilton stars in a dueling dual role as twin sons of the legendary Zorro. Soon after the dashing Don Diego Vega inherits his father's famous sword and costume, a broken ankle prevents the masked avenger from fulfilling his heroic duties. When his flamboyantly fashion-conscious brother assumes the secret identity to continue an ongoing fight for justice, the results are nothing short of hilarious!","id":"19317","runtime":93,"imdbId":"tt0083366","version":84,"lastModified":"1301904775000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/807\/4bc9563a017a3c57fe026807\/zorro-the-gay-blade-mid.jpg","studio":"Melvin Simon Productions","genre":"Action","title":"Zorro, The Gay Blade","releaseDate":364176000000,"language":"en","type":"Movie","_key":"70293"} +{"label":"Helen Burns","version":16,"id":"92959","lastModified":"1301902883000","name":"Helen Burns","type":"Person","_key":"70294"} +{"label":"Mr. Troop Mom","description":"Public Defender Eddie is a widower with a 13 year-old daughter, Naomi. A classic workaholic, Eddie has been M.I.A. for most of Naomi's big moments.\n\nBut when an unfortunately timed accident gives Eddie the opportunity to become the \"Team Mom\" for the Killer Bees, Naomi's team in the Spring Action Classic at camp Hulka's Rock, he grabs it.","id":"19318","runtime":84,"imdbId":"tt1389781","homepage":"http:\/\/www.nickatnite.com\/shows\/mr-troop-mom\/index.jhtml","version":198,"lastModified":"1302038802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/830\/4bc9563d017a3c57fe026830\/mr-troop-mom-mid.jpg","genre":"Comedy","title":"Mr. Troop Mom","releaseDate":1245369600000,"language":"en","type":"Movie","_key":"70295"} +{"label":"Daniela Bobadilla","version":19,"id":"84463","lastModified":"1301901862000","name":"Daniela Bobadilla","type":"Person","_key":"70296"} +{"label":"Julia Benson","version":18,"id":"84464","lastModified":"1301902235000","name":"Julia Benson","type":"Person","_key":"70297"} +{"label":"Pyper De Marsh","version":19,"id":"84465","lastModified":"1301902235000","name":"Pyper De Marsh","type":"Person","_key":"70298"} +{"label":"Jessica McLeod","version":19,"id":"84466","lastModified":"1301902235000","name":"Jessica McLeod","type":"Person","_key":"70299"} +{"label":"Laine MacNeil","version":24,"id":"84468","lastModified":"1301902453000","name":"Laine MacNeil","type":"Person","_key":"70300"} +{"label":"Mayan Lopez","version":19,"id":"84469","lastModified":"1301902628000","name":"Mayan Lopez","type":"Person","_key":"70301"} +{"label":"Tortilla Heaven","description":"Isidor's Tortilla Heaven is the best restaurant in New Mexico maybe even the world. But though his tortillas are scrumptious, his enchiladas divine, Isidor has never made a dime. Why? He lives in Falfurrias, population 73. One Sunday, while all the town, including his wife and son, are piously praying mass, a miracle occurs. Upon one of his famous, hand-made tortillas appears the face of Jesus Christ.","id":"19319","runtime":98,"imdbId":"tt0227671","version":193,"lastModified":"1301906531000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5a5\/4c5aaf225e73d63a6c0005a5\/tortilla-heaven-mid.jpg","genre":"Comedy","title":"Tortilla Heaven","releaseDate":1223942400000,"language":"en","tagline":"You can't keep a miracle secret","type":"Movie","_key":"70302"} +{"label":"Judy Hecht Dumontet","version":22,"id":"127622","lastModified":"1301902477000","name":"Judy Hecht Dumontet","type":"Person","_key":"70303"} +{"label":"Who Dares Wins","description":"A trooper with the British Special Air Service (SAS) infiltrates a radical political group who are planning a terrorist operation against American dignitaries. A glamourized look at the methods and tactics of the famed British anti-terrorist squad.The SAS are a elite army unit which as well as its Anti terrorist role also performs covert and overt training of friendly countries armed forces and o","id":"19322","runtime":125,"imdbId":"tt0083941","version":74,"lastModified":"1301906083000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/839\/4bc9563d017a3c57fe026839\/who-dares-wins-mid.jpg","genre":"Action","title":"Who Dares Wins","releaseDate":399168000000,"language":"en","type":"Movie","_key":"70304"} +{"label":"Lewis Collins","version":20,"id":"84475","lastModified":"1301902674000","name":"Lewis Collins","type":"Person","_key":"70305"} +{"label":"Superman: Brainiac Attacks","description":"Embittered by Superman's heroic successes and soaring popularity, Lex Luthor forms a dangerous alliance with the powerful computer\/villain Brainiac. Using advanced weaponry and a special strain of Kryptonite harvested from the far reaches of outer space, Luthor specifically redesigns Brainiac to defeat the Man of Steel.","id":"19323","runtime":75,"imdbId":"tt0800226","version":148,"lastModified":"1301906473000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/44a\/4d6871805e73d66b2b00044a\/superman-brainiac-attacks-mid.jpg","genre":"Family","title":"Superman: Brainiac Attacks","releaseDate":1150761600000,"language":"en","type":"Movie","_key":"70306"} +{"label":"Born in East L.A.","description":"Rudy, an American of Hispanic descent, whose south-of-the-border looks show him no mercy during an immigration raid in a migrant worker factory. As his luck goes, he is caught with neither money nor his ID and is deported to Mexico - without speaking a word of Spanish!","id":"19324","runtime":85,"imdbId":"tt0092690","version":102,"lastModified":"1301903159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/855\/4bc95641017a3c57fe026855\/born-in-east-l-a-mid.jpg","studio":"Universal Studios","genre":"Comedy","title":"Born in East L.A.","releaseDate":556502400000,"language":"en","type":"Movie","_key":"70307"} +{"label":"Kamala Lopez","version":19,"id":"84476","lastModified":"1301902452000","name":"Kamala Lopez","type":"Person","_key":"70308"} +{"label":"Urbanie Lucero","version":19,"id":"84477","lastModified":"1301902452000","name":"Urbanie Lucero","type":"Person","_key":"70309"} +{"label":"Chastity Ayala","version":19,"id":"84478","lastModified":"1301902452000","name":"Chastity Ayala","type":"Person","_key":"70310"} +{"label":"David Perez","version":19,"id":"84479","lastModified":"1301902235000","name":"David Perez","type":"Person","_key":"70311"} +{"label":"Larry Blackmon","version":19,"id":"84480","lastModified":"1301902452000","name":"Larry Blackmon","type":"Person","_key":"70312"} +{"label":"Bionicle: Mask Of Light","description":"The spirit that protects the islands of Mata Nui is put into a deep sleep, causing the islands to crumble into the ocean, and three islanders must use the Mask of Light to save it.","id":"19325","runtime":70,"imdbId":"tt0369281","version":131,"lastModified":"1301906459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/862\/4bc95642017a3c57fe026862\/bionicle-mask-of-light-mid.jpg","genre":"Action","title":"Bionicle: Mask Of Light","releaseDate":1063670400000,"language":"en","type":"Movie","_key":"70313"} +{"label":"Jason Michas","version":17,"id":"106828","lastModified":"1301902628000","name":"Jason Michas","type":"Person","_key":"70314"} +{"label":"Doc Harris","version":17,"id":"106829","lastModified":"1301902883000","name":"Doc Harris","type":"Person","_key":"70315"} +{"label":"Jury Duty","description":"When jobless Tommy Collins discovers that sequestered jurors earn free room and board as well as $5-a-day, he gets himself assigned to a jury in a murder trial. Once there, he does everything he can to prolong the trial and deliberations and make the sequestration more comfortable for himself.","id":"19326","runtime":88,"imdbId":"tt0113500","version":145,"lastModified":"1301904485000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/86f\/4bc95643017a3c57fe02686f\/jury-duty-mid.jpg","studio":"Tri Star","genre":"Action","title":"Jury Duty","releaseDate":797644800000,"language":"en","tagline":"For truth. For justice. For five bucks a day.","type":"Movie","_key":"70316"} +{"label":"Sharon Barr","version":20,"id":"94750","lastModified":"1301902452000","name":"Sharon Barr","type":"Person","_key":"70317"} +{"label":"Nick Bakay","version":27,"id":"78435","lastModified":"1301902316000","name":"Nick Bakay","type":"Person","_key":"70318"} +{"label":"Ernie Lee Banks","version":17,"id":"94752","lastModified":"1301902883000","name":"Ernie Lee Banks","type":"Person","_key":"70319"} +{"label":"Aladdin: A Musical Spectacular","description":"Disney's Aladdin: A Musical Spectacular is a musical show that plays at Disney's California Adventure. Based on the Disney film by the same name, the show plays inside Hyperion Theater Hollywood Pictures Backlot. The show is located right next to the Twilight Zone Tower of Terror.","id":"19330","runtime":0,"version":21,"lastModified":"1301908530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/878\/4bc95644017a3c57fe026878\/aladdin-a-musical-spectacular-mid.jpg","title":"Aladdin: A Musical Spectacular","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70320"} +{"label":"The Lamborghini Experience 40 Years of Excellence","description":"When Ferruccio Lamborghini startled the automotive world with his 350GTV prototype in 1963, it signaled the beginning of an era - the era of The Bull. In the spring of 2003, hundreds of Lamborghini owners, their cars and other special guests were invited to an exclusive gathering in Italy. Now, you have a backstage pass to all of the events that took place that special weekend.","id":"19332","runtime":0,"imdbId":"tt0401569","version":50,"lastModified":"1301417657000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/881\/4bc95644017a3c57fe026881\/the-lamborghini-experience-40-years-of-excellence-mid.jpg","title":"The Lamborghini Experience 40 Years of Excellence","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70321"} +{"label":"Terror of Mechagodzilla","description":"No overview found.","id":"19333","runtime":83,"imdbId":"tt0073373","version":189,"lastModified":"1301905982000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12c\/4c5663cf7b9aa151f400012c\/mekagojira-no-gyakushu-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Terror of Mechagodzilla","releaseDate":164073600000,"language":"en","type":"Movie","_key":"70322"} +{"label":"Johnny O'Clock","description":"Slick, egotistical Johnny O'Clock (Powell) is a partner in a gambling house that has seen better days. When the hat-check girl is found murdered, he gets involved with crooked cops and criminals that includes his shady partner in the casino, Pete.","id":"19335","runtime":85,"imdbId":"tt0039515","version":56,"lastModified":"1300980709000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88e\/4bc95645017a3c57fe02688e\/johnny-o-clock-mid.jpg","studio":"J.E.M. Productions","genre":"Crime","title":"Johnny O'Clock","releaseDate":-723945600000,"language":"en","type":"Movie","_key":"70323"} +{"label":"Ellen Drew","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/10d\/4bd84cdb017a3c1c0900010d\/ellen-drew-profile.jpg","version":29,"id":"84485","lastModified":"1301902360000","name":"Ellen Drew","type":"Person","_key":"70324"} +{"label":"Jim Bannon","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/80f\/4c6eba1a7b9aa13ab600080f\/jim-bannon-profile.jpg","version":33,"id":"84486","lastModified":"1301901188000","name":"Jim Bannon","type":"Person","_key":"70325"} +{"label":"Mabel Paige","version":22,"id":"84487","lastModified":"1301902653000","name":"Mabel Paige","type":"Person","_key":"70326"} +{"label":"Godzilla vs. Gigan","description":"No overview found.","id":"19336","runtime":89,"imdbId":"tt0068371","version":79,"lastModified":"1301908316000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/27c\/4d38bc797b9aa1614500027c\/chiky-kogeki-meirei-gojira-tai-gaigan-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Godzilla vs. Gigan","releaseDate":69206400000,"language":"en","type":"Movie","_key":"70327"} +{"label":"Ley Lines","description":"No overview found.","id":"19337","runtime":80,"imdbId":"tt0144277","version":103,"lastModified":"1301907448000","genre":"Action","title":"Ley Lines","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70328"} +{"label":"Out of the Ashes","description":"The real-life story of Gisella Perl, a Jewish Hungarian doctor imprisoned in the notorious Auschwitz death camp of World War II.","id":"19338","runtime":113,"imdbId":"tt0311210","version":85,"lastModified":"1301908192000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a5\/4bc95647017a3c57fe0268a5\/out-of-the-ashes-mid.jpg","genre":"Drama","title":"Out of the Ashes","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"70329"} +{"label":"Helen of Troy","description":"No overview found.","id":"19341","runtime":175,"imdbId":"tt0340477","version":153,"lastModified":"1301905437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b2\/4bc9564a017a3c57fe0268b2\/helen-of-troy-mid.jpg","studio":"Fuel Entertainment","genre":"Action","title":"Helen of Troy","releaseDate":1050796800000,"language":"en","type":"Movie","_key":"70330"} +{"label":"All in","description":"Six medical students with unique talents pool their resources to win the World Series of Poker.","id":"19342","runtime":98,"imdbId":"tt0475217","homepage":"http:\/\/www.themovieallin.com\/","version":95,"lastModified":"1301905943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8bc\/4bc9564b017a3c57fe0268bc\/all-in-mid.png","genre":"Comedy","title":"All in","releaseDate":1142294400000,"language":"en","type":"Movie","_key":"70331"} +{"label":"Michelle Lombardo","version":18,"id":"112327","lastModified":"1301903038000","name":"Michelle Lombardo","type":"Person","_key":"70332"} +{"label":"Christopher Backus","version":17,"id":"112328","lastModified":"1301902984000","name":"Christopher Backus","type":"Person","_key":"70333"} +{"label":"Hayley DuMond","version":17,"id":"112329","lastModified":"1301903036000","name":"Hayley DuMond","type":"Person","_key":"70334"} +{"label":"Avrielle Corti","version":16,"id":"112330","lastModified":"1301902984000","name":"Avrielle Corti","type":"Person","_key":"70335"} +{"label":"Loving Annabelle","description":"Annabelle is the wise-beyond-her-years newcomer to an exclusive Catholic girls school. Having been expelled from her first two schools she's bound to stir some trouble. Sparks fly though when sexual chemistry appears between her and the Head of her dorm and English teacher, Simone Bradley. Annabelle pursues her relentlessly and until the end the older woman manages to avoid the law.","id":"19344","runtime":76,"imdbId":"tt0323120","version":175,"lastModified":"1301903964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ce\/4bc9564d017a3c57fe0268ce\/loving-annabelle-mid.jpg","studio":"Divine Light Pictures","genre":"Drama","title":"Loving Annabelle","releaseDate":1141776000000,"language":"en","type":"Movie","_key":"70336"} +{"label":"Erin Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/030\/4c7eff8b7b9aa11345000030\/erin-kelly-profile.jpg","version":20,"birthday":"367192800000","id":"84513","birthplace":"San Diego, California, USA","lastModified":"1301901533000","name":"Erin Kelly","type":"Person","_key":"70337"} +{"label":"Diane Gaidry","version":17,"id":"84514","lastModified":"1301902323000","name":"Diane Gaidry","type":"Person","_key":"70338"} +{"label":"Katherine Brooks","version":23,"id":"84515","lastModified":"1301902057000","name":"Katherine Brooks","type":"Person","_key":"70339"} +{"label":"Black Widow","description":"Bob Rafelson directs this dark psychological thriller about the seductive interplay between two intriguing women. Catharine (Theresa Russell) is a sultry beauty who meticulously sets her traps. Alex (Debra Winger) is a federal sleuth who just as meticulously uncovers what no one else suspects - that this femme fatale tricks wealthy men into marrying her, then kills them to inherit their fortunes","id":"19345","runtime":101,"imdbId":"tt0090738","version":126,"lastModified":"1301904609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8db\/4bc9564e017a3c57fe0268db\/black-widow-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Mystery","title":"Black Widow","releaseDate":539568000000,"language":"en","type":"Movie","_key":"70340"} +{"label":"D.W. Moffett","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/122\/4ceea2ba5e73d65313000122\/d-w-moffett-profile.jpg","version":27,"id":"87956","lastModified":"1301902736000","name":"D.W. Moffett","type":"Person","_key":"70341"} +{"label":"Girlfight","description":"Diana, without her father knowing it, trains as a boxer and achieves impressive success, blazing new trails for female boxers.","id":"19348","runtime":110,"imdbId":"tt0210075","version":167,"lastModified":"1301904777000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ec\/4bc95650017a3c57fe0268ec\/girlfight-mid.jpg","studio":"The Independent Film Channel Productions","genre":"Drama","title":"Girlfight","releaseDate":948499200000,"language":"en","tagline":"Prove them wrong.","type":"Movie","_key":"70342"} +{"label":"Santiago Douglas","version":21,"id":"84519","lastModified":"1301902521000","name":"Santiago Douglas","type":"Person","_key":"70343"} +{"label":"V\u00edctor Sierra","version":21,"id":"84520","lastModified":"1301902628000","name":"V\u00edctor Sierra","type":"Person","_key":"70344"} +{"label":"Elisa Bocanegra","version":20,"id":"84521","lastModified":"1301902452000","name":"Elisa Bocanegra","type":"Person","_key":"70345"} +{"label":"The Up in Smoke Tour","description":"The Up in Smoke Tour is a West Coast hip hop tour in 2000 featuring artists Ice Cube, Eminem, Proof, Snoop Dogg, Dr. Dre, Nate Dogg, Kurupt, D12, MC Ren, Westside Connection, Mel-Man, Tha Eastsidaz, Doggy's Angels, Devin The Dude, Warren G, TQ, Truth Hurts and Xzibit.","id":"19349","runtime":119,"imdbId":"tt0278793","version":148,"lastModified":"1301903153000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/043\/4c2aaa7a5e73d6399a000043\/the-up-in-smoke-tour-mid.jpg","genre":"Documentary","title":"The Up in Smoke Tour","releaseDate":975715200000,"language":"en","type":"Movie","_key":"70346"} +{"label":"Knights of Bloodsteel","description":"The adventure is set in the sorcerous land of Mirabilis, where a populace of elves, goblins, dwarves and humans hanker for the mystical element Bloodsteel; an ore with magical ability-giving properties. When a ruthless band of soldiers led by the wicked Dragon-Eye go seeking the powerful ore, a sorcerer elf Tesselink is given the task of finding its source - the legendary Crucible.","id":"19350","runtime":177,"imdbId":"tt1264363","version":91,"lastModified":"1301904376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8f5\/4bc95650017a3c57fe0268f5\/knights-of-bloodsteel-mid.jpg","genre":"Adventure","title":"Knights of Bloodsteel","releaseDate":1252281600000,"language":"en","type":"Movie","_key":"70347"} +{"label":"David James Elliott","version":30,"id":"84522","lastModified":"1301969702000","name":"David James Elliott","type":"Person","_key":"70348"} +{"label":"Paulette Hinz","version":21,"id":"84523","lastModified":"1301901645000","name":"Paulette Hinz","type":"Person","_key":"70349"} +{"label":"Philip Spink","version":19,"id":"105746","lastModified":"1301902323000","name":"Philip Spink","type":"Person","_key":"70350"} +{"label":"Maniac Nurses","description":"In a remote fortress, a sinister sorority of surgically skilled sisters lie in wait of their next victim. They control a bevy of caged women who have been brain washed and sponge-batherto become the worlds most anatomically awesome surgeons. This is the git-wrenching story of one innocent girl, Sabrina, who finds herself trapped in a living nightmare. Captive to a slavery ring that is training an ","id":"19351","runtime":74,"imdbId":"tt0165870","trailer":"http:\/\/www.youtube.com\/watch?v=1268","version":79,"lastModified":"1301903723000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1c2\/4c30695f7b9aa1665f0001c2\/maniac-nurses-mid.jpg","studio":"Troma Entertainment","genre":"Comedy","title":"Maniac Nurses","releaseDate":631152000000,"language":"en","type":"Movie","_key":"70351"} +{"label":"Susanna Makay","version":20,"id":"84524","lastModified":"1301902357000","name":"Susanna Makay","type":"Person","_key":"70352"} +{"label":"Hajni Brown","version":20,"id":"84526","lastModified":"1301901988000","name":"Hajni Brown","type":"Person","_key":"70353"} +{"label":"Nicole A. Gyony","version":18,"id":"84528","lastModified":"1301901988000","name":"Nicole A. Gyony","type":"Person","_key":"70354"} +{"label":"Celia Farago","version":18,"id":"84529","lastModified":"1301902172000","name":"Celia Farago","type":"Person","_key":"70355"} +{"label":"L\u00e9on Paul De Bruyn","version":18,"id":"84531","lastModified":"1301902318000","name":"L\u00e9on Paul De Bruyn","type":"Person","_key":"70356"} +{"label":"We Will Rock You: Queen Live in Concert","description":"Film of Queen's live concert in Montreal, Canada 1981. Featuring Freddie Mercury, Brian May, John Deacon, and Roger Taylor.","id":"19352","runtime":96,"imdbId":"tt0084892","version":38,"lastModified":"1301907376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8fe\/4bc95651017a3c57fe0268fe\/we-will-rock-you-queen-live-in-concert-mid.jpg","genre":"Musical","title":"We Will Rock You: Queen Live in Concert","releaseDate":463622400000,"language":"en","type":"Movie","_key":"70357"} +{"label":"Saul Swimmer","version":23,"id":"84525","lastModified":"1301901990000","name":"Saul Swimmer","type":"Person","_key":"70358"} +{"label":"Freddie Mercury","version":29,"id":"84527","lastModified":"1301901357000","name":"Freddie Mercury","type":"Person","_key":"70359"} +{"label":"Brian May","version":44,"id":"58438","lastModified":"1301901357000","name":"Brian May","type":"Person","_key":"70360"} +{"label":"Roger Taylor","version":30,"id":"84530","lastModified":"1301901407000","name":"Roger Taylor","type":"Person","_key":"70361"} +{"label":"John Deacon","version":29,"id":"84532","lastModified":"1301901407000","name":"John Deacon","type":"Person","_key":"70362"} +{"label":"Die Abenteuer des Prinzen Achmed","description":"Based on stories from \"The Arabian Nights.\" A wicked sorcerer tricks Prince Achmed into riding a magical flying horse. The heroic prince is able to subdue the magical horse, which he uses to fly off to many adventures. While travelling, he falls in love with the beautiful Princess Peri Banu, and must defeat an army of demons to win her heart. The film is animated using the silhouette technique.","id":"19354","runtime":65,"imdbId":"tt0015532","version":46,"lastModified":"1301908585000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2b2\/4d73fff47b9aa16ad80012b2\/die-abenteuer-des-prinzen-achmed-mid.jpg","title":"Die Abenteuer des Prinzen Achmed","releaseDate":-1293840000000,"language":"en","type":"Movie","_key":"70363"} +{"label":"Madeline At The Ballet","description":"The girls get a chance to perform with a famed ballet master who thinks Madeline is too small to succeed. Madeline's insecurity (and Pepito's teasing) keeps getting in the way of her performance until she is given a pep talk \u2013 and a pair of toe shoes \u2013 by an accomplished prima ballerina, who convinces Madeline that hard work and courage will help her excel.\r\n\r\n","id":"19355","runtime":90,"version":20,"lastModified":"1300980715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/907\/4bc95655017a3c57fe026907\/madeline-at-the-ballet-mid.jpg","genre":"Animation","title":"Madeline At The Ballet","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70364"} +{"label":"Tracey Lee Smythe","version":21,"id":"84540","lastModified":"1301902323000","name":"Tracey Lee Smythe","type":"Person","_key":"70365"} +{"label":"Louise Vallance","version":16,"id":"84541","lastModified":"1301902674000","name":"Louise Vallance","type":"Person","_key":"70366"} +{"label":"Dolphins","description":"In the warm Caribbean, dive underwater with a young marine biologist as she learns the secrets of wild dolphins.","id":"19356","runtime":39,"imdbId":"tt0263278","homepage":"http:\/\/www.dolphinsfilm.com\/","version":322,"lastModified":"1301903852000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/910\/4bc95655017a3c57fe026910\/dolphins-mid.jpg","studio":"IMAX","genre":"Documentary","title":"Dolphins","releaseDate":955670400000,"language":"en","type":"Movie","_key":"70367"} +{"label":"Summer Rental","description":"Jack Chester, an overworked air traffic controller, takes his family on vacation to the beach. Things immediately start to go wrong for the Chesters, and steadily get worse. Jack ends up in a feud with a local yachtsman, and has to race him to regain his pride and family's respect.","id":"19357","runtime":87,"imdbId":"tt0090098","version":129,"lastModified":"1301906459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/91d\/4bc95656017a3c57fe02691d\/summer-rental-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Summer Rental","releaseDate":492393600000,"language":"en","type":"Movie","_key":"70368"} +{"label":"Start the Machine","description":"Start the Machine is a film the Chronicles the genesis of rock band Angels & Airwaves and the recording of their first CD We Don't Need To Whisper in 2005. ","id":"19358","runtime":79,"imdbId":"tt1260649","trailer":"http:\/\/www.youtube.com\/watch?v=1269","version":234,"lastModified":"1301906661000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92b\/4bc95657017a3c57fe02692b\/start-the-machine-mid.jpg","studio":"modlife","genre":"Documentary","title":"Start the Machine","releaseDate":1213660800000,"language":"en","type":"Movie","_key":"70369"} +{"label":"Thomas DeLonge","version":18,"id":"84546","lastModified":"1301902530000","name":"Thomas DeLonge","type":"Person","_key":"70370"} +{"label":"David Kennedy","version":19,"id":"84547","lastModified":"1301902674000","name":"David Kennedy","type":"Person","_key":"70371"} +{"label":"Atom Willard","version":17,"id":"84548","lastModified":"1301902323000","name":"Atom Willard","type":"Person","_key":"70372"} +{"label":"Mark Eaton","version":19,"id":"84549","lastModified":"1301902674000","name":"Mark Eaton","type":"Person","_key":"70373"} +{"label":"Madeline And The Forty Thieves","description":"At the old house- and all over the neighborhood \u2013 people's hats, gloves and scarves are missing. Madeline and Pepito work with Detective Moreau to find the perpetrators, then finally discover that the 'thieves' are some altruistic magpies who are distributing the warm clothes to the homeless in the park.\r\n\r\n","id":"19360","runtime":90,"imdbId":"tt0968996","version":34,"lastModified":"1300980716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/930\/4bc95657017a3c57fe026930\/madeline-and-the-forty-thieves-mid.jpg","genre":"Animation","title":"Madeline And The Forty Thieves","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70374"} +{"label":"Sleep With Me","description":"No overview found.","id":"19361","runtime":86,"imdbId":"tt0111218","version":65,"lastModified":"1301906951000","genre":"Comedy","title":"Sleep With Me","releaseDate":757382400000,"language":"en","type":"Movie","_key":"70375"} +{"label":"Rory Kelly","version":19,"id":"84552","lastModified":"1301902501000","name":"Rory Kelly","type":"Person","_key":"70376"} +{"label":"Meeting People Is Easy","description":"Meeting People Is Easy takes place during the promotion of Radiohead's 1997 release OK Computer, containing a collage of video clips, sound bites, and dialogue going behind the scenes with the band on their world tour, showing the eventual burn-out of the group as the world tour progresses. The inaugural show of the OK Computer tour began on 22 May 1997 in Barcelona, Spain.","id":"19362","runtime":95,"imdbId":"tt0195909","version":109,"lastModified":"1301902725000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93e\/4bc95658017a3c57fe02693e\/meeting-people-is-easy-mid.jpg","studio":"Parlophone","genre":"Music","title":"Meeting People Is Easy","releaseDate":883612800000,"language":"en","type":"Movie","_key":"70377"} +{"label":"Colin Greenwood","version":25,"id":"84553","lastModified":"1301902579000","name":"Colin Greenwood","type":"Person","_key":"70378"} +{"label":"Grant Gee","version":19,"id":"84554","lastModified":"1301901932000","name":"Grant Gee","type":"Person","_key":"70379"} +{"label":"Radiohead - The Astoria, London : Live","description":"Live at the Astoria is a live concert video from English alternative rock group Radiohead's concert at the London Astoria venue on 27 May 1994, released on 13 March 1995 to VHS, and later to DVD in 2005. The concert is notable for its collection of songs being heard then for the first time. These songs would not appear until the release of The Bends, ten months later.","id":"19363","runtime":87,"version":55,"lastModified":"1301903264000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/947\/4bc95658017a3c57fe026947\/radiohead-the-astoria-london-live-mid.jpg","studio":"Parlophone","genre":"Musical","title":"Radiohead - The Astoria, London : Live","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"70380"} +{"label":"Brett Turnbull","version":16,"id":"84804","lastModified":"1301902703000","name":"Brett Turnbull","type":"Person","_key":"70381"} +{"label":"Foreign Exchange","description":"Four high school friends plan to ride out their senior year taking easy classes, including a program for housing foreign exchange students and eventually all attending Ohio State. Hurdles befall each of the four: grades, higher aspirations, love. Is it the Foreign Exchange students that learn from their host or the hosts that do more of the learning?","id":"19365","runtime":126,"imdbId":"tt1146283","version":95,"lastModified":"1301908304000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/950\/4bc95659017a3c57fe026950\/foreign-exchange-mid.jpg","genre":"Action","title":"Foreign Exchange","releaseDate":1220918400000,"language":"en","type":"Movie","_key":"70382"} +{"label":"Josie and the Pussycats","description":"Satire poking fun at the pop music industry, focusing on the twenty-something members of an 80's-ish rock group and their managers.","id":"19366","runtime":98,"imdbId":"tt0236348","trailer":"http:\/\/www.youtube.com\/watch?v=XvVhTHJWFr0","version":114,"lastModified":"1301904089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/95d\/4bc95659017a3c57fe02695d\/josie-and-the-pussycats-mid.jpg","genre":"Comedy","title":"Josie and the Pussycats","releaseDate":986947200000,"language":"en","type":"Movie","_key":"70383"} +{"label":"Thunder Road","description":"A father comes home to Tennessee from the \"police action\" in Korea to take over operation of the family moonshine making operation, but runs afoul of some gangsters who want in on the action.","id":"19368","runtime":92,"imdbId":"tt0052293","version":267,"lastModified":"1301416102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/970\/4bc9565a017a3c57fe026970\/thunder-road-mid.jpg","genre":"Drama","title":"Thunder Road","releaseDate":-367545600000,"language":"en","type":"Movie","_key":"70384"} +{"label":"Jacques Aubuchon","version":21,"id":"84559","lastModified":"1301902235000","name":"Jacques Aubuchon","type":"Person","_key":"70385"} +{"label":"Keely Smith","version":17,"id":"117022","lastModified":"1301902883000","name":"Keely Smith","type":"Person","_key":"70386"} +{"label":"Trevor Bardette","version":20,"id":"110204","lastModified":"1301902953000","name":"Trevor Bardette","type":"Person","_key":"70387"} +{"label":"Sandra Knight","version":21,"id":"102826","lastModified":"1301902671000","name":"Sandra Knight","type":"Person","_key":"70388"} +{"label":"3-Day Weekend","description":"Long-term couple Simon and Jason, along with daddy-ish Cooper and his boy du jour, escape to a mountain cabin for a three-day weekend away from their hectic city lives. Looking to spice up this long-standing tradition, they add a special twist to this years retreat - each of them must invite one attractive single friend to their mountain getaway.","id":"19369","runtime":84,"imdbId":"tt1137994","version":93,"lastModified":"1301905855000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/979\/4bc9565b017a3c57fe026979\/3-day-weekend-mid.jpg","studio":"Guest House Films","genre":"Drama","title":"3-Day Weekend","releaseDate":1212451200000,"language":"en","type":"Movie","_key":"70389"} +{"label":"Joel Harrison","version":19,"id":"84561","lastModified":"1301902323000","name":"Joel Harrison","type":"Person","_key":"70390"} +{"label":"Gaetano Jones","version":19,"id":"84562","lastModified":"1301902323000","name":"Gaetano Jones","type":"Person","_key":"70391"} +{"label":"Derek Long","version":21,"id":"84563","lastModified":"1301901777000","name":"Derek Long","type":"Person","_key":"70392"} +{"label":"Derek Meeker","version":20,"id":"84564","lastModified":"1301902359000","name":"Derek Meeker","type":"Person","_key":"70393"} +{"label":"Douglas Myers","version":19,"id":"84565","lastModified":"1301901946000","name":"Douglas Myers","type":"Person","_key":"70394"} +{"label":"Daniel Rhyder","version":19,"id":"84566","lastModified":"1301902501000","name":"Daniel Rhyder","type":"Person","_key":"70395"} +{"label":"Stephen Twardokus","version":19,"id":"84567","lastModified":"1301901946000","name":"Stephen Twardokus","type":"Person","_key":"70396"} +{"label":"Rob Williams","version":22,"id":"84568","lastModified":"1301901777000","name":"Rob Williams","type":"Person","_key":"70397"} +{"label":"\u00c0 vos marques, party!","description":"Pour forcer une adolescente rebelle \u00e0 s'int\u00e9grer \u00e0 ses pairs, on lui confie une nouvelle venue, puis un sportif en difficult\u00e9. Elle se lie d'amiti\u00e9 avec la premi\u00e8re et d\u00e9veloppe une relation sp\u00e9ciale avec le second.","id":"19370","runtime":119,"imdbId":"tt0956317","version":68,"lastModified":"1301908272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/982\/4bc9565f017a3c57fe026982\/a-vos-marques-party-mid.jpg","title":"\u00c0 vos marques, party!","releaseDate":1175212800000,"language":"en","type":"Movie","_key":"70398"} +{"label":"Yanick Bousquet","version":19,"id":"84570","lastModified":"1301902628000","name":"Yanick Bousquet","type":"Person","_key":"70399"} +{"label":"Catherine de L\u00e9an","version":19,"id":"84571","lastModified":"1301902628000","name":"Catherine de L\u00e9an","type":"Person","_key":"70400"} +{"label":"Maxime Desbiens Tremblay","version":19,"id":"84572","lastModified":"1301902628000","name":"Maxime Desbiens Tremblay","type":"Person","_key":"70401"} +{"label":"M\u00e9lissa D\u00e9sormeaux-Poulin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/48d\/4d852fa95e73d6539d00348d\/m-lissa-d-sormeaux-poulin-profile.jpg","version":26,"id":"84573","lastModified":"1301902628000","name":"M\u00e9lissa D\u00e9sormeaux-Poulin","type":"Person","_key":"70402"} +{"label":"Alexandre Despatie","version":19,"id":"84574","lastModified":"1301902628000","name":"Alexandre Despatie","type":"Person","_key":"70403"} +{"label":"Roxanne Gaudette-Loiseau","version":19,"id":"84575","lastModified":"1301902452000","name":"Roxanne Gaudette-Loiseau","type":"Person","_key":"70404"} +{"label":"Guy Jodoin","version":19,"id":"84576","lastModified":"1301902628000","name":"Guy Jodoin","type":"Person","_key":"70405"} +{"label":"Jessica Kardos","version":19,"id":"84577","lastModified":"1301902628000","name":"Jessica Kardos","type":"Person","_key":"70406"} +{"label":"Alyssa Labelle","version":19,"id":"84578","lastModified":"1301902628000","name":"Alyssa Labelle","type":"Person","_key":"70407"} +{"label":"Kim Lambert","version":19,"id":"84579","lastModified":"1301902628000","name":"Kim Lambert","type":"Person","_key":"70408"} +{"label":"Samuel Landry","version":19,"id":"84580","lastModified":"1301902628000","name":"Samuel Landry","type":"Person","_key":"70409"} +{"label":"Jocelyn Lebeau","version":19,"id":"84581","lastModified":"1301902628000","name":"Jocelyn Lebeau","type":"Person","_key":"70410"} +{"label":"Alexandre Martel","version":19,"id":"84582","lastModified":"1301902628000","name":"Alexandre Martel","type":"Person","_key":"70411"} +{"label":"Marina Orsini","version":22,"id":"84584","lastModified":"1301902628000","name":"Marina Orsini","type":"Person","_key":"70412"} +{"label":"Jason Roy-L\u00e9veill\u00e9e","version":19,"id":"84585","lastModified":"1301902452000","name":"Jason Roy-L\u00e9veill\u00e9e","type":"Person","_key":"70413"} +{"label":"Am\u00e9lie Sorel","version":19,"id":"84586","lastModified":"1301902452000","name":"Am\u00e9lie Sorel","type":"Person","_key":"70414"} +{"label":"Andr\u00e9e Watters","version":19,"id":"84587","lastModified":"1301902628000","name":"Andr\u00e9e Watters","type":"Person","_key":"70415"} +{"label":"Mariloup Wolfe","version":19,"id":"84588","lastModified":"1301902628000","name":"Mariloup Wolfe","type":"Person","_key":"70416"} +{"label":"Mariev Rodrig","version":19,"id":"84589","lastModified":"1301902628000","name":"Mariev Rodrig","type":"Person","_key":"70417"} +{"label":"Mr. Nanny","description":"A former pro-wrestler is hired to be the bodyguard\/nanny for a couple of bratty kids whose inventor father is being stalked by a rival.","id":"19371","runtime":84,"imdbId":"tt0107612","version":111,"lastModified":"1301906846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/98f\/4bc95660017a3c57fe02698f\/mr-nanny-mid.jpg","genre":"Family","title":"Mr. Nanny","releaseDate":750038400000,"language":"en","type":"Movie","_key":"70418"} +{"label":"Afa Anoai","version":20,"id":"84590","lastModified":"1301902452000","name":"Afa Anoai","type":"Person","_key":"70419"} +{"label":"Ed Leslie","version":20,"id":"84591","lastModified":"1301902628000","name":"Ed Leslie","type":"Person","_key":"70420"} +{"label":"Butch Brickell","version":20,"id":"84592","lastModified":"1301902452000","name":"Butch Brickell","type":"Person","_key":"70421"} +{"label":"James Coffey","version":20,"id":"84593","lastModified":"1301902628000","name":"James Coffey","type":"Person","_key":"70422"} +{"label":"Dondi Dahlin","version":20,"id":"84594","lastModified":"1301902235000","name":"Dondi Dahlin","type":"Person","_key":"70423"} +{"label":"Dennis Deveaugh","version":21,"id":"84595","lastModified":"1301902356000","name":"Dennis Deveaugh","type":"Person","_key":"70424"} +{"label":"Kelly Erin","version":20,"id":"84596","lastModified":"1301902235000","name":"Kelly Erin","type":"Person","_key":"70425"} +{"label":"Danny Fotou","version":21,"id":"84597","lastModified":"1301902359000","name":"Danny Fotou","type":"Person","_key":"70426"} +{"label":"Joe Hess","version":20,"id":"84599","lastModified":"1301902235000","name":"Joe Hess","type":"Person","_key":"70427"} +{"label":"John F. Hoye","version":20,"id":"84600","lastModified":"1301902235000","name":"John F. Hoye","type":"Person","_key":"70428"} +{"label":"Mother Love","version":21,"id":"84601","lastModified":"1301902235000","name":"Mother Love","type":"Person","_key":"70429"} +{"label":"David Mandel","version":43,"id":"57407","lastModified":"1301901731000","name":"David Mandel","type":"Person","_key":"70430"} +{"label":"Marc Mercury","version":18,"id":"84603","lastModified":"1301902235000","name":"Marc Mercury","type":"Person","_key":"70431"} +{"label":"Artie Malesci","version":20,"id":"84602","lastModified":"1301902235000","name":"Artie Malesci","type":"Person","_key":"70432"} +{"label":"Sandy Mielke","version":20,"id":"84604","lastModified":"1301902235000","name":"Sandy Mielke","type":"Person","_key":"70433"} +{"label":"Jeff Moldovan","version":20,"id":"84605","lastModified":"1301902235000","name":"Jeff Moldovan","type":"Person","_key":"70434"} +{"label":"Fred Ornstein","version":20,"id":"84607","lastModified":"1301902235000","name":"Fred Ornstein","type":"Person","_key":"70435"} +{"label":"Raymond O'Connor","version":26,"id":"84606","lastModified":"1301902235000","name":"Raymond O'Connor","type":"Person","_key":"70436"} +{"label":"Darci Osiecky","version":20,"id":"84608","lastModified":"1301902235000","name":"Darci Osiecky","type":"Person","_key":"70437"} +{"label":"Jen Sung Outerbridge","version":20,"id":"84609","lastModified":"1301902235000","name":"Jen Sung Outerbridge","type":"Person","_key":"70438"} +{"label":"Hope Pomerance","version":20,"id":"84610","lastModified":"1301902235000","name":"Hope Pomerance","type":"Person","_key":"70439"} +{"label":"Tim Powell","version":21,"id":"84611","lastModified":"1301902235000","name":"Tim Powell","type":"Person","_key":"70440"} +{"label":"Joshua Santiago","version":20,"id":"84612","lastModified":"1301902235000","name":"Joshua Santiago","type":"Person","_key":"70441"} +{"label":"Madeline Zima","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7ee\/4be1ca45017a3c35b40007ee\/madeline-zima-profile.jpg","version":32,"id":"84613","lastModified":"1301901826000","name":"Madeline Zima","type":"Person","_key":"70442"} +{"label":"The Executioner's Song","description":"No overview found.","id":"19373","runtime":0,"imdbId":"tt0083909","version":78,"lastModified":"1301904461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa8\/4be4b7e9017a3c35bb000aa8\/the-executioner-s-song-mid.jpg","genre":"Crime","title":"The Executioner's Song","releaseDate":407289600000,"language":"en","type":"Movie","_key":"70443"} +{"label":"Lawrence Schiller","version":21,"id":"84614","lastModified":"1301902384000","name":"Lawrence Schiller","type":"Person","_key":"70444"} +{"label":"Were The World Mine","description":"If you had a love-potion, who would you make fall madly in love with you? Timothy, prone to escaping his dismal high school reality through dazzling musical daydreams, gets to answer that question in a very real way. After his eccentric teacher casts him as Puck in A Midsummer Night's Dream, he stumbles upon a recipe hidden within the script to create the play's magical, purple love-pansy.","id":"19375","runtime":95,"imdbId":"tt0476991","homepage":"http:\/\/www.weretheworldminefilm.com\/","version":128,"lastModified":"1301905501000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/998\/4bc95660017a3c57fe026998\/were-the-world-mine-mid.jpg","studio":"Speak Productions","genre":"Musical","title":"Were The World Mine","releaseDate":1214265600000,"language":"en","type":"Movie","_key":"70445"} +{"label":"Tanner Cohen","version":20,"id":"84615","lastModified":"1301902539000","name":"Tanner Cohen","type":"Person","_key":"70446"} +{"label":"Judy McLane","version":19,"id":"84616","lastModified":"1301902674000","name":"Judy McLane","type":"Person","_key":"70447"} +{"label":"Zelda Williams","version":19,"id":"84617","lastModified":"1301902674000","name":"Zelda Williams","type":"Person","_key":"70448"} +{"label":"Tom Gustafson","version":19,"id":"84618","lastModified":"1301902674000","name":"Tom Gustafson","type":"Person","_key":"70449"} +{"label":"The Cat from Outer Space","description":"A UFO is stranded on earth and impounded by the US government. Its pilot, a cat with a collar that has special powers, including the ability to allow the cat to communicate with humans, has eluded the authorities and needs the help of a man named Frank in order to reclaim and repair his ship to get back home.","id":"19378","runtime":104,"imdbId":"tt0077305","version":79,"lastModified":"1301907377000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a1\/4bc95661017a3c57fe0269a1\/the-cat-from-outer-space-mid.jpg","studio":"Walt Disney Productions","genre":"Comedy","title":"The Cat from Outer Space","releaseDate":266198400000,"language":"en","type":"Movie","_key":"70450"} +{"label":"Condorman","description":"Comic artist and writer Woody performs a simple courier operation for his friend Harry who works for the CIA. But when he successfully fends off hostile agents, he earns the respect of the beautiful Natalia, who requests his assistance for her defection. Woody uses this request as leverage to use the CIA's resources to bring his comic book creation, Condorman, to life to battle the evil Krokov.","id":"19379","runtime":90,"imdbId":"tt0082199","version":72,"lastModified":"1301903987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9b2\/4bc95662017a3c57fe0269b2\/condorman-mid.jpg","studio":"Walt Disney Productions","genre":"Comedy","title":"Condorman","releaseDate":365990400000,"language":"en","type":"Movie","_key":"70451"} +{"label":"White Sands","description":"A small southwestern town sheriff finds a body in the desert with a suitcase and $500,000. He impersonates the man and stumbles into an FBI investigation.","id":"19380","runtime":101,"imdbId":"tt0105813","trailer":"http:\/\/www.youtube.com\/watch?v=uDANCwhxAYw","version":215,"lastModified":"1301905180000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9bb\/4bc95663017a3c57fe0269bb\/white-sands-mid.jpg","studio":"Morgan Creek Productions","genre":"Action","title":"White Sands","releaseDate":704073600000,"language":"en","type":"Movie","_key":"70452"} +{"label":"Alexander Nicksay","version":21,"id":"84624","lastModified":"1301902705000","name":"Alexander Nicksay","type":"Person","_key":"70453"} +{"label":"John Lafayette","version":23,"id":"84625","lastModified":"1301902679000","name":"John Lafayette","type":"Person","_key":"70454"} +{"label":"Ken Thorley","version":21,"id":"84626","lastModified":"1301902703000","name":"Ken Thorley","type":"Person","_key":"70455"} +{"label":"Strike!","description":"If there's one thing this wild group of friends at an all-girls high school has learned, it's how to get what they want! So when word leaks out that their school is about to merge with an all-boys academy, some of the students strike back... and the girls wage an all-out assault in an outrageous battle of the sexes!","id":"19381","runtime":97,"imdbId":"tt0120692","version":110,"lastModified":"1301904327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c0\/4bc95664017a3c57fe0269c0\/strike-mid.jpg","genre":"Comedy","title":"Strike!","releaseDate":912643200000,"language":"en","type":"Movie","_key":"70456"} +{"label":"Sarah Kernochan","version":27,"id":"15149","lastModified":"1301901558000","name":"Sarah Kernochan","type":"Person","_key":"70457"} +{"label":"Biloxi Blues","description":"During the Second World War, a group of young recruits go through boot camp in Biloxi Mississippi. Eugene enlists in the US Army during the last year of the War and is sent to basic training at Biloxi, where he must live with a variety of fellow soldiers, enduring the whims of a mentally unstable drill sergeant, and falls in love to a prostitute.","id":"19382","runtime":106,"imdbId":"tt0094746","version":360,"lastModified":"1301903327000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4bc95664017a3c57fe0269c9\/biloxi-blues-mid.jpg","studio":"Rastar Pictures","genre":"Comedy","title":"Biloxi Blues","releaseDate":575251200000,"language":"en","type":"Movie","_key":"70458"} +{"label":"Matt Mulhern","version":23,"id":"85867","lastModified":"1301902714000","name":"Matt Mulhern","type":"Person","_key":"70459"} +{"label":"Corey Parker","version":21,"id":"111902","lastModified":"1301903031000","name":"Corey Parker","type":"Person","_key":"70460"} +{"label":"Targets","description":"An elderly horror-film star who, while making a personal appearance at a drive-in theatre, confronts a psychotic Vietnam veteran who has turned into a mass-murdering sniper.","id":"19383","runtime":90,"imdbId":"tt0063671","trailer":"http:\/\/www.youtube.com\/watch?v=oiSc3xAXX5g","version":109,"lastModified":"1301906847000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9d7\/4bc95668017a3c57fe0269d7\/targets-mid.jpg","studio":"Saticoy Productions","genre":"Suspense","title":"Targets","releaseDate":-51494400000,"language":"en","type":"Movie","_key":"70461"} +{"label":"Tim O'Kelly","version":20,"id":"84628","lastModified":"1301902452000","name":"Tim O'Kelly","type":"Person","_key":"70462"} +{"label":"Arthur Peterson","version":20,"id":"84629","lastModified":"1301902062000","name":"Arthur Peterson","type":"Person","_key":"70463"} +{"label":"Nancy Hsueh","version":20,"id":"84630","lastModified":"1301902628000","name":"Nancy Hsueh","type":"Person","_key":"70464"} +{"label":"Tanya Morgan","version":20,"id":"84632","lastModified":"1301902628000","name":"Tanya Morgan","type":"Person","_key":"70465"} +{"label":"Dark Angel","description":"Jack Caine (Dolph Lundgren) is a Houston vice cop who's forgotten the rule book. His self-appointed mission is to stop the drugs trade and the number one supplier Victor Manning. Whilst involved in an undercover operation to entrap Victor Manning, his partner gets killed, and a sinister newcomer enters the scene... ","id":"19384","runtime":91,"imdbId":"tt0099817","trailer":"http:\/\/www.youtube.com\/watch?v=Pim4GLxxr00","version":109,"lastModified":"1301904211000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/04c\/4c1f36c27b9aa130a600004c\/dark-angel-mid.jpg","studio":"Vision International","genre":"Action","title":"Dark Angel","releaseDate":654652800000,"language":"en","tagline":"Jack Caine. Houston cop. Human. What he's up against, isn't.","type":"Movie","_key":"70466"} +{"label":"Brian Benben","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/a31\/4c5df7cf7b9aa151f6000a31\/brian-benben-profile.jpg","version":23,"id":"84690","lastModified":"1301901607000","name":"Brian Benben","type":"Person","_key":"70467"} +{"label":"Jay Bilas","version":20,"id":"127965","lastModified":"1301902798000","name":"Jay Bilas","type":"Person","_key":"70468"} +{"label":"David Ackroyd","version":20,"id":"127966","lastModified":"1301902798000","name":"David Ackroyd","type":"Person","_key":"70469"} +{"label":"The Secret of the Sword","description":"No overview found.","id":"19386","runtime":100,"imdbId":"tt0089984","version":87,"lastModified":"1301908489000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9f2\/4bc9566a017a3c57fe0269f2\/the-secret-of-the-sword-mid.jpg","studio":"Filmation Associates","genre":"Animation","title":"The Secret of the Sword","releaseDate":473385600000,"language":"en","type":"Movie","_key":"70470"} +{"label":"The X-Files","description":"No overview found.","id":"19387","version":637,"lastModified":"1301903548000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9fb\/4bc9566b017a3c57fe0269fb\/the-x-files-mid.jpg","title":"The X-Files","language":"en","type":"Movie","_key":"70471"} +{"label":"The Big Shot","description":"Duke Berne, former big shot but now a three-time loser, fears returning to crime because a fourth conviction will mean a life sentence. Finally, haunted by his past and goaded by his cohorts, he joins in planning an armoured car robbery.","id":"19388","runtime":82,"imdbId":"tt0034513","version":82,"lastModified":"1301907244000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a08\/4bc9566c017a3c57fe026a08\/the-big-shot-mid.jpg","title":"The Big Shot","releaseDate":-869443200000,"language":"en","type":"Movie","_key":"70472"} +{"label":"Richard Travis","version":27,"id":"84634","lastModified":"1301901150000","name":"Richard Travis","type":"Person","_key":"70473"} +{"label":"Susan Peters","version":21,"id":"84635","lastModified":"1301901847000","name":"Susan Peters","type":"Person","_key":"70474"} +{"label":"Joe Downing","version":20,"id":"84639","lastModified":"1301902452000","name":"Joe Downing","type":"Person","_key":"70475"} +{"label":"Roland Drew","version":22,"id":"33759","lastModified":"1301902009000","name":"Roland Drew","type":"Person","_key":"70476"} +{"label":"Joe King","version":22,"id":"84640","lastModified":"1301902653000","name":"Joe King","type":"Person","_key":"70477"} +{"label":"Lewis Seiler","version":29,"id":"84641","lastModified":"1301987197000","name":"Lewis Seiler","type":"Person","_key":"70478"} +{"label":"Dog Days of Summer","description":"A mysterious drifter lures two boys into uncovering the secrets of a sleepy southern town. ","id":"19389","runtime":0,"imdbId":"tt0475255","version":111,"lastModified":"1301906743000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a16\/4bc9566d017a3c57fe026a16\/dog-days-of-summer-mid.jpg","genre":"Drama","title":"Dog Days of Summer","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70479"} +{"label":"Dark Streets","description":"Chaz Davenport is a dashing bachelor who owns what promises to become the hottest new nightclub in town--if only the lights would stay on. Surrounded by the sumptuous blues music he adores, and with his pick of the gorgeous women who perform their sensual dance numbers onstage every night, Chaz is the envy of every man. ","id":"19392","runtime":83,"imdbId":"tt0772165","homepage":"http:\/\/darkstreetsmovie.com\/","version":200,"lastModified":"1301903490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a33\/4bc95676017a3c57fe026a33\/dark-streets-mid.jpg","studio":"Capture Film Internatrional","genre":"Drama","title":"Dark Streets","releaseDate":1229040000000,"language":"en","type":"Movie","_key":"70480"} +{"label":"Jarreth J. Merz","version":19,"id":"84706","lastModified":"1301902628000","name":"Jarreth J. Merz","type":"Person","_key":"70481"} +{"label":"Toledo Diamond","version":19,"id":"84708","lastModified":"1301902628000","name":"Toledo Diamond","type":"Person","_key":"70482"} +{"label":"Tracy Phillips","version":19,"id":"84709","lastModified":"1301902628000","name":"Tracy Phillips","type":"Person","_key":"70483"} +{"label":"Mike Muscat","version":20,"id":"84710","lastModified":"1301902062000","name":"Mike Muscat","type":"Person","_key":"70484"} +{"label":"Kimberly Sanders","version":19,"id":"84711","lastModified":"1301902628000","name":"Kimberly Sanders","type":"Person","_key":"70485"} +{"label":"Rachel Samuels","version":19,"id":"84712","lastModified":"1301901717000","name":"Rachel Samuels","type":"Person","_key":"70486"} +{"label":"Simon","description":"When Camiel, a gay dentist, and Simon, a carefree caf\u00e9 owner, collide in a traffic accident their lives become intrinsically entangled. When they bump into each other 14 years later, Simon is severely ill. Camiel experiences at close range how Simon and those around him come to terms with his illness. The strength and humour that Simon shows during this time leave a lasting impression on Camiel.","id":"19398","runtime":102,"imdbId":"tt0393775","trailer":"http:\/\/www.youtube.com\/watch?v=gNnEWwXGE_s","version":70,"lastModified":"1301908272000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a3c\/4bc95676017a3c57fe026a3c\/simon-mid.jpg","genre":"Drama","title":"Simon","releaseDate":1096502400000,"language":"en","type":"Movie","_key":"70487"} +{"label":"Somewhere, Tomorrow","description":"Lori Anderson is trying to deal with the recent tragedy of her father's death. As Lori's mother moves on, Lori finds herself stuck, consumed by grief and anger. With the lingering feeling that something about her father's passing was not right, Lori turns to his journals for answers. The events that follow catapult Lori into a strange romance with a ghost, resulting in a mysterious journey.","id":"19399","runtime":91,"imdbId":"tt0086337","version":93,"lastModified":"1301906193000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a49\/4bc95677017a3c57fe026a49\/somewhere-tomorrow-mid.jpg","genre":"Drama","title":"Somewhere, Tomorrow","releaseDate":410227200000,"language":"en","type":"Movie","_key":"70488"} +{"label":"Gwendoline","description":"A beautiful woman hires an intrepid adventurer to help find her father, who has disappeared in the jungle while searching for a rare and priceless butterfly. Along the way they run into cannibals, a race of Amazon warriors and all the usual attractions one would expect to find in a lost jungle.","id":"19400","runtime":105,"imdbId":"tt0087903","version":100,"lastModified":"1301906666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a4e\/4bc95678017a3c57fe026a4e\/gwendoline-mid.jpg","studio":"Films de L'Alma","genre":"Action","title":"Gwendoline","releaseDate":445046400000,"language":"en","type":"Movie","_key":"70489"} +{"label":"Brent Huff","version":29,"id":"84648","lastModified":"1301901469000","name":"Brent Huff","type":"Person","_key":"70490"} +{"label":"The Case for Christ","description":"Based upon the Gold-Medallion award-winning best-seller, The Case for Christ documents Lee Strobel's journey from atheism to faith through his two-year investigation of the Bible and the life of Jesus Christ.","id":"19401","runtime":71,"imdbId":"tt1153037","version":271,"lastModified":"1301904716000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a5b\/4bc95678017a3c57fe026a5b\/the-case-for-christ-mid.jpg","genre":"Documentary","title":"The Case for Christ","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70491"} +{"label":"Wisegal","description":"A drama centered around Patty Montanari, the widowed mother of two who went to work for her lover Frank Russo, a captain in a Brooklyn crime family.","id":"19402","runtime":0,"imdbId":"tt1105745","version":215,"lastModified":"1301908206000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/563\/4d6c747f7b9aa13633004563\/wisegal-mid.jpg","genre":"Crime","title":"Wisegal","releaseDate":1205539200000,"language":"en","type":"Movie","_key":"70492"} +{"label":"The Mechanic","description":"Arthur Bishop (Bronson) is a \"mechanic\" \u2014 a hit man who performs his jobs cleanly, without leaving a trace of his work. A young man (Vincent) befriends Bishop and wants to become a professional hit man, but eventually it becomes clear that someone has betrayed them.","id":"19403","runtime":100,"imdbId":"tt0068931","trailer":"http:\/\/www.youtube.com\/watch?v=CJ3t8TDtLg0","version":401,"lastModified":"1301902772000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/792\/4d8fec5d7b9aa16a24002792\/the-mechanic-mid.jpg","studio":"Chartoff-Winkler Productions","genre":"Action","title":"The Mechanic","releaseDate":90806400000,"language":"en","type":"Movie","_key":"70493"} +{"label":"Linda Ridgeway","version":21,"id":"84652","lastModified":"1301902543000","name":"Linda Ridgeway","type":"Person","_key":"70494"} +{"label":"James Davidson","version":21,"id":"84653","lastModified":"1301902703000","name":"James Davidson","type":"Person","_key":"70495"} +{"label":"Lindsay Crosby","version":21,"id":"84654","lastModified":"1301902703000","name":"Lindsay Crosby","type":"Person","_key":"70496"} +{"label":"Steve Cory","version":21,"id":"84655","lastModified":"1301902711000","name":"Steve Cory","type":"Person","_key":"70497"} +{"label":"Tak Kubota","version":22,"id":"84656","lastModified":"1301902711000","name":"Tak Kubota","type":"Person","_key":"70498"} +{"label":"Dilwale Dulhania Le Jayenge","description":"Raj is a rich, carefree, happy-go-lucky second generation NRI. Simran is the daughter of Chaudhary Baldev Singh, who in spite of being an NRI is very strict about adherence to Indian values. Simran has left for India to be married to her childhood fianc\u00e9. Raj leaves for India with a mission at his hands, to claim his lady love under the noses of her whole family. Thus begins a saga.","id":"19404","runtime":190,"imdbId":"tt0112870","homepage":"http:\/\/www.yashrajfilms.com\/Movies\/MovieIndividual.aspx?MovieID=07bcecd7-13fe-413e-8a4f-6b79a9dccb40","version":191,"lastModified":"1301907988000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a7e\/4bc9567b017a3c57fe026a7e\/dilwale-dulhania-le-jayenge-mid.jpg","studio":"Yash Raj Films","genre":"Comedy","title":"Dilwale Dulhania Le Jayenge","releaseDate":814060800000,"language":"en","tagline":"Come...Fall in Love","type":"Movie","_key":"70499"} +{"label":"Achala Sachdev","version":15,"id":"146972","lastModified":"1301903091000","name":"Achala Sachdev","type":"Person","_key":"70500"} +{"label":"Pooja Ruparel","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4d8\/4d217acf7b9aa1289f0004d8\/pooja-ruparel-profile.jpg","version":16,"id":"146973","lastModified":"1301902687000","name":"Pooja Ruparel","type":"Person","_key":"70501"} +{"label":"Mandira Bedi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4de\/4d217b4f7b9aa1280f0004de\/mandira-bedi-profile.jpg","version":18,"id":"146974","lastModified":"1301902682000","name":"Mandira Bedi","type":"Person","_key":"70502"} +{"label":"Recess: School's Out","description":"Recess: School's Out is a 2001 animated film based on the Disney television series Recess. This film was produced by Walt Disney Pictures and was released theatrically nationwide on February 16, 2001.It's the most exciting time of year at Third Street Elementary-- the end of the School Year! But boredom quickly sets in for protagonist TJ Detweiler, as his friends are headed for Summer Camp. One day, while passing by the school on his bike, he notices a green glow coming from the school's auditor","id":"19405","runtime":83,"imdbId":"tt0265632","version":239,"lastModified":"1302015736000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a87\/4bc9567c017a3c57fe026a87\/recess-school-s-out-mid.jpg","studio":"Walt Disney Pictures","genre":"Animation","title":"Recess: School's Out","releaseDate":982281600000,"language":"en","tagline":"Saving The World One Playground At A Time","type":"Movie","_key":"70503"} +{"label":"Los dioses rotos","description":"No overview found.","id":"19406","runtime":0,"imdbId":"tt1373122","version":52,"lastModified":"1300980721000","title":"Los dioses rotos","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70504"} +{"label":"Pirates","description":"Swash and unbuckle. In 1763, the Caribbean is awash in pirates. The worst is Stagnetti, backed by his bloodthirsty first mate, Serena. He wants the Scepter of Inca, which gives its owner great powers. To remove it from remote Calaveras Island, he needs the Dagger of Ataljuapa as well as the aid of a descendant of the family to whom the Scepter was entrusted. So, he kidnaps Manuel Valenzuela, honeymooning with the lovely Isabella. On Stagnetti's trail are pirate hunters, Captain Edward Reynolds a","id":"19410","runtime":129,"imdbId":"tt0477457","version":29,"lastModified":"1301905943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/899\/4d4741927b9aa15bb000b899\/pirates-mid.jpg","genre":"Romance","title":"Pirates","language":"en","type":"Movie","_key":"70505"} +{"label":"Brutti Sporchi e Cattivi","description":"Giacinto lives with his wife, their ten children and various other family members in a shack on the hills of Rome. Some time ago he has lost his left eye while at work, and got a consistent sum of money from the insurance company, which he keeps hidden from the rest of the family. His whole life is now based on defending the money he sees as his own, while the rest of the family tries to kill him.","id":"19413","runtime":115,"imdbId":"tt0074252","version":66,"lastModified":"1301904931000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/333\/4d7806d45e73d67f02001333\/brutti-sporchi-e-cattivi-mid.jpg","studio":"Compagnia Cinematografica Champion","title":"Brutti Sporchi e Cattivi","releaseDate":212284800000,"language":"en","type":"Movie","_key":"70506"} +{"label":"Maria Luisa Santella","version":21,"id":"84660","lastModified":"1301902703000","name":"Maria Luisa Santella","type":"Person","_key":"70507"} +{"label":"Please Don't Eat the Daisies","description":"Drama critic Larry McKay, his wife Kay, and their four sons move from their crowded Manhattan apartment to an old house in the country. While housewife Kay settles into suburban life, Larry continues to enjoy the theater and party scene of New York. Kay soon begins to question Larry's fidelity when he mentions a flirtatious encounter with Broadway star Deborah Vaughn","id":"19414","runtime":112,"imdbId":"tt0054188","version":145,"lastModified":"1301907577000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a95\/4bc95680017a3c57fe026a95\/please-don-t-eat-the-daisies-mid.jpg","genre":"Comedy","title":"Please Don't Eat the Daisies","releaseDate":-307843200000,"language":"en","type":"Movie","_key":"70508"} +{"label":"Janis Paige","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/2c8\/4bf1b2c6017a3c32130002c8\/janis-paige-profile.jpg","version":27,"id":"84659","lastModified":"1301902501000","name":"Janis Paige","type":"Person","_key":"70509"} +{"label":"John Harding","version":24,"id":"47760","lastModified":"1301902345000","name":"John Harding","type":"Person","_key":"70510"} +{"label":"Summer Lovers","description":"A young American couple go to the Greek islands for the summer and r dazzled by the beauty and the uninhibited people surrounding them. The young man meets and begins an affair with a French woman, an archeologist working on a dig. The young American woman discovers this and goes to confront the other woman. The French woman is quite taken with the American woman's photographic work, and the th","id":"19415","runtime":98,"imdbId":"tt0084737","version":130,"lastModified":"1302204715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/087\/4cc76aa95e73d65023000087\/summer-lovers-mid.jpg","genre":"Drama","title":"Summer Lovers","releaseDate":378691200000,"language":"en","tagline":"Sun, surf, sand... and the sexy adventure of a lifetime.","type":"Movie","_key":"70511"} +{"label":"Hans van Tongeren","version":18,"id":"107827","lastModified":"1301902883000","name":"Hans van Tongeren","type":"Person","_key":"70512"} +{"label":"Lydia Lenossi","version":17,"id":"107834","lastModified":"1301902883000","name":"Lydia Lenossi","type":"Person","_key":"70513"} +{"label":"Vladimiros Kiriakidis","version":19,"id":"107836","lastModified":"1301902883000","name":"Vladimiros Kiriakidis","type":"Person","_key":"70514"} +{"label":"Carlos Rodr\u00edguez Ramos","version":17,"id":"107838","lastModified":"1301902883000","name":"Carlos Rodr\u00edguez Ramos","type":"Person","_key":"70515"} +{"label":"Rika Dialina","version":20,"id":"99456","lastModified":"1301902643000","name":"Rika Dialina","type":"Person","_key":"70516"} +{"label":"Andreas Filippides","version":17,"id":"107839","lastModified":"1301902883000","name":"Andreas Filippides","type":"Person","_key":"70517"} +{"label":"Double Dare","description":"With being thrown off buildings an occupational hazard, professional stuntwomen Jeannie Epper and Zo\u00eb Bell (the alter egos of Wonder Woman and Xena, respectively) would seem well-equipped for any challenges Hollywood might dish out. But finding roles -- and respect -- in a male-dominated field can prove more harrowing than dodging punches.","id":"19416","runtime":81,"imdbId":"tt0365135","trailer":"http:\/\/www.youtube.com\/watch?v=2747","version":1023,"lastModified":"1301905057000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa3\/4bc95681017a3c57fe026aa3\/double-dare-mid.jpg","genre":"Documentary","title":"Double Dare","releaseDate":1113523200000,"language":"en","type":"Movie","_key":"70518"} +{"label":"Jeannie Epper","version":17,"id":"91782","lastModified":"1301902984000","name":"Jeannie Epper","type":"Person","_key":"70519"} +{"label":"Dhol","description":"No overview found.","id":"19418","runtime":0,"imdbId":"tt0995035","version":73,"lastModified":"1301418843000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab0\/4bc95682017a3c57fe026ab0\/dhol-mid.jpg","studio":"Percept Picture Company","title":"Dhol","releaseDate":1189728000000,"language":"en","type":"Movie","_key":"70520"} +{"label":"Kunal Khemu","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/4b2\/4d22518c7b9aa1736b0034b2\/kunal-khemu-profile.jpg","version":28,"id":"85454","lastModified":"1301901526000","name":"Kunal Khemu","type":"Person","_key":"70521"} +{"label":"Tanushree Dutta","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/7d0\/4d8077577b9aa12db20007d0\/tanushree-dutta-profile.jpg","version":25,"id":"85715","lastModified":"1301902500000","name":"Tanushree Dutta","type":"Person","_key":"70522"} +{"label":"Payal Rohatgi","version":22,"id":"85713","lastModified":"1301902674000","name":"Payal Rohatgi","type":"Person","_key":"70523"} +{"label":"Arbaaz Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/111\/4c4f23555e73d62ec5000111\/arbaaz-khan-profile.jpg","version":41,"id":"86013","lastModified":"1301901533000","name":"Arbaaz Khan","type":"Person","_key":"70524"} +{"label":"Screwed","description":"A chauffeur kidnaps his rich boss's dog to hold it for ransom, but when she accidentally gets the dog back, she thinks that it's the chauffeur who's been kidnapped.","id":"19419","runtime":81,"imdbId":"tt0156323","version":180,"lastModified":"1301906824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ab9\/4bc95682017a3c57fe026ab9\/screwed-mid.jpg","genre":"Action","title":"Screwed","releaseDate":958089600000,"language":"en","type":"Movie","_key":"70525"} +{"label":"Underworld Live - Everything Everything","description":"Techno fans will dig the power and energy in this compilation featuring nine of the innovative British trio's jam sessions captured in Japan, Holland, Belgium, England and Ireland during their 1998-'99 world tour. Crisp sound makes tracks such as \"Push Upstairs\" and \"Pearls Girl\" pulsate with perfection. Add vivid concert film melded with imaginative visuals, and this dynamic video can't be beat.","id":"19420","runtime":90,"imdbId":"tt0304868","version":68,"lastModified":"1301907207000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ac2\/4bc95683017a3c57fe026ac2\/underworld-live-everything-everything-mid.jpg","title":"Underworld Live - Everything Everything","releaseDate":971136000000,"language":"en","type":"Movie","_key":"70526"} +{"label":"Darren Emerson","version":20,"id":"84662","lastModified":"1301902674000","name":"Darren Emerson","type":"Person","_key":"70527"} +{"label":"Karl Hyde","version":20,"id":"84663","lastModified":"1301902708000","name":"Karl Hyde","type":"Person","_key":"70528"} +{"label":"Rick Smith","version":19,"id":"84664","lastModified":"1301902674000","name":"Rick Smith","type":"Person","_key":"70529"} +{"label":"Lost in Austen","description":"Amanda, an ardent Jane Austen fan, lives in present day London with her boyfriend Michael, until she finds she's swapped places with Austen's fictional creation Elizabeth Bennett. ","id":"19422","runtime":184,"imdbId":"tt1117666","version":119,"lastModified":"1301904626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b9\/4c01160c017a3c70360010b9\/lost-in-austen-mid.jpg","studio":"Granada Television","genre":"Comedy","title":"Lost in Austen","releaseDate":1199145600000,"language":"en","tagline":"Same story. Different centuries.","type":"Movie","_key":"70530"} +{"label":"Elliot Cowan","version":19,"id":"107139","lastModified":"1301903049000","name":"Elliot Cowan","type":"Person","_key":"70531"} +{"label":"Dan Zeff","version":22,"id":"47705","lastModified":"1301902173000","name":"Dan Zeff","type":"Person","_key":"70532"} +{"label":"Going the Distance","description":"Nick (Jacot), whose life seemed to be going perfectly, realizes he may lose his girlfriend to a famous music producer (Priestley). He sets out on a roadtrip from the west coast to go to the MuchMusic Video Awards in Toronto, along with two buddies (Tyler and Dime), for the road trip of their lives.","id":"19423","runtime":93,"imdbId":"tt0388285","version":144,"lastModified":"1301904810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ad6\/4bc95684017a3c57fe026ad6\/going-the-distance-mid.jpg","studio":"Brightlight Pictures","genre":"Comedy","title":"Going the Distance","releaseDate":1092960000000,"language":"en","type":"Movie","_key":"70533"} +{"label":"Joanne Kelly","version":22,"id":"43277","lastModified":"1301901362000","name":"Joanne Kelly","type":"Person","_key":"70534"} +{"label":"Mayko Nguyen","version":26,"id":"29879","lastModified":"1301901509000","name":"Mayko Nguyen","type":"Person","_key":"70535"} +{"label":"Ryan Belleville","version":22,"id":"84666","lastModified":"1301901989000","name":"Ryan Belleville","type":"Person","_key":"70536"} +{"label":"Mark Griffiths","version":20,"id":"106491","lastModified":"1301902198000","name":"Mark Griffiths","type":"Person","_key":"70537"} +{"label":"The Peanut Butter Solution","description":"Peanut butter is the secret ingredient for magic potions made by two friendly ghosts. Eleven-year-old Michael loses all of his hair when he gets a fright and uses the potion to get his hair back, but too much peanut butter causes things to get a bit hairy.","id":"19425","runtime":94,"imdbId":"tt0089789","version":46,"lastModified":"1301904993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/adb\/4bc95684017a3c57fe026adb\/the-peanut-butter-solution-mid.jpg","title":"The Peanut Butter Solution","releaseDate":502675200000,"language":"en","type":"Movie","_key":"70538"} +{"label":"Mathew Mackay","version":17,"id":"106568","lastModified":"1301903059000","name":"Mathew Mackay","type":"Person","_key":"70539"} +{"label":"Nights of Cabiria","description":"Cabiria is a wide-eyed waif, a streetwalker living in a poor section of Rome where she owns her little house, has a bank account, and dreams of a miracle. We follow her nights (and days): a boyfriend steals 40,000 lire from her and nearly drowns her, a movie star on the Via Veneto takes her home with him, at a local shrine she seeks the Madonna's intercession, then she meets an accountant who's seen her, hypnotized on a vaudeville stage, acting out her heart's longings. He courts her. Is it fate","id":"19426","runtime":110,"imdbId":"tt0050783","version":103,"lastModified":"1301905321000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ae\/4bf480f2017a3c32120006ae\/le-notti-di-cabiria-mid.jpg","genre":"Drama","title":"Nights of Cabiria","releaseDate":-410227200000,"language":"en","type":"Movie","_key":"70540"} +{"label":"Absence of Malice","description":"Suppose you picked up this morning's newspaper and your life was a front page headline... And everything they said was accurate... But none of it was true.\r\n\r\nThe D.A., Feds and the police set her up to write the story that explodes his world. Now he's going to write the book on getting even.\r\n","id":"19429","runtime":116,"imdbId":"tt0081974","version":343,"lastModified":"1301906403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ae4\/4bc95685017a3c57fe026ae4\/absence-of-malice-mid.jpg","studio":"Columbia Pictures","genre":"Drama","title":"Absence of Malice","releaseDate":374976000000,"language":"en","type":"Movie","_key":"70541"} +{"label":"08\/15","description":"No overview found.","id":"19430","runtime":95,"imdbId":"tt0046671","version":59,"lastModified":"1301905478000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93d\/4d7c7bb77b9aa13f8700093d\/08-15-mid.jpg","title":"08\/15","releaseDate":-481420800000,"language":"en","type":"Movie","_key":"70542"} +{"label":"Revolution OS","description":"REVOLUTION OS tells the inside story of the hackers who rebelled against the proprietary software model and Microsoft to create GNU\/Linux and the Open Source movement. ","id":"19433","runtime":85,"imdbId":"tt0308808","trailer":"http:\/\/www.youtube.com\/watch?v=2098","homepage":"http:\/\/www.revolution-os.com","version":142,"lastModified":"1301904893000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/af9\/4bc95686017a3c57fe026af9\/revolution-os-mid.jpg","genre":"Documentary","title":"Revolution OS","releaseDate":978307200000,"language":"en","type":"Movie","_key":"70543"} +{"label":"J.T.S. Moore","version":17,"id":"110351","lastModified":"1301902235000","name":"J.T.S. Moore","type":"Person","_key":"70544"} +{"label":"Susan Egan","version":20,"id":"86128","lastModified":"1301902323000","name":"Susan Egan","type":"Person","_key":"70545"} +{"label":"Murder in Coweta County","description":"Wallace a wealthy landowner in Meriwether County, Georgia, has virtually unlimited power in the county, including having the sheriff under his control. When he murders a share cropper he thinks that he is powerful enough to get away with it. Because the act of murder took place in Coweta County, it is under the jurisdiction of the Coweta County sheriff who hunts the murderer without trepidation.","id":"19434","runtime":100,"imdbId":"tt0085977","version":70,"lastModified":"1301906596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b02\/4bc9568b017a3c57fe026b02\/murder-in-coweta-county-mid.jpg","studio":"Telecom Entertainment Inc.","genre":"Drama","title":"Murder in Coweta County","releaseDate":414115200000,"language":"en","type":"Movie","_key":"70546"} +{"label":"Johnny Cash","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/02b\/4cae12f37b9aa1213800002b\/johnny-cash-profile.jpg","version":30,"birthday":"-1194397200000","id":"84678","lastModified":"1301902352000","name":"Johnny Cash","type":"Person","_key":"70547"} +{"label":"Ed Van Nuys","version":19,"id":"84680","lastModified":"1301902235000","name":"Ed Van Nuys","type":"Person","_key":"70548"} +{"label":"Jo Henderson","version":19,"id":"84681","lastModified":"1301902452000","name":"Jo Henderson","type":"Person","_key":"70549"} +{"label":"Daniel Keyes","version":19,"id":"84682","lastModified":"1301902452000","name":"Daniel Keyes","type":"Person","_key":"70550"} +{"label":"Danny Nelson","version":21,"id":"84683","lastModified":"1301902305000","name":"Danny Nelson","type":"Person","_key":"70551"} +{"label":"Norman Matlock","version":24,"id":"84684","lastModified":"1301902404000","name":"Norman Matlock","type":"Person","_key":"70552"} +{"label":"James Neale","version":19,"id":"84686","lastModified":"1301902452000","name":"James Neale","type":"Person","_key":"70553"} +{"label":"Yo Gabba Gabba!","description":"No overview found.","id":"19443","runtime":0,"imdbId":"tt0867480","version":147,"lastModified":"1301417658000","title":"Yo Gabba Gabba!","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70554"} +{"label":"Bad Karma","description":"No overview found.","id":"19444","runtime":92,"imdbId":"tt0271984","version":528,"lastModified":"1302021997000","title":"Bad Karma","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70555"} +{"label":"Placebo: Soulmates Never Die: Live in Paris 2003","description":"Track list : 1. Bulletproof Cupid, 2. Allergic (To Thoughts Of Mother Earth), 3. Every You Every Me, 4. Bionic, 5. Prot\u00e9g\u00e9 Moi, 6. , 7. Bitter End, 8. Soul Mates, 9. Black-Eyed, 10. I'll Be Yours, 11. Special Needs, 12. English Summer Rain, 13. Without You I'm Nothing, 14. This Picture, 15. Special K, 16. Taste In Men, 17. Slave To The Wage, 18. Peeping Tom, 19. Pure Morning, 20. Centrefolds, 21. Where Is My Mind?","id":"19445","runtime":120,"imdbId":"tt0417053","version":71,"lastModified":"1301903696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/427\/4ca0a32f7b9aa1578c000427\/placebo-soulmates-never-die-live-in-paris-2003-mid.jpg","genre":"Music","title":"Placebo: Soulmates Never Die: Live in Paris 2003","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"70556"} +{"label":"Brian Molko","version":23,"id":"84694","lastModified":"1301902359000","name":"Brian Molko","type":"Person","_key":"70557"} +{"label":"Frank Black","version":22,"id":"84695","lastModified":"1301901946000","name":"Frank Black","type":"Person","_key":"70558"} +{"label":"Steve Hewit","version":18,"id":"141579","lastModified":"1301902313000","name":"Steve Hewit","type":"Person","_key":"70559"} +{"label":"Russell Thomas","version":26,"id":"130895","lastModified":"1301902411000","name":"Russell Thomas","type":"Person","_key":"70560"} +{"label":"One Six Right","description":"An exhilarating documentary film that celebrates the unsung hero of aviation - the local airport - by tracing the life, history,and struggles of an airport icon: Southern California's Van Nuys Airport. Featuring thrilling aerial photography and a sweeping original score, the film dispels common misconceptions and opposes criticism of General Aviation airports. Through the love story of one airport","id":"19446","runtime":73,"imdbId":"tt0475994","homepage":"www.onesixright.com","version":217,"lastModified":"1302241634000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b0b\/4bc9568c017a3c57fe026b0b\/one-six-right-mid.jpg","studio":"Terwilliger Productions","genre":"Documentary","title":"One Six Right","releaseDate":1132876800000,"language":"en","type":"Movie","_key":"70561"} +{"label":"Brian Terwilliger","version":20,"id":"84696","lastModified":"1301902174000","name":"Brian Terwilliger","type":"Person","_key":"70562"} +{"label":"The Laramie Project","description":"The true story of an American town in the wake of the murder of Matthew Shepard.","id":"19448","runtime":97,"imdbId":"tt0257850","version":111,"lastModified":"1301421014000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b19\/4bc9568c017a3c57fe026b19\/the-laramie-project-mid.jpg","studio":"Home Box Office (HBO)","genre":"Drama","title":"The Laramie Project","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"70563"} +{"label":"The Yards","description":"In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts. ","id":"19457","runtime":115,"imdbId":"tt0138946","version":222,"lastModified":"1301904524000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a4\/4c9402b85e73d63a750000a4\/the-yards-mid.jpg","genre":"Crime","title":"The Yards","releaseDate":956793600000,"language":"en","type":"Movie","_key":"70564"} +{"label":"Princess Protection Program","description":"When Princess Rosalinda is about to become queen of her country of Costa Luna, the country is invaded by an evil dictator. She is put into the Princess Protection Program, a secret organization funded by royal families that looks after endangered princesses. Rosalinda is taken under the wing of Mason Verica, an agent in the PPP from rural Louisiana. While there, she meets his daughter,","id":"19458","runtime":89,"imdbId":"tt1196339","trailer":"http:\/\/www.youtube.com\/watch?v=1315","version":186,"lastModified":"1301957729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b39\/4bc9568e017a3c57fe026b39\/princess-protection-program-mid.jpg","studio":"Disney Channel","genre":"Comedy","title":"Princess Protection Program","releaseDate":1245974400000,"language":"en","tagline":"Royality meets reality.","type":"Movie","_key":"70565"} +{"label":"Nicholas Braun","version":34,"id":"85139","lastModified":"1301957662000","name":"Nicholas Braun","type":"Person","_key":"70566"} +{"label":"Allison Liddi","version":13,"id":"169335","lastModified":"1301957729000","name":"Allison Liddi","type":"Person","_key":"70567"} +{"label":"Tribulation 99: Alien Anomalies Under America","description":"Baldwin\u2019s \u201cpseudo-pseudo-documentary\u201d presents a factual chronicle of US intervention in Latin America in the form of the ultimate far-right conspiracy theory, combining covert action, environmental catastrophe, space aliens, cattle mutilations, killer bees, religious prophecy, doomsday diatribes, and just about every other crackpot theory broadcast through the dentures of the modern paranoiac.","id":"19459","runtime":48,"imdbId":"tt0105639","homepage":"http:\/\/www.othercinemadvd.com\/trib.html","version":79,"lastModified":"1301907969000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b43\/4bc9568f017a3c57fe026b43\/tribulation-99-alien-anomalies-under-america-mid.jpg","studio":"Other Cinema","title":"Tribulation 99: Alien Anomalies Under America","releaseDate":704332800000,"language":"en","type":"Movie","_key":"70568"} +{"label":"El hijo de la novia","description":"At age 42, Rafael Belvedere is having a crisis. He lives in the shadow of his father, he feels guilty about rarely visiting his aging mother, his ex-wife says he doesn't spend enough time with their daughter and he has yet to make a commitment to his girlfriend. At his lowest point, a minor heart attack reunites him with Juan Carlos, a childhood friend, who helps Rafael to reconstruct his past.","id":"19460","runtime":123,"imdbId":"tt0292542","version":80,"lastModified":"1301904090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/50d\/4c5aade97b9aa151f600050d\/el-hijo-de-la-novia-mid.jpg","genre":"Comedy","title":"El hijo de la novia","releaseDate":997920000000,"language":"en","type":"Movie","_key":"70569"} +{"label":"Juan Jos\u00e9 Campanella","version":46,"id":"84714","lastModified":"1301901443000","name":"Juan Jos\u00e9 Campanella","type":"Person","_key":"70570"} +{"label":"Clarkson: Thriller","description":"Welcome to my all new DVD Thriller, which, as the name suggests, is all about thrills at the wheel. Aston Martin\u2019s gentleman thug, the DBS, takes on its rivals from Italy. The lightweight Lamborghini Superleggera battles it out on the track with Ferrari\u2019s 430 Scuderia and my test of the best takes me to the breathtaking roads of the Swiss Alps, the no limits German autobahn \u2013 and, er, Norfolk.","id":"19461","runtime":78,"imdbId":"tt1321817","version":33,"lastModified":"1301421297000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b56\/4bc95690017a3c57fe026b56\/clarkson-thriller-mid.jpg","genre":"Documentary","title":"Clarkson: Thriller","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"70571"} +{"label":"Masters of Stone VI","description":"Faster, Harder, Bolder, Newer, Creative and Damage Control... these are the six points of breakthrough in Masters of Stone VI. Speed Record on El Captain, High-Ball Bouldering, First Ascents, Speed Free Solo Racing, World\u2019s Highest Slackline, Wingsuit in Norway, Parkour on Rock, and much more!","id":"19462","runtime":0,"version":149,"lastModified":"1301416720000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b67\/4bc95691017a3c57fe026b67\/masters-of-stone-vi-mid.jpg","genre":"Action","title":"Masters of Stone VI","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70572"} +{"label":"The Canterville Ghost","description":"In the 1600s, cowardly Sir Simon of Canterville flees a duel and seeks solace in the family castle. His ashamed father seals him in the room where he is hiding and dooms him to life as a ghost until one of his descendants performs a brave deed. Simon believes he may be saved when he meets Cuffy Williams, an American kinsman stationed with a troop of soldiers at the castle in 1943. Will this blood relative save the family honor, or will his blood be as yellow as the rest of the Cantervilles?","id":"19463","runtime":95,"imdbId":"tt0036696","version":143,"lastModified":"1301903429000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/290\/4c56f43c7b9aa151f4000290\/the-canterville-ghost-mid.jpg","studio":"Columbia Pictures Television","genre":"Comedy","title":"The Canterville Ghost","releaseDate":-820540800000,"language":"en","type":"Movie","_key":"70573"} +{"label":"William Gargan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11a\/4bd6f3da017a3c21f100011a\/william-gargan-profile.jpg","version":38,"id":"87697","lastModified":"1301901103000","name":"William Gargan","type":"Person","_key":"70574"} +{"label":"Butterfly Lovers","description":"This movie is based on the Butterfly Lovers, or Liang Zhu, a Chinese legend about the tragic romance between two lovers, Liang Shanbo and Zhu Yingtai. Retelling the Wuxia version of the story, it was filmed in Shanghai in 2008. The story features Taiwanese popstar Wu Chun as Liang Shanbo and Hong Kong Twins popstar Charlene Choi as Zhu Yingtai.","id":"19464","runtime":102,"imdbId":"tt1310656","trailer":"http:\/\/www.youtube.com\/watch?v=rMrmh5d3aqg","version":114,"lastModified":"1302093176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db9\/4d8ac55d7b9aa13ae7000db9\/mo-hup-leung-juk-mid.jpg","studio":"BIG Pictures","title":"Butterfly Lovers","releaseDate":1223510400000,"language":"en","type":"Movie","_key":"70575"} +{"label":"Wu Zun","version":18,"id":"132176","lastModified":"1301903010000","name":"Wu Zun","type":"Person","_key":"70576"} +{"label":"Xiong Xin-Xin","version":18,"id":"131732","lastModified":"1301902739000","name":"Xiong Xin-Xin","type":"Person","_key":"70577"} +{"label":"My Dear Enemy","description":"My Dear Enemy is the fourth film by South Korean director Lee Yoon-ki, starring Jeon Do-yeon and Ha Jeong-woo. It tells the story of a destitute woman searching for an old lover who, years after their break up, still owes her a sum of \u20a93.5m.","id":"19482","runtime":123,"imdbId":"tt1330205","version":64,"lastModified":"1300980728000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b79\/4bc95693017a3c57fe026b79\/19482-mid.jpg","studio":"B.O.M. Film Productions Co.","genre":"Comedy","title":"My Dear Enemy","releaseDate":1222300800000,"language":"en","type":"Movie","_key":"70578"} +{"label":"Yoon-ki Lee","version":21,"id":"84722","lastModified":"1301902719000","name":"Yoon-ki Lee","type":"Person","_key":"70579"} +{"label":"It Came From Outer Space","description":"Author & amateur astronomer John Putnam and schoolteacher Ellen Fields witness a meteorite crash near a small town in Arizona. Shortly afterwards local people begin to disappear & Putnam suspects there is more to the 'meteor' than meets the eye.","id":"19483","runtime":81,"imdbId":"tt0045920","trailer":"http:\/\/www.youtube.com\/watch?v=xUnC6iGkmwo","version":151,"lastModified":"1301905045000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b87\/4bc95697017a3c57fe026b87\/it-came-from-outer-space-mid.jpg","studio":"Universal International Pictures","genre":"Science Fiction","title":"It Came From Outer Space","releaseDate":-523929600000,"language":"en","type":"Movie","_key":"70580"} +{"label":"Cyborg Girl","description":"My Sassy Girl director Kwak Jae-Yong heads to Japan for his latest romance with a quirky twist. A charming fusion of romance, comedy, sci-fi, melodrama, and whatever else the kitchen sink has to offer, Cyborg She follows the burgeoning romance between an ordinary college student and his sassy love interest - who happens to be a time-traveling cyborg with superhuman powers.","id":"19486","runtime":120,"imdbId":"tt0929860","version":88,"lastModified":"1301903964000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b98\/4bc95698017a3c57fe026b98\/19486-mid.jpg","genre":"Action","title":"Cyborg Girl","releaseDate":1210550400000,"language":"en","type":"Movie","_key":"70581"} +{"label":"Keisuke Koide","version":34,"id":"84725","lastModified":"1301902207000","name":"Keisuke Koide","type":"Person","_key":"70582"} +{"label":"Die Patin - Kein Weg zur\u00fcck","description":"No overview found.","id":"19487","runtime":270,"imdbId":"tt1151649","version":53,"lastModified":"1300980728000","title":"Die Patin - Kein Weg zur\u00fcck","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70583"} +{"label":"Passionate People","description":"No overview found.","id":"19488","runtime":100,"imdbId":"tt0309292","version":476,"lastModified":"1302214826000","title":"Passionate People","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70584"} +{"label":"Held Up","description":"While they're on vacation in the Southwest, Rae finds out her man Michael spent their house money on a classic car, so she dumps him, hitching a ride to Vegas for a flight home. A kid promptly steals Michael's car, leaving him at the Zip & Sip, a convenience store. Three bumbling robbers promptly stage a hold up. Two take off with the cash stranding the third, with a mysterious crate, just as the cops arrive. The robber takes the store hostage. As incompetent cops bring in a SWAT team and try a ","id":"19489","runtime":89,"imdbId":"tt0165831","version":120,"lastModified":"1301904554000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ba6\/4bc95699017a3c57fe026ba6\/held-up-mid.jpg","title":"Held Up","releaseDate":939340800000,"language":"en","type":"Movie","_key":"70585"} +{"label":"Diego Fuentes","version":19,"id":"84730","lastModified":"1301902490000","name":"Diego Fuentes","type":"Person","_key":"70586"} +{"label":"The Bishop's Wife","description":"This Christmastime angelic intervention sparkles with good humor. Dudley the angel (Cary Grant) is sent to help a bishop (David Niven) and his wife (Loretta Young) survive their attempt to finance a new cathedral and the strain it's putting on their marriage. The Bishop's Wife includes complex undercurrents, especially when the bishop sees Dudley as a rival for his job and his wife. ","id":"19490","runtime":109,"imdbId":"tt0039190","trailer":"http:\/\/www.youtube.com\/watch?v=j063r4O33OE","version":142,"lastModified":"1301906458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3b7\/4c891be87b9aa1545e0003b7\/the-bishop-s-wife-mid.jpg","studio":"Samuel Goldwyn","genre":"Comedy","title":"The Bishop's Wife","releaseDate":-696297600000,"language":"en","type":"Movie","_key":"70587"} +{"label":"Loretta Young","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ce\/4bd6fdcf017a3c21f20000ce\/loretta-young-profile.jpg","version":34,"id":"85848","lastModified":"1301901508000","name":"Loretta Young","type":"Person","_key":"70588"} +{"label":"Monty Woolley","version":28,"id":"93123","lastModified":"1301902212000","name":"Monty Woolley","type":"Person","_key":"70589"} +{"label":"Kyun...! Ho Gaya Na","description":"No overview found.","id":"19491","runtime":0,"imdbId":"tt0349703","version":96,"lastModified":"1301417123000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bc1\/4bc9569b017a3c57fe026bc1\/kyun-ho-gaya-na-mid.jpg","studio":"Eros Entertainment","genre":"Romance","title":"Kyun...! Ho Gaya Na","releaseDate":1092182400000,"language":"en","type":"Movie","_key":"70590"} +{"label":"Samir Karnik","version":21,"id":"88595","lastModified":"1301903019000","name":"Samir Karnik","type":"Person","_key":"70591"} +{"label":"Captain EO","description":"No overview found.","id":"19492","runtime":17,"imdbId":"tt0090793","version":66,"lastModified":"1301905010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bce\/4bc9569b017a3c57fe026bce\/captain-eo-mid.jpg","genre":"Musical","title":"Captain EO","releaseDate":504921600000,"language":"en","tagline":"We are here to change the world!","type":"Movie","_key":"70592"} +{"label":"Cindy Sorenson","version":21,"id":"129982","lastModified":"1301902422000","name":"Cindy Sorenson","type":"Person","_key":"70593"} +{"label":"Hornblower The Even Chance","description":"The Hornblower series is based on C.S. Forester's classic maritime adventures - the story of one young man's struggle to become a leader of men. Set against the back drop of the 18th century Anglo-French wars, the bloodiest time in British naval history. Spithead, Portsmouth, 1794. Under thundery skies and in lashing rain, a 17 year old midshipman takes the first tentative steps of his naval career.","id":"19493","runtime":100,"imdbId":"tt0129686","version":95,"lastModified":"1301907398000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/090\/4bd80468017a3c1bff000090\/hornblower-the-even-chance-mid.jpg","studio":"Meridian Broadcasting Ltd","genre":"Action","title":"Hornblower The Even Chance","releaseDate":907718400000,"language":"en","type":"Movie","_key":"70594"} +{"label":"Dorian Healy","version":22,"id":"108463","lastModified":"1301902679000","name":"Dorian Healy","type":"Person","_key":"70595"} +{"label":"Duncan Bell","version":17,"id":"116974","lastModified":"1301902679000","name":"Duncan Bell","type":"Person","_key":"70596"} +{"label":"Paul Copley","version":24,"id":"116975","lastModified":"1301902511000","name":"Paul Copley","type":"Person","_key":"70597"} +{"label":"Simon Sherlock","version":19,"id":"116976","lastModified":"1301902686000","name":"Simon Sherlock","type":"Person","_key":"70598"} +{"label":"Chris Barnes","version":19,"id":"105458","lastModified":"1301902510000","name":"Chris Barnes","type":"Person","_key":"70599"} +{"label":"Nine to Five","description":"Frank Hart is a pig. He takes advantage in the grossest manner of the women who work with him. When his three assistants manage to trap him in his own house they assume control of his department and productivity leaps, but just how long can they keep Hart tied up?","id":"19494","runtime":110,"imdbId":"tt0080319","version":79,"lastModified":"1301908633000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd7\/4bc9569c017a3c57fe026bd7\/nine-to-five-mid.jpg","studio":"IPC Films","genre":"Comedy","title":"Nine to Five","releaseDate":346032000000,"language":"en","type":"Movie","_key":"70600"} +{"label":"Nomad: The Warrior","description":"The Nomad is a historical epic set in 18th-century Kazakhstan. The film is a fictionalised account of the youth and coming-of-age of Ablai Khan, as he grows and fights to defend the fortress at Hazrat-e Turkestan from Dzungar invaders.","id":"19495","runtime":112,"imdbId":"tt0374089","version":185,"lastModified":"1301905776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be8\/4bc956a1017a3c57fe026be8\/nomad-mid.jpg","studio":"Wild Bunch","genre":"Action","title":"Nomad: The Warrior","releaseDate":1121558400000,"language":"en","tagline":"Courage know no limit","type":"Movie","_key":"70601"} +{"label":"Doskhan Zholzhaksynov","version":22,"id":"84731","lastModified":"1301902062000","name":"Doskhan Zholzhaksynov","type":"Person","_key":"70602"} +{"label":"Ayanat Ksenbai","version":22,"id":"84732","lastModified":"1301902062000","name":"Ayanat Ksenbai","type":"Person","_key":"70603"} +{"label":"Aziz Beyshenaliev","version":20,"id":"84733","lastModified":"1301902062000","name":"Aziz Beyshenaliev","type":"Person","_key":"70604"} +{"label":"Erik Zholzhaksynov","version":22,"id":"84734","lastModified":"1301902452000","name":"Erik Zholzhaksynov","type":"Person","_key":"70605"} +{"label":"Dilnaz Akhmadieva","version":22,"id":"84735","lastModified":"1301902452000","name":"Dilnaz Akhmadieva","type":"Person","_key":"70606"} +{"label":"Ivan Passer","version":35,"id":"84736","lastModified":"1301902322000","name":"Ivan Passer","type":"Person","_key":"70607"} +{"label":"Salem Witch Trials","description":"No overview found.","id":"19496","runtime":191,"imdbId":"tt0284450","version":94,"lastModified":"1301421159000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/144\/4cdfc5695e73d60f70000144\/salem-witch-trials-mid.jpg","genre":"Drama","title":"Salem Witch Trials","releaseDate":1009843200000,"language":"en","type":"Movie","_key":"70608"} +{"label":"It's Only Talk","description":"Based on an award winning novel, It's Only Talk is about the life of Yuko, a 35 year old woman. She is single and unemployed, and suffers from manic depression. The movie begins with Yuko moving to Kamata Town. ","id":"19497","runtime":126,"imdbId":"tt0461526","version":71,"lastModified":"1300980730000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1a4\/4d7a8af27b9aa11a080011a4\/it-s-only-talk-mid.jpg","title":"It's Only Talk","releaseDate":1164240000000,"language":"en","type":"Movie","_key":"70609"} +{"label":"Jimmy Carr: Stand Up","description":"Jimmy Carr returns with a brand new live stand-up DVD. Recorded live at London's Bloomsbury theatre, Jimmy unleashes brand new material upon his audience that is just too rude for TV, taking his dry and sardonic wit and delightfully crafted jokes to a whole new level","id":"19499","runtime":80,"imdbId":"tt0841115","version":86,"lastModified":"1301907402000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bfa\/4bc956a2017a3c57fe026bfa\/jimmy-carr-stand-up-mid.jpg","studio":"Bwark Productions","genre":"Comedy","title":"Jimmy Carr: Stand Up","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"70610"} +{"label":"April Showers","description":"A look inside a tragedy through the eyes of a survivor. Based on actual events, April Showers is about picking up the pieces in the direct aftermath of school violence","id":"19501","runtime":94,"imdbId":"tt1212451","homepage":"http:\/\/www.aprilshowersmovie.com\/","version":121,"lastModified":"1301906596000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/622\/4d458eba5e73d602b2001622\/april-showers-mid.jpg","genre":"Drama","title":"April Showers","releaseDate":1240012800000,"language":"en","type":"Movie","_key":"70611"} +{"label":"God of Gamblers' Return","description":"Chow returns to play Ko Chun, a skilled gambler who now lives in retirement in France. Wu Xingguo plays an evil gangster who forces Ko out of retirement by killing his pregnant wife. Ko is forced to team up with a variety of other people to win out in the end. Wu Chien-lien plays Chow's romantic interest, Chingmy Yau plays a Taiwanese femme fatale, and Tony Leung provides much of the laughs.","id":"19503","runtime":126,"imdbId":"tt0109683","version":68,"lastModified":"1301905619000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c1b\/4bc956a4017a3c57fe026c1b\/2-mid.jpg","genre":"Action","title":"God of Gamblers' Return","releaseDate":788227200000,"language":"en","type":"Movie","_key":"70612"} +{"label":"Death Trance","description":"In an unknown place and unknown time, a lone Samurai known only as Grave thirsts for the ultimate battle.","id":"19504","runtime":90,"imdbId":"tt0443737","homepage":"http:\/\/www.deathtrance.jp\/","version":150,"lastModified":"1301905860000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c24\/4bc956a4017a3c57fe026c24\/death-trance-mid.jpg","title":"Death Trance","releaseDate":1148083200000,"language":"en","type":"Movie","_key":"70613"} +{"label":"Y\u00fbji Shimomura","version":19,"id":"84745","lastModified":"1301902674000","name":"Y\u00fbji Shimomura","type":"Person","_key":"70614"} +{"label":"Hendrix","description":"No overview found.","id":"19505","runtime":100,"imdbId":"tt0260949","version":110,"lastModified":"1301907405000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c29\/4bc956a5017a3c57fe026c29\/hendrix-mid.jpg","genre":"Drama","title":"Hendrix","releaseDate":969148800000,"language":"en","type":"Movie","_key":"70615"} +{"label":"Ichi","description":"Ichi is a remake of films from 60's and 70's, and most recently, \"Zatoichi\" from 2003. In this version, Ichi, a blind woman, is searching for the man who raised her. She travels with her shamisen (a three-stringed Japanese guitar), using her exceptional sword skills to fight off yakuza and other villains on her journey.","id":"19506","runtime":120,"imdbId":"tt1060256","homepage":"http:\/\/wwws.warnerbros.co.jp\/ichi\/","version":211,"lastModified":"1301905535000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c32\/4bc956a5017a3c57fe026c32\/ichi-mid.jpg","studio":"Warner Bro. Japan","genre":"Action","title":"Ichi","releaseDate":1224892800000,"language":"en","type":"Movie","_key":"70616"} +{"label":"Y\u00f4suke Kubozuka","version":33,"id":"84755","lastModified":"1301902347000","name":"Y\u00f4suke Kubozuka","type":"Person","_key":"70617"} +{"label":"Megumi Yokoyama","version":8,"id":"225247","lastModified":"1301904024000","name":"Megumi Yokoyama","type":"Person","_key":"70618"} +{"label":"Neighbors","description":"One man's quiet suburban life takes a sickening lurch for the worse when a young couple move into the deserted house next door. From the word go it is obvious these are not the quiet professional types who *should* be living in such a nice street. As more and more unbelievable events unfold, our hero starts to question his own sanity... and those of his family.","id":"19507","runtime":94,"imdbId":"tt0082801","trailer":"http:\/\/www.youtube.com\/watch?v=0_xymI6AH6E","version":122,"lastModified":"1301904704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3c\/4bc956a6017a3c57fe026c3c\/neighbors-mid.jpg","studio":"Columbia Pictures Corporation","genre":"Comedy","title":"Neighbors","releaseDate":347155200000,"language":"en","type":"Movie","_key":"70619"} +{"label":"Tim Kazurinsky","version":22,"id":"95216","lastModified":"1301902404000","name":"Tim Kazurinsky","type":"Person","_key":"70620"} +{"label":"Henry Judd Baker","version":18,"id":"105065","lastModified":"1301902897000","name":"Henry Judd Baker","type":"Person","_key":"70621"} +{"label":"Garfield's Pet Force","description":"Nothing in the world can make Garfield get involved in anything besides eating, until the muscular super cat Garzooka comes crashing into Cartoon World from the Comic Book universe with terrifying news. Garfield summons up the willpower to join his superhero Garzooka in a fight to save their worlds.","id":"19508","runtime":78,"imdbId":"tt1389762","version":192,"lastModified":"1301904174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c45\/4bc956a6017a3c57fe026c45\/garfield-s-pet-force-mid.jpg","genre":"Animation","title":"Garfield's Pet Force","releaseDate":1249430400000,"language":"en","type":"Movie","_key":"70622"} +{"label":"All The Days Before Tomorrow","description":"Wes is awakened in the middle of the night by an unexpected phone call. It\u2019s Alison, the girl who could have been, who is flying home to Tokyo in the morning and wants to come by for a night of reminiscing before she goes.","id":"19509","runtime":100,"imdbId":"tt0439115","version":205,"lastModified":"1302240810000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c4e\/4bc956aa017a3c57fe026c4e\/all-the-days-before-tomorrow-mid.jpg","studio":"Kangoo Films","genre":"Comedy","title":"All The Days Before Tomorrow","releaseDate":1175385600000,"language":"en","type":"Movie","_key":"70623"} +{"label":"Bondage Workshop Teil 1","description":"No overview found.","id":"19510","runtime":110,"homepage":"http:\/\/www.bondageproject.com","version":335,"lastModified":"1301420955000","studio":"Charon Verlag","genre":"Erotic","title":"Bondage Workshop Teil 1","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70624"} +{"label":"Matthias T. J. Grimme","version":15,"id":"84764","lastModified":"1301902323000","name":"Matthias T. J. Grimme","type":"Person","_key":"70625"} +{"label":"Capricious","version":15,"id":"84767","lastModified":"1301902323000","name":"Capricious","type":"Person","_key":"70626"} +{"label":"Ellen DeGeneres: Here and Now","description":"Ellen DeGeneres has done everything, from starring in hit sitcoms and movies, to writing best-selling books, to having her own new talk show, but she's never forgotten her roots as a stand-up comedian. Taped at New York City's Beacon Theatre before a live audience, Ellen DeGeneres: Here and Now features the kind of humor that first made her a star, offering her offbeat insights into everyday life. Her feel-good humor touches on something that anyone can identify with, be it the obligatory gay jo","id":"19511","runtime":60,"imdbId":"tt0365156","version":137,"lastModified":"1301907243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c53\/4bc956ab017a3c57fe026c53\/ellen-degeneres-here-and-now-mid.jpg","genre":"Comedy","title":"Ellen DeGeneres: Here and Now","releaseDate":1086048000000,"language":"en","type":"Movie","_key":"70627"} +{"label":"Series 7: The Contenders","description":"A TV program selects people at random to kill one another for fame and their freedom.","id":"19513","runtime":86,"imdbId":"tt0251031","homepage":"http:\/\/www.series7movie.com\/","version":136,"lastModified":"1301907576000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ce\/4d2eb2845e73d63a4e00e4ce\/series-7-the-contenders-mid.jpg","studio":"Killer Films","genre":"Action","title":"Series 7: The Contenders","releaseDate":978307200000,"language":"en","type":"Movie","_key":"70628"} +{"label":"Daniel Minahan","version":22,"id":"88743","lastModified":"1301902883000","name":"Daniel Minahan","type":"Person","_key":"70629"} +{"label":"Mark Woodbury","version":20,"id":"88746","lastModified":"1301902062000","name":"Mark Woodbury","type":"Person","_key":"70630"} +{"label":"Michael Kaycheck","version":20,"id":"88747","lastModified":"1301902883000","name":"Michael Kaycheck","type":"Person","_key":"70631"} +{"label":"Richard Venture","version":23,"id":"88748","lastModified":"1301902470000","name":"Richard Venture","type":"Person","_key":"70632"} +{"label":"Angelina Phillips","version":20,"id":"88749","lastModified":"1301902452000","name":"Angelina Phillips","type":"Person","_key":"70633"} +{"label":"Tom Gilroy","version":27,"id":"88750","lastModified":"1301902517000","name":"Tom Gilroy","type":"Person","_key":"70634"} +{"label":"Stephen Michael Rinaldi","version":20,"id":"88751","lastModified":"1301902452000","name":"Stephen Michael Rinaldi","type":"Person","_key":"70635"} +{"label":"Alex Yershov","version":20,"id":"88752","lastModified":"1301902452000","name":"Alex Yershov","type":"Person","_key":"70636"} +{"label":"Danton Stone","version":20,"id":"54462","lastModified":"1301901862000","name":"Danton Stone","type":"Person","_key":"70637"} +{"label":"Joseph Barrett","version":20,"id":"88753","lastModified":"1301902452000","name":"Joseph Barrett","type":"Person","_key":"70638"} +{"label":"Shawna Moore","version":20,"id":"88754","lastModified":"1301902452000","name":"Shawna Moore","type":"Person","_key":"70639"} +{"label":"Jennifer Van Dyck","version":20,"id":"88755","lastModified":"1301902883000","name":"Jennifer Van Dyck","type":"Person","_key":"70640"} +{"label":"Tanny McDonald","version":20,"id":"88756","lastModified":"1301902883000","name":"Tanny McDonald","type":"Person","_key":"70641"} +{"label":"Caitlin Bateman","version":20,"id":"88757","lastModified":"1301902883000","name":"Caitlin Bateman","type":"Person","_key":"70642"} +{"label":"James Lecesne","version":20,"id":"88758","lastModified":"1301902452000","name":"James Lecesne","type":"Person","_key":"70643"} +{"label":"Robin Borden","version":20,"id":"88759","lastModified":"1301902627000","name":"Robin Borden","type":"Person","_key":"70644"} +{"label":"Lauren Ward","version":20,"id":"88760","lastModified":"1301902883000","name":"Lauren Ward","type":"Person","_key":"70645"} +{"label":"Aydin Bengisu","version":20,"id":"88761","lastModified":"1301902883000","name":"Aydin Bengisu","type":"Person","_key":"70646"} +{"label":"Josh Mosby","version":21,"id":"88762","lastModified":"1301902648000","name":"Josh Mosby","type":"Person","_key":"70647"} +{"label":"Babo Harrison","version":20,"id":"88763","lastModified":"1301902883000","name":"Babo Harrison","type":"Person","_key":"70648"} +{"label":"Adena Shea Loomis","version":20,"id":"88764","lastModified":"1301902627000","name":"Adena Shea Loomis","type":"Person","_key":"70649"} +{"label":"Pamela Wehner","version":20,"id":"88765","lastModified":"1301902627000","name":"Pamela Wehner","type":"Person","_key":"70650"} +{"label":"John Ventimiglia","version":25,"id":"87707","lastModified":"1301902404000","name":"John Ventimiglia","type":"Person","_key":"70651"} +{"label":"Kirsten Krohn","version":18,"id":"88766","lastModified":"1301902883000","name":"Kirsten Krohn","type":"Person","_key":"70652"} +{"label":"William Graves","version":20,"id":"88767","lastModified":"1301902883000","name":"William Graves","type":"Person","_key":"70653"} +{"label":"The Backyardigans - Cave Party","description":"This DVD has four episodes. Cave Party, Race Around the World, Eureka!, and Castaways","id":"19514","runtime":99,"version":37,"lastModified":"1301908271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a27\/4d0106e35e73d6299a006a27\/the-backyardigans-cave-party-mid.jpg","genre":"Animation","title":"The Backyardigans - Cave Party","releaseDate":1141689600000,"language":"en","type":"Movie","_key":"70654"} +{"label":"The Backyardigans - Into The Deep","description":"This DVD has 4 Episodes on it. Into the Deep, Save the Day, News Flash, and Catch that Butterfly","id":"19515","runtime":99,"version":158,"lastModified":"1301906650000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c73\/4bc956ad017a3c57fe026c73\/the-backyardigans-into-the-deep-mid.jpg","genre":"Animation","title":"The Backyardigans - Into The Deep","releaseDate":1185840000000,"language":"en","type":"Movie","_key":"70655"} +{"label":"The Backyardigans - Movers & Shakers","description":"This DVD has 4 episodes. Movers of Arabia, Cops and Robots, Sinbad Sails Alone, and Best Clowns in Town","id":"19516","runtime":100,"version":21,"lastModified":"1300980732000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7c\/4bc956ad017a3c57fe026c7c\/the-backyardigans-movers-shakers-mid.jpg","genre":"Animation","title":"The Backyardigans - Movers & Shakers","releaseDate":1180396800000,"language":"en","type":"Movie","_key":"70656"} +{"label":"The Backyardigans - Tale Of The Mighty Knights","description":"This DVD has 3 episodes. Tale of the Mighty Night, Blazing Paddles, and Garbage Trek.","id":"19517","runtime":100,"version":142,"lastModified":"1301908540000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c85\/4bc956ad017a3c57fe026c85\/the-backyardigans-tale-of-the-mighty-knights-mid.jpg","title":"The Backyardigans - Tale Of The Mighty Knights","releaseDate":1203984000000,"language":"en","type":"Movie","_key":"70657"} +{"label":"The Backyardigans - The Legend Of The Volcano Sisters","description":"This DVD has four episodes. The Legend of the Volcano Sisters, The Swamp Creature, Horsing Around, and Special Delivery.","id":"19518","runtime":100,"version":22,"lastModified":"1302020939000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8e\/4bc956ae017a3c57fe026c8e\/the-backyardigans-the-legend-of-the-volcano-sisters-mid.jpg","title":"The Backyardigans - The Legend Of The Volcano Sisters","releaseDate":1170720000000,"language":"en","type":"Movie","_key":"70658"} +{"label":"The Perfect Husband: The Laci Peterson Story","description":"Dean Cain portrays Scott Peterson, the California man accused of murdering his 8 month pregnant wife, Laci. Based on a true story. ","id":"19520","runtime":0,"imdbId":"tt0385940","version":68,"lastModified":"1301908611000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c93\/4bc956ae017a3c57fe026c93\/the-perfect-husband-the-laci-peterson-story-mid.jpg","genre":"Drama","title":"The Perfect Husband: The Laci Peterson Story","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"70659"} +{"label":"Un amour \u00e0 taire","description":"No overview found.","id":"19521","runtime":102,"imdbId":"tt0444518","trailer":"http:\/\/www.youtube.com\/watch?v=1354","version":38,"lastModified":"1301905236000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c9c\/4bc956af017a3c57fe026c9c\/un-amour-a-taire-mid.jpg","studio":"Merlin Productions","genre":"Drama","title":"Un amour \u00e0 taire","releaseDate":1110153600000,"language":"en","type":"Movie","_key":"70660"} +{"label":"Dual","description":"No overview found.","id":"19522","runtime":0,"imdbId":"tt0482497","version":235,"lastModified":"1301906365000","title":"Dual","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70661"} +{"label":"Dual: The Lone Drifter","description":"Dual follows drifter Luke Twain in the late 1800s when he discovers a town where all the inhabitants has been brutally murdered. Making a choice to remain and uncover what took place there, he finds himself in a strange game of cat and mouse with a mysterious man that still has one final mission... ","id":"19523","runtime":0,"version":320,"lastModified":"1301906420000","genre":"Action","title":"Dual: The Lone Drifter","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70662"} +{"label":"Michael Worth","version":28,"id":"84769","lastModified":"1301901777000","name":"Michael Worth","type":"Person","_key":"70663"} +{"label":"Reversal of Fortune","description":"A documentary that explores what happens when a homeless man is given one hundred thousand dollars and the free will to do with it whatever his wishes.","id":"19524","runtime":68,"imdbId":"tt0838195","version":58,"lastModified":"1301908516000","genre":"Documentary","title":"Reversal of Fortune","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"70664"} +{"label":"It Happened in Brooklyn","description":"No overview found.","id":"19525","runtime":104,"imdbId":"tt0039501","version":414,"lastModified":"1301906158000","genre":"Musical","title":"It Happened in Brooklyn","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70665"} +{"label":"Invisible Target","description":"Three cops team up to bring down a criminal gang of seven, who have their own hidden agenda.","id":"19528","runtime":128,"imdbId":"tt0995739","version":130,"lastModified":"1301905551000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cbf\/4bc956b1017a3c57fe026cbf\/naam-yi-boon-sik-mid.jpg","genre":"Action","title":"Invisible Target","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70666"} +{"label":"The Scam","description":"Hyeon-su (Park Yong-ha), an unemployed, self-taught individual investor, hits the jackpot \u2015 though at the cost of disrupting a scam by gangster-turned-financier Hwang (Park Heui-soon). Hwang, however, recognizes Hyeon-su's talent and recruits him for his team of scam artists. They prepare for a 60 billion won heist, but a bigger scam is in the making within the group.","id":"19529","runtime":119,"imdbId":"tt1535490","version":95,"lastModified":"1302094428000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a6\/4c2e40b17b9aa1665d0000a6\/19529-mid.jpg","studio":"Showbox","genre":"Crime","title":"The Scam","releaseDate":1234396800000,"language":"en","type":"Movie","_key":"70667"} +{"label":"Ho-jae Lee","version":21,"id":"84783","lastModified":"1301902363000","name":"Ho-jae Lee","type":"Person","_key":"70668"} +{"label":"Yong-ha Park","version":21,"id":"84784","lastModified":"1301902204000","name":"Yong-ha Park","type":"Person","_key":"70669"} +{"label":"Min-jung Kim","version":19,"id":"84786","lastModified":"1301902416000","name":"Min-jung Kim","type":"Person","_key":"70670"} +{"label":"Hie-sun Park","version":21,"id":"84787","lastModified":"1301902692000","name":"Hie-sun Park","type":"Person","_key":"70671"} +{"label":"Mu-Yeol Kim","version":19,"id":"84788","lastModified":"1301902692000","name":"Mu-Yeol Kim","type":"Person","_key":"70672"} +{"label":"Muse - Absolution Tour","description":"Absolution Tour is a DVD released by the English rock band Muse. The DVD contains footage of most of the band's headline performance at the Glastonbury Festival 2004. The tracklist includes most of the songs from their third studio album, Absolution, plus performances of some older material.","id":"19536","runtime":61,"version":38,"lastModified":"1301903367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ce2\/4bc956b7017a3c57fe026ce2\/muse-absolution-tour-mid.jpg","studio":"Warner Music Entertainment","genre":"Musical","title":"Muse - Absolution Tour","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"70673"} +{"label":"Matt Bellamy","version":16,"id":"84809","lastModified":"1301901989000","name":"Matt Bellamy","type":"Person","_key":"70674"} +{"label":"Chris Wolstenholme","version":22,"id":"84810","lastModified":"1301901808000","name":"Chris Wolstenholme","type":"Person","_key":"70675"} +{"label":"Dominic Howard","version":25,"id":"84811","lastModified":"1301901512000","name":"Dominic Howard","type":"Person","_key":"70676"} +{"label":"Muse","version":15,"id":"84813","lastModified":"1301902141000","name":"Muse","type":"Person","_key":"70677"} +{"label":"U2 - Go Home: Live From Slane Castle","description":"The DVD contains the entire Slane Castle concert from September 1st 2003. 'Mysterious Ways' is not part of the concert, but listed as a 'bonus track'. The reasons for this are still unknown. The concert without Mysterious Ways lasts 1:38h, the bonus track is 6:26 min long. Furthermore the DVD contains a remastered version of the 'Unforgettable Fire' Documentary.","id":"19537","runtime":132,"imdbId":"tt0339832","version":66,"lastModified":"1301903538000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ceb\/4bc956b7017a3c57fe026ceb\/u2-go-home-live-from-slane-castle-mid.jpg","title":"U2 - Go Home: Live From Slane Castle","releaseDate":1069113600000,"language":"en","type":"Movie","_key":"70678"} +{"label":"The Second Coming","description":"Steven Baxter is the Son of God, and can produce the miracles to prove it. How does the world react when he announces it has to produce a Third Testament within five days, or else it's Judgment Day?","id":"19538","runtime":144,"imdbId":"tt0353104","version":388,"lastModified":"1301418681000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf0\/4bc956b7017a3c57fe026cf0\/the-second-coming-mid.jpg","genre":"Comedy","title":"The Second Coming","releaseDate":1044748800000,"language":"en","type":"Movie","_key":"70679"} +{"label":"The Seven Spiritual Laws Of Success","description":"No overview found.","id":"19541","runtime":0,"imdbId":"tt1020992","version":157,"lastModified":"1301908271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cf9\/4bc956b8017a3c57fe026cf9\/the-seven-spiritual-laws-of-success-mid.jpg","title":"The Seven Spiritual Laws Of Success","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70680"} +{"label":"The Red Shoes","description":"The Powell and Pressburger classic is widely considered to be one of the greatest films ever made. Vicky Page, a young ballerina, becomes torn between her love for composer Julian Craster and artistic devotion to her profession, which is dominated by impresario Lermontov. Winner of two Academy Awards the film is visually one of the most innovative and beautiful works of cinema.","id":"19542","runtime":133,"imdbId":"tt0040725","version":169,"lastModified":"1301960586000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d0e\/4bc956ba017a3c57fe026d0e\/the-red-shoes-mid.jpg","genre":"Drama","title":"The Red Shoes","releaseDate":-672796800000,"language":"en","type":"Movie","_key":"70681"} +{"label":"Anton Walbrook","version":25,"id":"88935","lastModified":"1301902135000","name":"Anton Walbrook","type":"Person","_key":"70682"} +{"label":"L\u00e9onide Massine","version":19,"id":"88937","lastModified":"1301902452000","name":"L\u00e9onide Massine","type":"Person","_key":"70683"} +{"label":"Ludmilla Tch\u00e9rina","version":19,"id":"88938","lastModified":"1301902627000","name":"Ludmilla Tch\u00e9rina","type":"Person","_key":"70684"} +{"label":"Anaconda 4: Trail of Blood","description":"A genetically created Anaconda, cut in half, regenerates itself into two aggressive giant snakes, due to the Blood Orchid.","id":"19543","runtime":89,"imdbId":"tt1150934","version":156,"lastModified":"1301904558000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d21\/4bc956bc017a3c57fe026d21\/anaconda-4-trail-of-blood-mid.jpg","genre":"Horror","title":"Anaconda 4: Trail of Blood","releaseDate":1235779200000,"language":"en","type":"Movie","_key":"70685"} +{"label":"Deadly Visions","description":"A woman (Nicolette Sheridan) who underwent an eye transplant is haunted by visions of her donor's last moments of life, and she is convinced that the woman was murdered.","id":"19544","runtime":0,"imdbId":"tt0416267","version":83,"lastModified":"1301908176000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d2e\/4bc956bd017a3c57fe026d2e\/deadly-visions-mid.jpg","title":"Deadly Visions","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"70686"} +{"label":"Haili Page","version":26,"id":"122038","lastModified":"1301903059000","name":"Haili Page","type":"Person","_key":"70687"} +{"label":"Godzilla vs. Monster Zero","description":"Aliens from the mysterious Planet X, which resides on the dark side of of Jupiter, come to Earth asking its people to help them save their world from the dreaded King Ghidrah by letting them \"borrow\" Godzilla and Rodan. The aliens are actually planning to use the three monsters to take over our planet.","id":"19545","runtime":96,"imdbId":"tt0059346","version":109,"lastModified":"1302024797000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d3c\/4bc956be017a3c57fe026d3c\/kaiju-daisenso-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Godzilla vs. Monster Zero","releaseDate":-127353600000,"language":"en","type":"Movie","_key":"70688"} +{"label":"Lano & Woodley - The Island","description":"Lano & Woodley: The Island was filmed during the Brisbane theatrical season at the Queensland Performing Arts Centre in August 2004. The basic premise of the show revolves around an ill-fated holiday trip to Hawaii, which results in Colin and Frank being marooned on an island.The show opens with an ambiguous scene of Colin Lane about to hang for the murder of Frank Woodley. From here the comical story unfolds. En route, their plane crashes into the ocean and Lano & Woodley are washed up and maro","id":"19546","runtime":54,"imdbId":"tt0445512","version":76,"lastModified":"1300980734000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02b\/4c3d8a965e73d6036200002b\/lano-woodley-the-island-mid.jpg","title":"Lano & Woodley - The Island","releaseDate":1129161600000,"language":"en","type":"Movie","_key":"70689"} +{"label":"Colin Lane","version":21,"id":"124588","lastModified":"1301903066000","name":"Colin Lane","type":"Person","_key":"70690"} +{"label":"Frank Woodley","version":20,"id":"124589","lastModified":"1301902541000","name":"Frank Woodley","type":"Person","_key":"70691"} +{"label":"What's Cooking in Paris","description":"A great French restaurant's owner, Monsieur Septime (Louis de Fun\u00e8s), is thrust into intrigue and crime, when one of his famous guests disappears. ","id":"19548","runtime":82,"imdbId":"tt0061728","version":76,"lastModified":"1301903607000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/31c\/4d10aebe7b9aa1147a00031c\/le-grand-restaurant-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"What's Cooking in Paris","releaseDate":-126230400000,"language":"en","type":"Movie","_key":"70692"} +{"label":"Maria-Rosa Rodriguez","version":23,"id":"84822","lastModified":"1301902035000","name":"Maria-Rosa Rodriguez","type":"Person","_key":"70693"} +{"label":"Jacques Besnard","version":25,"id":"84818","lastModified":"1301902394000","name":"Jacques Besnard","type":"Person","_key":"70694"} +{"label":"Dark Assassin","description":"Dark Assassin is the story of Derek Woo, mistakenly targeted by police and the Mob as the prime suspect for a series brutal gangland murders. He is surrounded by gangsters and the police and must stay alive long enough to find the real killers and clear his name. Written, directed and starring martial arts superstar, Jason Yee.","id":"19550","runtime":0,"imdbId":"tt0301265","version":177,"lastModified":"1301907108000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d4e\/4bc956c4017a3c57fe026d4e\/dark-assassin-mid.jpg","genre":"Action","title":"Dark Assassin","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"70695"} +{"label":"Shadow Puppets","description":"Eight strangers with no memories find themselves trapped in an abandoned facility. As they desperately try to find answers and escape, their own Shadows attempt to consume them from the darkness.","id":"19551","runtime":103,"imdbId":"tt0491145","version":158,"lastModified":"1301907085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d57\/4bc956c4017a3c57fe026d57\/shadow-puppets-mid.jpg","studio":"Shoreline Entertainment","genre":"Horror","title":"Shadow Puppets","releaseDate":1176681600000,"language":"en","type":"Movie","_key":"70696"} +{"label":"Michael Winnick","version":19,"id":"101233","lastModified":"1301902984000","name":"Michael Winnick","type":"Person","_key":"70697"} +{"label":"Marc Winnick","version":15,"id":"146830","lastModified":"1301902554000","name":"Marc Winnick","type":"Person","_key":"70698"} +{"label":"Diahnna Nicole Baxter","version":15,"id":"146831","lastModified":"1301903096000","name":"Diahnna Nicole Baxter","type":"Person","_key":"70699"} +{"label":"Natasha Alam","version":18,"id":"101624","lastModified":"1301902605000","name":"Natasha Alam","type":"Person","_key":"70700"} +{"label":"Richard Whiten","version":17,"id":"112042","lastModified":"1301902429000","name":"Richard Whiten","type":"Person","_key":"70701"} +{"label":"Jennie Ford","version":15,"id":"146832","lastModified":"1301903091000","name":"Jennie Ford","type":"Person","_key":"70702"} +{"label":"The Scent of Green Papaya","description":"Mui goes to live with a pianist who has a fiance. The pianist and Mui have a relationship, and he teaches her to read.","id":"19552","runtime":104,"imdbId":"tt0107617","version":114,"lastModified":"1301904415000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bd7\/4d3e134b5e73d622d8001bd7\/m-i-du-du-xanh-l-odeur-de-la-papaye-verte-mid.jpg","genre":"Drama","title":"The Scent of Green Papaya","releaseDate":739497600000,"language":"en","type":"Movie","_key":"70703"} +{"label":"Anh Hung Tran","version":38,"id":"107730","lastModified":"1301902228000","name":"Anh Hung Tran","type":"Person","_key":"70704"} +{"label":"Tran Nu Y\u00ean-Kh\u00ea","version":24,"id":"113388","lastModified":"1301902655000","name":"Tran Nu Y\u00ean-Kh\u00ea","type":"Person","_key":"70705"} +{"label":"Man San Lu","version":14,"id":"151165","lastModified":"1301903137000","name":"Man San Lu","type":"Person","_key":"70706"} +{"label":"Lifepod","description":"Lifepod cronicles the trip of eight passengers after the ship they were traveling on blew up on Christmas Eve. Immediately people start dying. The passengers begin to investigate why the ship blew up and how it relates to them ","id":"19553","runtime":89,"imdbId":"tt0107415","version":44,"lastModified":"1300980735000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d65\/4bc956c4017a3c57fe026d65\/lifepod-mid.jpg","genre":"Science Fiction","title":"Lifepod","releaseDate":741225600000,"language":"en","type":"Movie","_key":"70707"} +{"label":"Elvis and Anabelle","description":"Groomed by her overly ambitious mother, Anabelle is on the road to winning the Miss Texas Rose tiara when she dies tragically during a pageant. Her death lands her on the embalming table of Elvis, an embittered young man whose love for his ailing father keep him from following his dreams. When Anabelle is miraculously resurrected on the embalming table, the two unexpectedly connect and sparks fly.","id":"19554","runtime":54,"imdbId":"tt0787462","homepage":"http:\/\/www.elvisandanabelle.com","version":155,"lastModified":"1301904464000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d6e\/4bc956c5017a3c57fe026d6e\/elvis-and-anabelle-mid.jpg","studio":"Goldcrest Films International","genre":"Drama","title":"Elvis and Anabelle","releaseDate":1173484800000,"language":"en","type":"Movie","_key":"70708"} +{"label":"Will Geiger","version":25,"id":"84829","lastModified":"1301902452000","name":"Will Geiger","type":"Person","_key":"70709"} +{"label":"9 Dead Gay Guys","description":"The story of two lads from Belfast as they stumble their way through the London gay underworld in search of 'gainful employment'. This being the offering of sexual favors to older gay men in order to subsidize their respective giros.","id":"19555","runtime":83,"imdbId":"tt0336910","version":195,"lastModified":"1301903403000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d73\/4bc956c6017a3c57fe026d73\/9-dead-gay-guys-mid.jpg","genre":"Comedy","title":"9 Dead Gay Guys","releaseDate":1063929600000,"language":"en","type":"Movie","_key":"70710"} +{"label":"Lab Ky Mo","version":19,"id":"84830","lastModified":"1301902501000","name":"Lab Ky Mo","type":"Person","_key":"70711"} +{"label":"Glen Mulhern","version":19,"id":"84831","lastModified":"1301902141000","name":"Glen Mulhern","type":"Person","_key":"70712"} +{"label":"Miss March","description":"A young man awakens from a four-year coma to hear that his once virginal high-school sweetheart has since become a centerfold in one of the world's most famous men's magazines. He and his sex-crazed best friend decide to take a cross-country road trip in order to crash a party at the magazine's legendary mansion headquarters and win back the girl.","id":"19556","runtime":90,"imdbId":"tt1151922","homepage":"http:\/\/www.foxsearchlight.com\/missmarch\/","version":339,"lastModified":"1301907578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d88\/4bc956c8017a3c57fe026d88\/miss-march-mid.jpg","studio":"The Jacobson Company","genre":"Comedy","title":"Miss March","releaseDate":1236902400000,"language":"en","type":"Movie","_key":"70713"} +{"label":"Zach Cregger","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/344\/4c4d4d807b9aa1237d000344\/zach-cregger-profile.jpg","version":26,"id":"84833","lastModified":"1301901595000","name":"Zach Cregger","type":"Person","_key":"70714"} +{"label":"Trevor Moore","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/348\/4c4d4e0a7b9aa1237d000348\/trevor-moore-profile.jpg","version":26,"id":"84834","lastModified":"1301901662000","name":"Trevor Moore","type":"Person","_key":"70715"} +{"label":"Taken in Broad Daylight","description":"Every 24 hrs. after a child's been kidnapped by a stranger, chances of finding them alive diminishes to almost 100% ... The true and inspiring survival story of kidnapped teen, Anne Sluti, and how she manages to stay alive by manipulating her captor, engineering her own rescue and negotiating her safe release after 6 days of hell.","id":"19560","runtime":0,"imdbId":"tt0968311","version":127,"lastModified":"1301905668000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da3\/4bc956cb017a3c57fe026da3\/taken-in-broad-daylight-mid.jpg","genre":"Mystery","title":"Taken in Broad Daylight","releaseDate":1234656000000,"language":"en","type":"Movie","_key":"70716"} +{"label":"Sara Canning","version":12,"id":"221840","lastModified":"1301903651000","name":"Sara Canning","type":"Person","_key":"70717"} +{"label":"Diana Reis","version":18,"id":"107342","lastModified":"1301903043000","name":"Diana Reis","type":"Person","_key":"70718"} +{"label":"Tom Anniko","version":12,"id":"212142","lastModified":"1301903749000","name":"Tom Anniko","type":"Person","_key":"70719"} +{"label":"Brian Roach","version":6,"id":"228085","lastModified":"1301904060000","name":"Brian Roach","type":"Person","_key":"70720"} +{"label":"Sarah Constible","version":12,"id":"212061","lastModified":"1301903750000","name":"Sarah Constible","type":"Person","_key":"70721"} +{"label":"Le magnifique","description":"Fran\u00e7ois Merlin (Belmondo) is a Jean Bruce type writer of pulp espionage novels (he has written 42 so far) and about half of the film plays in his imagination, where he is the world-renowned superspy \"Bob Sinclar\" Christine is a sociology student who lives in Merlin's building and is interested in the novels, but in the writer's imagination she becomes Tatiana, his paramour, while the pompous and rich publisher of his novels, Pierre Charron, doubles as the great villain of the spy novels, the Al","id":"19562","runtime":95,"imdbId":"tt0070354","trailer":"http:\/\/www.youtube.com\/watch?v=cly4X01y3Yk","version":80,"lastModified":"1301904356000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9e8\/4d6568305e73d66a610009e8\/le-magnifique-mid.jpg","studio":"Cerito Films","genre":"Action","title":"Le magnifique","releaseDate":94694400000,"language":"en","type":"Movie","_key":"70722"} +{"label":"The Prophecy: Uprising","description":"There exists an ancient manuscript still writing itself called the Lexicon. It supposedly tells of the coming of the Anti-Christ, and happens to fall into the hands of an unsuspecting woman (Kari Wuhrer). Now, she is being pursued by angels intent on obtaining the information from the book","id":"19564","runtime":88,"imdbId":"tt0365658","version":134,"lastModified":"1301905759000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/da8\/4bc956cb017a3c57fe026da8\/the-prophecy-uprising-mid.jpg","studio":"Dimension Films","genre":"Thriller","title":"The Prophecy: Uprising","releaseDate":1118102400000,"language":"en","tagline":"Into the war between heaven and hell comes a brand-new enemy.","type":"Movie","_key":"70723"} +{"label":"Dan Chiriac","version":23,"id":"119550","lastModified":"1301902651000","name":"Dan Chiriac","type":"Person","_key":"70724"} +{"label":"Boris Petroff","version":26,"id":"117611","lastModified":"1301902508000","name":"Boris Petroff","type":"Person","_key":"70725"} +{"label":"Alin Cristea","version":23,"id":"119551","lastModified":"1301902651000","name":"Alin Cristea","type":"Person","_key":"70726"} +{"label":"Florinel Popescu","version":23,"id":"119552","lastModified":"1301902651000","name":"Florinel Popescu","type":"Person","_key":"70727"} +{"label":"Catalina Alexandru","version":23,"id":"119553","lastModified":"1301902651000","name":"Catalina Alexandru","type":"Person","_key":"70728"} +{"label":"7 ans de mariage","description":"No overview found.","id":"19565","runtime":0,"imdbId":"tt0339525","version":148,"lastModified":"1301908086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/bff\/4d12237c5e73d60832000bff\/7-ans-de-mariage-mid.jpg","title":"7 ans de mariage","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70729"} +{"label":"Yan Duffas","version":15,"id":"145196","lastModified":"1301902109000","name":"Yan Duffas","type":"Person","_key":"70730"} +{"label":"Thierry Bosc","version":15,"id":"145198","lastModified":"1301902109000","name":"Thierry Bosc","type":"Person","_key":"70731"} +{"label":"H\u00e9l\u00e8ne Devynck","version":15,"id":"145199","lastModified":"1301902043000","name":"H\u00e9l\u00e8ne Devynck","type":"Person","_key":"70732"} +{"label":"Maxime Lombard","version":15,"id":"145200","lastModified":"1301902210000","name":"Maxime Lombard","type":"Person","_key":"70733"} +{"label":"Autism: The Musical","description":"Follows five autistic children as they work together to create and perform a live musical production.","id":"19566","runtime":93,"imdbId":"tt0481580","homepage":"http:\/\/www.autismthemusical.com\/","version":103,"lastModified":"1301906070000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/db1\/4bc956cc017a3c57fe026db1\/autism-the-musical-mid.jpg","genre":"Documentary","title":"Autism: The Musical","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70734"} +{"label":"Tricia Regan","version":19,"id":"84866","lastModified":"1301902235000","name":"Tricia Regan","type":"Person","_key":"70735"} +{"label":"Adam","version":19,"id":"84867","lastModified":"1301902627000","name":"Adam","type":"Person","_key":"70736"} +{"label":"Elaine Hall","version":19,"id":"84868","lastModified":"1301902627000","name":"Elaine Hall","type":"Person","_key":"70737"} +{"label":"Henry","version":19,"id":"84869","lastModified":"1301902452000","name":"Henry","type":"Person","_key":"70738"} +{"label":"Rosanne Katon","version":19,"id":"84870","lastModified":"1301902627000","name":"Rosanne Katon","type":"Person","_key":"70739"} +{"label":"Lexi","version":19,"id":"84871","lastModified":"1301902235000","name":"Lexi","type":"Person","_key":"70740"} +{"label":"Neal","version":19,"id":"84872","lastModified":"1301902235000","name":"Neal","type":"Person","_key":"70741"} +{"label":"Kristen Stills","version":19,"id":"84873","lastModified":"1301902627000","name":"Kristen Stills","type":"Person","_key":"70742"} +{"label":"Stephen Stills","version":19,"id":"84874","lastModified":"1301902235000","name":"Stephen Stills","type":"Person","_key":"70743"} +{"label":"Wyatt","version":19,"id":"84875","lastModified":"1301902235000","name":"Wyatt","type":"Person","_key":"70744"} +{"label":"Airspeed","description":"No overview found.","id":"19568","runtime":84,"imdbId":"tt0171049","version":51,"lastModified":"1301907367000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/99a\/4c5d8a8c7b9aa151f600099a\/airspeed-mid.jpg","title":"Airspeed","releaseDate":883612800000,"language":"en","type":"Movie","_key":"70745"} +{"label":"Fling","description":"An attractive young couple's open relationship is stretched to the breaking point when each partner finds themselves falling in love with other people.","id":"19572","runtime":98,"imdbId":"tt1003010","homepage":"http:\/\/www.flingmovie.com\/","version":103,"lastModified":"1301904609000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dbb\/4bc956cc017a3c57fe026dbb\/fling-mid.jpg","genre":"Comedy","title":"Fling","releaseDate":1226016000000,"language":"en","type":"Movie","_key":"70746"} +{"label":"Shoshana Bush","version":23,"id":"84835","lastModified":"1301902322000","name":"Shoshana Bush","type":"Person","_key":"70747"} +{"label":"Nick Wechsler","version":62,"id":"6468","lastModified":"1302070450000","name":"Nick Wechsler","type":"Person","_key":"70748"} +{"label":"John Stewart Muller","version":25,"id":"84836","lastModified":"1301902235000","name":"John Stewart Muller","type":"Person","_key":"70749"} +{"label":"In Your Dreams","description":"Albert Ross was the most ambitious little boy in the world until an 11 year old girl broke his heart. Now he's grown up to be an embittered dentist, he's done nothing, gone nowhere AND he has a step-mother from hell. One day he suffers a mysterious accident - and suddenly finds that whatever he dreams comes true. Suddenly a whole new life opens up for him... ","id":"19573","runtime":100,"imdbId":"tt0373028","version":65,"lastModified":"1301907243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/dce\/4bc956d0017a3c57fe026dce\/in-your-dreams-mid.jpg","genre":"Comedy","title":"In Your Dreams","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70750"} +{"label":"Bob Funk","description":"After he's fired from his job -- by his mother, no less -- Bob Funk agrees to quit drinking, see a therapist, and eventually report to a new boss, who might just be the woman of his dreams.","id":"19575","runtime":106,"imdbId":"tt1091172","homepage":"http:\/\/www.bobfunkthemovie.com\/","version":95,"lastModified":"1301906458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f7\/4d56a80e5e73d617600020f7\/bob-funk-mid.jpg","genre":"Comedy","title":"Bob Funk","releaseDate":1237507200000,"language":"en","type":"Movie","_key":"70751"} +{"label":"One Piece Movie 01: The Great Gold Pirate","description":"No overview found.","id":"19576","runtime":59,"imdbId":"tt0814243","version":45,"lastModified":"1301905309000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de1\/4bc956d1017a3c57fe026de1\/one-piece-the-movie-kaisokuou-ni-ore-wa-naru-mid.jpg","studio":"Toei Animation","genre":"Action","title":"One Piece Movie 01: The Great Gold Pirate","releaseDate":952128000000,"language":"en","type":"Movie","_key":"70752"} +{"label":"Atsuji Shimizu","version":22,"id":"84839","lastModified":"1301902483000","name":"Atsuji Shimizu","type":"Person","_key":"70753"} +{"label":"Kazuya Nakai","version":37,"id":"84507","lastModified":"1301902318000","name":"Kazuya Nakai","type":"Person","_key":"70754"} +{"label":"Romancing the Bride","description":"No overview found.","id":"19577","runtime":90,"imdbId":"tt0477079","version":82,"lastModified":"1301906806000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/de6\/4bc956d1017a3c57fe026de6\/romancing-the-bride-mid.jpg","genre":"Comedy","title":"Romancing the Bride","releaseDate":1133568000000,"language":"en","type":"Movie","_key":"70755"} +{"label":"The Dukes of Hazzard: The Beginning","description":"Cousins Bo, Luke and Daisy are sent to Hazzard County, Georgia for the first time to live with their Uncle Jesse. Jesse is a farmer and a moonshiner and is constantly battling his old rival Boss Hogg who is the corrupt city commissioner of the small town.","id":"19580","runtime":95,"imdbId":"tt0800328","trailer":"http:\/\/www.youtube.com\/watch?v=6d0iwpQldpM","version":117,"lastModified":"1301905943000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df3\/4bc956d2017a3c57fe026df3\/the-dukes-of-hazzard-the-beginning-mid.jpg","studio":"Warner Premiere","genre":"Action","title":"The Dukes of Hazzard: The Beginning","releaseDate":1172966400000,"language":"en","tagline":"These are the Duke boys... from the beginning!","type":"Movie","_key":"70756"} +{"label":"Randy Wayne","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b9\/4bf95294017a3c702d0001b9\/randy-wayne-profile.jpg","version":29,"id":"84841","lastModified":"1301901943000","name":"Randy Wayne","type":"Person","_key":"70757"} +{"label":"April Scott","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1bf\/4bf953ef017a3c702d0001bf\/april-scott-profile.jpg","version":20,"id":"84842","lastModified":"1301901608000","name":"April Scott","type":"Person","_key":"70758"} +{"label":"Robert Berlinger","version":23,"id":"84843","lastModified":"1301901851000","name":"Robert Berlinger","type":"Person","_key":"70759"} +{"label":"Cloaca","description":"Four old college friends in their forties come together in a time of trouble and despair. Old joy relives, but the harsh reality of their problems can't satisfy them and eventually endangers their friendships.","id":"19581","runtime":108,"imdbId":"tt0375662","version":69,"lastModified":"1301418823000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/be6\/4cc2c8a37b9aa138da001be6\/cloaca-mid.jpg","studio":"IdtV Film & Video Productions","genre":"Comedy","title":"Cloaca","releaseDate":1066867200000,"language":"en","type":"Movie","_key":"70760"} +{"label":"Sherman's Way","description":"An eccentric Olympic has-been who prefers leisure to work, finds himself stuck with a rigid pre-law Yale student with no time for wasting time. Between skinny-dipping and stealing cars, this odd-couple learn from each other that balance is the key to getting the girl, getting the job and getting a life.","id":"19582","runtime":97,"imdbId":"tt0834541","homepage":"http:\/\/www.shermansway.com\/","version":88,"lastModified":"1301907085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/df8\/4bc956d3017a3c57fe026df8\/sherman-s-way-mid.jpg","genre":"Comedy","title":"Sherman's Way","releaseDate":1204243200000,"language":"en","type":"Movie","_key":"70761"} +{"label":"Michael Shulman","version":22,"id":"84844","lastModified":"1301902544000","name":"Michael Shulman","type":"Person","_key":"70762"} +{"label":"Fierce People","description":"A massage therapist looking to overcome her addictions and reconnect with her son, whose father is an anthropologist in South America studying the Yanomani people, moves in with a wealthy ex-client","id":"19583","runtime":112,"imdbId":"tt0401420","version":188,"lastModified":"1301907084000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e01\/4bc956d4017a3c57fe026e01\/fierce-people-mid.jpg","genre":"Drama","title":"Fierce People","releaseDate":1196380800000,"language":"en","tagline":"Every family tree has its nuts.","type":"Movie","_key":"70763"} +{"label":"G-Force","description":"A team of trained secret agent animals, guinea pigs Darwin, Juarez, Blaster, mole Speckles, and fly Mooch takes on a mission for the US government to stop evil Leonard Saber, who plans to destroy the world with household appliances. But the government shuts them down and they are sentenced to a pet shop. Can they escape the cage to defeat the villain and save the world?","id":"19585","runtime":100,"imdbId":"tt0436339","trailer":"http:\/\/www.youtube.com\/watch?v=7GaEZ2e9Ijs","homepage":"http:\/\/disney.go.com\/disneypictures\/gforce\/","version":225,"lastModified":"1301901226000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6a4\/4cb2a53e5e73d65b840006a4\/g-force-mid.jpg","studio":"Walt Disney Pictures","genre":"Action","title":"G-Force","releaseDate":1248220800000,"language":"en","type":"Movie","_key":"70764"} +{"label":"Edwin Louis","version":20,"id":"84845","lastModified":"1301901413000","name":"Edwin Louis","type":"Person","_key":"70765"} +{"label":"Jared Lavette","version":19,"id":"84846","lastModified":"1301901438000","name":"Jared Lavette","type":"Person","_key":"70766"} +{"label":"Micah Lavette","version":19,"id":"84847","lastModified":"1301901343000","name":"Micah Lavette","type":"Person","_key":"70767"} +{"label":"Loudon Wainwright III","version":23,"id":"84848","lastModified":"1301901932000","name":"Loudon Wainwright III","type":"Person","_key":"70768"} +{"label":"Piper Mackenzie Harris","version":24,"id":"84849","lastModified":"1301901813000","name":"Piper Mackenzie Harris","type":"Person","_key":"70769"} +{"label":"Justin Mentell","version":24,"id":"84850","lastModified":"1301901601000","name":"Justin Mentell","type":"Person","_key":"70770"} +{"label":"Hoyt Yeatman","version":24,"id":"84851","lastModified":"1301901326000","name":"Hoyt Yeatman","type":"Person","_key":"70771"} +{"label":"Days Of Darkness","description":"No overview found.","id":"19586","runtime":0,"version":500,"lastModified":"1301517845000","genre":"Action","title":"Days Of Darkness","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70772"} +{"label":"The Education of Charlie Banks","description":"College student Charlie Banks has to face old problems when the bully he had an unpleasant encounter with back in high school shows up on his campus.","id":"19587","runtime":100,"imdbId":"tt0783515","version":198,"lastModified":"1301906958000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e53\/4bc956e4017a3c57fe026e53\/the-education-of-charlie-banks-mid.jpg","genre":"Drama","title":"The Education of Charlie Banks","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70773"} +{"label":"My Boss, My Hero","description":"This gangster comedy tells of a successful young mobster who has taken over the fashionable Myeongdong district of Seoul. When he mistakes the poet Yun Tong-ju for a liquor similar to dongdongju, his gang decides the boss's ignorance is an embarrassment. The gang takes up a collection and puts the boss back in high school.","id":"19588","runtime":98,"imdbId":"tt0301214","version":63,"lastModified":"1301906595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e60\/4bc956e5017a3c57fe026e60\/19588-mid.jpg","studio":"Zenith Entertainment","genre":"Action","title":"My Boss, My Hero","releaseDate":1008288000000,"language":"en","type":"Movie","_key":"70774"} +{"label":"Je-gyun Yun","version":22,"id":"84852","lastModified":"1301902235000","name":"Je-gyun Yun","type":"Person","_key":"70775"} +{"label":"Jun-ho Jeong","version":34,"id":"84854","lastModified":"1301901805000","name":"Jun-ho Jeong","type":"Person","_key":"70776"} +{"label":"Woong-in Jeong","version":23,"id":"84855","lastModified":"1301902235000","name":"Woong-in Jeong","type":"Person","_key":"70777"} +{"label":"Un-taek Jeong","version":26,"id":"84856","lastModified":"1301902510000","name":"Un-taek Jeong","type":"Person","_key":"70778"} +{"label":"Here Be Dragons","description":"Most people fully accept paranormal and pseudoscientific claims without critique as they are promoted by the mass media. Here Be Dragons offers a toolbox for recognizing and understanding the dangers of pseudoscience, and appreciation for the reality-based benefits offered by real science.","id":"19589","runtime":40,"imdbId":"tt1262906","homepage":"http:\/\/herebedragonsmovie.com\/","version":58,"lastModified":"1301905901000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e6d\/4bc956e5017a3c57fe026e6d\/here-be-dragons-mid.jpg","title":"Here Be Dragons","releaseDate":1212278400000,"language":"en","tagline":"An Introduction to Critical Thinking","type":"Movie","_key":"70779"} +{"label":"Brian Dunning","version":20,"id":"84858","lastModified":"1301902524000","name":"Brian Dunning","type":"Person","_key":"70780"} +{"label":"By the Light of the Silvery Moon","description":"Sequel to On Moonlight Bay. The trials and tribulations of the Winfield family in small town Indiana as Marjorie Winfield's boyfriend, William Sherman, returns from the Army after W.W.I. Bill & Marjorie's on-again, off-again provide the backdrop for other family issues, primarily brought on by little brother Wesley's overactive imagination and tall tales","id":"19590","runtime":101,"imdbId":"tt0045586","trailer":"http:\/\/www.youtube.com\/watch?v=QaP7LORPxmY","version":129,"lastModified":"1301908392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e76\/4bc956e6017a3c57fe026e76\/by-the-light-of-the-silvery-moon-mid.jpg","genre":"Comedy","title":"By the Light of the Silvery Moon","releaseDate":-529200000000,"language":"en","type":"Movie","_key":"70781"} +{"label":"Oh! My God","description":"Eun-joo falls for playboy Jung-hwan after he rescues her from drowning, and vows to make him her man. One thing leads to another, and they had a one night stand. Several years later, Jung-hwan is still living the high life while Eun-joo is working as a prosecutor. When they eventually cross paths, she reveals that he's the father of her twins, and tries to make him grow up and take responsibility.","id":"19591","runtime":104,"imdbId":"tt0757210","version":133,"lastModified":"1301908271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e87\/4bc956e7017a3c57fe026e87\/19591-mid.jpg","studio":"CY Films","genre":"Action","title":"Oh! My God","releaseDate":1140048000000,"language":"en","type":"Movie","_key":"70782"} +{"label":"Jeong-woo Kim","version":21,"id":"84860","lastModified":"1301902359000","name":"Jeong-woo Kim","type":"Person","_key":"70783"} +{"label":"Yi Shin","version":22,"id":"84862","lastModified":"1301902203000","name":"Yi Shin","type":"Person","_key":"70784"} +{"label":"Dead Birds","description":"A group of Confederate soldiers who hole up in an abandoned plantation after robbing a bank, and find themselves at the mercy of supernatural forces.","id":"19592","runtime":91,"imdbId":"tt0377749","version":145,"lastModified":"1301906805000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e95\/4bc956eb017a3c57fe026e95\/dead-birds-mid.jpg","studio":"Silver Nitrate Pictures","genre":"Horror","title":"Dead Birds","releaseDate":1072915200000,"language":"en","type":"Movie","_key":"70785"} +{"label":"The Death of the Incredible Hulk","description":"No overview found.","id":"19593","runtime":95,"imdbId":"tt0099387","version":107,"lastModified":"1301908271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e9e\/4bc956ec017a3c57fe026e9e\/the-death-of-the-incredible-hulk-mid.png","genre":"Action","title":"The Death of the Incredible Hulk","releaseDate":635299200000,"language":"en","type":"Movie","_key":"70786"} +{"label":"Bartok the Magnificent","description":"Russia is being terrorized by an evil witch known as Baba Yaga; the only one who is not afraid of her is Bartok the Magnificent. Bartok, an albino bat, has just arrived in Moscow and is impressing everyone with his performances, including Prince Ivan Romanov. However, one person is not impressed; Ludmilla finds Bartok annoying and naive. After Bartok's show, a violent bear suddenly attacks. Bartok","id":"19594","runtime":67,"imdbId":"tt0197273","version":157,"lastModified":"1301906934000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ea7\/4bc956ee017a3c57fe026ea7\/bartok-the-magnificent-mid.jpg","genre":"Animation","title":"Bartok the Magnificent","releaseDate":942624000000,"language":"en","type":"Movie","_key":"70787"} +{"label":"Shark Bait","description":"After losing everything, a young fish, Pi, goes to live with his family on the Reef. There he meets the love of his life but finds that she already has the unwanted affections of a bully shark. He must follow his destiny to save her and rid the Reef of this menace for good.","id":"19595","runtime":77,"imdbId":"tt0820142","trailer":"http:\/\/www.youtube.com\/watch?v=2286","version":112,"lastModified":"1301904090000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ed4\/4bc956f0017a3c57fe026ed4\/shark-bait-mid.jpg","studio":"Silver Nitrate Films","genre":"Animation","title":"Shark Bait","releaseDate":1152230400000,"language":"en","type":"Movie","_key":"70788"} +{"label":"John Fox","version":18,"id":"109539","lastModified":"1301902062000","name":"John Fox","type":"Person","_key":"70789"} +{"label":"Electric Dreams","description":"Miles buys himself a state-of-the-art computer that starts expressing thoughts and emotions after a having champagne spilled down on him. Things start getting out of hand when both Miles and Edgar, how the computer calls himself, fall in love with Madeline, an attractive neighbour.","id":"19596","runtime":95,"imdbId":"tt0087197","version":83,"lastModified":"1301906185000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84a\/4d6530fb5e73d66a7000084a\/electric-dreams-mid.jpg","studio":"Virgin","genre":"Comedy","title":"Electric Dreams","releaseDate":459129600000,"language":"en","tagline":"A boy... a girl... and a computer","type":"Movie","_key":"70790"} +{"label":"Alan Polonsky","version":22,"id":"84890","lastModified":"1301902338000","name":"Alan Polonsky","type":"Person","_key":"70791"} +{"label":"Harry Rabinowitz","version":20,"id":"84892","lastModified":"1301902185000","name":"Harry Rabinowitz","type":"Person","_key":"70792"} +{"label":"Wendy Miller","version":20,"id":"84891","lastModified":"1301902179000","name":"Wendy Miller","type":"Person","_key":"70793"} +{"label":"Holly De Jong","version":20,"id":"84893","lastModified":"1301902532000","name":"Holly De Jong","type":"Person","_key":"70794"} +{"label":"Le H\u00e9risson","description":"No overview found.","id":"19597","runtime":100,"imdbId":"tt1442519","version":61,"lastModified":"1302115715000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/ee7\/4bc956f4017a3c57fe026ee7\/le-herisson-mid.jpg","studio":"Path\u00e9 Distribution","genre":"Comedy","title":"Le H\u00e9risson","releaseDate":1246579200000,"language":"en","type":"Movie","_key":"70795"} +{"label":"Mona Achache","version":22,"id":"84885","lastModified":"1301902701000","name":"Mona Achache","type":"Person","_key":"70796"} +{"label":"Garance Le Guillermic","version":21,"id":"84886","lastModified":"1301902501000","name":"Garance Le Guillermic","type":"Person","_key":"70797"} +{"label":"Sarah Lepicard","version":19,"id":"84889","lastModified":"1301902674000","name":"Sarah Lepicard","type":"Person","_key":"70798"} +{"label":"Leaving Barstow","description":"Growing up in Barstow, CA, high school senior Andrew hopes for a bigger world -- but his devotion to his mother, Sandra, and his awakening attraction to newcomer Jenny, combine to keep him tied to home. Andrew's loyalties become confused and his prior ambitions begin to fade as he realizes he must make the most difficult of all decisions -- choosing between himself and the people he loves.","id":"19598","runtime":85,"imdbId":"tt1093374","homepage":"http:\/\/www.leavingbarstowmovie.com\/","version":102,"lastModified":"1301908271000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/d48\/4d4e8d595e73d617b3002d48\/leaving-barstow-mid.jpg","genre":"Drama","title":"Leaving Barstow","releaseDate":1209427200000,"language":"en","type":"Movie","_key":"70799"} +{"label":"Michelle Clunie","version":22,"id":"84894","lastModified":"1301902674000","name":"Michelle Clunie","type":"Person","_key":"70800"} +{"label":"Kevin Sheridan","version":19,"id":"84895","lastModified":"1301902674000","name":"Kevin Sheridan","type":"Person","_key":"70801"} +{"label":"Book of Blood","description":"Based on the wraparound story penned by Clive Barker in the author's \"Books of Blood\" collection, the story centers on a paranormal expert who, while investigating a gruesome slaying, finds a house that is at the intersection of \"highways\" transporting souls to the afterlife.","id":"19599","runtime":96,"imdbId":"tt1169809","version":107,"lastModified":"1301907987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/047\/4d4759f35e73d65704004047\/book-of-blood-mid.jpg","genre":"Horror","title":"Book of Blood","releaseDate":1210204800000,"language":"en","tagline":"The dead will not be silenced.","type":"Movie","_key":"70802"} +{"label":"Jonas Armstrong","version":20,"id":"119224","lastModified":"1301902235000","name":"Jonas Armstrong","type":"Person","_key":"70803"} +{"label":"Bossa Nova","description":"A Brazilian (Antonio Fagundes) tries to win the heart of an American widow (Amy Irving) teaching English in Rio de Janeiro. ","id":"19600","runtime":95,"imdbId":"tt0180837","version":90,"lastModified":"1301906227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f02\/4bc956f7017a3c57fe026f02\/bossa-nova-mid.jpg","genre":"Comedy","title":"Bossa Nova","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70804"} +{"label":"Bent","description":"Max is a handsome young man who, after a fateful tryst with a German soldier, is forced to run for his life. Eventually Max is placed in a concentration camp where he pretends to be Jewish because in the eyes of the Nazis, gays are the lowest form of human being. But it takes a relationship with an openly gay prisoner to teach Max that without the love of another, life is not worth living.","id":"19601","runtime":105,"imdbId":"tt0118698","version":114,"lastModified":"1301904637000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f07\/4bc956f7017a3c57fe026f07\/bent-mid.jpg","genre":"Drama","title":"Bent","releaseDate":880502400000,"language":"en","type":"Movie","_key":"70805"} +{"label":"Sean Mathias","version":19,"id":"84896","lastModified":"1301902235000","name":"Sean Mathias","type":"Person","_key":"70806"} +{"label":"Ciao","description":"Two men meet and fall in love under the least joyous of circumstances in this low-key drama from writer and director Yen Tan.","id":"19603","runtime":87,"imdbId":"tt0870089","version":233,"lastModified":"1301906739000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f14\/4bc956f8017a3c57fe026f14\/ciao-mid.jpg","genre":"Drama","title":"Ciao","releaseDate":1228435200000,"language":"en","type":"Movie","_key":"70807"} +{"label":"Decampitated","description":"Seven friends are going camping at the infamous DeCamp acres for a weekend. But they crash their car and are put in the woods guarded by a psychopath killer who tries to kill them one by one.","id":"19604","runtime":92,"imdbId":"tt0118951","version":63,"lastModified":"1300980746000","title":"Decampitated","releaseDate":883612800000,"language":"en","type":"Movie","_key":"70808"} +{"label":"High Road to China","description":"A biplane pilot is saddled with a spoiled industrialist's daughter on a search for her missing father through Asia that eventually involves them in a struggle against a Chinese warlord.","id":"19606","runtime":105,"imdbId":"tt0085678","version":89,"lastModified":"1301904431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f26\/4bc956fe017a3c57fe026f26\/high-road-to-china-mid.jpg","genre":"Adventure","title":"High Road to China","releaseDate":416793600000,"language":"en","type":"Movie","_key":"70809"} +{"label":"My Boss, My Student","description":"A hit comedy in 2001, \"My Boss, My Hero\" finally has its sequel. This time our hero Doo-sik has become a senior in a college, studying to be a teacher himself. Doo-sik is now a student-teacher teaching ethics during the day while working as a gangster at night. His boss is still very determined to make Doo-sik keep on studying, while he himself has also gone back to high school as a student.","id":"19609","runtime":124,"imdbId":"tt0757353","version":70,"lastModified":"1301418583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f40\/4bc95700017a3c57fe026f40\/19609-mid.jpg","studio":"Zenith Entertainment","genre":"Action","title":"My Boss, My Student","releaseDate":1137628800000,"language":"en","type":"Movie","_key":"70810"} +{"label":"Dong-won Kim","version":23,"id":"84907","lastModified":"1301902062000","name":"Dong-won Kim","type":"Person","_key":"70811"} +{"label":"Sang Jung Kim","version":18,"id":"84910","lastModified":"1301902627000","name":"Sang Jung Kim","type":"Person","_key":"70812"} +{"label":"A Star Is Born","description":"A Star Is Born is a 1976 rock music film telling the story of a young woman, played by Barbra Streisand who enters show business, and meets and falls in love with an established male star, played by Kris Kristofferson, only to find her career ascending while his goes into decline.","id":"19610","runtime":139,"imdbId":"tt0075265","version":125,"lastModified":"1301904525000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f49\/4bc95703017a3c57fe026f49\/a-star-is-born-mid.jpg","studio":"Barwood Films","genre":"Drama","title":"A Star Is Born","releaseDate":219628800000,"language":"en","type":"Movie","_key":"70813"} +{"label":"Oliver Clark","version":19,"id":"84915","lastModified":"1301902645000","name":"Oliver Clark","type":"Person","_key":"70814"} +{"label":"Venetta Fields","version":19,"id":"84916","lastModified":"1301902476000","name":"Venetta Fields","type":"Person","_key":"70815"} +{"label":"Clydie King","version":19,"id":"84917","lastModified":"1301902476000","name":"Clydie King","type":"Person","_key":"70816"} +{"label":"Marta Heflin","version":20,"id":"84918","lastModified":"1301902544000","name":"Marta Heflin","type":"Person","_key":"70817"} +{"label":"Bill Graham","version":21,"id":"65553","lastModified":"1301902125000","name":"Bill Graham","type":"Person","_key":"70818"} +{"label":"Rita Coolidge","version":19,"id":"84919","lastModified":"1301902476000","name":"Rita Coolidge","type":"Person","_key":"70819"} +{"label":"Tony Orlando","version":19,"id":"84920","lastModified":"1301902476000","name":"Tony Orlando","type":"Person","_key":"70820"} +{"label":"Bo chi tung wah","description":"A debt collector receives a call from a woman who is kidnapped by an unknown gang. He thinks it is a joke but soon, he realises that it is not a prank.","id":"19611","runtime":110,"imdbId":"tt1156506","version":62,"lastModified":"1301908270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f66\/4bc95705017a3c57fe026f66\/bo-chi-tung-wah-mid.jpg","genre":"Thriller","title":"Bo chi tung wah","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"70821"} +{"label":"Henry Rollins: Uncut from NYC","description":"A performance from Henry Rollins' Spoken Word Tour, featuring humorous, commentary on politics, pop culture and his favorite exploits from 25 years on the road.","id":"19612","runtime":85,"imdbId":"tt0785003","version":73,"lastModified":"1300980747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f79\/4bc95706017a3c57fe026f79\/henry-rollins-uncut-from-nyc-mid.jpg","title":"Henry Rollins: Uncut from NYC","releaseDate":1143244800000,"language":"en","type":"Movie","_key":"70822"} +{"label":"Paul J. Morra","version":20,"id":"85012","lastModified":"1301902721000","name":"Paul J. Morra","type":"Person","_key":"70823"} +{"label":"\uc720\uac10\uc2a4\ub7ec\uc6b4 \ub3c4\uc2dc","description":"Jang Choon-dong is a traffic officer who aspires to become a homicide detective. He is assigned to go undercover to infiltrate a gangster network. Meanwhile, Lee Joong-dae, a member of Kwang-seob's gang, goes undercover himself by joining the police force. Joong-dae tries hard to gain favor with his squad leader in an effort to expose Choon-dong's identity.","id":"19613","runtime":121,"version":34,"lastModified":"1300980747000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/f82\/4bc95707017a3c57fe026f82\/19613-mid.jpg","genre":"Comedy","title":"\uc720\uac10\uc2a4\ub7ec\uc6b4 \ub3c4\uc2dc","releaseDate":1232582400000,"language":"en","type":"Movie","_key":"70824"} +{"label":"Fade to Black","description":"An intimate look at hip-hop artist Shawn Carter, Jay-Z, revealing the multiple Grammy Award winning artist as never before, from his background and rise to fame to the recording of his last album. The film chronicles the legendary concert of Jay-Z's performance at Madison Square Garden in November 2003. In an unprecedented event, a hip-hop artist sold out an arena in only two hours. Nearly one year later, fans and artists alike still reflect on this monumental musical night. The event was a spec","id":"19614","runtime":109,"imdbId":"tt0428518","version":130,"lastModified":"1302095170000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/241\/4d9c814f5e73d64ba2000241\/fade-to-black-mid.jpg","studio":"Paramount Classics","genre":"Documentary","title":"Fade to Black","releaseDate":1099785600000,"language":"en","type":"Movie","_key":"70825"} +{"label":"Jay-Z","version":27,"id":"84932","lastModified":"1301901370000","name":"Jay-Z","type":"Person","_key":"70826"} +{"label":"Mary J. Blige","version":24,"id":"84933","lastModified":"1301902023000","name":"Mary J. Blige","type":"Person","_key":"70827"} +{"label":"Patrick Paulson","version":20,"id":"84934","lastModified":"1301902542000","name":"Patrick Paulson","type":"Person","_key":"70828"} +{"label":"Flying By","description":"No overview found.","id":"19615","runtime":95,"imdbId":"tt1131732","version":97,"lastModified":"1301905618000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fbe\/4bc95710017a3c57fe026fbe\/flying-by-mid.jpg","genre":"Drama","title":"Flying By","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"70829"} +{"label":"Ahnaise Christmas","version":20,"id":"84943","lastModified":"1301902235000","name":"Ahnaise Christmas","type":"Person","_key":"70830"} +{"label":"Sidney Franklin","version":19,"id":"84944","lastModified":"1301902627000","name":"Sidney Franklin","type":"Person","_key":"70831"} +{"label":"David Haack","version":19,"id":"84945","lastModified":"1301902627000","name":"David Haack","type":"Person","_key":"70832"} +{"label":"Ted Hutton","version":19,"id":"84946","lastModified":"1301902627000","name":"Ted Hutton","type":"Person","_key":"70833"} +{"label":"Steven B. Jarnicki","version":19,"id":"84947","lastModified":"1301902627000","name":"Steven B. Jarnicki","type":"Person","_key":"70834"} +{"label":"Kevin Montgomery","version":19,"id":"84949","lastModified":"1301902627000","name":"Kevin Montgomery","type":"Person","_key":"70835"} +{"label":"Katie Leclerc","version":19,"id":"84948","lastModified":"1301902627000","name":"Katie Leclerc","type":"Person","_key":"70836"} +{"label":"Cheryl Noe","version":20,"id":"84950","lastModified":"1301902703000","name":"Cheryl Noe","type":"Person","_key":"70837"} +{"label":"Gene Rathswohl","version":20,"id":"84951","lastModified":"1301902703000","name":"Gene Rathswohl","type":"Person","_key":"70838"} +{"label":"Olesya Rulin","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c48\/4d931f017b9aa1199a000c48\/olesya-rulin-profile.jpg","version":24,"id":"84952","lastModified":"1301902452000","name":"Olesya Rulin","type":"Person","_key":"70839"} +{"label":"Stephen Michael Shearer","version":19,"id":"84953","lastModified":"1301902627000","name":"Stephen Michael Shearer","type":"Person","_key":"70840"} +{"label":"Mona Jo Trowbridge","version":19,"id":"84954","lastModified":"1301902627000","name":"Mona Jo Trowbridge","type":"Person","_key":"70841"} +{"label":"New York","description":"New York is a contemporary story of friendship set against the larger than life backdrop of a city often described as the centre of the world. Omar has gone abroad for the first time in his life and soon enough he begins to see and love America through the eyes of his American friends - Sam and Maya. It is the story of these three friends discovering a new world together.","id":"19616","runtime":153,"imdbId":"tt1328634","trailer":"http:\/\/www.youtube.com\/watch?v=1362","homepage":"http:\/\/www.yashrajfilms.com\/microsites\/new_york\/nywebsite.html","version":278,"lastModified":"1301902876000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fd7\/4bc95716017a3c57fe026fd7\/new-york-mid.jpg","studio":"Yash Raj Films","genre":"Action","title":"New York","releaseDate":1245974400000,"language":"en","type":"Movie","_key":"70842"} +{"label":"Aidan Wagner","version":20,"id":"85046","lastModified":"1301902452000","name":"Aidan Wagner","type":"Person","_key":"70843"} +{"label":"Nawazuddin Siddiqui","version":23,"id":"85047","lastModified":"1301902452000","name":"Nawazuddin Siddiqui","type":"Person","_key":"70844"} +{"label":"Kabir Khan","version":23,"id":"85048","lastModified":"1301901942000","name":"Kabir Khan","type":"Person","_key":"70845"} +{"label":"Ali Abbas Zafar","version":20,"id":"85061","lastModified":"1301902062000","name":"Ali Abbas Zafar","type":"Person","_key":"70846"} +{"label":"Crime Wave","description":"Reformed parolee Steve Lacey is caught in the middle when a wounded former cellmate seeks him out for shelter. The other two former cellmates then attempt to force him into doing a bank job.","id":"19618","runtime":73,"imdbId":"tt0046878","trailer":"http:\/\/www.youtube.com\/watch?v=48113otVhiI","version":65,"lastModified":"1301906145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fe5\/4bc95718017a3c57fe026fe5\/crime-wave-mid.jpg","studio":"Warner Bros. Pictures","genre":"Crime","title":"Crime Wave","releaseDate":-503971200000,"language":"en","type":"Movie","_key":"70847"} +{"label":"Gayle Kellogg","version":20,"id":"84936","lastModified":"1301902710000","name":"Gayle Kellogg","type":"Person","_key":"70848"} +{"label":"Mack Chandler","version":20,"id":"84937","lastModified":"1301902722000","name":"Mack Chandler","type":"Person","_key":"70849"} +{"label":"Andr\u00e9 De Toth","version":37,"id":"81799","lastModified":"1301901469000","name":"Andr\u00e9 De Toth","type":"Person","_key":"70850"} +{"label":"Cherche fianc\u00e9 tous frais pay\u00e9s","description":"Alexandra, trente ans, s'appr\u00eate \u00e0 passer les vacances d'\u00e9t\u00e9 en famille. Au moment de prendre la route, elle apprend que sa m\u00e8re a aussi invit\u00e9 son ex, accompagn\u00e9 d'une \"fianc\u00e9e\" jeune et ravissante. Dans un caf\u00e9, elle croise un acteur au ch\u00f4mage et l'engage sur le champ pour tenir le r\u00f4le de son fianc\u00e9. Comme \u00e7a, elle pourra affronter son ex, en toute s\u00e9r\u00e9nit\u00e9.","id":"19619","runtime":92,"imdbId":"tt0486497","version":31,"lastModified":"1300980748000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/fee\/4bc95719017a3c57fe026fee\/cherche-fiance-tous-frais-payes-mid.jpg","genre":"Comedy","title":"Cherche fianc\u00e9 tous frais pay\u00e9s","releaseDate":1182902400000,"language":"en","type":"Movie","_key":"70851"} +{"label":"Alexandra Lamy","version":28,"id":"113617","lastModified":"1301902034000","name":"Alexandra Lamy","type":"Person","_key":"70852"} +{"label":"Bluffmaster!","description":"Roy (Abhishek Bachchan) is a professional conman, who has raised his work to the level of an art. The only true thing he has is his love for Simmi (Priyanka Chopra) someone who is so rooted, honest and sincere, that he can't bring himself to tell her the reality of who he is. But when his past catches up with him, she cannot forgive him for the deceit their relationship is built on. He loses her forever. That's when Aditya Srivastav (Riteish Deshmukh) enters the picture. He is the counterpoint t","id":"19620","runtime":137,"imdbId":"tt0476527","version":71,"lastModified":"1301418583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/00f\/4bc9571c017a3c57fe02700f\/bluffmaster-mid.jpg","studio":"Entertainment One Pvt. Ltd.","genre":"Comedy","title":"Bluffmaster!","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"70853"} +{"label":"Nana Patekar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd7\/4d32aef27b9aa17af8004fd7\/nana-patekar-profile.jpg","version":35,"id":"84956","lastModified":"1301902369000","name":"Nana Patekar","type":"Person","_key":"70854"} +{"label":"The Hit","description":"Ex-gangster Willie Parker has betrayed his former \"colleagues\" and now lives in Spain where he thinks he can hide from their vengeance...","id":"19621","runtime":98,"imdbId":"tt0087414","trailer":"http:\/\/www.youtube.com\/watch?v=Vmty5rt-yF8","version":133,"lastModified":"1301902953000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/01d\/4bc95720017a3c57fe02701d\/the-hit-mid.jpg","studio":"Zenith Entertainment","genre":"Crime","title":"The Hit","releaseDate":454896000000,"language":"en","type":"Movie","_key":"70855"} +{"label":"Laura del Sol","version":20,"id":"103670","lastModified":"1301902984000","name":"Laura del Sol","type":"Person","_key":"70856"} +{"label":"First Man to the Moon","description":"No overview found.","id":"19622","runtime":0,"imdbId":"tt0144204","version":108,"lastModified":"1300980748000","title":"First Man to the Moon","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70857"} +{"label":"Drona","description":"No overview found.","id":"19623","runtime":150,"imdbId":"tt1060249","homepage":"drona.erosentertainment.com\/","version":51,"lastModified":"1301906135000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/026\/4bc95721017a3c57fe027026\/drona-mid.jpg","studio":"Eros Entertainment","genre":"Action","title":"Drona","releaseDate":1222905600000,"language":"en","type":"Movie","_key":"70858"} +{"label":"Fashion","description":"Fashion begins in, where aspiring model Meghna Mathur (Priyanka Chopra) expresses her wish to go to Mumbai and pursue her dream of becoming a supermodel. Through her eyes we see that behind the glitz and glamour of the world of fashion not everything is as it seems.","id":"19624","runtime":178,"imdbId":"tt0964516","homepage":"http:\/\/www.fashionthemovie.net\/","version":112,"lastModified":"1301904174000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03b\/4bc95722017a3c57fe02703b\/fashion-mid.jpg","studio":"UTV Motion Pictures","genre":"Drama","title":"Fashion","releaseDate":1225238400000,"language":"en","type":"Movie","_key":"70859"} +{"label":"Mugdha Godse","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13d\/4c4f22465e73d62ec200013d\/mugdha-godse-profile.jpg","version":25,"id":"85471","lastModified":"1301901708000","name":"Mugdha Godse","type":"Person","_key":"70860"} +{"label":"Arjan Bajwa","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0cd\/4d32be837b9aa17a450050cd\/arjan-bajwa-profile.jpg","version":21,"id":"85472","lastModified":"1301901635000","name":"Arjan Bajwa","type":"Person","_key":"70861"} +{"label":"Samir Soni","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/57d\/4d32be8a7b9aa177db00557d\/samir-soni-profile.jpg","version":24,"id":"85473","lastModified":"1301902151000","name":"Samir Soni","type":"Person","_key":"70862"} +{"label":"Ashwin Mushran","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/305\/4d32be5e7b9aa178ab005305\/ashwin-mushran-profile.jpg","version":23,"id":"85474","lastModified":"1301901808000","name":"Ashwin Mushran","type":"Person","_key":"70863"} +{"label":"Madhur Bhandarkar","version":22,"id":"92693","lastModified":"1301901946000","name":"Madhur Bhandarkar","type":"Person","_key":"70864"} +{"label":"Munna Bhai M.B.B.S.","description":"A gangster sets out to fulfill his father's dream of becoming a doctor.","id":"19625","runtime":135,"imdbId":"tt0374887","trailer":"http:\/\/www.youtube.com\/watch?v=8uX1qIE6Qks","version":97,"lastModified":"1301904004000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4bc95722017a3c57fe027048\/munna-bhai-m-b-b-s-mid.jpg","genre":"Comedy","title":"Munna Bhai M.B.B.S.","releaseDate":1071792000000,"language":"en","type":"Movie","_key":"70865"} +{"label":"Sanjay Dutt","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/606\/4d21a75b7b9aa12886000606\/sanjay-dutt-profile.jpg","version":52,"id":"85881","lastModified":"1301901454000","name":"Sanjay Dutt","type":"Person","_key":"70866"} +{"label":"Gracy Singh","version":20,"id":"85240","lastModified":"1301902452000","name":"Gracy Singh","type":"Person","_key":"70867"} +{"label":"Kurush Deboo","version":25,"id":"85972","lastModified":"1301903033000","name":"Kurush Deboo","type":"Person","_key":"70868"} +{"label":"Yatin Karyekar","version":21,"id":"85973","lastModified":"1301902627000","name":"Yatin Karyekar","type":"Person","_key":"70869"} +{"label":"Mumait Khan","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/336\/4d2234047b9aa17373003336\/mumait-khan-profile.jpg","version":22,"id":"85974","lastModified":"1301902211000","name":"Mumait Khan","type":"Person","_key":"70870"} +{"label":"Rajkumar Hirani","version":46,"id":"85675","lastModified":"1302136559000","name":"Rajkumar Hirani","type":"Person","_key":"70871"} +{"label":"Brian Regan: Epitome of Hyperbole","description":"Brian Regan's second Comedy Central Special premiered on September 6, 2008. A DVD of the performance was released September 9, 2008.","id":"19626","runtime":60,"imdbId":"tt1284973","version":79,"lastModified":"1301906595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/051\/4bc95723017a3c57fe027051\/brian-regan-epitome-of-hyperbole-mid.jpg","genre":"Comedy","title":"Brian Regan: Epitome of Hyperbole","releaseDate":1220745600000,"language":"en","type":"Movie","_key":"70872"} +{"label":"My Mighty Princess","description":"So-hwi is a martial arts prodigy and college student. Realizing that her superhuman strength is holding back her love life, she decides to quit martial arts to pursue handsome hockey player Joon-mo. But Joon-mo is in love with an older woman, and when So-hwi's mystical martial arts community comes under threat from an old enemy, Heuk-bong, her childhood friend Il-yeong must persuade her to return.","id":"19627","runtime":122,"imdbId":"tt0985101","version":89,"lastModified":"1302093996000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/623\/4d346b615e73d6334f007623\/mu-rim-yeo-dae-saeng-mid.jpg","genre":"Comedy","title":"My Mighty Princess","releaseDate":1214438400000,"language":"en","type":"Movie","_key":"70873"} +{"label":"Ju-wan On","version":20,"id":"84980","lastModified":"1301902235000","name":"Ju-wan On","type":"Person","_key":"70874"} +{"label":"Shin Min-A","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ccd\/4d33278c5e73d6334f001ccd\/shin-min-a-profile.jpg","version":17,"id":"150123","lastModified":"1301903083000","name":"Shin Min-A","type":"Person","_key":"70875"} +{"label":"Bas Ek Pal","description":"No overview found.","id":"19628","runtime":150,"imdbId":"tt0808164","version":58,"lastModified":"1301908632000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/071\/4bc95725017a3c57fe027071\/bas-ek-pal-mid.jpg","studio":"Sahara One Motion Pictures","genre":"Drama","title":"Bas Ek Pal","releaseDate":1158278400000,"language":"en","type":"Movie","_key":"70876"} +{"label":"Sanjay Suri","version":20,"id":"86074","lastModified":"1301902968000","name":"Sanjay Suri","type":"Person","_key":"70877"} +{"label":"Rehaan Engineer","version":19,"id":"86076","lastModified":"1301902968000","name":"Rehaan Engineer","type":"Person","_key":"70878"} +{"label":"Red Doors","description":"No overview found.","id":"19629","runtime":90,"imdbId":"tt0415234","version":224,"lastModified":"1302238321000","studio":"Time Warner","genre":"Comedy","title":"Red Doors","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70879"} +{"label":"Elaine Kao","version":17,"id":"117775","lastModified":"1301903061000","name":"Elaine Kao","type":"Person","_key":"70880"} +{"label":"Kathy Shao-Lin Lee","version":17,"id":"117776","lastModified":"1301902984000","name":"Kathy Shao-Lin Lee","type":"Person","_key":"70881"} +{"label":"Into the Faraway Sky","description":"A vast wheat field, a straight road that has no end, a sky without a single building in sight \u2013 this is a town in the country where time comfortably passes by. But this former paradise is now being stirred up by a fight amongst its people over constructing an airport. This is a tale of three young people exploring youth and friendship as they reach out into the sky.","id":"19630","runtime":145,"imdbId":"tt0872029","version":109,"lastModified":"1301908270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/07e\/4bc95729017a3c57fe02707e\/19630-mid.jpg","studio":"GAGA","genre":"Drama","title":"Into the Faraway Sky","releaseDate":1187395200000,"language":"en","type":"Movie","_key":"70882"} +{"label":"Isao Yukisada","version":25,"id":"84990","lastModified":"1301902009000","name":"Isao Yukisada","type":"Person","_key":"70883"} +{"label":"Yuma Sasano","version":20,"id":"84992","lastModified":"1301902235000","name":"Yuma Sasano","type":"Person","_key":"70884"} +{"label":"\ud2b8\ub7ed","description":"Cheol-min, who works in the shipping business, has a daughter suffering from a heart condition, and to save his daughter with surgery, he urgently needs 60M won. After getting trapped in illegal gambling, he escapes death by promising to dispose of some bodies for the gang. On his way, he encounters a police van that had been in an accident, and ends up giving the officer a ride...","id":"19631","runtime":96,"version":46,"lastModified":"1300980750000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/093\/4bc9572b017a3c57fe027093\/19631-mid.jpg","studio":"Sidus","genre":"Crime","title":"\ud2b8\ub7ed","releaseDate":1222300800000,"language":"en","type":"Movie","_key":"70885"} +{"label":"Hyeong-jin Kwon","version":16,"id":"84993","lastModified":"1301902627000","name":"Hyeong-jin Kwon","type":"Person","_key":"70886"} +{"label":"Hae-jin Yu","version":28,"id":"84996","lastModified":"1302139606000","name":"Hae-jin Yu","type":"Person","_key":"70887"} +{"label":"Jin Goo","version":15,"id":"84997","lastModified":"1301902627000","name":"Jin Goo","type":"Person","_key":"70888"} +{"label":"Far til Fire","description":"Danmarks popul\u00e6reste fi lmfamilie er p\u00e5 banen igen, i den f\u00f8rste rigtige Far til Fire-fi lm med Ib Sch\u00f8nberg som den lune, godmodige far til de fire herlige b\u00f8rn \u2013 med hjerte-knuseren Lille Per i spidsen. Til familien h\u00f8rer ogs\u00e5 den festlige Onkel Anders, forrygende spillet af Peter Malberg. Her er hygge, sjov og sp\u00e6nding for alle pengene. Ole har problemer i skolen og S\u00f8s f\u00f8ler hun m\u00e5 gribe ind\u2026","id":"19634","runtime":97,"imdbId":"tt0045750","version":33,"lastModified":"1301906145000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/09c\/4bc9572b017a3c57fe02709c\/far-til-fire-mid.jpg","studio":"SC Entertainment","title":"Far til Fire","releaseDate":-510105600000,"language":"en","type":"Movie","_key":"70889"} +{"label":"Ib Sch\u00f8nberg","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/b44\/4be55787017a3c35b5000b44\/ib-schnberg-profile.jpg","version":23,"id":"85001","lastModified":"1301901584000","name":"Ib Sch\u00f8nberg","type":"Person","_key":"70890"} +{"label":"Friend","description":"The film follows the lives of four childhood friends: Joon-seok, the leader, whose father is a powerful mob boss; Dong-su, whose father is an undertaker; class clown Jung-ho; and Sang-taek, an exemplary student. The story is the director's experience about his friends, a semi-autobiography set in his hometown, Busan. When it was released it was the highest-grossing Korean movie of all time.","id":"19635","runtime":118,"imdbId":"tt0281718","version":108,"lastModified":"1301418626000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0a5\/4bc9572c017a3c57fe0270a5\/19635-mid.jpg","studio":"Cineline 2","genre":"Crime","title":"Friend","releaseDate":985996800000,"language":"en","type":"Movie","_key":"70891"} +{"label":"Kyung-Taek Kwak","version":28,"id":"84998","lastModified":"1301902349000","name":"Kyung-Taek Kwak","type":"Person","_key":"70892"} +{"label":"Tae-hwa Seo","version":21,"id":"85000","lastModified":"1301902360000","name":"Tae-hwa Seo","type":"Person","_key":"70893"} +{"label":"Garam Masala","description":"No overview found.","id":"19636","runtime":142,"imdbId":"tt0453671","version":97,"lastModified":"1301418583000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0b2\/4bc9572d017a3c57fe0270b2\/garam-masala-mid.jpg","genre":"Comedy","title":"Garam Masala","releaseDate":1130976000000,"language":"en","type":"Movie","_key":"70894"} +{"label":"Neha Dhupia","version":20,"id":"86071","lastModified":"1301902680000","name":"Neha Dhupia","type":"Person","_key":"70895"} +{"label":"Daisy Bopanna","version":20,"id":"86072","lastModified":"1301902507000","name":"Daisy Bopanna","type":"Person","_key":"70896"} +{"label":"Nargis Bagheri","version":23,"id":"86073","lastModified":"1301902994000","name":"Nargis Bagheri","type":"Person","_key":"70897"} +{"label":"Chup Chup Ke","description":"A debt-ridden young man attempts suicide, but is rescued only to find that his luck is finally turning.","id":"19637","runtime":165,"imdbId":"tt0464160","version":204,"lastModified":"1301906602000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0bb\/4bc9572d017a3c57fe0270bb\/chup-chup-ke-mid.jpg","genre":"Comedy","title":"Chup Chup Ke","releaseDate":1149811200000,"language":"en","type":"Movie","_key":"70898"} +{"label":"Neha Dhupia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b5\/4d34c1425e73d6334f0093b5\/neha-dhupia-profile.jpg","version":28,"id":"86069","lastModified":"1301902202000","name":"Neha Dhupia","type":"Person","_key":"70899"} +{"label":"Shakti Kapoor","version":26,"id":"86017","lastModified":"1301902711000","name":"Shakti Kapoor","type":"Person","_key":"70900"} +{"label":"Amita Nangia","version":20,"id":"86070","lastModified":"1301902707000","name":"Amita Nangia","type":"Person","_key":"70901"} +{"label":"Far til Fire i sneen","description":"Ib Sch\u00f8nberg er atter den rare far - og nu k\u00e5res han til \"den ideelle trafikant\". Det betyder,at han kan tage alle sine fire b\u00f8rn med p\u00e5 vinterferie i Norge. Her muntrer Lille Per sig rigtigt i de norske snedriver, og det g\u00e5r ikke stille af, n\u00e5r den festlige familie indta\u2019r det pragtfulde snerige. B\u00e5de b\u00f8rn og voksne kan hygge sig med familien p\u00e5 alle tiders vinterferie.","id":"19639","runtime":90,"imdbId":"tt0046967","version":27,"lastModified":"1301417653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0c4\/4bc9572e017a3c57fe0270c4\/far-til-fire-i-sneen-mid.jpg","studio":"SC Entertainment","title":"Far til Fire i sneen","releaseDate":-478656000000,"language":"en","type":"Movie","_key":"70902"} +{"label":"Far til Fire med fuld musik","description":"Lille Per er kommet i skolealderen, og det er han bestemt ikke blevet kedeligere af. Han l\u00e6gger ud med at rise familien op fastelavnsmorgen. Og s\u00e5 er der ellers t\u00f8ndeslagning og fodbold p\u00e5 programmet. Lille Pers hold skal spille mod svenskerne. Men det danske hold er heldigvis godt rustet, for deres tr\u00e6ner er \"Mister\" - den store danske fodboldhelt Harald Nielsen. ","id":"19642","runtime":88,"imdbId":"tt0054868","version":36,"lastModified":"1301905696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ad\/4d1b5b9c5e73d6082e00b6ad\/far-til-fire-med-fuld-musik-mid.jpg","studio":"SC Entertainment","title":"Far til Fire med fuld musik","releaseDate":-253929600000,"language":"en","type":"Movie","_key":"70903"} +{"label":"Silmido","description":"On 31 January 1968, 31 North Korean commandos infiltrated South Korea in a failed mission to assassinate President Park Chung-hee. In revenge, the South Korean military assembled a team of 31 criminals on the island of Silmido to kill Kim Il-sung for a suicide mission to redeem their honor, but was cancelled, leaving them frustrated. It is loosely based on a military uprising in the 1970s.","id":"19644","runtime":135,"imdbId":"tt0387596","version":104,"lastModified":"1301906458000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1eb\/4cefd0a27b9aa13b9d0001eb\/silmido-mid.jpg","studio":"Cinema Service","genre":"Action","title":"Silmido","releaseDate":1072224000000,"language":"en","type":"Movie","_key":"70904"} +{"label":"Woo-Suk Kang","version":24,"id":"85006","lastModified":"1301902489000","name":"Woo-Suk Kang","type":"Person","_key":"70905"} +{"label":"Kyung-gu Sol","version":28,"id":"85008","lastModified":"1301902489000","name":"Kyung-gu Sol","type":"Person","_key":"70906"} +{"label":"Far til Fire p\u00e5 landet","description":"Her er hygge, sjov og sp\u00e6nding for alle pengene. Ole har problemer i skolen og S\u00f8s f\u00f8ler hun m\u00e5 gribe ind? Det f\u00e5r bare alvorlige f\u00f8lger for b\u00e5de hende og Ole, s\u00e5 hvordan skal det dog ende?\r\n","id":"19645","runtime":97,"imdbId":"tt0048058","version":27,"lastModified":"1301908466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0ec\/4bc95733017a3c57fe0270ec\/far-til-fire-pa-landet-mid.jpg","studio":"SC Entertainment","title":"Far til Fire p\u00e5 landet","releaseDate":-446601600000,"language":"en","type":"Movie","_key":"70907"} +{"label":"Far til Fire julebal i nisseland","description":"Lille Per skal i skole efter ferien, s\u00e5 sidste dag i \u201cfriheden\u201d tager den hyggelige, enlige far sine b\u00f8rn med i Tivoli. Onkel Anders er naturligvis ogs\u00e5 med til den festlige udflugt. Skolegangen giver imidlertid problemer for Mie, men vores allesammens frejdige Lille Per f\u00e5r sig en alvorlig snak med rektor og ordner paragrafferne. S\u00f8s\u2019 k\u00e6rlighed lider ogs\u00e5 - for en stund.","id":"19647","runtime":95,"imdbId":"tt0049200","version":25,"lastModified":"1301908578000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0f5\/4bc95734017a3c57fe0270f5\/far-til-fire-julebal-i-nisseland-mid.jpg","studio":"SC Entertainment","title":"Far til Fire julebal i nisseland","releaseDate":-414547200000,"language":"en","type":"Movie","_key":"70908"} +{"label":"Far til Fire og onkel Sofus","description":"Hjemme i den lille familie er alt ved det gamle. Lille Per er skolens spilopmager, S\u00f8s har k\u00e6restesorger, Mie og Ole skal v\u00e6re med i skolekomedien o.s.v. Men pludselig sker der noget. Go?e gamle Onkel Anders har en tvillingebror i USA. Han hedder Sofus, og nu kommer han hjem for at fejre 70 \u00e5rs-f\u00f8dselsdag. Han var en kv\u00e6rulant, da han rejste. Og nu er han blevet endnu v\u00e6rre.","id":"19648","runtime":100,"imdbId":"tt0050377","version":30,"lastModified":"1301906737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fe\/4bc95735017a3c57fe0270fe\/far-til-fire-og-onkel-sofus-mid.jpg","studio":"SC Entertainment","title":"Far til Fire og onkel Sofus","releaseDate":-381888000000,"language":"en","type":"Movie","_key":"70909"} +{"label":"Far til Fire og ulveungerne","description":"Lille Per f\u00e5r sit st\u00f8rste \u00f8nske opfyldt: Han bliver ulveunge. S\u00f8s f\u00e5r ogs\u00e5 sit st\u00f8rste \u00f8nske opfyldt: Hun skal giftes. S\u00e5 nu m\u00e5 Mie overtage husholdningen. Det kommer ikke til at g\u00e5 stille for sig. Hun herser med Ole og Per. Lille Per?s oplevelser p\u00e5 ulveunge-lejren er meget dramatiske. F\u00f8rst hj\u00e6lper han en s\u00f8d pige og hendes fattige bedstefar, s\u00e5 de kan beholde deres hest. ","id":"19649","runtime":90,"imdbId":"tt0051603","version":27,"lastModified":"1301906166000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/107\/4bc95736017a3c57fe027107\/far-til-fire-og-ulveungerne-mid.jpg","studio":"SC Entertainment","title":"Far til Fire og ulveungerne","releaseDate":-351648000000,"language":"en","type":"Movie","_key":"70910"} +{"label":"Far til Fire p\u00e5 Bornholm","description":"Den popul\u00e6re danske familie er p\u00e5 ferie p\u00e5 Bornholm. Desv\u00e6rre har de ikke kunnet f\u00e5 hotelv\u00e6relser, men Lille Per, der altid er snarr\u00e5dig, har fundet p\u00e5, at de skal sove i telt.Far og onkel Anders er ikke helt begejstrede for id\u00e9en, men der er ikke andet at g\u00f8re...Og det kan nok v\u00e6re, det f\u00f8rer mange sk\u00f8re oplevelser med sig. Lille Per f\u00e5r en ny ven, Torben - hvad mon de finder p\u00e5?","id":"19650","runtime":100,"imdbId":"tt0052796","version":27,"lastModified":"1301906167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/110\/4bc95737017a3c57fe027110\/far-til-fire-pa-bornholm-mid.jpg","studio":"SC Entertainment","title":"Far til Fire p\u00e5 Bornholm","releaseDate":-316137600000,"language":"en","type":"Movie","_key":"70911"} +{"label":"Far til Fire i h\u00f8jt hum\u00f8r","description":"Onkel Anders og Lille Per har i en konkurrence vundet en campingvogn. Det er sommerferie, og vores familie drager i h\u00f8jt hum\u00f8r af sted til Jylland med deres lille ?hjem? p\u00e5 sl\u00e6b efter bilen. En morgen opdager de, at Cirkus Benneweis er ved at sl\u00e5 teltene op t\u00e6t ved campingpladsen. De g\u00e5r derned, og selveste cirkusdirekt\u00f8ren kommer hen til dem.","id":"19651","runtime":96,"imdbId":"tt0124533","version":26,"lastModified":"1301906131000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/119\/4bc95737017a3c57fe027119\/far-til-fire-i-hjt-humr-mid.jpg","studio":"SC Entertainment","title":"Far til Fire i h\u00f8jt hum\u00f8r","releaseDate":50889600000,"language":"en","type":"Movie","_key":"70912"} +{"label":"L'Homme que j'aime","description":"No overview found.","id":"19654","runtime":87,"imdbId":"tt0173906","version":54,"lastModified":"1301906595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/11e\/4bc95738017a3c57fe02711e\/l-homme-que-j-aime-mid.jpg","title":"L'Homme que j'aime","releaseDate":881280000000,"language":"en","type":"Movie","_key":"70913"} +{"label":"St\u00e9phane Giusti","version":22,"id":"85013","lastModified":"1301902235000","name":"St\u00e9phane Giusti","type":"Person","_key":"70914"} +{"label":"Jean-Michel Portal","version":22,"id":"85015","lastModified":"1301902235000","name":"Jean-Michel Portal","type":"Person","_key":"70915"} +{"label":"Marcial Di Fonzo Bo","version":19,"id":"85016","lastModified":"1301902235000","name":"Marcial Di Fonzo Bo","type":"Person","_key":"70916"} +{"label":"Vittoria Scognamiglio","version":20,"id":"85017","lastModified":"1301902627000","name":"Vittoria Scognamiglio","type":"Person","_key":"70917"} +{"label":"Jacques Hansen","version":19,"id":"85018","lastModified":"1301902627000","name":"Jacques Hansen","type":"Person","_key":"70918"} +{"label":"St\u00e9phane L\u00e9v\u00eaque","version":19,"id":"85019","lastModified":"1301902627000","name":"St\u00e9phane L\u00e9v\u00eaque","type":"Person","_key":"70919"} +{"label":"Karim Lounis","version":19,"id":"85020","lastModified":"1301902627000","name":"Karim Lounis","type":"Person","_key":"70920"} +{"label":"Bruno Bonomo","version":19,"id":"85021","lastModified":"1301902627000","name":"Bruno Bonomo","type":"Person","_key":"70921"} +{"label":"Benjamin Sanchiarelli","version":19,"id":"85022","lastModified":"1301902627000","name":"Benjamin Sanchiarelli","type":"Person","_key":"70922"} +{"label":"Serguei Tourountsev","version":19,"id":"85023","lastModified":"1301902235000","name":"Serguei Tourountsev","type":"Person","_key":"70923"} +{"label":"Nedjib Djebarri","version":19,"id":"85024","lastModified":"1301902627000","name":"Nedjib Djebarri","type":"Person","_key":"70924"} +{"label":"Louis Philippe Lopez","version":19,"id":"85025","lastModified":"1301902627000","name":"Louis Philippe Lopez","type":"Person","_key":"70925"} +{"label":"Elisabeth Giusti","version":19,"id":"85026","lastModified":"1301902627000","name":"Elisabeth Giusti","type":"Person","_key":"70926"} +{"label":"Pain of Salvation - Be Live","description":"No overview found.","id":"19656","runtime":0,"version":172,"lastModified":"1300980752000","title":"Pain of Salvation - Be Live","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"70927"} +{"label":"Baazigar","description":"No overview found.","id":"19657","runtime":181,"imdbId":"tt0106333","version":106,"lastModified":"1301906161000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/12b\/4bc95739017a3c57fe02712b\/baazigar-mid.jpg","studio":"Eros Entertainment","title":"Baazigar","releaseDate":753062400000,"language":"en","type":"Movie","_key":"70928"} +{"label":"Rakhee Gulzar","version":22,"id":"86061","lastModified":"1301902420000","name":"Rakhee Gulzar","type":"Person","_key":"70929"} +{"label":"Anant Mahadevan","version":22,"id":"86062","lastModified":"1301902883000","name":"Anant Mahadevan","type":"Person","_key":"70930"} +{"label":"Sushant Ray","version":18,"id":"86063","lastModified":"1301902627000","name":"Sushant Ray","type":"Person","_key":"70931"} +{"label":"Dinesh Hingoo","version":23,"id":"86057","lastModified":"1301902235000","name":"Dinesh Hingoo","type":"Person","_key":"70932"} +{"label":"Abbas Alibhai Burmawalla","version":26,"id":"87356","lastModified":"1301901606000","name":"Abbas Alibhai Burmawalla","type":"Person","_key":"70933"} +{"label":"Mastan Alibhai Burmawalla","version":26,"id":"87355","lastModified":"1301902223000","name":"Mastan Alibhai Burmawalla","type":"Person","_key":"70934"} +{"label":"Race","description":"Ranvir and Rajiv are half brothers who own a huge stud farm in South Africa. Ranvir is a very shrewd and aggressive man while Rajiv is laid back, and a chronic alcoholic. Sophia, Ranvir's personal secretary adores and loves him. Ranvir is unaware of her feelings. Shaina, an Indian ramp model in Durban loves Ranvir but through a twist of fate gets married to his younger brother Rajiv. When she discovers that Rajiv is a chronic alcoholic, her world is shattered. Ranvir too is disturbed as he has s","id":"19658","runtime":161,"imdbId":"tt1017456","homepage":"http:\/\/www.race.tips.in\/","version":366,"lastModified":"1301906826000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/138\/4bc9573a017a3c57fe027138\/race-mid.jpg","studio":"UTV Motion Pictures","genre":"Thriller","title":"Race","releaseDate":1205971200000,"language":"en","type":"Movie","_key":"70935"} +{"label":"Sameera Reddy","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3bd\/4d34ba485e73d633560093bd\/sameera-reddy-profile.jpg","version":26,"id":"85041","lastModified":"1301902187000","name":"Sameera Reddy","type":"Person","_key":"70936"} +{"label":"Yamato","description":"Directed by Junya Sato and based on a book by Jun Henmi, \"Yamato\" has a framing story set in the present day and uses flashbacks to tell the story of the crew of the World War II Japanese battleship Yamato. The film was never released in the United States, where reviewers who have seen it have compared the military epic to \"Titanic\" and \"Saving Private Ryan.\"","id":"19659","runtime":145,"imdbId":"tt0451845","version":196,"lastModified":"1301908411000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/145\/4bc9573b017a3c57fe027145\/19659-mid.jpg","studio":"Asahi Shimbunsha","genre":"History","title":"Yamato","releaseDate":1134777600000,"language":"en","type":"Movie","_key":"70937"} +{"label":"Jun'ya Sat\u00f4","version":19,"id":"85028","lastModified":"1301901851000","name":"Jun'ya Sat\u00f4","type":"Person","_key":"70938"} +{"label":"Mirage","description":"No overview found.","id":"19661","runtime":108,"imdbId":"tt0059448","version":69,"lastModified":"1301903854000","genre":"Mystery","title":"Mirage","releaseDate":-131760000000,"language":"en","type":"Movie","_key":"70939"} +{"label":"The World of Henry Orient","description":"No overview found.","id":"19662","runtime":106,"imdbId":"tt0058756","trailer":"http:\/\/www.youtube.com\/watch?v=xVUPxRC3ExU","version":127,"lastModified":"1301906498000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42c\/4d0a47507b9aa162bb00042c\/the-world-of-henry-orient-mid.jpg","genre":"Comedy","title":"The World of Henry Orient","releaseDate":-140227200000,"language":"en","type":"Movie","_key":"70940"} +{"label":"Merrie Spaeth","version":19,"id":"85043","lastModified":"1301902627000","name":"Merrie Spaeth","type":"Person","_key":"70941"} +{"label":"Tippy Walker","version":19,"id":"85044","lastModified":"1301902452000","name":"Tippy Walker","type":"Person","_key":"70942"} +{"label":"Love Aaj Kal","description":"Is love today different from what it was in the past when lovers like Laila-Majnu or Romeo-Juliet perished in each other\u2019s arms? Today, in the age of online romance and one-night stands, many would say love is just a whirlwind. But no! \u2018Love Aaj Kal\u2019 will have you believe that certain things don\u2019t change with the passage of time. ","id":"19663","runtime":131,"imdbId":"tt1275863","trailer":"http:\/\/www.youtube.com\/watch?v=M8pWvwzbDQo","homepage":"http:\/\/loveaajkal-illuminatifilms.erosentertainment.com","version":383,"lastModified":"1301905454000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/156\/4bc9573f017a3c57fe027156\/love-aaj-kal-mid.jpg","studio":"Eros Entertainment","genre":"Comedy","title":"Love Aaj Kal","releaseDate":1248998400000,"language":"en","type":"Movie","_key":"70943"} +{"label":"Giselle Monteiro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0ca\/4d34a5a15e73d633490090ca\/giselle-monteiro-profile.jpg","version":15,"id":"150460","lastModified":"1301903122000","name":"Giselle Monteiro","type":"Person","_key":"70944"} +{"label":"Rajendranath Zutshi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d1\/4d34a5ab5e73d633490090d1\/rajendranath-zutshi-profile.jpg","version":20,"id":"129727","lastModified":"1301902422000","name":"Rajendranath Zutshi","type":"Person","_key":"70945"} +{"label":"The Sea Wolves","description":"This true story follows the exploits of a top secret British military mission to destroy Nazi radio ships in a neutral harbor during WWII. The daring plan is led by British Intelligence officers Col. Lewis Pugh (Gregory Peck) and Capt. Gavin Stewart (Roger Moore). Since the ships are in neutral territory the British Military command, while encouraging the scheme, must deny any knowledge of it if it fails. Pugh & Stewart enlist the aid of retired officer Col. Bill Grice (David Niven) & some of hi","id":"19664","runtime":120,"imdbId":"tt0081470","version":220,"lastModified":"1301907987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/082\/4c8a0ffd5e73d67c47000082\/the-sea-wolves-mid.jpg","title":"The Sea Wolves","releaseDate":360547200000,"language":"en","tagline":"The Last Charge of the Calcutta Light Horse","type":"Movie","_key":"70946"} +{"label":"The Arrow","description":"This series tells the story of the world's fastest fighter plane ever built, in 1950's Canada, and how the project was dropped due to political pressure from the United States.","id":"19665","runtime":0,"imdbId":"tt0118641","version":199,"lastModified":"1301440474000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2f2\/4c281b455e73d61a950002f2\/the-arrow-mid.jpg","title":"The Arrow","releaseDate":853027200000,"language":"en","type":"Movie","_key":"70947"} +{"label":"Jonathan Whittaker","version":22,"id":"85928","lastModified":"1301902727000","name":"Jonathan Whittaker","type":"Person","_key":"70948"} +{"label":"Ian D. Clark","version":21,"id":"44235","lastModified":"1301901994000","name":"Ian D. Clark","type":"Person","_key":"70949"} +{"label":"Catherine Fitch","version":20,"id":"123301","lastModified":"1301903081000","name":"Catherine Fitch","type":"Person","_key":"70950"} +{"label":"Robert Haley","version":20,"id":"123302","lastModified":"1301903046000","name":"Robert Haley","type":"Person","_key":"70951"} +{"label":"Mauralea Austin","version":20,"id":"123303","lastModified":"1301903062000","name":"Mauralea Austin","type":"Person","_key":"70952"} +{"label":"Colette Stevenson","version":20,"id":"123304","lastModified":"1301903046000","name":"Colette Stevenson","type":"Person","_key":"70953"} +{"label":"Lynne Cormack","version":20,"id":"123305","lastModified":"1301903044000","name":"Lynne Cormack","type":"Person","_key":"70954"} +{"label":"Vernon Chapman","version":25,"id":"123306","lastModified":"1301903047000","name":"Vernon Chapman","type":"Person","_key":"70955"} +{"label":"John Nelles","version":20,"id":"123307","lastModified":"1301902907000","name":"John Nelles","type":"Person","_key":"70956"} +{"label":"John Bekavac","version":20,"id":"123308","lastModified":"1301903047000","name":"John Bekavac","type":"Person","_key":"70957"} +{"label":"Walter High","version":20,"id":"123309","lastModified":"1301903072000","name":"Walter High","type":"Person","_key":"70958"} +{"label":"Wilfrid Bray","version":20,"id":"123310","lastModified":"1301903075000","name":"Wilfrid Bray","type":"Person","_key":"70959"} +{"label":"Lora Schroeder","version":20,"id":"123311","lastModified":"1301903081000","name":"Lora Schroeder","type":"Person","_key":"70960"} +{"label":"Lagaan: Once Upon A Time In India","description":"LAGAAN... a story of extraordinary circumstances thrust upon ordinary people. Adversity faced with fortitude and injustice with dignity. There is slowly awakening pride, the grit and determination of a people who have everything to lose. Faith and courage come face to face with arrogance and ruthlessness.","id":"19666","runtime":224,"imdbId":"tt0169102","trailer":"http:\/\/www.youtube.com\/watch?v=PZrNZuvBxp8","homepage":"www.lagaan.com","version":220,"lastModified":"1301902459000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/178\/4bc95742017a3c57fe027178\/lagaan-once-upon-a-time-in-india-mid.jpg","studio":"Aamir Khan Productions","genre":"Eastern","title":"Lagaan: Once Upon A Time In India","releaseDate":992563200000,"language":"en","type":"Movie","_key":"70961"} +{"label":"Suhasini Mulay","version":17,"id":"110708","lastModified":"1301902213000","name":"Suhasini Mulay","type":"Person","_key":"70962"} +{"label":"Rajesh Vivek","version":20,"id":"129726","lastModified":"1301902422000","name":"Rajesh Vivek","type":"Person","_key":"70963"} +{"label":"Pradeep Singh Rawat","version":18,"id":"129728","lastModified":"1301902412000","name":"Pradeep Singh Rawat","type":"Person","_key":"70964"} +{"label":"Daya Shankar Pandey","version":18,"id":"129729","lastModified":"1301902750000","name":"Daya Shankar Pandey","type":"Person","_key":"70965"} +{"label":"Shri Vallabh Vyas","version":18,"id":"89149","lastModified":"1301902561000","name":"Shri Vallabh Vyas","type":"Person","_key":"70966"} +{"label":"Amin Hajee","version":19,"id":"129730","lastModified":"1301902224000","name":"Amin Hajee","type":"Person","_key":"70967"} +{"label":"Aditya Lakhia","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/37e\/4d34c1375e73d6334900937e\/aditya-lakhia-profile.jpg","version":22,"id":"86560","lastModified":"1301902881000","name":"Aditya Lakhia","type":"Person","_key":"70968"} +{"label":"Javed Khan","version":20,"id":"129731","lastModified":"1301902412000","name":"Javed Khan","type":"Person","_key":"70969"} +{"label":"Chamku","description":"Bobby plays the good guy out to get Irrfan, who plays a terrorist. It is Bobby's journey to reach Irrfan in which he encounters various characters that end up changing his life and motive.","id":"19667","runtime":150,"imdbId":"tt1266545","version":263,"lastModified":"1301908270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/185\/4bc95743017a3c57fe027185\/chumku-mid.jpg","studio":"Vijayta Films Pvt. Ltd.","genre":"Romance","title":"Chamku","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"70970"} +{"label":"Kabeer Kaushik","version":23,"id":"85725","lastModified":"1301902452000","name":"Kabeer Kaushik","type":"Person","_key":"70971"} +{"label":"Jai Veeru","description":"No overview found.","id":"19668","runtime":160,"imdbId":"tt1369669","version":80,"lastModified":"1301421133000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/18e\/4bc95743017a3c57fe02718e\/jai-veeru-mid.jpg","studio":"Siddhi Vinayak Movies","genre":"Drama","title":"Jai Veeru","releaseDate":1236902400000,"language":"en","type":"Movie","_key":"70972"} +{"label":"Kidnap","description":"No overview found.","id":"19669","runtime":165,"imdbId":"tt1034449","version":114,"lastModified":"1301440060000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/197\/4bc95744017a3c57fe027197\/kidnap-mid.jpg","studio":"Shree Ashtavinayak Cinevision Ltd","genre":"Thriller","title":"Kidnap","releaseDate":1222905600000,"language":"en","type":"Movie","_key":"70973"} +{"label":"Sheela David","version":18,"id":"86067","lastModified":"1301902709000","name":"Sheela David","type":"Person","_key":"70974"} +{"label":"Rushita Pandya","version":18,"id":"86068","lastModified":"1301902704000","name":"Rushita Pandya","type":"Person","_key":"70975"} +{"label":"Golmaal","description":"Gopal, Lucky, Madhav and Laxman - four guys bound together by their child-like notoriety, aimlessness and petty business of conning people for fun and money. Laxman is an intelligent student who is not allowed to pass by his mischievous band of friends Gopal, Madhav and mute Lucky. This is because all four friends use his hostel room to conduct their activities. He is peer-pressured into running a series of scams in order to earn himself and his friends some money. Once thrown out of college bag","id":"19670","runtime":140,"imdbId":"tt0495034","trailer":"http:\/\/www.youtube.com\/watch?v=PuaSRarn67k","version":169,"lastModified":"1301905534000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ad\/4bc95749017a3c57fe0271ad\/golmaal-fun-unlimited-mid.jpg","studio":"Shree Ashtavinayak Cinevision Ltd","genre":"Comedy","title":"Golmaal","releaseDate":1152835200000,"language":"en","tagline":"Fun Unlimited","type":"Movie","_key":"70976"} +{"label":"Farid Amiri","version":21,"id":"86065","lastModified":"1301902883000","name":"Farid Amiri","type":"Person","_key":"70977"} +{"label":"Ugly Aur Pagli","description":"It is a story of Kabir, a carefree guy who has been studying engineering for the last ten years now, whose life goes for a sixer when he meets the quirky and kinky Kuhu.\nKabir always wanted a girl to love but he never in his wildest dreams thought he would encounter a girl who could make him dance around circles, run around naked, ride cycles without seats, wear high heels, and many other things","id":"19671","runtime":117,"imdbId":"tt1132606","homepage":"http:\/\/www.uglyaurpagli.com\/","version":264,"lastModified":"1302217900000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ba\/4bc9574a017a3c57fe0271ba\/ugly-aur-pagli-mid.jpg","studio":"Percept Picture Company","genre":"Romance","title":"Ugly Aur Pagli","releaseDate":1217548800000,"language":"en","type":"Movie","_key":"70978"} +{"label":"Tinnu Anand","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b0\/4d2a2eba5e73d626ac0038b0\/tinnu-anand-profile.jpg","version":23,"id":"85733","lastModified":"1301902248000","name":"Tinnu Anand","type":"Person","_key":"70979"} +{"label":"Rock On!!","description":"No overview found.","id":"19672","runtime":145,"imdbId":"tt1230165","homepage":"http:\/\/rockon.bigadda.com\/","version":133,"lastModified":"1302237396000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1cf\/4bc9574c017a3c57fe0271cf\/rock-on-mid.jpg","studio":"Excel Entertainment","genre":"Drama","title":"Rock On!!","releaseDate":1219968000000,"language":"en","type":"Movie","_key":"70980"} +{"label":"Purab Kohli","version":24,"id":"85574","lastModified":"1301901776000","name":"Purab Kohli","type":"Person","_key":"70981"} +{"label":"Luke Kenny","version":24,"id":"85575","lastModified":"1301902523000","name":"Luke Kenny","type":"Person","_key":"70982"} +{"label":"Prachi Desai","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b3\/4d223d927b9aa173730033b3\/prachi-desai-profile.jpg","version":28,"id":"85576","lastModified":"1301901844000","name":"Prachi Desai","type":"Person","_key":"70983"} +{"label":"Shahana Goswami","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/af2\/4d237e247b9aa1289f001af2\/shahana-goswami-profile.jpg","version":30,"id":"85577","lastModified":"1301901526000","name":"Shahana Goswami","type":"Person","_key":"70984"} +{"label":"Koel Purie","version":21,"id":"85578","lastModified":"1301902627000","name":"Koel Purie","type":"Person","_key":"70985"} +{"label":"Nicolette Bird","version":23,"id":"85579","lastModified":"1301902627000","name":"Nicolette Bird","type":"Person","_key":"70986"} +{"label":"Abhishek Kapoor","version":29,"id":"85585","lastModified":"1301902508000","name":"Abhishek Kapoor","type":"Person","_key":"70987"} +{"label":"Seksmisja","description":"Akcja filmu rozpoczyna si\u0119 w sierpniu 1991 roku. Telewizja transmituje epokowy eksperyment. Maks i Albert, dwaj \u015bmia\u0142kowie, dobrowolnie poddaj\u0105 si\u0119 hibernacji. Budz\u0105 si\u0119 dopiero w roku 2044. Od opiekuj\u0105cej si\u0119 nimi doktor Lamii dowiaduj\u0105 si\u0119, \u017ce w czasie ich snu wybuch\u0142a na Ziemi wojna nuklearna. Jednym z jej efekt\u00f3w by\u0142o ca\u0142kowite zniszczenie gen\u00f3w m\u0119skich","id":"19673","runtime":117,"imdbId":"tt0088083","trailer":"http:\/\/www.youtube.com\/watch?v=1851","version":117,"lastModified":"1301904330000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1ec\/4bc9574d017a3c57fe0271ec\/seksmisja-mid.jpg","genre":"Comedy","title":"Seksmisja","releaseDate":453340800000,"language":"en","type":"Movie","_key":"70988"} +{"label":"Bozena Stryjk\u00f3wna","version":18,"id":"87233","lastModified":"1301902510000","name":"Bozena Stryjk\u00f3wna","type":"Person","_key":"70989"} +{"label":"Boguslawa Pawelec","version":18,"id":"87234","lastModified":"1301902998000","name":"Boguslawa Pawelec","type":"Person","_key":"70990"} +{"label":"Wieslaw Michnikowski","version":18,"id":"87236","lastModified":"1301902998000","name":"Wieslaw Michnikowski","type":"Person","_key":"70991"} +{"label":"Hanna Stank\u00f3wna","version":20,"id":"87235","lastModified":"1301902998000","name":"Hanna Stank\u00f3wna","type":"Person","_key":"70992"} +{"label":"Juliusz Machulski","version":19,"id":"107639","lastModified":"1301902478000","name":"Juliusz Machulski","type":"Person","_key":"70993"} +{"label":"Pretty Cool Too","description":"No overview found.","id":"19675","runtime":88,"imdbId":"tt0496373","version":262,"lastModified":"1301906595000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1f6\/4bc95751017a3c57fe0271f6\/pretty-cool-too-mid.jpg","genre":"Comedy","title":"Pretty Cool Too","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"70994"} +{"label":"Rolfe Kanefsky","version":38,"id":"63772","lastModified":"1301901316000","name":"Rolfe Kanefsky","type":"Person","_key":"70995"} +{"label":"Eric Fagundes","version":19,"id":"89974","lastModified":"1301902627000","name":"Eric Fagundes","type":"Person","_key":"70996"} +{"label":"Brandi Williams","version":19,"id":"89975","lastModified":"1301902627000","name":"Brandi Williams","type":"Person","_key":"70997"} +{"label":"Valerie Carpenter","version":19,"id":"89976","lastModified":"1301902452000","name":"Valerie Carpenter","type":"Person","_key":"70998"} +{"label":"Melissa Messinger","version":19,"id":"89977","lastModified":"1301902452000","name":"Melissa Messinger","type":"Person","_key":"70999"} +{"label":"Trina Shpur","version":19,"id":"89978","lastModified":"1301902627000","name":"Trina Shpur","type":"Person","_key":"71000"} +{"label":"James Ferris","version":19,"id":"89979","lastModified":"1301902627000","name":"James Ferris","type":"Person","_key":"71001"} +{"label":"Angela Dodson","version":19,"id":"89980","lastModified":"1301902235000","name":"Angela Dodson","type":"Person","_key":"71002"} +{"label":"Joy Giovanni","version":16,"id":"106887","lastModified":"1301902626000","name":"Joy Giovanni","type":"Person","_key":"71003"} +{"label":"Eric Spudic","version":23,"id":"98909","lastModified":"1301901945000","name":"Eric Spudic","type":"Person","_key":"71004"} +{"label":"These Girls","description":"Based on the humorously edgy play by Vivienne Laxdal, These Girls is the story of three teenage girls who, in turn, seduce and then attempt to share Keith, an older married man. It is a tale of innocence, jealousy and friendship told as a provocative coming-of-age story.","id":"19676","runtime":92,"imdbId":"tt0439008","version":250,"lastModified":"1302124238000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/1fb\/4bc95751017a3c57fe0271fb\/these-girls-mid.jpg","genre":"Comedy","title":"These Girls","releaseDate":1126310400000,"language":"en","type":"Movie","_key":"71005"} +{"label":"Holly Lewis","version":19,"id":"85075","lastModified":"1301902674000","name":"Holly Lewis","type":"Person","_key":"71006"} +{"label":"John Hazlett","version":19,"id":"85076","lastModified":"1301902500000","name":"John Hazlett","type":"Person","_key":"71007"} +{"label":"Pride Bushido 8","description":"Pride Bushido 8 was a mixed martial arts event held by Pride Fighting Championships. It took place at the Nagoya Rainbow Hall in Nagoya, Japan on July 17, 2005. Under BUSHIDO rules, matches are 2 rounds only.","id":"19682","runtime":0,"version":65,"lastModified":"1301228096000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/032\/4d65fadf7b9aa1297e002032\/pride-bushido-8-mid.jpg","title":"Pride Bushido 8","releaseDate":1121558400000,"language":"en","type":"Movie","_key":"71008"} +{"label":"Middle of Nowhere","description":"The film follows Grace (Amurri), a young woman whose irresponsible mother (Sarandon) blows her college fund on her younger sister's beauty pageant campaign","id":"19688","runtime":95,"imdbId":"tt1032817","version":186,"lastModified":"1301907085000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/204\/4bc95752017a3c57fe027204\/middle-of-nowhere-mid.jpg","genre":"Comedy","title":"Middle of Nowhere","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"71009"} +{"label":"Pride Bushido 8","description":"No overview found.","id":"19691","runtime":0,"version":66,"lastModified":"1302214556000","title":"Pride Bushido 8","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71010"} +{"label":"Far til Fire","description":"Far til fire er et f\u00e6nomen i dansk familieunderholdning - oprindelig en tegneserie, siden en filmserie, en r\u00e6kke b\u00f8ger og senest en teaterforestilling.\nI alle varianter handler Far til fire om en familie, best\u00e5ende af en far og hans fire b\u00f8rn: stores\u00f8steren S\u00f8s, tvillingerne Ole og Mie samt lillebroderen Lille Per.","id":"19692","homepage":"http:\/\/www.fartilfire.dk\/","version":37,"lastModified":"1301905824000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/20d\/4bc95752017a3c57fe02720d\/far-til-fire-mid.jpg","title":"Far til Fire","language":"en","type":"Movie","_key":"71011"} +{"label":"Porky's II: The Next Day","description":"When the students of Angel Beach High decide to stage \"An Evening With Shakespeare,\" their efforts are threatened by Miss Balbricker, who views the works of Shakespeare as obscene. She enlists the help of Reverend Bubba Flavel, a religious fanatic who brings along his flock of followers to pressure the school into shutting down the production.","id":"19698","runtime":98,"imdbId":"tt0086129","version":134,"lastModified":"1301904919000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/216\/4bc95753017a3c57fe027216\/porky-s-ii-the-next-day-mid.jpg","studio":"Twentieth Century Fox Film Corporation","genre":"Comedy","title":"Porky's II: The Next Day","releaseDate":425260800000,"language":"en","type":"Movie","_key":"71012"} +{"label":"Rejseholdet 1-4","description":"Episode 1: Assistancemelding A-15\/99 - \r\nEpisode 2: Assistancemelding A-21\/99, del 1 - \r\nEpisode 3: Assistancemelding A-21\/99, del 2 - \r\nEpisode 4: Assistancemelding A-6\/00\r\n\r\n","id":"19699","runtime":228,"imdbId":"tt0220261","version":31,"lastModified":"1301107616000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/224\/4bc95754017a3c57fe027224\/rejseholdet-1-4-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 1-4","releaseDate":970358400000,"language":"en","type":"Movie","_key":"71013"} +{"label":"Rejseholdet 5-7","description":"Episode 5: Assistancemelding A-11\/00 - \r\nEpisode 6: Assistancemelding A-15\/00 - \r\nEpisode 7: Assistancemelding A-17\/00\r\n\r\n\r\n \r\n","id":"19700","runtime":167,"imdbId":"tt0220261","version":28,"lastModified":"1301107571000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/22d\/4bc95755017a3c57fe02722d\/rejseholdet-5-7-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 5-7","releaseDate":972777600000,"language":"en","type":"Movie","_key":"71014"} +{"label":"Rejseholdet 8-10","description":"Episode 8: Assistancemelding A-19\/00, del 1 - \r\nEpisode 9: Assistancemelding A-19\/00, del 2 - \r\nEpisode 10: Assistancemelding A-24\/00\r\n","id":"19701","runtime":172,"imdbId":"tt0220261","version":26,"lastModified":"1301107481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/236\/4bc95755017a3c57fe027236\/rejseholdet-8-10-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 8-10","releaseDate":974592000000,"language":"en","type":"Movie","_key":"71015"} +{"label":"Rejseholdet 11-13","description":"Episode 11: Assistancemelding A-25\/00\r\nEpisode 12: Assistancemelding A-26\/00\r\nEpisode 13: Assistancemelding A-28\/00\r\n","id":"19702","runtime":171,"imdbId":"tt0220261","version":24,"lastModified":"1300980757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/23f\/4bc95756017a3c57fe02723f\/rejseholdet-11-13-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 11-13","releaseDate":984873600000,"language":"en","type":"Movie","_key":"71016"} +{"label":"A Wednesday","description":"Mumbai, the financial capital of India, the city that never sleeps, the city of dreams, fast paced and ever changing, home to Bollywood! A City of beauty but also a city that got scarred! A city whose foundation is slowly crumbling beneath its fa\u00e7ade of invincibility! 'A Wednesday!' tells the story of certain events that unfold between 2.P.M and 6 P.M on a particular Wednesday in this city. ","id":"19703","runtime":103,"imdbId":"tt1280558","homepage":"http:\/\/www.awednesdaythefilm.com","version":240,"lastModified":"1301905179000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/24c\/4bc95757017a3c57fe02724c\/a-wednesday-mid.jpg","studio":"UTV Motion Pictures","genre":"Action","title":"A Wednesday","releaseDate":1220572800000,"language":"en","type":"Movie","_key":"71017"} +{"label":"Deepal Shaw","version":20,"id":"123226","lastModified":"1301902707000","name":"Deepal Shaw","type":"Person","_key":"71018"} +{"label":"Aamir Bashir","version":17,"id":"123228","lastModified":"1301903082000","name":"Aamir Bashir","type":"Person","_key":"71019"} +{"label":"Kali Prasad Mukherjee","version":18,"id":"123229","lastModified":"1301903046000","name":"Kali Prasad Mukherjee","type":"Person","_key":"71020"} +{"label":"Rohitash Gaud","version":18,"id":"123230","lastModified":"1301903006000","name":"Rohitash Gaud","type":"Person","_key":"71021"} +{"label":"Vijay Bhatia","version":17,"id":"123231","lastModified":"1301903006000","name":"Vijay Bhatia","type":"Person","_key":"71022"} +{"label":"Neeraj Pandey","version":20,"id":"123219","lastModified":"1301902378000","name":"Neeraj Pandey","type":"Person","_key":"71023"} +{"label":"Rejseholdet 14-16","description":"Episode 14: Assistancemelding A-30\/00 - \r\nEpisode 15: Assistancemelding A-31\/00, del 1 - \r\nEpisode 16: Assistancemelding A-31\/00, del 2","id":"19705","runtime":171,"imdbId":"tt0220261","version":26,"lastModified":"1301906131000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/255\/4bc95758017a3c57fe027255\/rejseholdet-14-16-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 14-16","releaseDate":986688000000,"language":"en","type":"Movie","_key":"71024"} +{"label":"Rejseholdet 17-19","description":"Episode 17: Assistancemelding A-2\/01 - \r\nEpisode 18: Assistancemelding A-3\/01 - \r\nEpisode 19: Assistancemelding A-4\/01\r\n","id":"19706","runtime":169,"imdbId":"tt0220261","version":25,"lastModified":"1301908467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/25e\/4bc95758017a3c57fe02725e\/rejseholdet-17-19-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 17-19","releaseDate":1009670400000,"language":"en","type":"Movie","_key":"71025"} +{"label":"Rejseholdet 20-22","description":"Episode 20: Assistancemelding A-6\/01 - \r\nEpisode 21: Assistancemelding A-7\/01, del 1 - \r\nEpisode 22: Assistancemelding A-7\/01, del 2","id":"19707","runtime":169,"imdbId":"tt0220261","version":27,"lastModified":"1301107368000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/267\/4bc95759017a3c57fe027267\/rejseholdet-20-22-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 20-22","releaseDate":1011484800000,"language":"en","type":"Movie","_key":"71026"} +{"label":"Rejseholdet 23-25","description":"Episode 23: Assistancemelding A-9\/01 - \r\nEpisode 24: Assistancemelding A-12\/01 - \r\nEpisode 25: Assistancemelding A-13\/01\r\n","id":"19708","runtime":171,"imdbId":"tt0220261","version":24,"lastModified":"1300980757000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/270\/4bc9575a017a3c57fe027270\/rejseholdet-23-25-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 23-25","releaseDate":1013299200000,"language":"en","type":"Movie","_key":"71027"} +{"label":"Rejseholdet 26-28","description":"Episode 27: Assistancemelding A-15\/01 - \r\nEpisode 28: Assistancemelding A-16\/01 - \r\nEpisode 29: Assistancemelding A-17\/01\r\n","id":"19709","runtime":170,"imdbId":"tt0220261","version":27,"lastModified":"1301908467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/279\/4bc9575a017a3c57fe027279\/rejseholdet-26-28-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 26-28","releaseDate":1015113600000,"language":"en","type":"Movie","_key":"71028"} +{"label":"Rejseholdet 29-30","description":"Episode 13: Assistancemelding A-19\/01, del 1 - \r\nEpisode 14: Assistancemelding A-19\/01, del 2\r\n\r\n \r\n","id":"19710","runtime":115,"imdbId":"tt0220261","version":28,"lastModified":"1301416825000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/282\/4bc9575b017a3c57fe027282\/rejseholdet-29-30-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 29-30","releaseDate":1016928000000,"language":"en","type":"Movie","_key":"71029"} +{"label":"Rejseholdet 31-32","description":"Episode 31: Assistancemelding A-05\/03, del 1\r\nEpisode 32: Assistancemelding A-05\/03, del 2","id":"19711","runtime":151,"imdbId":"tt0220261","version":29,"lastModified":"1301908467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28b\/4bc9575c017a3c57fe02728b\/rejseholdet-31-32-mid.jpg","studio":"Nordisk Film","title":"Rejseholdet 31-32","releaseDate":1072310400000,"language":"en","type":"Movie","_key":"71030"} +{"label":"Rejseholdet","description":"Rejseholdet, med den engelske titel Unit One, er en Emmy-bel\u00f8nnet dansk dramaserie, der blev vist f\u00f8rste gang p\u00e5 DR1 i 2000 - 2003[1].\r\n\r\nSerien var den f\u00f8rste danske tv-serie, der vandt en Emmy-pris, hvilket skete i kategorien Bedste Internationale Dramaserie.\r\n\r\nSerien er en skildring af det rigtige rejsehold. Tv-serien viser dens hovedpersoner p\u00e5 deres arbejde i rejseholdet.","id":"19712","version":15,"lastModified":"1301417392000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/294\/4bc9575f017a3c57fe027294\/rejseholdet-mid.png","title":"Rejseholdet","language":"en","type":"Movie","_key":"71031"} +{"label":"How to Be","description":"A young man having an existential crisis convinces a Canadian self-help guru to come to London and become his personal life coach.","id":"19713","runtime":82,"imdbId":"tt1057581","trailer":"http:\/\/www.youtube.com\/watch?v=RkpFaz1Kq4Q","homepage":"http:\/\/www.howtobemovie.com\/","version":258,"lastModified":"1301452475000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/29d\/4bc95762017a3c57fe02729d\/how-to-be-mid.jpg","studio":"How To Be Films","genre":"Comedy","title":"How to Be","releaseDate":1200614400000,"language":"en","type":"Movie","_key":"71032"} +{"label":"Powell Jones","version":19,"id":"85080","lastModified":"1301901946000","name":"Powell Jones","type":"Person","_key":"71033"} +{"label":"Johnny White","version":19,"id":"85081","lastModified":"1301901777000","name":"Johnny White","type":"Person","_key":"71034"} +{"label":"Mike Pearce","version":19,"id":"85082","lastModified":"1301902141000","name":"Mike Pearce","type":"Person","_key":"71035"} +{"label":"Jeremy Hardy","version":19,"id":"85083","lastModified":"1301902500000","name":"Jeremy Hardy","type":"Person","_key":"71036"} +{"label":"Michael Irving","version":20,"id":"85084","lastModified":"1301902535000","name":"Michael Irving","type":"Person","_key":"71037"} +{"label":"Oliver Irving","version":19,"id":"85085","lastModified":"1301902141000","name":"Oliver Irving","type":"Person","_key":"71038"} +{"label":"Star Wars: Revelations","description":"Seers once shaped the path of the Jedi Order. But their visions grew unreliable and the Jedi came to distrust those with the ability. Seers hid their visions or left the Order forever. In the wake of the Temple's destruction a power struggle has emerged between Darth Vader, the Dark Lord of the Sith, and Zhanna, the Emperor's Hand. Each seek to eliminate the last of the Jedi and gain the Emperor's favor. Caught between them is one woman who cannot deny the truth of her visions as all race to pos","id":"19714","runtime":47,"imdbId":"tt0457489","homepage":"http:\/\/panicstruckpro.com\/revelations\/","version":123,"lastModified":"1301903944000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c8f\/4cf5ba9c5e73d6299d000c8f\/star-wars-revelations-mid.jpg","title":"Star Wars: Revelations","releaseDate":1113609600000,"language":"en","type":"Movie","_key":"71039"} +{"label":"Gina Hernandez","version":17,"id":"85086","lastModified":"1301901768000","name":"Gina Hernandez","type":"Person","_key":"71040"} +{"label":"Karen Hammang","version":19,"id":"85087","lastModified":"1301902129000","name":"Karen Hammang","type":"Person","_key":"71041"} +{"label":"Holland Gedney","version":19,"id":"85088","lastModified":"1301902305000","name":"Holland Gedney","type":"Person","_key":"71042"} +{"label":"Frank Hernandez","version":19,"id":"85089","lastModified":"1301902478000","name":"Frank Hernandez","type":"Person","_key":"71043"} +{"label":"Shane Felux","version":20,"id":"85090","lastModified":"1301902647000","name":"Shane Felux","type":"Person","_key":"71044"} +{"label":"Donald in Mathmagic Land","description":"Disney used animation here to explain through this wonderful adventure of Donald how mathmatics can be usuful in our real life. Through this journey Donald shows us how mathmatics are not just numbers and charts, but magical living things.","id":"19715","runtime":27,"imdbId":"tt0052751","version":97,"lastModified":"1301414273000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/87d\/4d3757595e73d6335200d87d\/donald-in-mathmagic-land-mid.jpg","genre":"Animation","title":"Donald in Mathmagic Land","releaseDate":-331948800000,"language":"en","type":"Movie","_key":"71045"} +{"label":"Les Clark","version":24,"id":"115754","lastModified":"1301902205000","name":"Les Clark","type":"Person","_key":"71046"} +{"label":"Joshua Meador","version":18,"id":"148261","lastModified":"1301902549000","name":"Joshua Meador","type":"Person","_key":"71047"} +{"label":"El Colombian Dream","description":"A story as told by an aborted child who's now 14 years old, involving his mother, three teenagers (two twin brothers and their cousin) that make a love triangle, the twins' father and his new lover, a drug lord and his sidekicks, the drug lord's wife who doesn't know who's the father of her baby, a prostitute with bladder problems, a hit man (really a frustrated poet), and a huge missunderstanding","id":"19718","runtime":0,"imdbId":"tt0485618","version":334,"lastModified":"1300980758000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2c2\/4bc95764017a3c57fe0272c2\/el-colombian-dream-mid.jpg","genre":"Comedy","title":"El Colombian Dream","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71048"} +{"label":"LolliLove","description":"A hip, misguided Southern California couple decide to make a difference in the lives of the homeless by giving them lollipops with a cheery slogan on the wrapper.","id":"19719","runtime":64,"imdbId":"tt0316187","homepage":"https:\/\/buy.tromamovies.com\/product_info.php?products_id=543","version":163,"lastModified":"1302236627000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2cb\/4bc95764017a3c57fe0272cb\/lollilove-mid.jpg","studio":"Troma Entertainment","genre":"Comedy","title":"LolliLove","releaseDate":1100995200000,"language":"en","type":"Movie","_key":"71049"} +{"label":"Peter Alton","version":26,"id":"85094","lastModified":"1301902062000","name":"Peter Alton","type":"Person","_key":"71050"} +{"label":"Sarah Sido","version":20,"id":"85095","lastModified":"1301902173000","name":"Sarah Sido","type":"Person","_key":"71051"} +{"label":"Joan Blair","version":19,"id":"85097","lastModified":"1301902452000","name":"Joan Blair","type":"Person","_key":"71052"} +{"label":"Larry Fitzgibbon","version":19,"id":"85099","lastModified":"1301902452000","name":"Larry Fitzgibbon","type":"Person","_key":"71053"} +{"label":"Michelle Gunn","version":19,"id":"85101","lastModified":"1301902452000","name":"Michelle Gunn","type":"Person","_key":"71054"} +{"label":"Jennifer Eolin","version":20,"id":"85103","lastModified":"1301902359000","name":"Jennifer Eolin","type":"Person","_key":"71055"} +{"label":"Christo Garcia","version":19,"id":"85105","lastModified":"1301902235000","name":"Christo Garcia","type":"Person","_key":"71056"} +{"label":"TeeJay Boyce","version":19,"id":"85106","lastModified":"1301902626000","name":"TeeJay Boyce","type":"Person","_key":"71057"} +{"label":"Shaka Taylor","version":19,"id":"85108","lastModified":"1301902626000","name":"Shaka Taylor","type":"Person","_key":"71058"} +{"label":"Robert D'Avanzo","version":19,"id":"85109","lastModified":"1301902626000","name":"Robert D'Avanzo","type":"Person","_key":"71059"} +{"label":"Bill McCormack","version":19,"id":"85111","lastModified":"1301902626000","name":"Bill McCormack","type":"Person","_key":"71060"} +{"label":"Len Kraus S.J.","version":19,"id":"85113","lastModified":"1301902626000","name":"Len Kraus S.J.","type":"Person","_key":"71061"} +{"label":"Joe Fria","version":19,"id":"85115","lastModified":"1301902626000","name":"Joe Fria","type":"Person","_key":"71062"} +{"label":"Anne Fischer","version":19,"id":"85116","lastModified":"1301902626000","name":"Anne Fischer","type":"Person","_key":"71063"} +{"label":"Troy DeVolld","version":22,"id":"85098","lastModified":"1301902627000","name":"Troy DeVolld","type":"Person","_key":"71064"} +{"label":"Ryan Bergmann","version":21,"id":"85117","lastModified":"1301902062000","name":"Ryan Bergmann","type":"Person","_key":"71065"} +{"label":"Dr. Wesley Von Spears","version":19,"id":"85119","lastModified":"1301902626000","name":"Dr. Wesley Von Spears","type":"Person","_key":"71066"} +{"label":"Andy","version":20,"id":"85121","lastModified":"1301902703000","name":"Andy","type":"Person","_key":"71067"} +{"label":"Andrew J. Stratmann","version":19,"id":"85118","lastModified":"1301902452000","name":"Andrew J. Stratmann","type":"Person","_key":"71068"} +{"label":"Zemsta","description":"A winter day at a Polish castle, half owned by a fatalistic notary and half by a volcanic old soldier's niece. The old soldier, Cupbearer, and the notary are sworn enemies, which may doom the love between the niece, Klara, and the notary's son, Waclaw. On this day, the tongue-tied Cupbearer asks a braggart courtier, Papkin, to sue on his behalf for the hand of the widow Hanna. Papkin succeeds and ","id":"19721","runtime":100,"imdbId":"tt0314942","version":73,"lastModified":"1301904999000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d0\/4bc95765017a3c57fe0272d0\/zemsta-mid.jpg","title":"Zemsta","releaseDate":1033689600000,"language":"en","type":"Movie","_key":"71069"} +{"label":"Madeline and the Pirates","description":"Famed little French redhead Madeline is off for another adventure, this time on an island inhabited by pirates. Join Madeline and her schoolmates as they learn that looks can be deceiving, as these pirates are not quite what they seem to be. Recommended for ages five to eight. \r\n","id":"19722","runtime":25,"version":71,"lastModified":"1302019815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2d5\/4bc95765017a3c57fe0272d5\/madeline-and-the-pirates-mid.jpg","genre":"Animation","title":"Madeline and the Pirates","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71070"} +{"label":"Julian Bailey","version":16,"id":"85136","lastModified":"1301902323000","name":"Julian Bailey","type":"Person","_key":"71071"} +{"label":"The League of Gentlemen's Apocalypse","description":"The fictional world of Royston Vasey is facing apocalypse and the only way to avert disaster is for our nightmarish cast of characters to find a way into the real world and confront their creators. From present day Soho to the fictional film world of 17th Century Britain, the residents must overcome countless bizarre obstacles in their bid to return Royston Vasey to safety","id":"19723","runtime":87,"imdbId":"tt0435687","version":94,"lastModified":"1301904993000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/2e2\/4bc95765017a3c57fe0272e2\/the-league-of-gentlemen-s-apocalypse-mid.jpg","studio":"FilmFour","title":"The League of Gentlemen's Apocalypse","releaseDate":1117756800000,"language":"en","type":"Movie","_key":"71072"} +{"label":"Imagine That","description":"A financial executive who can't stop his career downspiral is invited into his daughter's imaginary world, where solutions to his problems await.","id":"19724","runtime":107,"imdbId":"tt0780567","trailer":"http:\/\/www.youtube.com\/watch?v=70U393tWjrw","homepage":"http:\/\/www.imaginethatmovie.com\/","version":555,"lastModified":"1301902629000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/30f\/4cd6153b7b9aa113ac00030f\/imagine-that-mid.jpg","genre":"Comedy","title":"Imagine That","releaseDate":1247356800000,"language":"en","tagline":"What if your daughter's imagination... Was the secret to your success?","type":"Movie","_key":"71073"} +{"label":"Yara Shahidi","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8cc\/4d28d7047b9aa134d30028cc\/yara-shahidi-profile.jpg","version":52,"id":"118372","lastModified":"1301901120000","name":"Yara Shahidi","type":"Person","_key":"71074"} +{"label":"Daniel Polo","version":27,"id":"127728","lastModified":"1301902799000","name":"Daniel Polo","type":"Person","_key":"71075"} +{"label":"Michael McMillen","version":30,"id":"101416","lastModified":"1301902388000","name":"Michael McMillen","type":"Person","_key":"71076"} +{"label":"Jeff Kosloski","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/ca6\/4d262c937b9aa134cb000ca6\/jeff-kosloski-profile.jpg","version":26,"birthday":"1297033200000","id":"147653","birthplace":"Lansing, MI","lastModified":"1301901598000","name":"Jeff Kosloski","type":"Person","_key":"71077"} +{"label":"Carry On Columbus","description":"Christopher Columbus believes he can find an alternative route to the far East and persuades the King and Queen of Spain to finance his expedition...","id":"19725","runtime":0,"imdbId":"tt0103927","version":268,"lastModified":"1301907203000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/15f\/4bdd7b0f017a3c20c700015f\/carry-on-columbus-mid.jpg","studio":"Peter Rogers Productions","genre":"Comedy","title":"Carry On Columbus","releaseDate":717984000000,"language":"en","type":"Movie","_key":"71078"} +{"label":"Nigel Planer","version":17,"id":"117555","lastModified":"1301902722000","name":"Nigel Planer","type":"Person","_key":"71079"} +{"label":"Julian Clary","version":17,"id":"117556","lastModified":"1301902541000","name":"Julian Clary","type":"Person","_key":"71080"} +{"label":"Sara Crowe","version":17,"id":"117557","lastModified":"1301903074000","name":"Sara Crowe","type":"Person","_key":"71081"} +{"label":"Streets of Blood","description":"A police officer's partner has died during Hurricane Katrina, but he later discovers that his partner may have been murdered. An investigation follows, taking the officer and his new partner into the depths of the criminal underworld.","id":"19727","runtime":95,"imdbId":"tt1203523","version":206,"lastModified":"1302077385000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/02c\/4c20a37c5e73d612a400002c\/streets-of-blood-mid.jpg","genre":"Action","title":"Streets of Blood","releaseDate":1247443200000,"language":"en","type":"Movie","_key":"71082"} +{"label":"The Blue Max","description":"A young pilot in the German air force of 1918, disliked as lower-class and unchivalrous, tries ambitiously to earn the medal offered for 20 kills.","id":"19728","runtime":156,"imdbId":"tt0060177","version":175,"lastModified":"1301904653000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/301\/4bc9576a017a3c57fe027301\/the-blue-max-mid.jpg","genre":"Action","title":"The Blue Max","releaseDate":-111456000000,"language":"en","type":"Movie","_key":"71083"} +{"label":"Grand Theft Auto","description":"No overview found.","id":"19731","runtime":84,"imdbId":"tt0076100","version":154,"lastModified":"1301903932000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/317\/4bc9576c017a3c57fe027317\/grand-theft-auto-mid.jpg","genre":"Action","title":"Grand Theft Auto","releaseDate":235267200000,"language":"en","type":"Movie","_key":"71084"} +{"label":"Elizabeth Rogers","version":17,"id":"132710","lastModified":"1301903076000","name":"Elizabeth Rogers","type":"Person","_key":"71085"} +{"label":"Barry Cahill","version":16,"id":"132711","lastModified":"1301902908000","name":"Barry Cahill","type":"Person","_key":"71086"} +{"label":"Paul Linke","version":19,"id":"107308","lastModified":"1301902736000","name":"Paul Linke","type":"Person","_key":"71087"} +{"label":"Labou","description":"Three kids get lost in the Louisiana bayou in search of a ghost pirate and his lost treasure, but what they discover is true friendship and the adventure of a lifetime.","id":"19732","runtime":95,"imdbId":"tt0756673","version":145,"lastModified":"1301905466000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/320\/4bc9576d017a3c57fe027320\/labou-mid.jpg","genre":"Action","title":"Labou","releaseDate":1242691200000,"language":"en","type":"Movie","_key":"71088"} +{"label":"Bryan James Kitto","version":4,"id":"231267","lastModified":"1301599991000","name":"Bryan James Kitto","type":"Person","_key":"71089"} +{"label":"Darnell Hamilton","version":4,"id":"231268","lastModified":"1301599991000","name":"Darnell Hamilton","type":"Person","_key":"71090"} +{"label":"Marissa Cuevas","version":4,"id":"231269","lastModified":"1301599991000","name":"Marissa Cuevas","type":"Person","_key":"71091"} +{"label":"Earl Scioneaux","version":4,"id":"231270","lastModified":"1301599991000","name":"Earl Scioneaux","type":"Person","_key":"71092"} +{"label":"Kelson Henderson","version":15,"id":"173391","lastModified":"1301903371000","name":"Kelson Henderson","type":"Person","_key":"71093"} +{"label":"Barnie Duncun","version":4,"id":"231271","lastModified":"1301599991000","name":"Barnie Duncun","type":"Person","_key":"71094"} +{"label":"Baby: Secret of the Lost Legend","description":"Paleontologist and her husband discover a mother and baby brontosaurus in Africa, try to protect them from hunters who want to capture them.","id":"19736","runtime":95,"imdbId":"tt0088760","version":144,"lastModified":"1301905846000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/331\/4bc95770017a3c57fe027331\/baby-secret-of-the-lost-legend-mid.jpg","studio":"Silver Screen Partners III","genre":"Action","title":"Baby: Secret of the Lost Legend","releaseDate":480297600000,"language":"en","type":"Movie","_key":"71095"} +{"label":"Shoujo Kakumei Utena: Adolescence Mokushiroku","description":"This movie is a loose retelling of the story behind the series Revolutionary Girl Utena (Shoujo Kakumei Utena).","id":"19738","runtime":85,"imdbId":"tt0243558","trailer":"http:\/\/www.youtube.com\/watch?v=xR_EXs-XKRw","version":29,"lastModified":"1300980760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/336\/4bc95770017a3c57fe027336\/shoujo-kakumei-utena-adolescence-mokushiroku-mid.jpg","title":"Shoujo Kakumei Utena: Adolescence Mokushiroku","releaseDate":934588800000,"language":"en","type":"Movie","_key":"71096"} +{"label":"The Great Waldo Pepper","description":"A biplane pilot who had missed flying in WWI takes up barnstorming and later a movie career in his quest for the glory he had missed...","id":"19740","runtime":108,"imdbId":"tt0073075","version":204,"lastModified":"1301905603000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/344\/4bc95772017a3c57fe027344\/the-great-waldo-pepper-mid.jpg","genre":"Action","title":"The Great Waldo Pepper","releaseDate":163900800000,"language":"en","type":"Movie","_key":"71097"} +{"label":"Bo Brundin","version":23,"id":"85146","lastModified":"1301902671000","name":"Bo Brundin","type":"Person","_key":"71098"} +{"label":"Rodan","description":"When a village is besieged by giant caterpillars, a more horrifying discovery is made in their underground home...a giant flying creature that resembles the prehistoric pterodactyl. Soon after, a second Rodan appears and the two monsters begin to destroy Japan.","id":"19741","runtime":0,"imdbId":"tt0049782","version":106,"lastModified":"1301404444000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/573\/4d0e07077b9aa10254002573\/sora-no-daikaij-radon-mid.jpg","genre":"Horror","title":"Rodan","releaseDate":-410745600000,"language":"en","type":"Movie","_key":"71099"} +{"label":"Rodan! The Flying Monster","description":"When a village is besieged by giant caterpillars, a more horrifying discovery is made in their underground home...a giant flying creature that resembles the prehistoric pterodactyl. Soon after, a second Rodan appears and the two monsters begin to destroy Japan.","id":"19742","runtime":82,"imdbId":"tt0049782","version":54,"lastModified":"1301908335000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a38\/4d4ae83f7b9aa13aba003a38\/sora-no-daikaij-radon-mid.jpg","studio":"Toho Film (Eiga) Co. Ltd.","genre":"Science Fiction","title":"Rodan! The Flying Monster","releaseDate":-410745600000,"language":"en","type":"Movie","_key":"71100"} +{"label":"Yumi Shirakawa","version":23,"id":"128665","lastModified":"1301902733000","name":"Yumi Shirakawa","type":"Person","_key":"71101"} +{"label":"The Law of Attraction: Das kosmische Gesetz hinter 'The Secret'","description":"No overview found.","id":"19744","runtime":0,"version":13,"lastModified":"1300980760000","title":"The Law of Attraction: Das kosmische Gesetz hinter 'The Secret'","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71102"} +{"label":"Albert Einsteins Relativitaetstheorie 1v3","description":"No overview found.","id":"19746","runtime":19,"version":28,"lastModified":"1300980760000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/358\/4bc95773017a3c57fe027358\/albert-einsteins-relativitaetstheorie-1v3-mid.jpg","title":"Albert Einsteins Relativitaetstheorie 1v3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71103"} +{"label":"Albert Einsteins Relativitaetstheorie 2v3","description":"No overview found.","id":"19747","runtime":0,"version":27,"lastModified":"1301907376000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/35d\/4bc95773017a3c57fe02735d\/albert-einsteins-relativitaetstheorie-2v3-mid.jpg","title":"Albert Einsteins Relativitaetstheorie 2v3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71104"} +{"label":"Albert Einsteins Relativitaetstheorie 3v3","description":"No overview found.","id":"19748","runtime":0,"version":29,"lastModified":"1301907382000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/362\/4bc95773017a3c57fe027362\/albert-einsteins-relativitaetstheorie-3v3-mid.jpg","title":"Albert Einsteins Relativitaetstheorie 3v3","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71105"} +{"label":"Doppelspaltexperiment","description":"No overview found.","id":"19749","runtime":0,"version":15,"lastModified":"1301908530000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/367\/4bc95773017a3c57fe027367\/doppelspaltexperiment-mid.jpg","title":"Doppelspaltexperiment","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71106"} +{"label":"Das Geheimnis der Materie","description":"No overview found.","id":"19750","runtime":0,"version":19,"lastModified":"1300980761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/36c\/4bc95773017a3c57fe02736c\/das-geheimnis-der-materie-mid.jpg","title":"Das Geheimnis der Materie","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71107"} +{"label":"Warum ist nicht nichts","description":"No overview found.","id":"19751","runtime":0,"version":12,"lastModified":"1300980761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/371\/4bc95773017a3c57fe027371\/warum-ist-nicht-nichts-mid.jpg","title":"Warum ist nicht nichts","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71108"} +{"label":"Start the Revolution Without Me","description":"An account of the adventures of two sets of identical twins, badly scrambled at birth, on the eve of the French Revolution. One set is haughty and aristocratic, the other poor and somewhat dim. They find themselves involved in palace intrigues as history happens around them. Based, very loosely, on Dickens's \"A Tale of Two Cities,\" Dumas's \"The Corsican Brothers,\" etc.","id":"19753","runtime":90,"imdbId":"tt0066402","version":136,"lastModified":"1301906198000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/680\/4d3913797b9aa16149000680\/start-the-revolution-without-me-mid.jpg","studio":"Warner Bros Pictures","genre":"Comedy","title":"Start the Revolution Without Me","releaseDate":19440000000,"language":"en","type":"Movie","_key":"71109"} +{"label":"Helen Fraser","version":21,"id":"95633","lastModified":"1301902441000","name":"Helen Fraser","type":"Person","_key":"71110"} +{"label":"Harry Fowler","version":26,"id":"129051","lastModified":"1301902792000","name":"Harry Fowler","type":"Person","_key":"71111"} +{"label":"Ken Parry","version":23,"id":"93964","lastModified":"1301902561000","name":"Ken Parry","type":"Person","_key":"71112"} +{"label":"The Amy Fisher Story","description":"The true story of the Long Island teen who shoots and wounds the wife of a man she called her lover.","id":"19754","runtime":96,"imdbId":"tt0106267","version":72,"lastModified":"1301905260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/37a\/4bc95777017a3c57fe02737a\/the-amy-fisher-story-mid.jpg","studio":"Spectacor Films","genre":"Crime","title":"The Amy Fisher Story","releaseDate":726019200000,"language":"en","type":"Movie","_key":"71113"} +{"label":"Anthony John Denison","version":19,"id":"85154","lastModified":"1301902452000","name":"Anthony John Denison","type":"Person","_key":"71114"} +{"label":"Ikarus XB-1","description":"In the year 2163 the starship Ikarie XB-1 (Ikarus XB-1) is sent to the mysterious \"White Planet\" orbiting the star Alpha Centauri. Travelling at near-light speed, the journey takes around 28 months for the astronauts, although the effects of relativity mean that 15 years will have elapsed on Earth by the time they reach their destination. During the flight the 40-strong multinational crew must adjust to life in space, as well as dealing with various hazards they encounter, including a derelict 2","id":"19757","runtime":86,"imdbId":"tt0122111","version":89,"lastModified":"1301903265000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/384\/4bc95777017a3c57fe027384\/ikarie-xb-1-mid.jpg","studio":"Filmov\u00e9 Studio Barrandov","genre":"Science Fiction","title":"Ikarus XB-1","releaseDate":-160963200000,"language":"en","tagline":"Dare you take the first?","type":"Movie","_key":"71115"} +{"label":"Jindrich Pol\u00e1k","version":26,"id":"119998","lastModified":"1301902984000","name":"Jindrich Pol\u00e1k","type":"Person","_key":"71116"} +{"label":"Zden\u011bk \u0160t\u011bp\u00e1nek","version":25,"id":"120000","lastModified":"1301902984000","name":"Zden\u011bk \u0160t\u011bp\u00e1nek","type":"Person","_key":"71117"} +{"label":"Vyn\u00e1lez zk\u00e1zy","description":"Zlot\u0159il\u00fd dobrodruh Artigas, kter\u00fd zbohatl na kr\u00e1de\u017e\u00edch podmo\u0159sk\u00fdch poklad\u016f, unesl profesora Rocha, objevitele \u00fa\u010dinn\u00e9 v\u00fdbu\u0161niny, a hodl\u00e1 jeho vyn\u00e1lez zneu\u017e\u00edt k ovl\u00e1dnut\u00ed sv\u011bta. Mlad\u00fd profesor\u016fv asistent ing. Hart hodl\u00e1 zlosynovi v jeho pl\u00e1nech zabr\u00e1nit za ka\u017edou cenu. Pro lidstvo zachra\u0148uje svobodu a pro sebe l\u00e1sku p\u016fvabn\u00e9 profesorovy dcery Jany. Slavn\u00fd film Karla Zemana vznikl v roce 1958 na motivy rom\u00e1n\u016f Julese Vernea a s pou\u017eit\u00edm v\u00fdtvarn\u00fdch p\u0159edloh p\u016fvodn\u00edch verneovsk\u00fdch ilustr\u00e1tor\u016f Riona a Be","id":"19759","runtime":81,"imdbId":"tt0052374","version":74,"lastModified":"1301906726000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c7f\/4d3f0e155e73d622c7004c7f\/vyn-lez-zk-zy-mid.jpg","genre":"Science Fiction","title":"Vyn\u00e1lez zk\u00e1zy","releaseDate":-358560000000,"language":"en","tagline":"Fantastic Pedal Blimps Fly The Skies! - Four-Footed Machines In Incredible Sea Battle!","type":"Movie","_key":"71118"} +{"label":"Lubor Toko\u0161","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/0d3\/4d3fc6095e73d622cf0050d3\/lubor-toko-profile.jpg","biography":"<P>\u200bLubor toko\u0161 byl \u010desk\u00fd divadeln\u00ed, filmov\u00fd a televizn\u00ed herec, spolupracoval tak\u00e9 s rozhlasem. V\u011bnoval se i mal\u00ed\u0159stv\u00ed a psan\u00ed knih. Do podv\u011bdom\u00ed div\u00e1k\u016f se dost\u00e1v\u00e1 zejm\u00e9na d\u00edky sv\u00e9mu charakteristick\u00e9mu hlasu. V ml\u00e1d\u00ed vytvo\u0159il nezapomenutelnou hlavn\u00ed roli Simona Harta ve filmu VYN\u00c1LEZ ZK\u00c1ZY re\u017eis\u00e9ra Karla Zemana.<\/P>\r\n<P>Ne\u017e p\u0159e\u0161el k divadlu, studoval vojensk\u00e9 gymn\u00e1zium. Nejprve v\u0161ak v divadle pracoval jako n\u00e1pov\u011bda. B\u011bhem sv\u00e9ho \u017eivota pro\u0161el divadly v Hodon\u00edn\u011b, Brn\u011b, Uhersk\u00e9m Hradi\u0161ti, Ostrav\u011b, ","version":23,"birthday":"-1480035600000","id":"213324","birthplace":"\u0160ternberk","lastModified":"1301903132000","name":"Lubor Toko\u0161","type":"Person","_key":"71119"} +{"label":"Arno\u0161t Navr\u00e1til","version":17,"id":"213325","lastModified":"1301903638000","name":"Arno\u0161t Navr\u00e1til","type":"Person","_key":"71120"} +{"label":"Miroslav Holub","version":17,"id":"213326","lastModified":"1301903638000","name":"Miroslav Holub","type":"Person","_key":"71121"} +{"label":"Franti\u0161ek \u0160l\u00e9gr","version":17,"id":"213327","lastModified":"1301903638000","name":"Franti\u0161ek \u0160l\u00e9gr","type":"Person","_key":"71122"} +{"label":"Jana Zatloukalov\u00e1","version":17,"id":"213328","lastModified":"1301903638000","name":"Jana Zatloukalov\u00e1","type":"Person","_key":"71123"} +{"label":"Two If by Sea","description":"Frank O'Brien, a petty thief, and his 7-year-long girlfriend Roz want to put an end to their unsteady lifestyle and just do that last job, which involves stealing a valuable painting. Frank takes Roz to an island on the coast of New England, where he wants to sell the painting and also hopes that their sagging relationship will get a positive push back up. Not everything goes as planned.","id":"19760","runtime":96,"imdbId":"tt0118002","version":101,"lastModified":"1301906007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/389\/4bc95777017a3c57fe027389\/two-if-by-sea-mid.jpg","studio":"Morgan Creek Productions","genre":"Comedy","title":"Two If by Sea","releaseDate":821404800000,"language":"en","type":"Movie","_key":"71124"} +{"label":"Saturn 3","description":"On a Saturn space station, Adam and Alex are two scientists seeking new forms of food for the impoverished planet earth. Their idyllic life is interrupted by the arrival of Captain James, a psychopathic maniac from earth who brings with him a 'helper' in the form of a murderous robot who gradually develops a mind of its own.Saturn 3 is an entertaining fusion of sci-fi, horror and suspense culminating in the ultimate battle of man against machine.","id":"19761","runtime":88,"imdbId":"tt0079285","trailer":"http:\/\/www.youtube.com\/watch?v=NENxIu02bvg","homepage":"http:\/\/www.indiemoviesonline.com\/watch-movies\/saturn-3","version":72,"lastModified":"1301903947000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/392\/4bc95778017a3c57fe027392\/saturn-3-mid.jpg","genre":"Science Fiction","title":"Saturn 3","releaseDate":319420800000,"language":"en","type":"Movie","_key":"71125"} +{"label":"Son of Flubber","description":"Medfield's lovable but hopelessly absent-minded professor -- Ned Brainard (Fred MacMurray) -- bounces back in this classic Disney film with hilarious new mishaps when he experiments with the amazing by-products of his startling anti-gravity substance, \"flubber.\" Windows shatter, football players fly, and thunderstorms materialize indoors as Professor Brainard fights to keep Medfield College from falling into the hands of ruthless land developer Alonzo Hawk (Keenan Wynn).","id":"19762","runtime":100,"imdbId":"tt0057518","version":131,"lastModified":"1301906457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/7fc\/4c5e106f5e73d63a700007fc\/son-of-flubber-mid.jpg","genre":"Comedy","title":"Son of Flubber","releaseDate":-219628800000,"language":"en","type":"Movie","_key":"71126"} +{"label":"Pokoj v du\u0161i","description":"No overview found.","id":"19763","runtime":0,"imdbId":"tt1369835","version":100,"lastModified":"1301906010000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/338\/4c7bcce47b9aa176be000338\/pokoj-v-dusi-mid.jpg","studio":"Forza Production House","title":"Pokoj v du\u0161i","releaseDate":1233187200000,"language":"en","type":"Movie","_key":"71127"} +{"label":"Vladim\u00edr Balko","version":18,"id":"130900","lastModified":"1301903078000","name":"Vladim\u00edr Balko","type":"Person","_key":"71128"} +{"label":"Attila Moko\u0161","version":16,"id":"130902","lastModified":"1301902749000","name":"Attila Moko\u0161","type":"Person","_key":"71129"} +{"label":"Roman Lukn\u00e1r","version":17,"id":"130903","lastModified":"1301903073000","name":"Roman Lukn\u00e1r","type":"Person","_key":"71130"} +{"label":"Helena Kraj\u010diov\u00e1","version":16,"id":"130904","lastModified":"1301902783000","name":"Helena Kraj\u010diov\u00e1","type":"Person","_key":"71131"} +{"label":"Robert Wi\u0119ckiewicz","version":20,"id":"130905","lastModified":"1301902582000","name":"Robert Wi\u0119ckiewicz","type":"Person","_key":"71132"} +{"label":"Jan Vondr\u00e1\u010dek","version":16,"id":"130906","lastModified":"1301902749000","name":"Jan Vondr\u00e1\u010dek","type":"Person","_key":"71133"} +{"label":"Jevgenij Libez\u0148uk","version":17,"id":"130910","lastModified":"1301903073000","name":"Jevgenij Libez\u0148uk","type":"Person","_key":"71134"} +{"label":"Luk\u00e1\u0161 Hipp","version":16,"id":"130911","lastModified":"1301902783000","name":"Luk\u00e1\u0161 Hipp","type":"Person","_key":"71135"} +{"label":"\u013dubom\u00edr Paulovi\u010d","version":17,"id":"130908","lastModified":"1301903078000","name":"\u013dubom\u00edr Paulovi\u010d","type":"Person","_key":"71136"} +{"label":"\u013dubo Roman","version":16,"id":"130909","lastModified":"1301902783000","name":"\u013dubo Roman","type":"Person","_key":"71137"} +{"label":"\u017delary","description":"A nurse and her surgeon-lover are part of a resistance movement in 1940s Czechoslovakia. When they are discovered, her lover flees and she must find a place to hide. A patient whose life she saved, a man from a remote mountain village where time stopped 150 years ago, agrees to hide her as his wife.","id":"19765","runtime":150,"imdbId":"tt0288330","homepage":"www.zelary.com","version":65,"lastModified":"1301906263000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3a4\/4bc9577a017a3c57fe0273a4\/zelary-mid.jpg","studio":"Sony Pictures Classics","genre":"Drama","title":"\u017delary","releaseDate":1062633600000,"language":"en","type":"Movie","_key":"71138"} +{"label":"Inspector Gadget 2","description":"After capturing Claw, all the criminals have gone into hiding until, Claw escapes! Gadget thinks he will get the case, but everyone else has other planes. A new version of the Gadget project is unveiled in the form of G2. Strict orders are given for Gadget to stay away from G2 and every crime scene, but Gadget feels he is needed more than anyone.","id":"19766","runtime":89,"imdbId":"tt0301454","trailer":"http:\/\/www.youtube.com\/watch?v=1364","homepage":"http:\/\/en.wikipedia.org\/wiki\/Inspector_Gadget_2","version":184,"lastModified":"1301903963000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/cb2\/4d40e0107b9aa15bb0002cb2\/inspector-gadget-2-mid.jpg","studio":"Fountain Productions","genre":"Action","title":"Inspector Gadget 2","releaseDate":1047340800000,"language":"en","tagline":"Inspect the unexpected.","type":"Movie","_key":"71139"} +{"label":"Caitlin Wachs","version":30,"id":"85156","lastModified":"1302031290000","name":"Caitlin Wachs","type":"Person","_key":"71140"} +{"label":"Mark Mitchell","version":22,"id":"85157","lastModified":"1301902720000","name":"Mark Mitchell","type":"Person","_key":"71141"} +{"label":"James Wardlaw","version":20,"id":"85158","lastModified":"1301902626000","name":"James Wardlaw","type":"Person","_key":"71142"} +{"label":"Mick Roughlan","version":20,"id":"85159","lastModified":"1301902626000","name":"Mick Roughlan","type":"Person","_key":"71143"} +{"label":"Nick Lawson","version":20,"id":"85160","lastModified":"1301902626000","name":"Nick Lawson","type":"Person","_key":"71144"} +{"label":"Weekend cu mama","description":"15 years ago, Luiza decided to make a fresh start in Spain. She left her 3-year-old daughter Cristina in the care of her relatives and took off. When she returns to Romania, the woman learns some shocking truths that were kept hidden from her: Cristina ran away from home, is a drug addict and has a 2-year-old girl who lives in an orphanage. Overwhelmed by guilt, Luiza attempts to save her daughter","id":"19770","runtime":89,"imdbId":"tt1176963","homepage":"http:\/\/www.weekendcumama.ro\/","version":141,"lastModified":"1301905588000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3c7\/4bc9577c017a3c57fe0273c7\/weekend-cu-mama-mid.jpg","genre":"Drama","title":"Weekend cu mama","releaseDate":1237507200000,"language":"en","type":"Movie","_key":"71145"} +{"label":"Adela Popescu","version":21,"id":"85225","lastModified":"1301902452000","name":"Adela Popescu","type":"Person","_key":"71146"} +{"label":"Tudor Istodor","version":19,"id":"85226","lastModified":"1301902062000","name":"Tudor Istodor","type":"Person","_key":"71147"} +{"label":"Ion Sapdaru","version":22,"id":"85227","lastModified":"1301902626000","name":"Ion Sapdaru","type":"Person","_key":"71148"} +{"label":"Gheorghe Dinica","version":19,"id":"85228","lastModified":"1301902452000","name":"Gheorghe Dinica","type":"Person","_key":"71149"} +{"label":"Florin Zamfirescu","version":19,"id":"85229","lastModified":"1301902452000","name":"Florin Zamfirescu","type":"Person","_key":"71150"} +{"label":"Andi Vasluianu","version":20,"id":"85230","lastModified":"1301902626000","name":"Andi Vasluianu","type":"Person","_key":"71151"} +{"label":"Stere Gulea","version":24,"id":"85231","lastModified":"1301902608000","name":"Stere Gulea","type":"Person","_key":"71152"} +{"label":"The Journey of Man: A Genetic Odyssey","description":"Many geneticists and archaeologists have long surmised that human life began in Africa. Dr. Spencer Wells, one of a group of scientists studying the origin of human life, offers evidence and theories to support such a thesis in this PBS special. He claims that Africa was populated by only a few thousand people that some deserted their homeland in a conquest that has resulted in global domination. ","id":"19772","runtime":120,"imdbId":"tt0780543","version":27,"lastModified":"1301906737000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3e9\/4bc95781017a3c57fe0273e9\/the-journey-of-man-a-genetic-odyssey-mid.jpg","genre":"Documentary","title":"The Journey of Man: A Genetic Odyssey","releaseDate":1043107200000,"language":"en","type":"Movie","_key":"71153"} +{"label":"Medv\u00eddek","description":"Jirka, Roman, and Ivan have been\r\nfriends since school. Today they are\r\nabout 35 and, although they went\r\ninto different fields, their friendship\r\nhas lasted. Each of the three friends hides a secret, and their lives change radically when the\r\nsecrets come out. How will the three friends stand up to the tests they are forced\r\nto face? Will their friendship survive?","id":"19775","runtime":98,"imdbId":"tt1132596","version":25,"lastModified":"1300980764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3f2\/4bc95781017a3c57fe0273f2\/medvidek-mid.jpg","genre":"Comedy","title":"Medv\u00eddek","releaseDate":1189036800000,"language":"en","type":"Movie","_key":"71154"} +{"label":"Elmo's Christmas Countdown","description":"Sesame Street characters help Elmo count down the days leading up to Christmas.","id":"19781","runtime":60,"imdbId":"tt1077081","version":148,"lastModified":"1301906227000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/03a\/4bca1010017a3c0e9300003a\/elmo-s-christmas-countdown-mid.jpg","studio":"Gotham Group","title":"Elmo's Christmas Countdown","releaseDate":1198368000000,"language":"en","type":"Movie","_key":"71155"} +{"label":"Mama Jack","description":"No overview found.","id":"19782","runtime":0,"imdbId":"tt0471251","version":55,"lastModified":"1301906731000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/16c\/4bec0ac5017a3c37a700016c\/mama-jack-mid.jpg","title":"Mama Jack","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"71156"} +{"label":"new world disorder series","description":"No overview found.","id":"19783","runtime":0,"version":20,"lastModified":"1300980764000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/400\/4bc95782017a3c57fe027400\/new-world-disorder-series-mid.jpg","title":"new world disorder series","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71157"} +{"label":"Magique!","description":"Tommy, un petit gar\u00e7on qui vit seul avec sa m\u00e8re, voit un cirque s'installer pr\u00e8s de chez lui. Il part \u00e0 la d\u00e9couverte de ce nouveau monde.","id":"19784","runtime":91,"imdbId":"tt1111922","homepage":"http:\/\/www.magique-lefilm.fr\/","version":66,"lastModified":"1301907243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/421\/4bc95784017a3c57fe027421\/magique-mid.jpg","title":"Magique!","releaseDate":1224633600000,"language":"en","type":"Movie","_key":"71158"} +{"label":"Jean-Robert Bourdage","version":19,"id":"85161","lastModified":"1301902626000","name":"Jean-Robert Bourdage","type":"Person","_key":"71159"} +{"label":"Gouchy Boy","version":19,"id":"85162","lastModified":"1301902452000","name":"Gouchy Boy","type":"Person","_key":"71160"} +{"label":"Beno\u00eet Bri\u00e8re","version":21,"id":"85163","lastModified":"1301902545000","name":"Beno\u00eet Bri\u00e8re","type":"Person","_key":"71161"} +{"label":"Paul Cagelet","version":19,"id":"85164","lastModified":"1301902626000","name":"Paul Cagelet","type":"Person","_key":"71162"} +{"label":"Cali","version":19,"id":"85165","lastModified":"1301902626000","name":"Cali","type":"Person","_key":"71163"} +{"label":"Louis Dussol","version":19,"id":"85166","lastModified":"1301902626000","name":"Louis Dussol","type":"Person","_key":"71164"} +{"label":"Rachel Gauthier","version":19,"id":"85167","lastModified":"1301902626000","name":"Rachel Gauthier","type":"Person","_key":"71165"} +{"label":"Holly O'Brien","version":23,"id":"85168","lastModified":"1301902235000","name":"Holly O'Brien","type":"Person","_key":"71166"} +{"label":"Marcel Sabourin","version":19,"id":"85169","lastModified":"1301902626000","name":"Marcel Sabourin","type":"Person","_key":"71167"} +{"label":"Catch Your Mind","description":"A portrayal of emotional conflict, trust, and betrayal between a teenage son and his mom.","id":"19785","runtime":100,"imdbId":"tt1302553","version":269,"lastModified":"1301445802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/42a\/4bc95784017a3c57fe02742a\/catch-your-mind-mid.jpg","genre":"Drama","title":"Catch Your Mind","releaseDate":1222992000000,"language":"en","type":"Movie","_key":"71168"} +{"label":"Der Laden","description":"No overview found.","id":"19788","runtime":273,"imdbId":"tt0166443","version":41,"lastModified":"1300980765000","title":"Der Laden","releaseDate":883612800000,"language":"en","type":"Movie","_key":"71169"} +{"label":"My Little Pony: The Princess Promenade","description":"Wysteria is beaming with pride! Her gardens are in bloom, her little Breezie friends are in town, and it's time for Ponyville's fanciest spring parade, the ultimate celebration of flowers, flowers, flowers! But things don't go according to plan when Wysteria accidentally awakens Spike the Dragon, a sleepy, silly, 1,000-year-old dragon! For you see, legend holds that when a dragon is awakened, a ne","id":"19789","runtime":71,"imdbId":"tt0490668","version":77,"lastModified":"1301906167000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/433\/4bc95785017a3c57fe027433\/my-little-pony-the-princess-promenade-mid.jpg","title":"My Little Pony: The Princess Promenade","releaseDate":1136073600000,"language":"en","type":"Movie","_key":"71170"} +{"label":"Stomp Out Loud","description":"No overview found.","id":"19790","runtime":50,"imdbId":"tt0165964","version":113,"lastModified":"1301445114000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/43c\/4bc95785017a3c57fe02743c\/stomp-out-loud-mid.jpg","genre":"Comedy","title":"Stomp Out Loud","releaseDate":881366400000,"language":"en","type":"Movie","_key":"71171"} +{"label":"Firestarter 2: Rekindled","description":"Charlie McGee is a young woman with the unwanted and often uncontrollable gift of psychokinesis, lighting fires by mere thought. Charlie has been in hiding for nearly all her life from a top-secret government fringe group headed by the maniacal John Rainbird, who wants to find and use Charlie as the ultimate weapon of war.","id":"19792","runtime":168,"imdbId":"tt0297120","version":119,"lastModified":"1301903930000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/445\/4bc95786017a3c57fe027445\/firestarter-2-rekindled-mid.jpg","genre":"Horror","title":"Firestarter 2: Rekindled","releaseDate":1015718400000,"language":"en","type":"Movie","_key":"71172"} +{"label":"Some","description":"Action thriller featuring a dramatic race against time and death. After 10 billion won worth of drugs mysteriously disappear, police officer Kang Sung Joo (Ko Su) is faced with the unenviable task of tracking down the perpetrators of the clever coup. During his risky mission for justice, he stumbles into news reporter Seo Yoo Jin (Song Ji-hyo) who has the gift to foresee the future. To his shock, Kang learns that he will be murdered within 24 hours.","id":"19793","runtime":118,"imdbId":"tt0424448","version":118,"lastModified":"1302093066000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c90\/4d1b7a2e5e73d66594000c90\/some-mid.jpg","genre":"Action","title":"Some","releaseDate":1097798400000,"language":"en","type":"Movie","_key":"71173"} +{"label":"Soo Go","version":22,"id":"85173","lastModified":"1301902711000","name":"Soo Go","type":"Person","_key":"71174"} +{"label":"Dong-kyu Lee","version":21,"id":"85175","lastModified":"1301902380000","name":"Dong-kyu Lee","type":"Person","_key":"71175"} +{"label":"Labor Pains","description":"A young woman to pretends to be pregnant in order to avoid being fired from her job. When that gets her a bunch of special treatment by everyone involved in her life, she tries to keep up the lie for nine months.","id":"19794","runtime":89,"imdbId":"tt1231287","version":306,"lastModified":"1301903117000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/329\/4d8a5dd65e73d653c8000329\/labor-pains-mid.jpg","genre":"Comedy","title":"Labor Pains","releaseDate":1247961600000,"language":"en","type":"Movie","_key":"71176"} +{"label":"Bridgit Mendler","version":36,"id":"85176","lastModified":"1301901496000","name":"Bridgit Mendler","type":"Person","_key":"71177"} +{"label":"Creed Bratton","version":27,"id":"85177","lastModified":"1301902316000","name":"Creed Bratton","type":"Person","_key":"71178"} +{"label":"Christa Campbell","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/777\/4d05c6e57b9aa11bc1002777\/christa-campbell-profile.jpg","version":59,"id":"85178","lastModified":"1301901246000","name":"Christa Campbell","type":"Person","_key":"71179"} +{"label":"Lara Shapiro","version":22,"id":"94126","lastModified":"1301902497000","name":"Lara Shapiro","type":"Person","_key":"71180"} +{"label":"Reach for Me","description":"Old and bitter, Alvin just wants some peace and quiet in his last days. His wish, however, is not granted when a young, vibrant and ironically full of life Kevin becomes Alvin's hospice roommate. Through this \"odd couple\" relationship, Alvin learns that its not the minutes in our life, its the moments in your life that matter.","id":"19795","runtime":0,"imdbId":"tt1096986","version":80,"lastModified":"1301907481000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/469\/4bc9578e017a3c57fe027469\/reach-for-me-mid.jpg","genre":"Drama","title":"Reach for Me","releaseDate":1238889600000,"language":"en","type":"Movie","_key":"71181"} +{"label":"Don Agronsky","version":19,"id":"85179","lastModified":"1301902062000","name":"Don Agronsky","type":"Person","_key":"71182"} +{"label":"Mark Wolfe","version":19,"id":"85181","lastModified":"1301902235000","name":"Mark Wolfe","type":"Person","_key":"71183"} +{"label":"Jennifer Nelson","version":19,"id":"85180","lastModified":"1301902235000","name":"Jennifer Nelson","type":"Person","_key":"71184"} +{"label":"Ruby Blue","description":"An elderly man's innocent friendship with an eight year old girl is tarnished by the assumptions of a community when the little girl goes missing.","id":"19796","runtime":0,"imdbId":"tt0816635","version":260,"lastModified":"1302214815000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/476\/4bc9578e017a3c57fe027476\/ruby-blue-mid.jpg","genre":"Drama","title":"Ruby Blue","releaseDate":1179360000000,"language":"en","type":"Movie","_key":"71185"} +{"label":"Jody Latham","version":19,"id":"85182","lastModified":"1301902626000","name":"Jody Latham","type":"Person","_key":"71186"} +{"label":"Jessica Stewart","version":19,"id":"85183","lastModified":"1301902626000","name":"Jessica Stewart","type":"Person","_key":"71187"} +{"label":"Shannon Tomkinson","version":19,"id":"85184","lastModified":"1301902626000","name":"Shannon Tomkinson","type":"Person","_key":"71188"} +{"label":"Michael Mills","version":19,"id":"85185","lastModified":"1301902626000","name":"Michael Mills","type":"Person","_key":"71189"} +{"label":"Sam Talbot","version":19,"id":"85186","lastModified":"1301902626000","name":"Sam Talbot","type":"Person","_key":"71190"} +{"label":"Corinna Powlesland","version":19,"id":"85187","lastModified":"1301902626000","name":"Corinna Powlesland","type":"Person","_key":"71191"} +{"label":"Lisa Payne","version":19,"id":"85188","lastModified":"1301902626000","name":"Lisa Payne","type":"Person","_key":"71192"} +{"label":"I Think I Do","description":"No overview found.","id":"19797","runtime":90,"imdbId":"tt0125209","version":97,"lastModified":"1301908628000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/055\/4c4e5d407b9aa1326f000055\/i-think-i-do-mid.jpg","genre":"Comedy","title":"I Think I Do","releaseDate":892166400000,"language":"en","type":"Movie","_key":"71193"} +{"label":"Sluga Gosudarev","description":"Europe, 1709. Russia and Sweden are at war. Two French duelists are exiled by King Louis XIV of France: one to the side of Czar Peter the Great of Russia, the other to the side of King Charles XII of Sweden. Although separated by war and allegiance, fate has not finished with them.","id":"19798","runtime":131,"imdbId":"tt0476695","version":49,"lastModified":"1301907184000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/47f\/4bc9578f017a3c57fe02747f\/sluga-gosudarev-mid.jpg","studio":"Beta Film TV","title":"Sluga Gosudarev","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71194"} +{"label":"Oleg Ryaskov","version":17,"id":"103683","lastModified":"1301902674000","name":"Oleg Ryaskov","type":"Person","_key":"71195"} +{"label":"Underclassman","description":"A young detective goes undercover at an elite private school to destroy an international stolen car ring","id":"19803","runtime":95,"imdbId":"tt0373416","trailer":"http:\/\/www.youtube.com\/watch?v=1849","version":170,"lastModified":"1301905059000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/488\/4bc95790017a3c57fe027488\/underclassman-mid.jpg","genre":"Action","title":"Underclassman","releaseDate":1104537600000,"language":"en","type":"Movie","_key":"71196"} +{"label":"Anja og Viktor - br\u00e6ndende k\u00e6rlighed","description":"Endelig er Viktor blevet brandmand, mens Anja stadig ikke har den store succes p\u00e5 reklamebureauet. Heldigvis har de hinanden og alt tegner lyst da Anja f\u00e5r en stor mulighed p\u00e5 bureauet og samtidig bliver gravid. S\u00e5 skal Viktor bare lige finde ud af at v\u00e6re bl\u00f8d far, forst\u00e5ende mand og benh\u00e5rd brandmand p\u00e5 en gang. Men hvor sv\u00e6rt kan det v\u00e6re?","id":"19807","runtime":93,"imdbId":"tt0804439","version":56,"lastModified":"1301908149000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/491\/4bc95791017a3c57fe027491\/anja-og-viktor-brndende-krlighed-mid.jpg","studio":"Regner Grasten Film","genre":"Comedy","title":"Anja og Viktor - br\u00e6ndende k\u00e6rlighed","releaseDate":1169164800000,"language":"en","type":"Movie","_key":"71197"} +{"label":"Copper Mountain","description":"Two friends travel to a ski resort, with one looking to hit the slopes, while the other spends time trying to pick up women.","id":"19809","runtime":60,"imdbId":"tt0085363","version":85,"lastModified":"1301906076000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/49a\/4bc95792017a3c57fe02749a\/copper-mountain-mid.jpg","studio":"Rose & Ruby Productions","genre":"Comedy","title":"Copper Mountain","releaseDate":410227200000,"language":"en","type":"Movie","_key":"71198"} +{"label":"Alan Thicke","version":26,"id":"85199","lastModified":"1301902452000","name":"Alan Thicke","type":"Person","_key":"71199"} +{"label":"Ziggy Lorenc","version":19,"id":"85200","lastModified":"1301902235000","name":"Ziggy Lorenc","type":"Person","_key":"71200"} +{"label":"Rod Hebron","version":19,"id":"85201","lastModified":"1301902452000","name":"Rod Hebron","type":"Person","_key":"71201"} +{"label":"Jean Laplac","version":19,"id":"85202","lastModified":"1301902452000","name":"Jean Laplac","type":"Person","_key":"71202"} +{"label":"Stella's oorlog","description":"Dutch working mother, Stella, was supportive of international mission in Uruzgan, even if that meant missing her husband Jurre for months. After her brother is killed in action there, nothing can return life to normality, not even the return home of her military husband, Jurre. Flash-backs from a trial nine months later show the tragic developments","id":"19811","runtime":90,"imdbId":"tt1364497","version":26,"lastModified":"1301419386000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4ab\/4bc95793017a3c57fe0274ab\/stella-s-oorlog-mid.jpg","title":"Stella's oorlog","releaseDate":1235001600000,"language":"en","type":"Movie","_key":"71203"} +{"label":"Far til fire gi'r aldrig op","description":"No overview found.","id":"19812","runtime":87,"imdbId":"tt0446125","version":48,"lastModified":"1301905329000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4b4\/4bc95794017a3c57fe0274b4\/far-til-fire-gi-r-aldrig-op-mid.jpg","studio":"ASA Film Produktion ApS","title":"Far til fire gi'r aldrig op","releaseDate":1105315200000,"language":"en","type":"Movie","_key":"71204"} +{"label":"M\u00f8gunger","description":"No overview found.","id":"19813","runtime":85,"imdbId":"tt0366804","version":74,"lastModified":"1300980769000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4bd\/4bc95798017a3c57fe0274bd\/mgunger-mid.jpg","studio":"Crone Film Produktion A\/S","title":"M\u00f8gunger","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71205"} +{"label":"Pistoleros","description":"No overview found.","id":"19814","runtime":92,"imdbId":"tt0385683","version":94,"lastModified":"1301908589000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4c6\/4bc95799017a3c57fe0274c6\/pistoleros-mid.jpg","studio":"Cut1Movie","genre":"Comedy","title":"Pistoleros","releaseDate":1170288000000,"language":"en","type":"Movie","_key":"71206"} +{"label":"Erik Holmey","version":17,"id":"88537","lastModified":"1301902235000","name":"Erik Holmey","type":"Person","_key":"71207"} +{"label":"Daniell Edwards","version":17,"id":"88539","lastModified":"1301902452000","name":"Daniell Edwards","type":"Person","_key":"71208"} +{"label":"Mustafa Ali","version":19,"id":"88540","lastModified":"1301902452000","name":"Mustafa Ali","type":"Person","_key":"71209"} +{"label":"Hector Vega Mauricio","version":19,"id":"88541","lastModified":"1301902452000","name":"Hector Vega Mauricio","type":"Person","_key":"71210"} +{"label":"Claire Ross-Brown","version":20,"id":"88542","lastModified":"1301902062000","name":"Claire Ross-Brown","type":"Person","_key":"71211"} +{"label":"Shaky Gonz\u00e1lez","version":18,"id":"88538","lastModified":"1301901927000","name":"Shaky Gonz\u00e1lez","type":"Person","_key":"71212"} +{"label":"The Retreat","description":"No overview found.","id":"19816","runtime":90,"imdbId":"tt0481610","version":218,"lastModified":"1301441687000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d8\/4bc9579b017a3c57fe0274d8\/the-retreat-mid.jpg","title":"The Retreat","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71213"} +{"label":"Faites entrer l'accus\u00e9","description":"No overview found.","id":"19818","runtime":0,"imdbId":"tt0465809","version":74,"lastModified":"1300980769000","title":"Faites entrer l'accus\u00e9","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71214"} +{"label":"Blue Chips","description":"No overview found.","id":"19819","runtime":108,"imdbId":"tt0109305","version":118,"lastModified":"1301903511000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4e1\/4bc9579b017a3c57fe0274e1\/blue-chips-mid.jpg","genre":"Drama","title":"Blue Chips","releaseDate":761529600000,"language":"en","type":"Movie","_key":"71215"} +{"label":"Bob Cousy","version":19,"id":"85189","lastModified":"1301902626000","name":"Bob Cousy","type":"Person","_key":"71216"} +{"label":"Pantaleon y las Visitadoras","description":"Pantale\u00f3n Pantoja, un capit\u00e1n del Ej\u00e9rcito Peruano es elegido para realizar la misi\u00f3n secreta de organizar y administrar un servicio de prostitutas (visitadoras) que deben de visitar a las tropas peruanas apostadas en el r\u00edo Amazonas.\r\n","id":"19822","runtime":137,"imdbId":"tt0190611","trailer":"http:\/\/www.youtube.com\/watch?v=eUbZLU0xCNs","version":106,"lastModified":"1301904026000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4fc\/4bc9579d017a3c57fe0274fc\/pantaleon-y-las-visitadoras-mid.jpg","genre":"Comedy","title":"Pantaleon y las Visitadoras","releaseDate":1033084800000,"language":"en","type":"Movie","_key":"71217"} +{"label":"Salvador del Solar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/fd2\/4c00229f017a3c7036000fd2\/salvador-del-solar-profile.jpg","version":20,"id":"85234","lastModified":"1301901861000","name":"Salvador del Solar","type":"Person","_key":"71218"} +{"label":"M\u00f3nica S\u00e1nchez","version":18,"id":"85235","lastModified":"1301902062000","name":"M\u00f3nica S\u00e1nchez","type":"Person","_key":"71219"} +{"label":"Arist\u00f3teles Picho","version":24,"id":"85237","lastModified":"1301901700000","name":"Arist\u00f3teles Picho","type":"Person","_key":"71220"} +{"label":"Dolan's Cadillac","description":"A young man attempts to seek to avenge his wife's death after she is murdered by a Las Vegas mobster.","id":"19823","runtime":105,"imdbId":"tt0963965","version":205,"lastModified":"1301903381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/509\/4bc9579e017a3c57fe027509\/dolan-s-cadillac-mid.jpg","studio":"Cadillac Prairie Productions","genre":"Thriller","title":"Dolan's Cadillac","releaseDate":1259625600000,"language":"en","type":"Movie","_key":"71221"} +{"label":"Jeff Beesley","version":17,"id":"85204","lastModified":"1301902323000","name":"Jeff Beesley","type":"Person","_key":"71222"} +{"label":"Van Wilder: Freshman Year","description":"It is freshman year at Coolidge College and Van Wilder is ready to party. To his dismay, all the girls have taken a vow of chastity and the dean rules the school. Van embarks on a crusade to land the campus hottie, Kaitlin, and liberate his school from sexual oppression and party dysfunction.","id":"19824","runtime":100,"imdbId":"tt1276434","version":311,"lastModified":"1302120455000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/51f\/4bc957a0017a3c57fe02751f\/van-wilder-freshman-year-mid.jpg","studio":"Paramount Pictures","genre":"Comedy","title":"Van Wilder: Freshman Year","releaseDate":1243900800000,"language":"en","type":"Movie","_key":"71223"} +{"label":"Kristin Cavallari","version":28,"id":"85206","lastModified":"1301901401000","name":"Kristin Cavallari","type":"Person","_key":"71224"} +{"label":"Jerry Shea","version":24,"id":"85207","lastModified":"1301901455000","name":"Jerry Shea","type":"Person","_key":"71225"} +{"label":"Nestor Aaron Absera","version":23,"id":"85208","lastModified":"1301901474000","name":"Nestor Aaron Absera","type":"Person","_key":"71226"} +{"label":"Meredith Giangrande","version":24,"id":"85209","lastModified":"1301902062000","name":"Meredith Giangrande","type":"Person","_key":"71227"} +{"label":"The In-Laws","description":"In preparation for his daughter's wedding, dentist Sheldon Kornpett meets Vince Ricardo, the groom's father. Vince, a manic fellow who claims to be a government agent, then proceeds to drag Sheldon into a series of chases and misadventures from New York to Central America.","id":"19827","runtime":103,"imdbId":"tt0079336","version":89,"lastModified":"1301904431000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/39a\/4c61985d5e73d6346200039a\/the-in-laws-mid.jpg","studio":"Warner Bros. Pictures","genre":"Action","title":"The In-Laws","releaseDate":298252800000,"language":"en","type":"Movie","_key":"71228"} +{"label":"10 Attitudes","description":"Story of a jewish man who discovers that his boyfriend of 10 years is cheating on him.","id":"19828","runtime":87,"imdbId":"tt0312297","trailer":"http:\/\/www.youtube.com\/watch?v=10 Attitudes","version":78,"lastModified":"1301905260000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/530\/4bc957a6017a3c57fe027530\/10-attitudes-mid.jpg","studio":"Ariztical Entertainment","genre":"Comedy","title":"10 Attitudes","releaseDate":978307200000,"language":"en","type":"Movie","_key":"71229"} +{"label":"Jason Stuart","version":23,"id":"41508","lastModified":"1301901645000","name":"Jason Stuart","type":"Person","_key":"71230"} +{"label":"Jim J. Bullock","version":19,"id":"85210","lastModified":"1301902500000","name":"Jim J. Bullock","type":"Person","_key":"71231"} +{"label":"Christopher Cowan","version":19,"id":"85211","lastModified":"1301902323000","name":"Christopher Cowan","type":"Person","_key":"71232"} +{"label":"Fritz Greve","version":19,"id":"85212","lastModified":"1301901946000","name":"Fritz Greve","type":"Person","_key":"71233"} +{"label":"Michael O. Gallant","version":18,"id":"111212","lastModified":"1301902865000","name":"Michael O. Gallant","type":"Person","_key":"71234"} +{"label":"Ninja Cheerleaders","description":"3 college cheerleaders use their martial arts know-how to save their Sensei from mafia kidnappers, but must keep their extra curricular activities a secret in order to make it into an Ivy League school.","id":"19829","runtime":81,"imdbId":"tt0972857","version":109,"lastModified":"1301949582000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/28c\/4bf1dfe2017a3c320f00028c\/ninja-cheerleaders-mid.jpg","genre":"Action","title":"Ninja Cheerleaders","releaseDate":1210377600000,"language":"en","type":"Movie","_key":"71235"} +{"label":"Trishelle Cannatella","version":21,"id":"85213","lastModified":"1301902674000","name":"Trishelle Cannatella","type":"Person","_key":"71236"} +{"label":"Ginny Weirick","version":23,"id":"85214","lastModified":"1301902387000","name":"Ginny Weirick","type":"Person","_key":"71237"} +{"label":"Maitland McConnell","version":21,"id":"85215","lastModified":"1301902323000","name":"Maitland McConnell","type":"Person","_key":"71238"} +{"label":"David Presley","version":23,"id":"85216","lastModified":"1301902539000","name":"David Presley","type":"Person","_key":"71239"} +{"label":"100 Days Before The Command","description":"Visually astonishing, erotically charged and emotionally jarring. 100 Days Before the Command is Hussein Erkenov's courageous and stinging indictment of Communism. Five young Red Army recruits struggle for survival against the merciless violence that surrounds them on a daily basis. Their only means of saving their dignity is by preserving the humanity and compassion they share for each other.","id":"19830","runtime":71,"imdbId":"tt0100694","version":85,"lastModified":"1301906594000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/55a\/4bc957a9017a3c57fe02755a\/100-days-before-the-command-mid.jpg","studio":"Gorky Film Studio","genre":"Drama","title":"100 Days Before The Command","releaseDate":788918400000,"language":"en","type":"Movie","_key":"71240"} +{"label":"Hussein Erkenov","version":20,"id":"85218","lastModified":"1301901861000","name":"Hussein Erkenov","type":"Person","_key":"71241"} +{"label":"Vladimir Zamansky","version":24,"id":"85219","lastModified":"1301902318000","name":"Vladimir Zamansky","type":"Person","_key":"71242"} +{"label":"Oleg Vasilkov","version":20,"id":"85221","lastModified":"1301902062000","name":"Oleg Vasilkov","type":"Person","_key":"71243"} +{"label":"Roman Grekov","version":20,"id":"85222","lastModified":"1301901717000","name":"Roman Grekov","type":"Person","_key":"71244"} +{"label":"Valeri Troshin","version":20,"id":"85223","lastModified":"1301902062000","name":"Valeri Troshin","type":"Person","_key":"71245"} +{"label":"Aleksandr Chislov","version":20,"id":"85224","lastModified":"1301902452000","name":"Aleksandr Chislov","type":"Person","_key":"71246"} +{"label":"Mikhail Solomatin","version":17,"id":"96431","lastModified":"1301902626000","name":"Mikhail Solomatin","type":"Person","_key":"71247"} +{"label":"Sergei Romantsov","version":17,"id":"96432","lastModified":"1301902626000","name":"Sergei Romantsov","type":"Person","_key":"71248"} +{"label":"Sergey Bystritskiy","version":17,"id":"96433","lastModified":"1301902626000","name":"Sergey Bystritskiy","type":"Person","_key":"71249"} +{"label":"Yelena Kondulainen","version":17,"id":"96434","lastModified":"1301902626000","name":"Yelena Kondulainen","type":"Person","_key":"71250"} +{"label":"Oleg Khusainov","version":17,"id":"96435","lastModified":"1301902626000","name":"Oleg Khusainov","type":"Person","_key":"71251"} +{"label":"Sergei Semyonov","version":17,"id":"96436","lastModified":"1301902626000","name":"Sergei Semyonov","type":"Person","_key":"71252"} +{"label":"Zumba Fitness Basics Workout","description":"Shed pounds and have a blast in the process with the Zumba Fitness Total Body Transformation System DVD set. Loaded with red-hot dance steps, pulsating Latin rhythms, and easy-to-follow routines, this invigorating dance-fitness \"party\" will have you movin', groovin', and shakin' the weight off to the sexy, exotic rhythms of salsa, cumbia, samba, merengue, and more. Each routine features interval training sessions that combine fast and slow rhythms with resistance training, helping sculpt and ton","id":"19831","runtime":0,"version":38,"lastModified":"1301905696000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3c\/4d64aa2d7b9aa1297e000b3c\/zumba-fitness-basics-workout-mid.jpg","genre":"Documentary","title":"Zumba Fitness Basics Workout","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"71253"} +{"label":"In the Loop","description":"The US President and the UK Prime Minister are looking to launch a war in the Middle East. The plot follows government officials and advisers in their behind-the-scenes efforts either to promote the war or prevent it. Spinal Tap meets Strangelove. A satirical demolition of Whitehall and Washington: politically astute, hilarious and terrifyingly real.","id":"19833","runtime":106,"imdbId":"tt1226774","trailer":"http:\/\/www.youtube.com\/watch?v=NUB7Lhx_0ao","homepage":"http:\/\/www.intheloopmovie.co.uk\/","version":149,"lastModified":"1301903007000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/56f\/4bc957ae017a3c57fe02756f\/in-the-loop-mid.jpg","studio":"BBC Films","genre":"Comedy","title":"In the Loop","releaseDate":1232582400000,"language":"en","tagline":"The fate of the world is on the line.","type":"Movie","_key":"71254"} +{"label":"Armando Iannucci","version":21,"id":"88926","lastModified":"1301902646000","name":"Armando Iannucci","type":"Person","_key":"71255"} +{"label":"Chris Addison","version":18,"id":"91493","lastModified":"1301902126000","name":"Chris Addison","type":"Person","_key":"71256"} +{"label":"Mimi Kennedy","version":19,"id":"91495","lastModified":"1301902303000","name":"Mimi Kennedy","type":"Person","_key":"71257"} +{"label":"Beer Wars","description":"In America, size matters. The bigger you are, the more power you have, especially in the business world.\n\nAnat Baron takes you on a no holds barred exploration of the U.S. beer industry that ultimately reveals the truth behind the label of your favorite beer. Told from an insider\u2019s perspective, the film goes behind the scenes of the daily battles and all out wars that dominate the industry.","id":"19837","runtime":89,"imdbId":"tt1326194","homepage":"http:\/\/beerwarsmovie.com","version":189,"lastModified":"1301906457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/57c\/4bc957b0017a3c57fe02757c\/beer-wars-mid.jpg","genre":"Documentary","title":"Beer Wars","releaseDate":1239840000000,"language":"en","type":"Movie","_key":"71258"} +{"label":"I.M.P.S. Chapter 1 - Davenport Gateway","description":"No overview found.","id":"19838","runtime":0,"version":71,"lastModified":"1301419388000","title":"I.M.P.S. Chapter 1 - Davenport Gateway","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71259"} +{"label":"The Ringer","description":"No overview found.","id":"19839","runtime":78,"imdbId":"tt0045092","version":60,"lastModified":"1301419261000","title":"The Ringer","releaseDate":-539740800000,"language":"en","type":"Movie","_key":"71260"} +{"label":"I Love You, Beth Cooper","description":"Nerdy Buffalo Grove High School valedictorian Denis Cooverman proclaims his love for the most popular girl in school \u2013 Beth Cooper \u2013 during his graduation speech. Much to his surprise, Beth shows up at his door that very night and decides to show him the best night of his life.","id":"19840","runtime":101,"imdbId":"tt1032815","trailer":"http:\/\/www.youtube.com\/watch?v=kYtVbpjk8cE","homepage":"http:\/\/www.iloveyoubethcoopermovie.com\/","version":184,"lastModified":"1301902581000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9c9\/4d6b59057b9aa132fe0009c9\/i-love-you-beth-cooper-mid.jpg","genre":"Comedy","title":"I Love You, Beth Cooper","releaseDate":1247184000000,"language":"en","type":"Movie","_key":"71261"} +{"label":"Kiss the Bride","description":"No overview found.","id":"19844","runtime":100,"imdbId":"tt0893346","version":112,"lastModified":"1301463270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/596\/4bc957b4017a3c57fe027596\/kiss-the-bride-mid.jpg","genre":"Comedy","title":"Kiss the Bride","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"71262"} +{"label":"Nerdcore Rising","description":"Nerdcore Rising is a documentary\/concert film starring MC Frontalot and other nerdcore hip hop artists such as mc chris, Wheelie Cyberman of Optimus Rhyme and MC Lars, with contributors from such as \"Weird Al\" Yankovic, Prince Paul and Brian Posehn. It combines interviews about nerdcore and its origins with footage of MC Frontalot's 2006 Nerdcore Rising national tour.","id":"19845","runtime":80,"imdbId":"tt1159722","homepage":"http:\/\/www.nerdcorerisingthemovie.com\/","version":182,"lastModified":"1302234461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/848\/4bf48826017a3c3213000848\/nerdcore-rising-mid.jpg","genre":"Documentary","title":"Nerdcore Rising","releaseDate":1220400000000,"language":"en","type":"Movie","_key":"71263"} +{"label":"Damian Hess","version":16,"id":"108742","lastModified":"1301902452000","name":"Damian Hess","type":"Person","_key":"71264"} +{"label":"Gaby Alter","version":16,"id":"108743","lastModified":"1301902452000","name":"Gaby Alter","type":"Person","_key":"71265"} +{"label":"Brandon Patton","version":16,"id":"108744","lastModified":"1301902452000","name":"Brandon Patton","type":"Person","_key":"71266"} +{"label":"Sturgis Cuningham","version":17,"id":"108745","lastModified":"1301902235000","name":"Sturgis Cuningham","type":"Person","_key":"71267"} +{"label":"Negin Farsad","version":16,"id":"108751","lastModified":"1301902626000","name":"Negin Farsad","type":"Person","_key":"71268"} +{"label":"The Interview","description":"No overview found.","id":"19846","runtime":104,"imdbId":"tt0120714","version":74,"lastModified":"1301416782000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5af\/4bc957b5017a3c57fe0275af\/the-interview-mid.jpg","genre":"Drama","title":"The Interview","releaseDate":903571200000,"language":"en","type":"Movie","_key":"71269"} +{"label":"Match.Dead","description":"Valora was just your average, all American girl; looking for love in an online world. Then she met Ridley. He was strong, good looking, and best of all, he listened. So she agreed to meet him. It was a public place after all. What could happen?","id":"19847","runtime":85,"imdbId":"tt1218507","version":47,"lastModified":"1301908269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5b4\/4bc957b5017a3c57fe0275b4\/match-dead-mid.jpg","studio":"Infinite Spectrum Productions","genre":"Thriller","title":"Match.Dead","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"71270"} +{"label":"James Ray","version":20,"id":"85238","lastModified":"1301902323000","name":"James Ray","type":"Person","_key":"71271"} +{"label":"Kathleen Benner","version":20,"id":"85239","lastModified":"1301902500000","name":"Kathleen Benner","type":"Person","_key":"71272"} +{"label":"The Players Club","description":"Young single mother Diana struggles to provide for her child and pay for her college education. She ends up working at a shoe store, but meets two strippers from at a nearby gentlemen's club who convince her there's fast money to be made stripping. At the Players Club, however, Diana faces danger and heartbreak.","id":"19848","runtime":104,"imdbId":"tt0119905","version":166,"lastModified":"1301905038000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5bd\/4bc957b6017a3c57fe0275bd\/the-players-club-mid.jpg","genre":"Drama","title":"The Players Club","releaseDate":891993600000,"language":"en","tagline":"Here, we get down and dirty.","type":"Movie","_key":"71273"} +{"label":"Chrystale Wilson","version":18,"id":"144375","lastModified":"1301902988000","name":"Chrystale Wilson","type":"Person","_key":"71274"} +{"label":"Adele Givens","version":18,"id":"141603","lastModified":"1301902213000","name":"Adele Givens","type":"Person","_key":"71275"} +{"label":"Rampage: The Hillside Strangler Murders","description":"Kenneth Bianchi, one of the two serial rapists and killers who terrorized the Los Angeles area in the late 1970s, is giving police station interviews to psychiatrist Samantha Stone, who has disquieting lifestyle issues of her own. It falls to her to delve into the details of the case to determine the veracity of Bianchi's claims of multiple personality disorder, but in so doing, she is forced to relive the horrific crimes, one of which occurs at her very doorstep.","id":"19849","runtime":85,"imdbId":"tt0373900","version":103,"lastModified":"1301907269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c6\/4bc957b6017a3c57fe0275c6\/rampage-the-hillside-strangler-murders-mid.jpg","genre":"Drama","title":"Rampage: The Hillside Strangler Murders","releaseDate":1136851200000,"language":"en","tagline":"Los Angeles, 1978. Sex, drugs, serial killers.","type":"Movie","_key":"71276"} +{"label":"Breast Men","description":"We follow the two Texas doctors who invented the modern breast implant and its surgical procedure. However, when success and money come their way, they split up and follow different paths. One becomes the surgeon of the everyday woman while the other's career freefalls and has to settle with strippers and actresses. The film covers their history, and their invention's, from the sixties until today","id":"19850","runtime":95,"imdbId":"tt0133643","version":84,"lastModified":"1301905749000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5cf\/4bc957b7017a3c57fe0275cf\/breast-men-mid.jpg","genre":"Drama","title":"Breast Men","releaseDate":881971200000,"language":"en","type":"Movie","_key":"71277"} +{"label":"Grey Gardens","description":"Based on the life stories of the eccentric aunt and first cousin of Jackie Onassis raised as Park Avenue d\u00e9butantes but who withdrew from New York society, taking shelter at their Long Island summer home, \"Grey Gardens.\" As their wealth and contact with the outside world dwindled, so did their grasp on reality. ","id":"19851","runtime":104,"imdbId":"tt0758751","version":134,"lastModified":"1301905178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5d8\/4bc957b7017a3c57fe0275d8\/grey-gardens-mid.jpg","studio":"Specialty Films","genre":"Drama","title":"Grey Gardens","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"71278"} +{"label":"Little red tractor 6","description":"No overview found.","id":"19853","runtime":0,"imdbId":"tt0855525","version":33,"lastModified":"1301908581000","title":"Little red tractor 6","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71279"} +{"label":"State's Evidence","description":"No overview found.","id":"19854","runtime":89,"imdbId":"tt0378804","version":297,"lastModified":"1302215074000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/0fd\/4cc68cf35e73d64e600000fd\/state-s-evidence-mid.jpg","genre":"Drama","title":"State's Evidence","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71280"} +{"label":"The War","description":"The son of a Vietnam War Veteran must deal with neighborhood bullies as well as his dad's post-traumatic stress disorder while growing up in the deep south in the 1970's.","id":"19855","runtime":126,"imdbId":"tt0111667","version":184,"lastModified":"1301906457000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5dd\/4bc957b8017a3c57fe0275dd\/the-war-mid.jpg","genre":"Drama","title":"The War","releaseDate":783907200000,"language":"en","type":"Movie","_key":"71281"} +{"label":"LaToya Chisholm","version":19,"id":"85278","lastModified":"1301902626000","name":"LaToya Chisholm","type":"Person","_key":"71282"} +{"label":"Nikolaj og Julie","description":"Nikolaj og Julie er en Emmy-vindende dansk romantisk drama-tv-serie p\u00e5 22 afsnit, som blev sendt f\u00f8rste gang p\u00e5 DR1 i 2002 - 2003.\r\n\r\nI 2003 vandt serien en Emmy-pris i kategorien Bedste Internationale Dramaserie.\r\n","id":"19870","version":33,"lastModified":"1301417322000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/646\/4bc957c2017a3c57fe027646\/nikolaj-og-julie-mid.png","title":"Nikolaj og Julie","language":"en","type":"Movie","_key":"71283"} +{"label":"Andrew Jackson: Good, Evil & The Presidency","description":"A fascinating account of the presidency of Andrew Jackson, who was both one of America's great presidents and a borderline tyrant. The seventh president shook up the glossy world of Washington, DC with his \"common-man\" methods and ideals, but also oversaw one of the most controversial events in American history: the forced removal of Indian tribes, including the Cherokees, from their homes.","id":"19871","runtime":120,"imdbId":"tt1471325","version":68,"lastModified":"1301663828000","genre":"History","title":"Andrew Jackson: Good, Evil & The Presidency","releaseDate":1180656000000,"language":"en","type":"Movie","_key":"71284"} +{"label":"What Goes Up","description":"It is 1986. An emotionally damaged New York reporter is sent to cover the hometown hoopla for a local hero. But rather than pursue his assignment, which leaves him cold, he follows a group of disaffected students, whose own hero - their beloved, unconventional teacher has just died under a cloud of scandal. Their passionate and, at times, ludicrous expressions of grief attract the reporter.","id":"19874","runtime":104,"imdbId":"tt0832318","trailer":"http:\/\/www.youtube.com\/watch?v=Kyyjv-oRu0g","homepage":"http:\/\/www.whatgoesup-themovie.com","version":169,"lastModified":"1301904308000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/680\/4d55c2ef5e73d617ba006680\/what-goes-up-mid.jpg","studio":"Tree Kings Productions","genre":"Drama","title":"What Goes Up","releaseDate":1243555200000,"language":"en","type":"Movie","_key":"71285"} +{"label":"Jonathan Glatzer","version":20,"id":"85279","lastModified":"1301901579000","name":"Jonathan Glatzer","type":"Person","_key":"71286"} +{"label":"Bury Me Behind the Baseboard","description":"No overview found.","id":"19875","runtime":0,"imdbId":"tt1403085","version":37,"lastModified":"1301906712000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/042\/4beb02a1017a3c37ad000042\/pohoronite-menya-za-plintusom-mid.jpg","studio":"Globus Film Studio","title":"Bury Me Behind the Baseboard","releaseDate":1259798400000,"language":"en","type":"Movie","_key":"71287"} +{"label":"Alpine Saga","description":"No overview found.","id":"19876","runtime":97,"imdbId":"tt0873600","version":42,"lastModified":"1300980778000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/658\/4bc957c6017a3c57fe027658\/alpine-saga-mid.jpg","studio":"Langjahr-Film","genre":"Documentary","title":"Alpine Saga","releaseDate":1161216000000,"language":"en","type":"Movie","_key":"71288"} +{"label":"Anton B\u00fceler","version":19,"id":"85288","lastModified":"1301902626000","name":"Anton B\u00fceler","type":"Person","_key":"71289"} +{"label":"Albert Gwerder","version":19,"id":"85293","lastModified":"1301902626000","name":"Albert Gwerder","type":"Person","_key":"71290"} +{"label":"Erich Gwerder","version":19,"id":"85296","lastModified":"1301902626000","name":"Erich Gwerder","type":"Person","_key":"71291"} +{"label":"Alois Langenegger","version":19,"id":"85297","lastModified":"1301902626000","name":"Alois Langenegger","type":"Person","_key":"71292"} +{"label":"Dominic Langenegger","version":19,"id":"85298","lastModified":"1301902626000","name":"Dominic Langenegger","type":"Person","_key":"71293"} +{"label":"Josef Schelbert","version":19,"id":"85299","lastModified":"1301902626000","name":"Josef Schelbert","type":"Person","_key":"71294"} +{"label":"Toni Schelbert","version":19,"id":"85300","lastModified":"1301902626000","name":"Toni Schelbert","type":"Person","_key":"71295"} +{"label":"Peter Suter","version":19,"id":"85301","lastModified":"1301902626000","name":"Peter Suter","type":"Person","_key":"71296"} +{"label":"Erich Langjahr","version":23,"id":"85302","lastModified":"1301902626000","name":"Erich Langjahr","type":"Person","_key":"71297"} +{"label":"Fist of the North Star","description":"After a nuclear holocaust tears the world apart, mankind is forced to the harshness of not only the oppression of others who are much more powerful, but the dead earth which seems to be getting worse with every passing moment. But a savior has risen from the ashes, a man who will defeat those who would torment the weak and make the world a livable place once more. A man named Kenshiro...","id":"19877","runtime":110,"imdbId":"tt0142371","trailer":"http:\/\/www.youtube.com\/watch?v=1368","version":255,"lastModified":"1302043241000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/155\/4c043362017a3c3519000155\/19877-mid.jpg","studio":"Toei Doga","genre":"Action","title":"Fist of the North Star","releaseDate":510624000000,"language":"en","type":"Movie","_key":"71298"} +{"label":"Yuriko Yamamoto","version":21,"id":"85284","lastModified":"1301901935000","name":"Yuriko Yamamoto","type":"Person","_key":"71299"} +{"label":"Chikao \u00d4tsuka","version":24,"id":"85285","lastModified":"1301902171000","name":"Chikao \u00d4tsuka","type":"Person","_key":"71300"} +{"label":"Toshio Furukawa","version":42,"id":"85286","lastModified":"1301902370000","name":"Toshio Furukawa","type":"Person","_key":"71301"} +{"label":"Tomiko Suzuki","version":25,"id":"85287","lastModified":"1301901834000","name":"Tomiko Suzuki","type":"Person","_key":"71302"} +{"label":"Teiy\u00fb Ichiry\u00fbsai","version":22,"id":"85289","lastModified":"1301902529000","name":"Teiy\u00fb Ichiry\u00fbsai","type":"Person","_key":"71303"} +{"label":"Arisa And\u00f4","version":22,"id":"85290","lastModified":"1301902529000","name":"Arisa And\u00f4","type":"Person","_key":"71304"} +{"label":"Junji Chiba","version":21,"id":"85291","lastModified":"1301901935000","name":"Junji Chiba","type":"Person","_key":"71305"} +{"label":"Melodee Spevack","version":21,"id":"85292","lastModified":"1301902479000","name":"Melodee Spevack","type":"Person","_key":"71306"} +{"label":"Barbara Goodson","version":28,"id":"85294","lastModified":"1301902135000","name":"Barbara Goodson","type":"Person","_key":"71307"} +{"label":"Matthew Mercer","version":21,"id":"85295","lastModified":"1301902479000","name":"Matthew Mercer","type":"Person","_key":"71308"} +{"label":"Without Evidence","description":"No overview found.","id":"19880","runtime":0,"imdbId":"tt0437618","version":125,"lastModified":"1301908516000","genre":"Drama","title":"Without Evidence","releaseDate":-1483142400000,"language":"en","type":"Movie","_key":"71309"} +{"label":"The Sword of Doom","description":"Ryunosuke is a sociopathic samurai without compassion or scruples. When he is scheduled for an exhibition match at his fencing school, the wife of his opponent begs Ryunosuke to throw the match, offering her own virtue in trade. Ryunosuke accepts her offer, but kills her husband in the match. Over time, Ryunosuke is pursued by the brother of the man he killed.","id":"19884","runtime":119,"imdbId":"tt0060277","trailer":"http:\/\/www.youtube.com\/watch?v=1369","version":121,"lastModified":"1301903704000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/66a\/4bc957c7017a3c57fe02766a\/dai-bosatsu-toge-mid.jpg","studio":"Takarazuka Eiga Company Ltd.","genre":"Action","title":"The Sword of Doom","releaseDate":-110592000000,"language":"en","type":"Movie","_key":"71310"} +{"label":"Michiyo Aratama","version":26,"id":"85307","lastModified":"1302174395000","name":"Michiyo Aratama","type":"Person","_key":"71311"} +{"label":"Y\u00f4ko Nait\u00f4","version":20,"id":"85308","lastModified":"1301901989000","name":"Y\u00f4ko Nait\u00f4","type":"Person","_key":"71312"} +{"label":"Kihachi Okamoto","version":28,"id":"85309","lastModified":"1301901561000","name":"Kihachi Okamoto","type":"Person","_key":"71313"} +{"label":"Dachimawa Lee","description":"Under Japanese imperialism, Korean national treasure Golden Buddha is stolen. More important to national security, the statue contains vital information concerning Korean freedom fighters and their whereabouts as well as their true identities. The interim Korean government appoints legendary Korean spy Agent Dachimawa Lee to recover the fabled statue and reveal the dark plot behind the theft. ","id":"19886","runtime":100,"imdbId":"tt1243930","trailer":"http:\/\/www.youtube.com\/watch?v=1370","version":70,"lastModified":"1301907987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/680\/4bc957cb017a3c57fe027680\/dachimawa-lee-mid.jpg","studio":"Showbox","genre":"Action","title":"Dachimawa Lee","releaseDate":1199145600000,"language":"en","type":"Movie","_key":"71314"} +{"label":"Won-hie Lim","version":15,"id":"146866","lastModified":"1301902690000","name":"Won-hie Lim","type":"Person","_key":"71315"} +{"label":"Hyo-jin Kong","version":18,"id":"116177","lastModified":"1301902382000","name":"Hyo-jin Kong","type":"Person","_key":"71316"} +{"label":"Disco Dancer","description":"No overview found.","id":"19887","runtime":0,"imdbId":"tt0208903","version":290,"lastModified":"1302233852000","genre":"Drama","title":"Disco Dancer","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71317"} +{"label":"Marco","description":"In the 19th century, Genoa (Italy), 9-year-old Marco must face separation from his mother Anna, who leaves for work in Argentina to escape heavy taxes and a deep economic depression.","id":"19888","runtime":90,"version":54,"lastModified":"1301419290000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/685\/4bc957cc017a3c57fe027685\/marco-mid.jpg","title":"Marco","releaseDate":915148800000,"language":"en","type":"Movie","_key":"71318"} +{"label":"Flipper","description":"Many kids might say their best friend is a puppy or a pony. But for 12-year-old Sandy, the most special pet of all is the exuberant dolphin he rescues and who returns the favor by rescuing Sandy from sharks.The dolphin named Flipper first swam into the world's minds and hearts in this 1963 film starring Chuck Connors and Luke Halpin as Sandy (a role he would continue in the 1964-68 TV series that followed.) James B. Clark, a long-time family filmmaker whose credits include \"Island of the Blue Do","id":"19893","runtime":87,"imdbId":"tt0057063","version":122,"lastModified":"1301905178000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84a\/4d1523a95e73d6084200284a\/flipper-mid.jpg","studio":"Metro-Goldwyn-Mayer (MGM)","genre":"Adventure","title":"Flipper","releaseDate":-201484800000,"language":"en","type":"Movie","_key":"71319"} +{"label":"Connie Scott","version":16,"id":"111166","lastModified":"1301902235000","name":"Connie Scott","type":"Person","_key":"71320"} +{"label":"Jane Rose","version":16,"id":"111167","lastModified":"1301902235000","name":"Jane Rose","type":"Person","_key":"71321"} +{"label":"Joe Higgins","version":16,"id":"111168","lastModified":"1301902062000","name":"Joe Higgins","type":"Person","_key":"71322"} +{"label":"Robertson White","version":16,"id":"111169","lastModified":"1301902062000","name":"Robertson White","type":"Person","_key":"71323"} +{"label":"George Applewhite","version":16,"id":"111170","lastModified":"1301902062000","name":"George Applewhite","type":"Person","_key":"71324"} +{"label":"James B. Clark","version":31,"id":"38250","lastModified":"1301901593000","name":"James B. Clark","type":"Person","_key":"71325"} +{"label":"Pandorum","description":"Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone - and the reality of their situation is more horrifying than they could have imagined.","id":"19898","runtime":108,"imdbId":"tt1188729","homepage":"http:\/\/www.pandorummovie.com\/","version":250,"lastModified":"1302143776000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6d3\/4bc957d3017a3c57fe0276d3\/pandorum-mid.jpg","studio":"Overture Films","genre":"Action","title":"Pandorum","releaseDate":1252368000000,"language":"en","tagline":"Don't fear the end of the world. Fear what happens next.","type":"Movie","_key":"71326"} +{"label":"Cung Le","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/739\/4cbef95d7b9aa138d5001739\/cung-le-profile.jpg","version":30,"id":"116637","lastModified":"1302143775000","name":"Cung Le","type":"Person","_key":"71327"} +{"label":"Asia Luna Mohmand","version":20,"id":"132181","lastModified":"1302143776000","name":"Asia Luna Mohmand","type":"Person","_key":"71328"} +{"label":"Delphine Chuillot","version":24,"id":"132182","lastModified":"1302143776000","name":"Delphine Chuillot","type":"Person","_key":"71329"} +{"label":"Julian Rappe","version":20,"id":"132183","lastModified":"1302143776000","name":"Julian Rappe","type":"Person","_key":"71330"} +{"label":"Marco Albrecht","version":19,"id":"132184","lastModified":"1302143776000","name":"Marco Albrecht","type":"Person","_key":"71331"} +{"label":"Dawid Szatarski","version":19,"id":"132185","lastModified":"1302143776000","name":"Dawid Szatarski","type":"Person","_key":"71332"} +{"label":"Nico Marquardt","version":19,"id":"132186","lastModified":"1302143776000","name":"Nico Marquardt","type":"Person","_key":"71333"} +{"label":"Don Jeanes","version":19,"id":"132187","lastModified":"1302143776000","name":"Don Jeanes","type":"Person","_key":"71334"} +{"label":"David P. Johnson","version":19,"id":"116243","lastModified":"1302143776000","name":"David P. Johnson","type":"Person","_key":"71335"} +{"label":"Couples Retreat","description":"Desperate to save their marriage, one couple convinces three other couples to go in on a group rate price for an island retreat designed for troubled unions. But the \"mandatory therapy\" brews up nothing but trouble for everyone.","id":"19899","runtime":113,"imdbId":"tt1078940","trailer":"http:\/\/www.youtube.com\/watch?v=JcwGywJrulQ","homepage":"http:\/\/www.couplesretreatmovie.com\/","version":299,"lastModified":"1301901490000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5c5\/4d3e05787b9aa15bbb0005c5\/couples-retreat-mid.jpg","studio":"Universal Film","genre":"Comedy","title":"Couples Retreat","releaseDate":1255046400000,"language":"en","tagline":"It may be paradise... but it's no vacation.","type":"Movie","_key":"71336"} +{"label":"Kali Hawk","version":25,"id":"89462","lastModified":"1301901463000","name":"Kali Hawk","type":"Person","_key":"71337"} +{"label":"Weather Girl","description":"After learning her boyfriend (Harmon) cheated on her with his co-host (Olson), a Seattle morning show weather girl (O\u2019Kelley) freaks out on-air and is fired. Forced to move in with her little brother (Devlin) and deal with his best friend (Adams), she has to learn to cope with being 35, single, unemployed, and unfortunately famous for being the Sassy Weather Girl who lost it on live television.","id":"19900","runtime":92,"imdbId":"tt1085515","homepage":"http:\/\/weathergirlmovie.com\/","version":197,"lastModified":"1301903987000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/701\/4bc957dd017a3c57fe027701\/weather-girl-mid.jpg","genre":"Action","title":"Weather Girl","releaseDate":1247184000000,"language":"en","type":"Movie","_key":"71338"} +{"label":"Tricia O'Kelley","version":17,"id":"105715","lastModified":"1301902317000","name":"Tricia O'Kelley","type":"Person","_key":"71339"} +{"label":"Kaitlin Olson","version":18,"id":"95102","lastModified":"1301902062000","name":"Kaitlin Olson","type":"Person","_key":"71340"} +{"label":"Daybreakers","description":"In a world 10 years into the future, vampires make up the vast majority of the population with only 5% of the human race remaining. This presents particular challenges as the vampires' food supply - human blood - is dwindling and rationing is now the norm. There is growing evidence that vampires deprived of an adequate blood supply are themselves evolving into wild, vile creatures that attack anyone and anything in order to survive. Dr. Edward Dalton, a vampire and hematologist who works for a p","id":"19901","runtime":98,"imdbId":"tt0433362","trailer":"http:\/\/www.youtube.com\/watch?v=ayYiMygqlfo","homepage":"http:\/\/www.daybreakersmovie.com\/","version":506,"lastModified":"1301930781000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4c2a78d57b9aa15e99000048\/daybreakers-mid.jpg","studio":"Lionsgate","genre":"Action","title":"Daybreakers","releaseDate":1254355200000,"language":"en","tagline":"In 2019, The Most Precious Natural Resource... Is Us.","type":"Movie","_key":"71341"} +{"label":"The Stepfather","description":"Michael Harding (Penn Badgley) returns home from military school to find his mother (Sela Ward) happily in love and living with her new boyfriend, David (Dylan Walsh). As the two men get to know each other, Michael becomes more and more suspicious of the man who is always there with a helpful hand. Is he really the man of her dreams or could David be hiding a dark side?","id":"19904","runtime":101,"imdbId":"tt0814335","trailer":"http:\/\/www.youtube.com\/watch?v=tSVmrqAMQZA","homepage":"http:\/\/www.welcometothefamily.com\/","version":262,"lastModified":"1301902955000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/644\/4caa0a305e73d643eb000644\/the-stepfather-mid.jpg","studio":"Screen Gems","genre":"Horror","title":"The Stepfather","releaseDate":1255651200000,"language":"en","type":"Movie","_key":"71342"} +{"label":"Penn Badgley","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/55a\/4cf136ee7b9aa13eea00055a\/penn-badgley-profile.jpg","version":33,"id":"110927","lastModified":"1301901348000","name":"Penn Badgley","type":"Person","_key":"71343"} +{"label":"Nancy Linehan Charles","version":17,"id":"110928","lastModified":"1301902646000","name":"Nancy Linehan Charles","type":"Person","_key":"71344"} +{"label":"Marcuis Harris","version":17,"id":"110929","lastModified":"1301902646000","name":"Marcuis Harris","type":"Person","_key":"71345"} +{"label":"Braeden Lemasters","version":18,"id":"107437","lastModified":"1301902476000","name":"Braeden Lemasters","type":"Person","_key":"71346"} +{"label":"Skyler Samuels","version":20,"id":"110930","lastModified":"1301902303000","name":"Skyler Samuels","type":"Person","_key":"71347"} +{"label":"Blue Deckert","version":17,"id":"110931","lastModified":"1301902646000","name":"Blue Deckert","type":"Person","_key":"71348"} +{"label":"The Goods: Live Hard, Sell Hard","description":"Who is Don Ready? Salesman? Lover? Song Stylist? Semi-professional dolphin trainer? Ready is all of the above - except for a dolphin trainer. When he\u2019s asked to help save an ailing local car dealership from bankruptcy, Ready and his ragtag crew descend on the town of Temecula like a pack of coyotes on a basket full of burgers.","id":"19905","runtime":90,"imdbId":"tt1092633","homepage":"http:\/\/www.livehardsellhard.com\/","version":416,"lastModified":"1301903188000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/315\/4c79c6d95e73d613d3000315\/the-goods-live-hard-sell-hard-mid.jpg","studio":"Paramount Vantage","genre":"Comedy","title":"The Goods: Live Hard, Sell Hard","releaseDate":1250208000000,"language":"en","type":"Movie","_key":"71349"} +{"label":"Neal Brennan","version":27,"id":"57692","lastModified":"1301901833000","name":"Neal Brennan","type":"Person","_key":"71350"} +{"label":"Zombieland","description":"An easily spooked guy, Columbus, joins forces with wild man Tallahassee to fight for survival in a world virtually taken over by freakish zombies. As they destroy scores of the undead, they meet up with two other survivors, Little Rock and Wichita, and journey to a supposedly safe abandoned amusement park.","id":"19908","runtime":87,"imdbId":"tt1156398","trailer":"http:\/\/www.youtube.com\/watch?v=071KqJu7WVo","homepage":"http:\/\/www.zombieland.com\/","version":438,"lastModified":"1301929768000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/340\/4d1d871d5e73d66b2d000340\/zombieland-mid.jpg","studio":"Sony Pictures","genre":"Comedy","title":"Zombieland","releaseDate":1255046400000,"language":"en","tagline":"This place is so dead","type":"Movie","_key":"71351"} +{"label":"Derek Graf","version":23,"id":"112119","lastModified":"1301901550000","name":"Derek Graf","type":"Person","_key":"71352"} +{"label":"Ruben Fleischer","version":25,"id":"91268","lastModified":"1301901485000","name":"Ruben Fleischer","type":"Person","_key":"71353"} +{"label":"The Final Destination","description":"On what should have been a fun-filled day at the races, Nick O\u2019Bannon has a horrific premonition in which a bizarre sequence of events causes multiple race cars to crash, sending flaming debris into the stands, brutally killing his friends and causing the upper deck of the stands to collapse on him. ","id":"19912","runtime":82,"imdbId":"tt1144884","trailer":"http:\/\/www.youtube.com\/watch?v=uqVo3BRftuw","homepage":"http:\/\/www.TheFinalDestinationMovie.com\/","version":276,"lastModified":"1302078461000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/802\/4d67bedd7b9aa12978003802\/the-final-destination-mid.jpg","studio":"New Line Cinema","genre":"Action","title":"The Final Destination","releaseDate":1251417600000,"language":"en","type":"Movie","_key":"71354"} +{"label":"Bobby Campo","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c75\/4d52d7207b9aa13aba011c75\/bobby-campo-profile.jpg","version":29,"id":"94421","lastModified":"1302078461000","name":"Bobby Campo","type":"Person","_key":"71355"} +{"label":"Shantel VanSanten","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/c69\/4d52d6ac7b9aa13aba011c69\/shantel-vansanten-profile.jpg","version":26,"id":"94423","lastModified":"1302078461000","name":"Shantel VanSanten","type":"Person","_key":"71356"} +{"label":"Haley Webb","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/e7f\/4d52d7907b9aa13ab8011e7f\/haley-webb-profile.jpg","version":24,"id":"94424","lastModified":"1302078461000","name":"Haley Webb","type":"Person","_key":"71357"} +{"label":"Stephanie Honore","version":22,"id":"94427","lastModified":"1302078461000","name":"Stephanie Honore","type":"Person","_key":"71358"} +{"label":"Lara Grice","version":22,"id":"94428","lastModified":"1302078461000","name":"Lara Grice","type":"Person","_key":"71359"} +{"label":"Jackson Walker","version":22,"id":"94429","lastModified":"1302078461000","name":"Jackson Walker","type":"Person","_key":"71360"} +{"label":"(500) Days of Summer","description":"Shot as a nonlinear retrospective of his now ended relationship with Summer Finn (Deschanel), depressed greeting card writer Tom Hansen (Gordon-Levitt) examines the events in the 500 days of their intersecting lives. Through his jaded memories Tom comes to conclusions about himself, Summer, love, work, and moving on with your life.","id":"19913","runtime":95,"imdbId":"tt1022603","trailer":"http:\/\/www.youtube.com\/watch?v=PsD0NpFSADM","homepage":"http:\/\/500days.com","version":278,"lastModified":"1301928910000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/048\/4c3fbb6f7b9aa1427f000048\/500-days-of-summer-mid.jpg","studio":"Sneak Preview Entertainment","genre":"Comedy","title":"(500) Days of Summer","releaseDate":1231718400000,"language":"en","tagline":"Boy meets girl. Boy falls in love. Girl doesn't.","type":"Movie","_key":"71361"} +{"label":"Rachel Boston","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/059\/4d33555b5e73d63356002059\/rachel-boston-profile.jpg","version":28,"birthday":"389743200000","id":"96624","birthplace":"Chattanooga, Tennessee, USA","lastModified":"1301901207000","name":"Rachel Boston","type":"Person","_key":"71362"} +{"label":"Minka Kelly","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/dee\/4bfeb670017a3c7033000dee\/minka-kelly-profile.jpg","version":30,"id":"96625","lastModified":"1301902304000","name":"Minka Kelly","type":"Person","_key":"71363"} +{"label":"Spread","description":"\"Spread\" is a fresh, funny, and racy look at the trials and tribulations of sleeping your way to a life of privilege in Los Angeles. Comic and karmic, the film is an immorality tale about a gorgeous guy who gives women what they want in order to live exactly as he likes.","id":"19918","runtime":97,"imdbId":"tt1186370","trailer":"http:\/\/www.youtube.com\/watch?v=U6_QB2icrY8","homepage":"http:\/\/www.spread-themovie.com\/","version":292,"lastModified":"1301952672000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/82e\/4bc95811017a3c57fe02782e\/spread-mid.jpg","studio":"Katalyst Films","genre":"Comedy","title":"Spread","releaseDate":1247011200000,"language":"en","type":"Movie","_key":"71364"} +{"label":"Ocean Voyagers","description":"No overview found.","id":"19921","runtime":72,"imdbId":"tt1415888","version":131,"lastModified":"1302018425000","title":"Ocean Voyagers","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71365"} +{"label":"9 to 5: Days in Porn","description":"9to5 - Days in Porn focuses on the people behind a controversial and multi-billion dollar industry \"The Adult Entertainment industry\". It depicts their stories, each one different, unadorned and authentic, without glorification or prejudice. It delivers deep insight into their personal lives - from glamorous to grotesque - strange, fascinating, offensive, absurd and sometimes funny moments all at once.","id":"19929","runtime":113,"imdbId":"tt1278293","trailer":"http:\/\/www.youtube.com\/watch?v=1969","homepage":"http:\/\/www.9to5-themovie.com\/","version":75,"lastModified":"1301905556000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/83f\/4bc95813017a3c57fe02783f\/9-to-5-days-in-porn-mid.jpg","title":"9 to 5: Days in Porn","releaseDate":1219536000000,"language":"en","type":"Movie","_key":"71366"} +{"label":"Jens Hoffmann","version":20,"id":"85333","lastModified":"1301902381000","name":"Jens Hoffmann","type":"Person","_key":"71367"} +{"label":"Appunti per un'Orestiade africana","description":"The director presents takes and scenes filmed on location in Africa for a film-that-never-was, a black Oresteia.","id":"19930","runtime":65,"imdbId":"tt0066163","version":46,"lastModified":"1301906144000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/84d\/4bc95813017a3c57fe02784d\/appunti-per-un-orestiade-africana-mid.jpg","title":"Appunti per un'Orestiade africana","releaseDate":28684800000,"language":"en","type":"Movie","_key":"71368"} +{"label":"The Joy Luck Club","description":"Through a series of flashbacks, four young chinese women born in America and their respective mothers born in feudal China, explore their past. This search will help them understand their difficult mother\/daughter relationship.","id":"19931","runtime":139,"imdbId":"tt0107282","version":162,"lastModified":"1301925802000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88c\/4c706f3a5e73d65f7a00088c\/the-joy-luck-club-mid.jpg","studio":"Hollywood Pictures","genre":"Drama","title":"The Joy Luck Club","releaseDate":747446400000,"language":"en","type":"Movie","_key":"71369"} +{"label":"The Brave Little Toaster","description":"A group of dated appliances find themselves stranded in a summer home that their family had just sold decide to, a la The Incredible Journey, seek their young 8 year old \"master\". Children's film which on the surface is a frivolous fantasy, but with a dark subtext of abandonment, obsolescence, and loneliness.","id":"19933","runtime":90,"imdbId":"tt0092695","trailer":"http:\/\/www.youtube.com\/watch?v=rlpDZ5-xwLg","version":81,"lastModified":"1301904147000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a48\/4d2d16425e73d63a6000ba48\/the-brave-little-toaster-mid.jpg","studio":"Buena Vista Pictures","genre":"Adventure","title":"The Brave Little Toaster","releaseDate":552873600000,"language":"en","type":"Movie","_key":"71370"} +{"label":"Deanna Oliver","version":29,"id":"56055","lastModified":"1301901685000","name":"Deanna Oliver","type":"Person","_key":"71371"} +{"label":"Jerry Rees","version":22,"id":"108217","lastModified":"1301902350000","name":"Jerry Rees","type":"Person","_key":"71372"} +{"label":"Ce soir je dors chez toi","description":"Alex aime La\u00ebtitia. La\u00ebtitia a 30 ans. Elle est belle, dr\u00f4le, effervescente, solaire. La\u00ebtitia aime Alex. Elle adore m\u00eame Jacques, le meilleur ami et l'\u00e9diteur d'Alex ; bref c'est la femme de sa vie, la m\u00e8re de ses futurs enfants, sa lumi\u00e8re, sa raison de vivre mais... Alex pr\u00e9f\u00e8re quand m\u00eame qu'elle reste bien chez elle... \"La vie \u00e0 deux : oui ! mais pas dans le m\u00eame appartement...\"","id":"19934","runtime":84,"imdbId":"tt1024896","version":93,"lastModified":"1301908102000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/85f\/4bc95815017a3c57fe02785f\/ce-soir-je-dors-chez-toi-mid.jpg","studio":"Alter Films","genre":"Comedy","title":"Ce soir je dors chez toi","releaseDate":1195603200000,"language":"en","type":"Movie","_key":"71373"} +{"label":"Rhiles Djarouane","version":17,"id":"109126","lastModified":"1301902657000","name":"Rhiles Djarouane","type":"Person","_key":"71374"} +{"label":"H\u00e9l\u00e8ne Patarot","version":17,"id":"109127","lastModified":"1301902946000","name":"H\u00e9l\u00e8ne Patarot","type":"Person","_key":"71375"} +{"label":"Butterfly","description":"Flavia is a thirtysomething married teacher. She has suppressed the memory of her adolescent lesbian fling with Jin and is stuck in a stifling marriage. A chance encounter in a supermarket with the playful and seductive singer Yip reawakens dormant feelings and she begins to think back on her teenage affair with Jin. ","id":"19935","runtime":124,"imdbId":"tt0440939","version":436,"lastModified":"1301951467000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/870\/4bc95816017a3c57fe027870\/hu-die-mid.jpg","genre":"Drama","title":"Butterfly","releaseDate":1101945600000,"language":"en","type":"Movie","_key":"71376"} +{"label":"Yan Yan Mak","version":22,"id":"85334","lastModified":"1301902500000","name":"Yan Yan Mak","type":"Person","_key":"71377"} +{"label":"Hipnos","description":"The horror of being dead. The nightmare of still being alive.","id":"19936","runtime":93,"imdbId":"tt0376650","version":76,"lastModified":"1301908270000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/881\/4bc95816017a3c57fe027881\/hipnos-mid.jpg","genre":"Horror","title":"Hipnos","releaseDate":1097193600000,"language":"en","type":"Movie","_key":"71378"} +{"label":"David Carreras","version":23,"id":"85336","lastModified":"1301902419000","name":"David Carreras","type":"Person","_key":"71379"} +{"label":"PilotsEYE.tv San Francisco LH458 A340-600","description":"No overview found.","id":"19938","runtime":52,"homepage":"www.pilotseye.tv","version":13,"lastModified":"1301906148000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/88a\/4bc95817017a3c57fe02788a\/pilotseye-tv-san-francisco-lh458-a340-600-mid.jpg","studio":"AignerMedia","genre":"Documentary","title":"PilotsEYE.tv San Francisco LH458 A340-600","releaseDate":1183248000000,"language":"en","type":"Movie","_key":"71380"} +{"label":"Cape No. 7","description":"Aga, a band singer, returns to Hengchun with frustration. Tomoko is a Japanese model assigned to organize a local warm-up band for the Japanese super star beach concert. Together with other five ordinary Hengchun residents who were not expected to be great or anything, they formed an impossible band.","id":"19939","runtime":129,"imdbId":"tt1267160","homepage":"http:\/\/blog.pixnet.net\/cape7","version":189,"lastModified":"1302093197000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/6ad\/4c5b2a207b9aa151f20006ad\/hai-kak-chhit-ho-mid.jpg","studio":"ARS Film Production","genre":"Comedy","title":"Cape No. 7","releaseDate":1219363200000,"language":"en","type":"Movie","_key":"71381"} +{"label":"Te-Sheng Wei","version":28,"id":"85337","lastModified":"1301901810000","name":"Te-Sheng Wei","type":"Person","_key":"71382"} +{"label":"Chie Tanaka","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/d28\/4d14b92a7b9aa1148e001d28\/chie-tanaka-profile.jpg","version":24,"id":"127682","lastModified":"1301902041000","name":"Chie Tanaka","type":"Person","_key":"71383"} +{"label":"Min-Hsiung","version":23,"id":"127683","lastModified":"1301902467000","name":"Min-Hsiung","type":"Person","_key":"71384"} +{"label":"Wei-min Ying","version":23,"id":"127684","lastModified":"1301902449000","name":"Wei-min Ying","type":"Person","_key":"71385"} +{"label":"Nien-Hsien Ma","version":23,"id":"127685","lastModified":"1301902465000","name":"Nien-Hsien Ma","type":"Person","_key":"71386"} +{"label":"Johnny Chung-Jen Lin","version":23,"id":"127686","lastModified":"1301902597000","name":"Johnny Chung-Jen Lin","type":"Person","_key":"71387"} +{"label":"Joanne","version":23,"id":"127687","lastModified":"1301902589000","name":"Joanne","type":"Person","_key":"71388"} +{"label":"Shino Lin","version":23,"id":"127688","lastModified":"1301902589000","name":"Shino Lin","type":"Person","_key":"71389"} +{"label":"Ju-Lung Ma","version":24,"id":"127689","lastModified":"1301902534000","name":"Ju-Lung Ma","type":"Person","_key":"71390"} +{"label":"Bjanav Zenror","version":24,"id":"127690","lastModified":"1301902721000","name":"Bjanav Zenror","type":"Person","_key":"71391"} +{"label":"Hsiao-Lan Pei","version":23,"id":"127691","lastModified":"1301902589000","name":"Hsiao-Lan Pei","type":"Person","_key":"71392"} +{"label":"Kuei Chang","version":23,"id":"127692","lastModified":"1301902589000","name":"Kuei Chang","type":"Person","_key":"71393"} +{"label":"Kousuke Atari","version":23,"id":"127693","lastModified":"1301902589000","name":"Kousuke Atari","type":"Person","_key":"71394"} +{"label":"Wen-Yin Liang","version":23,"id":"127694","lastModified":"1301902425000","name":"Wen-Yin Liang","type":"Person","_key":"71395"} +{"label":"Yi-Hsuan Kuo","version":23,"id":"127695","lastModified":"1301902654000","name":"Yi-Hsuan Kuo","type":"Person","_key":"71396"} +{"label":"Van","version":23,"id":"96907","lastModified":"1301902507000","name":"Van","type":"Person","_key":"71397"} +{"label":"Frame Of Mind","description":"What happens when the truth is not enough? A New Jersey police detective comes across new evidence in the Kennedy assassination","id":"19940","runtime":90,"imdbId":"tt0837795","version":92,"lastModified":"1301905214000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/376\/4d45f1705e73d6108f000376\/frame-of-mind-mid.jpg","title":"Frame Of Mind","releaseDate":1230768000000,"language":"en","type":"Movie","_key":"71398"} +{"label":"Mannaja","description":"Maurizio Merli stars as a hatchet-wielding bounty hunter with a dark past and an even more desperate future. But when he disrupts the balance of power in a corrupt mining town, he unleashes a firestorm of brutality, betrayal and cold-blooded murder. Now, one man stalks a savage land where justice walks a razor and no bullets slice deeper than vengeance. He is A MAN CALLED BLADE.","id":"19946","runtime":96,"imdbId":"tt0076360","version":85,"lastModified":"1301834437000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8a1\/4bc95818017a3c57fe0278a1\/mannaja-mid.jpg","genre":"Western","title":"Mannaja","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71399"} +{"label":"Maurizio Merli","version":20,"id":"85338","lastModified":"1301902725000","name":"Maurizio Merli","type":"Person","_key":"71400"} +{"label":"The Adventures of Mark Twain","description":"This feature-length Claymation fantasy follows the adventures of Tom Sawyer, Becky Thatcher, and Huck Finn as they stowaway aboard the interplanetary balloon of Mark Twain. Twain, disgusted with the Human Race, is intent upon finding Halley's Comet and crashing into it, achieving his \"destiny.\" It's up to Tom, Becky, and Huck to convince him that his judgment is wrong","id":"19947","runtime":86,"imdbId":"tt0088678","version":63,"lastModified":"1301908269000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8aa\/4bc95818017a3c57fe0278aa\/the-adventures-of-mark-twain-mid.jpg","title":"The Adventures of Mark Twain","releaseDate":504921600000,"language":"en","type":"Movie","_key":"71401"} +{"label":"Intoxicated","description":"Watch Devon wander and explore her inhibitions, tasting forbidden fruit and fantasizing without reservation. She exists in this naughty playhouse where rules are an illusion and a sadistic master lies in wait. Come and take part in her intoxication. Devon's stars shine in this amazing production proudly boasting her debut anal scene.","id":"19949","runtime":100,"imdbId":"tt0862718","version":77,"lastModified":"1301905234000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8b3\/4bc9581c017a3c57fe0278b3\/intoxicated-mid.jpg","studio":"Digital Playground","genre":"Erotic","title":"Intoxicated","releaseDate":1133308800000,"language":"en","tagline":"Devon's first anal!","type":"Movie","_key":"71402"} +{"label":"Charlotte Stokely","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13a\/4c4162dc7b9aa1459100013a\/charlotte-stokely-profile.jpg","version":31,"id":"124944","lastModified":"1301901505000","name":"Charlotte Stokely","type":"Person","_key":"71403"} +{"label":"Alicia Alighatti","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/14c\/4c4164a37b9aa1459100014c\/alicia-alighatti-profile.jpg","version":29,"id":"124945","lastModified":"1301901804000","name":"Alicia Alighatti","type":"Person","_key":"71404"} +{"label":"Karlie Montana","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/11c\/4c415f8d7b9aa1459000011c\/karlie-montana-profile.jpg","version":34,"id":"124946","lastModified":"1301902513000","name":"Karlie Montana","type":"Person","_key":"71405"} +{"label":"Csilla","version":23,"id":"135595","lastModified":"1301902641000","name":"Csilla","type":"Person","_key":"71406"} +{"label":"Marlena Mason","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/18e\/4ca720995e73d643ee00018e\/marlena-mason-profile.jpg","version":22,"id":"135596","lastModified":"1301902304000","name":"Marlena Mason","type":"Person","_key":"71407"} +{"label":"Sandra Shine","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/13e\/4ca71ebc5e73d643ed00013e\/sandra-shine-profile.jpg","version":21,"id":"135597","lastModified":"1301902419000","name":"Sandra Shine","type":"Person","_key":"71408"} +{"label":"Bunny Luv","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/140\/4ca6f5dd5e73d643ec000140\/bunny-luv-profile.jpg","biography":"Pornographic actress until 2005, since 2004 a director for Digital Playground. ","version":88,"birthday":"305938800000","id":"124942","birthplace":"Sacramento, California, USA","lastModified":"1301901299000","name":"Bunny Luv","type":"Person","_key":"71409"} +{"label":"13B","description":"Manohar, an upwardly mobile middle class Indian moves into a new apartment -13B on the 13th floor with his family. From the first day in their new home, the women are hooked on to a new TV show 'Sab Khairiyat'. The show is about a family eerily similar to theirs who have also just moved into a new house. As the TV show unfolds, all the incidents that happen in the show start happening to them.","id":"19950","runtime":137,"imdbId":"tt1385824","homepage":"http:\/\/www.13b.in\/","version":139,"lastModified":"1301924089000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/5e5\/4c5ade377b9aa151f20005e5\/13b-mid.jpg","studio":"BIG Pictures","genre":"Thriller","title":"13B","releaseDate":1236297600000,"language":"en","type":"Movie","_key":"71410"} +{"label":"Sachin Khedekar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/9a6\/4d5d0d147b9aa154bf0009a6\/sachin-khedekar-profile.jpg","version":22,"id":"85589","lastModified":"1301902452000","name":"Sachin Khedekar","type":"Person","_key":"71411"} +{"label":"Sanjaih Bokaria","version":19,"id":"85590","lastModified":"1301902452000","name":"Sanjaih Bokaria","type":"Person","_key":"71412"} +{"label":"Poonam Dhillon","version":21,"id":"85592","lastModified":"1301902062000","name":"Poonam Dhillon","type":"Person","_key":"71413"} +{"label":"Dhritiman Chatterjee","version":23,"id":"85593","lastModified":"1301902452000","name":"Dhritiman Chatterjee","type":"Person","_key":"71414"} +{"label":"Deepak Dobriyal","version":25,"id":"85594","lastModified":"1301902452000","name":"Deepak Dobriyal","type":"Person","_key":"71415"} +{"label":"Sampath Raj","version":19,"id":"85595","lastModified":"1301902452000","name":"Sampath Raj","type":"Person","_key":"71416"} +{"label":"Vikram K. Kumar","version":20,"id":"85598","lastModified":"1301902452000","name":"Vikram K. Kumar","type":"Person","_key":"71417"} +{"label":"1920","description":"The year is 1920 and the house isolated in the wilderness has a secret. It is waiting for the curse to come true. For years, everyone who has bought the house and tried to pull it down has died of mysterious circumstances. It is like the house has a will and a life of its own.","id":"19951","runtime":138,"imdbId":"tt1301698","version":108,"lastModified":"1302233031000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8c9\/4bc9581d017a3c57fe0278c9\/1920-mid.jpg","studio":"ASA Film Pvt Ltd","genre":"Drama","title":"1920","releaseDate":1221177600000,"language":"en","type":"Movie","_key":"71418"} +{"label":"Vikram Bhatt","version":27,"id":"85387","lastModified":"1301902062000","name":"Vikram Bhatt","type":"Person","_key":"71419"} +{"label":"Rajneesh Duggal","version":19,"id":"86029","lastModified":"1301901717000","name":"Rajneesh Duggal","type":"Person","_key":"71420"} +{"label":"Adah Sharma","version":19,"id":"86030","lastModified":"1301902451000","name":"Adah Sharma","type":"Person","_key":"71421"} +{"label":"Anjori Alagh","version":19,"id":"86032","lastModified":"1301902451000","name":"Anjori Alagh","type":"Person","_key":"71422"} +{"label":"Shri Vallabh Vyas","version":18,"id":"86025","lastModified":"1301902319000","name":"Shri Vallabh Vyas","type":"Person","_key":"71423"} +{"label":"Indraneil Sengupta","version":17,"id":"86033","lastModified":"1301902234000","name":"Indraneil Sengupta","type":"Person","_key":"71424"} +{"label":"Best Men","description":"Groom is picked up from prison by his groomsmen. On way to wedding he stops and tries to rob a bank, involving his friends.","id":"19952","runtime":0,"imdbId":"tt0118702","version":108,"lastModified":"1301905816000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/4d9\/4c53a2dc7b9aa13d4b0004d9\/best-men-mid.jpg","studio":"Specialty Films","genre":"Comedy","title":"Best Men","releaseDate":852076800000,"language":"en","type":"Movie","_key":"71425"} +{"label":"The Incredible Mr. Limpet","description":"Milquetoast Henry Limpet experiences his fondest wish and is transformed into a fish. As a talking fish he assists the US Navy in hunting German submarines during World War II.","id":"19953","runtime":99,"imdbId":"tt0058230","version":173,"lastModified":"1301923202000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8d2\/4bc9581e017a3c57fe0278d2\/the-incredible-mr-limpet-mid.jpg","studio":"Warner Bros. Pictures","genre":"Animation","title":"The Incredible Mr. Limpet","releaseDate":-181872000000,"language":"en","tagline":"GLUB! The Face That Launched A Thousand Torpedoes!","type":"Movie","_key":"71426"} +{"label":"Andrew Duggan","version":34,"id":"86368","lastModified":"1301902195000","name":"Andrew Duggan","type":"Person","_key":"71427"} +{"label":"'Weird Al' Yankovic: (There's No) Going Home","description":"Parody of The Disney Channel's \"Going Home\" music series. Features \"Weird Al\" Yankovic in concert from Vancouver's Orpheum Theatre performing spoofs of many popular songs, Al travelling on the bus with his band and in their hotel room as well as tongue-in-cheek interviews with Al and his family.","id":"19954","runtime":0,"imdbId":"tt0166065","version":111,"lastModified":"1301908446000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8db\/4bc9581e017a3c57fe0278db\/weird-al-yankovic-there-s-no-going-home-mid.jpg","title":"'Weird Al' Yankovic: (There's No) Going Home","releaseDate":820454400000,"language":"en","type":"Movie","_key":"71428"} +{"label":"Pr\u00eate-moi ta main","description":"Life is easy for 43-year-old Luis, a happy single guy, fulfilled in his job of star nose with a perfume creation company, cosseted by his mother and five sisters. It could have lasted for a whole life, but fed up with mollycoddling and helping him, his mother and sisters decide it's time he got married, and the sooner the better!","id":"19955","runtime":90,"imdbId":"tt0478724","trailer":"http:\/\/www.youtube.com\/watch?v=pLaqnK4UVIg","version":60,"lastModified":"1301903453000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e0\/4bc9581e017a3c57fe0278e0\/prete-moi-ta-main-mid.jpg","genre":"Comedy","title":"Pr\u00eate-moi ta main","releaseDate":1162339200000,"language":"en","type":"Movie","_key":"71429"} +{"label":"Eric Lartigau","version":32,"id":"85340","lastModified":"1301902027000","name":"Eric Lartigau","type":"Person","_key":"71430"} +{"label":"Border Town","description":"In the five years since human traffickers kidnapped his daughter Vincent has traveled the world and left a bloody wake behind him. Now he has found the town where his daughter is being held and the pimp who's keeping her. Over one night in Solo, Mexico Vincent is determined to fulfill the promise he made years ago: get his daughter back and kill the man who took her. ","id":"19956","runtime":85,"imdbId":"tt1218503","version":117,"lastModified":"1301597636000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8e9\/4bc9581f017a3c57fe0278e9\/border-town-mid.jpg","genre":"Action","title":"Border Town","releaseDate":1246147200000,"language":"en","type":"Movie","_key":"71431"} +{"label":"Ricardo Melindez","version":19,"id":"85341","lastModified":"1301902500000","name":"Ricardo Melindez","type":"Person","_key":"71432"} +{"label":"Linda Rodriguez","version":19,"id":"85342","lastModified":"1301902674000","name":"Linda Rodriguez","type":"Person","_key":"71433"} +{"label":"Gary Wade Morton","version":19,"id":"85343","lastModified":"1301902674000","name":"Gary Wade Morton","type":"Person","_key":"71434"} +{"label":"Knights of the Round Table","description":"In Camelot, kingdom of Arthur and Merlin, Lancelot is well known for his courage and honor. But one day he must quit Camelot and the Queen Guinevere's love, leaving the Round Table without protection.","id":"19957","runtime":115,"imdbId":"tt0045966","version":141,"lastModified":"1301906456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/c3c\/4d16ba977b9aa11482002c3c\/knights-of-the-round-table-mid.jpg","studio":"Metro-Goldwyn-Mayer","genre":"Adventure","title":"Knights of the Round Table","releaseDate":-505785600000,"language":"en","type":"Movie","_key":"71435"} +{"label":"Anne Crawford","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/17d\/4c20c78e7b9aa1317c00017d\/anne-crawford-profile.jpg","version":21,"id":"85344","lastModified":"1301902199000","name":"Anne Crawford","type":"Person","_key":"71436"} +{"label":"Maureen Swanson","version":20,"id":"85346","lastModified":"1301902388000","name":"Maureen Swanson","type":"Person","_key":"71437"} +{"label":"Gabriel Woolf","version":20,"id":"85347","lastModified":"1301902705000","name":"Gabriel Woolf","type":"Person","_key":"71438"} +{"label":"Anthony Forwood","version":24,"id":"85348","lastModified":"1301902416000","name":"Anthony Forwood","type":"Person","_key":"71439"} +{"label":"The Year My Voice Broke","description":"Coming-of age feature, set in a New South Wales country town in the 1960s, about a 15 year-old boy. It follows his loves and how he copes with life's problems such as death and departure.","id":"19958","runtime":105,"imdbId":"tt0094347","homepage":"http:\/\/colsearch.nfsa.afc.gov.au\/nfsa\/search\/display\/display.w3p;adv=no;page=0;query=The%20Year%20My","version":249,"lastModified":"1301948434000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/8ee\/4bc95820017a3c57fe0278ee\/the-year-my-voice-broke-mid.jpg","studio":"Kennedy Miller","genre":"Drama","title":"The Year My Voice Broke","releaseDate":536457600000,"language":"en","type":"Movie","_key":"71440"} +{"label":"Loene Carmen","version":20,"id":"85350","lastModified":"1301902500000","name":"Loene Carmen","type":"Person","_key":"71441"} +{"label":"Judi Farr","version":18,"id":"85353","lastModified":"1301902626000","name":"Judi Farr","type":"Person","_key":"71442"} +{"label":"Nick Tate","version":32,"id":"85354","lastModified":"1301902513000","name":"Nick Tate","type":"Person","_key":"71443"} +{"label":"Surrogates","description":"Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop (Willis) is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.","id":"19959","runtime":88,"imdbId":"tt0986263","trailer":"http:\/\/www.youtube.com\/watch?v=Zl_h9RaL0es","homepage":"http:\/\/chooseyoursurrogate.com\/","version":323,"lastModified":"1301921339000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/90d\/4bc95826017a3c57fe02790d\/surrogates-mid.jpg","studio":"Touchstone Pictures","genre":"Action","title":"Surrogates","releaseDate":1253836800000,"language":"en","type":"Movie","_key":"71444"} +{"label":"Stormy Night","description":"A goat named Mei wanders into a barn one night seeking shelter from a storm. In the barn, the goat meets another refugee. The two can neither see nor smell each other, but never the less they huddled together fending off the cold, and begin to talk. Eventually they establish a friendship. The two decide to meet later and will recognized each other by using the password \"one stormy night.\" The next day, when they meet, Mei learns that his companion from the night before was a wolf named Gabu. Des","id":"19961","runtime":110,"imdbId":"tt0498465","version":100,"lastModified":"1301906592000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a62\/4c7091267b9aa13ab9000a62\/arashi-no-yoru-ni-mid.jpg","genre":"Animation","title":"Stormy Night","releaseDate":1134172800000,"language":"en","type":"Movie","_key":"71445"} +{"label":"Mike Bassett: England Manager","description":"Mike Bassett: England Manager is an hilarious British Comedy that stars Ricky Thomlinson. Featuring Cameos from Barry Venison, Gabby Yorath, Atomic Kitten and Pele.When the England manager has a heart attack, footballs' top brass turn to Mike Bassett (basically no one else wanted the job). England lose Mike's first two games in charge. His team struggles to a goal-less draw in the final qualifying match but, thanks to a fluke result elsewhere, England qualify for the finals in Brazil.In South Am","id":"19962","runtime":89,"imdbId":"tt0282744","trailer":"http:\/\/www.youtube.com\/watch?v=DReAQEpEl7w","version":59,"lastModified":"1301906182000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/925\/4bc95828017a3c57fe027925\/mike-bassett-england-manager-mid.jpg","genre":"Comedy","title":"Mike Bassett: England Manager","releaseDate":1001635200000,"language":"en","type":"Movie","_key":"71446"} +{"label":"Bernie","description":"Bernie, a 30 years old orphan, decides to leave his orphanage and find his parents. After an investigation, he meets Marion, a young heroin addict and falls in love with her. He believes that his family was victim of a plot and this is why they deserted him.","id":"19963","runtime":87,"imdbId":"tt0115658","homepage":"http:\/\/www.albertdupontel.com\/bernie\/bernie.html","version":88,"lastModified":"1301904608000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/92e\/4bc95829017a3c57fe02792e\/bernie-mid.jpg","genre":"Comedy","title":"Bernie","releaseDate":849052800000,"language":"en","type":"Movie","_key":"71447"} +{"label":"Loggerheads","description":"A troubled woman seeks out the child she gave up for adoption; a gay motel owner takes in a handsome drifter; and the wife of a preacher frets that a gay couple has moved in across the street. All of their lives will intersect as Loggerheads subtly draws out their secret losses and desires.","id":"19965","runtime":95,"imdbId":"tt0406038","homepage":"http:\/\/www.loggerheadsmovie.com\/","version":122,"lastModified":"1301905945000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/937\/4bc95829017a3c57fe027937\/loggerheads-mid.jpg","genre":"Drama","title":"Loggerheads","releaseDate":1129248000000,"language":"en","type":"Movie","_key":"71448"} +{"label":"The Apocalypse","description":"In this epic disaster film of faith, a mother and father search for their only child as a giant asteroid headed for Earth triggers a series of apocalyptic events.","id":"19967","runtime":94,"imdbId":"tt0958824","version":170,"lastModified":"1301919610000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/93c\/4bc95829017a3c57fe02793c\/the-apocalypse-mid.jpg","genre":"Action","title":"The Apocalypse","releaseDate":1167609600000,"language":"en","type":"Movie","_key":"71449"} +{"label":"No Time For Sergeants","description":"Georgia farm boy Will Stockdale is about to bust with pride. He\u2019s been drafted. Will\u2019s ready. But is Uncle Sam ready for Will? In No Time for Sergeants, Andy Griffith is certifiably funny in the role that clinched his stardom. Wearing a friendly, wide grin, he ambles into the U.S. Air Force \u2013 and lots of folks\u2019ll never be the same.","id":"19968","runtime":119,"imdbId":"tt0052005","version":133,"lastModified":"1301906456000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/945\/4bc9582a017a3c57fe027945\/no-time-for-sergeants-mid.jpg","genre":"Comedy","title":"No Time For Sergeants","releaseDate":-378691200000,"language":"en","type":"Movie","_key":"71450"} +{"label":"Skeleton Crew","description":"No overview found.","id":"19969","runtime":0,"imdbId":"tt1297945","version":123,"lastModified":"1301946298000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/94a\/4bc9582a017a3c57fe02794a\/skeleton-crew-mid.jpg","genre":"Horror","title":"Skeleton Crew","releaseDate":1230768000000,"language":"en","tagline":"There's no sequel for you!","type":"Movie","_key":"71451"} +{"label":"Rita Suomalainen","version":18,"id":"85355","lastModified":"1301902674000","name":"Rita Suomalainen","type":"Person","_key":"71452"} +{"label":"Blacklight Beauty","description":"From the most dangerous director in XXX comes the most mindbending porno flick yet: Blacklight Beauty, filled with backroom gangbangs, pussy wrestling, unfaithful girlfriends, oral fixations, obsessions and randy circus acts. Jarring, rocking, hypnotic and twisted, and starring twelve of the most sexually aggressive women in the world, Blacklight Beauty is a sinematic smorgasbord - feast on it. ","id":"19970","runtime":106,"imdbId":"tt0938289","version":249,"lastModified":"1302215194000","title":"Blacklight Beauty","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71453"} +{"label":"The Little Girl Who Lives Down the Lane","description":"Rynn Jacobs is a thirteen-year-old girl who lives in a secluded house that she and her father have rented in a quiet seaside community. But whenever anybody from the town tries to satisfy their curiosity, Rynn\u2019s father is never around, and it seems as if the girl is all alone. Rynn\u2019s resourcefulness is put to the test as several people try to find out what she might be hiding, including the snobby landlady and her sleazy son.","id":"19971","runtime":100,"imdbId":"tt0074806","version":104,"lastModified":"1301945700000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/334\/4c47a58a5e73d61efa000334\/the-little-girl-who-lives-down-the-lane-mid.jpg","studio":"Braun Entertainment Group","genre":"Drama","title":"The Little Girl Who Lives Down the Lane","releaseDate":220320000000,"language":"en","type":"Movie","_key":"71454"} +{"label":"Mort Shuman","version":21,"id":"125649","lastModified":"1301902903000","name":"Mort Shuman","type":"Person","_key":"71455"} +{"label":"Scott Jacoby","version":24,"id":"125650","lastModified":"1301902639000","name":"Scott Jacoby","type":"Person","_key":"71456"} +{"label":"The 300 Spartans","description":"Essentially true story of how Spartan king Leonidas led an extremely small army of Greek Soldiers (300 of his personal body guards from Sparta) to hold off an invading Persian army now thought to have numbered 250,000.","id":"19972","runtime":114,"imdbId":"tt0055719","version":137,"lastModified":"1301945342000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e51\/4be834f3017a3c35bb000e51\/the-300-spartans-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Action","title":"The 300 Spartans","releaseDate":-234144000000,"language":"en","type":"Movie","_key":"71457"} +{"label":"David Farrar","version":21,"id":"91617","lastModified":"1301902882000","name":"David Farrar","type":"Person","_key":"71458"} +{"label":"Anna Synodinou","version":17,"id":"93956","lastModified":"1301902626000","name":"Anna Synodinou","type":"Person","_key":"71459"} +{"label":"Comedian","description":"A look at the work of two stand-up comics, Jerry Seinfeld and a lesser-known newcomer, detailing the effort and frustration behind putting together a successful act and career while living a life on the road.","id":"19973","runtime":82,"imdbId":"tt0328962","version":113,"lastModified":"1301944977000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/965\/4bc9582b017a3c57fe027965\/comedian-mid.jpg","genre":"Comedy","title":"Comedian","releaseDate":1035504000000,"language":"en","type":"Movie","_key":"71460"} +{"label":"Orny Adams","version":20,"id":"85363","lastModified":"1301902188000","name":"Orny Adams","type":"Person","_key":"71461"} +{"label":"Christian Charles","version":21,"id":"85357","lastModified":"1301902374000","name":"Christian Charles","type":"Person","_key":"71462"} +{"label":"The Big Clock","description":"Stroud, a crime magazine's crusading editor has to post-pone a vacation with his wife, again, when a glamorous blonde is murdered and he is assigned by his publishing boss Janoth to find the killer. As the investigation proceeds to its conclusion, Stroud must try to disrupt his ordinarily brilliant investigative team as they increasingly build evidence (albeit wrong) that he is the killer.","id":"19974","runtime":95,"imdbId":"tt0040160","trailer":"http:\/\/www.youtube.com\/watch?v=-tqK08N_aQU","version":85,"lastModified":"1301944601000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/96e\/4bc9582b017a3c57fe02796e\/the-big-clock-mid.jpg","studio":"Paramount Pictures","genre":"Crime","title":"The Big Clock","releaseDate":-685756800000,"language":"en","type":"Movie","_key":"71463"} +{"label":"Dan Tobin","version":22,"id":"85359","lastModified":"1301902234000","name":"Dan Tobin","type":"Person","_key":"71464"} +{"label":"Elaine Riley","version":26,"id":"85360","lastModified":"1301902583000","name":"Elaine Riley","type":"Person","_key":"71465"} +{"label":"Luis Van Rooten","version":25,"id":"85361","lastModified":"1301902719000","name":"Luis Van Rooten","type":"Person","_key":"71466"} +{"label":"Margaret Field","version":20,"id":"85362","lastModified":"1301902234000","name":"Margaret Field","type":"Person","_key":"71467"} +{"label":"Care Bears Movie II: A New Generation","description":"The phenomenally popular Care Bears star in this new adventure that tells the story of the origin of the Care Bear Family, introducing the Care Bear Cubs and Care Cousin Cubs and how they became the champions of caring.","id":"19975","runtime":76,"imdbId":"tt0090799","version":126,"lastModified":"1301944381000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/977\/4bc9582f017a3c57fe027977\/care-bears-movie-ii-a-new-generation-mid.jpg","genre":"Adventure","title":"Care Bears Movie II: A New Generation","releaseDate":511747200000,"language":"en","type":"Movie","_key":"71468"} +{"label":"Dale Schott","version":19,"id":"85365","lastModified":"1301902234000","name":"Dale Schott","type":"Person","_key":"71469"} +{"label":"Hadley Kay","version":19,"id":"85367","lastModified":"1301901861000","name":"Hadley Kay","type":"Person","_key":"71470"} +{"label":"Chris Wiggins","version":20,"id":"44163","lastModified":"1301901783000","name":"Chris Wiggins","type":"Person","_key":"71471"} +{"label":"Michael Fantini","version":19,"id":"85368","lastModified":"1301902234000","name":"Michael Fantini","type":"Person","_key":"71472"} +{"label":"Maxine Miller","version":19,"id":"85366","lastModified":"1301901861000","name":"Maxine Miller","type":"Person","_key":"71473"} +{"label":"Les anges exterminateurs","description":"A filmmaker (van den Driessche) holds a series of boundary-pushing auditions for his project about female pleasure.","id":"19976","runtime":100,"imdbId":"tt0792948","version":66,"lastModified":"1301416333000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/980\/4bc9582f017a3c57fe027980\/les-anges-exterminateurs-mid.jpg","genre":"Drama","title":"Les anges exterminateurs","releaseDate":1158105600000,"language":"en","type":"Movie","_key":"71474"} +{"label":"Jean-Claude Brisseau","version":34,"id":"83046","lastModified":"1301902055000","name":"Jean-Claude Brisseau","type":"Person","_key":"71475"} +{"label":"Maroussia Dubreuil","version":22,"id":"83040","lastModified":"1301902323000","name":"Maroussia Dubreuil","type":"Person","_key":"71476"} +{"label":"Lise Bellynck","version":24,"id":"83041","lastModified":"1301902323000","name":"Lise Bellynck","type":"Person","_key":"71477"} +{"label":"Marie Allan","version":22,"id":"83042","lastModified":"1301902674000","name":"Marie Allan","type":"Person","_key":"71478"} +{"label":"Anniyan","description":"A devout and meek Iyengar and lawyer by the day and an undertaker by night who goes all out against the bad elements of the society with his gruesome murders , Ramanujam makes every kill a very gruesome and artistic one and is inspired by the Garuda Puranam. His idea is that suck a murder will reverberate with shock and awe in the society.","id":"19978","runtime":0,"imdbId":"tt0376127","version":67,"lastModified":"1301003380000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/b3a\/4d4b72967b9aa13aba006b3a\/anniyan-mid.jpg","genre":"Drama","title":"Anniyan","releaseDate":-2208988800000,"language":"en","type":"Movie","_key":"71479"} +{"label":"99","description":"99 is an original story inspired by real events. It is as much \"What could have been\" as it is \"What really happened.\" In other words, it is historical fiction - fiction being the keyword. It spans a few genres; it is slick, fast-paced, realistic and, importantly, very funny.In this \"smart comedy\" set in 1999, all the characters are found by a common feeling of being stuck at 99 in life - just one short of a 'century' - that elusive thing called \"making it'' in life!99 is an unpredictable and hi","id":"19980","runtime":141,"imdbId":"tt1370429","homepage":"http:\/\/www.99thefilm.com\/","version":192,"lastModified":"1301943614000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/992\/4bc95830017a3c57fe027992\/99-mid.jpg","studio":"People Pictures","genre":"Comedy","title":"99","releaseDate":1242345600000,"language":"en","type":"Movie","_key":"71480"} +{"label":"Cyrus Broacha","version":19,"id":"85455","lastModified":"1301902234000","name":"Cyrus Broacha","type":"Person","_key":"71481"} +{"label":"Mahesh Manjrekar","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8ac\/4d2106015e73d66b340028ac\/mahesh-manjrekar-profile.jpg","version":44,"id":"85456","lastModified":"1301901599000","name":"Mahesh Manjrekar","type":"Person","_key":"71482"} +{"label":"Amit Mistry","version":19,"id":"85457","lastModified":"1301902626000","name":"Amit Mistry","type":"Person","_key":"71483"} +{"label":"Vinod Khanna","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8b9\/4d2a2f085e73d626ac0038b9\/vinod-khanna-profile.jpg","version":31,"id":"85458","lastModified":"1301901984000","name":"Vinod Khanna","type":"Person","_key":"71484"} +{"label":"Sudesh Berry","version":20,"id":"85459","lastModified":"1301902576000","name":"Sudesh Berry","type":"Person","_key":"71485"} +{"label":"Raj Nidimoru","version":19,"id":"85460","lastModified":"1301902451000","name":"Raj Nidimoru","type":"Person","_key":"71486"} +{"label":"Polle Fiction","description":"No overview found.","id":"19984","runtime":90,"imdbId":"tt0302935","version":50,"lastModified":"1300980793000","studio":"FilmPeople","title":"Polle Fiction","releaseDate":1015545600000,"language":"en","type":"Movie","_key":"71487"} +{"label":"The Butcher","description":"A mob enforcer is set up to take the fall for a multi-million dollar heist involving a rival gang boss. Merle (Eric Roberts) is a gambler stuck on a twenty-year losing streak, but his luck is about to change. Surviving a trap that was intended to kill him, Merle makes away with a beautiful woman and a piece of the take. Most men in that position would have been content to simply walk away with their lives, but Merle has been loyal for twenty years. Realizing he's been betrayed, something inside ","id":"19988","runtime":95,"imdbId":"tt0997038","homepage":"http:\/\/www.thebutcher-movie.com\/","version":102,"lastModified":"1301943086000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/997\/4bc95831017a3c57fe027997\/the-butcher-mid.jpg","genre":"Action","title":"The Butcher","releaseDate":1247184000000,"language":"en","type":"Movie","_key":"71488"} +{"label":"Irina Bj\u00f6rklund","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/8d6\/4d28d2675e73d626bc0028d6\/irina-bj-rklund-profile.jpg","version":27,"id":"85386","lastModified":"1301901412000","name":"Irina Bj\u00f6rklund","type":"Person","_key":"71489"} +{"label":"Aces 'N' Eights","description":"Already taking a gamble settling in the uncharted west, the peaceful settlers of a town destined for railroad greatness suddenly find themselves being ruthlessly gunned down. With no law and order to be found, justice falls onto the shoulders of an elderly rancher and an accomplished, but retired, gunslinger.","id":"19989","runtime":86,"imdbId":"tt1087828","version":95,"lastModified":"1301942729000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9a5\/4bc95832017a3c57fe0279a5\/aces-n-eights-mid.jpg","studio":"Alpine Medien Productions","genre":"Action","title":"Aces 'N' Eights","releaseDate":1205539200000,"language":"en","type":"Movie","_key":"71490"} +{"label":"Rodney Scott","version":20,"id":"85406","lastModified":"1301902530000","name":"Rodney Scott","type":"Person","_key":"71491"} +{"label":"Victoria Chalaya","version":20,"id":"85407","lastModified":"1301902523000","name":"Victoria Chalaya","type":"Person","_key":"71492"} +{"label":"George Lopez: America's Mexican","description":"Superstar comedian\/actor George Lopez, one of the premier comedic talents in the entertainment industry, made his HBO solo debut performed live in front of a packed house at the Dodge Theater in Phoenix, Arizona. Lopez delivers a hilarious routine touching on his own Latino roots, immigration and naturalization, modern-day kids, old-school values, interacial relationships, and the future.","id":"19993","runtime":65,"imdbId":"tt0975673","version":292,"lastModified":"1301904666000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/9ae\/4bc95833017a3c57fe0279ae\/george-lopez-america-s-mexican-mid.jpg","studio":"Encanto Enterprises","genre":"Comedy","title":"George Lopez: America's Mexican","releaseDate":1172534400000,"language":"en","type":"Movie","_key":"71493"} +{"label":"Jennifer's Body","description":"A newly possessed cheerleader turns into a killer who specializes in offing her male classmates. Can her best friend put an end to the horror?","id":"19994","runtime":100,"imdbId":"tt1131734","trailer":"http:\/\/www.youtube.com\/watch?v=LCSzYioSeT0","homepage":"http:\/\/www.jennifersbody.com\/","version":247,"lastModified":"1302209834000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/039\/4c90399e5e73d61ee6000039\/jennifer-s-body-mid.jpg","studio":"Fox Atomic","genre":"Horror","title":"Jennifer's Body","releaseDate":1253232000000,"language":"en","tagline":"She's evil... and not just high school evil.","type":"Movie","_key":"71494"} +{"label":"Carrie Genzel","version":26,"id":"33350","lastModified":"1301901240000","name":"Carrie Genzel","type":"Person","_key":"71495"} +{"label":"Juan Riedinger","version":27,"id":"85613","lastModified":"1301901393000","name":"Juan Riedinger","type":"Person","_key":"71496"} +{"label":"Juno Ruddell","version":25,"id":"85614","lastModified":"1301901815000","name":"Juno Ruddell","type":"Person","_key":"71497"} +{"label":"Aman Johal","version":23,"id":"85616","lastModified":"1301901637000","name":"Aman Johal","type":"Person","_key":"71498"} +{"label":"Brother's War","description":"The story is set in the latter days of World War 2, against the backdrop of fierce combat on the eastern front. Brother's War is based on real events.","id":"19996","runtime":0,"imdbId":"tt0932661","homepage":"http:\/\/www.brotherswar.info\/","version":659,"lastModified":"1302209358000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a81\/4bc95863017a3c57fe027a81\/brother-s-war-mid.jpg","title":"Brother's War","releaseDate":1243296000000,"language":"en","type":"Movie","_key":"71499"} +{"label":"Tino Struckmann","version":19,"id":"85411","lastModified":"1301902062000","name":"Tino Struckmann","type":"Person","_key":"71500"} +{"label":"Olivier Gruner","version":25,"id":"85412","lastModified":"1301901345000","name":"Olivier Gruner","type":"Person","_key":"71501"} +{"label":"Hayley Carr","version":19,"id":"85413","lastModified":"1301902062000","name":"Hayley Carr","type":"Person","_key":"71502"} +{"label":"Hugh Daly","version":19,"id":"85414","lastModified":"1301902234000","name":"Hugh Daly","type":"Person","_key":"71503"} +{"label":"Jack Dimich","version":19,"id":"85415","lastModified":"1301902451000","name":"Jack Dimich","type":"Person","_key":"71504"} +{"label":"Adam Leadbeater","version":19,"id":"85416","lastModified":"1301902234000","name":"Adam Leadbeater","type":"Person","_key":"71505"} +{"label":"Tye Olson","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/024\/4bcd6def017a3c604f000024\/tye-olson-profile.jpg","version":23,"id":"85417","lastModified":"1301901673000","name":"Tye Olson","type":"Person","_key":"71506"} +{"label":"Steve Holm","version":19,"id":"85418","lastModified":"1301902234000","name":"Steve Holm","type":"Person","_key":"71507"} +{"label":"Boris Kievsky","version":19,"id":"85420","lastModified":"1301902234000","name":"Boris Kievsky","type":"Person","_key":"71508"} +{"label":"Dylan Kenin","version":24,"id":"85419","lastModified":"1301902451000","name":"Dylan Kenin","type":"Person","_key":"71509"} +{"label":"Time Winters","version":20,"id":"85421","lastModified":"1301902485000","name":"Time Winters","type":"Person","_key":"71510"} +{"label":"Joshua Minnick","version":19,"id":"85422","lastModified":"1301902234000","name":"Joshua Minnick","type":"Person","_key":"71511"} +{"label":"Andreas T. Ramani","version":19,"id":"85423","lastModified":"1301902234000","name":"Andreas T. Ramani","type":"Person","_key":"71512"} +{"label":"Mark Doerr","version":19,"id":"85424","lastModified":"1301902234000","name":"Mark Doerr","type":"Person","_key":"71513"} +{"label":"Niagara","description":"On a delayed honeymoon, Ray and Polly Cutler (Showalter and Peters) arrive at their Niagara Falls cottage for some romance and relaxation. However, when they arrive they find out that their reserved cabin is occupied by another couple, George and Rose Loomis (Cotten and Monroe). They politely offer to take another cabin, but the two couples become unavoidably tangled as time goes on.","id":"19997","runtime":92,"imdbId":"tt0046126","trailer":"http:\/\/www.youtube.com\/watch?v=8xvv1lQ65Nw","version":191,"lastModified":"1302156942000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a93\/4bc95868017a3c57fe027a93\/niagara-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Drama","title":"Niagara","releaseDate":-534729600000,"language":"en","type":"Movie","_key":"71514"} +{"label":"Denis O'Dea","version":20,"id":"85410","lastModified":"1301902451000","name":"Denis O'Dea","type":"Person","_key":"71515"} +{"label":"The Big Steal","description":"Army Lieutenant Halliday, accused of stealing the Army payroll, pursues the real thief on a frantic chase through Mexico aided by the thief's ex-girlfriend and is in turned being chased by his accuser, Capt. Blake.","id":"19998","runtime":71,"imdbId":"tt0041178","version":93,"lastModified":"1302187243000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/a9c\/4bc95869017a3c57fe027a9c\/the-big-steal-mid.jpg","studio":"RKO Radio Pictures","genre":"Drama","title":"The Big Steal","releaseDate":-646358400000,"language":"en","type":"Movie","_key":"71516"} +{"label":"Ramon Novarro","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/1b4\/4c5190877b9aa13d4b0001b4\/ramon-novarro-profile.jpg","version":25,"id":"85425","lastModified":"1301995708000","name":"Ramon Novarro","type":"Person","_key":"71517"} +{"label":"Don Alvarado","profileImageUrl":"http:\/\/cf1.imgobject.com\/profiles\/3b3\/4c614c007b9aa172da0003b3\/don-alvarado-profile.jpg","version":23,"id":"85426","lastModified":"1301995708000","name":"Don Alvarado","type":"Person","_key":"71518"} +{"label":"Pascual Garc\u00eda Pe\u00f1a","version":21,"id":"85427","lastModified":"1301995708000","name":"Pascual Garc\u00eda Pe\u00f1a","type":"Person","_key":"71519"} +{"label":"Forgiving Dr. Mengele","description":"Eva Mozes Kor, who survived Josef Mengele's cruel twin experiments in the Auschwitz concentration camp, shocks other Holocaust survivors when she decides to forgive the perpetrators as a way of self-healing.","id":"19999","runtime":82,"imdbId":"tt0489707","version":120,"lastModified":"1302187090000","genre":"Documentary","title":"Forgiving Dr. Mengele","releaseDate":1140739200000,"language":"en","type":"Movie","_key":"71520"} +{"label":"Eva Mozes Kor","version":19,"id":"85428","lastModified":"1301902674000","name":"Eva Mozes Kor","type":"Person","_key":"71521"} +{"label":"Bob Hercules","version":19,"id":"85434","lastModified":"1301902674000","name":"Bob Hercules","type":"Person","_key":"71522"} +{"label":"Cheri Pugh","version":19,"id":"85436","lastModified":"1301902500000","name":"Cheri Pugh","type":"Person","_key":"71523"} +{"label":"Somewhere in the Night","description":"George Taylor returns from the WWII with amnesia. Back home in Los Angeles, he tries to track down his old identity, stumbling into a 3-year old murder case and a hunt for a missing $2 million.","id":"20000","runtime":110,"imdbId":"tt0038965","trailer":"http:\/\/www.youtube.com\/watch?v=QRsnuJdB1j4","version":78,"lastModified":"1301907761000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/aa5\/4bc9586b017a3c57fe027aa5\/somewhere-in-the-night-mid.jpg","studio":"Twentieth Century-Fox Film Corporation","genre":"Crime","title":"Somewhere in the Night","releaseDate":-743385600000,"language":"en","type":"Movie","_key":"71524"} +{"label":"Margo Woode","version":23,"id":"85438","lastModified":"1301902323000","name":"Margo Woode","type":"Person","_key":"71525"} +{"label":"Lou Nova","version":20,"id":"85439","lastModified":"1301902234000","name":"Lou Nova","type":"Person","_key":"71526"} +{"label":"Any Way the Wind Blows","description":"Antwerp, at the beginning of June. On a sunny Friday, eight people dream of having a different life. There's wind and music, police and paranoia, gossip and fighting. There's an old virus, an astrayed frisbee, a dead horse, and a mysterious person called Windman. In the evening there's a party \u2026","id":"17001","runtime":127,"imdbId":"tt0331175","homepage":"http:\/\/www.anywaythewindblows.com\/","version":79,"lastModified":"1302071689000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/e40\/4be81c54017a3c35bb000e40\/any-way-the-wind-blows-mid.jpg","studio":"Corridor","genre":"Drama","title":"Any Way the Wind Blows","releaseDate":1041379200000,"language":"en","type":"Movie","_key":"71527"} +{"label":"Tom Barman","version":19,"id":"81140","lastModified":"1301902325000","name":"Tom Barman","type":"Person","_key":"71528"} +{"label":"Frank Vercruyssen","version":19,"id":"81141","lastModified":"1301902143000","name":"Frank Vercruyssen","type":"Person","_key":"71529"} +{"label":"Diane De Belder","version":19,"id":"85799","lastModified":"1301902676000","name":"Diane De Belder","type":"Person","_key":"71530"} +{"label":"Eric Kloeck","version":19,"id":"85800","lastModified":"1301902676000","name":"Eric Kloeck","type":"Person","_key":"71531"} +{"label":"Natali Broods","version":19,"id":"85802","lastModified":"1301902676000","name":"Natali Broods","type":"Person","_key":"71532"} +{"label":"Leur morale... et la n\u00f4tre","description":"On peut \u00eatre un couple de bons Fran\u00e7ais, toujours amoureux, parents mod\u00e8les, travailleurs et \u00e9conomes jusqu'\u00e0 la manie et \u00e9couler au noir dans le sous-sol de sa villa de B\u00e9ziers hyper s\u00e9curis\u00e9e, des godasses de son ancien magasin et des produits \" satisfaits ou rembours\u00e9s \" qu'on d\u00e9tourne dans tous les supermarch\u00e9s de la r\u00e9gion.A chacun sa morale !","id":"17002","runtime":100,"imdbId":"tt1064964","version":65,"lastModified":"1301905622000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3d3\/4bc94e1c017a3c57fe0223d3\/leur-morale-et-la-notre-mid.jpg","studio":"Gaumont","genre":"Comedy","title":"Leur morale... et la n\u00f4tre","releaseDate":1219795200000,"language":"en","type":"Movie","_key":"71533"} +{"label":"Florence Quentin","version":27,"id":"35904","lastModified":"1301901568000","name":"Florence Quentin","type":"Person","_key":"71534"} +{"label":"Micha Lescot","version":20,"id":"81144","lastModified":"1301902238000","name":"Micha Lescot","type":"Person","_key":"71535"} +{"label":"Rapha\u00ebl Mezrahi","version":19,"id":"81146","lastModified":"1301902238000","name":"Rapha\u00ebl Mezrahi","type":"Person","_key":"71536"} +{"label":"Sugar","description":"Dominican baseball star Miguel \"Sugar\" Santos is recruited to play in the U.S. minor-leagues.","id":"17003","runtime":120,"imdbId":"tt0990413","homepage":"http:\/\/www.sonyclassics.com\/sugar","version":142,"lastModified":"1301905364000","imageUrl":"http:\/\/cf1.imgobject.com\/posters\/3dc\/4bc94e1d017a3c57fe0223dc\/sugar-mid.jpg","genre":"Drama","title":"Sugar","releaseDate":1238716800000,"language":"en","type":"Movie","_key":"71537"} +{"label":"Anna Boden","version":33,"id":"53069","lastModified":"1301901493000","name":"Anna Boden","type":"Person","_key":"71538"} +{"label":"Algenis Perez Soto","version":20,"id":"86381","lastModified":"1301902530000","name":"Algenis Perez Soto","type":"Person","_key":"71539"} diff --git a/demo/docker/import/users/users.json b/demo/docker/import/users/users.json deleted file mode 100644 index cdfebe2f..00000000 --- a/demo/docker/import/users/users.json +++ /dev/null @@ -1,1000 +0,0 @@ -{"name":{"first":"Shawna","last":"Matheney"},"gender":"female","birthday":"1950-08-06","contact":{"address":{"street":"10 17th St","zip":"62218","city":"Bartelso","state":"IL"},"email":["shawna.matheney@nosql-matters.org","shawna@nosql-matters.org"],"region":"618","phone":["618-9063984","618-8108742"]},"likes":["driving","skiing"],"memberSince":"2010-07-07"} -{"name":{"first":"Burton","last":"Siaperas"},"gender":"male","birthday":"1941-05-16","contact":{"address":{"street":"3 Spring garden Aly","zip":"14608","city":"Rochester","state":"NY"},"email":["burton.siaperas@nosql-matters.org","siaperas@nosql-matters.org"],"region":"716","phone":["716-5428351"]},"likes":["shopping"],"memberSince":"2009-02-02"} -{"name":{"first":"Ernie","last":"Levinson"},"gender":"male","birthday":"1955-07-25","contact":{"address":{"street":"9 Neumann Pl","zip":"44482","city":"Warren","state":"OH"},"email":["ernie.levinson@nosql-matters.org"],"region":"330","phone":["330-2486637"]},"likes":[],"memberSince":"2008-08-05"} -{"name":{"first":"Malinda","last":"Siemon"},"gender":"female","birthday":"1993-04-10","contact":{"address":{"street":"3 5th St","zip":"30502","city":"Chestnut Mountain","state":"GA"},"email":["malinda.siemon@nosql-matters.org"],"region":"770","phone":["770-1054596"]},"likes":["climbing"],"memberSince":"2009-10-02"} -{"name":{"first":"Janyce","last":"Braunschweige"},"gender":"female","birthday":"1981-01-27","contact":{"address":{"street":"18 Corcoran Run","zip":"80611","city":"Briggsdale","state":"CO"},"email":["janyce.braunschweige@nosql-matters.org"],"region":"970","phone":[]},"likes":["snowboarding"],"memberSince":"2007-08-18"} -{"name":{"first":"Carter","last":"Iafrate"},"gender":"male","birthday":"1941-10-09","contact":{"address":{"street":"11 Fraser Blvd","zip":"02660","city":"South Dennis","state":"MA"},"email":["carter.iafrate@nosql-matters.org"],"region":"508","phone":["508-1004610"]},"likes":["reading","skiing"],"memberSince":"2010-09-28"} -{"name":{"first":"Shirlee","last":"Bytheway"},"gender":"female","birthday":"1992-12-18","contact":{"address":{"street":"20 242nd Ave","zip":"74570","city":"Stuart","state":"OK"},"email":["shirlee.bytheway@nosql-matters.org","shirlee@nosql-matters.org"],"region":"918","phone":["918-8788316"]},"likes":["shopping"],"memberSince":"2010-01-11"} -{"name":{"first":"Lanny","last":"Bockhorn"},"gender":"male","birthday":"1957-05-06","contact":{"address":{"street":"13 Columbia Way","zip":"30105","city":"Armuchee","state":"GA"},"email":["lanny.bockhorn@nosql-matters.org"],"region":"706","phone":["706-8338484","706-2961758"]},"likes":["checkers"],"memberSince":"2010-04-17"} -{"name":{"first":"Jarod","last":"Blosser"},"gender":"male","birthday":"1958-03-08","contact":{"address":{"street":"4 Wallick Rd","zip":"60675","city":"Chicago","state":"IL"},"email":["jarod.blosser@nosql-matters.org","blosser@nosql-matters.org"],"region":"312","phone":[]},"likes":["running","skiing"],"memberSince":"2011-10-05"} -{"name":{"first":"Ivonne","last":"Toombs"},"gender":"female","birthday":"1945-03-18","contact":{"address":{"street":"4 John Ln","zip":"84140","city":"Salt Lake City","state":"UT"},"email":["ivonne.toombs@nosql-matters.org"],"region":"801","phone":["801-0332218"]},"likes":[],"memberSince":"2010-11-16"} -{"name":{"first":"Santo","last":"Mcclennan"},"gender":"male","birthday":"1965-10-30","contact":{"address":{"street":"21 Rawlins Hwy","zip":"99030","city":"Rockford","state":"WA"},"email":["santo.mcclennan@nosql-matters.org"],"region":"509","phone":["509-3648735","509-2630273"]},"likes":["running"],"memberSince":"2009-09-23"} -{"name":{"first":"Samuel","last":"Holscher"},"gender":"female","birthday":"1982-12-15","contact":{"address":{"street":"19 Santa fe Ave","zip":"15047","city":"Greenock","state":"PA"},"email":["samuel.holscher@nosql-matters.org"],"region":"412","phone":[]},"likes":["boxing"],"memberSince":"2009-12-03"} -{"name":{"first":"Delmer","last":"Varrato"},"gender":"male","birthday":"1945-10-16","contact":{"address":{"street":"4 Ashmead St","zip":"74359","city":"Oaks","state":"OK"},"email":["delmer.varrato@nosql-matters.org","delmer@nosql-matters.org"],"region":"918","phone":["918-1924039"]},"likes":[],"memberSince":"2009-01-25"} -{"name":{"first":"Roseline","last":"Jucean"},"gender":"female","birthday":"1964-01-02","contact":{"address":{"street":"14 Kalorama Cir","zip":"61830","city":"Cisco","state":"IL"},"email":["roseline.jucean@nosql-matters.org"],"region":"217","phone":[]},"likes":["swimming"],"memberSince":"2008-04-09"} -{"name":{"first":"Harold","last":"Ackies"},"gender":"female","birthday":"1993-02-24","contact":{"address":{"street":"17 Gasoline Aly","zip":"48831","city":"Elsie","state":"MI"},"email":["harold.ackies@nosql-matters.org","ackies@nosql-matters.org","harold@nosql-matters.org"],"region":"517","phone":[]},"likes":["chatting","travelling","skiing"],"memberSince":"2008-11-07"} -{"name":{"first":"Shaun","last":"Knowell"},"gender":"male","birthday":"1969-07-18","contact":{"address":{"street":"6 Fraser St","zip":"77951","city":"Bloomington","state":"TX"},"email":["shaun.knowell@nosql-matters.org"],"region":"361","phone":["361-4719271"]},"likes":["snowboarding"],"memberSince":"2009-06-15"} -{"name":{"first":"Jenell","last":"Akery"},"gender":"female","birthday":"1968-11-11","contact":{"address":{"street":"10 266th St","zip":"08570","city":"Cranbury","state":"NJ"},"email":["jenell.akery@nosql-matters.org"],"region":"609","phone":[]},"likes":["shopping"],"memberSince":"2010-12-27"} -{"name":{"first":"Derek","last":"Warran"},"gender":"male","birthday":"1977-09-28","contact":{"address":{"street":"22 Half mound Blvd","zip":"42048","city":"Hardin","state":"KY"},"email":["derek.warran@nosql-matters.org","warran@nosql-matters.org","derek@nosql-matters.org"],"region":"270","phone":[]},"likes":["boxing"],"memberSince":"2010-04-23"} -{"name":{"first":"Carl","last":"Naveed"},"gender":"male","birthday":"1974-11-16","contact":{"address":{"street":"10 15th St","zip":"47715","city":"Evansville","state":"IN"},"email":["carl.naveed@nosql-matters.org"],"region":"812","phone":["812-7402493","812-9245418"]},"likes":["checkers"],"memberSince":"2010-11-09"} -{"name":{"first":"Prudence","last":"Litalien"},"gender":"female","birthday":"1944-06-19","contact":{"address":{"street":"15 21st St","zip":"32907","city":"Palm Bay","state":"FL"},"email":["prudence.litalien@nosql-matters.org","prudence@nosql-matters.org"],"region":"321","phone":["321-3172849"]},"likes":["swimming","chess"],"memberSince":"2009-09-19"} -{"name":{"first":"Eloy","last":"Covitz"},"gender":"male","birthday":"1972-12-31","contact":{"address":{"street":"7 Pratt Blvd","zip":"49315","city":"Byron Center","state":"MI"},"email":["eloy.covitz@nosql-matters.org"],"region":"616","phone":[]},"likes":["chatting","climbing"],"memberSince":"2010-12-08"} -{"name":{"first":"Wilfred","last":"Belile"},"gender":"male","birthday":"1987-07-08","contact":{"address":{"street":"21 New hampshire Dr","zip":"25862","city":"Lansing","state":"WV"},"email":["wilfred.belile@nosql-matters.org"],"region":"304","phone":["304-4538290"]},"likes":[],"memberSince":"2011-06-17"} -{"name":{"first":"Tanesha","last":"Holaday"},"gender":"female","birthday":"1965-01-02","contact":{"address":{"street":"14 Swann Ave","zip":"42724","city":"Cecilia","state":"KY"},"email":["tanesha.holaday@nosql-matters.org","holaday@nosql-matters.org"],"region":"270","phone":["270-4698526","270-9203398"]},"likes":[],"memberSince":"2011-06-18"} -{"name":{"first":"Trudi","last":"Oberdier"},"gender":"female","birthday":"1955-10-23","contact":{"address":{"street":"6 Fairmont Ave","zip":"05346","city":"Putney","state":"VT"},"email":["trudi.oberdier@nosql-matters.org"],"region":"802","phone":["802-3831026"]},"likes":[],"memberSince":"2011-07-31"} -{"name":{"first":"Johnnie","last":"Saloum"},"gender":"male","birthday":"1959-10-04","contact":{"address":{"street":"15 Kearney Pl","zip":"72924","city":"Bates","state":"AR"},"email":["johnnie.saloum@nosql-matters.org"],"region":"501","phone":[]},"likes":[],"memberSince":"2008-05-14"} -{"name":{"first":"Nell","last":"Blyler"},"gender":"female","birthday":"1990-06-16","contact":{"address":{"street":"5 234th St","zip":"36870","city":"Phenix City","state":"AL"},"email":["nell.blyler@nosql-matters.org","blyler@nosql-matters.org"],"region":"334","phone":["334-7732189"]},"likes":["swimming","chess","travelling"],"memberSince":"2012-03-07"} -{"name":{"first":"Lecia","last":"Rava"},"gender":"female","birthday":"1954-11-12","contact":{"address":{"street":"15 Corcoran St","zip":"32169","city":"New Smyrna Beach","state":"FL"},"email":["lecia.rava@nosql-matters.org","lecia@nosql-matters.org"],"region":"904","phone":["904-4756609"]},"likes":[],"memberSince":"2009-08-15"} -{"name":{"first":"Titus","last":"Sardina"},"gender":"male","birthday":"1988-09-26","contact":{"address":{"street":"22 Lanier Pl","zip":"48079","city":"Saint Clair","state":"MI"},"email":["titus.sardina@nosql-matters.org","titus@nosql-matters.org"],"region":"810","phone":["810-1910942"]},"likes":["chess","reading"],"memberSince":"2010-10-14"} -{"name":{"first":"Rosalinda","last":"Rusten"},"gender":"female","birthday":"1953-05-25","contact":{"address":{"street":"8 Columbia Aly","zip":"47226","city":"Clifford","state":"IN"},"email":["rosalinda.rusten@nosql-matters.org","rosalinda@nosql-matters.org"],"region":"812","phone":["812-1761002","812-3026234"]},"likes":["chatting"],"memberSince":"2011-05-07"} -{"name":{"first":"Hertha","last":"Steckler"},"gender":"female","birthday":"1976-07-29","contact":{"address":{"street":"8 Pine Hwy","zip":"61250","city":"Erie","state":"IL"},"email":["hertha.steckler@nosql-matters.org","hertha@nosql-matters.org"],"region":"309","phone":[]},"likes":["driving"],"memberSince":"2008-07-04"} -{"name":{"first":"Chara","last":"Allocca"},"gender":"female","birthday":"1993-10-24","contact":{"address":{"street":"13 Beechwood St","zip":"35285","city":"Birmingham","state":"AL"},"email":["chara.allocca@nosql-matters.org","allocca@nosql-matters.org","chara@nosql-matters.org"],"region":"205","phone":["205-0957352"]},"likes":[],"memberSince":"2007-10-13"} -{"name":{"first":"Chase","last":"Quella"},"gender":"male","birthday":"1965-11-11","contact":{"address":{"street":"15 Trego Dr","zip":"16732","city":"Gifford","state":"PA"},"email":["chase.quella@nosql-matters.org","chase@nosql-matters.org"],"region":"814","phone":[]},"likes":["shopping"],"memberSince":"2009-01-16"} -{"name":{"first":"Cassondra","last":"Higman"},"gender":"female","birthday":"1982-06-05","contact":{"address":{"street":"9 Wallach Loop","zip":"69168","city":"Venango","state":"NE"},"email":["cassondra.higman@nosql-matters.org"],"region":"308","phone":["308-8110132"]},"likes":[],"memberSince":"2008-03-06"} -{"name":{"first":"Alysha","last":"Villecus"},"gender":"female","birthday":"1977-05-22","contact":{"address":{"street":"18 Neumann Blvd","zip":"54818","city":"Brill","state":"WI"},"email":["alysha.villecus@nosql-matters.org"],"region":"715","phone":["715-3987753"]},"likes":[],"memberSince":"2007-07-16"} -{"name":{"first":"Erwin","last":"Doster"},"gender":"male","birthday":"1965-06-03","contact":{"address":{"street":"18 Mozart Ave","zip":"85061","city":"Phoenix","state":"AZ"},"email":["erwin.doster@nosql-matters.org","doster@nosql-matters.org"],"region":"602","phone":[]},"likes":["chess"],"memberSince":"2011-11-09"} -{"name":{"first":"Gerardo","last":"Syndergaard"},"gender":"male","birthday":"1974-03-16","contact":{"address":{"street":"16 Connecticut Ln","zip":"14223","city":"Buffalo","state":"NY"},"email":["gerardo.syndergaard@nosql-matters.org","syndergaard@nosql-matters.org"],"region":"716","phone":["716-8863476"]},"likes":[],"memberSince":"2009-07-09"} -{"name":{"first":"Edgar","last":"Brojakowski"},"gender":"male","birthday":"1971-12-05","contact":{"address":{"street":"15 Harvard St","zip":"46184","city":"Whiteland","state":"IN"},"email":["edgar.brojakowski@nosql-matters.org","edgar@nosql-matters.org"],"region":"317","phone":["317-8691415"]},"likes":["chess"],"memberSince":"2011-09-19"} -{"name":{"first":"Stacie","last":"Hoppman"},"gender":"female","birthday":"1949-08-21","contact":{"address":{"street":"20 Country club Way","zip":"07081","city":"Springfield","state":"NJ"},"email":["stacie.hoppman@nosql-matters.org"],"region":"973","phone":["973-2716514","973-6194024"]},"likes":["chess","boxing"],"memberSince":"2011-11-24"} -{"name":{"first":"Maryjane","last":"Fong"},"gender":"female","birthday":"1969-05-28","contact":{"address":{"street":"7 Last chance Cir","zip":"79908","city":"El Paso","state":"TX"},"email":["maryjane.fong@nosql-matters.org","maryjane@nosql-matters.org"],"region":"915","phone":["915-3736109"]},"likes":["swimming","checkers"],"memberSince":"2012-05-09"} -{"name":{"first":"Vance","last":"Placino"},"gender":"male","birthday":"1974-11-03","contact":{"address":{"street":"10 Wallace Rd","zip":"34705","city":"Astatula","state":"FL"},"email":["vance.placino@nosql-matters.org"],"region":"352","phone":["352-1285853","352-0308009"]},"likes":[],"memberSince":"2008-06-07"} -{"name":{"first":"Brad","last":"Rombach"},"gender":"male","birthday":"1951-09-23","contact":{"address":{"street":"14 Pratt Rd","zip":"04774","city":"Saint Francis","state":"ME"},"email":["brad.rombach@nosql-matters.org"],"region":"207","phone":[]},"likes":["boxing"],"memberSince":"2010-05-18"} -{"name":{"first":"Lester","last":"Hanft"},"gender":"female","birthday":"1988-01-01","contact":{"address":{"street":"10 11th St","zip":"15208","city":"Pittsburgh","state":"PA"},"email":["lester.hanft@nosql-matters.org"],"region":"412","phone":["412-7647682","412-7312950"]},"likes":["snowboarding"],"memberSince":"2010-12-22"} -{"name":{"first":"Dusty","last":"Palubiak"},"gender":"male","birthday":"1951-04-07","contact":{"address":{"street":"16 California Way","zip":"41743","city":"Fisty","state":"KY"},"email":["dusty.palubiak@nosql-matters.org"],"region":"606","phone":[]},"likes":["swimming","travelling"],"memberSince":"2009-06-07"} -{"name":{"first":"Candida","last":"Behel"},"gender":"female","birthday":"1992-06-21","contact":{"address":{"street":"7 Last chance St","zip":"02122","city":"Boston","state":"MA"},"email":["candida.behel@nosql-matters.org"],"region":"617","phone":[]},"likes":["checkers","climbing"],"memberSince":"2008-10-06"} -{"name":{"first":"Despina","last":"Mccatty"},"gender":"female","birthday":"1973-01-19","contact":{"address":{"street":"9 8th St","zip":"55485","city":"Minneapolis","state":"MN"},"email":["despina.mccatty@nosql-matters.org","mccatty@nosql-matters.org","despina@nosql-matters.org"],"region":"612","phone":[]},"likes":["running","boxing"],"memberSince":"2007-09-27"} -{"name":{"first":"Hal","last":"Hinote"},"gender":"male","birthday":"1966-02-20","contact":{"address":{"street":"8 Chapin Aly","zip":"84118","city":"Salt Lake City","state":"UT"},"email":["hal.hinote@nosql-matters.org","hinote@nosql-matters.org"],"region":"801","phone":["801-7035128","801-1937963"]},"likes":["boxing"],"memberSince":"2009-04-01"} -{"name":{"first":"Casey","last":"Keeneth"},"gender":"male","birthday":"1968-01-10","contact":{"address":{"street":"13 234th Ave","zip":"25515","city":"Gallipolis Ferry","state":"WV"},"email":["casey.keeneth@nosql-matters.org"],"region":"304","phone":["304-4043141"]},"likes":["shopping","snowboarding"],"memberSince":"2007-06-05"} -{"name":{"first":"Edwardo","last":"Dannenberg"},"gender":"male","birthday":"1993-01-18","contact":{"address":{"street":"18 Wallace Dr","zip":"41824","city":"Isom","state":"KY"},"email":["edwardo.dannenberg@nosql-matters.org","edwardo@nosql-matters.org"],"region":"606","phone":["606-7930672","606-6024788"]},"likes":[],"memberSince":"2007-08-16"} -{"name":{"first":"Francina","last":"Eikleberry"},"gender":"female","birthday":"1941-07-31","contact":{"address":{"street":"2 Wallach Aly","zip":"16858","city":"Morrisdale","state":"PA"},"email":["francina.eikleberry@nosql-matters.org","francina@nosql-matters.org"],"region":"814","phone":["814-5131686"]},"likes":[],"memberSince":"2012-05-03"} -{"name":{"first":"Johnson","last":"Kosel"},"gender":"male","birthday":"1973-07-15","contact":{"address":{"street":"5 Roberts Hwy","zip":"12189","city":"Watervliet","state":"NY"},"email":["johnson.kosel@nosql-matters.org","johnson@nosql-matters.org"],"region":"518","phone":["518-7939203"]},"likes":["swimming"],"memberSince":"2009-02-12"} -{"name":{"first":"Odelia","last":"Toler"},"gender":"female","birthday":"1961-04-02","contact":{"address":{"street":"1 Euclid Hwy","zip":"65771","city":"Walnut Shade","state":"MO"},"email":["odelia.toler@nosql-matters.org"],"region":"417","phone":["417-6947308"]},"likes":["chess","boxing"],"memberSince":"2008-12-18"} -{"name":{"first":"Lourdes","last":"Suydan"},"gender":"female","birthday":"1946-03-02","contact":{"address":{"street":"2 Calvert Dr","zip":"77320","city":"Huntsville","state":"TX"},"email":["lourdes.suydan@nosql-matters.org"],"region":"409","phone":["409-9665354"]},"likes":[],"memberSince":"2008-03-30"} -{"name":{"first":"Akiko","last":"Nidiffer"},"gender":"female","birthday":"1958-03-07","contact":{"address":{"street":"19 Palmer Way","zip":"02106","city":"Boston","state":"MA"},"email":["akiko.nidiffer@nosql-matters.org"],"region":"617","phone":["617-2042718","617-0468185"]},"likes":[],"memberSince":"2011-09-24"} -{"name":{"first":"Kurtis","last":"Thoroughgood"},"gender":"male","birthday":"1985-11-09","contact":{"address":{"street":"13 Fuller Blvd","zip":"14172","city":"Wilson","state":"NY"},"email":["kurtis.thoroughgood@nosql-matters.org","thoroughgood@nosql-matters.org","kurtis@nosql-matters.org"],"region":"716","phone":["716-6889192"]},"likes":["shopping","chatting","skiing"],"memberSince":"2011-01-02"} -{"name":{"first":"Misty","last":"Mestre"},"gender":"female","birthday":"1974-05-15","contact":{"address":{"street":"10 4th St","zip":"14168","city":"Versailles","state":"NY"},"email":["misty.mestre@nosql-matters.org","mestre@nosql-matters.org"],"region":"716","phone":["716-0930192"]},"likes":["running","biking","skiing"],"memberSince":"2012-01-28"} -{"name":{"first":"Marvella","last":"Vasbinder"},"gender":"female","birthday":"1965-04-10","contact":{"address":{"street":"3 Adams mill Blvd","zip":"66727","city":"Coyville","state":"KS"},"email":["marvella.vasbinder@nosql-matters.org"],"region":"316","phone":["316-4961659"]},"likes":[],"memberSince":"2008-02-13"} -{"name":{"first":"Britt","last":"Mestre"},"gender":"male","birthday":"1990-10-03","contact":{"address":{"street":"16 3rd St","zip":"43320","city":"Edison","state":"OH"},"email":["britt.mestre@nosql-matters.org"],"region":"419","phone":["419-9783436","419-7274956"]},"likes":["reading"],"memberSince":"2011-02-02"} -{"name":{"first":"Bettina","last":"Stotesberry"},"gender":"female","birthday":"1986-10-04","contact":{"address":{"street":"6 18th Ave","zip":"36608","city":"Mobile","state":"AL"},"email":["bettina.stotesberry@nosql-matters.org"],"region":"334","phone":["334-6825314"]},"likes":[],"memberSince":"2007-09-21"} -{"name":{"first":"Sharlene","last":"Zeolla"},"gender":"female","birthday":"1987-04-06","contact":{"address":{"street":"14 River Way","zip":"26138","city":"Brohard","state":"WV"},"email":["sharlene.zeolla@nosql-matters.org"],"region":"304","phone":["304-8306140","304-6164151"]},"likes":[],"memberSince":"2012-05-02"} -{"name":{"first":"Tyler","last":"Dismukes"},"gender":"male","birthday":"1943-03-27","contact":{"address":{"street":"17 9th Ave","zip":"54640","city":"Lynxville","state":"WI"},"email":["tyler.dismukes@nosql-matters.org"],"region":"608","phone":["608-1898504","608-3285190"]},"likes":[],"memberSince":"2007-10-22"} -{"name":{"first":"Dawn","last":"Forcello"},"gender":"female","birthday":"1986-04-22","contact":{"address":{"street":"19 115th St","zip":"17861","city":"Paxtonville","state":"PA"},"email":["dawn.forcello@nosql-matters.org","dawn@nosql-matters.org"],"region":"570","phone":["570-5630463","570-3214820"]},"likes":["climbing","ironing"],"memberSince":"2008-04-26"} -{"name":{"first":"Portia","last":"Schmader"},"gender":"female","birthday":"1955-03-22","contact":{"address":{"street":"6 Laramie Aly","zip":"17841","city":"Mc Clure","state":"PA"},"email":["portia.schmader@nosql-matters.org"],"region":"570","phone":["570-8284753","570-9616626"]},"likes":[],"memberSince":"2008-12-21"} -{"name":{"first":"Louann","last":"Taborn"},"gender":"female","birthday":"1949-12-26","contact":{"address":{"street":"22 Liberty Way","zip":"45153","city":"Moscow","state":"OH"},"email":["louann.taborn@nosql-matters.org","taborn@nosql-matters.org"],"region":"513","phone":["513-1588944","513-0957446"]},"likes":["reading","ironing"],"memberSince":"2008-03-17"} -{"name":{"first":"Lorelei","last":"Kassabaum"},"gender":"female","birthday":"1973-11-23","contact":{"address":{"street":"12 Clifton Run","zip":"51449","city":"Lake City","state":"IA"},"email":["lorelei.kassabaum@nosql-matters.org","lorelei@nosql-matters.org"],"region":"712","phone":["712-1934848"]},"likes":["boxing","travelling","climbing"],"memberSince":"2012-02-28"} -{"name":{"first":"Bud","last":"Albrekht"},"gender":"male","birthday":"1941-10-19","contact":{"address":{"street":"6 River Aly","zip":"14586","city":"West Henrietta","state":"NY"},"email":["bud.albrekht@nosql-matters.org","albrekht@nosql-matters.org"],"region":"716","phone":["716-8427357"]},"likes":[],"memberSince":"2009-10-15"} -{"name":{"first":"Dionna","last":"Barsanti"},"gender":"female","birthday":"1976-05-02","contact":{"address":{"street":"4 Palmer Ct","zip":"67651","city":"Natoma","state":"KS"},"email":["dionna.barsanti@nosql-matters.org"],"region":"785","phone":["785-1939118"]},"likes":[],"memberSince":"2009-03-23"} -{"name":{"first":"Aron","last":"Mcginty"},"gender":"male","birthday":"1964-06-26","contact":{"address":{"street":"17 198th St","zip":"13367","city":"Lowville","state":"NY"},"email":["aron.mcginty@nosql-matters.org","aron@nosql-matters.org"],"region":"315","phone":["315-1063499"]},"likes":["chatting","travelling"],"memberSince":"2007-09-04"} -{"name":{"first":"Winnifred","last":"Kucinskas"},"gender":"female","birthday":"1950-12-21","contact":{"address":{"street":"9 Trego Cir","zip":"47424","city":"Bloomfield","state":"IN"},"email":["winnifred.kucinskas@nosql-matters.org","winnifred@nosql-matters.org"],"region":"812","phone":[]},"likes":[],"memberSince":"2007-09-04"} -{"name":{"first":"Keneth","last":"Maready"},"gender":"male","birthday":"1949-01-27","contact":{"address":{"street":"9 Country club Cir","zip":"13073","city":"Groton","state":"NY"},"email":["keneth.maready@nosql-matters.org"],"region":"607","phone":["607-9700302"]},"likes":["biking"],"memberSince":"2009-06-02"} -{"name":{"first":"Demetrice","last":"Hilo"},"gender":"female","birthday":"1959-06-03","contact":{"address":{"street":"10 234th Ave","zip":"83464","city":"Leadore","state":"ID"},"email":["demetrice.hilo@nosql-matters.org"],"region":"208","phone":["208-3361855"]},"likes":["travelling"],"memberSince":"2009-02-10"} -{"name":{"first":"Arlie","last":"Pundt"},"gender":"male","birthday":"1951-09-02","contact":{"address":{"street":"5 Branchton Aly","zip":"92338","city":"Ludlow","state":"CA"},"email":["arlie.pundt@nosql-matters.org","pundt@nosql-matters.org"],"region":"760","phone":[]},"likes":[],"memberSince":"2009-05-06"} -{"name":{"first":"Herma","last":"Eustis"},"gender":"female","birthday":"1985-03-25","contact":{"address":{"street":"9 Spring Way","zip":"54204","city":"Brussels","state":"WI"},"email":["herma.eustis@nosql-matters.org","herma@nosql-matters.org"],"region":"920","phone":["920-8674413","920-2020353"]},"likes":["chess","driving"],"memberSince":"2007-11-29"} -{"name":{"first":"Ione","last":"Tangari"},"gender":"female","birthday":"1941-08-21","contact":{"address":{"street":"22 7th St","zip":"03032","city":"Auburn","state":"NH"},"email":["ione.tangari@nosql-matters.org"],"region":"603","phone":["603-5147910","603-0115867"]},"likes":[],"memberSince":"2007-08-30"} -{"name":{"first":"Genesis","last":"Sundseth"},"gender":"female","birthday":"1976-02-16","contact":{"address":{"street":"5 198th St","zip":"79966","city":"El Paso","state":"TX"},"email":["genesis.sundseth@nosql-matters.org"],"region":"915","phone":["915-9860487"]},"likes":["chess"],"memberSince":"2007-12-09"} -{"name":{"first":"Cornelius","last":"Damme"},"gender":"male","birthday":"1966-08-11","contact":{"address":{"street":"21 Neumann Blvd","zip":"75481","city":"Sulphur Bluff","state":"TX"},"email":["cornelius.damme@nosql-matters.org","cornelius@nosql-matters.org"],"region":"903","phone":["903-4487098"]},"likes":["checkers","driving"],"memberSince":"2012-04-08"} -{"name":{"first":"Harvey","last":"Drehobl"},"gender":"male","birthday":"1970-06-20","contact":{"address":{"street":"10 University Ct","zip":"67150","city":"Waldron","state":"KS"},"email":["harvey.drehobl@nosql-matters.org","drehobl@nosql-matters.org","harvey@nosql-matters.org"],"region":"316","phone":[]},"likes":["chess"],"memberSince":"2009-07-24"} -{"name":{"first":"Jules","last":"Mcewen"},"gender":"male","birthday":"1974-04-03","contact":{"address":{"street":"2 266th St","zip":"55337","city":"Burnsville","state":"MN"},"email":["jules.mcewen@nosql-matters.org","mcewen@nosql-matters.org","jules@nosql-matters.org"],"region":"612","phone":["612-1107751"]},"likes":["swimming"],"memberSince":"2011-12-20"} -{"name":{"first":"Connie","last":"Jeannotte"},"gender":"male","birthday":"1985-04-27","contact":{"address":{"street":"9 15th St","zip":"75057","city":"Lewisville","state":"TX"},"email":["connie.jeannotte@nosql-matters.org","connie@nosql-matters.org"],"region":"972","phone":[]},"likes":["driving"],"memberSince":"2010-01-23"} -{"name":{"first":"Shonna","last":"Kujat"},"gender":"female","birthday":"1964-12-12","contact":{"address":{"street":"21 17th Ave","zip":"70810","city":"Baton Rouge","state":"LA"},"email":["shonna.kujat@nosql-matters.org"],"region":"225","phone":["225-8406633","225-3577040"]},"likes":["chess","boxing","reading","travelling"],"memberSince":"2011-05-01"} -{"name":{"first":"Sigrid","last":"Devora"},"gender":"female","birthday":"1993-02-10","contact":{"address":{"street":"8 Commercial Cir","zip":"00982","city":"Carolina","state":"PR"},"email":["sigrid.devora@nosql-matters.org","devora@nosql-matters.org"],"region":"787","phone":[]},"likes":["swimming","climbing"],"memberSince":"2009-04-17"} -{"name":{"first":"Gerald","last":"Lapinta"},"gender":"male","birthday":"1972-07-10","contact":{"address":{"street":"8 2nd Ave","zip":"54467","city":"Plover","state":"WI"},"email":["gerald.lapinta@nosql-matters.org","gerald@nosql-matters.org"],"region":"715","phone":["715-5656792","715-7054062"]},"likes":[],"memberSince":"2008-05-27"} -{"name":{"first":"Lang","last":"Taper"},"gender":"female","birthday":"1964-12-11","contact":{"address":{"street":"21 5th St","zip":"17106","city":"Harrisburg","state":"PA"},"email":["lang.taper@nosql-matters.org","taper@nosql-matters.org","lang@nosql-matters.org"],"region":"717","phone":[]},"likes":["chatting","climbing"],"memberSince":"2012-02-10"} -{"name":{"first":"Cole","last":"Hillery"},"gender":"male","birthday":"1960-04-16","contact":{"address":{"street":"15 Harper Rd","zip":"58106","city":"Fargo","state":"ND"},"email":["cole.hillery@nosql-matters.org","cole@nosql-matters.org"],"region":"701","phone":["701-8667358"]},"likes":["ironing"],"memberSince":"2010-04-01"} -{"name":{"first":"Everett","last":"Gallob"},"gender":"male","birthday":"1949-07-28","contact":{"address":{"street":"22 9th Ave","zip":"52053","city":"Holy Cross","state":"IA"},"email":["everett.gallob@nosql-matters.org","everett@nosql-matters.org"],"region":"319","phone":["319-5273289","319-1125017"]},"likes":["boxing"],"memberSince":"2011-04-23"} -{"name":{"first":"Jaquelyn","last":"Rocks"},"gender":"female","birthday":"1981-09-09","contact":{"address":{"street":"7 18th Ave","zip":"64129","city":"Kansas City","state":"MO"},"email":["jaquelyn.rocks@nosql-matters.org","rocks@nosql-matters.org"],"region":"816","phone":["816-5577901","816-0293839"]},"likes":["running"],"memberSince":"2008-12-23"} -{"name":{"first":"Fletcher","last":"Procknow"},"gender":"male","birthday":"1991-03-22","contact":{"address":{"street":"16 290th Ave","zip":"57326","city":"Chamberlain","state":"SD"},"email":["fletcher.procknow@nosql-matters.org","procknow@nosql-matters.org"],"region":"605","phone":["605-2922012"]},"likes":["shopping","chatting"],"memberSince":"2010-02-21"} -{"name":{"first":"Leonel","last":"Catalina"},"gender":"male","birthday":"1949-06-19","contact":{"address":{"street":"2 Corcoran Pl","zip":"19335","city":"Downingtown","state":"PA"},"email":["leonel.catalina@nosql-matters.org","catalina@nosql-matters.org"],"region":"610","phone":["610-0192036"]},"likes":["running","swimming","chatting"],"memberSince":"2009-03-23"} -{"name":{"first":"Doyle","last":"Norse"},"gender":"male","birthday":"1975-01-17","contact":{"address":{"street":"14 Willard Ave","zip":"54449","city":"Marshfield","state":"WI"},"email":["doyle.norse@nosql-matters.org"],"region":"715","phone":["715-3877019","715-4177820"]},"likes":["shopping"],"memberSince":"2010-04-01"} -{"name":{"first":"Sean","last":"Resenz"},"gender":"male","birthday":"1979-08-30","contact":{"address":{"street":"21 Columbia Run","zip":"76051","city":"Grapevine","state":"TX"},"email":["sean.resenz@nosql-matters.org"],"region":"817","phone":["817-4514025"]},"likes":["swimming"],"memberSince":"2009-03-10"} -{"name":{"first":"Mayme","last":"Bucio"},"gender":"female","birthday":"1973-11-20","contact":{"address":{"street":"13 Harvard Way","zip":"24475","city":"Spottswood","state":"VA"},"email":["mayme.bucio@nosql-matters.org"],"region":"540","phone":["540-1513081","540-9758830"]},"likes":["swimming"],"memberSince":"2007-09-02"} -{"name":{"first":"Dorthey","last":"Gracy"},"gender":"female","birthday":"1967-08-25","contact":{"address":{"street":"2 13th Ave","zip":"43356","city":"Waldo","state":"OH"},"email":["dorthey.gracy@nosql-matters.org","gracy@nosql-matters.org"],"region":"740","phone":["740-8360831"]},"likes":["snowboarding","driving"],"memberSince":"2010-10-15"} -{"name":{"first":"Chad","last":"Hamberger"},"gender":"male","birthday":"1954-09-19","contact":{"address":{"street":"2 Morningside Pl","zip":"16113","city":"Clark","state":"PA"},"email":["chad.hamberger@nosql-matters.org"],"region":"724","phone":[]},"likes":["running","ironing"],"memberSince":"2009-11-10"} -{"name":{"first":"Asha","last":"Bloome"},"gender":"female","birthday":"1987-04-26","contact":{"address":{"street":"19 New hampshire Aly","zip":"32634","city":"Fairfield","state":"FL"},"email":["asha.bloome@nosql-matters.org"],"region":"352","phone":["352-5226439","352-2393014"]},"likes":["running","chess"],"memberSince":"2007-06-04"} -{"name":{"first":"Wes","last":"Mathison"},"gender":"male","birthday":"1948-01-21","contact":{"address":{"street":"22 New york Pl","zip":"42456","city":"Slaughters","state":"KY"},"email":["wes.mathison@nosql-matters.org","mathison@nosql-matters.org"],"region":"270","phone":["270-3786720"]},"likes":[],"memberSince":"2010-06-05"} -{"name":{"first":"Nichelle","last":"Conly"},"gender":"female","birthday":"1950-06-14","contact":{"address":{"street":"20 Branchton Rd","zip":"45416","city":"Dayton","state":"OH"},"email":["nichelle.conly@nosql-matters.org","conly@nosql-matters.org"],"region":"937","phone":["937-4489248"]},"likes":[],"memberSince":"2007-11-28"} -{"name":{"first":"Allen","last":"Creacy"},"gender":"female","birthday":"1984-06-11","contact":{"address":{"street":"8 Woodlawn Rd","zip":"52645","city":"New London","state":"IA"},"email":["allen.creacy@nosql-matters.org"],"region":"319","phone":[]},"likes":[],"memberSince":"2010-03-31"} -{"name":{"first":"Randal","last":"Mastrobuono"},"gender":"male","birthday":"1959-05-27","contact":{"address":{"street":"22 Riverview Loop","zip":"17326","city":"Gettysburg","state":"PA"},"email":["randal.mastrobuono@nosql-matters.org","randal@nosql-matters.org"],"region":"717","phone":["717-2323847"]},"likes":["swimming","skiing"],"memberSince":"2010-09-27"} -{"name":{"first":"Mason","last":"Savell"},"gender":"male","birthday":"1953-03-09","contact":{"address":{"street":"21 Mound Cir","zip":"76476","city":"Tolar","state":"TX"},"email":["mason.savell@nosql-matters.org"],"region":"254","phone":["254-6742978"]},"likes":[],"memberSince":"2011-02-02"} -{"name":{"first":"Rufus","last":"Jett"},"gender":"male","birthday":"1987-02-23","contact":{"address":{"street":"9 Kearney Dr","zip":"65449","city":"Cook Station","state":"MO"},"email":["rufus.jett@nosql-matters.org"],"region":"573","phone":["573-7659225","573-9939023"]},"likes":[],"memberSince":"2009-02-07"} -{"name":{"first":"Isaac","last":"Mlodzianowski"},"gender":"male","birthday":"1949-11-10","contact":{"address":{"street":"7 Woodson St","zip":"43048","city":"Mount Liberty","state":"OH"},"email":["isaac.mlodzianowski@nosql-matters.org"],"region":"740","phone":["740-2882408","740-7569143"]},"likes":["reading","travelling"],"memberSince":"2010-05-12"} -{"name":{"first":"Davis","last":"Zbinden"},"gender":"male","birthday":"1948-03-06","contact":{"address":{"street":"3 20th Ave","zip":"24870","city":"Oceana","state":"WV"},"email":["davis.zbinden@nosql-matters.org","zbinden@nosql-matters.org","davis@nosql-matters.org"],"region":"304","phone":["304-5891194"]},"likes":[],"memberSince":"2012-03-04"} -{"name":{"first":"Lynwood","last":"Kluever"},"gender":"male","birthday":"1949-01-07","contact":{"address":{"street":"2 Vermont Ct","zip":"96718","city":"Hawaii National Park","state":"HI"},"email":["lynwood.kluever@nosql-matters.org","kluever@nosql-matters.org"],"region":"808","phone":["808-4065621"]},"likes":["chess","checkers"],"memberSince":"2009-04-11"} -{"name":{"first":"Felipe","last":"Poertner"},"gender":"male","birthday":"1976-11-14","contact":{"address":{"street":"7 16th Ave","zip":"97321","city":"Albany","state":"OR"},"email":["felipe.poertner@nosql-matters.org"],"region":"541","phone":["541-2047760"]},"likes":["checkers","skiing"],"memberSince":"2007-06-23"} -{"name":{"first":"Jammie","last":"Laatsch"},"gender":"female","birthday":"1984-01-31","contact":{"address":{"street":"11 Laramie Rd","zip":"66771","city":"Saint Paul","state":"KS"},"email":["jammie.laatsch@nosql-matters.org"],"region":"316","phone":["316-4480738","316-4214474"]},"likes":[],"memberSince":"2008-03-06"} -{"name":{"first":"Shawn","last":"Schmeidler"},"gender":"male","birthday":"1976-07-01","contact":{"address":{"street":"18 Gasoline St","zip":"46247","city":"Indianapolis","state":"IN"},"email":["shawn.schmeidler@nosql-matters.org"],"region":"317","phone":["317-6373863"]},"likes":["chatting","snowboarding"],"memberSince":"2012-04-07"} -{"name":{"first":"Sylvia","last":"Arleth"},"gender":"female","birthday":"1959-04-19","contact":{"address":{"street":"11 Pratt St","zip":"12582","city":"Stormville","state":"NY"},"email":["sylvia.arleth@nosql-matters.org","arleth@nosql-matters.org"],"region":"914","phone":[]},"likes":["checkers"],"memberSince":"2007-12-05"} -{"name":{"first":"Cliff","last":"Giancola"},"gender":"male","birthday":"1942-02-16","contact":{"address":{"street":"8 Crescent Pl","zip":"38677","city":"University","state":"MS"},"email":["cliff.giancola@nosql-matters.org"],"region":"662","phone":["662-7274610","662-5385103"]},"likes":["skiing"],"memberSince":"2010-10-08"} -{"name":{"first":"Branda","last":"Dorey"},"gender":"female","birthday":"1994-03-28","contact":{"address":{"street":"16 Kansas Dr","zip":"98686","city":"Vancouver","state":"WA"},"email":["branda.dorey@nosql-matters.org"],"region":"360","phone":[]},"likes":["snowboarding"],"memberSince":"2008-07-05"} -{"name":{"first":"Nancee","last":"Bayard"},"gender":"female","birthday":"1979-02-24","contact":{"address":{"street":"8 Roberts Way","zip":"28115","city":"Mooresville","state":"NC"},"email":["nancee.bayard@nosql-matters.org"],"region":"704","phone":["704-4821391"]},"likes":["biking","checkers"],"memberSince":"2010-08-15"} -{"name":{"first":"Indira","last":"Milkovich"},"gender":"female","birthday":"1951-10-08","contact":{"address":{"street":"15 334th Ave","zip":"79990","city":"El Paso","state":"TX"},"email":["indira.milkovich@nosql-matters.org"],"region":"915","phone":["915-2797737"]},"likes":[],"memberSince":"2011-08-17"} -{"name":{"first":"Israel","last":"Sefcheck"},"gender":"male","birthday":"1944-03-04","contact":{"address":{"street":"22 Woodson Run","zip":"97440","city":"Eugene","state":"OR"},"email":["israel.sefcheck@nosql-matters.org","israel@nosql-matters.org"],"region":"541","phone":["541-4277802"]},"likes":["shopping","driving","skiing"],"memberSince":"2011-06-21"} -{"name":{"first":"Jay","last":"Traverso"},"gender":"male","birthday":"1967-04-15","contact":{"address":{"street":"21 4th St","zip":"24036","city":"Roanoke","state":"VA"},"email":["jay.traverso@nosql-matters.org","traverso@nosql-matters.org"],"region":"540","phone":["540-9166934","540-8294775"]},"likes":["checkers","climbing"],"memberSince":"2009-02-18"} -{"name":{"first":"Ian","last":"Rummerfield"},"gender":"male","birthday":"1978-03-28","contact":{"address":{"street":"12 Logeman Blvd","zip":"01379","city":"Wendell","state":"MA"},"email":["ian.rummerfield@nosql-matters.org","ian@nosql-matters.org"],"region":"978","phone":["978-3409534"]},"likes":["chatting","travelling","climbing"],"memberSince":"2011-07-05"} -{"name":{"first":"Kemberly","last":"Bramblett"},"gender":"female","birthday":"1981-01-20","contact":{"address":{"street":"18 234th St","zip":"97130","city":"Manzanita","state":"OR"},"email":["kemberly.bramblett@nosql-matters.org","bramblett@nosql-matters.org"],"region":"503","phone":["503-0057719"]},"likes":[],"memberSince":"2011-03-09"} -{"name":{"first":"Brice","last":"Sae"},"gender":"male","birthday":"1953-09-11","contact":{"address":{"street":"2 16th Ave","zip":"14772","city":"Randolph","state":"NY"},"email":["brice.sae@nosql-matters.org"],"region":"716","phone":["716-4504934"]},"likes":[],"memberSince":"2010-04-16"} -{"name":{"first":"Armand","last":"Dalaq"},"gender":"male","birthday":"1945-02-01","contact":{"address":{"street":"19 Beechwood Ct","zip":"60303","city":"Oak Park","state":"IL"},"email":["armand.dalaq@nosql-matters.org","armand@nosql-matters.org"],"region":"708","phone":[]},"likes":["chess"],"memberSince":"2008-07-04"} -{"name":{"first":"Gregoria","last":"Salas"},"gender":"female","birthday":"1950-12-31","contact":{"address":{"street":"12 Euclid Way","zip":"61262","city":"Lynn Center","state":"IL"},"email":["gregoria.salas@nosql-matters.org","gregoria@nosql-matters.org"],"region":"309","phone":[]},"likes":["swimming","driving"],"memberSince":"2008-07-05"} -{"name":{"first":"Bud","last":"Gillig"},"gender":"male","birthday":"1942-05-22","contact":{"address":{"street":"18 Vernon Pl","zip":"40862","city":"Partridge","state":"KY"},"email":["bud.gillig@nosql-matters.org","gillig@nosql-matters.org"],"region":"606","phone":["606-5503677","606-3234201"]},"likes":["snowboarding"],"memberSince":"2009-08-20"} -{"name":{"first":"Earnest","last":"Minten"},"gender":"male","birthday":"1956-05-31","contact":{"address":{"street":"2 Palmer Loop","zip":"44695","city":"Bowerston","state":"OH"},"email":["earnest.minten@nosql-matters.org","minten@nosql-matters.org"],"region":"740","phone":["740-4080203"]},"likes":["chess"],"memberSince":"2012-03-05"} -{"name":{"first":"Sage","last":"Lourence"},"gender":"female","birthday":"1982-08-01","contact":{"address":{"street":"20 242nd St","zip":"28307","city":"Fort Bragg","state":"NC"},"email":["sage.lourence@nosql-matters.org"],"region":"910","phone":["910-2760106"]},"likes":["shopping","snowboarding"],"memberSince":"2010-06-30"} -{"name":{"first":"Dottie","last":"Scheib"},"gender":"female","birthday":"1965-05-31","contact":{"address":{"street":"22 Mozart Dr","zip":"94571","city":"Rio Vista","state":"CA"},"email":["dottie.scheib@nosql-matters.org"],"region":"707","phone":[]},"likes":["travelling"],"memberSince":"2008-02-25"} -{"name":{"first":"Dexter","last":"Riojas"},"gender":"male","birthday":"1982-06-30","contact":{"address":{"street":"22 Atchison Cir","zip":"27920","city":"Buxton","state":"NC"},"email":["dexter.riojas@nosql-matters.org"],"region":"252","phone":["252-3726484","252-1558320"]},"likes":["swimming","chess","snowboarding","climbing"],"memberSince":"2010-11-24"} -{"name":{"first":"Herminia","last":"Cookey"},"gender":"female","birthday":"1947-07-26","contact":{"address":{"street":"16 19th Ave","zip":"60549","city":"Serena","state":"IL"},"email":["herminia.cookey@nosql-matters.org","herminia@nosql-matters.org"],"region":"815","phone":["815-0201762","815-3403156"]},"likes":["chess"],"memberSince":"2010-04-25"} -{"name":{"first":"Reid","last":"Henington"},"gender":"male","birthday":"1946-11-30","contact":{"address":{"street":"11 Industrial Pl","zip":"02164","city":"Newton","state":"MA"},"email":["reid.henington@nosql-matters.org"],"region":"617","phone":["617-5383374"]},"likes":["snowboarding"],"memberSince":"2011-11-09"} -{"name":{"first":"Todd","last":"Crossfield"},"gender":"male","birthday":"1956-06-24","contact":{"address":{"street":"19 Spring Rd","zip":"60004","city":"Arlington Heights","state":"IL"},"email":["todd.crossfield@nosql-matters.org","todd@nosql-matters.org"],"region":"847","phone":["847-5347550"]},"likes":[],"memberSince":"2007-08-28"} -{"name":{"first":"Klara","last":"Quero"},"gender":"female","birthday":"1955-07-29","contact":{"address":{"street":"3 Beechwood Blvd","zip":"89102","city":"Las Vegas","state":"NV"},"email":["klara.quero@nosql-matters.org","klara@nosql-matters.org"],"region":"702","phone":["702-1667610"]},"likes":[],"memberSince":"2012-04-20"} -{"name":{"first":"Latonia","last":"Dragg"},"gender":"female","birthday":"1972-11-02","contact":{"address":{"street":"16 Pratt Dr","zip":"15742","city":"Glen Campbell","state":"PA"},"email":["latonia.dragg@nosql-matters.org","dragg@nosql-matters.org"],"region":"814","phone":["814-9440786"]},"likes":["swimming"],"memberSince":"2011-11-11"} -{"name":{"first":"Patricia","last":"Lance"},"gender":"female","birthday":"1967-05-10","contact":{"address":{"street":"6 Clydesdale Cir","zip":"52552","city":"Drakesville","state":"IA"},"email":["patricia.lance@nosql-matters.org","lance@nosql-matters.org"],"region":"515","phone":["515-6195006"]},"likes":[],"memberSince":"2007-12-02"} -{"name":{"first":"Asa","last":"Cacioppo"},"gender":"male","birthday":"1973-10-16","contact":{"address":{"street":"3 Phillips Way","zip":"45367","city":"Sidney","state":"OH"},"email":["asa.cacioppo@nosql-matters.org","cacioppo@nosql-matters.org"],"region":"937","phone":["937-0397364"]},"likes":["skiing"],"memberSince":"2011-10-31"} -{"name":{"first":"Marlin","last":"Orto"},"gender":"male","birthday":"1967-06-09","contact":{"address":{"street":"16 Walnut Ave","zip":"87831","city":"San Acacia","state":"NM"},"email":["marlin.orto@nosql-matters.org"],"region":"505","phone":[]},"likes":["running","reading"],"memberSince":"2010-08-08"} -{"name":{"first":"Soraya","last":"Cloffi"},"gender":"female","birthday":"1944-01-13","contact":{"address":{"street":"19 3rd Ave","zip":"61061","city":"Oregon","state":"IL"},"email":["soraya.cloffi@nosql-matters.org"],"region":"815","phone":[]},"likes":["skiing"],"memberSince":"2011-07-22"} -{"name":{"first":"Levi","last":"Huenink"},"gender":"male","birthday":"1980-10-30","contact":{"address":{"street":"1 Harper Ln","zip":"28719","city":"Cherokee","state":"NC"},"email":["levi.huenink@nosql-matters.org","levi@nosql-matters.org"],"region":"828","phone":["828-7942959"]},"likes":[],"memberSince":"2010-11-01"} -{"name":{"first":"Liliana","last":"Klahr"},"gender":"female","birthday":"1955-01-01","contact":{"address":{"street":"12 Spring Way","zip":"19550","city":"Rehrersburg","state":"PA"},"email":["liliana.klahr@nosql-matters.org","klahr@nosql-matters.org"],"region":"717","phone":["717-1245025","717-5799333"]},"likes":["running","chatting","chess"],"memberSince":"2009-07-30"} -{"name":{"first":"Rosamond","last":"Terris"},"gender":"female","birthday":"1957-07-31","contact":{"address":{"street":"17 Fairmont Loop","zip":"90721","city":"Los Alamitos","state":"CA"},"email":["rosamond.terris@nosql-matters.org","terris@nosql-matters.org","rosamond@nosql-matters.org"],"region":"562","phone":["562-3340600"]},"likes":["skiing","ironing"],"memberSince":"2010-06-05"} -{"name":{"first":"Rory","last":"Lalin"},"gender":"male","birthday":"1945-09-28","contact":{"address":{"street":"15 Price St","zip":"46741","city":"Grabill","state":"IN"},"email":["rory.lalin@nosql-matters.org"],"region":"219","phone":["219-3381846"]},"likes":["ironing"],"memberSince":"2009-01-25"} -{"name":{"first":"Truman","last":"Millis"},"gender":"male","birthday":"1981-01-13","contact":{"address":{"street":"12 Champlain Cir","zip":"63535","city":"Coatsville","state":"MO"},"email":["truman.millis@nosql-matters.org"],"region":"660","phone":["660-3515886"]},"likes":[],"memberSince":"2011-06-07"} -{"name":{"first":"Leonardo","last":"Postlewait"},"gender":"male","birthday":"1987-05-30","contact":{"address":{"street":"11 Fraser Way","zip":"44024","city":"Chardon","state":"OH"},"email":["leonardo.postlewait@nosql-matters.org","leonardo@nosql-matters.org"],"region":"440","phone":["440-2215884","440-4931997"]},"likes":[],"memberSince":"2007-05-27"} -{"name":{"first":"Cliff","last":"Schuck"},"gender":"male","birthday":"1964-06-15","contact":{"address":{"street":"20 Wallace Ct","zip":"20711","city":"Lothian","state":"MD"},"email":["cliff.schuck@nosql-matters.org","schuck@nosql-matters.org"],"region":"410","phone":[]},"likes":["skiing"],"memberSince":"2009-11-20"} -{"name":{"first":"Delphine","last":"Schmand"},"gender":"female","birthday":"1988-12-18","contact":{"address":{"street":"21 River Loop","zip":"03871","city":"Rye Beach","state":"NH"},"email":["delphine.schmand@nosql-matters.org","delphine@nosql-matters.org"],"region":"603","phone":["603-7968208"]},"likes":["shopping","travelling","climbing"],"memberSince":"2009-02-13"} -{"name":{"first":"Neal","last":"Pizzuto"},"gender":"male","birthday":"1969-09-13","contact":{"address":{"street":"19 Palmer Cir","zip":"85262","city":"Scottsdale","state":"AZ"},"email":["neal.pizzuto@nosql-matters.org"],"region":"480","phone":["480-0970013","480-6358484"]},"likes":["swimming"],"memberSince":"2007-06-16"} -{"name":{"first":"Trent","last":"Maddalena"},"gender":"male","birthday":"1964-08-14","contact":{"address":{"street":"15 19th St","zip":"60092","city":"Libertyville","state":"IL"},"email":["trent.maddalena@nosql-matters.org","maddalena@nosql-matters.org"],"region":"847","phone":[]},"likes":["running","chess","driving"],"memberSince":"2009-04-15"} -{"name":{"first":"Particia","last":"Merriwether"},"gender":"female","birthday":"1960-11-23","contact":{"address":{"street":"1 Pine Pl","zip":"83661","city":"Payette","state":"ID"},"email":["particia.merriwether@nosql-matters.org","particia@nosql-matters.org"],"region":"208","phone":["208-8576109","208-5375892"]},"likes":["shopping"],"memberSince":"2009-04-08"} -{"name":{"first":"Tonita","last":"Rowman"},"gender":"female","birthday":"1954-06-29","contact":{"address":{"street":"16 Pratt Rd","zip":"15685","city":"Southwest","state":"PA"},"email":["tonita.rowman@nosql-matters.org","rowman@nosql-matters.org"],"region":"724","phone":["724-7593085"]},"likes":[],"memberSince":"2008-06-14"} -{"name":{"first":"Jewel","last":"Macartney"},"gender":"female","birthday":"1960-01-02","contact":{"address":{"street":"12 Kansas Dr","zip":"02902","city":"Providence","state":"RI"},"email":["jewel.macartney@nosql-matters.org","macartney@nosql-matters.org"],"region":"401","phone":[]},"likes":["ironing"],"memberSince":"2008-09-05"} -{"name":{"first":"Kym","last":"Zanotti"},"gender":"female","birthday":"1959-01-02","contact":{"address":{"street":"3 Trego St","zip":"28664","city":"Plumtree","state":"NC"},"email":["kym.zanotti@nosql-matters.org"],"region":"828","phone":["828-7389543","828-3698936"]},"likes":["shopping","swimming","chess","travelling","ironing"],"memberSince":"2009-01-12"} -{"name":{"first":"Gia","last":"Kennamer"},"gender":"female","birthday":"1971-02-19","contact":{"address":{"street":"9 Clifton Way","zip":"26711","city":"Capon Bridge","state":"WV"},"email":["gia.kennamer@nosql-matters.org","gia@nosql-matters.org"],"region":"304","phone":["304-9196576","304-0196329"]},"likes":["snowboarding","skiing"],"memberSince":"2012-04-17"} -{"name":{"first":"Cecil","last":"Armer"},"gender":"male","birthday":"1947-08-25","contact":{"address":{"street":"6 Cliffbourne Aly","zip":"44116","city":"Rocky River","state":"OH"},"email":["cecil.armer@nosql-matters.org","cecil@nosql-matters.org"],"region":"440","phone":["440-4733864"]},"likes":["boxing","skiing"],"memberSince":"2007-06-20"} -{"name":{"first":"Larry","last":"River"},"gender":"male","birthday":"1968-02-16","contact":{"address":{"street":"14 6th Ave","zip":"69043","city":"Stratton","state":"NE"},"email":["larry.river@nosql-matters.org"],"region":"308","phone":["308-1603101"]},"likes":["biking","checkers"],"memberSince":"2011-01-10"} -{"name":{"first":"Evelina","last":"Reho"},"gender":"female","birthday":"1978-03-27","contact":{"address":{"street":"5 20th Ave","zip":"61335","city":"Mc Nabb","state":"IL"},"email":["evelina.reho@nosql-matters.org","reho@nosql-matters.org"],"region":"815","phone":["815-5557074"]},"likes":["running"],"memberSince":"2010-06-21"} -{"name":{"first":"Markita","last":"Freudiger"},"gender":"female","birthday":"1943-02-18","contact":{"address":{"street":"2 Florida Dr","zip":"27047","city":"Siloam","state":"NC"},"email":["markita.freudiger@nosql-matters.org","markita@nosql-matters.org"],"region":"336","phone":[]},"likes":["running","checkers","climbing"],"memberSince":"2010-11-23"} -{"name":{"first":"Doug","last":"Sorbera"},"gender":"male","birthday":"1987-12-27","contact":{"address":{"street":"20 18th St","zip":"47003","city":"West College Corner","state":"IN"},"email":["doug.sorbera@nosql-matters.org"],"region":"317","phone":["317-3255494","317-0385750"]},"likes":[],"memberSince":"2011-08-03"} -{"name":{"first":"Sina","last":"Kuks"},"gender":"female","birthday":"1950-05-18","contact":{"address":{"street":"17 Woodson Loop","zip":"78384","city":"San Diego","state":"TX"},"email":["sina.kuks@nosql-matters.org"],"region":"361","phone":["361-0824723"]},"likes":["driving"],"memberSince":"2010-09-10"} -{"name":{"first":"Malcom","last":"Rynders"},"gender":"male","birthday":"1949-01-31","contact":{"address":{"street":"4 New hampshire Pl","zip":"00212","city":"Portsmouth","state":"NH"},"email":["malcom.rynders@nosql-matters.org","malcom@nosql-matters.org"],"region":"603","phone":["603-0183243"]},"likes":[],"memberSince":"2011-05-06"} -{"name":{"first":"Christoper","last":"Chiarmonte"},"gender":"male","birthday":"1979-12-23","contact":{"address":{"street":"14 Pine Aly","zip":"45871","city":"New Knoxville","state":"OH"},"email":["christoper.chiarmonte@nosql-matters.org"],"region":"419","phone":["419-2373153","419-1166220"]},"likes":["shopping"],"memberSince":"2011-01-16"} -{"name":{"first":"Zada","last":"Gutenson"},"gender":"female","birthday":"1948-04-20","contact":{"address":{"street":"2 Patriot Run","zip":"46391","city":"Westville","state":"IN"},"email":["zada.gutenson@nosql-matters.org","gutenson@nosql-matters.org","zada@nosql-matters.org"],"region":"219","phone":["219-2113140","219-1679992"]},"likes":["swimming"],"memberSince":"2011-03-11"} -{"name":{"first":"Quincy","last":"Buchmiller"},"gender":"male","birthday":"1943-12-23","contact":{"address":{"street":"19 Country club Blvd","zip":"97143","city":"Netarts","state":"OR"},"email":["quincy.buchmiller@nosql-matters.org","quincy@nosql-matters.org"],"region":"503","phone":[]},"likes":[],"memberSince":"2010-01-29"} -{"name":{"first":"Joseph","last":"Gutenson"},"gender":"male","birthday":"1947-08-29","contact":{"address":{"street":"15 Commercial Cir","zip":"24595","city":"Sweet Briar","state":"VA"},"email":["joseph.gutenson@nosql-matters.org","joseph@nosql-matters.org"],"region":"804","phone":["804-1138787"]},"likes":["checkers"],"memberSince":"2009-04-04"} -{"name":{"first":"Karl","last":"Howett"},"gender":"male","birthday":"1942-07-01","contact":{"address":{"street":"2 Commercial Ln","zip":"35182","city":"Wattsville","state":"AL"},"email":["karl.howett@nosql-matters.org","howett@nosql-matters.org"],"region":"256","phone":[]},"likes":["shopping","reading"],"memberSince":"2010-12-12"} -{"name":{"first":"Jacquiline","last":"Kym"},"gender":"female","birthday":"1960-12-28","contact":{"address":{"street":"16 Summit Ct","zip":"45004","city":"Collinsville","state":"OH"},"email":["jacquiline.kym@nosql-matters.org"],"region":"513","phone":["513-8271978","513-3580336"]},"likes":["ironing"],"memberSince":"2010-07-02"} -{"name":{"first":"Clint","last":"Knappert"},"gender":"male","birthday":"1961-06-28","contact":{"address":{"street":"8 13th Ave","zip":"96777","city":"Pahala","state":"HI"},"email":["clint.knappert@nosql-matters.org"],"region":"808","phone":["808-5932538"]},"likes":["swimming"],"memberSince":"2009-07-15"} -{"name":{"first":"Craig","last":"Hauschild"},"gender":"male","birthday":"1956-04-06","contact":{"address":{"street":"16 Fairmont Run","zip":"06129","city":"Wethersfield","state":"CT"},"email":["craig.hauschild@nosql-matters.org","hauschild@nosql-matters.org"],"region":"860","phone":["860-5028963","860-4518907"]},"likes":["shopping","chess"],"memberSince":"2009-01-31"} -{"name":{"first":"Floyd","last":"Stank"},"gender":"male","birthday":"1961-01-31","contact":{"address":{"street":"12 New hampshire St","zip":"97908","city":"Ironside","state":"OR"},"email":["floyd.stank@nosql-matters.org"],"region":"541","phone":["541-7219746"]},"likes":[],"memberSince":"2012-05-06"} -{"name":{"first":"Jaye","last":"Morss"},"gender":"female","birthday":"1951-10-03","contact":{"address":{"street":"14 Roberts Aly","zip":"60572","city":"Aurora","state":"IL"},"email":["jaye.morss@nosql-matters.org","jaye@nosql-matters.org"],"region":"630","phone":["630-7504098"]},"likes":[],"memberSince":"2007-09-18"} -{"name":{"first":"Danika","last":"Taveras"},"gender":"female","birthday":"1958-11-05","contact":{"address":{"street":"2 Park Ct","zip":"91768","city":"Pomona","state":"CA"},"email":["danika.taveras@nosql-matters.org"],"region":"909","phone":["909-0789789"]},"likes":["driving"],"memberSince":"2009-01-06"} -{"name":{"first":"Suzette","last":"Bowle"},"gender":"female","birthday":"1969-09-29","contact":{"address":{"street":"17 Girard Ave","zip":"04006","city":"Biddeford Pool","state":"ME"},"email":["suzette.bowle@nosql-matters.org"],"region":"207","phone":["207-9699041"]},"likes":["biking","swimming","driving"],"memberSince":"2011-06-15"} -{"name":{"first":"Robert","last":"Mollison"},"gender":"male","birthday":"1987-09-23","contact":{"address":{"street":"14 Laramie Blvd","zip":"53968","city":"Wonewoc","state":"WI"},"email":["robert.mollison@nosql-matters.org","robert@nosql-matters.org"],"region":"608","phone":["608-7588732"]},"likes":["running"],"memberSince":"2008-10-06"} -{"name":{"first":"Eliseo","last":"Habermehl"},"gender":"male","birthday":"1975-10-28","contact":{"address":{"street":"7 4th St","zip":"98381","city":"Sekiu","state":"WA"},"email":["eliseo.habermehl@nosql-matters.org"],"region":"360","phone":["360-6273073"]},"likes":[],"memberSince":"2009-05-11"} -{"name":{"first":"Christel","last":"Rothrock"},"gender":"female","birthday":"1963-08-06","contact":{"address":{"street":"4 Laramie Hwy","zip":"30341","city":"Atlanta","state":"GA"},"email":["christel.rothrock@nosql-matters.org","rothrock@nosql-matters.org"],"region":"770","phone":["770-7575013","770-4273374"]},"likes":["reading","ironing"],"memberSince":"2009-04-11"} -{"name":{"first":"Augustine","last":"Donkor"},"gender":"male","birthday":"1967-10-18","contact":{"address":{"street":"7 Vernon Cir","zip":"77989","city":"Thomaston","state":"TX"},"email":["augustine.donkor@nosql-matters.org"],"region":"361","phone":["361-3615651","361-0809177"]},"likes":[],"memberSince":"2011-11-02"} -{"name":{"first":"Ian","last":"Maple"},"gender":"male","birthday":"1986-10-19","contact":{"address":{"street":"5 New hampshire Cir","zip":"74030","city":"Drumright","state":"OK"},"email":["ian.maple@nosql-matters.org"],"region":"918","phone":["918-1491591"]},"likes":["climbing","ironing"],"memberSince":"2009-06-19"} -{"name":{"first":"Maxima","last":"Appelman"},"gender":"female","birthday":"1983-02-08","contact":{"address":{"street":"17 Wyoming Ct","zip":"68882","city":"Wolbach","state":"NE"},"email":["maxima.appelman@nosql-matters.org","appelman@nosql-matters.org"],"region":"308","phone":["308-3942608","308-4380373"]},"likes":["shopping","boxing"],"memberSince":"2010-02-25"} -{"name":{"first":"Nicolas","last":"Termeer"},"gender":"male","birthday":"1957-09-01","contact":{"address":{"street":"3 Woodlawn Cir","zip":"29045","city":"Elgin","state":"SC"},"email":["nicolas.termeer@nosql-matters.org","termeer@nosql-matters.org"],"region":"803","phone":["803-2786553","803-4448332"]},"likes":["swimming","chess","snowboarding","climbing"],"memberSince":"2007-08-20"} -{"name":{"first":"Fernando","last":"Argall"},"gender":"male","birthday":"1950-06-03","contact":{"address":{"street":"16 14th St","zip":"57714","city":"Allen","state":"SD"},"email":["fernando.argall@nosql-matters.org","argall@nosql-matters.org"],"region":"605","phone":["605-3958296"]},"likes":["biking","reading","climbing"],"memberSince":"2008-01-09"} -{"name":{"first":"Isela","last":"Meli"},"gender":"female","birthday":"1979-06-19","contact":{"address":{"street":"18 Price Ln","zip":"43466","city":"Wayne","state":"OH"},"email":["isela.meli@nosql-matters.org","meli@nosql-matters.org"],"region":"419","phone":[]},"likes":["chess","climbing"],"memberSince":"2008-09-01"} -{"name":{"first":"Celeste","last":"Lepez"},"gender":"female","birthday":"1978-04-25","contact":{"address":{"street":"5 Rawlins Aly","zip":"28106","city":"Matthews","state":"NC"},"email":["celeste.lepez@nosql-matters.org"],"region":"704","phone":["704-5296435","704-7606559"]},"likes":["swimming"],"memberSince":"2011-10-23"} -{"name":{"first":"Cecil","last":"Moock"},"gender":"male","birthday":"1979-10-12","contact":{"address":{"street":"21 Woodlawn Dr","zip":"13756","city":"East Branch","state":"NY"},"email":["cecil.moock@nosql-matters.org","moock@nosql-matters.org"],"region":"607","phone":["607-4027837"]},"likes":["running"],"memberSince":"2008-08-13"} -{"name":{"first":"Leslie","last":"Crockett"},"gender":"male","birthday":"1942-02-14","contact":{"address":{"street":"11 Vernon Way","zip":"45042","city":"Middletown","state":"OH"},"email":["leslie.crockett@nosql-matters.org"],"region":"513","phone":["513-6827977"]},"likes":["shopping"],"memberSince":"2007-08-14"} -{"name":{"first":"Spencer","last":"Whitcher"},"gender":"male","birthday":"1966-10-11","contact":{"address":{"street":"20 Roberts Aly","zip":"26219","city":"Frenchton","state":"WV"},"email":["spencer.whitcher@nosql-matters.org"],"region":"304","phone":["304-5829220","304-8209149"]},"likes":["chatting"],"memberSince":"2009-02-09"} -{"name":{"first":"Donnette","last":"Lapping"},"gender":"female","birthday":"1946-02-14","contact":{"address":{"street":"12 Palmer Rd","zip":"24848","city":"Jenkinjones","state":"WV"},"email":["donnette.lapping@nosql-matters.org"],"region":"304","phone":[]},"likes":["reading","climbing"],"memberSince":"2010-06-20"} -{"name":{"first":"Marica","last":"Baines"},"gender":"female","birthday":"1964-10-31","contact":{"address":{"street":"10 Kalorama Ave","zip":"08005","city":"Barnegat","state":"NJ"},"email":["marica.baines@nosql-matters.org","baines@nosql-matters.org","marica@nosql-matters.org"],"region":"609","phone":["609-2962044"]},"likes":["running","chatting","boxing","checkers"],"memberSince":"2009-10-24"} -{"name":{"first":"Georgie","last":"Reys"},"gender":"female","birthday":"1982-01-05","contact":{"address":{"street":"12 Morningside Ave","zip":"43445","city":"Martin","state":"OH"},"email":["georgie.reys@nosql-matters.org","reys@nosql-matters.org"],"region":"419","phone":["419-3803603"]},"likes":[],"memberSince":"2009-01-28"} -{"name":{"first":"Adriene","last":"Hutchenson"},"gender":"female","birthday":"1983-07-15","contact":{"address":{"street":"6 13th St","zip":"94938","city":"Lagunitas","state":"CA"},"email":["adriene.hutchenson@nosql-matters.org","adriene@nosql-matters.org"],"region":"415","phone":["415-1017600","415-5764265"]},"likes":["shopping"],"memberSince":"2012-03-15"} -{"name":{"first":"Echo","last":"Hankinson"},"gender":"female","birthday":"1978-01-20","contact":{"address":{"street":"20 18th St","zip":"23141","city":"Quinton","state":"VA"},"email":["echo.hankinson@nosql-matters.org"],"region":"804","phone":["804-2373743","804-3141653"]},"likes":["swimming"],"memberSince":"2008-10-21"} -{"name":{"first":"Nerissa","last":"Romaniszyn"},"gender":"female","birthday":"1954-03-15","contact":{"address":{"street":"17 Ontario Hwy","zip":"78716","city":"Austin","state":"TX"},"email":["nerissa.romaniszyn@nosql-matters.org","nerissa@nosql-matters.org"],"region":"512","phone":["512-4165318"]},"likes":["swimming","travelling","skiing"],"memberSince":"2010-07-24"} -{"name":{"first":"Chad","last":"Corry"},"gender":"male","birthday":"1968-12-12","contact":{"address":{"street":"21 Riverview Dr","zip":"18426","city":"Greentown","state":"PA"},"email":["chad.corry@nosql-matters.org","corry@nosql-matters.org"],"region":"570","phone":["570-0179243","570-7567415"]},"likes":[],"memberSince":"2009-12-22"} -{"name":{"first":"Marina","last":"Chevrette"},"gender":"female","birthday":"1958-07-07","contact":{"address":{"street":"6 Wallick Blvd","zip":"46379","city":"Sumava Resorts","state":"IN"},"email":["marina.chevrette@nosql-matters.org"],"region":"219","phone":["219-9562077"]},"likes":["biking"],"memberSince":"2009-08-02"} -{"name":{"first":"Jacquiline","last":"Kind"},"gender":"female","birthday":"1957-04-19","contact":{"address":{"street":"14 Adams mill Loop","zip":"56228","city":"Cosmos","state":"MN"},"email":["jacquiline.kind@nosql-matters.org","kind@nosql-matters.org","jacquiline@nosql-matters.org"],"region":"320","phone":["320-5017558","320-0480252"]},"likes":["ironing"],"memberSince":"2008-08-06"} -{"name":{"first":"Roosevelt","last":"Akridge"},"gender":"male","birthday":"1989-10-28","contact":{"address":{"street":"15 Kansas Blvd","zip":"80804","city":"Arriba","state":"CO"},"email":["roosevelt.akridge@nosql-matters.org","akridge@nosql-matters.org"],"region":"719","phone":[]},"likes":["swimming"],"memberSince":"2007-12-26"} -{"name":{"first":"Vallie","last":"Yablonsky"},"gender":"female","birthday":"1940-10-25","contact":{"address":{"street":"9 Girard Ct","zip":"46508","city":"Burket","state":"IN"},"email":["vallie.yablonsky@nosql-matters.org"],"region":"219","phone":["219-9224135"]},"likes":["boxing"],"memberSince":"2008-04-08"} -{"name":{"first":"Crystle","last":"Mccallum"},"gender":"female","birthday":"1942-04-19","contact":{"address":{"street":"11 Mozart Hwy","zip":"67734","city":"Gem","state":"KS"},"email":["crystle.mccallum@nosql-matters.org"],"region":"785","phone":["785-6255979","785-3684372"]},"likes":["chatting"],"memberSince":"2010-08-13"} -{"name":{"first":"Charisse","last":"Capoccia"},"gender":"female","birthday":"1980-02-23","contact":{"address":{"street":"3 198th St","zip":"21045","city":"Columbia","state":"MD"},"email":["charisse.capoccia@nosql-matters.org"],"region":"410","phone":["410-5993378","410-8966208"]},"likes":["biking","reading","climbing"],"memberSince":"2009-11-05"} -{"name":{"first":"Roxana","last":"Benavente"},"gender":"female","birthday":"1965-01-23","contact":{"address":{"street":"17 234th Ave","zip":"64633","city":"Carrollton","state":"MO"},"email":["roxana.benavente@nosql-matters.org"],"region":"660","phone":["660-9882301"]},"likes":["checkers","climbing"],"memberSince":"2008-08-21"} -{"name":{"first":"Melynda","last":"Downey"},"gender":"female","birthday":"1971-01-05","contact":{"address":{"street":"21 Spring garden Loop","zip":"43266","city":"Columbus","state":"OH"},"email":["melynda.downey@nosql-matters.org","melynda@nosql-matters.org"],"region":"614","phone":["614-9603425","614-6700105"]},"likes":["chess"],"memberSince":"2009-11-27"} -{"name":{"first":"Kiara","last":"Kicks"},"gender":"female","birthday":"1948-02-08","contact":{"address":{"street":"4 10th Ave","zip":"07003","city":"Bloomfield","state":"NJ"},"email":["kiara.kicks@nosql-matters.org"],"region":"973","phone":[]},"likes":["driving","climbing"],"memberSince":"2007-06-09"} -{"name":{"first":"Libby","last":"Humerick"},"gender":"female","birthday":"1988-01-22","contact":{"address":{"street":"8 Vermont Hwy","zip":"54413","city":"Babcock","state":"WI"},"email":["libby.humerick@nosql-matters.org","humerick@nosql-matters.org"],"region":"715","phone":[]},"likes":["swimming"],"memberSince":"2009-10-08"} -{"name":{"first":"Layla","last":"Burkins"},"gender":"female","birthday":"1967-08-01","contact":{"address":{"street":"2 290th Ave","zip":"55071","city":"Saint Paul Park","state":"MN"},"email":["layla.burkins@nosql-matters.org"],"region":"651","phone":["651-3426951","651-8056604"]},"likes":["driving"],"memberSince":"2011-11-03"} -{"name":{"first":"Rosamond","last":"Rapley"},"gender":"female","birthday":"1958-03-04","contact":{"address":{"street":"1 Beekman Aly","zip":"13656","city":"La Fargeville","state":"NY"},"email":["rosamond.rapley@nosql-matters.org","rapley@nosql-matters.org","rosamond@nosql-matters.org"],"region":"315","phone":["315-7831955","315-5479916"]},"likes":["shopping"],"memberSince":"2009-11-01"} -{"name":{"first":"Louie","last":"Meineke"},"gender":"male","birthday":"1957-06-07","contact":{"address":{"street":"20 Champlain Ln","zip":"37721","city":"Corryton","state":"TN"},"email":["louie.meineke@nosql-matters.org","meineke@nosql-matters.org"],"region":"865","phone":[]},"likes":["snowboarding"],"memberSince":"2010-08-14"} -{"name":{"first":"Myles","last":"Bottari"},"gender":"male","birthday":"1994-06-04","contact":{"address":{"street":"14 Atchison Dr","zip":"43716","city":"Beallsville","state":"OH"},"email":["myles.bottari@nosql-matters.org","bottari@nosql-matters.org"],"region":"740","phone":["740-6860792"]},"likes":["driving"],"memberSince":"2009-01-28"} -{"name":{"first":"Nerissa","last":"Hirayama"},"gender":"female","birthday":"1991-11-05","contact":{"address":{"street":"21 New hampshire Dr","zip":"31564","city":"Waresboro","state":"GA"},"email":["nerissa.hirayama@nosql-matters.org","nerissa@nosql-matters.org"],"region":"912","phone":["912-4022412","912-4018836"]},"likes":["snowboarding"],"memberSince":"2009-07-10"} -{"name":{"first":"Sammie","last":"Duquette"},"gender":"male","birthday":"1955-11-07","contact":{"address":{"street":"18 Harper Dr","zip":"60197","city":"Carol Stream","state":"IL"},"email":["sammie.duquette@nosql-matters.org","sammie@nosql-matters.org"],"region":"630","phone":["630-3449775","630-9105374"]},"likes":["swimming","climbing"],"memberSince":"2011-06-07"} -{"name":{"first":"Eunice","last":"Baskow"},"gender":"female","birthday":"1993-07-17","contact":{"address":{"street":"8 21st St","zip":"23924","city":"Chase City","state":"VA"},"email":["eunice.baskow@nosql-matters.org"],"region":"804","phone":["804-3027537"]},"likes":["shopping"],"memberSince":"2008-08-05"} -{"name":{"first":"Winston","last":"Chronis"},"gender":"male","birthday":"1971-06-03","contact":{"address":{"street":"10 Center Hwy","zip":"40751","city":"Marydell","state":"KY"},"email":["winston.chronis@nosql-matters.org","winston@nosql-matters.org"],"region":"606","phone":["606-3570880"]},"likes":["ironing"],"memberSince":"2012-01-16"} -{"name":{"first":"Tommy","last":"Lazarski"},"gender":"male","birthday":"1962-08-20","contact":{"address":{"street":"4 Harvard Ave","zip":"57074","city":"Ward","state":"SD"},"email":["tommy.lazarski@nosql-matters.org","lazarski@nosql-matters.org"],"region":"605","phone":[]},"likes":[],"memberSince":"2008-08-13"} -{"name":{"first":"Queen","last":"Herdon"},"gender":"female","birthday":"1965-09-20","contact":{"address":{"street":"15 20th St","zip":"19366","city":"Pocopson","state":"PA"},"email":["queen.herdon@nosql-matters.org","queen@nosql-matters.org"],"region":"610","phone":["610-4873851"]},"likes":["skiing"],"memberSince":"2011-07-14"} -{"name":{"first":"Claudine","last":"Gress"},"gender":"female","birthday":"1973-11-13","contact":{"address":{"street":"3 Mound Blvd","zip":"76540","city":"Killeen","state":"TX"},"email":["claudine.gress@nosql-matters.org","gress@nosql-matters.org","claudine@nosql-matters.org"],"region":"254","phone":[]},"likes":["skiing"],"memberSince":"2011-09-17"} -{"name":{"first":"Sebastian","last":"Atterbury"},"gender":"male","birthday":"1940-02-25","contact":{"address":{"street":"7 Crowell St","zip":"96929","city":"Yigo","state":"GU"},"email":["sebastian.atterbury@nosql-matters.org"],"region":"671","phone":["671-1909625","671-0582953"]},"likes":[],"memberSince":"2012-04-17"} -{"name":{"first":"Vern","last":"Vargo"},"gender":"male","birthday":"1981-03-26","contact":{"address":{"street":"10 115th Ave","zip":"66058","city":"Muscotah","state":"KS"},"email":["vern.vargo@nosql-matters.org","vargo@nosql-matters.org","vern@nosql-matters.org"],"region":"785","phone":[]},"likes":[],"memberSince":"2008-01-22"} -{"name":{"first":"Priscila","last":"Besso"},"gender":"female","birthday":"1985-10-28","contact":{"address":{"street":"19 Wallach Ct","zip":"36043","city":"Hope Hull","state":"AL"},"email":["priscila.besso@nosql-matters.org","besso@nosql-matters.org"],"region":"334","phone":[]},"likes":[],"memberSince":"2012-04-29"} -{"name":{"first":"Ahmad","last":"Hueso"},"gender":"male","birthday":"1974-04-03","contact":{"address":{"street":"8 Atchison Way","zip":"99133","city":"Grand Coulee","state":"WA"},"email":["ahmad.hueso@nosql-matters.org"],"region":"509","phone":[]},"likes":["biking","swimming","snowboarding"],"memberSince":"2010-02-16"} -{"name":{"first":"Fermin","last":"Petch"},"gender":"male","birthday":"1948-05-05","contact":{"address":{"street":"19 Center Run","zip":"71281","city":"Swartz","state":"LA"},"email":["fermin.petch@nosql-matters.org","petch@nosql-matters.org","fermin@nosql-matters.org"],"region":"318","phone":[]},"likes":["biking","skiing"],"memberSince":"2011-09-21"} -{"name":{"first":"Jesse","last":"Goldblatt"},"gender":"male","birthday":"1952-01-14","contact":{"address":{"street":"3 Corcoran Rd","zip":"57249","city":"Lake Preston","state":"SD"},"email":["jesse.goldblatt@nosql-matters.org","jesse@nosql-matters.org"],"region":"605","phone":["605-1040914"]},"likes":["travelling"],"memberSince":"2007-08-13"} -{"name":{"first":"Kristine","last":"Caya"},"gender":"female","birthday":"1958-02-27","contact":{"address":{"street":"21 Spring Hwy","zip":"78409","city":"Corpus Christi","state":"TX"},"email":["kristine.caya@nosql-matters.org","caya@nosql-matters.org"],"region":"361","phone":[]},"likes":["reading","driving"],"memberSince":"2010-12-13"} -{"name":{"first":"Amos","last":"Brueckman"},"gender":"male","birthday":"1976-10-04","contact":{"address":{"street":"5 Price Hwy","zip":"25989","city":"White Oak","state":"WV"},"email":["amos.brueckman@nosql-matters.org"],"region":"304","phone":["304-2484118"]},"likes":["reading"],"memberSince":"2011-01-22"} -{"name":{"first":"Debbi","last":"Richiusa"},"gender":"female","birthday":"1991-10-22","contact":{"address":{"street":"4 Spring Rd","zip":"77489","city":"Missouri City","state":"TX"},"email":["debbi.richiusa@nosql-matters.org"],"region":"281","phone":[]},"likes":["swimming","checkers","snowboarding","travelling"],"memberSince":"2007-06-22"} -{"name":{"first":"Mirtha","last":"Hakim"},"gender":"female","birthday":"1959-10-29","contact":{"address":{"street":"21 2nd St","zip":"52346","city":"Van Horne","state":"IA"},"email":["mirtha.hakim@nosql-matters.org"],"region":"319","phone":["319-9254372"]},"likes":[],"memberSince":"2010-06-07"} -{"name":{"first":"Jolyn","last":"Bracy"},"gender":"female","birthday":"1986-06-22","contact":{"address":{"street":"7 Vernon Run","zip":"12791","city":"Youngsville","state":"NY"},"email":["jolyn.bracy@nosql-matters.org"],"region":"914","phone":["914-0595370"]},"likes":["reading","travelling","ironing"],"memberSince":"2010-12-27"} -{"name":{"first":"Roland","last":"Gedman"},"gender":"male","birthday":"1988-11-08","contact":{"address":{"street":"19 Clydesdale Cir","zip":"12937","city":"Fort Covington","state":"NY"},"email":["roland.gedman@nosql-matters.org","roland@nosql-matters.org"],"region":"518","phone":["518-7389518"]},"likes":["biking"],"memberSince":"2007-08-10"} -{"name":{"first":"Karey","last":"Rippey"},"gender":"female","birthday":"1974-12-31","contact":{"address":{"street":"8 Summit Ct","zip":"49117","city":"New Buffalo","state":"MI"},"email":["karey.rippey@nosql-matters.org","rippey@nosql-matters.org"],"region":"616","phone":[]},"likes":["checkers","snowboarding","skiing","climbing"],"memberSince":"2008-07-30"} -{"name":{"first":"Sherri","last":"Weirich"},"gender":"female","birthday":"1975-03-16","contact":{"address":{"street":"16 13th St","zip":"58329","city":"Dunseith","state":"ND"},"email":["sherri.weirich@nosql-matters.org"],"region":"701","phone":["701-2498736","701-7048412"]},"likes":["running","checkers"],"memberSince":"2010-08-27"} -{"name":{"first":"Eldora","last":"Lundburg"},"gender":"female","birthday":"1947-10-23","contact":{"address":{"street":"2 Corcoran Cir","zip":"14823","city":"Canisteo","state":"NY"},"email":["eldora.lundburg@nosql-matters.org","eldora@nosql-matters.org"],"region":"607","phone":["607-8982589","607-9994467"]},"likes":[],"memberSince":"2009-04-28"} -{"name":{"first":"Kemberly","last":"Wahlgren"},"gender":"female","birthday":"1948-08-27","contact":{"address":{"street":"5 Walnut Cir","zip":"12458","city":"Napanoch","state":"NY"},"email":["kemberly.wahlgren@nosql-matters.org","wahlgren@nosql-matters.org"],"region":"914","phone":["914-0088310","914-2686156"]},"likes":["running","driving"],"memberSince":"2009-12-02"} -{"name":{"first":"Scarlett","last":"Ancalade"},"gender":"female","birthday":"1962-10-21","contact":{"address":{"street":"21 21st St","zip":"56627","city":"Big Falls","state":"MN"},"email":["scarlett.ancalade@nosql-matters.org","ancalade@nosql-matters.org"],"region":"218","phone":["218-0983955"]},"likes":["swimming"],"memberSince":"2008-03-16"} -{"name":{"first":"Eddy","last":"Clamp"},"gender":"male","birthday":"1991-11-29","contact":{"address":{"street":"16 Mound Hwy","zip":"29439","city":"Folly Beach","state":"SC"},"email":["eddy.clamp@nosql-matters.org","clamp@nosql-matters.org","eddy@nosql-matters.org"],"region":"843","phone":["843-1400229"]},"likes":["shopping","swimming","driving","climbing","ironing"],"memberSince":"2010-06-21"} -{"name":{"first":"Demetrius","last":"Oftedahl"},"gender":"female","birthday":"1983-07-25","contact":{"address":{"street":"14 Ontario Dr","zip":"50630","city":"Fredericksburg","state":"IA"},"email":["demetrius.oftedahl@nosql-matters.org","oftedahl@nosql-matters.org","demetrius@nosql-matters.org"],"region":"319","phone":[]},"likes":["boxing","travelling"],"memberSince":"2009-06-05"} -{"name":{"first":"Felecia","last":"Deely"},"gender":"female","birthday":"1974-02-19","contact":{"address":{"street":"5 Branchton Rd","zip":"37308","city":"Birchwood","state":"TN"},"email":["felecia.deely@nosql-matters.org","deely@nosql-matters.org","felecia@nosql-matters.org"],"region":"423","phone":["423-8777212","423-2488035"]},"likes":["running","biking","chatting","skiing","ironing"],"memberSince":"2008-09-01"} -{"name":{"first":"Gladis","last":"Crofton"},"gender":"female","birthday":"1951-07-23","contact":{"address":{"street":"15 Kearney Dr","zip":"30180","city":"Villa Rica","state":"GA"},"email":["gladis.crofton@nosql-matters.org","crofton@nosql-matters.org"],"region":"770","phone":["770-8084762"]},"likes":["swimming","chess","snowboarding"],"memberSince":"2011-07-13"} -{"name":{"first":"Tiera","last":"Hudok"},"gender":"female","birthday":"1981-01-06","contact":{"address":{"street":"2 Columbia Hwy","zip":"77258","city":"Houston","state":"TX"},"email":["tiera.hudok@nosql-matters.org","hudok@nosql-matters.org"],"region":"713","phone":["713-9624055"]},"likes":[],"memberSince":"2008-05-05"} -{"name":{"first":"Pedro","last":"Noori"},"gender":"male","birthday":"1982-12-01","contact":{"address":{"street":"10 Price Way","zip":"14174","city":"Youngstown","state":"NY"},"email":["pedro.noori@nosql-matters.org","noori@nosql-matters.org","pedro@nosql-matters.org"],"region":"716","phone":["716-4512710","716-5274879"]},"likes":["swimming","chatting","snowboarding"],"memberSince":"2010-02-05"} -{"name":{"first":"Ernesto","last":"Mcfadyen"},"gender":"male","birthday":"1971-04-13","contact":{"address":{"street":"5 7th Ave","zip":"65776","city":"South Fork","state":"MO"},"email":["ernesto.mcfadyen@nosql-matters.org","ernesto@nosql-matters.org"],"region":"417","phone":["417-4609777"]},"likes":["travelling"],"memberSince":"2007-12-19"} -{"name":{"first":"Galen","last":"Gallian"},"gender":"male","birthday":"1990-01-13","contact":{"address":{"street":"7 New york Pl","zip":"92114","city":"San Diego","state":"CA"},"email":["galen.gallian@nosql-matters.org"],"region":"858","phone":["858-1789491","858-3979494"]},"likes":["reading"],"memberSince":"2011-06-26"} -{"name":{"first":"Dominick","last":"Ascencio"},"gender":"male","birthday":"1971-07-13","contact":{"address":{"street":"8 19th Ave","zip":"28581","city":"Stacy","state":"NC"},"email":["dominick.ascencio@nosql-matters.org","ascencio@nosql-matters.org","dominick@nosql-matters.org"],"region":"252","phone":["252-1782352"]},"likes":["swimming","driving"],"memberSince":"2010-08-20"} -{"name":{"first":"Luanne","last":"Corbeil"},"gender":"female","birthday":"1950-10-21","contact":{"address":{"street":"10 Woodlawn Aly","zip":"98392","city":"Suquamish","state":"WA"},"email":["luanne.corbeil@nosql-matters.org"],"region":"360","phone":["360-4251551"]},"likes":[],"memberSince":"2007-12-26"} -{"name":{"first":"Pricilla","last":"Delaune"},"gender":"female","birthday":"1967-04-28","contact":{"address":{"street":"22 Commercial St","zip":"96814","city":"Honolulu","state":"HI"},"email":["pricilla.delaune@nosql-matters.org","delaune@nosql-matters.org"],"region":"808","phone":[]},"likes":[],"memberSince":"2010-04-05"} -{"name":{"first":"Keneth","last":"Cambell"},"gender":"male","birthday":"1962-07-18","contact":{"address":{"street":"19 Walnut Ln","zip":"17358","city":"Rossville","state":"PA"},"email":["keneth.cambell@nosql-matters.org"],"region":"717","phone":["717-3176124","717-2629693"]},"likes":["climbing"],"memberSince":"2009-03-10"} -{"name":{"first":"Nicky","last":"Olvera"},"gender":"male","birthday":"1963-01-07","contact":{"address":{"street":"6 266th St","zip":"74760","city":"Spencerville","state":"OK"},"email":["nicky.olvera@nosql-matters.org"],"region":"580","phone":["580-1755727"]},"likes":["biking"],"memberSince":"2010-11-12"} -{"name":{"first":"Eloy","last":"Tribbett"},"gender":"male","birthday":"1977-01-07","contact":{"address":{"street":"3 13th Ave","zip":"12862","city":"Riparius","state":"NY"},"email":["eloy.tribbett@nosql-matters.org"],"region":"518","phone":["518-2013123","518-3649695"]},"likes":["driving"],"memberSince":"2010-12-10"} -{"name":{"first":"Alejandro","last":"Lingefelt"},"gender":"male","birthday":"1962-02-09","contact":{"address":{"street":"14 Beekman St","zip":"54751","city":"Menomonie","state":"WI"},"email":["alejandro.lingefelt@nosql-matters.org","lingefelt@nosql-matters.org"],"region":"715","phone":[]},"likes":["shopping","boxing"],"memberSince":"2009-10-26"} -{"name":{"first":"Ivory","last":"Fellenz"},"gender":"female","birthday":"1970-01-13","contact":{"address":{"street":"11 University Blvd","zip":"50861","city":"Shannon City","state":"IA"},"email":["ivory.fellenz@nosql-matters.org"],"region":"515","phone":[]},"likes":["shopping"],"memberSince":"2010-01-29"} -{"name":{"first":"Bob","last":"Perniciaro"},"gender":"male","birthday":"1984-08-17","contact":{"address":{"street":"17 Crowell Rd","zip":"21623","city":"Church Hill","state":"MD"},"email":["bob.perniciaro@nosql-matters.org"],"region":"410","phone":["410-1589214"]},"likes":["chatting","chess"],"memberSince":"2007-09-03"} -{"name":{"first":"Jasper","last":"Susana"},"gender":"male","birthday":"1985-05-03","contact":{"address":{"street":"16 334th Ave","zip":"55182","city":"Saint Paul","state":"MN"},"email":["jasper.susana@nosql-matters.org","jasper@nosql-matters.org"],"region":"651","phone":["651-2987060","651-4573487"]},"likes":["running","chess","climbing"],"memberSince":"2011-10-16"} -{"name":{"first":"Doloris","last":"Lessin"},"gender":"female","birthday":"1944-04-05","contact":{"address":{"street":"6 Kansas Cir","zip":"72539","city":"Glencoe","state":"AR"},"email":["doloris.lessin@nosql-matters.org"],"region":"870","phone":["870-0605242"]},"likes":["chatting","skiing"],"memberSince":"2008-09-18"} -{"name":{"first":"Tyson","last":"Maupin"},"gender":"male","birthday":"1967-07-27","contact":{"address":{"street":"12 Fraser Run","zip":"21217","city":"Baltimore","state":"MD"},"email":["tyson.maupin@nosql-matters.org"],"region":"410","phone":["410-7500236"]},"likes":["shopping"],"memberSince":"2010-05-29"} -{"name":{"first":"Chase","last":"Godwyn"},"gender":"male","birthday":"1981-05-17","contact":{"address":{"street":"3 19th St","zip":"62892","city":"Vernon","state":"IL"},"email":["chase.godwyn@nosql-matters.org"],"region":"618","phone":[]},"likes":[],"memberSince":"2012-04-28"} -{"name":{"first":"Coreen","last":"Breitkreutz"},"gender":"female","birthday":"1974-12-12","contact":{"address":{"street":"19 Wyoming Cir","zip":"62478","city":"West York","state":"IL"},"email":["coreen.breitkreutz@nosql-matters.org","breitkreutz@nosql-matters.org"],"region":"618","phone":[]},"likes":[],"memberSince":"2010-04-20"} -{"name":{"first":"Jerry","last":"Duguay"},"gender":"female","birthday":"1941-01-09","contact":{"address":{"street":"3 Crowell Run","zip":"56523","city":"Climax","state":"MN"},"email":["jerry.duguay@nosql-matters.org","jerry@nosql-matters.org"],"region":"218","phone":["218-8749941"]},"likes":["chess","skiing"],"memberSince":"2011-05-06"} -{"name":{"first":"Frank","last":"Roblin"},"gender":"male","birthday":"1975-04-21","contact":{"address":{"street":"1 Deer Blvd","zip":"41859","city":"Dema","state":"KY"},"email":["frank.roblin@nosql-matters.org"],"region":"606","phone":[]},"likes":["biking","reading","driving"],"memberSince":"2009-01-17"} -{"name":{"first":"Parker","last":"Urata"},"gender":"male","birthday":"1966-11-20","contact":{"address":{"street":"9 Girard Rd","zip":"61039","city":"German Valley","state":"IL"},"email":["parker.urata@nosql-matters.org","parker@nosql-matters.org"],"region":"815","phone":["815-5979937","815-0575874"]},"likes":["boxing","travelling"],"memberSince":"2010-07-24"} -{"name":{"first":"Rodolfo","last":"Mcbroome"},"gender":"male","birthday":"1973-12-18","contact":{"address":{"street":"3 Park Aly","zip":"25529","city":"Julian","state":"WV"},"email":["rodolfo.mcbroome@nosql-matters.org"],"region":"304","phone":[]},"likes":["chess","boxing"],"memberSince":"2009-07-19"} -{"name":{"first":"Quentin","last":"Martorano"},"gender":"male","birthday":"1965-11-08","contact":{"address":{"street":"3 5th St","zip":"07939","city":"Lyons","state":"NJ"},"email":["quentin.martorano@nosql-matters.org","martorano@nosql-matters.org"],"region":"908","phone":["908-3109427"]},"likes":[],"memberSince":"2011-03-31"} -{"name":{"first":"Wan","last":"Birchett"},"gender":"female","birthday":"1940-05-29","contact":{"address":{"street":"9 Atchison Blvd","zip":"02157","city":"Babson Park","state":"MA"},"email":["wan.birchett@nosql-matters.org","birchett@nosql-matters.org","wan@nosql-matters.org"],"region":"781","phone":[]},"likes":["driving","skiing"],"memberSince":"2011-05-11"} -{"name":{"first":"Antone","last":"Carino"},"gender":"male","birthday":"1944-04-01","contact":{"address":{"street":"20 Fraser Ln","zip":"98288","city":"Skykomish","state":"WA"},"email":["antone.carino@nosql-matters.org","carino@nosql-matters.org"],"region":"360","phone":["360-8542206"]},"likes":["swimming","chatting","reading"],"memberSince":"2010-01-20"} -{"name":{"first":"Gidget","last":"Vore"},"gender":"female","birthday":"1973-03-13","contact":{"address":{"street":"7 Branchton Rd","zip":"32405","city":"Panama City","state":"FL"},"email":["gidget.vore@nosql-matters.org","gidget@nosql-matters.org"],"region":"850","phone":["850-1725329"]},"likes":["biking"],"memberSince":"2010-11-04"} -{"name":{"first":"Jacques","last":"Cochrane"},"gender":"male","birthday":"1963-12-13","contact":{"address":{"street":"4 18th St","zip":"91903","city":"Alpine","state":"CA"},"email":["jacques.cochrane@nosql-matters.org"],"region":"619","phone":["619-6202397","619-7890733"]},"likes":["chess","driving"],"memberSince":"2009-06-10"} -{"name":{"first":"Jamika","last":"Bronk"},"gender":"female","birthday":"1977-09-28","contact":{"address":{"street":"11 Euclid Ave","zip":"67039","city":"Douglass","state":"KS"},"email":["jamika.bronk@nosql-matters.org","bronk@nosql-matters.org"],"region":"316","phone":["316-2155419"]},"likes":["running"],"memberSince":"2008-01-08"} -{"name":{"first":"Lorilee","last":"Plenty"},"gender":"female","birthday":"1983-01-07","contact":{"address":{"street":"16 6th Ave","zip":"01570","city":"Webster","state":"MA"},"email":["lorilee.plenty@nosql-matters.org","plenty@nosql-matters.org"],"region":"508","phone":["508-8279593","508-1203617"]},"likes":["boxing"],"memberSince":"2008-03-09"} -{"name":{"first":"Katelyn","last":"Tsuboi"},"gender":"female","birthday":"1949-11-03","contact":{"address":{"street":"17 Beekman Run","zip":"77856","city":"Franklin","state":"TX"},"email":["katelyn.tsuboi@nosql-matters.org"],"region":"409","phone":[]},"likes":[],"memberSince":"2008-04-22"} -{"name":{"first":"Emogene","last":"Macadamia"},"gender":"female","birthday":"1963-08-20","contact":{"address":{"street":"1 Ottawa Ct","zip":"37241","city":"Nashville","state":"TN"},"email":["emogene.macadamia@nosql-matters.org"],"region":"615","phone":[]},"likes":[],"memberSince":"2011-07-09"} -{"name":{"first":"Jefferey","last":"Poette"},"gender":"male","birthday":"1940-08-13","contact":{"address":{"street":"5 Pennsylvania Ln","zip":"77249","city":"Houston","state":"TX"},"email":["jefferey.poette@nosql-matters.org"],"region":"713","phone":["713-1841669"]},"likes":[],"memberSince":"2010-11-21"} -{"name":{"first":"Floria","last":"Stankiewicz"},"gender":"female","birthday":"1964-10-13","contact":{"address":{"street":"15 Fairmont Dr","zip":"75025","city":"Plano","state":"TX"},"email":["floria.stankiewicz@nosql-matters.org","stankiewicz@nosql-matters.org","floria@nosql-matters.org"],"region":"972","phone":["972-6319858"]},"likes":["driving"],"memberSince":"2007-11-22"} -{"name":{"first":"Les","last":"Blundell"},"gender":"male","birthday":"1956-03-03","contact":{"address":{"street":"3 Neumann Way","zip":"24045","city":"Roanoke","state":"VA"},"email":["les.blundell@nosql-matters.org","blundell@nosql-matters.org"],"region":"540","phone":["540-9671931","540-2644921"]},"likes":["biking","driving","skiing"],"memberSince":"2007-12-03"} -{"name":{"first":"Kelley","last":"Koshar"},"gender":"male","birthday":"1981-04-06","contact":{"address":{"street":"21 234th St","zip":"37391","city":"Turtletown","state":"TN"},"email":["kelley.koshar@nosql-matters.org","kelley@nosql-matters.org"],"region":"423","phone":["423-4253803","423-7952786"]},"likes":["chess"],"memberSince":"2012-02-06"} -{"name":{"first":"Alda","last":"Pope"},"gender":"female","birthday":"1954-06-23","contact":{"address":{"street":"10 21st Ave","zip":"94203","city":"Sacramento","state":"CA"},"email":["alda.pope@nosql-matters.org","alda@nosql-matters.org"],"region":"916","phone":[]},"likes":["running","chatting"],"memberSince":"2012-02-25"} -{"name":{"first":"Kassandra","last":"Claybourne"},"gender":"female","birthday":"1973-09-28","contact":{"address":{"street":"15 Branchton Aly","zip":"18049","city":"Emmaus","state":"PA"},"email":["kassandra.claybourne@nosql-matters.org"],"region":"610","phone":["610-2921002","610-6536463"]},"likes":[],"memberSince":"2007-11-30"} -{"name":{"first":"Ileana","last":"Riedl"},"gender":"female","birthday":"1983-01-30","contact":{"address":{"street":"21 Half mound Blvd","zip":"20451","city":"Washington","state":"DC"},"email":["ileana.riedl@nosql-matters.org","riedl@nosql-matters.org","ileana@nosql-matters.org"],"region":"202","phone":[]},"likes":["boxing","checkers"],"memberSince":"2010-02-03"} -{"name":{"first":"Herschel","last":"Ogzewalla"},"gender":"male","birthday":"1974-02-05","contact":{"address":{"street":"16 Rawlins Pl","zip":"55124","city":"Saint Paul","state":"MN"},"email":["herschel.ogzewalla@nosql-matters.org"],"region":"612","phone":["612-3851165","612-0041828"]},"likes":["reading"],"memberSince":"2009-04-28"} -{"name":{"first":"Nichelle","last":"Korslund"},"gender":"female","birthday":"1981-04-20","contact":{"address":{"street":"4 Summit Ct","zip":"35462","city":"Eutaw","state":"AL"},"email":["nichelle.korslund@nosql-matters.org","nichelle@nosql-matters.org"],"region":"205","phone":["205-7571587"]},"likes":[],"memberSince":"2010-12-19"} -{"name":{"first":"Brent","last":"Tunget"},"gender":"male","birthday":"1945-11-27","contact":{"address":{"street":"7 Country club Blvd","zip":"59464","city":"Moore","state":"MT"},"email":["brent.tunget@nosql-matters.org","brent@nosql-matters.org"],"region":"406","phone":["406-7417445","406-8599540"]},"likes":["ironing"],"memberSince":"2011-01-25"} -{"name":{"first":"Boris","last":"Carrahan"},"gender":"male","birthday":"1945-04-27","contact":{"address":{"street":"19 10th St","zip":"83857","city":"Princeton","state":"ID"},"email":["boris.carrahan@nosql-matters.org"],"region":"208","phone":["208-1953115"]},"likes":["driving"],"memberSince":"2012-02-29"} -{"name":{"first":"Taren","last":"Kerrick"},"gender":"female","birthday":"1989-11-07","contact":{"address":{"street":"9 8th Ave","zip":"59314","city":"Biddle","state":"MT"},"email":["taren.kerrick@nosql-matters.org","kerrick@nosql-matters.org"],"region":"406","phone":["406-2233765","406-1869260"]},"likes":["chatting","chess","skiing"],"memberSince":"2011-02-24"} -{"name":{"first":"Tomas","last":"Ridpath"},"gender":"male","birthday":"1975-04-12","contact":{"address":{"street":"15 Laramie Aly","zip":"39117","city":"Morton","state":"MS"},"email":["tomas.ridpath@nosql-matters.org","tomas@nosql-matters.org"],"region":"601","phone":["601-2601938","601-8082016"]},"likes":["biking","chess"],"memberSince":"2010-03-05"} -{"name":{"first":"Roxana","last":"Brierre"},"gender":"female","birthday":"1956-02-01","contact":{"address":{"street":"19 Neumann St","zip":"49349","city":"White Cloud","state":"MI"},"email":["roxana.brierre@nosql-matters.org"],"region":"231","phone":["231-9581625","231-9379806"]},"likes":[],"memberSince":"2010-12-22"} -{"name":{"first":"Courtney","last":"Kimber"},"gender":"male","birthday":"1953-09-19","contact":{"address":{"street":"12 Roberts Loop","zip":"39566","city":"Ocean Springs","state":"MS"},"email":["courtney.kimber@nosql-matters.org","kimber@nosql-matters.org"],"region":"228","phone":["228-9139681"]},"likes":["shopping","chess"],"memberSince":"2008-04-25"} -{"name":{"first":"Isabel","last":"Navone"},"gender":"female","birthday":"1954-07-04","contact":{"address":{"street":"7 290th St","zip":"41544","city":"Mc Carr","state":"KY"},"email":["isabel.navone@nosql-matters.org"],"region":"606","phone":["606-4530984","606-5424479"]},"likes":["snowboarding"],"memberSince":"2008-04-04"} -{"name":{"first":"Rea","last":"Frear"},"gender":"female","birthday":"1944-04-28","contact":{"address":{"street":"7 Ottawa Way","zip":"90049","city":"Los Angeles","state":"CA"},"email":["rea.frear@nosql-matters.org"],"region":"310","phone":["310-2440201","310-2745107"]},"likes":["chess","skiing"],"memberSince":"2011-07-04"} -{"name":{"first":"Ray","last":"Kolm"},"gender":"male","birthday":"1953-04-22","contact":{"address":{"street":"4 257th Ave","zip":"93285","city":"Wofford Heights","state":"CA"},"email":["ray.kolm@nosql-matters.org","kolm@nosql-matters.org"],"region":"760","phone":["760-2787625","760-3051688"]},"likes":["chatting"],"memberSince":"2008-07-10"} -{"name":{"first":"Jade","last":"Poitier"},"gender":"female","birthday":"1983-01-20","contact":{"address":{"street":"22 Champlain Hwy","zip":"49675","city":"Onekama","state":"MI"},"email":["jade.poitier@nosql-matters.org"],"region":"231","phone":["231-7789787"]},"likes":[],"memberSince":"2008-10-08"} -{"name":{"first":"Randall","last":"Crocetti"},"gender":"male","birthday":"1987-12-23","contact":{"address":{"street":"2 Palmer Ct","zip":"34293","city":"Venice","state":"FL"},"email":["randall.crocetti@nosql-matters.org"],"region":"941","phone":["941-3598291"]},"likes":["chess","ironing"],"memberSince":"2008-10-18"} -{"name":{"first":"Tuan","last":"Candanoza"},"gender":"male","birthday":"1947-07-18","contact":{"address":{"street":"6 Woodlawn Ln","zip":"95226","city":"Campo Seco","state":"CA"},"email":["tuan.candanoza@nosql-matters.org"],"region":"209","phone":["209-2259428"]},"likes":["biking","boxing","skiing"],"memberSince":"2008-12-25"} -{"name":{"first":"Enedina","last":"Dagnese"},"gender":"female","birthday":"1978-03-12","contact":{"address":{"street":"13 Riverview Rd","zip":"20735","city":"Clinton","state":"MD"},"email":["enedina.dagnese@nosql-matters.org","enedina@nosql-matters.org"],"region":"301","phone":["301-8690446","301-8047799"]},"likes":["ironing"],"memberSince":"2010-08-20"} -{"name":{"first":"Sherron","last":"Tupper"},"gender":"female","birthday":"1964-02-28","contact":{"address":{"street":"12 290th St","zip":"68437","city":"Shubert","state":"NE"},"email":["sherron.tupper@nosql-matters.org","tupper@nosql-matters.org"],"region":"402","phone":[]},"likes":[],"memberSince":"2011-08-29"} -{"name":{"first":"Dagny","last":"Webley"},"gender":"female","birthday":"1978-08-10","contact":{"address":{"street":"20 15th St","zip":"37876","city":"Sevierville","state":"TN"},"email":["dagny.webley@nosql-matters.org"],"region":"865","phone":["865-6192594"]},"likes":["biking","checkers"],"memberSince":"2008-08-09"} -{"name":{"first":"Concha","last":"Orsi"},"gender":"female","birthday":"1957-08-23","contact":{"address":{"street":"21 Branchton Aly","zip":"21027","city":"Chase","state":"MD"},"email":["concha.orsi@nosql-matters.org","concha@nosql-matters.org"],"region":"410","phone":["410-5885801"]},"likes":["driving"],"memberSince":"2009-03-12"} -{"name":{"first":"Rusty","last":"Lenhoff"},"gender":"male","birthday":"1986-12-22","contact":{"address":{"street":"16 Belmont Aly","zip":"19141","city":"Philadelphia","state":"PA"},"email":["rusty.lenhoff@nosql-matters.org"],"region":"215","phone":["215-8662006","215-3372587"]},"likes":["skiing"],"memberSince":"2008-04-25"} -{"name":{"first":"Denny","last":"Delgadilo"},"gender":"male","birthday":"1991-02-01","contact":{"address":{"street":"18 17th St","zip":"85001","city":"Phoenix","state":"AZ"},"email":["denny.delgadilo@nosql-matters.org","denny@nosql-matters.org"],"region":"602","phone":["602-7867214","602-3640310"]},"likes":["biking","boxing"],"memberSince":"2011-01-25"} -{"name":{"first":"Rayford","last":"Shemper"},"gender":"male","birthday":"1953-03-22","contact":{"address":{"street":"22 Wyoming Aly","zip":"43725","city":"Cambridge","state":"OH"},"email":["rayford.shemper@nosql-matters.org"],"region":"740","phone":["740-8878459","740-7013683"]},"likes":["boxing"],"memberSince":"2011-02-08"} -{"name":{"first":"Forest","last":"Meccia"},"gender":"male","birthday":"1978-06-19","contact":{"address":{"street":"15 Pacific Hwy","zip":"89315","city":"Ely","state":"NV"},"email":["forest.meccia@nosql-matters.org"],"region":"775","phone":["775-9520107"]},"likes":["running","chess","snowboarding","travelling","ironing"],"memberSince":"2008-10-17"} -{"name":{"first":"Avis","last":"Heinis"},"gender":"female","birthday":"1964-10-13","contact":{"address":{"street":"21 Division Ln","zip":"52215","city":"Chelsea","state":"IA"},"email":["avis.heinis@nosql-matters.org"],"region":"515","phone":["515-4328466","515-8225733"]},"likes":[],"memberSince":"2010-08-17"} -{"name":{"first":"Antonio","last":"Hodor"},"gender":"male","birthday":"1983-09-02","contact":{"address":{"street":"14 Spring Pl","zip":"68961","city":"Nelson","state":"NE"},"email":["antonio.hodor@nosql-matters.org"],"region":"402","phone":["402-8748660"]},"likes":["snowboarding","climbing"],"memberSince":"2008-01-04"} -{"name":{"first":"Rafael","last":"Tramell"},"gender":"male","birthday":"1949-10-26","contact":{"address":{"street":"17 Wyoming Aly","zip":"05045","city":"Fairlee","state":"VT"},"email":["rafael.tramell@nosql-matters.org","tramell@nosql-matters.org"],"region":"802","phone":[]},"likes":[],"memberSince":"2007-06-11"} -{"name":{"first":"Jarvis","last":"Beaumonte"},"gender":"male","birthday":"1941-08-12","contact":{"address":{"street":"5 Rawlins Pl","zip":"61625","city":"Peoria","state":"IL"},"email":["jarvis.beaumonte@nosql-matters.org","beaumonte@nosql-matters.org","jarvis@nosql-matters.org"],"region":"309","phone":[]},"likes":["travelling"],"memberSince":"2007-08-11"} -{"name":{"first":"Rickey","last":"Lesso"},"gender":"male","birthday":"1980-05-09","contact":{"address":{"street":"21 Vernon Aly","zip":"95142","city":"San Jose","state":"CA"},"email":["rickey.lesso@nosql-matters.org","rickey@nosql-matters.org"],"region":"408","phone":[]},"likes":[],"memberSince":"2009-01-25"} -{"name":{"first":"Carson","last":"Lacourse"},"gender":"male","birthday":"1989-03-10","contact":{"address":{"street":"20 290th Ave","zip":"47736","city":"Evansville","state":"IN"},"email":["carson.lacourse@nosql-matters.org"],"region":"812","phone":["812-0799061"]},"likes":[],"memberSince":"2008-05-23"} -{"name":{"first":"Millicent","last":"Langwith"},"gender":"female","birthday":"1950-01-26","contact":{"address":{"street":"21 Santa fe Rd","zip":"78953","city":"Rosanky","state":"TX"},"email":["millicent.langwith@nosql-matters.org"],"region":"830","phone":["830-3786150","830-7913308"]},"likes":["checkers","reading"],"memberSince":"2008-04-08"} -{"name":{"first":"Numbers","last":"Guise"},"gender":"female","birthday":"1987-08-04","contact":{"address":{"street":"10 Clydesdale St","zip":"38841","city":"Ecru","state":"MS"},"email":["numbers.guise@nosql-matters.org"],"region":"662","phone":["662-5483125"]},"likes":["checkers"],"memberSince":"2010-07-14"} -{"name":{"first":"Blake","last":"Abdalla"},"gender":"female","birthday":"1960-04-08","contact":{"address":{"street":"6 Cliffbourne Ave","zip":"33613","city":"Tampa","state":"FL"},"email":["blake.abdalla@nosql-matters.org","blake@nosql-matters.org"],"region":"813","phone":["813-2963943"]},"likes":["chess","travelling","ironing"],"memberSince":"2011-11-12"} -{"name":{"first":"Rocky","last":"Malakowsky"},"gender":"male","birthday":"1944-09-09","contact":{"address":{"street":"11 Harvard St","zip":"88011","city":"Las Cruces","state":"NM"},"email":["rocky.malakowsky@nosql-matters.org","rocky@nosql-matters.org"],"region":"505","phone":["505-6906097"]},"likes":[],"memberSince":"2012-03-05"} -{"name":{"first":"Portia","last":"Buehl"},"gender":"female","birthday":"1955-03-23","contact":{"address":{"street":"9 Fuller Cir","zip":"16136","city":"Koppel","state":"PA"},"email":["portia.buehl@nosql-matters.org"],"region":"724","phone":["724-2798091","724-9255953"]},"likes":[],"memberSince":"2008-07-16"} -{"name":{"first":"Nick","last":"Lucky"},"gender":"male","birthday":"1987-05-18","contact":{"address":{"street":"11 10th Ave","zip":"61846","city":"Georgetown","state":"IL"},"email":["nick.lucky@nosql-matters.org","lucky@nosql-matters.org","nick@nosql-matters.org"],"region":"217","phone":["217-3156809","217-4165744"]},"likes":["running","travelling","skiing"],"memberSince":"2008-03-10"} -{"name":{"first":"Donn","last":"Castel"},"gender":"male","birthday":"1986-08-30","contact":{"address":{"street":"2 12th St","zip":"15946","city":"Portage","state":"PA"},"email":["donn.castel@nosql-matters.org","donn@nosql-matters.org"],"region":"814","phone":["814-0582579"]},"likes":["climbing"],"memberSince":"2011-06-02"} -{"name":{"first":"Cruz","last":"Rueb"},"gender":"female","birthday":"1943-08-03","contact":{"address":{"street":"15 Branchton Cir","zip":"27521","city":"Coats","state":"NC"},"email":["cruz.rueb@nosql-matters.org","rueb@nosql-matters.org","cruz@nosql-matters.org"],"region":"910","phone":["910-3204286","910-3803113"]},"likes":["biking"],"memberSince":"2011-02-14"} -{"name":{"first":"Annabelle","last":"Rainwaters"},"gender":"female","birthday":"1969-02-26","contact":{"address":{"street":"17 Corcoran Ave","zip":"77562","city":"Highlands","state":"TX"},"email":["annabelle.rainwaters@nosql-matters.org"],"region":"281","phone":["281-8074992"]},"likes":[],"memberSince":"2008-09-23"} -{"name":{"first":"Zack","last":"Attanasio"},"gender":"male","birthday":"1976-09-25","contact":{"address":{"street":"12 13th Ave","zip":"45326","city":"Fletcher","state":"OH"},"email":["zack.attanasio@nosql-matters.org","attanasio@nosql-matters.org"],"region":"937","phone":["937-8841651","937-2512925"]},"likes":[],"memberSince":"2010-08-26"} -{"name":{"first":"Jacques","last":"Keesecker"},"gender":"male","birthday":"1988-05-14","contact":{"address":{"street":"19 16th Ave","zip":"20242","city":"Washington","state":"DC"},"email":["jacques.keesecker@nosql-matters.org","keesecker@nosql-matters.org"],"region":"202","phone":["202-1768076","202-9319785"]},"likes":["chatting"],"memberSince":"2009-07-19"} -{"name":{"first":"Kari","last":"Sailor"},"gender":"female","birthday":"1941-10-31","contact":{"address":{"street":"21 Pine St","zip":"91210","city":"Glendale","state":"CA"},"email":["kari.sailor@nosql-matters.org","sailor@nosql-matters.org"],"region":"818","phone":["818-9918271"]},"likes":[],"memberSince":"2007-06-06"} -{"name":{"first":"Denis","last":"Monico"},"gender":"male","birthday":"1967-05-09","contact":{"address":{"street":"7 Atchison Loop","zip":"24010","city":"Roanoke","state":"VA"},"email":["denis.monico@nosql-matters.org","denis@nosql-matters.org"],"region":"540","phone":["540-5125770","540-2898620"]},"likes":["running","reading","driving"],"memberSince":"2010-11-08"} -{"name":{"first":"Rigoberto","last":"Forget"},"gender":"male","birthday":"1952-05-02","contact":{"address":{"street":"20 Main Hwy","zip":"31737","city":"Colquitt","state":"GA"},"email":["rigoberto.forget@nosql-matters.org","forget@nosql-matters.org"],"region":"912","phone":["912-4607518","912-2712380"]},"likes":[],"memberSince":"2011-10-14"} -{"name":{"first":"Stacia","last":"Bohlken"},"gender":"female","birthday":"1973-01-01","contact":{"address":{"street":"7 2nd St","zip":"76059","city":"Keene","state":"TX"},"email":["stacia.bohlken@nosql-matters.org","stacia@nosql-matters.org"],"region":"817","phone":["817-6638565"]},"likes":["reading"],"memberSince":"2011-10-09"} -{"name":{"first":"Laraine","last":"Erger"},"gender":"female","birthday":"1976-07-12","contact":{"address":{"street":"2 Fuller Ln","zip":"60143","city":"Itasca","state":"IL"},"email":["laraine.erger@nosql-matters.org","laraine@nosql-matters.org"],"region":"630","phone":["630-2479963","630-5315057"]},"likes":["checkers","ironing"],"memberSince":"2011-07-27"} -{"name":{"first":"Wilfredo","last":"Woudenberg"},"gender":"male","birthday":"1989-04-08","contact":{"address":{"street":"1 Mintwood St","zip":"03052","city":"Litchfield","state":"NH"},"email":["wilfredo.woudenberg@nosql-matters.org","woudenberg@nosql-matters.org"],"region":"603","phone":["603-0136862"]},"likes":["boxing","checkers"],"memberSince":"2009-03-19"} -{"name":{"first":"Curtis","last":"Muzii"},"gender":"male","birthday":"1983-03-11","contact":{"address":{"street":"9 Trego Way","zip":"43442","city":"Lindsey","state":"OH"},"email":["curtis.muzii@nosql-matters.org"],"region":"419","phone":["419-9582079"]},"likes":["running","checkers"],"memberSince":"2012-05-14"} -{"name":{"first":"Grant","last":"Chiu"},"gender":"male","birthday":"1977-01-26","contact":{"address":{"street":"2 Woodson Aly","zip":"37828","city":"Norris","state":"TN"},"email":["grant.chiu@nosql-matters.org","chiu@nosql-matters.org"],"region":"865","phone":["865-2515563"]},"likes":["biking"],"memberSince":"2009-09-15"} -{"name":{"first":"Hung","last":"Helberg"},"gender":"male","birthday":"1947-03-16","contact":{"address":{"street":"19 5th St","zip":"70395","city":"Schriever","state":"LA"},"email":["hung.helberg@nosql-matters.org","hung@nosql-matters.org"],"region":"504","phone":["504-3997212","504-9674662"]},"likes":[],"memberSince":"2011-08-07"} -{"name":{"first":"Clyde","last":"Layssard"},"gender":"male","birthday":"1970-07-28","contact":{"address":{"street":"12 Adams mill Run","zip":"04413","city":"Brookton","state":"ME"},"email":["clyde.layssard@nosql-matters.org","clyde@nosql-matters.org"],"region":"207","phone":["207-4107045"]},"likes":["shopping","climbing"],"memberSince":"2011-05-27"} -{"name":{"first":"Adrianne","last":"Hadson"},"gender":"female","birthday":"1985-10-02","contact":{"address":{"street":"11 Clydesdale Ct","zip":"37175","city":"Stewart","state":"TN"},"email":["adrianne.hadson@nosql-matters.org","hadson@nosql-matters.org"],"region":"931","phone":["931-9527128"]},"likes":[],"memberSince":"2011-08-27"} -{"name":{"first":"Jackie","last":"Kullmann"},"gender":"male","birthday":"1971-10-07","contact":{"address":{"street":"20 17th St","zip":"08859","city":"Parlin","state":"NJ"},"email":["jackie.kullmann@nosql-matters.org"],"region":"732","phone":[]},"likes":["skiing"],"memberSince":"2010-12-02"} -{"name":{"first":"Junior","last":"Gawlik"},"gender":"male","birthday":"1957-05-21","contact":{"address":{"street":"3 Harper Rd","zip":"57578","city":"Wewela","state":"SD"},"email":["junior.gawlik@nosql-matters.org","gawlik@nosql-matters.org"],"region":"605","phone":["605-2791273"]},"likes":["shopping"],"memberSince":"2007-07-18"} -{"name":{"first":"Beau","last":"Knopinski"},"gender":"male","birthday":"1958-10-10","contact":{"address":{"street":"17 257th Ave","zip":"15043","city":"Georgetown","state":"PA"},"email":["beau.knopinski@nosql-matters.org"],"region":"724","phone":[]},"likes":[],"memberSince":"2008-07-15"} -{"name":{"first":"Palmer","last":"Sawyers"},"gender":"male","birthday":"1945-10-02","contact":{"address":{"street":"20 242nd St","zip":"80997","city":"Colorado Springs","state":"CO"},"email":["palmer.sawyers@nosql-matters.org","sawyers@nosql-matters.org"],"region":"719","phone":["719-4883377"]},"likes":["chess","reading","snowboarding"],"memberSince":"2009-11-16"} -{"name":{"first":"Kaylene","last":"Romaniello"},"gender":"female","birthday":"1963-07-04","contact":{"address":{"street":"20 Crowell Cir","zip":"67566","city":"Partridge","state":"KS"},"email":["kaylene.romaniello@nosql-matters.org"],"region":"316","phone":["316-7084895"]},"likes":["travelling"],"memberSince":"2008-03-07"} -{"name":{"first":"Cheree","last":"Bogut"},"gender":"female","birthday":"1950-05-06","contact":{"address":{"street":"11 Branchton Blvd","zip":"32190","city":"Seville","state":"FL"},"email":["cheree.bogut@nosql-matters.org"],"region":"904","phone":["904-0386641"]},"likes":[],"memberSince":"2008-09-17"} -{"name":{"first":"Synthia","last":"Want"},"gender":"female","birthday":"1946-01-01","contact":{"address":{"street":"10 Division St","zip":"58765","city":"Noonan","state":"ND"},"email":["synthia.want@nosql-matters.org","want@nosql-matters.org","synthia@nosql-matters.org"],"region":"701","phone":[]},"likes":["travelling"],"memberSince":"2009-12-23"} -{"name":{"first":"Amos","last":"Jaegers"},"gender":"male","birthday":"1971-02-03","contact":{"address":{"street":"10 Neumann Ave","zip":"06471","city":"North Branford","state":"CT"},"email":["amos.jaegers@nosql-matters.org"],"region":"203","phone":[]},"likes":["swimming","climbing"],"memberSince":"2007-07-12"} -{"name":{"first":"Delmer","last":"Saathoff"},"gender":"male","birthday":"1945-03-07","contact":{"address":{"street":"4 Connecticut Loop","zip":"93033","city":"Oxnard","state":"CA"},"email":["delmer.saathoff@nosql-matters.org"],"region":"805","phone":["805-6018877"]},"likes":["chatting","ironing"],"memberSince":"2009-03-27"} -{"name":{"first":"Brigid","last":"Bellina"},"gender":"female","birthday":"1974-07-02","contact":{"address":{"street":"14 Rawlins Run","zip":"02106","city":"Boston","state":"MA"},"email":["brigid.bellina@nosql-matters.org","bellina@nosql-matters.org","brigid@nosql-matters.org"],"region":"617","phone":["617-7286703"]},"likes":[],"memberSince":"2009-04-11"} -{"name":{"first":"Scot","last":"Brdar"},"gender":"male","birthday":"1987-07-05","contact":{"address":{"street":"15 Pennsylvania Rd","zip":"10159","city":"New York","state":"NY"},"email":["scot.brdar@nosql-matters.org"],"region":"212","phone":["212-0130465"]},"likes":["reading"],"memberSince":"2008-04-24"} -{"name":{"first":"Lorene","last":"Goldfarb"},"gender":"female","birthday":"1985-01-26","contact":{"address":{"street":"18 Florida Pl","zip":"17016","city":"Cornwall","state":"PA"},"email":["lorene.goldfarb@nosql-matters.org","goldfarb@nosql-matters.org"],"region":"717","phone":[]},"likes":["chess","snowboarding"],"memberSince":"2008-04-01"} -{"name":{"first":"Sammy","last":"Ridens"},"gender":"female","birthday":"1974-01-23","contact":{"address":{"street":"21 Division Way","zip":"94066","city":"San Bruno","state":"CA"},"email":["sammy.ridens@nosql-matters.org"],"region":"650","phone":[]},"likes":[],"memberSince":"2008-12-10"} -{"name":{"first":"Luz","last":"Leyh"},"gender":"female","birthday":"1947-01-22","contact":{"address":{"street":"13 Harper Run","zip":"05161","city":"Weston","state":"VT"},"email":["luz.leyh@nosql-matters.org"],"region":"802","phone":[]},"likes":["chatting"],"memberSince":"2009-12-14"} -{"name":{"first":"Nakia","last":"Forner"},"gender":"female","birthday":"1983-09-01","contact":{"address":{"street":"11 Biltmore St","zip":"45023","city":"Hamilton","state":"OH"},"email":["nakia.forner@nosql-matters.org"],"region":"513","phone":["513-9389407","513-3937365"]},"likes":["swimming","ironing"],"memberSince":"2011-04-30"} -{"name":{"first":"Vincenzo","last":"Mussenden"},"gender":"male","birthday":"1951-01-01","contact":{"address":{"street":"4 Wallick Loop","zip":"80110","city":"Englewood","state":"CO"},"email":["vincenzo.mussenden@nosql-matters.org","mussenden@nosql-matters.org"],"region":"303","phone":["303-7325489","303-7693744"]},"likes":[],"memberSince":"2008-08-13"} -{"name":{"first":"Fernande","last":"Bucher"},"gender":"female","birthday":"1962-09-25","contact":{"address":{"street":"14 115th St","zip":"66830","city":"Admire","state":"KS"},"email":["fernande.bucher@nosql-matters.org"],"region":"316","phone":["316-5294798"]},"likes":[],"memberSince":"2010-09-17"} -{"name":{"first":"Winona","last":"Brunnett"},"gender":"female","birthday":"1944-10-13","contact":{"address":{"street":"21 Oak Dr","zip":"49818","city":"Cornell","state":"MI"},"email":["winona.brunnett@nosql-matters.org","winona@nosql-matters.org"],"region":"906","phone":["906-1337545"]},"likes":["running"],"memberSince":"2011-06-05"} -{"name":{"first":"Imogene","last":"Voller"},"gender":"female","birthday":"1950-10-05","contact":{"address":{"street":"14 Kearney Pl","zip":"33447","city":"Delray Beach","state":"FL"},"email":["imogene.voller@nosql-matters.org","voller@nosql-matters.org"],"region":"561","phone":["561-1953679","561-7765605"]},"likes":["chatting"],"memberSince":"2008-05-30"} -{"name":{"first":"Caleb","last":"Ota"},"gender":"male","birthday":"1946-06-04","contact":{"address":{"street":"14 18th Ave","zip":"06784","city":"Sherman","state":"CT"},"email":["caleb.ota@nosql-matters.org","ota@nosql-matters.org"],"region":"203","phone":[]},"likes":["reading","travelling"],"memberSince":"2007-12-21"} -{"name":{"first":"Travis","last":"Selvey"},"gender":"male","birthday":"1976-11-29","contact":{"address":{"street":"17 Chapin Loop","zip":"06360","city":"Norwich","state":"CT"},"email":["travis.selvey@nosql-matters.org","selvey@nosql-matters.org","travis@nosql-matters.org"],"region":"860","phone":["860-0745428","860-3397077"]},"likes":["snowboarding"],"memberSince":"2011-05-16"} -{"name":{"first":"Deanne","last":"Cashatt"},"gender":"female","birthday":"1956-02-10","contact":{"address":{"street":"3 Palmer Way","zip":"78406","city":"Corpus Christi","state":"TX"},"email":["deanne.cashatt@nosql-matters.org","cashatt@nosql-matters.org"],"region":"361","phone":["361-6662476","361-4831491"]},"likes":[],"memberSince":"2008-06-16"} -{"name":{"first":"Branden","last":"Lista"},"gender":"male","birthday":"1975-08-03","contact":{"address":{"street":"18 Woodson Cir","zip":"65706","city":"Marshfield","state":"MO"},"email":["branden.lista@nosql-matters.org"],"region":"417","phone":["417-0762272"]},"likes":[],"memberSince":"2007-06-18"} -{"name":{"first":"Stanton","last":"Hiscock"},"gender":"male","birthday":"1955-12-07","contact":{"address":{"street":"9 Clydesdale St","zip":"22530","city":"Ophelia","state":"VA"},"email":["stanton.hiscock@nosql-matters.org","hiscock@nosql-matters.org"],"region":"804","phone":["804-8612339"]},"likes":[],"memberSince":"2011-04-25"} -{"name":{"first":"Nicky","last":"Putnam"},"gender":"male","birthday":"1974-12-10","contact":{"address":{"street":"5 198th St","zip":"79930","city":"El Paso","state":"TX"},"email":["nicky.putnam@nosql-matters.org","nicky@nosql-matters.org"],"region":"915","phone":["915-1444162"]},"likes":["shopping"],"memberSince":"2011-04-24"} -{"name":{"first":"Mitchell","last":"Wesolowski"},"gender":"male","birthday":"1941-11-14","contact":{"address":{"street":"13 6th Ave","zip":"56312","city":"Belgrade","state":"MN"},"email":["mitchell.wesolowski@nosql-matters.org"],"region":"320","phone":["320-4897864"]},"likes":[],"memberSince":"2010-07-30"} -{"name":{"first":"Robt","last":"Redgate"},"gender":"male","birthday":"1955-08-29","contact":{"address":{"street":"4 Champlain Blvd","zip":"12441","city":"Highmount","state":"NY"},"email":["robt.redgate@nosql-matters.org","redgate@nosql-matters.org","robt@nosql-matters.org"],"region":"914","phone":["914-0900019"]},"likes":["swimming","ironing"],"memberSince":"2007-09-16"} -{"name":{"first":"Kenton","last":"Pence"},"gender":"male","birthday":"1988-02-08","contact":{"address":{"street":"5 Half mound Ln","zip":"37339","city":"Gruetli Laager","state":"TN"},"email":["kenton.pence@nosql-matters.org","pence@nosql-matters.org"],"region":"931","phone":["931-8780278","931-8125281"]},"likes":["skiing"],"memberSince":"2011-01-16"} -{"name":{"first":"Marlin","last":"Maner"},"gender":"male","birthday":"1989-10-19","contact":{"address":{"street":"15 Mound Cir","zip":"30411","city":"Alamo","state":"GA"},"email":["marlin.maner@nosql-matters.org","marlin@nosql-matters.org"],"region":"912","phone":["912-1688277","912-0487453"]},"likes":[],"memberSince":"2009-11-01"} -{"name":{"first":"Sanford","last":"Poisel"},"gender":"male","birthday":"1941-02-11","contact":{"address":{"street":"12 Wyoming Loop","zip":"86342","city":"Lake Montezuma","state":"AZ"},"email":["sanford.poisel@nosql-matters.org"],"region":"520","phone":["520-8742781","520-2969699"]},"likes":["reading"],"memberSince":"2007-06-22"} -{"name":{"first":"Tatum","last":"Elmquist"},"gender":"female","birthday":"1992-11-27","contact":{"address":{"street":"18 Wallick Loop","zip":"40289","city":"Louisville","state":"KY"},"email":["tatum.elmquist@nosql-matters.org","elmquist@nosql-matters.org"],"region":"502","phone":[]},"likes":["running","checkers","climbing","ironing"],"memberSince":"2012-02-02"} -{"name":{"first":"Jovan","last":"Khubba"},"gender":"female","birthday":"1958-02-12","contact":{"address":{"street":"20 16th St","zip":"04781","city":"Soldier Pond","state":"ME"},"email":["jovan.khubba@nosql-matters.org"],"region":"207","phone":[]},"likes":[],"memberSince":"2011-12-20"} -{"name":{"first":"Emmitt","last":"Corcino"},"gender":"male","birthday":"1943-09-09","contact":{"address":{"street":"4 12th Ave","zip":"18360","city":"Stroudsburg","state":"PA"},"email":["emmitt.corcino@nosql-matters.org"],"region":"570","phone":["570-6186495","570-5977583"]},"likes":["snowboarding","climbing","ironing"],"memberSince":"2011-11-22"} -{"name":{"first":"Chery","last":"Claxton"},"gender":"female","birthday":"1975-10-25","contact":{"address":{"street":"17 262nd St","zip":"16103","city":"New Castle","state":"PA"},"email":["chery.claxton@nosql-matters.org"],"region":"724","phone":["724-5014145","724-2424073"]},"likes":["skiing"],"memberSince":"2012-02-23"} -{"name":{"first":"Amee","last":"Kasa"},"gender":"female","birthday":"1963-09-16","contact":{"address":{"street":"17 Ottawa Way","zip":"15244","city":"Pittsburgh","state":"PA"},"email":["amee.kasa@nosql-matters.org"],"region":"412","phone":["412-3357189"]},"likes":["shopping","reading"],"memberSince":"2007-06-21"} -{"name":{"first":"Patience","last":"Tumminello"},"gender":"female","birthday":"1955-06-08","contact":{"address":{"street":"4 Woodson Aly","zip":"92327","city":"Daggett","state":"CA"},"email":["patience.tumminello@nosql-matters.org","tumminello@nosql-matters.org"],"region":"760","phone":["760-3091952"]},"likes":["shopping"],"memberSince":"2011-05-28"} -{"name":{"first":"Vannessa","last":"Tedrow"},"gender":"female","birthday":"1992-09-27","contact":{"address":{"street":"10 Oak Ln","zip":"07922","city":"Berkeley Heights","state":"NJ"},"email":["vannessa.tedrow@nosql-matters.org"],"region":"908","phone":["908-5891572","908-0357237"]},"likes":["shopping"],"memberSince":"2009-01-03"} -{"name":{"first":"Refugio","last":"Kalter"},"gender":"male","birthday":"1946-01-14","contact":{"address":{"street":"8 334th St","zip":"44232","city":"Green","state":"OH"},"email":["refugio.kalter@nosql-matters.org"],"region":"330","phone":["330-8804748"]},"likes":["driving"],"memberSince":"2009-12-16"} -{"name":{"first":"Elwood","last":"Czerno"},"gender":"male","birthday":"1952-08-16","contact":{"address":{"street":"5 Mozart Aly","zip":"22026","city":"Dumfries","state":"VA"},"email":["elwood.czerno@nosql-matters.org","elwood@nosql-matters.org"],"region":"703","phone":["703-8512708"]},"likes":[],"memberSince":"2008-03-07"} -{"name":{"first":"Marhta","last":"Pyette"},"gender":"female","birthday":"1974-08-25","contact":{"address":{"street":"11 Sedgwick Dr","zip":"00681","city":"Mayaguez","state":"PR"},"email":["marhta.pyette@nosql-matters.org","pyette@nosql-matters.org"],"region":"787","phone":["787-7655927"]},"likes":[],"memberSince":"2008-12-23"} -{"name":{"first":"Maximo","last":"Doremus"},"gender":"male","birthday":"1986-03-28","contact":{"address":{"street":"19 290th Ave","zip":"50576","city":"Rembrandt","state":"IA"},"email":["maximo.doremus@nosql-matters.org","doremus@nosql-matters.org"],"region":"712","phone":["712-6258492"]},"likes":[],"memberSince":"2009-02-11"} -{"name":{"first":"Altagracia","last":"Palasik"},"gender":"female","birthday":"1959-08-20","contact":{"address":{"street":"9 Laramie Pl","zip":"14091","city":"Lawtons","state":"NY"},"email":["altagracia.palasik@nosql-matters.org"],"region":"716","phone":[]},"likes":["shopping"],"memberSince":"2009-07-22"} -{"name":{"first":"Man","last":"Hribal"},"gender":"male","birthday":"1954-03-03","contact":{"address":{"street":"19 198th Ave","zip":"48104","city":"Ann Arbor","state":"MI"},"email":["man.hribal@nosql-matters.org"],"region":"734","phone":["734-2686165"]},"likes":["skiing"],"memberSince":"2011-07-05"} -{"name":{"first":"Kori","last":"Savery"},"gender":"female","birthday":"1985-04-23","contact":{"address":{"street":"8 318th St","zip":"13345","city":"Greig","state":"NY"},"email":["kori.savery@nosql-matters.org","savery@nosql-matters.org","kori@nosql-matters.org"],"region":"315","phone":["315-0315607"]},"likes":["shopping","reading","driving","climbing"],"memberSince":"2011-09-05"} -{"name":{"first":"Kyoko","last":"Temby"},"gender":"female","birthday":"1964-01-05","contact":{"address":{"street":"21 Pratt Run","zip":"11568","city":"Old Westbury","state":"NY"},"email":["kyoko.temby@nosql-matters.org","temby@nosql-matters.org","kyoko@nosql-matters.org"],"region":"516","phone":["516-2051051"]},"likes":["running"],"memberSince":"2007-11-13"} -{"name":{"first":"Ilda","last":"Schoettmer"},"gender":"female","birthday":"1973-08-24","contact":{"address":{"street":"19 Beekman Loop","zip":"61957","city":"Windsor","state":"IL"},"email":["ilda.schoettmer@nosql-matters.org"],"region":"217","phone":[]},"likes":["shopping","boxing"],"memberSince":"2007-08-24"} -{"name":{"first":"Mireille","last":"Dicola"},"gender":"female","birthday":"1982-05-09","contact":{"address":{"street":"4 242nd Ave","zip":"44816","city":"Birmingham","state":"OH"},"email":["mireille.dicola@nosql-matters.org","mireille@nosql-matters.org"],"region":"440","phone":["440-2949380","440-1640273"]},"likes":[],"memberSince":"2009-05-08"} -{"name":{"first":"Jackson","last":"Desak"},"gender":"male","birthday":"1968-12-06","contact":{"address":{"street":"14 Country club Dr","zip":"57772","city":"Porcupine","state":"SD"},"email":["jackson.desak@nosql-matters.org"],"region":"605","phone":["605-4822454","605-0378434"]},"likes":["chess","boxing"],"memberSince":"2009-11-13"} -{"name":{"first":"Gayla","last":"Dummitt"},"gender":"female","birthday":"1962-07-01","contact":{"address":{"street":"11 Vermont St","zip":"46759","city":"Keystone","state":"IN"},"email":["gayla.dummitt@nosql-matters.org","gayla@nosql-matters.org"],"region":"219","phone":["219-9160251"]},"likes":["biking","swimming","climbing"],"memberSince":"2012-02-20"} -{"name":{"first":"Caterina","last":"Capano"},"gender":"female","birthday":"1983-10-16","contact":{"address":{"street":"16 257th St","zip":"39163","city":"Sharon","state":"MS"},"email":["caterina.capano@nosql-matters.org"],"region":"601","phone":["601-9219345"]},"likes":["biking","swimming","checkers","climbing"],"memberSince":"2010-09-26"} -{"name":{"first":"Merle","last":"Ciolli"},"gender":"male","birthday":"1957-10-15","contact":{"address":{"street":"6 Adams mill Loop","zip":"07011","city":"Clifton","state":"NJ"},"email":["merle.ciolli@nosql-matters.org","merle@nosql-matters.org"],"region":"973","phone":["973-2393884","973-3752668"]},"likes":["shopping","swimming","reading"],"memberSince":"2009-11-21"} -{"name":{"first":"Destiny","last":"Jorres"},"gender":"female","birthday":"1985-05-14","contact":{"address":{"street":"8 12th St","zip":"14276","city":"Buffalo","state":"NY"},"email":["destiny.jorres@nosql-matters.org","destiny@nosql-matters.org"],"region":"716","phone":[]},"likes":["boxing"],"memberSince":"2008-01-04"} -{"name":{"first":"Mallory","last":"Tsuda"},"gender":"female","birthday":"1959-10-03","contact":{"address":{"street":"17 Patriot Ave","zip":"10167","city":"New York","state":"NY"},"email":["mallory.tsuda@nosql-matters.org","mallory@nosql-matters.org"],"region":"212","phone":["212-2779195","212-6057865"]},"likes":["skiing"],"memberSince":"2011-11-20"} -{"name":{"first":"Cecilia","last":"Stanovich"},"gender":"female","birthday":"1974-10-24","contact":{"address":{"street":"16 21st St","zip":"19381","city":"West Chester","state":"PA"},"email":["cecilia.stanovich@nosql-matters.org","cecilia@nosql-matters.org"],"region":"610","phone":["610-4896997"]},"likes":["snowboarding"],"memberSince":"2007-08-06"} -{"name":{"first":"Edyth","last":"Vangordon"},"gender":"female","birthday":"1942-03-31","contact":{"address":{"street":"7 198th St","zip":"75449","city":"Ladonia","state":"TX"},"email":["edyth.vangordon@nosql-matters.org","vangordon@nosql-matters.org","edyth@nosql-matters.org"],"region":"903","phone":[]},"likes":[],"memberSince":"2008-11-02"} -{"name":{"first":"Dusty","last":"Radish"},"gender":"male","birthday":"1980-05-04","contact":{"address":{"street":"4 Beekman Way","zip":"96749","city":"Keaau","state":"HI"},"email":["dusty.radish@nosql-matters.org"],"region":"808","phone":[]},"likes":["boxing"],"memberSince":"2011-02-05"} -{"name":{"first":"Bryant","last":"Stulick"},"gender":"male","birthday":"1955-08-01","contact":{"address":{"street":"14 Fuller Aly","zip":"25699","city":"Wilsondale","state":"WV"},"email":["bryant.stulick@nosql-matters.org","stulick@nosql-matters.org"],"region":"304","phone":["304-1661323","304-5941820"]},"likes":["shopping"],"memberSince":"2007-08-11"} -{"name":{"first":"Andy","last":"Kintzel"},"gender":"male","birthday":"1949-01-29","contact":{"address":{"street":"14 Commercial Ln","zip":"19110","city":"Philadelphia","state":"PA"},"email":["andy.kintzel@nosql-matters.org","andy@nosql-matters.org"],"region":"215","phone":["215-8496642"]},"likes":["skiing","climbing"],"memberSince":"2010-03-21"} -{"name":{"first":"Valentine","last":"Vigueras"},"gender":"male","birthday":"1946-03-09","contact":{"address":{"street":"3 Center Ln","zip":"93443","city":"Morro Bay","state":"CA"},"email":["valentine.vigueras@nosql-matters.org","vigueras@nosql-matters.org"],"region":"805","phone":[]},"likes":["shopping","swimming","ironing"],"memberSince":"2011-01-01"} -{"name":{"first":"Jewel","last":"Eversmann"},"gender":"male","birthday":"1951-11-28","contact":{"address":{"street":"1 266th Ave","zip":"98104","city":"Seattle","state":"WA"},"email":["jewel.eversmann@nosql-matters.org"],"region":"206","phone":["206-3639867"]},"likes":["biking","chess","snowboarding","ironing"],"memberSince":"2007-09-04"} -{"name":{"first":"Donnie","last":"Staines"},"gender":"male","birthday":"1971-08-01","contact":{"address":{"street":"11 Ashmead Dr","zip":"91734","city":"El Monte","state":"CA"},"email":["donnie.staines@nosql-matters.org"],"region":"626","phone":["626-6826053"]},"likes":[],"memberSince":"2011-11-30"} -{"name":{"first":"Jacob","last":"Cheatum"},"gender":"male","birthday":"1953-05-18","contact":{"address":{"street":"10 21st Ave","zip":"97282","city":"Portland","state":"OR"},"email":["jacob.cheatum@nosql-matters.org","jacob@nosql-matters.org"],"region":"503","phone":["503-4680293","503-2737136"]},"likes":["biking","ironing"],"memberSince":"2011-12-08"} -{"name":{"first":"Michale","last":"Pryce"},"gender":"male","birthday":"1986-07-09","contact":{"address":{"street":"11 Columbia Run","zip":"48531","city":"Flint","state":"MI"},"email":["michale.pryce@nosql-matters.org","michale@nosql-matters.org"],"region":"810","phone":[]},"likes":["snowboarding"],"memberSince":"2011-02-15"} -{"name":{"first":"Arden","last":"Bonillas"},"gender":"male","birthday":"1960-04-25","contact":{"address":{"street":"8 Neosho St","zip":"49730","city":"Elmira","state":"MI"},"email":["arden.bonillas@nosql-matters.org"],"region":"231","phone":[]},"likes":["running","chatting","climbing"],"memberSince":"2007-09-14"} -{"name":{"first":"Heath","last":"Lafontant"},"gender":"male","birthday":"1969-02-01","contact":{"address":{"street":"4 Riggs St","zip":"56542","city":"Fosston","state":"MN"},"email":["heath.lafontant@nosql-matters.org"],"region":"218","phone":["218-0589025","218-0855617"]},"likes":["running","chatting","skiing"],"memberSince":"2011-10-11"} -{"name":{"first":"Ulrike","last":"Israelsen"},"gender":"female","birthday":"1980-01-10","contact":{"address":{"street":"15 Park Dr","zip":"02208","city":"Boston","state":"MA"},"email":["ulrike.israelsen@nosql-matters.org"],"region":"617","phone":["617-8223682","617-2015823"]},"likes":["ironing"],"memberSince":"2008-09-11"} -{"name":{"first":"Ty","last":"Slater"},"gender":"male","birthday":"1964-09-22","contact":{"address":{"street":"10 Pratt Cir","zip":"32034","city":"Fernandina Beach","state":"FL"},"email":["ty.slater@nosql-matters.org","ty@nosql-matters.org"],"region":"904","phone":["904-2606584","904-9727650"]},"likes":["climbing","ironing"],"memberSince":"2012-05-20"} -{"name":{"first":"Andrew","last":"Heffernen"},"gender":"male","birthday":"1968-07-04","contact":{"address":{"street":"18 Commercial Hwy","zip":"61655","city":"Peoria","state":"IL"},"email":["andrew.heffernen@nosql-matters.org"],"region":"309","phone":["309-7536561"]},"likes":["checkers","ironing"],"memberSince":"2007-12-05"} -{"name":{"first":"Horacio","last":"Lynum"},"gender":"male","birthday":"1989-03-24","contact":{"address":{"street":"16 Atchison Ct","zip":"16025","city":"Chicora","state":"PA"},"email":["horacio.lynum@nosql-matters.org"],"region":"724","phone":["724-1732322"]},"likes":["chatting","skiing"],"memberSince":"2011-08-25"} -{"name":{"first":"Booker","last":"Stahley"},"gender":"male","birthday":"1956-10-12","contact":{"address":{"street":"1 Harvard Run","zip":"48812","city":"Cedar Lake","state":"MI"},"email":["booker.stahley@nosql-matters.org"],"region":"517","phone":["517-5935018"]},"likes":["chess","boxing","checkers"],"memberSince":"2011-04-22"} -{"name":{"first":"Judson","last":"Zacharias"},"gender":"male","birthday":"1972-05-16","contact":{"address":{"street":"19 1st St","zip":"24132","city":"Parrott","state":"VA"},"email":["judson.zacharias@nosql-matters.org","zacharias@nosql-matters.org"],"region":"540","phone":["540-1034590"]},"likes":["running","reading"],"memberSince":"2012-02-20"} -{"name":{"first":"Mike","last":"Frati"},"gender":"female","birthday":"1988-04-16","contact":{"address":{"street":"11 2nd Ave","zip":"66428","city":"Goff","state":"KS"},"email":["mike.frati@nosql-matters.org"],"region":"785","phone":["785-1573570"]},"likes":[],"memberSince":"2011-01-20"} -{"name":{"first":"Ardelle","last":"Ealy"},"gender":"female","birthday":"1945-02-18","contact":{"address":{"street":"12 Calvert St","zip":"16036","city":"Foxburg","state":"PA"},"email":["ardelle.ealy@nosql-matters.org","ealy@nosql-matters.org"],"region":"724","phone":[]},"likes":["climbing"],"memberSince":"2011-07-20"} -{"name":{"first":"Carlo","last":"Helmes"},"gender":"male","birthday":"1962-06-08","contact":{"address":{"street":"2 15th Ave","zip":"10576","city":"Pound Ridge","state":"NY"},"email":["carlo.helmes@nosql-matters.org"],"region":"914","phone":["914-8694372"]},"likes":["biking"],"memberSince":"2010-12-15"} -{"name":{"first":"Oleta","last":"Heinlen"},"gender":"female","birthday":"1974-03-22","contact":{"address":{"street":"9 Division Cir","zip":"69032","city":"Hayes Center","state":"NE"},"email":["oleta.heinlen@nosql-matters.org"],"region":"308","phone":["308-9025046","308-9428457"]},"likes":[],"memberSince":"2007-08-16"} -{"name":{"first":"Heidi","last":"Betance"},"gender":"female","birthday":"1968-11-17","contact":{"address":{"street":"19 University Cir","zip":"06705","city":"Waterbury","state":"CT"},"email":["heidi.betance@nosql-matters.org","betance@nosql-matters.org","heidi@nosql-matters.org"],"region":"203","phone":["203-5300829"]},"likes":[],"memberSince":"2010-03-29"} -{"name":{"first":"Alvaro","last":"Schrandt"},"gender":"male","birthday":"1958-01-01","contact":{"address":{"street":"10 Phillips Hwy","zip":"21009","city":"Abingdon","state":"MD"},"email":["alvaro.schrandt@nosql-matters.org"],"region":"410","phone":["410-9921533"]},"likes":[],"memberSince":"2008-11-13"} -{"name":{"first":"Pilar","last":"Zar"},"gender":"female","birthday":"1951-02-10","contact":{"address":{"street":"17 Florida Cir","zip":"71227","city":"Choudrant","state":"LA"},"email":["pilar.zar@nosql-matters.org"],"region":"318","phone":["318-6140841"]},"likes":["running"],"memberSince":"2008-09-20"} -{"name":{"first":"Leisa","last":"Habrock"},"gender":"female","birthday":"1942-01-07","contact":{"address":{"street":"2 13th St","zip":"29645","city":"Gray Court","state":"SC"},"email":["leisa.habrock@nosql-matters.org","habrock@nosql-matters.org","leisa@nosql-matters.org"],"region":"864","phone":["864-3647396","864-6497777"]},"likes":["biking"],"memberSince":"2008-04-15"} -{"name":{"first":"Tad","last":"Spink"},"gender":"male","birthday":"1947-02-19","contact":{"address":{"street":"1 234th St","zip":"14532","city":"Phelps","state":"NY"},"email":["tad.spink@nosql-matters.org"],"region":"315","phone":["315-0022796"]},"likes":["boxing","reading","climbing"],"memberSince":"2011-09-30"} -{"name":{"first":"Winston","last":"Aste"},"gender":"male","birthday":"1962-05-12","contact":{"address":{"street":"11 8th Ave","zip":"91762","city":"Ontario","state":"CA"},"email":["winston.aste@nosql-matters.org","aste@nosql-matters.org","winston@nosql-matters.org"],"region":"909","phone":["909-7540545","909-3522946"]},"likes":[],"memberSince":"2010-12-20"} -{"name":{"first":"Latonia","last":"Tix"},"gender":"female","birthday":"1962-06-04","contact":{"address":{"street":"6 Industrial Way","zip":"97885","city":"Wallowa","state":"OR"},"email":["latonia.tix@nosql-matters.org","tix@nosql-matters.org"],"region":"541","phone":["541-4227446"]},"likes":["snowboarding","skiing"],"memberSince":"2011-01-25"} -{"name":{"first":"Caitlyn","last":"Lanter"},"gender":"female","birthday":"1945-05-19","contact":{"address":{"street":"20 Wallace Ln","zip":"18619","city":"Hillsgrove","state":"PA"},"email":["caitlyn.lanter@nosql-matters.org","lanter@nosql-matters.org"],"region":"570","phone":["570-9428448","570-2973242"]},"likes":["boxing"],"memberSince":"2008-12-13"} -{"name":{"first":"Reinaldo","last":"Snobeck"},"gender":"male","birthday":"1941-10-06","contact":{"address":{"street":"21 Morningside Way","zip":"90021","city":"Los Angeles","state":"CA"},"email":["reinaldo.snobeck@nosql-matters.org","reinaldo@nosql-matters.org"],"region":"213","phone":["213-6886711","213-7189359"]},"likes":[],"memberSince":"2009-03-24"} -{"name":{"first":"Nelson","last":"Mackillop"},"gender":"male","birthday":"1945-12-20","contact":{"address":{"street":"1 Santa fe Cir","zip":"61126","city":"Rockford","state":"IL"},"email":["nelson.mackillop@nosql-matters.org"],"region":"815","phone":["815-2267508"]},"likes":["biking","boxing","driving"],"memberSince":"2011-09-13"} -{"name":{"first":"Erica","last":"Defrancis"},"gender":"female","birthday":"1965-04-02","contact":{"address":{"street":"9 Crescent Way","zip":"98150","city":"Seattle","state":"WA"},"email":["erica.defrancis@nosql-matters.org","defrancis@nosql-matters.org","erica@nosql-matters.org"],"region":"206","phone":["206-0095802"]},"likes":["skiing"],"memberSince":"2011-06-28"} -{"name":{"first":"Jared","last":"Trosen"},"gender":"male","birthday":"1985-12-13","contact":{"address":{"street":"16 Main Rd","zip":"24613","city":"Falls Mills","state":"VA"},"email":["jared.trosen@nosql-matters.org","jared@nosql-matters.org"],"region":"540","phone":["540-4439372","540-6861157"]},"likes":["climbing"],"memberSince":"2011-11-19"} -{"name":{"first":"Shira","last":"Zita"},"gender":"female","birthday":"1969-04-19","contact":{"address":{"street":"6 Wallach Cir","zip":"82901","city":"Rock Springs","state":"WY"},"email":["shira.zita@nosql-matters.org"],"region":"307","phone":["307-0523656","307-0866098"]},"likes":["chatting","travelling"],"memberSince":"2007-06-25"} -{"name":{"first":"Sherwood","last":"Kleinwolterin"},"gender":"male","birthday":"1949-03-08","contact":{"address":{"street":"20 Crescent St","zip":"88575","city":"El Paso","state":"TX"},"email":["sherwood.kleinwolterin@nosql-matters.org"],"region":"915","phone":[]},"likes":["chess","skiing"],"memberSince":"2009-02-03"} -{"name":{"first":"Caridad","last":"Demaline"},"gender":"female","birthday":"1951-01-16","contact":{"address":{"street":"4 6th Ave","zip":"40862","city":"Partridge","state":"KY"},"email":["caridad.demaline@nosql-matters.org"],"region":"606","phone":["606-2819012"]},"likes":["chatting"],"memberSince":"2012-02-20"} -{"name":{"first":"Milo","last":"Gurnett"},"gender":"male","birthday":"1947-06-01","contact":{"address":{"street":"9 Industrial Way","zip":"78404","city":"Corpus Christi","state":"TX"},"email":["milo.gurnett@nosql-matters.org"],"region":"361","phone":["361-0196735","361-7209194"]},"likes":["running","boxing","skiing"],"memberSince":"2012-01-27"} -{"name":{"first":"Alberto","last":"Baldelli"},"gender":"male","birthday":"1947-12-29","contact":{"address":{"street":"16 9th St","zip":"61106","city":"Rockford","state":"IL"},"email":["alberto.baldelli@nosql-matters.org"],"region":"815","phone":["815-3625083","815-0746684"]},"likes":[],"memberSince":"2010-08-01"} -{"name":{"first":"Ardella","last":"Belew"},"gender":"female","birthday":"1973-02-27","contact":{"address":{"street":"11 Neumann St","zip":"12404","city":"Accord","state":"NY"},"email":["ardella.belew@nosql-matters.org"],"region":"914","phone":["914-5266237"]},"likes":["swimming","reading"],"memberSince":"2010-09-09"} -{"name":{"first":"Maisie","last":"Cosgray"},"gender":"female","birthday":"1942-11-01","contact":{"address":{"street":"2 Division Pl","zip":"96854","city":"Wheeler Army Airfield","state":"HI"},"email":["maisie.cosgray@nosql-matters.org"],"region":"808","phone":["808-4802387","808-8902152"]},"likes":[],"memberSince":"2012-05-21"} -{"name":{"first":"Ava","last":"Asplin"},"gender":"female","birthday":"1960-12-08","contact":{"address":{"street":"13 Kansas St","zip":"44436","city":"Lowellville","state":"OH"},"email":["ava.asplin@nosql-matters.org"],"region":"330","phone":["330-0784638"]},"likes":[],"memberSince":"2008-01-20"} -{"name":{"first":"Norine","last":"Brauchla"},"gender":"female","birthday":"1973-08-10","contact":{"address":{"street":"8 Biltmore Cir","zip":"28372","city":"Pembroke","state":"NC"},"email":["norine.brauchla@nosql-matters.org","brauchla@nosql-matters.org","norine@nosql-matters.org"],"region":"910","phone":["910-8615182"]},"likes":["boxing","snowboarding"],"memberSince":"2009-07-02"} -{"name":{"first":"Anitra","last":"Esper"},"gender":"female","birthday":"1953-12-08","contact":{"address":{"street":"13 Champlain Blvd","zip":"34207","city":"Bradenton","state":"FL"},"email":["anitra.esper@nosql-matters.org"],"region":"941","phone":["941-5353389"]},"likes":["running"],"memberSince":"2008-01-13"} -{"name":{"first":"Thresa","last":"Amazan"},"gender":"female","birthday":"1978-10-24","contact":{"address":{"street":"14 Riverview Blvd","zip":"22924","city":"Batesville","state":"VA"},"email":["thresa.amazan@nosql-matters.org"],"region":"540","phone":["540-3628625"]},"likes":[],"memberSince":"2007-08-05"} -{"name":{"first":"Bryce","last":"Curella"},"gender":"male","birthday":"1987-03-04","contact":{"address":{"street":"17 Woodlawn Loop","zip":"70043","city":"Chalmette","state":"LA"},"email":["bryce.curella@nosql-matters.org","bryce@nosql-matters.org"],"region":"504","phone":["504-0348996"]},"likes":["biking"],"memberSince":"2007-06-18"} -{"name":{"first":"Marcelene","last":"Gieseking"},"gender":"female","birthday":"1942-11-01","contact":{"address":{"street":"16 Clydesdale Cir","zip":"41183","city":"Worthington","state":"KY"},"email":["marcelene.gieseking@nosql-matters.org"],"region":"606","phone":["606-5354268"]},"likes":[],"memberSince":"2012-01-30"} -{"name":{"first":"Awilda","last":"Catinella"},"gender":"female","birthday":"1979-04-19","contact":{"address":{"street":"13 Ashmead Blvd","zip":"32207","city":"Jacksonville","state":"FL"},"email":["awilda.catinella@nosql-matters.org","awilda@nosql-matters.org"],"region":"904","phone":[]},"likes":["boxing","reading","driving"],"memberSince":"2009-07-10"} -{"name":{"first":"Kyung","last":"Enrico"},"gender":"female","birthday":"1947-09-08","contact":{"address":{"street":"5 Clydesdale Way","zip":"27011","city":"Boonville","state":"NC"},"email":["kyung.enrico@nosql-matters.org","enrico@nosql-matters.org"],"region":"336","phone":["336-1935154"]},"likes":[],"memberSince":"2011-07-30"} -{"name":{"first":"Jestine","last":"Hattenbach"},"gender":"female","birthday":"1979-04-25","contact":{"address":{"street":"2 Trego Ln","zip":"98447","city":"Tacoma","state":"WA"},"email":["jestine.hattenbach@nosql-matters.org"],"region":"253","phone":["253-5742567"]},"likes":["swimming"],"memberSince":"2007-09-17"} -{"name":{"first":"Fernando","last":"Bogue"},"gender":"male","birthday":"1987-08-08","contact":{"address":{"street":"21 Cliffbourne Run","zip":"59059","city":"Musselshell","state":"MT"},"email":["fernando.bogue@nosql-matters.org","bogue@nosql-matters.org"],"region":"406","phone":["406-7259175"]},"likes":["driving"],"memberSince":"2007-09-19"} -{"name":{"first":"Galen","last":"Dragos"},"gender":"male","birthday":"1967-02-28","contact":{"address":{"street":"21 Girard Ct","zip":"13342","city":"Garrattsville","state":"NY"},"email":["galen.dragos@nosql-matters.org"],"region":"607","phone":["607-9132036"]},"likes":["chatting"],"memberSince":"2011-03-17"} -{"name":{"first":"Emerson","last":"Blegen"},"gender":"male","birthday":"1972-07-09","contact":{"address":{"street":"3 318th St","zip":"16859","city":"Moshannon","state":"PA"},"email":["emerson.blegen@nosql-matters.org","blegen@nosql-matters.org"],"region":"814","phone":["814-8240543"]},"likes":["chatting"],"memberSince":"2008-01-01"} -{"name":{"first":"Vaughn","last":"Grimaldi"},"gender":"male","birthday":"1944-05-25","contact":{"address":{"street":"17 Fuller Cir","zip":"35742","city":"Capshaw","state":"AL"},"email":["vaughn.grimaldi@nosql-matters.org"],"region":"256","phone":[]},"likes":["climbing","ironing"],"memberSince":"2007-06-23"} -{"name":{"first":"Arlie","last":"Girton"},"gender":"male","birthday":"1974-09-01","contact":{"address":{"street":"3 Walnut Way","zip":"85932","city":"Nutrioso","state":"AZ"},"email":["arlie.girton@nosql-matters.org","arlie@nosql-matters.org"],"region":"520","phone":["520-4473698"]},"likes":[],"memberSince":"2007-06-07"} -{"name":{"first":"Hong","last":"Bowdon"},"gender":"male","birthday":"1991-05-02","contact":{"address":{"street":"19 Last chance Ln","zip":"23898","city":"Zuni","state":"VA"},"email":["hong.bowdon@nosql-matters.org"],"region":"757","phone":["757-8103314"]},"likes":["climbing"],"memberSince":"2010-08-30"} -{"name":{"first":"Tamisha","last":"Tietjens"},"gender":"female","birthday":"1952-10-04","contact":{"address":{"street":"11 19th St","zip":"20062","city":"Washington","state":"DC"},"email":["tamisha.tietjens@nosql-matters.org","tietjens@nosql-matters.org","tamisha@nosql-matters.org"],"region":"202","phone":["202-3639968","202-3350457"]},"likes":["checkers"],"memberSince":"2008-05-29"} -{"name":{"first":"Lynn","last":"Pertee"},"gender":"male","birthday":"1968-12-21","contact":{"address":{"street":"8 290th St","zip":"71766","city":"Thornton","state":"AR"},"email":["lynn.pertee@nosql-matters.org","pertee@nosql-matters.org"],"region":"870","phone":["870-5450510","870-4816979"]},"likes":[],"memberSince":"2011-06-22"} -{"name":{"first":"Ian","last":"Lavagnino"},"gender":"male","birthday":"1972-12-18","contact":{"address":{"street":"15 University Dr","zip":"24852","city":"Keystone","state":"WV"},"email":["ian.lavagnino@nosql-matters.org"],"region":"304","phone":["304-9173079"]},"likes":[],"memberSince":"2007-08-21"} -{"name":{"first":"Augustine","last":"Melby"},"gender":"female","birthday":"1969-12-11","contact":{"address":{"street":"15 Rawlins Way","zip":"38625","city":"Dumas","state":"MS"},"email":["augustine.melby@nosql-matters.org"],"region":"662","phone":["662-6368927"]},"likes":["chatting","reading"],"memberSince":"2008-05-09"} -{"name":{"first":"Hans","last":"Imboden"},"gender":"male","birthday":"1993-04-01","contact":{"address":{"street":"12 Girard Ln","zip":"49303","city":"Bailey","state":"MI"},"email":["hans.imboden@nosql-matters.org"],"region":"231","phone":["231-1606214"]},"likes":["biking","shopping"],"memberSince":"2008-12-08"} -{"name":{"first":"Kurtis","last":"Ocasio"},"gender":"male","birthday":"1962-11-11","contact":{"address":{"street":"6 Spring garden Blvd","zip":"55616","city":"Two Harbors","state":"MN"},"email":["kurtis.ocasio@nosql-matters.org","ocasio@nosql-matters.org"],"region":"218","phone":["218-6295806"]},"likes":["running","driving"],"memberSince":"2012-04-06"} -{"name":{"first":"Gene","last":"Zozaya"},"gender":"male","birthday":"1967-04-18","contact":{"address":{"street":"2 198th Ave","zip":"26034","city":"Chester","state":"WV"},"email":["gene.zozaya@nosql-matters.org","gene@nosql-matters.org"],"region":"304","phone":["304-6411145","304-5041197"]},"likes":["swimming"],"memberSince":"2011-12-13"} -{"name":{"first":"Ervin","last":"Konkle"},"gender":"male","birthday":"1957-10-25","contact":{"address":{"street":"4 3rd Ave","zip":"97839","city":"Lexington","state":"OR"},"email":["ervin.konkle@nosql-matters.org","konkle@nosql-matters.org","ervin@nosql-matters.org"],"region":"541","phone":[]},"likes":["running","chess"],"memberSince":"2010-06-26"} -{"name":{"first":"Clarence","last":"Thomaston"},"gender":"male","birthday":"1986-11-14","contact":{"address":{"street":"9 Columbia Loop","zip":"76678","city":"Prairie Hill","state":"TX"},"email":["clarence.thomaston@nosql-matters.org","clarence@nosql-matters.org"],"region":"254","phone":[]},"likes":[],"memberSince":"2011-05-01"} -{"name":{"first":"Gwen","last":"Hicken"},"gender":"female","birthday":"1991-02-06","contact":{"address":{"street":"18 3rd Ave","zip":"51047","city":"Peterson","state":"IA"},"email":["gwen.hicken@nosql-matters.org","hicken@nosql-matters.org","gwen@nosql-matters.org"],"region":"712","phone":["712-5333055","712-9329059"]},"likes":[],"memberSince":"2008-04-08"} -{"name":{"first":"Roxana","last":"Hutmacher"},"gender":"female","birthday":"1991-07-13","contact":{"address":{"street":"6 14th Ave","zip":"94409","city":"San Mateo","state":"CA"},"email":["roxana.hutmacher@nosql-matters.org"],"region":"650","phone":[]},"likes":["chess","reading","ironing"],"memberSince":"2009-05-19"} -{"name":{"first":"Macie","last":"Carnell"},"gender":"female","birthday":"1988-02-20","contact":{"address":{"street":"8 17th St","zip":"30172","city":"Shannon","state":"GA"},"email":["macie.carnell@nosql-matters.org","macie@nosql-matters.org"],"region":"706","phone":["706-2602284"]},"likes":["swimming"],"memberSince":"2011-12-17"} -{"name":{"first":"Sommer","last":"Poleyestewa"},"gender":"female","birthday":"1989-04-04","contact":{"address":{"street":"9 John St","zip":"15268","city":"Pittsburgh","state":"PA"},"email":["sommer.poleyestewa@nosql-matters.org","poleyestewa@nosql-matters.org"],"region":"412","phone":["412-4759617"]},"likes":["boxing","checkers","ironing"],"memberSince":"2011-02-11"} -{"name":{"first":"Marco","last":"Garnett"},"gender":"male","birthday":"1950-08-01","contact":{"address":{"street":"14 Mozart St","zip":"26419","city":"Pine Grove","state":"WV"},"email":["marco.garnett@nosql-matters.org","garnett@nosql-matters.org"],"region":"304","phone":["304-3810297"]},"likes":["checkers"],"memberSince":"2010-05-19"} -{"name":{"first":"Colton","last":"Fugh"},"gender":"male","birthday":"1941-10-18","contact":{"address":{"street":"16 Ottawa Loop","zip":"75050","city":"Grand Prairie","state":"TX"},"email":["colton.fugh@nosql-matters.org","fugh@nosql-matters.org"],"region":"972","phone":[]},"likes":[],"memberSince":"2009-05-26"} -{"name":{"first":"Cary","last":"Bradford"},"gender":"male","birthday":"1993-12-27","contact":{"address":{"street":"20 Pratt Ave","zip":"30914","city":"Augusta","state":"GA"},"email":["cary.bradford@nosql-matters.org"],"region":"706","phone":["706-3584341"]},"likes":["travelling"],"memberSince":"2011-12-18"} -{"name":{"first":"Fatimah","last":"Woolbright"},"gender":"female","birthday":"1988-06-22","contact":{"address":{"street":"21 Vermont Blvd","zip":"66047","city":"Lawrence","state":"KS"},"email":["fatimah.woolbright@nosql-matters.org"],"region":"785","phone":["785-1300815"]},"likes":[],"memberSince":"2007-09-20"} -{"name":{"first":"Asley","last":"Englebert"},"gender":"female","birthday":"1955-12-04","contact":{"address":{"street":"21 18th St","zip":"03865","city":"Plaistow","state":"NH"},"email":["asley.englebert@nosql-matters.org"],"region":"603","phone":["603-4065524","603-1198625"]},"likes":[],"memberSince":"2011-08-25"} -{"name":{"first":"Elisha","last":"Assael"},"gender":"male","birthday":"1986-03-09","contact":{"address":{"street":"21 6th St","zip":"14760","city":"Olean","state":"NY"},"email":["elisha.assael@nosql-matters.org","assael@nosql-matters.org","elisha@nosql-matters.org"],"region":"716","phone":["716-6104550","716-9659426"]},"likes":["running","chess","checkers","driving"],"memberSince":"2008-11-11"} -{"name":{"first":"Brittni","last":"Feggins"},"gender":"female","birthday":"1961-10-04","contact":{"address":{"street":"13 Roberts Loop","zip":"82336","city":"Wamsutter","state":"WY"},"email":["brittni.feggins@nosql-matters.org"],"region":"307","phone":[]},"likes":[],"memberSince":"2011-01-07"} -{"name":{"first":"Cole","last":"Hugi"},"gender":"male","birthday":"1970-11-12","contact":{"address":{"street":"3 Deer Rd","zip":"68374","city":"Holmesville","state":"NE"},"email":["cole.hugi@nosql-matters.org","hugi@nosql-matters.org"],"region":"402","phone":[]},"likes":["running","biking"],"memberSince":"2010-02-06"} -{"name":{"first":"Kenia","last":"Smigaj"},"gender":"female","birthday":"1985-05-24","contact":{"address":{"street":"15 Adams mill Rd","zip":"76820","city":"Art","state":"TX"},"email":["kenia.smigaj@nosql-matters.org","kenia@nosql-matters.org"],"region":"915","phone":["915-9121202"]},"likes":["travelling"],"memberSince":"2011-03-13"} -{"name":{"first":"Mickie","last":"Vides"},"gender":"female","birthday":"1987-08-05","contact":{"address":{"street":"2 Mozart Cir","zip":"01746","city":"Holliston","state":"MA"},"email":["mickie.vides@nosql-matters.org","vides@nosql-matters.org","mickie@nosql-matters.org"],"region":"508","phone":["508-5008089","508-7494485"]},"likes":["chess"],"memberSince":"2010-12-02"} -{"name":{"first":"Sharri","last":"Kukielka"},"gender":"female","birthday":"1991-07-11","contact":{"address":{"street":"20 3rd St","zip":"67671","city":"Victoria","state":"KS"},"email":["sharri.kukielka@nosql-matters.org","sharri@nosql-matters.org"],"region":"785","phone":["785-5336815","785-5318368"]},"likes":[],"memberSince":"2010-12-14"} -{"name":{"first":"Nichole","last":"Rosengren"},"gender":"female","birthday":"1952-02-27","contact":{"address":{"street":"10 Mound Loop","zip":"43657","city":"Toledo","state":"OH"},"email":["nichole.rosengren@nosql-matters.org","rosengren@nosql-matters.org"],"region":"419","phone":[]},"likes":["running","snowboarding"],"memberSince":"2012-03-16"} -{"name":{"first":"Edra","last":"Vitelli"},"gender":"female","birthday":"1954-05-30","contact":{"address":{"street":"2 Ottawa Cir","zip":"91786","city":"Upland","state":"CA"},"email":["edra.vitelli@nosql-matters.org","vitelli@nosql-matters.org","edra@nosql-matters.org"],"region":"909","phone":["909-8255576"]},"likes":["checkers"],"memberSince":"2008-05-29"} -{"name":{"first":"Blaine","last":"Kosir"},"gender":"male","birthday":"1941-07-01","contact":{"address":{"street":"18 Lanier Rd","zip":"45340","city":"Maplewood","state":"OH"},"email":["blaine.kosir@nosql-matters.org"],"region":"937","phone":["937-4114083"]},"likes":["reading","travelling"],"memberSince":"2009-04-20"} -{"name":{"first":"Terisa","last":"Tebar"},"gender":"female","birthday":"1949-01-20","contact":{"address":{"street":"3 Branchton Cir","zip":"01542","city":"Rochdale","state":"MA"},"email":["terisa.tebar@nosql-matters.org"],"region":"508","phone":["508-8243017"]},"likes":["ironing"],"memberSince":"2011-01-14"} -{"name":{"first":"Gwenn","last":"Morneau"},"gender":"female","birthday":"1970-04-10","contact":{"address":{"street":"4 242nd St","zip":"99663","city":"Seldovia","state":"AK"},"email":["gwenn.morneau@nosql-matters.org"],"region":"907","phone":["907-4079817"]},"likes":["climbing"],"memberSince":"2008-07-21"} -{"name":{"first":"Sylvester","last":"Sable"},"gender":"male","birthday":"1971-08-09","contact":{"address":{"street":"21 266th Ave","zip":"10107","city":"New York","state":"NY"},"email":["sylvester.sable@nosql-matters.org"],"region":"212","phone":["212-6872412"]},"likes":[],"memberSince":"2012-05-21"} -{"name":{"first":"Franklin","last":"Denisco"},"gender":"male","birthday":"1954-12-20","contact":{"address":{"street":"22 Swann Run","zip":"26624","city":"Gassaway","state":"WV"},"email":["franklin.denisco@nosql-matters.org","denisco@nosql-matters.org"],"region":"304","phone":["304-6942263"]},"likes":["shopping"],"memberSince":"2008-09-27"} -{"name":{"first":"Willie","last":"Theus"},"gender":"female","birthday":"1950-12-24","contact":{"address":{"street":"11 14th Ave","zip":"45853","city":"Kalida","state":"OH"},"email":["willie.theus@nosql-matters.org","theus@nosql-matters.org","willie@nosql-matters.org"],"region":"419","phone":["419-9972823","419-1513924"]},"likes":["ironing"],"memberSince":"2009-09-11"} -{"name":{"first":"Renaldo","last":"Both"},"gender":"male","birthday":"1992-11-19","contact":{"address":{"street":"5 Price Rd","zip":"43501","city":"Alvordton","state":"OH"},"email":["renaldo.both@nosql-matters.org"],"region":"419","phone":[]},"likes":["climbing"],"memberSince":"2007-12-02"} -{"name":{"first":"Kristi","last":"Smeltzer"},"gender":"female","birthday":"1946-02-21","contact":{"address":{"street":"2 Trego Aly","zip":"94244","city":"Sacramento","state":"CA"},"email":["kristi.smeltzer@nosql-matters.org","smeltzer@nosql-matters.org"],"region":"916","phone":[]},"likes":["chess","checkers"],"memberSince":"2009-10-02"} -{"name":{"first":"Lee","last":"Ottino"},"gender":"male","birthday":"1972-10-31","contact":{"address":{"street":"3 Ontario Ln","zip":"50649","city":"Kesley","state":"IA"},"email":["lee.ottino@nosql-matters.org"],"region":"319","phone":["319-3248216"]},"likes":[],"memberSince":"2010-02-19"} -{"name":{"first":"Jolynn","last":"Mieczkowski"},"gender":"female","birthday":"1993-02-02","contact":{"address":{"street":"14 Roberts St","zip":"73626","city":"Canute","state":"OK"},"email":["jolynn.mieczkowski@nosql-matters.org"],"region":"580","phone":["580-4478107"]},"likes":["swimming","skiing"],"memberSince":"2011-12-08"} -{"name":{"first":"Yuko","last":"Scarboro"},"gender":"female","birthday":"1956-10-16","contact":{"address":{"street":"5 Crescent Run","zip":"59921","city":"Lake Mc Donald","state":"MT"},"email":["yuko.scarboro@nosql-matters.org"],"region":"406","phone":["406-8280891","406-5383409"]},"likes":["swimming","chatting"],"memberSince":"2008-11-23"} -{"name":{"first":"Harlan","last":"Los"},"gender":"male","birthday":"1971-06-27","contact":{"address":{"street":"22 Division Run","zip":"01772","city":"Southborough","state":"MA"},"email":["harlan.los@nosql-matters.org","harlan@nosql-matters.org"],"region":"508","phone":["508-3794057","508-2980294"]},"likes":["snowboarding"],"memberSince":"2010-03-20"} -{"name":{"first":"Lavona","last":"Riehle"},"gender":"female","birthday":"1958-11-05","contact":{"address":{"street":"4 River Way","zip":"27306","city":"Mount Gilead","state":"NC"},"email":["lavona.riehle@nosql-matters.org"],"region":"910","phone":[]},"likes":["shopping","reading"],"memberSince":"2011-10-22"} -{"name":{"first":"Weston","last":"Hartwell"},"gender":"male","birthday":"1977-11-03","contact":{"address":{"street":"1 234th St","zip":"71109","city":"Shreveport","state":"LA"},"email":["weston.hartwell@nosql-matters.org","hartwell@nosql-matters.org"],"region":"318","phone":["318-0652809"]},"likes":["travelling"],"memberSince":"2011-11-14"} -{"name":{"first":"Chante","last":"Wiedman"},"gender":"female","birthday":"1969-06-22","contact":{"address":{"street":"5 Ontario Run","zip":"02826","city":"Glendale","state":"RI"},"email":["chante.wiedman@nosql-matters.org"],"region":"401","phone":["401-7362962"]},"likes":["shopping"],"memberSince":"2008-07-10"} -{"name":{"first":"Breann","last":"Banks"},"gender":"female","birthday":"1945-03-30","contact":{"address":{"street":"2 Price Way","zip":"66060","city":"Nortonville","state":"KS"},"email":["breann.banks@nosql-matters.org","breann@nosql-matters.org"],"region":"785","phone":[]},"likes":["driving"],"memberSince":"2011-01-03"} -{"name":{"first":"Eddy","last":"Vieau"},"gender":"male","birthday":"1981-07-27","contact":{"address":{"street":"12 Fairmont St","zip":"18463","city":"Sterling","state":"PA"},"email":["eddy.vieau@nosql-matters.org","eddy@nosql-matters.org"],"region":"570","phone":["570-6625160","570-8667164"]},"likes":[],"memberSince":"2009-02-06"} -{"name":{"first":"Diedre","last":"Thimmesch"},"gender":"female","birthday":"1982-05-26","contact":{"address":{"street":"20 Wallach Loop","zip":"80824","city":"Kirk","state":"CO"},"email":["diedre.thimmesch@nosql-matters.org","diedre@nosql-matters.org"],"region":"970","phone":[]},"likes":["running","swimming","boxing"],"memberSince":"2010-06-17"} -{"name":{"first":"Beryl","last":"Starr"},"gender":"female","birthday":"1963-12-27","contact":{"address":{"street":"4 290th St","zip":"71858","city":"Rosston","state":"AR"},"email":["beryl.starr@nosql-matters.org","starr@nosql-matters.org"],"region":"870","phone":[]},"likes":["swimming"],"memberSince":"2008-10-17"} -{"name":{"first":"Jonelle","last":"Fallin"},"gender":"female","birthday":"1993-10-11","contact":{"address":{"street":"21 15th St","zip":"62722","city":"Springfield","state":"IL"},"email":["jonelle.fallin@nosql-matters.org"],"region":"217","phone":[]},"likes":["travelling"],"memberSince":"2012-03-26"} -{"name":{"first":"Mardell","last":"Gelzer"},"gender":"female","birthday":"1957-08-11","contact":{"address":{"street":"19 Fraser Hwy","zip":"55026","city":"Frontenac","state":"MN"},"email":["mardell.gelzer@nosql-matters.org","gelzer@nosql-matters.org"],"region":"651","phone":["651-5255545"]},"likes":["chatting","snowboarding"],"memberSince":"2010-02-04"} -{"name":{"first":"Leif","last":"Folio"},"gender":"male","birthday":"1971-02-12","contact":{"address":{"street":"2 18th Ave","zip":"17934","city":"Gilberton","state":"PA"},"email":["leif.folio@nosql-matters.org","folio@nosql-matters.org"],"region":"570","phone":["570-6369855"]},"likes":["chess"],"memberSince":"2011-02-26"} -{"name":{"first":"Rivka","last":"Hommel"},"gender":"female","birthday":"1992-03-06","contact":{"address":{"street":"8 Liberty Loop","zip":"91423","city":"Sherman Oaks","state":"CA"},"email":["rivka.hommel@nosql-matters.org"],"region":"818","phone":["818-6213602"]},"likes":["chatting","ironing"],"memberSince":"2009-12-01"} -{"name":{"first":"Zelma","last":"Dugre"},"gender":"female","birthday":"1989-04-10","contact":{"address":{"street":"12 Woodlawn Dr","zip":"99148","city":"Loon Lake","state":"WA"},"email":["zelma.dugre@nosql-matters.org"],"region":"509","phone":["509-5725968","509-8649631"]},"likes":["swimming","chatting"],"memberSince":"2008-12-31"} -{"name":{"first":"Josette","last":"Danekas"},"gender":"female","birthday":"1960-09-04","contact":{"address":{"street":"9 13th St","zip":"70154","city":"New Orleans","state":"LA"},"email":["josette.danekas@nosql-matters.org","josette@nosql-matters.org"],"region":"504","phone":[]},"likes":["boxing","skiing","ironing"],"memberSince":"2010-03-10"} -{"name":{"first":"Caroll","last":"Vansteenwyk"},"gender":"female","birthday":"1971-03-01","contact":{"address":{"street":"21 Clydesdale Way","zip":"29543","city":"Fork","state":"SC"},"email":["caroll.vansteenwyk@nosql-matters.org","caroll@nosql-matters.org"],"region":"843","phone":["843-9717601"]},"likes":[],"memberSince":"2007-06-21"} -{"name":{"first":"Frederic","last":"Doller"},"gender":"male","birthday":"1953-03-23","contact":{"address":{"street":"19 Liberty Blvd","zip":"99013","city":"Ford","state":"WA"},"email":["frederic.doller@nosql-matters.org","doller@nosql-matters.org"],"region":"509","phone":[]},"likes":["checkers","travelling"],"memberSince":"2008-04-01"} -{"name":{"first":"Tanisha","last":"Esworthy"},"gender":"female","birthday":"1988-01-14","contact":{"address":{"street":"9 Wallace Run","zip":"33687","city":"Tampa","state":"FL"},"email":["tanisha.esworthy@nosql-matters.org","esworthy@nosql-matters.org"],"region":"813","phone":[]},"likes":[],"memberSince":"2007-10-01"} -{"name":{"first":"Horace","last":"Prately"},"gender":"male","birthday":"1963-01-29","contact":{"address":{"street":"12 Kansas Run","zip":"15490","city":"White","state":"PA"},"email":["horace.prately@nosql-matters.org","prately@nosql-matters.org"],"region":"724","phone":["724-7353883","724-0679545"]},"likes":["ironing"],"memberSince":"2012-02-07"} -{"name":{"first":"Richard","last":"Six"},"gender":"male","birthday":"1991-06-28","contact":{"address":{"street":"4 Girard Hwy","zip":"13081","city":"King Ferry","state":"NY"},"email":["richard.six@nosql-matters.org"],"region":"315","phone":["315-3018990"]},"likes":["running","chatting","boxing","checkers"],"memberSince":"2011-04-25"} -{"name":{"first":"Star","last":"Brodey"},"gender":"female","birthday":"1942-06-26","contact":{"address":{"street":"8 1st Ave","zip":"78720","city":"Austin","state":"TX"},"email":["star.brodey@nosql-matters.org","star@nosql-matters.org"],"region":"512","phone":["512-3085148"]},"likes":[],"memberSince":"2010-06-07"} -{"name":{"first":"Markita","last":"Laroe"},"gender":"female","birthday":"1964-10-23","contact":{"address":{"street":"12 Corcoran Ln","zip":"40913","city":"Beverly","state":"KY"},"email":["markita.laroe@nosql-matters.org","markita@nosql-matters.org"],"region":"606","phone":["606-1332714"]},"likes":["biking"],"memberSince":"2010-05-25"} -{"name":{"first":"Toby","last":"Badertscher"},"gender":"male","birthday":"1975-07-05","contact":{"address":{"street":"13 Adams mill Hwy","zip":"99726","city":"Bettles Field","state":"AK"},"email":["toby.badertscher@nosql-matters.org","badertscher@nosql-matters.org"],"region":"907","phone":["907-0120918","907-3037899"]},"likes":["ironing"],"memberSince":"2011-05-13"} -{"name":{"first":"Andria","last":"Scuderi"},"gender":"female","birthday":"1950-03-27","contact":{"address":{"street":"1 New hampshire Ln","zip":"62084","city":"Roxana","state":"IL"},"email":["andria.scuderi@nosql-matters.org","scuderi@nosql-matters.org"],"region":"618","phone":["618-3106046"]},"likes":["swimming","ironing"],"memberSince":"2007-10-19"} -{"name":{"first":"Clora","last":"Torrion"},"gender":"female","birthday":"1965-07-08","contact":{"address":{"street":"9 Belmont Aly","zip":"30178","city":"Taylorsville","state":"GA"},"email":["clora.torrion@nosql-matters.org"],"region":"770","phone":["770-7987442","770-4144615"]},"likes":[],"memberSince":"2011-04-02"} -{"name":{"first":"Lavenia","last":"Lacovara"},"gender":"female","birthday":"1941-05-30","contact":{"address":{"street":"10 Fuller Blvd","zip":"54874","city":"South Range","state":"WI"},"email":["lavenia.lacovara@nosql-matters.org","lavenia@nosql-matters.org"],"region":"715","phone":["715-4967616","715-5206466"]},"likes":["driving"],"memberSince":"2010-01-30"} -{"name":{"first":"Hugo","last":"Wooderson"},"gender":"male","birthday":"1947-05-08","contact":{"address":{"street":"10 Oak Ln","zip":"97107","city":"Bay City","state":"OR"},"email":["hugo.wooderson@nosql-matters.org","wooderson@nosql-matters.org"],"region":"503","phone":[]},"likes":[],"memberSince":"2009-12-30"} -{"name":{"first":"Jerrica","last":"Wadley"},"gender":"female","birthday":"1971-09-16","contact":{"address":{"street":"10 New hampshire Loop","zip":"74932","city":"Cameron","state":"OK"},"email":["jerrica.wadley@nosql-matters.org"],"region":"918","phone":["918-6287041"]},"likes":[],"memberSince":"2007-10-28"} -{"name":{"first":"Trista","last":"Peller"},"gender":"female","birthday":"1988-01-31","contact":{"address":{"street":"20 Laramie Ln","zip":"71030","city":"Gloster","state":"LA"},"email":["trista.peller@nosql-matters.org","peller@nosql-matters.org"],"region":"318","phone":["318-6519847"]},"likes":[],"memberSince":"2009-03-05"} -{"name":{"first":"Signe","last":"Epifano"},"gender":"female","birthday":"1982-09-26","contact":{"address":{"street":"12 Neumann Loop","zip":"39535","city":"Biloxi","state":"MS"},"email":["signe.epifano@nosql-matters.org"],"region":"228","phone":["228-6396650"]},"likes":["swimming","travelling"],"memberSince":"2009-12-19"} -{"name":{"first":"Isabella","last":"Sadvary"},"gender":"female","birthday":"1950-11-17","contact":{"address":{"street":"5 Trego Hwy","zip":"80235","city":"Denver","state":"CO"},"email":["isabella.sadvary@nosql-matters.org"],"region":"303","phone":["303-9273387"]},"likes":["climbing"],"memberSince":"2007-12-25"} -{"name":{"first":"Brandy","last":"Peto"},"gender":"female","birthday":"1993-10-19","contact":{"address":{"street":"7 Vermont Rd","zip":"05776","city":"West Rupert","state":"VT"},"email":["brandy.peto@nosql-matters.org","peto@nosql-matters.org"],"region":"802","phone":[]},"likes":[],"memberSince":"2010-04-02"} -{"name":{"first":"Xavier","last":"Mcwatters"},"gender":"male","birthday":"1989-04-17","contact":{"address":{"street":"15 Harper Ct","zip":"04734","city":"Blaine","state":"ME"},"email":["xavier.mcwatters@nosql-matters.org","mcwatters@nosql-matters.org","xavier@nosql-matters.org"],"region":"207","phone":["207-9108102","207-3704111"]},"likes":["climbing"],"memberSince":"2010-09-23"} -{"name":{"first":"Marhta","last":"Ferdig"},"gender":"female","birthday":"1993-06-03","contact":{"address":{"street":"10 Vernon Hwy","zip":"92377","city":"Rialto","state":"CA"},"email":["marhta.ferdig@nosql-matters.org","ferdig@nosql-matters.org"],"region":"909","phone":[]},"likes":[],"memberSince":"2007-10-03"} -{"name":{"first":"Olin","last":"Baroni"},"gender":"male","birthday":"1946-09-03","contact":{"address":{"street":"2 Half mound Ln","zip":"49623","city":"Chase","state":"MI"},"email":["olin.baroni@nosql-matters.org"],"region":"231","phone":["231-0796882","231-9499835"]},"likes":[],"memberSince":"2008-09-19"} -{"name":{"first":"Marcelo","last":"Everman"},"gender":"male","birthday":"1952-04-16","contact":{"address":{"street":"1 Price Pl","zip":"69122","city":"Big Springs","state":"NE"},"email":["marcelo.everman@nosql-matters.org"],"region":"308","phone":["308-9348738"]},"likes":["running","chess","travelling"],"memberSince":"2011-01-12"} -{"name":{"first":"Carlos","last":"Lupacchino"},"gender":"male","birthday":"1957-11-21","contact":{"address":{"street":"11 Crescent Pl","zip":"07960","city":"Morristown","state":"NJ"},"email":["carlos.lupacchino@nosql-matters.org","lupacchino@nosql-matters.org"],"region":"973","phone":["973-5724432"]},"likes":["boxing"],"memberSince":"2009-05-14"} -{"name":{"first":"Connie","last":"Kues"},"gender":"male","birthday":"1950-01-12","contact":{"address":{"street":"1 13th St","zip":"70139","city":"New Orleans","state":"LA"},"email":["connie.kues@nosql-matters.org","kues@nosql-matters.org"],"region":"504","phone":[]},"likes":["shopping","snowboarding","travelling"],"memberSince":"2007-09-22"} -{"name":{"first":"Bong","last":"Maio"},"gender":"female","birthday":"1969-06-20","contact":{"address":{"street":"17 Spring garden Cir","zip":"44241","city":"Streetsboro","state":"OH"},"email":["bong.maio@nosql-matters.org","bong@nosql-matters.org"],"region":"330","phone":[]},"likes":["checkers","snowboarding"],"memberSince":"2007-08-15"} -{"name":{"first":"Emmitt","last":"Schumachor"},"gender":"male","birthday":"1948-02-19","contact":{"address":{"street":"21 Ottawa Aly","zip":"04930","city":"Dexter","state":"ME"},"email":["emmitt.schumachor@nosql-matters.org"],"region":"207","phone":["207-7160906"]},"likes":[],"memberSince":"2010-08-13"} -{"name":{"first":"Ali","last":"Guity"},"gender":"male","birthday":"1987-01-05","contact":{"address":{"street":"4 21st Ave","zip":"58054","city":"Lisbon","state":"ND"},"email":["ali.guity@nosql-matters.org"],"region":"701","phone":[]},"likes":["boxing"],"memberSince":"2011-10-16"} -{"name":{"first":"Preston","last":"Waz"},"gender":"male","birthday":"1983-09-07","contact":{"address":{"street":"4 Spring garden Aly","zip":"13696","city":"West Stockholm","state":"NY"},"email":["preston.waz@nosql-matters.org"],"region":"315","phone":["315-1824616"]},"likes":[],"memberSince":"2009-07-04"} -{"name":{"first":"Dino","last":"Gaber"},"gender":"male","birthday":"1971-07-02","contact":{"address":{"street":"20 John Run","zip":"28102","city":"Mc Farlan","state":"NC"},"email":["dino.gaber@nosql-matters.org"],"region":"704","phone":["704-0680403","704-0759287"]},"likes":["boxing","driving"],"memberSince":"2008-08-14"} -{"name":{"first":"Cyril","last":"Laizure"},"gender":"male","birthday":"1983-01-26","contact":{"address":{"street":"8 Cliffbourne Run","zip":"16738","city":"Lewis Run","state":"PA"},"email":["cyril.laizure@nosql-matters.org"],"region":"814","phone":["814-6138493"]},"likes":[],"memberSince":"2009-03-04"} -{"name":{"first":"Perla","last":"Ambrister"},"gender":"female","birthday":"1946-03-14","contact":{"address":{"street":"16 Oak Pl","zip":"59486","city":"Valier","state":"MT"},"email":["perla.ambrister@nosql-matters.org","ambrister@nosql-matters.org"],"region":"406","phone":["406-3695959"]},"likes":["driving","climbing","ironing"],"memberSince":"2007-06-27"} -{"name":{"first":"Eldon","last":"Lizama"},"gender":"male","birthday":"1975-08-24","contact":{"address":{"street":"9 12th Ave","zip":"28801","city":"Asheville","state":"NC"},"email":["eldon.lizama@nosql-matters.org","eldon@nosql-matters.org"],"region":"828","phone":[]},"likes":["snowboarding","driving"],"memberSince":"2009-06-20"} -{"name":{"first":"Van","last":"Stilphen"},"gender":"male","birthday":"1978-01-27","contact":{"address":{"street":"16 Palmer Aly","zip":"28444","city":"Harrells","state":"NC"},"email":["van.stilphen@nosql-matters.org","van@nosql-matters.org"],"region":"910","phone":[]},"likes":["boxing","reading","ironing"],"memberSince":"2011-03-07"} -{"name":{"first":"Joella","last":"Hemminger"},"gender":"female","birthday":"1965-12-11","contact":{"address":{"street":"16 318th St","zip":"56294","city":"Wanda","state":"MN"},"email":["joella.hemminger@nosql-matters.org","hemminger@nosql-matters.org"],"region":"507","phone":["507-7187484","507-3274846"]},"likes":["skiing"],"memberSince":"2012-05-21"} -{"name":{"first":"Lindsay","last":"Kisser"},"gender":"male","birthday":"1945-09-18","contact":{"address":{"street":"5 234th St","zip":"05609","city":"Montpelier","state":"VT"},"email":["lindsay.kisser@nosql-matters.org"],"region":"802","phone":["802-2188296"]},"likes":[],"memberSince":"2007-07-19"} -{"name":{"first":"Gwenda","last":"Mackie"},"gender":"female","birthday":"1942-11-29","contact":{"address":{"street":"12 Morningside Ct","zip":"76571","city":"Salado","state":"TX"},"email":["gwenda.mackie@nosql-matters.org","mackie@nosql-matters.org"],"region":"254","phone":["254-3122670","254-0169155"]},"likes":["travelling"],"memberSince":"2008-01-30"} -{"name":{"first":"Libbie","last":"Skeens"},"gender":"female","birthday":"1952-07-15","contact":{"address":{"street":"14 University Ave","zip":"72217","city":"Little Rock","state":"AR"},"email":["libbie.skeens@nosql-matters.org"],"region":"501","phone":[]},"likes":["snowboarding"],"memberSince":"2010-03-10"} -{"name":{"first":"Simon","last":"Rail"},"gender":"male","birthday":"1989-06-14","contact":{"address":{"street":"7 266th Ave","zip":"08528","city":"Kingston","state":"NJ"},"email":["simon.rail@nosql-matters.org"],"region":"609","phone":["609-2321708","609-7828188"]},"likes":[],"memberSince":"2008-02-23"} -{"name":{"first":"Rodrigo","last":"Dingel"},"gender":"male","birthday":"1991-11-22","contact":{"address":{"street":"14 Division Cir","zip":"65776","city":"South Fork","state":"MO"},"email":["rodrigo.dingel@nosql-matters.org","rodrigo@nosql-matters.org"],"region":"417","phone":["417-5116829"]},"likes":["chess","travelling"],"memberSince":"2011-07-10"} -{"name":{"first":"Willette","last":"Harvath"},"gender":"female","birthday":"1962-06-25","contact":{"address":{"street":"10 15th Ave","zip":"23628","city":"Newport News","state":"VA"},"email":["willette.harvath@nosql-matters.org"],"region":"757","phone":["757-4641816"]},"likes":[],"memberSince":"2012-04-10"} -{"name":{"first":"Huey","last":"Doner"},"gender":"male","birthday":"1989-08-08","contact":{"address":{"street":"17 Euclid Ct","zip":"11767","city":"Nesconset","state":"NY"},"email":["huey.doner@nosql-matters.org","huey@nosql-matters.org"],"region":"631","phone":["631-3696320","631-5338885"]},"likes":["chess","driving","skiing"],"memberSince":"2011-07-15"} -{"name":{"first":"Wilbur","last":"Manweiler"},"gender":"male","birthday":"1981-11-18","contact":{"address":{"street":"19 Liberty Hwy","zip":"20158","city":"Hamilton","state":"VA"},"email":["wilbur.manweiler@nosql-matters.org"],"region":"540","phone":["540-7433609"]},"likes":["running","biking","travelling"],"memberSince":"2008-06-24"} -{"name":{"first":"Francisca","last":"Natho"},"gender":"female","birthday":"1957-12-22","contact":{"address":{"street":"11 19th Ave","zip":"68453","city":"Tobias","state":"NE"},"email":["francisca.natho@nosql-matters.org"],"region":"402","phone":["402-7712531"]},"likes":["running","swimming","chess"],"memberSince":"2007-06-25"} -{"name":{"first":"Reggie","last":"Billon"},"gender":"male","birthday":"1953-07-06","contact":{"address":{"street":"2 Connecticut Run","zip":"89439","city":"Verdi","state":"NV"},"email":["reggie.billon@nosql-matters.org","billon@nosql-matters.org"],"region":"775","phone":[]},"likes":["chess","travelling","ironing"],"memberSince":"2008-01-26"} -{"name":{"first":"Chadwick","last":"Boleyn"},"gender":"male","birthday":"1961-11-30","contact":{"address":{"street":"9 Woodson Rd","zip":"76131","city":"Fort Worth","state":"TX"},"email":["chadwick.boleyn@nosql-matters.org"],"region":"817","phone":[]},"likes":["chatting","ironing"],"memberSince":"2008-01-03"} -{"name":{"first":"Hui","last":"Gordan"},"gender":"female","birthday":"1963-07-20","contact":{"address":{"street":"3 2nd St","zip":"44074","city":"Oberlin","state":"OH"},"email":["hui.gordan@nosql-matters.org","hui@nosql-matters.org"],"region":"440","phone":[]},"likes":["biking","boxing"],"memberSince":"2009-03-15"} -{"name":{"first":"Bobbie","last":"Tilden"},"gender":"male","birthday":"1949-07-13","contact":{"address":{"street":"6 Main Run","zip":"43771","city":"Philo","state":"OH"},"email":["bobbie.tilden@nosql-matters.org"],"region":"740","phone":["740-7869647"]},"likes":[],"memberSince":"2008-01-24"} -{"name":{"first":"Charlotte","last":"Alverez"},"gender":"female","birthday":"1949-03-29","contact":{"address":{"street":"8 Phillips Ct","zip":"27856","city":"Nashville","state":"NC"},"email":["charlotte.alverez@nosql-matters.org"],"region":"252","phone":[]},"likes":["skiing"],"memberSince":"2007-06-12"} -{"name":{"first":"Jewel","last":"Modine"},"gender":"male","birthday":"1976-04-19","contact":{"address":{"street":"20 5th Ave","zip":"43224","city":"Columbus","state":"OH"},"email":["jewel.modine@nosql-matters.org","jewel@nosql-matters.org"],"region":"614","phone":["614-5542450","614-3531805"]},"likes":["running"],"memberSince":"2011-11-22"} -{"name":{"first":"Bertram","last":"Pettinato"},"gender":"male","birthday":"1958-11-11","contact":{"address":{"street":"14 Fraser Aly","zip":"95540","city":"Fortuna","state":"CA"},"email":["bertram.pettinato@nosql-matters.org"],"region":"707","phone":["707-0375239"]},"likes":["driving"],"memberSince":"2011-06-27"} -{"name":{"first":"Ralph","last":"Vorgas"},"gender":"male","birthday":"1986-01-14","contact":{"address":{"street":"12 20th St","zip":"06250","city":"Mansfield Center","state":"CT"},"email":["ralph.vorgas@nosql-matters.org","ralph@nosql-matters.org"],"region":"860","phone":["860-6085815"]},"likes":["running","checkers"],"memberSince":"2008-07-13"} -{"name":{"first":"Roselee","last":"Skowron"},"gender":"female","birthday":"1944-10-01","contact":{"address":{"street":"12 4th Ave","zip":"72433","city":"Hoxie","state":"AR"},"email":["roselee.skowron@nosql-matters.org","roselee@nosql-matters.org"],"region":"870","phone":["870-9954597"]},"likes":["biking","travelling"],"memberSince":"2008-06-26"} -{"name":{"first":"Dick","last":"Genz"},"gender":"male","birthday":"1978-09-09","contact":{"address":{"street":"17 Woodlawn Ave","zip":"10512","city":"Carmel","state":"NY"},"email":["dick.genz@nosql-matters.org"],"region":"914","phone":["914-1730470"]},"likes":[],"memberSince":"2010-11-15"} -{"name":{"first":"Wesley","last":"Reidhaar"},"gender":"male","birthday":"1979-01-21","contact":{"address":{"street":"18 198th St","zip":"18765","city":"Wilkes Barre","state":"PA"},"email":["wesley.reidhaar@nosql-matters.org","reidhaar@nosql-matters.org","wesley@nosql-matters.org"],"region":"570","phone":[]},"likes":[],"memberSince":"2008-04-11"} -{"name":{"first":"Amado","last":"Headlam"},"gender":"male","birthday":"1987-12-24","contact":{"address":{"street":"12 13th Ave","zip":"88321","city":"Encino","state":"NM"},"email":["amado.headlam@nosql-matters.org"],"region":"505","phone":[]},"likes":["chatting","boxing"],"memberSince":"2010-01-06"} -{"name":{"first":"Darrel","last":"Timone"},"gender":"male","birthday":"1972-09-06","contact":{"address":{"street":"19 Division St","zip":"89403","city":"Dayton","state":"NV"},"email":["darrel.timone@nosql-matters.org","darrel@nosql-matters.org"],"region":"775","phone":["775-1175227","775-4301232"]},"likes":["biking","reading"],"memberSince":"2011-01-12"} -{"name":{"first":"Davis","last":"Banton"},"gender":"male","birthday":"1962-06-10","contact":{"address":{"street":"14 198th St","zip":"93624","city":"Five Points","state":"CA"},"email":["davis.banton@nosql-matters.org"],"region":"559","phone":["559-9579978","559-5401169"]},"likes":["reading"],"memberSince":"2008-10-11"} -{"name":{"first":"Cody","last":"Degiulio"},"gender":"male","birthday":"1969-02-23","contact":{"address":{"street":"18 Patriot Blvd","zip":"49872","city":"Perkins","state":"MI"},"email":["cody.degiulio@nosql-matters.org","degiulio@nosql-matters.org"],"region":"906","phone":[]},"likes":["swimming","boxing","reading"],"memberSince":"2008-01-20"} -{"name":{"first":"Jerrell","last":"Whal"},"gender":"male","birthday":"1944-02-13","contact":{"address":{"street":"9 Morningside Dr","zip":"40337","city":"Jeffersonville","state":"KY"},"email":["jerrell.whal@nosql-matters.org","whal@nosql-matters.org","jerrell@nosql-matters.org"],"region":"606","phone":[]},"likes":["biking","swimming"],"memberSince":"2010-05-08"} -{"name":{"first":"Merna","last":"Furlotte"},"gender":"female","birthday":"1943-11-07","contact":{"address":{"street":"14 Woodlawn Ct","zip":"01525","city":"Linwood","state":"MA"},"email":["merna.furlotte@nosql-matters.org","furlotte@nosql-matters.org"],"region":"508","phone":["508-5566093"]},"likes":["chess"],"memberSince":"2008-03-01"} -{"name":{"first":"Twana","last":"Finkenbiner"},"gender":"female","birthday":"1985-08-24","contact":{"address":{"street":"15 Ontario Dr","zip":"40270","city":"Louisville","state":"KY"},"email":["twana.finkenbiner@nosql-matters.org"],"region":"502","phone":["502-5539847","502-8790519"]},"likes":[],"memberSince":"2009-10-20"} -{"name":{"first":"Chanel","last":"Cuascut"},"gender":"female","birthday":"1954-08-10","contact":{"address":{"street":"1 2nd St","zip":"11714","city":"Bethpage","state":"NY"},"email":["chanel.cuascut@nosql-matters.org"],"region":"516","phone":[]},"likes":["skiing"],"memberSince":"2008-12-08"} -{"name":{"first":"Kymberly","last":"Ihrig"},"gender":"female","birthday":"1980-06-07","contact":{"address":{"street":"20 Last chance Aly","zip":"49403","city":"Conklin","state":"MI"},"email":["kymberly.ihrig@nosql-matters.org","kymberly@nosql-matters.org"],"region":"616","phone":["616-1786553"]},"likes":["shopping","boxing"],"memberSince":"2010-12-06"} -{"name":{"first":"Brice","last":"Eidem"},"gender":"male","birthday":"1990-04-28","contact":{"address":{"street":"15 Columbia St","zip":"06354","city":"Moosup","state":"CT"},"email":["brice.eidem@nosql-matters.org","brice@nosql-matters.org"],"region":"860","phone":["860-3353943","860-3393509"]},"likes":["swimming","chess"],"memberSince":"2010-10-24"} -{"name":{"first":"Felicidad","last":"Latin"},"gender":"female","birthday":"1987-04-02","contact":{"address":{"street":"21 234th St","zip":"87187","city":"Albuquerque","state":"NM"},"email":["felicidad.latin@nosql-matters.org","felicidad@nosql-matters.org"],"region":"505","phone":["505-8001877"]},"likes":[],"memberSince":"2010-12-13"} -{"name":{"first":"Berry","last":"Oun"},"gender":"male","birthday":"1941-02-23","contact":{"address":{"street":"3 290th St","zip":"06804","city":"Brookfield","state":"CT"},"email":["berry.oun@nosql-matters.org","oun@nosql-matters.org","berry@nosql-matters.org"],"region":"203","phone":["203-3240833"]},"likes":["chatting"],"memberSince":"2009-12-18"} -{"name":{"first":"Verna","last":"Allman"},"gender":"female","birthday":"1987-07-19","contact":{"address":{"street":"11 2nd Ave","zip":"65570","city":"Success","state":"MO"},"email":["verna.allman@nosql-matters.org"],"region":"417","phone":[]},"likes":["chess","checkers"],"memberSince":"2009-09-14"} -{"name":{"first":"Alexis","last":"Clingerman"},"gender":"male","birthday":"1977-04-23","contact":{"address":{"street":"2 Gasoline Ln","zip":"58230","city":"Finley","state":"ND"},"email":["alexis.clingerman@nosql-matters.org"],"region":"701","phone":["701-5240249"]},"likes":["shopping"],"memberSince":"2010-03-01"} -{"name":{"first":"Manuel","last":"Popek"},"gender":"male","birthday":"1991-05-01","contact":{"address":{"street":"13 13th Ave","zip":"62818","city":"Browns","state":"IL"},"email":["manuel.popek@nosql-matters.org"],"region":"618","phone":["618-3364875"]},"likes":[],"memberSince":"2010-10-28"} -{"name":{"first":"Livia","last":"Marteney"},"gender":"female","birthday":"1940-07-23","contact":{"address":{"street":"16 Vermont Ave","zip":"45299","city":"Cincinnati","state":"OH"},"email":["livia.marteney@nosql-matters.org"],"region":"513","phone":["513-4138347","513-1731072"]},"likes":["chess"],"memberSince":"2009-10-03"} -{"name":{"first":"Tressie","last":"Dunsworth"},"gender":"female","birthday":"1969-06-30","contact":{"address":{"street":"16 Pratt Run","zip":"56547","city":"Glyndon","state":"MN"},"email":["tressie.dunsworth@nosql-matters.org","tressie@nosql-matters.org"],"region":"218","phone":["218-7774784"]},"likes":[],"memberSince":"2007-10-04"} -{"name":{"first":"Maira","last":"Beatrice"},"gender":"female","birthday":"1963-07-25","contact":{"address":{"street":"5 Beechwood St","zip":"98512","city":"Olympia","state":"WA"},"email":["maira.beatrice@nosql-matters.org","beatrice@nosql-matters.org"],"region":"360","phone":[]},"likes":["running","chatting","reading","driving"],"memberSince":"2010-11-28"} -{"name":{"first":"Rosita","last":"Bowlet"},"gender":"female","birthday":"1953-09-21","contact":{"address":{"street":"20 Last chance St","zip":"63118","city":"Saint Louis","state":"MO"},"email":["rosita.bowlet@nosql-matters.org","rosita@nosql-matters.org"],"region":"314","phone":["314-1003659","314-4179961"]},"likes":["travelling","ironing"],"memberSince":"2007-07-21"} -{"name":{"first":"Shane","last":"Bergquist"},"gender":"male","birthday":"1968-05-10","contact":{"address":{"street":"16 Roberts Rd","zip":"63780","city":"Scott City","state":"MO"},"email":["shane.bergquist@nosql-matters.org","shane@nosql-matters.org"],"region":"573","phone":["573-4542916","573-1413600"]},"likes":["shopping","chess"],"memberSince":"2009-09-05"} -{"name":{"first":"Elin","last":"Bellomo"},"gender":"female","birthday":"1960-05-27","contact":{"address":{"street":"3 Euclid Loop","zip":"33525","city":"Dade City","state":"FL"},"email":["elin.bellomo@nosql-matters.org"],"region":"352","phone":[]},"likes":["snowboarding"],"memberSince":"2007-06-22"} -{"name":{"first":"Gaylord","last":"Parmley"},"gender":"male","birthday":"1954-08-16","contact":{"address":{"street":"15 10th Ave","zip":"88026","city":"Santa Clara","state":"NM"},"email":["gaylord.parmley@nosql-matters.org"],"region":"505","phone":["505-8286882","505-4657109"]},"likes":[],"memberSince":"2009-06-15"} -{"name":{"first":"Gene","last":"Wipf"},"gender":"male","birthday":"1944-11-16","contact":{"address":{"street":"4 Commercial Dr","zip":"30499","city":"Reidsville","state":"GA"},"email":["gene.wipf@nosql-matters.org"],"region":"912","phone":["912-1378873","912-8948895"]},"likes":["swimming"],"memberSince":"2009-06-22"} -{"name":{"first":"Rosana","last":"Migdal"},"gender":"female","birthday":"1952-06-10","contact":{"address":{"street":"20 Ontario Blvd","zip":"33030","city":"Homestead","state":"FL"},"email":["rosana.migdal@nosql-matters.org","rosana@nosql-matters.org"],"region":"305","phone":["305-4741055"]},"likes":[],"memberSince":"2009-11-15"} -{"name":{"first":"Loyd","last":"Kotterna"},"gender":"male","birthday":"1946-01-30","contact":{"address":{"street":"7 Kalorama Aly","zip":"29229","city":"Columbia","state":"SC"},"email":["loyd.kotterna@nosql-matters.org","loyd@nosql-matters.org"],"region":"803","phone":[]},"likes":["reading","snowboarding"],"memberSince":"2010-12-06"} -{"name":{"first":"Kent","last":"Beckerle"},"gender":"male","birthday":"1989-03-03","contact":{"address":{"street":"6 Center Ln","zip":"71249","city":"Jigger","state":"LA"},"email":["kent.beckerle@nosql-matters.org","kent@nosql-matters.org"],"region":"318","phone":["318-5767368","318-4169942"]},"likes":["running","chess"],"memberSince":"2008-11-13"} -{"name":{"first":"Elizabet","last":"Woltman"},"gender":"female","birthday":"1970-12-11","contact":{"address":{"street":"10 Lanier Cir","zip":"98405","city":"Tacoma","state":"WA"},"email":["elizabet.woltman@nosql-matters.org","elizabet@nosql-matters.org"],"region":"253","phone":["253-3386472"]},"likes":["running"],"memberSince":"2011-10-10"} -{"name":{"first":"Eloy","last":"Daigle"},"gender":"male","birthday":"1945-08-15","contact":{"address":{"street":"2 Crescent Run","zip":"48655","city":"Saint Charles","state":"MI"},"email":["eloy.daigle@nosql-matters.org","eloy@nosql-matters.org"],"region":"517","phone":[]},"likes":["chess"],"memberSince":"2010-11-17"} -{"name":{"first":"Macie","last":"Cronholm"},"gender":"female","birthday":"1991-04-10","contact":{"address":{"street":"17 6th St","zip":"18331","city":"Gilbert","state":"PA"},"email":["macie.cronholm@nosql-matters.org"],"region":"610","phone":["610-2449531","610-4657907"]},"likes":["travelling","skiing"],"memberSince":"2009-02-13"} -{"name":{"first":"Rex","last":"Fucile"},"gender":"male","birthday":"1948-04-05","contact":{"address":{"street":"4 115th St","zip":"38054","city":"Millington","state":"TN"},"email":["rex.fucile@nosql-matters.org"],"region":"901","phone":["901-2437622"]},"likes":["chess"],"memberSince":"2008-12-21"} -{"name":{"first":"Florencio","last":"Daul"},"gender":"male","birthday":"1989-06-18","contact":{"address":{"street":"21 Price Blvd","zip":"03851","city":"Milton","state":"NH"},"email":["florencio.daul@nosql-matters.org","daul@nosql-matters.org"],"region":"603","phone":["603-4817201"]},"likes":["checkers"],"memberSince":"2011-01-04"} -{"name":{"first":"Rusty","last":"Maddison"},"gender":"male","birthday":"1980-08-28","contact":{"address":{"street":"14 Neumann Ct","zip":"01902","city":"Lynn","state":"MA"},"email":["rusty.maddison@nosql-matters.org","maddison@nosql-matters.org"],"region":"781","phone":[]},"likes":["skiing"],"memberSince":"2011-06-24"} -{"name":{"first":"Cicely","last":"Rosengren"},"gender":"female","birthday":"1982-12-05","contact":{"address":{"street":"20 21st Ave","zip":"63053","city":"Kimmswick","state":"MO"},"email":["cicely.rosengren@nosql-matters.org"],"region":"636","phone":["636-1175920"]},"likes":["climbing"],"memberSince":"2009-10-18"} -{"name":{"first":"Britni","last":"Ferreyra"},"gender":"female","birthday":"1985-04-06","contact":{"address":{"street":"8 River Run","zip":"13338","city":"Forestport","state":"NY"},"email":["britni.ferreyra@nosql-matters.org","ferreyra@nosql-matters.org","britni@nosql-matters.org"],"region":"315","phone":[]},"likes":["chess"],"memberSince":"2008-01-13"} -{"name":{"first":"Lora","last":"Brondyke"},"gender":"female","birthday":"1958-05-05","contact":{"address":{"street":"19 Summit Ct","zip":"44094","city":"Willoughby","state":"OH"},"email":["lora.brondyke@nosql-matters.org","lora@nosql-matters.org"],"region":"440","phone":["440-2883201"]},"likes":[],"memberSince":"2011-05-04"} -{"name":{"first":"Mammie","last":"Blomquist"},"gender":"female","birthday":"1974-09-18","contact":{"address":{"street":"22 Mintwood St","zip":"54489","city":"Vesper","state":"WI"},"email":["mammie.blomquist@nosql-matters.org","blomquist@nosql-matters.org"],"region":"715","phone":["715-9687169","715-9147678"]},"likes":[],"memberSince":"2010-05-11"} -{"name":{"first":"Jere","last":"Bushrod"},"gender":"male","birthday":"1948-12-17","contact":{"address":{"street":"18 Pennsylvania Cir","zip":"34113","city":"Naples","state":"FL"},"email":["jere.bushrod@nosql-matters.org"],"region":"941","phone":["941-4514067"]},"likes":["skiing"],"memberSince":"2010-12-29"} -{"name":{"first":"Valery","last":"Chiotti"},"gender":"female","birthday":"1986-03-22","contact":{"address":{"street":"11 318th St","zip":"15415","city":"Brier Hill","state":"PA"},"email":["valery.chiotti@nosql-matters.org","chiotti@nosql-matters.org","valery@nosql-matters.org"],"region":"724","phone":["724-9027053"]},"likes":[],"memberSince":"2009-08-27"} -{"name":{"first":"Cory","last":"Pope"},"gender":"male","birthday":"1967-06-18","contact":{"address":{"street":"22 Gasoline Dr","zip":"99117","city":"Creston","state":"WA"},"email":["cory.pope@nosql-matters.org","cory@nosql-matters.org"],"region":"509","phone":["509-4542935"]},"likes":["biking","climbing"],"memberSince":"2009-02-08"} -{"name":{"first":"Amie","last":"Youngren"},"gender":"female","birthday":"1985-11-23","contact":{"address":{"street":"15 Ottawa Dr","zip":"99640","city":"Nondalton","state":"AK"},"email":["amie.youngren@nosql-matters.org","youngren@nosql-matters.org"],"region":"907","phone":["907-0955220"]},"likes":[],"memberSince":"2012-01-10"} -{"name":{"first":"Irena","last":"Rauelo"},"gender":"female","birthday":"1952-01-17","contact":{"address":{"street":"7 Laramie Dr","zip":"81626","city":"Craig","state":"CO"},"email":["irena.rauelo@nosql-matters.org","rauelo@nosql-matters.org"],"region":"970","phone":["970-0313148"]},"likes":[],"memberSince":"2008-11-29"} -{"name":{"first":"Yajaira","last":"Chartraw"},"gender":"female","birthday":"1992-09-26","contact":{"address":{"street":"19 Fraser Blvd","zip":"35064","city":"Fairfield","state":"AL"},"email":["yajaira.chartraw@nosql-matters.org","yajaira@nosql-matters.org"],"region":"205","phone":[]},"likes":["biking","skiing"],"memberSince":"2011-03-06"} -{"name":{"first":"Corey","last":"Adjutant"},"gender":"male","birthday":"1965-03-04","contact":{"address":{"street":"14 13th Ave","zip":"62631","city":"Concord","state":"IL"},"email":["corey.adjutant@nosql-matters.org","adjutant@nosql-matters.org"],"region":"217","phone":["217-9791092"]},"likes":[],"memberSince":"2007-11-03"} -{"name":{"first":"Cecile","last":"Goodfellow"},"gender":"female","birthday":"1974-10-13","contact":{"address":{"street":"11 Fraser Way","zip":"10119","city":"New York","state":"NY"},"email":["cecile.goodfellow@nosql-matters.org"],"region":"212","phone":[]},"likes":[],"memberSince":"2010-06-19"} -{"name":{"first":"Oneida","last":"Golebiewski"},"gender":"female","birthday":"1981-09-22","contact":{"address":{"street":"19 Morningside Blvd","zip":"38450","city":"Collinwood","state":"TN"},"email":["oneida.golebiewski@nosql-matters.org"],"region":"931","phone":["931-5712229","931-3685578"]},"likes":["running","chatting","reading"],"memberSince":"2010-08-28"} -{"name":{"first":"Hershel","last":"Massed"},"gender":"male","birthday":"1946-09-24","contact":{"address":{"street":"3 6th Ave","zip":"75226","city":"Dallas","state":"TX"},"email":["hershel.massed@nosql-matters.org","hershel@nosql-matters.org"],"region":"214","phone":[]},"likes":["chess","travelling","ironing"],"memberSince":"2007-09-11"} -{"name":{"first":"Argelia","last":"Kiracofe"},"gender":"female","birthday":"1967-04-29","contact":{"address":{"street":"10 Fuller Ct","zip":"25707","city":"Huntington","state":"WV"},"email":["argelia.kiracofe@nosql-matters.org"],"region":"304","phone":["304-5762198","304-5709459"]},"likes":["reading"],"memberSince":"2011-02-08"} -{"name":{"first":"Buford","last":"Carrasquillo"},"gender":"male","birthday":"1942-08-12","contact":{"address":{"street":"18 Gasoline Hwy","zip":"50853","city":"Massena","state":"IA"},"email":["buford.carrasquillo@nosql-matters.org","carrasquillo@nosql-matters.org"],"region":"712","phone":["712-6274782"]},"likes":[],"memberSince":"2008-07-30"} -{"name":{"first":"Eugenio","last":"Collons"},"gender":"male","birthday":"1982-01-15","contact":{"address":{"street":"8 Deer Way","zip":"40356","city":"Nicholasville","state":"KY"},"email":["eugenio.collons@nosql-matters.org","collons@nosql-matters.org"],"region":"606","phone":["606-3399797"]},"likes":["shopping"],"memberSince":"2012-01-25"} -{"name":{"first":"Angelo","last":"Schulman"},"gender":"male","birthday":"1940-06-16","contact":{"address":{"street":"14 8th Ave","zip":"25256","city":"Linden","state":"WV"},"email":["angelo.schulman@nosql-matters.org","angelo@nosql-matters.org"],"region":"304","phone":[]},"likes":["biking"],"memberSince":"2007-10-10"} -{"name":{"first":"Charlesetta","last":"Spradling"},"gender":"female","birthday":"1986-10-30","contact":{"address":{"street":"7 Riverview Rd","zip":"20051","city":"Washington","state":"DC"},"email":["charlesetta.spradling@nosql-matters.org","spradling@nosql-matters.org"],"region":"202","phone":[]},"likes":["travelling"],"memberSince":"2008-08-08"} -{"name":{"first":"Marcus","last":"Detommaso"},"gender":"male","birthday":"1950-10-17","contact":{"address":{"street":"4 Morningside Dr","zip":"14874","city":"Pulteney","state":"NY"},"email":["marcus.detommaso@nosql-matters.org"],"region":"607","phone":["607-2975059"]},"likes":[],"memberSince":"2012-01-31"} -{"name":{"first":"Lester","last":"Dueck"},"gender":"female","birthday":"1963-09-21","contact":{"address":{"street":"10 Center Blvd","zip":"18963","city":"Solebury","state":"PA"},"email":["lester.dueck@nosql-matters.org"],"region":"215","phone":["215-1623930"]},"likes":["checkers"],"memberSince":"2010-06-12"} -{"name":{"first":"Leonardo","last":"Lowenstein"},"gender":"male","birthday":"1988-06-02","contact":{"address":{"street":"2 Ontario Blvd","zip":"23414","city":"Nelsonia","state":"VA"},"email":["leonardo.lowenstein@nosql-matters.org"],"region":"757","phone":[]},"likes":["reading"],"memberSince":"2008-08-07"} -{"name":{"first":"Mack","last":"Connerton"},"gender":"male","birthday":"1985-12-20","contact":{"address":{"street":"16 Country club Dr","zip":"80125","city":"Littleton","state":"CO"},"email":["mack.connerton@nosql-matters.org"],"region":"303","phone":["303-2835541"]},"likes":["checkers"],"memberSince":"2007-09-07"} -{"name":{"first":"Emmanuel","last":"Cowgill"},"gender":"male","birthday":"1979-01-15","contact":{"address":{"street":"18 Pratt Blvd","zip":"03224","city":"Canterbury","state":"NH"},"email":["emmanuel.cowgill@nosql-matters.org"],"region":"603","phone":["603-7173028","603-5425790"]},"likes":[],"memberSince":"2010-08-21"} -{"name":{"first":"Porfirio","last":"Gaston"},"gender":"male","birthday":"1965-10-17","contact":{"address":{"street":"2 Calvert Aly","zip":"90094","city":"Los Angeles","state":"CA"},"email":["porfirio.gaston@nosql-matters.org","gaston@nosql-matters.org"],"region":"310","phone":["310-0137165"]},"likes":["biking","shopping"],"memberSince":"2007-08-25"} -{"name":{"first":"David","last":"Devitt"},"gender":"male","birthday":"1944-08-03","contact":{"address":{"street":"16 Kalorama St","zip":"71106","city":"Shreveport","state":"LA"},"email":["david.devitt@nosql-matters.org"],"region":"318","phone":["318-9108904"]},"likes":["skiing","ironing"],"memberSince":"2010-02-23"} -{"name":{"first":"Katlyn","last":"Nale"},"gender":"female","birthday":"1941-07-11","contact":{"address":{"street":"10 Champlain Run","zip":"12959","city":"Mooers Forks","state":"NY"},"email":["katlyn.nale@nosql-matters.org"],"region":"518","phone":["518-9898318"]},"likes":["reading"],"memberSince":"2007-08-14"} -{"name":{"first":"Chelsey","last":"Sinning"},"gender":"female","birthday":"1974-01-02","contact":{"address":{"street":"12 Clydesdale St","zip":"77563","city":"Hitchcock","state":"TX"},"email":["chelsey.sinning@nosql-matters.org"],"region":"409","phone":["409-8672346"]},"likes":["climbing"],"memberSince":"2010-09-09"} -{"name":{"first":"Juliette","last":"Samiec"},"gender":"female","birthday":"1966-07-15","contact":{"address":{"street":"10 Santa fe Loop","zip":"14703","city":"Jamestown","state":"NY"},"email":["juliette.samiec@nosql-matters.org"],"region":"716","phone":[]},"likes":["shopping","checkers"],"memberSince":"2007-08-06"} -{"name":{"first":"Lorie","last":"Rax"},"gender":"female","birthday":"1990-04-03","contact":{"address":{"street":"16 Florida St","zip":"25645","city":"Stirrat","state":"WV"},"email":["lorie.rax@nosql-matters.org","rax@nosql-matters.org"],"region":"304","phone":["304-1775735"]},"likes":[],"memberSince":"2010-01-17"} -{"name":{"first":"Aurelio","last":"Klonowski"},"gender":"male","birthday":"1989-02-27","contact":{"address":{"street":"13 Fraser Ct","zip":"10975","city":"Southfields","state":"NY"},"email":["aurelio.klonowski@nosql-matters.org"],"region":"914","phone":["914-9563972","914-2677408"]},"likes":["swimming","boxing","driving","skiing"],"memberSince":"2009-01-21"} -{"name":{"first":"Fernando","last":"Bhatti"},"gender":"male","birthday":"1944-05-07","contact":{"address":{"street":"2 Mound Ln","zip":"64125","city":"Kansas City","state":"MO"},"email":["fernando.bhatti@nosql-matters.org","bhatti@nosql-matters.org"],"region":"816","phone":["816-3193962","816-0652848"]},"likes":[],"memberSince":"2011-01-22"} -{"name":{"first":"Shelby","last":"Flether"},"gender":"male","birthday":"1986-04-09","contact":{"address":{"street":"2 9th St","zip":"72042","city":"De Witt","state":"AR"},"email":["shelby.flether@nosql-matters.org"],"region":"870","phone":["870-0766835"]},"likes":["checkers","reading","skiing"],"memberSince":"2009-03-05"} -{"name":{"first":"Valentine","last":"Wittmer"},"gender":"male","birthday":"1972-11-10","contact":{"address":{"street":"5 Morningside Dr","zip":"21020","city":"Boring","state":"MD"},"email":["valentine.wittmer@nosql-matters.org","valentine@nosql-matters.org"],"region":"410","phone":["410-5197313","410-6924174"]},"likes":[],"memberSince":"2008-08-06"} -{"name":{"first":"Tracy","last":"Fontenot"},"gender":"male","birthday":"1957-12-23","contact":{"address":{"street":"3 19th St","zip":"34994","city":"Stuart","state":"FL"},"email":["tracy.fontenot@nosql-matters.org"],"region":"561","phone":["561-2822403","561-0464247"]},"likes":["chatting"],"memberSince":"2011-03-14"} -{"name":{"first":"Annalee","last":"Bronder"},"gender":"female","birthday":"1990-04-10","contact":{"address":{"street":"9 Swann Way","zip":"64668","city":"Norborne","state":"MO"},"email":["annalee.bronder@nosql-matters.org","bronder@nosql-matters.org"],"region":"660","phone":["660-9353518"]},"likes":["running"],"memberSince":"2009-09-02"} -{"name":{"first":"Monica","last":"Exel"},"gender":"female","birthday":"1940-12-31","contact":{"address":{"street":"12 Neosho Pl","zip":"52004","city":"Dubuque","state":"IA"},"email":["monica.exel@nosql-matters.org"],"region":"319","phone":["319-3029851","319-2185440"]},"likes":["chess","climbing"],"memberSince":"2009-03-13"} -{"name":{"first":"Rudolph","last":"Marcolina"},"gender":"male","birthday":"1963-08-22","contact":{"address":{"street":"15 Calvert Ct","zip":"93263","city":"Shafter","state":"CA"},"email":["rudolph.marcolina@nosql-matters.org","marcolina@nosql-matters.org"],"region":"661","phone":["661-5186855"]},"likes":["chess","boxing","driving","ironing"],"memberSince":"2010-10-04"} -{"name":{"first":"Jeane","last":"Lykens"},"gender":"female","birthday":"1969-01-22","contact":{"address":{"street":"16 Oak Ct","zip":"75928","city":"Bon Wier","state":"TX"},"email":["jeane.lykens@nosql-matters.org"],"region":"409","phone":["409-2264272"]},"likes":["swimming"],"memberSince":"2009-03-03"} -{"name":{"first":"Mason","last":"Kremmel"},"gender":"male","birthday":"1956-03-04","contact":{"address":{"street":"4 Wallick Blvd","zip":"19538","city":"Maxatawny","state":"PA"},"email":["mason.kremmel@nosql-matters.org","mason@nosql-matters.org"],"region":"610","phone":["610-0903543","610-6354815"]},"likes":["driving"],"memberSince":"2008-05-15"} -{"name":{"first":"Keenan","last":"Flem"},"gender":"male","birthday":"1992-03-13","contact":{"address":{"street":"8 Swann Dr","zip":"63169","city":"Saint Louis","state":"MO"},"email":["keenan.flem@nosql-matters.org"],"region":"314","phone":["314-1255480"]},"likes":[],"memberSince":"2011-07-22"} -{"name":{"first":"Roslyn","last":"Critchlow"},"gender":"female","birthday":"1964-07-21","contact":{"address":{"street":"17 Morningside Rd","zip":"46781","city":"Poneto","state":"IN"},"email":["roslyn.critchlow@nosql-matters.org","roslyn@nosql-matters.org"],"region":"219","phone":["219-2646066"]},"likes":["shopping","climbing"],"memberSince":"2009-11-18"} -{"name":{"first":"Wally","last":"Brening"},"gender":"male","birthday":"1964-01-29","contact":{"address":{"street":"5 4th St","zip":"70004","city":"Metairie","state":"LA"},"email":["wally.brening@nosql-matters.org"],"region":"504","phone":["504-1902114"]},"likes":["checkers","skiing"],"memberSince":"2011-03-19"} -{"name":{"first":"Raina","last":"Glay"},"gender":"female","birthday":"1947-08-30","contact":{"address":{"street":"8 16th St","zip":"66535","city":"Saint George","state":"KS"},"email":["raina.glay@nosql-matters.org","raina@nosql-matters.org"],"region":"785","phone":["785-2158700"]},"likes":[],"memberSince":"2012-03-14"} -{"name":{"first":"Lloyd","last":"Shrader"},"gender":"male","birthday":"1969-06-19","contact":{"address":{"street":"1 Woodson Dr","zip":"78228","city":"San Antonio","state":"TX"},"email":["lloyd.shrader@nosql-matters.org","shrader@nosql-matters.org"],"region":"210","phone":["210-1569638"]},"likes":["climbing"],"memberSince":"2010-11-10"} -{"name":{"first":"Tanesha","last":"Liptrap"},"gender":"female","birthday":"1959-03-03","contact":{"address":{"street":"18 18th St","zip":"35593","city":"Vina","state":"AL"},"email":["tanesha.liptrap@nosql-matters.org"],"region":"256","phone":["256-4905982"]},"likes":["reading"],"memberSince":"2010-11-08"} -{"name":{"first":"Julene","last":"Streit"},"gender":"female","birthday":"1958-06-12","contact":{"address":{"street":"1 18th Ave","zip":"80534","city":"Johnstown","state":"CO"},"email":["julene.streit@nosql-matters.org"],"region":"970","phone":["970-7303785"]},"likes":["biking","ironing"],"memberSince":"2008-04-21"} -{"name":{"first":"Oliva","last":"Lorenzano"},"gender":"female","birthday":"1981-04-09","contact":{"address":{"street":"16 Laramie Blvd","zip":"72761","city":"Siloam Springs","state":"AR"},"email":["oliva.lorenzano@nosql-matters.org","lorenzano@nosql-matters.org"],"region":"501","phone":["501-2640807","501-2210539"]},"likes":["driving"],"memberSince":"2009-08-28"} -{"name":{"first":"Bev","last":"Delfino"},"gender":"female","birthday":"1952-01-30","contact":{"address":{"street":"17 10th St","zip":"33867","city":"River Ranch","state":"FL"},"email":["bev.delfino@nosql-matters.org","delfino@nosql-matters.org"],"region":"863","phone":["863-8439861"]},"likes":["snowboarding","driving","skiing"],"memberSince":"2012-01-25"} -{"name":{"first":"Quintin","last":"Hiefnar"},"gender":"male","birthday":"1948-07-26","contact":{"address":{"street":"3 Mozart Hwy","zip":"68322","city":"Bruning","state":"NE"},"email":["quintin.hiefnar@nosql-matters.org"],"region":"402","phone":["402-9369019","402-1467784"]},"likes":["climbing"],"memberSince":"2008-08-22"} -{"name":{"first":"Salvador","last":"Coxwell"},"gender":"male","birthday":"1941-04-06","contact":{"address":{"street":"19 Country club Blvd","zip":"49456","city":"Spring Lake","state":"MI"},"email":["salvador.coxwell@nosql-matters.org"],"region":"616","phone":["616-7661909"]},"likes":["chess"],"memberSince":"2012-05-16"} -{"name":{"first":"Elsie","last":"Hirth"},"gender":"female","birthday":"1979-03-29","contact":{"address":{"street":"12 Park Ln","zip":"28563","city":"New Bern","state":"NC"},"email":["elsie.hirth@nosql-matters.org","hirth@nosql-matters.org"],"region":"252","phone":[]},"likes":["reading"],"memberSince":"2008-02-06"} -{"name":{"first":"Allan","last":"Gierut"},"gender":"male","birthday":"1993-04-01","contact":{"address":{"street":"5 Laramie Rd","zip":"55797","city":"Wrenshall","state":"MN"},"email":["allan.gierut@nosql-matters.org","gierut@nosql-matters.org","allan@nosql-matters.org"],"region":"218","phone":["218-9653305"]},"likes":["chess","ironing"],"memberSince":"2008-07-23"} -{"name":{"first":"Maryanne","last":"Eastwood"},"gender":"female","birthday":"1990-10-12","contact":{"address":{"street":"9 19th St","zip":"83866","city":"Santa","state":"ID"},"email":["maryanne.eastwood@nosql-matters.org"],"region":"208","phone":["208-1078381"]},"likes":[],"memberSince":"2008-08-11"} -{"name":{"first":"Mertie","last":"Raheja"},"gender":"female","birthday":"1969-09-01","contact":{"address":{"street":"11 Pratt Run","zip":"48028","city":"Harsens Island","state":"MI"},"email":["mertie.raheja@nosql-matters.org","raheja@nosql-matters.org","mertie@nosql-matters.org"],"region":"810","phone":[]},"likes":["skiing"],"memberSince":"2011-01-21"} -{"name":{"first":"Deon","last":"Molenda"},"gender":"male","birthday":"1970-11-02","contact":{"address":{"street":"9 Last chance Loop","zip":"83876","city":"Worley","state":"ID"},"email":["deon.molenda@nosql-matters.org"],"region":"208","phone":["208-3094135"]},"likes":["ironing"],"memberSince":"2011-02-12"} -{"name":{"first":"Kalyn","last":"Zavatson"},"gender":"female","birthday":"1954-03-13","contact":{"address":{"street":"3 Vermont Run","zip":"15060","city":"Midway","state":"PA"},"email":["kalyn.zavatson@nosql-matters.org"],"region":"724","phone":["724-5059642","724-0467535"]},"likes":["chatting"],"memberSince":"2012-01-22"} -{"name":{"first":"Lashaunda","last":"Massanet"},"gender":"female","birthday":"1959-06-13","contact":{"address":{"street":"14 242nd Ave","zip":"05159","city":"Westminster Station","state":"VT"},"email":["lashaunda.massanet@nosql-matters.org","massanet@nosql-matters.org"],"region":"802","phone":["802-0748093","802-4580658"]},"likes":["shopping","boxing","driving","ironing"],"memberSince":"2010-03-07"} -{"name":{"first":"Anisa","last":"Swatt"},"gender":"female","birthday":"1993-01-31","contact":{"address":{"street":"12 Ottawa Cir","zip":"87931","city":"Caballo","state":"NM"},"email":["anisa.swatt@nosql-matters.org"],"region":"505","phone":["505-8845510","505-7263865"]},"likes":[],"memberSince":"2008-02-08"} -{"name":{"first":"Ardell","last":"Serpa"},"gender":"female","birthday":"1956-08-22","contact":{"address":{"street":"14 Ottawa Pl","zip":"89043","city":"Pioche","state":"NV"},"email":["ardell.serpa@nosql-matters.org"],"region":"775","phone":["775-0527220","775-5467142"]},"likes":["driving"],"memberSince":"2010-03-13"} -{"name":{"first":"Winfred","last":"Oregan"},"gender":"male","birthday":"1949-05-20","contact":{"address":{"street":"12 Vermont Ct","zip":"99921","city":"Craig","state":"AK"},"email":["winfred.oregan@nosql-matters.org","winfred@nosql-matters.org"],"region":"907","phone":[]},"likes":["running"],"memberSince":"2010-07-30"} -{"name":{"first":"Robert","last":"Miyasaka"},"gender":"male","birthday":"1971-08-07","contact":{"address":{"street":"18 198th St","zip":"10176","city":"New York","state":"NY"},"email":["robert.miyasaka@nosql-matters.org"],"region":"212","phone":[]},"likes":["biking"],"memberSince":"2008-08-16"} -{"name":{"first":"Josefa","last":"Chwieroth"},"gender":"female","birthday":"1977-12-26","contact":{"address":{"street":"17 Chapin Hwy","zip":"99588","city":"Glennallen","state":"AK"},"email":["josefa.chwieroth@nosql-matters.org","josefa@nosql-matters.org"],"region":"907","phone":[]},"likes":["chess","reading"],"memberSince":"2007-09-29"} -{"name":{"first":"Brenda","last":"Rackers"},"gender":"female","birthday":"1966-08-20","contact":{"address":{"street":"2 Liberty Ct","zip":"36302","city":"Dothan","state":"AL"},"email":["brenda.rackers@nosql-matters.org","brenda@nosql-matters.org"],"region":"334","phone":["334-3761647"]},"likes":["chess","checkers"],"memberSince":"2011-03-09"} -{"name":{"first":"Jackelyn","last":"Phillippi"},"gender":"female","birthday":"1978-07-26","contact":{"address":{"street":"7 Roberts Hwy","zip":"30289","city":"Turin","state":"GA"},"email":["jackelyn.phillippi@nosql-matters.org","phillippi@nosql-matters.org"],"region":"770","phone":["770-8365148"]},"likes":["checkers","travelling"],"memberSince":"2008-04-17"} -{"name":{"first":"Eldon","last":"Badley"},"gender":"male","birthday":"1957-10-31","contact":{"address":{"street":"6 Neumann Loop","zip":"75230","city":"Dallas","state":"TX"},"email":["eldon.badley@nosql-matters.org","badley@nosql-matters.org","eldon@nosql-matters.org"],"region":"214","phone":["214-3401455"]},"likes":["running"],"memberSince":"2010-09-23"} -{"name":{"first":"Twila","last":"Maglio"},"gender":"female","birthday":"1994-02-08","contact":{"address":{"street":"7 Wyoming Ct","zip":"50104","city":"Gibson","state":"IA"},"email":["twila.maglio@nosql-matters.org"],"region":"515","phone":["515-3929881"]},"likes":["running","reading","snowboarding","travelling"],"memberSince":"2008-10-03"} -{"name":{"first":"Olen","last":"Alarie"},"gender":"male","birthday":"1981-02-01","contact":{"address":{"street":"22 Beekman Pl","zip":"92266","city":"Palo Verde","state":"CA"},"email":["olen.alarie@nosql-matters.org"],"region":"760","phone":["760-2717335","760-7432608"]},"likes":["ironing"],"memberSince":"2010-10-17"} -{"name":{"first":"Ned","last":"Liston"},"gender":"male","birthday":"1971-12-17","contact":{"address":{"street":"10 334th St","zip":"91355","city":"Valencia","state":"CA"},"email":["ned.liston@nosql-matters.org"],"region":"661","phone":["661-6198032"]},"likes":["biking","checkers","climbing"],"memberSince":"2011-05-02"} -{"name":{"first":"Carmella","last":"Requa"},"gender":"female","birthday":"1951-09-18","contact":{"address":{"street":"15 John Aly","zip":"50301","city":"Des Moines","state":"IA"},"email":["carmella.requa@nosql-matters.org","requa@nosql-matters.org"],"region":"515","phone":["515-7891387"]},"likes":["checkers","driving"],"memberSince":"2011-12-23"} -{"name":{"first":"Keneth","last":"Giovino"},"gender":"male","birthday":"1964-10-09","contact":{"address":{"street":"8 16th St","zip":"28111","city":"Monroe","state":"NC"},"email":["keneth.giovino@nosql-matters.org","keneth@nosql-matters.org"],"region":"704","phone":[]},"likes":["boxing"],"memberSince":"2008-10-02"} -{"name":{"first":"Vicente","last":"Scarpati"},"gender":"male","birthday":"1943-01-30","contact":{"address":{"street":"6 115th St","zip":"46939","city":"Kewanna","state":"IN"},"email":["vicente.scarpati@nosql-matters.org","scarpati@nosql-matters.org"],"region":"219","phone":[]},"likes":["biking","chess"],"memberSince":"2011-06-18"} -{"name":{"first":"Spencer","last":"Seeton"},"gender":"male","birthday":"1954-07-21","contact":{"address":{"street":"21 Woodson Dr","zip":"72130","city":"Prim","state":"AR"},"email":["spencer.seeton@nosql-matters.org"],"region":"870","phone":[]},"likes":["checkers","snowboarding"],"memberSince":"2007-07-07"} -{"name":{"first":"Thresa","last":"Handt"},"gender":"female","birthday":"1956-07-31","contact":{"address":{"street":"2 Crowell Loop","zip":"50635","city":"Gladbrook","state":"IA"},"email":["thresa.handt@nosql-matters.org"],"region":"515","phone":["515-0652693","515-5317662"]},"likes":[],"memberSince":"2012-05-11"} -{"name":{"first":"Daniel","last":"Asa"},"gender":"male","birthday":"1941-10-31","contact":{"address":{"street":"2 Liberty Blvd","zip":"02839","city":"Mapleville","state":"RI"},"email":["daniel.asa@nosql-matters.org"],"region":"401","phone":["401-2489983"]},"likes":["swimming","reading"],"memberSince":"2010-06-05"} -{"name":{"first":"Conrad","last":"Patik"},"gender":"male","birthday":"1966-02-16","contact":{"address":{"street":"9 Branchton Dr","zip":"27863","city":"Pikeville","state":"NC"},"email":["conrad.patik@nosql-matters.org","patik@nosql-matters.org"],"region":"919","phone":["919-9468744"]},"likes":["ironing"],"memberSince":"2010-06-11"} -{"name":{"first":"Amanda","last":"Runnells"},"gender":"female","birthday":"1963-03-27","contact":{"address":{"street":"3 3rd Ave","zip":"65613","city":"Bolivar","state":"MO"},"email":["amanda.runnells@nosql-matters.org","amanda@nosql-matters.org"],"region":"417","phone":["417-9033791"]},"likes":["checkers","reading"],"memberSince":"2007-09-10"} -{"name":{"first":"Rodney","last":"Siedner"},"gender":"male","birthday":"1955-05-04","contact":{"address":{"street":"12 John Ave","zip":"48224","city":"Detroit","state":"MI"},"email":["rodney.siedner@nosql-matters.org","rodney@nosql-matters.org"],"region":"313","phone":["313-8808458"]},"likes":[],"memberSince":"2009-10-05"} -{"name":{"first":"Royce","last":"Isbrecht"},"gender":"male","birthday":"1981-10-01","contact":{"address":{"street":"11 Girard St","zip":"28119","city":"Morven","state":"NC"},"email":["royce.isbrecht@nosql-matters.org"],"region":"704","phone":["704-3404889","704-6116832"]},"likes":["driving"],"memberSince":"2011-04-20"} -{"name":{"first":"Kera","last":"Tello"},"gender":"female","birthday":"1941-09-22","contact":{"address":{"street":"21 Ashmead Loop","zip":"17567","city":"Reamstown","state":"PA"},"email":["kera.tello@nosql-matters.org","tello@nosql-matters.org"],"region":"717","phone":[]},"likes":[],"memberSince":"2011-11-13"} -{"name":{"first":"Corinne","last":"Dibrino"},"gender":"female","birthday":"1969-01-18","contact":{"address":{"street":"11 Oak St","zip":"25827","city":"Crab Orchard","state":"WV"},"email":["corinne.dibrino@nosql-matters.org","dibrino@nosql-matters.org","corinne@nosql-matters.org"],"region":"304","phone":["304-5123136"]},"likes":["biking","swimming"],"memberSince":"2011-08-21"} -{"name":{"first":"Kelvin","last":"Patenaude"},"gender":"male","birthday":"1990-07-21","contact":{"address":{"street":"17 13th Ave","zip":"18911","city":"Blooming Glen","state":"PA"},"email":["kelvin.patenaude@nosql-matters.org","kelvin@nosql-matters.org"],"region":"215","phone":[]},"likes":["biking","chatting"],"memberSince":"2009-02-15"} -{"name":{"first":"Hector","last":"Osegueda"},"gender":"male","birthday":"1942-07-06","contact":{"address":{"street":"10 Phillips Cir","zip":"95679","city":"Rumsey","state":"CA"},"email":["hector.osegueda@nosql-matters.org","osegueda@nosql-matters.org"],"region":"530","phone":["530-4830359","530-1269041"]},"likes":["chatting","skiing"],"memberSince":"2010-01-22"} -{"name":{"first":"Dylan","last":"Godley"},"gender":"male","birthday":"1991-10-25","contact":{"address":{"street":"18 Industrial Ln","zip":"87008","city":"Cedar Crest","state":"NM"},"email":["dylan.godley@nosql-matters.org","dylan@nosql-matters.org"],"region":"505","phone":[]},"likes":["chatting","boxing"],"memberSince":"2010-12-04"} -{"name":{"first":"Mauro","last":"Vandenberg"},"gender":"male","birthday":"1989-08-26","contact":{"address":{"street":"4 198th St","zip":"49235","city":"Clayton","state":"MI"},"email":["mauro.vandenberg@nosql-matters.org"],"region":"517","phone":["517-0754238","517-3521573"]},"likes":["running","chatting","chess","climbing"],"memberSince":"2012-05-09"} -{"name":{"first":"Hank","last":"Hearne"},"gender":"male","birthday":"1940-01-27","contact":{"address":{"street":"6 Crescent Aly","zip":"85099","city":"Phoenix","state":"AZ"},"email":["hank.hearne@nosql-matters.org"],"region":"602","phone":["602-8156614","602-9372985"]},"likes":["boxing","snowboarding"],"memberSince":"2008-04-09"} -{"name":{"first":"Ezekiel","last":"Stagowski"},"gender":"male","birthday":"1983-09-01","contact":{"address":{"street":"4 Biltmore Rd","zip":"77051","city":"Houston","state":"TX"},"email":["ezekiel.stagowski@nosql-matters.org","stagowski@nosql-matters.org","ezekiel@nosql-matters.org"],"region":"713","phone":[]},"likes":[],"memberSince":"2008-01-27"} -{"name":{"first":"Arnoldo","last":"Basler"},"gender":"male","birthday":"1954-10-22","contact":{"address":{"street":"4 198th St","zip":"78230","city":"San Antonio","state":"TX"},"email":["arnoldo.basler@nosql-matters.org","arnoldo@nosql-matters.org"],"region":"210","phone":["210-3736118","210-0740510"]},"likes":["checkers","skiing"],"memberSince":"2012-03-05"} -{"name":{"first":"Burt","last":"Pulis"},"gender":"male","birthday":"1977-02-22","contact":{"address":{"street":"3 Half mound St","zip":"74438","city":"Hitchita","state":"OK"},"email":["burt.pulis@nosql-matters.org","pulis@nosql-matters.org","burt@nosql-matters.org"],"region":"918","phone":["918-2920681","918-5137855"]},"likes":["checkers","ironing"],"memberSince":"2012-02-06"} -{"name":{"first":"Cora","last":"Treib"},"gender":"female","birthday":"1940-05-21","contact":{"address":{"street":"11 Wyoming Cir","zip":"70644","city":"Grant","state":"LA"},"email":["cora.treib@nosql-matters.org"],"region":"337","phone":["337-4996624"]},"likes":["chess","reading","climbing"],"memberSince":"2010-06-30"} -{"name":{"first":"Jorge","last":"Ynocencio"},"gender":"male","birthday":"1992-02-03","contact":{"address":{"street":"19 6th Ave","zip":"73078","city":"Piedmont","state":"OK"},"email":["jorge.ynocencio@nosql-matters.org"],"region":"405","phone":["405-3936201"]},"likes":["reading"],"memberSince":"2010-03-22"} -{"name":{"first":"Meridith","last":"Urick"},"gender":"female","birthday":"1985-01-29","contact":{"address":{"street":"5 20th Ave","zip":"20515","city":"Washington","state":"DC"},"email":["meridith.urick@nosql-matters.org"],"region":"202","phone":["202-6541257"]},"likes":[],"memberSince":"2011-02-21"} -{"name":{"first":"Jody","last":"Wisnosky"},"gender":"male","birthday":"1962-09-22","contact":{"address":{"street":"21 18th Ave","zip":"17024","city":"Elliottsburg","state":"PA"},"email":["jody.wisnosky@nosql-matters.org"],"region":"717","phone":["717-7350202","717-2503730"]},"likes":[],"memberSince":"2009-08-30"} -{"name":{"first":"Rocky","last":"Bough"},"gender":"male","birthday":"1975-12-23","contact":{"address":{"street":"8 Columbia Dr","zip":"31603","city":"Valdosta","state":"GA"},"email":["rocky.bough@nosql-matters.org","bough@nosql-matters.org"],"region":"912","phone":["912-4352431"]},"likes":[],"memberSince":"2011-08-13"} -{"name":{"first":"Billy","last":"Caldarone"},"gender":"female","birthday":"1951-04-29","contact":{"address":{"street":"9 Palmer Rd","zip":"58621","city":"Beach","state":"ND"},"email":["billy.caldarone@nosql-matters.org","caldarone@nosql-matters.org"],"region":"701","phone":["701-7730515","701-3916893"]},"likes":["travelling","driving","skiing","ironing"],"memberSince":"2007-07-10"} -{"name":{"first":"Latonia","last":"Marrison"},"gender":"female","birthday":"1986-02-19","contact":{"address":{"street":"19 Belmont Ave","zip":"53534","city":"Edgerton","state":"WI"},"email":["latonia.marrison@nosql-matters.org","latonia@nosql-matters.org"],"region":"608","phone":["608-4555759","608-0952512"]},"likes":[],"memberSince":"2008-01-28"} -{"name":{"first":"Jamar","last":"Pinchbeck"},"gender":"male","birthday":"1975-01-05","contact":{"address":{"street":"12 Riverview Cir","zip":"24944","city":"Green Bank","state":"WV"},"email":["jamar.pinchbeck@nosql-matters.org","pinchbeck@nosql-matters.org","jamar@nosql-matters.org"],"region":"304","phone":[]},"likes":["travelling"],"memberSince":"2008-12-11"} -{"name":{"first":"Jamel","last":"Martelle"},"gender":"male","birthday":"1961-07-15","contact":{"address":{"street":"13 Adams mill Way","zip":"48838","city":"Greenville","state":"MI"},"email":["jamel.martelle@nosql-matters.org"],"region":"231","phone":["231-8672648"]},"likes":["chess"],"memberSince":"2010-10-27"} -{"name":{"first":"Blake","last":"Kalas"},"gender":"male","birthday":"1949-12-13","contact":{"address":{"street":"21 Wallick Ave","zip":"12586","city":"Walden","state":"NY"},"email":["blake.kalas@nosql-matters.org","kalas@nosql-matters.org"],"region":"914","phone":["914-5593443"]},"likes":["biking","boxing","ironing"],"memberSince":"2009-09-11"} -{"name":{"first":"Malcolm","last":"Vanabel"},"gender":"male","birthday":"1957-08-18","contact":{"address":{"street":"10 Neosho Way","zip":"45334","city":"Jackson Center","state":"OH"},"email":["malcolm.vanabel@nosql-matters.org","malcolm@nosql-matters.org"],"region":"937","phone":["937-5691194","937-9648865"]},"likes":["swimming","driving"],"memberSince":"2009-01-24"} -{"name":{"first":"Irene","last":"Denkins"},"gender":"female","birthday":"1953-12-01","contact":{"address":{"street":"14 Park Ct","zip":"93454","city":"Santa Maria","state":"CA"},"email":["irene.denkins@nosql-matters.org"],"region":"805","phone":["805-4558998"]},"likes":["running","boxing","ironing"],"memberSince":"2011-08-14"} -{"name":{"first":"Adalberto","last":"Sadahiro"},"gender":"male","birthday":"1963-04-15","contact":{"address":{"street":"1 Neosho Rd","zip":"21754","city":"Ijamsville","state":"MD"},"email":["adalberto.sadahiro@nosql-matters.org","sadahiro@nosql-matters.org"],"region":"301","phone":[]},"likes":["shopping","driving"],"memberSince":"2011-10-07"} -{"name":{"first":"Kirby","last":"Huntoon"},"gender":"male","birthday":"1941-12-23","contact":{"address":{"street":"4 Patriot Hwy","zip":"44184","city":"Cleveland","state":"OH"},"email":["kirby.huntoon@nosql-matters.org","huntoon@nosql-matters.org"],"region":"216","phone":["216-8945114","216-1502410"]},"likes":["swimming","chatting","climbing","ironing"],"memberSince":"2009-08-22"} -{"name":{"first":"Nada","last":"Heyes"},"gender":"female","birthday":"1940-09-09","contact":{"address":{"street":"21 Florida Hwy","zip":"71295","city":"Winnsboro","state":"LA"},"email":["nada.heyes@nosql-matters.org"],"region":"318","phone":["318-9313769","318-1009446"]},"likes":["running"],"memberSince":"2009-05-27"} -{"name":{"first":"Particia","last":"Kryzak"},"gender":"female","birthday":"1985-04-17","contact":{"address":{"street":"14 Kearney Aly","zip":"72686","city":"Witts Springs","state":"AR"},"email":["particia.kryzak@nosql-matters.org"],"region":"870","phone":["870-4738573","870-1598582"]},"likes":["driving"],"memberSince":"2010-11-05"} -{"name":{"first":"Pierre","last":"Teesdale"},"gender":"male","birthday":"1946-08-17","contact":{"address":{"street":"15 Columbia Way","zip":"70121","city":"New Orleans","state":"LA"},"email":["pierre.teesdale@nosql-matters.org","pierre@nosql-matters.org"],"region":"504","phone":["504-0559883"]},"likes":[],"memberSince":"2011-08-28"} -{"name":{"first":"Brooks","last":"Kuerbitz"},"gender":"male","birthday":"1968-07-03","contact":{"address":{"street":"11 17th St","zip":"56712","city":"Angus","state":"MN"},"email":["brooks.kuerbitz@nosql-matters.org"],"region":"218","phone":["218-1366697"]},"likes":[],"memberSince":"2007-09-24"} -{"name":{"first":"Val","last":"Stanly"},"gender":"male","birthday":"1949-05-07","contact":{"address":{"street":"12 13th St","zip":"49756","city":"Lewiston","state":"MI"},"email":["val.stanly@nosql-matters.org","val@nosql-matters.org"],"region":"517","phone":["517-7421596"]},"likes":[],"memberSince":"2007-06-02"} -{"name":{"first":"Diann","last":"Bajko"},"gender":"female","birthday":"1983-04-02","contact":{"address":{"street":"8 Walnut Rd","zip":"00664","city":"Jayuya","state":"PR"},"email":["diann.bajko@nosql-matters.org","bajko@nosql-matters.org"],"region":"787","phone":["787-9272574"]},"likes":["biking","chatting"],"memberSince":"2010-08-06"} -{"name":{"first":"Blanche","last":"Kofahl"},"gender":"female","birthday":"1973-10-02","contact":{"address":{"street":"7 Price Run","zip":"29230","city":"Columbia","state":"SC"},"email":["blanche.kofahl@nosql-matters.org"],"region":"803","phone":["803-6484473"]},"likes":["swimming","boxing","ironing"],"memberSince":"2011-11-26"} -{"name":{"first":"Julian","last":"Ahnell"},"gender":"male","birthday":"1993-11-22","contact":{"address":{"street":"8 Harvard Hwy","zip":"27888","city":"Walstonburg","state":"NC"},"email":["julian.ahnell@nosql-matters.org","ahnell@nosql-matters.org","julian@nosql-matters.org"],"region":"252","phone":["252-0496403"]},"likes":["snowboarding"],"memberSince":"2011-07-15"} -{"name":{"first":"Mitchel","last":"Zwick"},"gender":"male","birthday":"1950-12-17","contact":{"address":{"street":"22 Sedgwick Ln","zip":"85341","city":"Lukeville","state":"AZ"},"email":["mitchel.zwick@nosql-matters.org","zwick@nosql-matters.org"],"region":"520","phone":[]},"likes":["reading"],"memberSince":"2009-06-21"} -{"name":{"first":"Dexter","last":"Wember"},"gender":"male","birthday":"1961-11-17","contact":{"address":{"street":"4 Corcoran Rd","zip":"51012","city":"Cherokee","state":"IA"},"email":["dexter.wember@nosql-matters.org"],"region":"712","phone":["712-7930532"]},"likes":[],"memberSince":"2010-04-27"} -{"name":{"first":"Cecile","last":"Hodde"},"gender":"female","birthday":"1977-06-12","contact":{"address":{"street":"11 Fuller Blvd","zip":"48501","city":"Flint","state":"MI"},"email":["cecile.hodde@nosql-matters.org"],"region":"810","phone":["810-0762323","810-8046800"]},"likes":[],"memberSince":"2008-03-03"} -{"name":{"first":"Emmitt","last":"Levier"},"gender":"male","birthday":"1968-07-25","contact":{"address":{"street":"15 Harper St","zip":"66620","city":"Topeka","state":"KS"},"email":["emmitt.levier@nosql-matters.org"],"region":"785","phone":["785-4059954"]},"likes":["running","snowboarding","skiing"],"memberSince":"2010-03-12"} -{"name":{"first":"Arlinda","last":"Knipper"},"gender":"female","birthday":"1979-02-19","contact":{"address":{"street":"9 Harper Hwy","zip":"15428","city":"Dawson","state":"PA"},"email":["arlinda.knipper@nosql-matters.org","arlinda@nosql-matters.org"],"region":"724","phone":["724-6435129"]},"likes":["shopping"],"memberSince":"2011-05-09"} -{"name":{"first":"Kerri","last":"Stalter"},"gender":"female","birthday":"1991-06-11","contact":{"address":{"street":"2 Liberty Ave","zip":"32179","city":"Ocklawaha","state":"FL"},"email":["kerri.stalter@nosql-matters.org","stalter@nosql-matters.org","kerri@nosql-matters.org"],"region":"352","phone":[]},"likes":[],"memberSince":"2009-02-27"} -{"name":{"first":"Dewitt","last":"Cieszynski"},"gender":"male","birthday":"1942-07-09","contact":{"address":{"street":"17 Chapin Ln","zip":"45214","city":"Cincinnati","state":"OH"},"email":["dewitt.cieszynski@nosql-matters.org"],"region":"513","phone":["513-3281727"]},"likes":["climbing"],"memberSince":"2008-12-25"} -{"name":{"first":"Ricky","last":"Reichenberg"},"gender":"male","birthday":"1947-10-07","contact":{"address":{"street":"8 Pratt Rd","zip":"24378","city":"Trout Dale","state":"VA"},"email":["ricky.reichenberg@nosql-matters.org"],"region":"540","phone":[]},"likes":[],"memberSince":"2012-04-21"} -{"name":{"first":"Danny","last":"Alsing"},"gender":"male","birthday":"1979-12-04","contact":{"address":{"street":"7 Spring garden Loop","zip":"97298","city":"Portland","state":"OR"},"email":["danny.alsing@nosql-matters.org"],"region":"503","phone":["503-3948768"]},"likes":[],"memberSince":"2009-04-01"} -{"name":{"first":"Mitsue","last":"Verrue"},"gender":"female","birthday":"1957-05-26","contact":{"address":{"street":"18 21st St","zip":"46383","city":"Valparaiso","state":"IN"},"email":["mitsue.verrue@nosql-matters.org","verrue@nosql-matters.org"],"region":"219","phone":["219-5976976"]},"likes":[],"memberSince":"2010-08-21"} -{"name":{"first":"Kori","last":"Zhao"},"gender":"female","birthday":"1977-05-11","contact":{"address":{"street":"10 1st Ave","zip":"58258","city":"Mekinock","state":"ND"},"email":["kori.zhao@nosql-matters.org"],"region":"701","phone":["701-8251073"]},"likes":[],"memberSince":"2009-11-03"} -{"name":{"first":"Berta","last":"Serafino"},"gender":"female","birthday":"1941-03-11","contact":{"address":{"street":"22 Woodlawn Hwy","zip":"48863","city":"Oak Grove","state":"MI"},"email":["berta.serafino@nosql-matters.org","serafino@nosql-matters.org"],"region":"517","phone":[]},"likes":["swimming","checkers"],"memberSince":"2007-09-09"} -{"name":{"first":"Jame","last":"Duverne"},"gender":"male","birthday":"1972-04-21","contact":{"address":{"street":"2 Last chance Way","zip":"28204","city":"Charlotte","state":"NC"},"email":["jame.duverne@nosql-matters.org","duverne@nosql-matters.org"],"region":"704","phone":["704-4284264","704-6641770"]},"likes":["checkers"],"memberSince":"2011-01-30"} -{"name":{"first":"Cynthia","last":"Kossow"},"gender":"female","birthday":"1959-04-02","contact":{"address":{"street":"10 Pacific Pl","zip":"52408","city":"Cedar Rapids","state":"IA"},"email":["cynthia.kossow@nosql-matters.org"],"region":"319","phone":["319-0479649"]},"likes":["snowboarding"],"memberSince":"2009-11-30"} -{"name":{"first":"Seymour","last":"Engstrom"},"gender":"male","birthday":"1950-05-08","contact":{"address":{"street":"18 Harper St","zip":"47427","city":"Coal City","state":"IN"},"email":["seymour.engstrom@nosql-matters.org"],"region":"812","phone":["812-1593213"]},"likes":["checkers","snowboarding","travelling"],"memberSince":"2011-09-11"} -{"name":{"first":"Shaunna","last":"Minery"},"gender":"female","birthday":"1978-09-25","contact":{"address":{"street":"12 Laramie Pl","zip":"18653","city":"Ransom","state":"PA"},"email":["shaunna.minery@nosql-matters.org","shaunna@nosql-matters.org"],"region":"570","phone":["570-8351931"]},"likes":["shopping","climbing"],"memberSince":"2010-07-20"} -{"name":{"first":"Elijah","last":"Dockus"},"gender":"male","birthday":"1985-01-23","contact":{"address":{"street":"18 Spring garden Run","zip":"06155","city":"Hartford","state":"CT"},"email":["elijah.dockus@nosql-matters.org","dockus@nosql-matters.org"],"region":"860","phone":[]},"likes":[],"memberSince":"2011-11-02"} -{"name":{"first":"Carol","last":"Balcomb"},"gender":"male","birthday":"1976-06-01","contact":{"address":{"street":"19 California Dr","zip":"90097","city":"Los Angeles","state":"CA"},"email":["carol.balcomb@nosql-matters.org","carol@nosql-matters.org"],"region":"213","phone":[]},"likes":[],"memberSince":"2011-10-02"} -{"name":{"first":"George","last":"Cumming"},"gender":"male","birthday":"1987-06-15","contact":{"address":{"street":"16 Sedgwick Hwy","zip":"60521","city":"Hinsdale","state":"IL"},"email":["george.cumming@nosql-matters.org"],"region":"630","phone":["630-8898762","630-2146898"]},"likes":["swimming","ironing"],"memberSince":"2012-03-28"} -{"name":{"first":"Donny","last":"Nordby"},"gender":"male","birthday":"1986-07-22","contact":{"address":{"street":"11 198th St","zip":"84001","city":"Altamont","state":"UT"},"email":["donny.nordby@nosql-matters.org"],"region":"435","phone":["435-7917850"]},"likes":["skiing"],"memberSince":"2008-03-16"} -{"name":{"first":"Williams","last":"Borowski"},"gender":"male","birthday":"1988-01-01","contact":{"address":{"street":"1 Woodlawn Blvd","zip":"98936","city":"Moxee","state":"WA"},"email":["williams.borowski@nosql-matters.org","williams@nosql-matters.org"],"region":"509","phone":["509-0597254","509-3549249"]},"likes":[],"memberSince":"2011-09-08"} -{"name":{"first":"Tony","last":"Metos"},"gender":"male","birthday":"1943-03-16","contact":{"address":{"street":"19 14th Ave","zip":"25510","city":"Culloden","state":"WV"},"email":["tony.metos@nosql-matters.org"],"region":"304","phone":["304-3124078"]},"likes":["reading"],"memberSince":"2010-12-15"} -{"name":{"first":"Avery","last":"Ruffalo"},"gender":"male","birthday":"1992-10-03","contact":{"address":{"street":"3 Main Cir","zip":"62666","city":"Middletown","state":"IL"},"email":["avery.ruffalo@nosql-matters.org"],"region":"217","phone":[]},"likes":["biking","boxing"],"memberSince":"2009-10-22"} -{"name":{"first":"Rebbecca","last":"Bryant"},"gender":"female","birthday":"1941-02-22","contact":{"address":{"street":"3 Wallick Cir","zip":"75802","city":"Palestine","state":"TX"},"email":["rebbecca.bryant@nosql-matters.org","bryant@nosql-matters.org","rebbecca@nosql-matters.org"],"region":"903","phone":["903-2564205"]},"likes":["swimming"],"memberSince":"2009-07-16"} -{"name":{"first":"Elmo","last":"Trifone"},"gender":"male","birthday":"1976-05-30","contact":{"address":{"street":"11 Vermont Ct","zip":"87025","city":"Jemez Springs","state":"NM"},"email":["elmo.trifone@nosql-matters.org","elmo@nosql-matters.org"],"region":"505","phone":["505-6946793"]},"likes":[],"memberSince":"2009-03-05"} -{"name":{"first":"Jewel","last":"Condict"},"gender":"male","birthday":"1962-04-26","contact":{"address":{"street":"21 Riggs Blvd","zip":"18953","city":"Revere","state":"PA"},"email":["jewel.condict@nosql-matters.org","condict@nosql-matters.org"],"region":"610","phone":["610-4720250"]},"likes":[],"memberSince":"2011-04-25"} -{"name":{"first":"Ken","last":"Rohlfs"},"gender":"male","birthday":"1970-09-19","contact":{"address":{"street":"11 234th Ave","zip":"88901","city":"The Lakes","state":"NV"},"email":["ken.rohlfs@nosql-matters.org"],"region":"702","phone":["702-6576286"]},"likes":[],"memberSince":"2009-10-25"} -{"name":{"first":"Adah","last":"Tibbetts"},"gender":"female","birthday":"1984-09-17","contact":{"address":{"street":"9 Industrial Hwy","zip":"16262","city":"Worthington","state":"PA"},"email":["adah.tibbetts@nosql-matters.org"],"region":"724","phone":["724-5223496"]},"likes":["skiing"],"memberSince":"2011-09-21"} -{"name":{"first":"Harlan","last":"Lueckenbach"},"gender":"male","birthday":"1956-06-25","contact":{"address":{"street":"14 Florida Dr","zip":"95550","city":"Korbel","state":"CA"},"email":["harlan.lueckenbach@nosql-matters.org"],"region":"707","phone":["707-5718458"]},"likes":["chatting","boxing","ironing"],"memberSince":"2010-03-12"} -{"name":{"first":"Jacquelynn","last":"Peraha"},"gender":"female","birthday":"1987-06-19","contact":{"address":{"street":"10 Wallace Pl","zip":"93382","city":"Bakersfield","state":"CA"},"email":["jacquelynn.peraha@nosql-matters.org","peraha@nosql-matters.org"],"region":"661","phone":[]},"likes":[],"memberSince":"2008-09-29"} -{"name":{"first":"Eli","last":"Chesbro"},"gender":"male","birthday":"1950-05-31","contact":{"address":{"street":"20 8th St","zip":"55427","city":"Minneapolis","state":"MN"},"email":["eli.chesbro@nosql-matters.org","eli@nosql-matters.org"],"region":"612","phone":["612-7431309"]},"likes":["biking","chatting","chess","travelling"],"memberSince":"2010-10-25"} -{"name":{"first":"Miles","last":"Marcinkiewicz"},"gender":"male","birthday":"1968-10-02","contact":{"address":{"street":"18 New hampshire Way","zip":"15535","city":"Clearville","state":"PA"},"email":["miles.marcinkiewicz@nosql-matters.org","miles@nosql-matters.org"],"region":"814","phone":["814-7194216"]},"likes":["swimming","chatting","climbing"],"memberSince":"2007-10-27"} -{"name":{"first":"Daron","last":"Nixion"},"gender":"male","birthday":"1970-09-07","contact":{"address":{"street":"20 Main Dr","zip":"36618","city":"Mobile","state":"AL"},"email":["daron.nixion@nosql-matters.org","nixion@nosql-matters.org"],"region":"334","phone":[]},"likes":["skiing"],"memberSince":"2009-06-23"} -{"name":{"first":"Randall","last":"Bjerk"},"gender":"male","birthday":"1987-02-27","contact":{"address":{"street":"5 Industrial Blvd","zip":"41862","city":"Topmost","state":"KY"},"email":["randall.bjerk@nosql-matters.org"],"region":"606","phone":["606-6478616"]},"likes":["boxing","driving"],"memberSince":"2009-01-13"} -{"name":{"first":"Leo","last":"Lipira"},"gender":"male","birthday":"1979-11-10","contact":{"address":{"street":"8 Kearney St","zip":"40620","city":"Frankfort","state":"KY"},"email":["leo.lipira@nosql-matters.org","lipira@nosql-matters.org"],"region":"502","phone":["502-1257414","502-6261276"]},"likes":["chess","boxing","reading"],"memberSince":"2011-06-26"} -{"name":{"first":"Hipolito","last":"Steckley"},"gender":"male","birthday":"1965-05-24","contact":{"address":{"street":"7 Kansas Pl","zip":"73151","city":"Oklahoma City","state":"OK"},"email":["hipolito.steckley@nosql-matters.org"],"region":"405","phone":["405-0079382","405-1534215"]},"likes":["reading","snowboarding"],"memberSince":"2011-09-14"} -{"name":{"first":"Loren","last":"Hellerman"},"gender":"male","birthday":"1979-11-30","contact":{"address":{"street":"22 Girard Hwy","zip":"16134","city":"Jamestown","state":"PA"},"email":["loren.hellerman@nosql-matters.org","loren@nosql-matters.org"],"region":"724","phone":[]},"likes":["boxing","reading"],"memberSince":"2011-06-06"} -{"name":{"first":"Hilario","last":"Kinabrew"},"gender":"male","birthday":"1989-05-17","contact":{"address":{"street":"15 262nd St","zip":"25704","city":"Huntington","state":"WV"},"email":["hilario.kinabrew@nosql-matters.org","hilario@nosql-matters.org"],"region":"304","phone":["304-8663784"]},"likes":[],"memberSince":"2008-05-15"} -{"name":{"first":"Gerardo","last":"Ismail"},"gender":"male","birthday":"1970-04-16","contact":{"address":{"street":"17 Cliffbourne Loop","zip":"90307","city":"Inglewood","state":"CA"},"email":["gerardo.ismail@nosql-matters.org"],"region":"310","phone":[]},"likes":["shopping","swimming","chess","boxing"],"memberSince":"2010-02-27"} -{"name":{"first":"Cristobal","last":"Goletz"},"gender":"male","birthday":"1949-03-19","contact":{"address":{"street":"7 Industrial Cir","zip":"85347","city":"Roll","state":"AZ"},"email":["cristobal.goletz@nosql-matters.org","goletz@nosql-matters.org"],"region":"520","phone":["520-8204816"]},"likes":[],"memberSince":"2010-03-07"} -{"name":{"first":"Glendora","last":"Ruegsegger"},"gender":"female","birthday":"1980-06-20","contact":{"address":{"street":"3 334th St","zip":"39631","city":"Centreville","state":"MS"},"email":["glendora.ruegsegger@nosql-matters.org","glendora@nosql-matters.org"],"region":"601","phone":[]},"likes":["driving"],"memberSince":"2011-12-25"} -{"name":{"first":"Erin","last":"Maness"},"gender":"male","birthday":"1947-12-29","contact":{"address":{"street":"11 Beechwood Dr","zip":"74852","city":"Macomb","state":"OK"},"email":["erin.maness@nosql-matters.org","maness@nosql-matters.org"],"region":"405","phone":["405-4197235"]},"likes":[],"memberSince":"2009-06-15"} -{"name":{"first":"Cameron","last":"Legette"},"gender":"female","birthday":"1977-06-04","contact":{"address":{"street":"9 Kansas Cir","zip":"31308","city":"Ellabell","state":"GA"},"email":["cameron.legette@nosql-matters.org"],"region":"912","phone":["912-8152000","912-3204927"]},"likes":[],"memberSince":"2009-10-21"} -{"name":{"first":"Kurt","last":"Mainey"},"gender":"male","birthday":"1949-07-09","contact":{"address":{"street":"16 Industrial Run","zip":"57736","city":"Elm Springs","state":"SD"},"email":["kurt.mainey@nosql-matters.org"],"region":"605","phone":[]},"likes":[],"memberSince":"2010-06-24"} -{"name":{"first":"Bart","last":"Chicharello"},"gender":"male","birthday":"1978-04-19","contact":{"address":{"street":"10 Division Loop","zip":"15536","city":"Crystal Spring","state":"PA"},"email":["bart.chicharello@nosql-matters.org","chicharello@nosql-matters.org","bart@nosql-matters.org"],"region":"814","phone":["814-7729760"]},"likes":["travelling"],"memberSince":"2010-05-13"} -{"name":{"first":"Shanda","last":"Statz"},"gender":"female","birthday":"1954-04-15","contact":{"address":{"street":"18 Division Blvd","zip":"30313","city":"Atlanta","state":"GA"},"email":["shanda.statz@nosql-matters.org","statz@nosql-matters.org"],"region":"404","phone":["404-9460016","404-9801327"]},"likes":["snowboarding"],"memberSince":"2011-07-23"} -{"name":{"first":"Francisco","last":"Borsa"},"gender":"male","birthday":"1978-03-20","contact":{"address":{"street":"21 Laramie Dr","zip":"51057","city":"Struble","state":"IA"},"email":["francisco.borsa@nosql-matters.org"],"region":"712","phone":[]},"likes":["chatting","checkers","reading"],"memberSince":"2011-01-30"} -{"name":{"first":"Roy","last":"Wienecke"},"gender":"male","birthday":"1972-08-08","contact":{"address":{"street":"2 Euclid Blvd","zip":"50538","city":"Farnhamville","state":"IA"},"email":["roy.wienecke@nosql-matters.org","wienecke@nosql-matters.org","roy@nosql-matters.org"],"region":"515","phone":["515-5855387","515-3329366"]},"likes":[],"memberSince":"2007-09-08"} -{"name":{"first":"Li","last":"Thiessen"},"gender":"female","birthday":"1988-03-11","contact":{"address":{"street":"1 Sedgwick Way","zip":"36540","city":"Gainestown","state":"AL"},"email":["li.thiessen@nosql-matters.org","li@nosql-matters.org"],"region":"334","phone":["334-6005458"]},"likes":["chess"],"memberSince":"2008-11-16"} -{"name":{"first":"Jimmy","last":"Cassard"},"gender":"male","birthday":"1971-08-13","contact":{"address":{"street":"13 Calvert Way","zip":"20684","city":"Saint Inigoes","state":"MD"},"email":["jimmy.cassard@nosql-matters.org","jimmy@nosql-matters.org"],"region":"301","phone":[]},"likes":["chatting","checkers"],"memberSince":"2007-08-01"} -{"name":{"first":"Winford","last":"Halling"},"gender":"male","birthday":"1993-07-27","contact":{"address":{"street":"19 20th Ave","zip":"48162","city":"Monroe","state":"MI"},"email":["winford.halling@nosql-matters.org"],"region":"734","phone":["734-4398294","734-1688985"]},"likes":[],"memberSince":"2010-11-02"} -{"name":{"first":"King","last":"Kaler"},"gender":"male","birthday":"1971-06-18","contact":{"address":{"street":"15 8th St","zip":"26264","city":"Durbin","state":"WV"},"email":["king.kaler@nosql-matters.org","king@nosql-matters.org"],"region":"304","phone":["304-6374829"]},"likes":["skiing","climbing"],"memberSince":"2011-01-21"} -{"name":{"first":"Willard","last":"Hasychak"},"gender":"male","birthday":"1953-10-15","contact":{"address":{"street":"6 257th St","zip":"58256","city":"Manvel","state":"ND"},"email":["willard.hasychak@nosql-matters.org"],"region":"701","phone":["701-1070509"]},"likes":["chess"],"memberSince":"2007-11-12"} -{"name":{"first":"Elina","last":"Uriegas"},"gender":"female","birthday":"1994-03-12","contact":{"address":{"street":"13 Lanier St","zip":"26421","city":"Pullman","state":"WV"},"email":["elina.uriegas@nosql-matters.org"],"region":"304","phone":[]},"likes":[],"memberSince":"2011-02-24"} -{"name":{"first":"Rosalyn","last":"Kirkey"},"gender":"female","birthday":"1955-11-11","contact":{"address":{"street":"22 Santa fe Hwy","zip":"47167","city":"Salem","state":"IN"},"email":["rosalyn.kirkey@nosql-matters.org","kirkey@nosql-matters.org"],"region":"812","phone":[]},"likes":["reading"],"memberSince":"2009-03-02"} -{"name":{"first":"Matt","last":"Sabol"},"gender":"male","birthday":"1957-10-28","contact":{"address":{"street":"17 Riverview Rd","zip":"30721","city":"Dalton","state":"GA"},"email":["matt.sabol@nosql-matters.org"],"region":"706","phone":["706-4258624"]},"likes":[],"memberSince":"2011-11-26"} -{"name":{"first":"Gayle","last":"Jeffs"},"gender":"male","birthday":"1945-02-05","contact":{"address":{"street":"20 Adams mill Aly","zip":"48295","city":"Detroit","state":"MI"},"email":["gayle.jeffs@nosql-matters.org"],"region":"313","phone":["313-2238690"]},"likes":["shopping"],"memberSince":"2010-07-09"} -{"name":{"first":"Laurene","last":"Billiet"},"gender":"female","birthday":"1992-10-04","contact":{"address":{"street":"2 6th St","zip":"34958","city":"Jensen Beach","state":"FL"},"email":["laurene.billiet@nosql-matters.org"],"region":"561","phone":[]},"likes":[],"memberSince":"2012-04-16"} -{"name":{"first":"Odell","last":"Meadow"},"gender":"male","birthday":"1946-02-07","contact":{"address":{"street":"1 266th St","zip":"46706","city":"Auburn","state":"IN"},"email":["odell.meadow@nosql-matters.org"],"region":"219","phone":[]},"likes":["biking"],"memberSince":"2007-06-22"} -{"name":{"first":"Margene","last":"Bhullar"},"gender":"female","birthday":"1980-09-17","contact":{"address":{"street":"14 Branchton Blvd","zip":"62523","city":"Decatur","state":"IL"},"email":["margene.bhullar@nosql-matters.org"],"region":"217","phone":["217-0912031"]},"likes":["chatting"],"memberSince":"2009-07-10"} -{"name":{"first":"Krystin","last":"Brucz"},"gender":"female","birthday":"1953-01-15","contact":{"address":{"street":"3 20th Ave","zip":"26562","city":"Burton","state":"WV"},"email":["krystin.brucz@nosql-matters.org"],"region":"304","phone":["304-7361951"]},"likes":["driving","climbing"],"memberSince":"2011-08-27"} -{"name":{"first":"Brendan","last":"Bultron"},"gender":"male","birthday":"1945-08-20","contact":{"address":{"street":"11 Laramie Aly","zip":"07902","city":"Summit","state":"NJ"},"email":["brendan.bultron@nosql-matters.org"],"region":"908","phone":[]},"likes":[],"memberSince":"2009-06-18"} -{"name":{"first":"Clint","last":"Sayas"},"gender":"male","birthday":"1969-05-16","contact":{"address":{"street":"5 Belmont Cir","zip":"34201","city":"Bradenton","state":"FL"},"email":["clint.sayas@nosql-matters.org"],"region":"941","phone":[]},"likes":["checkers"],"memberSince":"2011-07-25"} -{"name":{"first":"Kandace","last":"Beltron"},"gender":"female","birthday":"1971-08-15","contact":{"address":{"street":"9 Kalorama Ln","zip":"85245","city":"Red Rock","state":"AZ"},"email":["kandace.beltron@nosql-matters.org","beltron@nosql-matters.org"],"region":"520","phone":[]},"likes":["driving"],"memberSince":"2010-10-16"} -{"name":{"first":"Ka","last":"Martineze"},"gender":"female","birthday":"1968-09-16","contact":{"address":{"street":"20 Beekman Rd","zip":"17270","city":"Williamson","state":"PA"},"email":["ka.martineze@nosql-matters.org"],"region":"717","phone":["717-8104123","717-0421574"]},"likes":["shopping"],"memberSince":"2010-08-09"} -{"name":{"first":"Teisha","last":"Lafond"},"gender":"female","birthday":"1967-01-08","contact":{"address":{"street":"7 16th Ave","zip":"23510","city":"Norfolk","state":"VA"},"email":["teisha.lafond@nosql-matters.org","teisha@nosql-matters.org"],"region":"757","phone":["757-3906841"]},"likes":["chatting"],"memberSince":"2011-08-28"} -{"name":{"first":"Derrick","last":"Bertran"},"gender":"male","birthday":"1977-11-06","contact":{"address":{"street":"4 Gasoline Ct","zip":"98579","city":"Rochester","state":"WA"},"email":["derrick.bertran@nosql-matters.org"],"region":"360","phone":["360-1055098"]},"likes":["biking","boxing","reading"],"memberSince":"2008-02-13"} -{"name":{"first":"Benton","last":"Stike"},"gender":"male","birthday":"1971-05-18","contact":{"address":{"street":"22 Vermont Cir","zip":"14029","city":"Centerville","state":"NY"},"email":["benton.stike@nosql-matters.org","benton@nosql-matters.org"],"region":"716","phone":["716-4832164","716-9785071"]},"likes":["snowboarding"],"memberSince":"2012-03-01"} -{"name":{"first":"Kiara","last":"Redner"},"gender":"female","birthday":"1989-01-30","contact":{"address":{"street":"13 Pine Cir","zip":"32827","city":"Orlando","state":"FL"},"email":["kiara.redner@nosql-matters.org","kiara@nosql-matters.org"],"region":"407","phone":["407-9184695"]},"likes":["travelling"],"memberSince":"2008-12-17"} -{"name":{"first":"Rob","last":"Graves"},"gender":"male","birthday":"1992-06-08","contact":{"address":{"street":"7 234th Ave","zip":"44901","city":"Mansfield","state":"OH"},"email":["rob.graves@nosql-matters.org"],"region":"419","phone":["419-6670001"]},"likes":["shopping","checkers"],"memberSince":"2009-02-10"} -{"name":{"first":"Santa","last":"Breyers"},"gender":"female","birthday":"1954-03-16","contact":{"address":{"street":"21 234th Ave","zip":"48418","city":"Byron","state":"MI"},"email":["santa.breyers@nosql-matters.org","santa@nosql-matters.org"],"region":"810","phone":["810-1922868"]},"likes":["running","shopping","reading"],"memberSince":"2010-03-16"} -{"name":{"first":"Kris","last":"Luitjens"},"gender":"male","birthday":"1973-12-08","contact":{"address":{"street":"22 1st St","zip":"79996","city":"El Paso","state":"TX"},"email":["kris.luitjens@nosql-matters.org"],"region":"915","phone":["915-0113485"]},"likes":[],"memberSince":"2009-03-25"} -{"name":{"first":"Terrance","last":"Vannette"},"gender":"male","birthday":"1992-11-06","contact":{"address":{"street":"12 Neumann Hwy","zip":"10199","city":"New York","state":"NY"},"email":["terrance.vannette@nosql-matters.org"],"region":"212","phone":["212-6690139"]},"likes":["swimming"],"memberSince":"2009-07-11"} -{"name":{"first":"Leesa","last":"Spataro"},"gender":"female","birthday":"1964-10-06","contact":{"address":{"street":"20 Lanier Rd","zip":"77215","city":"Houston","state":"TX"},"email":["leesa.spataro@nosql-matters.org","leesa@nosql-matters.org"],"region":"713","phone":["713-0675166"]},"likes":["running","biking","skiing"],"memberSince":"2007-10-31"} -{"name":{"first":"Magan","last":"Carskadon"},"gender":"female","birthday":"1941-08-29","contact":{"address":{"street":"15 12th Ave","zip":"82006","city":"Cheyenne","state":"WY"},"email":["magan.carskadon@nosql-matters.org"],"region":"307","phone":["307-2959801"]},"likes":[],"memberSince":"2010-04-24"} -{"name":{"first":"Shelton","last":"Pollinger"},"gender":"male","birthday":"1987-01-03","contact":{"address":{"street":"13 Rawlins Ln","zip":"45871","city":"New Knoxville","state":"OH"},"email":["shelton.pollinger@nosql-matters.org"],"region":"419","phone":["419-0554393"]},"likes":["running","boxing"],"memberSince":"2012-05-22"} -{"name":{"first":"Wilton","last":"Maynez"},"gender":"male","birthday":"1992-06-11","contact":{"address":{"street":"13 Mintwood Cir","zip":"46706","city":"Auburn","state":"IN"},"email":["wilton.maynez@nosql-matters.org"],"region":"219","phone":[]},"likes":["biking","swimming","skiing"],"memberSince":"2009-12-05"} -{"name":{"first":"Jeanetta","last":"Eylicio"},"gender":"female","birthday":"1940-03-27","contact":{"address":{"street":"20 20th St","zip":"33081","city":"Hollywood","state":"FL"},"email":["jeanetta.eylicio@nosql-matters.org"],"region":"954","phone":["954-7317514"]},"likes":["checkers"],"memberSince":"2010-03-29"} -{"name":{"first":"Neda","last":"Baute"},"gender":"female","birthday":"1947-11-19","contact":{"address":{"street":"6 Commercial Ln","zip":"47140","city":"Marengo","state":"IN"},"email":["neda.baute@nosql-matters.org"],"region":"812","phone":[]},"likes":[],"memberSince":"2011-06-30"} -{"name":{"first":"Mitch","last":"Yochim"},"gender":"male","birthday":"1991-11-21","contact":{"address":{"street":"3 334th St","zip":"85320","city":"Aguila","state":"AZ"},"email":["mitch.yochim@nosql-matters.org","mitch@nosql-matters.org"],"region":"520","phone":["520-6905417"]},"likes":[],"memberSince":"2009-06-27"} -{"name":{"first":"Evangelina","last":"Buba"},"gender":"female","birthday":"1968-05-27","contact":{"address":{"street":"1 Woodson Ln","zip":"62844","city":"Grayville","state":"IL"},"email":["evangelina.buba@nosql-matters.org","buba@nosql-matters.org","evangelina@nosql-matters.org"],"region":"618","phone":["618-9197918"]},"likes":["running","swimming","chess","reading"],"memberSince":"2008-06-01"} -{"name":{"first":"Lavone","last":"Namisnak"},"gender":"female","birthday":"1973-07-17","contact":{"address":{"street":"20 Spring garden Ct","zip":"98028","city":"Kenmore","state":"WA"},"email":["lavone.namisnak@nosql-matters.org","namisnak@nosql-matters.org","lavone@nosql-matters.org"],"region":"425","phone":[]},"likes":["skiing"],"memberSince":"2009-06-16"} -{"name":{"first":"Jimmie","last":"Brayley"},"gender":"male","birthday":"1975-02-08","contact":{"address":{"street":"22 Pacific Blvd","zip":"36079","city":"Troy","state":"AL"},"email":["jimmie.brayley@nosql-matters.org"],"region":"334","phone":["334-5307057","334-4343077"]},"likes":["chess","driving"],"memberSince":"2009-01-31"} -{"name":{"first":"Maricela","last":"Wickersham"},"gender":"female","birthday":"1968-11-23","contact":{"address":{"street":"12 New york Blvd","zip":"68467","city":"York","state":"NE"},"email":["maricela.wickersham@nosql-matters.org"],"region":"402","phone":["402-4344447","402-0063214"]},"likes":["travelling"],"memberSince":"2009-12-17"} -{"name":{"first":"Berta","last":"Tjarks"},"gender":"female","birthday":"1992-12-17","contact":{"address":{"street":"3 17th St","zip":"77615","city":"Evadale","state":"TX"},"email":["berta.tjarks@nosql-matters.org","tjarks@nosql-matters.org"],"region":"409","phone":["409-3327022","409-3422469"]},"likes":["checkers"],"memberSince":"2008-10-24"} -{"name":{"first":"Nicolasa","last":"Falknor"},"gender":"female","birthday":"1958-05-08","contact":{"address":{"street":"17 Wyoming Dr","zip":"38505","city":"Cookeville","state":"TN"},"email":["nicolasa.falknor@nosql-matters.org"],"region":"931","phone":["931-4804463","931-9188556"]},"likes":["ironing"],"memberSince":"2010-07-14"} -{"name":{"first":"Josef","last":"Tarrats"},"gender":"male","birthday":"1966-04-23","contact":{"address":{"street":"15 Florida Run","zip":"34235","city":"Sarasota","state":"FL"},"email":["josef.tarrats@nosql-matters.org"],"region":"941","phone":["941-1989248","941-8749033"]},"likes":["swimming","climbing"],"memberSince":"2008-05-22"} -{"name":{"first":"Jeri","last":"Roth"},"gender":"female","birthday":"1940-03-02","contact":{"address":{"street":"11 234th Ave","zip":"14024","city":"Bliss","state":"NY"},"email":["jeri.roth@nosql-matters.org","roth@nosql-matters.org"],"region":"716","phone":["716-4209790","716-6008720"]},"likes":["snowboarding"],"memberSince":"2008-08-02"} -{"name":{"first":"Lorita","last":"Deperro"},"gender":"female","birthday":"1974-07-19","contact":{"address":{"street":"8 Adams mill Rd","zip":"16233","city":"Leeper","state":"PA"},"email":["lorita.deperro@nosql-matters.org","lorita@nosql-matters.org"],"region":"814","phone":["814-0092207"]},"likes":["swimming","boxing","travelling"],"memberSince":"2012-01-11"} -{"name":{"first":"Melonie","last":"Spikes"},"gender":"female","birthday":"1943-04-22","contact":{"address":{"street":"17 12th Ave","zip":"01203","city":"Pittsfield","state":"MA"},"email":["melonie.spikes@nosql-matters.org","melonie@nosql-matters.org"],"region":"413","phone":["413-7695171"]},"likes":["running","chatting","boxing"],"memberSince":"2008-07-24"} -{"name":{"first":"Major","last":"Janow"},"gender":"male","birthday":"1981-04-01","contact":{"address":{"street":"1 Kalorama Run","zip":"49666","city":"Mayfield","state":"MI"},"email":["major.janow@nosql-matters.org"],"region":"231","phone":[]},"likes":["swimming","reading","driving"],"memberSince":"2009-10-12"} -{"name":{"first":"Douglass","last":"Hannan"},"gender":"male","birthday":"1994-06-15","contact":{"address":{"street":"1 Industrial Hwy","zip":"77262","city":"Houston","state":"TX"},"email":["douglass.hannan@nosql-matters.org","douglass@nosql-matters.org"],"region":"713","phone":["713-7369606"]},"likes":["biking","skiing"],"memberSince":"2010-04-06"} -{"name":{"first":"Taunya","last":"Laurent"},"gender":"female","birthday":"1940-03-08","contact":{"address":{"street":"8 University Loop","zip":"72104","city":"Malvern","state":"AR"},"email":["taunya.laurent@nosql-matters.org","taunya@nosql-matters.org"],"region":"501","phone":[]},"likes":["chess","reading"],"memberSince":"2011-07-10"} -{"name":{"first":"Ola","last":"Kamal"},"gender":"female","birthday":"1992-11-29","contact":{"address":{"street":"12 Phillips Ave","zip":"49766","city":"Ossineke","state":"MI"},"email":["ola.kamal@nosql-matters.org"],"region":"517","phone":[]},"likes":["reading","snowboarding"],"memberSince":"2010-05-19"} -{"name":{"first":"Leontine","last":"Kempler"},"gender":"female","birthday":"1970-11-02","contact":{"address":{"street":"3 Neumann St","zip":"08551","city":"Ringoes","state":"NJ"},"email":["leontine.kempler@nosql-matters.org"],"region":"908","phone":["908-9457766"]},"likes":["travelling"],"memberSince":"2008-08-14"} -{"name":{"first":"Jesenia","last":"Gunner"},"gender":"female","birthday":"1956-09-01","contact":{"address":{"street":"16 Spring Pl","zip":"71613","city":"Pine Bluff","state":"AR"},"email":["jesenia.gunner@nosql-matters.org"],"region":"870","phone":["870-0983731","870-9607418"]},"likes":[],"memberSince":"2009-05-14"} -{"name":{"first":"Rosalie","last":"Sinclaire"},"gender":"female","birthday":"1965-08-01","contact":{"address":{"street":"9 11th St","zip":"36272","city":"Piedmont","state":"AL"},"email":["rosalie.sinclaire@nosql-matters.org"],"region":"256","phone":["256-1147345"]},"likes":["running","chess"],"memberSince":"2010-10-07"} -{"name":{"first":"Jermaine","last":"Baulch"},"gender":"male","birthday":"1949-03-29","contact":{"address":{"street":"20 6th St","zip":"38260","city":"Troy","state":"TN"},"email":["jermaine.baulch@nosql-matters.org","jermaine@nosql-matters.org"],"region":"901","phone":["901-1295058"]},"likes":[],"memberSince":"2008-01-18"} -{"name":{"first":"Carroll","last":"Laferte"},"gender":"female","birthday":"1945-02-04","contact":{"address":{"street":"9 Commercial Rd","zip":"24244","city":"Duffield","state":"VA"},"email":["carroll.laferte@nosql-matters.org","laferte@nosql-matters.org","carroll@nosql-matters.org"],"region":"540","phone":["540-0117537"]},"likes":["swimming","travelling","ironing"],"memberSince":"2008-12-01"} -{"name":{"first":"Wendie","last":"Samay"},"gender":"female","birthday":"1947-07-15","contact":{"address":{"street":"18 9th St","zip":"68924","city":"Axtell","state":"NE"},"email":["wendie.samay@nosql-matters.org"],"region":"308","phone":[]},"likes":[],"memberSince":"2009-06-30"} -{"name":{"first":"Tierra","last":"Sampilo"},"gender":"female","birthday":"1967-07-08","contact":{"address":{"street":"1 Neosho Aly","zip":"72215","city":"Little Rock","state":"AR"},"email":["tierra.sampilo@nosql-matters.org","tierra@nosql-matters.org"],"region":"501","phone":[]},"likes":["boxing","travelling","ironing"],"memberSince":"2008-04-01"} -{"name":{"first":"Eugenia","last":"Pen"},"gender":"female","birthday":"1984-11-30","contact":{"address":{"street":"3 Harper Ave","zip":"86035","city":"Leupp","state":"AZ"},"email":["eugenia.pen@nosql-matters.org","pen@nosql-matters.org"],"region":"520","phone":["520-8127330"]},"likes":["chess","snowboarding"],"memberSince":"2009-11-11"} -{"name":{"first":"Corrine","last":"Stracquatanio"},"gender":"female","birthday":"1960-05-25","contact":{"address":{"street":"20 Beekman Rd","zip":"44445","city":"New Waterford","state":"OH"},"email":["corrine.stracquatanio@nosql-matters.org","stracquatanio@nosql-matters.org"],"region":"330","phone":["330-5276671"]},"likes":["travelling"],"memberSince":"2011-11-24"} -{"name":{"first":"Rema","last":"Martens"},"gender":"female","birthday":"1953-08-29","contact":{"address":{"street":"6 Palmer Aly","zip":"55436","city":"Minneapolis","state":"MN"},"email":["rema.martens@nosql-matters.org"],"region":"612","phone":[]},"likes":["skiing"],"memberSince":"2007-12-09"} -{"name":{"first":"Arica","last":"Ourth"},"gender":"female","birthday":"1963-09-10","contact":{"address":{"street":"20 Laramie Loop","zip":"60959","city":"Piper City","state":"IL"},"email":["arica.ourth@nosql-matters.org","arica@nosql-matters.org"],"region":"815","phone":["815-3370422"]},"likes":["shopping","driving"],"memberSince":"2011-07-08"} -{"name":{"first":"Kieth","last":"Wikoff"},"gender":"male","birthday":"1953-11-15","contact":{"address":{"street":"11 Laramie Way","zip":"68139","city":"Omaha","state":"NE"},"email":["kieth.wikoff@nosql-matters.org"],"region":"402","phone":["402-8336612"]},"likes":["travelling","driving"],"memberSince":"2011-05-20"} -{"name":{"first":"Valrie","last":"Beckfield"},"gender":"female","birthday":"1950-09-22","contact":{"address":{"street":"5 Adams mill Loop","zip":"06478","city":"Oxford","state":"CT"},"email":["valrie.beckfield@nosql-matters.org"],"region":"203","phone":["203-6088889"]},"likes":["boxing"],"memberSince":"2007-08-12"} -{"name":{"first":"Eugenia","last":"Viale"},"gender":"female","birthday":"1949-12-22","contact":{"address":{"street":"7 Belmont Blvd","zip":"38058","city":"Munford","state":"TN"},"email":["eugenia.viale@nosql-matters.org"],"region":"901","phone":[]},"likes":["ironing"],"memberSince":"2009-07-10"} -{"name":{"first":"Bernie","last":"Katsuda"},"gender":"male","birthday":"1953-08-16","contact":{"address":{"street":"18 Division Blvd","zip":"92781","city":"Tustin","state":"CA"},"email":["bernie.katsuda@nosql-matters.org","katsuda@nosql-matters.org"],"region":"714","phone":["714-9643961","714-0573091"]},"likes":["shopping"],"memberSince":"2008-05-29"} -{"name":{"first":"Maryland","last":"Buczko"},"gender":"female","birthday":"1988-06-22","contact":{"address":{"street":"14 Clydesdale Ln","zip":"64190","city":"Kansas City","state":"MO"},"email":["maryland.buczko@nosql-matters.org","buczko@nosql-matters.org"],"region":"816","phone":["816-3723517"]},"likes":["running","reading"],"memberSince":"2012-04-01"} -{"name":{"first":"Virginia","last":"Willett"},"gender":"female","birthday":"1945-05-21","contact":{"address":{"street":"2 20th St","zip":"61058","city":"Nelson","state":"IL"},"email":["virginia.willett@nosql-matters.org"],"region":"815","phone":["815-1632911"]},"likes":[],"memberSince":"2010-01-22"} -{"name":{"first":"Morgan","last":"Fracier"},"gender":"male","birthday":"1992-01-19","contact":{"address":{"street":"21 Commercial Run","zip":"14507","city":"Middlesex","state":"NY"},"email":["morgan.fracier@nosql-matters.org"],"region":"716","phone":[]},"likes":["biking","checkers","skiing"],"memberSince":"2008-12-13"} -{"name":{"first":"Edmond","last":"Langkabel"},"gender":"male","birthday":"1971-08-10","contact":{"address":{"street":"8 Vermont Ln","zip":"64077","city":"Orrick","state":"MO"},"email":["edmond.langkabel@nosql-matters.org","langkabel@nosql-matters.org","edmond@nosql-matters.org"],"region":"816","phone":[]},"likes":[],"memberSince":"2008-03-03"} -{"name":{"first":"Hee","last":"Paluch"},"gender":"female","birthday":"1950-07-15","contact":{"address":{"street":"14 Crowell St","zip":"29802","city":"Aiken","state":"SC"},"email":["hee.paluch@nosql-matters.org","paluch@nosql-matters.org","hee@nosql-matters.org"],"region":"803","phone":["803-6662952","803-8040320"]},"likes":["snowboarding"],"memberSince":"2009-05-11"} -{"name":{"first":"Alden","last":"Wimbley"},"gender":"male","birthday":"1987-05-25","contact":{"address":{"street":"5 18th St","zip":"23846","city":"Elberon","state":"VA"},"email":["alden.wimbley@nosql-matters.org","wimbley@nosql-matters.org"],"region":"757","phone":["757-7097259"]},"likes":["biking","skiing"],"memberSince":"2009-10-11"} -{"name":{"first":"Marvin","last":"Spurgin"},"gender":"male","birthday":"1961-08-11","contact":{"address":{"street":"12 Wallace Pl","zip":"71377","city":"Wildsville","state":"LA"},"email":["marvin.spurgin@nosql-matters.org","spurgin@nosql-matters.org"],"region":"318","phone":["318-6831029"]},"likes":[],"memberSince":"2010-08-09"} -{"name":{"first":"Markus","last":"Braaten"},"gender":"male","birthday":"1946-05-13","contact":{"address":{"street":"7 Price Dr","zip":"10509","city":"Brewster","state":"NY"},"email":["markus.braaten@nosql-matters.org"],"region":"914","phone":["914-8232314"]},"likes":[],"memberSince":"2008-12-09"} -{"name":{"first":"Tobias","last":"Fil"},"gender":"male","birthday":"1976-09-23","contact":{"address":{"street":"6 7th St","zip":"00683","city":"San German","state":"PR"},"email":["tobias.fil@nosql-matters.org"],"region":"787","phone":[]},"likes":["running"],"memberSince":"2010-03-15"} -{"name":{"first":"Alfredo","last":"Houpe"},"gender":"male","birthday":"1990-03-13","contact":{"address":{"street":"17 18th Ave","zip":"72644","city":"Lead Hill","state":"AR"},"email":["alfredo.houpe@nosql-matters.org"],"region":"870","phone":["870-0160644"]},"likes":["checkers"],"memberSince":"2012-05-05"} -{"name":{"first":"Christel","last":"Merana"},"gender":"female","birthday":"1943-02-08","contact":{"address":{"street":"4 Neosho Run","zip":"31197","city":"Atlanta","state":"GA"},"email":["christel.merana@nosql-matters.org"],"region":"404","phone":[]},"likes":[],"memberSince":"2008-02-15"} -{"name":{"first":"Rob","last":"Colaiacovo"},"gender":"male","birthday":"1980-12-15","contact":{"address":{"street":"17 Deer Way","zip":"50067","city":"Decatur","state":"IA"},"email":["rob.colaiacovo@nosql-matters.org"],"region":"515","phone":["515-5374424"]},"likes":[],"memberSince":"2007-08-23"} -{"name":{"first":"Erwin","last":"Warfel"},"gender":"male","birthday":"1993-02-03","contact":{"address":{"street":"22 13th St","zip":"87041","city":"Pena Blanca","state":"NM"},"email":["erwin.warfel@nosql-matters.org","erwin@nosql-matters.org"],"region":"505","phone":["505-6739797"]},"likes":["chess"],"memberSince":"2009-10-30"} -{"name":{"first":"Pamelia","last":"Zuckerwar"},"gender":"female","birthday":"1941-11-15","contact":{"address":{"street":"5 Oak Ln","zip":"87901","city":"Truth or Consequences","state":"NM"},"email":["pamelia.zuckerwar@nosql-matters.org"],"region":"505","phone":["505-5002579"]},"likes":["running","ironing"],"memberSince":"2009-08-20"} -{"name":{"first":"Chung","last":"Carothers"},"gender":"male","birthday":"1951-06-29","contact":{"address":{"street":"7 Wallach Dr","zip":"80901","city":"Colorado Springs","state":"CO"},"email":["chung.carothers@nosql-matters.org","chung@nosql-matters.org"],"region":"719","phone":["719-1954471"]},"likes":[],"memberSince":"2008-10-04"} -{"name":{"first":"Billie","last":"Mckinney"},"gender":"male","birthday":"1985-04-25","contact":{"address":{"street":"19 University Ct","zip":"62545","city":"Mechanicsburg","state":"IL"},"email":["billie.mckinney@nosql-matters.org"],"region":"217","phone":["217-2716905"]},"likes":[],"memberSince":"2007-10-04"} -{"name":{"first":"Callie","last":"Schon"},"gender":"female","birthday":"1942-06-12","contact":{"address":{"street":"16 Woodlawn Loop","zip":"95158","city":"San Jose","state":"CA"},"email":["callie.schon@nosql-matters.org","schon@nosql-matters.org"],"region":"408","phone":["408-4509277"]},"likes":["boxing","checkers","driving"],"memberSince":"2008-03-02"} -{"name":{"first":"Alexis","last":"Vanhauen"},"gender":"male","birthday":"1986-05-17","contact":{"address":{"street":"4 Crescent Aly","zip":"82422","city":"Emblem","state":"WY"},"email":["alexis.vanhauen@nosql-matters.org"],"region":"307","phone":["307-4468622"]},"likes":[],"memberSince":"2011-07-21"} -{"name":{"first":"Christiane","last":"Chow"},"gender":"female","birthday":"1992-06-10","contact":{"address":{"street":"7 Riggs Ln","zip":"73747","city":"Isabella","state":"OK"},"email":["christiane.chow@nosql-matters.org","chow@nosql-matters.org"],"region":"580","phone":[]},"likes":["chatting"],"memberSince":"2007-07-02"} -{"name":{"first":"Earnest","last":"Cardo"},"gender":"male","birthday":"1955-04-29","contact":{"address":{"street":"11 242nd St","zip":"98104","city":"Seattle","state":"WA"},"email":["earnest.cardo@nosql-matters.org"],"region":"206","phone":[]},"likes":["reading","climbing"],"memberSince":"2008-02-19"} -{"name":{"first":"Mandy","last":"Cartner"},"gender":"female","birthday":"1973-09-06","contact":{"address":{"street":"4 198th Ave","zip":"40953","city":"Hinkle","state":"KY"},"email":["mandy.cartner@nosql-matters.org"],"region":"606","phone":["606-7242756"]},"likes":[],"memberSince":"2011-09-25"} -{"name":{"first":"Jeremy","last":"Vernier"},"gender":"male","birthday":"1951-03-09","contact":{"address":{"street":"3 Girard Rd","zip":"54876","city":"Stone Lake","state":"WI"},"email":["jeremy.vernier@nosql-matters.org"],"region":"715","phone":["715-2898778","715-0773815"]},"likes":["running"],"memberSince":"2011-01-29"} -{"name":{"first":"Chasidy","last":"Penatac"},"gender":"female","birthday":"1944-04-17","contact":{"address":{"street":"16 6th Ave","zip":"02718","city":"East Taunton","state":"MA"},"email":["chasidy.penatac@nosql-matters.org"],"region":"508","phone":["508-5042399"]},"likes":[],"memberSince":"2007-11-08"} -{"name":{"first":"Nona","last":"Wiker"},"gender":"female","birthday":"1962-08-21","contact":{"address":{"street":"9 6th St","zip":"03809","city":"Alton","state":"NH"},"email":["nona.wiker@nosql-matters.org","nona@nosql-matters.org"],"region":"603","phone":[]},"likes":["chatting"],"memberSince":"2007-10-11"} -{"name":{"first":"Gabriela","last":"Perpall"},"gender":"female","birthday":"1987-03-30","contact":{"address":{"street":"2 21st Ave","zip":"32233","city":"Atlantic Beach","state":"FL"},"email":["gabriela.perpall@nosql-matters.org","perpall@nosql-matters.org"],"region":"904","phone":[]},"likes":[],"memberSince":"2009-06-04"} -{"name":{"first":"Brandie","last":"Panakos"},"gender":"female","birthday":"1947-10-21","contact":{"address":{"street":"2 Roberts Rd","zip":"24842","city":"Hemphill","state":"WV"},"email":["brandie.panakos@nosql-matters.org"],"region":"304","phone":["304-8777875"]},"likes":["running","driving"],"memberSince":"2010-09-20"} -{"name":{"first":"Cinderella","last":"Helwig"},"gender":"female","birthday":"1948-09-29","contact":{"address":{"street":"19 Columbia Dr","zip":"29838","city":"Modoc","state":"SC"},"email":["cinderella.helwig@nosql-matters.org","cinderella@nosql-matters.org"],"region":"864","phone":["864-4900687"]},"likes":[],"memberSince":"2011-11-08"} -{"name":{"first":"Breanne","last":"Tippie"},"gender":"female","birthday":"1952-07-11","contact":{"address":{"street":"2 Beechwood Rd","zip":"95462","city":"Monte Rio","state":"CA"},"email":["breanne.tippie@nosql-matters.org"],"region":"707","phone":["707-2316329"]},"likes":[],"memberSince":"2007-09-02"} -{"name":{"first":"An","last":"Evey"},"gender":"female","birthday":"1971-12-29","contact":{"address":{"street":"13 Ontario Blvd","zip":"48323","city":"West Bloomfield","state":"MI"},"email":["an.evey@nosql-matters.org"],"region":"248","phone":["248-4398137"]},"likes":["chess","ironing"],"memberSince":"2008-03-19"} -{"name":{"first":"Ernest","last":"Schlichenmaye"},"gender":"male","birthday":"1976-11-10","contact":{"address":{"street":"6 Cliffbourne Ln","zip":"78107","city":"Berclair","state":"TX"},"email":["ernest.schlichenmaye@nosql-matters.org"],"region":"361","phone":["361-5427588","361-1135569"]},"likes":[],"memberSince":"2011-07-11"} -{"name":{"first":"Teodoro","last":"Kostura"},"gender":"male","birthday":"1961-05-17","contact":{"address":{"street":"7 234th St","zip":"95665","city":"Pine Grove","state":"CA"},"email":["teodoro.kostura@nosql-matters.org"],"region":"209","phone":[]},"likes":["shopping"],"memberSince":"2010-04-10"} -{"name":{"first":"Jennefer","last":"Campagne"},"gender":"female","birthday":"1979-05-31","contact":{"address":{"street":"14 198th St","zip":"84093","city":"Sandy","state":"UT"},"email":["jennefer.campagne@nosql-matters.org","jennefer@nosql-matters.org"],"region":"801","phone":[]},"likes":["chatting","checkers","reading"],"memberSince":"2010-06-13"} -{"name":{"first":"Serina","last":"Erker"},"gender":"female","birthday":"1947-04-11","contact":{"address":{"street":"22 Last chance Loop","zip":"74965","city":"Westville","state":"OK"},"email":["serina.erker@nosql-matters.org","serina@nosql-matters.org"],"region":"918","phone":["918-1267363"]},"likes":["shopping","chess","ironing"],"memberSince":"2011-11-12"} -{"name":{"first":"Evonne","last":"Laurimore"},"gender":"female","birthday":"1948-11-12","contact":{"address":{"street":"3 Half mound Run","zip":"17853","city":"Mount Pleasant Mills","state":"PA"},"email":["evonne.laurimore@nosql-matters.org","evonne@nosql-matters.org"],"region":"570","phone":["570-8153097"]},"likes":[],"memberSince":"2011-08-27"} -{"name":{"first":"Phylicia","last":"Coronel"},"gender":"female","birthday":"1952-10-22","contact":{"address":{"street":"20 Sedgwick Pl","zip":"70575","city":"Perry","state":"LA"},"email":["phylicia.coronel@nosql-matters.org","coronel@nosql-matters.org"],"region":"337","phone":[]},"likes":[],"memberSince":"2011-04-28"} -{"name":{"first":"Brett","last":"Lisowe"},"gender":"male","birthday":"1976-12-04","contact":{"address":{"street":"10 266th Ave","zip":"56114","city":"Avoca","state":"MN"},"email":["brett.lisowe@nosql-matters.org","lisowe@nosql-matters.org"],"region":"507","phone":["507-7162907"]},"likes":["skiing"],"memberSince":"2010-01-25"} -{"name":{"first":"Jack","last":"Trowers"},"gender":"male","birthday":"1956-11-28","contact":{"address":{"street":"5 Belmont Hwy","zip":"77631","city":"Orange","state":"TX"},"email":["jack.trowers@nosql-matters.org"],"region":"409","phone":["409-0648955","409-2746712"]},"likes":["chatting","climbing"],"memberSince":"2010-06-12"} -{"name":{"first":"Michel","last":"Playle"},"gender":"female","birthday":"1992-03-24","contact":{"address":{"street":"11 257th St","zip":"64667","city":"Newtown","state":"MO"},"email":["michel.playle@nosql-matters.org","playle@nosql-matters.org"],"region":"660","phone":["660-8697273"]},"likes":["chatting"],"memberSince":"2009-01-19"} -{"name":{"first":"Devin","last":"Nahhas"},"gender":"male","birthday":"1964-04-10","contact":{"address":{"street":"20 California Hwy","zip":"45743","city":"Long Bottom","state":"OH"},"email":["devin.nahhas@nosql-matters.org"],"region":"740","phone":[]},"likes":["ironing"],"memberSince":"2010-01-05"} -{"name":{"first":"Kiana","last":"Askins"},"gender":"female","birthday":"1955-06-24","contact":{"address":{"street":"20 Wallace Ave","zip":"52566","city":"Kirkville","state":"IA"},"email":["kiana.askins@nosql-matters.org","askins@nosql-matters.org"],"region":"515","phone":["515-5262314"]},"likes":["swimming"],"memberSince":"2008-04-30"} -{"name":{"first":"Frances","last":"Stoss"},"gender":"male","birthday":"1947-02-22","contact":{"address":{"street":"19 Sedgwick Way","zip":"30077","city":"Roswell","state":"GA"},"email":["frances.stoss@nosql-matters.org","stoss@nosql-matters.org"],"region":"770","phone":["770-4699224"]},"likes":["running","climbing"],"memberSince":"2008-06-15"} -{"name":{"first":"Gregoria","last":"Mcneeley"},"gender":"female","birthday":"1959-08-29","contact":{"address":{"street":"19 New york Ave","zip":"50228","city":"Prairie City","state":"IA"},"email":["gregoria.mcneeley@nosql-matters.org"],"region":"515","phone":["515-2583558"]},"likes":["running","swimming","driving"],"memberSince":"2010-01-13"} -{"name":{"first":"Alda","last":"Hirpara"},"gender":"female","birthday":"1943-05-10","contact":{"address":{"street":"18 California Pl","zip":"95560","city":"Redway","state":"CA"},"email":["alda.hirpara@nosql-matters.org"],"region":"707","phone":["707-8771745"]},"likes":[],"memberSince":"2008-02-19"} -{"name":{"first":"Griselda","last":"Polite"},"gender":"female","birthday":"1985-12-21","contact":{"address":{"street":"2 Summit St","zip":"39206","city":"Jackson","state":"MS"},"email":["griselda.polite@nosql-matters.org","griselda@nosql-matters.org"],"region":"601","phone":["601-8683549"]},"likes":["chess","travelling"],"memberSince":"2010-06-22"} -{"name":{"first":"Serena","last":"Lidie"},"gender":"female","birthday":"1979-09-01","contact":{"address":{"street":"19 Branchton Aly","zip":"55020","city":"Elko","state":"MN"},"email":["serena.lidie@nosql-matters.org"],"region":"612","phone":["612-0533912"]},"likes":["running","reading"],"memberSince":"2012-05-14"} -{"name":{"first":"Tad","last":"Mesker"},"gender":"male","birthday":"1992-10-30","contact":{"address":{"street":"11 Beechwood Ln","zip":"38336","city":"Fruitvale","state":"TN"},"email":["tad.mesker@nosql-matters.org","mesker@nosql-matters.org"],"region":"901","phone":["901-2696632"]},"likes":["checkers"],"memberSince":"2010-03-08"} -{"name":{"first":"Jami","last":"Barlow"},"gender":"female","birthday":"1957-09-01","contact":{"address":{"street":"9 11th St","zip":"79702","city":"Midland","state":"TX"},"email":["jami.barlow@nosql-matters.org"],"region":"915","phone":["915-4557672"]},"likes":[],"memberSince":"2009-03-23"} -{"name":{"first":"Dusty","last":"Vandenbosch"},"gender":"male","birthday":"1942-10-13","contact":{"address":{"street":"11 Wallach Way","zip":"02907","city":"Providence","state":"RI"},"email":["dusty.vandenbosch@nosql-matters.org","dusty@nosql-matters.org"],"region":"401","phone":[]},"likes":[],"memberSince":"2007-06-05"} -{"name":{"first":"Aron","last":"Furfaro"},"gender":"male","birthday":"1956-03-15","contact":{"address":{"street":"7 17th St","zip":"33585","city":"Sumterville","state":"FL"},"email":["aron.furfaro@nosql-matters.org"],"region":"352","phone":["352-4595046","352-2203871"]},"likes":[],"memberSince":"2009-09-13"} -{"name":{"first":"Irving","last":"Evanchyk"},"gender":"male","birthday":"1967-07-09","contact":{"address":{"street":"19 Wallach Aly","zip":"43058","city":"Newark","state":"OH"},"email":["irving.evanchyk@nosql-matters.org"],"region":"740","phone":[]},"likes":["chess"],"memberSince":"2012-03-06"} -{"name":{"first":"Lino","last":"Milster"},"gender":"male","birthday":"1966-02-15","contact":{"address":{"street":"13 Beechwood Pl","zip":"58488","city":"Tuttle","state":"ND"},"email":["lino.milster@nosql-matters.org","lino@nosql-matters.org"],"region":"701","phone":["701-7968797","701-0292681"]},"likes":[],"memberSince":"2008-10-17"} -{"name":{"first":"John","last":"Dittberner"},"gender":"female","birthday":"1958-01-20","contact":{"address":{"street":"15 Branchton St","zip":"13696","city":"West Stockholm","state":"NY"},"email":["john.dittberner@nosql-matters.org"],"region":"315","phone":["315-9872143"]},"likes":[],"memberSince":"2007-12-18"} -{"name":{"first":"Arlene","last":"Branaman"},"gender":"female","birthday":"1962-06-21","contact":{"address":{"street":"20 19th St","zip":"88058","city":"San Miguel","state":"NM"},"email":["arlene.branaman@nosql-matters.org"],"region":"505","phone":["505-7113373"]},"likes":["chess"],"memberSince":"2011-11-27"} -{"name":{"first":"Andy","last":"Zibell"},"gender":"male","birthday":"1957-12-15","contact":{"address":{"street":"12 266th Ave","zip":"30010","city":"Norcross","state":"GA"},"email":["andy.zibell@nosql-matters.org","zibell@nosql-matters.org","andy@nosql-matters.org"],"region":"770","phone":["770-1934705"]},"likes":["boxing"],"memberSince":"2008-06-03"} -{"name":{"first":"Ferdinand","last":"Misenheimer"},"gender":"male","birthday":"1948-10-03","contact":{"address":{"street":"16 5th St","zip":"12456","city":"Mount Marion","state":"NY"},"email":["ferdinand.misenheimer@nosql-matters.org","ferdinand@nosql-matters.org"],"region":"914","phone":[]},"likes":["snowboarding","travelling"],"memberSince":"2010-11-06"} -{"name":{"first":"Sadye","last":"Ghaemmaghami"},"gender":"female","birthday":"1940-02-06","contact":{"address":{"street":"16 11th Ave","zip":"30650","city":"Madison","state":"GA"},"email":["sadye.ghaemmaghami@nosql-matters.org","sadye@nosql-matters.org"],"region":"706","phone":["706-5364048"]},"likes":["skiing"],"memberSince":"2007-09-22"} -{"name":{"first":"Ned","last":"Perza"},"gender":"male","birthday":"1961-04-09","contact":{"address":{"street":"15 Beekman Loop","zip":"32068","city":"Middleburg","state":"FL"},"email":["ned.perza@nosql-matters.org","ned@nosql-matters.org"],"region":"904","phone":["904-6398525"]},"likes":[],"memberSince":"2009-10-02"} -{"name":{"first":"Jaclyn","last":"Igbal"},"gender":"female","birthday":"1961-09-24","contact":{"address":{"street":"8 Belmont Dr","zip":"05487","city":"Starksboro","state":"VT"},"email":["jaclyn.igbal@nosql-matters.org","igbal@nosql-matters.org","jaclyn@nosql-matters.org"],"region":"802","phone":["802-6127987"]},"likes":["running","skiing","ironing"],"memberSince":"2008-09-20"} -{"name":{"first":"Brandon","last":"Lesher"},"gender":"male","birthday":"1940-09-23","contact":{"address":{"street":"13 Fraser Aly","zip":"78406","city":"Corpus Christi","state":"TX"},"email":["brandon.lesher@nosql-matters.org"],"region":"361","phone":["361-4134537"]},"likes":[],"memberSince":"2009-07-10"} -{"name":{"first":"Virginia","last":"Weadon"},"gender":"female","birthday":"1992-01-15","contact":{"address":{"street":"16 Connecticut Blvd","zip":"81046","city":"Hoehne","state":"CO"},"email":["virginia.weadon@nosql-matters.org","weadon@nosql-matters.org","virginia@nosql-matters.org"],"region":"719","phone":["719-6625102"]},"likes":[],"memberSince":"2009-10-10"} -{"name":{"first":"Dallas","last":"Spreen"},"gender":"male","birthday":"1962-01-10","contact":{"address":{"street":"12 Main Rd","zip":"01503","city":"Berlin","state":"MA"},"email":["dallas.spreen@nosql-matters.org","spreen@nosql-matters.org","dallas@nosql-matters.org"],"region":"978","phone":["978-2484778"]},"likes":["running","chatting"],"memberSince":"2012-01-02"} -{"name":{"first":"Darron","last":"Barklow"},"gender":"male","birthday":"1962-08-06","contact":{"address":{"street":"12 Spring garden Dr","zip":"40874","city":"Warbranch","state":"KY"},"email":["darron.barklow@nosql-matters.org"],"region":"606","phone":["606-6334410"]},"likes":["chess"],"memberSince":"2012-05-03"} -{"name":{"first":"Jerold","last":"Bulnes"},"gender":"male","birthday":"1975-06-22","contact":{"address":{"street":"17 Crowell Cir","zip":"36527","city":"Spanish Fort","state":"AL"},"email":["jerold.bulnes@nosql-matters.org","bulnes@nosql-matters.org"],"region":"334","phone":[]},"likes":["climbing"],"memberSince":"2008-02-28"} -{"name":{"first":"Rueben","last":"Hazel"},"gender":"male","birthday":"1979-04-25","contact":{"address":{"street":"11 Spring Cir","zip":"15331","city":"Ellsworth","state":"PA"},"email":["rueben.hazel@nosql-matters.org"],"region":"724","phone":["724-3022440"]},"likes":["checkers"],"memberSince":"2007-11-07"} -{"name":{"first":"Nicolasa","last":"Buttino"},"gender":"female","birthday":"1988-08-23","contact":{"address":{"street":"5 290th Ave","zip":"29101","city":"Mc Bee","state":"SC"},"email":["nicolasa.buttino@nosql-matters.org","buttino@nosql-matters.org"],"region":"843","phone":[]},"likes":["chess","driving"],"memberSince":"2011-02-01"} -{"name":{"first":"Grover","last":"Cardinale"},"gender":"male","birthday":"1985-06-11","contact":{"address":{"street":"18 Park Loop","zip":"92420","city":"San Bernardino","state":"CA"},"email":["grover.cardinale@nosql-matters.org","cardinale@nosql-matters.org"],"region":"909","phone":["909-9933692","909-5191980"]},"likes":["snowboarding","skiing","climbing"],"memberSince":"2010-05-03"} -{"name":{"first":"Maria","last":"Koko"},"gender":"female","birthday":"1987-06-26","contact":{"address":{"street":"14 21st St","zip":"62419","city":"Calhoun","state":"IL"},"email":["maria.koko@nosql-matters.org","maria@nosql-matters.org"],"region":"618","phone":["618-8728557","618-9043414"]},"likes":["running","skiing"],"memberSince":"2009-07-10"} -{"name":{"first":"Darrick","last":"Macke"},"gender":"male","birthday":"1992-09-19","contact":{"address":{"street":"21 115th St","zip":"64755","city":"Jasper","state":"MO"},"email":["darrick.macke@nosql-matters.org","darrick@nosql-matters.org"],"region":"417","phone":["417-5521786","417-1057985"]},"likes":["shopping","chess","reading","snowboarding"],"memberSince":"2009-08-19"} -{"name":{"first":"Gene","last":"Amancio"},"gender":"male","birthday":"1971-08-24","contact":{"address":{"street":"7 257th St","zip":"02381","city":"White Horse Beach","state":"MA"},"email":["gene.amancio@nosql-matters.org"],"region":"508","phone":["508-6181327","508-6865512"]},"likes":["shopping"],"memberSince":"2008-11-03"} -{"name":{"first":"Guy","last":"Alie"},"gender":"male","birthday":"1962-03-03","contact":{"address":{"street":"10 Clifton Ave","zip":"19889","city":"Wilmington","state":"DE"},"email":["guy.alie@nosql-matters.org"],"region":"302","phone":["302-1248635","302-0470473"]},"likes":["checkers"],"memberSince":"2011-11-05"} -{"name":{"first":"Marcellus","last":"Gonsoulin"},"gender":"male","birthday":"1953-01-19","contact":{"address":{"street":"20 Chapin St","zip":"75353","city":"Dallas","state":"TX"},"email":["marcellus.gonsoulin@nosql-matters.org"],"region":"214","phone":["214-5515572","214-7723162"]},"likes":[],"memberSince":"2008-12-03"} -{"name":{"first":"Junior","last":"Costeira"},"gender":"male","birthday":"1976-03-06","contact":{"address":{"street":"20 15th St","zip":"33315","city":"Fort Lauderdale","state":"FL"},"email":["junior.costeira@nosql-matters.org"],"region":"954","phone":[]},"likes":["driving"],"memberSince":"2008-08-23"} -{"name":{"first":"Georgina","last":"Sabet"},"gender":"female","birthday":"1981-08-28","contact":{"address":{"street":"17 Morningside Ave","zip":"55090","city":"Willernie","state":"MN"},"email":["georgina.sabet@nosql-matters.org","georgina@nosql-matters.org"],"region":"651","phone":["651-4345179"]},"likes":[],"memberSince":"2007-12-29"} -{"name":{"first":"Kristopher","last":"Gelfo"},"gender":"male","birthday":"1966-04-03","contact":{"address":{"street":"9 242nd St","zip":"93901","city":"Salinas","state":"CA"},"email":["kristopher.gelfo@nosql-matters.org"],"region":"831","phone":["831-1630000"]},"likes":["chess"],"memberSince":"2012-03-27"} -{"name":{"first":"Karina","last":"Oberdier"},"gender":"female","birthday":"1981-03-04","contact":{"address":{"street":"10 Phillips Way","zip":"54639","city":"La Farge","state":"WI"},"email":["karina.oberdier@nosql-matters.org","karina@nosql-matters.org"],"region":"608","phone":[]},"likes":[],"memberSince":"2008-03-19"} -{"name":{"first":"Mohammed","last":"Betran"},"gender":"male","birthday":"1946-10-24","contact":{"address":{"street":"7 Deer Way","zip":"30325","city":"Atlanta","state":"GA"},"email":["mohammed.betran@nosql-matters.org","mohammed@nosql-matters.org"],"region":"404","phone":[]},"likes":[],"memberSince":"2009-03-23"} -{"name":{"first":"Brandon","last":"Yentsch"},"gender":"male","birthday":"1956-06-26","contact":{"address":{"street":"14 Deer Rd","zip":"85079","city":"Phoenix","state":"AZ"},"email":["brandon.yentsch@nosql-matters.org"],"region":"602","phone":["602-9362870"]},"likes":["travelling"],"memberSince":"2009-09-11"} -{"name":{"first":"Isabel","last":"Rupert"},"gender":"female","birthday":"1966-03-19","contact":{"address":{"street":"19 Belmont Run","zip":"34216","city":"Anna Maria","state":"FL"},"email":["isabel.rupert@nosql-matters.org","isabel@nosql-matters.org"],"region":"941","phone":[]},"likes":[],"memberSince":"2010-02-01"} -{"name":{"first":"Ernesto","last":"Bennis"},"gender":"male","birthday":"1964-05-21","contact":{"address":{"street":"3 New york Cir","zip":"95763","city":"Folsom","state":"CA"},"email":["ernesto.bennis@nosql-matters.org"],"region":"916","phone":["916-5404281"]},"likes":["biking","reading","ironing"],"memberSince":"2009-09-11"} -{"name":{"first":"Shanika","last":"Iheme"},"gender":"female","birthday":"1961-02-14","contact":{"address":{"street":"2 Biltmore Ct","zip":"71151","city":"Shreveport","state":"LA"},"email":["shanika.iheme@nosql-matters.org"],"region":"318","phone":["318-1520317"]},"likes":["running","skiing"],"memberSince":"2008-06-02"} -{"name":{"first":"Rico","last":"Nunez"},"gender":"male","birthday":"1974-01-18","contact":{"address":{"street":"6 Fuller Aly","zip":"84763","city":"Rockville","state":"UT"},"email":["rico.nunez@nosql-matters.org","nunez@nosql-matters.org"],"region":"435","phone":["435-8335433","435-5244452"]},"likes":["travelling"],"memberSince":"2011-02-26"} -{"name":{"first":"Michel","last":"Pickerill"},"gender":"male","birthday":"1968-07-17","contact":{"address":{"street":"5 4th St","zip":"66514","city":"Milford","state":"KS"},"email":["michel.pickerill@nosql-matters.org"],"region":"785","phone":["785-8813030"]},"likes":[],"memberSince":"2007-09-16"} -{"name":{"first":"Allyson","last":"Lia"},"gender":"female","birthday":"1989-09-02","contact":{"address":{"street":"8 4th St","zip":"08314","city":"Delmont","state":"NJ"},"email":["allyson.lia@nosql-matters.org","lia@nosql-matters.org","allyson@nosql-matters.org"],"region":"856","phone":["856-1443443"]},"likes":["skiing"],"memberSince":"2009-04-28"} -{"name":{"first":"Emmanuel","last":"Merana"},"gender":"male","birthday":"1972-10-13","contact":{"address":{"street":"20 Mintwood Ct","zip":"51554","city":"Mineola","state":"IA"},"email":["emmanuel.merana@nosql-matters.org","emmanuel@nosql-matters.org"],"region":"712","phone":["712-6793961","712-1645678"]},"likes":[],"memberSince":"2007-09-07"} -{"name":{"first":"Tyrone","last":"Stills"},"gender":"male","birthday":"1953-06-01","contact":{"address":{"street":"7 14th St","zip":"43032","city":"Kilbourne","state":"OH"},"email":["tyrone.stills@nosql-matters.org"],"region":"740","phone":["740-5458524"]},"likes":["climbing"],"memberSince":"2011-04-03"} -{"name":{"first":"Monty","last":"Skees"},"gender":"male","birthday":"1958-05-16","contact":{"address":{"street":"21 Mintwood Blvd","zip":"99829","city":"Hoonah","state":"AK"},"email":["monty.skees@nosql-matters.org"],"region":"907","phone":["907-1332055"]},"likes":["shopping"],"memberSince":"2009-11-18"} -{"name":{"first":"Iris","last":"Lindley"},"gender":"female","birthday":"1941-09-10","contact":{"address":{"street":"17 New york Run","zip":"53234","city":"Milwaukee","state":"WI"},"email":["iris.lindley@nosql-matters.org"],"region":"414","phone":[]},"likes":[],"memberSince":"2012-04-23"} -{"name":{"first":"Siobhan","last":"Mackie"},"gender":"female","birthday":"1969-03-10","contact":{"address":{"street":"11 River Hwy","zip":"81422","city":"Naturita","state":"CO"},"email":["siobhan.mackie@nosql-matters.org","mackie@nosql-matters.org"],"region":"970","phone":[]},"likes":["snowboarding","climbing"],"memberSince":"2010-08-25"} -{"name":{"first":"Darius","last":"Rasnick"},"gender":"male","birthday":"1979-11-12","contact":{"address":{"street":"22 Girard Dr","zip":"47119","city":"Floyds Knobs","state":"IN"},"email":["darius.rasnick@nosql-matters.org"],"region":"812","phone":["812-9827261"]},"likes":["checkers"],"memberSince":"2009-11-10"} -{"name":{"first":"Debi","last":"Broad"},"gender":"female","birthday":"1978-09-12","contact":{"address":{"street":"19 15th St","zip":"59410","city":"Augusta","state":"MT"},"email":["debi.broad@nosql-matters.org","debi@nosql-matters.org"],"region":"406","phone":[]},"likes":["shopping","ironing"],"memberSince":"2008-09-05"} -{"name":{"first":"Del","last":"Mettler"},"gender":"male","birthday":"1954-08-13","contact":{"address":{"street":"4 Corcoran Run","zip":"14614","city":"Rochester","state":"NY"},"email":["del.mettler@nosql-matters.org"],"region":"716","phone":["716-2197120"]},"likes":["chatting"],"memberSince":"2007-12-29"} -{"name":{"first":"Diego","last":"Blauman"},"gender":"male","birthday":"1963-12-26","contact":{"address":{"street":"18 20th Ave","zip":"74866","city":"Saint Louis","state":"OK"},"email":["diego.blauman@nosql-matters.org","diego@nosql-matters.org"],"region":"405","phone":[]},"likes":[],"memberSince":"2010-06-05"} -{"name":{"first":"Cary","last":"Whitenton"},"gender":"male","birthday":"1944-05-18","contact":{"address":{"street":"1 Fraser Aly","zip":"58078","city":"West Fargo","state":"ND"},"email":["cary.whitenton@nosql-matters.org","whitenton@nosql-matters.org"],"region":"701","phone":["701-8609174"]},"likes":["swimming","boxing"],"memberSince":"2007-06-20"} -{"name":{"first":"Dewayne","last":"Hotter"},"gender":"male","birthday":"1975-08-02","contact":{"address":{"street":"9 Sedgwick Dr","zip":"45810","city":"Ada","state":"OH"},"email":["dewayne.hotter@nosql-matters.org"],"region":"419","phone":[]},"likes":[],"memberSince":"2010-10-23"} -{"name":{"first":"Fredric","last":"Shutes"},"gender":"male","birthday":"1976-11-18","contact":{"address":{"street":"2 Vernon Ln","zip":"60455","city":"Bridgeview","state":"IL"},"email":["fredric.shutes@nosql-matters.org","fredric@nosql-matters.org"],"region":"708","phone":["708-2342134"]},"likes":["shopping","chatting"],"memberSince":"2012-03-16"} -{"name":{"first":"Maxwell","last":"Lajeunesse"},"gender":"male","birthday":"1976-02-22","contact":{"address":{"street":"15 Patriot Rd","zip":"93105","city":"Santa Barbara","state":"CA"},"email":["maxwell.lajeunesse@nosql-matters.org"],"region":"805","phone":["805-3722668"]},"likes":["biking"],"memberSince":"2009-03-01"} -{"name":{"first":"Eloy","last":"Alfieri"},"gender":"male","birthday":"1952-12-25","contact":{"address":{"street":"6 Main Loop","zip":"87724","city":"La Loma","state":"NM"},"email":["eloy.alfieri@nosql-matters.org","alfieri@nosql-matters.org","eloy@nosql-matters.org"],"region":"505","phone":["505-2373686","505-7505709"]},"likes":["boxing"],"memberSince":"2009-06-11"} -{"name":{"first":"Alec","last":"Murallies"},"gender":"male","birthday":"1967-06-25","contact":{"address":{"street":"16 242nd St","zip":"60948","city":"Loda","state":"IL"},"email":["alec.murallies@nosql-matters.org","murallies@nosql-matters.org"],"region":"217","phone":[]},"likes":["boxing"],"memberSince":"2009-03-13"} -{"name":{"first":"Salina","last":"Stilner"},"gender":"female","birthday":"1959-04-15","contact":{"address":{"street":"11 Branchton St","zip":"74553","city":"Kiowa","state":"OK"},"email":["salina.stilner@nosql-matters.org"],"region":"918","phone":["918-9747854","918-2219388"]},"likes":[],"memberSince":"2008-11-09"} -{"name":{"first":"Toney","last":"Hintergardt"},"gender":"male","birthday":"1955-03-12","contact":{"address":{"street":"1 Wallace Ct","zip":"91407","city":"Van Nuys","state":"CA"},"email":["toney.hintergardt@nosql-matters.org","toney@nosql-matters.org"],"region":"818","phone":[]},"likes":["running","checkers"],"memberSince":"2011-07-18"} -{"name":{"first":"Jayne","last":"Mihalchik"},"gender":"female","birthday":"1954-01-05","contact":{"address":{"street":"8 Neosho Rd","zip":"24553","city":"Gladstone","state":"VA"},"email":["jayne.mihalchik@nosql-matters.org","jayne@nosql-matters.org"],"region":"804","phone":["804-9954849","804-1145068"]},"likes":["ironing"],"memberSince":"2011-12-20"} -{"name":{"first":"Dean","last":"Twogood"},"gender":"male","birthday":"1988-07-18","contact":{"address":{"street":"14 8th St","zip":"68859","city":"North Loup","state":"NE"},"email":["dean.twogood@nosql-matters.org","twogood@nosql-matters.org"],"region":"308","phone":[]},"likes":["snowboarding","skiing"],"memberSince":"2011-12-31"} -{"name":{"first":"Brant","last":"Nohe"},"gender":"male","birthday":"1986-06-11","contact":{"address":{"street":"16 Harvard Hwy","zip":"00646","city":"Dorado","state":"PR"},"email":["brant.nohe@nosql-matters.org","nohe@nosql-matters.org"],"region":"787","phone":["787-4009647","787-9339611"]},"likes":["running","driving"],"memberSince":"2010-09-14"} -{"name":{"first":"Isaias","last":"Ilg"},"gender":"male","birthday":"1969-09-24","contact":{"address":{"street":"9 Rawlins Rd","zip":"27629","city":"Raleigh","state":"NC"},"email":["isaias.ilg@nosql-matters.org","ilg@nosql-matters.org"],"region":"919","phone":["919-3777160","919-6761119"]},"likes":[],"memberSince":"2008-05-05"} -{"name":{"first":"Armand","last":"Bradon"},"gender":"male","birthday":"1962-07-04","contact":{"address":{"street":"17 1st Ave","zip":"92255","city":"Palm Desert","state":"CA"},"email":["armand.bradon@nosql-matters.org","bradon@nosql-matters.org"],"region":"760","phone":["760-4037657","760-0045201"]},"likes":[],"memberSince":"2007-11-14"} -{"name":{"first":"Nanci","last":"Hindin"},"gender":"female","birthday":"1948-03-03","contact":{"address":{"street":"7 Vernon St","zip":"14129","city":"Perrysburg","state":"NY"},"email":["nanci.hindin@nosql-matters.org"],"region":"716","phone":["716-9274608"]},"likes":["biking","swimming","climbing"],"memberSince":"2007-11-25"} -{"name":{"first":"Joanne","last":"Mastalski"},"gender":"female","birthday":"1971-04-22","contact":{"address":{"street":"18 Industrial St","zip":"47348","city":"Hartford City","state":"IN"},"email":["joanne.mastalski@nosql-matters.org","mastalski@nosql-matters.org"],"region":"765","phone":[]},"likes":["shopping","reading"],"memberSince":"2010-02-03"} -{"name":{"first":"Nisha","last":"Villescas"},"gender":"female","birthday":"1979-09-11","contact":{"address":{"street":"18 115th Ave","zip":"46953","city":"Marion","state":"IN"},"email":["nisha.villescas@nosql-matters.org"],"region":"765","phone":["765-7771005"]},"likes":["travelling"],"memberSince":"2012-04-30"} -{"name":{"first":"Gail","last":"Guitian"},"gender":"female","birthday":"1947-04-19","contact":{"address":{"street":"10 Euclid St","zip":"45644","city":"Kingston","state":"OH"},"email":["gail.guitian@nosql-matters.org","gail@nosql-matters.org"],"region":"740","phone":[]},"likes":["shopping"],"memberSince":"2008-04-28"} -{"name":{"first":"Mathew","last":"Seckington"},"gender":"male","birthday":"1961-01-27","contact":{"address":{"street":"14 16th Ave","zip":"16844","city":"Julian","state":"PA"},"email":["mathew.seckington@nosql-matters.org"],"region":"814","phone":["814-5655631"]},"likes":[],"memberSince":"2007-07-11"} -{"name":{"first":"Gwyn","last":"Boran"},"gender":"female","birthday":"1974-01-19","contact":{"address":{"street":"9 Summit Ct","zip":"44320","city":"Akron","state":"OH"},"email":["gwyn.boran@nosql-matters.org","gwyn@nosql-matters.org"],"region":"330","phone":["330-9282227"]},"likes":[],"memberSince":"2009-02-23"} -{"name":{"first":"Scarlett","last":"Roberston"},"gender":"female","birthday":"1991-01-24","contact":{"address":{"street":"14 Morningside Hwy","zip":"99507","city":"Anchorage","state":"AK"},"email":["scarlett.roberston@nosql-matters.org","roberston@nosql-matters.org"],"region":"907","phone":["907-9048643"]},"likes":["snowboarding","climbing"],"memberSince":"2009-08-21"} -{"name":{"first":"Katrina","last":"Lindel"},"gender":"female","birthday":"1951-11-10","contact":{"address":{"street":"5 Euclid Cir","zip":"15019","city":"Bulger","state":"PA"},"email":["katrina.lindel@nosql-matters.org","katrina@nosql-matters.org"],"region":"724","phone":[]},"likes":[],"memberSince":"2012-02-26"} -{"name":{"first":"Ciera","last":"Mathre"},"gender":"female","birthday":"1978-11-23","contact":{"address":{"street":"9 Lanier Way","zip":"10079","city":"New York","state":"NY"},"email":["ciera.mathre@nosql-matters.org","mathre@nosql-matters.org"],"region":"212","phone":["212-0700179"]},"likes":[],"memberSince":"2010-08-09"} -{"name":{"first":"Cornell","last":"Stotesberry"},"gender":"male","birthday":"1969-12-08","contact":{"address":{"street":"2 California Blvd","zip":"64679","city":"Spickard","state":"MO"},"email":["cornell.stotesberry@nosql-matters.org","stotesberry@nosql-matters.org"],"region":"660","phone":["660-9426118"]},"likes":["skiing"],"memberSince":"2010-03-18"} -{"name":{"first":"Carmen","last":"Kell"},"gender":"male","birthday":"1982-06-12","contact":{"address":{"street":"2 198th Ave","zip":"43035","city":"Lewis Center","state":"OH"},"email":["carmen.kell@nosql-matters.org"],"region":"740","phone":["740-9537444","740-9040241"]},"likes":["boxing"],"memberSince":"2008-10-26"} -{"name":{"first":"Maegan","last":"Belzung"},"gender":"female","birthday":"1986-04-28","contact":{"address":{"street":"1 6th St","zip":"97367","city":"Lincoln City","state":"OR"},"email":["maegan.belzung@nosql-matters.org"],"region":"541","phone":[]},"likes":["chatting","snowboarding","skiing"],"memberSince":"2010-12-12"} -{"name":{"first":"Myles","last":"Jemenez"},"gender":"male","birthday":"1985-04-05","contact":{"address":{"street":"11 1st Ave","zip":"95151","city":"San Jose","state":"CA"},"email":["myles.jemenez@nosql-matters.org"],"region":"408","phone":["408-7958997"]},"likes":["ironing"],"memberSince":"2010-05-03"} -{"name":{"first":"Hildred","last":"Mills"},"gender":"female","birthday":"1975-01-27","contact":{"address":{"street":"1 Riverview Run","zip":"85225","city":"Chandler","state":"AZ"},"email":["hildred.mills@nosql-matters.org","hildred@nosql-matters.org"],"region":"480","phone":["480-2288984"]},"likes":[],"memberSince":"2010-12-18"} -{"name":{"first":"Yuki","last":"Roehrig"},"gender":"female","birthday":"1994-01-25","contact":{"address":{"street":"15 Last chance Blvd","zip":"13312","city":"Brantingham","state":"NY"},"email":["yuki.roehrig@nosql-matters.org"],"region":"315","phone":["315-5551763","315-5726053"]},"likes":[],"memberSince":"2009-01-04"} -{"name":{"first":"Jed","last":"Issler"},"gender":"male","birthday":"1983-05-26","contact":{"address":{"street":"16 Spring garden Loop","zip":"42558","city":"Tateville","state":"KY"},"email":["jed.issler@nosql-matters.org"],"region":"606","phone":["606-5917436","606-5993148"]},"likes":[],"memberSince":"2012-01-28"} -{"name":{"first":"Kareem","last":"Seigfried"},"gender":"male","birthday":"1974-12-18","contact":{"address":{"street":"15 9th Ave","zip":"14878","city":"Rock Stream","state":"NY"},"email":["kareem.seigfried@nosql-matters.org","seigfried@nosql-matters.org"],"region":"607","phone":["607-6048992"]},"likes":["travelling","skiing"],"memberSince":"2009-07-08"} -{"name":{"first":"Izetta","last":"Kohout"},"gender":"female","birthday":"1980-06-19","contact":{"address":{"street":"20 Pacific Cir","zip":"07182","city":"Newark","state":"NJ"},"email":["izetta.kohout@nosql-matters.org","kohout@nosql-matters.org","izetta@nosql-matters.org"],"region":"973","phone":["973-9777817"]},"likes":[],"memberSince":"2009-04-19"} -{"name":{"first":"Kyoko","last":"Geerdes"},"gender":"female","birthday":"1963-05-10","contact":{"address":{"street":"21 Euclid Way","zip":"38177","city":"Memphis","state":"TN"},"email":["kyoko.geerdes@nosql-matters.org"],"region":"901","phone":["901-7106473"]},"likes":["reading"],"memberSince":"2010-07-04"} -{"name":{"first":"Garret","last":"Forberg"},"gender":"male","birthday":"1952-07-17","contact":{"address":{"street":"6 Corcoran Run","zip":"78142","city":"Normanna","state":"TX"},"email":["garret.forberg@nosql-matters.org","forberg@nosql-matters.org","garret@nosql-matters.org"],"region":"361","phone":["361-6743557"]},"likes":["skiing"],"memberSince":"2008-04-23"} -{"name":{"first":"Wilhemina","last":"Mccarroll"},"gender":"female","birthday":"1983-11-16","contact":{"address":{"street":"21 19th St","zip":"48310","city":"Sterling Heights","state":"MI"},"email":["wilhemina.mccarroll@nosql-matters.org","wilhemina@nosql-matters.org"],"region":"810","phone":["810-1515159","810-5129940"]},"likes":["running","chess"],"memberSince":"2007-11-24"} -{"name":{"first":"Bonny","last":"Guella"},"gender":"female","birthday":"1940-06-05","contact":{"address":{"street":"14 11th St","zip":"31328","city":"Tybee Island","state":"GA"},"email":["bonny.guella@nosql-matters.org","guella@nosql-matters.org"],"region":"912","phone":[]},"likes":["climbing"],"memberSince":"2010-01-05"} -{"name":{"first":"Jewell","last":"Wilhoit"},"gender":"male","birthday":"1970-06-10","contact":{"address":{"street":"9 Last chance Blvd","zip":"38110","city":"Memphis","state":"TN"},"email":["jewell.wilhoit@nosql-matters.org"],"region":"901","phone":[]},"likes":["biking"],"memberSince":"2012-03-22"} -{"name":{"first":"Frankie","last":"Schwier"},"gender":"male","birthday":"1991-08-09","contact":{"address":{"street":"18 Beekman Blvd","zip":"22546","city":"Ruther Glen","state":"VA"},"email":["frankie.schwier@nosql-matters.org"],"region":"804","phone":["804-2940791"]},"likes":["snowboarding","climbing"],"memberSince":"2009-12-11"} -{"name":{"first":"Tamara","last":"Stoneberger"},"gender":"female","birthday":"1956-11-12","contact":{"address":{"street":"6 Euclid Hwy","zip":"49423","city":"Holland","state":"MI"},"email":["tamara.stoneberger@nosql-matters.org","tamara@nosql-matters.org"],"region":"616","phone":[]},"likes":["driving"],"memberSince":"2009-08-19"} -{"name":{"first":"Zona","last":"Sumera"},"gender":"female","birthday":"1986-03-13","contact":{"address":{"street":"10 Willard Ave","zip":"28513","city":"Ayden","state":"NC"},"email":["zona.sumera@nosql-matters.org","zona@nosql-matters.org"],"region":"252","phone":["252-0356670"]},"likes":[],"memberSince":"2010-03-20"} -{"name":{"first":"Vanessa","last":"Debem"},"gender":"female","birthday":"1988-03-29","contact":{"address":{"street":"21 Woodlawn Hwy","zip":"15227","city":"Pittsburgh","state":"PA"},"email":["vanessa.debem@nosql-matters.org","debem@nosql-matters.org","vanessa@nosql-matters.org"],"region":"412","phone":["412-3799295"]},"likes":["ironing"],"memberSince":"2008-01-23"} -{"name":{"first":"Carlton","last":"Zaharek"},"gender":"male","birthday":"1941-04-18","contact":{"address":{"street":"4 Ottawa Loop","zip":"67736","city":"Gove","state":"KS"},"email":["carlton.zaharek@nosql-matters.org","zaharek@nosql-matters.org"],"region":"785","phone":["785-0311312"]},"likes":["biking","chess"],"memberSince":"2007-11-08"} -{"name":{"first":"Jessica","last":"Kines"},"gender":"female","birthday":"1988-08-03","contact":{"address":{"street":"15 Laramie Hwy","zip":"14897","city":"Whitesville","state":"NY"},"email":["jessica.kines@nosql-matters.org","kines@nosql-matters.org"],"region":"607","phone":[]},"likes":[],"memberSince":"2012-03-24"} -{"name":{"first":"Sherilyn","last":"Trethewey"},"gender":"female","birthday":"1966-02-24","contact":{"address":{"street":"1 234th Ave","zip":"80731","city":"Haxtun","state":"CO"},"email":["sherilyn.trethewey@nosql-matters.org","sherilyn@nosql-matters.org"],"region":"970","phone":["970-2913324"]},"likes":["skiing"],"memberSince":"2011-09-30"} -{"name":{"first":"Hobert","last":"Henneberger"},"gender":"male","birthday":"1993-04-29","contact":{"address":{"street":"9 8th Ave","zip":"78801","city":"Uvalde","state":"TX"},"email":["hobert.henneberger@nosql-matters.org","henneberger@nosql-matters.org"],"region":"830","phone":["830-9456912"]},"likes":[],"memberSince":"2011-03-26"} -{"name":{"first":"Marilee","last":"Lacoy"},"gender":"female","birthday":"1982-12-18","contact":{"address":{"street":"9 Wallace Rd","zip":"38685","city":"Waterford","state":"MS"},"email":["marilee.lacoy@nosql-matters.org","lacoy@nosql-matters.org","marilee@nosql-matters.org"],"region":"662","phone":["662-9896921"]},"likes":["shopping","chess","travelling"],"memberSince":"2008-04-05"} -{"name":{"first":"Risa","last":"Hence"},"gender":"female","birthday":"1957-09-12","contact":{"address":{"street":"19 262nd St","zip":"37239","city":"Nashville","state":"TN"},"email":["risa.hence@nosql-matters.org","hence@nosql-matters.org"],"region":"615","phone":["615-2801872"]},"likes":[],"memberSince":"2009-12-11"} -{"name":{"first":"Susan","last":"Sommerfeld"},"gender":"female","birthday":"1974-09-30","contact":{"address":{"street":"22 Wallick Rd","zip":"32573","city":"Pensacola","state":"FL"},"email":["susan.sommerfeld@nosql-matters.org","sommerfeld@nosql-matters.org"],"region":"850","phone":["850-3221596","850-2331971"]},"likes":[],"memberSince":"2008-03-08"} -{"name":{"first":"Kacy","last":"Herdman"},"gender":"female","birthday":"1959-01-01","contact":{"address":{"street":"15 290th St","zip":"93109","city":"Santa Barbara","state":"CA"},"email":["kacy.herdman@nosql-matters.org","herdman@nosql-matters.org"],"region":"805","phone":["805-6363910","805-3477730"]},"likes":["swimming","chess"],"memberSince":"2012-01-22"} -{"name":{"first":"Avery","last":"Degreenia"},"gender":"male","birthday":"1946-09-25","contact":{"address":{"street":"6 Harper Pl","zip":"45621","city":"Coalton","state":"OH"},"email":["avery.degreenia@nosql-matters.org","avery@nosql-matters.org"],"region":"740","phone":["740-2096095"]},"likes":[],"memberSince":"2010-03-25"} -{"name":{"first":"Colby","last":"Fugueroa"},"gender":"female","birthday":"1960-01-07","contact":{"address":{"street":"10 California Pl","zip":"55437","city":"Minneapolis","state":"MN"},"email":["colby.fugueroa@nosql-matters.org"],"region":"612","phone":[]},"likes":["chatting","checkers","travelling"],"memberSince":"2010-01-12"} -{"name":{"first":"Micah","last":"Keever"},"gender":"male","birthday":"1944-02-19","contact":{"address":{"street":"20 115th Ave","zip":"22150","city":"Springfield","state":"VA"},"email":["micah.keever@nosql-matters.org"],"region":"703","phone":[]},"likes":[],"memberSince":"2012-03-09"} -{"name":{"first":"Caterina","last":"Devane"},"gender":"female","birthday":"1945-04-29","contact":{"address":{"street":"2 10th St","zip":"91395","city":"Mission Hills","state":"CA"},"email":["caterina.devane@nosql-matters.org"],"region":"818","phone":["818-4223471"]},"likes":["climbing"],"memberSince":"2009-10-14"} -{"name":{"first":"Audrea","last":"Magliacane"},"gender":"female","birthday":"1953-04-05","contact":{"address":{"street":"8 20th Ave","zip":"19193","city":"Philadelphia","state":"PA"},"email":["audrea.magliacane@nosql-matters.org"],"region":"215","phone":["215-8414677","215-7918616"]},"likes":["checkers","snowboarding","travelling","ironing"],"memberSince":"2009-02-04"} -{"name":{"first":"Antione","last":"Batten"},"gender":"male","birthday":"1981-09-29","contact":{"address":{"street":"6 290th St","zip":"07063","city":"Plainfield","state":"NJ"},"email":["antione.batten@nosql-matters.org","antione@nosql-matters.org"],"region":"908","phone":["908-4768716"]},"likes":["ironing"],"memberSince":"2009-01-14"} -{"name":{"first":"Glenn","last":"Muetzel"},"gender":"male","birthday":"1991-05-22","contact":{"address":{"street":"14 Neosho Dr","zip":"79718","city":"Balmorhea","state":"TX"},"email":["glenn.muetzel@nosql-matters.org"],"region":"915","phone":["915-8862318"]},"likes":["chess","driving"],"memberSince":"2010-12-22"} -{"name":{"first":"Elissa","last":"Borjon"},"gender":"female","birthday":"1985-04-21","contact":{"address":{"street":"2 Logeman Ln","zip":"21532","city":"Frostburg","state":"MD"},"email":["elissa.borjon@nosql-matters.org","elissa@nosql-matters.org"],"region":"301","phone":[]},"likes":["running","climbing"],"memberSince":"2010-10-01"} -{"name":{"first":"Alonso","last":"Holstege"},"gender":"male","birthday":"1957-06-26","contact":{"address":{"street":"21 Kalorama Ln","zip":"77461","city":"Needville","state":"TX"},"email":["alonso.holstege@nosql-matters.org","alonso@nosql-matters.org"],"region":"281","phone":["281-2084589","281-8965277"]},"likes":["shopping"],"memberSince":"2007-08-26"} -{"name":{"first":"Brianne","last":"Amsbaugh"},"gender":"female","birthday":"1943-09-21","contact":{"address":{"street":"12 Ottawa Hwy","zip":"16249","city":"Rural Valley","state":"PA"},"email":["brianne.amsbaugh@nosql-matters.org"],"region":"724","phone":["724-6639467"]},"likes":["ironing"],"memberSince":"2009-12-20"} -{"name":{"first":"Manual","last":"Minihan"},"gender":"male","birthday":"1959-11-13","contact":{"address":{"street":"1 Patriot Dr","zip":"54003","city":"Beldenville","state":"WI"},"email":["manual.minihan@nosql-matters.org"],"region":"715","phone":["715-0527237"]},"likes":[],"memberSince":"2011-05-31"} -{"name":{"first":"Martina","last":"Arcilla"},"gender":"female","birthday":"1942-05-17","contact":{"address":{"street":"9 14th St","zip":"19057","city":"Levittown","state":"PA"},"email":["martina.arcilla@nosql-matters.org","arcilla@nosql-matters.org","martina@nosql-matters.org"],"region":"215","phone":[]},"likes":["running","biking"],"memberSince":"2010-03-06"} -{"name":{"first":"Herma","last":"Wale"},"gender":"female","birthday":"1968-03-19","contact":{"address":{"street":"13 Harper Loop","zip":"78952","city":"Plum","state":"TX"},"email":["herma.wale@nosql-matters.org","wale@nosql-matters.org"],"region":"409","phone":[]},"likes":[],"memberSince":"2010-12-08"} -{"name":{"first":"Vivan","last":"Matskin"},"gender":"female","birthday":"1955-08-26","contact":{"address":{"street":"9 California Pl","zip":"17930","city":"Cumbola","state":"PA"},"email":["vivan.matskin@nosql-matters.org","matskin@nosql-matters.org","vivan@nosql-matters.org"],"region":"570","phone":["570-0409697"]},"likes":["reading"],"memberSince":"2008-12-14"} -{"name":{"first":"Nancie","last":"Mounts"},"gender":"female","birthday":"1987-11-09","contact":{"address":{"street":"17 New york Aly","zip":"14138","city":"South Dayton","state":"NY"},"email":["nancie.mounts@nosql-matters.org","nancie@nosql-matters.org"],"region":"716","phone":["716-8812836"]},"likes":["chatting"],"memberSince":"2008-01-27"} -{"name":{"first":"Deeanna","last":"Malech"},"gender":"female","birthday":"1993-08-05","contact":{"address":{"street":"11 13th St","zip":"15841","city":"Force","state":"PA"},"email":["deeanna.malech@nosql-matters.org","deeanna@nosql-matters.org"],"region":"814","phone":["814-2560093"]},"likes":["chatting","driving"],"memberSince":"2010-01-07"} -{"name":{"first":"Ezequiel","last":"Beran"},"gender":"male","birthday":"1983-06-27","contact":{"address":{"street":"8 Wallach Cir","zip":"95351","city":"Modesto","state":"CA"},"email":["ezequiel.beran@nosql-matters.org","beran@nosql-matters.org"],"region":"209","phone":["209-0358644","209-2593789"]},"likes":["shopping","boxing","skiing"],"memberSince":"2008-03-31"} -{"name":{"first":"Pasty","last":"Oba"},"gender":"female","birthday":"1947-02-26","contact":{"address":{"street":"19 Ontario St","zip":"12255","city":"Albany","state":"NY"},"email":["pasty.oba@nosql-matters.org"],"region":"518","phone":[]},"likes":["reading"],"memberSince":"2008-05-08"} -{"name":{"first":"Kaycee","last":"Deroko"},"gender":"female","birthday":"1976-08-10","contact":{"address":{"street":"5 Mozart Cir","zip":"20741","city":"College Park","state":"MD"},"email":["kaycee.deroko@nosql-matters.org"],"region":"301","phone":["301-5505044"]},"likes":["ironing"],"memberSince":"2010-12-22"} -{"name":{"first":"Steve","last":"Duell"},"gender":"male","birthday":"1969-09-06","contact":{"address":{"street":"17 Clifton Way","zip":"54847","city":"Iron River","state":"WI"},"email":["steve.duell@nosql-matters.org"],"region":"715","phone":["715-4749834","715-7805256"]},"likes":["chatting"],"memberSince":"2008-03-31"} -{"name":{"first":"Hugh","last":"Lamirand"},"gender":"male","birthday":"1981-11-09","contact":{"address":{"street":"22 Half mound Ln","zip":"35814","city":"Huntsville","state":"AL"},"email":["hugh.lamirand@nosql-matters.org"],"region":"256","phone":[]},"likes":[],"memberSince":"2010-02-08"} -{"name":{"first":"Jamie","last":"Ventors"},"gender":"female","birthday":"1989-01-07","contact":{"address":{"street":"19 Logeman Hwy","zip":"62851","city":"Keenes","state":"IL"},"email":["jamie.ventors@nosql-matters.org","ventors@nosql-matters.org","jamie@nosql-matters.org"],"region":"618","phone":[]},"likes":["chess"],"memberSince":"2010-02-26"} -{"name":{"first":"Archie","last":"Elks"},"gender":"male","birthday":"1988-08-05","contact":{"address":{"street":"9 Calvert Loop","zip":"49314","city":"Burnips","state":"MI"},"email":["archie.elks@nosql-matters.org"],"region":"616","phone":[]},"likes":["travelling"],"memberSince":"2009-10-07"} -{"name":{"first":"Troy","last":"Trucchi"},"gender":"male","birthday":"1958-07-26","contact":{"address":{"street":"21 18th St","zip":"23839","city":"Dendron","state":"VA"},"email":["troy.trucchi@nosql-matters.org"],"region":"757","phone":[]},"likes":["running","swimming","boxing","snowboarding","skiing"],"memberSince":"2009-05-09"} -{"name":{"first":"Norman","last":"Skeen"},"gender":"male","birthday":"1967-12-05","contact":{"address":{"street":"4 Pine Loop","zip":"90101","city":"Los Angeles","state":"CA"},"email":["norman.skeen@nosql-matters.org"],"region":"213","phone":["213-9539513","213-4786008"]},"likes":["checkers"],"memberSince":"2009-01-26"} -{"name":{"first":"Ismael","last":"Gerig"},"gender":"male","birthday":"1975-11-16","contact":{"address":{"street":"9 Harper Ave","zip":"52638","city":"Middletown","state":"IA"},"email":["ismael.gerig@nosql-matters.org"],"region":"319","phone":["319-0788446","319-8508713"]},"likes":[],"memberSince":"2008-04-21"} -{"name":{"first":"Willie","last":"Capaldi"},"gender":"female","birthday":"1959-05-10","contact":{"address":{"street":"18 6th Ave","zip":"93611","city":"Clovis","state":"CA"},"email":["willie.capaldi@nosql-matters.org","willie@nosql-matters.org"],"region":"559","phone":[]},"likes":[],"memberSince":"2010-03-29"} -{"name":{"first":"Dollie","last":"Huneycutt"},"gender":"female","birthday":"1993-08-13","contact":{"address":{"street":"11 Cliffbourne Rd","zip":"95693","city":"Wilton","state":"CA"},"email":["dollie.huneycutt@nosql-matters.org"],"region":"916","phone":["916-1238358"]},"likes":["snowboarding"],"memberSince":"2011-01-30"} -{"name":{"first":"Kip","last":"Calvello"},"gender":"male","birthday":"1966-09-22","contact":{"address":{"street":"16 6th Ave","zip":"16417","city":"Girard","state":"PA"},"email":["kip.calvello@nosql-matters.org"],"region":"814","phone":["814-9954666","814-8813547"]},"likes":["driving"],"memberSince":"2008-09-13"} -{"name":{"first":"Fidela","last":"Jack"},"gender":"female","birthday":"1974-05-28","contact":{"address":{"street":"22 Belmont Ct","zip":"85629","city":"Sahuarita","state":"AZ"},"email":["fidela.jack@nosql-matters.org"],"region":"520","phone":["520-3435756"]},"likes":["shopping"],"memberSince":"2008-01-11"} -{"name":{"first":"Joey","last":"Lotto"},"gender":"female","birthday":"1983-11-04","contact":{"address":{"street":"6 2nd Ave","zip":"24950","city":"Kieffer","state":"WV"},"email":["joey.lotto@nosql-matters.org"],"region":"304","phone":["304-1884200"]},"likes":["boxing"],"memberSince":"2008-07-24"} -{"name":{"first":"Suk","last":"Sonneborn"},"gender":"female","birthday":"1982-11-05","contact":{"address":{"street":"6 Rawlins Aly","zip":"29742","city":"Sharon","state":"SC"},"email":["suk.sonneborn@nosql-matters.org","sonneborn@nosql-matters.org"],"region":"803","phone":["803-0242480","803-4678769"]},"likes":["shopping","swimming","chess"],"memberSince":"2009-08-13"} -{"name":{"first":"Madaline","last":"Conard"},"gender":"female","birthday":"1986-04-08","contact":{"address":{"street":"1 290th Ave","zip":"08204","city":"Cape May","state":"NJ"},"email":["madaline.conard@nosql-matters.org","madaline@nosql-matters.org"],"region":"609","phone":["609-5150042","609-4095229"]},"likes":[],"memberSince":"2009-06-02"} -{"name":{"first":"Tanna","last":"Beeman"},"gender":"female","birthday":"1947-09-25","contact":{"address":{"street":"19 Wallace Ln","zip":"50556","city":"Ledyard","state":"IA"},"email":["tanna.beeman@nosql-matters.org"],"region":"515","phone":[]},"likes":[],"memberSince":"2009-06-19"} -{"name":{"first":"Forest","last":"Chadez"},"gender":"male","birthday":"1985-03-16","contact":{"address":{"street":"8 University Rd","zip":"35046","city":"Clanton","state":"AL"},"email":["forest.chadez@nosql-matters.org"],"region":"205","phone":[]},"likes":["shopping"],"memberSince":"2010-08-01"} -{"name":{"first":"Lenard","last":"Litherland"},"gender":"male","birthday":"1962-05-19","contact":{"address":{"street":"18 Willard Hwy","zip":"37079","city":"Indian Mound","state":"TN"},"email":["lenard.litherland@nosql-matters.org","litherland@nosql-matters.org"],"region":"931","phone":["931-4674265"]},"likes":["chess","snowboarding"],"memberSince":"2010-08-22"} -{"name":{"first":"Nick","last":"Dimatteo"},"gender":"male","birthday":"1986-06-06","contact":{"address":{"street":"20 Chapin Dr","zip":"74364","city":"Rose","state":"OK"},"email":["nick.dimatteo@nosql-matters.org"],"region":"918","phone":[]},"likes":["chatting"],"memberSince":"2011-09-24"} -{"name":{"first":"Kenton","last":"Mcgory"},"gender":"male","birthday":"1945-10-26","contact":{"address":{"street":"21 Mound Blvd","zip":"29071","city":"Lexington","state":"SC"},"email":["kenton.mcgory@nosql-matters.org","kenton@nosql-matters.org"],"region":"803","phone":["803-6492622"]},"likes":[],"memberSince":"2011-05-07"} -{"name":{"first":"Rosalind","last":"Earnhart"},"gender":"female","birthday":"1960-11-19","contact":{"address":{"street":"10 Woodson Blvd","zip":"47060","city":"West Harrison","state":"IN"},"email":["rosalind.earnhart@nosql-matters.org"],"region":"812","phone":["812-8059135"]},"likes":[],"memberSince":"2010-02-20"} -{"name":{"first":"Wendolyn","last":"Cocran"},"gender":"female","birthday":"1961-09-30","contact":{"address":{"street":"12 Logeman Rd","zip":"52660","city":"Yarmouth","state":"IA"},"email":["wendolyn.cocran@nosql-matters.org"],"region":"319","phone":[]},"likes":["biking"],"memberSince":"2011-07-06"} -{"name":{"first":"Kenneth","last":"Martineau"},"gender":"male","birthday":"1954-10-07","contact":{"address":{"street":"12 Deer Cir","zip":"38330","city":"Dyer","state":"TN"},"email":["kenneth.martineau@nosql-matters.org"],"region":"901","phone":["901-9370129"]},"likes":["boxing"],"memberSince":"2007-12-22"} -{"name":{"first":"Alla","last":"Hislope"},"gender":"female","birthday":"1957-10-13","contact":{"address":{"street":"5 Pine Blvd","zip":"04841","city":"Rockland","state":"ME"},"email":["alla.hislope@nosql-matters.org","alla@nosql-matters.org"],"region":"207","phone":["207-8407305"]},"likes":["swimming"],"memberSince":"2012-04-18"} -{"name":{"first":"Violet","last":"Martorello"},"gender":"female","birthday":"1961-04-17","contact":{"address":{"street":"11 10th St","zip":"54725","city":"Boyceville","state":"WI"},"email":["violet.martorello@nosql-matters.org","martorello@nosql-matters.org","violet@nosql-matters.org"],"region":"715","phone":["715-2280883"]},"likes":[],"memberSince":"2007-06-09"} -{"name":{"first":"Daniel","last":"Mcvoy"},"gender":"female","birthday":"1981-10-03","contact":{"address":{"street":"13 17th St","zip":"20527","city":"Washington","state":"DC"},"email":["daniel.mcvoy@nosql-matters.org"],"region":"202","phone":["202-6034863"]},"likes":[],"memberSince":"2011-08-11"} -{"name":{"first":"Woodrow","last":"Shorter"},"gender":"male","birthday":"1963-06-21","contact":{"address":{"street":"2 Wallick St","zip":"43438","city":"Kelleys Island","state":"OH"},"email":["woodrow.shorter@nosql-matters.org","shorter@nosql-matters.org"],"region":"419","phone":["419-6803375","419-5293251"]},"likes":["running","biking"],"memberSince":"2008-11-15"} -{"name":{"first":"Billi","last":"Pommer"},"gender":"female","birthday":"1981-07-29","contact":{"address":{"street":"1 Clydesdale Rd","zip":"67572","city":"Ransom","state":"KS"},"email":["billi.pommer@nosql-matters.org"],"region":"785","phone":["785-3295420"]},"likes":["shopping"],"memberSince":"2011-08-20"} -{"name":{"first":"Maynard","last":"Damiani"},"gender":"male","birthday":"1970-12-22","contact":{"address":{"street":"5 Half mound Ln","zip":"99574","city":"Cordova","state":"AK"},"email":["maynard.damiani@nosql-matters.org","maynard@nosql-matters.org"],"region":"907","phone":["907-6361577"]},"likes":["running","checkers","driving","skiing","climbing"],"memberSince":"2012-02-04"} -{"name":{"first":"Roman","last":"Domnick"},"gender":"male","birthday":"1947-09-30","contact":{"address":{"street":"14 Riggs Loop","zip":"25204","city":"Twilight","state":"WV"},"email":["roman.domnick@nosql-matters.org","roman@nosql-matters.org"],"region":"304","phone":[]},"likes":["boxing","reading"],"memberSince":"2010-03-06"} -{"name":{"first":"Theresia","last":"Criner"},"gender":"female","birthday":"1949-05-29","contact":{"address":{"street":"14 Half mound Pl","zip":"73719","city":"Amorita","state":"OK"},"email":["theresia.criner@nosql-matters.org"],"region":"580","phone":[]},"likes":["boxing","snowboarding"],"memberSince":"2007-12-16"} -{"name":{"first":"Shawnda","last":"Coverdell"},"gender":"female","birthday":"1985-01-09","contact":{"address":{"street":"6 Beekman Rd","zip":"52549","city":"Cincinnati","state":"IA"},"email":["shawnda.coverdell@nosql-matters.org","coverdell@nosql-matters.org"],"region":"515","phone":["515-3469407"]},"likes":["chatting","reading","driving"],"memberSince":"2009-10-08"} -{"name":{"first":"Douglass","last":"Mckinnie"},"gender":"male","birthday":"1949-06-16","contact":{"address":{"street":"8 Willard St","zip":"81033","city":"Crowley","state":"CO"},"email":["douglass.mckinnie@nosql-matters.org","mckinnie@nosql-matters.org"],"region":"719","phone":["719-2996661"]},"likes":["travelling","ironing"],"memberSince":"2007-10-19"} -{"name":{"first":"Gilbert","last":"Woodbury"},"gender":"male","birthday":"1953-06-16","contact":{"address":{"street":"22 16th St","zip":"20885","city":"Gaithersburg","state":"MD"},"email":["gilbert.woodbury@nosql-matters.org","woodbury@nosql-matters.org"],"region":"301","phone":["301-5363970"]},"likes":["climbing"],"memberSince":"2012-05-04"} -{"name":{"first":"Neoma","last":"Quinney"},"gender":"female","birthday":"1972-02-28","contact":{"address":{"street":"11 Clifton Blvd","zip":"37044","city":"Clarksville","state":"TN"},"email":["neoma.quinney@nosql-matters.org"],"region":"931","phone":[]},"likes":[],"memberSince":"2008-04-04"} -{"name":{"first":"Halley","last":"Clayburg"},"gender":"female","birthday":"1980-09-11","contact":{"address":{"street":"15 Main Ct","zip":"14774","city":"Richburg","state":"NY"},"email":["halley.clayburg@nosql-matters.org"],"region":"716","phone":[]},"likes":[],"memberSince":"2010-11-09"} -{"name":{"first":"Kenya","last":"Curtiss"},"gender":"female","birthday":"1989-12-27","contact":{"address":{"street":"4 Oak Ave","zip":"61238","city":"Cambridge","state":"IL"},"email":["kenya.curtiss@nosql-matters.org","curtiss@nosql-matters.org"],"region":"309","phone":["309-4111049","309-7054211"]},"likes":[],"memberSince":"2012-04-28"} -{"name":{"first":"Zackary","last":"Marcelino"},"gender":"male","birthday":"1993-04-26","contact":{"address":{"street":"5 15th St","zip":"50641","city":"Hazleton","state":"IA"},"email":["zackary.marcelino@nosql-matters.org","marcelino@nosql-matters.org","zackary@nosql-matters.org"],"region":"319","phone":["319-2500690"]},"likes":[],"memberSince":"2010-07-20"} -{"name":{"first":"Kelly","last":"Wickkiser"},"gender":"male","birthday":"1988-10-28","contact":{"address":{"street":"15 19th Ave","zip":"79170","city":"Amarillo","state":"TX"},"email":["kelly.wickkiser@nosql-matters.org"],"region":"806","phone":[]},"likes":["driving","ironing"],"memberSince":"2009-01-07"} -{"name":{"first":"Carlota","last":"Cianci"},"gender":"female","birthday":"1980-02-15","contact":{"address":{"street":"1 9th St","zip":"98413","city":"Tacoma","state":"WA"},"email":["carlota.cianci@nosql-matters.org","cianci@nosql-matters.org"],"region":"253","phone":[]},"likes":["reading"],"memberSince":"2010-02-21"} -{"name":{"first":"Avril","last":"Barimah"},"gender":"female","birthday":"1991-01-13","contact":{"address":{"street":"20 Wallach Ave","zip":"63931","city":"Briar","state":"MO"},"email":["avril.barimah@nosql-matters.org","avril@nosql-matters.org"],"region":"573","phone":["573-8314325","573-9872186"]},"likes":["skiing"],"memberSince":"2008-09-04"} -{"name":{"first":"Shannon","last":"Spracklen"},"gender":"male","birthday":"1954-10-07","contact":{"address":{"street":"2 Connecticut Pl","zip":"48415","city":"Birch Run","state":"MI"},"email":["shannon.spracklen@nosql-matters.org"],"region":"517","phone":["517-2482853","517-6767588"]},"likes":[],"memberSince":"2009-01-07"} -{"name":{"first":"Zina","last":"Scism"},"gender":"female","birthday":"1971-07-07","contact":{"address":{"street":"5 Lanier Blvd","zip":"59856","city":"Paradise","state":"MT"},"email":["zina.scism@nosql-matters.org","zina@nosql-matters.org"],"region":"406","phone":[]},"likes":["skiing"],"memberSince":"2007-07-06"} -{"name":{"first":"Inger","last":"Montrose"},"gender":"female","birthday":"1940-12-07","contact":{"address":{"street":"2 Connecticut Loop","zip":"67353","city":"Moline","state":"KS"},"email":["inger.montrose@nosql-matters.org","montrose@nosql-matters.org"],"region":"316","phone":["316-8266803","316-1138130"]},"likes":["swimming","skiing"],"memberSince":"2010-07-05"} -{"name":{"first":"Quinn","last":"Tidrington"},"gender":"male","birthday":"1960-09-18","contact":{"address":{"street":"4 Morningside Blvd","zip":"95776","city":"Woodland","state":"CA"},"email":["quinn.tidrington@nosql-matters.org","tidrington@nosql-matters.org"],"region":"530","phone":[]},"likes":["boxing"],"memberSince":"2008-07-03"} -{"name":{"first":"Pricilla","last":"Eans"},"gender":"female","birthday":"1987-10-29","contact":{"address":{"street":"21 Main Ave","zip":"72072","city":"Humnoke","state":"AR"},"email":["pricilla.eans@nosql-matters.org","eans@nosql-matters.org"],"region":"870","phone":["870-9904952"]},"likes":["travelling"],"memberSince":"2011-03-21"} -{"name":{"first":"Branda","last":"Kaylor"},"gender":"female","birthday":"1942-09-30","contact":{"address":{"street":"1 Morningside Rd","zip":"32449","city":"Kinard","state":"FL"},"email":["branda.kaylor@nosql-matters.org"],"region":"904","phone":[]},"likes":[],"memberSince":"2010-12-09"} -{"name":{"first":"Rebecca","last":"Kabba"},"gender":"female","birthday":"1961-03-31","contact":{"address":{"street":"11 7th Ave","zip":"80426","city":"Burns","state":"CO"},"email":["rebecca.kabba@nosql-matters.org","kabba@nosql-matters.org","rebecca@nosql-matters.org"],"region":"970","phone":["970-4496211","970-5665821"]},"likes":["swimming","checkers"],"memberSince":"2008-06-16"} -{"name":{"first":"Dino","last":"Roundtree"},"gender":"male","birthday":"1985-05-06","contact":{"address":{"street":"9 Adams mill Hwy","zip":"84027","city":"Fruitland","state":"UT"},"email":["dino.roundtree@nosql-matters.org"],"region":"435","phone":[]},"likes":["chatting","chess","boxing"],"memberSince":"2008-05-07"} -{"name":{"first":"Evelia","last":"Torgersen"},"gender":"female","birthday":"1943-12-29","contact":{"address":{"street":"7 16th St","zip":"73754","city":"Lahoma","state":"OK"},"email":["evelia.torgersen@nosql-matters.org","evelia@nosql-matters.org"],"region":"580","phone":["580-0767240"]},"likes":["running","snowboarding"],"memberSince":"2010-08-01"} -{"name":{"first":"Joya","last":"Degruy"},"gender":"female","birthday":"1961-12-01","contact":{"address":{"street":"17 Palmer Blvd","zip":"89199","city":"Las Vegas","state":"NV"},"email":["joya.degruy@nosql-matters.org"],"region":"702","phone":["702-8120563","702-1817822"]},"likes":[],"memberSince":"2011-07-29"} -{"name":{"first":"Chun","last":"Langholz"},"gender":"female","birthday":"1964-11-13","contact":{"address":{"street":"6 Pratt Ct","zip":"51554","city":"Mineola","state":"IA"},"email":["chun.langholz@nosql-matters.org","langholz@nosql-matters.org"],"region":"712","phone":[]},"likes":["boxing","checkers"],"memberSince":"2007-08-10"} -{"name":{"first":"Mindy","last":"Ewell"},"gender":"female","birthday":"1987-04-23","contact":{"address":{"street":"13 Center St","zip":"88122","city":"Kenna","state":"NM"},"email":["mindy.ewell@nosql-matters.org","ewell@nosql-matters.org"],"region":"505","phone":[]},"likes":[],"memberSince":"2011-11-30"} -{"name":{"first":"Rose","last":"Pinger"},"gender":"female","birthday":"1975-07-23","contact":{"address":{"street":"8 7th Ave","zip":"75203","city":"Dallas","state":"TX"},"email":["rose.pinger@nosql-matters.org"],"region":"214","phone":["214-4155664"]},"likes":["reading","snowboarding"],"memberSince":"2009-09-01"} -{"name":{"first":"Freeman","last":"Peres"},"gender":"male","birthday":"1989-11-19","contact":{"address":{"street":"13 John St","zip":"99021","city":"Mead","state":"WA"},"email":["freeman.peres@nosql-matters.org","peres@nosql-matters.org"],"region":"509","phone":["509-3159306","509-9059286"]},"likes":[],"memberSince":"2007-10-17"} -{"name":{"first":"Carole","last":"Wirch"},"gender":"female","birthday":"1953-02-03","contact":{"address":{"street":"13 266th St","zip":"27609","city":"Raleigh","state":"NC"},"email":["carole.wirch@nosql-matters.org"],"region":"919","phone":["919-5621497","919-0912728"]},"likes":["boxing","ironing"],"memberSince":"2010-10-16"} -{"name":{"first":"Rosalva","last":"Brumby"},"gender":"female","birthday":"1963-09-07","contact":{"address":{"street":"9 Price Dr","zip":"80030","city":"Westminster","state":"CO"},"email":["rosalva.brumby@nosql-matters.org"],"region":"303","phone":["303-1444997"]},"likes":[],"memberSince":"2009-10-05"} -{"name":{"first":"Moises","last":"Nyman"},"gender":"male","birthday":"1944-04-01","contact":{"address":{"street":"1 University Blvd","zip":"14707","city":"Allentown","state":"NY"},"email":["moises.nyman@nosql-matters.org","nyman@nosql-matters.org","moises@nosql-matters.org"],"region":"716","phone":["716-5677987"]},"likes":["driving","ironing"],"memberSince":"2009-10-23"} -{"name":{"first":"Claudio","last":"Ruben"},"gender":"male","birthday":"1965-09-30","contact":{"address":{"street":"3 Clydesdale Hwy","zip":"61101","city":"Rockford","state":"IL"},"email":["claudio.ruben@nosql-matters.org","claudio@nosql-matters.org"],"region":"815","phone":["815-2422364"]},"likes":["skiing"],"memberSince":"2007-10-09"} -{"name":{"first":"Elinor","last":"Thorson"},"gender":"female","birthday":"1982-06-05","contact":{"address":{"street":"3 Trego Way","zip":"68930","city":"Blue Hill","state":"NE"},"email":["elinor.thorson@nosql-matters.org"],"region":"402","phone":[]},"likes":["biking","chatting"],"memberSince":"2007-06-30"} -{"name":{"first":"Jettie","last":"Molinaro"},"gender":"female","birthday":"1953-09-02","contact":{"address":{"street":"20 California Blvd","zip":"68358","city":"Firth","state":"NE"},"email":["jettie.molinaro@nosql-matters.org","jettie@nosql-matters.org"],"region":"402","phone":["402-1700483","402-9206442"]},"likes":["running"],"memberSince":"2008-10-23"} -{"name":{"first":"Romaine","last":"Miler"},"gender":"female","birthday":"1987-09-02","contact":{"address":{"street":"7 266th Ave","zip":"80941","city":"Colorado Springs","state":"CO"},"email":["romaine.miler@nosql-matters.org","miler@nosql-matters.org"],"region":"719","phone":["719-2247503"]},"likes":["reading","skiing"],"memberSince":"2007-08-14"} diff --git a/demo/docker/server.pem b/demo/docker/server.pem deleted file mode 100644 index c97c3025..00000000 --- a/demo/docker/server.pem +++ /dev/null @@ -1,60 +0,0 @@ -Bag Attributes - friendlyName: arangotest - localKeyID: 54 69 6D 65 20 31 36 30 34 32 35 36 36 37 39 38 35 34 -Key Attributes: <No Attributes> ------BEGIN PRIVATE KEY----- -MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1WiDnd4+uCmMG -539ZNZB8NwI0RZF3sUSQGPx3lkqaFTZVEzMZL76HYvdc9Qg7difyKyQ09RLSpMAL -X9euSseD7bZGnfQH52BnKcT09eQ3wh7aVQ5sN2omygdHLC7X9usntxAfv7Nzmvdo -gNXoJQyY/hSZff7RIqWH8NnAUKkjqOe6Bf5LDbxHKESmrFBxOCOnhcpvZWetwpiR -dJVPwUn5P82CAZzfiBfmBZnB7D0l+/6Cv4jMuH26uAIcixnVekBQzl1RgwczuiZf -2MGO64vDMMJJWE9ClZF1uQuQrwXF6qwhuP1Hnkii6wNbTtPWlGSkqeutr004+Hzb -f8KnRY4PAgMBAAECggEAKi1d/bdW2TldMpvgiFTm15zLjHCpllbKBWFqRj3T9+X7 -Duo6Nh9ehopD0YDDe2DNhYr3DsH4sLjUWVDfDpAhutMsU1wlBzmOuC+EuRv/CeDB -4DFr+0sgCwlti+YAtwWcR05SF7A0Ai0GYW2lUipbtbFSBSjCfM08BlPDsPCRhdM8 -DhBn3S45aP7oC8BdhG/etg+DfXW+/nyNwEcMCYG97bzXNjzYpCQjo/bTHdh2UPYM -4WEAqFzZ5jir8LVS3v7GqpqPmk6FnHJOJpfpOSZoPqnfpIw7SVlNsXHvDaHGcgYZ -Xec7rLQlBuv4RZU7OlGJpK2Ng5kvS9q3nfqqn7YIMQKBgQDqSsYnE+k6CnrSpa2W -B9W/+PChITgkA46XBUUjAueJ7yVZQQEOzl0VI6RoVBp3t66eO8uM9omO8/ogHXku -Ei9UUIIfH4BsSP7G5A06UC/FgReDxwBfbRuS+lupnmc348vPDkFlJZ4hDgWflNev -7tpUbljSAqUea1VhdBy146V4qwKBgQDGJ6iL1+A9uUM+1UklOAPpPhTQ8ZQDRCj7 -7IMVcbzWYvCMuVNXzOWuiz+VYr3IGCJZIbxbFDOHxGF4XKJnk0vm1qhQQME0PtAF -i1jIfsxpj8KKJl9Uad+XLQCYRV8mIZlhsd/ErRJuz6FyqevKH3nFIb0ggF3x2d06 -odTHuj4ILQKBgCUsI/BDSne4/e+59aaeK52/w33tJVkhb1gqr+N0LIRH+ycEF0Tg -HQijlQwwe9qOvBfC6PK+kuipcP/zbSyQGg5Ij7ycZOXJVxL7T9X2rv2pE7AGvNpn -Fz7klfJ9fWbyr310h4+ivkoETYQaO3ZgcSeAMntvi/8djHhf0cZSDgjtAoGBAKvQ -TUNcHjJGxfjgRLkB1dpSmwgEv7sJSaQOkiZw5TTauwq50nsJzYlHcg1cfYPW8Ulp -iAFNBdVNwNn1MFgwjpqMO4rCawObBxIXnhbSYvmQzjStSvFNj7JsMdzWIcdVUMI1 -0fmdu6LbY3ihvzIVkqcMNwnMZCjFKB6jnXTElu7NAoGAS0gNPD/bfzWAhZBBYp9/ -SLGOvjHKrSVWGwDiqdAGuh6xg+1C3F+XpiITP6d3Wv3PCJ/Gia5isQPSMaXG+xTt -6huBgFlksHqr0tsQA9dcgGW7BDr5VhRq5/WinaLhGGy1R+i2zbDmQXgHbCO+RH/s -bD9F4LZ3RoXmGHLW0IUggPw= ------END PRIVATE KEY----- -Bag Attributes - friendlyName: arangotest - localKeyID: 54 69 6D 65 20 31 36 30 34 32 35 36 36 37 39 38 35 34 -subject=C = Unknown, ST = Unknown, L = Unknown, O = Unknown, OU = Unknown, CN = localhost - -issuer=C = Unknown, ST = Unknown, L = Unknown, O = Unknown, OU = Unknown, CN = localhost - ------BEGIN CERTIFICATE----- -MIIDezCCAmOgAwIBAgIEeDCzXzANBgkqhkiG9w0BAQsFADBuMRAwDgYDVQQGEwdV -bmtub3duMRAwDgYDVQQIEwdVbmtub3duMRAwDgYDVQQHEwdVbmtub3duMRAwDgYD -VQQKEwdVbmtub3duMRAwDgYDVQQLEwdVbmtub3duMRIwEAYDVQQDEwlsb2NhbGhv -c3QwHhcNMjAxMTAxMTg1MTE5WhcNMzAxMDMwMTg1MTE5WjBuMRAwDgYDVQQGEwdV -bmtub3duMRAwDgYDVQQIEwdVbmtub3duMRAwDgYDVQQHEwdVbmtub3duMRAwDgYD -VQQKEwdVbmtub3duMRAwDgYDVQQLEwdVbmtub3duMRIwEAYDVQQDEwlsb2NhbGhv -c3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC1WiDnd4+uCmMG539Z -NZB8NwI0RZF3sUSQGPx3lkqaFTZVEzMZL76HYvdc9Qg7difyKyQ09RLSpMALX9eu -SseD7bZGnfQH52BnKcT09eQ3wh7aVQ5sN2omygdHLC7X9usntxAfv7NzmvdogNXo -JQyY/hSZff7RIqWH8NnAUKkjqOe6Bf5LDbxHKESmrFBxOCOnhcpvZWetwpiRdJVP -wUn5P82CAZzfiBfmBZnB7D0l+/6Cv4jMuH26uAIcixnVekBQzl1RgwczuiZf2MGO -64vDMMJJWE9ClZF1uQuQrwXF6qwhuP1Hnkii6wNbTtPWlGSkqeutr004+Hzbf8Kn -RY4PAgMBAAGjITAfMB0GA1UdDgQWBBTBrv9Awynt3C5IbaCNyOW5v4DNkTANBgkq -hkiG9w0BAQsFAAOCAQEAIm9rPvDkYpmzpSIhR3VXG9Y71gxRDrqkEeLsMoEyqGnw -/zx1bDCNeGg2PncLlW6zTIipEBooixIE9U7KxHgZxBy0Et6EEWvIUmnr6F4F+dbT -D050GHlcZ7eOeqYTPYeQC502G1Fo4tdNi4lDP9L9XZpf7Q1QimRH2qaLS03ZFZa2 -tY7ah/RQqZL8Dkxx8/zc25sgTHVpxoK853glBVBs/ENMiyGJWmAXQayewY3EPt/9 -wGwV4KmU3dPDleQeXSUGPUISeQxFjy+jCw21pYviWVJTNBA9l5ny3GhEmcnOT/gQ -HCvVRLyGLMbaMZ4JrPwb+aAtBgrgeiK4xeSMMvrbhw== ------END CERTIFICATE----- diff --git a/demo/docker/start_spark_2.4.sh b/demo/docker/start_spark_2.4.sh deleted file mode 100755 index 44b7d732..00000000 --- a/demo/docker/start_spark_2.4.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -docker network create arangodb --subnet 172.28.0.0/16 - -docker run -d --network arangodb --ip 172.28.10.1 --name spark-master -h spark-master \ - -e SPARK_MODE=master \ - -e SPARK_RPC_AUTHENTICATION_ENABLED=no \ - -e SPARK_RPC_ENCRYPTION_ENABLED=no \ - -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ - -e SPARK_SSL_ENABLED=no \ - docker.io/bitnami/spark:2.4.6 - -docker run -d --network arangodb --ip 172.28.10.11 --name spark-worker-1 -h spark-worker-1 \ - -e SPARK_MODE=worker \ - -e SPARK_MASTER_URL=spark://spark-master:7077 \ - -e SPARK_WORKER_MEMORY=1G \ - -e SPARK_WORKER_CORES=1 \ - -e SPARK_RPC_AUTHENTICATION_ENABLED=no \ - -e SPARK_RPC_ENCRYPTION_ENABLED=no \ - -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ - -e SPARK_SSL_ENABLED=no \ - docker.io/bitnami/spark:2.4.6 - -docker run -d --network arangodb --ip 172.28.10.12 --name spark-worker-2 -h spark-worker-2 \ - -e SPARK_MODE=worker \ - -e SPARK_MASTER_URL=spark://spark-master:7077 \ - -e SPARK_WORKER_MEMORY=1G \ - -e SPARK_WORKER_CORES=1 \ - -e SPARK_RPC_AUTHENTICATION_ENABLED=no \ - -e SPARK_RPC_ENCRYPTION_ENABLED=no \ - -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ - -e SPARK_SSL_ENABLED=no \ - docker.io/bitnami/spark:2.4.6 - -docker run -d --network arangodb --ip 172.28.10.13 --name spark-worker-3 -h spark-worker-3 \ - -e SPARK_MODE=worker \ - -e SPARK_MASTER_URL=spark://spark-master:7077 \ - -e SPARK_WORKER_MEMORY=1G \ - -e SPARK_WORKER_CORES=1 \ - -e SPARK_RPC_AUTHENTICATION_ENABLED=no \ - -e SPARK_RPC_ENCRYPTION_ENABLED=no \ - -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ - -e SPARK_SSL_ENABLED=no \ - docker.io/bitnami/spark:2.4.6 diff --git a/demo/docker/start_spark_3.1.sh b/demo/docker/start_spark_3.1.sh index a43b50cf..1dee9a02 100755 --- a/demo/docker/start_spark_3.1.sh +++ b/demo/docker/start_spark_3.1.sh @@ -8,6 +8,7 @@ docker run -d --network arangodb --ip 172.28.10.1 --name spark-master -h spark-m -e SPARK_RPC_ENCRYPTION_ENABLED=no \ -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ -e SPARK_SSL_ENABLED=no \ + -v $(pwd)/docker/import:/import \ docker.io/bitnami/spark:3.1.2 docker run -d --network arangodb --ip 172.28.10.11 --name spark-worker-1 -h spark-worker-1 \ @@ -19,6 +20,7 @@ docker run -d --network arangodb --ip 172.28.10.11 --name spark-worker-1 -h spar -e SPARK_RPC_ENCRYPTION_ENABLED=no \ -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ -e SPARK_SSL_ENABLED=no \ + -v $(pwd)/docker/import:/import \ docker.io/bitnami/spark:3.1.2 docker run -d --network arangodb --ip 172.28.10.12 --name spark-worker-2 -h spark-worker-2 \ @@ -30,6 +32,7 @@ docker run -d --network arangodb --ip 172.28.10.12 --name spark-worker-2 -h spar -e SPARK_RPC_ENCRYPTION_ENABLED=no \ -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ -e SPARK_SSL_ENABLED=no \ + -v $(pwd)/docker/import:/import \ docker.io/bitnami/spark:3.1.2 docker run -d --network arangodb --ip 172.28.10.13 --name spark-worker-3 -h spark-worker-3 \ @@ -41,4 +44,5 @@ docker run -d --network arangodb --ip 172.28.10.13 --name spark-worker-3 -h spar -e SPARK_RPC_ENCRYPTION_ENABLED=no \ -e SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no \ -e SPARK_SSL_ENABLED=no \ + -v $(pwd)/docker/import:/import \ docker.io/bitnami/spark:3.1.2 diff --git a/demo/src/main/scala/Demo.scala b/demo/src/main/scala/Demo.scala index 65c5409a..af50834d 100644 --- a/demo/src/main/scala/Demo.scala +++ b/demo/src/main/scala/Demo.scala @@ -1,61 +1,153 @@ -import org.apache.spark.sql.SparkSession -import org.apache.spark.sql.functions.col -import org.apache.spark.sql.types._ +import Schemas.{actsInSchema, directedSchema, movieSchema, personSchema} +import org.apache.spark.sql.functions._ +import org.apache.spark.sql.types.{DateType, LongType, StringType, StructField, StructType, TimestampType} +import org.apache.spark.sql.{Column, DataFrame, SparkSession} object Demo { + val spark: SparkSession = SparkSession.builder + .appName("arangodb-demo") + .master("local[*, 3]") + .getOrCreate + + val password = "test" + val endpoints = "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549" + + val options = Map( + "password" -> password, + "endpoints" -> endpoints + ) + + val saveOptions: Map[String, String] = options ++ Map( + "table.shards" -> "9", + "confirmTruncate" -> "true", + "overwriteMode" -> "replace" + ) + def main(args: Array[String]): Unit = { - val spark = SparkSession.builder() - .appName("arangodb-demo") - .master("local[*, 3]") - .getOrCreate() - - val options = Map( - "user" -> "root", - "password" -> "test", - "endpoints" -> "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549" + writeDemo() + readDemo() + spark.stop + } + + def writeDemo(): Unit = { + val nodesDF = spark.read.json("docker/import/nodes.jsonl") + .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) + .withColumn("birthday", unixTsToSparkDate(col("birthday"))) + .withColumn("lastModified", unixTsToSparkTs(col("lastModified"))) + val edgesDF = spark.read.json("docker/import/edges.jsonl") + .withColumn("_from", concat(lit("persons/"), col("_from"))) + .withColumn("_to", concat(lit("movies/"), col("_to"))) + + saveDF( + nodesDF.where("type = 'Person'"), + tableName = "persons", + tableType = "document" ) - val schema = new StructType( - Array( - StructField("likes", ArrayType(StringType)), - StructField("birthday", DateType), - StructField("gender", StringType), - StructField("name", StructType( - Array( - StructField("first", StringType), - StructField("last", StringType) - ) - )), - StructField("contact", StructType( - Array( - StructField("address", StructType( - Array( - StructField("city", StringType), - StructField("state", StringType), - StructField("street", StringType), - StructField("zip", StringType) - ) - )) - ) - )) - ) + saveDF( + nodesDF.where("type = 'Movie'"), + tableName = "movies", + tableType = "document" ) - val usersDF = spark.read + saveDF( + df = edgesDF.where("`$label` = 'DIRECTED'"), + tableName = "directed", + tableType = "edge" + ) + + saveDF( + df = edgesDF.where("`$label` = 'ACTS_IN'"), + tableName = "actedIn", + tableType = "edge" + ) + } + + def unixTsToSparkTs(c: Column): Column = (c.cast(LongType) / 1000).cast(TimestampType) + + def unixTsToSparkDate(c: Column): Column = unixTsToSparkTs(c).cast(DateType) + + def saveDF(df: DataFrame, tableName: String, tableType: String): Unit = + df + .drop(getEmptyColNames(df): _*) + .write + .mode("overwrite") .format("com.arangodb.spark") - .options(options + ("table" -> "users")) + .options(saveOptions ++ Map( + "table" -> tableName, + "table.type" -> tableType + )) + .save() + + def getEmptyColNames(df: DataFrame): Array[String] = + df.columns.filter { colName => + df.filter(df(colName).isNotNull).count() == 0 + } + + def readDemo(): Unit = { + val moviesDF = readTable("movies", movieSchema) + val personsDF = readTable("persons", personSchema) + val actedInDF = readTable("actedIn", actsInSchema) + val directedDF = readTable("directed", directedSchema) + + // History movies or Documentaries about World War released from 2000-01-01 + moviesDF + .select("title", "releaseDate", "genre", "description") + .filter("releaseDate > '2000'") + .filter("genre IN ('History', 'Documentary')") + .filter("description LIKE '%World War%'") + .show(20, 200) + + // actors in Titanic with roles + moviesDF + .join(actedInDF, moviesDF("_id") === actedInDF("_to")) + .join(personsDF, actedInDF("_from") === personsDF("_id")) + .filter(moviesDF("_id") === "movies/6002") + .select(personsDF("name"), actedInDF("name").as("role")) + .show(100, 100) + + // actors in Titanic with roles (AQL query) + readQuery( + """WITH persons + | FOR v, e, p IN 1 INBOUND "movies/6002" actedIn + | RETURN {name: v.name, role: e.name} + |""".stripMargin, schema = StructType(Array( + StructField("name", StringType), + StructField("role", StringType) + )) + ).show(200, 100) + + // actors of movies directed by Clint Eastwood with related movie title + readQuery( + """WITH movies, persons + |FOR v, e, p IN 2 ANY "persons/1062" directed, actedIn + | FILTER IS_SAME_COLLECTION(directed, p.edges[0]) + | RETURN {name: v.name, movie: p.vertices[1].title} + |""".stripMargin, + schema = StructType(Array( + StructField("name", StringType), + StructField("movie", StringType) + )) + ).show(200, 100) + } + + def readTable(tableName: String, schema: StructType): DataFrame = { + spark.read + .format("com.arangodb.spark") + .options(options ++ Map( + "table" -> tableName, + "mode" -> "FAILFAST" // fail on bad records + )) .schema(schema) - .load() - usersDF.show() - usersDF.printSchema() - usersDF.filter(col("name.first") === "Prudence").filter(col("birthday") === "1944-06-19").show() - - // Spark SQL - usersDF.createOrReplaceTempView("users") - val californians = spark.sql("SELECT * FROM users WHERE contact.address.state = 'CA'") - californians.show() - californians.write.format("com.arangodb.spark").mode(org.apache.spark.sql.SaveMode.Overwrite).options(options + ("table" -> "californians", "confirmTruncate" -> "true")).save() - - spark.stop() + .load } + + def readQuery(query: String, schema: StructType): DataFrame = { + spark.read + .format("com.arangodb.spark") + .options(options + ("query" -> query)) + .schema(schema) + .load + } + } diff --git a/demo/src/main/scala/Schemas.scala b/demo/src/main/scala/Schemas.scala new file mode 100644 index 00000000..72e99700 --- /dev/null +++ b/demo/src/main/scala/Schemas.scala @@ -0,0 +1,44 @@ +import org.apache.spark.sql.types.{DateType, IntegerType, StringType, StructField, StructType, TimestampType} + +object Schemas { + val movieSchema: StructType = StructType(Array( + StructField("_id", StringType, nullable = false), + StructField("description", StringType), + StructField("genre", StringType), + StructField("homepage", StringType), + StructField("imageUrl", StringType), + StructField("imdbId", StringType), + StructField("language", StringType), + StructField("lastModified", TimestampType), + StructField("releaseDate", DateType), + StructField("runtime", IntegerType), + StructField("studio", StringType), + StructField("tagline", StringType), + StructField("title", StringType), + StructField("trailer", StringType) + )) + + val personSchema: StructType = StructType(Array( + StructField("_id", StringType, nullable = false), + StructField("biography", StringType), + StructField("birthday", DateType), + StructField("birthplace", StringType), + StructField("lastModified", TimestampType), + StructField("name", StringType), + StructField("profileImageUrl", StringType) + )) + + val actsInSchema: StructType = StructType(Array( + StructField("_id", StringType, nullable = false), + StructField("_from", StringType, nullable = false), + StructField("_to", StringType, nullable = false), + StructField("name", StringType) + )) + + val directedSchema: StructType = StructType(Array( + StructField("_id", StringType, nullable = false), + StructField("_from", StringType, nullable = false), + StructField("_to", StringType, nullable = false) + )) + +} diff --git a/demo/src/test/resources/log4j.xml b/demo/src/test/resources/log4j.xml new file mode 100644 index 00000000..ec4b9e15 --- /dev/null +++ b/demo/src/test/resources/log4j.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> +<log4j:configuration> + + <appender name="console" class="org.apache.log4j.ConsoleAppender"> + <layout class="org.apache.log4j.PatternLayout"> + <param name="ConversionPattern" value="%d{HH:mm:ss.SSS} [%thread] %-5p %c{1}:%L - %m%n"/> + </layout> + </appender> + + <logger name="org.apache.spark.sql.arangodb.datasource.reader.ArangoScanBuilder"> + <level value="INFO"/> + </logger> + +<!-- <logger name="org.apache.spark.sql.arangodb.commons.ArangoClient">--> +<!-- <level value="DEBUG"/>--> +<!-- </logger>--> + + <root> + <level value="WARN"/> + <appender-ref ref="console"/> + </root> + +</log4j:configuration> \ No newline at end of file From d7ebadd227513e30125e23c7f9849f142236000b Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Sat, 18 Dec 2021 21:42:39 +0100 Subject: [PATCH 03/10] imdb demo --- .github/workflows/test.yml | 2 - demo/src/main/scala/Demo.scala | 115 ++++++++++++++---------------- demo/src/main/scala/Schemas.scala | 4 ++ 3 files changed, 56 insertions(+), 65 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4e0ca96..958adfec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -193,8 +193,6 @@ jobs: run: mvn -version - name: Install run: mvn -e --no-transfer-progress -Pscala-${{matrix.scala-version}} -Pspark-${{matrix.spark-version}} -Dspark.version=${{matrix.spark-full-version}} -Dgpg.skip=true install - - name: Import db data - run: ./demo/docker/import.sh - name: Deployment Test run: mvn -f ./demo/pom.xml -Pscala-${{matrix.scala-version}} -Pspark-${{matrix.spark-version}} -Dspark.version=${{matrix.spark-full-version}} test - name: Collect docker logs on failure diff --git a/demo/src/main/scala/Demo.scala b/demo/src/main/scala/Demo.scala index af50834d..e72bf7b7 100644 --- a/demo/src/main/scala/Demo.scala +++ b/demo/src/main/scala/Demo.scala @@ -1,6 +1,6 @@ -import Schemas.{actsInSchema, directedSchema, movieSchema, personSchema} +import Schemas.movieSchema import org.apache.spark.sql.functions._ -import org.apache.spark.sql.types.{DateType, LongType, StringType, StructField, StructType, TimestampType} +import org.apache.spark.sql.types._ import org.apache.spark.sql.{Column, DataFrame, SparkSession} object Demo { @@ -26,10 +26,16 @@ object Demo { def main(args: Array[String]): Unit = { writeDemo() readDemo() + readWriteDemo() spark.stop } def writeDemo(): Unit = { + println("------------------") + println("--- WRITE DEMO ---") + println("------------------") + + println("Reading JSON files...") val nodesDF = spark.read.json("docker/import/nodes.jsonl") .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) .withColumn("birthday", unixTsToSparkDate(col("birthday"))) @@ -38,38 +44,32 @@ object Demo { .withColumn("_from", concat(lit("persons/"), col("_from"))) .withColumn("_to", concat(lit("movies/"), col("_to"))) - saveDF( - nodesDF.where("type = 'Person'"), - tableName = "persons", - tableType = "document" - ) - - saveDF( - nodesDF.where("type = 'Movie'"), - tableName = "movies", - tableType = "document" - ) - - saveDF( - df = edgesDF.where("`$label` = 'DIRECTED'"), - tableName = "directed", - tableType = "edge" - ) - - saveDF( - df = edgesDF.where("`$label` = 'ACTS_IN'"), - tableName = "actedIn", - tableType = "edge" - ) + val personsDF = dropNullColumns(nodesDF.where("type = 'Person'")).persist() + val moviesDF = dropNullColumns(nodesDF.where("type = 'Movie'")).persist() + val directedDF = dropNullColumns(edgesDF.where("`$label` = 'DIRECTED'")).persist() + val actedInDF = dropNullColumns(edgesDF.where("`$label` = 'ACTS_IN'")).persist() + + println("Writing 'persons' collection...") + saveDF(personsDF, "persons") + + println("Writing 'movies' collection...") + saveDF(moviesDF, "movies") + + println("Writing 'directed' edge collection...") + saveDF(directedDF, "directed", "edge") + + println("Writing 'actedIn' edge collection...") + saveDF(actedInDF, "actedIn", "edge") } def unixTsToSparkTs(c: Column): Column = (c.cast(LongType) / 1000).cast(TimestampType) def unixTsToSparkDate(c: Column): Column = unixTsToSparkTs(c).cast(DateType) - def saveDF(df: DataFrame, tableName: String, tableType: String): Unit = + def dropNullColumns(df: DataFrame): DataFrame = df.drop(getEmptyColNames(df): _*) + + def saveDF(df: DataFrame, tableName: String, tableType: String = "document"): Unit = df - .drop(getEmptyColNames(df): _*) .write .mode("overwrite") .format("com.arangodb.spark") @@ -85,59 +85,36 @@ object Demo { } def readDemo(): Unit = { + println("-----------------") + println("--- READ DEMO ---") + println("-----------------") + val moviesDF = readTable("movies", movieSchema) - val personsDF = readTable("persons", personSchema) - val actedInDF = readTable("actedIn", actsInSchema) - val directedDF = readTable("directed", directedSchema) - // History movies or Documentaries about World War released from 2000-01-01 + println("Read table: history movies or documentaries about 'World War' released from 2000-01-01") moviesDF .select("title", "releaseDate", "genre", "description") - .filter("releaseDate > '2000'") - .filter("genre IN ('History', 'Documentary')") - .filter("description LIKE '%World War%'") + .filter("genre IN ('History', 'Documentary') AND description LIKE '%World War%' AND releaseDate > '2000'") .show(20, 200) - // actors in Titanic with roles - moviesDF - .join(actedInDF, moviesDF("_id") === actedInDF("_to")) - .join(personsDF, actedInDF("_from") === personsDF("_id")) - .filter(moviesDF("_id") === "movies/6002") - .select(personsDF("name"), actedInDF("name").as("role")) - .show(100, 100) - - // actors in Titanic with roles (AQL query) - readQuery( - """WITH persons - | FOR v, e, p IN 1 INBOUND "movies/6002" actedIn - | RETURN {name: v.name, role: e.name} - |""".stripMargin, schema = StructType(Array( - StructField("name", StringType), - StructField("role", StringType) - )) - ).show(200, 100) - - // actors of movies directed by Clint Eastwood with related movie title + println("Read query: actors of movies directed by Clint Eastwood with related movie title and interpreted role") readQuery( """WITH movies, persons - |FOR v, e, p IN 2 ANY "persons/1062" directed, actedIn - | FILTER IS_SAME_COLLECTION(directed, p.edges[0]) - | RETURN {name: v.name, movie: p.vertices[1].title} + |FOR v, e, p IN 2 ANY "persons/1062" OUTBOUND directed, INBOUND actedIn + | RETURN {movie: p.vertices[1].title, name: v.name, role: p.edges[1].name} |""".stripMargin, schema = StructType(Array( + StructField("movie", StringType), StructField("name", StringType), - StructField("movie", StringType) + StructField("role", StringType) )) - ).show(200, 100) + ).show(20, 200) } def readTable(tableName: String, schema: StructType): DataFrame = { spark.read .format("com.arangodb.spark") - .options(options ++ Map( - "table" -> tableName, - "mode" -> "FAILFAST" // fail on bad records - )) + .options(options + ("table" -> tableName)) .schema(schema) .load } @@ -150,4 +127,16 @@ object Demo { .load } + def readWriteDemo(): Unit = { + println("-----------------------") + println("--- READ-WRITE DEMO ---") + println("-----------------------") + + println("Reading 'movies' collection and writing 'actionMovies' collection...") + val actionMoviesDF = readTable("movies", movieSchema) + .select("_key", "title", "releaseDate", "runtime", "description") + .filter("genre = 'Action'") + saveDF(actionMoviesDF, "actionMovies") + } + } diff --git a/demo/src/main/scala/Schemas.scala b/demo/src/main/scala/Schemas.scala index 72e99700..302c20ea 100644 --- a/demo/src/main/scala/Schemas.scala +++ b/demo/src/main/scala/Schemas.scala @@ -3,6 +3,7 @@ import org.apache.spark.sql.types.{DateType, IntegerType, StringType, StructFiel object Schemas { val movieSchema: StructType = StructType(Array( StructField("_id", StringType, nullable = false), + StructField("_key", StringType, nullable = false), StructField("description", StringType), StructField("genre", StringType), StructField("homepage", StringType), @@ -20,6 +21,7 @@ object Schemas { val personSchema: StructType = StructType(Array( StructField("_id", StringType, nullable = false), + StructField("_key", StringType, nullable = false), StructField("biography", StringType), StructField("birthday", DateType), StructField("birthplace", StringType), @@ -30,6 +32,7 @@ object Schemas { val actsInSchema: StructType = StructType(Array( StructField("_id", StringType, nullable = false), + StructField("_key", StringType, nullable = false), StructField("_from", StringType, nullable = false), StructField("_to", StringType, nullable = false), StructField("name", StringType) @@ -37,6 +40,7 @@ object Schemas { val directedSchema: StructType = StructType(Array( StructField("_id", StringType, nullable = false), + StructField("_key", StringType, nullable = false), StructField("_from", StringType, nullable = false), StructField("_to", StringType, nullable = false) )) From 816346f32ec41dff1469eca404d4a3a2af9bf9e8 Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Sat, 18 Dec 2021 21:51:19 +0100 Subject: [PATCH 04/10] imdb demo --- demo/src/main/scala/Demo.scala | 126 +----------------------- demo/src/main/scala/ReadDemo.scala | 50 ++++++++++ demo/src/main/scala/ReadWriteDemo.scala | 18 ++++ demo/src/main/scala/WriteDemo.scala | 68 +++++++++++++ 4 files changed, 140 insertions(+), 122 deletions(-) create mode 100644 demo/src/main/scala/ReadDemo.scala create mode 100644 demo/src/main/scala/ReadWriteDemo.scala create mode 100644 demo/src/main/scala/WriteDemo.scala diff --git a/demo/src/main/scala/Demo.scala b/demo/src/main/scala/Demo.scala index e72bf7b7..81dc9be9 100644 --- a/demo/src/main/scala/Demo.scala +++ b/demo/src/main/scala/Demo.scala @@ -1,7 +1,4 @@ -import Schemas.movieSchema -import org.apache.spark.sql.functions._ -import org.apache.spark.sql.types._ -import org.apache.spark.sql.{Column, DataFrame, SparkSession} +import org.apache.spark.sql.SparkSession object Demo { val spark: SparkSession = SparkSession.builder @@ -17,126 +14,11 @@ object Demo { "endpoints" -> endpoints ) - val saveOptions: Map[String, String] = options ++ Map( - "table.shards" -> "9", - "confirmTruncate" -> "true", - "overwriteMode" -> "replace" - ) - def main(args: Array[String]): Unit = { - writeDemo() - readDemo() - readWriteDemo() + WriteDemo.writeDemo() + ReadDemo.readDemo() + ReadWriteDemo.readWriteDemo() spark.stop } - def writeDemo(): Unit = { - println("------------------") - println("--- WRITE DEMO ---") - println("------------------") - - println("Reading JSON files...") - val nodesDF = spark.read.json("docker/import/nodes.jsonl") - .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) - .withColumn("birthday", unixTsToSparkDate(col("birthday"))) - .withColumn("lastModified", unixTsToSparkTs(col("lastModified"))) - val edgesDF = spark.read.json("docker/import/edges.jsonl") - .withColumn("_from", concat(lit("persons/"), col("_from"))) - .withColumn("_to", concat(lit("movies/"), col("_to"))) - - val personsDF = dropNullColumns(nodesDF.where("type = 'Person'")).persist() - val moviesDF = dropNullColumns(nodesDF.where("type = 'Movie'")).persist() - val directedDF = dropNullColumns(edgesDF.where("`$label` = 'DIRECTED'")).persist() - val actedInDF = dropNullColumns(edgesDF.where("`$label` = 'ACTS_IN'")).persist() - - println("Writing 'persons' collection...") - saveDF(personsDF, "persons") - - println("Writing 'movies' collection...") - saveDF(moviesDF, "movies") - - println("Writing 'directed' edge collection...") - saveDF(directedDF, "directed", "edge") - - println("Writing 'actedIn' edge collection...") - saveDF(actedInDF, "actedIn", "edge") - } - - def unixTsToSparkTs(c: Column): Column = (c.cast(LongType) / 1000).cast(TimestampType) - - def unixTsToSparkDate(c: Column): Column = unixTsToSparkTs(c).cast(DateType) - - def dropNullColumns(df: DataFrame): DataFrame = df.drop(getEmptyColNames(df): _*) - - def saveDF(df: DataFrame, tableName: String, tableType: String = "document"): Unit = - df - .write - .mode("overwrite") - .format("com.arangodb.spark") - .options(saveOptions ++ Map( - "table" -> tableName, - "table.type" -> tableType - )) - .save() - - def getEmptyColNames(df: DataFrame): Array[String] = - df.columns.filter { colName => - df.filter(df(colName).isNotNull).count() == 0 - } - - def readDemo(): Unit = { - println("-----------------") - println("--- READ DEMO ---") - println("-----------------") - - val moviesDF = readTable("movies", movieSchema) - - println("Read table: history movies or documentaries about 'World War' released from 2000-01-01") - moviesDF - .select("title", "releaseDate", "genre", "description") - .filter("genre IN ('History', 'Documentary') AND description LIKE '%World War%' AND releaseDate > '2000'") - .show(20, 200) - - println("Read query: actors of movies directed by Clint Eastwood with related movie title and interpreted role") - readQuery( - """WITH movies, persons - |FOR v, e, p IN 2 ANY "persons/1062" OUTBOUND directed, INBOUND actedIn - | RETURN {movie: p.vertices[1].title, name: v.name, role: p.edges[1].name} - |""".stripMargin, - schema = StructType(Array( - StructField("movie", StringType), - StructField("name", StringType), - StructField("role", StringType) - )) - ).show(20, 200) - } - - def readTable(tableName: String, schema: StructType): DataFrame = { - spark.read - .format("com.arangodb.spark") - .options(options + ("table" -> tableName)) - .schema(schema) - .load - } - - def readQuery(query: String, schema: StructType): DataFrame = { - spark.read - .format("com.arangodb.spark") - .options(options + ("query" -> query)) - .schema(schema) - .load - } - - def readWriteDemo(): Unit = { - println("-----------------------") - println("--- READ-WRITE DEMO ---") - println("-----------------------") - - println("Reading 'movies' collection and writing 'actionMovies' collection...") - val actionMoviesDF = readTable("movies", movieSchema) - .select("_key", "title", "releaseDate", "runtime", "description") - .filter("genre = 'Action'") - saveDF(actionMoviesDF, "actionMovies") - } - } diff --git a/demo/src/main/scala/ReadDemo.scala b/demo/src/main/scala/ReadDemo.scala new file mode 100644 index 00000000..f83971ff --- /dev/null +++ b/demo/src/main/scala/ReadDemo.scala @@ -0,0 +1,50 @@ +import Schemas.movieSchema +import org.apache.spark.sql.DataFrame +import org.apache.spark.sql.types._ + +object ReadDemo { + + def readDemo(): Unit = { + println("-----------------") + println("--- READ DEMO ---") + println("-----------------") + + val moviesDF = readTable("movies", movieSchema) + + println("Read table: history movies or documentaries about 'World War' released from 2000-01-01") + moviesDF + .select("title", "releaseDate", "genre", "description") + .filter("genre IN ('History', 'Documentary') AND description LIKE '%World War%' AND releaseDate > '2000'") + .show(20, 200) + + println("Read query: actors of movies directed by Clint Eastwood with related movie title and interpreted role") + readQuery( + """WITH movies, persons + |FOR v, e, p IN 2 ANY "persons/1062" OUTBOUND directed, INBOUND actedIn + | RETURN {movie: p.vertices[1].title, name: v.name, role: p.edges[1].name} + |""".stripMargin, + schema = StructType(Array( + StructField("movie", StringType), + StructField("name", StringType), + StructField("role", StringType) + )) + ).show(20, 200) + } + + def readTable(tableName: String, schema: StructType): DataFrame = { + Demo.spark.read + .format("com.arangodb.spark") + .options(Demo.options + ("table" -> tableName)) + .schema(schema) + .load + } + + def readQuery(query: String, schema: StructType): DataFrame = { + Demo.spark.read + .format("com.arangodb.spark") + .options(Demo.options + ("query" -> query)) + .schema(schema) + .load + } + +} diff --git a/demo/src/main/scala/ReadWriteDemo.scala b/demo/src/main/scala/ReadWriteDemo.scala new file mode 100644 index 00000000..6e47cefa --- /dev/null +++ b/demo/src/main/scala/ReadWriteDemo.scala @@ -0,0 +1,18 @@ +import Schemas.movieSchema +import org.apache.spark.sql.SparkSession + +object ReadWriteDemo { + + def readWriteDemo(): Unit = { + println("-----------------------") + println("--- READ-WRITE DEMO ---") + println("-----------------------") + + println("Reading 'movies' collection and writing 'actionMovies' collection...") + val actionMoviesDF = ReadDemo.readTable("movies", movieSchema) + .select("_key", "title", "releaseDate", "runtime", "description") + .filter("genre = 'Action'") + WriteDemo.saveDF(actionMoviesDF, "actionMovies") + } + +} diff --git a/demo/src/main/scala/WriteDemo.scala b/demo/src/main/scala/WriteDemo.scala new file mode 100644 index 00000000..f328581c --- /dev/null +++ b/demo/src/main/scala/WriteDemo.scala @@ -0,0 +1,68 @@ +import org.apache.spark.sql.functions._ +import org.apache.spark.sql.types._ +import org.apache.spark.sql.{Column, DataFrame} + +object WriteDemo { + + val saveOptions: Map[String, String] = Demo.options ++ Map( + "table.shards" -> "9", + "confirmTruncate" -> "true", + "overwriteMode" -> "replace" + ) + + def writeDemo(): Unit = { + println("------------------") + println("--- WRITE DEMO ---") + println("------------------") + + println("Reading JSON files...") + val nodesDF = Demo.spark.read.json("docker/import/nodes.jsonl") + .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) + .withColumn("birthday", unixTsToSparkDate(col("birthday"))) + .withColumn("lastModified", unixTsToSparkTs(col("lastModified"))) + .persist() + val edgesDF = Demo.spark.read.json("docker/import/edges.jsonl") + .withColumn("_from", concat(lit("persons/"), col("_from"))) + .withColumn("_to", concat(lit("movies/"), col("_to"))) + .persist() + + val personsDF = dropNullColumns(nodesDF.where("type = 'Person'")) + val moviesDF = dropNullColumns(nodesDF.where("type = 'Movie'")) + val directedDF = dropNullColumns(edgesDF.where("`$label` = 'DIRECTED'")) + val actedInDF = dropNullColumns(edgesDF.where("`$label` = 'ACTS_IN'")) + + println("Writing 'persons' collection...") + saveDF(personsDF, "persons") + + println("Writing 'movies' collection...") + saveDF(moviesDF, "movies") + + println("Writing 'directed' edge collection...") + saveDF(directedDF, "directed", "edge") + + println("Writing 'actedIn' edge collection...") + saveDF(actedInDF, "actedIn", "edge") + } + + def unixTsToSparkTs(c: Column): Column = (c.cast(LongType) / 1000).cast(TimestampType) + + def unixTsToSparkDate(c: Column): Column = unixTsToSparkTs(c).cast(DateType) + + def dropNullColumns(df: DataFrame): DataFrame = df.drop(getEmptyColNames(df): _*) + + def saveDF(df: DataFrame, tableName: String, tableType: String = "document"): Unit = + df + .write + .mode("overwrite") + .format("com.arangodb.spark") + .options(saveOptions ++ Map( + "table" -> tableName, + "table.type" -> tableType + )) + .save() + + def getEmptyColNames(df: DataFrame): Array[String] = + df.columns.filter { colName => + df.filter(df(colName).isNotNull).count() == 0 + } +} From ddc8e5b737136581a94fb836dd3bd8cc794b8305 Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Sat, 18 Dec 2021 22:23:10 +0100 Subject: [PATCH 05/10] fixed import path --- .github/workflows/test.yml | 2 +- demo/README.md | 2 +- demo/src/main/scala/WriteDemo.scala | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 958adfec..a03329b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -194,7 +194,7 @@ jobs: - name: Install run: mvn -e --no-transfer-progress -Pscala-${{matrix.scala-version}} -Pspark-${{matrix.spark-version}} -Dspark.version=${{matrix.spark-full-version}} -Dgpg.skip=true install - name: Deployment Test - run: mvn -f ./demo/pom.xml -Pscala-${{matrix.scala-version}} -Pspark-${{matrix.spark-version}} -Dspark.version=${{matrix.spark-full-version}} test + run: mvn -f ./demo/pom.xml -Pscala-${{matrix.scala-version}} -Pspark-${{matrix.spark-version}} -Dspark.version=${{matrix.spark-full-version}} -DimportPath=docker/import test - name: Collect docker logs on failure if: ${{ cancelled() || failure() }} uses: jwalton/gh-docker-logs@v1 diff --git a/demo/README.md b/demo/README.md index 0dff41a7..7993e66d 100644 --- a/demo/README.md +++ b/demo/README.md @@ -23,7 +23,7 @@ Start Spark cluster: Test the Spark application in embedded mode: ```shell -mvn -Pspark-3.1 -Pscala-2.12 test +mvn -Pspark-3.1 -Pscala-2.12 -DimportPath=docker/import test ``` Package the application: diff --git a/demo/src/main/scala/WriteDemo.scala b/demo/src/main/scala/WriteDemo.scala index f328581c..cb61a88d 100644 --- a/demo/src/main/scala/WriteDemo.scala +++ b/demo/src/main/scala/WriteDemo.scala @@ -15,13 +15,15 @@ object WriteDemo { println("--- WRITE DEMO ---") println("------------------") + val importPath = System.getProperty("importPath", "/demo/docker/import") + println("Reading JSON files...") - val nodesDF = Demo.spark.read.json("docker/import/nodes.jsonl") + val nodesDF = Demo.spark.read.json(importPath + "/nodes.jsonl") .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) .withColumn("birthday", unixTsToSparkDate(col("birthday"))) .withColumn("lastModified", unixTsToSparkTs(col("lastModified"))) .persist() - val edgesDF = Demo.spark.read.json("docker/import/edges.jsonl") + val edgesDF = Demo.spark.read.json(importPath + "/edges.jsonl") .withColumn("_from", concat(lit("persons/"), col("_from"))) .withColumn("_to", concat(lit("movies/"), col("_to"))) .persist() From c851ec9a51f295e6164c774a976e99c51f76ecf6 Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Mon, 20 Dec 2021 11:19:11 +0100 Subject: [PATCH 06/10] added console logs as code comments --- demo/src/main/scala/ReadDemo.scala | 16 ++++++++++++++++ demo/src/main/scala/ReadWriteDemo.scala | 14 ++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/demo/src/main/scala/ReadDemo.scala b/demo/src/main/scala/ReadDemo.scala index f83971ff..bad97a5c 100644 --- a/demo/src/main/scala/ReadDemo.scala +++ b/demo/src/main/scala/ReadDemo.scala @@ -16,6 +16,22 @@ object ReadDemo { .select("title", "releaseDate", "genre", "description") .filter("genre IN ('History', 'Documentary') AND description LIKE '%World War%' AND releaseDate > '2000'") .show(20, 200) + /* + Filters and projection pushdowns are applied in this case. + + In the console an info message log like the following will be printed: + > INFO ArangoScanBuilder:57 - Filters fully applied in AQL: + > IsNotNull(description) + > IsNotNull(releaseDate) + > In(genre, [History,Documentary]) + > StringContains(description,World War) + > GreaterThan(releaseDate,2000-01-01) + + Also the generated AQL query will be printed with log level debug: + > DEBUG ArangoClient:61 - Executing AQL query: + > FOR d IN @@col FILTER `d`.`description` != null AND `d`.`releaseDate` != null AND LENGTH(["History","Documentary"][* FILTER `d`.`genre` == CURRENT]) > 0 AND CONTAINS(`d`.`description`, "World War") AND DATE_TIMESTAMP(`d`.`releaseDate`) > DATE_TIMESTAMP("2000-01-01") RETURN {`description`:`d`.`description`,`genre`:`d`.`genre`,`releaseDate`:`d`.`releaseDate`,`title`:`d`.`title`} + > with params: Map(@col -> movies) + */ println("Read query: actors of movies directed by Clint Eastwood with related movie title and interpreted role") readQuery( diff --git a/demo/src/main/scala/ReadWriteDemo.scala b/demo/src/main/scala/ReadWriteDemo.scala index 6e47cefa..101f2c4d 100644 --- a/demo/src/main/scala/ReadWriteDemo.scala +++ b/demo/src/main/scala/ReadWriteDemo.scala @@ -13,6 +13,20 @@ object ReadWriteDemo { .select("_key", "title", "releaseDate", "runtime", "description") .filter("genre = 'Action'") WriteDemo.saveDF(actionMoviesDF, "actionMovies") + /* + Filters and projection pushdowns are applied in this case. + + In the console an info message log like the following will be printed: + > INFO ArangoScanBuilder:57 - Filters fully applied in AQL: + > IsNotNull(genre) + > EqualTo(genre,Action) + + Also the generated AQL query will be printed with log level debug: + > DEBUG ArangoClient:61 - Executing AQL query: + > FOR d IN @@col FILTER `d`.`genre` != null AND `d`.`genre` == "Action" RETURN {`_key`:`d`.`_key`,`description`:`d`.`description`,`releaseDate`:`d`.`releaseDate`,`runtime`:`d`.`runtime`,`title`:`d`.`title`} + > with params: Map(@col -> movies) + */ + } } From dba7c68ee0d7a73071b27499fbcfa07b37e56675 Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Mon, 20 Dec 2021 11:43:35 +0100 Subject: [PATCH 07/10] added oasis configuration --- demo/README.md | 13 ++++++++++++- demo/src/main/scala/Demo.scala | 13 +++++++++---- demo/src/main/scala/WriteDemo.scala | 6 ++---- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/demo/README.md b/demo/README.md index 7993e66d..14115f12 100644 --- a/demo/README.md +++ b/demo/README.md @@ -21,11 +21,22 @@ Start Spark cluster: ./docker/start_spark_3.1.sh ``` -Test the Spark application in embedded mode: +Test the Spark application in embedded mode: ```shell mvn -Pspark-3.1 -Pscala-2.12 -DimportPath=docker/import test ``` +Test the Spark application against ArangoDB Oasis deployment: +```shell +mvn -Pspark-3.1 -Pscala-2.12 \ + -DimportPath=docker/import \ + -Dpassword=<root-password> \ + -Dendpoints=<endpoint> \ + -Dssl.enabled=true \ + -Dssl.cert.value=<base64-encoded-cert> \ + test +``` + Package the application: ```shell mvn -Pspark-3.1 -Pscala-2.12 -DskipTests=true package diff --git a/demo/src/main/scala/Demo.scala b/demo/src/main/scala/Demo.scala index 81dc9be9..24078e44 100644 --- a/demo/src/main/scala/Demo.scala +++ b/demo/src/main/scala/Demo.scala @@ -1,17 +1,22 @@ import org.apache.spark.sql.SparkSession object Demo { + val importPath: String = System.getProperty("importPath", "/demo/docker/import") + val password: String = System.getProperty("password", "test") + val endpoints: String = System.getProperty("endpoints", "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549") + val sslEnabled: String = System.getProperty("ssl.enabled", "false") + val sslCertValue: String = System.getProperty("ssl.cert.value") + val spark: SparkSession = SparkSession.builder .appName("arangodb-demo") .master("local[*, 3]") .getOrCreate - val password = "test" - val endpoints = "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549" - val options = Map( "password" -> password, - "endpoints" -> endpoints + "endpoints" -> endpoints, + "ssl.enabled" -> sslEnabled, + "ssl.cert.value" -> sslCertValue ) def main(args: Array[String]): Unit = { diff --git a/demo/src/main/scala/WriteDemo.scala b/demo/src/main/scala/WriteDemo.scala index cb61a88d..362c119f 100644 --- a/demo/src/main/scala/WriteDemo.scala +++ b/demo/src/main/scala/WriteDemo.scala @@ -15,15 +15,13 @@ object WriteDemo { println("--- WRITE DEMO ---") println("------------------") - val importPath = System.getProperty("importPath", "/demo/docker/import") - println("Reading JSON files...") - val nodesDF = Demo.spark.read.json(importPath + "/nodes.jsonl") + val nodesDF = Demo.spark.read.json(Demo.importPath + "/nodes.jsonl") .withColumn("releaseDate", unixTsToSparkDate(col("releaseDate"))) .withColumn("birthday", unixTsToSparkDate(col("birthday"))) .withColumn("lastModified", unixTsToSparkTs(col("lastModified"))) .persist() - val edgesDF = Demo.spark.read.json(importPath + "/edges.jsonl") + val edgesDF = Demo.spark.read.json(Demo.importPath + "/edges.jsonl") .withColumn("_from", concat(lit("persons/"), col("_from"))) .withColumn("_to", concat(lit("movies/"), col("_to"))) .persist() From cd00403583f3fedbcfb29f71e8607488879f705e Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Mon, 20 Dec 2021 12:01:31 +0100 Subject: [PATCH 08/10] fixed Spark 2.4 compatibility --- demo/src/main/scala/Demo.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/src/main/scala/Demo.scala b/demo/src/main/scala/Demo.scala index 24078e44..be74d21f 100644 --- a/demo/src/main/scala/Demo.scala +++ b/demo/src/main/scala/Demo.scala @@ -5,7 +5,7 @@ object Demo { val password: String = System.getProperty("password", "test") val endpoints: String = System.getProperty("endpoints", "172.17.0.1:8529,172.17.0.1:8539,172.17.0.1:8549") val sslEnabled: String = System.getProperty("ssl.enabled", "false") - val sslCertValue: String = System.getProperty("ssl.cert.value") + val sslCertValue: String = System.getProperty("ssl.cert.value", "") val spark: SparkSession = SparkSession.builder .appName("arangodb-demo") From c2e337afc2eb7c48239ae7d9c87e329fbf05712c Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Wed, 22 Dec 2021 08:25:17 +0100 Subject: [PATCH 09/10] demo doc: overview and requirements --- demo/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/demo/README.md b/demo/README.md index 14115f12..52486f5b 100644 --- a/demo/README.md +++ b/demo/README.md @@ -1,5 +1,25 @@ # ArangoDB Spark Datasource Demo +This demo is composed of 3 parts: + +- `WriteDemo`: reads the input json files as Spark Dataframes, applies conversions to map the data to Spark data types + and writes the records into ArangoDB collections +- `ReadDemo`: reads the ArangoDB collections created above as Spark Dataframes, specifying columns selection and records + filters predicates or custom AQL queries +- `ReadWriteDemo`: reads the ArangoDB collections created above as Spark Dataframes, applies projections and filtering, + writes to a new ArangoDB collection + + +## Requirements + +This demo requires: +- JDK 1.8 or 11 +- `maven` +- `docker` + + +## Prepare the environment + Set environment variables: ```shell @@ -21,6 +41,9 @@ Start Spark cluster: ./docker/start_spark_3.1.sh ``` + +## Run embedded + Test the Spark application in embedded mode: ```shell mvn -Pspark-3.1 -Pscala-2.12 -DimportPath=docker/import test @@ -37,6 +60,9 @@ mvn -Pspark-3.1 -Pscala-2.12 \ test ``` + +## Submit to Spark cluster + Package the application: ```shell mvn -Pspark-3.1 -Pscala-2.12 -DskipTests=true package From 96d1b7f2956ef1038655fb01f5b4317aa75ff547 Mon Sep 17 00:00:00 2001 From: Michele Rastelli <michele@arangodb.com> Date: Wed, 22 Dec 2021 09:12:59 +0100 Subject: [PATCH 10/10] used schema names in WriteDemo --- demo/src/main/scala/WriteDemo.scala | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/demo/src/main/scala/WriteDemo.scala b/demo/src/main/scala/WriteDemo.scala index 362c119f..93eb67a9 100644 --- a/demo/src/main/scala/WriteDemo.scala +++ b/demo/src/main/scala/WriteDemo.scala @@ -26,10 +26,18 @@ object WriteDemo { .withColumn("_to", concat(lit("movies/"), col("_to"))) .persist() - val personsDF = dropNullColumns(nodesDF.where("type = 'Person'")) - val moviesDF = dropNullColumns(nodesDF.where("type = 'Movie'")) - val directedDF = dropNullColumns(edgesDF.where("`$label` = 'DIRECTED'")) - val actedInDF = dropNullColumns(edgesDF.where("`$label` = 'ACTS_IN'")) + val personsDF = nodesDF + .select(Schemas.personSchema.fieldNames.filter(_ != "_id").map(col): _*) + .where("type = 'Person'") + val moviesDF = nodesDF + .select(Schemas.movieSchema.fieldNames.filter(_ != "_id").map(col): _*) + .where("type = 'Movie'") + val directedDF = edgesDF + .select(Schemas.directedSchema.fieldNames.filter(_ != "_id").map(col): _*) + .where("`$label` = 'DIRECTED'") + val actedInDF = edgesDF + .select(Schemas.actsInSchema.fieldNames.filter(_ != "_id").map(col): _*) + .where("`$label` = 'ACTS_IN'") println("Writing 'persons' collection...") saveDF(personsDF, "persons") @@ -48,8 +56,6 @@ object WriteDemo { def unixTsToSparkDate(c: Column): Column = unixTsToSparkTs(c).cast(DateType) - def dropNullColumns(df: DataFrame): DataFrame = df.drop(getEmptyColNames(df): _*) - def saveDF(df: DataFrame, tableName: String, tableType: String = "document"): Unit = df .write @@ -61,8 +67,4 @@ object WriteDemo { )) .save() - def getEmptyColNames(df: DataFrame): Array[String] = - df.columns.filter { colName => - df.filter(df(colName).isNotNull).count() == 0 - } }